diff --git a/Setup.hs b/Setup.hs
--- a/Setup.hs
+++ b/Setup.hs
@@ -195,6 +195,7 @@
   (("latin",    "Lat"),""),
   (("norwegian","Nor"),""),
   (("polish",   "Pol"),""),
+  (("punjabi",   "Pnb"),""),
   (("romanian", "Ron"),""),
   (("russian",  "Rus"),""),
   (("spanish",  "Spa"),""),
diff --git a/book/examples/chapter2/Copy.gf b/book/examples/chapter2/Copy.gf
deleted file mode 100644
--- a/book/examples/chapter2/Copy.gf
+++ /dev/null
@@ -1,7 +0,0 @@
-concrete Copy of CopyAbs = {
-  lincat S, AB = Str ;
-  lin s x = x ++ x ;
-      end = [] ;
-      a x = "a" ++ x ;
-      b x = "b" ++ x ;
-}
diff --git a/book/examples/chapter2/CopyAbs.gf b/book/examples/chapter2/CopyAbs.gf
deleted file mode 100644
--- a/book/examples/chapter2/CopyAbs.gf
+++ /dev/null
@@ -1,6 +0,0 @@
-abstract CopyAbs = {
-  cat S ; AB ;
-  fun s   : AB -> S ;
-      end : AB ;
-      a,b : AB -> AB ;
-}
diff --git a/book/examples/chapter2/Food.gf b/book/examples/chapter2/Food.gf
deleted file mode 100644
--- a/book/examples/chapter2/Food.gf
+++ /dev/null
@@ -1,13 +0,0 @@
-abstract Food = {
-  flags startcat = Comment ;
-  cat
-    Comment ; Item ; Kind ; Quality ; 
-  fun
-    Pred : Item -> Quality -> Comment ;
-    This, That : Kind -> Item ;
-    Mod : Quality -> Kind -> Kind ;
-    Wine, Cheese, Fish : Kind ;
-    Very : Quality -> Quality ;
-    Fresh, Warm, Italian, 
-      Expensive, Delicious, Boring : Quality ;
-}
diff --git a/book/examples/chapter2/Food.probs b/book/examples/chapter2/Food.probs
deleted file mode 100644
--- a/book/examples/chapter2/Food.probs
+++ /dev/null
@@ -1,4 +0,0 @@
-  This  0.8
-  Mod   0.2
-  Wine  0.0
-  Fresh 0.4
diff --git a/book/examples/chapter2/FoodEng.gf b/book/examples/chapter2/FoodEng.gf
deleted file mode 100644
--- a/book/examples/chapter2/FoodEng.gf
+++ /dev/null
@@ -1,19 +0,0 @@
-concrete FoodEng of Food = {
-  lincat
-    Comment, Item, Kind, Quality = Str ;
-  lin
-    Pred item quality = item ++ "is" ++ quality ;
-    This kind = "this" ++ kind ;
-    That kind = "that" ++ kind ;
-    Mod quality kind = quality ++ kind ;
-    Wine = "wine" ;
-    Cheese = "cheese" ;
-    Fish = "fish" ;
-    Very quality = "very" ++ quality ;
-    Fresh = "fresh" ;
-    Warm = "warm" ;
-    Italian = "Italian" ;
-    Expensive = "expensive" ;
-    Delicious = "delicious" ;
-    Boring = "boring" ;
-}  
diff --git a/book/examples/chapter2/FoodHin.gf b/book/examples/chapter2/FoodHin.gf
deleted file mode 100644
--- a/book/examples/chapter2/FoodHin.gf
+++ /dev/null
@@ -1,24 +0,0 @@
-
- concrete FoodHin of Food = {
-   flags coding = utf8 ;
-   lincat Comment, Item, Kind, Quality = Str ;
-   lin
-     Pred item quality = item ++ quality ++ "है" ;
-     This kind = "यह" ++ kind ;
-     That kind = "वह" ++ kind ;
-     Mod quality kind = quality ++ kind ;
-     Wine = "मदिरा" ;
-     Cheese = "पनीर" ;
-     Fish = "मछली" ;
-     Very quality = "अति" ++ quality ;
-     Fresh = "ताज़ा" ;
-     Warm = "गरम" ;
-     Italian = "इटली" ; 
-     Expensive = "बहुमूल्य" ;
-     Delicious = "स्वादिष्ट" ;
-     Boring = "अरुचिकर" ;
- }
-
-
-
-
diff --git a/book/examples/chapter2/FoodIta.gf b/book/examples/chapter2/FoodIta.gf
deleted file mode 100644
--- a/book/examples/chapter2/FoodIta.gf
+++ /dev/null
@@ -1,19 +0,0 @@
-concrete FoodIta of Food = {
-  lincat
-    Comment, Item, Kind, Quality = Str ;
-  lin
-    Pred item quality = item ++ "è" ++ quality ;
-    This kind = "questo" ++ kind ;
-    That kind = "quel" ++ kind ;
-    Mod quality kind = kind ++ quality ;
-    Wine = "vino" ;
-    Cheese = "formaggio" ;
-    Fish = "pesce" ;
-    Very quality = "molto" ++ quality ;
-    Fresh = "fresco" ;
-    Warm = "caldo" ;
-    Italian = "italiano" ;
-    Expensive = "caro" ;
-    Delicious = "delizioso" ;
-    Boring = "noioso" ;
-}
diff --git a/book/examples/chapter2/Letters.gf b/book/examples/chapter2/Letters.gf
deleted file mode 100644
--- a/book/examples/chapter2/Letters.gf
+++ /dev/null
@@ -1,8 +0,0 @@
-abstract Letters = {
-
-cat L ;
-fun 
-  a, b, c, d, e, f, g, h, i, j, k, l, m, 
-  n, o, p, q, r, s, t, u, v, w, x, y, z : L ;
-
-}
diff --git a/book/examples/chapter2/LettersCnc.gf b/book/examples/chapter2/LettersCnc.gf
deleted file mode 100644
--- a/book/examples/chapter2/LettersCnc.gf
+++ /dev/null
@@ -1,31 +0,0 @@
-concrete LettersCnc of Letters = {
-
-  lincat L = Str ;
-  lin 
-    a = "a" ;
-    b = "b" ;
-    c = "c" ;
-    d = "d" ;
-    e = "e" ;
-    f = "f" ;
-    g = "g" ;
-    h = "h" ;
-    i = "i" ;
-    j = "j" ;
-    k = "k" ;
-    l = "l" ;
-    m = "m" ;
-    n = "n" ;
-    o = "o" ;
-    p = "p" ;
-    q = "q" ;
-    r = "r" ;
-    s = "s" ;
-    t = "t" ;
-    u = "u" ;
-    v = "v" ;
-    w = "w" ;
-    x = "x" ;
-    y = "y" ;
-    z = "z" ;
-}
diff --git a/book/examples/chapter2/Strings.gf b/book/examples/chapter2/Strings.gf
deleted file mode 100644
--- a/book/examples/chapter2/Strings.gf
+++ /dev/null
@@ -1,7 +0,0 @@
-abstract Strings = Letters ** {
-
-cat S ;
-fun 
-  E : S ;
-  C : L -> S -> S ;
-}
diff --git a/book/examples/chapter2/StringsBW.gf b/book/examples/chapter2/StringsBW.gf
deleted file mode 100644
--- a/book/examples/chapter2/StringsBW.gf
+++ /dev/null
@@ -1,5 +0,0 @@
-concrete StringsBW of Strings = LettersCnc ** {
-  lincat S = Str ;
-  lin E = [] ;
-  lin C head tail = tail ++ head ;
-}
diff --git a/book/examples/chapter2/StringsFW.gf b/book/examples/chapter2/StringsFW.gf
deleted file mode 100644
--- a/book/examples/chapter2/StringsFW.gf
+++ /dev/null
@@ -1,5 +0,0 @@
-concrete StringsFW of Strings = LettersCnc ** {
-  lincat S = Str ;
-  lin E = [] ;
-  lin C head tail = head ++ tail ;
-}
diff --git a/book/examples/chapter2/Ticket.gf b/book/examples/chapter2/Ticket.gf
deleted file mode 100644
--- a/book/examples/chapter2/Ticket.gf
+++ /dev/null
@@ -1,10 +0,0 @@
-abstract Ticket = {
-
-flags startcat = Request ;
-cat
-  Request ; Station ;
-fun 
-  Ticket : Station -> Station -> Request ;
-  Hamburg, Paris : Station ;
-
-}
diff --git a/book/examples/chapter2/TicketEng.gf b/book/examples/chapter2/TicketEng.gf
deleted file mode 100644
--- a/book/examples/chapter2/TicketEng.gf
+++ /dev/null
@@ -1,19 +0,0 @@
-concrete TicketEng of Ticket = {
-
-lincat
-  Request, Station = Str ;
-lin 
-  Ticket X Y = 
-    ((("I" ++ ("would like" | "want") ++ "to get" |
-      ("may" | "can") ++ "I get" | 
-      "can you give me" |
-      []) ++ 
-        "a ticket") | 
-     []) ++ 
-     "from" ++ X ++ "to" ++ Y ++ 
-     ("please" | []) ;
-
-  Hamburg = "Hamburg" ;
-  Paris = "Paris" ;
-
-}
diff --git a/book/examples/chapter2/foodEng.cf b/book/examples/chapter2/foodEng.cf
deleted file mode 100644
--- a/book/examples/chapter2/foodEng.cf
+++ /dev/null
@@ -1,14 +0,0 @@
-Pred.      Comment ::= Item "is" Quality
-This.      Item    ::= "this" Kind 
-That.      Item    ::= "that" Kind
-Mod.       Kind    ::= Quality Kind 
-Wine.      Kind    ::= "wine" 
-Cheese.    Kind    ::= "cheese" 
-Fish.      Kind    ::= "fish"
-Very.      Quality ::= "very" Quality
-Fresh.     Quality ::= "fresh" 
-Warm.      Quality ::= "warm" 
-Italian.   Quality ::= "Italian" 
-Expensive. Quality ::= "expensive" 
-Delicious. Quality ::= "delicious" 
-Boring.    Quality ::= "boring"
diff --git a/book/examples/chapter2/foodIta.cf b/book/examples/chapter2/foodIta.cf
deleted file mode 100644
--- a/book/examples/chapter2/foodIta.cf
+++ /dev/null
@@ -1,14 +0,0 @@
-Pred.      Comment ::= Item "è" Quality
-This.      Item    ::= "questo" Kind 
-That.      Item    ::= "quel" Kind
-Mod.       Kind    ::= Kind Quality
-Wine.      Kind    ::= "vino" 
-Cheese.    Kind    ::= "formaggio"
-Fish.      Kind    ::= "pesce"
-Very.      Quality ::= "molto" Quality
-Fresh.     Quality ::= "fresco" 
-Warm.      Quality ::= "caldo" 
-Italian.   Quality ::= "italiano" 
-Expensive. Quality ::= "caro" 
-Delicious. Quality ::= "delizioso" 
-Boring.    Quality ::= "noioso"
diff --git a/book/examples/chapter3/Arabic.gf b/book/examples/chapter3/Arabic.gf
deleted file mode 100644
--- a/book/examples/chapter3/Arabic.gf
+++ /dev/null
@@ -1,118 +0,0 @@
-resource Arabic = {
-oper
-  Root    : Type = {F,C,L : Str} ;
-  Pattern : Type = Root -> Str ;
-
-  Filling : Type = {F,FC,CL,L : Str} ;
-
-  fill : Filling -> Root -> Str = \p,r ->
-    p.F + r.F + p.FC + r.C + p.CL + r.L + p.L ;
-
-  dfill : Filling -> Root -> Str = \p,r ->
-    p.F + r.F + p.FC + r.C + r.C + p.CL + r.L + p.L ;
-
-  getRoot : Str -> Root = \s -> case s of {
-    F@? + C@? + L@? => {F = F ; C = C ; L = L} ;
-    _ => Predef.error ("cannot get root from" ++ s)
-    } ;
-
-  getPattern : Str -> Pattern = \s -> case s of {
-    F + "F" + FC + "CC" + CL + "L" + L => 
-      dfill {F = F ; FC = FC ; CL = CL ; L = L} ;
-    F + "F" + FC + "C" + CL + "L" + L => 
-      fill {F = F ; FC = FC ; CL = CL ; L = L} ;
-    _ => Predef.error ("cannot get pattern from" ++ s)
-    } ;
-
-  word : Str -> Str -> Str = \p,r ->
-    getPattern p (getRoot r) ;
-
-param
-  Number = Sg | Dl | Pl ;
-  Gender = Masc | Fem ;
-  Tense  = Perf | Impf ;
-
-  VPer = Vp3 Number Gender | Vp2Sg Gender | Vp2Dl | Vp2Pl Gender | Vp1Sg | Vp1Pl ;
-
-oper
-  Verb : Type = {s : Tense => VPer => Str} ;  
-
-  pattV_u : Tense -> VPer -> Pattern = \t,v -> getPattern (case t of {
-    Perf => case v of {
-      Vp3 Sg Masc => "FaCaLa" ;
-      Vp3 Sg Fem  => "FaCaLat" ;
-      Vp3 Dl Masc => "FaCaLaA" ;
-      Vp3 Dl Fem  => "FaCaLataA" ;
-      Vp3 Pl Masc => "FaCaLuwA" ;
-      Vp3 Pl Fem  => "FaCaLona" ;
-
-      Vp2Sg  Masc => "FaCaLota" ;
-      Vp2Sg  Fem  => "FaCaLoti" ;
-      Vp2Dl       => "FaCaLotumaA" ;
-      Vp2Pl  Masc => "FaCaLotum" ;
-      Vp2Pl  Fem  => "FaCaLotunv2a" ;
-       
-      Vp1Sg       => "FaCaLotu" ;
-      Vp1Pl       => "FaCaLonaA"
-      } ;
-    Impf => case v of {
-      Vp3 Sg Masc => "yaFoCuLu" ;
-      Vp3 Sg Fem  => "taFoCuLu" ;
-      Vp3 Dl Masc => "yaFoCuLaAni" ;
-      Vp3 Dl Fem  => "taFoCuLaAni" ;
-      Vp3 Pl Masc => "yaFoCuLuwna" ;
-      Vp3 Pl Fem  => "yaFoCuLna" ;
-
-      Vp2Sg  Masc => "taFoCuLu" ;
-      Vp2Sg  Fem  => "taFoCuLiyna" ;
-      Vp2Dl       => "taFoCuLaAni" ;
-      Vp2Pl  Masc => "taFoCuLuwna" ;
-      Vp2Pl  Fem  => "taFoCuLona" ;
-       
-      Vp1Sg       => "A?aFoCuLu" ;
-      Vp1Pl       => "naFoCuLu"
-      }
-   }) ;
-
-  u_Verb : Str -> Verb = \s -> {
-    s = \\t,p => pattV_u t p (getRoot s) ;
-    } ;
-
--- for html
-
-  tag : Str -> Str = \t -> "<" + t + ">" ;
-  etag : Str -> Str = \t -> "</" + t + ">" ;
-  atag : Str -> Str -> Str = \t,a -> "<" + t ++ a + ">" ;
-
-  intag : Str -> Str -> Str = \t,s -> tag t ++ s ++ etag t ;
-  intagAttr : Str -> Str -> Str -> Str = \t,a,s -> atag t a ++ s ++ etag t ;
-
-  verbTable : Verb -> Str = \v -> 
-    let 
-      vsp = v.s ! Perf ;
-      vsi = v.s ! Impf ;
-      tr : Str -> Str = intag "tr" ;
-      td : Str -> Str = intag "td" ;
-      ts : Str -> Str = \s -> td ("\"" ++ s ++ "\"") ;
-      trs : Str -> Str -> VPer -> Str = \s,n,v -> 
-        tr (td s ++ td n ++ ts (vsp ! v) ++ ts (vsi ! v))
-    in 
-    intagAttr "table" "border=1" (
-       tr ((td "Persona") ++ (td "Numerus") ++ (td "Perfectum") ++ (td "Imperfectum")) ++
-       trs "3. masc." "sing." (Vp3 Sg Masc) ++
-       trs "3. fem."  "sing." (Vp3 Sg Fem) ++
-       trs "2. masc." "sing." (Vp2Sg Masc) ++
-       trs "2. fem."  "sing." (Vp2Sg Fem) ++
-       trs "1."       "sing." (Vp1Sg) ++
-       trs "3. masc." "dual." (Vp3 Dl Masc) ++
-       trs "3. fem."  "dual." (Vp3 Dl Fem) ++
-       trs "2."       "dual." (Vp2Dl) ++
-       trs "3. masc." "plur." (Vp3 Pl Masc) ++
-       trs "3. fem."  "plur." (Vp3 Pl Fem) ++
-       trs "2. masc." "plur." (Vp2Pl Masc) ++
-       trs "2. fem."  "plur." (Vp2Pl Fem) ++
-       trs "1."       "plur." (Vp1Pl)
-      ) ;
-
-
-}
diff --git a/book/examples/chapter3/Discont.gf b/book/examples/chapter3/Discont.gf
deleted file mode 100644
--- a/book/examples/chapter3/Discont.gf
+++ /dev/null
@@ -1,11 +0,0 @@
-abstract Discont = {
-  cat 
-    S ; Cl ; NP ; VP ; AP ; 
-  fun 
-    DeclCl  : Cl -> S ;
-    QuestCl : Cl -> S ;
-    PredVP  : NP -> VP -> Cl ; 
-    CompAP  : AP -> VP ;
-    John : NP ;
-    Old : AP ;
-}
diff --git a/book/examples/chapter3/DiscontEng.gf b/book/examples/chapter3/DiscontEng.gf
deleted file mode 100644
--- a/book/examples/chapter3/DiscontEng.gf
+++ /dev/null
@@ -1,21 +0,0 @@
-concrete DiscontEng of Discont = {
-  param
-    SForm = SDecl | SQuest ;
-  lincat 
-    S, NP, AP = Str ;
-    Cl = SForm => Str ;
-    VP = {verb,comp : Str} ; 
-  lin 
-    DeclCl  cl = cl ! SDecl ;
-    QuestCl cl = cl ! SQuest ;
-    PredVP np vp = table {
-      SDecl  => np ++ vp.verb ++ vp.comp ;
-      SQuest => vp.verb ++ np ++ vp.comp
-      } ;
-    CompAP ap = {
-      verb = "is" ;
-      comp = ap
-      } ;
-    John = "John" ;
-    Old = "old" ;
-}
diff --git a/book/examples/chapter3/Foods.gf b/book/examples/chapter3/Foods.gf
deleted file mode 100644
--- a/book/examples/chapter3/Foods.gf
+++ /dev/null
@@ -1,13 +0,0 @@
-abstract Foods = {
-  flags startcat = Comment ;
-  cat
-    Comment ; Item ; Kind ; Quality ;
-  fun
-    Pred : Item -> Quality -> Comment ;
-    This, That, These, Those : Kind -> Item ;
-    Mod : Quality -> Kind -> Kind ;
-    Wine, Cheese, Fish, Pizza : Kind ;
-    Very : Quality -> Quality ;
-    Fresh, Warm, Italian, 
-      Expensive, Delicious, Boring : Quality ;
-}
diff --git a/book/examples/chapter3/FoodsEng.gf b/book/examples/chapter3/FoodsEng.gf
deleted file mode 100644
--- a/book/examples/chapter3/FoodsEng.gf
+++ /dev/null
@@ -1,40 +0,0 @@
-concrete FoodsEng of Foods = {
-  lincat
-    Comment, Quality = {s : Str} ; 
-    Kind = {s : Number => Str} ; 
-    Item = {s : Str ; n : Number} ; 
-  lin
-    Pred item quality = 
-      {s = item.s ++ copula ! item.n ++ quality.s} ;
-    This  = det Sg "this" ;
-    That  = det Sg "that" ;
-    These = det Pl "these" ;
-    Those = det Pl "those" ;
-    Mod quality kind = 
-      {s = \\n => quality.s ++ kind.s ! n} ;
-    Wine = regNoun "wine" ;
-    Cheese = regNoun "cheese" ;
-    Fish = noun "fish" "fish" ;
-    Pizza = regNoun "pizza" ;
-    Very a = {s = "very" ++ a.s} ;
-    Fresh = adj "fresh" ;
-    Warm = adj "warm" ;
-    Italian = adj "Italian" ;
-    Expensive = adj "expensive" ;
-    Delicious = adj "delicious" ;
-    Boring = adj "boring" ;
-  param
-    Number = Sg | Pl ;
-  oper
-    det : Number -> Str -> 
-      {s : Number => Str} -> {s : Str ; n : Number} = 
-        \n,det,noun -> {s = det ++ noun.s ! n ; n = n} ;
-    noun : Str -> Str -> {s : Number => Str} = 
-      \man,men -> {s = table {Sg => man ; Pl => men}} ;
-    regNoun : Str -> {s : Number => Str} = 
-      \car -> noun car (car + "s") ;
-    adj : Str -> {s : Str} = 
-      \cold -> {s = cold} ;
-    copula : Number => Str = 
-      table {Sg => "is" ; Pl => "are"} ;
-}
diff --git a/book/examples/chapter3/FoodsIta.gf b/book/examples/chapter3/FoodsIta.gf
deleted file mode 100644
--- a/book/examples/chapter3/FoodsIta.gf
+++ /dev/null
@@ -1,32 +0,0 @@
-concrete FoodsIta of Foods = open ResIta in {
-  lincat
-    Comment = {s : Str} ; 
-    Quality = Adjective ; 
-    Kind = Noun ; 
-    Item = NounPhrase ;
-  lin
-    Pred item quality = 
-      {s = item.s ++ copula ! item.n ++ 
-           quality.s ! item.g ! item.n} ;
-    This  = det Sg "questo" "questa" ;
-    That  = det Sg "quel"   "quella" ;
-    These = det Pl "questi" "queste" ;
-    Those = det Pl "quei"   "quelle" ;
-    Mod quality kind = {
-      s = \\n => kind.s ! n ++ quality.s ! kind.g ! n ;
-      g = kind.g
-      } ;
-    Wine = noun "vino" "vini" Masc ;
-    Cheese = noun "formaggio" "formaggi" Masc ;
-    Fish = noun "pesce" "pesci" Masc ;
-    Pizza = noun "pizza" "pizze" Fem ;
-    Very qual = {s = \\g,n => "molto" ++ qual.s ! g ! n} ;
-    Fresh = 
-      adjective "fresco" "fresca" "freschi" "fresche" ;
-    Warm = regAdj "caldo" ;
-    Italian = regAdj "italiano" ;
-    Expensive = regAdj "caro" ;
-    Delicious = regAdj "delizioso" ;
-    Boring = regAdj "noioso" ;
-}
-
diff --git a/book/examples/chapter3/ResIta.gf b/book/examples/chapter3/ResIta.gf
deleted file mode 100644
--- a/book/examples/chapter3/ResIta.gf
+++ /dev/null
@@ -1,36 +0,0 @@
-resource ResIta = open Prelude in {
-  param
-    Number = Sg | Pl ;
-    Gender = Masc | Fem ;
-  oper
-    NounPhrase : Type = 
-      {s : Str ; g : Gender ; n : Number} ; 
-    Noun : Type = {s : Number => Str ; g : Gender} ;
-    Adjective : Type = {s : Gender => Number => Str} ;
-
-    det : Number -> Str -> Str -> Noun -> NounPhrase =
-      \n,m,f,cn -> {
-        s = table {Masc => m ; Fem => f} ! cn.g ++ 
-            cn.s ! n ;
-        g = cn.g ;
-        n = n
-      } ;
-    noun : Str -> Str -> Gender -> Noun =
-      \vino,vini,g -> {
-        s = table {Sg => vino ; Pl => vini} ;
-        g = g
-      } ;
-    adjective : (nero,nera,neri,nere : Str) -> Adjective =
-      \nero,nera,neri,nere -> {
-        s = table {
-          Masc => table {Sg => nero ; Pl => neri} ; 
-          Fem => table {Sg => nera ; Pl => nere}
-          }
-        } ;
-    regAdj : Str -> Adjective = \nero ->
-      let ner : Str = init nero 
-      in 
-      adjective nero (ner+"a") (ner+"i") (ner+"e") ;
-    copula : Number => Str = 
-      table {Sg => "è" ; Pl => "sono"} ;
-}
diff --git a/book/examples/chapter4/Clothes.gf b/book/examples/chapter4/Clothes.gf
deleted file mode 100644
--- a/book/examples/chapter4/Clothes.gf
+++ /dev/null
@@ -1,5 +0,0 @@
-abstract Clothes = Comments ** {
-  fun
-    Shirt, Jacket : Kind ;
-    Comfortable, Elegant : Quality ;
-}
diff --git a/book/examples/chapter4/ClothesEng.gf b/book/examples/chapter4/ClothesEng.gf
deleted file mode 100644
--- a/book/examples/chapter4/ClothesEng.gf
+++ /dev/null
@@ -1,10 +0,0 @@
---# -path=.:present
-
-concrete ClothesEng of Clothes = CommentsEng ** 
-    open SyntaxEng, ParadigmsEng in {
-  lin
-    Shirt = mkCN (mkN "shirt") ;
-    Jacket = mkCN (mkN "jacket") ;
-    Comfortable = mkAP (mkA "comfortable") ;
-    Elegant = mkAP (mkA "elegant") ;
-}
diff --git a/book/examples/chapter4/ClothesIta.gf b/book/examples/chapter4/ClothesIta.gf
deleted file mode 100644
--- a/book/examples/chapter4/ClothesIta.gf
+++ /dev/null
@@ -1,8 +0,0 @@
-concrete ClothesIta of Clothes = CommentsIta ** 
-    open SyntaxIta, ParadigmsIta in {
-  lin
-    Shirt = mkCN (mkN "camicia") ;
-    Jacket = mkCN (mkN "giacca") ;
-    Comfortable = mkAP (mkA "comodo") ;
-    Elegant = mkAP (mkA "elegante") ;
-}
diff --git a/book/examples/chapter4/Comment.gf b/book/examples/chapter4/Comment.gf
deleted file mode 100644
--- a/book/examples/chapter4/Comment.gf
+++ /dev/null
@@ -1,13 +0,0 @@
-abstract Comment = {
-  flags startcat = Comment ;
-  cat
-    Comment ; Item ; Kind ; Quality ;
-  fun
-    Pred : Item -> Quality -> Comment ;
-    This, That, These, Those : Kind -> Item ;
-    Mod : Quality -> Kind -> Kind ;
-    Wine, Cheese, Fish, Pizza : Kind ;
-    Very : Quality -> Quality ;
-    Fresh, Warm, Italian, 
-      Expensive, Delicious, Boring : Quality ;
-}
diff --git a/book/examples/chapter4/Comments.gf b/book/examples/chapter4/Comments.gf
deleted file mode 100644
--- a/book/examples/chapter4/Comments.gf
+++ /dev/null
@@ -1,10 +0,0 @@
-abstract Comments = {
-  flags startcat = Comment ;
-  cat
-    Comment ; Item ; Kind ; Quality ;
-  fun
-    Pred : Item -> Quality -> Comment ;
-    This, That, These, Those : Kind -> Item ;
-    Mod : Quality -> Kind -> Kind ;
-    Very : Quality -> Quality ;
-}
diff --git a/book/examples/chapter4/CommentsEng.gf b/book/examples/chapter4/CommentsEng.gf
deleted file mode 100644
--- a/book/examples/chapter4/CommentsEng.gf
+++ /dev/null
@@ -1,4 +0,0 @@
---# -path=.:present
-
-concrete CommentsEng of Comments = CommentsI with 
-  (Syntax = SyntaxEng) ;
diff --git a/book/examples/chapter4/CommentsI.gf b/book/examples/chapter4/CommentsI.gf
deleted file mode 100644
--- a/book/examples/chapter4/CommentsI.gf
+++ /dev/null
@@ -1,15 +0,0 @@
-incomplete concrete CommentsI of Comments = open Syntax in {
-  lincat
-    Comment = Cl ; 
-    Item = NP ;
-    Kind = CN ;
-    Quality = AP ;
-  lin
-    Pred item quality = mkCl item quality ;
-    This kind = mkNP this_QuantSg kind ;
-    That kind = mkNP that_QuantSg kind ;
-    These kind = mkNP these_QuantPl kind ;
-    Those kind = mkNP those_QuantPl kind ;
-    Mod quality kind = mkCN quality kind ;
-    Very quality = mkAP very_AdA quality ;
-}
diff --git a/book/examples/chapter4/CommentsIta.gf b/book/examples/chapter4/CommentsIta.gf
deleted file mode 100644
--- a/book/examples/chapter4/CommentsIta.gf
+++ /dev/null
@@ -1,4 +0,0 @@
---# -path=.:present
-
-concrete CommentsIta of Comments = CommentsI with 
-  (Syntax = SyntaxIta) ;
diff --git a/book/examples/chapter4/Computers.gf b/book/examples/chapter4/Computers.gf
deleted file mode 100644
--- a/book/examples/chapter4/Computers.gf
+++ /dev/null
@@ -1,5 +0,0 @@
-abstract Computers = Comments ** {
-  fun
-    Computer, HardDisk : Kind ;
-    Efficient, Slow : Quality ;
-}
diff --git a/book/examples/chapter4/ComputersEng.gf b/book/examples/chapter4/ComputersEng.gf
deleted file mode 100644
--- a/book/examples/chapter4/ComputersEng.gf
+++ /dev/null
@@ -1,10 +0,0 @@
---# -path=.:present
-
-concrete ComputersEng of Computers = CommentsEng ** 
-    open SyntaxEng, ParadigmsEng in {
-  lin
-    Computer = mkCN (mkN "computer") ;
-    HardDisk = mkCN (mkA "hard") (mkN "disk") ;
-    Efficient = mkAP (mkA "efficient") ;
-    Slow = mkAP (mkA "slow") ;
-}
diff --git a/book/examples/chapter4/ComputersIta.gf b/book/examples/chapter4/ComputersIta.gf
deleted file mode 100644
--- a/book/examples/chapter4/ComputersIta.gf
+++ /dev/null
@@ -1,9 +0,0 @@
-concrete ComputersIta of Computers = 
-    CommentsIta ** open ResIta in {
-  lin
-    Computer = noun "computer" "computer" Masc ;
-    HardDisk = noun "disco rigido" "dischi rigidi" Masc ;
-    Efficient = adjective "efficiente" "efficiente" 
-                          "efficienti" "efficienti" ;
-    Slow = regAdj "lento" ;
-}
diff --git a/book/examples/chapter4/DefArtGer.gf b/book/examples/chapter4/DefArtGer.gf
deleted file mode 100644
--- a/book/examples/chapter4/DefArtGer.gf
+++ /dev/null
@@ -1,16 +0,0 @@
-resource DefArtGer = {
-
-  param DetForm = DSg Gender Case | DPl Case ;
-  param Gender = Masc | Fem | Neutr ;
-  param Case = Nom | Acc | Dat | Gen ;
-
-  oper artDef : DetForm => Str = table {
-    DSg Masc Acc | DPl Dat => "den" ;
-    DSg (Masc | Neutr) Dat => "dem" ;
-    DSg (Masc | Neutr) Gen => "des" ;
-    DSg Neutr _ => "das" ;
-    DSg Fem (Nom | Acc) | DPl (Nom | Acc) => "die" ; 
-    _ => "der"
-    } ;
-
-}
diff --git a/book/examples/chapter4/Foods.gf b/book/examples/chapter4/Foods.gf
deleted file mode 100644
--- a/book/examples/chapter4/Foods.gf
+++ /dev/null
@@ -1,6 +0,0 @@
-abstract Foods = Comments ** {
-  fun
-    Wine, Cheese, Fish, Pizza : Kind ;
-    Fresh, Warm, Italian, 
-      Expensive, Delicious, Boring : Quality ;
-}
diff --git a/book/examples/chapter4/FoodsEng.gf b/book/examples/chapter4/FoodsEng.gf
deleted file mode 100644
--- a/book/examples/chapter4/FoodsEng.gf
+++ /dev/null
@@ -1,16 +0,0 @@
---# -path=.:present
-
-concrete FoodsEng of Foods = CommentsEng ** 
-    open SyntaxEng, ParadigmsEng in {
-  lin
-    Wine = mkCN (mkN "wine") ;
-    Pizza = mkCN (mkN "pizza") ;
-    Cheese = mkCN (mkN "cheese") ;
-    Fish = mkCN (mkN "fish" "fish") ;
-    Fresh = mkAP (mkA "fresh") ;
-    Warm = mkAP (mkA "warm") ;
-    Italian = mkAP (mkA "Italian") ;
-    Expensive = mkAP (mkA "expensive") ;
-    Delicious = mkAP (mkA "delicious") ;
-    Boring = mkAP (mkA "boring") ;
-}
diff --git a/book/examples/chapter4/FoodsIta.gf b/book/examples/chapter4/FoodsIta.gf
deleted file mode 100644
--- a/book/examples/chapter4/FoodsIta.gf
+++ /dev/null
@@ -1,16 +0,0 @@
---# -path=.:present
-
-concrete FoodsIta of Foods = CommentsIta ** 
-    open SyntaxIta, ParadigmsIta in {
-  lin
-    Wine = mkCN (mkN "vino") ;
-    Pizza = mkCN (mkN "pizza") ;
-    Cheese = mkCN (mkN "formaggio") ;
-    Fish = mkCN (mkN "pesce") ;
-    Fresh = mkAP (mkA "fresco") ;
-    Warm = mkAP (mkA "caldo") ;
-    Italian = mkAP (mkA "italiano") ;
-    Expensive = mkAP (mkA "caro") ;
-    Delicious = mkAP (mkA "delizioso") ;
-    Boring = mkAP (mkA "noioso") ;
-}
diff --git a/book/examples/chapter4/Shopping.gf b/book/examples/chapter4/Shopping.gf
deleted file mode 100644
--- a/book/examples/chapter4/Shopping.gf
+++ /dev/null
@@ -1,2 +0,0 @@
-abstract Shopping = Foods, Clothes ;
-
diff --git a/book/examples/chapter4/ShoppingEng.gf b/book/examples/chapter4/ShoppingEng.gf
deleted file mode 100644
--- a/book/examples/chapter4/ShoppingEng.gf
+++ /dev/null
@@ -1,4 +0,0 @@
---# -path=.:present
-
-concrete ShoppingEng of Shopping = FoodsEng, ClothesEng ;
-
diff --git a/book/examples/chapter4/ShoppingIta.gf b/book/examples/chapter4/ShoppingIta.gf
deleted file mode 100644
--- a/book/examples/chapter4/ShoppingIta.gf
+++ /dev/null
@@ -1,4 +0,0 @@
---# -path=.:present
-
-concrete ShoppingIta of Shopping = FoodsIta, ClothesIta ;
-
diff --git a/book/examples/chapter4/SmallShopping.gf b/book/examples/chapter4/SmallShopping.gf
deleted file mode 100644
--- a/book/examples/chapter4/SmallShopping.gf
+++ /dev/null
@@ -1,3 +0,0 @@
-abstract SmallShopping = 
-  Foods - [Wine], 
-  Clothes [Kind,Quality,Shirt,Elegant] ;
diff --git a/book/examples/chapter5/Foods.gf b/book/examples/chapter5/Foods.gf
deleted file mode 100644
--- a/book/examples/chapter5/Foods.gf
+++ /dev/null
@@ -1,15 +0,0 @@
--- (c) 2009 Aarne Ranta under LGPL
-
-abstract Foods = {
-  flags startcat = Comment ;
-  cat
-    Comment ; Item ; Kind ; Quality ;
-  fun
-    Pred : Item -> Quality -> Comment ;
-    This, That, These, Those : Kind -> Item ;
-    Mod : Quality -> Kind -> Kind ;
-    Wine, Cheese, Fish, Pizza : Kind ;
-    Very : Quality -> Quality ;
-    Fresh, Warm, Italian, 
-      Expensive, Delicious, Boring : Quality ;
-}
diff --git a/book/examples/chapter5/FoodsCat.gf b/book/examples/chapter5/FoodsCat.gf
deleted file mode 100644
--- a/book/examples/chapter5/FoodsCat.gf
+++ /dev/null
@@ -1,7 +0,0 @@
---# -path=.:present
-
--- (c) 2009 Jordi Saludes under LGPL
-
-concrete FoodsCat of Foods = FoodsI with 
-  (Syntax = SyntaxCat),
-  (LexFoods = LexFoodsCat) ;
diff --git a/book/examples/chapter5/FoodsEng.gf b/book/examples/chapter5/FoodsEng.gf
deleted file mode 100644
--- a/book/examples/chapter5/FoodsEng.gf
+++ /dev/null
@@ -1,28 +0,0 @@
---# -path=.:present
-
-concrete FoodsEng of Foods = 
-    open SyntaxEng,ParadigmsEng in {
-  lincat
-    Comment = Utt ; 
-    Item = NP ;
-    Kind = CN ;
-    Quality = AP ;
-  lin
-    Pred item quality = mkUtt (mkCl item quality) ;
-    This kind = mkNP this_Quant kind ;
-    That kind = mkNP that_Quant kind ;
-    These kind = mkNP this_Quant plNum kind ;
-    Those kind = mkNP that_Quant plNum kind ;
-    Mod quality kind = mkCN quality kind ;
-    Wine = mkCN (mkN "wine") ;
-    Pizza = mkCN (mkN "pizza") ;
-    Cheese = mkCN (mkN "cheese") ;
-    Fish = mkCN (mkN "fish" "fish") ;
-    Very quality = mkAP very_AdA quality ;
-    Fresh = mkAP (mkA "fresh") ;
-    Warm = mkAP (mkA "warm") ;
-    Italian = mkAP (mkA "Italian") ;
-    Expensive = mkAP (mkA "expensive") ;
-    Delicious = mkAP (mkA "delicious") ;
-    Boring = mkAP (mkA "boring") ;
-}
diff --git a/book/examples/chapter5/FoodsFin.gf b/book/examples/chapter5/FoodsFin.gf
deleted file mode 100644
--- a/book/examples/chapter5/FoodsFin.gf
+++ /dev/null
@@ -1,7 +0,0 @@
---# -path=.:present
-
--- (c) 2009 Aarne Ranta under LGPL
-
-concrete FoodsFin of Foods = FoodsI with 
-  (Syntax = SyntaxFin),
-  (LexFoods = LexFoodsFin) ;
diff --git a/book/examples/chapter5/FoodsGer.gf b/book/examples/chapter5/FoodsGer.gf
deleted file mode 100644
--- a/book/examples/chapter5/FoodsGer.gf
+++ /dev/null
@@ -1,7 +0,0 @@
---# -path=.:present
-
--- (c) 2009 Aarne Ranta under LGPL
-
-concrete FoodsGer of Foods = FoodsI with 
-  (Syntax = SyntaxGer),
-  (LexFoods = LexFoodsGer) ;
diff --git a/book/examples/chapter5/FoodsI.gf b/book/examples/chapter5/FoodsI.gf
deleted file mode 100644
--- a/book/examples/chapter5/FoodsI.gf
+++ /dev/null
@@ -1,29 +0,0 @@
--- (c) 2009 Aarne Ranta under LGPL
-
-incomplete concrete FoodsI of Foods = 
-    open Syntax, LexFoods in {
-  lincat
-    Comment = Utt ; 
-    Item = NP ;
-    Kind = CN ;
-    Quality = AP ;
-  lin
-    Pred item quality = mkUtt (mkCl item quality) ;
-    This kind = mkNP this_Det kind ;
-    That kind = mkNP that_Det kind ;
-    These kind = mkNP these_Det kind ;
-    Those kind = mkNP those_Det kind ;
-    Mod quality kind = mkCN quality kind ;
-    Very quality = mkAP very_AdA quality ;
-
-    Wine = mkCN wine_N ;
-    Pizza = mkCN pizza_N ;
-    Cheese = mkCN cheese_N ;
-    Fish = mkCN fish_N ;
-    Fresh = mkAP fresh_A ;
-    Warm = mkAP warm_A ;
-    Italian = mkAP italian_A ;
-    Expensive = mkAP expensive_A ;
-    Delicious = mkAP delicious_A ;
-    Boring = mkAP boring_A ;
-}
diff --git a/book/examples/chapter5/FoodsIta.gf b/book/examples/chapter5/FoodsIta.gf
deleted file mode 100644
--- a/book/examples/chapter5/FoodsIta.gf
+++ /dev/null
@@ -1,8 +0,0 @@
---# -path=.:present
-
--- (c) 2009 Aarne Ranta under LGPL
-
-concrete FoodsIta of Foods = FoodsI with 
-  (Syntax = SyntaxIta),
-  (LexFoods = LexFoodsIta) ;
-
diff --git a/book/examples/chapter5/FoodsSwe.gf b/book/examples/chapter5/FoodsSwe.gf
deleted file mode 100644
--- a/book/examples/chapter5/FoodsSwe.gf
+++ /dev/null
@@ -1,7 +0,0 @@
---# -path=.:present
-
--- (c) 2009 Aarne Ranta under LGPL
-
-concrete FoodsSwe of Foods = FoodsI with 
-  (Syntax = SyntaxSwe),
-  (LexFoods = LexFoodsSwe) ** {flags language = sv_SE;} ;
diff --git a/book/examples/chapter5/LexFoods.gf b/book/examples/chapter5/LexFoods.gf
deleted file mode 100644
--- a/book/examples/chapter5/LexFoods.gf
+++ /dev/null
@@ -1,15 +0,0 @@
--- (c) 2009 Aarne Ranta under LGPL
-
-interface LexFoods = open Syntax in {
-  oper
-    wine_N : N ;
-    pizza_N : N ;
-    cheese_N : N ;
-    fish_N : N ;
-    fresh_A : A ;
-    warm_A : A ;
-    italian_A : A ;
-    expensive_A : A ;
-    delicious_A : A ;
-    boring_A : A ;
-}
diff --git a/book/examples/chapter5/LexFoodsCat.gf b/book/examples/chapter5/LexFoodsCat.gf
deleted file mode 100644
--- a/book/examples/chapter5/LexFoodsCat.gf
+++ /dev/null
@@ -1,18 +0,0 @@
--- (c) 2009 Jordi Saludes under LGPL
-
-instance LexFoodsCat of LexFoods = 
-    open SyntaxCat, ParadigmsCat, (M = MorphoCat) in {
-  flags
-	coding = utf8 ;
-  oper
-    wine_N = mkN "vi" "vins" M.Masc ;
-    pizza_N = mkN "pizza" ;
-    cheese_N = mkN "formatge" ;
-    fish_N = mkN "peix" "peixos" M.Masc;
-    fresh_A = mkA "fresc" "fresca" "frescos" "fresques" "frescament";
-    warm_A = mkA "calent" ;
-    italian_A = mkA "italià" "italiana" "italians" "italianes" "italianament" ;
-    expensive_A = mkA "car" ;
-    delicious_A = mkA "deliciós" "deliciosa" "deliciosos" "delicioses" "deliciosament";
-    boring_A = mkA "aburrit" "aburrida" "aburrits" "aburrides" "aburridament" ;
-}
diff --git a/book/examples/chapter5/LexFoodsEng.gf b/book/examples/chapter5/LexFoodsEng.gf
deleted file mode 100644
--- a/book/examples/chapter5/LexFoodsEng.gf
+++ /dev/null
@@ -1,20 +0,0 @@
-instance LexFoodsEng of LexFoods = open SyntaxEng, ParadigmsEng, IrregEng in {
-  oper
-    wine_N = mkN "wine" ;
-    pizza_N = mkN "pizza" ;
-    cheese_N = mkN "cheese" ;
-    fish_N = mkN "fish" "fish" ;
-    fresh_A = mkA "fresh" ;
-    warm_A = mkA "warm" ;
-    italian_A = mkA "Italian" ;
-    expensive_A = mkA "expensive" ;
-    delicious_A = mkA "delicious" ;
-    boring_A = mkA "boring" ;
-
-    eat_V2 = mkV2 eat_V ;
-    drink_V2 = mkV2 drink_V ;
-    pay_V2 = mkV2 pay_V ;
-    lady_N = mkN "lady" ;
-    gentleman_N = mkN "gentleman" "gentlemen" ;
-
-}
diff --git a/book/examples/chapter5/LexFoodsFin.gf b/book/examples/chapter5/LexFoodsFin.gf
deleted file mode 100644
--- a/book/examples/chapter5/LexFoodsFin.gf
+++ /dev/null
@@ -1,20 +0,0 @@
--- (c) 2009 Aarne Ranta under LGPL
-
-instance LexFoodsFin of LexFoods = 
-    open SyntaxFin, ParadigmsFin in {
-  oper
-    wine_N = mkN "viini" ;
-    pizza_N = mkN "pizza" ;
-    cheese_N = mkN "juusto" ;
-    fish_N = mkN "kala" ;
-    fresh_A = mkA "tuore" ;
-    warm_A = mkA 
-    (mkN "lämmin" "lämpimän" "lämmintä" "lämpimänä" "lämpimään" 
-         "lämpiminä" "lämpimiä" "lämpimien" "lämpimissä" "lämpimiin"
-	 ) 
-    "lämpimämpi" "lämpimin" ;
-    italian_A = mkA "italialainen" ;
-    expensive_A = mkA "kallis" ;
-    delicious_A = mkA "herkullinen" ;
-    boring_A = mkA "tylsä" ;
-}
diff --git a/book/examples/chapter5/LexFoodsGer.gf b/book/examples/chapter5/LexFoodsGer.gf
deleted file mode 100644
--- a/book/examples/chapter5/LexFoodsGer.gf
+++ /dev/null
@@ -1,16 +0,0 @@
--- (c) 2009 Aarne Ranta under LGPL
-
-instance LexFoodsGer of LexFoods = 
-    open SyntaxGer, ParadigmsGer in {
-  oper
-    wine_N = mkN "Wein" ;
-    pizza_N = mkN "Pizza" "Pizzen" feminine ;
-    cheese_N = mkN "Käse" "Käse" masculine ;
-    fish_N = mkN "Fisch" ;
-    fresh_A = mkA "frisch" ;
-    warm_A = mkA "warm" "wärmer" "wärmste" ;
-    italian_A = mkA "italienisch" ;
-    expensive_A = mkA "teuer" ;
-    delicious_A = mkA "köstlich" ;
-    boring_A = mkA "langweilig" ;
-}
diff --git a/book/examples/chapter5/LexFoodsIta.gf b/book/examples/chapter5/LexFoodsIta.gf
deleted file mode 100644
--- a/book/examples/chapter5/LexFoodsIta.gf
+++ /dev/null
@@ -1,16 +0,0 @@
--- (c) 2009 Aarne Ranta under LGPL
-
-instance LexFoodsIta of LexFoods = 
-    open SyntaxIta, ParadigmsIta in {
-  oper
-    wine_N = mkN "vino" ;
-    pizza_N = mkN "pizza" ;
-    cheese_N = mkN "formaggio" ;
-    fish_N = mkN "pesce" ;
-    fresh_A = mkA "fresco" ;
-    warm_A = mkA "caldo" ;
-    italian_A = mkA "italiano" ;
-    expensive_A = mkA "caro" ;
-    delicious_A = mkA "delizioso" ;
-    boring_A = mkA "noioso" ;
-}
diff --git a/book/examples/chapter5/LexFoodsSwe.gf b/book/examples/chapter5/LexFoodsSwe.gf
deleted file mode 100644
--- a/book/examples/chapter5/LexFoodsSwe.gf
+++ /dev/null
@@ -1,16 +0,0 @@
--- (c) 2009 Aarne Ranta under LGPL
-
-instance LexFoodsSwe of LexFoods = 
-    open SyntaxSwe, ParadigmsSwe in {
-  oper
-    wine_N = mkN "vin" "vinet" "viner" "vinerna" ;
-    pizza_N = mkN "pizza" ;
-    cheese_N = mkN "ost" ;
-    fish_N = mkN "fisk" ;
-    fresh_A = mkA "färsk" ;
-    warm_A = mkA "varm" ;
-    italian_A = mkA "italiensk" ;
-    expensive_A = mkA "dyr" ;
-    delicious_A = mkA "läcker" ;
-    boring_A = mkA "tråkig" ;
-}
diff --git a/book/examples/chapter6/Aggregation.gf b/book/examples/chapter6/Aggregation.gf
deleted file mode 100644
--- a/book/examples/chapter6/Aggregation.gf
+++ /dev/null
@@ -1,33 +0,0 @@
-abstract Aggregation = {
-  cat S ; NP ; VP ;
-  data 
-    PredVP : NP -> VP -> S ;
-    ConjS  : S -> S -> S ;
-    ConjVP : VP -> VP -> VP ;
-    ConjNP : NP -> NP -> NP ;
-    Run, Walk : VP ;
-    John, Mary : NP ;
-
-  fun aggr : S -> S ; -- main aggregation function
-  def aggr (ConjS (PredVP x X) (PredVP y Y)) = 
-    ifS (eqNP x y) 
-      (PredVP x (ConjVP X Y)) 
-      (ifS (eqVP X Y) 
-         (PredVP (ConjNP x y) X)
-         (ConjS (PredVP x X) (PredVP y Y))) ;
-  fun ifS : Bool -> S -> S -> S ; -- if b then x else y 
-  def
-    ifS True  x _ = x ;
-    ifS False _ y = y ;
-  fun eqNP : NP -> NP -> Bool ;  -- x == y
-  def 
-    eqNP John John = True ;
-    eqNP Mary Mary = True ;
-    eqNP _ _ = False ;
-  fun eqVP : VP -> VP -> Bool ;  -- X == Y
-  def 
-    eqVP Run  Run  = True ;
-    eqVP Walk Walk = True ;
-    eqVP _ _ = False ;
-  cat Bool ; data True, False : Bool ;
-}
diff --git a/book/examples/chapter6/AggregationEng.gf b/book/examples/chapter6/AggregationEng.gf
deleted file mode 100644
--- a/book/examples/chapter6/AggregationEng.gf
+++ /dev/null
@@ -1,17 +0,0 @@
-concrete AggregationEng of Aggregation = {
-
-lincat S, NP, VP = Str ;
-
-lin 
-  PredVP x y = x ++ y ;
-  ConjS  a b = a ++ "or" ++ b ;
-  ConjVP a b = a ++ "or" ++ b ;
-  ConjNP a b = a ++ "or" ++ b ;
-
-  Run = "runs" ;
-  Walk = "walks" ;
-  John = "John" ;
-  Mary = "Mary" ;
-
-}
-
diff --git a/book/examples/chapter6/Arithm.gf b/book/examples/chapter6/Arithm.gf
deleted file mode 100644
--- a/book/examples/chapter6/Arithm.gf
+++ /dev/null
@@ -1,30 +0,0 @@
-abstract Arithm = {
-  cat
-    Prop ;                        -- proposition
-    Nat ;                         -- natural number
-  data
-    Zero : Nat ;                  -- 0
-    Succ : Nat -> Nat ;           -- the successor of x
-  fun
-    Even : Nat -> Prop ;          -- x is even
-    And  : Prop -> Prop -> Prop ; -- A and B
-
-  cat Less Nat Nat ; 
-  data LessZ : (y : Nat) -> Less Zero (Succ y) ;
-  data LessS : (x,y : Nat) -> Less x y -> Less (Succ x) (Succ y) ;
-
-  cat Span ;
-  data FromTo : (m,n : Nat) -> Less m n -> Span ;
-
-  fun one : Nat ;
-  def one = Succ Zero ;
-
-  fun twice : Nat -> Nat ;
-  def twice x = plus x x ;
-
-  fun plus : Nat -> Nat -> Nat ;
-  def 
-    plus x Zero = x ;
-    plus x (Succ y) = Succ (plus x y) ;
-
-} 
diff --git a/book/examples/chapter6/Bin.gf b/book/examples/chapter6/Bin.gf
deleted file mode 100644
--- a/book/examples/chapter6/Bin.gf
+++ /dev/null
@@ -1,50 +0,0 @@
-abstract Bin = {
-
-cat Nat ; Bin ; Pos ;
-
-data 
-  Zero : Nat ; 
-  Succ : Nat -> Nat ;
-
-  BZero : Bin ;         -- 0
-  BPos  : Pos -> Bin ;  -- p
-  BOne  : Pos ;         -- 1
-  AZero : Pos -> Pos ;  -- p0
-  AOne  : Pos -> Pos ;  -- p1
-
-fun
-  bin2nat : Bin -> Nat ;
-def
-  bin2nat BZero = Zero ;
-  bin2nat (BPos p) = pos2nat p ;
-fun 
-  pos2nat : Pos -> Nat ;
-def
-  pos2nat BOne = one ;
-  pos2nat (AZero p) = twice (pos2nat p) ;
-  pos2nat (AOne  p) = Succ (twice (pos2nat p)) ;
-fun one : Nat ;
-def one = Succ Zero ;
-fun twice : Nat -> Nat ;
-def 
-  twice Zero = Zero ;
-  twice (Succ n) = Succ (Succ (twice n)) ;
-
-fun
-  nat2bin : Nat -> Bin ;
-def
-  nat2bin Zero = BZero ;
-  nat2bin (Succ n) = bSucc (nat2bin n) ;
-fun
-  bSucc : Bin -> Bin ;
-def
-  bSucc BZero = BPos BOne ;
-  bSucc (BPos p) = BPos (pSucc p) ;
-fun
-  pSucc : Pos -> Pos ;
-def
-  pSucc BOne = AZero BOne ;
-  pSucc (AZero p) = AOne p ;
-  pSucc (AOne p) = AZero (pSucc p) ;
-
-}
diff --git a/book/examples/chapter6/Classes.gf b/book/examples/chapter6/Classes.gf
deleted file mode 100644
--- a/book/examples/chapter6/Classes.gf
+++ /dev/null
@@ -1,28 +0,0 @@
-abstract Classes = {
-
-flags 
-  startcat = Command ;
-
-cat
-  Command ;
-  Kind ;
-  Class ;
-  Instance Class Kind ;
-  Action Class ;
-  Device Kind ;
-
-fun
-  Act  : (c : Class) -> (k : Kind) -> Instance c k -> Action c -> Device k -> Command ;
-  The : (k : Kind) -> Device k ;
-
-  Light, Fan : Kind ;
-  Switchable, Dimmable : Class ;
-  
-  SwitchOn, SwitchOff : Action Switchable ;
-  Dim : Action Dimmable ;
-
-  switchable_Light : Instance Switchable Light ;
-  switchable_Fan : Instance Switchable Fan ;
-  dimmable_Light : Instance Dimmable Light ;
-
-}
diff --git a/book/examples/chapter6/ClassesEng.gf b/book/examples/chapter6/ClassesEng.gf
deleted file mode 100644
--- a/book/examples/chapter6/ClassesEng.gf
+++ /dev/null
@@ -1,29 +0,0 @@
---# -path=.:present
-
-concrete ClassesEng of Classes = open SyntaxEng, ParadigmsEng in {
-
-lincat
-  Command = Utt ;
-  Kind = CN ;
-  Class = {} ;
-  Instance = {} ;
-  Action = V2 ;
-  Device = NP ;
-
-lin
-  Act _ _ _ a d = mkUtt (mkImp a d) ;
-  The k = mkNP the_Det k ;
-
-  Light = mkCN (mkN "light") ;
-  Fan = mkCN (mkN "fan") ;
-  Switchable, Dimmable = <> ;
-  
-  SwitchOn = mkV2 (partV (mkV "switch") "on") ;
-  SwitchOff = mkV2 (partV (mkV "switch") "off") ;
-  Dim = mkV2 (mkV "dim") ;
-
-  switchable_Light = <> ;
-  switchable_Fan = <> ;
-  dimmable_Light = <> ;
-
-}
diff --git a/book/examples/chapter6/DShopping.gf b/book/examples/chapter6/DShopping.gf
deleted file mode 100644
--- a/book/examples/chapter6/DShopping.gf
+++ /dev/null
@@ -1,24 +0,0 @@
-abstract DShopping = {
-  flags startcat = Comment ;
-  cat
-    Comment ; 
-    Dom ;
-    Item Dom ; 
-    Kind Dom ; 
-    Quality Dom ;
-  fun
-    DFood, DCloth : Dom ;
-
-    Pred : (d : Dom) -> Item d -> Quality d -> Comment ;
-    This, That : (d : Dom) -> Kind d -> Item d ;
-    Mod : (d : Dom) -> Quality d -> Kind d -> Kind d ;
-    Wine, Cheese, Fish : Kind DFood ;
-    Very : (d : Dom) -> Quality d -> Quality d ;
-    Fresh, Warm, Delicious, Boring : Quality DFood ;
-
-    Shirt, Jacket : Kind DCloth ;
-    Comfortable : Quality DCloth ;
-
-    Italian, Expensive, Elegant : (d : Dom) -> Quality d ;
-
-}
diff --git a/book/examples/chapter6/DShoppingEng.gf b/book/examples/chapter6/DShoppingEng.gf
deleted file mode 100644
--- a/book/examples/chapter6/DShoppingEng.gf
+++ /dev/null
@@ -1,33 +0,0 @@
---# -path=.:present
-
-concrete DShoppingEng of DShopping = open SyntaxEng, ParadigmsEng in {
-
-  lincat
-    Comment = Cl ; 
-    Item = NP ;
-    Kind = CN ;
-    Quality = AP ;
-  lin
-    Pred _ item quality = mkCl item quality ;
-    This _ kind = mkNP this_QuantSg kind ;
-    That _ kind = mkNP that_QuantSg kind ;
-    Mod _ quality kind = mkCN quality kind ;
-    Very _ quality = mkAP very_AdA quality ;
-
-    Shirt = mkCN (mkN "shirt") ;
-    Jacket = mkCN (mkN "jacket") ;
-    Wine = mkCN (mkN "wine") ;
-    Cheese = mkCN (mkN "cheese") ;
-    Fish = mkCN (mkN "fish" "fish") ;
-    Fresh = mkAP (mkA "fresh") ;
-    Warm = mkAP (mkA "warm") ;
-    Italian _ = mkAP (mkA "Italian") ;
-    Expensive _ = mkAP (mkA "expensive") ;
-    Elegant _ = mkAP (mkA "elegant") ;
-    Delicious = mkAP (mkA "delicious") ;
-    Boring = mkAP (mkA "boring") ;
-    Comfortable = mkAP (mkA "comfortable") ;
-
-    DFood, DCloth = {s = []} ;
-
-}
diff --git a/book/examples/chapter6/Nat.gf b/book/examples/chapter6/Nat.gf
deleted file mode 100644
--- a/book/examples/chapter6/Nat.gf
+++ /dev/null
@@ -1,22 +0,0 @@
-abstract Nat = {
-  cat
-    Prop ;                        -- proposition
-    Nat ;                         -- natural number
-  data
-    Zero : Nat ;                  -- 0
-    Succ : Nat -> Nat ;           -- the successor of x
-  fun
-    Even : Nat -> Prop ;          -- x is even
-    And  : Prop -> Prop -> Prop ; -- A and B
-
-  fun one : Nat ;
-  def one = Succ Zero ;
-
-  fun twice : Nat -> Nat ;
-  def twice x = plus x x ;
-
-  fun plus : Nat -> Nat -> Nat ;
-  def 
-    plus x Zero = x ;
-    plus x (Succ y) = Succ (plus x y) ;
-}
diff --git a/book/examples/chapter6/Smart.gf b/book/examples/chapter6/Smart.gf
deleted file mode 100644
--- a/book/examples/chapter6/Smart.gf
+++ /dev/null
@@ -1,16 +0,0 @@
-abstract Smart = {
-
-  cat
-    Command ;
-    Kind ; 
-    Device Kind ; 
-    Action Kind ; 
-
-  fun 
-    Act : (k : Kind) -> Action k -> Device k -> Command ;
-    The : (k : Kind) -> Device k ;  -- the light
-    Light, Fan : Kind ;
-    Dim : Action Light ;
-    SwitchOn, SwitchOff : (k : Kind) -> Action k ;
-
-}
diff --git a/book/examples/chapter6/Verbs.gf b/book/examples/chapter6/Verbs.gf
deleted file mode 100644
--- a/book/examples/chapter6/Verbs.gf
+++ /dev/null
@@ -1,22 +0,0 @@
-abstract Verbs = {
-
-cat
-  S ; NP ; Subcat ; V Subcat ; Args Subcat ;
-
-fun
-  cIntr : Subcat ;
-  cTr   : Subcat ;
-  cS    : Subcat ;
-
-  aIntr : NP -> Args cIntr ;
-  aTr   : NP -> NP -> Args cTr ;
-  aS    : NP -> S  -> Args cS ;
-
-  pred  : (s : Subcat) -> V s -> Args s -> S ;
-
-  john, mary : NP ;
-  walk : V cIntr ;
-  love : V cTr ;
-  know : V cS ;
-
-}
diff --git a/book/examples/chapter6/VerbsEng.gf b/book/examples/chapter6/VerbsEng.gf
deleted file mode 100644
--- a/book/examples/chapter6/VerbsEng.gf
+++ /dev/null
@@ -1,22 +0,0 @@
-concrete VerbsEng of Verbs = {
-
-lincat
-  S, NP, Subcat, V = Str ; Args = Str * Str ;
-
-lin
-  cIntr = [] ;
-  cTr   = [] ;
-  cS    = [] ;
-
-  aIntr su    = <su,[]> ;
-  aTr   su ob = <su,ob> ;
-  aS    su s  = <su,"that" ++ s> ;
-
-  pred _ v xs = xs.p1 ++ v ++ xs.p2 ;
-
-  john = "John" ; mary = "Mary" ;
-  walk = "walks" ;
-  love = "loves" ;
-  know = "knows" ;
-
-}
diff --git a/book/examples/chapter7/Map.gf b/book/examples/chapter7/Map.gf
deleted file mode 100644
--- a/book/examples/chapter7/Map.gf
+++ /dev/null
@@ -1,10 +0,0 @@
-abstract Map = {
-flags startcat = Query ;
-cat
-  Query ; Input ; Place ; Click ;
-fun
-  GoFromTo   : Place -> Place -> Input ;
-  ThisPlace  : Click -> Place ;
-  QueryInput : Input -> Query ;
-  ClickCoord : Int -> Int -> Click ;
-}
diff --git a/book/examples/chapter7/MapEng.gf b/book/examples/chapter7/MapEng.gf
deleted file mode 100644
--- a/book/examples/chapter7/MapEng.gf
+++ /dev/null
@@ -1,17 +0,0 @@
-concrete MapEng of Map = {
-lincat
-  Query        = {s : Str} ;
-  Input, Place = {s : Str ; p : Str} ;
-  Click        = {p : Str} ;
-lin
-  GoFromTo x y = {
-    s = "I want to go from" ++ x.s ++ "to" ++ y.s ; 
-    p = x.p ++ y.p
-    } ;
-  ThisPlace c = {
-    s = "this place" ; 
-    p = c.p
-    } ;
-  QueryInput i = {s = i.s ++ ";" ++ i.p} ;
-  ClickCoord x y = {p = "(" ++ x.s ++ "," ++ y.s ++ ")"} ;
-}
diff --git a/book/examples/chapter7/Query.gf b/book/examples/chapter7/Query.gf
deleted file mode 100644
--- a/book/examples/chapter7/Query.gf
+++ /dev/null
@@ -1,12 +0,0 @@
-abstract Query = {
-  flags startcat=Question ;
-  cat 
-    Answer ; Question ; Object ;
-  fun 
-    Even   : Object -> Question ;
-    Odd    : Object -> Question ;
-    Prime  : Object -> Question ;
-    Number : Int -> Object ;
-    Yes    : Answer ;
-    No     : Answer ;
-}
diff --git a/book/examples/chapter7/QueryEng.gf b/book/examples/chapter7/QueryEng.gf
deleted file mode 100644
--- a/book/examples/chapter7/QueryEng.gf
+++ /dev/null
@@ -1,13 +0,0 @@
-concrete QueryEng of Query = {
-  lincat 
-    Answer, Question, Object = Str ;
-  lin 
-    Even  = pred "even" ;
-    Odd   = pred "odd" ;
-    Prime = pred "prime" ;
-    Number i = i.s ;
-    Yes = "yes" ;
-    No = "no" ;
-  oper
-    pred : Str -> Str -> Str = \f,x -> "is" ++ x ++ f ;
-}
diff --git a/book/examples/chapter7/QueryFin.gf b/book/examples/chapter7/QueryFin.gf
deleted file mode 100644
--- a/book/examples/chapter7/QueryFin.gf
+++ /dev/null
@@ -1,13 +0,0 @@
-concrete QueryFin of Query = {
-  lincat 
-    Answer, Question, Object = Str ;
-  lin 
-    Even  = pred "parillinen" ;
-    Odd   = pred "pariton" ;
-    Prime = pred "alkuluku" ;
-    Number i = i.s ;
-    Yes = "kyllä" ;
-    No = "ei" ;
-  oper
-    pred : Str -> Str -> Str = \f,x -> "onko" ++ x ++ f ;
-}
diff --git a/book/examples/chapter8/Calculator.gf b/book/examples/chapter8/Calculator.gf
deleted file mode 100644
--- a/book/examples/chapter8/Calculator.gf
+++ /dev/null
@@ -1,7 +0,0 @@
-abstract Calculator = {
-flags startcat = Exp ;
-cat Exp ;
-fun
-  EPlus, EMinus, ETimes, EDiv : Exp -> Exp -> Exp ;
-  EInt : Int -> Exp ;
-}
diff --git a/book/examples/chapter8/CalculatorC.gf b/book/examples/chapter8/CalculatorC.gf
deleted file mode 100644
--- a/book/examples/chapter8/CalculatorC.gf
+++ /dev/null
@@ -1,10 +0,0 @@
-concrete CalculatorC of Calculator = open Formal, Prelude in {
-lincat 
-  Exp = TermPrec ;
-lin
-  EPlus  = infixl 0 "+" ;
-  EMinus = infixl 0 "-" ;
-  ETimes = infixl 1 "*" ;
-  EDiv   = infixl 1 "/" ;
-  EInt i = constant i.s ;
-}
diff --git a/book/examples/chapter8/CalculatorJ.gf b/book/examples/chapter8/CalculatorJ.gf
deleted file mode 100644
--- a/book/examples/chapter8/CalculatorJ.gf
+++ /dev/null
@@ -1,13 +0,0 @@
-concrete CalculatorJ of Calculator = open Prelude in {
-lincat 
-  Exp = SS ;
-lin
-  EPlus  = postfix "iadd" ;
-  EMinus = postfix "isub" ;
-  ETimes = postfix "imul" ;
-  EDiv   = postfix "idiv" ;
-  EInt i = ss ("ldc" ++ i.s) ;
-oper
-  postfix : Str -> SS -> SS -> SS = \op,x,y -> 
-    ss (x.s ++ ";" ++ y.s ++ ";" ++ op) ;
-}
diff --git a/book/examples/chapter8/CalculatorP.gf b/book/examples/chapter8/CalculatorP.gf
deleted file mode 100644
--- a/book/examples/chapter8/CalculatorP.gf
+++ /dev/null
@@ -1,14 +0,0 @@
-concrete CalculatorP of Calculator = open Prelude in {
-
-lincat 
-  Exp = SS ;
-lin
-  EPlus  = infix "+" ;
-  EMinus = infix "-" ;
-  ETimes = infix "*" ;
-  EDiv   = infix "/" ;
-  EInt i = i ;
-oper
-  infix : Str -> SS -> SS -> SS = \f,x,y -> 
-    ss ("(" ++ x.s ++ f ++ y.s ++ ")") ;
-}
diff --git a/book/examples/chapter8/CalculatorS.gf b/book/examples/chapter8/CalculatorS.gf
deleted file mode 100644
--- a/book/examples/chapter8/CalculatorS.gf
+++ /dev/null
@@ -1,11 +0,0 @@
-concrete CalculatorS of Calculator = open Prelude in {
-  lin
-    EPlus  = infix "plus" ;
-    EMinus = infix "minus" ;
-    ETimes = infix "times" ;
-    EDiv   = infix ["divided by"] ;
-    EInt i = i ;
-  oper
-    infix : Str -> SS -> SS -> SS = \op,x,y -> 
-      ss (x.s ++ op ++ y.s ++ "PAUSE") ;
-}
diff --git a/book/examples/chapter8/Geometry.gf b/book/examples/chapter8/Geometry.gf
deleted file mode 100644
--- a/book/examples/chapter8/Geometry.gf
+++ /dev/null
@@ -1,7 +0,0 @@
-abstract Geometry = Logic ** {
-fun
-  Line, Point, Circle : Dom ;
-  Intersect, Parallel : Ind -> Ind -> Atom ;
-  Vertical : Ind -> Atom ;
-  Centre : Ind -> Ind ;
-}
diff --git a/book/examples/chapter8/GeometryEng.gf b/book/examples/chapter8/GeometryEng.gf
deleted file mode 100644
--- a/book/examples/chapter8/GeometryEng.gf
+++ /dev/null
@@ -1,13 +0,0 @@
---# -path=.:present
-
-concrete GeometryEng of Geometry = LogicEng ** 
-  open SyntaxEng, ParadigmsEng in {
-lin
-  Line = mkCN (mkN "line") ;
-  Point = mkCN (mkN "point") ; 
-  Circle = mkCN (mkN "circle") ;
-  Intersect = pred (mkV2 "intersect") ;
-  Parallel = pred (mkA2 (mkA "parallel") (mkPrep "to")) ;
-  Vertical = pred (mkA "vertical") ;
-  Centre = app (mkN2 (mkN "centre") (mkPrep "of")) ;
-}
diff --git a/book/examples/chapter8/GeometryEngb.gf b/book/examples/chapter8/GeometryEngb.gf
deleted file mode 100644
--- a/book/examples/chapter8/GeometryEngb.gf
+++ /dev/null
@@ -1,11 +0,0 @@
-concrete GeometryEng of Geometry = LogicEng ** 
-  open SyntaxEng, ParadigmsEng in {
-lin
-  Line = mkN "line" ;
-  Point = mkN "point" ; 
-  Circle = mkN "circle" ;
-  Intersect = pred (mkV2 "intersect") ;
-  Parallel = pred (mkA2 (mkA "parallel") (mkPrep "to")) ;
-  Vertical = pred (mkA "vertical") ;
-  Centre = app (mkN2 (mkN "centre") (mkPrep "of")) ;
-}
diff --git a/book/examples/chapter8/Geometryb.gf b/book/examples/chapter8/Geometryb.gf
deleted file mode 100644
--- a/book/examples/chapter8/Geometryb.gf
+++ /dev/null
@@ -1,7 +0,0 @@
-abstract Geometry = Logic ** {
-fun
-  Line, Point, Circle : Dom ;
-  Intersect, Parallel : Ind -> Ind -> Prop ;
-  Vertical : Ind -> Prop ;
-  Centre : Ind -> Ind ;
-}
diff --git a/book/examples/chapter8/Graftal.gf b/book/examples/chapter8/Graftal.gf
deleted file mode 100644
--- a/book/examples/chapter8/Graftal.gf
+++ /dev/null
@@ -1,7 +0,0 @@
--- (c) Krasimir Angelov 2009
-abstract Graftal = {
-  cat N; S;
-  fun z : N ;
-      s : N -> N ;
-      c : N -> S ;
-  }
diff --git a/book/examples/chapter8/Logic.gf b/book/examples/chapter8/Logic.gf
deleted file mode 100644
--- a/book/examples/chapter8/Logic.gf
+++ /dev/null
@@ -1,21 +0,0 @@
-abstract Logic = {
-flags startcat = Stm ;
-cat
-  Stm ;        -- top-level statement 
-  Prop ;       -- proposition 
-  Atom ;       -- atomic formula
-  Ind ;        -- individual term 
-  Dom ;        -- domain expression
-  Var ;        -- variable
-  [Prop] {2} ; -- list of propositions, 2 or more
-  [Var] {1} ;  -- list of variables, 1 or more
-fun
-  SProp : Prop -> Stm ;
-  And, Or : [Prop] -> Prop ;
-  If  : Prop -> Prop -> Prop ;
-  Not : Prop -> Prop ;
-  PAtom : Atom -> Prop ;
-  All, Exist : [Var] -> Dom -> Prop -> Prop ;
-  IVar : Var -> Ind ;
-  VString : String -> Var ;
-}
diff --git a/book/examples/chapter8/LogicBEng.gf b/book/examples/chapter8/LogicBEng.gf
deleted file mode 100644
--- a/book/examples/chapter8/LogicBEng.gf
+++ /dev/null
@@ -1,38 +0,0 @@
-concrete LogicEng of Logic = open 
-  SyntaxEng, (P = ParadigmsEng), SymbolicEng, Prelude in {
-lincat
-  Stm  = Text ;
-  Prop = S ;
-  Atom = Cl ; 
-  Ind  = NP ; 
-  Dom  = CN ; 
-  Var  = NP ; 
-  [Prop] = [S] ; 
-  [Var]  = NP ; 
-lin
-  SProp = mkText ;
-  And = mkS and_Conj ;      -- A, B ... and C
-  Or = mkS or_Conj ;        -- A, B ... or C
-  If A B =                  -- if A B
-    mkS (mkAdv if_Subj A) B ;  
-  Not A =                   -- it is not the case that A
-    mkS negativePol (mkCl 
-      (mkVP (mkNP the_Quant 
-         (mkCN case_CN A)))) ; 
-  All xs A B =              -- for all A's xs, B
-    mkS (mkAdv for_Prep 
-      (mkNP all_Predet (mkNP a_Quant 
-         plNum (mkCN A xs)))) B ;
-  Exist xs A B =            -- for some A's xs, B
-    mkS (mkAdv for_Prep 
-      (mkNP somePl_Det (mkCN A xs))) B ;
-  PAtom = mkS ;
-  IVar x = x ;
-  VString s = symb s ;
-  BaseProp A B = mkListS A B ; 
-  ConsProp A As = mkListS A As ;
-  BaseVar x = x ;
-  ConsVar x xs = mkNP and_Conj (mkListNP x xs) ;
-oper
-  case_CN : CN = mkCN (P.mkN "case") ;
-}
diff --git a/book/examples/chapter8/LogicEng.gf b/book/examples/chapter8/LogicEng.gf
deleted file mode 100644
--- a/book/examples/chapter8/LogicEng.gf
+++ /dev/null
@@ -1,39 +0,0 @@
-concrete LogicEng of Logic = open 
-  SyntaxEng, (P = ParadigmsEng), SymbolicEng, Prelude in {
-lincat
-  Stm  = Text ;
-  Prop = {pos,neg : S ; isAtom : Bool} ; 
-  Atom = Cl ; 
-  Ind  = NP ; 
-  Dom  = CN ; 
-  Var  = NP ; 
-  [Prop] = ListS ; 
-  [Var]  = NP ; 
-lin
-  SProp p = mkText p.pos ;
-  And ps = complexProp (mkS and_Conj ps) ;
-  Or ps = complexProp (mkS or_Conj ps) ;
-  If A B = complexProp (mkS if_then_Conj (mkListS A.pos B.pos)) ;
-  Not A = complexProp A.neg ;
-  All xs A B = complexProp (mkS (mkAdv for_Prep 
-    (mkNP all_Predet (mkNP a_Quant plNum (mkCN A xs)))) B.pos) ;
-  Exist xs A B = complexProp (mkS (mkAdv for_Prep 
-    (mkNP somePl_Det (mkCN A xs))) B.pos) ;
-  PAtom p = 
-    {pos = mkS p ; neg = mkS negativePol p ; isAtom = True} ;
-  IVar x = x ;
-  VString s = symb s ;
-  BaseProp A B = mkListS A.pos B.pos ; 
-  ConsProp A As = mkListS A.pos As ;
-  BaseVar x = x ;
-  ConsVar x xs = mkNP and_Conj (mkListNP x xs) ;
-oper 
-  complexProp : S -> {pos,neg : S ; isAtom : Bool} = \s -> {
-    pos = s ; 
-    neg = negS s ; 
-    isAtom = False 
-    } ;
-  negS : S -> S = \s -> mkS negativePol (mkCl (mkNP it_Pron) 
-      (mkNP the_Quant (mkCN (mkCN (P.mkN "case")) s))) ; 
-  if_Then_Conj : Conj = P.mkConj "if" "then" ;
-}
diff --git a/book/examples/chapter8/Logicb.gf b/book/examples/chapter8/Logicb.gf
deleted file mode 100644
--- a/book/examples/chapter8/Logicb.gf
+++ /dev/null
@@ -1,11 +0,0 @@
-abstract Logic = {
-cat
-  Prop ; Ind ; Dom ; Var ; [Prop] {2} ; [Var] {1} ;
-fun
-  And, Or : [Prop] -> Prop ;
-  If : Prop -> Prop -> Prop ;
-  Not : Prop -> Prop ;
-  All, Exist : [Var] -> Dom -> Prop -> Prop ;
-  IVar : Var -> Ind ;
-  VString : String -> Var ;
-}
diff --git a/book/examples/chapter8/Sierpinski.gf b/book/examples/chapter8/Sierpinski.gf
deleted file mode 100644
--- a/book/examples/chapter8/Sierpinski.gf
+++ /dev/null
@@ -1,16 +0,0 @@
-concrete Sierpinski of Graftal = {
-  lincat N = {a : Str; b : Str} ;
-  lincat S = {s : Str} ;
-
-  lin z = {a = A; b = B} ;
-  lin s x = {
-    a = x.b ++ R ++ x.a ++ R ++ x.b ; 
-    b = x.a ++ L ++ x.b ++ L ++ x.a
-    } ;
-  lin c x = {s = "newpath 300 550 moveto" ++ x.a ++ "stroke showpage"} ;
-
-  oper A : Str = "0 2 rlineto" ;
-  oper B : Str = "0 2 rlineto" ;
-  oper L : Str = "+60 rotate" ;
-  oper R : Str = "-60 rotate" ;
-}
diff --git a/book/examples/chapter9/Anaphora.gf b/book/examples/chapter9/Anaphora.gf
deleted file mode 100644
--- a/book/examples/chapter9/Anaphora.gf
+++ /dev/null
@@ -1,17 +0,0 @@
-abstract Anaphora = TestSemantics - [she_NP] ** {
-
-cat
-  Proof Prop ;
-
-fun
-  IfS : (A : S) -> (Proof (iS A) -> S) -> S ;
-
-  AnaNP : (A : CN) -> (a : Ind) -> Proof (iCN A a) -> NP ;
-
-  pe : (B : Ind -> Prop) -> Proof (Exist B) -> Ind ;
-  qe : (B : Ind -> Prop) -> (c : Proof (Exist B)) -> Proof (B (pe B c)) ;
-
-  pc : (A,B : Prop) -> Proof (And A B) -> Proof A ;
-  qc : (A,B : Prop) -> Proof (And A B) -> Proof B ;
-
-}
diff --git a/book/examples/chapter9/AnaphoraIta.gf b/book/examples/chapter9/AnaphoraIta.gf
deleted file mode 100644
--- a/book/examples/chapter9/AnaphoraIta.gf
+++ /dev/null
@@ -1,17 +0,0 @@
-concrete AnaphoraIta of Anaphora = TestSemanticsIta - [she_NP] ** 
-  open ResIta, Prelude, Formal in {
-
-lincat
-  Proof = {} ;
-
-lin
-  IfS A B = {s = "se" ++ A.s ++ B.s} ;
-
-  AnaNP cn _ _ = case cn.g of {
-    Masc => pronNP "lui" "lo" "gli" Masc  Sg Per3 ;
-    Fem  => pronNP "lei" "la" "le" Fem  Sg Per3
-    } ;
-
-  pe _ _ = constant [] ; ----
-
-}
diff --git a/book/examples/chapter9/Grammar.gf b/book/examples/chapter9/Grammar.gf
deleted file mode 100644
--- a/book/examples/chapter9/Grammar.gf
+++ /dev/null
@@ -1,39 +0,0 @@
-abstract Grammar = {
-
-  flags startcat = S ;
-
-  cat 
-    S ; Cl ; NP ; VP ; AP ; CN ; 
-    Det ; N ; A ; V ; V2 ; AdA ; 
-    Tense ; Pol ;
-    Conj ;
-  data
-    UseCl   : Tense -> Pol -> Cl -> S ;
-    PredVP  : NP -> VP -> Cl ;
-    ComplV2 : V2 -> NP -> VP ;
-    DetCN   : Det -> CN -> NP ;
-    ModCN   : AP -> CN -> CN ;
-
-    CompAP  : AP -> VP ;
-    AdAP    : AdA -> AP -> AP ;
-
-    ConjS   : Conj -> S  -> S  -> S ;
-    ConjNP  : Conj -> NP -> NP -> NP ;
-
-    UseV    : V -> VP ;
-    UseN    : N -> CN ;
-    UseA    : A -> AP ;
-
-    a_Det, the_Det, every_Det : Det ;
-    this_Det, these_Det : Det ;
-    that_Det, those_Det : Det ;
-    i_NP, she_NP, we_NP : NP ;
-    very_AdA : AdA ;
-
-    Pos, Neg : Pol ;
-    Pres, Perf : Tense ;
-
-    and_Conj, or_Conj : Conj ;
-
-  
-}
diff --git a/book/examples/chapter9/GrammarIta.gf b/book/examples/chapter9/GrammarIta.gf
deleted file mode 100644
--- a/book/examples/chapter9/GrammarIta.gf
+++ /dev/null
@@ -1,141 +0,0 @@
-concrete GrammarIta of Grammar = open ResIta, Prelude in {
-  lincat  
-    S  = {s : Str} ;
-    Cl = {s : ResIta.Tense => Bool => Str} ; 
-    NP = ResIta.NP ;  
-      -- {s : Case => {clit,obj : Str ; isClit : Bool} ; a : Agr} ; 
-    VP = ResIta.VP ;  
-      -- {v : Verb ; clit : Str ; clitAgr : ClitAgr ; obj : Agr => Str} ;
-    AP = {s : Gender => Number => Str ; isPre : Bool} ;
-    CN = Noun ;           -- {s : Number => Str ; g : Gender} ;
-    Det = {s : Gender => Case => Str ; n : Number} ;
-    N = Noun ;            -- {s : Number => Str ; g : Gender} ;
-    A = Adj ;             -- {s : Gender => Number => Str ; isPre : Bool} ;
-    V = Verb ;            -- {s : VForm => Str ; aux : Aux} ;
-    V2 = Verb ** {c : Case} ;
-    AdA = {s : Str} ;
-    Pol = {s : Str ; b : Bool} ;
-    Tense = {s : Str ; t : ResIta.Tense} ;
-    Conj = {s : Str ; n : Number} ;
-  lin
-    UseCl t p cl = {s = t.s ++ p.s ++ cl.s ! t.t ! p.b} ; 
-    PredVP np vp = 
-      let 
-        subj = (np.s ! Nom).obj ;
-        obj  = vp.obj ! np.a ;
-        clit = vp.clit ;
-        verb = table {
-          Pres => agrV vp.v np.a ;
-          Perf => agrV (auxVerb vp.v.aux) np.a ++ agrPart vp.v np.a vp.clitAgr
-          }
-      in {
-        s = \\t,b => subj ++ neg b ++ clit ++ verb ! t ++ obj
-      } ;
-
-    ComplV2 v2 np = 
-      let
-        nps = np.s ! v2.c
-      in {
-        v = v2 ; 
-        clit = nps.clit ; 
-        clitAgr = case <nps.isClit,v2.c> of {
-          <True,Acc> => CAgr np.a ;
-          _ => CAgrNo
-          } ;
-        obj  = \\_ => nps.obj
-        } ;
-
-    UseV v = {
-      v = v ; 
-      clit = [] ; 
-      clitAgr = CAgrNo ;
-      obj = \\_ => []
-      } ;
-
-    DetCN det cn = {
-      s = \\c => {
-        obj = det.s ! cn.g ! c ++ cn.s ! det.n ; 
-        clit = [] ; 
-        isClit = False
-        } ;
-      a = Ag cn.g det.n Per3
-      } ;
-
-    ModCN ap cn = {
-      s = \\n => preOrPost ap.isPre (ap.s ! cn.g ! n) (cn.s ! n) ;
-      g = cn.g
-      } ;
-
-    CompAP ap = {
-      v = essere_V ; 
-      clit = [] ; 
-      clitAgr = CAgrNo ;
-      obj = \\ag => case ag of {
-        Ag g n _ => ap.s ! g ! n
-        }
-      } ;
-
-    AdAP ada ap = {
-      s = \\g,n => ada.s ++ ap.s ! g ! n ;
-      isPre = ap.isPre ;
-      } ;
-
-    ConjNP co nx ny = {
-      s = \\c => {
-        obj = (nx.s ! c).obj ++ co.s ++ (ny.s ! c).obj ; 
-        clit = [] ; 
-        isClit = False
-        } ;
-      a = conjAgr co.n nx.a ny.a
-      } ;
-
-    ConjS co x y = {s = x.s ++ co.s ++ y.s} ;
-
-    UseN n = n ;
-
-    UseA adj = adj ;
-
-    a_Det = adjDet (mkAdj "un" "una" [] [] True) Sg ;
-
-    every_Det = adjDet (regAdj "ogni") Sg ;
-
-    the_Det = {
-      s = table {
-        Masc => table {
-          Nom | Acc => elisForms "lo" "l'" "il" ;
-          Dat => elisForms "allo" "all'" "al"
-          } ;
-        Fem => table {
-          Nom | Acc => elisForms "la" "'l" "la" ;
-          Dat => elisForms "alla" "all'" "alla"
-          }
-        } ;
-      n = Sg
-      } ;
-        
-    this_Det = adjDet (regAdj "questo") Sg ;
-    these_Det = adjDet (regAdj "questo") Pl ;
-    that_Det = adjDet quello_A Sg ;
-    those_Det = adjDet quello_A Pl ;
-
-    i_NP =   pronNP "io"  "mi" "mi" Masc Sg Per1 ;
-    she_NP = pronNP "lei" "la" "le" Fem  Sg Per3 ;
-    we_NP =  pronNP "noi" "ci" "ci" Masc Pl Per1 ;
-
-    very_AdA = ss "molto" ;
-
-    Pos  = {s = [] ; b = True} ;
-    Neg  = {s = [] ; b = False} ;
-    Pres = {s = [] ; t = ResIta.Pres} ;
-    Perf = {s = [] ; t = ResIta.Perf} ;
-
-    and_Conj = {s = "e" ; n = Pl} ;
-    or_Conj  = {s = "o" ; n = Sg} ;
-
-  oper
-    quello_A : Adj = mkAdj 
-      (elisForms "quello" "quell'" "quel") "quella"
-      (elisForms "quegli" "quegli" "quei") "quelle"
-      True ;
-
-}
diff --git a/book/examples/chapter9/Logic.gf b/book/examples/chapter9/Logic.gf
deleted file mode 100644
--- a/book/examples/chapter9/Logic.gf
+++ /dev/null
@@ -1,9 +0,0 @@
-abstract Logic = {
-  cat
-    Prop ; Ind ;
-  data
-    And, Or, If : Prop -> Prop -> Prop ;
-    Not         : Prop -> Prop ;
-    All, Exist  : (Ind -> Prop) -> Prop ;
-    Past        : Prop -> Prop ;
-}
diff --git a/book/examples/chapter9/LogicIta.gf b/book/examples/chapter9/LogicIta.gf
deleted file mode 100644
--- a/book/examples/chapter9/LogicIta.gf
+++ /dev/null
@@ -1,54 +0,0 @@
-concrete LogicIta of Logic = GrammarIta ** open ResIta, Formal, Prelude in {
-
-
-lincat
-  T, I = SS ;
-lin
-  And x y = infixSS "&" x y ;
-  Or x y = infixSS "v" x y ;
-  If x y = infixSS "->" x y ;
-  Not x = prefixSS "~" x ;
-  All P = prefixSS (parenth ("A" ++ P.$0)) P ;
-  Exist P = prefixSS (parenth ("E" ++ P.$0)) P ;
-  Past P = prefixSS "Past" P ;
-
-lin
-  iN f = star (f.s ! Sg) ;
-  iA f = star (f.s ! Masc ! Sg) ;
-  iV f = star (f.s ! VInf) ;
-  iV2 f x y = star (f.s ! VInf) (cc2 x y) ;
-
-oper star : Str -> SS -> SS = \f,x -> prefixSS f (ss (parenth x.s)) ;
-
-{-
-
-lincat
-  T, I = TermPrec ;
-lin
-  And = infixl 2 "&" ;
-  Or  = infixl 2 "v" ;
-  If  = infixr 1 "->" ;
---  Not = prefix 3 "~" ;
---  All : (I -> T) -> T ;
---  Exist : (I -> T) -> T ;
---  Past : T -> T ;
-
-lin
-  iS   : S -> T ;
-  iCl  : Cl -> T ;
-  iNP  : NP -> (I -> T) -> T ;
-  iVP  : VP -> I -> T ;
-  iAP  : AP -> I -> T ;
-  iCN  : CN -> I -> T ;
-  iDet : Det -> (I -> T) -> (I -> T) -> T ;
-  iN   : N -> I -> T ;
-  iA   : A -> I -> T ;
-  iV   : V -> I -> T ;
-  iV2  : V2 -> I -> I -> T ;
-  iAdA : AdA -> (I -> T) -> I -> T ;
-  iTense : Tense -> T -> T ;
-  iPol  : Pol  -> T -> T ;
-  iConj : Conj -> T -> T -> T ;
--}
-
-}
diff --git a/book/examples/chapter9/LogicSymb.gf b/book/examples/chapter9/LogicSymb.gf
deleted file mode 100644
--- a/book/examples/chapter9/LogicSymb.gf
+++ /dev/null
@@ -1,13 +0,0 @@
-concrete LogicSymb of Logic = open Formal, Prelude in {
-
-lincat
-  Prop, Ind = TermPrec ;
-lin
-  And = infixl 2 "\\&" ;
-  Or  = infixl 2 "\\vee" ;
-  If  = infixr 1 "\\sup" ;
-  Not = prefix 3 "\\sim" ;
-  All P = prefix 3 (parenth ("\\forall" ++ P.$0)) P ;
-  Exist P = prefix 3 (parenth ("\\exists" ++ P.$0)) P ;
-  Past = prefix 3 "P" ;
-}
diff --git a/book/examples/chapter9/ParadigmsIta.gf b/book/examples/chapter9/ParadigmsIta.gf
deleted file mode 100644
--- a/book/examples/chapter9/ParadigmsIta.gf
+++ /dev/null
@@ -1,47 +0,0 @@
-resource ParadigmsIta = GrammarIta [N,A,V] ** 
-  open ResIta, GrammarIta, Prelude in {
-
-oper
-  masculine : Gender = Masc ;
-  feminine : Gender = Fem ;
-
-  accusative : Case = Acc ;
-  dative : Case = Dat ;
-
-  mkN = overload {
-    mkN : (vino : Str) -> N 
-      = \n -> lin N (regNoun n) ;
-    mkN : (uomo, uomini : Str) -> Gender -> N 
-      = \s,p,g -> lin N (mkNoun s p g) ;
-    } ;
-
-  mkA = overload {
-    mkA : (nero : Str) -> A 
-      = \a -> lin A (regAdj a) ;
-    mkA : (buono,buona,buoni,buone : Str) -> Bool -> A 
-      = \sm,sf,pm,pf,p -> lin A (mkAdj sm sf pm pf False) ;
-    } ;
-
-  preA : A -> A
-      = \a -> lin A {s = a.s ; isPre = True} ;
-
-  mkV = overload {
-    mkV : (finire : Str) -> V 
-      = \v -> lin V (regVerb v) ;
-    mkV : (andare,vado,vadi,va,andiamo,andate,vanno,andato : Str) -> V 
-      = \i,p1,p2,p3,p4,p5,p6,p -> lin V (mkVerb i p1 p2 p3 p4 p5 p6 p Avere) ;
-    } ;
-
-  essereV : V -> V
-    = \v -> lin V {s = v.s ; aux = Essere} ;
-
-  mkV2 = overload {
-    mkV2 : Str -> V2
-      = \s -> lin V2 (regVerb s ** {c = accusative}) ;
-    mkV2 : V -> V2
-      = \v -> lin V2 (v ** {c = accusative}) ;
-    mkV2 : V -> Case -> V2
-      = \v,c -> lin V2 (v ** {c = c}) ;
-    } ;
-
-}
diff --git a/book/examples/chapter9/ResIta.gf b/book/examples/chapter9/ResIta.gf
deleted file mode 100644
--- a/book/examples/chapter9/ResIta.gf
+++ /dev/null
@@ -1,178 +0,0 @@
-resource ResIta = open Prelude in {
-
--- parameters
-
-param
-  Number = Sg | Pl ;
-  Gender = Masc | Fem ;
-  Case   = Nom | Acc | Dat ;
-  Agr    = Ag Gender Number Person ;
-  Aux    = Avere | Essere ;
-  Tense  = Pres | Perf ;
-  Person = Per1 | Per2 | Per3 ;
-
-  VForm = VInf | VPres Number Person | VPart Gender Number ;
-
-  ClitAgr = CAgrNo | CAgr Agr ;
-
--- parts of speech
-
-oper
-  VP = {
-    v : Verb ; 
-    clit : Str ; 
-    clitAgr : ClitAgr ; 
-    obj : Agr => Str
-    } ;
-  NP = {
-    s : Case => {clit,obj : Str ; isClit : Bool} ; 
-    a : Agr
-    } ; 
-
--- the preposition word of an abstract case
-
-  prepCase : Case -> Str = \c -> case c of {
-    Dat => "a" ;
-    _ => []
-    } ;
-
--- for predication
-
-  agrV : Verb -> Agr -> Str = \v,a -> case a of {
-    Ag _ n p => v.s ! VPres n p
-    } ;
-
-  auxVerb : Aux -> Verb = \a -> case a of {
-    Avere => 
-      mkVerb "avere" "ho" "hai" "ha" "abbiamo" "avete" "hanno" "avuto" Avere ;
-    Essere => 
-      mkVerb "essere" "sono" "sei" "è" "siamo" "siete" "sono" "stato" Essere
-    } ;
-
-  agrPart : Verb -> Agr -> ClitAgr -> Str = \v,a,c -> case v.aux of {
-    Avere  => case c of {
-      CAgr (Ag g n _) => v.s ! VPart g n ;
-      _ => v.s ! VPart Masc Sg
-      } ;
-    Essere => case a of {
-      Ag g n _ => v.s ! VPart g n
-      }
-    } ;
-
-  neg : Bool -> Str = \b -> case b of {True => [] ; False => "non"} ;
-
-  essere_V = auxVerb Essere ;
-
--- for coordination
-
-  conjAgr : Number -> Agr -> Agr -> Agr = \n,xa,ya -> 
-    let 
-      x = agrFeatures xa ; y = agrFeatures ya
-    in Ag 
-      (conjGender x.g y.g) 
-      (conjNumber (conjNumber x.n y.n) n)
-      (conjPerson x.p y.p) ;
-
-  agrFeatures : Agr -> {g : Gender ; n : Number ; p : Person} = \a -> 
-    case a of {Ag g n p => {g = g ; n = n ; p = p}} ;
-
-  conjGender : Gender -> Gender -> Gender = \g,h ->
-    case g of {Masc => Masc ; _ => h} ;
-
-  conjNumber : Number -> Number -> Number = \m,n ->
-    case m of {Pl => Pl ; _ => n} ;
-
-  conjPerson : Person -> Person -> Person = \p,q ->
-    case <p,q> of {
-      <Per1,_> | <_,Per1> => Per1 ;
-      <Per2,_> | <_,Per2> => Per2 ;
-      _                   => Per3
-      } ;
-
-
-
--- for morphology
-
-  Noun : Type = {s : Number => Str ; g : Gender} ;
-  Adj  : Type = {s : Gender => Number => Str ; isPre : Bool} ;
-  Verb : Type = {s : VForm => Str ; aux : Aux} ;
-
-  mkNoun : Str -> Str -> Gender -> Noun = \vino,vini,g -> {
-    s = table {Sg => vino ; Pl => vini} ;
-    g = g
-    } ;
-
-  regNoun : Str -> Noun = \vino -> case vino of {
-    fuo + c@("c"|"g") + "o" => mkNoun vino (fuo + c + "hi") Masc ;
-    ol  + "io" => mkNoun vino (ol + "i") Masc ;
-    vin + "o" => mkNoun vino (vin + "i") Masc ;
-    cas + "a" => mkNoun vino (cas + "e") Fem ;
-    pan + "e" => mkNoun vino (pan + "i") Masc ;
-    _ => mkNoun vino vino Masc 
-    } ;
-
-  mkAdj : (_,_,_,_ : Str) -> Bool -> Adj = \buono,buona,buoni,buone,p -> {
-    s = table {
-          Masc => table {Sg => buono ; Pl => buoni} ;
-          Fem  => table {Sg => buona ; Pl => buone}
-        } ;
-    isPre = p
-    } ;
-
-  regAdj : Str -> Adj = \nero -> case nero of {
-    ner + "o"  => mkAdj nero (ner + "a") (ner + "i") (ner + "e") False ;
-    verd + "e" => mkAdj nero nero (verd + "i") (verd + "i") False ;
-    _ => mkAdj nero nero nero nero False
-    } ;
-
-  mkVerb : (_,_,_,_,_,_,_,_ : Str) -> Aux -> Verb = 
-    \amare,amo,ami,ama,amiamo,amate,amano,amato,aux -> {
-    s = table {
-          VInf          => amare ;
-          VPres Sg Per1 => amo ;
-          VPres Sg Per2 => ami ;
-          VPres Sg Per3 => ama ;
-          VPres Pl Per1 => amiamo ;
-          VPres Pl Per2 => amate ;
-          VPres Pl Per3 => amano ;
-          VPart g n     => (regAdj amato).s ! g ! n
-          } ;
-    aux = aux
-    } ;
-
-  regVerb : Str -> Verb = \amare -> case amare of {
-    am  + "are" => mkVerb amare (am+"o") (am+"i") (am+"a") 
-                     (am+"iamo") (am+"ate") (am+"ano") (am+"ato") Avere ;
-    tem + "ere" => mkVerb amare (tem+"o") (tem+"i") (tem+"e") 
-                     (tem+"iamo") (tem+"ete") (tem+"ono") (tem+"uto") Avere ;
-    fin + "ire" => mkVerb amare (fin+"isco") (fin+"isci") (fin+"isce") 
-                     (fin+"iamo") (fin+"ite") (fin+"iscono") (fin+"ito") Avere
-    } ; 
-
--- for structural words
-
-  adjDet : Adj -> Number -> {s : Gender => Case => Str ; n : Number} = 
-  \adj,n -> {
-    s = \\g,c => prepCase c ++ adj.s ! g ! n ;
-    n = n
-    } ;
-
-  pronNP : (s,a,d : Str) -> Gender -> Number -> Person -> NP = 
-  \s,a,d,g,n,p -> {
-    s = table {
-      Nom => {clit = [] ; obj = s  ; isClit = False} ;
-      Acc => {clit = a  ; obj = [] ; isClit = True} ;
-      Dat => {clit = d  ; obj = [] ; isClit = True}
-      } ;
-    a = Ag g n p
-    } ;
-
--- phonological auxiliaries
-
-  vowel    : pattern Str = #("a" | "e" | "i" | "o" | "u" | "h") ;
-  s_impuro : pattern Str = #("z" | "s" + ("b"|"c"|"d"|"f"|"m"|"p"|"q"|"t")) ;
-
-  elisForms : (_,_,_ : Str) -> Str = \lo,l',il ->
-    pre {#s_impuro => lo ; #vowel => l' ; _ => il} ;
-
-}
diff --git a/book/examples/chapter9/Semantics.gf b/book/examples/chapter9/Semantics.gf
deleted file mode 100644
--- a/book/examples/chapter9/Semantics.gf
+++ /dev/null
@@ -1,39 +0,0 @@
-abstract Semantics = Grammar, Logic ** {
-fun
-  iS     : S     -> Prop ;
-  iCl    : Cl    -> Prop ;
-  iNP    : NP    -> (Ind -> Prop) -> Prop ;
-  iVP    : VP    -> Ind -> Prop ;
-  iAP    : AP    -> Ind -> Prop ;
-  iCN    : CN    -> Ind -> Prop ;
-  iDet   : Det   -> (Ind -> Prop) -> (Ind -> Prop) -> Prop ;
-  iN     : N     -> Ind -> Prop ;
-  iA     : A     -> Ind -> Prop ;
-  iV     : V     -> Ind -> Prop ;
-  iV2    : V2    -> Ind -> Ind -> Prop ;
-  iAdA   : AdA   -> (Ind -> Prop) -> Ind -> Prop ;
-  iTense : Tense -> Prop -> Prop ;
-  iPol   : Pol   -> Prop -> Prop ;
-  iConj  : Conj  -> Prop -> Prop -> Prop ;
-def
-  iS  (UseCl t p cl) = iTense t (iPol p (iCl cl)) ;
-  iCl (PredVP np vp) = iNP np (iVP vp) ;
-  iVP (ComplV2 v2 np) i = iNP np (iV2 v2 i) ;
-  iNP (DetCN det cn) f = iDet det (iCN cn) f ;
-  iCN (ModCN ap cn) i = And (iAP ap i) (iCN cn i) ;
-  iVP (CompAP ap) i = iAP ap i ;
-  iAP (AdAP ada ap) i = iAdA ada (iAP ap) i ;
-  iS  (ConjS conj x y) = iConj conj (iS x) (iS y) ;
-  iNP (ConjNP conj x y) f = iConj conj (iNP x f) (iNP y f) ;
-  iVP (UseV v) i = iV v i ;
-  iAP (UseA a) i = iA a i ;
-  iCN (UseN n) i = iN n i ;
-  iDet a_Det d f = Exist (\x -> And (d x) (f x)) ;
-  iDet every_Det d f = All (\x -> If (d x) (f x)) ;
-  iPol Pos t = t ;
-  iPol Neg t = Not t ;
-  iTense Pres t = t ;
-  iTense Perf t = Past t ;
-  iConj and_Conj a b = And a b ;
-  iConj or_Conj  a b = Or a b ;
-}
diff --git a/book/examples/chapter9/SemanticsIta.gf b/book/examples/chapter9/SemanticsIta.gf
deleted file mode 100644
--- a/book/examples/chapter9/SemanticsIta.gf
+++ /dev/null
@@ -1,42 +0,0 @@
-concrete SemanticsIta of Semantics = GrammarIta, LogicSymb ** open ResIta, Formal, Prelude in {
-
-lin
-  iN f = star (f.s ! Sg) ;
-  iA f = star (f.s ! Masc ! Sg) ;
-  iV f = star (f.s ! VInf) ;
-  iV2 f x y = star (f.s ! VInf) (cc2 x y) ;
-
-oper star : Str -> SS -> TermPrec = \f,x -> prefix 3 (f ++ "*") (constant (parenth x.s)) ;
-
-{-
-
-lincat
-  T, I = TermPrec ;
-lin
-  And = infixl 2 "&" ;
-  Or  = infixl 2 "v" ;
-  If  = infixr 1 "->" ;
---  Not = prefix 3 "~" ;
---  All : (I -> T) -> T ;
---  Exist : (I -> T) -> T ;
---  Past : T -> T ;
-
-lin
-  iS   : S -> T ;
-  iCl  : Cl -> T ;
-  iNP  : NP -> (I -> T) -> T ;
-  iVP  : VP -> I -> T ;
-  iAP  : AP -> I -> T ;
-  iCN  : CN -> I -> T ;
-  iDet : Det -> (I -> T) -> (I -> T) -> T ;
-  iN   : N -> I -> T ;
-  iA   : A -> I -> T ;
-  iV   : V -> I -> T ;
-  iV2  : V2 -> I -> I -> T ;
-  iAdA : AdA -> (I -> T) -> I -> T ;
-  iTense : Tense -> T -> T ;
-  iPol  : Pol  -> T -> T ;
-  iConj : Conj -> T -> T -> T ;
--}
-
-}
diff --git a/book/examples/chapter9/Syntax.gf b/book/examples/chapter9/Syntax.gf
deleted file mode 100644
--- a/book/examples/chapter9/Syntax.gf
+++ /dev/null
@@ -1,47 +0,0 @@
-interface Syntax = Grammar - 
-    [UseCl,PredVP,ComplV2,UseV,DetCN,ModCN,CompAP,AdAP,
-     ConjS,ConjNP,UseN,UseA,Pres,Perf,Pos,Neg] **
-  open Grammar in {
-
-oper
-  mkS = overload {
-    mkS : Cl -> S = UseCl Pres Pos ;
-    mkS : Tense -> Cl -> S = \t -> UseCl t Pos ;
-    mkS : Pol -> Cl -> S = UseCl Pres ;
-    mkS : Tense -> Pol -> Cl -> S = UseCl ;
-    mkS : Conj -> S -> S -> S = ConjS ;
-    } ;
-
-  mkCl = overload {
-    mkCl : NP -> V  -> Cl = \np,v -> PredVP np (UseV v) ;
-    mkCl : NP -> V2 -> NP -> Cl = \np,v,o -> PredVP np (ComplV2 v o) ;
-    mkCl : NP -> A  -> Cl = \np,a -> PredVP np (CompAP (UseA a)) ;
-    mkCl : NP -> AP -> Cl = \np,ap -> PredVP np (CompAP ap) ;
-    mkCl : NP -> VP -> Cl = PredVP ;
-    } ;
-
-  mkAP = overload {
-    mkAP : A -> AP = UseA ;
-    mkAP : AdA -> AP -> AP = AdAP ;
-    } ;
-
-  mkNP = overload {
-    mkNP : Det -> N -> NP = \d,n -> DetCN d (UseN n) ;
-    mkNP : Det -> CN -> NP = \d,n -> DetCN d n ;
-    mkNP : Conj -> NP -> NP -> NP = ConjNP ;
-    } ;
-
-  mkCN = overload {
-    mkCN : N  -> CN = UseN ;
-    mkCN : A  -> N  -> CN = \a,n -> ModCN (UseA a) (UseN n) ; 
-    mkCN : A  -> CN -> CN = \a,n -> ModCN (UseA a) n ; 
-    mkCN : AP -> N  -> CN = \a,n -> ModCN a (UseN n) ; 
-    mkCN : AP -> CN -> CN = \a,n -> ModCN a n ; 
-    } ;
-
-  presTense : Tense = Pres ;
-  perfTense : Tense = Perf ;
-  posPol : Pol = Pos ;
-  negPol : Pol = Neg ;
-
-}
diff --git a/book/examples/chapter9/SyntaxIta.gf b/book/examples/chapter9/SyntaxIta.gf
deleted file mode 100644
--- a/book/examples/chapter9/SyntaxIta.gf
+++ /dev/null
@@ -1,3 +0,0 @@
-instance SyntaxIta of Syntax = GrammarIta - 
-    [PredVP,ComplV2,UseV,DetCN,ModCN,CompAP,AdAP,UseN,UseA] **
-  open GrammarIta in {} ;
diff --git a/book/examples/chapter9/Test.gf b/book/examples/chapter9/Test.gf
deleted file mode 100644
--- a/book/examples/chapter9/Test.gf
+++ /dev/null
@@ -1,9 +0,0 @@
-abstract Test = Grammar ** {
-
-fun
-  man_N, woman_N, house_N, tree_N : N ;
-  big_A, small_A, green_A : A ;
-  walk_V, arrive_V : V ;
-  love_V2, please_V2 : V2 ;
-
-} ;
diff --git a/book/examples/chapter9/TestIta.gf b/book/examples/chapter9/TestIta.gf
deleted file mode 100644
--- a/book/examples/chapter9/TestIta.gf
+++ /dev/null
@@ -1,17 +0,0 @@
-concrete TestIta of Test = GrammarIta ** open ParadigmsIta in {
-
-lin
-  man_N = mkN "uomo" "uomini" masculine ;
-  woman_N = mkN "donna" ;
-  house_N = mkN "casa" ;
-  tree_N = mkN "albero" ;
-  big_A = preA (mkA "grande") ;
-  small_A = preA (mkA "piccolo") ;
-  green_A = mkA "verde" ;
-  walk_V = mkV "camminare" ;
-  arrive_V = essereV (mkV "arrivare") ;
-  love_V2 = mkV2 "amare" ;
-  please_V2 = mkV2 (essereV (mkV "piacere" "piaccio" "piaci" "piace" 
-                        "piacciamo" "piacete" "piacciono" "piaciuto")) dative ;
-
-} ;
diff --git a/book/examples/chapter9/TestSemantics.gf b/book/examples/chapter9/TestSemantics.gf
deleted file mode 100644
--- a/book/examples/chapter9/TestSemantics.gf
+++ /dev/null
@@ -1,1 +0,0 @@
-abstract TestSemantics = Test, Semantics ;
diff --git a/book/examples/chapter9/TestSemanticsIta.gf b/book/examples/chapter9/TestSemanticsIta.gf
deleted file mode 100644
--- a/book/examples/chapter9/TestSemanticsIta.gf
+++ /dev/null
@@ -1,1 +0,0 @@
-concrete TestSemanticsIta of TestSemantics = TestIta, SemanticsIta ;
diff --git a/contrib/summerschool/foods/CharactersGle.gf b/contrib/summerschool/foods/CharactersGle.gf
new file mode 100644
--- /dev/null
+++ b/contrib/summerschool/foods/CharactersGle.gf
@@ -0,0 +1,12 @@
+resource CharactersGle = {
+	
+	--Character classes
+	oper
+		vowel : pattern Str = #("a"|"e"|"i"|"o"|"u"|"á"|"é"|"í"|"ó"|"ú") ;
+		vowelCap : pattern Str = #("A"|"E"|"I"|"O"|"U"|"Á"|"É"|"Í"|"Ó"|"Ú") ;
+		consonant : pattern Str = #("b"|"c"|"d"|"f"|"g"|"h"|"j"|"k"|"l"|"m"|"n"|"p"|"q"|"r"|"s"|"t"|"v"|"w"|"x"|"z") ;
+		consonantCap : pattern Str = #("B"|"C"|"D"|"F"|"G"|"H"|"J"|"K"|"L"|"M"|"N"|"P"|"Q"|"R"|"S"|"T"|"V"|"W"|"X"|"Z") ;
+		broadVowel : pattern Str = #("a"|"o"|"u"|"á"|"ó"|"ú") ;
+		slenderVowel : pattern Str = #("e"|"i"|"é"|"í") ;
+	
+}
diff --git a/contrib/summerschool/foods/FoodsCze.gf b/contrib/summerschool/foods/FoodsCze.gf
new file mode 100644
--- /dev/null
+++ b/contrib/summerschool/foods/FoodsCze.gf
@@ -0,0 +1,35 @@
+-- (c) 2011 Katerina Bohmova under LGPL
+
+concrete FoodsCze of Foods = open ResCze in {
+  flags 
+    coding = utf8 ;
+  lincat
+    Comment = {s : Str} ; 
+    Quality = Adjective ; 
+    Kind = Noun ; 
+    Item = NounPhrase ;
+  lin
+    Pred item quality = 
+      {s = item.s ++ copula ! item.n ++ 
+           quality.s ! item.g ! item.n} ;
+    This  = det Sg "tento" "tato" "toto" ;
+    That  = det Sg "tamten" "tamta" "tamto" ;
+    These = det Pl "tyto" "tyto" "tato" ;
+    Those = det Pl "tamty" "tamty" "tamta" ;
+    Mod quality kind = {
+      s = \\n => quality.s ! kind.g ! n ++ kind.s ! n ;
+      g = kind.g
+      } ;
+    Wine = noun "víno" "vína" Neutr ;
+    Cheese = noun "sýr" "sýry" Masc ;
+    Fish = noun "ryba" "ryby" Fem ;
+    Pizza = noun "pizza" "pizzy" Fem ;
+    Very qual = {s = \\g,n => "velmi" ++ qual.s ! g ! n} ;
+    Fresh = regAdj "čerstv" ;
+    Warm = regAdj "tepl" ;
+    Italian = regAdj "italsk" ;
+    Expensive = regAdj "drah" ;
+    Delicious = regnfAdj "vynikající" ;
+    Boring = regAdj "nudn" ;
+}
+
diff --git a/contrib/summerschool/foods/FoodsFre.gf b/contrib/summerschool/foods/FoodsFre.gf
new file mode 100644
--- /dev/null
+++ b/contrib/summerschool/foods/FoodsFre.gf
@@ -0,0 +1,32 @@
+--# -path=.:../foods:present
+
+concrete FoodsFre of Foods = open SyntaxFre, ParadigmsFre in {
+
+	flags coding = utf8 ;
+	
+	lincat
+		Comment = Utt ;
+		Item = NP ;
+		Kind = CN ;
+		Quality = AP ;
+	
+	lin
+		Pred item quality = mkUtt (mkCl item quality) ;
+		This kind = mkNP this_QuantSg kind ;
+		That kind = mkNP that_QuantSg kind ;
+		These kind = mkNP these_QuantPl kind ;
+		Those kind = mkNP those_QuantPl kind ;
+		Mod quality kind = mkCN quality kind ;
+		Very quality = mkAP very_AdA quality ;
+		
+		Wine = mkCN (mkN "vin" masculine) ;
+		Pizza = mkCN (mkN "pizza" feminine) ;
+		Cheese = mkCN (mkN "fromage" masculine) ;
+		Fish = mkCN (mkN "poisson" masculine) ;
+		Fresh = mkAP (mkA "frais" "fraîche" "frais" "fraîchement") ;
+		Warm = mkAP (mkA "chaud") ;
+		Italian = mkAP (mkA "italien") ;
+		Expensive = mkAP (mkA "cher") ;
+		Delicious = mkAP (mkA "délicieux") ;
+		Boring = mkAP (mkA "ennuyeux") ;
+	}
diff --git a/contrib/summerschool/foods/FoodsGle.gf b/contrib/summerschool/foods/FoodsGle.gf
new file mode 100644
--- /dev/null
+++ b/contrib/summerschool/foods/FoodsGle.gf
@@ -0,0 +1,59 @@
+concrete FoodsGle of Foods = open MutationsGle, CharactersGle in {
+	param Gender = Masc|Fem ;
+	param Number = Sg|Pl ;
+	param Breadth = Broad|Slender|NoBreadth ;
+	
+	lincat Comment = Str;
+	lin Pred item quality = "tá" ++ item ++ quality.s!Sg!Unmutated ;
+
+	lincat Item = Str;
+	lin
+		This kind = (addArticleSg kind) ++ "seo" ;
+		That kind = (addArticleSg kind) ++ "sin";
+		These kind = (addArticlePl kind) ++ "seo" ;
+		Those kind = (addArticlePl kind) ++ "sin" ;
+	oper addArticleSg : {s : Number => Mutation => Str; g : Gender} -> Str =
+					    \kind -> "an" ++ case kind.g of { Masc => kind.s!Sg!PrefixT; Fem => kind.s!Sg!Lenition1DNTLS } ;
+	oper addArticlePl : {s : Number => Mutation => Str; g : Gender} -> Str =
+					    \kind -> "na" ++ kind.s!Pl!PrefixH ;
+	
+	lincat Kind = {s : Number => Mutation => Str; g : Gender; pe : Breadth} ;
+	lin
+		Mod quality kind = {
+			s = table{
+					Sg => table{mutation => kind.s!Sg!mutation ++ case kind.g of {Masc => quality.s!Sg!Unmutated; Fem => quality.s!Sg!Lenition1} };
+					Pl => table{mutation => kind.s!Pl!mutation ++ case kind.pe of {Slender => quality.s!Pl!Lenition1; _ => quality.s!Pl!Unmutated} }
+			};
+			g = kind.g;
+			pe = kind.pe
+		} ;
+		Wine = makeNoun "fíon" "fíonta" Masc ;
+		Cheese = makeNoun "cáis" "cáiseanna" Fem ;
+		Fish = makeNoun "iasc" "éisc" Masc ;
+		Pizza = makeNoun "píotsa" "píotsaí" Masc ;
+	oper makeNoun : Str -> Str -> Gender -> {s : Number => Mutation => Str; g : Gender; pe : Breadth} =
+		\sg,pl,g -> {
+						s = table{Sg => (mutate sg); Pl => (mutate pl)};
+						g = g;
+						pe = case pl of {
+							_ + v@(#broadVowel) + c@(#consonant*) + #consonant => Broad;
+							_ + v@(#slenderVowel) + c@(#consonant*) + #consonant => Slender;
+							_ => NoBreadth
+						}
+					} ;
+
+	lincat Quality = {s : Number => Mutation => Str; sVery : Number => Str} ;
+	lin
+		Very quality = {s=table{number => table{_ => quality.sVery!number}}; sVery=quality.sVery } ;
+		Fresh = makeAdjective "úr" "úra" ;
+		Warm = makeAdjective "te" "te" ;
+		Italian = makeAdjective "Iodálach" "Iodálacha" ;
+		Expensive = makeAdjective "daor" "daora" ;
+		Delicious = makeAdjective "blasta" "blasta" ;
+		Boring = makeAdjective "leamh" "leamha" ;
+	oper makeAdjective : Str -> Str -> {s : Number => Mutation => Str; sVery : Number => Str} =
+		\sg,pl -> {
+					s=table{Sg => (mutate sg); Pl => (mutate pl)};
+					sVery=table{Sg => "an-"+(lenition1dntls sg); Pl => "an-"+(lenition1dntls pl)}
+				  } ;
+}
diff --git a/contrib/summerschool/foods/FoodsNep.gf b/contrib/summerschool/foods/FoodsNep.gf
new file mode 100644
--- /dev/null
+++ b/contrib/summerschool/foods/FoodsNep.gf
@@ -0,0 +1,60 @@
+-- (c) 2011 Dinesh Simkhada under LGPL
+
+concrete FoodsNep of Foods = {
+
+  flags coding = utf8 ;
+
+  lincat
+    Comment, Quality = {s : Str} ; 
+    Kind = {s : Number => Str} ; 
+    Item = {s : Str ; n : Number} ; 
+    
+  lin
+    Pred item quality = 
+      {s = item.s ++ quality.s ++ copula ! item.n} ;
+      
+    This  = det Sg "यो" ;
+    That  = det Sg "त्यो" ;
+    These = det Pl "यी" ;
+    Those = det Pl "ती" ;
+    Mod quality kind = 
+      {s = \\n => quality.s ++ kind.s ! n} ;
+      
+    Wine = regNoun "रक्सी" ;
+    Cheese = regNoun "चिज" ;
+    Fish = regNoun "माछा" ;
+    Pizza = regNoun "पिज्जा" ;
+    Very a = {s = "धेरै" ++ a.s} ;
+    Fresh = adj "ताजा" ;
+    Warm = adj "तातो" ;
+    Italian = adj "इटालियन" ;
+    Expensive = adj "महँगो" | adj "बहुमूल्य" ;
+    Delicious = adj "स्वादिष्ट" | adj "मीठो" ;
+    Boring = adjPl "नमिठो" ;
+  
+  param
+    Number = Sg | Pl ;
+    
+  oper
+    det : Number -> Str -> 
+      {s : Number => Str} -> {s : Str ; n : Number} = 
+        \n,det,noun -> {s = det ++ noun.s ! n ; n = n} ;
+    
+    noun : Str -> Str -> {s : Number => Str} = 
+      \man,men -> {s = table {Sg => man ; Pl => men}} ;
+    
+    regNoun : Str -> {s : Number => Str} = 
+      \car -> noun car (car + "हरु") ;
+    
+    adjPl : Str -> {s : Str} = \a -> case a of {
+      bor + "ठो" => adj (bor + "ठा") ;
+      _ => adj a
+      } ;
+      
+    adj : Str -> {s : Str} = 
+      \cold -> {s = cold} ;
+    
+    copula : Number => Str = 
+      table {Sg => "छ" ; Pl => "छन्"} ;
+}
+
diff --git a/contrib/summerschool/foods/FoodsSpa.gf b/contrib/summerschool/foods/FoodsSpa.gf
new file mode 100644
--- /dev/null
+++ b/contrib/summerschool/foods/FoodsSpa.gf
@@ -0,0 +1,31 @@
+--# -path=.:present
+
+concrete FoodsSpa of Foods = open SyntaxSpa, StructuralSpa, ParadigmsSpa in {
+
+	lincat
+		Comment = Utt ;
+		Item = NP ;
+		Kind = CN ;
+		Quality = AP ;
+
+	lin
+		Pred item quality = mkUtt (mkCl item quality) ;
+		This kind = mkNP this_QuantSg kind ;
+		That kind = mkNP that_QuantSg kind ;
+		These kind = mkNP these_QuantPl kind ;
+		Those kind = mkNP those_QuantPl kind ;
+		Mod quality kind = mkCN quality kind ;
+		Very quality = mkAP very_AdA quality ;
+		Wine = mkCN (mkN "vino") ;
+                Pizza = mkCN (mkN "pizza") ;
+                Cheese = mkCN (mkN "queso") ;
+                Fish = mkCN (mkN "pescado") ;
+                Fresh = mkAP (mkA "fresco") ;
+                Warm = mkAP (mkA "caliente") ;
+                Italian = mkAP (mkA "italiano") ;
+                Expensive = mkAP (mkA "caro") ;
+                Delicious = mkAP (mkA "delicioso") ;
+                Boring = mkAP (mkA "aburrido") ;
+
+}
+
diff --git a/contrib/summerschool/foods/MutationsGle.gf b/contrib/summerschool/foods/MutationsGle.gf
new file mode 100644
--- /dev/null
+++ b/contrib/summerschool/foods/MutationsGle.gf
@@ -0,0 +1,92 @@
+resource MutationsGle = open CharactersGle in {
+	param Mutation = Unmutated|Lenition1|Lenition1DNTLS|Lenition2|Eclipsis1|Eclipsis2|Eclipsis3|PrefixT|PrefixH;
+	
+	--Turns a string into a mutation table
+	oper mutate : (_ : Str) -> (Mutation => Str) = \str -> table {
+		Unmutated => str ;
+		Lenition1 => lenition1 str ;
+		Lenition1DNTLS => lenition1dntls str ;
+		Lenition2 => lenition2 str ;
+		Eclipsis1 => eclipsis1 str ;
+		Eclipsis2 => eclipsis2 str ;
+		Eclipsis3 => eclipsis3 str ;
+		PrefixT => prefixT str ;
+		PrefixH => prefixH str
+	};
+
+	--Performs lenition 1: inserts "h" if the word begins with a lenitable character
+	oper lenition1 : Str -> Str = \str -> case str of {
+		start@("p"|"b"|"m"|"f"|"t"|"d"|"c"|"g") + rest => start + "h" + rest ;
+		start@("P"|"B"|"M"|"F"|"T"|"D"|"C"|"G") + rest => start + "h" + rest ;
+		("s"|"S") + ("p"|"t"|"c") + _ => str ; --the sequences "sp", "st", "sc" are never mutated
+		start@("s"|"S") + rest => start + "h" + rest ;
+		_ => str
+	};
+	
+	--Performs lenition 1 with dentals: same as lenition 1 but leaves "d", "t" and "s" unmutated
+	oper lenition1dntls : Str -> Str = \str -> case str of {
+		start@("p"|"b"|"m"|"f"|"c"|"g") + rest => start + "h" + rest ;
+		start@("P"|"B"|"M"|"F"|"C"|"G") + rest => start + "h" + rest ;
+		_ => str
+	};
+
+	--Performs lenition 2: same as lenition 1 with dentals but also changes "s" into "ts"
+	oper lenition2 : Str -> Str = \str -> case str of {
+		start@("p"|"b"|"m"|"f"|"c"|"g") + rest => start + "h" + rest ;
+		start@("P"|"B"|"M"|"F"|"C"|"G") + rest => start + "h" + rest ;
+		("s"|"S") + ("p"|"t"|"c") + _ => str ; --the sequences "sp", "st", "sc" are never mutated
+		start@("s"|"S") + rest => "t" + start + rest ;
+		_ => str
+	};
+	
+	--Performs eclisis 1: prefixes something to every word that begins with an ecliptable character
+	oper eclipsis1 : Str -> Str = \str -> case str of {
+		start@("p"|"P") + rest => "b" + start + rest ;
+		start@("b"|"B") + rest => "m" + start + rest ;
+		start@("f"|"F") + rest => "bh" + start + rest ;
+		start@("c"|"C") + rest => "g" + start + rest ;
+		start@("g"|"G") + rest => "n" + start + rest ;
+		start@("t"|"T") + rest => "d" + start + rest ;
+		start@("d"|"D") + rest => "n" + start + rest ;
+		start@(#vowel) + rest => "n-" + start + rest ;
+		start@(#vowelCap) + rest => "n" + start + rest ;
+		_ => str
+	};
+
+	--Performs eclipsis 2: same as eclipsis 1 but leaves "t", "d" and vowels unchanges
+	oper eclipsis2 : Str -> Str = \str -> case str of {
+		start@("p"|"P") + rest => "b" + start + rest ;
+		start@("b"|"B") + rest => "m" + start + rest ;
+		start@("f"|"F") + rest => "bh" + start + rest ;
+		start@("c"|"C") + rest => "g" + start + rest ;
+		start@("g"|"G") + rest => "n" + start + rest ;
+		_ => str
+	};
+
+	--Performs eclipsis 3: same as eclipsis 2 but also changes "s" to "ts"
+	eclipsis3 : Str -> Str = \str -> case str of {
+		start@("p"|"P") + rest => "b" + start + rest ;
+		start@("b"|"B") + rest => "m" + start + rest ;
+		start@("f"|"F") + rest => "bh" + start + rest ;
+		start@("c"|"C") + rest => "g" + start + rest ;
+		start@("g"|"G") + rest => "n" + start + rest ;
+		("s"|"S") + ("p"|"t"|"c") + _ => str ; --the sequences "sp", "st", "sc" are never mutated
+		start@("s"|"S") + rest => "t" + start + rest ;
+		_ => str
+	};
+
+	--Prefixes a "t" to words beginning with a vowel
+	oper prefixT : Str -> Str = \str -> case str of {
+		start@(#vowel) + rest => "t-" + start + rest ;
+		start@(#vowelCap) + rest => "t" + start + rest ;
+		_ => str
+	};
+
+	--Prefixes a "h" to words beginning with a vowel
+	oper prefixH : Str -> Str = \str -> case str of {
+		start@(#vowel) + rest => "h" + start + rest ;
+		start@(#vowelCap) + rest => "h" + start + rest ;
+		_ => str
+	};
+	
+}
diff --git a/contrib/summerschool/foods/ResCze.gf b/contrib/summerschool/foods/ResCze.gf
new file mode 100644
--- /dev/null
+++ b/contrib/summerschool/foods/ResCze.gf
@@ -0,0 +1,46 @@
+-- (c) 2011 Katerina Bohmova under LGPL
+
+resource ResCze = open Prelude in {
+  flags 
+    coding = utf8 ;
+  param
+    Number = Sg | Pl ;
+    Gender = Masc | Fem | Neutr;
+  oper
+    NounPhrase : Type = 
+      {s : Str ; g : Gender ; n : Number} ; 
+    Noun : Type = {s : Number => Str ; g : Gender} ;
+    Adjective : Type = {s : Gender => Number => Str} ;
+
+    det : Number -> Str -> Str -> Str -> Noun -> NounPhrase =
+      \n,m,f,ne,cn -> {
+        s = table {Masc => m ; Fem => f; Neutr => ne} ! cn.g ++ 
+            cn.s ! n ;
+        g = cn.g ;
+        n = n
+      } ;
+    noun : Str -> Str -> Gender -> Noun =
+      \muz,muzi,g -> {
+        s = table {Sg => muz ; Pl => muzi} ;
+        g = g
+      } ;
+    adjective : (msg,fsg,nsg,mpl,fpl,npl : Str) -> Adjective =
+      \msg,fsg,nsg,mpl,fpl,npl -> {
+        s = table {
+          Masc => table {Sg => msg ; Pl => mpl} ; 
+          Fem => table {Sg => fsg ; Pl => fpl}  ;
+          Neutr => table {Sg => nsg ; Pl => npl}
+          }
+        } ;
+    regAdj : Str -> Adjective = 
+      \mlad ->
+      adjective (mlad+"ý") (mlad+"á") (mlad+"é")
+		 (mlad+"é") (mlad+"é") (mlad+"á") ;
+    regnfAdj : Str -> Adjective = 
+      \vynikajici ->
+      adjective vynikajici vynikajici vynikajici 
+		vynikajici vynikajici vynikajici;
+    copula : Number => Str = 
+      table {Sg => "je" ; Pl => "jsou"} ;
+}
+
diff --git a/css/style.css b/css/style.css
--- a/css/style.css
+++ b/css/style.css
@@ -17,4 +17,4 @@
 td { background: white; }
 th { background: #9df; }
 
-h1>img { float: right; }
+h1 img { float: right; border: 0; }
diff --git a/demos/TransQuiz/minibar_quiz.css b/demos/TransQuiz/minibar_quiz.css
--- a/demos/TransQuiz/minibar_quiz.css
+++ b/demos/TransQuiz/minibar_quiz.css
@@ -2,7 +2,7 @@
     background: #eee url("brushed-metal.png");
 }
 
-/*th, td { vertical-align: baseline; text-align: left; }*/
+/* th, td { vertical-align: baseline; text-align: left; } */
 
 div#surface {
     min-height: 3ex;
diff --git a/demos/TransQuiz/minibar_quiz.js b/demos/TransQuiz/minibar_quiz.js
--- a/demos/TransQuiz/minibar_quiz.js
+++ b/demos/TransQuiz/minibar_quiz.js
@@ -47,17 +47,18 @@
     this.surface=div_id("surface");
     this.extra=div_id("extra");
     this.menubar=div_id("menubar");
+	this.quizbar=div_id("quizbar");
     this.words=div_id("words");
     this.translations=div_id("translations");
 
     this.minibar=element(target || "minibar");
-    this.minibar_contin=element("minibar_contin");
+	this.minibar_contin=element("minibar_contin");
     this.minibar_buttons=element("minibar_buttons");
     this.minibar.innerHTML="";
 	
 	//modified for quiz
     with(this) {
-	appendChildren(minibar,[menubar]);
+	appendChildren(minibar,[menubar, quizbar]);
 	appendChildren(minibar_contin,[surface,words]);
 	append_extra_buttons(extra,options);
     }
@@ -93,7 +94,7 @@
     with(this) {
 	//debug("show_grammarlist ")
 	menubar.innerHTML="";
-	if(grammars.length>1) {
+	if(grammars.length>0) {
 	    function opt(g) { return option(g,g); }
 	    appendChildren(grammar_menu,map(opt,grammars));
     	    grammar_menu.onchange=
@@ -146,7 +147,7 @@
 		
 		//var langname = element("to_menu").value;
 	    //to_menu.current={to: langname, input: ""};
-		clear_all();
+		//clear_all();
 	}
 	
 	from_menu.onchange=bind(new_language,t);
diff --git a/demos/TransQuiz/quiz_pre_start.js b/demos/TransQuiz/quiz_pre_start.js
--- a/demos/TransQuiz/quiz_pre_start.js
+++ b/demos/TransQuiz/quiz_pre_start.js
@@ -10,9 +10,8 @@
   var quiz_mode=empty_id("select","quiz_mode");
 
   //adds the  "Quiz Mode" and "Restart Quiz" and "End Quiz" and "Start Quiz"  
-  appendChildren(minibar.menubar,
-		    [empty("br"),
-		    text(" Quiz Mode: "), quiz_mode, 
+  appendChildren(minibar.quizbar,
+		    [text(" Quiz Mode: "), quiz_mode, 
 			button("Restart Quiz","restart_quiz()","R"),
 			button("End Quiz","end_quiz(true)","E"),
 			button("Start Quiz","start_quiz()","S")]);
diff --git a/demos/TransQuiz/quiz_support.js b/demos/TransQuiz/quiz_support.js
--- a/demos/TransQuiz/quiz_support.js
+++ b/demos/TransQuiz/quiz_support.js
@@ -33,7 +33,7 @@
     {
      show_element("words");
      words_hidden= false;
-     var buttons_bar=element("buttons_bar")
+	 var buttons_bar=element("buttons_bar");
      buttons_bar.removeChild(buttons_bar.lastChild);
 	 } 
 }
@@ -46,7 +46,7 @@
       words_hidden= true;
   
      //add "Show magnets" button
-     var buttons_bar=element("buttons_bar")
+	 var buttons_bar=element("buttons_bar");
      appendChildren(buttons_bar,
 		   [ button("Show Magnets","show_word_magnets()","M", "show_magnets")]);
 	 }
diff --git a/demos/TransQuiz/translation_quiz.html b/demos/TransQuiz/translation_quiz.html
--- a/demos/TransQuiz/translation_quiz.html
+++ b/demos/TransQuiz/translation_quiz.html
@@ -18,11 +18,11 @@
 
 </head>
 
-<body onLoad="pre_start()">
+<body>
 
 <div id = "info" >
 <a href="javascript:popUp('quiz_about.html', 'about')">About GF Translation Quiz</a>
-<h2 style=" padding-left: 35px;"><i> Welcome to <b>GF Translation Quiz </i></b></h2>
+<h2 style=" padding-left: 35px;"><i> Welcome to GF Translation Quiz </i></h2>
 
 <p style="font-size:20px;"> 
     To start the quiz choose a grammar, From and To languages
@@ -132,27 +132,33 @@
 
 <script type="text/javascript">
 
-var online_options={
+ var online_options={
   grammars_url: "http://www.grammaticalframework.org/grammars/"
-//grammars_url: "http://tournesol.cs.chalmers.se:41296/grammars",
-//grammars_url: "http://localhost:41296/grammars",
-//grammar_list: ["Foods.pgf"], // leave undefined to get list from server
-}
+  //grammars_url: "http://tournesol.cs.chalmers.se:41296/grammars",
+  //grammars_url: "http://localhost:41296/grammars",
+  //grammar_list: ["Foods.pgf"], // leave undefined to get list from server
+  }
 
-var server=pgf_online(online_options);
+  if(/^\?\/tmp\//.test(location.search)) {
+    online_options.grammars_url=location.search.substr(1);
+  }
 
-var minibar_options= {
-  show_abstract: false,
-  show_trees: false,
-  show_grouped_translations: false,
-  default_source_language: "Eng",
-  try_google: false
-} 
+  var server=pgf_online(online_options);
 
-var minibar=new Minibar(server,minibar_options,"minibar1");
+  var minibar_options= {
+    show_abstract: false,
+    show_trees: false,
+    show_grouped_translations: false,
+    default_source_language: "Eng",
+    try_google: false
+   } 
 
+  var minibar=new Minibar(server,minibar_options,"minibar1");
+  
+  pre_start();
+ 
 </script>
 
 </body>
 
-</html>
+</html>
diff --git a/demos/TransQuiz/translation_quiz.js b/demos/TransQuiz/translation_quiz.js
--- a/demos/TransQuiz/translation_quiz.js
+++ b/demos/TransQuiz/translation_quiz.js
@@ -109,7 +109,7 @@
 	answer_lang= minibar.to_menu.value;
       
    //removes the start button  	
-     minibar.menubar.removeChild(minibar.menubar.lastChild);	  	
+     minibar.quizbar.removeChild(minibar.quizbar.lastChild);	  	
    
    set_mode();
    	 
@@ -192,7 +192,7 @@
 	      reset_mode();
 			
 	      //add the start button
-		    appendChildren(minibar.menubar,[ button("Start Quiz","start_quiz()","S")]);
+		    appendChildren(minibar.quizbar,[ button("Start Quiz","start_quiz()","S")]);
 		  
 		  //removes the History button
 	      var history_bar=element("history_bar");
@@ -380,9 +380,10 @@
   server.parse(question_lang,right_answer[0].text, parse_answer2);
 }
 
+var trees_to_go;
 function parse_answer2(parsed_answer)
 {
-  parsed_trees = parsed_answer[0].trees.length; 
+  trees_to_go = parsed_trees = parsed_answer[0].trees.length; 
   var j =0;
   for (j= 0; j < parsed_trees ; j++)
        {
@@ -400,7 +401,8 @@
         all_answers[next]= lin_answer[0].texts[i];
        }
 	   
-	if ( all_answers.length > (parsed_trees - 1) * i) 
+	trees_to_go--;
+    if(trees_to_go == 0)	
 	     continue_checking();
 }	   
 	   
@@ -521,7 +523,7 @@
 	 exam_result();
   else			 
 	{ 
-		//clears the question and answer display areas
+		//clears the question and answer and the explanation and hint display areas
           clearing();				  
 				   
 		document.getElementById('counter_display').value = counter + "/" + exam_quesNo;   
diff --git a/demos/index.html b/demos/index.html
--- a/demos/index.html
+++ b/demos/index.html
@@ -3,10 +3,11 @@
 <HEAD>
 <TITLE>Grammatical Framework Demos</TITLE>
 <link rel=stylesheet href="../css/style.css">
+<link rel=top href="../" title="GF">
 </HEAD>
 
 <BODY>
-<H1><IMG SRC="../doc/Logos/gf0.png" alt="">Grammatical Framework Demos</H1>
+<H1><a href="../"><IMG SRC="../doc/Logos/gf0.png" alt=""></a>Grammatical Framework Demos</H1>
 
 <p>
 <a href="http://www.grammaticalframework.org/demos/phrasebook/">Tourist
@@ -14,10 +15,23 @@
 
 <p>
 <strong>NEW</strong>
+<a href="minibar/mathbar.html">Mathbar</a>
+
+<p>
+<strong>NEW</strong>
+<a href="gfse/">GF online editor for simple multilingual grammars</a>
+(prototype)
+<p>
+<strong>NEW</strong>
+<a href="http://www.grammaticalframework.org:41297/syllogism/syllogism.html">Online syllogism solver</a>
+
+<p>
+<strong>NEW</strong>
 <a href="TransQuiz/">Translation Quiz</a>
 
+
 <P>
-<A HREF="http://www.grammaticalframework.org:41296/minibar/minibar.html">Minibar
+<A HREF="minibar/minibar.html">Minibar
 online</A>
  | <small><a href="http://www.grammaticalframework.org/~hallgren/hs2js/test/">Minibar offline</a></small>
 <P>
@@ -31,18 +45,18 @@
 find your way in Gothenburg public transport system, in six languages (film).
 
 <P>
-<!-- <B>NEW</B> <A HREF="http://csmisc14.cs.chalmers.se/~meza/restWiki/wiki.cgi">Multilingual Wiki</A>. -->
+<A HREF="http://www.grammaticalframework.org/~meza/restWiki/wiki.cgi">Multilingual Wiki</A>.
 
 <P>
 <A HREF="index-numbers.html">Numeral translator for the iPhone</A>: number words in 15 languages.
 
 <P>
 <A HREF="http://www.cse.chalmers.se/alumni/bringert/gf/translate/">Numeral translator</A>:
-number words in 88 languages.
+number words in 88 languages. (Java applet)
 
 <P>
 <A HREF="http://www.cse.chalmers.se/alumni/markus/gramlets/letter-applet.html">Letter editor</A>: compose
-a letter in a language you don't know.
+a letter in a language you don't know. (Java applet)
 
 <P>
 <A HREF="http://www.cse.chalmers.se/alumni/bringert/xv/pizza/">Pizza</A>: order a pizza by speaking
@@ -69,3 +83,5 @@
 <A HREF="../old-lib/resource/doc/resdemo.html">Random library examples</A>
 
 -->
+<hr>
+<a href="http://www.grammaticalframework.org/">www.grammaticalframework.org</a>
diff --git a/doc/gf-quickstart.html b/doc/gf-quickstart.html
--- a/doc/gf-quickstart.html
+++ b/doc/gf-quickstart.html
@@ -26,8 +26,17 @@
 the command <tt>gf</tt> works for you. See download and install
 instructions <a href="../download/index.html">here</a>.
 
+<h2>Want to try without downloading?</h2>
 
+<a href="../demos/phrasebook/">Using GF translation</a> with an existing grammar.
 
+<p>
+
+<a href="../demos/gfse/">Writing GF grammars</a> in the cloud, without installing GF.
+
+
+
+
 <h2>Using GF for translation and generation</h2>
 
 When you have downloaded and installed GF:
@@ -43,6 +52,7 @@
 <pre>
   $ gf FoodIta.gf FoodEng.gf
 </pre>
+Alternatively, start GF with <tt>gf</tt> and give the GF command <tt>import FoodIta.gf FoodEng.gf</tt>.
 
 <li> <b>Translation</b>. Try your first translation by giving the GF command
 <pre>
@@ -81,8 +91,8 @@
 grammars and try the above commands again. For instance, add the following lines:
 <pre>
   Bread : Kind ;          -- in Food.gf
-  Black = {s = "bread"} ; -- in FoodEng.gf
-  Black = {s = "pane"} ;  -- in FoodIta.gf
+  Bread = {s = "bread"} ; -- in FoodEng.gf
+  Bread = {s = "pane"} ;  -- in FoodIta.gf
 </pre>
 and start GF again with the same command. Now you can even translate
 <i>this bread is very Italian</i>.
@@ -118,7 +128,7 @@
 
 The quickest way to provide a GF web service is to start the program <tt>pgh-http</tt>
 <pre>
-  $ pgh-http
+  $ pgf-http
   Starting HTTP server, open http://localhost:41296/ in your web browser
 
   Options {documentRoot = "/home/aarne/.cabal/share/gf-server-1.0/www", port = 41296}
diff --git a/doc/gf-reference.t2t b/doc/gf-reference.t2t
--- a/doc/gf-reference.t2t
+++ b/doc/gf-reference.t2t
@@ -4,7 +4,7 @@
 
 % NOTE: this is a txt2tags file.
 % Create an html file from this file using:
-% txt2tags -thtml --toc gf-reference.html
+% txt2tags -thtml gf-reference.t2t
 
 %!style:../css/style.css
 %!target:html
@@ -14,7 +14,7 @@
 cover all forms of expression available when writing
 grammars. It assumes basic knowledge of GF, which
 can be acquired from the 
-[GF Tutorial http://www.cs.chalmers.se/~aarne/GF/doc/tutorial/].
+[GF Tutorial http://www.grammaticalframework.org/doc/tutorial/gf-tutorial.html].
 Help on GF commands is obtained on line by the
 help command (``help``), and help on invoking
 GF with (``gf -help``).
@@ -472,7 +472,7 @@
 
 ===References===
 
-[GF Homepage http://www.cs.chalmers.se/~aarne/GF/]
+[GF Homepage http://www.grammaticalframework.org/]
 
 A. Ranta, Grammatical Framework: A Type-Theoretical Grammar Formalism.
 //The Journal of Functional Programming//, vol. 14:2. 2004, pp. 145-189. 
diff --git a/download/index.t2t b/download/index.t2t
--- a/download/index.t2t
+++ b/download/index.t2t
@@ -4,7 +4,7 @@
 %!style:../css/style.css
 %!postproc(html): <TD><B> <TH>
 %!postproc(html): </B></TD> </TH>
-%!postproc(html): <H1> <H1><IMG src="../doc/Logos/gf0.png">
+%!postproc(html): <H1> <H1><a href="../"><IMG src="../doc/Logos/gf0.png"></a>
 
 **GF 3.2** was released on 23 December 2010.
 
@@ -15,9 +15,11 @@
 
 
 | **Platform** | **Download** | **How to install**
+| Ubuntu (32-bit) | [gf_3.2-4_i386.deb gf_3.2-4_i386.deb] | Double-click on the package icon, or use ``sudo dpkg -i gf_3.2-4_i386.deb``
+| Ubuntu (64-bit) | [gf_3.2-4_amd64.deb gf_3.2-4_amd64.deb] | Double-click on the package icon, or use ``sudo dpkg -i gf_3.2-4_amd64.deb``
 | Linux (32-bit) | [gf-3.2-bin-i386-linux.tar.gz gf-3.2-bin-i386-linux.tar.gz] | ``sudo tar -C /usr/local -zxf gf-3.2-bin-i386-linux.tar.gz``
 | Linux (64-bit) | [gf-3.2-bin-x86_64-linux.tar.gz gf-3.2-bin-x86_64-linux.tar.gz] | ``sudo tar -C /usr/local -zxf gf-3.2-bin-x86_64-linux.tar.gz``
-%| MacOS X | [gf-3.2-leopard.pkg gf-3.2-leopard.pkg] | Double-click on the package icon and follow the instructions
+| MacOS X | [gf-3.2-snowleopard.pkg gf-3.2-snowleopard.pkg] | Double-click on the package icon and follow the instructions
 | MacOS X | [gf-3.2-bin-intel-mac.tar.gz gf-3.2-bin-intel-mac.tar.gz] | ``sudo tar -C /usr/local -zxf gf-3.2-bin-intel-mac.tar.gz``
 | Windows | [gf-3.2-bin-i386-windows.zip gf-3.2-bin-i386-windows.zip] | ``unzip gf-3.2-bin-i386-windows.zip``
 
@@ -28,7 +30,12 @@
 The Windows package is installed by just unpacking it anywhere. 
 It finds the libraries relative to the ``.exe`` file.
 
-The MacOS and Linux packages are designed to be installed in ``/usr/local``.
+The ``.deb`` packages work on Ubuntu 10.04 and 10.10.
+
+The ``.pkg`` package works on MacOS X 10.6 (Snow Leopard). The MacOS tar
+package works on 10.5 (Leopard) and 10.6 (Snow Leopard).
+
+The MacOS and Linux tar packages are designed to be installed in ``/usr/local``.
 You can install them in other locations, but then you need to set the
 ``GF_LIB_PATH`` environment variable:
 
@@ -79,11 +86,25 @@
 - [GF 3.1 old-index.html] (December 2009).
 
 
-==Latest developer code==
+==Installing from the latest developer code==
 
+The first time:
+
 ```
-  darcs get --lazy http://www.grammaticalframework.org/
+  darcs get --lazy http://www.grammaticalframework.org/ GF
+  cd GF
+  cabal install
 ```
+
+Subsequently:
+
+```
+  cd GF
+  darcs pull -a
+  cabal install
+```
+
+The above notes for installing from source apply also in this case.
 
 --------------------
 
diff --git a/download/release-3.2.t2t b/download/release-3.2.t2t
--- a/download/release-3.2.t2t
+++ b/download/release-3.2.t2t
@@ -14,17 +14,18 @@
 - Faster handling of grammars with big lexicons.
 - Dependent types.
 - Exhaustive random generation with dependent types.
-- Bracketed strings data structure.
+- [Bracketed strings data structure http://code.google.com/p/grammatical-framework/wiki/BracketingAPI].
 %- example based
 - Probabilities in PGF files.
 %- giza alignments
 %- language quiz
 - The Resource Grammar Library now supports 16 languages and has an
   [updated synopsis ../lib/doc/synopsis.html].
-- The darcs repo is now availble from ``www.grammaticalframework.org`` and
+- The darcs repo is now available from ``www.grammaticalframework.org`` and
   should be a lot faster than ``code.haskell.org``.
-- Build of web services simplified and a instantly usable demo is included
-  in the binary distribution (see [Quickstart ../doc/gf-quickstart.html]).
+- Build of the web services is simplified and an instantly usable demo is
+  included in the binary distribution
+  (see [Quickstart ../doc/gf-quickstart.html]).
 - Clarified license scheme.
 - ...
 
diff --git a/examples/SUMO/BasicEng.gf b/examples/SUMO/BasicEng.gf
--- a/examples/SUMO/BasicEng.gf
+++ b/examples/SUMO/BasicEng.gf
@@ -29,8 +29,8 @@
   and f1 f2 = {s = \\f,c => f1.s ! Indep ! c ++ "and" ++ f2.s ! Indep ! c; flag = NothingS; lock_PolSentence = <>};
   or f1 f2 = {s = \\f,c => f1.s ! Indep ! c ++ "or" ++ f2.s ! Indep ! c; flag = NothingS; lock_PolSentence = <>};
   not f1 = {s = \\f => table {
-                         Neg  => "it is not true that" ++ f1.s ! f ! Neg ; 
-                         Pos  => f1.s ! Indep ! Neg
+                         CNeg _ => "it is not true that" ++ f1.s ! f ! CPos ; 
+                         CPos  => f1.s ! Indep ! CNeg False
                        }; 
             flag = f1.flag;  
             lock_PolSentence = <>
@@ -45,11 +45,11 @@
 
   exists C f = let np = DetCN (DetQuant IndefArt NumSg) C 
                in { s = \\form,c => case <form, f.flag> of {
-                                      <Indep, ExistS _>    => "there" ++ "exists" ++ np.s ! Nom ++ f.$0 ++ f.s ! Attrib ! c ;
-                                      <Attrib, ExistS One> => "and" ++ np.s ! Nom ++ f.$0 ++ f.s ! Attrib ! c ;
-                                      <Attrib, ExistS _>   => "," ++ np.s ! Nom ++ f.$0 ++ f.s ! Attrib ! c ;
-                                      <Indep,_>            => "there" ++ "exists" ++ np.s ! Nom ++ f.$0 ++ "such" ++ "that" ++ f.s ! Indep ! c ; 
-                                      _                    => "and" ++ np.s ! Nom ++ f.$0 ++ "such" ++ "that" ++ f.s ! Indep ! c
+                                      <Indep, ExistS _>    => "there" ++ "exists" ++ np.s ! npNom ++ f.$0 ++ f.s ! Attrib ! c ;
+                                      <Attrib, ExistS One> => "and" ++ np.s ! npNom ++ f.$0 ++ f.s ! Attrib ! c ;
+                                      <Attrib, ExistS _>   => "," ++ np.s ! npNom ++ f.$0 ++ f.s ! Attrib ! c ;
+                                      <Indep,_>            => "there" ++ "exists" ++ np.s ! npNom ++ f.$0 ++ "such" ++ "that" ++ f.s ! Indep ! c ; 
+                                      _                    => "and" ++ np.s ! npNom ++ f.$0 ++ "such" ++ "that" ++ f.s ! Indep ! c
                                     }; 
                     flag = case f.flag of {
                              ExistS _   => ExistS Many;
@@ -88,8 +88,8 @@
   desc2desc c1 c2 i d = d;                
 
   subClassStm c1 c2 sc = lin StmtS (ss (c1. s ! Sg ! Nom ++ "is a subclass of" ++ c2.s ! Sg ! Nom)) ;
-  instStm c i = lin StmtS (ss (i.s ! Nom ++ "is an instance of" ++ c.s ! Sg ! Nom)) ;
-  formStm f = lin StmtS (ss (f.s ! Indep ! Pos)) ;
+  instStm c i = lin StmtS (ss (i.s ! npNom ++ "is an instance of" ++ c.s ! Sg ! Nom)) ;
+  formStm f = lin StmtS (ss (f.s ! Indep ! CPos)) ;
 
 lindef
   Ind = \x -> {s = \\_ => x; a = agrP3 Sg; lock_NP = <>} ;
diff --git a/examples/SUMO/MidLevelOntologyEng.gf b/examples/SUMO/MidLevelOntologyEng.gf
--- a/examples/SUMO/MidLevelOntologyEng.gf
+++ b/examples/SUMO/MidLevelOntologyEng.gf
@@ -1464,7 +1464,7 @@
   quarter ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (UseComp (CompNP (DetCN (DetQuant IndefArt NumSg) (UseN quarter_N)))) (PrepNP part_Prep ob2))) ;
   third ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (UseComp (CompNP (DetCN (DetQuant IndefArt NumSg) (UseN (mkN "third"))))) (PrepNP part_Prep ob2))) ;
   fears ob1 ob2 = mkPolSent (PredVP ob1 (ComplSlash (SlashV2a fear_V2) (sentToNoun ob2))) ;
-  hopes ob1 ob2 = mkPolSent (PredVP ob1 (ComplSlash (SlashV2a hope_V2) (sentToNoun ob2))) ;
+  hopes ob1 ob2 = mkPolSent (PredVP ob1 (ComplVS hope_VS (getSent ob2))) ;
   plaintiff ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (UseComp (CompNP (DetCN (DetQuant IndefArt NumSg) (UseN plaintiff_N)))) (PrepNP part_Prep ob2))) ;
   brandName ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (UseComp (CompNP (DetCN (DetQuant IndefArt NumSg) (ApposCN (UseN brand_N) (MassNP (UseN name_N)))))) (PrepNP part_Prep ob2))) ;
   formerName ob1 ob2 = mkPolSent (PredVP ob1 (AdvVP (UseComp (CompNP (DetCN (DetQuant DefArt NumSg) (AdjCN (PositA former_A) (UseN name_N))))) (PrepNP part_Prep ob2))) ;
diff --git a/examples/SUMO/RGLExt/Extension.gf b/examples/SUMO/RGLExt/Extension.gf
--- a/examples/SUMO/RGLExt/Extension.gf
+++ b/examples/SUMO/RGLExt/Extension.gf
@@ -1,23 +1,21 @@
 
 -- other functions needed for parsing 
 
-abstract Extension =  {
-
-
+abstract Extension =  Cat ** {
 
 cat
   PolSentence;
   StmtS ;
   [CN]{2};
-  N; N2; A; V; V2; CN; NP; Cl; Pol; Prep; Conj; -- redefined from Cat
-fun 
 
+fun 
 VerbToNounV2 : V2 -> N2 ; -- discovering
 VerbToNoun : V -> N ; -- walking is healthy
 VerbToGerundA : V -> A ; -- singing bird
 VerbToParticipeA : V -> A ; -- the required number 
 ConjCN  : Conj -> [CN] -> CN ;   -- set or class
 mkPolSent : Cl -> PolSentence ; 
+getSent : PolSentence -> S ;
 sentToNoun : PolSentence -> NP ;
 UsePolSentence : Pol -> PolSentence -> StmtS ;
 
diff --git a/examples/SUMO/RGLExt/ExtensionEng.gf b/examples/SUMO/RGLExt/ExtensionEng.gf
--- a/examples/SUMO/RGLExt/ExtensionEng.gf
+++ b/examples/SUMO/RGLExt/ExtensionEng.gf
@@ -1,25 +1,14 @@
 --# -path=.:RGLExt:alltenses:../../lib/src/english
 
-concrete ExtensionEng of Extension = open CatEng, MorphoEng, ResEng, ConjunctionEng, StructuralEng, Prelude, ParadigmsEng, Coordination, ParamBasic in {
+concrete ExtensionEng of Extension = CatEng ** open MorphoEng, ResEng, ConjunctionEng, StructuralEng, Prelude, ParadigmsEng, Coordination, ParamBasic in {
 
 
 lincat 
-    PolSentence = {s : SentForm => Polarity => Str ; flag : Flag};
-    [CN] = {s1,s2 : Number => Case => Str ; g : Gender} ;   
+    PolSentence = {s : SentForm => CPolarity => Str ; flag : Flag};
+    [CN] = {s1,s2 : Number => ResEng.Case => Str ; g : Gender} ;   
     StmtS = {s : Str};
-    NP = CatEng.NP;
-    CN = CatEng.CN; 
-    N = CatEng.N;
-    N2 = CatEng.N2;
-    A = CatEng.A;
-    V = CatEng.V;
-    V2 = CatEng.V2;
-    Cl = CatEng.Cl;
-    Pol = CatEng.Pol;
-    Prep = CatEng.Prep;
-    Conj = CatEng.Conj;
-lin 
 
+lin 
 VerbToNounV2 vs = VerbToNoun vs ** {c2 = vs.c2; lock_N2=<>};
 
 VerbToNoun v = {s = \\_,_ => v.s ! VPresPart;
@@ -30,21 +19,23 @@
 VerbToParticipeA v = {s = \\_ => v.s ! VPPart; lock_A=<>};
 
 mkPolSent cl = {s = \\f,b => case b of 
-                              {Pos => cl.s ! Pres ! Simul ! CPos ! ODir;
+                              {CPos => cl.s ! Pres ! Simul ! CPos ! ODir;
                                _   => cl.s ! Pres ! Simul ! CNeg False ! ODir};
                 flag = NothingS ;
                 lock_PolSentence = <>};
                
-sentToNoun ps = {s = \\_ => "\"" ++ ps.s ! Indep ! Pos ++ "\"";
+getSent psel = {s = psel.s ! Indep ! CPos} ;
+
+sentToNoun ps = {s = \\_ => "\"" ++ ps.s ! Indep ! CPos ++ "\"";
                  a = agrP3 Sg; lock_NP=<>};               
                
-ConjCN conj ss = conjunctDistrTable2 Number Case conj ss ** {g = ss.g;lock_CN=<>};               
+ConjCN conj ss = conjunctDistrTable2 Number ResEng.Case conj ss ** {g = ss.g;lock_CN=<>};               
 
 BaseCN x y ={s1 = \\n,c => x.s ! n ! c ;
              s2 = \\n,c => y.s ! n ! c ;   
              g  =  x.g} ;  
 
-ConsCN xs x = consrTable2 Number Case comma xs x ** {g = Masc} ;               
+ConsCN xs x = consrTable2 Number ResEng.Case comma xs x ** {g = Masc} ;               
 
 
 UsePolSentence p ps = {s = ps.s ! Indep ! p.p};
diff --git a/examples/category-theory/Functor.gf b/examples/category-theory/Functor.gf
--- a/examples/category-theory/Functor.gf
+++ b/examples/category-theory/Functor.gf
@@ -23,7 +23,10 @@
   -- composition of two functors
   fun compF : ({c1,c2,c3} : Category) -> Functor c3 c2 -> Functor c1 c3 -> Functor c1 c2 ;
   def compF (functor f032 f132 eqid32 eqcmp32) (functor f013 f113 eqid13 eqcmp13) =
-           functor (\x -> f032 (f013 x)) (\x -> f132 (f113 x)) (\x -> mapEqAr f132 eqid13) ? ;
+           functor (\x -> f032 (f013 x))
+                   (\x -> f132 (f113 x))
+                   (\x -> eqTran (eqSym (mapEqAr f032 f132 (eqid13 x))) (eqid32 (f013 x)))
+                   (\f,g -> eqTran (eqSym (mapEqAr f032 f132 (eqcmp13 f g))) (eqcmp32 (f113 f) (f113 g))) ;
 
   fun mapObj :  ({c1, c2} : Category)
             -> Functor c1 c2
@@ -38,12 +41,13 @@
             -> Arrow (mapObj f x) (mapObj f y) ;
   def mapAr (functor f0 f1 _ _) = f1 ;
 
-  fun mapEqAr :  ({c} : Category)
-              -> ({x,y} : Obj c)
+  fun mapEqAr :  ({c1,c2} : Category)
+              -> ({x,y} : Obj c1)
               -> ({f,g} : Arrow x y)
-              -> (func : Arrow x y -> Arrow x y)
+              -> (f0 : Obj c1 -> Obj c2)
+              -> (f1 : Arrow x y -> Arrow (f0 x) (f0 y))
               -> EqAr f g
-              -> EqAr (func f) (func g) ;
-  def mapEqAr func (eqRefl f) = eqRefl (func f) ;
+              -> EqAr (f1 f) (f1 g) ;
+  def mapEqAr f0 f1 (eqRefl f) = eqRefl (f1 f) ;
 
 }
diff --git a/examples/dates/Dates.gf b/examples/dates/Dates.gf
new file mode 100644
--- /dev/null
+++ b/examples/dates/Dates.gf
@@ -0,0 +1,32 @@
+abstract Dates = {
+
+flags startcat = Date ;
+
+cat
+  Date ; Year ; Month ; Day ; Time ; Hour ; Minute ; Weekday ; Ampm ;
+
+fun
+  DFull : Year -> Month -> Day -> Weekday -> Time -> Date ;
+  
+  MkYear : Int -> Year ;
+
+  MJan, MFeb, MMar, MApr, MMay, MJun, MJul, MAug, MSep, MOct, MNov, MDec : Month ;
+
+  MkDay : Int -> Day ;
+
+  MkTime : Ampm -> Hour -> Minute -> Time ;
+
+  H01, H02, H03, H04, H05, H06, H07, H08, H09, H10, H11, H12 : Hour ;
+
+  MkMinute : Int -> Minute ;
+
+  WSun, WMon, WTue, WWed, WThu, WFri, WSat : Weekday ;
+
+  AM, PM : Ampm ;
+
+-- noncanonical ways
+
+  DToday, DYesterday, DTomorrow : Time -> Date ;
+
+}
+
diff --git a/examples/dates/DatesEng.gf b/examples/dates/DatesEng.gf
new file mode 100644
--- /dev/null
+++ b/examples/dates/DatesEng.gf
@@ -0,0 +1,66 @@
+concrete DatesEng of Dates = open Prelude in {
+
+lincat
+  Date, Year, Month, Day, Time, Hour, Minute, Weekday, Ampm = Str ;
+
+lin
+  DFull y m d w t = opts (opts "on" ++ w ++ comma) ++ opts (bothWays m d ++ opts comma) ++ opts (y ++ opts comma) ++ opts ("at" ++ t) ;
+
+  MkYear i = i.s ;
+
+  MJan = "January" ;
+  MFeb = "February" ;
+  MMar = "March" ;
+  MApr = "April" ; 
+  MMay = "May" ; 
+  MJun = "June" ; 
+  MJul = "July" ;
+  MAug = "August" ;
+  MSep = "September" ;
+  MOct = "October" ;
+  MNov = "November" ;
+  MDec = "December" ;
+
+  MkDay i = i.s ;
+
+  MkTime ap h m = h ++ opts (dot ++ m) ++ opts ap ;
+
+  H01 = "1" ;
+  H02 = "2" ;
+  H03 = "3" ;
+  H04 = "4" ;
+  H05 = "5" ;
+  H06 = "6" ;
+  H07 = "7" ;
+  H08 = "8" ;
+  H09 = "9" ;
+  H10 = "10" ;
+  H11 = "11" ;
+  H12 = "12" ;
+
+  MkMinute i = i.s ;
+
+  WSun = "Sunday" ;
+  WMon = "Monday" ;
+  WTue = "Tuesday" ;
+  WWed = "Wednesday" ;
+  WThu = "Thursday" ;
+  WFri = "Friday" ;
+  WSat = "Saturday" ;
+
+  AM = "a.m." ;
+  PM = "p.m." ;
+
+oper
+  opts = optStr ;
+  dot = "." ;
+  comma = "," ;
+
+lin
+  DToday t     = "today" ++ opts ("at" ++ t) ;
+  DTomorrow t  = "tomorrow" ++ opts ("at" ++ t) ;
+  DYesterday t = "yesterday" ++ opts ("at" ++ t) ;
+
+
+}
+
diff --git a/examples/dates/DatesFin.gf b/examples/dates/DatesFin.gf
new file mode 100644
--- /dev/null
+++ b/examples/dates/DatesFin.gf
@@ -0,0 +1,78 @@
+concrete DatesFin of Dates = open Prelude in {
+
+flags coding = utf8 ;
+
+lincat
+  Date, Year, Day, Time, Minute = Str ; 
+  Month, Weekday = Case => Str ; 
+  Hour = PAMPM => Str ; 
+  Ampm = {s : Str ; p : PAMPM} ;
+
+lin
+  DFull y m d w t = (opts (w ! Nom) | (w ! Ess)) ++ opts (d ++ dot ++ (m ! Part)) ++ opts (opts "vuonna" ++ y) ++ opts (klo ++ t) ;
+
+  MkYear i = i.s ;
+
+  MJan = mkNoun "tammikuu" ;
+  MFeb = mkNoun "helmikuu" ;
+  MMar = mkNoun "maaliskuu" ;
+  MApr = mkNoun "huhtikuu" ; 
+  MMay = mkNoun "toukokuu" ; 
+  MJun = mkNoun "kesäkuu" ; 
+  MJul = mkNoun "heinäkuu" ;
+  MAug = mkNoun "elokuu" ;
+  MSep = mkNoun "syyskuu" ;
+  MOct = mkNoun "lokakuu" ;
+  MNov = mkNoun "marraskuu" ;
+  MDec = mkNoun "joulukuu" ;
+
+  MkDay i = i.s ;
+
+  MkTime ap h m = h ! ap.p ++ opts (dot ++ m) ++ ap.s ;
+
+  H01 = ampm "1" "13" ;
+  H02 = ampm "2" "14" ;
+  H03 = ampm "3" "15" ;
+  H04 = ampm "4" "16" ;
+  H05 = ampm "5" "17" ;
+  H06 = ampm "6" "18" ;
+  H07 = ampm "7" "19" ;
+  H08 = ampm "8" "20" ;
+  H09 = ampm "9" "21" ;
+  H10 = ampm "10" "22" ;
+  H11 = ampm "11" "23" ;
+  H12 = ampm "0" "12" ; -- 12.01 a.m. = 0.01 ; 12.01 p.m. = 13.01 
+
+  MkMinute i = i.s ;
+
+  WSun = mkNoun "sunnuntai" ;
+  WMon = mkNoun "maanantai" ;
+  WTue = mkNoun "tiistai" ;
+  WWed = mkNoun "keskiviikko" ;
+  WThu = mkNoun "torstai" ;
+  WFri = mkNoun "perjantai" ;
+  WSat = mkNoun "lauantai" ;
+
+  AM = {s = [] ; p = PAM} ;
+  PM = {s = [] ; p = PPM} ;
+
+oper
+  opts = optStr ;
+  dot = "." ;
+  comma = "," ;
+  klo = "klo" | "kello" ;
+
+  ampm : Str -> Str -> PAMPM => Str = \a,p -> table {PAM => a ; PPM => p} ;
+  mkNoun : Str -> Case => Str = \w -> table {Nom => w ; Part => w + "ta" ; Ess => w ++ "na"} ;
+
+param
+  PAMPM = PAM | PPM ;
+  Case = Nom | Part | Ess ;
+
+lin
+  DToday t     = "tänään" ++ opts (klo ++ t) ;
+  DTomorrow t  = "huomenna" ++ opts (klo ++ t) ;
+  DYesterday t = "eilen" ++ opts (klo ++ t) ;
+
+}
+
diff --git a/examples/dates/DatesFre.gf b/examples/dates/DatesFre.gf
new file mode 100644
--- /dev/null
+++ b/examples/dates/DatesFre.gf
@@ -0,0 +1,73 @@
+concrete DatesFre of Dates = open Prelude in {
+
+flags coding = utf8 ;
+
+lincat
+  Date, Year, Month, Day, Time, Minute, Weekday = Str ; Hour = PAMPM => Str ; Ampm = {s : Str ; p : PAMPM} ;
+
+lin
+  DFull y m d w t = opts w ++ opts ("le" ++ d ++ m) ++ opts (opts "en" ++ y) ++ opts (klo ++ t) ;
+
+  MkYear i = i.s ;
+
+  MJan = "janvier" ;
+  MFeb = "février" ;
+  MMar = "mars" ;
+  MApr = "avril" ; 
+  MMay = "mai" ; 
+  MJun = "juin" ; 
+  MJul = "juillet" ;
+  MAug = "août" ;
+  MSep = "septembre" ;
+  MOct = "octobre" ;
+  MNov = "novembre" ;
+  MDec = "décembre" ;
+
+  MkDay i = i.s ;
+
+  MkTime ap h m = h ! ap.p ++ opts ("h" ++ m) ++ ap.s ;
+
+  H01 = ampm "1" "13" ;
+  H02 = ampm "2" "14" ;
+  H03 = ampm "3" "15" ;
+  H04 = ampm "4" "16" ;
+  H05 = ampm "5" "17" ;
+  H06 = ampm "6" "18" ;
+  H07 = ampm "7" "19" ;
+  H08 = ampm "8" "20" ;
+  H09 = ampm "9" "21" ;
+  H10 = ampm "10" "22" ;
+  H11 = ampm "11" "23" ;
+  H12 = ampm "0" "12" ; -- 12.01 a.m. = 0.01 ; 12.01 p.m. = 13.01 
+
+  MkMinute i = i.s ;
+
+  WSun = "dimanche" ;
+  WMon = "lundi" ;
+  WTue = "mardi" ;
+  WWed = "mercredi" ;
+  WThu = "jeudi" ;
+  WFri = "vendredi" ;
+  WSat = "samedi" ;
+
+  AM = {s = [] ; p = PAM} ;
+  PM = {s = [] ; p = PPM} ;
+
+oper
+  opts = optStr ;
+  dot = "." ;
+  comma = "," ;
+  klo = "à" ;
+
+  ampm : Str -> Str -> PAMPM => Str = \a,p -> table {PAM => a ; PPM => p} ;
+
+param
+  PAMPM = PAM | PPM ;
+
+lin
+  DToday t     = "aujourd'hui" ++ opts (klo ++ t) ;
+  DTomorrow t  = "demain" ++ opts (klo ++ t) ;
+  DYesterday t = "hier" ++ opts (klo ++ t) ;
+
+}
+
diff --git a/examples/dates/DatesSwe.gf b/examples/dates/DatesSwe.gf
new file mode 100644
--- /dev/null
+++ b/examples/dates/DatesSwe.gf
@@ -0,0 +1,73 @@
+concrete DatesSwe of Dates = open Prelude in {
+
+flags coding = utf8 ;
+
+lincat
+  Date, Year, Month, Day, Time, Minute, Weekday = Str ; Hour = PAMPM => Str ; Ampm = {s : Str ; p : PAMPM} ;
+
+lin
+  DFull y m d w t = opts (opts "på" ++ w) ++ opts ("den" ++ d ++ m) ++ opts (opts "år" ++ y) ++ opts (klo ++ t) ;
+
+  MkYear i = i.s ;
+
+  MJan = "januari" ;
+  MFeb = "februari" ;
+  MMar = "mars" ;
+  MApr = "april" ; 
+  MMay = "maj" ; 
+  MJun = "juni" ; 
+  MJul = "juli" ;
+  MAug = "augusti" ;
+  MSep = "september" ;
+  MOct = "oktober" ;
+  MNov = "november" ;
+  MDec = "december" ;
+
+  MkDay i = i.s ;
+
+  MkTime ap h m = h ! ap.p ++ opts (dot ++ m) ++ ap.s ;
+
+  H01 = ampm "1" "13" ;
+  H02 = ampm "2" "14" ;
+  H03 = ampm "3" "15" ;
+  H04 = ampm "4" "16" ;
+  H05 = ampm "5" "17" ;
+  H06 = ampm "6" "18" ;
+  H07 = ampm "7" "19" ;
+  H08 = ampm "8" "20" ;
+  H09 = ampm "9" "21" ;
+  H10 = ampm "10" "22" ;
+  H11 = ampm "11" "23" ;
+  H12 = ampm "0" "12" ; -- 12.01 a.m. = 0.01 ; 12.01 p.m. = 13.01 
+
+  MkMinute i = i.s ;
+
+  WSun = "söndag" ;
+  WMon = "måndag" ;
+  WTue = "tisdag" ;
+  WWed = "onsdag" ;
+  WThu = "torsdag" ;
+  WFri = "fredag" ;
+  WSat = "lördag" ;
+
+  AM = {s = [] ; p = PAM} ;
+  PM = {s = [] ; p = PPM} ;
+
+oper
+  opts = optStr ;
+  dot = "." ;
+  comma = "," ;
+  klo = "kl." | "klockan" ;
+
+  ampm : Str -> Str -> PAMPM => Str = \a,p -> table {PAM => a ; PPM => p} ;
+
+param
+  PAMPM = PAM | PPM ;
+
+lin
+  DToday t     = "idag" ++ opts (klo ++ t) ;
+  DTomorrow t  = "imorgon" ++ opts (klo ++ t) ;
+  DYesterday t = "igår" ++ opts (klo ++ t) ;
+
+}
+
diff --git a/examples/discourse/Discourse.gf b/examples/discourse/Discourse.gf
new file mode 100644
--- /dev/null
+++ b/examples/discourse/Discourse.gf
@@ -0,0 +1,29 @@
+abstract Discourse = 
+  Lexicon,
+  Noun, Verb,
+  Adjective, Adverb,
+  Structural - [nobody_NP, nothing_NP],
+  Tense
+** {
+
+flags startcat = S ;
+
+cat
+  Clause ;     -- subject, verb, object, adverb(s)
+  Marker ;     -- discourse marker
+
+fun 
+  PreSubjS  : Marker -> Temp -> Pol -> Clause -> S ;              -- Jussihan juo maitoa nyt
+  PreVerbS  : Marker -> Temp -> Pol -> Clause -> S ;              -- juohan Jussi maitoa nyt
+  PreObjS   : Marker -> Temp -> Pol -> Clause -> S ;              -- maitoahan Jussi juo nyt
+  PreAdvS   : Marker -> Temp -> Pol -> Clause -> S ;              -- nythän Jussi juo maitoa
+
+  NoFocClause    : NP -> VPSlash -> NP -> Adv -> Clause ;         -- Jussi juo maitoa nyt
+  FocSubjClause  : NP -> VPSlash -> NP -> Adv -> Clause ;         -- Jussikin juo maitoa nyt
+  FocVerbClause  : NP -> VPSlash -> NP -> Adv -> Clause ;         -- Jussi juokin maitoa nyt
+  FocObjClause   : NP -> VPSlash -> NP -> Adv -> Clause ;         -- Jussi juo maitoakin nyt
+  FocAdvClause   : NP -> VPSlash -> NP -> Adv -> Clause ;         -- Jussi juo maitoa nytkin
+
+  neutralMarker, remindMarker, contrastMarker : Marker ; 
+
+}
diff --git a/examples/discourse/DiscourseEng.gf b/examples/discourse/DiscourseEng.gf
new file mode 100644
--- /dev/null
+++ b/examples/discourse/DiscourseEng.gf
@@ -0,0 +1,56 @@
+--# -path=.:present
+
+concrete DiscourseEng of Discourse = 
+  LexiconEng,
+  NounEng, VerbEng - [SlashV2VNP,SlashVV, Slash2V3, Slash3V3],
+  AdjectiveEng, AdverbEng,  
+  StructuralEng - [nobody_NP,nothing_NP],
+  TenseX
+** open SyntaxEng, (P = ParadigmsEng), (R = ParamX), (E = ExtraEng), (L = LangEng), Prelude in {
+
+lincat
+  Clause = {s : R.Polarity => {subj : NP ; vps : VPSlash ; obj : NP ; adv : Adv}} ;
+  Marker = Adv ;
+
+lin
+  PreSubjS marker temp pol cla = 
+    let cl = cla.s ! pol.p in
+    mkS marker (mkS temp pol 
+      (mkCl cl.subj (mkVP (mkVP cl.vps cl.obj) cl.adv))) ;
+
+  PreVerbS marker temp pol cla = 
+    let cl = cla.s ! pol.p in
+    mkS marker (mkS temp pol 
+      (mkCl cl.subj (mkVP actually_AdV (mkVP (mkVP E.do_VV (mkVP cl.vps cl.obj)) cl.adv)))) ;
+
+  PreObjS marker temp pol cla = 
+    let cl = cla.s ! pol.p in
+    mkS marker (mkS (mkCl cl.obj
+      (mkRS temp pol (mkRCl E.that_RP (mkClSlash cl.subj (L.AdvVPSlash cl.vps cl.adv)))))) ;
+
+  PreAdvS marker temp pol cla = 
+    let cl = cla.s ! pol.p in
+    mkS marker (mkS cl.adv
+      (mkS temp pol (mkCl cl.subj (mkVP cl.vps cl.obj)))) ;
+
+  NoFocClause np vps obj adv = 
+    {s = \\p => {subj = np ; vps = vps ; obj = obj ; adv = adv}} ;
+  FocSubjClause np vps obj adv = 
+    {s = \\p => {subj = mkNP np (too p) ; vps = vps ; obj = obj ; adv = adv}} ;
+  FocVerbClause np vps obj adv = 
+    {s = \\p => {subj = np ; vps = L.AdVVPSlash even_AdV vps ; obj = obj ; adv = adv}} ;
+  FocObjClause np vps obj adv = 
+    {s = \\p => {subj = np ; vps = vps ; obj = mkNP obj (too p) ; adv = adv}} ;
+  FocAdvClause np vps obj adv = 
+    {s = \\p => {subj = np ; vps = vps ; obj = obj ; adv = lin Adv (ss (adv.s ++ (too p).s))}} ;
+
+  neutralMarker  = P.mkAdv [] ;
+  remindMarker   = P.mkAdv "as we know" ;
+  contrastMarker = P.mkAdv "no but" ;
+
+oper
+  too : R.Polarity -> Adv = \p -> case p of {R.Pos => P.mkAdv "too" ; R.Neg => P.mkAdv "either"} ;
+  even_AdV = P.mkAdV "even" ;
+  actually_AdV = P.mkAdV "actually" ;
+
+}
diff --git a/examples/discourse/DiscourseFin.gf b/examples/discourse/DiscourseFin.gf
new file mode 100644
--- /dev/null
+++ b/examples/discourse/DiscourseFin.gf
@@ -0,0 +1,40 @@
+--# -path=.:present
+
+concrete DiscourseFin of Discourse = 
+  LexiconFin,
+  NounFin, VerbFin - [SlashV2VNP,SlashVV, Slash2V3, Slash3V3],
+  AdjectiveFin, AdverbFin,  
+  StructuralFin - [nobody_NP,nothing_NP],
+  TenseX
+** open SyntaxFin, (P = ParadigmsFin), (R = ParamX), (E = ExtraFin), Prelude in {
+
+lincat
+  Clause = E.ClPlus ;
+  Marker = E.Part ;
+
+lin
+  PreSubjS marker temp pol cl = 
+    E.S_SVO marker temp pol cl ;
+  PreVerbS marker temp pol cl = 
+    E.S_VSO marker temp pol cl ;
+  PreObjS marker temp pol cl = 
+    E.S_OSV marker temp pol cl ;
+  PreAdvS marker temp pol cl = 
+    E.S_ASV marker temp pol cl ;
+
+  NoFocClause np vps obj adv = 
+    E.PredClPlus np (mkVP (mkVP vps obj) adv) ;
+  FocSubjClause np vps obj adv = 
+    E.PredClPlusFocSubj np (mkVP (mkVP vps obj) adv) ;
+  FocVerbClause np vps obj adv = 
+    E.PredClPlusFocVerb np (mkVP (mkVP vps obj) adv) ;
+--  FocObjClause np vps obj adv = 
+--    lin ClPlus (E.PredClPlusFocObj np (mkVP vps adv) obj) ;
+  FocAdvClause np vps obj adv = 
+    lin ClPlus (E.PredClPlusFocAdv np (mkVP vps obj) adv) ;
+
+  neutralMarker  = E.noPart ;
+  remindMarker   = E.han_Part ;
+  contrastMarker = E.pas_Part ;
+
+}
diff --git a/examples/discourse/particles.txt b/examples/discourse/particles.txt
new file mode 100644
--- /dev/null
+++ b/examples/discourse/particles.txt
@@ -0,0 +1,55 @@
+On the syntax of clitic particles in Finnish
+
+-- AR 29/12/2010
+
+The clitic particles come in two groups:
+
+  Pas ::= pas | pa | han | kos | ko | kohan | pahan -- free variation
+  Kin ::= kin/kaan                                  -- depending on polarity
+
+(vowel harmony ignored). A Finnish sentence can have at most one of each. A Pas clitic is
+always attached to the first word ("Aripas juo maitoa") or phrase such as NP 
+("minun poikanipas juo maitoa"). A Kin clitic can be attached to almost any word; if the
+same as Pas, Kin must come first ("Arikinhan juo maitoa"). Some combinations are clumsy
+but presumably OK ("Arikinpas"). If the verb is first, it doesn't seem to allow Kin
+(*"juokin Ari maitoa"). 
+
+The following is a list of combinatory possibilities. Adverbs (represented by "nyt")
+can be added ad libitum - at most two of them then become carriers of clitics
+("nythän Ari juo maitoa täälläkin").
+
+
+-- declaratives and questions
+
+(Notice that, in the presence of "ei", Kin is "kaan", otherwise "kin".)
+
+ari    Pas? ei? (juo Kin maitoa nyt | juo maitoa Kin nyt | juo maitoa nyt Kin?)
+maitoa Pas? ei? (ari Kin juo    nyt | ari juo    Kin nyt | ari juo    nyt Kin?)
+nyt    Pas? ei? (ari Kin juo maitoa | ari juo Kin maitoa | ari juo    maitoa Kin?)
+
+ari    Kin  Pas? ei? juo maitoa nyt 
+maitoa Kin  Pas? ari ei? juo nyt
+nyt    Kin  Pas? ari ei? juo maitoa
+
+juo    Pas? (ari Kin maitoa nyt | ari maitoa Kin nyt | ari maitoa nyt Kin?)
+ei     Pas? (ari Kin juo maitoa nyt | ari juo Kin maitoa nyt | ari juo maitoa Kin nyt |
+             ari juo maitoa nyt Kin?)
+
+-- imperatives
+
+The question clitic is (for obvious semantic reasons) omitted from the Pas category:
+
+  Pas- ::= pa | pas | han | pahan 
+
+juo    Pas-? (ari Kin maitoa nyt | ari maitoa Kin nyt | ari maitoa nyt Kin?)
+älä    Pas-? (ari Kin juo maitoa nyt | ari juo Kin maitoa nyt | ari juo maitoa Kin nyt 
+              | ari juo maitoa nyt Kin?)
+
+
+-- negation word
+
+Strangely enough, Kin seems to be getting accepted in plural (= two-syllabic) negations:
+
+  *enkään, *etkään, *eikään, ?emmekään, ?ettekään, ?eivätkään (quite some Google hits)
+
+
diff --git a/examples/gadt-transfer/Foods.gf b/examples/gadt-transfer/Foods.gf
new file mode 100644
--- /dev/null
+++ b/examples/gadt-transfer/Foods.gf
@@ -0,0 +1,15 @@
+-- (c) 2009 Aarne Ranta under LGPL
+
+abstract Foods = {
+  flags startcat = Comment ;
+  cat
+    Comment ; Item ; Kind ; Quality ;
+  fun
+    Pred : Item -> Quality -> Comment ;
+    This, That, These, Those : Kind -> Item ;
+    Mod : Quality -> Kind -> Kind ;
+    Wine, Cheese, Fish, Pizza : Kind ;
+    Very : Quality -> Quality ;
+    Fresh, Warm, Italian, 
+      Expensive, Delicious, Boring : Quality ;
+}
diff --git a/examples/gadt-transfer/FoodsDut.gf b/examples/gadt-transfer/FoodsDut.gf
new file mode 100644
--- /dev/null
+++ b/examples/gadt-transfer/FoodsDut.gf
@@ -0,0 +1,58 @@
+-- (c) 2009 Femke Johansson under LGPL
+
+concrete FoodsDut of Foods = {
+
+	lincat
+		Comment = {s : Str};
+		Quality = {s : AForm => Str};
+		Kind = { s : Number => Str};
+		Item = {s : Str ; n : Number};
+	
+	lin
+		Pred item quality = 
+			{s = item.s ++ copula ! item.n ++ quality.s ! APred};
+		This = det Sg "deze";
+		These = det Pl "deze";
+		That = det Sg "die";
+		Those = det Pl "die";
+		
+		Mod quality kind =
+			{s = \\n => quality.s ! AAttr ++ kind.s ! n};
+			Wine = regNoun "wijn";
+			Cheese = noun "kaas" "kazen";
+			Fish = noun "vis" "vissen";
+			Pizza = noun "pizza" "pizza's";
+			
+			Very a = {s = \\f => "erg" ++ a.s ! f};
+			
+			Fresh = regadj "vers";
+			Warm = regadj "warm";
+			Italian = regadj "Italiaans";
+			Expensive = adj "duur" "dure";
+			Delicious = regadj "lekker";
+			Boring = regadj "saai";
+		
+		param
+			Number = Sg | Pl;
+			AForm = APred | AAttr;
+		
+		oper
+			det : Number -> Str ->
+				{s : Number => Str} -> {s : Str ; n: Number} =
+				\n,det,noun -> {s = det ++ noun.s ! n ; n=n};
+				
+			noun : Str -> Str -> {s : Number => Str} = 
+				\man,men -> {s = table {Sg => man; Pl => men}};
+				
+			regNoun : Str -> {s : Number => Str} =
+				\wijn -> noun wijn (wijn + "en");
+				
+			regadj : Str -> {s : AForm => Str} =
+				\koud -> adj koud (koud+"e");
+			
+			adj : Str -> Str -> {s : AForm => Str} =
+				\duur, dure -> {s = table {APred => duur; AAttr => dure}};
+				
+			copula : Number => Str =
+				table {Sg => "is" ; Pl => "zijn"};
+}
diff --git a/examples/gadt-transfer/FoodsEng.gf b/examples/gadt-transfer/FoodsEng.gf
new file mode 100644
--- /dev/null
+++ b/examples/gadt-transfer/FoodsEng.gf
@@ -0,0 +1,43 @@
+-- (c) 2009 Aarne Ranta under LGPL
+
+concrete FoodsEng of Foods = {
+  flags language = en_US;
+  lincat
+    Comment, Quality = {s : Str} ; 
+    Kind = {s : Number => Str} ; 
+    Item = {s : Str ; n : Number} ; 
+  lin
+    Pred item quality = 
+      {s = item.s ++ copula ! item.n ++ quality.s} ;
+    This  = det Sg "this" ;
+    That  = det Sg "that" ;
+    These = det Pl "these" ;
+    Those = det Pl "those" ;
+    Mod quality kind = 
+      {s = \\n => quality.s ++ kind.s ! n} ;
+    Wine = regNoun "wine" ;
+    Cheese = regNoun "cheese" ;
+    Fish = noun "fish" "fish" ;
+    Pizza = regNoun "pizza" ;
+    Very a = {s = "very" ++ a.s} ;
+    Fresh = adj "fresh" ;
+    Warm = adj "warm" ;
+    Italian = adj "Italian" ;
+    Expensive = adj "expensive" ;
+    Delicious = adj "delicious" ;
+    Boring = adj "boring" ;
+  param
+    Number = Sg | Pl ;
+  oper
+    det : Number -> Str -> 
+      {s : Number => Str} -> {s : Str ; n : Number} = 
+        \n,det,noun -> {s = det ++ noun.s ! n ; n = n} ;
+    noun : Str -> Str -> {s : Number => Str} = 
+      \man,men -> {s = table {Sg => man ; Pl => men}} ;
+    regNoun : Str -> {s : Number => Str} = 
+      \car -> noun car (car + "s") ;
+    adj : Str -> {s : Str} = 
+      \cold -> {s = cold} ;
+    copula : Number => Str = 
+      table {Sg => "is" ; Pl => "are"} ;
+}
diff --git a/examples/gadt-transfer/Makefile b/examples/gadt-transfer/Makefile
new file mode 100644
--- /dev/null
+++ b/examples/gadt-transfer/Makefile
@@ -0,0 +1,4 @@
+all:
+	gf -make -output-format=haskell --haskell=gadt FoodsEng.gf FoodsDut.gf
+	ghc --make VeryFoods.hs
+
diff --git a/examples/gadt-transfer/README b/examples/gadt-transfer/README
new file mode 100644
--- /dev/null
+++ b/examples/gadt-transfer/README
@@ -0,0 +1,35 @@
+AR 5/3/2011
+
+Example on using GADT and composOp in transfer.
+
+To compile:
+
+  make
+
+To test:
+
+  echo "this expensive boring wine is warm" | ./VeryFoods
+  this expensive very boring wine is warm
+
+  echo "deze dure wijn is saai" | ./VeryFoods
+  deze dure wijn is erg saai
+
+Functionality: wraps every occurrence of "boring" with "very".
+
+This is implemented with a function that needs only two cases: one for "Boring" and another
+for the rest of trees. On the method, see 
+
+  B. Bringert and A. Ranta. 
+  A Pattern for Almost Compositional Functions. 
+  Journal of Functional Programming, 18(5-6), pp. 567-598, 2008.
+  http://www.cse.chalmers.se/alumni/bringert/publ/composOp-jfp/composOp-jfp.pdf
+
+Source code:
+
+  VeryFoods.hs                        -- main Haskell module, hand-written
+  Makefile
+  Foods.gf, FoodsEng.gf, FoodsDut.gf  -- from GF/contrib/summerschool/foods/
+
+Foods.hs and Foods.pgf are generated by 'make'.
+
+
diff --git a/examples/gadt-transfer/VeryFoods.hs b/examples/gadt-transfer/VeryFoods.hs
new file mode 100644
--- /dev/null
+++ b/examples/gadt-transfer/VeryFoods.hs
@@ -0,0 +1,23 @@
+{-# OPTIONS_GHC -fglasgow-exts #-}
+module Main where
+
+import PGF
+import Foods
+
+-- example of using GADT: turn every occurrence of "boring" to "very boring"
+
+main = do
+  pgf <- readPGF "Foods.pgf"
+  interact (doVery pgf)
+
+doVery pgf s = case parseAllLang pgf (startCat pgf) s of 
+  (l,t:_):_ -> unlines $ return $ linearize pgf l $ gf $ veryC $ fg t
+
+veryC :: GComment -> GComment
+veryC = very
+
+very :: forall a. Foods.Tree a -> Foods.Tree a
+very t = case t of
+  GBoring -> GVery GBoring
+  _ -> composOp very t
+
diff --git a/examples/grammar-terms/GrammarTerms.gf b/examples/grammar-terms/GrammarTerms.gf
new file mode 100644
--- /dev/null
+++ b/examples/grammar-terms/GrammarTerms.gf
@@ -0,0 +1,103 @@
+abstract GrammarTerms = {
+
+flags startcat = Rule ;
+
+cat
+  Rule ;
+  Cat ; 
+  ParamType ;
+  ParamValue ;
+  Language ;
+  [Cat] {1} ;
+  [ParamType] {1} ;
+
+fun
+  RuleFun : Cat -> [Cat] -> Rule ;
+  RuleInherent : Cat -> [ParamType] -> Rule ;
+  RuleVariable : Cat -> [ParamType] -> Rule ;
+
+fun 
+  CatA : Cat ;
+  CatA2 : Cat ;
+  CatAP : Cat ;
+  CatAdA : Cat ;
+  CatAdN : Cat ;
+  CatAdV : Cat ;
+  CatAdv : Cat ;
+  CatAnt : Cat ;
+  CatCAdv : Cat ;
+  CatCN : Cat ;
+  CatCard : Cat ;
+  CatCl : Cat ;
+  CatClSlash : Cat ;
+  CatComp : Cat ;
+  CatConj : Cat ;
+  CatDet : Cat ;
+  CatDig : Cat ;
+  CatDigits : Cat ;
+  CatIAdv : Cat ;
+  CatIComp : Cat ;
+  CatIDet : Cat ;
+  CatIP : Cat ;
+  CatIQuant : Cat ;
+  CatImp : Cat ;
+  CatImpForm : Cat ;
+  CatInterj : Cat ;
+  CatListAP : Cat ;
+  CatListAdv : Cat ;
+  CatListNP : Cat ;
+  CatListRS : Cat ;
+  CatListS : Cat ;
+  CatN : Cat ;
+  CatN2 : Cat ;
+  CatN3 : Cat ;
+  CatNP : Cat ;
+  CatNum : Cat ;
+  CatNumeral : Cat ;
+  CatOrd : Cat ;
+  CatPConj : Cat ;
+  CatPN : Cat ;
+  CatPhr : Cat ;
+  CatPol : Cat ;
+  CatPredet : Cat ;
+  CatPrep : Cat ;
+  CatPron : Cat ;
+  CatPunct : Cat ;
+  CatQCl : Cat ;
+  CatQS : Cat ;
+  CatQuant : Cat ;
+  CatRCl : Cat ;
+  CatRP : Cat ;
+  CatRS : Cat ;
+  CatS : Cat ;
+  CatSC : Cat ;
+  CatSSlash : Cat ;
+  CatSub100 : Cat ;
+  CatSub1000 : Cat ;
+  CatSubj : Cat ;
+  CatTemp : Cat ;
+  CatTense : Cat ;
+  CatText : Cat ;
+  CatUnit : Cat ;
+  CatUtt : Cat ;
+  CatV : Cat ;
+  CatV2 : Cat ;
+  CatV2A : Cat ;
+  CatV2Q : Cat ;
+  CatV2S : Cat ;
+  CatV2V : Cat ;
+  CatV3 : Cat ;
+  CatVA : Cat ;
+  CatVP : Cat ;
+  CatVPSlash : Cat ;
+  CatVQ : Cat ;
+  CatVS : Cat ;
+  CatVV : Cat ;
+  CatVoc : Cat ;
+
+  PTGender : ParamType ;
+  PTNumber : ParamType ;
+  PTCase   : ParamType ;
+  PTTense  : ParamType ;
+
+}
diff --git a/examples/grammar-terms/GrammarTermsEng.gf b/examples/grammar-terms/GrammarTermsEng.gf
new file mode 100644
--- /dev/null
+++ b/examples/grammar-terms/GrammarTermsEng.gf
@@ -0,0 +1,143 @@
+--# -path=.:present
+
+concrete GrammarTermsEng of GrammarTerms = 
+  open SyntaxEng, (S = SyntaxEng), ParadigmsEng, (P = ParadigmsEng) in {
+
+lincat
+  Rule = Utt ;
+  Cat = CN ;
+  ParamType = CN ;
+  ParamValue = NP ;
+  Language = {name : CN ; adj : AP} ;
+  [Cat] = NP ;
+  [ParamType] = {indef, bare : NP} ;
+
+lin
+  RuleFun c cs = 
+    mkUtt (mkS (mkCl (mkNP a_Det c) (mkVP can_VV 
+      (mkVP (passiveVP construct_V2) (S.mkAdv from_Prep cs))))) ;
+  RuleInherent c ps = 
+    mkUtt (mkS (mkCl (mkNP aPl_Det c) have_V2 ps.indef)) ;
+  RuleVariable c ps = 
+    mkUtt (mkS (mkCl (mkNP aPl_Det c)
+      (mkVP (passiveVP inflect_V2) (S.mkAdv for_Prep ps.bare)))) ;
+
+oper
+  construct_V2 = mkV2 "construct" ;
+  inflect_V2 = mkV2 "inflect" ;
+
+lin
+  BaseCat c = mkNP a_Det c ;
+  ConsCat c cs = mkNP and_Conj (mkNP a_Det c) cs ;
+
+  BaseParamType c = {
+    indef = mkNP a_Det c ;
+    bare = mkNP c
+    } ;
+  ConsParamType c cs = {
+    indef = mkNP and_Conj (mkNP a_Det c) cs.indef ;
+    bare = mkNP and_Conj (mkNP c) cs.bare
+    } ;
+
+lin 
+  CatA = mkCN (mkN "adjective") ;
+  CatA2 = mkCN (mkN "two-place adjective") ;
+  CatAP = mkCN (mkA "adjectival") (mkN "phrase") ;
+  CatAdA = mkCN (mkA "adjective-modifying") (mkN "adverb") ;
+  CatAdN = mkCN (mkN "numeral-modifying adverb") ;
+  CatAdV = mkCN (mkN "sentential adverb") ;
+  CatAdv = mkCN (mkN "verb-phrase-modifying adverb") ;
+  CatAnt = mkCN (mkN "anteriority") ;
+  CatCAdv = mkCN (mkN "comparative adverb") ;
+  CatCN = mkCN (mkN "common noun phrase") ;
+  CatCard = mkCN (mkN "cardinal number") ;
+  CatCl = mkCN (mkN "declarative clause") ;
+  CatClSlash = slash (mkCN (mkN "clause")) ;
+  CatComp = funOf (mkN "complement") (mkN "copula") ;
+  CatConj = mkCN (mkN "conjunction") ;
+  CatDet = mkCN (mkN "determiner phrase") ;
+  CatDig = mkCN (mkN "digit") ;
+  CatDigits = funOfPl (mkN "sequence") (mkN "digit") ;
+  CatIAdv = mkCN (mkN "interrogative adverb") ;
+  CatIComp = 
+    mkCN (mkA "interrogative") (funOf (mkN "complement") (mkN "copula")) ;
+  CatIDet = mkCN (mkN "interrogative determiner") ;
+  CatIP = mkCN (mkN "interrogative pronoun") ;
+  CatIQuant = mkCN (mkN "interrogative quantifier") ;
+  CatImp = mkCN (mkN "imperative") ;
+  CatImpForm = funOf (mkN "form") (mkN "imperative") ;
+  CatInterj = mkCN (mkN "interjection") ;
+  CatListAP = funOfPl (mkN "list") (mkN "adjectival phrase") ;
+  CatListAdv = funOfPl (mkN "list") (mkN "adverb") ;
+  CatListNP = funOfPl (mkN "list") (mkN "noun phrase") ;
+  CatListRS = funOfPl (mkN "list") (mkN "relative clause") ;
+  CatListS = funOfPl (mkN "list") (mkN "sentence") ;
+  CatN = mkCN (mkN "noun") ;
+  CatN2 = mkCN (mkN "two-place relational noun") ;
+  CatN3 = mkCN (mkN "three-place relational noun") ;
+  CatNP = mkCN (mkN "noun phrase") ;
+  CatNum = mkCN (mkN "number-determining element") ;
+  CatNumeral = mkCN (mkN "numeral expression") ;
+  CatOrd = mkCN (mkN "ordinal") ;
+  CatPConj = mkCN (mkN "phrase conjunction") ;
+  CatPN = mkCN (mkN "proper name") ;
+  CatPhr = mkCN (mkN "phrase") (S.mkAdv in_Prep (mkNP a_Det (mkN "text"))) ;
+  CatPol = mkCN (mkN "polarity") ;
+  CatPredet = mkCN (mkN "predeterminer") ;
+  CatPrep = mkCN (mkN "preposition") ;
+  CatPron = mkCN (mkN "personal pronoun") ;
+  CatPunct = mkCN (mkN "punctuation mark") ;
+  CatQCl = mkCN (mkN "question clause") ;
+  CatQS = mkCN (mkN "question") ;
+  CatQuant = mkCN (mkN "quantifier") ;
+  CatRCl = mkCN (mkN "relative clause") ;
+  CatRP = mkCN (mkN "relative pronoun") ;
+  CatRS = mkCN (mkN "relative sentence") ;
+  CatS = mkCN (mkN "declarative sentence") ;
+  CatSC = mkCN (mkN "embedded clause") ;
+  CatSSlash = slash (mkCN (mkN "sentence")) ;
+  CatSub100 = mkCN (mkN "numeral") (S.mkAdv under_Prep (mkNP (mkPN "100"))) ;
+  CatSub1000 = mkCN (mkN "numeral") (S.mkAdv under_Prep (mkNP (mkPN "1000"))) ;
+  CatSubj = mkCN (mkN "subjunction") ;
+  CatTemp = mkCN (mkN "temporal and aspectual feature") ;
+  CatTense = mkCN (mkN "tense") ;
+  CatText = mkCN (mkN "text") ;
+  CatUnit = mkCN (mkN "numeral") (S.mkAdv under_Prep (mkNP (mkPN "10"))) ;
+  CatUtt = mkCN (mkN "utterance") ;
+  CatV = mkCN (mkN "intransitive verb") ;
+  CatV2 = mkCN (mkN "two-place verb") ;
+  CatV2A = 
+    mkCN (mkN "verb") (P.mkAdv "with noun phrase and adjective complements") ;
+  CatV2Q = 
+    mkCN (mkN "verb") (P.mkAdv "with noun phrase and question complements") ;
+  CatV2S = 
+    mkCN (mkN "verb") (P.mkAdv "with noun phrase and sentence complements") ;
+  CatV2V = 
+    mkCN (mkN "verb") (P.mkAdv "with noun phrase and verb phrase complements") ;
+  CatV3 = mkCN (mkN "three-place verb") ;
+  CatVA = 
+    mkCN (mkN "verb") (P.mkAdv "with an adjective complement") ;
+  CatVP = mkCN (mkN "verb phrase") ;
+  CatVPSlash = slash (mkCN (mkN "verb phrase")) ;
+  CatVQ = 
+    mkCN (mkN "verb") (P.mkAdv "with a question complement") ;
+  CatVS = 
+    mkCN (mkN "verb") (P.mkAdv "with a sentence complement") ;
+  CatVV = 
+    mkCN (mkN "verb") (P.mkAdv "with a verb-phrase complement") ;
+  CatVoc = mkCN (mkN "vocative") ;
+
+  PTGender = mkCN (mkN "gender") ;
+  PTNumber = mkCN (mkN "number") ;
+  PTCase   = mkCN (mkN "case") ;
+  PTTense  = mkCN (mkN "tense") ;
+
+oper 
+  slash : CN -> CN = \cn ->
+     mkCN (mkAP (mkA2 (mkA "missing") []) (mkNP a_Det (mkN "noun phrase"))) cn ;
+
+  funOf : N -> N -> CN = \f,x ->
+     mkCN (mkN2 f possess_Prep) (mkNP a_Det x) ;
+  funOfPl : N -> N -> CN = \f,x ->
+     mkCN (mkN2 f possess_Prep) (mkNP aPl_Det x) ;
+}
diff --git a/examples/grammar-terms/GrammarTermsGF.gf b/examples/grammar-terms/GrammarTermsGF.gf
new file mode 100644
--- /dev/null
+++ b/examples/grammar-terms/GrammarTermsGF.gf
@@ -0,0 +1,109 @@
+concrete GrammarTermsGF of GrammarTerms = 
+  open Prelude in {
+
+lincat
+  Rule = Str ;
+  Cat = Str ;
+  ParamType = Str ;
+  ParamValue = Str ;
+  Language = Str ;
+  [Cat] = Str ;
+  [ParamType] = Str ;
+
+lin
+  RuleFun c cs = cs ++ "->" ++ c ; 
+  RuleInherent c ps = "lincat" ++ c ++ ":" ++ "{" ++ ps ++ "}" ; 
+  RuleVariable c ps = "lincat" ++ c ++ ":" ++ ps ++ "=>" ++ "Str" ; 
+
+lin
+  BaseCat c = c ;
+  ConsCat c cs = c ++ "->" ++ cs ;
+
+  BaseParamType c = c ;
+  ConsParamType c cs = c ++ "," ++ cs ;
+
+lin 
+  CatA = "A" ;
+  CatA2 = "A2" ;
+  CatAP = "AP" ;
+  CatAdA = "AdA" ;
+  CatAdN = "AdN" ;
+  CatAdV = "AdV" ;
+  CatAdv = "Adv" ;
+  CatAnt = "Ant" ;
+  CatCAdv = "CAdv" ;
+  CatCN = "CN" ;
+  CatCard = "Card" ;
+  CatCl = "Cl" ;
+  CatClSlash = "ClSlash" ;
+  CatComp = "Comp" ;
+  CatConj = "Conj" ;
+  CatDet = "Det" ;
+  CatDig = "Dig" ;
+  CatDigits = "Digits" ;
+  CatIAdv = "IAdv" ;
+  CatIComp = "IComp" ;
+  CatIDet = "IDet" ;
+  CatIP = "IP" ;
+  CatIQuant = "IQuant" ;
+  CatImp = "Imp" ;
+  CatImpForm = "ImpForm" ;
+  CatInterj = "Interj" ;
+  CatListAP = "ListAP" ;
+  CatListAdv = "ListAdv" ;
+  CatListNP = "ListNP" ;
+  CatListRS = "ListRS" ;
+  CatListS = "ListS" ;
+  CatN = "N" ;
+  CatN2 = "N2" ;
+  CatN3 = "N3" ;
+  CatNP = "NP" ;
+  CatNum = "Num" ;
+  CatNumeral = "Numeral" ;
+  CatOrd = "Ord" ;
+  CatPConj = "PConj" ;
+  CatPN = "PN" ;
+  CatPhr = "Phr" ;
+  CatPol = "Pol" ;
+  CatPredet = "Predet" ;
+  CatPrep = "Prep" ;
+  CatPron = "Pron" ;
+  CatPunct = "Punct" ;
+  CatQCl = "QCl" ;
+  CatQS = "QS" ;
+  CatQuant = "Quant" ;
+  CatRCl = "RCl" ;
+  CatRP = "RP" ;
+  CatRS = "RS" ;
+  CatS = "S" ;
+  CatSC = "SC" ;
+  CatSSlash = "SSlash" ;
+  CatSub100 = "Sub100" ;
+  CatSub1000 = "Sub1000" ;
+  CatSubj = "Subj" ;
+  CatTemp = "Temp" ;
+  CatTense = "Tense" ;
+  CatText = "Text" ;
+  CatUnit = "Unit" ;
+  CatUtt = "Utt" ;
+  CatV = "V" ;
+  CatV2 = "V2" ;
+  CatV2A = "V2A" ;
+  CatV2Q = "V2Q" ;
+  CatV2S = "V2S" ;
+  CatV2V = "V2V" ;
+  CatV3 = "V3" ;
+  CatVA = "VA" ;
+  CatVP = "VP" ;
+  CatVPSlash = "VPSlash" ;
+  CatVQ = "VQ" ;
+  CatVS = "VS" ;
+  CatVV = "VV" ;
+  CatVoc = "Voc" ;
+
+  PTGender = "Gender" ;
+  PTNumber = "Number" ;
+  PTCase   = "Case" ;
+  PTTense  = "Tense" ;
+
+}
diff --git a/examples/grammar-terms/MkTerms.hs b/examples/grammar-terms/MkTerms.hs
new file mode 100644
--- /dev/null
+++ b/examples/grammar-terms/MkTerms.hs
@@ -0,0 +1,13 @@
+main = interact (unlines . map (mkTerm . words) . lines)
+
+mkTerm ws = case ws of
+  "==":cat:"-":expl -> unlines [
+    mkFun "Cat" cat, 
+    mkLin "Cat" "mkN" cat (unwords (takeWhile (/= "==") expl))
+   ]
+
+mkFun pref s = unwords ["fun", pref ++ s, ":", pref, ";"]
+---mkLin pref p s e = unwords ["lin", pref ++ s, "=", p, quoted e, ";"]
+mkLin pref p s e = unwords ["lin", pref ++ s, "=", quoted s, ";"]
+
+quoted s = "\"" ++ s ++ "\""
diff --git a/examples/nlg/Logic.gf b/examples/nlg/Logic.gf
new file mode 100644
--- /dev/null
+++ b/examples/nlg/Logic.gf
@@ -0,0 +1,20 @@
+abstract Logic = {
+
+cat
+  Ind; Prop;
+
+fun
+  john : Ind;
+  mary : Ind;
+  boy   : Ind -> Prop;
+  love  : Ind -> Ind -> Prop;
+  leave : Ind -> Prop;
+  smart : Ind -> Prop;
+  exists : (Ind -> Prop) -> Prop;
+  forall : (Ind -> Prop) -> Prop;
+  and,or : Prop -> Prop -> Prop;
+  impl : Prop -> Prop -> Prop;
+  not : Prop -> Prop;
+  eq : Ind -> Ind -> Prop;
+
+}
diff --git a/examples/nlg/LogicCnc.gf b/examples/nlg/LogicCnc.gf
new file mode 100644
--- /dev/null
+++ b/examples/nlg/LogicCnc.gf
@@ -0,0 +1,23 @@
+--# -path=present
+concrete LogicCnc of Logic = {
+
+lincat
+  Ind = {s : Str};
+  Prop = {s:Str};
+
+lin
+  john = {s="john"};
+  mary = {s="mary"};
+  boy x = {s="boy"++"("++x.s++")"};
+  smart x = {s="smart"++"("++x.s++")"};
+  love x y = {s="love"++"("++x.s++","++y.s++")"};
+  leave x = {s="leave"++"("++x.s++")"};
+  and  x y = {s=x.s++"&&"++y.s};
+  or   x y = {s=x.s++"||"++y.s};
+  impl x y = {s=x.s++"=>"++y.s};
+  forall f = {s="forall"++f.$0++"."++"("++f.s++")"};
+  exists f = {s="exists"++f.$0++"."++"("++f.s++")"};
+  not p = {s="not"++"("++p.s++")"};
+  eq x y = {s=x.s++"="++y.s};
+
+}
diff --git a/examples/nlg/NLG.gf b/examples/nlg/NLG.gf
new file mode 100644
--- /dev/null
+++ b/examples/nlg/NLG.gf
@@ -0,0 +1,115 @@
+abstract NLG = Logic ** {
+
+flags
+  startcat = Utt;
+
+cat
+  N  (Ind -> Prop);
+  A  (Ind -> Prop);
+  CN (Ind -> Prop);
+  Det ((Ind -> Prop) -> (Ind -> Prop) -> Prop);
+  PN Ind;
+  NP ((Ind -> Prop) -> Prop);
+  AP (Ind -> Prop);
+  VP (Ind -> Prop);
+  VPSlash (Ind -> Ind -> Prop);
+  V  (Ind -> Prop);
+  V2 (Ind -> Ind -> Prop);
+  Comp (Ind -> Prop);
+  Pol (Prop -> Prop);
+  Cl Prop;
+  ClSlash (Ind -> Prop);
+  S Prop;
+  Utt;
+
+  Conj (Prop -> Prop -> Prop) ;
+  ListNP ((Prop -> Prop -> Prop) -> (Ind -> Prop) -> Prop) ;
+  ListS  ((Prop -> Prop -> Prop) -> Prop) ;
+
+fun
+  PredVP : ({np} : (Ind -> Prop) -> Prop) ->
+           ({vp} : Ind -> Prop) ->
+           NP np -> VP vp -> Cl (np vp) ;
+
+  UseV : ({v} : Ind -> Prop) ->
+         V v -> VP v ;
+
+  ComplSlash : ({v2} : Ind -> Ind -> Prop) ->
+               ({np} : (Ind -> Prop) -> Prop) ->
+               VPSlash v2 -> NP np -> VP (\i -> np (v2 i)) ;
+
+  SlashV2a : ({v2} : Ind -> Ind -> Prop) ->
+             V2 v2 -> VPSlash v2 ;
+             
+  SlashVP : ({np} : (Ind -> Prop) -> Prop) ->
+            ({v2} : Ind -> Ind -> Prop) ->
+            NP np -> VPSlash v2 -> ClSlash (\x -> np (v2 x));
+            
+  ComplClSlash : ({sl} : Ind -> Prop) ->
+                 ({np} : (Ind -> Prop) -> Prop) ->
+                 ClSlash sl -> NP np -> Cl (np sl);
+
+  UseComp : ({c} : Ind -> Prop) ->
+            Comp c -> VP c ;
+
+  CompAP : ({ap} : Ind -> Prop) ->
+           AP ap -> Comp ap ;
+
+  CompNP : ({np} : (Ind -> Prop) -> Prop) ->
+           NP np -> Comp (\x -> np (\y -> eq x y)) ;
+
+  UsePN : ({i} : Ind) -> PN i -> NP (\f -> f i) ;
+
+  DetCN : ({det} : (Ind -> Prop) -> (Ind -> Prop) -> Prop) ->
+          ({cn} : Ind -> Prop) ->            
+          Det det -> CN cn -> NP (\f -> det cn f);
+
+  AdjCN : ({ap,cn} : Ind -> Prop) ->
+          AP ap -> CN cn -> CN (\x -> and (ap x) (cn x)) ;
+
+  PositA : ({a} : Ind -> Prop) ->
+           A a -> AP a ;
+
+  UseN : ({n} : Ind -> Prop) -> N n -> CN n;
+  
+  BaseNP : ({np1,np2} : (Ind -> Prop) -> Prop) ->
+           NP np1 -> NP np2 -> ListNP (\conj,f -> conj (np1 f) (np2 f)) ;
+  ConsNP : ({np1} : (Ind -> Prop) -> Prop) ->
+           ({lst} : (Prop -> Prop -> Prop) -> (Ind -> Prop) -> Prop) ->
+           NP np1 -> ListNP lst -> ListNP (\conj,f -> conj (np1 f) (lst conj f)) ;
+  ConjNP : ({cnj} : Prop -> Prop -> Prop) ->
+           ({lst} : (Prop -> Prop -> Prop) -> (Ind -> Prop) -> Prop) ->
+           Conj cnj -> ListNP lst -> NP (lst cnj) ;
+
+  BaseS : ({s1,s2} : Prop) ->
+          S s1 -> S s2 -> ListS (\conj -> conj s1 s2) ;
+  ConsS : ({s1} : Prop) ->
+          ({lst} : (Prop -> Prop -> Prop) -> Prop) ->
+          S s1 -> ListS lst -> ListS (\conj -> conj s1 (lst conj)) ;
+  ConjS : ({cnj} : Prop -> Prop -> Prop) ->
+          ({lst} : (Prop -> Prop -> Prop) -> Prop) ->
+          Conj cnj -> ListS lst -> S (lst cnj) ;
+
+  john_PN : PN john;
+  mary_PN : PN mary;
+  boy_N : N boy;
+  somebody_NP  : NP exists;
+  everybody_NP : NP forall;
+  love_V2 : V2 love ;
+  leave_V : V leave ;
+  smart_A : A smart ;
+  a_Det : Det (\d,f -> exists (\x -> and (d x) (f x)));
+  every_Det : Det (\d,f -> forall (\x -> impl (d x) (f x)));
+  some_Det : Det (\d,f -> exists (\x -> and (d x) (f x)));
+  PPos : Pol (\t -> t) ;
+  PNeg : Pol (\t -> not t) ;
+  and_Conj : Conj and ;
+  or_Conj : Conj or ;
+    
+  UseCl : ({cl} : Prop) -> 
+          ({p} : Prop -> Prop) ->
+          Pol p -> Cl cl -> S (p cl);
+
+  UttS : (s : Prop) -> S s -> Utt;
+
+}
diff --git a/examples/nlg/NLGEng.gf b/examples/nlg/NLGEng.gf
new file mode 100644
--- /dev/null
+++ b/examples/nlg/NLGEng.gf
@@ -0,0 +1,69 @@
+--# -path=present
+concrete NLGEng of NLG = LogicCnc ** open (Eng=GrammarEng), ParadigmsEng, ResEng in {
+
+lincat
+  Det = Eng.Det;
+  N  = Eng.N;
+  A  = Eng.A;
+  CN = Eng.CN;
+  PN = Eng.PN;
+  NP = Eng.NP;
+  AP = Eng.AP;
+  VP = Eng.VP;
+  VPSlash = Eng.VPSlash;
+  V2 = Eng.V2;
+  V  = Eng.V;
+  Comp=Eng.Comp;
+  Pol= Eng.Pol;
+  Cl = Eng.Cl;
+  ClSlash = Eng.ClSlash;
+  S  = Eng.S;
+  Utt= Eng.Utt;
+  Conj = Eng.Conj;
+  ListNP = Eng.ListNP;
+  ListS = Eng.ListS;
+
+lin
+  DetCN _ _ = Eng.DetCN;
+  UseN _ = Eng.UseN;
+  UsePN _ = Eng.UsePN;
+  SlashV2a _ = Eng.SlashV2a;
+  ComplSlash _ _ = Eng.ComplSlash;
+  SlashVP _ _ = Eng.SlashVP;
+  ComplClSlash _ _ cl np = lin Cl {
+    s = \\t,a,p,o => cl.s ! t ! a ! p ! o ++ cl.c2 ++ np.s ! NCase Nom
+    } ;
+
+  UseComp _ = Eng.UseComp ;
+  CompAP _ = Eng.CompAP ;
+  CompNP _ = Eng.CompNP ;
+  PredVP _ _ = Eng.PredVP;
+  PositA _ = Eng.PositA;
+  AdjCN _ _ = Eng.AdjCN;
+  UseV _ = Eng.UseV;
+  PPos = Eng.PPos;
+  PNeg = Eng.PNeg;
+  BaseNP _ _ = Eng.BaseNP;
+  ConsNP _ _ = Eng.ConsNP;
+  ConjNP _ _ = Eng.ConjNP;
+  BaseS _ _ = Eng.BaseS;
+  ConsS _ _ = Eng.ConsS;
+  ConjS _ _ = Eng.ConjS;
+  UseCl _ _ p x = Eng.UseCl (Eng.TTAnt Eng.TPres Eng.ASimul) p x;
+  UttS _ s = Eng.UttS s;
+
+  john_PN = mkPN "John";
+  mary_PN = mkPN "Mary";
+  love_V2 = mkV2 (mkV "love");
+  leave_V = mkV "leave" "left" "left";
+  somebody_NP = Eng.somebody_NP;
+  everybody_NP = Eng.everybody_NP;
+  boy_N = mkN "boy";
+  every_Det = Eng.every_Det;
+  some_Det = Eng.someSg_Det;
+  a_Det = Eng.DetQuant Eng.IndefArt Eng.NumSg;
+  smart_A = mkA "smart";
+  and_Conj = Eng.and_Conj;
+  or_Conj = Eng.or_Conj;
+
+}
diff --git a/examples/nqueens/NatAscii.gf b/examples/nqueens/NatAscii.gf
--- a/examples/nqueens/NatAscii.gf
+++ b/examples/nqueens/NatAscii.gf
@@ -7,4 +7,6 @@
 
 lincat NE = {} ;
 
+lin plus x y = x ++ y ;
+
 }
diff --git a/examples/phrasebook/GreetingsRus.gf b/examples/phrasebook/GreetingsRus.gf
--- a/examples/phrasebook/GreetingsRus.gf
+++ b/examples/phrasebook/GreetingsRus.gf
@@ -2,13 +2,10 @@
 
 flags coding = utf8 ;
 
-lincat 
-  Greeting = SS ;
-
 lin 
   GBye = ss "до свидания" ;
   GCheers = ss "ура" ;
-  GDamn = ss "проклинать" ;
+  GDamn = ss "чёрт" ;
   GExcuse, GExcusePol = ss "извините" ;
   GGoodDay = ss "добрый день" ; ----
   GGoodEvening = ss "добрый вечер" ;
@@ -16,17 +13,17 @@
   GGoodNight = ss "спокойной ночи" ;
   GGoodbye = ss "до свидания" ;
   GHello = ss "привет" ;
-  GHelp = ss "помощь" ;
+  GHelp = ss "помогите" ;
   GHowAreYou = ss "Как поживаете" ;
   GLookOut = ss "смотреть" ;
-  GNiceToMeetYou, GNiceToMeetYouPol = ss "приятно встретиться с вами" ;
+  GNiceToMeetYou, GNiceToMeetYouPol = ss "приятно познакомиться" ;
   GPleaseGive, GPleaseGivePol = ss "пожалуйста" ;
   GSeeYouSoon = ss "до скорой встречи" ;
   GSorry, GSorryPol = ss "Мне жаль" ;
   GThanks = ss "спасибо" ;
   GTheCheck = ss "проверить" ;
-  GCongratulations = ss "Поздравляю";
-  GHappyBirthday = ss "С Днем Рождения" ;
-  GGoodLuck = ss "удача" ; 
+  GCongratulations = ss "поздравляю";
+  GHappyBirthday = ss "с днем рождения" ;
+  GGoodLuck = ss "желаю удачи" ; 
 
 }
diff --git a/examples/phrasebook/GreetingsUrd.gf b/examples/phrasebook/GreetingsUrd.gf
new file mode 100644
--- /dev/null
+++ b/examples/phrasebook/GreetingsUrd.gf
@@ -0,0 +1,29 @@
+concrete GreetingsUrd of Greetings = SentencesUrd [mkGreeting] ** open (P=Prelude) in {
+
+-- lincat 
+--  Greeting = {s : Str; lock_Text : {}} ;
+flags coding = utf8 ;
+lin 
+  GBye = P.ss "خدا حافظ" ;
+  GCheers = P.ss "چیرز" ;
+  GDamn = P.ss "اف" ;
+  GExcuse, GExcusePol = P.ss "معاف كیجیے گا" ;
+  GGoodDay = P.ss "دن بخیر" ; ----
+  GGoodEvening = P.ss "شام بخیر" ;
+  GGoodMorning = P.ss "صبح بخیر" ;
+  GGoodNight = P.ss "رات بخیر" ;
+  GGoodbye = P.ss "خدا حافظ" ;
+  GHello = P.ss "اسلام علیكم" ;
+  GHelp = P.ss "مدد" ;
+  GHowAreYou = P.ss "آپ كیسی ہو" ;
+  GLookOut = P.ss "دیكھ كر" ;
+  GNiceToMeetYou, GNiceToMeetYouPol = P.ss "آپ سے مل كر اچھا لگا" ;
+  GPleaseGive, GPleaseGivePol = P.ss "مہربانی كر كے" ;
+  GSeeYouSoon = P.ss "ملتے ہیں" ;
+  GSorry, GSorryPol = P.ss "معاف كیجیے گا" ;
+  GThanks = P.ss "شكریہ" ;
+  GTheCheck = P.ss "بل" ;
+  GCongratulations = P.ss "مبارك ہو";
+  GHappyBirthday = P.ss "سالگرہ مبارك" ;
+  GGoodLuck = P.ss "گڈ لك" ; 
+}
diff --git a/examples/phrasebook/Makefile b/examples/phrasebook/Makefile
--- a/examples/phrasebook/Makefile
+++ b/examples/phrasebook/Makefile
@@ -5,17 +5,17 @@
 demo: compdemo linkdemo
 
 compdemo:
-	$(compile) Bul Cat Dan Dut Eng Fre Ger Ita Nor Pol Ron Spa Swe DisambPhrasebookEng
+	$(compile) Bul Cat Dan Dut Eng Fre Ger Ita Nor Pol Ron Spa Swe Urd DisambPhrasebookEng
 
 linkdemo:
-	$(compile) -link Eng Bul Cat Dan Dut Fin Fre Ger Ita Nor Pol Ron Spa Swe DisambPhrasebookEng 
+	$(compile) -link Eng Bul Cat Dan Dut Fin Fre Ger Ita Nor Pol Ron Spa Swe Urd DisambPhrasebookEng 
 
 #separate, because slow...
 fin:
 	$(compile) Fin
 
 pgfs:
-	$(compile) Bul Cat Dan Dut Eng Fin Fre Ger Ita Nor Pol Ron Rus Spa Swe
+	$(compile) Bul Cat Dan Dut Eng Fin Fre Ger Ita Nor Pol Ron Rus Spa Swe Urd
 
 koe:
 	$(compile) Eng Fre DisambPhrasebookEng
diff --git a/examples/phrasebook/PhrasebookRus.gf b/examples/phrasebook/PhrasebookRus.gf
--- a/examples/phrasebook/PhrasebookRus.gf
+++ b/examples/phrasebook/PhrasebookRus.gf
@@ -6,7 +6,7 @@
     SyntaxRus,
     Prelude in {
 
-lin
-  PGreeting g = lin Text g ;
+--lin
+--  PGreeting g = lin Text g ;
 
 }
diff --git a/examples/phrasebook/PhrasebookUrd.gf b/examples/phrasebook/PhrasebookUrd.gf
new file mode 100644
--- /dev/null
+++ b/examples/phrasebook/PhrasebookUrd.gf
@@ -0,0 +1,9 @@
+--# -path=.:present
+
+concrete PhrasebookUrd of Phrasebook = 
+  GreetingsUrd,
+  WordsUrd ** open 
+    SyntaxUrd,
+    Prelude in {
+
+}
diff --git a/examples/phrasebook/SentencesFin.gf b/examples/phrasebook/SentencesFin.gf
--- a/examples/phrasebook/SentencesFin.gf
+++ b/examples/phrasebook/SentencesFin.gf
@@ -1,6 +1,7 @@
 concrete SentencesFin of Sentences = NumeralFin ** SentencesI - 
   [Is, IsMass, NameNN, ObjMass,
    IFemale, YouFamFemale, YouPolFemale, IMale, YouFamMale, YouPolMale,
+   NPPlace, CNPlace, placeNP, mkCNPlace, mkCNPlacePl,
    GObjectPlease
   ] with 
   (Syntax = SyntaxFin),
@@ -9,6 +10,18 @@
     open SyntaxFin, ExtraFin, (P = ParadigmsFin), (V = VerbFin), Prelude in {
 
   flags optimize = noexpand ;
+
+  oper
+    NPPlace = {name : NP ; at : Adv ; to : Adv ; from : Adv} ;
+    CNPlace = {name : CN ; at : Prep ; to : Prep ; from : Prep ; isPl : Bool} ;
+
+  placeNP : Det -> CNPlace -> NPPlace = \det,kind ->
+    let name : NP = mkNP det kind.name in {
+      name = name ;
+      at = mkAdv kind.at name ;
+      to = mkAdv kind.to name ;
+      from = mkAdv kind.from name
+    } ;
 
   lin 
     Is item prop = mkCl item (V.UseComp (CompPartAP prop)) ; -- tämä pizza on herkullista
diff --git a/examples/phrasebook/SentencesRus.gf b/examples/phrasebook/SentencesRus.gf
--- a/examples/phrasebook/SentencesRus.gf
+++ b/examples/phrasebook/SentencesRus.gf
@@ -3,4 +3,5 @@
  ]  with 
   (Syntax = SyntaxRus),
 --  (Symbolic = SymbolicRus),
-  (Lexicon = LexiconRus) ;
+  (Lexicon = LexiconRus) ** open Prelude, SyntaxRus in {
+}
diff --git a/examples/phrasebook/SentencesUrd.gf b/examples/phrasebook/SentencesUrd.gf
new file mode 100644
--- /dev/null
+++ b/examples/phrasebook/SentencesUrd.gf
@@ -0,0 +1,30 @@
+concrete SentencesUrd of Sentences =  NumeralUrd **  SentencesI - [sing,IFemale,YouFamFemale,YouPolFemale] with 
+  (Syntax = SyntaxUrd),
+  (Symbolic = SymbolicUrd),
+  (Lexicon = LexiconUrd) **
+  open 
+  (P=ParadigmsUrd),
+  ParamX,
+  CommonHindustani in {
+  lin IFemale = mkPerson (P.personalPN myN mjh "" myra myry myrE myry Sg Fem Pers1) ;
+      YouFamFemale = mkPerson (P.personalPN tw tw tw tyra tyry tyrE tyry Sg Fem Pers2_Casual) ;
+      YouPolFemale = mkPerson (P.personalPN ap ap ap apka apky apkE apky Pl Fem Pers2_Respect);
+
+
+flags coding = utf8 ;
+
+oper
+  myN = "میں" ;
+  mjh = "مجھ" ;
+  myra = "میرا" ;
+  myry = "میری" ;
+  myrE = "میرے" ;
+  tw = "تو" ;
+  tyra = "تیرا" ;
+  tyry = "تیری" ;
+  tyrE = "تیرے" ;
+  ap = "آپ" ;
+  apka = ["آپ كا"] ;
+  apky = ["آپ كی"] ;
+  apkE = ["آپ كے"] ;
+  } ;
diff --git a/examples/phrasebook/WordsCat.gf b/examples/phrasebook/WordsCat.gf
--- a/examples/phrasebook/WordsCat.gf
+++ b/examples/phrasebook/WordsCat.gf
@@ -39,7 +39,7 @@
     Expensive = expensive_A ; 
     Fresh = mkA "fresc" ;
     Good = L.good_A ;
-    Suspect = mkA "sospitós" ;
+    Suspect = mkA "sospitós" "sospitosa" "sospitosos" "sospitoses" "sospitosament" ;
     Warm = L.warm_A ;
 
 -- places
@@ -55,7 +55,7 @@
     Church = mkPlace (mkN "església")  ;
     Disco = mkPlace (mkN "discoteca") ;
     Hospital = mkPlace (mkN "hospital")  ;
-    Hotel = mkPlace (mkN "alberg")  ;
+    Hotel = mkPlace (mkN "hotel")  ;
     Museum = mkPlace (mkN "museu")  ;
     Park = mkPlace (mkN "parc") ;
     Parking = mkPlace (mkN "pàrking" masculine) ;
@@ -92,24 +92,24 @@
 
 -- nationalities
 
-    Belgian = mkA "belga" ;
+    Belgian = mkA "belga" "belga" "belgues" "belgues" "a la Belga" ;
     Belgium = mkNP (mkPN "Bèlgica") ;
-	Bulgarian = mkNat "búlgar" "Bulgària" ;
-	Catalan = mkNat "català" "Catalunya" ; -- "catalana" "catalans" "catalanes" "a la catalana" ;
-	Danish = mkNat "danès" "Dinamarca" ; -- mkA "danès" "danesa" "danesos" "daneses" "a la danesa" ;
-	Dutch = mkNat "holandès" "Holanda" ; 
-    English = mkNat "anglès" "Anglaterra" ;
-    Finnish = mkNat "finès" "Finlàndia" ;
+	Bulgarian = mkNat3 "búlgar" "búlgara" "búlgars" "búlgueres" "Bulgària" ;
+	Catalan = mkNat5 "catal" "Catalunya" ;
+	Danish = mkNat4 "dan" "Dinamarca" ; 
+	Dutch = mkNat4 "holand" "Holanda" ; 
+    English = mkNat4 "angl" "Anglaterra" ;
+    Finnish = mkNat4 "fin" "Finlàndia" ;
     Flemish = mkNP (mkPN "flamenc") ;
-    French = mkNat "francès" "França" ;
-    German = mkNat "alemany" "Alemania" ;
-    Italian = mkNat "italià" "Itàlia" ;
-    Norwegian = mkNat "noruec" "Noruega" ; -- mkA "noruec" "noruega" "noruecs" "noruegues" "a la noruega" ;
-    Polish = mkNat "polonès" "Polònia" ; 
-    Romanian = mkNat "romanès" "Romania" ;
-    Russian = mkNat "rus" "Rússia" ;
-    Spanish = mkNat "espanyol" "Espanya" ;
-    Swedish = mkNat "suec" "Suècia" ;
+    French = mkNat4 "franc" "França" ;
+    German = mkNat3 "alemany" "alemenya" "alemanys" "alemanyes" "Alemania" ;
+    Italian = mkNat5 "itali" "Itàlia" ;
+    Norwegian = mkNat3 "noruec" "noruega" "noruecs" "noruegues" "Noruega" ;
+    Polish = mkNat4 "polon" "Polònia" ; 
+    Romanian = mkNat4 "roman" "Romania" ;
+    Russian = mkNat3 "rus" "russa" "russos" "russes" "Rússia" ;
+    Spanish = mkNat3 "espanyol" "espanyola" "espanyols" "espanyoles" "Espanya" ;
+    Swedish = mkNat3 "suec" "sueca" "suecs" "sueques" "Suècia" ;
 
 
 -- means of transportation 
@@ -251,6 +251,18 @@
     mkNat : Str -> Str -> NPNationality = \nat,co -> 
       mkNPNationality (mkNP (mkPN nat)) (mkNP (mkPN co)) (mkA nat) ;
 
+    mkNat2 : A -> Str -> Str -> NPNationality = \adj,nat,co -> 
+      mkNPNationality (mkNP (mkPN nat)) (mkNP (mkPN co)) adj ;
+
+	mkNat3 : (_,_,_,_:Str) -> Str -> NPNationality = \ms,fs,mp,fp,co -> 
+      mkNPNationality (mkNP (mkPN ms)) (mkNP (mkPN co)) (mkA ms fs mp fp ("a la" ++ fs)) ;
+
+	mkNat4 : Str -> Str -> NPNationality = \angl,co ->
+	  mkNat3 (angl+"ès") (angl+"esa") (angl+"esos") (angl+"eses") co ;
+	
+	mkNat5 : Str -> Str -> NPNationality = \catal,co ->
+	  mkNat3 (catal+"à") (catal+"ana") (catal+"ans") (catal+"anes") co ;
+	
     mkDay : Str -> {name : NP ; point : Adv ; habitual : Adv} = \d ->
       let day = mkNP (mkPN d)
       in mkNPDay day (P.mkAdv ("el" ++ d)) (P.mkAdv ("el" ++ d)) ; ---- ?
diff --git a/examples/phrasebook/WordsDut.gf b/examples/phrasebook/WordsDut.gf
--- a/examples/phrasebook/WordsDut.gf
+++ b/examples/phrasebook/WordsDut.gf
@@ -221,10 +221,10 @@
 -- transports
 
     HowFar place = mkQS (mkQCl far_IAdv place.name) ; -- hoe ver is de dierentuin
-    HowFarFrom x y = mkQS (mkQCl far_IAdv (mkNP y.name (SyntaxDut.mkAdv from_Prep x.name))) ;
+    HowFarFrom x y = mkQS (mkQCl far_IAdv (mkNP y.name (SyntaxDut.mkAdv van_Prep x.name))) ;
 -- how far is the center from the hotel ? hoever is het centrum van het hotel
     HowFarFromBy x y t = 
-      mkQS (mkQCl far_IAdv (mkNP (mkNP y.name (SyntaxDut.mkAdv from_Prep x.name)) t)) ;
+      mkQS (mkQCl far_IAdv (mkNP (mkNP y.name (SyntaxDut.mkAdv van_Prep x.name)) t)) ;
 --hoelang duurt het om van het vliegveld naar het hotel te gaan per taxi
     HowFarBy y t = mkQS (mkQCl far_IAdv (mkNP y.name t)) ; --hoe ver is het museum per bus
  
@@ -265,6 +265,7 @@
 
   mkSuperl : A -> Det = \a -> SyntaxDut.mkDet the_Art (SyntaxDut.mkOrd a) ;
 
+  van_Prep = P.mkPrep "van" ;
 
 {- 
     HowFarFrom : how far is the center from the hotel ? hoe ver is het centrum van het hotel
diff --git a/examples/phrasebook/WordsFin.gf b/examples/phrasebook/WordsFin.gf
--- a/examples/phrasebook/WordsFin.gf
+++ b/examples/phrasebook/WordsFin.gf
@@ -60,7 +60,7 @@
     School = mkPlace (mkN "koulu") lla ;
 
     CitRestaurant cit = {
-      name = mkCN cit (mkN "ravintola") ; at = casePrep inessive ; to = casePrep illative; isPl = False
+      name = mkCN cit (mkN "ravintola") ; at = casePrep inessive ; to = casePrep illative; from = casePrep elative ; isPl = False
       } ;
     Parking = mkPlace (mkN "pysäköinti" (mkN "alue")) lla ;
     Supermarket = mkPlace (mkN "supermarket") ssa ;
@@ -198,10 +198,10 @@
 
     HowFar place = mkQS (mkQCl far_IAdv place.name) ;
     HowFarFrom x y = 
-      mkQS (mkQCl far_IAdv (mkCl y.name (SyntaxFin.mkAdv from_Prep x.name))) ;
+      mkQS (mkQCl far_IAdv (mkCl y.name x.from)) ;
     HowFarFromBy x y t = 
       mkQS (mkQCl far_IAdv (mkCl y.name 
-        (mkVP (mkVP (SyntaxFin.mkAdv from_Prep x.name)) t))) ;
+        (mkVP (mkVP x.from) t))) ;
     HowFarBy place t = 
       mkQS (mkQCl far_IAdv (mkCl place.name t)) ;
       -- mkQS (mkQCl (mkIAdv far_IAdv t) y.name) ; 
@@ -242,10 +242,11 @@
        habitual = ParadigmsFin.mkAdv s
       } ;
 
-    mkPlace : N -> Bool -> {name : CN ; at : Prep ; to : Prep; isPl : Bool} = \p,e -> {
+    mkPlace : N -> Bool -> {name : CN ; at : Prep ; to : Prep; from : Prep ; isPl : Bool} = \p,e -> {
       name = mkCN p ;
       at = casePrep (if_then_else Case e adessive inessive) ;  -- True: external
       to = casePrep (if_then_else Case e allative illative) ;
+      from = casePrep (if_then_else Case e ablative elative) ;
       isPl = False   
    } ;
     ssa = False ;
diff --git a/examples/phrasebook/WordsGer.gf b/examples/phrasebook/WordsGer.gf
--- a/examples/phrasebook/WordsGer.gf
+++ b/examples/phrasebook/WordsGer.gf
@@ -208,9 +208,9 @@
 
 
     HowFar place = mkQS (mkQCl far_IAdv place.name) ;
-    HowFarFrom x y = mkQS (mkQCl far_IAdv (mkNP (mkNP y.name (SyntaxGer.mkAdv from_Prep x.name)) (ParadigmsGer.mkAdv "entfernt"))) ;
+    HowFarFrom x y = mkQS (mkQCl far_IAdv (mkNP (mkNP y.name (SyntaxGer.mkAdv von_Prep x.name)) (ParadigmsGer.mkAdv "entfernt"))) ;
     HowFarFromBy x y t = 
-      mkQS (mkQCl far_IAdv (mkCl (mkVP (SyntaxGer.mkAdv zu_Prep (mkNP (mkNP y.name (SyntaxGer.mkAdv from_Prep x.name)) t))))) ;
+      mkQS (mkQCl far_IAdv (mkCl (mkVP (SyntaxGer.mkAdv zu_Prep (mkNP (mkNP y.name (SyntaxGer.mkAdv von_Prep x.name)) t))))) ;
     HowFarBy y t = mkQS (mkQCl far_IAdv (mkCl (mkVP (SyntaxGer.mkAdv zu_Prep (mkNP y.name t))))) ;
  
     WhichTranspPlace trans place = 
diff --git a/examples/phrasebook/WordsPol.gf b/examples/phrasebook/WordsPol.gf
--- a/examples/phrasebook/WordsPol.gf
+++ b/examples/phrasebook/WordsPol.gf
@@ -5,7 +5,6 @@
       ResPol,
       SyntaxPol, 
       (L = LexiconPol), 
-      (P = ParadigmsPol), 
       (Q = QuestionPol),
       (N = NounPol),
       MorphoPol,
@@ -22,41 +21,14 @@
     Beer = mkCN L.beer_N ;
     Bread = mkCN L.bread_N ;
     Cheese = mkCN L.cheese_N ;
-    Chicken = mkCN (P.nPtak "kurczak") ;
-    Coffee = mkCN ({ s = table { 
-	     SF Sg Nom => "kawa";
-	     SF Sg (Acc|Gen) => "kawę";
-	     SF Sg Instr => "kawą";
-	     SF Sg VocP => "kawo"; 
-	     SF Sg _ => "kawie"; 
-	     SF Pl Gen => "kawy"; 
-	     SF Pl Dat => "kawom";
-	     SF Pl Instr => "kawami";
-	     SF Pl Loc => "kawach";
-	     SF Pl _ => "kawy" 
-	     };
-	   g = Fem;
-	   lock_N : {} = <>});
+    Chicken = mkCN kurczak ;
+    Coffee = mkCN kawa;
     Fish = mkCN L.fish_N ;
     Meat = mkCN L.meat_N ;
     Milk = mkCN L.milk_N ;
-    Pizza = mkCN ({ s = table { 
-	     SF Sg Nom => "pizza";
-	     SF Sg (Acc) => "pizzę";
-	     SF Sg Instr => "pizzą";
-	     SF Sg (Dat|Gen) => "pizzy";
-	     SF Sg VocP => "pizzo"; 
-	     SF Sg _ => "pizzie"; 
-	     SF Pl Gen => "pizz"; 
-	     SF Pl Dat => "pizzom";
-	     SF Pl Instr => "pizzami";
-	     SF Pl Loc => "pizzach";
-	     SF Pl _ => "pizze" 
-	     };
-	   g = Fem;
-	   lock_N : {} = <>});
+    Pizza = mkCN pizza;
     Salt = mkCN L.salt_N ;
-    Tea = mkCN (P.nWoda "herbata") ;
+    Tea = mkCN herbata ;
     Water = mkCN L.water_N ;
     Wine = mkCN L.wine_N ;
 
@@ -77,7 +49,7 @@
 -- also the directional preposition varies, but in English we use $to$, as
 -- defined by $mkPlace$.
 
-    Airport = mkPlaceNa (P.nWojsko "lotnisko") ;
+    Airport = mkPlaceNa lotnisko ;
     AmusementPark = mkPlaceDo ["wesołe miasteczko"] ["wesołego miasteczka"] ["wesołym miasteczku"] Neut;
     Bank = mkPlaceDo "bank" "banku" "banku" (Masc Inanimate);
     Bar = mkPlaceDo "bar" "baru" "barze" (Masc Inanimate);
@@ -111,7 +83,7 @@
 -- Currencies; $crown$ is ambiguous between Danish and Swedish crowns.
 
     DanishCrown = mkCN (mkCurrency "korona duńska" "korony duńskie" "koron duńskich" Fem);
-    Dollar = mkCN (P.nSer "dolar") ;
+    Dollar = mkCN dolar ;
     Euro = mkCN (mkCurrency "euro" "euro" "euro" Neut);
     Lei = mkCN (mkCurrency "leja" "leje" "lei" Fem);
     Leva = mkCN (mkCurrency "lew" "lewy" "lewów" (Masc Animate));
@@ -124,23 +96,23 @@
 -- Nationalities
 --  język, po języku, obywatelstwo, kraj, obywatelem, obywatelami, obywatelką
     Belgian = {prop=mkA (mkCompAdj "belgijski"); citizenMSg="Belgiem"; citizenMPl="Belgami"; citizenF="Belgijką"};
-    Belgium = mkNP (P.nLilia "Belgia") ;
-    Bulgarian = mkNat "bułgarski" ["po bułgarsku"] "bułgarski" (P.nLilia "Bułgaria") "Bułgarem" "Bułgarami" "Bułgarką";
-    Catalan = mkNat "kataloński" ["po katalońsku"] "kataloński" (P.nLilia "Katalonia") "Katalończykiem" "Katalończykami" "Katalonką";
-    Danish = mkNat "duński" ["po duńsku"] "duński" (P.nLilia "Dania") "Duńczykiem" "Duńczykami" "Dunką";
-    Dutch =  mkNat "holenderski" ["po holendersku"] "holenderski" (P.nLilia "Holandia") "Holendrem" "Holendrami" "Holenderką";
-    English = mkNat "angielski" ["po angielsku"] "angielski" (P.nLilia "Anglia") "Anglikiem" "Anglikami" "Angielką";
-    Finnish = mkNat "fiński" ["po fińsku"] "finladzki" (P.nLilia "Finlandia") "Finem" "Finami" "Finką";
+    Belgium = mkNP belgia ;
+    Bulgarian = mkNat "bułgarski" ["po bułgarsku"] "bułgarski" bulgaria "Bułgarem" "Bułgarami" "Bułgarką";
+    Catalan = mkNat "kataloński" ["po katalońsku"] "kataloński" katalonia "Katalończykiem" "Katalończykami" "Katalonką";
+    Danish = mkNat "duński" ["po duńsku"] "duński" katalonia "Duńczykiem" "Duńczykami" "Dunką";
+    Dutch =  mkNat "holenderski" ["po holendersku"] "holenderski" holandia "Holendrem" "Holendrami" "Holenderką";
+    English = mkNat "angielski" ["po angielsku"] "angielski" anglia "Anglikiem" "Anglikami" "Angielką";
+    Finnish = mkNat "fiński" ["po fińsku"] "finladzki" finlandia "Finem" "Finami" "Finką";
     Flemish = mkA (mkCompAdj "flamandzki" ["po flamandzku"]);
-    French = mkNat "francuski" ["po francusku"] "francuski" (P.nLilia "Francja") "Framcuzem" "Francuzami" "Francuzką";
-    German = mkNat "niemiecki" ["po niemiecku"] "niemiecki" (mkCountry "Niemcy" "Niemczech" Plur) "Niemcem" "Niemcami" "Niemką";
-    Italian = mkNat "włoski" ["po włosku"] "włoski" (mkCountry "Włochy" "Włoszech" Plur)"Włochem" "Włochami" "Włoszką";
-    Norwegian = mkNat "norweski" ["po norwesku"] "norweski" (P.nLilia "Norwegia") "Norwegiem" "Norwegami" "Norweszką";
-    Polish = mkNat "polski" ["po polsku"] "polski" (mkCountry "Polska" "Polsce" Fem) "Polakiem" "Polakami" "Polką";
-    Romanian = mkNat "rumuński" ["po rumuńsku"] "rumuński" (P.nLilia "Rumunia") "Rumunem" "Rumunami" "Rumunką";
-    Russian = mkNat "rosyjski" ["po rosyjsku"] "rosyjski" (P.nLilia "Rosja") "Rosjaninem" "Rosjanami"  "Rosjanką";
-    Spanish = mkNat "hiszpański" ["po hiszpańsku"] "hiszpański" (P.nLilia "Hiszpania") "Hiszpanem" "Hiszpanami"  "Hiszpanką";
-    Swedish = mkNat "szwedzki" ["po szwedzku"] "szwedzki" (P.nLilia "Szwecja") "Szwedem" "Szwedami" "Szwedką";
+    French = mkNat "francuski" ["po francusku"] "francuski" francja "Framcuzem" "Francuzami" "Francuzką";
+    German = mkNat "niemiecki" ["po niemiecku"] "niemiecki" niemcy "Niemcem" "Niemcami" "Niemką";
+    Italian = mkNat "włoski" ["po włosku"] "włoski" wlochy "Włochem" "Włochami" "Włoszką";
+    Norwegian = mkNat "norweski" ["po norwesku"] "norweski" norwegia "Norwegiem" "Norwegami" "Norweszką";
+    Polish = mkNat "polski" ["po polsku"] "polski" polska "Polakiem" "Polakami" "Polką";
+    Romanian = mkNat "rumuński" ["po rumuńsku"] "rumuński" rumunia "Rumunem" "Rumunami" "Rumunką";
+    Russian = mkNat "rosyjski" ["po rosyjsku"] "rosyjski" rosja "Rosjaninem" "Rosjanami"  "Rosjanką";
+    Spanish = mkNat "hiszpański" ["po hiszpańsku"] "hiszpański" hiszpania "Hiszpanem" "Hiszpanami"  "Hiszpanką";
+    Swedish = mkNat "szwedzki" ["po szwedzku"] "szwedzki" szwecja "Szwedem" "Szwedami" "Szwedką";
 
 -- Means of transportation 
 
@@ -161,7 +133,7 @@
     AHasAge p num = mkCl p.name have_V2 (mkNP (mkDet num) (mkCN L.year_N)) ;
     AHasChildren p num = mkCl p.name have_V2 (mkNP num L.child_N) ; 
     AHasRoom p num = mkCl p.name have_V2 
-      (mkNP (mkNP a_Det (P.nPokoj "pokój")) (SyntaxPol.mkAdv for_Prep (mkNP num (L.person_N)))) ;
+      (mkNP (mkNP a_Det (mkN (mkNTable0950 "pokój") (Masc Inanimate))) (SyntaxPol.mkAdv for_Prep (mkNP num (L.person_N)))) ;
     AHasTable p num = mkCl p.name have_V2 
       (mkNP (mkNP a_Det (L.table_N)) (SyntaxPol.mkAdv for_Prep (mkNP num (L.person_N)))) ;
 
@@ -269,6 +241,31 @@
 
 -- auxiliaries
 
+  oper kurczak = mkN (mkNTable0173 "kurczak") (Masc Animate) ;
+  oper kawa = mkN (mkNTable0021 "kawa") (Fem) ;
+  oper pizza = mkN (mkNTable0175 "pizza") (Fem) ;
+  oper herbata = mkN (mkNTable0026 "herbata") (Fem) ;
+  oper lotnisko = mkN (mkNTable0265 "lotnisko") (Neut) ;
+  oper lilja = mkN (mkNTable0060 "lilia") (Fem) ;
+  oper niemcy = mkN (mkNTable0387 "Niemcy") (Plur) ;
+  oper wlochy = mkN (mkNTable0482 "Włochy") (Plur) ;
+  oper belgia = mkN (mkNTable0005 "Belgia") (Fem) ;
+  oper bulgaria = mkN (mkNTable0005 "Bułgaria") (Fem) ;
+  oper katalonia = mkN (mkNTable0005 "Katalonia") (Fem) ;
+  oper dania = mkN (mkNTable0055 "Dania") (Fem) ;
+  oper anglia = mkN (mkNTable0005 "Anglia") (Fem) ;
+  oper holandia = mkN (mkNTable0005 "Holandia") (Fem) ;
+  oper finlandia = mkN (mkNTable0005 "Finlandia") (Fem) ;
+  oper francja = mkN (mkNTable0005 "Francja") (Fem) ;
+  oper norwegia = mkN (mkNTable0005 "Norwegia") (Fem) ;
+  oper polska = mkN (mkNTable0041 "Polska") (Fem) ;
+  oper rumunia = mkN (mkNTable0032 "Rumunia") (Fem) ;
+  oper rosja = mkN (mkNTable0005 "Rosja") (Fem) ;
+  oper hiszpania = mkN (mkNTable0032 "Hiszpania") (Fem) ;
+  oper szwecja = mkN (mkNTable0005 "Szwecja") (Fem) ;
+  oper pokoj = mkN (mkNTable0526 "pokój") (Masc Inanimate) ;
+  oper dolar = mkN (mkNTable0064 "dolar") (Masc Animate) ;
+
   oper
   
   mkA : Adj -> A = \adj -> adj ** { lock_A = <> };
@@ -319,12 +316,6 @@
     };
   };
   
-  mkCountry : Str -> Str -> Gender -> N = \nom,loc,g -> {
-    s = table {SF Sg Nom => nom; SF Sg Loc => loc; _ => ["not implemented"]};
-    g = g;
-    lock_N=<>
-  };
-
   mkPer : Str -> Str -> Str -> Gender -> N = \nom,gen,acc,g -> {
     s = table {SF Sg Nom => nom; SF Sg Gen => gen; SF Sg Acc => acc; _ => ["not implemented"]};
     g = g;
diff --git a/examples/phrasebook/WordsRus.gf b/examples/phrasebook/WordsRus.gf
--- a/examples/phrasebook/WordsRus.gf
+++ b/examples/phrasebook/WordsRus.gf
@@ -55,9 +55,9 @@
     Hotel = mkPlace (P.mkN "отель") in_Prep ; 
     Museum = mkPlace (P.mkN "музей") in_Prep ; 
     Park = mkPlace (P.mkN "парк") in_Prep ; 
-    Parking = mkPlace (P.mkN "автостоянки") on_Prep ; 
+    Parking = mkPlace (P.mkN "автостоянка") on_Prep ; 
     Pharmacy = mkPlace (P.mkN "аптека") in_Prep ;
-    PostOffice = mkPlace (P.mkN "почтовое") in_Prep ;
+    PostOffice = mkPlace (P.mkN "почта") on_Prep ;
     Pub = mkPlace (P.mkN "паб") in_Prep ;
     Restaurant = mkPlace (P.mkN "ресторан") in_Prep ; 
     Shop = mkPlace (P.mkN "магазин") in_Prep ;  
@@ -76,38 +76,37 @@
 
 -- currencies
 
-    DanishCrown = mkCN (P.mkA "датско") (P.mkN "венец") ;
+    DanishCrown = mkCN (P.mkA "датский") (P.mkN "крона") ;
     Dollar = mkCN (P.mkN "доллар") ;
     Euro = mkCN (P.mkN "евро") ;
     Lei = mkCN (P.mkN "лей") ;
-    Leva = mkCN (P.mkN "левов") ;
-    NorwegianCrown = mkCN (P.mkA "норвежец") (P.mkN "венец") ;  
+    Leva = mkCN (P.mkN "лев") ;
+    NorwegianCrown = mkCN (P.mkA "норвежский") (P.mkN "крона") ;  
     Pound = mkCN (P.mkN "фунт");
     Rouble = mkCN (P.mkN "рубль") ;
-    SwedishCrown = mkCN (P.mkA "шведский") (P.mkN "венец") ;
+    SwedishCrown = mkCN (P.mkA "шведский") (P.mkN "крона") ;
     Zloty = mkCN (P.mkN "злотый") ;
 
 
 -- Nationalities
 
-    Belgian = P.mkA "Belgisch" ;
-    Belgium = mkNP (P.mkPN "België") ;
-    Bulgarian = mkNat "болгарском" "Болгарии" ;
-    Catalan = mkNat "каталонский" "Каталонии" ;
-    Danish = mkNat "датском" "Дании" ;
-    Dutch = mkNat "голландский" "Нидерландов" ;
-    English = mkNat "английский" "Англии" ;
-    Finnish = mkNat "финском" "Финляндии" ;
-    Flemish = mkNP (P.mkPN "Vlaams") ;
-    French = mkNat "французском" "Франции" ; 
-    German = mkNat "немецкого" "Германии" ;
-    Italian = mkNat "итальянский" "Италии" ;
-    Norwegian = mkNat "норвежец" "Норвегии" ;
-    Polish = mkNat "польский" "Польши" ;
-    Romanian = mkNat "румынском" "Румынии" ;
-    Russian = mkNat "русский." "России" ;
-    Spanish = mkNat "испанском" "Испании" ;
-    Swedish = mkNat "шведский" "Швеции" ;
+--    Belgian = mkNat "бельгийский" (P.mkN "Бельгия" "Бельгии" "Бельгию" "Бельгию" "Бельгией" "Бельгии" "Бельгии" "Бельгии" "Бельгий" "Бельгиям" "Бельгии" "Бельгиями" "Бельгиях" P.feminine P.animate) ;
+    Bulgarian = mkNat "болгарский" (P.mkN "Болгария" "Болгарии" "Болгарию" "Болгарию" "Болгарией" "Болгарии" "Болгарии" "Болгарии" "Болгарий" "Болгариям" "Болгарии" "Болгариями" "Болгариях" P.feminine P.animate) ;
+    Catalan = mkNat "каталонский" (P.mkN "Каталония" "Каталонии" "Каталонию" "Каталонию" "Каталонией" "Каталонии" "Каталонии" "Каталонии" "Каталоний" "Каталониям" "Каталонии" "Каталониями" "Каталониях" P.feminine P.animate) ;
+    Danish = mkNat "датский" (P.mkN "Дания" "Дании" "Данию" "Данию" "Данией" "Дании" "Дании" "Дании" "Даний" "Даниям" "Дании" "Даниями" "Даниях" P.feminine P.animate) ;
+    Dutch = mkNat "нидерландский" (P.mkN "Нидерланды" P.animate) ;
+    English = mkNat "английский" (P.mkN "Англия" "Англии" "Англию" "Англию" "Англией" "Англии" "Англии" "Англии" "Англий" "Англиям" "Англии" "Англиями" "Англиях" P.feminine P.animate) ;
+    Finnish = mkNat "финский" (P.mkN "Финляндия" "Финляндии" "Финляндию" "Финляндию" "Финляндией" "Финляндии" "Финляндии" "Финляндии" "Финляндий" "Финляндиям" "Финляндии" "Финляндиями" "Финляндиях" P.feminine P.animate) ;
+--    Flemish = mkNat "фландрийский" (P.mkN "Фландрия" "Фландрии" "Фландрию" "Фландрию" "Фландрией" "Фландрии" "Фландрии" "Фландрии" "Фландрий" "Фландриям" "Фландрии" "Фландриями" "Фландриях" P.feminine P.animate) ;
+    French = mkNat "французский" (P.mkN "Франция" "Франции" "Францию" "Францию" "Францией" "Франции" "Франции" "Франции" "Франций" "Франциям" "Франции" "Франциями" "Франциях" P.feminine P.animate) ;
+    German = mkNat "немецкий" (P.mkN "Германия" "Германии" "Германию" "Германию" "Германией" "Германии" "Германии" "Германии" "Германий" "Германиям" "Германии" "Германиями" "Германиях" P.feminine P.animate) ;
+    Italian = mkNat "итальянский" (P.mkN "Италия" "Италии" "Италию" "Италию" "Италией" "Италии" "Италии" "Италии" "Италий" "Италиям" "Италии" "Италиями" "Италиях" P.feminine P.animate) ;
+    Norwegian = mkNat "норвежский" (P.mkN "Норвегия" "Норвегии" "Норвегию" "Норвегию" "Норвегией" "Норвегии" "Норвегии" "Норвегии" "Норвегий" "Норвегиям" "Норвегии" "Норвегиями" "Норвегиях" P.feminine P.animate) ;
+    Polish = mkNat "польский" (P.mkN "Польша" "Польши" "Польшу" "Польшу" "Польшей" "Польше" "Польше" "Польши" "Польш" "Польшам" "Польши" "Польшами" "Польшах" P.feminine P.animate) ;
+    Romanian = mkNat "румынский" (P.mkN "Румыния" "Румынии" "Румынию" "Румынию" "Румынией" "Румынии" "Румынии" "Румынии" "Румыний" "Румыниям" "Румынии" "Румыниями" "Румыниях" P.feminine P.animate) ;
+    Russian = mkNat "русский" (P.mkN "Россия" "России" "Россию" "Россию" "Россией" "России" "России" "России" "Россий" "Россиям" "России" "Россиями" "Россиях" P.feminine P.animate) ;
+    Spanish = mkNat "испанский" (P.mkN "Испания" "Испании" "Испанию" "Испанию" "Испанией" "Испании" "Испании" "Испании" "Испаний" "Испаниям" "Испании" "Испаниями" "Испаниях" P.feminine P.animate) ;
+    Swedish = mkNat "шведский" (P.mkN "Швеция" "Швеции" "Швецию" "Швецию" "Швецией" "Швеции" "Швеции" "Швеции" "Швеций" "Швециям" "Швеции" "Швециями" "Швециях" P.feminine P.animate) ;
 
 
 -- Means of transportation
@@ -138,7 +137,7 @@
       (mkNP (mkNP a_Det (P.mkN "стол")) 
         (SyntaxRus.mkAdv for_Prep (mkNP num (P.mkN "человек")))) ;
     AHungry p = mkCl p.name (P.mkAdv "голоден") ;    
-    AIll p = mkCl p.name (P.mkA "олен") ; 
+    AIll p = mkCl p.name (P.mkA "болен") ; 
     AKnow p = mkCl p.name (P.regV P.imperfective P.first "зна" "ю" "знал" "знай" "знать" ) ; 
     ALike p item = mkCl p.name (P.dirV2 (P.regV P.imperfective P.second "нрав" "лю" "нравил" "нравь" "нравить" )) item ; 
     ALive p co = mkCl p.name (mkVP (mkVP (P.regV P.imperfective P.firstE "жив" "у" "жил" "живи" "жить")) (SyntaxRus.mkAdv in_Prep co)) ; 
@@ -150,7 +149,7 @@
                "на" P.prepositional) lang ; 
     AThirsty p = mkCl p.name (P.mkA "жажду") ; 
     ATired p = mkCl p.name (P.mkA "устал") ; 
-    AUnderstand p = mkCl p.name (P.regV P.imperfective P.first "понима" "ю" "понимал" "понимай" "понимать"); ; 
+    AUnderstand p = mkCl p.name (P.regV P.imperfective P.first "понима" "ю" "понимал" "понимай" "понимать") ;
     AWant p obj = mkCl p.name want_VV (mkVP have_V2 obj) ; 
     AWantGo p place = mkCl p.name want_VV (mkVP (mkVP L.go_V) place.to) ; 
 
@@ -192,13 +191,13 @@
  
 -- week days
 
-    Monday = mkDay "понедельник" ;
-    Tuesday = mkDay "вторник" ;
-    Wednesday = mkDay "среда" ;
-    Thursday = mkDay "четверг" ;
-    Friday = mkDay "пятница" ;
-    Saturday = mkDay "суббота" ;
-    Sunday = mkDay "воскресенье" ;
+    Monday = mkDay "понедельник" P.masculine ;
+    Tuesday = mkDay "вторник" P.masculine ;
+    Wednesday = mkDay "среда" P.feminine ;
+    Thursday = mkDay "четверг" P.masculine ;
+    Friday = mkDay "пятница" P.feminine ;
+    Saturday = mkDay "суббота" P.feminine ;
+    Sunday = mkDay "воскресенье" P.neuter ;
 
   Tomorrow = P.mkAdv "завтра" ;
 
@@ -230,20 +229,23 @@
 
 
   oper
-    mkNat : Str -> Str -> NPNationality = \nat,co -> 
-      mkNPNationality (mkNP (P.mkPN nat)) (mkNP (P.mkPN co)) (P.mkA nat) ;
+    mkNat : Str -> N -> NPNationality = \la,co -> 
+      mkNPNationality (mkNP (P.mkPN la P.masculine P.animate)) (mkNP co) (P.mkA la) ;
 
-    mkDay : Str -> {name : NP ; point : Adv ; habitual : Adv} = \d -> 
-      mkNPDay (mkNP (P.mkPN d)) (mkAdv (P.mkPrep []) (mkNP (P.mkPN d))) 
+    mkDay : Str -> P.Gender -> {name : NP ; point : Adv ; habitual : Adv} = \d,g -> 
+      mkNPDay (mkNP (P.mkPN d g P.inanimate)) (mkAdv (P.mkPrep [] P.nominative) (mkNP (P.mkPN d g P.inanimate))) 
                                 ---- (mkAdv on_Prep (mkNP (P.mkPN d))) 
-        (mkAdv on_Prep (mkNP a_Quant plNum (mkCN (P.mkN d (d + "en") P.utrum)))) ;
+        (mkAdv on_Prep (mkNP a_Quant plNum (mkCN (P.mkN d)))) ;
 
-    mkPlace : N -> Str -> {name : CN ; at : Prep ; to : Prep} = \p,i -> 
-      mkCNPlace (mkCN p) (P.mkPrep i) to_Prep ;
+--    mkPlace : N -> Str -> {name : CN ; at : Prep ; to : Prep} = \p,i -> 
+--      mkCNPlace (mkCN p) (P.mkPrep i P.prepositional) to_Prep ;
+    mkPlace : N -> Prep -> {name : CN ; at : Prep ; to : Prep ; isPl : Bool} = \p,i -> 
+      mkCNPlace (mkCN p) i to_Prep;
 
---    open_A = P.mkA ? ;  seem to use a verb
---    closed_A = P.mkA ? ;
 
+   open_A = P.mkA "открыт" ;
+   closed_A = P.mkA "закрыт" ;
+
    xOf : GNumber -> N -> NPPerson -> NPPerson = \n,x,p -> 
       relativePerson n (mkCN x) (\a,b,c -> mkNP (mkNP the_Quant a c) (SyntaxRus.mkAdv possess_Prep b)) p ;
 
@@ -253,7 +255,7 @@
       } ;
 
   far_IAdv = ss "как далеко" ** {lock_IAdv = <>} ;
-  long_IAdv = ss "Как долго" ** {lock_IAdv = <>};
+  long_IAdv = ss "как долго" ** {lock_IAdv = <>};
 
   mkSuperl : A -> Det = \a -> SyntaxRus.mkDet the_Art (SyntaxRus.mkOrd a) ;
 
diff --git a/examples/phrasebook/WordsSpa.gf b/examples/phrasebook/WordsSpa.gf
--- a/examples/phrasebook/WordsSpa.gf
+++ b/examples/phrasebook/WordsSpa.gf
@@ -22,7 +22,7 @@
     Bread = mkCN L.bread_N ;
     Cheese = mkCN (mkN "queso") ;
     Chicken = mkCN (mkN "pollo") ;
-    Coffee = mkCN (mkN "café") ;
+    Coffee = mkCN (mkN "café" "cafés" masculine) ;
     Fish = mkCN L.fish_N ;
     Meat = mkCN (mkN "carne" feminine) ;
     Milk = mkCN L.milk_N ;
@@ -90,24 +90,24 @@
 
 -- nationalities
 
-    Belgian = mkA "belga" ;
+    Belgian = belgian_A ;
     Belgium = mkNP (mkPN "Bélgica") ;
-    Bulgarian = mkNat "bulgaro" "Bulgaria" ;
-    Catalan = mkNat "catalán" "Cataluña" ;
-    Danish = mkNat "danés" "Dinamarca" ;
-    Dutch = mkNat "neerlandés" "Holanda" ;
-    English = mkNat "inglés" "Inglaterra" ;
-    Finnish = mkNat "finlandés" "Finlandia" ;
+    Bulgarian = mkNat (mkA "bulgaro") "bulgaro" "Bulgaria" ;
+    Catalan = mkNat catalan_A "catalán" "Cataluña" ;
+    Danish = mkNat danish_A "danés" "Dinamarca" ;
+    Dutch = mkNat dutch_A "neerlandés" "Holanda" ;
+    English = mkNat english_A "inglés" "Inglaterra" ;
+    Finnish = mkNat finnish_A "finés" "Finlandia" ;
     Flemish = mkNP (mkPN "flamenco") ;
-    French = mkNat "francés" "Francia" ;
-    German = mkNat "alemán" "Alemania" ;
-    Italian = mkNat "italiano" "Italia" ;
-    Norwegian = mkNat "noruego" "Noruega" ;
-    Polish = mkNat "polaco" "Polonia" ;
-    Romanian = mkNat "rumano" "Rumania" ;
-    Russian = mkNat "ruso" "Rusia" ;
-    Spanish = mkNat "español" "España" ;
-    Swedish = mkNat "sueco" "Suecia" ;
+    French = mkNat french_A "francés" "Francia" ;
+    German = mkNat german_A "alemán" "Alemania" ;
+    Italian = mkNat (mkA "italiano") "italiano" "Italia" ;
+    Norwegian = mkNat (mkA "noruego") "noruego" "Noruega" ;
+    Polish = mkNat (mkA "polaco") "polaco" "Polonia" ;
+    Romanian = mkNat (mkA "rumano") "rumano" "Rumania" ;
+    Russian = mkNat (mkA "ruso") "ruso" "Rusia" ;
+    Spanish = mkNat spanish_A "español" "España" ;
+    Swedish = mkNat (mkA "sueco") "sueco" "Suecia" ;
 
 -- means of transportation 
 
@@ -115,7 +115,7 @@
     Bus = mkTransport (mkN "autobús" "autobuses" masculine) ;
     Car = mkTransport L.car_N | mkTransport (mkN "coche") ; 
     Ferry = mkTransport (mkN "ferry") | mkTransport (mkN "transbordador") ;
-    Plane = mkTransport (mkN "avión") ;
+    Plane = mkTransport (mkN "avión" "aviones" feminine) ;
     Subway = mkTransport (mkN "metro") ; 
     Taxi = mkTransport (mkN "taxi" masculine) ; 
     Train = mkTransport (mkN "tren") ;
@@ -251,7 +251,7 @@
     TheCheapest = mkSuperl cheap_A False ;
     TheMostExpensive = mkSuperl expensive_A False ;
     TheMostPopular =
-      let popular = mkA "popular" "popular" "populars" "populars" "popularment"
+      let popular = mkA "popular" "popular" "populares" "populares" "popularmente"
       in  mkSuperl popular False ;
     TheWorst = mkSuperl L.bad_A True ;
 
@@ -261,8 +261,8 @@
 -- auxiliaries
 
   oper
-    mkNat : Str -> Str -> NPNationality = \nat,co -> 
-      mkNPNationality (mkNP (mkPN nat)) (mkNP (mkPN co)) (mkA nat) ;
+    mkNat : A -> Str -> Str -> NPNationality = \nat,lang,co -> 
+      mkNPNationality (mkNP (mkPN lang)) (mkNP (mkPN co)) nat ;
 
 
     -- not the most elegant solution, but it works
@@ -297,4 +297,17 @@
     open_A = mkA "abierto" ;
     closed_A = mkA "cerrado" ;
 
+    -- The nationalities
+    -- There is no constructor in resource grammar that handles the accent correctly in "francés - francesa - franceses" etc.
+    -- The fifth form (adverb) is of course not needed, but the constructor wants 5 forms
+    belgian_A = mkA "belga" "belga" "belgas" "belgas" "belgamente" ;
+    catalan_A = mkA "catalán" "catalana" "catalanes" "catalanas" "catalanamente" ;
+    danish_A  = mkA "danés" "danesa" "daneses" "danesas" "danesamente" ;
+    dutch_A   = mkA "neerlandés" "neerlandesa" "neerlandeses" "neerlandesas" "neerlandesamente" ;
+    english_A = mkA "inglés" "inglesa" "ingleses" "inglesas" "inglesamente" ;
+    finnish_A = mkA "finlandés" "finlandesa" "finlandeses" "finlandesas" "finlandesamente" ;
+    french_A  = mkA "francés" "francesa" "franceses" "francesas" "francesamente" ;
+    german_A  = mkA "alemán" "alemana" "alemanes" "alemanas" "alemanamente" ;
+    spanish_A = mkA "español" "española" "españoles" "españolas" "españolamente" ;
+    
 }
diff --git a/examples/phrasebook/WordsUrd.gf b/examples/phrasebook/WordsUrd.gf
new file mode 100644
--- /dev/null
+++ b/examples/phrasebook/WordsUrd.gf
@@ -0,0 +1,273 @@
+--2 Implementations of Words, with English as example
+
+concrete WordsUrd of Words = SentencesUrd ** 
+    open 
+      SyntaxUrd,
+      CommonHindustani,
+      ParadigmsUrd, 
+      (L = LexiconUrd), 
+      (P = ParadigmsUrd), 
+--      IrregUrd, 
+      ExtraUrd, 
+      Prelude in {
+flags coding = utf8 ;
+  lin
+
+-- Kinds; many of them are in the resource lexicon, others can be built by $mkN$.
+
+    Apple = mkCN L.apple_N ;
+    Beer = mkCN L.beer_N ;
+    Bread = mkCN L.bread_N ;
+    Cheese = mkCN (mkN "پنیر" Fem) ;
+    Chicken = mkCN (mkN "مرغی") ;
+    Coffee = mkCN (mkN "كافی") ;
+    Fish = mkCN L.fish_N ;
+    Meat = mkCN (mkN "گوشت") ;
+    Milk = mkCN L.milk_N ;
+    Pizza = mkCN (mkN "پیزہ") ;
+    Salt = mkCN L.salt_N ;
+    Tea = mkCN (mkN "چاے" Fem) ;
+    Water = mkCN L.water_N;
+    Wine = mkCN L.wine_N ;
+
+-- Properties; many of them are in the resource lexicon, others can be built by $mkA$.
+
+    Bad = L.bad_A ;
+    Boring = mkA "فضول" ;
+    Cheap = mkA "سستا" ;
+    Cold = L.cold_A ;
+    Delicious = mkA "مزیدار" ;
+    Expensive = mkA "مہنگا" ;
+    Fresh = mkA "تازہ" ;
+    Good = L.good_A ;
+    Suspect = mkA "" ;
+    Warm = L.warm_A ;
+
+-- Places require different prepositions to express location; in some languages 
+-- also the directional preposition varies, but in English we use $to$, as
+-- defined by $mkPlace$.
+
+    Airport = mkPlace "ہوای اڈہ" "پر" ;
+    AmusementPark = mkCompoundPlace "ایمیوزیم" "پارك" "میں" ;
+    Bank = mkPlace "بینك" "میں" ;
+    Bar = mkPlace "بار" "میں" ;
+    Cafeteria = mkPlace "كنتین" "میں" ;
+    Center = mkPlace "سنٹر" "پر" ;
+    Cinema = mkPlace "سینما" "میں" ;
+    Church = mkPlace "چرچ" "میں" ;
+    Disco = mkPlace "ڈسكو" "میں" ;
+    Hospital = mkPlace "ہسپتال" "میں" ;
+    Hotel = mkPlace "ہوٹل" "میں" ;
+    Museum = mkPlace "میوزیم" "پر" ;
+    Park = mkPlace "پارك" "میں" ;
+    Parking = mkCompoundPlace "كار" "پارك" "میں" ; 
+    Pharmacy = mkPlace "فارمیسی" "پر" ;
+    PostOffice = mkCompoundPlace "ڈاك" "خانہ" "پر" ;
+    Pub = mkPlace "پب" "میں" ;
+    Restaurant = mkPlace "ہوٹل" "میں" ;
+    School = mkPlace "سكول" "میں" ;
+    Shop = mkPlaceFem "دوكان" "میں" Fem;
+    Station = mkPlace "سٹیشن" "پر" ;
+    Supermarket = mkPlace "سپر ماركیٹ" "میں" ; 
+    Theatre = mkPlace "تھیٹر" "پر" ;
+    Toilet = mkPlace "غسل خانہ" "میں" ;
+    University = mkPlaceFem "یونیورسٹی" "میں" Fem;
+    Zoo = mkPlace "چڑیا گھر" "میں" ;
+   
+    CitRestaurant cit = mkCNPlace (mkCN cit (mkN "ہوٹل")) in_Prep to_Prep ;
+
+
+-- Currencies; $crown$ is ambiguous between Danish and Swedish crowns.
+
+    DanishCrown = mkCN (mkA "ڈینش") (mkN "كراون") | mkCN (mkN "كراون") ;
+    Dollar = mkCN (mkN "ڈالر") ;
+    Euro = mkCN (mkN "یورو") ; -- to prevent euroes
+    Lei = mkCN (mkN "لی") ;
+    Leva = mkCN (mkN "لیوا") ;
+    NorwegianCrown = mkCN (mkA "نارویجن") (mkN "كراون") | mkCN (mkN "كراون") ;
+    Pound = mkCN (mkN "پاونڈ") ;
+    Rouble = mkCN (mkN "روبل") ;
+    SwedishCrown = mkCN (mkA "سویڈش") (mkN "كراون") | mkCN (mkN "كراون") ;
+    Zloty = mkCN (mkN "زلوٹی" Fem) ;
+
+-- Nationalities
+
+    Belgian = mkA "بلجیم" ;
+    Belgium = mkNP (mkPN "بلجیم") ;
+    Bulgarian = mkNat "بلغارین" "بلغاریہ" ;
+    Catalan = mkNPNationality (mkNP (mkPN "كیٹالان")) (mkNP (mkPN "كاٹالان")) (mkA "كاٹالانین") ;
+    Danish = mkNat "ڈینش" "ڈنمارك" ;
+    Dutch =  mkNPNationality (mkNP (mkPN "ڈچ")) (mkNP the_Quant (mkN "نیدرلینڈ")) (mkA "ڈچ") ;
+    English = mkNat "انگلش" "انگلینڈ" ;
+    Finnish = mkNat "فنش" "فنلینڈ" ;
+    Flemish = mkNP (mkPN "فلیمش") ;
+    French = mkNat "فرانسیسی" "فرانس" ; 
+    German = mkNat "جرمن" "جرمنی" ;
+    Italian = mkNat "اطالوی" "اٹلی" ;
+    Norwegian = mkNat "نارویجن" "ناروے" ;
+    Polish = mkNat "پولش" "پولینڈ" ;
+    Romanian = mkNat "رومانین" "رومانیہ" ;
+    Russian = mkNat "روسی" "روس" ;
+    Spanish = mkNat "سپینی" "سپین" ;
+    Swedish = mkNat "سویڈش" "سویڈن" ;
+
+-- Means of transportation 
+ 
+   Bike = mkTransport L.bike_N ;
+   Bus = mkTransport (mkN "بس" Fem) ;
+   Car = mkTransport L.car_N ;
+   Ferry = mkTransport (mkN "فیری") ;
+   Plane = mkTransport L.airplane_N ;
+   Subway = mkTransport (mkN "سب وے") ;
+   Taxi = mkTransport (mkN "ٹیكسی") ;
+   Train = mkTransport (mkN "ریل گاڑی") ;
+   Tram = mkTransport (mkN "ٹرام" Fem) ;
+
+   ByFoot = P.mkAdv "پیدل" ;
+
+-- Actions: the predication patterns are very often language-dependent.
+
+--    AHasAge p num = mkCl p.name (mkNP (mkNP num L.year_N) (ParadigmsUrd.mkAdv "كا"));
+    AHasAge p num = mkCl p.name  (mkNP num (mkCN (modN L.year_N)));
+    AHasChildren p num = mkCl p.name have_V2 (mkNP num L.child_N) ;
+    AHasRoom p num = mkCl p.name have_V2 
+      (mkNP (mkNP a_Det (mkN "كمرہ")) (SyntaxUrd.mkAdv for_Prep (mkNP num (P.mkN "شخص" "شخص" "شخص" "اشخاص" "اشخاص" "شخصو" masculine)))) ;
+    AHasTable p num = mkCl p.name have_V2 
+      (mkNP (mkNP a_Det (mkN "میز")) (SyntaxUrd.mkAdv for_Prep (mkNP num (P.mkN "شخص" "شخص" "شخص" "اشخاص" "اشخاص" "شخصو" masculine)))) ;
+    AHasName p name = mkCl (nameOf p) name ;
+    AHungry p = mkCl p.name (mkA "بھوكا") ;
+    AIll p = mkCl p.name (mkA "بیمار") ;
+    AKnow p = mkCl p.name (mkV "جاننا") ;
+    ALike p item = mkCl p.name (L.like_V2) item ;
+    ALive p co = mkCl p.name (mkVP (mkVP (L.live_V)) (SyntaxUrd.mkAdv in_Prep co)) ;
+    ALove p q = mkCl p.name (L.love_V2) q.name ;
+    AMarried p = mkCl p.name (mkA "شادی شدہ") ;
+    AReady p = mkCl p.name (mkA "تیار") ;
+    AScared p = mkCl p.name (P.mkCompoundA "ڈرا" "ہوا") ;
+    ASpeak p lang = mkCl p.name  L.speak_V2 lang ;
+    AThirsty p = mkCl p.name (mkA "پیاسا") ;
+    ATired p = mkCl p.name (P.mkCompoundA "تھكا" "ہوا") ;
+    AUnderstand p = mkCl p.name (mkV "سمجھنا") ;
+    AWant p obj = mkCl p.name (mkV2 (mkV "چاہنا")) obj ;
+--    AWantGo p place = mkCl p.name want_VV (mkVP (mkVP L.go_V) place.name) ;
+    AWantGo p place = mkCl p.name want_VV (mkVP (mkVP L.go_V) place.to) ;
+
+-- miscellaneous
+
+    QWhatName p = mkQS (mkQCl whatSg_IP (mkVP (nameOf p))) ;
+    QWhatAge p = mkQS (mkQCl (mkCl (mkNP (modQuant p.poss)) (mkAdv "عمر"))) ;
+    HowMuchCost item = mkQS (mkQCl (mkCl (modNP item) (mkAdv ["كی قیمت"]))) ; 
+    ItCost item price = mkCl item (mkV2 (mkV "قیمت")) price ;
+
+    PropOpen p = mkCl p.name open_Adv ;
+    PropClosed p = mkCl p.name closed_Adv ;
+    PropOpenDate p d = mkCl p.name (mkVP (mkVP d) open_Adv) ; 
+    PropClosedDate p d = mkCl p.name (mkVP (mkVP d) closed_Adv) ; 
+    PropOpenDay p d = mkCl p.name (mkVP (mkVP  d.habitual) open_Adv); 
+    PropClosedDay p d = mkCl p.name (mkVP (mkVP d.habitual) closed_Adv) ; 
+
+-- Building phrases from strings is complicated: the solution is to use
+-- mkText : Text -> Text -> Text ;
+
+    PSeeYouDate d = mkText (lin Text (Prelude.ss ("ملتے ہیں"))) (mkPhrase (mkUtt d)) ;
+    PSeeYouPlace p = mkText (lin Text (Prelude.ss ("ملتے ہیں"))) (mkPhrase (mkUtt p.at)) ;
+    PSeeYouPlaceDate p d = 
+      mkText (lin Text (Prelude.ss ("ملتے ہیں"))) 
+        (mkText (mkPhrase (mkUtt p.at)) (mkPhrase (mkUtt d))) ;
+
+-- Relations are expressed as "می وiفع" or "می سon'س وiفع", as defined by $xOf$
+-- below. Languages without productive genitives must use an equivalent of
+-- "تہع وiفع oف می سoن" for non-pronouns.
+
+    Wife = xOf ssing (mkN "بیوی") ;
+    Husband = xOf ssing (mkN "شوہر") ;
+    Son = xOf ssing (mkN "بیٹا") ;
+    Daughter = xOf ssing (mkN "بیٹی") ;
+    Children = xOf plur L.child_N ;
+
+-- week days
+
+    Monday = mkDay "سوموار" ;
+    Tuesday = mkDay "منگل" ;
+    Wednesday = mkDay "بدھ" ;
+    Thursday = mkDay "جمعرات" ;
+    Friday = mkDay "جمعہ" ;
+    Saturday = mkDay "ہفتہ" ;
+    Sunday = mkDay "اتوار" ;
+ 
+    Tomorrow = P.mkAdv "كل" ;
+
+-- modifiers of places
+
+    TheBest = mkSuperl L.good_A ;
+    TheClosest = mkSuperl L.near_A ; 
+    TheCheapest = mkSuperl (mkA "سستا") ;
+    TheMostExpensive = mkSuperl (mkA "مہنگا") ;
+    TheMostPopular = mkSuperl (mkA "مشہور") ;
+    TheWorst = mkSuperl L.bad_A ;
+
+    SuperlPlace sup p = placeNP sup p ;
+
+
+-- transports
+
+
+    HowFar place = mkQS (mkQCl far_IAdv place.name) ;
+    HowFarFrom x y = mkQS (mkQCl far_IAdv (mkNP y.name (SyntaxUrd.mkAdv from_Prep x.name))) ;
+    HowFarFromBy x y t = 
+      mkQS (mkQCl far_IAdv (mkNP (mkNP y.name (SyntaxUrd.mkAdv from_Prep x.name)) t)) ;
+    HowFarBy y t = mkQS (mkQCl far_IAdv (mkNP y.name t)) ;
+ 
+    WhichTranspPlace trans place = 
+      mkQS (mkQCl (SyntaxUrd.mkIP which_IDet trans.name) (mkVP (mkVP L.go_V) place.to)) ;
+
+    IsTranspPlace trans place =
+      mkQS (mkQCl (mkCl (mkCN trans.name place.to))) ;
+
+
+
+-- auxiliaries
+
+  oper
+
+    mkNat : Str -> Str -> NPNationality = \nat,co -> 
+      mkNPNationality (mkNP (mkPN nat)) (mkNP (mkPN co)) (mkA nat) ;
+
+    mkDay : Str -> {name : NP ; point : Adv ; habitual : Adv} = \d ->
+      let day = mkNP (mkPN d) in 
+      mkNPDay day (SyntaxUrd.mkAdv to_Prep day) 
+        (SyntaxUrd.mkAdv to_Prep (mkNP a_Quant sgNum (mkCN (mkN d)))) ; --changed from plNum to sgNum
+    
+    mkCompoundPlace : Str -> Str -> Str -> {name : CN ; at : Prep ; to : Prep; isPl : Bool} = \comp, p, i ->
+--     mkCNPlace (mkCN (P.mkN comp (mkN p))) (P.mkPrep i) to_Prep ;
+      mkCNPlace (mkCN (mkN (comp++p))) (P.mkPrep i i) to_Prep ;
+
+    mkPlace : Str -> Str -> {name : CN ; at : Prep ; to : Prep; isPl : Bool} = \p,i -> 
+      mkCNPlace (mkCN (mkN p)) (P.mkPrep i i) to_Prep ;
+    mkPlaceFem : Str -> Str -> Gender -> {name : CN ; at : Prep ; to : Prep; isPl : Bool} = \p,i,g -> 
+      mkCNPlace (mkCN (P.mkN p g)) (P.mkPrep i i) to_Prep ;  
+
+    open_Adv = P.mkAdv "كھلا" "كھلی";
+    closed_Adv = P.mkAdv "بند" ;
+
+    xOf : SentencesUrd.GNumber -> N -> NPPerson -> NPPerson = \n,x,p -> 
+      relativePerson n (mkCN x) (\a,b,c -> mkNP (GenNP b) a c) p ;
+
+    nameOf : NPPerson -> NP = \p -> (xOf ssing (mkN "نام") p).name ;
+    ssing = False ;
+
+    mkTransport : N -> {name : CN ; by : Adv} = \n -> {
+      name = mkCN n ; 
+      by = SyntaxUrd.mkAdv by8means_Prep (mkNP n)
+      } ;
+
+--    mkSuperl : A -> Det = \a -> SyntaxUrd.mkDet the_Art (SyntaxUrd.mkOrd a) ;
+      mkSuperl : A -> Det = \a -> lin Det { s = \\n,g,c => a.s ! n ! g ! c ! Posit ; n = Sg } ;
+    
+   far_IAdv = ExtraUrd.IAdvAdv (P.mkAdv "دور") ;
+-------------------
+modN : N -> N = \noun -> lin N {s = \\n,c =>noun.s!n!c++"كا" ; g =noun.g} ;
+modQuant : Quant -> Quant = \q -> lin Quant {s = \\n,g,c => q.s ! n ! Fem ! c ; a = q.a};
+modNP : NP -> NP = \np -> lin NP {s = \\_ => np.s ! NPC Obl  ; a = np.a};
+
+}
diff --git a/examples/phrasebook/missing.txt b/examples/phrasebook/missing.txt
--- a/examples/phrasebook/missing.txt
+++ b/examples/phrasebook/missing.txt
@@ -13,3 +13,4 @@
 PhrasebookRon :
 PhrasebookSpa :
 PhrasebookSwe :
+PhrasebookUrd :
diff --git a/examples/query/QueryEng.gf b/examples/query/QueryEng.gf
--- a/examples/query/QueryEng.gf
+++ b/examples/query/QueryEng.gf
@@ -23,7 +23,8 @@
   In = relVP UseCopula in_Prep ;
 
   Employed = 
-      relAP (mkAP (mkA "employed")) by8agent_Prep
+      relAP (mkAP (mkA "employed")) at_Prep
+--    | relAP (mkAP (mkA "employed")) by8agent_Prep
     | relAP (mkAP (mkA "paid")) by8agent_Prep
     | relAP (mkAP (mkA "active")) at_Prep
     | relAP (mkAP (mkA "professionally active")) at_Prep
@@ -33,23 +34,23 @@
 
   HaveTitle = 
       relAP (mkAP (mkA "employed")) as_Prep
-    | relVP UseCopula noPrep
+--    | relVP UseCopula noPrep
     | relVP (mkVP (mkV "work")) as_Prep
-    | relVP (mkVP have_V2 (mkNP the_Det (mkCN (mkN2 (mkN "title"))))) possess_Prep
+--    | relVP (mkVP have_V2 (mkNP the_Det (mkCN (mkN2 (mkN "title"))))) possess_Prep
     ;
 
   EmployedAt s = 
       relAP (mkAP (mkA2 (mkA "employed") at_Prep) s) as_Prep
-    | relAP (mkAP (mkA2 (mkA "employed") by8agent_Prep) s) as_Prep
+--    | relAP (mkAP (mkA2 (mkA "employed") by8agent_Prep) s) as_Prep
     | relVP (mkVP (mkV2 (mkV "work") at_Prep) s) as_Prep 
     ;
 
   HaveTitleAt t = 
       relAP (mkAP (mkA2 (mkA "employed") as_Prep) (mkNP t)) at_Prep
-    | relAP (mkAP (mkA2 (mkA "employed") as_Prep) (mkNP t)) by8agent_Prep
+--    | relAP (mkAP (mkA2 (mkA "employed") as_Prep) (mkNP t)) by8agent_Prep
     | relVP (mkVP (mkNP a_Det t)) at_Prep
     | relVP (mkVP (mkV2 (mkV "work") as_Prep) (mkNP t)) at_Prep 
-    | relVP (mkVP have_V2 (mkNP the_Det (mkCN (mkN2 (mkN "title")) (mkNP t)))) at_Prep 
+--    | relVP (mkVP have_V2 (mkNP the_Det (mkCN (mkN2 (mkN "title")) (mkNP t)))) at_Prep 
     ;
 
   Named n = propAP  (mkAP (mkA2 (mkA "named") []) n) ;
diff --git a/examples/query/QuerySwe.gf b/examples/query/QuerySwe.gf
--- a/examples/query/QuerySwe.gf
+++ b/examples/query/QuerySwe.gf
@@ -1,6 +1,6 @@
 --# -path=.:present
 
-concrete QuerySwe of Query = QueryI - [namePrep, propCalled] with 
+concrete QuerySwe of Query = QueryI - [namePrep, propCalled, KFunPair] with 
   (Syntax = SyntaxSwe),
   (Lang = LangSwe),
   (LexQuery = LexQuerySwe) **
@@ -24,7 +24,11 @@
       propVP (mkVP (mkAdV "även") (mkVP (mkV2 (depV (mkV "kalla")) for_Prep) i))
     | propVP (mkVP (mkAdV "även") (mkVP (mkV2 "heter") i)) ;
 
+lin
+  KFunPair k r = mkCN k (mkAdv with_Prep (sina r.cn)) ;
 
+oper
+  sina : CN -> NP = \cn -> mkNP (M.mkPredet "sin" "sitt" "sina") (mkNP a_Quant plNum cn) ; ---- should be in ExtraSwe
 
 -- lexicon
 
@@ -34,8 +38,9 @@
   In = relVP UseCopula in_Prep ;
 
   Employed = 
-      relAP (mkAP (mkA "anställd" "anställt")) by8agent_Prep
-    | relAP (mkAP (mkA "betald" "betalt")) by8agent_Prep
+      relAP (mkAP (mkA "anställd" "anställt")) at_Prep
+--    | relAP (mkAP (mkA "anställd" "anställt")) by8agent_Prep
+--    | relAP (mkAP (mkA "betald" "betalt")) by8agent_Prep
     | relAP (mkAP (mkA "aktiv")) at_Prep
     | relAP (mkAP (mkA "professionellt aktiv")) at_Prep
     | relVP (mkVP (mkV "arbeta")) at_Prep
@@ -45,28 +50,26 @@
 
   HaveTitle = 
       relAP (mkAP (mkA "anställd" "anställt")) som_Prep
-    | relVP UseCopula noPrep
+--    | relVP UseCopula noPrep
     | relVP (mkVP (mkV "arbeta")) som_Prep
     | relVP (mkVP (mkV "jobba")) som_Prep
-    | relVP (mkVP have_V2 (mkNP the_Det (mkCN (mkN2 (mkN "titel" "titlar") noPrep)))) 
-        possess_Prep
+--    | relVP (mkVP have_V2 (mkNP the_Det (mkCN (mkN2 (mkN "titel" "titlar") noPrep)))) possess_Prep
     ;
 
   EmployedAt s = 
       relAP (mkAP (mkA2 (mkA "anställd" "anställt") at_Prep) s) som_Prep
-    | relAP (mkAP (mkA2 (mkA "anställd" "anställt") by8agent_Prep) s) som_Prep
+--    | relAP (mkAP (mkA2 (mkA "anställd" "anställt") by8agent_Prep) s) som_Prep
     | relVP (mkVP (mkV2 (mkV "arbeta") at_Prep) s) som_Prep 
     | relVP (mkVP (mkV2 (mkV "jobba") at_Prep) s) som_Prep 
     ;
 
   HaveTitleAt t = 
       relAP (mkAP (mkA2 (mkA "anställd" "anställt") som_Prep) (mkNP t)) at_Prep
-    | relAP (mkAP (mkA2 (mkA "anställd" "anställt") som_Prep) (mkNP t)) by8agent_Prep
+--    | relAP (mkAP (mkA2 (mkA "anställd" "anställt") som_Prep) (mkNP t)) by8agent_Prep
     | relVP (mkVP (mkNP a_Det t)) at_Prep
     | relVP (mkVP (mkV2 (mkV "arbeta") som_Prep) (mkNP t)) at_Prep 
     | relVP (mkVP (mkV2 (mkV "jobba") som_Prep) (mkNP t)) at_Prep 
-    | relVP (mkVP have_V2 (mkNP the_Det (mkCN (mkN2 (mkN "titel" "titlar") noPrep) 
-        (mkNP t)))) at_Prep 
+--    | relVP (mkVP have_V2 (mkNP the_Det (mkCN (mkN2 (mkN "titel" "titlar") noPrep) (mkNP t)))) at_Prep 
     ;
 
   Named n = propAP  (mkAP (mkA2 called_A (mkPrep [])) n) ;
diff --git a/examples/query/small/Query.gf b/examples/query/small/Query.gf
new file mode 100644
--- /dev/null
+++ b/examples/query/small/Query.gf
@@ -0,0 +1,111 @@
+abstract Query = {
+
+flags
+  startcat = Move ;
+
+-- general query language, which can be specialized with any lexicon
+
+cat
+  Move ;     -- top-level utterance,    e.g. "give me all Bulgarian persons that work at Google"
+  Query ;
+  Answer ;
+  Set ;      -- the set requested,      e.g. "all persons"
+  Relation ; -- something of something, e.g. "subregion of Bulgaria"
+  Kind ;     -- type of things,         e.g. "person"
+  Property ; -- property of things,     e.g. "employed at Google"
+  Individual ; -- one entity,           e.g. "Google"
+  Activity ;   -- action property,      e.g. "work at Google"
+  Name ;       -- person, company...    e.g. "Eric Schmidt"
+  Loc ;
+  Org ;
+  Pers ;
+  [Individual] {2} ; -- list of entities, e.g. "Larry Page, Sergey Brin"
+
+fun
+  MQuery  : Query -> Move ;
+  MAnswer : Answer -> Move ;
+
+  QSet    : Set  -> Query ;  -- (give me | what are | which are | ) (S | the names of S | S's names)
+  QWhere  : Set  -> Query ;  -- where are S
+  QInfo   : Set  -> Query ;  -- (give me | ) (information about | all about) S
+  QCalled : Individual -> Query ; -- how is X (also | otherwise) (called | named | known) ;
+
+  AKind  : Set  -> Kind     -> Answer ; -- S is a K
+  AProp  : Set  -> Property -> Answer ; -- S is P
+  AAct   : Set  -> Activity -> Answer ; -- S As
+
+  SAll   : Kind -> Set ;  -- all Ks | the Ks
+  SOne   : Kind -> Set ;  -- one K
+  SIndef : Kind -> Set ;  -- a K
+  SPlural : Kind -> Set ;  -- Ks
+  SOther : Kind -> Set ;  -- other Ks
+  SInd   : Individual  -> Set ;  -- X
+  SInds  : [Individual] -> Set ; -- X and Y
+
+  KRelSet  : Relation -> Set -> Kind ; -- R of S | S's R
+  KRelsSet : Relation -> Relation -> Set -> Kind ; -- R and Q of S
+  KRelKind : Kind -> Relation -> Set -> Kind ; -- K that is R of S
+  KRelPair : Kind -> Relation -> Kind ; -- S's with their R's
+  KProp    : Property -> Kind -> Kind ; -- P K | K that is P
+  KAct     : Activity -> Kind -> Kind ; -- K that Ps
+  KRel     : Relation -> Kind ; -- R ---??
+
+  IName    : Name -> Individual ;
+
+  NLoc : Loc -> Name ;
+  NOrg : Org -> Name ;
+  NPers : Pers -> Name ;
+
+  ACalled  : [Individual] -> Activity ;
+
+
+-- the test lexicon
+
+cat
+  Country ;
+  JobTitle ;
+fun
+  NCountry : Country -> Name ;
+  PCountry : Country -> Property ;
+
+  Located : Loc -> Property ;
+  Employed : Org -> Property ;
+
+  Work : Org -> Activity ;
+  HaveTitle : JobTitle -> Org -> Activity ;
+
+  Organization : Kind ;
+  Place : Kind ;
+  Person : Kind ;
+
+  Location : Relation ;
+  Region : Relation ;
+  Subregion : Relation ;
+
+  RName     : Relation ;
+  RNickname : Relation ;
+
+-- JobTitles
+   JobTitle1 : JobTitle ;
+   JobTitle2 : JobTitle ;
+   JobTitle3 : JobTitle ;
+   JobTitle4 : JobTitle ;
+
+-- Locations
+   Location1 : Loc ;
+   Location2 : Loc ;
+   Location3 : Loc ;
+   Location4 : Loc ;
+
+-- Organizations
+   Organization1 : Org ;
+   Organization2 : Org ;
+   Organization3 : Org ;
+   Organization4 : Org ;
+
+-- Persons
+   Person1 : Pers ;
+   Person2 : Pers ;
+   Person3 : Pers ;
+   Person4 : Pers ;
+}
diff --git a/examples/query/small/QueryEng.gf b/examples/query/small/QueryEng.gf
new file mode 100644
--- /dev/null
+++ b/examples/query/small/QueryEng.gf
@@ -0,0 +1,179 @@
+--# -path=.:alltenses
+
+concrete QueryEng of Query = open
+  ParadigmsEng,
+  IrregEng,
+  SyntaxEng,
+  ExtraEng,
+  (L = LangEng),
+  Prelude
+in {
+
+lincat
+  Move = Utt ; ---- Text ;
+  Query = Utt ;
+  Answer = Utt ;
+  Set = NP ;
+  Relation = {cn : CN ; prep : Prep} ;
+  Kind = CN ;
+  Property = AP ; ---- {vp : VP ; typ : PropTyp} ;
+  Individual = NP ;
+  Activity = VP ;
+  Name = NP ;
+  Loc = NP ;
+  Org = NP ;
+  Pers = NP ;
+  [Individual] = [NP] ;
+
+lin
+  MQuery  q = q ; ---- mkText (mkPhr q) questMarkPunct ;
+  MAnswer a = a ; ---- mkText (mkPhr a) fullStopPunct ;
+
+  QSet s =
+    let
+     ss : NP = s
+        | mkNP (mkNP thePl_Det L.name_N) (mkAdv possess_Prep s)
+        ---- s's names
+    in
+      mkUtt (mkImp (mkVP give_V3 (mkNP i_Pron) ss))
+    | mkUtt (mkQS (mkQCl (L.CompIP whatSg_IP) ss))
+    | mkUtt (mkQS (mkQCl (L.CompIP (L.IdetIP (mkIDet which_IQuant))) ss))
+    | mkUtt ss ;
+
+  QWhere s = mkUtt (mkQS (mkQCl where_IAdv s)) ;
+  QInfo  s =
+    let
+      info : NP = mkNP (all_NP | (mkNP information_N)) (mkAdv about_Prep s) ;
+    in
+      mkUtt (mkImp (mkVP give_V3 (mkNP i_Pron) info))
+    | mkUtt info ;
+
+  QCalled i = mkUtt (mkQS (mkQCl how_IAdv (mkCl i (mkVP also_AdV (mkVP called_A))))) ;
+
+  AKind s k = mkUtt (mkCl s (mkNP aPl_Det k)) ; ---- a, fun of s
+  AProp s p = mkUtt (mkCl s p) ;
+  AAct s p = mkUtt (mkCl s p) ;
+
+  SAll k = mkNP all_Predet (mkNP aPl_Det k) | mkNP thePl_Det k ;
+  SOne k = mkNP n1_Numeral k ;
+  SIndef k = mkNP a_Det k ;
+  SPlural k = mkNP aPl_Det k ;
+  SOther k = mkNP aPl_Det (mkCN other_A k) ;
+  SInd i = i ;
+  SInds is = mkNP and_Conj is ;
+
+  KRelSet r s =
+     mkCN r.cn (mkAdv r.prep s) ;
+     ---- | S's R
+
+----  KRelsSet r q s =
+----     mkCN r.cn (mkAdv r.prep s) ;
+
+  KRelKind k r s =
+    mkCN k (mkRS (mkRCl that_RP (mkVP (mkNP aPl_Det (mkCN r.cn (mkAdv r.prep s)))))) ;
+
+  KRelPair k r = mkCN k (mkAdv with_Prep (mkNP (mkQuant they_Pron) plNum r.cn)) ;
+  KProp p k =
+     mkCN p k
+   | mkCN k (mkRS (mkRCl that_RP (mkVP p))) ;
+  KAct p k =
+     mkCN k (mkRS (mkRCl that_RP p)) ;
+  KRel r = r.cn ;
+
+  IName n = n ;
+  NLoc n = n ;
+  NOrg n = n ;
+  NPers n = n;
+
+  ACalled is = mkVP also_AdV (mkVP (mkAP (mkA2 called_A []) (mkNP or_Conj is))) ;
+
+  BaseIndividual = mkListNP ;
+  ConsIndividual = mkListNP ;
+
+oper
+-- structural words
+  about_Prep = mkPrep "about" ;
+  all_NP = mkNP (mkPN "all") ; ---
+  also_AdV = mkAdV "also" | mkAdV "otherwise" ;
+  as_Prep = mkPrep "as" ;
+  at_Prep = mkPrep "at" ;
+  called_A = mkA "called" | mkA "named" ;
+  give_V3 = mkV3 give_V ;
+  information_N = mkN "information" ;
+  other_A = mkA "other" ;
+
+-- lexical constructors
+  mkName : Str -> NP =
+    \s -> mkNP (mkPN s) ;
+  mkRelation : Str -> {cn : CN ; prep : Prep} =
+    \s -> {cn = mkCN (mkN s) ; prep = possess_Prep} ;
+
+-- lexicon
+
+lincat
+  Country = {np : NP ; a : A} ;
+  JobTitle = CN ;
+lin
+  NCountry c = c.np ;
+  PCountry c = mkAP c.a ;
+
+  Located i =
+      mkAP (mkA2 (mkA "located") in_Prep) i
+    | mkAP (mkA2 (mkA "situated") in_Prep) i ;
+
+  Employed i =
+      mkAP (mkA2 (mkA "employed") by8agent_Prep) i
+    | mkAP (mkA2 (mkA "paid") by8agent_Prep) i
+    | mkAP (mkA2 (mkA "active") at_Prep) i
+    | mkAP (mkA2 (mkA "professionally active") at_Prep) i ;
+
+  Work i =
+      mkVP (mkV2 (mkV "work") at_Prep) i
+    | mkVP (mkV2 (mkV "collaborate") in_Prep) i ;
+
+  HaveTitle t i =
+      mkVP (mkVP (mkAP (mkA2 (mkA "employed") as_Prep) (mkNP t))) (mkAdv at_Prep i)
+    | mkVP (mkVP (mkV2 (mkV "work") as_Prep) (mkNP t)) (mkAdv at_Prep i) ;
+--    | mkVP (mkVP have_V2 (mkNP the_Det (mkCN (mkN2 (mkN "title")) (mkNP t)))) (mkAdv at_Prep i) ;
+
+  Organization = mkCN (mkN "organization") ;
+  Place = mkCN (mkN "place") ;
+  Person =
+      mkCN (mkN "person" "people")
+    | mkCN (mkN "person") ;
+
+  Location = mkRelation "location" ;
+  Region = mkRelation "region" ;
+  Subregion = mkRelation "subregion" ;
+  RName = mkRelation "name" ;
+  RNickname = mkRelation "nickname" ;
+
+-- JobTitles
+  JobTitle1 = mkCN (mkN "'JobTitle1") ;
+  JobTitle2 = mkCN (mkN "'JobTitle2") ;
+  JobTitle3 = mkCN (mkN "'JobTitle3") ;
+  JobTitle4 = mkCN (mkN "'JobTitle4") ;
+
+-- Locations
+  Location1 = mkName "'Location1" ;
+  Location2 = mkName "'Location2" ;
+  Location3 = mkName "'Location3" ;
+  Location4 = mkName "'Location4" ;
+
+-- Organizations
+  Organization1 = mkName "'Organization1" ;
+  Organization2 = mkName "'Organization2" ;
+  Organization3 = mkName "'Organization3" ;
+  Organization4 = mkName "'Organization4" ;
+
+-- Persons
+  Person1 = mkName "'Person1" ;
+  Person2 = mkName "'Person2" ;
+  Person3 = mkName "'Person3" ;
+  Person4 = mkName "'Person4" ;
+
+oper
+  mkCountry : Str -> Str -> {np : NP ; a : A} =
+    \n,a -> {np = mkNP (mkPN n) ; a = mkA a} ;
+
+}
diff --git a/examples/query/small/QueryFin.gf b/examples/query/small/QueryFin.gf
new file mode 100644
--- /dev/null
+++ b/examples/query/small/QueryFin.gf
@@ -0,0 +1,172 @@
+--# -path=.:alltenses
+
+concrete QueryFin of Query = open
+  ParadigmsFin,
+  SyntaxFin,
+  ExtraFin,
+  (L = LangFin),
+  Prelude
+in {
+
+lincat
+  Move = Utt ; ---- Text ;
+  Query = Utt ;
+  Answer = Utt ;
+  Set = NP ;
+  Relation = {cn : CN ; prep : Prep} ;
+  Kind = CN ;
+  Property = AP ; ---- {vp : VP ; typ : PropTyp} ;
+  Individual = NP ;
+  Activity = VP ;
+  Name = NP ;
+  Loc = NP ;
+  Org = NP ;
+  Pers = NP ;
+  [Individual] = [NP] ;
+
+lin
+  MQuery  q = q ; ---- mkText (mkPhr q) questMarkPunct ;
+  MAnswer a = a ; ---- mkText (mkPhr a) fullStopPunct ;
+
+  QSet s =
+    let
+     ss : NP = s
+        | mkNP (mkNP thePl_Det L.name_N) (mkAdv possess_Prep s)
+        ---- s's names
+    in
+      mkUtt (mkImp (mkVP give_V3 (mkNP i_Pron) ss))
+    | mkUtt (mkQS (mkQCl (L.CompIP whatSg_IP) ss))
+    | mkUtt (mkQS (mkQCl (L.CompIP (L.IdetIP (mkIDet which_IQuant))) ss))
+    | mkUtt ss ;
+
+  QWhere s = mkUtt (mkQS (mkQCl where_IAdv s)) ;
+  QInfo  s =
+    let
+      info : NP = mkNP (all_NP | (mkNP information_N)) (mkAdv about_Prep s) ;
+    in
+      mkUtt (mkImp (mkVP give_V3 (mkNP i_Pron) info))
+    | mkUtt info ;
+
+  QCalled i = mkUtt (mkQS (mkQCl how_IAdv (mkCl i (mkVP also_AdV (mkVP called_A))))) ;
+
+  AKind s k = mkUtt (mkCl s (mkNP aPl_Det k)) ; ---- a, fun of s
+  AProp s p = mkUtt (mkCl s p) ;
+  AAct s p = mkUtt (mkCl s p) ;
+
+  SAll k = mkNP all_Predet (mkNP aPl_Det k) | mkNP thePl_Det k ;
+  SOne k = mkNP n1_Numeral k ;
+  SIndef k = mkNP a_Det k ;
+  SPlural k = mkNP aPl_Det k ;
+  SOther k = mkNP aPl_Det (mkCN other_A k) ;
+  SInd i = i ;
+  SInds is = mkNP and_Conj is ;
+
+  KRelSet r s =
+     mkCN r.cn (mkAdv r.prep s) ;
+     ---- | S's R
+
+----  KRelsSet r q s =
+----     mkCN r.cn (mkAdv r.prep s) ;
+
+  KRelKind k r s =
+    mkCN k (mkRS (mkRCl that_RP (mkVP (mkNP aPl_Det (mkCN r.cn (mkAdv r.prep s)))))) ;
+
+  KRelPair k r = mkCN k (mkAdv with_Prep (mkNP (mkQuant they_Pron) plNum r.cn)) ;
+  KProp p k =
+     mkCN p k
+   | mkCN k (mkRS (mkRCl that_RP (mkVP p))) ;
+  KAct p k =
+     mkCN k (mkRS (mkRCl that_RP p)) ;
+  KRel r = r.cn ;
+
+  IName n = n ;
+  NLoc n = n ;
+  NOrg n = n ;
+  NPers n = n;
+
+  ACalled is = mkVP also_AdV (mkVP (mkAP (mkA2 called_A (casePrep translative)) (mkNP or_Conj is))) ;
+
+  BaseIndividual = mkListNP ;
+  ConsIndividual = mkListNP ;
+
+oper
+-- structural words
+  about_Prep = casePrep elative ;
+  all_NP = mkNP (mkPN (mkN "kaikki" "kaiken")) ; ---
+  also_AdV = ss "myös" ;
+  as_Prep = casePrep essive ;
+  at_Prep = casePrep adessive ;
+  called_A = mkA "kutsuttu" ;
+  give_V3 = mkV3 (mkV "antaa") (casePrep allative) (casePrep nominative) ;
+  information_N = mkN "tieto" ;
+  other_A = mkA "muu" ;
+  that_RP = which_RP ;
+
+-- lexical constructors
+  mkName : Str -> NP =
+    \s -> mkNP (mkPN s) ;
+  mkRelation : Str -> {cn : CN ; prep : Prep} =
+    \s -> {cn = mkCN (mkN s) ; prep = possess_Prep} ;
+
+-- lexicon
+
+lincat
+  Country = {np : NP ; a : A} ;
+  JobTitle = CN ;
+lin
+  NCountry c = c.np ;
+  PCountry c = mkAP c.a ;
+
+  Located i =
+      mkAP (mkA2 (mkA "sijaitseva") in_Prep) i ;
+
+  Employed i = mkAP (mkA2 (mkA "töissä") at_Prep) i ;
+
+  Work i =
+      mkVP (mkV2 (mkV "työskennellä") at_Prep) i ;
+
+  HaveTitle t i =
+      mkVP (mkVP (mkNP t)) (mkAdv at_Prep i) ;
+--    | mkVP (mkVP (mkV2 (mkV "work") as_Prep) (mkNP t)) (mkAdv at_Prep i) ;
+--    | mkVP (mkVP have_V2 (mkNP the_Det (mkCN (mkN2 (mkN "title")) (mkNP t)))) (mkAdv at_Prep i) ;
+
+  Organization = mkCN (mkN "organisaatio" "organisaatioita") ;
+  Place = mkCN (mkN "paikka") ;
+  Person =
+      mkCN (mkN "henkilö" "henkilöitä") ;
+
+  Location = mkRelation "sijainti" ;
+  Region = mkRelation "alue" ;
+  Subregion = mkRelation "alue" ;
+  RName = mkRelation "nimi" ;
+  RNickname = mkRelation "lempinimi" ;
+
+-- JobTitles
+  JobTitle1 = mkCN (mkN "'JobTitle1") ;
+  JobTitle2 = mkCN (mkN "'JobTitle2") ;
+  JobTitle3 = mkCN (mkN "'JobTitle3") ;
+  JobTitle4 = mkCN (mkN "'JobTitle4") ;
+
+-- Locations
+  Location1 = mkName "'Location1" ;
+  Location2 = mkName "'Location2" ;
+  Location3 = mkName "'Location3" ;
+  Location4 = mkName "'Location4" ;
+
+-- Organizations
+  Organization1 = mkName "'Organization1" ;
+  Organization2 = mkName "'Organization2" ;
+  Organization3 = mkName "'Organization3" ;
+  Organization4 = mkName "'Organization4" ;
+
+-- Persons
+  Person1 = mkName "'Person1" ;
+  Person2 = mkName "'Person2" ;
+  Person3 = mkName "'Person3" ;
+  Person4 = mkName "'Person4" ;
+
+oper
+  mkCountry : Str -> Str -> {np : NP ; a : A} =
+    \n,a -> {np = mkNP (mkPN n) ; a = mkA a} ;
+
+}
diff --git a/examples/query/small/QuerySwe.gf b/examples/query/small/QuerySwe.gf
new file mode 100644
--- /dev/null
+++ b/examples/query/small/QuerySwe.gf
@@ -0,0 +1,185 @@
+--# -path=.:alltenses
+
+concrete QuerySwe of Query = open
+  ParadigmsSwe,
+  IrregSwe,
+  SyntaxSwe,
+  ExtraSwe,
+  (M = MakeStructuralSwe),
+  (L = LangSwe),
+  Prelude
+in {
+
+flags coding = utf8 ;
+
+lincat
+  Move = Utt ; ---- Text ;
+  Query = Utt ;
+  Answer = Utt ;
+  Set = NP ;
+  Relation = {cn : CN ; prep : Prep} ;
+  Kind = CN ;
+  Property = AP ; ---- {vp : VP ; typ : PropTyp} ;
+  Individual = NP ;
+  Activity = VP ;
+  Name = NP ;
+  Loc = NP ;
+  Org = NP ;
+  Pers = NP ;
+  [Individual] = [NP] ;
+
+lin
+  MQuery  q = q ; ---- mkText (mkPhr q) questMarkPunct ;
+  MAnswer a = a ; ---- mkText (mkPhr a) fullStopPunct ;
+
+  QSet s =
+    let
+     ss : NP = s
+        | mkNP (mkNP thePl_Det L.name_N) (mkAdv on_Prep s)
+        ---- s's names
+    in
+      mkUtt (mkImp (mkVP give_V3 (mkNP i_Pron) ss))
+    | mkUtt (mkQS (mkQCl (L.CompIP whatSg_IP) ss))
+    | mkUtt (mkQS (mkQCl (L.CompIP (L.IdetIP (mkIDet which_IQuant))) ss))
+    | mkUtt ss ;
+
+  QWhere s = mkUtt (mkQS (mkQCl where_IAdv s)) ;
+  QInfo  s =
+    let
+      info : NP = mkNP (all_NP | (mkNP information_N)) (mkAdv about_Prep s) ;
+    in
+      mkUtt (mkImp (mkVP give_V3 (mkNP i_Pron) info))
+    | mkUtt info ;
+
+  QCalled i = mkUtt (mkQS (mkQCl how_IAdv (mkCl i (mkVP also_AdV (mkVP called_A))))) ;
+
+  AKind s k = mkUtt (mkCl s (mkNP aPl_Det k)) ; ---- a, fun of s
+  AProp s p = mkUtt (mkCl s p) ;
+  AAct s p = mkUtt (mkCl s p) ;
+
+  SAll k = mkNP all_Predet (mkNP aPl_Det k) | mkNP thePl_Det k ;
+  SOne k = mkNP n1_Numeral k ;
+  SIndef k = mkNP a_Det k ;
+  SPlural k = mkNP aPl_Det k ;
+  SOther k = mkNP aPl_Det (mkCN other_A k) ;
+  SInd i = i ;
+  SInds is = mkNP and_Conj is ;
+
+  KRelSet r s =
+     mkCN r.cn (mkAdv r.prep s) ;
+     ---- | S's R
+
+----  KRelsSet r q s =
+----     mkCN r.cn (mkAdv r.prep s) ;
+
+  KRelKind k r s =
+    mkCN k (mkRS (mkRCl that_RP (mkVP (mkNP aPl_Det (mkCN r.cn (mkAdv r.prep s)))))) ;
+
+  KRelPair k r = mkCN k (mkAdv with_Prep (sina r.cn)) ;
+  KProp p k =
+     mkCN p k
+   | mkCN k (mkRS (mkRCl that_RP (mkVP p))) ;
+  KAct p k =
+     mkCN k (mkRS (mkRCl that_RP p)) ;
+  KRel r = r.cn ;
+
+  IName n = n ;
+  NLoc n = n ;
+  NOrg n = n ;
+  NPers n = n;
+
+  ACalled is = mkVP also_AdV (mkVP (mkAP (mkA2 called_A for_Prep) (mkNP or_Conj is))) ;
+
+  BaseIndividual = mkListNP ;
+  ConsIndividual = mkListNP ;
+
+oper
+-- structural words
+  about_Prep = mkPrep "om" ;
+  all_NP = mkNP (mkPN "allt" neutrum) ; ---
+  also_AdV = mkAdV "också" | mkAdV "annars" ;
+  as_Prep = mkPrep "som" ;
+  at_Prep = mkPrep "på" ;
+  called_A = mkA "kallad" "kallat" "kallade" ;
+  give_V3 = mkV3 giva_V ;
+  information_N = mkN "information" "informationer" ;
+  other_A = compoundA (mkA "annan" "annat" "andra" "andra" "andra") ;
+  that_RP = which_RP ;
+
+  sina : CN -> NP = \cn -> mkNP (M.mkPredet "sin" "sitt" "sina") (mkNP a_Quant plNum cn) ; ---- should be in ExtraSwe
+
+-- lexical constructors
+  mkName : Str -> NP =
+    \s -> mkNP (mkPN s) ;
+  mkRelation : N -> Prep -> {cn : CN ; prep : Prep} =
+    \s,p -> {cn = mkCN s ; prep = p} ;
+
+-- lexicon
+
+lincat
+  Country = {np : NP ; a : A} ;
+  JobTitle = CN ;
+lin
+  NCountry c = c.np ;
+  PCountry c = mkAP c.a ;
+
+  Located i =
+      mkAP (mkA2 (mkA "belägen" "beläget") in_Prep) i ;
+--    | mkAP (mkA2 (mkA "situated") in_Prep) i ;
+
+  Employed i =
+      mkAP (mkA2 (mkA "anställd") by8agent_Prep) i
+--    | mkAP (mkA2 (mkA "paid") by8agent_Prep) i
+--    | mkAP (mkA2 (mkA "aktiv") at_Prep) i
+    | mkAP (mkA2 (mkA "professionellt aktiv") at_Prep) i ;
+
+  Work i =
+      mkVP (mkV2 (mkV "jobba") at_Prep) i
+    | mkVP (mkV2 (mkV "arbeta") in_Prep) i ;
+
+  HaveTitle t i =
+      mkVP (mkVP (mkAP (mkA2 (mkA "anställd") as_Prep) (mkNP t))) (mkAdv at_Prep i)
+    | mkVP (mkVP (mkV2 (mkV "jobba") as_Prep) (mkNP t)) (mkAdv at_Prep i) ;
+--    | mkVP (mkVP have_V2 (mkNP the_Det (mkCN (mkN2 (mkN "titel" "titlar") po) (mkNP t)))) (mkAdv at_Prep i) ;
+
+  Organization = mkCN (mkN "organisation" "organisationer") ;
+  Place = mkCN (mkN "plats" "platser") ;
+  Person =
+      mkCN (mkN "person" "personer") ;
+--    | mkCN (mkN "person" "folk") ;
+
+  Location = mkRelation (mkN "läge" "lägen") possess_Prep ;
+  Region = mkRelation (mkN "region" "regioner") in_Prep ;
+  Subregion = mkRelation (mkN "delregion" "delregioner") in_Prep ;
+  RName = mkRelation (mkN "namn" "namn") on_Prep ;
+  RNickname = mkRelation (mkN "tilläggsnamn" "tilläggsnamn")  on_Prep ;
+
+-- JobTitles
+  JobTitle1 = mkCN (mkN "'JobTitle1") ;
+  JobTitle2 = mkCN (mkN "'JobTitle2") ;
+  JobTitle3 = mkCN (mkN "'JobTitle3") ;
+  JobTitle4 = mkCN (mkN "'JobTitle4") ;
+
+-- Locations
+  Location1 = mkName "'Location1" ;
+  Location2 = mkName "'Location2" ;
+  Location3 = mkName "'Location3" ;
+  Location4 = mkName "'Location4" ;
+
+-- Organizations
+  Organization1 = mkName "'Organization1" ;
+  Organization2 = mkName "'Organization2" ;
+  Organization3 = mkName "'Organization3" ;
+  Organization4 = mkName "'Organization4" ;
+
+-- Persons
+  Person1 = mkName "'Person1" ;
+  Person2 = mkName "'Person2" ;
+  Person3 = mkName "'Person3" ;
+  Person4 = mkName "'Person4" ;
+
+oper
+  mkCountry : Str -> Str -> {np : NP ; a : A} =
+    \n,a -> {np = mkNP (mkPN n neutrum) ; a = mkA a} ;
+
+}
diff --git a/gf-book/examples/chapter2/Copy.gf b/gf-book/examples/chapter2/Copy.gf
new file mode 100644
--- /dev/null
+++ b/gf-book/examples/chapter2/Copy.gf
@@ -0,0 +1,7 @@
+concrete Copy of CopyAbs = {
+  lincat S, AB = Str ;
+  lin s x = x ++ x ;
+      end = [] ;
+      a x = "a" ++ x ;
+      b x = "b" ++ x ;
+}
diff --git a/gf-book/examples/chapter2/CopyAbs.gf b/gf-book/examples/chapter2/CopyAbs.gf
new file mode 100644
--- /dev/null
+++ b/gf-book/examples/chapter2/CopyAbs.gf
@@ -0,0 +1,6 @@
+abstract CopyAbs = {
+  cat S ; AB ;
+  fun s   : AB -> S ;
+      end : AB ;
+      a,b : AB -> AB ;
+}
diff --git a/gf-book/examples/chapter2/Food.gf b/gf-book/examples/chapter2/Food.gf
new file mode 100644
--- /dev/null
+++ b/gf-book/examples/chapter2/Food.gf
@@ -0,0 +1,13 @@
+abstract Food = {
+  flags startcat = Comment ;
+  cat
+    Comment ; Item ; Kind ; Quality ; 
+  fun
+    Pred : Item -> Quality -> Comment ;
+    This, That : Kind -> Item ;
+    Mod : Quality -> Kind -> Kind ;
+    Wine, Cheese, Fish : Kind ;
+    Very : Quality -> Quality ;
+    Fresh, Warm, Italian, 
+      Expensive, Delicious, Boring : Quality ;
+}
diff --git a/gf-book/examples/chapter2/Food.probs b/gf-book/examples/chapter2/Food.probs
new file mode 100644
--- /dev/null
+++ b/gf-book/examples/chapter2/Food.probs
@@ -0,0 +1,4 @@
+  This  0.8
+  Mod   0.2
+  Wine  0.0
+  Fresh 0.4
diff --git a/gf-book/examples/chapter2/FoodEng.gf b/gf-book/examples/chapter2/FoodEng.gf
new file mode 100644
--- /dev/null
+++ b/gf-book/examples/chapter2/FoodEng.gf
@@ -0,0 +1,19 @@
+concrete FoodEng of Food = {
+  lincat
+    Comment, Item, Kind, Quality = Str ;
+  lin
+    Pred item quality = item ++ "is" ++ quality ;
+    This kind = "this" ++ kind ;
+    That kind = "that" ++ kind ;
+    Mod quality kind = quality ++ kind ;
+    Wine = "wine" ;
+    Cheese = "cheese" ;
+    Fish = "fish" ;
+    Very quality = "very" ++ quality ;
+    Fresh = "fresh" ;
+    Warm = "warm" ;
+    Italian = "Italian" ;
+    Expensive = "expensive" ;
+    Delicious = "delicious" ;
+    Boring = "boring" ;
+}  
diff --git a/gf-book/examples/chapter2/FoodHin.gf b/gf-book/examples/chapter2/FoodHin.gf
new file mode 100644
--- /dev/null
+++ b/gf-book/examples/chapter2/FoodHin.gf
@@ -0,0 +1,24 @@
+
+ concrete FoodHin of Food = {
+   flags coding = utf8 ;
+   lincat Comment, Item, Kind, Quality = Str ;
+   lin
+     Pred item quality = item ++ quality ++ "है" ;
+     This kind = "यह" ++ kind ;
+     That kind = "वह" ++ kind ;
+     Mod quality kind = quality ++ kind ;
+     Wine = "मदिरा" ;
+     Cheese = "पनीर" ;
+     Fish = "मछली" ;
+     Very quality = "अति" ++ quality ;
+     Fresh = "ताज़ा" ;
+     Warm = "गरम" ;
+     Italian = "इटली" ; 
+     Expensive = "बहुमूल्य" ;
+     Delicious = "स्वादिष्ट" ;
+     Boring = "अरुचिकर" ;
+ }
+
+
+
+
diff --git a/gf-book/examples/chapter2/FoodIta.gf b/gf-book/examples/chapter2/FoodIta.gf
new file mode 100644
--- /dev/null
+++ b/gf-book/examples/chapter2/FoodIta.gf
@@ -0,0 +1,19 @@
+concrete FoodIta of Food = {
+  lincat
+    Comment, Item, Kind, Quality = Str ;
+  lin
+    Pred item quality = item ++ "è" ++ quality ;
+    This kind = "questo" ++ kind ;
+    That kind = "quel" ++ kind ;
+    Mod quality kind = kind ++ quality ;
+    Wine = "vino" ;
+    Cheese = "formaggio" ;
+    Fish = "pesce" ;
+    Very quality = "molto" ++ quality ;
+    Fresh = "fresco" ;
+    Warm = "caldo" ;
+    Italian = "italiano" ;
+    Expensive = "caro" ;
+    Delicious = "delizioso" ;
+    Boring = "noioso" ;
+}
diff --git a/gf-book/examples/chapter2/Letters.gf b/gf-book/examples/chapter2/Letters.gf
new file mode 100644
--- /dev/null
+++ b/gf-book/examples/chapter2/Letters.gf
@@ -0,0 +1,8 @@
+abstract Letters = {
+
+cat L ;
+fun 
+  a, b, c, d, e, f, g, h, i, j, k, l, m, 
+  n, o, p, q, r, s, t, u, v, w, x, y, z : L ;
+
+}
diff --git a/gf-book/examples/chapter2/LettersCnc.gf b/gf-book/examples/chapter2/LettersCnc.gf
new file mode 100644
--- /dev/null
+++ b/gf-book/examples/chapter2/LettersCnc.gf
@@ -0,0 +1,31 @@
+concrete LettersCnc of Letters = {
+
+  lincat L = Str ;
+  lin 
+    a = "a" ;
+    b = "b" ;
+    c = "c" ;
+    d = "d" ;
+    e = "e" ;
+    f = "f" ;
+    g = "g" ;
+    h = "h" ;
+    i = "i" ;
+    j = "j" ;
+    k = "k" ;
+    l = "l" ;
+    m = "m" ;
+    n = "n" ;
+    o = "o" ;
+    p = "p" ;
+    q = "q" ;
+    r = "r" ;
+    s = "s" ;
+    t = "t" ;
+    u = "u" ;
+    v = "v" ;
+    w = "w" ;
+    x = "x" ;
+    y = "y" ;
+    z = "z" ;
+}
diff --git a/gf-book/examples/chapter2/Strings.gf b/gf-book/examples/chapter2/Strings.gf
new file mode 100644
--- /dev/null
+++ b/gf-book/examples/chapter2/Strings.gf
@@ -0,0 +1,7 @@
+abstract Strings = Letters ** {
+
+cat S ;
+fun 
+  E : S ;
+  C : L -> S -> S ;
+}
diff --git a/gf-book/examples/chapter2/StringsBW.gf b/gf-book/examples/chapter2/StringsBW.gf
new file mode 100644
--- /dev/null
+++ b/gf-book/examples/chapter2/StringsBW.gf
@@ -0,0 +1,5 @@
+concrete StringsBW of Strings = LettersCnc ** {
+  lincat S = Str ;
+  lin E = [] ;
+  lin C head tail = tail ++ head ;
+}
diff --git a/gf-book/examples/chapter2/StringsFW.gf b/gf-book/examples/chapter2/StringsFW.gf
new file mode 100644
--- /dev/null
+++ b/gf-book/examples/chapter2/StringsFW.gf
@@ -0,0 +1,5 @@
+concrete StringsFW of Strings = LettersCnc ** {
+  lincat S = Str ;
+  lin E = [] ;
+  lin C head tail = head ++ tail ;
+}
diff --git a/gf-book/examples/chapter2/Ticket.gf b/gf-book/examples/chapter2/Ticket.gf
new file mode 100644
--- /dev/null
+++ b/gf-book/examples/chapter2/Ticket.gf
@@ -0,0 +1,10 @@
+abstract Ticket = {
+
+flags startcat = Request ;
+cat
+  Request ; Station ;
+fun 
+  Ticket : Station -> Station -> Request ;
+  Hamburg, Paris : Station ;
+
+}
diff --git a/gf-book/examples/chapter2/TicketEng.gf b/gf-book/examples/chapter2/TicketEng.gf
new file mode 100644
--- /dev/null
+++ b/gf-book/examples/chapter2/TicketEng.gf
@@ -0,0 +1,19 @@
+concrete TicketEng of Ticket = {
+
+lincat
+  Request, Station = Str ;
+lin 
+  Ticket X Y = 
+    ((("I" ++ ("would like" | "want") ++ "to get" |
+      ("may" | "can") ++ "I get" | 
+      "can you give me" |
+      []) ++ 
+        "a ticket") | 
+     []) ++ 
+     "from" ++ X ++ "to" ++ Y ++ 
+     ("please" | []) ;
+
+  Hamburg = "Hamburg" ;
+  Paris = "Paris" ;
+
+}
diff --git a/gf-book/examples/chapter2/foodEng.cf b/gf-book/examples/chapter2/foodEng.cf
new file mode 100644
--- /dev/null
+++ b/gf-book/examples/chapter2/foodEng.cf
@@ -0,0 +1,14 @@
+Pred.      Comment ::= Item "is" Quality
+This.      Item    ::= "this" Kind 
+That.      Item    ::= "that" Kind
+Mod.       Kind    ::= Quality Kind 
+Wine.      Kind    ::= "wine" 
+Cheese.    Kind    ::= "cheese" 
+Fish.      Kind    ::= "fish"
+Very.      Quality ::= "very" Quality
+Fresh.     Quality ::= "fresh" 
+Warm.      Quality ::= "warm" 
+Italian.   Quality ::= "Italian" 
+Expensive. Quality ::= "expensive" 
+Delicious. Quality ::= "delicious" 
+Boring.    Quality ::= "boring"
diff --git a/gf-book/examples/chapter2/foodIta.cf b/gf-book/examples/chapter2/foodIta.cf
new file mode 100644
--- /dev/null
+++ b/gf-book/examples/chapter2/foodIta.cf
@@ -0,0 +1,14 @@
+Pred.      Comment ::= Item "è" Quality
+This.      Item    ::= "questo" Kind 
+That.      Item    ::= "quel" Kind
+Mod.       Kind    ::= Kind Quality
+Wine.      Kind    ::= "vino" 
+Cheese.    Kind    ::= "formaggio"
+Fish.      Kind    ::= "pesce"
+Very.      Quality ::= "molto" Quality
+Fresh.     Quality ::= "fresco" 
+Warm.      Quality ::= "caldo" 
+Italian.   Quality ::= "italiano" 
+Expensive. Quality ::= "caro" 
+Delicious. Quality ::= "delizioso" 
+Boring.    Quality ::= "noioso"
diff --git a/gf-book/examples/chapter3/Arabic.gf b/gf-book/examples/chapter3/Arabic.gf
new file mode 100644
--- /dev/null
+++ b/gf-book/examples/chapter3/Arabic.gf
@@ -0,0 +1,118 @@
+resource Arabic = {
+oper
+  Root    : Type = {F,C,L : Str} ;
+  Pattern : Type = Root -> Str ;
+
+  Filling : Type = {F,FC,CL,L : Str} ;
+
+  fill : Filling -> Root -> Str = \p,r ->
+    p.F + r.F + p.FC + r.C + p.CL + r.L + p.L ;
+
+  dfill : Filling -> Root -> Str = \p,r ->
+    p.F + r.F + p.FC + r.C + r.C + p.CL + r.L + p.L ;
+
+  getRoot : Str -> Root = \s -> case s of {
+    F@? + C@? + L@? => {F = F ; C = C ; L = L} ;
+    _ => Predef.error ("cannot get root from" ++ s)
+    } ;
+
+  getPattern : Str -> Pattern = \s -> case s of {
+    F + "F" + FC + "CC" + CL + "L" + L => 
+      dfill {F = F ; FC = FC ; CL = CL ; L = L} ;
+    F + "F" + FC + "C" + CL + "L" + L => 
+      fill {F = F ; FC = FC ; CL = CL ; L = L} ;
+    _ => Predef.error ("cannot get pattern from" ++ s)
+    } ;
+
+  word : Str -> Str -> Str = \p,r ->
+    getPattern p (getRoot r) ;
+
+param
+  Number = Sg | Dl | Pl ;
+  Gender = Masc | Fem ;
+  Tense  = Perf | Impf ;
+
+  VPer = Vp3 Number Gender | Vp2Sg Gender | Vp2Dl | Vp2Pl Gender | Vp1Sg | Vp1Pl ;
+
+oper
+  Verb : Type = {s : Tense => VPer => Str} ;  
+
+  pattV_u : Tense -> VPer -> Pattern = \t,v -> getPattern (case t of {
+    Perf => case v of {
+      Vp3 Sg Masc => "FaCaLa" ;
+      Vp3 Sg Fem  => "FaCaLat" ;
+      Vp3 Dl Masc => "FaCaLaA" ;
+      Vp3 Dl Fem  => "FaCaLataA" ;
+      Vp3 Pl Masc => "FaCaLuwA" ;
+      Vp3 Pl Fem  => "FaCaLona" ;
+
+      Vp2Sg  Masc => "FaCaLota" ;
+      Vp2Sg  Fem  => "FaCaLoti" ;
+      Vp2Dl       => "FaCaLotumaA" ;
+      Vp2Pl  Masc => "FaCaLotum" ;
+      Vp2Pl  Fem  => "FaCaLotunv2a" ;
+       
+      Vp1Sg       => "FaCaLotu" ;
+      Vp1Pl       => "FaCaLonaA"
+      } ;
+    Impf => case v of {
+      Vp3 Sg Masc => "yaFoCuLu" ;
+      Vp3 Sg Fem  => "taFoCuLu" ;
+      Vp3 Dl Masc => "yaFoCuLaAni" ;
+      Vp3 Dl Fem  => "taFoCuLaAni" ;
+      Vp3 Pl Masc => "yaFoCuLuwna" ;
+      Vp3 Pl Fem  => "yaFoCuLna" ;
+
+      Vp2Sg  Masc => "taFoCuLu" ;
+      Vp2Sg  Fem  => "taFoCuLiyna" ;
+      Vp2Dl       => "taFoCuLaAni" ;
+      Vp2Pl  Masc => "taFoCuLuwna" ;
+      Vp2Pl  Fem  => "taFoCuLona" ;
+       
+      Vp1Sg       => "A?aFoCuLu" ;
+      Vp1Pl       => "naFoCuLu"
+      }
+   }) ;
+
+  u_Verb : Str -> Verb = \s -> {
+    s = \\t,p => pattV_u t p (getRoot s) ;
+    } ;
+
+-- for html
+
+  tag : Str -> Str = \t -> "<" + t + ">" ;
+  etag : Str -> Str = \t -> "</" + t + ">" ;
+  atag : Str -> Str -> Str = \t,a -> "<" + t ++ a + ">" ;
+
+  intag : Str -> Str -> Str = \t,s -> tag t ++ s ++ etag t ;
+  intagAttr : Str -> Str -> Str -> Str = \t,a,s -> atag t a ++ s ++ etag t ;
+
+  verbTable : Verb -> Str = \v -> 
+    let 
+      vsp = v.s ! Perf ;
+      vsi = v.s ! Impf ;
+      tr : Str -> Str = intag "tr" ;
+      td : Str -> Str = intag "td" ;
+      ts : Str -> Str = \s -> td ("\"" ++ s ++ "\"") ;
+      trs : Str -> Str -> VPer -> Str = \s,n,v -> 
+        tr (td s ++ td n ++ ts (vsp ! v) ++ ts (vsi ! v))
+    in 
+    intagAttr "table" "border=1" (
+       tr ((td "Persona") ++ (td "Numerus") ++ (td "Perfectum") ++ (td "Imperfectum")) ++
+       trs "3. masc." "sing." (Vp3 Sg Masc) ++
+       trs "3. fem."  "sing." (Vp3 Sg Fem) ++
+       trs "2. masc." "sing." (Vp2Sg Masc) ++
+       trs "2. fem."  "sing." (Vp2Sg Fem) ++
+       trs "1."       "sing." (Vp1Sg) ++
+       trs "3. masc." "dual." (Vp3 Dl Masc) ++
+       trs "3. fem."  "dual." (Vp3 Dl Fem) ++
+       trs "2."       "dual." (Vp2Dl) ++
+       trs "3. masc." "plur." (Vp3 Pl Masc) ++
+       trs "3. fem."  "plur." (Vp3 Pl Fem) ++
+       trs "2. masc." "plur." (Vp2Pl Masc) ++
+       trs "2. fem."  "plur." (Vp2Pl Fem) ++
+       trs "1."       "plur." (Vp1Pl)
+      ) ;
+
+
+}
diff --git a/gf-book/examples/chapter3/Discont.gf b/gf-book/examples/chapter3/Discont.gf
new file mode 100644
--- /dev/null
+++ b/gf-book/examples/chapter3/Discont.gf
@@ -0,0 +1,11 @@
+abstract Discont = {
+  cat 
+    S ; Cl ; NP ; VP ; AP ; 
+  fun 
+    DeclCl  : Cl -> S ;
+    QuestCl : Cl -> S ;
+    PredVP  : NP -> VP -> Cl ; 
+    CompAP  : AP -> VP ;
+    John : NP ;
+    Old : AP ;
+}
diff --git a/gf-book/examples/chapter3/DiscontEng.gf b/gf-book/examples/chapter3/DiscontEng.gf
new file mode 100644
--- /dev/null
+++ b/gf-book/examples/chapter3/DiscontEng.gf
@@ -0,0 +1,21 @@
+concrete DiscontEng of Discont = {
+  param
+    SForm = SDecl | SQuest ;
+  lincat 
+    S, NP, AP = Str ;
+    Cl = SForm => Str ;
+    VP = {verb,comp : Str} ; 
+  lin 
+    DeclCl  cl = cl ! SDecl ;
+    QuestCl cl = cl ! SQuest ;
+    PredVP np vp = table {
+      SDecl  => np ++ vp.verb ++ vp.comp ;
+      SQuest => vp.verb ++ np ++ vp.comp
+      } ;
+    CompAP ap = {
+      verb = "is" ;
+      comp = ap
+      } ;
+    John = "John" ;
+    Old = "old" ;
+}
diff --git a/gf-book/examples/chapter3/Foods.gf b/gf-book/examples/chapter3/Foods.gf
new file mode 100644
--- /dev/null
+++ b/gf-book/examples/chapter3/Foods.gf
@@ -0,0 +1,13 @@
+abstract Foods = {
+  flags startcat = Comment ;
+  cat
+    Comment ; Item ; Kind ; Quality ;
+  fun
+    Pred : Item -> Quality -> Comment ;
+    This, That, These, Those : Kind -> Item ;
+    Mod : Quality -> Kind -> Kind ;
+    Wine, Cheese, Fish, Pizza : Kind ;
+    Very : Quality -> Quality ;
+    Fresh, Warm, Italian, 
+      Expensive, Delicious, Boring : Quality ;
+}
diff --git a/gf-book/examples/chapter3/FoodsEng.gf b/gf-book/examples/chapter3/FoodsEng.gf
new file mode 100644
--- /dev/null
+++ b/gf-book/examples/chapter3/FoodsEng.gf
@@ -0,0 +1,40 @@
+concrete FoodsEng of Foods = {
+  lincat
+    Comment, Quality = {s : Str} ; 
+    Kind = {s : Number => Str} ; 
+    Item = {s : Str ; n : Number} ; 
+  lin
+    Pred item quality = 
+      {s = item.s ++ copula ! item.n ++ quality.s} ;
+    This  = det Sg "this" ;
+    That  = det Sg "that" ;
+    These = det Pl "these" ;
+    Those = det Pl "those" ;
+    Mod quality kind = 
+      {s = \\n => quality.s ++ kind.s ! n} ;
+    Wine = regNoun "wine" ;
+    Cheese = regNoun "cheese" ;
+    Fish = noun "fish" "fish" ;
+    Pizza = regNoun "pizza" ;
+    Very a = {s = "very" ++ a.s} ;
+    Fresh = adj "fresh" ;
+    Warm = adj "warm" ;
+    Italian = adj "Italian" ;
+    Expensive = adj "expensive" ;
+    Delicious = adj "delicious" ;
+    Boring = adj "boring" ;
+  param
+    Number = Sg | Pl ;
+  oper
+    det : Number -> Str -> 
+      {s : Number => Str} -> {s : Str ; n : Number} = 
+        \n,det,noun -> {s = det ++ noun.s ! n ; n = n} ;
+    noun : Str -> Str -> {s : Number => Str} = 
+      \man,men -> {s = table {Sg => man ; Pl => men}} ;
+    regNoun : Str -> {s : Number => Str} = 
+      \car -> noun car (car + "s") ;
+    adj : Str -> {s : Str} = 
+      \cold -> {s = cold} ;
+    copula : Number => Str = 
+      table {Sg => "is" ; Pl => "are"} ;
+}
diff --git a/gf-book/examples/chapter3/FoodsIta.gf b/gf-book/examples/chapter3/FoodsIta.gf
new file mode 100644
--- /dev/null
+++ b/gf-book/examples/chapter3/FoodsIta.gf
@@ -0,0 +1,32 @@
+concrete FoodsIta of Foods = open ResIta in {
+  lincat
+    Comment = {s : Str} ; 
+    Quality = Adjective ; 
+    Kind = Noun ; 
+    Item = NounPhrase ;
+  lin
+    Pred item quality = 
+      {s = item.s ++ copula ! item.n ++ 
+           quality.s ! item.g ! item.n} ;
+    This  = det Sg "questo" "questa" ;
+    That  = det Sg "quel"   "quella" ;
+    These = det Pl "questi" "queste" ;
+    Those = det Pl "quei"   "quelle" ;
+    Mod quality kind = {
+      s = \\n => kind.s ! n ++ quality.s ! kind.g ! n ;
+      g = kind.g
+      } ;
+    Wine = noun "vino" "vini" Masc ;
+    Cheese = noun "formaggio" "formaggi" Masc ;
+    Fish = noun "pesce" "pesci" Masc ;
+    Pizza = noun "pizza" "pizze" Fem ;
+    Very qual = {s = \\g,n => "molto" ++ qual.s ! g ! n} ;
+    Fresh = 
+      adjective "fresco" "fresca" "freschi" "fresche" ;
+    Warm = regAdj "caldo" ;
+    Italian = regAdj "italiano" ;
+    Expensive = regAdj "caro" ;
+    Delicious = regAdj "delizioso" ;
+    Boring = regAdj "noioso" ;
+}
+
diff --git a/gf-book/examples/chapter3/ResIta.gf b/gf-book/examples/chapter3/ResIta.gf
new file mode 100644
--- /dev/null
+++ b/gf-book/examples/chapter3/ResIta.gf
@@ -0,0 +1,36 @@
+resource ResIta = open Prelude in {
+  param
+    Number = Sg | Pl ;
+    Gender = Masc | Fem ;
+  oper
+    NounPhrase : Type = 
+      {s : Str ; g : Gender ; n : Number} ; 
+    Noun : Type = {s : Number => Str ; g : Gender} ;
+    Adjective : Type = {s : Gender => Number => Str} ;
+
+    det : Number -> Str -> Str -> Noun -> NounPhrase =
+      \n,m,f,cn -> {
+        s = table {Masc => m ; Fem => f} ! cn.g ++ 
+            cn.s ! n ;
+        g = cn.g ;
+        n = n
+      } ;
+    noun : Str -> Str -> Gender -> Noun =
+      \vino,vini,g -> {
+        s = table {Sg => vino ; Pl => vini} ;
+        g = g
+      } ;
+    adjective : (nero,nera,neri,nere : Str) -> Adjective =
+      \nero,nera,neri,nere -> {
+        s = table {
+          Masc => table {Sg => nero ; Pl => neri} ; 
+          Fem => table {Sg => nera ; Pl => nere}
+          }
+        } ;
+    regAdj : Str -> Adjective = \nero ->
+      let ner : Str = init nero 
+      in 
+      adjective nero (ner+"a") (ner+"i") (ner+"e") ;
+    copula : Number => Str = 
+      table {Sg => "è" ; Pl => "sono"} ;
+}
diff --git a/gf-book/examples/chapter4/Clothes.gf b/gf-book/examples/chapter4/Clothes.gf
new file mode 100644
--- /dev/null
+++ b/gf-book/examples/chapter4/Clothes.gf
@@ -0,0 +1,5 @@
+abstract Clothes = Comments ** {
+  fun
+    Shirt, Jacket : Kind ;
+    Comfortable, Elegant : Quality ;
+}
diff --git a/gf-book/examples/chapter4/ClothesEng.gf b/gf-book/examples/chapter4/ClothesEng.gf
new file mode 100644
--- /dev/null
+++ b/gf-book/examples/chapter4/ClothesEng.gf
@@ -0,0 +1,10 @@
+--# -path=.:present
+
+concrete ClothesEng of Clothes = CommentsEng ** 
+    open SyntaxEng, ParadigmsEng in {
+  lin
+    Shirt = mkCN (mkN "shirt") ;
+    Jacket = mkCN (mkN "jacket") ;
+    Comfortable = mkAP (mkA "comfortable") ;
+    Elegant = mkAP (mkA "elegant") ;
+}
diff --git a/gf-book/examples/chapter4/ClothesIta.gf b/gf-book/examples/chapter4/ClothesIta.gf
new file mode 100644
--- /dev/null
+++ b/gf-book/examples/chapter4/ClothesIta.gf
@@ -0,0 +1,8 @@
+concrete ClothesIta of Clothes = CommentsIta ** 
+    open SyntaxIta, ParadigmsIta in {
+  lin
+    Shirt = mkCN (mkN "camicia") ;
+    Jacket = mkCN (mkN "giacca") ;
+    Comfortable = mkAP (mkA "comodo") ;
+    Elegant = mkAP (mkA "elegante") ;
+}
diff --git a/gf-book/examples/chapter4/Comment.gf b/gf-book/examples/chapter4/Comment.gf
new file mode 100644
--- /dev/null
+++ b/gf-book/examples/chapter4/Comment.gf
@@ -0,0 +1,13 @@
+abstract Comment = {
+  flags startcat = Comment ;
+  cat
+    Comment ; Item ; Kind ; Quality ;
+  fun
+    Pred : Item -> Quality -> Comment ;
+    This, That, These, Those : Kind -> Item ;
+    Mod : Quality -> Kind -> Kind ;
+    Wine, Cheese, Fish, Pizza : Kind ;
+    Very : Quality -> Quality ;
+    Fresh, Warm, Italian, 
+      Expensive, Delicious, Boring : Quality ;
+}
diff --git a/gf-book/examples/chapter4/Comments.gf b/gf-book/examples/chapter4/Comments.gf
new file mode 100644
--- /dev/null
+++ b/gf-book/examples/chapter4/Comments.gf
@@ -0,0 +1,10 @@
+abstract Comments = {
+  flags startcat = Comment ;
+  cat
+    Comment ; Item ; Kind ; Quality ;
+  fun
+    Pred : Item -> Quality -> Comment ;
+    This, That, These, Those : Kind -> Item ;
+    Mod : Quality -> Kind -> Kind ;
+    Very : Quality -> Quality ;
+}
diff --git a/gf-book/examples/chapter4/CommentsEng.gf b/gf-book/examples/chapter4/CommentsEng.gf
new file mode 100644
--- /dev/null
+++ b/gf-book/examples/chapter4/CommentsEng.gf
@@ -0,0 +1,4 @@
+--# -path=.:present
+
+concrete CommentsEng of Comments = CommentsI with 
+  (Syntax = SyntaxEng) ;
diff --git a/gf-book/examples/chapter4/CommentsI.gf b/gf-book/examples/chapter4/CommentsI.gf
new file mode 100644
--- /dev/null
+++ b/gf-book/examples/chapter4/CommentsI.gf
@@ -0,0 +1,15 @@
+incomplete concrete CommentsI of Comments = open Syntax in {
+  lincat
+    Comment = Cl ; 
+    Item = NP ;
+    Kind = CN ;
+    Quality = AP ;
+  lin
+    Pred item quality = mkCl item quality ;
+    This kind = mkNP this_QuantSg kind ;
+    That kind = mkNP that_QuantSg kind ;
+    These kind = mkNP these_QuantPl kind ;
+    Those kind = mkNP those_QuantPl kind ;
+    Mod quality kind = mkCN quality kind ;
+    Very quality = mkAP very_AdA quality ;
+}
diff --git a/gf-book/examples/chapter4/CommentsIta.gf b/gf-book/examples/chapter4/CommentsIta.gf
new file mode 100644
--- /dev/null
+++ b/gf-book/examples/chapter4/CommentsIta.gf
@@ -0,0 +1,4 @@
+--# -path=.:present
+
+concrete CommentsIta of Comments = CommentsI with 
+  (Syntax = SyntaxIta) ;
diff --git a/gf-book/examples/chapter4/Computers.gf b/gf-book/examples/chapter4/Computers.gf
new file mode 100644
--- /dev/null
+++ b/gf-book/examples/chapter4/Computers.gf
@@ -0,0 +1,5 @@
+abstract Computers = Comments ** {
+  fun
+    Computer, HardDisk : Kind ;
+    Efficient, Slow : Quality ;
+}
diff --git a/gf-book/examples/chapter4/ComputersEng.gf b/gf-book/examples/chapter4/ComputersEng.gf
new file mode 100644
--- /dev/null
+++ b/gf-book/examples/chapter4/ComputersEng.gf
@@ -0,0 +1,10 @@
+--# -path=.:present
+
+concrete ComputersEng of Computers = CommentsEng ** 
+    open SyntaxEng, ParadigmsEng in {
+  lin
+    Computer = mkCN (mkN "computer") ;
+    HardDisk = mkCN (mkA "hard") (mkN "disk") ;
+    Efficient = mkAP (mkA "efficient") ;
+    Slow = mkAP (mkA "slow") ;
+}
diff --git a/gf-book/examples/chapter4/ComputersIta.gf b/gf-book/examples/chapter4/ComputersIta.gf
new file mode 100644
--- /dev/null
+++ b/gf-book/examples/chapter4/ComputersIta.gf
@@ -0,0 +1,9 @@
+concrete ComputersIta of Computers = 
+    CommentsIta ** open ResIta in {
+  lin
+    Computer = noun "computer" "computer" Masc ;
+    HardDisk = noun "disco rigido" "dischi rigidi" Masc ;
+    Efficient = adjective "efficiente" "efficiente" 
+                          "efficienti" "efficienti" ;
+    Slow = regAdj "lento" ;
+}
diff --git a/gf-book/examples/chapter4/DefArtGer.gf b/gf-book/examples/chapter4/DefArtGer.gf
new file mode 100644
--- /dev/null
+++ b/gf-book/examples/chapter4/DefArtGer.gf
@@ -0,0 +1,16 @@
+resource DefArtGer = {
+
+  param DetForm = DSg Gender Case | DPl Case ;
+  param Gender = Masc | Fem | Neutr ;
+  param Case = Nom | Acc | Dat | Gen ;
+
+  oper artDef : DetForm => Str = table {
+    DSg Masc Acc | DPl Dat => "den" ;
+    DSg (Masc | Neutr) Dat => "dem" ;
+    DSg (Masc | Neutr) Gen => "des" ;
+    DSg Neutr _ => "das" ;
+    DSg Fem (Nom | Acc) | DPl (Nom | Acc) => "die" ; 
+    _ => "der"
+    } ;
+
+}
diff --git a/gf-book/examples/chapter4/Foods.gf b/gf-book/examples/chapter4/Foods.gf
new file mode 100644
--- /dev/null
+++ b/gf-book/examples/chapter4/Foods.gf
@@ -0,0 +1,6 @@
+abstract Foods = Comments ** {
+  fun
+    Wine, Cheese, Fish, Pizza : Kind ;
+    Fresh, Warm, Italian, 
+      Expensive, Delicious, Boring : Quality ;
+}
diff --git a/gf-book/examples/chapter4/FoodsEng.gf b/gf-book/examples/chapter4/FoodsEng.gf
new file mode 100644
--- /dev/null
+++ b/gf-book/examples/chapter4/FoodsEng.gf
@@ -0,0 +1,16 @@
+--# -path=.:present
+
+concrete FoodsEng of Foods = CommentsEng ** 
+    open SyntaxEng, ParadigmsEng in {
+  lin
+    Wine = mkCN (mkN "wine") ;
+    Pizza = mkCN (mkN "pizza") ;
+    Cheese = mkCN (mkN "cheese") ;
+    Fish = mkCN (mkN "fish" "fish") ;
+    Fresh = mkAP (mkA "fresh") ;
+    Warm = mkAP (mkA "warm") ;
+    Italian = mkAP (mkA "Italian") ;
+    Expensive = mkAP (mkA "expensive") ;
+    Delicious = mkAP (mkA "delicious") ;
+    Boring = mkAP (mkA "boring") ;
+}
diff --git a/gf-book/examples/chapter4/FoodsIta.gf b/gf-book/examples/chapter4/FoodsIta.gf
new file mode 100644
--- /dev/null
+++ b/gf-book/examples/chapter4/FoodsIta.gf
@@ -0,0 +1,16 @@
+--# -path=.:present
+
+concrete FoodsIta of Foods = CommentsIta ** 
+    open SyntaxIta, ParadigmsIta in {
+  lin
+    Wine = mkCN (mkN "vino") ;
+    Pizza = mkCN (mkN "pizza") ;
+    Cheese = mkCN (mkN "formaggio") ;
+    Fish = mkCN (mkN "pesce") ;
+    Fresh = mkAP (mkA "fresco") ;
+    Warm = mkAP (mkA "caldo") ;
+    Italian = mkAP (mkA "italiano") ;
+    Expensive = mkAP (mkA "caro") ;
+    Delicious = mkAP (mkA "delizioso") ;
+    Boring = mkAP (mkA "noioso") ;
+}
diff --git a/gf-book/examples/chapter4/Shopping.gf b/gf-book/examples/chapter4/Shopping.gf
new file mode 100644
--- /dev/null
+++ b/gf-book/examples/chapter4/Shopping.gf
@@ -0,0 +1,2 @@
+abstract Shopping = Foods, Clothes ;
+
diff --git a/gf-book/examples/chapter4/ShoppingEng.gf b/gf-book/examples/chapter4/ShoppingEng.gf
new file mode 100644
--- /dev/null
+++ b/gf-book/examples/chapter4/ShoppingEng.gf
@@ -0,0 +1,4 @@
+--# -path=.:present
+
+concrete ShoppingEng of Shopping = FoodsEng, ClothesEng ;
+
diff --git a/gf-book/examples/chapter4/ShoppingIta.gf b/gf-book/examples/chapter4/ShoppingIta.gf
new file mode 100644
--- /dev/null
+++ b/gf-book/examples/chapter4/ShoppingIta.gf
@@ -0,0 +1,4 @@
+--# -path=.:present
+
+concrete ShoppingIta of Shopping = FoodsIta, ClothesIta ;
+
diff --git a/gf-book/examples/chapter4/SmallShopping.gf b/gf-book/examples/chapter4/SmallShopping.gf
new file mode 100644
--- /dev/null
+++ b/gf-book/examples/chapter4/SmallShopping.gf
@@ -0,0 +1,3 @@
+abstract SmallShopping = 
+  Foods - [Wine], 
+  Clothes [Kind,Quality,Shirt,Elegant] ;
diff --git a/gf-book/examples/chapter5/Foods.gf b/gf-book/examples/chapter5/Foods.gf
new file mode 100644
--- /dev/null
+++ b/gf-book/examples/chapter5/Foods.gf
@@ -0,0 +1,15 @@
+-- (c) 2009 Aarne Ranta under LGPL
+
+abstract Foods = {
+  flags startcat = Comment ;
+  cat
+    Comment ; Item ; Kind ; Quality ;
+  fun
+    Pred : Item -> Quality -> Comment ;
+    This, That, These, Those : Kind -> Item ;
+    Mod : Quality -> Kind -> Kind ;
+    Wine, Cheese, Fish, Pizza : Kind ;
+    Very : Quality -> Quality ;
+    Fresh, Warm, Italian, 
+      Expensive, Delicious, Boring : Quality ;
+}
diff --git a/gf-book/examples/chapter5/FoodsCat.gf b/gf-book/examples/chapter5/FoodsCat.gf
new file mode 100644
--- /dev/null
+++ b/gf-book/examples/chapter5/FoodsCat.gf
@@ -0,0 +1,7 @@
+--# -path=.:present
+
+-- (c) 2009 Jordi Saludes under LGPL
+
+concrete FoodsCat of Foods = FoodsI with 
+  (Syntax = SyntaxCat),
+  (LexFoods = LexFoodsCat) ;
diff --git a/gf-book/examples/chapter5/FoodsEng.gf b/gf-book/examples/chapter5/FoodsEng.gf
new file mode 100644
--- /dev/null
+++ b/gf-book/examples/chapter5/FoodsEng.gf
@@ -0,0 +1,28 @@
+--# -path=.:present
+
+concrete FoodsEng of Foods = 
+    open SyntaxEng,ParadigmsEng in {
+  lincat
+    Comment = Utt ; 
+    Item = NP ;
+    Kind = CN ;
+    Quality = AP ;
+  lin
+    Pred item quality = mkUtt (mkCl item quality) ;
+    This kind = mkNP this_Quant kind ;
+    That kind = mkNP that_Quant kind ;
+    These kind = mkNP this_Quant plNum kind ;
+    Those kind = mkNP that_Quant plNum kind ;
+    Mod quality kind = mkCN quality kind ;
+    Wine = mkCN (mkN "wine") ;
+    Pizza = mkCN (mkN "pizza") ;
+    Cheese = mkCN (mkN "cheese") ;
+    Fish = mkCN (mkN "fish" "fish") ;
+    Very quality = mkAP very_AdA quality ;
+    Fresh = mkAP (mkA "fresh") ;
+    Warm = mkAP (mkA "warm") ;
+    Italian = mkAP (mkA "Italian") ;
+    Expensive = mkAP (mkA "expensive") ;
+    Delicious = mkAP (mkA "delicious") ;
+    Boring = mkAP (mkA "boring") ;
+}
diff --git a/gf-book/examples/chapter5/FoodsFin.gf b/gf-book/examples/chapter5/FoodsFin.gf
new file mode 100644
--- /dev/null
+++ b/gf-book/examples/chapter5/FoodsFin.gf
@@ -0,0 +1,7 @@
+--# -path=.:present
+
+-- (c) 2009 Aarne Ranta under LGPL
+
+concrete FoodsFin of Foods = FoodsI with 
+  (Syntax = SyntaxFin),
+  (LexFoods = LexFoodsFin) ;
diff --git a/gf-book/examples/chapter5/FoodsGer.gf b/gf-book/examples/chapter5/FoodsGer.gf
new file mode 100644
--- /dev/null
+++ b/gf-book/examples/chapter5/FoodsGer.gf
@@ -0,0 +1,7 @@
+--# -path=.:present
+
+-- (c) 2009 Aarne Ranta under LGPL
+
+concrete FoodsGer of Foods = FoodsI with 
+  (Syntax = SyntaxGer),
+  (LexFoods = LexFoodsGer) ;
diff --git a/gf-book/examples/chapter5/FoodsI.gf b/gf-book/examples/chapter5/FoodsI.gf
new file mode 100644
--- /dev/null
+++ b/gf-book/examples/chapter5/FoodsI.gf
@@ -0,0 +1,29 @@
+-- (c) 2009 Aarne Ranta under LGPL
+
+incomplete concrete FoodsI of Foods = 
+    open Syntax, LexFoods in {
+  lincat
+    Comment = Utt ; 
+    Item = NP ;
+    Kind = CN ;
+    Quality = AP ;
+  lin
+    Pred item quality = mkUtt (mkCl item quality) ;
+    This kind = mkNP this_Det kind ;
+    That kind = mkNP that_Det kind ;
+    These kind = mkNP these_Det kind ;
+    Those kind = mkNP those_Det kind ;
+    Mod quality kind = mkCN quality kind ;
+    Very quality = mkAP very_AdA quality ;
+
+    Wine = mkCN wine_N ;
+    Pizza = mkCN pizza_N ;
+    Cheese = mkCN cheese_N ;
+    Fish = mkCN fish_N ;
+    Fresh = mkAP fresh_A ;
+    Warm = mkAP warm_A ;
+    Italian = mkAP italian_A ;
+    Expensive = mkAP expensive_A ;
+    Delicious = mkAP delicious_A ;
+    Boring = mkAP boring_A ;
+}
diff --git a/gf-book/examples/chapter5/FoodsIta.gf b/gf-book/examples/chapter5/FoodsIta.gf
new file mode 100644
--- /dev/null
+++ b/gf-book/examples/chapter5/FoodsIta.gf
@@ -0,0 +1,8 @@
+--# -path=.:present
+
+-- (c) 2009 Aarne Ranta under LGPL
+
+concrete FoodsIta of Foods = FoodsI with 
+  (Syntax = SyntaxIta),
+  (LexFoods = LexFoodsIta) ;
+
diff --git a/gf-book/examples/chapter5/FoodsSwe.gf b/gf-book/examples/chapter5/FoodsSwe.gf
new file mode 100644
--- /dev/null
+++ b/gf-book/examples/chapter5/FoodsSwe.gf
@@ -0,0 +1,7 @@
+--# -path=.:present
+
+-- (c) 2009 Aarne Ranta under LGPL
+
+concrete FoodsSwe of Foods = FoodsI with 
+  (Syntax = SyntaxSwe),
+  (LexFoods = LexFoodsSwe) ** {flags language = sv_SE;} ;
diff --git a/gf-book/examples/chapter5/LexFoods.gf b/gf-book/examples/chapter5/LexFoods.gf
new file mode 100644
--- /dev/null
+++ b/gf-book/examples/chapter5/LexFoods.gf
@@ -0,0 +1,15 @@
+-- (c) 2009 Aarne Ranta under LGPL
+
+interface LexFoods = open Syntax in {
+  oper
+    wine_N : N ;
+    pizza_N : N ;
+    cheese_N : N ;
+    fish_N : N ;
+    fresh_A : A ;
+    warm_A : A ;
+    italian_A : A ;
+    expensive_A : A ;
+    delicious_A : A ;
+    boring_A : A ;
+}
diff --git a/gf-book/examples/chapter5/LexFoodsCat.gf b/gf-book/examples/chapter5/LexFoodsCat.gf
new file mode 100644
--- /dev/null
+++ b/gf-book/examples/chapter5/LexFoodsCat.gf
@@ -0,0 +1,18 @@
+-- (c) 2009 Jordi Saludes under LGPL
+
+instance LexFoodsCat of LexFoods = 
+    open SyntaxCat, ParadigmsCat, (M = MorphoCat) in {
+  flags
+	coding = utf8 ;
+  oper
+    wine_N = mkN "vi" "vins" M.Masc ;
+    pizza_N = mkN "pizza" ;
+    cheese_N = mkN "formatge" ;
+    fish_N = mkN "peix" "peixos" M.Masc;
+    fresh_A = mkA "fresc" "fresca" "frescos" "fresques" "frescament";
+    warm_A = mkA "calent" ;
+    italian_A = mkA "italià" "italiana" "italians" "italianes" "italianament" ;
+    expensive_A = mkA "car" ;
+    delicious_A = mkA "deliciós" "deliciosa" "deliciosos" "delicioses" "deliciosament";
+    boring_A = mkA "aburrit" "aburrida" "aburrits" "aburrides" "aburridament" ;
+}
diff --git a/gf-book/examples/chapter5/LexFoodsEng.gf b/gf-book/examples/chapter5/LexFoodsEng.gf
new file mode 100644
--- /dev/null
+++ b/gf-book/examples/chapter5/LexFoodsEng.gf
@@ -0,0 +1,20 @@
+instance LexFoodsEng of LexFoods = open SyntaxEng, ParadigmsEng, IrregEng in {
+  oper
+    wine_N = mkN "wine" ;
+    pizza_N = mkN "pizza" ;
+    cheese_N = mkN "cheese" ;
+    fish_N = mkN "fish" "fish" ;
+    fresh_A = mkA "fresh" ;
+    warm_A = mkA "warm" ;
+    italian_A = mkA "Italian" ;
+    expensive_A = mkA "expensive" ;
+    delicious_A = mkA "delicious" ;
+    boring_A = mkA "boring" ;
+
+    eat_V2 = mkV2 eat_V ;
+    drink_V2 = mkV2 drink_V ;
+    pay_V2 = mkV2 pay_V ;
+    lady_N = mkN "lady" ;
+    gentleman_N = mkN "gentleman" "gentlemen" ;
+
+}
diff --git a/gf-book/examples/chapter5/LexFoodsFin.gf b/gf-book/examples/chapter5/LexFoodsFin.gf
new file mode 100644
--- /dev/null
+++ b/gf-book/examples/chapter5/LexFoodsFin.gf
@@ -0,0 +1,20 @@
+-- (c) 2009 Aarne Ranta under LGPL
+
+instance LexFoodsFin of LexFoods = 
+    open SyntaxFin, ParadigmsFin in {
+  oper
+    wine_N = mkN "viini" ;
+    pizza_N = mkN "pizza" ;
+    cheese_N = mkN "juusto" ;
+    fish_N = mkN "kala" ;
+    fresh_A = mkA "tuore" ;
+    warm_A = mkA 
+    (mkN "lämmin" "lämpimän" "lämmintä" "lämpimänä" "lämpimään" 
+         "lämpiminä" "lämpimiä" "lämpimien" "lämpimissä" "lämpimiin"
+	 ) 
+    "lämpimämpi" "lämpimin" ;
+    italian_A = mkA "italialainen" ;
+    expensive_A = mkA "kallis" ;
+    delicious_A = mkA "herkullinen" ;
+    boring_A = mkA "tylsä" ;
+}
diff --git a/gf-book/examples/chapter5/LexFoodsGer.gf b/gf-book/examples/chapter5/LexFoodsGer.gf
new file mode 100644
--- /dev/null
+++ b/gf-book/examples/chapter5/LexFoodsGer.gf
@@ -0,0 +1,16 @@
+-- (c) 2009 Aarne Ranta under LGPL
+
+instance LexFoodsGer of LexFoods = 
+    open SyntaxGer, ParadigmsGer in {
+  oper
+    wine_N = mkN "Wein" ;
+    pizza_N = mkN "Pizza" "Pizzen" feminine ;
+    cheese_N = mkN "Käse" "Käse" masculine ;
+    fish_N = mkN "Fisch" ;
+    fresh_A = mkA "frisch" ;
+    warm_A = mkA "warm" "wärmer" "wärmste" ;
+    italian_A = mkA "italienisch" ;
+    expensive_A = mkA "teuer" ;
+    delicious_A = mkA "köstlich" ;
+    boring_A = mkA "langweilig" ;
+}
diff --git a/gf-book/examples/chapter5/LexFoodsIta.gf b/gf-book/examples/chapter5/LexFoodsIta.gf
new file mode 100644
--- /dev/null
+++ b/gf-book/examples/chapter5/LexFoodsIta.gf
@@ -0,0 +1,16 @@
+-- (c) 2009 Aarne Ranta under LGPL
+
+instance LexFoodsIta of LexFoods = 
+    open SyntaxIta, ParadigmsIta in {
+  oper
+    wine_N = mkN "vino" ;
+    pizza_N = mkN "pizza" ;
+    cheese_N = mkN "formaggio" ;
+    fish_N = mkN "pesce" ;
+    fresh_A = mkA "fresco" ;
+    warm_A = mkA "caldo" ;
+    italian_A = mkA "italiano" ;
+    expensive_A = mkA "caro" ;
+    delicious_A = mkA "delizioso" ;
+    boring_A = mkA "noioso" ;
+}
diff --git a/gf-book/examples/chapter5/LexFoodsSwe.gf b/gf-book/examples/chapter5/LexFoodsSwe.gf
new file mode 100644
--- /dev/null
+++ b/gf-book/examples/chapter5/LexFoodsSwe.gf
@@ -0,0 +1,16 @@
+-- (c) 2009 Aarne Ranta under LGPL
+
+instance LexFoodsSwe of LexFoods = 
+    open SyntaxSwe, ParadigmsSwe in {
+  oper
+    wine_N = mkN "vin" "vinet" "viner" "vinerna" ;
+    pizza_N = mkN "pizza" ;
+    cheese_N = mkN "ost" ;
+    fish_N = mkN "fisk" ;
+    fresh_A = mkA "färsk" ;
+    warm_A = mkA "varm" ;
+    italian_A = mkA "italiensk" ;
+    expensive_A = mkA "dyr" ;
+    delicious_A = mkA "läcker" ;
+    boring_A = mkA "tråkig" ;
+}
diff --git a/gf-book/examples/chapter6/Aggregation.gf b/gf-book/examples/chapter6/Aggregation.gf
new file mode 100644
--- /dev/null
+++ b/gf-book/examples/chapter6/Aggregation.gf
@@ -0,0 +1,33 @@
+abstract Aggregation = {
+  cat S ; NP ; VP ;
+  data 
+    PredVP : NP -> VP -> S ;
+    ConjS  : S -> S -> S ;
+    ConjVP : VP -> VP -> VP ;
+    ConjNP : NP -> NP -> NP ;
+    Run, Walk : VP ;
+    John, Mary : NP ;
+
+  fun aggr : S -> S ; -- main aggregation function
+  def aggr (ConjS (PredVP x X) (PredVP y Y)) = 
+    ifS (eqNP x y) 
+      (PredVP x (ConjVP X Y)) 
+      (ifS (eqVP X Y) 
+         (PredVP (ConjNP x y) X)
+         (ConjS (PredVP x X) (PredVP y Y))) ;
+  fun ifS : Bool -> S -> S -> S ; -- if b then x else y 
+  def
+    ifS True  x _ = x ;
+    ifS False _ y = y ;
+  fun eqNP : NP -> NP -> Bool ;  -- x == y
+  def 
+    eqNP John John = True ;
+    eqNP Mary Mary = True ;
+    eqNP _ _ = False ;
+  fun eqVP : VP -> VP -> Bool ;  -- X == Y
+  def 
+    eqVP Run  Run  = True ;
+    eqVP Walk Walk = True ;
+    eqVP _ _ = False ;
+  cat Bool ; data True, False : Bool ;
+}
diff --git a/gf-book/examples/chapter6/AggregationEng.gf b/gf-book/examples/chapter6/AggregationEng.gf
new file mode 100644
--- /dev/null
+++ b/gf-book/examples/chapter6/AggregationEng.gf
@@ -0,0 +1,17 @@
+concrete AggregationEng of Aggregation = {
+
+lincat S, NP, VP = Str ;
+
+lin 
+  PredVP x y = x ++ y ;
+  ConjS  a b = a ++ "or" ++ b ;
+  ConjVP a b = a ++ "or" ++ b ;
+  ConjNP a b = a ++ "or" ++ b ;
+
+  Run = "runs" ;
+  Walk = "walks" ;
+  John = "John" ;
+  Mary = "Mary" ;
+
+}
+
diff --git a/gf-book/examples/chapter6/Arithm.gf b/gf-book/examples/chapter6/Arithm.gf
new file mode 100644
--- /dev/null
+++ b/gf-book/examples/chapter6/Arithm.gf
@@ -0,0 +1,30 @@
+abstract Arithm = {
+  cat
+    Prop ;                        -- proposition
+    Nat ;                         -- natural number
+  data
+    Zero : Nat ;                  -- 0
+    Succ : Nat -> Nat ;           -- the successor of x
+  fun
+    Even : Nat -> Prop ;          -- x is even
+    And  : Prop -> Prop -> Prop ; -- A and B
+
+  cat Less Nat Nat ; 
+  data LessZ : (y : Nat) -> Less Zero (Succ y) ;
+  data LessS : (x,y : Nat) -> Less x y -> Less (Succ x) (Succ y) ;
+
+  cat Span ;
+  data FromTo : (m,n : Nat) -> Less m n -> Span ;
+
+  fun one : Nat ;
+  def one = Succ Zero ;
+
+  fun twice : Nat -> Nat ;
+  def twice x = plus x x ;
+
+  fun plus : Nat -> Nat -> Nat ;
+  def 
+    plus x Zero = x ;
+    plus x (Succ y) = Succ (plus x y) ;
+
+} 
diff --git a/gf-book/examples/chapter6/Bin.gf b/gf-book/examples/chapter6/Bin.gf
new file mode 100644
--- /dev/null
+++ b/gf-book/examples/chapter6/Bin.gf
@@ -0,0 +1,50 @@
+abstract Bin = {
+
+cat Nat ; Bin ; Pos ;
+
+data 
+  Zero : Nat ; 
+  Succ : Nat -> Nat ;
+
+  BZero : Bin ;         -- 0
+  BPos  : Pos -> Bin ;  -- p
+  BOne  : Pos ;         -- 1
+  AZero : Pos -> Pos ;  -- p0
+  AOne  : Pos -> Pos ;  -- p1
+
+fun
+  bin2nat : Bin -> Nat ;
+def
+  bin2nat BZero = Zero ;
+  bin2nat (BPos p) = pos2nat p ;
+fun 
+  pos2nat : Pos -> Nat ;
+def
+  pos2nat BOne = one ;
+  pos2nat (AZero p) = twice (pos2nat p) ;
+  pos2nat (AOne  p) = Succ (twice (pos2nat p)) ;
+fun one : Nat ;
+def one = Succ Zero ;
+fun twice : Nat -> Nat ;
+def 
+  twice Zero = Zero ;
+  twice (Succ n) = Succ (Succ (twice n)) ;
+
+fun
+  nat2bin : Nat -> Bin ;
+def
+  nat2bin Zero = BZero ;
+  nat2bin (Succ n) = bSucc (nat2bin n) ;
+fun
+  bSucc : Bin -> Bin ;
+def
+  bSucc BZero = BPos BOne ;
+  bSucc (BPos p) = BPos (pSucc p) ;
+fun
+  pSucc : Pos -> Pos ;
+def
+  pSucc BOne = AZero BOne ;
+  pSucc (AZero p) = AOne p ;
+  pSucc (AOne p) = AZero (pSucc p) ;
+
+}
diff --git a/gf-book/examples/chapter6/Classes.gf b/gf-book/examples/chapter6/Classes.gf
new file mode 100644
--- /dev/null
+++ b/gf-book/examples/chapter6/Classes.gf
@@ -0,0 +1,28 @@
+abstract Classes = {
+
+flags 
+  startcat = Command ;
+
+cat
+  Command ;
+  Kind ;
+  Class ;
+  Instance Class Kind ;
+  Action Class ;
+  Device Kind ;
+
+fun
+  Act  : (c : Class) -> (k : Kind) -> Instance c k -> Action c -> Device k -> Command ;
+  The : (k : Kind) -> Device k ;
+
+  Light, Fan : Kind ;
+  Switchable, Dimmable : Class ;
+  
+  SwitchOn, SwitchOff : Action Switchable ;
+  Dim : Action Dimmable ;
+
+  switchable_Light : Instance Switchable Light ;
+  switchable_Fan : Instance Switchable Fan ;
+  dimmable_Light : Instance Dimmable Light ;
+
+}
diff --git a/gf-book/examples/chapter6/ClassesEng.gf b/gf-book/examples/chapter6/ClassesEng.gf
new file mode 100644
--- /dev/null
+++ b/gf-book/examples/chapter6/ClassesEng.gf
@@ -0,0 +1,29 @@
+--# -path=.:present
+
+concrete ClassesEng of Classes = open SyntaxEng, ParadigmsEng in {
+
+lincat
+  Command = Utt ;
+  Kind = CN ;
+  Class = {} ;
+  Instance = {} ;
+  Action = V2 ;
+  Device = NP ;
+
+lin
+  Act _ _ _ a d = mkUtt (mkImp a d) ;
+  The k = mkNP the_Det k ;
+
+  Light = mkCN (mkN "light") ;
+  Fan = mkCN (mkN "fan") ;
+  Switchable, Dimmable = <> ;
+  
+  SwitchOn = mkV2 (partV (mkV "switch") "on") ;
+  SwitchOff = mkV2 (partV (mkV "switch") "off") ;
+  Dim = mkV2 (mkV "dim") ;
+
+  switchable_Light = <> ;
+  switchable_Fan = <> ;
+  dimmable_Light = <> ;
+
+}
diff --git a/gf-book/examples/chapter6/DShopping.gf b/gf-book/examples/chapter6/DShopping.gf
new file mode 100644
--- /dev/null
+++ b/gf-book/examples/chapter6/DShopping.gf
@@ -0,0 +1,24 @@
+abstract DShopping = {
+  flags startcat = Comment ;
+  cat
+    Comment ; 
+    Dom ;
+    Item Dom ; 
+    Kind Dom ; 
+    Quality Dom ;
+  fun
+    DFood, DCloth : Dom ;
+
+    Pred : (d : Dom) -> Item d -> Quality d -> Comment ;
+    This, That : (d : Dom) -> Kind d -> Item d ;
+    Mod : (d : Dom) -> Quality d -> Kind d -> Kind d ;
+    Wine, Cheese, Fish : Kind DFood ;
+    Very : (d : Dom) -> Quality d -> Quality d ;
+    Fresh, Warm, Delicious, Boring : Quality DFood ;
+
+    Shirt, Jacket : Kind DCloth ;
+    Comfortable : Quality DCloth ;
+
+    Italian, Expensive, Elegant : (d : Dom) -> Quality d ;
+
+}
diff --git a/gf-book/examples/chapter6/DShoppingEng.gf b/gf-book/examples/chapter6/DShoppingEng.gf
new file mode 100644
--- /dev/null
+++ b/gf-book/examples/chapter6/DShoppingEng.gf
@@ -0,0 +1,33 @@
+--# -path=.:present
+
+concrete DShoppingEng of DShopping = open SyntaxEng, ParadigmsEng in {
+
+  lincat
+    Comment = Cl ; 
+    Item = NP ;
+    Kind = CN ;
+    Quality = AP ;
+  lin
+    Pred _ item quality = mkCl item quality ;
+    This _ kind = mkNP this_QuantSg kind ;
+    That _ kind = mkNP that_QuantSg kind ;
+    Mod _ quality kind = mkCN quality kind ;
+    Very _ quality = mkAP very_AdA quality ;
+
+    Shirt = mkCN (mkN "shirt") ;
+    Jacket = mkCN (mkN "jacket") ;
+    Wine = mkCN (mkN "wine") ;
+    Cheese = mkCN (mkN "cheese") ;
+    Fish = mkCN (mkN "fish" "fish") ;
+    Fresh = mkAP (mkA "fresh") ;
+    Warm = mkAP (mkA "warm") ;
+    Italian _ = mkAP (mkA "Italian") ;
+    Expensive _ = mkAP (mkA "expensive") ;
+    Elegant _ = mkAP (mkA "elegant") ;
+    Delicious = mkAP (mkA "delicious") ;
+    Boring = mkAP (mkA "boring") ;
+    Comfortable = mkAP (mkA "comfortable") ;
+
+    DFood, DCloth = {s = []} ;
+
+}
diff --git a/gf-book/examples/chapter6/Nat.gf b/gf-book/examples/chapter6/Nat.gf
new file mode 100644
--- /dev/null
+++ b/gf-book/examples/chapter6/Nat.gf
@@ -0,0 +1,22 @@
+abstract Nat = {
+  cat
+    Prop ;                        -- proposition
+    Nat ;                         -- natural number
+  data
+    Zero : Nat ;                  -- 0
+    Succ : Nat -> Nat ;           -- the successor of x
+  fun
+    Even : Nat -> Prop ;          -- x is even
+    And  : Prop -> Prop -> Prop ; -- A and B
+
+  fun one : Nat ;
+  def one = Succ Zero ;
+
+  fun twice : Nat -> Nat ;
+  def twice x = plus x x ;
+
+  fun plus : Nat -> Nat -> Nat ;
+  def 
+    plus x Zero = x ;
+    plus x (Succ y) = Succ (plus x y) ;
+}
diff --git a/gf-book/examples/chapter6/Smart.gf b/gf-book/examples/chapter6/Smart.gf
new file mode 100644
--- /dev/null
+++ b/gf-book/examples/chapter6/Smart.gf
@@ -0,0 +1,16 @@
+abstract Smart = {
+
+  cat
+    Command ;
+    Kind ; 
+    Device Kind ; 
+    Action Kind ; 
+
+  fun 
+    Act : (k : Kind) -> Action k -> Device k -> Command ;
+    The : (k : Kind) -> Device k ;  -- the light
+    Light, Fan : Kind ;
+    Dim : Action Light ;
+    SwitchOn, SwitchOff : (k : Kind) -> Action k ;
+
+}
diff --git a/gf-book/examples/chapter6/Verbs.gf b/gf-book/examples/chapter6/Verbs.gf
new file mode 100644
--- /dev/null
+++ b/gf-book/examples/chapter6/Verbs.gf
@@ -0,0 +1,22 @@
+abstract Verbs = {
+
+cat
+  S ; NP ; Subcat ; V Subcat ; Args Subcat ;
+
+fun
+  cIntr : Subcat ;
+  cTr   : Subcat ;
+  cS    : Subcat ;
+
+  aIntr : NP -> Args cIntr ;
+  aTr   : NP -> NP -> Args cTr ;
+  aS    : NP -> S  -> Args cS ;
+
+  pred  : (s : Subcat) -> V s -> Args s -> S ;
+
+  john, mary : NP ;
+  walk : V cIntr ;
+  love : V cTr ;
+  know : V cS ;
+
+}
diff --git a/gf-book/examples/chapter6/VerbsEng.gf b/gf-book/examples/chapter6/VerbsEng.gf
new file mode 100644
--- /dev/null
+++ b/gf-book/examples/chapter6/VerbsEng.gf
@@ -0,0 +1,22 @@
+concrete VerbsEng of Verbs = {
+
+lincat
+  S, NP, Subcat, V = Str ; Args = Str * Str ;
+
+lin
+  cIntr = [] ;
+  cTr   = [] ;
+  cS    = [] ;
+
+  aIntr su    = <su,[]> ;
+  aTr   su ob = <su,ob> ;
+  aS    su s  = <su,"that" ++ s> ;
+
+  pred _ v xs = xs.p1 ++ v ++ xs.p2 ;
+
+  john = "John" ; mary = "Mary" ;
+  walk = "walks" ;
+  love = "loves" ;
+  know = "knows" ;
+
+}
diff --git a/gf-book/examples/chapter7/Map.gf b/gf-book/examples/chapter7/Map.gf
new file mode 100644
--- /dev/null
+++ b/gf-book/examples/chapter7/Map.gf
@@ -0,0 +1,10 @@
+abstract Map = {
+flags startcat = Query ;
+cat
+  Query ; Input ; Place ; Click ;
+fun
+  GoFromTo   : Place -> Place -> Input ;
+  ThisPlace  : Click -> Place ;
+  QueryInput : Input -> Query ;
+  ClickCoord : Int -> Int -> Click ;
+}
diff --git a/gf-book/examples/chapter7/MapEng.gf b/gf-book/examples/chapter7/MapEng.gf
new file mode 100644
--- /dev/null
+++ b/gf-book/examples/chapter7/MapEng.gf
@@ -0,0 +1,17 @@
+concrete MapEng of Map = {
+lincat
+  Query        = {s : Str} ;
+  Input, Place = {s : Str ; p : Str} ;
+  Click        = {p : Str} ;
+lin
+  GoFromTo x y = {
+    s = "I want to go from" ++ x.s ++ "to" ++ y.s ; 
+    p = x.p ++ y.p
+    } ;
+  ThisPlace c = {
+    s = "this place" ; 
+    p = c.p
+    } ;
+  QueryInput i = {s = i.s ++ ";" ++ i.p} ;
+  ClickCoord x y = {p = "(" ++ x.s ++ "," ++ y.s ++ ")"} ;
+}
diff --git a/gf-book/examples/chapter7/Query.gf b/gf-book/examples/chapter7/Query.gf
new file mode 100644
--- /dev/null
+++ b/gf-book/examples/chapter7/Query.gf
@@ -0,0 +1,12 @@
+abstract Query = {
+  flags startcat=Question ;
+  cat 
+    Answer ; Question ; Object ;
+  fun 
+    Even   : Object -> Question ;
+    Odd    : Object -> Question ;
+    Prime  : Object -> Question ;
+    Number : Int -> Object ;
+    Yes    : Answer ;
+    No     : Answer ;
+}
diff --git a/gf-book/examples/chapter7/QueryEng.gf b/gf-book/examples/chapter7/QueryEng.gf
new file mode 100644
--- /dev/null
+++ b/gf-book/examples/chapter7/QueryEng.gf
@@ -0,0 +1,13 @@
+concrete QueryEng of Query = {
+  lincat 
+    Answer, Question, Object = Str ;
+  lin 
+    Even  = pred "even" ;
+    Odd   = pred "odd" ;
+    Prime = pred "prime" ;
+    Number i = i.s ;
+    Yes = "yes" ;
+    No = "no" ;
+  oper
+    pred : Str -> Str -> Str = \f,x -> "is" ++ x ++ f ;
+}
diff --git a/gf-book/examples/chapter7/QueryFin.gf b/gf-book/examples/chapter7/QueryFin.gf
new file mode 100644
--- /dev/null
+++ b/gf-book/examples/chapter7/QueryFin.gf
@@ -0,0 +1,13 @@
+concrete QueryFin of Query = {
+  lincat 
+    Answer, Question, Object = Str ;
+  lin 
+    Even  = pred "parillinen" ;
+    Odd   = pred "pariton" ;
+    Prime = pred "alkuluku" ;
+    Number i = i.s ;
+    Yes = "kyllä" ;
+    No = "ei" ;
+  oper
+    pred : Str -> Str -> Str = \f,x -> "onko" ++ x ++ f ;
+}
diff --git a/gf-book/examples/chapter8/Calculator.gf b/gf-book/examples/chapter8/Calculator.gf
new file mode 100644
--- /dev/null
+++ b/gf-book/examples/chapter8/Calculator.gf
@@ -0,0 +1,7 @@
+abstract Calculator = {
+flags startcat = Exp ;
+cat Exp ;
+fun
+  EPlus, EMinus, ETimes, EDiv : Exp -> Exp -> Exp ;
+  EInt : Int -> Exp ;
+}
diff --git a/gf-book/examples/chapter8/CalculatorC.gf b/gf-book/examples/chapter8/CalculatorC.gf
new file mode 100644
--- /dev/null
+++ b/gf-book/examples/chapter8/CalculatorC.gf
@@ -0,0 +1,10 @@
+concrete CalculatorC of Calculator = open Formal, Prelude in {
+lincat 
+  Exp = TermPrec ;
+lin
+  EPlus  = infixl 0 "+" ;
+  EMinus = infixl 0 "-" ;
+  ETimes = infixl 1 "*" ;
+  EDiv   = infixl 1 "/" ;
+  EInt i = constant i.s ;
+}
diff --git a/gf-book/examples/chapter8/CalculatorJ.gf b/gf-book/examples/chapter8/CalculatorJ.gf
new file mode 100644
--- /dev/null
+++ b/gf-book/examples/chapter8/CalculatorJ.gf
@@ -0,0 +1,13 @@
+concrete CalculatorJ of Calculator = open Prelude in {
+lincat 
+  Exp = SS ;
+lin
+  EPlus  = postfix "iadd" ;
+  EMinus = postfix "isub" ;
+  ETimes = postfix "imul" ;
+  EDiv   = postfix "idiv" ;
+  EInt i = ss ("ldc" ++ i.s) ;
+oper
+  postfix : Str -> SS -> SS -> SS = \op,x,y -> 
+    ss (x.s ++ ";" ++ y.s ++ ";" ++ op) ;
+}
diff --git a/gf-book/examples/chapter8/CalculatorP.gf b/gf-book/examples/chapter8/CalculatorP.gf
new file mode 100644
--- /dev/null
+++ b/gf-book/examples/chapter8/CalculatorP.gf
@@ -0,0 +1,14 @@
+concrete CalculatorP of Calculator = open Prelude in {
+
+lincat 
+  Exp = SS ;
+lin
+  EPlus  = infix "+" ;
+  EMinus = infix "-" ;
+  ETimes = infix "*" ;
+  EDiv   = infix "/" ;
+  EInt i = i ;
+oper
+  infix : Str -> SS -> SS -> SS = \f,x,y -> 
+    ss ("(" ++ x.s ++ f ++ y.s ++ ")") ;
+}
diff --git a/gf-book/examples/chapter8/CalculatorS.gf b/gf-book/examples/chapter8/CalculatorS.gf
new file mode 100644
--- /dev/null
+++ b/gf-book/examples/chapter8/CalculatorS.gf
@@ -0,0 +1,11 @@
+concrete CalculatorS of Calculator = open Prelude in {
+  lin
+    EPlus  = infix "plus" ;
+    EMinus = infix "minus" ;
+    ETimes = infix "times" ;
+    EDiv   = infix ["divided by"] ;
+    EInt i = i ;
+  oper
+    infix : Str -> SS -> SS -> SS = \op,x,y -> 
+      ss (x.s ++ op ++ y.s ++ "PAUSE") ;
+}
diff --git a/gf-book/examples/chapter8/Geometry.gf b/gf-book/examples/chapter8/Geometry.gf
new file mode 100644
--- /dev/null
+++ b/gf-book/examples/chapter8/Geometry.gf
@@ -0,0 +1,7 @@
+abstract Geometry = Logic ** {
+fun
+  Line, Point, Circle : Dom ;
+  Intersect, Parallel : Ind -> Ind -> Atom ;
+  Vertical : Ind -> Atom ;
+  Centre : Ind -> Ind ;
+}
diff --git a/gf-book/examples/chapter8/GeometryEng.gf b/gf-book/examples/chapter8/GeometryEng.gf
new file mode 100644
--- /dev/null
+++ b/gf-book/examples/chapter8/GeometryEng.gf
@@ -0,0 +1,13 @@
+--# -path=.:present
+
+concrete GeometryEng of Geometry = LogicEng ** 
+  open SyntaxEng, ParadigmsEng in {
+lin
+  Line = mkCN (mkN "line") ;
+  Point = mkCN (mkN "point") ; 
+  Circle = mkCN (mkN "circle") ;
+  Intersect = pred (mkV2 "intersect") ;
+  Parallel = pred (mkA2 (mkA "parallel") (mkPrep "to")) ;
+  Vertical = pred (mkA "vertical") ;
+  Centre = app (mkN2 (mkN "centre") (mkPrep "of")) ;
+}
diff --git a/gf-book/examples/chapter8/GeometryEngb.gf b/gf-book/examples/chapter8/GeometryEngb.gf
new file mode 100644
--- /dev/null
+++ b/gf-book/examples/chapter8/GeometryEngb.gf
@@ -0,0 +1,11 @@
+concrete GeometryEng of Geometry = LogicEng ** 
+  open SyntaxEng, ParadigmsEng in {
+lin
+  Line = mkN "line" ;
+  Point = mkN "point" ; 
+  Circle = mkN "circle" ;
+  Intersect = pred (mkV2 "intersect") ;
+  Parallel = pred (mkA2 (mkA "parallel") (mkPrep "to")) ;
+  Vertical = pred (mkA "vertical") ;
+  Centre = app (mkN2 (mkN "centre") (mkPrep "of")) ;
+}
diff --git a/gf-book/examples/chapter8/Geometryb.gf b/gf-book/examples/chapter8/Geometryb.gf
new file mode 100644
--- /dev/null
+++ b/gf-book/examples/chapter8/Geometryb.gf
@@ -0,0 +1,7 @@
+abstract Geometry = Logic ** {
+fun
+  Line, Point, Circle : Dom ;
+  Intersect, Parallel : Ind -> Ind -> Prop ;
+  Vertical : Ind -> Prop ;
+  Centre : Ind -> Ind ;
+}
diff --git a/gf-book/examples/chapter8/Graftal.gf b/gf-book/examples/chapter8/Graftal.gf
new file mode 100644
--- /dev/null
+++ b/gf-book/examples/chapter8/Graftal.gf
@@ -0,0 +1,7 @@
+-- (c) Krasimir Angelov 2009
+abstract Graftal = {
+  cat N; S;
+  fun z : N ;
+      s : N -> N ;
+      c : N -> S ;
+  }
diff --git a/gf-book/examples/chapter8/Logic.gf b/gf-book/examples/chapter8/Logic.gf
new file mode 100644
--- /dev/null
+++ b/gf-book/examples/chapter8/Logic.gf
@@ -0,0 +1,21 @@
+abstract Logic = {
+flags startcat = Stm ;
+cat
+  Stm ;        -- top-level statement 
+  Prop ;       -- proposition 
+  Atom ;       -- atomic formula
+  Ind ;        -- individual term 
+  Dom ;        -- domain expression
+  Var ;        -- variable
+  [Prop] {2} ; -- list of propositions, 2 or more
+  [Var] {1} ;  -- list of variables, 1 or more
+fun
+  SProp : Prop -> Stm ;
+  And, Or : [Prop] -> Prop ;
+  If  : Prop -> Prop -> Prop ;
+  Not : Prop -> Prop ;
+  PAtom : Atom -> Prop ;
+  All, Exist : [Var] -> Dom -> Prop -> Prop ;
+  IVar : Var -> Ind ;
+  VString : String -> Var ;
+}
diff --git a/gf-book/examples/chapter8/LogicBEng.gf b/gf-book/examples/chapter8/LogicBEng.gf
new file mode 100644
--- /dev/null
+++ b/gf-book/examples/chapter8/LogicBEng.gf
@@ -0,0 +1,38 @@
+concrete LogicEng of Logic = open 
+  SyntaxEng, (P = ParadigmsEng), SymbolicEng, Prelude in {
+lincat
+  Stm  = Text ;
+  Prop = S ;
+  Atom = Cl ; 
+  Ind  = NP ; 
+  Dom  = CN ; 
+  Var  = NP ; 
+  [Prop] = [S] ; 
+  [Var]  = NP ; 
+lin
+  SProp = mkText ;
+  And = mkS and_Conj ;      -- A, B ... and C
+  Or = mkS or_Conj ;        -- A, B ... or C
+  If A B =                  -- if A B
+    mkS (mkAdv if_Subj A) B ;  
+  Not A =                   -- it is not the case that A
+    mkS negativePol (mkCl 
+      (mkVP (mkNP the_Quant 
+         (mkCN case_CN A)))) ; 
+  All xs A B =              -- for all A's xs, B
+    mkS (mkAdv for_Prep 
+      (mkNP all_Predet (mkNP a_Quant 
+         plNum (mkCN A xs)))) B ;
+  Exist xs A B =            -- for some A's xs, B
+    mkS (mkAdv for_Prep 
+      (mkNP somePl_Det (mkCN A xs))) B ;
+  PAtom = mkS ;
+  IVar x = x ;
+  VString s = symb s ;
+  BaseProp A B = mkListS A B ; 
+  ConsProp A As = mkListS A As ;
+  BaseVar x = x ;
+  ConsVar x xs = mkNP and_Conj (mkListNP x xs) ;
+oper
+  case_CN : CN = mkCN (P.mkN "case") ;
+}
diff --git a/gf-book/examples/chapter8/LogicEng.gf b/gf-book/examples/chapter8/LogicEng.gf
new file mode 100644
--- /dev/null
+++ b/gf-book/examples/chapter8/LogicEng.gf
@@ -0,0 +1,39 @@
+concrete LogicEng of Logic = open 
+  SyntaxEng, (P = ParadigmsEng), SymbolicEng, Prelude in {
+lincat
+  Stm  = Text ;
+  Prop = {pos,neg : S ; isAtom : Bool} ; 
+  Atom = Cl ; 
+  Ind  = NP ; 
+  Dom  = CN ; 
+  Var  = NP ; 
+  [Prop] = ListS ; 
+  [Var]  = NP ; 
+lin
+  SProp p = mkText p.pos ;
+  And ps = complexProp (mkS and_Conj ps) ;
+  Or ps = complexProp (mkS or_Conj ps) ;
+  If A B = complexProp (mkS if_then_Conj (mkListS A.pos B.pos)) ;
+  Not A = complexProp A.neg ;
+  All xs A B = complexProp (mkS (mkAdv for_Prep 
+    (mkNP all_Predet (mkNP a_Quant plNum (mkCN A xs)))) B.pos) ;
+  Exist xs A B = complexProp (mkS (mkAdv for_Prep 
+    (mkNP somePl_Det (mkCN A xs))) B.pos) ;
+  PAtom p = 
+    {pos = mkS p ; neg = mkS negativePol p ; isAtom = True} ;
+  IVar x = x ;
+  VString s = symb s ;
+  BaseProp A B = mkListS A.pos B.pos ; 
+  ConsProp A As = mkListS A.pos As ;
+  BaseVar x = x ;
+  ConsVar x xs = mkNP and_Conj (mkListNP x xs) ;
+oper 
+  complexProp : S -> {pos,neg : S ; isAtom : Bool} = \s -> {
+    pos = s ; 
+    neg = negS s ; 
+    isAtom = False 
+    } ;
+  negS : S -> S = \s -> mkS negativePol (mkCl (mkNP it_Pron) 
+      (mkNP the_Quant (mkCN (mkCN (P.mkN "case")) s))) ; 
+  if_Then_Conj : Conj = P.mkConj "if" "then" ;
+}
diff --git a/gf-book/examples/chapter8/Logicb.gf b/gf-book/examples/chapter8/Logicb.gf
new file mode 100644
--- /dev/null
+++ b/gf-book/examples/chapter8/Logicb.gf
@@ -0,0 +1,11 @@
+abstract Logic = {
+cat
+  Prop ; Ind ; Dom ; Var ; [Prop] {2} ; [Var] {1} ;
+fun
+  And, Or : [Prop] -> Prop ;
+  If : Prop -> Prop -> Prop ;
+  Not : Prop -> Prop ;
+  All, Exist : [Var] -> Dom -> Prop -> Prop ;
+  IVar : Var -> Ind ;
+  VString : String -> Var ;
+}
diff --git a/gf-book/examples/chapter8/Sierpinski.gf b/gf-book/examples/chapter8/Sierpinski.gf
new file mode 100644
--- /dev/null
+++ b/gf-book/examples/chapter8/Sierpinski.gf
@@ -0,0 +1,16 @@
+concrete Sierpinski of Graftal = {
+  lincat N = {a : Str; b : Str} ;
+  lincat S = {s : Str} ;
+
+  lin z = {a = A; b = B} ;
+  lin s x = {
+    a = x.b ++ R ++ x.a ++ R ++ x.b ; 
+    b = x.a ++ L ++ x.b ++ L ++ x.a
+    } ;
+  lin c x = {s = "newpath 300 550 moveto" ++ x.a ++ "stroke showpage"} ;
+
+  oper A : Str = "0 2 rlineto" ;
+  oper B : Str = "0 2 rlineto" ;
+  oper L : Str = "+60 rotate" ;
+  oper R : Str = "-60 rotate" ;
+}
diff --git a/gf-book/examples/chapter9/Anaphora.gf b/gf-book/examples/chapter9/Anaphora.gf
new file mode 100644
--- /dev/null
+++ b/gf-book/examples/chapter9/Anaphora.gf
@@ -0,0 +1,17 @@
+abstract Anaphora = TestSemantics - [she_NP] ** {
+
+cat
+  Proof Prop ;
+
+fun
+  IfS : (A : S) -> (Proof (iS A) -> S) -> S ;
+
+  AnaNP : (A : CN) -> (a : Ind) -> Proof (iCN A a) -> NP ;
+
+  pe : (B : Ind -> Prop) -> Proof (Exist B) -> Ind ;
+  qe : (B : Ind -> Prop) -> (c : Proof (Exist B)) -> Proof (B (pe B c)) ;
+
+  pc : (A,B : Prop) -> Proof (And A B) -> Proof A ;
+  qc : (A,B : Prop) -> Proof (And A B) -> Proof B ;
+
+}
diff --git a/gf-book/examples/chapter9/AnaphoraIta.gf b/gf-book/examples/chapter9/AnaphoraIta.gf
new file mode 100644
--- /dev/null
+++ b/gf-book/examples/chapter9/AnaphoraIta.gf
@@ -0,0 +1,17 @@
+concrete AnaphoraIta of Anaphora = TestSemanticsIta - [she_NP] ** 
+  open ResIta, Prelude, Formal in {
+
+lincat
+  Proof = {} ;
+
+lin
+  IfS A B = {s = "se" ++ A.s ++ B.s} ;
+
+  AnaNP cn _ _ = case cn.g of {
+    Masc => pronNP "lui" "lo" "gli" Masc  Sg Per3 ;
+    Fem  => pronNP "lei" "la" "le" Fem  Sg Per3
+    } ;
+
+  pe _ _ = constant [] ; ----
+
+}
diff --git a/gf-book/examples/chapter9/Grammar.gf b/gf-book/examples/chapter9/Grammar.gf
new file mode 100644
--- /dev/null
+++ b/gf-book/examples/chapter9/Grammar.gf
@@ -0,0 +1,39 @@
+abstract Grammar = {
+
+  flags startcat = S ;
+
+  cat 
+    S ; Cl ; NP ; VP ; AP ; CN ; 
+    Det ; N ; A ; V ; V2 ; AdA ; 
+    Tense ; Pol ;
+    Conj ;
+  data
+    UseCl   : Tense -> Pol -> Cl -> S ;
+    PredVP  : NP -> VP -> Cl ;
+    ComplV2 : V2 -> NP -> VP ;
+    DetCN   : Det -> CN -> NP ;
+    ModCN   : AP -> CN -> CN ;
+
+    CompAP  : AP -> VP ;
+    AdAP    : AdA -> AP -> AP ;
+
+    ConjS   : Conj -> S  -> S  -> S ;
+    ConjNP  : Conj -> NP -> NP -> NP ;
+
+    UseV    : V -> VP ;
+    UseN    : N -> CN ;
+    UseA    : A -> AP ;
+
+    a_Det, the_Det, every_Det : Det ;
+    this_Det, these_Det : Det ;
+    that_Det, those_Det : Det ;
+    i_NP, she_NP, we_NP : NP ;
+    very_AdA : AdA ;
+
+    Pos, Neg : Pol ;
+    Pres, Perf : Tense ;
+
+    and_Conj, or_Conj : Conj ;
+
+  
+}
diff --git a/gf-book/examples/chapter9/GrammarIta.gf b/gf-book/examples/chapter9/GrammarIta.gf
new file mode 100644
--- /dev/null
+++ b/gf-book/examples/chapter9/GrammarIta.gf
@@ -0,0 +1,141 @@
+concrete GrammarIta of Grammar = open ResIta, Prelude in {
+  lincat  
+    S  = {s : Str} ;
+    Cl = {s : ResIta.Tense => Bool => Str} ; 
+    NP = ResIta.NP ;  
+      -- {s : Case => {clit,obj : Str ; isClit : Bool} ; a : Agr} ; 
+    VP = ResIta.VP ;  
+      -- {v : Verb ; clit : Str ; clitAgr : ClitAgr ; obj : Agr => Str} ;
+    AP = {s : Gender => Number => Str ; isPre : Bool} ;
+    CN = Noun ;           -- {s : Number => Str ; g : Gender} ;
+    Det = {s : Gender => Case => Str ; n : Number} ;
+    N = Noun ;            -- {s : Number => Str ; g : Gender} ;
+    A = Adj ;             -- {s : Gender => Number => Str ; isPre : Bool} ;
+    V = Verb ;            -- {s : VForm => Str ; aux : Aux} ;
+    V2 = Verb ** {c : Case} ;
+    AdA = {s : Str} ;
+    Pol = {s : Str ; b : Bool} ;
+    Tense = {s : Str ; t : ResIta.Tense} ;
+    Conj = {s : Str ; n : Number} ;
+  lin
+    UseCl t p cl = {s = t.s ++ p.s ++ cl.s ! t.t ! p.b} ; 
+    PredVP np vp = 
+      let 
+        subj = (np.s ! Nom).obj ;
+        obj  = vp.obj ! np.a ;
+        clit = vp.clit ;
+        verb = table {
+          Pres => agrV vp.v np.a ;
+          Perf => agrV (auxVerb vp.v.aux) np.a ++ agrPart vp.v np.a vp.clitAgr
+          }
+      in {
+        s = \\t,b => subj ++ neg b ++ clit ++ verb ! t ++ obj
+      } ;
+
+    ComplV2 v2 np = 
+      let
+        nps = np.s ! v2.c
+      in {
+        v = v2 ; 
+        clit = nps.clit ; 
+        clitAgr = case <nps.isClit,v2.c> of {
+          <True,Acc> => CAgr np.a ;
+          _ => CAgrNo
+          } ;
+        obj  = \\_ => nps.obj
+        } ;
+
+    UseV v = {
+      v = v ; 
+      clit = [] ; 
+      clitAgr = CAgrNo ;
+      obj = \\_ => []
+      } ;
+
+    DetCN det cn = {
+      s = \\c => {
+        obj = det.s ! cn.g ! c ++ cn.s ! det.n ; 
+        clit = [] ; 
+        isClit = False
+        } ;
+      a = Ag cn.g det.n Per3
+      } ;
+
+    ModCN ap cn = {
+      s = \\n => preOrPost ap.isPre (ap.s ! cn.g ! n) (cn.s ! n) ;
+      g = cn.g
+      } ;
+
+    CompAP ap = {
+      v = essere_V ; 
+      clit = [] ; 
+      clitAgr = CAgrNo ;
+      obj = \\ag => case ag of {
+        Ag g n _ => ap.s ! g ! n
+        }
+      } ;
+
+    AdAP ada ap = {
+      s = \\g,n => ada.s ++ ap.s ! g ! n ;
+      isPre = ap.isPre ;
+      } ;
+
+    ConjNP co nx ny = {
+      s = \\c => {
+        obj = (nx.s ! c).obj ++ co.s ++ (ny.s ! c).obj ; 
+        clit = [] ; 
+        isClit = False
+        } ;
+      a = conjAgr co.n nx.a ny.a
+      } ;
+
+    ConjS co x y = {s = x.s ++ co.s ++ y.s} ;
+
+    UseN n = n ;
+
+    UseA adj = adj ;
+
+    a_Det = adjDet (mkAdj "un" "una" [] [] True) Sg ;
+
+    every_Det = adjDet (regAdj "ogni") Sg ;
+
+    the_Det = {
+      s = table {
+        Masc => table {
+          Nom | Acc => elisForms "lo" "l'" "il" ;
+          Dat => elisForms "allo" "all'" "al"
+          } ;
+        Fem => table {
+          Nom | Acc => elisForms "la" "'l" "la" ;
+          Dat => elisForms "alla" "all'" "alla"
+          }
+        } ;
+      n = Sg
+      } ;
+        
+    this_Det = adjDet (regAdj "questo") Sg ;
+    these_Det = adjDet (regAdj "questo") Pl ;
+    that_Det = adjDet quello_A Sg ;
+    those_Det = adjDet quello_A Pl ;
+
+    i_NP =   pronNP "io"  "mi" "mi" Masc Sg Per1 ;
+    she_NP = pronNP "lei" "la" "le" Fem  Sg Per3 ;
+    we_NP =  pronNP "noi" "ci" "ci" Masc Pl Per1 ;
+
+    very_AdA = ss "molto" ;
+
+    Pos  = {s = [] ; b = True} ;
+    Neg  = {s = [] ; b = False} ;
+    Pres = {s = [] ; t = ResIta.Pres} ;
+    Perf = {s = [] ; t = ResIta.Perf} ;
+
+    and_Conj = {s = "e" ; n = Pl} ;
+    or_Conj  = {s = "o" ; n = Sg} ;
+
+  oper
+    quello_A : Adj = mkAdj 
+      (elisForms "quello" "quell'" "quel") "quella"
+      (elisForms "quegli" "quegli" "quei") "quelle"
+      True ;
+
+}
diff --git a/gf-book/examples/chapter9/Logic.gf b/gf-book/examples/chapter9/Logic.gf
new file mode 100644
--- /dev/null
+++ b/gf-book/examples/chapter9/Logic.gf
@@ -0,0 +1,9 @@
+abstract Logic = {
+  cat
+    Prop ; Ind ;
+  data
+    And, Or, If : Prop -> Prop -> Prop ;
+    Not         : Prop -> Prop ;
+    All, Exist  : (Ind -> Prop) -> Prop ;
+    Past        : Prop -> Prop ;
+}
diff --git a/gf-book/examples/chapter9/LogicIta.gf b/gf-book/examples/chapter9/LogicIta.gf
new file mode 100644
--- /dev/null
+++ b/gf-book/examples/chapter9/LogicIta.gf
@@ -0,0 +1,54 @@
+concrete LogicIta of Logic = GrammarIta ** open ResIta, Formal, Prelude in {
+
+
+lincat
+  T, I = SS ;
+lin
+  And x y = infixSS "&" x y ;
+  Or x y = infixSS "v" x y ;
+  If x y = infixSS "->" x y ;
+  Not x = prefixSS "~" x ;
+  All P = prefixSS (parenth ("A" ++ P.$0)) P ;
+  Exist P = prefixSS (parenth ("E" ++ P.$0)) P ;
+  Past P = prefixSS "Past" P ;
+
+lin
+  iN f = star (f.s ! Sg) ;
+  iA f = star (f.s ! Masc ! Sg) ;
+  iV f = star (f.s ! VInf) ;
+  iV2 f x y = star (f.s ! VInf) (cc2 x y) ;
+
+oper star : Str -> SS -> SS = \f,x -> prefixSS f (ss (parenth x.s)) ;
+
+{-
+
+lincat
+  T, I = TermPrec ;
+lin
+  And = infixl 2 "&" ;
+  Or  = infixl 2 "v" ;
+  If  = infixr 1 "->" ;
+--  Not = prefix 3 "~" ;
+--  All : (I -> T) -> T ;
+--  Exist : (I -> T) -> T ;
+--  Past : T -> T ;
+
+lin
+  iS   : S -> T ;
+  iCl  : Cl -> T ;
+  iNP  : NP -> (I -> T) -> T ;
+  iVP  : VP -> I -> T ;
+  iAP  : AP -> I -> T ;
+  iCN  : CN -> I -> T ;
+  iDet : Det -> (I -> T) -> (I -> T) -> T ;
+  iN   : N -> I -> T ;
+  iA   : A -> I -> T ;
+  iV   : V -> I -> T ;
+  iV2  : V2 -> I -> I -> T ;
+  iAdA : AdA -> (I -> T) -> I -> T ;
+  iTense : Tense -> T -> T ;
+  iPol  : Pol  -> T -> T ;
+  iConj : Conj -> T -> T -> T ;
+-}
+
+}
diff --git a/gf-book/examples/chapter9/LogicSymb.gf b/gf-book/examples/chapter9/LogicSymb.gf
new file mode 100644
--- /dev/null
+++ b/gf-book/examples/chapter9/LogicSymb.gf
@@ -0,0 +1,13 @@
+concrete LogicSymb of Logic = open Formal, Prelude in {
+
+lincat
+  Prop, Ind = TermPrec ;
+lin
+  And = infixl 2 "\\&" ;
+  Or  = infixl 2 "\\vee" ;
+  If  = infixr 1 "\\sup" ;
+  Not = prefix 3 "\\sim" ;
+  All P = prefix 3 (parenth ("\\forall" ++ P.$0)) P ;
+  Exist P = prefix 3 (parenth ("\\exists" ++ P.$0)) P ;
+  Past = prefix 3 "P" ;
+}
diff --git a/gf-book/examples/chapter9/ParadigmsIta.gf b/gf-book/examples/chapter9/ParadigmsIta.gf
new file mode 100644
--- /dev/null
+++ b/gf-book/examples/chapter9/ParadigmsIta.gf
@@ -0,0 +1,47 @@
+resource ParadigmsIta = GrammarIta [N,A,V] ** 
+  open ResIta, GrammarIta, Prelude in {
+
+oper
+  masculine : Gender = Masc ;
+  feminine : Gender = Fem ;
+
+  accusative : Case = Acc ;
+  dative : Case = Dat ;
+
+  mkN = overload {
+    mkN : (vino : Str) -> N 
+      = \n -> lin N (regNoun n) ;
+    mkN : (uomo, uomini : Str) -> Gender -> N 
+      = \s,p,g -> lin N (mkNoun s p g) ;
+    } ;
+
+  mkA = overload {
+    mkA : (nero : Str) -> A 
+      = \a -> lin A (regAdj a) ;
+    mkA : (buono,buona,buoni,buone : Str) -> Bool -> A 
+      = \sm,sf,pm,pf,p -> lin A (mkAdj sm sf pm pf False) ;
+    } ;
+
+  preA : A -> A
+      = \a -> lin A {s = a.s ; isPre = True} ;
+
+  mkV = overload {
+    mkV : (finire : Str) -> V 
+      = \v -> lin V (regVerb v) ;
+    mkV : (andare,vado,vadi,va,andiamo,andate,vanno,andato : Str) -> V 
+      = \i,p1,p2,p3,p4,p5,p6,p -> lin V (mkVerb i p1 p2 p3 p4 p5 p6 p Avere) ;
+    } ;
+
+  essereV : V -> V
+    = \v -> lin V {s = v.s ; aux = Essere} ;
+
+  mkV2 = overload {
+    mkV2 : Str -> V2
+      = \s -> lin V2 (regVerb s ** {c = accusative}) ;
+    mkV2 : V -> V2
+      = \v -> lin V2 (v ** {c = accusative}) ;
+    mkV2 : V -> Case -> V2
+      = \v,c -> lin V2 (v ** {c = c}) ;
+    } ;
+
+}
diff --git a/gf-book/examples/chapter9/ResIta.gf b/gf-book/examples/chapter9/ResIta.gf
new file mode 100644
--- /dev/null
+++ b/gf-book/examples/chapter9/ResIta.gf
@@ -0,0 +1,178 @@
+resource ResIta = open Prelude in {
+
+-- parameters
+
+param
+  Number = Sg | Pl ;
+  Gender = Masc | Fem ;
+  Case   = Nom | Acc | Dat ;
+  Agr    = Ag Gender Number Person ;
+  Aux    = Avere | Essere ;
+  Tense  = Pres | Perf ;
+  Person = Per1 | Per2 | Per3 ;
+
+  VForm = VInf | VPres Number Person | VPart Gender Number ;
+
+  ClitAgr = CAgrNo | CAgr Agr ;
+
+-- parts of speech
+
+oper
+  VP = {
+    v : Verb ; 
+    clit : Str ; 
+    clitAgr : ClitAgr ; 
+    obj : Agr => Str
+    } ;
+  NP = {
+    s : Case => {clit,obj : Str ; isClit : Bool} ; 
+    a : Agr
+    } ; 
+
+-- the preposition word of an abstract case
+
+  prepCase : Case -> Str = \c -> case c of {
+    Dat => "a" ;
+    _ => []
+    } ;
+
+-- for predication
+
+  agrV : Verb -> Agr -> Str = \v,a -> case a of {
+    Ag _ n p => v.s ! VPres n p
+    } ;
+
+  auxVerb : Aux -> Verb = \a -> case a of {
+    Avere => 
+      mkVerb "avere" "ho" "hai" "ha" "abbiamo" "avete" "hanno" "avuto" Avere ;
+    Essere => 
+      mkVerb "essere" "sono" "sei" "è" "siamo" "siete" "sono" "stato" Essere
+    } ;
+
+  agrPart : Verb -> Agr -> ClitAgr -> Str = \v,a,c -> case v.aux of {
+    Avere  => case c of {
+      CAgr (Ag g n _) => v.s ! VPart g n ;
+      _ => v.s ! VPart Masc Sg
+      } ;
+    Essere => case a of {
+      Ag g n _ => v.s ! VPart g n
+      }
+    } ;
+
+  neg : Bool -> Str = \b -> case b of {True => [] ; False => "non"} ;
+
+  essere_V = auxVerb Essere ;
+
+-- for coordination
+
+  conjAgr : Number -> Agr -> Agr -> Agr = \n,xa,ya -> 
+    let 
+      x = agrFeatures xa ; y = agrFeatures ya
+    in Ag 
+      (conjGender x.g y.g) 
+      (conjNumber (conjNumber x.n y.n) n)
+      (conjPerson x.p y.p) ;
+
+  agrFeatures : Agr -> {g : Gender ; n : Number ; p : Person} = \a -> 
+    case a of {Ag g n p => {g = g ; n = n ; p = p}} ;
+
+  conjGender : Gender -> Gender -> Gender = \g,h ->
+    case g of {Masc => Masc ; _ => h} ;
+
+  conjNumber : Number -> Number -> Number = \m,n ->
+    case m of {Pl => Pl ; _ => n} ;
+
+  conjPerson : Person -> Person -> Person = \p,q ->
+    case <p,q> of {
+      <Per1,_> | <_,Per1> => Per1 ;
+      <Per2,_> | <_,Per2> => Per2 ;
+      _                   => Per3
+      } ;
+
+
+
+-- for morphology
+
+  Noun : Type = {s : Number => Str ; g : Gender} ;
+  Adj  : Type = {s : Gender => Number => Str ; isPre : Bool} ;
+  Verb : Type = {s : VForm => Str ; aux : Aux} ;
+
+  mkNoun : Str -> Str -> Gender -> Noun = \vino,vini,g -> {
+    s = table {Sg => vino ; Pl => vini} ;
+    g = g
+    } ;
+
+  regNoun : Str -> Noun = \vino -> case vino of {
+    fuo + c@("c"|"g") + "o" => mkNoun vino (fuo + c + "hi") Masc ;
+    ol  + "io" => mkNoun vino (ol + "i") Masc ;
+    vin + "o" => mkNoun vino (vin + "i") Masc ;
+    cas + "a" => mkNoun vino (cas + "e") Fem ;
+    pan + "e" => mkNoun vino (pan + "i") Masc ;
+    _ => mkNoun vino vino Masc 
+    } ;
+
+  mkAdj : (_,_,_,_ : Str) -> Bool -> Adj = \buono,buona,buoni,buone,p -> {
+    s = table {
+          Masc => table {Sg => buono ; Pl => buoni} ;
+          Fem  => table {Sg => buona ; Pl => buone}
+        } ;
+    isPre = p
+    } ;
+
+  regAdj : Str -> Adj = \nero -> case nero of {
+    ner + "o"  => mkAdj nero (ner + "a") (ner + "i") (ner + "e") False ;
+    verd + "e" => mkAdj nero nero (verd + "i") (verd + "i") False ;
+    _ => mkAdj nero nero nero nero False
+    } ;
+
+  mkVerb : (_,_,_,_,_,_,_,_ : Str) -> Aux -> Verb = 
+    \amare,amo,ami,ama,amiamo,amate,amano,amato,aux -> {
+    s = table {
+          VInf          => amare ;
+          VPres Sg Per1 => amo ;
+          VPres Sg Per2 => ami ;
+          VPres Sg Per3 => ama ;
+          VPres Pl Per1 => amiamo ;
+          VPres Pl Per2 => amate ;
+          VPres Pl Per3 => amano ;
+          VPart g n     => (regAdj amato).s ! g ! n
+          } ;
+    aux = aux
+    } ;
+
+  regVerb : Str -> Verb = \amare -> case amare of {
+    am  + "are" => mkVerb amare (am+"o") (am+"i") (am+"a") 
+                     (am+"iamo") (am+"ate") (am+"ano") (am+"ato") Avere ;
+    tem + "ere" => mkVerb amare (tem+"o") (tem+"i") (tem+"e") 
+                     (tem+"iamo") (tem+"ete") (tem+"ono") (tem+"uto") Avere ;
+    fin + "ire" => mkVerb amare (fin+"isco") (fin+"isci") (fin+"isce") 
+                     (fin+"iamo") (fin+"ite") (fin+"iscono") (fin+"ito") Avere
+    } ; 
+
+-- for structural words
+
+  adjDet : Adj -> Number -> {s : Gender => Case => Str ; n : Number} = 
+  \adj,n -> {
+    s = \\g,c => prepCase c ++ adj.s ! g ! n ;
+    n = n
+    } ;
+
+  pronNP : (s,a,d : Str) -> Gender -> Number -> Person -> NP = 
+  \s,a,d,g,n,p -> {
+    s = table {
+      Nom => {clit = [] ; obj = s  ; isClit = False} ;
+      Acc => {clit = a  ; obj = [] ; isClit = True} ;
+      Dat => {clit = d  ; obj = [] ; isClit = True}
+      } ;
+    a = Ag g n p
+    } ;
+
+-- phonological auxiliaries
+
+  vowel    : pattern Str = #("a" | "e" | "i" | "o" | "u" | "h") ;
+  s_impuro : pattern Str = #("z" | "s" + ("b"|"c"|"d"|"f"|"m"|"p"|"q"|"t")) ;
+
+  elisForms : (_,_,_ : Str) -> Str = \lo,l',il ->
+    pre {#s_impuro => lo ; #vowel => l' ; _ => il} ;
+
+}
diff --git a/gf-book/examples/chapter9/Semantics.gf b/gf-book/examples/chapter9/Semantics.gf
new file mode 100644
--- /dev/null
+++ b/gf-book/examples/chapter9/Semantics.gf
@@ -0,0 +1,39 @@
+abstract Semantics = Grammar, Logic ** {
+fun
+  iS     : S     -> Prop ;
+  iCl    : Cl    -> Prop ;
+  iNP    : NP    -> (Ind -> Prop) -> Prop ;
+  iVP    : VP    -> Ind -> Prop ;
+  iAP    : AP    -> Ind -> Prop ;
+  iCN    : CN    -> Ind -> Prop ;
+  iDet   : Det   -> (Ind -> Prop) -> (Ind -> Prop) -> Prop ;
+  iN     : N     -> Ind -> Prop ;
+  iA     : A     -> Ind -> Prop ;
+  iV     : V     -> Ind -> Prop ;
+  iV2    : V2    -> Ind -> Ind -> Prop ;
+  iAdA   : AdA   -> (Ind -> Prop) -> Ind -> Prop ;
+  iTense : Tense -> Prop -> Prop ;
+  iPol   : Pol   -> Prop -> Prop ;
+  iConj  : Conj  -> Prop -> Prop -> Prop ;
+def
+  iS  (UseCl t p cl) = iTense t (iPol p (iCl cl)) ;
+  iCl (PredVP np vp) = iNP np (iVP vp) ;
+  iVP (ComplV2 v2 np) i = iNP np (iV2 v2 i) ;
+  iNP (DetCN det cn) f = iDet det (iCN cn) f ;
+  iCN (ModCN ap cn) i = And (iAP ap i) (iCN cn i) ;
+  iVP (CompAP ap) i = iAP ap i ;
+  iAP (AdAP ada ap) i = iAdA ada (iAP ap) i ;
+  iS  (ConjS conj x y) = iConj conj (iS x) (iS y) ;
+  iNP (ConjNP conj x y) f = iConj conj (iNP x f) (iNP y f) ;
+  iVP (UseV v) i = iV v i ;
+  iAP (UseA a) i = iA a i ;
+  iCN (UseN n) i = iN n i ;
+  iDet a_Det d f = Exist (\x -> And (d x) (f x)) ;
+  iDet every_Det d f = All (\x -> If (d x) (f x)) ;
+  iPol Pos t = t ;
+  iPol Neg t = Not t ;
+  iTense Pres t = t ;
+  iTense Perf t = Past t ;
+  iConj and_Conj a b = And a b ;
+  iConj or_Conj  a b = Or a b ;
+}
diff --git a/gf-book/examples/chapter9/SemanticsIta.gf b/gf-book/examples/chapter9/SemanticsIta.gf
new file mode 100644
--- /dev/null
+++ b/gf-book/examples/chapter9/SemanticsIta.gf
@@ -0,0 +1,42 @@
+concrete SemanticsIta of Semantics = GrammarIta, LogicSymb ** open ResIta, Formal, Prelude in {
+
+lin
+  iN f = star (f.s ! Sg) ;
+  iA f = star (f.s ! Masc ! Sg) ;
+  iV f = star (f.s ! VInf) ;
+  iV2 f x y = star (f.s ! VInf) (cc2 x y) ;
+
+oper star : Str -> SS -> TermPrec = \f,x -> prefix 3 (f ++ "*") (constant (parenth x.s)) ;
+
+{-
+
+lincat
+  T, I = TermPrec ;
+lin
+  And = infixl 2 "&" ;
+  Or  = infixl 2 "v" ;
+  If  = infixr 1 "->" ;
+--  Not = prefix 3 "~" ;
+--  All : (I -> T) -> T ;
+--  Exist : (I -> T) -> T ;
+--  Past : T -> T ;
+
+lin
+  iS   : S -> T ;
+  iCl  : Cl -> T ;
+  iNP  : NP -> (I -> T) -> T ;
+  iVP  : VP -> I -> T ;
+  iAP  : AP -> I -> T ;
+  iCN  : CN -> I -> T ;
+  iDet : Det -> (I -> T) -> (I -> T) -> T ;
+  iN   : N -> I -> T ;
+  iA   : A -> I -> T ;
+  iV   : V -> I -> T ;
+  iV2  : V2 -> I -> I -> T ;
+  iAdA : AdA -> (I -> T) -> I -> T ;
+  iTense : Tense -> T -> T ;
+  iPol  : Pol  -> T -> T ;
+  iConj : Conj -> T -> T -> T ;
+-}
+
+}
diff --git a/gf-book/examples/chapter9/Syntax.gf b/gf-book/examples/chapter9/Syntax.gf
new file mode 100644
--- /dev/null
+++ b/gf-book/examples/chapter9/Syntax.gf
@@ -0,0 +1,47 @@
+interface Syntax = Grammar - 
+    [UseCl,PredVP,ComplV2,UseV,DetCN,ModCN,CompAP,AdAP,
+     ConjS,ConjNP,UseN,UseA,Pres,Perf,Pos,Neg] **
+  open Grammar in {
+
+oper
+  mkS = overload {
+    mkS : Cl -> S = UseCl Pres Pos ;
+    mkS : Tense -> Cl -> S = \t -> UseCl t Pos ;
+    mkS : Pol -> Cl -> S = UseCl Pres ;
+    mkS : Tense -> Pol -> Cl -> S = UseCl ;
+    mkS : Conj -> S -> S -> S = ConjS ;
+    } ;
+
+  mkCl = overload {
+    mkCl : NP -> V  -> Cl = \np,v -> PredVP np (UseV v) ;
+    mkCl : NP -> V2 -> NP -> Cl = \np,v,o -> PredVP np (ComplV2 v o) ;
+    mkCl : NP -> A  -> Cl = \np,a -> PredVP np (CompAP (UseA a)) ;
+    mkCl : NP -> AP -> Cl = \np,ap -> PredVP np (CompAP ap) ;
+    mkCl : NP -> VP -> Cl = PredVP ;
+    } ;
+
+  mkAP = overload {
+    mkAP : A -> AP = UseA ;
+    mkAP : AdA -> AP -> AP = AdAP ;
+    } ;
+
+  mkNP = overload {
+    mkNP : Det -> N -> NP = \d,n -> DetCN d (UseN n) ;
+    mkNP : Det -> CN -> NP = \d,n -> DetCN d n ;
+    mkNP : Conj -> NP -> NP -> NP = ConjNP ;
+    } ;
+
+  mkCN = overload {
+    mkCN : N  -> CN = UseN ;
+    mkCN : A  -> N  -> CN = \a,n -> ModCN (UseA a) (UseN n) ; 
+    mkCN : A  -> CN -> CN = \a,n -> ModCN (UseA a) n ; 
+    mkCN : AP -> N  -> CN = \a,n -> ModCN a (UseN n) ; 
+    mkCN : AP -> CN -> CN = \a,n -> ModCN a n ; 
+    } ;
+
+  presTense : Tense = Pres ;
+  perfTense : Tense = Perf ;
+  posPol : Pol = Pos ;
+  negPol : Pol = Neg ;
+
+}
diff --git a/gf-book/examples/chapter9/SyntaxIta.gf b/gf-book/examples/chapter9/SyntaxIta.gf
new file mode 100644
--- /dev/null
+++ b/gf-book/examples/chapter9/SyntaxIta.gf
@@ -0,0 +1,3 @@
+instance SyntaxIta of Syntax = GrammarIta - 
+    [PredVP,ComplV2,UseV,DetCN,ModCN,CompAP,AdAP,UseN,UseA] **
+  open GrammarIta in {} ;
diff --git a/gf-book/examples/chapter9/Test.gf b/gf-book/examples/chapter9/Test.gf
new file mode 100644
--- /dev/null
+++ b/gf-book/examples/chapter9/Test.gf
@@ -0,0 +1,9 @@
+abstract Test = Grammar ** {
+
+fun
+  man_N, woman_N, house_N, tree_N : N ;
+  big_A, small_A, green_A : A ;
+  walk_V, arrive_V : V ;
+  love_V2, please_V2 : V2 ;
+
+} ;
diff --git a/gf-book/examples/chapter9/TestIta.gf b/gf-book/examples/chapter9/TestIta.gf
new file mode 100644
--- /dev/null
+++ b/gf-book/examples/chapter9/TestIta.gf
@@ -0,0 +1,17 @@
+concrete TestIta of Test = GrammarIta ** open ParadigmsIta in {
+
+lin
+  man_N = mkN "uomo" "uomini" masculine ;
+  woman_N = mkN "donna" ;
+  house_N = mkN "casa" ;
+  tree_N = mkN "albero" ;
+  big_A = preA (mkA "grande") ;
+  small_A = preA (mkA "piccolo") ;
+  green_A = mkA "verde" ;
+  walk_V = mkV "camminare" ;
+  arrive_V = essereV (mkV "arrivare") ;
+  love_V2 = mkV2 "amare" ;
+  please_V2 = mkV2 (essereV (mkV "piacere" "piaccio" "piaci" "piace" 
+                        "piacciamo" "piacete" "piacciono" "piaciuto")) dative ;
+
+} ;
diff --git a/gf-book/examples/chapter9/TestSemantics.gf b/gf-book/examples/chapter9/TestSemantics.gf
new file mode 100644
--- /dev/null
+++ b/gf-book/examples/chapter9/TestSemantics.gf
@@ -0,0 +1,1 @@
+abstract TestSemantics = Test, Semantics ;
diff --git a/gf-book/examples/chapter9/TestSemanticsIta.gf b/gf-book/examples/chapter9/TestSemanticsIta.gf
new file mode 100644
--- /dev/null
+++ b/gf-book/examples/chapter9/TestSemanticsIta.gf
@@ -0,0 +1,1 @@
+concrete TestSemanticsIta of TestSemantics = TestIta, SemanticsIta ;
diff --git a/gf-book/examples/chapter9/hebrew/Grammar.gf b/gf-book/examples/chapter9/hebrew/Grammar.gf
new file mode 100644
--- /dev/null
+++ b/gf-book/examples/chapter9/hebrew/Grammar.gf
@@ -0,0 +1,20 @@
+abstract Grammar = {
+
+cat 
+    Cl ; NP ; VP ; AP ; CN ; Det ; N ; A ; V ; V2 ;
+
+fun
+    PredVP  : NP -> VP -> Cl ;
+    ComplV2 : V2 -> NP -> VP ;
+    DetCN   : Det -> CN -> NP ; 
+    ModCN   : CN -> AP -> CN ;
+
+    UseV    : V -> VP ;
+    UseN    : N -> CN ;
+    UseA    : A -> AP ;
+
+    a_Det, the_Det : Det ;
+    this_Det, these_Det : Det ;
+    i_NP, she_NP, we_NP : NP ;
+
+}
diff --git a/gf-book/examples/chapter9/hebrew/GrammarHeb.gf b/gf-book/examples/chapter9/hebrew/GrammarHeb.gf
new file mode 100644
--- /dev/null
+++ b/gf-book/examples/chapter9/hebrew/GrammarHeb.gf
@@ -0,0 +1,97 @@
+--# -path=alltenses
+
+concrete GrammarHeb of Grammar = open ResHeb, Prelude in {
+
+  lincat  
+
+    Cl = {s : ResHeb.Tense => Str} ; 
+    VP = ResHeb.VP ;              -- {v : Verb ; obj : Str} ;
+    NP = ResHeb.NP ;              -- {s : Case =>  {obj : Str} ; a : Agr ; isDef : Bool ; sp : Species} ;
+    AP = {s : Number => Species => Gender =>  Str } ; 
+    CN = ResHeb.Noun ;      	  -- {s : Number => Species => Str ; g: Gender} ;
+    Det = {s :  Gender => Str ; n : Number ; sp : Species; isDef : Bool} ; 
+    N = ResHeb.Noun ;         	  -- {s : Number => Species => Str ; g: Gender } ;
+    A = ResHeb.Adj ;              -- {s :  Number => Species => Gender => Str} ; 
+    V = ResHeb.Verb ;          	  -- {s : Tense => VPerNumGen  => Str } ;
+    V2 = ResHeb.Verb2 ; 	  -- Verb ** {c : Case} ; 
+
+  lin
+
+-- predication
+
+  PredVP np vp = 
+       let 
+	   subj = (np.s ! Nom ).obj ;
+           obj = vp.obj
+        in {
+            s = \\t => subj ++ (agrV vp.v t np.a) ++ obj } ;
+
+
+  ComplV2 v2 np = 
+     let
+        nps = np.s ! v2.c  
+      in {
+        v =  {s =  v2.s } ;
+        obj  =  case <np.isDef> of  
+ 	     { <True> =>  "At" ++ nps.obj; -- direct objects require the object marker 'et' and must be in definite form
+	         _    =>  nps.obj } 
+       } ;        
+
+
+-- determination
+-- ha-Aysh ha-zwt : this woman 
+-- ha-bait : the house
+-- ha-bait ha-ze : this house
+-- ha-bait ha-yarok ha-ze : this green house 
+
+   DetCN det cn = {
+    	s = \\c => {obj = cn.s ! det.n  ! det.sp ++ det.s ! cn.g } ;
+ 	isDef = det.isDef ;
+	sp =  det.sp ;
+        a = Ag cn.g det.n Per3 
+      } ;
+   
+   ModCN cn ap = {
+      s = \\sp => table {n => cn.s ! sp ! n ++  ap.s ! sp ! n  ! cn.g} ; 
+      g = cn.g 
+      } ;
+
+    UseV v =  { v = v  ; obj =  [] };
+
+    UseN n = n ; 
+
+    UseA adj = adj ;
+    	      
+    a_Det =  { 
+       s = table { _ => ""  } ;
+       n = Sg ;
+       sp = Indef ;
+       isDef = False 
+      } ; 
+ 
+    the_Det = {
+      s = table { _ => "" } ;
+      n = Sg ;
+      sp = Def ;
+      isDef = True 
+      } ;
+
+    this_Det = {
+      s = table { Masc =>  "hzh" ;  Fem => "hzAt" } ;
+      n = Sg ;
+      sp = Def ;
+      isDef = True 
+      } ;
+
+     these_Det = {
+       s = table {_ => "hAlh" }  ;
+       n = Pl ;
+       sp = Def ;
+       isDef = True 
+      } ;
+
+     i_NP = pronNP "Any" "Awty" "ly" Masc Sg Per1 ; --both fem and masc
+     we_NP = pronNP "AnHnw" "Awtnw" "lnw" Masc Pl Per1; --both fem and masc
+     she_NP = pronNP "hyA" "Awth" "lh" Fem Sg Per3  ; 
+}
+
diff --git a/gf-book/examples/chapter9/hebrew/PatternsHeb.gf b/gf-book/examples/chapter9/hebrew/PatternsHeb.gf
new file mode 100644
--- /dev/null
+++ b/gf-book/examples/chapter9/hebrew/PatternsHeb.gf
@@ -0,0 +1,41 @@
+resource PatternsHeb =  {
+
+flags coding=utf8 ;
+
+oper
+
+C1aC2aC3ti = {C1 ="" ; C1C2=""; C2C3 =""; C3="ty"};
+C1aC2aC3nu = { C1 = "" ; C1C2=""; C2C3 =""; C3="nw"};
+C1aC2aC3ta = { C1 = "" ; C1C2=""; C2C3 =""; C3="ta"}; 
+C1aC2aC3t = { C1 = "" ; C1C2=""; C2C3 =""; C3="t"}; 
+C1aC2aC3tem = { C1 = "" ; C1C2=""; C2C3 =""; C3="teM"}; 
+C1aC2aC3ten = { C1 = "" ; C1C2=""; C2C3 =""; C3="teN"}; 
+C1aC2aC3 = { C1 = "" ; C1C2=""; C2C3 =""; C3=""}; 
+C1aC2aC3a = { C1 = "" ; C1C2=""; C2C3 =""; C3="h"}; 
+C1aC2aC3u = { C1 = "" ; C1C2=""; C2C3 =""; C3="w"}; 
+
+C1oC2eC3 = { C1 = "" ; C1C2="w"; C2C3 =""; C3=""}; 
+C1oC2eC3et = { C1 = "" ; C1C2="w"; C2C3 =""; C3="t"}; 
+C1oC2C3im = { C1 = "" ; C1C2="w"; C2C3 =""; C3="yM"}; 
+C1oC2C3ot = { C1 = "" ; C1C2="w"; C2C3 =""; C3="wt"}; 
+
+eC1C2oC3 = { C1 = "y" ; C1C2=""; C2C3 =""; C3=""}; 
+niC1C2oC3 = { C1 = "n" ; C1C2=""; C2C3 =""; C3=""};
+tiC1C2oC3 = { C1 = "t" ; C1C2=""; C2C3 =""; C3=""};
+tiC1C2eC3i = { C1 = "t" ; C1C2=""; C2C3 ="e"; C3="y"};
+tiC1C2eC3o = { C1 = "t" ; C1C2=""; C2C3 ="e"; C3="w"};
+
+yiC1C2oC3 = { C1 = "y" ; C1C2=""; C2C3 =""; C3=""};
+yiC1C2eC3u = { C1 = "y" ; C1C2=""; C2C3 =""; C3="w"};
+
+hiC1C2aC3ti = {C1 ="h" ; C1C2=""; C2C3 =""; C3="ty"};
+hiC1C2aC3nu = { C1 = "h" ; C1C2=""; C2C3 =""; C3="nw"};
+hiC1C2aC3ta = { C1 = "h" ; C1C2=""; C2C3 =""; C3="ta"}; 
+hiC1C2aC3t = { C1 = "h" ; C1C2=""; C2C3 =""; C3="t"}; 
+hiC1C2aC3tem= { C1 = "h" ; C1C2=""; C2C3 =""; C3="teM"}; 
+hiC1C2aC3ten = { C1 = "h" ; C1C2=""; C2C3 =""; C3="teN"}; 
+hiC1C2iC3= { C1 = "h" ; C1C2=""; C2C3 ="y"; C3=""}; 
+hiC1C2iC3a= { C1 = "h" ; C1C2=""; C2C3 ="y"; C3="h"}; 
+hiC1C2iC3u = { C1 = "h" ; C1C2=""; C2C3 ="y"; C3="w"}; 
+
+}
diff --git a/gf-book/examples/chapter9/hebrew/ResHeb.gf b/gf-book/examples/chapter9/hebrew/ResHeb.gf
new file mode 100644
--- /dev/null
+++ b/gf-book/examples/chapter9/hebrew/ResHeb.gf
@@ -0,0 +1,351 @@
+--# -path=alltenses
+
+-- (c) 2011 Dana Dannells
+-- Licensed under LGPL
+-- Compiled with GF version 3.2
+
+resource ResHeb =  open PatternsHeb, Prelude, Predef in {
+
+  flags coding=utf8 ;
+
+param
+
+ Number = Sg | Pl | Dl ;
+ Gender = Masc | Fem ;
+ Species = Def | Indef ;
+ Case = Nom | Acc | Dat ;
+ Agr = Ag Gender Number Person;
+ Person = Per1 | Per2 | Per3 ;
+ Voice = Active | Passive | Reflexive ; 
+ VPerNumGen = Vp1Sg | Vp1Pl | Vp2Sg Gender | Vp2Pl Gender | Vp3Sg Gender | Vp3Pl Gender ;
+ Tense = Perf | Part | Imperf ;
+
+
+oper
+ 
+ VP = {v : Verb ; obj : Str} ; -- obj value to deal with direct objects 
+ NP = {s :  Case => {obj : Str} ; a : Agr ; isDef : Bool ; sp : Species };
+
+-------------------------------------------------  
+-- Auxiliaries
+-- Pronouns modify nouns in a noun phrase, they agree 
+-- in gender and number with the head noun.
+
+ pronNP : (s,a,d : Str) -> Gender -> Number -> Person ->  NP =
+ \s,a,d,g,n,p ->  { 
+    s =  
+       table {
+            Nom => {obj = s}  ;
+	    Acc => {obj = a}  ;
+	    Dat => {obj = []}
+        };
+    isDef = False ;
+    sp = Indef ; 
+    a = Ag g n p 
+  } ;
+
+-------------------------------------------------  
+-- Predication
+
+  agrV : Verb -> Tense ->  Agr -> Str = \v,t,a -> case a of {
+    Ag g n p => v.s ! t ! (chooseForm g n p)  
+  } ;
+   
+  chooseForm : Gender -> Number -> Person -> VPerNumGen = \g,n,p->
+  case <g,n,p> of {
+  <_,Sg,Per1> => Vp1Sg;
+  <_,Pl,Per1> =>  Vp1Pl; 
+  <_,Sg,Per2> => Vp2Sg g ; 
+  <_,Pl,Per2> => Vp2Pl g ; 
+  <_,Sg,Per3> => Vp3Sg g ; 
+  <_,Pl,Per3> => Vp3Pl g ;
+    _         => Vp3Sg Masc
+  };
+   
+-------------------------------------------------  
+-- Roots and patterns for verbs 
+
+oper    
+ 
+    Pattern : Type = {C1, C1C2, C2C3, C3 : Str}; 
+    Root    : Type = {C1,C2,C3 : Str};	   -- most verb roots consist of three consonants
+    Root4   : Type = Root ** {C4 : Str};   -- for verb roots with four consonants
+
+
+-------------------------------------------------  
+-- Morphology
+
+oper    
+   
+   Noun : Type = {s : Number => Species => Str ; g : Gender} ; 
+   Adj  : Type = {s : Number => Species => Gender => Str} ; 
+   Verb : Type = {s : Tense => VPerNumGen  => Str } ;
+   Verb2 : Type = Verb ** {c : Case} ; 
+
+-------------------------------------------------  
+-- Nouns  
+-- Nouns have different endings, 
+-- some are also duals: his- anashim, bait- batim, bat-banot. 
+
+oper    
+
+mkNoun : (bait,batim,batimD : Str) -> Gender -> Noun = \bait,batim,batimD,g -> {
+	s = table {
+		Sg => table{Indef => bait ; Def => defH bait};
+		Pl => table{Indef => batim ; Def => defH batim} ;
+		Dl => table{Indef => batimD ; Def => defH batimD}
+		};
+	g=g ;
+  }; 
+
+-- For some nouns it is not possible to infer the gender from the pefix, 
+-- depending on the gender, a noun can either end with yM or wt. 
+
+regNoun2 :  Str -> Gender -> Noun = \root,g -> 
+	case root of {
+	heret + c@? => table {
+		Masc => mkNoun root (heret + replaceLastLet (c) + "yM" ) ("")  g;
+		Fem => mkNoun root (heret + replaceLastLet (c) + "wt") ("") g
+ 		  } ! g
+  } ;
+		
+-- For regular nouns, it is possible to infer the gender from the pefix.
+
+regNoun : Str -> Noun = 
+	\root -> case root of {
+        malc + "h" => mkNoun root (malc + "wt") ("") Fem ;
+	mecon + "yt" => mkNoun root (mecon + "ywt") ("") Fem ; --  (it -> iyot)	
+	khan + "wt" => mkNoun root (khan + "ywt") ("") Fem; -- (ut -> uyot)	
+	tsalakh + "t" => mkNoun root (tsalakh + "wt") ("") Fem ; --  (at -> ot)
+	_ => mkNoun root (root + "yM") ("")  Masc 
+  } ;
+
+mkN = overload {
+    mkN : (root: Str) -> Noun = regNoun ;
+    mkN : (kaf : Str) -> Gender-> Noun = regNoun2 ; 
+    mkN : (bait, batim : Str) -> Gender -> Noun = \bait,batim -> mkNoun bait batim ""; 
+    mkN : (regel,  raglayim,  raglaim : Str) -> Gender -> Noun = mkNoun ; 
+  } ;
+	
+replaceLastLet :  Str -> Str = \c -> 
+	 case c of {"P" => "p" ; "M" => "m" ; "N" => "n" ; "Z." => "Z" ; "K" => "k"; _ => c} ;
+ 
+-------------------------------------------------  
+-- Adjectives
+-- Adjectives are formed either linearly, 
+-- by adding a suffix without affecting the stem 
+-- or discontinuously, by adding feminine or plural marker 
+-- that requires a shift of stress in the word and certain 
+-- vowel deletions and modifications.    
+
+oper
+
+regA : Str ->  Adj = \root 
+	-> case root of { kaTan + c@? =>
+	mkAdj root (kaTan + replaceLastLet (c) + "h") (kaTan +
+	replaceLastLet (c) + "yM") (kaTan + replaceLastLet (c) + "wt") 
+   };
+
+regA2 : Str ->  Adj = \bwleT
+	-> mkAdj bwleT  ( bwleT + "t") ( bwleT + "yM" ) (bwleT + "wt" ); 
+	
+mkAdj : (_,_,_,_ : Str) -> Adj = \tov,tova,tovim,tovot -> {
+    s = table {
+      	Sg => table { 
+		Indef => table { Masc => tov ; Fem => tova } ; 
+		Def => table { Masc => defH tov ; Fem => defH tova }  
+            	} ; 
+        _ => table { 
+		Indef => table {Masc => tovim ; Fem  => tovot } ; 
+		Def => table { Masc => defH tovim ; Fem  => defH tovot }
+               }
+         }
+   };
+
+
+-------------------------------------------------  
+-- Determination
+
+defH : Str -> Str = \cn ->
+	case cn of {_ => "h" + cn};	
+
+
+-------------------------------------------------  
+-- Verbs 
+-- The way of forming verbs follows the traditional 
+-- Hebrew pattern group classification, called Binyanim. 
+-- Each pattern has a three consonant slot structure with special
+-- inflectional characteristics. 
+-- Verbs are formed by a [root + pattern] combination.  
+    
+oper
+
+dirV2: Verb -> Verb2 =\v -> 
+       {
+       s = v.s ;
+       c = Acc	
+       }; 
+       
+
+mkVPaal : Str -> Verb = \v ->
+  let root = getRoot v
+    in {s = table { 
+   Perf => table {        
+      Vp1Sg       => appPattern root C1aC2aC3ti ;
+      Vp1Pl       => appPattern root C1aC2aC3nu ;
+	
+      Vp2Sg Masc => appPattern root C1aC2aC3ta ;
+      Vp2Sg Fem  => appPattern root C1aC2aC3t ;
+      Vp2Pl Masc => appPattern root C1aC2aC3tem ;
+      Vp2Pl Fem  => appPattern root C1aC2aC3ten ;
+      
+      Vp3Sg Masc => appPattern root C1aC2aC3 ;
+      Vp3Sg Fem  => appPattern root C1aC2aC3a ;
+      Vp3Pl Masc => appPattern root C1aC2aC3u ;
+      Vp3Pl Fem  => appPattern root C1aC2aC3u 
+	} ;
+
+   Part => table {           
+      Vp1Sg       => appPattern root C1oC2eC3 ;
+      Vp1Pl       => appPattern root C1oC2C3im ;
+	
+      Vp2Sg Masc => appPattern root C1oC2eC3 ;
+      Vp2Sg Fem  => appPattern root C1oC2eC3et ;
+      Vp2Pl Masc => appPattern root C1oC2C3im ;
+      Vp2Pl Fem  => appPattern root C1oC2C3ot ;
+      
+      Vp3Sg Masc => appPattern root C1oC2eC3;
+      Vp3Sg Fem  => appPattern root C1oC2eC3et ;
+      Vp3Pl Masc => appPattern root C1oC2C3im ;
+      Vp3Pl Fem  => appPattern root C1oC2C3ot
+	} ;
+ 
+   Imperf => table {        
+      Vp1Sg       => appPattern root eC1C2oC3 ;
+      Vp1Pl       => appPattern root niC1C2oC3 ;
+	
+      Vp2Sg Masc => appPattern root tiC1C2oC3 ;
+      Vp2Sg Fem  => appPattern root tiC1C2eC3i ;
+      Vp2Pl Masc => appPattern root tiC1C2eC3o ;
+      Vp2Pl Fem  => appPattern root tiC1C2eC3o ;
+      
+      Vp3Sg Masc => appPattern root yiC1C2oC3 ;
+      Vp3Sg Fem  => appPattern root tiC1C2oC3 ;
+      Vp3Pl Masc => appPattern root yiC1C2eC3u ;
+      Vp3Pl Fem  => appPattern root yiC1C2eC3u  
+	} 
+      }
+  };
+ 
+
+mkVHifhil : Str -> Verb = \v ->
+  let root = getRoot v
+    in {s = table { 
+   Perf => table {        
+      Vp1Sg       => appPattern root hiC1C2aC3ti ;
+      Vp1Pl       => appPattern root hiC1C2aC3nu ;
+	
+      Vp2Sg Masc => appPattern root hiC1C2aC3ta ;
+      Vp2Sg Fem  => appPattern root hiC1C2aC3t ;
+      Vp2Pl Masc => appPattern root hiC1C2aC3tem ;
+      Vp2Pl Fem  => appPattern root hiC1C2aC3ten ;
+      
+      Vp3Sg Masc => appPattern root hiC1C2iC3 ;
+      Vp3Sg Fem  => appPattern root hiC1C2iC3a ;
+      Vp3Pl Masc => appPattern root hiC1C2iC3u ;
+      Vp3Pl Fem  => appPattern root hiC1C2iC3u 
+	} ;
+
+   Part => table {           
+      Vp1Sg       => appPattern root C1oC2eC3 ;
+      Vp1Pl       => appPattern root C1oC2C3im ;
+	
+      Vp2Sg Masc => appPattern root C1oC2eC3 ;
+      Vp2Sg Fem  => appPattern root C1oC2eC3et ;
+      Vp2Pl Masc => appPattern root C1oC2C3im ;
+      Vp2Pl Fem  => appPattern root C1oC2C3ot ;
+      
+      Vp3Sg Masc => appPattern root C1oC2eC3;
+      Vp3Sg Fem  => appPattern root C1oC2eC3et ;
+      Vp3Pl Masc => appPattern root C1oC2C3im ;
+      Vp3Pl Fem  => appPattern root C1oC2C3ot
+	};
+   Imperf => table {        
+      Vp1Sg       => appPattern root eC1C2oC3 ;
+      Vp1Pl       => appPattern root niC1C2oC3 ;
+	
+      Vp2Sg Masc => appPattern root tiC1C2oC3 ;
+      Vp2Sg Fem  => appPattern root tiC1C2eC3i ;
+      Vp2Pl Masc => appPattern root tiC1C2eC3o ;
+      Vp2Pl Fem  => appPattern root tiC1C2eC3o ;
+      
+      Vp3Sg Masc => appPattern root yiC1C2oC3 ;
+      Vp3Sg Fem  => appPattern root tiC1C2oC3 ;
+      Vp3Pl Masc => appPattern root yiC1C2eC3u ;
+      Vp3Pl Fem  => appPattern root yiC1C2eC3u  
+	} 	
+     }
+   } ;
+
+mkVHifhil2 : Str -> Verb = \v ->
+  let root = getRoot v  
+     in {s = table { 
+   Perf => table {        
+      Vp1Sg       => appPattern2 root hiC1C2aC3ti ;
+      Vp1Pl       => appPattern2 root hiC1C2aC3nu ;
+	
+      Vp2Sg Masc => appPattern2 root hiC1C2aC3ta ;
+      Vp2Sg Fem  => appPattern2 root hiC1C2aC3t ;
+      Vp2Pl Masc => appPattern2 root hiC1C2aC3tem ;
+      Vp2Pl Fem  => appPattern2 root hiC1C2aC3ten ;
+      
+      Vp3Sg Masc => appPattern2 root hiC1C2iC3 ;
+      Vp3Sg Fem  => appPattern2 root hiC1C2iC3a ;
+      Vp3Pl Masc => appPattern2 root hiC1C2iC3u ;
+      Vp3Pl Fem  => appPattern2 root hiC1C2iC3u 
+	} ;
+
+   Part => table {           
+      Vp1Sg       => appPattern2 root C1oC2eC3 ;
+      Vp1Pl       => appPattern2 root C1oC2C3im ;
+	
+      Vp2Sg Masc => appPattern2 root C1oC2eC3 ;
+      Vp2Sg Fem  => appPattern2 root C1oC2eC3et ;
+      Vp2Pl Masc => appPattern2 root C1oC2C3im ;
+      Vp2Pl Fem  => appPattern2 root C1oC2C3ot ;
+      
+      Vp3Sg Masc => appPattern2 root C1oC2eC3;
+      Vp3Sg Fem  => appPattern2 root C1oC2eC3et ;
+      Vp3Pl Masc => appPattern2 root C1oC2C3im ;
+      Vp3Pl Fem  => appPattern2 root C1oC2C3ot
+	} ;
+   Imperf => table {        
+      Vp1Sg       => appPattern2 root eC1C2oC3 ;
+      Vp1Pl       => appPattern2 root niC1C2oC3 ;
+	
+      Vp2Sg Masc => appPattern2 root tiC1C2oC3 ;
+      Vp2Sg Fem  => appPattern2 root tiC1C2eC3i ;
+      Vp2Pl Masc => appPattern2 root tiC1C2eC3o ;
+      Vp2Pl Fem  => appPattern2 root tiC1C2eC3o ;
+      
+      Vp3Sg Masc => appPattern2 root yiC1C2oC3 ;
+      Vp3Sg Fem  => appPattern2 root tiC1C2oC3 ;
+      Vp3Pl Masc => appPattern2 root yiC1C2eC3u ;
+      Vp3Pl Fem  => appPattern2 root yiC1C2eC3u  
+	} 
+     }
+  };
+ 
+  appPattern : Root -> Pattern -> Str = \r,p ->
+    p.C1 + r.C1 + p.C1C2 + r.C2 + p.C2C3 + r.C3 + p.C3 ;
+
+-- remove the first letter
+  appPattern2 : Root -> Pattern -> Str = \r,p ->
+    p.C1 + p.C1C2 + r.C2 + p.C2C3 + r.C3 + p.C3 ;
+
+  getRoot : Str -> Root = \s -> case s of {
+    C1@? + C2@? + C3 => {C1 = C1 ; C2 = C2 ; C3 = C3} ;
+    _ => Predef.error ("cannot get root from" ++ s)
+    } ;
+
+} 
diff --git a/gf-book/examples/chapter9/hebrew/Test.gf b/gf-book/examples/chapter9/hebrew/Test.gf
new file mode 100644
--- /dev/null
+++ b/gf-book/examples/chapter9/hebrew/Test.gf
@@ -0,0 +1,11 @@
+abstract Test = Grammar ** {
+
+
+fun
+  
+  man_N, woman_N, house_N, leg_N, store_N, chair_N, eyes_N, spoon_N: N ;
+  big_A, small_A, green_A, delicious_A, italian_A : A ;
+  write_V, walk_V, finish_V, arrive_V , express_V: V ;
+  love_V2, please_V2  : V2 ;
+    
+};
diff --git a/gf-book/examples/chapter9/hebrew/TestHeb.gf b/gf-book/examples/chapter9/hebrew/TestHeb.gf
new file mode 100644
--- /dev/null
+++ b/gf-book/examples/chapter9/hebrew/TestHeb.gf
@@ -0,0 +1,29 @@
+--# -path=alltenses
+
+concrete TestHeb of Test = GrammarHeb ** open ResHeb in  {
+
+flags
+  coding=utf8 ;
+
+lin
+  man_N = mkN "Ays" "AnsyM" Masc;
+  woman_N = mkN "Aysh" "nsyM" Fem ;
+  house_N = mkN  "byt" "btyM" Masc; 
+  leg_N = mkN "rgl" "rglyyM" "rglyyM" Fem; 
+  store_N = mkN "Hnwt" "Hnwywt" Fem;
+  chair_N = mkN "kSA" "kSAwt" Masc;  
+  eyes_N = mkN "OyN" "OynyyM" "OynyyM" Fem; 
+  spoon_N = mkN "kP" Fem; 
+  big_A = regA "gdwl";
+  small_A = regA "qTN";
+  green_A = regA "yrwq";
+  delicious_A = regA2 "nhdr"; 
+  italian_A = regA2 "AyTlqy";
+  write_V = mkVPaal "ktb" ; 
+  finish_V = mkVPaal "gmr" ; 
+  walk_V = mkVPaal "ZOd" ; 
+  arrive_V = mkVHifhil2 "ngO" ;
+  express_V = mkVHifhil2 "nbO" ;
+  love_V2 = dirV2 (mkVPaal "Ahb") ;
+  please_V2 = dirV2 (mkVPaal "Spq") ;
+}
diff --git a/gf-book/gf-book-cover.png b/gf-book/gf-book-cover.png
new file mode 100644
Binary files /dev/null and b/gf-book/gf-book-cover.png differ
diff --git a/gf-book/index.html b/gf-book/index.html
new file mode 100644
--- /dev/null
+++ b/gf-book/index.html
@@ -0,0 +1,174 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
+<HTML>
+<HEAD>
+<META NAME="generator" CONTENT="http://txt2tags.org">
+<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=utf8">
+<TITLE>Grammatical Framework: Programming with Multilingual Grammars</TITLE>
+</HEAD><BODY BGCOLOR="white" TEXT="black">
+<CENTER>
+<H1>Grammatical Framework: Programming with Multilingual Grammars</H1>
+<FONT SIZE="4"><I>Aarne Ranta</I></FONT><BR>
+</CENTER>
+
+<P>
+<center><img width=200mm src="gf-book-cover.png"></center>
+</P>
+<P>
+This is the web page of the book 
+</P>
+
+<UL>
+<LI>Aarne Ranta,
+  <I>Grammatical Framework: Programming with Multilingual Grammars</I>,
+  CSLI Publications, 
+  Stanford, 
+  2011,
+  340 pp,
+  ISBN-10: 1-57586-626-9 (Paper), 1-57586-627-7 (Cloth).
+</UL>
+
+<H2>Publisher's information</H2>
+
+<P>
+Publisher's web page (look for "Series" -&gt; "CSLI Studies in Computational Linguistics")
+</P>
+<P>
+  <A HREF="http://www-csli.stanford.edu/pubs/">http://www-csli.stanford.edu/pubs/</A>
+</P>
+
+<H2>Order</H2>
+
+<P>
+Direct order ($32.50 paperback, $70 hardcover):
+</P>
+<P>
+  <A HREF="http://press.uchicago.edu/ucp/books/book/distributed/G/bo12469871.html">http://press.uchicago.edu/ucp/books/book/distributed/G/bo12469871.html</A>
+</P>
+<P>
+Amazon order USA ($32.50 paperback, $70 hardcover):
+</P>
+<P>
+  <A HREF="http://www.amazon.com/Grammatical-Framework-Programming-Multilingual-Information/dp/1575866269/ref=sr_1_2?ie=UTF8&amp;qid=1308585697&amp;sr=8-2">http://www.amazon.com/Grammatical-Framework-Programming-Multilingual-Information/dp/1575866269/ref=sr_1_2?ie=UTF8&amp;qid=1308585697&amp;sr=8-2</A>
+</P>
+<P>
+Amazon order UK (£21 paperback, £45 hardcover):
+</P>
+<P>
+  <A HREF="http://www.amazon.co.uk/Grammatical-Framework-Programming-Multilingual-Computational/dp/1575866269/ref=sr_1_6?ie=UTF8&amp;qid=1315580083&amp;sr=8-6">http://www.amazon.co.uk/Grammatical-Framework-Programming-Multilingual-Computational/dp/1575866269/ref=sr_1_6?ie=UTF8&amp;qid=1315580083&amp;sr=8-6</A>
+</P>
+
+<H2>Book description</H2>
+
+<P>
+Grammars of natural languages are complex systems, and their 
+computer implementation requires both programming skills and 
+linguistic knowledge, especially when dealing with other languages
+than English. This book makes such tasks accessible for a wide 
+range of programmers. It introduces GF (Grammatical Framework),
+which is a programming language designed for writing grammars, which
+may moreover address several languages in parallel. 
+The book shows how to write grammars in GF and use them in applications 
+such as tourist phrasebooks, spoken dialogue systems, and natural 
+language interfaces. The examples and exercises address several 
+languages, and the readers are guided to look at their own languages 
+from the computational perspective.
+</P>
+<P>
+With an emphasis on good engineering, the book promotes modularity
+and division of labour - in particular, the use of libraries. It 
+introduces the GF Resource Grammar Library, which currently addresses 
+16 languages. This number is constantly growing due to contributions 
+from the international GF community. The library makes it painless to 
+build applications and to port them to new languages. The book 
+introduces a wide range of such applications, which run on platforms 
+ranging from web servers to mobile phones. But the book also gives 
+guidance for those readers who want to understand the underlying 
+linguistics and implement resource grammars for new languages.
+</P>
+<P>
+The book starts with a hands-on tutorial, continues with a selection 
+of advanced topics, and ends with a complete reference manual 
+of GF. Requiring very little background knowledge, it is accessible 
+for second-year students that have experience with computers and an 
+interest for languages. At the same time, its novel and advanced 
+material makes it interesting for senior researchers in computer science, 
+linguistics, and related fields. 
+</P>
+
+<H2>How to cite</H2>
+
+<PRE>
+  @Book{ranta-2011,
+    author = {Aarne Ranta},
+    title =  {{Grammatical Framework:
+               Programming with Multilingual Grammars}},
+    publisher = {{CSLI Publications}},
+    year = {2011},
+    address = "Stanford",
+    note = "ISBN-10: 1-57586-626-9 (Paper), 1-57586-627-7 (Cloth)"
+  }
+</PRE>
+
+<H2>Table of Contents</H2>
+
+<P>
+<A HREF="toc-gf-book.txt">Detailed Table of Contents</A>
+</P>
+
+<H2>Supporting material</H2>
+
+<P>
+<A HREF="./gf-book-slides.pdf">Slides</A> for teaching the book chapter by chapter.
+</P>
+<P>
+<A HREF="./examples">Code examples</A>
+</P>
+<P>
+<A HREF="http://www.grammaticalframework.org/demos/gfse/">GF Web IDE</A>: 
+build grammars in the cloud, without installing GF.
+</P>
+<P>
+Demos 
+</P>
+
+<UL>
+<LI><A HREF="http://www.grammaticalframework.org:41296/minibar/minibar.html">on-line translator</A> (Section 7.12)
+<LI><A HREF="http://www.grammaticalframework.org/demos/resource-api/editor.html">syntax editor</A> (Section 7.13)
+<LI><A HREF="http://www.youtube.com/watch?v=1bfaYHWS6zU">multimodal dialogue system</A> (Section 7.15)
+</UL>
+
+<P>
+Other tutorials:
+</P>
+
+<UL>
+<LI><A HREF="../doc/tutorial/gf-tutorial.html">GF Tutorial</A>: programmer-oriented,
+  covering parts of chapters 2-8 
+<LI><A HREF="../doc/gf-lrec-2010.pdf">GF Resource Tutorial</A>: linguist-oriented,
+  covering parts of chapters 2-5, 9-10
+</UL>
+
+<P>
+<A HREF="http://www.grammaticalframework.org/doc/gf-bibliography.html">Works mentioned in references</A>;
+more download links will be added.
+</P>
+<P>
+<A HREF="http://www.grammaticalframework.org/lib/doc/synopsis.html">Resource Grammar Library API</A>
+</P>
+<P>
+<A HREF="http://www.grammaticalframework.org/download">Sources and binaries</A> 
+for GF 3.2, which exactly matches the book.
+</P>
+<P>
+GF Home Page: <A HREF="http://www.grammaticalframework.org/">http://www.grammaticalframework.org/</A>
+</P>
+<P>
+Author's email: aarne'at'chalmers'dot'se
+</P>
+<P>
+Author's home page: <A HREF="http://www.cse.chalmers.se/~aarne/">http://www.cse.chalmers.se/~aarne/</A>
+</P>
+
+<!-- html code generated by txt2tags 2.6 (http://txt2tags.org) -->
+<!-- cmdline: txt2tags -thtml index.txt -->
+</BODY></HTML>
diff --git a/gf-book/index.txt b/gf-book/index.txt
new file mode 100644
--- /dev/null
+++ b/gf-book/index.txt
@@ -0,0 +1,136 @@
+Grammatical Framework: Programming with Multilingual Grammars
+Aarne Ranta
+
+
+%!Encoding:utf8
+
+%!postproc(html): "#BOOKCOVER" '<center><img width=200mm src="gf-book-cover.png"></center>'
+
+
+#BOOKCOVER
+
+
+This is the web page of the book 
+- Aarne Ranta,
+  //Grammatical Framework: Programming with Multilingual Grammars//,
+  CSLI Publications, 
+  Stanford, 
+  2011,
+  340 pp,
+  ISBN-10: 1-57586-626-9 (Paper), 1-57586-627-7 (Cloth).
+
+
+
+
+==Publisher's information==
+
+Publisher's web page (look for "Series" -> "CSLI Studies in Computational Linguistics")
+
+  http://www-csli.stanford.edu/pubs/
+
+
+==Order==
+
+Direct order ($32.50 paperback, $70 hardcover):
+
+  http://press.uchicago.edu/ucp/books/book/distributed/G/bo12469871.html
+
+Amazon order USA ($32.50 paperback, $70 hardcover):
+
+  http://www.amazon.com/Grammatical-Framework-Programming-Multilingual-Information/dp/1575866269/ref=sr_1_2?ie=UTF8&qid=1308585697&sr=8-2
+
+Amazon order UK (£21 paperback, £45 hardcover):
+
+  http://www.amazon.co.uk/Grammatical-Framework-Programming-Multilingual-Computational/dp/1575866269/ref=sr_1_6?ie=UTF8&qid=1315580083&sr=8-6
+
+
+==Book description==
+
+Grammars of natural languages are complex systems, and their 
+computer implementation requires both programming skills and 
+linguistic knowledge, especially when dealing with other languages
+than English. This book makes such tasks accessible for a wide 
+range of programmers. It introduces GF (Grammatical Framework),
+which is a programming language designed for writing grammars, which
+may moreover address several languages in parallel. 
+The book shows how to write grammars in GF and use them in applications 
+such as tourist phrasebooks, spoken dialogue systems, and natural 
+language interfaces. The examples and exercises address several 
+languages, and the readers are guided to look at their own languages 
+from the computational perspective.
+
+With an emphasis on good engineering, the book promotes modularity
+and division of labour - in particular, the use of libraries. It 
+introduces the GF Resource Grammar Library, which currently addresses 
+16 languages. This number is constantly growing due to contributions 
+from the international GF community. The library makes it painless to 
+build applications and to port them to new languages. The book 
+introduces a wide range of such applications, which run on platforms 
+ranging from web servers to mobile phones. But the book also gives 
+guidance for those readers who want to understand the underlying 
+linguistics and implement resource grammars for new languages.
+
+The book starts with a hands-on tutorial, continues with a selection 
+of advanced topics, and ends with a complete reference manual 
+of GF. Requiring very little background knowledge, it is accessible 
+for second-year students that have experience with computers and an 
+interest for languages. At the same time, its novel and advanced 
+material makes it interesting for senior researchers in computer science, 
+linguistics, and related fields. 
+
+
+==How to cite==
+
+```
+@Book{ranta-2011,
+  author = {Aarne Ranta},
+  title =  {{Grammatical Framework:
+             Programming with Multilingual Grammars}},
+  publisher = {{CSLI Publications}},
+  year = {2011},
+  address = "Stanford",
+  note = "ISBN-10: 1-57586-626-9 (Paper), 1-57586-627-7 (Cloth)"
+}
+```
+
+==Table of Contents==
+
+[Detailed Table of Contents toc-gf-book.txt]
+
+
+==Supporting material==
+
+[Slides ./gf-book-slides.pdf] for teaching the book chapter by chapter.
+
+[Code examples ./examples]
+
+[GF Web IDE http://www.grammaticalframework.org/demos/gfse/]: 
+build grammars in the cloud, without installing GF.
+
+Demos 
+- [on-line translator http://www.grammaticalframework.org:41296/minibar/minibar.html] (Section 7.12)
+- [syntax editor http://www.grammaticalframework.org/demos/resource-api/editor.html] (Section 7.13)
+- [multimodal dialogue system http://www.youtube.com/watch?v=1bfaYHWS6zU] (Section 7.15)
+
+
+Other tutorials:
+- [GF Tutorial ../doc/tutorial/gf-tutorial.html]: programmer-oriented,
+  covering parts of chapters 2-8 
+- [GF Resource Tutorial ../doc/gf-lrec-2010.pdf]: linguist-oriented,
+  covering parts of chapters 2-5, 9-10
+
+
+[Works mentioned in references http://www.grammaticalframework.org/doc/gf-bibliography.html];
+more download links will be added.
+
+[Resource Grammar Library API http://www.grammaticalframework.org/lib/doc/synopsis.html]
+
+[Sources and binaries http://www.grammaticalframework.org/download] 
+for GF 3.2, which exactly matches the book.
+
+GF Home Page: http://www.grammaticalframework.org/
+
+Author's email: aarne'at'chalmers'dot'se
+
+Author's home page: http://www.cse.chalmers.se/~aarne/
+
diff --git a/gf-book/toc-gf-book.txt b/gf-book/toc-gf-book.txt
new file mode 100644
--- /dev/null
+++ b/gf-book/toc-gf-book.txt
@@ -0,0 +1,263 @@
+1 Introduction
+1.1 What this book is about 
+1.2 How to use this book 
+1.3 The role of grammars in language processing 
+1.4 The cost of grammars 
+1.5 Multilinguality 
+1.6 Semantic actions and interoperability 
+1.7 Application grammars and resource grammars 
+1.8 History of GF and its applications 
+1.9 Related work 
+
+part I A GF Tutorial
+
+2 Basic concepts of multilingual grammars 
+2.1 The BNF grammar format 
+2.2 Using the GF system 
+2.3 Testing a grammar in the GF system 
+2.4 A BNF grammar for Italian 
+2.5 BNF grammars and translation 
+2.6 Abstract and concrete syntax 
+2.7 Translating in GF 
+2.8 The structure of grammar modules 
+2.9 On the limitations of BNF grammars 
+2.10 Suppression and metavariables 
+2.11 Free variation 
+2.12 Ambiguity 
+2.13 Remaining problems 
+2.14 Graph-based visualization and shell escapes 
+2.15 Lexing and unlexing 
+2.16 Character encoding 
+
+3 Parameters, tables, and records 
+3.1 The problem of morphological variation 
+3.2 Parameters and tables 
+3.3 Variable vs. inherent features 
+3.4 Records and record types 
+3.5 Linearization types and agreement 
+3.6 Functional programming in GF: operation definitions 
+3.7 The Food grammar revisited 
+3.8 Testing inflection and operations in GF 
+3.9 Partial application 
+3.10 Discontinuous constituents 
+3.11 Non-concatenative morphology 
+
+4 Modular and scalable grammar writing 
+4.1 Reusable resource modules 
+4.2 Data abstraction 
+4.3 Case expressions and string matching 
+4.4 Smart paradigms 
+4.5 Arabic morphology revisited 
+4.6 Separating operation types and definitions 
+4.7 Overloading of operations 
+4.8 Module extension and inheritance 
+4.9 Inheritance and opening 
+4.10 Dependency graphs 
+4.11 Algebraic datatypes for parameters 
+4.12 Record extension and subtyping 
+4.13 Tuples and product types 
+4.14 Prefix-dependent choices and pattern macros 
+4.15 Strings at compile time vs. run time 
+
+5 Using the Resource Grammar Library 
+5.1 The purpose and coverage of the library 
+5.2 Lexical vs. phrasal rules 
+5.3 Lexical categories and rules 
+5.4 Phrasal categories and rules 
+5.5 The resource API 
+5.6 The library path 
+5.7 Example: English 
+5.8 Functor implementation of multilingual grammars 
+5.9 Interfaces and instances 
+5.10 A design pattern for multilingual grammars 
+5.11 Division of labour revisited 
+5.12 Overriding a functor 
+5.13 Compile-time transfer 
+5.14 The resource grammar as a linguistic ontology 
+5.15 A tour of the resource API 
+5.16 Flattening of constructions 
+5.17 Tense and polarity 
+5.18 Browsing the library 
+
+6 Semantic actions and conditions in abstract syntax 
+6.1 GF as a logical framework 
+6.2 Dependent types 
+6.3 Selectional restrictions 
+6.4 Polymorphism 
+6.5 Dependent types in concrete syntax 
+6.6 Proof objects 
+6.7 Proof-carrying documents 
+6.8 Restricted polymorphism 
+6.9 Variable bindings and higher-order abstract syntax 
+6.10 Anaphoric expressions 
+6.11 Semantic definitions 
+6.12 Intensional and extensional equality 
+6.13 Semantic actions and run-time transfer 
+6.14 Predefined categories 
+6.15 Probabilistic GF grammars 
+
+part II Larger Grammars and Applications
+
+7 Embedded grammars and code generation 
+7.1 The portable grammar format 
+7.2 The embedded interpreter and its API 
+7.3 Embedded GF applications in Haskell 
+7.4 The module PGF 
+7.5 A stand-alone translator 
+7.6 A translator loop 
+7.7 A question-answer system 
+7.8 Exporting GF datatypes 
+7.9 Putting it all together 
+7.10 Web server applications 
+7.11 Embedded grammars in other host languages 
+7.12 Multilingual syntax editing 
+7.13 Language models for speech recognition 
+7.14 Statistical language models 
+7.15 Multimodal dialogue systems 
+
+8 Interfacing formal and natural languages 
+8.1 Arithmetic expressions 
+8.2 Code generation as linearization 
+8.3 Programs with variables 
+8.4 The concrete syntax of assignments 
+8.5 A liberal syntax of variables 
+8.6 Is GF useful for defining formal languages? 
+8.7 Natural language generation from logic 
+8.8 Logical semantics of natural language 
+8.9 Grammars for fractals 
+
+9 Getting started with resource grammar programming 
+9.1 Overview 
+9.2 The miniature resource grammar 
+9.3 Feature design 
+9.4 Predication 
+9.5 Complementation 
+9.6 Determination 
+9.7 Modification 
+9.8 Lexical insertion 
+9.9 The miniature resource in Italian 
+9.10 Implementing morphology 
+9.11 Implementing modification and determination 
+9.12 Implementing verb phrases and complementation 
+9.13 Implementing predication 
+9.14 Implementing the rest 
+9.15 Coordination and extraction 
+
+10 Extending the Resource Grammar Library 
+10.1 The module structure of a resource grammar 
+10.2 Effort statistics 
+10.3 Workflow for a new language 
+10.4 Reusing code from the miniature resource 
+10.5 The development-test cycle 
+10.6 Non-ASCII alphabets and transliterations 
+10.7 Coding discipline 
+10.8 Functors in the resource grammar 
+10.9 Widening the coverage for parsing text 
+10.10 Bootstrapping a resource lexicon 
+
+A A miniature resource grammar 
+A.1 Abstract syntax 
+A.2 Auxiliary resource module for Italian 
+A.3 Italian concrete syntax 
+A.4 Morphological paradigms API for Italian 
+A.5 Test lexicon 
+A.6 Syntax API 
+
+B A glossary of linguistic terms 
+
+part III GF Reference Manual
+
+C The GF Programming Language 
+
+C.1 Overview of GF 
+C.2 The module system 
+C.2.1 Top-level and supplementary module structure 
+C.2.2 Compilation units 
+C.2.3 Names 
+C.2.4 The structure of a module 
+C.2.5 Module types, headers, and bodies 
+C.2.6 Digression: the logic of module types 
+C.2.7 Inheritance 
+C.2.8 Opening 
+C.2.9 Name resolution 
+C.2.10 Functor instantiations 
+C.2.11 Completeness 
+C.3 Judgements 
+C.3.1 Overview of the forms of judgement 
+C.3.2 Category declarations, cat  
+C.3.3 Hypotheses and contexts 
+C.3.4 Function declarations, fun  
+C.3.5 Function definitions, def  
+C.3.6 Data constructor declarations, data  
+C.3.7 The semantic status of an abstract syntax function 
+C.3.8 Linearization type definitions, lincat  
+C.3.9 Linearization definitions, lin  
+C.3.10 Linearization default definitions, lindef  
+C.3.11 Printname definitions, printname cat/fun  
+C.3.12 Parameter type definitions, param  
+C.3.13 Parameter values 
+C.3.14 Operation definitions, oper  
+C.3.15 Operation overloading 
+C.3.16 Flag definitions, flags  
+C.4 Types and expressions 
+C.4.1 Overview of expression forms 
+C.4.2 The functional fragment: expressions in abstract syntax 
+C.4.3 List categories 
+C.4.4 Conversions 
+C.4.5 Syntax trees 
+C.4.6 Predefined types in abstract syntax 
+C.4.7 Overview of expressions in concrete syntax 
+C.4.8 Values, canonical forms, and run-time variables 
+C.4.9 Token lists, tokens, and strings 
+C.4.10 Records and record types 
+C.4.11 Subtyping 
+C.4.12 Tables and table types 
+C.4.13 Pattern matching 
+C.4.14 Free variation 
+C.4.15 Local definitions 
+C.4.16 Function applications in concrete syntax 
+C.4.17 Reusing top-level grammars as resources 
+C.4.18 Predefined concrete syntax types 
+C.4.19 Predefined concrete syntax operations 
+C.5 Flags and pragmas 
+C.5.1 Some flags and their values 
+C.5.2 Compiler pragmas 
+C.6 The grammar of GF 
+C.6.1 The lexical structure of GF 
+C.6.2 The syntactic structure of GF 
+
+D The GF Resource Grammar Library 
+D.1 The category system 
+D.1.1 Phrasal and closed lexical categories 
+D.1.2 Open lexical categories 
+D.2 Syntax rules 
+D.2.1 Suprasentential level: texts and utterances 
+D.2.2 Sentential level: polarity, tense, and mood 
+D.2.3 Predication, complementation, and extraction 
+D.2.4 Question and relative clause formation 
+D.2.5 Interrogative and relative pronouns 
+D.2.6 Noun phrases and determiners 
+D.2.7 The numeral system 
+D.2.8 Common nouns, adjectives, and adverbs 
+D.2.9 Coordination 
+D.2.10 Structural words 
+D.3 Lexical Paradigms 
+D.3.1 Paradigms for regular words 
+D.3.2 Paradigms for verb, adjective, and noun subcategories 
+D.4 Other library modules 
+D.4.1 The Prelude module 
+D.4.2 The Formal module 
+D.4.3 The Symbolic module 
+D.4.4 The Combinators module 
+
+E The GF Software System 
+E.1 The GF shell 
+E.2 The GF batch compiler 
+
+F Bibliography 
+F.1 Publications on GF 
+F.2 Background and related work 
+
+Index
+
+
diff --git a/gf.cabal b/gf.cabal
--- a/gf.cabal
+++ b/gf.cabal
@@ -1,5 +1,5 @@
 name: gf
-version: 3.2
+version: 3.2.9
 
 cabal-version: >= 1.8
 build-type: Custom
@@ -8,16 +8,30 @@
 category: Natural Language Processing, Compiler
 synopsis: Grammatical Framework
 description: GF, Grammatical Framework, is a programming language for multilingual grammar applications
-homepage: http://www.grammaticalframework.org
+homepage: http://www.grammaticalframework.org/
 bug-reports: http://code.google.com/p/grammatical-framework/issues/list
+tested-with: GHC==6.12.3, GHC==7.0.3
 
+source-repository head
+  type:     darcs
+  location: http://www.grammaticalframework.org/
+
 flag interrupt
   Description: Enable Ctrl+Break in the shell
   Default:     True
 
+flag server
+  Description: Include --server mode
+  Default:     True
+
+flag cclazy
+  Description: Use the new, lazy compute_concrete (faster than the old, strict version)
+  Default: True
+
 library
   build-depends: base >= 4.2 && <5,
                  array,
+                 fst,
                  containers,
                  bytestring,
                  random,
@@ -38,6 +52,7 @@
     PGF.Expr
     PGF.Type
     PGF.Tree
+    PGF.Tokenizer
     PGF.Paraphrase
     PGF.TypeCheck
     PGF.Binary
@@ -68,6 +83,7 @@
                  containers,
                  bytestring,
                  filepath,
+                 fst,
                  directory,
                  random,
                  old-time,
@@ -75,12 +91,18 @@
                  pretty,
                  mtl,
                  haskeline
-  build-tools: happy, alex
+  if flag(server)
+    build-depends: httpd-shed, network, silently, utf8-string
+    cpp-options: -DSERVER_MODE
+    other-modules: GFServer
+  build-tools: happy, alex>=2 && <3
   if os(windows)
     build-depends: Win32
   else
     build-depends: unix
   ghc-options: -O2
+  if impl(ghc>=7.0)
+    ghc-options: -rtsopts
   hs-source-dirs: src/compiler src/runtime/haskell
   extensions:
   main-is: GF.hs
@@ -139,6 +161,7 @@
     GF.Compile.PGFtoProlog
     GF.Compile.PGFtoJS
     GF.Compile
+    GF.Index
     GF.Quiz
     PGF
     PGF.CId
@@ -163,3 +186,6 @@
     other-modules: GF.System.UseSignal
   else
     other-modules: GF.System.NoSignal
+
+  if flag(cclazy)
+    cpp-options: -DCC_LAZY
diff --git a/index.html b/index.html
--- a/index.html
+++ b/index.html
@@ -24,16 +24,18 @@
 | <A HREF="doc/tutorial/gf-tutorial.html">Tutorial</A>
 | <A HREF="doc/gf-quickstart.html">QuickStart</A>
 | <A HREF="http://groups.google.com/group/gf-dev">UserGroup</A>
+| <A HREF="gf-book">Book</A><font size=-1 color=red><i>New!</i></font>
 ] 
 </font>
 <P>
-[ <A HREF="http://code.google.com/p/grammatical-framework/wiki/SideBar?tm=6">ForDevelopers</A>
+[ <A HREF="http://code.google.com/p/grammatical-framework/wiki/SideBar?tm=6">Wiki</A>
 | <A HREF="doc/gf-people.html">People</A>
 | <A HREF="doc/gf-bibliography.html">Publications</A>
 | <A HREF="doc/gf-reference.html">QuickRefCard</A>
 | <A HREF="doc/gf-lrec-2010.pdf">LibTutorial</A>
 | <A HREF="http://www.molto-project.eu">MOLTO</A>
 | <A HREF="http://school.grammaticalframework.org">SummerSchool</A>
+| <A HREF="/android/">Android</A>
 ] 
 </div>
 <H2>News</H2>
@@ -41,8 +43,13 @@
 <div class=news2>
 
 <dl>
+<dt>2011-04-15: The <a href="gf-book">GF Book</a> is available.
+<dt>2011-01-13: <a href="http://www.molto-project.eu/node/1177">Phrasedroid
+    available on the Android Market</a>.
+<dt>2011-01-04: GF is part of the
+    <a href="http://www.clt.gu.se/clt-toolkit">CLT Toolkit</a>.
 <dt>2010-12-23: <strong>GF 3.2 released!</strong>
-    <a href="download/release-3.2.html">Release notes</a>
+    <a href="download/release-3.2.html">Release notes</a>.
 <dt>2010-12-22:
   <A HREF="http://school.grammaticalframework.org">GF Summer School</A>
   in Barcelona, 15-26 August 2011.
@@ -187,7 +194,9 @@
 <LI><A HREF="http://www.interlingua.com/">Interlingua</A>
 <LI>Italian
 <LI>Latin (fragments)
+<LI>Nepali
 <LI>Norwegian bokmål
+<LI>Persian
 <LI>Polish
 <li>Punjabi
 <LI>Romanian
@@ -203,12 +212,8 @@
 Adding a language to the resource library takes 3 to 9 
 months - contributions 
 are welcome! You can start with the <A HREF="doc/gf-lrec-2010.pdf">resource grammarian's tutorial</A>.
-</P>
 
-<!-- html code generated by txt2tags 2.4 (http://txt2tags.sf.net) -->
-<!-- cmdline: txt2tags -thtml index.txt -->
 
-
 <script type="text/javascript">
 var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
 document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));
@@ -218,4 +223,5 @@
 var pageTracker = _gat._getTracker("UA-7811807-3");
 pageTracker._trackPageview();
 } catch(err) {}</script>
-</BODY></HTML>
+</BODY>
+</HTML>
diff --git a/lib/doc/Makefile b/lib/doc/Makefile
--- a/lib/doc/Makefile
+++ b/lib/doc/Makefile
@@ -17,6 +17,7 @@
 exx-script:
 	runghc MkExx.hs <api-examples.txt >api-examples.gfs
 exx: exx-script
+	gf -retain -s ../alltenses/TryAfr.gfo <api-examples.gfs >api-examples-Afr.txt
 	gf -retain -s ../alltenses/TryBul.gfo <api-examples.gfs >api-examples-Bul.txt
 	gf -retain -s ../alltenses/TryCat.gfo <api-examples.gfs >api-examples-Cat.txt
 	gf -retain -s ../alltenses/TryDan.gfo <api-examples.gfs >api-examples-Dan.txt
@@ -26,7 +27,10 @@
 	gf -retain -s ../alltenses/TryFre.gfo <api-examples.gfs >api-examples-Fre.txt
 	gf -retain -s ../alltenses/TryGer.gfo <api-examples.gfs >api-examples-Ger.txt
 	gf -retain -s ../alltenses/TryIta.gfo <api-examples.gfs >api-examples-Ita.txt
+	gf -retain -s ../alltenses/TryNep.gfo <api-examples.gfs >api-examples-Nep.txt
 	gf -retain -s ../alltenses/TryNor.gfo <api-examples.gfs >api-examples-Nor.txt
+	gf -retain -s ../alltenses/TryPes.gfo <api-examples.gfs >api-examples-Pes.txt
+	gf -retain -s ../alltenses/TryPnb.gfo <api-examples.gfs >api-examples-Pnb.txt
 	gf -retain -s ../alltenses/TryPol.gfo <api-examples.gfs >api-examples-Pol.txt
 	gf -retain -s ../alltenses/TryRon.gfo <api-examples.gfs >api-examples-Ron.txt
 	gf -retain -s ../alltenses/TryRus.gfo <api-examples.gfs >api-examples-Rus.txt
diff --git a/lib/doc/MkSynopsis.hs b/lib/doc/MkSynopsis.hs
--- a/lib/doc/MkSynopsis.hs
+++ b/lib/doc/MkSynopsis.hs
@@ -17,7 +17,7 @@
 
 -- all languages shown
 apiExxFiles = ["api-examples-" ++ lang ++ ".txt" | lang <- words 
-  "Bul Cat Dan Dut Eng Fin Fre Ger Ita Nor Pol Ron Rus Spa Swe Urd"]
+  "Afr Bul Cat Dan Dut Eng Fin Fre Ger Ita Nep Nor Pes Pnb Pol Ron Rus Spa Swe Urd"]
 
 main = do
   xx <- getArgs
@@ -80,6 +80,8 @@
   title "Lexical Paradigms"
   mapM_ (putParadigms isLatex cs) paradigmFiles
   space
+  include "synopsis-additional.txt"
+  space
   include "synopsis-browse.txt"
   space
   title "An Example of Usage"
@@ -234,6 +236,7 @@
 syntaxAPI = srcPath "/api/Constructors.gf"
 structuralAPI = srcPath "/abstract/Structural.gf"
 paradigmFiles = [
+  ("Afrikaans", srcPath "/afrikaans/ParadigmsAfr.gf"),
   ("Bulgarian", srcPath "/bulgarian/ParadigmsBul.gf"),
   ("Catalan", srcPath "/catalan/ParadigmsCat.gf"),
   ("Danish", srcPath "/danish/ParadigmsDan.gf"),
@@ -244,8 +247,10 @@
   ("German",  srcPath "/german/ParadigmsGer.gf"),
 --  ("Interlingua", srcPath "/interlingua/ParadigmsIna.gf"),
   ("Italian",  srcPath "/italian/ParadigmsIta.gf"),
+  ("Nepali", srcPath "/nepali/ParadigmsNep.gf"),
   ("Norwegian", srcPath "/norwegian/ParadigmsNor.gf"),
   ("Polish", srcPath "/polish/ParadigmsPol.gf"),
+  ("Punjabi", srcPath "/punjabi/ParadigmsPnb.gf"),
   ("Romanian", srcPath "/romanian/ParadigmsRon.gf"),
   ("Russian", srcPath "/russian/ParadigmsRus.gf"),
   ("Spanish",  srcPath "/spanish/ParadigmsSpa.gf"),
diff --git a/lib/doc/hovering.png b/lib/doc/hovering.png
Binary files a/lib/doc/hovering.png and b/lib/doc/hovering.png differ
diff --git a/lib/doc/status.html b/lib/doc/status.html
--- a/lib/doc/status.html
+++ b/lib/doc/status.html
@@ -1,14 +1,14 @@
 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
 <HTML>
 <HEAD>
-<META NAME="generator" CONTENT="http://txt2tags.sf.net">
+<META NAME="generator" CONTENT="http://txt2tags.org">
 <TITLE>The Status of the GF Resource Grammar Library</TITLE>
 </HEAD><BODY BGCOLOR="white" TEXT="black">
-<P ALIGN="center"><CENTER><H1>The Status of the GF Resource Grammar Library</H1>
-<FONT SIZE="4">
-<I>Aarne Ranta</I><BR>
-20101222
-</FONT></CENTER>
+<CENTER>
+<H1>The Status of the GF Resource Grammar Library</H1>
+<FONT SIZE="4"><I>Aarne Ranta</I></FONT><BR>
+<FONT SIZE="4">20110814</FONT>
+</CENTER>
 
 <P>
 The following table gives the languages currently available in the 
@@ -19,7 +19,8 @@
 that are currently available via <A HREF="http://grammaticalframework.org">http://grammaticalframework.org</A> 
 are marked in the table
 </P>
-<TABLE CELLPADDING="4" BORDER="1">
+
+<TABLE BORDER="1" CELLPADDING="4">
 <TR>
 <TH>Lang</TH>
 <TH>Darcs</TH>
@@ -35,7 +36,7 @@
 </TR>
 <TR>
 <TD>Afr</TD>
-<TD>-</TD>
+<TD>+</TD>
 <TD>-</TD>
 <TD>-</TD>
 <TD>-</TD>
@@ -147,7 +148,7 @@
 <TD>+</TD>
 <TD>+</TD>
 <TD>-</TD>
-<TD>-</TD>
+<TD>+</TD>
 <TD>*AR</TD>
 </TR>
 <TR>
@@ -177,6 +178,19 @@
 <TD>*AR,HH</TD>
 </TR>
 <TR>
+<TD>Heb</TD>
+<TD>-</TD>
+<TD>-</TD>
+<TD>-</TD>
+<TD>-</TD>
+<TD>-</TD>
+<TD>-</TD>
+<TD>-</TD>
+<TD>-</TD>
+<TD>-</TD>
+<TD>*DD</TD>
+</TR>
+<TR>
 <TD>Hin</TD>
 <TD>+</TD>
 <TD>+</TD>
@@ -230,7 +244,7 @@
 </TR>
 <TR>
 <TD>Lav</TD>
-<TD>-</TD>
+<TD>+</TD>
 <TD>-</TD>
 <TD>-</TD>
 <TD>-</TD>
@@ -255,6 +269,19 @@
 <TD>*NE</TD>
 </TR>
 <TR>
+<TD>Nep</TD>
+<TD>+</TD>
+<TD>+</TD>
+<TD>++</TD>
+<TD>+</TD>
+<TD>+</TD>
+<TD>-</TD>
+<TD>-</TD>
+<TD>-</TD>
+<TD>-</TD>
+<TD>*DS</TD>
+</TR>
+<TR>
 <TD>Nor</TD>
 <TD>+</TD>
 <TD>+</TD>
@@ -269,16 +296,16 @@
 </TR>
 <TR>
 <TD>Pes</TD>
-<TD>-</TD>
-<TD>-</TD>
-<TD>-</TD>
-<TD>-</TD>
-<TD>-</TD>
+<TD>+</TD>
 <TD>-</TD>
+<TD>+</TD>
+<TD>+</TD>
+<TD>+</TD>
+<TD>+</TD>
 <TD>-</TD>
 <TD>-</TD>
 <TD>-</TD>
-<TD>*SM</TD>
+<TD>*SV,*EA,SM</TD>
 </TR>
 <TR>
 <TD>Pnb</TD>
@@ -343,9 +370,22 @@
 <TD>+</TD>
 <TD>+</TD>
 <TD>-</TD>
-<TD>*AR,IA,TS</TD>
+<TD>*AR,IA,TS,IL</TD>
 </TR>
 <TR>
+<TD>Swa</TD>
+<TD>+</TD>
+<TD>-</TD>
+<TD>-</TD>
+<TD>-</TD>
+<TD>-</TD>
+<TD>-</TD>
+<TD>-</TD>
+<TD>-</TD>
+<TD>-</TD>
+<TD>*WN, JM</TD>
+</TR>
+<TR>
 <TD>Swe</TD>
 <TD>+</TD>
 <TD>+</TD>
@@ -446,23 +486,30 @@
 authors = main contributors, * means still active 
 (ready to fix bugs, answer to questions, etc)
 </P>
+
 <H3>Author codes</H3>
+
 <P>
 AB Ansu Berg,
 AD Ali El Dada,
 AR Aarne Ranta,
 AS Adam Slaski,
 BB Björn Bringert,
+DD Dana Dannélls,
+DS Dinesh Simk,
+EA Elnaz Abolahrar,
 FJ Femke Johansson,
 HH Harald Hammarström,
 GP Gabriele Paganelli,
 IA Ingrid Andersson,
+IL Inari Listenmaa,
 IN Ilona Novak,
 JB Jean-Philippe Bernardy,
 JK Janna Khegai,
 JS Jordi Saludes,
 KA Krasimir Angelov,
 KP Kuchi Prasad,
+JM Juliet Mutahi,
 LPj Laurette Pretorius Jr,
 LPs Laurette Pretorius Sr,
 MF Markus Forsberg,
@@ -474,9 +521,12 @@
 SC Server Cimen,
 SM Sofy Moradi,
 SV Shafqat Virk,
-TH Therese Söderberg
+TH Therese Söderberg,
+WN Wanjiku Ng'ang'a
 </P>
+
 <H2>Rules</H2>
+
 <P>
 Only components available at <A HREF="http://grammaticalframework.org">http://grammaticalframework.org</A> are included in the table.
 </P>
@@ -489,6 +539,6 @@
 contribute some code as soon as you can!
 </P>
 
-<!-- html code generated by txt2tags 2.4 (http://txt2tags.sf.net) -->
+<!-- html code generated by txt2tags 2.6 (http://txt2tags.org) -->
 <!-- cmdline: txt2tags -thtml status.txt -->
 </BODY></HTML>
diff --git a/lib/doc/status.txt b/lib/doc/status.txt
--- a/lib/doc/status.txt
+++ b/lib/doc/status.txt
@@ -13,7 +13,7 @@
 
 
 || Lang | Darcs | Mini | Parad | Lex | Lang | API | Symb | Irreg | Dict | authors       ||
-| Afr   | -     | -    | -     | -   | -    | -   | -    | -     | -    | *LPs,LPj
+| Afr   | +     | -    | -     | -   | -    | -   | -    | -     | -    | *LPs,LPj
 | Amh   | +     | +    | ++    | +   | +    | -   | -    | -     | -    | *MK
 | Ara   | +     | +    | +     | +   | -    | -   | -    | -     | -    | AD
 | Bul   | +     | +    | +     | +   | +    | +   | +    | +     | +    | *KA
@@ -21,23 +21,25 @@
 | Dan   | +     | +    | ++    | +   | +    | +   | +    | +     | -    | *AR
 | Dut   | +     | +    | ++    | +   | +    | +   | +    | +     | -    | *AR,FJ
 | Eng   | +     | +    | ++    | +   | +    | +   | +    | +     | +    | *AR,BB
-| Fin   | +     | +    | ++    | +   | +    | +   | +    | -     | -    | *AR
+| Fin   | +     | +    | ++    | +   | +    | +   | +    | -     | +    | *AR
 | Fre   | +     | +    | ++    | +   | +    | +   | +    | +     | -    | *AR
 | Ger   | +     | +    | ++    | +   | +    | +   | +    | +     | -    | *AR,HH
-% | Heb   | -   | -    | -     | -   | -    | -   | -    | -     | -    | DD
+| Heb   | -     | -    | -     | -   | -    | -   | -    | -     | -    | *DD
 | Hin   | +     | +    | ++    | +   | +    | +   | +    | -     | -    | *SV,*KP,MH,AR
 | Ina   | +     | +    | ++    | +   | +    | -   | -    | -     | -    | JB
 | Ita   | +     | +    | ++    | +   | +    | +   | +    | -     | -    | *AR,*RE,GP
 | Lat   | +     | -    | -     | -   | -    | -   | -    | -     | -    | *AR
-| Lav   | -     | -    | -     | -   | -    | -   | -    | -     | -    | *NG
+| Lav   | +     | -    | -     | -   | -    | -   | -    | -     | -    | *NG
 | Mon   | -     | -    | -     | -   | -    | -   | -    | -     | -    | *NE
+| Nep   | +     | +    | ++    | +   | +    | -   | -    | -     | -    | *DS
 | Nor   | +     | +    | ++    | +   | +    | +   | +    | +     | -    | *AR
-| Pes   | -     | -    | -     | -   | -    | -   | -    | -     | -    | *SM
+| Pes   | +     | -    | +     | +   | +    | +   | -    | -     | -    | *SV,*EA,SM
 | Pnb   | +     | +    | +     | +   | +    | +   | +    | -     | -    | *SV,MH
 | Pol   | +     | +    | +     | +   | +    | +   | +    | -     | -    | IN,*AS
 | Ron   | +     | +    | ++    | +   | +    | +   | +    | -     | -    | *RE
 | Rus   | +     | +    | ++    | +   | +    | +   | -    | -     | -    | JK
-| Spa   | +     | +    | ++    | +   | +    | +   | +    | +     | -    | *AR,IA,TS
+| Spa   | +     | +    | ++    | +   | +    | +   | +    | +     | -    | *AR,IA,TS,IL
+| Swa   | +     | -    | -     | -   | -    | -   | -    | -     | -    | *WN, JM
 | Swe   | +     | +    | ++    | +   | +    | +   | +    | +     | +    | *AR,MF
 | Tha   | +     | -    | -     | -   | -    | -   | -    | -     | -    | *AR
 | Tsn   | -     | -    | -     | -   | -    | -   | -    | -     | -    | *LPs,AB
@@ -75,16 +77,21 @@
 AR Aarne Ranta,
 AS Adam Slaski,
 BB Björn Bringert,
+DD Dana Dannélls,
+DS Dinesh Simk,
+EA Elnaz Abolahrar,
 FJ Femke Johansson,
 HH Harald Hammarström,
 GP Gabriele Paganelli,
 IA Ingrid Andersson,
+IL Inari Listenmaa,
 IN Ilona Novak,
 JB Jean-Philippe Bernardy,
 JK Janna Khegai,
 JS Jordi Saludes,
 KA Krasimir Angelov,
 KP Kuchi Prasad,
+JM Juliet Mutahi,
 LPj Laurette Pretorius Jr,
 LPs Laurette Pretorius Sr,
 MF Markus Forsberg,
@@ -96,8 +103,8 @@
 SC Server Cimen,
 SM Sofy Moradi,
 SV Shafqat Virk,
-TH Therese Söderberg
-
+TH Therese Söderberg,
+WN Wanjiku Ng'ang'a
 
 
 
diff --git a/lib/doc/synopsis-additional.txt b/lib/doc/synopsis-additional.txt
new file mode 100644
--- /dev/null
+++ b/lib/doc/synopsis-additional.txt
@@ -0,0 +1,115 @@
+
+
+
+
+=Additional Libraries=
+
+
+==The Prelude module==
+
+The ``Prelude`` defines commonly used utility functions, in particular for
+strings and booleans.
+
+|| Oper | Type               | Explanation            ||
+| ``SS`` | ``Type`` | the type ``{s : Str}``
+| ``ss`` | ``Str -> SS`` | record from string
+| ``nonExist`` | ``Str`` | missing form
+| ``optStr`` | ``Str -> Str`` | optional string
+| ``bothWays`` | ``(x,y : Str) -> Str`` | either ``x ++ y`` or ``y ++ x``
+| ``Bool`` | ``PType`` | values ``True`` and ``False``
+| ``andB`` | ``(_,_ : Bool) -> Bool`` | conjunction 
+| ``orB`` | ``(_,_ : Bool) -> Bool`` | disjunction
+| ``notB`` | ``Bool -> Bool`` | negation
+| ``if_then_else`` | ``(A:Type)->Bool->A->A->A`` | conditional 
+| ``init`` | ``Str -> Str`` | drop last character
+| ``last`` | ``Str -> Str`` | return last character
+| ``glue`` | ``Str -> Str -> Str`` | glue tokens together
+
+
+==The Predefined module==
+
+These functions are hard-coded in GF. They are available without explicit opening, by the used of qualified names, e.g. ``Predef.tk``.
+
+|| operation | type | explanation ||
+| ``PBool`` | ``PType`` | ``PTrue | PFalse``
+| ``Error`` | ``Type`` | the empty type
+| ``Integer`` | ``Type`` | the type of integers
+| ``Ints`` | ``Integer -> Type`` | integers from 0 to n
+| ``error`` | ``Str -> Error`` | forms error message
+| ``length`` | ``Str -> Int`` | length of string
+| ``drop`` | ``Integer -> Str -> Str`` | drop prefix of length
+| ``take`` | ``Integer -> Str -> Str`` | take prefix of length
+| ``tk`` | ``Integer -> Str -> Str`` | drop suffix of length
+| ``dp`` | ``Integer -> Str -> Str`` | take suffix of length
+| ``eqInt`` | ``Integer -> Integer -> PBool`` | test if equal integers
+| ``lessInt`` | ``Integer -> Integer -> PBool`` | test order of integers
+| ``plus`` | ``Integer -> Integer -> Integer`` | add integers
+| ``eqStr`` | ``Str -> Str -> PBool`` | test if equal strings
+| ``occur`` | ``Str -> Str -> PBool`` | test if occurs as substring
+| ``occurs`` | ``Str -> Str -> PBool`` | test if any char occurs
+| ``show`` | ``(P : Type) -> P -> Str`` | convert param to string
+| ``toStr`` | ``(L : Type) -> L -> Str`` | find the "first" string
+
+
+
+==The Formal module==
+
+This module is used for defining formal languages, in particular ones that
+use precedence levels and parentheses for grouping subexpressions.
+
+|| Oper | Type               | Explanation            ||
+| ``Prec`` | ``PType``    | precedence levels 0..4
+| ``TermPrec`` | ``Type`` | string with precedence
+| ``mkPrec`` | ``Prec -> Str -> TermPrec`` | construct a ``TermPrec``
+| ``top`` | ``TermPrec -> Str`` | top term (lowest prec.)
+| ``constant`` | ``Str -> TermPrec`` | atomic (highest prec.)
+| ``infixl`` | ``Prec->Str->(_,_:TermPrec)->TermPrec`` | left-assoc. infix
+| ``infixr`` | ``Prec->Str->(_,_:TermPrec)->TermPrec`` | right-assoc. infix
+| ``infixn`` | ``Prec->Str->(_,_:TermPrec)->TermPrec`` | non-assoc. infix
+| ``usePrec`` | ``Prec -> TermPrec -> Str`` | use term on given level
+
+
+==The Symbolic module==
+
+This module is used for embedding symbolic notation in natural-language
+text constructed by the resource grammar API. It works for all resource
+languages.
+
+|| Function | Type | Example ||
+| ``symb`` | ``Str -> NP`` |                       //x//
+| ``symb`` | ``Int -> NP`` |                       //23//
+| ``symb`` | ``Float -> NP`` |                     //0.99//
+| ``symb`` | ``CN  -> Numeral -> NP`` |            //level four//
+| ``symb`` | ``Det -> N+  -> Numeral -> NP`` |     //the level four//
+| ``symb`` | ``Det -> CN -> [Symb] -> NP`` |       //the levels i, j and k//
+| ``symb`` | ``Symb -> S`` |                       //A// (formula)
+| ``symb`` | ``Symb -> Card`` |                    //n// (number)
+| ``mkSymb`` | ``Str -> Symb`` |                   //x//
+
+
+==The Combinators module==
+
+This module gives shortcuts for defining predicates (``pred``) and function 
+expressions (``app``). It works for all resource languages.
+
+|| Function | Type | Example ||
+| ``pred`` | ``V  -> NP -> Cl`` |          //x converges//
+| ``pred`` | ``V2 -> NP -> NP -> Cl`` |    //x intersects y//
+| ``pred`` | ``V  -> NP -> NP -> Cl`` |    //x and y intersect//
+| ``pred`` | ``A  -> NP -> Cl`` |          //x is even//
+| ``pred`` | ``A2 -> NP -> NP -> Cl`` |    //x is divisible by y//
+| ``pred`` | ``A  -> NP -> NP -> Cl`` |    //x and y are equal//
+| ``pred`` | ``N  -> NP -> Cl`` |          //x is a maximum//
+| ``pred`` | ``N  -> NP -> NP -> Cl`` |    //x and y are inverses// 
+| ``pred`` | ``Adv -> NP -> Cl`` |         //x is in scope//
+| ``pred`` | ``Prep -> NP -> NP -> Cl`` |  //x is outside y//
+| ``app`` | ``N  -> NP`` |              //the bottom//
+| ``app`` | ``N2 -> NP -> NP`` |        //the successor of x//
+| ``app`` | ``N3 -> NP -> NP -> NP`` |  //the distance from x to y//
+| ``app`` | ``N2 -> NP -> NP -> NP`` |  //the sum of x and y//
+| ``app`` | ``N2 -> N  -> CN`` |        //set of integers//
+| ``app`` | ``N2 -> NP -> CN`` |        //divisor of x//
+| ``app`` | ``N3 -> NP -> NP -> CN`` |  //path from x to y//
+| ``app`` | ``N2 -> NP -> NP -> CN`` |  //path between x and y//
+
+
diff --git a/lib/doc/synopsis-browse.txt b/lib/doc/synopsis-browse.txt
--- a/lib/doc/synopsis-browse.txt
+++ b/lib/doc/synopsis-browse.txt
@@ -7,28 +7,17 @@
 **New**: Browsing by syntax editor 
 [directly on the web ../../../demos/resource-api/editor.html].
 
-All of the following assume
-```
-  cd $GF_LIB_PATH
-```
+All of the following assume that
+``GF_LIB_PATH`` points to the directory ``GF/lib`` with compiled libraries.
+
 To try out inflection paradigms:
 ```
-  > i -path=alltenses -retain alltenses/ParadigmsGer.gfo
+  > i -retain alltenses/ParadigmsGer.gfo
   > cc mkN "Farbe"
 ```
 To try out overloaded syntax, test lexicon, and inflection paradigms:
 ```
-  > i -path=alltenses -retain alltenses/TryGer.gfo
+  > i -retain alltenses/TryGer.gfo
   > cc mkCl (mkNP this_Quant (mkN "Farbe")) (mkA "dunkel")
 ```
-% To look for a syntax tree in the overload API by parsing:
-% ```
-%  > i -path=alltenses alltenses/OverLangEng.gf
-%  > p -cat=S -overload "this grammar is too big"
-% ```
-% To view linearizations in all languages by parsing from English:
-% ```
-%  > i alltenses/langs.gfcm
-%  > p -cat=S -lang=LangEng "this grammar is too big" | tb
-% ```
 
diff --git a/lib/doc/synopsis-intro.txt b/lib/doc/synopsis-intro.txt
--- a/lib/doc/synopsis-intro.txt
+++ b/lib/doc/synopsis-intro.txt
@@ -23,11 +23,12 @@
 - [Chapter 2 #toc5]: syntactic construction functions, with cross-links and
 examples. 
 - [Chapter 3 #toc83]: morphological paradigms.
-- [Chapter 4 #toc100]: how to "browse" the library by 
+- [Chapter 4 #toc102]: additional libraries.
+- [Chapter 5 #toc108]: how to "browse" the library by 
 loading the grammars into the ``gf`` command editor.
-- [Chapter 5 #toc101]: a brief example of how application grammars can
+- [Chapter 6 #toc109]: a brief example of how application grammars can
 use the resource modules. 
-- [Detailed table of contents #toc102].
+- [Detailed table of contents #toc110].
 
 
 Many examples in [Chapter 2 #toc5] can be seen in multiple languages by hovering the
diff --git a/lib/doc/synopsis.html b/lib/doc/synopsis.html
--- a/lib/doc/synopsis.html
+++ b/lib/doc/synopsis.html
@@ -1,8728 +1,9589 @@
 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
 <HTML>
 <HEAD>
-<META NAME="generator" CONTENT="http://txt2tags.sf.net">
-<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=utf-8">
-<LINK REL="stylesheet" TYPE="text/css" HREF="./revealpopup.css">
-<TITLE>GF Resource Grammar Library: Synopsis</TITLE>
-</HEAD><BODY BGCOLOR="white" TEXT="black">
-<P ALIGN="center"><CENTER><H1>GF Resource Grammar Library: Synopsis</H1>
-<FONT SIZE="4">
-<I>B. Bringert, T. Hallgren, and A. Ranta</I><BR>
-</FONT></CENTER>
-
-<A NAME="toc1"></A>
-<H1>Introduction</H1>
-<P>
-The GF Resource Grammar Library is the standard library for Grammatical Framework.
-It covers the morphology and basic syntax of currently 16 languages.
-</P>
-<P>
-This document contains the most important parts of the GF Resource Grammar API,
-as needed by a GF application programmer.
-It has been machine-generated from the source files; there are links
-to the relevant source files, which give more information. Some of the files have
-not yet been prepared so that the machine generated documentation has the nicest
-possible format.
-</P>
-<P>
-The main contents are:
-</P>
-<UL>
-<LI><A HREF="#toc2">Chapter 1</A>: categories, with links to the functions for
-constructing trees in them.
-<LI><A HREF="#toc5">Chapter 2</A>: syntactic construction functions, with cross-links and
-examples. 
-<LI><A HREF="#toc83">Chapter 3</A>: morphological paradigms.
-<LI><A HREF="#toc100">Chapter 4</A>: how to "browse" the library by 
-loading the grammars into the <CODE>gf</CODE> command editor.
-<LI><A HREF="#toc101">Chapter 5</A>: a brief example of how application grammars can
-use the resource modules. 
-<LI><A HREF="#toc102">Detailed table of contents</A>.
-</UL>
-
-<P>
-Many examples in <A HREF="#toc5">Chapter 2</A> can be seen in multiple languages by hovering the
-mouse over the example, as shown in the following screenshot:
-</P>
-<P>
-<IMG ALIGN="middle" SRC="hovering.png" BORDER="0" ALT="">
-</P>
-<P>
-Other relevant documents:
-</P>
-<UL>
-<LI><A HREF="./status.html"><CODE>status.html</CODE></A>: the current status of different languages
-  and the authors of each grammar
-<LI><A HREF="http://www.grammaticalframework.org/doc/gf-lrec-2010.pdf">Resource Grammar Tutorial</A>
-  as presented in LREC-2010.
-<LI>Paper "The GF Resource Grammar Library" by A. Ranta
-  (<I>Linguistic Issues in Language Technology</I>, 2 (2), 2009). An overview of
-  the library with linguistic motivations.
-  <A HREF="http://elanguage.net/journals/index.php/lilt/article/viewFile/214/158">PDF</A>
-<LI>Paper "Grammars as Software Libraries" by A. Ranta
-  (In Y. Bertot, G. Huet, J-J. Lévy, and G. Plotkin (eds.),
-   <I>From Semantics to Computer Science</I>, Cambridge University Press, 
-   Cambridge, pp. 281--308, 2009).
-  The library from a software engineering point of view.
-  <A HREF="http://www.cse.chalmers.se/~aarne/old/articles/libraries-kahn.pdf">PDF</A>
-</UL>
-
-<A NAME="toc2"></A>
-<H1>Categories</H1>
-<P>
-Source 1: <A HREF="http://www.grammaticalframework.org/lib/src/abstract/Common.gf"><CODE>../src/abstract/Common.gf</CODE></A>
-</P>
-<P>
-Source 2: <A HREF="http://www.grammaticalframework.org/lib/src/abstract/Cat.gf"><CODE>../src/abstract/Cat.gf</CODE></A>
-</P>
-<A NAME="toc3"></A>
-<H2>A hierarchic view</H2>
-<P>
-The chart below shows the categories in a hierarchical top-down order.
-The edges do not define the complete dependency structure; if they did,
-the graph would have many many more edges, and also many cycles. The precise
-meaning of a directed edge from <I>C</I> to <I>D</I> is: there is a constructor
-of <I>C</I> that takes <I>D</I> as an argument. What the constructors exactly are,
-and what other arguments they take, is described by separate tables for
-each category.
-</P>
-<TABLE ALIGN="center" BORDER="1" CELLPADDING="4">
-<TR>
-<TD ALIGN="right"><center><IMG ALIGN="middle" SRC="categories.png" USEMAP="#categories" BORDER="0" ALT=""></center></TD>
-</TR>
-</TABLE>
-
-<map id="categories" name="categories">
-<area shape="poly" href="#Text" TITLE="Text - text consisting of several phrases" alt="" coords="690,23 688,17 685,12 679,8 672,5 664,4 656,5 649,8 643,12 640,17 638,23 640,29 643,34 649,38 656,41 664,42 672,41 679,38 685,34 688,29"/>
-<area shape="poly" href="#Punct" title="Punct" alt="" coords="657,95 656,89 652,84 646,80 638,77 629,76 620,77 612,80 606,84 602,89 600,95 602,101 606,106 612,110 620,113 629,114 638,113 646,110 652,106 656,101"/>
-<area shape="poly" href="#Phr" TITLE="Phr - phrase in a text" alt="" coords="726,95 725,89 721,84 715,80 708,77 700,76 692,77 685,80 679,84 676,89 675,95 676,101 679,106 685,110 692,113 700,114 708,113 715,110 721,106 725,101"/>
-<area shape="poly" href="#PConj" TITLE="PConj - phrase-beginning conjunction" alt="" coords="658,167 656,162 652,156 645,152 637,150 628,149 619,150 610,152 604,156 600,162 598,167 600,173 604,179 610,183 619,185 628,186 637,185 645,183 652,179 656,173"/>
-<area shape="poly" href="#Utt" TITLE="Utt - sentence, question, word..." alt="" coords="726,167 725,162 721,156 715,152 708,150 700,149 692,150 685,152 679,156 676,162 675,167 676,173 679,179 685,183 692,185 700,186 708,185 715,183 721,179 725,173"/>
-<area shape="poly" href="#Voc" TITLE="Voc - vocative or "please"" alt="" coords="794,167 793,162 789,156 784,152 777,150 769,149 761,150 754,152 748,156 744,162 743,167 744,173 748,179 754,183 761,185 769,186 777,185 784,183 789,179 793,173"/>
-<area shape="poly" href="#Imp" TITLE="Imp - imperative" alt="" coords="657,240 656,234 652,229 647,225 640,222 632,221 624,222 617,225 611,229 607,234 606,240 607,246 611,251 617,255 624,258 632,259 640,258 647,255 652,251 656,246"/>
-<area shape="poly" href="#S" TITLE="S - declarative sentence" alt="" coords="726,240 725,234 721,229 715,225 708,223 700,222 692,223 685,225 679,229 676,234 675,240 676,245 679,250 685,254 692,257 700,258 708,257 715,254 721,250 725,245"/>
-<area shape="poly" href="#QS" TITLE="QS - question" alt="" coords="870,240 868,234 865,229 859,225 852,222 844,221 836,222 829,225 823,229 819,234 818,240 819,246 823,251 829,255 836,258 844,259 852,258 859,255 865,251 868,246"/>
-<area shape="poly" href="#Tense" TITLE="Tense - tense" alt="" coords="521,312 519,306 515,301 509,297 501,294 492,293 483,294 475,297 469,301 464,306 463,312 464,318 469,323 475,327 483,330 492,331 501,330 509,327 515,323 519,318"/>
-<area shape="poly" href="#Ant" TITLE="Ant - anteriority" alt="" coords="589,312 588,306 584,301 578,297 571,294 563,293 555,294 548,297 542,301 539,306 538,312 539,318 542,323 548,327 555,330 563,331 571,330 578,327 584,323 588,318"/>
-<area shape="poly" href="#Pol" TITLE="Pol - polarity" alt="" coords="657,312 656,306 652,301 647,297 640,294 632,293 624,294 617,297 611,301 607,306 606,312 607,318 611,323 617,327 624,330 632,331 640,330 647,327 652,323 656,318"/>
-<area shape="poly" href="#Cl" TITLE="Cl - declarative clause, with all tenses" alt="" coords="726,312 725,306 721,301 715,297 708,294 700,293 692,294 685,297 679,301 676,306 675,312 676,318 679,323 685,327 692,330 700,331 708,330 715,327 721,323 725,318"/>
-<area shape="poly" href="#ListS" title="ListS" alt="" coords="798,312 797,306 793,301 787,297 779,294 771,293 762,294 754,297 748,301 745,306 743,312 745,318 748,323 754,327 762,330 771,331 779,330 787,327 793,323 797,318"/>
-<area shape="poly" href="#Conj" TITLE="Conj - conjunction" alt="" coords="867,312 866,306 862,301 856,297 849,294 841,293 833,294 826,297 820,301 816,306 815,312 816,318 820,323 826,327 833,330 841,331 849,330 856,327 862,323 866,318"/>
-<area shape="poly" href="#QCl" TITLE="QCl - question clause, with all tenses" alt="" coords="945,312 943,306 940,301 934,297 927,294 919,293 911,294 904,297 898,301 895,306 893,312 895,318 898,323 904,327 911,330 919,331 927,330 934,327 940,323 943,318"/>
-<area shape="poly" href="#NP" TITLE="NP - noun phrase (subject or object)" alt="" coords="270,384 269,379 265,373 260,369 252,366 244,366 237,366 229,369 224,373 220,379 219,384 220,390 224,395 229,400 237,402 244,403 252,402 260,400 265,395 269,390"/>
-<area shape="poly" href="#VP" TITLE="VP - verb phrase" alt="" coords="636,384 634,379 631,373 625,369 618,366 610,366 602,366 595,369 589,373 585,379 584,384 585,390 589,395 595,400 602,402 610,403 618,402 625,400 631,395 634,390"/>
-<area shape="rect" href="#Adv" TITLE="Adv - verb-phrase-modifying adverb" alt="" coords="702,367,753,401"/>
-<area shape="poly" href="#Predet" TITLE="Predet - predeterminer (prefixed Quant)" alt="" coords="65,457 63,451 59,446 52,441 44,439 34,438 25,439 16,441 10,446 5,451 4,457 5,462 10,468 16,472 25,475 34,475 44,475 52,472 59,468 63,462"/>
-<area shape="poly" href="#Pron" TITLE="Pron - personal pronoun" alt="" coords="133,457 132,451 129,446 123,441 116,439 108,438 99,439 92,441 86,446 83,451 82,457 83,462 86,468 92,472 99,475 108,475 116,475 123,472 129,468 132,462"/>
-<area shape="rect" href="#PN" TITLE="PN - proper name" alt="" coords="150,440,202,474"/>
-<area shape="poly" href="#Det" TITLE="Det - determiner phrase" alt="" coords="270,457 269,451 265,446 260,441 252,439 244,438 237,439 229,441 224,446 220,451 219,457 220,462 224,468 229,472 237,475 244,475 252,475 260,472 265,468 269,462"/>
-<area shape="poly" href="#CN" TITLE="CN - common noun (without determiner)" alt="" coords="339,457 337,451 334,446 328,441 321,439 313,438 305,439 298,441 292,446 289,451 287,457 289,462 292,468 298,472 305,475 313,475 321,475 328,472 334,468 337,462"/>
-<area shape="poly" href="#ListNP" title="ListNP" alt="" coords="420,457 419,451 414,446 407,441 398,439 388,438 378,439 369,441 362,446 358,451 356,457 358,462 362,468 369,472 378,475 388,475 398,475 407,472 414,468 419,462"/>
-<area shape="poly" href="#AdV" TITLE="Adv - verb-phrase-modifying adverb" alt="" coords="489,457 488,451 484,446 479,441 471,439 463,438 455,439 448,441 442,446 439,451 437,457 439,462 442,468 448,472 455,475 463,475 471,475 479,472 484,468 488,462"/>
-<area shape="rect" href="#V" TITLE="V - one-place verb" alt="" coords="506,440,616,474"/>
-<area shape="poly" href="#AP" TITLE="AP - adjectival phrase" alt="" coords="685,457 684,451 680,446 674,441 667,439 659,438 651,439 644,441 639,446 635,451 634,457 635,462 639,468 644,472 651,475 659,475 667,475 674,472 680,468 684,462"/>
-<area shape="poly" href="#Subj" TITLE="Subj - subjunction" alt="" coords="753,457 752,451 749,446 743,441 736,439 728,438 720,439 713,441 707,446 703,451 702,457 703,462 707,468 713,472 720,475 728,475 736,475 743,472 749,468 752,462"/>
-<area shape="poly" href="#ListAdj" title="ListAdj" alt="" coords="837,457 836,451 831,446 824,441 814,439 804,438 794,439 784,441 777,446 772,451 770,457 772,462 777,468 784,472 794,475 804,475 814,475 824,472 831,468 836,462"/>
-<area shape="poly" href="#Art" title="Art" alt="" coords="90,529 89,523 85,518 80,514 73,511 65,510 57,511 50,514 44,518 40,523 39,529 40,535 44,540 50,544 57,547 65,548 73,547 80,544 85,540 89,535"/>
-<area shape="poly" 'href="#Quant" TITLE="Quant - quantifier ('nucleus' of Det)"' alt="" coords="166,529 165,523 161,518 154,514 146,511 137,510 128,511 120,514 113,518 109,523 108,529 109,535 113,540 120,544 128,547 137,548 146,547 154,544 161,540 165,535"/>
-<area shape="poly" href="#Num" TITLE="Num - number determining element" alt="" coords="237,529 235,523 232,518 226,514 218,511 210,510 202,511 195,514 189,518 185,523 184,529 185,535 189,540 195,544 202,547 210,548 218,547 226,544 232,540 235,535"/>
-<area shape="poly" href="#Ord" TITLE="Ord - ordinal number (used in Det)" alt="" coords="305,529 304,523 300,518 295,514 288,511 280,510 272,511 265,514 259,518 255,523 254,529 255,535 259,540 265,544 272,547 280,548 288,547 295,544 300,540 304,535"/>
-<area shape="rect" href="#N" TITLE="N - common noun" alt="" coords="323,512,387,546"/>
-<area shape="poly" href="#RS" TITLE="RS - relative" alt="" coords="456,529 454,523 451,518 445,514 438,511 430,510 422,511 415,514 409,518 406,523 404,529 406,535 409,540 415,544 422,547 430,548 438,547 445,544 451,540 454,535"/>
-<area shape="poly" href="#Card" TITLE="Card - cardinal number" alt="" coords="236,601 235,595 231,590 226,586 218,583 210,582 202,583 195,586 189,590 186,595 184,601 186,607 189,612 195,616 202,619 210,620 218,619 226,616 231,612 235,607"/>
-<area shape="poly" href="#Numeral" TITLE="Numeral - cardinal or ordinal in words" alt="" coords="216,674 214,668 206,662 194,658 179,656 162,655 145,656 130,658 118,662 110,668 107,674 110,679 118,685 130,689 145,691 162,692 179,691 194,689 206,685 214,679"/>
-<area shape="poly" href="#AdN" TITLE="AdN - numeral-modifying adverb" alt="" coords="285,674 283,668 280,662 274,658 267,656 259,655 251,656 244,658 238,662 234,668 233,674 234,679 238,685 244,689 251,691 259,692 267,691 274,689 280,685 283,679"/>
-<area shape="poly" href="#CAdv" TITLE="CAdv - comparative adverb" alt="" coords="288,746 286,740 282,735 276,731 268,728 259,727 250,728 242,731 235,735 231,740 230,746 231,752 235,757 242,761 250,764 259,765 268,764 276,761 282,757 286,752"/>
-<area shape="poly" href="#RCl" TITLE="RCl - relative clause, with all tenses" alt="" coords="456,601 454,595 451,590 445,586 438,583 430,582 422,583 415,586 409,590 406,595 404,601 406,607 409,612 415,616 422,619 430,620 438,619 445,616 451,612 454,607"/>
-<area shape="poly" href="#AdA" TITLE="AdA - adjective-modifying adverb" alt="" coords="617,529 615,523 612,518 606,514 599,511 591,510 583,511 576,514 570,518 566,523 565,529 566,535 570,540 576,544 583,547 591,548 599,547 606,544 612,540 615,535"/>
-<area shape="rect" href="#A" TITLE="A - one-place adjective" alt="" coords="634,512,685,546"/>
-<area shape="poly" href="#ListAP" title="ListAP" alt="" coords="767,529 765,523 760,518 753,514 744,511 734,510 725,511 716,514 708,518 704,523 702,529 704,535 708,540 716,544 725,547 734,548 744,547 753,544 760,540 765,535"/>
-<area shape="poly" href="#IP" TITLE="IP - interrogative pronoun" alt="" coords="895,384 894,379 890,373 885,369 877,366 870,366 862,366 854,369 849,373 845,379 844,384 845,390 849,395 854,400 862,402 870,403 877,402 885,400 890,395 894,390"/>
-<area shape="poly" href="#IAdv" TITLE="IAdv - interrogative adverb" alt="" coords="966,384 965,379 961,373 955,369 947,366 939,366 931,366 923,369 917,373 913,379 912,384 913,390 917,395 923,400 931,402 939,403 947,402 955,400 961,395 965,390"/>
-<area shape="poly" href="#ClSlash" title="ClSlash" alt="" coords="1050,384 1048,379 1043,373 1036,369 1026,366 1016,366 1006,366 996,369 989,373 984,379 982,384 984,390 989,395 996,400 1006,402 1016,403 1026,402 1036,400 1043,395 1048,390"/>
-<area shape="poly" href="#IDet" TITLE="IDet - interrogative determiner" alt="" coords="906,457 904,451 901,446 895,441 888,439 880,438 872,439 865,441 859,446 856,451 854,457 856,462 859,468 865,472 872,475 880,475 888,475 895,472 901,468 904,462"/>
-<area shape="poly" href="#VPSlash" TITLE="VPSlash - verb phrase missing complement" alt="" coords="1052,457 1050,451 1045,446 1037,441 1027,439 1016,438 1005,439 995,441 987,446 982,451 980,457 982,462 987,468 995,472 1005,475 1016,475 1027,475 1037,472 1045,468 1050,462"/>
-<area shape="poly" href="#IQuant" title="IQuant" alt="" coords="912,529 910,523 906,518 899,514 890,511 880,510 870,511 861,514 854,518 850,523 848,529 850,535 854,540 861,544 870,547 880,548 890,547 899,544 906,540 910,535"/>
-<area shape="poly" href="#RP" TITLE="RP - relative pronoun" alt="" coords="456,674 454,668 451,662 445,658 438,656 430,655 422,656 415,658 409,662 406,668 404,674 406,679 409,685 415,689 422,691 430,692 438,691 445,689 451,685 454,679"/>
-</map>
-<P>
-The rectangular boxes mark open lexical categories, which have constructors
-also in the <CODE>Paradigms</CODE> modules.
-</P>
-<A NAME="toc4"></A>
-<H2>Explanations</H2>
-<TABLE BORDER="1" CELLPADDING="4">
-<TR>
-<TH>Category</TH>
-<TH>Explanation</TH>
-<TH COLSPAN="2">Example</TH>
-</TR>
-<TR>
-<TD><A HREF="#A" TITLE="A - one-place adjective">A</A></TD>
-<TD>one-place adjective</TD>
-<TD><I>warm</I></TD>
-</TR>
-<TR>
-<TD><A HREF="#A2" TITLE="A2 - two-place adjective">A2</A></TD>
-<TD>two-place adjective</TD>
-<TD><I>divisible</I></TD>
-</TR>
-<TR>
-<TD><A HREF="#AP" TITLE="AP - adjectival phrase">AP</A></TD>
-<TD>adjectival phrase</TD>
-<TD><I>very warm</I></TD>
-</TR>
-<TR>
-<TD><A HREF="#AdA" TITLE="AdA - adjective-modifying adverb">AdA</A></TD>
-<TD>adjective-modifying adverb</TD>
-<TD><I>very</I></TD>
-</TR>
-<TR>
-<TD><A HREF="#AdN" TITLE="AdN - numeral-modifying adverb">AdN</A></TD>
-<TD>numeral-modifying adverb</TD>
-<TD><I>more than</I></TD>
-</TR>
-<TR>
-<TD><A HREF="#AdV" TITLE="Adv - verb-phrase-modifying adverb">AdV</A></TD>
-<TD>adverb directly attached to verb</TD>
-<TD><I>always</I></TD>
-</TR>
-<TR>
-<TD><A HREF="#Adv" TITLE="Adv - verb-phrase-modifying adverb">Adv</A></TD>
-<TD>verb-phrase-modifying adverb</TD>
-<TD><I>in the house</I></TD>
-</TR>
-<TR>
-<TD><A HREF="#Ant" TITLE="Ant - anteriority">Ant</A></TD>
-<TD>anteriority</TD>
-<TD>simultaneous, anterior</TD>
-</TR>
-<TR>
-<TD><A HREF="#CAdv" TITLE="CAdv - comparative adverb">CAdv</A></TD>
-<TD>comparative adverb</TD>
-<TD><I>more</I></TD>
-</TR>
-<TR>
-<TD><A HREF="#CN" TITLE="CN - common noun (without determiner)">CN</A></TD>
-<TD>common noun (without determiner)</TD>
-<TD><I>red house</I></TD>
-</TR>
-<TR>
-<TD><A HREF="#Card" TITLE="Card - cardinal number">Card</A></TD>
-<TD>cardinal number</TD>
-<TD><I>seven</I></TD>
-</TR>
-<TR>
-<TD><A HREF="#Cl" TITLE="Cl - declarative clause, with all tenses">Cl</A></TD>
-<TD>declarative clause, with all tenses</TD>
-<TD><I>she looks at this</I></TD>
-</TR>
-<TR>
-<TD><A HREF="#Comp" TITLE="Comp - complement of copula, such as AP">Comp</A></TD>
-<TD>complement of copula, such as AP</TD>
-<TD><I>very warm</I></TD>
-</TR>
-<TR>
-<TD><A HREF="#Conj" TITLE="Conj - conjunction">Conj</A></TD>
-<TD>conjunction</TD>
-<TD><I>and</I></TD>
-</TR>
-<TR>
-<TD><A HREF="#Det" TITLE="Det - determiner phrase">Det</A></TD>
-<TD>determiner phrase</TD>
-<TD><I>those seven</I></TD>
-</TR>
-<TR>
-<TD><A HREF="#Digits" TITLE="Digits - cardinal or ordinal in digits">Digits</A></TD>
-<TD>cardinal or ordinal in digits</TD>
-<TD><I>1,000/1,000th</I></TD>
-</TR>
-<TR>
-<TD><A HREF="#IAdv" TITLE="IAdv - interrogative adverb">IAdv</A></TD>
-<TD>interrogative adverb</TD>
-<TD><I>why</I></TD>
-</TR>
-<TR>
-<TD><A HREF="#IComp" TITLE="IComp - interrogative complement of copula">IComp</A></TD>
-<TD>interrogative complement of copula</TD>
-<TD><I>where</I></TD>
-</TR>
-<TR>
-<TD><A HREF="#IDet" TITLE="IDet - interrogative determiner">IDet</A></TD>
-<TD>interrogative determiner</TD>
-<TD><I>how many</I></TD>
-</TR>
-<TR>
-<TD><A HREF="#IP" TITLE="IP - interrogative pronoun">IP</A></TD>
-<TD>interrogative pronoun</TD>
-<TD><I>who</I></TD>
-</TR>
-<TR>
-<TD><A HREF="#Imp" TITLE="Imp - imperative">Imp</A></TD>
-<TD>imperative</TD>
-<TD><I>look at this</I></TD>
-</TR>
-<TR>
-<TD><A HREF="#Interj" TITLE="Interj - interjection">Interj</A></TD>
-<TD>interjection</TD>
-<TD><I>alas</I></TD>
-</TR>
-<TR>
-<TD><A HREF="#N" TITLE="N - common noun">N</A></TD>
-<TD>common noun</TD>
-<TD><I>house</I></TD>
-</TR>
-<TR>
-<TD><A HREF="#N2" TITLE="N2 - relational noun">N2</A></TD>
-<TD>relational noun</TD>
-<TD><I>son</I></TD>
-</TR>
-<TR>
-<TD><A HREF="#N3" TITLE="N3 - three-place relational noun">N3</A></TD>
-<TD>three-place relational noun</TD>
-<TD><I>connection</I></TD>
-</TR>
-<TR>
-<TD><A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A></TD>
-<TD>noun phrase (subject or object)</TD>
-<TD><I>the red house</I></TD>
-</TR>
-<TR>
-<TD><A HREF="#Num" TITLE="Num - number determining element">Num</A></TD>
-<TD>number determining element</TD>
-<TD><I>seven</I></TD>
-</TR>
-<TR>
-<TD><A HREF="#Numeral" TITLE="Numeral - cardinal or ordinal in words">Numeral</A></TD>
-<TD>cardinal or ordinal in words</TD>
-<TD><I>five/fifth</I></TD>
-</TR>
-<TR>
-<TD><A HREF="#Ord" TITLE="Ord - ordinal number (used in Det)">Ord</A></TD>
-<TD>ordinal number (used in Det)</TD>
-<TD><I>seventh</I></TD>
-</TR>
-<TR>
-<TD><A HREF="#PConj" TITLE="PConj - phrase-beginning conjunction">PConj</A></TD>
-<TD>phrase-beginning conjunction</TD>
-<TD><I>therefore</I></TD>
-</TR>
-<TR>
-<TD><A HREF="#PN" TITLE="PN - proper name">PN</A></TD>
-<TD>proper name</TD>
-<TD><I>Paris</I></TD>
-</TR>
-<TR>
-<TD><A HREF="#Phr" TITLE="Phr - phrase in a text">Phr</A></TD>
-<TD>phrase in a text</TD>
-<TD><I>but be quiet please</I></TD>
-</TR>
-<TR>
-<TD><A HREF="#Pol" TITLE="Pol - polarity">Pol</A></TD>
-<TD>polarity</TD>
-<TD>positive, negative</TD>
-</TR>
-<TR>
-<TD><A HREF="#Predet" TITLE="Predet - predeterminer (prefixed Quant)">Predet</A></TD>
-<TD>predeterminer (prefixed Quant)</TD>
-<TD><I>all</I></TD>
-</TR>
-<TR>
-<TD><A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A></TD>
-<TD>preposition, or just case</TD>
-<TD><I>in</I></TD>
-</TR>
-<TR>
-<TD><A HREF="#Pron" TITLE="Pron - personal pronoun">Pron</A></TD>
-<TD>personal pronoun</TD>
-<TD><I>she</I></TD>
-</TR>
-<TR>
-<TD><A HREF="#QCl" TITLE="QCl - question clause, with all tenses">QCl</A></TD>
-<TD>question clause, with all tenses</TD>
-<TD><I>why does she walk</I></TD>
-</TR>
-<TR>
-<TD><A HREF="#QS" TITLE="QS - question">QS</A></TD>
-<TD>question</TD>
-<TD><I>where did she live</I></TD>
-</TR>
-<TR>
-<TD><A 'HREF="#Quant" TITLE="Quant - quantifier ('nucleus' of Det)"'>Quant</A></TD>
-<TD>quantifier ('nucleus' of Det)</TD>
-<TD><I>this/these</I></TD>
-</TR>
-<TR>
-<TD><A HREF="#RCl" TITLE="RCl - relative clause, with all tenses">RCl</A></TD>
-<TD>relative clause, with all tenses</TD>
-<TD><I>in which she lives</I></TD>
-</TR>
-<TR>
-<TD><A HREF="#RP" TITLE="RP - relative pronoun">RP</A></TD>
-<TD>relative pronoun</TD>
-<TD><I>in which</I></TD>
-</TR>
-<TR>
-<TD><A HREF="#RS" TITLE="RS - relative">RS</A></TD>
-<TD>relative</TD>
-<TD><I>in which she lived</I></TD>
-</TR>
-<TR>
-<TD><A HREF="#S" TITLE="S - declarative sentence">S</A></TD>
-<TD>declarative sentence</TD>
-<TD><I>she lived here</I></TD>
-</TR>
-<TR>
-<TD><A HREF="#SC" TITLE="SC - embedded sentence or question">SC</A></TD>
-<TD>embedded sentence or question</TD>
-<TD><I>that it rains</I></TD>
-</TR>
-<TR>
-<TD><A HREF="#Subj" TITLE="Subj - subjunction">Subj</A></TD>
-<TD>subjunction</TD>
-<TD><I>if</I></TD>
-</TR>
-<TR>
-<TD><A HREF="#Temp" TITLE="Temp - temporal and aspectual features">Temp</A></TD>
-<TD>temporal and aspectual features</TD>
-<TD>past anterior</TD>
-</TR>
-<TR>
-<TD><A HREF="#Tense" TITLE="Tense - tense">Tense</A></TD>
-<TD>tense</TD>
-<TD>present, past, future</TD>
-</TR>
-<TR>
-<TD><A HREF="#Text" TITLE="Text - text consisting of several phrases">Text</A></TD>
-<TD>text consisting of several phrases</TD>
-<TD><I>He is here. Why?</I></TD>
-</TR>
-<TR>
-<TD><A HREF="#Utt" TITLE="Utt - sentence, question, word...">Utt</A></TD>
-<TD>sentence, question, word...</TD>
-<TD><I>be quiet</I></TD>
-</TR>
-<TR>
-<TD><A HREF="#V" TITLE="V - one-place verb">V</A></TD>
-<TD>one-place verb</TD>
-<TD><I>sleep</I></TD>
-</TR>
-<TR>
-<TD><A HREF="#V2" TITLE="V2 - two-place verb">V2</A></TD>
-<TD>two-place verb</TD>
-<TD><I>love</I></TD>
-</TR>
-<TR>
-<TD><A HREF="#V2A" TITLE="V2A - verb with NP and AP complement">V2A</A></TD>
-<TD>verb with NP and AP complement</TD>
-<TD><I>paint</I></TD>
-</TR>
-<TR>
-<TD><A HREF="#V2Q" TITLE="V2Q - verb with NP and Q complement">V2Q</A></TD>
-<TD>verb with NP and Q complement</TD>
-<TD><I>ask</I></TD>
-</TR>
-<TR>
-<TD><A HREF="#V2S" TITLE="V2S - verb with NP and S complement">V2S</A></TD>
-<TD>verb with NP and S complement</TD>
-<TD><I>tell</I></TD>
-</TR>
-<TR>
-<TD><A HREF="#V2V" TITLE="V2V - verb with NP and V complement">V2V</A></TD>
-<TD>verb with NP and V complement</TD>
-<TD><I>cause</I></TD>
-</TR>
-<TR>
-<TD><A HREF="#V3" TITLE="V3 - three-place verb">V3</A></TD>
-<TD>three-place verb</TD>
-<TD><I>show</I></TD>
-</TR>
-<TR>
-<TD><A HREF="#VA" TITLE="VA - adjective-complement verb">VA</A></TD>
-<TD>adjective-complement verb</TD>
-<TD><I>look</I></TD>
-</TR>
-<TR>
-<TD><A HREF="#VP" TITLE="VP - verb phrase">VP</A></TD>
-<TD>verb phrase</TD>
-<TD><I>is very warm</I></TD>
-</TR>
-<TR>
-<TD><A HREF="#VPSlash" TITLE="VPSlash - verb phrase missing complement">VPSlash</A></TD>
-<TD>verb phrase missing complement</TD>
-<TD><I>give to John</I></TD>
-</TR>
-<TR>
-<TD><A HREF="#VQ" TITLE="VQ - question-complement verb">VQ</A></TD>
-<TD>question-complement verb</TD>
-<TD><I>wonder</I></TD>
-</TR>
-<TR>
-<TD><A HREF="#VS" TITLE="VS - sentence-complement verb">VS</A></TD>
-<TD>sentence-complement verb</TD>
-<TD><I>claim</I></TD>
-</TR>
-<TR>
-<TD><A HREF="#VV" TITLE="VV - verb-phrase-complement verb">VV</A></TD>
-<TD>verb-phrase-complement verb</TD>
-<TD><I>want</I></TD>
-</TR>
-<TR>
-<TD><A HREF="#Voc" TITLE="Voc - vocative or "please"">Voc</A></TD>
-<TD>vocative or "please"</TD>
-<TD><I>my darling</I></TD>
-</TR>
-</TABLE>
-
-<A NAME="toc5"></A>
-<H1>Syntax Rules and Structural Words</H1>
-<P>
-Source 1: <A HREF="http://www.grammaticalframework.org/lib/src/api/Constructors.gf"><CODE>../src/api/Constructors.gf</CODE></A>
-</P>
-<P>
-Source 2: <A HREF="http://www.grammaticalframework.org/lib/src/abstract/Structural.gf"><CODE>../src/abstract/Structural.gf</CODE></A>
-</P>
-<A NAME="A"></A>
-<H2>A - one-place adjective</H2>
-<P>
-Lexical category, constructors given in
-<A HREF="#RParadigms">lexical paradigms</A>.
-</P>
-<A NAME="A2"></A>
-<H2>A2 - two-place adjective</H2>
-<P>
-Lexical category, constructors given in
-<A HREF="#RParadigms">lexical paradigms</A>.
-</P>
-<A NAME="AP"></A>
-<H2>AP - adjectival phrase</H2>
-<TABLE BORDER="1" CELLPADDING="4">
-<TR>
-<TH>Function</TH>
-<TH>Type</TH>
-<TH COLSPAN="2">Example</TH>
-</TR>
-<TR>
-<TD><CODE>comparAP</CODE></TD>
-<TD><A HREF="#A" TITLE="A - one-place adjective">A</A> <CODE>-&gt;</CODE> <A HREF="#AP" TITLE="AP - adjectival phrase">AP</A></TD>
-<TD><div class=reveal> <I>warmer</I> <div class=popup> <ul> <li>API: <CODE>mkUtt (comparAP warm_A)</CODE> <li>Bul: <I>по - топъл</I> <li>Cat: <I>més tebi</I> <li>Dan: <I>varmere</I> <li>Dut: <I>warmer</I> <li>Eng: <I>warmer</I> <li>Fin: <I>lämpimämpi</I> <li>Fre: <I>plus chaud</I> <li>Ger: <I>wärmer</I> <li>Ita: <I>più caldo</I> <li>Nor: <I>varmere</I> <li>Pol: <I>cieplejszy</I> <li>Ron: <I>mai călduţ</I> <li>Rus: <I>тёплее</I> <li>Spa: <I>más tibio</I> <li>Swe: <I>varmare</I> <li>Urd: <I>گرم</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>mkAP</CODE></TD>
-<TD><A HREF="#A" TITLE="A - one-place adjective">A</A> <CODE>-&gt;</CODE> <A HREF="#AP" TITLE="AP - adjectival phrase">AP</A></TD>
-<TD><div class=reveal> <I>warm</I> <div class=popup> <ul> <li>API: <CODE>mkAP warm_A</CODE> <li>Bul: <I>топъл</I> <li>Cat: <I>tebi</I> <li>Dan: <I>varm</I> <li>Dut: <I>warm</I> <li>Eng: <I>warm</I> <li>Fin: <I>lämmin</I> <li>Fre: <I>chaud</I> <li>Ger: <I>warm</I> <li>Ita: <I>caldo</I> <li>Nor: <I>varm</I> <li>Pol: <I>ciepły</I> <li>Ron: <I>călduţ</I> <li>Rus: <I>тёплый</I> <li>Spa: <I>tibio</I> <li>Swe: <I>varm</I> <li>Urd: <I>گرم</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>mkAP</CODE></TD>
-<TD><A HREF="#A" TITLE="A - one-place adjective">A</A> <CODE>-&gt;</CODE> <A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A> <CODE>-&gt;</CODE> <A HREF="#AP" TITLE="AP - adjectival phrase">AP</A></TD>
-<TD><div class=reveal> <I>warmer than Paris</I> <div class=popup> <ul> <li>API: <CODE>mkAP warm_A (mkNP paris_PN)</CODE> <li>Bul: <I>по - топъл от Париж</I> <li>Cat: <I>més tebi que Paris</I> <li>Dan: <I>varmere end Paris</I> <li>Dut: <I>warmer dan Parijs</I> <li>Eng: <I>warmer than Paris</I> <li>Fin: <I>Pariisia lämpimämpi</I> <li>Fre: <I>plus chaud que Paris</I> <li>Ger: <I>wärmer als Paris</I> <li>Ita: <I>più caldo di Parigi</I> <li>Nor: <I>varmere enn Paris</I> <li>Pol: <I>cieplejszy niż Paryż</I> <li>Ron: <I>mai călduţ decât Paris</I> <li>Rus: <I>тёплее Парижа</I> <li>Spa: <I>más tibio que Paris</I> <li>Swe: <I>varmare än Paris</I> <li>Urd: <I>پیرس سے گرم</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>mkAP</CODE></TD>
-<TD><A HREF="#A2" TITLE="A2 - two-place adjective">A2</A> <CODE>-&gt;</CODE> <A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A> <CODE>-&gt;</CODE> <A HREF="#AP" TITLE="AP - adjectival phrase">AP</A></TD>
-<TD><div class=reveal> <I>married to her</I> <div class=popup> <ul> <li>API: <CODE>mkAP married_A2 she_NP</CODE> <li>Bul: <I>женен за нея</I> <li>Cat: <I>casat a ella</I> <li>Dan: <I>gift med hende</I> <li>Dut: <I>getrouwd met haar</I> <li>Eng: <I>married to her</I> <li>Fin: <I>hänen kanssa avioitunut</I> <li>Fre: <I>marié à elle</I> <li>Ger: <I>verheiratet mit ihr</I> <li>Ita: <I>sposato con lei</I> <li>Nor: <I>gift med henne</I> <li>Pol: <I>zaślubiony jej</I> <li>Ron: <I>căsătorit cu ea</I> <li>Rus: <I>замужем за ей</I> <li>Spa: <I>casado a ella</I> <li>Swe: <I>gift med henne</I> <li>Urd: <I>اس سے [شادی كرنa]</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>mkAP</CODE></TD>
-<TD><A HREF="#A2" TITLE="A2 - two-place adjective">A2</A> <CODE>-&gt;</CODE> <A HREF="#AP" TITLE="AP - adjectival phrase">AP</A></TD>
-<TD><div class=reveal> <I>married</I> <div class=popup> <ul> <li>API: <CODE>mkAP married_A2</CODE> <li>Bul: <I>женен</I> <li>Cat: <I>casat</I> <li>Dan: <I>gift</I> <li>Dut: <I>getrouwd</I> <li>Eng: <I>married</I> <li>Fin: <I>avioitunut</I> <li>Fre: <I>marié</I> <li>Ger: <I>verheiratet</I> <li>Ita: <I>sposato</I> <li>Nor: <I>gift</I> <li>Pol: <I>zaślubiony</I> <li>Ron: <I>căsătorit</I> <li>Rus: <I>замужем</I> <li>Spa: <I>casado</I> <li>Swe: <I>gift</I> <li>Urd: <I>[شادی كرنa]</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>mkAP</CODE></TD>
-<TD><A HREF="#AP" TITLE="AP - adjectival phrase">AP</A> <CODE>-&gt;</CODE> <A HREF="#S" TITLE="S - declarative sentence">S</A> <CODE>-&gt;</CODE> <A HREF="#AP" TITLE="AP - adjectival phrase">AP</A></TD>
-<TD><div class=reveal> <I>it is good that she sleeps</I> <div class=popup> <ul> <li>API: <CODE>mkCl (mkVP (mkAP (mkAP good_A) (mkS (mkCl she_NP sleep_V))))</CODE> <li>Bul: <I>е добро , че тя спи</I> <li>Cat: <I>és bo que ella dorm</I> <li>Dan: <I>det er godt at hun sover</I> <li>Dut: <I>'t is goed dat ze slaapt</I> <li>Eng: <I>it is good that she sleeps</I> <li>Fin: <I>on hyvä että hän nukkuu</I> <li>Fre: <I>il est bon qu' elle dort</I> <li>Ger: <I>es ist gut daß sie schläft</I> <li>Ita: <I>è buono che lei dorme</I> <li>Nor: <I>det er godt at hun sover</I> <li>Pol: <I>jest dobrze , że ona śpi</I> <li>Ron: <I>este bun cã ea doarme</I> <li>Rus: <I>хорошее , что она спдит</I> <li>Spa: <I>es bueno que ella duerme</I> <li>Swe: <I>det är gott att hon sover</I> <li>Urd: <I>اچھا كہ وہ سوتی ہے ہے</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>mkAP</CODE></TD>
-<TD><A HREF="#AP" TITLE="AP - adjectival phrase">AP</A> <CODE>-&gt;</CODE> <A HREF="#QS" TITLE="QS - question">QS</A> <CODE>-&gt;</CODE> <A HREF="#AP" TITLE="AP - adjectival phrase">AP</A></TD>
-<TD><div class=reveal> <I>it is uncertain who sleeps</I> <div class=popup> <ul> <li>API: <CODE>mkCl (mkVP (mkAP (mkAP uncertain_A) (mkQS (mkQCl who_IP sleep_V))))</CODE> <li>Bul: <I>е неясно който спи</I> <li>Cat: <I>és incert qui dorm</I> <li>Dan: <I>*</I> <li>Dut: <I>'t is onzeker wie slaapt</I> <li>Eng: <I>it is uncertain who sleeps</I> <li>Fin: <I>on epävarma kuka nukkuu</I> <li>Fre: <I>il est incertain qui dort</I> <li>Ger: <I>es ist unsicher wer schläft</I> <li>Ita: <I>è insicuro chi dorme</I> <li>Nor: <I>*</I> <li>Pol: <I>jest niepewnie , kto śpi</I> <li>Ron: <I>este nesigur cine doarme</I> <li>Rus: <I>*</I> <li>Spa: <I>*</I> <li>Swe: <I>det är osäkert vem som sover</I> <li>Urd: <I>غیریقینی كون سوتا ہے ہے</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>mkAP</CODE></TD>
-<TD><A HREF="#AP" TITLE="AP - adjectival phrase">AP</A> <CODE>-&gt;</CODE> <A HREF="#VP" TITLE="VP - verb phrase">VP</A> <CODE>-&gt;</CODE> <A HREF="#AP" TITLE="AP - adjectival phrase">AP</A></TD>
-<TD><div class=reveal> <I>she is ready to sleep</I> <div class=popup> <ul> <li>API: <CODE>mkCl she_NP (mkAP (mkAP ready_A) (mkVP sleep_V))</CODE> <li>Bul: <I>тя е готова да спя</I> <li>Cat: <I>ella és preparata dormir</I> <li>Dan: <I>*</I> <li>Dut: <I>ze is klaar te slapen</I> <li>Eng: <I>she is ready to sleep</I> <li>Fin: <I>hän on valmis nukkua</I> <li>Fre: <I>elle est prête dormir</I> <li>Ger: <I>sie ist fertig zu schlafen</I> <li>Ita: <I>lei è pronta dormire</I> <li>Nor: <I>*</I> <li>Pol: <I>ona jest <A HREF="exist"> gotowy : the adverb positive form does not</A> spać</I> <li>Ron: <I>ea este pregătită sã doarmă</I> <li>Rus: <I>*</I> <li>Spa: <I>*</I> <li>Swe: <I>hon är färdig att sova</I> <li>Urd: <I>*</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>mkAP</CODE></TD>
-<TD><A HREF="#AP" TITLE="AP - adjectival phrase">AP</A> <CODE>-&gt;</CODE> <A HREF="#SC" TITLE="SC - embedded sentence or question">SC</A> <CODE>-&gt;</CODE> <A HREF="#AP" TITLE="AP - adjectival phrase">AP</A></TD>
-<TD><div class=reveal> <I>she is ready to sleep</I> <div class=popup> <ul> <li>API: <CODE>mkCl she_NP (mkAP (mkAP ready_A) (mkSC (mkVP sleep_V)))</CODE> <li>Bul: <I>тя е готова да спя</I> <li>Cat: <I>ella és preparata dormir</I> <li>Dan: <I>*</I> <li>Dut: <I>ze is klaar te slapen</I> <li>Eng: <I>she is ready to sleep</I> <li>Fin: <I>hän on valmis nukkua</I> <li>Fre: <I>elle est prête dormir</I> <li>Ger: <I>sie ist fertig zu schlafen</I> <li>Ita: <I>lei è pronta dormire</I> <li>Nor: <I>*</I> <li>Pol: <I>ona jest <A HREF="exist"> gotowy : the adverb positive form does not</A> spać</I> <li>Ron: <I>ea este pregătită sã doarmă</I> <li>Rus: <I>*</I> <li>Spa: <I>*</I> <li>Swe: <I>hon är färdig att sova</I> <li>Urd: <I>*</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>mkAP</CODE></TD>
-<TD><A HREF="#AdA" TITLE="AdA - adjective-modifying adverb">AdA</A> <CODE>-&gt;</CODE> <A HREF="#A" TITLE="A - one-place adjective">A</A> <CODE>-&gt;</CODE> <A HREF="#AP" TITLE="AP - adjectival phrase">AP</A></TD>
-<TD><div class=reveal> <I>very old</I> <div class=popup> <ul> <li>API: <CODE>mkAP very_AdA old_A</CODE> <li>Bul: <I>много стар</I> <li>Cat: <I>molt vell</I> <li>Dan: <I>meget gammel</I> <li>Dut: <I>erg oud</I> <li>Eng: <I>very old</I> <li>Fin: <I>erittäin vanha</I> <li>Fre: <I>très vieux</I> <li>Ger: <I>sehr alt</I> <li>Ita: <I>molto vecchio</I> <li>Nor: <I>mye gammel</I> <li>Pol: <I>bardzo stary</I> <li>Ron: <I>foarte vechi</I> <li>Rus: <I>очень старый</I> <li>Spa: <I>muy viejo</I> <li>Swe: <I>mycket gammal</I> <li>Urd: <I>بہت بوڑھا</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>mkAP</CODE></TD>
-<TD><A HREF="#AdA" TITLE="AdA - adjective-modifying adverb">AdA</A> <CODE>-&gt;</CODE> <A HREF="#AP" TITLE="AP - adjectival phrase">AP</A> <CODE>-&gt;</CODE> <A HREF="#AP" TITLE="AP - adjectival phrase">AP</A></TD>
-<TD><div class=reveal> <I>very very old</I> <div class=popup> <ul> <li>API: <CODE>mkAP very_AdA (mkAP very_AdA old_A)</CODE> <li>Bul: <I>много много стар</I> <li>Cat: <I>molt molt vell</I> <li>Dan: <I>meget meget gammel</I> <li>Dut: <I>erg erg oud</I> <li>Eng: <I>very very old</I> <li>Fin: <I>erittäin erittäin vanha</I> <li>Fre: <I>très très vieux</I> <li>Ger: <I>sehr sehr alt</I> <li>Ita: <I>molto molto vecchio</I> <li>Nor: <I>mye mye gammel</I> <li>Pol: <I>bardzo bardzo stary</I> <li>Ron: <I>foarte foarte vechi</I> <li>Rus: <I>очень очень старый</I> <li>Spa: <I>muy muy viejo</I> <li>Swe: <I>mycket mycket gammal</I> <li>Urd: <I>بہت بہت بوڑھا</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>mkAP</CODE></TD>
-<TD><A HREF="#Conj" TITLE="Conj - conjunction">Conj</A> <CODE>-&gt;</CODE> <A HREF="#AP" TITLE="AP - adjectival phrase">AP</A> <CODE>-&gt;</CODE> <A HREF="#AP" TITLE="AP - adjectival phrase">AP</A> <CODE>-&gt;</CODE> <A HREF="#AP" TITLE="AP - adjectival phrase">AP</A></TD>
-<TD><div class=reveal> <I>old or young</I> <div class=popup> <ul> <li>API: <CODE>mkAP or_Conj (mkAP old_A) (mkAP young_A)</CODE> <li>Bul: <I>стар или млад</I> <li>Cat: <I>vell o jove</I> <li>Dan: <I>gammel eller ung</I> <li>Dut: <I>oud of jong</I> <li>Eng: <I>old or young</I> <li>Fin: <I>vanha tai nuori</I> <li>Fre: <I>vieux ou jeune</I> <li>Ger: <I>alt oder jung</I> <li>Ita: <I>vecchio o giovane</I> <li>Nor: <I>gammel eller ung</I> <li>Pol: <I>stary lub młody</I> <li>Ron: <I>vechi sau tânăr</I> <li>Rus: <I>старый или молодой</I> <li>Spa: <I>viejo o joven</I> <li>Swe: <I>gammal eller ung</I> <li>Urd: <I>بوڑھا یا جوان</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>mkAP</CODE></TD>
-<TD><A HREF="#Conj" TITLE="Conj - conjunction">Conj</A> <CODE>-&gt;</CODE> <A HREF="#ListAP">ListAP</A> <CODE>-&gt;</CODE> <A HREF="#AP" TITLE="AP - adjectival phrase">AP</A></TD>
-<TD><div class=reveal> <I>old , big and warm</I> <div class=popup> <ul> <li>API: <CODE>mkAP and_Conj (mkListAP (mkAP old_A) (mkListAP (mkAP big_A) (mkAP warm_A)))</CODE> <li>Bul: <I>стар , голям и топъл</I> <li>Cat: <I>vell , gros i tebi</I> <li>Dan: <I>gammel , stor og varm</I> <li>Dut: <I>oud , groot en warm</I> <li>Eng: <I>old , big and warm</I> <li>Fin: <I>vanha , suuri ja lämmin</I> <li>Fre: <I>vieux , grand et chaud</I> <li>Ger: <I>alt , groß und warm</I> <li>Ita: <I>vecchio , grande e caldo</I> <li>Nor: <I>gammel , stor og varm</I> <li>Pol: <I>stary , duży i ciepły</I> <li>Ron: <I>vechi , mare şi călduţ</I> <li>Rus: <I>большой , тёплый и старый</I> <li>Spa: <I>viejo , grande y tibio</I> <li>Swe: <I>gammal , stor och varm</I> <li>Urd: <I>بوڑھا , بڑا اور گرم</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>mkAP</CODE></TD>
-<TD><A HREF="#Ord" TITLE="Ord - ordinal number (used in Det)">Ord</A> <CODE>-&gt;</CODE> <A HREF="#AP" TITLE="AP - adjectival phrase">AP</A></TD>
-<TD><div class=reveal> <I>oldest</I> <div class=popup> <ul> <li>API: <CODE>mkAP (mkOrd old_A)</CODE> <li>Bul: <I>най - стар</I> <li>Cat: <I>més vell</I> <li>Dan: <I>ældste</I> <li>Dut: <I>oudst</I> <li>Eng: <I>oldest</I> <li>Fin: <I>vanhin</I> <li>Fre: <I>plus vieux</I> <li>Ger: <I>ältest</I> <li>Ita: <I>più vecchio</I> <li>Nor: <I>eldste</I> <li>Pol: <I>najstarszy</I> <li>Ron: <I>cel mai vechi</I> <li>Rus: <I>старый</I> <li>Spa: <I>más viejo</I> <li>Swe: <I>äldsta</I> <li>Urd: <I>سب سے بوڑھا</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>mkAP</CODE></TD>
-<TD><A HREF="#CAdv" TITLE="CAdv - comparative adverb">CAdv</A> <CODE>-&gt;</CODE> <A HREF="#AP" TITLE="AP - adjectival phrase">AP</A> <CODE>-&gt;</CODE> <A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A> <CODE>-&gt;</CODE> <A HREF="#AP" TITLE="AP - adjectival phrase">AP</A></TD>
-<TD><div class=reveal> <I>as old as she</I> <div class=popup> <ul> <li>API: <CODE>mkAP as_CAdv (mkAP old_A) she_NP</CODE> <li>Bul: <I>*</I> <li>Cat: <I>tan vell com ella</I> <li>Dan: <I>*</I> <li>Dut: <I>zo oud als ze</I> <li>Eng: <I>as old as she</I> <li>Fin: <I>yhtä vanha kuin hän</I> <li>Fre: <I>aussi vieux qu' elle</I> <li>Ger: <I>ebenso alt wie sie</I> <li>Ita: <I>così vecchio di lei</I> <li>Nor: <I>*</I> <li>Pol: <I>tak stary jak ona</I> <li>Ron: <I>cel la fel de vechi ca ea</I> <li>Rus: <I>*</I> <li>Spa: <I>si viejo que ella</I> <li>Swe: <I>lika gammal som hon</I> <li>Urd: <I>اتنا بوڑھا جتنا وہ</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>reflAP</CODE></TD>
-<TD><A HREF="#A2" TITLE="A2 - two-place adjective">A2</A> <CODE>-&gt;</CODE> <A HREF="#AP" TITLE="AP - adjectival phrase">AP</A></TD>
-<TD><div class=reveal> <I>married to itself</I> <div class=popup> <ul> <li>API: <CODE>mkUtt (reflAP married_A2)</CODE> <li>Bul: <I>женен за себе си</I> <li>Cat: <I>casat a sÌ</I> <li>Dan: <I>gift med sig</I> <li>Dut: <I>getrouwd met zich</I> <li>Eng: <I>married to itself</I> <li>Fin: <I>avioitunut itsensä kanssa</I> <li>Fre: <I>marié à soi</I> <li>Ger: <I>verheiratet mit sich</I> <li>Ita: <I>sposato con se</I> <li>Nor: <I>gift med seg</I> <li>Pol: <I>zaślubiony sobie</I> <li>Ron: <I>căsătorit cu sine însuşi</I> <li>Rus: <I>замужем за собой</I> <li>Spa: <I>casado a sí</I> <li>Swe: <I>gift med sig</I> <li>Urd: <I>[شادی كرنa] خود سے</I> </ul> </div> </div></TD>
-</TR>
-</TABLE>
-
-<A NAME="AdA"></A>
-<H2>AdA - adjective-modifying adverb</H2>
-<TABLE BORDER="1" CELLPADDING="4">
-<TR>
-<TH>Function</TH>
-<TH>Type</TH>
-<TH COLSPAN="2">Example</TH>
-</TR>
-<TR>
-<TD><CODE>almost_AdA</CODE></TD>
-<TD><A HREF="#AdA" TITLE="AdA - adjective-modifying adverb">AdA</A></TD>
-<TD><div class=reveal> <I>almost red</I> <div class=popup> <ul> <li>API: <CODE>mkAP almost_AdA red_A</CODE> <li>Bul: <I>почти червен</I> <li>Cat: <I>{s : CommonRomance.AForm =&gt; Str</I> <li>Dan: <I>næsten rød</I> <li>Dut: <I>bijna rood</I> <li>Eng: <I>almost red</I> <li>Fin: <I>melkein punainen</I> <li>Fre: <I>presque rouge</I> <li>Ger: <I>fast rot</I> <li>Ita: <I>quasi rosso</I> <li>Nor: <I>nesten rød</I> <li>Pol: <I>prawie czerwony</I> <li>Ron: <I>aproape roşu</I> <li>Rus: <I>почти красный</I> <li>Spa: <I>casi rojo</I> <li>Swe: <I>nästan röd</I> <li>Urd: <I>تقریبا لال</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>quite_Adv</CODE></TD>
-<TD><A HREF="#AdA" TITLE="AdA - adjective-modifying adverb">AdA</A></TD>
-<TD><div class=reveal> <I>quite</I> <div class=popup> <ul> <li>API: <CODE>quite_Adv</CODE> <li>Bul: <I>доста</I> <li>Cat: <I>bastant</I> <li>Dan: <I>temmelig</I> <li>Dut: <I>heel</I> <li>Eng: <I>quite</I> <li>Fin: <I>melko</I> <li>Fre: <I>assez</I> <li>Ger: <I>ziemlich</I> <li>Ita: <I>assai</I> <li>Nor: <I>temmelig</I> <li>Pol: <I>całkiem</I> <li>Ron: <I>chiar</I> <li>Rus: <I>довольно</I> <li>Spa: <I>bastante</I> <li>Swe: <I>ganska</I> <li>Urd: <I>خاموش</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>so_AdA</CODE></TD>
-<TD><A HREF="#AdA" TITLE="AdA - adjective-modifying adverb">AdA</A></TD>
-<TD><div class=reveal> <I>so</I> <div class=popup> <ul> <li>API: <CODE>so_AdA</CODE> <li>Bul: <I>толкова</I> <li>Cat: <I>tan</I> <li>Dan: <I>så</I> <li>Dut: <I>zo</I> <li>Eng: <I>so</I> <li>Fin: <I>niin</I> <li>Fre: <I>si</I> <li>Ger: <I>so</I> <li>Ita: <I>cosÃ¬</I> <li>Nor: <I>så</I> <li>Pol: <I>tak</I> <li>Ron: <I>aşa</I> <li>Rus: <I>так</I> <li>Spa: <I>tanto</I> <li>Swe: <I>så</I> <li>Urd: <I>[اس لیE]</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>too_AdA</CODE></TD>
-<TD><A HREF="#AdA" TITLE="AdA - adjective-modifying adverb">AdA</A></TD>
-<TD><div class=reveal> <I>too</I> <div class=popup> <ul> <li>API: <CODE>too_AdA</CODE> <li>Bul: <I>прекалено</I> <li>Cat: <I>massa</I> <li>Dan: <I>for</I> <li>Dut: <I>te</I> <li>Eng: <I>too</I> <li>Fin: <I>liian</I> <li>Fre: <I>trop</I> <li>Ger: <I>zu</I> <li>Ita: <I>troppo</I> <li>Nor: <I>for</I> <li>Pol: <I>za</I> <li>Ron: <I>prea</I> <li>Rus: <I>слишком</I> <li>Spa: <I>demasiado</I> <li>Swe: <I>för</I> <li>Urd: <I>بہت</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>very_AdA</CODE></TD>
-<TD><A HREF="#AdA" TITLE="AdA - adjective-modifying adverb">AdA</A></TD>
-<TD><div class=reveal> <I>very</I> <div class=popup> <ul> <li>API: <CODE>very_AdA</CODE> <li>Bul: <I>много</I> <li>Cat: <I>molt</I> <li>Dan: <I>meget</I> <li>Dut: <I>erg</I> <li>Eng: <I>very</I> <li>Fin: <I>erittäin</I> <li>Fre: <I>très</I> <li>Ger: <I>sehr</I> <li>Ita: <I>molto</I> <li>Nor: <I>mye</I> <li>Pol: <I>bardzo</I> <li>Ron: <I>foarte</I> <li>Rus: <I>очень</I> <li>Spa: <I>muy</I> <li>Swe: <I>mycket</I> <li>Urd: <I>بہت</I> </ul> </div> </div></TD>
-</TR>
-</TABLE>
-
-<A NAME="AdN"></A>
-<H2>AdN - numeral-modifying adverb</H2>
-<TABLE BORDER="1" CELLPADDING="4">
-<TR>
-<TH>Function</TH>
-<TH>Type</TH>
-<TH COLSPAN="2">Example</TH>
-</TR>
-<TR>
-<TD><CODE>almost_AdN</CODE></TD>
-<TD><A HREF="#AdN" TITLE="AdN - numeral-modifying adverb">AdN</A></TD>
-<TD><div class=reveal> <I>atomic term almostAdN</I> <div class=popup> <ul> <li>API: <CODE>mkCard almostAdN (mkCard (mkNumeral n8_Unit))</CODE> <li>Bul: <I>*</I> <li>Cat: <I>*</I> <li>Dan: <I>*</I> <li>Dut: <I>*</I> <li>Eng: <I>*</I> <li>Fin: <I>*</I> <li>Fre: <I>*</I> <li>Ger: <I>*</I> <li>Ita: <I>*</I> <li>Nor: <I>*</I> <li>Pol: <I>*</I> <li>Ron: <I>*</I> <li>Rus: <I>*</I> <li>Spa: <I>*</I> <li>Swe: <I>*</I> <li>Urd: <I>*</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>at_least_AdN</CODE></TD>
-<TD><A HREF="#AdN" TITLE="AdN - numeral-modifying adverb">AdN</A></TD>
-<TD><div class=reveal> <I>at least eight</I> <div class=popup> <ul> <li>API: <CODE>mkCard at_least_AdN (mkCard (mkNumeral n8_Unit))</CODE> <li>Bul: <I>*</I> <li>Cat: <I>almenys vuit</I> <li>Dan: <I>*</I> <li>Dut: <I>ten minste acht</I> <li>Eng: <I>at least eight</I> <li>Fin: <I>vähintään kahdeksan</I> <li>Fre: <I>au moins huit</I> <li>Ger: <I>wenigstens acht</I> <li>Ita: <I>almeno otto</I> <li>Nor: <I>*</I> <li>Pol: <I>co najmniej osiemm</I> <li>Ron: <I>cel puţin opt</I> <li>Rus: <I>*</I> <li>Spa: <I>*</I> <li>Swe: <I>minst åtta</I> <li>Urd: <I>كم از كم آتھ</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>at_most_AdN</CODE></TD>
-<TD><A HREF="#AdN" TITLE="AdN - numeral-modifying adverb">AdN</A></TD>
-<TD><div class=reveal> <I>at most eight</I> <div class=popup> <ul> <li>API: <CODE>mkCard at_most_AdN (mkCard (mkNumeral n8_Unit))</CODE> <li>Bul: <I>*</I> <li>Cat: <I>com a màxim vuit</I> <li>Dan: <I>*</I> <li>Dut: <I>hooguit acht</I> <li>Eng: <I>at most eight</I> <li>Fin: <I>enintään kahdeksan</I> <li>Fre: <I>au plus huit</I> <li>Ger: <I>höchstens acht</I> <li>Ita: <I>al massimo otto</I> <li>Nor: <I>*</I> <li>Pol: <I>co najwyżej osiemm</I> <li>Ron: <I>cel mult opt</I> <li>Rus: <I>*</I> <li>Spa: <I>*</I> <li>Swe: <I>högst åtta</I> <li>Urd: <I>زیادہ سے زیادہ آتھ</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>mkAdN</CODE></TD>
-<TD><A HREF="#CAdv" TITLE="CAdv - comparative adverb">CAdv</A> <CODE>-&gt;</CODE> <A HREF="#AdN" TITLE="AdN - numeral-modifying adverb">AdN</A></TD>
-<TD><div class=reveal> <I>more than eight</I> <div class=popup> <ul> <li>API: <CODE>mkCard (mkAdN more_CAdv) (mkCard (mkNumeral n8_Unit))</CODE> <li>Bul: <I>повече от осмина</I> <li>Cat: <I>més que vuit</I> <li>Dan: <I>mer end otte</I> <li>Dut: <I>meer dan acht</I> <li>Eng: <I>more than eight</I> <li>Fin: <I>enemmän kuin kahdeksan</I> <li>Fre: <I>plus pre {"que"; "qu'" / strs {"a"; "à"; "â"; "e"; "é"; "è"; "ê¨";</I> <li>Ger: <I>mehr als acht</I> <li>Ita: <I>più di otto</I> <li>Nor: <I>mer enn åtte</I> <li>Pol: <I>więcej niż osiemm</I> <li>Ron: <I>mai mult decât opt</I> <li>Rus: <I>более чем восемь</I> <li>Spa: <I>más que ocho</I> <li>Swe: <I>mer än åtta</I> <li>Urd: <I>آتھ سے زیادہ</I> </ul> </div> </div></TD>
-</TR>
-</TABLE>
-
-<A NAME="AdV"></A>
-<H2>AdV - adverb directly attached to verb</H2>
-<TABLE BORDER="1" CELLPADDING="4">
-<TR>
-<TH>Function</TH>
-<TH>Type</TH>
-<TH COLSPAN="2">Example</TH>
-</TR>
-<TR>
-<TD><CODE>always_AdV</CODE></TD>
-<TD><A HREF="#AdV" TITLE="Adv - verb-phrase-modifying adverb">AdV</A></TD>
-<TD><div class=reveal> <I>always</I> <div class=popup> <ul> <li>API: <CODE>always_AdV</CODE> <li>Bul: <I>винаги</I> <li>Cat: <I>sempre</I> <li>Dan: <I>altid</I> <li>Dut: <I>altijd</I> <li>Eng: <I>always</I> <li>Fin: <I>aina</I> <li>Fre: <I>toujours</I> <li>Ger: <I>immer</I> <li>Ita: <I>sempre</I> <li>Nor: <I>altid</I> <li>Pol: <I>zawsze</I> <li>Ron: <I>mereu</I> <li>Rus: <I>всегда</I> <li>Spa: <I>siempre</I> <li>Swe: <I>alltid</I> <li>Urd: <I>ہمیشہ</I> </ul> </div> </div></TD>
-</TR>
-</TABLE>
-
-<A NAME="Adv"></A>
-<H2>Adv - verb-phrase-modifying adverb</H2>
-<TABLE BORDER="1" CELLPADDING="4">
-<TR>
-<TH>Function</TH>
-<TH>Type</TH>
-<TH COLSPAN="2">Example</TH>
-</TR>
-<TR>
-<TD><CODE>everywhere_Adv</CODE></TD>
-<TD><A HREF="#Adv" TITLE="Adv - verb-phrase-modifying adverb">Adv</A></TD>
-<TD><div class=reveal> <I>everywhere</I> <div class=popup> <ul> <li>API: <CODE>everywhere_Adv</CODE> <li>Bul: <I>навсякъде</I> <li>Cat: <I>a tot arreu</I> <li>Dan: <I>overalt</I> <li>Dut: <I>overal</I> <li>Eng: <I>everywhere</I> <li>Fin: <I>kaikkialla</I> <li>Fre: <I>partout</I> <li>Ger: <I>überall</I> <li>Ita: <I>dappertutto</I> <li>Nor: <I>overalt</I> <li>Pol: <I>wszędzie</I> <li>Ron: <I>pretutindeni</I> <li>Rus: <I>везде</I> <li>Spa: <I>en todas partes</I> <li>Swe: <I>överallt</I> <li>Urd: <I>ہر جگہ</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>here7from_Adv</CODE></TD>
-<TD><A HREF="#Adv" TITLE="Adv - verb-phrase-modifying adverb">Adv</A></TD>
-<TD><div class=reveal> <I>from here</I> <div class=popup> <ul> <li>API: <CODE>here7from_Adv</CODE> <li>Bul: <I>от тук</I> <li>Cat: <I>d'aquí</I> <li>Dan: <I>herfra</I> <li>Dut: <I>van hier</I> <li>Eng: <I>from here</I> <li>Fin: <I>täältä</I> <li>Fre: <I>d'ici</I> <li>Ger: <I>hieraus</I> <li>Ita: <I>da quà</I> <li>Nor: <I>herfra</I> <li>Pol: <I>stąd</I> <li>Ron: <I>de aici</I> <li>Rus: <I>отсюда</I> <li>Spa: <I>de acá</I> <li>Swe: <I>härifrån</I> <li>Urd: <I>یہاں سے</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>here7to_Adv</CODE></TD>
-<TD><A HREF="#Adv" TITLE="Adv - verb-phrase-modifying adverb">Adv</A></TD>
-<TD><div class=reveal> <I>to here</I> <div class=popup> <ul> <li>API: <CODE>here7to_Adv</CODE> <li>Bul: <I>до тук</I> <li>Cat: <I>cap aquí</I> <li>Dan: <I>hit</I> <li>Dut: <I>hier</I> <li>Eng: <I>to here</I> <li>Fin: <I>tänne</I> <li>Fre: <I>ici</I> <li>Ger: <I>hierher</I> <li>Ita: <I>quà</I> <li>Nor: <I>hit</I> <li>Pol: <I>tutaj</I> <li>Ron: <I>până aici</I> <li>Rus: <I>сюда</I> <li>Spa: <I>para acá</I> <li>Swe: <I>hit</I> <li>Urd: <I>یہاں پر</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>here_Adv</CODE></TD>
-<TD><A HREF="#Adv" TITLE="Adv - verb-phrase-modifying adverb">Adv</A></TD>
-<TD><div class=reveal> <I>here</I> <div class=popup> <ul> <li>API: <CODE>here_Adv</CODE> <li>Bul: <I>тук</I> <li>Cat: <I>aquí</I> <li>Dan: <I>her</I> <li>Dut: <I>hier</I> <li>Eng: <I>here</I> <li>Fin: <I>täällä</I> <li>Fre: <I>ici</I> <li>Ger: <I>hier</I> <li>Ita: <I>quà</I> <li>Nor: <I>her</I> <li>Pol: <I>tutaj</I> <li>Ron: <I>aici</I> <li>Rus: <I>здесь</I> <li>Spa: <I>aquí</I> <li>Swe: <I>här</I> <li>Urd: <I>یہاں</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>mkAdv</CODE></TD>
-<TD><A HREF="#A" TITLE="A - one-place adjective">A</A> <CODE>-&gt;</CODE> <A HREF="#Adv" TITLE="Adv - verb-phrase-modifying adverb">Adv</A></TD>
-<TD><div class=reveal> <I>warmly</I> <div class=popup> <ul> <li>API: <CODE>mkAdv warm_A</CODE> <li>Bul: <I>топло</I> <li>Cat: <I>tebiament</I> <li>Dan: <I>varmt</I> <li>Dut: <I>warm</I> <li>Eng: <I>warmly</I> <li>Fin: <I>lämpimästi</I> <li>Fre: <I>chaudement</I> <li>Ger: <I>warm</I> <li>Ita: <I>caldamente</I> <li>Nor: <I>varmt</I> <li>Pol: <I>ciepło</I> <li>Ron: <I>călduros</I> <li>Rus: <I>тёпло</I> <li>Spa: <I>tibiamente</I> <li>Swe: <I>varmt</I> <li>Urd: <I>گرم</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>mkAdv</CODE></TD>
-<TD><A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A> <CODE>-&gt;</CODE> <A HREF="#Adv" TITLE="Adv - verb-phrase-modifying adverb">Adv</A></TD>
-<TD><div class=reveal> <I>in the house</I> <div class=popup> <ul> <li>API: <CODE>mkAdv in_Prep (mkNP the_Det house_N)</CODE> <li>Bul: <I>в къщата</I> <li>Cat: <I>en la casa</I> <li>Dan: <I>i huset</I> <li>Dut: <I>in het huis</I> <li>Eng: <I>in the house</I> <li>Fin: <I>talossa</I> <li>Fre: <I>dans la maison</I> <li>Ger: <I>im Haus / Hause</I> <li>Ita: <I>nella casa</I> <li>Nor: <I>i huset</I> <li>Pol: <I>w domu</I> <li>Ron: <I>în casă</I> <li>Rus: <I>в доме</I> <li>Spa: <I>en la casa</I> <li>Swe: <I>i huset</I> <li>Urd: <I>گھر میں</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>mkAdv</CODE></TD>
-<TD><A HREF="#Subj" TITLE="Subj - subjunction">Subj</A> <CODE>-&gt;</CODE> <A HREF="#S" TITLE="S - declarative sentence">S</A> <CODE>-&gt;</CODE> <A HREF="#Adv" TITLE="Adv - verb-phrase-modifying adverb">Adv</A></TD>
-<TD><div class=reveal> <I>when she sleeps</I> <div class=popup> <ul> <li>API: <CODE>mkAdv when_Subj (mkS (mkCl she_NP sleep_V))</CODE> <li>Bul: <I>когато тя спи</I> <li>Cat: <I>quan ella dorm</I> <li>Dan: <I>når hun sover</I> <li>Dut: <I>als ze slaapt</I> <li>Eng: <I>when she sleeps</I> <li>Fin: <I>kun hän nukkuu</I> <li>Fre: <I>quand elle dort</I> <li>Ger: <I>wenn sie schläft</I> <li>Ita: <I>quando lei dorme</I> <li>Nor: <I>når hun sover</I> <li>Pol: <I>jeśli ona śpi</I> <li>Ron: <I>când ea doarme</I> <li>Rus: <I>когда она спдит</I> <li>Spa: <I>cuando ella duerme</I> <li>Swe: <I>när hon sover</I> <li>Urd: <I>جب وہ سوتی ہے</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>mkAdv</CODE></TD>
-<TD><A HREF="#CAdv" TITLE="CAdv - comparative adverb">CAdv</A> <CODE>-&gt;</CODE> <A HREF="#A" TITLE="A - one-place adjective">A</A> <CODE>-&gt;</CODE> <A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A> <CODE>-&gt;</CODE> <A HREF="#Adv" TITLE="Adv - verb-phrase-modifying adverb">Adv</A></TD>
-<TD><div class=reveal> <I>more warmly than he</I> <div class=popup> <ul> <li>API: <CODE>mkAdv more_CAdv warm_A he_NP</CODE> <li>Bul: <I>по - топло от него</I> <li>Cat: <I>més tebiament que ell</I> <li>Dan: <I>mer varmt end han</I> <li>Dut: <I>meer warm dan hij</I> <li>Eng: <I>more warmly than he</I> <li>Fin: <I>enemmän lämpimästi kuin hän</I> <li>Fre: <I>plus chaudement que lui</I> <li>Ger: <I>mehr warm als er</I> <li>Ita: <I>più caldamente di lui</I> <li>Nor: <I>mer varmt enn han</I> <li>Pol: <I>bardziej ciepło niż on</I> <li>Ron: <I>mai călduros decât el</I> <li>Rus: <I>более тёпло чем он</I> <li>Spa: <I>más tibiamente que él</I> <li>Swe: <I>mer varmt än han</I> <li>Urd: <I>اس سے زیادہ گرم</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>mkAdv</CODE></TD>
-<TD><A HREF="#CAdv" TITLE="CAdv - comparative adverb">CAdv</A> <CODE>-&gt;</CODE> <A HREF="#A" TITLE="A - one-place adjective">A</A> <CODE>-&gt;</CODE> <A HREF="#S" TITLE="S - declarative sentence">S</A> <CODE>-&gt;</CODE> <A HREF="#Adv" TITLE="Adv - verb-phrase-modifying adverb">Adv</A></TD>
-<TD><div class=reveal> <I>more warmly than he runs</I> <div class=popup> <ul> <li>API: <CODE>mkAdv more_CAdv warm_A (mkS (mkCl he_NP run_V))</CODE> <li>Bul: <I>по - топло от колкото той бяга</I> <li>Cat: <I>més tebiament que ell corri</I> <li>Dan: <I>mer varmt end han løber</I> <li>Dut: <I>meer warm dan hij rent</I> <li>Eng: <I>more warmly than he runs</I> <li>Fin: <I>enemmän lämpimästi kuin hän juoksee</I> <li>Fre: <I>plus chaudement qu' il coure</I> <li>Ger: <I>mehr warm als er läuft</I> <li>Ita: <I>più caldamente di lui corra</I> <li>Nor: <I>mer varmt enn han springer</I> <li>Pol: <I>bardziej ciepło niż on biegnie</I> <li>Ron: <I>mai călduros decât el fuge</I> <li>Rus: <I>более тёпло чем он бегает</I> <li>Spa: <I>más tibiamente que el corra</I> <li>Swe: <I>mer varmt än han springer</I> <li>Urd: <I>سے زیادہ گرم وہ دوڑتا ہے</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>mkAdv</CODE></TD>
-<TD><A HREF="#AdA" TITLE="AdA - adjective-modifying adverb">AdA</A> <CODE>-&gt;</CODE> <A HREF="#Adv" TITLE="Adv - verb-phrase-modifying adverb">Adv</A> <CODE>-&gt;</CODE> <A HREF="#Adv" TITLE="Adv - verb-phrase-modifying adverb">Adv</A></TD>
-<TD><div class=reveal> <I>very warmly</I> <div class=popup> <ul> <li>API: <CODE>mkAdv very_AdA (mkAdv warm_A)</CODE> <li>Bul: <I>много топло</I> <li>Cat: <I>molt tebiament</I> <li>Dan: <I>meget varmt</I> <li>Dut: <I>erg warm</I> <li>Eng: <I>very warmly</I> <li>Fin: <I>erittäin lämpimästi</I> <li>Fre: <I>très chaudement</I> <li>Ger: <I>sehr warm</I> <li>Ita: <I>molto caldamente</I> <li>Nor: <I>mye varmt</I> <li>Pol: <I>bardzo ciepło</I> <li>Ron: <I>foarte călduros</I> <li>Rus: <I>очень тёпло</I> <li>Spa: <I>muy tibiamente</I> <li>Swe: <I>mycket varmt</I> <li>Urd: <I>بہت گرم</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>mkAdv</CODE></TD>
-<TD><A HREF="#Conj" TITLE="Conj - conjunction">Conj</A> <CODE>-&gt;</CODE> <A HREF="#Adv" TITLE="Adv - verb-phrase-modifying adverb">Adv</A> <CODE>-&gt;</CODE> <A HREF="#Adv" TITLE="Adv - verb-phrase-modifying adverb">Adv</A> <CODE>-&gt;</CODE> <A HREF="#Adv" TITLE="Adv - verb-phrase-modifying adverb">Adv</A></TD>
-<TD><div class=reveal> <I>here and now</I> <div class=popup> <ul> <li>API: <CODE>mkAdv and_Conj here_Adv now_Adv</CODE> <li>Bul: <I>тук и сега</I> <li>Cat: <I>aquí i ara</I> <li>Dan: <I>her og nu</I> <li>Dut: <I>hier en nu</I> <li>Eng: <I>here and now</I> <li>Fin: <I>täällä ja nyt</I> <li>Fre: <I>ici et maintenant</I> <li>Ger: <I>hier und jetzt</I> <li>Ita: <I>quà e adesso</I> <li>Nor: <I>her og nå</I> <li>Pol: <I>tutaj i teraz</I> <li>Ron: <I>aici şi acum</I> <li>Rus: <I>здесь и сейчас</I> <li>Spa: <I>aquí y ahora</I> <li>Swe: <I>här och nu</I> <li>Urd: <I>یہاں اور اب</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>mkAdv</CODE></TD>
-<TD><A HREF="#Conj" TITLE="Conj - conjunction">Conj</A> <CODE>-&gt;</CODE> <A HREF="#ListAdv">ListAdv</A> <CODE>-&gt;</CODE> <A HREF="#Adv" TITLE="Adv - verb-phrase-modifying adverb">Adv</A></TD>
-<TD><div class=reveal> <I>with her , here and now</I> <div class=popup> <ul> <li>API: <CODE>mkAdv and_Conj (mkListAdv (mkAdv with_Prep she_NP) (mkListAdv here_Adv now_Adv))</CODE> <li>Bul: <I>с нея , тук и сега</I> <li>Cat: <I>amb ella , aquí i ara</I> <li>Dan: <I>med hende , her og nu</I> <li>Dut: <I>met haar , hier en nu</I> <li>Eng: <I>with her , here and now</I> <li>Fin: <I>hänen kanssa , täällä ja nyt</I> <li>Fre: <I>avec elle , ici et maintenant</I> <li>Ger: <I>mit ihr , hier und jetzt</I> <li>Ita: <I>con lei , quà e adesso</I> <li>Nor: <I>med henne , her og nå</I> <li>Pol: <I>z nią , tutaj i teraz</I> <li>Ron: <I>cu ea , aici şi acum</I> <li>Rus: <I>с ней , здесь и сейчас</I> <li>Spa: <I>con ella , aquí y ahora</I> <li>Swe: <I>med henne , här och nu</I> <li>Urd: <I>اس كے ساتھ , یہاں اور اب</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>somewhere_Adv</CODE></TD>
-<TD><A HREF="#Adv" TITLE="Adv - verb-phrase-modifying adverb">Adv</A></TD>
-<TD><div class=reveal> <I>somewhere</I> <div class=popup> <ul> <li>API: <CODE>somewhere_Adv</CODE> <li>Bul: <I>някъде</I> <li>Cat: <I>a algun lloc</I> <li>Dan: <I>et eller annet sted</I> <li>Dut: <I>ergens</I> <li>Eng: <I>somewhere</I> <li>Fin: <I>jossain</I> <li>Fre: <I>quelque part</I> <li>Ger: <I>irgendwo</I> <li>Ita: <I>qualche parte</I> <li>Nor: <I>et eller annet sted</I> <li>Pol: <I>gdzieś</I> <li>Ron: <I>undeva</I> <li>Rus: <I>где-нибудь</I> <li>Spa: <I>en ninguna parte</I> <li>Swe: <I>någonstans</I> <li>Urd: <I>كہیں پر</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>there7from_Adv</CODE></TD>
-<TD><A HREF="#Adv" TITLE="Adv - verb-phrase-modifying adverb">Adv</A></TD>
-<TD><div class=reveal> <I>from there</I> <div class=popup> <ul> <li>API: <CODE>there7from_Adv</CODE> <li>Bul: <I>от там</I> <li>Cat: <I>d'allà</I> <li>Dan: <I>derfra</I> <li>Dut: <I>van daar</I> <li>Eng: <I>from there</I> <li>Fin: <I>sieltä</I> <li>Fre: <I>de là</I> <li>Ger: <I>daher</I> <li>Ita: <I>di là</I> <li>Nor: <I>derfra</I> <li>Pol: <I>stamtąd</I> <li>Ron: <I>de acolo</I> <li>Rus: <I>оттуда</I> <li>Spa: <I>de allá</I> <li>Swe: <I>därifrån</I> <li>Urd: <I>وہاں سے</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>there7to_Adv</CODE></TD>
-<TD><A HREF="#Adv" TITLE="Adv - verb-phrase-modifying adverb">Adv</A></TD>
-<TD><div class=reveal> <I>there</I> <div class=popup> <ul> <li>API: <CODE>there7to_Adv</CODE> <li>Bul: <I>до там</I> <li>Cat: <I>cap a allà</I> <li>Dan: <I>dit</I> <li>Dut: <I>daar</I> <li>Eng: <I>there</I> <li>Fin: <I>sinne</I> <li>Fre: <I>là</I> <li>Ger: <I>dahin</I> <li>Ita: <I>là</I> <li>Nor: <I>dit</I> <li>Pol: <I>tam</I> <li>Ron: <I>până acolo</I> <li>Rus: <I>туда</I> <li>Spa: <I>para allá</I> <li>Swe: <I>dit</I> <li>Urd: <I>وہاں پر</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>there_Adv</CODE></TD>
-<TD><A HREF="#Adv" TITLE="Adv - verb-phrase-modifying adverb">Adv</A></TD>
-<TD><div class=reveal> <I>there</I> <div class=popup> <ul> <li>API: <CODE>there_Adv</CODE> <li>Bul: <I>там</I> <li>Cat: <I>allà</I> <li>Dan: <I>der</I> <li>Dut: <I>daar</I> <li>Eng: <I>there</I> <li>Fin: <I>siellä</I> <li>Fre: <I>là</I> <li>Ger: <I>da</I> <li>Ita: <I>là</I> <li>Nor: <I>der</I> <li>Pol: <I>tam</I> <li>Ron: <I>acolo</I> <li>Rus: <I>там</I> <li>Spa: <I>allí</I> <li>Swe: <I>där</I> <li>Urd: <I>وہاں</I> </ul> </div> </div></TD>
-</TR>
-</TABLE>
-
-<A NAME="Ant"></A>
-<H2>Ant - anteriority</H2>
-<TABLE BORDER="1" CELLPADDING="4">
-<TR>
-<TH>Function</TH>
-<TH>Type</TH>
-<TH COLSPAN="2">Example</TH>
-</TR>
-<TR>
-<TD><CODE>anteriorAnt</CODE></TD>
-<TD><A HREF="#Ant" TITLE="Ant - anteriority">Ant</A></TD>
-<TD><div class=reveal> <I>she has slept</I> <div class=popup> <ul> <li>API: <CODE>mkS anteriorAnt (mkCl she_NP sleep_V)</CODE> <li>Bul: <I>тя е спалa</I> <li>Cat: <I>ella ha dormit</I> <li>Dan: <I>hun har sovet</I> <li>Dut: <I>ze heeft geslapen</I> <li>Eng: <I>she has slept</I> <li>Fin: <I>hän on nukkunut</I> <li>Fre: <I>elle a dormi</I> <li>Ger: <I>sie hat geschlafen</I> <li>Ita: <I>lei ha dormito</I> <li>Nor: <I>hun har sovet</I> <li>Pol: <I>ona spała</I> <li>Ron: <I>ea a dormit</I> <li>Rus: <I>она спдит</I> <li>Spa: <I>ella ha dormido</I> <li>Swe: <I>hon har sovit</I> <li>Urd: <I>وہ سو چكی ہے</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>simultaneousAnt</CODE></TD>
-<TD><A HREF="#Ant" TITLE="Ant - anteriority">Ant</A></TD>
-<TD><div class=reveal> <I>she sleeps</I> <div class=popup> <ul> <li>API: <CODE>mkS simultaneousAnt (mkCl she_NP sleep_V)</CODE> <li>Bul: <I>тя спи</I> <li>Cat: <I>ella dorm</I> <li>Dan: <I>hun sover</I> <li>Dut: <I>ze slaapt</I> <li>Eng: <I>she sleeps</I> <li>Fin: <I>hän nukkuu</I> <li>Fre: <I>elle dort</I> <li>Ger: <I>sie schläft</I> <li>Ita: <I>lei dorme</I> <li>Nor: <I>hun sover</I> <li>Pol: <I>ona śpi</I> <li>Ron: <I>ea doarme</I> <li>Rus: <I>она спдит</I> <li>Spa: <I>ella duerme</I> <li>Swe: <I>hon sover</I> <li>Urd: <I>وہ سوتی ہے</I> </ul> </div> </div></TD>
-</TR>
-</TABLE>
-
-<A NAME="CAdv"></A>
-<H2>CAdv - comparative adverb</H2>
-<TABLE BORDER="1" CELLPADDING="4">
-<TR>
-<TH>Function</TH>
-<TH>Type</TH>
-<TH COLSPAN="2">Example</TH>
-</TR>
-<TR>
-<TD><CODE>as_CAdv</CODE></TD>
-<TD><A HREF="#CAdv" TITLE="CAdv - comparative adverb">CAdv</A></TD>
-<TD><div class=reveal> <I>as</I> <div class=popup> <ul> <li>API: <CODE>as_CAdv</CODE> <li>Bul: <I>*</I> <li>Cat: <I>tan</I> <li>Dan: <I>*</I> <li>Dut: <I>zo</I> <li>Eng: <I>as</I> <li>Fin: <I>yhtä</I> <li>Fre: <I>aussi</I> <li>Ger: <I>ebenso</I> <li>Ita: <I>così</I> <li>Nor: <I>*</I> <li>Pol: <I>tak</I> <li>Ron: <I>la fel de</I> <li>Rus: <I>*</I> <li>Spa: <I>si</I> <li>Swe: <I>lika</I> <li>Urd: <I>اتنا</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>less_CAdv</CODE></TD>
-<TD><A HREF="#CAdv" TITLE="CAdv - comparative adverb">CAdv</A></TD>
-<TD><div class=reveal> <I>less</I> <div class=popup> <ul> <li>API: <CODE>less_CAdv</CODE> <li>Bul: <I>не</I> <li>Cat: <I>menys</I> <li>Dan: <I>mindre</I> <li>Dut: <I>minder</I> <li>Eng: <I>less</I> <li>Fin: <I>vähemmän</I> <li>Fre: <I>moins</I> <li>Ger: <I>weniger</I> <li>Ita: <I>meno</I> <li>Nor: <I>mindre</I> <li>Pol: <I>mniej</I> <li>Ron: <I>mai puţin</I> <li>Rus: <I>менее</I> <li>Spa: <I>menos</I> <li>Swe: <I>mindre</I> <li>Urd: <I>كم</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>more_CAdv</CODE></TD>
-<TD><A HREF="#CAdv" TITLE="CAdv - comparative adverb">CAdv</A></TD>
-<TD><div class=reveal> <I>more</I> <div class=popup> <ul> <li>API: <CODE>more_CAdv</CODE> <li>Bul: <I>''</I> <li>Cat: <I>més</I> <li>Dan: <I>mer</I> <li>Dut: <I>meer</I> <li>Eng: <I>more</I> <li>Fin: <I>enemmän</I> <li>Fre: <I>plus</I> <li>Ger: <I>mehr</I> <li>Ita: <I>più</I> <li>Nor: <I>mer</I> <li>Pol: <I>bardziej</I> <li>Ron: <I>mai</I> <li>Rus: <I>более</I> <li>Spa: <I>más</I> <li>Swe: <I>mer</I> <li>Urd: <I>زیادہ</I> </ul> </div> </div></TD>
-</TR>
-</TABLE>
-
-<A NAME="CN"></A>
-<H2>CN - common noun (without determiner)</H2>
-<TABLE BORDER="1" CELLPADDING="4">
-<TR>
-<TH>Function</TH>
-<TH>Type</TH>
-<TH COLSPAN="2">Example</TH>
-</TR>
-<TR>
-<TD><CODE>mkCN</CODE></TD>
-<TD><A HREF="#N" TITLE="N - common noun">N</A> <CODE>-&gt;</CODE> <A HREF="#CN" TITLE="CN - common noun (without determiner)">CN</A></TD>
-<TD><div class=reveal> <I>house</I> <div class=popup> <ul> <li>API: <CODE>mkCN house_N</CODE> <li>Bul: <I>къща</I> <li>Cat: <I>casa</I> <li>Dan: <I>hus</I> <li>Dut: <I>huis</I> <li>Eng: <I>house</I> <li>Fin: <I>talo</I> <li>Fre: <I>maison</I> <li>Ger: <I>Haus</I> <li>Ita: <I>casa</I> <li>Nor: <I>hus</I> <li>Pol: <I>dom</I> <li>Ron: <I>casă</I> <li>Rus: <I>дом</I> <li>Spa: <I>casa</I> <li>Swe: <I>hus</I> <li>Urd: <I>گھر</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>mkCN</CODE></TD>
-<TD><A HREF="#N2" TITLE="N2 - relational noun">N2</A> <CODE>-&gt;</CODE> <A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A> <CODE>-&gt;</CODE> <A HREF="#CN" TITLE="CN - common noun (without determiner)">CN</A></TD>
-<TD><div class=reveal> <I>mother of the king</I> <div class=popup> <ul> <li>API: <CODE>mkCN mother_N2 (mkNP the_Det king_N)</CODE> <li>Bul: <I>майка на царя</I> <li>Cat: <I>mare del rei</I> <li>Dan: <I>moder til kongen</I> <li>Dut: <I>moeder van de koning</I> <li>Eng: <I>mother of the king</I> <li>Fin: <I>kuninkaan äiti</I> <li>Fre: <I>mère du roi</I> <li>Ger: <I>Mutter von dem König</I> <li>Ita: <I>madre del ré</I> <li>Nor: <I>mor til kongen</I> <li>Pol: <I>matka króla</I> <li>Ron: <I>mamă regelui</I> <li>Rus: <I>мать короля</I> <li>Spa: <I>madre del rey</I> <li>Swe: <I>mor till kungen</I> <li>Urd: <I>بادشاہ كی ماں</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>mkCN</CODE></TD>
-<TD><A HREF="#N3" TITLE="N3 - three-place relational noun">N3</A> <CODE>-&gt;</CODE> <A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A> <CODE>-&gt;</CODE> <A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A> <CODE>-&gt;</CODE> <A HREF="#CN" TITLE="CN - common noun (without determiner)">CN</A></TD>
-<TD><div class=reveal> <I>distance from this city to Paris</I> <div class=popup> <ul> <li>API: <CODE>mkCN distance_N3 (mkNP this_Det city_N) (mkNP paris_PN)</CODE> <li>Bul: <I>разстояние от този град до Париж</I> <li>Cat: <I>distància de aquesta ciutat a Paris</I> <li>Dan: <I>afstand fra denne by til Paris</I> <li>Dut: <I>afstand van deze stad naar Parijs</I> <li>Eng: <I>distance from this city to Paris</I> <li>Fin: <I>etäisyys tästä kaupungista Pariisiin</I> <li>Fre: <I>distance de cette ville à Paris</I> <li>Ger: <I>Entfernung von dieser Stadt zu Paris</I> <li>Ita: <I>distanza di questa città a Parigi</I> <li>Nor: <I>avstand fra denne byen til Paris</I> <li>Pol: <I>odległość z tego miasta do Paryża</I> <li>Ron: <I>distanţă de la acest oraş la Paris</I> <li>Rus: <I>расстояние от этого города к Парижу</I> <li>Spa: <I>distancia de esta ciudad a Paris</I> <li>Swe: <I>avstånd från den här staden till Paris</I> <li>Urd: <I>پیرس كا یہ شہر سے فاصلہ</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>mkCN</CODE></TD>
-<TD><A HREF="#N2" TITLE="N2 - relational noun">N2</A> <CODE>-&gt;</CODE> <A HREF="#CN" TITLE="CN - common noun (without determiner)">CN</A></TD>
-<TD><div class=reveal> <I>mother</I> <div class=popup> <ul> <li>API: <CODE>mkCN mother_N2</CODE> <li>Bul: <I>майка</I> <li>Cat: <I>mare</I> <li>Dan: <I>moder</I> <li>Dut: <I>moeder</I> <li>Eng: <I>mother</I> <li>Fin: <I>äiti</I> <li>Fre: <I>mère</I> <li>Ger: <I>Mutter</I> <li>Ita: <I>madre</I> <li>Nor: <I>mor</I> <li>Pol: <I>matka</I> <li>Ron: <I>mamă</I> <li>Rus: <I>мать</I> <li>Spa: <I>madre</I> <li>Swe: <I>mor</I> <li>Urd: <I>ماں</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>mkCN</CODE></TD>
-<TD><A HREF="#N3" TITLE="N3 - three-place relational noun">N3</A> <CODE>-&gt;</CODE> <A HREF="#CN" TITLE="CN - common noun (without determiner)">CN</A></TD>
-<TD><div class=reveal> <I>distance</I> <div class=popup> <ul> <li>API: <CODE>mkCN distance_N3</CODE> <li>Bul: <I>разстояние</I> <li>Cat: <I>distància</I> <li>Dan: <I>afstand</I> <li>Dut: <I>afstand</I> <li>Eng: <I>distance</I> <li>Fin: <I>etäisyys</I> <li>Fre: <I>distance</I> <li>Ger: <I>Entfernung</I> <li>Ita: <I>distanza</I> <li>Nor: <I>avstand</I> <li>Pol: <I>odległość</I> <li>Ron: <I>distanţă</I> <li>Rus: <I>расстояние</I> <li>Spa: <I>distancia</I> <li>Swe: <I>avstånd</I> <li>Urd: <I>فاصلہ</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>mkCN</CODE></TD>
-<TD><A HREF="#A" TITLE="A - one-place adjective">A</A> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A> <CODE>-&gt;</CODE> <A HREF="#CN" TITLE="CN - common noun (without determiner)">CN</A></TD>
-<TD><div class=reveal> <I>big house</I> <div class=popup> <ul> <li>API: <CODE>mkCN big_A house_N</CODE> <li>Bul: <I>голяма къща</I> <li>Cat: <I>casa grosa</I> <li>Dan: <I>stort hus</I> <li>Dut: <I>groot huis</I> <li>Eng: <I>big house</I> <li>Fin: <I>suuri talo</I> <li>Fre: <I>grande maison</I> <li>Ger: <I>großes Haus</I> <li>Ita: <I>grande casa</I> <li>Nor: <I>stort hus</I> <li>Pol: <I>duży dom</I> <li>Ron: <I>casă mare</I> <li>Rus: <I>большой дом</I> <li>Spa: <I>grande casa</I> <li>Swe: <I>stort hus</I> <li>Urd: <I>بڑا گھر</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>mkCN</CODE></TD>
-<TD><A HREF="#A" TITLE="A - one-place adjective">A</A> <CODE>-&gt;</CODE> <A HREF="#CN" TITLE="CN - common noun (without determiner)">CN</A> <CODE>-&gt;</CODE> <A HREF="#CN" TITLE="CN - common noun (without determiner)">CN</A></TD>
-<TD><div class=reveal> <I>big blue house</I> <div class=popup> <ul> <li>API: <CODE>mkCN big_A (mkCN blue_A house_N)</CODE> <li>Bul: <I>голяма синя къща</I> <li>Cat: <I>casa blava grosa</I> <li>Dan: <I>stort blått hus</I> <li>Dut: <I>groot blauw huis</I> <li>Eng: <I>big blue house</I> <li>Fin: <I>suuri sininen talo</I> <li>Fre: <I>grande maison bleue</I> <li>Ger: <I>großes blaues Haus</I> <li>Ita: <I>grande casa blù</I> <li>Nor: <I>stort blått hus</I> <li>Pol: <I>duży niebieski dom</I> <li>Ron: <I>casă albastră mare</I> <li>Rus: <I>большой голубой дом</I> <li>Spa: <I>grande casa azul</I> <li>Swe: <I>stort blått hus</I> <li>Urd: <I>بڑا نیلا گھر</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>mkCN</CODE></TD>
-<TD><A HREF="#AP" TITLE="AP - adjectival phrase">AP</A> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A> <CODE>-&gt;</CODE> <A HREF="#CN" TITLE="CN - common noun (without determiner)">CN</A></TD>
-<TD><div class=reveal> <I>very big house</I> <div class=popup> <ul> <li>API: <CODE>mkCN (mkAP very_AdA big_A) house_N</CODE> <li>Bul: <I>много голяма къща</I> <li>Cat: <I>casa molt grosa</I> <li>Dan: <I>meget stort hus</I> <li>Dut: <I>erg groot huis</I> <li>Eng: <I>very big house</I> <li>Fin: <I>erittäin suuri talo</I> <li>Fre: <I>très grande maison</I> <li>Ger: <I>sehr großes Haus</I> <li>Ita: <I>molto grande casa</I> <li>Nor: <I>mye stort hus</I> <li>Pol: <I>bardzo duży dom</I> <li>Ron: <I>casă foarte mare</I> <li>Rus: <I>очень большой дом</I> <li>Spa: <I>muy grande casa</I> <li>Swe: <I>mycket stort hus</I> <li>Urd: <I>بہت بڑا گھر</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>mkCN</CODE></TD>
-<TD><A HREF="#AP" TITLE="AP - adjectival phrase">AP</A> <CODE>-&gt;</CODE> <A HREF="#CN" TITLE="CN - common noun (without determiner)">CN</A> <CODE>-&gt;</CODE> <A HREF="#CN" TITLE="CN - common noun (without determiner)">CN</A></TD>
-<TD><div class=reveal> <I>very big blue house</I> <div class=popup> <ul> <li>API: <CODE>mkCN (mkAP very_AdA big_A) (mkCN blue_A house_N)</CODE> <li>Bul: <I>много голяма синя къща</I> <li>Cat: <I>casa blava molt grosa</I> <li>Dan: <I>meget stort blått hus</I> <li>Dut: <I>erg groot blauw huis</I> <li>Eng: <I>very big blue house</I> <li>Fin: <I>erittäin suuri sininen talo</I> <li>Fre: <I>très grande maison bleue</I> <li>Ger: <I>sehr großes blaues Haus</I> <li>Ita: <I>molto grande casa blù</I> <li>Nor: <I>mye stort blått hus</I> <li>Pol: <I>bardzo duży niebieski dom</I> <li>Ron: <I>casă albastră foarte mare</I> <li>Rus: <I>очень большой голубой дом</I> <li>Spa: <I>muy grande casa azul</I> <li>Swe: <I>mycket stort blått hus</I> <li>Urd: <I>بہت بڑا نیلا گھر</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>mkCN</CODE></TD>
-<TD><A HREF="#N" TITLE="N - common noun">N</A> <CODE>-&gt;</CODE> <A HREF="#RS" TITLE="RS - relative">RS</A> <CODE>-&gt;</CODE> <A HREF="#CN" TITLE="CN - common noun (without determiner)">CN</A></TD>
-<TD><div class=reveal> <I>man whom she loves</I> <div class=popup> <ul> <li>API: <CODE>mkCN man_N (mkRS (mkRCl which_RP she_NP love_V2))</CODE> <li>Bul: <I>мъж който тя обича</I> <li>Cat: <I>home que ella estima</I> <li>Dan: <I>mand som hun elsker</I> <li>Dut: <I>man die ze lief heeft</I> <li>Eng: <I>man whom she loves</I> <li>Fin: <I>mies jota hän rakastaa</I> <li>Fre: <I>homme qu' elle aime</I> <li>Ger: <I>Mann den sie liebt</I> <li>Ita: <I>uomo che lei ama</I> <li>Nor: <I>mann som hun elsker</I> <li>Pol: <I>mężczyzna , którego kocha ona</I> <li>Ron: <I>om pe care îl iubeşte ea</I> <li>Rus: <I>человек , который она любдит</I> <li>Spa: <I>hombre que ella ama</I> <li>Swe: <I>man som hon älskar</I> <li>Urd: <I>آدمی جس كو وہ پیار كرتی ہے</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>mkCN</CODE></TD>
-<TD><A HREF="#CN" TITLE="CN - common noun (without determiner)">CN</A> <CODE>-&gt;</CODE> <A HREF="#RS" TITLE="RS - relative">RS</A> <CODE>-&gt;</CODE> <A HREF="#CN" TITLE="CN - common noun (without determiner)">CN</A></TD>
-<TD><div class=reveal> <I>old man whom she loves</I> <div class=popup> <ul> <li>API: <CODE>mkCN (mkCN old_A man_N) (mkRS (mkRCl which_RP she_NP love_V2))</CODE> <li>Bul: <I>стар мъж който тя обича</I> <li>Cat: <I>home vell que ella estima</I> <li>Dan: <I>gammel mand som hun elsker</I> <li>Dut: <I>oude man die ze lief heeft</I> <li>Eng: <I>old man whom she loves</I> <li>Fin: <I>vanha mies jota hän rakastaa</I> <li>Fre: <I>vieux homme qu' elle aime</I> <li>Ger: <I>alter Mann den sie liebt</I> <li>Ita: <I>vecchio uomo che lei ama</I> <li>Nor: <I>gammel mann som hun elsker</I> <li>Pol: <I>stary mężczyzna , którego kocha ona</I> <li>Ron: <I>om vechi pe care îl iubeşte ea</I> <li>Rus: <I>старый человек , который она любдит</I> <li>Spa: <I>viejo hombre que ella ama</I> <li>Swe: <I>gammal man som hon älskar</I> <li>Urd: <I>بوڑھا آدمی جس كو وہ پیار كرتی ہے</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>mkCN</CODE></TD>
-<TD><A HREF="#N" TITLE="N - common noun">N</A> <CODE>-&gt;</CODE> <A HREF="#Adv" TITLE="Adv - verb-phrase-modifying adverb">Adv</A> <CODE>-&gt;</CODE> <A HREF="#CN" TITLE="CN - common noun (without determiner)">CN</A></TD>
-<TD><div class=reveal> <I>house on the hill</I> <div class=popup> <ul> <li>API: <CODE>mkCN house_N (mkAdv on_Prep (mkNP the_Det hill_N))</CODE> <li>Bul: <I>къща на хълма</I> <li>Cat: <I>casa sobre el turó</I> <li>Dan: <I>hus på højen</I> <li>Dut: <I>huis op de heuvel</I> <li>Eng: <I>house on the hill</I> <li>Fin: <I>talo kukkulalla</I> <li>Fre: <I>maison sur la colline</I> <li>Ger: <I>Haus auf dem Hügel</I> <li>Ita: <I>casa sulla collina</I> <li>Nor: <I>hus på haugen</I> <li>Pol: <I>dom nа wzgórzu</I> <li>Ron: <I>casă pe deal</I> <li>Rus: <I>дом на холме</I> <li>Spa: <I>casa sobre la colina</I> <li>Swe: <I>hus på kullen</I> <li>Urd: <I>پہاڑی پر گھر</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>mkCN</CODE></TD>
-<TD><A HREF="#CN" TITLE="CN - common noun (without determiner)">CN</A> <CODE>-&gt;</CODE> <A HREF="#Adv" TITLE="Adv - verb-phrase-modifying adverb">Adv</A> <CODE>-&gt;</CODE> <A HREF="#CN" TITLE="CN - common noun (without determiner)">CN</A></TD>
-<TD><div class=reveal> <I>big house on the hill</I> <div class=popup> <ul> <li>API: <CODE>mkCN (mkCN big_A house_N) (mkAdv on_Prep (mkNP the_Det hill_N))</CODE> <li>Bul: <I>голяма къща на хълма</I> <li>Cat: <I>casa grosa sobre el turó</I> <li>Dan: <I>stort hus på højen</I> <li>Dut: <I>groot huis op de heuvel</I> <li>Eng: <I>big house on the hill</I> <li>Fin: <I>suuri talo kukkulalla</I> <li>Fre: <I>grande maison sur la colline</I> <li>Ger: <I>großes Haus auf dem Hügel</I> <li>Ita: <I>grande casa sulla collina</I> <li>Nor: <I>stort hus på haugen</I> <li>Pol: <I>duży dom nа wzgórzu</I> <li>Ron: <I>casă mare pe deal</I> <li>Rus: <I>большой дом на холме</I> <li>Spa: <I>grande casa sobre la colina</I> <li>Swe: <I>stort hus på kullen</I> <li>Urd: <I>پہاڑی پر بڑا گھر</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>mkCN</CODE></TD>
-<TD><A HREF="#CN" TITLE="CN - common noun (without determiner)">CN</A> <CODE>-&gt;</CODE> <A HREF="#S" TITLE="S - declarative sentence">S</A> <CODE>-&gt;</CODE> <A HREF="#CN" TITLE="CN - common noun (without determiner)">CN</A></TD>
-<TD><div class=reveal> <I>almost five</I> <div class=popup> <ul> <li>API: <CODE>mkNum (mkCard almost_AdN (mkCard (mkNumeral n5_Unit)))</CODE> <li>Bul: <I>почти петима</I> <li>Cat: <I>{s = table CommonRomance.Gender {</I> <li>Dan: <I>næsten fem</I> <li>Dut: <I>bijna vijf</I> <li>Eng: <I>almost five</I> <li>Fin: <I>melkein viisi</I> <li>Fre: <I>presque cinq</I> <li>Ger: <I>fast fünf</I> <li>Ita: <I>quasi cinque</I> <li>Nor: <I>nesten fem</I> <li>Pol: <I>prawie pięć</I> <li>Ron: <I>aproape cinci</I> <li>Rus: <I>почти пять</I> <li>Spa: <I>casi cinco</I> <li>Swe: <I>nästan fem</I> <li>Urd: <I>تقریبا پانچ</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>mkCN</CODE></TD>
-<TD><A HREF="#CN" TITLE="CN - common noun (without determiner)">CN</A> <CODE>-&gt;</CODE> <A HREF="#QS" TITLE="QS - question">QS</A> <CODE>-&gt;</CODE> <A HREF="#CN" TITLE="CN - common noun (without determiner)">CN</A></TD>
-<TD><div class=reveal> <I>almost five</I> <div class=popup> <ul> <li>API: <CODE>mkNum (mkCard almost_AdN (mkCard (mkNumeral n5_Unit)))</CODE> <li>Bul: <I>почти петима</I> <li>Cat: <I>{s = table CommonRomance.Gender {</I> <li>Dan: <I>næsten fem</I> <li>Dut: <I>bijna vijf</I> <li>Eng: <I>almost five</I> <li>Fin: <I>melkein viisi</I> <li>Fre: <I>presque cinq</I> <li>Ger: <I>fast fünf</I> <li>Ita: <I>quasi cinque</I> <li>Nor: <I>nesten fem</I> <li>Pol: <I>prawie pięć</I> <li>Ron: <I>aproape cinci</I> <li>Rus: <I>почти пять</I> <li>Spa: <I>casi cinco</I> <li>Swe: <I>nästan fem</I> <li>Urd: <I>تقریبا پانچ</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>mkCN</CODE></TD>
-<TD><A HREF="#CN" TITLE="CN - common noun (without determiner)">CN</A> <CODE>-&gt;</CODE> <A HREF="#VP" TITLE="VP - verb phrase">VP</A> <CODE>-&gt;</CODE> <A HREF="#CN" TITLE="CN - common noun (without determiner)">CN</A></TD>
-<TD><div class=reveal> <I>reason to sleep</I> <div class=popup> <ul> <li>API: <CODE>mkCN (mkCN reason_N) (mkVP sleep_V)</CODE> <li>Bul: <I>причина да спя</I> <li>Cat: <I>raó dormir</I> <li>Dan: <I>*</I> <li>Dut: <I>reden te slapen</I> <li>Eng: <I>reason to sleep</I> <li>Fin: <I>syy nukkua</I> <li>Fre: <I>raison dormir</I> <li>Ger: <I>Grund zu schlafen</I> <li>Ita: <I>ragione dormire</I> <li>Nor: <I>*</I> <li>Pol: <I>powód spać</I> <li>Ron: <I>motiv sã doarmă</I> <li>Rus: <I>причина спать</I> <li>Spa: <I>*</I> <li>Swe: <I>anledning att sova</I> <li>Urd: <I>وجہ سونا</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>mkCN</CODE></TD>
-<TD><A HREF="#CN" TITLE="CN - common noun (without determiner)">CN</A> <CODE>-&gt;</CODE> <A HREF="#SC" TITLE="SC - embedded sentence or question">SC</A> <CODE>-&gt;</CODE> <A HREF="#CN" TITLE="CN - common noun (without determiner)">CN</A></TD>
-<TD><div class=reveal> <I>reason to sleep</I> <div class=popup> <ul> <li>API: <CODE>mkCN (mkCN reason_N) (mkVP sleep_V)</CODE> <li>Bul: <I>причина да спя</I> <li>Cat: <I>raó dormir</I> <li>Dan: <I>*</I> <li>Dut: <I>reden te slapen</I> <li>Eng: <I>reason to sleep</I> <li>Fin: <I>syy nukkua</I> <li>Fre: <I>raison dormir</I> <li>Ger: <I>Grund zu schlafen</I> <li>Ita: <I>ragione dormire</I> <li>Nor: <I>*</I> <li>Pol: <I>powód spać</I> <li>Ron: <I>motiv sã doarmă</I> <li>Rus: <I>причина спать</I> <li>Spa: <I>*</I> <li>Swe: <I>anledning att sova</I> <li>Urd: <I>وجہ سونا</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>mkCN</CODE></TD>
-<TD><A HREF="#N" TITLE="N - common noun">N</A> <CODE>-&gt;</CODE> <A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A> <CODE>-&gt;</CODE> <A HREF="#CN" TITLE="CN - common noun (without determiner)">CN</A></TD>
-<TD><div class=reveal> <I>king John</I> <div class=popup> <ul> <li>API: <CODE>mkCN king_N (mkNP john_PN)</CODE> <li>Bul: <I>цар Джон</I> <li>Cat: <I>rei Joan</I> <li>Dan: <I>konge John</I> <li>Dut: <I>koning Jan</I> <li>Eng: <I>king John</I> <li>Fin: <I>kuningas Jussi</I> <li>Fre: <I>roi Jean</I> <li>Ger: <I>König Johann</I> <li>Ita: <I>ré Giovanni</I> <li>Nor: <I>konge John</I> <li>Pol: <I>król Jan</I> <li>Ron: <I>rege Ion</I> <li>Rus: <I>король Иван</I> <li>Spa: <I>rey Juan</I> <li>Swe: <I>kung Johan</I> <li>Urd: <I>بادشاہ جان</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>mkCN</CODE></TD>
-<TD><A HREF="#CN" TITLE="CN - common noun (without determiner)">CN</A> <CODE>-&gt;</CODE> <A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A> <CODE>-&gt;</CODE> <A HREF="#CN" TITLE="CN - common noun (without determiner)">CN</A></TD>
-<TD><div class=reveal> <I>old king John</I> <div class=popup> <ul> <li>API: <CODE>mkCN (mkCN old_A king_N) (mkNP john_PN)</CODE> <li>Bul: <I>стар цар Джон</I> <li>Cat: <I>rei vell Joan</I> <li>Dan: <I>gammel konge John</I> <li>Dut: <I>oude koning Jan</I> <li>Eng: <I>old king John</I> <li>Fin: <I>vanha kuningas Jussi</I> <li>Fre: <I>vieux roi Jean</I> <li>Ger: <I>alter König Johann</I> <li>Ita: <I>vecchio ré Giovanni</I> <li>Nor: <I>gammel konge John</I> <li>Pol: <I>stary król Jan</I> <li>Ron: <I>rege vechi Ion</I> <li>Rus: <I>старый король Иван</I> <li>Spa: <I>viejo rey Juan</I> <li>Swe: <I>gammal kung Johan</I> <li>Urd: <I>بوڑھا بادشاہ جان</I> </ul> </div> </div></TD>
-</TR>
-</TABLE>
-
-<A NAME="Card"></A>
-<H2>Card - cardinal number</H2>
-<TABLE BORDER="1" CELLPADDING="4">
-<TR>
-<TH>Function</TH>
-<TH>Type</TH>
-<TH COLSPAN="2">Example</TH>
-</TR>
-<TR>
-<TD><CODE>mkCard</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#Card" TITLE="Card - cardinal number">Card</A></TD>
-<TD><I>thirty-five (given as "35"; range 1-999)</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkCard</CODE></TD>
-<TD><A HREF="#Numeral" TITLE="Numeral - cardinal or ordinal in words">Numeral</A> <CODE>-&gt;</CODE> <A HREF="#Card" TITLE="Card - cardinal number">Card</A></TD>
-<TD><div class=reveal> <I>seven</I> <div class=popup> <ul> <li>API: <CODE>mkCard (mkNumeral n7_Unit)</CODE> <li>Bul: <I>седмина</I> <li>Cat: <I>set</I> <li>Dan: <I>syv</I> <li>Dut: <I>zeven</I> <li>Eng: <I>seven</I> <li>Fin: <I>seitsemän</I> <li>Fre: <I>sept</I> <li>Ger: <I>sieben</I> <li>Ita: <I>sette</I> <li>Nor: <I>sju</I> <li>Pol: <I>siedem</I> <li>Ron: <I>şapte</I> <li>Rus: <I>семь</I> <li>Spa: <I>siete</I> <li>Swe: <I>sju</I> <li>Urd: <I>سات</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>mkCard</CODE></TD>
-<TD><A HREF="#Digits" TITLE="Digits - cardinal or ordinal in digits">Digits</A> <CODE>-&gt;</CODE> <A HREF="#Card" TITLE="Card - cardinal number">Card</A></TD>
-<TD><I>51</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkCard</CODE></TD>
-<TD><A HREF="#AdN" TITLE="AdN - numeral-modifying adverb">AdN</A> <CODE>-&gt;</CODE> <A HREF="#Card" TITLE="Card - cardinal number">Card</A> <CODE>-&gt;</CODE> <A HREF="#Card" TITLE="Card - cardinal number">Card</A></TD>
-<TD><I>almost fifty</I></TD>
-</TR>
-</TABLE>
-
-<A NAME="Cl"></A>
-<H2>Cl - declarative clause, with all tenses</H2>
-<TABLE BORDER="1" CELLPADDING="4">
-<TR>
-<TH>Function</TH>
-<TH>Type</TH>
-<TH COLSPAN="2">Example</TH>
-</TR>
-<TR>
-<TD><CODE>genericCl</CODE></TD>
-<TD><A HREF="#VP" TITLE="VP - verb phrase">VP</A> <CODE>-&gt;</CODE> <A HREF="#Cl" TITLE="Cl - declarative clause, with all tenses">Cl</A></TD>
-<TD><div class=reveal> <I>one sleeps</I> <div class=popup> <ul> <li>API: <CODE>mkS (genericCl (mkVP sleep_V))</CODE> <li>Bul: <I>някой спи</I> <li>Cat: <I>hom dorm</I> <li>Dan: <I>man sover</I> <li>Dut: <I>men slaapt</I> <li>Eng: <I>one sleeps</I> <li>Fin: <I>nukutaan</I> <li>Fre: <I>on dort</I> <li>Ger: <I>man schläft</I> <li>Ita: <I>si dorme</I> <li>Nor: <I>man sover</I> <li>Pol: <I>ktoś śpi</I> <li>Ron: <I>cineva doarme</I> <li>Rus: <I>ты спдишь</I> <li>Spa: <I>se duerme</I> <li>Swe: <I>man sover</I> <li>Urd: <I>كوی سوتا ہے</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>mkCl</CODE></TD>
-<TD><A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A> <CODE>-&gt;</CODE> <A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#Cl" TITLE="Cl - declarative clause, with all tenses">Cl</A></TD>
-<TD><div class=reveal> <I>she sleeps</I> <div class=popup> <ul> <li>API: <CODE>mkCl she_NP sleep_V</CODE> <li>Bul: <I>тя спи</I> <li>Cat: <I>ella dorm</I> <li>Dan: <I>hun sover</I> <li>Dut: <I>ze slaapt</I> <li>Eng: <I>she sleeps</I> <li>Fin: <I>hän nukkuu</I> <li>Fre: <I>elle dort</I> <li>Ger: <I>sie schläft</I> <li>Ita: <I>lei dorme</I> <li>Nor: <I>hun sover</I> <li>Pol: <I>ona śpi</I> <li>Ron: <I>ea doarme</I> <li>Rus: <I>она спдит</I> <li>Spa: <I>ella duerme</I> <li>Swe: <I>hon sover</I> <li>Urd: <I>وہ سوتی ہے</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>mkCl</CODE></TD>
-<TD><A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A> <CODE>-&gt;</CODE> <A HREF="#V2" TITLE="V2 - two-place verb">V2</A> <CODE>-&gt;</CODE> <A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A> <CODE>-&gt;</CODE> <A HREF="#Cl" TITLE="Cl - declarative clause, with all tenses">Cl</A></TD>
-<TD><div class=reveal> <I>she loves him</I> <div class=popup> <ul> <li>API: <CODE>mkCl she_NP love_V2 he_NP</CODE> <li>Bul: <I>тя обича него</I> <li>Cat: <I>ella el estima</I> <li>Dan: <I>hun elsker ham</I> <li>Dut: <I>ze heeft hem lief</I> <li>Eng: <I>she loves him</I> <li>Fin: <I>hän rakastaa häntä</I> <li>Fre: <I>elle l' aime</I> <li>Ger: <I>sie liebt ihn</I> <li>Ita: <I>lei lo ama</I> <li>Nor: <I>hun elsker ham</I> <li>Pol: <I>ona kocha jego</I> <li>Ron: <I>ea îl iubeşte</I> <li>Rus: <I>она любдит его</I> <li>Spa: <I>ella lo ama</I> <li>Swe: <I>hon älskar honom</I> <li>Urd: <I>وہ اس كو پیار كرتی ہے</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>mkCl</CODE></TD>
-<TD><A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A> <CODE>-&gt;</CODE> <A HREF="#V3" TITLE="V3 - three-place verb">V3</A> <CODE>-&gt;</CODE> <A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A> <CODE>-&gt;</CODE> <A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A> <CODE>-&gt;</CODE> <A HREF="#Cl" TITLE="Cl - declarative clause, with all tenses">Cl</A></TD>
-<TD><div class=reveal> <I>she sends it to him</I> <div class=popup> <ul> <li>API: <CODE>mkCl she_NP send_V3 it_NP he_NP</CODE> <li>Bul: <I>тя праща него до него</I> <li>Cat: <I>ella ho li envia</I> <li>Dan: <I>hun sender det til ham</I> <li>Dut: <I>ze stuurt het naar hem</I> <li>Eng: <I>she sends it to him</I> <li>Fin: <I>hän lähettää sen hänelle</I> <li>Fre: <I>elle le lui envoie</I> <li>Ger: <I>sie schickt es ihm</I> <li>Ita: <I>lei lo gli manda</I> <li>Nor: <I>hun sender det til ham</I> <li>Pol: <I>ona wysyła do niego je</I> <li>Ron: <I>ea i -l trimite</I> <li>Rus: <I>она посылает нему его</I> <li>Spa: <I>ella lo le manda</I> <li>Swe: <I>hon skickar det till honom</I> <li>Urd: <I>وہ اس كو اس كو بھیجتی ہے</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>mkCl</CODE></TD>
-<TD><A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A> <CODE>-&gt;</CODE> <A HREF="#VV" TITLE="VV - verb-phrase-complement verb">VV</A> <CODE>-&gt;</CODE> <A HREF="#VP" TITLE="VP - verb phrase">VP</A> <CODE>-&gt;</CODE> <A HREF="#Cl" TITLE="Cl - declarative clause, with all tenses">Cl</A></TD>
-<TD><div class=reveal> <I>she wants to sleep</I> <div class=popup> <ul> <li>API: <CODE>mkCl she_NP want_VV (mkVP sleep_V)</CODE> <li>Bul: <I>тя иска да спи</I> <li>Cat: <I>ella vol dormir</I> <li>Dan: <I>hun vil sove</I> <li>Dut: <I>ze wil slapen</I> <li>Eng: <I>she wants to sleep</I> <li>Fin: <I>hän tahtoo nukkua</I> <li>Fre: <I>elle veut dormir</I> <li>Ger: <I>sie will schlafen</I> <li>Ita: <I>lei vuole dormire</I> <li>Nor: <I>hun vil sove</I> <li>Pol: <I>ona chce spać</I> <li>Ron: <I>ea vrea sã doarmă</I> <li>Rus: <I>она хоччет спать</I> <li>Spa: <I>ella quiere dormir</I> <li>Swe: <I>hon vill sova</I> <li>Urd: <I>وہ سونا چاہتی ہے</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>mkCl</CODE></TD>
-<TD><A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A> <CODE>-&gt;</CODE> <A HREF="#VS" TITLE="VS - sentence-complement verb">VS</A> <CODE>-&gt;</CODE> <A HREF="#S" TITLE="S - declarative sentence">S</A> <CODE>-&gt;</CODE> <A HREF="#Cl" TITLE="Cl - declarative clause, with all tenses">Cl</A></TD>
-<TD><div class=reveal> <I>she says that I sleep</I> <div class=popup> <ul> <li>API: <CODE>mkCl she_NP say_VS (mkS (mkCl i_NP sleep_V))</CODE> <li>Bul: <I>тя казва , че аз спя</I> <li>Cat: <I>ella diu que jo dormo</I> <li>Dan: <I>hun siger at jeg sover</I> <li>Dut: <I>ze zegt dat ik slaap</I> <li>Eng: <I>she says that I sleep</I> <li>Fin: <I>hän sanoo että minä nukun</I> <li>Fre: <I>elle dit que je dors</I> <li>Ger: <I>sie sagt daß ich schlafe</I> <li>Ita: <I>lei dice che io dormo</I> <li>Nor: <I>hun sier at jeg sover</I> <li>Pol: <I>ona mówi , że ja śpię</I> <li>Ron: <I>ea spune cã eu dorm</I> <li>Rus: <I>она говордит , что я сплю</I> <li>Spa: <I>ella dice que yo duermo</I> <li>Swe: <I>hon säger att jag sover</I> <li>Urd: <I>وہ كہتی ہے كہ میں سوتا ہوں</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>mkCl</CODE></TD>
-<TD><A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A> <CODE>-&gt;</CODE> <A HREF="#VQ" TITLE="VQ - question-complement verb">VQ</A> <CODE>-&gt;</CODE> <A HREF="#QS" TITLE="QS - question">QS</A> <CODE>-&gt;</CODE> <A HREF="#Cl" TITLE="Cl - declarative clause, with all tenses">Cl</A></TD>
-<TD><div class=reveal> <I>she wonders who sleeps</I> <div class=popup> <ul> <li>API: <CODE>mkCl she_NP wonder_VQ (mkQS (mkQCl who_IP sleep_V))</CODE> <li>Bul: <I>тя се учудва кой спи</I> <li>Cat: <I>ella se pregunta qui dorm</I> <li>Dan: <I>hun undres hvem som sover</I> <li>Dut: <I>ze vraagt zich af wie slaapt</I> <li>Eng: <I>she wonders who sleeps</I> <li>Fin: <I>hän ihmettelee kuka nukkuu</I> <li>Fre: <I>elle s' étonne qui dort</I> <li>Ger: <I>sie wundert sich wer schläft</I> <li>Ita: <I>lei si domanda chi dorme</I> <li>Nor: <I>hun undrer hvem som sover</I> <li>Pol: <I>ona zastanawia się , kto śpi</I> <li>Ron: <I>ea se întreabă cine doarme</I> <li>Rus: <I>она интересует кто спдит</I> <li>Spa: <I>ella se pregunta quién duerme</I> <li>Swe: <I>hon undrar vem som sover</I> <li>Urd: <I>وہ حیران ہوتی ہے كہ كون سوتا ہے</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>mkCl</CODE></TD>
-<TD><A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A> <CODE>-&gt;</CODE> <A HREF="#VA" TITLE="VA - adjective-complement verb">VA</A> <CODE>-&gt;</CODE> <A HREF="#A" TITLE="A - one-place adjective">A</A> <CODE>-&gt;</CODE> <A HREF="#Cl" TITLE="Cl - declarative clause, with all tenses">Cl</A></TD>
-<TD><div class=reveal> <I>she becomes old</I> <div class=popup> <ul> <li>API: <CODE>mkCl she_NP become_VA old_A</CODE> <li>Bul: <I>тя става стара</I> <li>Cat: <I>ella se torna vell</I> <li>Dan: <I>hun bliver gammel</I> <li>Dut: <I>ze wordt oud</I> <li>Eng: <I>she becomes old</I> <li>Fin: <I>hän tulee vanhaksi</I> <li>Fre: <I>elle devient vieille</I> <li>Ger: <I>sie wird alt</I> <li>Ita: <I>lei diventa vecchia</I> <li>Nor: <I>hun blir gammel</I> <li>Pol: <I>ona staje się stara</I> <li>Ron: <I>ea devine veche</I> <li>Rus: <I>она становдит старой</I> <li>Spa: <I>ella se converte vieja</I> <li>Swe: <I>hon blir gammal</I> <li>Urd: <I>وہ بوڑھی بنتی ہے</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>mkCl</CODE></TD>
-<TD><A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A> <CODE>-&gt;</CODE> <A HREF="#VA" TITLE="VA - adjective-complement verb">VA</A> <CODE>-&gt;</CODE> <A HREF="#AP" TITLE="AP - adjectival phrase">AP</A> <CODE>-&gt;</CODE> <A HREF="#Cl" TITLE="Cl - declarative clause, with all tenses">Cl</A></TD>
-<TD><div class=reveal> <I>she becomes very old</I> <div class=popup> <ul> <li>API: <CODE>mkCl she_NP become_VA (mkAP very_AdA old_A)</CODE> <li>Bul: <I>тя става много стара</I> <li>Cat: <I>ella se torna molt vell</I> <li>Dan: <I>hun bliver meget gammel</I> <li>Dut: <I>ze wordt erg oud</I> <li>Eng: <I>she becomes very old</I> <li>Fin: <I>hän tulee erittäin vanhaksi</I> <li>Fre: <I>elle devient très vieille</I> <li>Ger: <I>sie wird sehr alt</I> <li>Ita: <I>lei diventa molto vecchia</I> <li>Nor: <I>hun blir mye gammel</I> <li>Pol: <I>ona staje się bardzo stara</I> <li>Ron: <I>ea devine foarte veche</I> <li>Rus: <I>она становдит очень старой</I> <li>Spa: <I>ella se converte muy vieja</I> <li>Swe: <I>hon blir mycket gammal</I> <li>Urd: <I>وہ بہت بوڑھی بنتی ہے</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>mkCl</CODE></TD>
-<TD><A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A> <CODE>-&gt;</CODE> <A HREF="#V2A" TITLE="V2A - verb with NP and AP complement">V2A</A> <CODE>-&gt;</CODE> <A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A> <CODE>-&gt;</CODE> <A HREF="#A" TITLE="A - one-place adjective">A</A> <CODE>-&gt;</CODE> <A HREF="#Cl" TITLE="Cl - declarative clause, with all tenses">Cl</A></TD>
-<TD><div class=reveal> <I>she paints it red</I> <div class=popup> <ul> <li>API: <CODE>mkCl she_NP paint_V2A it_NP red_A</CODE> <li>Bul: <I>тя рисува него червено</I> <li>Cat: <I>ella ho pinta en vermell</I> <li>Dan: <I>hun maler det rødt</I> <li>Dut: <I>ze schildeert het rood</I> <li>Eng: <I>she paints it red</I> <li>Fin: <I>hän maalaa sen punaiseksi</I> <li>Fre: <I>elle le peint en rouge</I> <li>Ger: <I>sie malt es rot</I> <li>Ita: <I>lei lo dipinge rosso</I> <li>Nor: <I>hun maler det rødt</I> <li>Pol: <I>ona maluje je na czerwono</I> <li>Ron: <I>ea îl pictează roşu</I> <li>Rus: <I>она рисует красным его</I> <li>Spa: <I>ella lo pinta en rojo</I> <li>Swe: <I>hon målar det rött</I> <li>Urd: <I>وہ اس كو لال رنگ كرتی ہے</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>mkCl</CODE></TD>
-<TD><A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A> <CODE>-&gt;</CODE> <A HREF="#V2A" TITLE="V2A - verb with NP and AP complement">V2A</A> <CODE>-&gt;</CODE> <A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A> <CODE>-&gt;</CODE> <A HREF="#AP" TITLE="AP - adjectival phrase">AP</A> <CODE>-&gt;</CODE> <A HREF="#Cl" TITLE="Cl - declarative clause, with all tenses">Cl</A></TD>
-<TD><div class=reveal> <I>she paints it red</I> <div class=popup> <ul> <li>API: <CODE>mkCl she_NP paint_V2A it_NP (mkAP red_A)</CODE> <li>Bul: <I>тя рисува него червено</I> <li>Cat: <I>ella ho pinta en vermell</I> <li>Dan: <I>hun maler det rødt</I> <li>Dut: <I>ze schildeert het rood</I> <li>Eng: <I>she paints it red</I> <li>Fin: <I>hän maalaa sen punaiseksi</I> <li>Fre: <I>elle le peint en rouge</I> <li>Ger: <I>sie malt es rot</I> <li>Ita: <I>lei lo dipinge rosso</I> <li>Nor: <I>hun maler det rødt</I> <li>Pol: <I>ona maluje je na czerwono</I> <li>Ron: <I>ea îl pictează roşu</I> <li>Rus: <I>она рисует красным его</I> <li>Spa: <I>ella lo pinta en rojo</I> <li>Swe: <I>hon målar det rött</I> <li>Urd: <I>وہ اس كو لال رنگ كرتی ہے</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>mkCl</CODE></TD>
-<TD><A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A> <CODE>-&gt;</CODE> <A HREF="#V2S" TITLE="V2S - verb with NP and S complement">V2S</A> <CODE>-&gt;</CODE> <A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A> <CODE>-&gt;</CODE> <A HREF="#S" TITLE="S - declarative sentence">S</A> <CODE>-&gt;</CODE> <A HREF="#Cl" TITLE="Cl - declarative clause, with all tenses">Cl</A></TD>
-<TD><div class=reveal> <I>she answers to him that we sleep</I> <div class=popup> <ul> <li>API: <CODE>mkCl she_NP answer_V2S he_NP (mkS (mkCl we_NP sleep_V))</CODE> <li>Bul: <I>тя отговаря му , че ние спим</I> <li>Cat: <I>ella li respon que nosaltres dormim</I> <li>Dan: <I>hun svarer til ham at vi sover</I> <li>Dut: <I>ze antwoordt hem dat we slapen</I> <li>Eng: <I>she answers to him that we sleep</I> <li>Fin: <I>hän vastaa hänelle että me nukumme</I> <li>Fre: <I>elle lui répond que nous dormons</I> <li>Ger: <I>sie antwortet ihm daß wir schlafen</I> <li>Ita: <I>lei gli risponde che noi dormiamo</I> <li>Nor: <I>hun svarer til ham at vi sover</I> <li>Pol: <I>ona odpowiada jemu , że my śpimy</I> <li>Ron: <I>ea îi răspunde cã noi dormim</I> <li>Rus: <I>она отвечает , что мы спдим его</I> <li>Spa: <I>ella le responde que nosotros dormimos</I> <li>Swe: <I>hon svarar till honom att vi sover</I> <li>Urd: <I>وہ اس كو جواب دیتی ہے كہ ہم سوتے ہیں</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>mkCl</CODE></TD>
-<TD><A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A> <CODE>-&gt;</CODE> <A HREF="#V2Q" TITLE="V2Q - verb with NP and Q complement">V2Q</A> <CODE>-&gt;</CODE> <A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A> <CODE>-&gt;</CODE> <A HREF="#QS" TITLE="QS - question">QS</A> <CODE>-&gt;</CODE> <A HREF="#Cl" TITLE="Cl - declarative clause, with all tenses">Cl</A></TD>
-<TD><div class=reveal> <I>she asks him who sleeps</I> <div class=popup> <ul> <li>API: <CODE>mkCl she_NP ask_V2Q he_NP (mkQS (mkQCl who_IP sleep_V))</CODE> <li>Bul: <I>тя пита него кой спи</I> <li>Cat: <I>ella li pregunta qui dorm</I> <li>Dan: <I>hun spørger ham hvem som sover</I> <li>Dut: <I>ze vraagt hem wie slaapt</I> <li>Eng: <I>she asks him who sleeps</I> <li>Fin: <I>hän kysyy häneltä kuka nukkuu</I> <li>Fre: <I>elle lui demande qui dort</I> <li>Ger: <I>sie fragt ihn wer schläft</I> <li>Ita: <I>lei gli chiede chi dorme</I> <li>Nor: <I>hun spørr ham hvem som sover</I> <li>Pol: <I>ona pyta jego , kto śpi</I> <li>Ron: <I>ea îl întreabă cine doarme</I> <li>Rus: <I>она спрашивает кто спдит его</I> <li>Spa: <I>ella le pregunta quién duerme</I> <li>Swe: <I>hon frågar honom vem som sover</I> <li>Urd: <I>وہ اس سے پوچھتی ہے كہ كون سوتا ہے</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>mkCl</CODE></TD>
-<TD><A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A> <CODE>-&gt;</CODE> <A HREF="#V2V" TITLE="V2V - verb with NP and V complement">V2V</A> <CODE>-&gt;</CODE> <A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A> <CODE>-&gt;</CODE> <A HREF="#VP" TITLE="VP - verb phrase">VP</A> <CODE>-&gt;</CODE> <A HREF="#Cl" TITLE="Cl - declarative clause, with all tenses">Cl</A></TD>
-<TD><div class=reveal> <I>she begs him to sleep</I> <div class=popup> <ul> <li>API: <CODE>mkCl she_NP beg_V2V he_NP (mkVP sleep_V)</CODE> <li>Bul: <I>тя моли него да спи</I> <li>Cat: <I>ella el demana a dormir</I> <li>Dan: <I>hun beder ham at sove</I> <li>Dut: <I>ze smeekt hem te slapen</I> <li>Eng: <I>she begs him to sleep</I> <li>Fin: <I>hän pyytää häntä nukkumaan</I> <li>Fre: <I>elle le demande à dormir</I> <li>Ger: <I>sie bittet ihn zu schlafen</I> <li>Ita: <I>lei lo prega di dormire</I> <li>Nor: <I>hun ber ham att sove</I> <li>Pol: <I>*</I> <li>Ron: <I>ea îl roagă sã doarmă</I> <li>Rus: <I>она просит спать его</I> <li>Spa: <I>ella lo roga a dormir</I> <li>Swe: <I>hon ber honom att sova</I> <li>Urd: <I>وہ اس سے سونے كی التجا كرتی ہے</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>mkCl</CODE></TD>
-<TD><A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A> <CODE>-&gt;</CODE> <A HREF="#A" TITLE="A - one-place adjective">A</A> <CODE>-&gt;</CODE> <A HREF="#Cl" TITLE="Cl - declarative clause, with all tenses">Cl</A></TD>
-<TD><div class=reveal> <I>she is old</I> <div class=popup> <ul> <li>API: <CODE>mkCl she_NP old_A</CODE> <li>Bul: <I>тя е стара</I> <li>Cat: <I>ella és vell</I> <li>Dan: <I>hun er gammel</I> <li>Dut: <I>ze is oud</I> <li>Eng: <I>she is old</I> <li>Fin: <I>hän on vanha</I> <li>Fre: <I>elle est vieille</I> <li>Ger: <I>sie ist alt</I> <li>Ita: <I>lei è vecchia</I> <li>Nor: <I>hun er gammel</I> <li>Pol: <I>ona jest stara</I> <li>Ron: <I>ea este veche</I> <li>Rus: <I>она старая</I> <li>Spa: <I>ella es vieja</I> <li>Swe: <I>hon är gammal</I> <li>Urd: <I>وہ بوڑھی ہے</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>mkCl</CODE></TD>
-<TD><A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A> <CODE>-&gt;</CODE> <A HREF="#A" TITLE="A - one-place adjective">A</A> <CODE>-&gt;</CODE> <A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A> <CODE>-&gt;</CODE> <A HREF="#Cl" TITLE="Cl - declarative clause, with all tenses">Cl</A></TD>
-<TD><div class=reveal> <I>she is older than he</I> <div class=popup> <ul> <li>API: <CODE>mkCl she_NP old_A he_NP</CODE> <li>Bul: <I>тя е по - стара от него</I> <li>Cat: <I>ella és més vell que ell</I> <li>Dan: <I>hun er ældre end han</I> <li>Dut: <I>ze is ouder dan hij</I> <li>Eng: <I>she is older than he</I> <li>Fin: <I>hän on vanhempi kuin hän</I> <li>Fre: <I>elle est plus vieille que lui</I> <li>Ger: <I>sie ist älter als er</I> <li>Ita: <I>lei è più vecchia di lui</I> <li>Nor: <I>hun er eldre enn han</I> <li>Pol: <I>ona jest starsza niż on</I> <li>Ron: <I>ea este mai veche decât el</I> <li>Rus: <I>она старше него</I> <li>Spa: <I>ella es más vieja que él</I> <li>Swe: <I>hon är äldre än han</I> <li>Urd: <I>وہ اس سے بوڑھی ہے</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>mkCl</CODE></TD>
-<TD><A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A> <CODE>-&gt;</CODE> <A HREF="#A2" TITLE="A2 - two-place adjective">A2</A> <CODE>-&gt;</CODE> <A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A> <CODE>-&gt;</CODE> <A HREF="#Cl" TITLE="Cl - declarative clause, with all tenses">Cl</A></TD>
-<TD><div class=reveal> <I>she is married to him</I> <div class=popup> <ul> <li>API: <CODE>mkCl she_NP married_A2 he_NP</CODE> <li>Bul: <I>тя е женена за него</I> <li>Cat: <I>ella és casata a ell</I> <li>Dan: <I>hun er gift med ham</I> <li>Dut: <I>ze is getrouwd met hem</I> <li>Eng: <I>she is married to him</I> <li>Fin: <I>hän on avioitunut hänen kanssa</I> <li>Fre: <I>elle est mariée à lui</I> <li>Ger: <I>sie ist verheiratet mit ihm</I> <li>Ita: <I>lei è sposata con lui</I> <li>Nor: <I>hun er gift med ham</I> <li>Pol: <I>ona jest zaślubiona jemu</I> <li>Ron: <I>ea este căsătorită cu el</I> <li>Rus: <I>она замужем за им</I> <li>Spa: <I>ella es casada a él</I> <li>Swe: <I>hon är gift med honom</I> <li>Urd: <I>وہ اس سے [شادی كرنa] ہے</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>mkCl</CODE></TD>
-<TD><A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A> <CODE>-&gt;</CODE> <A HREF="#AP" TITLE="AP - adjectival phrase">AP</A> <CODE>-&gt;</CODE> <A HREF="#Cl" TITLE="Cl - declarative clause, with all tenses">Cl</A></TD>
-<TD><div class=reveal> <I>she is very old</I> <div class=popup> <ul> <li>API: <CODE>mkCl she_NP (mkAP very_AdA old_A)</CODE> <li>Bul: <I>тя е много стара</I> <li>Cat: <I>ella és molt vell</I> <li>Dan: <I>hun er meget gammel</I> <li>Dut: <I>ze is erg oud</I> <li>Eng: <I>she is very old</I> <li>Fin: <I>hän on erittäin vanha</I> <li>Fre: <I>elle est très vieille</I> <li>Ger: <I>sie ist sehr alt</I> <li>Ita: <I>lei è molto vecchia</I> <li>Nor: <I>hun er mye gammel</I> <li>Pol: <I>ona jest bardzo stara</I> <li>Ron: <I>ea este foarte veche</I> <li>Rus: <I>она очень старая</I> <li>Spa: <I>ella es muy vieja</I> <li>Swe: <I>hon är mycket gammal</I> <li>Urd: <I>وہ بہت بوڑھی ہے</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>mkCl</CODE></TD>
-<TD><A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A> <CODE>-&gt;</CODE> <A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A> <CODE>-&gt;</CODE> <A HREF="#Cl" TITLE="Cl - declarative clause, with all tenses">Cl</A></TD>
-<TD><div class=reveal> <I>she is the woman</I> <div class=popup> <ul> <li>API: <CODE>mkCl she_NP (mkNP the_Det woman_N)</CODE> <li>Bul: <I>тя е жената</I> <li>Cat: <I>ella és la dona</I> <li>Dan: <I>hun er kvinden</I> <li>Dut: <I>ze is de vrouw</I> <li>Eng: <I>she is the woman</I> <li>Fin: <I>hän on nainen</I> <li>Fre: <I>elle est la femme</I> <li>Ger: <I>sie ist die Frau</I> <li>Ita: <I>lei è la donna</I> <li>Nor: <I>hun er kvinna</I> <li>Pol: <I>ona jest kobietą</I> <li>Ron: <I>ea este femeia</I> <li>Rus: <I>она женщина</I> <li>Spa: <I>ella es la mujer</I> <li>Swe: <I>hon är kvinnan</I> <li>Urd: <I>وہ عورت ہے</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>mkCl</CODE></TD>
-<TD><A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A> <CODE>-&gt;</CODE> <A HREF="#Cl" TITLE="Cl - declarative clause, with all tenses">Cl</A></TD>
-<TD><div class=reveal> <I>she is a woman</I> <div class=popup> <ul> <li>API: <CODE>mkCl she_NP woman_N</CODE> <li>Bul: <I>тя е жена</I> <li>Cat: <I>ella és dona</I> <li>Dan: <I>hun er en kvinde</I> <li>Dut: <I>ze is vrouw</I> <li>Eng: <I>she is a woman</I> <li>Fin: <I>hän on nainen</I> <li>Fre: <I>elle est femme</I> <li>Ger: <I>sie ist eine Frau</I> <li>Ita: <I>lei è donna</I> <li>Nor: <I>hun er ei kvinne</I> <li>Pol: <I>ona jest kobieta</I> <li>Ron: <I>ea este femeie</I> <li>Rus: <I>она женщина</I> <li>Spa: <I>ella es mujer</I> <li>Swe: <I>hon är en kvinna</I> <li>Urd: <I>وہ عورت ہے</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>mkCl</CODE></TD>
-<TD><A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A> <CODE>-&gt;</CODE> <A HREF="#CN" TITLE="CN - common noun (without determiner)">CN</A> <CODE>-&gt;</CODE> <A HREF="#Cl" TITLE="Cl - declarative clause, with all tenses">Cl</A></TD>
-<TD><div class=reveal> <I>she is an old woman</I> <div class=popup> <ul> <li>API: <CODE>mkCl she_NP (mkCN old_A woman_N)</CODE> <li>Bul: <I>тя е стара жена</I> <li>Cat: <I>ella és dona vell</I> <li>Dan: <I>hun er en gammel kvinde</I> <li>Dut: <I>ze is oude vrouw</I> <li>Eng: <I>she is an old woman</I> <li>Fin: <I>hän on vanha nainen</I> <li>Fre: <I>elle est vieille femme</I> <li>Ger: <I>sie ist eine alte Frau</I> <li>Ita: <I>lei è vecchia donna</I> <li>Nor: <I>hun er ei gammel kvinne</I> <li>Pol: <I>ona jest stara kobieta</I> <li>Ron: <I>ea este femeie veche</I> <li>Rus: <I>она старая женщина</I> <li>Spa: <I>ella es vieja mujer</I> <li>Swe: <I>hon är en gammal kvinna</I> <li>Urd: <I>وہ بوڑھی عورت ہے</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>mkCl</CODE></TD>
-<TD><A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A> <CODE>-&gt;</CODE> <A HREF="#Adv" TITLE="Adv - verb-phrase-modifying adverb">Adv</A> <CODE>-&gt;</CODE> <A HREF="#Cl" TITLE="Cl - declarative clause, with all tenses">Cl</A></TD>
-<TD><div class=reveal> <I>she is here</I> <div class=popup> <ul> <li>API: <CODE>mkCl she_NP here_Adv</CODE> <li>Bul: <I>тя е тук</I> <li>Cat: <I>ella és aquí</I> <li>Dan: <I>hun er her</I> <li>Dut: <I>ze is hier</I> <li>Eng: <I>she is here</I> <li>Fin: <I>hän on täällä</I> <li>Fre: <I>elle est ici</I> <li>Ger: <I>sie ist hier</I> <li>Ita: <I>lei è quà</I> <li>Nor: <I>hun er her</I> <li>Pol: <I>ona jest tutaj</I> <li>Ron: <I>ea este aici</I> <li>Rus: <I>она здесь</I> <li>Spa: <I>ella es aquí</I> <li>Swe: <I>hon är här</I> <li>Urd: <I>وہ یہاں ہے</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>mkCl</CODE></TD>
-<TD><A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A> <CODE>-&gt;</CODE> <A HREF="#VP" TITLE="VP - verb phrase">VP</A> <CODE>-&gt;</CODE> <A HREF="#Cl" TITLE="Cl - declarative clause, with all tenses">Cl</A></TD>
-<TD><div class=reveal> <I>she always sleeps</I> <div class=popup> <ul> <li>API: <CODE>mkCl she_NP (mkVP always_AdV (mkVP sleep_V))</CODE> <li>Bul: <I>тя винаги спи</I> <li>Cat: <I>ella dorm sempre</I> <li>Dan: <I>hun sover altid</I> <li>Dut: <I>ze slaapt altijd</I> <li>Eng: <I>she always sleeps</I> <li>Fin: <I>hän nukkuu aina</I> <li>Fre: <I>elle dort toujours</I> <li>Ger: <I>sie schläft immer</I> <li>Ita: <I>lei dorme sempre</I> <li>Nor: <I>hun sover altid</I> <li>Pol: <I>ona zawsze śpi</I> <li>Ron: <I>ea doarme mereu</I> <li>Rus: <I>она спдит всегда</I> <li>Spa: <I>ella duerme siempre</I> <li>Swe: <I>hon sover alltid</I> <li>Urd: <I>وہ ہمیشہ سوتی ہے</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>mkCl</CODE></TD>
-<TD><A HREF="#N" TITLE="N - common noun">N</A> <CODE>-&gt;</CODE> <A HREF="#Cl" TITLE="Cl - declarative clause, with all tenses">Cl</A></TD>
-<TD><div class=reveal> <I>there is a house</I> <div class=popup> <ul> <li>API: <CODE>mkCl house_N</CODE> <li>Bul: <I>има къща</I> <li>Cat: <I>hi ha una casa</I> <li>Dan: <I>det findes et hus</I> <li>Dut: <I>er is een huis</I> <li>Eng: <I>there is a house</I> <li>Fin: <I>on olemassa talo</I> <li>Fre: <I>il y a une maison</I> <li>Ger: <I>es gibt ein Haus</I> <li>Ita: <I>c' è una casa</I> <li>Nor: <I>det finnes et hus</I> <li>Pol: <I>jest dom</I> <li>Ron: <I>există o casă</I> <li>Rus: <I>существует дом</I> <li>Spa: <I>hay una casa</I> <li>Swe: <I>det finns ett hus</I> <li>Urd: <I>وہاں گھر ہے</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>mkCl</CODE></TD>
-<TD><A HREF="#CN" TITLE="CN - common noun (without determiner)">CN</A> <CODE>-&gt;</CODE> <A HREF="#Cl" TITLE="Cl - declarative clause, with all tenses">Cl</A></TD>
-<TD><I>there is an old house</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkCl</CODE></TD>
-<TD><A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A> <CODE>-&gt;</CODE> <A HREF="#Cl" TITLE="Cl - declarative clause, with all tenses">Cl</A></TD>
-<TD><div class=reveal> <I>there are many houses</I> <div class=popup> <ul> <li>API: <CODE>mkCl (mkNP many_Det house_N)</CODE> <li>Bul: <I>има много къщи</I> <li>Cat: <I>hi ha moltes cases</I> <li>Dan: <I>det findes mange huse</I> <li>Dut: <I>er zijn veel huizen</I> <li>Eng: <I>there are many houses</I> <li>Fin: <I>on olemassa moni talo</I> <li>Fre: <I>il y a plusieurs maisons</I> <li>Ger: <I>es gibt viele Häuser</I> <li>Ita: <I>ci sono molte case</I> <li>Nor: <I>det finnes mange hus</I> <li>Pol: <I>jest wiele domów</I> <li>Ron: <I>există multe case</I> <li>Rus: <I>существует много дома</I> <li>Spa: <I>hay muchas casas</I> <li>Swe: <I>det finns många hus</I> <li>Urd: <I>وہاں بہت زیادہ گھر ہیں</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>mkCl</CODE></TD>
-<TD><A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A> <CODE>-&gt;</CODE> <A HREF="#RS" TITLE="RS - relative">RS</A> <CODE>-&gt;</CODE> <A HREF="#Cl" TITLE="Cl - declarative clause, with all tenses">Cl</A></TD>
-<TD><div class=reveal> <I>it is she who sleeps</I> <div class=popup> <ul> <li>API: <CODE>mkCl she_NP (mkRS (mkRCl which_RP (mkVP sleep_V)))</CODE> <li>Bul: <I>тя е тaзи която спи</I> <li>Cat: <I>és ella que dorm</I> <li>Dan: <I>det er hun som sover</I> <li>Dut: <I>'t is ze die slaapt</I> <li>Eng: <I>it is she who sleeps</I> <li>Fin: <I>se on hän joka nukkuu</I> <li>Fre: <I>c' est elle qui dort</I> <li>Ger: <I>es ist sie die schläft</I> <li>Ita: <I>è lei che dorme</I> <li>Nor: <I>det er hun som sover</I> <li>Pol: <I>to ona , która śpi</I> <li>Ron: <I>este ea care doarme</I> <li>Rus: <I>это она , которая спдит</I> <li>Spa: <I>es ella que duerme</I> <li>Swe: <I>det är hon som sover</I> <li>Urd: <I>وہ ہے جو سوتی ہے</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>mkCl</CODE></TD>
-<TD><A HREF="#Adv" TITLE="Adv - verb-phrase-modifying adverb">Adv</A> <CODE>-&gt;</CODE> <A HREF="#S" TITLE="S - declarative sentence">S</A> <CODE>-&gt;</CODE> <A HREF="#Cl" TITLE="Cl - declarative clause, with all tenses">Cl</A></TD>
-<TD><div class=reveal> <I>it is here that she sleeps</I> <div class=popup> <ul> <li>API: <CODE>mkCl here_Adv (mkS (mkCl she_NP sleep_V))</CODE> <li>Bul: <I>тук тя спи</I> <li>Cat: <I>és aquí que ella dorm</I> <li>Dan: <I>det er her hun sover</I> <li>Dut: <I>'t is hier dat ze slaapt</I> <li>Eng: <I>it is here that she sleeps</I> <li>Fin: <I>se on täällä kun hän nukkuu</I> <li>Fre: <I>c' est ici qu' elle dort</I> <li>Ger: <I>es ist hier daß sie schläft</I> <li>Ita: <I>è quà che lei dorme</I> <li>Nor: <I>det er her hun sover</I> <li>Pol: <I>tutaj ona śpi</I> <li>Ron: <I>este aici cã ea doarme</I> <li>Rus: <I>это здесь , она спдит</I> <li>Spa: <I>es aquí que ella duerme</I> <li>Swe: <I>det är här hon sover</I> <li>Urd: <I>یہاں وہ سوتی ہے</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>mkCl</CODE></TD>
-<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#Cl" TITLE="Cl - declarative clause, with all tenses">Cl</A></TD>
-<TD><div class=reveal> <I>it rains</I> <div class=popup> <ul> <li>API: <CODE>mkCl rain_V0</CODE> <li>Bul: <I>вали</I> <li>Cat: <I>plou</I> <li>Dan: <I>det regner</I> <li>Dut: <I>'t regeent</I> <li>Eng: <I>it rains</I> <li>Fin: <I>sataa</I> <li>Fre: <I>il pleut</I> <li>Ger: <I>es regnet</I> <li>Ita: <I>piove</I> <li>Nor: <I>det regner</I> <li>Pol: <I>pada</I> <li>Ron: <I>plouă</I> <li>Rus: <I>идет дождь</I> <li>Spa: <I>llueve</I> <li>Swe: <I>det regnar</I> <li>Urd: <I>بارش ہوتا ہے</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>mkCl</CODE></TD>
-<TD><A HREF="#VP" TITLE="VP - verb phrase">VP</A> <CODE>-&gt;</CODE> <A HREF="#Cl" TITLE="Cl - declarative clause, with all tenses">Cl</A></TD>
-<TD><div class=reveal> <I>it is raining</I> <div class=popup> <ul> <li>API: <CODE>mkCl (progressiveVP (mkVP rain_V0))</CODE> <li>Bul: <I>вали</I> <li>Cat: <I>està plovent</I> <li>Dan: <I>det er ved å regne</I> <li>Dut: <I>'t is aan het regenen</I> <li>Eng: <I>it is raining</I> <li>Fin: <I>on satamassa</I> <li>Fre: <I>il est en train de pleuvoir</I> <li>Ger: <I>es regnet eben</I> <li>Ita: <I>sta piovendo</I> <li>Nor: <I>det er ved å regne</I> <li>Pol: <I>pada</I> <li>Ron: <I>plouă</I> <li>Rus: <I>идет дождь</I> <li>Spa: <I>está lloviendo</I> <li>Swe: <I>det håller på att regna</I> <li>Urd: <I>بارش ہو رہا ہے</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>mkCl</CODE></TD>
-<TD><A HREF="#SC" TITLE="SC - embedded sentence or question">SC</A> <CODE>-&gt;</CODE> <A HREF="#VP" TITLE="VP - verb phrase">VP</A> <CODE>-&gt;</CODE> <A HREF="#Cl" TITLE="Cl - declarative clause, with all tenses">Cl</A></TD>
-<TD><div class=reveal> <I>that she sleeps is good</I> <div class=popup> <ul> <li>API: <CODE>mkCl (mkSC (mkS (mkCl she_NP sleep_V))) (mkVP good_A)</CODE> <li>Bul: <I>, че тя спи е добър</I> <li>Cat: <I>que ella dorm és bo</I> <li>Dan: <I>at hun sover er godt</I> <li>Dut: <I>dat ze slaapt is goed</I> <li>Eng: <I>that she sleeps is good</I> <li>Fin: <I>että hän nukkuu on hyvä</I> <li>Fre: <I>qu' elle dort est bon</I> <li>Ger: <I>daß sie schläft ist gut</I> <li>Ita: <I>che lei dorme è buono</I> <li>Nor: <I>at hun sover er godt</I> <li>Pol: <I>, że ona śpi jest dobre</I> <li>Ron: <I>cã ea doarme este bun</I> <li>Rus: <I>что она спдит хорошее</I> <li>Spa: <I>que ella duerme es bueno</I> <li>Swe: <I>att hon sover är gott</I> <li>Urd: <I>كہ وہ سوتی ہے اچھا ہے</I> </ul> </div> </div></TD>
-</TR>
-</TABLE>
-
-<A NAME="ClSlash"></A>
-<H2>ClSlash</H2>
-<TABLE BORDER="1" CELLPADDING="4">
-<TR>
-<TH>Function</TH>
-<TH>Type</TH>
-<TH COLSPAN="2">Example</TH>
-</TR>
-<TR>
-<TD><CODE>mkClSlash</CODE></TD>
-<TD><A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A> <CODE>-&gt;</CODE> <A HREF="#VPSlash" TITLE="VPSlash - verb phrase missing complement">VPSlash</A> <CODE>-&gt;</CODE> <A HREF="#ClSlash">ClSlash</A></TD>
-<TD><div class=reveal> <I>whom does she see</I> <div class=popup> <ul> <li>API: <CODE>mkQCl who_IP (mkClSlash she_NP (mkVPSlash see_V2))</CODE> <li>Bul: <I>кого вижда тя</I> <li>Cat: <I>qui veu ella</I> <li>Dan: <I>hvem ser hun</I> <li>Dut: <I>wie zit ze</I> <li>Eng: <I>whom does she see</I> <li>Fin: <I>kenet hän näkee</I> <li>Fre: <I>qui voit elle</I> <li>Ger: <I>wen sieht sie</I> <li>Ita: <I>chi vede lei</I> <li>Nor: <I>hvem ser hun</I> <li>Pol: <I>kogo widzi ona</I> <li>Ron: <I>pe cine vede ea</I> <li>Rus: <I>кого она видит</I> <li>Spa: <I>quién ve ella</I> <li>Swe: <I>vem ser hon</I> <li>Urd: <I>كون وہ دیكھتی ہے</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>mkClSlash</CODE></TD>
-<TD><A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A> <CODE>-&gt;</CODE> <A HREF="#V2" TITLE="V2 - two-place verb">V2</A> <CODE>-&gt;</CODE> <A HREF="#ClSlash">ClSlash</A></TD>
-<TD><div class=reveal> <I>whom does she see</I> <div class=popup> <ul> <li>API: <CODE>mkQCl who_IP (mkClSlash she_NP see_V2)</CODE> <li>Bul: <I>кого вижда тя</I> <li>Cat: <I>qui veu ella</I> <li>Dan: <I>hvem ser hun</I> <li>Dut: <I>wie zit ze</I> <li>Eng: <I>whom does she see</I> <li>Fin: <I>kenet hän näkee</I> <li>Fre: <I>qui voit elle</I> <li>Ger: <I>wen sieht sie</I> <li>Ita: <I>chi vede lei</I> <li>Nor: <I>hvem ser hun</I> <li>Pol: <I>kogo widzi ona</I> <li>Ron: <I>pe cine vede ea</I> <li>Rus: <I>кого она видит</I> <li>Spa: <I>quién ve ella</I> <li>Swe: <I>vem ser hon</I> <li>Urd: <I>كون وہ دیكھتی ہے</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>mkClSlash</CODE></TD>
-<TD><A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A> <CODE>-&gt;</CODE> <A HREF="#VV" TITLE="VV - verb-phrase-complement verb">VV</A> <CODE>-&gt;</CODE> <A HREF="#V2" TITLE="V2 - two-place verb">V2</A> <CODE>-&gt;</CODE> <A HREF="#ClSlash">ClSlash</A></TD>
-<TD><div class=reveal> <I>whom does she want to see</I> <div class=popup> <ul> <li>API: <CODE>mkQCl who_IP (mkClSlash she_NP want_VV see_V2)</CODE> <li>Bul: <I>кого иска да види тя</I> <li>Cat: <I>qui vol ella veure</I> <li>Dan: <I>hvem vil hun se</I> <li>Dut: <I>wie wil ze zien</I> <li>Eng: <I>whom does she want to see</I> <li>Fin: <I>kenet hän tahtoo nähdä</I> <li>Fre: <I>qui veut elle voir</I> <li>Ger: <I>wen will sie sehen</I> <li>Ita: <I>chi vuole lei vedere</I> <li>Nor: <I>hvem vil hun se</I> <li>Pol: <I>kogo ona chce widzieć</I> <li>Ron: <I>pe cine vrea ea sã vadă</I> <li>Rus: <I>кого она хоччет видеть</I> <li>Spa: <I>quién quiere ella ver</I> <li>Swe: <I>vem vill hon se</I> <li>Urd: <I>كون وہ دیكھنا چاہتی ہے</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>mkClSlash</CODE></TD>
-<TD><A HREF="#Cl" TITLE="Cl - declarative clause, with all tenses">Cl</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#ClSlash">ClSlash</A></TD>
-<TD><div class=reveal> <I>with whom does she sleep</I> <div class=popup> <ul> <li>API: <CODE>mkQCl who_IP (mkClSlash (mkCl she_NP sleep_V) with_Prep)</CODE> <li>Bul: <I>с кого спи тя</I> <li>Cat: <I>amb qui dorm ella</I> <li>Dan: <I>med hvem sover hun</I> <li>Dut: <I>met wie slaapt ze</I> <li>Eng: <I>with whom does she sleep</I> <li>Fin: <I>kenen kanssa hän nukkuu</I> <li>Fre: <I>avec qui dort elle</I> <li>Ger: <I>mit wem schläft sie</I> <li>Ita: <I>con chi dorme lei</I> <li>Nor: <I>med hvem sover hun</I> <li>Pol: <I>z kim ona śpi</I> <li>Ron: <I>cu cine doarme ea</I> <li>Rus: <I>с кем она спдит</I> <li>Spa: <I>con quién duerme ella</I> <li>Swe: <I>med vem sover hon</I> <li>Urd: <I>كون وہ سوتی ہے</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>mkClSlash</CODE></TD>
-<TD><A HREF="#ClSlash">ClSlash</A> <CODE>-&gt;</CODE> <A HREF="#Adv" TITLE="Adv - verb-phrase-modifying adverb">Adv</A> <CODE>-&gt;</CODE> <A HREF="#ClSlash">ClSlash</A></TD>
-<TD><div class=reveal> <I>whom does she see today</I> <div class=popup> <ul> <li>API: <CODE>mkQCl who_IP (mkClSlash (mkClSlash she_NP see_V2) today_Adv)</CODE> <li>Bul: <I>кого вижда тя днес</I> <li>Cat: <I>qui veu ella avui</I> <li>Dan: <I>hvem ser hun idag</I> <li>Dut: <I>wie zit ze vandaag</I> <li>Eng: <I>whom does she see today</I> <li>Fin: <I>kenet hän näkee tänään</I> <li>Fre: <I>qui voit elle aujourd'hui</I> <li>Ger: <I>wen sieht sie heute</I> <li>Ita: <I>chi vede lei oggi</I> <li>Nor: <I>hvem ser hun idag</I> <li>Pol: <I>kogo dziś widzi ona</I> <li>Ron: <I>pe cine vede ea astăzi</I> <li>Rus: <I>*</I> <li>Spa: <I>quién ve ella hoy</I> <li>Swe: <I>vem ser hon idag</I> <li>Urd: <I>كون آج وہ دیكھتی ہے</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>mkClSlash</CODE></TD>
-<TD><A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A> <CODE>-&gt;</CODE> <A HREF="#VS" TITLE="VS - sentence-complement verb">VS</A> <CODE>-&gt;</CODE> <A HREF="#SSlash">SSlash</A> <CODE>-&gt;</CODE> <A HREF="#ClSlash">ClSlash</A></TD>
-<TD><div class=reveal> <I>whom does she know that we hadn't seen</I> <div class=popup> <ul> <li>API: <CODE>mkQCl who_IP (mkClSlash she_NP know_VS (mkSSlash (mkTemp pastTense anteriorAnt) negativePol (mkClSlash we_NP (mkVPSlash see_V2))))</CODE> <li>Bul: <I>кого знае че ние не бяхме видeли тя</I> <li>Cat: <I>qui sap ella que nosaltres no havíem vist</I> <li>Dan: <I>hvem ved hun at vi ikke havde set</I> <li>Dut: <I>wie weet ze dat we niet gezien hadden</I> <li>Eng: <I>whom does she know that we hadn't seen</I> <li>Fin: <I>kenet hän tietää että me emme olleet nähneet</I> <li>Fre: <I>qui sait elle que nous n' avions pas vu</I> <li>Ger: <I>wen weiß sie daß wir nicht gesehen hatten</I> <li>Ita: <I>chi sa lei che noi non avevamo visto</I> <li>Nor: <I>hvem vet hun at vi ikke hadde sett</I> <li>Pol: <I>kogo ona wie , że nie zobaczyliśmy my</I> <li>Ron: <I>pe cine ştie ea cã noi nu văzuserăm</I> <li>Rus: <I>*</I> <li>Spa: <I>quién sabe ella que nosotros no habíamos visto</I> <li>Swe: <I>vem vet hon att vi inte hade sett</I> <li>Urd: <I>كون وہ جانتی ہے كہ ہم نہیں دیكھ چكے تh-ے</I> </ul> </div> </div></TD>
-</TR>
-</TABLE>
-
-<A NAME="Comp"></A>
-<H2>Comp - complement of copula, such as AP</H2>
-<TABLE BORDER="1" CELLPADDING="4">
-<TR>
-<TH>Function</TH>
-<TH>Type</TH>
-<TH COLSPAN="2">Example</TH>
-</TR>
-<TR>
-<TD><CODE>mkComp</CODE></TD>
-<TD><A HREF="#AP" TITLE="AP - adjectival phrase">AP</A> <CODE>-&gt;</CODE> <A HREF="#Comp" TITLE="Comp - complement of copula, such as AP">Comp</A></TD>
-<TD><div class=reveal> <I>old</I> <div class=popup> <ul> <li>API: <CODE>mkComp (mkAP old_A)</CODE> <li>Bul: <I>стар</I> <li>Cat: <I>vell</I> <li>Dan: <I>gammel</I> <li>Dut: <I>oud</I> <li>Eng: <I>old</I> <li>Fin: <I>vanha</I> <li>Fre: <I>vieux</I> <li>Ger: <I>alt</I> <li>Ita: <I>vecchio</I> <li>Nor: <I>gammel</I> <li>Pol: <I>stary</I> <li>Ron: <I>vechi</I> <li>Rus: <I>старый</I> <li>Spa: <I>viejo</I> <li>Swe: <I>gammal</I> <li>Urd: <I>بوڑھا</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>mkComp</CODE></TD>
-<TD><A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A> <CODE>-&gt;</CODE> <A HREF="#Comp" TITLE="Comp - complement of copula, such as AP">Comp</A></TD>
-<TD><div class=reveal> <I>this man</I> <div class=popup> <ul> <li>API: <CODE>mkComp (mkNP this_Det man_N)</CODE> <li>Bul: <I>този мъж</I> <li>Cat: <I>aquest home</I> <li>Dan: <I>denne mand</I> <li>Dut: <I>deze man</I> <li>Eng: <I>this man</I> <li>Fin: <I>tämä mies</I> <li>Fre: <I>cet homme</I> <li>Ger: <I>dieser Mann</I> <li>Ita: <I>questo uomo</I> <li>Nor: <I>denne mannen</I> <li>Pol: <I>tym mężczyzną</I> <li>Ron: <I>acest om</I> <li>Rus: <I>этот человек</I> <li>Spa: <I>este hombre</I> <li>Swe: <I>den här mannen</I> <li>Urd: <I>یہ آدمی</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>mkComp</CODE></TD>
-<TD><A HREF="#Adv" TITLE="Adv - verb-phrase-modifying adverb">Adv</A> <CODE>-&gt;</CODE> <A HREF="#Comp" TITLE="Comp - complement of copula, such as AP">Comp</A></TD>
-<TD><div class=reveal> <I>here</I> <div class=popup> <ul> <li>API: <CODE>mkComp here_Adv</CODE> <li>Bul: <I>тук</I> <li>Cat: <I>aquí</I> <li>Dan: <I>her</I> <li>Dut: <I>hier</I> <li>Eng: <I>here</I> <li>Fin: <I>täällä</I> <li>Fre: <I>ici</I> <li>Ger: <I>hier</I> <li>Ita: <I>quà</I> <li>Nor: <I>her</I> <li>Pol: <I>tutaj</I> <li>Ron: <I>aici</I> <li>Rus: <I>здесь</I> <li>Spa: <I>aquí</I> <li>Swe: <I>här</I> <li>Urd: <I>یہاں</I> </ul> </div> </div></TD>
-</TR>
-</TABLE>
-
-<A NAME="Conj"></A>
-<H2>Conj - conjunction</H2>
-<TABLE BORDER="1" CELLPADDING="4">
-<TR>
-<TH>Function</TH>
-<TH>Type</TH>
-<TH COLSPAN="2">Example</TH>
-</TR>
-<TR>
-<TD><CODE>and_Conj</CODE></TD>
-<TD><A HREF="#Conj" TITLE="Conj - conjunction">Conj</A></TD>
-<TD><div class=reveal> <I>here and now</I> <div class=popup> <ul> <li>API: <CODE>mkAdv and_Conj here_Adv now_Adv</CODE> <li>Bul: <I>тук и сега</I> <li>Cat: <I>aquí i ara</I> <li>Dan: <I>her og nu</I> <li>Dut: <I>hier en nu</I> <li>Eng: <I>here and now</I> <li>Fin: <I>täällä ja nyt</I> <li>Fre: <I>ici et maintenant</I> <li>Ger: <I>hier und jetzt</I> <li>Ita: <I>quà e adesso</I> <li>Nor: <I>her og nå</I> <li>Pol: <I>tutaj i teraz</I> <li>Ron: <I>aici şi acum</I> <li>Rus: <I>здесь и сейчас</I> <li>Spa: <I>aquí y ahora</I> <li>Swe: <I>här och nu</I> <li>Urd: <I>یہاں اور اب</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>both7and_DConj</CODE></TD>
-<TD><A HREF="#Conj" TITLE="Conj - conjunction">Conj</A></TD>
-<TD><div class=reveal> <I>both here and there</I> <div class=popup> <ul> <li>API: <CODE>mkAdv both7and_DConj here_Adv there_Adv</CODE> <li>Bul: <I>и тук и там</I> <li>Cat: <I>i aquí i allà</I> <li>Dan: <I>både her og der</I> <li>Dut: <I>zowel hier als daar</I> <li>Eng: <I>both here and there</I> <li>Fin: <I>sekä täällä että siellä</I> <li>Fre: <I>et ici et là</I> <li>Ger: <I>sowohl hier als auch da</I> <li>Ita: <I>e quà e là</I> <li>Nor: <I>både her og der</I> <li>Pol: <I>zarówno tutaj jak i tam</I> <li>Ron: <I>şi aici şi acolo</I> <li>Rus: <I>как здесь , так и там</I> <li>Spa: <I>y aquí y allí</I> <li>Swe: <I>både här och där</I> <li>Urd: <I>دونوں یہاں اور وہاں</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>either7or_DConj</CODE></TD>
-<TD><A HREF="#Conj" TITLE="Conj - conjunction">Conj</A></TD>
-<TD><div class=reveal> <I>either here or there</I> <div class=popup> <ul> <li>API: <CODE>mkAdv either7or_DConj here_Adv there_Adv</CODE> <li>Bul: <I>или тук или там</I> <li>Cat: <I>o aquí o allà</I> <li>Dan: <I>enten her eller der</I> <li>Dut: <I>ofwel hier of daar</I> <li>Eng: <I>either here or there</I> <li>Fin: <I>joko täällä tai siellä</I> <li>Fre: <I>ou ici ou là</I> <li>Ger: <I>entweder hier oder da</I> <li>Ita: <I>o quà o là</I> <li>Nor: <I>enten her eller der</I> <li>Pol: <I>albo tutaj albo tam</I> <li>Ron: <I>sau aici sau acolo</I> <li>Rus: <I>либо здесь , либо там</I> <li>Spa: <I>o aquí o allí</I> <li>Swe: <I>antingen här eller där</I> <li>Urd: <I>كوی ایك یہاں یا وہاں</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>if_then_Conj</CODE></TD>
-<TD><A HREF="#Conj" TITLE="Conj - conjunction">Conj</A></TD>
-<TD><div class=reveal> <I>if here then there</I> <div class=popup> <ul> <li>API: <CODE>mkAdv if_then_Conj here_Adv there_Adv</CODE> <li>Bul: <I>*</I> <li>Cat: <I>si aquí llavors allà</I> <li>Dan: <I>*</I> <li>Dut: <I>als hier dan daar</I> <li>Eng: <I>if here then there</I> <li>Fin: <I>jos täällä niin siellä</I> <li>Fre: <I>si ici alors là</I> <li>Ger: <I>wenn hier dann da</I> <li>Ita: <I>si quà allora là</I> <li>Nor: <I>*</I> <li>Pol: <I>jeżeli tutaj , to tam</I> <li>Ron: <I>dacă aici atunci acolo</I> <li>Rus: <I>*</I> <li>Spa: <I>*</I> <li>Swe: <I>om här så där</I> <li>Urd: <I>اگر یہاں تو وہاں</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>or_Conj</CODE></TD>
-<TD><A HREF="#Conj" TITLE="Conj - conjunction">Conj</A></TD>
-<TD><div class=reveal> <I>here or there</I> <div class=popup> <ul> <li>API: <CODE>mkAdv or_Conj here_Adv there_Adv</CODE> <li>Bul: <I>тук или там</I> <li>Cat: <I>aquí o allà</I> <li>Dan: <I>her eller der</I> <li>Dut: <I>hier of daar</I> <li>Eng: <I>here or there</I> <li>Fin: <I>täällä tai siellä</I> <li>Fre: <I>ici ou là</I> <li>Ger: <I>hier oder da</I> <li>Ita: <I>quà o là</I> <li>Nor: <I>her eller der</I> <li>Pol: <I>tutaj lub tam</I> <li>Ron: <I>aici sau acolo</I> <li>Rus: <I>здесь или там</I> <li>Spa: <I>aquí o allí</I> <li>Swe: <I>här eller där</I> <li>Urd: <I>یہاں یا وہاں</I> </ul> </div> </div></TD>
-</TR>
-</TABLE>
-
-<A NAME="Det"></A>
-<H2>Det - determiner phrase</H2>
-<TABLE BORDER="1" CELLPADDING="4">
-<TR>
-<TH>Function</TH>
-<TH>Type</TH>
-<TH COLSPAN="2">Example</TH>
-</TR>
-<TR>
-<TD><CODE>aPl_Det</CODE></TD>
-<TD><A HREF="#Det" TITLE="Det - determiner phrase">Det</A></TD>
-<TD><div class=reveal> <I>women</I> <div class=popup> <ul> <li>API: <CODE>mkNP aPl_Det woman_N</CODE> <li>Bul: <I>жени</I> <li>Cat: <I>''</I> <li>Dan: <I>kvinder</I> <li>Dut: <I>vrouwen</I> <li>Eng: <I>women</I> <li>Fin: <I>naisia</I> <li>Fre: <I>''</I> <li>Ger: <I>Frauen</I> <li>Ita: <I>''</I> <li>Nor: <I>kvinner</I> <li>Pol: <I>kobiet</I> <li>Ron: <I>''</I> <li>Rus: <I>женщины</I> <li>Spa: <I>''</I> <li>Swe: <I>kvinnor</I> <li>Urd: <I>عورتیں</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>aSg_Det</CODE></TD>
-<TD><A HREF="#Det" TITLE="Det - determiner phrase">Det</A></TD>
-<TD><div class=reveal> <I>a woman</I> <div class=popup> <ul> <li>API: <CODE>mkNP aSg_Det woman_N</CODE> <li>Bul: <I>жена</I> <li>Cat: <I>''</I> <li>Dan: <I>en kvinde</I> <li>Dut: <I>een vrouw</I> <li>Eng: <I>a woman</I> <li>Fin: <I>nainen</I> <li>Fre: <I>''</I> <li>Ger: <I>eine Frau</I> <li>Ita: <I>''</I> <li>Nor: <I>ei kvinne</I> <li>Pol: <I>kobiety</I> <li>Ron: <I>''</I> <li>Rus: <I>женщина</I> <li>Spa: <I>''</I> <li>Swe: <I>en kvinna</I> <li>Urd: <I>عورت</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>a_Det</CODE></TD>
-<TD><A HREF="#Det" TITLE="Det - determiner phrase">Det</A></TD>
-<TD><div class=reveal> <I>a house</I> <div class=popup> <ul> <li>API: <CODE>mkNP a_Det house_N</CODE> <li>Bul: <I>къща</I> <li>Cat: <I>''</I> <li>Dan: <I>et hus</I> <li>Dut: <I>een huis</I> <li>Eng: <I>a house</I> <li>Fin: <I>talo</I> <li>Fre: <I>''</I> <li>Ger: <I>ein Haus</I> <li>Ita: <I>''</I> <li>Nor: <I>et hus</I> <li>Pol: <I>domu</I> <li>Ron: <I>''</I> <li>Rus: <I>дом</I> <li>Spa: <I>''</I> <li>Swe: <I>ett hus</I> <li>Urd: <I>گھر</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>every_Det</CODE></TD>
-<TD><A HREF="#Det" TITLE="Det - determiner phrase">Det</A></TD>
-<TD><div class=reveal> <I>every</I> <div class=popup> <ul> <li>API: <CODE>every_Det</CODE> <li>Bul: <I>всеки</I> <li>Cat: <I>cada</I> <li>Dan: <I>hver</I> <li>Dut: <I>elke</I> <li>Eng: <I>every</I> <li>Fin: <I>Prelude.True</I> <li>Fre: <I>chaque</I> <li>Ger: <I>jeder</I> <li>Ita: <I>ogni</I> <li>Nor: <I>hver</I> <li>Pol: <I>każdy</I> <li>Ron: <I>orice</I> <li>Rus: <I>каждый</I> <li>Spa: <I>cada</I> <li>Swe: <I>varje</I> <li>Urd: <I>ہر</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>few_Det</CODE></TD>
-<TD><A HREF="#Det" TITLE="Det - determiner phrase">Det</A></TD>
-<TD><div class=reveal> <I>few</I> <div class=popup> <ul> <li>API: <CODE>few_Det</CODE> <li>Bul: <I>няколко</I> <li>Cat: <I>pocs</I> <li>Dan: <I>få</I> <li>Dut: <I>weinig</I> <li>Eng: <I>few</I> <li>Fin: <I>Prelude.True</I> <li>Fre: <I>peu pre {"de"; "d'" / strs {"a"; "à"; "â"; "e"; "é"; "è"; "ê¨";</I> <li>Ger: <I>wenige</I> <li>Ita: <I>pochi</I> <li>Nor: <I>få</I> <li>Pol: <I>parę</I> <li>Ron: <I>câţiva</I> <li>Rus: <I>немного</I> <li>Spa: <I>pocos</I> <li>Swe: <I>få</I> <li>Urd: <I>چند</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>many_Det</CODE></TD>
-<TD><A HREF="#Det" TITLE="Det - determiner phrase">Det</A></TD>
-<TD><div class=reveal> <I>many houses</I> <div class=popup> <ul> <li>API: <CODE>mkNP many_Det house_N</CODE> <li>Bul: <I>много къщи</I> <li>Cat: <I>''</I> <li>Dan: <I>mange huse</I> <li>Dut: <I>veel huizen</I> <li>Eng: <I>many houses</I> <li>Fin: <I>moni talo</I> <li>Fre: <I>''</I> <li>Ger: <I>viele Häuser</I> <li>Ita: <I>''</I> <li>Nor: <I>mange hus</I> <li>Pol: <I>wielu domów</I> <li>Ron: <I>''</I> <li>Rus: <I>много дома</I> <li>Spa: <I>''</I> <li>Swe: <I>många hus</I> <li>Urd: <I>بہت زیادہ گھر</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>mkDet</CODE></TD>
-<TD><A 'HREF="#Quant" TITLE="Quant - quantifier ('nucleus' of Det)"'>Quant</A> <CODE>-&gt;</CODE> <A HREF="#Det" TITLE="Det - determiner phrase">Det</A></TD>
-<TD><div class=reveal> <I>this</I> <div class=popup> <ul> <li>API: <CODE>mkDet this_Quant</CODE> <li>Bul: <I>този</I> <li>Cat: <I>aquest</I> <li>Dan: <I>denne</I> <li>Dut: <I>deze</I> <li>Eng: <I>this</I> <li>Fin: <I>Prelude.True</I> <li>Fre: <I>pre {"ce"; "cet" / strs {"a"; "à"; "â"; "e"; "é"; "è"; "ê¨"; "h";</I> <li>Ger: <I>dieser</I> <li>Ita: <I>questo</I> <li>Nor: <I>denne</I> <li>Pol: <I>ten</I> <li>Ron: <I>acest</I> <li>Rus: <I>этот</I> <li>Spa: <I>este</I> <li>Swe: <I>den här</I> <li>Urd: <I>یہ</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>mkDet</CODE></TD>
-<TD><A 'HREF="#Quant" TITLE="Quant - quantifier ('nucleus' of Det)"'>Quant</A> <CODE>-&gt;</CODE> <A HREF="#Card" TITLE="Card - cardinal number">Card</A> <CODE>-&gt;</CODE> <A HREF="#Det" TITLE="Det - determiner phrase">Det</A></TD>
-<TD><div class=reveal> <I>these five</I> <div class=popup> <ul> <li>API: <CODE>mkDet this_Quant (mkCard (mkNumeral n5_Unit))</CODE> <li>Bul: <I>тези петима</I> <li>Cat: <I>aquests cinc</I> <li>Dan: <I>disse fem</I> <li>Dut: <I>deze vijf</I> <li>Eng: <I>these five</I> <li>Fin: <I>Prelude.True</I> <li>Fre: <I>ces cinq</I> <li>Ger: <I>diese fünf</I> <li>Ita: <I>questi cinque</I> <li>Nor: <I>disse fem</I> <li>Pol: <I>tych pięć</I> <li>Ron: <I>aceşti cinci</I> <li>Rus: <I>этот пять</I> <li>Spa: <I>estos cinco</I> <li>Swe: <I>de här fem</I> <li>Urd: <I>یہ پانچ</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>mkDet</CODE></TD>
-<TD><A 'HREF="#Quant" TITLE="Quant - quantifier ('nucleus' of Det)"'>Quant</A> <CODE>-&gt;</CODE> <A HREF="#Ord" TITLE="Ord - ordinal number (used in Det)">Ord</A> <CODE>-&gt;</CODE> <A HREF="#Det" TITLE="Det - determiner phrase">Det</A></TD>
-<TD><div class=reveal> <I>the fifth</I> <div class=popup> <ul> <li>API: <CODE>mkDet the_Quant (mkOrd (mkNumeral n5_Unit))</CODE> <li>Bul: <I>петият</I> <li>Cat: <I>el quint</I> <li>Dan: <I>den femte</I> <li>Dut: <I>de vijfde</I> <li>Eng: <I>the fifth</I> <li>Fin: <I>Prelude.True</I> <li>Fre: <I>le cinquième</I> <li>Ger: <I>der fünfte</I> <li>Ita: <I>il quinto</I> <li>Nor: <I>den femte</I> <li>Pol: <I>piąty</I> <li>Ron: <I>al cincilea</I> <li>Rus: <I>// <li>Spa: //el quinto</I> <li>Swe: <I>den femte</I> <li>Urd: <I>پانچ واں</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>mkDet</CODE></TD>
-<TD><A 'HREF="#Quant" TITLE="Quant - quantifier ('nucleus' of Det)"'>Quant</A> <CODE>-&gt;</CODE> <A HREF="#Num" TITLE="Num - number determining element">Num</A> <CODE>-&gt;</CODE> <A HREF="#Ord" TITLE="Ord - ordinal number (used in Det)">Ord</A> <CODE>-&gt;</CODE> <A HREF="#Det" TITLE="Det - determiner phrase">Det</A></TD>
-<TD><div class=reveal> <I>the five best</I> <div class=popup> <ul> <li>API: <CODE>mkDet the_Quant (mkNum (mkNumeral n5_Unit)) (mkOrd good_A)</CODE> <li>Bul: <I>петимата най - добри</I> <li>Cat: <I>els cinc millors</I> <li>Dan: <I>de fem bedste</I> <li>Dut: <I>de vijf beste</I> <li>Eng: <I>the five best</I> <li>Fin: <I>Prelude.True</I> <li>Fre: <I>les cinq meilleurs</I> <li>Ger: <I>die fünf besten</I> <li>Ita: <I>i cinque migliori</I> <li>Nor: <I>de fem beste</I> <li>Pol: <I>pięć najlepszych</I> <li>Ron: <I>cei mai buni cinci</I> <li>Rus: <I>пять хороший</I> <li>Spa: <I>los cinco mejores</I> <li>Swe: <I>de fem bästa</I> <li>Urd: <I>پانچ سب سے اچھا</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>mkDet</CODE></TD>
-<TD><A 'HREF="#Quant" TITLE="Quant - quantifier ('nucleus' of Det)"'>Quant</A> <CODE>-&gt;</CODE> <A HREF="#Num" TITLE="Num - number determining element">Num</A> <CODE>-&gt;</CODE> <A HREF="#Det" TITLE="Det - determiner phrase">Det</A></TD>
-<TD><div class=reveal> <I>these</I> <div class=popup> <ul> <li>API: <CODE>mkDet this_Quant pluralNum</CODE> <li>Bul: <I>тези</I> <li>Cat: <I>aquests</I> <li>Dan: <I>disse</I> <li>Dut: <I>deze</I> <li>Eng: <I>these</I> <li>Fin: <I>Prelude.True</I> <li>Fre: <I>ces</I> <li>Ger: <I>diese</I> <li>Ita: <I>questi</I> <li>Nor: <I>disse</I> <li>Pol: <I>te</I> <li>Ron: <I>aceşti</I> <li>Rus: <I>этот</I> <li>Spa: <I>estos</I> <li>Swe: <I>de här</I> <li>Urd: <I>یہ</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>mkDet</CODE></TD>
-<TD><A HREF="#Card" TITLE="Card - cardinal number">Card</A> <CODE>-&gt;</CODE> <A HREF="#Det" TITLE="Det - determiner phrase">Det</A></TD>
-<TD><div class=reveal> <I>five</I> <div class=popup> <ul> <li>API: <CODE>mkDet (mkCard (mkNumeral n5_Unit))</CODE> <li>Bul: <I>петима</I> <li>Cat: <I>cinc</I> <li>Dan: <I>fem</I> <li>Dut: <I>vijf</I> <li>Eng: <I>five</I> <li>Fin: <I>Prelude.False</I> <li>Fre: <I>cinq</I> <li>Ger: <I>fünf</I> <li>Ita: <I>cinque</I> <li>Nor: <I>fem</I> <li>Pol: <I>pięć</I> <li>Ron: <I>cinci</I> <li>Rus: <I>пять</I> <li>Spa: <I>cinco</I> <li>Swe: <I>fem</I> <li>Urd: <I>پانچ</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>mkDet</CODE></TD>
-<TD><A HREF="#Digits" TITLE="Digits - cardinal or ordinal in digits">Digits</A> <CODE>-&gt;</CODE> <A HREF="#Det" TITLE="Det - determiner phrase">Det</A></TD>
-<TD><I>51</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkDet</CODE></TD>
-<TD><A HREF="#Numeral" TITLE="Numeral - cardinal or ordinal in words">Numeral</A> <CODE>-&gt;</CODE> <A HREF="#Det" TITLE="Det - determiner phrase">Det</A></TD>
-<TD><I>five</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkDet</CODE></TD>
-<TD><A HREF="#Pron" TITLE="Pron - personal pronoun">Pron</A> <CODE>-&gt;</CODE> <A HREF="#Det" TITLE="Det - determiner phrase">Det</A></TD>
-<TD><I>my</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkDet</CODE></TD>
-<TD><A HREF="#Pron" TITLE="Pron - personal pronoun">Pron</A> <CODE>-&gt;</CODE> <A HREF="#Num" TITLE="Num - number determining element">Num</A> <CODE>-&gt;</CODE> <A HREF="#Det" TITLE="Det - determiner phrase">Det</A></TD>
-<TD><div class=reveal> <I>my five</I> <div class=popup> <ul> <li>API: <CODE>mkDet i_Pron (mkNum (mkNumeral n5_Unit))</CODE> <li>Bul: <I>моите петима</I> <li>Cat: <I>mes cinc</I> <li>Dan: <I>mine fem</I> <li>Dut: <I>mijn vijf</I> <li>Eng: <I>my five</I> <li>Fin: <I>Prelude.True</I> <li>Fre: <I>mes cinq</I> <li>Ger: <I>meine fünf</I> <li>Ita: <I>i miei cinque</I> <li>Nor: <I>mine fem</I> <li>Pol: <I>moich pięć</I> <li>Ron: <I>cei cinci</I> <li>Rus: <I>мой пять</I> <li>Spa: <I>mis cinco</I> <li>Swe: <I>mina fem</I> <li>Urd: <I>میرا پانچ</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>much_Det</CODE></TD>
-<TD><A HREF="#Det" TITLE="Det - determiner phrase">Det</A></TD>
-<TD><div class=reveal> <I>much</I> <div class=popup> <ul> <li>API: <CODE>much_Det</CODE> <li>Bul: <I>много</I> <li>Cat: <I>molt</I> <li>Dan: <I>meget</I> <li>Dut: <I>veel</I> <li>Eng: <I>much</I> <li>Fin: <I>Prelude.True</I> <li>Fre: <I>beaucoup pre {"de"; "d'" / strs {"a"; "à"; "â"; "e"; "é"; "è";</I> <li>Ger: <I>vieler</I> <li>Ita: <I>molto</I> <li>Nor: <I>mye</I> <li>Pol: <I>dużo</I> <li>Ron: <I>// <li>Rus: //много</I> <li>Spa: <I>mucho</I> <li>Swe: <I>mycket</I> <li>Urd: <I>بہت</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>somePl_Det</CODE></TD>
-<TD><A HREF="#Det" TITLE="Det - determiner phrase">Det</A></TD>
-<TD><div class=reveal> <I>some</I> <div class=popup> <ul> <li>API: <CODE>somePl_Det</CODE> <li>Bul: <I>някои</I> <li>Cat: <I>alguns</I> <li>Dan: <I>nogle</I> <li>Dut: <I>sommige</I> <li>Eng: <I>some</I> <li>Fin: <I>Prelude.True</I> <li>Fre: <I>quelques</I> <li>Ger: <I>einige</I> <li>Ita: <I>qualche</I> <li>Nor: <I>noen</I> <li>Pol: <I>pewne</I> <li>Ron: <I>unii</I> <li>Rus: <I>некоторый</I> <li>Spa: <I>algunos</I> <li>Swe: <I>några</I> <li>Urd: <I>كچھ</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>someSg_Det</CODE></TD>
-<TD><A HREF="#Det" TITLE="Det - determiner phrase">Det</A></TD>
-<TD><div class=reveal> <I>some</I> <div class=popup> <ul> <li>API: <CODE>someSg_Det</CODE> <li>Bul: <I>някой</I> <li>Cat: <I>algun</I> <li>Dan: <I>nogen</I> <li>Dut: <I>sommige</I> <li>Eng: <I>some</I> <li>Fin: <I>Prelude.True</I> <li>Fre: <I>pre {"quelque"; "quelqu'" / strs {"a"; "à"; "â"; "e"; "é"; "è";</I> <li>Ger: <I>ein</I> <li>Ita: <I>qualche</I> <li>Nor: <I>noen</I> <li>Pol: <I>pewien</I> <li>Ron: <I>nişte</I> <li>Rus: <I>некоторый</I> <li>Spa: <I>algun</I> <li>Swe: <I>någon</I> <li>Urd: <I>كچھ</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>that_Det</CODE></TD>
-<TD><A HREF="#Det" TITLE="Det - determiner phrase">Det</A></TD>
-<TD><div class=reveal> <I>that woman</I> <div class=popup> <ul> <li>API: <CODE>mkNP that_Det woman_N</CODE> <li>Bul: <I>онази жена</I> <li>Cat: <I>''</I> <li>Dan: <I>den der kvinde</I> <li>Dut: <I>die vrouw</I> <li>Eng: <I>that woman</I> <li>Fin: <I>tuo nainen</I> <li>Fre: <I>''</I> <li>Ger: <I>jene Frau</I> <li>Ita: <I>''</I> <li>Nor: <I>den der kvinna</I> <li>Pol: <I>tamtej kobiety</I> <li>Ron: <I>''</I> <li>Rus: <I>та женщина</I> <li>Spa: <I>''</I> <li>Swe: <I>den där kvinnan</I> <li>Urd: <I>وہ عورت</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>thePl_Det</CODE></TD>
-<TD><A HREF="#Det" TITLE="Det - determiner phrase">Det</A></TD>
-<TD><div class=reveal> <I>the houses</I> <div class=popup> <ul> <li>API: <CODE>mkNP thePl_Det house_N</CODE> <li>Bul: <I>къщите</I> <li>Cat: <I>''</I> <li>Dan: <I>husene</I> <li>Dut: <I>de huizen</I> <li>Eng: <I>the houses</I> <li>Fin: <I>talot</I> <li>Fre: <I>''</I> <li>Ger: <I>die Häuser</I> <li>Ita: <I>''</I> <li>Nor: <I>husa</I> <li>Pol: <I>domów</I> <li>Ron: <I>''</I> <li>Rus: <I>домы</I> <li>Spa: <I>''</I> <li>Swe: <I>husen</I> <li>Urd: <I>گھر</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>theSg_Det</CODE></TD>
-<TD><A HREF="#Det" TITLE="Det - determiner phrase">Det</A></TD>
-<TD><div class=reveal> <I>the house</I> <div class=popup> <ul> <li>API: <CODE>mkNP theSg_Det house_N</CODE> <li>Bul: <I>къщата</I> <li>Cat: <I>''</I> <li>Dan: <I>huset</I> <li>Dut: <I>het huis</I> <li>Eng: <I>the house</I> <li>Fin: <I>talo</I> <li>Fre: <I>''</I> <li>Ger: <I>das Haus</I> <li>Ita: <I>''</I> <li>Nor: <I>huset</I> <li>Pol: <I>domu</I> <li>Ron: <I>''</I> <li>Rus: <I>дом</I> <li>Spa: <I>''</I> <li>Swe: <I>huset</I> <li>Urd: <I>گھر</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>the_Det</CODE></TD>
-<TD><A HREF="#Det" TITLE="Det - determiner phrase">Det</A></TD>
-<TD><div class=reveal> <I>the house</I> <div class=popup> <ul> <li>API: <CODE>mkNP the_Det house_N</CODE> <li>Bul: <I>къщата</I> <li>Cat: <I>''</I> <li>Dan: <I>huset</I> <li>Dut: <I>het huis</I> <li>Eng: <I>the house</I> <li>Fin: <I>talo</I> <li>Fre: <I>''</I> <li>Ger: <I>das Haus</I> <li>Ita: <I>''</I> <li>Nor: <I>huset</I> <li>Pol: <I>domu</I> <li>Ron: <I>''</I> <li>Rus: <I>дом</I> <li>Spa: <I>''</I> <li>Swe: <I>huset</I> <li>Urd: <I>گھر</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>these_Det</CODE></TD>
-<TD><A HREF="#Det" TITLE="Det - determiner phrase">Det</A></TD>
-<TD><div class=reveal> <I>these women</I> <div class=popup> <ul> <li>API: <CODE>mkNP these_Det woman_N</CODE> <li>Bul: <I>тези жени</I> <li>Cat: <I>''</I> <li>Dan: <I>disse kvinder</I> <li>Dut: <I>deze vrouwen</I> <li>Eng: <I>these women</I> <li>Fin: <I>nämä naiset</I> <li>Fre: <I>''</I> <li>Ger: <I>diese Frauen</I> <li>Ita: <I>''</I> <li>Nor: <I>disse kvinnene</I> <li>Pol: <I>tych kobiet</I> <li>Ron: <I>''</I> <li>Rus: <I>эти женщины</I> <li>Spa: <I>''</I> <li>Swe: <I>de här kvinnorna</I> <li>Urd: <I>یہ عورتیں</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>this_Det</CODE></TD>
-<TD><A HREF="#Det" TITLE="Det - determiner phrase">Det</A></TD>
-<TD><div class=reveal> <I>this woman</I> <div class=popup> <ul> <li>API: <CODE>mkNP this_Det woman_N</CODE> <li>Bul: <I>тази жена</I> <li>Cat: <I>''</I> <li>Dan: <I>denne kvinde</I> <li>Dut: <I>deze vrouw</I> <li>Eng: <I>this woman</I> <li>Fin: <I>tämä nainen</I> <li>Fre: <I>''</I> <li>Ger: <I>diese Frau</I> <li>Ita: <I>''</I> <li>Nor: <I>denne kvinna</I> <li>Pol: <I>tej kobiety</I> <li>Ron: <I>''</I> <li>Rus: <I>эта женщина</I> <li>Spa: <I>''</I> <li>Swe: <I>den här kvinnan</I> <li>Urd: <I>یہ عورت</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>those_Det</CODE></TD>
-<TD><A HREF="#Det" TITLE="Det - determiner phrase">Det</A></TD>
-<TD><div class=reveal> <I>those women</I> <div class=popup> <ul> <li>API: <CODE>mkNP those_Det woman_N</CODE> <li>Bul: <I>онези жени</I> <li>Cat: <I>''</I> <li>Dan: <I>de der kvinder</I> <li>Dut: <I>die vrouwen</I> <li>Eng: <I>those women</I> <li>Fin: <I>nuo naiset</I> <li>Fre: <I>''</I> <li>Ger: <I>jene Frauen</I> <li>Ita: <I>''</I> <li>Nor: <I>de der kvinnene</I> <li>Pol: <I>tamtych kobiet</I> <li>Ron: <I>''</I> <li>Rus: <I>те женщины</I> <li>Spa: <I>''</I> <li>Swe: <I>de där kvinnorna</I> <li>Urd: <I>وہ عورتیں</I> </ul> </div> </div></TD>
-</TR>
-</TABLE>
-
-<A NAME="Dig"></A>
-<H2>Dig</H2>
-<TABLE BORDER="1" CELLPADDING="4">
-<TR>
-<TH>Function</TH>
-<TH>Type</TH>
-<TH COLSPAN="2">Example</TH>
-</TR>
-<TR>
-<TD><CODE>n0_Dig</CODE></TD>
-<TD><A HREF="#Dig">Dig</A></TD>
-<TD><I>0</I></TD>
-</TR>
-<TR>
-<TD><CODE>n1_Dig</CODE></TD>
-<TD><A HREF="#Dig">Dig</A></TD>
-<TD><I>1</I></TD>
-</TR>
-<TR>
-<TD><CODE>n2_Dig</CODE></TD>
-<TD><A HREF="#Dig">Dig</A></TD>
-<TD><I>2</I></TD>
-</TR>
-<TR>
-<TD><CODE>n3_Dig</CODE></TD>
-<TD><A HREF="#Dig">Dig</A></TD>
-<TD><I>3</I></TD>
-</TR>
-<TR>
-<TD><CODE>n4_Dig</CODE></TD>
-<TD><A HREF="#Dig">Dig</A></TD>
-<TD><I>4</I></TD>
-</TR>
-<TR>
-<TD><CODE>n5_Dig</CODE></TD>
-<TD><A HREF="#Dig">Dig</A></TD>
-<TD><I>5</I></TD>
-</TR>
-<TR>
-<TD><CODE>n6_Dig</CODE></TD>
-<TD><A HREF="#Dig">Dig</A></TD>
-<TD><I>6</I></TD>
-</TR>
-<TR>
-<TD><CODE>n7_Dig</CODE></TD>
-<TD><A HREF="#Dig">Dig</A></TD>
-<TD><I>7</I></TD>
-</TR>
-<TR>
-<TD><CODE>n8_Dig</CODE></TD>
-<TD><A HREF="#Dig">Dig</A></TD>
-<TD><I>8</I></TD>
-</TR>
-<TR>
-<TD><CODE>n9_Dig</CODE></TD>
-<TD><A HREF="#Dig">Dig</A></TD>
-<TD><I>9</I></TD>
-</TR>
-</TABLE>
-
-<A NAME="Digits"></A>
-<H2>Digits - cardinal or ordinal in digits</H2>
-<TABLE BORDER="1" CELLPADDING="4">
-<TR>
-<TH>Function</TH>
-<TH>Type</TH>
-<TH COLSPAN="2">Example</TH>
-</TR>
-<TR>
-<TD><CODE>mkDigits</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#Digits" TITLE="Digits - cardinal or ordinal in digits">Digits</A></TD>
-<TD><I>35 (from string "35"; ; range 1-9999999)</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkDigits</CODE></TD>
-<TD><A HREF="#Dig">Dig</A> <CODE>-&gt;</CODE> <A HREF="#Digits" TITLE="Digits - cardinal or ordinal in digits">Digits</A></TD>
-<TD><div class=reveal> <I>4</I> <div class=popup> <ul> <li>API: <CODE>mkDigits n4_Dig</CODE> <li>Bul: <I>4</I> <li>Cat: <I>4</I> <li>Dan: <I>4</I> <li>Dut: <I>4</I> <li>Eng: <I>4</I> <li>Fin: <I>4</I> <li>Fre: <I>4</I> <li>Ger: <I>4</I> <li>Ita: <I>4</I> <li>Nor: <I>4</I> <li>Pol: <I>4</I> <li>Ron: <I>4</I> <li>Rus: <I>4</I> <li>Spa: <I>4</I> <li>Swe: <I>4</I> <li>Urd: <I>۴</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>mkDigits</CODE></TD>
-<TD><A HREF="#Dig">Dig</A> <CODE>-&gt;</CODE> <A HREF="#Digits" TITLE="Digits - cardinal or ordinal in digits">Digits</A> <CODE>-&gt;</CODE> <A HREF="#Digits" TITLE="Digits - cardinal or ordinal in digits">Digits</A></TD>
-<TD><div class=reveal> <I>1 , 2 3 3 , 4 8 6</I> <div class=popup> <ul> <li>API: <CODE>mkDigits n1_Dig (mkDigits n2_Dig (mkDigits n3_Dig (mkDigits n3_Dig (mkDigits n4_Dig (mkDigits n8_Dig (mkDigits n6_Dig))))))</CODE> <li>Bul: <I>1 , 2 3 3 , 4 8 6</I> <li>Cat: <I>1 2 3 3 4 8 6</I> <li>Dan: <I>1 2 3 3 4 8 6</I> <li>Dut: <I>1 2 3 3 4 8 6</I> <li>Eng: <I>1 , 2 3 3 , 4 8 6</I> <li>Fin: <I>1 2 3 3 4 8 6</I> <li>Fre: <I>1 2 3 3 4 8 6</I> <li>Ger: <I>1 2 3 3 4 8 6</I> <li>Ita: <I>1 2 3 3 4 8 6</I> <li>Nor: <I>1 2 3 3 4 8 6</I> <li>Pol: <I>1 2 3 3 4 8 6</I> <li>Ron: <I>1 2 3 3 4 8 6</I> <li>Rus: <I>1 2 3 3 4 8 6</I> <li>Spa: <I>1 2 3 3 4 8 6</I> <li>Swe: <I>1 2 3 3 4 8 6</I> <li>Urd: <I>۶۸۴۳۳۲۱</I> </ul> </div> </div></TD>
-</TR>
-</TABLE>
-
-<A NAME="IAdv"></A>
-<H2>IAdv - interrogative adverb</H2>
-<TABLE BORDER="1" CELLPADDING="4">
-<TR>
-<TH>Function</TH>
-<TH>Type</TH>
-<TH COLSPAN="2">Example</TH>
-</TR>
-<TR>
-<TD><CODE>how8much_IAdv</CODE></TD>
-<TD><A HREF="#IAdv" TITLE="IAdv - interrogative adverb">IAdv</A></TD>
-<TD><div class=reveal> <I>how much</I> <div class=popup> <ul> <li>API: <CODE>mkUtt how8much_IAdv</CODE> <li>Bul: <I>колко</I> <li>Cat: <I>quant</I> <li>Dan: <I>*</I> <li>Dut: <I>hoeveel</I> <li>Eng: <I>how much</I> <li>Fin: <I>kuinka paljon</I> <li>Fre: <I>combien</I> <li>Ger: <I>wieviel</I> <li>Ita: <I>quanto</I> <li>Nor: <I>*</I> <li>Pol: <I>*</I> <li>Ron: <I>cât</I> <li>Rus: <I>*</I> <li>Spa: <I>*</I> <li>Swe: <I>hur mycket</I> <li>Urd: <I>كتنا</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>how_IAdv</CODE></TD>
-<TD><A HREF="#IAdv" TITLE="IAdv - interrogative adverb">IAdv</A></TD>
-<TD><div class=reveal> <I>how</I> <div class=popup> <ul> <li>API: <CODE>mkUtt how_IAdv</CODE> <li>Bul: <I>как</I> <li>Cat: <I>com</I> <li>Dan: <I>hvor</I> <li>Dut: <I>hoe</I> <li>Eng: <I>how</I> <li>Fin: <I>miten</I> <li>Fre: <I>comment</I> <li>Ger: <I>wie</I> <li>Ita: <I>come</I> <li>Nor: <I>hvor</I> <li>Pol: <I>jak</I> <li>Ron: <I>cum</I> <li>Rus: <I>как</I> <li>Spa: <I>como</I> <li>Swe: <I>hur</I> <li>Urd: <I>كیسے</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>mkIAdv</CODE></TD>
-<TD><A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#IP" TITLE="IP - interrogative pronoun">IP</A> <CODE>-&gt;</CODE> <A HREF="#IAdv" TITLE="IAdv - interrogative adverb">IAdv</A></TD>
-<TD><div class=reveal> <I>in which city</I> <div class=popup> <ul> <li>API: <CODE>mkIAdv in_Prep (mkIP which_IQuant city_N)</CODE> <li>Bul: <I>в кой град</I> <li>Cat: <I>en quin ciutat</I> <li>Dan: <I>i hvilken by</I> <li>Dut: <I>in welke stad</I> <li>Eng: <I>in which city</I> <li>Fin: <I>missä kaupungissa</I> <li>Fre: <I>dans quelle ville</I> <li>Ger: <I>in welcher Stadt</I> <li>Ita: <I>in quale città</I> <li>Nor: <I>i hvilken by</I> <li>Pol: <I>w którym mieście</I> <li>Ron: <I>în care oraş</I> <li>Rus: <I>в который город</I> <li>Spa: <I>en qué ciudad</I> <li>Swe: <I>i vilken stad</I> <li>Urd: <I>كون سے شہر میں</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>mkIAdv</CODE></TD>
-<TD><A HREF="#IAdv" TITLE="IAdv - interrogative adverb">IAdv</A> <CODE>-&gt;</CODE> <A HREF="#Adv" TITLE="Adv - verb-phrase-modifying adverb">Adv</A> <CODE>-&gt;</CODE> <A HREF="#IAdv" TITLE="IAdv - interrogative adverb">IAdv</A></TD>
-<TD><div class=reveal> <I>where in Paris</I> <div class=popup> <ul> <li>API: <CODE>mkIAdv where_IAdv (mkAdv in_Prep (mkNP paris_PN))</CODE> <li>Bul: <I>къде в Париж</I> <li>Cat: <I>on en Paris</I> <li>Dan: <I>hvor i Paris</I> <li>Dut: <I>waar in Parijs</I> <li>Eng: <I>where in Paris</I> <li>Fin: <I>missä Pariisissa</I> <li>Fre: <I>oÃ¹ dans Paris</I> <li>Ger: <I>wo in Paris</I> <li>Ita: <I>dove in Parigi</I> <li>Nor: <I>hvor i Paris</I> <li>Pol: <I>gdzie w Paryżu</I> <li>Ron: <I>unde în Paris</I> <li>Rus: <I>где в Париже</I> <li>Spa: <I>donde en Paris</I> <li>Swe: <I>var i Paris</I> <li>Urd: <I>كہاں پیرس میں</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>when_IAdv</CODE></TD>
-<TD><A HREF="#IAdv" TITLE="IAdv - interrogative adverb">IAdv</A></TD>
-<TD><div class=reveal> <I>when</I> <div class=popup> <ul> <li>API: <CODE>mkUtt when_IAdv</CODE> <li>Bul: <I>кога</I> <li>Cat: <I>quan</I> <li>Dan: <I>hvornår</I> <li>Dut: <I>wanneer</I> <li>Eng: <I>when</I> <li>Fin: <I>milloin</I> <li>Fre: <I>quand</I> <li>Ger: <I>wann</I> <li>Ita: <I>quando</I> <li>Nor: <I>når</I> <li>Pol: <I>kiedy</I> <li>Ron: <I>când</I> <li>Rus: <I>когда</I> <li>Spa: <I>cuando</I> <li>Swe: <I>när</I> <li>Urd: <I>كب</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>where_IAdv</CODE></TD>
-<TD><A HREF="#IAdv" TITLE="IAdv - interrogative adverb">IAdv</A></TD>
-<TD><div class=reveal> <I>where</I> <div class=popup> <ul> <li>API: <CODE>mkUtt where_IAdv</CODE> <li>Bul: <I>къде</I> <li>Cat: <I>on</I> <li>Dan: <I>hvor</I> <li>Dut: <I>waar</I> <li>Eng: <I>where</I> <li>Fin: <I>missä</I> <li>Fre: <I>oÃ¹</I> <li>Ger: <I>wo</I> <li>Ita: <I>dove</I> <li>Nor: <I>hvor</I> <li>Pol: <I>gdzie</I> <li>Ron: <I>unde</I> <li>Rus: <I>где</I> <li>Spa: <I>donde</I> <li>Swe: <I>var</I> <li>Urd: <I>كہاں</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>why_IAdv</CODE></TD>
-<TD><A HREF="#IAdv" TITLE="IAdv - interrogative adverb">IAdv</A></TD>
-<TD><div class=reveal> <I>why</I> <div class=popup> <ul> <li>API: <CODE>mkUtt why_IAdv</CODE> <li>Bul: <I>защо</I> <li>Cat: <I>per quË</I> <li>Dan: <I>hvorfor</I> <li>Dut: <I>waarom</I> <li>Eng: <I>why</I> <li>Fin: <I>miksi</I> <li>Fre: <I>pourquoi</I> <li>Ger: <I>warum</I> <li>Ita: <I>perché</I> <li>Nor: <I>hvorfor</I> <li>Pol: <I>dlaczego</I> <li>Ron: <I>de ce</I> <li>Rus: <I>почему</I> <li>Spa: <I>porqué</I> <li>Swe: <I>varför</I> <li>Urd: <I>كیوں</I> </ul> </div> </div></TD>
-</TR>
-</TABLE>
-
-<A NAME="IComp"></A>
-<H2>IComp - interrogative complement of copula</H2>
-<TABLE BORDER="1" CELLPADDING="4">
-<TR>
-<TH>Function</TH>
-<TH>Type</TH>
-<TH COLSPAN="2">Example</TH>
-</TR>
-<TR>
-<TD><CODE>mkIComp</CODE></TD>
-<TD><A HREF="#IAdv" TITLE="IAdv - interrogative adverb">IAdv</A> <CODE>-&gt;</CODE> <A HREF="#IComp" TITLE="IComp - interrogative complement of copula">IComp</A></TD>
-<TD><I>where (is it)</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkIComp</CODE></TD>
-<TD><A HREF="#IP" TITLE="IP - interrogative pronoun">IP</A> <CODE>-&gt;</CODE> <A HREF="#IComp" TITLE="IComp - interrogative complement of copula">IComp</A></TD>
-<TD><I>who (is it)</I></TD>
-</TR>
-</TABLE>
-
-<A NAME="IDet"></A>
-<H2>IDet - interrogative determiner</H2>
-<TABLE BORDER="1" CELLPADDING="4">
-<TR>
-<TH>Function</TH>
-<TH>Type</TH>
-<TH COLSPAN="2">Example</TH>
-</TR>
-<TR>
-<TD><CODE>how8many_IDet</CODE></TD>
-<TD><A HREF="#IDet" TITLE="IDet - interrogative determiner">IDet</A></TD>
-<TD><div class=reveal> <I>how many houses</I> <div class=popup> <ul> <li>API: <CODE>mkUtt (mkIP how8many_IDet house_N)</CODE> <li>Bul: <I>колко къщи</I> <li>Cat: <I>quantes cases</I> <li>Dan: <I>hur mange huse</I> <li>Dut: <I>hoeveel huizen</I> <li>Eng: <I>how many houses</I> <li>Fin: <I>kuinka moni talo</I> <li>Fre: <I>combien pre {"de"; "d'" / strs {"a"; "à"; "â"; "e"; "é"; "è"; "ê¨";</I> <li>Ger: <I>wieviele Häuser</I> <li>Ita: <I>quante case</I> <li>Nor: <I>hur mange hus</I> <li>Pol: <I>ile domu</I> <li>Ron: <I>câte case</I> <li>Rus: <I>скольки домов</I> <li>Spa: <I>cuantas casas</I> <li>Swe: <I>hur många hus</I> <li>Urd: <I>كتنے گھر</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>mkIDet</CODE></TD>
-<TD><A HREF="#IQuant">IQuant</A> <CODE>-&gt;</CODE> <A HREF="#Num" TITLE="Num - number determining element">Num</A> <CODE>-&gt;</CODE> <A HREF="#IDet" TITLE="IDet - interrogative determiner">IDet</A></TD>
-<TD><div class=reveal> <I>which houses</I> <div class=popup> <ul> <li>API: <CODE>mkIP (mkIDet which_IQuant pluralNum) house_N</CODE> <li>Bul: <I>кои къщи</I> <li>Cat: <I>quins cases</I> <li>Dan: <I>hvilke huse</I> <li>Dut: <I>welke huizen</I> <li>Eng: <I>which houses</I> <li>Fin: <I>mitkä talot</I> <li>Fre: <I>quelles maisons</I> <li>Ger: <I>welche Häuser</I> <li>Ita: <I>quali case</I> <li>Nor: <I>hvilke hus</I> <li>Pol: <I>których domów</I> <li>Ron: <I>care case</I> <li>Rus: <I>которые домы</I> <li>Spa: <I>qué casas</I> <li>Swe: <I>vilka hus</I> <li>Urd: <I>كون سے گھر</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>mkIDet</CODE></TD>
-<TD><A HREF="#IQuant">IQuant</A> <CODE>-&gt;</CODE> <A HREF="#IDet" TITLE="IDet - interrogative determiner">IDet</A></TD>
-<TD><div class=reveal> <I>which house</I> <div class=popup> <ul> <li>API: <CODE>mkIP (mkIDet which_IQuant) house_N</CODE> <li>Bul: <I>коя къща</I> <li>Cat: <I>quin casa</I> <li>Dan: <I>hvilket hus</I> <li>Dut: <I>welk huis</I> <li>Eng: <I>which house</I> <li>Fin: <I>mikä talo</I> <li>Fre: <I>quelle maison</I> <li>Ger: <I>welches Haus</I> <li>Ita: <I>quale casa</I> <li>Nor: <I>hvilket hus</I> <li>Pol: <I>którego domu</I> <li>Ron: <I>care casă</I> <li>Rus: <I>который дом</I> <li>Spa: <I>qué casa</I> <li>Swe: <I>vilket hus</I> <li>Urd: <I>كون سا گھر</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>whichPl_IDet</CODE></TD>
-<TD><A HREF="#IDet" TITLE="IDet - interrogative determiner">IDet</A></TD>
-<TD><div class=reveal> <I>which houses</I> <div class=popup> <ul> <li>API: <CODE>mkIP whichPl_IDet house_N</CODE> <li>Bul: <I>кои къщи</I> <li>Cat: <I>quins cases</I> <li>Dan: <I>hvilke huse</I> <li>Dut: <I>welke huizen</I> <li>Eng: <I>which houses</I> <li>Fin: <I>mitkä talot</I> <li>Fre: <I>quelles maisons</I> <li>Ger: <I>welche Häuser</I> <li>Ita: <I>quali case</I> <li>Nor: <I>hvilke hus</I> <li>Pol: <I>których domów</I> <li>Ron: <I>care case</I> <li>Rus: <I>которые домы</I> <li>Spa: <I>qué casas</I> <li>Swe: <I>vilka hus</I> <li>Urd: <I>كون سے گھر</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>which_IDet</CODE></TD>
-<TD><A HREF="#IDet" TITLE="IDet - interrogative determiner">IDet</A></TD>
-<TD><div class=reveal> <I>which house</I> <div class=popup> <ul> <li>API: <CODE>mkIP which_IDet house_N</CODE> <li>Bul: <I>коя къща</I> <li>Cat: <I>quin casa</I> <li>Dan: <I>hvilket hus</I> <li>Dut: <I>welk huis</I> <li>Eng: <I>which house</I> <li>Fin: <I>mikä talo</I> <li>Fre: <I>quelle maison</I> <li>Ger: <I>welches Haus</I> <li>Ita: <I>quale casa</I> <li>Nor: <I>hvilket hus</I> <li>Pol: <I>którego domu</I> <li>Ron: <I>care casă</I> <li>Rus: <I>который дом</I> <li>Spa: <I>qué casa</I> <li>Swe: <I>vilket hus</I> <li>Urd: <I>كون سا گھر</I> </ul> </div> </div></TD>
-</TR>
-</TABLE>
-
-<A NAME="IP"></A>
-<H2>IP - interrogative pronoun</H2>
-<TABLE BORDER="1" CELLPADDING="4">
-<TR>
-<TH>Function</TH>
-<TH>Type</TH>
-<TH COLSPAN="2">Example</TH>
-</TR>
-<TR>
-<TD><CODE>mkIP</CODE></TD>
-<TD><A HREF="#IDet" TITLE="IDet - interrogative determiner">IDet</A> <CODE>-&gt;</CODE> <A HREF="#CN" TITLE="CN - common noun (without determiner)">CN</A> <CODE>-&gt;</CODE> <A HREF="#IP" TITLE="IP - interrogative pronoun">IP</A></TD>
-<TD><div class=reveal> <I>which five big cities</I> <div class=popup> <ul> <li>API: <CODE>mkIP (mkIDet which_IQuant (mkNum (mkNumeral n5_Unit))) (mkCN big_A city_N)</CODE> <li>Bul: <I>кои пет големи града</I> <li>Cat: <I>quins cinc ciutats groses</I> <li>Dan: <I>hvilke fem store byer</I> <li>Dut: <I>welke vijf grote stadden</I> <li>Eng: <I>which five big cities</I> <li>Fin: <I>mitkä viisi suurta kaupunkia</I> <li>Fre: <I>quelles cinq grandes villes</I> <li>Ger: <I>welche fünf großen Städte</I> <li>Ita: <I>quali cinque grandi città</I> <li>Nor: <I>hvilke fem store byer</I> <li>Pol: <I>których pięciu dużych miast</I> <li>Ron: <I>care cinci oraşe mari</I> <li>Rus: <I>которые пять большие городы</I> <li>Spa: <I>qué cinco grandes ciudades</I> <li>Swe: <I>vilka fem stora städer</I> <li>Urd: <I>كون سے پانچ بڑے شہر</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>mkIP</CODE></TD>
-<TD><A HREF="#IDet" TITLE="IDet - interrogative determiner">IDet</A> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A> <CODE>-&gt;</CODE> <A HREF="#IP" TITLE="IP - interrogative pronoun">IP</A></TD>
-<TD><div class=reveal> <I>which five cities</I> <div class=popup> <ul> <li>API: <CODE>mkIP (mkIDet which_IQuant (mkNum (mkNumeral n5_Unit))) city_N</CODE> <li>Bul: <I>кои пет града</I> <li>Cat: <I>quins cinc ciutats</I> <li>Dan: <I>hvilke fem byer</I> <li>Dut: <I>welke vijf stadden</I> <li>Eng: <I>which five cities</I> <li>Fin: <I>mitkä viisi kaupunkia</I> <li>Fre: <I>quelles cinq villes</I> <li>Ger: <I>welche fünf Städte</I> <li>Ita: <I>quali cinque città</I> <li>Nor: <I>hvilke fem byer</I> <li>Pol: <I>których pięciu miast</I> <li>Ron: <I>care cinci oraşe</I> <li>Rus: <I>которые пять городы</I> <li>Spa: <I>qué cinco ciudades</I> <li>Swe: <I>vilka fem städer</I> <li>Urd: <I>كون سے پانچ شہر</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>mkIP</CODE></TD>
-<TD><A HREF="#IDet" TITLE="IDet - interrogative determiner">IDet</A> <CODE>-&gt;</CODE> <A HREF="#IP" TITLE="IP - interrogative pronoun">IP</A></TD>
-<TD><div class=reveal> <I>which five</I> <div class=popup> <ul> <li>API: <CODE>mkIP (mkIDet which_IQuant (mkNum (mkNumeral n5_Unit)))</CODE> <li>Bul: <I>кои пет</I> <li>Cat: <I>quins cinc</I> <li>Dan: <I>hvilke fem</I> <li>Dut: <I>welke vijf</I> <li>Eng: <I>which five</I> <li>Fin: <I>mitkä viisi</I> <li>Fre: <I>quels cinq</I> <li>Ger: <I>welche fünf</I> <li>Ita: <I>quali cinque</I> <li>Nor: <I>hvilke fem</I> <li>Pol: <I>których pięciu</I> <li>Ron: <I>care cinci</I> <li>Rus: <I>которые пять</I> <li>Spa: <I>qué cinco</I> <li>Swe: <I>vilka fem</I> <li>Urd: <I>كون سے پانچ</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>mkIP</CODE></TD>
-<TD><A HREF="#IQuant">IQuant</A> <CODE>-&gt;</CODE> <A HREF="#CN" TITLE="CN - common noun (without determiner)">CN</A> <CODE>-&gt;</CODE> <A HREF="#IP" TITLE="IP - interrogative pronoun">IP</A></TD>
-<TD><div class=reveal> <I>which big city</I> <div class=popup> <ul> <li>API: <CODE>mkIP which_IQuant (mkCN big_A city_N)</CODE> <li>Bul: <I>кой голям град</I> <li>Cat: <I>quin ciutat grosa</I> <li>Dan: <I>hvilken stor by</I> <li>Dut: <I>welke grote stad</I> <li>Eng: <I>which big city</I> <li>Fin: <I>mikä suuri kaupunki</I> <li>Fre: <I>quelle grande ville</I> <li>Ger: <I>welche große Stadt</I> <li>Ita: <I>quale grande città</I> <li>Nor: <I>hvilken stor by</I> <li>Pol: <I>którego dużego miasta</I> <li>Ron: <I>care oraş mare</I> <li>Rus: <I>который большой город</I> <li>Spa: <I>qué grande ciudad</I> <li>Swe: <I>vilken stor stad</I> <li>Urd: <I>كون سا بڑا شہر</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>mkIP</CODE></TD>
-<TD><A HREF="#IQuant">IQuant</A> <CODE>-&gt;</CODE> <A HREF="#Num" TITLE="Num - number determining element">Num</A> <CODE>-&gt;</CODE> <A HREF="#CN" TITLE="CN - common noun (without determiner)">CN</A> <CODE>-&gt;</CODE> <A HREF="#IP" TITLE="IP - interrogative pronoun">IP</A></TD>
-<TD><div class=reveal> <I>which five big cities</I> <div class=popup> <ul> <li>API: <CODE>mkIP which_IQuant (mkNum (mkNumeral n5_Unit)) (mkCN big_A city_N)</CODE> <li>Bul: <I>кои пет големи града</I> <li>Cat: <I>quins cinc ciutats groses</I> <li>Dan: <I>hvilke fem store byer</I> <li>Dut: <I>welke vijf grote stadden</I> <li>Eng: <I>which five big cities</I> <li>Fin: <I>mitkä viisi suurta kaupunkia</I> <li>Fre: <I>quelles cinq grandes villes</I> <li>Ger: <I>welche fünf großen Städte</I> <li>Ita: <I>quali cinque grandi città</I> <li>Nor: <I>hvilke fem store byer</I> <li>Pol: <I>których pięciu dużych miast</I> <li>Ron: <I>care cinci oraşe mari</I> <li>Rus: <I>которые пять большие городы</I> <li>Spa: <I>qué cinco grandes ciudades</I> <li>Swe: <I>vilka fem stora städer</I> <li>Urd: <I>كون سے پانچ بڑے شہر</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>mkIP</CODE></TD>
-<TD><A HREF="#IQuant">IQuant</A> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A> <CODE>-&gt;</CODE> <A HREF="#IP" TITLE="IP - interrogative pronoun">IP</A></TD>
-<TD><div class=reveal> <I>which city</I> <div class=popup> <ul> <li>API: <CODE>mkIP which_IQuant city_N</CODE> <li>Bul: <I>кой град</I> <li>Cat: <I>quin ciutat</I> <li>Dan: <I>hvilken by</I> <li>Dut: <I>welke stad</I> <li>Eng: <I>which city</I> <li>Fin: <I>mikä kaupunki</I> <li>Fre: <I>quelle ville</I> <li>Ger: <I>welche Stadt</I> <li>Ita: <I>quale città</I> <li>Nor: <I>hvilken by</I> <li>Pol: <I>którego miasta</I> <li>Ron: <I>care oraş</I> <li>Rus: <I>который город</I> <li>Spa: <I>qué ciudad</I> <li>Swe: <I>vilken stad</I> <li>Urd: <I>كون سا شہر</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>mkIP</CODE></TD>
-<TD><A HREF="#IP" TITLE="IP - interrogative pronoun">IP</A> <CODE>-&gt;</CODE> <A HREF="#Adv" TITLE="Adv - verb-phrase-modifying adverb">Adv</A> <CODE>-&gt;</CODE> <A HREF="#IP" TITLE="IP - interrogative pronoun">IP</A></TD>
-<TD><div class=reveal> <I>who in Paris</I> <div class=popup> <ul> <li>API: <CODE>mkIP who_IP (mkAdv in_Prep (mkNP paris_PN))</CODE> <li>Bul: <I>кой в Париж</I> <li>Cat: <I>qui en Paris</I> <li>Dan: <I>hvem i Paris</I> <li>Dut: <I>wie in Parijs</I> <li>Eng: <I>who in Paris</I> <li>Fin: <I>kuka Pariisissa</I> <li>Fre: <I>qui dans Paris</I> <li>Ger: <I>wer in Paris</I> <li>Ita: <I>chi in Parigi</I> <li>Nor: <I>hvem i Paris</I> <li>Pol: <I>kogo w Paryżu</I> <li>Ron: <I>cine în Paris</I> <li>Rus: <I>кто в Париже</I> <li>Spa: <I>quién en Paris</I> <li>Swe: <I>vem i Paris</I> <li>Urd: <I>پیرس میں كون</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>whatPl_IP</CODE></TD>
-<TD><A HREF="#IP" TITLE="IP - interrogative pronoun">IP</A></TD>
-<TD><div class=reveal> <I>what</I> <div class=popup> <ul> <li>API: <CODE>whatPl_IP</CODE> <li>Bul: <I>какви</I> <li>Cat: <I>què</I> <li>Dan: <I>hvilke</I> <li>Dut: <I>wat</I> <li>Eng: <I>what</I> <li>Fin: <I>mitkä</I> <li>Fre: <I>pre {"que"; "qu'" / strs {"a"; "à"; "â"; "e"; "é"; "è"; "ê¨"; "h";</I> <li>Ger: <I>was</I> <li>Ita: <I>che</I> <li>Nor: <I>hva</I> <li>Pol: <I>czego</I> <li>Ron: <I>ce</I> <li>Rus: <I>что</I> <li>Spa: <I>qué</I> <li>Swe: <I>vad</I> <li>Urd: <I>كیا</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>whatSg_IP</CODE></TD>
-<TD><A HREF="#IP" TITLE="IP - interrogative pronoun">IP</A></TD>
-<TD><div class=reveal> <I>what</I> <div class=popup> <ul> <li>API: <CODE>whatSg_IP</CODE> <li>Bul: <I>какъв</I> <li>Cat: <I>què</I> <li>Dan: <I>hvad</I> <li>Dut: <I>wat</I> <li>Eng: <I>what</I> <li>Fin: <I>mikä</I> <li>Fre: <I>pre {"que"; "qu'" / strs {"a"; "à"; "â"; "e"; "é"; "è"; "ê¨"; "h";</I> <li>Ger: <I>was</I> <li>Ita: <I>che</I> <li>Nor: <I>hva</I> <li>Pol: <I>czego</I> <li>Ron: <I>ce</I> <li>Rus: <I>что</I> <li>Spa: <I>qué</I> <li>Swe: <I>vad</I> <li>Urd: <I>كیا</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>what_IP</CODE></TD>
-<TD><A HREF="#IP" TITLE="IP - interrogative pronoun">IP</A></TD>
-<TD><div class=reveal> <I>what</I> <div class=popup> <ul> <li>API: <CODE>mkUtt what_IP</CODE> <li>Bul: <I>какъв</I> <li>Cat: <I>què</I> <li>Dan: <I>hvad</I> <li>Dut: <I>wat</I> <li>Eng: <I>what</I> <li>Fin: <I>mikä</I> <li>Fre: <I>pre {"que"; "qu'" / strs {"a"; "à"; "â"; "e"; "é"; "è"; "ê¨"; "h";</I> <li>Ger: <I>was</I> <li>Ita: <I>che</I> <li>Nor: <I>hva</I> <li>Pol: <I>co</I> <li>Ron: <I>ce</I> <li>Rus: <I>что</I> <li>Spa: <I>qué</I> <li>Swe: <I>vad</I> <li>Urd: <I>كیا</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>whoPl_IP</CODE></TD>
-<TD><A HREF="#IP" TITLE="IP - interrogative pronoun">IP</A></TD>
-<TD><div class=reveal> <I>who</I> <div class=popup> <ul> <li>API: <CODE>whoPl_IP</CODE> <li>Bul: <I>кои</I> <li>Cat: <I>qui</I> <li>Dan: <I>hvilke</I> <li>Dut: <I>wie</I> <li>Eng: <I>who</I> <li>Fin: <I>ketkä</I> <li>Fre: <I>qui</I> <li>Ger: <I>wer</I> <li>Ita: <I>chi</I> <li>Nor: <I>hvilke</I> <li>Pol: <I>kogo</I> <li>Ron: <I>cine</I> <li>Rus: <I>кто</I> <li>Spa: <I>quién</I> <li>Swe: <I>vilka</I> <li>Urd: <I>كون</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>whoSg_IP</CODE></TD>
-<TD><A HREF="#IP" TITLE="IP - interrogative pronoun">IP</A></TD>
-<TD><div class=reveal> <I>who</I> <div class=popup> <ul> <li>API: <CODE>whoSg_IP</CODE> <li>Bul: <I>кой</I> <li>Cat: <I>qui</I> <li>Dan: <I>hvem</I> <li>Dut: <I>wie</I> <li>Eng: <I>who</I> <li>Fin: <I>kuka</I> <li>Fre: <I>qui</I> <li>Ger: <I>wer</I> <li>Ita: <I>chi</I> <li>Nor: <I>hvem</I> <li>Pol: <I>kogo</I> <li>Ron: <I>cine</I> <li>Rus: <I>кто</I> <li>Spa: <I>quién</I> <li>Swe: <I>vem</I> <li>Urd: <I>كون</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>who_IP</CODE></TD>
-<TD><A HREF="#IP" TITLE="IP - interrogative pronoun">IP</A></TD>
-<TD><div class=reveal> <I>who</I> <div class=popup> <ul> <li>API: <CODE>mkUtt who_IP</CODE> <li>Bul: <I>кой</I> <li>Cat: <I>qui</I> <li>Dan: <I>hvem</I> <li>Dut: <I>wie</I> <li>Eng: <I>who</I> <li>Fin: <I>kuka</I> <li>Fre: <I>qui</I> <li>Ger: <I>wer</I> <li>Ita: <I>chi</I> <li>Nor: <I>hvem</I> <li>Pol: <I>kto</I> <li>Ron: <I>cine</I> <li>Rus: <I>кто</I> <li>Spa: <I>quién</I> <li>Swe: <I>vem</I> <li>Urd: <I>كون</I> </ul> </div> </div></TD>
-</TR>
-</TABLE>
-
-<A NAME="IQuant"></A>
-<H2>IQuant</H2>
-<TABLE BORDER="1" CELLPADDING="4">
-<TR>
-<TH>Function</TH>
-<TH>Type</TH>
-<TH COLSPAN="2">Example</TH>
-</TR>
-<TR>
-<TD><CODE>which_IQuant</CODE></TD>
-<TD><A HREF="#IQuant">IQuant</A></TD>
-<TD><div class=reveal> <I>which house</I> <div class=popup> <ul> <li>API: <CODE>mkIP which_IQuant house_N</CODE> <li>Bul: <I>коя къща</I> <li>Cat: <I>quin casa</I> <li>Dan: <I>hvilket hus</I> <li>Dut: <I>welk huis</I> <li>Eng: <I>which house</I> <li>Fin: <I>mikä talo</I> <li>Fre: <I>quelle maison</I> <li>Ger: <I>welches Haus</I> <li>Ita: <I>quale casa</I> <li>Nor: <I>hvilket hus</I> <li>Pol: <I>którego domu</I> <li>Ron: <I>care casă</I> <li>Rus: <I>который дом</I> <li>Spa: <I>qué casa</I> <li>Swe: <I>vilket hus</I> <li>Urd: <I>كون سا گھر</I> </ul> </div> </div></TD>
-</TR>
-</TABLE>
-
-<A NAME="Imp"></A>
-<H2>Imp - imperative</H2>
-<TABLE BORDER="1" CELLPADDING="4">
-<TR>
-<TH>Function</TH>
-<TH>Type</TH>
-<TH COLSPAN="2">Example</TH>
-</TR>
-<TR>
-<TD><CODE>mkImp</CODE></TD>
-<TD><A HREF="#VP" TITLE="VP - verb phrase">VP</A> <CODE>-&gt;</CODE> <A HREF="#Imp" TITLE="Imp - imperative">Imp</A></TD>
-<TD><div class=reveal> <I>come to my house</I> <div class=popup> <ul> <li>API: <CODE>mkImp (mkVP (mkVP come_V) (mkAdv to_Prep (mkNP i_Pron house_N)))</CODE> <li>Bul: <I>ела до моята къща</I> <li>Cat: <I>venir a la meva casa</I> <li>Dan: <I>kom til mit hus</I> <li>Dut: <I>komt u naar mijn huis</I> <li>Eng: <I>come to my house</I> <li>Fin: <I>tule minun talooni</I> <li>Fre: <I>venez à pre {"ma"; "mon" / strs {"a"; "à"; "â"; "e"; "é"; "è";</I> <li>Ger: <I>kommen Sie nach meinem Haus / Hause</I> <li>Ita: <I>venire alla mia casa</I> <li>Nor: <I>komm til mit hus</I> <li>Pol: <I>do mojego domu przychodź</I> <li>Ron: <I>sã vii la casa mea</I> <li>Rus: <I>приходи к моему дому</I> <li>Spa: <I>venir a mi casa</I> <li>Swe: <I>kom till mitt hus</I> <li>Urd: <I>آنا میرا گھر كو</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>mkImp</CODE></TD>
-<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#Imp" TITLE="Imp - imperative">Imp</A></TD>
-<TD><div class=reveal> <I>come</I> <div class=popup> <ul> <li>API: <CODE>mkImp come_V</CODE> <li>Bul: <I>ела</I> <li>Cat: <I>venir</I> <li>Dan: <I>kom</I> <li>Dut: <I>komt u</I> <li>Eng: <I>come</I> <li>Fin: <I>tule</I> <li>Fre: <I>venez</I> <li>Ger: <I>kommen Sie</I> <li>Ita: <I>venire</I> <li>Nor: <I>komm</I> <li>Pol: <I>przychodź</I> <li>Ron: <I>sã vii</I> <li>Rus: <I>приходи</I> <li>Spa: <I>venir</I> <li>Swe: <I>kom</I> <li>Urd: <I>آنا</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>mkImp</CODE></TD>
-<TD><A HREF="#V2" TITLE="V2 - two-place verb">V2</A> <CODE>-&gt;</CODE> <A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A> <CODE>-&gt;</CODE> <A HREF="#Imp" TITLE="Imp - imperative">Imp</A></TD>
-<TD><div class=reveal> <I>buy it</I> <div class=popup> <ul> <li>API: <CODE>mkImp buy_V2 it_NP</CODE> <li>Bul: <I>купи него</I> <li>Cat: <I>comprar</I> <li>Dan: <I>køb det</I> <li>Dut: <I>koopt u</I> <li>Eng: <I>buy it</I> <li>Fin: <I>osta sen</I> <li>Fre: <I>achetez pre {"le"; "l'" / strs {"a"; "à"; "â"; "e"; "é"; "è"; "ê¨";</I> <li>Ger: <I>kaufen Sie</I> <li>Ita: <I>comprare lo</I> <li>Nor: <I>kjøp det</I> <li>Pol: <I>kupuj je</I> <li>Ron: <I>sã îl cumperi</I> <li>Rus: <I>покупай его</I> <li>Spa: <I>comprar</I> <li>Swe: <I>köp det</I> <li>Urd: <I>اس كو خریدنا</I> </ul> </div> </div></TD>
-</TR>
-</TABLE>
-
-<A NAME="ImpForm"></A>
-<H2>ImpForm</H2>
-<TABLE BORDER="1" CELLPADDING="4">
-<TR>
-<TH>Function</TH>
-<TH>Type</TH>
-<TH COLSPAN="2">Example</TH>
-</TR>
-<TR>
-<TD><CODE>pluralImpForm</CODE></TD>
-<TD><A HREF="#ImpForm">ImpForm</A></TD>
-<TD><div class=reveal> <I>be men</I> <div class=popup> <ul> <li>API: <CODE>mkUtt pluralImpForm (mkImp (mkVP man_N))</CODE> <li>Bul: <I>бъдете мъже</I> <li>Cat: <I>sigueu homes</I> <li>Dan: <I>var mænd</I> <li>Dut: <I>wezen mannen</I> <li>Eng: <I>be men</I> <li>Fin: <I>olkaa miehiä</I> <li>Fre: <I>soyez hommes</I> <li>Ger: <I>seid Männer</I> <li>Ita: <I>siate uomini</I> <li>Nor: <I>var menn</I> <li>Pol: <I>bądźcie mężczyzna</I> <li>Ron: <I>fiţi oameni</I> <li>Rus: <I>будьте человеками</I> <li>Spa: <I>sed hombres</I> <li>Swe: <I>var män</I> <li>Urd: <I>آدمی</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>politeImpForm</CODE></TD>
-<TD><A HREF="#ImpForm">ImpForm</A></TD>
-<TD><div class=reveal> <I>be a man</I> <div class=popup> <ul> <li>API: <CODE>mkUtt politeImpForm (mkImp (mkVP man_N))</CODE> <li>Bul: <I>бъдете мъже</I> <li>Cat: <I>ser home</I> <li>Dan: <I>var en mand</I> <li>Dut: <I>weest u man</I> <li>Eng: <I>be a man</I> <li>Fin: <I>olkaa mies</I> <li>Fre: <I>soyez homme</I> <li>Ger: <I>seien Sie ein Mann</I> <li>Ita: <I>essere uomo</I> <li>Nor: <I>var en mann</I> <li>Pol: <I>bądź mężczyzna</I> <li>Ron: <I>sã fii om</I> <li>Rus: <I>будь человеком</I> <li>Spa: <I>ser hombre</I> <li>Swe: <I>var en man</I> <li>Urd: <I>آدمی</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>singularImpForm</CODE></TD>
-<TD><A HREF="#ImpForm">ImpForm</A></TD>
-<TD><div class=reveal> <I>be a man</I> <div class=popup> <ul> <li>API: <CODE>mkUtt singularImpForm (mkImp (mkVP man_N))</CODE> <li>Bul: <I>бъди мъж</I> <li>Cat: <I>sigues home</I> <li>Dan: <I>var en mand</I> <li>Dut: <I>wees man</I> <li>Eng: <I>be a man</I> <li>Fin: <I>ole mies</I> <li>Fre: <I>sois homme</I> <li>Ger: <I>sei ein Mann</I> <li>Ita: <I>sii uomo</I> <li>Nor: <I>var en mann</I> <li>Pol: <I>bądź mężczyzna</I> <li>Ron: <I>fii om</I> <li>Rus: <I>будь человеком</I> <li>Spa: <I>sé hombre</I> <li>Swe: <I>var en man</I> <li>Urd: <I>آدمی</I> </ul> </div> </div></TD>
-</TR>
-</TABLE>
-
-<A NAME="Interj"></A>
-<H2>Interj - interjection</H2>
-<P>
-Lexical category, constructors given in
-<A HREF="#RParadigms">lexical paradigms</A>.
-</P>
-<A NAME="ListAP"></A>
-<H2>ListAP</H2>
-<TABLE BORDER="1" CELLPADDING="4">
-<TR>
-<TH>Function</TH>
-<TH>Type</TH>
-<TH COLSPAN="2">Example</TH>
-</TR>
-<TR>
-<TD><CODE>mkListAP</CODE></TD>
-<TD><A HREF="#AP" TITLE="AP - adjectival phrase">AP</A> <CODE>-&gt;</CODE> <A HREF="#AP" TITLE="AP - adjectival phrase">AP</A> <CODE>-&gt;</CODE> <A HREF="#ListAP">ListAP</A></TD>
-<TD><I>list of two</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkListAP</CODE></TD>
-<TD><A HREF="#AP" TITLE="AP - adjectival phrase">AP</A> <CODE>-&gt;</CODE> <A HREF="#ListAP">ListAP</A> <CODE>-&gt;</CODE> <A HREF="#ListAP">ListAP</A></TD>
-<TD><I>list of more</I></TD>
-</TR>
-</TABLE>
-
-<A NAME="ListAdv"></A>
-<H2>ListAdv</H2>
-<TABLE BORDER="1" CELLPADDING="4">
-<TR>
-<TH>Function</TH>
-<TH>Type</TH>
-<TH COLSPAN="2">Example</TH>
-</TR>
-<TR>
-<TD><CODE>mkListAdv</CODE></TD>
-<TD><A HREF="#Adv" TITLE="Adv - verb-phrase-modifying adverb">Adv</A> <CODE>-&gt;</CODE> <A HREF="#Adv" TITLE="Adv - verb-phrase-modifying adverb">Adv</A> <CODE>-&gt;</CODE> <A HREF="#ListAdv">ListAdv</A></TD>
-<TD><I>list of two</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkListAdv</CODE></TD>
-<TD><A HREF="#Adv" TITLE="Adv - verb-phrase-modifying adverb">Adv</A> <CODE>-&gt;</CODE> <A HREF="#ListAdv">ListAdv</A> <CODE>-&gt;</CODE> <A HREF="#ListAdv">ListAdv</A></TD>
-<TD><I>list of more</I></TD>
-</TR>
-</TABLE>
-
-<A NAME="ListNP"></A>
-<H2>ListNP</H2>
-<TABLE BORDER="1" CELLPADDING="4">
-<TR>
-<TH>Function</TH>
-<TH>Type</TH>
-<TH COLSPAN="2">Example</TH>
-</TR>
-<TR>
-<TD><CODE>mkListNP</CODE></TD>
-<TD><A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A> <CODE>-&gt;</CODE> <A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A> <CODE>-&gt;</CODE> <A HREF="#ListNP">ListNP</A></TD>
-<TD><I>list of two</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkListNP</CODE></TD>
-<TD><A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A> <CODE>-&gt;</CODE> <A HREF="#ListNP">ListNP</A> <CODE>-&gt;</CODE> <A HREF="#ListNP">ListNP</A></TD>
-<TD><I>list of more</I></TD>
-</TR>
-</TABLE>
-
-<A NAME="ListRS"></A>
-<H2>ListRS</H2>
-<TABLE BORDER="1" CELLPADDING="4">
-<TR>
-<TH>Function</TH>
-<TH>Type</TH>
-<TH COLSPAN="2">Example</TH>
-</TR>
-<TR>
-<TD><CODE>mkListRS</CODE></TD>
-<TD><A HREF="#RS" TITLE="RS - relative">RS</A> <CODE>-&gt;</CODE> <A HREF="#RS" TITLE="RS - relative">RS</A> <CODE>-&gt;</CODE> <A HREF="#ListRS">ListRS</A></TD>
-<TD><I>list of two</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkListRS</CODE></TD>
-<TD><A HREF="#RS" TITLE="RS - relative">RS</A> <CODE>-&gt;</CODE> <A HREF="#ListRS">ListRS</A> <CODE>-&gt;</CODE> <A HREF="#ListRS">ListRS</A></TD>
-<TD><I>list of more</I></TD>
-</TR>
-</TABLE>
-
-<A NAME="ListS"></A>
-<H2>ListS</H2>
-<TABLE BORDER="1" CELLPADDING="4">
-<TR>
-<TH>Function</TH>
-<TH>Type</TH>
-<TH COLSPAN="2">Example</TH>
-</TR>
-<TR>
-<TD><CODE>mkListS</CODE></TD>
-<TD><A HREF="#S" TITLE="S - declarative sentence">S</A> <CODE>-&gt;</CODE> <A HREF="#S" TITLE="S - declarative sentence">S</A> <CODE>-&gt;</CODE> <A HREF="#ListS">ListS</A></TD>
-<TD><I>list of two</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkListS</CODE></TD>
-<TD><A HREF="#S" TITLE="S - declarative sentence">S</A> <CODE>-&gt;</CODE> <A HREF="#ListS">ListS</A> <CODE>-&gt;</CODE> <A HREF="#ListS">ListS</A></TD>
-<TD><I>list of more</I></TD>
-</TR>
-</TABLE>
-
-<A NAME="N"></A>
-<H2>N - common noun</H2>
-<P>
-Lexical category, constructors given in
-<A HREF="#RParadigms">lexical paradigms</A>.
-</P>
-<A NAME="N2"></A>
-<H2>N2 - relational noun</H2>
-<P>
-Lexical category, constructors given in
-<A HREF="#RParadigms">lexical paradigms</A>.
-</P>
-<A NAME="N3"></A>
-<H2>N3 - three-place relational noun</H2>
-<P>
-Lexical category, constructors given in
-<A HREF="#RParadigms">lexical paradigms</A>.
-</P>
-<A NAME="NP"></A>
-<H2>NP - noun phrase (subject or object)</H2>
-<TABLE BORDER="1" CELLPADDING="4">
-<TR>
-<TH>Function</TH>
-<TH>Type</TH>
-<TH COLSPAN="2">Example</TH>
-</TR>
-<TR>
-<TD><CODE>everybody_NP</CODE></TD>
-<TD><A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A></TD>
-<TD><div class=reveal> <I>everybody</I> <div class=popup> <ul> <li>API: <CODE>everybody_NP</CODE> <li>Bul: <I>всеки</I> <li>Cat: <I>''</I> <li>Dan: <I>alle</I> <li>Dut: <I>alle</I> <li>Eng: <I>everybody</I> <li>Fin: <I>jokainen</I> <li>Fre: <I>''</I> <li>Ger: <I>jeder</I> <li>Ita: <I>''</I> <li>Nor: <I>alle</I> <li>Pol: <I>wszystkich</I> <li>Ron: <I>''</I> <li>Rus: <I>все</I> <li>Spa: <I>''</I> <li>Swe: <I>alla</I> <li>Urd: <I>ہر كوی</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>everything_NP</CODE></TD>
-<TD><A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A></TD>
-<TD><div class=reveal> <I>everything</I> <div class=popup> <ul> <li>API: <CODE>everything_NP</CODE> <li>Bul: <I>всичко</I> <li>Cat: <I>''</I> <li>Dan: <I>alt</I> <li>Dut: <I>alles</I> <li>Eng: <I>everything</I> <li>Fin: <I>kaikki</I> <li>Fre: <I>''</I> <li>Ger: <I>alles</I> <li>Ita: <I>''</I> <li>Nor: <I>alt</I> <li>Pol: <I>wszystkiego</I> <li>Ron: <I>// <li>Rus: //всё</I> <li>Spa: <I>''</I> <li>Swe: <I>allting</I> <li>Urd: <I>ہر چیز</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>he_NP</CODE></TD>
-<TD><A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A></TD>
-<TD><div class=reveal> <I>he</I> <div class=popup> <ul> <li>API: <CODE>mkUtt he_NP</CODE> <li>Bul: <I>той</I> <li>Cat: <I>ell</I> <li>Dan: <I>ham</I> <li>Dut: <I>hij</I> <li>Eng: <I>he</I> <li>Fin: <I>hän</I> <li>Fre: <I>lui</I> <li>Ger: <I>er</I> <li>Ita: <I>lui</I> <li>Nor: <I>ham</I> <li>Pol: <I>on</I> <li>Ron: <I>el</I> <li>Rus: <I>его</I> <li>Spa: <I>él</I> <li>Swe: <I>honom</I> <li>Urd: <I>وہ</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>i_NP</CODE></TD>
-<TD><A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A></TD>
-<TD><div class=reveal> <I>I</I> <div class=popup> <ul> <li>API: <CODE>mkUtt i_NP</CODE> <li>Bul: <I>аз</I> <li>Cat: <I>mi</I> <li>Dan: <I>mig</I> <li>Dut: <I>ik</I> <li>Eng: <I>I</I> <li>Fin: <I>minä</I> <li>Fre: <I>moi</I> <li>Ger: <I>ich</I> <li>Ita: <I>me</I> <li>Nor: <I>meg</I> <li>Pol: <I>ja</I> <li>Ron: <I>eu</I> <li>Rus: <I>меня</I> <li>Spa: <I>mí</I> <li>Swe: <I>mig</I> <li>Urd: <I>میں</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>it_NP</CODE></TD>
-<TD><A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A></TD>
-<TD><div class=reveal> <I>it</I> <div class=popup> <ul> <li>API: <CODE>mkUtt it_NP</CODE> <li>Bul: <I>то</I> <li>Cat: <I>ell</I> <li>Dan: <I>det</I> <li>Dut: <I>het</I> <li>Eng: <I>it</I> <li>Fin: <I>se</I> <li>Fre: <I>lui</I> <li>Ger: <I>es</I> <li>Ita: <I>lui</I> <li>Nor: <I>det</I> <li>Pol: <I>ono</I> <li>Ron: <I>''</I> <li>Rus: <I>его</I> <li>Spa: <I>él</I> <li>Swe: <I>det</I> <li>Urd: <I>یہ</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>mkNP</CODE></TD>
-<TD><A 'HREF="#Quant" TITLE="Quant - quantifier ('nucleus' of Det)"'>Quant</A> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A> <CODE>-&gt;</CODE> <A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A></TD>
-<TD><div class=reveal> <I>this man</I> <div class=popup> <ul> <li>API: <CODE>mkUtt (mkNP this_Quant man_N)</CODE> <li>Bul: <I>този мъж</I> <li>Cat: <I>aquest home</I> <li>Dan: <I>denne mand</I> <li>Dut: <I>deze man</I> <li>Eng: <I>this man</I> <li>Fin: <I>tämä mies</I> <li>Fre: <I>cet homme</I> <li>Ger: <I>dieser Mann</I> <li>Ita: <I>questo uomo</I> <li>Nor: <I>denne mannen</I> <li>Pol: <I>ten mężczyzna</I> <li>Ron: <I>acest om</I> <li>Rus: <I>этот человек</I> <li>Spa: <I>este hombre</I> <li>Swe: <I>den här mannen</I> <li>Urd: <I>یہ آدمی</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>mkNP</CODE></TD>
-<TD><A 'HREF="#Quant" TITLE="Quant - quantifier ('nucleus' of Det)"'>Quant</A> <CODE>-&gt;</CODE> <A HREF="#CN" TITLE="CN - common noun (without determiner)">CN</A> <CODE>-&gt;</CODE> <A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A></TD>
-<TD><div class=reveal> <I>this old man</I> <div class=popup> <ul> <li>API: <CODE>mkUtt (mkNP this_Quant (mkCN old_A man_N))</CODE> <li>Bul: <I>този стар мъж</I> <li>Cat: <I>aquest home vell</I> <li>Dan: <I>denne gamle mand</I> <li>Dut: <I>deze oude man</I> <li>Eng: <I>this old man</I> <li>Fin: <I>tämä vanha mies</I> <li>Fre: <I>ce vieux homme</I> <li>Ger: <I>dieser alte Mann</I> <li>Ita: <I>questo vecchio uomo</I> <li>Nor: <I>denne gamle mannen</I> <li>Pol: <I>ten stary mężczyzna</I> <li>Ron: <I>acest om vechi</I> <li>Rus: <I>этот старый человек</I> <li>Spa: <I>este viejo hombre</I> <li>Swe: <I>den här gamla mannen</I> <li>Urd: <I>یہ بوڑھا آدمی</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>mkNP</CODE></TD>
-<TD><A 'HREF="#Quant" TITLE="Quant - quantifier ('nucleus' of Det)"'>Quant</A> <CODE>-&gt;</CODE> <A HREF="#Num" TITLE="Num - number determining element">Num</A> <CODE>-&gt;</CODE> <A HREF="#CN" TITLE="CN - common noun (without determiner)">CN</A> <CODE>-&gt;</CODE> <A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A></TD>
-<TD><div class=reveal> <I>these five old men</I> <div class=popup> <ul> <li>API: <CODE>mkUtt (mkNP this_Quant (mkNum (mkNumeral n5_Unit)) (mkCN old_A man_N))</CODE> <li>Bul: <I>тези петима стари мъже</I> <li>Cat: <I>aquests cinc homes vells</I> <li>Dan: <I>disse fem gamle mænd</I> <li>Dut: <I>deze vijf oude mannen</I> <li>Eng: <I>these five old men</I> <li>Fin: <I>nämä viisi vanhaa miestä</I> <li>Fre: <I>ces cinq vieux hommes</I> <li>Ger: <I>diese fünf alten Männer</I> <li>Ita: <I>questi cinque vecchi uomini</I> <li>Nor: <I>disse fem gamle mennen</I> <li>Pol: <I>tych pięciu starych mężczyzn</I> <li>Ron: <I>aceşti cinci oameni vechi</I> <li>Rus: <I>эти пять старые человеки</I> <li>Spa: <I>estos cinco viejos hombres</I> <li>Swe: <I>de här fem gamla männen</I> <li>Urd: <I>یہ پانچ بوڑھے آدمی</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>mkNP</CODE></TD>
-<TD><A 'HREF="#Quant" TITLE="Quant - quantifier ('nucleus' of Det)"'>Quant</A> <CODE>-&gt;</CODE> <A HREF="#Num" TITLE="Num - number determining element">Num</A> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A> <CODE>-&gt;</CODE> <A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A></TD>
-<TD><div class=reveal> <I>these five men</I> <div class=popup> <ul> <li>API: <CODE>mkUtt (mkNP this_Quant (mkNum (mkNumeral n5_Unit)) man_N)</CODE> <li>Bul: <I>тези петима мъже</I> <li>Cat: <I>aquests cinc homes</I> <li>Dan: <I>disse fem mænd</I> <li>Dut: <I>deze vijf mannen</I> <li>Eng: <I>these five men</I> <li>Fin: <I>nämä viisi miestä</I> <li>Fre: <I>ces cinq hommes</I> <li>Ger: <I>diese fünf Männer</I> <li>Ita: <I>questi cinque uomini</I> <li>Nor: <I>disse fem mennen</I> <li>Pol: <I>tych pięciu mężczyzn</I> <li>Ron: <I>aceşti cinci oameni</I> <li>Rus: <I>эти пять человеки</I> <li>Spa: <I>estos cinco hombres</I> <li>Swe: <I>de här fem männen</I> <li>Urd: <I>یہ پانچ آدمی</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>mkNP</CODE></TD>
-<TD><A HREF="#Det" TITLE="Det - determiner phrase">Det</A> <CODE>-&gt;</CODE> <A HREF="#CN" TITLE="CN - common noun (without determiner)">CN</A> <CODE>-&gt;</CODE> <A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A></TD>
-<TD><div class=reveal> <I>the five old men</I> <div class=popup> <ul> <li>API: <CODE>mkUtt (mkNP (mkDet the_Quant (mkNum (mkNumeral n5_Unit))) (mkCN old_A man_N))</CODE> <li>Bul: <I>петимата стари мъже</I> <li>Cat: <I>els cinc homes vells</I> <li>Dan: <I>de fem gamle mænd</I> <li>Dut: <I>de vijf oude mannen</I> <li>Eng: <I>the five old men</I> <li>Fin: <I>viisi vanhaa miestä</I> <li>Fre: <I>les cinq vieux hommes</I> <li>Ger: <I>die fünf alten Männer</I> <li>Ita: <I>i cinque vecchi uomini</I> <li>Nor: <I>de fem gamle mennen</I> <li>Pol: <I>pięciu starych mężczyzn</I> <li>Ron: <I>cei cinci oameni vechi</I> <li>Rus: <I>пять старые человеки</I> <li>Spa: <I>los cinco viejos hombres</I> <li>Swe: <I>de fem gamla männen</I> <li>Urd: <I>پانچ بوڑھے آدمی</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>mkNP</CODE></TD>
-<TD><A HREF="#Det" TITLE="Det - determiner phrase">Det</A> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A> <CODE>-&gt;</CODE> <A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A></TD>
-<TD><div class=reveal> <I>the five men</I> <div class=popup> <ul> <li>API: <CODE>mkUtt (mkNP (mkDet the_Quant (mkNum (mkNumeral n5_Unit))) man_N)</CODE> <li>Bul: <I>петимата мъже</I> <li>Cat: <I>els cinc homes</I> <li>Dan: <I>de fem mændene</I> <li>Dut: <I>de vijf mannen</I> <li>Eng: <I>the five men</I> <li>Fin: <I>viisi miestä</I> <li>Fre: <I>les cinq hommes</I> <li>Ger: <I>die fünf Männer</I> <li>Ita: <I>i cinque uomini</I> <li>Nor: <I>de fem mennen</I> <li>Pol: <I>pięciu mężczyzn</I> <li>Ron: <I>cei cinci oameni</I> <li>Rus: <I>пять человеки</I> <li>Spa: <I>los cinco hombres</I> <li>Swe: <I>de fem männen</I> <li>Urd: <I>پانچ آدمی</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>mkNP</CODE></TD>
-<TD><A HREF="#Numeral" TITLE="Numeral - cardinal or ordinal in words">Numeral</A> <CODE>-&gt;</CODE> <A HREF="#CN" TITLE="CN - common noun (without determiner)">CN</A> <CODE>-&gt;</CODE> <A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A></TD>
-<TD><div class=reveal> <I>fifty old men</I> <div class=popup> <ul> <li>API: <CODE>mkUtt (mkNP (mkNumeral (tenfoldSub100 n5_Unit)) (mkCN old_A man_N))</CODE> <li>Bul: <I>петдесетима стари мъже</I> <li>Cat: <I>cinquanta homes vells</I> <li>Dan: <I>halvtreds gamle mænd</I> <li>Dut: <I>vijftig oude mannen</I> <li>Eng: <I>fifty old men</I> <li>Fin: <I>viisikymmentä vanhaa miestä</I> <li>Fre: <I>cinquante vieux hommes</I> <li>Ger: <I>fünfzig alte Männer</I> <li>Ita: <I>cinquanta vecchi uomini</I> <li>Nor: <I>femti gamle menn</I> <li>Pol: <I>pięćdziesięciu starych mężczyzn</I> <li>Ron: <I>cincizeci de oameni vechi</I> <li>Rus: <I>пятьдесят старые человеки</I> <li>Spa: <I>cinquenta viejos hombres</I> <li>Swe: <I>femtio gamla män</I> <li>Urd: <I>پچاس بوڑھے آدمی</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>mkNP</CODE></TD>
-<TD><A HREF="#Numeral" TITLE="Numeral - cardinal or ordinal in words">Numeral</A> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A> <CODE>-&gt;</CODE> <A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A></TD>
-<TD><div class=reveal> <I>fifty men</I> <div class=popup> <ul> <li>API: <CODE>mkUtt (mkNP (mkNumeral (tenfoldSub100 n5_Unit)) man_N)</CODE> <li>Bul: <I>петдесетима мъже</I> <li>Cat: <I>cinquanta homes</I> <li>Dan: <I>halvtreds mænd</I> <li>Dut: <I>vijftig mannen</I> <li>Eng: <I>fifty men</I> <li>Fin: <I>viisikymmentä miestä</I> <li>Fre: <I>cinquante hommes</I> <li>Ger: <I>fünfzig Männer</I> <li>Ita: <I>cinquanta uomini</I> <li>Nor: <I>femti menn</I> <li>Pol: <I>pięćdziesięciu mężczyzn</I> <li>Ron: <I>cincizeci de oameni</I> <li>Rus: <I>пятьдесят человеки</I> <li>Spa: <I>cinquenta hombres</I> <li>Swe: <I>femtio män</I> <li>Urd: <I>پچاس آدمی</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>mkNP</CODE></TD>
-<TD><A HREF="#Digits" TITLE="Digits - cardinal or ordinal in digits">Digits</A> <CODE>-&gt;</CODE> <A HREF="#CN" TITLE="CN - common noun (without determiner)">CN</A> <CODE>-&gt;</CODE> <A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A></TD>
-<TD><div class=reveal> <I>5 1 old men</I> <div class=popup> <ul> <li>API: <CODE>mkUtt (mkNP (mkDigits n5_Dig (mkDigits n1_Dig)) (mkCN old_A man_N))</CODE> <li>Bul: <I>5 1 стари мъже</I> <li>Cat: <I>5 1 homes vells</I> <li>Dan: <I>5 1 gamle mænd</I> <li>Dut: <I>5 1 oude mannen</I> <li>Eng: <I>5 1 old men</I> <li>Fin: <I>5 1 vanhaa miestä</I> <li>Fre: <I>5 1 vieux hommes</I> <li>Ger: <I>5 1 alte Männer</I> <li>Ita: <I>5 1 vecchi uomini</I> <li>Nor: <I>5 1 gamle menn</I> <li>Pol: <I>5 1 starzy mężczyźni</I> <li>Ron: <I>5 1 de oameni vechi</I> <li>Rus: <I>5 1 старые человеки</I> <li>Spa: <I>5 1 viejos hombres</I> <li>Swe: <I>5 1 gamla män</I> <li>Urd: <I>۱۵ بوڑھے آدمی</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>mkNP</CODE></TD>
-<TD><A HREF="#Digits" TITLE="Digits - cardinal or ordinal in digits">Digits</A> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A> <CODE>-&gt;</CODE> <A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A></TD>
-<TD><div class=reveal> <I>5 1 men</I> <div class=popup> <ul> <li>API: <CODE>mkUtt (mkNP (mkDigits n5_Dig (mkDigits n1_Dig)) man_N)</CODE> <li>Bul: <I>5 1 мъже</I> <li>Cat: <I>5 1 homes</I> <li>Dan: <I>5 1 mænd</I> <li>Dut: <I>5 1 mannen</I> <li>Eng: <I>5 1 men</I> <li>Fin: <I>5 1 miestä</I> <li>Fre: <I>5 1 hommes</I> <li>Ger: <I>5 1 Männer</I> <li>Ita: <I>5 1 uomini</I> <li>Nor: <I>5 1 menn</I> <li>Pol: <I>5 1 mężczyźni</I> <li>Ron: <I>5 1 de oameni</I> <li>Rus: <I>5 1 человеки</I> <li>Spa: <I>5 1 hombres</I> <li>Swe: <I>5 1 män</I> <li>Urd: <I>۱۵ آدمی</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>mkNP</CODE></TD>
-<TD><A HREF="#Card" TITLE="Card - cardinal number">Card</A> <CODE>-&gt;</CODE> <A HREF="#CN" TITLE="CN - common noun (without determiner)">CN</A> <CODE>-&gt;</CODE> <A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A></TD>
-<TD><I>forty-five old men</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkNP</CODE></TD>
-<TD><A HREF="#Card" TITLE="Card - cardinal number">Card</A> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A> <CODE>-&gt;</CODE> <A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A></TD>
-<TD><I>forty-five men</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkNP</CODE></TD>
-<TD><A HREF="#Pron" TITLE="Pron - personal pronoun">Pron</A> <CODE>-&gt;</CODE> <A HREF="#CN" TITLE="CN - common noun (without determiner)">CN</A> <CODE>-&gt;</CODE> <A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A></TD>
-<TD><div class=reveal> <I>my old man</I> <div class=popup> <ul> <li>API: <CODE>mkUtt (mkNP i_Pron (mkCN old_A man_N))</CODE> <li>Bul: <I>моят стар мъж</I> <li>Cat: <I>el meu home vell</I> <li>Dan: <I>min gamle mand</I> <li>Dut: <I>mijn oude man</I> <li>Eng: <I>my old man</I> <li>Fin: <I>minun vanha mieheni</I> <li>Fre: <I>mon vieux homme</I> <li>Ger: <I>mein alter Mann</I> <li>Ita: <I>il mio vecchio uomo</I> <li>Nor: <I>min gamle mann</I> <li>Pol: <I>mój stary mężczyzna</I> <li>Ron: <I>omul vechi meu</I> <li>Rus: <I>моего старый человек</I> <li>Spa: <I>mi viejo hombre</I> <li>Swe: <I>min gamla man</I> <li>Urd: <I>میرا بوڑھا آدمی</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>mkNP</CODE></TD>
-<TD><A HREF="#Pron" TITLE="Pron - personal pronoun">Pron</A> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A> <CODE>-&gt;</CODE> <A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A></TD>
-<TD><div class=reveal> <I>my man</I> <div class=popup> <ul> <li>API: <CODE>mkUtt (mkNP i_Pron man_N)</CODE> <li>Bul: <I>моят мъж</I> <li>Cat: <I>el meu home</I> <li>Dan: <I>min mand</I> <li>Dut: <I>mijn man</I> <li>Eng: <I>my man</I> <li>Fin: <I>minun mieheni</I> <li>Fre: <I>mon homme</I> <li>Ger: <I>mein Mann</I> <li>Ita: <I>il mio uomo</I> <li>Nor: <I>min mann</I> <li>Pol: <I>mój mężczyzna</I> <li>Ron: <I>omul meu</I> <li>Rus: <I>моего человек</I> <li>Spa: <I>mi hombre</I> <li>Swe: <I>min man</I> <li>Urd: <I>میرا آدمی</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>mkNP</CODE></TD>
-<TD><A HREF="#PN" TITLE="PN - proper name">PN</A> <CODE>-&gt;</CODE> <A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A></TD>
-<TD><div class=reveal> <I>Paris</I> <div class=popup> <ul> <li>API: <CODE>mkUtt (mkNP paris_PN)</CODE> <li>Bul: <I>Париж</I> <li>Cat: <I>Paris</I> <li>Dan: <I>Paris</I> <li>Dut: <I>Parijs</I> <li>Eng: <I>Paris</I> <li>Fin: <I>Pariisi</I> <li>Fre: <I>Paris</I> <li>Ger: <I>Paris</I> <li>Ita: <I>Parigi</I> <li>Nor: <I>Paris</I> <li>Pol: <I>Paryż</I> <li>Ron: <I>Paris</I> <li>Rus: <I>Париж</I> <li>Spa: <I>Paris</I> <li>Swe: <I>Paris</I> <li>Urd: <I>پیرس</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>mkNP</CODE></TD>
-<TD><A HREF="#Pron" TITLE="Pron - personal pronoun">Pron</A> <CODE>-&gt;</CODE> <A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A></TD>
-<TD><div class=reveal> <I>we</I> <div class=popup> <ul> <li>API: <CODE>mkUtt (mkNP we_Pron)</CODE> <li>Bul: <I>ние</I> <li>Cat: <I>nosaltres</I> <li>Dan: <I>os</I> <li>Dut: <I>we</I> <li>Eng: <I>we</I> <li>Fin: <I>me</I> <li>Fre: <I>nous</I> <li>Ger: <I>wir</I> <li>Ita: <I>noi</I> <li>Nor: <I>oss</I> <li>Pol: <I>my</I> <li>Ron: <I>noi</I> <li>Rus: <I>нас</I> <li>Spa: <I>nosotros</I> <li>Swe: <I>oss</I> <li>Urd: <I>ہم</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>mkNP</CODE></TD>
-<TD><A 'HREF="#Quant" TITLE="Quant - quantifier ('nucleus' of Det)"'>Quant</A> <CODE>-&gt;</CODE> <A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A></TD>
-<TD><div class=reveal> <I>this</I> <div class=popup> <ul> <li>API: <CODE>mkUtt (mkNP this_Quant)</CODE> <li>Bul: <I>това</I> <li>Cat: <I>aquest</I> <li>Dan: <I>dette</I> <li>Dut: <I>dit</I> <li>Eng: <I>this</I> <li>Fin: <I>tämä</I> <li>Fre: <I>celui-ci</I> <li>Ger: <I>dieses</I> <li>Ita: <I>questo</I> <li>Nor: <I>dette</I> <li>Pol: <I>ten</I> <li>Ron: <I>acesta</I> <li>Rus: <I>это</I> <li>Spa: <I>este</I> <li>Swe: <I>det här</I> <li>Urd: <I>یہ</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>mkNP</CODE></TD>
-<TD><A 'HREF="#Quant" TITLE="Quant - quantifier ('nucleus' of Det)"'>Quant</A> <CODE>-&gt;</CODE> <A HREF="#Num" TITLE="Num - number determining element">Num</A> <CODE>-&gt;</CODE> <A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A></TD>
-<TD><div class=reveal> <I>these five</I> <div class=popup> <ul> <li>API: <CODE>mkUtt (mkNP this_Quant (mkNum (mkNumeral n5_Unit)))</CODE> <li>Bul: <I>тези пет</I> <li>Cat: <I>aquests cinc</I> <li>Dan: <I>disse fem</I> <li>Dut: <I>deze vijf</I> <li>Eng: <I>these five</I> <li>Fin: <I>nämä viisi</I> <li>Fre: <I>ces cinq</I> <li>Ger: <I>diese fünf</I> <li>Ita: <I>questi cinque</I> <li>Nor: <I>disse fem</I> <li>Pol: <I>tych pięciu</I> <li>Ron: <I>aceştia cinci</I> <li>Rus: <I>эти пять</I> <li>Spa: <I>estos cinco</I> <li>Swe: <I>de här fem</I> <li>Urd: <I>یہ پانچ</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>mkNP</CODE></TD>
-<TD><A HREF="#Det" TITLE="Det - determiner phrase">Det</A> <CODE>-&gt;</CODE> <A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A></TD>
-<TD><div class=reveal> <I>the five best</I> <div class=popup> <ul> <li>API: <CODE>mkUtt (mkNP (mkDet the_Quant (mkNum (mkNumeral n5_Unit)) (mkOrd good_A)))</CODE> <li>Bul: <I>петте най - добри</I> <li>Cat: <I>els cinc millors</I> <li>Dan: <I>de fem bedste</I> <li>Dut: <I>die vijf beste</I> <li>Eng: <I>the five best</I> <li>Fin: <I>ne viisi parhaimmat</I> <li>Fre: <I>les cinq meilleurs</I> <li>Ger: <I>die fünf besten</I> <li>Ita: <I>i cinque migliori</I> <li>Nor: <I>de fem beste</I> <li>Pol: <I>pięciu najlepszych</I> <li>Ron: <I>cei mai buni cinci</I> <li>Rus: <I>пять хорошие</I> <li>Spa: <I>los cinco mejores</I> <li>Swe: <I>de fem bästa</I> <li>Urd: <I>پانچ سب سے اچھا</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>mkNP</CODE></TD>
-<TD><A HREF="#CN" TITLE="CN - common noun (without determiner)">CN</A> <CODE>-&gt;</CODE> <A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A></TD>
-<TD><div class=reveal> <I>old beer</I> <div class=popup> <ul> <li>API: <CODE>mkUtt (mkNP (mkCN old_A beer_N))</CODE> <li>Bul: <I>стара бира</I> <li>Cat: <I>cervesa vell</I> <li>Dan: <I>gammelt øl</I> <li>Dut: <I>oud bier</I> <li>Eng: <I>old beer</I> <li>Fin: <I>vanha olut</I> <li>Fre: <I>pre {"de"; "d'" / strs {"a"; "à"; "â"; "e"; "é"; "è"; "ê¨"; "h";</I> <li>Ger: <I>altes Bier</I> <li>Ita: <I>della vecchia birra</I> <li>Nor: <I>gammelt øl</I> <li>Pol: <I>stare piwo</I> <li>Ron: <I>bere veche</I> <li>Rus: <I>старое пиво</I> <li>Spa: <I>vieja cerveza</I> <li>Swe: <I>gammalt öl</I> <li>Urd: <I>بوڑھا بییر</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>mkNP</CODE></TD>
-<TD><A HREF="#N" TITLE="N - common noun">N</A> <CODE>-&gt;</CODE> <A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A></TD>
-<TD><div class=reveal> <I>beer</I> <div class=popup> <ul> <li>API: <CODE>mkUtt (mkNP beer_N)</CODE> <li>Bul: <I>бира</I> <li>Cat: <I>cervesa</I> <li>Dan: <I>øl</I> <li>Dut: <I>bier</I> <li>Eng: <I>beer</I> <li>Fin: <I>olut</I> <li>Fre: <I>pre {"de"; "d'" / strs {"a"; "à"; "â"; "e"; "é"; "è"; "ê¨"; "h";</I> <li>Ger: <I>Bier</I> <li>Ita: <I>della birra</I> <li>Nor: <I>øl</I> <li>Pol: <I>piwo</I> <li>Ron: <I>bere</I> <li>Rus: <I>пиво</I> <li>Spa: <I>cerveza</I> <li>Swe: <I>öl</I> <li>Urd: <I>بییر</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>mkNP</CODE></TD>
-<TD><A HREF="#Predet" TITLE="Predet - predeterminer (prefixed Quant)">Predet</A> <CODE>-&gt;</CODE> <A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A> <CODE>-&gt;</CODE> <A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A></TD>
-<TD><div class=reveal> <I>only this woman</I> <div class=popup> <ul> <li>API: <CODE>mkUtt (mkNP only_Predet (mkNP this_Det woman_N))</CODE> <li>Bul: <I>само тази жена</I> <li>Cat: <I>nomÈs aquesta dona</I> <li>Dan: <I>kun denne kvinde</I> <li>Dut: <I>slechts deze vrouw</I> <li>Eng: <I>only this woman</I> <li>Fin: <I>vain tämä nainen</I> <li>Fre: <I>seulement cette femme</I> <li>Ger: <I>nur diese Frau</I> <li>Ita: <I>soltanto questa donna</I> <li>Nor: <I>kun denne kvinna</I> <li>Pol: <I>tylko tej kobiety</I> <li>Ron: <I>doar această femeie</I> <li>Rus: <I>единственную эту женщину</I> <li>Spa: <I>solamente esta mujer</I> <li>Swe: <I>bara den här kvinnan</I> <li>Urd: <I>صرف یہ عورت</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>mkNP</CODE></TD>
-<TD><A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A> <CODE>-&gt;</CODE> <A HREF="#V2" TITLE="V2 - two-place verb">V2</A> <CODE>-&gt;</CODE> <A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A></TD>
-<TD><div class=reveal> <I>the man seen</I> <div class=popup> <ul> <li>API: <CODE>mkUtt (mkNP (mkNP the_Det man_N) see_V2)</CODE> <li>Bul: <I>мъжът видян</I> <li>Cat: <I>l' home vist</I> <li>Dan: <I>manden set</I> <li>Dut: <I>de man gezien</I> <li>Eng: <I>the man seen</I> <li>Fin: <I>mies nähtynä</I> <li>Fre: <I>l' homme vu</I> <li>Ger: <I>der Mann gesehen</I> <li>Ita: <I>l' uomo visto</I> <li>Nor: <I>mannen sett</I> <li>Pol: <I>mężczyzna zobaczony</I> <li>Ron: <I>omul văzut</I> <li>Rus: <I>человек видеть</I> <li>Spa: <I>el hombre visto</I> <li>Swe: <I>mannen sedd</I> <li>Urd: <I>دیكھا آدمی</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>mkNP</CODE></TD>
-<TD><A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A> <CODE>-&gt;</CODE> <A HREF="#Adv" TITLE="Adv - verb-phrase-modifying adverb">Adv</A> <CODE>-&gt;</CODE> <A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A></TD>
-<TD><div class=reveal> <I>Paris today</I> <div class=popup> <ul> <li>API: <CODE>mkUtt (mkNP (mkNP paris_PN) today_Adv)</CODE> <li>Bul: <I>Париж днес</I> <li>Cat: <I>Paris avui</I> <li>Dan: <I>Paris idag</I> <li>Dut: <I>Parijs vandaag</I> <li>Eng: <I>Paris today</I> <li>Fin: <I>Pariisi tänään</I> <li>Fre: <I>Paris aujourd'hui</I> <li>Ger: <I>Paris heute</I> <li>Ita: <I>Parigi oggi</I> <li>Nor: <I>Paris idag</I> <li>Pol: <I>Paryż dziś</I> <li>Ron: <I>Paris astăzi</I> <li>Rus: <I>*</I> <li>Spa: <I>Paris hoy</I> <li>Swe: <I>Paris idag</I> <li>Urd: <I>آج پیرس</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>mkNP</CODE></TD>
-<TD><A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A> <CODE>-&gt;</CODE> <A HREF="#RS" TITLE="RS - relative">RS</A> <CODE>-&gt;</CODE> <A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A></TD>
-<TD><div class=reveal> <I>John , who walks</I> <div class=popup> <ul> <li>API: <CODE>mkUtt (mkNP (mkNP john_PN) (mkRS (mkRCl which_RP (mkVP walk_V))))</CODE> <li>Bul: <I>Джон който ходи</I> <li>Cat: <I>Joan que camina</I> <li>Dan: <I>John , som går</I> <li>Dut: <I>Jan , dat loopt</I> <li>Eng: <I>John , who walks</I> <li>Fin: <I>Jussi , joka kävelee</I> <li>Fre: <I>Jean qui marche</I> <li>Ger: <I>Johann , das geht</I> <li>Ita: <I>Giovanni che cammina</I> <li>Nor: <I>John , som går</I> <li>Pol: <I>Jan , który spaceruje</I> <li>Ron: <I>Ion care merge</I> <li>Rus: <I>Ивана , которого гуляет</I> <li>Spa: <I>Juan que camina</I> <li>Swe: <I>Johan , som går</I> <li>Urd: <I>جان , جو چلتا ہے</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>mkNP</CODE></TD>
-<TD><A HREF="#Conj" TITLE="Conj - conjunction">Conj</A> <CODE>-&gt;</CODE> <A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A> <CODE>-&gt;</CODE> <A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A> <CODE>-&gt;</CODE> <A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A></TD>
-<TD><div class=reveal> <I>this woman or John</I> <div class=popup> <ul> <li>API: <CODE>mkUtt (mkNP or_Conj (mkNP this_Det woman_N) (mkNP john_PN))</CODE> <li>Bul: <I>тази жена или Джон</I> <li>Cat: <I>aquesta dona o Joan</I> <li>Dan: <I>denne kvinde eller John</I> <li>Dut: <I>deze vrouw of Jan</I> <li>Eng: <I>this woman or John</I> <li>Fin: <I>tämä nainen tai Jussi</I> <li>Fre: <I>cette femme ou Jean</I> <li>Ger: <I>diese Frau oder Johann</I> <li>Ita: <I>questa donna o Giovanni</I> <li>Nor: <I>denne kvinna eller John</I> <li>Pol: <I>ta kobieta lub Jan</I> <li>Ron: <I>această femeie sau Ion</I> <li>Rus: <I>эту женщину или Ивана</I> <li>Spa: <I>esta mujer o Juan</I> <li>Swe: <I>den här kvinnan eller Johan</I> <li>Urd: <I>یہ عورت یا جان</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>mkNP</CODE></TD>
-<TD><A HREF="#Conj" TITLE="Conj - conjunction">Conj</A> <CODE>-&gt;</CODE> <A HREF="#ListNP">ListNP</A> <CODE>-&gt;</CODE> <A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A></TD>
-<TD><div class=reveal> <I>this woman , John or I</I> <div class=popup> <ul> <li>API: <CODE>mkUtt (mkNP or_Conj (mkListNP (mkNP this_Det woman_N) (mkListNP (mkNP john_PN) i_NP)))</CODE> <li>Bul: <I>тази жена , Джон или аз</I> <li>Cat: <I>aquesta dona , Joan o mi</I> <li>Dan: <I>denne kvinde , John eller mig</I> <li>Dut: <I>deze vrouw , Jan of ik</I> <li>Eng: <I>this woman , John or I</I> <li>Fin: <I>tämä nainen , Jussi tai minä</I> <li>Fre: <I>cette femme , Jean ou moi</I> <li>Ger: <I>diese Frau , Johann oder ich</I> <li>Ita: <I>questa donna , Giovanni o me</I> <li>Nor: <I>denne kvinna , John eller meg</I> <li>Pol: <I>ta kobieta , Jan lub ja</I> <li>Ron: <I>această femeie , Ion sau eu</I> <li>Rus: <I>Ивана , меня или эту женщину</I> <li>Spa: <I>esta mujer , Juan o mí</I> <li>Swe: <I>den här kvinnan , Johan eller mig</I> <li>Urd: <I>یہ عورت , جان یا میں</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>nobody_NP</CODE></TD>
-<TD><A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A></TD>
-<TD><div class=reveal> <I>nobody</I> <div class=popup> <ul> <li>API: <CODE>nobody_NP</CODE> <li>Bul: <I>*</I> <li>Cat: <I>''</I> <li>Dan: <I>*</I> <li>Dut: <I>niemand</I> <li>Eng: <I>nobody</I> <li>Fin: <I>ei kukaan</I> <li>Fre: <I>''</I> <li>Ger: <I>niemand</I> <li>Ita: <I>''</I> <li>Nor: <I>*</I> <li>Pol: <I>nikogo</I> <li>Ron: <I>''</I> <li>Rus: <I>*</I> <li>Spa: <I>*</I> <li>Swe: <I>ingen</I> <li>Urd: <I>كوی نہیں</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>nothing_NP</CODE></TD>
-<TD><A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A></TD>
-<TD><div class=reveal> <I>nothing</I> <div class=popup> <ul> <li>API: <CODE>nothing_NP</CODE> <li>Bul: <I>*</I> <li>Cat: <I>''</I> <li>Dan: <I>*</I> <li>Dut: <I>niets</I> <li>Eng: <I>nothing</I> <li>Fin: <I>ei mikään</I> <li>Fre: <I>''</I> <li>Ger: <I>nichts</I> <li>Ita: <I>''</I> <li>Nor: <I>*</I> <li>Pol: <I>niczego</I> <li>Ron: <I>''</I> <li>Rus: <I>*</I> <li>Spa: <I>*</I> <li>Swe: <I>inget</I> <li>Urd: <I>كوی چیز نہیں</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>she_NP</CODE></TD>
-<TD><A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A></TD>
-<TD><div class=reveal> <I>she</I> <div class=popup> <ul> <li>API: <CODE>mkUtt she_NP</CODE> <li>Bul: <I>тя</I> <li>Cat: <I>ella</I> <li>Dan: <I>hende</I> <li>Dut: <I>ze</I> <li>Eng: <I>she</I> <li>Fin: <I>hän</I> <li>Fre: <I>elle</I> <li>Ger: <I>sie</I> <li>Ita: <I>lei</I> <li>Nor: <I>henne</I> <li>Pol: <I>ona</I> <li>Ron: <I>ea</I> <li>Rus: <I>её</I> <li>Spa: <I>ella</I> <li>Swe: <I>henne</I> <li>Urd: <I>وہ</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>somebody_NP</CODE></TD>
-<TD><A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A></TD>
-<TD><div class=reveal> <I>somebody</I> <div class=popup> <ul> <li>API: <CODE>somebody_NP</CODE> <li>Bul: <I>някой</I> <li>Cat: <I>''</I> <li>Dan: <I>nogen</I> <li>Dut: <I>iemand</I> <li>Eng: <I>somebody</I> <li>Fin: <I>joku</I> <li>Fre: <I>''</I> <li>Ger: <I>jemand</I> <li>Ita: <I>''</I> <li>Nor: <I>noen</I> <li>Pol: <I>kogoś</I> <li>Ron: <I>''</I> <li>Rus: <I>кто-то</I> <li>Spa: <I>''</I> <li>Swe: <I>någon</I> <li>Urd: <I>كوی</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>something_NP</CODE></TD>
-<TD><A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A></TD>
-<TD><div class=reveal> <I>something</I> <div class=popup> <ul> <li>API: <CODE>something_NP</CODE> <li>Bul: <I>нещо</I> <li>Cat: <I>''</I> <li>Dan: <I>noget</I> <li>Dut: <I>iets</I> <li>Eng: <I>something</I> <li>Fin: <I>jokin</I> <li>Fre: <I>''</I> <li>Ger: <I>etwas</I> <li>Ita: <I>''</I> <li>Nor: <I>noe</I> <li>Pol: <I>czegoś</I> <li>Ron: <I>''</I> <li>Rus: <I>что-то</I> <li>Spa: <I>''</I> <li>Swe: <I>något</I> <li>Urd: <I>كوی چیز</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>that_NP</CODE></TD>
-<TD><A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A></TD>
-<TD><div class=reveal> <I>that</I> <div class=popup> <ul> <li>API: <CODE>mkUtt that_NP</CODE> <li>Bul: <I>онова</I> <li>Cat: <I>aquell</I> <li>Dan: <I>det der</I> <li>Dut: <I>dat</I> <li>Eng: <I>that</I> <li>Fin: <I>tuo</I> <li>Fre: <I>celui-là</I> <li>Ger: <I>jenes</I> <li>Ita: <I>quello</I> <li>Nor: <I>det der</I> <li>Pol: <I>tamten</I> <li>Ron: <I>acela</I> <li>Rus: <I>то</I> <li>Spa: <I>ese</I> <li>Swe: <I>det där</I> <li>Urd: <I>وہ</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>these_NP</CODE></TD>
-<TD><A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A></TD>
-<TD><div class=reveal> <I>these</I> <div class=popup> <ul> <li>API: <CODE>mkUtt these_NP</CODE> <li>Bul: <I>тези</I> <li>Cat: <I>aquests</I> <li>Dan: <I>disse</I> <li>Dut: <I>deze</I> <li>Eng: <I>these</I> <li>Fin: <I>nämä</I> <li>Fre: <I>ceux-ci</I> <li>Ger: <I>diese</I> <li>Ita: <I>questi</I> <li>Nor: <I>disse</I> <li>Pol: <I>ci</I> <li>Ron: <I>aceştia</I> <li>Rus: <I>эти</I> <li>Spa: <I>estos</I> <li>Swe: <I>de här</I> <li>Urd: <I>یہ</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>they_NP</CODE></TD>
-<TD><A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A></TD>
-<TD><div class=reveal> <I>they</I> <div class=popup> <ul> <li>API: <CODE>mkUtt they_NP</CODE> <li>Bul: <I>те</I> <li>Cat: <I>elles</I> <li>Dan: <I>dem</I> <li>Dut: <I>ze</I> <li>Eng: <I>they</I> <li>Fin: <I>he</I> <li>Fre: <I>eux</I> <li>Ger: <I>sie</I> <li>Ita: <I>loro</I> <li>Nor: <I>dem</I> <li>Pol: <I>oni</I> <li>Ron: <I>ei</I> <li>Rus: <I>их</I> <li>Spa: <I>ellos</I> <li>Swe: <I>dem</I> <li>Urd: <I>وہ</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>this_NP</CODE></TD>
-<TD><A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A></TD>
-<TD><div class=reveal> <I>this</I> <div class=popup> <ul> <li>API: <CODE>mkUtt this_NP</CODE> <li>Bul: <I>това</I> <li>Cat: <I>aquest</I> <li>Dan: <I>dette</I> <li>Dut: <I>dit</I> <li>Eng: <I>this</I> <li>Fin: <I>tämä</I> <li>Fre: <I>celui-ci</I> <li>Ger: <I>dieses</I> <li>Ita: <I>questo</I> <li>Nor: <I>dette</I> <li>Pol: <I>ten</I> <li>Ron: <I>acesta</I> <li>Rus: <I>это</I> <li>Spa: <I>este</I> <li>Swe: <I>det här</I> <li>Urd: <I>یہ</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>those_NP</CODE></TD>
-<TD><A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A></TD>
-<TD><div class=reveal> <I>those</I> <div class=popup> <ul> <li>API: <CODE>mkUtt those_NP</CODE> <li>Bul: <I>онези</I> <li>Cat: <I>aquells</I> <li>Dan: <I>de der</I> <li>Dut: <I>die</I> <li>Eng: <I>those</I> <li>Fin: <I>nuo</I> <li>Fre: <I>ceux-là</I> <li>Ger: <I>jene</I> <li>Ita: <I>quelli</I> <li>Nor: <I>de der</I> <li>Pol: <I>tamci</I> <li>Ron: <I>aceia</I> <li>Rus: <I>те</I> <li>Spa: <I>esos</I> <li>Swe: <I>de där</I> <li>Urd: <I>وہ</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>we_NP</CODE></TD>
-<TD><A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A></TD>
-<TD><div class=reveal> <I>we</I> <div class=popup> <ul> <li>API: <CODE>mkUtt we_NP</CODE> <li>Bul: <I>ние</I> <li>Cat: <I>nosaltres</I> <li>Dan: <I>os</I> <li>Dut: <I>we</I> <li>Eng: <I>we</I> <li>Fin: <I>me</I> <li>Fre: <I>nous</I> <li>Ger: <I>wir</I> <li>Ita: <I>noi</I> <li>Nor: <I>oss</I> <li>Pol: <I>my</I> <li>Ron: <I>noi</I> <li>Rus: <I>нас</I> <li>Spa: <I>nosotros</I> <li>Swe: <I>oss</I> <li>Urd: <I>ہم</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>youPl_NP</CODE></TD>
-<TD><A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A></TD>
-<TD><div class=reveal> <I>you</I> <div class=popup> <ul> <li>API: <CODE>mkUtt youPl_NP</CODE> <li>Bul: <I>вие</I> <li>Cat: <I>vosaltres</I> <li>Dan: <I>jer</I> <li>Dut: <I>jullie</I> <li>Eng: <I>you</I> <li>Fin: <I>te</I> <li>Fre: <I>vous</I> <li>Ger: <I>ihr</I> <li>Ita: <I>voi</I> <li>Nor: <I>dere</I> <li>Pol: <I>wy</I> <li>Ron: <I>voi</I> <li>Rus: <I>вас</I> <li>Spa: <I>vosotros</I> <li>Swe: <I>er</I> <li>Urd: <I>تم</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>youPol_NP</CODE></TD>
-<TD><A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A></TD>
-<TD><div class=reveal> <I>you</I> <div class=popup> <ul> <li>API: <CODE>mkUtt youPol_NP</CODE> <li>Bul: <I>вие</I> <li>Cat: <I>vosté</I> <li>Dan: <I>Dem</I> <li>Dut: <I>u</I> <li>Eng: <I>you</I> <li>Fin: <I>te</I> <li>Fre: <I>vous</I> <li>Ger: <I>Sie</I> <li>Ita: <I>Lei</I> <li>Nor: <I>Dere</I> <li>Pol: <I>ty</I> <li>Ron: <I>dumneavoastră</I> <li>Rus: <I>вас</I> <li>Spa: <I>usted</I> <li>Swe: <I>er</I> <li>Urd: <I>آپ</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>you_NP</CODE></TD>
-<TD><A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A></TD>
-<TD><div class=reveal> <I>you</I> <div class=popup> <ul> <li>API: <CODE>mkUtt you_NP</CODE> <li>Bul: <I>ти</I> <li>Cat: <I>tu</I> <li>Dan: <I>dig</I> <li>Dut: <I>je</I> <li>Eng: <I>you</I> <li>Fin: <I>sinä</I> <li>Fre: <I>toi</I> <li>Ger: <I>du</I> <li>Ita: <I>te</I> <li>Nor: <I>deg</I> <li>Pol: <I>ty</I> <li>Ron: <I>tu</I> <li>Rus: <I>тебя</I> <li>Spa: <I>tí</I> <li>Swe: <I>dig</I> <li>Urd: <I>تو</I> </ul> </div> </div></TD>
-</TR>
-</TABLE>
-
-<A NAME="Num"></A>
-<H2>Num - number determining element</H2>
-<TABLE BORDER="1" CELLPADDING="4">
-<TR>
-<TH>Function</TH>
-<TH>Type</TH>
-<TH COLSPAN="2">Example</TH>
-</TR>
-<TR>
-<TD><CODE>mkNum</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#Num" TITLE="Num - number determining element">Num</A></TD>
-<TD><I>thirty-five (given by "35"; range 1-999)</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkNum</CODE></TD>
-<TD><A HREF="#Numeral" TITLE="Numeral - cardinal or ordinal in words">Numeral</A> <CODE>-&gt;</CODE> <A HREF="#Num" TITLE="Num - number determining element">Num</A></TD>
-<TD><div class=reveal> <I>twenty</I> <div class=popup> <ul> <li>API: <CODE>mkNum (mkNumeral (tenfoldSub100 n2_Unit))</CODE> <li>Bul: <I>двадесетима</I> <li>Cat: <I>vint</I> <li>Dan: <I>tyve</I> <li>Dut: <I>twintig</I> <li>Eng: <I>twenty</I> <li>Fin: <I>kaksikymmentä</I> <li>Fre: <I>vingt</I> <li>Ger: <I>zwanzig</I> <li>Ita: <I>venti</I> <li>Nor: <I>tjue</I> <li>Pol: <I>dwadzieścia</I> <li>Ron: <I>douăzeci</I> <li>Rus: <I>двадцать</I> <li>Spa: <I>veinte</I> <li>Swe: <I>tjugo</I> <li>Urd: <I>بیس</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>mkNum</CODE></TD>
-<TD><A HREF="#Digits" TITLE="Digits - cardinal or ordinal in digits">Digits</A> <CODE>-&gt;</CODE> <A HREF="#Num" TITLE="Num - number determining element">Num</A></TD>
-<TD><div class=reveal> <I>2 1</I> <div class=popup> <ul> <li>API: <CODE>mkNum (mkDigits n2_Dig (mkDigits n1_Dig))</CODE> <li>Bul: <I>2 1</I> <li>Cat: <I>2 1</I> <li>Dan: <I>2 1</I> <li>Dut: <I>2 1</I> <li>Eng: <I>2 1</I> <li>Fin: <I>2 1</I> <li>Fre: <I>2 1</I> <li>Ger: <I>2 1</I> <li>Ita: <I>2 1</I> <li>Nor: <I>2 1</I> <li>Pol: <I>2 1</I> <li>Ron: <I>2 1</I> <li>Rus: <I>2 1</I> <li>Spa: <I>2 1</I> <li>Swe: <I>2 1</I> <li>Urd: <I>۱۲</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>mkNum</CODE></TD>
-<TD><A HREF="#Digit">Digit</A> <CODE>-&gt;</CODE> <A HREF="#Num" TITLE="Num - number determining element">Num</A></TD>
-<TD><I>five</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkNum</CODE></TD>
-<TD><A HREF="#Card" TITLE="Card - cardinal number">Card</A> <CODE>-&gt;</CODE> <A HREF="#Num" TITLE="Num - number determining element">Num</A></TD>
-<TD><div class=reveal> <I>almost five</I> <div class=popup> <ul> <li>API: <CODE>mkNum (mkCard almost_AdN (mkCard (mkNumeral n5_Unit)))</CODE> <li>Bul: <I>почти петима</I> <li>Cat: <I>{s = table CommonRomance.Gender {</I> <li>Dan: <I>næsten fem</I> <li>Dut: <I>bijna vijf</I> <li>Eng: <I>almost five</I> <li>Fin: <I>melkein viisi</I> <li>Fre: <I>presque cinq</I> <li>Ger: <I>fast fünf</I> <li>Ita: <I>quasi cinque</I> <li>Nor: <I>nesten fem</I> <li>Pol: <I>prawie pięć</I> <li>Ron: <I>aproape cinci</I> <li>Rus: <I>почти пять</I> <li>Spa: <I>casi cinco</I> <li>Swe: <I>nästan fem</I> <li>Urd: <I>تقریبا پانچ</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>mkNum</CODE></TD>
-<TD><A HREF="#AdN" TITLE="AdN - numeral-modifying adverb">AdN</A> <CODE>-&gt;</CODE> <A HREF="#Card" TITLE="Card - cardinal number">Card</A> <CODE>-&gt;</CODE> <A HREF="#Num" TITLE="Num - number determining element">Num</A></TD>
-<TD><div class=reveal> <I>almost five</I> <div class=popup> <ul> <li>API: <CODE>mkNum (mkCard almost_AdN (mkCard (mkNumeral n5_Unit)))</CODE> <li>Bul: <I>почти петима</I> <li>Cat: <I>{s = table CommonRomance.Gender {</I> <li>Dan: <I>næsten fem</I> <li>Dut: <I>bijna vijf</I> <li>Eng: <I>almost five</I> <li>Fin: <I>melkein viisi</I> <li>Fre: <I>presque cinq</I> <li>Ger: <I>fast fünf</I> <li>Ita: <I>quasi cinque</I> <li>Nor: <I>nesten fem</I> <li>Pol: <I>prawie pięć</I> <li>Ron: <I>aproape cinci</I> <li>Rus: <I>почти пять</I> <li>Spa: <I>casi cinco</I> <li>Swe: <I>nästan fem</I> <li>Urd: <I>تقریبا پانچ</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>pluralNum</CODE></TD>
-<TD><A HREF="#Num" TITLE="Num - number determining element">Num</A></TD>
-<TD><I>plural</I></TD>
-</TR>
-<TR>
-<TD><CODE>singularNum</CODE></TD>
-<TD><A HREF="#Num" TITLE="Num - number determining element">Num</A></TD>
-<TD><I>singular</I></TD>
-</TR>
-</TABLE>
-
-<A NAME="Numeral"></A>
-<H2>Numeral - cardinal or ordinal in words</H2>
-<TABLE BORDER="1" CELLPADDING="4">
-<TR>
-<TH>Function</TH>
-<TH>Type</TH>
-<TH COLSPAN="2">Example</TH>
-</TR>
-<TR>
-<TD><CODE>mkNumeral</CODE></TD>
-<TD><A HREF="#Unit">Unit</A> <CODE>-&gt;</CODE> <A HREF="#Numeral" TITLE="Numeral - cardinal or ordinal in words">Numeral</A></TD>
-<TD><I>eight (coerce 1..9)</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkNumeral</CODE></TD>
-<TD><A HREF="#Sub100">Sub100</A> <CODE>-&gt;</CODE> <A HREF="#Numeral" TITLE="Numeral - cardinal or ordinal in words">Numeral</A></TD>
-<TD><I>twenty-five (coerce 1..99)</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkNumeral</CODE></TD>
-<TD><A HREF="#Sub1000">Sub1000</A> <CODE>-&gt;</CODE> <A HREF="#Numeral" TITLE="Numeral - cardinal or ordinal in words">Numeral</A></TD>
-<TD><div class=reveal> <I>nine hundred and ninety - nine</I> <div class=popup> <ul> <li>API: <CODE>mkNumeral (mkSub1000 n9_Unit (mkSub100 n9_Unit n9_Unit))</CODE> <li>Bul: <I>деветстотин деветдесет и деветима</I> <li>Cat: <I>nou -cents noranta- nou</I> <li>Dan: <I>ni hundrede og ni og halvfems</I> <li>Dut: <I>negenhonderdnegenennegentig</I> <li>Eng: <I>nine hundred and ninety - nine</I> <li>Fin: <I>yhdeksänsataayhdeksänkymmentäyhdeksän</I> <li>Fre: <I>neuf cent quatre-vingt - dix-neuf</I> <li>Ger: <I>neunhundertneunundneunzig</I> <li>Ita: <I>novecentonovantanove</I> <li>Nor: <I>ni hundre og nitti ni</I> <li>Pol: <I>dziewięćset dziewięćdziesiąt dziewięć</I> <li>Ron: <I>nouă sute nouăzeci şi nouă</I> <li>Rus: <I>девятьсот девяносто девять</I> <li>Spa: <I>novecientos noventa y nueve</I> <li>Swe: <I>niohundra nittionio</I> <li>Urd: <I>نو سو ننانوے</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>mkNumeral</CODE></TD>
-<TD><A HREF="#Sub1000">Sub1000</A> <CODE>-&gt;</CODE> <A HREF="#Sub1000">Sub1000</A> <CODE>-&gt;</CODE> <A HREF="#Numeral" TITLE="Numeral - cardinal or ordinal in words">Numeral</A></TD>
-<TD><div class=reveal> <I>nine hundred and ninety - nine thousand nine hundred and ninety - nine</I> <div class=popup> <ul> <li>API: <CODE>mkNumeral (mkSub1000 n9_Unit (mkSub100 n9_Unit n9_Unit)) (mkSub1000 n9_Unit (mkSub100 n9_Unit n9_Unit))</CODE> <li>Bul: <I>деветстотин деветдесет и девет хиляди деветстотин деветдесет и деветима</I> <li>Cat: <I>nou -cents noranta- nou mil nou -cents noranta- nou</I> <li>Dan: <I>ni hundrede og ni og halvfems tusind og ni hundrede og ni og halvfems</I> <li>Dut: <I>negenhonderdnegenennegentigduizend negenhonderdnegenennegentig</I> <li>Eng: <I>nine hundred and ninety - nine thousand nine hundred and ninety - nine</I> <li>Fin: <I>yhdeksänsataayhdeksänkymmentäyhdeksäntuhatta yhdeksänsataayhdeksänkymmentäyhdeksän</I> <li>Fre: <I>neuf cent quatre-vingt - dix-neuf mille neuf cent quatre-vingt - dix-neuf</I> <li>Ger: <I>neunhundertneunundneunzigtausend neunhundertneunundneunzig</I> <li>Ita: <I>novecentonovantanovemila e novecentonovantanove</I> <li>Nor: <I>ni hundre og nitti ni tusen og ni hundre og nitti ni</I> <li>Pol: <I>dziewięćset dziewięćdziesiąt dziewięć tysięcy dziewięćset dziewięćdziesiąt dziewięć</I> <li>Ron: <I>nouă sute nouăzeci şi nouă de mii nouă sute nouăzeci şi nouă</I> <li>Rus: <I>девятьсот девяносто девять тысяч девятьсот девяносто девять</I> <li>Spa: <I>novecientos noventa y nueve mil novecientos noventa y nueve</I> <li>Swe: <I>niohundra nittioniotusen niohundra nittionio</I> <li>Urd: <I>نو لاكھ ننانوے ہزار نو سو ننانوے</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>mkNumeral</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#Numeral" TITLE="Numeral - cardinal or ordinal in words">Numeral</A></TD>
-<TD><I>thirty-five (given by "35"; range 1-999)</I></TD>
-</TR>
-<TR>
-<TD><CODE>thousandfoldNumeral</CODE></TD>
-<TD><A HREF="#Sub1000">Sub1000</A> <CODE>-&gt;</CODE> <A HREF="#Numeral" TITLE="Numeral - cardinal or ordinal in words">Numeral</A></TD>
-<TD><div class=reveal> <I>nine hundred and ninety - nine thousand</I> <div class=popup> <ul> <li>API: <CODE>thousandfoldNumeral (mkSub1000 n9_Unit (mkSub100 n9_Unit n9_Unit))</CODE> <li>Bul: <I>деветстотин деветдесет и девет хиляди</I> <li>Cat: <I>nou -cents noranta- nou mil</I> <li>Dan: <I>ni hundrede og ni og halvfems tusind</I> <li>Dut: <I>negenhonderdnegenennegentigduizend</I> <li>Eng: <I>nine hundred and ninety - nine thousand</I> <li>Fin: <I>yhdeksänsataayhdeksänkymmentäyhdeksäntuhatta</I> <li>Fre: <I>neuf cent quatre-vingt - dix-neuf mille</I> <li>Ger: <I>neunhundertneunundneunzigtausend</I> <li>Ita: <I>novecentonovantanovemila</I> <li>Nor: <I>ni hundre og nitti ni tusen</I> <li>Pol: <I>dziewięćset dziewięćdziesiąt dziewięć tysięcy</I> <li>Ron: <I>nouă sute nouăzeci şi nouă de mii</I> <li>Rus: <I>девятьсот девяносто девять тысяч</I> <li>Spa: <I>novecientos noventa y nueve mil</I> <li>Swe: <I>niohundra nittionio tusen</I> <li>Urd: <I>نو لاكھ ننانوے ہزار</I> </ul> </div> </div></TD>
-</TR>
-</TABLE>
-
-<A NAME="Ord"></A>
-<H2>Ord - ordinal number (used in Det)</H2>
-<TABLE BORDER="1" CELLPADDING="4">
-<TR>
-<TH>Function</TH>
-<TH>Type</TH>
-<TH COLSPAN="2">Example</TH>
-</TR>
-<TR>
-<TD><CODE>mkOrd</CODE></TD>
-<TD><A HREF="#Numeral" TITLE="Numeral - cardinal or ordinal in words">Numeral</A> <CODE>-&gt;</CODE> <A HREF="#Ord" TITLE="Ord - ordinal number (used in Det)">Ord</A></TD>
-<TD><I>twentieth</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkOrd</CODE></TD>
-<TD><A HREF="#Digits" TITLE="Digits - cardinal or ordinal in digits">Digits</A> <CODE>-&gt;</CODE> <A HREF="#Ord" TITLE="Ord - ordinal number (used in Det)">Ord</A></TD>
-<TD><I>51st</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkOrd</CODE></TD>
-<TD><A HREF="#Digit">Digit</A> <CODE>-&gt;</CODE> <A HREF="#Ord" TITLE="Ord - ordinal number (used in Det)">Ord</A></TD>
-<TD><I>fifth</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkOrd</CODE></TD>
-<TD><A HREF="#A" TITLE="A - one-place adjective">A</A> <CODE>-&gt;</CODE> <A HREF="#Ord" TITLE="Ord - ordinal number (used in Det)">Ord</A></TD>
-<TD><div class=reveal> <I>smallest</I> <div class=popup> <ul> <li>API: <CODE>mkOrd small_A</CODE> <li>Bul: <I>най - малък</I> <li>Cat: <I>més petit</I> <li>Dan: <I>mindste</I> <li>Dut: <I>kleinst</I> <li>Eng: <I>smallest</I> <li>Fin: <I>pienin</I> <li>Fre: <I>plus petit</I> <li>Ger: <I>kleinst</I> <li>Ita: <I>più piccolo</I> <li>Nor: <I>minste</I> <li>Pol: <I>najmniejszy</I> <li>Ron: <I>cel mai mic</I> <li>Rus: <I>маленький</I> <li>Spa: <I>más pequeño</I> <li>Swe: <I>minsta</I> <li>Urd: <I>سب سے چھوٹا</I> </ul> </div> </div></TD>
-</TR>
-</TABLE>
-
-<A NAME="PConj"></A>
-<H2>PConj - phrase-beginning conjunction</H2>
-<TABLE BORDER="1" CELLPADDING="4">
-<TR>
-<TH>Function</TH>
-<TH>Type</TH>
-<TH COLSPAN="2">Example</TH>
-</TR>
-<TR>
-<TD><CODE>but_PConj</CODE></TD>
-<TD><A HREF="#PConj" TITLE="PConj - phrase-beginning conjunction">PConj</A></TD>
-<TD><div class=reveal> <I>but</I> <div class=popup> <ul> <li>API: <CODE>but_PConj</CODE> <li>Bul: <I>но</I> <li>Cat: <I>però</I> <li>Dan: <I>men</I> <li>Dut: <I>maar</I> <li>Eng: <I>but</I> <li>Fin: <I>mutta</I> <li>Fre: <I>mais</I> <li>Ger: <I>aber</I> <li>Ita: <I>ma</I> <li>Nor: <I>men</I> <li>Pol: <I>ale</I> <li>Ron: <I>dar</I> <li>Rus: <I>но</I> <li>Spa: <I>pero</I> <li>Swe: <I>men</I> <li>Urd: <I>لیكن</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>mkPConj</CODE></TD>
-<TD><A HREF="#Conj" TITLE="Conj - conjunction">Conj</A> <CODE>-&gt;</CODE> <A HREF="#PConj" TITLE="PConj - phrase-beginning conjunction">PConj</A></TD>
-<TD><div class=reveal> <I>and now</I> <div class=popup> <ul> <li>API: <CODE>mkPhr (mkPConj and_Conj) (mkUtt now_Adv)</CODE> <li>Bul: <I>и сега</I> <li>Cat: <I>i ara</I> <li>Dan: <I>og nu</I> <li>Dut: <I>en nu</I> <li>Eng: <I>and now</I> <li>Fin: <I>ja nyt</I> <li>Fre: <I>et maintenant</I> <li>Ger: <I>und jetzt</I> <li>Ita: <I>e adesso</I> <li>Nor: <I>og nå</I> <li>Pol: <I>i teraz</I> <li>Ron: <I>şi acum</I> <li>Rus: <I>и сейчас</I> <li>Spa: <I>y ahora</I> <li>Swe: <I>och nu</I> <li>Urd: <I>اور اب</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>otherwise_PConj</CODE></TD>
-<TD><A HREF="#PConj" TITLE="PConj - phrase-beginning conjunction">PConj</A></TD>
-<TD><div class=reveal> <I>otherwise</I> <div class=popup> <ul> <li>API: <CODE>otherwise_PConj</CODE> <li>Bul: <I>иначе</I> <li>Cat: <I>altrament</I> <li>Dan: <I>anderledes</I> <li>Dut: <I>anders</I> <li>Eng: <I>otherwise</I> <li>Fin: <I>muuten</I> <li>Fre: <I>autrement</I> <li>Ger: <I>sonst</I> <li>Ita: <I>altramente</I> <li>Nor: <I>annarledes</I> <li>Pol: <I>inaczej</I> <li>Ron: <I>altfel</I> <li>Rus: <I>иначе</I> <li>Spa: <I>otramente</I> <li>Swe: <I>annars</I> <li>Urd: <I>یا پھر</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>therefore_PConj</CODE></TD>
-<TD><A HREF="#PConj" TITLE="PConj - phrase-beginning conjunction">PConj</A></TD>
-<TD><div class=reveal> <I>therefore</I> <div class=popup> <ul> <li>API: <CODE>therefore_PConj</CODE> <li>Bul: <I>така че</I> <li>Cat: <I>per tant</I> <li>Dan: <I>derfor</I> <li>Dut: <I>daarom</I> <li>Eng: <I>therefore</I> <li>Fin: <I>siksi</I> <li>Fre: <I>donc</I> <li>Ger: <I>deshalb</I> <li>Ita: <I>quindi</I> <li>Nor: <I>derfor</I> <li>Pol: <I>dlatego</I> <li>Ron: <I>astfel</I> <li>Rus: <I>следовательно</I> <li>Spa: <I>por eso</I> <li>Swe: <I>därför</I> <li>Urd: <I>اس لیے</I> </ul> </div> </div></TD>
-</TR>
-</TABLE>
-
-<A NAME="PN"></A>
-<H2>PN - proper name</H2>
-<P>
-Lexical category, constructors given in
-<A HREF="#RParadigms">lexical paradigms</A>.
-</P>
-<A NAME="Phr"></A>
-<H2>Phr - phrase in a text</H2>
-<TABLE BORDER="1" CELLPADDING="4">
-<TR>
-<TH>Function</TH>
-<TH>Type</TH>
-<TH COLSPAN="2">Example</TH>
-</TR>
-<TR>
-<TD><CODE>mkPhr</CODE></TD>
-<TD>(<A HREF="#PConj" TITLE="PConj - phrase-beginning conjunction">PConj</A>) <CODE>-&gt;</CODE> <A HREF="#Utt" TITLE="Utt - sentence, question, word...">Utt</A> <CODE>-&gt;</CODE> (<A HREF="#Voc" TITLE="Voc - vocative or "please"">Voc</A>) <CODE>-&gt;</CODE> <A HREF="#Phr" TITLE="Phr - phrase in a text">Phr</A></TD>
-<TD><div class=reveal> <I>but sleep , my friend</I> <div class=popup> <ul> <li>API: <CODE>mkPhr but_PConj (mkUtt (mkImp sleep_V)) (mkVoc (mkNP i_Pron friend_N))</CODE> <li>Bul: <I>но спи , мой приятелю</I> <li>Cat: <I>però dorm , el meu amic</I> <li>Dan: <I>men sov , min ven</I> <li>Dut: <I>maar slaap , mijn vriend</I> <li>Eng: <I>but sleep , my friend</I> <li>Fin: <I>mutta nuku , minun ystäväni</I> <li>Fre: <I>mais dors , mon ami</I> <li>Ger: <I>aber schlaf , mein Freund</I> <li>Ita: <I>ma dormi , il mio amico</I> <li>Nor: <I>men sov , min venn</I> <li>Pol: <I>ale śpij , mój przyjacielu</I> <li>Ron: <I>dar dormi , prietenul meu</I> <li>Rus: <I>но спи , мой друг</I> <li>Spa: <I>pero duerme , mi amigo</I> <li>Swe: <I>men sov , min vän</I> <li>Urd: <I>لیكن سونا میرا دوست</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>mkPhr</CODE></TD>
-<TD><A HREF="#S" TITLE="S - declarative sentence">S</A> <CODE>-&gt;</CODE> <A HREF="#Phr" TITLE="Phr - phrase in a text">Phr</A></TD>
-<TD><div class=reveal> <I>she won't sleep</I> <div class=popup> <ul> <li>API: <CODE>mkPhr (mkS futureTense negativePol (mkCl she_NP sleep_V))</CODE> <li>Bul: <I>тя няма да спи</I> <li>Cat: <I>ella no dormirà</I> <li>Dan: <I>hun vil ikke sove</I> <li>Dut: <I>ze zal niet geslapen hebben</I> <li>Eng: <I>she won't sleep</I> <li>Fin: <I>hän ei nuku</I> <li>Fre: <I>elle ne dormira pas</I> <li>Ger: <I>sie wird nicht schlafen</I> <li>Ita: <I>lei non dormirà</I> <li>Nor: <I>hun vil ikke sove</I> <li>Pol: <I>ona nie będzie spała</I> <li>Ron: <I>ea nu va dormi</I> <li>Rus: <I>она не будет спать</I> <li>Spa: <I>ella no dormirá</I> <li>Swe: <I>hon ska inte sova</I> <li>Urd: <I>وہ نہیں سوئے گی</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>mkPhr</CODE></TD>
-<TD><A HREF="#Cl" TITLE="Cl - declarative clause, with all tenses">Cl</A> <CODE>-&gt;</CODE> <A HREF="#Phr" TITLE="Phr - phrase in a text">Phr</A></TD>
-<TD><div class=reveal> <I>she sleeps</I> <div class=popup> <ul> <li>API: <CODE>mkPhr (mkCl she_NP sleep_V)</CODE> <li>Bul: <I>тя спи</I> <li>Cat: <I>ella dorm</I> <li>Dan: <I>hun sover</I> <li>Dut: <I>ze slaapt</I> <li>Eng: <I>she sleeps</I> <li>Fin: <I>hän nukkuu</I> <li>Fre: <I>elle dort</I> <li>Ger: <I>sie schläft</I> <li>Ita: <I>lei dorme</I> <li>Nor: <I>hun sover</I> <li>Pol: <I>ona śpi</I> <li>Ron: <I>ea doarme</I> <li>Rus: <I>она спдит</I> <li>Spa: <I>ella duerme</I> <li>Swe: <I>hon sover</I> <li>Urd: <I>وہ سوتی ہے</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>mkPhr</CODE></TD>
-<TD><A HREF="#QS" TITLE="QS - question">QS</A> <CODE>-&gt;</CODE> <A HREF="#Phr" TITLE="Phr - phrase in a text">Phr</A></TD>
-<TD><div class=reveal> <I>would she sleep</I> <div class=popup> <ul> <li>API: <CODE>mkPhr (mkQS conditionalTense (mkQCl (mkCl she_NP sleep_V)))</CODE> <li>Bul: <I>тя би ли спалa</I> <li>Cat: <I>ella dormiria</I> <li>Dan: <I>ville hun sove</I> <li>Dut: <I>zou ze geslapen hebben</I> <li>Eng: <I>would she sleep</I> <li>Fin: <I>nukkuisiko hän</I> <li>Fre: <I>elle dormirait</I> <li>Ger: <I>würde sie schlafen</I> <li>Ita: <I>lei dormirebbe</I> <li>Nor: <I>ville hun sove</I> <li>Pol: <I>czy ona spałaby</I> <li>Ron: <I>ea ar dormi</I> <li>Rus: <I>она спала бы</I> <li>Spa: <I>ella dormiría</I> <li>Swe: <I>skulle hon sova</I> <li>Urd: <I>كیا وہ شاید سوئے</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>mkPhr</CODE></TD>
-<TD><A HREF="#Imp" TITLE="Imp - imperative">Imp</A> <CODE>-&gt;</CODE> <A HREF="#Phr" TITLE="Phr - phrase in a text">Phr</A></TD>
-<TD><div class=reveal> <I>sleep</I> <div class=popup> <ul> <li>API: <CODE>mkPhr (mkImp sleep_V)</CODE> <li>Bul: <I>спи</I> <li>Cat: <I>dorm</I> <li>Dan: <I>sov</I> <li>Dut: <I>slaap</I> <li>Eng: <I>sleep</I> <li>Fin: <I>nuku</I> <li>Fre: <I>dors</I> <li>Ger: <I>schlaf</I> <li>Ita: <I>dormi</I> <li>Nor: <I>sov</I> <li>Pol: <I>śpij</I> <li>Ron: <I>dormi</I> <li>Rus: <I>спи</I> <li>Spa: <I>duerme</I> <li>Swe: <I>sov</I> <li>Urd: <I>سونا</I> </ul> </div> </div></TD>
-</TR>
-</TABLE>
-
-<A NAME="Pol"></A>
-<H2>Pol - polarity</H2>
-<TABLE BORDER="1" CELLPADDING="4">
-<TR>
-<TH>Function</TH>
-<TH>Type</TH>
-<TH COLSPAN="2">Example</TH>
-</TR>
-<TR>
-<TD><CODE>negativePol</CODE></TD>
-<TD><A HREF="#Pol" TITLE="Pol - polarity">Pol</A></TD>
-<TD><div class=reveal> <I>she doesn't sleep</I> <div class=popup> <ul> <li>API: <CODE>mkS negativePol (mkCl she_NP sleep_V)</CODE> <li>Bul: <I>тя не спи</I> <li>Cat: <I>ella no dorm</I> <li>Dan: <I>hun sover ikke</I> <li>Dut: <I>ze slaapt niet</I> <li>Eng: <I>she doesn't sleep</I> <li>Fin: <I>hän ei nuku</I> <li>Fre: <I>elle ne dort pas</I> <li>Ger: <I>sie schläft nicht</I> <li>Ita: <I>lei non dorme</I> <li>Nor: <I>hun sover ikke</I> <li>Pol: <I>ona nie śpi</I> <li>Ron: <I>ea nu doarme</I> <li>Rus: <I>она не спдит</I> <li>Spa: <I>ella no duerme</I> <li>Swe: <I>hon sover inte</I> <li>Urd: <I>وہ نہیں سوتی ہے</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>positivePol</CODE></TD>
-<TD><A HREF="#Pol" TITLE="Pol - polarity">Pol</A></TD>
-<TD><div class=reveal> <I>she sleeps</I> <div class=popup> <ul> <li>API: <CODE>mkS positivePol (mkCl she_NP sleep_V)</CODE> <li>Bul: <I>тя спи</I> <li>Cat: <I>ella dorm</I> <li>Dan: <I>hun sover</I> <li>Dut: <I>ze slaapt</I> <li>Eng: <I>she sleeps</I> <li>Fin: <I>hän nukkuu</I> <li>Fre: <I>elle dort</I> <li>Ger: <I>sie schläft</I> <li>Ita: <I>lei dorme</I> <li>Nor: <I>hun sover</I> <li>Pol: <I>ona śpi</I> <li>Ron: <I>ea doarme</I> <li>Rus: <I>она спдит</I> <li>Spa: <I>ella duerme</I> <li>Swe: <I>hon sover</I> <li>Urd: <I>وہ سوتی ہے</I> </ul> </div> </div></TD>
-</TR>
-</TABLE>
-
-<A NAME="Predet"></A>
-<H2>Predet - predeterminer (prefixed Quant)</H2>
-<TABLE BORDER="1" CELLPADDING="4">
-<TR>
-<TH>Function</TH>
-<TH>Type</TH>
-<TH COLSPAN="2">Example</TH>
-</TR>
-<TR>
-<TD><CODE>all_Predet</CODE></TD>
-<TD><A HREF="#Predet" TITLE="Predet - predeterminer (prefixed Quant)">Predet</A></TD>
-<TD><div class=reveal> <I>all the men</I> <div class=popup> <ul> <li>API: <CODE>mkNP all_Predet (mkNP thePl_Det man_N)</CODE> <li>Bul: <I>всичките мъжете</I> <li>Cat: <I>''</I> <li>Dan: <I>alle mændene</I> <li>Dut: <I>alle de mannen</I> <li>Eng: <I>all the men</I> <li>Fin: <I>kaikki miehet</I> <li>Fre: <I>''</I> <li>Ger: <I>alle die Männer</I> <li>Ita: <I>''</I> <li>Nor: <I>alle mennen</I> <li>Pol: <I>wszystkich mężczyzn</I> <li>Ron: <I>''</I> <li>Rus: <I>все человеки</I> <li>Spa: <I>''</I> <li>Swe: <I>alla männen</I> <li>Urd: <I>تمام آدمی</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>most_Predet</CODE></TD>
-<TD><A HREF="#Predet" TITLE="Predet - predeterminer (prefixed Quant)">Predet</A></TD>
-<TD><div class=reveal> <I>most</I> <div class=popup> <ul> <li>API: <CODE>most_Predet</CODE> <li>Bul: <I>повечето</I> <li>Cat: <I>la majoria</I> <li>Dan: <I>den meste</I> <li>Dut: <I>meeste</I> <li>Eng: <I>most</I> <li>Fin: <I>useinta</I> <li>Fre: <I>la plupart</I> <li>Ger: <I>meister</I> <li>Ita: <I>la maggior parte</I> <li>Nor: <I>den meste</I> <li>Pol: <I>wszystek</I> <li>Ron: <I>marea parte a</I> <li>Rus: <I>большинство</I> <li>Spa: <I>la mayor parte</I> <li>Swe: <I>den mesta</I> <li>Urd: <I>زیادہ تر</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>not_Predet</CODE></TD>
-<TD><A HREF="#Predet" TITLE="Predet - predeterminer (prefixed Quant)">Predet</A></TD>
-<TD><div class=reveal> <I>not everybody</I> <div class=popup> <ul> <li>API: <CODE>mkNP not_Predet everybody_NP</CODE> <li>Bul: <I>*</I> <li>Cat: <I>''</I> <li>Dan: <I>*</I> <li>Dut: <I>niet alle</I> <li>Eng: <I>not everybody</I> <li>Fin: <I>ei jokainen</I> <li>Fre: <I>''</I> <li>Ger: <I>nicht jeder</I> <li>Ita: <I>''</I> <li>Nor: <I>*</I> <li>Pol: <I>żadnych wszystkich</I> <li>Ron: <I>''</I> <li>Rus: <I>*</I> <li>Spa: <I>*</I> <li>Swe: <I>inte alla</I> <li>Urd: <I>نہیں ہر كوی</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>only_Predet</CODE></TD>
-<TD><A HREF="#Predet" TITLE="Predet - predeterminer (prefixed Quant)">Predet</A></TD>
-<TD><div class=reveal> <I>only</I> <div class=popup> <ul> <li>API: <CODE>only_Predet</CODE> <li>Bul: <I>само</I> <li>Cat: <I>nomÈs</I> <li>Dan: <I>kun</I> <li>Dut: <I>slechts</I> <li>Eng: <I>only</I> <li>Fin: <I>vain</I> <li>Fre: <I>seulement</I> <li>Ger: <I>nur</I> <li>Ita: <I>soltanto</I> <li>Nor: <I>kun</I> <li>Pol: <I>tylko</I> <li>Ron: <I>doar</I> <li>Rus: <I>единственный</I> <li>Spa: <I>solamente</I> <li>Swe: <I>bara</I> <li>Urd: <I>صرف</I> </ul> </div> </div></TD>
-</TR>
-</TABLE>
-
-<A NAME="Prep"></A>
-<H2>Prep - preposition, or just case</H2>
-<TABLE BORDER="1" CELLPADDING="4">
-<TR>
-<TH>Function</TH>
-<TH>Type</TH>
-<TH COLSPAN="2">Example</TH>
-</TR>
-<TR>
-<TD><CODE>above_Prep</CODE></TD>
-<TD><A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A></TD>
-<TD><div class=reveal> <I>above it</I> <div class=popup> <ul> <li>API: <CODE>mkAdv above_Prep it_NP</CODE> <li>Bul: <I>над него</I> <li>Cat: <I>sobre ell</I> <li>Dan: <I>ovenfor det</I> <li>Dut: <I>boven het</I> <li>Eng: <I>above it</I> <li>Fin: <I>sen yläpuolella</I> <li>Fre: <I>au dessus de lui</I> <li>Ger: <I>über ihm</I> <li>Ita: <I>sopra di lui</I> <li>Nor: <I>ovenfor det</I> <li>Pol: <I>nad nim</I> <li>Ron: <I>deasupra lui</I> <li>Rus: <I>над ним</I> <li>Spa: <I>sobre él</I> <li>Swe: <I>ovanför det</I> <li>Urd: <I>اس اوپر</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>after_Prep</CODE></TD>
-<TD><A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A></TD>
-<TD><div class=reveal> <I>after it</I> <div class=popup> <ul> <li>API: <CODE>mkAdv after_Prep it_NP</CODE> <li>Bul: <I>след него</I> <li>Cat: <I>després de ell</I> <li>Dan: <I>efter det</I> <li>Dut: <I>na het</I> <li>Eng: <I>after it</I> <li>Fin: <I>sen jälkeen</I> <li>Fre: <I>après lui</I> <li>Ger: <I>nach ihm</I> <li>Ita: <I>dopo lui</I> <li>Nor: <I>etter det</I> <li>Pol: <I>po nim</I> <li>Ron: <I>după el</I> <li>Rus: <I>после него</I> <li>Spa: <I>despues de él</I> <li>Swe: <I>efter det</I> <li>Urd: <I>اس كے بعد</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>before_Prep</CODE></TD>
-<TD><A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A></TD>
-<TD><div class=reveal> <I>before it</I> <div class=popup> <ul> <li>API: <CODE>mkAdv before_Prep it_NP</CODE> <li>Bul: <I>преди него</I> <li>Cat: <I>abans de ell</I> <li>Dan: <I>før det</I> <li>Dut: <I>voor het</I> <li>Eng: <I>before it</I> <li>Fin: <I>ennen sitä</I> <li>Fre: <I>avant lui</I> <li>Ger: <I>vor ihm</I> <li>Ita: <I>prima lui</I> <li>Nor: <I>før det</I> <li>Pol: <I>przed nim</I> <li>Ron: <I>înaintea lui</I> <li>Rus: <I>перед ним</I> <li>Spa: <I>antes de él</I> <li>Swe: <I>före det</I> <li>Urd: <I>اس پہلے</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>behind_Prep</CODE></TD>
-<TD><A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A></TD>
-<TD><div class=reveal> <I>behind it</I> <div class=popup> <ul> <li>API: <CODE>mkAdv behind_Prep it_NP</CODE> <li>Bul: <I>зад него</I> <li>Cat: <I>darrera de ell</I> <li>Dan: <I>bag det</I> <li>Dut: <I>achter het</I> <li>Eng: <I>behind it</I> <li>Fin: <I>sen takana</I> <li>Fre: <I>derrière lui</I> <li>Ger: <I>hinter ihm</I> <li>Ita: <I>dietro lui</I> <li>Nor: <I>bakom det</I> <li>Pol: <I>za nim</I> <li>Ron: <I>înapoia lui</I> <li>Rus: <I>за ним</I> <li>Spa: <I>detrás de él</I> <li>Swe: <I>bakom det</I> <li>Urd: <I>اس پیچھے</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>between_Prep</CODE></TD>
-<TD><A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A></TD>
-<TD><div class=reveal> <I>between you and me</I> <div class=popup> <ul> <li>API: <CODE>mkAdv between_Prep (mkNP and_Conj you_NP i_NP)</CODE> <li>Bul: <I>между теб и мен</I> <li>Cat: <I>entre tu i mi</I> <li>Dan: <I>mellem dig og mig</I> <li>Dut: <I>tussen je en me</I> <li>Eng: <I>between you and me</I> <li>Fin: <I>sinun ja minun välissä</I> <li>Fre: <I>entre toi et moi</I> <li>Ger: <I>zwischen dir und mir</I> <li>Ita: <I>fra te e me</I> <li>Nor: <I>mellom deg og meg</I> <li>Pol: <I>między tobą i mną</I> <li>Ron: <I>între</I> <li>Rus: <I>между тобой и мной</I> <li>Spa: <I>entre tí y mí</I> <li>Swe: <I>mellan dig och mig</I> <li>Urd: <I>تو اور مجھ درمیاں</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>by8agent_Prep</CODE></TD>
-<TD><A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A></TD>
-<TD><div class=reveal> <I>by it</I> <div class=popup> <ul> <li>API: <CODE>mkAdv by8agent_Prep it_NP</CODE> <li>Bul: <I>чрез него</I> <li>Cat: <I>per ell</I> <li>Dan: <I>af det</I> <li>Dut: <I>door het</I> <li>Eng: <I>by it</I> <li>Fin: <I>sen toimesta</I> <li>Fre: <I>par lui</I> <li>Ger: <I>durch es</I> <li>Ita: <I>da lui</I> <li>Nor: <I>av det</I> <li>Pol: <I>przez nie</I> <li>Ron: <I>de către el</I> <li>Rus: <I>с помощью него</I> <li>Spa: <I>por él</I> <li>Swe: <I>av det</I> <li>Urd: <I>اس</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>by8means_Prep</CODE></TD>
-<TD><A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A></TD>
-<TD><div class=reveal> <I>by it</I> <div class=popup> <ul> <li>API: <CODE>mkAdv by8means_Prep it_NP</CODE> <li>Bul: <I>чрез него</I> <li>Cat: <I>mitjançant ell</I> <li>Dan: <I>med det</I> <li>Dut: <I>met het</I> <li>Eng: <I>by it</I> <li>Fin: <I>sillä</I> <li>Fre: <I>par lui</I> <li>Ger: <I>mit ihm</I> <li>Ita: <I>per lui</I> <li>Nor: <I>med det</I> <li>Pol: <I>przez nie</I> <li>Ron: <I>de el</I> <li>Rus: <I>с помощью него</I> <li>Spa: <I>por él</I> <li>Swe: <I>med det</I> <li>Urd: <I>اس</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>during_Prep</CODE></TD>
-<TD><A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A></TD>
-<TD><div class=reveal> <I>during it</I> <div class=popup> <ul> <li>API: <CODE>mkAdv during_Prep it_NP</CODE> <li>Bul: <I>по време на него</I> <li>Cat: <I>durant ell</I> <li>Dan: <I>under det</I> <li>Dut: <I>tijdens het</I> <li>Eng: <I>during it</I> <li>Fin: <I>sen aikana</I> <li>Fre: <I>pendant lui</I> <li>Ger: <I>während seiner</I> <li>Ita: <I>durante lui</I> <li>Nor: <I>under det</I> <li>Pol: <I>podczas niego</I> <li>Ron: <I>în timpul lui</I> <li>Rus: <I>в течение него</I> <li>Spa: <I>durante él</I> <li>Swe: <I>under det</I> <li>Urd: <I>اس كے درمیاں</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>except_Prep</CODE></TD>
-<TD><A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A></TD>
-<TD><div class=reveal> <I>except it</I> <div class=popup> <ul> <li>API: <CODE>mkAdv except_Prep it_NP</CODE> <li>Bul: <I>*</I> <li>Cat: <I>excepte ell</I> <li>Dan: <I>*</I> <li>Dut: <I>met uitzondering van het</I> <li>Eng: <I>except it</I> <li>Fin: <I>sitä lukuunottamatta</I> <li>Fre: <I>excepté lui</I> <li>Ger: <I>außer ihm</I> <li>Ita: <I>eccetto lui</I> <li>Nor: <I>*</I> <li>Pol: <I>z wyjątkiem nie</I> <li>Ron: <I>cu excepţia lui</I> <li>Rus: <I>*</I> <li>Spa: <I>*</I> <li>Swe: <I>utom det</I> <li>Urd: <I>اس سواے</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>for_Prep</CODE></TD>
-<TD><A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A></TD>
-<TD><div class=reveal> <I>for it</I> <div class=popup> <ul> <li>API: <CODE>mkAdv for_Prep it_NP</CODE> <li>Bul: <I>за него</I> <li>Cat: <I>per a ell</I> <li>Dan: <I>for det</I> <li>Dut: <I>voor het</I> <li>Eng: <I>for it</I> <li>Fin: <I>sille</I> <li>Fre: <I>pour lui</I> <li>Ger: <I>für es</I> <li>Ita: <I>per lui</I> <li>Nor: <I>for det</I> <li>Pol: <I>dla niego</I> <li>Ron: <I>pentru el</I> <li>Rus: <I>*</I> <li>Spa: <I>para él</I> <li>Swe: <I>för det</I> <li>Urd: <I>اس كیلیے</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>from_Prep</CODE></TD>
-<TD><A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A></TD>
-<TD><div class=reveal> <I>from it</I> <div class=popup> <ul> <li>API: <CODE>mkAdv from_Prep it_NP</CODE> <li>Bul: <I>от него</I> <li>Cat: <I>de ell</I> <li>Dan: <I>fra det</I> <li>Dut: <I>uit het</I> <li>Eng: <I>from it</I> <li>Fin: <I>siitä</I> <li>Fre: <I>de lui</I> <li>Ger: <I>aus ihm</I> <li>Ita: <I>da lui</I> <li>Nor: <I>fra det</I> <li>Pol: <I>z niego</I> <li>Ron: <I>de la el</I> <li>Rus: <I>от него</I> <li>Spa: <I>de él</I> <li>Swe: <I>från det</I> <li>Urd: <I>اس سے</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>in8front_Prep</CODE></TD>
-<TD><A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A></TD>
-<TD><div class=reveal> <I>in front of it</I> <div class=popup> <ul> <li>API: <CODE>mkAdv in8front_Prep it_NP</CODE> <li>Bul: <I>пред него</I> <li>Cat: <I>davant de ell</I> <li>Dan: <I>foran det</I> <li>Dut: <I>voor het</I> <li>Eng: <I>in front of it</I> <li>Fin: <I>sen edessä</I> <li>Fre: <I>devant lui</I> <li>Ger: <I>vor ihm</I> <li>Ita: <I>davanti lui</I> <li>Nor: <I>foran det</I> <li>Pol: <I>przed nim</I> <li>Ron: <I>în faţa lui</I> <li>Rus: <I>перед ним</I> <li>Spa: <I>delante de él</I> <li>Swe: <I>framför det</I> <li>Urd: <I>اس كے سامنے</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>in_Prep</CODE></TD>
-<TD><A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A></TD>
-<TD><div class=reveal> <I>in it</I> <div class=popup> <ul> <li>API: <CODE>mkAdv in_Prep it_NP</CODE> <li>Bul: <I>в него</I> <li>Cat: <I>en ell</I> <li>Dan: <I>i det</I> <li>Dut: <I>in het</I> <li>Eng: <I>in it</I> <li>Fin: <I>siinä</I> <li>Fre: <I>dans lui</I> <li>Ger: <I>in ihm</I> <li>Ita: <I>in lui</I> <li>Nor: <I>i det</I> <li>Pol: <I>w nim</I> <li>Ron: <I>în el</I> <li>Rus: <I>в нём</I> <li>Spa: <I>en él</I> <li>Swe: <I>i det</I> <li>Urd: <I>اس میں</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>on_Prep</CODE></TD>
-<TD><A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A></TD>
-<TD><div class=reveal> <I>on it</I> <div class=popup> <ul> <li>API: <CODE>mkAdv on_Prep it_NP</CODE> <li>Bul: <I>на него</I> <li>Cat: <I>sobre ell</I> <li>Dan: <I>på det</I> <li>Dut: <I>op het</I> <li>Eng: <I>on it</I> <li>Fin: <I>sillä</I> <li>Fre: <I>sur lui</I> <li>Ger: <I>auf ihm</I> <li>Ita: <I>su lui</I> <li>Nor: <I>på det</I> <li>Pol: <I>nа nim</I> <li>Ron: <I>pe el</I> <li>Rus: <I>на нём</I> <li>Spa: <I>sobre él</I> <li>Swe: <I>på det</I> <li>Urd: <I>اس پر</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>part_Prep</CODE></TD>
-<TD><A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A></TD>
-<TD><div class=reveal> <I>of it</I> <div class=popup> <ul> <li>API: <CODE>mkAdv part_Prep it_NP</CODE> <li>Bul: <I>от него</I> <li>Cat: <I>de ell</I> <li>Dan: <I>af det</I> <li>Dut: <I>van het</I> <li>Eng: <I>of it</I> <li>Fin: <I>sitä</I> <li>Fre: <I>de lui</I> <li>Ger: <I>von ihm</I> <li>Ita: <I>di lui</I> <li>Nor: <I>av det</I> <li>Pol: <I>z niego</I> <li>Ron: <I>din el</I> <li>Rus: <I>оно</I> <li>Spa: <I>de él</I> <li>Swe: <I>av det</I> <li>Urd: <I>اس</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>possess_Prep</CODE></TD>
-<TD><A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A></TD>
-<TD><div class=reveal> <I>of it</I> <div class=popup> <ul> <li>API: <CODE>mkAdv possess_Prep it_NP</CODE> <li>Bul: <I>му</I> <li>Cat: <I>de ell</I> <li>Dan: <I>af det</I> <li>Dut: <I>van het</I> <li>Eng: <I>of it</I> <li>Fin: <I>sen</I> <li>Fre: <I>de lui</I> <li>Ger: <I>von ihm</I> <li>Ita: <I>di lui</I> <li>Nor: <I>av det</I> <li>Pol: <I>jego</I> <li>Ron: <I>lui</I> <li>Rus: <I>него</I> <li>Spa: <I>de él</I> <li>Swe: <I>av det</I> <li>Urd: <I>اس كا</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>through_Prep</CODE></TD>
-<TD><A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A></TD>
-<TD><div class=reveal> <I>through it</I> <div class=popup> <ul> <li>API: <CODE>mkAdv through_Prep it_NP</CODE> <li>Bul: <I>през него</I> <li>Cat: <I>mitjançant ell</I> <li>Dan: <I>gennem det</I> <li>Dut: <I>door het</I> <li>Eng: <I>through it</I> <li>Fin: <I>sen kautta</I> <li>Fre: <I>par lui</I> <li>Ger: <I>durch es</I> <li>Ita: <I>per lui</I> <li>Nor: <I>gjennom det</I> <li>Pol: <I>przez nie</I> <li>Ron: <I>prin el</I> <li>Rus: <I>через него</I> <li>Spa: <I>por él</I> <li>Swe: <I>genom det</I> <li>Urd: <I>اس میں سے</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>to_Prep</CODE></TD>
-<TD><A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A></TD>
-<TD><div class=reveal> <I>to it</I> <div class=popup> <ul> <li>API: <CODE>mkAdv to_Prep it_NP</CODE> <li>Bul: <I>до него</I> <li>Cat: <I>a ell</I> <li>Dan: <I>til det</I> <li>Dut: <I>naar het</I> <li>Eng: <I>to it</I> <li>Fin: <I>siihen</I> <li>Fre: <I>à lui</I> <li>Ger: <I>nach ihm</I> <li>Ita: <I>a lui</I> <li>Nor: <I>til det</I> <li>Pol: <I>do niego</I> <li>Ron: <I>la el</I> <li>Rus: <I>к нему</I> <li>Spa: <I>a él</I> <li>Swe: <I>till det</I> <li>Urd: <I>اس كو</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>under_Prep</CODE></TD>
-<TD><A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A></TD>
-<TD><div class=reveal> <I>under it</I> <div class=popup> <ul> <li>API: <CODE>mkAdv under_Prep it_NP</CODE> <li>Bul: <I>под него</I> <li>Cat: <I>sota ell</I> <li>Dan: <I>under det</I> <li>Dut: <I>onder het</I> <li>Eng: <I>under it</I> <li>Fin: <I>sen alla</I> <li>Fre: <I>sous lui</I> <li>Ger: <I>unter ihm</I> <li>Ita: <I>sotto lui</I> <li>Nor: <I>under det</I> <li>Pol: <I>pod nim</I> <li>Ron: <I>sub el</I> <li>Rus: <I>под ним</I> <li>Spa: <I>bajo él</I> <li>Swe: <I>under det</I> <li>Urd: <I>اس نیچے</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>with_Prep</CODE></TD>
-<TD><A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A></TD>
-<TD><div class=reveal> <I>with it</I> <div class=popup> <ul> <li>API: <CODE>mkAdv with_Prep it_NP</CODE> <li>Bul: <I>с него</I> <li>Cat: <I>amb ell</I> <li>Dan: <I>med det</I> <li>Dut: <I>met het</I> <li>Eng: <I>with it</I> <li>Fin: <I>sen kanssa</I> <li>Fre: <I>avec lui</I> <li>Ger: <I>mit ihm</I> <li>Ita: <I>con lui</I> <li>Nor: <I>med det</I> <li>Pol: <I>z nim</I> <li>Ron: <I>cu el</I> <li>Rus: <I>с ним</I> <li>Spa: <I>con él</I> <li>Swe: <I>med det</I> <li>Urd: <I>اس كے ساتھ</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>without_Prep</CODE></TD>
-<TD><A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A></TD>
-<TD><div class=reveal> <I>without it</I> <div class=popup> <ul> <li>API: <CODE>mkAdv without_Prep it_NP</CODE> <li>Bul: <I>без него</I> <li>Cat: <I>sense ell</I> <li>Dan: <I>uden det</I> <li>Dut: <I>zonder het</I> <li>Eng: <I>without it</I> <li>Fin: <I>ilman sitä</I> <li>Fre: <I>sans lui</I> <li>Ger: <I>ohne es</I> <li>Ita: <I>senza lui</I> <li>Nor: <I>uten det</I> <li>Pol: <I>bez niego</I> <li>Ron: <I>fără el</I> <li>Rus: <I>без него</I> <li>Spa: <I>sin él</I> <li>Swe: <I>utan det</I> <li>Urd: <I>اس كے بغیر</I> </ul> </div> </div></TD>
-</TR>
-</TABLE>
-
-<A NAME="Pron"></A>
-<H2>Pron - personal pronoun</H2>
-<TABLE BORDER="1" CELLPADDING="4">
-<TR>
-<TH>Function</TH>
-<TH>Type</TH>
-<TH COLSPAN="2">Example</TH>
-</TR>
-<TR>
-<TD><CODE>he_Pron</CODE></TD>
-<TD><A HREF="#Pron" TITLE="Pron - personal pronoun">Pron</A></TD>
-<TD><div class=reveal> <I>he</I> <div class=popup> <ul> <li>API: <CODE>he_Pron</CODE> <li>Bul: <I>той</I> <li>Cat: <I>''</I> <li>Dan: <I>han</I> <li>Dut: <I>ResDut.Utr</I> <li>Eng: <I>he</I> <li>Fin: <I>hän</I> <li>Fre: <I>''</I> <li>Ger: <I>er</I> <li>Ita: <I>''</I> <li>Nor: <I>han</I> <li>Pol: <I>niego</I> <li>Ron: <I>el</I> <li>Rus: <I>он</I> <li>Spa: <I>''</I> <li>Swe: <I>han</I> <li>Urd: <I>وہ</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>i_Pron</CODE></TD>
-<TD><A HREF="#Pron" TITLE="Pron - personal pronoun">Pron</A></TD>
-<TD><div class=reveal> <I>I</I> <div class=popup> <ul> <li>API: <CODE>i_Pron</CODE> <li>Bul: <I>аз</I> <li>Cat: <I>''</I> <li>Dan: <I>jeg</I> <li>Dut: <I>ResDut.Utr</I> <li>Eng: <I>I</I> <li>Fin: <I>minä</I> <li>Fre: <I>''</I> <li>Ger: <I>ich</I> <li>Ita: <I>''</I> <li>Nor: <I>jeg</I> <li>Pol: <I>mnie</I> <li>Ron: <I>eu</I> <li>Rus: <I>я</I> <li>Spa: <I>''</I> <li>Swe: <I>jag</I> <li>Urd: <I>میں</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>it_Pron</CODE></TD>
-<TD><A HREF="#Pron" TITLE="Pron - personal pronoun">Pron</A></TD>
-<TD><div class=reveal> <I>it</I> <div class=popup> <ul> <li>API: <CODE>it_Pron</CODE> <li>Bul: <I>то</I> <li>Cat: <I>''</I> <li>Dan: <I>det</I> <li>Dut: <I>ResDut.Neutr</I> <li>Eng: <I>it</I> <li>Fin: <I>se</I> <li>Fre: <I>''</I> <li>Ger: <I>es</I> <li>Ita: <I>''</I> <li>Nor: <I>det</I> <li>Pol: <I>niego</I> <li>Ron: <I>''</I> <li>Rus: <I>оно</I> <li>Spa: <I>''</I> <li>Swe: <I>det</I> <li>Urd: <I>یہ</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>she_Pron</CODE></TD>
-<TD><A HREF="#Pron" TITLE="Pron - personal pronoun">Pron</A></TD>
-<TD><div class=reveal> <I>she</I> <div class=popup> <ul> <li>API: <CODE>she_Pron</CODE> <li>Bul: <I>тя</I> <li>Cat: <I>''</I> <li>Dan: <I>hun</I> <li>Dut: <I>ResDut.Utr</I> <li>Eng: <I>she</I> <li>Fin: <I>hän</I> <li>Fre: <I>''</I> <li>Ger: <I>sie</I> <li>Ita: <I>''</I> <li>Nor: <I>hun</I> <li>Pol: <I>niej</I> <li>Ron: <I>ea</I> <li>Rus: <I>она</I> <li>Spa: <I>''</I> <li>Swe: <I>hon</I> <li>Urd: <I>وہ</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>they_Pron</CODE></TD>
-<TD><A HREF="#Pron" TITLE="Pron - personal pronoun">Pron</A></TD>
-<TD><div class=reveal> <I>they</I> <div class=popup> <ul> <li>API: <CODE>they_Pron</CODE> <li>Bul: <I>те</I> <li>Cat: <I>''</I> <li>Dan: <I>de</I> <li>Dut: <I>ResDut.Utr</I> <li>Eng: <I>they</I> <li>Fin: <I>he</I> <li>Fre: <I>''</I> <li>Ger: <I>sie</I> <li>Ita: <I>''</I> <li>Nor: <I>de</I> <li>Pol: <I>nich</I> <li>Ron: <I>ei</I> <li>Rus: <I>они</I> <li>Spa: <I>''</I> <li>Swe: <I>de</I> <li>Urd: <I>وہ</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>we_Pron</CODE></TD>
-<TD><A HREF="#Pron" TITLE="Pron - personal pronoun">Pron</A></TD>
-<TD><div class=reveal> <I>we</I> <div class=popup> <ul> <li>API: <CODE>we_Pron</CODE> <li>Bul: <I>ние</I> <li>Cat: <I>''</I> <li>Dan: <I>vi</I> <li>Dut: <I>ResDut.Utr</I> <li>Eng: <I>we</I> <li>Fin: <I>me</I> <li>Fre: <I>''</I> <li>Ger: <I>wir</I> <li>Ita: <I>''</I> <li>Nor: <I>vi</I> <li>Pol: <I>nas</I> <li>Ron: <I>noi</I> <li>Rus: <I>мы</I> <li>Spa: <I>''</I> <li>Swe: <I>vi</I> <li>Urd: <I>ہم</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>youPl_Pron</CODE></TD>
-<TD><A HREF="#Pron" TITLE="Pron - personal pronoun">Pron</A></TD>
-<TD><div class=reveal> <I>you</I> <div class=popup> <ul> <li>API: <CODE>youPl_Pron</CODE> <li>Bul: <I>вие</I> <li>Cat: <I>''</I> <li>Dan: <I>I</I> <li>Dut: <I>ResDut.Utr</I> <li>Eng: <I>you</I> <li>Fin: <I>te</I> <li>Fre: <I>''</I> <li>Ger: <I>ihr</I> <li>Ita: <I>''</I> <li>Nor: <I>dere</I> <li>Pol: <I>was</I> <li>Ron: <I>voi</I> <li>Rus: <I>вы</I> <li>Spa: <I>''</I> <li>Swe: <I>ni</I> <li>Urd: <I>تم</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>youPol_Pron</CODE></TD>
-<TD><A HREF="#Pron" TITLE="Pron - personal pronoun">Pron</A></TD>
-<TD><div class=reveal> <I>you</I> <div class=popup> <ul> <li>API: <CODE>youPol_Pron</CODE> <li>Bul: <I>вие</I> <li>Cat: <I>''</I> <li>Dan: <I>De</I> <li>Dut: <I>ResDut.Utr</I> <li>Eng: <I>you</I> <li>Fin: <I>te</I> <li>Fre: <I>''</I> <li>Ger: <I>Sie</I> <li>Ita: <I>''</I> <li>Nor: <I>Dere</I> <li>Pol: <I>ciebie</I> <li>Ron: <I>dumneavoastră</I> <li>Rus: <I>вы</I> <li>Spa: <I>''</I> <li>Swe: <I>ni</I> <li>Urd: <I>آپ</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>youSg_Pron</CODE></TD>
-<TD><A HREF="#Pron" TITLE="Pron - personal pronoun">Pron</A></TD>
-<TD><div class=reveal> <I>you</I> <div class=popup> <ul> <li>API: <CODE>youSg_Pron</CODE> <li>Bul: <I>ти</I> <li>Cat: <I>''</I> <li>Dan: <I>du</I> <li>Dut: <I>ResDut.Neutr</I> <li>Eng: <I>you</I> <li>Fin: <I>sinä</I> <li>Fre: <I>''</I> <li>Ger: <I>du</I> <li>Ita: <I>''</I> <li>Nor: <I>du</I> <li>Pol: <I>ciebie</I> <li>Ron: <I>tu</I> <li>Rus: <I>ты</I> <li>Spa: <I>''</I> <li>Swe: <I>du</I> <li>Urd: <I>تو</I> </ul> </div> </div></TD>
-</TR>
-</TABLE>
-
-<A NAME="Punct"></A>
-<H2>Punct</H2>
-<TABLE BORDER="1" CELLPADDING="4">
-<TR>
-<TH>Function</TH>
-<TH>Type</TH>
-<TH COLSPAN="2">Example</TH>
-</TR>
-<TR>
-<TD><CODE>exclMarkPunct</CODE></TD>
-<TD><A HREF="#Punct">Punct</A></TD>
-<TD><div class=reveal> <I>yes !</I> <div class=popup> <ul> <li>API: <CODE>mkText (mkPhr yes_Utt) exclMarkPunct</CODE> <li>Bul: <I>да !</I> <li>Cat: <I>sí !</I> <li>Dan: <I>ja !</I> <li>Dut: <I>ja !</I> <li>Eng: <I>yes !</I> <li>Fin: <I>kyllä !</I> <li>Fre: <I>oui !</I> <li>Ger: <I>ja !</I> <li>Ita: <I>sì !</I> <li>Nor: <I>ja !</I> <li>Pol: <I>tak !</I> <li>Ron: <I>da !</I> <li>Rus: <I>Да !</I> <li>Spa: <I>¡ sí !</I> <li>Swe: <I>ja !</I> <li>Urd: <I>ہاں !</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>fullStopPunct</CODE></TD>
-<TD><A HREF="#Punct">Punct</A></TD>
-<TD><div class=reveal> <I>yes .</I> <div class=popup> <ul> <li>API: <CODE>mkText (mkPhr yes_Utt) fullStopPunct</CODE> <li>Bul: <I>да .</I> <li>Cat: <I>sí .</I> <li>Dan: <I>ja .</I> <li>Dut: <I>ja .</I> <li>Eng: <I>yes .</I> <li>Fin: <I>kyllä .</I> <li>Fre: <I>oui .</I> <li>Ger: <I>ja .</I> <li>Ita: <I>sì .</I> <li>Nor: <I>ja .</I> <li>Pol: <I>tak .</I> <li>Ron: <I>da .</I> <li>Rus: <I>Да .</I> <li>Spa: <I>sí .</I> <li>Swe: <I>ja .</I> <li>Urd: <I>ہاں .</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>questMarkPunct</CODE></TD>
-<TD><A HREF="#Punct">Punct</A></TD>
-<TD><div class=reveal> <I>yes ?</I> <div class=popup> <ul> <li>API: <CODE>mkText (mkPhr yes_Utt) questMarkPunct</CODE> <li>Bul: <I>да ?</I> <li>Cat: <I>sí ?</I> <li>Dan: <I>ja ?</I> <li>Dut: <I>ja ?</I> <li>Eng: <I>yes ?</I> <li>Fin: <I>kyllä ?</I> <li>Fre: <I>oui ?</I> <li>Ger: <I>ja ?</I> <li>Ita: <I>sì ?</I> <li>Nor: <I>ja ?</I> <li>Pol: <I>tak ?</I> <li>Ron: <I>da ?</I> <li>Rus: <I>Да ?</I> <li>Spa: <I>¿ sí ?</I> <li>Swe: <I>ja ?</I> <li>Urd: <I>ہاں ?</I> </ul> </div> </div></TD>
-</TR>
-</TABLE>
-
-<A NAME="QCl"></A>
-<H2>QCl - question clause, with all tenses</H2>
-<TABLE BORDER="1" CELLPADDING="4">
-<TR>
-<TH>Function</TH>
-<TH>Type</TH>
-<TH COLSPAN="2">Example</TH>
-</TR>
-<TR>
-<TD><CODE>mkQCl</CODE></TD>
-<TD><A HREF="#Cl" TITLE="Cl - declarative clause, with all tenses">Cl</A> <CODE>-&gt;</CODE> <A HREF="#QCl" TITLE="QCl - question clause, with all tenses">QCl</A></TD>
-<TD><div class=reveal> <I>does she sleep</I> <div class=popup> <ul> <li>API: <CODE>mkQCl (mkCl she_NP sleep_V)</CODE> <li>Bul: <I>тя спи ли</I> <li>Cat: <I>ella dorm</I> <li>Dan: <I>sover hun</I> <li>Dut: <I>slaapt ze</I> <li>Eng: <I>does she sleep</I> <li>Fin: <I>nukkuuko hän</I> <li>Fre: <I>elle dort</I> <li>Ger: <I>schläft sie</I> <li>Ita: <I>lei dorme</I> <li>Nor: <I>sover hun</I> <li>Pol: <I>czy ona śpi</I> <li>Ron: <I>ea doarme</I> <li>Rus: <I>она спдит</I> <li>Spa: <I>ella duerme</I> <li>Swe: <I>sover hon</I> <li>Urd: <I>كیا وہ سوتی ہے</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>mkQCl</CODE></TD>
-<TD><A HREF="#IP" TITLE="IP - interrogative pronoun">IP</A> <CODE>-&gt;</CODE> <A HREF="#VP" TITLE="VP - verb phrase">VP</A> <CODE>-&gt;</CODE> <A HREF="#QCl" TITLE="QCl - question clause, with all tenses">QCl</A></TD>
-<TD><div class=reveal> <I>who always sleeps</I> <div class=popup> <ul> <li>API: <CODE>mkQCl who_IP (mkVP always_AdV (mkVP sleep_V))</CODE> <li>Bul: <I>кой винаги спи</I> <li>Cat: <I>qui dorm sempre</I> <li>Dan: <I>hvem sover altid</I> <li>Dut: <I>wie slaapt altijd</I> <li>Eng: <I>who always sleeps</I> <li>Fin: <I>kuka nukkuu aina</I> <li>Fre: <I>qui dort toujours</I> <li>Ger: <I>wer schläft immer</I> <li>Ita: <I>chi dorme sempre</I> <li>Nor: <I>hvem sover altid</I> <li>Pol: <I>kto zawsze śpi</I> <li>Ron: <I>cine doarme mereu</I> <li>Rus: <I>кто всегда спдит</I> <li>Spa: <I>quién duerme siempre</I> <li>Swe: <I>vem sover alltid</I> <li>Urd: <I>كون ہمیشہ سوتا ہے</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>mkQCl</CODE></TD>
-<TD><A HREF="#IP" TITLE="IP - interrogative pronoun">IP</A> <CODE>-&gt;</CODE> <A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#QCl" TITLE="QCl - question clause, with all tenses">QCl</A></TD>
-<TD><div class=reveal> <I>who sleeps</I> <div class=popup> <ul> <li>API: <CODE>mkQCl who_IP sleep_V</CODE> <li>Bul: <I>кой спи</I> <li>Cat: <I>qui dorm</I> <li>Dan: <I>hvem sover</I> <li>Dut: <I>wie slaapt</I> <li>Eng: <I>who sleeps</I> <li>Fin: <I>kuka nukkuu</I> <li>Fre: <I>qui dort</I> <li>Ger: <I>wer schläft</I> <li>Ita: <I>chi dorme</I> <li>Nor: <I>hvem sover</I> <li>Pol: <I>kto śpi</I> <li>Ron: <I>cine doarme</I> <li>Rus: <I>кто спдит</I> <li>Spa: <I>quién duerme</I> <li>Swe: <I>vem sover</I> <li>Urd: <I>كون سوتا ہے</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>mkQCl</CODE></TD>
-<TD><A HREF="#IP" TITLE="IP - interrogative pronoun">IP</A> <CODE>-&gt;</CODE> <A HREF="#V2" TITLE="V2 - two-place verb">V2</A> <CODE>-&gt;</CODE> <A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A> <CODE>-&gt;</CODE> <A HREF="#QCl" TITLE="QCl - question clause, with all tenses">QCl</A></TD>
-<TD><div class=reveal> <I>who loves her</I> <div class=popup> <ul> <li>API: <CODE>mkQCl who_IP love_V2 she_NP</CODE> <li>Bul: <I>кой обича нея</I> <li>Cat: <I>qui la estima</I> <li>Dan: <I>hvem elsker hende</I> <li>Dut: <I>wie heeft haar lief</I> <li>Eng: <I>who loves her</I> <li>Fin: <I>kuka rakastaa häntä</I> <li>Fre: <I>qui l' aime</I> <li>Ger: <I>wer liebt sie</I> <li>Ita: <I>chi la ama</I> <li>Nor: <I>hvem elsker henne</I> <li>Pol: <I>kto kocha ją</I> <li>Ron: <I>cine o iubeşte</I> <li>Rus: <I>кто любдит её</I> <li>Spa: <I>quién la ama</I> <li>Swe: <I>vem älskar henne</I> <li>Urd: <I>كون اس كو پیار كرتا ہے</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>mkQCl</CODE></TD>
-<TD><A HREF="#IP" TITLE="IP - interrogative pronoun">IP</A> <CODE>-&gt;</CODE> <A HREF="#V3" TITLE="V3 - three-place verb">V3</A> <CODE>-&gt;</CODE> <A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A> <CODE>-&gt;</CODE> <A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A> <CODE>-&gt;</CODE> <A HREF="#QCl" TITLE="QCl - question clause, with all tenses">QCl</A></TD>
-<TD><div class=reveal> <I>who sends it to her</I> <div class=popup> <ul> <li>API: <CODE>mkQCl who_IP send_V3 it_NP she_NP</CODE> <li>Bul: <I>кой праща него до нея</I> <li>Cat: <I>qui ho li envia</I> <li>Dan: <I>hvem sender det til hende</I> <li>Dut: <I>wie stuurt het naar haar</I> <li>Eng: <I>who sends it to her</I> <li>Fin: <I>kuka lähettää sen hänelle</I> <li>Fre: <I>qui le lui envoie</I> <li>Ger: <I>wer schickt es ihr</I> <li>Ita: <I>chi lo le manda</I> <li>Nor: <I>hvem sender det til henne</I> <li>Pol: <I>kto wysyła do niej je</I> <li>Ron: <I>cine i -l trimite</I> <li>Rus: <I>кто посылает ней его</I> <li>Spa: <I>quién lo le manda</I> <li>Swe: <I>vem skickar det till henne</I> <li>Urd: <I>كون اس كو اس كو بھیجتا ہے</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>mkQCl</CODE></TD>
-<TD><A HREF="#IP" TITLE="IP - interrogative pronoun">IP</A> <CODE>-&gt;</CODE> <A HREF="#VV" TITLE="VV - verb-phrase-complement verb">VV</A> <CODE>-&gt;</CODE> <A HREF="#VP" TITLE="VP - verb phrase">VP</A> <CODE>-&gt;</CODE> <A HREF="#QCl" TITLE="QCl - question clause, with all tenses">QCl</A></TD>
-<TD><div class=reveal> <I>who wants to sleep</I> <div class=popup> <ul> <li>API: <CODE>mkQCl who_IP want_VV (mkVP sleep_V)</CODE> <li>Bul: <I>кой иска да спи</I> <li>Cat: <I>qui vol dormir</I> <li>Dan: <I>hvem vil sove</I> <li>Dut: <I>wie wil slapen</I> <li>Eng: <I>who wants to sleep</I> <li>Fin: <I>kuka tahtoo nukkua</I> <li>Fre: <I>qui veut dormir</I> <li>Ger: <I>wer will schlafen</I> <li>Ita: <I>chi vuole dormire</I> <li>Nor: <I>hvem vil sove</I> <li>Pol: <I>kto chce spać</I> <li>Ron: <I>cine vrea sã doarmă</I> <li>Rus: <I>кто хоччет спать</I> <li>Spa: <I>quién quiere dormir</I> <li>Swe: <I>vem vill sova</I> <li>Urd: <I>كون سونا چاہتا ہے</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>mkQCl</CODE></TD>
-<TD><A HREF="#IP" TITLE="IP - interrogative pronoun">IP</A> <CODE>-&gt;</CODE> <A HREF="#VS" TITLE="VS - sentence-complement verb">VS</A> <CODE>-&gt;</CODE> <A HREF="#S" TITLE="S - declarative sentence">S</A> <CODE>-&gt;</CODE> <A HREF="#QCl" TITLE="QCl - question clause, with all tenses">QCl</A></TD>
-<TD><div class=reveal> <I>who says that I sleep</I> <div class=popup> <ul> <li>API: <CODE>mkQCl who_IP say_VS (mkS (mkCl i_NP sleep_V))</CODE> <li>Bul: <I>кой казва , че аз спя</I> <li>Cat: <I>qui diu que jo dormo</I> <li>Dan: <I>hvem siger at jeg sover</I> <li>Dut: <I>wie zegt dat ik slaap</I> <li>Eng: <I>who says that I sleep</I> <li>Fin: <I>kuka sanoo että minä nukun</I> <li>Fre: <I>qui dit que je dors</I> <li>Ger: <I>wer sagt daß ich schlafe</I> <li>Ita: <I>chi dice che io dormo</I> <li>Nor: <I>hvem sier at jeg sover</I> <li>Pol: <I>kto mówi , że ja śpię</I> <li>Ron: <I>cine spune cã eu dorm</I> <li>Rus: <I>кто говордит , что я сплю</I> <li>Spa: <I>quién dice que yo duermo</I> <li>Swe: <I>vem säger att jag sover</I> <li>Urd: <I>كون كہتا ہے كہ میں سوتا ہوں</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>mkQCl</CODE></TD>
-<TD><A HREF="#IP" TITLE="IP - interrogative pronoun">IP</A> <CODE>-&gt;</CODE> <A HREF="#VQ" TITLE="VQ - question-complement verb">VQ</A> <CODE>-&gt;</CODE> <A HREF="#QS" TITLE="QS - question">QS</A> <CODE>-&gt;</CODE> <A HREF="#QCl" TITLE="QCl - question clause, with all tenses">QCl</A></TD>
-<TD><div class=reveal> <I>who wonders who sleeps</I> <div class=popup> <ul> <li>API: <CODE>mkQCl who_IP wonder_VQ (mkQS (mkQCl who_IP sleep_V))</CODE> <li>Bul: <I>кой се учудва кой спи</I> <li>Cat: <I>qui se pregunta qui dorm</I> <li>Dan: <I>hvem undres hvem som sover</I> <li>Dut: <I>wie vraagt zich af wie slaapt</I> <li>Eng: <I>who wonders who sleeps</I> <li>Fin: <I>kuka ihmettelee kuka nukkuu</I> <li>Fre: <I>qui s' étonne qui dort</I> <li>Ger: <I>wer wundert sich wer schläft</I> <li>Ita: <I>chi si domanda chi dorme</I> <li>Nor: <I>hvem undrer hvem som sover</I> <li>Pol: <I>kto zastanawia się , kto śpi</I> <li>Ron: <I>cine se întreabă cine doarme</I> <li>Rus: <I>кто интересует кто спдит</I> <li>Spa: <I>quién se pregunta quién duerme</I> <li>Swe: <I>vem undrar vem som sover</I> <li>Urd: <I>كون حیران ہوتا ہے كہ كون سوتا ہے</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>mkQCl</CODE></TD>
-<TD><A HREF="#IP" TITLE="IP - interrogative pronoun">IP</A> <CODE>-&gt;</CODE> <A HREF="#VA" TITLE="VA - adjective-complement verb">VA</A> <CODE>-&gt;</CODE> <A HREF="#A" TITLE="A - one-place adjective">A</A> <CODE>-&gt;</CODE> <A HREF="#QCl" TITLE="QCl - question clause, with all tenses">QCl</A></TD>
-<TD><div class=reveal> <I>who becomes old</I> <div class=popup> <ul> <li>API: <CODE>mkQCl who_IP become_VA old_A</CODE> <li>Bul: <I>кой става стар</I> <li>Cat: <I>qui se torna vell</I> <li>Dan: <I>hvem bliver gammel</I> <li>Dut: <I>wie wordt oud</I> <li>Eng: <I>who becomes old</I> <li>Fin: <I>kuka tulee vanhaksi</I> <li>Fre: <I>qui devient vieux</I> <li>Ger: <I>wer wird alt</I> <li>Ita: <I>chi diventa vecchio</I> <li>Nor: <I>hvem blir gammel</I> <li>Pol: <I>kto staje się stary</I> <li>Ron: <I>cine devine vechi</I> <li>Rus: <I>кто становдит старым</I> <li>Spa: <I>quién se converte viejo</I> <li>Swe: <I>vem blir gammal</I> <li>Urd: <I>كون بوڑھا بنتا ہے</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>mkQCl</CODE></TD>
-<TD><A HREF="#IP" TITLE="IP - interrogative pronoun">IP</A> <CODE>-&gt;</CODE> <A HREF="#VA" TITLE="VA - adjective-complement verb">VA</A> <CODE>-&gt;</CODE> <A HREF="#AP" TITLE="AP - adjectival phrase">AP</A> <CODE>-&gt;</CODE> <A HREF="#QCl" TITLE="QCl - question clause, with all tenses">QCl</A></TD>
-<TD><div class=reveal> <I>who becomes very old</I> <div class=popup> <ul> <li>API: <CODE>mkQCl who_IP become_VA (mkAP very_AdA old_A)</CODE> <li>Bul: <I>кой става много стар</I> <li>Cat: <I>qui se torna molt vell</I> <li>Dan: <I>hvem bliver meget gammel</I> <li>Dut: <I>wie wordt erg oud</I> <li>Eng: <I>who becomes very old</I> <li>Fin: <I>kuka tulee erittäin vanhaksi</I> <li>Fre: <I>qui devient très vieux</I> <li>Ger: <I>wer wird sehr alt</I> <li>Ita: <I>chi diventa molto vecchio</I> <li>Nor: <I>hvem blir mye gammel</I> <li>Pol: <I>kto staje się bardzo stary</I> <li>Ron: <I>cine devine foarte vechi</I> <li>Rus: <I>кто становдит очень старым</I> <li>Spa: <I>quién se converte muy viejo</I> <li>Swe: <I>vem blir mycket gammal</I> <li>Urd: <I>كون بہت بوڑھا بنتا ہے</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>mkQCl</CODE></TD>
-<TD><A HREF="#IP" TITLE="IP - interrogative pronoun">IP</A> <CODE>-&gt;</CODE> <A HREF="#V2A" TITLE="V2A - verb with NP and AP complement">V2A</A> <CODE>-&gt;</CODE> <A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A> <CODE>-&gt;</CODE> <A HREF="#A" TITLE="A - one-place adjective">A</A> <CODE>-&gt;</CODE> <A HREF="#QCl" TITLE="QCl - question clause, with all tenses">QCl</A></TD>
-<TD><div class=reveal> <I>who paints it red</I> <div class=popup> <ul> <li>API: <CODE>mkQCl who_IP paint_V2A it_NP red_A</CODE> <li>Bul: <I>кой рисува него червено</I> <li>Cat: <I>qui ho pinta en vermell</I> <li>Dan: <I>hvem maler det rødt</I> <li>Dut: <I>wie schildeert het rood</I> <li>Eng: <I>who paints it red</I> <li>Fin: <I>kuka maalaa sen punaiseksi</I> <li>Fre: <I>qui le peint en rouge</I> <li>Ger: <I>wer malt es rot</I> <li>Ita: <I>chi lo dipinge rosso</I> <li>Nor: <I>hvem maler det rødt</I> <li>Pol: <I>kto maluje je na czerwono</I> <li>Ron: <I>cine îl pictează roşu</I> <li>Rus: <I>кто рисует красным его</I> <li>Spa: <I>quién lo pinta en rojo</I> <li>Swe: <I>vem målar det rött</I> <li>Urd: <I>كون اس كو لال رنگ كرتا ہے</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>mkQCl</CODE></TD>
-<TD><A HREF="#IP" TITLE="IP - interrogative pronoun">IP</A> <CODE>-&gt;</CODE> <A HREF="#V2A" TITLE="V2A - verb with NP and AP complement">V2A</A> <CODE>-&gt;</CODE> <A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A> <CODE>-&gt;</CODE> <A HREF="#AP" TITLE="AP - adjectival phrase">AP</A> <CODE>-&gt;</CODE> <A HREF="#QCl" TITLE="QCl - question clause, with all tenses">QCl</A></TD>
-<TD><div class=reveal> <I>who paints it very red</I> <div class=popup> <ul> <li>API: <CODE>mkQCl who_IP paint_V2A it_NP (mkAP very_AdA red_A)</CODE> <li>Bul: <I>кой рисува него много червено</I> <li>Cat: <I>qui ho pinta en molt vermell</I> <li>Dan: <I>hvem maler det meget rødt</I> <li>Dut: <I>wie schildeert het erg rood</I> <li>Eng: <I>who paints it very red</I> <li>Fin: <I>kuka maalaa sen erittäin punaiseksi</I> <li>Fre: <I>qui le peint en très rouge</I> <li>Ger: <I>wer malt es sehr rot</I> <li>Ita: <I>chi lo dipinge molto rosso</I> <li>Nor: <I>hvem maler det mye rødt</I> <li>Pol: <I>kto maluje je na bardzo czerwono</I> <li>Ron: <I>cine îl pictează foarte roşu</I> <li>Rus: <I>кто рисует очень красным его</I> <li>Spa: <I>quién lo pinta en muy rojo</I> <li>Swe: <I>vem målar det mycket rött</I> <li>Urd: <I>كون اس كو بہت لال رنگ كرتا ہے</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>mkQCl</CODE></TD>
-<TD><A HREF="#IP" TITLE="IP - interrogative pronoun">IP</A> <CODE>-&gt;</CODE> <A HREF="#V2S" TITLE="V2S - verb with NP and S complement">V2S</A> <CODE>-&gt;</CODE> <A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A> <CODE>-&gt;</CODE> <A HREF="#S" TITLE="S - declarative sentence">S</A> <CODE>-&gt;</CODE> <A HREF="#QCl" TITLE="QCl - question clause, with all tenses">QCl</A></TD>
-<TD><div class=reveal> <I>who answers to him that we sleep</I> <div class=popup> <ul> <li>API: <CODE>mkQCl who_IP answer_V2S he_NP (mkS (mkCl we_NP sleep_V))</CODE> <li>Bul: <I>кой отговаря му , че ние спим</I> <li>Cat: <I>qui li respon que nosaltres dormim</I> <li>Dan: <I>hvem svarer til ham at vi sover</I> <li>Dut: <I>wie antwoordt hem dat we slapen</I> <li>Eng: <I>who answers to him that we sleep</I> <li>Fin: <I>kuka vastaa hänelle että me nukumme</I> <li>Fre: <I>qui lui répond que nous dormons</I> <li>Ger: <I>wer antwortet ihm daß wir schlafen</I> <li>Ita: <I>chi gli risponde che noi dormiamo</I> <li>Nor: <I>hvem svarer til ham at vi sover</I> <li>Pol: <I>kto odpowiada jemu , że my śpimy</I> <li>Ron: <I>cine îi răspunde cã noi dormim</I> <li>Rus: <I>кто отвечает , что мы спдим его</I> <li>Spa: <I>quién le responde que nosotros dormimos</I> <li>Swe: <I>vem svarar till honom att vi sover</I> <li>Urd: <I>كون اس كو جواب دیتا ہے كہ ہم سوتے ہیں</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>mkQCl</CODE></TD>
-<TD><A HREF="#IP" TITLE="IP - interrogative pronoun">IP</A> <CODE>-&gt;</CODE> <A HREF="#V2Q" TITLE="V2Q - verb with NP and Q complement">V2Q</A> <CODE>-&gt;</CODE> <A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A> <CODE>-&gt;</CODE> <A HREF="#QS" TITLE="QS - question">QS</A> <CODE>-&gt;</CODE> <A HREF="#QCl" TITLE="QCl - question clause, with all tenses">QCl</A></TD>
-<TD><div class=reveal> <I>who asks him who sleeps</I> <div class=popup> <ul> <li>API: <CODE>mkQCl who_IP ask_V2Q he_NP (mkQS (mkQCl who_IP sleep_V))</CODE> <li>Bul: <I>кой пита него кой спи</I> <li>Cat: <I>qui li pregunta qui dorm</I> <li>Dan: <I>hvem spørger ham hvem som sover</I> <li>Dut: <I>wie vraagt hem wie slaapt</I> <li>Eng: <I>who asks him who sleeps</I> <li>Fin: <I>kuka kysyy häneltä kuka nukkuu</I> <li>Fre: <I>qui lui demande qui dort</I> <li>Ger: <I>wer fragt ihn wer schläft</I> <li>Ita: <I>chi gli chiede chi dorme</I> <li>Nor: <I>hvem spørr ham hvem som sover</I> <li>Pol: <I>kto pyta jego , kto śpi</I> <li>Ron: <I>cine îl întreabă cine doarme</I> <li>Rus: <I>кто спрашивает кто спдит его</I> <li>Spa: <I>quién le pregunta quién duerme</I> <li>Swe: <I>vem frågar honom vem som sover</I> <li>Urd: <I>كون اس سے پوچھتا ہے كہ كون سوتا ہے</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>mkQCl</CODE></TD>
-<TD><A HREF="#IP" TITLE="IP - interrogative pronoun">IP</A> <CODE>-&gt;</CODE> <A HREF="#V2V" TITLE="V2V - verb with NP and V complement">V2V</A> <CODE>-&gt;</CODE> <A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A> <CODE>-&gt;</CODE> <A HREF="#VP" TITLE="VP - verb phrase">VP</A> <CODE>-&gt;</CODE> <A HREF="#QCl" TITLE="QCl - question clause, with all tenses">QCl</A></TD>
-<TD><div class=reveal> <I>who begs him to sleep</I> <div class=popup> <ul> <li>API: <CODE>mkQCl who_IP beg_V2V he_NP (mkVP sleep_V)</CODE> <li>Bul: <I>кой моли него да спи</I> <li>Cat: <I>qui el demana a dormir</I> <li>Dan: <I>hvem beder ham at sove</I> <li>Dut: <I>wie smeekt hem te slapen</I> <li>Eng: <I>who begs him to sleep</I> <li>Fin: <I>kuka pyytää häntä nukkumaan</I> <li>Fre: <I>qui le demande à dormir</I> <li>Ger: <I>wer bittet ihn zu schlafen</I> <li>Ita: <I>chi lo prega di dormire</I> <li>Nor: <I>hvem ber ham att sove</I> <li>Pol: <I>*</I> <li>Ron: <I>cine îl roagă sã doarmă</I> <li>Rus: <I>кто просит спать его</I> <li>Spa: <I>quién lo roga a dormir</I> <li>Swe: <I>vem ber honom att sova</I> <li>Urd: <I>كون اس سے سونے كی التجا كرتا ہے</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>mkQCl</CODE></TD>
-<TD><A HREF="#IP" TITLE="IP - interrogative pronoun">IP</A> <CODE>-&gt;</CODE> <A HREF="#A" TITLE="A - one-place adjective">A</A> <CODE>-&gt;</CODE> <A HREF="#QCl" TITLE="QCl - question clause, with all tenses">QCl</A></TD>
-<TD><div class=reveal> <I>who is old</I> <div class=popup> <ul> <li>API: <CODE>mkQCl who_IP old_A</CODE> <li>Bul: <I>кой е стар</I> <li>Cat: <I>qui és vell</I> <li>Dan: <I>hvem er gammel</I> <li>Dut: <I>wie is oud</I> <li>Eng: <I>who is old</I> <li>Fin: <I>kuka on vanha</I> <li>Fre: <I>qui est vieux</I> <li>Ger: <I>wer ist alt</I> <li>Ita: <I>chi è vecchio</I> <li>Nor: <I>hvem er gammel</I> <li>Pol: <I>kto jest stary</I> <li>Ron: <I>cine este vechi</I> <li>Rus: <I>кто старый</I> <li>Spa: <I>quién es viejo</I> <li>Swe: <I>vem är gammal</I> <li>Urd: <I>كون بوڑھا ہے</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>mkQCl</CODE></TD>
-<TD><A HREF="#IP" TITLE="IP - interrogative pronoun">IP</A> <CODE>-&gt;</CODE> <A HREF="#A" TITLE="A - one-place adjective">A</A> <CODE>-&gt;</CODE> <A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A> <CODE>-&gt;</CODE> <A HREF="#QCl" TITLE="QCl - question clause, with all tenses">QCl</A></TD>
-<TD><div class=reveal> <I>who is older than he</I> <div class=popup> <ul> <li>API: <CODE>mkQCl who_IP old_A he_NP</CODE> <li>Bul: <I>кой е по - стар от него</I> <li>Cat: <I>qui és més vell que ell</I> <li>Dan: <I>hvem er ældre end han</I> <li>Dut: <I>wie is ouder dan hij</I> <li>Eng: <I>who is older than he</I> <li>Fin: <I>kuka on vanhempi kuin hän</I> <li>Fre: <I>qui est plus vieux que lui</I> <li>Ger: <I>wer ist älter als er</I> <li>Ita: <I>chi è più vecchio di lui</I> <li>Nor: <I>hvem er eldre enn han</I> <li>Pol: <I>kto jest starszy niż on</I> <li>Ron: <I>cine este mai vechi decât el</I> <li>Rus: <I>кто старше него</I> <li>Spa: <I>quién es más viejo que él</I> <li>Swe: <I>vem är äldre än han</I> <li>Urd: <I>كون اس سے بوڑھا ہے</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>mkQCl</CODE></TD>
-<TD><A HREF="#IP" TITLE="IP - interrogative pronoun">IP</A> <CODE>-&gt;</CODE> <A HREF="#A2" TITLE="A2 - two-place adjective">A2</A> <CODE>-&gt;</CODE> <A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A> <CODE>-&gt;</CODE> <A HREF="#QCl" TITLE="QCl - question clause, with all tenses">QCl</A></TD>
-<TD><div class=reveal> <I>who is married to him</I> <div class=popup> <ul> <li>API: <CODE>mkQCl who_IP married_A2 he_NP</CODE> <li>Bul: <I>кой е женен за него</I> <li>Cat: <I>qui és casata a ell</I> <li>Dan: <I>hvem er gift med ham</I> <li>Dut: <I>wie is getrouwd met hem</I> <li>Eng: <I>who is married to him</I> <li>Fin: <I>kuka on avioitunut hänen kanssa</I> <li>Fre: <I>qui est marié à lui</I> <li>Ger: <I>wer ist verheiratet mit ihm</I> <li>Ita: <I>chi è sposato con lui</I> <li>Nor: <I>hvem er gift med ham</I> <li>Pol: <I>kto jest zaślubiony jemu</I> <li>Ron: <I>cine este căsătorit cu el</I> <li>Rus: <I>кто замужем за им</I> <li>Spa: <I>quién es casado a él</I> <li>Swe: <I>vem är gift med honom</I> <li>Urd: <I>كون اس سے [شادی كرنa] ہے</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>mkQCl</CODE></TD>
-<TD><A HREF="#IP" TITLE="IP - interrogative pronoun">IP</A> <CODE>-&gt;</CODE> <A HREF="#AP" TITLE="AP - adjectival phrase">AP</A> <CODE>-&gt;</CODE> <A HREF="#QCl" TITLE="QCl - question clause, with all tenses">QCl</A></TD>
-<TD><div class=reveal> <I>who is very old</I> <div class=popup> <ul> <li>API: <CODE>mkQCl who_IP (mkAP very_AdA old_A)</CODE> <li>Bul: <I>кой е много стар</I> <li>Cat: <I>qui és molt vell</I> <li>Dan: <I>hvem er meget gammel</I> <li>Dut: <I>wie is erg oud</I> <li>Eng: <I>who is very old</I> <li>Fin: <I>kuka on erittäin vanha</I> <li>Fre: <I>qui est très vieux</I> <li>Ger: <I>wer ist sehr alt</I> <li>Ita: <I>chi è molto vecchio</I> <li>Nor: <I>hvem er mye gammel</I> <li>Pol: <I>kto jest bardzo stary</I> <li>Ron: <I>cine este foarte vechi</I> <li>Rus: <I>кто очень старый</I> <li>Spa: <I>quién es muy viejo</I> <li>Swe: <I>vem är mycket gammal</I> <li>Urd: <I>كون بہت بوڑھا ہے</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>mkQCl</CODE></TD>
-<TD><A HREF="#IP" TITLE="IP - interrogative pronoun">IP</A> <CODE>-&gt;</CODE> <A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A> <CODE>-&gt;</CODE> <A HREF="#QCl" TITLE="QCl - question clause, with all tenses">QCl</A></TD>
-<TD><div class=reveal> <I>who is the woman</I> <div class=popup> <ul> <li>API: <CODE>mkQCl who_IP (mkNP the_Det woman_N)</CODE> <li>Bul: <I>кой е жената</I> <li>Cat: <I>qui és la dona</I> <li>Dan: <I>hvem er kvinden</I> <li>Dut: <I>wie is de vrouw</I> <li>Eng: <I>who is the woman</I> <li>Fin: <I>kuka on nainen</I> <li>Fre: <I>qui est la femme</I> <li>Ger: <I>wer ist die Frau</I> <li>Ita: <I>chi è la donna</I> <li>Nor: <I>hvem er kvinna</I> <li>Pol: <I>kto jest kobietą</I> <li>Ron: <I>cine este femeia</I> <li>Rus: <I>кто женщина</I> <li>Spa: <I>quién es la mujer</I> <li>Swe: <I>vem är kvinnan</I> <li>Urd: <I>كون عورت ہے</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>mkQCl</CODE></TD>
-<TD><A HREF="#IP" TITLE="IP - interrogative pronoun">IP</A> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A> <CODE>-&gt;</CODE> <A HREF="#QCl" TITLE="QCl - question clause, with all tenses">QCl</A></TD>
-<TD><div class=reveal> <I>who is a woman</I> <div class=popup> <ul> <li>API: <CODE>mkQCl who_IP woman_N</CODE> <li>Bul: <I>кой е жена</I> <li>Cat: <I>qui és dona</I> <li>Dan: <I>hvem er en kvinde</I> <li>Dut: <I>wie is vrouw</I> <li>Eng: <I>who is a woman</I> <li>Fin: <I>kuka on nainen</I> <li>Fre: <I>qui est femme</I> <li>Ger: <I>wer ist eine Frau</I> <li>Ita: <I>chi è donna</I> <li>Nor: <I>hvem er ei kvinne</I> <li>Pol: <I>kto jest kobieta</I> <li>Ron: <I>cine este femeie</I> <li>Rus: <I>кто женщина</I> <li>Spa: <I>quién es mujer</I> <li>Swe: <I>vem är en kvinna</I> <li>Urd: <I>كون عورت ہے</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>mkQCl</CODE></TD>
-<TD><A HREF="#IP" TITLE="IP - interrogative pronoun">IP</A> <CODE>-&gt;</CODE> <A HREF="#CN" TITLE="CN - common noun (without determiner)">CN</A> <CODE>-&gt;</CODE> <A HREF="#QCl" TITLE="QCl - question clause, with all tenses">QCl</A></TD>
-<TD><div class=reveal> <I>who is an old woman</I> <div class=popup> <ul> <li>API: <CODE>mkQCl who_IP (mkCN old_A woman_N)</CODE> <li>Bul: <I>кой е стара жена</I> <li>Cat: <I>qui és dona vell</I> <li>Dan: <I>hvem er en gammel kvinde</I> <li>Dut: <I>wie is oude vrouw</I> <li>Eng: <I>who is an old woman</I> <li>Fin: <I>kuka on vanha nainen</I> <li>Fre: <I>qui est vieille femme</I> <li>Ger: <I>wer ist eine alte Frau</I> <li>Ita: <I>chi è vecchia donna</I> <li>Nor: <I>hvem er ei gammel kvinne</I> <li>Pol: <I>kto jest stara kobieta</I> <li>Ron: <I>cine este femeie veche</I> <li>Rus: <I>кто старая женщина</I> <li>Spa: <I>quién es vieja mujer</I> <li>Swe: <I>vem är en gammal kvinna</I> <li>Urd: <I>كون بوڑھی عورت ہے</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>mkQCl</CODE></TD>
-<TD><A HREF="#IP" TITLE="IP - interrogative pronoun">IP</A> <CODE>-&gt;</CODE> <A HREF="#Adv" TITLE="Adv - verb-phrase-modifying adverb">Adv</A> <CODE>-&gt;</CODE> <A HREF="#QCl" TITLE="QCl - question clause, with all tenses">QCl</A></TD>
-<TD><div class=reveal> <I>who is here</I> <div class=popup> <ul> <li>API: <CODE>mkQCl who_IP here_Adv</CODE> <li>Bul: <I>кой е тук</I> <li>Cat: <I>qui és aquí</I> <li>Dan: <I>hvem er her</I> <li>Dut: <I>wie is hier</I> <li>Eng: <I>who is here</I> <li>Fin: <I>kuka on täällä</I> <li>Fre: <I>qui est ici</I> <li>Ger: <I>wer ist hier</I> <li>Ita: <I>chi è quà</I> <li>Nor: <I>hvem er her</I> <li>Pol: <I>kto jest tutaj</I> <li>Ron: <I>cine este aici</I> <li>Rus: <I>кто здесь</I> <li>Spa: <I>quién es aquí</I> <li>Swe: <I>vem är här</I> <li>Urd: <I>كون یہاں ہے</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>mkQCl</CODE></TD>
-<TD><A HREF="#IP" TITLE="IP - interrogative pronoun">IP</A> <CODE>-&gt;</CODE> <A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A> <CODE>-&gt;</CODE> <A HREF="#V2" TITLE="V2 - two-place verb">V2</A> <CODE>-&gt;</CODE> <A HREF="#QCl" TITLE="QCl - question clause, with all tenses">QCl</A></TD>
-<TD><div class=reveal> <I>who is her</I> <div class=popup> <ul> <li>API: <CODE>mkQCl who_IP she_NP</CODE> <li>Bul: <I>кой е нея</I> <li>Cat: <I>qui és ella</I> <li>Dan: <I>hvem er hende</I> <li>Dut: <I>wie is ze</I> <li>Eng: <I>who is her</I> <li>Fin: <I>kuka on hän</I> <li>Fre: <I>qui est elle</I> <li>Ger: <I>wer ist sie</I> <li>Ita: <I>chi è lei</I> <li>Nor: <I>hvem er henne</I> <li>Pol: <I>kto jest nią</I> <li>Ron: <I>cine este ea</I> <li>Rus: <I>кто она</I> <li>Spa: <I>quién es ella</I> <li>Swe: <I>vem är henne</I> <li>Urd: <I>كون وہ ہے</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>mkQCl</CODE></TD>
-<TD><A HREF="#IP" TITLE="IP - interrogative pronoun">IP</A> <CODE>-&gt;</CODE> <A HREF="#ClSlash">ClSlash</A> <CODE>-&gt;</CODE> <A HREF="#QCl" TITLE="QCl - question clause, with all tenses">QCl</A></TD>
-<TD><div class=reveal> <I>whom does she love today</I> <div class=popup> <ul> <li>API: <CODE>mkQCl who_IP (mkClSlash (mkClSlash she_NP love_V2) today_Adv)</CODE> <li>Bul: <I>кого обича тя днес</I> <li>Cat: <I>qui estima ella avui</I> <li>Dan: <I>hvem elsker hun idag</I> <li>Dut: <I>wie heeft ze lief vandaag</I> <li>Eng: <I>whom does she love today</I> <li>Fin: <I>ketä hän rakastaa tänään</I> <li>Fre: <I>qui aime elle aujourd'hui</I> <li>Ger: <I>wen liebt sie heute</I> <li>Ita: <I>chi ama lei oggi</I> <li>Nor: <I>hvem elsker hun idag</I> <li>Pol: <I>kogo dziś kocha ona</I> <li>Ron: <I>pe cine iubeşte ea astăzi</I> <li>Rus: <I>*</I> <li>Spa: <I>quién ama ella hoy</I> <li>Swe: <I>vem älskar hon idag</I> <li>Urd: <I>كون آج وہ پیار كرتی ہے</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>mkQCl</CODE></TD>
-<TD><A HREF="#IAdv" TITLE="IAdv - interrogative adverb">IAdv</A> <CODE>-&gt;</CODE> <A HREF="#Cl" TITLE="Cl - declarative clause, with all tenses">Cl</A> <CODE>-&gt;</CODE> <A HREF="#QCl" TITLE="QCl - question clause, with all tenses">QCl</A></TD>
-<TD><div class=reveal> <I>why does she sleep</I> <div class=popup> <ul> <li>API: <CODE>mkQCl why_IAdv (mkCl she_NP sleep_V)</CODE> <li>Bul: <I>защо спи тя</I> <li>Cat: <I>per quË dorm ella</I> <li>Dan: <I>hvorfor sover hun</I> <li>Dut: <I>waarom slaapt ze</I> <li>Eng: <I>why does she sleep</I> <li>Fin: <I>miksi hän nukkuu</I> <li>Fre: <I>pourquoi dort elle</I> <li>Ger: <I>warum schläft sie</I> <li>Ita: <I>perché dorme lei</I> <li>Nor: <I>hvorfor sover hun</I> <li>Pol: <I>dlaczego ona śpi</I> <li>Ron: <I>de ce doarme ea</I> <li>Rus: <I>почему она спдит</I> <li>Spa: <I>porqué duerme ella</I> <li>Swe: <I>varför sover hon</I> <li>Urd: <I>كیوں وہ سوتی ہے</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>mkQCl</CODE></TD>
-<TD><A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#IP" TITLE="IP - interrogative pronoun">IP</A> <CODE>-&gt;</CODE> <A HREF="#Cl" TITLE="Cl - declarative clause, with all tenses">Cl</A> <CODE>-&gt;</CODE> <A HREF="#QCl" TITLE="QCl - question clause, with all tenses">QCl</A></TD>
-<TD><div class=reveal> <I>with whom does she sleep</I> <div class=popup> <ul> <li>API: <CODE>mkQCl with_Prep who_IP (mkCl she_NP sleep_V)</CODE> <li>Bul: <I>с кой спи тя</I> <li>Cat: <I>amb qui dorm ella</I> <li>Dan: <I>med hvem sover hun</I> <li>Dut: <I>met wie slaapt ze</I> <li>Eng: <I>with whom does she sleep</I> <li>Fin: <I>kenen kanssa hän nukkuu</I> <li>Fre: <I>avec qui dort elle</I> <li>Ger: <I>mit wem schläft sie</I> <li>Ita: <I>con chi dorme lei</I> <li>Nor: <I>med hvem sover hun</I> <li>Pol: <I>z kim ona śpi</I> <li>Ron: <I>cu cine doarme ea</I> <li>Rus: <I>с кто она спдит</I> <li>Spa: <I>con quién duerme ella</I> <li>Swe: <I>med vem sover hon</I> <li>Urd: <I>كس كے ساتھ وہ سوتی ہے</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>mkQCl</CODE></TD>
-<TD><A HREF="#IAdv" TITLE="IAdv - interrogative adverb">IAdv</A> <CODE>-&gt;</CODE> <A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A> <CODE>-&gt;</CODE> <A HREF="#QCl" TITLE="QCl - question clause, with all tenses">QCl</A></TD>
-<TD><div class=reveal> <I>where is she</I> <div class=popup> <ul> <li>API: <CODE>mkQCl where_IAdv she_NP</CODE> <li>Bul: <I>къде е тя</I> <li>Cat: <I>on és ella</I> <li>Dan: <I>hvor er hun</I> <li>Dut: <I>waar is ze</I> <li>Eng: <I>where is she</I> <li>Fin: <I>missä hän on</I> <li>Fre: <I>oÃ¹ est elle</I> <li>Ger: <I>wo ist sie</I> <li>Ita: <I>dove è lei</I> <li>Nor: <I>hvor er hun</I> <li>Pol: <I>gdzie jest ona</I> <li>Ron: <I>unde este ea</I> <li>Rus: <I>где она</I> <li>Spa: <I>donde es ella</I> <li>Swe: <I>var är hon</I> <li>Urd: <I>وہ كہاں ہے</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>mkQCl</CODE></TD>
-<TD><A HREF="#IComp" TITLE="IComp - interrogative complement of copula">IComp</A> <CODE>-&gt;</CODE> <A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A> <CODE>-&gt;</CODE> <A HREF="#QCl" TITLE="QCl - question clause, with all tenses">QCl</A></TD>
-<TD><div class=reveal> <I>who is this man</I> <div class=popup> <ul> <li>API: <CODE>mkQCl (mkIComp who_IP) (mkNP this_Det man_N)</CODE> <li>Bul: <I>кой е този мъж</I> <li>Cat: <I>qui és aquest home</I> <li>Dan: <I>hvem er denne mand</I> <li>Dut: <I>wie is deze man</I> <li>Eng: <I>who is this man</I> <li>Fin: <I>kuka tämä mies on</I> <li>Fre: <I>qui est cet homme</I> <li>Ger: <I>wer ist dieser Mann</I> <li>Ita: <I>chi è questo uomo</I> <li>Nor: <I>hvem er denne mannen</I> <li>Pol: <I>kim jest ten mężczyzna</I> <li>Ron: <I>cine este acest om</I> <li>Rus: <I>кто этот человек</I> <li>Spa: <I>quién es este hombre</I> <li>Swe: <I>vem är den här mannen</I> <li>Urd: <I>یہ آدمی كون ہے</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>mkQCl</CODE></TD>
-<TD><A HREF="#IP" TITLE="IP - interrogative pronoun">IP</A> <CODE>-&gt;</CODE> <A HREF="#QCl" TITLE="QCl - question clause, with all tenses">QCl</A></TD>
-<TD><div class=reveal> <I>which city is there</I> <div class=popup> <ul> <li>API: <CODE>mkQCl (mkIP which_IQuant city_N)</CODE> <li>Bul: <I>кой град е тук</I> <li>Cat: <I>quin ciutat hi ha quin ciutat</I> <li>Dan: <I>hvilken by findes det</I> <li>Dut: <I>welke stad is er</I> <li>Eng: <I>which city is there</I> <li>Fin: <I>mikä kaupunki on olemassa</I> <li>Fre: <I>quelle ville il y a</I> <li>Ger: <I>welche Stadt gibt es</I> <li>Ita: <I>quale città c' è</I> <li>Nor: <I>hvilken by finnes det</I> <li>Pol: <I>które miasto jest</I> <li>Ron: <I>care oraş este</I> <li>Rus: <I>который город существует</I> <li>Spa: <I>qué ciudad hay</I> <li>Swe: <I>vilken stad finns det</I> <li>Urd: <I>وہاں كون سا شہر ہے</I> </ul> </div> </div></TD>
-</TR>
-</TABLE>
-
-<A NAME="QS"></A>
-<H2>QS - question</H2>
-<TABLE BORDER="1" CELLPADDING="4">
-<TR>
-<TH>Function</TH>
-<TH>Type</TH>
-<TH COLSPAN="2">Example</TH>
-</TR>
-<TR>
-<TD><CODE>mkQS</CODE></TD>
-<TD>(<A HREF="#Tense" TITLE="Tense - tense">Tense</A>) <CODE>-&gt;</CODE> (<A HREF="#Ant" TITLE="Ant - anteriority">Ant</A>) <CODE>-&gt;</CODE> (<A HREF="#Pol" TITLE="Pol - polarity">Pol</A>) <CODE>-&gt;</CODE> <A HREF="#QCl" TITLE="QCl - question clause, with all tenses">QCl</A> <CODE>-&gt;</CODE> <A HREF="#QS" TITLE="QS - question">QS</A></TD>
-<TD><div class=reveal> <I>who wouldn't have slept</I> <div class=popup> <ul> <li>API: <CODE>mkQS conditionalTense anteriorAnt negativePol (mkQCl who_IP sleep_V)</CODE> <li>Bul: <I>кой не би спал</I> <li>Cat: <I>qui no hauria dormit</I> <li>Dan: <I>hvem ville ikke have sovet</I> <li>Dut: <I>wie zou niet geslapen hebben</I> <li>Eng: <I>who wouldn't have slept</I> <li>Fin: <I>kuka ei olisi nukkunut</I> <li>Fre: <I>qui n' aurait pas dormi</I> <li>Ger: <I>wer würde nicht geschlafen haben</I> <li>Ita: <I>chi non avrebbe dormito</I> <li>Nor: <I>hvem ville ikke ha sovet</I> <li>Pol: <I>kto nie spałby</I> <li>Ron: <I>cine nu ar fi dormit</I> <li>Rus: <I>кто спал бы</I> <li>Spa: <I>quién no habría dormido</I> <li>Swe: <I>vem skulle inte ha sovit</I> <li>Urd: <I>كون نا شاید سو ے</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>mkQS</CODE></TD>
-<TD><A HREF="#Cl" TITLE="Cl - declarative clause, with all tenses">Cl</A> <CODE>-&gt;</CODE> <A HREF="#QS" TITLE="QS - question">QS</A></TD>
-<TD><div class=reveal> <I>does she sleep</I> <div class=popup> <ul> <li>API: <CODE>mkQS (mkCl she_NP sleep_V)</CODE> <li>Bul: <I>тя спи ли</I> <li>Cat: <I>ella dorm</I> <li>Dan: <I>sover hun</I> <li>Dut: <I>slaapt ze</I> <li>Eng: <I>does she sleep</I> <li>Fin: <I>nukkuuko hän</I> <li>Fre: <I>elle dort</I> <li>Ger: <I>schläft sie</I> <li>Ita: <I>lei dorme</I> <li>Nor: <I>sover hun</I> <li>Pol: <I>czy ona śpi</I> <li>Ron: <I>ea doarme</I> <li>Rus: <I>она спдит</I> <li>Spa: <I>ella duerme</I> <li>Swe: <I>sover hon</I> <li>Urd: <I>كیا وہ سوتی ہے</I> </ul> </div> </div></TD>
-</TR>
-</TABLE>
-
-<A NAME="Quant"></A>
-<H2>Quant - quantifier ('nucleus' of Det)</H2>
-<TABLE BORDER="1" CELLPADDING="4">
-<TR>
-<TH>Function</TH>
-<TH>Type</TH>
-<TH COLSPAN="2">Example</TH>
-</TR>
-<TR>
-<TD><CODE>a_Quant</CODE></TD>
-<TD><A 'HREF="#Quant" TITLE="Quant - quantifier ('nucleus' of Det)"'>Quant</A></TD>
-<TD><div class=reveal> <I>a house</I> <div class=popup> <ul> <li>API: <CODE>mkNP a_Quant house_N</CODE> <li>Bul: <I>къща</I> <li>Cat: <I>''</I> <li>Dan: <I>et hus</I> <li>Dut: <I>een huis</I> <li>Eng: <I>a house</I> <li>Fin: <I>talo</I> <li>Fre: <I>''</I> <li>Ger: <I>ein Haus</I> <li>Ita: <I>''</I> <li>Nor: <I>et hus</I> <li>Pol: <I>domu</I> <li>Ron: <I>''</I> <li>Rus: <I>дом</I> <li>Spa: <I>''</I> <li>Swe: <I>ett hus</I> <li>Urd: <I>گھر</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>mkQuant</CODE></TD>
-<TD><A HREF="#Pron" TITLE="Pron - personal pronoun">Pron</A> <CODE>-&gt;</CODE> <A 'HREF="#Quant" TITLE="Quant - quantifier ('nucleus' of Det)"'>Quant</A></TD>
-<TD><div class=reveal> <I>my house</I> <div class=popup> <ul> <li>API: <CODE>mkNP (mkQuant i_Pron) house_N</CODE> <li>Bul: <I>моята къща</I> <li>Cat: <I>''</I> <li>Dan: <I>mit hus</I> <li>Dut: <I>mijn huis</I> <li>Eng: <I>my house</I> <li>Fin: <I>minun taloni</I> <li>Fre: <I>''</I> <li>Ger: <I>mein Haus</I> <li>Ita: <I>''</I> <li>Nor: <I>mit hus</I> <li>Pol: <I>mojego domu</I> <li>Ron: <I>''</I> <li>Rus: <I>мой дом</I> <li>Spa: <I>''</I> <li>Swe: <I>mitt hus</I> <li>Urd: <I>میرا گھر</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>no_Quant</CODE></TD>
-<TD><A 'HREF="#Quant" TITLE="Quant - quantifier ('nucleus' of Det)"'>Quant</A></TD>
-<TD><div class=reveal> <I>no house</I> <div class=popup> <ul> <li>API: <CODE>mkNP no_Quant house_N</CODE> <li>Bul: <I>*</I> <li>Cat: <I>''</I> <li>Dan: <I>*</I> <li>Dut: <I>geen huis</I> <li>Eng: <I>no house</I> <li>Fin: <I>ei mikään talo</I> <li>Fre: <I>''</I> <li>Ger: <I>kein Haus</I> <li>Ita: <I>''</I> <li>Nor: <I>*</I> <li>Pol: <I>żadnego domu</I> <li>Ron: <I>''</I> <li>Rus: <I>*</I> <li>Spa: <I>*</I> <li>Swe: <I>inget hus</I> <li>Urd: <I>كوی نہیں گھر</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>that_Quant</CODE></TD>
-<TD><A 'HREF="#Quant" TITLE="Quant - quantifier ('nucleus' of Det)"'>Quant</A></TD>
-<TD><div class=reveal> <I>that house</I> <div class=popup> <ul> <li>API: <CODE>mkNP that_Quant house_N</CODE> <li>Bul: <I>онази къща</I> <li>Cat: <I>''</I> <li>Dan: <I>det der hus</I> <li>Dut: <I>dat huis</I> <li>Eng: <I>that house</I> <li>Fin: <I>tuo talo</I> <li>Fre: <I>''</I> <li>Ger: <I>jenes Haus</I> <li>Ita: <I>''</I> <li>Nor: <I>det der huset</I> <li>Pol: <I>tamtego domu</I> <li>Ron: <I>''</I> <li>Rus: <I>тот дом</I> <li>Spa: <I>''</I> <li>Swe: <I>det där huset</I> <li>Urd: <I>وہ گھر</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>the_Quant</CODE></TD>
-<TD><A 'HREF="#Quant" TITLE="Quant - quantifier ('nucleus' of Det)"'>Quant</A></TD>
-<TD><div class=reveal> <I>the house</I> <div class=popup> <ul> <li>API: <CODE>mkNP the_Quant house_N</CODE> <li>Bul: <I>къщата</I> <li>Cat: <I>''</I> <li>Dan: <I>huset</I> <li>Dut: <I>het huis</I> <li>Eng: <I>the house</I> <li>Fin: <I>talo</I> <li>Fre: <I>''</I> <li>Ger: <I>das Haus</I> <li>Ita: <I>''</I> <li>Nor: <I>huset</I> <li>Pol: <I>domu</I> <li>Ron: <I>''</I> <li>Rus: <I>дом</I> <li>Spa: <I>''</I> <li>Swe: <I>huset</I> <li>Urd: <I>گھر</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>this_Quant</CODE></TD>
-<TD><A 'HREF="#Quant" TITLE="Quant - quantifier ('nucleus' of Det)"'>Quant</A></TD>
-<TD><div class=reveal> <I>this house</I> <div class=popup> <ul> <li>API: <CODE>mkNP this_Quant house_N</CODE> <li>Bul: <I>тази къща</I> <li>Cat: <I>''</I> <li>Dan: <I>dette hus</I> <li>Dut: <I>dit huis</I> <li>Eng: <I>this house</I> <li>Fin: <I>tämä talo</I> <li>Fre: <I>''</I> <li>Ger: <I>dieses Haus</I> <li>Ita: <I>''</I> <li>Nor: <I>dette huset</I> <li>Pol: <I>tego domu</I> <li>Ron: <I>''</I> <li>Rus: <I>этот дом</I> <li>Spa: <I>''</I> <li>Swe: <I>det här huset</I> <li>Urd: <I>یہ گھر</I> </ul> </div> </div></TD>
-</TR>
-</TABLE>
-
-<A NAME="RCl"></A>
-<H2>RCl - relative clause, with all tenses</H2>
-<TABLE BORDER="1" CELLPADDING="4">
-<TR>
-<TH>Function</TH>
-<TH>Type</TH>
-<TH COLSPAN="2">Example</TH>
-</TR>
-<TR>
-<TD><CODE>mkRCl</CODE></TD>
-<TD><A HREF="#RP" TITLE="RP - relative pronoun">RP</A> <CODE>-&gt;</CODE> <A HREF="#VP" TITLE="VP - verb phrase">VP</A> <CODE>-&gt;</CODE> <A HREF="#RCl" TITLE="RCl - relative clause, with all tenses">RCl</A></TD>
-<TD><div class=reveal> <I>woman who always sleeps</I> <div class=popup> <ul> <li>API: <CODE>mkCN woman_N (mkRS (mkRCl which_RP (mkVP always_AdV (mkVP sleep_V))))</CODE> <li>Bul: <I>жена която винаги спи</I> <li>Cat: <I>dona que dorm sempre</I> <li>Dan: <I>kvinde som altid sover</I> <li>Dut: <I>vrouw die altijd slaapt</I> <li>Eng: <I>woman who always sleeps</I> <li>Fin: <I>nainen joka nukkuu aina</I> <li>Fre: <I>femme qui dort toujours</I> <li>Ger: <I>Frau die immer schläft</I> <li>Ita: <I>donna che dorme sempre</I> <li>Nor: <I>kvinne som altid sover</I> <li>Pol: <I>kobieta , która zawsze śpi</I> <li>Ron: <I>femeie care doarme mereu</I> <li>Rus: <I>женщина , которая всегда спдит</I> <li>Spa: <I>mujer que duerme siempre</I> <li>Swe: <I>kvinna som alltid sover</I> <li>Urd: <I>عورت جو ہمیشہ سوتی ہے</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>mkRCl</CODE></TD>
-<TD><A HREF="#RP" TITLE="RP - relative pronoun">RP</A> <CODE>-&gt;</CODE> <A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#RCl" TITLE="RCl - relative clause, with all tenses">RCl</A></TD>
-<TD><div class=reveal> <I>woman who sleeps</I> <div class=popup> <ul> <li>API: <CODE>mkCN woman_N (mkRS (mkRCl which_RP sleep_V))</CODE> <li>Bul: <I>жена която спи</I> <li>Cat: <I>dona que dorm</I> <li>Dan: <I>kvinde som sover</I> <li>Dut: <I>vrouw die slaapt</I> <li>Eng: <I>woman who sleeps</I> <li>Fin: <I>nainen joka nukkuu</I> <li>Fre: <I>femme qui dort</I> <li>Ger: <I>Frau die schläft</I> <li>Ita: <I>donna che dorme</I> <li>Nor: <I>kvinne som sover</I> <li>Pol: <I>kobieta , która śpi</I> <li>Ron: <I>femeie care doarme</I> <li>Rus: <I>женщина , которая спдит</I> <li>Spa: <I>mujer que duerme</I> <li>Swe: <I>kvinna som sover</I> <li>Urd: <I>عورت جو سوتی ہے</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>mkRCl</CODE></TD>
-<TD><A HREF="#RP" TITLE="RP - relative pronoun">RP</A> <CODE>-&gt;</CODE> <A HREF="#V2" TITLE="V2 - two-place verb">V2</A> <CODE>-&gt;</CODE> <A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A> <CODE>-&gt;</CODE> <A HREF="#RCl" TITLE="RCl - relative clause, with all tenses">RCl</A></TD>
-<TD><div class=reveal> <I>woman who loves him</I> <div class=popup> <ul> <li>API: <CODE>mkCN woman_N (mkRS (mkRCl which_RP love_V2 he_NP))</CODE> <li>Bul: <I>жена която обича него</I> <li>Cat: <I>dona que el estima</I> <li>Dan: <I>kvinde som elsker ham</I> <li>Dut: <I>vrouw die hem lief heeft</I> <li>Eng: <I>woman who loves him</I> <li>Fin: <I>nainen joka rakastaa häntä</I> <li>Fre: <I>femme qui l' aime</I> <li>Ger: <I>Frau die ihn liebt</I> <li>Ita: <I>donna che lo ama</I> <li>Nor: <I>kvinne som elsker ham</I> <li>Pol: <I>kobieta , która kocha jego</I> <li>Ron: <I>femeie care îl iubeşte</I> <li>Rus: <I>женщина , которая любдит его</I> <li>Spa: <I>mujer que lo ama</I> <li>Swe: <I>kvinna som älskar honom</I> <li>Urd: <I>عورت جو اس كو پیار كرتی ہے</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>mkRCl</CODE></TD>
-<TD><A HREF="#RP" TITLE="RP - relative pronoun">RP</A> <CODE>-&gt;</CODE> <A HREF="#V3" TITLE="V3 - three-place verb">V3</A> <CODE>-&gt;</CODE> <A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A> <CODE>-&gt;</CODE> <A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A> <CODE>-&gt;</CODE> <A HREF="#RCl" TITLE="RCl - relative clause, with all tenses">RCl</A></TD>
-<TD><div class=reveal> <I>woman who sends it to him</I> <div class=popup> <ul> <li>API: <CODE>mkCN woman_N (mkRS (mkRCl which_RP send_V3 it_NP he_NP))</CODE> <li>Bul: <I>жена която праща него до него</I> <li>Cat: <I>dona que ho li envia</I> <li>Dan: <I>kvinde som sender det til ham</I> <li>Dut: <I>vrouw die het naar hem stuurt</I> <li>Eng: <I>woman who sends it to him</I> <li>Fin: <I>nainen joka lähettää sen hänelle</I> <li>Fre: <I>femme qui le lui envoie</I> <li>Ger: <I>Frau die es ihm schickt</I> <li>Ita: <I>donna che lo gli manda</I> <li>Nor: <I>kvinne som sender det til ham</I> <li>Pol: <I>kobieta , która wysyła do niego je</I> <li>Ron: <I>femeie care i -l trimite</I> <li>Rus: <I>женщина , которая посылает нему его</I> <li>Spa: <I>mujer que lo le manda</I> <li>Swe: <I>kvinna som skickar det till honom</I> <li>Urd: <I>عورت جو اس كو اس كو بھیجتی ہے</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>mkRCl</CODE></TD>
-<TD><A HREF="#RP" TITLE="RP - relative pronoun">RP</A> <CODE>-&gt;</CODE> <A HREF="#VV" TITLE="VV - verb-phrase-complement verb">VV</A> <CODE>-&gt;</CODE> <A HREF="#VP" TITLE="VP - verb phrase">VP</A> <CODE>-&gt;</CODE> <A HREF="#RCl" TITLE="RCl - relative clause, with all tenses">RCl</A></TD>
-<TD><div class=reveal> <I>woman who wants to sleep</I> <div class=popup> <ul> <li>API: <CODE>mkCN woman_N (mkRS (mkRCl which_RP want_VV (mkVP sleep_V)))</CODE> <li>Bul: <I>жена която иска да спи</I> <li>Cat: <I>dona que vol dormir</I> <li>Dan: <I>kvinde som vil sove</I> <li>Dut: <I>vrouw die slapen wil</I> <li>Eng: <I>woman who wants to sleep</I> <li>Fin: <I>nainen joka tahtoo nukkua</I> <li>Fre: <I>femme qui veut dormir</I> <li>Ger: <I>Frau die schlafen will</I> <li>Ita: <I>donna che vuole dormire</I> <li>Nor: <I>kvinne som vil sove</I> <li>Pol: <I>kobieta , która chce spać</I> <li>Ron: <I>femeie care vrea sã doarmă</I> <li>Rus: <I>женщина , которая хоччет спать</I> <li>Spa: <I>mujer que quiere dormir</I> <li>Swe: <I>kvinna som vill sova</I> <li>Urd: <I>عورت جو سونا چاہتی ہے</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>mkRCl</CODE></TD>
-<TD><A HREF="#RP" TITLE="RP - relative pronoun">RP</A> <CODE>-&gt;</CODE> <A HREF="#VS" TITLE="VS - sentence-complement verb">VS</A> <CODE>-&gt;</CODE> <A HREF="#S" TITLE="S - declarative sentence">S</A> <CODE>-&gt;</CODE> <A HREF="#RCl" TITLE="RCl - relative clause, with all tenses">RCl</A></TD>
-<TD><div class=reveal> <I>woman who says that I sleep</I> <div class=popup> <ul> <li>API: <CODE>mkCN woman_N (mkRS (mkRCl which_RP say_VS (mkS (mkCl i_NP sleep_V))))</CODE> <li>Bul: <I>жена която казва , че аз спя</I> <li>Cat: <I>dona que diu que jo dormo</I> <li>Dan: <I>kvinde som siger at jeg sover</I> <li>Dut: <I>vrouw die zegt dat ik slaap</I> <li>Eng: <I>woman who says that I sleep</I> <li>Fin: <I>nainen joka sanoo että minä nukun</I> <li>Fre: <I>femme qui dit que je dors</I> <li>Ger: <I>Frau die sagt daß ich schlafe</I> <li>Ita: <I>donna che dice che io dormo</I> <li>Nor: <I>kvinne som sier at jeg sover</I> <li>Pol: <I>kobieta , która mówi , że ja śpię</I> <li>Ron: <I>femeie care spune cã eu dorm</I> <li>Rus: <I>женщина , которая говордит , что я сплю</I> <li>Spa: <I>mujer que dice que yo duermo</I> <li>Swe: <I>kvinna som säger att jag sover</I> <li>Urd: <I>عورت جو كہتی ہے كہ میں سوتا ہوں</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>mkRCl</CODE></TD>
-<TD><A HREF="#RP" TITLE="RP - relative pronoun">RP</A> <CODE>-&gt;</CODE> <A HREF="#VQ" TITLE="VQ - question-complement verb">VQ</A> <CODE>-&gt;</CODE> <A HREF="#QS" TITLE="QS - question">QS</A> <CODE>-&gt;</CODE> <A HREF="#RCl" TITLE="RCl - relative clause, with all tenses">RCl</A></TD>
-<TD><div class=reveal> <I>woman who wonders who sleeps</I> <div class=popup> <ul> <li>API: <CODE>mkCN woman_N (mkRS (mkRCl which_RP wonder_VQ (mkQS (mkQCl who_IP sleep_V))))</CODE> <li>Bul: <I>жена която се учудва кой спи</I> <li>Cat: <I>dona que se pregunta qui dorm</I> <li>Dan: <I>kvinde som undres hvem som sover</I> <li>Dut: <I>vrouw die zich af vraagt wie slaapt</I> <li>Eng: <I>woman who wonders who sleeps</I> <li>Fin: <I>nainen joka ihmettelee kuka nukkuu</I> <li>Fre: <I>femme qui s' étonne qui dort</I> <li>Ger: <I>Frau die sich wundert wer schläft</I> <li>Ita: <I>donna che si domanda chi dorme</I> <li>Nor: <I>kvinne som undrer hvem som sover</I> <li>Pol: <I>kobieta , która zastanawia się , kto śpi</I> <li>Ron: <I>femeie care se întreabă cine doarme</I> <li>Rus: <I>женщина , которая интересует кто спдит</I> <li>Spa: <I>mujer que se pregunta quién duerme</I> <li>Swe: <I>kvinna som undrar vem som sover</I> <li>Urd: <I>عورت جو حیران ہوتی ہے كہ كون سوتا ہے</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>mkRCl</CODE></TD>
-<TD><A HREF="#RP" TITLE="RP - relative pronoun">RP</A> <CODE>-&gt;</CODE> <A HREF="#VA" TITLE="VA - adjective-complement verb">VA</A> <CODE>-&gt;</CODE> <A HREF="#A" TITLE="A - one-place adjective">A</A> <CODE>-&gt;</CODE> <A HREF="#RCl" TITLE="RCl - relative clause, with all tenses">RCl</A></TD>
-<TD><div class=reveal> <I>woman who becomes old</I> <div class=popup> <ul> <li>API: <CODE>mkCN woman_N (mkRS (mkRCl which_RP become_VA old_A))</CODE> <li>Bul: <I>жена която става стара</I> <li>Cat: <I>dona que se torna vell</I> <li>Dan: <I>kvinde som bliver gammel</I> <li>Dut: <I>vrouw die oud wordt</I> <li>Eng: <I>woman who becomes old</I> <li>Fin: <I>nainen joka tulee vanhaksi</I> <li>Fre: <I>femme qui devient vieille</I> <li>Ger: <I>Frau die alt wird</I> <li>Ita: <I>donna che diventa vecchia</I> <li>Nor: <I>kvinne som blir gammel</I> <li>Pol: <I>kobieta , która staje się stara</I> <li>Ron: <I>femeie care devine veche</I> <li>Rus: <I>женщина , которая становдит старой</I> <li>Spa: <I>mujer que se converte vieja</I> <li>Swe: <I>kvinna som blir gammal</I> <li>Urd: <I>عورت جو بوڑھی بنتی ہے</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>mkRCl</CODE></TD>
-<TD><A HREF="#RP" TITLE="RP - relative pronoun">RP</A> <CODE>-&gt;</CODE> <A HREF="#VA" TITLE="VA - adjective-complement verb">VA</A> <CODE>-&gt;</CODE> <A HREF="#AP" TITLE="AP - adjectival phrase">AP</A> <CODE>-&gt;</CODE> <A HREF="#RCl" TITLE="RCl - relative clause, with all tenses">RCl</A></TD>
-<TD><div class=reveal> <I>woman who becomes very old</I> <div class=popup> <ul> <li>API: <CODE>mkCN woman_N (mkRS (mkRCl which_RP become_VA (mkAP very_AdA old_A)))</CODE> <li>Bul: <I>жена която става много стара</I> <li>Cat: <I>dona que se torna molt vell</I> <li>Dan: <I>kvinde som bliver meget gammel</I> <li>Dut: <I>vrouw die erg oud wordt</I> <li>Eng: <I>woman who becomes very old</I> <li>Fin: <I>nainen joka tulee erittäin vanhaksi</I> <li>Fre: <I>femme qui devient très vieille</I> <li>Ger: <I>Frau die sehr alt wird</I> <li>Ita: <I>donna che diventa molto vecchia</I> <li>Nor: <I>kvinne som blir mye gammel</I> <li>Pol: <I>kobieta , która staje się bardzo stara</I> <li>Ron: <I>femeie care devine foarte veche</I> <li>Rus: <I>женщина , которая становдит очень старой</I> <li>Spa: <I>mujer que se converte muy vieja</I> <li>Swe: <I>kvinna som blir mycket gammal</I> <li>Urd: <I>عورت جو بہت بوڑھی بنتی ہے</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>mkRCl</CODE></TD>
-<TD><A HREF="#RP" TITLE="RP - relative pronoun">RP</A> <CODE>-&gt;</CODE> <A HREF="#V2A" TITLE="V2A - verb with NP and AP complement">V2A</A> <CODE>-&gt;</CODE> <A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A> <CODE>-&gt;</CODE> <A HREF="#A" TITLE="A - one-place adjective">A</A> <CODE>-&gt;</CODE> <A HREF="#RCl" TITLE="RCl - relative clause, with all tenses">RCl</A></TD>
-<TD><div class=reveal> <I>woman who paints it red</I> <div class=popup> <ul> <li>API: <CODE>mkCN woman_N (mkRS (mkRCl which_RP paint_V2A it_NP red_A))</CODE> <li>Bul: <I>жена която рисува него червено</I> <li>Cat: <I>dona que ho pinta en vermell</I> <li>Dan: <I>kvinde som maler det rødt</I> <li>Dut: <I>vrouw die het rood schildeert</I> <li>Eng: <I>woman who paints it red</I> <li>Fin: <I>nainen joka maalaa sen punaiseksi</I> <li>Fre: <I>femme qui le peint en rouge</I> <li>Ger: <I>Frau die es rot malt</I> <li>Ita: <I>donna che lo dipinge rosso</I> <li>Nor: <I>kvinne som maler det rødt</I> <li>Pol: <I>kobieta , która maluje je na czerwono</I> <li>Ron: <I>femeie care îl pictează roşu</I> <li>Rus: <I>женщина , которая рисует красным его</I> <li>Spa: <I>mujer que lo pinta en rojo</I> <li>Swe: <I>kvinna som målar det rött</I> <li>Urd: <I>عورت جو اس كو لال رنگ كرتی ہے</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>mkRCl</CODE></TD>
-<TD><A HREF="#RP" TITLE="RP - relative pronoun">RP</A> <CODE>-&gt;</CODE> <A HREF="#V2A" TITLE="V2A - verb with NP and AP complement">V2A</A> <CODE>-&gt;</CODE> <A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A> <CODE>-&gt;</CODE> <A HREF="#AP" TITLE="AP - adjectival phrase">AP</A> <CODE>-&gt;</CODE> <A HREF="#RCl" TITLE="RCl - relative clause, with all tenses">RCl</A></TD>
-<TD><div class=reveal> <I>woman who paints it very red</I> <div class=popup> <ul> <li>API: <CODE>mkCN woman_N (mkRS (mkRCl which_RP paint_V2A it_NP (mkAP very_AdA red_A)))</CODE> <li>Bul: <I>жена която рисува него много червено</I> <li>Cat: <I>dona que ho pinta en molt vermell</I> <li>Dan: <I>kvinde som maler det meget rødt</I> <li>Dut: <I>vrouw die het erg rood schildeert</I> <li>Eng: <I>woman who paints it very red</I> <li>Fin: <I>nainen joka maalaa sen erittäin punaiseksi</I> <li>Fre: <I>femme qui le peint en très rouge</I> <li>Ger: <I>Frau die es sehr rot malt</I> <li>Ita: <I>donna che lo dipinge molto rosso</I> <li>Nor: <I>kvinne som maler det mye rødt</I> <li>Pol: <I>kobieta , która maluje je na bardzo czerwono</I> <li>Ron: <I>femeie care îl pictează foarte roşu</I> <li>Rus: <I>женщина , которая рисует очень красным его</I> <li>Spa: <I>mujer que lo pinta en muy rojo</I> <li>Swe: <I>kvinna som målar det mycket rött</I> <li>Urd: <I>عورت جو اس كو بہت لال رنگ كرتی ہے</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>mkRCl</CODE></TD>
-<TD><A HREF="#RP" TITLE="RP - relative pronoun">RP</A> <CODE>-&gt;</CODE> <A HREF="#V2S" TITLE="V2S - verb with NP and S complement">V2S</A> <CODE>-&gt;</CODE> <A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A> <CODE>-&gt;</CODE> <A HREF="#S" TITLE="S - declarative sentence">S</A> <CODE>-&gt;</CODE> <A HREF="#RCl" TITLE="RCl - relative clause, with all tenses">RCl</A></TD>
-<TD><div class=reveal> <I>woman who answers to him that we sleep</I> <div class=popup> <ul> <li>API: <CODE>mkCN woman_N (mkRS (mkRCl which_RP answer_V2S he_NP (mkS (mkCl we_NP sleep_V))))</CODE> <li>Bul: <I>жена която отговаря му , че ние спим</I> <li>Cat: <I>dona que li respon que nosaltres dormim</I> <li>Dan: <I>kvinde som svarer til ham at vi sover</I> <li>Dut: <I>vrouw die hem antwoordt dat we slapen</I> <li>Eng: <I>woman who answers to him that we sleep</I> <li>Fin: <I>nainen joka vastaa hänelle että me nukumme</I> <li>Fre: <I>femme qui lui répond que nous dormons</I> <li>Ger: <I>Frau die ihm antwortet daß wir schlafen</I> <li>Ita: <I>donna che gli risponde che noi dormiamo</I> <li>Nor: <I>kvinne som svarer til ham at vi sover</I> <li>Pol: <I>kobieta , która odpowiada jemu , że my śpimy</I> <li>Ron: <I>femeie care îi răspunde cã noi dormim</I> <li>Rus: <I>женщина , которая отвечает , что мы спдим его</I> <li>Spa: <I>mujer que le responde que nosotros dormimos</I> <li>Swe: <I>kvinna som svarar till honom att vi sover</I> <li>Urd: <I>عورت جو اس كو جواب دیتی ہے كہ ہم سوتے ہیں</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>mkRCl</CODE></TD>
-<TD><A HREF="#RP" TITLE="RP - relative pronoun">RP</A> <CODE>-&gt;</CODE> <A HREF="#V2Q" TITLE="V2Q - verb with NP and Q complement">V2Q</A> <CODE>-&gt;</CODE> <A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A> <CODE>-&gt;</CODE> <A HREF="#QS" TITLE="QS - question">QS</A> <CODE>-&gt;</CODE> <A HREF="#RCl" TITLE="RCl - relative clause, with all tenses">RCl</A></TD>
-<TD><div class=reveal> <I>woman who asks him who sleeps</I> <div class=popup> <ul> <li>API: <CODE>mkCN woman_N (mkRS (mkRCl which_RP ask_V2Q he_NP (mkQS (mkQCl who_IP sleep_V))))</CODE> <li>Bul: <I>жена която пита него кой спи</I> <li>Cat: <I>dona que li pregunta qui dorm</I> <li>Dan: <I>kvinde som spørger ham hvem som sover</I> <li>Dut: <I>vrouw die hem vraagt wie slaapt</I> <li>Eng: <I>woman who asks him who sleeps</I> <li>Fin: <I>nainen joka kysyy häneltä kuka nukkuu</I> <li>Fre: <I>femme qui lui demande qui dort</I> <li>Ger: <I>Frau die ihn fragt wer schläft</I> <li>Ita: <I>donna che gli chiede chi dorme</I> <li>Nor: <I>kvinne som spørr ham hvem som sover</I> <li>Pol: <I>kobieta , która pyta jego , kto śpi</I> <li>Ron: <I>femeie care îl întreabă cine doarme</I> <li>Rus: <I>женщина , которая спрашивает кто спдит его</I> <li>Spa: <I>mujer que le pregunta quién duerme</I> <li>Swe: <I>kvinna som frågar honom vem som sover</I> <li>Urd: <I>عورت جو اس سے پوچھتی ہے كہ كون سوتا ہے</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>mkRCl</CODE></TD>
-<TD><A HREF="#RP" TITLE="RP - relative pronoun">RP</A> <CODE>-&gt;</CODE> <A HREF="#V2V" TITLE="V2V - verb with NP and V complement">V2V</A> <CODE>-&gt;</CODE> <A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A> <CODE>-&gt;</CODE> <A HREF="#VP" TITLE="VP - verb phrase">VP</A> <CODE>-&gt;</CODE> <A HREF="#RCl" TITLE="RCl - relative clause, with all tenses">RCl</A></TD>
-<TD><div class=reveal> <I>woman who begs him to sleep</I> <div class=popup> <ul> <li>API: <CODE>mkCN woman_N (mkRS (mkRCl which_RP beg_V2V he_NP (mkVP sleep_V)))</CODE> <li>Bul: <I>жена която моли него да спи</I> <li>Cat: <I>dona que el demana a dormir</I> <li>Dan: <I>kvinde som beder ham at sove</I> <li>Dut: <I>vrouw die hem te slapen smeekt</I> <li>Eng: <I>woman who begs him to sleep</I> <li>Fin: <I>nainen joka pyytää häntä nukkumaan</I> <li>Fre: <I>femme qui le demande à dormir</I> <li>Ger: <I>Frau die ihn zu schlafen bittet</I> <li>Ita: <I>donna che lo prega di dormire</I> <li>Nor: <I>kvinne som ber ham att sove</I> <li>Pol: <I>*</I> <li>Ron: <I>femeie care îl roagă sã doarmă</I> <li>Rus: <I>женщина , которая просит спать его</I> <li>Spa: <I>mujer que lo roga a dormir</I> <li>Swe: <I>kvinna som ber honom att sova</I> <li>Urd: <I>عورت جو اس سے سونے كی التجا كرتی ہے</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>mkRCl</CODE></TD>
-<TD><A HREF="#RP" TITLE="RP - relative pronoun">RP</A> <CODE>-&gt;</CODE> <A HREF="#A" TITLE="A - one-place adjective">A</A> <CODE>-&gt;</CODE> <A HREF="#RCl" TITLE="RCl - relative clause, with all tenses">RCl</A></TD>
-<TD><div class=reveal> <I>woman who is old</I> <div class=popup> <ul> <li>API: <CODE>mkCN woman_N (mkRS (mkRCl which_RP old_A))</CODE> <li>Bul: <I>жена която е стара</I> <li>Cat: <I>dona que és vell</I> <li>Dan: <I>kvinde som er gammel</I> <li>Dut: <I>vrouw die oud is</I> <li>Eng: <I>woman who is old</I> <li>Fin: <I>nainen joka on vanha</I> <li>Fre: <I>femme qui est vieille</I> <li>Ger: <I>Frau die alt ist</I> <li>Ita: <I>donna che è vecchia</I> <li>Nor: <I>kvinne som er gammel</I> <li>Pol: <I>kobieta , która jest stara</I> <li>Ron: <I>femeie care este veche</I> <li>Rus: <I>женщина , которая старая</I> <li>Spa: <I>mujer que es vieja</I> <li>Swe: <I>kvinna som är gammal</I> <li>Urd: <I>عورت جو بوڑھی ہے</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>mkRCl</CODE></TD>
-<TD><A HREF="#RP" TITLE="RP - relative pronoun">RP</A> <CODE>-&gt;</CODE> <A HREF="#A" TITLE="A - one-place adjective">A</A> <CODE>-&gt;</CODE> <A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A> <CODE>-&gt;</CODE> <A HREF="#RCl" TITLE="RCl - relative clause, with all tenses">RCl</A></TD>
-<TD><div class=reveal> <I>woman who is older than he</I> <div class=popup> <ul> <li>API: <CODE>mkCN woman_N (mkRS (mkRCl which_RP old_A he_NP))</CODE> <li>Bul: <I>жена която е по - стара от него</I> <li>Cat: <I>dona que és més vell que ell</I> <li>Dan: <I>kvinde som er ældre end han</I> <li>Dut: <I>vrouw die ouder dan hij is</I> <li>Eng: <I>woman who is older than he</I> <li>Fin: <I>nainen joka on vanhempi kuin hän</I> <li>Fre: <I>femme qui est plus vieille que lui</I> <li>Ger: <I>Frau die älter als er ist</I> <li>Ita: <I>donna che è più vecchia di lui</I> <li>Nor: <I>kvinne som er eldre enn han</I> <li>Pol: <I>kobieta , która jest starsza niż on</I> <li>Ron: <I>femeie care este mai veche decât el</I> <li>Rus: <I>женщина , которая старше него</I> <li>Spa: <I>mujer que es más vieja que él</I> <li>Swe: <I>kvinna som är äldre än han</I> <li>Urd: <I>عورت جو اس سے بوڑھی ہے</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>mkRCl</CODE></TD>
-<TD><A HREF="#RP" TITLE="RP - relative pronoun">RP</A> <CODE>-&gt;</CODE> <A HREF="#A2" TITLE="A2 - two-place adjective">A2</A> <CODE>-&gt;</CODE> <A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A> <CODE>-&gt;</CODE> <A HREF="#RCl" TITLE="RCl - relative clause, with all tenses">RCl</A></TD>
-<TD><div class=reveal> <I>woman who is married to him</I> <div class=popup> <ul> <li>API: <CODE>mkCN woman_N (mkRS (mkRCl which_RP married_A2 he_NP))</CODE> <li>Bul: <I>жена която е женена за него</I> <li>Cat: <I>dona que és casata a ell</I> <li>Dan: <I>kvinde som er gift med ham</I> <li>Dut: <I>vrouw die getrouwd met hem is</I> <li>Eng: <I>woman who is married to him</I> <li>Fin: <I>nainen joka on avioitunut hänen kanssa</I> <li>Fre: <I>femme qui est mariée à lui</I> <li>Ger: <I>Frau die verheiratet mit ihm ist</I> <li>Ita: <I>donna che è sposata con lui</I> <li>Nor: <I>kvinne som er gift med ham</I> <li>Pol: <I>kobieta , która jest zaślubiona jemu</I> <li>Ron: <I>femeie care este căsătorită cu el</I> <li>Rus: <I>женщина , которая замужем за им</I> <li>Spa: <I>mujer que es casada a él</I> <li>Swe: <I>kvinna som är gift med honom</I> <li>Urd: <I>عورت جو اس سے [شادی كرنa] ہے</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>mkRCl</CODE></TD>
-<TD><A HREF="#RP" TITLE="RP - relative pronoun">RP</A> <CODE>-&gt;</CODE> <A HREF="#AP" TITLE="AP - adjectival phrase">AP</A> <CODE>-&gt;</CODE> <A HREF="#RCl" TITLE="RCl - relative clause, with all tenses">RCl</A></TD>
-<TD><div class=reveal> <I>woman who is very old</I> <div class=popup> <ul> <li>API: <CODE>mkCN woman_N (mkRS (mkRCl which_RP (mkAP very_AdA old_A)))</CODE> <li>Bul: <I>жена която е много стара</I> <li>Cat: <I>dona que és molt vell</I> <li>Dan: <I>kvinde som er meget gammel</I> <li>Dut: <I>vrouw die erg oud is</I> <li>Eng: <I>woman who is very old</I> <li>Fin: <I>nainen joka on erittäin vanha</I> <li>Fre: <I>femme qui est très vieille</I> <li>Ger: <I>Frau die sehr alt ist</I> <li>Ita: <I>donna che è molto vecchia</I> <li>Nor: <I>kvinne som er mye gammel</I> <li>Pol: <I>kobieta , która jest bardzo stara</I> <li>Ron: <I>femeie care este foarte veche</I> <li>Rus: <I>женщина , которая очень старая</I> <li>Spa: <I>mujer que es muy vieja</I> <li>Swe: <I>kvinna som är mycket gammal</I> <li>Urd: <I>عورت جو بہت بوڑھی ہے</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>mkRCl</CODE></TD>
-<TD><A HREF="#RP" TITLE="RP - relative pronoun">RP</A> <CODE>-&gt;</CODE> <A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A> <CODE>-&gt;</CODE> <A HREF="#RCl" TITLE="RCl - relative clause, with all tenses">RCl</A></TD>
-<TD><div class=reveal> <I>woman who is the woman</I> <div class=popup> <ul> <li>API: <CODE>mkCN woman_N (mkRS (mkRCl which_RP (mkNP the_Det woman_N)))</CODE> <li>Bul: <I>жена която е жената</I> <li>Cat: <I>dona que és la dona</I> <li>Dan: <I>kvinde som er kvinden</I> <li>Dut: <I>vrouw die de vrouw is</I> <li>Eng: <I>woman who is the woman</I> <li>Fin: <I>nainen joka on nainen</I> <li>Fre: <I>femme qui est la femme</I> <li>Ger: <I>Frau die die Frau ist</I> <li>Ita: <I>donna che è la donna</I> <li>Nor: <I>kvinne som er kvinna</I> <li>Pol: <I>kobieta , która jest kobietą</I> <li>Ron: <I>femeie care este femeia</I> <li>Rus: <I>женщина , которая женщина</I> <li>Spa: <I>mujer que es la mujer</I> <li>Swe: <I>kvinna som är kvinnan</I> <li>Urd: <I>عورت جو عورت ہے</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>mkRCl</CODE></TD>
-<TD><A HREF="#RP" TITLE="RP - relative pronoun">RP</A> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A> <CODE>-&gt;</CODE> <A HREF="#RCl" TITLE="RCl - relative clause, with all tenses">RCl</A></TD>
-<TD><div class=reveal> <I>student who is a woman</I> <div class=popup> <ul> <li>API: <CODE>mkCN student_N (mkRS (mkRCl which_RP woman_N))</CODE> <li>Bul: <I>студент който е жена</I> <li>Cat: <I>estudiant que és dona</I> <li>Dan: <I>student som er en kvinde</I> <li>Dut: <I>student die vrouw is</I> <li>Eng: <I>student who is a woman</I> <li>Fin: <I>opiskelija joka on nainen</I> <li>Fre: <I>étudiant qui est femme</I> <li>Ger: <I>Student der eine Frau ist</I> <li>Ita: <I>studente che è donna</I> <li>Nor: <I>student som er ei kvinne</I> <li>Pol: <I>student , który jest kobieta</I> <li>Ron: <I>student care este femeie</I> <li>Rus: <I>студент , который женщина</I> <li>Spa: <I>estudiante que es mujer</I> <li>Swe: <I>student som är en kvinna</I> <li>Urd: <I>طالب علم جو عورت ہے</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>mkRCl</CODE></TD>
-<TD><A HREF="#RP" TITLE="RP - relative pronoun">RP</A> <CODE>-&gt;</CODE> <A HREF="#CN" TITLE="CN - common noun (without determiner)">CN</A> <CODE>-&gt;</CODE> <A HREF="#RCl" TITLE="RCl - relative clause, with all tenses">RCl</A></TD>
-<TD><div class=reveal> <I>student who is an old woman</I> <div class=popup> <ul> <li>API: <CODE>mkCN student_N (mkRS (mkRCl which_RP (mkCN old_A woman_N)))</CODE> <li>Bul: <I>студент който е стара жена</I> <li>Cat: <I>estudiant que és dona vell</I> <li>Dan: <I>student som er en gammel kvinde</I> <li>Dut: <I>student die oude vrouw is</I> <li>Eng: <I>student who is an old woman</I> <li>Fin: <I>opiskelija joka on vanha nainen</I> <li>Fre: <I>étudiant qui est vieille femme</I> <li>Ger: <I>Student der eine alte Frau ist</I> <li>Ita: <I>studente che è vecchia donna</I> <li>Nor: <I>student som er ei gammel kvinne</I> <li>Pol: <I>student , który jest stara kobieta</I> <li>Ron: <I>student care este femeie veche</I> <li>Rus: <I>студент , который старая женщина</I> <li>Spa: <I>estudiante que es vieja mujer</I> <li>Swe: <I>student som är en gammal kvinna</I> <li>Urd: <I>طالب علم جو بوڑھی عورت ہے</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>mkRCl</CODE></TD>
-<TD><A HREF="#RP" TITLE="RP - relative pronoun">RP</A> <CODE>-&gt;</CODE> <A HREF="#Adv" TITLE="Adv - verb-phrase-modifying adverb">Adv</A> <CODE>-&gt;</CODE> <A HREF="#RCl" TITLE="RCl - relative clause, with all tenses">RCl</A></TD>
-<TD><div class=reveal> <I>woman who is here</I> <div class=popup> <ul> <li>API: <CODE>mkCN woman_N (mkRS (mkRCl which_RP here_Adv))</CODE> <li>Bul: <I>жена която е тук</I> <li>Cat: <I>dona que és aquí</I> <li>Dan: <I>kvinde som er her</I> <li>Dut: <I>vrouw die hier is</I> <li>Eng: <I>woman who is here</I> <li>Fin: <I>nainen joka on täällä</I> <li>Fre: <I>femme qui est ici</I> <li>Ger: <I>Frau die hier ist</I> <li>Ita: <I>donna che è quà</I> <li>Nor: <I>kvinne som er her</I> <li>Pol: <I>kobieta , która jest tutaj</I> <li>Ron: <I>femeie care este aici</I> <li>Rus: <I>женщина , которая здесь</I> <li>Spa: <I>mujer que es aquí</I> <li>Swe: <I>kvinna som är här</I> <li>Urd: <I>عورت جو یہاں ہے</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>mkRCl</CODE></TD>
-<TD><A HREF="#RP" TITLE="RP - relative pronoun">RP</A> <CODE>-&gt;</CODE> <A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A> <CODE>-&gt;</CODE> <A HREF="#V2" TITLE="V2 - two-place verb">V2</A> <CODE>-&gt;</CODE> <A HREF="#RCl" TITLE="RCl - relative clause, with all tenses">RCl</A></TD>
-<TD><div class=reveal> <I>woman whom we love</I> <div class=popup> <ul> <li>API: <CODE>mkCN woman_N (mkRS (mkRCl which_RP we_NP love_V2))</CODE> <li>Bul: <I>жена която ние обичаме</I> <li>Cat: <I>dona que nosaltres estimem</I> <li>Dan: <I>kvinde som vi elsker</I> <li>Dut: <I>vrouw die we lief hebben</I> <li>Eng: <I>woman whom we love</I> <li>Fin: <I>nainen jota me rakastamme</I> <li>Fre: <I>femme que nous aimons</I> <li>Ger: <I>Frau die wir lieben</I> <li>Ita: <I>donna che noi amiamo</I> <li>Nor: <I>kvinne som vi elsker</I> <li>Pol: <I>kobieta , którą kochamy my</I> <li>Ron: <I>femeie pe care o iubim noi</I> <li>Rus: <I>женщина , которую мы любдим</I> <li>Spa: <I>mujer que nosotros amamos</I> <li>Swe: <I>kvinna som vi älskar</I> <li>Urd: <I>عورت جس كو ہم پیار كرتے ہیں</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>mkRCl</CODE></TD>
-<TD><A HREF="#RP" TITLE="RP - relative pronoun">RP</A> <CODE>-&gt;</CODE> <A HREF="#ClSlash">ClSlash</A> <CODE>-&gt;</CODE> <A HREF="#RCl" TITLE="RCl - relative clause, with all tenses">RCl</A></TD>
-<TD><div class=reveal> <I>woman whom she loves today</I> <div class=popup> <ul> <li>API: <CODE>mkCN woman_N (mkRS (mkRCl which_RP (mkClSlash (mkClSlash she_NP love_V2) today_Adv)))</CODE> <li>Bul: <I>жена която тя обича днес</I> <li>Cat: <I>dona que ella estima avui</I> <li>Dan: <I>kvinde som hun elsker idag</I> <li>Dut: <I>vrouw die ze lief heeft vandaag</I> <li>Eng: <I>woman whom she loves today</I> <li>Fin: <I>nainen jota hän rakastaa tänään</I> <li>Fre: <I>femme pre {"que"; "qu'" / strs {"a"; "à"; "â"; "e"; "é"; "è"; "ê¨";</I> <li>Ger: <I>Frau die sie liebt heute</I> <li>Ita: <I>donna che lei ama oggi</I> <li>Nor: <I>kvinne som hun elsker idag</I> <li>Pol: <I>kobieta , którą dziś kocha ona</I> <li>Ron: <I>femeie pe care o iubeşte ea astăzi</I> <li>Rus: <I>*</I> <li>Spa: <I>mujer que ella ama hoy</I> <li>Swe: <I>kvinna som hon älskar idag</I> <li>Urd: <I>عورت جس كو آج وہ پیار كرتی ہے</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>mkRCl</CODE></TD>
-<TD><A HREF="#Cl" TITLE="Cl - declarative clause, with all tenses">Cl</A> <CODE>-&gt;</CODE> <A HREF="#RCl" TITLE="RCl - relative clause, with all tenses">RCl</A></TD>
-<TD><I>such that she loves him</I></TD>
-</TR>
-</TABLE>
-
-<A NAME="RP"></A>
-<H2>RP - relative pronoun</H2>
-<TABLE BORDER="1" CELLPADDING="4">
-<TR>
-<TH>Function</TH>
-<TH>Type</TH>
-<TH COLSPAN="2">Example</TH>
-</TR>
-<TR>
-<TD><CODE>mkRP</CODE></TD>
-<TD><A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A> <CODE>-&gt;</CODE> <A HREF="#RP" TITLE="RP - relative pronoun">RP</A> <CODE>-&gt;</CODE> <A HREF="#RP" TITLE="RP - relative pronoun">RP</A></TD>
-<TD><div class=reveal> <I>all the cities in whom</I> <div class=popup> <ul> <li>API: <CODE>mkRP in_Prep (mkNP all_Predet (mkNP the_Quant pluralNum city_N)) which_RP</CODE> <li>Bul: <I>всичките градовете в който</I> <li>Cat: <I>totes les ciutats en que</I> <li>Dan: <I>alle byerne i hvilken</I> <li>Dut: <I>alle de stadden in die</I> <li>Eng: <I>all the cities in whom</I> <li>Fin: <I>jossa kaikki kaupungit</I> <li>Fre: <I>toutes les villes dans lequel</I> <li>Ger: <I>alle die Städte in dem</I> <li>Ita: <I>tutte le città in cui</I> <li>Nor: <I>alle byene i hvilken</I> <li>Pol: <I>w którym wszystkie miast</I> <li>Ron: <I>toate oraşele în care</I> <li>Rus: <I>все городы в котором</I> <li>Spa: <I>todas las ciudades en que</I> <li>Swe: <I>alla städerna i vilken</I> <li>Urd: <I>جو تمام شہر میں</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>which_RP</CODE></TD>
-<TD><A HREF="#RP" TITLE="RP - relative pronoun">RP</A></TD>
-<TD><I>which/who</I></TD>
-</TR>
-</TABLE>
-
-<A NAME="RS"></A>
-<H2>RS - relative</H2>
-<TABLE BORDER="1" CELLPADDING="4">
-<TR>
-<TH>Function</TH>
-<TH>Type</TH>
-<TH COLSPAN="2">Example</TH>
-</TR>
-<TR>
-<TD><CODE>mkRS</CODE></TD>
-<TD>(<A HREF="#Tense" TITLE="Tense - tense">Tense</A>) <CODE>-&gt;</CODE> (<A HREF="#Ant" TITLE="Ant - anteriority">Ant</A>) <CODE>-&gt;</CODE> (<A HREF="#Pol" TITLE="Pol - polarity">Pol</A>) <CODE>-&gt;</CODE> <A HREF="#RCl" TITLE="RCl - relative clause, with all tenses">RCl</A> <CODE>-&gt;</CODE> <A HREF="#RS" TITLE="RS - relative">RS</A></TD>
-<TD><div class=reveal> <I>woman who wouldn't have slept</I> <div class=popup> <ul> <li>API: <CODE>mkCN woman_N (mkRS conditionalTense anteriorAnt negativePol (mkRCl which_RP sleep_V))</CODE> <li>Bul: <I>жена която не би спалa</I> <li>Cat: <I>dona que no hauria dormit</I> <li>Dan: <I>kvinde som ikke ville have sovet</I> <li>Dut: <I>vrouw die niet geslapen hebben zou</I> <li>Eng: <I>woman who wouldn't have slept</I> <li>Fin: <I>nainen joka ei olisi nukkunut</I> <li>Fre: <I>femme qui n' aurait pas dormi</I> <li>Ger: <I>Frau die nicht geschlafen haben würde</I> <li>Ita: <I>donna che non avrebbe dormito</I> <li>Nor: <I>kvinne som ikke ville ha sovet</I> <li>Pol: <I>kobieta , która nie spałaby</I> <li>Ron: <I>femeie care nu ar fi dormit</I> <li>Rus: <I>женщина , которая спала бы</I> <li>Spa: <I>mujer que no habría dormido</I> <li>Swe: <I>kvinna som inte skulle ha sovit</I> <li>Urd: <I>عورت جو نا شاید سو ے</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>mkRS</CODE></TD>
-<TD><A HREF="#Conj" TITLE="Conj - conjunction">Conj</A> <CODE>-&gt;</CODE> <A HREF="#RS" TITLE="RS - relative">RS</A> <CODE>-&gt;</CODE> <A HREF="#RS" TITLE="RS - relative">RS</A> <CODE>-&gt;</CODE> <A HREF="#RS" TITLE="RS - relative">RS</A></TD>
-<TD><div class=reveal> <I>woman who sleeps or whom we love</I> <div class=popup> <ul> <li>API: <CODE>mkCN woman_N (mkRS or_Conj (mkRS (mkRCl which_RP sleep_V)) (mkRS (mkRCl which_RP we_NP love_V2)))</CODE> <li>Bul: <I>жена която спи или която ние обичаме</I> <li>Cat: <I>dona que dorm o que nosaltres estimem</I> <li>Dan: <I>kvinde som sover eller som vi elsker</I> <li>Dut: <I>vrouw die slaapt of die we lief hebben</I> <li>Eng: <I>woman who sleeps or whom we love</I> <li>Fin: <I>nainen joka nukkuu tai jota me rakastamme</I> <li>Fre: <I>femme qui dort ou que nous aimons</I> <li>Ger: <I>Frau die schläft oder die wir lieben</I> <li>Ita: <I>donna che dorme o che noi amiamo</I> <li>Nor: <I>kvinne som sover eller som vi elsker</I> <li>Pol: <I>kobieta , która śpi lub , którą kochamy my</I> <li>Ron: <I>femeie care doarme sau pe care o iubim noi</I> <li>Rus: <I>женщина , которая спдит или , которую мы любдим</I> <li>Spa: <I>mujer que duerme o que nosotros amamos</I> <li>Swe: <I>kvinna som sover eller som vi älskar</I> <li>Urd: <I>عورت جو سوتی ہے یا جس كو ہم پیار كرتے ہیں</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>mkRS</CODE></TD>
-<TD><A HREF="#Conj" TITLE="Conj - conjunction">Conj</A> <CODE>-&gt;</CODE> <A HREF="#ListRS">ListRS</A> <CODE>-&gt;</CODE> <A HREF="#RS" TITLE="RS - relative">RS</A></TD>
-<TD><I>who sleeps, whom I see and who sleeps</I></TD>
-</TR>
-</TABLE>
-
-<A NAME="S"></A>
-<H2>S - declarative sentence</H2>
-<TABLE BORDER="1" CELLPADDING="4">
-<TR>
-<TH>Function</TH>
-<TH>Type</TH>
-<TH COLSPAN="2">Example</TH>
-</TR>
-<TR>
-<TD><CODE>mkS</CODE></TD>
-<TD>(<A HREF="#Tense" TITLE="Tense - tense">Tense</A>) <CODE>-&gt;</CODE> (<A HREF="#Ant" TITLE="Ant - anteriority">Ant</A>) <CODE>-&gt;</CODE> (<A HREF="#Pol" TITLE="Pol - polarity">Pol</A>) <CODE>-&gt;</CODE> <A HREF="#Cl" TITLE="Cl - declarative clause, with all tenses">Cl</A> <CODE>-&gt;</CODE> <A HREF="#S" TITLE="S - declarative sentence">S</A></TD>
-<TD><div class=reveal> <I>she wouldn't have slept</I> <div class=popup> <ul> <li>API: <CODE>mkS conditionalTense anteriorAnt negativePol (mkCl she_NP sleep_V)</CODE> <li>Bul: <I>тя не би спалa</I> <li>Cat: <I>ella no hauria dormit</I> <li>Dan: <I>hun ville ikke have sovet</I> <li>Dut: <I>ze zou niet geslapen hebben</I> <li>Eng: <I>she wouldn't have slept</I> <li>Fin: <I>hän ei olisi nukkunut</I> <li>Fre: <I>elle n' aurait pas dormi</I> <li>Ger: <I>sie würde nicht geschlafen haben</I> <li>Ita: <I>lei non avrebbe dormito</I> <li>Nor: <I>hun ville ikke ha sovet</I> <li>Pol: <I>ona nie spałaby</I> <li>Ron: <I>ea nu ar fi dormit</I> <li>Rus: <I>она не спала бы</I> <li>Spa: <I>ella no habría dormido</I> <li>Swe: <I>hon skulle inte ha sovit</I> <li>Urd: <I>وہ نا شاید سوئے</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>mkS</CODE></TD>
-<TD><A HREF="#Conj" TITLE="Conj - conjunction">Conj</A> <CODE>-&gt;</CODE> <A HREF="#S" TITLE="S - declarative sentence">S</A> <CODE>-&gt;</CODE> <A HREF="#S" TITLE="S - declarative sentence">S</A> <CODE>-&gt;</CODE> <A HREF="#S" TITLE="S - declarative sentence">S</A></TD>
-<TD><div class=reveal> <I>she sleeps and I run</I> <div class=popup> <ul> <li>API: <CODE>mkS and_Conj (mkS (mkCl she_NP sleep_V)) (mkS (mkCl i_NP run_V))</CODE> <li>Bul: <I>тя спи и аз бягам</I> <li>Cat: <I>ella dorm i jo corro</I> <li>Dan: <I>hun sover og jeg løber</I> <li>Dut: <I>ze slaapt en ik ren</I> <li>Eng: <I>she sleeps and I run</I> <li>Fin: <I>hän nukkuu ja minä juoksen</I> <li>Fre: <I>elle dort et je cours</I> <li>Ger: <I>sie schläft und ich laufe</I> <li>Ita: <I>lei dorme e io corro</I> <li>Nor: <I>hun sover og jeg springer</I> <li>Pol: <I>ona śpi i ja biegnę</I> <li>Ron: <I>ea doarme şi eu fug</I> <li>Rus: <I>она спдит и я бегаю</I> <li>Spa: <I>ella duerme y yo corro</I> <li>Swe: <I>hon sover och jag springer</I> <li>Urd: <I>وہ سوتی ہے اور میں دوڑتا ہوں</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>mkS</CODE></TD>
-<TD><A HREF="#Conj" TITLE="Conj - conjunction">Conj</A> <CODE>-&gt;</CODE> <A HREF="#ListS">ListS</A> <CODE>-&gt;</CODE> <A HREF="#S" TITLE="S - declarative sentence">S</A></TD>
-<TD><div class=reveal> <I>she sleeps , I run and you walk</I> <div class=popup> <ul> <li>API: <CODE>mkS and_Conj (mkListS (mkS (mkCl she_NP sleep_V)) (mkListS (mkS (mkCl i_NP run_V)) (mkS (mkCl (mkNP youSg_Pron) walk_V))))</CODE> <li>Bul: <I>тя спи , аз бягам и ти ходиш</I> <li>Cat: <I>ella dorm , jo corro i tu camines</I> <li>Dan: <I>hun sover , jeg løber og du går</I> <li>Dut: <I>ze slaapt , ik ren en je loopt</I> <li>Eng: <I>she sleeps , I run and you walk</I> <li>Fin: <I>hän nukkuu , minä juoksen ja sinä kävelet</I> <li>Fre: <I>elle dort , je cours et tu marches</I> <li>Ger: <I>sie schläft , ich laufe und du gehst</I> <li>Ita: <I>lei dorme , io corro e tu cammini</I> <li>Nor: <I>hun sover , jeg springer og du går</I> <li>Pol: <I>ona śpi , ja biegnę i ty spacerujesz</I> <li>Ron: <I>ea doarme , eu fug şi tu mergi</I> <li>Rus: <I>она спдит , я бегаю и ты гуляешь</I> <li>Spa: <I>ella duerme , yo corro y tu caminas</I> <li>Swe: <I>hon sover , jag springer och du går</I> <li>Urd: <I>وہ سوتی ہے , میں دوڑتا ہوں اور تو چلتا ہے</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>mkS</CODE></TD>
-<TD><A HREF="#Adv" TITLE="Adv - verb-phrase-modifying adverb">Adv</A> <CODE>-&gt;</CODE> <A HREF="#S" TITLE="S - declarative sentence">S</A> <CODE>-&gt;</CODE> <A HREF="#S" TITLE="S - declarative sentence">S</A></TD>
-<TD><div class=reveal> <I>today , she sleeps</I> <div class=popup> <ul> <li>API: <CODE>mkS today_Adv (mkS (mkCl she_NP sleep_V))</CODE> <li>Bul: <I>днес , тя спи</I> <li>Cat: <I>avui , ella dorm</I> <li>Dan: <I>idag sover hun</I> <li>Dut: <I>vandaag slaapt ze</I> <li>Eng: <I>today , she sleeps</I> <li>Fin: <I>tänään hän nukkuu</I> <li>Fre: <I>aujourd'hui , elle dort</I> <li>Ger: <I>heute schläft sie</I> <li>Ita: <I>oggi , lei dorme</I> <li>Nor: <I>idag sover hun</I> <li>Pol: <I>dziś ona śpi</I> <li>Ron: <I>astăzi ea doarme</I> <li>Rus: <I>*</I> <li>Spa: <I>hoy , ella duerme</I> <li>Swe: <I>idag sover hon</I> <li>Urd: <I>آج وہ سوتی ہے</I> </ul> </div> </div></TD>
-</TR>
-</TABLE>
-
-<A NAME="SC"></A>
-<H2>SC - embedded sentence or question</H2>
-<TABLE BORDER="1" CELLPADDING="4">
-<TR>
-<TH>Function</TH>
-<TH>Type</TH>
-<TH COLSPAN="2">Example</TH>
-</TR>
-<TR>
-<TD><CODE>mkSC</CODE></TD>
-<TD><A HREF="#S" TITLE="S - declarative sentence">S</A> <CODE>-&gt;</CODE> <A HREF="#SC" TITLE="SC - embedded sentence or question">SC</A></TD>
-<TD><div class=reveal> <I>that she sleeps</I> <div class=popup> <ul> <li>API: <CODE>mkSC (mkS (mkCl she_NP sleep_V))</CODE> <li>Bul: <I>, че тя спи</I> <li>Cat: <I>que ella dorm</I> <li>Dan: <I>at hun sover</I> <li>Dut: <I>dat ze slaapt</I> <li>Eng: <I>that she sleeps</I> <li>Fin: <I>että hän nukkuu</I> <li>Fre: <I>qu' elle dort</I> <li>Ger: <I>daß sie schläft</I> <li>Ita: <I>che lei dorme</I> <li>Nor: <I>at hun sover</I> <li>Pol: <I>, że ona śpi</I> <li>Ron: <I>cã ea doarme</I> <li>Rus: <I>что она спдит</I> <li>Spa: <I>que ella duerme</I> <li>Swe: <I>att hon sover</I> <li>Urd: <I>كہ وہ سوتی ہے</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>mkSC</CODE></TD>
-<TD><A HREF="#QS" TITLE="QS - question">QS</A> <CODE>-&gt;</CODE> <A HREF="#SC" TITLE="SC - embedded sentence or question">SC</A></TD>
-<TD><div class=reveal> <I>who sleeps</I> <div class=popup> <ul> <li>API: <CODE>mkSC (mkQS (mkQCl who_IP sleep_V))</CODE> <li>Bul: <I>който спи</I> <li>Cat: <I>qui dorm</I> <li>Dan: <I>hvem som sover</I> <li>Dut: <I>wie slaapt</I> <li>Eng: <I>who sleeps</I> <li>Fin: <I>kuka nukkuu</I> <li>Fre: <I>qui dort</I> <li>Ger: <I>wer schläft</I> <li>Ita: <I>chi dorme</I> <li>Nor: <I>hvem som sover</I> <li>Pol: <I>, kto śpi</I> <li>Ron: <I>cine doarme</I> <li>Rus: <I>кто спдит</I> <li>Spa: <I>quién duerme</I> <li>Swe: <I>vem som sover</I> <li>Urd: <I>كون سوتا ہے</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>mkSC</CODE></TD>
-<TD><A HREF="#VP" TITLE="VP - verb phrase">VP</A> <CODE>-&gt;</CODE> <A HREF="#SC" TITLE="SC - embedded sentence or question">SC</A></TD>
-<TD><div class=reveal> <I>to sleep</I> <div class=popup> <ul> <li>API: <CODE>mkSC (mkVP sleep_V)</CODE> <li>Bul: <I>да спя</I> <li>Cat: <I>dormir</I> <li>Dan: <I>at sove</I> <li>Dut: <I>te slapen</I> <li>Eng: <I>to sleep</I> <li>Fin: <I>nukkua</I> <li>Fre: <I>dormir</I> <li>Ger: <I>zu schlafen</I> <li>Ita: <I>dormire</I> <li>Nor: <I>å sove</I> <li>Pol: <I>spać</I> <li>Ron: <I>sã doarmă</I> <li>Rus: <I>спать</I> <li>Spa: <I>dormir</I> <li>Swe: <I>att sova</I> <li>Urd: <I>سونا</I> </ul> </div> </div></TD>
-</TR>
-</TABLE>
-
-<A NAME="SSlash"></A>
-<H2>SSlash</H2>
-<TABLE BORDER="1" CELLPADDING="4">
-<TR>
-<TH>Function</TH>
-<TH>Type</TH>
-<TH COLSPAN="2">Example</TH>
-</TR>
-<TR>
-<TD><CODE>mkSSlash</CODE></TD>
-<TD><A HREF="#Temp" TITLE="Temp - temporal and aspectual features">Temp</A> <CODE>-&gt;</CODE> <A HREF="#Pol" TITLE="Pol - polarity">Pol</A> <CODE>-&gt;</CODE> <A HREF="#ClSlash">ClSlash</A> <CODE>-&gt;</CODE> <A HREF="#SSlash">SSlash</A></TD>
-<TD><div class=reveal> <I>she hadn't seen</I> <div class=popup> <ul> <li>API: <CODE>mkSSlash (mkTemp pastTense anteriorAnt) negativePol (mkClSlash she_NP (mkVPSlash see_V2))</CODE> <li>Bul: <I>тя не беше видялa</I> <li>Cat: <I>ella no havia vist</I> <li>Dan: <I>hun havde ikke set</I> <li>Dut: <I>ze had niet gezien</I> <li>Eng: <I>she hadn't seen</I> <li>Fin: <I>hän ei ollut nähnyt</I> <li>Fre: <I>elle n' avait pas vu</I> <li>Ger: <I>sie hatte nicht gesehen</I> <li>Ita: <I>lei non aveva visto</I> <li>Nor: <I>hun hadde ikke sett</I> <li>Pol: <I>nie zobaczyła ona</I> <li>Ron: <I>ea nu văzuse</I> <li>Rus: <I>она не видела</I> <li>Spa: <I>ella no había visto</I> <li>Swe: <I>hon hade inte sett</I> <li>Urd: <I>وہ نہیں دیكھ چكی تh-ی</I> </ul> </div> </div></TD>
-</TR>
-</TABLE>
-
-<A NAME="Sub100"></A>
-<H2>Sub100</H2>
-<TABLE BORDER="1" CELLPADDING="4">
-<TR>
-<TH>Function</TH>
-<TH>Type</TH>
-<TH COLSPAN="2">Example</TH>
-</TR>
-<TR>
-<TD><CODE>mkSub100</CODE></TD>
-<TD><A HREF="#Unit">Unit</A> <CODE>-&gt;</CODE> <A HREF="#Sub100">Sub100</A></TD>
-<TD><div class=reveal> <I>eight</I> <div class=popup> <ul> <li>API: <CODE>mkSub100 n8_Unit</CODE> <li>Bul: <I>осмина</I> <li>Cat: <I>vuit</I> <li>Dan: <I>otte</I> <li>Dut: <I>acht</I> <li>Eng: <I>eight</I> <li>Fin: <I>kahdeksan</I> <li>Fre: <I>huit</I> <li>Ger: <I>acht</I> <li>Ita: <I>otto</I> <li>Nor: <I>åtte</I> <li>Pol: <I>osiemm</I> <li>Ron: <I>opt</I> <li>Rus: <I>восемь</I> <li>Spa: <I>ocho</I> <li>Swe: <I>åtta</I> <li>Urd: <I>آتھ</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>mkSub100</CODE></TD>
-<TD><A HREF="#Unit">Unit</A> <CODE>-&gt;</CODE> <A HREF="#Unit">Unit</A> <CODE>-&gt;</CODE> <A HREF="#Sub100">Sub100</A></TD>
-<TD><div class=reveal> <I>eighty - three</I> <div class=popup> <ul> <li>API: <CODE>mkSub100 n8_Unit n3_Unit</CODE> <li>Bul: <I>осемдесет и трима</I> <li>Cat: <I>vuitanta- tres</I> <li>Dan: <I>tre og firs</I> <li>Dut: <I>drieëntachtig</I> <li>Eng: <I>eighty - three</I> <li>Fin: <I>kahdeksankymmentäkolme</I> <li>Fre: <I>quatre-vingt - trois</I> <li>Ger: <I>dreiundachzig</I> <li>Ita: <I>ottantatre</I> <li>Nor: <I>åtti tre</I> <li>Pol: <I>osiemdziesiąt trzy</I> <li>Ron: <I>optzeci şi trei</I> <li>Rus: <I>восемьдесят три</I> <li>Spa: <I>ochenta y tres</I> <li>Swe: <I>åttiotre</I> <li>Urd: <I>تراسی</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>tenfoldSub100</CODE></TD>
-<TD><A HREF="#Unit">Unit</A> <CODE>-&gt;</CODE> <A HREF="#Sub100">Sub100</A></TD>
-<TD><div class=reveal> <I>eight</I> <div class=popup> <ul> <li>API: <CODE>mkSub100 n8_Unit</CODE> <li>Bul: <I>осмина</I> <li>Cat: <I>vuit</I> <li>Dan: <I>otte</I> <li>Dut: <I>acht</I> <li>Eng: <I>eight</I> <li>Fin: <I>kahdeksan</I> <li>Fre: <I>huit</I> <li>Ger: <I>acht</I> <li>Ita: <I>otto</I> <li>Nor: <I>åtte</I> <li>Pol: <I>osiemm</I> <li>Ron: <I>opt</I> <li>Rus: <I>восемь</I> <li>Spa: <I>ocho</I> <li>Swe: <I>åtta</I> <li>Urd: <I>آتھ</I> </ul> </div> </div></TD>
-</TR>
-</TABLE>
-
-<A NAME="Sub1000"></A>
-<H2>Sub1000</H2>
-<TABLE BORDER="1" CELLPADDING="4">
-<TR>
-<TH>Function</TH>
-<TH>Type</TH>
-<TH COLSPAN="2">Example</TH>
-</TR>
-<TR>
-<TD><CODE>mkSub1000</CODE></TD>
-<TD><A HREF="#Sub100">Sub100</A> <CODE>-&gt;</CODE> <A HREF="#Sub1000">Sub1000</A></TD>
-<TD><div class=reveal> <I>ninety - nine</I> <div class=popup> <ul> <li>API: <CODE>mkNumeral (mkSub1000 (mkSub100 n9_Unit n9_Unit))</CODE> <li>Bul: <I>деветдесет и деветима</I> <li>Cat: <I>noranta- nou</I> <li>Dan: <I>ni og halvfems</I> <li>Dut: <I>negenennegentig</I> <li>Eng: <I>ninety - nine</I> <li>Fin: <I>yhdeksänkymmentäyhdeksän</I> <li>Fre: <I>quatre-vingt - dix-neuf</I> <li>Ger: <I>neunundneunzig</I> <li>Ita: <I>novantanove</I> <li>Nor: <I>nitti ni</I> <li>Pol: <I>dziewięćdziesiąt dziewięć</I> <li>Ron: <I>nouăzeci şi nouă</I> <li>Rus: <I>девяносто девять</I> <li>Spa: <I>noventa y nueve</I> <li>Swe: <I>nittionio</I> <li>Urd: <I>ننانوے</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>mkSub1000</CODE></TD>
-<TD><A HREF="#Unit">Unit</A> <CODE>-&gt;</CODE> <A HREF="#Sub1000">Sub1000</A></TD>
-<TD><div class=reveal> <I>nine hundred</I> <div class=popup> <ul> <li>API: <CODE>mkNumeral (mkSub1000 n9_Unit)</CODE> <li>Bul: <I>деветстотин</I> <li>Cat: <I>nou -cents</I> <li>Dan: <I>ni hundrede</I> <li>Dut: <I>negenhonderd</I> <li>Eng: <I>nine hundred</I> <li>Fin: <I>yhdeksänsataa</I> <li>Fre: <I>neuf cents</I> <li>Ger: <I>neunhundert</I> <li>Ita: <I>novecento</I> <li>Nor: <I>ni hundre</I> <li>Pol: <I>dziewięćset</I> <li>Ron: <I>nouă sute</I> <li>Rus: <I>девятьсот</I> <li>Spa: <I>novecientos</I> <li>Swe: <I>niohundra</I> <li>Urd: <I>نو سو</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>mkSub1000</CODE></TD>
-<TD><A HREF="#Unit">Unit</A> <CODE>-&gt;</CODE> <A HREF="#Sub100">Sub100</A> <CODE>-&gt;</CODE> <A HREF="#Sub1000">Sub1000</A></TD>
-<TD><div class=reveal> <I>nine hundred and ninety - nine</I> <div class=popup> <ul> <li>API: <CODE>mkNumeral (mkSub1000 n9_Unit (mkSub100 n9_Unit n9_Unit))</CODE> <li>Bul: <I>деветстотин деветдесет и деветима</I> <li>Cat: <I>nou -cents noranta- nou</I> <li>Dan: <I>ni hundrede og ni og halvfems</I> <li>Dut: <I>negenhonderdnegenennegentig</I> <li>Eng: <I>nine hundred and ninety - nine</I> <li>Fin: <I>yhdeksänsataayhdeksänkymmentäyhdeksän</I> <li>Fre: <I>neuf cent quatre-vingt - dix-neuf</I> <li>Ger: <I>neunhundertneunundneunzig</I> <li>Ita: <I>novecentonovantanove</I> <li>Nor: <I>ni hundre og nitti ni</I> <li>Pol: <I>dziewięćset dziewięćdziesiąt dziewięć</I> <li>Ron: <I>nouă sute nouăzeci şi nouă</I> <li>Rus: <I>девятьсот девяносто девять</I> <li>Spa: <I>novecientos noventa y nueve</I> <li>Swe: <I>niohundra nittionio</I> <li>Urd: <I>نو سو ننانوے</I> </ul> </div> </div></TD>
-</TR>
-</TABLE>
-
-<A NAME="Subj"></A>
-<H2>Subj - subjunction</H2>
-<TABLE BORDER="1" CELLPADDING="4">
-<TR>
-<TH>Function</TH>
-<TH>Type</TH>
-<TH COLSPAN="2">Example</TH>
-</TR>
-<TR>
-<TD><CODE>although_Subj</CODE></TD>
-<TD><A HREF="#Subj" TITLE="Subj - subjunction">Subj</A></TD>
-<TD><div class=reveal> <I>although she sleeps</I> <div class=popup> <ul> <li>API: <CODE>mkAdv although_Subj (mkS (mkCl she_NP sleep_V))</CODE> <li>Bul: <I>въпреки че тя спи</I> <li>Cat: <I>encara que ella dormi</I> <li>Dan: <I>selv om hun sover</I> <li>Dut: <I>hoewel ze slaapt</I> <li>Eng: <I>although she sleeps</I> <li>Fin: <I>vaikka hän nukkuu</I> <li>Fre: <I>bien pre {"que"; "qu'" / strs {"a"; "à"; "â"; "e"; "é"; "è"; "ê¨";</I> <li>Ger: <I>obwohl sie schläft</I> <li>Ita: <I>benché lei dorma</I> <li>Nor: <I>selv om hun sover</I> <li>Pol: <I>pomimo ona śpi</I> <li>Ron: <I>deşi ea doarme</I> <li>Rus: <I>хотя она спдит</I> <li>Spa: <I>benché ella duerma</I> <li>Swe: <I>fast hon sover</I> <li>Urd: <I>اگرچہ وہ سوتی ہے</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>because_Subj</CODE></TD>
-<TD><A HREF="#Subj" TITLE="Subj - subjunction">Subj</A></TD>
-<TD><div class=reveal> <I>because she sleeps</I> <div class=popup> <ul> <li>API: <CODE>mkAdv because_Subj (mkS (mkCl she_NP sleep_V))</CODE> <li>Bul: <I>защото тя спи</I> <li>Cat: <I>perque ella dorm</I> <li>Dan: <I>fordi hun sover</I> <li>Dut: <I>omdat ze slaapt</I> <li>Eng: <I>because she sleeps</I> <li>Fin: <I>koska hän nukkuu</I> <li>Fre: <I>parce pre {"que"; "qu'" / strs {"a"; "à"; "â"; "e"; "é"; "è"; "ê¨";</I> <li>Ger: <I>weil sie schläft</I> <li>Ita: <I>perché lei dorme</I> <li>Nor: <I>fordi hun sover</I> <li>Pol: <I>ponieważ ona śpi</I> <li>Ron: <I>deoarece ea doarme</I> <li>Rus: <I>потому что она спдит</I> <li>Spa: <I>porque ella duerme</I> <li>Swe: <I>eftersom hon sover</I> <li>Urd: <I>كیونكہ وہ سوتی ہے</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>if_Subj</CODE></TD>
-<TD><A HREF="#Subj" TITLE="Subj - subjunction">Subj</A></TD>
-<TD><div class=reveal> <I>if she sleeps</I> <div class=popup> <ul> <li>API: <CODE>mkAdv if_Subj (mkS (mkCl she_NP sleep_V))</CODE> <li>Bul: <I>ако тя спи</I> <li>Cat: <I>si ella dorm</I> <li>Dan: <I>hvis hun sover</I> <li>Dut: <I>als ze slaapt</I> <li>Eng: <I>if she sleeps</I> <li>Fin: <I>jos hän nukkuu</I> <li>Fre: <I>si elle dort</I> <li>Ger: <I>wenn sie schläft</I> <li>Ita: <I>se lei dorme</I> <li>Nor: <I>hvis hun sover</I> <li>Pol: <I>jeśli ona śpi</I> <li>Ron: <I>dacă ea doarme</I> <li>Rus: <I>если она спдит</I> <li>Spa: <I>si ella duerme</I> <li>Swe: <I>om hon sover</I> <li>Urd: <I>اگر وہ سوتی ہے</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>that_Subj</CODE></TD>
-<TD><A HREF="#Subj" TITLE="Subj - subjunction">Subj</A></TD>
-<TD><div class=reveal> <I>that she sleeps</I> <div class=popup> <ul> <li>API: <CODE>mkAdv that_Subj (mkS (mkCl she_NP sleep_V))</CODE> <li>Bul: <I>*</I> <li>Cat: <I>que ella dormi</I> <li>Dan: <I>*</I> <li>Dut: <I>dat ze slaapt</I> <li>Eng: <I>that she sleeps</I> <li>Fin: <I>*</I> <li>Fre: <I>qu' elle dorme</I> <li>Ger: <I>daß sie schläft</I> <li>Ita: <I>che lei dorma</I> <li>Nor: <I>*</I> <li>Pol: <I>*</I> <li>Ron: <I>*</I> <li>Rus: <I>*</I> <li>Spa: <I>que ella duerma</I> <li>Swe: <I>att hon sover</I> <li>Urd: <I>كہ وہ سوتی ہے</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>when_Subj</CODE></TD>
-<TD><A HREF="#Subj" TITLE="Subj - subjunction">Subj</A></TD>
-<TD><div class=reveal> <I>when she sleeps</I> <div class=popup> <ul> <li>API: <CODE>mkAdv when_Subj (mkS (mkCl she_NP sleep_V))</CODE> <li>Bul: <I>когато тя спи</I> <li>Cat: <I>quan ella dorm</I> <li>Dan: <I>når hun sover</I> <li>Dut: <I>als ze slaapt</I> <li>Eng: <I>when she sleeps</I> <li>Fin: <I>kun hän nukkuu</I> <li>Fre: <I>quand elle dort</I> <li>Ger: <I>wenn sie schläft</I> <li>Ita: <I>quando lei dorme</I> <li>Nor: <I>når hun sover</I> <li>Pol: <I>jeśli ona śpi</I> <li>Ron: <I>când ea doarme</I> <li>Rus: <I>когда она спдит</I> <li>Spa: <I>cuando ella duerme</I> <li>Swe: <I>när hon sover</I> <li>Urd: <I>جب وہ سوتی ہے</I> </ul> </div> </div></TD>
-</TR>
-</TABLE>
-
-<A NAME="Temp"></A>
-<H2>Temp - temporal and aspectual features</H2>
-<TABLE BORDER="1" CELLPADDING="4">
-<TR>
-<TH>Function</TH>
-<TH>Type</TH>
-<TH COLSPAN="2">Example</TH>
-</TR>
-<TR>
-<TD><CODE>mkTemp</CODE></TD>
-<TD><A HREF="#Tense" TITLE="Tense - tense">Tense</A> <CODE>-&gt;</CODE> <A HREF="#Ant" TITLE="Ant - anteriority">Ant</A> <CODE>-&gt;</CODE> <A HREF="#Temp" TITLE="Temp - temporal and aspectual features">Temp</A></TD>
-<TD><I>e.g. past + anterior</I></TD>
-</TR>
-</TABLE>
-
-<A NAME="Tense"></A>
-<H2>Tense - tense</H2>
-<TABLE BORDER="1" CELLPADDING="4">
-<TR>
-<TH>Function</TH>
-<TH>Type</TH>
-<TH COLSPAN="2">Example</TH>
-</TR>
-<TR>
-<TD><CODE>conditionalTense</CODE></TD>
-<TD><A HREF="#Tense" TITLE="Tense - tense">Tense</A></TD>
-<TD><div class=reveal> <I>she would sleep</I> <div class=popup> <ul> <li>API: <CODE>mkS conditionalTense (mkCl she_NP sleep_V)</CODE> <li>Bul: <I>тя би спалa</I> <li>Cat: <I>ella dormiria</I> <li>Dan: <I>hun ville sove</I> <li>Dut: <I>ze zou geslapen hebben</I> <li>Eng: <I>she would sleep</I> <li>Fin: <I>hän nukkuisi</I> <li>Fre: <I>elle dormirait</I> <li>Ger: <I>sie würde schlafen</I> <li>Ita: <I>lei dormirebbe</I> <li>Nor: <I>hun ville sove</I> <li>Pol: <I>ona spałaby</I> <li>Ron: <I>ea ar dormi</I> <li>Rus: <I>она спала бы</I> <li>Spa: <I>ella dormiría</I> <li>Swe: <I>hon skulle sova</I> <li>Urd: <I>وہ شاید سوئے</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>futureTense</CODE></TD>
-<TD><A HREF="#Tense" TITLE="Tense - tense">Tense</A></TD>
-<TD><div class=reveal> <I>she will sleep</I> <div class=popup> <ul> <li>API: <CODE>mkS futureTense (mkCl she_NP sleep_V)</CODE> <li>Bul: <I>тя ще спи</I> <li>Cat: <I>ella dormirà</I> <li>Dan: <I>hun vil sove</I> <li>Dut: <I>ze zal geslapen hebben</I> <li>Eng: <I>she will sleep</I> <li>Fin: <I>hän nukkuu</I> <li>Fre: <I>elle dormira</I> <li>Ger: <I>sie wird schlafen</I> <li>Ita: <I>lei dormirà</I> <li>Nor: <I>hun vil sove</I> <li>Pol: <I>ona będzie spała</I> <li>Ron: <I>ea va dormi</I> <li>Rus: <I>она будет спать</I> <li>Spa: <I>ella dormirá</I> <li>Swe: <I>hon ska sova</I> <li>Urd: <I>وہ سوئے گی</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>pastTense</CODE></TD>
-<TD><A HREF="#Tense" TITLE="Tense - tense">Tense</A></TD>
-<TD><div class=reveal> <I>she slept</I> <div class=popup> <ul> <li>API: <CODE>mkS pastTense (mkCl she_NP sleep_V)</CODE> <li>Bul: <I>тя спа</I> <li>Cat: <I>ella dormia</I> <li>Dan: <I>hun sov</I> <li>Dut: <I>ze sliep</I> <li>Eng: <I>she slept</I> <li>Fin: <I>hän nukkui</I> <li>Fre: <I>elle dormait</I> <li>Ger: <I>sie schlief</I> <li>Ita: <I>lei dormiva</I> <li>Nor: <I>hun sov</I> <li>Pol: <I>ona spała</I> <li>Ron: <I>ea a dormit</I> <li>Rus: <I>она спала</I> <li>Spa: <I>ella dormía</I> <li>Swe: <I>hon sov</I> <li>Urd: <I>وہ سوئی</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>presentTense</CODE></TD>
-<TD><A HREF="#Tense" TITLE="Tense - tense">Tense</A></TD>
-<TD><div class=reveal> <I>she sleeps</I> <div class=popup> <ul> <li>API: <CODE>mkS presentTense (mkCl she_NP sleep_V)</CODE> <li>Bul: <I>тя спи</I> <li>Cat: <I>ella dorm</I> <li>Dan: <I>hun sover</I> <li>Dut: <I>ze slaapt</I> <li>Eng: <I>she sleeps</I> <li>Fin: <I>hän nukkuu</I> <li>Fre: <I>elle dort</I> <li>Ger: <I>sie schläft</I> <li>Ita: <I>lei dorme</I> <li>Nor: <I>hun sover</I> <li>Pol: <I>ona śpi</I> <li>Ron: <I>ea doarme</I> <li>Rus: <I>она спдит</I> <li>Spa: <I>ella duerme</I> <li>Swe: <I>hon sover</I> <li>Urd: <I>وہ سوتی ہے</I> </ul> </div> </div></TD>
-</TR>
-</TABLE>
-
-<A NAME="Text"></A>
-<H2>Text - text consisting of several phrases</H2>
-<TABLE BORDER="1" CELLPADDING="4">
-<TR>
-<TH>Function</TH>
-<TH>Type</TH>
-<TH COLSPAN="2">Example</TH>
-</TR>
-<TR>
-<TD><CODE>emptyText</CODE></TD>
-<TD><A HREF="#Text" TITLE="Text - text consisting of several phrases">Text</A></TD>
-<TD><I>(empty text)</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkText</CODE></TD>
-<TD><A HREF="#Phr" TITLE="Phr - phrase in a text">Phr</A> <CODE>-&gt;</CODE> (<A HREF="#Punct">Punct</A>) <CODE>-&gt;</CODE> (<A HREF="#Text" TITLE="Text - text consisting of several phrases">Text</A>) <CODE>-&gt;</CODE> <A HREF="#Text" TITLE="Text - text consisting of several phrases">Text</A></TD>
-<TD><div class=reveal> <I>does she sleep ? yes .</I> <div class=popup> <ul> <li>API: <CODE>mkText (mkPhr (mkQS (mkCl she_NP sleep_V))) questMarkPunct (mkText (mkPhr yes_Utt) fullStopPunct)</CODE> <li>Bul: <I>тя спи ли ? да .</I> <li>Cat: <I>ella dorm ? sí .</I> <li>Dan: <I>sover hun ? ja .</I> <li>Dut: <I>slaapt ze ? ja .</I> <li>Eng: <I>does she sleep ? yes .</I> <li>Fin: <I>nukkuuko hän ? kyllä .</I> <li>Fre: <I>elle dort ? oui .</I> <li>Ger: <I>schläft sie ? ja .</I> <li>Ita: <I>lei dorme ? sì .</I> <li>Nor: <I>sover hun ? ja .</I> <li>Pol: <I>czy ona śpi ? tak .</I> <li>Ron: <I>ea doarme ? da .</I> <li>Rus: <I>она спдит ? Да .</I> <li>Spa: <I>¿ ella duerme ? sí .</I> <li>Swe: <I>sover hon ? ja .</I> <li>Urd: <I>كیا وہ سوتی ہے ? ہاں .</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>mkText</CODE></TD>
-<TD><A HREF="#Utt" TITLE="Utt - sentence, question, word...">Utt</A> <CODE>-&gt;</CODE> <A HREF="#Text" TITLE="Text - text consisting of several phrases">Text</A></TD>
-<TD><div class=reveal> <I>yes .</I> <div class=popup> <ul> <li>API: <CODE>mkText yes_Utt</CODE> <li>Bul: <I>да .</I> <li>Cat: <I>sí .</I> <li>Dan: <I>ja .</I> <li>Dut: <I>ja .</I> <li>Eng: <I>yes .</I> <li>Fin: <I>kyllä .</I> <li>Fre: <I>oui .</I> <li>Ger: <I>ja .</I> <li>Ita: <I>sì .</I> <li>Nor: <I>ja .</I> <li>Pol: <I>tak .</I> <li>Ron: <I>da .</I> <li>Rus: <I>Да .</I> <li>Spa: <I>sí .</I> <li>Swe: <I>ja .</I> <li>Urd: <I>ہاں .</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>mkText</CODE></TD>
-<TD><A HREF="#S" TITLE="S - declarative sentence">S</A> <CODE>-&gt;</CODE> <A HREF="#Text" TITLE="Text - text consisting of several phrases">Text</A></TD>
-<TD><div class=reveal> <I>she slept .</I> <div class=popup> <ul> <li>API: <CODE>mkText (mkS pastTense (mkCl she_NP sleep_V))</CODE> <li>Bul: <I>тя спа .</I> <li>Cat: <I>ella dormia .</I> <li>Dan: <I>hun sov .</I> <li>Dut: <I>ze sliep .</I> <li>Eng: <I>she slept .</I> <li>Fin: <I>hän nukkui .</I> <li>Fre: <I>elle dormait .</I> <li>Ger: <I>sie schlief .</I> <li>Ita: <I>lei dormiva .</I> <li>Nor: <I>hun sov .</I> <li>Pol: <I>ona spała .</I> <li>Ron: <I>ea a dormit .</I> <li>Rus: <I>она спала .</I> <li>Spa: <I>ella dormía .</I> <li>Swe: <I>hon sov .</I> <li>Urd: <I>وہ سوئی .</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>mkText</CODE></TD>
-<TD><A HREF="#Cl" TITLE="Cl - declarative clause, with all tenses">Cl</A> <CODE>-&gt;</CODE> <A HREF="#Text" TITLE="Text - text consisting of several phrases">Text</A></TD>
-<TD><div class=reveal> <I>she sleeps .</I> <div class=popup> <ul> <li>API: <CODE>mkText (mkCl she_NP sleep_V)</CODE> <li>Bul: <I>тя спи .</I> <li>Cat: <I>ella dorm .</I> <li>Dan: <I>hun sover .</I> <li>Dut: <I>ze slaapt .</I> <li>Eng: <I>she sleeps .</I> <li>Fin: <I>hän nukkuu .</I> <li>Fre: <I>elle dort .</I> <li>Ger: <I>sie schläft .</I> <li>Ita: <I>lei dorme .</I> <li>Nor: <I>hun sover .</I> <li>Pol: <I>ona śpi .</I> <li>Ron: <I>ea doarme .</I> <li>Rus: <I>она спдит .</I> <li>Spa: <I>ella duerme .</I> <li>Swe: <I>hon sover .</I> <li>Urd: <I>وہ سوتی ہے .</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>mkText</CODE></TD>
-<TD><A HREF="#QS" TITLE="QS - question">QS</A> <CODE>-&gt;</CODE> <A HREF="#Text" TITLE="Text - text consisting of several phrases">Text</A></TD>
-<TD><div class=reveal> <I>did she sleep ?</I> <div class=popup> <ul> <li>API: <CODE>mkText (mkQS pastTense (mkQCl (mkCl she_NP sleep_V)))</CODE> <li>Bul: <I>тя спа ли ?</I> <li>Cat: <I>ella dormia ?</I> <li>Dan: <I>sov hun ?</I> <li>Dut: <I>sliep ze ?</I> <li>Eng: <I>did she sleep ?</I> <li>Fin: <I>nukkuiko hän ?</I> <li>Fre: <I>elle dormait ?</I> <li>Ger: <I>schlief sie ?</I> <li>Ita: <I>lei dormiva ?</I> <li>Nor: <I>sov hun ?</I> <li>Pol: <I>czy ona spała ?</I> <li>Ron: <I>ea a dormit ?</I> <li>Rus: <I>она спала ?</I> <li>Spa: <I>¿ ella dormía ?</I> <li>Swe: <I>sov hon ?</I> <li>Urd: <I>كیا وہ سوئی ?</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>mkText</CODE></TD>
-<TD>(<A HREF="#Pol" TITLE="Pol - polarity">Pol</A>) <CODE>-&gt;</CODE> <A HREF="#Imp" TITLE="Imp - imperative">Imp</A> <CODE>-&gt;</CODE> <A HREF="#Text" TITLE="Text - text consisting of several phrases">Text</A></TD>
-<TD><div class=reveal> <I>don't sleep !</I> <div class=popup> <ul> <li>API: <CODE>mkText negativePol (mkImp sleep_V)</CODE> <li>Bul: <I>не спи !</I> <li>Cat: <I>no dorm !</I> <li>Dan: <I>sov ikke !</I> <li>Dut: <I>slaap niet !</I> <li>Eng: <I>don't sleep !</I> <li>Fin: <I>älä nuku !</I> <li>Fre: <I>ne dors pas !</I> <li>Ger: <I>schlaf nicht !</I> <li>Ita: <I>non dormire !</I> <li>Nor: <I>sov ikke !</I> <li>Pol: <I>nie śpij !</I> <li>Ron: <I>nu dormi !</I> <li>Rus: <I>не спи !</I> <li>Spa: <I>¡ no duerme !</I> <li>Swe: <I>sov inte !</I> <li>Urd: <I>مت سونا !</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>mkText</CODE></TD>
-<TD><A HREF="#Text" TITLE="Text - text consisting of several phrases">Text</A> <CODE>-&gt;</CODE> <A HREF="#Text" TITLE="Text - text consisting of several phrases">Text</A> <CODE>-&gt;</CODE> <A HREF="#Text" TITLE="Text - text consisting of several phrases">Text</A></TD>
-<TD><div class=reveal> <I>where ? here . when ? now !</I> <div class=popup> <ul> <li>API: <CODE>mkText (mkText (mkPhr (mkUtt where_IAdv)) questMarkPunct (mkText (mkPhr (mkUtt here_Adv)))) (mkText (mkPhr (mkUtt when_IAdv)) questMarkPunct (mkText (mkPhr (mkUtt now_Adv)) exclMarkPunct))</CODE> <li>Bul: <I>къде ? тук . кога ? сега !</I> <li>Cat: <I>on ? aquí . quan ? ara !</I> <li>Dan: <I>hvor ? her . hvornår ? nu !</I> <li>Dut: <I>waar ? hier . wanneer ? nu !</I> <li>Eng: <I>where ? here . when ? now !</I> <li>Fin: <I>missä ? täällä . milloin ? nyt !</I> <li>Fre: <I>oÃ¹ ? ici . quand ? maintenant !</I> <li>Ger: <I>wo ? hier . wann ? jetzt !</I> <li>Ita: <I>dove ? quà . quando ? adesso !</I> <li>Nor: <I>hvor ? her . når ? nå !</I> <li>Pol: <I>gdzie ? tutaj . kiedy ? teraz !</I> <li>Ron: <I>unde ? aici . când ? acum !</I> <li>Rus: <I>где ? здесь . когда ? сейчас !</I> <li>Spa: <I>¿ donde ? aquí . ¿ cuando ? ¡ ahora !</I> <li>Swe: <I>var ? här . när ? nu !</I> <li>Urd: <I>كہاں ? یہاں . كب ? اب !</I> </ul> </div> </div></TD>
-</TR>
-</TABLE>
-
-<A NAME="Unit"></A>
-<H2>Unit</H2>
-<TABLE BORDER="1" CELLPADDING="4">
-<TR>
-<TH>Function</TH>
-<TH>Type</TH>
-<TH COLSPAN="2">Example</TH>
-</TR>
-<TR>
-<TD><CODE>n1_Unit</CODE></TD>
-<TD><A HREF="#Unit">Unit</A></TD>
-<TD><div class=reveal> <I>one</I> <div class=popup> <ul> <li>API: <CODE>mkNumeral n1_Unit</CODE> <li>Bul: <I>един</I> <li>Cat: <I>un</I> <li>Dan: <I>en</I> <li>Dut: <I>een</I> <li>Eng: <I>one</I> <li>Fin: <I>yksi</I> <li>Fre: <I>un</I> <li>Ger: <I>ein</I> <li>Ita: <I>uno</I> <li>Nor: <I>en</I> <li>Pol: <I>jeden</I> <li>Ron: <I>un</I> <li>Rus: <I>один</I> <li>Spa: <I>uno</I> <li>Swe: <I>en</I> <li>Urd: <I>ایك</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>n2_Unit</CODE></TD>
-<TD><A HREF="#Unit">Unit</A></TD>
-<TD><div class=reveal> <I>two</I> <div class=popup> <ul> <li>API: <CODE>mkNumeral n2_Unit</CODE> <li>Bul: <I>двама</I> <li>Cat: <I>dos</I> <li>Dan: <I>to</I> <li>Dut: <I>twee</I> <li>Eng: <I>two</I> <li>Fin: <I>kaksi</I> <li>Fre: <I>deux</I> <li>Ger: <I>zwei</I> <li>Ita: <I>due</I> <li>Nor: <I>to</I> <li>Pol: <I>dwa</I> <li>Ron: <I>doi</I> <li>Rus: <I>два</I> <li>Spa: <I>dos</I> <li>Swe: <I>två</I> <li>Urd: <I>دو</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>n3_Unit</CODE></TD>
-<TD><A HREF="#Unit">Unit</A></TD>
-<TD><div class=reveal> <I>three</I> <div class=popup> <ul> <li>API: <CODE>mkNumeral n3_Unit</CODE> <li>Bul: <I>трима</I> <li>Cat: <I>tres</I> <li>Dan: <I>tre</I> <li>Dut: <I>drie</I> <li>Eng: <I>three</I> <li>Fin: <I>kolme</I> <li>Fre: <I>trois</I> <li>Ger: <I>drei</I> <li>Ita: <I>tre</I> <li>Nor: <I>tre</I> <li>Pol: <I>trzy</I> <li>Ron: <I>trei</I> <li>Rus: <I>три</I> <li>Spa: <I>tres</I> <li>Swe: <I>tre</I> <li>Urd: <I>تین</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>n4_Unit</CODE></TD>
-<TD><A HREF="#Unit">Unit</A></TD>
-<TD><div class=reveal> <I>four</I> <div class=popup> <ul> <li>API: <CODE>mkNumeral n4_Unit</CODE> <li>Bul: <I>четирима</I> <li>Cat: <I>quatre</I> <li>Dan: <I>fire</I> <li>Dut: <I>vier</I> <li>Eng: <I>four</I> <li>Fin: <I>neljä</I> <li>Fre: <I>quatre</I> <li>Ger: <I>vier</I> <li>Ita: <I>quattro</I> <li>Nor: <I>fire</I> <li>Pol: <I>cztery</I> <li>Ron: <I>patru</I> <li>Rus: <I>четыре</I> <li>Spa: <I>cuatro</I> <li>Swe: <I>fyra</I> <li>Urd: <I>چار</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>n5_Unit</CODE></TD>
-<TD><A HREF="#Unit">Unit</A></TD>
-<TD><div class=reveal> <I>five</I> <div class=popup> <ul> <li>API: <CODE>mkNumeral n5_Unit</CODE> <li>Bul: <I>петима</I> <li>Cat: <I>cinc</I> <li>Dan: <I>fem</I> <li>Dut: <I>vijf</I> <li>Eng: <I>five</I> <li>Fin: <I>viisi</I> <li>Fre: <I>cinq</I> <li>Ger: <I>fünf</I> <li>Ita: <I>cinque</I> <li>Nor: <I>fem</I> <li>Pol: <I>pięć</I> <li>Ron: <I>cinci</I> <li>Rus: <I>пять</I> <li>Spa: <I>cinco</I> <li>Swe: <I>fem</I> <li>Urd: <I>پانچ</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>n6_Unit</CODE></TD>
-<TD><A HREF="#Unit">Unit</A></TD>
-<TD><div class=reveal> <I>six</I> <div class=popup> <ul> <li>API: <CODE>mkNumeral n6_Unit</CODE> <li>Bul: <I>шестима</I> <li>Cat: <I>sis</I> <li>Dan: <I>seks</I> <li>Dut: <I>zes</I> <li>Eng: <I>six</I> <li>Fin: <I>kuusi</I> <li>Fre: <I>six</I> <li>Ger: <I>sechs</I> <li>Ita: <I>sei</I> <li>Nor: <I>seks</I> <li>Pol: <I>sześć</I> <li>Ron: <I>şase</I> <li>Rus: <I>шесть</I> <li>Spa: <I>seis</I> <li>Swe: <I>sex</I> <li>Urd: <I>چھ</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>n7_Unit</CODE></TD>
-<TD><A HREF="#Unit">Unit</A></TD>
-<TD><div class=reveal> <I>seven</I> <div class=popup> <ul> <li>API: <CODE>mkNumeral n7_Unit</CODE> <li>Bul: <I>седмина</I> <li>Cat: <I>set</I> <li>Dan: <I>syv</I> <li>Dut: <I>zeven</I> <li>Eng: <I>seven</I> <li>Fin: <I>seitsemän</I> <li>Fre: <I>sept</I> <li>Ger: <I>sieben</I> <li>Ita: <I>sette</I> <li>Nor: <I>sju</I> <li>Pol: <I>siedem</I> <li>Ron: <I>şapte</I> <li>Rus: <I>семь</I> <li>Spa: <I>siete</I> <li>Swe: <I>sju</I> <li>Urd: <I>سات</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>n8_Unit</CODE></TD>
-<TD><A HREF="#Unit">Unit</A></TD>
-<TD><div class=reveal> <I>eight</I> <div class=popup> <ul> <li>API: <CODE>mkNumeral n8_Unit</CODE> <li>Bul: <I>осмина</I> <li>Cat: <I>vuit</I> <li>Dan: <I>otte</I> <li>Dut: <I>acht</I> <li>Eng: <I>eight</I> <li>Fin: <I>kahdeksan</I> <li>Fre: <I>huit</I> <li>Ger: <I>acht</I> <li>Ita: <I>otto</I> <li>Nor: <I>åtte</I> <li>Pol: <I>osiemm</I> <li>Ron: <I>opt</I> <li>Rus: <I>восемь</I> <li>Spa: <I>ocho</I> <li>Swe: <I>åtta</I> <li>Urd: <I>آتھ</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>n9_Unit</CODE></TD>
-<TD><A HREF="#Unit">Unit</A></TD>
-<TD><div class=reveal> <I>nine</I> <div class=popup> <ul> <li>API: <CODE>mkNumeral n9_Unit</CODE> <li>Bul: <I>деветима</I> <li>Cat: <I>nou</I> <li>Dan: <I>ni</I> <li>Dut: <I>negen</I> <li>Eng: <I>nine</I> <li>Fin: <I>yhdeksän</I> <li>Fre: <I>neuf</I> <li>Ger: <I>neun</I> <li>Ita: <I>nove</I> <li>Nor: <I>ni</I> <li>Pol: <I>dziewięć</I> <li>Ron: <I>nouă</I> <li>Rus: <I>девять</I> <li>Spa: <I>nueve</I> <li>Swe: <I>nio</I> <li>Urd: <I>نو</I> </ul> </div> </div></TD>
-</TR>
-</TABLE>
-
-<A NAME="Utt"></A>
-<H2>Utt - sentence, question, word...</H2>
-<TABLE BORDER="1" CELLPADDING="4">
-<TR>
-<TH>Function</TH>
-<TH>Type</TH>
-<TH COLSPAN="2">Example</TH>
-</TR>
-<TR>
-<TD><CODE>lets_Utt</CODE></TD>
-<TD><A HREF="#VP" TITLE="VP - verb phrase">VP</A> <CODE>-&gt;</CODE> <A HREF="#Utt" TITLE="Utt - sentence, question, word...">Utt</A></TD>
-<TD><div class=reveal> <I>let's sleep</I> <div class=popup> <ul> <li>API: <CODE>mkPhr (lets_Utt (mkVP sleep_V))</CODE> <li>Bul: <I>нека да спим</I> <li>Cat: <I>dormim</I> <li>Dan: <I>lad os sove</I> <li>Dut: <I>laten we slapen</I> <li>Eng: <I>let's sleep</I> <li>Fin: <I>nukutaan</I> <li>Fre: <I>dormons</I> <li>Ger: <I>schlafen wir</I> <li>Ita: <I>dormiamo</I> <li>Nor: <I>lat oss sove</I> <li>Pol: <I>śpijmy</I> <li>Ron: <I>sã dormim</I> <li>Rus: <I>давайте будем спать</I> <li>Spa: <I>durmamos</I> <li>Swe: <I>låt oss sova</I> <li>Urd: <I>آو سوئیں</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>mkUtt</CODE></TD>
-<TD><A HREF="#S" TITLE="S - declarative sentence">S</A> <CODE>-&gt;</CODE> <A HREF="#Utt" TITLE="Utt - sentence, question, word...">Utt</A></TD>
-<TD><div class=reveal> <I>she slept</I> <div class=popup> <ul> <li>API: <CODE>mkUtt (mkS pastTense (mkCl she_NP sleep_V))</CODE> <li>Bul: <I>тя спа</I> <li>Cat: <I>ella dormia</I> <li>Dan: <I>hun sov</I> <li>Dut: <I>ze sliep</I> <li>Eng: <I>she slept</I> <li>Fin: <I>hän nukkui</I> <li>Fre: <I>elle dormait</I> <li>Ger: <I>sie schlief</I> <li>Ita: <I>lei dormiva</I> <li>Nor: <I>hun sov</I> <li>Pol: <I>ona spała</I> <li>Ron: <I>ea a dormit</I> <li>Rus: <I>она спала</I> <li>Spa: <I>ella dormía</I> <li>Swe: <I>hon sov</I> <li>Urd: <I>وہ سوئی</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>mkUtt</CODE></TD>
-<TD><A HREF="#Cl" TITLE="Cl - declarative clause, with all tenses">Cl</A> <CODE>-&gt;</CODE> <A HREF="#Utt" TITLE="Utt - sentence, question, word...">Utt</A></TD>
-<TD><div class=reveal> <I>she sleeps</I> <div class=popup> <ul> <li>API: <CODE>mkUtt (mkCl she_NP sleep_V)</CODE> <li>Bul: <I>тя спи</I> <li>Cat: <I>ella dorm</I> <li>Dan: <I>hun sover</I> <li>Dut: <I>ze slaapt</I> <li>Eng: <I>she sleeps</I> <li>Fin: <I>hän nukkuu</I> <li>Fre: <I>elle dort</I> <li>Ger: <I>sie schläft</I> <li>Ita: <I>lei dorme</I> <li>Nor: <I>hun sover</I> <li>Pol: <I>ona śpi</I> <li>Ron: <I>ea doarme</I> <li>Rus: <I>она спдит</I> <li>Spa: <I>ella duerme</I> <li>Swe: <I>hon sover</I> <li>Urd: <I>وہ سوتی ہے</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>mkUtt</CODE></TD>
-<TD><A HREF="#QS" TITLE="QS - question">QS</A> <CODE>-&gt;</CODE> <A HREF="#Utt" TITLE="Utt - sentence, question, word...">Utt</A></TD>
-<TD><div class=reveal> <I>who didn't sleep</I> <div class=popup> <ul> <li>API: <CODE>mkUtt (mkQS pastTense negativePol (mkQCl who_IP sleep_V))</CODE> <li>Bul: <I>кой не спа</I> <li>Cat: <I>qui no dormia</I> <li>Dan: <I>hvem sov ikke</I> <li>Dut: <I>wie sliep niet</I> <li>Eng: <I>who didn't sleep</I> <li>Fin: <I>kuka ei nukkunut</I> <li>Fre: <I>qui ne dormait pas</I> <li>Ger: <I>wer schlief nicht</I> <li>Ita: <I>chi non dormiva</I> <li>Nor: <I>hvem sov ikke</I> <li>Pol: <I>kto nie spał</I> <li>Ron: <I>cine nu a dormit</I> <li>Rus: <I>кто спал</I> <li>Spa: <I>quién no dormía</I> <li>Swe: <I>vem sov inte</I> <li>Urd: <I>كون نہیں سویا</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>mkUtt</CODE></TD>
-<TD><A HREF="#QCl" TITLE="QCl - question clause, with all tenses">QCl</A> <CODE>-&gt;</CODE> <A HREF="#Utt" TITLE="Utt - sentence, question, word...">Utt</A></TD>
-<TD><div class=reveal> <I>who sleeps</I> <div class=popup> <ul> <li>API: <CODE>mkUtt (mkQCl who_IP sleep_V)</CODE> <li>Bul: <I>кой спи</I> <li>Cat: <I>qui dorm</I> <li>Dan: <I>hvem sover</I> <li>Dut: <I>wie slaapt</I> <li>Eng: <I>who sleeps</I> <li>Fin: <I>kuka nukkuu</I> <li>Fre: <I>qui dort</I> <li>Ger: <I>wer schläft</I> <li>Ita: <I>chi dorme</I> <li>Nor: <I>hvem sover</I> <li>Pol: <I>kto śpi</I> <li>Ron: <I>cine doarme</I> <li>Rus: <I>кто спдит</I> <li>Spa: <I>quién duerme</I> <li>Swe: <I>vem sover</I> <li>Urd: <I>كون سوتا ہے</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>mkUtt</CODE></TD>
-<TD>(<A HREF="#ImpForm">ImpForm</A>) <CODE>-&gt;</CODE> (<A HREF="#Pol" TITLE="Pol - polarity">Pol</A>) <CODE>-&gt;</CODE> <A HREF="#Imp" TITLE="Imp - imperative">Imp</A> <CODE>-&gt;</CODE> <A HREF="#Utt" TITLE="Utt - sentence, question, word...">Utt</A></TD>
-<TD><div class=reveal> <I>don't be men</I> <div class=popup> <ul> <li>API: <CODE>mkUtt pluralImpForm negativePol (mkImp (mkVP man_N))</CODE> <li>Bul: <I>не бъдете мъже</I> <li>Cat: <I>no sigueu homes</I> <li>Dan: <I>var ikke mænd</I> <li>Dut: <I>wezen mannen niet</I> <li>Eng: <I>don't be men</I> <li>Fin: <I>älkää olko miehiä</I> <li>Fre: <I>ne soyez pas hommes</I> <li>Ger: <I>seid Männer nicht</I> <li>Ita: <I>non siate uomini</I> <li>Nor: <I>var ikke menn</I> <li>Pol: <I>nie bądźcie mężczyzna</I> <li>Ron: <I>nu sunteţi oameni</I> <li>Rus: <I>не будьте человеками</I> <li>Spa: <I>no sed hombres</I> <li>Swe: <I>var inte män</I> <li>Urd: <I>مت آدمی</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>mkUtt</CODE></TD>
-<TD><A HREF="#IP" TITLE="IP - interrogative pronoun">IP</A> <CODE>-&gt;</CODE> <A HREF="#Utt" TITLE="Utt - sentence, question, word...">Utt</A></TD>
-<TD><div class=reveal> <I>who</I> <div class=popup> <ul> <li>API: <CODE>mkUtt who_IP</CODE> <li>Bul: <I>кой</I> <li>Cat: <I>qui</I> <li>Dan: <I>hvem</I> <li>Dut: <I>wie</I> <li>Eng: <I>who</I> <li>Fin: <I>kuka</I> <li>Fre: <I>qui</I> <li>Ger: <I>wer</I> <li>Ita: <I>chi</I> <li>Nor: <I>hvem</I> <li>Pol: <I>kto</I> <li>Ron: <I>cine</I> <li>Rus: <I>кто</I> <li>Spa: <I>quién</I> <li>Swe: <I>vem</I> <li>Urd: <I>كون</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>mkUtt</CODE></TD>
-<TD><A HREF="#IAdv" TITLE="IAdv - interrogative adverb">IAdv</A> <CODE>-&gt;</CODE> <A HREF="#Utt" TITLE="Utt - sentence, question, word...">Utt</A></TD>
-<TD><div class=reveal> <I>why</I> <div class=popup> <ul> <li>API: <CODE>mkUtt why_IAdv</CODE> <li>Bul: <I>защо</I> <li>Cat: <I>per quË</I> <li>Dan: <I>hvorfor</I> <li>Dut: <I>waarom</I> <li>Eng: <I>why</I> <li>Fin: <I>miksi</I> <li>Fre: <I>pourquoi</I> <li>Ger: <I>warum</I> <li>Ita: <I>perché</I> <li>Nor: <I>hvorfor</I> <li>Pol: <I>dlaczego</I> <li>Ron: <I>de ce</I> <li>Rus: <I>почему</I> <li>Spa: <I>porqué</I> <li>Swe: <I>varför</I> <li>Urd: <I>كیوں</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>mkUtt</CODE></TD>
-<TD><A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A> <CODE>-&gt;</CODE> <A HREF="#Utt" TITLE="Utt - sentence, question, word...">Utt</A></TD>
-<TD><div class=reveal> <I>this man</I> <div class=popup> <ul> <li>API: <CODE>mkUtt (mkNP this_Det man_N)</CODE> <li>Bul: <I>този мъж</I> <li>Cat: <I>aquest home</I> <li>Dan: <I>denne mand</I> <li>Dut: <I>deze man</I> <li>Eng: <I>this man</I> <li>Fin: <I>tämä mies</I> <li>Fre: <I>cet homme</I> <li>Ger: <I>dieser Mann</I> <li>Ita: <I>questo uomo</I> <li>Nor: <I>denne mannen</I> <li>Pol: <I>ten mężczyzna</I> <li>Ron: <I>acest om</I> <li>Rus: <I>этот человек</I> <li>Spa: <I>este hombre</I> <li>Swe: <I>den här mannen</I> <li>Urd: <I>یہ آدمی</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>mkUtt</CODE></TD>
-<TD><A HREF="#Adv" TITLE="Adv - verb-phrase-modifying adverb">Adv</A> <CODE>-&gt;</CODE> <A HREF="#Utt" TITLE="Utt - sentence, question, word...">Utt</A></TD>
-<TD><div class=reveal> <I>here</I> <div class=popup> <ul> <li>API: <CODE>mkUtt here_Adv</CODE> <li>Bul: <I>тук</I> <li>Cat: <I>aquí</I> <li>Dan: <I>her</I> <li>Dut: <I>hier</I> <li>Eng: <I>here</I> <li>Fin: <I>täällä</I> <li>Fre: <I>ici</I> <li>Ger: <I>hier</I> <li>Ita: <I>quà</I> <li>Nor: <I>her</I> <li>Pol: <I>tutaj</I> <li>Ron: <I>aici</I> <li>Rus: <I>здесь</I> <li>Spa: <I>aquí</I> <li>Swe: <I>här</I> <li>Urd: <I>یہاں</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>mkUtt</CODE></TD>
-<TD><A HREF="#VP" TITLE="VP - verb phrase">VP</A> <CODE>-&gt;</CODE> <A HREF="#Utt" TITLE="Utt - sentence, question, word...">Utt</A></TD>
-<TD><div class=reveal> <I>to sleep</I> <div class=popup> <ul> <li>API: <CODE>mkUtt (mkVP sleep_V)</CODE> <li>Bul: <I>да спи</I> <li>Cat: <I>dormir</I> <li>Dan: <I>at sove</I> <li>Dut: <I>slapen</I> <li>Eng: <I>to sleep</I> <li>Fin: <I>nukkua</I> <li>Fre: <I>dormir</I> <li>Ger: <I>schlafen</I> <li>Ita: <I>dormire</I> <li>Nor: <I>å sove</I> <li>Pol: <I>spać</I> <li>Ron: <I>sã doarmă</I> <li>Rus: <I>спать</I> <li>Spa: <I>dormir</I> <li>Swe: <I>att sova</I> <li>Urd: <I>سونا</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>mkUtt</CODE></TD>
-<TD><A HREF="#CN" TITLE="CN - common noun (without determiner)">CN</A> <CODE>-&gt;</CODE> <A HREF="#Utt" TITLE="Utt - sentence, question, word...">Utt</A></TD>
-<TD><div class=reveal> <I>beer</I> <div class=popup> <ul> <li>API: <CODE>mkUtt (mkCN beer_N)</CODE> <li>Bul: <I>бира</I> <li>Cat: <I>cervesa</I> <li>Dan: <I>øl</I> <li>Dut: <I>bier</I> <li>Eng: <I>beer</I> <li>Fin: <I>olut</I> <li>Fre: <I>bière</I> <li>Ger: <I>Bier</I> <li>Ita: <I>birra</I> <li>Nor: <I>øl</I> <li>Pol: <I>piwo</I> <li>Ron: <I>bere</I> <li>Rus: <I>пиво</I> <li>Spa: <I>cerveza</I> <li>Swe: <I>öl</I> <li>Urd: <I>بییر</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>mkUtt</CODE></TD>
-<TD><A HREF="#AP" TITLE="AP - adjectival phrase">AP</A> <CODE>-&gt;</CODE> <A HREF="#Utt" TITLE="Utt - sentence, question, word...">Utt</A></TD>
-<TD><div class=reveal> <I>good</I> <div class=popup> <ul> <li>API: <CODE>mkUtt (mkAP good_A)</CODE> <li>Bul: <I>добър</I> <li>Cat: <I>bo</I> <li>Dan: <I>god</I> <li>Dut: <I>goed</I> <li>Eng: <I>good</I> <li>Fin: <I>hyvä</I> <li>Fre: <I>bon</I> <li>Ger: <I>gut</I> <li>Ita: <I>buono</I> <li>Nor: <I>god</I> <li>Pol: <I>dobry</I> <li>Ron: <I>bun</I> <li>Rus: <I>хорошее</I> <li>Spa: <I>bueno</I> <li>Swe: <I>god</I> <li>Urd: <I>اچھا</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>mkUtt</CODE></TD>
-<TD><A HREF="#Card" TITLE="Card - cardinal number">Card</A> <CODE>-&gt;</CODE> <A HREF="#Utt" TITLE="Utt - sentence, question, word...">Utt</A></TD>
-<TD><div class=reveal> <I>five</I> <div class=popup> <ul> <li>API: <CODE>mkUtt (mkCard (mkNumeral n5_Unit))</CODE> <li>Bul: <I>пет</I> <li>Cat: <I>cinc</I> <li>Dan: <I>fem</I> <li>Dut: <I>vijf</I> <li>Eng: <I>five</I> <li>Fin: <I>viisi</I> <li>Fre: <I>cinq</I> <li>Ger: <I>fünf</I> <li>Ita: <I>cinque</I> <li>Nor: <I>fem</I> <li>Pol: <I>pięć</I> <li>Ron: <I>cinci</I> <li>Rus: <I>пять</I> <li>Spa: <I>cinco</I> <li>Swe: <I>fem</I> <li>Urd: <I>پانچ</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>no_Utt</CODE></TD>
-<TD><A HREF="#Utt" TITLE="Utt - sentence, question, word...">Utt</A></TD>
-<TD><div class=reveal> <I>no</I> <div class=popup> <ul> <li>API: <CODE>no_Utt</CODE> <li>Bul: <I>не</I> <li>Cat: <I>no</I> <li>Dan: <I>nej</I> <li>Dut: <I>neen</I> <li>Eng: <I>no</I> <li>Fin: <I>ei</I> <li>Fre: <I>non</I> <li>Ger: <I>nein</I> <li>Ita: <I>no</I> <li>Nor: <I>nei</I> <li>Pol: <I>nie</I> <li>Ron: <I>nu</I> <li>Rus: <I>Нет</I> <li>Spa: <I>no</I> <li>Swe: <I>nej</I> <li>Urd: <I>نہیں</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>yes_Utt</CODE></TD>
-<TD><A HREF="#Utt" TITLE="Utt - sentence, question, word...">Utt</A></TD>
-<TD><div class=reveal> <I>yes</I> <div class=popup> <ul> <li>API: <CODE>yes_Utt</CODE> <li>Bul: <I>да</I> <li>Cat: <I>sí</I> <li>Dan: <I>ja</I> <li>Dut: <I>ja</I> <li>Eng: <I>yes</I> <li>Fin: <I>kyllä</I> <li>Fre: <I>oui</I> <li>Ger: <I>ja</I> <li>Ita: <I>sì</I> <li>Nor: <I>ja</I> <li>Pol: <I>tak</I> <li>Ron: <I>da</I> <li>Rus: <I>Да</I> <li>Spa: <I>sí</I> <li>Swe: <I>ja</I> <li>Urd: <I>ہاں</I> </ul> </div> </div></TD>
-</TR>
-</TABLE>
-
-<A NAME="V"></A>
-<H2>V - one-place verb</H2>
-<P>
-Lexical category, constructors given in
-<A HREF="#RParadigms">lexical paradigms</A>.
-</P>
-<A NAME="V2"></A>
-<H2>V2 - two-place verb</H2>
-<TABLE BORDER="1" CELLPADDING="4">
-<TR>
-<TH>Function</TH>
-<TH>Type</TH>
-<TH COLSPAN="2">Example</TH>
-</TR>
-<TR>
-<TD><CODE>have_V2</CODE></TD>
-<TD><A HREF="#V2" TITLE="V2 - two-place verb">V2</A></TD>
-<TD><div class=reveal> <I>to have it</I> <div class=popup> <ul> <li>API: <CODE>mkUtt (mkVP have_V2 it_NP)</CODE> <li>Bul: <I>да има него</I> <li>Cat: <I>tenir ho</I> <li>Dan: <I>at have det</I> <li>Dut: <I>hebben</I> <li>Eng: <I>to have it</I> <li>Fin: <I>olla sen</I> <li>Fre: <I>l' avoir</I> <li>Ger: <I>es haben</I> <li>Ita: <I>avere lo</I> <li>Nor: <I>å ha det</I> <li>Pol: <I>mieć je</I> <li>Ron: <I>sã îl aibă</I> <li>Rus: <I>иметь его</I> <li>Spa: <I>tener lo</I> <li>Swe: <I>att ha det</I> <li>Urd: <I>اس راكھنا</I> </ul> </div> </div></TD>
-</TR>
-</TABLE>
-
-<A NAME="V2A"></A>
-<H2>V2A - verb with NP and AP complement</H2>
-<P>
-Lexical category, constructors given in
-<A HREF="#RParadigms">lexical paradigms</A>.
-</P>
-<A NAME="V2Q"></A>
-<H2>V2Q - verb with NP and Q complement</H2>
-<P>
-Lexical category, constructors given in
-<A HREF="#RParadigms">lexical paradigms</A>.
-</P>
-<A NAME="V2S"></A>
-<H2>V2S - verb with NP and S complement</H2>
-<P>
-Lexical category, constructors given in
-<A HREF="#RParadigms">lexical paradigms</A>.
-</P>
-<A NAME="V2V"></A>
-<H2>V2V - verb with NP and V complement</H2>
-<P>
-Lexical category, constructors given in
-<A HREF="#RParadigms">lexical paradigms</A>.
-</P>
-<A NAME="V3"></A>
-<H2>V3 - three-place verb</H2>
-<P>
-Lexical category, constructors given in
-<A HREF="#RParadigms">lexical paradigms</A>.
-</P>
-<A NAME="VA"></A>
-<H2>VA - adjective-complement verb</H2>
-<P>
-Lexical category, constructors given in
-<A HREF="#RParadigms">lexical paradigms</A>.
-</P>
-<A NAME="VP"></A>
-<H2>VP - verb phrase</H2>
-<TABLE BORDER="1" CELLPADDING="4">
-<TR>
-<TH>Function</TH>
-<TH>Type</TH>
-<TH COLSPAN="2">Example</TH>
-</TR>
-<TR>
-<TD><CODE>mkVP</CODE></TD>
-<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#VP" TITLE="VP - verb phrase">VP</A></TD>
-<TD><div class=reveal> <I>to sleep</I> <div class=popup> <ul> <li>API: <CODE>mkUtt (mkVP sleep_V)</CODE> <li>Bul: <I>да спи</I> <li>Cat: <I>dormir</I> <li>Dan: <I>at sove</I> <li>Dut: <I>slapen</I> <li>Eng: <I>to sleep</I> <li>Fin: <I>nukkua</I> <li>Fre: <I>dormir</I> <li>Ger: <I>schlafen</I> <li>Ita: <I>dormire</I> <li>Nor: <I>å sove</I> <li>Pol: <I>spać</I> <li>Ron: <I>sã doarmă</I> <li>Rus: <I>спать</I> <li>Spa: <I>dormir</I> <li>Swe: <I>att sova</I> <li>Urd: <I>سونا</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>mkVP</CODE></TD>
-<TD><A HREF="#V2" TITLE="V2 - two-place verb">V2</A> <CODE>-&gt;</CODE> <A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A> <CODE>-&gt;</CODE> <A HREF="#VP" TITLE="VP - verb phrase">VP</A></TD>
-<TD><div class=reveal> <I>to love him</I> <div class=popup> <ul> <li>API: <CODE>mkUtt (mkVP love_V2 he_NP)</CODE> <li>Bul: <I>да обича него</I> <li>Cat: <I>estimar el</I> <li>Dan: <I>at elske ham</I> <li>Dut: <I>liefhebben</I> <li>Eng: <I>to love him</I> <li>Fin: <I>rakastaa häntä</I> <li>Fre: <I>l' aimer</I> <li>Ger: <I>ihn lieben</I> <li>Ita: <I>amare lo</I> <li>Nor: <I>å elske ham</I> <li>Pol: <I>kochać jego</I> <li>Ron: <I>sã îl iubească</I> <li>Rus: <I>любить его</I> <li>Spa: <I>amar lo</I> <li>Swe: <I>att älska honom</I> <li>Urd: <I>اس كو پیار كرنا</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>mkVP</CODE></TD>
-<TD><A HREF="#V3" TITLE="V3 - three-place verb">V3</A> <CODE>-&gt;</CODE> <A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A> <CODE>-&gt;</CODE> <A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A> <CODE>-&gt;</CODE> <A HREF="#VP" TITLE="VP - verb phrase">VP</A></TD>
-<TD><div class=reveal> <I>to send it to him</I> <div class=popup> <ul> <li>API: <CODE>mkUtt (mkVP send_V3 it_NP he_NP)</CODE> <li>Bul: <I>да прати него до него</I> <li>Cat: <I>enviar ho li</I> <li>Dan: <I>at sende det til ham</I> <li>Dut: <I>naar hem sturen</I> <li>Eng: <I>to send it to him</I> <li>Fin: <I>lähettää sen hänelle</I> <li>Fre: <I>l' envoyer lui</I> <li>Ger: <I>es ihm schicken</I> <li>Ita: <I>mandare lo gli</I> <li>Nor: <I>å sende det til ham</I> <li>Pol: <I>wysłać do niego je</I> <li>Ron: <I>sã i -l trimită</I> <li>Rus: <I>посылать нему его</I> <li>Spa: <I>mandar lo le</I> <li>Swe: <I>att skicka det till honom</I> <li>Urd: <I>اس كو بھیجنا اس كو</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>mkVP</CODE></TD>
-<TD><A HREF="#VV" TITLE="VV - verb-phrase-complement verb">VV</A> <CODE>-&gt;</CODE> <A HREF="#VP" TITLE="VP - verb phrase">VP</A> <CODE>-&gt;</CODE> <A HREF="#VP" TITLE="VP - verb phrase">VP</A></TD>
-<TD><div class=reveal> <I>to want to sleep</I> <div class=popup> <ul> <li>API: <CODE>mkUtt (mkVP want_VV (mkVP sleep_V))</CODE> <li>Bul: <I>да иска да спи</I> <li>Cat: <I>voler dormir</I> <li>Dan: <I>at ville sove</I> <li>Dut: <I>slapen willen</I> <li>Eng: <I>to want to sleep</I> <li>Fin: <I>tahtoa nukkua</I> <li>Fre: <I>vouloir dormir</I> <li>Ger: <I>schlafen wollen</I> <li>Ita: <I>volere dormire</I> <li>Nor: <I>å ville sove</I> <li>Pol: <I>zechcieć spać</I> <li>Ron: <I>sã vrea sã doarmă</I> <li>Rus: <I>хотеть спать</I> <li>Spa: <I>querer dormir</I> <li>Swe: <I>att vilja sova</I> <li>Urd: <I>چاہنا سونا</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>mkVP</CODE></TD>
-<TD><A HREF="#VS" TITLE="VS - sentence-complement verb">VS</A> <CODE>-&gt;</CODE> <A HREF="#S" TITLE="S - declarative sentence">S</A> <CODE>-&gt;</CODE> <A HREF="#VP" TITLE="VP - verb phrase">VP</A></TD>
-<TD><div class=reveal> <I>to know that she sleeps</I> <div class=popup> <ul> <li>API: <CODE>mkUtt (mkVP know_VS (mkS (mkCl she_NP sleep_V)))</CODE> <li>Bul: <I>да знае , че тя спи</I> <li>Cat: <I>saber que ella dorm</I> <li>Dan: <I>at vide at hun sover</I> <li>Dut: <I>dat ze slaapt weten</I> <li>Eng: <I>to know that she sleeps</I> <li>Fin: <I>tietää että hän nukkuu</I> <li>Fre: <I>savoir qu' elle dort</I> <li>Ger: <I>daß sie schläft wissen</I> <li>Ita: <I>sapere che lei dorme</I> <li>Nor: <I>å vite at hun sover</I> <li>Pol: <I>wiedzieć , że ona śpi</I> <li>Ron: <I>sã ştie cã ea doarme</I> <li>Rus: <I>*</I> <li>Spa: <I>saber que ella duerme</I> <li>Swe: <I>att veta att hon sover</I> <li>Urd: <I>جاننا كہ وہ سوتی ہے</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>mkVP</CODE></TD>
-<TD><A HREF="#VQ" TITLE="VQ - question-complement verb">VQ</A> <CODE>-&gt;</CODE> <A HREF="#QS" TITLE="QS - question">QS</A> <CODE>-&gt;</CODE> <A HREF="#VP" TITLE="VP - verb phrase">VP</A></TD>
-<TD><div class=reveal> <I>to wonder who sleeps</I> <div class=popup> <ul> <li>API: <CODE>mkUtt (mkVP wonder_VQ (mkQS (mkQCl who_IP sleep_V)))</CODE> <li>Bul: <I>да се чуди кой спи</I> <li>Cat: <I>preguntar qui dorm</I> <li>Dan: <I>at undres hvem som sover</I> <li>Dut: <I>wie slaapt afvragen</I> <li>Eng: <I>to wonder who sleeps</I> <li>Fin: <I>ihmetellä kuka nukkuu</I> <li>Fre: <I>étonner qui dort</I> <li>Ger: <I>sich wer schläft wundern</I> <li>Ita: <I>domandare chi dorme</I> <li>Nor: <I>å undre hvem som sover</I> <li>Pol: <I>zastanowić się , kto śpi</I> <li>Ron: <I>sã se întrebe cine doarme</I> <li>Rus: <I>интересовать кто спдит</I> <li>Spa: <I>preguntar quién duerme</I> <li>Swe: <I>att undra vem som sover</I> <li>Urd: <I>حیران ہونا كہ كون سوتا ہے</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>mkVP</CODE></TD>
-<TD><A HREF="#VA" TITLE="VA - adjective-complement verb">VA</A> <CODE>-&gt;</CODE> <A HREF="#AP" TITLE="AP - adjectival phrase">AP</A> <CODE>-&gt;</CODE> <A HREF="#VP" TITLE="VP - verb phrase">VP</A></TD>
-<TD><div class=reveal> <I>to become red</I> <div class=popup> <ul> <li>API: <CODE>mkUtt (mkVP become_VA (mkAP red_A))</CODE> <li>Bul: <I>да стане червено</I> <li>Cat: <I>tornar vermell</I> <li>Dan: <I>at blive rød</I> <li>Dut: <I>rood worden</I> <li>Eng: <I>to become red</I> <li>Fin: <I>tulla punaiseksi</I> <li>Fre: <I>devenir rouge</I> <li>Ger: <I>rot werden</I> <li>Ita: <I>diventare rossa</I> <li>Nor: <I>å bli rød</I> <li>Pol: <I>stać się czerwony</I> <li>Ron: <I>sã devină roşu</I> <li>Rus: <I>стать</I> <li>Spa: <I>convertir roja</I> <li>Swe: <I>att bli röd</I> <li>Urd: <I>بننا لال</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>mkVP</CODE></TD>
-<TD><A HREF="#V2A" TITLE="V2A - verb with NP and AP complement">V2A</A> <CODE>-&gt;</CODE> <A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A> <CODE>-&gt;</CODE> <A HREF="#AP" TITLE="AP - adjectival phrase">AP</A> <CODE>-&gt;</CODE> <A HREF="#VP" TITLE="VP - verb phrase">VP</A></TD>
-<TD><div class=reveal> <I>to paint it red</I> <div class=popup> <ul> <li>API: <CODE>mkUtt (mkVP paint_V2A it_NP (mkAP red_A))</CODE> <li>Bul: <I>да нарисува него червено</I> <li>Cat: <I>pintar ho en vermell</I> <li>Dan: <I>at male det rødt</I> <li>Dut: <I>rood schilderen</I> <li>Eng: <I>to paint it red</I> <li>Fin: <I>maalata sen punaiseksi</I> <li>Fre: <I>le peindre en rouge</I> <li>Ger: <I>es rot malen</I> <li>Ita: <I>dipingere lo rosso</I> <li>Nor: <I>å male det rødt</I> <li>Pol: <I>pomalować je na czerwono</I> <li>Ron: <I>sã îl picteze roşu</I> <li>Rus: <I>рисовать красным его</I> <li>Spa: <I>pintar lo en rojo</I> <li>Swe: <I>att måla det rött</I> <li>Urd: <I>اس كو رنگ كرنا لال</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>mkVP</CODE></TD>
-<TD><A HREF="#V2S" TITLE="V2S - verb with NP and S complement">V2S</A> <CODE>-&gt;</CODE> <A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A> <CODE>-&gt;</CODE> <A HREF="#S" TITLE="S - declarative sentence">S</A> <CODE>-&gt;</CODE> <A HREF="#VP" TITLE="VP - verb phrase">VP</A></TD>
-<TD><div class=reveal> <I>to answer to him that she sleeps</I> <div class=popup> <ul> <li>API: <CODE>mkUtt (mkVP answer_V2S he_NP (mkS (mkCl she_NP sleep_V)))</CODE> <li>Bul: <I>да отговори му , че тя спи</I> <li>Cat: <I>respondre li que ella dorm</I> <li>Dan: <I>at svare til ham at hun sover</I> <li>Dut: <I>dat ze slaapt antwoorden</I> <li>Eng: <I>to answer to him that she sleeps</I> <li>Fin: <I>vastata hänelle että hän nukkuu</I> <li>Fre: <I>répondre lui qu' elle dort</I> <li>Ger: <I>ihm daß sie schläft antworten</I> <li>Ita: <I>rispondere gli che lei dorme</I> <li>Nor: <I>å svare til ham at hun sover</I> <li>Pol: <I>odpowiedzieć jemu , że ona śpi</I> <li>Ron: <I>sã îi răspundă cã ea doarme</I> <li>Rus: <I>отвечать , что она спдит его</I> <li>Spa: <I>responder le que ella duerme</I> <li>Swe: <I>att svara till honom att hon sover</I> <li>Urd: <I>اس كو جواب دینا كہ وہ سوتی ہے</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>mkVP</CODE></TD>
-<TD><A HREF="#V2Q" TITLE="V2Q - verb with NP and Q complement">V2Q</A> <CODE>-&gt;</CODE> <A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A> <CODE>-&gt;</CODE> <A HREF="#QS" TITLE="QS - question">QS</A> <CODE>-&gt;</CODE> <A HREF="#VP" TITLE="VP - verb phrase">VP</A></TD>
-<TD><div class=reveal> <I>to ask him who sleeps</I> <div class=popup> <ul> <li>API: <CODE>mkUtt (mkVP ask_V2Q he_NP (mkQS (mkQCl who_IP sleep_V)))</CODE> <li>Bul: <I>да пита него кой спи</I> <li>Cat: <I>preguntar li qui dorm</I> <li>Dan: <I>at spørge ham hvem som sover</I> <li>Dut: <I>wie slaapt vragen</I> <li>Eng: <I>to ask him who sleeps</I> <li>Fin: <I>kysyä häneltä kuka nukkuu</I> <li>Fre: <I>demander lui qui dort</I> <li>Ger: <I>ihn wer schläft fragen</I> <li>Ita: <I>chiedere gli chi dorme</I> <li>Nor: <I>å spørre ham hvem som sover</I> <li>Pol: <I>spytać jego , kto śpi</I> <li>Ron: <I>sã îl întrebe cine doarme</I> <li>Rus: <I>спрашивать кто спдит его</I> <li>Spa: <I>preguntar le quién duerme</I> <li>Swe: <I>att fråga honom vem som sover</I> <li>Urd: <I>اس سے پوچھنا كہ كون سوتا ہے</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>mkVP</CODE></TD>
-<TD><A HREF="#V2V" TITLE="V2V - verb with NP and V complement">V2V</A> <CODE>-&gt;</CODE> <A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A> <CODE>-&gt;</CODE> <A HREF="#VP" TITLE="VP - verb phrase">VP</A> <CODE>-&gt;</CODE> <A HREF="#VP" TITLE="VP - verb phrase">VP</A></TD>
-<TD><div class=reveal> <I>to beg him to sleep</I> <div class=popup> <ul> <li>API: <CODE>mkUtt (mkVP beg_V2V he_NP (mkVP sleep_V))</CODE> <li>Bul: <I>да моли него да спи</I> <li>Cat: <I>demanar el a dormir</I> <li>Dan: <I>at bede ham at sove</I> <li>Dut: <I>te slapen smeken</I> <li>Eng: <I>to beg him to sleep</I> <li>Fin: <I>pyytää häntä nukkumaan</I> <li>Fre: <I>le demander à dormir</I> <li>Ger: <I>ihn zu schlafen bitten</I> <li>Ita: <I>pregare lo di dormire</I> <li>Nor: <I>å be ham att sove</I> <li>Pol: <I>*</I> <li>Ron: <I>sã îl roage sã doarmă</I> <li>Rus: <I>просить спать его</I> <li>Spa: <I>rogar lo a dormir</I> <li>Swe: <I>att be honom att sova</I> <li>Urd: <I>اس سے التجا كرنا سونے كی</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>mkVP</CODE></TD>
-<TD><A HREF="#A" TITLE="A - one-place adjective">A</A> <CODE>-&gt;</CODE> <A HREF="#VP" TITLE="VP - verb phrase">VP</A></TD>
-<TD><div class=reveal> <I>to be old</I> <div class=popup> <ul> <li>API: <CODE>mkUtt (mkVP old_A)</CODE> <li>Bul: <I>да е старо</I> <li>Cat: <I>ser vell</I> <li>Dan: <I>at være gammel</I> <li>Dut: <I>oud zijn</I> <li>Eng: <I>to be old</I> <li>Fin: <I>olla vanha</I> <li>Fre: <I>être vieille</I> <li>Ger: <I>alt sein</I> <li>Ita: <I>essere vecchia</I> <li>Nor: <I>å være gammel</I> <li>Pol: <I>być stary</I> <li>Ron: <I>sã fie vechi</I> <li>Rus: <I>быть старым</I> <li>Spa: <I>ser vieja</I> <li>Swe: <I>att vara gammal</I> <li>Urd: <I>بوڑھا</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>mkVP</CODE></TD>
-<TD><A HREF="#A" TITLE="A - one-place adjective">A</A> <CODE>-&gt;</CODE> <A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A> <CODE>-&gt;</CODE> <A HREF="#VP" TITLE="VP - verb phrase">VP</A></TD>
-<TD><div class=reveal> <I>to be older than he</I> <div class=popup> <ul> <li>API: <CODE>mkUtt (mkVP old_A he_NP)</CODE> <li>Bul: <I>да е по - старо от него</I> <li>Cat: <I>ser més vell que ell</I> <li>Dan: <I>at være ældre end han</I> <li>Dut: <I>ouder dan hij zijn</I> <li>Eng: <I>to be older than he</I> <li>Fin: <I>olla vanhempi kuin hän</I> <li>Fre: <I>être plus vieille que lui</I> <li>Ger: <I>älter als er sein</I> <li>Ita: <I>essere più vecchia di lui</I> <li>Nor: <I>å være eldre enn han</I> <li>Pol: <I>być starszy niż on</I> <li>Ron: <I>sã fie mai vechi decât el</I> <li>Rus: <I>быть старше него</I> <li>Spa: <I>ser más vieja que él</I> <li>Swe: <I>att vara äldre än han</I> <li>Urd: <I>اس سے بوڑھا</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>mkVP</CODE></TD>
-<TD><A HREF="#A2" TITLE="A2 - two-place adjective">A2</A> <CODE>-&gt;</CODE> <A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A> <CODE>-&gt;</CODE> <A HREF="#VP" TITLE="VP - verb phrase">VP</A></TD>
-<TD><div class=reveal> <I>to be married to him</I> <div class=popup> <ul> <li>API: <CODE>mkUtt (mkVP married_A2 he_NP)</CODE> <li>Bul: <I>да е женено за него</I> <li>Cat: <I>ser casata a ell</I> <li>Dan: <I>at være gift med ham</I> <li>Dut: <I>getrouwd met hem zijn</I> <li>Eng: <I>to be married to him</I> <li>Fin: <I>olla avioitunut hänen kanssa</I> <li>Fre: <I>être mariée à lui</I> <li>Ger: <I>verheiratet mit ihm sein</I> <li>Ita: <I>essere sposata con lui</I> <li>Nor: <I>å være gift med ham</I> <li>Pol: <I>być zaślubiony jemu</I> <li>Ron: <I>sã fie căsătorit cu el</I> <li>Rus: <I>быть замужем за им</I> <li>Spa: <I>ser casada a él</I> <li>Swe: <I>att vara gift med honom</I> <li>Urd: <I>اس سے [شادی كرنa]</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>mkVP</CODE></TD>
-<TD><A HREF="#AP" TITLE="AP - adjectival phrase">AP</A> <CODE>-&gt;</CODE> <A HREF="#VP" TITLE="VP - verb phrase">VP</A></TD>
-<TD><div class=reveal> <I>to be very old</I> <div class=popup> <ul> <li>API: <CODE>mkUtt (mkVP (mkAP very_AdA old_A))</CODE> <li>Bul: <I>да е много старо</I> <li>Cat: <I>ser molt vell</I> <li>Dan: <I>at være meget gammel</I> <li>Dut: <I>erg oud zijn</I> <li>Eng: <I>to be very old</I> <li>Fin: <I>olla erittäin vanha</I> <li>Fre: <I>être très vieille</I> <li>Ger: <I>sehr alt sein</I> <li>Ita: <I>essere molto vecchia</I> <li>Nor: <I>å være mye gammel</I> <li>Pol: <I>być bardzo stary</I> <li>Ron: <I>sã fie foarte vechi</I> <li>Rus: <I>быть очень старым</I> <li>Spa: <I>ser muy vieja</I> <li>Swe: <I>att vara mycket gammal</I> <li>Urd: <I>بہت بوڑھا</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>mkVP</CODE></TD>
-<TD><A HREF="#N" TITLE="N - common noun">N</A> <CODE>-&gt;</CODE> <A HREF="#VP" TITLE="VP - verb phrase">VP</A></TD>
-<TD><div class=reveal> <I>to be a woman</I> <div class=popup> <ul> <li>API: <CODE>mkUtt (mkVP woman_N)</CODE> <li>Bul: <I>да е жена</I> <li>Cat: <I>ser dona</I> <li>Dan: <I>at være en kvinde</I> <li>Dut: <I>vrouw zijn</I> <li>Eng: <I>to be a woman</I> <li>Fin: <I>olla nainen</I> <li>Fre: <I>être femme</I> <li>Ger: <I>eine Frau sein</I> <li>Ita: <I>essere donna</I> <li>Nor: <I>å være ei kvinne</I> <li>Pol: <I>być kobieta</I> <li>Ron: <I>sã fie femeie</I> <li>Rus: <I>быть женщиной</I> <li>Spa: <I>ser mujer</I> <li>Swe: <I>att vara en kvinna</I> <li>Urd: <I>عورت</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>mkVP</CODE></TD>
-<TD><A HREF="#CN" TITLE="CN - common noun (without determiner)">CN</A> <CODE>-&gt;</CODE> <A HREF="#VP" TITLE="VP - verb phrase">VP</A></TD>
-<TD><div class=reveal> <I>to be an old woman</I> <div class=popup> <ul> <li>API: <CODE>mkUtt (mkVP (mkCN old_A woman_N))</CODE> <li>Bul: <I>да е стара жена</I> <li>Cat: <I>ser dona vell</I> <li>Dan: <I>at være en gammel kvinde</I> <li>Dut: <I>oude vrouw zijn</I> <li>Eng: <I>to be an old woman</I> <li>Fin: <I>olla vanha nainen</I> <li>Fre: <I>être vieille femme</I> <li>Ger: <I>eine alte Frau sein</I> <li>Ita: <I>essere vecchia donna</I> <li>Nor: <I>å være ei gammel kvinne</I> <li>Pol: <I>być stara kobieta</I> <li>Ron: <I>sã fie femeie veche</I> <li>Rus: <I>быть старой женщиной</I> <li>Spa: <I>ser vieja mujer</I> <li>Swe: <I>att vara en gammal kvinna</I> <li>Urd: <I>بوڑھی عورت</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>mkVP</CODE></TD>
-<TD><A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A> <CODE>-&gt;</CODE> <A HREF="#VP" TITLE="VP - verb phrase">VP</A></TD>
-<TD><div class=reveal> <I>to be the woman</I> <div class=popup> <ul> <li>API: <CODE>mkUtt (mkVP (mkNP the_Det woman_N))</CODE> <li>Bul: <I>да е жената</I> <li>Cat: <I>ser la dona</I> <li>Dan: <I>at være kvinden</I> <li>Dut: <I>de vrouw zijn</I> <li>Eng: <I>to be the woman</I> <li>Fin: <I>olla nainen</I> <li>Fre: <I>être la femme</I> <li>Ger: <I>die Frau sein</I> <li>Ita: <I>essere la donna</I> <li>Nor: <I>å være kvinna</I> <li>Pol: <I>być kobietą</I> <li>Ron: <I>sã fie femeia</I> <li>Rus: <I>быть женщиной</I> <li>Spa: <I>ser la mujer</I> <li>Swe: <I>att vara kvinnan</I> <li>Urd: <I>عورت</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>mkVP</CODE></TD>
-<TD><A HREF="#Adv" TITLE="Adv - verb-phrase-modifying adverb">Adv</A> <CODE>-&gt;</CODE> <A HREF="#VP" TITLE="VP - verb phrase">VP</A></TD>
-<TD><div class=reveal> <I>to be here</I> <div class=popup> <ul> <li>API: <CODE>mkUtt (mkVP here_Adv)</CODE> <li>Bul: <I>да е тук</I> <li>Cat: <I>ser aquí</I> <li>Dan: <I>at være her</I> <li>Dut: <I>hier zijn</I> <li>Eng: <I>to be here</I> <li>Fin: <I>olla täällä</I> <li>Fre: <I>être ici</I> <li>Ger: <I>hier sein</I> <li>Ita: <I>essere quà</I> <li>Nor: <I>å være her</I> <li>Pol: <I>być tutaj</I> <li>Ron: <I>sã fie aici</I> <li>Rus: <I>быть здесь</I> <li>Spa: <I>ser aquí</I> <li>Swe: <I>att vara här</I> <li>Urd: <I>یہاں</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>mkVP</CODE></TD>
-<TD><A HREF="#VP" TITLE="VP - verb phrase">VP</A> <CODE>-&gt;</CODE> <A HREF="#Adv" TITLE="Adv - verb-phrase-modifying adverb">Adv</A> <CODE>-&gt;</CODE> <A HREF="#VP" TITLE="VP - verb phrase">VP</A></TD>
-<TD><div class=reveal> <I>to sleep here</I> <div class=popup> <ul> <li>API: <CODE>mkUtt (mkVP (mkVP sleep_V) here_Adv)</CODE> <li>Bul: <I>да спи тук</I> <li>Cat: <I>dormir aquí</I> <li>Dan: <I>at sove her</I> <li>Dut: <I>hier slapen</I> <li>Eng: <I>to sleep here</I> <li>Fin: <I>nukkua täällä</I> <li>Fre: <I>dormir ici</I> <li>Ger: <I>hier schlafen</I> <li>Ita: <I>dormire quà</I> <li>Nor: <I>å sove her</I> <li>Pol: <I>tutaj spać</I> <li>Ron: <I>sã doarmă aici</I> <li>Rus: <I>спать</I> <li>Spa: <I>dormir aquí</I> <li>Swe: <I>att sova här</I> <li>Urd: <I>سونا یہاں</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>mkVP</CODE></TD>
-<TD><A HREF="#AdV" TITLE="Adv - verb-phrase-modifying adverb">AdV</A> <CODE>-&gt;</CODE> <A HREF="#VP" TITLE="VP - verb phrase">VP</A> <CODE>-&gt;</CODE> <A HREF="#VP" TITLE="VP - verb phrase">VP</A></TD>
-<TD><div class=reveal> <I>always to sleep</I> <div class=popup> <ul> <li>API: <CODE>mkUtt (mkVP always_AdV (mkVP sleep_V))</CODE> <li>Bul: <I>винаги да спи</I> <li>Cat: <I>dormir sempre</I> <li>Dan: <I>at altid sove</I> <li>Dut: <I>altijd slapen</I> <li>Eng: <I>always to sleep</I> <li>Fin: <I>nukkua aina</I> <li>Fre: <I>dormir toujours</I> <li>Ger: <I>immer schlafen</I> <li>Ita: <I>dormire sempre</I> <li>Nor: <I>å altid sove</I> <li>Pol: <I>zawsze spać</I> <li>Ron: <I>sã doarmă mereu</I> <li>Rus: <I>спать</I> <li>Spa: <I>dormir siempre</I> <li>Swe: <I>att alltid sova</I> <li>Urd: <I>ہمیشہ سونا</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>mkVP</CODE></TD>
-<TD><A HREF="#VPSlash" TITLE="VPSlash - verb phrase missing complement">VPSlash</A> <CODE>-&gt;</CODE> <A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A> <CODE>-&gt;</CODE> <A HREF="#VP" TITLE="VP - verb phrase">VP</A></TD>
-<TD><div class=reveal> <I>to paint it black</I> <div class=popup> <ul> <li>API: <CODE>mkUtt (mkVP (mkVPSlash paint_V2A (mkAP black_A)) it_NP)</CODE> <li>Bul: <I>да нарисува него черно</I> <li>Cat: <I>pintar ho en negre</I> <li>Dan: <I>at male det sort</I> <li>Dut: <I>zwart schilderen</I> <li>Eng: <I>to paint it black</I> <li>Fin: <I>maalata sen mustaksi</I> <li>Fre: <I>le peindre en noir</I> <li>Ger: <I>es schwarz malen</I> <li>Ita: <I>dipingere lo nero</I> <li>Nor: <I>å male det svart</I> <li>Pol: <I>pomalować je na czarno</I> <li>Ron: <I>sã îl picteze negru</I> <li>Rus: <I>рисовать чёрным его</I> <li>Spa: <I>pintar lo en negro</I> <li>Swe: <I>att måla det svart</I> <li>Urd: <I>اس كو رنگ كرنا كالا</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>mkVP</CODE></TD>
-<TD><A HREF="#VPSlash" TITLE="VPSlash - verb phrase missing complement">VPSlash</A> <CODE>-&gt;</CODE> <A HREF="#VP" TITLE="VP - verb phrase">VP</A></TD>
-<TD><div class=reveal> <I>to paint itself black</I> <div class=popup> <ul> <li>API: <CODE>mkUtt (reflexiveVP (mkVPSlash paint_V2A (mkAP black_A)))</CODE> <li>Bul: <I>да се нарисува черно</I> <li>Cat: <I>pintar en negre</I> <li>Dan: <I>at male sig sort</I> <li>Dut: <I>zich zwart schilderen</I> <li>Eng: <I>to paint itself black</I> <li>Fin: <I>maalata itsensä mustaksi</I> <li>Fre: <I>peindre en noir</I> <li>Ger: <I>sich schwarz malen</I> <li>Ita: <I>dipingere nero</I> <li>Nor: <I>å male seg svart</I> <li>Pol: <I>pomalować siebie na czarno</I> <li>Ron: <I>sã se picteze negru</I> <li>Rus: <I>рисовать чёрным себя</I> <li>Spa: <I>pintar en negro</I> <li>Swe: <I>att måla sig svart</I> <li>Urd: <I>رنگ كرنا خود كو كالا</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>mkVP</CODE></TD>
-<TD><A HREF="#Comp" TITLE="Comp - complement of copula, such as AP">Comp</A> <CODE>-&gt;</CODE> <A HREF="#VP" TITLE="VP - verb phrase">VP</A></TD>
-<TD><div class=reveal> <I>to be warm</I> <div class=popup> <ul> <li>API: <CODE>mkUtt (mkVP (mkComp (mkAP warm_A)))</CODE> <li>Bul: <I>да е топло</I> <li>Cat: <I>ser tebia</I> <li>Dan: <I>at være varm</I> <li>Dut: <I>warm zijn</I> <li>Eng: <I>to be warm</I> <li>Fin: <I>olla lämmin</I> <li>Fre: <I>être chaude</I> <li>Ger: <I>warm sein</I> <li>Ita: <I>essere calda</I> <li>Nor: <I>å være varm</I> <li>Pol: <I>być ciepły</I> <li>Ron: <I>sã fie călduţ</I> <li>Rus: <I>быть тёплым</I> <li>Spa: <I>ser tibia</I> <li>Swe: <I>att vara varm</I> <li>Urd: <I>گرم</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>passiveVP</CODE></TD>
-<TD><A HREF="#V2" TITLE="V2 - two-place verb">V2</A> <CODE>-&gt;</CODE> <A HREF="#VP" TITLE="VP - verb phrase">VP</A></TD>
-<TD><div class=reveal> <I>to be loved</I> <div class=popup> <ul> <li>API: <CODE>mkUtt (passiveVP love_V2)</CODE> <li>Bul: <I>да е обичано</I> <li>Cat: <I>ser estimada</I> <li>Dan: <I>at blive elsket</I> <li>Dut: <I>liefgehad worden</I> <li>Eng: <I>to be loved</I> <li>Fin: <I>rakastetaan</I> <li>Fre: <I>être aimée</I> <li>Ger: <I>geliebt werden</I> <li>Ita: <I>venire amata</I> <li>Nor: <I>å bli elska</I> <li>Pol: <I>być kochany</I> <li>Ron: <I>sã fie iubit</I> <li>Rus: <I>любиться</I> <li>Spa: <I>ser amada</I> <li>Swe: <I>att bli älskad</I> <li>Urd: <I>پیار كرنا</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>passiveVP</CODE></TD>
-<TD><A HREF="#V2" TITLE="V2 - two-place verb">V2</A> <CODE>-&gt;</CODE> <A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A> <CODE>-&gt;</CODE> <A HREF="#VP" TITLE="VP - verb phrase">VP</A></TD>
-<TD><div class=reveal> <I>to be loved by her</I> <div class=popup> <ul> <li>API: <CODE>mkUtt (passiveVP love_V2 she_NP)</CODE> <li>Bul: <I>да е обичано чрез нея</I> <li>Cat: <I>ser estimada per ella</I> <li>Dan: <I>at blive elsket af hende</I> <li>Dut: <I>door haar liefgehad worden</I> <li>Eng: <I>to be loved by her</I> <li>Fin: <I>rakastetaan hänen toimesta</I> <li>Fre: <I>être aimée par elle</I> <li>Ger: <I>durch sie geliebt werden</I> <li>Ita: <I>venire amata da lei</I> <li>Nor: <I>å bli elska av henne</I> <li>Pol: <I>przez nią być kochany</I> <li>Ron: <I>sã fie iubit de către ea</I> <li>Rus: <I>любиться</I> <li>Spa: <I>ser amada por ella</I> <li>Swe: <I>att bli älskad av henne</I> <li>Urd: <I>پیار كرنا اس</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>progressiveVP</CODE></TD>
-<TD><A HREF="#VP" TITLE="VP - verb phrase">VP</A> <CODE>-&gt;</CODE> <A HREF="#VP" TITLE="VP - verb phrase">VP</A></TD>
-<TD><div class=reveal> <I>to be sleeping</I> <div class=popup> <ul> <li>API: <CODE>mkUtt (progressiveVP (mkVP sleep_V))</CODE> <li>Bul: <I>да спи</I> <li>Cat: <I>estar dormint</I> <li>Dan: <I>at være ved å sove</I> <li>Dut: <I>aan het slapen zijn</I> <li>Eng: <I>to be sleeping</I> <li>Fin: <I>olla nukkumassa</I> <li>Fre: <I>être en train de dormir</I> <li>Ger: <I>eben schlafen</I> <li>Ita: <I>stare dormendo</I> <li>Nor: <I>å være ved å sove</I> <li>Pol: <I>spać</I> <li>Ron: <I>sã doarmă</I> <li>Rus: <I>спать</I> <li>Spa: <I>estar durmiendo</I> <li>Swe: <I>att hålla på att sova</I> <li>Urd: <I>سونا</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>reflexiveVP</CODE></TD>
-<TD><A HREF="#V2" TITLE="V2 - two-place verb">V2</A> <CODE>-&gt;</CODE> <A HREF="#VP" TITLE="VP - verb phrase">VP</A></TD>
-<TD><div class=reveal> <I>to love itself</I> <div class=popup> <ul> <li>API: <CODE>mkUtt (reflexiveVP love_V2)</CODE> <li>Bul: <I>да се обича</I> <li>Cat: <I>estimar</I> <li>Dan: <I>at elske sig</I> <li>Dut: <I>zich liefhebben</I> <li>Eng: <I>to love itself</I> <li>Fin: <I>rakastaa itseänsä</I> <li>Fre: <I>aimer</I> <li>Ger: <I>sich lieben</I> <li>Ita: <I>amare</I> <li>Nor: <I>å elske seg</I> <li>Pol: <I>kochać siebie</I> <li>Ron: <I>sã se iubească</I> <li>Rus: <I>любить себя</I> <li>Spa: <I>amar</I> <li>Swe: <I>att älska sig</I> <li>Urd: <I>پیار كرنا خود كو</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>reflexiveVP</CODE></TD>
-<TD><A HREF="#VPSlash" TITLE="VPSlash - verb phrase missing complement">VPSlash</A> <CODE>-&gt;</CODE> <A HREF="#VP" TITLE="VP - verb phrase">VP</A></TD>
-<TD><I>paint itself black</I></TD>
-</TR>
-</TABLE>
-
-<A NAME="VPSlash"></A>
-<H2>VPSlash - verb phrase missing complement</H2>
-<TABLE BORDER="1" CELLPADDING="4">
-<TR>
-<TH>Function</TH>
-<TH>Type</TH>
-<TH COLSPAN="2">Example</TH>
-</TR>
-<TR>
-<TD><CODE>mkVPSlash</CODE></TD>
-<TD><A HREF="#V2" TITLE="V2 - two-place verb">V2</A> <CODE>-&gt;</CODE> <A HREF="#VPSlash" TITLE="VPSlash - verb phrase missing complement">VPSlash</A></TD>
-<TD><div class=reveal> <I>whom does she see</I> <div class=popup> <ul> <li>API: <CODE>mkQCl who_IP (mkClSlash she_NP (mkVPSlash see_V2))</CODE> <li>Bul: <I>кого вижда тя</I> <li>Cat: <I>qui veu ella</I> <li>Dan: <I>hvem ser hun</I> <li>Dut: <I>wie zit ze</I> <li>Eng: <I>whom does she see</I> <li>Fin: <I>kenet hän näkee</I> <li>Fre: <I>qui voit elle</I> <li>Ger: <I>wen sieht sie</I> <li>Ita: <I>chi vede lei</I> <li>Nor: <I>hvem ser hun</I> <li>Pol: <I>kogo widzi ona</I> <li>Ron: <I>pe cine vede ea</I> <li>Rus: <I>кого она видит</I> <li>Spa: <I>quién ve ella</I> <li>Swe: <I>vem ser hon</I> <li>Urd: <I>كون وہ دیكھتی ہے</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>mkVPSlash</CODE></TD>
-<TD><A HREF="#V3" TITLE="V3 - three-place verb">V3</A> <CODE>-&gt;</CODE> <A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A> <CODE>-&gt;</CODE> <A HREF="#VPSlash" TITLE="VPSlash - verb phrase missing complement">VPSlash</A></TD>
-<TD><div class=reveal> <I>to whom does she send it</I> <div class=popup> <ul> <li>API: <CODE>mkQCl who_IP (mkClSlash she_NP (mkVPSlash send_V3 it_NP))</CODE> <li>Bul: <I>до кого праща него тя</I> <li>Cat: <I>a qui ho envia ella</I> <li>Dan: <I>til hvem sender hun det</I> <li>Dut: <I>naar wie stuurt ze het</I> <li>Eng: <I>to whom does she send it</I> <li>Fin: <I>kenelle hän lähettää sen</I> <li>Fre: <I>à qui l' envoie elle</I> <li>Ger: <I>wem schickt sie es</I> <li>Ita: <I>a chi lo manda lei</I> <li>Nor: <I>til hvem sender hun det</I> <li>Pol: <I>do kogo ona wysyła je</I> <li>Ron: <I>cui îl trimite ea</I> <li>Rus: <I>кому она посылает его</I> <li>Spa: <I>a quién lo manda ella</I> <li>Swe: <I>till vem skickar hon det</I> <li>Urd: <I>كون وہ اس كو بھیجتی ہے</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>mkVPSlash</CODE></TD>
-<TD><A HREF="#V2A" TITLE="V2A - verb with NP and AP complement">V2A</A> <CODE>-&gt;</CODE> <A HREF="#AP" TITLE="AP - adjectival phrase">AP</A> <CODE>-&gt;</CODE> <A HREF="#VPSlash" TITLE="VPSlash - verb phrase missing complement">VPSlash</A></TD>
-<TD><div class=reveal> <I>whom does she paint red</I> <div class=popup> <ul> <li>API: <CODE>mkQCl who_IP (mkClSlash she_NP (mkVPSlash paint_V2A (mkAP red_A)))</CODE> <li>Bul: <I>кого рисува червен тя</I> <li>Cat: <I>qui pinta ella en vermell</I> <li>Dan: <I>hvem maler hun rød</I> <li>Dut: <I>wie schildeert ze rood</I> <li>Eng: <I>whom does she paint red</I> <li>Fin: <I>kenet hän maalaa punaiseksi</I> <li>Fre: <I>qui peint elle en rouge</I> <li>Ger: <I>wen malt sie rot</I> <li>Ita: <I>chi dipinge lei rosso</I> <li>Nor: <I>hvem maler hun rød</I> <li>Pol: <I>kogo ona maluje na czerwono</I> <li>Ron: <I>pe cine pictează ea roşu</I> <li>Rus: <I>кого она рисует красным</I> <li>Spa: <I>quién pinta ella en rojo</I> <li>Swe: <I>vem målar hon röd</I> <li>Urd: <I>كون وہ لال رنگ كرتی ہے</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>mkVPSlash</CODE></TD>
-<TD><A HREF="#V2Q" TITLE="V2Q - verb with NP and Q complement">V2Q</A> <CODE>-&gt;</CODE> <A HREF="#QS" TITLE="QS - question">QS</A> <CODE>-&gt;</CODE> <A HREF="#VPSlash" TITLE="VPSlash - verb phrase missing complement">VPSlash</A></TD>
-<TD><div class=reveal> <I>atomic term where_Idv</I> <div class=popup> <ul> <li>API: <CODE>mkQCl who_IP (mkClSlash she_NP (mkVPSlash ask_V2Q (mkQS (mkQCl where_Idv (mkCl i_NP sleep_V)))))</CODE> <li>Bul: <I>*</I> <li>Cat: <I>*</I> <li>Dan: <I>*</I> <li>Dut: <I>*</I> <li>Eng: <I>*</I> <li>Fin: <I>*</I> <li>Fre: <I>*</I> <li>Ger: <I>*</I> <li>Ita: <I>*</I> <li>Nor: <I>*</I> <li>Pol: <I>*</I> <li>Ron: <I>*</I> <li>Rus: <I>*</I> <li>Spa: <I>*</I> <li>Swe: <I>*</I> <li>Urd: <I>*</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>mkVPSlash</CODE></TD>
-<TD><A HREF="#V2S" TITLE="V2S - verb with NP and S complement">V2S</A> <CODE>-&gt;</CODE> <A HREF="#S" TITLE="S - declarative sentence">S</A> <CODE>-&gt;</CODE> <A HREF="#VPSlash" TITLE="VPSlash - verb phrase missing complement">VPSlash</A></TD>
-<TD><div class=reveal> <I>to whom does she answer that I sleep</I> <div class=popup> <ul> <li>API: <CODE>mkQCl who_IP (mkClSlash she_NP (mkVPSlash answer_V2S (mkS (mkCl i_NP sleep_V))))</CODE> <li>Bul: <I>на на кого отговаря , че аз спя тя</I> <li>Cat: <I>a qui respon ella que jo dormo</I> <li>Dan: <I>til hvem svarer hun at jeg sover</I> <li>Dut: <I>wie antwoordt ze dat ik slaap</I> <li>Eng: <I>to whom does she answer that I sleep</I> <li>Fin: <I>kenelle hän vastaa että minä nukun</I> <li>Fre: <I>à qui répond elle que je dors</I> <li>Ger: <I>wem antwortet sie daß ich schlafe</I> <li>Ita: <I>a chi risponde lei che io dormo</I> <li>Nor: <I>til hvem svarer hun at jeg sover</I> <li>Pol: <I>komu ona odpowiada , że ja śpię</I> <li>Ron: <I>cui răspunde ea cã eu dorm</I> <li>Rus: <I>кого она отвечает , что я сплю</I> <li>Spa: <I>a quién responde ella que yo duermo</I> <li>Swe: <I>till vem svarar hon att jag sover</I> <li>Urd: <I>كون وہ جواب دیتی ہے كہ میں سوتا ہوں</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>mkVPSlash</CODE></TD>
-<TD><A HREF="#V2V" TITLE="V2V - verb with NP and V complement">V2V</A> <CODE>-&gt;</CODE> <A HREF="#VP" TITLE="VP - verb phrase">VP</A> <CODE>-&gt;</CODE> <A HREF="#VPSlash" TITLE="VPSlash - verb phrase missing complement">VPSlash</A></TD>
-<TD><div class=reveal> <I>whom does she beg to sleep</I> <div class=popup> <ul> <li>API: <CODE>mkQCl who_IP (mkClSlash she_NP (mkVPSlash beg_V2V (mkVP sleep_V)))</CODE> <li>Bul: <I>кого моли да спи тя</I> <li>Cat: <I>qui demana ella a dormir</I> <li>Dan: <I>hvem beder hun at sove</I> <li>Dut: <I>wie smeekt ze te slapen</I> <li>Eng: <I>whom does she beg to sleep</I> <li>Fin: <I>ketä hän pyytää nukkumaan</I> <li>Fre: <I>qui demande elle à dormir</I> <li>Ger: <I>wen bittet sie zu schlafen</I> <li>Ita: <I>chi prega lei di dormire</I> <li>Nor: <I>hvem ber hun att sove</I> <li>Pol: <I>*</I> <li>Ron: <I>pe cine roagă ea sã doarmă</I> <li>Rus: <I>кого она просит спать</I> <li>Spa: <I>quién roga ella a dormir</I> <li>Swe: <I>vem ber hon att sova</I> <li>Urd: <I>كون وہ سونے كی التجا كرتی ہے</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>mkVPSlash</CODE></TD>
-<TD><A HREF="#VV" TITLE="VV - verb-phrase-complement verb">VV</A> <CODE>-&gt;</CODE> <A HREF="#VPSlash" TITLE="VPSlash - verb phrase missing complement">VPSlash</A> <CODE>-&gt;</CODE> <A HREF="#VPSlash" TITLE="VPSlash - verb phrase missing complement">VPSlash</A></TD>
-<TD><div class=reveal> <I>whom does she want to see</I> <div class=popup> <ul> <li>API: <CODE>mkQCl who_IP (mkClSlash she_NP (mkVPSlash want_VV (mkVPSlash see_V2)))</CODE> <li>Bul: <I>кого иска да види тя</I> <li>Cat: <I>qui vol ella veure</I> <li>Dan: <I>hvem vil hun se</I> <li>Dut: <I>wie wil ze zien</I> <li>Eng: <I>whom does she want to see</I> <li>Fin: <I>kenet hän tahtoo nähdä</I> <li>Fre: <I>qui veut elle voir</I> <li>Ger: <I>wen will sie sehen</I> <li>Ita: <I>chi vuole lei vedere</I> <li>Nor: <I>hvem vil hun se</I> <li>Pol: <I>kogo ona chce widzieć</I> <li>Ron: <I>pe cine vrea ea sã vadă</I> <li>Rus: <I>кого она хоччет видеть</I> <li>Spa: <I>quién quiere ella ver</I> <li>Swe: <I>vem vill hon se</I> <li>Urd: <I>كون وہ دیكھنا چاہتی ہے</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>mkVPSlash</CODE></TD>
-<TD><A HREF="#V2V" TITLE="V2V - verb with NP and V complement">V2V</A> <CODE>-&gt;</CODE> <A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A> <CODE>-&gt;</CODE> <A HREF="#VPSlash" TITLE="VPSlash - verb phrase missing complement">VPSlash</A> <CODE>-&gt;</CODE> <A HREF="#VPSlash" TITLE="VPSlash - verb phrase missing complement">VPSlash</A></TD>
-<TD><div class=reveal> <I>whom does she beg me to see</I> <div class=popup> <ul> <li>API: <CODE>mkQCl who_IP (mkClSlash she_NP (mkVPSlash beg_V2V i_NP (mkVPSlash see_V2)))</CODE> <li>Bul: <I>кого моли мен да видя тя</I> <li>Cat: <I>qui em demana ella a veure</I> <li>Dan: <I>hvem beder hun mig at se</I> <li>Dut: <I>wie smeekt ze me te zien</I> <li>Eng: <I>whom does she beg me to see</I> <li>Fin: <I>kenet hän pyytää minua näkemään</I> <li>Fre: <I>qui me demande elle à voir</I> <li>Ger: <I>wen bittet sie mich zu sehen</I> <li>Ita: <I>chi mi prega lei di vedere</I> <li>Nor: <I>hvem ber hun meg att se</I> <li>Pol: <I>*</I> <li>Ron: <I>pe cine mă roagă ea sã văd</I> <li>Rus: <I>кого она просит меня видеть</I> <li>Spa: <I>quién me roga ella a ver</I> <li>Swe: <I>vem ber hon mig att se</I> <li>Urd: <I>كون وہ مجھ سے دیكھنا التجا كرتی ہے</I> </ul> </div> </div></TD>
-</TR>
-</TABLE>
-
-<A NAME="VQ"></A>
-<H2>VQ - question-complement verb</H2>
-<P>
-Lexical category, constructors given in
-<A HREF="#RParadigms">lexical paradigms</A>.
-</P>
-<A NAME="VS"></A>
-<H2>VS - sentence-complement verb</H2>
-<P>
-Lexical category, constructors given in
-<A HREF="#RParadigms">lexical paradigms</A>.
-</P>
-<A NAME="VV"></A>
-<H2>VV - verb-phrase-complement verb</H2>
-<TABLE BORDER="1" CELLPADDING="4">
-<TR>
-<TH>Function</TH>
-<TH>Type</TH>
-<TH COLSPAN="2">Example</TH>
-</TR>
-<TR>
-<TD><CODE>can8know_VV</CODE></TD>
-<TD><A HREF="#VV" TITLE="VV - verb-phrase-complement verb">VV</A></TD>
-<TD><div class=reveal> <I>to be able to sleep</I> <div class=popup> <ul> <li>API: <CODE>mkUtt (mkVP can8know_VV (mkVP sleep_V))</CODE> <li>Bul: <I>да може да спи</I> <li>Cat: <I>saber dormir</I> <li>Dan: <I>at kunne sove</I> <li>Dut: <I>slapen kunnen</I> <li>Eng: <I>to be able to sleep</I> <li>Fin: <I>osata nukkua</I> <li>Fre: <I>savoir dormir</I> <li>Ger: <I>schlafen können</I> <li>Ita: <I>sapere dormire</I> <li>Nor: <I>å kunne sove</I> <li>Pol: <I>umieć spać</I> <li>Ron: <I>sã poată sã doarmă</I> <li>Rus: <I>мочь спать</I> <li>Spa: <I>saber dormir</I> <li>Swe: <I>att kunna sova</I> <li>Urd: <I>سكنا سوئیں</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>can_VV</CODE></TD>
-<TD><A HREF="#VV" TITLE="VV - verb-phrase-complement verb">VV</A></TD>
-<TD><div class=reveal> <I>to be able to sleep</I> <div class=popup> <ul> <li>API: <CODE>mkUtt (mkVP can_VV (mkVP sleep_V))</CODE> <li>Bul: <I>да може да спи</I> <li>Cat: <I>poder dormir</I> <li>Dan: <I>at kunne sove</I> <li>Dut: <I>slapen kunnen</I> <li>Eng: <I>to be able to sleep</I> <li>Fin: <I>voida nukkua</I> <li>Fre: <I>pouvoir dormir</I> <li>Ger: <I>schlafen können</I> <li>Ita: <I>potere dormire</I> <li>Nor: <I>å kunne sove</I> <li>Pol: <I>móc spać</I> <li>Ron: <I>sã poată sã doarmă</I> <li>Rus: <I>мочь спать</I> <li>Spa: <I>poder dormir</I> <li>Swe: <I>att kunna sova</I> <li>Urd: <I>سكنا سوئیں</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>must_VV</CODE></TD>
-<TD><A HREF="#VV" TITLE="VV - verb-phrase-complement verb">VV</A></TD>
-<TD><div class=reveal> <I>have to</I> <div class=popup> <ul> <li>API: <CODE>must_VV</CODE> <li>Bul: <I>трябва</I> <li>Cat: <I>haver</I> <li>Dan: <I>må</I> <li>Dut: <I>moeten</I> <li>Eng: <I>have to</I> <li>Fin: <I>täytyä</I> <li>Fre: <I>devoir</I> <li>Ger: <I>zu müssen</I> <li>Ita: <I>dover</I> <li>Nor: <I>må</I> <li>Pol: <I>ResPol.Imperfective</I> <li>Ron: <I>trebui</I> <li>Rus: <I>должен</I> <li>Spa: <I>deber</I> <li>Swe: <I>måste</I> <li>Urd: <I>*</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>want_VV</CODE></TD>
-<TD><A HREF="#VV" TITLE="VV - verb-phrase-complement verb">VV</A></TD>
-<TD><div class=reveal> <I>want</I> <div class=popup> <ul> <li>API: <CODE>want_VV</CODE> <li>Bul: <I>искам</I> <li>Cat: <I>voler</I> <li>Dan: <I>vil</I> <li>Dut: <I>willen</I> <li>Eng: <I>want</I> <li>Fin: <I>tahtoa</I> <li>Fre: <I>vouloir</I> <li>Ger: <I>zu wollen</I> <li>Ita: <I>voler</I> <li>Nor: <I>vil</I> <li>Pol: <I>ResPol.Dual</I> <li>Ron: <I>vrea</I> <li>Rus: <I>хочу</I> <li>Spa: <I>querer</I> <li>Swe: <I>vill</I> <li>Urd: <I>چاہوں</I> </ul> </div> </div></TD>
-</TR>
-</TABLE>
-
-<A NAME="Voc"></A>
-<H2>Voc - vocative or "please"</H2>
-<TABLE BORDER="1" CELLPADDING="4">
-<TR>
-<TH>Function</TH>
-<TH>Type</TH>
-<TH COLSPAN="2">Example</TH>
-</TR>
-<TR>
-<TD><CODE>mkVoc</CODE></TD>
-<TD><A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A> <CODE>-&gt;</CODE> <A HREF="#Voc" TITLE="Voc - vocative or "please"">Voc</A></TD>
-<TD><div class=reveal> <I>yes , my friend</I> <div class=popup> <ul> <li>API: <CODE>mkPhr yes_Utt (mkVoc (mkNP i_Pron friend_N))</CODE> <li>Bul: <I>да , мой приятелю</I> <li>Cat: <I>sí , el meu amic</I> <li>Dan: <I>ja , min ven</I> <li>Dut: <I>ja , mijn vriend</I> <li>Eng: <I>yes , my friend</I> <li>Fin: <I>kyllä , minun ystäväni</I> <li>Fre: <I>oui , mon ami</I> <li>Ger: <I>ja , mein Freund</I> <li>Ita: <I>sì , il mio amico</I> <li>Nor: <I>ja , min venn</I> <li>Pol: <I>tak , mój przyjacielu</I> <li>Ron: <I>da , prietenul meu</I> <li>Rus: <I>Да , мой друг</I> <li>Spa: <I>sí , mi amigo</I> <li>Swe: <I>ja , min vän</I> <li>Urd: <I>ہاں میرا دوست</I> </ul> </div> </div></TD>
-</TR>
-<TR>
-<TD><CODE>please_Voc</CODE></TD>
-<TD><A HREF="#Voc" TITLE="Voc - vocative or "please"">Voc</A></TD>
-<TD><div class=reveal> <I>please</I> <div class=popup> <ul> <li>API: <CODE>please_Voc</CODE> <li>Bul: <I>моля</I> <li>Cat: <I>sisplau</I> <li>Dan: <I>tak</I> <li>Dut: <I>alsjeblieft</I> <li>Eng: <I>please</I> <li>Fin: <I>ole hyvä</I> <li>Fre: <I>s'il vous plaît</I> <li>Ger: <I>bitte</I> <li>Ita: <I>per favore</I> <li>Nor: <I>takk</I> <li>Pol: <I>proszę</I> <li>Ron: <I>vă rog</I> <li>Rus: <I>пожалуйста</I> <li>Spa: <I>por favor</I> <li>Swe: <I>tack</I> <li>Urd: <I>مہربانی</I> </ul> </div> </div></TD>
-</TR>
-</TABLE>
-
-<A NAME="toc83"></A>
-<H1>Lexical Paradigms</H1>
-<A NAME="toc84"></A>
-<H2>Paradigms for Bulgarian</H2>
-<P>
-<a name="RParadigms"></a>
-</P>
-<P>
-source <A HREF="http://www.grammaticalframework.org/lib/src/bulgarian/ParadigmsBul.gf"><CODE>../src/bulgarian/ParadigmsBul.gf</CODE></A>
-</P>
-<TABLE BORDER="1" CELLPADDING="4">
-<TR>
-<TH>Function</TH>
-<TH>Type</TH>
-<TH COLSPAN="2">Explanation</TH>
-</TR>
-<TR>
-<TD><CODE>mkN001</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
-<TD><I>numbers refer to Krustev, Bulg. Morph. in 187 Tables</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkN002</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkN002a</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkN003</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkN004</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkN005</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkN006</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkN007</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkN007b</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkN007a</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkN008</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkN008b</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkN008c</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkN008a</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkN009</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkN009a</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkN010</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkN011</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkN012</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkN013</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkN014</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkN014a</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkN015</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkN015a</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkN016</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkN016a</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkN017</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkN018</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkN018a</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkN019</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkN019a</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkN020</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkN021</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkN022</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkN023</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkN024a</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkN024</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkN025</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkN026</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkN027</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkN028</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkN028a</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkN029</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkN030</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkN031</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkN031a</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkN032</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkN032a</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkN033</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkN034</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkN035</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkN035a</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkN036</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkN037</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkN038</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkN039</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkN040</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkN040a</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkN041</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkN041a</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkN041b</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkN042</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkN043</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkN043a</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkN044</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkN045</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkN046</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkN047</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkN048</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkN049</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkN050</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkN051</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkN052</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkN052a</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkN053</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkN054</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkN055</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkN056</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkN057</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkN057a</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkN058</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkN059</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkN060</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkN061</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkN062</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkN063</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkN064</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkN065</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkN066</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkN067</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkN068</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkN069</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkN070</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkN071</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkN072</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkN073</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkN074</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkN075</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkA076</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#A" TITLE="A - one-place adjective">A</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkA077</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#A" TITLE="A - one-place adjective">A</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkA078</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#A" TITLE="A - one-place adjective">A</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkA079</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#A" TITLE="A - one-place adjective">A</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkA080</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#A" TITLE="A - one-place adjective">A</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkA081</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#A" TITLE="A - one-place adjective">A</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkA082</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#A" TITLE="A - one-place adjective">A</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkA082a</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#A" TITLE="A - one-place adjective">A</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkA083</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#A" TITLE="A - one-place adjective">A</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkA084</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#A" TITLE="A - one-place adjective">A</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkA084a</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#A" TITLE="A - one-place adjective">A</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkA085</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#A" TITLE="A - one-place adjective">A</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkA086</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#A" TITLE="A - one-place adjective">A</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkA087</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#A" TITLE="A - one-place adjective">A</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkA088</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#A" TITLE="A - one-place adjective">A</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkA089a</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#A" TITLE="A - one-place adjective">A</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkV142</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#VTable">VTable</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkV143</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#VTable">VTable</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkV144</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#VTable">VTable</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkV145</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#VTable">VTable</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkV145a</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#VTable">VTable</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkV145b</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#VTable">VTable</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkV146</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#VTable">VTable</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkV146a</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#VTable">VTable</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkV147</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#VTable">VTable</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkV148</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#VTable">VTable</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkV149</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#VTable">VTable</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkV150</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#VTable">VTable</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkV150a</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#VTable">VTable</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkV151</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#VTable">VTable</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkV152</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#VTable">VTable</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkV152a</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#VTable">VTable</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkV153</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#VTable">VTable</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkV154</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#VTable">VTable</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkV155</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#VTable">VTable</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkV156</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#VTable">VTable</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkV157</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#VTable">VTable</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkV158</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#VTable">VTable</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkV159</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#VTable">VTable</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkV160</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#VTable">VTable</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkV160a</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#VTable">VTable</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkV161</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#VTable">VTable</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkV161a</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#VTable">VTable</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkV162</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#VTable">VTable</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkV163</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#VTable">VTable</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkV164</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#VTable">VTable</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkV165</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#VTable">VTable</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkV166</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#VTable">VTable</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkV167</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#VTable">VTable</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkV168</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#VTable">VTable</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkV169</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#VTable">VTable</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkV170</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#VTable">VTable</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkV171</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#VTable">VTable</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkV172</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#VTable">VTable</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkV173</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#VTable">VTable</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkV174</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#VTable">VTable</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkV175</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#VTable">VTable</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkV176</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#VTable">VTable</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkV177</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#VTable">VTable</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkV178</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#VTable">VTable</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkV179</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#VTable">VTable</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkV180</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#VTable">VTable</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkV181</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#VTable">VTable</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkV182</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#VTable">VTable</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkV183</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#VTable">VTable</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkV184</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#VTable">VTable</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkV185</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#VTable">VTable</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkV186</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#VTable">VTable</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkV187</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#VTable">VTable</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkV188</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#VTable">VTable</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>adjAdv</CODE></TD>
-<TD><A HREF="#A" TITLE="A - one-place adjective">A</A> <CODE>-&gt;</CODE> <CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#A" TITLE="A - one-place adjective">A</A> <CODE>=</CODE></TD>
-<TD><I>-</I></TD>
-</TR>
-</TABLE>
-
-<A NAME="toc85"></A>
-<H2>Paradigms for Catalan</H2>
-<P>
-<a name="RParadigms"></a>
-</P>
-<P>
-source <A HREF="http://www.grammaticalframework.org/lib/src/catalan/ParadigmsCat.gf"><CODE>../src/catalan/ParadigmsCat.gf</CODE></A>
-</P>
-<TABLE BORDER="1" CELLPADDING="4">
-<TR>
-<TH>Function</TH>
-<TH>Type</TH>
-<TH COLSPAN="2">Explanation</TH>
-</TR>
-<TR>
-<TD><CODE>Gender</CODE></TD>
-<TD><A HREF="#Type">Type</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>masculine</CODE></TD>
-<TD><A HREF="#Gender">Gender</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>feminine</CODE></TD>
-<TD><A HREF="#Gender">Gender</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>Number</CODE></TD>
-<TD><A HREF="#Type">Type</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>singular</CODE></TD>
-<TD><A HREF="#Number">Number</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>plural</CODE></TD>
-<TD><A HREF="#Number">Number</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>accusative</CODE></TD>
-<TD><A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A></TD>
-<TD><I>direct object</I></TD>
-</TR>
-<TR>
-<TD><CODE>genitive</CODE></TD>
-<TD><A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A></TD>
-<TD><I>preposition "de"</I></TD>
-</TR>
-<TR>
-<TD><CODE>dative</CODE></TD>
-<TD><A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A></TD>
-<TD><I>preposition "a"</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkPrep</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A></TD>
-<TD><I>other preposition</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkN</CODE></TD>
-<TD><CODE>(llum</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
-<TD><I>regular, with heuristics for plural and gender</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkN</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#Gender">Gender</A> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
-<TD><I>force gender</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkN</CODE></TD>
-<TD><CODE>(disc,discos</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-&gt;</CODE> <A HREF="#Gender">Gender</A> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
-<TD><I>worst case</I></TD>
-</TR>
-<TR>
-<TD><CODE>compN</CODE></TD>
-<TD><A HREF="#N" TITLE="N - common noun">N</A> <CODE>-&gt;</CODE> <CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
-<TD><I>compound, e.g. "número" + "de telèfon"</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkN2</CODE></TD>
-<TD><A HREF="#N" TITLE="N - common noun">N</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#N2" TITLE="N2 - relational noun">N2</A></TD>
-<TD><I>e.g. filla + genitive</I></TD>
-</TR>
-<TR>
-<TD><CODE>deN2</CODE></TD>
-<TD><A HREF="#N" TITLE="N - common noun">N</A> <CODE>-&gt;</CODE> <A HREF="#N2" TITLE="N2 - relational noun">N2</A></TD>
-<TD><I>relation with genitive</I></TD>
-</TR>
-<TR>
-<TD><CODE>aN2</CODE></TD>
-<TD><A HREF="#N" TITLE="N - common noun">N</A> <CODE>-&gt;</CODE> <A HREF="#N2" TITLE="N2 - relational noun">N2</A></TD>
-<TD><I>relation with dative</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkN3</CODE></TD>
-<TD><A HREF="#N" TITLE="N - common noun">N</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#N3" TITLE="N3 - three-place relational noun">N3</A></TD>
-<TD><I>e.g. connexió + genitive + dative</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkPN</CODE></TD>
-<TD><CODE>(Anna</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-&gt;</CODE> <A HREF="#PN" TITLE="PN - proper name">PN</A></TD>
-<TD><I>feminine for "-a", otherwise masculine</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkPN</CODE></TD>
-<TD><CODE>(Pilar</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-&gt;</CODE> <A HREF="#Gender">Gender</A> <CODE>-&gt;</CODE> <A HREF="#PN" TITLE="PN - proper name">PN</A></TD>
-<TD><I>force gender</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkA</CODE></TD>
-<TD><CODE>(sol</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-&gt;</CODE> <A HREF="#A" TITLE="A - one-place adjective">A</A></TD>
-<TD><I>regular</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkA</CODE></TD>
-<TD><CODE>(fort,forta,forts,fortes,fortament</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-&gt;</CODE> <A HREF="#A" TITLE="A - one-place adjective">A</A></TD>
-<TD><I>worst case</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkA</CODE></TD>
-<TD><CODE>(bo</CODE> <CODE>:</CODE> <CODE>A)</CODE> <CODE>-&gt;</CODE> <CODE>(millor</CODE> <CODE>:</CODE> <CODE>A)</CODE> <CODE>-&gt;</CODE> <A HREF="#A" TITLE="A - one-place adjective">A</A></TD>
-<TD><I>special comparison (default with "mas")</I></TD>
-</TR>
-<TR>
-<TD><CODE>prefixA</CODE></TD>
-<TD><A HREF="#A" TITLE="A - one-place adjective">A</A> <CODE>-&gt;</CODE> <A HREF="#A" TITLE="A - one-place adjective">A</A></TD>
-<TD><I>adjective before noun (default: after)</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkA2</CODE></TD>
-<TD><A HREF="#A" TITLE="A - one-place adjective">A</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#A2" TITLE="A2 - two-place adjective">A2</A></TD>
-<TD><I>e.g. "casat" + dative</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkAdv</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#Adv" TITLE="Adv - verb-phrase-modifying adverb">Adv</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkAdV</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#AdV" TITLE="Adv - verb-phrase-modifying adverb">AdV</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkAdA</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#AdA" TITLE="AdA - adjective-modifying adverb">AdA</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkV</CODE></TD>
-<TD><CODE>(cantar</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-&gt;</CODE> <A HREF="#V" TITLE="V - one-place verb">V</A></TD>
-<TD><I>regular in models I, IIa, IIb</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkV</CODE></TD>
-<TD><A HREF="#Verbum">Verbum</A> <CODE>-&gt;</CODE> <A HREF="#V" TITLE="V - one-place verb">V</A></TD>
-<TD><I>use verb constructed in BeschCat</I></TD>
-</TR>
-<TR>
-<TD><CODE>reflV</CODE></TD>
-<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#V" TITLE="V - one-place verb">V</A></TD>
-<TD><I>reflexive verb</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkV2</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#V2" TITLE="V2 - two-place verb">V2</A></TD>
-<TD><I>regular verb, direct object</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkV2</CODE></TD>
-<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#V2" TITLE="V2 - two-place verb">V2</A></TD>
-<TD><I>any verb, direct object</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkV2</CODE></TD>
-<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#V2" TITLE="V2 - two-place verb">V2</A></TD>
-<TD><I>preposition for complement</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkV3</CODE></TD>
-<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#V3" TITLE="V3 - three-place verb">V3</A></TD>
-<TD><I>parlar, a, de</I></TD>
-</TR>
-<TR>
-<TD><CODE>dirV3</CODE></TD>
-<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#V3" TITLE="V3 - three-place verb">V3</A></TD>
-<TD><I>donar,(accusative),a</I></TD>
-</TR>
-<TR>
-<TD><CODE>dirdirV3</CODE></TD>
-<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#V3" TITLE="V3 - three-place verb">V3</A></TD>
-<TD><I>donar,(dative),(accusative)</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkVS</CODE></TD>
-<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#VS" TITLE="VS - sentence-complement verb">VS</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkV2S</CODE></TD>
-<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#V2S" TITLE="V2S - verb with NP and S complement">V2S</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkVV</CODE></TD>
-<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#VV" TITLE="VV - verb-phrase-complement verb">VV</A></TD>
-<TD><I>plain infinitive: "vull parlar"</I></TD>
-</TR>
-<TR>
-<TD><CODE>deVV</CODE></TD>
-<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#VV" TITLE="VV - verb-phrase-complement verb">VV</A></TD>
-<TD><I>"acabar de parlar"</I></TD>
-</TR>
-<TR>
-<TD><CODE>aVV</CODE></TD>
-<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#VV" TITLE="VV - verb-phrase-complement verb">VV</A></TD>
-<TD><I>"aprendre a parlar"</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkV2V</CODE></TD>
-<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#V2V" TITLE="V2V - verb with NP and V complement">V2V</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkVA</CODE></TD>
-<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#VA" TITLE="VA - adjective-complement verb">VA</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkV2A</CODE></TD>
-<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#V2A" TITLE="V2A - verb with NP and AP complement">V2A</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkVQ</CODE></TD>
-<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#VQ" TITLE="VQ - question-complement verb">VQ</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkV2Q</CODE></TD>
-<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#V2Q" TITLE="V2Q - verb with NP and Q complement">V2Q</A></TD>
-<TD><I>-</I></TD>
-</TR>
-</TABLE>
-
-<A NAME="toc86"></A>
-<H2>Paradigms for Danish</H2>
-<P>
-<a name="RParadigms"></a>
-</P>
-<P>
-source <A HREF="http://www.grammaticalframework.org/lib/src/danish/ParadigmsDan.gf"><CODE>../src/danish/ParadigmsDan.gf</CODE></A>
-</P>
-<TABLE BORDER="1" CELLPADDING="4">
-<TR>
-<TH>Function</TH>
-<TH>Type</TH>
-<TH COLSPAN="2">Explanation</TH>
-</TR>
-<TR>
-<TD><CODE>Gender</CODE></TD>
-<TD><A HREF="#Type">Type</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>utrum</CODE></TD>
-<TD><A HREF="#Gender">Gender</A></TD>
-<TD><I>"en" gender</I></TD>
-</TR>
-<TR>
-<TD><CODE>neutrum</CODE></TD>
-<TD><A HREF="#Gender">Gender</A></TD>
-<TD><I>"et" gender</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkPrep</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A></TD>
-<TD><I>e.g. "til"</I></TD>
-</TR>
-<TR>
-<TD><CODE>noPrep</CODE></TD>
-<TD><A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A></TD>
-<TD><I>empty string</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkN</CODE></TD>
-<TD><CODE>(bil</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
-<TD><I>regular noun: "en" gender with plural "-er" or "-r"</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkN</CODE></TD>
-<TD><CODE>(bil,bilen</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
-<TD><I>better prediction from both singular and plural</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkN</CODE></TD>
-<TD><CODE>(dreng,drengen,drenge,drengene</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
-<TD><I>worst case</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkN2</CODE></TD>
-<TD><A HREF="#N" TITLE="N - common noun">N</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#N2" TITLE="N2 - relational noun">N2</A></TD>
-<TD><I>e.g. datter + til</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkN3</CODE></TD>
-<TD><A HREF="#N" TITLE="N - common noun">N</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#N3" TITLE="N3 - three-place relational noun">N3</A></TD>
-<TD><I>e.g. forbindelse + fra + til</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkPN</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#PN" TITLE="PN - proper name">PN</A></TD>
-<TD><I>utrum gender</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkPN</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#Gender">Gender</A> <CODE>-&gt;</CODE> <A HREF="#PN" TITLE="PN - proper name">PN</A></TD>
-<TD><I>other gender</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkA</CODE></TD>
-<TD><CODE>(fin</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-&gt;</CODE> <A HREF="#A" TITLE="A - one-place adjective">A</A></TD>
-<TD><I>regular adjective</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkA</CODE></TD>
-<TD><CODE>(fin,fint</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-&gt;</CODE> <A HREF="#A" TITLE="A - one-place adjective">A</A></TD>
-<TD><I>deviant neuter</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkA</CODE></TD>
-<TD><CODE>(galen,galet,galne</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-&gt;</CODE> <A HREF="#A" TITLE="A - one-place adjective">A</A></TD>
-<TD><I>also deviant plural</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkA</CODE></TD>
-<TD><CODE>(stor,stort,store,storre,storst</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-&gt;</CODE> <A HREF="#A" TITLE="A - one-place adjective">A</A></TD>
-<TD><I>worst case</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkA</CODE></TD>
-<TD><A HREF="#A" TITLE="A - one-place adjective">A</A> <CODE>-&gt;</CODE> <A HREF="#A" TITLE="A - one-place adjective">A</A></TD>
-<TD><I>force comparison with mer/mest</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkA2</CODE></TD>
-<TD><A HREF="#A" TITLE="A - one-place adjective">A</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#A2" TITLE="A2 - two-place adjective">A2</A></TD>
-<TD><I>e.g. gift + med</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkAdv</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#Adv" TITLE="Adv - verb-phrase-modifying adverb">Adv</A></TD>
-<TD><I>after verb, e.g. "idag"</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkAdV</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#AdV" TITLE="Adv - verb-phrase-modifying adverb">AdV</A></TD>
-<TD><I>close to verb, e.g. "altid"</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkAdA</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#AdA" TITLE="AdA - adjective-modifying adverb">AdA</A></TD>
-<TD><I>modify adjective, e.g. "meget"</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkV</CODE></TD>
-<TD><CODE>(snakke</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-&gt;</CODE> <A HREF="#V" TITLE="V - one-place verb">V</A></TD>
-<TD><I>regular verb</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkV</CODE></TD>
-<TD><CODE>(leve,levde</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-&gt;</CODE> <A HREF="#V" TITLE="V - one-place verb">V</A></TD>
-<TD><I>also give past tense</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkV</CODE></TD>
-<TD><CODE>(drikke,</CODE> <CODE>drakk,</CODE> <CODE>drukket</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-&gt;</CODE> <A HREF="#V" TITLE="V - one-place verb">V</A></TD>
-<TD><I>theme of irregular verb</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkV</CODE></TD>
-<TD><CODE>(spise,spiser,spises,spiste,spist,spis</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-&gt;</CODE> <A HREF="#V" TITLE="V - one-place verb">V</A></TD>
-<TD><I>worst case</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkV</CODE></TD>
-<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#V" TITLE="V - one-place verb">V</A></TD>
-<TD><I>particle verb, e.g. lukke + op</I></TD>
-</TR>
-<TR>
-<TD><CODE>vaereV</CODE></TD>
-<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#V" TITLE="V - one-place verb">V</A></TD>
-<TD><I>force auxiliary "være"</I></TD>
-</TR>
-<TR>
-<TD><CODE>depV</CODE></TD>
-<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#V" TITLE="V - one-place verb">V</A></TD>
-<TD><I>deponent, e.g. "undres"</I></TD>
-</TR>
-<TR>
-<TD><CODE>reflV</CODE></TD>
-<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#V" TITLE="V - one-place verb">V</A></TD>
-<TD><I>reflexive, e.g. "forestille sig"</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkV2</CODE></TD>
-<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#V2" TITLE="V2 - two-place verb">V2</A></TD>
-<TD><I>direct object</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkV2</CODE></TD>
-<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#V2" TITLE="V2 - two-place verb">V2</A></TD>
-<TD><I>prepositional object</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkV3</CODE></TD>
-<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#V3" TITLE="V3 - three-place verb">V3</A></TD>
-<TD><I>snakke, med, om</I></TD>
-</TR>
-<TR>
-<TD><CODE>dirV3</CODE></TD>
-<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#V3" TITLE="V3 - three-place verb">V3</A></TD>
-<TD><I>give,_,til</I></TD>
-</TR>
-<TR>
-<TD><CODE>dirdirV3</CODE></TD>
-<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#V3" TITLE="V3 - three-place verb">V3</A></TD>
-<TD><I>give,_,_</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkVS</CODE></TD>
-<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#VS" TITLE="VS - sentence-complement verb">VS</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkV2S</CODE></TD>
-<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#V2S" TITLE="V2S - verb with NP and S complement">V2S</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkVV</CODE></TD>
-<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#VV" TITLE="VV - verb-phrase-complement verb">VV</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkV2V</CODE></TD>
-<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#V2V" TITLE="V2V - verb with NP and V complement">V2V</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkVA</CODE></TD>
-<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#VA" TITLE="VA - adjective-complement verb">VA</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkV2A</CODE></TD>
-<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#V2A" TITLE="V2A - verb with NP and AP complement">V2A</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkVQ</CODE></TD>
-<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#VQ" TITLE="VQ - question-complement verb">VQ</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkV2Q</CODE></TD>
-<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#V2Q" TITLE="V2Q - verb with NP and Q complement">V2Q</A></TD>
-<TD><I>-</I></TD>
-</TR>
-</TABLE>
-
-<A NAME="toc87"></A>
-<H2>Paradigms for Dutch</H2>
-<P>
-<a name="RParadigms"></a>
-</P>
-<P>
-source <A HREF="http://www.grammaticalframework.org/lib/src/dutch/ParadigmsDut.gf"><CODE>../src/dutch/ParadigmsDut.gf</CODE></A>
-</P>
-<TABLE BORDER="1" CELLPADDING="4">
-<TR>
-<TH>Function</TH>
-<TH>Type</TH>
-<TH COLSPAN="2">Explanation</TH>
-</TR>
-<TR>
-<TD><CODE>de</CODE></TD>
-<TD><A HREF="#Gender">Gender</A></TD>
-<TD><I>non-neutrum</I></TD>
-</TR>
-<TR>
-<TD><CODE>het</CODE></TD>
-<TD><A HREF="#Gender">Gender</A></TD>
-<TD><I>neutrum</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkN</CODE></TD>
-<TD><CODE>(muis</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
-<TD><I>de muis-muisen, with some predictable exceptions</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkN</CODE></TD>
-<TD><CODE>(bit</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-&gt;</CODE> <A HREF="#Gender">Gender</A> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
-<TD><I>if gender is not predictable</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkN</CODE></TD>
-<TD><CODE>(gat,gaten</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-&gt;</CODE> <A HREF="#Gender">Gender</A> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
-<TD><I>worst-case for nouns</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkN2</CODE></TD>
-<TD><A HREF="#N" TITLE="N - common noun">N</A> <CODE>-&gt;</CODE> <A HREF="#N2" TITLE="N2 - relational noun">N2</A></TD>
-<TD><I>relational noun with preposition van</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkN2</CODE></TD>
-<TD><A HREF="#N" TITLE="N - common noun">N</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#N2" TITLE="N2 - relational noun">N2</A></TD>
-<TD><I>other preposition than van</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkN3</CODE></TD>
-<TD><A HREF="#N" TITLE="N - common noun">N</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#N3" TITLE="N3 - three-place relational noun">N3</A></TD>
-<TD><I>e.g. afstand + van + naar</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkPN</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#PN" TITLE="PN - proper name">PN</A></TD>
-<TD><I>proper name</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkA</CODE></TD>
-<TD><CODE>(vers</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-&gt;</CODE> <A HREF="#A" TITLE="A - one-place adjective">A</A></TD>
-<TD><I>regular adjective</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkA</CODE></TD>
-<TD><CODE>(goed,goede,goeds,beter,best</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-&gt;</CODE> <A HREF="#A" TITLE="A - one-place adjective">A</A></TD>
-<TD><I>irregular adjective</I></TD>
-</TR>
-<TR>
-<TD><CODE>invarA</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#A" TITLE="A - one-place adjective">A</A></TD>
-<TD><I>adjective with just one form</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkA2</CODE></TD>
-<TD><A HREF="#A" TITLE="A - one-place adjective">A</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#A2" TITLE="A2 - two-place adjective">A2</A></TD>
-<TD><I>e.g. getrouwd + met</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkAdv</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#Adv" TITLE="Adv - verb-phrase-modifying adverb">Adv</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkPrep</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>van_Prep</CODE></TD>
-<TD><A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>te_Prep</CODE></TD>
-<TD><A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkV</CODE></TD>
-<TD><CODE>(aaien</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-&gt;</CODE> <A HREF="#V" TITLE="V - one-place verb">V</A></TD>
-<TD><I>regular verb</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkV</CODE></TD>
-<TD><CODE>(breken,brak,gebroken</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-&gt;</CODE> <A HREF="#V" TITLE="V - one-place verb">V</A></TD>
-<TD><I>theme of irregular verb</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkV</CODE></TD>
-<TD><CODE>(breken,brak,braken,gebroken</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-&gt;</CODE> <A HREF="#V" TITLE="V - one-place verb">V</A></TD>
-<TD><I>also past plural irregular</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkV</CODE></TD>
-<TD><CODE>(aai,aait,aaien,aaide,aaide,aaiden,geaaid</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-&gt;</CODE> <A HREF="#V" TITLE="V - one-place verb">V</A></TD>
-<TD><I>worst-case verb</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkV</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#V" TITLE="V - one-place verb">V</A></TD>
-<TD><I>add movable suffix, e.g. af + stappen</I></TD>
-</TR>
-<TR>
-<TD><CODE>zijnV</CODE></TD>
-<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#V" TITLE="V - one-place verb">V</A></TD>
-<TD><I>force zijn as auxiliary (default hebben)</I></TD>
-</TR>
-<TR>
-<TD><CODE>reflV</CODE></TD>
-<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#V" TITLE="V - one-place verb">V</A></TD>
-<TD><I>reflexive verb e.g. zich afvragen</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkV3</CODE></TD>
-<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#V3" TITLE="V3 - three-place verb">V3</A></TD>
-<TD><I>geven,(accusative),(dative)</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkV3</CODE></TD>
-<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#V3" TITLE="V3 - three-place verb">V3</A></TD>
-<TD><I>sturen,(accusative),naar</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkV3</CODE></TD>
-<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#V3" TITLE="V3 - three-place verb">V3</A></TD>
-<TD><I>praten, met, over</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkVS</CODE></TD>
-<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#VS" TITLE="VS - sentence-complement verb">VS</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkV2S</CODE></TD>
-<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#V2S" TITLE="V2S - verb with NP and S complement">V2S</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkVV</CODE></TD>
-<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#VV" TITLE="VV - verb-phrase-complement verb">VV</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkV2V</CODE></TD>
-<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#V2V" TITLE="V2V - verb with NP and V complement">V2V</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkVA</CODE></TD>
-<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#VA" TITLE="VA - adjective-complement verb">VA</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkV2A</CODE></TD>
-<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#V2A" TITLE="V2A - verb with NP and AP complement">V2A</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkVQ</CODE></TD>
-<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#VQ" TITLE="VQ - question-complement verb">VQ</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkV2Q</CODE></TD>
-<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#V2Q" TITLE="V2Q - verb with NP and Q complement">V2Q</A></TD>
-<TD><I>-</I></TD>
-</TR>
-</TABLE>
-
-<A NAME="toc88"></A>
-<H2>Paradigms for English</H2>
-<P>
-<a name="RParadigms"></a>
-</P>
-<P>
-source <A HREF="http://www.grammaticalframework.org/lib/src/english/ParadigmsEng.gf"><CODE>../src/english/ParadigmsEng.gf</CODE></A>
-</P>
-<TABLE BORDER="1" CELLPADDING="4">
-<TR>
-<TH>Function</TH>
-<TH>Type</TH>
-<TH COLSPAN="2">Explanation</TH>
-</TR>
-<TR>
-<TD><CODE>Gender</CODE></TD>
-<TD><A HREF="#Type">Type</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>human</CODE></TD>
-<TD><A HREF="#Gender">Gender</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>nonhuman</CODE></TD>
-<TD><A HREF="#Gender">Gender</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>Number</CODE></TD>
-<TD><A HREF="#Type">Type</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>singular</CODE></TD>
-<TD><A HREF="#Number">Number</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>plural</CODE></TD>
-<TD><A HREF="#Number">Number</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>npNumber</CODE></TD>
-<TD><A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A> <CODE>-&gt;</CODE> <A HREF="#Number">Number</A></TD>
-<TD><I>exctract the number of a noun phrase</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkN</CODE></TD>
-<TD><CODE>(flash</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
-<TD><I>plural s, incl. flash-flashes, fly-flies</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkN</CODE></TD>
-<TD><CODE>(man,men</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
-<TD><I>irregular plural</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkN</CODE></TD>
-<TD><CODE>(man,men,man's,men's</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
-<TD><I>irregular genitives</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkN</CODE></TD>
-<TD><A HREF="#Gender">Gender</A> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
-<TD><I>default nonhuman</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkN</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
-<TD><I>e.g. baby + boom</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkN2</CODE></TD>
-<TD><A HREF="#N" TITLE="N - common noun">N</A> <CODE>-&gt;</CODE> <A HREF="#N2" TITLE="N2 - relational noun">N2</A></TD>
-<TD><I>e.g. wife of (default prep. to)</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkN2</CODE></TD>
-<TD><A HREF="#N" TITLE="N - common noun">N</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#N2" TITLE="N2 - relational noun">N2</A></TD>
-<TD><I>e.g. access to</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkN3</CODE></TD>
-<TD><A HREF="#N" TITLE="N - common noun">N</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#N3" TITLE="N3 - three-place relational noun">N3</A></TD>
-<TD><I>e.g. connection from x to y</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkPN</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#PN" TITLE="PN - proper name">PN</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkA</CODE></TD>
-<TD><CODE>(happy</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-&gt;</CODE> <A HREF="#A" TITLE="A - one-place adjective">A</A></TD>
-<TD><I>regular adj, incl. happy-happier, rude-ruder</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkA</CODE></TD>
-<TD><CODE>(fat,fatter</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-&gt;</CODE> <A HREF="#A" TITLE="A - one-place adjective">A</A></TD>
-<TD><I>irreg. comparative</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkA</CODE></TD>
-<TD><CODE>(good,better,best,well</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-&gt;</CODE> <A HREF="#A" TITLE="A - one-place adjective">A</A></TD>
-<TD><I>completely irreg.</I></TD>
-</TR>
-<TR>
-<TD><CODE>compoundA</CODE></TD>
-<TD><A HREF="#A" TITLE="A - one-place adjective">A</A> <CODE>-&gt;</CODE> <A HREF="#A" TITLE="A - one-place adjective">A</A></TD>
-<TD><I>force comparison with more/most</I></TD>
-</TR>
-<TR>
-<TD><CODE>simpleA</CODE></TD>
-<TD><A HREF="#A" TITLE="A - one-place adjective">A</A> <CODE>-&gt;</CODE> <A HREF="#A" TITLE="A - one-place adjective">A</A></TD>
-<TD><I>force comparison with -er,-est</I></TD>
-</TR>
-<TR>
-<TD><CODE>irregAdv</CODE></TD>
-<TD><A HREF="#A" TITLE="A - one-place adjective">A</A> <CODE>-&gt;</CODE> <CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#A" TITLE="A - one-place adjective">A</A></TD>
-<TD><I>adverb irreg, e.g. "fast"</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkA2</CODE></TD>
-<TD><A HREF="#A" TITLE="A - one-place adjective">A</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#A2" TITLE="A2 - two-place adjective">A2</A></TD>
-<TD><I>absent from</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkAdv</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#Adv" TITLE="Adv - verb-phrase-modifying adverb">Adv</A></TD>
-<TD><I>e.g. today</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkAdV</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#AdV" TITLE="Adv - verb-phrase-modifying adverb">AdV</A></TD>
-<TD><I>e.g. always</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkAdA</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#AdA" TITLE="AdA - adjective-modifying adverb">AdA</A></TD>
-<TD><I>e.g. quite</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkAdN</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#AdN" TITLE="AdN - numeral-modifying adverb">AdN</A></TD>
-<TD><I>e.g. approximately</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkPrep</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A></TD>
-<TD><I>e.g. "in front of"</I></TD>
-</TR>
-<TR>
-<TD><CODE>noPrep</CODE></TD>
-<TD><A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A></TD>
-<TD><I>no preposition</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkV</CODE></TD>
-<TD><CODE>(cry</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-&gt;</CODE> <A HREF="#V" TITLE="V - one-place verb">V</A></TD>
-<TD><I>regular, incl. cry-cries, kiss-kisses etc</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkV</CODE></TD>
-<TD><CODE>(stop,</CODE> <CODE>stopped</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-&gt;</CODE> <A HREF="#V" TITLE="V - one-place verb">V</A></TD>
-<TD><I>reg. with consonant duplication</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkV</CODE></TD>
-<TD><CODE>(drink,</CODE> <CODE>drank,</CODE> <CODE>drunk</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-&gt;</CODE> <A HREF="#V" TITLE="V - one-place verb">V</A></TD>
-<TD><I>ordinary irregular</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkV</CODE></TD>
-<TD><CODE>(go,</CODE> <CODE>goes,</CODE> <CODE>went,</CODE> <CODE>gone,</CODE> <CODE>going</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-&gt;</CODE> <A HREF="#V" TITLE="V - one-place verb">V</A></TD>
-<TD><I>totally irregular</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkV</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#V" TITLE="V - one-place verb">V</A></TD>
-<TD><I>fix compound, e.g. under+take</I></TD>
-</TR>
-<TR>
-<TD><CODE>partV</CODE></TD>
-<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#V" TITLE="V - one-place verb">V</A></TD>
-<TD><I>with particle, e.g. switch + on</I></TD>
-</TR>
-<TR>
-<TD><CODE>reflV</CODE></TD>
-<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#V" TITLE="V - one-place verb">V</A></TD>
-<TD><I>reflexive e.g. behave oneself</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkV2</CODE></TD>
-<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#V2" TITLE="V2 - two-place verb">V2</A></TD>
-<TD><I>transitive, e.g. hit</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkV2</CODE></TD>
-<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#V2" TITLE="V2 - two-place verb">V2</A></TD>
-<TD><I>with preposiiton, e.g. believe in</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkV3</CODE></TD>
-<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#V3" TITLE="V3 - three-place verb">V3</A></TD>
-<TD><I>ditransitive, e.g. give,_,_</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkV3</CODE></TD>
-<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#V3" TITLE="V3 - three-place verb">V3</A></TD>
-<TD><I>two prepositions, e.g. speak, with, about</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkVS</CODE></TD>
-<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#VS" TITLE="VS - sentence-complement verb">VS</A></TD>
-<TD><I>sentence-compl e.g. say (that S)</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkV2S</CODE></TD>
-<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#V2S" TITLE="V2S - verb with NP and S complement">V2S</A></TD>
-<TD><I>e.g. tell (NP) (that S)</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkVV</CODE></TD>
-<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#VV" TITLE="VV - verb-phrase-complement verb">VV</A></TD>
-<TD><I>e.g. want (to VP)</I></TD>
-</TR>
-<TR>
-<TD><CODE>ingVV</CODE></TD>
-<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#VV" TITLE="VV - verb-phrase-complement verb">VV</A></TD>
-<TD><I>e.g. start (VPing)</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkV2V</CODE></TD>
-<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#V2V" TITLE="V2V - verb with NP and V complement">V2V</A></TD>
-<TD><I>e.g. want (NP) (to VP)</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkVA</CODE></TD>
-<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#VA" TITLE="VA - adjective-complement verb">VA</A></TD>
-<TD><I>e.g. become (AP)</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkV2A</CODE></TD>
-<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#V2A" TITLE="V2A - verb with NP and AP complement">V2A</A></TD>
-<TD><I>e.g. paint (NP) (AP)</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkVQ</CODE></TD>
-<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#VQ" TITLE="VQ - question-complement verb">VQ</A></TD>
-<TD><I>e.g. wonder (QS)</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkV2Q</CODE></TD>
-<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#V2Q" TITLE="V2Q - verb with NP and Q complement">V2Q</A></TD>
-<TD><I>e.g. ask (NP) (QS)</I></TD>
-</TR>
-</TABLE>
-
-<A NAME="toc89"></A>
-<H2>Paradigms for Finnish</H2>
-<P>
-<a name="RParadigms"></a>
-</P>
-<P>
-source <A HREF="http://www.grammaticalframework.org/lib/src/finnish/ParadigmsFin.gf"><CODE>../src/finnish/ParadigmsFin.gf</CODE></A>
-</P>
-<TABLE BORDER="1" CELLPADDING="4">
-<TR>
-<TH>Function</TH>
-<TH>Type</TH>
-<TH COLSPAN="2">Explanation</TH>
-</TR>
-<TR>
-<TD><CODE>Number</CODE></TD>
-<TD><A HREF="#Type">Type</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>singular</CODE></TD>
-<TD><A HREF="#Number">Number</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>plural</CODE></TD>
-<TD><A HREF="#Number">Number</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>Case</CODE></TD>
-<TD><A HREF="#Type">Type</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>nominative</CODE></TD>
-<TD><A HREF="#Case">Case</A></TD>
-<TD><I>e.g. "talo"</I></TD>
-</TR>
-<TR>
-<TD><CODE>genitive</CODE></TD>
-<TD><A HREF="#Case">Case</A></TD>
-<TD><I>e.g. "talon"</I></TD>
-</TR>
-<TR>
-<TD><CODE>partitive</CODE></TD>
-<TD><A HREF="#Case">Case</A></TD>
-<TD><I>e.g. "taloa"</I></TD>
-</TR>
-<TR>
-<TD><CODE>essive</CODE></TD>
-<TD><A HREF="#Case">Case</A></TD>
-<TD><I>e.g. "talona"</I></TD>
-</TR>
-<TR>
-<TD><CODE>translative</CODE></TD>
-<TD><A HREF="#Case">Case</A></TD>
-<TD><I>e.g. "taloksi"</I></TD>
-</TR>
-<TR>
-<TD><CODE>inessive</CODE></TD>
-<TD><A HREF="#Case">Case</A></TD>
-<TD><I>e.g. "talossa"</I></TD>
-</TR>
-<TR>
-<TD><CODE>elative</CODE></TD>
-<TD><A HREF="#Case">Case</A></TD>
-<TD><I>e.g. "talosta"</I></TD>
-</TR>
-<TR>
-<TD><CODE>illative</CODE></TD>
-<TD><A HREF="#Case">Case</A></TD>
-<TD><I>e.g. "taloon"</I></TD>
-</TR>
-<TR>
-<TD><CODE>adessive</CODE></TD>
-<TD><A HREF="#Case">Case</A></TD>
-<TD><I>e.g. "talolla"</I></TD>
-</TR>
-<TR>
-<TD><CODE>ablative</CODE></TD>
-<TD><A HREF="#Case">Case</A></TD>
-<TD><I>e.g. "talolta"</I></TD>
-</TR>
-<TR>
-<TD><CODE>allative</CODE></TD>
-<TD><A HREF="#Case">Case</A></TD>
-<TD><I>e.g. "talolle"</I></TD>
-</TR>
-<TR>
-<TD><CODE>infFirst</CODE></TD>
-<TD><A HREF="#InfForm">InfForm</A></TD>
-<TD><I>e.g. "tehdä"</I></TD>
-</TR>
-<TR>
-<TD><CODE>infElat</CODE></TD>
-<TD><A HREF="#InfForm">InfForm</A></TD>
-<TD><I>e.g. "tekemästä"</I></TD>
-</TR>
-<TR>
-<TD><CODE>infIllat</CODE></TD>
-<TD><A HREF="#InfForm">InfForm</A></TD>
-<TD><I>e.g. "tekemään"</I></TD>
-</TR>
-<TR>
-<TD><CODE>prePrep</CODE></TD>
-<TD><A HREF="#Case">Case</A> <CODE>-&gt;</CODE> <CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A></TD>
-<TD><I>preposition, e.g. partitive "ilman"</I></TD>
-</TR>
-<TR>
-<TD><CODE>postPrep</CODE></TD>
-<TD><A HREF="#Case">Case</A> <CODE>-&gt;</CODE> <CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A></TD>
-<TD><I>postposition, e.g. genitive "takana"</I></TD>
-</TR>
-<TR>
-<TD><CODE>postGenPrep</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A></TD>
-<TD><I>genitive postposition, e.g. "takana"</I></TD>
-</TR>
-<TR>
-<TD><CODE>casePrep</CODE></TD>
-<TD><A HREF="#Case">Case</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A></TD>
-<TD><I>just case, e.g. adessive</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkN</CODE></TD>
-<TD><CODE>(kukko</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
-<TD><I>predictable nouns, covers 82%</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkN</CODE></TD>
-<TD><CODE>(savi,savia</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
-<TD><I>different pl.part</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkN</CODE></TD>
-<TD><CODE>(vesi,veden,vesiä</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
-<TD><I>also different sg.gen</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkN</CODE></TD>
-<TD><CODE>(vesi,veden,vesiä,vettä</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
-<TD><I>also different sg.part</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkN</CODE></TD>
-<TD><CODE>(olo,n,a,na,oon,jen,ja,ina,issa,ihin</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
-<TD><I>worst case, 10 forms</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkN</CODE></TD>
-<TD><CODE>(pika</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-&gt;</CODE> <CODE>(juna</CODE> <CODE>:</CODE> <CODE>N)</CODE> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
-<TD><I>compound with invariable prefix</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkN</CODE></TD>
-<TD><CODE>(oma</CODE> <CODE>:</CODE> <CODE>N)</CODE> <CODE>-&gt;</CODE> <CODE>(tunto</CODE> <CODE>:</CODE> <CODE>N)</CODE> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
-<TD><I>compound with inflecting prefix</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkN2</CODE></TD>
-<TD><A HREF="#N" TITLE="N - common noun">N</A> <CODE>-&gt;</CODE> <A HREF="#N2" TITLE="N2 - relational noun">N2</A></TD>
-<TD><I>relational noun with genitive</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkN2</CODE></TD>
-<TD><A HREF="#N" TITLE="N - common noun">N</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#N2" TITLE="N2 - relational noun">N2</A></TD>
-<TD><I>relational noun another prep.</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkN3</CODE></TD>
-<TD><A HREF="#N" TITLE="N - common noun">N</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#N3" TITLE="N3 - three-place relational noun">N3</A></TD>
-<TD><I>relation with two complements</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkPN</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#PN" TITLE="PN - proper name">PN</A></TD>
-<TD><I>predictable noun made into name</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkPN</CODE></TD>
-<TD><A HREF="#N" TITLE="N - common noun">N</A> <CODE>-&gt;</CODE> <A HREF="#PN" TITLE="PN - proper name">PN</A></TD>
-<TD><I>any noun made into name</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkA</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#A" TITLE="A - one-place adjective">A</A></TD>
-<TD><I>regular noun made into adjective</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkA</CODE></TD>
-<TD><A HREF="#N" TITLE="N - common noun">N</A> <CODE>-&gt;</CODE> <A HREF="#A" TITLE="A - one-place adjective">A</A></TD>
-<TD><I>any noun made into adjective</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkA</CODE></TD>
-<TD><A HREF="#N" TITLE="N - common noun">N</A> <CODE>-&gt;</CODE> <CODE>(kivempi,kivin</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-&gt;</CODE> <A HREF="#A" TITLE="A - one-place adjective">A</A></TD>
-<TD><I>deviating comparison forms</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkA</CODE></TD>
-<TD><CODE>(hyva,prmpi,pras</CODE> <CODE>:</CODE> <CODE>N)</CODE> <CODE>-&gt;</CODE> <CODE>(hyvin,pmmin,prhten</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-&gt;</CODE> <A HREF="#A" TITLE="A - one-place adjective">A</A></TD>
-<TD><I>worst case adj</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkA2</CODE></TD>
-<TD><A HREF="#A" TITLE="A - one-place adjective">A</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#A2" TITLE="A2 - two-place adjective">A2</A></TD>
-<TD><I>e.g. "jaollinen" casePrep adessive</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkV</CODE></TD>
-<TD><CODE>(huutaa</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-&gt;</CODE> <A HREF="#V" TITLE="V - one-place verb">V</A></TD>
-<TD><I>predictable verbs, covers 90%</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkV</CODE></TD>
-<TD><CODE>(huutaa,huusi</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-&gt;</CODE> <A HREF="#V" TITLE="V - one-place verb">V</A></TD>
-<TD><I>deviating past 3sg</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkV</CODE></TD>
-<TD><CODE>(huutaa,huudan,huusi</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-&gt;</CODE> <A HREF="#V" TITLE="V - one-place verb">V</A></TD>
-<TD><I>also deviating pres. 1sg</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkV</CODE></TD>
-<TD><CODE>(huutaa,dan,taa,tavat,takaa,detaan,sin,si,sisi,tanut,dettu,tanee</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-&gt;</CODE> <A HREF="#V" TITLE="V - one-place verb">V</A></TD>
-<TD><I>worst-case verb</I></TD>
-</TR>
-<TR>
-<TD><CODE>caseV</CODE></TD>
-<TD><A HREF="#Case">Case</A> <CODE>-&gt;</CODE> <A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#V" TITLE="V - one-place verb">V</A></TD>
-<TD><I>deviating subj. case, e.g. genitive "täytyä"</I></TD>
-</TR>
-<TR>
-<TD><CODE>vOlla</CODE></TD>
-<TD><A HREF="#V" TITLE="V - one-place verb">V</A></TD>
-<TD><I>the verb "be"</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkV2</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#V2" TITLE="V2 - two-place verb">V2</A></TD>
-<TD><I>predictable direct transitive</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkV2</CODE></TD>
-<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#V2" TITLE="V2 - two-place verb">V2</A></TD>
-<TD><I>direct transitive</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkV2</CODE></TD>
-<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#Case">Case</A> <CODE>-&gt;</CODE> <A HREF="#V2" TITLE="V2 - two-place verb">V2</A></TD>
-<TD><I>complement just case</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkV2</CODE></TD>
-<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#V2" TITLE="V2 - two-place verb">V2</A></TD>
-<TD><I>complement pre/postposition</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkV3</CODE></TD>
-<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#V3" TITLE="V3 - three-place verb">V3</A></TD>
-<TD><I>e.g. puhua, allative, elative</I></TD>
-</TR>
-<TR>
-<TD><CODE>dirV3</CODE></TD>
-<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#Case">Case</A> <CODE>-&gt;</CODE> <A HREF="#V3" TITLE="V3 - three-place verb">V3</A></TD>
-<TD><I>siirtää, (accusative), illative</I></TD>
-</TR>
-<TR>
-<TD><CODE>dirdirV3</CODE></TD>
-<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#V3" TITLE="V3 - three-place verb">V3</A></TD>
-<TD><I>antaa, (accusative), (allative)</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkVS</CODE></TD>
-<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#VS" TITLE="VS - sentence-complement verb">VS</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkV2S</CODE></TD>
-<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#V2S" TITLE="V2S - verb with NP and S complement">V2S</A></TD>
-<TD><I>e.g. "sanoa" allative</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkVV</CODE></TD>
-<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#VV" TITLE="VV - verb-phrase-complement verb">VV</A></TD>
-<TD><I>e.g. "alkaa"</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkVVf</CODE></TD>
-<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#InfForm">InfForm</A> <CODE>-&gt;</CODE> <A HREF="#VV" TITLE="VV - verb-phrase-complement verb">VV</A></TD>
-<TD><I>e.g. "ruveta" infIllat</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkV2V</CODE></TD>
-<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#V2V" TITLE="V2V - verb with NP and V complement">V2V</A></TD>
-<TD><I>e.g. "käskeä" genitive</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkV2Vf</CODE></TD>
-<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#InfForm">InfForm</A> <CODE>-&gt;</CODE> <A HREF="#V2V" TITLE="V2V - verb with NP and V complement">V2V</A></TD>
-<TD><I>e.g. "kieltää" partitive infElat</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkVA</CODE></TD>
-<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#VA" TITLE="VA - adjective-complement verb">VA</A></TD>
-<TD><I>e.g. "maistua" ablative</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkV2A</CODE></TD>
-<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#V2A" TITLE="V2A - verb with NP and AP complement">V2A</A></TD>
-<TD><I>e.g. "maalata" accusative translative</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkVQ</CODE></TD>
-<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#VQ" TITLE="VQ - question-complement verb">VQ</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkV2Q</CODE></TD>
-<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#V2Q" TITLE="V2Q - verb with NP and Q complement">V2Q</A></TD>
-<TD><I>e.g. "kysyä" ablative</I></TD>
-</TR>
-</TABLE>
-
-<A NAME="toc90"></A>
-<H2>Paradigms for French</H2>
-<P>
-<a name="RParadigms"></a>
-</P>
-<P>
-source <A HREF="http://www.grammaticalframework.org/lib/src/french/ParadigmsFre.gf"><CODE>../src/french/ParadigmsFre.gf</CODE></A>
-</P>
-<TABLE BORDER="1" CELLPADDING="4">
-<TR>
-<TH>Function</TH>
-<TH>Type</TH>
-<TH COLSPAN="2">Explanation</TH>
-</TR>
-<TR>
-<TD><CODE>Gender</CODE></TD>
-<TD><A HREF="#Type">Type</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>masculine</CODE></TD>
-<TD><A HREF="#Gender">Gender</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>feminine</CODE></TD>
-<TD><A HREF="#Gender">Gender</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>accusative</CODE></TD>
-<TD><A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A></TD>
-<TD><I>direct object case</I></TD>
-</TR>
-<TR>
-<TD><CODE>genitive</CODE></TD>
-<TD><A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A></TD>
-<TD><I>genitive, constructed with "de"</I></TD>
-</TR>
-<TR>
-<TD><CODE>dative</CODE></TD>
-<TD><A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A></TD>
-<TD><I>dative, usually constructed with "à"</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkPrep</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A></TD>
-<TD><I>preposition (other than "de" and "à")</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkN</CODE></TD>
-<TD><CODE>(cheval</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
-<TD><I>predictable, with variations like cheval-chevaux</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkN</CODE></TD>
-<TD><CODE>(oeil,yeux</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-&gt;</CODE> <A HREF="#Gender">Gender</A> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
-<TD><I>worst-case noun</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkN</CODE></TD>
-<TD><A HREF="#N" TITLE="N - common noun">N</A> <CODE>-&gt;</CODE> <CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
-<TD><I>compound noun, e.g. numéro + de téléphone</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkN2</CODE></TD>
-<TD><A HREF="#N" TITLE="N - common noun">N</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#N2" TITLE="N2 - relational noun">N2</A></TD>
-<TD><I>e.g. fille + genitive</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkN3</CODE></TD>
-<TD><A HREF="#N" TITLE="N - common noun">N</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#N3" TITLE="N3 - three-place relational noun">N3</A></TD>
-<TD><I>e.g. connection + genitive + dative</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkPN</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#PN" TITLE="PN - proper name">PN</A></TD>
-<TD><I>feminine if ends with "e", otherwise masculine</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkPN</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#Gender">Gender</A> <CODE>-&gt;</CODE> <A HREF="#PN" TITLE="PN - proper name">PN</A></TD>
-<TD><I>gender deviant from the simple rule</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkA</CODE></TD>
-<TD><CODE>(cher</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-&gt;</CODE> <A HREF="#A" TITLE="A - one-place adjective">A</A></TD>
-<TD><I>predictable, e.g. cher-chère</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkA</CODE></TD>
-<TD><CODE>(sec,seche</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-&gt;</CODE> <A HREF="#A" TITLE="A - one-place adjective">A</A></TD>
-<TD><I>unpredictable feminine</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkA</CODE></TD>
-<TD><CODE>(banal,banale,banaux,banalement</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-&gt;</CODE> <A HREF="#A" TITLE="A - one-place adjective">A</A></TD>
-<TD><I>worst-case adjective</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkA</CODE></TD>
-<TD><A HREF="#A" TITLE="A - one-place adjective">A</A> <CODE>-&gt;</CODE> <A HREF="#A" TITLE="A - one-place adjective">A</A> <CODE>-&gt;</CODE> <A HREF="#A" TITLE="A - one-place adjective">A</A></TD>
-<TD><I>irregular comparison, e.g. bon-meilleur</I></TD>
-</TR>
-<TR>
-<TD><CODE>prefixA</CODE></TD>
-<TD><A HREF="#A" TITLE="A - one-place adjective">A</A> <CODE>-&gt;</CODE> <A HREF="#A" TITLE="A - one-place adjective">A</A></TD>
-<TD><I>adjective that comes before noun, e.g. petit</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkA2</CODE></TD>
-<TD><A HREF="#A" TITLE="A - one-place adjective">A</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#A2" TITLE="A2 - two-place adjective">A2</A></TD>
-<TD><I>e.g. supérieur + dative</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkAdv</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#Adv" TITLE="Adv - verb-phrase-modifying adverb">Adv</A></TD>
-<TD><I>ordinary adverb</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkAdV</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#AdV" TITLE="Adv - verb-phrase-modifying adverb">AdV</A></TD>
-<TD><I>sentential adverb, e.g. toujours</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkAdA</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#AdA" TITLE="AdA - adjective-modifying adverb">AdA</A></TD>
-<TD><I>modify adjective, e.g. très</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkV</CODE></TD>
-<TD><CODE>(finir</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-&gt;</CODE> <A HREF="#V" TITLE="V - one-place verb">V</A></TD>
-<TD><I>regular 1/2/3 conjugation</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkV</CODE></TD>
-<TD><CODE>(jeter,jette,jettera</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-&gt;</CODE> <A HREF="#V" TITLE="V - one-place verb">V</A></TD>
-<TD><I>1st conjugation variations</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkV</CODE></TD>
-<TD><A HREF="#V2" TITLE="V2 - two-place verb">V2</A> <CODE>-&gt;</CODE> <A HREF="#V" TITLE="V - one-place verb">V</A></TD>
-<TD><I>make 2-place to 1-place (e.g. from IrregFre)</I></TD>
-</TR>
-<TR>
-<TD><CODE>etreV</CODE></TD>
-<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#V" TITLE="V - one-place verb">V</A></TD>
-<TD><I>force auxiliary to be être (default avoir)</I></TD>
-</TR>
-<TR>
-<TD><CODE>reflV</CODE></TD>
-<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#V" TITLE="V - one-place verb">V</A></TD>
-<TD><I>reflexive, implies auxiliary être, e.g. se demander</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkV2</CODE></TD>
-<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#V2" TITLE="V2 - two-place verb">V2</A></TD>
-<TD><I>direct transitive</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkV2</CODE></TD>
-<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#V2" TITLE="V2 - two-place verb">V2</A></TD>
-<TD><I>e.g. se fier + genitive</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkV3</CODE></TD>
-<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#V3" TITLE="V3 - three-place verb">V3</A></TD>
-<TD><I>donner (+ accusative + dative)</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkV3</CODE></TD>
-<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#V3" TITLE="V3 - three-place verb">V3</A></TD>
-<TD><I>placer (+ accusative) + dans</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkV3</CODE></TD>
-<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#V3" TITLE="V3 - three-place verb">V3</A></TD>
-<TD><I>parler + dative + genitive</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkVS</CODE></TD>
-<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#VS" TITLE="VS - sentence-complement verb">VS</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkV2S</CODE></TD>
-<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#V2S" TITLE="V2S - verb with NP and S complement">V2S</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkVV</CODE></TD>
-<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#VV" TITLE="VV - verb-phrase-complement verb">VV</A></TD>
-<TD><I>plain infinitive: "je veux parler"</I></TD>
-</TR>
-<TR>
-<TD><CODE>deVV</CODE></TD>
-<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#VV" TITLE="VV - verb-phrase-complement verb">VV</A></TD>
-<TD><I>"j'essaie de parler"</I></TD>
-</TR>
-<TR>
-<TD><CODE>aVV</CODE></TD>
-<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#VV" TITLE="VV - verb-phrase-complement verb">VV</A></TD>
-<TD><I>"j'arrive à parler"</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkV2V</CODE></TD>
-<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#V2V" TITLE="V2V - verb with NP and V complement">V2V</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkVA</CODE></TD>
-<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#VA" TITLE="VA - adjective-complement verb">VA</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkV2A</CODE></TD>
-<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#V2A" TITLE="V2A - verb with NP and AP complement">V2A</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkVQ</CODE></TD>
-<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#VQ" TITLE="VQ - question-complement verb">VQ</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkV2Q</CODE></TD>
-<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#V2Q" TITLE="V2Q - verb with NP and Q complement">V2Q</A></TD>
-<TD><I>-</I></TD>
-</TR>
-</TABLE>
-
-<A NAME="toc91"></A>
-<H2>Paradigms for German</H2>
-<P>
-<a name="RParadigms"></a>
-</P>
-<P>
-source <A HREF="http://www.grammaticalframework.org/lib/src/german/ParadigmsGer.gf"><CODE>../src/german/ParadigmsGer.gf</CODE></A>
-</P>
-<TABLE BORDER="1" CELLPADDING="4">
-<TR>
-<TH>Function</TH>
-<TH>Type</TH>
-<TH COLSPAN="2">Explanation</TH>
-</TR>
-<TR>
-<TD><CODE>Gender</CODE></TD>
-<TD><A HREF="#Type">Type</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>masculine</CODE></TD>
-<TD><A HREF="#Gender">Gender</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>feminine</CODE></TD>
-<TD><A HREF="#Gender">Gender</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>neuter</CODE></TD>
-<TD><A HREF="#Gender">Gender</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>Case</CODE></TD>
-<TD><A HREF="#Type">Type</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>nominative</CODE></TD>
-<TD><A HREF="#Case">Case</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>accusative</CODE></TD>
-<TD><A HREF="#Case">Case</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>dative</CODE></TD>
-<TD><A HREF="#Case">Case</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>genitive</CODE></TD>
-<TD><A HREF="#Case">Case</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>Number</CODE></TD>
-<TD><A HREF="#Type">Type</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>singular</CODE></TD>
-<TD><A HREF="#Number">Number</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>plural</CODE></TD>
-<TD><A HREF="#Number">Number</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkN</CODE></TD>
-<TD><CODE>(Stufe</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
-<TD><I>die Stufe-Stufen, der Tisch-Tische</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkN</CODE></TD>
-<TD><CODE>(Bild,Bilder</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-&gt;</CODE> <A HREF="#Gender">Gender</A> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
-<TD><I>sg and pl nom, and gender</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkN</CODE></TD>
-<TD><CODE>(x1,_,_,_,_,x6</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-&gt;</CODE> <A HREF="#Gender">Gender</A> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
-<TD><I>worst case: mann, mann, manne, mannes, männer, männern</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkN2</CODE></TD>
-<TD><A HREF="#N" TITLE="N - common noun">N</A> <CODE>-&gt;</CODE> <A HREF="#N2" TITLE="N2 - relational noun">N2</A></TD>
-<TD><I>noun + von</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkN2</CODE></TD>
-<TD><A HREF="#N" TITLE="N - common noun">N</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#N2" TITLE="N2 - relational noun">N2</A></TD>
-<TD><I>noun + other preposition</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkN3</CODE></TD>
-<TD><A HREF="#N" TITLE="N - common noun">N</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#N3" TITLE="N3 - three-place relational noun">N3</A></TD>
-<TD><I>noun + two prepositions</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkPN</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#PN" TITLE="PN - proper name">PN</A></TD>
-<TD><I>regular name with genitive in "s"</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkPN</CODE></TD>
-<TD><CODE>(nom,gen</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-&gt;</CODE> <A HREF="#PN" TITLE="PN - proper name">PN</A></TD>
-<TD><I>name with other genitive</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkPN</CODE></TD>
-<TD><CODE>(nom,acc,dat,gen</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-&gt;</CODE> <A HREF="#PN" TITLE="PN - proper name">PN</A></TD>
-<TD><I>name with all case forms</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkA</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#A" TITLE="A - one-place adjective">A</A></TD>
-<TD><I>regular adjective, works for most cases</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkA</CODE></TD>
-<TD><CODE>(gut,besser,beste</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-&gt;</CODE> <A HREF="#A" TITLE="A - one-place adjective">A</A></TD>
-<TD><I>irregular comparison</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkA</CODE></TD>
-<TD><CODE>(gut,gute,besser,beste</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-&gt;</CODE> <A HREF="#A" TITLE="A - one-place adjective">A</A></TD>
-<TD><I>irregular positive if ending added</I></TD>
-</TR>
-<TR>
-<TD><CODE>invarA</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#A" TITLE="A - one-place adjective">A</A></TD>
-<TD><I>invariable, e.g. prima</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkA2</CODE></TD>
-<TD><A HREF="#A" TITLE="A - one-place adjective">A</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#A2" TITLE="A2 - two-place adjective">A2</A></TD>
-<TD><I>e.g. teilbar + durch</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkAdv</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#Adv" TITLE="Adv - verb-phrase-modifying adverb">Adv</A></TD>
-<TD><I>adverbs have just one form anyway</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkPrep</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#Case">Case</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A></TD>
-<TD><I>e.g. "durch" + accusative</I></TD>
-</TR>
-<TR>
-<TD><CODE>accPrep</CODE></TD>
-<TD><A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A></TD>
-<TD><I>no string, just accusative case</I></TD>
-</TR>
-<TR>
-<TD><CODE>datPrep</CODE></TD>
-<TD><A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A></TD>
-<TD><I>no string, just dative case</I></TD>
-</TR>
-<TR>
-<TD><CODE>genPrep</CODE></TD>
-<TD><A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A></TD>
-<TD><I>no string, just genitive case</I></TD>
-</TR>
-<TR>
-<TD><CODE>von_Prep</CODE></TD>
-<TD><A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A></TD>
-<TD><I>von + dative</I></TD>
-</TR>
-<TR>
-<TD><CODE>zu_Prep</CODE></TD>
-<TD><A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A></TD>
-<TD><I>zu + dative, with contractions zum, zur</I></TD>
-</TR>
-<TR>
-<TD><CODE>anDat_Prep</CODE></TD>
-<TD><A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A></TD>
-<TD><I>an + dative, with contraction am</I></TD>
-</TR>
-<TR>
-<TD><CODE>inDat_Prep</CODE></TD>
-<TD><A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A></TD>
-<TD><I>in + dative, with contraction ins</I></TD>
-</TR>
-<TR>
-<TD><CODE>inAcc_Prep</CODE></TD>
-<TD><A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A></TD>
-<TD><I>in + accusative, with contraction im</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkV</CODE></TD>
-<TD><CODE>(führen</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-&gt;</CODE> <A HREF="#V" TITLE="V - one-place verb">V</A></TD>
-<TD><I>regular verb</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkV</CODE></TD>
-<TD><CODE>(sehen,sieht,sah,sähe,gesehen</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-&gt;</CODE> <A HREF="#V" TITLE="V - one-place verb">V</A></TD>
-<TD><I>irregular verb theme</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkV</CODE></TD>
-<TD><CODE>(geben,</CODE> <CODE>gibt,</CODE> <CODE>gib,</CODE> <CODE>gab,</CODE> <CODE>gäbe,</CODE> <CODE>gegeben</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-&gt;</CODE> <A HREF="#V" TITLE="V - one-place verb">V</A></TD>
-<TD><I>worst-case verb</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkV</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#V" TITLE="V - one-place verb">V</A></TD>
-<TD><I>movable prefix, e.g. auf+fassen</I></TD>
-</TR>
-<TR>
-<TD><CODE>no_geV</CODE></TD>
-<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#V" TITLE="V - one-place verb">V</A></TD>
-<TD><I>no participle "ge", e.g. "bedeuten"</I></TD>
-</TR>
-<TR>
-<TD><CODE>fixprefixV</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#V" TITLE="V - one-place verb">V</A></TD>
-<TD><I>add prefix such as "be"; implies no_ge</I></TD>
-</TR>
-<TR>
-<TD><CODE>seinV</CODE></TD>
-<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#V" TITLE="V - one-place verb">V</A></TD>
-<TD><I>force "sein" as auxiliary</I></TD>
-</TR>
-<TR>
-<TD><CODE>habenV</CODE></TD>
-<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#V" TITLE="V - one-place verb">V</A></TD>
-<TD><I>force "haben" as auxiliary</I></TD>
-</TR>
-<TR>
-<TD><CODE>reflV</CODE></TD>
-<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#Case">Case</A> <CODE>-&gt;</CODE> <A HREF="#V" TITLE="V - one-place verb">V</A></TD>
-<TD><I>reflexive, with case</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkV2</CODE></TD>
-<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#V2" TITLE="V2 - two-place verb">V2</A></TD>
-<TD><I>direct object</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkV2</CODE></TD>
-<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#V2" TITLE="V2 - two-place verb">V2</A></TD>
-<TD><I>preposition for complement</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkV2</CODE></TD>
-<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#Case">Case</A> <CODE>-&gt;</CODE> <A HREF="#V2" TITLE="V2 - two-place verb">V2</A></TD>
-<TD><I>just case for complement</I></TD>
-</TR>
-<TR>
-<TD><CODE>accdatV3</CODE></TD>
-<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#V3" TITLE="V3 - three-place verb">V3</A></TD>
-<TD><I>geben + acc + dat</I></TD>
-</TR>
-<TR>
-<TD><CODE>dirV3</CODE></TD>
-<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#V3" TITLE="V3 - three-place verb">V3</A></TD>
-<TD><I>senden + acc + nach</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkV3</CODE></TD>
-<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#V3" TITLE="V3 - three-place verb">V3</A></TD>
-<TD><I>sprechen + mit + über</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkVS</CODE></TD>
-<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#VS" TITLE="VS - sentence-complement verb">VS</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkV2S</CODE></TD>
-<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#V2S" TITLE="V2S - verb with NP and S complement">V2S</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkVV</CODE></TD>
-<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#VV" TITLE="VV - verb-phrase-complement verb">VV</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkV2V</CODE></TD>
-<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#V2V" TITLE="V2V - verb with NP and V complement">V2V</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkVA</CODE></TD>
-<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#VA" TITLE="VA - adjective-complement verb">VA</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkV2A</CODE></TD>
-<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#V2A" TITLE="V2A - verb with NP and AP complement">V2A</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkVQ</CODE></TD>
-<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#VQ" TITLE="VQ - question-complement verb">VQ</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkV2Q</CODE></TD>
-<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#V2Q" TITLE="V2Q - verb with NP and Q complement">V2Q</A></TD>
-<TD><I>-</I></TD>
-</TR>
-</TABLE>
-
-<A NAME="toc92"></A>
-<H2>Paradigms for Italian</H2>
-<P>
-<a name="RParadigms"></a>
-</P>
-<P>
-source <A HREF="http://www.grammaticalframework.org/lib/src/italian/ParadigmsIta.gf"><CODE>../src/italian/ParadigmsIta.gf</CODE></A>
-</P>
-<TABLE BORDER="1" CELLPADDING="4">
-<TR>
-<TH>Function</TH>
-<TH>Type</TH>
-<TH COLSPAN="2">Explanation</TH>
-</TR>
-<TR>
-<TD><CODE>Gender</CODE></TD>
-<TD><A HREF="#Type">Type</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>masculine</CODE></TD>
-<TD><A HREF="#Gender">Gender</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>feminine</CODE></TD>
-<TD><A HREF="#Gender">Gender</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>Number</CODE></TD>
-<TD><A HREF="#Type">Type</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>singular</CODE></TD>
-<TD><A HREF="#Number">Number</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>plural</CODE></TD>
-<TD><A HREF="#Number">Number</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>--Prep</CODE></TD>
-<TD><A HREF="#Type">Type</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>accusative</CODE></TD>
-<TD><A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A></TD>
-<TD><I>direct object</I></TD>
-</TR>
-<TR>
-<TD><CODE>genitive</CODE></TD>
-<TD><A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A></TD>
-<TD><I>preposition "di" and its contractions</I></TD>
-</TR>
-<TR>
-<TD><CODE>dative</CODE></TD>
-<TD><A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A></TD>
-<TD><I>preposition "a" and its contractions</I></TD>
-</TR>
-<TR>
-<TD><CODE>con_Prep</CODE></TD>
-<TD><A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A></TD>
-<TD><I>preposition "con" and its contractions</I></TD>
-</TR>
-<TR>
-<TD><CODE>da_Prep</CODE></TD>
-<TD><A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A></TD>
-<TD><I>preposition "da" and its contractions</I></TD>
-</TR>
-<TR>
-<TD><CODE>in_Prep</CODE></TD>
-<TD><A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A></TD>
-<TD><I>preposition "in" and its contractions</I></TD>
-</TR>
-<TR>
-<TD><CODE>su_Prep</CODE></TD>
-<TD><A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A></TD>
-<TD><I>preposition "su" and its contractions</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkPrep</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A></TD>
-<TD><I>other prepositions, e.g. "dopo"</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkN</CODE></TD>
-<TD><CODE>(cane</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
-<TD><I>regular noun; fem for -"a", masc otherwise</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkN</CODE></TD>
-<TD><CODE>(carne</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-&gt;</CODE> <A HREF="#Gender">Gender</A> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
-<TD><I>override default gender</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkN</CODE></TD>
-<TD><CODE>(uomo,uomini</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-&gt;</CODE> <A HREF="#Gender">Gender</A> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
-<TD><I>worst case</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkN</CODE></TD>
-<TD><A HREF="#N" TITLE="N - common noun">N</A> <CODE>-&gt;</CODE> <CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
-<TD><I>compound such as "numero" + "di telefono"</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkN2</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#N2" TITLE="N2 - relational noun">N2</A></TD>
-<TD><I>regular with genitive, e.g. "figlio" + "di"</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkN2</CODE></TD>
-<TD><A HREF="#N" TITLE="N - common noun">N</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#N2" TITLE="N2 - relational noun">N2</A></TD>
-<TD><I>arbitrary noun and preposition</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkN3</CODE></TD>
-<TD><A HREF="#N" TITLE="N - common noun">N</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#N3" TITLE="N3 - three-place relational noun">N3</A></TD>
-<TD><I>e.g. volo + da + per</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkPN</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#PN" TITLE="PN - proper name">PN</A></TD>
-<TD><I>femininne for "-a", otherwise masculine</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkPN</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#Gender">Gender</A> <CODE>-&gt;</CODE> <A HREF="#PN" TITLE="PN - proper name">PN</A></TD>
-<TD><I>set gender manually</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkA</CODE></TD>
-<TD><CODE>(bianco</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-&gt;</CODE> <A HREF="#A" TITLE="A - one-place adjective">A</A></TD>
-<TD><I>predictable adjective</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkA</CODE></TD>
-<TD><CODE>(solo,sola,soli,sole,solamente</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-&gt;</CODE> <A HREF="#A" TITLE="A - one-place adjective">A</A></TD>
-<TD><I>irregular adjective</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkA</CODE></TD>
-<TD><A HREF="#A" TITLE="A - one-place adjective">A</A> <CODE>-&gt;</CODE> <A HREF="#A" TITLE="A - one-place adjective">A</A> <CODE>-&gt;</CODE> <A HREF="#A" TITLE="A - one-place adjective">A</A></TD>
-<TD><I>special comparison, e.g. buono - migliore</I></TD>
-</TR>
-<TR>
-<TD><CODE>prefixA</CODE></TD>
-<TD><A HREF="#A" TITLE="A - one-place adjective">A</A> <CODE>-&gt;</CODE> <A HREF="#A" TITLE="A - one-place adjective">A</A></TD>
-<TD><I>adjective that comes before noun (default: after)</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkA2</CODE></TD>
-<TD><A HREF="#A" TITLE="A - one-place adjective">A</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#A2" TITLE="A2 - two-place adjective">A2</A></TD>
-<TD><I>e.g. divisibile + per</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkAdv</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#Adv" TITLE="Adv - verb-phrase-modifying adverb">Adv</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkAdV</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#AdV" TITLE="Adv - verb-phrase-modifying adverb">AdV</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkAdA</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#AdA" TITLE="AdA - adjective-modifying adverb">AdA</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkV</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#V" TITLE="V - one-place verb">V</A></TD>
-<TD><I>regular verbs in "-are"/"-ire"</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkV</CODE></TD>
-<TD><A HREF="#Verbo">Verbo</A> <CODE>-&gt;</CODE> <A HREF="#V" TITLE="V - one-place verb">V</A></TD>
-<TD><I>verbs formed by BeschIta</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkV</CODE></TD>
-<TD><CODE>(udire,odo,ode,udiamo,udiro,udii,udisti,udi,udirono,odi,udito</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-&gt;</CODE> <A HREF="#V" TITLE="V - one-place verb">V</A></TD>
-<TD><I>worst case</I></TD>
-</TR>
-<TR>
-<TD><CODE>essereV</CODE></TD>
-<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#V" TITLE="V - one-place verb">V</A></TD>
-<TD><I>force "essere" as auxiliary (default avere)</I></TD>
-</TR>
-<TR>
-<TD><CODE>reflV</CODE></TD>
-<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#V" TITLE="V - one-place verb">V</A></TD>
-<TD><I>reflexive verb (implies essere)</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkV2</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#V2" TITLE="V2 - two-place verb">V2</A></TD>
-<TD><I>regular verb, direct object</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkV2</CODE></TD>
-<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#V2" TITLE="V2 - two-place verb">V2</A></TD>
-<TD><I>direct object</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkV2</CODE></TD>
-<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#V2" TITLE="V2 - two-place verb">V2</A></TD>
-<TD><I>prepositional object</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkV3</CODE></TD>
-<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#V3" TITLE="V3 - three-place verb">V3</A></TD>
-<TD><I>parlare, a, di</I></TD>
-</TR>
-<TR>
-<TD><CODE>dirV3</CODE></TD>
-<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#V3" TITLE="V3 - three-place verb">V3</A></TD>
-<TD><I>dare,_,a</I></TD>
-</TR>
-<TR>
-<TD><CODE>dirdirV3</CODE></TD>
-<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#V3" TITLE="V3 - three-place verb">V3</A></TD>
-<TD><I>dare,_,_</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkVS</CODE></TD>
-<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#VS" TITLE="VS - sentence-complement verb">VS</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkV2S</CODE></TD>
-<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#V2S" TITLE="V2S - verb with NP and S complement">V2S</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkVV</CODE></TD>
-<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#VV" TITLE="VV - verb-phrase-complement verb">VV</A></TD>
-<TD><I>plain infinitive: "voglio parlare"</I></TD>
-</TR>
-<TR>
-<TD><CODE>deVV</CODE></TD>
-<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#VV" TITLE="VV - verb-phrase-complement verb">VV</A></TD>
-<TD><I>"cerco di parlare"</I></TD>
-</TR>
-<TR>
-<TD><CODE>aVV</CODE></TD>
-<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#VV" TITLE="VV - verb-phrase-complement verb">VV</A></TD>
-<TD><I>"arrivo a parlare"</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkV2V</CODE></TD>
-<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#V2V" TITLE="V2V - verb with NP and V complement">V2V</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkVA</CODE></TD>
-<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#VA" TITLE="VA - adjective-complement verb">VA</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkV2A</CODE></TD>
-<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#V2A" TITLE="V2A - verb with NP and AP complement">V2A</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkVQ</CODE></TD>
-<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#VQ" TITLE="VQ - question-complement verb">VQ</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkV2Q</CODE></TD>
-<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#V2Q" TITLE="V2Q - verb with NP and Q complement">V2Q</A></TD>
-<TD><I>-</I></TD>
-</TR>
-</TABLE>
-
-<A NAME="toc93"></A>
-<H2>Paradigms for Norwegian</H2>
-<P>
-<a name="RParadigms"></a>
-</P>
-<P>
-source <A HREF="http://www.grammaticalframework.org/lib/src/norwegian/ParadigmsNor.gf"><CODE>../src/norwegian/ParadigmsNor.gf</CODE></A>
-</P>
-<TABLE BORDER="1" CELLPADDING="4">
-<TR>
-<TH>Function</TH>
-<TH>Type</TH>
-<TH COLSPAN="2">Explanation</TH>
-</TR>
-<TR>
-<TD><CODE>Gender</CODE></TD>
-<TD><A HREF="#Type">Type</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>masculine</CODE></TD>
-<TD><A HREF="#Gender">Gender</A></TD>
-<TD><I>the "en" gender</I></TD>
-</TR>
-<TR>
-<TD><CODE>feminine</CODE></TD>
-<TD><A HREF="#Gender">Gender</A></TD>
-<TD><I>the "ei" gender</I></TD>
-</TR>
-<TR>
-<TD><CODE>neutrum</CODE></TD>
-<TD><A HREF="#Gender">Gender</A></TD>
-<TD><I>the "et" gender</I></TD>
-</TR>
-<TR>
-<TD><CODE>Number</CODE></TD>
-<TD><A HREF="#Type">Type</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>singular</CODE></TD>
-<TD><A HREF="#Number">Number</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>plural</CODE></TD>
-<TD><A HREF="#Number">Number</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkPrep</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A></TD>
-<TD><I>e.g. "etter"</I></TD>
-</TR>
-<TR>
-<TD><CODE>noPrep</CODE></TD>
-<TD><A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A></TD>
-<TD><I>empty string</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkN</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
-<TD><I>predictable noun, feminine for "-e" otherwise masculine</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkN</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#Gender">Gender</A> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
-<TD><I>force gender</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkN</CODE></TD>
-<TD><CODE>(dreng,drengen,drenger,drengene</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
-<TD><I>worst case</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkN2</CODE></TD>
-<TD><A HREF="#N" TITLE="N - common noun">N</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#N2" TITLE="N2 - relational noun">N2</A></TD>
-<TD><I>e.g. datter + til</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkN3</CODE></TD>
-<TD><A HREF="#N" TITLE="N - common noun">N</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#N3" TITLE="N3 - three-place relational noun">N3</A></TD>
-<TD><I>e.g forbindelse + fra + til</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkPN</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#PN" TITLE="PN - proper name">PN</A></TD>
-<TD><I>masculine</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkPN</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#Gender">Gender</A> <CODE>-&gt;</CODE> <A HREF="#PN" TITLE="PN - proper name">PN</A></TD>
-<TD><I>force gender</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkA</CODE></TD>
-<TD><CODE>(fin</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-&gt;</CODE> <A HREF="#A" TITLE="A - one-place adjective">A</A></TD>
-<TD><I>predictable adjective</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkA</CODE></TD>
-<TD><CODE>(fin,fint</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-&gt;</CODE> <A HREF="#A" TITLE="A - one-place adjective">A</A></TD>
-<TD><I>deviant neuter</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkA</CODE></TD>
-<TD><CODE>(galen,galet,galne</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-&gt;</CODE> <A HREF="#A" TITLE="A - one-place adjective">A</A></TD>
-<TD><I>also plural deviant</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkA</CODE></TD>
-<TD><CODE>(stor,stort,store,storre,storst</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-&gt;</CODE> <A HREF="#A" TITLE="A - one-place adjective">A</A></TD>
-<TD><I>worst case</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkA</CODE></TD>
-<TD><A HREF="#A" TITLE="A - one-place adjective">A</A> <CODE>-&gt;</CODE> <A HREF="#A" TITLE="A - one-place adjective">A</A></TD>
-<TD><I>comparison with mer/mest, e.g. "norsk"</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkA2</CODE></TD>
-<TD><A HREF="#A" TITLE="A - one-place adjective">A</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#A2" TITLE="A2 - two-place adjective">A2</A></TD>
-<TD><I>e.g. gift + med</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkAdv</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#Adv" TITLE="Adv - verb-phrase-modifying adverb">Adv</A></TD>
-<TD><I>e.g. her</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkAdV</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#AdV" TITLE="Adv - verb-phrase-modifying adverb">AdV</A></TD>
-<TD><I>e.g. altid</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkAdA</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#AdA" TITLE="AdA - adjective-modifying adverb">AdA</A></TD>
-<TD><I>e.g. mye</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkV</CODE></TD>
-<TD><CODE>(snakke</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-&gt;</CODE> <A HREF="#V" TITLE="V - one-place verb">V</A></TD>
-<TD><I>regular verb (first conjugation)</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkV</CODE></TD>
-<TD><CODE>(leve,levde</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-&gt;</CODE> <A HREF="#V" TITLE="V - one-place verb">V</A></TD>
-<TD><I>other past tense</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkV</CODE></TD>
-<TD><CODE>(drikke,</CODE> <CODE>drakk,</CODE> <CODE>drukket</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-&gt;</CODE> <A HREF="#V" TITLE="V - one-place verb">V</A></TD>
-<TD><I>theme of irregular verb</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkV</CODE></TD>
-<TD><CODE>(spise,spiser,spises,spiste,spist,spis</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-&gt;</CODE> <A HREF="#V" TITLE="V - one-place verb">V</A></TD>
-<TD><I>worst case</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkV</CODE></TD>
-<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#V" TITLE="V - one-place verb">V</A></TD>
-<TD><I>verb with particle, e.g. lukke + opp</I></TD>
-</TR>
-<TR>
-<TD><CODE>vaereV</CODE></TD>
-<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#V" TITLE="V - one-place verb">V</A></TD>
-<TD><I>force "være" as auxiliary (default "have")</I></TD>
-</TR>
-<TR>
-<TD><CODE>depV</CODE></TD>
-<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#V" TITLE="V - one-place verb">V</A></TD>
-<TD><I>deponent, e.g "trives"</I></TD>
-</TR>
-<TR>
-<TD><CODE>reflV</CODE></TD>
-<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#V" TITLE="V - one-place verb">V</A></TD>
-<TD><I>reflexive, e.g. "forestille seg"</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkV2</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#V2" TITLE="V2 - two-place verb">V2</A></TD>
-<TD><I>regular, direct object</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkV2</CODE></TD>
-<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#V2" TITLE="V2 - two-place verb">V2</A></TD>
-<TD><I>direct object</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkV2</CODE></TD>
-<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#V2" TITLE="V2 - two-place verb">V2</A></TD>
-<TD><I>preposition for complement</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkV3</CODE></TD>
-<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#V3" TITLE="V3 - three-place verb">V3</A></TD>
-<TD><I>snakke, med, om</I></TD>
-</TR>
-<TR>
-<TD><CODE>dirV3</CODE></TD>
-<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#V3" TITLE="V3 - three-place verb">V3</A></TD>
-<TD><I>gi,_,til</I></TD>
-</TR>
-<TR>
-<TD><CODE>dirdirV3</CODE></TD>
-<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#V3" TITLE="V3 - three-place verb">V3</A></TD>
-<TD><I>gi,_,_</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkVS</CODE></TD>
-<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#VS" TITLE="VS - sentence-complement verb">VS</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkV2S</CODE></TD>
-<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#V2S" TITLE="V2S - verb with NP and S complement">V2S</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkVV</CODE></TD>
-<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#VV" TITLE="VV - verb-phrase-complement verb">VV</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkV2V</CODE></TD>
-<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#V2V" TITLE="V2V - verb with NP and V complement">V2V</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkVA</CODE></TD>
-<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#VA" TITLE="VA - adjective-complement verb">VA</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkV2A</CODE></TD>
-<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#V2A" TITLE="V2A - verb with NP and AP complement">V2A</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkVQ</CODE></TD>
-<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#VQ" TITLE="VQ - question-complement verb">VQ</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkV2Q</CODE></TD>
-<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#V2Q" TITLE="V2Q - verb with NP and Q complement">V2Q</A></TD>
-<TD><I>-</I></TD>
-</TR>
-</TABLE>
-
-<A NAME="toc94"></A>
-<H2>Paradigms for Polish</H2>
-<P>
-<a name="RParadigms"></a>
-</P>
-<P>
-source <A HREF="http://www.grammaticalframework.org/lib/src/polish/ParadigmsPol.gf"><CODE>../src/polish/ParadigmsPol.gf</CODE></A>
-</P>
-<TABLE BORDER="1" CELLPADDING="4">
-<TR>
-<TH>Function</TH>
-<TH>Type</TH>
-<TH COLSPAN="2">Explanation</TH>
-</TR>
-<TR>
-<TD><CODE>Gender</CODE></TD>
-<TD><CODE>Type;</CODE></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>masculineP</CODE></TD>
-<TD><CODE>Gender;</CODE></TD>
-<TD><I>personal</I></TD>
-</TR>
-<TR>
-<TD><CODE>masculineA</CODE></TD>
-<TD><CODE>Gender;</CODE></TD>
-<TD><I>animate</I></TD>
-</TR>
-<TR>
-<TD><CODE>masculineI</CODE></TD>
-<TD><CODE>Gender;</CODE></TD>
-<TD><I>inanimate</I></TD>
-</TR>
-<TR>
-<TD><CODE>feminine</CODE></TD>
-<TD><CODE>Gender;</CODE></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>neuter</CODE></TD>
-<TD><CODE>Gender;</CODE></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>personal</CODE></TD>
-<TD><CODE>Animacy;</CODE></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>Case</CODE></TD>
-<TD><CODE>Type;</CODE></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>nominative</CODE></TD>
-<TD><CODE>Case;</CODE></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>genitive</CODE></TD>
-<TD><CODE>Case;</CODE></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>dative</CODE></TD>
-<TD><CODE>Case;</CODE></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>accusative</CODE></TD>
-<TD><CODE>Case;</CODE></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>instrumental</CODE></TD>
-<TD><CODE>Case;</CODE></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>locative</CODE></TD>
-<TD><CODE>Case;</CODE></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>vocative</CODE></TD>
-<TD><CODE>Case;</CODE></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>Number</CODE></TD>
-<TD><CODE>Type;</CODE></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>singular</CODE></TD>
-<TD><CODE>Number;</CODE></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>plural</CODE></TD>
-<TD><CODE>Number;</CODE></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>nKapiel</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <CODE>N;</CODE></TD>
-<TD><I>feminine, subject ending in "-l"</I></TD>
-</TR>
-<TR>
-<TD><CODE>nLodz</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <CODE>N;</CODE></TD>
-<TD><I>feminine, subject ending in "-dź"</I></TD>
-</TR>
-<TR>
-<TD><CODE>nSul</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <CODE>N;</CODE></TD>
-<TD><I>feminine, subject ending in "-l"</I></TD>
-</TR>
-<TR>
-<TD><CODE>nKonew</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <CODE>N;</CODE></TD>
-<TD><I>feminine, subject ending in "-w"</I></TD>
-</TR>
-<TR>
-<TD><CODE>nWies</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <CODE>N;</CODE></TD>
-<TD><I>feminine, subject ending in "-ś"</I></TD>
-</TR>
-<TR>
-<TD><CODE>nDlon</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <CODE>N;</CODE></TD>
-<TD><I>feminine, subject ending in "-ń"</I></TD>
-</TR>
-<TR>
-<TD><CODE>nSiec</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <CODE>N;</CODE></TD>
-<TD><I>feminine, subject ending in "-ć" (sieć),"-ść" (miłość)</I></TD>
-</TR>
-<TR>
-<TD><CODE>nDrzwi</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <CODE>N;</CODE></TD>
-<TD><I>drzwi, wnętrzności, usta</I></TD>
-</TR>
-<TR>
-<TD><CODE>nKosc</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <CODE>N;</CODE></TD>
-<TD><I>feminine, subject ending in "-ść"(kość), "-ć" (nić),</I></TD>
-</TR>
-<TR>
-<TD><CODE>nNoc</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <CODE>N;</CODE></TD>
-<TD><I>feminine, subject ending in "-c", "-cz", "-rz", "-ż"</I></TD>
-</TR>
-<TR>
-<TD><CODE>nWesz</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <CODE>N;</CODE></TD>
-<TD><I>feminine, subject ending in "-sz"</I></TD>
-</TR>
-<TR>
-<TD><CODE>nKrolowa</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <CODE>N;</CODE></TD>
-<TD><I>feminine, subject ending in "-wa", but also for "księżna"</I></TD>
-</TR>
-<TR>
-<TD><CODE>nReka</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <CODE>N;</CODE></TD>
-<TD><I>feminine "ręka", irregularly noun</I></TD>
-</TR>
-<TR>
-<TD><CODE>nApteka</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <CODE>N;</CODE></TD>
-<TD><I>feminine, subject ending in "-k", -"g", consonant alternation k:c, g:dz</I></TD>
-</TR>
-<TR>
-<TD><CODE>nDroga</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <CODE>N;</CODE></TD>
-<TD><I>feminine, subject ending in "g", consonant alternation d:dz, vowel alternation o:ó</I></TD>
-</TR>
-<TR>
-<TD><CODE>nMatka</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <CODE>N;</CODE></TD>
-<TD><I>feminine, subject ending in -k,consonant alternation k:c, fleeting e</I></TD>
-</TR>
-<TR>
-<TD><CODE>nZiemia</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <CODE>N;</CODE></TD>
-<TD><I>feminine, subject ending in "-ia"</I></TD>
-</TR>
-<TR>
-<TD><CODE>nFala</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <CODE>N;</CODE></TD>
-<TD><I>feminine, subject ending in "-l"</I></TD>
-</TR>
-<TR>
-<TD><CODE>nLilia</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <CODE>N;</CODE></TD>
-<TD><I>feminine, subject ending in "-ia"</I></TD>
-</TR>
-<TR>
-<TD><CODE>nKobieta</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <CODE>N;</CODE></TD>
-<TD><I>feminine, subject ending in "-t"</I></TD>
-</TR>
-<TR>
-<TD><CODE>nLiczba</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <CODE>N;</CODE></TD>
-<TD><I>feminine, subject ending in "-b", "-p", "-n"</I></TD>
-</TR>
-<TR>
-<TD><CODE>nSila</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <CODE>N;</CODE></TD>
-<TD><I>feminine, subject ending in "-ł", "-r"</I></TD>
-</TR>
-<TR>
-<TD><CODE>nDoba</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <CODE>N;</CODE></TD>
-<TD><I>feminine, subject ending in "-b", "-p"</I></TD>
-</TR>
-<TR>
-<TD><CODE>nWoda</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <CODE>N;</CODE></TD>
-<TD><I>feminine, subject ending in "-d"</I></TD>
-</TR>
-<TR>
-<TD><CODE>nSzkola</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <CODE>N;</CODE></TD>
-<TD><I>feminine, subject ending in "-oła", "-ra"</I></TD>
-</TR>
-<TR>
-<TD><CODE>nWojna</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <CODE>N;</CODE></TD>
-<TD><I>feminine, subject ending in two consonants: jn, łz, łn, ćm,żw</I></TD>
-</TR>
-<TR>
-<TD><CODE>nWiosna</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <CODE>N;</CODE></TD>
-<TD><I>feminine, subject ending in two consonants: sn</I></TD>
-</TR>
-<TR>
-<TD><CODE>nMgla</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <CODE>N;</CODE></TD>
-<TD><I>feminine, subject ending in "-gł"</I></TD>
-</TR>
-<TR>
-<TD><CODE>nGwiazda</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <CODE>N;</CODE></TD>
-<TD><I>feminine, subject ending in "-zd"</I></TD>
-</TR>
-<TR>
-<TD><CODE>nUlica</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <CODE>N;</CODE></TD>
-<TD><I>feminine, subject ending mainly in "-c", but also in "-ż", "-rz", "-dz"</I></TD>
-</TR>
-<TR>
-<TD><CODE>nOwca</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <CODE>N;</CODE></TD>
-<TD><I>feminine, subject ending in "-c"</I></TD>
-</TR>
-<TR>
-<TD><CODE>nDanie</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <CODE>N;</CODE></TD>
-<TD><I>neuter, subject ending in "-ni"</I></TD>
-</TR>
-<TR>
-<TD><CODE>nSerce</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <CODE>N;</CODE></TD>
-<TD><I>neuter, subject ending in a hardened consonant "-c", "-rz"</I></TD>
-</TR>
-<TR>
-<TD><CODE>nNasienie</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <CODE>N;</CODE></TD>
-<TD><I>neuter, subject ending in "-ni" (only for "nasienie")</I></TD>
-</TR>
-<TR>
-<TD><CODE>nMorze</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <CODE>N;</CODE></TD>
-<TD><I>neuter, subject ending in "-rz", "-ż"</I></TD>
-</TR>
-<TR>
-<TD><CODE>nImie</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <CODE>N;</CODE></TD>
-<TD><I>neuter, subject ending in "-ę"</I></TD>
-</TR>
-<TR>
-<TD><CODE>nCiele</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <CODE>N;</CODE></TD>
-<TD><I>neuter, subject ending in "-ę"</I></TD>
-</TR>
-<TR>
-<TD><CODE>nUdo</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <CODE>N;</CODE></TD>
-<TD><I>neuter, subject ending in hard consonant + "o"</I></TD>
-</TR>
-<TR>
-<TD><CODE>nPiwo</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <CODE>N;</CODE></TD>
-<TD><I>neuter, subject ending in a hard consonant + "o"</I></TD>
-</TR>
-<TR>
-<TD><CODE>nZero</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <CODE>N;</CODE></TD>
-<TD><I>neuter, subject ending in "-r"</I></TD>
-</TR>
-<TR>
-<TD><CODE>nNiebo</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <CODE>N;</CODE></TD>
-<TD><I>neuter, declension for "niebo"</I></TD>
-</TR>
-<TR>
-<TD><CODE>nTlo</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <CODE>N;</CODE></TD>
-<TD><I>neuter, subject ending in "-ło"</I></TD>
-</TR>
-<TR>
-<TD><CODE>nZebro</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <CODE>N;</CODE></TD>
-<TD><I>neuter, subject ending in "-r"</I></TD>
-</TR>
-<TR>
-<TD><CODE>nOkno</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <CODE>N;</CODE></TD>
-<TD><I>neuter, subject ending in "-n"</I></TD>
-</TR>
-<TR>
-<TD><CODE>nGniazdo</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <CODE>N;</CODE></TD>
-<TD><I>neuter, subject ending in "-zd", "-st"</I></TD>
-</TR>
-<TR>
-<TD><CODE>nWojsko</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <CODE>N;</CODE></TD>
-<TD><I>neuter, subject ending in "-k"</I></TD>
-</TR>
-<TR>
-<TD><CODE>nJajo</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <CODE>N;</CODE></TD>
-<TD><I>neuter, subject ending in "-j"</I></TD>
-</TR>
-<TR>
-<TD><CODE>nJablko</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <CODE>N;</CODE></TD>
-<TD><I>neuter, subject ending in "-k"</I></TD>
-</TR>
-<TR>
-<TD><CODE>nStudio</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <CODE>N;</CODE></TD>
-<TD><I>neuter, subject ending in "-n"</I></TD>
-</TR>
-<TR>
-<TD><CODE>nDziecko</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <CODE>N;</CODE></TD>
-<TD><I>neuter, subject ending in "-n"</I></TD>
-</TR>
-<TR>
-<TD><CODE>nUcho</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <CODE>N;</CODE></TD>
-<TD><I>neuter, subject ending in "-ch"</I></TD>
-</TR>
-<TR>
-<TD><CODE>nOko</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <CODE>N;</CODE></TD>
-<TD><I>neuter, subject ending in "-k"</I></TD>
-</TR>
-<TR>
-<TD><CODE>nFacet</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <CODE>N;</CODE></TD>
-<TD><I>masculine personal, subject ending in a hard consonant "-t", -"n", nom pl "-i"</I></TD>
-</TR>
-<TR>
-<TD><CODE>nArab</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <CODE>N;</CODE></TD>
-<TD><I>masculine personal, subject ending in a hard consonant "-t", -"n", nom pl "-y"</I></TD>
-</TR>
-<TR>
-<TD><CODE>nPrzyjaciel</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <CODE>N;</CODE></TD>
-<TD><I>masculine personal, subject ending in a hard consonant "-l"</I></TD>
-</TR>
-<TR>
-<TD><CODE>nKowal</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <CODE>N;</CODE></TD>
-<TD><I>masculine personal, subject ending in a hard consonant "-l"</I></TD>
-</TR>
-<TR>
-<TD><CODE>nLekarz</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <CODE>N;</CODE></TD>
-<TD><I>masculine personal ending in -rz, -ż, -cz, -sz (piekarz, lekarz, papież, tłumacz, piwosz)</I></TD>
-</TR>
-<TR>
-<TD><CODE>nKrol</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <CODE>N;</CODE></TD>
-<TD><I>masculine personal, subject ending in "-ul"</I></TD>
-</TR>
-<TR>
-<TD><CODE>nMaz</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <CODE>N;</CODE></TD>
-<TD><I>masculine personal</I></TD>
-</TR>
-<TR>
-<TD><CODE>nWrog</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <CODE>N;</CODE></TD>
-<TD><I>masculine personal, subject ending in "-g"; only for "wróg"</I></TD>
-</TR>
-<TR>
-<TD><CODE>nKsiadz</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <CODE>N;</CODE></TD>
-<TD><I>masculine personal</I></TD>
-</TR>
-<TR>
-<TD><CODE>nOjciec</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <CODE>N;</CODE></TD>
-<TD><I>masculine personal for "ojciec"</I></TD>
-</TR>
-<TR>
-<TD><CODE>nBrat</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <CODE>N;</CODE></TD>
-<TD><I>masculine personal</I></TD>
-</TR>
-<TR>
-<TD><CODE>nBog</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <CODE>N;</CODE></TD>
-<TD><I>masculine personal</I></TD>
-</TR>
-<TR>
-<TD><CODE>nChlopiec</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <CODE>N;</CODE></TD>
-<TD><I>masculine personal</I></TD>
-</TR>
-<TR>
-<TD><CODE>nMezczyzna</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <CODE>N;</CODE></TD>
-<TD><I>masculine personal</I></TD>
-</TR>
-<TR>
-<TD><CODE>nKon</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <CODE>N;</CODE></TD>
-<TD><I>masculine animate, for "koń"</I></TD>
-</TR>
-<TR>
-<TD><CODE>nWaz</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <CODE>N;</CODE></TD>
-<TD><I>masculine animate, for "wąż"</I></TD>
-</TR>
-<TR>
-<TD><CODE>nPtak</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <CODE>N;</CODE></TD>
-<TD><I>masculine animate, subject ending in "-k"</I></TD>
-</TR>
-<TR>
-<TD><CODE>nKot</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <CODE>N;</CODE></TD>
-<TD><I>masculine animate, for "kot"</I></TD>
-</TR>
-<TR>
-<TD><CODE>nPies</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <CODE>N;</CODE></TD>
-<TD><I>masculine animate, for "pies"</I></TD>
-</TR>
-<TR>
-<TD><CODE>nBat</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <CODE>N;</CODE></TD>
-<TD><I>masculine inanimate, subject ending in a vowel + hard consonant</I></TD>
-</TR>
-<TR>
-<TD><CODE>nChleb</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <CODE>N;</CODE></TD>
-<TD><I>masculine inanimate, subject ending in a vowel + hard consonant</I></TD>
-</TR>
-<TR>
-<TD><CODE>nSer</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <CODE>N;</CODE></TD>
-<TD><I>masculine inanimate, subject ending in "-r"</I></TD>
-</TR>
-<TR>
-<TD><CODE>nZab</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <CODE>N;</CODE></TD>
-<TD><I>masculine inanimate, subject ending in "-ąb"</I></TD>
-</TR>
-<TR>
-<TD><CODE>nKosciol</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <CODE>N;</CODE></TD>
-<TD><I>masculine inanimate, for "kosciół"</I></TD>
-</TR>
-<TR>
-<TD><CODE>nCien</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <CODE>N;</CODE></TD>
-<TD><I>masculine inanimate, subject ending in a week consonant</I></TD>
-</TR>
-<TR>
-<TD><CODE>nPien</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <CODE>N;</CODE></TD>
-<TD><I>masculine inanimate, subject ending in a week consonant</I></TD>
-</TR>
-<TR>
-<TD><CODE>nLisc</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <CODE>N;</CODE></TD>
-<TD><I>masculine inanimate, subject ending in a vowel + hard consonant</I></TD>
-</TR>
-<TR>
-<TD><CODE>nKoc</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <CODE>N;</CODE></TD>
-<TD><I>masculine inanimate, subject ending in a hardened consonant</I></TD>
-</TR>
-<TR>
-<TD><CODE>nWiersz</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <CODE>N;</CODE></TD>
-<TD><I>masculine inanimate, subject ending in a hardened consonant</I></TD>
-</TR>
-<TR>
-<TD><CODE>nDzien</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <CODE>N;</CODE></TD>
-<TD><I>masculine inanimate, for "dzień"</I></TD>
-</TR>
-<TR>
-<TD><CODE>nKajak</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <CODE>N;</CODE></TD>
-<TD><I>masculine inanimate, subject ending in -g or -k</I></TD>
-</TR>
-<TR>
-<TD><CODE>nMlotek</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <CODE>N;</CODE></TD>
-<TD><I>masculine inanimate, subject ending in -ek</I></TD>
-</TR>
-<TR>
-<TD><CODE>nMiech</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <CODE>N;</CODE></TD>
-<TD><I>masculine inanimate, subject ending in -ch</I></TD>
-</TR>
-<TR>
-<TD><CODE>nSad</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <CODE>N;</CODE></TD>
-<TD><I>masculine inanimate, subject ending in a hard consonant</I></TD>
-</TR>
-<TR>
-<TD><CODE>nDym</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <CODE>N;</CODE></TD>
-<TD><I>masculine inanimate, subject ending in a hard consonant</I></TD>
-</TR>
-<TR>
-<TD><CODE>nWal</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <CODE>N;</CODE></TD>
-<TD><I>masculine inanimate, subject ending in a vowel + hard consonant</I></TD>
-</TR>
-<TR>
-<TD><CODE>nDol</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <CODE>N;</CODE></TD>
-<TD><I>masculine inanimate, subject ending in a vowel + hard consonant</I></TD>
-</TR>
-<TR>
-<TD><CODE>nOgrod</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <CODE>N;</CODE></TD>
-<TD><I>masculine inanimate, subject ending in a vowel + hard consonant</I></TD>
-</TR>
-<TR>
-<TD><CODE>nKwiat</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <CODE>N;</CODE></TD>
-<TD><I>masculine inanimate, subject ending in a vowel + hard consonant</I></TD>
-</TR>
-<TR>
-<TD><CODE>nLas</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <CODE>N;</CODE></TD>
-<TD><I>masculine inanimate, subject ending in a vowel + hard consonant</I></TD>
-</TR>
-<TR>
-<TD><CODE>nWiatr</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <CODE>N;</CODE></TD>
-<TD><I>masculine inanimate, subject ending in a vowel + hard consonant</I></TD>
-</TR>
-<TR>
-<TD><CODE>nPopiol</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <CODE>N;</CODE></TD>
-<TD><I>masculine inanimate, subject ending in a vowel + hard consonant</I></TD>
-</TR>
-<TR>
-<TD><CODE>nPokoj</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <CODE>N;</CODE></TD>
-<TD><I>masculine inanimate, subject ending in -ój</I></TD>
-</TR>
-<TR>
-<TD><CODE>nGaj</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <CODE>N;</CODE></TD>
-<TD><I>masculine inanimate, subject ending in a vowel + hard consonant j</I></TD>
-</TR>
-<TR>
-<TD><CODE>nBrzeg</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <CODE>N;</CODE></TD>
-<TD><I>masculine inanimate, subject ending in -g or -k</I></TD>
-</TR>
-<TR>
-<TD><CODE>nRok</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <CODE>Str</CODE> <CODE>-&gt;</CODE> <CODE>N;</CODE></TD>
-<TD><I>masculine inanimate for "rok", form in pl irregular</I></TD>
-</TR>
-<TR>
-<TD><CODE>nProg</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <CODE>N;</CODE></TD>
-<TD><I>masculine inanimate, subject ending in -óg</I></TD>
-</TR>
-<TR>
-<TD><CODE>nStatek</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <CODE>N;</CODE></TD>
-<TD><I>masculine inanimate, subject ending in -ek</I></TD>
-</TR>
-<TR>
-<TD><CODE>nDom</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <CODE>N;</CODE></TD>
-<TD><I>masculine inanimate, subject ending in -ch and for dom</I></TD>
-</TR>
-</TABLE>
-
-<A NAME="toc95"></A>
-<H2>Paradigms for Romanian</H2>
-<P>
-<a name="RParadigms"></a>
-</P>
-<P>
-source <A HREF="http://www.grammaticalframework.org/lib/src/romanian/ParadigmsRon.gf"><CODE>../src/romanian/ParadigmsRon.gf</CODE></A>
-</P>
-<TABLE BORDER="1" CELLPADDING="4">
-<TR>
-<TH>Function</TH>
-<TH>Type</TH>
-<TH COLSPAN="2">Explanation</TH>
-</TR>
-<TR>
-<TD><CODE>NGender</CODE></TD>
-<TD><A HREF="#Type">Type</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>masculine</CODE></TD>
-<TD><A HREF="#NGender">NGender</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>feminine</CODE></TD>
-<TD><A HREF="#NGender">NGender</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>neuter</CODE></TD>
-<TD><A HREF="#NGender">NGender</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>Gender</CODE></TD>
-<TD><A HREF="#Type">Type</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>Masculine</CODE></TD>
-<TD><A HREF="#Gender">Gender</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>Feminine</CODE></TD>
-<TD><A HREF="#Gender">Gender</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>Anim</CODE></TD>
-<TD><A HREF="#Type">Type</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>animate</CODE></TD>
-<TD><A HREF="#Anim">Anim</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>inanimate</CODE></TD>
-<TD><CODE>Anim;</CODE></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>Number</CODE></TD>
-<TD><A HREF="#Type">Type</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>singular</CODE></TD>
-<TD><A HREF="#Number">Number</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>plural</CODE></TD>
-<TD><A HREF="#Number">Number</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>Preposition</CODE></TD>
-<TD><A HREF="#Type">Type</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>NCase</CODE></TD>
-<TD><A HREF="#Type">Type</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>Acc</CODE></TD>
-<TD><A HREF="#NCase">NCase</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>Dat</CODE></TD>
-<TD><A HREF="#NCase">NCase</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>Gen</CODE></TD>
-<TD><A HREF="#NCase">NCase</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>Nom</CODE></TD>
-<TD><A HREF="#NCase">NCase</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkPrep</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <CODE>NCase-&gt;</CODE> <A HREF="#Bool">Bool</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkPrep</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#NCase">NCase</A> <CODE>-&gt;</CODE> <CODE>Prep;</CODE></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>noPrep</CODE></TD>
-<TD><A HREF="#NCase">NCase</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkN</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
-<TD><I>Singular, infers gender and Plural</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkN</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#NGender">NGender</A> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
-<TD><I>worst case: Singular + Plural + gender</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkN</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <CODE>Str</CODE> <CODE>-&gt;</CODE> <CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
-<TD><I>very irregular nouns - feminine</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkN</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
-<TD><I>Singular + Plural, infers gender</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkN</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#NGender">NGender</A> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
-<TD><I>Singular + gender, infers Plural</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkNR</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <CODE>N;</CODE></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkN2</CODE></TD>
-<TD><A HREF="#N" TITLE="N - common noun">N</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#N2" TITLE="N2 - relational noun">N2</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkN3</CODE></TD>
-<TD><A HREF="#N" TITLE="N - common noun">N</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#N3" TITLE="N3 - three-place relational noun">N3</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkPN</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#PN" TITLE="PN - proper name">PN</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkPN</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#Gender">Gender</A> <CODE>-&gt;</CODE> <A HREF="#Number">Number</A> <CODE>-&gt;</CODE> <A HREF="#PN" TITLE="PN - proper name">PN</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkPN</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#Gender">Gender</A> <CODE>-&gt;</CODE> <A HREF="#PN" TITLE="PN - proper name">PN</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkPN</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#Gender">Gender</A> <CODE>-&gt;</CODE> <A HREF="#Number">Number</A> <CODE>-&gt;</CODE> <A HREF="#PN" TITLE="PN - proper name">PN</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkInAn</CODE></TD>
-<TD><A HREF="#PN" TITLE="PN - proper name">PN</A> <CODE>-&gt;</CODE> <A HREF="#PN" TITLE="PN - proper name">PN</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkPropNoun</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#Gender">Gender</A> <CODE>-&gt;</CODE> <A HREF="#PN" TITLE="PN - proper name">PN</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkA</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#A" TITLE="A - one-place adjective">A</A></TD>
-<TD><I>regular adjectives</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkA</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <CODE>Str</CODE> <CODE>-&gt;</CODE> <CODE>Str</CODE> <CODE>-&gt;</CODE> <CODE>Str</CODE> <CODE>-&gt;</CODE> <CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#A" TITLE="A - one-place adjective">A</A> <CODE>--worst</CODE> <CODE>case</CODE></TD>
-<TD><I>all 4 forms are needed + form for adverb</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkA</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <CODE>Str</CODE> <CODE>-&gt;</CODE> <CODE>Str</CODE> <CODE>-&gt;</CODE> <CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#A" TITLE="A - one-place adjective">A</A></TD>
-<TD><I>4 forms are needed</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkA2</CODE></TD>
-<TD><A HREF="#A" TITLE="A - one-place adjective">A</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#A2" TITLE="A2 - two-place adjective">A2</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkV</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#V" TITLE="V - one-place verb">V</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkV2S</CODE></TD>
-<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#V2S" TITLE="V2S - verb with NP and S complement">V2S</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkV2V</CODE></TD>
-<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#V2V" TITLE="V2V - verb with NP and V complement">V2V</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkVA</CODE></TD>
-<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#VA" TITLE="VA - adjective-complement verb">VA</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkV2A</CODE></TD>
-<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#V2A" TITLE="V2A - verb with NP and AP complement">V2A</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkVQ</CODE></TD>
-<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#VQ" TITLE="VQ - question-complement verb">VQ</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkV2Q</CODE></TD>
-<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#V2Q" TITLE="V2Q - verb with NP and Q complement">V2Q</A></TD>
-<TD><I>-</I></TD>
-</TR>
-</TABLE>
-
-<A NAME="toc96"></A>
-<H2>Paradigms for Russian</H2>
-<P>
-<a name="RParadigms"></a>
-</P>
-<P>
-source <A HREF="http://www.grammaticalframework.org/lib/src/russian/ParadigmsRus.gf"><CODE>../src/russian/ParadigmsRus.gf</CODE></A>
-</P>
-<TABLE BORDER="1" CELLPADDING="4">
-<TR>
-<TH>Function</TH>
-<TH>Type</TH>
-<TH COLSPAN="2">Explanation</TH>
-</TR>
-<TR>
-<TD><CODE>Gender</CODE></TD>
-<TD><A HREF="#Type">Type</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>masculine</CODE></TD>
-<TD><A HREF="#Gender">Gender</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>feminine</CODE></TD>
-<TD><A HREF="#Gender">Gender</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>neuter</CODE></TD>
-<TD><A HREF="#Gender">Gender</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>Case</CODE></TD>
-<TD><A HREF="#Type">Type</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>nominative</CODE></TD>
-<TD><A HREF="#Case">Case</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>genitive</CODE></TD>
-<TD><A HREF="#Case">Case</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>dative</CODE></TD>
-<TD><A HREF="#Case">Case</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>accusative</CODE></TD>
-<TD><A HREF="#Case">Case</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>instructive</CODE></TD>
-<TD><A HREF="#Case">Case</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>prepositional</CODE></TD>
-<TD><A HREF="#Case">Case</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>Number</CODE></TD>
-<TD><A HREF="#Type">Type</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>singular</CODE></TD>
-<TD><A HREF="#Number">Number</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>plural</CODE></TD>
-<TD><A HREF="#Number">Number</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkN</CODE></TD>
-<TD><CODE>(karta</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkN</CODE></TD>
-<TD><CODE>(tigr</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-&gt;</CODE> <A HREF="#Animacy">Animacy</A> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkN</CODE></TD>
-<TD><CODE>(nomSg,</CODE> <CODE>genSg,</CODE> <CODE>datSg,</CODE> <CODE>accSg,</CODE> <CODE>instSg,</CODE> <CODE>preposSg,</CODE> <CODE>prepos2Sg,</CODE> <CODE>nomPl,</CODE> <CODE>genPl,</CODE> <CODE>datPl,</CODE> <CODE>accPl,</CODE> <CODE>instPl,</CODE> <CODE>preposPl</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-&gt;</CODE> <A HREF="#Gender">Gender</A> <CODE>-&gt;</CODE> <A HREF="#Animacy">Animacy</A> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkN2</CODE></TD>
-<TD><A HREF="#N" TITLE="N - common noun">N</A> <CODE>-&gt;</CODE> <A HREF="#N2" TITLE="N2 - relational noun">N2</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkN2</CODE></TD>
-<TD><A HREF="#N" TITLE="N - common noun">N</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#N2" TITLE="N2 - relational noun">N2</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkN3</CODE></TD>
-<TD><A HREF="#N" TITLE="N - common noun">N</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#N3" TITLE="N3 - three-place relational noun">N3</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkPN</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#Gender">Gender</A> <CODE>-&gt;</CODE> <A HREF="#Animacy">Animacy</A> <CODE>-&gt;</CODE> <A HREF="#PN" TITLE="PN - proper name">PN</A></TD>
-<TD><I>"Иван", "Маша"</I></TD>
-</TR>
-<TR>
-<TD><CODE>nounPN</CODE></TD>
-<TD><A HREF="#N" TITLE="N - common noun">N</A> <CODE>-&gt;</CODE> <A HREF="#PN" TITLE="PN - proper name">PN</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkA</CODE></TD>
-<TD><CODE>(positive</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-&gt;</CODE> <A HREF="#A" TITLE="A - one-place adjective">A</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkA</CODE></TD>
-<TD><CODE>(positive,</CODE> <CODE>comparative</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-&gt;</CODE> <A HREF="#A" TITLE="A - one-place adjective">A</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkA2</CODE></TD>
-<TD><A HREF="#A" TITLE="A - one-place adjective">A</A> <CODE>-&gt;</CODE> <CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#Case">Case</A> <CODE>-&gt;</CODE> <A HREF="#A2" TITLE="A2 - two-place adjective">A2</A></TD>
-<TD><I>"делим на"</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkAdv</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#Adv" TITLE="Adv - verb-phrase-modifying adverb">Adv</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkV</CODE></TD>
-<TD><A HREF="#Aspect">Aspect</A> <CODE>-&gt;</CODE> <CODE>(presSg1,presSg2,presSg3,presPl1,presPl2,presPl3,pastSgMasc,imp,inf:</CODE> <CODE>Str)</CODE> <CODE>-&gt;</CODE> <A HREF="#V" TITLE="V - one-place verb">V</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkV2</CODE></TD>
-<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#Case">Case</A> <CODE>-&gt;</CODE> <A HREF="#V2" TITLE="V2 - two-place verb">V2</A></TD>
-<TD><I>"войти в дом"; "в", accusative</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkV3</CODE></TD>
-<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <CODE>Str</CODE> <CODE>-&gt;</CODE> <CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#Case">Case</A> <CODE>-&gt;</CODE> <A HREF="#Case">Case</A> <CODE>-&gt;</CODE> <A HREF="#V3" TITLE="V3 - three-place verb">V3</A></TD>
-<TD><I>"сложить письмо в конверт"</I></TD>
-</TR>
-<TR>
-<TD><CODE>dirV2</CODE></TD>
-<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#V2" TITLE="V2 - two-place verb">V2</A></TD>
-<TD><I>"видеть", "любить"</I></TD>
-</TR>
-<TR>
-<TD><CODE>tvDirDir</CODE></TD>
-<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#V3" TITLE="V3 - three-place verb">V3</A></TD>
-<TD><I>-</I></TD>
-</TR>
-</TABLE>
-
-<A NAME="toc97"></A>
-<H2>Paradigms for Spanish</H2>
-<P>
-<a name="RParadigms"></a>
-</P>
-<P>
-source <A HREF="http://www.grammaticalframework.org/lib/src/spanish/ParadigmsSpa.gf"><CODE>../src/spanish/ParadigmsSpa.gf</CODE></A>
-</P>
-<TABLE BORDER="1" CELLPADDING="4">
-<TR>
-<TH>Function</TH>
-<TH>Type</TH>
-<TH COLSPAN="2">Explanation</TH>
-</TR>
-<TR>
-<TD><CODE>Gender</CODE></TD>
-<TD><A HREF="#Type">Type</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>masculine</CODE></TD>
-<TD><A HREF="#Gender">Gender</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>feminine</CODE></TD>
-<TD><A HREF="#Gender">Gender</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>Number</CODE></TD>
-<TD><A HREF="#Type">Type</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>singular</CODE></TD>
-<TD><A HREF="#Number">Number</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>plural</CODE></TD>
-<TD><A HREF="#Number">Number</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>accusative</CODE></TD>
-<TD><A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A></TD>
-<TD><I>direct object</I></TD>
-</TR>
-<TR>
-<TD><CODE>genitive</CODE></TD>
-<TD><A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A></TD>
-<TD><I>preposition "de" and its contractions</I></TD>
-</TR>
-<TR>
-<TD><CODE>dative</CODE></TD>
-<TD><A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A></TD>
-<TD><I>preposition "a" and its contractions</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkPrep</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A></TD>
-<TD><I>other preposition</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkN</CODE></TD>
-<TD><CODE>(luz</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
-<TD><I>predictable; feminine for "-a"/"-z", otherwise masculine</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkN</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#Gender">Gender</A> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
-<TD><I>force gender</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkN</CODE></TD>
-<TD><CODE>(baston,bastones</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-&gt;</CODE> <A HREF="#Gender">Gender</A> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
-<TD><I>worst case</I></TD>
-</TR>
-<TR>
-<TD><CODE>compN</CODE></TD>
-<TD><A HREF="#N" TITLE="N - common noun">N</A> <CODE>-&gt;</CODE> <CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
-<TD><I>compound, e.g. "número" + "de teléfono"</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkN2</CODE></TD>
-<TD><A HREF="#N" TITLE="N - common noun">N</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#N2" TITLE="N2 - relational noun">N2</A></TD>
-<TD><I>relational noun with preposition</I></TD>
-</TR>
-<TR>
-<TD><CODE>deN2</CODE></TD>
-<TD><A HREF="#N" TITLE="N - common noun">N</A> <CODE>-&gt;</CODE> <A HREF="#N2" TITLE="N2 - relational noun">N2</A></TD>
-<TD><I>relational noun with preposition "de"</I></TD>
-</TR>
-<TR>
-<TD><CODE>aN2</CODE></TD>
-<TD><A HREF="#N" TITLE="N - common noun">N</A> <CODE>-&gt;</CODE> <A HREF="#N2" TITLE="N2 - relational noun">N2</A></TD>
-<TD><I>relational noun with preposition "a"</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkN3</CODE></TD>
-<TD><A HREF="#N" TITLE="N - common noun">N</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#N3" TITLE="N3 - three-place relational noun">N3</A></TD>
-<TD><I>prepositions for two complements</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkPN</CODE></TD>
-<TD><CODE>(Anna</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-&gt;</CODE> <A HREF="#PN" TITLE="PN - proper name">PN</A></TD>
-<TD><I>feminine for "-a"</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkPN</CODE></TD>
-<TD><CODE>(Pilar</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-&gt;</CODE> <A HREF="#Gender">Gender</A> <CODE>-&gt;</CODE> <A HREF="#PN" TITLE="PN - proper name">PN</A></TD>
-<TD><I>force gender</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkA</CODE></TD>
-<TD><CODE>(util</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-&gt;</CODE> <A HREF="#A" TITLE="A - one-place adjective">A</A></TD>
-<TD><I>predictable adjective</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkA</CODE></TD>
-<TD><CODE>(solo,sola,solos,solas,solamente</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-&gt;</CODE> <A HREF="#A" TITLE="A - one-place adjective">A</A></TD>
-<TD><I>worst-case</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkA</CODE></TD>
-<TD><CODE>(bueno</CODE> <CODE>:</CODE> <CODE>A)</CODE> <CODE>-&gt;</CODE> <CODE>(mejor</CODE> <CODE>:</CODE> <CODE>A)</CODE> <CODE>-&gt;</CODE> <A HREF="#A" TITLE="A - one-place adjective">A</A></TD>
-<TD><I>special comparison (default with "mas")</I></TD>
-</TR>
-<TR>
-<TD><CODE>prefixA</CODE></TD>
-<TD><A HREF="#A" TITLE="A - one-place adjective">A</A> <CODE>-&gt;</CODE> <A HREF="#A" TITLE="A - one-place adjective">A</A></TD>
-<TD><I>adjective before noun (default after noun)</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkA2</CODE></TD>
-<TD><A HREF="#A" TITLE="A - one-place adjective">A</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#A2" TITLE="A2 - two-place adjective">A2</A></TD>
-<TD><I>e.g. "casado" + dative</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkAdv</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#Adv" TITLE="Adv - verb-phrase-modifying adverb">Adv</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkAdV</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#AdV" TITLE="Adv - verb-phrase-modifying adverb">AdV</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkAdA</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#AdA" TITLE="AdA - adjective-modifying adverb">AdA</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkV</CODE></TD>
-<TD><CODE>(pagar</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-&gt;</CODE> <A HREF="#V" TITLE="V - one-place verb">V</A></TD>
-<TD><I>regular in "-ar", "-er", ".ir"</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkV</CODE></TD>
-<TD><CODE>(mostrar,muestro</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-&gt;</CODE> <A HREF="#V" TITLE="V - one-place verb">V</A></TD>
-<TD><I>regular with vowel alternation</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkV</CODE></TD>
-<TD><A HREF="#Verbum">Verbum</A> <CODE>-&gt;</CODE> <A HREF="#V" TITLE="V - one-place verb">V</A></TD>
-<TD><I>import verb constructed with BeschSpa</I></TD>
-</TR>
-<TR>
-<TD><CODE>reflV</CODE></TD>
-<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#V" TITLE="V - one-place verb">V</A></TD>
-<TD><I>reflexive verb</I></TD>
-</TR>
-<TR>
-<TD><CODE>special_ppV</CODE></TD>
-<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#V" TITLE="V - one-place verb">V</A></TD>
-<TD><I>deviant past participle, e.g. abrir - abierto</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkV2</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#V2" TITLE="V2 - two-place verb">V2</A></TD>
-<TD><I>regular, direct object</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkV2</CODE></TD>
-<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#V2" TITLE="V2 - two-place verb">V2</A></TD>
-<TD><I>direct object</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkV2</CODE></TD>
-<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#V2" TITLE="V2 - two-place verb">V2</A></TD>
-<TD><I>other object</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkV3</CODE></TD>
-<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#V3" TITLE="V3 - three-place verb">V3</A></TD>
-<TD><I>e.g. hablar, a, di</I></TD>
-</TR>
-<TR>
-<TD><CODE>dirV3</CODE></TD>
-<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#V3" TITLE="V3 - three-place verb">V3</A></TD>
-<TD><I>e.g. dar,(accusative),a</I></TD>
-</TR>
-<TR>
-<TD><CODE>dirdirV3</CODE></TD>
-<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#V3" TITLE="V3 - three-place verb">V3</A></TD>
-<TD><I>e.g. dar,(dative),(accusative)</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkVS</CODE></TD>
-<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#VS" TITLE="VS - sentence-complement verb">VS</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkV2S</CODE></TD>
-<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#V2S" TITLE="V2S - verb with NP and S complement">V2S</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkVV</CODE></TD>
-<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#VV" TITLE="VV - verb-phrase-complement verb">VV</A></TD>
-<TD><I>plain infinitive: "quiero hablar"</I></TD>
-</TR>
-<TR>
-<TD><CODE>deVV</CODE></TD>
-<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#VV" TITLE="VV - verb-phrase-complement verb">VV</A></TD>
-<TD><I>"terminar de hablar"</I></TD>
-</TR>
-<TR>
-<TD><CODE>aVV</CODE></TD>
-<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#VV" TITLE="VV - verb-phrase-complement verb">VV</A></TD>
-<TD><I>"aprender a hablar"</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkV2V</CODE></TD>
-<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#V2V" TITLE="V2V - verb with NP and V complement">V2V</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkVA</CODE></TD>
-<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#VA" TITLE="VA - adjective-complement verb">VA</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkV2A</CODE></TD>
-<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#V2A" TITLE="V2A - verb with NP and AP complement">V2A</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkVQ</CODE></TD>
-<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#VQ" TITLE="VQ - question-complement verb">VQ</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkV2Q</CODE></TD>
-<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#V2Q" TITLE="V2Q - verb with NP and Q complement">V2Q</A></TD>
-<TD><I>-</I></TD>
-</TR>
-</TABLE>
-
-<A NAME="toc98"></A>
-<H2>Paradigms for Swedish</H2>
-<P>
-<a name="RParadigms"></a>
-</P>
-<P>
-source <A HREF="http://www.grammaticalframework.org/lib/src/swedish/ParadigmsSwe.gf"><CODE>../src/swedish/ParadigmsSwe.gf</CODE></A>
-</P>
-<TABLE BORDER="1" CELLPADDING="4">
-<TR>
-<TH>Function</TH>
-<TH>Type</TH>
-<TH COLSPAN="2">Explanation</TH>
-</TR>
-<TR>
-<TD><CODE>Gender</CODE></TD>
-<TD><A HREF="#Type">Type</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>utrum</CODE></TD>
-<TD><A HREF="#Gender">Gender</A></TD>
-<TD><I>the "en" gender</I></TD>
-</TR>
-<TR>
-<TD><CODE>neutrum</CODE></TD>
-<TD><A HREF="#Gender">Gender</A></TD>
-<TD><I>the "ett" gender</I></TD>
-</TR>
-<TR>
-<TD><CODE>Number</CODE></TD>
-<TD><A HREF="#Type">Type</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>singular</CODE></TD>
-<TD><A HREF="#Number">Number</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>plural</CODE></TD>
-<TD><A HREF="#Number">Number</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkPrep</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A></TD>
-<TD><I>e.g. "till"</I></TD>
-</TR>
-<TR>
-<TD><CODE>noPrep</CODE></TD>
-<TD><A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A></TD>
-<TD><I>empty string</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkN</CODE></TD>
-<TD><CODE>(apa</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
-<TD><I>predictable nouns: apa-apor, rike-riken, or bil-bilar</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkN</CODE></TD>
-<TD><CODE>(nyckel,nycklar</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
-<TD><I>singular and plural suffice for most nouns</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkN</CODE></TD>
-<TD><CODE>(museum,museet,museer,museerna</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
-<TD><I>worst case for nouns</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkN2</CODE></TD>
-<TD><A HREF="#N" TITLE="N - common noun">N</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#N2" TITLE="N2 - relational noun">N2</A></TD>
-<TD><I>e.g. syster - till</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkN3</CODE></TD>
-<TD><A HREF="#N" TITLE="N - common noun">N</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#N3" TITLE="N3 - three-place relational noun">N3</A></TD>
-<TD><I>e.g. flyg - från - till</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkPN</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#PN" TITLE="PN - proper name">PN</A></TD>
-<TD><I>default gender utrum</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkPN</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#Gender">Gender</A> <CODE>-&gt;</CODE> <A HREF="#PN" TITLE="PN - proper name">PN</A></TD>
-<TD><I>set other gender</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkPN</CODE></TD>
-<TD><CODE>(jesus,jesu</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-&gt;</CODE> <A HREF="#Gender">Gender</A> <CODE>-&gt;</CODE> <A HREF="#PN" TITLE="PN - proper name">PN</A></TD>
-<TD><I>irregular genitive</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkA</CODE></TD>
-<TD><CODE>(billig</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-&gt;</CODE> <A HREF="#A" TITLE="A - one-place adjective">A</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkA</CODE></TD>
-<TD><CODE>(bred,brett</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-&gt;</CODE> <A HREF="#A" TITLE="A - one-place adjective">A</A></TD>
-<TD><I>predictable adjective</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkA</CODE></TD>
-<TD><CODE>(tung,tyngre,tyngst</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-&gt;</CODE> <A HREF="#A" TITLE="A - one-place adjective">A</A></TD>
-<TD><I>irregular comparison</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkA</CODE></TD>
-<TD><CODE>(god,gott,goda,battre,bast</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-&gt;</CODE> <A HREF="#A" TITLE="A - one-place adjective">A</A></TD>
-<TD><I>very irregular</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkA</CODE></TD>
-<TD><CODE>(liten,litet,lilla,sma,mindre,minst,minsta</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-&gt;</CODE> <A HREF="#A" TITLE="A - one-place adjective">A</A></TD>
-<TD><I>worst case</I></TD>
-</TR>
-<TR>
-<TD><CODE>compoundA</CODE></TD>
-<TD><A HREF="#A" TITLE="A - one-place adjective">A</A> <CODE>-&gt;</CODE> <A HREF="#A" TITLE="A - one-place adjective">A</A></TD>
-<TD><I>force comparison by mera - mest</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkA2</CODE></TD>
-<TD><A HREF="#A" TITLE="A - one-place adjective">A</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#A2" TITLE="A2 - two-place adjective">A2</A></TD>
-<TD><I>e.g. delbar - med</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkAdv</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#Adv" TITLE="Adv - verb-phrase-modifying adverb">Adv</A></TD>
-<TD><I>postverbal, e.g. här</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkAdV</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#AdV" TITLE="Adv - verb-phrase-modifying adverb">AdV</A></TD>
-<TD><I>preverbal, e.g. alltid</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkAdA</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#AdA" TITLE="AdA - adjective-modifying adverb">AdA</A></TD>
-<TD><I>modify adjective, e.g. tämligen</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkV</CODE></TD>
-<TD><CODE>(stämmer</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-&gt;</CODE> <A HREF="#V" TITLE="V - one-place verb">V</A></TD>
-<TD><I>predictable verb: use present indicative</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkV</CODE></TD>
-<TD><CODE>(dricka,drack,druckit</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-&gt;</CODE> <A HREF="#V" TITLE="V - one-place verb">V</A></TD>
-<TD><I>the theme of an irregular verb</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkV</CODE></TD>
-<TD><CODE>(gå,går,gå,gick,gått,gången</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-&gt;</CODE> <A HREF="#V" TITLE="V - one-place verb">V</A></TD>
-<TD><I>worst case</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkV</CODE></TD>
-<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#V" TITLE="V - one-place verb">V</A></TD>
-<TD><I>particle verb, e.g. passa - på</I></TD>
-</TR>
-<TR>
-<TD><CODE>depV</CODE></TD>
-<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#V" TITLE="V - one-place verb">V</A></TD>
-<TD><I>deponent verb, e.g. andas</I></TD>
-</TR>
-<TR>
-<TD><CODE>reflV</CODE></TD>
-<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#V" TITLE="V - one-place verb">V</A></TD>
-<TD><I>reflexive verb, e.g. ångra sig</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkV2</CODE></TD>
-<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#V2" TITLE="V2 - two-place verb">V2</A></TD>
-<TD><I>direct transitive</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkV2</CODE></TD>
-<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#V2" TITLE="V2 - two-place verb">V2</A></TD>
-<TD><I>preposition for complement</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkV3</CODE></TD>
-<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#V3" TITLE="V3 - three-place verb">V3</A></TD>
-<TD><I>direct ditransitive</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkV3</CODE></TD>
-<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#V3" TITLE="V3 - three-place verb">V3</A></TD>
-<TD><I>preposition for last argument</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkV3</CODE></TD>
-<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#V3" TITLE="V3 - three-place verb">V3</A></TD>
-<TD><I>prepositions for both complements</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkVS</CODE></TD>
-<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#VS" TITLE="VS - sentence-complement verb">VS</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkV2S</CODE></TD>
-<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#V2S" TITLE="V2S - verb with NP and S complement">V2S</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkVV</CODE></TD>
-<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#VV" TITLE="VV - verb-phrase-complement verb">VV</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkV2V</CODE></TD>
-<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#V2V" TITLE="V2V - verb with NP and V complement">V2V</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkVA</CODE></TD>
-<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#VA" TITLE="VA - adjective-complement verb">VA</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkV2A</CODE></TD>
-<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#V2A" TITLE="V2A - verb with NP and AP complement">V2A</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkVQ</CODE></TD>
-<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#VQ" TITLE="VQ - question-complement verb">VQ</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkV2Q</CODE></TD>
-<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#V2Q" TITLE="V2Q - verb with NP and Q complement">V2Q</A></TD>
-<TD><I>-</I></TD>
-</TR>
-</TABLE>
-
-<A NAME="toc99"></A>
-<H2>Paradigms for Urdu</H2>
-<P>
-<a name="RParadigms"></a>
-</P>
-<P>
-source <A HREF="http://www.grammaticalframework.org/lib/src/urdu/ParadigmsUrd.gf"><CODE>../src/urdu/ParadigmsUrd.gf</CODE></A>
-</P>
-<TABLE BORDER="1" CELLPADDING="4">
-<TR>
-<TH>Function</TH>
-<TH>Type</TH>
-<TH COLSPAN="2">Explanation</TH>
-</TR>
-<TR>
-<TD><CODE>masculine</CODE></TD>
-<TD><A HREF="#Gender">Gender</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>feminine</CODE></TD>
-<TD><A HREF="#Gender">Gender</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>singular</CODE></TD>
-<TD><CODE>Number;</CODE></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>plural</CODE></TD>
-<TD><CODE>Number;</CODE></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkN</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
-<TD><I>Regular nouns like lRka, gender is judged from noun ending</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkN</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#Gender">Gender</A> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
-<TD><I>nouns whose gender is irregular like Admy</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkN</CODE></TD>
-<TD><CODE>(x1,_,_,_,_,x6</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-&gt;</CODE> <A HREF="#Gender">Gender</A> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
-<TD><I>worst case</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkN2</CODE></TD>
-<TD><A HREF="#N" TITLE="N - common noun">N</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <CODE>Str</CODE> <CODE>-&gt;</CODE> <CODE>N2;</CODE></TD>
-<TD><I>e.g maN ky</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkN3</CODE></TD>
-<TD><A HREF="#N" TITLE="N - common noun">N</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <CODE>Str</CODE> <CODE>-&gt;</CODE> <CODE>Str-&gt;</CODE> <A HREF="#N3" TITLE="N3 - three-place relational noun">N3</A></TD>
-<TD><I>e.g faSlh - sE - ka</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkCmpdNoun</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
-<TD><I>e.g t-alb elm</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkPN</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#PN" TITLE="PN - proper name">PN</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>personalPN</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <CODE>Str</CODE> <CODE>-&gt;</CODE> <CODE>Str</CODE> <CODE>-&gt;</CODE> <CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#Number">Number</A> <CODE>-&gt;</CODE> <A HREF="#Gender">Gender</A> <CODE>-&gt;</CODE> <A HREF="#UPerson">UPerson</A> <CODE>-&gt;</CODE> <A HREF="#Pron" TITLE="Pron - personal pronoun">Pron</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>demoPN</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <CODE>Str</CODE> <CODE>-&gt;</CODE> <CODE>Str</CODE> <CODE>-&gt;</CODE> <A 'HREF="#Quant" TITLE="Quant - quantifier ('nucleus' of Det)"'>Quant</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkDet</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <CODE>Str</CODE> <CODE>-&gt;</CODE> <CODE>Str</CODE> <CODE>-&gt;</CODE> <CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#Number">Number</A> <CODE>-&gt;</CODE> <A HREF="#Det" TITLE="Det - determiner phrase">Det</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkIP</CODE></TD>
-<TD><CODE>(x1,x2,x3:Str)</CODE> <CODE>-&gt;</CODE> <A HREF="#Number">Number</A> <CODE>-&gt;</CODE> <A HREF="#Gender">Gender</A> <CODE>-&gt;</CODE> <A HREF="#IP" TITLE="IP - interrogative pronoun">IP</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkAdN</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#AdN" TITLE="AdN - numeral-modifying adverb">AdN</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkA</CODE></TD>
-<TD><CODE>Str-&gt;</CODE> <A HREF="#A" TITLE="A - one-place adjective">A</A></TD>
-<TD><I>e.g ach'a</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkA</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#A2" TITLE="A2 - two-place adjective">A2</A></TD>
-<TD><I>e.g sE Xady krna</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkA2</CODE></TD>
-<TD><A HREF="#A" TITLE="A - one-place adjective">A</A> <CODE>-&gt;</CODE> <CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#A2" TITLE="A2 - two-place adjective">A2</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkV</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#V" TITLE="V - one-place verb">V</A></TD>
-<TD><I>regular verbs like swna</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkV2</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#V2" TITLE="V2 - two-place verb">V2</A></TD>
-<TD><I>e.g pyna</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkV2</CODE></TD>
-<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#V2" TITLE="V2 - two-place verb">V2</A></TD>
-<TD><I>e.g pyna</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkV2</CODE></TD>
-<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#V2" TITLE="V2 - two-place verb">V2</A></TD>
-<TD><I>e.g bnd krna</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkV3</CODE></TD>
-<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <CODE>Str</CODE> <CODE>-&gt;</CODE> <CODE>Str</CODE> <CODE>-&gt;</CODE> <CODE>V3;</CODE></TD>
-<TD><I>e.g bycna</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkV2V</CODE></TD>
-<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <CODE>Str</CODE> <CODE>-&gt;</CODE> <CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#Bool">Bool</A> <CODE>-&gt;</CODE> <A HREF="#V2V" TITLE="V2V - verb with NP and V complement">V2V</A></TD>
-<TD><I>e.g eltja krna - sE - kw</I></TD>
-</TR>
-<TR>
-<TD><CODE>dirdirV3</CODE></TD>
-<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#V3" TITLE="V3 - three-place verb">V3</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>compoundV</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#V" TITLE="V - one-place verb">V</A></TD>
-<TD><I>e.g barX hwna</I></TD>
-</TR>
-<TR>
-<TD><CODE>compoundV</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#V2" TITLE="V2 - two-place verb">V2</A> <CODE>-&gt;</CODE> <A HREF="#V" TITLE="V - one-place verb">V</A></TD>
-<TD><I>e.g bnd krna</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkAdv</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#Adv" TITLE="Adv - verb-phrase-modifying adverb">Adv</A></TD>
-<TD><I>e.g yhaN</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkPrep</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A></TD>
-<TD><I>e.g ka - ky</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkConj</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#Conj" TITLE="Conj - conjunction">Conj</A></TD>
-<TD><I>and (plural agreement)</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkConj</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#Number">Number</A> <CODE>-&gt;</CODE> <A HREF="#Conj" TITLE="Conj - conjunction">Conj</A></TD>
-<TD><I>or (agrement number given as argument)</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkConj</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#Conj" TITLE="Conj - conjunction">Conj</A></TD>
-<TD><I>both ... and (plural)</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkConj</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#Number">Number</A> <CODE>-&gt;</CODE> <A HREF="#Conj" TITLE="Conj - conjunction">Conj</A></TD>
-<TD><I>either ... or (agrement number given as argument)</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkVS</CODE></TD>
-<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <CODE>VS;</CODE></TD>
-<TD><I>e.g drna</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkVV</CODE></TD>
-<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#VV" TITLE="VV - verb-phrase-complement verb">VV</A></TD>
-<TD><I>e.g cahna</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkAdA</CODE></TD>
-<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#AdA" TITLE="AdA - adjective-modifying adverb">AdA</A></TD>
-<TD><I>-</I></TD>
-</TR>
-<TR>
-<TD><CODE>mkVQ</CODE></TD>
-<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#VQ" TITLE="VQ - question-complement verb">VQ</A></TD>
-<TD><I>e.g janna</I></TD>
-</TR>
-</TABLE>
-
-<A NAME="toc100"></A>
-<H1>Browsing the libraries with GF commands</H1>
-<P>
-<B>New</B>: Browsing by syntax editor 
-<A HREF="../../../demos/resource-api/editor.html">directly on the web</A>.
-</P>
-<P>
-All of the following assume
-</P>
-<PRE>
-    cd $GF_LIB_PATH
-</PRE>
-<P>
-To try out inflection paradigms:
-</P>
-<PRE>
-    &gt; i -path=alltenses -retain alltenses/ParadigmsGer.gfo
-    &gt; cc mkN "Farbe"
-</PRE>
-<P>
-To try out overloaded syntax, test lexicon, and inflection paradigms:
-</P>
-<PRE>
-    &gt; i -path=alltenses -retain alltenses/TryGer.gfo
-    &gt; cc mkCl (mkNP this_Quant (mkN "Farbe")) (mkA "dunkel")
-</PRE>
-<P></P>
-<A NAME="toc101"></A>
-<H1>An Example of Usage</H1>
-<P>
-The standard way of building an application has the following modules.
-</P>
-<P>
-An abstract syntax:
-</P>
-<PRE>
-    abstract Music = {    
-    cat 
-      Kind, 
-      Property ;
-    fun 
-      PropKind : Kind -&gt; Property -&gt; Kind ; 
-      Song : Kind ;
-      American : Property ;
-    }
-</PRE>
-<P>
-A domain lexicon interface:
-</P>
-<PRE>
-    interface LexMusic = open Cat in {
-    oper
-      song_N : N ;
-      american_A : A ;
-    }
-</PRE>
-<P>
-A functor on <CODE>Syntax</CODE> and the domain lexicon interface:
-</P>
-<PRE>
-    incomplete concrete MusicI of Music = open Syntax, MusicLex in {
-    lincat 
-      Kind = CN ;
-      Property = AP ;
-    lin
-      PropKind k p = mkCN p k ;
-      Song = mkCN song_N ;
-      American = mkAP american_A ;
-    }
-</PRE>
-<P>
-For each language, an instance of the domain lexicon:
-</P>
-<PRE>
-    instance LexMusicGer of LexMusic = CatGer ** open ParadigmsGer in {    
-    oper
-      song_N = mkN "Lied" "Lieder" neuter ;
-      american_A = mkA "amerikanisch" ;
-    }
-</PRE>
-<P>
-For each language, an instantiation of the functor:
-</P>
-<PRE>
-    --# -path=.:present:prelude
-  
-    concrete MusicGer of Music = MusicI with
-      (Syntax = SyntaxGer),
-      (LexMusic = LexMusicGer) ;
-</PRE>
-<P></P>
-<A NAME="toc102"></A>
-<H1>Table of Contents</H1>
-  <UL>
-  <LI><A HREF="#toc1">Introduction</A>
-  <LI><A HREF="#toc2">Categories</A>
-    <UL>
-    <LI><A HREF="#toc3">A hierarchic view</A>
-    <LI><A HREF="#toc4">Explanations</A>
-    </UL>
-  <LI><A HREF="#toc5">Syntax Rules and Structural Words</A>
-    <UL>
-    <LI><A HREF="#A" TITLE="A - one-place adjective">A - one-place adjective</A>
-    <LI><A HREF="#A2" TITLE="A2 - two-place adjective">A2 - two-place adjective</A>
-    <LI><A HREF="#AP" TITLE="AP - adjectival phrase">AP - adjectival phrase</A>
-    <LI><A HREF="#AdA" TITLE="AdA - adjective-modifying adverb">AdA - adjective-modifying adverb</A>
-    <LI><A HREF="#AdN" TITLE="AdN - numeral-modifying adverb">AdN - numeral-modifying adverb</A>
-    <LI><A HREF="#AdV" TITLE="Adv - verb-phrase-modifying adverb">AdV - adverb directly attached to verb</A>
-    <LI><A HREF="#Adv" TITLE="Adv - verb-phrase-modifying adverb">Adv - verb-phrase-modifying adverb</A>
-    <LI><A HREF="#Ant" TITLE="Ant - anteriority">Ant - anteriority</A>
-    <LI><A HREF="#CAdv" TITLE="CAdv - comparative adverb">CAdv - comparative adverb</A>
-    <LI><A HREF="#CN" TITLE="CN - common noun (without determiner)">CN - common noun (without determiner)</A>
-    <LI><A HREF="#Card" TITLE="Card - cardinal number">Card - cardinal number</A>
-    <LI><A HREF="#Cl" TITLE="Cl - declarative clause, with all tenses">Cl - declarative clause, with all tenses</A>
-    <LI><A HREF="#ClSlash">ClSlash</A>
-    <LI><A HREF="#Comp" TITLE="Comp - complement of copula, such as AP">Comp - complement of copula, such as AP</A>
-    <LI><A HREF="#Conj" TITLE="Conj - conjunction">Conj - conjunction</A>
-    <LI><A HREF="#Det" TITLE="Det - determiner phrase">Det - determiner phrase</A>
-    <LI><A HREF="#Dig">Dig</A>
-    <LI><A HREF="#Digits" TITLE="Digits - cardinal or ordinal in digits">Digits - cardinal or ordinal in digits</A>
-    <LI><A HREF="#IAdv" TITLE="IAdv - interrogative adverb">IAdv - interrogative adverb</A>
-    <LI><A HREF="#IComp" TITLE="IComp - interrogative complement of copula">IComp - interrogative complement of copula</A>
-    <LI><A HREF="#IDet" TITLE="IDet - interrogative determiner">IDet - interrogative determiner</A>
-    <LI><A HREF="#IP" TITLE="IP - interrogative pronoun">IP - interrogative pronoun</A>
-    <LI><A HREF="#IQuant">IQuant</A>
-    <LI><A HREF="#Imp" TITLE="Imp - imperative">Imp - imperative</A>
-    <LI><A HREF="#ImpForm">ImpForm</A>
-    <LI><A HREF="#Interj" TITLE="Interj - interjection">Interj - interjection</A>
-    <LI><A HREF="#ListAP">ListAP</A>
-    <LI><A HREF="#ListAdv">ListAdv</A>
-    <LI><A HREF="#ListNP">ListNP</A>
-    <LI><A HREF="#ListRS">ListRS</A>
-    <LI><A HREF="#ListS">ListS</A>
-    <LI><A HREF="#N" TITLE="N - common noun">N - common noun</A>
-    <LI><A HREF="#N2" TITLE="N2 - relational noun">N2 - relational noun</A>
-    <LI><A HREF="#N3" TITLE="N3 - three-place relational noun">N3 - three-place relational noun</A>
-    <LI><A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP - noun phrase (subject or object)</A>
-    <LI><A HREF="#Num" TITLE="Num - number determining element">Num - number determining element</A>
-    <LI><A HREF="#Numeral" TITLE="Numeral - cardinal or ordinal in words">Numeral - cardinal or ordinal in words</A>
-    <LI><A HREF="#Ord" TITLE="Ord - ordinal number (used in Det)">Ord - ordinal number (used in Det)</A>
-    <LI><A HREF="#PConj" TITLE="PConj - phrase-beginning conjunction">PConj - phrase-beginning conjunction</A>
-    <LI><A HREF="#PN" TITLE="PN - proper name">PN - proper name</A>
-    <LI><A HREF="#Phr" TITLE="Phr - phrase in a text">Phr - phrase in a text</A>
-    <LI><A HREF="#Pol" TITLE="Pol - polarity">Pol - polarity</A>
-    <LI><A HREF="#Predet" TITLE="Predet - predeterminer (prefixed Quant)">Predet - predeterminer (prefixed Quant)</A>
-    <LI><A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep - preposition, or just case</A>
-    <LI><A HREF="#Pron" TITLE="Pron - personal pronoun">Pron - personal pronoun</A>
-    <LI><A HREF="#Punct">Punct</A>
-    <LI><A HREF="#QCl" TITLE="QCl - question clause, with all tenses">QCl - question clause, with all tenses</A>
-    <LI><A HREF="#QS" TITLE="QS - question">QS - question</A>
-    <LI><A 'HREF="#Quant" TITLE="Quant - quantifier ('nucleus' of Det)"'>Quant - quantifier ('nucleus' of Det)</A>
-    <LI><A HREF="#RCl" TITLE="RCl - relative clause, with all tenses">RCl - relative clause, with all tenses</A>
-    <LI><A HREF="#RP" TITLE="RP - relative pronoun">RP - relative pronoun</A>
-    <LI><A HREF="#RS" TITLE="RS - relative">RS - relative</A>
-    <LI><A HREF="#S" TITLE="S - declarative sentence">S - declarative sentence</A>
-    <LI><A HREF="#SC" TITLE="SC - embedded sentence or question">SC - embedded sentence or question</A>
-    <LI><A HREF="#SSlash">SSlash</A>
-    <LI><A HREF="#Sub100">Sub100</A>
-    <LI><A HREF="#Sub1000">Sub1000</A>
-    <LI><A HREF="#Subj" TITLE="Subj - subjunction">Subj - subjunction</A>
-    <LI><A HREF="#Temp" TITLE="Temp - temporal and aspectual features">Temp - temporal and aspectual features</A>
-    <LI><A HREF="#Tense" TITLE="Tense - tense">Tense - tense</A>
-    <LI><A HREF="#Text" TITLE="Text - text consisting of several phrases">Text - text consisting of several phrases</A>
-    <LI><A HREF="#Unit">Unit</A>
-    <LI><A HREF="#Utt" TITLE="Utt - sentence, question, word...">Utt - sentence, question, word...</A>
-    <LI><A HREF="#V" TITLE="V - one-place verb">V - one-place verb</A>
-    <LI><A HREF="#V2" TITLE="V2 - two-place verb">V2 - two-place verb</A>
-    <LI><A HREF="#V2A" TITLE="V2A - verb with NP and AP complement">V2A - verb with NP and AP complement</A>
-    <LI><A HREF="#V2Q" TITLE="V2Q - verb with NP and Q complement">V2Q - verb with NP and Q complement</A>
-    <LI><A HREF="#V2S" TITLE="V2S - verb with NP and S complement">V2S - verb with NP and S complement</A>
-    <LI><A HREF="#V2V" TITLE="V2V - verb with NP and V complement">V2V - verb with NP and V complement</A>
-    <LI><A HREF="#V3" TITLE="V3 - three-place verb">V3 - three-place verb</A>
-    <LI><A HREF="#VA" TITLE="VA - adjective-complement verb">VA - adjective-complement verb</A>
-    <LI><A HREF="#VP" TITLE="VP - verb phrase">VP - verb phrase</A>
-    <LI><A HREF="#VPSlash" TITLE="VPSlash - verb phrase missing complement">VPSlash - verb phrase missing complement</A>
-    <LI><A HREF="#VQ" TITLE="VQ - question-complement verb">VQ - question-complement verb</A>
-    <LI><A HREF="#VS" TITLE="VS - sentence-complement verb">VS - sentence-complement verb</A>
-    <LI><A HREF="#VV" TITLE="VV - verb-phrase-complement verb">VV - verb-phrase-complement verb</A>
-    <LI><A HREF="#Voc" TITLE="Voc - vocative or "please"">Voc - vocative or "please"</A>
-    </UL>
-  <LI><A HREF="#toc83">Lexical Paradigms</A>
-    <UL>
-    <LI><A HREF="#toc84">Paradigms for Bulgarian</A>
-    <LI><A HREF="#toc85">Paradigms for Catalan</A>
-    <LI><A HREF="#toc86">Paradigms for Danish</A>
-    <LI><A HREF="#toc87">Paradigms for Dutch</A>
-    <LI><A HREF="#toc88">Paradigms for English</A>
-    <LI><A HREF="#toc89">Paradigms for Finnish</A>
-    <LI><A HREF="#toc90">Paradigms for French</A>
-    <LI><A HREF="#toc91">Paradigms for German</A>
-    <LI><A HREF="#toc92">Paradigms for Italian</A>
-    <LI><A HREF="#toc93">Paradigms for Norwegian</A>
-    <LI><A HREF="#toc94">Paradigms for Polish</A>
-    <LI><A HREF="#toc95">Paradigms for Romanian</A>
-    <LI><A HREF="#toc96">Paradigms for Russian</A>
-    <LI><A HREF="#toc97">Paradigms for Spanish</A>
-    <LI><A HREF="#toc98">Paradigms for Swedish</A>
-    <LI><A HREF="#toc99">Paradigms for Urdu</A>
-    </UL>
-  <LI><A HREF="#toc100">Browsing the libraries with GF commands</A>
-  <LI><A HREF="#toc101">An Example of Usage</A>
-  <LI><A HREF="#toc102">Table of Contents</A>
-  </UL>
-
-<P></P>
-
-<!-- html code generated by txt2tags 2.5 (http://txt2tags.sf.net) -->
+<META NAME="generator" CONTENT="http://txt2tags.org">
+<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=utf-8">
+<LINK REL="stylesheet" TYPE="text/css" HREF="./revealpopup.css">
+<TITLE>GF Resource Grammar Library: Synopsis</TITLE>
+</HEAD><BODY BGCOLOR="white" TEXT="black">
+<CENTER>
+<H1>GF Resource Grammar Library: Synopsis</H1>
+<FONT SIZE="4"><I>B. Bringert, T. Hallgren, and A. Ranta</I></FONT><BR>
+</CENTER>
+
+
+<A NAME="toc1"></A>
+<H1>Introduction</H1>
+
+<P>
+The GF Resource Grammar Library is the standard library for Grammatical Framework.
+It covers the morphology and basic syntax of currently 16 languages.
+</P>
+<P>
+This document contains the most important parts of the GF Resource Grammar API,
+as needed by a GF application programmer.
+It has been machine-generated from the source files; there are links
+to the relevant source files, which give more information. Some of the files have
+not yet been prepared so that the machine generated documentation has the nicest
+possible format.
+</P>
+<P>
+The main contents are:
+</P>
+
+<UL>
+<LI><A HREF="#toc2">Chapter 1</A>: categories, with links to the functions for
+constructing trees in them.
+<LI><A HREF="#toc5">Chapter 2</A>: syntactic construction functions, with cross-links and
+examples. 
+<LI><A HREF="#toc83">Chapter 3</A>: morphological paradigms.
+<LI><A HREF="#toc102">Chapter 4</A>: additional libraries.
+<LI><A HREF="#toc108">Chapter 5</A>: how to "browse" the library by 
+loading the grammars into the <CODE>gf</CODE> command editor.
+<LI><A HREF="#toc109">Chapter 6</A>: a brief example of how application grammars can
+use the resource modules. 
+<LI><A HREF="#toc110">Detailed table of contents</A>.
+</UL>
+
+<P>
+Many examples in <A HREF="#toc5">Chapter 2</A> can be seen in multiple languages by hovering the
+mouse over the example, as shown in the following screenshot:
+</P>
+<P>
+<IMG ALIGN="middle" SRC="hovering.png" BORDER="0" ALT="">
+</P>
+<P>
+Other relevant documents:
+</P>
+
+<UL>
+<LI><A HREF="./status.html"><CODE>status.html</CODE></A>: the current status of different languages
+  and the authors of each grammar
+<LI><A HREF="http://www.grammaticalframework.org/doc/gf-lrec-2010.pdf">Resource Grammar Tutorial</A>
+  as presented in LREC-2010.
+<LI>Paper "The GF Resource Grammar Library" by A. Ranta
+  (<I>Linguistic Issues in Language Technology</I>, 2 (2), 2009). An overview of
+  the library with linguistic motivations.
+  <A HREF="http://elanguage.net/journals/index.php/lilt/article/viewFile/214/158">PDF</A>
+<LI>Paper "Grammars as Software Libraries" by A. Ranta
+  (In Y. Bertot, G. Huet, J-J. Lévy, and G. Plotkin (eds.),
+   <I>From Semantics to Computer Science</I>, Cambridge University Press, 
+   Cambridge, pp. 281--308, 2009).
+  The library from a software engineering point of view.
+  <A HREF="http://www.cse.chalmers.se/~aarne/old/articles/libraries-kahn.pdf">PDF</A>
+</UL>
+
+<A NAME="toc2"></A>
+<H1>Categories</H1>
+
+<P>
+Source 1: <A HREF="http://www.grammaticalframework.org/lib/src/abstract/Common.gf"><CODE>../src/abstract/Common.gf</CODE></A>
+</P>
+<P>
+Source 2: <A HREF="http://www.grammaticalframework.org/lib/src/abstract/Cat.gf"><CODE>../src/abstract/Cat.gf</CODE></A>
+</P>
+
+<A NAME="toc3"></A>
+<H2>A hierarchic view</H2>
+
+<P>
+The chart below shows the categories in a hierarchical top-down order.
+The edges do not define the complete dependency structure; if they did,
+the graph would have many many more edges, and also many cycles. The precise
+meaning of a directed edge from <I>C</I> to <I>D</I> is: there is a constructor
+of <I>C</I> that takes <I>D</I> as an argument. What the constructors exactly are,
+and what other arguments they take, is described by separate tables for
+each category.
+</P>
+
+<TABLE ALIGN="center" BORDER="1" CELLPADDING="4">
+<TR>
+<TD ALIGN="right"><center><IMG ALIGN="middle" SRC="categories.png" USEMAP="#categories" BORDER="0" ALT=""></center></TD>
+</TR>
+</TABLE>
+
+<map id="categories" name="categories">
+<area shape="poly" href="#Text" TITLE="Text - text consisting of several phrases" alt="" coords="690,23 688,17 685,12 679,8 672,5 664,4 656,5 649,8 643,12 640,17 638,23 640,29 643,34 649,38 656,41 664,42 672,41 679,38 685,34 688,29"/>
+<area shape="poly" href="#Punct" title="Punct" alt="" coords="657,95 656,89 652,84 646,80 638,77 629,76 620,77 612,80 606,84 602,89 600,95 602,101 606,106 612,110 620,113 629,114 638,113 646,110 652,106 656,101"/>
+<area shape="poly" href="#Phr" TITLE="Phr - phrase in a text" alt="" coords="726,95 725,89 721,84 715,80 708,77 700,76 692,77 685,80 679,84 676,89 675,95 676,101 679,106 685,110 692,113 700,114 708,113 715,110 721,106 725,101"/>
+<area shape="poly" href="#PConj" TITLE="PConj - phrase-beginning conjunction" alt="" coords="658,167 656,162 652,156 645,152 637,150 628,149 619,150 610,152 604,156 600,162 598,167 600,173 604,179 610,183 619,185 628,186 637,185 645,183 652,179 656,173"/>
+<area shape="poly" href="#Utt" TITLE="Utt - sentence, question, word..." alt="" coords="726,167 725,162 721,156 715,152 708,150 700,149 692,150 685,152 679,156 676,162 675,167 676,173 679,179 685,183 692,185 700,186 708,185 715,183 721,179 725,173"/>
+<area shape="poly" href="#Voc" TITLE="Voc - vocative or "please"" alt="" coords="794,167 793,162 789,156 784,152 777,150 769,149 761,150 754,152 748,156 744,162 743,167 744,173 748,179 754,183 761,185 769,186 777,185 784,183 789,179 793,173"/>
+<area shape="poly" href="#Imp" TITLE="Imp - imperative" alt="" coords="657,240 656,234 652,229 647,225 640,222 632,221 624,222 617,225 611,229 607,234 606,240 607,246 611,251 617,255 624,258 632,259 640,258 647,255 652,251 656,246"/>
+<area shape="poly" href="#S" TITLE="S - declarative sentence" alt="" coords="726,240 725,234 721,229 715,225 708,223 700,222 692,223 685,225 679,229 676,234 675,240 676,245 679,250 685,254 692,257 700,258 708,257 715,254 721,250 725,245"/>
+<area shape="poly" href="#QS" TITLE="QS - question" alt="" coords="870,240 868,234 865,229 859,225 852,222 844,221 836,222 829,225 823,229 819,234 818,240 819,246 823,251 829,255 836,258 844,259 852,258 859,255 865,251 868,246"/>
+<area shape="poly" href="#Tense" TITLE="Tense - tense" alt="" coords="521,312 519,306 515,301 509,297 501,294 492,293 483,294 475,297 469,301 464,306 463,312 464,318 469,323 475,327 483,330 492,331 501,330 509,327 515,323 519,318"/>
+<area shape="poly" href="#Ant" TITLE="Ant - anteriority" alt="" coords="589,312 588,306 584,301 578,297 571,294 563,293 555,294 548,297 542,301 539,306 538,312 539,318 542,323 548,327 555,330 563,331 571,330 578,327 584,323 588,318"/>
+<area shape="poly" href="#Pol" TITLE="Pol - polarity" alt="" coords="657,312 656,306 652,301 647,297 640,294 632,293 624,294 617,297 611,301 607,306 606,312 607,318 611,323 617,327 624,330 632,331 640,330 647,327 652,323 656,318"/>
+<area shape="poly" href="#Cl" TITLE="Cl - declarative clause, with all tenses" alt="" coords="726,312 725,306 721,301 715,297 708,294 700,293 692,294 685,297 679,301 676,306 675,312 676,318 679,323 685,327 692,330 700,331 708,330 715,327 721,323 725,318"/>
+<area shape="poly" href="#ListS" title="ListS" alt="" coords="798,312 797,306 793,301 787,297 779,294 771,293 762,294 754,297 748,301 745,306 743,312 745,318 748,323 754,327 762,330 771,331 779,330 787,327 793,323 797,318"/>
+<area shape="poly" href="#Conj" TITLE="Conj - conjunction" alt="" coords="867,312 866,306 862,301 856,297 849,294 841,293 833,294 826,297 820,301 816,306 815,312 816,318 820,323 826,327 833,330 841,331 849,330 856,327 862,323 866,318"/>
+<area shape="poly" href="#QCl" TITLE="QCl - question clause, with all tenses" alt="" coords="945,312 943,306 940,301 934,297 927,294 919,293 911,294 904,297 898,301 895,306 893,312 895,318 898,323 904,327 911,330 919,331 927,330 934,327 940,323 943,318"/>
+<area shape="poly" href="#NP" TITLE="NP - noun phrase (subject or object)" alt="" coords="270,384 269,379 265,373 260,369 252,366 244,366 237,366 229,369 224,373 220,379 219,384 220,390 224,395 229,400 237,402 244,403 252,402 260,400 265,395 269,390"/>
+<area shape="poly" href="#VP" TITLE="VP - verb phrase" alt="" coords="636,384 634,379 631,373 625,369 618,366 610,366 602,366 595,369 589,373 585,379 584,384 585,390 589,395 595,400 602,402 610,403 618,402 625,400 631,395 634,390"/>
+<area shape="rect" href="#Adv" TITLE="Adv - verb-phrase-modifying adverb" alt="" coords="702,367,753,401"/>
+<area shape="poly" href="#Predet" TITLE="Predet - predeterminer (prefixed Quant)" alt="" coords="65,457 63,451 59,446 52,441 44,439 34,438 25,439 16,441 10,446 5,451 4,457 5,462 10,468 16,472 25,475 34,475 44,475 52,472 59,468 63,462"/>
+<area shape="poly" href="#Pron" TITLE="Pron - personal pronoun" alt="" coords="133,457 132,451 129,446 123,441 116,439 108,438 99,439 92,441 86,446 83,451 82,457 83,462 86,468 92,472 99,475 108,475 116,475 123,472 129,468 132,462"/>
+<area shape="rect" href="#PN" TITLE="PN - proper name" alt="" coords="150,440,202,474"/>
+<area shape="poly" href="#Det" TITLE="Det - determiner phrase" alt="" coords="270,457 269,451 265,446 260,441 252,439 244,438 237,439 229,441 224,446 220,451 219,457 220,462 224,468 229,472 237,475 244,475 252,475 260,472 265,468 269,462"/>
+<area shape="poly" href="#CN" TITLE="CN - common noun (without determiner)" alt="" coords="339,457 337,451 334,446 328,441 321,439 313,438 305,439 298,441 292,446 289,451 287,457 289,462 292,468 298,472 305,475 313,475 321,475 328,472 334,468 337,462"/>
+<area shape="poly" href="#ListNP" title="ListNP" alt="" coords="420,457 419,451 414,446 407,441 398,439 388,438 378,439 369,441 362,446 358,451 356,457 358,462 362,468 369,472 378,475 388,475 398,475 407,472 414,468 419,462"/>
+<area shape="poly" href="#AdV" TITLE="Adv - verb-phrase-modifying adverb" alt="" coords="489,457 488,451 484,446 479,441 471,439 463,438 455,439 448,441 442,446 439,451 437,457 439,462 442,468 448,472 455,475 463,475 471,475 479,472 484,468 488,462"/>
+<area shape="rect" href="#V" TITLE="V - one-place verb" alt="" coords="506,440,616,474"/>
+<area shape="poly" href="#AP" TITLE="AP - adjectival phrase" alt="" coords="685,457 684,451 680,446 674,441 667,439 659,438 651,439 644,441 639,446 635,451 634,457 635,462 639,468 644,472 651,475 659,475 667,475 674,472 680,468 684,462"/>
+<area shape="poly" href="#Subj" TITLE="Subj - subjunction" alt="" coords="753,457 752,451 749,446 743,441 736,439 728,438 720,439 713,441 707,446 703,451 702,457 703,462 707,468 713,472 720,475 728,475 736,475 743,472 749,468 752,462"/>
+<area shape="poly" href="#ListAdj" title="ListAdj" alt="" coords="837,457 836,451 831,446 824,441 814,439 804,438 794,439 784,441 777,446 772,451 770,457 772,462 777,468 784,472 794,475 804,475 814,475 824,472 831,468 836,462"/>
+<area shape="poly" href="#Art" title="Art" alt="" coords="90,529 89,523 85,518 80,514 73,511 65,510 57,511 50,514 44,518 40,523 39,529 40,535 44,540 50,544 57,547 65,548 73,547 80,544 85,540 89,535"/>
+<area shape="poly" 'href="#Quant" TITLE="Quant - quantifier ('nucleus' of Det)"' alt="" coords="166,529 165,523 161,518 154,514 146,511 137,510 128,511 120,514 113,518 109,523 108,529 109,535 113,540 120,544 128,547 137,548 146,547 154,544 161,540 165,535"/>
+<area shape="poly" href="#Num" TITLE="Num - number determining element" alt="" coords="237,529 235,523 232,518 226,514 218,511 210,510 202,511 195,514 189,518 185,523 184,529 185,535 189,540 195,544 202,547 210,548 218,547 226,544 232,540 235,535"/>
+<area shape="poly" href="#Ord" TITLE="Ord - ordinal number (used in Det)" alt="" coords="305,529 304,523 300,518 295,514 288,511 280,510 272,511 265,514 259,518 255,523 254,529 255,535 259,540 265,544 272,547 280,548 288,547 295,544 300,540 304,535"/>
+<area shape="rect" href="#N" TITLE="N - common noun" alt="" coords="323,512,387,546"/>
+<area shape="poly" href="#RS" TITLE="RS - relative" alt="" coords="456,529 454,523 451,518 445,514 438,511 430,510 422,511 415,514 409,518 406,523 404,529 406,535 409,540 415,544 422,547 430,548 438,547 445,544 451,540 454,535"/>
+<area shape="poly" href="#Card" TITLE="Card - cardinal number" alt="" coords="236,601 235,595 231,590 226,586 218,583 210,582 202,583 195,586 189,590 186,595 184,601 186,607 189,612 195,616 202,619 210,620 218,619 226,616 231,612 235,607"/>
+<area shape="poly" href="#Numeral" TITLE="Numeral - cardinal or ordinal in words" alt="" coords="216,674 214,668 206,662 194,658 179,656 162,655 145,656 130,658 118,662 110,668 107,674 110,679 118,685 130,689 145,691 162,692 179,691 194,689 206,685 214,679"/>
+<area shape="poly" href="#AdN" TITLE="AdN - numeral-modifying adverb" alt="" coords="285,674 283,668 280,662 274,658 267,656 259,655 251,656 244,658 238,662 234,668 233,674 234,679 238,685 244,689 251,691 259,692 267,691 274,689 280,685 283,679"/>
+<area shape="poly" href="#CAdv" TITLE="CAdv - comparative adverb" alt="" coords="288,746 286,740 282,735 276,731 268,728 259,727 250,728 242,731 235,735 231,740 230,746 231,752 235,757 242,761 250,764 259,765 268,764 276,761 282,757 286,752"/>
+<area shape="poly" href="#RCl" TITLE="RCl - relative clause, with all tenses" alt="" coords="456,601 454,595 451,590 445,586 438,583 430,582 422,583 415,586 409,590 406,595 404,601 406,607 409,612 415,616 422,619 430,620 438,619 445,616 451,612 454,607"/>
+<area shape="poly" href="#AdA" TITLE="AdA - adjective-modifying adverb" alt="" coords="617,529 615,523 612,518 606,514 599,511 591,510 583,511 576,514 570,518 566,523 565,529 566,535 570,540 576,544 583,547 591,548 599,547 606,544 612,540 615,535"/>
+<area shape="rect" href="#A" TITLE="A - one-place adjective" alt="" coords="634,512,685,546"/>
+<area shape="poly" href="#ListAP" title="ListAP" alt="" coords="767,529 765,523 760,518 753,514 744,511 734,510 725,511 716,514 708,518 704,523 702,529 704,535 708,540 716,544 725,547 734,548 744,547 753,544 760,540 765,535"/>
+<area shape="poly" href="#IP" TITLE="IP - interrogative pronoun" alt="" coords="895,384 894,379 890,373 885,369 877,366 870,366 862,366 854,369 849,373 845,379 844,384 845,390 849,395 854,400 862,402 870,403 877,402 885,400 890,395 894,390"/>
+<area shape="poly" href="#IAdv" TITLE="IAdv - interrogative adverb" alt="" coords="966,384 965,379 961,373 955,369 947,366 939,366 931,366 923,369 917,373 913,379 912,384 913,390 917,395 923,400 931,402 939,403 947,402 955,400 961,395 965,390"/>
+<area shape="poly" href="#ClSlash" title="ClSlash" alt="" coords="1050,384 1048,379 1043,373 1036,369 1026,366 1016,366 1006,366 996,369 989,373 984,379 982,384 984,390 989,395 996,400 1006,402 1016,403 1026,402 1036,400 1043,395 1048,390"/>
+<area shape="poly" href="#IDet" TITLE="IDet - interrogative determiner" alt="" coords="906,457 904,451 901,446 895,441 888,439 880,438 872,439 865,441 859,446 856,451 854,457 856,462 859,468 865,472 872,475 880,475 888,475 895,472 901,468 904,462"/>
+<area shape="poly" href="#VPSlash" TITLE="VPSlash - verb phrase missing complement" alt="" coords="1052,457 1050,451 1045,446 1037,441 1027,439 1016,438 1005,439 995,441 987,446 982,451 980,457 982,462 987,468 995,472 1005,475 1016,475 1027,475 1037,472 1045,468 1050,462"/>
+<area shape="poly" href="#IQuant" title="IQuant" alt="" coords="912,529 910,523 906,518 899,514 890,511 880,510 870,511 861,514 854,518 850,523 848,529 850,535 854,540 861,544 870,547 880,548 890,547 899,544 906,540 910,535"/>
+<area shape="poly" href="#RP" TITLE="RP - relative pronoun" alt="" coords="456,674 454,668 451,662 445,658 438,656 430,655 422,656 415,658 409,662 406,668 404,674 406,679 409,685 415,689 422,691 430,692 438,691 445,689 451,685 454,679"/>
+</map>
+<P>
+The rectangular boxes mark open lexical categories, which have constructors
+also in the <CODE>Paradigms</CODE> modules.
+</P>
+
+<A NAME="toc4"></A>
+<H2>Explanations</H2>
+
+<TABLE BORDER="1" CELLPADDING="4">
+<TR>
+<TH>Category</TH>
+<TH>Explanation</TH>
+<TH COLSPAN="2">Example</TH>
+</TR>
+<TR>
+<TD><A HREF="#A" TITLE="A - one-place adjective">A</A></TD>
+<TD>one-place adjective</TD>
+<TD><I>warm</I></TD>
+</TR>
+<TR>
+<TD><A HREF="#A2" TITLE="A2 - two-place adjective">A2</A></TD>
+<TD>two-place adjective</TD>
+<TD><I>divisible</I></TD>
+</TR>
+<TR>
+<TD><A HREF="#AP" TITLE="AP - adjectival phrase">AP</A></TD>
+<TD>adjectival phrase</TD>
+<TD><I>very warm</I></TD>
+</TR>
+<TR>
+<TD><A HREF="#AdA" TITLE="AdA - adjective-modifying adverb">AdA</A></TD>
+<TD>adjective-modifying adverb</TD>
+<TD><I>very</I></TD>
+</TR>
+<TR>
+<TD><A HREF="#AdN" TITLE="AdN - numeral-modifying adverb">AdN</A></TD>
+<TD>numeral-modifying adverb</TD>
+<TD><I>more than</I></TD>
+</TR>
+<TR>
+<TD><A HREF="#AdV" TITLE="Adv - verb-phrase-modifying adverb">AdV</A></TD>
+<TD>adverb directly attached to verb</TD>
+<TD><I>always</I></TD>
+</TR>
+<TR>
+<TD><A HREF="#Adv" TITLE="Adv - verb-phrase-modifying adverb">Adv</A></TD>
+<TD>verb-phrase-modifying adverb</TD>
+<TD><I>in the house</I></TD>
+</TR>
+<TR>
+<TD><A HREF="#Ant" TITLE="Ant - anteriority">Ant</A></TD>
+<TD>anteriority</TD>
+<TD>simultaneous, anterior</TD>
+</TR>
+<TR>
+<TD><A HREF="#CAdv" TITLE="CAdv - comparative adverb">CAdv</A></TD>
+<TD>comparative adverb</TD>
+<TD><I>more</I></TD>
+</TR>
+<TR>
+<TD><A HREF="#CN" TITLE="CN - common noun (without determiner)">CN</A></TD>
+<TD>common noun (without determiner)</TD>
+<TD><I>red house</I></TD>
+</TR>
+<TR>
+<TD><A HREF="#Card" TITLE="Card - cardinal number">Card</A></TD>
+<TD>cardinal number</TD>
+<TD><I>seven</I></TD>
+</TR>
+<TR>
+<TD><A HREF="#Cl" TITLE="Cl - declarative clause, with all tenses">Cl</A></TD>
+<TD>declarative clause, with all tenses</TD>
+<TD><I>she looks at this</I></TD>
+</TR>
+<TR>
+<TD><A HREF="#Comp" TITLE="Comp - complement of copula, such as AP">Comp</A></TD>
+<TD>complement of copula, such as AP</TD>
+<TD><I>very warm</I></TD>
+</TR>
+<TR>
+<TD><A HREF="#Conj" TITLE="Conj - conjunction">Conj</A></TD>
+<TD>conjunction</TD>
+<TD><I>and</I></TD>
+</TR>
+<TR>
+<TD><A HREF="#Det" TITLE="Det - determiner phrase">Det</A></TD>
+<TD>determiner phrase</TD>
+<TD><I>those seven</I></TD>
+</TR>
+<TR>
+<TD><A HREF="#Digits" TITLE="Digits - cardinal or ordinal in digits">Digits</A></TD>
+<TD>cardinal or ordinal in digits</TD>
+<TD><I>1,000/1,000th</I></TD>
+</TR>
+<TR>
+<TD><A HREF="#IAdv" TITLE="IAdv - interrogative adverb">IAdv</A></TD>
+<TD>interrogative adverb</TD>
+<TD><I>why</I></TD>
+</TR>
+<TR>
+<TD><A HREF="#IComp" TITLE="IComp - interrogative complement of copula">IComp</A></TD>
+<TD>interrogative complement of copula</TD>
+<TD><I>where</I></TD>
+</TR>
+<TR>
+<TD><A HREF="#IDet" TITLE="IDet - interrogative determiner">IDet</A></TD>
+<TD>interrogative determiner</TD>
+<TD><I>how many</I></TD>
+</TR>
+<TR>
+<TD><A HREF="#IP" TITLE="IP - interrogative pronoun">IP</A></TD>
+<TD>interrogative pronoun</TD>
+<TD><I>who</I></TD>
+</TR>
+<TR>
+<TD><A HREF="#Imp" TITLE="Imp - imperative">Imp</A></TD>
+<TD>imperative</TD>
+<TD><I>look at this</I></TD>
+</TR>
+<TR>
+<TD><A HREF="#Interj" TITLE="Interj - interjection">Interj</A></TD>
+<TD>interjection</TD>
+<TD><I>alas</I></TD>
+</TR>
+<TR>
+<TD><A HREF="#N" TITLE="N - common noun">N</A></TD>
+<TD>common noun</TD>
+<TD><I>house</I></TD>
+</TR>
+<TR>
+<TD><A HREF="#N2" TITLE="N2 - relational noun">N2</A></TD>
+<TD>relational noun</TD>
+<TD><I>son</I></TD>
+</TR>
+<TR>
+<TD><A HREF="#N3" TITLE="N3 - three-place relational noun">N3</A></TD>
+<TD>three-place relational noun</TD>
+<TD><I>connection</I></TD>
+</TR>
+<TR>
+<TD><A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A></TD>
+<TD>noun phrase (subject or object)</TD>
+<TD><I>the red house</I></TD>
+</TR>
+<TR>
+<TD><A HREF="#Num" TITLE="Num - number determining element">Num</A></TD>
+<TD>number determining element</TD>
+<TD><I>seven</I></TD>
+</TR>
+<TR>
+<TD><A HREF="#Numeral" TITLE="Numeral - cardinal or ordinal in words">Numeral</A></TD>
+<TD>cardinal or ordinal in words</TD>
+<TD><I>five/fifth</I></TD>
+</TR>
+<TR>
+<TD><A HREF="#Ord" TITLE="Ord - ordinal number (used in Det)">Ord</A></TD>
+<TD>ordinal number (used in Det)</TD>
+<TD><I>seventh</I></TD>
+</TR>
+<TR>
+<TD><A HREF="#PConj" TITLE="PConj - phrase-beginning conjunction">PConj</A></TD>
+<TD>phrase-beginning conjunction</TD>
+<TD><I>therefore</I></TD>
+</TR>
+<TR>
+<TD><A HREF="#PN" TITLE="PN - proper name">PN</A></TD>
+<TD>proper name</TD>
+<TD><I>Paris</I></TD>
+</TR>
+<TR>
+<TD><A HREF="#Phr" TITLE="Phr - phrase in a text">Phr</A></TD>
+<TD>phrase in a text</TD>
+<TD><I>but be quiet please</I></TD>
+</TR>
+<TR>
+<TD><A HREF="#Pol" TITLE="Pol - polarity">Pol</A></TD>
+<TD>polarity</TD>
+<TD>positive, negative</TD>
+</TR>
+<TR>
+<TD><A HREF="#Predet" TITLE="Predet - predeterminer (prefixed Quant)">Predet</A></TD>
+<TD>predeterminer (prefixed Quant)</TD>
+<TD><I>all</I></TD>
+</TR>
+<TR>
+<TD><A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A></TD>
+<TD>preposition, or just case</TD>
+<TD><I>in</I></TD>
+</TR>
+<TR>
+<TD><A HREF="#Pron" TITLE="Pron - personal pronoun">Pron</A></TD>
+<TD>personal pronoun</TD>
+<TD><I>she</I></TD>
+</TR>
+<TR>
+<TD><A HREF="#QCl" TITLE="QCl - question clause, with all tenses">QCl</A></TD>
+<TD>question clause, with all tenses</TD>
+<TD><I>why does she walk</I></TD>
+</TR>
+<TR>
+<TD><A HREF="#QS" TITLE="QS - question">QS</A></TD>
+<TD>question</TD>
+<TD><I>where did she live</I></TD>
+</TR>
+<TR>
+<TD><A 'HREF="#Quant" TITLE="Quant - quantifier ('nucleus' of Det)"'>Quant</A></TD>
+<TD>quantifier ('nucleus' of Det)</TD>
+<TD><I>this/these</I></TD>
+</TR>
+<TR>
+<TD><A HREF="#RCl" TITLE="RCl - relative clause, with all tenses">RCl</A></TD>
+<TD>relative clause, with all tenses</TD>
+<TD><I>in which she lives</I></TD>
+</TR>
+<TR>
+<TD><A HREF="#RP" TITLE="RP - relative pronoun">RP</A></TD>
+<TD>relative pronoun</TD>
+<TD><I>in which</I></TD>
+</TR>
+<TR>
+<TD><A HREF="#RS" TITLE="RS - relative">RS</A></TD>
+<TD>relative</TD>
+<TD><I>in which she lived</I></TD>
+</TR>
+<TR>
+<TD><A HREF="#S" TITLE="S - declarative sentence">S</A></TD>
+<TD>declarative sentence</TD>
+<TD><I>she lived here</I></TD>
+</TR>
+<TR>
+<TD><A HREF="#SC" TITLE="SC - embedded sentence or question">SC</A></TD>
+<TD>embedded sentence or question</TD>
+<TD><I>that it rains</I></TD>
+</TR>
+<TR>
+<TD><A HREF="#Subj" TITLE="Subj - subjunction">Subj</A></TD>
+<TD>subjunction</TD>
+<TD><I>if</I></TD>
+</TR>
+<TR>
+<TD><A HREF="#Temp" TITLE="Temp - temporal and aspectual features">Temp</A></TD>
+<TD>temporal and aspectual features</TD>
+<TD>past anterior</TD>
+</TR>
+<TR>
+<TD><A HREF="#Tense" TITLE="Tense - tense">Tense</A></TD>
+<TD>tense</TD>
+<TD>present, past, future</TD>
+</TR>
+<TR>
+<TD><A HREF="#Text" TITLE="Text - text consisting of several phrases">Text</A></TD>
+<TD>text consisting of several phrases</TD>
+<TD><I>He is here. Why?</I></TD>
+</TR>
+<TR>
+<TD><A HREF="#Utt" TITLE="Utt - sentence, question, word...">Utt</A></TD>
+<TD>sentence, question, word...</TD>
+<TD><I>be quiet</I></TD>
+</TR>
+<TR>
+<TD><A HREF="#V" TITLE="V - one-place verb">V</A></TD>
+<TD>one-place verb</TD>
+<TD><I>sleep</I></TD>
+</TR>
+<TR>
+<TD><A HREF="#V2" TITLE="V2 - two-place verb">V2</A></TD>
+<TD>two-place verb</TD>
+<TD><I>love</I></TD>
+</TR>
+<TR>
+<TD><A HREF="#V2A" TITLE="V2A - verb with NP and AP complement">V2A</A></TD>
+<TD>verb with NP and AP complement</TD>
+<TD><I>paint</I></TD>
+</TR>
+<TR>
+<TD><A HREF="#V2Q" TITLE="V2Q - verb with NP and Q complement">V2Q</A></TD>
+<TD>verb with NP and Q complement</TD>
+<TD><I>ask</I></TD>
+</TR>
+<TR>
+<TD><A HREF="#V2S" TITLE="V2S - verb with NP and S complement">V2S</A></TD>
+<TD>verb with NP and S complement</TD>
+<TD><I>tell</I></TD>
+</TR>
+<TR>
+<TD><A HREF="#V2V" TITLE="V2V - verb with NP and V complement">V2V</A></TD>
+<TD>verb with NP and V complement</TD>
+<TD><I>cause</I></TD>
+</TR>
+<TR>
+<TD><A HREF="#V3" TITLE="V3 - three-place verb">V3</A></TD>
+<TD>three-place verb</TD>
+<TD><I>show</I></TD>
+</TR>
+<TR>
+<TD><A HREF="#VA" TITLE="VA - adjective-complement verb">VA</A></TD>
+<TD>adjective-complement verb</TD>
+<TD><I>look</I></TD>
+</TR>
+<TR>
+<TD><A HREF="#VP" TITLE="VP - verb phrase">VP</A></TD>
+<TD>verb phrase</TD>
+<TD><I>is very warm</I></TD>
+</TR>
+<TR>
+<TD><A HREF="#VPSlash" TITLE="VPSlash - verb phrase missing complement">VPSlash</A></TD>
+<TD>verb phrase missing complement</TD>
+<TD><I>give to John</I></TD>
+</TR>
+<TR>
+<TD><A HREF="#VQ" TITLE="VQ - question-complement verb">VQ</A></TD>
+<TD>question-complement verb</TD>
+<TD><I>wonder</I></TD>
+</TR>
+<TR>
+<TD><A HREF="#VS" TITLE="VS - sentence-complement verb">VS</A></TD>
+<TD>sentence-complement verb</TD>
+<TD><I>claim</I></TD>
+</TR>
+<TR>
+<TD><A HREF="#VV" TITLE="VV - verb-phrase-complement verb">VV</A></TD>
+<TD>verb-phrase-complement verb</TD>
+<TD><I>want</I></TD>
+</TR>
+<TR>
+<TD><A HREF="#Voc" TITLE="Voc - vocative or "please"">Voc</A></TD>
+<TD>vocative or "please"</TD>
+<TD><I>my darling</I></TD>
+</TR>
+</TABLE>
+
+<A NAME="toc5"></A>
+<H1>Syntax Rules and Structural Words</H1>
+
+<P>
+Source 1: <A HREF="http://www.grammaticalframework.org/lib/src/api/Constructors.gf"><CODE>../src/api/Constructors.gf</CODE></A>
+</P>
+<P>
+Source 2: <A HREF="http://www.grammaticalframework.org/lib/src/abstract/Structural.gf"><CODE>../src/abstract/Structural.gf</CODE></A>
+</P>
+
+<A NAME="A"></A>
+<H2>A - one-place adjective</H2>
+
+<P>
+Lexical category, constructors given in
+<A HREF="#RParadigms">lexical paradigms</A>.
+</P>
+
+<A NAME="A2"></A>
+<H2>A2 - two-place adjective</H2>
+
+<P>
+Lexical category, constructors given in
+<A HREF="#RParadigms">lexical paradigms</A>.
+</P>
+
+<A NAME="AP"></A>
+<H2>AP - adjectival phrase</H2>
+
+<TABLE BORDER="1" CELLPADDING="4">
+<TR>
+<TH>Function</TH>
+<TH>Type</TH>
+<TH COLSPAN="2">Example</TH>
+</TR>
+<TR>
+<TD><CODE>comparAP</CODE></TD>
+<TD><A HREF="#A" TITLE="A - one-place adjective">A</A> <CODE>-&gt;</CODE> <A HREF="#AP" TITLE="AP - adjectival phrase">AP</A></TD>
+<TD><div class=reveal> <I>warmer</I> <div class=popup> <ul> <li>API: <CODE>mkUtt (comparAP warm_A)</CODE> <li>Afr: <I>warmer</I> <li>Bul: <I>по - топъл</I> <li>Cat: <I>més tebi</I> <li>Dan: <I>varmere</I> <li>Dut: <I>warmer</I> <li>Eng: <I>warmer</I> <li>Fin: <I>lämpimämpi</I> <li>Fre: <I>plus chaud</I> <li>Ger: <I>wärmer</I> <li>Ita: <I>più caldo</I> <li>Nep: <I>अली तातो</I> <li>Nor: <I>varmere</I> <li>Pes: <I>گرم</I> <li>Pnb: <I>تتا</I> <li>Pol: <I>cieplejszy</I> <li>Ron: <I>mai călduţ</I> <li>Rus: <I>тёплее</I> <li>Spa: <I>más tibio</I> <li>Swe: <I>varmare</I> <li>Urd: <I>گرم</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>mkAP</CODE></TD>
+<TD><A HREF="#A" TITLE="A - one-place adjective">A</A> <CODE>-&gt;</CODE> <A HREF="#AP" TITLE="AP - adjectival phrase">AP</A></TD>
+<TD><div class=reveal> <I>warm</I> <div class=popup> <ul> <li>API: <CODE>mkAP warm_A</CODE> <li>Afr: <I>warm</I> <li>Bul: <I>топъл</I> <li>Cat: <I>tebi</I> <li>Dan: <I>varm</I> <li>Dut: <I>warm</I> <li>Eng: <I>warm</I> <li>Fin: <I>lämmin</I> <li>Fre: <I>chaud</I> <li>Ger: <I>warm</I> <li>Ita: <I>caldo</I> <li>Nep: <I>तातो</I> <li>Nor: <I>varm</I> <li>Pes: <I>گرم</I> <li>Pnb: <I>{s = variants {table ParamX.Number [table ResPnb.Gender [table ResPnb.Case ["تتا";</I> <li>Pol: <I>ciepły</I> <li>Ron: <I>călduţ</I> <li>Rus: <I>тёплый</I> <li>Spa: <I>tibio</I> <li>Swe: <I>varm</I> <li>Urd: <I>گرم</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>mkAP</CODE></TD>
+<TD><A HREF="#A" TITLE="A - one-place adjective">A</A> <CODE>-&gt;</CODE> <A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A> <CODE>-&gt;</CODE> <A HREF="#AP" TITLE="AP - adjectival phrase">AP</A></TD>
+<TD><div class=reveal> <I>warmer than Paris</I> <div class=popup> <ul> <li>API: <CODE>mkAP warm_A (mkNP paris_PN)</CODE> <li>Afr: <I>warmer as Parys</I> <li>Bul: <I>по - топъл от Париж</I> <li>Cat: <I>més tebi que Paris</I> <li>Dan: <I>varmere end Paris</I> <li>Dut: <I>warmer dan Parijs</I> <li>Eng: <I>warmer than Paris</I> <li>Fin: <I>Pariisia lämpimämpi</I> <li>Fre: <I>plus chaud que Paris</I> <li>Ger: <I>wärmer als Paris</I> <li>Ita: <I>più caldo di Parigi</I> <li>Nep: <I>पेरिस भन्दा तातो</I> <li>Nor: <I>varmere enn Paris</I> <li>Pes: <I>گرم تر از پاریس</I> <li>Pnb: <I>{s : ParamX.Number =&gt; ResPnb.Gender =&gt; ResPnb.Case =&gt; Str</I> <li>Pol: <I>cieplejszy niż Paryż</I> <li>Ron: <I>mai călduţ decât Paris</I> <li>Rus: <I>тёплее Парижа</I> <li>Spa: <I>más tibio que Paris</I> <li>Swe: <I>varmare än Paris</I> <li>Urd: <I>پیرس سے گرم</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>mkAP</CODE></TD>
+<TD><A HREF="#A2" TITLE="A2 - two-place adjective">A2</A> <CODE>-&gt;</CODE> <A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A> <CODE>-&gt;</CODE> <A HREF="#AP" TITLE="AP - adjectival phrase">AP</A></TD>
+<TD><div class=reveal> <I>married to her</I> <div class=popup> <ul> <li>API: <CODE>mkAP married_A2 she_NP</CODE> <li>Afr: <I>getroud met haar</I> <li>Bul: <I>женен за нея</I> <li>Cat: <I>casat a ella</I> <li>Dan: <I>gift med hende</I> <li>Dut: <I>getrouwd met haar</I> <li>Eng: <I>married to her</I> <li>Fin: <I>hänen kanssa avioitunut</I> <li>Fre: <I>marié à elle</I> <li>Ger: <I>verheiratet mit ihr</I> <li>Ita: <I>sposato con lei</I> <li>Nep: <I>उनी सँग विवाहित</I> <li>Nor: <I>gift med henne</I> <li>Pes: <I>او متأهل</I> <li>Pnb: <I>*</I> <li>Pol: <I>zaślubiony jej</I> <li>Ron: <I>căsătorit cu ea</I> <li>Rus: <I>замужем за ей</I> <li>Spa: <I>casado a ella</I> <li>Swe: <I>gift med henne</I> <li>Urd: <I>اس سے [شادی كرنa]</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>mkAP</CODE></TD>
+<TD><A HREF="#A2" TITLE="A2 - two-place adjective">A2</A> <CODE>-&gt;</CODE> <A HREF="#AP" TITLE="AP - adjectival phrase">AP</A></TD>
+<TD><div class=reveal> <I>married</I> <div class=popup> <ul> <li>API: <CODE>mkAP married_A2</CODE> <li>Afr: <I>getroud</I> <li>Bul: <I>женен</I> <li>Cat: <I>casat</I> <li>Dan: <I>gift</I> <li>Dut: <I>getrouwd</I> <li>Eng: <I>married</I> <li>Fin: <I>avioitunut</I> <li>Fre: <I>marié</I> <li>Ger: <I>verheiratet</I> <li>Ita: <I>sposato</I> <li>Nep: <I>विवाहित</I> <li>Nor: <I>gift</I> <li>Pes: <I>متأهل</I> <li>Pnb: <I>*</I> <li>Pol: <I>zaślubiony</I> <li>Ron: <I>căsătorit</I> <li>Rus: <I>замужем</I> <li>Spa: <I>casado</I> <li>Swe: <I>gift</I> <li>Urd: <I>[شادی كرنa]</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>mkAP</CODE></TD>
+<TD><A HREF="#AP" TITLE="AP - adjectival phrase">AP</A> <CODE>-&gt;</CODE> <A HREF="#S" TITLE="S - declarative sentence">S</A> <CODE>-&gt;</CODE> <A HREF="#AP" TITLE="AP - adjectival phrase">AP</A></TD>
+<TD><div class=reveal> <I>it is good that she sleeps</I> <div class=popup> <ul> <li>API: <CODE>mkCl (mkVP (mkAP (mkAP good_A) (mkS (mkCl she_NP sleep_V))))</CODE> <li>Afr: <I>dit is goed dat sy slaap</I> <li>Bul: <I>е добро , че тя спи</I> <li>Cat: <I>és bo que ella dorm</I> <li>Dan: <I>det er godt at hun sover</I> <li>Dut: <I>'t is goed dat ze slaapt</I> <li>Eng: <I>it is good that she sleeps</I> <li>Fin: <I>on hyvä että hän nukkuu</I> <li>Fre: <I>il est bon qu' elle dort</I> <li>Ger: <I>es ist gut daß sie schläft</I> <li>Ita: <I>è buono che lei dorme</I> <li>Nep: <I>की उनी सुत्छिन् राम्रो छ</I> <li>Nor: <I>det er godt at hun sover</I> <li>Pes: <I>خوب که او می خوابد است</I> <li>Pnb: <I>اچھا كہ او سوندی اے اے</I> <li>Pol: <I>jest dobrze , że ona śpi</I> <li>Ron: <I>este bun cã ea doarme</I> <li>Rus: <I>хорошее , что она спдит</I> <li>Spa: <I>es bueno que ella duerme</I> <li>Swe: <I>det är gott att hon sover</I> <li>Urd: <I>اچھا كہ وہ سوتی ہے ہے</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>mkAP</CODE></TD>
+<TD><A HREF="#AP" TITLE="AP - adjectival phrase">AP</A> <CODE>-&gt;</CODE> <A HREF="#QS" TITLE="QS - question">QS</A> <CODE>-&gt;</CODE> <A HREF="#AP" TITLE="AP - adjectival phrase">AP</A></TD>
+<TD><div class=reveal> <I>it is uncertain who sleeps</I> <div class=popup> <ul> <li>API: <CODE>mkCl (mkVP (mkAP (mkAP uncertain_A) (mkQS (mkQCl who_IP sleep_V))))</CODE> <li>Afr: <I>dit is onseker wie slaap</I> <li>Bul: <I>е неясно който спи</I> <li>Cat: <I>és incert qui dorm</I> <li>Dan: <I>*</I> <li>Dut: <I>'t is onzeker wie slaapt</I> <li>Eng: <I>it is uncertain who sleeps</I> <li>Fin: <I>on epävarma kuka nukkuu</I> <li>Fre: <I>il est incertain qui dort</I> <li>Ger: <I>es ist unsicher wer schläft</I> <li>Ita: <I>è insicuro chi dorme</I> <li>Nep: <I>को सुत्छन् अनिश्चित छ</I> <li>Nor: <I>*</I> <li>Pes: <I>نامعلوم چه کسی می خوابد است</I> <li>Pnb: <I>*</I> <li>Pol: <I>jest niepewnie , kto śpi</I> <li>Ron: <I>este nesigur cine doarme</I> <li>Rus: <I>*</I> <li>Spa: <I>*</I> <li>Swe: <I>det är osäkert vem som sover</I> <li>Urd: <I>غیریقینی كون سوتا ہے ہے</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>mkAP</CODE></TD>
+<TD><A HREF="#AP" TITLE="AP - adjectival phrase">AP</A> <CODE>-&gt;</CODE> <A HREF="#VP" TITLE="VP - verb phrase">VP</A> <CODE>-&gt;</CODE> <A HREF="#AP" TITLE="AP - adjectival phrase">AP</A></TD>
+<TD><div class=reveal> <I>she is ready to sleep</I> <div class=popup> <ul> <li>API: <CODE>mkCl she_NP (mkAP (mkAP ready_A) (mkVP sleep_V))</CODE> <li>Afr: <I>sy is reg te slaap</I> <li>Bul: <I>тя е готова да спя</I> <li>Cat: <I>ella és preparata dormir</I> <li>Dan: <I>*</I> <li>Dut: <I>ze is klaar te slapen</I> <li>Eng: <I>she is ready to sleep</I> <li>Fin: <I>hän on valmis nukkumaan</I> <li>Fre: <I>elle est prête dormir</I> <li>Ger: <I>sie ist fertig zu schlafen</I> <li>Ita: <I>lei è pronta dormire</I> <li>Nep: <I>उनी सुत्न तयार छिन्</I> <li>Nor: <I>*</I> <li>Pes: <I>او آماده خوابیدن است</I> <li>Pnb: <I>*</I> <li>Pol: <I>ona jest <A HREF="exist"> gotowy : the adverb positive form does not</A> spać</I> <li>Ron: <I>ea este pregătită sã doarmă</I> <li>Rus: <I>*</I> <li>Spa: <I>*</I> <li>Swe: <I>hon är färdig att sova</I> <li>Urd: <I>*</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>mkAP</CODE></TD>
+<TD><A HREF="#AP" TITLE="AP - adjectival phrase">AP</A> <CODE>-&gt;</CODE> <A HREF="#SC" TITLE="SC - embedded sentence or question">SC</A> <CODE>-&gt;</CODE> <A HREF="#AP" TITLE="AP - adjectival phrase">AP</A></TD>
+<TD><div class=reveal> <I>she is ready to sleep</I> <div class=popup> <ul> <li>API: <CODE>mkCl she_NP (mkAP (mkAP ready_A) (mkSC (mkVP sleep_V)))</CODE> <li>Afr: <I>sy is reg te slaap</I> <li>Bul: <I>тя е готова да спя</I> <li>Cat: <I>ella és preparata dormir</I> <li>Dan: <I>*</I> <li>Dut: <I>ze is klaar te slapen</I> <li>Eng: <I>she is ready to sleep</I> <li>Fin: <I>hän on valmis nukkumaan</I> <li>Fre: <I>elle est prête dormir</I> <li>Ger: <I>sie ist fertig zu schlafen</I> <li>Ita: <I>lei è pronta dormire</I> <li>Nep: <I>उनी सुत्न तयार छिन्</I> <li>Nor: <I>*</I> <li>Pes: <I>او آماده خوابیدن است</I> <li>Pnb: <I>*</I> <li>Pol: <I>ona jest <A HREF="exist"> gotowy : the adverb positive form does not</A> spać</I> <li>Ron: <I>ea este pregătită sã doarmă</I> <li>Rus: <I>*</I> <li>Spa: <I>*</I> <li>Swe: <I>hon är färdig att sova</I> <li>Urd: <I>*</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>mkAP</CODE></TD>
+<TD><A HREF="#AdA" TITLE="AdA - adjective-modifying adverb">AdA</A> <CODE>-&gt;</CODE> <A HREF="#A" TITLE="A - one-place adjective">A</A> <CODE>-&gt;</CODE> <A HREF="#AP" TITLE="AP - adjectival phrase">AP</A></TD>
+<TD><div class=reveal> <I>very old</I> <div class=popup> <ul> <li>API: <CODE>mkAP very_AdA old_A</CODE> <li>Afr: <I>baie oud</I> <li>Bul: <I>много стар</I> <li>Cat: <I>molt vell</I> <li>Dan: <I>meget gammel</I> <li>Dut: <I>erg oud</I> <li>Eng: <I>very old</I> <li>Fin: <I>erittäin vanha</I> <li>Fre: <I>très vieux</I> <li>Ger: <I>sehr alt</I> <li>Ita: <I>molto vecchio</I> <li>Nep: <I>धेरै बुढो</I> <li>Nor: <I>mye gammel</I> <li>Pes: <I>خیلی پیر</I> <li>Pnb: <I>{s : ParamX.Number =&gt; ResPnb.Gender =&gt; ResPnb.Case =&gt; Str</I> <li>Pol: <I>bardzo stary</I> <li>Ron: <I>foarte vechi</I> <li>Rus: <I>очень старый</I> <li>Spa: <I>muy viejo</I> <li>Swe: <I>mycket gammal</I> <li>Urd: <I>بہت بوڑھا</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>mkAP</CODE></TD>
+<TD><A HREF="#AdA" TITLE="AdA - adjective-modifying adverb">AdA</A> <CODE>-&gt;</CODE> <A HREF="#AP" TITLE="AP - adjectival phrase">AP</A> <CODE>-&gt;</CODE> <A HREF="#AP" TITLE="AP - adjectival phrase">AP</A></TD>
+<TD><div class=reveal> <I>very very old</I> <div class=popup> <ul> <li>API: <CODE>mkAP very_AdA (mkAP very_AdA old_A)</CODE> <li>Afr: <I>baie baie oud</I> <li>Bul: <I>много много стар</I> <li>Cat: <I>molt molt vell</I> <li>Dan: <I>meget meget gammel</I> <li>Dut: <I>erg erg oud</I> <li>Eng: <I>very very old</I> <li>Fin: <I>erittäin erittäin vanha</I> <li>Fre: <I>très très vieux</I> <li>Ger: <I>sehr sehr alt</I> <li>Ita: <I>molto molto vecchio</I> <li>Nep: <I>धेरै धेरै बुढो</I> <li>Nor: <I>mye mye gammel</I> <li>Pes: <I>خیلی خیلی پیر</I> <li>Pnb: <I>{s : ParamX.Number =&gt; ResPnb.Gender =&gt; ResPnb.Case =&gt; Str</I> <li>Pol: <I>bardzo bardzo stary</I> <li>Ron: <I>foarte foarte vechi</I> <li>Rus: <I>очень очень старый</I> <li>Spa: <I>muy muy viejo</I> <li>Swe: <I>mycket mycket gammal</I> <li>Urd: <I>بہت بہت بوڑھا</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>mkAP</CODE></TD>
+<TD><A HREF="#Conj" TITLE="Conj - conjunction">Conj</A> <CODE>-&gt;</CODE> <A HREF="#AP" TITLE="AP - adjectival phrase">AP</A> <CODE>-&gt;</CODE> <A HREF="#AP" TITLE="AP - adjectival phrase">AP</A> <CODE>-&gt;</CODE> <A HREF="#AP" TITLE="AP - adjectival phrase">AP</A></TD>
+<TD><div class=reveal> <I>old or young</I> <div class=popup> <ul> <li>API: <CODE>mkAP or_Conj (mkAP old_A) (mkAP young_A)</CODE> <li>Afr: <I>oud of jonk</I> <li>Bul: <I>стар или млад</I> <li>Cat: <I>vell o jove</I> <li>Dan: <I>gammel eller ung</I> <li>Dut: <I>oud of jong</I> <li>Eng: <I>old or young</I> <li>Fin: <I>vanha tai nuori</I> <li>Fre: <I>vieux ou jeune</I> <li>Ger: <I>alt oder jung</I> <li>Ita: <I>vecchio o giovane</I> <li>Nep: <I>बुढो अथवा जवान</I> <li>Nor: <I>gammel eller ung</I> <li>Pes: <I>پیر یا جوان</I> <li>Pnb: <I>{s : ParamX.Number =&gt; ResPnb.Gender =&gt; ResPnb.Case =&gt; Str</I> <li>Pol: <I>stary lub młody</I> <li>Ron: <I>vechi sau tânăr</I> <li>Rus: <I>старый или молодой</I> <li>Spa: <I>viejo o joven</I> <li>Swe: <I>gammal eller ung</I> <li>Urd: <I>بوڑھا یا جوان</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>mkAP</CODE></TD>
+<TD><A HREF="#Conj" TITLE="Conj - conjunction">Conj</A> <CODE>-&gt;</CODE> <A HREF="#ListAP">ListAP</A> <CODE>-&gt;</CODE> <A HREF="#AP" TITLE="AP - adjectival phrase">AP</A></TD>
+<TD><div class=reveal> <I>old , big and warm</I> <div class=popup> <ul> <li>API: <CODE>mkAP and_Conj (mkListAP (mkAP old_A) (mkListAP (mkAP big_A) (mkAP warm_A)))</CODE> <li>Afr: <I>oud , groot en warm</I> <li>Bul: <I>стар , голям и топъл</I> <li>Cat: <I>vell , gros i tebi</I> <li>Dan: <I>gammel , stor og varm</I> <li>Dut: <I>oud , groot en warm</I> <li>Eng: <I>old , big and warm</I> <li>Fin: <I>vanha , suuri ja lämmin</I> <li>Fre: <I>vieux , grand et chaud</I> <li>Ger: <I>alt , groß und warm</I> <li>Ita: <I>vecchio , grande e caldo</I> <li>Nep: <I>बुढो , ठुलो र तातो</I> <li>Nor: <I>gammel , stor og varm</I> <li>Pes: <I>پیر , بزرگ و گرم</I> <li>Pnb: <I>{s : ParamX.Number =&gt; ResPnb.Gender =&gt; ResPnb.Case =&gt; Str</I> <li>Pol: <I>stary , duży i ciepły</I> <li>Ron: <I>vechi , mare şi călduţ</I> <li>Rus: <I>большой , тёплый и старый</I> <li>Spa: <I>viejo , grande y tibio</I> <li>Swe: <I>gammal , stor och varm</I> <li>Urd: <I>بوڑھا , بڑا اور گرم</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>mkAP</CODE></TD>
+<TD><A HREF="#Ord" TITLE="Ord - ordinal number (used in Det)">Ord</A> <CODE>-&gt;</CODE> <A HREF="#AP" TITLE="AP - adjectival phrase">AP</A></TD>
+<TD><div class=reveal> <I>oldest</I> <div class=popup> <ul> <li>API: <CODE>mkAP (mkOrd old_A)</CODE> <li>Afr: <I>oudste</I> <li>Bul: <I>най - стар</I> <li>Cat: <I>més vell</I> <li>Dan: <I>ældste</I> <li>Dut: <I>oudst</I> <li>Eng: <I>oldest</I> <li>Fin: <I>vanhin</I> <li>Fre: <I>plus vieux</I> <li>Ger: <I>ältest</I> <li>Ita: <I>più vecchio</I> <li>Nep: <I>सबभन्दा बुढो</I> <li>Nor: <I>eldste</I> <li>Pes: <I>پیر ترین</I> <li>Pnb: <I>بوڈا</I> <li>Pol: <I>najstarszy</I> <li>Ron: <I>cel mai vechi</I> <li>Rus: <I>старый</I> <li>Spa: <I>más viejo</I> <li>Swe: <I>äldsta</I> <li>Urd: <I>سب سے بوڑھا</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>mkAP</CODE></TD>
+<TD><A HREF="#CAdv" TITLE="CAdv - comparative adverb">CAdv</A> <CODE>-&gt;</CODE> <A HREF="#AP" TITLE="AP - adjectival phrase">AP</A> <CODE>-&gt;</CODE> <A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A> <CODE>-&gt;</CODE> <A HREF="#AP" TITLE="AP - adjectival phrase">AP</A></TD>
+<TD><div class=reveal> <I>as old as she</I> <div class=popup> <ul> <li>API: <CODE>mkAP as_CAdv (mkAP old_A) she_NP</CODE> <li>Afr: <I>so oud soos sy</I> <li>Bul: <I>*</I> <li>Cat: <I>tan vell com ella</I> <li>Dan: <I>*</I> <li>Dut: <I>zo oud als ze</I> <li>Eng: <I>as old as she</I> <li>Fin: <I>yhtä vanha kuin hän</I> <li>Fre: <I>aussi vieux qu' elle</I> <li>Ger: <I>ebenso alt wie sie</I> <li>Ita: <I>così vecchio di lei</I> <li>Nep: <I>उनी जत्तीकै बुढो</I> <li>Nor: <I>*</I> <li>Pes: <I>به اندازه ی او پیر</I> <li>Pnb: <I>{s : ParamX.Number =&gt; ResPnb.Gender =&gt; ResPnb.Case =&gt; Str</I> <li>Pol: <I>tak stary jak ona</I> <li>Ron: <I>cel la fel de vechi ca ea</I> <li>Rus: <I>*</I> <li>Spa: <I>si viejo que ella</I> <li>Swe: <I>lika gammal som hon</I> <li>Urd: <I>اتنا بوڑھا جتنا وہ</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>reflAP</CODE></TD>
+<TD><A HREF="#A2" TITLE="A2 - two-place adjective">A2</A> <CODE>-&gt;</CODE> <A HREF="#AP" TITLE="AP - adjectival phrase">AP</A></TD>
+<TD><div class=reveal> <I>married to itself</I> <div class=popup> <ul> <li>API: <CODE>mkUtt (reflAP married_A2)</CODE> <li>Afr: <I>getroud met hom</I> <li>Bul: <I>женен за себе си</I> <li>Cat: <I>casat a sÌ</I> <li>Dan: <I>gift med sig</I> <li>Dut: <I>getrouwd met zich</I> <li>Eng: <I>married to itself</I> <li>Fin: <I>avioitunut itsensä kanssa</I> <li>Fre: <I>marié à soi</I> <li>Ger: <I>verheiratet mit sich</I> <li>Ita: <I>sposato con se</I> <li>Nep: <I>आफै सँग विवाहित</I> <li>Nor: <I>gift med seg</I> <li>Pes: <I>متأهل</I> <li>Pnb: <I>*</I> <li>Pol: <I>zaślubiony sobie</I> <li>Ron: <I>căsătorit cu sine însuşi</I> <li>Rus: <I>замужем за собой</I> <li>Spa: <I>casado a sí</I> <li>Swe: <I>gift med sig</I> <li>Urd: <I>[شادی كرنa] خود سے</I> </ul> </div> </div></TD>
+</TR>
+</TABLE>
+
+<A NAME="AdA"></A>
+<H2>AdA - adjective-modifying adverb</H2>
+
+<TABLE BORDER="1" CELLPADDING="4">
+<TR>
+<TH>Function</TH>
+<TH>Type</TH>
+<TH COLSPAN="2">Example</TH>
+</TR>
+<TR>
+<TD><CODE>almost_AdA</CODE></TD>
+<TD><A HREF="#AdA" TITLE="AdA - adjective-modifying adverb">AdA</A></TD>
+<TD><div class=reveal> <I>almost red</I> <div class=popup> <ul> <li>API: <CODE>mkAP almost_AdA red_A</CODE> <li>Afr: <I>byna rooi</I> <li>Bul: <I>почти червен</I> <li>Cat: <I>{s : CommonRomance.AForm =&gt; Str</I> <li>Dan: <I>næsten rød</I> <li>Dut: <I>bijna rood</I> <li>Eng: <I>almost red</I> <li>Fin: <I>melkein punainen</I> <li>Fre: <I>presque rouge</I> <li>Ger: <I>fast rot</I> <li>Ita: <I>quasi rosso</I> <li>Nep: <I>झण्डै रातो</I> <li>Nor: <I>nesten rød</I> <li>Pes: <I>تقریباً قرمز</I> <li>Pnb: <I>تقریبا لال</I> <li>Pol: <I>prawie czerwony</I> <li>Ron: <I>aproape roşu</I> <li>Rus: <I>почти красный</I> <li>Spa: <I>casi rojo</I> <li>Swe: <I>nästan röd</I> <li>Urd: <I>تقریبا لال</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>quite_Adv</CODE></TD>
+<TD><A HREF="#AdA" TITLE="AdA - adjective-modifying adverb">AdA</A></TD>
+<TD><div class=reveal> <I>quite</I> <div class=popup> <ul> <li>API: <CODE>quite_Adv</CODE> <li>Afr: <I>heel</I> <li>Bul: <I>доста</I> <li>Cat: <I>bastant</I> <li>Dan: <I>temmelig</I> <li>Dut: <I>heel</I> <li>Eng: <I>quite</I> <li>Fin: <I>melko</I> <li>Fre: <I>assez</I> <li>Ger: <I>ziemlich</I> <li>Ita: <I>assai</I> <li>Nep: <I>एकदम</I> <li>Nor: <I>temmelig</I> <li>Pes: <I>کاملاً</I> <li>Pnb: <I>كہامoسہ</I> <li>Pol: <I>całkiem</I> <li>Ron: <I>chiar</I> <li>Rus: <I>довольно</I> <li>Spa: <I>bastante</I> <li>Swe: <I>ganska</I> <li>Urd: <I>خاموش</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>so_AdA</CODE></TD>
+<TD><A HREF="#AdA" TITLE="AdA - adjective-modifying adverb">AdA</A></TD>
+<TD><div class=reveal> <I>so</I> <div class=popup> <ul> <li>API: <CODE>so_AdA</CODE> <li>Afr: <I>so</I> <li>Bul: <I>толкова</I> <li>Cat: <I>tan</I> <li>Dan: <I>så</I> <li>Dut: <I>zo</I> <li>Eng: <I>so</I> <li>Fin: <I>niin</I> <li>Fre: <I>si</I> <li>Ger: <I>so</I> <li>Ita: <I>cosÃ¬</I> <li>Nep: <I>यस कारण</I> <li>Nor: <I>så</I> <li>Pes: <I>بسیار</I> <li>Pnb: <I>سo</I> <li>Pol: <I>tak</I> <li>Ron: <I>aşa</I> <li>Rus: <I>так</I> <li>Spa: <I>tanto</I> <li>Swe: <I>så</I> <li>Urd: <I>[اس لیE]</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>too_AdA</CODE></TD>
+<TD><A HREF="#AdA" TITLE="AdA - adjective-modifying adverb">AdA</A></TD>
+<TD><div class=reveal> <I>too</I> <div class=popup> <ul> <li>API: <CODE>too_AdA</CODE> <li>Afr: <I>te</I> <li>Bul: <I>прекалено</I> <li>Cat: <I>massa</I> <li>Dan: <I>for</I> <li>Dut: <I>te</I> <li>Eng: <I>too</I> <li>Fin: <I>liian</I> <li>Fre: <I>trop</I> <li>Ger: <I>zu</I> <li>Ita: <I>troppo</I> <li>Nep: <I>पनि</I> <li>Nor: <I>for</I> <li>Pes: <I>خیلی</I> <li>Pnb: <I>بہت</I> <li>Pol: <I>za</I> <li>Ron: <I>prea</I> <li>Rus: <I>слишком</I> <li>Spa: <I>demasiado</I> <li>Swe: <I>för</I> <li>Urd: <I>بہت</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>very_AdA</CODE></TD>
+<TD><A HREF="#AdA" TITLE="AdA - adjective-modifying adverb">AdA</A></TD>
+<TD><div class=reveal> <I>very</I> <div class=popup> <ul> <li>API: <CODE>very_AdA</CODE> <li>Afr: <I>baie</I> <li>Bul: <I>много</I> <li>Cat: <I>molt</I> <li>Dan: <I>meget</I> <li>Dut: <I>erg</I> <li>Eng: <I>very</I> <li>Fin: <I>erittäin</I> <li>Fre: <I>très</I> <li>Ger: <I>sehr</I> <li>Ita: <I>molto</I> <li>Nep: <I>धेरै</I> <li>Nor: <I>mye</I> <li>Pes: <I>خیلی</I> <li>Pnb: <I>بہت</I> <li>Pol: <I>bardzo</I> <li>Ron: <I>foarte</I> <li>Rus: <I>очень</I> <li>Spa: <I>muy</I> <li>Swe: <I>mycket</I> <li>Urd: <I>بہت</I> </ul> </div> </div></TD>
+</TR>
+</TABLE>
+
+<A NAME="AdN"></A>
+<H2>AdN - numeral-modifying adverb</H2>
+
+<TABLE BORDER="1" CELLPADDING="4">
+<TR>
+<TH>Function</TH>
+<TH>Type</TH>
+<TH COLSPAN="2">Example</TH>
+</TR>
+<TR>
+<TD><CODE>almost_AdN</CODE></TD>
+<TD><A HREF="#AdN" TITLE="AdN - numeral-modifying adverb">AdN</A></TD>
+<TD><div class=reveal> <I>atomic term almostAdN</I> <div class=popup> <ul> <li>API: <CODE>mkCard almostAdN (mkCard (mkNumeral n8_Unit))</CODE> <li>Afr: <I>*</I> <li>Bul: <I>*</I> <li>Cat: <I>*</I> <li>Dan: <I>*</I> <li>Dut: <I>*</I> <li>Eng: <I>*</I> <li>Fin: <I>*</I> <li>Fre: <I>*</I> <li>Ger: <I>*</I> <li>Ita: <I>*</I> <li>Nep: <I>*</I> <li>Nor: <I>*</I> <li>Pes: <I>*</I> <li>Pnb: <I>*</I> <li>Pol: <I>*</I> <li>Ron: <I>*</I> <li>Rus: <I>*</I> <li>Spa: <I>*</I> <li>Swe: <I>*</I> <li>Urd: <I>*</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>at_least_AdN</CODE></TD>
+<TD><A HREF="#AdN" TITLE="AdN - numeral-modifying adverb">AdN</A></TD>
+<TD><div class=reveal> <I>at least eight</I> <div class=popup> <ul> <li>API: <CODE>mkCard at_least_AdN (mkCard (mkNumeral n8_Unit))</CODE> <li>Afr: <I>ten minste agt</I> <li>Bul: <I>*</I> <li>Cat: <I>almenys vuit</I> <li>Dan: <I>*</I> <li>Dut: <I>ten minste acht</I> <li>Eng: <I>at least eight</I> <li>Fin: <I>vähintään kahdeksan</I> <li>Fre: <I>au moins huit</I> <li>Ger: <I>wenigstens acht</I> <li>Ita: <I>almeno otto</I> <li>Nep: <I>कमसेकम आठ</I> <li>Nor: <I>*</I> <li>Pes: <I>حداقل هشت</I> <li>Pnb: <I>كم توں كم اٹھ</I> <li>Pol: <I>co najmniej osiemm</I> <li>Ron: <I>cel puţin opt</I> <li>Rus: <I>*</I> <li>Spa: <I>*</I> <li>Swe: <I>minst åtta</I> <li>Urd: <I>كم از كم آٹھ</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>at_most_AdN</CODE></TD>
+<TD><A HREF="#AdN" TITLE="AdN - numeral-modifying adverb">AdN</A></TD>
+<TD><div class=reveal> <I>at most eight</I> <div class=popup> <ul> <li>API: <CODE>mkCard at_most_AdN (mkCard (mkNumeral n8_Unit))</CODE> <li>Afr: <I>hoogstens agt</I> <li>Bul: <I>*</I> <li>Cat: <I>com a màxim vuit</I> <li>Dan: <I>*</I> <li>Dut: <I>hooguit acht</I> <li>Eng: <I>at most eight</I> <li>Fin: <I>enintään kahdeksan</I> <li>Fre: <I>au plus huit</I> <li>Ger: <I>höchstens acht</I> <li>Ita: <I>al massimo otto</I> <li>Nep: <I>बढीमा आठ</I> <li>Nor: <I>*</I> <li>Pes: <I>حداکثر هشت</I> <li>Pnb: <I>زیادہ توں زیادہ اٹھ</I> <li>Pol: <I>co najwyżej osiemm</I> <li>Ron: <I>cel mult opt</I> <li>Rus: <I>*</I> <li>Spa: <I>*</I> <li>Swe: <I>högst åtta</I> <li>Urd: <I>زیادہ سے زیادہ آٹھ</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>mkAdN</CODE></TD>
+<TD><A HREF="#CAdv" TITLE="CAdv - comparative adverb">CAdv</A> <CODE>-&gt;</CODE> <A HREF="#AdN" TITLE="AdN - numeral-modifying adverb">AdN</A></TD>
+<TD><div class=reveal> <I>more than eight</I> <div class=popup> <ul> <li>API: <CODE>mkCard (mkAdN more_CAdv) (mkCard (mkNumeral n8_Unit))</CODE> <li>Afr: <I>meer as agt</I> <li>Bul: <I>повече от осмина</I> <li>Cat: <I>més que vuit</I> <li>Dan: <I>mer end otte</I> <li>Dut: <I>meer dan acht</I> <li>Eng: <I>more than eight</I> <li>Fin: <I>enemmän kuin kahdeksan</I> <li>Fre: <I>plus pre {"que"; "qu'" / strs {"a"; "à"; "â"; "e"; "é"; "è"; "ê¨";</I> <li>Ger: <I>mehr als acht</I> <li>Ita: <I>più di otto</I> <li>Nep: <I>भन्दा बढी आठ</I> <li>Nor: <I>mer enn åtte</I> <li>Pes: <I>بیشتر از هشت</I> <li>Pnb: <I>نالوں ہور اٹھ</I> <li>Pol: <I>więcej niż osiemm</I> <li>Ron: <I>mai mult decât opt</I> <li>Rus: <I>более чем восемь</I> <li>Spa: <I>más que ocho</I> <li>Swe: <I>mer än åtta</I> <li>Urd: <I>آٹھ سے زیادہ</I> </ul> </div> </div></TD>
+</TR>
+</TABLE>
+
+<A NAME="AdV"></A>
+<H2>AdV - adverb directly attached to verb</H2>
+
+<TABLE BORDER="1" CELLPADDING="4">
+<TR>
+<TH>Function</TH>
+<TH>Type</TH>
+<TH COLSPAN="2">Example</TH>
+</TR>
+<TR>
+<TD><CODE>always_AdV</CODE></TD>
+<TD><A HREF="#AdV" TITLE="Adv - verb-phrase-modifying adverb">AdV</A></TD>
+<TD><div class=reveal> <I>always</I> <div class=popup> <ul> <li>API: <CODE>always_AdV</CODE> <li>Afr: <I>altyd</I> <li>Bul: <I>винаги</I> <li>Cat: <I>sempre</I> <li>Dan: <I>altid</I> <li>Dut: <I>altijd</I> <li>Eng: <I>always</I> <li>Fin: <I>aina</I> <li>Fre: <I>toujours</I> <li>Ger: <I>immer</I> <li>Ita: <I>sempre</I> <li>Nep: <I>सधैँ</I> <li>Nor: <I>altid</I> <li>Pes: <I>همیشه</I> <li>Pnb: <I>ہمیشہ</I> <li>Pol: <I>zawsze</I> <li>Ron: <I>mereu</I> <li>Rus: <I>всегда</I> <li>Spa: <I>siempre</I> <li>Swe: <I>alltid</I> <li>Urd: <I>ہمیشہ</I> </ul> </div> </div></TD>
+</TR>
+</TABLE>
+
+<A NAME="Adv"></A>
+<H2>Adv - verb-phrase-modifying adverb</H2>
+
+<TABLE BORDER="1" CELLPADDING="4">
+<TR>
+<TH>Function</TH>
+<TH>Type</TH>
+<TH COLSPAN="2">Example</TH>
+</TR>
+<TR>
+<TD><CODE>everywhere_Adv</CODE></TD>
+<TD><A HREF="#Adv" TITLE="Adv - verb-phrase-modifying adverb">Adv</A></TD>
+<TD><div class=reveal> <I>everywhere</I> <div class=popup> <ul> <li>API: <CODE>everywhere_Adv</CODE> <li>Afr: <I>oral</I> <li>Bul: <I>навсякъде</I> <li>Cat: <I>a tot arreu</I> <li>Dan: <I>overalt</I> <li>Dut: <I>overal</I> <li>Eng: <I>everywhere</I> <li>Fin: <I>kaikkialla</I> <li>Fre: <I>partout</I> <li>Ger: <I>überall</I> <li>Ita: <I>dappertutto</I> <li>Nep: <I>जाता ततै</I> <li>Nor: <I>overalt</I> <li>Pes: <I>هر جا</I> <li>Pnb: <I>ہر تھاں</I> <li>Pol: <I>wszędzie</I> <li>Ron: <I>pretutindeni</I> <li>Rus: <I>везде</I> <li>Spa: <I>en todas partes</I> <li>Swe: <I>överallt</I> <li>Urd: <I>ہر جگہ</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>here7from_Adv</CODE></TD>
+<TD><A HREF="#Adv" TITLE="Adv - verb-phrase-modifying adverb">Adv</A></TD>
+<TD><div class=reveal> <I>from here</I> <div class=popup> <ul> <li>API: <CODE>here7from_Adv</CODE> <li>Afr: <I>van hier</I> <li>Bul: <I>от тук</I> <li>Cat: <I>d'aquí</I> <li>Dan: <I>herfra</I> <li>Dut: <I>van hier</I> <li>Eng: <I>from here</I> <li>Fin: <I>täältä</I> <li>Fre: <I>d'ici</I> <li>Ger: <I>hieraus</I> <li>Ita: <I>da quà</I> <li>Nep: <I>यहाँ बाट</I> <li>Nor: <I>herfra</I> <li>Pes: <I>اینجا</I> <li>Pnb: <I>ایتھوں</I> <li>Pol: <I>stąd</I> <li>Ron: <I>de aici</I> <li>Rus: <I>отсюда</I> <li>Spa: <I>de acá</I> <li>Swe: <I>härifrån</I> <li>Urd: <I>یہاں سے</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>here7to_Adv</CODE></TD>
+<TD><A HREF="#Adv" TITLE="Adv - verb-phrase-modifying adverb">Adv</A></TD>
+<TD><div class=reveal> <I>to here</I> <div class=popup> <ul> <li>API: <CODE>here7to_Adv</CODE> <li>Afr: <I>hier</I> <li>Bul: <I>до тук</I> <li>Cat: <I>cap aquí</I> <li>Dan: <I>hit</I> <li>Dut: <I>hier</I> <li>Eng: <I>to here</I> <li>Fin: <I>tänne</I> <li>Fre: <I>ici</I> <li>Ger: <I>hierher</I> <li>Ita: <I>quà</I> <li>Nep: <I>यहाँ सम्म</I> <li>Nor: <I>hit</I> <li>Pes: <I>اینجا</I> <li>Pnb: <I>ایتھے</I> <li>Pol: <I>tutaj</I> <li>Ron: <I>până aici</I> <li>Rus: <I>сюда</I> <li>Spa: <I>para acá</I> <li>Swe: <I>hit</I> <li>Urd: <I>یہاں پر</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>here_Adv</CODE></TD>
+<TD><A HREF="#Adv" TITLE="Adv - verb-phrase-modifying adverb">Adv</A></TD>
+<TD><div class=reveal> <I>here</I> <div class=popup> <ul> <li>API: <CODE>here_Adv</CODE> <li>Afr: <I>hier</I> <li>Bul: <I>тук</I> <li>Cat: <I>aquí</I> <li>Dan: <I>her</I> <li>Dut: <I>hier</I> <li>Eng: <I>here</I> <li>Fin: <I>täällä</I> <li>Fre: <I>ici</I> <li>Ger: <I>hier</I> <li>Ita: <I>quà</I> <li>Nep: <I>यहाँ</I> <li>Nor: <I>her</I> <li>Pes: <I>اینجا</I> <li>Pnb: <I>ایتھے</I> <li>Pol: <I>tutaj</I> <li>Ron: <I>aici</I> <li>Rus: <I>здесь</I> <li>Spa: <I>aquí</I> <li>Swe: <I>här</I> <li>Urd: <I>یہاں</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>mkAdv</CODE></TD>
+<TD><A HREF="#A" TITLE="A - one-place adjective">A</A> <CODE>-&gt;</CODE> <A HREF="#Adv" TITLE="Adv - verb-phrase-modifying adverb">Adv</A></TD>
+<TD><div class=reveal> <I>warmly</I> <div class=popup> <ul> <li>API: <CODE>mkAdv warm_A</CODE> <li>Afr: <I>warm</I> <li>Bul: <I>топло</I> <li>Cat: <I>tèbiament</I> <li>Dan: <I>varmt</I> <li>Dut: <I>warm</I> <li>Eng: <I>warmly</I> <li>Fin: <I>lämpimästi</I> <li>Fre: <I>chaudement</I> <li>Ger: <I>warm</I> <li>Ita: <I>caldamente</I> <li>Nep: <I>तातो गरी</I> <li>Nor: <I>varmt</I> <li>Pes: <I>گرم</I> <li>Pnb: <I>تتے</I> <li>Pol: <I>ciepło</I> <li>Ron: <I>călduros</I> <li>Rus: <I>тёпло</I> <li>Spa: <I>tibiamente</I> <li>Swe: <I>varmt</I> <li>Urd: <I>گرم</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>mkAdv</CODE></TD>
+<TD><A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A> <CODE>-&gt;</CODE> <A HREF="#Adv" TITLE="Adv - verb-phrase-modifying adverb">Adv</A></TD>
+<TD><div class=reveal> <I>in the house</I> <div class=popup> <ul> <li>API: <CODE>mkAdv in_Prep (mkNP the_Det house_N)</CODE> <li>Afr: <I>in die huis</I> <li>Bul: <I>в къщата</I> <li>Cat: <I>en la casa</I> <li>Dan: <I>i huset</I> <li>Dut: <I>in het huis</I> <li>Eng: <I>in the house</I> <li>Fin: <I>talossa</I> <li>Fre: <I>dans la maison</I> <li>Ger: <I>im Haus / Hause</I> <li>Ita: <I>nella casa</I> <li>Nep: <I>घर मा</I> <li>Nor: <I>i huset</I> <li>Pes: <I>در خانه</I> <li>Pnb: <I>گھر وچ</I> <li>Pol: <I>w domu</I> <li>Ron: <I>în casă</I> <li>Rus: <I>в доме</I> <li>Spa: <I>en la casa</I> <li>Swe: <I>i huset</I> <li>Urd: <I>گھر میں</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>mkAdv</CODE></TD>
+<TD><A HREF="#Subj" TITLE="Subj - subjunction">Subj</A> <CODE>-&gt;</CODE> <A HREF="#S" TITLE="S - declarative sentence">S</A> <CODE>-&gt;</CODE> <A HREF="#Adv" TITLE="Adv - verb-phrase-modifying adverb">Adv</A></TD>
+<TD><div class=reveal> <I>when she sleeps</I> <div class=popup> <ul> <li>API: <CODE>mkAdv when_Subj (mkS (mkCl she_NP sleep_V))</CODE> <li>Afr: <I>as sy slaap</I> <li>Bul: <I>когато тя спи</I> <li>Cat: <I>quan ella dorm</I> <li>Dan: <I>når hun sover</I> <li>Dut: <I>als ze slaapt</I> <li>Eng: <I>when she sleeps</I> <li>Fin: <I>kun hän nukkuu</I> <li>Fre: <I>quand elle dort</I> <li>Ger: <I>wenn sie schläft</I> <li>Ita: <I>quando lei dorme</I> <li>Nep: <I>कहिले उनी सुत्छिन्</I> <li>Nor: <I>når hun sover</I> <li>Pes: <I>وقتی که او می خوابد</I> <li>Pnb: <I>كدوں او سوندی اے</I> <li>Pol: <I>jeśli ona śpi</I> <li>Ron: <I>când ea doarme</I> <li>Rus: <I>когда она спдит</I> <li>Spa: <I>cuando ella duerme</I> <li>Swe: <I>när hon sover</I> <li>Urd: <I>جب وہ سوتی ہے</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>mkAdv</CODE></TD>
+<TD><A HREF="#CAdv" TITLE="CAdv - comparative adverb">CAdv</A> <CODE>-&gt;</CODE> <A HREF="#A" TITLE="A - one-place adjective">A</A> <CODE>-&gt;</CODE> <A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A> <CODE>-&gt;</CODE> <A HREF="#Adv" TITLE="Adv - verb-phrase-modifying adverb">Adv</A></TD>
+<TD><div class=reveal> <I>more warmly than he</I> <div class=popup> <ul> <li>API: <CODE>mkAdv more_CAdv warm_A he_NP</CODE> <li>Afr: <I>meer warm as hy</I> <li>Bul: <I>по - топло от него</I> <li>Cat: <I>més tèbiament que ell</I> <li>Dan: <I>mer varmt end han</I> <li>Dut: <I>meer warm dan hij</I> <li>Eng: <I>more warmly than he</I> <li>Fin: <I>enemmän lämpimästi kuin hän</I> <li>Fre: <I>plus chaudement que lui</I> <li>Ger: <I>mehr warm als er</I> <li>Ita: <I>più caldamente di lui</I> <li>Nep: <I>उ भन्दा बढी तातो</I> <li>Nor: <I>mer varmt enn han</I> <li>Pes: <I>گرم بیشتر او</I> <li>Pnb: <I>اونوں ہور تتے</I> <li>Pol: <I>bardziej ciepło niż on</I> <li>Ron: <I>mai călduros decât el</I> <li>Rus: <I>более тёпло чем он</I> <li>Spa: <I>más tibiamente que él</I> <li>Swe: <I>mer varmt än han</I> <li>Urd: <I>اس سے زیادہ گرم</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>mkAdv</CODE></TD>
+<TD><A HREF="#CAdv" TITLE="CAdv - comparative adverb">CAdv</A> <CODE>-&gt;</CODE> <A HREF="#A" TITLE="A - one-place adjective">A</A> <CODE>-&gt;</CODE> <A HREF="#S" TITLE="S - declarative sentence">S</A> <CODE>-&gt;</CODE> <A HREF="#Adv" TITLE="Adv - verb-phrase-modifying adverb">Adv</A></TD>
+<TD><div class=reveal> <I>more warmly than he runs</I> <div class=popup> <ul> <li>API: <CODE>mkAdv more_CAdv warm_A (mkS (mkCl he_NP run_V))</CODE> <li>Afr: <I>meer warm as hy hardloop</I> <li>Bul: <I>по - топло от колкото той бяга</I> <li>Cat: <I>més tèbiament que ell corri</I> <li>Dan: <I>mer varmt end han løber</I> <li>Dut: <I>meer warm dan hij rent</I> <li>Eng: <I>more warmly than he runs</I> <li>Fin: <I>enemmän lämpimästi kuin hän juoksee</I> <li>Fre: <I>plus chaudement qu' il coure</I> <li>Ger: <I>mehr warm als er läuft</I> <li>Ita: <I>più caldamente di lui corra</I> <li>Nep: <I>भन्दा बढी तातो उ कुद्छ</I> <li>Nor: <I>mer varmt enn han springer</I> <li>Pes: <I>گرم بیشتر او می دود</I> <li>Pnb: <I>ہور تتے او دوڑدا اے</I> <li>Pol: <I>bardziej ciepło niż on biegnie</I> <li>Ron: <I>mai călduros decât el fuge</I> <li>Rus: <I>более тёпло чем он бегает</I> <li>Spa: <I>más tibiamente que el corra</I> <li>Swe: <I>mer varmt än han springer</I> <li>Urd: <I>سے زیادہ گرم وہ دوڑتا ہے</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>mkAdv</CODE></TD>
+<TD><A HREF="#AdA" TITLE="AdA - adjective-modifying adverb">AdA</A> <CODE>-&gt;</CODE> <A HREF="#Adv" TITLE="Adv - verb-phrase-modifying adverb">Adv</A> <CODE>-&gt;</CODE> <A HREF="#Adv" TITLE="Adv - verb-phrase-modifying adverb">Adv</A></TD>
+<TD><div class=reveal> <I>very warmly</I> <div class=popup> <ul> <li>API: <CODE>mkAdv very_AdA (mkAdv warm_A)</CODE> <li>Afr: <I>baie warm</I> <li>Bul: <I>много топло</I> <li>Cat: <I>molt tèbiament</I> <li>Dan: <I>meget varmt</I> <li>Dut: <I>erg warm</I> <li>Eng: <I>very warmly</I> <li>Fin: <I>erittäin lämpimästi</I> <li>Fre: <I>très chaudement</I> <li>Ger: <I>sehr warm</I> <li>Ita: <I>molto caldamente</I> <li>Nep: <I>धेरै तातो गरी</I> <li>Nor: <I>mye varmt</I> <li>Pes: <I>خیلی گرم</I> <li>Pnb: <I>بہت تتے</I> <li>Pol: <I>bardzo ciepło</I> <li>Ron: <I>foarte călduros</I> <li>Rus: <I>очень тёпло</I> <li>Spa: <I>muy tibiamente</I> <li>Swe: <I>mycket varmt</I> <li>Urd: <I>بہت گرم</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>mkAdv</CODE></TD>
+<TD><A HREF="#Conj" TITLE="Conj - conjunction">Conj</A> <CODE>-&gt;</CODE> <A HREF="#Adv" TITLE="Adv - verb-phrase-modifying adverb">Adv</A> <CODE>-&gt;</CODE> <A HREF="#Adv" TITLE="Adv - verb-phrase-modifying adverb">Adv</A> <CODE>-&gt;</CODE> <A HREF="#Adv" TITLE="Adv - verb-phrase-modifying adverb">Adv</A></TD>
+<TD><div class=reveal> <I>here and now</I> <div class=popup> <ul> <li>API: <CODE>mkAdv and_Conj here_Adv now_Adv</CODE> <li>Afr: <I>hier en nou</I> <li>Bul: <I>тук и сега</I> <li>Cat: <I>aquí i ara</I> <li>Dan: <I>her og nu</I> <li>Dut: <I>hier en nu</I> <li>Eng: <I>here and now</I> <li>Fin: <I>täällä ja nyt</I> <li>Fre: <I>ici et maintenant</I> <li>Ger: <I>hier und jetzt</I> <li>Ita: <I>quà e adesso</I> <li>Nep: <I>यहाँ र अहीले</I> <li>Nor: <I>her og nå</I> <li>Pes: <I>اینجا و حالا</I> <li>Pnb: <I>ایتھے تے ہون</I> <li>Pol: <I>tutaj i teraz</I> <li>Ron: <I>aici şi acum</I> <li>Rus: <I>здесь и сейчас</I> <li>Spa: <I>aquí y ahora</I> <li>Swe: <I>här och nu</I> <li>Urd: <I>یہاں اور اب</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>mkAdv</CODE></TD>
+<TD><A HREF="#Conj" TITLE="Conj - conjunction">Conj</A> <CODE>-&gt;</CODE> <A HREF="#ListAdv">ListAdv</A> <CODE>-&gt;</CODE> <A HREF="#Adv" TITLE="Adv - verb-phrase-modifying adverb">Adv</A></TD>
+<TD><div class=reveal> <I>with her , here and now</I> <div class=popup> <ul> <li>API: <CODE>mkAdv and_Conj (mkListAdv (mkAdv with_Prep she_NP) (mkListAdv here_Adv now_Adv))</CODE> <li>Afr: <I>met haar , hier en nou</I> <li>Bul: <I>с нея , тук и сега</I> <li>Cat: <I>amb ella , aquí i ara</I> <li>Dan: <I>med hende , her og nu</I> <li>Dut: <I>met haar , hier en nu</I> <li>Eng: <I>with her , here and now</I> <li>Fin: <I>hänen kanssa , täällä ja nyt</I> <li>Fre: <I>avec elle , ici et maintenant</I> <li>Ger: <I>mit ihr , hier und jetzt</I> <li>Ita: <I>con lei , quà e adesso</I> <li>Nep: <I>उनी सँग , यहाँ र अहीले</I> <li>Nor: <I>med henne , her og nå</I> <li>Pes: <I>با او , اینجا و حالا</I> <li>Pnb: <I>اونوں دے نال , ایتھے تے ہون</I> <li>Pol: <I>z nią , tutaj i teraz</I> <li>Ron: <I>cu ea , aici şi acum</I> <li>Rus: <I>с ней , здесь и сейчас</I> <li>Spa: <I>con ella , aquí y ahora</I> <li>Swe: <I>med henne , här och nu</I> <li>Urd: <I>اس كے ساتھ , یہاں اور اب</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>somewhere_Adv</CODE></TD>
+<TD><A HREF="#Adv" TITLE="Adv - verb-phrase-modifying adverb">Adv</A></TD>
+<TD><div class=reveal> <I>somewhere</I> <div class=popup> <ul> <li>API: <CODE>somewhere_Adv</CODE> <li>Afr: <I>Ãªrens</I> <li>Bul: <I>някъде</I> <li>Cat: <I>a algun lloc</I> <li>Dan: <I>et eller annet sted</I> <li>Dut: <I>ergens</I> <li>Eng: <I>somewhere</I> <li>Fin: <I>jossain</I> <li>Fre: <I>quelque part</I> <li>Ger: <I>irgendwo</I> <li>Ita: <I>qualche parte</I> <li>Nep: <I>कहीं</I> <li>Nor: <I>et eller annet sted</I> <li>Pes: <I>جایی</I> <li>Pnb: <I>كتلے</I> <li>Pol: <I>gdzieś</I> <li>Ron: <I>undeva</I> <li>Rus: <I>где-нибудь</I> <li>Spa: <I>en ninguna parte</I> <li>Swe: <I>någonstans</I> <li>Urd: <I>كہیں پر</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>there7from_Adv</CODE></TD>
+<TD><A HREF="#Adv" TITLE="Adv - verb-phrase-modifying adverb">Adv</A></TD>
+<TD><div class=reveal> <I>from there</I> <div class=popup> <ul> <li>API: <CODE>there7from_Adv</CODE> <li>Afr: <I>van daar</I> <li>Bul: <I>от там</I> <li>Cat: <I>d'allà</I> <li>Dan: <I>derfra</I> <li>Dut: <I>van daar</I> <li>Eng: <I>from there</I> <li>Fin: <I>sieltä</I> <li>Fre: <I>de là</I> <li>Ger: <I>daher</I> <li>Ita: <I>di là</I> <li>Nep: <I>त्यहाँ बाट</I> <li>Nor: <I>derfra</I> <li>Pes: <I>آنجا</I> <li>Pnb: <I>اوتھوں</I> <li>Pol: <I>stamtąd</I> <li>Ron: <I>de acolo</I> <li>Rus: <I>оттуда</I> <li>Spa: <I>de allá</I> <li>Swe: <I>därifrån</I> <li>Urd: <I>وہاں سے</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>there7to_Adv</CODE></TD>
+<TD><A HREF="#Adv" TITLE="Adv - verb-phrase-modifying adverb">Adv</A></TD>
+<TD><div class=reveal> <I>there</I> <div class=popup> <ul> <li>API: <CODE>there7to_Adv</CODE> <li>Afr: <I>daar</I> <li>Bul: <I>до там</I> <li>Cat: <I>cap a allà</I> <li>Dan: <I>dit</I> <li>Dut: <I>daar</I> <li>Eng: <I>there</I> <li>Fin: <I>sinne</I> <li>Fre: <I>là</I> <li>Ger: <I>dahin</I> <li>Ita: <I>là</I> <li>Nep: <I>त्यहाँ सम्म</I> <li>Nor: <I>dit</I> <li>Pes: <I>آنجا</I> <li>Pnb: <I>اوتھے</I> <li>Pol: <I>tam</I> <li>Ron: <I>până acolo</I> <li>Rus: <I>туда</I> <li>Spa: <I>para allá</I> <li>Swe: <I>dit</I> <li>Urd: <I>وہاں پر</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>there_Adv</CODE></TD>
+<TD><A HREF="#Adv" TITLE="Adv - verb-phrase-modifying adverb">Adv</A></TD>
+<TD><div class=reveal> <I>there</I> <div class=popup> <ul> <li>API: <CODE>there_Adv</CODE> <li>Afr: <I>daar</I> <li>Bul: <I>там</I> <li>Cat: <I>allà</I> <li>Dan: <I>der</I> <li>Dut: <I>daar</I> <li>Eng: <I>there</I> <li>Fin: <I>siellä</I> <li>Fre: <I>là</I> <li>Ger: <I>da</I> <li>Ita: <I>là</I> <li>Nep: <I>त्यहाँ</I> <li>Nor: <I>der</I> <li>Pes: <I>آنجا</I> <li>Pnb: <I>اوتھے</I> <li>Pol: <I>tam</I> <li>Ron: <I>acolo</I> <li>Rus: <I>там</I> <li>Spa: <I>allí</I> <li>Swe: <I>där</I> <li>Urd: <I>وہاں</I> </ul> </div> </div></TD>
+</TR>
+</TABLE>
+
+<A NAME="Ant"></A>
+<H2>Ant - anteriority</H2>
+
+<TABLE BORDER="1" CELLPADDING="4">
+<TR>
+<TH>Function</TH>
+<TH>Type</TH>
+<TH COLSPAN="2">Example</TH>
+</TR>
+<TR>
+<TD><CODE>anteriorAnt</CODE></TD>
+<TD><A HREF="#Ant" TITLE="Ant - anteriority">Ant</A></TD>
+<TD><div class=reveal> <I>she has slept</I> <div class=popup> <ul> <li>API: <CODE>mkS anteriorAnt (mkCl she_NP sleep_V)</CODE> <li>Afr: <I>sy het geslaap</I> <li>Bul: <I>тя е спалa</I> <li>Cat: <I>ella ha dormit</I> <li>Dan: <I>hun har sovet</I> <li>Dut: <I>ze heeft geslapen</I> <li>Eng: <I>she has slept</I> <li>Fin: <I>Prelude.(!!): index too large</I> <li>Fre: <I>elle a dormi</I> <li>Ger: <I>sie hat geschlafen</I> <li>Ita: <I>lei ha dormito</I> <li>Nep: <I>उनी सुतेकिछिन्</I> <li>Nor: <I>hun har sovet</I> <li>Pes: <I>او خوابیده است</I> <li>Pnb: <I>او سو گیی اے</I> <li>Pol: <I>ona spała</I> <li>Ron: <I>ea a dormit</I> <li>Rus: <I>она спдит</I> <li>Spa: <I>ella ha dormido</I> <li>Swe: <I>hon har sovit</I> <li>Urd: <I>وہ سو چكی ہے</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>simultaneousAnt</CODE></TD>
+<TD><A HREF="#Ant" TITLE="Ant - anteriority">Ant</A></TD>
+<TD><div class=reveal> <I>she sleeps</I> <div class=popup> <ul> <li>API: <CODE>mkS simultaneousAnt (mkCl she_NP sleep_V)</CODE> <li>Afr: <I>sy slaap</I> <li>Bul: <I>тя спи</I> <li>Cat: <I>ella dorm</I> <li>Dan: <I>hun sover</I> <li>Dut: <I>ze slaapt</I> <li>Eng: <I>she sleeps</I> <li>Fin: <I>hän nukkuu</I> <li>Fre: <I>elle dort</I> <li>Ger: <I>sie schläft</I> <li>Ita: <I>lei dorme</I> <li>Nep: <I>उनी सुत्छिन्</I> <li>Nor: <I>hun sover</I> <li>Pes: <I>او می خوابد</I> <li>Pnb: <I>او سوندی اے</I> <li>Pol: <I>ona śpi</I> <li>Ron: <I>ea doarme</I> <li>Rus: <I>она спдит</I> <li>Spa: <I>ella duerme</I> <li>Swe: <I>hon sover</I> <li>Urd: <I>وہ سوتی ہے</I> </ul> </div> </div></TD>
+</TR>
+</TABLE>
+
+<A NAME="CAdv"></A>
+<H2>CAdv - comparative adverb</H2>
+
+<TABLE BORDER="1" CELLPADDING="4">
+<TR>
+<TH>Function</TH>
+<TH>Type</TH>
+<TH COLSPAN="2">Example</TH>
+</TR>
+<TR>
+<TD><CODE>as_CAdv</CODE></TD>
+<TD><A HREF="#CAdv" TITLE="CAdv - comparative adverb">CAdv</A></TD>
+<TD><div class=reveal> <I>as</I> <div class=popup> <ul> <li>API: <CODE>as_CAdv</CODE> <li>Afr: <I>so</I> <li>Bul: <I>*</I> <li>Cat: <I>tan</I> <li>Dan: <I>*</I> <li>Dut: <I>zo</I> <li>Eng: <I>as</I> <li>Fin: <I>yhtä</I> <li>Fre: <I>aussi</I> <li>Ger: <I>ebenso</I> <li>Ita: <I>così</I> <li>Nep: <I>जत्तीकै</I> <li>Nor: <I>*</I> <li>Pes: <I>به اندازه ی</I> <li>Pnb: <I>ایناں</I> <li>Pol: <I>tak</I> <li>Ron: <I>la fel de</I> <li>Rus: <I>*</I> <li>Spa: <I>si</I> <li>Swe: <I>lika</I> <li>Urd: <I>اتنا</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>less_CAdv</CODE></TD>
+<TD><A HREF="#CAdv" TITLE="CAdv - comparative adverb">CAdv</A></TD>
+<TD><div class=reveal> <I>less</I> <div class=popup> <ul> <li>API: <CODE>less_CAdv</CODE> <li>Afr: <I>minder</I> <li>Bul: <I>не</I> <li>Cat: <I>menys</I> <li>Dan: <I>mindre</I> <li>Dut: <I>minder</I> <li>Eng: <I>less</I> <li>Fin: <I>vähemmän</I> <li>Fre: <I>moins</I> <li>Ger: <I>weniger</I> <li>Ita: <I>meno</I> <li>Nep: <I>कम</I> <li>Nor: <I>mindre</I> <li>Pes: <I>کمتر</I> <li>Pnb: <I>كٹ</I> <li>Pol: <I>mniej</I> <li>Ron: <I>mai puţin</I> <li>Rus: <I>менее</I> <li>Spa: <I>menos</I> <li>Swe: <I>mindre</I> <li>Urd: <I>كم</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>more_CAdv</CODE></TD>
+<TD><A HREF="#CAdv" TITLE="CAdv - comparative adverb">CAdv</A></TD>
+<TD><div class=reveal> <I>more</I> <div class=popup> <ul> <li>API: <CODE>more_CAdv</CODE> <li>Afr: <I>meer</I> <li>Bul: <I>''</I> <li>Cat: <I>més</I> <li>Dan: <I>mer</I> <li>Dut: <I>meer</I> <li>Eng: <I>more</I> <li>Fin: <I>enemmän</I> <li>Fre: <I>plus</I> <li>Ger: <I>mehr</I> <li>Ita: <I>più</I> <li>Nep: <I>बढी</I> <li>Nor: <I>mer</I> <li>Pes: <I>بیشتر</I> <li>Pnb: <I>ہور</I> <li>Pol: <I>bardziej</I> <li>Ron: <I>mai</I> <li>Rus: <I>более</I> <li>Spa: <I>más</I> <li>Swe: <I>mer</I> <li>Urd: <I>زیادہ</I> </ul> </div> </div></TD>
+</TR>
+</TABLE>
+
+<A NAME="CN"></A>
+<H2>CN - common noun (without determiner)</H2>
+
+<TABLE BORDER="1" CELLPADDING="4">
+<TR>
+<TH>Function</TH>
+<TH>Type</TH>
+<TH COLSPAN="2">Example</TH>
+</TR>
+<TR>
+<TD><CODE>mkCN</CODE></TD>
+<TD><A HREF="#N" TITLE="N - common noun">N</A> <CODE>-&gt;</CODE> <A HREF="#CN" TITLE="CN - common noun (without determiner)">CN</A></TD>
+<TD><div class=reveal> <I>house</I> <div class=popup> <ul> <li>API: <CODE>mkCN house_N</CODE> <li>Afr: <I>huis</I> <li>Bul: <I>къща</I> <li>Cat: <I>casa</I> <li>Dan: <I>hus</I> <li>Dut: <I>huis</I> <li>Eng: <I>house</I> <li>Fin: <I>talo</I> <li>Fre: <I>maison</I> <li>Ger: <I>Haus</I> <li>Ita: <I>casa</I> <li>Nep: <I>घर</I> <li>Nor: <I>hus</I> <li>Pes: <I>خانه</I> <li>Pnb: <I>{s = table ParamX.Number [table ResPnb.Case ["گھر"; "گھر"; "گھر";</I> <li>Pol: <I>dom</I> <li>Ron: <I>casă</I> <li>Rus: <I>дом</I> <li>Spa: <I>casa</I> <li>Swe: <I>hus</I> <li>Urd: <I>گھر</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>mkCN</CODE></TD>
+<TD><A HREF="#N2" TITLE="N2 - relational noun">N2</A> <CODE>-&gt;</CODE> <A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A> <CODE>-&gt;</CODE> <A HREF="#CN" TITLE="CN - common noun (without determiner)">CN</A></TD>
+<TD><div class=reveal> <I>mother of the king</I> <div class=popup> <ul> <li>API: <CODE>mkCN mother_N2 (mkNP the_Det king_N)</CODE> <li>Afr: <I>ma van die koning</I> <li>Bul: <I>майка на царя</I> <li>Cat: <I>mare del rei</I> <li>Dan: <I>moder til kongen</I> <li>Dut: <I>moeder van de koning</I> <li>Eng: <I>mother of the king</I> <li>Fin: <I>kuninkaan äiti</I> <li>Fre: <I>mère du roi</I> <li>Ger: <I>Mutter von dem König</I> <li>Ita: <I>madre del ré</I> <li>Nep: <I>राजा को आमा</I> <li>Nor: <I>mor til kongen</I> <li>Pes: <I>مادر پادشاه</I> <li>Pnb: <I>{s : ParamX.Number =&gt; ResPnb.Case =&gt; Str</I> <li>Pol: <I>matka króla</I> <li>Ron: <I>mamă regelui</I> <li>Rus: <I>мать короля</I> <li>Spa: <I>madre del rey</I> <li>Swe: <I>mor till kungen</I> <li>Urd: <I>بادشاہ كی ماں</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>mkCN</CODE></TD>
+<TD><A HREF="#N3" TITLE="N3 - three-place relational noun">N3</A> <CODE>-&gt;</CODE> <A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A> <CODE>-&gt;</CODE> <A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A> <CODE>-&gt;</CODE> <A HREF="#CN" TITLE="CN - common noun (without determiner)">CN</A></TD>
+<TD><div class=reveal> <I>distance from this city to Paris</I> <div class=popup> <ul> <li>API: <CODE>mkCN distance_N3 (mkNP this_Det city_N) (mkNP paris_PN)</CODE> <li>Afr: <I>afstand van hierdie stad na Parys</I> <li>Bul: <I>разстояние от този град до Париж</I> <li>Cat: <I>distància de aquesta ciutat a Paris</I> <li>Dan: <I>afstand fra denne by til Paris</I> <li>Dut: <I>afstand van deze stad naar Parijs</I> <li>Eng: <I>distance from this city to Paris</I> <li>Fin: <I>etäisyys tästä kaupungista Pariisiin</I> <li>Fre: <I>distance de cette ville à Paris</I> <li>Ger: <I>Entfernung von dieser Stadt zu Paris</I> <li>Ita: <I>distanza di questa città a Parigi</I> <li>Nep: <I>पेरिस देखि यो शहर सम्म को दुरी</I> <li>Nor: <I>avstand fra denne byen til Paris</I> <li>Pes: <I>فاصله از این شهر تا پاریس</I> <li>Pnb: <I>*</I> <li>Pol: <I>odległość z tego miasta do Paryża</I> <li>Ron: <I>distanţă de la acest oraş la Paris</I> <li>Rus: <I>расстояние от этого города к Парижу</I> <li>Spa: <I>distancia de esta ciudad a Paris</I> <li>Swe: <I>avstånd från den här staden till Paris</I> <li>Urd: <I>پیرس كا اس شہر سے فاصلہ</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>mkCN</CODE></TD>
+<TD><A HREF="#N2" TITLE="N2 - relational noun">N2</A> <CODE>-&gt;</CODE> <A HREF="#CN" TITLE="CN - common noun (without determiner)">CN</A></TD>
+<TD><div class=reveal> <I>mother</I> <div class=popup> <ul> <li>API: <CODE>mkCN mother_N2</CODE> <li>Afr: <I>ma</I> <li>Bul: <I>майка</I> <li>Cat: <I>mare</I> <li>Dan: <I>moder</I> <li>Dut: <I>moeder</I> <li>Eng: <I>mother</I> <li>Fin: <I>äiti</I> <li>Fre: <I>mère</I> <li>Ger: <I>Mutter</I> <li>Ita: <I>madre</I> <li>Nep: <I>आमा</I> <li>Nor: <I>mor</I> <li>Pes: <I>مادر</I> <li>Pnb: <I>{s : ParamX.Number =&gt; ResPnb.Case =&gt; Str</I> <li>Pol: <I>matka</I> <li>Ron: <I>mamă</I> <li>Rus: <I>мать</I> <li>Spa: <I>madre</I> <li>Swe: <I>mor</I> <li>Urd: <I>ماں</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>mkCN</CODE></TD>
+<TD><A HREF="#N3" TITLE="N3 - three-place relational noun">N3</A> <CODE>-&gt;</CODE> <A HREF="#CN" TITLE="CN - common noun (without determiner)">CN</A></TD>
+<TD><div class=reveal> <I>distance</I> <div class=popup> <ul> <li>API: <CODE>mkCN distance_N3</CODE> <li>Afr: <I>afstand</I> <li>Bul: <I>разстояние</I> <li>Cat: <I>distància</I> <li>Dan: <I>afstand</I> <li>Dut: <I>afstand</I> <li>Eng: <I>distance</I> <li>Fin: <I>etäisyys</I> <li>Fre: <I>distance</I> <li>Ger: <I>Entfernung</I> <li>Ita: <I>distanza</I> <li>Nep: <I>दुरी</I> <li>Nor: <I>avstand</I> <li>Pes: <I>فاصله</I> <li>Pnb: <I>*</I> <li>Pol: <I>odległość</I> <li>Ron: <I>distanţă</I> <li>Rus: <I>расстояние</I> <li>Spa: <I>distancia</I> <li>Swe: <I>avstånd</I> <li>Urd: <I>فاصلہ</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>mkCN</CODE></TD>
+<TD><A HREF="#A" TITLE="A - one-place adjective">A</A> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A> <CODE>-&gt;</CODE> <A HREF="#CN" TITLE="CN - common noun (without determiner)">CN</A></TD>
+<TD><div class=reveal> <I>big house</I> <div class=popup> <ul> <li>API: <CODE>mkCN big_A house_N</CODE> <li>Afr: <I>groot huis</I> <li>Bul: <I>голяма къща</I> <li>Cat: <I>casa grosa</I> <li>Dan: <I>stort hus</I> <li>Dut: <I>groot huis</I> <li>Eng: <I>big house</I> <li>Fin: <I>suuri talo</I> <li>Fre: <I>grande maison</I> <li>Ger: <I>großes Haus</I> <li>Ita: <I>grande casa</I> <li>Nep: <I>ठुलो घर</I> <li>Nor: <I>stort hus</I> <li>Pes: <I>خانه ی بزرگ</I> <li>Pnb: <I>{s : ParamX.Number =&gt; ResPnb.Case =&gt; Str</I> <li>Pol: <I>duży dom</I> <li>Ron: <I>casă mare</I> <li>Rus: <I>большой дом</I> <li>Spa: <I>grande casa</I> <li>Swe: <I>stort hus</I> <li>Urd: <I>بڑا گھر</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>mkCN</CODE></TD>
+<TD><A HREF="#A" TITLE="A - one-place adjective">A</A> <CODE>-&gt;</CODE> <A HREF="#CN" TITLE="CN - common noun (without determiner)">CN</A> <CODE>-&gt;</CODE> <A HREF="#CN" TITLE="CN - common noun (without determiner)">CN</A></TD>
+<TD><div class=reveal> <I>big blue house</I> <div class=popup> <ul> <li>API: <CODE>mkCN big_A (mkCN blue_A house_N)</CODE> <li>Afr: <I>groot blou huis</I> <li>Bul: <I>голяма синя къща</I> <li>Cat: <I>casa blava grosa</I> <li>Dan: <I>stort blått hus</I> <li>Dut: <I>groot blauw huis</I> <li>Eng: <I>big blue house</I> <li>Fin: <I>suuri sininen talo</I> <li>Fre: <I>grande maison bleue</I> <li>Ger: <I>großes blaues Haus</I> <li>Ita: <I>grande casa blù</I> <li>Nep: <I>ठुलो निलो घर</I> <li>Nor: <I>stort blått hus</I> <li>Pes: <I>خانه ی آبی بزرگ</I> <li>Pnb: <I>{s : ParamX.Number =&gt; ResPnb.Case =&gt; Str</I> <li>Pol: <I>duży niebieski dom</I> <li>Ron: <I>casă albastră mare</I> <li>Rus: <I>большой голубой дом</I> <li>Spa: <I>grande casa azul</I> <li>Swe: <I>stort blått hus</I> <li>Urd: <I>بڑا نیلا گھر</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>mkCN</CODE></TD>
+<TD><A HREF="#AP" TITLE="AP - adjectival phrase">AP</A> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A> <CODE>-&gt;</CODE> <A HREF="#CN" TITLE="CN - common noun (without determiner)">CN</A></TD>
+<TD><div class=reveal> <I>very big house</I> <div class=popup> <ul> <li>API: <CODE>mkCN (mkAP very_AdA big_A) house_N</CODE> <li>Afr: <I>baie groot huis</I> <li>Bul: <I>много голяма къща</I> <li>Cat: <I>casa molt grosa</I> <li>Dan: <I>meget stort hus</I> <li>Dut: <I>erg groot huis</I> <li>Eng: <I>very big house</I> <li>Fin: <I>erittäin suuri talo</I> <li>Fre: <I>très grande maison</I> <li>Ger: <I>sehr großes Haus</I> <li>Ita: <I>molto grande casa</I> <li>Nep: <I>धेरै ठुलो घर</I> <li>Nor: <I>mye stort hus</I> <li>Pes: <I>خانه ی خیلی بزرگ</I> <li>Pnb: <I>{s : ParamX.Number =&gt; ResPnb.Case =&gt; Str</I> <li>Pol: <I>bardzo duży dom</I> <li>Ron: <I>casă foarte mare</I> <li>Rus: <I>очень большой дом</I> <li>Spa: <I>muy grande casa</I> <li>Swe: <I>mycket stort hus</I> <li>Urd: <I>بہت بڑا گھر</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>mkCN</CODE></TD>
+<TD><A HREF="#AP" TITLE="AP - adjectival phrase">AP</A> <CODE>-&gt;</CODE> <A HREF="#CN" TITLE="CN - common noun (without determiner)">CN</A> <CODE>-&gt;</CODE> <A HREF="#CN" TITLE="CN - common noun (without determiner)">CN</A></TD>
+<TD><div class=reveal> <I>very big blue house</I> <div class=popup> <ul> <li>API: <CODE>mkCN (mkAP very_AdA big_A) (mkCN blue_A house_N)</CODE> <li>Afr: <I>baie groot blou huis</I> <li>Bul: <I>много голяма синя къща</I> <li>Cat: <I>casa blava molt grosa</I> <li>Dan: <I>meget stort blått hus</I> <li>Dut: <I>erg groot blauw huis</I> <li>Eng: <I>very big blue house</I> <li>Fin: <I>erittäin suuri sininen talo</I> <li>Fre: <I>très grande maison bleue</I> <li>Ger: <I>sehr großes blaues Haus</I> <li>Ita: <I>molto grande casa blù</I> <li>Nep: <I>धेरै ठुलो निलो घर</I> <li>Nor: <I>mye stort blått hus</I> <li>Pes: <I>خانه ی آبی خیلی بزرگ</I> <li>Pnb: <I>{s : ParamX.Number =&gt; ResPnb.Case =&gt; Str</I> <li>Pol: <I>bardzo duży niebieski dom</I> <li>Ron: <I>casă albastră foarte mare</I> <li>Rus: <I>очень большой голубой дом</I> <li>Spa: <I>muy grande casa azul</I> <li>Swe: <I>mycket stort blått hus</I> <li>Urd: <I>بہت بڑا نیلا گھر</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>mkCN</CODE></TD>
+<TD><A HREF="#N" TITLE="N - common noun">N</A> <CODE>-&gt;</CODE> <A HREF="#RS" TITLE="RS - relative">RS</A> <CODE>-&gt;</CODE> <A HREF="#CN" TITLE="CN - common noun (without determiner)">CN</A></TD>
+<TD><div class=reveal> <I>man whom she loves</I> <div class=popup> <ul> <li>API: <CODE>mkCN man_N (mkRS (mkRCl which_RP she_NP love_V2))</CODE> <li>Afr: <I>man wat sy lief het</I> <li>Bul: <I>мъж който тя обича</I> <li>Cat: <I>home que ella estima</I> <li>Dan: <I>mand som hun elsker</I> <li>Dut: <I>man die ze lief heeft</I> <li>Eng: <I>man whom she loves</I> <li>Fin: <I>mies jota hän rakastaa</I> <li>Fre: <I>homme qu' elle aime</I> <li>Ger: <I>Mann den sie liebt</I> <li>Ita: <I>uomo che lei ama</I> <li>Nep: <I>मान्छे जो लाई उनी माया गर्छिन्</I> <li>Nor: <I>mann som hun elsker</I> <li>Pes: <I>مردی که او دوست دارد</I> <li>Pnb: <I>بندہ جن نوں او پیار كردی اے</I> <li>Pol: <I>mężczyzna , którego kocha ona</I> <li>Ron: <I>om pe care îl iubeşte ea</I> <li>Rus: <I>человек , который она любдит</I> <li>Spa: <I>hombre que ella ama</I> <li>Swe: <I>man som hon älskar</I> <li>Urd: <I>آدمی جس كو وہ پیار كرتی ہے</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>mkCN</CODE></TD>
+<TD><A HREF="#CN" TITLE="CN - common noun (without determiner)">CN</A> <CODE>-&gt;</CODE> <A HREF="#RS" TITLE="RS - relative">RS</A> <CODE>-&gt;</CODE> <A HREF="#CN" TITLE="CN - common noun (without determiner)">CN</A></TD>
+<TD><div class=reveal> <I>old man whom she loves</I> <div class=popup> <ul> <li>API: <CODE>mkCN (mkCN old_A man_N) (mkRS (mkRCl which_RP she_NP love_V2))</CODE> <li>Afr: <I>oud man wat sy lief het</I> <li>Bul: <I>стар мъж който тя обича</I> <li>Cat: <I>home vell que ella estima</I> <li>Dan: <I>gammel mand som hun elsker</I> <li>Dut: <I>oude man die ze lief heeft</I> <li>Eng: <I>old man whom she loves</I> <li>Fin: <I>vanha mies jota hän rakastaa</I> <li>Fre: <I>vieux homme qu' elle aime</I> <li>Ger: <I>alter Mann den sie liebt</I> <li>Ita: <I>vecchio uomo che lei ama</I> <li>Nep: <I>बुढो मान्छे जो लाई उनी माया गर्छिन्</I> <li>Nor: <I>gammel mann som hun elsker</I> <li>Pes: <I>مرد پیری که او دوست دارد</I> <li>Pnb: <I>بوڈا بندہ جن نوں او پیار كردی اے</I> <li>Pol: <I>stary mężczyzna , którego kocha ona</I> <li>Ron: <I>om vechi pe care îl iubeşte ea</I> <li>Rus: <I>старый человек , который она любдит</I> <li>Spa: <I>viejo hombre que ella ama</I> <li>Swe: <I>gammal man som hon älskar</I> <li>Urd: <I>بوڑھا آدمی جس كو وہ پیار كرتی ہے</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>mkCN</CODE></TD>
+<TD><A HREF="#N" TITLE="N - common noun">N</A> <CODE>-&gt;</CODE> <A HREF="#Adv" TITLE="Adv - verb-phrase-modifying adverb">Adv</A> <CODE>-&gt;</CODE> <A HREF="#CN" TITLE="CN - common noun (without determiner)">CN</A></TD>
+<TD><div class=reveal> <I>house on the hill</I> <div class=popup> <ul> <li>API: <CODE>mkCN house_N (mkAdv on_Prep (mkNP the_Det hill_N))</CODE> <li>Afr: <I>huis op die heuwel</I> <li>Bul: <I>къща на хълма</I> <li>Cat: <I>casa sobre el turó</I> <li>Dan: <I>hus på højen</I> <li>Dut: <I>huis op de heuvel</I> <li>Eng: <I>house on the hill</I> <li>Fin: <I>talo kukkulalla</I> <li>Fre: <I>maison sur la colline</I> <li>Ger: <I>Haus auf dem Hügel</I> <li>Ita: <I>casa sulla collina</I> <li>Nep: <I>घर पहाड मा</I> <li>Nor: <I>hus på haugen</I> <li>Pes: <I>خانه ی روی تپه</I> <li>Pnb: <I>{s : ParamX.Number =&gt; ResPnb.Case =&gt; Str</I> <li>Pol: <I>dom nа wzgórzu</I> <li>Ron: <I>casă pe deal</I> <li>Rus: <I>дом на холме</I> <li>Spa: <I>casa sobre la colina</I> <li>Swe: <I>hus på kullen</I> <li>Urd: <I>پہاڑی پر گھر</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>mkCN</CODE></TD>
+<TD><A HREF="#CN" TITLE="CN - common noun (without determiner)">CN</A> <CODE>-&gt;</CODE> <A HREF="#Adv" TITLE="Adv - verb-phrase-modifying adverb">Adv</A> <CODE>-&gt;</CODE> <A HREF="#CN" TITLE="CN - common noun (without determiner)">CN</A></TD>
+<TD><div class=reveal> <I>big house on the hill</I> <div class=popup> <ul> <li>API: <CODE>mkCN (mkCN big_A house_N) (mkAdv on_Prep (mkNP the_Det hill_N))</CODE> <li>Afr: <I>groot huis op die heuwel</I> <li>Bul: <I>голяма къща на хълма</I> <li>Cat: <I>casa grosa sobre el turó</I> <li>Dan: <I>stort hus på højen</I> <li>Dut: <I>groot huis op de heuvel</I> <li>Eng: <I>big house on the hill</I> <li>Fin: <I>suuri talo kukkulalla</I> <li>Fre: <I>grande maison sur la colline</I> <li>Ger: <I>großes Haus auf dem Hügel</I> <li>Ita: <I>grande casa sulla collina</I> <li>Nep: <I>ठुलो घर पहाड मा</I> <li>Nor: <I>stort hus på haugen</I> <li>Pes: <I>خانه ی بزرگ روی تپه</I> <li>Pnb: <I>{s : ParamX.Number =&gt; ResPnb.Case =&gt; Str</I> <li>Pol: <I>duży dom nа wzgórzu</I> <li>Ron: <I>casă mare pe deal</I> <li>Rus: <I>большой дом на холме</I> <li>Spa: <I>grande casa sobre la colina</I> <li>Swe: <I>stort hus på kullen</I> <li>Urd: <I>پہاڑی پر بڑا گھر</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>mkCN</CODE></TD>
+<TD><A HREF="#CN" TITLE="CN - common noun (without determiner)">CN</A> <CODE>-&gt;</CODE> <A HREF="#S" TITLE="S - declarative sentence">S</A> <CODE>-&gt;</CODE> <A HREF="#CN" TITLE="CN - common noun (without determiner)">CN</A></TD>
+<TD><div class=reveal> <I>almost five</I> <div class=popup> <ul> <li>API: <CODE>mkNum (mkCard almost_AdN (mkCard (mkNumeral n5_Unit)))</CODE> <li>Afr: <I>byna vyf</I> <li>Bul: <I>почти петима</I> <li>Cat: <I>{s = table CommonRomance.Gender {</I> <li>Dan: <I>næsten fem</I> <li>Dut: <I>bijna vijf</I> <li>Eng: <I>almost five</I> <li>Fin: <I>melkein viisi</I> <li>Fre: <I>presque cinq</I> <li>Ger: <I>fast fünf</I> <li>Ita: <I>quasi cinque</I> <li>Nep: <I>झण्डै पाँच</I> <li>Nor: <I>nesten fem</I> <li>Pes: <I>تقریباً پنج</I> <li>Pnb: <I>تقریبا پنج</I> <li>Pol: <I>prawie pięć</I> <li>Ron: <I>aproape cinci</I> <li>Rus: <I>почти пять</I> <li>Spa: <I>casi cinco</I> <li>Swe: <I>nästan fem</I> <li>Urd: <I>تقریبا پانچ</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>mkCN</CODE></TD>
+<TD><A HREF="#CN" TITLE="CN - common noun (without determiner)">CN</A> <CODE>-&gt;</CODE> <A HREF="#QS" TITLE="QS - question">QS</A> <CODE>-&gt;</CODE> <A HREF="#CN" TITLE="CN - common noun (without determiner)">CN</A></TD>
+<TD><div class=reveal> <I>almost five</I> <div class=popup> <ul> <li>API: <CODE>mkNum (mkCard almost_AdN (mkCard (mkNumeral n5_Unit)))</CODE> <li>Afr: <I>byna vyf</I> <li>Bul: <I>почти петима</I> <li>Cat: <I>{s = table CommonRomance.Gender {</I> <li>Dan: <I>næsten fem</I> <li>Dut: <I>bijna vijf</I> <li>Eng: <I>almost five</I> <li>Fin: <I>melkein viisi</I> <li>Fre: <I>presque cinq</I> <li>Ger: <I>fast fünf</I> <li>Ita: <I>quasi cinque</I> <li>Nep: <I>झण्डै पाँच</I> <li>Nor: <I>nesten fem</I> <li>Pes: <I>تقریباً پنج</I> <li>Pnb: <I>تقریبا پنج</I> <li>Pol: <I>prawie pięć</I> <li>Ron: <I>aproape cinci</I> <li>Rus: <I>почти пять</I> <li>Spa: <I>casi cinco</I> <li>Swe: <I>nästan fem</I> <li>Urd: <I>تقریبا پانچ</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>mkCN</CODE></TD>
+<TD><A HREF="#CN" TITLE="CN - common noun (without determiner)">CN</A> <CODE>-&gt;</CODE> <A HREF="#VP" TITLE="VP - verb phrase">VP</A> <CODE>-&gt;</CODE> <A HREF="#CN" TITLE="CN - common noun (without determiner)">CN</A></TD>
+<TD><div class=reveal> <I>reason to sleep</I> <div class=popup> <ul> <li>API: <CODE>mkCN (mkCN reason_N) (mkVP sleep_V)</CODE> <li>Afr: <I>rede te slaap</I> <li>Bul: <I>причина да спя</I> <li>Cat: <I>raó dormir</I> <li>Dan: <I>*</I> <li>Dut: <I>reden te slapen</I> <li>Eng: <I>reason to sleep</I> <li>Fin: <I>syy nukkumaan</I> <li>Fre: <I>raison dormir</I> <li>Ger: <I>Grund zu schlafen</I> <li>Ita: <I>ragione dormire</I> <li>Nep: <I>सुत्न लाइ कारण</I> <li>Nor: <I>*</I> <li>Pes: <I>دلیل خوابیدن</I> <li>Pnb: <I>*</I> <li>Pol: <I>powód spać</I> <li>Ron: <I>motiv sã doarmă</I> <li>Rus: <I>причина спать</I> <li>Spa: <I>*</I> <li>Swe: <I>anledning att sova</I> <li>Urd: <I>وجہ سونا</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>mkCN</CODE></TD>
+<TD><A HREF="#CN" TITLE="CN - common noun (without determiner)">CN</A> <CODE>-&gt;</CODE> <A HREF="#SC" TITLE="SC - embedded sentence or question">SC</A> <CODE>-&gt;</CODE> <A HREF="#CN" TITLE="CN - common noun (without determiner)">CN</A></TD>
+<TD><div class=reveal> <I>reason to sleep</I> <div class=popup> <ul> <li>API: <CODE>mkCN (mkCN reason_N) (mkVP sleep_V)</CODE> <li>Afr: <I>rede te slaap</I> <li>Bul: <I>причина да спя</I> <li>Cat: <I>raó dormir</I> <li>Dan: <I>*</I> <li>Dut: <I>reden te slapen</I> <li>Eng: <I>reason to sleep</I> <li>Fin: <I>syy nukkumaan</I> <li>Fre: <I>raison dormir</I> <li>Ger: <I>Grund zu schlafen</I> <li>Ita: <I>ragione dormire</I> <li>Nep: <I>सुत्न लाइ कारण</I> <li>Nor: <I>*</I> <li>Pes: <I>دلیل خوابیدن</I> <li>Pnb: <I>*</I> <li>Pol: <I>powód spać</I> <li>Ron: <I>motiv sã doarmă</I> <li>Rus: <I>причина спать</I> <li>Spa: <I>*</I> <li>Swe: <I>anledning att sova</I> <li>Urd: <I>وجہ سونا</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>mkCN</CODE></TD>
+<TD><A HREF="#N" TITLE="N - common noun">N</A> <CODE>-&gt;</CODE> <A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A> <CODE>-&gt;</CODE> <A HREF="#CN" TITLE="CN - common noun (without determiner)">CN</A></TD>
+<TD><div class=reveal> <I>king John</I> <div class=popup> <ul> <li>API: <CODE>mkCN king_N (mkNP john_PN)</CODE> <li>Afr: <I>koning Jan</I> <li>Bul: <I>цар Джон</I> <li>Cat: <I>rei Joan</I> <li>Dan: <I>konge John</I> <li>Dut: <I>koning Jan</I> <li>Eng: <I>king John</I> <li>Fin: <I>kuningas Jussi</I> <li>Fre: <I>roi Jean</I> <li>Ger: <I>König Johann</I> <li>Ita: <I>ré Giovanni</I> <li>Nep: <I>राजा जोन</I> <li>Nor: <I>konge John</I> <li>Pes: <I>پادشاه جان</I> <li>Pnb: <I>بادشاہ جان</I> <li>Pol: <I>król Jan</I> <li>Ron: <I>rege Ion</I> <li>Rus: <I>король Иван</I> <li>Spa: <I>rey Juan</I> <li>Swe: <I>kung Johan</I> <li>Urd: <I>بادشاہ جان</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>mkCN</CODE></TD>
+<TD><A HREF="#CN" TITLE="CN - common noun (without determiner)">CN</A> <CODE>-&gt;</CODE> <A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A> <CODE>-&gt;</CODE> <A HREF="#CN" TITLE="CN - common noun (without determiner)">CN</A></TD>
+<TD><div class=reveal> <I>old king John</I> <div class=popup> <ul> <li>API: <CODE>mkCN (mkCN old_A king_N) (mkNP john_PN)</CODE> <li>Afr: <I>oud koning Jan</I> <li>Bul: <I>стар цар Джон</I> <li>Cat: <I>rei vell Joan</I> <li>Dan: <I>gammel konge John</I> <li>Dut: <I>oude koning Jan</I> <li>Eng: <I>old king John</I> <li>Fin: <I>vanha kuningas Jussi</I> <li>Fre: <I>vieux roi Jean</I> <li>Ger: <I>alter König Johann</I> <li>Ita: <I>vecchio ré Giovanni</I> <li>Nep: <I>बुढो राजा जोन</I> <li>Nor: <I>gammel konge John</I> <li>Pes: <I>پادشاه پیر جان</I> <li>Pnb: <I>بوڈا بادشاہ جان</I> <li>Pol: <I>stary król Jan</I> <li>Ron: <I>rege vechi Ion</I> <li>Rus: <I>старый король Иван</I> <li>Spa: <I>viejo rey Juan</I> <li>Swe: <I>gammal kung Johan</I> <li>Urd: <I>بوڑھا بادشاہ جان</I> </ul> </div> </div></TD>
+</TR>
+</TABLE>
+
+<A NAME="Card"></A>
+<H2>Card - cardinal number</H2>
+
+<TABLE BORDER="1" CELLPADDING="4">
+<TR>
+<TH>Function</TH>
+<TH>Type</TH>
+<TH COLSPAN="2">Example</TH>
+</TR>
+<TR>
+<TD><CODE>mkCard</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#Card" TITLE="Card - cardinal number">Card</A></TD>
+<TD><I>thirty-five (given as "35"; range 1-999)</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkCard</CODE></TD>
+<TD><A HREF="#Numeral" TITLE="Numeral - cardinal or ordinal in words">Numeral</A> <CODE>-&gt;</CODE> <A HREF="#Card" TITLE="Card - cardinal number">Card</A></TD>
+<TD><div class=reveal> <I>seven</I> <div class=popup> <ul> <li>API: <CODE>mkCard (mkNumeral n7_Unit)</CODE> <li>Afr: <I>seven</I> <li>Bul: <I>седмина</I> <li>Cat: <I>set</I> <li>Dan: <I>syv</I> <li>Dut: <I>zeven</I> <li>Eng: <I>seven</I> <li>Fin: <I>seitsemän</I> <li>Fre: <I>sept</I> <li>Ger: <I>sieben</I> <li>Ita: <I>sette</I> <li>Nep: <I>सात</I> <li>Nor: <I>sju</I> <li>Pes: <I>هفت</I> <li>Pnb: <I>ست</I> <li>Pol: <I>siedem</I> <li>Ron: <I>şapte</I> <li>Rus: <I>семь</I> <li>Spa: <I>siete</I> <li>Swe: <I>sju</I> <li>Urd: <I>سات</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>mkCard</CODE></TD>
+<TD><A HREF="#Digits" TITLE="Digits - cardinal or ordinal in digits">Digits</A> <CODE>-&gt;</CODE> <A HREF="#Card" TITLE="Card - cardinal number">Card</A></TD>
+<TD><I>51</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkCard</CODE></TD>
+<TD><A HREF="#AdN" TITLE="AdN - numeral-modifying adverb">AdN</A> <CODE>-&gt;</CODE> <A HREF="#Card" TITLE="Card - cardinal number">Card</A> <CODE>-&gt;</CODE> <A HREF="#Card" TITLE="Card - cardinal number">Card</A></TD>
+<TD><I>almost fifty</I></TD>
+</TR>
+</TABLE>
+
+<A NAME="Cl"></A>
+<H2>Cl - declarative clause, with all tenses</H2>
+
+<TABLE BORDER="1" CELLPADDING="4">
+<TR>
+<TH>Function</TH>
+<TH>Type</TH>
+<TH COLSPAN="2">Example</TH>
+</TR>
+<TR>
+<TD><CODE>genericCl</CODE></TD>
+<TD><A HREF="#VP" TITLE="VP - verb phrase">VP</A> <CODE>-&gt;</CODE> <A HREF="#Cl" TITLE="Cl - declarative clause, with all tenses">Cl</A></TD>
+<TD><div class=reveal> <I>one sleeps</I> <div class=popup> <ul> <li>API: <CODE>mkS (genericCl (mkVP sleep_V))</CODE> <li>Afr: <I>mens slaap</I> <li>Bul: <I>някой спи</I> <li>Cat: <I>hom dorm</I> <li>Dan: <I>man sover</I> <li>Dut: <I>men slaapt</I> <li>Eng: <I>one sleeps</I> <li>Fin: <I>Prelude.(!!): index too large</I> <li>Fre: <I>on dort</I> <li>Ger: <I>man schläft</I> <li>Ita: <I>si dorme</I> <li>Nep: <I>कोही सुत्छ</I> <li>Nor: <I>man sover</I> <li>Pes: <I>آدم می خوابد</I> <li>Pnb: <I>كوی سوندا اے</I> <li>Pol: <I>ktoś śpi</I> <li>Ron: <I>cineva doarme</I> <li>Rus: <I>ты спдишь</I> <li>Spa: <I>se duerme</I> <li>Swe: <I>man sover</I> <li>Urd: <I>كوی سوتا ہے</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>mkCl</CODE></TD>
+<TD><A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A> <CODE>-&gt;</CODE> <A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#Cl" TITLE="Cl - declarative clause, with all tenses">Cl</A></TD>
+<TD><div class=reveal> <I>she sleeps</I> <div class=popup> <ul> <li>API: <CODE>mkCl she_NP sleep_V</CODE> <li>Afr: <I>sy slaap</I> <li>Bul: <I>тя спи</I> <li>Cat: <I>ella dorm</I> <li>Dan: <I>hun sover</I> <li>Dut: <I>ze slaapt</I> <li>Eng: <I>she sleeps</I> <li>Fin: <I>hän nukkuu</I> <li>Fre: <I>elle dort</I> <li>Ger: <I>sie schläft</I> <li>Ita: <I>lei dorme</I> <li>Nep: <I>उनी सुत्छिन्</I> <li>Nor: <I>hun sover</I> <li>Pes: <I>او می خوابد</I> <li>Pnb: <I>او سوندی اے</I> <li>Pol: <I>ona śpi</I> <li>Ron: <I>ea doarme</I> <li>Rus: <I>она спдит</I> <li>Spa: <I>ella duerme</I> <li>Swe: <I>hon sover</I> <li>Urd: <I>وہ سوتی ہے</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>mkCl</CODE></TD>
+<TD><A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A> <CODE>-&gt;</CODE> <A HREF="#V2" TITLE="V2 - two-place verb">V2</A> <CODE>-&gt;</CODE> <A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A> <CODE>-&gt;</CODE> <A HREF="#Cl" TITLE="Cl - declarative clause, with all tenses">Cl</A></TD>
+<TD><div class=reveal> <I>she loves him</I> <div class=popup> <ul> <li>API: <CODE>mkCl she_NP love_V2 he_NP</CODE> <li>Afr: <I>sy het hom lief</I> <li>Bul: <I>тя обича него</I> <li>Cat: <I>ella el estima</I> <li>Dan: <I>hun elsker ham</I> <li>Dut: <I>ze heeft hem lief</I> <li>Eng: <I>she loves him</I> <li>Fin: <I>hän rakastaa häntä</I> <li>Fre: <I>elle l' aime</I> <li>Ger: <I>sie liebt ihn</I> <li>Ita: <I>lei lo ama</I> <li>Nep: <I>उनी उ लाई माया गर्छिन्</I> <li>Nor: <I>hun elsker ham</I> <li>Pes: <I>او او را دوست دارد</I> <li>Pnb: <I>او اونوں پیار كردی اے</I> <li>Pol: <I>ona kocha jego</I> <li>Ron: <I>ea îl iubeşte</I> <li>Rus: <I>она любдит его</I> <li>Spa: <I>ella lo ama</I> <li>Swe: <I>hon älskar honom</I> <li>Urd: <I>وہ اس كو پیار كرتی ہے</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>mkCl</CODE></TD>
+<TD><A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A> <CODE>-&gt;</CODE> <A HREF="#V3" TITLE="V3 - three-place verb">V3</A> <CODE>-&gt;</CODE> <A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A> <CODE>-&gt;</CODE> <A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A> <CODE>-&gt;</CODE> <A HREF="#Cl" TITLE="Cl - declarative clause, with all tenses">Cl</A></TD>
+<TD><div class=reveal> <I>she sends it to him</I> <div class=popup> <ul> <li>API: <CODE>mkCl she_NP send_V3 it_NP he_NP</CODE> <li>Afr: <I>sy stuur dit na hom</I> <li>Bul: <I>тя праща него до него</I> <li>Cat: <I>ella ho li envia</I> <li>Dan: <I>hun sender det til ham</I> <li>Dut: <I>ze stuurt het naar hem</I> <li>Eng: <I>she sends it to him</I> <li>Fin: <I>hän lähettää sen hänelle</I> <li>Fre: <I>elle le lui envoie</I> <li>Ger: <I>sie schickt es ihm</I> <li>Ita: <I>lei lo gli manda</I> <li>Nep: <I>उनी यो उस्लाई लाई पठाउँछिन्</I> <li>Nor: <I>hun sender det til ham</I> <li>Pes: <I>او آن را برای او می فرستد</I> <li>Pnb: <I>او اینوں اونوں پیجدی اے</I> <li>Pol: <I>ona wysyła do niego je</I> <li>Ron: <I>ea i -l trimite</I> <li>Rus: <I>она посылает нему его</I> <li>Spa: <I>ella lo le manda</I> <li>Swe: <I>hon skickar det till honom</I> <li>Urd: <I>وہ اس كو اس كو بھیجتی ہے</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>mkCl</CODE></TD>
+<TD><A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A> <CODE>-&gt;</CODE> <A HREF="#VV" TITLE="VV - verb-phrase-complement verb">VV</A> <CODE>-&gt;</CODE> <A HREF="#VP" TITLE="VP - verb phrase">VP</A> <CODE>-&gt;</CODE> <A HREF="#Cl" TITLE="Cl - declarative clause, with all tenses">Cl</A></TD>
+<TD><div class=reveal> <I>she wants to sleep</I> <div class=popup> <ul> <li>API: <CODE>mkCl she_NP want_VV (mkVP sleep_V)</CODE> <li>Afr: <I>sy wil slaap</I> <li>Bul: <I>тя иска да спи</I> <li>Cat: <I>ella vol dormir</I> <li>Dan: <I>hun vil sove</I> <li>Dut: <I>ze wil slapen</I> <li>Eng: <I>she wants to sleep</I> <li>Fin: <I>hän tahtoo nukkumaan</I> <li>Fre: <I>elle veut dormir</I> <li>Ger: <I>sie will schlafen</I> <li>Ita: <I>lei vuole dormire</I> <li>Nep: <I>उनी सुत्न चाहन्छिन्</I> <li>Nor: <I>hun vil sove</I> <li>Pes: <I>او می خواهد بخوابد</I> <li>Pnb: <I>او سونا چاندی اے</I> <li>Pol: <I>ona chce spać</I> <li>Ron: <I>ea vrea sã doarmă</I> <li>Rus: <I>она хочет спать</I> <li>Spa: <I>ella quiere dormir</I> <li>Swe: <I>hon vill sova</I> <li>Urd: <I>وہ سونا چاہتی ہے</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>mkCl</CODE></TD>
+<TD><A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A> <CODE>-&gt;</CODE> <A HREF="#VS" TITLE="VS - sentence-complement verb">VS</A> <CODE>-&gt;</CODE> <A HREF="#S" TITLE="S - declarative sentence">S</A> <CODE>-&gt;</CODE> <A HREF="#Cl" TITLE="Cl - declarative clause, with all tenses">Cl</A></TD>
+<TD><div class=reveal> <I>she says that I sleep</I> <div class=popup> <ul> <li>API: <CODE>mkCl she_NP say_VS (mkS (mkCl i_NP sleep_V))</CODE> <li>Afr: <I>sy sê dat ek slaap</I> <li>Bul: <I>тя казва , че аз спя</I> <li>Cat: <I>ella diu que jo dormo</I> <li>Dan: <I>hun siger at jeg sover</I> <li>Dut: <I>ze zegt dat ik slaap</I> <li>Eng: <I>she says that I sleep</I> <li>Fin: <I>hän sanoo että minä nukun</I> <li>Fre: <I>elle dit que je dors</I> <li>Ger: <I>sie sagt daß ich schlafe</I> <li>Ita: <I>lei dice che io dormo</I> <li>Nep: <I>उनी भन्छिन्की म सुत्छु</I> <li>Nor: <I>hun sier at jeg sover</I> <li>Pes: <I>او می گوید که من می خوابم</I> <li>Pnb: <I>او كہدی اے كہ میں سوندا واں</I> <li>Pol: <I>ona mówi , że ja śpię</I> <li>Ron: <I>ea spune cã eu dorm</I> <li>Rus: <I>она говордит , что я сплю</I> <li>Spa: <I>ella dice que yo duermo</I> <li>Swe: <I>hon säger att jag sover</I> <li>Urd: <I>وہ كہتی ہے كہ میں سوتا ہوں</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>mkCl</CODE></TD>
+<TD><A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A> <CODE>-&gt;</CODE> <A HREF="#VQ" TITLE="VQ - question-complement verb">VQ</A> <CODE>-&gt;</CODE> <A HREF="#QS" TITLE="QS - question">QS</A> <CODE>-&gt;</CODE> <A HREF="#Cl" TITLE="Cl - declarative clause, with all tenses">Cl</A></TD>
+<TD><div class=reveal> <I>she wonders who sleeps</I> <div class=popup> <ul> <li>API: <CODE>mkCl she_NP wonder_VQ (mkQS (mkQCl who_IP sleep_V))</CODE> <li>Afr: <I>sy vra hom af wie slaap</I> <li>Bul: <I>тя се учудва кой спи</I> <li>Cat: <I>ella se pregunta qui dorm</I> <li>Dan: <I>hun undres hvem som sover</I> <li>Dut: <I>ze vraagt zich af wie slaapt</I> <li>Eng: <I>she wonders who sleeps</I> <li>Fin: <I>hän ihmettelee kuka nukkuu</I> <li>Fre: <I>elle s' étonne qui dort</I> <li>Ger: <I>sie wundert sich wer schläft</I> <li>Ita: <I>lei si domanda chi dorme</I> <li>Nep: <I>उनी अचम्म हुन्छिन्की को सुत्छन्</I> <li>Nor: <I>hun undrer hvem som sover</I> <li>Pes: <I>*</I> <li>Pnb: <I>او حیران ہوندی اے كہ كون سوندا اے</I> <li>Pol: <I>ona zastanawia się , kto śpi</I> <li>Ron: <I>ea se întreabă cine doarme</I> <li>Rus: <I>она интересует кто спдит</I> <li>Spa: <I>ella se pregunta quién duerme</I> <li>Swe: <I>hon undrar vem som sover</I> <li>Urd: <I>وہ حیران ہوتی ہے كہ كون سوتا ہے</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>mkCl</CODE></TD>
+<TD><A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A> <CODE>-&gt;</CODE> <A HREF="#VA" TITLE="VA - adjective-complement verb">VA</A> <CODE>-&gt;</CODE> <A HREF="#A" TITLE="A - one-place adjective">A</A> <CODE>-&gt;</CODE> <A HREF="#Cl" TITLE="Cl - declarative clause, with all tenses">Cl</A></TD>
+<TD><div class=reveal> <I>she becomes old</I> <div class=popup> <ul> <li>API: <CODE>mkCl she_NP become_VA old_A</CODE> <li>Afr: <I>sy word oud</I> <li>Bul: <I>тя става стара</I> <li>Cat: <I>ella se torna vell</I> <li>Dan: <I>hun bliver gammel</I> <li>Dut: <I>ze wordt oud</I> <li>Eng: <I>she becomes old</I> <li>Fin: <I>hän tulee vanhaksi</I> <li>Fre: <I>elle devient vieille</I> <li>Ger: <I>sie wird alt</I> <li>Ita: <I>lei diventa vecchia</I> <li>Nep: <I>उनी बुढी हुन्छिन्</I> <li>Nor: <I>hun blir gammel</I> <li>Pes: <I>او پیر می شود</I> <li>Pnb: <I>او بوڈی بندی اے</I> <li>Pol: <I>ona staje się stara</I> <li>Ron: <I>ea devine veche</I> <li>Rus: <I>она становдит старой</I> <li>Spa: <I>ella se converte vieja</I> <li>Swe: <I>hon blir gammal</I> <li>Urd: <I>وہ بوڑھی بنتی ہے</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>mkCl</CODE></TD>
+<TD><A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A> <CODE>-&gt;</CODE> <A HREF="#VA" TITLE="VA - adjective-complement verb">VA</A> <CODE>-&gt;</CODE> <A HREF="#AP" TITLE="AP - adjectival phrase">AP</A> <CODE>-&gt;</CODE> <A HREF="#Cl" TITLE="Cl - declarative clause, with all tenses">Cl</A></TD>
+<TD><div class=reveal> <I>she becomes very old</I> <div class=popup> <ul> <li>API: <CODE>mkCl she_NP become_VA (mkAP very_AdA old_A)</CODE> <li>Afr: <I>sy word baie oud</I> <li>Bul: <I>тя става много стара</I> <li>Cat: <I>ella se torna molt vell</I> <li>Dan: <I>hun bliver meget gammel</I> <li>Dut: <I>ze wordt erg oud</I> <li>Eng: <I>she becomes very old</I> <li>Fin: <I>hän tulee erittäin vanhaksi</I> <li>Fre: <I>elle devient très vieille</I> <li>Ger: <I>sie wird sehr alt</I> <li>Ita: <I>lei diventa molto vecchia</I> <li>Nep: <I>उनी धेरै बुढी हुन्छिन्</I> <li>Nor: <I>hun blir mye gammel</I> <li>Pes: <I>او خیلی پیر می شود</I> <li>Pnb: <I>او بہت بوڈی بندی اے</I> <li>Pol: <I>ona staje się bardzo stara</I> <li>Ron: <I>ea devine foarte veche</I> <li>Rus: <I>она становдит очень старой</I> <li>Spa: <I>ella se converte muy vieja</I> <li>Swe: <I>hon blir mycket gammal</I> <li>Urd: <I>وہ بہت بوڑھی بنتی ہے</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>mkCl</CODE></TD>
+<TD><A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A> <CODE>-&gt;</CODE> <A HREF="#V2A" TITLE="V2A - verb with NP and AP complement">V2A</A> <CODE>-&gt;</CODE> <A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A> <CODE>-&gt;</CODE> <A HREF="#A" TITLE="A - one-place adjective">A</A> <CODE>-&gt;</CODE> <A HREF="#Cl" TITLE="Cl - declarative clause, with all tenses">Cl</A></TD>
+<TD><div class=reveal> <I>she paints it red</I> <div class=popup> <ul> <li>API: <CODE>mkCl she_NP paint_V2A it_NP red_A</CODE> <li>Afr: <I>sy skilder dit rooi</I> <li>Bul: <I>тя рисува него червено</I> <li>Cat: <I>ella ho pinta en vermell</I> <li>Dan: <I>hun maler det rødt</I> <li>Dut: <I>ze schildeert het rood</I> <li>Eng: <I>she paints it red</I> <li>Fin: <I>hän maalaa sen punaiseksi</I> <li>Fre: <I>elle le peint en rouge</I> <li>Ger: <I>sie malt es rot</I> <li>Ita: <I>lei lo dipinge rosso</I> <li>Nep: <I>उनी यो लाई रातो रँग लागाउँछिन्</I> <li>Nor: <I>hun maler det rødt</I> <li>Pes: <I>او آن را قرمز رنگ می کند</I> <li>Pnb: <I>او اینوں لال رنگ كردی اے</I> <li>Pol: <I>ona maluje je na czerwono</I> <li>Ron: <I>ea îl pictează roşu</I> <li>Rus: <I>она рисует красным его</I> <li>Spa: <I>ella lo pinta en rojo</I> <li>Swe: <I>hon målar det rött</I> <li>Urd: <I>وہ اس كو لال رنگ كرتی ہے</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>mkCl</CODE></TD>
+<TD><A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A> <CODE>-&gt;</CODE> <A HREF="#V2A" TITLE="V2A - verb with NP and AP complement">V2A</A> <CODE>-&gt;</CODE> <A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A> <CODE>-&gt;</CODE> <A HREF="#AP" TITLE="AP - adjectival phrase">AP</A> <CODE>-&gt;</CODE> <A HREF="#Cl" TITLE="Cl - declarative clause, with all tenses">Cl</A></TD>
+<TD><div class=reveal> <I>she paints it red</I> <div class=popup> <ul> <li>API: <CODE>mkCl she_NP paint_V2A it_NP (mkAP red_A)</CODE> <li>Afr: <I>sy skilder dit rooi</I> <li>Bul: <I>тя рисува него червено</I> <li>Cat: <I>ella ho pinta en vermell</I> <li>Dan: <I>hun maler det rødt</I> <li>Dut: <I>ze schildeert het rood</I> <li>Eng: <I>she paints it red</I> <li>Fin: <I>hän maalaa sen punaiseksi</I> <li>Fre: <I>elle le peint en rouge</I> <li>Ger: <I>sie malt es rot</I> <li>Ita: <I>lei lo dipinge rosso</I> <li>Nep: <I>उनी यो लाई रातो रँग लागाउँछिन्</I> <li>Nor: <I>hun maler det rødt</I> <li>Pes: <I>او آن را قرمز رنگ می کند</I> <li>Pnb: <I>او اینوں لال رنگ كردی اے</I> <li>Pol: <I>ona maluje je na czerwono</I> <li>Ron: <I>ea îl pictează roşu</I> <li>Rus: <I>она рисует красным его</I> <li>Spa: <I>ella lo pinta en rojo</I> <li>Swe: <I>hon målar det rött</I> <li>Urd: <I>وہ اس كو لال رنگ كرتی ہے</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>mkCl</CODE></TD>
+<TD><A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A> <CODE>-&gt;</CODE> <A HREF="#V2S" TITLE="V2S - verb with NP and S complement">V2S</A> <CODE>-&gt;</CODE> <A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A> <CODE>-&gt;</CODE> <A HREF="#S" TITLE="S - declarative sentence">S</A> <CODE>-&gt;</CODE> <A HREF="#Cl" TITLE="Cl - declarative clause, with all tenses">Cl</A></TD>
+<TD><div class=reveal> <I>she answers to him that we sleep</I> <div class=popup> <ul> <li>API: <CODE>mkCl she_NP answer_V2S he_NP (mkS (mkCl we_NP sleep_V))</CODE> <li>Afr: <I>sy antwoord hom dat ons slaap</I> <li>Bul: <I>тя отговаря му , че ние спим</I> <li>Cat: <I>ella li respon que nosaltres dormim</I> <li>Dan: <I>hun svarer til ham at vi sover</I> <li>Dut: <I>ze antwoordt hem dat we slapen</I> <li>Eng: <I>she answers to him that we sleep</I> <li>Fin: <I>hän vastaa hänelle että me nukumme</I> <li>Fre: <I>elle lui répond que nous dormons</I> <li>Ger: <I>sie antwortet ihm daß wir schlafen</I> <li>Ita: <I>lei gli risponde che noi dormiamo</I> <li>Nep: <I>उनी उ लाई उत्तर दिन्छिन्की हामीहरु सुत्छौँ</I> <li>Nor: <I>hun svarer til ham at vi sover</I> <li>Pes: <I>او به او جواب می دهد که ما می خوابیم</I> <li>Pnb: <I>او اونوں جواب دیندی اے كہ اسی سوندے واں</I> <li>Pol: <I>ona odpowiada jemu , że my śpimy</I> <li>Ron: <I>ea îi răspunde cã noi dormim</I> <li>Rus: <I>она отвечает , что мы спдим его</I> <li>Spa: <I>ella le responde que nosotros dormimos</I> <li>Swe: <I>hon svarar till honom att vi sover</I> <li>Urd: <I>وہ اس كو جواب دیتی ہے كہ ہم سوتے ہیں</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>mkCl</CODE></TD>
+<TD><A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A> <CODE>-&gt;</CODE> <A HREF="#V2Q" TITLE="V2Q - verb with NP and Q complement">V2Q</A> <CODE>-&gt;</CODE> <A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A> <CODE>-&gt;</CODE> <A HREF="#QS" TITLE="QS - question">QS</A> <CODE>-&gt;</CODE> <A HREF="#Cl" TITLE="Cl - declarative clause, with all tenses">Cl</A></TD>
+<TD><div class=reveal> <I>she asks him who sleeps</I> <div class=popup> <ul> <li>API: <CODE>mkCl she_NP ask_V2Q he_NP (mkQS (mkQCl who_IP sleep_V))</CODE> <li>Afr: <I>sy vra hom wie slaap</I> <li>Bul: <I>тя пита него кой спи</I> <li>Cat: <I>ella li pregunta qui dorm</I> <li>Dan: <I>hun spørger ham hvem som sover</I> <li>Dut: <I>ze vraagt hem wie slaapt</I> <li>Eng: <I>she asks him who sleeps</I> <li>Fin: <I>hän kysyy häneltä kuka nukkuu</I> <li>Fre: <I>elle lui demande qui dort</I> <li>Ger: <I>sie fragt ihn wer schläft</I> <li>Ita: <I>lei gli chiede chi dorme</I> <li>Nep: <I>उनी उ सँग सोध्छिन्की को सुत्छन्</I> <li>Nor: <I>hun spørr ham hvem som sover</I> <li>Pes: <I>او از او می پرسد چه کسی می خوابد</I> <li>Pnb: <I>او اونوں پچھدی اے كہ كون سوندا اے</I> <li>Pol: <I>ona pyta jego , kto śpi</I> <li>Ron: <I>ea îl întreabă cine doarme</I> <li>Rus: <I>она спрашивает кто спдит его</I> <li>Spa: <I>ella le pregunta quién duerme</I> <li>Swe: <I>hon frågar honom vem som sover</I> <li>Urd: <I>وہ اس سے پوچھتی ہے كہ كون سوتا ہے</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>mkCl</CODE></TD>
+<TD><A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A> <CODE>-&gt;</CODE> <A HREF="#V2V" TITLE="V2V - verb with NP and V complement">V2V</A> <CODE>-&gt;</CODE> <A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A> <CODE>-&gt;</CODE> <A HREF="#VP" TITLE="VP - verb phrase">VP</A> <CODE>-&gt;</CODE> <A HREF="#Cl" TITLE="Cl - declarative clause, with all tenses">Cl</A></TD>
+<TD><div class=reveal> <I>she begs him to sleep</I> <div class=popup> <ul> <li>API: <CODE>mkCl she_NP beg_V2V he_NP (mkVP sleep_V)</CODE> <li>Afr: <I>sy smeek hom te slaap</I> <li>Bul: <I>тя моли него да спи</I> <li>Cat: <I>ella el demana a dormir</I> <li>Dan: <I>hun beder ham at sove</I> <li>Dut: <I>ze smeekt hem te slapen</I> <li>Eng: <I>she begs him to sleep</I> <li>Fin: <I>hän pyytää häntä nukkuneelle</I> <li>Fre: <I>elle le demande à dormir</I> <li>Ger: <I>sie bittet ihn zu schlafen</I> <li>Ita: <I>lei lo prega di dormire</I> <li>Nep: <I>उनी उ लाई सुत्न आग्रह गर्छिन्</I> <li>Nor: <I>hun ber ham att sove</I> <li>Pes: <I>او از او خواهش می کند بخوابد</I> <li>Pnb: <I>او اونوں سونا دی مانگدی اے</I> <li>Pol: <I>*</I> <li>Ron: <I>ea îl roagă sã doarmă</I> <li>Rus: <I>она просит спать его</I> <li>Spa: <I>ella lo roga a dormir</I> <li>Swe: <I>hon ber honom att sova</I> <li>Urd: <I>وہ اس سے سونے كی التجا كرتی ہے</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>mkCl</CODE></TD>
+<TD><A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A> <CODE>-&gt;</CODE> <A HREF="#A" TITLE="A - one-place adjective">A</A> <CODE>-&gt;</CODE> <A HREF="#Cl" TITLE="Cl - declarative clause, with all tenses">Cl</A></TD>
+<TD><div class=reveal> <I>she is old</I> <div class=popup> <ul> <li>API: <CODE>mkCl she_NP old_A</CODE> <li>Afr: <I>sy is oud</I> <li>Bul: <I>тя е стара</I> <li>Cat: <I>ella és vell</I> <li>Dan: <I>hun er gammel</I> <li>Dut: <I>ze is oud</I> <li>Eng: <I>she is old</I> <li>Fin: <I>hän on vanha</I> <li>Fre: <I>elle est vieille</I> <li>Ger: <I>sie ist alt</I> <li>Ita: <I>lei è vecchia</I> <li>Nep: <I>उनी बुढी छिन्</I> <li>Nor: <I>hun er gammel</I> <li>Pes: <I>او پیر است</I> <li>Pnb: <I>او بوڈی اے</I> <li>Pol: <I>ona jest stara</I> <li>Ron: <I>ea este veche</I> <li>Rus: <I>она старая</I> <li>Spa: <I>ella es vieja</I> <li>Swe: <I>hon är gammal</I> <li>Urd: <I>وہ بوڑھی ہے</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>mkCl</CODE></TD>
+<TD><A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A> <CODE>-&gt;</CODE> <A HREF="#A" TITLE="A - one-place adjective">A</A> <CODE>-&gt;</CODE> <A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A> <CODE>-&gt;</CODE> <A HREF="#Cl" TITLE="Cl - declarative clause, with all tenses">Cl</A></TD>
+<TD><div class=reveal> <I>she is older than he</I> <div class=popup> <ul> <li>API: <CODE>mkCl she_NP old_A he_NP</CODE> <li>Afr: <I>sy is ouer as hy</I> <li>Bul: <I>тя е по - стара от него</I> <li>Cat: <I>ella és més vell que ell</I> <li>Dan: <I>hun er ældre end han</I> <li>Dut: <I>ze is ouder dan hij</I> <li>Eng: <I>she is older than he</I> <li>Fin: <I>hän on vanhempi kuin hän</I> <li>Fre: <I>elle est plus vieille que lui</I> <li>Ger: <I>sie ist älter als er</I> <li>Ita: <I>lei è più vecchia di lui</I> <li>Nep: <I>उनी उ भन्दा बुढी छिन्</I> <li>Nor: <I>hun er eldre enn han</I> <li>Pes: <I>او پیر تر از او است</I> <li>Pnb: <I>او اورے توں بوڈی اے</I> <li>Pol: <I>ona jest starsza niż on</I> <li>Ron: <I>ea este mai veche decât el</I> <li>Rus: <I>она старше него</I> <li>Spa: <I>ella es más vieja que él</I> <li>Swe: <I>hon är äldre än han</I> <li>Urd: <I>وہ اس سے بوڑھی ہے</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>mkCl</CODE></TD>
+<TD><A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A> <CODE>-&gt;</CODE> <A HREF="#A2" TITLE="A2 - two-place adjective">A2</A> <CODE>-&gt;</CODE> <A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A> <CODE>-&gt;</CODE> <A HREF="#Cl" TITLE="Cl - declarative clause, with all tenses">Cl</A></TD>
+<TD><div class=reveal> <I>she is married to him</I> <div class=popup> <ul> <li>API: <CODE>mkCl she_NP married_A2 he_NP</CODE> <li>Afr: <I>sy is getroud met hom</I> <li>Bul: <I>тя е женена за него</I> <li>Cat: <I>ella és casata a ell</I> <li>Dan: <I>hun er gift med ham</I> <li>Dut: <I>ze is getrouwd met hem</I> <li>Eng: <I>she is married to him</I> <li>Fin: <I>hän on avioitunut hänen kanssa</I> <li>Fre: <I>elle est mariée à lui</I> <li>Ger: <I>sie ist verheiratet mit ihm</I> <li>Ita: <I>lei è sposata con lui</I> <li>Nep: <I>उनी उ सँग विवाहित छिन्</I> <li>Nor: <I>hun er gift med ham</I> <li>Pes: <I>او او متأهل است</I> <li>Pnb: <I>*</I> <li>Pol: <I>ona jest zaślubiona jemu</I> <li>Ron: <I>ea este căsătorită cu el</I> <li>Rus: <I>она замужем за им</I> <li>Spa: <I>ella es casada a él</I> <li>Swe: <I>hon är gift med honom</I> <li>Urd: <I>وہ اس سے [شادی كرنa] ہے</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>mkCl</CODE></TD>
+<TD><A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A> <CODE>-&gt;</CODE> <A HREF="#AP" TITLE="AP - adjectival phrase">AP</A> <CODE>-&gt;</CODE> <A HREF="#Cl" TITLE="Cl - declarative clause, with all tenses">Cl</A></TD>
+<TD><div class=reveal> <I>she is very old</I> <div class=popup> <ul> <li>API: <CODE>mkCl she_NP (mkAP very_AdA old_A)</CODE> <li>Afr: <I>sy is baie oud</I> <li>Bul: <I>тя е много стара</I> <li>Cat: <I>ella és molt vell</I> <li>Dan: <I>hun er meget gammel</I> <li>Dut: <I>ze is erg oud</I> <li>Eng: <I>she is very old</I> <li>Fin: <I>hän on erittäin vanha</I> <li>Fre: <I>elle est très vieille</I> <li>Ger: <I>sie ist sehr alt</I> <li>Ita: <I>lei è molto vecchia</I> <li>Nep: <I>उनी धेरै बुढी छिन्</I> <li>Nor: <I>hun er mye gammel</I> <li>Pes: <I>او خیلی پیر است</I> <li>Pnb: <I>او بہت بوڈی اے</I> <li>Pol: <I>ona jest bardzo stara</I> <li>Ron: <I>ea este foarte veche</I> <li>Rus: <I>она очень старая</I> <li>Spa: <I>ella es muy vieja</I> <li>Swe: <I>hon är mycket gammal</I> <li>Urd: <I>وہ بہت بوڑھی ہے</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>mkCl</CODE></TD>
+<TD><A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A> <CODE>-&gt;</CODE> <A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A> <CODE>-&gt;</CODE> <A HREF="#Cl" TITLE="Cl - declarative clause, with all tenses">Cl</A></TD>
+<TD><div class=reveal> <I>she is the woman</I> <div class=popup> <ul> <li>API: <CODE>mkCl she_NP (mkNP the_Det woman_N)</CODE> <li>Afr: <I>sy is die vrou</I> <li>Bul: <I>тя е жената</I> <li>Cat: <I>ella és la dona</I> <li>Dan: <I>hun er kvinden</I> <li>Dut: <I>ze is de vrouw</I> <li>Eng: <I>she is the woman</I> <li>Fin: <I>hän on nainen</I> <li>Fre: <I>elle est la femme</I> <li>Ger: <I>sie ist die Frau</I> <li>Ita: <I>lei è la donna</I> <li>Nep: <I>उनी आईमाई हुन्</I> <li>Nor: <I>hun er kvinna</I> <li>Pes: <I>او زن است</I> <li>Pnb: <I>او زنانی اے</I> <li>Pol: <I>ona jest kobietą</I> <li>Ron: <I>ea este femeia</I> <li>Rus: <I>она женщина</I> <li>Spa: <I>ella es la mujer</I> <li>Swe: <I>hon är kvinnan</I> <li>Urd: <I>وہ عورت ہے</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>mkCl</CODE></TD>
+<TD><A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A> <CODE>-&gt;</CODE> <A HREF="#Cl" TITLE="Cl - declarative clause, with all tenses">Cl</A></TD>
+<TD><div class=reveal> <I>she is a woman</I> <div class=popup> <ul> <li>API: <CODE>mkCl she_NP woman_N</CODE> <li>Afr: <I>sy is 'n vrou</I> <li>Bul: <I>тя е жена</I> <li>Cat: <I>ella és dona</I> <li>Dan: <I>hun er en kvinde</I> <li>Dut: <I>ze is vrouw</I> <li>Eng: <I>she is a woman</I> <li>Fin: <I>hän on nainen</I> <li>Fre: <I>elle est femme</I> <li>Ger: <I>sie ist eine Frau</I> <li>Ita: <I>lei è donna</I> <li>Nep: <I>उनी आईमाई हुन्</I> <li>Nor: <I>hun er ei kvinne</I> <li>Pes: <I>او زن است</I> <li>Pnb: <I>او زنانی اے</I> <li>Pol: <I>ona jest kobieta</I> <li>Ron: <I>ea este femeie</I> <li>Rus: <I>она женщина</I> <li>Spa: <I>ella es mujer</I> <li>Swe: <I>hon är en kvinna</I> <li>Urd: <I>وہ عورت ہے</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>mkCl</CODE></TD>
+<TD><A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A> <CODE>-&gt;</CODE> <A HREF="#CN" TITLE="CN - common noun (without determiner)">CN</A> <CODE>-&gt;</CODE> <A HREF="#Cl" TITLE="Cl - declarative clause, with all tenses">Cl</A></TD>
+<TD><div class=reveal> <I>she is an old woman</I> <div class=popup> <ul> <li>API: <CODE>mkCl she_NP (mkCN old_A woman_N)</CODE> <li>Afr: <I>sy is 'n oud vrou</I> <li>Bul: <I>тя е стара жена</I> <li>Cat: <I>ella és dona vell</I> <li>Dan: <I>hun er en gammel kvinde</I> <li>Dut: <I>ze is oude vrouw</I> <li>Eng: <I>she is an old woman</I> <li>Fin: <I>hän on vanha nainen</I> <li>Fre: <I>elle est vieille femme</I> <li>Ger: <I>sie ist eine alte Frau</I> <li>Ita: <I>lei è vecchia donna</I> <li>Nep: <I>उनी बुढी आईमाई हुन्</I> <li>Nor: <I>hun er ei gammel kvinne</I> <li>Pes: <I>او زن پیر است</I> <li>Pnb: <I>او بوڈی زنانی اے</I> <li>Pol: <I>ona jest stara kobieta</I> <li>Ron: <I>ea este femeie veche</I> <li>Rus: <I>она старая женщина</I> <li>Spa: <I>ella es vieja mujer</I> <li>Swe: <I>hon är en gammal kvinna</I> <li>Urd: <I>وہ بوڑھی عورت ہے</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>mkCl</CODE></TD>
+<TD><A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A> <CODE>-&gt;</CODE> <A HREF="#Adv" TITLE="Adv - verb-phrase-modifying adverb">Adv</A> <CODE>-&gt;</CODE> <A HREF="#Cl" TITLE="Cl - declarative clause, with all tenses">Cl</A></TD>
+<TD><div class=reveal> <I>she is here</I> <div class=popup> <ul> <li>API: <CODE>mkCl she_NP here_Adv</CODE> <li>Afr: <I>sy is hier</I> <li>Bul: <I>тя е тук</I> <li>Cat: <I>ella és aquí</I> <li>Dan: <I>hun er her</I> <li>Dut: <I>ze is hier</I> <li>Eng: <I>she is here</I> <li>Fin: <I>hän on täällä</I> <li>Fre: <I>elle est ici</I> <li>Ger: <I>sie ist hier</I> <li>Ita: <I>lei è quà</I> <li>Nep: <I>उनी यहाँ छिन्</I> <li>Nor: <I>hun er her</I> <li>Pes: <I>او اینجا است</I> <li>Pnb: <I>او ایتھے اے</I> <li>Pol: <I>ona jest tutaj</I> <li>Ron: <I>ea este aici</I> <li>Rus: <I>она здесь</I> <li>Spa: <I>ella es aquí</I> <li>Swe: <I>hon är här</I> <li>Urd: <I>وہ یہاں ہے</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>mkCl</CODE></TD>
+<TD><A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A> <CODE>-&gt;</CODE> <A HREF="#VP" TITLE="VP - verb phrase">VP</A> <CODE>-&gt;</CODE> <A HREF="#Cl" TITLE="Cl - declarative clause, with all tenses">Cl</A></TD>
+<TD><div class=reveal> <I>she always sleeps</I> <div class=popup> <ul> <li>API: <CODE>mkCl she_NP (mkVP always_AdV (mkVP sleep_V))</CODE> <li>Afr: <I>sy slaap altyd altyd</I> <li>Bul: <I>тя винаги спи</I> <li>Cat: <I>ella dorm sempre</I> <li>Dan: <I>hun sover altid</I> <li>Dut: <I>ze slaapt altijd</I> <li>Eng: <I>she always sleeps</I> <li>Fin: <I>hän nukkuu aina</I> <li>Fre: <I>elle dort toujours</I> <li>Ger: <I>sie schläft immer</I> <li>Ita: <I>lei dorme sempre</I> <li>Nep: <I>उनी सधैँ सुत्छिन्</I> <li>Nor: <I>hun sover altid</I> <li>Pes: <I>او همیشه می خوابد</I> <li>Pnb: <I>او ہمیشہ سوندی اے</I> <li>Pol: <I>ona zawsze śpi</I> <li>Ron: <I>ea doarme mereu</I> <li>Rus: <I>она спдит всегда</I> <li>Spa: <I>ella duerme siempre</I> <li>Swe: <I>hon sover alltid</I> <li>Urd: <I>وہ ہمیشہ سوتی ہے</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>mkCl</CODE></TD>
+<TD><A HREF="#N" TITLE="N - common noun">N</A> <CODE>-&gt;</CODE> <A HREF="#Cl" TITLE="Cl - declarative clause, with all tenses">Cl</A></TD>
+<TD><div class=reveal> <I>there is a house</I> <div class=popup> <ul> <li>API: <CODE>mkCl house_N</CODE> <li>Afr: <I>daar is 'n huis</I> <li>Bul: <I>има къща</I> <li>Cat: <I>hi ha una casa</I> <li>Dan: <I>det findes et hus</I> <li>Dut: <I>er is een huis</I> <li>Eng: <I>there is a house</I> <li>Fin: <I>on olemassa talo</I> <li>Fre: <I>il y a une maison</I> <li>Ger: <I>es gibt ein Haus</I> <li>Ita: <I>c' è una casa</I> <li>Nep: <I>त्यहाँ घर छ</I> <li>Nor: <I>det finnes et hus</I> <li>Pes: <I>یک خانه است</I> <li>Pnb: <I>اوتھے گھر اے</I> <li>Pol: <I>jest dom</I> <li>Ron: <I>există o casă</I> <li>Rus: <I>существует дом</I> <li>Spa: <I>hay una casa</I> <li>Swe: <I>det finns ett hus</I> <li>Urd: <I>وہاں ایك گھر ہے</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>mkCl</CODE></TD>
+<TD><A HREF="#CN" TITLE="CN - common noun (without determiner)">CN</A> <CODE>-&gt;</CODE> <A HREF="#Cl" TITLE="Cl - declarative clause, with all tenses">Cl</A></TD>
+<TD><I>there is an old house</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkCl</CODE></TD>
+<TD><A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A> <CODE>-&gt;</CODE> <A HREF="#Cl" TITLE="Cl - declarative clause, with all tenses">Cl</A></TD>
+<TD><div class=reveal> <I>there are many houses</I> <div class=popup> <ul> <li>API: <CODE>mkCl (mkNP many_Det house_N)</CODE> <li>Afr: <I>daar is baie huise</I> <li>Bul: <I>има много къщи</I> <li>Cat: <I>hi ha moltes cases</I> <li>Dan: <I>det findes mange huse</I> <li>Dut: <I>er zijn veel huizen</I> <li>Eng: <I>there are many houses</I> <li>Fin: <I>on olemassa moni talo</I> <li>Fre: <I>il y a plusieurs maisons</I> <li>Ger: <I>es gibt viele Häuser</I> <li>Ita: <I>ci sono molte case</I> <li>Nep: <I>त्यहाँ थुप्रै घरहरु छन्</I> <li>Nor: <I>det finnes mange hus</I> <li>Pes: <I>تعداد زیادی خانه هستند</I> <li>Pnb: <I>اوتھے بہت زیادہ گھر نے</I> <li>Pol: <I>jest wiele domów</I> <li>Ron: <I>există multe case</I> <li>Rus: <I>существует много дома</I> <li>Spa: <I>hay muchas casas</I> <li>Swe: <I>det finns många hus</I> <li>Urd: <I>وہاں بہت زیادہ گھر ہیں</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>mkCl</CODE></TD>
+<TD><A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A> <CODE>-&gt;</CODE> <A HREF="#RS" TITLE="RS - relative">RS</A> <CODE>-&gt;</CODE> <A HREF="#Cl" TITLE="Cl - declarative clause, with all tenses">Cl</A></TD>
+<TD><div class=reveal> <I>it is she who sleeps</I> <div class=popup> <ul> <li>API: <CODE>mkCl she_NP (mkRS (mkRCl which_RP (mkVP sleep_V)))</CODE> <li>Afr: <I>dit is sy wat slaap</I> <li>Bul: <I>тя е тaзи която спи</I> <li>Cat: <I>és ella que dorm</I> <li>Dan: <I>det er hun som sover</I> <li>Dut: <I>'t is ze die slaapt</I> <li>Eng: <I>it is she who sleeps</I> <li>Fin: <I>se on hän joka nukkuu</I> <li>Fre: <I>c' est elle qui dort</I> <li>Ger: <I>es ist sie die schläft</I> <li>Ita: <I>è lei che dorme</I> <li>Nep: <I>उनी हुन् जो सुत्छिन्</I> <li>Nor: <I>det er hun som sover</I> <li>Pes: <I>او است که می خوابد</I> <li>Pnb: <I>او اے جیڑی سوندی اے</I> <li>Pol: <I>to ona , która śpi</I> <li>Ron: <I>este ea care doarme</I> <li>Rus: <I>это она , которая спдит</I> <li>Spa: <I>es ella que duerme</I> <li>Swe: <I>det är hon som sover</I> <li>Urd: <I>وہ ہے جو سوتی ہے</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>mkCl</CODE></TD>
+<TD><A HREF="#Adv" TITLE="Adv - verb-phrase-modifying adverb">Adv</A> <CODE>-&gt;</CODE> <A HREF="#S" TITLE="S - declarative sentence">S</A> <CODE>-&gt;</CODE> <A HREF="#Cl" TITLE="Cl - declarative clause, with all tenses">Cl</A></TD>
+<TD><div class=reveal> <I>it is here that she sleeps</I> <div class=popup> <ul> <li>API: <CODE>mkCl here_Adv (mkS (mkCl she_NP sleep_V))</CODE> <li>Afr: <I>dit is hier dat sy slaap</I> <li>Bul: <I>тук тя спи</I> <li>Cat: <I>és aquí que ella dorm</I> <li>Dan: <I>det er her hun sover</I> <li>Dut: <I>'t is hier dat ze slaapt</I> <li>Eng: <I>it is here that she sleeps</I> <li>Fin: <I>se on täällä kun hän nukkuu</I> <li>Fre: <I>c' est ici qu' elle dort</I> <li>Ger: <I>es ist hier daß sie schläft</I> <li>Ita: <I>è quà che lei dorme</I> <li>Nep: <I>यहाँ उनी सुत्छिन्</I> <li>Nor: <I>det er her hun sover</I> <li>Pes: <I>اینجا او می خوابد</I> <li>Pnb: <I>ایتھے او سوندی اے</I> <li>Pol: <I>tutaj ona śpi</I> <li>Ron: <I>este aici cã ea doarme</I> <li>Rus: <I>это здесь , она спдит</I> <li>Spa: <I>es aquí que ella duerme</I> <li>Swe: <I>det är här hon sover</I> <li>Urd: <I>یہاں وہ سوتی ہے</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>mkCl</CODE></TD>
+<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#Cl" TITLE="Cl - declarative clause, with all tenses">Cl</A></TD>
+<TD><div class=reveal> <I>it rains</I> <div class=popup> <ul> <li>API: <CODE>mkCl rain_V0</CODE> <li>Afr: <I>dit reën</I> <li>Bul: <I>вали</I> <li>Cat: <I>plou</I> <li>Dan: <I>det regner</I> <li>Dut: <I>'t regeent</I> <li>Eng: <I>it rains</I> <li>Fin: <I>sataa</I> <li>Fre: <I>il pleut</I> <li>Ger: <I>es regnet</I> <li>Ita: <I>piove</I> <li>Nep: <I>बर्षा हुन्छ</I> <li>Nor: <I>det regner</I> <li>Pes: <I>باران می آید</I> <li>Pnb: <I>بارش ہوندا اے</I> <li>Pol: <I>pada</I> <li>Ron: <I>plouă</I> <li>Rus: <I>идет дождь</I> <li>Spa: <I>llueve</I> <li>Swe: <I>det regnar</I> <li>Urd: <I>بارش ہوتا ہے</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>mkCl</CODE></TD>
+<TD><A HREF="#VP" TITLE="VP - verb phrase">VP</A> <CODE>-&gt;</CODE> <A HREF="#Cl" TITLE="Cl - declarative clause, with all tenses">Cl</A></TD>
+<TD><div class=reveal> <I>it is raining</I> <div class=popup> <ul> <li>API: <CODE>mkCl (progressiveVP (mkVP rain_V0))</CODE> <li>Afr: <I>dit is aan die reën</I> <li>Bul: <I>вали</I> <li>Cat: <I>està plovent</I> <li>Dan: <I>det er ved å regne</I> <li>Dut: <I>'t is aan het regenen</I> <li>Eng: <I>it is raining</I> <li>Fin: <I>on satamalla</I> <li>Fre: <I>il est en train de pleuvoir</I> <li>Ger: <I>es regnet eben</I> <li>Ita: <I>sta piovendo</I> <li>Nep: <I>बर्षा भदै छ</I> <li>Nor: <I>det er ved å regne</I> <li>Pes: <I>دارد باران می آید</I> <li>Pnb: <I>بارش ہوندا پیا اے</I> <li>Pol: <I>pada</I> <li>Ron: <I>plouă</I> <li>Rus: <I>идет дождь</I> <li>Spa: <I>está lloviendo</I> <li>Swe: <I>det håller på att regna</I> <li>Urd: <I>بارش ہو رہا ہے</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>mkCl</CODE></TD>
+<TD><A HREF="#SC" TITLE="SC - embedded sentence or question">SC</A> <CODE>-&gt;</CODE> <A HREF="#VP" TITLE="VP - verb phrase">VP</A> <CODE>-&gt;</CODE> <A HREF="#Cl" TITLE="Cl - declarative clause, with all tenses">Cl</A></TD>
+<TD><div class=reveal> <I>that she sleeps is good</I> <div class=popup> <ul> <li>API: <CODE>mkCl (mkSC (mkS (mkCl she_NP sleep_V))) (mkVP good_A)</CODE> <li>Afr: <I>dat sy slaap is goed</I> <li>Bul: <I>, че тя спи е добър</I> <li>Cat: <I>que ella dorm és bo</I> <li>Dan: <I>at hun sover er godt</I> <li>Dut: <I>dat ze slaapt is goed</I> <li>Eng: <I>that she sleeps is good</I> <li>Fin: <I>että hän nukkuu on hyvä</I> <li>Fre: <I>qu' elle dort est bon</I> <li>Ger: <I>daß sie schläft ist gut</I> <li>Ita: <I>che lei dorme è buono</I> <li>Nep: <I>की उनी सुत्छिन् राम्रो छ</I> <li>Nor: <I>at hun sover er godt</I> <li>Pes: <I>این که او می خوابد خوب است</I> <li>Pnb: <I>كہ او سوندی اے اچھا اے</I> <li>Pol: <I>, że ona śpi jest dobre</I> <li>Ron: <I>cã ea doarme este bun</I> <li>Rus: <I>что она спдит хорошее</I> <li>Spa: <I>que ella duerme es bueno</I> <li>Swe: <I>att hon sover är gott</I> <li>Urd: <I>كہ وہ سوتی ہے اچھا ہے</I> </ul> </div> </div></TD>
+</TR>
+</TABLE>
+
+<A NAME="ClSlash"></A>
+<H2>ClSlash</H2>
+
+<TABLE BORDER="1" CELLPADDING="4">
+<TR>
+<TH>Function</TH>
+<TH>Type</TH>
+<TH COLSPAN="2">Example</TH>
+</TR>
+<TR>
+<TD><CODE>mkClSlash</CODE></TD>
+<TD><A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A> <CODE>-&gt;</CODE> <A HREF="#VPSlash" TITLE="VPSlash - verb phrase missing complement">VPSlash</A> <CODE>-&gt;</CODE> <A HREF="#ClSlash">ClSlash</A></TD>
+<TD><div class=reveal> <I>whom does she see</I> <div class=popup> <ul> <li>API: <CODE>mkQCl who_IP (mkClSlash she_NP (mkVPSlash see_V2))</CODE> <li>Afr: <I>wie sien sy</I> <li>Bul: <I>кого вижда тя</I> <li>Cat: <I>qui veu ella</I> <li>Dan: <I>hvem ser hun</I> <li>Dut: <I>wie zit ze</I> <li>Eng: <I>whom does she see</I> <li>Fin: <I>kenet hän näkee</I> <li>Fre: <I>qui voit elle</I> <li>Ger: <I>wen sieht sie</I> <li>Ita: <I>chi vede lei</I> <li>Nep: <I>कासलाई उनी हेर्छिन्</I> <li>Nor: <I>hvem ser hun</I> <li>Pes: <I>چه کسی را او می بیند</I> <li>Pnb: <I>كون او ویكھدی اے</I> <li>Pol: <I>kogo widzi ona</I> <li>Ron: <I>pe cine vede ea</I> <li>Rus: <I>кого она видит</I> <li>Spa: <I>quién ve ella</I> <li>Swe: <I>vem ser hon</I> <li>Urd: <I>كون وہ دیكھتی ہے</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>mkClSlash</CODE></TD>
+<TD><A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A> <CODE>-&gt;</CODE> <A HREF="#V2" TITLE="V2 - two-place verb">V2</A> <CODE>-&gt;</CODE> <A HREF="#ClSlash">ClSlash</A></TD>
+<TD><div class=reveal> <I>whom does she see</I> <div class=popup> <ul> <li>API: <CODE>mkQCl who_IP (mkClSlash she_NP see_V2)</CODE> <li>Afr: <I>wie sien sy</I> <li>Bul: <I>кого вижда тя</I> <li>Cat: <I>qui veu ella</I> <li>Dan: <I>hvem ser hun</I> <li>Dut: <I>wie zit ze</I> <li>Eng: <I>whom does she see</I> <li>Fin: <I>kenet hän näkee</I> <li>Fre: <I>qui voit elle</I> <li>Ger: <I>wen sieht sie</I> <li>Ita: <I>chi vede lei</I> <li>Nep: <I>कासलाई उनी हेर्छिन्</I> <li>Nor: <I>hvem ser hun</I> <li>Pes: <I>چه کسی را او می بیند</I> <li>Pnb: <I>كون او ویكھدی اے</I> <li>Pol: <I>kogo widzi ona</I> <li>Ron: <I>pe cine vede ea</I> <li>Rus: <I>кого она видит</I> <li>Spa: <I>quién ve ella</I> <li>Swe: <I>vem ser hon</I> <li>Urd: <I>كون وہ دیكھتی ہے</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>mkClSlash</CODE></TD>
+<TD><A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A> <CODE>-&gt;</CODE> <A HREF="#VV" TITLE="VV - verb-phrase-complement verb">VV</A> <CODE>-&gt;</CODE> <A HREF="#V2" TITLE="V2 - two-place verb">V2</A> <CODE>-&gt;</CODE> <A HREF="#ClSlash">ClSlash</A></TD>
+<TD><div class=reveal> <I>whom does she want to see</I> <div class=popup> <ul> <li>API: <CODE>mkQCl who_IP (mkClSlash she_NP want_VV see_V2)</CODE> <li>Afr: <I>wie wil sy sien</I> <li>Bul: <I>кого иска да види тя</I> <li>Cat: <I>qui vol ella veure</I> <li>Dan: <I>hvem vil hun se</I> <li>Dut: <I>wie wil ze zien</I> <li>Eng: <I>whom does she want to see</I> <li>Fin: <I>kenet hän tahtoo näkemään</I> <li>Fre: <I>qui veut elle voir</I> <li>Ger: <I>wen will sie sehen</I> <li>Ita: <I>chi vuole lei vedere</I> <li>Nep: <I>कासलाई उनी हेर्न चाहन्छिन्</I> <li>Nor: <I>hvem vil hun se</I> <li>Pes: <I>چه کسی را او می خواهد ببیند</I> <li>Pnb: <I>كون او ویكھنا چاندی اے</I> <li>Pol: <I>kogo ona chce widzieć</I> <li>Ron: <I>pe cine vrea ea sã vadă</I> <li>Rus: <I>кого она хочет видеть</I> <li>Spa: <I>quién quiere ella ver</I> <li>Swe: <I>vem vill hon se</I> <li>Urd: <I>كون وہ دیكھنا چاہتی ہے</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>mkClSlash</CODE></TD>
+<TD><A HREF="#Cl" TITLE="Cl - declarative clause, with all tenses">Cl</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#ClSlash">ClSlash</A></TD>
+<TD><div class=reveal> <I>with whom does she sleep</I> <div class=popup> <ul> <li>API: <CODE>mkQCl who_IP (mkClSlash (mkCl she_NP sleep_V) with_Prep)</CODE> <li>Afr: <I>met wie slaap sy</I> <li>Bul: <I>с кого спи тя</I> <li>Cat: <I>amb qui dorm ella</I> <li>Dan: <I>med hvem sover hun</I> <li>Dut: <I>met wie slaapt ze</I> <li>Eng: <I>with whom does she sleep</I> <li>Fin: <I>kenen kanssa hän nukkuu</I> <li>Fre: <I>avec qui dort elle</I> <li>Ger: <I>mit wem schläft sie</I> <li>Ita: <I>con chi dorme lei</I> <li>Nep: <I>कासलाई उनी सुत्छिन्</I> <li>Nor: <I>med hvem sover hun</I> <li>Pes: <I>با چه کسی او می خوابد</I> <li>Pnb: <I>كون او سوندی اے</I> <li>Pol: <I>z kim ona śpi</I> <li>Ron: <I>cu cine doarme ea</I> <li>Rus: <I>с кем она спдит</I> <li>Spa: <I>con quién duerme ella</I> <li>Swe: <I>med vem sover hon</I> <li>Urd: <I>كون وہ سوتی ہے</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>mkClSlash</CODE></TD>
+<TD><A HREF="#ClSlash">ClSlash</A> <CODE>-&gt;</CODE> <A HREF="#Adv" TITLE="Adv - verb-phrase-modifying adverb">Adv</A> <CODE>-&gt;</CODE> <A HREF="#ClSlash">ClSlash</A></TD>
+<TD><div class=reveal> <I>whom does she see today</I> <div class=popup> <ul> <li>API: <CODE>mkQCl who_IP (mkClSlash (mkClSlash she_NP see_V2) today_Adv)</CODE> <li>Afr: <I>wie sien sy vandag</I> <li>Bul: <I>кого вижда тя днес</I> <li>Cat: <I>qui veu ella avui</I> <li>Dan: <I>hvem ser hun idag</I> <li>Dut: <I>wie zit ze vandaag</I> <li>Eng: <I>whom does she see today</I> <li>Fin: <I>kenet hän näkee tänään</I> <li>Fre: <I>qui voit elle aujourd'hui</I> <li>Ger: <I>wen sieht sie heute</I> <li>Ita: <I>chi vede lei oggi</I> <li>Nep: <I>कासलाई आज उनी हेर्छिन्</I> <li>Nor: <I>hvem ser hun idag</I> <li>Pes: <I>چه کسی را امروز او می بیند</I> <li>Pnb: <I>كون اج او ویكھدی اے</I> <li>Pol: <I>kogo dziś widzi ona</I> <li>Ron: <I>pe cine vede ea astăzi</I> <li>Rus: <I>*</I> <li>Spa: <I>quién ve ella hoy</I> <li>Swe: <I>vem ser hon idag</I> <li>Urd: <I>كون آج وہ دیكھتی ہے</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>mkClSlash</CODE></TD>
+<TD><A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A> <CODE>-&gt;</CODE> <A HREF="#VS" TITLE="VS - sentence-complement verb">VS</A> <CODE>-&gt;</CODE> <A HREF="#SSlash">SSlash</A> <CODE>-&gt;</CODE> <A HREF="#ClSlash">ClSlash</A></TD>
+<TD><div class=reveal> <I>whom does she know that we hadn't seen</I> <div class=popup> <ul> <li>API: <CODE>mkQCl who_IP (mkClSlash she_NP know_VS (mkSSlash (mkTemp pastTense anteriorAnt) negativePol (mkClSlash we_NP (mkVPSlash see_V2))))</CODE> <li>Afr: <I>wie weet sy dat ons nie nie gesien had</I> <li>Bul: <I>кого знае че ние не бяхме видeли тя</I> <li>Cat: <I>qui sap ella que nosaltres no havíem vist</I> <li>Dan: <I>hvem ved hun at vi ikke havde set</I> <li>Dut: <I>wie weet ze dat we niet gezien hadden</I> <li>Eng: <I>whom does she know that we hadn't seen</I> <li>Fin: <I>Prelude.(!!): index too large</I> <li>Fre: <I>qui sait elle que nous n' avions pas vu</I> <li>Ger: <I>wen weiß sie daß wir nicht gesehen hatten</I> <li>Ita: <I>chi sa lei che noi non avevamo visto</I> <li>Nep: <I>कासलाई उनी थाहा पाउँछिन्की हामीहरु हेरेकाथिएनैँ</I> <li>Nor: <I>hvem vet hun at vi ikke hadde sett</I> <li>Pes: <I>چه کسی را او می داند که ما ندیده بودیم</I> <li>Pnb: <I>كون او جاندی اے كہ اسی نیں ویكھ گیے ساں</I> <li>Pol: <I>kogo ona wie , że nie zobaczyliśmy my</I> <li>Ron: <I>pe cine ştie ea cã noi nu văzuserăm</I> <li>Rus: <I>*</I> <li>Spa: <I>quién sabe ella que nosotros no habíamos visto</I> <li>Swe: <I>vem vet hon att vi inte hade sett</I> <li>Urd: <I>كون وہ جانتی ہے كہ ہم نہیں دیكھ چكے تھے</I> </ul> </div> </div></TD>
+</TR>
+</TABLE>
+
+<A NAME="Comp"></A>
+<H2>Comp - complement of copula, such as AP</H2>
+
+<TABLE BORDER="1" CELLPADDING="4">
+<TR>
+<TH>Function</TH>
+<TH>Type</TH>
+<TH COLSPAN="2">Example</TH>
+</TR>
+<TR>
+<TD><CODE>mkComp</CODE></TD>
+<TD><A HREF="#AP" TITLE="AP - adjectival phrase">AP</A> <CODE>-&gt;</CODE> <A HREF="#Comp" TITLE="Comp - complement of copula, such as AP">Comp</A></TD>
+<TD><div class=reveal> <I>old</I> <div class=popup> <ul> <li>API: <CODE>mkComp (mkAP old_A)</CODE> <li>Afr: <I>oud</I> <li>Bul: <I>стар</I> <li>Cat: <I>vell</I> <li>Dan: <I>gammel</I> <li>Dut: <I>oud</I> <li>Eng: <I>old</I> <li>Fin: <I>vanha</I> <li>Fre: <I>vieux</I> <li>Ger: <I>alt</I> <li>Ita: <I>vecchio</I> <li>Nep: <I>बुढो</I> <li>Nor: <I>gammel</I> <li>Pes: <I>پیر</I> <li>Pnb: <I>بوڈا</I> <li>Pol: <I>stary</I> <li>Ron: <I>vechi</I> <li>Rus: <I>старый</I> <li>Spa: <I>viejo</I> <li>Swe: <I>gammal</I> <li>Urd: <I>بوڑھا</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>mkComp</CODE></TD>
+<TD><A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A> <CODE>-&gt;</CODE> <A HREF="#Comp" TITLE="Comp - complement of copula, such as AP">Comp</A></TD>
+<TD><div class=reveal> <I>this man</I> <div class=popup> <ul> <li>API: <CODE>mkComp (mkNP this_Det man_N)</CODE> <li>Afr: <I>hierdie man</I> <li>Bul: <I>този мъж</I> <li>Cat: <I>aquest home</I> <li>Dan: <I>denne mand</I> <li>Dut: <I>deze man</I> <li>Eng: <I>this man</I> <li>Fin: <I>tämä mies</I> <li>Fre: <I>cet homme</I> <li>Ger: <I>dieser Mann</I> <li>Ita: <I>questo uomo</I> <li>Nep: <I>यो मान्छे</I> <li>Nor: <I>denne mannen</I> <li>Pes: <I>این مرد</I> <li>Pnb: <I>اے بندہ</I> <li>Pol: <I>tym mężczyzną</I> <li>Ron: <I>acest om</I> <li>Rus: <I>этот человек</I> <li>Spa: <I>este hombre</I> <li>Swe: <I>den här mannen</I> <li>Urd: <I>یہ آدمی</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>mkComp</CODE></TD>
+<TD><A HREF="#Adv" TITLE="Adv - verb-phrase-modifying adverb">Adv</A> <CODE>-&gt;</CODE> <A HREF="#Comp" TITLE="Comp - complement of copula, such as AP">Comp</A></TD>
+<TD><div class=reveal> <I>here</I> <div class=popup> <ul> <li>API: <CODE>mkComp here_Adv</CODE> <li>Afr: <I>hier</I> <li>Bul: <I>тук</I> <li>Cat: <I>aquí</I> <li>Dan: <I>her</I> <li>Dut: <I>hier</I> <li>Eng: <I>here</I> <li>Fin: <I>täällä</I> <li>Fre: <I>ici</I> <li>Ger: <I>hier</I> <li>Ita: <I>quà</I> <li>Nep: <I>यहाँ</I> <li>Nor: <I>her</I> <li>Pes: <I>اینجا</I> <li>Pnb: <I>ایتھے</I> <li>Pol: <I>tutaj</I> <li>Ron: <I>aici</I> <li>Rus: <I>здесь</I> <li>Spa: <I>aquí</I> <li>Swe: <I>här</I> <li>Urd: <I>یہاں</I> </ul> </div> </div></TD>
+</TR>
+</TABLE>
+
+<A NAME="Conj"></A>
+<H2>Conj - conjunction</H2>
+
+<TABLE BORDER="1" CELLPADDING="4">
+<TR>
+<TH>Function</TH>
+<TH>Type</TH>
+<TH COLSPAN="2">Example</TH>
+</TR>
+<TR>
+<TD><CODE>and_Conj</CODE></TD>
+<TD><A HREF="#Conj" TITLE="Conj - conjunction">Conj</A></TD>
+<TD><div class=reveal> <I>here and now</I> <div class=popup> <ul> <li>API: <CODE>mkAdv and_Conj here_Adv now_Adv</CODE> <li>Afr: <I>hier en nou</I> <li>Bul: <I>тук и сега</I> <li>Cat: <I>aquí i ara</I> <li>Dan: <I>her og nu</I> <li>Dut: <I>hier en nu</I> <li>Eng: <I>here and now</I> <li>Fin: <I>täällä ja nyt</I> <li>Fre: <I>ici et maintenant</I> <li>Ger: <I>hier und jetzt</I> <li>Ita: <I>quà e adesso</I> <li>Nep: <I>यहाँ र अहीले</I> <li>Nor: <I>her og nå</I> <li>Pes: <I>اینجا و حالا</I> <li>Pnb: <I>ایتھے تے ہون</I> <li>Pol: <I>tutaj i teraz</I> <li>Ron: <I>aici şi acum</I> <li>Rus: <I>здесь и сейчас</I> <li>Spa: <I>aquí y ahora</I> <li>Swe: <I>här och nu</I> <li>Urd: <I>یہاں اور اب</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>both7and_DConj</CODE></TD>
+<TD><A HREF="#Conj" TITLE="Conj - conjunction">Conj</A></TD>
+<TD><div class=reveal> <I>both here and there</I> <div class=popup> <ul> <li>API: <CODE>mkAdv both7and_DConj here_Adv there_Adv</CODE> <li>Afr: <I>sowel hier as daar</I> <li>Bul: <I>и тук и там</I> <li>Cat: <I>i aquí i allà</I> <li>Dan: <I>både her og der</I> <li>Dut: <I>zowel hier als daar</I> <li>Eng: <I>both here and there</I> <li>Fin: <I>sekä täällä että siellä</I> <li>Fre: <I>et ici et là</I> <li>Ger: <I>sowohl hier als auch da</I> <li>Ita: <I>e quà e là</I> <li>Nep: <I>दुबै यहाँ र त्यहाँ</I> <li>Nor: <I>både her og der</I> <li>Pes: <I>هم اینجا و هم آنجا</I> <li>Pnb: <I>دوویں ایتھے تے اوتھے</I> <li>Pol: <I>zarówno tutaj jak i tam</I> <li>Ron: <I>şi aici şi acolo</I> <li>Rus: <I>как здесь , так и там</I> <li>Spa: <I>y aquí y allí</I> <li>Swe: <I>både här och där</I> <li>Urd: <I>دونوں یہاں اور وہاں</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>either7or_DConj</CODE></TD>
+<TD><A HREF="#Conj" TITLE="Conj - conjunction">Conj</A></TD>
+<TD><div class=reveal> <I>either here or there</I> <div class=popup> <ul> <li>API: <CODE>mkAdv either7or_DConj here_Adv there_Adv</CODE> <li>Afr: <I>Ã²f hier Ã²f daar</I> <li>Bul: <I>или тук или там</I> <li>Cat: <I>o aquí o allà</I> <li>Dan: <I>enten her eller der</I> <li>Dut: <I>ofwel hier of daar</I> <li>Eng: <I>either here or there</I> <li>Fin: <I>joko täällä tai siellä</I> <li>Fre: <I>ou ici ou là</I> <li>Ger: <I>entweder hier oder da</I> <li>Ita: <I>o quà o là</I> <li>Nep: <I>की यहाँ अथवा त्यहाँ</I> <li>Nor: <I>enten her eller der</I> <li>Pes: <I>یا اینجا یا آنجا</I> <li>Pnb: <I>كوی اك ایتھے یا اوتھے</I> <li>Pol: <I>albo tutaj albo tam</I> <li>Ron: <I>sau aici sau acolo</I> <li>Rus: <I>либо здесь , либо там</I> <li>Spa: <I>o aquí o allí</I> <li>Swe: <I>antingen här eller där</I> <li>Urd: <I>كوی ایك یہاں یا وہاں</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>if_then_Conj</CODE></TD>
+<TD><A HREF="#Conj" TITLE="Conj - conjunction">Conj</A></TD>
+<TD><div class=reveal> <I>if here then there</I> <div class=popup> <ul> <li>API: <CODE>mkAdv if_then_Conj here_Adv there_Adv</CODE> <li>Afr: <I>as hier dan daar</I> <li>Bul: <I>*</I> <li>Cat: <I>si aquí llavors allà</I> <li>Dan: <I>*</I> <li>Dut: <I>als hier dan daar</I> <li>Eng: <I>if here then there</I> <li>Fin: <I>jos täällä niin siellä</I> <li>Fre: <I>si ici alors là</I> <li>Ger: <I>wenn hier dann da</I> <li>Ita: <I>si quà allora là</I> <li>Nep: <I>यदि यहाँ भने त्यहाँ</I> <li>Nor: <I>*</I> <li>Pes: <I>اگر اینجا آنگاه آنجا</I> <li>Pnb: <I>اگر ایتھے تے اوتھے</I> <li>Pol: <I>jeżeli tutaj , to tam</I> <li>Ron: <I>dacă aici atunci acolo</I> <li>Rus: <I>*</I> <li>Spa: <I>*</I> <li>Swe: <I>om här så där</I> <li>Urd: <I>اگر یہاں تو وہاں</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>or_Conj</CODE></TD>
+<TD><A HREF="#Conj" TITLE="Conj - conjunction">Conj</A></TD>
+<TD><div class=reveal> <I>here or there</I> <div class=popup> <ul> <li>API: <CODE>mkAdv or_Conj here_Adv there_Adv</CODE> <li>Afr: <I>hier of daar</I> <li>Bul: <I>тук или там</I> <li>Cat: <I>aquí o allà</I> <li>Dan: <I>her eller der</I> <li>Dut: <I>hier of daar</I> <li>Eng: <I>here or there</I> <li>Fin: <I>täällä tai siellä</I> <li>Fre: <I>ici ou là</I> <li>Ger: <I>hier oder da</I> <li>Ita: <I>quà o là</I> <li>Nep: <I>यहाँ अथवा त्यहाँ</I> <li>Nor: <I>her eller der</I> <li>Pes: <I>اینجا یا آنجا</I> <li>Pnb: <I>ایتھے یا اوتھے</I> <li>Pol: <I>tutaj lub tam</I> <li>Ron: <I>aici sau acolo</I> <li>Rus: <I>здесь или там</I> <li>Spa: <I>aquí o allí</I> <li>Swe: <I>här eller där</I> <li>Urd: <I>یہاں یا وہاں</I> </ul> </div> </div></TD>
+</TR>
+</TABLE>
+
+<A NAME="Det"></A>
+<H2>Det - determiner phrase</H2>
+
+<TABLE BORDER="1" CELLPADDING="4">
+<TR>
+<TH>Function</TH>
+<TH>Type</TH>
+<TH COLSPAN="2">Example</TH>
+</TR>
+<TR>
+<TD><CODE>aPl_Det</CODE></TD>
+<TD><A HREF="#Det" TITLE="Det - determiner phrase">Det</A></TD>
+<TD><div class=reveal> <I>women</I> <div class=popup> <ul> <li>API: <CODE>mkNP aPl_Det woman_N</CODE> <li>Afr: <I>vroue</I> <li>Bul: <I>жени</I> <li>Cat: <I>// <li>Dan: //kvinder// <li>Dut: //vrouwen// <li>Eng: //women// <li>Fin: //naisia// <li>Fre: //</I> <li>Ger: <I>Frauen</I> <li>Ita: <I>// <li>Nep: //आईमाईहरु// <li>Nor: //kvinner// <li>Pes: //یک زن// <li>Pnb: //زنانیاں// <li>Pol: //kobiet// <li>Ron: //</I> <li>Rus: <I>женщины</I> <li>Spa: <I>''</I> <li>Swe: <I>kvinnor</I> <li>Urd: <I>عورتیں</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>aSg_Det</CODE></TD>
+<TD><A HREF="#Det" TITLE="Det - determiner phrase">Det</A></TD>
+<TD><div class=reveal> <I>a woman</I> <div class=popup> <ul> <li>API: <CODE>mkNP aSg_Det woman_N</CODE> <li>Afr: <I>'n vrou</I> <li>Bul: <I>жена</I> <li>Cat: <I>// <li>Dan: //en kvinde// <li>Dut: //een vrouw// <li>Eng: //a woman// <li>Fin: //nainen// <li>Fre: //</I> <li>Ger: <I>eine Frau</I> <li>Ita: <I>// <li>Nep: //आईमाई// <li>Nor: //ei kvinne// <li>Pes: //یک زن// <li>Pnb: //{s : ResPnb.NPCase => Str// <li>Pol: //kobiety// <li>Ron: //</I> <li>Rus: <I>женщина</I> <li>Spa: <I>''</I> <li>Swe: <I>en kvinna</I> <li>Urd: <I>ایك عورت</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>a_Det</CODE></TD>
+<TD><A HREF="#Det" TITLE="Det - determiner phrase">Det</A></TD>
+<TD><div class=reveal> <I>a house</I> <div class=popup> <ul> <li>API: <CODE>mkNP a_Det house_N</CODE> <li>Afr: <I>'n huis</I> <li>Bul: <I>къща</I> <li>Cat: <I>// <li>Dan: //et hus// <li>Dut: //een huis// <li>Eng: //a house// <li>Fin: //talo// <li>Fre: //</I> <li>Ger: <I>ein Haus</I> <li>Ita: <I>// <li>Nep: //घर// <li>Nor: //et hus// <li>Pes: //یک خانه// <li>Pnb: //{s : ResPnb.NPCase => Str// <li>Pol: //domu// <li>Ron: //</I> <li>Rus: <I>дом</I> <li>Spa: <I>''</I> <li>Swe: <I>ett hus</I> <li>Urd: <I>ایك گھر</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>every_Det</CODE></TD>
+<TD><A HREF="#Det" TITLE="Det - determiner phrase">Det</A></TD>
+<TD><div class=reveal> <I>every</I> <div class=popup> <ul> <li>API: <CODE>every_Det</CODE> <li>Afr: <I>elk</I> <li>Bul: <I>всеки</I> <li>Cat: <I>cada</I> <li>Dan: <I>hver</I> <li>Dut: <I>elke</I> <li>Eng: <I>every</I> <li>Fin: <I>Prelude.True</I> <li>Fre: <I>chaque</I> <li>Ger: <I>jeder</I> <li>Ita: <I>ogni</I> <li>Nep: <I>सबै</I> <li>Nor: <I>hver</I> <li>Pes: <I>هر</I> <li>Pnb: <I>ہر</I> <li>Pol: <I>każdy</I> <li>Ron: <I>orice</I> <li>Rus: <I>каждый</I> <li>Spa: <I>cada</I> <li>Swe: <I>varje</I> <li>Urd: <I>ہر</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>few_Det</CODE></TD>
+<TD><A HREF="#Det" TITLE="Det - determiner phrase">Det</A></TD>
+<TD><div class=reveal> <I>few</I> <div class=popup> <ul> <li>API: <CODE>few_Det</CODE> <li>Afr: <I>min</I> <li>Bul: <I>няколко</I> <li>Cat: <I>pocs</I> <li>Dan: <I>få</I> <li>Dut: <I>weinig</I> <li>Eng: <I>few</I> <li>Fin: <I>Prelude.True</I> <li>Fre: <I>peu pre {"de"; "d'" / strs {"a"; "à"; "â"; "e"; "é"; "è"; "ê¨";</I> <li>Ger: <I>wenige</I> <li>Ita: <I>pochi</I> <li>Nep: <I>थोरै</I> <li>Nor: <I>få</I> <li>Pes: <I>تعداد کمی</I> <li>Pnb: <I>كچھ</I> <li>Pol: <I>parę</I> <li>Ron: <I>câţiva</I> <li>Rus: <I>немного</I> <li>Spa: <I>pocos</I> <li>Swe: <I>få</I> <li>Urd: <I>چند</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>many_Det</CODE></TD>
+<TD><A HREF="#Det" TITLE="Det - determiner phrase">Det</A></TD>
+<TD><div class=reveal> <I>many houses</I> <div class=popup> <ul> <li>API: <CODE>mkNP many_Det house_N</CODE> <li>Afr: <I>baie huise</I> <li>Bul: <I>много къщи</I> <li>Cat: <I>// <li>Dan: //mange huse// <li>Dut: //veel huizen// <li>Eng: //many houses// <li>Fin: //moni talo// <li>Fre: //</I> <li>Ger: <I>viele Häuser</I> <li>Ita: <I>// <li>Nep: //थुप्रै घरहरु// <li>Nor: //mange hus// <li>Pes: //تعداد زیادی خانه// <li>Pnb: //بہت زیادہ گھر// <li>Pol: //wielu domów// <li>Ron: //</I> <li>Rus: <I>много дома</I> <li>Spa: <I>''</I> <li>Swe: <I>många hus</I> <li>Urd: <I>بہت زیادہ گھر</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>mkDet</CODE></TD>
+<TD><A 'HREF="#Quant" TITLE="Quant - quantifier ('nucleus' of Det)"'>Quant</A> <CODE>-&gt;</CODE> <A HREF="#Det" TITLE="Det - determiner phrase">Det</A></TD>
+<TD><div class=reveal> <I>this</I> <div class=popup> <ul> <li>API: <CODE>mkDet this_Quant</CODE> <li>Afr: <I>hierdie</I> <li>Bul: <I>този</I> <li>Cat: <I>aquest</I> <li>Dan: <I>denne</I> <li>Dut: <I>deze</I> <li>Eng: <I>this</I> <li>Fin: <I>Prelude.True</I> <li>Fre: <I>pre {"ce"; "cet" / strs {"a"; "à"; "â"; "e"; "é"; "è"; "ê¨"; "h";</I> <li>Ger: <I>dieser</I> <li>Ita: <I>questo</I> <li>Nep: <I>यो</I> <li>Nor: <I>denne</I> <li>Pes: <I>این</I> <li>Pnb: <I>اے</I> <li>Pol: <I>ten</I> <li>Ron: <I>acest</I> <li>Rus: <I>этот</I> <li>Spa: <I>este</I> <li>Swe: <I>den här</I> <li>Urd: <I>یہ</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>mkDet</CODE></TD>
+<TD><A 'HREF="#Quant" TITLE="Quant - quantifier ('nucleus' of Det)"'>Quant</A> <CODE>-&gt;</CODE> <A HREF="#Card" TITLE="Card - cardinal number">Card</A> <CODE>-&gt;</CODE> <A HREF="#Det" TITLE="Det - determiner phrase">Det</A></TD>
+<TD><div class=reveal> <I>these five</I> <div class=popup> <ul> <li>API: <CODE>mkDet this_Quant (mkCard (mkNumeral n5_Unit))</CODE> <li>Afr: <I>hierdie vyf</I> <li>Bul: <I>тези петима</I> <li>Cat: <I>aquests cinc</I> <li>Dan: <I>disse fem</I> <li>Dut: <I>deze vijf</I> <li>Eng: <I>these five</I> <li>Fin: <I>Prelude.True</I> <li>Fre: <I>ces cinq</I> <li>Ger: <I>diese fünf</I> <li>Ita: <I>questi cinque</I> <li>Nep: <I>यी पाँच</I> <li>Nor: <I>disse fem</I> <li>Pes: <I>این پنج</I> <li>Pnb: <I>اے پنج</I> <li>Pol: <I>tych pięć</I> <li>Ron: <I>aceşti cinci</I> <li>Rus: <I>этот пять</I> <li>Spa: <I>estos cinco</I> <li>Swe: <I>de här fem</I> <li>Urd: <I>یہ پانچ</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>mkDet</CODE></TD>
+<TD><A 'HREF="#Quant" TITLE="Quant - quantifier ('nucleus' of Det)"'>Quant</A> <CODE>-&gt;</CODE> <A HREF="#Ord" TITLE="Ord - ordinal number (used in Det)">Ord</A> <CODE>-&gt;</CODE> <A HREF="#Det" TITLE="Det - determiner phrase">Det</A></TD>
+<TD><div class=reveal> <I>the fifth</I> <div class=popup> <ul> <li>API: <CODE>mkDet the_Quant (mkOrd (mkNumeral n5_Unit))</CODE> <li>Afr: <I>die vyfde</I> <li>Bul: <I>петият</I> <li>Cat: <I>el quint</I> <li>Dan: <I>den femte</I> <li>Dut: <I>de vijfde</I> <li>Eng: <I>the fifth</I> <li>Fin: <I>Prelude.True</I> <li>Fre: <I>le cinquième</I> <li>Ger: <I>der fünfte</I> <li>Ita: <I>il quinto</I> <li>Nep: <I>पाँचौँ</I> <li>Nor: <I>den femte</I> <li>Pes: <I>پنجمین / پنجم</I> <li>Pnb: <I>پنج واں</I> <li>Pol: <I>piąty</I> <li>Ron: <I>al cincilea</I> <li>Rus: <I>// <li>Spa: //el quinto</I> <li>Swe: <I>den femte</I> <li>Urd: <I>پانچ واں</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>mkDet</CODE></TD>
+<TD><A 'HREF="#Quant" TITLE="Quant - quantifier ('nucleus' of Det)"'>Quant</A> <CODE>-&gt;</CODE> <A HREF="#Num" TITLE="Num - number determining element">Num</A> <CODE>-&gt;</CODE> <A HREF="#Ord" TITLE="Ord - ordinal number (used in Det)">Ord</A> <CODE>-&gt;</CODE> <A HREF="#Det" TITLE="Det - determiner phrase">Det</A></TD>
+<TD><div class=reveal> <I>the five best</I> <div class=popup> <ul> <li>API: <CODE>mkDet the_Quant (mkNum (mkNumeral n5_Unit)) (mkOrd good_A)</CODE> <li>Afr: <I>die vyf beste</I> <li>Bul: <I>петимата най - добри</I> <li>Cat: <I>els cinc millors</I> <li>Dan: <I>de fem bedste</I> <li>Dut: <I>de vijf beste</I> <li>Eng: <I>the five best</I> <li>Fin: <I>Prelude.True</I> <li>Fre: <I>les cinq meilleurs</I> <li>Ger: <I>die fünf besten</I> <li>Ita: <I>i cinque migliori</I> <li>Nep: <I>सबभन्दा राम्रो पाँच</I> <li>Nor: <I>de fem beste</I> <li>Pes: <I>پنج خوب ترین</I> <li>Pnb: <I>پنج اچھا</I> <li>Pol: <I>pięć najlepszych</I> <li>Ron: <I>cei mai buni cinci</I> <li>Rus: <I>пять хороший</I> <li>Spa: <I>los cinco mejores</I> <li>Swe: <I>de fem bästa</I> <li>Urd: <I>پانچ سب سے اچھا</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>mkDet</CODE></TD>
+<TD><A 'HREF="#Quant" TITLE="Quant - quantifier ('nucleus' of Det)"'>Quant</A> <CODE>-&gt;</CODE> <A HREF="#Num" TITLE="Num - number determining element">Num</A> <CODE>-&gt;</CODE> <A HREF="#Det" TITLE="Det - determiner phrase">Det</A></TD>
+<TD><div class=reveal> <I>these</I> <div class=popup> <ul> <li>API: <CODE>mkDet this_Quant pluralNum</CODE> <li>Afr: <I>hierdie</I> <li>Bul: <I>тези</I> <li>Cat: <I>aquests</I> <li>Dan: <I>disse</I> <li>Dut: <I>deze</I> <li>Eng: <I>these</I> <li>Fin: <I>Prelude.True</I> <li>Fre: <I>ces</I> <li>Ger: <I>diese</I> <li>Ita: <I>questi</I> <li>Nep: <I>यी</I> <li>Nor: <I>disse</I> <li>Pes: <I>این</I> <li>Pnb: <I>اے</I> <li>Pol: <I>te</I> <li>Ron: <I>aceşti</I> <li>Rus: <I>этот</I> <li>Spa: <I>estos</I> <li>Swe: <I>de här</I> <li>Urd: <I>یہ</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>mkDet</CODE></TD>
+<TD><A HREF="#Card" TITLE="Card - cardinal number">Card</A> <CODE>-&gt;</CODE> <A HREF="#Det" TITLE="Det - determiner phrase">Det</A></TD>
+<TD><div class=reveal> <I>five</I> <div class=popup> <ul> <li>API: <CODE>mkDet (mkCard (mkNumeral n5_Unit))</CODE> <li>Afr: <I>vyf</I> <li>Bul: <I>петима</I> <li>Cat: <I>cinc</I> <li>Dan: <I>fem</I> <li>Dut: <I>vijf</I> <li>Eng: <I>five</I> <li>Fin: <I>Prelude.False</I> <li>Fre: <I>cinq</I> <li>Ger: <I>fünf</I> <li>Ita: <I>cinque</I> <li>Nep: <I>पाँच</I> <li>Nor: <I>fem</I> <li>Pes: <I>یک پنج</I> <li>Pnb: <I>پنج</I> <li>Pol: <I>pięć</I> <li>Ron: <I>cinci</I> <li>Rus: <I>пять</I> <li>Spa: <I>cinco</I> <li>Swe: <I>fem</I> <li>Urd: <I>ایك پانچ</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>mkDet</CODE></TD>
+<TD><A HREF="#Digits" TITLE="Digits - cardinal or ordinal in digits">Digits</A> <CODE>-&gt;</CODE> <A HREF="#Det" TITLE="Det - determiner phrase">Det</A></TD>
+<TD><I>51</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkDet</CODE></TD>
+<TD><A HREF="#Numeral" TITLE="Numeral - cardinal or ordinal in words">Numeral</A> <CODE>-&gt;</CODE> <A HREF="#Det" TITLE="Det - determiner phrase">Det</A></TD>
+<TD><I>five</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkDet</CODE></TD>
+<TD><A HREF="#Pron" TITLE="Pron - personal pronoun">Pron</A> <CODE>-&gt;</CODE> <A HREF="#Det" TITLE="Det - determiner phrase">Det</A></TD>
+<TD><I>my</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkDet</CODE></TD>
+<TD><A HREF="#Pron" TITLE="Pron - personal pronoun">Pron</A> <CODE>-&gt;</CODE> <A HREF="#Num" TITLE="Num - number determining element">Num</A> <CODE>-&gt;</CODE> <A HREF="#Det" TITLE="Det - determiner phrase">Det</A></TD>
+<TD><div class=reveal> <I>my five</I> <div class=popup> <ul> <li>API: <CODE>mkDet i_Pron (mkNum (mkNumeral n5_Unit))</CODE> <li>Afr: <I>my vyf</I> <li>Bul: <I>моите петима</I> <li>Cat: <I>els meus cinc</I> <li>Dan: <I>mine fem</I> <li>Dut: <I>mijn vijf</I> <li>Eng: <I>my five</I> <li>Fin: <I>Prelude.True</I> <li>Fre: <I>mes cinq</I> <li>Ger: <I>meine fünf</I> <li>Ita: <I>i miei cinque</I> <li>Nep: <I>मेरो पाँच</I> <li>Nor: <I>mine fem</I> <li>Pes: <I>من پنج</I> <li>Pnb: <I>میرا پنج</I> <li>Pol: <I>moich pięć</I> <li>Ron: <I>cei cinci</I> <li>Rus: <I>мой пять</I> <li>Spa: <I>mis cinco</I> <li>Swe: <I>mina fem</I> <li>Urd: <I>میرا پانچ</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>much_Det</CODE></TD>
+<TD><A HREF="#Det" TITLE="Det - determiner phrase">Det</A></TD>
+<TD><div class=reveal> <I>much</I> <div class=popup> <ul> <li>API: <CODE>much_Det</CODE> <li>Afr: <I>baie</I> <li>Bul: <I>много</I> <li>Cat: <I>molt</I> <li>Dan: <I>meget</I> <li>Dut: <I>veel</I> <li>Eng: <I>much</I> <li>Fin: <I>Prelude.True</I> <li>Fre: <I>beaucoup pre {"de"; "d'" / strs {"a"; "à"; "â"; "e"; "é"; "è";</I> <li>Ger: <I>vieler</I> <li>Ita: <I>molto</I> <li>Nep: <I>निक्कै</I> <li>Nor: <I>mye</I> <li>Pes: <I>مقدار زیادی</I> <li>Pnb: <I>بہت</I> <li>Pol: <I>dużo</I> <li>Ron: <I>// <li>Rus: //много</I> <li>Spa: <I>mucho</I> <li>Swe: <I>mycket</I> <li>Urd: <I>بہت</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>somePl_Det</CODE></TD>
+<TD><A HREF="#Det" TITLE="Det - determiner phrase">Det</A></TD>
+<TD><div class=reveal> <I>some</I> <div class=popup> <ul> <li>API: <CODE>somePl_Det</CODE> <li>Afr: <I>sommige</I> <li>Bul: <I>някои</I> <li>Cat: <I>alguns</I> <li>Dan: <I>nogle</I> <li>Dut: <I>sommige</I> <li>Eng: <I>some</I> <li>Fin: <I>Prelude.True</I> <li>Fre: <I>quelques</I> <li>Ger: <I>einige</I> <li>Ita: <I>qualche</I> <li>Nep: <I>कोही</I> <li>Nor: <I>noen</I> <li>Pes: <I>چند</I> <li>Pnb: <I>كچھ</I> <li>Pol: <I>pewne</I> <li>Ron: <I>unii</I> <li>Rus: <I>некоторый</I> <li>Spa: <I>algunos</I> <li>Swe: <I>några</I> <li>Urd: <I>كچھ</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>someSg_Det</CODE></TD>
+<TD><A HREF="#Det" TITLE="Det - determiner phrase">Det</A></TD>
+<TD><div class=reveal> <I>some</I> <div class=popup> <ul> <li>API: <CODE>someSg_Det</CODE> <li>Afr: <I>sommige</I> <li>Bul: <I>някой</I> <li>Cat: <I>algun</I> <li>Dan: <I>nogen</I> <li>Dut: <I>sommige</I> <li>Eng: <I>some</I> <li>Fin: <I>Prelude.True</I> <li>Fre: <I>pre {"quelque"; "quelqu'" / strs {"a"; "à"; "â"; "e"; "é"; "è";</I> <li>Ger: <I>ein</I> <li>Ita: <I>qualche</I> <li>Nep: <I>कोही</I> <li>Nor: <I>noen</I> <li>Pes: <I>مقداری</I> <li>Pnb: <I>كچھ</I> <li>Pol: <I>pewien</I> <li>Ron: <I>nişte</I> <li>Rus: <I>некоторый</I> <li>Spa: <I>algun</I> <li>Swe: <I>någon</I> <li>Urd: <I>كچھ</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>that_Det</CODE></TD>
+<TD><A HREF="#Det" TITLE="Det - determiner phrase">Det</A></TD>
+<TD><div class=reveal> <I>that woman</I> <div class=popup> <ul> <li>API: <CODE>mkNP that_Det woman_N</CODE> <li>Afr: <I>daardie vrou</I> <li>Bul: <I>онази жена</I> <li>Cat: <I>// <li>Dan: //den der kvinde// <li>Dut: //die vrouw// <li>Eng: //that woman// <li>Fin: //tuo nainen// <li>Fre: //</I> <li>Ger: <I>jene Frau</I> <li>Ita: <I>// <li>Nep: //त्ये आईमाई// <li>Nor: //den der kvinna// <li>Pes: //آن زن// <li>Pnb: //{s : ResPnb.NPCase => Str// <li>Pol: //tamtej kobiety// <li>Ron: //</I> <li>Rus: <I>та женщина</I> <li>Spa: <I>''</I> <li>Swe: <I>den där kvinnan</I> <li>Urd: <I>وہ عورت</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>thePl_Det</CODE></TD>
+<TD><A HREF="#Det" TITLE="Det - determiner phrase">Det</A></TD>
+<TD><div class=reveal> <I>the houses</I> <div class=popup> <ul> <li>API: <CODE>mkNP thePl_Det house_N</CODE> <li>Afr: <I>die huise</I> <li>Bul: <I>къщите</I> <li>Cat: <I>// <li>Dan: //husene// <li>Dut: //de huizen// <li>Eng: //the houses// <li>Fin: //talot// <li>Fre: //</I> <li>Ger: <I>die Häuser</I> <li>Ita: <I>// <li>Nep: //घरहरु// <li>Nor: //husa// <li>Pes: //خانه// <li>Pnb: //گھر// <li>Pol: //domów// <li>Ron: //</I> <li>Rus: <I>домы</I> <li>Spa: <I>''</I> <li>Swe: <I>husen</I> <li>Urd: <I>گھر</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>theSg_Det</CODE></TD>
+<TD><A HREF="#Det" TITLE="Det - determiner phrase">Det</A></TD>
+<TD><div class=reveal> <I>the house</I> <div class=popup> <ul> <li>API: <CODE>mkNP theSg_Det house_N</CODE> <li>Afr: <I>die huis</I> <li>Bul: <I>къщата</I> <li>Cat: <I>// <li>Dan: //huset// <li>Dut: //het huis// <li>Eng: //the house// <li>Fin: //talo// <li>Fre: //</I> <li>Ger: <I>das Haus</I> <li>Ita: <I>// <li>Nep: //घर// <li>Nor: //huset// <li>Pes: //خانه// <li>Pnb: //{s : ResPnb.NPCase => Str// <li>Pol: //domu// <li>Ron: //</I> <li>Rus: <I>дом</I> <li>Spa: <I>''</I> <li>Swe: <I>huset</I> <li>Urd: <I>گھر</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>the_Det</CODE></TD>
+<TD><A HREF="#Det" TITLE="Det - determiner phrase">Det</A></TD>
+<TD><div class=reveal> <I>the house</I> <div class=popup> <ul> <li>API: <CODE>mkNP the_Det house_N</CODE> <li>Afr: <I>die huis</I> <li>Bul: <I>къщата</I> <li>Cat: <I>// <li>Dan: //huset// <li>Dut: //het huis// <li>Eng: //the house// <li>Fin: //talo// <li>Fre: //</I> <li>Ger: <I>das Haus</I> <li>Ita: <I>// <li>Nep: //घर// <li>Nor: //huset// <li>Pes: //خانه// <li>Pnb: //{s : ResPnb.NPCase => Str// <li>Pol: //domu// <li>Ron: //</I> <li>Rus: <I>дом</I> <li>Spa: <I>''</I> <li>Swe: <I>huset</I> <li>Urd: <I>گھر</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>these_Det</CODE></TD>
+<TD><A HREF="#Det" TITLE="Det - determiner phrase">Det</A></TD>
+<TD><div class=reveal> <I>these women</I> <div class=popup> <ul> <li>API: <CODE>mkNP these_Det woman_N</CODE> <li>Afr: <I>hierdie vroue</I> <li>Bul: <I>тези жени</I> <li>Cat: <I>// <li>Dan: //disse kvinder// <li>Dut: //deze vrouwen// <li>Eng: //these women// <li>Fin: //nämä naiset// <li>Fre: //</I> <li>Ger: <I>diese Frauen</I> <li>Ita: <I>// <li>Nep: //यी आईमाईहरु// <li>Nor: //disse kvinnene// <li>Pes: //این زن// <li>Pnb: //اے زنانیاں// <li>Pol: //tych kobiet// <li>Ron: //</I> <li>Rus: <I>эти женщины</I> <li>Spa: <I>''</I> <li>Swe: <I>de här kvinnorna</I> <li>Urd: <I>یہ عورتیں</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>this_Det</CODE></TD>
+<TD><A HREF="#Det" TITLE="Det - determiner phrase">Det</A></TD>
+<TD><div class=reveal> <I>this woman</I> <div class=popup> <ul> <li>API: <CODE>mkNP this_Det woman_N</CODE> <li>Afr: <I>hierdie vrou</I> <li>Bul: <I>тази жена</I> <li>Cat: <I>// <li>Dan: //denne kvinde// <li>Dut: //deze vrouw// <li>Eng: //this woman// <li>Fin: //tämä nainen// <li>Fre: //</I> <li>Ger: <I>diese Frau</I> <li>Ita: <I>// <li>Nep: //यो आईमाई// <li>Nor: //denne kvinna// <li>Pes: //این زن// <li>Pnb: //{s : ResPnb.NPCase => Str// <li>Pol: //tej kobiety// <li>Ron: //</I> <li>Rus: <I>эта женщина</I> <li>Spa: <I>''</I> <li>Swe: <I>den här kvinnan</I> <li>Urd: <I>یہ عورت</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>those_Det</CODE></TD>
+<TD><A HREF="#Det" TITLE="Det - determiner phrase">Det</A></TD>
+<TD><div class=reveal> <I>those women</I> <div class=popup> <ul> <li>API: <CODE>mkNP those_Det woman_N</CODE> <li>Afr: <I>daardie vroue</I> <li>Bul: <I>онези жени</I> <li>Cat: <I>// <li>Dan: //de der kvinder// <li>Dut: //die vrouwen// <li>Eng: //those women// <li>Fin: //nuo naiset// <li>Fre: //</I> <li>Ger: <I>jene Frauen</I> <li>Ita: <I>// <li>Nep: //यिनीहरु आईमाईहरु// <li>Nor: //de der kvinnene// <li>Pes: //آن زن// <li>Pnb: //وہ زنانیاں// <li>Pol: //tamtych kobiet// <li>Ron: //</I> <li>Rus: <I>те женщины</I> <li>Spa: <I>''</I> <li>Swe: <I>de där kvinnorna</I> <li>Urd: <I>وہ عورتیں</I> </ul> </div> </div></TD>
+</TR>
+</TABLE>
+
+<A NAME="Dig"></A>
+<H2>Dig</H2>
+
+<TABLE BORDER="1" CELLPADDING="4">
+<TR>
+<TH>Function</TH>
+<TH>Type</TH>
+<TH COLSPAN="2">Example</TH>
+</TR>
+<TR>
+<TD><CODE>n0_Dig</CODE></TD>
+<TD><A HREF="#Dig">Dig</A></TD>
+<TD><I>0</I></TD>
+</TR>
+<TR>
+<TD><CODE>n1_Dig</CODE></TD>
+<TD><A HREF="#Dig">Dig</A></TD>
+<TD><I>1</I></TD>
+</TR>
+<TR>
+<TD><CODE>n2_Dig</CODE></TD>
+<TD><A HREF="#Dig">Dig</A></TD>
+<TD><I>2</I></TD>
+</TR>
+<TR>
+<TD><CODE>n3_Dig</CODE></TD>
+<TD><A HREF="#Dig">Dig</A></TD>
+<TD><I>3</I></TD>
+</TR>
+<TR>
+<TD><CODE>n4_Dig</CODE></TD>
+<TD><A HREF="#Dig">Dig</A></TD>
+<TD><I>4</I></TD>
+</TR>
+<TR>
+<TD><CODE>n5_Dig</CODE></TD>
+<TD><A HREF="#Dig">Dig</A></TD>
+<TD><I>5</I></TD>
+</TR>
+<TR>
+<TD><CODE>n6_Dig</CODE></TD>
+<TD><A HREF="#Dig">Dig</A></TD>
+<TD><I>6</I></TD>
+</TR>
+<TR>
+<TD><CODE>n7_Dig</CODE></TD>
+<TD><A HREF="#Dig">Dig</A></TD>
+<TD><I>7</I></TD>
+</TR>
+<TR>
+<TD><CODE>n8_Dig</CODE></TD>
+<TD><A HREF="#Dig">Dig</A></TD>
+<TD><I>8</I></TD>
+</TR>
+<TR>
+<TD><CODE>n9_Dig</CODE></TD>
+<TD><A HREF="#Dig">Dig</A></TD>
+<TD><I>9</I></TD>
+</TR>
+</TABLE>
+
+<A NAME="Digits"></A>
+<H2>Digits - cardinal or ordinal in digits</H2>
+
+<TABLE BORDER="1" CELLPADDING="4">
+<TR>
+<TH>Function</TH>
+<TH>Type</TH>
+<TH COLSPAN="2">Example</TH>
+</TR>
+<TR>
+<TD><CODE>mkDigits</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#Digits" TITLE="Digits - cardinal or ordinal in digits">Digits</A></TD>
+<TD><I>35 (from string "35"; ; range 1-9999999)</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkDigits</CODE></TD>
+<TD><A HREF="#Dig">Dig</A> <CODE>-&gt;</CODE> <A HREF="#Digits" TITLE="Digits - cardinal or ordinal in digits">Digits</A></TD>
+<TD><div class=reveal> <I>4</I> <div class=popup> <ul> <li>API: <CODE>mkDigits n4_Dig</CODE> <li>Afr: <I>4</I> <li>Bul: <I>4</I> <li>Cat: <I>4</I> <li>Dan: <I>4</I> <li>Dut: <I>4</I> <li>Eng: <I>4</I> <li>Fin: <I>4</I> <li>Fre: <I>4</I> <li>Ger: <I>4</I> <li>Ita: <I>4</I> <li>Nep: <I>४</I> <li>Nor: <I>4</I> <li>Pes: <I>4</I> <li>Pnb: <I>۴</I> <li>Pol: <I>4</I> <li>Ron: <I>4</I> <li>Rus: <I>4</I> <li>Spa: <I>4</I> <li>Swe: <I>4</I> <li>Urd: <I>۴</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>mkDigits</CODE></TD>
+<TD><A HREF="#Dig">Dig</A> <CODE>-&gt;</CODE> <A HREF="#Digits" TITLE="Digits - cardinal or ordinal in digits">Digits</A> <CODE>-&gt;</CODE> <A HREF="#Digits" TITLE="Digits - cardinal or ordinal in digits">Digits</A></TD>
+<TD><div class=reveal> <I>1 , 2 3 3 , 4 8 6</I> <div class=popup> <ul> <li>API: <CODE>mkDigits n1_Dig (mkDigits n2_Dig (mkDigits n3_Dig (mkDigits n3_Dig (mkDigits n4_Dig (mkDigits n8_Dig (mkDigits n6_Dig))))))</CODE> <li>Afr: <I>1 2 3 3 4 8 6</I> <li>Bul: <I>1 , 2 3 3 , 4 8 6</I> <li>Cat: <I>1 2 3 3 4 8 6</I> <li>Dan: <I>1 2 3 3 4 8 6</I> <li>Dut: <I>1 2 3 3 4 8 6</I> <li>Eng: <I>1 , 2 3 3 , 4 8 6</I> <li>Fin: <I>1 2 3 3 4 8 6</I> <li>Fre: <I>1 2 3 3 4 8 6</I> <li>Ger: <I>1 2 3 3 4 8 6</I> <li>Ita: <I>1 2 3 3 4 8 6</I> <li>Nep: <I>१२३३४८६</I> <li>Nor: <I>1 2 3 3 4 8 6</I> <li>Pes: <I>1 2 3 3 4 8 6</I> <li>Pnb: <I>۶۸۴۳۳۲۱</I> <li>Pol: <I>1 2 3 3 4 8 6</I> <li>Ron: <I>1 2 3 3 4 8 6</I> <li>Rus: <I>1 2 3 3 4 8 6</I> <li>Spa: <I>1 2 3 3 4 8 6</I> <li>Swe: <I>1 2 3 3 4 8 6</I> <li>Urd: <I>۶۸۴۳۳۲۱</I> </ul> </div> </div></TD>
+</TR>
+</TABLE>
+
+<A NAME="IAdv"></A>
+<H2>IAdv - interrogative adverb</H2>
+
+<TABLE BORDER="1" CELLPADDING="4">
+<TR>
+<TH>Function</TH>
+<TH>Type</TH>
+<TH COLSPAN="2">Example</TH>
+</TR>
+<TR>
+<TD><CODE>how8much_IAdv</CODE></TD>
+<TD><A HREF="#IAdv" TITLE="IAdv - interrogative adverb">IAdv</A></TD>
+<TD><div class=reveal> <I>how much</I> <div class=popup> <ul> <li>API: <CODE>mkUtt how8much_IAdv</CODE> <li>Afr: <I>hoeveel</I> <li>Bul: <I>колко</I> <li>Cat: <I>quant</I> <li>Dan: <I>*</I> <li>Dut: <I>hoeveel</I> <li>Eng: <I>how much</I> <li>Fin: <I>kuinka paljon</I> <li>Fre: <I>combien</I> <li>Ger: <I>wieviel</I> <li>Ita: <I>quanto</I> <li>Nep: <I>कती</I> <li>Nor: <I>*</I> <li>Pes: <I>چقدر</I> <li>Pnb: <I>كینا</I> <li>Pol: <I>*</I> <li>Ron: <I>cât</I> <li>Rus: <I>*</I> <li>Spa: <I>*</I> <li>Swe: <I>hur mycket</I> <li>Urd: <I>كتنا</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>how_IAdv</CODE></TD>
+<TD><A HREF="#IAdv" TITLE="IAdv - interrogative adverb">IAdv</A></TD>
+<TD><div class=reveal> <I>how</I> <div class=popup> <ul> <li>API: <CODE>mkUtt how_IAdv</CODE> <li>Afr: <I>hoe</I> <li>Bul: <I>как</I> <li>Cat: <I>com</I> <li>Dan: <I>hvor</I> <li>Dut: <I>hoe</I> <li>Eng: <I>how</I> <li>Fin: <I>miten</I> <li>Fre: <I>comment</I> <li>Ger: <I>wie</I> <li>Ita: <I>come</I> <li>Nep: <I>कसरी</I> <li>Nor: <I>hvor</I> <li>Pes: <I>چطور</I> <li>Pnb: <I>كسراں</I> <li>Pol: <I>jak</I> <li>Ron: <I>cum</I> <li>Rus: <I>как</I> <li>Spa: <I>como</I> <li>Swe: <I>hur</I> <li>Urd: <I>كیسے</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>mkIAdv</CODE></TD>
+<TD><A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#IP" TITLE="IP - interrogative pronoun">IP</A> <CODE>-&gt;</CODE> <A HREF="#IAdv" TITLE="IAdv - interrogative adverb">IAdv</A></TD>
+<TD><div class=reveal> <I>in which city</I> <div class=popup> <ul> <li>API: <CODE>mkIAdv in_Prep (mkIP which_IQuant city_N)</CODE> <li>Afr: <I>in watter stad</I> <li>Bul: <I>в кой град</I> <li>Cat: <I>en quin ciutat</I> <li>Dan: <I>i hvilken by</I> <li>Dut: <I>in welke stad</I> <li>Eng: <I>in which city</I> <li>Fin: <I>missä kaupungissa</I> <li>Fre: <I>dans quelle ville</I> <li>Ger: <I>in welcher Stadt</I> <li>Ita: <I>in quale città</I> <li>Nep: <I>कुन शहर मा</I> <li>Nor: <I>i hvilken by</I> <li>Pes: <I>در کدام شهر</I> <li>Pnb: <I>{s : Str = ("كیڑا" ++ "شہر") ++ "وچ";</I> <li>Pol: <I>w którym mieście</I> <li>Ron: <I>în care oraş</I> <li>Rus: <I>в который город</I> <li>Spa: <I>en qué ciudad</I> <li>Swe: <I>i vilken stad</I> <li>Urd: <I>كون سے شہر میں</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>mkIAdv</CODE></TD>
+<TD><A HREF="#IAdv" TITLE="IAdv - interrogative adverb">IAdv</A> <CODE>-&gt;</CODE> <A HREF="#Adv" TITLE="Adv - verb-phrase-modifying adverb">Adv</A> <CODE>-&gt;</CODE> <A HREF="#IAdv" TITLE="IAdv - interrogative adverb">IAdv</A></TD>
+<TD><div class=reveal> <I>where in Paris</I> <div class=popup> <ul> <li>API: <CODE>mkIAdv where_IAdv (mkAdv in_Prep (mkNP paris_PN))</CODE> <li>Afr: <I>waar in Parys</I> <li>Bul: <I>къде в Париж</I> <li>Cat: <I>on en Paris</I> <li>Dan: <I>hvor i Paris</I> <li>Dut: <I>waar in Parijs</I> <li>Eng: <I>where in Paris</I> <li>Fin: <I>missä Pariisissa</I> <li>Fre: <I>oÃ¹ dans Paris</I> <li>Ger: <I>wo in Paris</I> <li>Ita: <I>dove in Parigi</I> <li>Nep: <I>कहाँ पेरिस मा</I> <li>Nor: <I>hvor i Paris</I> <li>Pes: <I>در پاریس کجا</I> <li>Pnb: <I>كتھے پیرس وچ</I> <li>Pol: <I>gdzie w Paryżu</I> <li>Ron: <I>unde în Paris</I> <li>Rus: <I>где в Париже</I> <li>Spa: <I>donde en Paris</I> <li>Swe: <I>var i Paris</I> <li>Urd: <I>كہاں پیرس میں</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>when_IAdv</CODE></TD>
+<TD><A HREF="#IAdv" TITLE="IAdv - interrogative adverb">IAdv</A></TD>
+<TD><div class=reveal> <I>when</I> <div class=popup> <ul> <li>API: <CODE>mkUtt when_IAdv</CODE> <li>Afr: <I>wanneer</I> <li>Bul: <I>кога</I> <li>Cat: <I>quan</I> <li>Dan: <I>hvornår</I> <li>Dut: <I>wanneer</I> <li>Eng: <I>when</I> <li>Fin: <I>milloin</I> <li>Fre: <I>quand</I> <li>Ger: <I>wann</I> <li>Ita: <I>quando</I> <li>Nep: <I>कहिले</I> <li>Nor: <I>når</I> <li>Pes: <I>کی</I> <li>Pnb: <I>كدوں</I> <li>Pol: <I>kiedy</I> <li>Ron: <I>când</I> <li>Rus: <I>когда</I> <li>Spa: <I>cuando</I> <li>Swe: <I>när</I> <li>Urd: <I>كب</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>where_IAdv</CODE></TD>
+<TD><A HREF="#IAdv" TITLE="IAdv - interrogative adverb">IAdv</A></TD>
+<TD><div class=reveal> <I>where</I> <div class=popup> <ul> <li>API: <CODE>mkUtt where_IAdv</CODE> <li>Afr: <I>waar</I> <li>Bul: <I>къде</I> <li>Cat: <I>on</I> <li>Dan: <I>hvor</I> <li>Dut: <I>waar</I> <li>Eng: <I>where</I> <li>Fin: <I>missä</I> <li>Fre: <I>oÃ¹</I> <li>Ger: <I>wo</I> <li>Ita: <I>dove</I> <li>Nep: <I>कहाँ</I> <li>Nor: <I>hvor</I> <li>Pes: <I>کجا</I> <li>Pnb: <I>كتھے</I> <li>Pol: <I>gdzie</I> <li>Ron: <I>unde</I> <li>Rus: <I>где</I> <li>Spa: <I>donde</I> <li>Swe: <I>var</I> <li>Urd: <I>كہاں</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>why_IAdv</CODE></TD>
+<TD><A HREF="#IAdv" TITLE="IAdv - interrogative adverb">IAdv</A></TD>
+<TD><div class=reveal> <I>why</I> <div class=popup> <ul> <li>API: <CODE>mkUtt why_IAdv</CODE> <li>Afr: <I>waarom</I> <li>Bul: <I>защо</I> <li>Cat: <I>per quË</I> <li>Dan: <I>hvorfor</I> <li>Dut: <I>waarom</I> <li>Eng: <I>why</I> <li>Fin: <I>miksi</I> <li>Fre: <I>pourquoi</I> <li>Ger: <I>warum</I> <li>Ita: <I>perché</I> <li>Nep: <I>किन</I> <li>Nor: <I>hvorfor</I> <li>Pes: <I>چرا</I> <li>Pnb: <I>كیوں</I> <li>Pol: <I>dlaczego</I> <li>Ron: <I>de ce</I> <li>Rus: <I>почему</I> <li>Spa: <I>porqué</I> <li>Swe: <I>varför</I> <li>Urd: <I>كیوں</I> </ul> </div> </div></TD>
+</TR>
+</TABLE>
+
+<A NAME="IComp"></A>
+<H2>IComp - interrogative complement of copula</H2>
+
+<TABLE BORDER="1" CELLPADDING="4">
+<TR>
+<TH>Function</TH>
+<TH>Type</TH>
+<TH COLSPAN="2">Example</TH>
+</TR>
+<TR>
+<TD><CODE>mkIComp</CODE></TD>
+<TD><A HREF="#IAdv" TITLE="IAdv - interrogative adverb">IAdv</A> <CODE>-&gt;</CODE> <A HREF="#IComp" TITLE="IComp - interrogative complement of copula">IComp</A></TD>
+<TD><I>where (is it)</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkIComp</CODE></TD>
+<TD><A HREF="#IP" TITLE="IP - interrogative pronoun">IP</A> <CODE>-&gt;</CODE> <A HREF="#IComp" TITLE="IComp - interrogative complement of copula">IComp</A></TD>
+<TD><I>who (is it)</I></TD>
+</TR>
+</TABLE>
+
+<A NAME="IDet"></A>
+<H2>IDet - interrogative determiner</H2>
+
+<TABLE BORDER="1" CELLPADDING="4">
+<TR>
+<TH>Function</TH>
+<TH>Type</TH>
+<TH COLSPAN="2">Example</TH>
+</TR>
+<TR>
+<TD><CODE>how8many_IDet</CODE></TD>
+<TD><A HREF="#IDet" TITLE="IDet - interrogative determiner">IDet</A></TD>
+<TD><div class=reveal> <I>how many houses</I> <div class=popup> <ul> <li>API: <CODE>mkUtt (mkIP how8many_IDet house_N)</CODE> <li>Afr: <I>hoeveel huise</I> <li>Bul: <I>колко къщи</I> <li>Cat: <I>quantes cases</I> <li>Dan: <I>hur mange huse</I> <li>Dut: <I>hoeveel huizen</I> <li>Eng: <I>how many houses</I> <li>Fin: <I>kuinka moni talo</I> <li>Fre: <I>combien pre {"de"; "d'" / strs {"a"; "à"; "â"; "e"; "é"; "è"; "ê¨";</I> <li>Ger: <I>wieviele Häuser</I> <li>Ita: <I>quante case</I> <li>Nep: <I>कती वटा घरहरु</I> <li>Nor: <I>hur mange hus</I> <li>Pes: <I>چند خانه</I> <li>Pnb: <I>كینے گھر</I> <li>Pol: <I>ile domu</I> <li>Ron: <I>câte case</I> <li>Rus: <I>скольки домов</I> <li>Spa: <I>cuantas casas</I> <li>Swe: <I>hur många hus</I> <li>Urd: <I>كتنے گھر</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>mkIDet</CODE></TD>
+<TD><A HREF="#IQuant">IQuant</A> <CODE>-&gt;</CODE> <A HREF="#Num" TITLE="Num - number determining element">Num</A> <CODE>-&gt;</CODE> <A HREF="#IDet" TITLE="IDet - interrogative determiner">IDet</A></TD>
+<TD><div class=reveal> <I>which houses</I> <div class=popup> <ul> <li>API: <CODE>mkIP (mkIDet which_IQuant pluralNum) house_N</CODE> <li>Afr: <I>watter huise</I> <li>Bul: <I>кои къщи</I> <li>Cat: <I>quins cases</I> <li>Dan: <I>hvilke huse</I> <li>Dut: <I>welke huizen</I> <li>Eng: <I>which houses</I> <li>Fin: <I>mitkä talot</I> <li>Fre: <I>quelles maisons</I> <li>Ger: <I>welche Häuser</I> <li>Ita: <I>quali case</I> <li>Nep: <I>कुन घरहरु</I> <li>Nor: <I>hvilke hus</I> <li>Pes: <I>کدام خانه</I> <li>Pnb: <I>كیڑے گھر</I> <li>Pol: <I>których domów</I> <li>Ron: <I>care case</I> <li>Rus: <I>которые домы</I> <li>Spa: <I>qué casas</I> <li>Swe: <I>vilka hus</I> <li>Urd: <I>كون سے گھر</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>mkIDet</CODE></TD>
+<TD><A HREF="#IQuant">IQuant</A> <CODE>-&gt;</CODE> <A HREF="#IDet" TITLE="IDet - interrogative determiner">IDet</A></TD>
+<TD><div class=reveal> <I>which house</I> <div class=popup> <ul> <li>API: <CODE>mkIP (mkIDet which_IQuant) house_N</CODE> <li>Afr: <I>watter huis</I> <li>Bul: <I>коя къща</I> <li>Cat: <I>quin casa</I> <li>Dan: <I>hvilket hus</I> <li>Dut: <I>welk huis</I> <li>Eng: <I>which house</I> <li>Fin: <I>mikä talo</I> <li>Fre: <I>quelle maison</I> <li>Ger: <I>welches Haus</I> <li>Ita: <I>quale casa</I> <li>Nep: <I>कुन घर</I> <li>Nor: <I>hvilket hus</I> <li>Pes: <I>کدام خانه</I> <li>Pnb: <I>{s : ResPnb.Case =&gt; Str</I> <li>Pol: <I>którego domu</I> <li>Ron: <I>care casă</I> <li>Rus: <I>который дом</I> <li>Spa: <I>qué casa</I> <li>Swe: <I>vilket hus</I> <li>Urd: <I>كون سا گھر</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>whichPl_IDet</CODE></TD>
+<TD><A HREF="#IDet" TITLE="IDet - interrogative determiner">IDet</A></TD>
+<TD><div class=reveal> <I>which houses</I> <div class=popup> <ul> <li>API: <CODE>mkIP whichPl_IDet house_N</CODE> <li>Afr: <I>watter huise</I> <li>Bul: <I>кои къщи</I> <li>Cat: <I>quins cases</I> <li>Dan: <I>hvilke huse</I> <li>Dut: <I>welke huizen</I> <li>Eng: <I>which houses</I> <li>Fin: <I>mitkä talot</I> <li>Fre: <I>quelles maisons</I> <li>Ger: <I>welche Häuser</I> <li>Ita: <I>quali case</I> <li>Nep: <I>कुन घरहरु</I> <li>Nor: <I>hvilke hus</I> <li>Pes: <I>کدام خانه</I> <li>Pnb: <I>كیڑے گھر</I> <li>Pol: <I>których domów</I> <li>Ron: <I>care case</I> <li>Rus: <I>которые домы</I> <li>Spa: <I>qué casas</I> <li>Swe: <I>vilka hus</I> <li>Urd: <I>كون سے گھر</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>which_IDet</CODE></TD>
+<TD><A HREF="#IDet" TITLE="IDet - interrogative determiner">IDet</A></TD>
+<TD><div class=reveal> <I>which house</I> <div class=popup> <ul> <li>API: <CODE>mkIP which_IDet house_N</CODE> <li>Afr: <I>watter huis</I> <li>Bul: <I>коя къща</I> <li>Cat: <I>quin casa</I> <li>Dan: <I>hvilket hus</I> <li>Dut: <I>welk huis</I> <li>Eng: <I>which house</I> <li>Fin: <I>mikä talo</I> <li>Fre: <I>quelle maison</I> <li>Ger: <I>welches Haus</I> <li>Ita: <I>quale casa</I> <li>Nep: <I>कुन घर</I> <li>Nor: <I>hvilket hus</I> <li>Pes: <I>کدام خانه</I> <li>Pnb: <I>{s : ResPnb.Case =&gt; Str</I> <li>Pol: <I>którego domu</I> <li>Ron: <I>care casă</I> <li>Rus: <I>который дом</I> <li>Spa: <I>qué casa</I> <li>Swe: <I>vilket hus</I> <li>Urd: <I>كون سا گھر</I> </ul> </div> </div></TD>
+</TR>
+</TABLE>
+
+<A NAME="IP"></A>
+<H2>IP - interrogative pronoun</H2>
+
+<TABLE BORDER="1" CELLPADDING="4">
+<TR>
+<TH>Function</TH>
+<TH>Type</TH>
+<TH COLSPAN="2">Example</TH>
+</TR>
+<TR>
+<TD><CODE>mkIP</CODE></TD>
+<TD><A HREF="#IDet" TITLE="IDet - interrogative determiner">IDet</A> <CODE>-&gt;</CODE> <A HREF="#CN" TITLE="CN - common noun (without determiner)">CN</A> <CODE>-&gt;</CODE> <A HREF="#IP" TITLE="IP - interrogative pronoun">IP</A></TD>
+<TD><div class=reveal> <I>which five big cities</I> <div class=popup> <ul> <li>API: <CODE>mkIP (mkIDet which_IQuant (mkNum (mkNumeral n5_Unit))) (mkCN big_A city_N)</CODE> <li>Afr: <I>watter vyf groot stede</I> <li>Bul: <I>кои пет големи града</I> <li>Cat: <I>quins cinc ciutats groses</I> <li>Dan: <I>hvilke fem store byer</I> <li>Dut: <I>welke vijf grote stadden</I> <li>Eng: <I>which five big cities</I> <li>Fin: <I>mitkä viisi suurta kaupunkia</I> <li>Fre: <I>quelles cinq grandes villes</I> <li>Ger: <I>welche fünf großen Städte</I> <li>Ita: <I>quali cinque grandi città</I> <li>Nep: <I>कुन पाँच ठुला शहरहरु</I> <li>Nor: <I>hvilke fem store byer</I> <li>Pes: <I>کدام پنج شهر بزرگ</I> <li>Pnb: <I>كیڑے پنج وڈے شہر</I> <li>Pol: <I>których pięciu dużych miast</I> <li>Ron: <I>care cinci oraşe mari</I> <li>Rus: <I>которые пять большие городы</I> <li>Spa: <I>qué cinco grandes ciudades</I> <li>Swe: <I>vilka fem stora städer</I> <li>Urd: <I>كون سے پانچ بڑے شہر</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>mkIP</CODE></TD>
+<TD><A HREF="#IDet" TITLE="IDet - interrogative determiner">IDet</A> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A> <CODE>-&gt;</CODE> <A HREF="#IP" TITLE="IP - interrogative pronoun">IP</A></TD>
+<TD><div class=reveal> <I>which five cities</I> <div class=popup> <ul> <li>API: <CODE>mkIP (mkIDet which_IQuant (mkNum (mkNumeral n5_Unit))) city_N</CODE> <li>Afr: <I>watter vyf stede</I> <li>Bul: <I>кои пет града</I> <li>Cat: <I>quins cinc ciutats</I> <li>Dan: <I>hvilke fem byer</I> <li>Dut: <I>welke vijf stadden</I> <li>Eng: <I>which five cities</I> <li>Fin: <I>mitkä viisi kaupunkia</I> <li>Fre: <I>quelles cinq villes</I> <li>Ger: <I>welche fünf Städte</I> <li>Ita: <I>quali cinque città</I> <li>Nep: <I>कुन पाँच शहरहरु</I> <li>Nor: <I>hvilke fem byer</I> <li>Pes: <I>کدام پنج شهر</I> <li>Pnb: <I>كیڑے پنج شہر</I> <li>Pol: <I>których pięciu miast</I> <li>Ron: <I>care cinci oraşe</I> <li>Rus: <I>которые пять городы</I> <li>Spa: <I>qué cinco ciudades</I> <li>Swe: <I>vilka fem städer</I> <li>Urd: <I>كون سے پانچ شہر</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>mkIP</CODE></TD>
+<TD><A HREF="#IDet" TITLE="IDet - interrogative determiner">IDet</A> <CODE>-&gt;</CODE> <A HREF="#IP" TITLE="IP - interrogative pronoun">IP</A></TD>
+<TD><div class=reveal> <I>which five</I> <div class=popup> <ul> <li>API: <CODE>mkIP (mkIDet which_IQuant (mkNum (mkNumeral n5_Unit)))</CODE> <li>Afr: <I>watter vyf</I> <li>Bul: <I>кои пет</I> <li>Cat: <I>quins cinc</I> <li>Dan: <I>hvilke fem</I> <li>Dut: <I>welke vijf</I> <li>Eng: <I>which five</I> <li>Fin: <I>mitkä viisi</I> <li>Fre: <I>quels cinq</I> <li>Ger: <I>welche fünf</I> <li>Ita: <I>quali cinque</I> <li>Nep: <I>कुन पाँच</I> <li>Nor: <I>hvilke fem</I> <li>Pes: <I>کدام پنج</I> <li>Pnb: <I>كیڑے پنج</I> <li>Pol: <I>których pięciu</I> <li>Ron: <I>care cinci</I> <li>Rus: <I>которые пять</I> <li>Spa: <I>qué cinco</I> <li>Swe: <I>vilka fem</I> <li>Urd: <I>كون سے پانچ</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>mkIP</CODE></TD>
+<TD><A HREF="#IQuant">IQuant</A> <CODE>-&gt;</CODE> <A HREF="#CN" TITLE="CN - common noun (without determiner)">CN</A> <CODE>-&gt;</CODE> <A HREF="#IP" TITLE="IP - interrogative pronoun">IP</A></TD>
+<TD><div class=reveal> <I>which big city</I> <div class=popup> <ul> <li>API: <CODE>mkIP which_IQuant (mkCN big_A city_N)</CODE> <li>Afr: <I>watter groot stad</I> <li>Bul: <I>кой голям град</I> <li>Cat: <I>quin ciutat grosa</I> <li>Dan: <I>hvilken stor by</I> <li>Dut: <I>welke grote stad</I> <li>Eng: <I>which big city</I> <li>Fin: <I>mikä suuri kaupunki</I> <li>Fre: <I>quelle grande ville</I> <li>Ger: <I>welche große Stadt</I> <li>Ita: <I>quale grande città</I> <li>Nep: <I>कुन ठुलो शहर</I> <li>Nor: <I>hvilken stor by</I> <li>Pes: <I>کدام شهر بزرگ</I> <li>Pnb: <I>{s : ResPnb.Case =&gt; Str</I> <li>Pol: <I>którego dużego miasta</I> <li>Ron: <I>care oraş mare</I> <li>Rus: <I>который большой город</I> <li>Spa: <I>qué grande ciudad</I> <li>Swe: <I>vilken stor stad</I> <li>Urd: <I>كون سا بڑا شہر</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>mkIP</CODE></TD>
+<TD><A HREF="#IQuant">IQuant</A> <CODE>-&gt;</CODE> <A HREF="#Num" TITLE="Num - number determining element">Num</A> <CODE>-&gt;</CODE> <A HREF="#CN" TITLE="CN - common noun (without determiner)">CN</A> <CODE>-&gt;</CODE> <A HREF="#IP" TITLE="IP - interrogative pronoun">IP</A></TD>
+<TD><div class=reveal> <I>which five big cities</I> <div class=popup> <ul> <li>API: <CODE>mkIP which_IQuant (mkNum (mkNumeral n5_Unit)) (mkCN big_A city_N)</CODE> <li>Afr: <I>watter vyf groot stede</I> <li>Bul: <I>кои пет големи града</I> <li>Cat: <I>quins cinc ciutats groses</I> <li>Dan: <I>hvilke fem store byer</I> <li>Dut: <I>welke vijf grote stadden</I> <li>Eng: <I>which five big cities</I> <li>Fin: <I>mitkä viisi suurta kaupunkia</I> <li>Fre: <I>quelles cinq grandes villes</I> <li>Ger: <I>welche fünf großen Städte</I> <li>Ita: <I>quali cinque grandi città</I> <li>Nep: <I>कुन पाँच ठुला शहरहरु</I> <li>Nor: <I>hvilke fem store byer</I> <li>Pes: <I>کدام پنج شهر بزرگ</I> <li>Pnb: <I>كیڑے پنج وڈے شہر</I> <li>Pol: <I>których pięciu dużych miast</I> <li>Ron: <I>care cinci oraşe mari</I> <li>Rus: <I>которые пять большие городы</I> <li>Spa: <I>qué cinco grandes ciudades</I> <li>Swe: <I>vilka fem stora städer</I> <li>Urd: <I>كون سے پانچ بڑے شہر</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>mkIP</CODE></TD>
+<TD><A HREF="#IQuant">IQuant</A> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A> <CODE>-&gt;</CODE> <A HREF="#IP" TITLE="IP - interrogative pronoun">IP</A></TD>
+<TD><div class=reveal> <I>which city</I> <div class=popup> <ul> <li>API: <CODE>mkIP which_IQuant city_N</CODE> <li>Afr: <I>watter stad</I> <li>Bul: <I>кой град</I> <li>Cat: <I>quin ciutat</I> <li>Dan: <I>hvilken by</I> <li>Dut: <I>welke stad</I> <li>Eng: <I>which city</I> <li>Fin: <I>mikä kaupunki</I> <li>Fre: <I>quelle ville</I> <li>Ger: <I>welche Stadt</I> <li>Ita: <I>quale città</I> <li>Nep: <I>कुन शहर</I> <li>Nor: <I>hvilken by</I> <li>Pes: <I>کدام شهر</I> <li>Pnb: <I>{s : ResPnb.Case =&gt; Str</I> <li>Pol: <I>którego miasta</I> <li>Ron: <I>care oraş</I> <li>Rus: <I>который город</I> <li>Spa: <I>qué ciudad</I> <li>Swe: <I>vilken stad</I> <li>Urd: <I>كون سا شہر</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>mkIP</CODE></TD>
+<TD><A HREF="#IP" TITLE="IP - interrogative pronoun">IP</A> <CODE>-&gt;</CODE> <A HREF="#Adv" TITLE="Adv - verb-phrase-modifying adverb">Adv</A> <CODE>-&gt;</CODE> <A HREF="#IP" TITLE="IP - interrogative pronoun">IP</A></TD>
+<TD><div class=reveal> <I>who in Paris</I> <div class=popup> <ul> <li>API: <CODE>mkIP who_IP (mkAdv in_Prep (mkNP paris_PN))</CODE> <li>Afr: <I>wie in Parys</I> <li>Bul: <I>кой в Париж</I> <li>Cat: <I>qui en Paris</I> <li>Dan: <I>hvem i Paris</I> <li>Dut: <I>wie in Parijs</I> <li>Eng: <I>who in Paris</I> <li>Fin: <I>kuka Pariisissa</I> <li>Fre: <I>qui dans Paris</I> <li>Ger: <I>wer in Paris</I> <li>Ita: <I>chi in Parigi</I> <li>Nep: <I>पेरिस मा को</I> <li>Nor: <I>hvem i Paris</I> <li>Pes: <I>چه کسی در پاریس</I> <li>Pnb: <I>پیرس وچ كون</I> <li>Pol: <I>kogo w Paryżu</I> <li>Ron: <I>cine în Paris</I> <li>Rus: <I>кто в Париже</I> <li>Spa: <I>quién en Paris</I> <li>Swe: <I>vem i Paris</I> <li>Urd: <I>پیرس میں كون</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>whatPl_IP</CODE></TD>
+<TD><A HREF="#IP" TITLE="IP - interrogative pronoun">IP</A></TD>
+<TD><div class=reveal> <I>what</I> <div class=popup> <ul> <li>API: <CODE>whatPl_IP</CODE> <li>Afr: <I>wat</I> <li>Bul: <I>какви</I> <li>Cat: <I>què</I> <li>Dan: <I>hvilke</I> <li>Dut: <I>wat</I> <li>Eng: <I>what</I> <li>Fin: <I>mitkä</I> <li>Fre: <I>pre {"que"; "qu'" / strs {"a"; "à"; "â"; "e"; "é"; "è"; "ê¨"; "h";</I> <li>Ger: <I>was</I> <li>Ita: <I>che</I> <li>Nep: <I>के</I> <li>Nor: <I>hva</I> <li>Pes: <I>چه چیزهایی</I> <li>Pnb: <I>*</I> <li>Pol: <I>czego</I> <li>Ron: <I>ce</I> <li>Rus: <I>что</I> <li>Spa: <I>qué</I> <li>Swe: <I>vad</I> <li>Urd: <I>كیا</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>whatSg_IP</CODE></TD>
+<TD><A HREF="#IP" TITLE="IP - interrogative pronoun">IP</A></TD>
+<TD><div class=reveal> <I>what</I> <div class=popup> <ul> <li>API: <CODE>whatSg_IP</CODE> <li>Afr: <I>wat</I> <li>Bul: <I>какъв</I> <li>Cat: <I>què</I> <li>Dan: <I>hvad</I> <li>Dut: <I>wat</I> <li>Eng: <I>what</I> <li>Fin: <I>mikä</I> <li>Fre: <I>pre {"que"; "qu'" / strs {"a"; "à"; "â"; "e"; "é"; "è"; "ê¨"; "h";</I> <li>Ger: <I>was</I> <li>Ita: <I>che</I> <li>Nep: <I>के</I> <li>Nor: <I>hva</I> <li>Pes: <I>چه چیزی</I> <li>Pnb: <I>كیا</I> <li>Pol: <I>czego</I> <li>Ron: <I>ce</I> <li>Rus: <I>что</I> <li>Spa: <I>qué</I> <li>Swe: <I>vad</I> <li>Urd: <I>كیا</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>what_IP</CODE></TD>
+<TD><A HREF="#IP" TITLE="IP - interrogative pronoun">IP</A></TD>
+<TD><div class=reveal> <I>what</I> <div class=popup> <ul> <li>API: <CODE>mkUtt what_IP</CODE> <li>Afr: <I>wat</I> <li>Bul: <I>какъв</I> <li>Cat: <I>què</I> <li>Dan: <I>hvad</I> <li>Dut: <I>wat</I> <li>Eng: <I>what</I> <li>Fin: <I>mikä</I> <li>Fre: <I>pre {"que"; "qu'" / strs {"a"; "à"; "â"; "e"; "é"; "è"; "ê¨"; "h";</I> <li>Ger: <I>was</I> <li>Ita: <I>che</I> <li>Nep: <I>के</I> <li>Nor: <I>hva</I> <li>Pes: <I>چه چیزی</I> <li>Pnb: <I>كیا</I> <li>Pol: <I>co</I> <li>Ron: <I>ce</I> <li>Rus: <I>что</I> <li>Spa: <I>qué</I> <li>Swe: <I>vad</I> <li>Urd: <I>كیا</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>whoPl_IP</CODE></TD>
+<TD><A HREF="#IP" TITLE="IP - interrogative pronoun">IP</A></TD>
+<TD><div class=reveal> <I>who</I> <div class=popup> <ul> <li>API: <CODE>whoPl_IP</CODE> <li>Afr: <I>wie</I> <li>Bul: <I>кои</I> <li>Cat: <I>qui</I> <li>Dan: <I>hvilke</I> <li>Dut: <I>wie</I> <li>Eng: <I>who</I> <li>Fin: <I>ketkä</I> <li>Fre: <I>qui</I> <li>Ger: <I>wer</I> <li>Ita: <I>chi</I> <li>Nep: <I>को</I> <li>Nor: <I>hvilke</I> <li>Pes: <I>چه کسانی</I> <li>Pnb: <I>*</I> <li>Pol: <I>kogo</I> <li>Ron: <I>cine</I> <li>Rus: <I>кто</I> <li>Spa: <I>quién</I> <li>Swe: <I>vilka</I> <li>Urd: <I>كون</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>whoSg_IP</CODE></TD>
+<TD><A HREF="#IP" TITLE="IP - interrogative pronoun">IP</A></TD>
+<TD><div class=reveal> <I>who</I> <div class=popup> <ul> <li>API: <CODE>whoSg_IP</CODE> <li>Afr: <I>wie</I> <li>Bul: <I>кой</I> <li>Cat: <I>qui</I> <li>Dan: <I>hvem</I> <li>Dut: <I>wie</I> <li>Eng: <I>who</I> <li>Fin: <I>kuka</I> <li>Fre: <I>qui</I> <li>Ger: <I>wer</I> <li>Ita: <I>chi</I> <li>Nep: <I>को</I> <li>Nor: <I>hvem</I> <li>Pes: <I>چه کسی</I> <li>Pnb: <I>كون</I> <li>Pol: <I>kogo</I> <li>Ron: <I>cine</I> <li>Rus: <I>кто</I> <li>Spa: <I>quién</I> <li>Swe: <I>vem</I> <li>Urd: <I>كون</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>who_IP</CODE></TD>
+<TD><A HREF="#IP" TITLE="IP - interrogative pronoun">IP</A></TD>
+<TD><div class=reveal> <I>who</I> <div class=popup> <ul> <li>API: <CODE>mkUtt who_IP</CODE> <li>Afr: <I>wie</I> <li>Bul: <I>кой</I> <li>Cat: <I>qui</I> <li>Dan: <I>hvem</I> <li>Dut: <I>wie</I> <li>Eng: <I>who</I> <li>Fin: <I>kuka</I> <li>Fre: <I>qui</I> <li>Ger: <I>wer</I> <li>Ita: <I>chi</I> <li>Nep: <I>को</I> <li>Nor: <I>hvem</I> <li>Pes: <I>چه کسی</I> <li>Pnb: <I>كون</I> <li>Pol: <I>kto</I> <li>Ron: <I>cine</I> <li>Rus: <I>кто</I> <li>Spa: <I>quién</I> <li>Swe: <I>vem</I> <li>Urd: <I>كون</I> </ul> </div> </div></TD>
+</TR>
+</TABLE>
+
+<A NAME="IQuant"></A>
+<H2>IQuant</H2>
+
+<TABLE BORDER="1" CELLPADDING="4">
+<TR>
+<TH>Function</TH>
+<TH>Type</TH>
+<TH COLSPAN="2">Example</TH>
+</TR>
+<TR>
+<TD><CODE>which_IQuant</CODE></TD>
+<TD><A HREF="#IQuant">IQuant</A></TD>
+<TD><div class=reveal> <I>which house</I> <div class=popup> <ul> <li>API: <CODE>mkIP which_IQuant house_N</CODE> <li>Afr: <I>watter huis</I> <li>Bul: <I>коя къща</I> <li>Cat: <I>quin casa</I> <li>Dan: <I>hvilket hus</I> <li>Dut: <I>welk huis</I> <li>Eng: <I>which house</I> <li>Fin: <I>mikä talo</I> <li>Fre: <I>quelle maison</I> <li>Ger: <I>welches Haus</I> <li>Ita: <I>quale casa</I> <li>Nep: <I>कुन घर</I> <li>Nor: <I>hvilket hus</I> <li>Pes: <I>کدام خانه</I> <li>Pnb: <I>{s : ResPnb.Case =&gt; Str</I> <li>Pol: <I>którego domu</I> <li>Ron: <I>care casă</I> <li>Rus: <I>который дом</I> <li>Spa: <I>qué casa</I> <li>Swe: <I>vilket hus</I> <li>Urd: <I>كون سا گھر</I> </ul> </div> </div></TD>
+</TR>
+</TABLE>
+
+<A NAME="Imp"></A>
+<H2>Imp - imperative</H2>
+
+<TABLE BORDER="1" CELLPADDING="4">
+<TR>
+<TH>Function</TH>
+<TH>Type</TH>
+<TH COLSPAN="2">Example</TH>
+</TR>
+<TR>
+<TD><CODE>mkImp</CODE></TD>
+<TD><A HREF="#VP" TITLE="VP - verb phrase">VP</A> <CODE>-&gt;</CODE> <A HREF="#Imp" TITLE="Imp - imperative">Imp</A></TD>
+<TD><div class=reveal> <I>come to my house</I> <div class=popup> <ul> <li>API: <CODE>mkImp (mkVP (mkVP come_V) (mkAdv to_Prep (mkNP i_Pron house_N)))</CODE> <li>Afr: <I>kom na my huis</I> <li>Bul: <I>ела до моята къща</I> <li>Cat: <I>venir a la meva casa</I> <li>Dan: <I>kom til mit hus</I> <li>Dut: <I>komt u naar mijn huis</I> <li>Eng: <I>come to my house</I> <li>Fin: <I>Prelude.(!!): index too large</I> <li>Fre: <I>venez à pre {"ma"; "mon" / strs {"a"; "à"; "â"; "e"; "é"; "è";</I> <li>Ger: <I>kommen Sie nach meinem Haus / Hause</I> <li>Ita: <I>venire alla mia casa</I> <li>Nep: <I>आउ मेरो घर सम्म</I> <li>Nor: <I>komm til mit hus</I> <li>Pes: <I>به خانه ی من بیا</I> <li>Pnb: <I>آنا میرا گھر نوں</I> <li>Pol: <I>do mojego domu przychodź</I> <li>Ron: <I>sã vii la casa mea</I> <li>Rus: <I>приходи к моему дому</I> <li>Spa: <I>venir a mi casa</I> <li>Swe: <I>kom till mitt hus</I> <li>Urd: <I>آنا میرے گھر كو</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>mkImp</CODE></TD>
+<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#Imp" TITLE="Imp - imperative">Imp</A></TD>
+<TD><div class=reveal> <I>come</I> <div class=popup> <ul> <li>API: <CODE>mkImp come_V</CODE> <li>Afr: <I>kom</I> <li>Bul: <I>ела</I> <li>Cat: <I>venir</I> <li>Dan: <I>kom</I> <li>Dut: <I>komt u</I> <li>Eng: <I>come</I> <li>Fin: <I>Prelude.(!!): index too large</I> <li>Fre: <I>venez</I> <li>Ger: <I>kommen Sie</I> <li>Ita: <I>venire</I> <li>Nep: <I>आउ</I> <li>Nor: <I>komm</I> <li>Pes: <I>بیا</I> <li>Pnb: <I>آنا</I> <li>Pol: <I>przychodź</I> <li>Ron: <I>sã vii</I> <li>Rus: <I>приходи</I> <li>Spa: <I>venir</I> <li>Swe: <I>kom</I> <li>Urd: <I>آنا</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>mkImp</CODE></TD>
+<TD><A HREF="#V2" TITLE="V2 - two-place verb">V2</A> <CODE>-&gt;</CODE> <A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A> <CODE>-&gt;</CODE> <A HREF="#Imp" TITLE="Imp - imperative">Imp</A></TD>
+<TD><div class=reveal> <I>buy it</I> <div class=popup> <ul> <li>API: <CODE>mkImp buy_V2 it_NP</CODE> <li>Afr: <I>koop</I> <li>Bul: <I>купи него</I> <li>Cat: <I>comprar</I> <li>Dan: <I>køb det</I> <li>Dut: <I>koopt u</I> <li>Eng: <I>buy it</I> <li>Fin: <I>Prelude.(!!): index too large</I> <li>Fre: <I>achetez pre {"le"; "l'" / strs {"a"; "à"; "â"; "e"; "é"; "è"; "ê¨";</I> <li>Ger: <I>kaufen Sie</I> <li>Ita: <I>comprare lo</I> <li>Nep: <I>यो किन्</I> <li>Nor: <I>kjøp det</I> <li>Pes: <I>آن را بخر</I> <li>Pnb: <I>اینوں خریدنا</I> <li>Pol: <I>kupuj je</I> <li>Ron: <I>sã îl cumperi</I> <li>Rus: <I>покупай его</I> <li>Spa: <I>comprar</I> <li>Swe: <I>köp det</I> <li>Urd: <I>اس كو خریدنا</I> </ul> </div> </div></TD>
+</TR>
+</TABLE>
+
+<A NAME="ImpForm"></A>
+<H2>ImpForm</H2>
+
+<TABLE BORDER="1" CELLPADDING="4">
+<TR>
+<TH>Function</TH>
+<TH>Type</TH>
+<TH COLSPAN="2">Example</TH>
+</TR>
+<TR>
+<TD><CODE>pluralImpForm</CODE></TD>
+<TD><A HREF="#ImpForm">ImpForm</A></TD>
+<TD><div class=reveal> <I>be men</I> <div class=popup> <ul> <li>API: <CODE>mkUtt pluralImpForm (mkImp (mkVP man_N))</CODE> <li>Afr: <I>wees mans</I> <li>Bul: <I>бъдете мъже</I> <li>Cat: <I>sigueu homes</I> <li>Dan: <I>var mænd</I> <li>Dut: <I>wezen mannen</I> <li>Eng: <I>be men</I> <li>Fin: <I>Prelude.(!!): index too large</I> <li>Fre: <I>soyez hommes</I> <li>Ger: <I>seid Männer</I> <li>Ita: <I>siate uomini</I> <li>Nep: <I>मान्छेहरु हऔ</I> <li>Nor: <I>var menn</I> <li>Pes: <I>مردان</I> <li>Pnb: <I>بندے</I> <li>Pol: <I>bądźcie mężczyzna</I> <li>Ron: <I>fiţi oameni</I> <li>Rus: <I>будьте человеками</I> <li>Spa: <I>sed hombres</I> <li>Swe: <I>var män</I> <li>Urd: <I>آدمی</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>politeImpForm</CODE></TD>
+<TD><A HREF="#ImpForm">ImpForm</A></TD>
+<TD><div class=reveal> <I>be a man</I> <div class=popup> <ul> <li>API: <CODE>mkUtt politeImpForm (mkImp (mkVP man_N))</CODE> <li>Afr: <I>wees 'n man</I> <li>Bul: <I>бъдете мъже</I> <li>Cat: <I>ser home</I> <li>Dan: <I>var en mand</I> <li>Dut: <I>weest u man</I> <li>Eng: <I>be a man</I> <li>Fin: <I>Prelude.(!!): index too large</I> <li>Fre: <I>soyez homme</I> <li>Ger: <I>seien Sie ein Mann</I> <li>Ita: <I>essere uomo</I> <li>Nep: <I>मान्छे होउ</I> <li>Nor: <I>var en mann</I> <li>Pes: <I>مرد</I> <li>Pnb: <I>بندہ</I> <li>Pol: <I>bądź mężczyzna</I> <li>Ron: <I>sã fii om</I> <li>Rus: <I>будь человеком</I> <li>Spa: <I>ser hombre</I> <li>Swe: <I>var en man</I> <li>Urd: <I>آدمی</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>singularImpForm</CODE></TD>
+<TD><A HREF="#ImpForm">ImpForm</A></TD>
+<TD><div class=reveal> <I>be a man</I> <div class=popup> <ul> <li>API: <CODE>mkUtt singularImpForm (mkImp (mkVP man_N))</CODE> <li>Afr: <I>wees 'n man</I> <li>Bul: <I>бъди мъж</I> <li>Cat: <I>sigues home</I> <li>Dan: <I>var en mand</I> <li>Dut: <I>wees man</I> <li>Eng: <I>be a man</I> <li>Fin: <I>Prelude.(!!): index too large</I> <li>Fre: <I>sois homme</I> <li>Ger: <I>sei ein Mann</I> <li>Ita: <I>sii uomo</I> <li>Nep: <I>मान्छे होउ</I> <li>Nor: <I>var en mann</I> <li>Pes: <I>مرد</I> <li>Pnb: <I>بندہ</I> <li>Pol: <I>bądź mężczyzna</I> <li>Ron: <I>fii om</I> <li>Rus: <I>будь человеком</I> <li>Spa: <I>sé hombre</I> <li>Swe: <I>var en man</I> <li>Urd: <I>آدمی</I> </ul> </div> </div></TD>
+</TR>
+</TABLE>
+
+<A NAME="Interj"></A>
+<H2>Interj - interjection</H2>
+
+<P>
+Lexical category, constructors given in
+<A HREF="#RParadigms">lexical paradigms</A>.
+</P>
+
+<A NAME="ListAP"></A>
+<H2>ListAP</H2>
+
+<TABLE BORDER="1" CELLPADDING="4">
+<TR>
+<TH>Function</TH>
+<TH>Type</TH>
+<TH COLSPAN="2">Example</TH>
+</TR>
+<TR>
+<TD><CODE>mkListAP</CODE></TD>
+<TD><A HREF="#AP" TITLE="AP - adjectival phrase">AP</A> <CODE>-&gt;</CODE> <A HREF="#AP" TITLE="AP - adjectival phrase">AP</A> <CODE>-&gt;</CODE> <A HREF="#ListAP">ListAP</A></TD>
+<TD><I>list of two</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkListAP</CODE></TD>
+<TD><A HREF="#AP" TITLE="AP - adjectival phrase">AP</A> <CODE>-&gt;</CODE> <A HREF="#ListAP">ListAP</A> <CODE>-&gt;</CODE> <A HREF="#ListAP">ListAP</A></TD>
+<TD><I>list of more</I></TD>
+</TR>
+</TABLE>
+
+<A NAME="ListAdv"></A>
+<H2>ListAdv</H2>
+
+<TABLE BORDER="1" CELLPADDING="4">
+<TR>
+<TH>Function</TH>
+<TH>Type</TH>
+<TH COLSPAN="2">Example</TH>
+</TR>
+<TR>
+<TD><CODE>mkListAdv</CODE></TD>
+<TD><A HREF="#Adv" TITLE="Adv - verb-phrase-modifying adverb">Adv</A> <CODE>-&gt;</CODE> <A HREF="#Adv" TITLE="Adv - verb-phrase-modifying adverb">Adv</A> <CODE>-&gt;</CODE> <A HREF="#ListAdv">ListAdv</A></TD>
+<TD><I>list of two</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkListAdv</CODE></TD>
+<TD><A HREF="#Adv" TITLE="Adv - verb-phrase-modifying adverb">Adv</A> <CODE>-&gt;</CODE> <A HREF="#ListAdv">ListAdv</A> <CODE>-&gt;</CODE> <A HREF="#ListAdv">ListAdv</A></TD>
+<TD><I>list of more</I></TD>
+</TR>
+</TABLE>
+
+<A NAME="ListNP"></A>
+<H2>ListNP</H2>
+
+<TABLE BORDER="1" CELLPADDING="4">
+<TR>
+<TH>Function</TH>
+<TH>Type</TH>
+<TH COLSPAN="2">Example</TH>
+</TR>
+<TR>
+<TD><CODE>mkListNP</CODE></TD>
+<TD><A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A> <CODE>-&gt;</CODE> <A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A> <CODE>-&gt;</CODE> <A HREF="#ListNP">ListNP</A></TD>
+<TD><I>list of two</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkListNP</CODE></TD>
+<TD><A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A> <CODE>-&gt;</CODE> <A HREF="#ListNP">ListNP</A> <CODE>-&gt;</CODE> <A HREF="#ListNP">ListNP</A></TD>
+<TD><I>list of more</I></TD>
+</TR>
+</TABLE>
+
+<A NAME="ListRS"></A>
+<H2>ListRS</H2>
+
+<TABLE BORDER="1" CELLPADDING="4">
+<TR>
+<TH>Function</TH>
+<TH>Type</TH>
+<TH COLSPAN="2">Example</TH>
+</TR>
+<TR>
+<TD><CODE>mkListRS</CODE></TD>
+<TD><A HREF="#RS" TITLE="RS - relative">RS</A> <CODE>-&gt;</CODE> <A HREF="#RS" TITLE="RS - relative">RS</A> <CODE>-&gt;</CODE> <A HREF="#ListRS">ListRS</A></TD>
+<TD><I>list of two</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkListRS</CODE></TD>
+<TD><A HREF="#RS" TITLE="RS - relative">RS</A> <CODE>-&gt;</CODE> <A HREF="#ListRS">ListRS</A> <CODE>-&gt;</CODE> <A HREF="#ListRS">ListRS</A></TD>
+<TD><I>list of more</I></TD>
+</TR>
+</TABLE>
+
+<A NAME="ListS"></A>
+<H2>ListS</H2>
+
+<TABLE BORDER="1" CELLPADDING="4">
+<TR>
+<TH>Function</TH>
+<TH>Type</TH>
+<TH COLSPAN="2">Example</TH>
+</TR>
+<TR>
+<TD><CODE>mkListS</CODE></TD>
+<TD><A HREF="#S" TITLE="S - declarative sentence">S</A> <CODE>-&gt;</CODE> <A HREF="#S" TITLE="S - declarative sentence">S</A> <CODE>-&gt;</CODE> <A HREF="#ListS">ListS</A></TD>
+<TD><I>list of two</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkListS</CODE></TD>
+<TD><A HREF="#S" TITLE="S - declarative sentence">S</A> <CODE>-&gt;</CODE> <A HREF="#ListS">ListS</A> <CODE>-&gt;</CODE> <A HREF="#ListS">ListS</A></TD>
+<TD><I>list of more</I></TD>
+</TR>
+</TABLE>
+
+<A NAME="N"></A>
+<H2>N - common noun</H2>
+
+<P>
+Lexical category, constructors given in
+<A HREF="#RParadigms">lexical paradigms</A>.
+</P>
+
+<A NAME="N2"></A>
+<H2>N2 - relational noun</H2>
+
+<P>
+Lexical category, constructors given in
+<A HREF="#RParadigms">lexical paradigms</A>.
+</P>
+
+<A NAME="N3"></A>
+<H2>N3 - three-place relational noun</H2>
+
+<P>
+Lexical category, constructors given in
+<A HREF="#RParadigms">lexical paradigms</A>.
+</P>
+
+<A NAME="NP"></A>
+<H2>NP - noun phrase (subject or object)</H2>
+
+<TABLE BORDER="1" CELLPADDING="4">
+<TR>
+<TH>Function</TH>
+<TH>Type</TH>
+<TH COLSPAN="2">Example</TH>
+</TR>
+<TR>
+<TD><CODE>everybody_NP</CODE></TD>
+<TD><A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A></TD>
+<TD><div class=reveal> <I>everybody</I> <div class=popup> <ul> <li>API: <CODE>everybody_NP</CODE> <li>Afr: <I>almal</I> <li>Bul: <I>всеки</I> <li>Cat: <I>// <li>Dan: //alle// <li>Dut: //alle// <li>Eng: //everybody// <li>Fin: //jokainen// <li>Fre: //</I> <li>Ger: <I>jeder</I> <li>Ita: <I>// <li>Nep: //सवौ जाना// <li>Nor: //alle// <li>Pes: //*// <li>Pnb: //ہر كوی// <li>Pol: //wszystkich// <li>Ron: //</I> <li>Rus: <I>все</I> <li>Spa: <I>''</I> <li>Swe: <I>alla</I> <li>Urd: <I>ہر كوی</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>everything_NP</CODE></TD>
+<TD><A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A></TD>
+<TD><div class=reveal> <I>everything</I> <div class=popup> <ul> <li>API: <CODE>everything_NP</CODE> <li>Afr: <I>alles</I> <li>Bul: <I>всичко</I> <li>Cat: <I>// <li>Dan: //alt// <li>Dut: //alles// <li>Eng: //everything// <li>Fin: //kaikki// <li>Fre: //</I> <li>Ger: <I>alles</I> <li>Ita: <I>// <li>Nep: //हारेक कुरा// <li>Nor: //alt// <li>Pes: //*// <li>Pnb: //ہر شے// <li>Pol: //wszystkiego// <li>Ron: //// <li>Rus: //всё// <li>Spa: //</I> <li>Swe: <I>allting</I> <li>Urd: <I>ہر چیز</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>he_NP</CODE></TD>
+<TD><A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A></TD>
+<TD><div class=reveal> <I>he</I> <div class=popup> <ul> <li>API: <CODE>mkUtt he_NP</CODE> <li>Afr: <I>hy</I> <li>Bul: <I>той</I> <li>Cat: <I>ell</I> <li>Dan: <I>ham</I> <li>Dut: <I>hij</I> <li>Eng: <I>he</I> <li>Fin: <I>hän</I> <li>Fre: <I>lui</I> <li>Ger: <I>er</I> <li>Ita: <I>lui</I> <li>Nep: <I>उ</I> <li>Nor: <I>ham</I> <li>Pes: <I>او</I> <li>Pnb: <I>او</I> <li>Pol: <I>on</I> <li>Ron: <I>el</I> <li>Rus: <I>его</I> <li>Spa: <I>él</I> <li>Swe: <I>honom</I> <li>Urd: <I>وہ</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>i_NP</CODE></TD>
+<TD><A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A></TD>
+<TD><div class=reveal> <I>I</I> <div class=popup> <ul> <li>API: <CODE>mkUtt i_NP</CODE> <li>Afr: <I>ek</I> <li>Bul: <I>аз</I> <li>Cat: <I>mi</I> <li>Dan: <I>mig</I> <li>Dut: <I>ik</I> <li>Eng: <I>I</I> <li>Fin: <I>minä</I> <li>Fre: <I>moi</I> <li>Ger: <I>ich</I> <li>Ita: <I>me</I> <li>Nep: <I>म</I> <li>Nor: <I>meg</I> <li>Pes: <I>من</I> <li>Pnb: <I>میں</I> <li>Pol: <I>ja</I> <li>Ron: <I>eu</I> <li>Rus: <I>меня</I> <li>Spa: <I>mí</I> <li>Swe: <I>mig</I> <li>Urd: <I>میں</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>it_NP</CODE></TD>
+<TD><A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A></TD>
+<TD><div class=reveal> <I>it</I> <div class=popup> <ul> <li>API: <CODE>mkUtt it_NP</CODE> <li>Afr: <I>dit</I> <li>Bul: <I>то</I> <li>Cat: <I>ell</I> <li>Dan: <I>det</I> <li>Dut: <I>het</I> <li>Eng: <I>it</I> <li>Fin: <I>se</I> <li>Fre: <I>lui</I> <li>Ger: <I>es</I> <li>Ita: <I>lui</I> <li>Nep: <I>यो</I> <li>Nor: <I>det</I> <li>Pes: <I>آن</I> <li>Pnb: <I>اے</I> <li>Pol: <I>ono</I> <li>Ron: <I>''</I> <li>Rus: <I>его</I> <li>Spa: <I>él</I> <li>Swe: <I>det</I> <li>Urd: <I>یہ</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>mkNP</CODE></TD>
+<TD><A 'HREF="#Quant" TITLE="Quant - quantifier ('nucleus' of Det)"'>Quant</A> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A> <CODE>-&gt;</CODE> <A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A></TD>
+<TD><div class=reveal> <I>this man</I> <div class=popup> <ul> <li>API: <CODE>mkUtt (mkNP this_Quant man_N)</CODE> <li>Afr: <I>hierdie man</I> <li>Bul: <I>този мъж</I> <li>Cat: <I>aquest home</I> <li>Dan: <I>denne mand</I> <li>Dut: <I>deze man</I> <li>Eng: <I>this man</I> <li>Fin: <I>tämä mies</I> <li>Fre: <I>cet homme</I> <li>Ger: <I>dieser Mann</I> <li>Ita: <I>questo uomo</I> <li>Nep: <I>यो मान्छे</I> <li>Nor: <I>denne mannen</I> <li>Pes: <I>این مرد</I> <li>Pnb: <I>اے بندہ</I> <li>Pol: <I>ten mężczyzna</I> <li>Ron: <I>acest om</I> <li>Rus: <I>этот человек</I> <li>Spa: <I>este hombre</I> <li>Swe: <I>den här mannen</I> <li>Urd: <I>یہ آدمی</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>mkNP</CODE></TD>
+<TD><A 'HREF="#Quant" TITLE="Quant - quantifier ('nucleus' of Det)"'>Quant</A> <CODE>-&gt;</CODE> <A HREF="#CN" TITLE="CN - common noun (without determiner)">CN</A> <CODE>-&gt;</CODE> <A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A></TD>
+<TD><div class=reveal> <I>this old man</I> <div class=popup> <ul> <li>API: <CODE>mkUtt (mkNP this_Quant (mkCN old_A man_N))</CODE> <li>Afr: <I>hierdie ou man</I> <li>Bul: <I>този стар мъж</I> <li>Cat: <I>aquest home vell</I> <li>Dan: <I>denne gamle mand</I> <li>Dut: <I>deze oude man</I> <li>Eng: <I>this old man</I> <li>Fin: <I>tämä vanha mies</I> <li>Fre: <I>ce vieux homme</I> <li>Ger: <I>dieser alte Mann</I> <li>Ita: <I>questo vecchio uomo</I> <li>Nep: <I>यो बुढो मान्छे</I> <li>Nor: <I>denne gamle mannen</I> <li>Pes: <I>این مرد پیر</I> <li>Pnb: <I>اے بوڈا بندہ</I> <li>Pol: <I>ten stary mężczyzna</I> <li>Ron: <I>acest om vechi</I> <li>Rus: <I>этот старый человек</I> <li>Spa: <I>este viejo hombre</I> <li>Swe: <I>den här gamla mannen</I> <li>Urd: <I>یہ بوڑھا آدمی</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>mkNP</CODE></TD>
+<TD><A 'HREF="#Quant" TITLE="Quant - quantifier ('nucleus' of Det)"'>Quant</A> <CODE>-&gt;</CODE> <A HREF="#Num" TITLE="Num - number determining element">Num</A> <CODE>-&gt;</CODE> <A HREF="#CN" TITLE="CN - common noun (without determiner)">CN</A> <CODE>-&gt;</CODE> <A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A></TD>
+<TD><div class=reveal> <I>these five old men</I> <div class=popup> <ul> <li>API: <CODE>mkUtt (mkNP this_Quant (mkNum (mkNumeral n5_Unit)) (mkCN old_A man_N))</CODE> <li>Afr: <I>hierdie vyf ou mans</I> <li>Bul: <I>тези петима стари мъже</I> <li>Cat: <I>aquests cinc homes vells</I> <li>Dan: <I>disse fem gamle mænd</I> <li>Dut: <I>deze vijf oude mannen</I> <li>Eng: <I>these five old men</I> <li>Fin: <I>nämä viisi vanhaa miestä</I> <li>Fre: <I>ces cinq vieux hommes</I> <li>Ger: <I>diese fünf alten Männer</I> <li>Ita: <I>questi cinque vecchi uomini</I> <li>Nep: <I>यी पाँच बुढा मान्छेहरु</I> <li>Nor: <I>disse fem gamle mennen</I> <li>Pes: <I>این پنج مرد پیر</I> <li>Pnb: <I>اے پنج بوڈے بندے</I> <li>Pol: <I>tych pięciu starych mężczyzn</I> <li>Ron: <I>aceşti cinci oameni vechi</I> <li>Rus: <I>эти пять старые человеки</I> <li>Spa: <I>estos cinco viejos hombres</I> <li>Swe: <I>de här fem gamla männen</I> <li>Urd: <I>یہ پانچ بوڑھے آدمی</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>mkNP</CODE></TD>
+<TD><A 'HREF="#Quant" TITLE="Quant - quantifier ('nucleus' of Det)"'>Quant</A> <CODE>-&gt;</CODE> <A HREF="#Num" TITLE="Num - number determining element">Num</A> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A> <CODE>-&gt;</CODE> <A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A></TD>
+<TD><div class=reveal> <I>these five men</I> <div class=popup> <ul> <li>API: <CODE>mkUtt (mkNP this_Quant (mkNum (mkNumeral n5_Unit)) man_N)</CODE> <li>Afr: <I>hierdie vyf mans</I> <li>Bul: <I>тези петима мъже</I> <li>Cat: <I>aquests cinc homes</I> <li>Dan: <I>disse fem mænd</I> <li>Dut: <I>deze vijf mannen</I> <li>Eng: <I>these five men</I> <li>Fin: <I>nämä viisi miestä</I> <li>Fre: <I>ces cinq hommes</I> <li>Ger: <I>diese fünf Männer</I> <li>Ita: <I>questi cinque uomini</I> <li>Nep: <I>यी पाँच मान्छेहरु</I> <li>Nor: <I>disse fem mennen</I> <li>Pes: <I>این پنج مرد</I> <li>Pnb: <I>اے پنج بندے</I> <li>Pol: <I>tych pięciu mężczyzn</I> <li>Ron: <I>aceşti cinci oameni</I> <li>Rus: <I>эти пять человеки</I> <li>Spa: <I>estos cinco hombres</I> <li>Swe: <I>de här fem männen</I> <li>Urd: <I>یہ پانچ آدمی</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>mkNP</CODE></TD>
+<TD><A HREF="#Det" TITLE="Det - determiner phrase">Det</A> <CODE>-&gt;</CODE> <A HREF="#CN" TITLE="CN - common noun (without determiner)">CN</A> <CODE>-&gt;</CODE> <A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A></TD>
+<TD><div class=reveal> <I>the five old men</I> <div class=popup> <ul> <li>API: <CODE>mkUtt (mkNP (mkDet the_Quant (mkNum (mkNumeral n5_Unit))) (mkCN old_A man_N))</CODE> <li>Afr: <I>die vyf ou mans</I> <li>Bul: <I>петимата стари мъже</I> <li>Cat: <I>els cinc homes vells</I> <li>Dan: <I>de fem gamle mænd</I> <li>Dut: <I>de vijf oude mannen</I> <li>Eng: <I>the five old men</I> <li>Fin: <I>viisi vanhaa miestä</I> <li>Fre: <I>les cinq vieux hommes</I> <li>Ger: <I>die fünf alten Männer</I> <li>Ita: <I>i cinque vecchi uomini</I> <li>Nep: <I>पाँच बुढा मान्छेहरु</I> <li>Nor: <I>de fem gamle mennen</I> <li>Pes: <I>پنج مرد پیر</I> <li>Pnb: <I>پنج بوڈے بندے</I> <li>Pol: <I>pięciu starych mężczyzn</I> <li>Ron: <I>cei cinci oameni vechi</I> <li>Rus: <I>пять старые человеки</I> <li>Spa: <I>los cinco viejos hombres</I> <li>Swe: <I>de fem gamla männen</I> <li>Urd: <I>پانچ بوڑھے آدمی</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>mkNP</CODE></TD>
+<TD><A HREF="#Det" TITLE="Det - determiner phrase">Det</A> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A> <CODE>-&gt;</CODE> <A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A></TD>
+<TD><div class=reveal> <I>the five men</I> <div class=popup> <ul> <li>API: <CODE>mkUtt (mkNP (mkDet the_Quant (mkNum (mkNumeral n5_Unit))) man_N)</CODE> <li>Afr: <I>die vyf mans</I> <li>Bul: <I>петимата мъже</I> <li>Cat: <I>els cinc homes</I> <li>Dan: <I>de fem mændene</I> <li>Dut: <I>de vijf mannen</I> <li>Eng: <I>the five men</I> <li>Fin: <I>viisi miestä</I> <li>Fre: <I>les cinq hommes</I> <li>Ger: <I>die fünf Männer</I> <li>Ita: <I>i cinque uomini</I> <li>Nep: <I>पाँच मान्छेहरु</I> <li>Nor: <I>de fem mennen</I> <li>Pes: <I>پنج مرد</I> <li>Pnb: <I>پنج بندے</I> <li>Pol: <I>pięciu mężczyzn</I> <li>Ron: <I>cei cinci oameni</I> <li>Rus: <I>пять человеки</I> <li>Spa: <I>los cinco hombres</I> <li>Swe: <I>de fem männen</I> <li>Urd: <I>پانچ آدمی</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>mkNP</CODE></TD>
+<TD><A HREF="#Numeral" TITLE="Numeral - cardinal or ordinal in words">Numeral</A> <CODE>-&gt;</CODE> <A HREF="#CN" TITLE="CN - common noun (without determiner)">CN</A> <CODE>-&gt;</CODE> <A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A></TD>
+<TD><div class=reveal> <I>fifty old men</I> <div class=popup> <ul> <li>API: <CODE>mkUtt (mkNP (mkNumeral (tenfoldSub100 n5_Unit)) (mkCN old_A man_N))</CODE> <li>Afr: <I>vyftig ou mans</I> <li>Bul: <I>петдесетима стари мъже</I> <li>Cat: <I>cinquanta homes vells</I> <li>Dan: <I>halvtreds gamle mænd</I> <li>Dut: <I>vijftig oude mannen</I> <li>Eng: <I>fifty old men</I> <li>Fin: <I>viisikymmentä vanhaa miestä</I> <li>Fre: <I>cinquante vieux hommes</I> <li>Ger: <I>fünfzig alte Männer</I> <li>Ita: <I>cinquanta vecchi uomini</I> <li>Nep: <I>पचास बुढा मान्छेहरु</I> <li>Nor: <I>femti gamle menn</I> <li>Pes: <I>یک پنجاه مرد پیر</I> <li>Pnb: <I>پنجاہ بوڈے بندے</I> <li>Pol: <I>pięćdziesięciu starych mężczyzn</I> <li>Ron: <I>cincizeci de oameni vechi</I> <li>Rus: <I>пятьдесят старые человеки</I> <li>Spa: <I>cinquenta viejos hombres</I> <li>Swe: <I>femtio gamla män</I> <li>Urd: <I>پچاس بوڑھے آدمی</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>mkNP</CODE></TD>
+<TD><A HREF="#Numeral" TITLE="Numeral - cardinal or ordinal in words">Numeral</A> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A> <CODE>-&gt;</CODE> <A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A></TD>
+<TD><div class=reveal> <I>fifty men</I> <div class=popup> <ul> <li>API: <CODE>mkUtt (mkNP (mkNumeral (tenfoldSub100 n5_Unit)) man_N)</CODE> <li>Afr: <I>vyftig mans</I> <li>Bul: <I>петдесетима мъже</I> <li>Cat: <I>cinquanta homes</I> <li>Dan: <I>halvtreds mænd</I> <li>Dut: <I>vijftig mannen</I> <li>Eng: <I>fifty men</I> <li>Fin: <I>viisikymmentä miestä</I> <li>Fre: <I>cinquante hommes</I> <li>Ger: <I>fünfzig Männer</I> <li>Ita: <I>cinquanta uomini</I> <li>Nep: <I>पचास मान्छेहरु</I> <li>Nor: <I>femti menn</I> <li>Pes: <I>یک پنجاه مرد</I> <li>Pnb: <I>پنجاہ بندے</I> <li>Pol: <I>pięćdziesięciu mężczyzn</I> <li>Ron: <I>cincizeci de oameni</I> <li>Rus: <I>пятьдесят человеки</I> <li>Spa: <I>cinquenta hombres</I> <li>Swe: <I>femtio män</I> <li>Urd: <I>پچاس آدمی</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>mkNP</CODE></TD>
+<TD><A HREF="#Digits" TITLE="Digits - cardinal or ordinal in digits">Digits</A> <CODE>-&gt;</CODE> <A HREF="#CN" TITLE="CN - common noun (without determiner)">CN</A> <CODE>-&gt;</CODE> <A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A></TD>
+<TD><div class=reveal> <I>5 1 old men</I> <div class=popup> <ul> <li>API: <CODE>mkUtt (mkNP (mkDigits n5_Dig (mkDigits n1_Dig)) (mkCN old_A man_N))</CODE> <li>Afr: <I>5 1 ou mans</I> <li>Bul: <I>5 1 стари мъже</I> <li>Cat: <I>5 1 homes vells</I> <li>Dan: <I>5 1 gamle mænd</I> <li>Dut: <I>5 1 oude mannen</I> <li>Eng: <I>5 1 old men</I> <li>Fin: <I>5 1 vanhaa miestä</I> <li>Fre: <I>5 1 vieux hommes</I> <li>Ger: <I>5 1 alte Männer</I> <li>Ita: <I>5 1 vecchi uomini</I> <li>Nep: <I>५१ बुढा मान्छेहरु</I> <li>Nor: <I>5 1 gamle menn</I> <li>Pes: <I>یک 5 1 مرد پیر</I> <li>Pnb: <I>۱۵ بوڈے بندے</I> <li>Pol: <I>5 1 starzy mężczyźni</I> <li>Ron: <I>5 1 de oameni vechi</I> <li>Rus: <I>5 1 старые человеки</I> <li>Spa: <I>5 1 viejos hombres</I> <li>Swe: <I>5 1 gamla män</I> <li>Urd: <I>۱۵ بوڑھے آدمی</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>mkNP</CODE></TD>
+<TD><A HREF="#Digits" TITLE="Digits - cardinal or ordinal in digits">Digits</A> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A> <CODE>-&gt;</CODE> <A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A></TD>
+<TD><div class=reveal> <I>5 1 men</I> <div class=popup> <ul> <li>API: <CODE>mkUtt (mkNP (mkDigits n5_Dig (mkDigits n1_Dig)) man_N)</CODE> <li>Afr: <I>5 1 mans</I> <li>Bul: <I>5 1 мъже</I> <li>Cat: <I>5 1 homes</I> <li>Dan: <I>5 1 mænd</I> <li>Dut: <I>5 1 mannen</I> <li>Eng: <I>5 1 men</I> <li>Fin: <I>5 1 miestä</I> <li>Fre: <I>5 1 hommes</I> <li>Ger: <I>5 1 Männer</I> <li>Ita: <I>5 1 uomini</I> <li>Nep: <I>५१ मान्छेहरु</I> <li>Nor: <I>5 1 menn</I> <li>Pes: <I>یک 5 1 مرد</I> <li>Pnb: <I>۱۵ بندے</I> <li>Pol: <I>5 1 mężczyźni</I> <li>Ron: <I>5 1 de oameni</I> <li>Rus: <I>5 1 человеки</I> <li>Spa: <I>5 1 hombres</I> <li>Swe: <I>5 1 män</I> <li>Urd: <I>۱۵ آدمی</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>mkNP</CODE></TD>
+<TD><A HREF="#Card" TITLE="Card - cardinal number">Card</A> <CODE>-&gt;</CODE> <A HREF="#CN" TITLE="CN - common noun (without determiner)">CN</A> <CODE>-&gt;</CODE> <A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A></TD>
+<TD><I>forty-five old men</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkNP</CODE></TD>
+<TD><A HREF="#Card" TITLE="Card - cardinal number">Card</A> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A> <CODE>-&gt;</CODE> <A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A></TD>
+<TD><I>forty-five men</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkNP</CODE></TD>
+<TD><A HREF="#Pron" TITLE="Pron - personal pronoun">Pron</A> <CODE>-&gt;</CODE> <A HREF="#CN" TITLE="CN - common noun (without determiner)">CN</A> <CODE>-&gt;</CODE> <A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A></TD>
+<TD><div class=reveal> <I>my old man</I> <div class=popup> <ul> <li>API: <CODE>mkUtt (mkNP i_Pron (mkCN old_A man_N))</CODE> <li>Afr: <I>my oud man</I> <li>Bul: <I>моят стар мъж</I> <li>Cat: <I>el meu home vell</I> <li>Dan: <I>min gamle mand</I> <li>Dut: <I>mijn oude man</I> <li>Eng: <I>my old man</I> <li>Fin: <I>minun vanha mieheni</I> <li>Fre: <I>mon vieux homme</I> <li>Ger: <I>mein alter Mann</I> <li>Ita: <I>il mio vecchio uomo</I> <li>Nep: <I>मेरो बुढो मान्छे</I> <li>Nor: <I>min gamle mann</I> <li>Pes: <I>مرد پیر من</I> <li>Pnb: <I>میرا بوڈا بندہ</I> <li>Pol: <I>mój stary mężczyzna</I> <li>Ron: <I>omul vechi meu</I> <li>Rus: <I>моего старый человек</I> <li>Spa: <I>mi viejo hombre</I> <li>Swe: <I>min gamla man</I> <li>Urd: <I>میرا بوڑھا آدمی</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>mkNP</CODE></TD>
+<TD><A HREF="#Pron" TITLE="Pron - personal pronoun">Pron</A> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A> <CODE>-&gt;</CODE> <A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A></TD>
+<TD><div class=reveal> <I>my man</I> <div class=popup> <ul> <li>API: <CODE>mkUtt (mkNP i_Pron man_N)</CODE> <li>Afr: <I>my man</I> <li>Bul: <I>моят мъж</I> <li>Cat: <I>el meu home</I> <li>Dan: <I>min mand</I> <li>Dut: <I>mijn man</I> <li>Eng: <I>my man</I> <li>Fin: <I>minun mieheni</I> <li>Fre: <I>mon homme</I> <li>Ger: <I>mein Mann</I> <li>Ita: <I>il mio uomo</I> <li>Nep: <I>मेरो मान्छे</I> <li>Nor: <I>min mann</I> <li>Pes: <I>مرد من</I> <li>Pnb: <I>میرا بندہ</I> <li>Pol: <I>mój mężczyzna</I> <li>Ron: <I>omul meu</I> <li>Rus: <I>моего человек</I> <li>Spa: <I>mi hombre</I> <li>Swe: <I>min man</I> <li>Urd: <I>میرا آدمی</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>mkNP</CODE></TD>
+<TD><A HREF="#PN" TITLE="PN - proper name">PN</A> <CODE>-&gt;</CODE> <A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A></TD>
+<TD><div class=reveal> <I>Paris</I> <div class=popup> <ul> <li>API: <CODE>mkUtt (mkNP paris_PN)</CODE> <li>Afr: <I>Parys</I> <li>Bul: <I>Париж</I> <li>Cat: <I>Paris</I> <li>Dan: <I>Paris</I> <li>Dut: <I>Parijs</I> <li>Eng: <I>Paris</I> <li>Fin: <I>Pariisi</I> <li>Fre: <I>Paris</I> <li>Ger: <I>Paris</I> <li>Ita: <I>Parigi</I> <li>Nep: <I>पेरिस</I> <li>Nor: <I>Paris</I> <li>Pes: <I>پاریس</I> <li>Pnb: <I>پیرس</I> <li>Pol: <I>Paryż</I> <li>Ron: <I>Paris</I> <li>Rus: <I>Париж</I> <li>Spa: <I>Paris</I> <li>Swe: <I>Paris</I> <li>Urd: <I>پیرس</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>mkNP</CODE></TD>
+<TD><A HREF="#Pron" TITLE="Pron - personal pronoun">Pron</A> <CODE>-&gt;</CODE> <A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A></TD>
+<TD><div class=reveal> <I>we</I> <div class=popup> <ul> <li>API: <CODE>mkUtt (mkNP we_Pron)</CODE> <li>Afr: <I>ons</I> <li>Bul: <I>ние</I> <li>Cat: <I>nosaltres</I> <li>Dan: <I>os</I> <li>Dut: <I>we</I> <li>Eng: <I>we</I> <li>Fin: <I>me</I> <li>Fre: <I>nous</I> <li>Ger: <I>wir</I> <li>Ita: <I>noi</I> <li>Nep: <I>हामीहरु</I> <li>Nor: <I>oss</I> <li>Pes: <I>ما</I> <li>Pnb: <I>اسی</I> <li>Pol: <I>my</I> <li>Ron: <I>noi</I> <li>Rus: <I>нас</I> <li>Spa: <I>nosotros</I> <li>Swe: <I>oss</I> <li>Urd: <I>ہم</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>mkNP</CODE></TD>
+<TD><A 'HREF="#Quant" TITLE="Quant - quantifier ('nucleus' of Det)"'>Quant</A> <CODE>-&gt;</CODE> <A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A></TD>
+<TD><div class=reveal> <I>this</I> <div class=popup> <ul> <li>API: <CODE>mkUtt (mkNP this_Quant)</CODE> <li>Afr: <I>hierdie</I> <li>Bul: <I>това</I> <li>Cat: <I>aquest</I> <li>Dan: <I>dette</I> <li>Dut: <I>dit</I> <li>Eng: <I>this</I> <li>Fin: <I>tämä</I> <li>Fre: <I>celui-ci</I> <li>Ger: <I>dieses</I> <li>Ita: <I>questo</I> <li>Nep: <I>यो</I> <li>Nor: <I>dette</I> <li>Pes: <I>این</I> <li>Pnb: <I>اے</I> <li>Pol: <I>ten</I> <li>Ron: <I>acesta</I> <li>Rus: <I>это</I> <li>Spa: <I>este</I> <li>Swe: <I>det här</I> <li>Urd: <I>یہ</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>mkNP</CODE></TD>
+<TD><A 'HREF="#Quant" TITLE="Quant - quantifier ('nucleus' of Det)"'>Quant</A> <CODE>-&gt;</CODE> <A HREF="#Num" TITLE="Num - number determining element">Num</A> <CODE>-&gt;</CODE> <A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A></TD>
+<TD><div class=reveal> <I>these five</I> <div class=popup> <ul> <li>API: <CODE>mkUtt (mkNP this_Quant (mkNum (mkNumeral n5_Unit)))</CODE> <li>Afr: <I>hierdie vyf</I> <li>Bul: <I>тези пет</I> <li>Cat: <I>aquests cinc</I> <li>Dan: <I>disse fem</I> <li>Dut: <I>deze vijf</I> <li>Eng: <I>these five</I> <li>Fin: <I>nämä viisi</I> <li>Fre: <I>ces cinq</I> <li>Ger: <I>diese fünf</I> <li>Ita: <I>questi cinque</I> <li>Nep: <I>यी पाँच</I> <li>Nor: <I>disse fem</I> <li>Pes: <I>این پنج</I> <li>Pnb: <I>اے پنج</I> <li>Pol: <I>tych pięciu</I> <li>Ron: <I>aceştia cinci</I> <li>Rus: <I>эти пять</I> <li>Spa: <I>estos cinco</I> <li>Swe: <I>de här fem</I> <li>Urd: <I>یہ پانچ</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>mkNP</CODE></TD>
+<TD><A HREF="#Det" TITLE="Det - determiner phrase">Det</A> <CODE>-&gt;</CODE> <A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A></TD>
+<TD><div class=reveal> <I>the five best</I> <div class=popup> <ul> <li>API: <CODE>mkUtt (mkNP (mkDet the_Quant (mkNum (mkNumeral n5_Unit)) (mkOrd good_A)))</CODE> <li>Afr: <I>hulle vyf beste</I> <li>Bul: <I>петте най - добри</I> <li>Cat: <I>els cinc millors</I> <li>Dan: <I>de fem bedste</I> <li>Dut: <I>die vijf beste</I> <li>Eng: <I>the five best</I> <li>Fin: <I>ne viisi parhaimmat</I> <li>Fre: <I>les cinq meilleurs</I> <li>Ger: <I>die fünf besten</I> <li>Ita: <I>i cinque migliori</I> <li>Nep: <I>सबभन्दा राम्रो पाँच</I> <li>Nor: <I>de fem beste</I> <li>Pes: <I>پنج خوب ترین</I> <li>Pnb: <I>پنج اچھا</I> <li>Pol: <I>pięciu najlepszych</I> <li>Ron: <I>cei mai buni cinci</I> <li>Rus: <I>пять хорошие</I> <li>Spa: <I>los cinco mejores</I> <li>Swe: <I>de fem bästa</I> <li>Urd: <I>پانچ سب سے اچھا</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>mkNP</CODE></TD>
+<TD><A HREF="#CN" TITLE="CN - common noun (without determiner)">CN</A> <CODE>-&gt;</CODE> <A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A></TD>
+<TD><div class=reveal> <I>old beer</I> <div class=popup> <ul> <li>API: <CODE>mkUtt (mkNP (mkCN old_A beer_N))</CODE> <li>Afr: <I>oud bier</I> <li>Bul: <I>стара бира</I> <li>Cat: <I>cervesa vell</I> <li>Dan: <I>gammelt øl</I> <li>Dut: <I>oud bier</I> <li>Eng: <I>old beer</I> <li>Fin: <I>vanha olut</I> <li>Fre: <I>pre {"de"; "d'" / strs {"a"; "à"; "â"; "e"; "é"; "è"; "ê¨"; "h";</I> <li>Ger: <I>altes Bier</I> <li>Ita: <I>della vecchia birra</I> <li>Nep: <I>बुढो बियर</I> <li>Nor: <I>gammelt øl</I> <li>Pes: <I>آبجوی پیر</I> <li>Pnb: <I>بوڈی شراب</I> <li>Pol: <I>stare piwo</I> <li>Ron: <I>bere veche</I> <li>Rus: <I>старое пиво</I> <li>Spa: <I>vieja cerveza</I> <li>Swe: <I>gammalt öl</I> <li>Urd: <I>بوڑھا بییر</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>mkNP</CODE></TD>
+<TD><A HREF="#N" TITLE="N - common noun">N</A> <CODE>-&gt;</CODE> <A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A></TD>
+<TD><div class=reveal> <I>beer</I> <div class=popup> <ul> <li>API: <CODE>mkUtt (mkNP beer_N)</CODE> <li>Afr: <I>bier</I> <li>Bul: <I>бира</I> <li>Cat: <I>cervesa</I> <li>Dan: <I>øl</I> <li>Dut: <I>bier</I> <li>Eng: <I>beer</I> <li>Fin: <I>olut</I> <li>Fre: <I>pre {"de"; "d'" / strs {"a"; "à"; "â"; "e"; "é"; "è"; "ê¨"; "h";</I> <li>Ger: <I>Bier</I> <li>Ita: <I>della birra</I> <li>Nep: <I>बियर</I> <li>Nor: <I>øl</I> <li>Pes: <I>آبجو</I> <li>Pnb: <I>شراب</I> <li>Pol: <I>piwo</I> <li>Ron: <I>bere</I> <li>Rus: <I>пиво</I> <li>Spa: <I>cerveza</I> <li>Swe: <I>öl</I> <li>Urd: <I>بییر</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>mkNP</CODE></TD>
+<TD><A HREF="#Predet" TITLE="Predet - predeterminer (prefixed Quant)">Predet</A> <CODE>-&gt;</CODE> <A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A> <CODE>-&gt;</CODE> <A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A></TD>
+<TD><div class=reveal> <I>only this woman</I> <div class=popup> <ul> <li>API: <CODE>mkUtt (mkNP only_Predet (mkNP this_Det woman_N))</CODE> <li>Afr: <I>slegs hierdie vrou</I> <li>Bul: <I>само тази жена</I> <li>Cat: <I>nomÈs aquesta dona</I> <li>Dan: <I>kun denne kvinde</I> <li>Dut: <I>slechts deze vrouw</I> <li>Eng: <I>only this woman</I> <li>Fin: <I>vain tämä nainen</I> <li>Fre: <I>seulement cette femme</I> <li>Ger: <I>nur diese Frau</I> <li>Ita: <I>soltanto questa donna</I> <li>Nep: <I>मात्र यो आईमाई</I> <li>Nor: <I>kun denne kvinna</I> <li>Pes: <I>فقط این زن</I> <li>Pnb: <I>صرف اے زنانی</I> <li>Pol: <I>tylko tej kobiety</I> <li>Ron: <I>doar această femeie</I> <li>Rus: <I>единственную эту женщину</I> <li>Spa: <I>solamente esta mujer</I> <li>Swe: <I>bara den här kvinnan</I> <li>Urd: <I>صرف یہ عورت</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>mkNP</CODE></TD>
+<TD><A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A> <CODE>-&gt;</CODE> <A HREF="#V2" TITLE="V2 - two-place verb">V2</A> <CODE>-&gt;</CODE> <A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A></TD>
+<TD><div class=reveal> <I>the man seen</I> <div class=popup> <ul> <li>API: <CODE>mkUtt (mkNP (mkNP the_Det man_N) see_V2)</CODE> <li>Afr: <I>die man gesien</I> <li>Bul: <I>мъжът видян</I> <li>Cat: <I>l' home vist</I> <li>Dan: <I>manden set</I> <li>Dut: <I>de man gezien</I> <li>Eng: <I>the man seen</I> <li>Fin: <I>mies nähtyinä</I> <li>Fre: <I>l' homme vu</I> <li>Ger: <I>der Mann gesehen</I> <li>Ita: <I>l' uomo visto</I> <li>Nep: <I>मान्छे हेर् एको</I> <li>Nor: <I>mannen sett</I> <li>Pes: <I>مرد دیده شده</I> <li>Pnb: <I>ویكھیا بندہ</I> <li>Pol: <I>mężczyzna zobaczony</I> <li>Ron: <I>omul văzut</I> <li>Rus: <I>человек видеть</I> <li>Spa: <I>el hombre visto</I> <li>Swe: <I>mannen sedd</I> <li>Urd: <I>دیكھا آدمی</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>mkNP</CODE></TD>
+<TD><A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A> <CODE>-&gt;</CODE> <A HREF="#Adv" TITLE="Adv - verb-phrase-modifying adverb">Adv</A> <CODE>-&gt;</CODE> <A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A></TD>
+<TD><div class=reveal> <I>Paris today</I> <div class=popup> <ul> <li>API: <CODE>mkUtt (mkNP (mkNP paris_PN) today_Adv)</CODE> <li>Afr: <I>Parys vandag</I> <li>Bul: <I>Париж днес</I> <li>Cat: <I>Paris avui</I> <li>Dan: <I>Paris idag</I> <li>Dut: <I>Parijs vandaag</I> <li>Eng: <I>Paris today</I> <li>Fin: <I>Pariisi tänään</I> <li>Fre: <I>Paris aujourd'hui</I> <li>Ger: <I>Paris heute</I> <li>Ita: <I>Parigi oggi</I> <li>Nep: <I>पेरिस आज</I> <li>Nor: <I>Paris idag</I> <li>Pes: <I>پاریس امروز</I> <li>Pnb: <I>پیرس اج</I> <li>Pol: <I>Paryż dziś</I> <li>Ron: <I>Paris astăzi</I> <li>Rus: <I>*</I> <li>Spa: <I>Paris hoy</I> <li>Swe: <I>Paris idag</I> <li>Urd: <I>آج پیرس</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>mkNP</CODE></TD>
+<TD><A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A> <CODE>-&gt;</CODE> <A HREF="#RS" TITLE="RS - relative">RS</A> <CODE>-&gt;</CODE> <A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A></TD>
+<TD><div class=reveal> <I>John , who walks</I> <div class=popup> <ul> <li>API: <CODE>mkUtt (mkNP (mkNP john_PN) (mkRS (mkRCl which_RP (mkVP walk_V))))</CODE> <li>Afr: <I>Jan , wat loop</I> <li>Bul: <I>Джон който ходи</I> <li>Cat: <I>Joan que camina</I> <li>Dan: <I>John , som går</I> <li>Dut: <I>Jan , dat loopt</I> <li>Eng: <I>John , who walks</I> <li>Fin: <I>Jussi , joka kävelee</I> <li>Fre: <I>Jean qui marche</I> <li>Ger: <I>Johann , das geht</I> <li>Ita: <I>Giovanni che cammina</I> <li>Nep: <I>जोन , जो हिड्छ</I> <li>Nor: <I>John , som går</I> <li>Pes: <I>جان که راه می رود</I> <li>Pnb: <I>جان جیڑا چلدا اے</I> <li>Pol: <I>Jan , który spaceruje</I> <li>Ron: <I>Ion care merge</I> <li>Rus: <I>Ивана , которого гуляет</I> <li>Spa: <I>Juan que camina</I> <li>Swe: <I>Johan , som går</I> <li>Urd: <I>جان , جو چلتا ہے</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>mkNP</CODE></TD>
+<TD><A HREF="#Conj" TITLE="Conj - conjunction">Conj</A> <CODE>-&gt;</CODE> <A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A> <CODE>-&gt;</CODE> <A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A> <CODE>-&gt;</CODE> <A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A></TD>
+<TD><div class=reveal> <I>this woman or John</I> <div class=popup> <ul> <li>API: <CODE>mkUtt (mkNP or_Conj (mkNP this_Det woman_N) (mkNP john_PN))</CODE> <li>Afr: <I>hierdie vrou of Jan</I> <li>Bul: <I>тази жена или Джон</I> <li>Cat: <I>aquesta dona o Joan</I> <li>Dan: <I>denne kvinde eller John</I> <li>Dut: <I>deze vrouw of Jan</I> <li>Eng: <I>this woman or John</I> <li>Fin: <I>tämä nainen tai Jussi</I> <li>Fre: <I>cette femme ou Jean</I> <li>Ger: <I>diese Frau oder Johann</I> <li>Ita: <I>questa donna o Giovanni</I> <li>Nep: <I>यो आईमाई अथवा जोन</I> <li>Nor: <I>denne kvinna eller John</I> <li>Pes: <I>این زن یا جان</I> <li>Pnb: <I>اے زنانی یا جان</I> <li>Pol: <I>ta kobieta lub Jan</I> <li>Ron: <I>această femeie sau Ion</I> <li>Rus: <I>эту женщину или Ивана</I> <li>Spa: <I>esta mujer o Juan</I> <li>Swe: <I>den här kvinnan eller Johan</I> <li>Urd: <I>یہ عورت یا جان</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>mkNP</CODE></TD>
+<TD><A HREF="#Conj" TITLE="Conj - conjunction">Conj</A> <CODE>-&gt;</CODE> <A HREF="#ListNP">ListNP</A> <CODE>-&gt;</CODE> <A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A></TD>
+<TD><div class=reveal> <I>this woman , John or I</I> <div class=popup> <ul> <li>API: <CODE>mkUtt (mkNP or_Conj (mkListNP (mkNP this_Det woman_N) (mkListNP (mkNP john_PN) i_NP)))</CODE> <li>Afr: <I>hierdie vrou , Jan of ek</I> <li>Bul: <I>тази жена , Джон или аз</I> <li>Cat: <I>aquesta dona , Joan o mi</I> <li>Dan: <I>denne kvinde , John eller mig</I> <li>Dut: <I>deze vrouw , Jan of ik</I> <li>Eng: <I>this woman , John or I</I> <li>Fin: <I>tämä nainen , Jussi tai minä</I> <li>Fre: <I>cette femme , Jean ou moi</I> <li>Ger: <I>diese Frau , Johann oder ich</I> <li>Ita: <I>questa donna , Giovanni o me</I> <li>Nep: <I>यो आईमाई , जोन अथवा म</I> <li>Nor: <I>denne kvinna , John eller meg</I> <li>Pes: <I>این زن , جان یا من</I> <li>Pnb: <I>اے زنانی , جان یا میں</I> <li>Pol: <I>ta kobieta , Jan lub ja</I> <li>Ron: <I>această femeie , Ion sau eu</I> <li>Rus: <I>Ивана , меня или эту женщину</I> <li>Spa: <I>esta mujer , Juan o mí</I> <li>Swe: <I>den här kvinnan , Johan eller mig</I> <li>Urd: <I>یہ عورت , جان یا میں</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>nobody_NP</CODE></TD>
+<TD><A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A></TD>
+<TD><div class=reveal> <I>nobody</I> <div class=popup> <ul> <li>API: <CODE>nobody_NP</CODE> <li>Afr: <I>niemand</I> <li>Bul: <I>*</I> <li>Cat: <I>// <li>Dan: //*// <li>Dut: //niemand// <li>Eng: //nobody// <li>Fin: //ei kukaan// <li>Fre: //</I> <li>Ger: <I>niemand</I> <li>Ita: <I>// <li>Nep: //केही पनी// <li>Nor: //*// <li>Pes: //*// <li>Pnb: //كوی نہیں// <li>Pol: //nikogo// <li>Ron: //</I> <li>Rus: <I>*</I> <li>Spa: <I>*</I> <li>Swe: <I>ingen</I> <li>Urd: <I>كوی نہیں</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>nothing_NP</CODE></TD>
+<TD><A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A></TD>
+<TD><div class=reveal> <I>nothing</I> <div class=popup> <ul> <li>API: <CODE>nothing_NP</CODE> <li>Afr: <I>niks</I> <li>Bul: <I>*</I> <li>Cat: <I>// <li>Dan: //*// <li>Dut: //niets// <li>Eng: //nothing// <li>Fin: //ei mikään// <li>Fre: //</I> <li>Ger: <I>nichts</I> <li>Ita: <I>// <li>Nep: //केही पनी// <li>Nor: //*// <li>Pes: //*// <li>Pnb: //كچھ نیں// <li>Pol: //niczego// <li>Ron: //</I> <li>Rus: <I>*</I> <li>Spa: <I>*</I> <li>Swe: <I>inget</I> <li>Urd: <I>كوی چیز نہیں</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>she_NP</CODE></TD>
+<TD><A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A></TD>
+<TD><div class=reveal> <I>she</I> <div class=popup> <ul> <li>API: <CODE>mkUtt she_NP</CODE> <li>Afr: <I>sy</I> <li>Bul: <I>тя</I> <li>Cat: <I>ella</I> <li>Dan: <I>hende</I> <li>Dut: <I>ze</I> <li>Eng: <I>she</I> <li>Fin: <I>hän</I> <li>Fre: <I>elle</I> <li>Ger: <I>sie</I> <li>Ita: <I>lei</I> <li>Nep: <I>उनी</I> <li>Nor: <I>henne</I> <li>Pes: <I>او</I> <li>Pnb: <I>او</I> <li>Pol: <I>ona</I> <li>Ron: <I>ea</I> <li>Rus: <I>её</I> <li>Spa: <I>ella</I> <li>Swe: <I>henne</I> <li>Urd: <I>وہ</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>somebody_NP</CODE></TD>
+<TD><A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A></TD>
+<TD><div class=reveal> <I>somebody</I> <div class=popup> <ul> <li>API: <CODE>somebody_NP</CODE> <li>Afr: <I>iemand</I> <li>Bul: <I>някой</I> <li>Cat: <I>// <li>Dan: //nogen// <li>Dut: //iemand// <li>Eng: //somebody// <li>Fin: //joku// <li>Fre: //</I> <li>Ger: <I>jemand</I> <li>Ita: <I>// <li>Nep: //कोही// <li>Nor: //noen// <li>Pes: //*// <li>Pnb: //كوی// <li>Pol: //kogoś// <li>Ron: //</I> <li>Rus: <I>кто-то</I> <li>Spa: <I>''</I> <li>Swe: <I>någon</I> <li>Urd: <I>كوی</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>something_NP</CODE></TD>
+<TD><A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A></TD>
+<TD><div class=reveal> <I>something</I> <div class=popup> <ul> <li>API: <CODE>something_NP</CODE> <li>Afr: <I>iets</I> <li>Bul: <I>нещо</I> <li>Cat: <I>// <li>Dan: //noget// <li>Dut: //iets// <li>Eng: //something// <li>Fin: //jokin// <li>Fre: //</I> <li>Ger: <I>etwas</I> <li>Ita: <I>// <li>Nep: //केही कुरा// <li>Nor: //noe// <li>Pes: //*// <li>Pnb: //كوی شے// <li>Pol: //czegoś// <li>Ron: //</I> <li>Rus: <I>что-то</I> <li>Spa: <I>''</I> <li>Swe: <I>något</I> <li>Urd: <I>كوی چیز</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>that_NP</CODE></TD>
+<TD><A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A></TD>
+<TD><div class=reveal> <I>that</I> <div class=popup> <ul> <li>API: <CODE>mkUtt that_NP</CODE> <li>Afr: <I>daardie</I> <li>Bul: <I>онова</I> <li>Cat: <I>aquell</I> <li>Dan: <I>det der</I> <li>Dut: <I>dat</I> <li>Eng: <I>that</I> <li>Fin: <I>tuo</I> <li>Fre: <I>celui-là</I> <li>Ger: <I>jenes</I> <li>Ita: <I>quello</I> <li>Nep: <I>त्ये</I> <li>Nor: <I>det der</I> <li>Pes: <I>آن</I> <li>Pnb: <I>وہ</I> <li>Pol: <I>tamten</I> <li>Ron: <I>acela</I> <li>Rus: <I>то</I> <li>Spa: <I>ese</I> <li>Swe: <I>det där</I> <li>Urd: <I>وہ</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>these_NP</CODE></TD>
+<TD><A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A></TD>
+<TD><div class=reveal> <I>these</I> <div class=popup> <ul> <li>API: <CODE>mkUtt these_NP</CODE> <li>Afr: <I>hierdie</I> <li>Bul: <I>тези</I> <li>Cat: <I>aquests</I> <li>Dan: <I>disse</I> <li>Dut: <I>deze</I> <li>Eng: <I>these</I> <li>Fin: <I>nämä</I> <li>Fre: <I>ceux-ci</I> <li>Ger: <I>diese</I> <li>Ita: <I>questi</I> <li>Nep: <I>यी</I> <li>Nor: <I>disse</I> <li>Pes: <I>این</I> <li>Pnb: <I>اے</I> <li>Pol: <I>ci</I> <li>Ron: <I>aceştia</I> <li>Rus: <I>эти</I> <li>Spa: <I>estos</I> <li>Swe: <I>de här</I> <li>Urd: <I>یہ</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>they_NP</CODE></TD>
+<TD><A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A></TD>
+<TD><div class=reveal> <I>they</I> <div class=popup> <ul> <li>API: <CODE>mkUtt they_NP</CODE> <li>Afr: <I>hulle</I> <li>Bul: <I>те</I> <li>Cat: <I>elles</I> <li>Dan: <I>dem</I> <li>Dut: <I>ze</I> <li>Eng: <I>they</I> <li>Fin: <I>he</I> <li>Fre: <I>eux</I> <li>Ger: <I>sie</I> <li>Ita: <I>loro</I> <li>Nep: <I>उनीहरु</I> <li>Nor: <I>dem</I> <li>Pes: <I>آن ها</I> <li>Pnb: <I>او</I> <li>Pol: <I>oni</I> <li>Ron: <I>ei</I> <li>Rus: <I>их</I> <li>Spa: <I>ellos</I> <li>Swe: <I>dem</I> <li>Urd: <I>وہ</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>this_NP</CODE></TD>
+<TD><A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A></TD>
+<TD><div class=reveal> <I>this</I> <div class=popup> <ul> <li>API: <CODE>mkUtt this_NP</CODE> <li>Afr: <I>hierdie</I> <li>Bul: <I>това</I> <li>Cat: <I>aquest</I> <li>Dan: <I>dette</I> <li>Dut: <I>dit</I> <li>Eng: <I>this</I> <li>Fin: <I>tämä</I> <li>Fre: <I>celui-ci</I> <li>Ger: <I>dieses</I> <li>Ita: <I>questo</I> <li>Nep: <I>यो</I> <li>Nor: <I>dette</I> <li>Pes: <I>این</I> <li>Pnb: <I>اے</I> <li>Pol: <I>ten</I> <li>Ron: <I>acesta</I> <li>Rus: <I>это</I> <li>Spa: <I>este</I> <li>Swe: <I>det här</I> <li>Urd: <I>یہ</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>those_NP</CODE></TD>
+<TD><A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A></TD>
+<TD><div class=reveal> <I>those</I> <div class=popup> <ul> <li>API: <CODE>mkUtt those_NP</CODE> <li>Afr: <I>daardie</I> <li>Bul: <I>онези</I> <li>Cat: <I>aquells</I> <li>Dan: <I>de der</I> <li>Dut: <I>die</I> <li>Eng: <I>those</I> <li>Fin: <I>nuo</I> <li>Fre: <I>ceux-là</I> <li>Ger: <I>jene</I> <li>Ita: <I>quelli</I> <li>Nep: <I>यिनीहरु</I> <li>Nor: <I>de der</I> <li>Pes: <I>آن</I> <li>Pnb: <I>وہ</I> <li>Pol: <I>tamci</I> <li>Ron: <I>aceia</I> <li>Rus: <I>те</I> <li>Spa: <I>esos</I> <li>Swe: <I>de där</I> <li>Urd: <I>وہ</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>we_NP</CODE></TD>
+<TD><A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A></TD>
+<TD><div class=reveal> <I>we</I> <div class=popup> <ul> <li>API: <CODE>mkUtt we_NP</CODE> <li>Afr: <I>ons</I> <li>Bul: <I>ние</I> <li>Cat: <I>nosaltres</I> <li>Dan: <I>os</I> <li>Dut: <I>we</I> <li>Eng: <I>we</I> <li>Fin: <I>me</I> <li>Fre: <I>nous</I> <li>Ger: <I>wir</I> <li>Ita: <I>noi</I> <li>Nep: <I>हामीहरु</I> <li>Nor: <I>oss</I> <li>Pes: <I>ما</I> <li>Pnb: <I>اسی</I> <li>Pol: <I>my</I> <li>Ron: <I>noi</I> <li>Rus: <I>нас</I> <li>Spa: <I>nosotros</I> <li>Swe: <I>oss</I> <li>Urd: <I>ہم</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>youPl_NP</CODE></TD>
+<TD><A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A></TD>
+<TD><div class=reveal> <I>you</I> <div class=popup> <ul> <li>API: <CODE>mkUtt youPl_NP</CODE> <li>Afr: <I>julle</I> <li>Bul: <I>вие</I> <li>Cat: <I>vosaltres</I> <li>Dan: <I>jer</I> <li>Dut: <I>jullie</I> <li>Eng: <I>you</I> <li>Fin: <I>te</I> <li>Fre: <I>vous</I> <li>Ger: <I>ihr</I> <li>Ita: <I>voi</I> <li>Nep: <I>तिमीहरु</I> <li>Nor: <I>dere</I> <li>Pes: <I>شما</I> <li>Pnb: <I>تسی</I> <li>Pol: <I>wy</I> <li>Ron: <I>voi</I> <li>Rus: <I>вас</I> <li>Spa: <I>vosotros</I> <li>Swe: <I>er</I> <li>Urd: <I>تم</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>youPol_NP</CODE></TD>
+<TD><A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A></TD>
+<TD><div class=reveal> <I>you</I> <div class=popup> <ul> <li>API: <CODE>mkUtt youPol_NP</CODE> <li>Afr: <I>u</I> <li>Bul: <I>вие</I> <li>Cat: <I>vosté</I> <li>Dan: <I>Dem</I> <li>Dut: <I>u</I> <li>Eng: <I>you</I> <li>Fin: <I>te</I> <li>Fre: <I>vous</I> <li>Ger: <I>Sie</I> <li>Ita: <I>Lei</I> <li>Nep: <I>तपाई</I> <li>Nor: <I>Dere</I> <li>Pes: <I>شما</I> <li>Pnb: <I>تسی</I> <li>Pol: <I>ty</I> <li>Ron: <I>dumneavoastră</I> <li>Rus: <I>вас</I> <li>Spa: <I>usted</I> <li>Swe: <I>er</I> <li>Urd: <I>آپ</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>you_NP</CODE></TD>
+<TD><A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A></TD>
+<TD><div class=reveal> <I>you</I> <div class=popup> <ul> <li>API: <CODE>mkUtt you_NP</CODE> <li>Afr: <I>jy</I> <li>Bul: <I>ти</I> <li>Cat: <I>tu</I> <li>Dan: <I>dig</I> <li>Dut: <I>je</I> <li>Eng: <I>you</I> <li>Fin: <I>sinä</I> <li>Fre: <I>toi</I> <li>Ger: <I>du</I> <li>Ita: <I>te</I> <li>Nep: <I>तिमी</I> <li>Nor: <I>deg</I> <li>Pes: <I>تو</I> <li>Pnb: <I>توں</I> <li>Pol: <I>ty</I> <li>Ron: <I>tu</I> <li>Rus: <I>тебя</I> <li>Spa: <I>tí</I> <li>Swe: <I>dig</I> <li>Urd: <I>تو</I> </ul> </div> </div></TD>
+</TR>
+</TABLE>
+
+<A NAME="Num"></A>
+<H2>Num - number determining element</H2>
+
+<TABLE BORDER="1" CELLPADDING="4">
+<TR>
+<TH>Function</TH>
+<TH>Type</TH>
+<TH COLSPAN="2">Example</TH>
+</TR>
+<TR>
+<TD><CODE>mkNum</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#Num" TITLE="Num - number determining element">Num</A></TD>
+<TD><I>thirty-five (given by "35"; range 1-999)</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkNum</CODE></TD>
+<TD><A HREF="#Numeral" TITLE="Numeral - cardinal or ordinal in words">Numeral</A> <CODE>-&gt;</CODE> <A HREF="#Num" TITLE="Num - number determining element">Num</A></TD>
+<TD><div class=reveal> <I>twenty</I> <div class=popup> <ul> <li>API: <CODE>mkNum (mkNumeral (tenfoldSub100 n2_Unit))</CODE> <li>Afr: <I>twintig</I> <li>Bul: <I>двадесетима</I> <li>Cat: <I>vint</I> <li>Dan: <I>tyve</I> <li>Dut: <I>twintig</I> <li>Eng: <I>twenty</I> <li>Fin: <I>kaksikymmentä</I> <li>Fre: <I>vingt</I> <li>Ger: <I>zwanzig</I> <li>Ita: <I>venti</I> <li>Nep: <I>बीस</I> <li>Nor: <I>tjue</I> <li>Pes: <I>بیست</I> <li>Pnb: <I>وی</I> <li>Pol: <I>dwadzieścia</I> <li>Ron: <I>douăzeci</I> <li>Rus: <I>двадцать</I> <li>Spa: <I>veinte</I> <li>Swe: <I>tjugo</I> <li>Urd: <I>بیس</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>mkNum</CODE></TD>
+<TD><A HREF="#Digits" TITLE="Digits - cardinal or ordinal in digits">Digits</A> <CODE>-&gt;</CODE> <A HREF="#Num" TITLE="Num - number determining element">Num</A></TD>
+<TD><div class=reveal> <I>2 1</I> <div class=popup> <ul> <li>API: <CODE>mkNum (mkDigits n2_Dig (mkDigits n1_Dig))</CODE> <li>Afr: <I>2 1</I> <li>Bul: <I>2 1</I> <li>Cat: <I>2 1</I> <li>Dan: <I>2 1</I> <li>Dut: <I>2 1</I> <li>Eng: <I>2 1</I> <li>Fin: <I>2 1</I> <li>Fre: <I>2 1</I> <li>Ger: <I>2 1</I> <li>Ita: <I>2 1</I> <li>Nep: <I>२१</I> <li>Nor: <I>2 1</I> <li>Pes: <I>2 1</I> <li>Pnb: <I>۱۲</I> <li>Pol: <I>2 1</I> <li>Ron: <I>2 1</I> <li>Rus: <I>2 1</I> <li>Spa: <I>2 1</I> <li>Swe: <I>2 1</I> <li>Urd: <I>۱۲</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>mkNum</CODE></TD>
+<TD><A HREF="#Digit">Digit</A> <CODE>-&gt;</CODE> <A HREF="#Num" TITLE="Num - number determining element">Num</A></TD>
+<TD><I>five</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkNum</CODE></TD>
+<TD><A HREF="#Card" TITLE="Card - cardinal number">Card</A> <CODE>-&gt;</CODE> <A HREF="#Num" TITLE="Num - number determining element">Num</A></TD>
+<TD><div class=reveal> <I>almost five</I> <div class=popup> <ul> <li>API: <CODE>mkNum (mkCard almost_AdN (mkCard (mkNumeral n5_Unit)))</CODE> <li>Afr: <I>byna vyf</I> <li>Bul: <I>почти петима</I> <li>Cat: <I>{s = table CommonRomance.Gender {</I> <li>Dan: <I>næsten fem</I> <li>Dut: <I>bijna vijf</I> <li>Eng: <I>almost five</I> <li>Fin: <I>melkein viisi</I> <li>Fre: <I>presque cinq</I> <li>Ger: <I>fast fünf</I> <li>Ita: <I>quasi cinque</I> <li>Nep: <I>झण्डै पाँच</I> <li>Nor: <I>nesten fem</I> <li>Pes: <I>تقریباً پنج</I> <li>Pnb: <I>تقریبا پنج</I> <li>Pol: <I>prawie pięć</I> <li>Ron: <I>aproape cinci</I> <li>Rus: <I>почти пять</I> <li>Spa: <I>casi cinco</I> <li>Swe: <I>nästan fem</I> <li>Urd: <I>تقریبا پانچ</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>mkNum</CODE></TD>
+<TD><A HREF="#AdN" TITLE="AdN - numeral-modifying adverb">AdN</A> <CODE>-&gt;</CODE> <A HREF="#Card" TITLE="Card - cardinal number">Card</A> <CODE>-&gt;</CODE> <A HREF="#Num" TITLE="Num - number determining element">Num</A></TD>
+<TD><div class=reveal> <I>almost five</I> <div class=popup> <ul> <li>API: <CODE>mkNum (mkCard almost_AdN (mkCard (mkNumeral n5_Unit)))</CODE> <li>Afr: <I>byna vyf</I> <li>Bul: <I>почти петима</I> <li>Cat: <I>{s = table CommonRomance.Gender {</I> <li>Dan: <I>næsten fem</I> <li>Dut: <I>bijna vijf</I> <li>Eng: <I>almost five</I> <li>Fin: <I>melkein viisi</I> <li>Fre: <I>presque cinq</I> <li>Ger: <I>fast fünf</I> <li>Ita: <I>quasi cinque</I> <li>Nep: <I>झण्डै पाँच</I> <li>Nor: <I>nesten fem</I> <li>Pes: <I>تقریباً پنج</I> <li>Pnb: <I>تقریبا پنج</I> <li>Pol: <I>prawie pięć</I> <li>Ron: <I>aproape cinci</I> <li>Rus: <I>почти пять</I> <li>Spa: <I>casi cinco</I> <li>Swe: <I>nästan fem</I> <li>Urd: <I>تقریبا پانچ</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>pluralNum</CODE></TD>
+<TD><A HREF="#Num" TITLE="Num - number determining element">Num</A></TD>
+<TD><I>plural</I></TD>
+</TR>
+<TR>
+<TD><CODE>singularNum</CODE></TD>
+<TD><A HREF="#Num" TITLE="Num - number determining element">Num</A></TD>
+<TD><I>singular</I></TD>
+</TR>
+</TABLE>
+
+<A NAME="Numeral"></A>
+<H2>Numeral - cardinal or ordinal in words</H2>
+
+<TABLE BORDER="1" CELLPADDING="4">
+<TR>
+<TH>Function</TH>
+<TH>Type</TH>
+<TH COLSPAN="2">Example</TH>
+</TR>
+<TR>
+<TD><CODE>mkNumeral</CODE></TD>
+<TD><A HREF="#Unit">Unit</A> <CODE>-&gt;</CODE> <A HREF="#Numeral" TITLE="Numeral - cardinal or ordinal in words">Numeral</A></TD>
+<TD><I>eight (coerce 1..9)</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkNumeral</CODE></TD>
+<TD><A HREF="#Sub100">Sub100</A> <CODE>-&gt;</CODE> <A HREF="#Numeral" TITLE="Numeral - cardinal or ordinal in words">Numeral</A></TD>
+<TD><I>twenty-five (coerce 1..99)</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkNumeral</CODE></TD>
+<TD><A HREF="#Sub1000">Sub1000</A> <CODE>-&gt;</CODE> <A HREF="#Numeral" TITLE="Numeral - cardinal or ordinal in words">Numeral</A></TD>
+<TD><div class=reveal> <I>nine hundred and ninety - nine</I> <div class=popup> <ul> <li>API: <CODE>mkNumeral (mkSub1000 n9_Unit (mkSub100 n9_Unit n9_Unit))</CODE> <li>Afr: <I>negehonderdnegeënnegentig</I> <li>Bul: <I>деветстотин деветдесет и деветима</I> <li>Cat: <I>nou -cents noranta- nou</I> <li>Dan: <I>ni hundrede og ni og halvfems</I> <li>Dut: <I>negenhonderdnegenennegentig</I> <li>Eng: <I>nine hundred and ninety - nine</I> <li>Fin: <I>yhdeksänsataayhdeksänkymmentäyhdeksän</I> <li>Fre: <I>neuf cent quatre-vingt - dix-neuf</I> <li>Ger: <I>neunhundertneunundneunzig</I> <li>Ita: <I>novecentonovantanove</I> <li>Nep: <I>नौ सय उनान्सय</I> <li>Nor: <I>ni hundre og nitti ni</I> <li>Pes: <I>نهصد و نود و نه</I> <li>Pnb: <I>نو سو نڑینوے</I> <li>Pol: <I>dziewięćset dziewięćdziesiąt dziewięć</I> <li>Ron: <I>nouă sute nouăzeci şi nouă</I> <li>Rus: <I>девятьсот девяносто девять</I> <li>Spa: <I>novecientos noventa y nueve</I> <li>Swe: <I>niohundra nittionio</I> <li>Urd: <I>نو سو ننانوے</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>mkNumeral</CODE></TD>
+<TD><A HREF="#Sub1000">Sub1000</A> <CODE>-&gt;</CODE> <A HREF="#Sub1000">Sub1000</A> <CODE>-&gt;</CODE> <A HREF="#Numeral" TITLE="Numeral - cardinal or ordinal in words">Numeral</A></TD>
+<TD><div class=reveal> <I>nine hundred and ninety - nine thousand nine hundred and ninety - nine</I> <div class=popup> <ul> <li>API: <CODE>mkNumeral (mkSub1000 n9_Unit (mkSub100 n9_Unit n9_Unit)) (mkSub1000 n9_Unit (mkSub100 n9_Unit n9_Unit))</CODE> <li>Afr: <I>negehonderdnegeënnegentigduisend negehonderdnegeënnegentig</I> <li>Bul: <I>деветстотин деветдесет и девет хиляди деветстотин деветдесет и деветима</I> <li>Cat: <I>nou -cents noranta- nou mil nou -cents noranta- nou</I> <li>Dan: <I>ni hundrede og ni og halvfems tusind og ni hundrede og ni og halvfems</I> <li>Dut: <I>negenhonderdnegenennegentigduizend negenhonderdnegenennegentig</I> <li>Eng: <I>nine hundred and ninety - nine thousand nine hundred and ninety - nine</I> <li>Fin: <I>yhdeksänsataayhdeksänkymmentäyhdeksäntuhatta yhdeksänsataayhdeksänkymmentäyhdeksän</I> <li>Fre: <I>neuf cent quatre-vingt - dix-neuf mille neuf cent quatre-vingt - dix-neuf</I> <li>Ger: <I>neunhundertneunundneunzigtausend neunhundertneunundneunzig</I> <li>Ita: <I>novecentonovantanovemila e novecentonovantanove</I> <li>Nep: <I>नौ लाख उनान्सय हजार नौ सय उनान्सय</I> <li>Nor: <I>ni hundre og nitti ni tusen og ni hundre og nitti ni</I> <li>Pes: <I>نهصد و نود و نه هزار و نهصد و نود و نه</I> <li>Pnb: <I>نو لكھ نڑینوے ہزار نو سو نڑینوے</I> <li>Pol: <I>dziewięćset dziewięćdziesiąt dziewięć tysięcy dziewięćset dziewięćdziesiąt dziewięć</I> <li>Ron: <I>nouă sute nouăzeci şi nouă de mii nouă sute nouăzeci şi nouă</I> <li>Rus: <I>девятьсот девяносто девять тысяч девятьсот девяносто девять</I> <li>Spa: <I>novecientos noventa y nueve mil novecientos noventa y nueve</I> <li>Swe: <I>niohundra nittioniotusen niohundra nittionio</I> <li>Urd: <I>نو لاكھ ننانوے ہزار نو سو ننانوے</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>mkNumeral</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#Numeral" TITLE="Numeral - cardinal or ordinal in words">Numeral</A></TD>
+<TD><I>thirty-five (given by "35"; range 1-999)</I></TD>
+</TR>
+<TR>
+<TD><CODE>thousandfoldNumeral</CODE></TD>
+<TD><A HREF="#Sub1000">Sub1000</A> <CODE>-&gt;</CODE> <A HREF="#Numeral" TITLE="Numeral - cardinal or ordinal in words">Numeral</A></TD>
+<TD><div class=reveal> <I>nine hundred and ninety - nine thousand</I> <div class=popup> <ul> <li>API: <CODE>thousandfoldNumeral (mkSub1000 n9_Unit (mkSub100 n9_Unit n9_Unit))</CODE> <li>Afr: <I>negehonderdnegeënnegentigduisend</I> <li>Bul: <I>деветстотин деветдесет и девет хиляди</I> <li>Cat: <I>nou -cents noranta- nou mil</I> <li>Dan: <I>ni hundrede og ni og halvfems tusind</I> <li>Dut: <I>negenhonderdnegenennegentigduizend</I> <li>Eng: <I>nine hundred and ninety - nine thousand</I> <li>Fin: <I>yhdeksänsataayhdeksänkymmentäyhdeksäntuhatta</I> <li>Fre: <I>neuf cent quatre-vingt - dix-neuf mille</I> <li>Ger: <I>neunhundertneunundneunzigtausend</I> <li>Ita: <I>novecentonovantanovemila</I> <li>Nep: <I>नौ लाख उनान्सय हजार</I> <li>Nor: <I>ni hundre og nitti ni tusen</I> <li>Pes: <I>نهصد و نود و نه هزار</I> <li>Pnb: <I>نو لكھ نڑینوے ہزار</I> <li>Pol: <I>dziewięćset dziewięćdziesiąt dziewięć tysięcy</I> <li>Ron: <I>nouă sute nouăzeci şi nouă de mii</I> <li>Rus: <I>девятьсот девяносто девять тысяч</I> <li>Spa: <I>novecientos noventa y nueve mil</I> <li>Swe: <I>niohundra nittionio tusen</I> <li>Urd: <I>نو لاكھ ننانوے ہزار</I> </ul> </div> </div></TD>
+</TR>
+</TABLE>
+
+<A NAME="Ord"></A>
+<H2>Ord - ordinal number (used in Det)</H2>
+
+<TABLE BORDER="1" CELLPADDING="4">
+<TR>
+<TH>Function</TH>
+<TH>Type</TH>
+<TH COLSPAN="2">Example</TH>
+</TR>
+<TR>
+<TD><CODE>mkOrd</CODE></TD>
+<TD><A HREF="#Numeral" TITLE="Numeral - cardinal or ordinal in words">Numeral</A> <CODE>-&gt;</CODE> <A HREF="#Ord" TITLE="Ord - ordinal number (used in Det)">Ord</A></TD>
+<TD><I>twentieth</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkOrd</CODE></TD>
+<TD><A HREF="#Digits" TITLE="Digits - cardinal or ordinal in digits">Digits</A> <CODE>-&gt;</CODE> <A HREF="#Ord" TITLE="Ord - ordinal number (used in Det)">Ord</A></TD>
+<TD><I>51st</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkOrd</CODE></TD>
+<TD><A HREF="#Digit">Digit</A> <CODE>-&gt;</CODE> <A HREF="#Ord" TITLE="Ord - ordinal number (used in Det)">Ord</A></TD>
+<TD><I>fifth</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkOrd</CODE></TD>
+<TD><A HREF="#A" TITLE="A - one-place adjective">A</A> <CODE>-&gt;</CODE> <A HREF="#Ord" TITLE="Ord - ordinal number (used in Det)">Ord</A></TD>
+<TD><div class=reveal> <I>smallest</I> <div class=popup> <ul> <li>API: <CODE>mkOrd small_A</CODE> <li>Afr: <I>kleinste</I> <li>Bul: <I>най - малък</I> <li>Cat: <I>més petit</I> <li>Dan: <I>mindste</I> <li>Dut: <I>kleinst</I> <li>Eng: <I>smallest</I> <li>Fin: <I>pienin</I> <li>Fre: <I>plus petit</I> <li>Ger: <I>kleinst</I> <li>Ita: <I>più piccolo</I> <li>Nep: <I>सबभन्दा सानो</I> <li>Nor: <I>minste</I> <li>Pes: <I>کوچک ترین</I> <li>Pnb: <I>چھوٹا</I> <li>Pol: <I>najmniejszy</I> <li>Ron: <I>cel mai mic</I> <li>Rus: <I>маленький</I> <li>Spa: <I>más pequeño</I> <li>Swe: <I>minsta</I> <li>Urd: <I>سب سے چھوٹا</I> </ul> </div> </div></TD>
+</TR>
+</TABLE>
+
+<A NAME="PConj"></A>
+<H2>PConj - phrase-beginning conjunction</H2>
+
+<TABLE BORDER="1" CELLPADDING="4">
+<TR>
+<TH>Function</TH>
+<TH>Type</TH>
+<TH COLSPAN="2">Example</TH>
+</TR>
+<TR>
+<TD><CODE>but_PConj</CODE></TD>
+<TD><A HREF="#PConj" TITLE="PConj - phrase-beginning conjunction">PConj</A></TD>
+<TD><div class=reveal> <I>but</I> <div class=popup> <ul> <li>API: <CODE>but_PConj</CODE> <li>Afr: <I>maar</I> <li>Bul: <I>но</I> <li>Cat: <I>però</I> <li>Dan: <I>men</I> <li>Dut: <I>maar</I> <li>Eng: <I>but</I> <li>Fin: <I>mutta</I> <li>Fre: <I>mais</I> <li>Ger: <I>aber</I> <li>Ita: <I>ma</I> <li>Nep: <I>तर</I> <li>Nor: <I>men</I> <li>Pes: <I>اما</I> <li>Pnb: <I>مگر</I> <li>Pol: <I>ale</I> <li>Ron: <I>dar</I> <li>Rus: <I>но</I> <li>Spa: <I>pero</I> <li>Swe: <I>men</I> <li>Urd: <I>لیكن</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>mkPConj</CODE></TD>
+<TD><A HREF="#Conj" TITLE="Conj - conjunction">Conj</A> <CODE>-&gt;</CODE> <A HREF="#PConj" TITLE="PConj - phrase-beginning conjunction">PConj</A></TD>
+<TD><div class=reveal> <I>and now</I> <div class=popup> <ul> <li>API: <CODE>mkPhr (mkPConj and_Conj) (mkUtt now_Adv)</CODE> <li>Afr: <I>en nou</I> <li>Bul: <I>и сега</I> <li>Cat: <I>i ara</I> <li>Dan: <I>og nu</I> <li>Dut: <I>en nu</I> <li>Eng: <I>and now</I> <li>Fin: <I>ja nyt</I> <li>Fre: <I>et maintenant</I> <li>Ger: <I>und jetzt</I> <li>Ita: <I>e adesso</I> <li>Nep: <I>र अहीले</I> <li>Nor: <I>og nå</I> <li>Pes: <I>و حالا</I> <li>Pnb: <I>تے ہون</I> <li>Pol: <I>i teraz</I> <li>Ron: <I>şi acum</I> <li>Rus: <I>и сейчас</I> <li>Spa: <I>y ahora</I> <li>Swe: <I>och nu</I> <li>Urd: <I>اور اب</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>otherwise_PConj</CODE></TD>
+<TD><A HREF="#PConj" TITLE="PConj - phrase-beginning conjunction">PConj</A></TD>
+<TD><div class=reveal> <I>otherwise</I> <div class=popup> <ul> <li>API: <CODE>otherwise_PConj</CODE> <li>Afr: <I>anders</I> <li>Bul: <I>иначе</I> <li>Cat: <I>altrament</I> <li>Dan: <I>anderledes</I> <li>Dut: <I>anders</I> <li>Eng: <I>otherwise</I> <li>Fin: <I>muuten</I> <li>Fre: <I>autrement</I> <li>Ger: <I>sonst</I> <li>Ita: <I>altramente</I> <li>Nep: <I>अन्यथा</I> <li>Nor: <I>annarledes</I> <li>Pes: <I>درغیراین صورت</I> <li>Pnb: <I>یا فیر</I> <li>Pol: <I>inaczej</I> <li>Ron: <I>altfel</I> <li>Rus: <I>иначе</I> <li>Spa: <I>otramente</I> <li>Swe: <I>annars</I> <li>Urd: <I>یا پھر</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>therefore_PConj</CODE></TD>
+<TD><A HREF="#PConj" TITLE="PConj - phrase-beginning conjunction">PConj</A></TD>
+<TD><div class=reveal> <I>therefore</I> <div class=popup> <ul> <li>API: <CODE>therefore_PConj</CODE> <li>Afr: <I>daarom</I> <li>Bul: <I>така че</I> <li>Cat: <I>per tant</I> <li>Dan: <I>derfor</I> <li>Dut: <I>daarom</I> <li>Eng: <I>therefore</I> <li>Fin: <I>siksi</I> <li>Fre: <I>donc</I> <li>Ger: <I>deshalb</I> <li>Ita: <I>quindi</I> <li>Nep: <I>अतः</I> <li>Nor: <I>derfor</I> <li>Pes: <I>به همین دلیل</I> <li>Pnb: <I>اس لی</I> <li>Pol: <I>dlatego</I> <li>Ron: <I>astfel</I> <li>Rus: <I>следовательно</I> <li>Spa: <I>por eso</I> <li>Swe: <I>därför</I> <li>Urd: <I>اس لیے</I> </ul> </div> </div></TD>
+</TR>
+</TABLE>
+
+<A NAME="PN"></A>
+<H2>PN - proper name</H2>
+
+<P>
+Lexical category, constructors given in
+<A HREF="#RParadigms">lexical paradigms</A>.
+</P>
+
+<A NAME="Phr"></A>
+<H2>Phr - phrase in a text</H2>
+
+<TABLE BORDER="1" CELLPADDING="4">
+<TR>
+<TH>Function</TH>
+<TH>Type</TH>
+<TH COLSPAN="2">Example</TH>
+</TR>
+<TR>
+<TD><CODE>mkPhr</CODE></TD>
+<TD>(<A HREF="#PConj" TITLE="PConj - phrase-beginning conjunction">PConj</A>) <CODE>-&gt;</CODE> <A HREF="#Utt" TITLE="Utt - sentence, question, word...">Utt</A> <CODE>-&gt;</CODE> (<A HREF="#Voc" TITLE="Voc - vocative or "please"">Voc</A>) <CODE>-&gt;</CODE> <A HREF="#Phr" TITLE="Phr - phrase in a text">Phr</A></TD>
+<TD><div class=reveal> <I>but sleep , my friend</I> <div class=popup> <ul> <li>API: <CODE>mkPhr but_PConj (mkUtt (mkImp sleep_V)) (mkVoc (mkNP i_Pron friend_N))</CODE> <li>Afr: <I>maar slaap , my vriend</I> <li>Bul: <I>но спи , мой приятелю</I> <li>Cat: <I>però dorm , el meu amic</I> <li>Dan: <I>men sov , min ven</I> <li>Dut: <I>maar slaap , mijn vriend</I> <li>Eng: <I>but sleep , my friend</I> <li>Fin: <I>Prelude.(!!): index too large</I> <li>Fre: <I>mais dors , mon ami</I> <li>Ger: <I>aber schlaf , mein Freund</I> <li>Ita: <I>ma dormi , il mio amico</I> <li>Nep: <I>तर सुत् होउ मेरो साथी</I> <li>Nor: <I>men sov , min venn</I> <li>Pes: <I>اما بخواب دوست من</I> <li>Pnb: <I>مگر سونا میرا یار</I> <li>Pol: <I>ale śpij , mój przyjacielu</I> <li>Ron: <I>dar dormi , prietenul meu</I> <li>Rus: <I>но спи , мой друг</I> <li>Spa: <I>pero duerme , mi amigo</I> <li>Swe: <I>men sov , min vän</I> <li>Urd: <I>لیكن سونا میرا دوست</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>mkPhr</CODE></TD>
+<TD><A HREF="#S" TITLE="S - declarative sentence">S</A> <CODE>-&gt;</CODE> <A HREF="#Phr" TITLE="Phr - phrase in a text">Phr</A></TD>
+<TD><div class=reveal> <I>she won't sleep</I> <div class=popup> <ul> <li>API: <CODE>mkPhr (mkS futureTense negativePol (mkCl she_NP sleep_V))</CODE> <li>Afr: <I>sy sal nie nie geslaap het</I> <li>Bul: <I>тя няма да спи</I> <li>Cat: <I>ella no dormirà</I> <li>Dan: <I>hun vil ikke sove</I> <li>Dut: <I>ze zal niet geslapen hebben</I> <li>Eng: <I>she won't sleep</I> <li>Fin: <I>Prelude.(!!): index too large</I> <li>Fre: <I>elle ne dormira pas</I> <li>Ger: <I>sie wird nicht schlafen</I> <li>Ita: <I>lei non dormirà</I> <li>Nep: <I>उनी सुत्नेछैनन्</I> <li>Nor: <I>hun vil ikke sove</I> <li>Pes: <I>او نخواهد خوابید</I> <li>Pnb: <I>او نیں سوئے گی</I> <li>Pol: <I>ona nie będzie spała</I> <li>Ron: <I>ea nu va dormi</I> <li>Rus: <I>она не будет спать</I> <li>Spa: <I>ella no dormirá</I> <li>Swe: <I>hon ska inte sova</I> <li>Urd: <I>وہ نہیں سوئے گی</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>mkPhr</CODE></TD>
+<TD><A HREF="#Cl" TITLE="Cl - declarative clause, with all tenses">Cl</A> <CODE>-&gt;</CODE> <A HREF="#Phr" TITLE="Phr - phrase in a text">Phr</A></TD>
+<TD><div class=reveal> <I>she sleeps</I> <div class=popup> <ul> <li>API: <CODE>mkPhr (mkCl she_NP sleep_V)</CODE> <li>Afr: <I>sy slaap</I> <li>Bul: <I>тя спи</I> <li>Cat: <I>ella dorm</I> <li>Dan: <I>hun sover</I> <li>Dut: <I>ze slaapt</I> <li>Eng: <I>she sleeps</I> <li>Fin: <I>hän nukkuu</I> <li>Fre: <I>elle dort</I> <li>Ger: <I>sie schläft</I> <li>Ita: <I>lei dorme</I> <li>Nep: <I>उनी सुत्छिन्</I> <li>Nor: <I>hun sover</I> <li>Pes: <I>او می خوابد</I> <li>Pnb: <I>او سوندی اے</I> <li>Pol: <I>ona śpi</I> <li>Ron: <I>ea doarme</I> <li>Rus: <I>она спдит</I> <li>Spa: <I>ella duerme</I> <li>Swe: <I>hon sover</I> <li>Urd: <I>وہ سوتی ہے</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>mkPhr</CODE></TD>
+<TD><A HREF="#QS" TITLE="QS - question">QS</A> <CODE>-&gt;</CODE> <A HREF="#Phr" TITLE="Phr - phrase in a text">Phr</A></TD>
+<TD><div class=reveal> <I>would she sleep</I> <div class=popup> <ul> <li>API: <CODE>mkPhr (mkQS conditionalTense (mkQCl (mkCl she_NP sleep_V)))</CODE> <li>Afr: <I>sou sy geslaap het</I> <li>Bul: <I>тя би ли спалa</I> <li>Cat: <I>ella dormiria</I> <li>Dan: <I>ville hun sove</I> <li>Dut: <I>zou ze geslapen hebben</I> <li>Eng: <I>would she sleep</I> <li>Fin: <I>Prelude.(!!): index too large</I> <li>Fre: <I>elle dormirait</I> <li>Ger: <I>würde sie schlafen</I> <li>Ita: <I>lei dormirebbe</I> <li>Nep: <I>के उनी सुत्नेछिन्</I> <li>Nor: <I>ville hun sove</I> <li>Pes: <I>آیا او می خوابید</I> <li>Pnb: <I>كی او شاید سوئے</I> <li>Pol: <I>czy ona spałaby</I> <li>Ron: <I>ea ar dormi</I> <li>Rus: <I>она спала бы</I> <li>Spa: <I>ella dormiría</I> <li>Swe: <I>skulle hon sova</I> <li>Urd: <I>كیا وہ شاید سوئے</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>mkPhr</CODE></TD>
+<TD><A HREF="#Imp" TITLE="Imp - imperative">Imp</A> <CODE>-&gt;</CODE> <A HREF="#Phr" TITLE="Phr - phrase in a text">Phr</A></TD>
+<TD><div class=reveal> <I>sleep</I> <div class=popup> <ul> <li>API: <CODE>mkPhr (mkImp sleep_V)</CODE> <li>Afr: <I>slaap</I> <li>Bul: <I>спи</I> <li>Cat: <I>dorm</I> <li>Dan: <I>sov</I> <li>Dut: <I>slaap</I> <li>Eng: <I>sleep</I> <li>Fin: <I>Prelude.(!!): index too large</I> <li>Fre: <I>dors</I> <li>Ger: <I>schlaf</I> <li>Ita: <I>dormi</I> <li>Nep: <I>सुत् होउ</I> <li>Nor: <I>sov</I> <li>Pes: <I>بخواب</I> <li>Pnb: <I>سونا</I> <li>Pol: <I>śpij</I> <li>Ron: <I>dormi</I> <li>Rus: <I>спи</I> <li>Spa: <I>duerme</I> <li>Swe: <I>sov</I> <li>Urd: <I>سونا</I> </ul> </div> </div></TD>
+</TR>
+</TABLE>
+
+<A NAME="Pol"></A>
+<H2>Pol - polarity</H2>
+
+<TABLE BORDER="1" CELLPADDING="4">
+<TR>
+<TH>Function</TH>
+<TH>Type</TH>
+<TH COLSPAN="2">Example</TH>
+</TR>
+<TR>
+<TD><CODE>negativePol</CODE></TD>
+<TD><A HREF="#Pol" TITLE="Pol - polarity">Pol</A></TD>
+<TD><div class=reveal> <I>she doesn't sleep</I> <div class=popup> <ul> <li>API: <CODE>mkS negativePol (mkCl she_NP sleep_V)</CODE> <li>Afr: <I>sy slaap nie nie</I> <li>Bul: <I>тя не спи</I> <li>Cat: <I>ella no dorm</I> <li>Dan: <I>hun sover ikke</I> <li>Dut: <I>ze slaapt niet</I> <li>Eng: <I>she doesn't sleep</I> <li>Fin: <I>hän ei nukkuneena</I> <li>Fre: <I>elle ne dort pas</I> <li>Ger: <I>sie schläft nicht</I> <li>Ita: <I>lei non dorme</I> <li>Nep: <I>उनी सुत्दिन्न</I> <li>Nor: <I>hun sover ikke</I> <li>Pes: <I>او نمی خوابد</I> <li>Pnb: <I>او نیں سوندی اے</I> <li>Pol: <I>ona nie śpi</I> <li>Ron: <I>ea nu doarme</I> <li>Rus: <I>она не спдит</I> <li>Spa: <I>ella no duerme</I> <li>Swe: <I>hon sover inte</I> <li>Urd: <I>وہ نہیں سوتی ہے</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>positivePol</CODE></TD>
+<TD><A HREF="#Pol" TITLE="Pol - polarity">Pol</A></TD>
+<TD><div class=reveal> <I>she sleeps</I> <div class=popup> <ul> <li>API: <CODE>mkS positivePol (mkCl she_NP sleep_V)</CODE> <li>Afr: <I>sy slaap</I> <li>Bul: <I>тя спи</I> <li>Cat: <I>ella dorm</I> <li>Dan: <I>hun sover</I> <li>Dut: <I>ze slaapt</I> <li>Eng: <I>she sleeps</I> <li>Fin: <I>hän nukkuu</I> <li>Fre: <I>elle dort</I> <li>Ger: <I>sie schläft</I> <li>Ita: <I>lei dorme</I> <li>Nep: <I>उनी सुत्छिन्</I> <li>Nor: <I>hun sover</I> <li>Pes: <I>او می خوابد</I> <li>Pnb: <I>او سوندی اے</I> <li>Pol: <I>ona śpi</I> <li>Ron: <I>ea doarme</I> <li>Rus: <I>она спдит</I> <li>Spa: <I>ella duerme</I> <li>Swe: <I>hon sover</I> <li>Urd: <I>وہ سوتی ہے</I> </ul> </div> </div></TD>
+</TR>
+</TABLE>
+
+<A NAME="Predet"></A>
+<H2>Predet - predeterminer (prefixed Quant)</H2>
+
+<TABLE BORDER="1" CELLPADDING="4">
+<TR>
+<TH>Function</TH>
+<TH>Type</TH>
+<TH COLSPAN="2">Example</TH>
+</TR>
+<TR>
+<TD><CODE>all_Predet</CODE></TD>
+<TD><A HREF="#Predet" TITLE="Predet - predeterminer (prefixed Quant)">Predet</A></TD>
+<TD><div class=reveal> <I>all the men</I> <div class=popup> <ul> <li>API: <CODE>mkNP all_Predet (mkNP thePl_Det man_N)</CODE> <li>Afr: <I>alle die mans</I> <li>Bul: <I>всичките мъжете</I> <li>Cat: <I>// <li>Dan: //alle mændene// <li>Dut: //alle de mannen// <li>Eng: //all the men// <li>Fin: //kaikki miehet// <li>Fre: //</I> <li>Ger: <I>alle die Männer</I> <li>Ita: <I>// <li>Nep: //सबै मान्छेहरु// <li>Nor: //alle mennen// <li>Pes: //همه ی مرد// <li>Pnb: //سارے بندے// <li>Pol: //wszystkich mężczyzn// <li>Ron: //</I> <li>Rus: <I>все человеки</I> <li>Spa: <I>''</I> <li>Swe: <I>alla männen</I> <li>Urd: <I>تمام آدمی</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>most_Predet</CODE></TD>
+<TD><A HREF="#Predet" TITLE="Predet - predeterminer (prefixed Quant)">Predet</A></TD>
+<TD><div class=reveal> <I>most</I> <div class=popup> <ul> <li>API: <CODE>most_Predet</CODE> <li>Afr: <I>meeste</I> <li>Bul: <I>повечето</I> <li>Cat: <I>la majoria</I> <li>Dan: <I>den meste</I> <li>Dut: <I>meeste</I> <li>Eng: <I>most</I> <li>Fin: <I>useinta</I> <li>Fre: <I>la plupart</I> <li>Ger: <I>meister</I> <li>Ita: <I>la maggior parte</I> <li>Nep: <I>ज्यादै</I> <li>Nor: <I>den meste</I> <li>Pes: <I>اکثر</I> <li>Pnb: <I>زیادہ تر</I> <li>Pol: <I>wszystek</I> <li>Ron: <I>marea parte a</I> <li>Rus: <I>большинство</I> <li>Spa: <I>la mayor parte</I> <li>Swe: <I>den mesta</I> <li>Urd: <I>زیادہ تر</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>not_Predet</CODE></TD>
+<TD><A HREF="#Predet" TITLE="Predet - predeterminer (prefixed Quant)">Predet</A></TD>
+<TD><div class=reveal> <I>not everybody</I> <div class=popup> <ul> <li>API: <CODE>mkNP not_Predet everybody_NP</CODE> <li>Afr: <I>nie almal</I> <li>Bul: <I>*</I> <li>Cat: <I>// <li>Dan: //*// <li>Dut: //niet alle// <li>Eng: //not everybody// <li>Fin: //ei jokainen// <li>Fre: //</I> <li>Ger: <I>nicht jeder</I> <li>Ita: <I>// <li>Nep: //हैन सवौ जाना// <li>Nor: //*// <li>Pes: //*// <li>Pnb: //نہیں ہر كوی// <li>Pol: //żadnych wszystkich// <li>Ron: //</I> <li>Rus: <I>*</I> <li>Spa: <I>*</I> <li>Swe: <I>inte alla</I> <li>Urd: <I>نہیں ہر كوی</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>only_Predet</CODE></TD>
+<TD><A HREF="#Predet" TITLE="Predet - predeterminer (prefixed Quant)">Predet</A></TD>
+<TD><div class=reveal> <I>only</I> <div class=popup> <ul> <li>API: <CODE>only_Predet</CODE> <li>Afr: <I>slegs</I> <li>Bul: <I>само</I> <li>Cat: <I>nomÈs</I> <li>Dan: <I>kun</I> <li>Dut: <I>slechts</I> <li>Eng: <I>only</I> <li>Fin: <I>vain</I> <li>Fre: <I>seulement</I> <li>Ger: <I>nur</I> <li>Ita: <I>soltanto</I> <li>Nep: <I>मात्र</I> <li>Nor: <I>kun</I> <li>Pes: <I>فقط</I> <li>Pnb: <I>صرف</I> <li>Pol: <I>tylko</I> <li>Ron: <I>doar</I> <li>Rus: <I>единственный</I> <li>Spa: <I>solamente</I> <li>Swe: <I>bara</I> <li>Urd: <I>صرف</I> </ul> </div> </div></TD>
+</TR>
+</TABLE>
+
+<A NAME="Prep"></A>
+<H2>Prep - preposition, or just case</H2>
+
+<TABLE BORDER="1" CELLPADDING="4">
+<TR>
+<TH>Function</TH>
+<TH>Type</TH>
+<TH COLSPAN="2">Example</TH>
+</TR>
+<TR>
+<TD><CODE>above_Prep</CODE></TD>
+<TD><A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A></TD>
+<TD><div class=reveal> <I>above it</I> <div class=popup> <ul> <li>API: <CODE>mkAdv above_Prep it_NP</CODE> <li>Afr: <I>bo dit</I> <li>Bul: <I>над него</I> <li>Cat: <I>sobre ell</I> <li>Dan: <I>ovenfor det</I> <li>Dut: <I>boven het</I> <li>Eng: <I>above it</I> <li>Fin: <I>sen yläpuolella</I> <li>Fre: <I>au dessus de lui</I> <li>Ger: <I>über ihm</I> <li>Ita: <I>sopra di lui</I> <li>Nep: <I>यो माथि</I> <li>Nor: <I>ovenfor det</I> <li>Pes: <I>بالای آن</I> <li>Pnb: <I>اینوں اتے</I> <li>Pol: <I>nad nim</I> <li>Ron: <I>deasupra lui</I> <li>Rus: <I>над ним</I> <li>Spa: <I>sobre él</I> <li>Swe: <I>ovanför det</I> <li>Urd: <I>اس اوپر</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>after_Prep</CODE></TD>
+<TD><A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A></TD>
+<TD><div class=reveal> <I>after it</I> <div class=popup> <ul> <li>API: <CODE>mkAdv after_Prep it_NP</CODE> <li>Afr: <I>na dit</I> <li>Bul: <I>след него</I> <li>Cat: <I>després de ell</I> <li>Dan: <I>efter det</I> <li>Dut: <I>na het</I> <li>Eng: <I>after it</I> <li>Fin: <I>sen jälkeen</I> <li>Fre: <I>après lui</I> <li>Ger: <I>nach ihm</I> <li>Ita: <I>dopo lui</I> <li>Nep: <I>यो पछि</I> <li>Nor: <I>etter det</I> <li>Pes: <I>بعد از آن</I> <li>Pnb: <I>اینوں توں بعد</I> <li>Pol: <I>po nim</I> <li>Ron: <I>după el</I> <li>Rus: <I>после него</I> <li>Spa: <I>despues de él</I> <li>Swe: <I>efter det</I> <li>Urd: <I>اس كے بعد</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>before_Prep</CODE></TD>
+<TD><A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A></TD>
+<TD><div class=reveal> <I>before it</I> <div class=popup> <ul> <li>API: <CODE>mkAdv before_Prep it_NP</CODE> <li>Afr: <I>voor dit</I> <li>Bul: <I>преди него</I> <li>Cat: <I>abans de ell</I> <li>Dan: <I>før det</I> <li>Dut: <I>voor het</I> <li>Eng: <I>before it</I> <li>Fin: <I>ennen sitä</I> <li>Fre: <I>avant lui</I> <li>Ger: <I>vor ihm</I> <li>Ita: <I>prima lui</I> <li>Nep: <I>यो अघि</I> <li>Nor: <I>før det</I> <li>Pes: <I>قبل از آن</I> <li>Pnb: <I>اینوں پلے</I> <li>Pol: <I>przed nim</I> <li>Ron: <I>înaintea lui</I> <li>Rus: <I>перед ним</I> <li>Spa: <I>antes de él</I> <li>Swe: <I>före det</I> <li>Urd: <I>اس پہلے</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>behind_Prep</CODE></TD>
+<TD><A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A></TD>
+<TD><div class=reveal> <I>behind it</I> <div class=popup> <ul> <li>API: <CODE>mkAdv behind_Prep it_NP</CODE> <li>Afr: <I>agter dit</I> <li>Bul: <I>зад него</I> <li>Cat: <I>darrera de ell</I> <li>Dan: <I>bag det</I> <li>Dut: <I>achter het</I> <li>Eng: <I>behind it</I> <li>Fin: <I>sen takana</I> <li>Fre: <I>derrière lui</I> <li>Ger: <I>hinter ihm</I> <li>Ita: <I>dietro lui</I> <li>Nep: <I>यो पछि</I> <li>Nor: <I>bakom det</I> <li>Pes: <I>پشت آن</I> <li>Pnb: <I>اینوں پیچھے</I> <li>Pol: <I>za nim</I> <li>Ron: <I>înapoia lui</I> <li>Rus: <I>за ним</I> <li>Spa: <I>detrás de él</I> <li>Swe: <I>bakom det</I> <li>Urd: <I>اس پیچھے</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>between_Prep</CODE></TD>
+<TD><A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A></TD>
+<TD><div class=reveal> <I>between you and me</I> <div class=popup> <ul> <li>API: <CODE>mkAdv between_Prep (mkNP and_Conj you_NP i_NP)</CODE> <li>Afr: <I>tussen jou en my</I> <li>Bul: <I>между теб и мен</I> <li>Cat: <I>entre tu i mi</I> <li>Dan: <I>mellem dig og mig</I> <li>Dut: <I>tussen je en me</I> <li>Eng: <I>between you and me</I> <li>Fin: <I>sinun ja minun välissä</I> <li>Fre: <I>entre toi et moi</I> <li>Ger: <I>zwischen dir und mir</I> <li>Ita: <I>fra te e me</I> <li>Nep: <I>तिमी र म बिच</I> <li>Nor: <I>mellom deg og meg</I> <li>Pes: <I>بین تو و من</I> <li>Pnb: <I>تینوں تے مینوں وچكار</I> <li>Pol: <I>między tobą i mną</I> <li>Ron: <I>între</I> <li>Rus: <I>между тобой и мной</I> <li>Spa: <I>entre tí y mí</I> <li>Swe: <I>mellan dig och mig</I> <li>Urd: <I>تو اور مجھ درمیاں</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>by8agent_Prep</CODE></TD>
+<TD><A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A></TD>
+<TD><div class=reveal> <I>by it</I> <div class=popup> <ul> <li>API: <CODE>mkAdv by8agent_Prep it_NP</CODE> <li>Afr: <I>deur dit</I> <li>Bul: <I>чрез него</I> <li>Cat: <I>per ell</I> <li>Dan: <I>af det</I> <li>Dut: <I>door het</I> <li>Eng: <I>by it</I> <li>Fin: <I>sen toimesta</I> <li>Fre: <I>par lui</I> <li>Ger: <I>durch es</I> <li>Ita: <I>da lui</I> <li>Nep: <I>यो लाइ</I> <li>Nor: <I>av det</I> <li>Pes: <I>توسط آن</I> <li>Pnb: <I>اینوں</I> <li>Pol: <I>przez nie</I> <li>Ron: <I>de către el</I> <li>Rus: <I>с помощью него</I> <li>Spa: <I>por él</I> <li>Swe: <I>av det</I> <li>Urd: <I>اس سے</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>by8means_Prep</CODE></TD>
+<TD><A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A></TD>
+<TD><div class=reveal> <I>by it</I> <div class=popup> <ul> <li>API: <CODE>mkAdv by8means_Prep it_NP</CODE> <li>Afr: <I>met dit</I> <li>Bul: <I>чрез него</I> <li>Cat: <I>mitjançant ell</I> <li>Dan: <I>med det</I> <li>Dut: <I>met het</I> <li>Eng: <I>by it</I> <li>Fin: <I>sillä</I> <li>Fre: <I>par lui</I> <li>Ger: <I>mit ihm</I> <li>Ita: <I>per lui</I> <li>Nep: <I>यो ले</I> <li>Nor: <I>med det</I> <li>Pes: <I>با آن</I> <li>Pnb: <I>اینوں</I> <li>Pol: <I>przez nie</I> <li>Ron: <I>de el</I> <li>Rus: <I>с помощью него</I> <li>Spa: <I>por él</I> <li>Swe: <I>med det</I> <li>Urd: <I>اس پر</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>during_Prep</CODE></TD>
+<TD><A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A></TD>
+<TD><div class=reveal> <I>during it</I> <div class=popup> <ul> <li>API: <CODE>mkAdv during_Prep it_NP</CODE> <li>Afr: <I>tydens dit</I> <li>Bul: <I>по време на него</I> <li>Cat: <I>durant ell</I> <li>Dan: <I>under det</I> <li>Dut: <I>tijdens het</I> <li>Eng: <I>during it</I> <li>Fin: <I>sen aikana</I> <li>Fre: <I>pendant lui</I> <li>Ger: <I>während seiner</I> <li>Ita: <I>durante lui</I> <li>Nep: <I>यो पर्यान्त</I> <li>Nor: <I>under det</I> <li>Pes: <I>در طول آن</I> <li>Pnb: <I>اینوں دے وچ</I> <li>Pol: <I>podczas niego</I> <li>Ron: <I>în timpul lui</I> <li>Rus: <I>в течение него</I> <li>Spa: <I>durante él</I> <li>Swe: <I>under det</I> <li>Urd: <I>اس كے درمیاں</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>except_Prep</CODE></TD>
+<TD><A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A></TD>
+<TD><div class=reveal> <I>except it</I> <div class=popup> <ul> <li>API: <CODE>mkAdv except_Prep it_NP</CODE> <li>Afr: <I>behalwe dit</I> <li>Bul: <I>*</I> <li>Cat: <I>excepte ell</I> <li>Dan: <I>*</I> <li>Dut: <I>met uitzondering van het</I> <li>Eng: <I>except it</I> <li>Fin: <I>sitä lukuunottamatta</I> <li>Fre: <I>excepté lui</I> <li>Ger: <I>außer ihm</I> <li>Ita: <I>eccetto lui</I> <li>Nep: <I>यो बाहेक</I> <li>Nor: <I>*</I> <li>Pes: <I>به جز آن</I> <li>Pnb: <I>اینوں سواے</I> <li>Pol: <I>z wyjątkiem nie</I> <li>Ron: <I>cu excepţia lui</I> <li>Rus: <I>*</I> <li>Spa: <I>*</I> <li>Swe: <I>utom det</I> <li>Urd: <I>اس سواے</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>for_Prep</CODE></TD>
+<TD><A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A></TD>
+<TD><div class=reveal> <I>for it</I> <div class=popup> <ul> <li>API: <CODE>mkAdv for_Prep it_NP</CODE> <li>Afr: <I>voor dit</I> <li>Bul: <I>за него</I> <li>Cat: <I>per a ell</I> <li>Dan: <I>for det</I> <li>Dut: <I>voor het</I> <li>Eng: <I>for it</I> <li>Fin: <I>sille</I> <li>Fre: <I>pour lui</I> <li>Ger: <I>für es</I> <li>Ita: <I>per lui</I> <li>Nep: <I>यो लागि</I> <li>Nor: <I>for det</I> <li>Pes: <I>برای آن</I> <li>Pnb: <I>اینوں [دے واسطE]</I> <li>Pol: <I>dla niego</I> <li>Ron: <I>pentru el</I> <li>Rus: <I>*</I> <li>Spa: <I>para él</I> <li>Swe: <I>för det</I> <li>Urd: <I>اس كیلیے</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>from_Prep</CODE></TD>
+<TD><A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A></TD>
+<TD><div class=reveal> <I>from it</I> <div class=popup> <ul> <li>API: <CODE>mkAdv from_Prep it_NP</CODE> <li>Afr: <I>uit dit</I> <li>Bul: <I>от него</I> <li>Cat: <I>de ell</I> <li>Dan: <I>fra det</I> <li>Dut: <I>uit het</I> <li>Eng: <I>from it</I> <li>Fin: <I>siitä</I> <li>Fre: <I>de lui</I> <li>Ger: <I>aus ihm</I> <li>Ita: <I>da lui</I> <li>Nep: <I>यो बाट</I> <li>Nor: <I>fra det</I> <li>Pes: <I>از آن</I> <li>Pnb: <I>اینوں توں</I> <li>Pol: <I>z niego</I> <li>Ron: <I>de la el</I> <li>Rus: <I>от него</I> <li>Spa: <I>de él</I> <li>Swe: <I>från det</I> <li>Urd: <I>اس سے</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>in8front_Prep</CODE></TD>
+<TD><A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A></TD>
+<TD><div class=reveal> <I>in front of it</I> <div class=popup> <ul> <li>API: <CODE>mkAdv in8front_Prep it_NP</CODE> <li>Afr: <I>voor dit</I> <li>Bul: <I>пред него</I> <li>Cat: <I>davant de ell</I> <li>Dan: <I>foran det</I> <li>Dut: <I>voor het</I> <li>Eng: <I>in front of it</I> <li>Fin: <I>sen edessä</I> <li>Fre: <I>devant lui</I> <li>Ger: <I>vor ihm</I> <li>Ita: <I>davanti lui</I> <li>Nep: <I>यो सामु</I> <li>Nor: <I>foran det</I> <li>Pes: <I>جلوی آن</I> <li>Pnb: <I>اینوں دے سامنے</I> <li>Pol: <I>przed nim</I> <li>Ron: <I>în faţa lui</I> <li>Rus: <I>перед ним</I> <li>Spa: <I>delante de él</I> <li>Swe: <I>framför det</I> <li>Urd: <I>اس كے سامنے</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>in_Prep</CODE></TD>
+<TD><A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A></TD>
+<TD><div class=reveal> <I>in it</I> <div class=popup> <ul> <li>API: <CODE>mkAdv in_Prep it_NP</CODE> <li>Afr: <I>in dit</I> <li>Bul: <I>в него</I> <li>Cat: <I>en ell</I> <li>Dan: <I>i det</I> <li>Dut: <I>in het</I> <li>Eng: <I>in it</I> <li>Fin: <I>siinä</I> <li>Fre: <I>dans lui</I> <li>Ger: <I>in ihm</I> <li>Ita: <I>in lui</I> <li>Nep: <I>यो मा</I> <li>Nor: <I>i det</I> <li>Pes: <I>در آن</I> <li>Pnb: <I>اینوں وچ</I> <li>Pol: <I>w nim</I> <li>Ron: <I>în el</I> <li>Rus: <I>в нём</I> <li>Spa: <I>en él</I> <li>Swe: <I>i det</I> <li>Urd: <I>اس میں</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>on_Prep</CODE></TD>
+<TD><A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A></TD>
+<TD><div class=reveal> <I>on it</I> <div class=popup> <ul> <li>API: <CODE>mkAdv on_Prep it_NP</CODE> <li>Afr: <I>op dit</I> <li>Bul: <I>на него</I> <li>Cat: <I>sobre ell</I> <li>Dan: <I>på det</I> <li>Dut: <I>op het</I> <li>Eng: <I>on it</I> <li>Fin: <I>sillä</I> <li>Fre: <I>sur lui</I> <li>Ger: <I>auf ihm</I> <li>Ita: <I>su lui</I> <li>Nep: <I>यो मा</I> <li>Nor: <I>på det</I> <li>Pes: <I>روی آن</I> <li>Pnb: <I>اینوں اتے</I> <li>Pol: <I>nа nim</I> <li>Ron: <I>pe el</I> <li>Rus: <I>на нём</I> <li>Spa: <I>sobre él</I> <li>Swe: <I>på det</I> <li>Urd: <I>اس پر</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>part_Prep</CODE></TD>
+<TD><A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A></TD>
+<TD><div class=reveal> <I>of it</I> <div class=popup> <ul> <li>API: <CODE>mkAdv part_Prep it_NP</CODE> <li>Afr: <I>van dit</I> <li>Bul: <I>от него</I> <li>Cat: <I>de ell</I> <li>Dan: <I>af det</I> <li>Dut: <I>van het</I> <li>Eng: <I>of it</I> <li>Fin: <I>sitä</I> <li>Fre: <I>de lui</I> <li>Ger: <I>von ihm</I> <li>Ita: <I>di lui</I> <li>Nep: <I>यो भाग</I> <li>Nor: <I>av det</I> <li>Pes: <I>از آن</I> <li>Pnb: <I>اینوں ہصہ</I> <li>Pol: <I>z niego</I> <li>Ron: <I>din el</I> <li>Rus: <I>оно</I> <li>Spa: <I>de él</I> <li>Swe: <I>av det</I> <li>Urd: <I>اس</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>possess_Prep</CODE></TD>
+<TD><A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A></TD>
+<TD><div class=reveal> <I>of it</I> <div class=popup> <ul> <li>API: <CODE>mkAdv possess_Prep it_NP</CODE> <li>Afr: <I>van dit</I> <li>Bul: <I>му</I> <li>Cat: <I>de ell</I> <li>Dan: <I>af det</I> <li>Dut: <I>van het</I> <li>Eng: <I>of it</I> <li>Fin: <I>sen</I> <li>Fre: <I>de lui</I> <li>Ger: <I>von ihm</I> <li>Ita: <I>di lui</I> <li>Nep: <I>यो धारणा गर्नु</I> <li>Nor: <I>av det</I> <li>Pes: <I>آن</I> <li>Pnb: <I>اینوں دا</I> <li>Pol: <I>jego</I> <li>Ron: <I>lui</I> <li>Rus: <I>него</I> <li>Spa: <I>de él</I> <li>Swe: <I>av det</I> <li>Urd: <I>اس كا</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>through_Prep</CODE></TD>
+<TD><A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A></TD>
+<TD><div class=reveal> <I>through it</I> <div class=popup> <ul> <li>API: <CODE>mkAdv through_Prep it_NP</CODE> <li>Afr: <I>deur dit</I> <li>Bul: <I>през него</I> <li>Cat: <I>mitjançant ell</I> <li>Dan: <I>gennem det</I> <li>Dut: <I>door het</I> <li>Eng: <I>through it</I> <li>Fin: <I>sen kautta</I> <li>Fre: <I>par lui</I> <li>Ger: <I>durch es</I> <li>Ita: <I>per lui</I> <li>Nep: <I>यो मार्फत</I> <li>Nor: <I>gjennom det</I> <li>Pes: <I>از طریق آن</I> <li>Pnb: <I>اینوں وچوں</I> <li>Pol: <I>przez nie</I> <li>Ron: <I>prin el</I> <li>Rus: <I>через него</I> <li>Spa: <I>por él</I> <li>Swe: <I>genom det</I> <li>Urd: <I>اس میں سے</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>to_Prep</CODE></TD>
+<TD><A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A></TD>
+<TD><div class=reveal> <I>to it</I> <div class=popup> <ul> <li>API: <CODE>mkAdv to_Prep it_NP</CODE> <li>Afr: <I>na dit</I> <li>Bul: <I>до него</I> <li>Cat: <I>a ell</I> <li>Dan: <I>til det</I> <li>Dut: <I>naar het</I> <li>Eng: <I>to it</I> <li>Fin: <I>siihen</I> <li>Fre: <I>à lui</I> <li>Ger: <I>nach ihm</I> <li>Ita: <I>a lui</I> <li>Nep: <I>यो सम्म</I> <li>Nor: <I>til det</I> <li>Pes: <I>به آن</I> <li>Pnb: <I>اینوں نوں</I> <li>Pol: <I>do niego</I> <li>Ron: <I>la el</I> <li>Rus: <I>к нему</I> <li>Spa: <I>a él</I> <li>Swe: <I>till det</I> <li>Urd: <I>اس كو</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>under_Prep</CODE></TD>
+<TD><A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A></TD>
+<TD><div class=reveal> <I>under it</I> <div class=popup> <ul> <li>API: <CODE>mkAdv under_Prep it_NP</CODE> <li>Afr: <I>onder dit</I> <li>Bul: <I>под него</I> <li>Cat: <I>sota ell</I> <li>Dan: <I>under det</I> <li>Dut: <I>onder het</I> <li>Eng: <I>under it</I> <li>Fin: <I>sen alla</I> <li>Fre: <I>sous lui</I> <li>Ger: <I>unter ihm</I> <li>Ita: <I>sotto lui</I> <li>Nep: <I>यो अन्तर्गत</I> <li>Nor: <I>under det</I> <li>Pes: <I>زیر آن</I> <li>Pnb: <I>اینوں تھلے</I> <li>Pol: <I>pod nim</I> <li>Ron: <I>sub el</I> <li>Rus: <I>под ним</I> <li>Spa: <I>bajo él</I> <li>Swe: <I>under det</I> <li>Urd: <I>اس نیچے</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>with_Prep</CODE></TD>
+<TD><A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A></TD>
+<TD><div class=reveal> <I>with it</I> <div class=popup> <ul> <li>API: <CODE>mkAdv with_Prep it_NP</CODE> <li>Afr: <I>met dit</I> <li>Bul: <I>с него</I> <li>Cat: <I>amb ell</I> <li>Dan: <I>med det</I> <li>Dut: <I>met het</I> <li>Eng: <I>with it</I> <li>Fin: <I>sen kanssa</I> <li>Fre: <I>avec lui</I> <li>Ger: <I>mit ihm</I> <li>Ita: <I>con lui</I> <li>Nep: <I>यो सँग</I> <li>Nor: <I>med det</I> <li>Pes: <I>با آن</I> <li>Pnb: <I>اینوں دے نال</I> <li>Pol: <I>z nim</I> <li>Ron: <I>cu el</I> <li>Rus: <I>с ним</I> <li>Spa: <I>con él</I> <li>Swe: <I>med det</I> <li>Urd: <I>اس كے ساتھ</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>without_Prep</CODE></TD>
+<TD><A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A></TD>
+<TD><div class=reveal> <I>without it</I> <div class=popup> <ul> <li>API: <CODE>mkAdv without_Prep it_NP</CODE> <li>Afr: <I>sonder dit</I> <li>Bul: <I>без него</I> <li>Cat: <I>sense ell</I> <li>Dan: <I>uden det</I> <li>Dut: <I>zonder het</I> <li>Eng: <I>without it</I> <li>Fin: <I>ilman sitä</I> <li>Fre: <I>sans lui</I> <li>Ger: <I>ohne es</I> <li>Ita: <I>senza lui</I> <li>Nep: <I>यो विना</I> <li>Nor: <I>uten det</I> <li>Pes: <I>بدون آن</I> <li>Pnb: <I>اینوں توں بغیر</I> <li>Pol: <I>bez niego</I> <li>Ron: <I>fără el</I> <li>Rus: <I>без него</I> <li>Spa: <I>sin él</I> <li>Swe: <I>utan det</I> <li>Urd: <I>اس كے بغیر</I> </ul> </div> </div></TD>
+</TR>
+</TABLE>
+
+<A NAME="Pron"></A>
+<H2>Pron - personal pronoun</H2>
+
+<TABLE BORDER="1" CELLPADDING="4">
+<TR>
+<TH>Function</TH>
+<TH>Type</TH>
+<TH COLSPAN="2">Example</TH>
+</TR>
+<TR>
+<TD><CODE>he_Pron</CODE></TD>
+<TD><A HREF="#Pron" TITLE="Pron - personal pronoun">Pron</A></TD>
+<TD><div class=reveal> <I>he</I> <div class=popup> <ul> <li>API: <CODE>he_Pron</CODE> <li>Afr: <I>ResAfr.Neutr</I> <li>Bul: <I>той</I> <li>Cat: <I>// <li>Dan: //han// <li>Dut: //ResDut.Utr// <li>Eng: //he// <li>Fin: //hän// <li>Fre: //</I> <li>Ger: <I>er</I> <li>Ita: <I>// <li>Nep: //उ// <li>Nor: //han// <li>Pes: //او// <li>Pnb: //او// <li>Pol: //niego// <li>Ron: //el// <li>Rus: //он// <li>Spa: //</I> <li>Swe: <I>han</I> <li>Urd: <I>وہ</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>i_Pron</CODE></TD>
+<TD><A HREF="#Pron" TITLE="Pron - personal pronoun">Pron</A></TD>
+<TD><div class=reveal> <I>I</I> <div class=popup> <ul> <li>API: <CODE>i_Pron</CODE> <li>Afr: <I>ResAfr.Neutr</I> <li>Bul: <I>аз</I> <li>Cat: <I>// <li>Dan: //jeg// <li>Dut: //ResDut.Utr// <li>Eng: //I// <li>Fin: //minä// <li>Fre: //</I> <li>Ger: <I>ich</I> <li>Ita: <I>// <li>Nep: //म// <li>Nor: //jeg// <li>Pes: //من// <li>Pnb: //میں// <li>Pol: //mnie// <li>Ron: //eu// <li>Rus: //я// <li>Spa: //</I> <li>Swe: <I>jag</I> <li>Urd: <I>میں</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>it_Pron</CODE></TD>
+<TD><A HREF="#Pron" TITLE="Pron - personal pronoun">Pron</A></TD>
+<TD><div class=reveal> <I>it</I> <div class=popup> <ul> <li>API: <CODE>it_Pron</CODE> <li>Afr: <I>ResAfr.Neutr</I> <li>Bul: <I>то</I> <li>Cat: <I>// <li>Dan: //det// <li>Dut: //ResDut.Neutr// <li>Eng: //it// <li>Fin: //se// <li>Fre: //</I> <li>Ger: <I>es</I> <li>Ita: <I>// <li>Nep: //यो// <li>Nor: //det// <li>Pes: //آن// <li>Pnb: //اے// <li>Pol: //niego// <li>Ron: //</I> <li>Rus: <I>оно</I> <li>Spa: <I>''</I> <li>Swe: <I>det</I> <li>Urd: <I>یہ</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>she_Pron</CODE></TD>
+<TD><A HREF="#Pron" TITLE="Pron - personal pronoun">Pron</A></TD>
+<TD><div class=reveal> <I>she</I> <div class=popup> <ul> <li>API: <CODE>she_Pron</CODE> <li>Afr: <I>ResAfr.Neutr</I> <li>Bul: <I>тя</I> <li>Cat: <I>// <li>Dan: //hun// <li>Dut: //ResDut.Utr// <li>Eng: //she// <li>Fin: //hän// <li>Fre: //</I> <li>Ger: <I>sie</I> <li>Ita: <I>// <li>Nep: //उनी// <li>Nor: //hun// <li>Pes: //او// <li>Pnb: //او// <li>Pol: //niej// <li>Ron: //ea// <li>Rus: //она// <li>Spa: //</I> <li>Swe: <I>hon</I> <li>Urd: <I>وہ</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>they_Pron</CODE></TD>
+<TD><A HREF="#Pron" TITLE="Pron - personal pronoun">Pron</A></TD>
+<TD><div class=reveal> <I>they</I> <div class=popup> <ul> <li>API: <CODE>they_Pron</CODE> <li>Afr: <I>ResAfr.Neutr</I> <li>Bul: <I>те</I> <li>Cat: <I>// <li>Dan: //de// <li>Dut: //ResDut.Utr// <li>Eng: //they// <li>Fin: //he// <li>Fre: //</I> <li>Ger: <I>sie</I> <li>Ita: <I>// <li>Nep: //उनीहरु// <li>Nor: //de// <li>Pes: //آن ها// <li>Pnb: //او// <li>Pol: //nich// <li>Ron: //ei// <li>Rus: //они// <li>Spa: //</I> <li>Swe: <I>de</I> <li>Urd: <I>وہ</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>we_Pron</CODE></TD>
+<TD><A HREF="#Pron" TITLE="Pron - personal pronoun">Pron</A></TD>
+<TD><div class=reveal> <I>we</I> <div class=popup> <ul> <li>API: <CODE>we_Pron</CODE> <li>Afr: <I>ResAfr.Neutr</I> <li>Bul: <I>ние</I> <li>Cat: <I>// <li>Dan: //vi// <li>Dut: //ResDut.Utr// <li>Eng: //we// <li>Fin: //me// <li>Fre: //</I> <li>Ger: <I>wir</I> <li>Ita: <I>// <li>Nep: //हामीहरु// <li>Nor: //vi// <li>Pes: //ما// <li>Pnb: //اسی// <li>Pol: //nas// <li>Ron: //noi// <li>Rus: //мы// <li>Spa: //</I> <li>Swe: <I>vi</I> <li>Urd: <I>ہم</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>youPl_Pron</CODE></TD>
+<TD><A HREF="#Pron" TITLE="Pron - personal pronoun">Pron</A></TD>
+<TD><div class=reveal> <I>you</I> <div class=popup> <ul> <li>API: <CODE>youPl_Pron</CODE> <li>Afr: <I>ResAfr.Neutr</I> <li>Bul: <I>вие</I> <li>Cat: <I>// <li>Dan: //I// <li>Dut: //ResDut.Utr// <li>Eng: //you// <li>Fin: //te// <li>Fre: //</I> <li>Ger: <I>ihr</I> <li>Ita: <I>// <li>Nep: //तिमीहरु// <li>Nor: //dere// <li>Pes: //شما// <li>Pnb: //تسی// <li>Pol: //was// <li>Ron: //voi// <li>Rus: //вы// <li>Spa: //</I> <li>Swe: <I>ni</I> <li>Urd: <I>تم</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>youPol_Pron</CODE></TD>
+<TD><A HREF="#Pron" TITLE="Pron - personal pronoun">Pron</A></TD>
+<TD><div class=reveal> <I>you</I> <div class=popup> <ul> <li>API: <CODE>youPol_Pron</CODE> <li>Afr: <I>ResAfr.Neutr</I> <li>Bul: <I>вие</I> <li>Cat: <I>// <li>Dan: //De// <li>Dut: //ResDut.Utr// <li>Eng: //you// <li>Fin: //te// <li>Fre: //</I> <li>Ger: <I>Sie</I> <li>Ita: <I>// <li>Nep: //तपाई// <li>Nor: //Dere// <li>Pes: //شما// <li>Pnb: //تسی// <li>Pol: //ciebie// <li>Ron: //dumneavoastră// <li>Rus: //вы// <li>Spa: //</I> <li>Swe: <I>ni</I> <li>Urd: <I>آپ</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>youSg_Pron</CODE></TD>
+<TD><A HREF="#Pron" TITLE="Pron - personal pronoun">Pron</A></TD>
+<TD><div class=reveal> <I>you</I> <div class=popup> <ul> <li>API: <CODE>youSg_Pron</CODE> <li>Afr: <I>ResAfr.Neutr</I> <li>Bul: <I>ти</I> <li>Cat: <I>// <li>Dan: //du// <li>Dut: //ResDut.Neutr// <li>Eng: //you// <li>Fin: //sinä// <li>Fre: //</I> <li>Ger: <I>du</I> <li>Ita: <I>// <li>Nep: //तिमी// <li>Nor: //du// <li>Pes: //تو// <li>Pnb: //توں// <li>Pol: //ciebie// <li>Ron: //tu// <li>Rus: //ты// <li>Spa: //</I> <li>Swe: <I>du</I> <li>Urd: <I>تو</I> </ul> </div> </div></TD>
+</TR>
+</TABLE>
+
+<A NAME="Punct"></A>
+<H2>Punct</H2>
+
+<TABLE BORDER="1" CELLPADDING="4">
+<TR>
+<TH>Function</TH>
+<TH>Type</TH>
+<TH COLSPAN="2">Example</TH>
+</TR>
+<TR>
+<TD><CODE>exclMarkPunct</CODE></TD>
+<TD><A HREF="#Punct">Punct</A></TD>
+<TD><div class=reveal> <I>yes !</I> <div class=popup> <ul> <li>API: <CODE>mkText (mkPhr yes_Utt) exclMarkPunct</CODE> <li>Afr: <I>ja !</I> <li>Bul: <I>да !</I> <li>Cat: <I>sí !</I> <li>Dan: <I>ja !</I> <li>Dut: <I>ja !</I> <li>Eng: <I>yes !</I> <li>Fin: <I>kyllä !</I> <li>Fre: <I>oui !</I> <li>Ger: <I>ja !</I> <li>Ita: <I>sì !</I> <li>Nep: <I>हजुर !</I> <li>Nor: <I>ja !</I> <li>Pes: <I>بله</I> <li>Pnb: <I>ہاں !</I> <li>Pol: <I>tak !</I> <li>Ron: <I>da !</I> <li>Rus: <I>Да !</I> <li>Spa: <I>¡ sí !</I> <li>Swe: <I>ja !</I> <li>Urd: <I>ہاں</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>fullStopPunct</CODE></TD>
+<TD><A HREF="#Punct">Punct</A></TD>
+<TD><div class=reveal> <I>yes .</I> <div class=popup> <ul> <li>API: <CODE>mkText (mkPhr yes_Utt) fullStopPunct</CODE> <li>Afr: <I>ja .</I> <li>Bul: <I>да .</I> <li>Cat: <I>sí .</I> <li>Dan: <I>ja .</I> <li>Dut: <I>ja .</I> <li>Eng: <I>yes .</I> <li>Fin: <I>kyllä .</I> <li>Fre: <I>oui .</I> <li>Ger: <I>ja .</I> <li>Ita: <I>sì .</I> <li>Nep: <I>हजुर .</I> <li>Nor: <I>ja .</I> <li>Pes: <I>بله Û”</I> <li>Pnb: <I>ہاں .</I> <li>Pol: <I>tak .</I> <li>Ron: <I>da .</I> <li>Rus: <I>Да .</I> <li>Spa: <I>sí .</I> <li>Swe: <I>ja .</I> <li>Urd: <I>ہاں</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>questMarkPunct</CODE></TD>
+<TD><A HREF="#Punct">Punct</A></TD>
+<TD><div class=reveal> <I>yes ?</I> <div class=popup> <ul> <li>API: <CODE>mkText (mkPhr yes_Utt) questMarkPunct</CODE> <li>Afr: <I>ja ?</I> <li>Bul: <I>да ?</I> <li>Cat: <I>sí ?</I> <li>Dan: <I>ja ?</I> <li>Dut: <I>ja ?</I> <li>Eng: <I>yes ?</I> <li>Fin: <I>kyllä ?</I> <li>Fre: <I>oui ?</I> <li>Ger: <I>ja ?</I> <li>Ita: <I>sì ?</I> <li>Nep: <I>हजुर ?</I> <li>Nor: <I>ja ?</I> <li>Pes: <I>بله</I> <li>Pnb: <I>ہاں ?</I> <li>Pol: <I>tak ?</I> <li>Ron: <I>da ?</I> <li>Rus: <I>Да ?</I> <li>Spa: <I>¿ sí ?</I> <li>Swe: <I>ja ?</I> <li>Urd: <I>ہاں</I> </ul> </div> </div></TD>
+</TR>
+</TABLE>
+
+<A NAME="QCl"></A>
+<H2>QCl - question clause, with all tenses</H2>
+
+<TABLE BORDER="1" CELLPADDING="4">
+<TR>
+<TH>Function</TH>
+<TH>Type</TH>
+<TH COLSPAN="2">Example</TH>
+</TR>
+<TR>
+<TD><CODE>mkQCl</CODE></TD>
+<TD><A HREF="#Cl" TITLE="Cl - declarative clause, with all tenses">Cl</A> <CODE>-&gt;</CODE> <A HREF="#QCl" TITLE="QCl - question clause, with all tenses">QCl</A></TD>
+<TD><div class=reveal> <I>does she sleep</I> <div class=popup> <ul> <li>API: <CODE>mkQCl (mkCl she_NP sleep_V)</CODE> <li>Afr: <I>slaap sy</I> <li>Bul: <I>тя спи ли</I> <li>Cat: <I>ella dorm</I> <li>Dan: <I>sover hun</I> <li>Dut: <I>slaapt ze</I> <li>Eng: <I>does she sleep</I> <li>Fin: <I>nukkuuko hän</I> <li>Fre: <I>elle dort</I> <li>Ger: <I>schläft sie</I> <li>Ita: <I>lei dorme</I> <li>Nep: <I>के उनी सुत्छिन्</I> <li>Nor: <I>sover hun</I> <li>Pes: <I>آیا او می خوابد</I> <li>Pnb: <I>كی او سوندی اے</I> <li>Pol: <I>czy ona śpi</I> <li>Ron: <I>ea doarme</I> <li>Rus: <I>она спдит</I> <li>Spa: <I>ella duerme</I> <li>Swe: <I>sover hon</I> <li>Urd: <I>كیا وہ سوتی ہے</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>mkQCl</CODE></TD>
+<TD><A HREF="#IP" TITLE="IP - interrogative pronoun">IP</A> <CODE>-&gt;</CODE> <A HREF="#VP" TITLE="VP - verb phrase">VP</A> <CODE>-&gt;</CODE> <A HREF="#QCl" TITLE="QCl - question clause, with all tenses">QCl</A></TD>
+<TD><div class=reveal> <I>who always sleeps</I> <div class=popup> <ul> <li>API: <CODE>mkQCl who_IP (mkVP always_AdV (mkVP sleep_V))</CODE> <li>Afr: <I>wie slaap altyd altyd</I> <li>Bul: <I>кой винаги спи</I> <li>Cat: <I>qui dorm sempre</I> <li>Dan: <I>hvem sover altid</I> <li>Dut: <I>wie slaapt altijd</I> <li>Eng: <I>who always sleeps</I> <li>Fin: <I>kuka nukkuu aina</I> <li>Fre: <I>qui dort toujours</I> <li>Ger: <I>wer schläft immer</I> <li>Ita: <I>chi dorme sempre</I> <li>Nep: <I>को सधैँ सुत्छन्</I> <li>Nor: <I>hvem sover altid</I> <li>Pes: <I>چه کسی همیشه می خوابد</I> <li>Pnb: <I>كون ہمیشہ سوندا اے</I> <li>Pol: <I>kto zawsze śpi</I> <li>Ron: <I>cine doarme mereu</I> <li>Rus: <I>кто всегда спдит</I> <li>Spa: <I>quién duerme siempre</I> <li>Swe: <I>vem sover alltid</I> <li>Urd: <I>كون ہمیشہ سوتا ہے</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>mkQCl</CODE></TD>
+<TD><A HREF="#IP" TITLE="IP - interrogative pronoun">IP</A> <CODE>-&gt;</CODE> <A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#QCl" TITLE="QCl - question clause, with all tenses">QCl</A></TD>
+<TD><div class=reveal> <I>who sleeps</I> <div class=popup> <ul> <li>API: <CODE>mkQCl who_IP sleep_V</CODE> <li>Afr: <I>wie slaap</I> <li>Bul: <I>кой спи</I> <li>Cat: <I>qui dorm</I> <li>Dan: <I>hvem sover</I> <li>Dut: <I>wie slaapt</I> <li>Eng: <I>who sleeps</I> <li>Fin: <I>kuka nukkuu</I> <li>Fre: <I>qui dort</I> <li>Ger: <I>wer schläft</I> <li>Ita: <I>chi dorme</I> <li>Nep: <I>को सुत्छन्</I> <li>Nor: <I>hvem sover</I> <li>Pes: <I>چه کسی می خوابد</I> <li>Pnb: <I>كون سوندا اے</I> <li>Pol: <I>kto śpi</I> <li>Ron: <I>cine doarme</I> <li>Rus: <I>кто спдит</I> <li>Spa: <I>quién duerme</I> <li>Swe: <I>vem sover</I> <li>Urd: <I>كون سوتا ہے</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>mkQCl</CODE></TD>
+<TD><A HREF="#IP" TITLE="IP - interrogative pronoun">IP</A> <CODE>-&gt;</CODE> <A HREF="#V2" TITLE="V2 - two-place verb">V2</A> <CODE>-&gt;</CODE> <A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A> <CODE>-&gt;</CODE> <A HREF="#QCl" TITLE="QCl - question clause, with all tenses">QCl</A></TD>
+<TD><div class=reveal> <I>who loves her</I> <div class=popup> <ul> <li>API: <CODE>mkQCl who_IP love_V2 she_NP</CODE> <li>Afr: <I>wie het haar lief</I> <li>Bul: <I>кой обича нея</I> <li>Cat: <I>qui la estima</I> <li>Dan: <I>hvem elsker hende</I> <li>Dut: <I>wie heeft haar lief</I> <li>Eng: <I>who loves her</I> <li>Fin: <I>kuka rakastaa häntä</I> <li>Fre: <I>qui l' aime</I> <li>Ger: <I>wer liebt sie</I> <li>Ita: <I>chi la ama</I> <li>Nep: <I>को उनी लाई माया गर्छन्</I> <li>Nor: <I>hvem elsker henne</I> <li>Pes: <I>چه کسی او را دوست دارد</I> <li>Pnb: <I>كون اونوں پیار كردا اے</I> <li>Pol: <I>kto kocha ją</I> <li>Ron: <I>cine o iubeşte</I> <li>Rus: <I>кто любдит её</I> <li>Spa: <I>quién la ama</I> <li>Swe: <I>vem älskar henne</I> <li>Urd: <I>كون اس كو پیار كرتا ہے</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>mkQCl</CODE></TD>
+<TD><A HREF="#IP" TITLE="IP - interrogative pronoun">IP</A> <CODE>-&gt;</CODE> <A HREF="#V3" TITLE="V3 - three-place verb">V3</A> <CODE>-&gt;</CODE> <A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A> <CODE>-&gt;</CODE> <A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A> <CODE>-&gt;</CODE> <A HREF="#QCl" TITLE="QCl - question clause, with all tenses">QCl</A></TD>
+<TD><div class=reveal> <I>who sends it to her</I> <div class=popup> <ul> <li>API: <CODE>mkQCl who_IP send_V3 it_NP she_NP</CODE> <li>Afr: <I>wie stuur dit na haar</I> <li>Bul: <I>кой праща него до нея</I> <li>Cat: <I>qui ho li envia</I> <li>Dan: <I>hvem sender det til hende</I> <li>Dut: <I>wie stuurt het naar haar</I> <li>Eng: <I>who sends it to her</I> <li>Fin: <I>kuka lähettää sen hänelle</I> <li>Fre: <I>qui le lui envoie</I> <li>Ger: <I>wer schickt es ihr</I> <li>Ita: <I>chi lo le manda</I> <li>Nep: <I>को यो उन्लाई लाई पठाउँछन्</I> <li>Nor: <I>hvem sender det til henne</I> <li>Pes: <I>چه کسی آن را برای او می فرستد</I> <li>Pnb: <I>كون اینوں اونوں پیجدا اے</I> <li>Pol: <I>kto wysyła do niej je</I> <li>Ron: <I>cine i -l trimite</I> <li>Rus: <I>кто посылает ней его</I> <li>Spa: <I>quién lo le manda</I> <li>Swe: <I>vem skickar det till henne</I> <li>Urd: <I>كون اس كو اس كو بھیجتا ہے</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>mkQCl</CODE></TD>
+<TD><A HREF="#IP" TITLE="IP - interrogative pronoun">IP</A> <CODE>-&gt;</CODE> <A HREF="#VV" TITLE="VV - verb-phrase-complement verb">VV</A> <CODE>-&gt;</CODE> <A HREF="#VP" TITLE="VP - verb phrase">VP</A> <CODE>-&gt;</CODE> <A HREF="#QCl" TITLE="QCl - question clause, with all tenses">QCl</A></TD>
+<TD><div class=reveal> <I>who wants to sleep</I> <div class=popup> <ul> <li>API: <CODE>mkQCl who_IP want_VV (mkVP sleep_V)</CODE> <li>Afr: <I>wie wil slaap</I> <li>Bul: <I>кой иска да спи</I> <li>Cat: <I>qui vol dormir</I> <li>Dan: <I>hvem vil sove</I> <li>Dut: <I>wie wil slapen</I> <li>Eng: <I>who wants to sleep</I> <li>Fin: <I>kuka tahtoo nukkumaan</I> <li>Fre: <I>qui veut dormir</I> <li>Ger: <I>wer will schlafen</I> <li>Ita: <I>chi vuole dormire</I> <li>Nep: <I>को सुत्न चाहन्छन्</I> <li>Nor: <I>hvem vil sove</I> <li>Pes: <I>چه کسی می خواهد بخوابد</I> <li>Pnb: <I>كون سونا چاندا اے</I> <li>Pol: <I>kto chce spać</I> <li>Ron: <I>cine vrea sã doarmă</I> <li>Rus: <I>кто хочет спать</I> <li>Spa: <I>quién quiere dormir</I> <li>Swe: <I>vem vill sova</I> <li>Urd: <I>كون سونا چاہتا ہے</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>mkQCl</CODE></TD>
+<TD><A HREF="#IP" TITLE="IP - interrogative pronoun">IP</A> <CODE>-&gt;</CODE> <A HREF="#VS" TITLE="VS - sentence-complement verb">VS</A> <CODE>-&gt;</CODE> <A HREF="#S" TITLE="S - declarative sentence">S</A> <CODE>-&gt;</CODE> <A HREF="#QCl" TITLE="QCl - question clause, with all tenses">QCl</A></TD>
+<TD><div class=reveal> <I>who says that I sleep</I> <div class=popup> <ul> <li>API: <CODE>mkQCl who_IP say_VS (mkS (mkCl i_NP sleep_V))</CODE> <li>Afr: <I>wie sê dat ek slaap</I> <li>Bul: <I>кой казва , че аз спя</I> <li>Cat: <I>qui diu que jo dormo</I> <li>Dan: <I>hvem siger at jeg sover</I> <li>Dut: <I>wie zegt dat ik slaap</I> <li>Eng: <I>who says that I sleep</I> <li>Fin: <I>kuka sanoo että minä nukun</I> <li>Fre: <I>qui dit que je dors</I> <li>Ger: <I>wer sagt daß ich schlafe</I> <li>Ita: <I>chi dice che io dormo</I> <li>Nep: <I>को भन्छन्की म सुत्छु</I> <li>Nor: <I>hvem sier at jeg sover</I> <li>Pes: <I>چه کسی می گوید که من می خوابم</I> <li>Pnb: <I>كون كہدا اے كہ میں سوندا واں</I> <li>Pol: <I>kto mówi , że ja śpię</I> <li>Ron: <I>cine spune cã eu dorm</I> <li>Rus: <I>кто говордит , что я сплю</I> <li>Spa: <I>quién dice que yo duermo</I> <li>Swe: <I>vem säger att jag sover</I> <li>Urd: <I>كون كہتا ہے كہ میں سوتا ہوں</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>mkQCl</CODE></TD>
+<TD><A HREF="#IP" TITLE="IP - interrogative pronoun">IP</A> <CODE>-&gt;</CODE> <A HREF="#VQ" TITLE="VQ - question-complement verb">VQ</A> <CODE>-&gt;</CODE> <A HREF="#QS" TITLE="QS - question">QS</A> <CODE>-&gt;</CODE> <A HREF="#QCl" TITLE="QCl - question clause, with all tenses">QCl</A></TD>
+<TD><div class=reveal> <I>who wonders who sleeps</I> <div class=popup> <ul> <li>API: <CODE>mkQCl who_IP wonder_VQ (mkQS (mkQCl who_IP sleep_V))</CODE> <li>Afr: <I>wie vra hom af wie slaap</I> <li>Bul: <I>кой се учудва кой спи</I> <li>Cat: <I>qui se pregunta qui dorm</I> <li>Dan: <I>hvem undres hvem som sover</I> <li>Dut: <I>wie vraagt zich af wie slaapt</I> <li>Eng: <I>who wonders who sleeps</I> <li>Fin: <I>kuka ihmettelee kuka nukkuu</I> <li>Fre: <I>qui s' étonne qui dort</I> <li>Ger: <I>wer wundert sich wer schläft</I> <li>Ita: <I>chi si domanda chi dorme</I> <li>Nep: <I>को अचम्म हुन्छन्की को सुत्छन्</I> <li>Nor: <I>hvem undrer hvem som sover</I> <li>Pes: <I>*</I> <li>Pnb: <I>كون حیران ہوندا اے كہ كون سوندا اے</I> <li>Pol: <I>kto zastanawia się , kto śpi</I> <li>Ron: <I>cine se întreabă cine doarme</I> <li>Rus: <I>кто интересует кто спдит</I> <li>Spa: <I>quién se pregunta quién duerme</I> <li>Swe: <I>vem undrar vem som sover</I> <li>Urd: <I>كون حیران ہوتا ہے كہ كون سوتا ہے</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>mkQCl</CODE></TD>
+<TD><A HREF="#IP" TITLE="IP - interrogative pronoun">IP</A> <CODE>-&gt;</CODE> <A HREF="#VA" TITLE="VA - adjective-complement verb">VA</A> <CODE>-&gt;</CODE> <A HREF="#A" TITLE="A - one-place adjective">A</A> <CODE>-&gt;</CODE> <A HREF="#QCl" TITLE="QCl - question clause, with all tenses">QCl</A></TD>
+<TD><div class=reveal> <I>who becomes old</I> <div class=popup> <ul> <li>API: <CODE>mkQCl who_IP become_VA old_A</CODE> <li>Afr: <I>wie word oud</I> <li>Bul: <I>кой става стар</I> <li>Cat: <I>qui se torna vell</I> <li>Dan: <I>hvem bliver gammel</I> <li>Dut: <I>wie wordt oud</I> <li>Eng: <I>who becomes old</I> <li>Fin: <I>kuka tulee vanhaksi</I> <li>Fre: <I>qui devient vieux</I> <li>Ger: <I>wer wird alt</I> <li>Ita: <I>chi diventa vecchio</I> <li>Nep: <I>को बुढो हुन्छन्</I> <li>Nor: <I>hvem blir gammel</I> <li>Pes: <I>چه کسی پیر می شود</I> <li>Pnb: <I>كون بوڈا بندا اے</I> <li>Pol: <I>kto staje się stary</I> <li>Ron: <I>cine devine vechi</I> <li>Rus: <I>кто становдит старым</I> <li>Spa: <I>quién se converte viejo</I> <li>Swe: <I>vem blir gammal</I> <li>Urd: <I>كون بوڑھا بنتا ہے</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>mkQCl</CODE></TD>
+<TD><A HREF="#IP" TITLE="IP - interrogative pronoun">IP</A> <CODE>-&gt;</CODE> <A HREF="#VA" TITLE="VA - adjective-complement verb">VA</A> <CODE>-&gt;</CODE> <A HREF="#AP" TITLE="AP - adjectival phrase">AP</A> <CODE>-&gt;</CODE> <A HREF="#QCl" TITLE="QCl - question clause, with all tenses">QCl</A></TD>
+<TD><div class=reveal> <I>who becomes very old</I> <div class=popup> <ul> <li>API: <CODE>mkQCl who_IP become_VA (mkAP very_AdA old_A)</CODE> <li>Afr: <I>wie word baie oud</I> <li>Bul: <I>кой става много стар</I> <li>Cat: <I>qui se torna molt vell</I> <li>Dan: <I>hvem bliver meget gammel</I> <li>Dut: <I>wie wordt erg oud</I> <li>Eng: <I>who becomes very old</I> <li>Fin: <I>kuka tulee erittäin vanhaksi</I> <li>Fre: <I>qui devient très vieux</I> <li>Ger: <I>wer wird sehr alt</I> <li>Ita: <I>chi diventa molto vecchio</I> <li>Nep: <I>को धेरै बुढो हुन्छन्</I> <li>Nor: <I>hvem blir mye gammel</I> <li>Pes: <I>چه کسی خیلی پیر می شود</I> <li>Pnb: <I>كون بہت بوڈا بندا اے</I> <li>Pol: <I>kto staje się bardzo stary</I> <li>Ron: <I>cine devine foarte vechi</I> <li>Rus: <I>кто становдит очень старым</I> <li>Spa: <I>quién se converte muy viejo</I> <li>Swe: <I>vem blir mycket gammal</I> <li>Urd: <I>كون بہت بوڑھا بنتا ہے</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>mkQCl</CODE></TD>
+<TD><A HREF="#IP" TITLE="IP - interrogative pronoun">IP</A> <CODE>-&gt;</CODE> <A HREF="#V2A" TITLE="V2A - verb with NP and AP complement">V2A</A> <CODE>-&gt;</CODE> <A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A> <CODE>-&gt;</CODE> <A HREF="#A" TITLE="A - one-place adjective">A</A> <CODE>-&gt;</CODE> <A HREF="#QCl" TITLE="QCl - question clause, with all tenses">QCl</A></TD>
+<TD><div class=reveal> <I>who paints it red</I> <div class=popup> <ul> <li>API: <CODE>mkQCl who_IP paint_V2A it_NP red_A</CODE> <li>Afr: <I>wie skilder dit rooi</I> <li>Bul: <I>кой рисува него червено</I> <li>Cat: <I>qui ho pinta en vermell</I> <li>Dan: <I>hvem maler det rødt</I> <li>Dut: <I>wie schildeert het rood</I> <li>Eng: <I>who paints it red</I> <li>Fin: <I>kuka maalaa sen punaiseksi</I> <li>Fre: <I>qui le peint en rouge</I> <li>Ger: <I>wer malt es rot</I> <li>Ita: <I>chi lo dipinge rosso</I> <li>Nep: <I>को यो लाई रातो रँग लागाउँछन्</I> <li>Nor: <I>hvem maler det rødt</I> <li>Pes: <I>چه کسی آن را قرمز رنگ می کند</I> <li>Pnb: <I>كون اینوں لال رنگ كردا اے</I> <li>Pol: <I>kto maluje je na czerwono</I> <li>Ron: <I>cine îl pictează roşu</I> <li>Rus: <I>кто рисует красным его</I> <li>Spa: <I>quién lo pinta en rojo</I> <li>Swe: <I>vem målar det rött</I> <li>Urd: <I>كون اس كو لال رنگ كرتا ہے</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>mkQCl</CODE></TD>
+<TD><A HREF="#IP" TITLE="IP - interrogative pronoun">IP</A> <CODE>-&gt;</CODE> <A HREF="#V2A" TITLE="V2A - verb with NP and AP complement">V2A</A> <CODE>-&gt;</CODE> <A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A> <CODE>-&gt;</CODE> <A HREF="#AP" TITLE="AP - adjectival phrase">AP</A> <CODE>-&gt;</CODE> <A HREF="#QCl" TITLE="QCl - question clause, with all tenses">QCl</A></TD>
+<TD><div class=reveal> <I>who paints it very red</I> <div class=popup> <ul> <li>API: <CODE>mkQCl who_IP paint_V2A it_NP (mkAP very_AdA red_A)</CODE> <li>Afr: <I>wie skilder dit baie rooi</I> <li>Bul: <I>кой рисува него много червено</I> <li>Cat: <I>qui ho pinta en molt vermell</I> <li>Dan: <I>hvem maler det meget rødt</I> <li>Dut: <I>wie schildeert het erg rood</I> <li>Eng: <I>who paints it very red</I> <li>Fin: <I>kuka maalaa sen erittäin punaiseksi</I> <li>Fre: <I>qui le peint en très rouge</I> <li>Ger: <I>wer malt es sehr rot</I> <li>Ita: <I>chi lo dipinge molto rosso</I> <li>Nep: <I>को यो लाई धेरै रातो रँग लागाउँछन्</I> <li>Nor: <I>hvem maler det mye rødt</I> <li>Pes: <I>چه کسی آن را خیلی قرمز رنگ می کند</I> <li>Pnb: <I>كون اینوں بہت لال رنگ كردا اے</I> <li>Pol: <I>kto maluje je na bardzo czerwono</I> <li>Ron: <I>cine îl pictează foarte roşu</I> <li>Rus: <I>кто рисует очень красным его</I> <li>Spa: <I>quién lo pinta en muy rojo</I> <li>Swe: <I>vem målar det mycket rött</I> <li>Urd: <I>كون اس كو بہت لال رنگ كرتا ہے</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>mkQCl</CODE></TD>
+<TD><A HREF="#IP" TITLE="IP - interrogative pronoun">IP</A> <CODE>-&gt;</CODE> <A HREF="#V2S" TITLE="V2S - verb with NP and S complement">V2S</A> <CODE>-&gt;</CODE> <A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A> <CODE>-&gt;</CODE> <A HREF="#S" TITLE="S - declarative sentence">S</A> <CODE>-&gt;</CODE> <A HREF="#QCl" TITLE="QCl - question clause, with all tenses">QCl</A></TD>
+<TD><div class=reveal> <I>who answers to him that we sleep</I> <div class=popup> <ul> <li>API: <CODE>mkQCl who_IP answer_V2S he_NP (mkS (mkCl we_NP sleep_V))</CODE> <li>Afr: <I>wie antwoord hom dat ons slaap</I> <li>Bul: <I>кой отговаря му , че ние спим</I> <li>Cat: <I>qui li respon que nosaltres dormim</I> <li>Dan: <I>hvem svarer til ham at vi sover</I> <li>Dut: <I>wie antwoordt hem dat we slapen</I> <li>Eng: <I>who answers to him that we sleep</I> <li>Fin: <I>kuka vastaa hänelle että me nukumme</I> <li>Fre: <I>qui lui répond que nous dormons</I> <li>Ger: <I>wer antwortet ihm daß wir schlafen</I> <li>Ita: <I>chi gli risponde che noi dormiamo</I> <li>Nep: <I>को उ लाई उत्तर दिन्छन्की हामीहरु सुत्छौँ</I> <li>Nor: <I>hvem svarer til ham at vi sover</I> <li>Pes: <I>چه کسی به او جواب می دهد که ما می خوابیم</I> <li>Pnb: <I>كون اونوں جواب دیندا اے كہ اسی سوندے واں</I> <li>Pol: <I>kto odpowiada jemu , że my śpimy</I> <li>Ron: <I>cine îi răspunde cã noi dormim</I> <li>Rus: <I>кто отвечает , что мы спдим его</I> <li>Spa: <I>quién le responde que nosotros dormimos</I> <li>Swe: <I>vem svarar till honom att vi sover</I> <li>Urd: <I>كون اس كو جواب دیتا ہے كہ ہم سوتے ہیں</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>mkQCl</CODE></TD>
+<TD><A HREF="#IP" TITLE="IP - interrogative pronoun">IP</A> <CODE>-&gt;</CODE> <A HREF="#V2Q" TITLE="V2Q - verb with NP and Q complement">V2Q</A> <CODE>-&gt;</CODE> <A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A> <CODE>-&gt;</CODE> <A HREF="#QS" TITLE="QS - question">QS</A> <CODE>-&gt;</CODE> <A HREF="#QCl" TITLE="QCl - question clause, with all tenses">QCl</A></TD>
+<TD><div class=reveal> <I>who asks him who sleeps</I> <div class=popup> <ul> <li>API: <CODE>mkQCl who_IP ask_V2Q he_NP (mkQS (mkQCl who_IP sleep_V))</CODE> <li>Afr: <I>wie vra hom wie slaap</I> <li>Bul: <I>кой пита него кой спи</I> <li>Cat: <I>qui li pregunta qui dorm</I> <li>Dan: <I>hvem spørger ham hvem som sover</I> <li>Dut: <I>wie vraagt hem wie slaapt</I> <li>Eng: <I>who asks him who sleeps</I> <li>Fin: <I>kuka kysyy häneltä kuka nukkuu</I> <li>Fre: <I>qui lui demande qui dort</I> <li>Ger: <I>wer fragt ihn wer schläft</I> <li>Ita: <I>chi gli chiede chi dorme</I> <li>Nep: <I>को उ सँग सोध्छन्की को सुत्छन्</I> <li>Nor: <I>hvem spørr ham hvem som sover</I> <li>Pes: <I>چه کسی از او می پرسد چه کسی می خوابد</I> <li>Pnb: <I>كون اونوں پچھدا اے كہ كون سوندا اے</I> <li>Pol: <I>kto pyta jego , kto śpi</I> <li>Ron: <I>cine îl întreabă cine doarme</I> <li>Rus: <I>кто спрашивает кто спдит его</I> <li>Spa: <I>quién le pregunta quién duerme</I> <li>Swe: <I>vem frågar honom vem som sover</I> <li>Urd: <I>كون اس سے پوچھتا ہے كہ كون سوتا ہے</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>mkQCl</CODE></TD>
+<TD><A HREF="#IP" TITLE="IP - interrogative pronoun">IP</A> <CODE>-&gt;</CODE> <A HREF="#V2V" TITLE="V2V - verb with NP and V complement">V2V</A> <CODE>-&gt;</CODE> <A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A> <CODE>-&gt;</CODE> <A HREF="#VP" TITLE="VP - verb phrase">VP</A> <CODE>-&gt;</CODE> <A HREF="#QCl" TITLE="QCl - question clause, with all tenses">QCl</A></TD>
+<TD><div class=reveal> <I>who begs him to sleep</I> <div class=popup> <ul> <li>API: <CODE>mkQCl who_IP beg_V2V he_NP (mkVP sleep_V)</CODE> <li>Afr: <I>wie smeek hom te slaap</I> <li>Bul: <I>кой моли него да спи</I> <li>Cat: <I>qui el demana a dormir</I> <li>Dan: <I>hvem beder ham at sove</I> <li>Dut: <I>wie smeekt hem te slapen</I> <li>Eng: <I>who begs him to sleep</I> <li>Fin: <I>kuka pyytää häntä nukkuneelle</I> <li>Fre: <I>qui le demande à dormir</I> <li>Ger: <I>wer bittet ihn zu schlafen</I> <li>Ita: <I>chi lo prega di dormire</I> <li>Nep: <I>को उ लाई सुत्न आग्रह गर्छन्</I> <li>Nor: <I>hvem ber ham att sove</I> <li>Pes: <I>چه کسی از او خواهش می کند بخوابد</I> <li>Pnb: <I>كون اونوں سونا دی مانگدا اے</I> <li>Pol: <I>*</I> <li>Ron: <I>cine îl roagă sã doarmă</I> <li>Rus: <I>кто просит спать его</I> <li>Spa: <I>quién lo roga a dormir</I> <li>Swe: <I>vem ber honom att sova</I> <li>Urd: <I>كون اس سے سونے كی التجا كرتا ہے</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>mkQCl</CODE></TD>
+<TD><A HREF="#IP" TITLE="IP - interrogative pronoun">IP</A> <CODE>-&gt;</CODE> <A HREF="#A" TITLE="A - one-place adjective">A</A> <CODE>-&gt;</CODE> <A HREF="#QCl" TITLE="QCl - question clause, with all tenses">QCl</A></TD>
+<TD><div class=reveal> <I>who is old</I> <div class=popup> <ul> <li>API: <CODE>mkQCl who_IP old_A</CODE> <li>Afr: <I>wie is oud</I> <li>Bul: <I>кой е стар</I> <li>Cat: <I>qui és vell</I> <li>Dan: <I>hvem er gammel</I> <li>Dut: <I>wie is oud</I> <li>Eng: <I>who is old</I> <li>Fin: <I>kuka on vanha</I> <li>Fre: <I>qui est vieux</I> <li>Ger: <I>wer ist alt</I> <li>Ita: <I>chi è vecchio</I> <li>Nep: <I>को बुढो छन्</I> <li>Nor: <I>hvem er gammel</I> <li>Pes: <I>چه کسی پیر است</I> <li>Pnb: <I>كون بوڈا اے</I> <li>Pol: <I>kto jest stary</I> <li>Ron: <I>cine este vechi</I> <li>Rus: <I>кто старый</I> <li>Spa: <I>quién es viejo</I> <li>Swe: <I>vem är gammal</I> <li>Urd: <I>كون بوڑھا ہے</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>mkQCl</CODE></TD>
+<TD><A HREF="#IP" TITLE="IP - interrogative pronoun">IP</A> <CODE>-&gt;</CODE> <A HREF="#A" TITLE="A - one-place adjective">A</A> <CODE>-&gt;</CODE> <A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A> <CODE>-&gt;</CODE> <A HREF="#QCl" TITLE="QCl - question clause, with all tenses">QCl</A></TD>
+<TD><div class=reveal> <I>who is older than he</I> <div class=popup> <ul> <li>API: <CODE>mkQCl who_IP old_A he_NP</CODE> <li>Afr: <I>wie is ouer as hy</I> <li>Bul: <I>кой е по - стар от него</I> <li>Cat: <I>qui és més vell que ell</I> <li>Dan: <I>hvem er ældre end han</I> <li>Dut: <I>wie is ouder dan hij</I> <li>Eng: <I>who is older than he</I> <li>Fin: <I>kuka on vanhempi kuin hän</I> <li>Fre: <I>qui est plus vieux que lui</I> <li>Ger: <I>wer ist älter als er</I> <li>Ita: <I>chi è più vecchio di lui</I> <li>Nep: <I>को उ भन्दा बुढो छन्</I> <li>Nor: <I>hvem er eldre enn han</I> <li>Pes: <I>چه کسی پیر تر از او است</I> <li>Pnb: <I>كون اورے توں بوڈا اے</I> <li>Pol: <I>kto jest starszy niż on</I> <li>Ron: <I>cine este mai vechi decât el</I> <li>Rus: <I>кто старше него</I> <li>Spa: <I>quién es más viejo que él</I> <li>Swe: <I>vem är äldre än han</I> <li>Urd: <I>كون اس سے بوڑھا ہے</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>mkQCl</CODE></TD>
+<TD><A HREF="#IP" TITLE="IP - interrogative pronoun">IP</A> <CODE>-&gt;</CODE> <A HREF="#A2" TITLE="A2 - two-place adjective">A2</A> <CODE>-&gt;</CODE> <A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A> <CODE>-&gt;</CODE> <A HREF="#QCl" TITLE="QCl - question clause, with all tenses">QCl</A></TD>
+<TD><div class=reveal> <I>who is married to him</I> <div class=popup> <ul> <li>API: <CODE>mkQCl who_IP married_A2 he_NP</CODE> <li>Afr: <I>wie is getroud met hom</I> <li>Bul: <I>кой е женен за него</I> <li>Cat: <I>qui és casata a ell</I> <li>Dan: <I>hvem er gift med ham</I> <li>Dut: <I>wie is getrouwd met hem</I> <li>Eng: <I>who is married to him</I> <li>Fin: <I>kuka on avioitunut hänen kanssa</I> <li>Fre: <I>qui est marié à lui</I> <li>Ger: <I>wer ist verheiratet mit ihm</I> <li>Ita: <I>chi è sposato con lui</I> <li>Nep: <I>को उ सँग विवाहित छन्</I> <li>Nor: <I>hvem er gift med ham</I> <li>Pes: <I>چه کسی او متأهل است</I> <li>Pnb: <I>*</I> <li>Pol: <I>kto jest zaślubiony jemu</I> <li>Ron: <I>cine este căsătorit cu el</I> <li>Rus: <I>кто замужем за им</I> <li>Spa: <I>quién es casado a él</I> <li>Swe: <I>vem är gift med honom</I> <li>Urd: <I>كون اس سے [شادی كرنa] ہے</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>mkQCl</CODE></TD>
+<TD><A HREF="#IP" TITLE="IP - interrogative pronoun">IP</A> <CODE>-&gt;</CODE> <A HREF="#AP" TITLE="AP - adjectival phrase">AP</A> <CODE>-&gt;</CODE> <A HREF="#QCl" TITLE="QCl - question clause, with all tenses">QCl</A></TD>
+<TD><div class=reveal> <I>who is very old</I> <div class=popup> <ul> <li>API: <CODE>mkQCl who_IP (mkAP very_AdA old_A)</CODE> <li>Afr: <I>wie is baie oud</I> <li>Bul: <I>кой е много стар</I> <li>Cat: <I>qui és molt vell</I> <li>Dan: <I>hvem er meget gammel</I> <li>Dut: <I>wie is erg oud</I> <li>Eng: <I>who is very old</I> <li>Fin: <I>kuka on erittäin vanha</I> <li>Fre: <I>qui est très vieux</I> <li>Ger: <I>wer ist sehr alt</I> <li>Ita: <I>chi è molto vecchio</I> <li>Nep: <I>को धेरै बुढो छन्</I> <li>Nor: <I>hvem er mye gammel</I> <li>Pes: <I>چه کسی خیلی پیر است</I> <li>Pnb: <I>كون بہت بوڈا اے</I> <li>Pol: <I>kto jest bardzo stary</I> <li>Ron: <I>cine este foarte vechi</I> <li>Rus: <I>кто очень старый</I> <li>Spa: <I>quién es muy viejo</I> <li>Swe: <I>vem är mycket gammal</I> <li>Urd: <I>كون بہت بوڑھا ہے</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>mkQCl</CODE></TD>
+<TD><A HREF="#IP" TITLE="IP - interrogative pronoun">IP</A> <CODE>-&gt;</CODE> <A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A> <CODE>-&gt;</CODE> <A HREF="#QCl" TITLE="QCl - question clause, with all tenses">QCl</A></TD>
+<TD><div class=reveal> <I>who is the woman</I> <div class=popup> <ul> <li>API: <CODE>mkQCl who_IP (mkNP the_Det woman_N)</CODE> <li>Afr: <I>wie is die vrou</I> <li>Bul: <I>кой е жената</I> <li>Cat: <I>qui és la dona</I> <li>Dan: <I>hvem er kvinden</I> <li>Dut: <I>wie is de vrouw</I> <li>Eng: <I>who is the woman</I> <li>Fin: <I>kuka on nainen</I> <li>Fre: <I>qui est la femme</I> <li>Ger: <I>wer ist die Frau</I> <li>Ita: <I>chi è la donna</I> <li>Nep: <I>को आईमाई हुन्</I> <li>Nor: <I>hvem er kvinna</I> <li>Pes: <I>چه کسی زن است</I> <li>Pnb: <I>كون زنانی اے</I> <li>Pol: <I>kto jest kobietą</I> <li>Ron: <I>cine este femeia</I> <li>Rus: <I>кто женщина</I> <li>Spa: <I>quién es la mujer</I> <li>Swe: <I>vem är kvinnan</I> <li>Urd: <I>كون عورت ہے</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>mkQCl</CODE></TD>
+<TD><A HREF="#IP" TITLE="IP - interrogative pronoun">IP</A> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A> <CODE>-&gt;</CODE> <A HREF="#QCl" TITLE="QCl - question clause, with all tenses">QCl</A></TD>
+<TD><div class=reveal> <I>who is a woman</I> <div class=popup> <ul> <li>API: <CODE>mkQCl who_IP woman_N</CODE> <li>Afr: <I>wie is 'n vrou</I> <li>Bul: <I>кой е жена</I> <li>Cat: <I>qui és dona</I> <li>Dan: <I>hvem er en kvinde</I> <li>Dut: <I>wie is vrouw</I> <li>Eng: <I>who is a woman</I> <li>Fin: <I>kuka on nainen</I> <li>Fre: <I>qui est femme</I> <li>Ger: <I>wer ist eine Frau</I> <li>Ita: <I>chi è donna</I> <li>Nep: <I>को आईमाई हुन्</I> <li>Nor: <I>hvem er ei kvinne</I> <li>Pes: <I>چه کسی زن است</I> <li>Pnb: <I>كون زنانی اے</I> <li>Pol: <I>kto jest kobieta</I> <li>Ron: <I>cine este femeie</I> <li>Rus: <I>кто женщина</I> <li>Spa: <I>quién es mujer</I> <li>Swe: <I>vem är en kvinna</I> <li>Urd: <I>كون عورت ہے</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>mkQCl</CODE></TD>
+<TD><A HREF="#IP" TITLE="IP - interrogative pronoun">IP</A> <CODE>-&gt;</CODE> <A HREF="#CN" TITLE="CN - common noun (without determiner)">CN</A> <CODE>-&gt;</CODE> <A HREF="#QCl" TITLE="QCl - question clause, with all tenses">QCl</A></TD>
+<TD><div class=reveal> <I>who is an old woman</I> <div class=popup> <ul> <li>API: <CODE>mkQCl who_IP (mkCN old_A woman_N)</CODE> <li>Afr: <I>wie is 'n oud vrou</I> <li>Bul: <I>кой е стара жена</I> <li>Cat: <I>qui és dona vell</I> <li>Dan: <I>hvem er en gammel kvinde</I> <li>Dut: <I>wie is oude vrouw</I> <li>Eng: <I>who is an old woman</I> <li>Fin: <I>kuka on vanha nainen</I> <li>Fre: <I>qui est vieille femme</I> <li>Ger: <I>wer ist eine alte Frau</I> <li>Ita: <I>chi è vecchia donna</I> <li>Nep: <I>को बुढी आईमाई हुन्</I> <li>Nor: <I>hvem er ei gammel kvinne</I> <li>Pes: <I>چه کسی زن پیر است</I> <li>Pnb: <I>كون بوڈی زنانی اے</I> <li>Pol: <I>kto jest stara kobieta</I> <li>Ron: <I>cine este femeie veche</I> <li>Rus: <I>кто старая женщина</I> <li>Spa: <I>quién es vieja mujer</I> <li>Swe: <I>vem är en gammal kvinna</I> <li>Urd: <I>كون بوڑھی عورت ہے</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>mkQCl</CODE></TD>
+<TD><A HREF="#IP" TITLE="IP - interrogative pronoun">IP</A> <CODE>-&gt;</CODE> <A HREF="#Adv" TITLE="Adv - verb-phrase-modifying adverb">Adv</A> <CODE>-&gt;</CODE> <A HREF="#QCl" TITLE="QCl - question clause, with all tenses">QCl</A></TD>
+<TD><div class=reveal> <I>who is here</I> <div class=popup> <ul> <li>API: <CODE>mkQCl who_IP here_Adv</CODE> <li>Afr: <I>wie is hier</I> <li>Bul: <I>кой е тук</I> <li>Cat: <I>qui és aquí</I> <li>Dan: <I>hvem er her</I> <li>Dut: <I>wie is hier</I> <li>Eng: <I>who is here</I> <li>Fin: <I>kuka on täällä</I> <li>Fre: <I>qui est ici</I> <li>Ger: <I>wer ist hier</I> <li>Ita: <I>chi è quà</I> <li>Nep: <I>को यहाँ छन्</I> <li>Nor: <I>hvem er her</I> <li>Pes: <I>چه کسی اینجا است</I> <li>Pnb: <I>كون ایتھے اے</I> <li>Pol: <I>kto jest tutaj</I> <li>Ron: <I>cine este aici</I> <li>Rus: <I>кто здесь</I> <li>Spa: <I>quién es aquí</I> <li>Swe: <I>vem är här</I> <li>Urd: <I>كون یہاں ہے</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>mkQCl</CODE></TD>
+<TD><A HREF="#IP" TITLE="IP - interrogative pronoun">IP</A> <CODE>-&gt;</CODE> <A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A> <CODE>-&gt;</CODE> <A HREF="#V2" TITLE="V2 - two-place verb">V2</A> <CODE>-&gt;</CODE> <A HREF="#QCl" TITLE="QCl - question clause, with all tenses">QCl</A></TD>
+<TD><div class=reveal> <I>who is her</I> <div class=popup> <ul> <li>API: <CODE>mkQCl who_IP she_NP</CODE> <li>Afr: <I>wie is sy</I> <li>Bul: <I>кой е нея</I> <li>Cat: <I>qui és ella</I> <li>Dan: <I>hvem er hende</I> <li>Dut: <I>wie is ze</I> <li>Eng: <I>who is her</I> <li>Fin: <I>kuka on hän</I> <li>Fre: <I>qui est elle</I> <li>Ger: <I>wer ist sie</I> <li>Ita: <I>chi è lei</I> <li>Nep: <I>को उनी हुन्</I> <li>Nor: <I>hvem er henne</I> <li>Pes: <I>چه کسی او است</I> <li>Pnb: <I>كون اونوں اے</I> <li>Pol: <I>kto jest nią</I> <li>Ron: <I>cine este ea</I> <li>Rus: <I>кто она</I> <li>Spa: <I>quién es ella</I> <li>Swe: <I>vem är henne</I> <li>Urd: <I>كون وہ ہے</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>mkQCl</CODE></TD>
+<TD><A HREF="#IP" TITLE="IP - interrogative pronoun">IP</A> <CODE>-&gt;</CODE> <A HREF="#ClSlash">ClSlash</A> <CODE>-&gt;</CODE> <A HREF="#QCl" TITLE="QCl - question clause, with all tenses">QCl</A></TD>
+<TD><div class=reveal> <I>whom does she love today</I> <div class=popup> <ul> <li>API: <CODE>mkQCl who_IP (mkClSlash (mkClSlash she_NP love_V2) today_Adv)</CODE> <li>Afr: <I>wie het sy lief vandag</I> <li>Bul: <I>кого обича тя днес</I> <li>Cat: <I>qui estima ella avui</I> <li>Dan: <I>hvem elsker hun idag</I> <li>Dut: <I>wie heeft ze lief vandaag</I> <li>Eng: <I>whom does she love today</I> <li>Fin: <I>ketä hän rakastaa tänään</I> <li>Fre: <I>qui aime elle aujourd'hui</I> <li>Ger: <I>wen liebt sie heute</I> <li>Ita: <I>chi ama lei oggi</I> <li>Nep: <I>कासलाई आज उनी माया गर्छिन्</I> <li>Nor: <I>hvem elsker hun idag</I> <li>Pes: <I>چه کسی را امروز او دوست دارد</I> <li>Pnb: <I>كون اج او پیار كردی اے</I> <li>Pol: <I>kogo dziś kocha ona</I> <li>Ron: <I>pe cine iubeşte ea astăzi</I> <li>Rus: <I>*</I> <li>Spa: <I>quién ama ella hoy</I> <li>Swe: <I>vem älskar hon idag</I> <li>Urd: <I>كون آج وہ پیار كرتی ہے</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>mkQCl</CODE></TD>
+<TD><A HREF="#IAdv" TITLE="IAdv - interrogative adverb">IAdv</A> <CODE>-&gt;</CODE> <A HREF="#Cl" TITLE="Cl - declarative clause, with all tenses">Cl</A> <CODE>-&gt;</CODE> <A HREF="#QCl" TITLE="QCl - question clause, with all tenses">QCl</A></TD>
+<TD><div class=reveal> <I>why does she sleep</I> <div class=popup> <ul> <li>API: <CODE>mkQCl why_IAdv (mkCl she_NP sleep_V)</CODE> <li>Afr: <I>waarom slaap sy</I> <li>Bul: <I>защо спи тя</I> <li>Cat: <I>per quË dorm ella</I> <li>Dan: <I>hvorfor sover hun</I> <li>Dut: <I>waarom slaapt ze</I> <li>Eng: <I>why does she sleep</I> <li>Fin: <I>miksi hän nukkuu</I> <li>Fre: <I>pourquoi dort elle</I> <li>Ger: <I>warum schläft sie</I> <li>Ita: <I>perché dorme lei</I> <li>Nep: <I>किन उनी सुत्छिन्</I> <li>Nor: <I>hvorfor sover hun</I> <li>Pes: <I>چرا او می خوابد</I> <li>Pnb: <I>كیوں او سوندی اے</I> <li>Pol: <I>dlaczego ona śpi</I> <li>Ron: <I>de ce doarme ea</I> <li>Rus: <I>почему она спдит</I> <li>Spa: <I>porqué duerme ella</I> <li>Swe: <I>varför sover hon</I> <li>Urd: <I>كیوں وہ سوتی ہے</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>mkQCl</CODE></TD>
+<TD><A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#IP" TITLE="IP - interrogative pronoun">IP</A> <CODE>-&gt;</CODE> <A HREF="#Cl" TITLE="Cl - declarative clause, with all tenses">Cl</A> <CODE>-&gt;</CODE> <A HREF="#QCl" TITLE="QCl - question clause, with all tenses">QCl</A></TD>
+<TD><div class=reveal> <I>with whom does she sleep</I> <div class=popup> <ul> <li>API: <CODE>mkQCl with_Prep who_IP (mkCl she_NP sleep_V)</CODE> <li>Afr: <I>met wie slaap sy</I> <li>Bul: <I>с кой спи тя</I> <li>Cat: <I>amb qui dorm ella</I> <li>Dan: <I>med hvem sover hun</I> <li>Dut: <I>met wie slaapt ze</I> <li>Eng: <I>with whom does she sleep</I> <li>Fin: <I>kenen kanssa hän nukkuu</I> <li>Fre: <I>avec qui dort elle</I> <li>Ger: <I>mit wem schläft sie</I> <li>Ita: <I>con chi dorme lei</I> <li>Nep: <I>को सँग उनी सुत्छिन्</I> <li>Nor: <I>med hvem sover hun</I> <li>Pes: <I>با چه کسی او می خوابد</I> <li>Pnb: <I>كرا دے نال او سوندی اے</I> <li>Pol: <I>z kim ona śpi</I> <li>Ron: <I>cu cine doarme ea</I> <li>Rus: <I>с кто она спдит</I> <li>Spa: <I>con quién duerme ella</I> <li>Swe: <I>med vem sover hon</I> <li>Urd: <I>كس كے ساتھ وہ سوتی ہے</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>mkQCl</CODE></TD>
+<TD><A HREF="#IAdv" TITLE="IAdv - interrogative adverb">IAdv</A> <CODE>-&gt;</CODE> <A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A> <CODE>-&gt;</CODE> <A HREF="#QCl" TITLE="QCl - question clause, with all tenses">QCl</A></TD>
+<TD><div class=reveal> <I>where is she</I> <div class=popup> <ul> <li>API: <CODE>mkQCl where_IAdv she_NP</CODE> <li>Afr: <I>waar is sy</I> <li>Bul: <I>къде е тя</I> <li>Cat: <I>on és ella</I> <li>Dan: <I>hvor er hun</I> <li>Dut: <I>waar is ze</I> <li>Eng: <I>where is she</I> <li>Fin: <I>missä hän on</I> <li>Fre: <I>oÃ¹ est elle</I> <li>Ger: <I>wo ist sie</I> <li>Ita: <I>dove è lei</I> <li>Nep: <I>उनी कहाँ छिन्</I> <li>Nor: <I>hvor er hun</I> <li>Pes: <I>او کجا است</I> <li>Pnb: <I>او كتھے اے</I> <li>Pol: <I>gdzie jest ona</I> <li>Ron: <I>unde este ea</I> <li>Rus: <I>где она</I> <li>Spa: <I>donde es ella</I> <li>Swe: <I>var är hon</I> <li>Urd: <I>وہ كہاں ہے</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>mkQCl</CODE></TD>
+<TD><A HREF="#IComp" TITLE="IComp - interrogative complement of copula">IComp</A> <CODE>-&gt;</CODE> <A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A> <CODE>-&gt;</CODE> <A HREF="#QCl" TITLE="QCl - question clause, with all tenses">QCl</A></TD>
+<TD><div class=reveal> <I>who is this man</I> <div class=popup> <ul> <li>API: <CODE>mkQCl (mkIComp who_IP) (mkNP this_Det man_N)</CODE> <li>Afr: <I>wie is hierdie man</I> <li>Bul: <I>кой е този мъж</I> <li>Cat: <I>qui és aquest home</I> <li>Dan: <I>hvem er denne mand</I> <li>Dut: <I>wie is deze man</I> <li>Eng: <I>who is this man</I> <li>Fin: <I>kuka tämä mies on</I> <li>Fre: <I>qui est cet homme</I> <li>Ger: <I>wer ist dieser Mann</I> <li>Ita: <I>chi è questo uomo</I> <li>Nep: <I>यो मान्छे को छ</I> <li>Nor: <I>hvem er denne mannen</I> <li>Pes: <I>این مرد چه کسی است</I> <li>Pnb: <I>اے بندہ كون اے</I> <li>Pol: <I>kim jest ten mężczyzna</I> <li>Ron: <I>cine este acest om</I> <li>Rus: <I>кто этот человек</I> <li>Spa: <I>quién es este hombre</I> <li>Swe: <I>vem är den här mannen</I> <li>Urd: <I>یہ آدمی كون ہے</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>mkQCl</CODE></TD>
+<TD><A HREF="#IP" TITLE="IP - interrogative pronoun">IP</A> <CODE>-&gt;</CODE> <A HREF="#QCl" TITLE="QCl - question clause, with all tenses">QCl</A></TD>
+<TD><div class=reveal> <I>which city is there</I> <div class=popup> <ul> <li>API: <CODE>mkQCl (mkIP which_IQuant city_N)</CODE> <li>Afr: <I>watter stad is daar</I> <li>Bul: <I>кой град е тук</I> <li>Cat: <I>quin ciutat hi ha quin ciutat</I> <li>Dan: <I>hvilken by findes det</I> <li>Dut: <I>welke stad is er</I> <li>Eng: <I>which city is there</I> <li>Fin: <I>mikä kaupunki on olemassa</I> <li>Fre: <I>quelle ville il y a</I> <li>Ger: <I>welche Stadt gibt es</I> <li>Ita: <I>quale città c' è</I> <li>Nep: <I>त्यहाँ कुन शहर छ</I> <li>Nor: <I>hvilken by finnes det</I> <li>Pes: <I>کدام شهر است</I> <li>Pnb: <I>اوتھے كیڑا شہر اے</I> <li>Pol: <I>które miasto jest</I> <li>Ron: <I>care oraş este</I> <li>Rus: <I>который город существует</I> <li>Spa: <I>qué ciudad hay</I> <li>Swe: <I>vilken stad finns det</I> <li>Urd: <I>وہاں كون سا شہر ہے</I> </ul> </div> </div></TD>
+</TR>
+</TABLE>
+
+<A NAME="QS"></A>
+<H2>QS - question</H2>
+
+<TABLE BORDER="1" CELLPADDING="4">
+<TR>
+<TH>Function</TH>
+<TH>Type</TH>
+<TH COLSPAN="2">Example</TH>
+</TR>
+<TR>
+<TD><CODE>mkQS</CODE></TD>
+<TD>(<A HREF="#Tense" TITLE="Tense - tense">Tense</A>) <CODE>-&gt;</CODE> (<A HREF="#Ant" TITLE="Ant - anteriority">Ant</A>) <CODE>-&gt;</CODE> (<A HREF="#Pol" TITLE="Pol - polarity">Pol</A>) <CODE>-&gt;</CODE> <A HREF="#QCl" TITLE="QCl - question clause, with all tenses">QCl</A> <CODE>-&gt;</CODE> <A HREF="#QS" TITLE="QS - question">QS</A></TD>
+<TD><div class=reveal> <I>who wouldn't have slept</I> <div class=popup> <ul> <li>API: <CODE>mkQS conditionalTense anteriorAnt negativePol (mkQCl who_IP sleep_V)</CODE> <li>Afr: <I>wie sou nie nie geslaap het</I> <li>Bul: <I>кой не би спал</I> <li>Cat: <I>qui no hauria dormit</I> <li>Dan: <I>hvem ville ikke have sovet</I> <li>Dut: <I>wie zou niet geslapen hebben</I> <li>Eng: <I>who wouldn't have slept</I> <li>Fin: <I>Prelude.(!!): index too large</I> <li>Fre: <I>qui n' aurait pas dormi</I> <li>Ger: <I>wer würde nicht geschlafen haben</I> <li>Ita: <I>chi non avrebbe dormito</I> <li>Nep: <I>को सुतेकाहुन्थे</I> <li>Nor: <I>hvem ville ikke ha sovet</I> <li>Pes: <I>چه کسی نمی خوابید</I> <li>Pnb: <I>كون نا ژاید سو ے</I> <li>Pol: <I>kto nie spałby</I> <li>Ron: <I>cine nu ar fi dormit</I> <li>Rus: <I>кто спал бы</I> <li>Spa: <I>quién no habría dormido</I> <li>Swe: <I>vem skulle inte ha sovit</I> <li>Urd: <I>كون نا شاید سو ے</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>mkQS</CODE></TD>
+<TD><A HREF="#Cl" TITLE="Cl - declarative clause, with all tenses">Cl</A> <CODE>-&gt;</CODE> <A HREF="#QS" TITLE="QS - question">QS</A></TD>
+<TD><div class=reveal> <I>does she sleep</I> <div class=popup> <ul> <li>API: <CODE>mkQS (mkCl she_NP sleep_V)</CODE> <li>Afr: <I>slaap sy</I> <li>Bul: <I>тя спи ли</I> <li>Cat: <I>ella dorm</I> <li>Dan: <I>sover hun</I> <li>Dut: <I>slaapt ze</I> <li>Eng: <I>does she sleep</I> <li>Fin: <I>nukkuuko hän</I> <li>Fre: <I>elle dort</I> <li>Ger: <I>schläft sie</I> <li>Ita: <I>lei dorme</I> <li>Nep: <I>के उनी सुत्छिन्</I> <li>Nor: <I>sover hun</I> <li>Pes: <I>آیا او می خوابد</I> <li>Pnb: <I>كی او سوندی اے</I> <li>Pol: <I>czy ona śpi</I> <li>Ron: <I>ea doarme</I> <li>Rus: <I>она спдит</I> <li>Spa: <I>ella duerme</I> <li>Swe: <I>sover hon</I> <li>Urd: <I>كیا وہ سوتی ہے</I> </ul> </div> </div></TD>
+</TR>
+</TABLE>
+
+<A NAME="Quant"></A>
+<H2>Quant - quantifier ('nucleus' of Det)</H2>
+
+<TABLE BORDER="1" CELLPADDING="4">
+<TR>
+<TH>Function</TH>
+<TH>Type</TH>
+<TH COLSPAN="2">Example</TH>
+</TR>
+<TR>
+<TD><CODE>a_Quant</CODE></TD>
+<TD><A 'HREF="#Quant" TITLE="Quant - quantifier ('nucleus' of Det)"'>Quant</A></TD>
+<TD><div class=reveal> <I>a house</I> <div class=popup> <ul> <li>API: <CODE>mkNP a_Quant house_N</CODE> <li>Afr: <I>'n huis</I> <li>Bul: <I>къща</I> <li>Cat: <I>// <li>Dan: //et hus// <li>Dut: //een huis// <li>Eng: //a house// <li>Fin: //talo// <li>Fre: //</I> <li>Ger: <I>ein Haus</I> <li>Ita: <I>// <li>Nep: //घर// <li>Nor: //et hus// <li>Pes: //یک خانه// <li>Pnb: //{s : ResPnb.NPCase => Str// <li>Pol: //domu// <li>Ron: //</I> <li>Rus: <I>дом</I> <li>Spa: <I>''</I> <li>Swe: <I>ett hus</I> <li>Urd: <I>ایك گھر</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>mkQuant</CODE></TD>
+<TD><A HREF="#Pron" TITLE="Pron - personal pronoun">Pron</A> <CODE>-&gt;</CODE> <A 'HREF="#Quant" TITLE="Quant - quantifier ('nucleus' of Det)"'>Quant</A></TD>
+<TD><div class=reveal> <I>my house</I> <div class=popup> <ul> <li>API: <CODE>mkNP (mkQuant i_Pron) house_N</CODE> <li>Afr: <I>my huis</I> <li>Bul: <I>моята къща</I> <li>Cat: <I>// <li>Dan: //mit hus// <li>Dut: //mijn huis// <li>Eng: //my house// <li>Fin: //minun taloni// <li>Fre: //</I> <li>Ger: <I>mein Haus</I> <li>Ita: <I>// <li>Nep: //मेरो घर// <li>Nor: //mit hus// <li>Pes: //خانه ی من// <li>Pnb: //{s : ResPnb.NPCase => Str// <li>Pol: //mojego domu// <li>Ron: //</I> <li>Rus: <I>мой дом</I> <li>Spa: <I>''</I> <li>Swe: <I>mitt hus</I> <li>Urd: <I>میرا گھر</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>no_Quant</CODE></TD>
+<TD><A 'HREF="#Quant" TITLE="Quant - quantifier ('nucleus' of Det)"'>Quant</A></TD>
+<TD><div class=reveal> <I>no house</I> <div class=popup> <ul> <li>API: <CODE>mkNP no_Quant house_N</CODE> <li>Afr: <I>geen huis</I> <li>Bul: <I>*</I> <li>Cat: <I>// <li>Dan: //*// <li>Dut: //geen huis// <li>Eng: //no house// <li>Fin: //ei mikään talo// <li>Fre: //</I> <li>Ger: <I>kein Haus</I> <li>Ita: <I>// <li>Nep: //हैन घर// <li>Nor: //*// <li>Pes: //*// <li>Pnb: //{s : ResPnb.NPCase => Str// <li>Pol: //żadnego domu// <li>Ron: //</I> <li>Rus: <I>*</I> <li>Spa: <I>*</I> <li>Swe: <I>inget hus</I> <li>Urd: <I>كوی نہیں گھر</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>that_Quant</CODE></TD>
+<TD><A 'HREF="#Quant" TITLE="Quant - quantifier ('nucleus' of Det)"'>Quant</A></TD>
+<TD><div class=reveal> <I>that house</I> <div class=popup> <ul> <li>API: <CODE>mkNP that_Quant house_N</CODE> <li>Afr: <I>daardie huis</I> <li>Bul: <I>онази къща</I> <li>Cat: <I>// <li>Dan: //det der hus// <li>Dut: //dat huis// <li>Eng: //that house// <li>Fin: //tuo talo// <li>Fre: //</I> <li>Ger: <I>jenes Haus</I> <li>Ita: <I>// <li>Nep: //त्ये घर// <li>Nor: //det der huset// <li>Pes: //آن خانه// <li>Pnb: //{s : ResPnb.NPCase => Str// <li>Pol: //tamtego domu// <li>Ron: //</I> <li>Rus: <I>тот дом</I> <li>Spa: <I>''</I> <li>Swe: <I>det där huset</I> <li>Urd: <I>وہ گھر</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>the_Quant</CODE></TD>
+<TD><A 'HREF="#Quant" TITLE="Quant - quantifier ('nucleus' of Det)"'>Quant</A></TD>
+<TD><div class=reveal> <I>the house</I> <div class=popup> <ul> <li>API: <CODE>mkNP the_Quant house_N</CODE> <li>Afr: <I>die huis</I> <li>Bul: <I>къщата</I> <li>Cat: <I>// <li>Dan: //huset// <li>Dut: //het huis// <li>Eng: //the house// <li>Fin: //talo// <li>Fre: //</I> <li>Ger: <I>das Haus</I> <li>Ita: <I>// <li>Nep: //घर// <li>Nor: //huset// <li>Pes: //خانه// <li>Pnb: //{s : ResPnb.NPCase => Str// <li>Pol: //domu// <li>Ron: //</I> <li>Rus: <I>дом</I> <li>Spa: <I>''</I> <li>Swe: <I>huset</I> <li>Urd: <I>گھر</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>this_Quant</CODE></TD>
+<TD><A 'HREF="#Quant" TITLE="Quant - quantifier ('nucleus' of Det)"'>Quant</A></TD>
+<TD><div class=reveal> <I>this house</I> <div class=popup> <ul> <li>API: <CODE>mkNP this_Quant house_N</CODE> <li>Afr: <I>hierdie huis</I> <li>Bul: <I>тази къща</I> <li>Cat: <I>// <li>Dan: //dette hus// <li>Dut: //dit huis// <li>Eng: //this house// <li>Fin: //tämä talo// <li>Fre: //</I> <li>Ger: <I>dieses Haus</I> <li>Ita: <I>// <li>Nep: //यो घर// <li>Nor: //dette huset// <li>Pes: //این خانه// <li>Pnb: //{s : ResPnb.NPCase => Str// <li>Pol: //tego domu// <li>Ron: //</I> <li>Rus: <I>этот дом</I> <li>Spa: <I>''</I> <li>Swe: <I>det här huset</I> <li>Urd: <I>یہ گھر</I> </ul> </div> </div></TD>
+</TR>
+</TABLE>
+
+<A NAME="RCl"></A>
+<H2>RCl - relative clause, with all tenses</H2>
+
+<TABLE BORDER="1" CELLPADDING="4">
+<TR>
+<TH>Function</TH>
+<TH>Type</TH>
+<TH COLSPAN="2">Example</TH>
+</TR>
+<TR>
+<TD><CODE>mkRCl</CODE></TD>
+<TD><A HREF="#RP" TITLE="RP - relative pronoun">RP</A> <CODE>-&gt;</CODE> <A HREF="#VP" TITLE="VP - verb phrase">VP</A> <CODE>-&gt;</CODE> <A HREF="#RCl" TITLE="RCl - relative clause, with all tenses">RCl</A></TD>
+<TD><div class=reveal> <I>woman who always sleeps</I> <div class=popup> <ul> <li>API: <CODE>mkCN woman_N (mkRS (mkRCl which_RP (mkVP always_AdV (mkVP sleep_V))))</CODE> <li>Afr: <I>vrou wat altyd altyd slaap</I> <li>Bul: <I>жена която винаги спи</I> <li>Cat: <I>dona que dorm sempre</I> <li>Dan: <I>kvinde som altid sover</I> <li>Dut: <I>vrouw die altijd slaapt</I> <li>Eng: <I>woman who always sleeps</I> <li>Fin: <I>nainen joka nukkuu aina</I> <li>Fre: <I>femme qui dort toujours</I> <li>Ger: <I>Frau die immer schläft</I> <li>Ita: <I>donna che dorme sempre</I> <li>Nep: <I>आईमाई जो सधैँ सुत्छे</I> <li>Nor: <I>kvinne som altid sover</I> <li>Pes: <I>زنی که همیشه می خوابد</I> <li>Pnb: <I>{s : ParamX.Number =&gt; ResPnb.Case =&gt; Str</I> <li>Pol: <I>kobieta , która zawsze śpi</I> <li>Ron: <I>femeie care doarme mereu</I> <li>Rus: <I>женщина , которая всегда спдит</I> <li>Spa: <I>mujer que duerme siempre</I> <li>Swe: <I>kvinna som alltid sover</I> <li>Urd: <I>عورت جو ہمیشہ سوتی ہے</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>mkRCl</CODE></TD>
+<TD><A HREF="#RP" TITLE="RP - relative pronoun">RP</A> <CODE>-&gt;</CODE> <A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#RCl" TITLE="RCl - relative clause, with all tenses">RCl</A></TD>
+<TD><div class=reveal> <I>woman who sleeps</I> <div class=popup> <ul> <li>API: <CODE>mkCN woman_N (mkRS (mkRCl which_RP sleep_V))</CODE> <li>Afr: <I>vrou wat slaap</I> <li>Bul: <I>жена която спи</I> <li>Cat: <I>dona que dorm</I> <li>Dan: <I>kvinde som sover</I> <li>Dut: <I>vrouw die slaapt</I> <li>Eng: <I>woman who sleeps</I> <li>Fin: <I>nainen joka nukkuu</I> <li>Fre: <I>femme qui dort</I> <li>Ger: <I>Frau die schläft</I> <li>Ita: <I>donna che dorme</I> <li>Nep: <I>आईमाई जो सुत्छे</I> <li>Nor: <I>kvinne som sover</I> <li>Pes: <I>زنی که می خوابد</I> <li>Pnb: <I>{s : ParamX.Number =&gt; ResPnb.Case =&gt; Str</I> <li>Pol: <I>kobieta , która śpi</I> <li>Ron: <I>femeie care doarme</I> <li>Rus: <I>женщина , которая спдит</I> <li>Spa: <I>mujer que duerme</I> <li>Swe: <I>kvinna som sover</I> <li>Urd: <I>عورت جو سوتی ہے</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>mkRCl</CODE></TD>
+<TD><A HREF="#RP" TITLE="RP - relative pronoun">RP</A> <CODE>-&gt;</CODE> <A HREF="#V2" TITLE="V2 - two-place verb">V2</A> <CODE>-&gt;</CODE> <A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A> <CODE>-&gt;</CODE> <A HREF="#RCl" TITLE="RCl - relative clause, with all tenses">RCl</A></TD>
+<TD><div class=reveal> <I>woman who loves him</I> <div class=popup> <ul> <li>API: <CODE>mkCN woman_N (mkRS (mkRCl which_RP love_V2 he_NP))</CODE> <li>Afr: <I>vrou wat hom lief het</I> <li>Bul: <I>жена която обича него</I> <li>Cat: <I>dona que el estima</I> <li>Dan: <I>kvinde som elsker ham</I> <li>Dut: <I>vrouw die hem lief heeft</I> <li>Eng: <I>woman who loves him</I> <li>Fin: <I>nainen joka rakastaa häntä</I> <li>Fre: <I>femme qui l' aime</I> <li>Ger: <I>Frau die ihn liebt</I> <li>Ita: <I>donna che lo ama</I> <li>Nep: <I>आईमाई जो उ लाई माया गर्छे</I> <li>Nor: <I>kvinne som elsker ham</I> <li>Pes: <I>زنی که او را دوست دارد</I> <li>Pnb: <I>{s : ParamX.Number =&gt; ResPnb.Case =&gt; Str</I> <li>Pol: <I>kobieta , która kocha jego</I> <li>Ron: <I>femeie care îl iubeşte</I> <li>Rus: <I>женщина , которая любдит его</I> <li>Spa: <I>mujer que lo ama</I> <li>Swe: <I>kvinna som älskar honom</I> <li>Urd: <I>عورت جو اس كو پیار كرتی ہے</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>mkRCl</CODE></TD>
+<TD><A HREF="#RP" TITLE="RP - relative pronoun">RP</A> <CODE>-&gt;</CODE> <A HREF="#V3" TITLE="V3 - three-place verb">V3</A> <CODE>-&gt;</CODE> <A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A> <CODE>-&gt;</CODE> <A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A> <CODE>-&gt;</CODE> <A HREF="#RCl" TITLE="RCl - relative clause, with all tenses">RCl</A></TD>
+<TD><div class=reveal> <I>woman who sends it to him</I> <div class=popup> <ul> <li>API: <CODE>mkCN woman_N (mkRS (mkRCl which_RP send_V3 it_NP he_NP))</CODE> <li>Afr: <I>vrou wat dit na hom stuur</I> <li>Bul: <I>жена която праща него до него</I> <li>Cat: <I>dona que ho li envia</I> <li>Dan: <I>kvinde som sender det til ham</I> <li>Dut: <I>vrouw die het naar hem stuurt</I> <li>Eng: <I>woman who sends it to him</I> <li>Fin: <I>nainen joka lähettää sen hänelle</I> <li>Fre: <I>femme qui le lui envoie</I> <li>Ger: <I>Frau die es ihm schickt</I> <li>Ita: <I>donna che lo gli manda</I> <li>Nep: <I>आईमाई जो यो उस्लाई लाई पठाउँछे</I> <li>Nor: <I>kvinne som sender det til ham</I> <li>Pes: <I>زنی که آن را برای او می فرستد</I> <li>Pnb: <I>{s : ParamX.Number =&gt; ResPnb.Case =&gt; Str</I> <li>Pol: <I>kobieta , która wysyła do niego je</I> <li>Ron: <I>femeie care i -l trimite</I> <li>Rus: <I>женщина , которая посылает нему его</I> <li>Spa: <I>mujer que lo le manda</I> <li>Swe: <I>kvinna som skickar det till honom</I> <li>Urd: <I>عورت جو اس كو اس كو بھیجتی ہے</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>mkRCl</CODE></TD>
+<TD><A HREF="#RP" TITLE="RP - relative pronoun">RP</A> <CODE>-&gt;</CODE> <A HREF="#VV" TITLE="VV - verb-phrase-complement verb">VV</A> <CODE>-&gt;</CODE> <A HREF="#VP" TITLE="VP - verb phrase">VP</A> <CODE>-&gt;</CODE> <A HREF="#RCl" TITLE="RCl - relative clause, with all tenses">RCl</A></TD>
+<TD><div class=reveal> <I>woman who wants to sleep</I> <div class=popup> <ul> <li>API: <CODE>mkCN woman_N (mkRS (mkRCl which_RP want_VV (mkVP sleep_V)))</CODE> <li>Afr: <I>vrou wat slaap wil</I> <li>Bul: <I>жена която иска да спи</I> <li>Cat: <I>dona que vol dormir</I> <li>Dan: <I>kvinde som vil sove</I> <li>Dut: <I>vrouw die slapen wil</I> <li>Eng: <I>woman who wants to sleep</I> <li>Fin: <I>nainen joka tahtoo nukkumaan</I> <li>Fre: <I>femme qui veut dormir</I> <li>Ger: <I>Frau die schlafen will</I> <li>Ita: <I>donna che vuole dormire</I> <li>Nep: <I>आईमाई जो सुत्न चाहन्छे</I> <li>Nor: <I>kvinne som vil sove</I> <li>Pes: <I>زنی که می خواهد بخوابد</I> <li>Pnb: <I>{s : ParamX.Number =&gt; ResPnb.Case =&gt; Str</I> <li>Pol: <I>kobieta , która chce spać</I> <li>Ron: <I>femeie care vrea sã doarmă</I> <li>Rus: <I>женщина , которая хочет спать</I> <li>Spa: <I>mujer que quiere dormir</I> <li>Swe: <I>kvinna som vill sova</I> <li>Urd: <I>عورت جو سونا چاہتی ہے</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>mkRCl</CODE></TD>
+<TD><A HREF="#RP" TITLE="RP - relative pronoun">RP</A> <CODE>-&gt;</CODE> <A HREF="#VS" TITLE="VS - sentence-complement verb">VS</A> <CODE>-&gt;</CODE> <A HREF="#S" TITLE="S - declarative sentence">S</A> <CODE>-&gt;</CODE> <A HREF="#RCl" TITLE="RCl - relative clause, with all tenses">RCl</A></TD>
+<TD><div class=reveal> <I>woman who says that I sleep</I> <div class=popup> <ul> <li>API: <CODE>mkCN woman_N (mkRS (mkRCl which_RP say_VS (mkS (mkCl i_NP sleep_V))))</CODE> <li>Afr: <I>vrou wat sê dat ek slaap</I> <li>Bul: <I>жена която казва , че аз спя</I> <li>Cat: <I>dona que diu que jo dormo</I> <li>Dan: <I>kvinde som siger at jeg sover</I> <li>Dut: <I>vrouw die zegt dat ik slaap</I> <li>Eng: <I>woman who says that I sleep</I> <li>Fin: <I>nainen joka sanoo että minä nukun</I> <li>Fre: <I>femme qui dit que je dors</I> <li>Ger: <I>Frau die sagt daß ich schlafe</I> <li>Ita: <I>donna che dice che io dormo</I> <li>Nep: <I>आईमाई जो भन्छेकी म सुत्छु</I> <li>Nor: <I>kvinne som sier at jeg sover</I> <li>Pes: <I>زنی که می گوید که من می خوابم</I> <li>Pnb: <I>{s : ParamX.Number =&gt; ResPnb.Case =&gt; Str</I> <li>Pol: <I>kobieta , która mówi , że ja śpię</I> <li>Ron: <I>femeie care spune cã eu dorm</I> <li>Rus: <I>женщина , которая говордит , что я сплю</I> <li>Spa: <I>mujer que dice que yo duermo</I> <li>Swe: <I>kvinna som säger att jag sover</I> <li>Urd: <I>عورت جو كہتی ہے كہ میں سوتا ہوں</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>mkRCl</CODE></TD>
+<TD><A HREF="#RP" TITLE="RP - relative pronoun">RP</A> <CODE>-&gt;</CODE> <A HREF="#VQ" TITLE="VQ - question-complement verb">VQ</A> <CODE>-&gt;</CODE> <A HREF="#QS" TITLE="QS - question">QS</A> <CODE>-&gt;</CODE> <A HREF="#RCl" TITLE="RCl - relative clause, with all tenses">RCl</A></TD>
+<TD><div class=reveal> <I>woman who wonders who sleeps</I> <div class=popup> <ul> <li>API: <CODE>mkCN woman_N (mkRS (mkRCl which_RP wonder_VQ (mkQS (mkQCl who_IP sleep_V))))</CODE> <li>Afr: <I>vrou wat hom af vra wie slaap</I> <li>Bul: <I>жена която се учудва кой спи</I> <li>Cat: <I>dona que se pregunta qui dorm</I> <li>Dan: <I>kvinde som undres hvem som sover</I> <li>Dut: <I>vrouw die zich af vraagt wie slaapt</I> <li>Eng: <I>woman who wonders who sleeps</I> <li>Fin: <I>nainen joka ihmettelee kuka nukkuu</I> <li>Fre: <I>femme qui s' étonne qui dort</I> <li>Ger: <I>Frau die sich wundert wer schläft</I> <li>Ita: <I>donna che si domanda chi dorme</I> <li>Nep: <I>आईमाई जो अचम्म हुन्छेकी को सुत्छन्</I> <li>Nor: <I>kvinne som undrer hvem som sover</I> <li>Pes: <I>*</I> <li>Pnb: <I>{s : ParamX.Number =&gt; ResPnb.Case =&gt; Str</I> <li>Pol: <I>kobieta , która zastanawia się , kto śpi</I> <li>Ron: <I>femeie care se întreabă cine doarme</I> <li>Rus: <I>женщина , которая интересует кто спдит</I> <li>Spa: <I>mujer que se pregunta quién duerme</I> <li>Swe: <I>kvinna som undrar vem som sover</I> <li>Urd: <I>عورت جو حیران ہوتی ہے كہ كون سوتا ہے</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>mkRCl</CODE></TD>
+<TD><A HREF="#RP" TITLE="RP - relative pronoun">RP</A> <CODE>-&gt;</CODE> <A HREF="#VA" TITLE="VA - adjective-complement verb">VA</A> <CODE>-&gt;</CODE> <A HREF="#A" TITLE="A - one-place adjective">A</A> <CODE>-&gt;</CODE> <A HREF="#RCl" TITLE="RCl - relative clause, with all tenses">RCl</A></TD>
+<TD><div class=reveal> <I>woman who becomes old</I> <div class=popup> <ul> <li>API: <CODE>mkCN woman_N (mkRS (mkRCl which_RP become_VA old_A))</CODE> <li>Afr: <I>vrou wat oud word</I> <li>Bul: <I>жена която става стара</I> <li>Cat: <I>dona que se torna vell</I> <li>Dan: <I>kvinde som bliver gammel</I> <li>Dut: <I>vrouw die oud wordt</I> <li>Eng: <I>woman who becomes old</I> <li>Fin: <I>nainen joka tulee vanhaksi</I> <li>Fre: <I>femme qui devient vieille</I> <li>Ger: <I>Frau die alt wird</I> <li>Ita: <I>donna che diventa vecchia</I> <li>Nep: <I>आईमाई जो बुढी हुन्छे</I> <li>Nor: <I>kvinne som blir gammel</I> <li>Pes: <I>زنی که پیر می شود</I> <li>Pnb: <I>{s : ParamX.Number =&gt; ResPnb.Case =&gt; Str</I> <li>Pol: <I>kobieta , która staje się stara</I> <li>Ron: <I>femeie care devine veche</I> <li>Rus: <I>женщина , которая становдит старой</I> <li>Spa: <I>mujer que se converte vieja</I> <li>Swe: <I>kvinna som blir gammal</I> <li>Urd: <I>عورت جو بوڑھی بنتی ہے</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>mkRCl</CODE></TD>
+<TD><A HREF="#RP" TITLE="RP - relative pronoun">RP</A> <CODE>-&gt;</CODE> <A HREF="#VA" TITLE="VA - adjective-complement verb">VA</A> <CODE>-&gt;</CODE> <A HREF="#AP" TITLE="AP - adjectival phrase">AP</A> <CODE>-&gt;</CODE> <A HREF="#RCl" TITLE="RCl - relative clause, with all tenses">RCl</A></TD>
+<TD><div class=reveal> <I>woman who becomes very old</I> <div class=popup> <ul> <li>API: <CODE>mkCN woman_N (mkRS (mkRCl which_RP become_VA (mkAP very_AdA old_A)))</CODE> <li>Afr: <I>vrou wat baie oud word</I> <li>Bul: <I>жена която става много стара</I> <li>Cat: <I>dona que se torna molt vell</I> <li>Dan: <I>kvinde som bliver meget gammel</I> <li>Dut: <I>vrouw die erg oud wordt</I> <li>Eng: <I>woman who becomes very old</I> <li>Fin: <I>nainen joka tulee erittäin vanhaksi</I> <li>Fre: <I>femme qui devient très vieille</I> <li>Ger: <I>Frau die sehr alt wird</I> <li>Ita: <I>donna che diventa molto vecchia</I> <li>Nep: <I>आईमाई जो धेरै बुढी हुन्छे</I> <li>Nor: <I>kvinne som blir mye gammel</I> <li>Pes: <I>زنی که خیلی پیر می شود</I> <li>Pnb: <I>{s : ParamX.Number =&gt; ResPnb.Case =&gt; Str</I> <li>Pol: <I>kobieta , która staje się bardzo stara</I> <li>Ron: <I>femeie care devine foarte veche</I> <li>Rus: <I>женщина , которая становдит очень старой</I> <li>Spa: <I>mujer que se converte muy vieja</I> <li>Swe: <I>kvinna som blir mycket gammal</I> <li>Urd: <I>عورت جو بہت بوڑھی بنتی ہے</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>mkRCl</CODE></TD>
+<TD><A HREF="#RP" TITLE="RP - relative pronoun">RP</A> <CODE>-&gt;</CODE> <A HREF="#V2A" TITLE="V2A - verb with NP and AP complement">V2A</A> <CODE>-&gt;</CODE> <A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A> <CODE>-&gt;</CODE> <A HREF="#A" TITLE="A - one-place adjective">A</A> <CODE>-&gt;</CODE> <A HREF="#RCl" TITLE="RCl - relative clause, with all tenses">RCl</A></TD>
+<TD><div class=reveal> <I>woman who paints it red</I> <div class=popup> <ul> <li>API: <CODE>mkCN woman_N (mkRS (mkRCl which_RP paint_V2A it_NP red_A))</CODE> <li>Afr: <I>vrou wat dit rooi skilder</I> <li>Bul: <I>жена която рисува него червено</I> <li>Cat: <I>dona que ho pinta en vermell</I> <li>Dan: <I>kvinde som maler det rødt</I> <li>Dut: <I>vrouw die het rood schildeert</I> <li>Eng: <I>woman who paints it red</I> <li>Fin: <I>nainen joka maalaa sen punaiseksi</I> <li>Fre: <I>femme qui le peint en rouge</I> <li>Ger: <I>Frau die es rot malt</I> <li>Ita: <I>donna che lo dipinge rosso</I> <li>Nep: <I>आईमाई जो यो लाई रातो रँग लागाउँछे</I> <li>Nor: <I>kvinne som maler det rødt</I> <li>Pes: <I>زنی که آن را قرمز رنگ می کند</I> <li>Pnb: <I>{s : ParamX.Number =&gt; ResPnb.Case =&gt; Str</I> <li>Pol: <I>kobieta , która maluje je na czerwono</I> <li>Ron: <I>femeie care îl pictează roşu</I> <li>Rus: <I>женщина , которая рисует красным его</I> <li>Spa: <I>mujer que lo pinta en rojo</I> <li>Swe: <I>kvinna som målar det rött</I> <li>Urd: <I>عورت جو اس كو لال رنگ كرتی ہے</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>mkRCl</CODE></TD>
+<TD><A HREF="#RP" TITLE="RP - relative pronoun">RP</A> <CODE>-&gt;</CODE> <A HREF="#V2A" TITLE="V2A - verb with NP and AP complement">V2A</A> <CODE>-&gt;</CODE> <A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A> <CODE>-&gt;</CODE> <A HREF="#AP" TITLE="AP - adjectival phrase">AP</A> <CODE>-&gt;</CODE> <A HREF="#RCl" TITLE="RCl - relative clause, with all tenses">RCl</A></TD>
+<TD><div class=reveal> <I>woman who paints it very red</I> <div class=popup> <ul> <li>API: <CODE>mkCN woman_N (mkRS (mkRCl which_RP paint_V2A it_NP (mkAP very_AdA red_A)))</CODE> <li>Afr: <I>vrou wat dit baie rooi skilder</I> <li>Bul: <I>жена която рисува него много червено</I> <li>Cat: <I>dona que ho pinta en molt vermell</I> <li>Dan: <I>kvinde som maler det meget rødt</I> <li>Dut: <I>vrouw die het erg rood schildeert</I> <li>Eng: <I>woman who paints it very red</I> <li>Fin: <I>nainen joka maalaa sen erittäin punaiseksi</I> <li>Fre: <I>femme qui le peint en très rouge</I> <li>Ger: <I>Frau die es sehr rot malt</I> <li>Ita: <I>donna che lo dipinge molto rosso</I> <li>Nep: <I>आईमाई जो यो लाई धेरै रातो रँग लागाउँछे</I> <li>Nor: <I>kvinne som maler det mye rødt</I> <li>Pes: <I>زنی که آن را خیلی قرمز رنگ می کند</I> <li>Pnb: <I>{s : ParamX.Number =&gt; ResPnb.Case =&gt; Str</I> <li>Pol: <I>kobieta , która maluje je na bardzo czerwono</I> <li>Ron: <I>femeie care îl pictează foarte roşu</I> <li>Rus: <I>женщина , которая рисует очень красным его</I> <li>Spa: <I>mujer que lo pinta en muy rojo</I> <li>Swe: <I>kvinna som målar det mycket rött</I> <li>Urd: <I>عورت جو اس كو بہت لال رنگ كرتی ہے</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>mkRCl</CODE></TD>
+<TD><A HREF="#RP" TITLE="RP - relative pronoun">RP</A> <CODE>-&gt;</CODE> <A HREF="#V2S" TITLE="V2S - verb with NP and S complement">V2S</A> <CODE>-&gt;</CODE> <A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A> <CODE>-&gt;</CODE> <A HREF="#S" TITLE="S - declarative sentence">S</A> <CODE>-&gt;</CODE> <A HREF="#RCl" TITLE="RCl - relative clause, with all tenses">RCl</A></TD>
+<TD><div class=reveal> <I>woman who answers to him that we sleep</I> <div class=popup> <ul> <li>API: <CODE>mkCN woman_N (mkRS (mkRCl which_RP answer_V2S he_NP (mkS (mkCl we_NP sleep_V))))</CODE> <li>Afr: <I>vrou wat hom antwoord dat ons slaap</I> <li>Bul: <I>жена която отговаря му , че ние спим</I> <li>Cat: <I>dona que li respon que nosaltres dormim</I> <li>Dan: <I>kvinde som svarer til ham at vi sover</I> <li>Dut: <I>vrouw die hem antwoordt dat we slapen</I> <li>Eng: <I>woman who answers to him that we sleep</I> <li>Fin: <I>nainen joka vastaa hänelle että me nukumme</I> <li>Fre: <I>femme qui lui répond que nous dormons</I> <li>Ger: <I>Frau die ihm antwortet daß wir schlafen</I> <li>Ita: <I>donna che gli risponde che noi dormiamo</I> <li>Nep: <I>आईमाई जो उ लाई उत्तर दिन्छेकी हामीहरु सुत्छौँ</I> <li>Nor: <I>kvinne som svarer til ham at vi sover</I> <li>Pes: <I>زنی که به او جواب می دهد که ما می خوابیم</I> <li>Pnb: <I>{s : ParamX.Number =&gt; ResPnb.Case =&gt; Str</I> <li>Pol: <I>kobieta , która odpowiada jemu , że my śpimy</I> <li>Ron: <I>femeie care îi răspunde cã noi dormim</I> <li>Rus: <I>женщина , которая отвечает , что мы спдим его</I> <li>Spa: <I>mujer que le responde que nosotros dormimos</I> <li>Swe: <I>kvinna som svarar till honom att vi sover</I> <li>Urd: <I>عورت جو اس كو جواب دیتی ہے كہ ہم سوتے ہیں</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>mkRCl</CODE></TD>
+<TD><A HREF="#RP" TITLE="RP - relative pronoun">RP</A> <CODE>-&gt;</CODE> <A HREF="#V2Q" TITLE="V2Q - verb with NP and Q complement">V2Q</A> <CODE>-&gt;</CODE> <A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A> <CODE>-&gt;</CODE> <A HREF="#QS" TITLE="QS - question">QS</A> <CODE>-&gt;</CODE> <A HREF="#RCl" TITLE="RCl - relative clause, with all tenses">RCl</A></TD>
+<TD><div class=reveal> <I>woman who asks him who sleeps</I> <div class=popup> <ul> <li>API: <CODE>mkCN woman_N (mkRS (mkRCl which_RP ask_V2Q he_NP (mkQS (mkQCl who_IP sleep_V))))</CODE> <li>Afr: <I>vrou wat hom vra wie slaap</I> <li>Bul: <I>жена която пита него кой спи</I> <li>Cat: <I>dona que li pregunta qui dorm</I> <li>Dan: <I>kvinde som spørger ham hvem som sover</I> <li>Dut: <I>vrouw die hem vraagt wie slaapt</I> <li>Eng: <I>woman who asks him who sleeps</I> <li>Fin: <I>nainen joka kysyy häneltä kuka nukkuu</I> <li>Fre: <I>femme qui lui demande qui dort</I> <li>Ger: <I>Frau die ihn fragt wer schläft</I> <li>Ita: <I>donna che gli chiede chi dorme</I> <li>Nep: <I>आईमाई जो उ सँग सोध्छेकी को सुत्छन्</I> <li>Nor: <I>kvinne som spørr ham hvem som sover</I> <li>Pes: <I>زنی که از او می پرسد چه کسی می خوابد</I> <li>Pnb: <I>{s : ParamX.Number =&gt; ResPnb.Case =&gt; Str</I> <li>Pol: <I>kobieta , która pyta jego , kto śpi</I> <li>Ron: <I>femeie care îl întreabă cine doarme</I> <li>Rus: <I>женщина , которая спрашивает кто спдит его</I> <li>Spa: <I>mujer que le pregunta quién duerme</I> <li>Swe: <I>kvinna som frågar honom vem som sover</I> <li>Urd: <I>عورت جو اس سے پوچھتی ہے كہ كون سوتا ہے</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>mkRCl</CODE></TD>
+<TD><A HREF="#RP" TITLE="RP - relative pronoun">RP</A> <CODE>-&gt;</CODE> <A HREF="#V2V" TITLE="V2V - verb with NP and V complement">V2V</A> <CODE>-&gt;</CODE> <A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A> <CODE>-&gt;</CODE> <A HREF="#VP" TITLE="VP - verb phrase">VP</A> <CODE>-&gt;</CODE> <A HREF="#RCl" TITLE="RCl - relative clause, with all tenses">RCl</A></TD>
+<TD><div class=reveal> <I>woman who begs him to sleep</I> <div class=popup> <ul> <li>API: <CODE>mkCN woman_N (mkRS (mkRCl which_RP beg_V2V he_NP (mkVP sleep_V)))</CODE> <li>Afr: <I>vrou wat hom te slaap smeek</I> <li>Bul: <I>жена която моли него да спи</I> <li>Cat: <I>dona que el demana a dormir</I> <li>Dan: <I>kvinde som beder ham at sove</I> <li>Dut: <I>vrouw die hem te slapen smeekt</I> <li>Eng: <I>woman who begs him to sleep</I> <li>Fin: <I>nainen joka pyytää häntä nukkuneelle</I> <li>Fre: <I>femme qui le demande à dormir</I> <li>Ger: <I>Frau die ihn zu schlafen bittet</I> <li>Ita: <I>donna che lo prega di dormire</I> <li>Nep: <I>आईमाई जो उ लाई सुत्न आग्रह गर्छे</I> <li>Nor: <I>kvinne som ber ham att sove</I> <li>Pes: <I>زنی که از او خواهش می کند بخوابد</I> <li>Pnb: <I>{s : ParamX.Number =&gt; ResPnb.Case =&gt; Str</I> <li>Pol: <I>*</I> <li>Ron: <I>femeie care îl roagă sã doarmă</I> <li>Rus: <I>женщина , которая просит спать его</I> <li>Spa: <I>mujer que lo roga a dormir</I> <li>Swe: <I>kvinna som ber honom att sova</I> <li>Urd: <I>عورت جو اس سے سونے كی التجا كرتی ہے</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>mkRCl</CODE></TD>
+<TD><A HREF="#RP" TITLE="RP - relative pronoun">RP</A> <CODE>-&gt;</CODE> <A HREF="#A" TITLE="A - one-place adjective">A</A> <CODE>-&gt;</CODE> <A HREF="#RCl" TITLE="RCl - relative clause, with all tenses">RCl</A></TD>
+<TD><div class=reveal> <I>woman who is old</I> <div class=popup> <ul> <li>API: <CODE>mkCN woman_N (mkRS (mkRCl which_RP old_A))</CODE> <li>Afr: <I>vrou wat oud is</I> <li>Bul: <I>жена която е стара</I> <li>Cat: <I>dona que és vell</I> <li>Dan: <I>kvinde som er gammel</I> <li>Dut: <I>vrouw die oud is</I> <li>Eng: <I>woman who is old</I> <li>Fin: <I>nainen joka on vanha</I> <li>Fre: <I>femme qui est vieille</I> <li>Ger: <I>Frau die alt ist</I> <li>Ita: <I>donna che è vecchia</I> <li>Nep: <I>आईमाई जो बुढी छे</I> <li>Nor: <I>kvinne som er gammel</I> <li>Pes: <I>زنی که پیر است</I> <li>Pnb: <I>{s : ParamX.Number =&gt; ResPnb.Case =&gt; Str</I> <li>Pol: <I>kobieta , która jest stara</I> <li>Ron: <I>femeie care este veche</I> <li>Rus: <I>женщина , которая старая</I> <li>Spa: <I>mujer que es vieja</I> <li>Swe: <I>kvinna som är gammal</I> <li>Urd: <I>عورت جو بوڑھی ہے</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>mkRCl</CODE></TD>
+<TD><A HREF="#RP" TITLE="RP - relative pronoun">RP</A> <CODE>-&gt;</CODE> <A HREF="#A" TITLE="A - one-place adjective">A</A> <CODE>-&gt;</CODE> <A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A> <CODE>-&gt;</CODE> <A HREF="#RCl" TITLE="RCl - relative clause, with all tenses">RCl</A></TD>
+<TD><div class=reveal> <I>woman who is older than he</I> <div class=popup> <ul> <li>API: <CODE>mkCN woman_N (mkRS (mkRCl which_RP old_A he_NP))</CODE> <li>Afr: <I>vrou wat ouer as hy is</I> <li>Bul: <I>жена която е по - стара от него</I> <li>Cat: <I>dona que és més vell que ell</I> <li>Dan: <I>kvinde som er ældre end han</I> <li>Dut: <I>vrouw die ouder dan hij is</I> <li>Eng: <I>woman who is older than he</I> <li>Fin: <I>nainen joka on vanhempi kuin hän</I> <li>Fre: <I>femme qui est plus vieille que lui</I> <li>Ger: <I>Frau die älter als er ist</I> <li>Ita: <I>donna che è più vecchia di lui</I> <li>Nep: <I>आईमाई जो उ भन्दा बुढी छे</I> <li>Nor: <I>kvinne som er eldre enn han</I> <li>Pes: <I>زنی که پیر تر از او است</I> <li>Pnb: <I>{s : ParamX.Number =&gt; ResPnb.Case =&gt; Str</I> <li>Pol: <I>kobieta , która jest starsza niż on</I> <li>Ron: <I>femeie care este mai veche decât el</I> <li>Rus: <I>женщина , которая старше него</I> <li>Spa: <I>mujer que es más vieja que él</I> <li>Swe: <I>kvinna som är äldre än han</I> <li>Urd: <I>عورت جو اس سے بوڑھی ہے</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>mkRCl</CODE></TD>
+<TD><A HREF="#RP" TITLE="RP - relative pronoun">RP</A> <CODE>-&gt;</CODE> <A HREF="#A2" TITLE="A2 - two-place adjective">A2</A> <CODE>-&gt;</CODE> <A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A> <CODE>-&gt;</CODE> <A HREF="#RCl" TITLE="RCl - relative clause, with all tenses">RCl</A></TD>
+<TD><div class=reveal> <I>woman who is married to him</I> <div class=popup> <ul> <li>API: <CODE>mkCN woman_N (mkRS (mkRCl which_RP married_A2 he_NP))</CODE> <li>Afr: <I>vrou wat getroud met hom is</I> <li>Bul: <I>жена която е женена за него</I> <li>Cat: <I>dona que és casata a ell</I> <li>Dan: <I>kvinde som er gift med ham</I> <li>Dut: <I>vrouw die getrouwd met hem is</I> <li>Eng: <I>woman who is married to him</I> <li>Fin: <I>nainen joka on avioitunut hänen kanssa</I> <li>Fre: <I>femme qui est mariée à lui</I> <li>Ger: <I>Frau die verheiratet mit ihm ist</I> <li>Ita: <I>donna che è sposata con lui</I> <li>Nep: <I>आईमाई जो उ सँग विवाहित छे</I> <li>Nor: <I>kvinne som er gift med ham</I> <li>Pes: <I>زنی که او متأهل است</I> <li>Pnb: <I>*</I> <li>Pol: <I>kobieta , która jest zaślubiona jemu</I> <li>Ron: <I>femeie care este căsătorită cu el</I> <li>Rus: <I>женщина , которая замужем за им</I> <li>Spa: <I>mujer que es casada a él</I> <li>Swe: <I>kvinna som är gift med honom</I> <li>Urd: <I>عورت جو اس سے [شادی كرنa] ہے</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>mkRCl</CODE></TD>
+<TD><A HREF="#RP" TITLE="RP - relative pronoun">RP</A> <CODE>-&gt;</CODE> <A HREF="#AP" TITLE="AP - adjectival phrase">AP</A> <CODE>-&gt;</CODE> <A HREF="#RCl" TITLE="RCl - relative clause, with all tenses">RCl</A></TD>
+<TD><div class=reveal> <I>woman who is very old</I> <div class=popup> <ul> <li>API: <CODE>mkCN woman_N (mkRS (mkRCl which_RP (mkAP very_AdA old_A)))</CODE> <li>Afr: <I>vrou wat baie oud is</I> <li>Bul: <I>жена която е много стара</I> <li>Cat: <I>dona que és molt vell</I> <li>Dan: <I>kvinde som er meget gammel</I> <li>Dut: <I>vrouw die erg oud is</I> <li>Eng: <I>woman who is very old</I> <li>Fin: <I>nainen joka on erittäin vanha</I> <li>Fre: <I>femme qui est très vieille</I> <li>Ger: <I>Frau die sehr alt ist</I> <li>Ita: <I>donna che è molto vecchia</I> <li>Nep: <I>आईमाई जो धेरै बुढी छे</I> <li>Nor: <I>kvinne som er mye gammel</I> <li>Pes: <I>زنی که خیلی پیر است</I> <li>Pnb: <I>{s : ParamX.Number =&gt; ResPnb.Case =&gt; Str</I> <li>Pol: <I>kobieta , która jest bardzo stara</I> <li>Ron: <I>femeie care este foarte veche</I> <li>Rus: <I>женщина , которая очень старая</I> <li>Spa: <I>mujer que es muy vieja</I> <li>Swe: <I>kvinna som är mycket gammal</I> <li>Urd: <I>عورت جو بہت بوڑھی ہے</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>mkRCl</CODE></TD>
+<TD><A HREF="#RP" TITLE="RP - relative pronoun">RP</A> <CODE>-&gt;</CODE> <A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A> <CODE>-&gt;</CODE> <A HREF="#RCl" TITLE="RCl - relative clause, with all tenses">RCl</A></TD>
+<TD><div class=reveal> <I>woman who is the woman</I> <div class=popup> <ul> <li>API: <CODE>mkCN woman_N (mkRS (mkRCl which_RP (mkNP the_Det woman_N)))</CODE> <li>Afr: <I>vrou wat die vrou is</I> <li>Bul: <I>жена която е жената</I> <li>Cat: <I>dona que és la dona</I> <li>Dan: <I>kvinde som er kvinden</I> <li>Dut: <I>vrouw die de vrouw is</I> <li>Eng: <I>woman who is the woman</I> <li>Fin: <I>nainen joka on nainen</I> <li>Fre: <I>femme qui est la femme</I> <li>Ger: <I>Frau die die Frau ist</I> <li>Ita: <I>donna che è la donna</I> <li>Nep: <I>आईमाई जो आईमाई हुन्</I> <li>Nor: <I>kvinne som er kvinna</I> <li>Pes: <I>زنی که زن است</I> <li>Pnb: <I>{s : ParamX.Number =&gt; ResPnb.Case =&gt; Str</I> <li>Pol: <I>kobieta , która jest kobietą</I> <li>Ron: <I>femeie care este femeia</I> <li>Rus: <I>женщина , которая женщина</I> <li>Spa: <I>mujer que es la mujer</I> <li>Swe: <I>kvinna som är kvinnan</I> <li>Urd: <I>عورت جو عورت ہے</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>mkRCl</CODE></TD>
+<TD><A HREF="#RP" TITLE="RP - relative pronoun">RP</A> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A> <CODE>-&gt;</CODE> <A HREF="#RCl" TITLE="RCl - relative clause, with all tenses">RCl</A></TD>
+<TD><div class=reveal> <I>student who is a woman</I> <div class=popup> <ul> <li>API: <CODE>mkCN student_N (mkRS (mkRCl which_RP woman_N))</CODE> <li>Afr: <I>student wat 'n vrou is</I> <li>Bul: <I>студент който е жена</I> <li>Cat: <I>estudiant que és dona</I> <li>Dan: <I>student som er en kvinde</I> <li>Dut: <I>student die vrouw is</I> <li>Eng: <I>student who is a woman</I> <li>Fin: <I>opiskelija joka on nainen</I> <li>Fre: <I>étudiant qui est femme</I> <li>Ger: <I>Student der eine Frau ist</I> <li>Ita: <I>studente che è donna</I> <li>Nep: <I>बिध्यार्थि जो आईमाई हो</I> <li>Nor: <I>student som er ei kvinne</I> <li>Pes: <I>دانش آموزی که زن است</I> <li>Pnb: <I>*</I> <li>Pol: <I>student , który jest kobieta</I> <li>Ron: <I>student care este femeie</I> <li>Rus: <I>студент , который женщина</I> <li>Spa: <I>estudiante que es mujer</I> <li>Swe: <I>student som är en kvinna</I> <li>Urd: <I>طالب علم جو عورت ہے</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>mkRCl</CODE></TD>
+<TD><A HREF="#RP" TITLE="RP - relative pronoun">RP</A> <CODE>-&gt;</CODE> <A HREF="#CN" TITLE="CN - common noun (without determiner)">CN</A> <CODE>-&gt;</CODE> <A HREF="#RCl" TITLE="RCl - relative clause, with all tenses">RCl</A></TD>
+<TD><div class=reveal> <I>student who is an old woman</I> <div class=popup> <ul> <li>API: <CODE>mkCN student_N (mkRS (mkRCl which_RP (mkCN old_A woman_N)))</CODE> <li>Afr: <I>student wat 'n oud vrou is</I> <li>Bul: <I>студент който е стара жена</I> <li>Cat: <I>estudiant que és dona vell</I> <li>Dan: <I>student som er en gammel kvinde</I> <li>Dut: <I>student die oude vrouw is</I> <li>Eng: <I>student who is an old woman</I> <li>Fin: <I>opiskelija joka on vanha nainen</I> <li>Fre: <I>étudiant qui est vieille femme</I> <li>Ger: <I>Student der eine alte Frau ist</I> <li>Ita: <I>studente che è vecchia donna</I> <li>Nep: <I>बिध्यार्थि जो बुढी आईमाई हो</I> <li>Nor: <I>student som er ei gammel kvinne</I> <li>Pes: <I>دانش آموزی که زن پیر است</I> <li>Pnb: <I>*</I> <li>Pol: <I>student , który jest stara kobieta</I> <li>Ron: <I>student care este femeie veche</I> <li>Rus: <I>студент , который старая женщина</I> <li>Spa: <I>estudiante que es vieja mujer</I> <li>Swe: <I>student som är en gammal kvinna</I> <li>Urd: <I>طالب علم جو بوڑھی عورت ہے</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>mkRCl</CODE></TD>
+<TD><A HREF="#RP" TITLE="RP - relative pronoun">RP</A> <CODE>-&gt;</CODE> <A HREF="#Adv" TITLE="Adv - verb-phrase-modifying adverb">Adv</A> <CODE>-&gt;</CODE> <A HREF="#RCl" TITLE="RCl - relative clause, with all tenses">RCl</A></TD>
+<TD><div class=reveal> <I>woman who is here</I> <div class=popup> <ul> <li>API: <CODE>mkCN woman_N (mkRS (mkRCl which_RP here_Adv))</CODE> <li>Afr: <I>vrou wat hier is</I> <li>Bul: <I>жена която е тук</I> <li>Cat: <I>dona que és aquí</I> <li>Dan: <I>kvinde som er her</I> <li>Dut: <I>vrouw die hier is</I> <li>Eng: <I>woman who is here</I> <li>Fin: <I>nainen joka on täällä</I> <li>Fre: <I>femme qui est ici</I> <li>Ger: <I>Frau die hier ist</I> <li>Ita: <I>donna che è quà</I> <li>Nep: <I>आईमाई जो यहाँ छे</I> <li>Nor: <I>kvinne som er her</I> <li>Pes: <I>زنی که اینجا است</I> <li>Pnb: <I>{s : ParamX.Number =&gt; ResPnb.Case =&gt; Str</I> <li>Pol: <I>kobieta , która jest tutaj</I> <li>Ron: <I>femeie care este aici</I> <li>Rus: <I>женщина , которая здесь</I> <li>Spa: <I>mujer que es aquí</I> <li>Swe: <I>kvinna som är här</I> <li>Urd: <I>عورت جو یہاں ہے</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>mkRCl</CODE></TD>
+<TD><A HREF="#RP" TITLE="RP - relative pronoun">RP</A> <CODE>-&gt;</CODE> <A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A> <CODE>-&gt;</CODE> <A HREF="#V2" TITLE="V2 - two-place verb">V2</A> <CODE>-&gt;</CODE> <A HREF="#RCl" TITLE="RCl - relative clause, with all tenses">RCl</A></TD>
+<TD><div class=reveal> <I>woman whom we love</I> <div class=popup> <ul> <li>API: <CODE>mkCN woman_N (mkRS (mkRCl which_RP we_NP love_V2))</CODE> <li>Afr: <I>vrou wat ons lief het</I> <li>Bul: <I>жена която ние обичаме</I> <li>Cat: <I>dona que nosaltres estimem</I> <li>Dan: <I>kvinde som vi elsker</I> <li>Dut: <I>vrouw die we lief hebben</I> <li>Eng: <I>woman whom we love</I> <li>Fin: <I>nainen jota me rakastamme</I> <li>Fre: <I>femme que nous aimons</I> <li>Ger: <I>Frau die wir lieben</I> <li>Ita: <I>donna che noi amiamo</I> <li>Nep: <I>आईमाई जो लाई हामीहरु माया गर्छौँ</I> <li>Nor: <I>kvinne som vi elsker</I> <li>Pes: <I>زنی که ما دوست داریم</I> <li>Pnb: <I>{s : ParamX.Number =&gt; ResPnb.Case =&gt; Str</I> <li>Pol: <I>kobieta , którą kochamy my</I> <li>Ron: <I>femeie pe care o iubim noi</I> <li>Rus: <I>женщина , которую мы любдим</I> <li>Spa: <I>mujer que nosotros amamos</I> <li>Swe: <I>kvinna som vi älskar</I> <li>Urd: <I>عورت جس كو ہم پیار كرتے ہیں</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>mkRCl</CODE></TD>
+<TD><A HREF="#RP" TITLE="RP - relative pronoun">RP</A> <CODE>-&gt;</CODE> <A HREF="#ClSlash">ClSlash</A> <CODE>-&gt;</CODE> <A HREF="#RCl" TITLE="RCl - relative clause, with all tenses">RCl</A></TD>
+<TD><div class=reveal> <I>woman whom she loves today</I> <div class=popup> <ul> <li>API: <CODE>mkCN woman_N (mkRS (mkRCl which_RP (mkClSlash (mkClSlash she_NP love_V2) today_Adv)))</CODE> <li>Afr: <I>vrou wat sy lief het vandag</I> <li>Bul: <I>жена която тя обича днес</I> <li>Cat: <I>dona que ella estima avui</I> <li>Dan: <I>kvinde som hun elsker idag</I> <li>Dut: <I>vrouw die ze lief heeft vandaag</I> <li>Eng: <I>woman whom she loves today</I> <li>Fin: <I>nainen jota hän rakastaa tänään</I> <li>Fre: <I>femme pre {"que"; "qu'" / strs {"a"; "à"; "â"; "e"; "é"; "è"; "ê¨";</I> <li>Ger: <I>Frau die sie liebt heute</I> <li>Ita: <I>donna che lei ama oggi</I> <li>Nep: <I>आईमाई जो लाई आज उनी माया गर्छिन्</I> <li>Nor: <I>kvinne som hun elsker idag</I> <li>Pes: <I>زنی که امروز او دوست دارد</I> <li>Pnb: <I>{s : ParamX.Number =&gt; ResPnb.Case =&gt; Str</I> <li>Pol: <I>kobieta , którą dziś kocha ona</I> <li>Ron: <I>femeie pe care o iubeşte ea astăzi</I> <li>Rus: <I>*</I> <li>Spa: <I>mujer que ella ama hoy</I> <li>Swe: <I>kvinna som hon älskar idag</I> <li>Urd: <I>عورت جس كو آج وہ پیار كرتی ہے</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>mkRCl</CODE></TD>
+<TD><A HREF="#Cl" TITLE="Cl - declarative clause, with all tenses">Cl</A> <CODE>-&gt;</CODE> <A HREF="#RCl" TITLE="RCl - relative clause, with all tenses">RCl</A></TD>
+<TD><I>such that she loves him</I></TD>
+</TR>
+</TABLE>
+
+<A NAME="RP"></A>
+<H2>RP - relative pronoun</H2>
+
+<TABLE BORDER="1" CELLPADDING="4">
+<TR>
+<TH>Function</TH>
+<TH>Type</TH>
+<TH COLSPAN="2">Example</TH>
+</TR>
+<TR>
+<TD><CODE>mkRP</CODE></TD>
+<TD><A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A> <CODE>-&gt;</CODE> <A HREF="#RP" TITLE="RP - relative pronoun">RP</A> <CODE>-&gt;</CODE> <A HREF="#RP" TITLE="RP - relative pronoun">RP</A></TD>
+<TD><div class=reveal> <I>all the cities in whom</I> <div class=popup> <ul> <li>API: <CODE>mkRP in_Prep (mkNP all_Predet (mkNP the_Quant pluralNum city_N)) which_RP</CODE> <li>Afr: <I>alle die stede in wat</I> <li>Bul: <I>всичките градовете в който</I> <li>Cat: <I>totes les ciutats en que</I> <li>Dan: <I>alle byerne i hvilken</I> <li>Dut: <I>alle de stadden in die</I> <li>Eng: <I>all the cities in whom</I> <li>Fin: <I>jossa kaikki kaupungit</I> <li>Fre: <I>toutes les villes dans lequel</I> <li>Ger: <I>alle die Städte in dem</I> <li>Ita: <I>tutte le città in cui</I> <li>Nep: <I>जो सबै शहरहरु मा</I> <li>Nor: <I>alle byene i hvilken</I> <li>Pes: <I>همه ی شهر که در آن ها</I> <li>Pnb: <I>جیڑا سارے شہر وچ</I> <li>Pol: <I>w którym wszystkie miast</I> <li>Ron: <I>toate oraşele în care</I> <li>Rus: <I>все городы в котором</I> <li>Spa: <I>todas las ciudades en que</I> <li>Swe: <I>alla städerna i vilken</I> <li>Urd: <I>جو تمام شہر میں</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>which_RP</CODE></TD>
+<TD><A HREF="#RP" TITLE="RP - relative pronoun">RP</A></TD>
+<TD><I>which/who</I></TD>
+</TR>
+</TABLE>
+
+<A NAME="RS"></A>
+<H2>RS - relative</H2>
+
+<TABLE BORDER="1" CELLPADDING="4">
+<TR>
+<TH>Function</TH>
+<TH>Type</TH>
+<TH COLSPAN="2">Example</TH>
+</TR>
+<TR>
+<TD><CODE>mkRS</CODE></TD>
+<TD>(<A HREF="#Tense" TITLE="Tense - tense">Tense</A>) <CODE>-&gt;</CODE> (<A HREF="#Ant" TITLE="Ant - anteriority">Ant</A>) <CODE>-&gt;</CODE> (<A HREF="#Pol" TITLE="Pol - polarity">Pol</A>) <CODE>-&gt;</CODE> <A HREF="#RCl" TITLE="RCl - relative clause, with all tenses">RCl</A> <CODE>-&gt;</CODE> <A HREF="#RS" TITLE="RS - relative">RS</A></TD>
+<TD><div class=reveal> <I>woman who wouldn't have slept</I> <div class=popup> <ul> <li>API: <CODE>mkCN woman_N (mkRS conditionalTense anteriorAnt negativePol (mkRCl which_RP sleep_V))</CODE> <li>Afr: <I>vrou wat nie nie geslaap het sou</I> <li>Bul: <I>жена която не би спалa</I> <li>Cat: <I>dona que no hauria dormit</I> <li>Dan: <I>kvinde som ikke ville have sovet</I> <li>Dut: <I>vrouw die niet geslapen hebben zou</I> <li>Eng: <I>woman who wouldn't have slept</I> <li>Fin: <I>Prelude.(!!): index too large</I> <li>Fre: <I>femme qui n' aurait pas dormi</I> <li>Ger: <I>Frau die nicht geschlafen haben würde</I> <li>Ita: <I>donna che non avrebbe dormito</I> <li>Nep: <I>आईमाई जो सुतेकिहुन्थी</I> <li>Nor: <I>kvinne som ikke ville ha sovet</I> <li>Pes: <I>زنی که نمی خوابید</I> <li>Pnb: <I>{s : ParamX.Number =&gt; ResPnb.Case =&gt; Str</I> <li>Pol: <I>kobieta , która nie spałaby</I> <li>Ron: <I>femeie care nu ar fi dormit</I> <li>Rus: <I>женщина , которая спала бы</I> <li>Spa: <I>mujer que no habría dormido</I> <li>Swe: <I>kvinna som inte skulle ha sovit</I> <li>Urd: <I>عورت جو نا شاید سو ے</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>mkRS</CODE></TD>
+<TD><A HREF="#Temp" TITLE="Temp - temporal and aspectual features">Temp</A> <CODE>-&gt;</CODE> (<A HREF="#Pol" TITLE="Pol - polarity">Pol</A>) <CODE>-&gt;</CODE> <A HREF="#RCl" TITLE="RCl - relative clause, with all tenses">RCl</A> <CODE>-&gt;</CODE> <A HREF="#RS" TITLE="RS - relative">RS</A></TD>
+<TD><I>that wouldn't have slept</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkRS</CODE></TD>
+<TD><A HREF="#Conj" TITLE="Conj - conjunction">Conj</A> <CODE>-&gt;</CODE> <A HREF="#RS" TITLE="RS - relative">RS</A> <CODE>-&gt;</CODE> <A HREF="#RS" TITLE="RS - relative">RS</A> <CODE>-&gt;</CODE> <A HREF="#RS" TITLE="RS - relative">RS</A></TD>
+<TD><div class=reveal> <I>woman who sleeps or whom we love</I> <div class=popup> <ul> <li>API: <CODE>mkCN woman_N (mkRS or_Conj (mkRS (mkRCl which_RP sleep_V)) (mkRS (mkRCl which_RP we_NP love_V2)))</CODE> <li>Afr: <I>vrou wat slaap of wat ons lief het</I> <li>Bul: <I>жена която спи или която ние обичаме</I> <li>Cat: <I>dona que dorm o que nosaltres estimem</I> <li>Dan: <I>kvinde som sover eller som vi elsker</I> <li>Dut: <I>vrouw die slaapt of die we lief hebben</I> <li>Eng: <I>woman who sleeps or whom we love</I> <li>Fin: <I>nainen joka nukkuu tai jota me rakastamme</I> <li>Fre: <I>femme qui dort ou que nous aimons</I> <li>Ger: <I>Frau die schläft oder die wir lieben</I> <li>Ita: <I>donna che dorme o che noi amiamo</I> <li>Nep: <I>आईमाई जो सुत्छे अथवा जो लाई हामीहरु माया गर्छौँ</I> <li>Nor: <I>kvinne som sover eller som vi elsker</I> <li>Pes: <I>زنی که می خوابد یا که ما دوست داریم</I> <li>Pnb: <I>{s : ParamX.Number =&gt; ResPnb.Case =&gt; Str</I> <li>Pol: <I>kobieta , która śpi lub , którą kochamy my</I> <li>Ron: <I>femeie care doarme sau pe care o iubim noi</I> <li>Rus: <I>женщина , которая спдит или , которую мы любдим</I> <li>Spa: <I>mujer que duerme o que nosotros amamos</I> <li>Swe: <I>kvinna som sover eller som vi älskar</I> <li>Urd: <I>عورت جو سوتی ہے یا جس كو ہم پیار كرتے ہیں</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>mkRS</CODE></TD>
+<TD><A HREF="#Conj" TITLE="Conj - conjunction">Conj</A> <CODE>-&gt;</CODE> <A HREF="#ListRS">ListRS</A> <CODE>-&gt;</CODE> <A HREF="#RS" TITLE="RS - relative">RS</A></TD>
+<TD><I>who sleeps, whom I see and who sleeps</I></TD>
+</TR>
+</TABLE>
+
+<A NAME="S"></A>
+<H2>S - declarative sentence</H2>
+
+<TABLE BORDER="1" CELLPADDING="4">
+<TR>
+<TH>Function</TH>
+<TH>Type</TH>
+<TH COLSPAN="2">Example</TH>
+</TR>
+<TR>
+<TD><CODE>mkS</CODE></TD>
+<TD>(<A HREF="#Tense" TITLE="Tense - tense">Tense</A>) <CODE>-&gt;</CODE> (<A HREF="#Ant" TITLE="Ant - anteriority">Ant</A>) <CODE>-&gt;</CODE> (<A HREF="#Pol" TITLE="Pol - polarity">Pol</A>) <CODE>-&gt;</CODE> <A HREF="#Cl" TITLE="Cl - declarative clause, with all tenses">Cl</A> <CODE>-&gt;</CODE> <A HREF="#S" TITLE="S - declarative sentence">S</A></TD>
+<TD><div class=reveal> <I>she wouldn't have slept</I> <div class=popup> <ul> <li>API: <CODE>mkS conditionalTense anteriorAnt negativePol (mkCl she_NP sleep_V)</CODE> <li>Afr: <I>sy sou nie nie geslaap het</I> <li>Bul: <I>тя не би спалa</I> <li>Cat: <I>ella no hauria dormit</I> <li>Dan: <I>hun ville ikke have sovet</I> <li>Dut: <I>ze zou niet geslapen hebben</I> <li>Eng: <I>she wouldn't have slept</I> <li>Fin: <I>Prelude.(!!): index too large</I> <li>Fre: <I>elle n' aurait pas dormi</I> <li>Ger: <I>sie würde nicht geschlafen haben</I> <li>Ita: <I>lei non avrebbe dormito</I> <li>Nep: <I>उनी सुतेकिहुन्थि</I> <li>Nor: <I>hun ville ikke ha sovet</I> <li>Pes: <I>او نمی خوابید</I> <li>Pnb: <I>او نا شاید سوئے</I> <li>Pol: <I>ona nie spałaby</I> <li>Ron: <I>ea nu ar fi dormit</I> <li>Rus: <I>она не спала бы</I> <li>Spa: <I>ella no habría dormido</I> <li>Swe: <I>hon skulle inte ha sovit</I> <li>Urd: <I>وہ نا شاید سوئے</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>mkS</CODE></TD>
+<TD><A HREF="#Temp" TITLE="Temp - temporal and aspectual features">Temp</A> <CODE>-&gt;</CODE> <A HREF="#Pol" TITLE="Pol - polarity">Pol</A> <CODE>-&gt;</CODE> <A HREF="#Cl" TITLE="Cl - declarative clause, with all tenses">Cl</A> <CODE>-&gt;</CODE> <A HREF="#S" TITLE="S - declarative sentence">S</A></TD>
+<TD><I>she wouldn't have slept</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkS</CODE></TD>
+<TD><A HREF="#Conj" TITLE="Conj - conjunction">Conj</A> <CODE>-&gt;</CODE> <A HREF="#S" TITLE="S - declarative sentence">S</A> <CODE>-&gt;</CODE> <A HREF="#S" TITLE="S - declarative sentence">S</A> <CODE>-&gt;</CODE> <A HREF="#S" TITLE="S - declarative sentence">S</A></TD>
+<TD><div class=reveal> <I>she sleeps and I run</I> <div class=popup> <ul> <li>API: <CODE>mkS and_Conj (mkS (mkCl she_NP sleep_V)) (mkS (mkCl i_NP run_V))</CODE> <li>Afr: <I>sy slaap en ek hardloop</I> <li>Bul: <I>тя спи и аз бягам</I> <li>Cat: <I>ella dorm i jo corro</I> <li>Dan: <I>hun sover og jeg løber</I> <li>Dut: <I>ze slaapt en ik ren</I> <li>Eng: <I>she sleeps and I run</I> <li>Fin: <I>hän nukkuu ja minä juoksen</I> <li>Fre: <I>elle dort et je cours</I> <li>Ger: <I>sie schläft und ich laufe</I> <li>Ita: <I>lei dorme e io corro</I> <li>Nep: <I>उनी सुत्छिन् र म कुद्छु</I> <li>Nor: <I>hun sover og jeg springer</I> <li>Pes: <I>او می خوابد و من می دوم</I> <li>Pnb: <I>او سوندی اے تے میں دوڑدا واں</I> <li>Pol: <I>ona śpi i ja biegnę</I> <li>Ron: <I>ea doarme şi eu fug</I> <li>Rus: <I>она спдит и я бегаю</I> <li>Spa: <I>ella duerme y yo corro</I> <li>Swe: <I>hon sover och jag springer</I> <li>Urd: <I>وہ سوتی ہے اور میں دوڑتا ہوں</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>mkS</CODE></TD>
+<TD><A HREF="#Conj" TITLE="Conj - conjunction">Conj</A> <CODE>-&gt;</CODE> <A HREF="#ListS">ListS</A> <CODE>-&gt;</CODE> <A HREF="#S" TITLE="S - declarative sentence">S</A></TD>
+<TD><div class=reveal> <I>she sleeps , I run and you walk</I> <div class=popup> <ul> <li>API: <CODE>mkS and_Conj (mkListS (mkS (mkCl she_NP sleep_V)) (mkListS (mkS (mkCl i_NP run_V)) (mkS (mkCl (mkNP youSg_Pron) walk_V))))</CODE> <li>Afr: <I>sy slaap , ek hardloop en jy loop</I> <li>Bul: <I>тя спи , аз бягам и ти ходиш</I> <li>Cat: <I>ella dorm , jo corro i tu camines</I> <li>Dan: <I>hun sover , jeg løber og du går</I> <li>Dut: <I>ze slaapt , ik ren en je loopt</I> <li>Eng: <I>she sleeps , I run and you walk</I> <li>Fin: <I>hän nukkuu , minä juoksen ja sinä kävelet</I> <li>Fre: <I>elle dort , je cours et tu marches</I> <li>Ger: <I>sie schläft , ich laufe und du gehst</I> <li>Ita: <I>lei dorme , io corro e tu cammini</I> <li>Nep: <I>उनी सुत्छिन् , म कुद्छु र तिमी हिड्छौ</I> <li>Nor: <I>hun sover , jeg springer og du går</I> <li>Pes: <I>او می خوابد , من می دوم و تو راه می روی</I> <li>Pnb: <I>او سوندی اے , میں دوڑدا واں تے توں چلدا ایں</I> <li>Pol: <I>ona śpi , ja biegnę i ty spacerujesz</I> <li>Ron: <I>ea doarme , eu fug şi tu mergi</I> <li>Rus: <I>она спдит , я бегаю и ты гуляешь</I> <li>Spa: <I>ella duerme , yo corro y tu caminas</I> <li>Swe: <I>hon sover , jag springer och du går</I> <li>Urd: <I>وہ سوتی ہے , میں دوڑتا ہوں اور تو چلتا ہے</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>mkS</CODE></TD>
+<TD><A HREF="#Adv" TITLE="Adv - verb-phrase-modifying adverb">Adv</A> <CODE>-&gt;</CODE> <A HREF="#S" TITLE="S - declarative sentence">S</A> <CODE>-&gt;</CODE> <A HREF="#S" TITLE="S - declarative sentence">S</A></TD>
+<TD><div class=reveal> <I>today , she sleeps</I> <div class=popup> <ul> <li>API: <CODE>mkS today_Adv (mkS (mkCl she_NP sleep_V))</CODE> <li>Afr: <I>vandag slaap sy</I> <li>Bul: <I>днес , тя спи</I> <li>Cat: <I>avui , ella dorm</I> <li>Dan: <I>idag sover hun</I> <li>Dut: <I>vandaag slaapt ze</I> <li>Eng: <I>today , she sleeps</I> <li>Fin: <I>tänään hän nukkuu</I> <li>Fre: <I>aujourd'hui , elle dort</I> <li>Ger: <I>heute schläft sie</I> <li>Ita: <I>oggi , lei dorme</I> <li>Nep: <I>आज उनी सुत्छिन्</I> <li>Nor: <I>idag sover hun</I> <li>Pes: <I>امروز او می خوابد</I> <li>Pnb: <I>اج او سوندی اے</I> <li>Pol: <I>dziś ona śpi</I> <li>Ron: <I>astăzi ea doarme</I> <li>Rus: <I>*</I> <li>Spa: <I>hoy , ella duerme</I> <li>Swe: <I>idag sover hon</I> <li>Urd: <I>آج وہ سوتی ہے</I> </ul> </div> </div></TD>
+</TR>
+</TABLE>
+
+<A NAME="SC"></A>
+<H2>SC - embedded sentence or question</H2>
+
+<TABLE BORDER="1" CELLPADDING="4">
+<TR>
+<TH>Function</TH>
+<TH>Type</TH>
+<TH COLSPAN="2">Example</TH>
+</TR>
+<TR>
+<TD><CODE>mkSC</CODE></TD>
+<TD><A HREF="#S" TITLE="S - declarative sentence">S</A> <CODE>-&gt;</CODE> <A HREF="#SC" TITLE="SC - embedded sentence or question">SC</A></TD>
+<TD><div class=reveal> <I>that she sleeps</I> <div class=popup> <ul> <li>API: <CODE>mkSC (mkS (mkCl she_NP sleep_V))</CODE> <li>Afr: <I>dat sy slaap</I> <li>Bul: <I>, че тя спи</I> <li>Cat: <I>que ella dorm</I> <li>Dan: <I>at hun sover</I> <li>Dut: <I>dat ze slaapt</I> <li>Eng: <I>that she sleeps</I> <li>Fin: <I>että hän nukkuu</I> <li>Fre: <I>qu' elle dort</I> <li>Ger: <I>daß sie schläft</I> <li>Ita: <I>che lei dorme</I> <li>Nep: <I>की उनी सुत्छिन्</I> <li>Nor: <I>at hun sover</I> <li>Pes: <I>که او می خوابد</I> <li>Pnb: <I>كہ او سوندی اے</I> <li>Pol: <I>, że ona śpi</I> <li>Ron: <I>cã ea doarme</I> <li>Rus: <I>что она спдит</I> <li>Spa: <I>que ella duerme</I> <li>Swe: <I>att hon sover</I> <li>Urd: <I>كہ وہ سوتی ہے</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>mkSC</CODE></TD>
+<TD><A HREF="#QS" TITLE="QS - question">QS</A> <CODE>-&gt;</CODE> <A HREF="#SC" TITLE="SC - embedded sentence or question">SC</A></TD>
+<TD><div class=reveal> <I>who sleeps</I> <div class=popup> <ul> <li>API: <CODE>mkSC (mkQS (mkQCl who_IP sleep_V))</CODE> <li>Afr: <I>wie slaap</I> <li>Bul: <I>който спи</I> <li>Cat: <I>qui dorm</I> <li>Dan: <I>hvem som sover</I> <li>Dut: <I>wie slaapt</I> <li>Eng: <I>who sleeps</I> <li>Fin: <I>kuka nukkuu</I> <li>Fre: <I>qui dort</I> <li>Ger: <I>wer schläft</I> <li>Ita: <I>chi dorme</I> <li>Nep: <I>को सुत्छन्</I> <li>Nor: <I>hvem som sover</I> <li>Pes: <I>چه کسی می خوابد</I> <li>Pnb: <I>كون سوندا اے</I> <li>Pol: <I>, kto śpi</I> <li>Ron: <I>cine doarme</I> <li>Rus: <I>кто спдит</I> <li>Spa: <I>quién duerme</I> <li>Swe: <I>vem som sover</I> <li>Urd: <I>كون سوتا ہے</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>mkSC</CODE></TD>
+<TD><A HREF="#VP" TITLE="VP - verb phrase">VP</A> <CODE>-&gt;</CODE> <A HREF="#SC" TITLE="SC - embedded sentence or question">SC</A></TD>
+<TD><div class=reveal> <I>to sleep</I> <div class=popup> <ul> <li>API: <CODE>mkSC (mkVP sleep_V)</CODE> <li>Afr: <I>te slaap</I> <li>Bul: <I>да спя</I> <li>Cat: <I>dormir</I> <li>Dan: <I>at sove</I> <li>Dut: <I>te slapen</I> <li>Eng: <I>to sleep</I> <li>Fin: <I>nukkumaan</I> <li>Fre: <I>dormir</I> <li>Ger: <I>zu schlafen</I> <li>Ita: <I>dormire</I> <li>Nep: <I>सुत्न</I> <li>Nor: <I>å sove</I> <li>Pes: <I>خوابیدن</I> <li>Pnb: <I>سونا</I> <li>Pol: <I>spać</I> <li>Ron: <I>sã doarmă</I> <li>Rus: <I>спать</I> <li>Spa: <I>dormir</I> <li>Swe: <I>att sova</I> <li>Urd: <I>سونا</I> </ul> </div> </div></TD>
+</TR>
+</TABLE>
+
+<A NAME="SSlash"></A>
+<H2>SSlash</H2>
+
+<TABLE BORDER="1" CELLPADDING="4">
+<TR>
+<TH>Function</TH>
+<TH>Type</TH>
+<TH COLSPAN="2">Example</TH>
+</TR>
+<TR>
+<TD><CODE>mkSSlash</CODE></TD>
+<TD><A HREF="#Temp" TITLE="Temp - temporal and aspectual features">Temp</A> <CODE>-&gt;</CODE> <A HREF="#Pol" TITLE="Pol - polarity">Pol</A> <CODE>-&gt;</CODE> <A HREF="#ClSlash">ClSlash</A> <CODE>-&gt;</CODE> <A HREF="#SSlash">SSlash</A></TD>
+<TD><div class=reveal> <I>she hadn't seen</I> <div class=popup> <ul> <li>API: <CODE>mkSSlash (mkTemp pastTense anteriorAnt) negativePol (mkClSlash she_NP (mkVPSlash see_V2))</CODE> <li>Afr: <I>sy had nie nie gesien</I> <li>Bul: <I>тя не беше видялa</I> <li>Cat: <I>ella no havia vist</I> <li>Dan: <I>hun havde ikke set</I> <li>Dut: <I>ze had niet gezien</I> <li>Eng: <I>she hadn't seen</I> <li>Fin: <I>Prelude.(!!): index too large</I> <li>Fre: <I>elle n' avait pas vu</I> <li>Ger: <I>sie hatte nicht gesehen</I> <li>Ita: <I>lei non aveva visto</I> <li>Nep: <I>उनी हेरेकिथिइनन्</I> <li>Nor: <I>hun hadde ikke sett</I> <li>Pes: <I>او ندیده بود</I> <li>Pnb: <I>او نیں ویكھ گیی سی</I> <li>Pol: <I>nie zobaczyła ona</I> <li>Ron: <I>ea nu văzuse</I> <li>Rus: <I>она не видела</I> <li>Spa: <I>ella no había visto</I> <li>Swe: <I>hon hade inte sett</I> <li>Urd: <I>وہ نہیں دیكھ چكی تھی</I> </ul> </div> </div></TD>
+</TR>
+</TABLE>
+
+<A NAME="Sub100"></A>
+<H2>Sub100</H2>
+
+<TABLE BORDER="1" CELLPADDING="4">
+<TR>
+<TH>Function</TH>
+<TH>Type</TH>
+<TH COLSPAN="2">Example</TH>
+</TR>
+<TR>
+<TD><CODE>mkSub100</CODE></TD>
+<TD><A HREF="#Unit">Unit</A> <CODE>-&gt;</CODE> <A HREF="#Sub100">Sub100</A></TD>
+<TD><div class=reveal> <I>eight</I> <div class=popup> <ul> <li>API: <CODE>mkSub100 n8_Unit</CODE> <li>Afr: <I>agt</I> <li>Bul: <I>осмина</I> <li>Cat: <I>vuit</I> <li>Dan: <I>otte</I> <li>Dut: <I>acht</I> <li>Eng: <I>eight</I> <li>Fin: <I>kahdeksan</I> <li>Fre: <I>huit</I> <li>Ger: <I>acht</I> <li>Ita: <I>otto</I> <li>Nep: <I>आठ</I> <li>Nor: <I>åtte</I> <li>Pes: <I>هشت</I> <li>Pnb: <I>اٹھ</I> <li>Pol: <I>osiemm</I> <li>Ron: <I>opt</I> <li>Rus: <I>восемь</I> <li>Spa: <I>ocho</I> <li>Swe: <I>åtta</I> <li>Urd: <I>آٹھ</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>mkSub100</CODE></TD>
+<TD><A HREF="#Unit">Unit</A> <CODE>-&gt;</CODE> <A HREF="#Unit">Unit</A> <CODE>-&gt;</CODE> <A HREF="#Sub100">Sub100</A></TD>
+<TD><div class=reveal> <I>eighty - three</I> <div class=popup> <ul> <li>API: <CODE>mkSub100 n8_Unit n3_Unit</CODE> <li>Afr: <I>drieëntagtig</I> <li>Bul: <I>осемдесет и трима</I> <li>Cat: <I>vuitanta- tres</I> <li>Dan: <I>tre og firs</I> <li>Dut: <I>drieëntachtig</I> <li>Eng: <I>eighty - three</I> <li>Fin: <I>kahdeksankymmentäkolme</I> <li>Fre: <I>quatre-vingt - trois</I> <li>Ger: <I>dreiundachzig</I> <li>Ita: <I>ottantatre</I> <li>Nep: <I>त्रियासी</I> <li>Nor: <I>åtti tre</I> <li>Pes: <I>هشتاد و سه</I> <li>Pnb: <I>تیراسی</I> <li>Pol: <I>osiemdziesiąt trzy</I> <li>Ron: <I>optzeci şi trei</I> <li>Rus: <I>восемьдесят три</I> <li>Spa: <I>ochenta y tres</I> <li>Swe: <I>åttiotre</I> <li>Urd: <I>تراسی</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>tenfoldSub100</CODE></TD>
+<TD><A HREF="#Unit">Unit</A> <CODE>-&gt;</CODE> <A HREF="#Sub100">Sub100</A></TD>
+<TD><div class=reveal> <I>eight</I> <div class=popup> <ul> <li>API: <CODE>mkSub100 n8_Unit</CODE> <li>Afr: <I>agt</I> <li>Bul: <I>осмина</I> <li>Cat: <I>vuit</I> <li>Dan: <I>otte</I> <li>Dut: <I>acht</I> <li>Eng: <I>eight</I> <li>Fin: <I>kahdeksan</I> <li>Fre: <I>huit</I> <li>Ger: <I>acht</I> <li>Ita: <I>otto</I> <li>Nep: <I>आठ</I> <li>Nor: <I>åtte</I> <li>Pes: <I>هشت</I> <li>Pnb: <I>اٹھ</I> <li>Pol: <I>osiemm</I> <li>Ron: <I>opt</I> <li>Rus: <I>восемь</I> <li>Spa: <I>ocho</I> <li>Swe: <I>åtta</I> <li>Urd: <I>آٹھ</I> </ul> </div> </div></TD>
+</TR>
+</TABLE>
+
+<A NAME="Sub1000"></A>
+<H2>Sub1000</H2>
+
+<TABLE BORDER="1" CELLPADDING="4">
+<TR>
+<TH>Function</TH>
+<TH>Type</TH>
+<TH COLSPAN="2">Example</TH>
+</TR>
+<TR>
+<TD><CODE>mkSub1000</CODE></TD>
+<TD><A HREF="#Sub100">Sub100</A> <CODE>-&gt;</CODE> <A HREF="#Sub1000">Sub1000</A></TD>
+<TD><div class=reveal> <I>ninety - nine</I> <div class=popup> <ul> <li>API: <CODE>mkNumeral (mkSub1000 (mkSub100 n9_Unit n9_Unit))</CODE> <li>Afr: <I>negeënnegentig</I> <li>Bul: <I>деветдесет и деветима</I> <li>Cat: <I>noranta- nou</I> <li>Dan: <I>ni og halvfems</I> <li>Dut: <I>negenennegentig</I> <li>Eng: <I>ninety - nine</I> <li>Fin: <I>yhdeksänkymmentäyhdeksän</I> <li>Fre: <I>quatre-vingt - dix-neuf</I> <li>Ger: <I>neunundneunzig</I> <li>Ita: <I>novantanove</I> <li>Nep: <I>उनान्सय</I> <li>Nor: <I>nitti ni</I> <li>Pes: <I>نود و نه</I> <li>Pnb: <I>نڑینوے</I> <li>Pol: <I>dziewięćdziesiąt dziewięć</I> <li>Ron: <I>nouăzeci şi nouă</I> <li>Rus: <I>девяносто девять</I> <li>Spa: <I>noventa y nueve</I> <li>Swe: <I>nittionio</I> <li>Urd: <I>ننانوے</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>mkSub1000</CODE></TD>
+<TD><A HREF="#Unit">Unit</A> <CODE>-&gt;</CODE> <A HREF="#Sub1000">Sub1000</A></TD>
+<TD><div class=reveal> <I>nine hundred</I> <div class=popup> <ul> <li>API: <CODE>mkNumeral (mkSub1000 n9_Unit)</CODE> <li>Afr: <I>negehonderd</I> <li>Bul: <I>деветстотин</I> <li>Cat: <I>nou -cents</I> <li>Dan: <I>ni hundrede</I> <li>Dut: <I>negenhonderd</I> <li>Eng: <I>nine hundred</I> <li>Fin: <I>yhdeksänsataa</I> <li>Fre: <I>neuf cents</I> <li>Ger: <I>neunhundert</I> <li>Ita: <I>novecento</I> <li>Nep: <I>नौ सय</I> <li>Nor: <I>ni hundre</I> <li>Pes: <I>نهصد</I> <li>Pnb: <I>نو سو</I> <li>Pol: <I>dziewięćset</I> <li>Ron: <I>nouă sute</I> <li>Rus: <I>девятьсот</I> <li>Spa: <I>novecientos</I> <li>Swe: <I>niohundra</I> <li>Urd: <I>نو سو</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>mkSub1000</CODE></TD>
+<TD><A HREF="#Unit">Unit</A> <CODE>-&gt;</CODE> <A HREF="#Sub100">Sub100</A> <CODE>-&gt;</CODE> <A HREF="#Sub1000">Sub1000</A></TD>
+<TD><div class=reveal> <I>nine hundred and ninety - nine</I> <div class=popup> <ul> <li>API: <CODE>mkNumeral (mkSub1000 n9_Unit (mkSub100 n9_Unit n9_Unit))</CODE> <li>Afr: <I>negehonderdnegeënnegentig</I> <li>Bul: <I>деветстотин деветдесет и деветима</I> <li>Cat: <I>nou -cents noranta- nou</I> <li>Dan: <I>ni hundrede og ni og halvfems</I> <li>Dut: <I>negenhonderdnegenennegentig</I> <li>Eng: <I>nine hundred and ninety - nine</I> <li>Fin: <I>yhdeksänsataayhdeksänkymmentäyhdeksän</I> <li>Fre: <I>neuf cent quatre-vingt - dix-neuf</I> <li>Ger: <I>neunhundertneunundneunzig</I> <li>Ita: <I>novecentonovantanove</I> <li>Nep: <I>नौ सय उनान्सय</I> <li>Nor: <I>ni hundre og nitti ni</I> <li>Pes: <I>نهصد و نود و نه</I> <li>Pnb: <I>نو سو نڑینوے</I> <li>Pol: <I>dziewięćset dziewięćdziesiąt dziewięć</I> <li>Ron: <I>nouă sute nouăzeci şi nouă</I> <li>Rus: <I>девятьсот девяносто девять</I> <li>Spa: <I>novecientos noventa y nueve</I> <li>Swe: <I>niohundra nittionio</I> <li>Urd: <I>نو سو ننانوے</I> </ul> </div> </div></TD>
+</TR>
+</TABLE>
+
+<A NAME="Subj"></A>
+<H2>Subj - subjunction</H2>
+
+<TABLE BORDER="1" CELLPADDING="4">
+<TR>
+<TH>Function</TH>
+<TH>Type</TH>
+<TH COLSPAN="2">Example</TH>
+</TR>
+<TR>
+<TD><CODE>although_Subj</CODE></TD>
+<TD><A HREF="#Subj" TITLE="Subj - subjunction">Subj</A></TD>
+<TD><div class=reveal> <I>although she sleeps</I> <div class=popup> <ul> <li>API: <CODE>mkAdv although_Subj (mkS (mkCl she_NP sleep_V))</CODE> <li>Afr: <I>hoewel sy slaap</I> <li>Bul: <I>въпреки че тя спи</I> <li>Cat: <I>encara que ella dormi</I> <li>Dan: <I>selv om hun sover</I> <li>Dut: <I>hoewel ze slaapt</I> <li>Eng: <I>although she sleeps</I> <li>Fin: <I>vaikka hän nukkuu</I> <li>Fre: <I>bien pre {"que"; "qu'" / strs {"a"; "à"; "â"; "e"; "é"; "è"; "ê¨";</I> <li>Ger: <I>obwohl sie schläft</I> <li>Ita: <I>benché lei dorma</I> <li>Nep: <I>तैपनि उनी सुत्छिन्</I> <li>Nor: <I>selv om hun sover</I> <li>Pes: <I>با وجود این که او می خوابد</I> <li>Pnb: <I>پاویں او سوندی اے</I> <li>Pol: <I>pomimo ona śpi</I> <li>Ron: <I>deşi ea doarme</I> <li>Rus: <I>хотя она спдит</I> <li>Spa: <I>benché ella duerma</I> <li>Swe: <I>fast hon sover</I> <li>Urd: <I>اگرچہ وہ سوتی ہے</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>because_Subj</CODE></TD>
+<TD><A HREF="#Subj" TITLE="Subj - subjunction">Subj</A></TD>
+<TD><div class=reveal> <I>because she sleeps</I> <div class=popup> <ul> <li>API: <CODE>mkAdv because_Subj (mkS (mkCl she_NP sleep_V))</CODE> <li>Afr: <I>omdat sy slaap</I> <li>Bul: <I>защото тя спи</I> <li>Cat: <I>perque ella dorm</I> <li>Dan: <I>fordi hun sover</I> <li>Dut: <I>omdat ze slaapt</I> <li>Eng: <I>because she sleeps</I> <li>Fin: <I>koska hän nukkuu</I> <li>Fre: <I>parce pre {"que"; "qu'" / strs {"a"; "à"; "â"; "e"; "é"; "è"; "ê¨";</I> <li>Ger: <I>weil sie schläft</I> <li>Ita: <I>perché lei dorme</I> <li>Nep: <I>किनभने उनी सुत्छिन्</I> <li>Nor: <I>fordi hun sover</I> <li>Pes: <I>برای این که او می خوابد</I> <li>Pnb: <I>كیونكھ او سوندی اے</I> <li>Pol: <I>ponieważ ona śpi</I> <li>Ron: <I>deoarece ea doarme</I> <li>Rus: <I>потому что она спдит</I> <li>Spa: <I>porque ella duerme</I> <li>Swe: <I>eftersom hon sover</I> <li>Urd: <I>كیونكہ وہ سوتی ہے</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>if_Subj</CODE></TD>
+<TD><A HREF="#Subj" TITLE="Subj - subjunction">Subj</A></TD>
+<TD><div class=reveal> <I>if she sleeps</I> <div class=popup> <ul> <li>API: <CODE>mkAdv if_Subj (mkS (mkCl she_NP sleep_V))</CODE> <li>Afr: <I>as sy slaap</I> <li>Bul: <I>ако тя спи</I> <li>Cat: <I>si ella dorm</I> <li>Dan: <I>hvis hun sover</I> <li>Dut: <I>als ze slaapt</I> <li>Eng: <I>if she sleeps</I> <li>Fin: <I>jos hän nukkuu</I> <li>Fre: <I>si elle dort</I> <li>Ger: <I>wenn sie schläft</I> <li>Ita: <I>se lei dorme</I> <li>Nep: <I>यदि उनी सुत्छिन्</I> <li>Nor: <I>hvis hun sover</I> <li>Pes: <I>اگر که او می خوابد</I> <li>Pnb: <I>اگر او سوندی اے</I> <li>Pol: <I>jeśli ona śpi</I> <li>Ron: <I>dacă ea doarme</I> <li>Rus: <I>если она спдит</I> <li>Spa: <I>si ella duerme</I> <li>Swe: <I>om hon sover</I> <li>Urd: <I>اگر وہ سوتی ہے</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>that_Subj</CODE></TD>
+<TD><A HREF="#Subj" TITLE="Subj - subjunction">Subj</A></TD>
+<TD><div class=reveal> <I>that she sleeps</I> <div class=popup> <ul> <li>API: <CODE>mkAdv that_Subj (mkS (mkCl she_NP sleep_V))</CODE> <li>Afr: <I>dat sy slaap</I> <li>Bul: <I>че тя спи</I> <li>Cat: <I>que ella dormi</I> <li>Dan: <I>*</I> <li>Dut: <I>dat ze slaapt</I> <li>Eng: <I>that she sleeps</I> <li>Fin: <I>että hän nukkuu</I> <li>Fre: <I>qu' elle dorme</I> <li>Ger: <I>daß sie schläft</I> <li>Ita: <I>che lei dorma</I> <li>Nep: <I>त्यो उनी सुत्छिन्</I> <li>Nor: <I>*</I> <li>Pes: <I>آن که او می خوابد</I> <li>Pnb: <I>كہ او سوندی اے</I> <li>Pol: <I>*</I> <li>Ron: <I>că ea doarme</I> <li>Rus: <I>*</I> <li>Spa: <I>que ella duerma</I> <li>Swe: <I>att hon sover</I> <li>Urd: <I>كہ وہ سوتی ہے</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>when_Subj</CODE></TD>
+<TD><A HREF="#Subj" TITLE="Subj - subjunction">Subj</A></TD>
+<TD><div class=reveal> <I>when she sleeps</I> <div class=popup> <ul> <li>API: <CODE>mkAdv when_Subj (mkS (mkCl she_NP sleep_V))</CODE> <li>Afr: <I>as sy slaap</I> <li>Bul: <I>когато тя спи</I> <li>Cat: <I>quan ella dorm</I> <li>Dan: <I>når hun sover</I> <li>Dut: <I>als ze slaapt</I> <li>Eng: <I>when she sleeps</I> <li>Fin: <I>kun hän nukkuu</I> <li>Fre: <I>quand elle dort</I> <li>Ger: <I>wenn sie schläft</I> <li>Ita: <I>quando lei dorme</I> <li>Nep: <I>कहिले उनी सुत्छिन्</I> <li>Nor: <I>når hun sover</I> <li>Pes: <I>وقتی که او می خوابد</I> <li>Pnb: <I>كدوں او سوندی اے</I> <li>Pol: <I>jeśli ona śpi</I> <li>Ron: <I>când ea doarme</I> <li>Rus: <I>когда она спдит</I> <li>Spa: <I>cuando ella duerme</I> <li>Swe: <I>när hon sover</I> <li>Urd: <I>جب وہ سوتی ہے</I> </ul> </div> </div></TD>
+</TR>
+</TABLE>
+
+<A NAME="Temp"></A>
+<H2>Temp - temporal and aspectual features</H2>
+
+<TABLE BORDER="1" CELLPADDING="4">
+<TR>
+<TH>Function</TH>
+<TH>Type</TH>
+<TH COLSPAN="2">Example</TH>
+</TR>
+<TR>
+<TD><CODE>mkTemp</CODE></TD>
+<TD><A HREF="#Tense" TITLE="Tense - tense">Tense</A> <CODE>-&gt;</CODE> <A HREF="#Ant" TITLE="Ant - anteriority">Ant</A> <CODE>-&gt;</CODE> <A HREF="#Temp" TITLE="Temp - temporal and aspectual features">Temp</A></TD>
+<TD><I>e.g. past + anterior</I></TD>
+</TR>
+</TABLE>
+
+<A NAME="Tense"></A>
+<H2>Tense - tense</H2>
+
+<TABLE BORDER="1" CELLPADDING="4">
+<TR>
+<TH>Function</TH>
+<TH>Type</TH>
+<TH COLSPAN="2">Example</TH>
+</TR>
+<TR>
+<TD><CODE>conditionalTense</CODE></TD>
+<TD><A HREF="#Tense" TITLE="Tense - tense">Tense</A></TD>
+<TD><div class=reveal> <I>she would sleep</I> <div class=popup> <ul> <li>API: <CODE>mkS conditionalTense (mkCl she_NP sleep_V)</CODE> <li>Afr: <I>sy sou geslaap het</I> <li>Bul: <I>тя би спалa</I> <li>Cat: <I>ella dormiria</I> <li>Dan: <I>hun ville sove</I> <li>Dut: <I>ze zou geslapen hebben</I> <li>Eng: <I>she would sleep</I> <li>Fin: <I>Prelude.(!!): index too large</I> <li>Fre: <I>elle dormirait</I> <li>Ger: <I>sie würde schlafen</I> <li>Ita: <I>lei dormirebbe</I> <li>Nep: <I>उनी सुत्नेछिन्</I> <li>Nor: <I>hun ville sove</I> <li>Pes: <I>او می خوابید</I> <li>Pnb: <I>او شاید سوئے</I> <li>Pol: <I>ona spałaby</I> <li>Ron: <I>ea ar dormi</I> <li>Rus: <I>она спала бы</I> <li>Spa: <I>ella dormiría</I> <li>Swe: <I>hon skulle sova</I> <li>Urd: <I>وہ شاید سوئے</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>futureTense</CODE></TD>
+<TD><A HREF="#Tense" TITLE="Tense - tense">Tense</A></TD>
+<TD><div class=reveal> <I>she will sleep</I> <div class=popup> <ul> <li>API: <CODE>mkS futureTense (mkCl she_NP sleep_V)</CODE> <li>Afr: <I>sy sal geslaap het</I> <li>Bul: <I>тя ще спи</I> <li>Cat: <I>ella dormirà</I> <li>Dan: <I>hun vil sove</I> <li>Dut: <I>ze zal geslapen hebben</I> <li>Eng: <I>she will sleep</I> <li>Fin: <I>Prelude.(!!): index too large</I> <li>Fre: <I>elle dormira</I> <li>Ger: <I>sie wird schlafen</I> <li>Ita: <I>lei dormirà</I> <li>Nep: <I>उनी सुत्नेछिन्</I> <li>Nor: <I>hun vil sove</I> <li>Pes: <I>او خواهد خوابید</I> <li>Pnb: <I>او سوئے گی</I> <li>Pol: <I>ona będzie spała</I> <li>Ron: <I>ea va dormi</I> <li>Rus: <I>она будет спать</I> <li>Spa: <I>ella dormirá</I> <li>Swe: <I>hon ska sova</I> <li>Urd: <I>وہ سوئے گی</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>pastTense</CODE></TD>
+<TD><A HREF="#Tense" TITLE="Tense - tense">Tense</A></TD>
+<TD><div class=reveal> <I>she slept</I> <div class=popup> <ul> <li>API: <CODE>mkS pastTense (mkCl she_NP sleep_V)</CODE> <li>Afr: <I>sy slaap</I> <li>Bul: <I>тя спа</I> <li>Cat: <I>ella dormia</I> <li>Dan: <I>hun sov</I> <li>Dut: <I>ze sliep</I> <li>Eng: <I>she slept</I> <li>Fin: <I>Prelude.(!!): index too large</I> <li>Fre: <I>elle dormait</I> <li>Ger: <I>sie schlief</I> <li>Ita: <I>lei dormiva</I> <li>Nep: <I>उनी सुतिन्</I> <li>Nor: <I>hun sov</I> <li>Pes: <I>او خوابید</I> <li>Pnb: <I>او سوئی</I> <li>Pol: <I>ona spała</I> <li>Ron: <I>ea a dormit</I> <li>Rus: <I>она спала</I> <li>Spa: <I>ella dormía</I> <li>Swe: <I>hon sov</I> <li>Urd: <I>وہ سوئی</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>presentTense</CODE></TD>
+<TD><A HREF="#Tense" TITLE="Tense - tense">Tense</A></TD>
+<TD><div class=reveal> <I>she sleeps</I> <div class=popup> <ul> <li>API: <CODE>mkS presentTense (mkCl she_NP sleep_V)</CODE> <li>Afr: <I>sy slaap</I> <li>Bul: <I>тя спи</I> <li>Cat: <I>ella dorm</I> <li>Dan: <I>hun sover</I> <li>Dut: <I>ze slaapt</I> <li>Eng: <I>she sleeps</I> <li>Fin: <I>hän nukkuu</I> <li>Fre: <I>elle dort</I> <li>Ger: <I>sie schläft</I> <li>Ita: <I>lei dorme</I> <li>Nep: <I>उनी सुत्छिन्</I> <li>Nor: <I>hun sover</I> <li>Pes: <I>او می خوابد</I> <li>Pnb: <I>او سوندی اے</I> <li>Pol: <I>ona śpi</I> <li>Ron: <I>ea doarme</I> <li>Rus: <I>она спдит</I> <li>Spa: <I>ella duerme</I> <li>Swe: <I>hon sover</I> <li>Urd: <I>وہ سوتی ہے</I> </ul> </div> </div></TD>
+</TR>
+</TABLE>
+
+<A NAME="Text"></A>
+<H2>Text - text consisting of several phrases</H2>
+
+<TABLE BORDER="1" CELLPADDING="4">
+<TR>
+<TH>Function</TH>
+<TH>Type</TH>
+<TH COLSPAN="2">Example</TH>
+</TR>
+<TR>
+<TD><CODE>emptyText</CODE></TD>
+<TD><A HREF="#Text" TITLE="Text - text consisting of several phrases">Text</A></TD>
+<TD><I>(empty text)</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkText</CODE></TD>
+<TD><A HREF="#Phr" TITLE="Phr - phrase in a text">Phr</A> <CODE>-&gt;</CODE> (<A HREF="#Punct">Punct</A>) <CODE>-&gt;</CODE> (<A HREF="#Text" TITLE="Text - text consisting of several phrases">Text</A>) <CODE>-&gt;</CODE> <A HREF="#Text" TITLE="Text - text consisting of several phrases">Text</A></TD>
+<TD><div class=reveal> <I>does she sleep ? yes .</I> <div class=popup> <ul> <li>API: <CODE>mkText (mkPhr (mkQS (mkCl she_NP sleep_V))) questMarkPunct (mkText (mkPhr yes_Utt) fullStopPunct)</CODE> <li>Afr: <I>slaap sy ? ja .</I> <li>Bul: <I>тя спи ли ? да .</I> <li>Cat: <I>ella dorm ? sí .</I> <li>Dan: <I>sover hun ? ja .</I> <li>Dut: <I>slaapt ze ? ja .</I> <li>Eng: <I>does she sleep ? yes .</I> <li>Fin: <I>nukkuuko hän ? kyllä .</I> <li>Fre: <I>elle dort ? oui .</I> <li>Ger: <I>schläft sie ? ja .</I> <li>Ita: <I>lei dorme ? sì .</I> <li>Nep: <I>के उनी सुत्छिन् ? हजुर .</I> <li>Nor: <I>sover hun ? ja .</I> <li>Pes: <I>آیا او می خوابد بله Û”</I> <li>Pnb: <I>كی او سوندی اے ? ہاں .</I> <li>Pol: <I>czy ona śpi ? tak .</I> <li>Ron: <I>ea doarme ? da .</I> <li>Rus: <I>она спдит ? Да .</I> <li>Spa: <I>¿ ella duerme ? sí .</I> <li>Swe: <I>sover hon ? ja .</I> <li>Urd: <I>كیا وہ سوتی ہے ہاں</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>mkText</CODE></TD>
+<TD><A HREF="#Utt" TITLE="Utt - sentence, question, word...">Utt</A> <CODE>-&gt;</CODE> <A HREF="#Text" TITLE="Text - text consisting of several phrases">Text</A></TD>
+<TD><div class=reveal> <I>yes .</I> <div class=popup> <ul> <li>API: <CODE>mkText yes_Utt</CODE> <li>Afr: <I>ja .</I> <li>Bul: <I>да .</I> <li>Cat: <I>sí .</I> <li>Dan: <I>ja .</I> <li>Dut: <I>ja .</I> <li>Eng: <I>yes .</I> <li>Fin: <I>kyllä .</I> <li>Fre: <I>oui .</I> <li>Ger: <I>ja .</I> <li>Ita: <I>sì .</I> <li>Nep: <I>हजुर .</I> <li>Nor: <I>ja .</I> <li>Pes: <I>بله Û”</I> <li>Pnb: <I>ہاں .</I> <li>Pol: <I>tak .</I> <li>Ron: <I>da .</I> <li>Rus: <I>Да .</I> <li>Spa: <I>sí .</I> <li>Swe: <I>ja .</I> <li>Urd: <I>ہاں</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>mkText</CODE></TD>
+<TD><A HREF="#S" TITLE="S - declarative sentence">S</A> <CODE>-&gt;</CODE> <A HREF="#Text" TITLE="Text - text consisting of several phrases">Text</A></TD>
+<TD><div class=reveal> <I>she slept .</I> <div class=popup> <ul> <li>API: <CODE>mkText (mkS pastTense (mkCl she_NP sleep_V))</CODE> <li>Afr: <I>sy slaap .</I> <li>Bul: <I>тя спа .</I> <li>Cat: <I>ella dormia .</I> <li>Dan: <I>hun sov .</I> <li>Dut: <I>ze sliep .</I> <li>Eng: <I>she slept .</I> <li>Fin: <I>Prelude.(!!): index too large</I> <li>Fre: <I>elle dormait .</I> <li>Ger: <I>sie schlief .</I> <li>Ita: <I>lei dormiva .</I> <li>Nep: <I>उनी सुतिन् .</I> <li>Nor: <I>hun sov .</I> <li>Pes: <I>او خوابید Û”</I> <li>Pnb: <I>او سوئی .</I> <li>Pol: <I>ona spała .</I> <li>Ron: <I>ea a dormit .</I> <li>Rus: <I>она спала .</I> <li>Spa: <I>ella dormía .</I> <li>Swe: <I>hon sov .</I> <li>Urd: <I>وہ سوئی</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>mkText</CODE></TD>
+<TD><A HREF="#Cl" TITLE="Cl - declarative clause, with all tenses">Cl</A> <CODE>-&gt;</CODE> <A HREF="#Text" TITLE="Text - text consisting of several phrases">Text</A></TD>
+<TD><div class=reveal> <I>she sleeps .</I> <div class=popup> <ul> <li>API: <CODE>mkText (mkCl she_NP sleep_V)</CODE> <li>Afr: <I>sy slaap .</I> <li>Bul: <I>тя спи .</I> <li>Cat: <I>ella dorm .</I> <li>Dan: <I>hun sover .</I> <li>Dut: <I>ze slaapt .</I> <li>Eng: <I>she sleeps .</I> <li>Fin: <I>hän nukkuu .</I> <li>Fre: <I>elle dort .</I> <li>Ger: <I>sie schläft .</I> <li>Ita: <I>lei dorme .</I> <li>Nep: <I>उनी सुत्छिन् .</I> <li>Nor: <I>hun sover .</I> <li>Pes: <I>او می خوابد Û”</I> <li>Pnb: <I>او سوندی اے .</I> <li>Pol: <I>ona śpi .</I> <li>Ron: <I>ea doarme .</I> <li>Rus: <I>она спдит .</I> <li>Spa: <I>ella duerme .</I> <li>Swe: <I>hon sover .</I> <li>Urd: <I>وہ سوتی ہے</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>mkText</CODE></TD>
+<TD><A HREF="#QS" TITLE="QS - question">QS</A> <CODE>-&gt;</CODE> <A HREF="#Text" TITLE="Text - text consisting of several phrases">Text</A></TD>
+<TD><div class=reveal> <I>did she sleep ?</I> <div class=popup> <ul> <li>API: <CODE>mkText (mkQS pastTense (mkQCl (mkCl she_NP sleep_V)))</CODE> <li>Afr: <I>slaap sy ?</I> <li>Bul: <I>тя спа ли ?</I> <li>Cat: <I>ella dormia ?</I> <li>Dan: <I>sov hun ?</I> <li>Dut: <I>sliep ze ?</I> <li>Eng: <I>did she sleep ?</I> <li>Fin: <I>Prelude.(!!): index too large</I> <li>Fre: <I>elle dormait ?</I> <li>Ger: <I>schlief sie ?</I> <li>Ita: <I>lei dormiva ?</I> <li>Nep: <I>के उनी सुतिन् ?</I> <li>Nor: <I>sov hun ?</I> <li>Pes: <I>آیا او خوابید</I> <li>Pnb: <I>كی او سوئی ?</I> <li>Pol: <I>czy ona spała ?</I> <li>Ron: <I>ea a dormit ?</I> <li>Rus: <I>она спала ?</I> <li>Spa: <I>¿ ella dormía ?</I> <li>Swe: <I>sov hon ?</I> <li>Urd: <I>كیا وہ سوئی</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>mkText</CODE></TD>
+<TD>(<A HREF="#Pol" TITLE="Pol - polarity">Pol</A>) <CODE>-&gt;</CODE> <A HREF="#Imp" TITLE="Imp - imperative">Imp</A> <CODE>-&gt;</CODE> <A HREF="#Text" TITLE="Text - text consisting of several phrases">Text</A></TD>
+<TD><div class=reveal> <I>don't sleep !</I> <div class=popup> <ul> <li>API: <CODE>mkText negativePol (mkImp sleep_V)</CODE> <li>Afr: <I>slaap nie !</I> <li>Bul: <I>не спи !</I> <li>Cat: <I>no dorm !</I> <li>Dan: <I>sov ikke !</I> <li>Dut: <I>slaap niet !</I> <li>Eng: <I>don't sleep !</I> <li>Fin: <I>Prelude.(!!): index too large</I> <li>Fre: <I>ne dors pas !</I> <li>Ger: <I>schlaf nicht !</I> <li>Ita: <I>non dormire !</I> <li>Nep: <I>नगर सुत् होउ !</I> <li>Nor: <I>sov ikke !</I> <li>Pes: <I>نخواب</I> <li>Pnb: <I>مت سونا !</I> <li>Pol: <I>nie śpij !</I> <li>Ron: <I>nu dormi !</I> <li>Rus: <I>не спи !</I> <li>Spa: <I>¡ no duerme !</I> <li>Swe: <I>sov inte !</I> <li>Urd: <I>مت سونا</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>mkText</CODE></TD>
+<TD><A HREF="#Text" TITLE="Text - text consisting of several phrases">Text</A> <CODE>-&gt;</CODE> <A HREF="#Text" TITLE="Text - text consisting of several phrases">Text</A> <CODE>-&gt;</CODE> <A HREF="#Text" TITLE="Text - text consisting of several phrases">Text</A></TD>
+<TD><div class=reveal> <I>where ? here . when ? now !</I> <div class=popup> <ul> <li>API: <CODE>mkText (mkText (mkPhr (mkUtt where_IAdv)) questMarkPunct (mkText (mkPhr (mkUtt here_Adv)))) (mkText (mkPhr (mkUtt when_IAdv)) questMarkPunct (mkText (mkPhr (mkUtt now_Adv)) exclMarkPunct))</CODE> <li>Afr: <I>waar ? hier . wanneer ? nou !</I> <li>Bul: <I>къде ? тук . кога ? сега !</I> <li>Cat: <I>on ? aquí . quan ? ara !</I> <li>Dan: <I>hvor ? her . hvornår ? nu !</I> <li>Dut: <I>waar ? hier . wanneer ? nu !</I> <li>Eng: <I>where ? here . when ? now !</I> <li>Fin: <I>missä ? täällä . milloin ? nyt !</I> <li>Fre: <I>oÃ¹ ? ici . quand ? maintenant !</I> <li>Ger: <I>wo ? hier . wann ? jetzt !</I> <li>Ita: <I>dove ? quà . quando ? adesso !</I> <li>Nep: <I>कहाँ ? यहाँ . कहिले ? अहीले !</I> <li>Nor: <I>hvor ? her . når ? nå !</I> <li>Pes: <I>کجا اینجا Û” کی حالا</I> <li>Pnb: <I>كتھے ? ایتھے . كدوں ? ہون !</I> <li>Pol: <I>gdzie ? tutaj . kiedy ? teraz !</I> <li>Ron: <I>unde ? aici . când ? acum !</I> <li>Rus: <I>где ? здесь . когда ? сейчас !</I> <li>Spa: <I>¿ donde ? aquí . ¿ cuando ? ¡ ahora !</I> <li>Swe: <I>var ? här . när ? nu !</I> <li>Urd: <I>كہاں یہاں كب اب</I> </ul> </div> </div></TD>
+</TR>
+</TABLE>
+
+<A NAME="Unit"></A>
+<H2>Unit</H2>
+
+<TABLE BORDER="1" CELLPADDING="4">
+<TR>
+<TH>Function</TH>
+<TH>Type</TH>
+<TH COLSPAN="2">Example</TH>
+</TR>
+<TR>
+<TD><CODE>n1_Unit</CODE></TD>
+<TD><A HREF="#Unit">Unit</A></TD>
+<TD><div class=reveal> <I>one</I> <div class=popup> <ul> <li>API: <CODE>mkNumeral n1_Unit</CODE> <li>Afr: <I>een</I> <li>Bul: <I>един</I> <li>Cat: <I>un</I> <li>Dan: <I>en</I> <li>Dut: <I>een</I> <li>Eng: <I>one</I> <li>Fin: <I>yksi</I> <li>Fre: <I>un</I> <li>Ger: <I>ein</I> <li>Ita: <I>uno</I> <li>Nep: <I>एक</I> <li>Nor: <I>en</I> <li>Pes: <I>یک</I> <li>Pnb: <I>اك</I> <li>Pol: <I>jeden</I> <li>Ron: <I>un</I> <li>Rus: <I>один</I> <li>Spa: <I>uno</I> <li>Swe: <I>en</I> <li>Urd: <I>ایك</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>n2_Unit</CODE></TD>
+<TD><A HREF="#Unit">Unit</A></TD>
+<TD><div class=reveal> <I>two</I> <div class=popup> <ul> <li>API: <CODE>mkNumeral n2_Unit</CODE> <li>Afr: <I>twee</I> <li>Bul: <I>двама</I> <li>Cat: <I>dos</I> <li>Dan: <I>to</I> <li>Dut: <I>twee</I> <li>Eng: <I>two</I> <li>Fin: <I>kaksi</I> <li>Fre: <I>deux</I> <li>Ger: <I>zwei</I> <li>Ita: <I>due</I> <li>Nep: <I>दुई</I> <li>Nor: <I>to</I> <li>Pes: <I>دو</I> <li>Pnb: <I>دو</I> <li>Pol: <I>dwa</I> <li>Ron: <I>doi</I> <li>Rus: <I>два</I> <li>Spa: <I>dos</I> <li>Swe: <I>två</I> <li>Urd: <I>دو</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>n3_Unit</CODE></TD>
+<TD><A HREF="#Unit">Unit</A></TD>
+<TD><div class=reveal> <I>three</I> <div class=popup> <ul> <li>API: <CODE>mkNumeral n3_Unit</CODE> <li>Afr: <I>drie</I> <li>Bul: <I>трима</I> <li>Cat: <I>tres</I> <li>Dan: <I>tre</I> <li>Dut: <I>drie</I> <li>Eng: <I>three</I> <li>Fin: <I>kolme</I> <li>Fre: <I>trois</I> <li>Ger: <I>drei</I> <li>Ita: <I>tre</I> <li>Nep: <I>तीन</I> <li>Nor: <I>tre</I> <li>Pes: <I>سه</I> <li>Pnb: <I>تن</I> <li>Pol: <I>trzy</I> <li>Ron: <I>trei</I> <li>Rus: <I>три</I> <li>Spa: <I>tres</I> <li>Swe: <I>tre</I> <li>Urd: <I>تین</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>n4_Unit</CODE></TD>
+<TD><A HREF="#Unit">Unit</A></TD>
+<TD><div class=reveal> <I>four</I> <div class=popup> <ul> <li>API: <CODE>mkNumeral n4_Unit</CODE> <li>Afr: <I>vier</I> <li>Bul: <I>четирима</I> <li>Cat: <I>quatre</I> <li>Dan: <I>fire</I> <li>Dut: <I>vier</I> <li>Eng: <I>four</I> <li>Fin: <I>neljä</I> <li>Fre: <I>quatre</I> <li>Ger: <I>vier</I> <li>Ita: <I>quattro</I> <li>Nep: <I>चार</I> <li>Nor: <I>fire</I> <li>Pes: <I>چهار</I> <li>Pnb: <I>چار</I> <li>Pol: <I>cztery</I> <li>Ron: <I>patru</I> <li>Rus: <I>четыре</I> <li>Spa: <I>cuatro</I> <li>Swe: <I>fyra</I> <li>Urd: <I>چار</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>n5_Unit</CODE></TD>
+<TD><A HREF="#Unit">Unit</A></TD>
+<TD><div class=reveal> <I>five</I> <div class=popup> <ul> <li>API: <CODE>mkNumeral n5_Unit</CODE> <li>Afr: <I>vyf</I> <li>Bul: <I>петима</I> <li>Cat: <I>cinc</I> <li>Dan: <I>fem</I> <li>Dut: <I>vijf</I> <li>Eng: <I>five</I> <li>Fin: <I>viisi</I> <li>Fre: <I>cinq</I> <li>Ger: <I>fünf</I> <li>Ita: <I>cinque</I> <li>Nep: <I>पाँच</I> <li>Nor: <I>fem</I> <li>Pes: <I>پنج</I> <li>Pnb: <I>پنج</I> <li>Pol: <I>pięć</I> <li>Ron: <I>cinci</I> <li>Rus: <I>пять</I> <li>Spa: <I>cinco</I> <li>Swe: <I>fem</I> <li>Urd: <I>پانچ</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>n6_Unit</CODE></TD>
+<TD><A HREF="#Unit">Unit</A></TD>
+<TD><div class=reveal> <I>six</I> <div class=popup> <ul> <li>API: <CODE>mkNumeral n6_Unit</CODE> <li>Afr: <I>ses</I> <li>Bul: <I>шестима</I> <li>Cat: <I>sis</I> <li>Dan: <I>seks</I> <li>Dut: <I>zes</I> <li>Eng: <I>six</I> <li>Fin: <I>kuusi</I> <li>Fre: <I>six</I> <li>Ger: <I>sechs</I> <li>Ita: <I>sei</I> <li>Nep: <I>छ</I> <li>Nor: <I>seks</I> <li>Pes: <I>شش</I> <li>Pnb: <I>چھ</I> <li>Pol: <I>sześć</I> <li>Ron: <I>şase</I> <li>Rus: <I>шесть</I> <li>Spa: <I>seis</I> <li>Swe: <I>sex</I> <li>Urd: <I>چھ</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>n7_Unit</CODE></TD>
+<TD><A HREF="#Unit">Unit</A></TD>
+<TD><div class=reveal> <I>seven</I> <div class=popup> <ul> <li>API: <CODE>mkNumeral n7_Unit</CODE> <li>Afr: <I>seven</I> <li>Bul: <I>седмина</I> <li>Cat: <I>set</I> <li>Dan: <I>syv</I> <li>Dut: <I>zeven</I> <li>Eng: <I>seven</I> <li>Fin: <I>seitsemän</I> <li>Fre: <I>sept</I> <li>Ger: <I>sieben</I> <li>Ita: <I>sette</I> <li>Nep: <I>सात</I> <li>Nor: <I>sju</I> <li>Pes: <I>هفت</I> <li>Pnb: <I>ست</I> <li>Pol: <I>siedem</I> <li>Ron: <I>şapte</I> <li>Rus: <I>семь</I> <li>Spa: <I>siete</I> <li>Swe: <I>sju</I> <li>Urd: <I>سات</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>n8_Unit</CODE></TD>
+<TD><A HREF="#Unit">Unit</A></TD>
+<TD><div class=reveal> <I>eight</I> <div class=popup> <ul> <li>API: <CODE>mkNumeral n8_Unit</CODE> <li>Afr: <I>agt</I> <li>Bul: <I>осмина</I> <li>Cat: <I>vuit</I> <li>Dan: <I>otte</I> <li>Dut: <I>acht</I> <li>Eng: <I>eight</I> <li>Fin: <I>kahdeksan</I> <li>Fre: <I>huit</I> <li>Ger: <I>acht</I> <li>Ita: <I>otto</I> <li>Nep: <I>आठ</I> <li>Nor: <I>åtte</I> <li>Pes: <I>هشت</I> <li>Pnb: <I>اٹھ</I> <li>Pol: <I>osiemm</I> <li>Ron: <I>opt</I> <li>Rus: <I>восемь</I> <li>Spa: <I>ocho</I> <li>Swe: <I>åtta</I> <li>Urd: <I>آٹھ</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>n9_Unit</CODE></TD>
+<TD><A HREF="#Unit">Unit</A></TD>
+<TD><div class=reveal> <I>nine</I> <div class=popup> <ul> <li>API: <CODE>mkNumeral n9_Unit</CODE> <li>Afr: <I>nege</I> <li>Bul: <I>деветима</I> <li>Cat: <I>nou</I> <li>Dan: <I>ni</I> <li>Dut: <I>negen</I> <li>Eng: <I>nine</I> <li>Fin: <I>yhdeksän</I> <li>Fre: <I>neuf</I> <li>Ger: <I>neun</I> <li>Ita: <I>nove</I> <li>Nep: <I>नौ</I> <li>Nor: <I>ni</I> <li>Pes: <I>نه</I> <li>Pnb: <I>نو</I> <li>Pol: <I>dziewięć</I> <li>Ron: <I>nouă</I> <li>Rus: <I>девять</I> <li>Spa: <I>nueve</I> <li>Swe: <I>nio</I> <li>Urd: <I>نو</I> </ul> </div> </div></TD>
+</TR>
+</TABLE>
+
+<A NAME="Utt"></A>
+<H2>Utt - sentence, question, word...</H2>
+
+<TABLE BORDER="1" CELLPADDING="4">
+<TR>
+<TH>Function</TH>
+<TH>Type</TH>
+<TH COLSPAN="2">Example</TH>
+</TR>
+<TR>
+<TD><CODE>lets_Utt</CODE></TD>
+<TD><A HREF="#VP" TITLE="VP - verb phrase">VP</A> <CODE>-&gt;</CODE> <A HREF="#Utt" TITLE="Utt - sentence, question, word...">Utt</A></TD>
+<TD><div class=reveal> <I>let's sleep</I> <div class=popup> <ul> <li>API: <CODE>mkPhr (lets_Utt (mkVP sleep_V))</CODE> <li>Afr: <I>laat ons slaap</I> <li>Bul: <I>нека да спим</I> <li>Cat: <I>dormim</I> <li>Dan: <I>lad os sove</I> <li>Dut: <I>laten we slapen</I> <li>Eng: <I>let's sleep</I> <li>Fin: <I>Prelude.(!!): index too large</I> <li>Fre: <I>dormons</I> <li>Ger: <I>schlafen wir</I> <li>Ita: <I>dormiamo</I> <li>Nep: <I>सुतौँ</I> <li>Nor: <I>lat oss sove</I> <li>Pes: <I>بیایید بخوابیم</I> <li>Pnb: <I>آو سون</I> <li>Pol: <I>śpijmy</I> <li>Ron: <I>sã dormim</I> <li>Rus: <I>давайте будем спать</I> <li>Spa: <I>durmamos</I> <li>Swe: <I>låt oss sova</I> <li>Urd: <I>آو سوئیں</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>mkUtt</CODE></TD>
+<TD><A HREF="#S" TITLE="S - declarative sentence">S</A> <CODE>-&gt;</CODE> <A HREF="#Utt" TITLE="Utt - sentence, question, word...">Utt</A></TD>
+<TD><div class=reveal> <I>she slept</I> <div class=popup> <ul> <li>API: <CODE>mkUtt (mkS pastTense (mkCl she_NP sleep_V))</CODE> <li>Afr: <I>sy slaap</I> <li>Bul: <I>тя спа</I> <li>Cat: <I>ella dormia</I> <li>Dan: <I>hun sov</I> <li>Dut: <I>ze sliep</I> <li>Eng: <I>she slept</I> <li>Fin: <I>Prelude.(!!): index too large</I> <li>Fre: <I>elle dormait</I> <li>Ger: <I>sie schlief</I> <li>Ita: <I>lei dormiva</I> <li>Nep: <I>उनी सुतिन्</I> <li>Nor: <I>hun sov</I> <li>Pes: <I>او خوابید</I> <li>Pnb: <I>او سوئی</I> <li>Pol: <I>ona spała</I> <li>Ron: <I>ea a dormit</I> <li>Rus: <I>она спала</I> <li>Spa: <I>ella dormía</I> <li>Swe: <I>hon sov</I> <li>Urd: <I>وہ سوئی</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>mkUtt</CODE></TD>
+<TD><A HREF="#Cl" TITLE="Cl - declarative clause, with all tenses">Cl</A> <CODE>-&gt;</CODE> <A HREF="#Utt" TITLE="Utt - sentence, question, word...">Utt</A></TD>
+<TD><div class=reveal> <I>she sleeps</I> <div class=popup> <ul> <li>API: <CODE>mkUtt (mkCl she_NP sleep_V)</CODE> <li>Afr: <I>sy slaap</I> <li>Bul: <I>тя спи</I> <li>Cat: <I>ella dorm</I> <li>Dan: <I>hun sover</I> <li>Dut: <I>ze slaapt</I> <li>Eng: <I>she sleeps</I> <li>Fin: <I>hän nukkuu</I> <li>Fre: <I>elle dort</I> <li>Ger: <I>sie schläft</I> <li>Ita: <I>lei dorme</I> <li>Nep: <I>उनी सुत्छिन्</I> <li>Nor: <I>hun sover</I> <li>Pes: <I>او می خوابد</I> <li>Pnb: <I>او سوندی اے</I> <li>Pol: <I>ona śpi</I> <li>Ron: <I>ea doarme</I> <li>Rus: <I>она спдит</I> <li>Spa: <I>ella duerme</I> <li>Swe: <I>hon sover</I> <li>Urd: <I>وہ سوتی ہے</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>mkUtt</CODE></TD>
+<TD><A HREF="#QS" TITLE="QS - question">QS</A> <CODE>-&gt;</CODE> <A HREF="#Utt" TITLE="Utt - sentence, question, word...">Utt</A></TD>
+<TD><div class=reveal> <I>who didn't sleep</I> <div class=popup> <ul> <li>API: <CODE>mkUtt (mkQS pastTense negativePol (mkQCl who_IP sleep_V))</CODE> <li>Afr: <I>wie slaap nie nie</I> <li>Bul: <I>кой не спа</I> <li>Cat: <I>qui no dormia</I> <li>Dan: <I>hvem sov ikke</I> <li>Dut: <I>wie sliep niet</I> <li>Eng: <I>who didn't sleep</I> <li>Fin: <I>Prelude.(!!): index too large</I> <li>Fre: <I>qui ne dormait pas</I> <li>Ger: <I>wer schlief nicht</I> <li>Ita: <I>chi non dormiva</I> <li>Nep: <I>को सुतेनन्</I> <li>Nor: <I>hvem sov ikke</I> <li>Pes: <I>چه کسی نخوابید</I> <li>Pnb: <I>كون نیں سویا</I> <li>Pol: <I>kto nie spał</I> <li>Ron: <I>cine nu a dormit</I> <li>Rus: <I>кто спал</I> <li>Spa: <I>quién no dormía</I> <li>Swe: <I>vem sov inte</I> <li>Urd: <I>كون نہیں سویا</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>mkUtt</CODE></TD>
+<TD><A HREF="#QCl" TITLE="QCl - question clause, with all tenses">QCl</A> <CODE>-&gt;</CODE> <A HREF="#Utt" TITLE="Utt - sentence, question, word...">Utt</A></TD>
+<TD><div class=reveal> <I>who sleeps</I> <div class=popup> <ul> <li>API: <CODE>mkUtt (mkQCl who_IP sleep_V)</CODE> <li>Afr: <I>wie slaap</I> <li>Bul: <I>кой спи</I> <li>Cat: <I>qui dorm</I> <li>Dan: <I>hvem sover</I> <li>Dut: <I>wie slaapt</I> <li>Eng: <I>who sleeps</I> <li>Fin: <I>kuka nukkuu</I> <li>Fre: <I>qui dort</I> <li>Ger: <I>wer schläft</I> <li>Ita: <I>chi dorme</I> <li>Nep: <I>को सुत्छन्</I> <li>Nor: <I>hvem sover</I> <li>Pes: <I>چه کسی می خوابد</I> <li>Pnb: <I>كون سوندا اے</I> <li>Pol: <I>kto śpi</I> <li>Ron: <I>cine doarme</I> <li>Rus: <I>кто спдит</I> <li>Spa: <I>quién duerme</I> <li>Swe: <I>vem sover</I> <li>Urd: <I>كون سوتا ہے</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>mkUtt</CODE></TD>
+<TD>(<A HREF="#ImpForm">ImpForm</A>) <CODE>-&gt;</CODE> (<A HREF="#Pol" TITLE="Pol - polarity">Pol</A>) <CODE>-&gt;</CODE> <A HREF="#Imp" TITLE="Imp - imperative">Imp</A> <CODE>-&gt;</CODE> <A HREF="#Utt" TITLE="Utt - sentence, question, word...">Utt</A></TD>
+<TD><div class=reveal> <I>don't be men</I> <div class=popup> <ul> <li>API: <CODE>mkUtt pluralImpForm negativePol (mkImp (mkVP man_N))</CODE> <li>Afr: <I>wees mans nie</I> <li>Bul: <I>не бъдете мъже</I> <li>Cat: <I>no sigueu homes</I> <li>Dan: <I>var ikke mænd</I> <li>Dut: <I>wezen mannen niet</I> <li>Eng: <I>don't be men</I> <li>Fin: <I>Prelude.(!!): index too large</I> <li>Fre: <I>ne soyez pas hommes</I> <li>Ger: <I>seid Männer nicht</I> <li>Ita: <I>non siate uomini</I> <li>Nep: <I>नगर मान्छेहरु हऔ</I> <li>Nor: <I>var ikke menn</I> <li>Pes: <I>مردان</I> <li>Pnb: <I>مت بندے</I> <li>Pol: <I>nie bądźcie mężczyzna</I> <li>Ron: <I>nu sunteţi oameni</I> <li>Rus: <I>не будьте человеками</I> <li>Spa: <I>no sed hombres</I> <li>Swe: <I>var inte män</I> <li>Urd: <I>مت آدمی</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>mkUtt</CODE></TD>
+<TD><A HREF="#IP" TITLE="IP - interrogative pronoun">IP</A> <CODE>-&gt;</CODE> <A HREF="#Utt" TITLE="Utt - sentence, question, word...">Utt</A></TD>
+<TD><div class=reveal> <I>who</I> <div class=popup> <ul> <li>API: <CODE>mkUtt who_IP</CODE> <li>Afr: <I>wie</I> <li>Bul: <I>кой</I> <li>Cat: <I>qui</I> <li>Dan: <I>hvem</I> <li>Dut: <I>wie</I> <li>Eng: <I>who</I> <li>Fin: <I>kuka</I> <li>Fre: <I>qui</I> <li>Ger: <I>wer</I> <li>Ita: <I>chi</I> <li>Nep: <I>को</I> <li>Nor: <I>hvem</I> <li>Pes: <I>چه کسی</I> <li>Pnb: <I>كون</I> <li>Pol: <I>kto</I> <li>Ron: <I>cine</I> <li>Rus: <I>кто</I> <li>Spa: <I>quién</I> <li>Swe: <I>vem</I> <li>Urd: <I>كون</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>mkUtt</CODE></TD>
+<TD><A HREF="#IAdv" TITLE="IAdv - interrogative adverb">IAdv</A> <CODE>-&gt;</CODE> <A HREF="#Utt" TITLE="Utt - sentence, question, word...">Utt</A></TD>
+<TD><div class=reveal> <I>why</I> <div class=popup> <ul> <li>API: <CODE>mkUtt why_IAdv</CODE> <li>Afr: <I>waarom</I> <li>Bul: <I>защо</I> <li>Cat: <I>per quË</I> <li>Dan: <I>hvorfor</I> <li>Dut: <I>waarom</I> <li>Eng: <I>why</I> <li>Fin: <I>miksi</I> <li>Fre: <I>pourquoi</I> <li>Ger: <I>warum</I> <li>Ita: <I>perché</I> <li>Nep: <I>किन</I> <li>Nor: <I>hvorfor</I> <li>Pes: <I>چرا</I> <li>Pnb: <I>كیوں</I> <li>Pol: <I>dlaczego</I> <li>Ron: <I>de ce</I> <li>Rus: <I>почему</I> <li>Spa: <I>porqué</I> <li>Swe: <I>varför</I> <li>Urd: <I>كیوں</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>mkUtt</CODE></TD>
+<TD><A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A> <CODE>-&gt;</CODE> <A HREF="#Utt" TITLE="Utt - sentence, question, word...">Utt</A></TD>
+<TD><div class=reveal> <I>this man</I> <div class=popup> <ul> <li>API: <CODE>mkUtt (mkNP this_Det man_N)</CODE> <li>Afr: <I>hierdie man</I> <li>Bul: <I>този мъж</I> <li>Cat: <I>aquest home</I> <li>Dan: <I>denne mand</I> <li>Dut: <I>deze man</I> <li>Eng: <I>this man</I> <li>Fin: <I>tämä mies</I> <li>Fre: <I>cet homme</I> <li>Ger: <I>dieser Mann</I> <li>Ita: <I>questo uomo</I> <li>Nep: <I>यो मान्छे</I> <li>Nor: <I>denne mannen</I> <li>Pes: <I>این مرد</I> <li>Pnb: <I>اے بندہ</I> <li>Pol: <I>ten mężczyzna</I> <li>Ron: <I>acest om</I> <li>Rus: <I>этот человек</I> <li>Spa: <I>este hombre</I> <li>Swe: <I>den här mannen</I> <li>Urd: <I>یہ آدمی</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>mkUtt</CODE></TD>
+<TD><A HREF="#Adv" TITLE="Adv - verb-phrase-modifying adverb">Adv</A> <CODE>-&gt;</CODE> <A HREF="#Utt" TITLE="Utt - sentence, question, word...">Utt</A></TD>
+<TD><div class=reveal> <I>here</I> <div class=popup> <ul> <li>API: <CODE>mkUtt here_Adv</CODE> <li>Afr: <I>hier</I> <li>Bul: <I>тук</I> <li>Cat: <I>aquí</I> <li>Dan: <I>her</I> <li>Dut: <I>hier</I> <li>Eng: <I>here</I> <li>Fin: <I>täällä</I> <li>Fre: <I>ici</I> <li>Ger: <I>hier</I> <li>Ita: <I>quà</I> <li>Nep: <I>यहाँ</I> <li>Nor: <I>her</I> <li>Pes: <I>اینجا</I> <li>Pnb: <I>ایتھے</I> <li>Pol: <I>tutaj</I> <li>Ron: <I>aici</I> <li>Rus: <I>здесь</I> <li>Spa: <I>aquí</I> <li>Swe: <I>här</I> <li>Urd: <I>یہاں</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>mkUtt</CODE></TD>
+<TD><A HREF="#VP" TITLE="VP - verb phrase">VP</A> <CODE>-&gt;</CODE> <A HREF="#Utt" TITLE="Utt - sentence, question, word...">Utt</A></TD>
+<TD><div class=reveal> <I>to sleep</I> <div class=popup> <ul> <li>API: <CODE>mkUtt (mkVP sleep_V)</CODE> <li>Afr: <I>slaap</I> <li>Bul: <I>да спи</I> <li>Cat: <I>dormir</I> <li>Dan: <I>at sove</I> <li>Dut: <I>slapen</I> <li>Eng: <I>to sleep</I> <li>Fin: <I>nukkumaan</I> <li>Fre: <I>dormir</I> <li>Ger: <I>schlafen</I> <li>Ita: <I>dormire</I> <li>Nep: <I>सुत्नु</I> <li>Nor: <I>å sove</I> <li>Pes: <I>خوابیدن</I> <li>Pnb: <I>سونا</I> <li>Pol: <I>spać</I> <li>Ron: <I>sã doarmă</I> <li>Rus: <I>спать</I> <li>Spa: <I>dormir</I> <li>Swe: <I>att sova</I> <li>Urd: <I>سونا</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>mkUtt</CODE></TD>
+<TD><A HREF="#CN" TITLE="CN - common noun (without determiner)">CN</A> <CODE>-&gt;</CODE> <A HREF="#Utt" TITLE="Utt - sentence, question, word...">Utt</A></TD>
+<TD><div class=reveal> <I>beer</I> <div class=popup> <ul> <li>API: <CODE>mkUtt (mkCN beer_N)</CODE> <li>Afr: <I>bier</I> <li>Bul: <I>бира</I> <li>Cat: <I>cervesa</I> <li>Dan: <I>øl</I> <li>Dut: <I>bier</I> <li>Eng: <I>beer</I> <li>Fin: <I>olut</I> <li>Fre: <I>bière</I> <li>Ger: <I>Bier</I> <li>Ita: <I>birra</I> <li>Nep: <I>बियर</I> <li>Nor: <I>øl</I> <li>Pes: <I>آبجو</I> <li>Pnb: <I>شراب</I> <li>Pol: <I>piwo</I> <li>Ron: <I>bere</I> <li>Rus: <I>пиво</I> <li>Spa: <I>cerveza</I> <li>Swe: <I>öl</I> <li>Urd: <I>بییر</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>mkUtt</CODE></TD>
+<TD><A HREF="#AP" TITLE="AP - adjectival phrase">AP</A> <CODE>-&gt;</CODE> <A HREF="#Utt" TITLE="Utt - sentence, question, word...">Utt</A></TD>
+<TD><div class=reveal> <I>good</I> <div class=popup> <ul> <li>API: <CODE>mkUtt (mkAP good_A)</CODE> <li>Afr: <I>goed</I> <li>Bul: <I>добър</I> <li>Cat: <I>bo</I> <li>Dan: <I>god</I> <li>Dut: <I>goed</I> <li>Eng: <I>good</I> <li>Fin: <I>hyvä</I> <li>Fre: <I>bon</I> <li>Ger: <I>gut</I> <li>Ita: <I>buono</I> <li>Nep: <I>राम्रो</I> <li>Nor: <I>god</I> <li>Pes: <I>خوب</I> <li>Pnb: <I>اچھا</I> <li>Pol: <I>dobry</I> <li>Ron: <I>bun</I> <li>Rus: <I>хорошее</I> <li>Spa: <I>bueno</I> <li>Swe: <I>god</I> <li>Urd: <I>اچھا</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>mkUtt</CODE></TD>
+<TD><A HREF="#Card" TITLE="Card - cardinal number">Card</A> <CODE>-&gt;</CODE> <A HREF="#Utt" TITLE="Utt - sentence, question, word...">Utt</A></TD>
+<TD><div class=reveal> <I>five</I> <div class=popup> <ul> <li>API: <CODE>mkUtt (mkCard (mkNumeral n5_Unit))</CODE> <li>Afr: <I>vyf</I> <li>Bul: <I>пет</I> <li>Cat: <I>cinc</I> <li>Dan: <I>fem</I> <li>Dut: <I>vijf</I> <li>Eng: <I>five</I> <li>Fin: <I>viisi</I> <li>Fre: <I>cinq</I> <li>Ger: <I>fünf</I> <li>Ita: <I>cinque</I> <li>Nep: <I>पाँच</I> <li>Nor: <I>fem</I> <li>Pes: <I>پنج</I> <li>Pnb: <I>پنج</I> <li>Pol: <I>pięć</I> <li>Ron: <I>cinci</I> <li>Rus: <I>пять</I> <li>Spa: <I>cinco</I> <li>Swe: <I>fem</I> <li>Urd: <I>پانچ</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>no_Utt</CODE></TD>
+<TD><A HREF="#Utt" TITLE="Utt - sentence, question, word...">Utt</A></TD>
+<TD><div class=reveal> <I>no</I> <div class=popup> <ul> <li>API: <CODE>no_Utt</CODE> <li>Afr: <I>neen</I> <li>Bul: <I>не</I> <li>Cat: <I>no</I> <li>Dan: <I>nej</I> <li>Dut: <I>neen</I> <li>Eng: <I>no</I> <li>Fin: <I>ei</I> <li>Fre: <I>non</I> <li>Ger: <I>nein</I> <li>Ita: <I>no</I> <li>Nep: <I>होईन</I> <li>Nor: <I>nei</I> <li>Pes: <I>نه</I> <li>Pnb: <I>نیں</I> <li>Pol: <I>nie</I> <li>Ron: <I>nu</I> <li>Rus: <I>Нет</I> <li>Spa: <I>no</I> <li>Swe: <I>nej</I> <li>Urd: <I>نہیں</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>yes_Utt</CODE></TD>
+<TD><A HREF="#Utt" TITLE="Utt - sentence, question, word...">Utt</A></TD>
+<TD><div class=reveal> <I>yes</I> <div class=popup> <ul> <li>API: <CODE>yes_Utt</CODE> <li>Afr: <I>ja</I> <li>Bul: <I>да</I> <li>Cat: <I>sí</I> <li>Dan: <I>ja</I> <li>Dut: <I>ja</I> <li>Eng: <I>yes</I> <li>Fin: <I>kyllä</I> <li>Fre: <I>oui</I> <li>Ger: <I>ja</I> <li>Ita: <I>sì</I> <li>Nep: <I>हजुर</I> <li>Nor: <I>ja</I> <li>Pes: <I>بله</I> <li>Pnb: <I>ہاں</I> <li>Pol: <I>tak</I> <li>Ron: <I>da</I> <li>Rus: <I>Да</I> <li>Spa: <I>sí</I> <li>Swe: <I>ja</I> <li>Urd: <I>ہاں</I> </ul> </div> </div></TD>
+</TR>
+</TABLE>
+
+<A NAME="V"></A>
+<H2>V - one-place verb</H2>
+
+<P>
+Lexical category, constructors given in
+<A HREF="#RParadigms">lexical paradigms</A>.
+</P>
+
+<A NAME="V2"></A>
+<H2>V2 - two-place verb</H2>
+
+<TABLE BORDER="1" CELLPADDING="4">
+<TR>
+<TH>Function</TH>
+<TH>Type</TH>
+<TH COLSPAN="2">Example</TH>
+</TR>
+<TR>
+<TD><CODE>have_V2</CODE></TD>
+<TD><A HREF="#V2" TITLE="V2 - two-place verb">V2</A></TD>
+<TD><div class=reveal> <I>to have it</I> <div class=popup> <ul> <li>API: <CODE>mkUtt (mkVP have_V2 it_NP)</CODE> <li>Afr: <I>dit het</I> <li>Bul: <I>да има него</I> <li>Cat: <I>tenir ho</I> <li>Dan: <I>at have det</I> <li>Dut: <I>het hebben</I> <li>Eng: <I>to have it</I> <li>Fin: <I>olemaan sen</I> <li>Fre: <I>l' avoir</I> <li>Ger: <I>es haben</I> <li>Ita: <I>avere lo</I> <li>Nep: <I>यो हुनु</I> <li>Nor: <I>å ha det</I> <li>Pes: <I>*</I> <li>Pnb: <I>اینوں راكھنا</I> <li>Pol: <I>mieć je</I> <li>Ron: <I>sã îl aibă</I> <li>Rus: <I>иметь его</I> <li>Spa: <I>tener lo</I> <li>Swe: <I>att ha det</I> <li>Urd: <I>اس ركھنا</I> </ul> </div> </div></TD>
+</TR>
+</TABLE>
+
+<A NAME="V2A"></A>
+<H2>V2A - verb with NP and AP complement</H2>
+
+<P>
+Lexical category, constructors given in
+<A HREF="#RParadigms">lexical paradigms</A>.
+</P>
+
+<A NAME="V2Q"></A>
+<H2>V2Q - verb with NP and Q complement</H2>
+
+<P>
+Lexical category, constructors given in
+<A HREF="#RParadigms">lexical paradigms</A>.
+</P>
+
+<A NAME="V2S"></A>
+<H2>V2S - verb with NP and S complement</H2>
+
+<P>
+Lexical category, constructors given in
+<A HREF="#RParadigms">lexical paradigms</A>.
+</P>
+
+<A NAME="V2V"></A>
+<H2>V2V - verb with NP and V complement</H2>
+
+<P>
+Lexical category, constructors given in
+<A HREF="#RParadigms">lexical paradigms</A>.
+</P>
+
+<A NAME="V3"></A>
+<H2>V3 - three-place verb</H2>
+
+<P>
+Lexical category, constructors given in
+<A HREF="#RParadigms">lexical paradigms</A>.
+</P>
+
+<A NAME="VA"></A>
+<H2>VA - adjective-complement verb</H2>
+
+<P>
+Lexical category, constructors given in
+<A HREF="#RParadigms">lexical paradigms</A>.
+</P>
+
+<A NAME="VP"></A>
+<H2>VP - verb phrase</H2>
+
+<TABLE BORDER="1" CELLPADDING="4">
+<TR>
+<TH>Function</TH>
+<TH>Type</TH>
+<TH COLSPAN="2">Example</TH>
+</TR>
+<TR>
+<TD><CODE>mkVP</CODE></TD>
+<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#VP" TITLE="VP - verb phrase">VP</A></TD>
+<TD><div class=reveal> <I>to sleep</I> <div class=popup> <ul> <li>API: <CODE>mkUtt (mkVP sleep_V)</CODE> <li>Afr: <I>slaap</I> <li>Bul: <I>да спи</I> <li>Cat: <I>dormir</I> <li>Dan: <I>at sove</I> <li>Dut: <I>slapen</I> <li>Eng: <I>to sleep</I> <li>Fin: <I>nukkumaan</I> <li>Fre: <I>dormir</I> <li>Ger: <I>schlafen</I> <li>Ita: <I>dormire</I> <li>Nep: <I>सुत्नु</I> <li>Nor: <I>å sove</I> <li>Pes: <I>خوابیدن</I> <li>Pnb: <I>سونا</I> <li>Pol: <I>spać</I> <li>Ron: <I>sã doarmă</I> <li>Rus: <I>спать</I> <li>Spa: <I>dormir</I> <li>Swe: <I>att sova</I> <li>Urd: <I>سونا</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>mkVP</CODE></TD>
+<TD><A HREF="#V2" TITLE="V2 - two-place verb">V2</A> <CODE>-&gt;</CODE> <A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A> <CODE>-&gt;</CODE> <A HREF="#VP" TITLE="VP - verb phrase">VP</A></TD>
+<TD><div class=reveal> <I>to love him</I> <div class=popup> <ul> <li>API: <CODE>mkUtt (mkVP love_V2 he_NP)</CODE> <li>Afr: <I>hom liefhet</I> <li>Bul: <I>да обича него</I> <li>Cat: <I>estimar el</I> <li>Dan: <I>at elske ham</I> <li>Dut: <I>hem liefhebben</I> <li>Eng: <I>to love him</I> <li>Fin: <I>rakastamaan häntä</I> <li>Fre: <I>l' aimer</I> <li>Ger: <I>ihn lieben</I> <li>Ita: <I>amare lo</I> <li>Nep: <I>उ लाई माया गर्नु</I> <li>Nor: <I>å elske ham</I> <li>Pes: <I>او را دوست داشتن</I> <li>Pnb: <I>اونوں پیار كرنا</I> <li>Pol: <I>kochać jego</I> <li>Ron: <I>sã îl iubească</I> <li>Rus: <I>любить его</I> <li>Spa: <I>amar lo</I> <li>Swe: <I>att älska honom</I> <li>Urd: <I>اس كو پیار كرنا</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>mkVP</CODE></TD>
+<TD><A HREF="#V3" TITLE="V3 - three-place verb">V3</A> <CODE>-&gt;</CODE> <A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A> <CODE>-&gt;</CODE> <A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A> <CODE>-&gt;</CODE> <A HREF="#VP" TITLE="VP - verb phrase">VP</A></TD>
+<TD><div class=reveal> <I>to send it to him</I> <div class=popup> <ul> <li>API: <CODE>mkUtt (mkVP send_V3 it_NP he_NP)</CODE> <li>Afr: <I>dit na hom stuur</I> <li>Bul: <I>да прати него до него</I> <li>Cat: <I>enviar ho li</I> <li>Dan: <I>at sende det til ham</I> <li>Dut: <I>het naar hem sturen</I> <li>Eng: <I>to send it to him</I> <li>Fin: <I>lähettämään sen hänelle</I> <li>Fre: <I>l' envoyer lui</I> <li>Ger: <I>es ihm schicken</I> <li>Ita: <I>mandare lo gli</I> <li>Nep: <I>यो उस्लाई लाई पठाउनु</I> <li>Nor: <I>å sende det til ham</I> <li>Pes: <I>آن را برای او فرستادن</I> <li>Pnb: <I>اینوں پیجنا اونوں</I> <li>Pol: <I>wysłać do niego je</I> <li>Ron: <I>sã i -l trimită</I> <li>Rus: <I>посылать нему его</I> <li>Spa: <I>mandar lo le</I> <li>Swe: <I>att skicka det till honom</I> <li>Urd: <I>اس كو بھیجنا اس كو</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>mkVP</CODE></TD>
+<TD><A HREF="#VV" TITLE="VV - verb-phrase-complement verb">VV</A> <CODE>-&gt;</CODE> <A HREF="#VP" TITLE="VP - verb phrase">VP</A> <CODE>-&gt;</CODE> <A HREF="#VP" TITLE="VP - verb phrase">VP</A></TD>
+<TD><div class=reveal> <I>to want to sleep</I> <div class=popup> <ul> <li>API: <CODE>mkUtt (mkVP want_VV (mkVP sleep_V))</CODE> <li>Afr: <I>slaap wil</I> <li>Bul: <I>да иска да спи</I> <li>Cat: <I>voler dormir</I> <li>Dan: <I>at ville sove</I> <li>Dut: <I>slapen willen</I> <li>Eng: <I>to want to sleep</I> <li>Fin: <I>tahtomaan nukkumaan</I> <li>Fre: <I>vouloir dormir</I> <li>Ger: <I>schlafen wollen</I> <li>Ita: <I>volere dormire</I> <li>Nep: <I>सुत्न चाहनु</I> <li>Nor: <I>å ville sove</I> <li>Pes: <I>خواستن بخوابد</I> <li>Pnb: <I>چانا سونا</I> <li>Pol: <I>zechcieć spać</I> <li>Ron: <I>sã vrea sã doarmă</I> <li>Rus: <I>хотеть спать</I> <li>Spa: <I>querer dormir</I> <li>Swe: <I>att vilja sova</I> <li>Urd: <I>چاہنا سونا</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>mkVP</CODE></TD>
+<TD><A HREF="#VS" TITLE="VS - sentence-complement verb">VS</A> <CODE>-&gt;</CODE> <A HREF="#S" TITLE="S - declarative sentence">S</A> <CODE>-&gt;</CODE> <A HREF="#VP" TITLE="VP - verb phrase">VP</A></TD>
+<TD><div class=reveal> <I>to know that she sleeps</I> <div class=popup> <ul> <li>API: <CODE>mkUtt (mkVP know_VS (mkS (mkCl she_NP sleep_V)))</CODE> <li>Afr: <I>dat sy slaap weet</I> <li>Bul: <I>да знае , че тя спи</I> <li>Cat: <I>saber que ella dorm</I> <li>Dan: <I>at vide at hun sover</I> <li>Dut: <I>dat ze slaapt weten</I> <li>Eng: <I>to know that she sleeps</I> <li>Fin: <I>tietämään että hän nukkuu</I> <li>Fre: <I>savoir qu' elle dort</I> <li>Ger: <I>daß sie schläft wissen</I> <li>Ita: <I>sapere che lei dorme</I> <li>Nep: <I>थाहा पाउनुकी उनी सुत्छिन्</I> <li>Nor: <I>å vite at hun sover</I> <li>Pes: <I>دانستن که او می خوابد</I> <li>Pnb: <I>جاننا</I> <li>Pol: <I>wiedzieć , że ona śpi</I> <li>Ron: <I>sã ştie cã ea doarme</I> <li>Rus: <I>*</I> <li>Spa: <I>saber que ella duerme</I> <li>Swe: <I>att veta att hon sover</I> <li>Urd: <I>جاننا كہ وہ سوتی ہے</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>mkVP</CODE></TD>
+<TD><A HREF="#VQ" TITLE="VQ - question-complement verb">VQ</A> <CODE>-&gt;</CODE> <A HREF="#QS" TITLE="QS - question">QS</A> <CODE>-&gt;</CODE> <A HREF="#VP" TITLE="VP - verb phrase">VP</A></TD>
+<TD><div class=reveal> <I>to wonder who sleeps</I> <div class=popup> <ul> <li>API: <CODE>mkUtt (mkVP wonder_VQ (mkQS (mkQCl who_IP sleep_V)))</CODE> <li>Afr: <I>hom wie slaap afvra</I> <li>Bul: <I>да се чуди кой спи</I> <li>Cat: <I>preguntar qui dorm</I> <li>Dan: <I>at undres hvem som sover</I> <li>Dut: <I>zich wie slaapt afvragen</I> <li>Eng: <I>to wonder who sleeps</I> <li>Fin: <I>ihmettelemään kuka nukkuu</I> <li>Fre: <I>étonner qui dort</I> <li>Ger: <I>sich wer schläft wundern</I> <li>Ita: <I>domandare chi dorme</I> <li>Nep: <I>अचम्म हुनुकी को सुत्छन्</I> <li>Nor: <I>å undre hvem som sover</I> <li>Pes: <I>*</I> <li>Pnb: <I>حیران ہونا</I> <li>Pol: <I>zastanowić się , kto śpi</I> <li>Ron: <I>sã se întrebe cine doarme</I> <li>Rus: <I>интересовать кто спдит</I> <li>Spa: <I>preguntar quién duerme</I> <li>Swe: <I>att undra vem som sover</I> <li>Urd: <I>حیران ہونا كہ كون سوتا ہے</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>mkVP</CODE></TD>
+<TD><A HREF="#VA" TITLE="VA - adjective-complement verb">VA</A> <CODE>-&gt;</CODE> <A HREF="#AP" TITLE="AP - adjectival phrase">AP</A> <CODE>-&gt;</CODE> <A HREF="#VP" TITLE="VP - verb phrase">VP</A></TD>
+<TD><div class=reveal> <I>to become red</I> <div class=popup> <ul> <li>API: <CODE>mkUtt (mkVP become_VA (mkAP red_A))</CODE> <li>Afr: <I>rooi word</I> <li>Bul: <I>да стане червено</I> <li>Cat: <I>tornar vermell</I> <li>Dan: <I>at blive rød</I> <li>Dut: <I>rood worden</I> <li>Eng: <I>to become red</I> <li>Fin: <I>tulemaan punaiseksi</I> <li>Fre: <I>devenir rouge</I> <li>Ger: <I>rot werden</I> <li>Ita: <I>diventare rossa</I> <li>Nep: <I>रातो हुनु</I> <li>Nor: <I>å bli rød</I> <li>Pes: <I>قرمز شدن</I> <li>Pnb: <I>بننا لال</I> <li>Pol: <I>stać się czerwony</I> <li>Ron: <I>sã devină roşu</I> <li>Rus: <I>стать</I> <li>Spa: <I>convertir roja</I> <li>Swe: <I>att bli röd</I> <li>Urd: <I>بننا لال</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>mkVP</CODE></TD>
+<TD><A HREF="#V2A" TITLE="V2A - verb with NP and AP complement">V2A</A> <CODE>-&gt;</CODE> <A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A> <CODE>-&gt;</CODE> <A HREF="#AP" TITLE="AP - adjectival phrase">AP</A> <CODE>-&gt;</CODE> <A HREF="#VP" TITLE="VP - verb phrase">VP</A></TD>
+<TD><div class=reveal> <I>to paint it red</I> <div class=popup> <ul> <li>API: <CODE>mkUtt (mkVP paint_V2A it_NP (mkAP red_A))</CODE> <li>Afr: <I>dit rooi skilder</I> <li>Bul: <I>да нарисува него червено</I> <li>Cat: <I>pintar ho en vermell</I> <li>Dan: <I>at male det rødt</I> <li>Dut: <I>het rood schilderen</I> <li>Eng: <I>to paint it red</I> <li>Fin: <I>maalaamaan sen punaiseksi</I> <li>Fre: <I>le peindre en rouge</I> <li>Ger: <I>es rot malen</I> <li>Ita: <I>dipingere lo rosso</I> <li>Nep: <I>यो लाई रातो रँग लागाउनु</I> <li>Nor: <I>å male det rødt</I> <li>Pes: <I>آن را قرمز رنگ کردن</I> <li>Pnb: <I>اینوں رنگ كرنا لال</I> <li>Pol: <I>pomalować je na czerwono</I> <li>Ron: <I>sã îl picteze roşu</I> <li>Rus: <I>рисовать красным его</I> <li>Spa: <I>pintar lo en rojo</I> <li>Swe: <I>att måla det rött</I> <li>Urd: <I>اس كو رنگ كرنا لال</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>mkVP</CODE></TD>
+<TD><A HREF="#V2S" TITLE="V2S - verb with NP and S complement">V2S</A> <CODE>-&gt;</CODE> <A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A> <CODE>-&gt;</CODE> <A HREF="#S" TITLE="S - declarative sentence">S</A> <CODE>-&gt;</CODE> <A HREF="#VP" TITLE="VP - verb phrase">VP</A></TD>
+<TD><div class=reveal> <I>to answer to him that she sleeps</I> <div class=popup> <ul> <li>API: <CODE>mkUtt (mkVP answer_V2S he_NP (mkS (mkCl she_NP sleep_V)))</CODE> <li>Afr: <I>hom dat sy slaap antwoord</I> <li>Bul: <I>да отговори му , че тя спи</I> <li>Cat: <I>respondre li que ella dorm</I> <li>Dan: <I>at svare til ham at hun sover</I> <li>Dut: <I>hem dat ze slaapt antwoorden</I> <li>Eng: <I>to answer to him that she sleeps</I> <li>Fin: <I>vastaamaan hänelle että hän nukkuu</I> <li>Fre: <I>répondre lui qu' elle dort</I> <li>Ger: <I>ihm daß sie schläft antworten</I> <li>Ita: <I>rispondere gli che lei dorme</I> <li>Nep: <I>उ लाई उत्तर दिनुकी उनी सुत्छिन्</I> <li>Nor: <I>å svare til ham at hun sover</I> <li>Pes: <I>به او جواب دادن که او می خوابد</I> <li>Pnb: <I>اونوں جواب دینا</I> <li>Pol: <I>odpowiedzieć jemu , że ona śpi</I> <li>Ron: <I>sã îi răspundă cã ea doarme</I> <li>Rus: <I>отвечать , что она спдит его</I> <li>Spa: <I>responder le que ella duerme</I> <li>Swe: <I>att svara till honom att hon sover</I> <li>Urd: <I>اس كو جواب دینا كہ وہ سوتی ہے</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>mkVP</CODE></TD>
+<TD><A HREF="#V2Q" TITLE="V2Q - verb with NP and Q complement">V2Q</A> <CODE>-&gt;</CODE> <A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A> <CODE>-&gt;</CODE> <A HREF="#QS" TITLE="QS - question">QS</A> <CODE>-&gt;</CODE> <A HREF="#VP" TITLE="VP - verb phrase">VP</A></TD>
+<TD><div class=reveal> <I>to ask him who sleeps</I> <div class=popup> <ul> <li>API: <CODE>mkUtt (mkVP ask_V2Q he_NP (mkQS (mkQCl who_IP sleep_V)))</CODE> <li>Afr: <I>hom wie slaap vra</I> <li>Bul: <I>да пита него кой спи</I> <li>Cat: <I>preguntar li qui dorm</I> <li>Dan: <I>at spørge ham hvem som sover</I> <li>Dut: <I>hem wie slaapt vragen</I> <li>Eng: <I>to ask him who sleeps</I> <li>Fin: <I>kysymään häneltä kuka nukkuu</I> <li>Fre: <I>demander lui qui dort</I> <li>Ger: <I>ihn wer schläft fragen</I> <li>Ita: <I>chiedere gli chi dorme</I> <li>Nep: <I>उ सँग सोध्नुकी को सुत्छन्</I> <li>Nor: <I>å spørre ham hvem som sover</I> <li>Pes: <I>از او پرسیدن چه کسی می خوابد</I> <li>Pnb: <I>اونوں پچھنا</I> <li>Pol: <I>spytać jego , kto śpi</I> <li>Ron: <I>sã îl întrebe cine doarme</I> <li>Rus: <I>спрашивать кто спдит его</I> <li>Spa: <I>preguntar le quién duerme</I> <li>Swe: <I>att fråga honom vem som sover</I> <li>Urd: <I>اس سے پوچھنا كہ كون سوتا ہے</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>mkVP</CODE></TD>
+<TD><A HREF="#V2V" TITLE="V2V - verb with NP and V complement">V2V</A> <CODE>-&gt;</CODE> <A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A> <CODE>-&gt;</CODE> <A HREF="#VP" TITLE="VP - verb phrase">VP</A> <CODE>-&gt;</CODE> <A HREF="#VP" TITLE="VP - verb phrase">VP</A></TD>
+<TD><div class=reveal> <I>to beg him to sleep</I> <div class=popup> <ul> <li>API: <CODE>mkUtt (mkVP beg_V2V he_NP (mkVP sleep_V))</CODE> <li>Afr: <I>hom te slaap smeek</I> <li>Bul: <I>да моли него да спи</I> <li>Cat: <I>demanar el a dormir</I> <li>Dan: <I>at bede ham at sove</I> <li>Dut: <I>hem te slapen smeken</I> <li>Eng: <I>to beg him to sleep</I> <li>Fin: <I>pyytämään häntä nukkuneelle</I> <li>Fre: <I>le demander à dormir</I> <li>Ger: <I>ihn zu schlafen bitten</I> <li>Ita: <I>pregare lo di dormire</I> <li>Nep: <I>उ लाई सुत्न आग्रह गर्नु</I> <li>Nor: <I>å be ham att sove</I> <li>Pes: <I>از او خواهش کردن بخوابد</I> <li>Pnb: <I>اونوں مانگنا سونا دی</I> <li>Pol: <I>*</I> <li>Ron: <I>sã îl roage sã doarmă</I> <li>Rus: <I>просить спать его</I> <li>Spa: <I>rogar lo a dormir</I> <li>Swe: <I>att be honom att sova</I> <li>Urd: <I>اس سے التجا كرنا سونے كی</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>mkVP</CODE></TD>
+<TD><A HREF="#A" TITLE="A - one-place adjective">A</A> <CODE>-&gt;</CODE> <A HREF="#VP" TITLE="VP - verb phrase">VP</A></TD>
+<TD><div class=reveal> <I>to be old</I> <div class=popup> <ul> <li>API: <CODE>mkUtt (mkVP old_A)</CODE> <li>Afr: <I>oud wees</I> <li>Bul: <I>да е старо</I> <li>Cat: <I>ser vell</I> <li>Dan: <I>at være gammel</I> <li>Dut: <I>oud zijn</I> <li>Eng: <I>to be old</I> <li>Fin: <I>olemaan vanha</I> <li>Fre: <I>être vieille</I> <li>Ger: <I>alt sein</I> <li>Ita: <I>essere vecchia</I> <li>Nep: <I>बुढो</I> <li>Nor: <I>å være gammel</I> <li>Pes: <I>پیر بودن</I> <li>Pnb: <I>بوڈا</I> <li>Pol: <I>być stary</I> <li>Ron: <I>sã fie vechi</I> <li>Rus: <I>быть старым</I> <li>Spa: <I>ser vieja</I> <li>Swe: <I>att vara gammal</I> <li>Urd: <I>بوڑھا</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>mkVP</CODE></TD>
+<TD><A HREF="#A" TITLE="A - one-place adjective">A</A> <CODE>-&gt;</CODE> <A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A> <CODE>-&gt;</CODE> <A HREF="#VP" TITLE="VP - verb phrase">VP</A></TD>
+<TD><div class=reveal> <I>to be older than he</I> <div class=popup> <ul> <li>API: <CODE>mkUtt (mkVP old_A he_NP)</CODE> <li>Afr: <I>ouer as hy wees</I> <li>Bul: <I>да е по - старо от него</I> <li>Cat: <I>ser més vell que ell</I> <li>Dan: <I>at være ældre end han</I> <li>Dut: <I>ouder dan hij zijn</I> <li>Eng: <I>to be older than he</I> <li>Fin: <I>olemaan vanhempi kuin hän</I> <li>Fre: <I>être plus vieille que lui</I> <li>Ger: <I>älter als er sein</I> <li>Ita: <I>essere più vecchia di lui</I> <li>Nep: <I>उ भन्दा बुढो</I> <li>Nor: <I>å være eldre enn han</I> <li>Pes: <I>پیر تر از او بودن</I> <li>Pnb: <I>اورے توں بوڈا</I> <li>Pol: <I>być starszy niż on</I> <li>Ron: <I>sã fie mai vechi decât el</I> <li>Rus: <I>быть старше него</I> <li>Spa: <I>ser más vieja que él</I> <li>Swe: <I>att vara äldre än han</I> <li>Urd: <I>اس سے بوڑھا</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>mkVP</CODE></TD>
+<TD><A HREF="#A2" TITLE="A2 - two-place adjective">A2</A> <CODE>-&gt;</CODE> <A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A> <CODE>-&gt;</CODE> <A HREF="#VP" TITLE="VP - verb phrase">VP</A></TD>
+<TD><div class=reveal> <I>to be married to him</I> <div class=popup> <ul> <li>API: <CODE>mkUtt (mkVP married_A2 he_NP)</CODE> <li>Afr: <I>getroud met hom wees</I> <li>Bul: <I>да е женено за него</I> <li>Cat: <I>ser casata a ell</I> <li>Dan: <I>at være gift med ham</I> <li>Dut: <I>getrouwd met hem zijn</I> <li>Eng: <I>to be married to him</I> <li>Fin: <I>olemaan avioitunut hänen kanssa</I> <li>Fre: <I>être mariée à lui</I> <li>Ger: <I>verheiratet mit ihm sein</I> <li>Ita: <I>essere sposata con lui</I> <li>Nep: <I>उ सँग विवाहित</I> <li>Nor: <I>å være gift med ham</I> <li>Pes: <I>او متأهل بودن</I> <li>Pnb: <I>*</I> <li>Pol: <I>być zaślubiony jemu</I> <li>Ron: <I>sã fie căsătorit cu el</I> <li>Rus: <I>быть замужем за им</I> <li>Spa: <I>ser casada a él</I> <li>Swe: <I>att vara gift med honom</I> <li>Urd: <I>اس سے [شادی كرنa]</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>mkVP</CODE></TD>
+<TD><A HREF="#AP" TITLE="AP - adjectival phrase">AP</A> <CODE>-&gt;</CODE> <A HREF="#VP" TITLE="VP - verb phrase">VP</A></TD>
+<TD><div class=reveal> <I>to be very old</I> <div class=popup> <ul> <li>API: <CODE>mkUtt (mkVP (mkAP very_AdA old_A))</CODE> <li>Afr: <I>baie oud wees</I> <li>Bul: <I>да е много старо</I> <li>Cat: <I>ser molt vell</I> <li>Dan: <I>at være meget gammel</I> <li>Dut: <I>erg oud zijn</I> <li>Eng: <I>to be very old</I> <li>Fin: <I>olemaan erittäin vanha</I> <li>Fre: <I>être très vieille</I> <li>Ger: <I>sehr alt sein</I> <li>Ita: <I>essere molto vecchia</I> <li>Nep: <I>धेरै बुढो</I> <li>Nor: <I>å være mye gammel</I> <li>Pes: <I>خیلی پیر بودن</I> <li>Pnb: <I>بہت بوڈا</I> <li>Pol: <I>być bardzo stary</I> <li>Ron: <I>sã fie foarte vechi</I> <li>Rus: <I>быть очень старым</I> <li>Spa: <I>ser muy vieja</I> <li>Swe: <I>att vara mycket gammal</I> <li>Urd: <I>بہت بوڑھا</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>mkVP</CODE></TD>
+<TD><A HREF="#N" TITLE="N - common noun">N</A> <CODE>-&gt;</CODE> <A HREF="#VP" TITLE="VP - verb phrase">VP</A></TD>
+<TD><div class=reveal> <I>to be a woman</I> <div class=popup> <ul> <li>API: <CODE>mkUtt (mkVP woman_N)</CODE> <li>Afr: <I>'n vrou wees</I> <li>Bul: <I>да е жена</I> <li>Cat: <I>ser dona</I> <li>Dan: <I>at være en kvinde</I> <li>Dut: <I>vrouw zijn</I> <li>Eng: <I>to be a woman</I> <li>Fin: <I>olemaan nainen</I> <li>Fre: <I>être femme</I> <li>Ger: <I>eine Frau sein</I> <li>Ita: <I>essere donna</I> <li>Nep: <I>आईमाई</I> <li>Nor: <I>å være ei kvinne</I> <li>Pes: <I>زن بودن</I> <li>Pnb: <I>زنانی</I> <li>Pol: <I>być kobieta</I> <li>Ron: <I>sã fie femeie</I> <li>Rus: <I>быть женщиной</I> <li>Spa: <I>ser mujer</I> <li>Swe: <I>att vara en kvinna</I> <li>Urd: <I>عورت</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>mkVP</CODE></TD>
+<TD><A HREF="#CN" TITLE="CN - common noun (without determiner)">CN</A> <CODE>-&gt;</CODE> <A HREF="#VP" TITLE="VP - verb phrase">VP</A></TD>
+<TD><div class=reveal> <I>to be an old woman</I> <div class=popup> <ul> <li>API: <CODE>mkUtt (mkVP (mkCN old_A woman_N))</CODE> <li>Afr: <I>'n oud vrou wees</I> <li>Bul: <I>да е стара жена</I> <li>Cat: <I>ser dona vell</I> <li>Dan: <I>at være en gammel kvinde</I> <li>Dut: <I>oude vrouw zijn</I> <li>Eng: <I>to be an old woman</I> <li>Fin: <I>olemaan vanha nainen</I> <li>Fre: <I>être vieille femme</I> <li>Ger: <I>eine alte Frau sein</I> <li>Ita: <I>essere vecchia donna</I> <li>Nep: <I>बुढी आईमाई</I> <li>Nor: <I>å være ei gammel kvinne</I> <li>Pes: <I>زن پیر بودن</I> <li>Pnb: <I>بوڈی زنانی</I> <li>Pol: <I>być stara kobieta</I> <li>Ron: <I>sã fie femeie veche</I> <li>Rus: <I>быть старой женщиной</I> <li>Spa: <I>ser vieja mujer</I> <li>Swe: <I>att vara en gammal kvinna</I> <li>Urd: <I>بوڑھی عورت</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>mkVP</CODE></TD>
+<TD><A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A> <CODE>-&gt;</CODE> <A HREF="#VP" TITLE="VP - verb phrase">VP</A></TD>
+<TD><div class=reveal> <I>to be the woman</I> <div class=popup> <ul> <li>API: <CODE>mkUtt (mkVP (mkNP the_Det woman_N))</CODE> <li>Afr: <I>die vrou wees</I> <li>Bul: <I>да е жената</I> <li>Cat: <I>ser la dona</I> <li>Dan: <I>at være kvinden</I> <li>Dut: <I>de vrouw zijn</I> <li>Eng: <I>to be the woman</I> <li>Fin: <I>olemaan nainen</I> <li>Fre: <I>être la femme</I> <li>Ger: <I>die Frau sein</I> <li>Ita: <I>essere la donna</I> <li>Nep: <I>आईमाई</I> <li>Nor: <I>å være kvinna</I> <li>Pes: <I>زن بودن</I> <li>Pnb: <I>زنانی</I> <li>Pol: <I>być kobietą</I> <li>Ron: <I>sã fie femeia</I> <li>Rus: <I>быть женщиной</I> <li>Spa: <I>ser la mujer</I> <li>Swe: <I>att vara kvinnan</I> <li>Urd: <I>عورت</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>mkVP</CODE></TD>
+<TD><A HREF="#Adv" TITLE="Adv - verb-phrase-modifying adverb">Adv</A> <CODE>-&gt;</CODE> <A HREF="#VP" TITLE="VP - verb phrase">VP</A></TD>
+<TD><div class=reveal> <I>to be here</I> <div class=popup> <ul> <li>API: <CODE>mkUtt (mkVP here_Adv)</CODE> <li>Afr: <I>hier wees</I> <li>Bul: <I>да е тук</I> <li>Cat: <I>ser aquí</I> <li>Dan: <I>at være her</I> <li>Dut: <I>hier zijn</I> <li>Eng: <I>to be here</I> <li>Fin: <I>olemaan täällä</I> <li>Fre: <I>être ici</I> <li>Ger: <I>hier sein</I> <li>Ita: <I>essere quà</I> <li>Nep: <I>यहाँ</I> <li>Nor: <I>å være her</I> <li>Pes: <I>اینجا بودن</I> <li>Pnb: <I>ایتھے</I> <li>Pol: <I>być tutaj</I> <li>Ron: <I>sã fie aici</I> <li>Rus: <I>быть здесь</I> <li>Spa: <I>ser aquí</I> <li>Swe: <I>att vara här</I> <li>Urd: <I>یہاں</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>mkVP</CODE></TD>
+<TD><A HREF="#VP" TITLE="VP - verb phrase">VP</A> <CODE>-&gt;</CODE> <A HREF="#Adv" TITLE="Adv - verb-phrase-modifying adverb">Adv</A> <CODE>-&gt;</CODE> <A HREF="#VP" TITLE="VP - verb phrase">VP</A></TD>
+<TD><div class=reveal> <I>to sleep here</I> <div class=popup> <ul> <li>API: <CODE>mkUtt (mkVP (mkVP sleep_V) here_Adv)</CODE> <li>Afr: <I>hier slaap</I> <li>Bul: <I>да спи тук</I> <li>Cat: <I>dormir aquí</I> <li>Dan: <I>at sove her</I> <li>Dut: <I>hier slapen</I> <li>Eng: <I>to sleep here</I> <li>Fin: <I>nukkumaan</I> <li>Fre: <I>dormir ici</I> <li>Ger: <I>hier schlafen</I> <li>Ita: <I>dormire quà</I> <li>Nep: <I>यहाँ सुत्नु</I> <li>Nor: <I>å sove her</I> <li>Pes: <I>اینجا خوابیدن</I> <li>Pnb: <I>سونا ایتھے</I> <li>Pol: <I>tutaj spać</I> <li>Ron: <I>sã doarmă aici</I> <li>Rus: <I>спать</I> <li>Spa: <I>dormir aquí</I> <li>Swe: <I>att sova här</I> <li>Urd: <I>سونا یہاں</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>mkVP</CODE></TD>
+<TD><A HREF="#AdV" TITLE="Adv - verb-phrase-modifying adverb">AdV</A> <CODE>-&gt;</CODE> <A HREF="#VP" TITLE="VP - verb phrase">VP</A> <CODE>-&gt;</CODE> <A HREF="#VP" TITLE="VP - verb phrase">VP</A></TD>
+<TD><div class=reveal> <I>always to sleep</I> <div class=popup> <ul> <li>API: <CODE>mkUtt (mkVP always_AdV (mkVP sleep_V))</CODE> <li>Afr: <I>altyd slaap</I> <li>Bul: <I>винаги да спи</I> <li>Cat: <I>dormir sempre</I> <li>Dan: <I>at altid sove</I> <li>Dut: <I>altijd slapen</I> <li>Eng: <I>always to sleep</I> <li>Fin: <I>nukkumaan</I> <li>Fre: <I>dormir toujours</I> <li>Ger: <I>immer schlafen</I> <li>Ita: <I>dormire sempre</I> <li>Nep: <I>सधैँ सुत्नु</I> <li>Nor: <I>å altid sove</I> <li>Pes: <I>همیشه خوابیدن</I> <li>Pnb: <I>سونا</I> <li>Pol: <I>zawsze spać</I> <li>Ron: <I>sã doarmă mereu</I> <li>Rus: <I>спать</I> <li>Spa: <I>dormir siempre</I> <li>Swe: <I>att alltid sova</I> <li>Urd: <I>ہمیشہ سونا</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>mkVP</CODE></TD>
+<TD><A HREF="#VPSlash" TITLE="VPSlash - verb phrase missing complement">VPSlash</A> <CODE>-&gt;</CODE> <A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A> <CODE>-&gt;</CODE> <A HREF="#VP" TITLE="VP - verb phrase">VP</A></TD>
+<TD><div class=reveal> <I>to paint it black</I> <div class=popup> <ul> <li>API: <CODE>mkUtt (mkVP (mkVPSlash paint_V2A (mkAP black_A)) it_NP)</CODE> <li>Afr: <I>dit swart skilder</I> <li>Bul: <I>да нарисува него черно</I> <li>Cat: <I>pintar ho en negre</I> <li>Dan: <I>at male det sort</I> <li>Dut: <I>het zwart schilderen</I> <li>Eng: <I>to paint it black</I> <li>Fin: <I>maalaamaan sen mustaksi</I> <li>Fre: <I>le peindre en noir</I> <li>Ger: <I>es schwarz malen</I> <li>Ita: <I>dipingere lo nero</I> <li>Nep: <I>यो लाई कालो रँग लागाउनु</I> <li>Nor: <I>å male det svart</I> <li>Pes: <I>آن را سیاه رنگ کردن</I> <li>Pnb: <I>اینوں رنگ كرنا كالا</I> <li>Pol: <I>pomalować je na czarno</I> <li>Ron: <I>sã îl picteze negru</I> <li>Rus: <I>рисовать чёрным его</I> <li>Spa: <I>pintar lo en negro</I> <li>Swe: <I>att måla det svart</I> <li>Urd: <I>اس كو رنگ كرنا كالا</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>mkVP</CODE></TD>
+<TD><A HREF="#VPSlash" TITLE="VPSlash - verb phrase missing complement">VPSlash</A> <CODE>-&gt;</CODE> <A HREF="#VP" TITLE="VP - verb phrase">VP</A></TD>
+<TD><div class=reveal> <I>to paint itself black</I> <div class=popup> <ul> <li>API: <CODE>mkUtt (reflexiveVP (mkVPSlash paint_V2A (mkAP black_A)))</CODE> <li>Afr: <I>hom swart skilder</I> <li>Bul: <I>да се нарисува черно</I> <li>Cat: <I>pintar en negre</I> <li>Dan: <I>at male sig sort</I> <li>Dut: <I>zich zwart schilderen</I> <li>Eng: <I>to paint itself black</I> <li>Fin: <I>maalaamaan itsensä mustaksi</I> <li>Fre: <I>peindre en noir</I> <li>Ger: <I>sich schwarz malen</I> <li>Ita: <I>dipingere nero</I> <li>Nep: <I>आफैं लाई कालो रँग लागाउनु</I> <li>Nor: <I>å male seg svart</I> <li>Pes: <I>خودش را سیاه رنگ کردن</I> <li>Pnb: <I>رنگ كرنا خود نوں كالا</I> <li>Pol: <I>pomalować siebie na czarno</I> <li>Ron: <I>sã se picteze negru</I> <li>Rus: <I>рисовать чёрным себя</I> <li>Spa: <I>pintar en negro</I> <li>Swe: <I>att måla sig svart</I> <li>Urd: <I>رنگ كرنا خود كو كالا</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>mkVP</CODE></TD>
+<TD><A HREF="#Comp" TITLE="Comp - complement of copula, such as AP">Comp</A> <CODE>-&gt;</CODE> <A HREF="#VP" TITLE="VP - verb phrase">VP</A></TD>
+<TD><div class=reveal> <I>to be warm</I> <div class=popup> <ul> <li>API: <CODE>mkUtt (mkVP (mkComp (mkAP warm_A)))</CODE> <li>Afr: <I>warm wees</I> <li>Bul: <I>да е топло</I> <li>Cat: <I>ser tèbia</I> <li>Dan: <I>at være varm</I> <li>Dut: <I>warm zijn</I> <li>Eng: <I>to be warm</I> <li>Fin: <I>olemaan lämmin</I> <li>Fre: <I>être chaude</I> <li>Ger: <I>warm sein</I> <li>Ita: <I>essere calda</I> <li>Nep: <I>तातो</I> <li>Nor: <I>å være varm</I> <li>Pes: <I>گرم بودن</I> <li>Pnb: <I>تتا</I> <li>Pol: <I>być ciepły</I> <li>Ron: <I>sã fie călduţ</I> <li>Rus: <I>быть тёплым</I> <li>Spa: <I>ser tibia</I> <li>Swe: <I>att vara varm</I> <li>Urd: <I>گرم</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>passiveVP</CODE></TD>
+<TD><A HREF="#V2" TITLE="V2 - two-place verb">V2</A> <CODE>-&gt;</CODE> <A HREF="#VP" TITLE="VP - verb phrase">VP</A></TD>
+<TD><div class=reveal> <I>to be loved</I> <div class=popup> <ul> <li>API: <CODE>mkUtt (passiveVP love_V2)</CODE> <li>Afr: <I>liefgehad word</I> <li>Bul: <I>да е обичано</I> <li>Cat: <I>ser estimada</I> <li>Dan: <I>at blive elsket</I> <li>Dut: <I>liefgehad worden</I> <li>Eng: <I>to be loved</I> <li>Fin: <I>rakastaneelle</I> <li>Fre: <I>être aimée</I> <li>Ger: <I>geliebt werden</I> <li>Ita: <I>venire amata</I> <li>Nep: <I>माया गर्नु</I> <li>Nor: <I>å bli elska</I> <li>Pes: <I>دوست داشتن</I> <li>Pnb: <I>پیار كرنا</I> <li>Pol: <I>być kochany</I> <li>Ron: <I>sã fie iubit</I> <li>Rus: <I>любиться</I> <li>Spa: <I>ser amada</I> <li>Swe: <I>att bli älskad</I> <li>Urd: <I>پیار كرنا</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>passiveVP</CODE></TD>
+<TD><A HREF="#V2" TITLE="V2 - two-place verb">V2</A> <CODE>-&gt;</CODE> <A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A> <CODE>-&gt;</CODE> <A HREF="#VP" TITLE="VP - verb phrase">VP</A></TD>
+<TD><div class=reveal> <I>to be loved by her</I> <div class=popup> <ul> <li>API: <CODE>mkUtt (passiveVP love_V2 she_NP)</CODE> <li>Afr: <I>deur haar liefgehad word</I> <li>Bul: <I>да е обичано чрез нея</I> <li>Cat: <I>ser estimada per ella</I> <li>Dan: <I>at blive elsket af hende</I> <li>Dut: <I>door haar liefgehad worden</I> <li>Eng: <I>to be loved by her</I> <li>Fin: <I>rakastaneelle</I> <li>Fre: <I>être aimée par elle</I> <li>Ger: <I>durch sie geliebt werden</I> <li>Ita: <I>venire amata da lei</I> <li>Nep: <I>उनी लाइ माया गर्नु</I> <li>Nor: <I>å bli elska av henne</I> <li>Pes: <I>توسط او دوست داشتن</I> <li>Pnb: <I>پیار كرنا اونوں</I> <li>Pol: <I>przez nią być kochany</I> <li>Ron: <I>sã fie iubit de către ea</I> <li>Rus: <I>любиться</I> <li>Spa: <I>ser amada por ella</I> <li>Swe: <I>att bli älskad av henne</I> <li>Urd: <I>پیار كرنا اس سے</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>progressiveVP</CODE></TD>
+<TD><A HREF="#VP" TITLE="VP - verb phrase">VP</A> <CODE>-&gt;</CODE> <A HREF="#VP" TITLE="VP - verb phrase">VP</A></TD>
+<TD><div class=reveal> <I>to be sleeping</I> <div class=popup> <ul> <li>API: <CODE>mkUtt (progressiveVP (mkVP sleep_V))</CODE> <li>Afr: <I>aan die slaap wees</I> <li>Bul: <I>да спи</I> <li>Cat: <I>estar dormint</I> <li>Dan: <I>at være ved å sove</I> <li>Dut: <I>aan het slapen zijn</I> <li>Eng: <I>to be sleeping</I> <li>Fin: <I>olemaan nukkumalla</I> <li>Fre: <I>être en train de dormir</I> <li>Ger: <I>eben schlafen</I> <li>Ita: <I>stare dormendo</I> <li>Nep: <I>सुतदै</I> <li>Nor: <I>å være ved å sove</I> <li>Pes: <I>خوابیدن</I> <li>Pnb: <I>سونا</I> <li>Pol: <I>spać</I> <li>Ron: <I>sã doarmă</I> <li>Rus: <I>спать</I> <li>Spa: <I>estar durmiendo</I> <li>Swe: <I>att hålla på att sova</I> <li>Urd: <I>سونا</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>reflexiveVP</CODE></TD>
+<TD><A HREF="#V2" TITLE="V2 - two-place verb">V2</A> <CODE>-&gt;</CODE> <A HREF="#VP" TITLE="VP - verb phrase">VP</A></TD>
+<TD><div class=reveal> <I>to love itself</I> <div class=popup> <ul> <li>API: <CODE>mkUtt (reflexiveVP love_V2)</CODE> <li>Afr: <I>hom liefhet</I> <li>Bul: <I>да се обича</I> <li>Cat: <I>estimar</I> <li>Dan: <I>at elske sig</I> <li>Dut: <I>zich liefhebben</I> <li>Eng: <I>to love itself</I> <li>Fin: <I>rakastamaan itseänsä</I> <li>Fre: <I>aimer</I> <li>Ger: <I>sich lieben</I> <li>Ita: <I>amare</I> <li>Nep: <I>आफैं लाई माया गर्नु</I> <li>Nor: <I>å elske seg</I> <li>Pes: <I>خودش را دوست داشتن</I> <li>Pnb: <I>پیار كرنا خود نوں</I> <li>Pol: <I>kochać siebie</I> <li>Ron: <I>sã se iubească</I> <li>Rus: <I>любить себя</I> <li>Spa: <I>amar</I> <li>Swe: <I>att älska sig</I> <li>Urd: <I>پیار كرنا خود كو</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>reflexiveVP</CODE></TD>
+<TD><A HREF="#VPSlash" TITLE="VPSlash - verb phrase missing complement">VPSlash</A> <CODE>-&gt;</CODE> <A HREF="#VP" TITLE="VP - verb phrase">VP</A></TD>
+<TD><I>paint itself black</I></TD>
+</TR>
+</TABLE>
+
+<A NAME="VPSlash"></A>
+<H2>VPSlash - verb phrase missing complement</H2>
+
+<TABLE BORDER="1" CELLPADDING="4">
+<TR>
+<TH>Function</TH>
+<TH>Type</TH>
+<TH COLSPAN="2">Example</TH>
+</TR>
+<TR>
+<TD><CODE>mkVPSlash</CODE></TD>
+<TD><A HREF="#V2" TITLE="V2 - two-place verb">V2</A> <CODE>-&gt;</CODE> <A HREF="#VPSlash" TITLE="VPSlash - verb phrase missing complement">VPSlash</A></TD>
+<TD><div class=reveal> <I>whom does she see</I> <div class=popup> <ul> <li>API: <CODE>mkQCl who_IP (mkClSlash she_NP (mkVPSlash see_V2))</CODE> <li>Afr: <I>wie sien sy</I> <li>Bul: <I>кого вижда тя</I> <li>Cat: <I>qui veu ella</I> <li>Dan: <I>hvem ser hun</I> <li>Dut: <I>wie zit ze</I> <li>Eng: <I>whom does she see</I> <li>Fin: <I>kenet hän näkee</I> <li>Fre: <I>qui voit elle</I> <li>Ger: <I>wen sieht sie</I> <li>Ita: <I>chi vede lei</I> <li>Nep: <I>कासलाई उनी हेर्छिन्</I> <li>Nor: <I>hvem ser hun</I> <li>Pes: <I>چه کسی را او می بیند</I> <li>Pnb: <I>كون او ویكھدی اے</I> <li>Pol: <I>kogo widzi ona</I> <li>Ron: <I>pe cine vede ea</I> <li>Rus: <I>кого она видит</I> <li>Spa: <I>quién ve ella</I> <li>Swe: <I>vem ser hon</I> <li>Urd: <I>كون وہ دیكھتی ہے</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>mkVPSlash</CODE></TD>
+<TD><A HREF="#V3" TITLE="V3 - three-place verb">V3</A> <CODE>-&gt;</CODE> <A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A> <CODE>-&gt;</CODE> <A HREF="#VPSlash" TITLE="VPSlash - verb phrase missing complement">VPSlash</A></TD>
+<TD><div class=reveal> <I>to whom does she send it</I> <div class=popup> <ul> <li>API: <CODE>mkQCl who_IP (mkClSlash she_NP (mkVPSlash send_V3 it_NP))</CODE> <li>Afr: <I>na wie stuur sy dit</I> <li>Bul: <I>до кого праща него тя</I> <li>Cat: <I>a qui ho envia ella</I> <li>Dan: <I>til hvem sender hun det</I> <li>Dut: <I>naar wie stuurt ze het</I> <li>Eng: <I>to whom does she send it</I> <li>Fin: <I>kenelle hän lähettää sen</I> <li>Fre: <I>à qui l' envoie elle</I> <li>Ger: <I>wem schickt sie es</I> <li>Ita: <I>a chi lo manda lei</I> <li>Nep: <I>कासलाई उनी यसलाई लाई पठाउँछिन्</I> <li>Nor: <I>til hvem sender hun det</I> <li>Pes: <I>چه کسی برای او آن را می فرستد</I> <li>Pnb: <I>كون او اینوں پیجدی اے</I> <li>Pol: <I>do kogo ona wysyła je</I> <li>Ron: <I>cui îl trimite ea</I> <li>Rus: <I>кому она посылает его</I> <li>Spa: <I>a quién lo manda ella</I> <li>Swe: <I>till vem skickar hon det</I> <li>Urd: <I>كون وہ اس كو بھیجتی ہے</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>mkVPSlash</CODE></TD>
+<TD><A HREF="#V2A" TITLE="V2A - verb with NP and AP complement">V2A</A> <CODE>-&gt;</CODE> <A HREF="#AP" TITLE="AP - adjectival phrase">AP</A> <CODE>-&gt;</CODE> <A HREF="#VPSlash" TITLE="VPSlash - verb phrase missing complement">VPSlash</A></TD>
+<TD><div class=reveal> <I>whom does she paint red</I> <div class=popup> <ul> <li>API: <CODE>mkQCl who_IP (mkClSlash she_NP (mkVPSlash paint_V2A (mkAP red_A)))</CODE> <li>Afr: <I>wie skilder sy rooi</I> <li>Bul: <I>кого рисува червен тя</I> <li>Cat: <I>qui pinta ella en vermell</I> <li>Dan: <I>hvem maler hun rød</I> <li>Dut: <I>wie schildeert ze rood</I> <li>Eng: <I>whom does she paint red</I> <li>Fin: <I>kenet hän maalaa punaiseksi</I> <li>Fre: <I>qui peint elle en rouge</I> <li>Ger: <I>wen malt sie rot</I> <li>Ita: <I>chi dipinge lei rosso</I> <li>Nep: <I>कासलाई उनी रातो रँग लागाउँछिन्</I> <li>Nor: <I>hvem maler hun rød</I> <li>Pes: <I>چه کسی را او قرمز رنگ می کند</I> <li>Pnb: <I>كون او لال رنگ كردی اے</I> <li>Pol: <I>kogo ona maluje na czerwono</I> <li>Ron: <I>pe cine pictează ea roşu</I> <li>Rus: <I>кого она рисует красным</I> <li>Spa: <I>quién pinta ella en rojo</I> <li>Swe: <I>vem målar hon röd</I> <li>Urd: <I>كون وہ لال رنگ كرتی ہے</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>mkVPSlash</CODE></TD>
+<TD><A HREF="#V2Q" TITLE="V2Q - verb with NP and Q complement">V2Q</A> <CODE>-&gt;</CODE> <A HREF="#QS" TITLE="QS - question">QS</A> <CODE>-&gt;</CODE> <A HREF="#VPSlash" TITLE="VPSlash - verb phrase missing complement">VPSlash</A></TD>
+<TD><div class=reveal> <I>atomic term where_Idv</I> <div class=popup> <ul> <li>API: <CODE>mkQCl who_IP (mkClSlash she_NP (mkVPSlash ask_V2Q (mkQS (mkQCl where_Idv (mkCl i_NP sleep_V)))))</CODE> <li>Afr: <I>*</I> <li>Bul: <I>*</I> <li>Cat: <I>*</I> <li>Dan: <I>*</I> <li>Dut: <I>*</I> <li>Eng: <I>*</I> <li>Fin: <I>*</I> <li>Fre: <I>*</I> <li>Ger: <I>*</I> <li>Ita: <I>*</I> <li>Nep: <I>*</I> <li>Nor: <I>*</I> <li>Pes: <I>*</I> <li>Pnb: <I>*</I> <li>Pol: <I>*</I> <li>Ron: <I>*</I> <li>Rus: <I>*</I> <li>Spa: <I>*</I> <li>Swe: <I>*</I> <li>Urd: <I>*</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>mkVPSlash</CODE></TD>
+<TD><A HREF="#V2S" TITLE="V2S - verb with NP and S complement">V2S</A> <CODE>-&gt;</CODE> <A HREF="#S" TITLE="S - declarative sentence">S</A> <CODE>-&gt;</CODE> <A HREF="#VPSlash" TITLE="VPSlash - verb phrase missing complement">VPSlash</A></TD>
+<TD><div class=reveal> <I>to whom does she answer that I sleep</I> <div class=popup> <ul> <li>API: <CODE>mkQCl who_IP (mkClSlash she_NP (mkVPSlash answer_V2S (mkS (mkCl i_NP sleep_V))))</CODE> <li>Afr: <I>wie antwoord sy dat ek slaap</I> <li>Bul: <I>на на кого отговаря , че аз спя тя</I> <li>Cat: <I>a qui respon ella que jo dormo</I> <li>Dan: <I>til hvem svarer hun at jeg sover</I> <li>Dut: <I>wie antwoordt ze dat ik slaap</I> <li>Eng: <I>to whom does she answer that I sleep</I> <li>Fin: <I>kenelle hän vastaa että minä nukun</I> <li>Fre: <I>à qui répond elle que je dors</I> <li>Ger: <I>wem antwortet sie daß ich schlafe</I> <li>Ita: <I>a chi risponde lei che io dormo</I> <li>Nep: <I>कासलाई उनी उत्तर दिन्छिन्की म सुत्छु</I> <li>Nor: <I>til hvem svarer hun at jeg sover</I> <li>Pes: <I>به چه کسی او جواب می دهد که من می خوابم</I> <li>Pnb: <I>كون او جواب دیندی اے كہ میں سوندا واں</I> <li>Pol: <I>komu ona odpowiada , że ja śpię</I> <li>Ron: <I>cui răspunde ea cã eu dorm</I> <li>Rus: <I>кого она отвечает , что я сплю</I> <li>Spa: <I>a quién responde ella que yo duermo</I> <li>Swe: <I>till vem svarar hon att jag sover</I> <li>Urd: <I>كون وہ جواب دیتی ہے كہ میں سوتا ہوں</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>mkVPSlash</CODE></TD>
+<TD><A HREF="#V2V" TITLE="V2V - verb with NP and V complement">V2V</A> <CODE>-&gt;</CODE> <A HREF="#VP" TITLE="VP - verb phrase">VP</A> <CODE>-&gt;</CODE> <A HREF="#VPSlash" TITLE="VPSlash - verb phrase missing complement">VPSlash</A></TD>
+<TD><div class=reveal> <I>whom does she beg to sleep</I> <div class=popup> <ul> <li>API: <CODE>mkQCl who_IP (mkClSlash she_NP (mkVPSlash beg_V2V (mkVP sleep_V)))</CODE> <li>Afr: <I>wie smeek sy te slaap</I> <li>Bul: <I>кого моли да спи тя</I> <li>Cat: <I>qui demana ella a dormir</I> <li>Dan: <I>hvem beder hun at sove</I> <li>Dut: <I>wie smeekt ze te slapen</I> <li>Eng: <I>whom does she beg to sleep</I> <li>Fin: <I>ketä hän pyytää nukkuneelle</I> <li>Fre: <I>qui demande elle à dormir</I> <li>Ger: <I>wen bittet sie zu schlafen</I> <li>Ita: <I>chi prega lei di dormire</I> <li>Nep: <I>कासलाई उनी सुत्न आग्रह गर्छिन्</I> <li>Nor: <I>hvem ber hun att sove</I> <li>Pes: <I>از چه کسی او خواهش می کند بخوابد</I> <li>Pnb: <I>كون او سونا دی مانگدی اے</I> <li>Pol: <I>*</I> <li>Ron: <I>pe cine roagă ea sã doarmă</I> <li>Rus: <I>кого она просит спать</I> <li>Spa: <I>quién roga ella a dormir</I> <li>Swe: <I>vem ber hon att sova</I> <li>Urd: <I>كون وہ سونے كی التجا كرتی ہے</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>mkVPSlash</CODE></TD>
+<TD><A HREF="#VV" TITLE="VV - verb-phrase-complement verb">VV</A> <CODE>-&gt;</CODE> <A HREF="#VPSlash" TITLE="VPSlash - verb phrase missing complement">VPSlash</A> <CODE>-&gt;</CODE> <A HREF="#VPSlash" TITLE="VPSlash - verb phrase missing complement">VPSlash</A></TD>
+<TD><div class=reveal> <I>whom does she want to see</I> <div class=popup> <ul> <li>API: <CODE>mkQCl who_IP (mkClSlash she_NP (mkVPSlash want_VV (mkVPSlash see_V2)))</CODE> <li>Afr: <I>wie wil sy sien</I> <li>Bul: <I>кого иска да види тя</I> <li>Cat: <I>qui vol ella veure</I> <li>Dan: <I>hvem vil hun se</I> <li>Dut: <I>wie wil ze zien</I> <li>Eng: <I>whom does she want to see</I> <li>Fin: <I>kenet hän tahtoo näkemään</I> <li>Fre: <I>qui veut elle voir</I> <li>Ger: <I>wen will sie sehen</I> <li>Ita: <I>chi vuole lei vedere</I> <li>Nep: <I>कासलाई उनी हेर्न चाहन्छिन्</I> <li>Nor: <I>hvem vil hun se</I> <li>Pes: <I>چه کسی را او می خواهد ببیند</I> <li>Pnb: <I>كون او ویكھنا چاندی اے</I> <li>Pol: <I>kogo ona chce widzieć</I> <li>Ron: <I>pe cine vrea ea sã vadă</I> <li>Rus: <I>кого она хочет видеть</I> <li>Spa: <I>quién quiere ella ver</I> <li>Swe: <I>vem vill hon se</I> <li>Urd: <I>كون وہ دیكھنا چاہتی ہے</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>mkVPSlash</CODE></TD>
+<TD><A HREF="#V2V" TITLE="V2V - verb with NP and V complement">V2V</A> <CODE>-&gt;</CODE> <A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A> <CODE>-&gt;</CODE> <A HREF="#VPSlash" TITLE="VPSlash - verb phrase missing complement">VPSlash</A> <CODE>-&gt;</CODE> <A HREF="#VPSlash" TITLE="VPSlash - verb phrase missing complement">VPSlash</A></TD>
+<TD><div class=reveal> <I>whom does she beg me to see</I> <div class=popup> <ul> <li>API: <CODE>mkQCl who_IP (mkClSlash she_NP (mkVPSlash beg_V2V i_NP (mkVPSlash see_V2)))</CODE> <li>Afr: <I>wie smeek sy my te sien</I> <li>Bul: <I>кого моли мен да видя тя</I> <li>Cat: <I>qui em demana ella a veure</I> <li>Dan: <I>hvem beder hun mig at se</I> <li>Dut: <I>wie smeekt ze me te zien</I> <li>Eng: <I>whom does she beg me to see</I> <li>Fin: <I>kenet hän pyytää minua nähneelle</I> <li>Fre: <I>qui me demande elle à voir</I> <li>Ger: <I>wen bittet sie mich zu sehen</I> <li>Ita: <I>chi mi prega lei di vedere</I> <li>Nep: <I>कासलाई उनी म लाई हेर्न आग्रह गर्छिन्</I> <li>Nor: <I>hvem ber hun meg att se</I> <li>Pes: <I>چه کسی را او از من خواهش می کند ببیند</I> <li>Pnb: <I>كون او مینوں سے ویكھنا مانگدی اے</I> <li>Pol: <I>*</I> <li>Ron: <I>pe cine mă roagă ea sã văd</I> <li>Rus: <I>кого она просит меня видеть</I> <li>Spa: <I>quién me roga ella a ver</I> <li>Swe: <I>vem ber hon mig att se</I> <li>Urd: <I>كون وہ مجھ سے دیكھنا التجا كرتی ہے</I> </ul> </div> </div></TD>
+</TR>
+</TABLE>
+
+<A NAME="VQ"></A>
+<H2>VQ - question-complement verb</H2>
+
+<P>
+Lexical category, constructors given in
+<A HREF="#RParadigms">lexical paradigms</A>.
+</P>
+
+<A NAME="VS"></A>
+<H2>VS - sentence-complement verb</H2>
+
+<P>
+Lexical category, constructors given in
+<A HREF="#RParadigms">lexical paradigms</A>.
+</P>
+
+<A NAME="VV"></A>
+<H2>VV - verb-phrase-complement verb</H2>
+
+<TABLE BORDER="1" CELLPADDING="4">
+<TR>
+<TH>Function</TH>
+<TH>Type</TH>
+<TH COLSPAN="2">Example</TH>
+</TR>
+<TR>
+<TD><CODE>can8know_VV</CODE></TD>
+<TD><A HREF="#VV" TITLE="VV - verb-phrase-complement verb">VV</A></TD>
+<TD><div class=reveal> <I>to be able to sleep</I> <div class=popup> <ul> <li>API: <CODE>mkUtt (mkVP can8know_VV (mkVP sleep_V))</CODE> <li>Afr: <I>slaap kan</I> <li>Bul: <I>да може да спи</I> <li>Cat: <I>saber dormir</I> <li>Dan: <I>at kunne sove</I> <li>Dut: <I>slapen kunnen</I> <li>Eng: <I>to be able to sleep</I> <li>Fin: <I>osaamaan nukkumaan</I> <li>Fre: <I>savoir dormir</I> <li>Ger: <I>schlafen können</I> <li>Ita: <I>sapere dormire</I> <li>Nep: <I>सुत्न सक्नु</I> <li>Nor: <I>å kunne sove</I> <li>Pes: <I>*</I> <li>Pnb: <I>سكنا سون</I> <li>Pol: <I>umieć spać</I> <li>Ron: <I>sã poată sã doarmă</I> <li>Rus: <I>мочь спать</I> <li>Spa: <I>saber dormir</I> <li>Swe: <I>att kunna sova</I> <li>Urd: <I>سكنا سوئیں</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>can_VV</CODE></TD>
+<TD><A HREF="#VV" TITLE="VV - verb-phrase-complement verb">VV</A></TD>
+<TD><div class=reveal> <I>to be able to sleep</I> <div class=popup> <ul> <li>API: <CODE>mkUtt (mkVP can_VV (mkVP sleep_V))</CODE> <li>Afr: <I>slaap kan</I> <li>Bul: <I>да може да спи</I> <li>Cat: <I>poder dormir</I> <li>Dan: <I>at kunne sove</I> <li>Dut: <I>slapen kunnen</I> <li>Eng: <I>to be able to sleep</I> <li>Fin: <I>voimaan nukkumaan</I> <li>Fre: <I>pouvoir dormir</I> <li>Ger: <I>schlafen können</I> <li>Ita: <I>potere dormire</I> <li>Nep: <I>सुत्न सक्नु</I> <li>Nor: <I>å kunne sove</I> <li>Pes: <I>*</I> <li>Pnb: <I>سكنا سون</I> <li>Pol: <I>móc spać</I> <li>Ron: <I>sã poată sã doarmă</I> <li>Rus: <I>мочь спать</I> <li>Spa: <I>poder dormir</I> <li>Swe: <I>att kunna sova</I> <li>Urd: <I>سكنا سوئیں</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>must_VV</CODE></TD>
+<TD><A HREF="#VV" TITLE="VV - verb-phrase-complement verb">VV</A></TD>
+<TD><div class=reveal> <I>have to</I> <div class=popup> <ul> <li>API: <CODE>must_VV</CODE> <li>Afr: <I>moet</I> <li>Bul: <I>трябва</I> <li>Cat: <I>haver</I> <li>Dan: <I>må</I> <li>Dut: <I>moeten</I> <li>Eng: <I>have to</I> <li>Fin: <I>täytyä</I> <li>Fre: <I>devoir</I> <li>Ger: <I>zu müssen</I> <li>Ita: <I>dover</I> <li>Nep: <I>अवशएकोछु</I> <li>Nor: <I>må</I> <li>Pes: <I>*</I> <li>Pnb: <I>*</I> <li>Pol: <I>ResPol.Imperfective</I> <li>Ron: <I>trebui</I> <li>Rus: <I>должен</I> <li>Spa: <I>deber</I> <li>Swe: <I>måste</I> <li>Urd: <I>*</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>want_VV</CODE></TD>
+<TD><A HREF="#VV" TITLE="VV - verb-phrase-complement verb">VV</A></TD>
+<TD><div class=reveal> <I>want</I> <div class=popup> <ul> <li>API: <CODE>want_VV</CODE> <li>Afr: <I>wil</I> <li>Bul: <I>искам</I> <li>Cat: <I>voler</I> <li>Dan: <I>vil</I> <li>Dut: <I>willen</I> <li>Eng: <I>want</I> <li>Fin: <I>tahtoa</I> <li>Fre: <I>vouloir</I> <li>Ger: <I>zu wollen</I> <li>Ita: <I>voler</I> <li>Nep: <I>चाहन्एकोछु</I> <li>Nor: <I>vil</I> <li>Pes: <I>خواسته ام</I> <li>Pnb: <I>چاواں</I> <li>Pol: <I>ResPol.Dual</I> <li>Ron: <I>vrea</I> <li>Rus: <I>хочу</I> <li>Spa: <I>querer</I> <li>Swe: <I>vill</I> <li>Urd: <I>چاہوں</I> </ul> </div> </div></TD>
+</TR>
+</TABLE>
+
+<A NAME="Voc"></A>
+<H2>Voc - vocative or "please"</H2>
+
+<TABLE BORDER="1" CELLPADDING="4">
+<TR>
+<TH>Function</TH>
+<TH>Type</TH>
+<TH COLSPAN="2">Example</TH>
+</TR>
+<TR>
+<TD><CODE>mkVoc</CODE></TD>
+<TD><A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A> <CODE>-&gt;</CODE> <A HREF="#Voc" TITLE="Voc - vocative or "please"">Voc</A></TD>
+<TD><div class=reveal> <I>yes , my friend</I> <div class=popup> <ul> <li>API: <CODE>mkPhr yes_Utt (mkVoc (mkNP i_Pron friend_N))</CODE> <li>Afr: <I>ja , my vriend</I> <li>Bul: <I>да , мой приятелю</I> <li>Cat: <I>sí , el meu amic</I> <li>Dan: <I>ja , min ven</I> <li>Dut: <I>ja , mijn vriend</I> <li>Eng: <I>yes , my friend</I> <li>Fin: <I>kyllä , minun ystäväni</I> <li>Fre: <I>oui , mon ami</I> <li>Ger: <I>ja , mein Freund</I> <li>Ita: <I>sì , il mio amico</I> <li>Nep: <I>हजुर मेरो साथी</I> <li>Nor: <I>ja , min venn</I> <li>Pes: <I>بله دوست من</I> <li>Pnb: <I>ہاں میرا یار</I> <li>Pol: <I>tak , mój przyjacielu</I> <li>Ron: <I>da , prietenul meu</I> <li>Rus: <I>Да , мой друг</I> <li>Spa: <I>sí , mi amigo</I> <li>Swe: <I>ja , min vän</I> <li>Urd: <I>ہاں میرا دوست</I> </ul> </div> </div></TD>
+</TR>
+<TR>
+<TD><CODE>please_Voc</CODE></TD>
+<TD><A HREF="#Voc" TITLE="Voc - vocative or "please"">Voc</A></TD>
+<TD><div class=reveal> <I>please</I> <div class=popup> <ul> <li>API: <CODE>please_Voc</CODE> <li>Afr: <I>asseblief</I> <li>Bul: <I>моля</I> <li>Cat: <I>sisplau</I> <li>Dan: <I>tak</I> <li>Dut: <I>alsjeblieft</I> <li>Eng: <I>please</I> <li>Fin: <I>ole hyvä</I> <li>Fre: <I>s'il vous plaît</I> <li>Ger: <I>bitte</I> <li>Ita: <I>per favore</I> <li>Nep: <I>कृपया</I> <li>Nor: <I>takk</I> <li>Pes: <I>لطفاً</I> <li>Pnb: <I>مہربانi</I> <li>Pol: <I>proszę</I> <li>Ron: <I>vă rog</I> <li>Rus: <I>пожалуйста</I> <li>Spa: <I>por favor</I> <li>Swe: <I>tack</I> <li>Urd: <I>مہربانی</I> </ul> </div> </div></TD>
+</TR>
+</TABLE>
+
+<A NAME="toc83"></A>
+<H1>Lexical Paradigms</H1>
+
+<A NAME="toc84"></A>
+<H2>Paradigms for Afrikaans</H2>
+
+<P>
+<a name="RParadigms"></a>
+</P>
+<P>
+source <A HREF="http://www.grammaticalframework.org/lib/src/afrikaans/ParadigmsAfr.gf"><CODE>../src/afrikaans/ParadigmsAfr.gf</CODE></A>
+</P>
+
+<TABLE BORDER="1" CELLPADDING="4">
+<TR>
+<TH>Function</TH>
+<TH>Type</TH>
+<TH COLSPAN="2">Explanation</TH>
+</TR>
+<TR>
+<TD><CODE>de</CODE></TD>
+<TD><A HREF="#Gender">Gender</A></TD>
+<TD><I>non-neutrum</I></TD>
+</TR>
+<TR>
+<TD><CODE>het</CODE></TD>
+<TD><A HREF="#Gender">Gender</A></TD>
+<TD><I>neutrum</I></TD>
+</TR>
+<TR>
+<TD><CODE>--die</CODE></TD>
+<TD><A HREF="#Gender">Gender</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkN</CODE></TD>
+<TD><CODE>(muis</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
+<TD><I>de muis-muisen, with some predictable exceptions</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkN</CODE></TD>
+<TD><CODE>(bit</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-&gt;</CODE> <A HREF="#Gender">Gender</A> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
+<TD><I>if gender is not predictable</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkN</CODE></TD>
+<TD><CODE>(gat,gaten</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-&gt;</CODE> <A HREF="#Gender">Gender</A> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
+<TD><I>worst-case for nouns</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkN2</CODE></TD>
+<TD><A HREF="#N" TITLE="N - common noun">N</A> <CODE>-&gt;</CODE> <A HREF="#N2" TITLE="N2 - relational noun">N2</A></TD>
+<TD><I>relational noun with preposition van</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkN2</CODE></TD>
+<TD><A HREF="#N" TITLE="N - common noun">N</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#N2" TITLE="N2 - relational noun">N2</A></TD>
+<TD><I>other preposition than van</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkN3</CODE></TD>
+<TD><A HREF="#N" TITLE="N - common noun">N</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#N3" TITLE="N3 - three-place relational noun">N3</A></TD>
+<TD><I>e.g. afstand + van + naar</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkPN</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#PN" TITLE="PN - proper name">PN</A></TD>
+<TD><I>proper name</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkA</CODE></TD>
+<TD><CODE>(vers</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-&gt;</CODE> <A HREF="#A" TITLE="A - one-place adjective">A</A></TD>
+<TD><I>regular adjective</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkA</CODE></TD>
+<TD><CODE>(sag,</CODE> <CODE>sagte</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-&gt;</CODE> <A HREF="#A" TITLE="A - one-place adjective">A</A> <CODE>--"semi-irregular"</CODE></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkA</CODE></TD>
+<TD><CODE>(goed,goede,goeds,beter,best</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-&gt;</CODE> <A HREF="#A" TITLE="A - one-place adjective">A</A></TD>
+<TD><I>irregular adjective</I></TD>
+</TR>
+<TR>
+<TD><CODE>invarA</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#A" TITLE="A - one-place adjective">A</A></TD>
+<TD><I>adjective with just one form</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkA2</CODE></TD>
+<TD><A HREF="#A" TITLE="A - one-place adjective">A</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#A2" TITLE="A2 - two-place adjective">A2</A></TD>
+<TD><I>e.g. getrouwd + met</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkAdv</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#Adv" TITLE="Adv - verb-phrase-modifying adverb">Adv</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkPrep</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>van_Prep</CODE></TD>
+<TD><A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>te_Prep</CODE></TD>
+<TD><A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkV</CODE></TD>
+<TD><CODE>(aaien</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-&gt;</CODE> <A HREF="#V" TITLE="V - one-place verb">V</A></TD>
+<TD><I>regular verb</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkV</CODE></TD>
+<TD><CODE>(breken,brak,gebroken</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-&gt;</CODE> <A HREF="#V" TITLE="V - one-place verb">V</A></TD>
+<TD><I>theme of irregular verb</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkV</CODE></TD>
+<TD><CODE>(breken,brak,braken,gebroken</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-&gt;</CODE> <A HREF="#V" TITLE="V - one-place verb">V</A></TD>
+<TD><I>also past plural irregular</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkV</CODE></TD>
+<TD><CODE>(aai,aait,aaien,aaide,aaide,aaiden,geaaid</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-&gt;</CODE> <A HREF="#V" TITLE="V - one-place verb">V</A></TD>
+<TD><I>worst-case verb</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkV</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#V" TITLE="V - one-place verb">V</A></TD>
+<TD><I>add movable suffix, e.g. af + stappen</I></TD>
+</TR>
+<TR>
+<TD><CODE>zijnV</CODE></TD>
+<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#V" TITLE="V - one-place verb">V</A></TD>
+<TD><I>force zijn as auxiliary (default hebben)</I></TD>
+</TR>
+<TR>
+<TD><CODE>reflV</CODE></TD>
+<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#V" TITLE="V - one-place verb">V</A></TD>
+<TD><I>reflexive verb e.g. zich afvragen</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkV3</CODE></TD>
+<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#V3" TITLE="V3 - three-place verb">V3</A></TD>
+<TD><I>geven,(accusative),(dative)</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkV3</CODE></TD>
+<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#V3" TITLE="V3 - three-place verb">V3</A></TD>
+<TD><I>sturen,(accusative),naar</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkV3</CODE></TD>
+<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#V3" TITLE="V3 - three-place verb">V3</A></TD>
+<TD><I>praten, met, over</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkVS</CODE></TD>
+<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#VS" TITLE="VS - sentence-complement verb">VS</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkV2S</CODE></TD>
+<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#V2S" TITLE="V2S - verb with NP and S complement">V2S</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkVV</CODE></TD>
+<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#VV" TITLE="VV - verb-phrase-complement verb">VV</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkV2V</CODE></TD>
+<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#V2V" TITLE="V2V - verb with NP and V complement">V2V</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkVA</CODE></TD>
+<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#VA" TITLE="VA - adjective-complement verb">VA</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkV2A</CODE></TD>
+<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#V2A" TITLE="V2A - verb with NP and AP complement">V2A</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkVQ</CODE></TD>
+<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#VQ" TITLE="VQ - question-complement verb">VQ</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkV2Q</CODE></TD>
+<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#V2Q" TITLE="V2Q - verb with NP and Q complement">V2Q</A></TD>
+<TD><I>-</I></TD>
+</TR>
+</TABLE>
+
+<A NAME="toc85"></A>
+<H2>Paradigms for Bulgarian</H2>
+
+<P>
+<a name="RParadigms"></a>
+</P>
+<P>
+source <A HREF="http://www.grammaticalframework.org/lib/src/bulgarian/ParadigmsBul.gf"><CODE>../src/bulgarian/ParadigmsBul.gf</CODE></A>
+</P>
+
+<TABLE BORDER="1" CELLPADDING="4">
+<TR>
+<TH>Function</TH>
+<TH>Type</TH>
+<TH COLSPAN="2">Explanation</TH>
+</TR>
+<TR>
+<TD><CODE>mkN001</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
+<TD><I>numbers refer to Krustev, Bulg. Morph. in 187 Tables</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkN002</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkN002a</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkN003</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkN004</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkN005</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkN006</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkN007</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkN007b</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkN007a</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkN008</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkN008b</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkN008c</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkN008a</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkN009</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkN009a</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkN010</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkN011</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkN012</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkN013</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkN014</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkN014a</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkN015</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkN015a</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkN016</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkN016a</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkN017</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkN018</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkN018a</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkN019</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkN019a</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkN020</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkN021</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkN022</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkN023</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkN024a</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkN024</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkN025</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkN026</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkN027</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkN028</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkN028a</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkN029</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkN030</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkN031</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkN031a</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkN032</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkN032a</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkN033</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkN034</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkN035</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkN035a</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkN036</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkN037</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkN038</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkN039</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkN040</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkN040a</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkN041</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkN041a</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkN041b</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkN042</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkN043</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkN043a</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkN044</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkN045</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkN046</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkN047</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkN048</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkN049</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkN050</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkN051</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkN052</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkN052a</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkN053</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkN054</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkN055</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkN056</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkN057</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkN057a</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkN058</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkN059</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkN060</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkN061</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkN062</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkN063</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkN064</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkN065</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkN066</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkN067</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkN068</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkN069</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkN070</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkN071</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkN072</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkN073</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkN074</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkN075</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkA076</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#A" TITLE="A - one-place adjective">A</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkA077</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#A" TITLE="A - one-place adjective">A</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkA078</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#A" TITLE="A - one-place adjective">A</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkA079</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#A" TITLE="A - one-place adjective">A</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkA080</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#A" TITLE="A - one-place adjective">A</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkA081</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#A" TITLE="A - one-place adjective">A</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkA082</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#A" TITLE="A - one-place adjective">A</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkA082a</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#A" TITLE="A - one-place adjective">A</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkA083</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#A" TITLE="A - one-place adjective">A</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkA084</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#A" TITLE="A - one-place adjective">A</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkA084a</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#A" TITLE="A - one-place adjective">A</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkA085</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#A" TITLE="A - one-place adjective">A</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkA086</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#A" TITLE="A - one-place adjective">A</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkA087</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#A" TITLE="A - one-place adjective">A</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkA088</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#A" TITLE="A - one-place adjective">A</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkA089a</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#A" TITLE="A - one-place adjective">A</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkV142</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#VTable">VTable</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkV143</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#VTable">VTable</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkV144</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#VTable">VTable</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkV145</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#VTable">VTable</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkV145a</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#VTable">VTable</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkV145b</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#VTable">VTable</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkV146</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#VTable">VTable</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkV146a</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#VTable">VTable</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkV147</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#VTable">VTable</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkV148</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#VTable">VTable</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkV149</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#VTable">VTable</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkV150</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#VTable">VTable</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkV150a</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#VTable">VTable</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkV151</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#VTable">VTable</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkV152</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#VTable">VTable</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkV152a</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#VTable">VTable</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkV153</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#VTable">VTable</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkV154</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#VTable">VTable</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkV155</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#VTable">VTable</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkV156</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#VTable">VTable</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkV157</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#VTable">VTable</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkV158</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#VTable">VTable</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkV159</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#VTable">VTable</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkV160</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#VTable">VTable</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkV160a</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#VTable">VTable</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkV161</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#VTable">VTable</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkV161a</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#VTable">VTable</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkV162</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#VTable">VTable</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkV163</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#VTable">VTable</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkV164</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#VTable">VTable</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkV165</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#VTable">VTable</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkV166</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#VTable">VTable</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkV167</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#VTable">VTable</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkV168</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#VTable">VTable</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkV169</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#VTable">VTable</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkV170</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#VTable">VTable</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkV171</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#VTable">VTable</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkV172</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#VTable">VTable</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkV173</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#VTable">VTable</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkV174</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#VTable">VTable</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkV175</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#VTable">VTable</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkV176</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#VTable">VTable</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkV177</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#VTable">VTable</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkV178</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#VTable">VTable</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkV179</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#VTable">VTable</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkV180</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#VTable">VTable</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkV181</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#VTable">VTable</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkV182</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#VTable">VTable</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkV183</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#VTable">VTable</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkV184</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#VTable">VTable</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkV185</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#VTable">VTable</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkV186</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#VTable">VTable</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkV187</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#VTable">VTable</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkV188</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#VTable">VTable</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>adjAdv</CODE></TD>
+<TD><A HREF="#A" TITLE="A - one-place adjective">A</A> <CODE>-&gt;</CODE> <CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#A" TITLE="A - one-place adjective">A</A> <CODE>=</CODE></TD>
+<TD><I>-</I></TD>
+</TR>
+</TABLE>
+
+<A NAME="toc86"></A>
+<H2>Paradigms for Catalan</H2>
+
+<P>
+<a name="RParadigms"></a>
+</P>
+<P>
+source <A HREF="http://www.grammaticalframework.org/lib/src/catalan/ParadigmsCat.gf"><CODE>../src/catalan/ParadigmsCat.gf</CODE></A>
+</P>
+
+<TABLE BORDER="1" CELLPADDING="4">
+<TR>
+<TH>Function</TH>
+<TH>Type</TH>
+<TH COLSPAN="2">Explanation</TH>
+</TR>
+<TR>
+<TD><CODE>Gender</CODE></TD>
+<TD><A HREF="#Type">Type</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>masculine</CODE></TD>
+<TD><A HREF="#Gender">Gender</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>feminine</CODE></TD>
+<TD><A HREF="#Gender">Gender</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>Number</CODE></TD>
+<TD><A HREF="#Type">Type</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>singular</CODE></TD>
+<TD><A HREF="#Number">Number</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>plural</CODE></TD>
+<TD><A HREF="#Number">Number</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>accusative</CODE></TD>
+<TD><A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A></TD>
+<TD><I>direct object</I></TD>
+</TR>
+<TR>
+<TD><CODE>genitive</CODE></TD>
+<TD><A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A></TD>
+<TD><I>preposition "de"</I></TD>
+</TR>
+<TR>
+<TD><CODE>dative</CODE></TD>
+<TD><A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A></TD>
+<TD><I>preposition "a"</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkPrep</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A></TD>
+<TD><I>other preposition</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkN</CODE></TD>
+<TD><CODE>(llum</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
+<TD><I>regular, with heuristics for plural and gender</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkN</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#Gender">Gender</A> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
+<TD><I>force gender</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkN</CODE></TD>
+<TD><CODE>(disc,discos</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-&gt;</CODE> <A HREF="#Gender">Gender</A> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
+<TD><I>worst case</I></TD>
+</TR>
+<TR>
+<TD><CODE>compN</CODE></TD>
+<TD><A HREF="#N" TITLE="N - common noun">N</A> <CODE>-&gt;</CODE> <CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
+<TD><I>compound, e.g. "número" + "de telèfon"</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkN2</CODE></TD>
+<TD><A HREF="#N" TITLE="N - common noun">N</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#N2" TITLE="N2 - relational noun">N2</A></TD>
+<TD><I>e.g. filla + genitive</I></TD>
+</TR>
+<TR>
+<TD><CODE>deN2</CODE></TD>
+<TD><A HREF="#N" TITLE="N - common noun">N</A> <CODE>-&gt;</CODE> <A HREF="#N2" TITLE="N2 - relational noun">N2</A></TD>
+<TD><I>relation with genitive</I></TD>
+</TR>
+<TR>
+<TD><CODE>aN2</CODE></TD>
+<TD><A HREF="#N" TITLE="N - common noun">N</A> <CODE>-&gt;</CODE> <A HREF="#N2" TITLE="N2 - relational noun">N2</A></TD>
+<TD><I>relation with dative</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkN3</CODE></TD>
+<TD><A HREF="#N" TITLE="N - common noun">N</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#N3" TITLE="N3 - three-place relational noun">N3</A></TD>
+<TD><I>e.g. connexió + genitive + dative</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkPN</CODE></TD>
+<TD><CODE>(Anna</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-&gt;</CODE> <A HREF="#PN" TITLE="PN - proper name">PN</A></TD>
+<TD><I>feminine for "-a", otherwise masculine</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkPN</CODE></TD>
+<TD><CODE>(Pilar</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-&gt;</CODE> <A HREF="#Gender">Gender</A> <CODE>-&gt;</CODE> <A HREF="#PN" TITLE="PN - proper name">PN</A></TD>
+<TD><I>force gender</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkA</CODE></TD>
+<TD><CODE>(sol</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-&gt;</CODE> <A HREF="#A" TITLE="A - one-place adjective">A</A></TD>
+<TD><I>regular</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkA</CODE></TD>
+<TD><CODE>(fort,forta,forts,fortes,fortament</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-&gt;</CODE> <A HREF="#A" TITLE="A - one-place adjective">A</A></TD>
+<TD><I>worst case</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkA</CODE></TD>
+<TD><CODE>(bo</CODE> <CODE>:</CODE> <CODE>A)</CODE> <CODE>-&gt;</CODE> <CODE>(millor</CODE> <CODE>:</CODE> <CODE>A)</CODE> <CODE>-&gt;</CODE> <A HREF="#A" TITLE="A - one-place adjective">A</A></TD>
+<TD><I>special comparison (default with "mas")</I></TD>
+</TR>
+<TR>
+<TD><CODE>prefixA</CODE></TD>
+<TD><A HREF="#A" TITLE="A - one-place adjective">A</A> <CODE>-&gt;</CODE> <A HREF="#A" TITLE="A - one-place adjective">A</A></TD>
+<TD><I>adjective before noun (default: after)</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkA2</CODE></TD>
+<TD><A HREF="#A" TITLE="A - one-place adjective">A</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#A2" TITLE="A2 - two-place adjective">A2</A></TD>
+<TD><I>e.g. "casat" + dative</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkAdv</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#Adv" TITLE="Adv - verb-phrase-modifying adverb">Adv</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkAdV</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#AdV" TITLE="Adv - verb-phrase-modifying adverb">AdV</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkAdA</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#AdA" TITLE="AdA - adjective-modifying adverb">AdA</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkV</CODE></TD>
+<TD><CODE>(cantar</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-&gt;</CODE> <A HREF="#V" TITLE="V - one-place verb">V</A></TD>
+<TD><I>regular in models I, IIa, IIb</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkV</CODE></TD>
+<TD><A HREF="#Verbum">Verbum</A> <CODE>-&gt;</CODE> <A HREF="#V" TITLE="V - one-place verb">V</A></TD>
+<TD><I>use verb constructed in BeschCat</I></TD>
+</TR>
+<TR>
+<TD><CODE>reflV</CODE></TD>
+<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#V" TITLE="V - one-place verb">V</A></TD>
+<TD><I>reflexive verb</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkV2</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#V2" TITLE="V2 - two-place verb">V2</A></TD>
+<TD><I>regular verb, direct object</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkV2</CODE></TD>
+<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#V2" TITLE="V2 - two-place verb">V2</A></TD>
+<TD><I>any verb, direct object</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkV2</CODE></TD>
+<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#V2" TITLE="V2 - two-place verb">V2</A></TD>
+<TD><I>preposition for complement</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkV3</CODE></TD>
+<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#V3" TITLE="V3 - three-place verb">V3</A></TD>
+<TD><I>parlar, a, de</I></TD>
+</TR>
+<TR>
+<TD><CODE>dirV3</CODE></TD>
+<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#V3" TITLE="V3 - three-place verb">V3</A></TD>
+<TD><I>donar,(accusative),a</I></TD>
+</TR>
+<TR>
+<TD><CODE>dirdirV3</CODE></TD>
+<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#V3" TITLE="V3 - three-place verb">V3</A></TD>
+<TD><I>donar,(dative),(accusative)</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkVS</CODE></TD>
+<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#VS" TITLE="VS - sentence-complement verb">VS</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkV2S</CODE></TD>
+<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#V2S" TITLE="V2S - verb with NP and S complement">V2S</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkVV</CODE></TD>
+<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#VV" TITLE="VV - verb-phrase-complement verb">VV</A></TD>
+<TD><I>plain infinitive: "vull parlar"</I></TD>
+</TR>
+<TR>
+<TD><CODE>deVV</CODE></TD>
+<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#VV" TITLE="VV - verb-phrase-complement verb">VV</A></TD>
+<TD><I>"acabar de parlar"</I></TD>
+</TR>
+<TR>
+<TD><CODE>aVV</CODE></TD>
+<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#VV" TITLE="VV - verb-phrase-complement verb">VV</A></TD>
+<TD><I>"aprendre a parlar"</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkV2V</CODE></TD>
+<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#V2V" TITLE="V2V - verb with NP and V complement">V2V</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkVA</CODE></TD>
+<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#VA" TITLE="VA - adjective-complement verb">VA</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkV2A</CODE></TD>
+<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#V2A" TITLE="V2A - verb with NP and AP complement">V2A</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkVQ</CODE></TD>
+<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#VQ" TITLE="VQ - question-complement verb">VQ</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkV2Q</CODE></TD>
+<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#V2Q" TITLE="V2Q - verb with NP and Q complement">V2Q</A></TD>
+<TD><I>-</I></TD>
+</TR>
+</TABLE>
+
+<A NAME="toc87"></A>
+<H2>Paradigms for Danish</H2>
+
+<P>
+<a name="RParadigms"></a>
+</P>
+<P>
+source <A HREF="http://www.grammaticalframework.org/lib/src/danish/ParadigmsDan.gf"><CODE>../src/danish/ParadigmsDan.gf</CODE></A>
+</P>
+
+<TABLE BORDER="1" CELLPADDING="4">
+<TR>
+<TH>Function</TH>
+<TH>Type</TH>
+<TH COLSPAN="2">Explanation</TH>
+</TR>
+<TR>
+<TD><CODE>Gender</CODE></TD>
+<TD><A HREF="#Type">Type</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>utrum</CODE></TD>
+<TD><A HREF="#Gender">Gender</A></TD>
+<TD><I>"en" gender</I></TD>
+</TR>
+<TR>
+<TD><CODE>neutrum</CODE></TD>
+<TD><A HREF="#Gender">Gender</A></TD>
+<TD><I>"et" gender</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkPrep</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A></TD>
+<TD><I>e.g. "til"</I></TD>
+</TR>
+<TR>
+<TD><CODE>noPrep</CODE></TD>
+<TD><A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A></TD>
+<TD><I>empty string</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkN</CODE></TD>
+<TD><CODE>(bil</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
+<TD><I>regular noun: "en" gender with plural "-er" or "-r"</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkN</CODE></TD>
+<TD><CODE>(bil,bilen</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
+<TD><I>better prediction from both singular and plural</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkN</CODE></TD>
+<TD><CODE>(dreng,drengen,drenge,drengene</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
+<TD><I>worst case</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkN2</CODE></TD>
+<TD><A HREF="#N" TITLE="N - common noun">N</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#N2" TITLE="N2 - relational noun">N2</A></TD>
+<TD><I>e.g. datter + til</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkN3</CODE></TD>
+<TD><A HREF="#N" TITLE="N - common noun">N</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#N3" TITLE="N3 - three-place relational noun">N3</A></TD>
+<TD><I>e.g. forbindelse + fra + til</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkPN</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#PN" TITLE="PN - proper name">PN</A></TD>
+<TD><I>utrum gender</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkPN</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#Gender">Gender</A> <CODE>-&gt;</CODE> <A HREF="#PN" TITLE="PN - proper name">PN</A></TD>
+<TD><I>other gender</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkA</CODE></TD>
+<TD><CODE>(fin</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-&gt;</CODE> <A HREF="#A" TITLE="A - one-place adjective">A</A></TD>
+<TD><I>regular adjective</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkA</CODE></TD>
+<TD><CODE>(fin,fint</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-&gt;</CODE> <A HREF="#A" TITLE="A - one-place adjective">A</A></TD>
+<TD><I>deviant neuter</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkA</CODE></TD>
+<TD><CODE>(galen,galet,galne</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-&gt;</CODE> <A HREF="#A" TITLE="A - one-place adjective">A</A></TD>
+<TD><I>also deviant plural</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkA</CODE></TD>
+<TD><CODE>(stor,stort,store,storre,storst</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-&gt;</CODE> <A HREF="#A" TITLE="A - one-place adjective">A</A></TD>
+<TD><I>worst case</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkA</CODE></TD>
+<TD><A HREF="#A" TITLE="A - one-place adjective">A</A> <CODE>-&gt;</CODE> <A HREF="#A" TITLE="A - one-place adjective">A</A></TD>
+<TD><I>force comparison with mer/mest</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkA2</CODE></TD>
+<TD><A HREF="#A" TITLE="A - one-place adjective">A</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#A2" TITLE="A2 - two-place adjective">A2</A></TD>
+<TD><I>e.g. gift + med</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkAdv</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#Adv" TITLE="Adv - verb-phrase-modifying adverb">Adv</A></TD>
+<TD><I>after verb, e.g. "idag"</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkAdV</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#AdV" TITLE="Adv - verb-phrase-modifying adverb">AdV</A></TD>
+<TD><I>close to verb, e.g. "altid"</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkAdA</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#AdA" TITLE="AdA - adjective-modifying adverb">AdA</A></TD>
+<TD><I>modify adjective, e.g. "meget"</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkV</CODE></TD>
+<TD><CODE>(snakke</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-&gt;</CODE> <A HREF="#V" TITLE="V - one-place verb">V</A></TD>
+<TD><I>regular verb</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkV</CODE></TD>
+<TD><CODE>(leve,levde</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-&gt;</CODE> <A HREF="#V" TITLE="V - one-place verb">V</A></TD>
+<TD><I>also give past tense</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkV</CODE></TD>
+<TD><CODE>(drikke,</CODE> <CODE>drakk,</CODE> <CODE>drukket</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-&gt;</CODE> <A HREF="#V" TITLE="V - one-place verb">V</A></TD>
+<TD><I>theme of irregular verb</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkV</CODE></TD>
+<TD><CODE>(spise,spiser,spises,spiste,spist,spis</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-&gt;</CODE> <A HREF="#V" TITLE="V - one-place verb">V</A></TD>
+<TD><I>worst case</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkV</CODE></TD>
+<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#V" TITLE="V - one-place verb">V</A></TD>
+<TD><I>particle verb, e.g. lukke + op</I></TD>
+</TR>
+<TR>
+<TD><CODE>vaereV</CODE></TD>
+<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#V" TITLE="V - one-place verb">V</A></TD>
+<TD><I>force auxiliary "være"</I></TD>
+</TR>
+<TR>
+<TD><CODE>depV</CODE></TD>
+<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#V" TITLE="V - one-place verb">V</A></TD>
+<TD><I>deponent, e.g. "undres"</I></TD>
+</TR>
+<TR>
+<TD><CODE>reflV</CODE></TD>
+<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#V" TITLE="V - one-place verb">V</A></TD>
+<TD><I>reflexive, e.g. "forestille sig"</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkV2</CODE></TD>
+<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#V2" TITLE="V2 - two-place verb">V2</A></TD>
+<TD><I>direct object</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkV2</CODE></TD>
+<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#V2" TITLE="V2 - two-place verb">V2</A></TD>
+<TD><I>prepositional object</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkV3</CODE></TD>
+<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#V3" TITLE="V3 - three-place verb">V3</A></TD>
+<TD><I>snakke, med, om</I></TD>
+</TR>
+<TR>
+<TD><CODE>dirV3</CODE></TD>
+<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#V3" TITLE="V3 - three-place verb">V3</A></TD>
+<TD><I>give,_,til</I></TD>
+</TR>
+<TR>
+<TD><CODE>dirdirV3</CODE></TD>
+<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#V3" TITLE="V3 - three-place verb">V3</A></TD>
+<TD><I>give,_,_</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkVS</CODE></TD>
+<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#VS" TITLE="VS - sentence-complement verb">VS</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkV2S</CODE></TD>
+<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#V2S" TITLE="V2S - verb with NP and S complement">V2S</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkVV</CODE></TD>
+<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#VV" TITLE="VV - verb-phrase-complement verb">VV</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkV2V</CODE></TD>
+<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#V2V" TITLE="V2V - verb with NP and V complement">V2V</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkVA</CODE></TD>
+<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#VA" TITLE="VA - adjective-complement verb">VA</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkV2A</CODE></TD>
+<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#V2A" TITLE="V2A - verb with NP and AP complement">V2A</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkVQ</CODE></TD>
+<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#VQ" TITLE="VQ - question-complement verb">VQ</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkV2Q</CODE></TD>
+<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#V2Q" TITLE="V2Q - verb with NP and Q complement">V2Q</A></TD>
+<TD><I>-</I></TD>
+</TR>
+</TABLE>
+
+<A NAME="toc88"></A>
+<H2>Paradigms for Dutch</H2>
+
+<P>
+<a name="RParadigms"></a>
+</P>
+<P>
+source <A HREF="http://www.grammaticalframework.org/lib/src/dutch/ParadigmsDut.gf"><CODE>../src/dutch/ParadigmsDut.gf</CODE></A>
+</P>
+
+<TABLE BORDER="1" CELLPADDING="4">
+<TR>
+<TH>Function</TH>
+<TH>Type</TH>
+<TH COLSPAN="2">Explanation</TH>
+</TR>
+<TR>
+<TD><CODE>de</CODE></TD>
+<TD><A HREF="#Gender">Gender</A></TD>
+<TD><I>non-neutrum</I></TD>
+</TR>
+<TR>
+<TD><CODE>het</CODE></TD>
+<TD><A HREF="#Gender">Gender</A></TD>
+<TD><I>neutrum</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkN</CODE></TD>
+<TD><CODE>(muis</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
+<TD><I>de muis-muisen, with some predictable exceptions</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkN</CODE></TD>
+<TD><CODE>(bit</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-&gt;</CODE> <A HREF="#Gender">Gender</A> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
+<TD><I>if gender is not predictable</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkN</CODE></TD>
+<TD><CODE>(gat,gaten</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-&gt;</CODE> <A HREF="#Gender">Gender</A> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
+<TD><I>worst-case for nouns</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkN2</CODE></TD>
+<TD><A HREF="#N" TITLE="N - common noun">N</A> <CODE>-&gt;</CODE> <A HREF="#N2" TITLE="N2 - relational noun">N2</A></TD>
+<TD><I>relational noun with preposition van</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkN2</CODE></TD>
+<TD><A HREF="#N" TITLE="N - common noun">N</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#N2" TITLE="N2 - relational noun">N2</A></TD>
+<TD><I>other preposition than van</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkN3</CODE></TD>
+<TD><A HREF="#N" TITLE="N - common noun">N</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#N3" TITLE="N3 - three-place relational noun">N3</A></TD>
+<TD><I>e.g. afstand + van + naar</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkPN</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#PN" TITLE="PN - proper name">PN</A></TD>
+<TD><I>proper name</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkA</CODE></TD>
+<TD><CODE>(vers</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-&gt;</CODE> <A HREF="#A" TITLE="A - one-place adjective">A</A></TD>
+<TD><I>regular adjective</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkA</CODE></TD>
+<TD><CODE>(goed,goede,goeds,beter,best</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-&gt;</CODE> <A HREF="#A" TITLE="A - one-place adjective">A</A></TD>
+<TD><I>irregular adjective</I></TD>
+</TR>
+<TR>
+<TD><CODE>invarA</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#A" TITLE="A - one-place adjective">A</A></TD>
+<TD><I>adjective with just one form</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkA2</CODE></TD>
+<TD><A HREF="#A" TITLE="A - one-place adjective">A</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#A2" TITLE="A2 - two-place adjective">A2</A></TD>
+<TD><I>e.g. getrouwd + met</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkAdv</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#Adv" TITLE="Adv - verb-phrase-modifying adverb">Adv</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkPrep</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>van_Prep</CODE></TD>
+<TD><A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>te_Prep</CODE></TD>
+<TD><A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkV</CODE></TD>
+<TD><CODE>(aaien</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-&gt;</CODE> <A HREF="#V" TITLE="V - one-place verb">V</A></TD>
+<TD><I>regular verb</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkV</CODE></TD>
+<TD><CODE>(breken,brak,gebroken</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-&gt;</CODE> <A HREF="#V" TITLE="V - one-place verb">V</A></TD>
+<TD><I>theme of irregular verb</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkV</CODE></TD>
+<TD><CODE>(breken,brak,braken,gebroken</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-&gt;</CODE> <A HREF="#V" TITLE="V - one-place verb">V</A></TD>
+<TD><I>also past plural irregular</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkV</CODE></TD>
+<TD><CODE>(aai,aait,aaien,aaide,aaide,aaiden,geaaid</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-&gt;</CODE> <A HREF="#V" TITLE="V - one-place verb">V</A></TD>
+<TD><I>worst-case verb</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkV</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#V" TITLE="V - one-place verb">V</A></TD>
+<TD><I>add movable suffix, e.g. af + stappen</I></TD>
+</TR>
+<TR>
+<TD><CODE>zijnV</CODE></TD>
+<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#V" TITLE="V - one-place verb">V</A></TD>
+<TD><I>force zijn as auxiliary (default hebben)</I></TD>
+</TR>
+<TR>
+<TD><CODE>reflV</CODE></TD>
+<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#V" TITLE="V - one-place verb">V</A></TD>
+<TD><I>reflexive verb e.g. zich afvragen</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkV3</CODE></TD>
+<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#V3" TITLE="V3 - three-place verb">V3</A></TD>
+<TD><I>geven,(accusative),(dative)</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkV3</CODE></TD>
+<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#V3" TITLE="V3 - three-place verb">V3</A></TD>
+<TD><I>sturen,(accusative),naar</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkV3</CODE></TD>
+<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#V3" TITLE="V3 - three-place verb">V3</A></TD>
+<TD><I>praten, met, over</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkVS</CODE></TD>
+<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#VS" TITLE="VS - sentence-complement verb">VS</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkV2S</CODE></TD>
+<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#V2S" TITLE="V2S - verb with NP and S complement">V2S</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkVV</CODE></TD>
+<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#VV" TITLE="VV - verb-phrase-complement verb">VV</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkV2V</CODE></TD>
+<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#V2V" TITLE="V2V - verb with NP and V complement">V2V</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkVA</CODE></TD>
+<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#VA" TITLE="VA - adjective-complement verb">VA</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkV2A</CODE></TD>
+<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#V2A" TITLE="V2A - verb with NP and AP complement">V2A</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkVQ</CODE></TD>
+<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#VQ" TITLE="VQ - question-complement verb">VQ</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkV2Q</CODE></TD>
+<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#V2Q" TITLE="V2Q - verb with NP and Q complement">V2Q</A></TD>
+<TD><I>-</I></TD>
+</TR>
+</TABLE>
+
+<A NAME="toc89"></A>
+<H2>Paradigms for English</H2>
+
+<P>
+<a name="RParadigms"></a>
+</P>
+<P>
+source <A HREF="http://www.grammaticalframework.org/lib/src/english/ParadigmsEng.gf"><CODE>../src/english/ParadigmsEng.gf</CODE></A>
+</P>
+
+<TABLE BORDER="1" CELLPADDING="4">
+<TR>
+<TH>Function</TH>
+<TH>Type</TH>
+<TH COLSPAN="2">Explanation</TH>
+</TR>
+<TR>
+<TD><CODE>Gender</CODE></TD>
+<TD><A HREF="#Type">Type</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>human</CODE></TD>
+<TD><A HREF="#Gender">Gender</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>nonhuman</CODE></TD>
+<TD><A HREF="#Gender">Gender</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>Number</CODE></TD>
+<TD><A HREF="#Type">Type</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>singular</CODE></TD>
+<TD><A HREF="#Number">Number</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>plural</CODE></TD>
+<TD><A HREF="#Number">Number</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>npNumber</CODE></TD>
+<TD><A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A> <CODE>-&gt;</CODE> <A HREF="#Number">Number</A></TD>
+<TD><I>exctract the number of a noun phrase</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkN</CODE></TD>
+<TD><CODE>(flash</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
+<TD><I>plural s, incl. flash-flashes, fly-flies</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkN</CODE></TD>
+<TD><CODE>(man,men</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
+<TD><I>irregular plural</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkN</CODE></TD>
+<TD><CODE>(man,men,man's,men's</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
+<TD><I>irregular genitives</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkN</CODE></TD>
+<TD><A HREF="#Gender">Gender</A> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
+<TD><I>default nonhuman</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkN</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
+<TD><I>e.g. baby + boom</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkN2</CODE></TD>
+<TD><A HREF="#N" TITLE="N - common noun">N</A> <CODE>-&gt;</CODE> <A HREF="#N2" TITLE="N2 - relational noun">N2</A></TD>
+<TD><I>e.g. wife of (default prep. to)</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkN2</CODE></TD>
+<TD><A HREF="#N" TITLE="N - common noun">N</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#N2" TITLE="N2 - relational noun">N2</A></TD>
+<TD><I>e.g. access to</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkN3</CODE></TD>
+<TD><A HREF="#N" TITLE="N - common noun">N</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#N3" TITLE="N3 - three-place relational noun">N3</A></TD>
+<TD><I>e.g. connection from x to y</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkPN</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#PN" TITLE="PN - proper name">PN</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkA</CODE></TD>
+<TD><CODE>(happy</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-&gt;</CODE> <A HREF="#A" TITLE="A - one-place adjective">A</A></TD>
+<TD><I>regular adj, incl. happy-happier, rude-ruder</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkA</CODE></TD>
+<TD><CODE>(fat,fatter</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-&gt;</CODE> <A HREF="#A" TITLE="A - one-place adjective">A</A></TD>
+<TD><I>irreg. comparative</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkA</CODE></TD>
+<TD><CODE>(good,better,best,well</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-&gt;</CODE> <A HREF="#A" TITLE="A - one-place adjective">A</A></TD>
+<TD><I>completely irreg.</I></TD>
+</TR>
+<TR>
+<TD><CODE>compoundA</CODE></TD>
+<TD><A HREF="#A" TITLE="A - one-place adjective">A</A> <CODE>-&gt;</CODE> <A HREF="#A" TITLE="A - one-place adjective">A</A></TD>
+<TD><I>force comparison with more/most</I></TD>
+</TR>
+<TR>
+<TD><CODE>simpleA</CODE></TD>
+<TD><A HREF="#A" TITLE="A - one-place adjective">A</A> <CODE>-&gt;</CODE> <A HREF="#A" TITLE="A - one-place adjective">A</A></TD>
+<TD><I>force comparison with -er,-est</I></TD>
+</TR>
+<TR>
+<TD><CODE>irregAdv</CODE></TD>
+<TD><A HREF="#A" TITLE="A - one-place adjective">A</A> <CODE>-&gt;</CODE> <CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#A" TITLE="A - one-place adjective">A</A></TD>
+<TD><I>adverb irreg, e.g. "fast"</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkA2</CODE></TD>
+<TD><A HREF="#A" TITLE="A - one-place adjective">A</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#A2" TITLE="A2 - two-place adjective">A2</A></TD>
+<TD><I>absent from</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkAdv</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#Adv" TITLE="Adv - verb-phrase-modifying adverb">Adv</A></TD>
+<TD><I>e.g. today</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkAdV</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#AdV" TITLE="Adv - verb-phrase-modifying adverb">AdV</A></TD>
+<TD><I>e.g. always</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkAdA</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#AdA" TITLE="AdA - adjective-modifying adverb">AdA</A></TD>
+<TD><I>e.g. quite</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkAdN</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#AdN" TITLE="AdN - numeral-modifying adverb">AdN</A></TD>
+<TD><I>e.g. approximately</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkPrep</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A></TD>
+<TD><I>e.g. "in front of"</I></TD>
+</TR>
+<TR>
+<TD><CODE>noPrep</CODE></TD>
+<TD><A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A></TD>
+<TD><I>no preposition</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkV</CODE></TD>
+<TD><CODE>(cry</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-&gt;</CODE> <A HREF="#V" TITLE="V - one-place verb">V</A></TD>
+<TD><I>regular, incl. cry-cries, kiss-kisses etc</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkV</CODE></TD>
+<TD><CODE>(stop,</CODE> <CODE>stopped</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-&gt;</CODE> <A HREF="#V" TITLE="V - one-place verb">V</A></TD>
+<TD><I>reg. with consonant duplication</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkV</CODE></TD>
+<TD><CODE>(drink,</CODE> <CODE>drank,</CODE> <CODE>drunk</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-&gt;</CODE> <A HREF="#V" TITLE="V - one-place verb">V</A></TD>
+<TD><I>ordinary irregular</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkV</CODE></TD>
+<TD><CODE>(go,</CODE> <CODE>goes,</CODE> <CODE>went,</CODE> <CODE>gone,</CODE> <CODE>going</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-&gt;</CODE> <A HREF="#V" TITLE="V - one-place verb">V</A></TD>
+<TD><I>totally irregular</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkV</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#V" TITLE="V - one-place verb">V</A></TD>
+<TD><I>fix compound, e.g. under+take</I></TD>
+</TR>
+<TR>
+<TD><CODE>partV</CODE></TD>
+<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#V" TITLE="V - one-place verb">V</A></TD>
+<TD><I>with particle, e.g. switch + on</I></TD>
+</TR>
+<TR>
+<TD><CODE>reflV</CODE></TD>
+<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#V" TITLE="V - one-place verb">V</A></TD>
+<TD><I>reflexive e.g. behave oneself</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkV2</CODE></TD>
+<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#V2" TITLE="V2 - two-place verb">V2</A></TD>
+<TD><I>transitive, e.g. hit</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkV2</CODE></TD>
+<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#V2" TITLE="V2 - two-place verb">V2</A></TD>
+<TD><I>with preposiiton, e.g. believe in</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkV3</CODE></TD>
+<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#V3" TITLE="V3 - three-place verb">V3</A></TD>
+<TD><I>ditransitive, e.g. give,_,_</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkV3</CODE></TD>
+<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#V3" TITLE="V3 - three-place verb">V3</A></TD>
+<TD><I>two prepositions, e.g. speak, with, about</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkVS</CODE></TD>
+<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#VS" TITLE="VS - sentence-complement verb">VS</A></TD>
+<TD><I>sentence-compl e.g. say (that S)</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkV2S</CODE></TD>
+<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#V2S" TITLE="V2S - verb with NP and S complement">V2S</A></TD>
+<TD><I>e.g. tell (NP) (that S)</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkVV</CODE></TD>
+<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#VV" TITLE="VV - verb-phrase-complement verb">VV</A></TD>
+<TD><I>e.g. want (to VP)</I></TD>
+</TR>
+<TR>
+<TD><CODE>ingVV</CODE></TD>
+<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#VV" TITLE="VV - verb-phrase-complement verb">VV</A></TD>
+<TD><I>e.g. start (VPing)</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkV2V</CODE></TD>
+<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#V2V" TITLE="V2V - verb with NP and V complement">V2V</A></TD>
+<TD><I>e.g. want (noPrep NP) (to VP)</I></TD>
+</TR>
+<TR>
+<TD><CODE>ingV2V</CODE></TD>
+<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#V2V" TITLE="V2V - verb with NP and V complement">V2V</A></TD>
+<TD><I>e.g. prevent (noPrep NP) (from VP-ing)</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkVA</CODE></TD>
+<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#VA" TITLE="VA - adjective-complement verb">VA</A></TD>
+<TD><I>e.g. become (AP)</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkV2A</CODE></TD>
+<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#V2A" TITLE="V2A - verb with NP and AP complement">V2A</A></TD>
+<TD><I>e.g. paint (NP) (AP)</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkVQ</CODE></TD>
+<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#VQ" TITLE="VQ - question-complement verb">VQ</A></TD>
+<TD><I>e.g. wonder (QS)</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkV2Q</CODE></TD>
+<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#V2Q" TITLE="V2Q - verb with NP and Q complement">V2Q</A></TD>
+<TD><I>e.g. ask (NP) (QS)</I></TD>
+</TR>
+</TABLE>
+
+<A NAME="toc90"></A>
+<H2>Paradigms for Finnish</H2>
+
+<P>
+<a name="RParadigms"></a>
+</P>
+<P>
+source <A HREF="http://www.grammaticalframework.org/lib/src/finnish/ParadigmsFin.gf"><CODE>../src/finnish/ParadigmsFin.gf</CODE></A>
+</P>
+
+<TABLE BORDER="1" CELLPADDING="4">
+<TR>
+<TH>Function</TH>
+<TH>Type</TH>
+<TH COLSPAN="2">Explanation</TH>
+</TR>
+<TR>
+<TD><CODE>Number</CODE></TD>
+<TD><A HREF="#Type">Type</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>singular</CODE></TD>
+<TD><A HREF="#Number">Number</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>plural</CODE></TD>
+<TD><A HREF="#Number">Number</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>Case</CODE></TD>
+<TD><A HREF="#Type">Type</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>nominative</CODE></TD>
+<TD><A HREF="#Case">Case</A></TD>
+<TD><I>e.g. "talo"</I></TD>
+</TR>
+<TR>
+<TD><CODE>genitive</CODE></TD>
+<TD><A HREF="#Case">Case</A></TD>
+<TD><I>e.g. "talon"</I></TD>
+</TR>
+<TR>
+<TD><CODE>partitive</CODE></TD>
+<TD><A HREF="#Case">Case</A></TD>
+<TD><I>e.g. "taloa"</I></TD>
+</TR>
+<TR>
+<TD><CODE>essive</CODE></TD>
+<TD><A HREF="#Case">Case</A></TD>
+<TD><I>e.g. "talona"</I></TD>
+</TR>
+<TR>
+<TD><CODE>translative</CODE></TD>
+<TD><A HREF="#Case">Case</A></TD>
+<TD><I>e.g. "taloksi"</I></TD>
+</TR>
+<TR>
+<TD><CODE>inessive</CODE></TD>
+<TD><A HREF="#Case">Case</A></TD>
+<TD><I>e.g. "talossa"</I></TD>
+</TR>
+<TR>
+<TD><CODE>elative</CODE></TD>
+<TD><A HREF="#Case">Case</A></TD>
+<TD><I>e.g. "talosta"</I></TD>
+</TR>
+<TR>
+<TD><CODE>illative</CODE></TD>
+<TD><A HREF="#Case">Case</A></TD>
+<TD><I>e.g. "taloon"</I></TD>
+</TR>
+<TR>
+<TD><CODE>adessive</CODE></TD>
+<TD><A HREF="#Case">Case</A></TD>
+<TD><I>e.g. "talolla"</I></TD>
+</TR>
+<TR>
+<TD><CODE>ablative</CODE></TD>
+<TD><A HREF="#Case">Case</A></TD>
+<TD><I>e.g. "talolta"</I></TD>
+</TR>
+<TR>
+<TD><CODE>allative</CODE></TD>
+<TD><A HREF="#Case">Case</A></TD>
+<TD><I>e.g. "talolle"</I></TD>
+</TR>
+<TR>
+<TD><CODE>infFirst</CODE></TD>
+<TD><A HREF="#InfForm">InfForm</A></TD>
+<TD><I>e.g. "tehdä"</I></TD>
+</TR>
+<TR>
+<TD><CODE>infElat</CODE></TD>
+<TD><A HREF="#InfForm">InfForm</A></TD>
+<TD><I>e.g. "tekemästä"</I></TD>
+</TR>
+<TR>
+<TD><CODE>infIllat</CODE></TD>
+<TD><A HREF="#InfForm">InfForm</A></TD>
+<TD><I>e.g. "tekemään"</I></TD>
+</TR>
+<TR>
+<TD><CODE>prePrep</CODE></TD>
+<TD><A HREF="#Case">Case</A> <CODE>-&gt;</CODE> <CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A></TD>
+<TD><I>preposition, e.g. partitive "ilman"</I></TD>
+</TR>
+<TR>
+<TD><CODE>postPrep</CODE></TD>
+<TD><A HREF="#Case">Case</A> <CODE>-&gt;</CODE> <CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A></TD>
+<TD><I>postposition, e.g. genitive "takana"</I></TD>
+</TR>
+<TR>
+<TD><CODE>postGenPrep</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A></TD>
+<TD><I>genitive postposition, e.g. "takana"</I></TD>
+</TR>
+<TR>
+<TD><CODE>casePrep</CODE></TD>
+<TD><A HREF="#Case">Case</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A></TD>
+<TD><I>just case, e.g. adessive</I></TD>
+</TR>
+<TR>
+<TD><CODE>NK</CODE></TD>
+<TD><A HREF="#Type">Type</A></TD>
+<TD><I>Noun from DictFin (Kotus)</I></TD>
+</TR>
+<TR>
+<TD><CODE>AK</CODE></TD>
+<TD><A HREF="#Type">Type</A></TD>
+<TD><I>Adjective from DictFin (Kotus)</I></TD>
+</TR>
+<TR>
+<TD><CODE>VK</CODE></TD>
+<TD><A HREF="#Type">Type</A></TD>
+<TD><I>Verb from DictFin (Kotus)</I></TD>
+</TR>
+<TR>
+<TD><CODE>AdvK</CODE></TD>
+<TD><A HREF="#Type">Type</A></TD>
+<TD><I>Adverb from DictFin (Kotus)</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkN</CODE></TD>
+<TD><CODE>(kukko</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
+<TD><I>predictable nouns, covers 82%</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkN</CODE></TD>
+<TD><CODE>(savi,savia</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
+<TD><I>different pl.part</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkN</CODE></TD>
+<TD><CODE>(vesi,veden,vesiä</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
+<TD><I>also different sg.gen</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkN</CODE></TD>
+<TD><CODE>(vesi,veden,vesiä,vettä</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
+<TD><I>also different sg.part</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkN</CODE></TD>
+<TD><CODE>(olo,n,a,na,oon,jen,ja,ina,issa,ihin</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
+<TD><I>worst case, 10 forms</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkN</CODE></TD>
+<TD><CODE>(pika</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-&gt;</CODE> <CODE>(juna</CODE> <CODE>:</CODE> <CODE>N)</CODE> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
+<TD><I>compound with invariable prefix</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkN</CODE></TD>
+<TD><CODE>(oma</CODE> <CODE>:</CODE> <CODE>N)</CODE> <CODE>-&gt;</CODE> <CODE>(tunto</CODE> <CODE>:</CODE> <CODE>N)</CODE> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
+<TD><I>compound with inflecting prefix</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkN</CODE></TD>
+<TD><A HREF="#NK">NK</A> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
+<TD><I>noun from DictFin (Kotus)</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkN2</CODE></TD>
+<TD><A HREF="#N" TITLE="N - common noun">N</A> <CODE>-&gt;</CODE> <A HREF="#N2" TITLE="N2 - relational noun">N2</A></TD>
+<TD><I>relational noun with genitive</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkN2</CODE></TD>
+<TD><A HREF="#N" TITLE="N - common noun">N</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#N2" TITLE="N2 - relational noun">N2</A></TD>
+<TD><I>relational noun another prep.</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkN3</CODE></TD>
+<TD><A HREF="#N" TITLE="N - common noun">N</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#N3" TITLE="N3 - three-place relational noun">N3</A></TD>
+<TD><I>relation with two complements</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkPN</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#PN" TITLE="PN - proper name">PN</A></TD>
+<TD><I>predictable noun made into name</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkPN</CODE></TD>
+<TD><A HREF="#N" TITLE="N - common noun">N</A> <CODE>-&gt;</CODE> <A HREF="#PN" TITLE="PN - proper name">PN</A></TD>
+<TD><I>any noun made into name</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkA</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#A" TITLE="A - one-place adjective">A</A></TD>
+<TD><I>regular noun made into adjective</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkA</CODE></TD>
+<TD><A HREF="#N" TITLE="N - common noun">N</A> <CODE>-&gt;</CODE> <A HREF="#A" TITLE="A - one-place adjective">A</A></TD>
+<TD><I>any noun made into adjective</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkA</CODE></TD>
+<TD><A HREF="#N" TITLE="N - common noun">N</A> <CODE>-&gt;</CODE> <CODE>(kivempi,kivin</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-&gt;</CODE> <A HREF="#A" TITLE="A - one-place adjective">A</A></TD>
+<TD><I>deviating comparison forms</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkA</CODE></TD>
+<TD><CODE>(hyva,prmpi,pras</CODE> <CODE>:</CODE> <CODE>N)</CODE> <CODE>-&gt;</CODE> <CODE>(hyvin,pmmin,prhten</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-&gt;</CODE> <A HREF="#A" TITLE="A - one-place adjective">A</A></TD>
+<TD><I>worst case adj</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkA</CODE></TD>
+<TD><A HREF="#AK">AK</A> <CODE>-&gt;</CODE> <A HREF="#A" TITLE="A - one-place adjective">A</A></TD>
+<TD><I>adjective from DictFin (Kotus)</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkA2</CODE></TD>
+<TD><A HREF="#A" TITLE="A - one-place adjective">A</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#A2" TITLE="A2 - two-place adjective">A2</A></TD>
+<TD><I>e.g. "jaollinen" casePrep adessive</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkV</CODE></TD>
+<TD><CODE>(huutaa</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-&gt;</CODE> <A HREF="#V" TITLE="V - one-place verb">V</A></TD>
+<TD><I>predictable verbs, covers 90%</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkV</CODE></TD>
+<TD><CODE>(huutaa,huusi</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-&gt;</CODE> <A HREF="#V" TITLE="V - one-place verb">V</A></TD>
+<TD><I>deviating past 3sg</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkV</CODE></TD>
+<TD><CODE>(huutaa,huudan,huusi</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-&gt;</CODE> <A HREF="#V" TITLE="V - one-place verb">V</A></TD>
+<TD><I>also deviating pres. 1sg</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkV</CODE></TD>
+<TD><CODE>(huutaa,dan,taa,tavat,takaa,detaan,sin,si,sisi,tanut,dettu,tanee</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-&gt;</CODE> <A HREF="#V" TITLE="V - one-place verb">V</A></TD>
+<TD><I>worst-case verb</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkV</CODE></TD>
+<TD><A HREF="#VK">VK</A> <CODE>-&gt;</CODE> <A HREF="#V" TITLE="V - one-place verb">V</A></TD>
+<TD><I>verb from DictFin (Kotus)</I></TD>
+</TR>
+<TR>
+<TD><CODE>caseV</CODE></TD>
+<TD><A HREF="#Case">Case</A> <CODE>-&gt;</CODE> <A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#V" TITLE="V - one-place verb">V</A></TD>
+<TD><I>deviating subj. case, e.g. genitive "täytyä"</I></TD>
+</TR>
+<TR>
+<TD><CODE>vOlla</CODE></TD>
+<TD><A HREF="#V" TITLE="V - one-place verb">V</A></TD>
+<TD><I>the verb "be"</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkV2</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#V2" TITLE="V2 - two-place verb">V2</A></TD>
+<TD><I>predictable direct transitive</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkV2</CODE></TD>
+<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#V2" TITLE="V2 - two-place verb">V2</A></TD>
+<TD><I>direct transitive</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkV2</CODE></TD>
+<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#Case">Case</A> <CODE>-&gt;</CODE> <A HREF="#V2" TITLE="V2 - two-place verb">V2</A></TD>
+<TD><I>complement just case</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkV2</CODE></TD>
+<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#V2" TITLE="V2 - two-place verb">V2</A></TD>
+<TD><I>complement pre/postposition</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkV3</CODE></TD>
+<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#V3" TITLE="V3 - three-place verb">V3</A></TD>
+<TD><I>e.g. puhua, allative, elative</I></TD>
+</TR>
+<TR>
+<TD><CODE>dirV3</CODE></TD>
+<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#Case">Case</A> <CODE>-&gt;</CODE> <A HREF="#V3" TITLE="V3 - three-place verb">V3</A></TD>
+<TD><I>siirtää, (accusative), illative</I></TD>
+</TR>
+<TR>
+<TD><CODE>dirdirV3</CODE></TD>
+<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#V3" TITLE="V3 - three-place verb">V3</A></TD>
+<TD><I>antaa, (accusative), (allative)</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkVS</CODE></TD>
+<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#VS" TITLE="VS - sentence-complement verb">VS</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkV2S</CODE></TD>
+<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#V2S" TITLE="V2S - verb with NP and S complement">V2S</A></TD>
+<TD><I>e.g. "sanoa" allative</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkVV</CODE></TD>
+<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#VV" TITLE="VV - verb-phrase-complement verb">VV</A></TD>
+<TD><I>e.g. "alkaa"</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkVVf</CODE></TD>
+<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#InfForm">InfForm</A> <CODE>-&gt;</CODE> <A HREF="#VV" TITLE="VV - verb-phrase-complement verb">VV</A></TD>
+<TD><I>e.g. "ruveta" infIllat</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkV2V</CODE></TD>
+<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#V2V" TITLE="V2V - verb with NP and V complement">V2V</A></TD>
+<TD><I>e.g. "käskeä" genitive</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkV2Vf</CODE></TD>
+<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#InfForm">InfForm</A> <CODE>-&gt;</CODE> <A HREF="#V2V" TITLE="V2V - verb with NP and V complement">V2V</A></TD>
+<TD><I>e.g. "kieltää" partitive infElat</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkVA</CODE></TD>
+<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#VA" TITLE="VA - adjective-complement verb">VA</A></TD>
+<TD><I>e.g. "maistua" ablative</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkV2A</CODE></TD>
+<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#V2A" TITLE="V2A - verb with NP and AP complement">V2A</A></TD>
+<TD><I>e.g. "maalata" accusative translative</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkVQ</CODE></TD>
+<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#VQ" TITLE="VQ - question-complement verb">VQ</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkV2Q</CODE></TD>
+<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#V2Q" TITLE="V2Q - verb with NP and Q complement">V2Q</A></TD>
+<TD><I>e.g. "kysyä" ablative</I></TD>
+</TR>
+</TABLE>
+
+<A NAME="toc91"></A>
+<H2>Paradigms for French</H2>
+
+<P>
+<a name="RParadigms"></a>
+</P>
+<P>
+source <A HREF="http://www.grammaticalframework.org/lib/src/french/ParadigmsFre.gf"><CODE>../src/french/ParadigmsFre.gf</CODE></A>
+</P>
+
+<TABLE BORDER="1" CELLPADDING="4">
+<TR>
+<TH>Function</TH>
+<TH>Type</TH>
+<TH COLSPAN="2">Explanation</TH>
+</TR>
+<TR>
+<TD><CODE>Gender</CODE></TD>
+<TD><A HREF="#Type">Type</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>masculine</CODE></TD>
+<TD><A HREF="#Gender">Gender</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>feminine</CODE></TD>
+<TD><A HREF="#Gender">Gender</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>accusative</CODE></TD>
+<TD><A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A></TD>
+<TD><I>direct object case</I></TD>
+</TR>
+<TR>
+<TD><CODE>genitive</CODE></TD>
+<TD><A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A></TD>
+<TD><I>genitive, constructed with "de"</I></TD>
+</TR>
+<TR>
+<TD><CODE>dative</CODE></TD>
+<TD><A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A></TD>
+<TD><I>dative, usually constructed with "à"</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkPrep</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A></TD>
+<TD><I>preposition (other than "de" and "à")</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkN</CODE></TD>
+<TD><CODE>(cheval</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
+<TD><I>predictable, with variations like cheval-chevaux</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkN</CODE></TD>
+<TD><CODE>(oeil,yeux</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-&gt;</CODE> <A HREF="#Gender">Gender</A> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
+<TD><I>worst-case noun</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkN</CODE></TD>
+<TD><A HREF="#N" TITLE="N - common noun">N</A> <CODE>-&gt;</CODE> <CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
+<TD><I>compound noun, e.g. numéro + de téléphone</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkN2</CODE></TD>
+<TD><A HREF="#N" TITLE="N - common noun">N</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#N2" TITLE="N2 - relational noun">N2</A></TD>
+<TD><I>e.g. fille + genitive</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkN3</CODE></TD>
+<TD><A HREF="#N" TITLE="N - common noun">N</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#N3" TITLE="N3 - three-place relational noun">N3</A></TD>
+<TD><I>e.g. connection + genitive + dative</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkPN</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#PN" TITLE="PN - proper name">PN</A></TD>
+<TD><I>feminine if ends with "e", otherwise masculine</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkPN</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#Gender">Gender</A> <CODE>-&gt;</CODE> <A HREF="#PN" TITLE="PN - proper name">PN</A></TD>
+<TD><I>gender deviant from the simple rule</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkA</CODE></TD>
+<TD><CODE>(cher</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-&gt;</CODE> <A HREF="#A" TITLE="A - one-place adjective">A</A></TD>
+<TD><I>predictable, e.g. cher-chère</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkA</CODE></TD>
+<TD><CODE>(sec,seche</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-&gt;</CODE> <A HREF="#A" TITLE="A - one-place adjective">A</A></TD>
+<TD><I>unpredictable feminine</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkA</CODE></TD>
+<TD><CODE>(banal,banale,banaux,banalement</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-&gt;</CODE> <A HREF="#A" TITLE="A - one-place adjective">A</A></TD>
+<TD><I>worst-case adjective</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkA</CODE></TD>
+<TD><A HREF="#A" TITLE="A - one-place adjective">A</A> <CODE>-&gt;</CODE> <A HREF="#A" TITLE="A - one-place adjective">A</A> <CODE>-&gt;</CODE> <A HREF="#A" TITLE="A - one-place adjective">A</A></TD>
+<TD><I>irregular comparison, e.g. bon-meilleur</I></TD>
+</TR>
+<TR>
+<TD><CODE>prefixA</CODE></TD>
+<TD><A HREF="#A" TITLE="A - one-place adjective">A</A> <CODE>-&gt;</CODE> <A HREF="#A" TITLE="A - one-place adjective">A</A></TD>
+<TD><I>adjective that comes before noun, e.g. petit</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkA2</CODE></TD>
+<TD><A HREF="#A" TITLE="A - one-place adjective">A</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#A2" TITLE="A2 - two-place adjective">A2</A></TD>
+<TD><I>e.g. supérieur + dative</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkAdv</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#Adv" TITLE="Adv - verb-phrase-modifying adverb">Adv</A></TD>
+<TD><I>ordinary adverb</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkAdV</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#AdV" TITLE="Adv - verb-phrase-modifying adverb">AdV</A></TD>
+<TD><I>sentential adverb, e.g. toujours</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkAdA</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#AdA" TITLE="AdA - adjective-modifying adverb">AdA</A></TD>
+<TD><I>modify adjective, e.g. très</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkV</CODE></TD>
+<TD><CODE>(finir</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-&gt;</CODE> <A HREF="#V" TITLE="V - one-place verb">V</A></TD>
+<TD><I>regular 1/2/3 conjugation</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkV</CODE></TD>
+<TD><CODE>(jeter,jette,jettera</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-&gt;</CODE> <A HREF="#V" TITLE="V - one-place verb">V</A></TD>
+<TD><I>1st conjugation variations</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkV</CODE></TD>
+<TD><A HREF="#V2" TITLE="V2 - two-place verb">V2</A> <CODE>-&gt;</CODE> <A HREF="#V" TITLE="V - one-place verb">V</A></TD>
+<TD><I>make 2-place to 1-place (e.g. from IrregFre)</I></TD>
+</TR>
+<TR>
+<TD><CODE>etreV</CODE></TD>
+<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#V" TITLE="V - one-place verb">V</A></TD>
+<TD><I>force auxiliary to be être (default avoir)</I></TD>
+</TR>
+<TR>
+<TD><CODE>reflV</CODE></TD>
+<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#V" TITLE="V - one-place verb">V</A></TD>
+<TD><I>reflexive, implies auxiliary être, e.g. se demander</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkV2</CODE></TD>
+<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#V2" TITLE="V2 - two-place verb">V2</A></TD>
+<TD><I>direct transitive</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkV2</CODE></TD>
+<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#V2" TITLE="V2 - two-place verb">V2</A></TD>
+<TD><I>e.g. se fier + genitive</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkV3</CODE></TD>
+<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#V3" TITLE="V3 - three-place verb">V3</A></TD>
+<TD><I>donner (+ accusative + dative)</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkV3</CODE></TD>
+<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#V3" TITLE="V3 - three-place verb">V3</A></TD>
+<TD><I>placer (+ accusative) + dans</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkV3</CODE></TD>
+<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#V3" TITLE="V3 - three-place verb">V3</A></TD>
+<TD><I>parler + dative + genitive</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkVS</CODE></TD>
+<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#VS" TITLE="VS - sentence-complement verb">VS</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkV2S</CODE></TD>
+<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#V2S" TITLE="V2S - verb with NP and S complement">V2S</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkVV</CODE></TD>
+<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#VV" TITLE="VV - verb-phrase-complement verb">VV</A></TD>
+<TD><I>plain infinitive: "je veux parler"</I></TD>
+</TR>
+<TR>
+<TD><CODE>deVV</CODE></TD>
+<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#VV" TITLE="VV - verb-phrase-complement verb">VV</A></TD>
+<TD><I>"j'essaie de parler"</I></TD>
+</TR>
+<TR>
+<TD><CODE>aVV</CODE></TD>
+<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#VV" TITLE="VV - verb-phrase-complement verb">VV</A></TD>
+<TD><I>"j'arrive à parler"</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkV2V</CODE></TD>
+<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#V2V" TITLE="V2V - verb with NP and V complement">V2V</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkVA</CODE></TD>
+<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#VA" TITLE="VA - adjective-complement verb">VA</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkV2A</CODE></TD>
+<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#V2A" TITLE="V2A - verb with NP and AP complement">V2A</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkVQ</CODE></TD>
+<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#VQ" TITLE="VQ - question-complement verb">VQ</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkV2Q</CODE></TD>
+<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#V2Q" TITLE="V2Q - verb with NP and Q complement">V2Q</A></TD>
+<TD><I>-</I></TD>
+</TR>
+</TABLE>
+
+<A NAME="toc92"></A>
+<H2>Paradigms for German</H2>
+
+<P>
+<a name="RParadigms"></a>
+</P>
+<P>
+source <A HREF="http://www.grammaticalframework.org/lib/src/german/ParadigmsGer.gf"><CODE>../src/german/ParadigmsGer.gf</CODE></A>
+</P>
+
+<TABLE BORDER="1" CELLPADDING="4">
+<TR>
+<TH>Function</TH>
+<TH>Type</TH>
+<TH COLSPAN="2">Explanation</TH>
+</TR>
+<TR>
+<TD><CODE>Gender</CODE></TD>
+<TD><A HREF="#Type">Type</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>masculine</CODE></TD>
+<TD><A HREF="#Gender">Gender</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>feminine</CODE></TD>
+<TD><A HREF="#Gender">Gender</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>neuter</CODE></TD>
+<TD><A HREF="#Gender">Gender</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>Case</CODE></TD>
+<TD><A HREF="#Type">Type</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>nominative</CODE></TD>
+<TD><A HREF="#Case">Case</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>accusative</CODE></TD>
+<TD><A HREF="#Case">Case</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>dative</CODE></TD>
+<TD><A HREF="#Case">Case</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>genitive</CODE></TD>
+<TD><A HREF="#Case">Case</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>Number</CODE></TD>
+<TD><A HREF="#Type">Type</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>singular</CODE></TD>
+<TD><A HREF="#Number">Number</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>plural</CODE></TD>
+<TD><A HREF="#Number">Number</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkN</CODE></TD>
+<TD><CODE>(Stufe</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
+<TD><I>die Stufe-Stufen, der Tisch-Tische</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkN</CODE></TD>
+<TD><CODE>(Bild,Bilder</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-&gt;</CODE> <A HREF="#Gender">Gender</A> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
+<TD><I>sg and pl nom, and gender</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkN</CODE></TD>
+<TD><CODE>(x1,_,_,_,_,x6</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-&gt;</CODE> <A HREF="#Gender">Gender</A> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
+<TD><I>worst case: mann, mann, manne, mannes, männer, männern</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkN2</CODE></TD>
+<TD><A HREF="#N" TITLE="N - common noun">N</A> <CODE>-&gt;</CODE> <A HREF="#N2" TITLE="N2 - relational noun">N2</A></TD>
+<TD><I>noun + von</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkN2</CODE></TD>
+<TD><A HREF="#N" TITLE="N - common noun">N</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#N2" TITLE="N2 - relational noun">N2</A></TD>
+<TD><I>noun + other preposition</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkN3</CODE></TD>
+<TD><A HREF="#N" TITLE="N - common noun">N</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#N3" TITLE="N3 - three-place relational noun">N3</A></TD>
+<TD><I>noun + two prepositions</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkPN</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#PN" TITLE="PN - proper name">PN</A></TD>
+<TD><I>regular name with genitive in "s"</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkPN</CODE></TD>
+<TD><CODE>(nom,gen</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-&gt;</CODE> <A HREF="#PN" TITLE="PN - proper name">PN</A></TD>
+<TD><I>name with other genitive</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkPN</CODE></TD>
+<TD><CODE>(nom,acc,dat,gen</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-&gt;</CODE> <A HREF="#PN" TITLE="PN - proper name">PN</A></TD>
+<TD><I>name with all case forms</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkA</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#A" TITLE="A - one-place adjective">A</A></TD>
+<TD><I>regular adjective, works for most cases</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkA</CODE></TD>
+<TD><CODE>(gut,besser,beste</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-&gt;</CODE> <A HREF="#A" TITLE="A - one-place adjective">A</A></TD>
+<TD><I>irregular comparison</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkA</CODE></TD>
+<TD><CODE>(gut,gute,besser,beste</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-&gt;</CODE> <A HREF="#A" TITLE="A - one-place adjective">A</A></TD>
+<TD><I>irregular positive if ending added</I></TD>
+</TR>
+<TR>
+<TD><CODE>invarA</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#A" TITLE="A - one-place adjective">A</A></TD>
+<TD><I>invariable, e.g. prima</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkA2</CODE></TD>
+<TD><A HREF="#A" TITLE="A - one-place adjective">A</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#A2" TITLE="A2 - two-place adjective">A2</A></TD>
+<TD><I>e.g. teilbar + durch</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkAdv</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#Adv" TITLE="Adv - verb-phrase-modifying adverb">Adv</A></TD>
+<TD><I>adverbs have just one form anyway</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkPrep</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#Case">Case</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A></TD>
+<TD><I>e.g. "durch" + accusative</I></TD>
+</TR>
+<TR>
+<TD><CODE>accPrep</CODE></TD>
+<TD><A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A></TD>
+<TD><I>no string, just accusative case</I></TD>
+</TR>
+<TR>
+<TD><CODE>datPrep</CODE></TD>
+<TD><A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A></TD>
+<TD><I>no string, just dative case</I></TD>
+</TR>
+<TR>
+<TD><CODE>genPrep</CODE></TD>
+<TD><A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A></TD>
+<TD><I>no string, just genitive case</I></TD>
+</TR>
+<TR>
+<TD><CODE>von_Prep</CODE></TD>
+<TD><A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A></TD>
+<TD><I>von + dative</I></TD>
+</TR>
+<TR>
+<TD><CODE>zu_Prep</CODE></TD>
+<TD><A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A></TD>
+<TD><I>zu + dative, with contractions zum, zur</I></TD>
+</TR>
+<TR>
+<TD><CODE>anDat_Prep</CODE></TD>
+<TD><A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A></TD>
+<TD><I>an + dative, with contraction am</I></TD>
+</TR>
+<TR>
+<TD><CODE>inDat_Prep</CODE></TD>
+<TD><A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A></TD>
+<TD><I>in + dative, with contraction ins</I></TD>
+</TR>
+<TR>
+<TD><CODE>inAcc_Prep</CODE></TD>
+<TD><A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A></TD>
+<TD><I>in + accusative, with contraction im</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkV</CODE></TD>
+<TD><CODE>(führen</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-&gt;</CODE> <A HREF="#V" TITLE="V - one-place verb">V</A></TD>
+<TD><I>regular verb</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkV</CODE></TD>
+<TD><CODE>(sehen,sieht,sah,sähe,gesehen</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-&gt;</CODE> <A HREF="#V" TITLE="V - one-place verb">V</A></TD>
+<TD><I>irregular verb theme</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkV</CODE></TD>
+<TD><CODE>(geben,</CODE> <CODE>gibt,</CODE> <CODE>gib,</CODE> <CODE>gab,</CODE> <CODE>gäbe,</CODE> <CODE>gegeben</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-&gt;</CODE> <A HREF="#V" TITLE="V - one-place verb">V</A></TD>
+<TD><I>worst-case verb</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkV</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#V" TITLE="V - one-place verb">V</A></TD>
+<TD><I>movable prefix, e.g. auf+fassen</I></TD>
+</TR>
+<TR>
+<TD><CODE>no_geV</CODE></TD>
+<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#V" TITLE="V - one-place verb">V</A></TD>
+<TD><I>no participle "ge", e.g. "bedeuten"</I></TD>
+</TR>
+<TR>
+<TD><CODE>fixprefixV</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#V" TITLE="V - one-place verb">V</A></TD>
+<TD><I>add prefix such as "be"; implies no_ge</I></TD>
+</TR>
+<TR>
+<TD><CODE>seinV</CODE></TD>
+<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#V" TITLE="V - one-place verb">V</A></TD>
+<TD><I>force "sein" as auxiliary</I></TD>
+</TR>
+<TR>
+<TD><CODE>habenV</CODE></TD>
+<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#V" TITLE="V - one-place verb">V</A></TD>
+<TD><I>force "haben" as auxiliary</I></TD>
+</TR>
+<TR>
+<TD><CODE>reflV</CODE></TD>
+<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#Case">Case</A> <CODE>-&gt;</CODE> <A HREF="#V" TITLE="V - one-place verb">V</A></TD>
+<TD><I>reflexive, with case</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkV2</CODE></TD>
+<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#V2" TITLE="V2 - two-place verb">V2</A></TD>
+<TD><I>direct object</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkV2</CODE></TD>
+<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#V2" TITLE="V2 - two-place verb">V2</A></TD>
+<TD><I>preposition for complement</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkV2</CODE></TD>
+<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#Case">Case</A> <CODE>-&gt;</CODE> <A HREF="#V2" TITLE="V2 - two-place verb">V2</A></TD>
+<TD><I>just case for complement</I></TD>
+</TR>
+<TR>
+<TD><CODE>accdatV3</CODE></TD>
+<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#V3" TITLE="V3 - three-place verb">V3</A></TD>
+<TD><I>geben + acc + dat</I></TD>
+</TR>
+<TR>
+<TD><CODE>dirV3</CODE></TD>
+<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#V3" TITLE="V3 - three-place verb">V3</A></TD>
+<TD><I>senden + acc + nach</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkV3</CODE></TD>
+<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#V3" TITLE="V3 - three-place verb">V3</A></TD>
+<TD><I>sprechen + mit + über</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkVS</CODE></TD>
+<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#VS" TITLE="VS - sentence-complement verb">VS</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkV2S</CODE></TD>
+<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#V2S" TITLE="V2S - verb with NP and S complement">V2S</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkVV</CODE></TD>
+<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#VV" TITLE="VV - verb-phrase-complement verb">VV</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkV2V</CODE></TD>
+<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#V2V" TITLE="V2V - verb with NP and V complement">V2V</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkVA</CODE></TD>
+<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#VA" TITLE="VA - adjective-complement verb">VA</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkV2A</CODE></TD>
+<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#V2A" TITLE="V2A - verb with NP and AP complement">V2A</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkVQ</CODE></TD>
+<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#VQ" TITLE="VQ - question-complement verb">VQ</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkV2Q</CODE></TD>
+<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#V2Q" TITLE="V2Q - verb with NP and Q complement">V2Q</A></TD>
+<TD><I>-</I></TD>
+</TR>
+</TABLE>
+
+<A NAME="toc93"></A>
+<H2>Paradigms for Italian</H2>
+
+<P>
+<a name="RParadigms"></a>
+</P>
+<P>
+source <A HREF="http://www.grammaticalframework.org/lib/src/italian/ParadigmsIta.gf"><CODE>../src/italian/ParadigmsIta.gf</CODE></A>
+</P>
+
+<TABLE BORDER="1" CELLPADDING="4">
+<TR>
+<TH>Function</TH>
+<TH>Type</TH>
+<TH COLSPAN="2">Explanation</TH>
+</TR>
+<TR>
+<TD><CODE>Gender</CODE></TD>
+<TD><A HREF="#Type">Type</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>masculine</CODE></TD>
+<TD><A HREF="#Gender">Gender</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>feminine</CODE></TD>
+<TD><A HREF="#Gender">Gender</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>Number</CODE></TD>
+<TD><A HREF="#Type">Type</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>singular</CODE></TD>
+<TD><A HREF="#Number">Number</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>plural</CODE></TD>
+<TD><A HREF="#Number">Number</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>--Prep</CODE></TD>
+<TD><A HREF="#Type">Type</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>accusative</CODE></TD>
+<TD><A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A></TD>
+<TD><I>direct object</I></TD>
+</TR>
+<TR>
+<TD><CODE>genitive</CODE></TD>
+<TD><A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A></TD>
+<TD><I>preposition "di" and its contractions</I></TD>
+</TR>
+<TR>
+<TD><CODE>dative</CODE></TD>
+<TD><A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A></TD>
+<TD><I>preposition "a" and its contractions</I></TD>
+</TR>
+<TR>
+<TD><CODE>con_Prep</CODE></TD>
+<TD><A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A></TD>
+<TD><I>preposition "con" and its contractions</I></TD>
+</TR>
+<TR>
+<TD><CODE>da_Prep</CODE></TD>
+<TD><A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A></TD>
+<TD><I>preposition "da" and its contractions</I></TD>
+</TR>
+<TR>
+<TD><CODE>in_Prep</CODE></TD>
+<TD><A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A></TD>
+<TD><I>preposition "in" and its contractions</I></TD>
+</TR>
+<TR>
+<TD><CODE>su_Prep</CODE></TD>
+<TD><A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A></TD>
+<TD><I>preposition "su" and its contractions</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkPrep</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A></TD>
+<TD><I>other prepositions, e.g. "dopo"</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkN</CODE></TD>
+<TD><CODE>(cane</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
+<TD><I>regular noun; fem for -"a", masc otherwise</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkN</CODE></TD>
+<TD><CODE>(carne</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-&gt;</CODE> <A HREF="#Gender">Gender</A> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
+<TD><I>override default gender</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkN</CODE></TD>
+<TD><CODE>(uomo,uomini</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-&gt;</CODE> <A HREF="#Gender">Gender</A> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
+<TD><I>worst case</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkN</CODE></TD>
+<TD><A HREF="#N" TITLE="N - common noun">N</A> <CODE>-&gt;</CODE> <CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
+<TD><I>compound such as "numero" + "di telefono"</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkN2</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#N2" TITLE="N2 - relational noun">N2</A></TD>
+<TD><I>regular with genitive, e.g. "figlio" + "di"</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkN2</CODE></TD>
+<TD><A HREF="#N" TITLE="N - common noun">N</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#N2" TITLE="N2 - relational noun">N2</A></TD>
+<TD><I>arbitrary noun and preposition</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkN3</CODE></TD>
+<TD><A HREF="#N" TITLE="N - common noun">N</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#N3" TITLE="N3 - three-place relational noun">N3</A></TD>
+<TD><I>e.g. volo + da + per</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkPN</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#PN" TITLE="PN - proper name">PN</A></TD>
+<TD><I>femininne for "-a", otherwise masculine</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkPN</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#Gender">Gender</A> <CODE>-&gt;</CODE> <A HREF="#PN" TITLE="PN - proper name">PN</A></TD>
+<TD><I>set gender manually</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkA</CODE></TD>
+<TD><CODE>(bianco</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-&gt;</CODE> <A HREF="#A" TITLE="A - one-place adjective">A</A></TD>
+<TD><I>predictable adjective</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkA</CODE></TD>
+<TD><CODE>(solo,sola,soli,sole,solamente</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-&gt;</CODE> <A HREF="#A" TITLE="A - one-place adjective">A</A></TD>
+<TD><I>irregular adjective</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkA</CODE></TD>
+<TD><A HREF="#A" TITLE="A - one-place adjective">A</A> <CODE>-&gt;</CODE> <A HREF="#A" TITLE="A - one-place adjective">A</A> <CODE>-&gt;</CODE> <A HREF="#A" TITLE="A - one-place adjective">A</A></TD>
+<TD><I>special comparison, e.g. buono - migliore</I></TD>
+</TR>
+<TR>
+<TD><CODE>prefixA</CODE></TD>
+<TD><A HREF="#A" TITLE="A - one-place adjective">A</A> <CODE>-&gt;</CODE> <A HREF="#A" TITLE="A - one-place adjective">A</A></TD>
+<TD><I>adjective that comes before noun (default: after)</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkA2</CODE></TD>
+<TD><A HREF="#A" TITLE="A - one-place adjective">A</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#A2" TITLE="A2 - two-place adjective">A2</A></TD>
+<TD><I>e.g. divisibile + per</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkAdv</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#Adv" TITLE="Adv - verb-phrase-modifying adverb">Adv</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkAdV</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#AdV" TITLE="Adv - verb-phrase-modifying adverb">AdV</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkAdA</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#AdA" TITLE="AdA - adjective-modifying adverb">AdA</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkV</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#V" TITLE="V - one-place verb">V</A></TD>
+<TD><I>regular verbs in "-are"/"-ire"</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkV</CODE></TD>
+<TD><A HREF="#Verbo">Verbo</A> <CODE>-&gt;</CODE> <A HREF="#V" TITLE="V - one-place verb">V</A></TD>
+<TD><I>verbs formed by BeschIta</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkV</CODE></TD>
+<TD><CODE>(udire,odo,ode,udiamo,udiro,udii,udisti,udi,udirono,odi,udito</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-&gt;</CODE> <A HREF="#V" TITLE="V - one-place verb">V</A></TD>
+<TD><I>worst case</I></TD>
+</TR>
+<TR>
+<TD><CODE>essereV</CODE></TD>
+<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#V" TITLE="V - one-place verb">V</A></TD>
+<TD><I>force "essere" as auxiliary (default avere)</I></TD>
+</TR>
+<TR>
+<TD><CODE>reflV</CODE></TD>
+<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#V" TITLE="V - one-place verb">V</A></TD>
+<TD><I>reflexive verb (implies essere)</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkV2</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#V2" TITLE="V2 - two-place verb">V2</A></TD>
+<TD><I>regular verb, direct object</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkV2</CODE></TD>
+<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#V2" TITLE="V2 - two-place verb">V2</A></TD>
+<TD><I>direct object</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkV2</CODE></TD>
+<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#V2" TITLE="V2 - two-place verb">V2</A></TD>
+<TD><I>prepositional object</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkV3</CODE></TD>
+<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#V3" TITLE="V3 - three-place verb">V3</A></TD>
+<TD><I>parlare, a, di</I></TD>
+</TR>
+<TR>
+<TD><CODE>dirV3</CODE></TD>
+<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#V3" TITLE="V3 - three-place verb">V3</A></TD>
+<TD><I>dare,_,a</I></TD>
+</TR>
+<TR>
+<TD><CODE>dirdirV3</CODE></TD>
+<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#V3" TITLE="V3 - three-place verb">V3</A></TD>
+<TD><I>dare,_,_</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkVS</CODE></TD>
+<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#VS" TITLE="VS - sentence-complement verb">VS</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkV2S</CODE></TD>
+<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#V2S" TITLE="V2S - verb with NP and S complement">V2S</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkVV</CODE></TD>
+<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#VV" TITLE="VV - verb-phrase-complement verb">VV</A></TD>
+<TD><I>plain infinitive: "voglio parlare"</I></TD>
+</TR>
+<TR>
+<TD><CODE>deVV</CODE></TD>
+<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#VV" TITLE="VV - verb-phrase-complement verb">VV</A></TD>
+<TD><I>"cerco di parlare"</I></TD>
+</TR>
+<TR>
+<TD><CODE>aVV</CODE></TD>
+<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#VV" TITLE="VV - verb-phrase-complement verb">VV</A></TD>
+<TD><I>"arrivo a parlare"</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkV2V</CODE></TD>
+<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#V2V" TITLE="V2V - verb with NP and V complement">V2V</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkVA</CODE></TD>
+<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#VA" TITLE="VA - adjective-complement verb">VA</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkV2A</CODE></TD>
+<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#V2A" TITLE="V2A - verb with NP and AP complement">V2A</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkVQ</CODE></TD>
+<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#VQ" TITLE="VQ - question-complement verb">VQ</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkV2Q</CODE></TD>
+<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#V2Q" TITLE="V2Q - verb with NP and Q complement">V2Q</A></TD>
+<TD><I>-</I></TD>
+</TR>
+</TABLE>
+
+<A NAME="toc94"></A>
+<H2>Paradigms for Nepali</H2>
+
+<P>
+<a name="RParadigms"></a>
+</P>
+<P>
+source <A HREF="http://www.grammaticalframework.org/lib/src/nepali/ParadigmsNep.gf"><CODE>../src/nepali/ParadigmsNep.gf</CODE></A>
+</P>
+
+<TABLE BORDER="1" CELLPADDING="4">
+<TR>
+<TH>Function</TH>
+<TH>Type</TH>
+<TH COLSPAN="2">Explanation</TH>
+</TR>
+<TR>
+<TD><CODE>masculine</CODE></TD>
+<TD><A HREF="#Gender">Gender</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>feminine</CODE></TD>
+<TD><A HREF="#Gender">Gender</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>singular</CODE></TD>
+<TD><A HREF="#Number">Number</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>plural</CODE></TD>
+<TD><A HREF="#Number">Number</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>human</CODE></TD>
+<TD><A HREF="#NType">NType</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>profession</CODE></TD>
+<TD><A HREF="#NType">NType</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>living</CODE></TD>
+<TD><A HREF="#NType">NType</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>regN</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A> <CODE>=</CODE> <CODE>\s</CODE> <CODE>-&gt;</CODE> <CODE>mkNReg</CODE> <CODE>s</CODE> <A HREF="#NonLiving">NonLiving</A> <CODE>Pers3_L</CODE> <CODE>**</CODE> <CODE>{lock_N=</CODE> <CODE>&lt;&gt;}</CODE></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>regN</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#NPerson">NPerson</A> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A> <CODE>=</CODE> <CODE>\s,h</CODE> <CODE>-&gt;</CODE> <CODE>mkNReg</CODE> <CODE>s</CODE> <A HREF="#NonLiving">NonLiving</A> <CODE>h</CODE> <CODE>**</CODE> <CODE>{lock_N=</CODE> <CODE>&lt;&gt;}</CODE></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>regN</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#NType">NType</A> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A> <CODE>=</CODE> <CODE>\s,t</CODE> <CODE>-&gt;</CODE> <CODE>mkNReg</CODE> <CODE>s</CODE> <CODE>t</CODE> <CODE>Pers3_L</CODE> <CODE>**</CODE> <CODE>{lock_N=</CODE> <CODE>&lt;&gt;}</CODE></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>regN</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#NType">NType</A> <CODE>-&gt;</CODE> <A HREF="#NPerson">NPerson</A> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A> <CODE>=</CODE> <CODE>\s,t,h</CODE> <CODE>-&gt;</CODE> <CODE>mkNReg</CODE> <CODE>s</CODE> <CODE>t</CODE> <CODE>h</CODE> <CODE>**</CODE> <CODE>{lock_N=</CODE> <CODE>&lt;&gt;}</CODE></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkNF</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A> <CODE>=</CODE> <CODE>\s</CODE> <CODE>-&gt;</CODE> <CODE>mkNFem</CODE> <CODE>s</CODE> <A HREF="#NonLiving">NonLiving</A> <CODE>Pers3_L</CODE> <CODE>**</CODE> <CODE>{lock_N=</CODE> <CODE>&lt;&gt;}</CODE></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkNF</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#NPerson">NPerson</A> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A> <CODE>=</CODE> <CODE>\s,h</CODE> <CODE>-&gt;</CODE> <CODE>mkNFem</CODE> <CODE>s</CODE> <A HREF="#NonLiving">NonLiving</A> <CODE>h</CODE> <CODE>**</CODE> <CODE>{lock_N=</CODE> <CODE>&lt;&gt;}</CODE></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkNF</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#NType">NType</A> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A> <CODE>=</CODE> <CODE>\s,t</CODE> <CODE>-&gt;</CODE> <CODE>mkNFem</CODE> <CODE>s</CODE> <CODE>t</CODE> <CODE>Pers3_L</CODE> <CODE>**</CODE> <CODE>{lock_N=</CODE> <CODE>&lt;&gt;}</CODE></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkNF</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#NType">NType</A> <CODE>-&gt;</CODE> <A HREF="#NPerson">NPerson</A> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A> <CODE>=</CODE> <CODE>\s,t,h</CODE> <CODE>-&gt;</CODE> <CODE>mkNFem</CODE> <CODE>s</CODE> <CODE>t</CODE> <CODE>h</CODE> <CODE>**</CODE> <CODE>{lock_N=</CODE> <CODE>&lt;&gt;}</CODE></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkNUC</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A> <CODE>=</CODE></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkNUC</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#Gender">Gender</A> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A> <CODE>=</CODE></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkNUC</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#Gender">Gender</A> <CODE>-&gt;</CODE> <A HREF="#NType">NType</A> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A> <CODE>=</CODE></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkNUC</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#Gender">Gender</A> <CODE>-&gt;</CODE> <A HREF="#NType">NType</A> <CODE>-&gt;</CODE> <A HREF="#NPerson">NPerson</A> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A> <CODE>=</CODE></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>--mkNUC</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#NType">NType</A> <CODE>-&gt;</CODE> <A HREF="#Gender">Gender</A> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A> <CODE>=</CODE> <CODE>\s,t,g</CODE> <CODE>-&gt;</CODE> <CODE>mkNUnc</CODE> <CODE>s</CODE> <CODE>g</CODE> <CODE>t</CODE> <CODE>**</CODE> <CODE>{lock_N=</CODE> <CODE>&lt;&gt;}</CODE></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkN2</CODE></TD>
+<TD><A HREF="#N" TITLE="N - common noun">N</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#N2" TITLE="N2 - relational noun">N2</A> <CODE>=</CODE></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkN2</CODE></TD>
+<TD><A HREF="#N" TITLE="N - common noun">N</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#NType">NType</A> <CODE>-&gt;</CODE> <A HREF="#N2" TITLE="N2 - relational noun">N2</A> <CODE>=</CODE></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkN2</CODE></TD>
+<TD><A HREF="#N" TITLE="N - common noun">N</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#NType">NType</A> <CODE>-&gt;</CODE> <A HREF="#NPerson">NPerson</A> <CODE>-&gt;</CODE> <A HREF="#N2" TITLE="N2 - relational noun">N2</A> <CODE>=</CODE></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkN2</CODE></TD>
+<TD><A HREF="#N" TITLE="N - common noun">N</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <CODE>Str</CODE> <CODE>-&gt;</CODE> <CODE>N2;</CODE></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkN3</CODE></TD>
+<TD><A HREF="#N" TITLE="N - common noun">N</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <CODE>Str-&gt;</CODE> <A HREF="#N3" TITLE="N3 - three-place relational noun">N3</A> <CODE>=</CODE></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkN3</CODE></TD>
+<TD><A HREF="#N" TITLE="N - common noun">N</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <CODE>Str-&gt;</CODE> <A HREF="#NType">NType</A> <CODE>-&gt;</CODE> <A HREF="#N3" TITLE="N3 - three-place relational noun">N3</A> <CODE>=</CODE></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkN3</CODE></TD>
+<TD><A HREF="#N" TITLE="N - common noun">N</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <CODE>Str-&gt;</CODE> <A HREF="#N3" TITLE="N3 - three-place relational noun">N3</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkCmpdNoun</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkPN</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#PN" TITLE="PN - proper name">PN</A> <CODE>=</CODE></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkPN</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#Gender">Gender</A> <CODE>-&gt;</CODE> <A HREF="#NPerson">NPerson</A> <CODE>-&gt;</CODE> <A HREF="#PN" TITLE="PN - proper name">PN</A> <CODE>=</CODE></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkPN</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#Gender">Gender</A> <CODE>-&gt;</CODE> <A HREF="#NType">NType</A> <CODE>-&gt;</CODE> <A HREF="#NPerson">NPerson</A> <CODE>-&gt;</CODE> <A HREF="#PN" TITLE="PN - proper name">PN</A> <CODE>=</CODE></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkPron</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#Number">Number</A> <CODE>-&gt;</CODE> <A HREF="#Gender">Gender</A> <CODE>-&gt;</CODE> <A HREF="#NPerson">NPerson</A> <CODE>-&gt;</CODE> <A HREF="#Pron" TITLE="Pron - personal pronoun">Pron</A> <CODE>=</CODE></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkPron</CODE></TD>
+<TD><CODE>(x1,_,_,_,_,_,x7</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-&gt;</CODE> <A HREF="#Number">Number</A> <CODE>-&gt;</CODE> <A HREF="#Gender">Gender</A> <CODE>-&gt;</CODE> <A HREF="#NPerson">NPerson</A> <CODE>-&gt;</CODE> <A HREF="#Pron" TITLE="Pron - personal pronoun">Pron</A> <CODE>=</CODE></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>demoPN</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <CODE>Str</CODE> <CODE>-&gt;</CODE> <CODE>Str</CODE> <CODE>-&gt;</CODE> <A 'HREF="#Quant" TITLE="Quant - quantifier ('nucleus' of Det)"'>Quant</A> <CODE>=</CODE></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkDet</CODE></TD>
+<TD><CODE>(s1,s2:Str)</CODE> <CODE>-&gt;</CODE> <A HREF="#Number">Number</A> <CODE>-&gt;</CODE> <A HREF="#Det" TITLE="Det - determiner phrase">Det</A> <CODE>=</CODE></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkDet</CODE></TD>
+<TD><CODE>(s1,s2,s3,s4:Str)</CODE> <CODE>-&gt;</CODE> <A HREF="#Number">Number</A> <CODE>-&gt;</CODE> <A HREF="#Det" TITLE="Det - determiner phrase">Det</A> <CODE>=</CODE></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkIDetn</CODE></TD>
+<TD><CODE>(s1,s2:Str)</CODE> <CODE>-&gt;</CODE> <A HREF="#Number">Number</A> <CODE>-&gt;</CODE> <A HREF="#IDet" TITLE="IDet - interrogative determiner">IDet</A> <CODE>=</CODE></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkIP</CODE></TD>
+<TD><CODE>(x1,x2,x3,x4:Str)</CODE> <CODE>-&gt;</CODE> <A HREF="#Number">Number</A> <CODE>-&gt;</CODE> <A HREF="#IP" TITLE="IP - interrogative pronoun">IP</A> <CODE>=</CODE></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkA</CODE></TD>
+<TD><CODE>Str-&gt;</CODE> <A HREF="#A" TITLE="A - one-place adjective">A</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkA</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#A2" TITLE="A2 - two-place adjective">A2</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkV</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>=</CODE></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkV2</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#V2" TITLE="V2 - two-place verb">V2</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkV2</CODE></TD>
+<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#V2" TITLE="V2 - two-place verb">V2</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkV2</CODE></TD>
+<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#V2" TITLE="V2 - two-place verb">V2</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkV3</CODE></TD>
+<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <CODE>Str</CODE> <CODE>-&gt;</CODE> <CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#V3" TITLE="V3 - three-place verb">V3</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkV2V</CODE></TD>
+<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <CODE>Str</CODE> <CODE>-&gt;</CODE> <CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#Bool">Bool</A> <CODE>-&gt;</CODE> <A HREF="#V2V" TITLE="V2V - verb with NP and V complement">V2V</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>compoundV</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>=</CODE> <CODE>\s,v</CODE> <CODE>-&gt;</CODE> <CODE>{s</CODE> <CODE>=</CODE> <CODE>\\vf</CODE> <CODE>=&gt;</CODE> <CODE>s</CODE> <CODE>++</CODE> <CODE>v.s</CODE> <CODE>!</CODE> <CODE>vf</CODE> <CODE>lock_V</CODE> <CODE>=</CODE> <CODE>&lt;&gt;}</CODE></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>compoundV</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#V2" TITLE="V2 - two-place verb">V2</A> <CODE>-&gt;</CODE> <A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>=</CODE> <CODE>\s,v</CODE> <CODE>-&gt;</CODE> <CODE>{s</CODE> <CODE>=</CODE> <CODE>\\vf</CODE> <CODE>=&gt;</CODE> <CODE>s</CODE> <CODE>++</CODE> <CODE>v.s</CODE> <CODE>!</CODE> <CODE>vf</CODE> <CODE>lock_V</CODE> <CODE>=</CODE> <CODE>&lt;&gt;}</CODE></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkAdv</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#Adv" TITLE="Adv - verb-phrase-modifying adverb">Adv</A></TD>
+<TD><I>e.g. today</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkAdV</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#AdV" TITLE="Adv - verb-phrase-modifying adverb">AdV</A></TD>
+<TD><I>e.g. always</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkAdA</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#AdA" TITLE="AdA - adjective-modifying adverb">AdA</A></TD>
+<TD><I>e.g. quite</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkAdN</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#AdN" TITLE="AdN - numeral-modifying adverb">AdN</A></TD>
+<TD><I>e.g. approximately</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkPrep</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>noPrep</CODE></TD>
+<TD><A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>--mkQuant</CODE></TD>
+<TD><A HREF="#Pron" TITLE="Pron - personal pronoun">Pron</A> <CODE>-&gt;</CODE> <A 'HREF="#Quant" TITLE="Quant - quantifier ('nucleus' of Det)"'>Quant</A> <CODE>=</CODE> <CODE>\p</CODE> <CODE>-&gt;</CODE> <CODE>{s</CODE> <CODE>=</CODE> <CODE>\\_,_,c</CODE> <CODE>=&gt;</CODE> <CODE>p.s!c</CODE> <CODE>lock_Quant</CODE> <CODE>=</CODE> <CODE>&lt;&gt;};</CODE></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkQuant</CODE></TD>
+<TD><CODE>(s1,s2,s3,s4:Str)</CODE> <CODE>-&gt;</CODE> <A 'HREF="#Quant" TITLE="Quant - quantifier ('nucleus' of Det)"'>Quant</A> <CODE>=</CODE></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkQuant</CODE></TD>
+<TD><CODE>(s1,s2:Str)</CODE> <CODE>-&gt;</CODE> <A 'HREF="#Quant" TITLE="Quant - quantifier ('nucleus' of Det)"'>Quant</A> <CODE>=</CODE></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkConj</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#Conj" TITLE="Conj - conjunction">Conj</A></TD>
+<TD><I>and (plural agreement)</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkConj</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#Number">Number</A> <CODE>-&gt;</CODE> <A HREF="#Conj" TITLE="Conj - conjunction">Conj</A></TD>
+<TD><I>or (agrement number given as argument)</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkConj</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#Conj" TITLE="Conj - conjunction">Conj</A></TD>
+<TD><I>both ... and (plural)</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkConj</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#Number">Number</A> <CODE>-&gt;</CODE> <A HREF="#Conj" TITLE="Conj - conjunction">Conj</A></TD>
+<TD><I>either ... or (agrement number given as argument)</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkConj</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#Conj" TITLE="Conj - conjunction">Conj</A> <CODE>=</CODE> <CODE>\y</CODE> <CODE>-&gt;</CODE> <CODE>mk2Conj</CODE> <CODE>[]</CODE> <CODE>y</CODE> <CODE>plural</CODE></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkConj</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#Number">Number</A> <CODE>-&gt;</CODE> <A HREF="#Conj" TITLE="Conj - conjunction">Conj</A> <CODE>=</CODE> <CODE>\y,n</CODE> <CODE>-&gt;</CODE> <CODE>mk2Conj</CODE> <CODE>[]</CODE> <CODE>y</CODE> <CODE>n</CODE></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkConj</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#Conj" TITLE="Conj - conjunction">Conj</A> <CODE>=</CODE> <CODE>\x,y</CODE> <CODE>-&gt;</CODE> <CODE>mk2Conj</CODE> <CODE>x</CODE> <CODE>y</CODE> <CODE>plural</CODE></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkConj</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#Number">Number</A> <CODE>-&gt;</CODE> <A HREF="#Conj" TITLE="Conj - conjunction">Conj</A> <CODE>=</CODE> <CODE>mk2Conj</CODE></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mk2Conj</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#Number">Number</A> <CODE>-&gt;</CODE> <A HREF="#Conj" TITLE="Conj - conjunction">Conj</A> <CODE>=</CODE> <CODE>\x,y,n</CODE> <CODE>-&gt;</CODE></TD>
+<TD><I>-</I></TD>
+</TR>
+</TABLE>
+
+<A NAME="toc95"></A>
+<H2>Paradigms for Norwegian</H2>
+
+<P>
+<a name="RParadigms"></a>
+</P>
+<P>
+source <A HREF="http://www.grammaticalframework.org/lib/src/norwegian/ParadigmsNor.gf"><CODE>../src/norwegian/ParadigmsNor.gf</CODE></A>
+</P>
+
+<TABLE BORDER="1" CELLPADDING="4">
+<TR>
+<TH>Function</TH>
+<TH>Type</TH>
+<TH COLSPAN="2">Explanation</TH>
+</TR>
+<TR>
+<TD><CODE>Gender</CODE></TD>
+<TD><A HREF="#Type">Type</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>masculine</CODE></TD>
+<TD><A HREF="#Gender">Gender</A></TD>
+<TD><I>the "en" gender</I></TD>
+</TR>
+<TR>
+<TD><CODE>feminine</CODE></TD>
+<TD><A HREF="#Gender">Gender</A></TD>
+<TD><I>the "ei" gender</I></TD>
+</TR>
+<TR>
+<TD><CODE>neutrum</CODE></TD>
+<TD><A HREF="#Gender">Gender</A></TD>
+<TD><I>the "et" gender</I></TD>
+</TR>
+<TR>
+<TD><CODE>Number</CODE></TD>
+<TD><A HREF="#Type">Type</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>singular</CODE></TD>
+<TD><A HREF="#Number">Number</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>plural</CODE></TD>
+<TD><A HREF="#Number">Number</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkPrep</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A></TD>
+<TD><I>e.g. "etter"</I></TD>
+</TR>
+<TR>
+<TD><CODE>noPrep</CODE></TD>
+<TD><A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A></TD>
+<TD><I>empty string</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkN</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
+<TD><I>predictable noun, feminine for "-e" otherwise masculine</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkN</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#Gender">Gender</A> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
+<TD><I>force gender</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkN</CODE></TD>
+<TD><CODE>(dreng,drengen,drenger,drengene</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
+<TD><I>worst case</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkN2</CODE></TD>
+<TD><A HREF="#N" TITLE="N - common noun">N</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#N2" TITLE="N2 - relational noun">N2</A></TD>
+<TD><I>e.g. datter + til</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkN3</CODE></TD>
+<TD><A HREF="#N" TITLE="N - common noun">N</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#N3" TITLE="N3 - three-place relational noun">N3</A></TD>
+<TD><I>e.g forbindelse + fra + til</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkPN</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#PN" TITLE="PN - proper name">PN</A></TD>
+<TD><I>masculine</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkPN</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#Gender">Gender</A> <CODE>-&gt;</CODE> <A HREF="#PN" TITLE="PN - proper name">PN</A></TD>
+<TD><I>force gender</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkA</CODE></TD>
+<TD><CODE>(fin</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-&gt;</CODE> <A HREF="#A" TITLE="A - one-place adjective">A</A></TD>
+<TD><I>predictable adjective</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkA</CODE></TD>
+<TD><CODE>(fin,fint</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-&gt;</CODE> <A HREF="#A" TITLE="A - one-place adjective">A</A></TD>
+<TD><I>deviant neuter</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkA</CODE></TD>
+<TD><CODE>(galen,galet,galne</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-&gt;</CODE> <A HREF="#A" TITLE="A - one-place adjective">A</A></TD>
+<TD><I>also plural deviant</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkA</CODE></TD>
+<TD><CODE>(stor,stort,store,storre,storst</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-&gt;</CODE> <A HREF="#A" TITLE="A - one-place adjective">A</A></TD>
+<TD><I>worst case</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkA</CODE></TD>
+<TD><A HREF="#A" TITLE="A - one-place adjective">A</A> <CODE>-&gt;</CODE> <A HREF="#A" TITLE="A - one-place adjective">A</A></TD>
+<TD><I>comparison with mer/mest, e.g. "norsk"</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkA2</CODE></TD>
+<TD><A HREF="#A" TITLE="A - one-place adjective">A</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#A2" TITLE="A2 - two-place adjective">A2</A></TD>
+<TD><I>e.g. gift + med</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkAdv</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#Adv" TITLE="Adv - verb-phrase-modifying adverb">Adv</A></TD>
+<TD><I>e.g. her</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkAdV</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#AdV" TITLE="Adv - verb-phrase-modifying adverb">AdV</A></TD>
+<TD><I>e.g. altid</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkAdA</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#AdA" TITLE="AdA - adjective-modifying adverb">AdA</A></TD>
+<TD><I>e.g. mye</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkV</CODE></TD>
+<TD><CODE>(snakke</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-&gt;</CODE> <A HREF="#V" TITLE="V - one-place verb">V</A></TD>
+<TD><I>regular verb (first conjugation)</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkV</CODE></TD>
+<TD><CODE>(leve,levde</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-&gt;</CODE> <A HREF="#V" TITLE="V - one-place verb">V</A></TD>
+<TD><I>other past tense</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkV</CODE></TD>
+<TD><CODE>(drikke,</CODE> <CODE>drakk,</CODE> <CODE>drukket</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-&gt;</CODE> <A HREF="#V" TITLE="V - one-place verb">V</A></TD>
+<TD><I>theme of irregular verb</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkV</CODE></TD>
+<TD><CODE>(spise,spiser,spises,spiste,spist,spis</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-&gt;</CODE> <A HREF="#V" TITLE="V - one-place verb">V</A></TD>
+<TD><I>worst case</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkV</CODE></TD>
+<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#V" TITLE="V - one-place verb">V</A></TD>
+<TD><I>verb with particle, e.g. lukke + opp</I></TD>
+</TR>
+<TR>
+<TD><CODE>vaereV</CODE></TD>
+<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#V" TITLE="V - one-place verb">V</A></TD>
+<TD><I>force "være" as auxiliary (default "have")</I></TD>
+</TR>
+<TR>
+<TD><CODE>depV</CODE></TD>
+<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#V" TITLE="V - one-place verb">V</A></TD>
+<TD><I>deponent, e.g "trives"</I></TD>
+</TR>
+<TR>
+<TD><CODE>reflV</CODE></TD>
+<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#V" TITLE="V - one-place verb">V</A></TD>
+<TD><I>reflexive, e.g. "forestille seg"</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkV2</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#V2" TITLE="V2 - two-place verb">V2</A></TD>
+<TD><I>regular, direct object</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkV2</CODE></TD>
+<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#V2" TITLE="V2 - two-place verb">V2</A></TD>
+<TD><I>direct object</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkV2</CODE></TD>
+<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#V2" TITLE="V2 - two-place verb">V2</A></TD>
+<TD><I>preposition for complement</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkV3</CODE></TD>
+<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#V3" TITLE="V3 - three-place verb">V3</A></TD>
+<TD><I>snakke, med, om</I></TD>
+</TR>
+<TR>
+<TD><CODE>dirV3</CODE></TD>
+<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#V3" TITLE="V3 - three-place verb">V3</A></TD>
+<TD><I>gi,_,til</I></TD>
+</TR>
+<TR>
+<TD><CODE>dirdirV3</CODE></TD>
+<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#V3" TITLE="V3 - three-place verb">V3</A></TD>
+<TD><I>gi,_,_</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkVS</CODE></TD>
+<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#VS" TITLE="VS - sentence-complement verb">VS</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkV2S</CODE></TD>
+<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#V2S" TITLE="V2S - verb with NP and S complement">V2S</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkVV</CODE></TD>
+<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#VV" TITLE="VV - verb-phrase-complement verb">VV</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkV2V</CODE></TD>
+<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#V2V" TITLE="V2V - verb with NP and V complement">V2V</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkVA</CODE></TD>
+<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#VA" TITLE="VA - adjective-complement verb">VA</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkV2A</CODE></TD>
+<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#V2A" TITLE="V2A - verb with NP and AP complement">V2A</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkVQ</CODE></TD>
+<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#VQ" TITLE="VQ - question-complement verb">VQ</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkV2Q</CODE></TD>
+<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#V2Q" TITLE="V2Q - verb with NP and Q complement">V2Q</A></TD>
+<TD><I>-</I></TD>
+</TR>
+</TABLE>
+
+<A NAME="toc96"></A>
+<H2>Paradigms for Polish</H2>
+
+<P>
+<a name="RParadigms"></a>
+</P>
+<P>
+source <A HREF="http://www.grammaticalframework.org/lib/src/polish/ParadigmsPol.gf"><CODE>../src/polish/ParadigmsPol.gf</CODE></A>
+</P>
+
+<A NAME="toc97"></A>
+<H2>Paradigms for Punjabi</H2>
+
+<P>
+<a name="RParadigms"></a>
+</P>
+<P>
+source <A HREF="http://www.grammaticalframework.org/lib/src/punjabi/ParadigmsPnb.gf"><CODE>../src/punjabi/ParadigmsPnb.gf</CODE></A>
+</P>
+
+<TABLE BORDER="1" CELLPADDING="4">
+<TR>
+<TH>Function</TH>
+<TH>Type</TH>
+<TH COLSPAN="2">Explanation</TH>
+</TR>
+<TR>
+<TD><CODE>masculine</CODE></TD>
+<TD><A HREF="#Gender">Gender</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>feminine</CODE></TD>
+<TD><A HREF="#Gender">Gender</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>singular</CODE></TD>
+<TD><CODE>Number;</CODE></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>plural</CODE></TD>
+<TD><CODE>Number;</CODE></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkN2</CODE></TD>
+<TD><A HREF="#N" TITLE="N - common noun">N</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <CODE>Str</CODE> <CODE>-&gt;</CODE> <CODE>N2;</CODE></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkN3</CODE></TD>
+<TD><A HREF="#N" TITLE="N - common noun">N</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <CODE>Str</CODE> <CODE>-&gt;</CODE> <CODE>Str-&gt;</CODE> <A HREF="#N3" TITLE="N3 - three-place relational noun">N3</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkCmpdNoun</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkPN</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#PN" TITLE="PN - proper name">PN</A> <CODE>=</CODE></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkPN</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#Gender">Gender</A> <CODE>-&gt;</CODE> <A HREF="#PN" TITLE="PN - proper name">PN</A> <CODE>=</CODE></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>personalPN</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <CODE>Str</CODE> <CODE>-&gt;</CODE> <CODE>Str</CODE> <CODE>-&gt;</CODE> <CODE>Str</CODE> <CODE>-&gt;</CODE> <CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#Number">Number</A> <CODE>-&gt;</CODE> <A HREF="#Gender">Gender</A> <CODE>-&gt;</CODE> <A HREF="#PPerson">PPerson</A> <CODE>-&gt;</CODE> <A HREF="#Pron" TITLE="Pron - personal pronoun">Pron</A> <CODE>=</CODE></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>demoPN</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <CODE>Str</CODE> <CODE>-&gt;</CODE> <CODE>Str</CODE> <CODE>-&gt;</CODE> <A 'HREF="#Quant" TITLE="Quant - quantifier ('nucleus' of Det)"'>Quant</A> <CODE>=</CODE></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkDet</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <CODE>Str</CODE> <CODE>-&gt;</CODE> <CODE>Str</CODE> <CODE>-&gt;</CODE> <CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#Number">Number</A> <CODE>-&gt;</CODE> <A HREF="#Det" TITLE="Det - determiner phrase">Det</A> <CODE>=</CODE></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkIP</CODE></TD>
+<TD><CODE>(x1,x2,x3,x4:Str)</CODE> <CODE>-&gt;</CODE> <A HREF="#Number">Number</A> <CODE>-&gt;</CODE> <A HREF="#Gender">Gender</A> <CODE>-&gt;</CODE> <A HREF="#IP" TITLE="IP - interrogative pronoun">IP</A> <CODE>=</CODE></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkAdN</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#AdN" TITLE="AdN - numeral-modifying adverb">AdN</A> <CODE>=</CODE> <CODE>\s</CODE> <CODE>-&gt;</CODE> <CODE>ss</CODE> <CODE>s</CODE></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkA</CODE></TD>
+<TD><CODE>Str-&gt;</CODE> <A HREF="#A" TITLE="A - one-place adjective">A</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkA</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#A2" TITLE="A2 - two-place adjective">A2</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkV</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#V" TITLE="V - one-place verb">V</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkV2</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#V2" TITLE="V2 - two-place verb">V2</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkV2</CODE></TD>
+<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#V2" TITLE="V2 - two-place verb">V2</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkV2</CODE></TD>
+<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#V2" TITLE="V2 - two-place verb">V2</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkV3</CODE></TD>
+<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <CODE>Str</CODE> <CODE>-&gt;</CODE> <CODE>Str</CODE> <CODE>-&gt;</CODE> <CODE>V3;</CODE></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkV2V</CODE></TD>
+<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <CODE>Str</CODE> <CODE>-&gt;</CODE> <CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#Bool">Bool</A> <CODE>-&gt;</CODE> <A HREF="#V2V" TITLE="V2V - verb with NP and V complement">V2V</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>compoundV</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>=</CODE> <CODE>\s,v</CODE> <CODE>-&gt;</CODE> <CODE>{s</CODE> <CODE>=</CODE> <CODE>\\vf</CODE> <CODE>=&gt;</CODE> <CODE>s</CODE> <CODE>++</CODE> <CODE>v.s</CODE> <CODE>!</CODE> <CODE>vf</CODE> <CODE>lock_V</CODE> <CODE>=</CODE> <CODE>&lt;&gt;}</CODE></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>compoundV</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#V2" TITLE="V2 - two-place verb">V2</A> <CODE>-&gt;</CODE> <A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>=</CODE> <CODE>\s,v</CODE> <CODE>-&gt;</CODE> <CODE>{s</CODE> <CODE>=</CODE> <CODE>\\vf</CODE> <CODE>=&gt;</CODE> <CODE>s</CODE> <CODE>++</CODE> <CODE>v.s</CODE> <CODE>!</CODE> <CODE>vf</CODE> <CODE>lock_V</CODE> <CODE>=</CODE> <CODE>&lt;&gt;}</CODE></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkAdv</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#Adv" TITLE="Adv - verb-phrase-modifying adverb">Adv</A> <CODE>=</CODE> <CODE>\str</CODE> <CODE>-&gt;</CODE> <CODE>{s</CODE> <CODE>=\\</CODE> <CODE>_</CODE> <CODE>=&gt;</CODE> <CODE>str</CODE> <CODE>lock_Adv</CODE> <CODE>=</CODE> <CODE>&lt;&gt;};</CODE></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkPrep</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkQuant1</CODE></TD>
+<TD><A HREF="#Pron" TITLE="Pron - personal pronoun">Pron</A> <CODE>-&gt;</CODE> <A 'HREF="#Quant" TITLE="Quant - quantifier ('nucleus' of Det)"'>Quant</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkIQuant</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <CODE>Str</CODE> <CODE>-&gt;</CODE> <CODE>Str</CODE> <CODE>-&gt;</CODE> <CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#IQuant">IQuant</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkQuant1</CODE></TD>
+<TD><A HREF="#Pron" TITLE="Pron - personal pronoun">Pron</A> <CODE>-&gt;</CODE> <A 'HREF="#Quant" TITLE="Quant - quantifier ('nucleus' of Det)"'>Quant</A> <CODE>=</CODE> <CODE>\p</CODE> <CODE>-&gt;</CODE> <CODE>{s</CODE> <CODE>=</CODE> <CODE>\\_,_,c</CODE> <CODE>=&gt;</CODE> <CODE>p.s!c</CODE> <CODE>;a</CODE> <CODE>=</CODE> <CODE>p.a</CODE> <CODE>lock_Quant</CODE> <CODE>=</CODE> <CODE>&lt;&gt;};</CODE></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkConj</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#Conj" TITLE="Conj - conjunction">Conj</A></TD>
+<TD><I>and (plural agreement)</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkConj</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#Number">Number</A> <CODE>-&gt;</CODE> <A HREF="#Conj" TITLE="Conj - conjunction">Conj</A></TD>
+<TD><I>or (agrement number given as argument)</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkConj</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#Conj" TITLE="Conj - conjunction">Conj</A></TD>
+<TD><I>both ... and (plural)</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkConj</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#Number">Number</A> <CODE>-&gt;</CODE> <A HREF="#Conj" TITLE="Conj - conjunction">Conj</A></TD>
+<TD><I>either ... or (agrement number given as argument)</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkConj</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#Conj" TITLE="Conj - conjunction">Conj</A> <CODE>=</CODE> <CODE>\y</CODE> <CODE>-&gt;</CODE> <CODE>mk2Conj</CODE> <CODE>[]</CODE> <CODE>y</CODE> <CODE>plural</CODE></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkConj</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#Number">Number</A> <CODE>-&gt;</CODE> <A HREF="#Conj" TITLE="Conj - conjunction">Conj</A> <CODE>=</CODE> <CODE>\y,n</CODE> <CODE>-&gt;</CODE> <CODE>mk2Conj</CODE> <CODE>[]</CODE> <CODE>y</CODE> <CODE>n</CODE></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkConj</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#Conj" TITLE="Conj - conjunction">Conj</A> <CODE>=</CODE> <CODE>\x,y</CODE> <CODE>-&gt;</CODE> <CODE>mk2Conj</CODE> <CODE>x</CODE> <CODE>y</CODE> <CODE>plural</CODE></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkConj</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#Number">Number</A> <CODE>-&gt;</CODE> <A HREF="#Conj" TITLE="Conj - conjunction">Conj</A> <CODE>=</CODE> <CODE>mk2Conj</CODE></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mk2Conj</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#Number">Number</A> <CODE>-&gt;</CODE> <A HREF="#Conj" TITLE="Conj - conjunction">Conj</A> <CODE>=</CODE> <CODE>\x,y,n</CODE> <CODE>-&gt;</CODE></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkVV</CODE></TD>
+<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#VV" TITLE="VV - verb-phrase-complement verb">VV</A> <CODE>=</CODE> <CODE>\v</CODE> <CODE>-&gt;</CODE> <CODE>lin</CODE> <A HREF="#VV" TITLE="VV - verb-phrase-complement verb">VV</A> <CODE>(v</CODE> <CODE>**</CODE> <CODE>{isAux</CODE> <CODE>=</CODE> <CODE>False});</CODE></TD>
+<TD><I>-</I></TD>
+</TR>
+</TABLE>
+
+<A NAME="toc98"></A>
+<H2>Paradigms for Romanian</H2>
+
+<P>
+<a name="RParadigms"></a>
+</P>
+<P>
+source <A HREF="http://www.grammaticalframework.org/lib/src/romanian/ParadigmsRon.gf"><CODE>../src/romanian/ParadigmsRon.gf</CODE></A>
+</P>
+
+<TABLE BORDER="1" CELLPADDING="4">
+<TR>
+<TH>Function</TH>
+<TH>Type</TH>
+<TH COLSPAN="2">Explanation</TH>
+</TR>
+<TR>
+<TD><CODE>NGender</CODE></TD>
+<TD><A HREF="#Type">Type</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>masculine</CODE></TD>
+<TD><A HREF="#NGender">NGender</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>feminine</CODE></TD>
+<TD><A HREF="#NGender">NGender</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>neuter</CODE></TD>
+<TD><A HREF="#NGender">NGender</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>Gender</CODE></TD>
+<TD><A HREF="#Type">Type</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>Masculine</CODE></TD>
+<TD><A HREF="#Gender">Gender</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>Feminine</CODE></TD>
+<TD><A HREF="#Gender">Gender</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>Anim</CODE></TD>
+<TD><A HREF="#Type">Type</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>animate</CODE></TD>
+<TD><A HREF="#Anim">Anim</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>inanimate</CODE></TD>
+<TD><CODE>Anim;</CODE></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>Number</CODE></TD>
+<TD><A HREF="#Type">Type</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>singular</CODE></TD>
+<TD><A HREF="#Number">Number</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>plural</CODE></TD>
+<TD><A HREF="#Number">Number</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>Preposition</CODE></TD>
+<TD><A HREF="#Type">Type</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>NCase</CODE></TD>
+<TD><A HREF="#Type">Type</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>Acc</CODE></TD>
+<TD><A HREF="#NCase">NCase</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>Dat</CODE></TD>
+<TD><A HREF="#NCase">NCase</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>Gen</CODE></TD>
+<TD><A HREF="#NCase">NCase</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>Nom</CODE></TD>
+<TD><A HREF="#NCase">NCase</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkPrep</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <CODE>NCase-&gt;</CODE> <A HREF="#Bool">Bool</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkPrep</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#NCase">NCase</A> <CODE>-&gt;</CODE> <CODE>Prep;</CODE></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>noPrep</CODE></TD>
+<TD><A HREF="#NCase">NCase</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkN</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
+<TD><I>Singular, infers gender and Plural</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkN</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#NGender">NGender</A> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
+<TD><I>worst case: Singular + Plural + gender</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkN</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <CODE>Str</CODE> <CODE>-&gt;</CODE> <CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
+<TD><I>very irregular nouns - feminine</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkN</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
+<TD><I>Singular + Plural, infers gender</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkN</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#NGender">NGender</A> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
+<TD><I>Singular + gender, infers Plural</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkNR</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <CODE>N;</CODE></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkN2</CODE></TD>
+<TD><A HREF="#N" TITLE="N - common noun">N</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#N2" TITLE="N2 - relational noun">N2</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkN3</CODE></TD>
+<TD><A HREF="#N" TITLE="N - common noun">N</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#N3" TITLE="N3 - three-place relational noun">N3</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkPN</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#PN" TITLE="PN - proper name">PN</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkPN</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#Gender">Gender</A> <CODE>-&gt;</CODE> <A HREF="#Number">Number</A> <CODE>-&gt;</CODE> <A HREF="#PN" TITLE="PN - proper name">PN</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkPN</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#Gender">Gender</A> <CODE>-&gt;</CODE> <A HREF="#PN" TITLE="PN - proper name">PN</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkPN</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#Gender">Gender</A> <CODE>-&gt;</CODE> <A HREF="#Number">Number</A> <CODE>-&gt;</CODE> <A HREF="#PN" TITLE="PN - proper name">PN</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkInAn</CODE></TD>
+<TD><A HREF="#PN" TITLE="PN - proper name">PN</A> <CODE>-&gt;</CODE> <A HREF="#PN" TITLE="PN - proper name">PN</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkPropNoun</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#Gender">Gender</A> <CODE>-&gt;</CODE> <A HREF="#PN" TITLE="PN - proper name">PN</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkA</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#A" TITLE="A - one-place adjective">A</A></TD>
+<TD><I>regular adjectives</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkA</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <CODE>Str</CODE> <CODE>-&gt;</CODE> <CODE>Str</CODE> <CODE>-&gt;</CODE> <CODE>Str</CODE> <CODE>-&gt;</CODE> <CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#A" TITLE="A - one-place adjective">A</A> <CODE>--worst</CODE> <CODE>case</CODE></TD>
+<TD><I>all 4 forms are needed + form for adverb</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkA</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <CODE>Str</CODE> <CODE>-&gt;</CODE> <CODE>Str</CODE> <CODE>-&gt;</CODE> <CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#A" TITLE="A - one-place adjective">A</A></TD>
+<TD><I>4 forms are needed</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkA2</CODE></TD>
+<TD><A HREF="#A" TITLE="A - one-place adjective">A</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#A2" TITLE="A2 - two-place adjective">A2</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkV</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#V" TITLE="V - one-place verb">V</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkV2S</CODE></TD>
+<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#V2S" TITLE="V2S - verb with NP and S complement">V2S</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkV2V</CODE></TD>
+<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#V2V" TITLE="V2V - verb with NP and V complement">V2V</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkVA</CODE></TD>
+<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#VA" TITLE="VA - adjective-complement verb">VA</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkV2A</CODE></TD>
+<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#V2A" TITLE="V2A - verb with NP and AP complement">V2A</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkVQ</CODE></TD>
+<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#VQ" TITLE="VQ - question-complement verb">VQ</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkV2Q</CODE></TD>
+<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#V2Q" TITLE="V2Q - verb with NP and Q complement">V2Q</A></TD>
+<TD><I>-</I></TD>
+</TR>
+</TABLE>
+
+<A NAME="toc99"></A>
+<H2>Paradigms for Russian</H2>
+
+<P>
+<a name="RParadigms"></a>
+</P>
+<P>
+source <A HREF="http://www.grammaticalframework.org/lib/src/russian/ParadigmsRus.gf"><CODE>../src/russian/ParadigmsRus.gf</CODE></A>
+</P>
+
+<TABLE BORDER="1" CELLPADDING="4">
+<TR>
+<TH>Function</TH>
+<TH>Type</TH>
+<TH COLSPAN="2">Explanation</TH>
+</TR>
+<TR>
+<TD><CODE>Gender</CODE></TD>
+<TD><A HREF="#Type">Type</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>masculine</CODE></TD>
+<TD><A HREF="#Gender">Gender</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>feminine</CODE></TD>
+<TD><A HREF="#Gender">Gender</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>neuter</CODE></TD>
+<TD><A HREF="#Gender">Gender</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>Case</CODE></TD>
+<TD><A HREF="#Type">Type</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>nominative</CODE></TD>
+<TD><A HREF="#Case">Case</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>genitive</CODE></TD>
+<TD><A HREF="#Case">Case</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>dative</CODE></TD>
+<TD><A HREF="#Case">Case</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>accusative</CODE></TD>
+<TD><A HREF="#Case">Case</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>instructive</CODE></TD>
+<TD><A HREF="#Case">Case</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>prepositional</CODE></TD>
+<TD><A HREF="#Case">Case</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>Number</CODE></TD>
+<TD><A HREF="#Type">Type</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>singular</CODE></TD>
+<TD><A HREF="#Number">Number</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>plural</CODE></TD>
+<TD><A HREF="#Number">Number</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkN</CODE></TD>
+<TD><CODE>(karta</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkN</CODE></TD>
+<TD><CODE>(tigr</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-&gt;</CODE> <A HREF="#Animacy">Animacy</A> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkN</CODE></TD>
+<TD><CODE>(nomSg,</CODE> <CODE>genSg,</CODE> <CODE>datSg,</CODE> <CODE>accSg,</CODE> <CODE>instSg,</CODE> <CODE>preposSg,</CODE> <CODE>prepos2Sg,</CODE> <CODE>nomPl,</CODE> <CODE>genPl,</CODE> <CODE>datPl,</CODE> <CODE>accPl,</CODE> <CODE>instPl,</CODE> <CODE>preposPl</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-&gt;</CODE> <A HREF="#Gender">Gender</A> <CODE>-&gt;</CODE> <A HREF="#Animacy">Animacy</A> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkN2</CODE></TD>
+<TD><A HREF="#N" TITLE="N - common noun">N</A> <CODE>-&gt;</CODE> <A HREF="#N2" TITLE="N2 - relational noun">N2</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkN2</CODE></TD>
+<TD><A HREF="#N" TITLE="N - common noun">N</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#N2" TITLE="N2 - relational noun">N2</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkN3</CODE></TD>
+<TD><A HREF="#N" TITLE="N - common noun">N</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#N3" TITLE="N3 - three-place relational noun">N3</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkPN</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#Gender">Gender</A> <CODE>-&gt;</CODE> <A HREF="#Animacy">Animacy</A> <CODE>-&gt;</CODE> <A HREF="#PN" TITLE="PN - proper name">PN</A></TD>
+<TD><I>"Иван", "Маша"</I></TD>
+</TR>
+<TR>
+<TD><CODE>nounPN</CODE></TD>
+<TD><A HREF="#N" TITLE="N - common noun">N</A> <CODE>-&gt;</CODE> <A HREF="#PN" TITLE="PN - proper name">PN</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkA</CODE></TD>
+<TD><CODE>(positive</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-&gt;</CODE> <A HREF="#A" TITLE="A - one-place adjective">A</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkA</CODE></TD>
+<TD><CODE>(positive,</CODE> <CODE>comparative</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-&gt;</CODE> <A HREF="#A" TITLE="A - one-place adjective">A</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkA2</CODE></TD>
+<TD><A HREF="#A" TITLE="A - one-place adjective">A</A> <CODE>-&gt;</CODE> <CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#Case">Case</A> <CODE>-&gt;</CODE> <A HREF="#A2" TITLE="A2 - two-place adjective">A2</A></TD>
+<TD><I>"делим на"</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkAdv</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#Adv" TITLE="Adv - verb-phrase-modifying adverb">Adv</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkV</CODE></TD>
+<TD><A HREF="#Aspect">Aspect</A> <CODE>-&gt;</CODE> <CODE>(presSg1,presSg2,presSg3,presPl1,presPl2,presPl3,pastSgMasc,imp,inf:</CODE> <CODE>Str)</CODE> <CODE>-&gt;</CODE> <A HREF="#V" TITLE="V - one-place verb">V</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkV2</CODE></TD>
+<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#Case">Case</A> <CODE>-&gt;</CODE> <A HREF="#V2" TITLE="V2 - two-place verb">V2</A></TD>
+<TD><I>"войти в дом"; "в", accusative</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkV3</CODE></TD>
+<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <CODE>Str</CODE> <CODE>-&gt;</CODE> <CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#Case">Case</A> <CODE>-&gt;</CODE> <A HREF="#Case">Case</A> <CODE>-&gt;</CODE> <A HREF="#V3" TITLE="V3 - three-place verb">V3</A></TD>
+<TD><I>"сложить письмо в конверт"</I></TD>
+</TR>
+<TR>
+<TD><CODE>dirV2</CODE></TD>
+<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#V2" TITLE="V2 - two-place verb">V2</A></TD>
+<TD><I>"видеть", "любить"</I></TD>
+</TR>
+<TR>
+<TD><CODE>tvDirDir</CODE></TD>
+<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#V3" TITLE="V3 - three-place verb">V3</A></TD>
+<TD><I>-</I></TD>
+</TR>
+</TABLE>
+
+<A NAME="toc100"></A>
+<H2>Paradigms for Spanish</H2>
+
+<P>
+<a name="RParadigms"></a>
+</P>
+<P>
+source <A HREF="http://www.grammaticalframework.org/lib/src/spanish/ParadigmsSpa.gf"><CODE>../src/spanish/ParadigmsSpa.gf</CODE></A>
+</P>
+
+<TABLE BORDER="1" CELLPADDING="4">
+<TR>
+<TH>Function</TH>
+<TH>Type</TH>
+<TH COLSPAN="2">Explanation</TH>
+</TR>
+<TR>
+<TD><CODE>Gender</CODE></TD>
+<TD><A HREF="#Type">Type</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>masculine</CODE></TD>
+<TD><A HREF="#Gender">Gender</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>feminine</CODE></TD>
+<TD><A HREF="#Gender">Gender</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>Number</CODE></TD>
+<TD><A HREF="#Type">Type</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>singular</CODE></TD>
+<TD><A HREF="#Number">Number</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>plural</CODE></TD>
+<TD><A HREF="#Number">Number</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>accusative</CODE></TD>
+<TD><A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A></TD>
+<TD><I>direct object</I></TD>
+</TR>
+<TR>
+<TD><CODE>genitive</CODE></TD>
+<TD><A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A></TD>
+<TD><I>preposition "de" and its contractions</I></TD>
+</TR>
+<TR>
+<TD><CODE>dative</CODE></TD>
+<TD><A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A></TD>
+<TD><I>preposition "a" and its contractions</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkPrep</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A></TD>
+<TD><I>other preposition</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkN</CODE></TD>
+<TD><CODE>(luz</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
+<TD><I>predictable; feminine for "-a"/"-z", otherwise masculine</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkN</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#Gender">Gender</A> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
+<TD><I>force gender</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkN</CODE></TD>
+<TD><CODE>(baston,bastones</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-&gt;</CODE> <A HREF="#Gender">Gender</A> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
+<TD><I>worst case</I></TD>
+</TR>
+<TR>
+<TD><CODE>compN</CODE></TD>
+<TD><A HREF="#N" TITLE="N - common noun">N</A> <CODE>-&gt;</CODE> <CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
+<TD><I>compound, e.g. "número" + "de teléfono"</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkN2</CODE></TD>
+<TD><A HREF="#N" TITLE="N - common noun">N</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#N2" TITLE="N2 - relational noun">N2</A></TD>
+<TD><I>relational noun with preposition</I></TD>
+</TR>
+<TR>
+<TD><CODE>deN2</CODE></TD>
+<TD><A HREF="#N" TITLE="N - common noun">N</A> <CODE>-&gt;</CODE> <A HREF="#N2" TITLE="N2 - relational noun">N2</A></TD>
+<TD><I>relational noun with preposition "de"</I></TD>
+</TR>
+<TR>
+<TD><CODE>aN2</CODE></TD>
+<TD><A HREF="#N" TITLE="N - common noun">N</A> <CODE>-&gt;</CODE> <A HREF="#N2" TITLE="N2 - relational noun">N2</A></TD>
+<TD><I>relational noun with preposition "a"</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkN3</CODE></TD>
+<TD><A HREF="#N" TITLE="N - common noun">N</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#N3" TITLE="N3 - three-place relational noun">N3</A></TD>
+<TD><I>prepositions for two complements</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkPN</CODE></TD>
+<TD><CODE>(Anna</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-&gt;</CODE> <A HREF="#PN" TITLE="PN - proper name">PN</A></TD>
+<TD><I>feminine for "-a"</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkPN</CODE></TD>
+<TD><CODE>(Pilar</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-&gt;</CODE> <A HREF="#Gender">Gender</A> <CODE>-&gt;</CODE> <A HREF="#PN" TITLE="PN - proper name">PN</A></TD>
+<TD><I>force gender</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkA</CODE></TD>
+<TD><CODE>(util</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-&gt;</CODE> <A HREF="#A" TITLE="A - one-place adjective">A</A></TD>
+<TD><I>predictable adjective</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkA</CODE></TD>
+<TD><CODE>(espanol,espanola</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-&gt;</CODE> <A HREF="#A" TITLE="A - one-place adjective">A</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkA</CODE></TD>
+<TD><CODE>(solo,sola,solos,solas,solamente</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-&gt;</CODE> <A HREF="#A" TITLE="A - one-place adjective">A</A></TD>
+<TD><I>worst-case</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkA</CODE></TD>
+<TD><CODE>(bueno</CODE> <CODE>:</CODE> <CODE>A)</CODE> <CODE>-&gt;</CODE> <CODE>(mejor</CODE> <CODE>:</CODE> <CODE>A)</CODE> <CODE>-&gt;</CODE> <A HREF="#A" TITLE="A - one-place adjective">A</A></TD>
+<TD><I>special comparison (default with "mas")</I></TD>
+</TR>
+<TR>
+<TD><CODE>prefixA</CODE></TD>
+<TD><A HREF="#A" TITLE="A - one-place adjective">A</A> <CODE>-&gt;</CODE> <A HREF="#A" TITLE="A - one-place adjective">A</A></TD>
+<TD><I>adjective before noun (default after noun)</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkA2</CODE></TD>
+<TD><A HREF="#A" TITLE="A - one-place adjective">A</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#A2" TITLE="A2 - two-place adjective">A2</A></TD>
+<TD><I>e.g. "casado" + dative</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkQuant</CODE></TD>
+<TD><CODE>(ese,esa,esos,esas</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-&gt;</CODE> <A 'HREF="#Quant" TITLE="Quant - quantifier ('nucleus' of Det)"'>Quant</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkDet</CODE></TD>
+<TD><CODE>(mucho,mucha</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-&gt;</CODE> <A HREF="#Number">Number</A> <CODE>-&gt;</CODE> <A HREF="#Det" TITLE="Det - determiner phrase">Det</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkOrd</CODE></TD>
+<TD><A HREF="#A" TITLE="A - one-place adjective">A</A> <CODE>-&gt;</CODE> <A HREF="#Ord" TITLE="Ord - ordinal number (used in Det)">Ord</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkAdv</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#Adv" TITLE="Adv - verb-phrase-modifying adverb">Adv</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkAdV</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#AdV" TITLE="Adv - verb-phrase-modifying adverb">AdV</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkAdA</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#AdA" TITLE="AdA - adjective-modifying adverb">AdA</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkAdN</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#AdN" TITLE="AdN - numeral-modifying adverb">AdN</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkV</CODE></TD>
+<TD><CODE>(pagar</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-&gt;</CODE> <A HREF="#V" TITLE="V - one-place verb">V</A></TD>
+<TD><I>regular in "-ar", "-er", ".ir"</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkV</CODE></TD>
+<TD><CODE>(mostrar,muestro</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-&gt;</CODE> <A HREF="#V" TITLE="V - one-place verb">V</A></TD>
+<TD><I>regular with vowel alternation</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkV</CODE></TD>
+<TD><A HREF="#Verbum">Verbum</A> <CODE>-&gt;</CODE> <A HREF="#V" TITLE="V - one-place verb">V</A></TD>
+<TD><I>import verb constructed with BeschSpa</I></TD>
+</TR>
+<TR>
+<TD><CODE>reflV</CODE></TD>
+<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#V" TITLE="V - one-place verb">V</A></TD>
+<TD><I>reflexive verb</I></TD>
+</TR>
+<TR>
+<TD><CODE>special_ppV</CODE></TD>
+<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#V" TITLE="V - one-place verb">V</A></TD>
+<TD><I>deviant past participle, e.g. abrir - abierto</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkV2</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#V2" TITLE="V2 - two-place verb">V2</A></TD>
+<TD><I>regular, direct object</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkV2</CODE></TD>
+<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#V2" TITLE="V2 - two-place verb">V2</A></TD>
+<TD><I>direct object</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkV2</CODE></TD>
+<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#V2" TITLE="V2 - two-place verb">V2</A></TD>
+<TD><I>other object</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkV3</CODE></TD>
+<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#V3" TITLE="V3 - three-place verb">V3</A></TD>
+<TD><I>e.g. hablar, a, di</I></TD>
+</TR>
+<TR>
+<TD><CODE>dirV3</CODE></TD>
+<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#V3" TITLE="V3 - three-place verb">V3</A></TD>
+<TD><I>e.g. dar,(accusative),a</I></TD>
+</TR>
+<TR>
+<TD><CODE>dirdirV3</CODE></TD>
+<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#V3" TITLE="V3 - three-place verb">V3</A></TD>
+<TD><I>e.g. dar,(dative),(accusative)</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkVS</CODE></TD>
+<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#VS" TITLE="VS - sentence-complement verb">VS</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkV2S</CODE></TD>
+<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#V2S" TITLE="V2S - verb with NP and S complement">V2S</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkVV</CODE></TD>
+<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#VV" TITLE="VV - verb-phrase-complement verb">VV</A></TD>
+<TD><I>plain infinitive: "quiero hablar"</I></TD>
+</TR>
+<TR>
+<TD><CODE>deVV</CODE></TD>
+<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#VV" TITLE="VV - verb-phrase-complement verb">VV</A></TD>
+<TD><I>"terminar de hablar"</I></TD>
+</TR>
+<TR>
+<TD><CODE>aVV</CODE></TD>
+<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#VV" TITLE="VV - verb-phrase-complement verb">VV</A></TD>
+<TD><I>"aprender a hablar"</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkV2V</CODE></TD>
+<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#V2V" TITLE="V2V - verb with NP and V complement">V2V</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkVA</CODE></TD>
+<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#VA" TITLE="VA - adjective-complement verb">VA</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkV2A</CODE></TD>
+<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#V2A" TITLE="V2A - verb with NP and AP complement">V2A</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkVQ</CODE></TD>
+<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#VQ" TITLE="VQ - question-complement verb">VQ</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkV2Q</CODE></TD>
+<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#V2Q" TITLE="V2Q - verb with NP and Q complement">V2Q</A></TD>
+<TD><I>-</I></TD>
+</TR>
+</TABLE>
+
+<A NAME="toc101"></A>
+<H2>Paradigms for Swedish</H2>
+
+<P>
+<a name="RParadigms"></a>
+</P>
+<P>
+source <A HREF="http://www.grammaticalframework.org/lib/src/swedish/ParadigmsSwe.gf"><CODE>../src/swedish/ParadigmsSwe.gf</CODE></A>
+</P>
+
+<TABLE BORDER="1" CELLPADDING="4">
+<TR>
+<TH>Function</TH>
+<TH>Type</TH>
+<TH COLSPAN="2">Explanation</TH>
+</TR>
+<TR>
+<TD><CODE>Gender</CODE></TD>
+<TD><A HREF="#Type">Type</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>utrum</CODE></TD>
+<TD><A HREF="#Gender">Gender</A></TD>
+<TD><I>the "en" gender</I></TD>
+</TR>
+<TR>
+<TD><CODE>neutrum</CODE></TD>
+<TD><A HREF="#Gender">Gender</A></TD>
+<TD><I>the "ett" gender</I></TD>
+</TR>
+<TR>
+<TD><CODE>Number</CODE></TD>
+<TD><A HREF="#Type">Type</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>singular</CODE></TD>
+<TD><A HREF="#Number">Number</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>plural</CODE></TD>
+<TD><A HREF="#Number">Number</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkPrep</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A></TD>
+<TD><I>e.g. "till"</I></TD>
+</TR>
+<TR>
+<TD><CODE>noPrep</CODE></TD>
+<TD><A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A></TD>
+<TD><I>empty string</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkN</CODE></TD>
+<TD><CODE>(apa</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
+<TD><I>predictable nouns: apa-apor, rike-riken, or bil-bilar</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkN</CODE></TD>
+<TD><CODE>(nyckel,nycklar</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
+<TD><I>singular and plural suffice for most nouns</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkN</CODE></TD>
+<TD><CODE>(museum,museet,museer,museerna</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
+<TD><I>worst case for nouns</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkN2</CODE></TD>
+<TD><A HREF="#N" TITLE="N - common noun">N</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#N2" TITLE="N2 - relational noun">N2</A></TD>
+<TD><I>e.g. syster - till</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkN3</CODE></TD>
+<TD><A HREF="#N" TITLE="N - common noun">N</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#N3" TITLE="N3 - three-place relational noun">N3</A></TD>
+<TD><I>e.g. flyg - från - till</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkPN</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#PN" TITLE="PN - proper name">PN</A></TD>
+<TD><I>default gender utrum</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkPN</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#Gender">Gender</A> <CODE>-&gt;</CODE> <A HREF="#PN" TITLE="PN - proper name">PN</A></TD>
+<TD><I>set other gender</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkPN</CODE></TD>
+<TD><CODE>(jesus,jesu</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-&gt;</CODE> <A HREF="#Gender">Gender</A> <CODE>-&gt;</CODE> <A HREF="#PN" TITLE="PN - proper name">PN</A></TD>
+<TD><I>irregular genitive</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkA</CODE></TD>
+<TD><CODE>(billig</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-&gt;</CODE> <A HREF="#A" TITLE="A - one-place adjective">A</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkA</CODE></TD>
+<TD><CODE>(bred,brett</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-&gt;</CODE> <A HREF="#A" TITLE="A - one-place adjective">A</A></TD>
+<TD><I>predictable adjective</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkA</CODE></TD>
+<TD><CODE>(tung,tyngre,tyngst</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-&gt;</CODE> <A HREF="#A" TITLE="A - one-place adjective">A</A></TD>
+<TD><I>irregular comparison</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkA</CODE></TD>
+<TD><CODE>(god,gott,goda,battre,bast</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-&gt;</CODE> <A HREF="#A" TITLE="A - one-place adjective">A</A></TD>
+<TD><I>very irregular</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkA</CODE></TD>
+<TD><CODE>(liten,litet,lilla,sma,mindre,minst,minsta</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-&gt;</CODE> <A HREF="#A" TITLE="A - one-place adjective">A</A></TD>
+<TD><I>worst case</I></TD>
+</TR>
+<TR>
+<TD><CODE>compoundA</CODE></TD>
+<TD><A HREF="#A" TITLE="A - one-place adjective">A</A> <CODE>-&gt;</CODE> <A HREF="#A" TITLE="A - one-place adjective">A</A></TD>
+<TD><I>force comparison by mera - mest</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkA2</CODE></TD>
+<TD><A HREF="#A" TITLE="A - one-place adjective">A</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#A2" TITLE="A2 - two-place adjective">A2</A></TD>
+<TD><I>e.g. delbar - med</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkAdv</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#Adv" TITLE="Adv - verb-phrase-modifying adverb">Adv</A></TD>
+<TD><I>postverbal, e.g. här</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkAdV</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#AdV" TITLE="Adv - verb-phrase-modifying adverb">AdV</A></TD>
+<TD><I>preverbal, e.g. alltid</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkAdA</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#AdA" TITLE="AdA - adjective-modifying adverb">AdA</A></TD>
+<TD><I>modify adjective, e.g. tämligen</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkV</CODE></TD>
+<TD><CODE>(stämmer</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-&gt;</CODE> <A HREF="#V" TITLE="V - one-place verb">V</A></TD>
+<TD><I>predictable verb: use present indicative</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkV</CODE></TD>
+<TD><CODE>(dricka,drack,druckit</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-&gt;</CODE> <A HREF="#V" TITLE="V - one-place verb">V</A></TD>
+<TD><I>the theme of an irregular verb</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkV</CODE></TD>
+<TD><CODE>(gå,går,gå,gick,gått,gången</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-&gt;</CODE> <A HREF="#V" TITLE="V - one-place verb">V</A></TD>
+<TD><I>worst case</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkV</CODE></TD>
+<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#V" TITLE="V - one-place verb">V</A></TD>
+<TD><I>particle verb, e.g. passa - på</I></TD>
+</TR>
+<TR>
+<TD><CODE>depV</CODE></TD>
+<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#V" TITLE="V - one-place verb">V</A></TD>
+<TD><I>deponent verb, e.g. andas</I></TD>
+</TR>
+<TR>
+<TD><CODE>reflV</CODE></TD>
+<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#V" TITLE="V - one-place verb">V</A></TD>
+<TD><I>reflexive verb, e.g. ångra sig</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkV2</CODE></TD>
+<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#V2" TITLE="V2 - two-place verb">V2</A></TD>
+<TD><I>direct transitive</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkV2</CODE></TD>
+<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#V2" TITLE="V2 - two-place verb">V2</A></TD>
+<TD><I>preposition for complement</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkV3</CODE></TD>
+<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#V3" TITLE="V3 - three-place verb">V3</A></TD>
+<TD><I>direct ditransitive</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkV3</CODE></TD>
+<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#V3" TITLE="V3 - three-place verb">V3</A></TD>
+<TD><I>preposition for last argument</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkV3</CODE></TD>
+<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#V3" TITLE="V3 - three-place verb">V3</A></TD>
+<TD><I>prepositions for both complements</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkVS</CODE></TD>
+<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#VS" TITLE="VS - sentence-complement verb">VS</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkV2S</CODE></TD>
+<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#V2S" TITLE="V2S - verb with NP and S complement">V2S</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkVV</CODE></TD>
+<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#VV" TITLE="VV - verb-phrase-complement verb">VV</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkV2V</CODE></TD>
+<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#V2V" TITLE="V2V - verb with NP and V complement">V2V</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkVA</CODE></TD>
+<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#VA" TITLE="VA - adjective-complement verb">VA</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkV2A</CODE></TD>
+<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#V2A" TITLE="V2A - verb with NP and AP complement">V2A</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkVQ</CODE></TD>
+<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#VQ" TITLE="VQ - question-complement verb">VQ</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkV2Q</CODE></TD>
+<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <A HREF="#V2Q" TITLE="V2Q - verb with NP and Q complement">V2Q</A></TD>
+<TD><I>-</I></TD>
+</TR>
+</TABLE>
+
+<A NAME="toc102"></A>
+<H2>Paradigms for Urdu</H2>
+
+<P>
+<a name="RParadigms"></a>
+</P>
+<P>
+source <A HREF="http://www.grammaticalframework.org/lib/src/urdu/ParadigmsUrd.gf"><CODE>../src/urdu/ParadigmsUrd.gf</CODE></A>
+</P>
+
+<TABLE BORDER="1" CELLPADDING="4">
+<TR>
+<TH>Function</TH>
+<TH>Type</TH>
+<TH COLSPAN="2">Explanation</TH>
+</TR>
+<TR>
+<TD><CODE>masculine</CODE></TD>
+<TD><A HREF="#Gender">Gender</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>feminine</CODE></TD>
+<TD><A HREF="#Gender">Gender</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>singular</CODE></TD>
+<TD><CODE>Number;</CODE></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>plural</CODE></TD>
+<TD><CODE>Number;</CODE></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkN</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
+<TD><I>Regular nouns like lRka, gender is judged from noun ending</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkN</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#Gender">Gender</A> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
+<TD><I>nouns whose gender is irregular like Admy</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkN</CODE></TD>
+<TD><CODE>(x1,_,_,_,_,x6</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-&gt;</CODE> <A HREF="#Gender">Gender</A> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
+<TD><I>worst case</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkN2</CODE></TD>
+<TD><A HREF="#N" TITLE="N - common noun">N</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <CODE>Str</CODE> <CODE>-&gt;</CODE> <CODE>N2;</CODE></TD>
+<TD><I>e.g maN ky</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkN3</CODE></TD>
+<TD><A HREF="#N" TITLE="N - common noun">N</A> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-&gt;</CODE> <CODE>Str</CODE> <CODE>-&gt;</CODE> <CODE>Str-&gt;</CODE> <A HREF="#N3" TITLE="N3 - three-place relational noun">N3</A></TD>
+<TD><I>e.g faSlh - sE - ka</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkCmpdNoun</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD>
+<TD><I>e.g t-alb elm</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkPN</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#PN" TITLE="PN - proper name">PN</A> <CODE>=</CODE> <CODE>\s</CODE> <CODE>-&gt;</CODE> <CODE>let</CODE> <CODE>n</CODE> <CODE>=</CODE> <CODE>regNoun</CODE> <CODE>s</CODE> <CODE>in</CODE> <CODE>{s</CODE> <CODE>=</CODE> <CODE>n.s</CODE> <CODE>!</CODE> <A HREF="#Sg">Sg</A> <CODE>g</CODE> <CODE>=</CODE> <CODE>n.g</CODE> <CODE>lock_PN</CODE> <CODE>=</CODE> <CODE>&lt;&gt;}</CODE></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>personalPN</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <CODE>Str</CODE> <CODE>-&gt;</CODE> <CODE>Str</CODE> <CODE>-&gt;</CODE> <CODE>Str</CODE> <CODE>-&gt;</CODE> <CODE>Str</CODE> <CODE>-&gt;</CODE> <CODE>Str</CODE> <CODE>-&gt;</CODE> <CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#Number">Number</A> <CODE>-&gt;</CODE> <A HREF="#Gender">Gender</A> <CODE>-&gt;</CODE> <A HREF="#UPerson">UPerson</A> <CODE>-&gt;</CODE> <A HREF="#Pron" TITLE="Pron - personal pronoun">Pron</A> <CODE>=</CODE></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>demoPN</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <CODE>Str</CODE> <CODE>-&gt;</CODE> <CODE>Str</CODE> <CODE>-&gt;</CODE> <A 'HREF="#Quant" TITLE="Quant - quantifier ('nucleus' of Det)"'>Quant</A> <CODE>=</CODE> <CODE>\s1,s2,s3</CODE> <CODE>-&gt;</CODE> <CODE>let</CODE> <CODE>n</CODE> <CODE>=</CODE> <CODE>makeDemonPronForm</CODE> <CODE>s1</CODE> <CODE>s2</CODE> <CODE>s3</CODE> <CODE>in</CODE> <CODE>{s</CODE> <CODE>=</CODE> <CODE>n.s</CODE> <CODE>a</CODE> <CODE>=</CODE> <CODE>defaultAgr</CODE> <CODE>lock_Quant</CODE> <CODE>=</CODE> <CODE>&lt;&gt;};</CODE></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkDet</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <CODE>Str</CODE> <CODE>-&gt;</CODE> <CODE>Str</CODE> <CODE>-&gt;</CODE> <CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#Number">Number</A> <CODE>-&gt;</CODE> <A HREF="#Det" TITLE="Det - determiner phrase">Det</A> <CODE>=</CODE> <CODE>\s1,s2,s3,s4,nb</CODE> <CODE>-&gt;</CODE> <CODE>let</CODE> <CODE>dt</CODE> <CODE>=</CODE> <CODE>makeDet</CODE> <CODE>s1</CODE> <CODE>s2</CODE> <CODE>s3</CODE> <CODE>s4</CODE> <CODE>nb</CODE> <CODE>in</CODE> <CODE>{s</CODE> <CODE>=</CODE> <CODE>dt.s</CODE> <CODE>n</CODE> <CODE>=</CODE> <CODE>nb</CODE> <CODE>lock_Det</CODE> <CODE>=</CODE> <CODE>&lt;&gt;};</CODE></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkIP</CODE></TD>
+<TD><CODE>(x1,x2,x3:Str)</CODE> <CODE>-&gt;</CODE> <A HREF="#Number">Number</A> <CODE>-&gt;</CODE> <A HREF="#Gender">Gender</A> <CODE>-&gt;</CODE> <A HREF="#IP" TITLE="IP - interrogative pronoun">IP</A> <CODE>=</CODE> <CODE>\s1,s2,s3,n,g</CODE> <CODE>-&gt;</CODE> <CODE>let</CODE> <CODE>p</CODE> <CODE>=</CODE> <CODE>mkIntPronForm</CODE> <CODE>s1</CODE> <CODE>s2</CODE> <CODE>s3</CODE> <CODE>in</CODE> <CODE>{</CODE> <CODE>s</CODE> <CODE>=</CODE> <CODE>p.s</CODE> <CODE>n</CODE> <CODE>=</CODE> <CODE>n</CODE> <CODE>g</CODE> <CODE>=</CODE> <CODE>g</CODE> <CODE>lock_IP</CODE> <CODE>=</CODE> <CODE>&lt;&gt;};</CODE></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkAdN</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#AdN" TITLE="AdN - numeral-modifying adverb">AdN</A> <CODE>=</CODE> <CODE>\s</CODE> <CODE>-&gt;</CODE> <CODE>{s</CODE> <CODE>=</CODE> <CODE>s</CODE> <CODE>p</CODE> <CODE>=</CODE> <A HREF="#False">False</A> <CODE>lock_AdN</CODE> <CODE>=</CODE> <CODE>&lt;&gt;}</CODE></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkA</CODE></TD>
+<TD><CODE>Str-&gt;</CODE> <A HREF="#A" TITLE="A - one-place adjective">A</A></TD>
+<TD><I>e.g ach'a</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkA</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#A2" TITLE="A2 - two-place adjective">A2</A></TD>
+<TD><I>e.g sE Xady krna</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkA2</CODE></TD>
+<TD><A HREF="#A" TITLE="A - one-place adjective">A</A> <CODE>-&gt;</CODE> <CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#A2" TITLE="A2 - two-place adjective">A2</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkCompoundA</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#A" TITLE="A - one-place adjective">A</A></TD>
+<TD><I>e.g dra hwa</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkV</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#V" TITLE="V - one-place verb">V</A></TD>
+<TD><I>regular verbs like swna</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkV2</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#V2" TITLE="V2 - two-place verb">V2</A></TD>
+<TD><I>e.g pyna</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkV2</CODE></TD>
+<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#V2" TITLE="V2 - two-place verb">V2</A></TD>
+<TD><I>e.g pyna</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkV2</CODE></TD>
+<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#V2" TITLE="V2 - two-place verb">V2</A></TD>
+<TD><I>e.g bnd krna</I></TD>
+</TR>
+<TR>
+<TD><CODE>dirV2</CODE></TD>
+<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#V2" TITLE="V2 - two-place verb">V2</A> <CODE>=</CODE> <CODE>\v</CODE> <CODE>-&gt;</CODE> <CODE>v</CODE> <CODE>**</CODE> <CODE>{c2</CODE> <CODE>=</CODE> <CODE>{s</CODE> <CODE>=</CODE> <CODE>[]</CODE> <CODE>c</CODE> <CODE>=</CODE> <CODE>VTrans}</CODE> <CODE>lock_V2</CODE> <CODE>=</CODE> <CODE>&lt;&gt;}</CODE></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkV3</CODE></TD>
+<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <CODE>Str</CODE> <CODE>-&gt;</CODE> <CODE>Str</CODE> <CODE>-&gt;</CODE> <CODE>V3;</CODE></TD>
+<TD><I>e.g bycna</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkV2V</CODE></TD>
+<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <CODE>Str</CODE> <CODE>-&gt;</CODE> <CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#Bool">Bool</A> <CODE>-&gt;</CODE> <A HREF="#V2V" TITLE="V2V - verb with NP and V complement">V2V</A></TD>
+<TD><I>e.g eltja krna - sE - kw</I></TD>
+</TR>
+<TR>
+<TD><CODE>dirdirV3</CODE></TD>
+<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#V3" TITLE="V3 - three-place verb">V3</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>compoundV</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#V" TITLE="V - one-place verb">V</A></TD>
+<TD><I>e.g barX hwna</I></TD>
+</TR>
+<TR>
+<TD><CODE>compoundV</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#V2" TITLE="V2 - two-place verb">V2</A> <CODE>-&gt;</CODE> <A HREF="#V" TITLE="V - one-place verb">V</A></TD>
+<TD><I>e.g bnd krna</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkAdv</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#Adv" TITLE="Adv - verb-phrase-modifying adverb">Adv</A></TD>
+<TD><I>e.g yhaN</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkAdv</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#Adv" TITLE="Adv - verb-phrase-modifying adverb">Adv</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkPrep</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A></TD>
+<TD><I>e.g ka - ky</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkIQuant</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#IQuant">IQuant</A> <CODE>=</CODE> <CODE>\s</CODE> <CODE>-&gt;</CODE> <CODE>makeIQuant</CODE> <CODE>s</CODE></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkConj</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#Conj" TITLE="Conj - conjunction">Conj</A></TD>
+<TD><I>and (plural agreement)</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkConj</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#Number">Number</A> <CODE>-&gt;</CODE> <A HREF="#Conj" TITLE="Conj - conjunction">Conj</A></TD>
+<TD><I>or (agrement number given as argument)</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkConj</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#Conj" TITLE="Conj - conjunction">Conj</A></TD>
+<TD><I>both ... and (plural)</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkConj</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#Number">Number</A> <CODE>-&gt;</CODE> <A HREF="#Conj" TITLE="Conj - conjunction">Conj</A></TD>
+<TD><I>either ... or (agrement number given as argument)</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkConj</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#Conj" TITLE="Conj - conjunction">Conj</A> <CODE>=</CODE> <CODE>\y</CODE> <CODE>-&gt;</CODE> <CODE>mk2Conj</CODE> <CODE>[]</CODE> <CODE>y</CODE> <CODE>plural</CODE></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkConj</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#Number">Number</A> <CODE>-&gt;</CODE> <A HREF="#Conj" TITLE="Conj - conjunction">Conj</A> <CODE>=</CODE> <CODE>\y,n</CODE> <CODE>-&gt;</CODE> <CODE>mk2Conj</CODE> <CODE>[]</CODE> <CODE>y</CODE> <CODE>n</CODE></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkConj</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#Conj" TITLE="Conj - conjunction">Conj</A> <CODE>=</CODE> <CODE>\x,y</CODE> <CODE>-&gt;</CODE> <CODE>mk2Conj</CODE> <CODE>x</CODE> <CODE>y</CODE> <CODE>plural</CODE></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkConj</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#Number">Number</A> <CODE>-&gt;</CODE> <A HREF="#Conj" TITLE="Conj - conjunction">Conj</A> <CODE>=</CODE> <CODE>mk2Conj</CODE></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mk2Conj</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#Number">Number</A> <CODE>-&gt;</CODE> <A HREF="#Conj" TITLE="Conj - conjunction">Conj</A> <CODE>=</CODE> <CODE>\x,y,n</CODE> <CODE>-&gt;</CODE></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkVS</CODE></TD>
+<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <CODE>VS;</CODE></TD>
+<TD><I>e.g drna</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkVV</CODE></TD>
+<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#VV" TITLE="VV - verb-phrase-complement verb">VV</A> <CODE>=</CODE></TD>
+<TD><I>e.g cahna</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkAdA</CODE></TD>
+<TD><CODE>Str</CODE> <CODE>-&gt;</CODE> <A HREF="#AdA" TITLE="AdA - adjective-modifying adverb">AdA</A></TD>
+<TD><I>-</I></TD>
+</TR>
+<TR>
+<TD><CODE>mkVQ</CODE></TD>
+<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-&gt;</CODE> <A HREF="#VQ" TITLE="VQ - question-complement verb">VQ</A></TD>
+<TD><I>e.g janna</I></TD>
+</TR>
+</TABLE>
+
+<A NAME="toc103"></A>
+<H1>Additional Libraries</H1>
+
+<A NAME="toc104"></A>
+<H2>The Prelude module</H2>
+
+<P>
+The <CODE>Prelude</CODE> defines commonly used utility functions, in particular for
+strings and booleans.
+</P>
+
+<TABLE BORDER="1" CELLPADDING="4">
+<TR>
+<TH>Oper</TH>
+<TH>Type</TH>
+<TH COLSPAN="2">Explanation</TH>
+</TR>
+<TR>
+<TD><CODE>SS</CODE></TD>
+<TD><CODE>Type</CODE></TD>
+<TD>the type <CODE>{s : Str}</CODE></TD>
+</TR>
+<TR>
+<TD><CODE>ss</CODE></TD>
+<TD><CODE>Str -&gt; SS</CODE></TD>
+<TD>record from string</TD>
+</TR>
+<TR>
+<TD><CODE>nonExist</CODE></TD>
+<TD><CODE>Str</CODE></TD>
+<TD>missing form</TD>
+</TR>
+<TR>
+<TD><CODE>optStr</CODE></TD>
+<TD><CODE>Str -&gt; Str</CODE></TD>
+<TD>optional string</TD>
+</TR>
+<TR>
+<TD><CODE>bothWays</CODE></TD>
+<TD><CODE>(x,y : Str) -&gt; Str</CODE></TD>
+<TD>either <CODE>x ++ y</CODE> or <CODE>y ++ x</CODE></TD>
+</TR>
+<TR>
+<TD><CODE>Bool</CODE></TD>
+<TD><CODE>PType</CODE></TD>
+<TD>values <CODE>True</CODE> and <CODE>False</CODE></TD>
+</TR>
+<TR>
+<TD><CODE>andB</CODE></TD>
+<TD><CODE>(_,_ : Bool) -&gt; Bool</CODE></TD>
+<TD>conjunction</TD>
+</TR>
+<TR>
+<TD><CODE>orB</CODE></TD>
+<TD><CODE>(_,_ : Bool) -&gt; Bool</CODE></TD>
+<TD>disjunction</TD>
+</TR>
+<TR>
+<TD><CODE>notB</CODE></TD>
+<TD><CODE>Bool -&gt; Bool</CODE></TD>
+<TD>negation</TD>
+</TR>
+<TR>
+<TD><CODE>if_then_else</CODE></TD>
+<TD><CODE>(A:Type)-&gt;Bool-&gt;A-&gt;A-&gt;A</CODE></TD>
+<TD>conditional</TD>
+</TR>
+<TR>
+<TD><CODE>init</CODE></TD>
+<TD><CODE>Str -&gt; Str</CODE></TD>
+<TD>drop last character</TD>
+</TR>
+<TR>
+<TD><CODE>last</CODE></TD>
+<TD><CODE>Str -&gt; Str</CODE></TD>
+<TD>return last character</TD>
+</TR>
+<TR>
+<TD><CODE>glue</CODE></TD>
+<TD><CODE>Str -&gt; Str -&gt; Str</CODE></TD>
+<TD>glue tokens together</TD>
+</TR>
+</TABLE>
+
+<A NAME="toc105"></A>
+<H2>The Predefined module</H2>
+
+<P>
+These functions are hard-coded in GF. They are available without explicit opening, by the used of qualified names, e.g. <CODE>Predef.tk</CODE>.
+</P>
+
+<TABLE BORDER="1" CELLPADDING="4">
+<TR>
+<TH>operation</TH>
+<TH>type</TH>
+<TH COLSPAN="2">explanation</TH>
+</TR>
+<TR>
+<TD><CODE>PBool</CODE></TD>
+<TD><CODE>PType</CODE></TD>
+<TD><CODE>PTrue | PFalse</CODE></TD>
+</TR>
+<TR>
+<TD><CODE>Error</CODE></TD>
+<TD><CODE>Type</CODE></TD>
+<TD>the empty type</TD>
+</TR>
+<TR>
+<TD><CODE>Integer</CODE></TD>
+<TD><CODE>Type</CODE></TD>
+<TD>the type of integers</TD>
+</TR>
+<TR>
+<TD><CODE>Ints</CODE></TD>
+<TD><CODE>Integer -&gt; Type</CODE></TD>
+<TD>integers from 0 to n</TD>
+</TR>
+<TR>
+<TD><CODE>error</CODE></TD>
+<TD><CODE>Str -&gt; Error</CODE></TD>
+<TD>forms error message</TD>
+</TR>
+<TR>
+<TD><CODE>length</CODE></TD>
+<TD><CODE>Str -&gt; Int</CODE></TD>
+<TD>length of string</TD>
+</TR>
+<TR>
+<TD><CODE>drop</CODE></TD>
+<TD><CODE>Integer -&gt; Str -&gt; Str</CODE></TD>
+<TD>drop prefix of length</TD>
+</TR>
+<TR>
+<TD><CODE>take</CODE></TD>
+<TD><CODE>Integer -&gt; Str -&gt; Str</CODE></TD>
+<TD>take prefix of length</TD>
+</TR>
+<TR>
+<TD><CODE>tk</CODE></TD>
+<TD><CODE>Integer -&gt; Str -&gt; Str</CODE></TD>
+<TD>drop suffix of length</TD>
+</TR>
+<TR>
+<TD><CODE>dp</CODE></TD>
+<TD><CODE>Integer -&gt; Str -&gt; Str</CODE></TD>
+<TD>take suffix of length</TD>
+</TR>
+<TR>
+<TD><CODE>eqInt</CODE></TD>
+<TD><CODE>Integer -&gt; Integer -&gt; PBool</CODE></TD>
+<TD>test if equal integers</TD>
+</TR>
+<TR>
+<TD><CODE>lessInt</CODE></TD>
+<TD><CODE>Integer -&gt; Integer -&gt; PBool</CODE></TD>
+<TD>test order of integers</TD>
+</TR>
+<TR>
+<TD><CODE>plus</CODE></TD>
+<TD><CODE>Integer -&gt; Integer -&gt; Integer</CODE></TD>
+<TD>add integers</TD>
+</TR>
+<TR>
+<TD><CODE>eqStr</CODE></TD>
+<TD><CODE>Str -&gt; Str -&gt; PBool</CODE></TD>
+<TD>test if equal strings</TD>
+</TR>
+<TR>
+<TD><CODE>occur</CODE></TD>
+<TD><CODE>Str -&gt; Str -&gt; PBool</CODE></TD>
+<TD>test if occurs as substring</TD>
+</TR>
+<TR>
+<TD><CODE>occurs</CODE></TD>
+<TD><CODE>Str -&gt; Str -&gt; PBool</CODE></TD>
+<TD>test if any char occurs</TD>
+</TR>
+<TR>
+<TD><CODE>show</CODE></TD>
+<TD><CODE>(P : Type) -&gt; P -&gt; Str</CODE></TD>
+<TD>convert param to string</TD>
+</TR>
+<TR>
+<TD><CODE>toStr</CODE></TD>
+<TD><CODE>(L : Type) -&gt; L -&gt; Str</CODE></TD>
+<TD>find the "first" string</TD>
+</TR>
+</TABLE>
+
+<A NAME="toc106"></A>
+<H2>The Formal module</H2>
+
+<P>
+This module is used for defining formal languages, in particular ones that
+use precedence levels and parentheses for grouping subexpressions.
+</P>
+
+<TABLE BORDER="1" CELLPADDING="4">
+<TR>
+<TH>Oper</TH>
+<TH>Type</TH>
+<TH COLSPAN="2">Explanation</TH>
+</TR>
+<TR>
+<TD><CODE>Prec</CODE></TD>
+<TD><CODE>PType</CODE></TD>
+<TD>precedence levels 0..4</TD>
+</TR>
+<TR>
+<TD><CODE>TermPrec</CODE></TD>
+<TD><CODE>Type</CODE></TD>
+<TD>string with precedence</TD>
+</TR>
+<TR>
+<TD><CODE>mkPrec</CODE></TD>
+<TD><CODE>Prec -&gt; Str -&gt; TermPrec</CODE></TD>
+<TD>construct a <CODE>TermPrec</CODE></TD>
+</TR>
+<TR>
+<TD><CODE>top</CODE></TD>
+<TD><CODE>TermPrec -&gt; Str</CODE></TD>
+<TD>top term (lowest prec.)</TD>
+</TR>
+<TR>
+<TD><CODE>constant</CODE></TD>
+<TD><CODE>Str -&gt; TermPrec</CODE></TD>
+<TD>atomic (highest prec.)</TD>
+</TR>
+<TR>
+<TD><CODE>infixl</CODE></TD>
+<TD><CODE>Prec-&gt;Str-&gt;(_,_:TermPrec)-&gt;TermPrec</CODE></TD>
+<TD>left-assoc. infix</TD>
+</TR>
+<TR>
+<TD><CODE>infixr</CODE></TD>
+<TD><CODE>Prec-&gt;Str-&gt;(_,_:TermPrec)-&gt;TermPrec</CODE></TD>
+<TD>right-assoc. infix</TD>
+</TR>
+<TR>
+<TD><CODE>infixn</CODE></TD>
+<TD><CODE>Prec-&gt;Str-&gt;(_,_:TermPrec)-&gt;TermPrec</CODE></TD>
+<TD>non-assoc. infix</TD>
+</TR>
+<TR>
+<TD><CODE>usePrec</CODE></TD>
+<TD><CODE>Prec -&gt; TermPrec -&gt; Str</CODE></TD>
+<TD>use term on given level</TD>
+</TR>
+</TABLE>
+
+<A NAME="toc107"></A>
+<H2>The Symbolic module</H2>
+
+<P>
+This module is used for embedding symbolic notation in natural-language
+text constructed by the resource grammar API. It works for all resource
+languages.
+</P>
+
+<TABLE BORDER="1" CELLPADDING="4">
+<TR>
+<TH>Function</TH>
+<TH>Type</TH>
+<TH COLSPAN="2">Example</TH>
+</TR>
+<TR>
+<TD><CODE>symb</CODE></TD>
+<TD><CODE>Str -&gt; NP</CODE></TD>
+<TD ALIGN="right"><I>x</I></TD>
+</TR>
+<TR>
+<TD><CODE>symb</CODE></TD>
+<TD><CODE>Int -&gt; NP</CODE></TD>
+<TD ALIGN="right"><I>23</I></TD>
+</TR>
+<TR>
+<TD><CODE>symb</CODE></TD>
+<TD><CODE>Float -&gt; NP</CODE></TD>
+<TD ALIGN="right"><I>0.99</I></TD>
+</TR>
+<TR>
+<TD><CODE>symb</CODE></TD>
+<TD><CODE>CN  -&gt; Numeral -&gt; NP</CODE></TD>
+<TD ALIGN="right"><I>level four</I></TD>
+</TR>
+<TR>
+<TD><CODE>symb</CODE></TD>
+<TD><CODE>Det -&gt; N+  -&gt; Numeral -&gt; NP</CODE></TD>
+<TD ALIGN="right"><I>the level four</I></TD>
+</TR>
+<TR>
+<TD><CODE>symb</CODE></TD>
+<TD><CODE>Det -&gt; CN -&gt; [Symb] -&gt; NP</CODE></TD>
+<TD ALIGN="right"><I>the levels i, j and k</I></TD>
+</TR>
+<TR>
+<TD><CODE>symb</CODE></TD>
+<TD><CODE>Symb -&gt; S</CODE></TD>
+<TD ALIGN="right"><I>A</I> (formula)</TD>
+</TR>
+<TR>
+<TD><CODE>symb</CODE></TD>
+<TD><CODE>Symb -&gt; Card</CODE></TD>
+<TD ALIGN="right"><I>n</I> (number)</TD>
+</TR>
+<TR>
+<TD><CODE>mkSymb</CODE></TD>
+<TD><CODE>Str -&gt; Symb</CODE></TD>
+<TD ALIGN="right"><I>x</I></TD>
+</TR>
+</TABLE>
+
+<A NAME="toc108"></A>
+<H2>The Combinators module</H2>
+
+<P>
+This module gives shortcuts for defining predicates (<CODE>pred</CODE>) and function 
+expressions (<CODE>app</CODE>). It works for all resource languages.
+</P>
+
+<TABLE BORDER="1" CELLPADDING="4">
+<TR>
+<TH>Function</TH>
+<TH>Type</TH>
+<TH COLSPAN="2">Example</TH>
+</TR>
+<TR>
+<TD><CODE>pred</CODE></TD>
+<TD><CODE>V  -&gt; NP -&gt; Cl</CODE></TD>
+<TD ALIGN="right"><I>x converges</I></TD>
+</TR>
+<TR>
+<TD><CODE>pred</CODE></TD>
+<TD><CODE>V2 -&gt; NP -&gt; NP -&gt; Cl</CODE></TD>
+<TD ALIGN="right"><I>x intersects y</I></TD>
+</TR>
+<TR>
+<TD><CODE>pred</CODE></TD>
+<TD><CODE>V  -&gt; NP -&gt; NP -&gt; Cl</CODE></TD>
+<TD ALIGN="right"><I>x and y intersect</I></TD>
+</TR>
+<TR>
+<TD><CODE>pred</CODE></TD>
+<TD><CODE>A  -&gt; NP -&gt; Cl</CODE></TD>
+<TD ALIGN="right"><I>x is even</I></TD>
+</TR>
+<TR>
+<TD><CODE>pred</CODE></TD>
+<TD><CODE>A2 -&gt; NP -&gt; NP -&gt; Cl</CODE></TD>
+<TD ALIGN="right"><I>x is divisible by y</I></TD>
+</TR>
+<TR>
+<TD><CODE>pred</CODE></TD>
+<TD><CODE>A  -&gt; NP -&gt; NP -&gt; Cl</CODE></TD>
+<TD ALIGN="right"><I>x and y are equal</I></TD>
+</TR>
+<TR>
+<TD><CODE>pred</CODE></TD>
+<TD><CODE>N  -&gt; NP -&gt; Cl</CODE></TD>
+<TD ALIGN="right"><I>x is a maximum</I></TD>
+</TR>
+<TR>
+<TD><CODE>pred</CODE></TD>
+<TD><CODE>N  -&gt; NP -&gt; NP -&gt; Cl</CODE></TD>
+<TD ALIGN="center"><I>x and y are inverses</I></TD>
+</TR>
+<TR>
+<TD><CODE>pred</CODE></TD>
+<TD><CODE>Adv -&gt; NP -&gt; Cl</CODE></TD>
+<TD ALIGN="right"><I>x is in scope</I></TD>
+</TR>
+<TR>
+<TD><CODE>pred</CODE></TD>
+<TD><CODE>Prep -&gt; NP -&gt; NP -&gt; Cl</CODE></TD>
+<TD ALIGN="right"><I>x is outside y</I></TD>
+</TR>
+<TR>
+<TD><CODE>app</CODE></TD>
+<TD><CODE>N  -&gt; NP</CODE></TD>
+<TD ALIGN="right"><I>the bottom</I></TD>
+</TR>
+<TR>
+<TD><CODE>app</CODE></TD>
+<TD><CODE>N2 -&gt; NP -&gt; NP</CODE></TD>
+<TD ALIGN="right"><I>the successor of x</I></TD>
+</TR>
+<TR>
+<TD><CODE>app</CODE></TD>
+<TD><CODE>N3 -&gt; NP -&gt; NP -&gt; NP</CODE></TD>
+<TD ALIGN="right"><I>the distance from x to y</I></TD>
+</TR>
+<TR>
+<TD><CODE>app</CODE></TD>
+<TD><CODE>N2 -&gt; NP -&gt; NP -&gt; NP</CODE></TD>
+<TD ALIGN="right"><I>the sum of x and y</I></TD>
+</TR>
+<TR>
+<TD><CODE>app</CODE></TD>
+<TD><CODE>N2 -&gt; N  -&gt; CN</CODE></TD>
+<TD ALIGN="right"><I>set of integers</I></TD>
+</TR>
+<TR>
+<TD><CODE>app</CODE></TD>
+<TD><CODE>N2 -&gt; NP -&gt; CN</CODE></TD>
+<TD ALIGN="right"><I>divisor of x</I></TD>
+</TR>
+<TR>
+<TD><CODE>app</CODE></TD>
+<TD><CODE>N3 -&gt; NP -&gt; NP -&gt; CN</CODE></TD>
+<TD ALIGN="right"><I>path from x to y</I></TD>
+</TR>
+<TR>
+<TD><CODE>app</CODE></TD>
+<TD><CODE>N2 -&gt; NP -&gt; NP -&gt; CN</CODE></TD>
+<TD ALIGN="right"><I>path between x and y</I></TD>
+</TR>
+</TABLE>
+
+<A NAME="toc109"></A>
+<H1>Browsing the libraries with GF commands</H1>
+
+<P>
+<B>New</B>: Browsing by syntax editor 
+<A HREF="../../../demos/resource-api/editor.html">directly on the web</A>.
+</P>
+<P>
+All of the following assume that
+<CODE>GF_LIB_PATH</CODE> points to the directory <CODE>GF/lib</CODE> with compiled libraries.
+</P>
+<P>
+To try out inflection paradigms:
+</P>
+
+<PRE>
+    &gt; i -retain alltenses/ParadigmsGer.gfo
+    &gt; cc mkN "Farbe"
+</PRE>
+
+<P>
+To try out overloaded syntax, test lexicon, and inflection paradigms:
+</P>
+
+<PRE>
+    &gt; i -retain alltenses/TryGer.gfo
+    &gt; cc mkCl (mkNP this_Quant (mkN "Farbe")) (mkA "dunkel")
+</PRE>
+
+<A NAME="toc110"></A>
+<H1>An Example of Usage</H1>
+
+<P>
+The standard way of building an application has the following modules.
+</P>
+<P>
+An abstract syntax:
+</P>
+
+<PRE>
+    abstract Music = {    
+    cat 
+      Kind, 
+      Property ;
+    fun 
+      PropKind : Kind -&gt; Property -&gt; Kind ; 
+      Song : Kind ;
+      American : Property ;
+    }
+</PRE>
+
+<P>
+A domain lexicon interface:
+</P>
+
+<PRE>
+    interface LexMusic = open Cat in {
+    oper
+      song_N : N ;
+      american_A : A ;
+    }
+</PRE>
+
+<P>
+A functor on <CODE>Syntax</CODE> and the domain lexicon interface:
+</P>
+
+<PRE>
+    incomplete concrete MusicI of Music = open Syntax, MusicLex in {
+    lincat 
+      Kind = CN ;
+      Property = AP ;
+    lin
+      PropKind k p = mkCN p k ;
+      Song = mkCN song_N ;
+      American = mkAP american_A ;
+    }
+</PRE>
+
+<P>
+For each language, an instance of the domain lexicon:
+</P>
+
+<PRE>
+    instance LexMusicGer of LexMusic = CatGer ** open ParadigmsGer in {    
+    oper
+      song_N = mkN "Lied" "Lieder" neuter ;
+      american_A = mkA "amerikanisch" ;
+    }
+</PRE>
+
+<P>
+For each language, an instantiation of the functor:
+</P>
+
+<PRE>
+    --# -path=.:present:prelude
+  
+    concrete MusicGer of Music = MusicI with
+      (Syntax = SyntaxGer),
+      (LexMusic = LexMusicGer) ;
+</PRE>
+
+<A NAME="toc111"></A>
+<H1>Table of Contents</H1>
+
+
+  <UL>
+  <LI><A HREF="#toc1">Introduction</A>
+  <LI><A HREF="#toc2">Categories</A>
+    <UL>
+    <LI><A HREF="#toc3">A hierarchic view</A>
+    <LI><A HREF="#toc4">Explanations</A>
+    </UL>
+  <LI><A HREF="#toc5">Syntax Rules and Structural Words</A>
+    <UL>
+    <LI><A HREF="#A" TITLE="A - one-place adjective">A - one-place adjective</A>
+    <LI><A HREF="#A2" TITLE="A2 - two-place adjective">A2 - two-place adjective</A>
+    <LI><A HREF="#AP" TITLE="AP - adjectival phrase">AP - adjectival phrase</A>
+    <LI><A HREF="#AdA" TITLE="AdA - adjective-modifying adverb">AdA - adjective-modifying adverb</A>
+    <LI><A HREF="#AdN" TITLE="AdN - numeral-modifying adverb">AdN - numeral-modifying adverb</A>
+    <LI><A HREF="#AdV" TITLE="Adv - verb-phrase-modifying adverb">AdV - adverb directly attached to verb</A>
+    <LI><A HREF="#Adv" TITLE="Adv - verb-phrase-modifying adverb">Adv - verb-phrase-modifying adverb</A>
+    <LI><A HREF="#Ant" TITLE="Ant - anteriority">Ant - anteriority</A>
+    <LI><A HREF="#CAdv" TITLE="CAdv - comparative adverb">CAdv - comparative adverb</A>
+    <LI><A HREF="#CN" TITLE="CN - common noun (without determiner)">CN - common noun (without determiner)</A>
+    <LI><A HREF="#Card" TITLE="Card - cardinal number">Card - cardinal number</A>
+    <LI><A HREF="#Cl" TITLE="Cl - declarative clause, with all tenses">Cl - declarative clause, with all tenses</A>
+    <LI><A HREF="#ClSlash">ClSlash</A>
+    <LI><A HREF="#Comp" TITLE="Comp - complement of copula, such as AP">Comp - complement of copula, such as AP</A>
+    <LI><A HREF="#Conj" TITLE="Conj - conjunction">Conj - conjunction</A>
+    <LI><A HREF="#Det" TITLE="Det - determiner phrase">Det - determiner phrase</A>
+    <LI><A HREF="#Dig">Dig</A>
+    <LI><A HREF="#Digits" TITLE="Digits - cardinal or ordinal in digits">Digits - cardinal or ordinal in digits</A>
+    <LI><A HREF="#IAdv" TITLE="IAdv - interrogative adverb">IAdv - interrogative adverb</A>
+    <LI><A HREF="#IComp" TITLE="IComp - interrogative complement of copula">IComp - interrogative complement of copula</A>
+    <LI><A HREF="#IDet" TITLE="IDet - interrogative determiner">IDet - interrogative determiner</A>
+    <LI><A HREF="#IP" TITLE="IP - interrogative pronoun">IP - interrogative pronoun</A>
+    <LI><A HREF="#IQuant">IQuant</A>
+    <LI><A HREF="#Imp" TITLE="Imp - imperative">Imp - imperative</A>
+    <LI><A HREF="#ImpForm">ImpForm</A>
+    <LI><A HREF="#Interj" TITLE="Interj - interjection">Interj - interjection</A>
+    <LI><A HREF="#ListAP">ListAP</A>
+    <LI><A HREF="#ListAdv">ListAdv</A>
+    <LI><A HREF="#ListNP">ListNP</A>
+    <LI><A HREF="#ListRS">ListRS</A>
+    <LI><A HREF="#ListS">ListS</A>
+    <LI><A HREF="#N" TITLE="N - common noun">N - common noun</A>
+    <LI><A HREF="#N2" TITLE="N2 - relational noun">N2 - relational noun</A>
+    <LI><A HREF="#N3" TITLE="N3 - three-place relational noun">N3 - three-place relational noun</A>
+    <LI><A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP - noun phrase (subject or object)</A>
+    <LI><A HREF="#Num" TITLE="Num - number determining element">Num - number determining element</A>
+    <LI><A HREF="#Numeral" TITLE="Numeral - cardinal or ordinal in words">Numeral - cardinal or ordinal in words</A>
+    <LI><A HREF="#Ord" TITLE="Ord - ordinal number (used in Det)">Ord - ordinal number (used in Det)</A>
+    <LI><A HREF="#PConj" TITLE="PConj - phrase-beginning conjunction">PConj - phrase-beginning conjunction</A>
+    <LI><A HREF="#PN" TITLE="PN - proper name">PN - proper name</A>
+    <LI><A HREF="#Phr" TITLE="Phr - phrase in a text">Phr - phrase in a text</A>
+    <LI><A HREF="#Pol" TITLE="Pol - polarity">Pol - polarity</A>
+    <LI><A HREF="#Predet" TITLE="Predet - predeterminer (prefixed Quant)">Predet - predeterminer (prefixed Quant)</A>
+    <LI><A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep - preposition, or just case</A>
+    <LI><A HREF="#Pron" TITLE="Pron - personal pronoun">Pron - personal pronoun</A>
+    <LI><A HREF="#Punct">Punct</A>
+    <LI><A HREF="#QCl" TITLE="QCl - question clause, with all tenses">QCl - question clause, with all tenses</A>
+    <LI><A HREF="#QS" TITLE="QS - question">QS - question</A>
+    <LI><A 'HREF="#Quant" TITLE="Quant - quantifier ('nucleus' of Det)"'>Quant - quantifier ('nucleus' of Det)</A>
+    <LI><A HREF="#RCl" TITLE="RCl - relative clause, with all tenses">RCl - relative clause, with all tenses</A>
+    <LI><A HREF="#RP" TITLE="RP - relative pronoun">RP - relative pronoun</A>
+    <LI><A HREF="#RS" TITLE="RS - relative">RS - relative</A>
+    <LI><A HREF="#S" TITLE="S - declarative sentence">S - declarative sentence</A>
+    <LI><A HREF="#SC" TITLE="SC - embedded sentence or question">SC - embedded sentence or question</A>
+    <LI><A HREF="#SSlash">SSlash</A>
+    <LI><A HREF="#Sub100">Sub100</A>
+    <LI><A HREF="#Sub1000">Sub1000</A>
+    <LI><A HREF="#Subj" TITLE="Subj - subjunction">Subj - subjunction</A>
+    <LI><A HREF="#Temp" TITLE="Temp - temporal and aspectual features">Temp - temporal and aspectual features</A>
+    <LI><A HREF="#Tense" TITLE="Tense - tense">Tense - tense</A>
+    <LI><A HREF="#Text" TITLE="Text - text consisting of several phrases">Text - text consisting of several phrases</A>
+    <LI><A HREF="#Unit">Unit</A>
+    <LI><A HREF="#Utt" TITLE="Utt - sentence, question, word...">Utt - sentence, question, word...</A>
+    <LI><A HREF="#V" TITLE="V - one-place verb">V - one-place verb</A>
+    <LI><A HREF="#V2" TITLE="V2 - two-place verb">V2 - two-place verb</A>
+    <LI><A HREF="#V2A" TITLE="V2A - verb with NP and AP complement">V2A - verb with NP and AP complement</A>
+    <LI><A HREF="#V2Q" TITLE="V2Q - verb with NP and Q complement">V2Q - verb with NP and Q complement</A>
+    <LI><A HREF="#V2S" TITLE="V2S - verb with NP and S complement">V2S - verb with NP and S complement</A>
+    <LI><A HREF="#V2V" TITLE="V2V - verb with NP and V complement">V2V - verb with NP and V complement</A>
+    <LI><A HREF="#V3" TITLE="V3 - three-place verb">V3 - three-place verb</A>
+    <LI><A HREF="#VA" TITLE="VA - adjective-complement verb">VA - adjective-complement verb</A>
+    <LI><A HREF="#VP" TITLE="VP - verb phrase">VP - verb phrase</A>
+    <LI><A HREF="#VPSlash" TITLE="VPSlash - verb phrase missing complement">VPSlash - verb phrase missing complement</A>
+    <LI><A HREF="#VQ" TITLE="VQ - question-complement verb">VQ - question-complement verb</A>
+    <LI><A HREF="#VS" TITLE="VS - sentence-complement verb">VS - sentence-complement verb</A>
+    <LI><A HREF="#VV" TITLE="VV - verb-phrase-complement verb">VV - verb-phrase-complement verb</A>
+    <LI><A HREF="#Voc" TITLE="Voc - vocative or "please"">Voc - vocative or "please"</A>
+    </UL>
+  <LI><A HREF="#toc83">Lexical Paradigms</A>
+    <UL>
+    <LI><A HREF="#toc84">Paradigms for Afrikaans</A>
+    <LI><A HREF="#toc85">Paradigms for Bulgarian</A>
+    <LI><A HREF="#toc86">Paradigms for Catalan</A>
+    <LI><A HREF="#toc87">Paradigms for Danish</A>
+    <LI><A HREF="#toc88">Paradigms for Dutch</A>
+    <LI><A HREF="#toc89">Paradigms for English</A>
+    <LI><A HREF="#toc90">Paradigms for Finnish</A>
+    <LI><A HREF="#toc91">Paradigms for French</A>
+    <LI><A HREF="#toc92">Paradigms for German</A>
+    <LI><A HREF="#toc93">Paradigms for Italian</A>
+    <LI><A HREF="#toc94">Paradigms for Nepali</A>
+    <LI><A HREF="#toc95">Paradigms for Norwegian</A>
+    <LI><A HREF="#toc96">Paradigms for Polish</A>
+    <LI><A HREF="#toc97">Paradigms for Punjabi</A>
+    <LI><A HREF="#toc98">Paradigms for Romanian</A>
+    <LI><A HREF="#toc99">Paradigms for Russian</A>
+    <LI><A HREF="#toc100">Paradigms for Spanish</A>
+    <LI><A HREF="#toc101">Paradigms for Swedish</A>
+    <LI><A HREF="#toc102">Paradigms for Urdu</A>
+    </UL>
+  <LI><A HREF="#toc103">Additional Libraries</A>
+    <UL>
+    <LI><A HREF="#toc104">The Prelude module</A>
+    <LI><A HREF="#toc105">The Predefined module</A>
+    <LI><A HREF="#toc106">The Formal module</A>
+    <LI><A HREF="#toc107">The Symbolic module</A>
+    <LI><A HREF="#toc108">The Combinators module</A>
+    </UL>
+  <LI><A HREF="#toc109">Browsing the libraries with GF commands</A>
+  <LI><A HREF="#toc110">An Example of Usage</A>
+  <LI><A HREF="#toc111">Table of Contents</A>
+  </UL>
+
+<!-- html code generated by txt2tags 2.6 (http://txt2tags.org) -->
 <!-- cmdline: txt2tags -thtml -\-toc synopsis.txt -->
 </BODY></HTML>
diff --git a/lib/src/Make.hs b/lib/src/Make.hs
--- a/lib/src/Make.hs
+++ b/lib/src/Make.hs
@@ -28,6 +28,7 @@
 -- we also give the functors implied
  
 langsCoding = [
+  (("afrikaans","Afr"),""),
   (("amharic",  "Amh"),""),
   (("arabic",   "Ara"),""),
   (("bulgarian","Bul"),""),
@@ -42,7 +43,9 @@
   (("interlingua","Ina"),""),
   (("italian",  "Ita"),"Romance"),
   (("latin",    "Lat"),""),
+  (("nepali",   "Nep"),""),
   (("norwegian","Nor"),"Scand"),
+  (("persian",  "Pes"),""),
   (("polish",   "Pol"),""),
   (("punjabi",  "Pnb"),""),
   (("romanian", "Ron"),""),
@@ -64,14 +67,17 @@
 -- languagues that are almost complete and for which Lang is normally compiled
 langsLang = langs `except` langsIncomplete ---- []
 
+-- languagues that have notpresent marked
+langsPresent = langsLang `except` ["Nep","Pes"]
+
 -- languages for which Lang can be compiled but which are incomplete
-langsIncomplete = ["Amh","Ara","Hin","Lat","Pnb","Tha","Tur"]
+langsIncomplete = ["Amh","Ara","Hin","Lat","Tha","Tur"]
 
 -- languages for which to compile Try 
 langsAPI = langsLang `except` langsIncomplete
 
 -- languages for which to compile Symbolic
-langsSymbolic = langsLang `except` (langsIncomplete ++ ["Rus","Ina"])
+langsSymbolic = langsLang `except` (langsIncomplete ++ ["Afr","Ina","Nep","Pes","Pnb","Rus"])
 
 -- languages for which to compile minimal Syntax
 langsMinimal = langs `only` ["Ara","Eng","Bul","Rus"]
@@ -108,7 +114,7 @@
   let optl ls = maybe ls id $ getOptLangs xx
 
   ifx "lang" $ do
-    let lans = optl langsLang
+    let lans = optl $ if pres then langsPresent else langsLang
     mapM_ (gfc pres [] . lang) lans
     mapM_ (gfc pres presSymbolPath . symbol) lans ---- (optl langsAPI)
     copyl lans "*.gfo" dir
diff --git a/lib/src/abstract/Extra.gf b/lib/src/abstract/Extra.gf
--- a/lib/src/abstract/Extra.gf
+++ b/lib/src/abstract/Extra.gf
@@ -8,6 +8,8 @@
 
   fun
     GenNP       : NP -> Quant ;       -- this man's
+    GenIP       : IP -> IQuant ;      -- whose
+    GenRP       : Num -> CN -> RP ;   -- whose car
     ComplBareVS : VS -> S -> VP ;     -- know you go
 
     StrandRelSlash   : RP -> ClSlash -> RCl ;   -- that he lives in
@@ -66,5 +68,9 @@
   fun
     PartVP : VP -> AP ; -- (the man) looking at Mary
     EmbedPresPart : VP -> SC ; -- looking at Mary (is fun)
+
+-- this is a generalization of Verb.PassV2 and should replace it in the future.
+
+    PassVPSlash : VPSlash -> VP ; -- be forced to sleep
 
 }
diff --git a/lib/src/abstract/Grammar.gf b/lib/src/abstract/Grammar.gf
--- a/lib/src/abstract/Grammar.gf
+++ b/lib/src/abstract/Grammar.gf
@@ -10,7 +10,6 @@
   Adjective,
   Adverb,
   Numeral,
-  NumeralTransfer,
   Sentence, 
   Question,
   Relative,
@@ -19,5 +18,7 @@
   Text,
   Structural,
   Idiom,
-  Tense ;
+  Tense,
+  Transfer 
+  ;
 
diff --git a/lib/src/abstract/Lang.gf b/lib/src/abstract/Lang.gf
--- a/lib/src/abstract/Lang.gf
+++ b/lib/src/abstract/Lang.gf
@@ -6,7 +6,7 @@
 -- which may be more suitable to open in applications.
 
 abstract Lang = 
-  Grammar,
+  Grammar, 
   Lexicon
   ** {
   flags startcat=Phr ;
diff --git a/lib/src/abstract/Noun.gf b/lib/src/abstract/Noun.gf
--- a/lib/src/abstract/Noun.gf
+++ b/lib/src/abstract/Noun.gf
@@ -55,6 +55,7 @@
 
 -- $Card$ consists of either digits or numeral words.
 
+  data
     NumDigits  : Digits  -> Card ;  -- 51
     NumNumeral : Numeral -> Card ;  -- fifty-one
 
@@ -62,6 +63,7 @@
 
 -- A $Card$ can  be modified by certain adverbs.
 
+  fun
     AdNum : AdN -> Card -> Card ;   -- almost 51
 
 -- An $Ord$ consists of either digits or numeral words.
diff --git a/lib/src/abstract/NumeralTransfer.gf b/lib/src/abstract/NumeralTransfer.gf
--- a/lib/src/abstract/NumeralTransfer.gf
+++ b/lib/src/abstract/NumeralTransfer.gf
@@ -1,5 +1,10 @@
-abstract NumeralTransfer = Numeral ** {
+abstract NumeralTransfer = Numeral, Noun ** {
 
+fun digits2numeral : Card -> Card ;
+def 
+  digits2numeral (NumDigits d) = NumNumeral (digits2num d) ;
+  digits2numeral n = n ;
+
 fun digits2num : Digits -> Numeral ;
 def digits2num                                                    (IDig d1)       = num (pot2as3 (pot1as2 (pot0as1 (dn10 d1)))) ;
     digits2num                                          (IIDig d2 (IDig d1))      = num (pot2as3 (pot1as2 (dn100 d2 d1))) ;
@@ -89,4 +94,4 @@
     nd n8 = D_8 ;
     nd n9 = D_9 ;
 
-}
+}
diff --git a/lib/src/abstract/Sentence.gf b/lib/src/abstract/Sentence.gf
--- a/lib/src/abstract/Sentence.gf
+++ b/lib/src/abstract/Sentence.gf
@@ -9,7 +9,7 @@
 -- Clauses are converted to $S$ (with fixed tense) with the
 -- $UseCl$ function below.
 
-  fun
+  data
     PredVP    : NP -> VP -> Cl ;         -- John walks
 
 -- Using an embedded sentence as a subject is treated separately.
@@ -62,9 +62,11 @@
     UseRCl   : Temp -> Pol -> RCl -> RS ;
     UseSlash : Temp -> Pol -> ClSlash -> SSlash ;
 
--- An adverb can be added to the beginning of a sentence.
+-- An adverb can be added to the beginning of a sentence, either with comma ("externally")
+-- or without:
 
-    AdvS     : Adv -> S  -> S ;            -- today, I will go home
+    AdvS     : Adv -> S  -> S ;            -- then I will go home
+    ExtAdvS  : Adv -> S  -> S ;            -- next week, I will go home
 
 -- This covers subjunctive clauses, but they can also be added to the end.
 
diff --git a/lib/src/abstract/Transfer.gf b/lib/src/abstract/Transfer.gf
new file mode 100644
--- /dev/null
+++ b/lib/src/abstract/Transfer.gf
@@ -0,0 +1,29 @@
+abstract Transfer = Sentence, Verb, Adverb, Structural, NumeralTransfer ** {
+
+{-
+-- examples of transfer: to test,
+
+  > i LangEng.gf
+
+  > p "she sees him" | pt -transfer=active2passive | l
+  he is seen by her
+
+  > p "wouldn't she see him" | pt -transfer=active2passive | l
+  wouldn't he be seen by her
+
+  > p -cat=NP "3 cats with 4 dogs" | pt -transfer=digits2numeral | l
+  three cats with four dogs
+-}
+
+fun
+  active2passive : Cl -> Cl ;
+def
+  active2passive (PredVP subj (ComplSlash (SlashV2a v) obj)) = 
+    PredVP obj (AdvVP (PassV2 v) (PrepNP by8agent_Prep subj)) ;
+  active2passive (PredVP subj (AdvVP (ComplSlash (SlashV2a v) obj) adv)) = 
+    PredVP obj (AdvVP (AdvVP (PassV2 v) (PrepNP by8agent_Prep subj)) adv) ;
+  active2passive (PredVP subj (AdVVP adv (ComplSlash (SlashV2a v) obj))) = 
+    PredVP obj (AdVVP adv (AdvVP (PassV2 v) (PrepNP by8agent_Prep subj))) ;
+  active2passive cl = cl ;
+
+}
diff --git a/lib/src/abstract/Verb.gf b/lib/src/abstract/Verb.gf
--- a/lib/src/abstract/Verb.gf
+++ b/lib/src/abstract/Verb.gf
@@ -7,7 +7,7 @@
 -- Verb phrases are constructed from verbs by providing their
 -- complements. There is one rule for each verb category.
 
-  fun
+  data
     UseV     : V   -> VP ;        -- sleep
 
     ComplVV  : VV  -> VP -> VP ;  -- want to run
@@ -55,6 +55,10 @@
 
     AdvVP    : VP -> Adv -> VP ;        -- sleep here
     AdVVP    : AdV -> VP -> VP ;        -- always sleep
+
+    AdvVPSlash : VPSlash -> Adv -> VPSlash ;  -- use (it) here
+    AdVVPSlash : AdV -> VPSlash -> VPSlash ;  -- always use (it)
+   
 
 -- *Agents of passives* are constructed as adverbs with the
 -- preposition [Structural Structural.html]$.8agent_Prep$.
diff --git a/lib/src/afrikaans/AdjectiveAfr.gf b/lib/src/afrikaans/AdjectiveAfr.gf
new file mode 100644
--- /dev/null
+++ b/lib/src/afrikaans/AdjectiveAfr.gf
@@ -0,0 +1,57 @@
+concrete AdjectiveAfr of Adjective = CatAfr ** open ResAfr, Prelude in 
+{
+
+
+  flags optimize=all_subs ;
+
+  lin
+
+    PositA  a = {
+      s = a.s ! Posit ;
+      isPre = True
+      } ;
+    ComparA a np = {
+      s = \\af => a.s ! Compar ! af ++ "as" ++ np.s ! NPNom ;	--afr
+      isPre = True
+      } ;
+    CAdvAP ad ap np = {
+      s = \\af => ad.s ++ ap.s ! af ++ ad.p ++ np.s ! NPNom ;
+      isPre = False
+      } ;
+    UseComparA a = {
+      s = \\af => a.s ! Compar ! af ;
+      isPre = True
+      } ;
+    AdjOrd  a = {
+      s = a.s ;
+      isPre = True
+      } ;
+
+-- $SuperlA$ belongs to determiner syntax in $Noun$.
+
+    ComplA2 a np = {
+      s = \\af => a.s ! Posit ! af ++ appPrep a.c2 np.s ; 
+      isPre = True
+      } ;
+
+    ReflA2 a = {
+      s = \\af => a.s ! Posit ! APred ++ appPrep a.c2 (\\_ => reflPron ! agrP3 Sg) ; --- agr 
+      isPre = True
+      } ;
+
+    SentAP ap sc = {
+      s = \\a => ap.s ! a ++ sc.s ; 
+      isPre = False
+      } ;
+
+    AdAP ada ap = {
+      s = \\a => ada.s ++ ap.s ! a ;
+      isPre = ap.isPre
+      } ;
+
+    UseA2 a = {
+      s = a.s ! Posit ;
+      isPre = True
+      } ;
+
+}
diff --git a/lib/src/afrikaans/AdverbAfr.gf b/lib/src/afrikaans/AdverbAfr.gf
new file mode 100644
--- /dev/null
+++ b/lib/src/afrikaans/AdverbAfr.gf
@@ -0,0 +1,24 @@
+concrete AdverbAfr of Adverb = CatAfr ** open ResAfr, Prelude in {
+
+
+  lin
+    PositAdvAdj a = {s = a.s ! Posit ! APred} ;
+
+    ComparAdvAdj cadv a np = {
+      s = cadv.s ++ a.s ! Posit ! APred ++ cadv.p ++ np.s ! NPNom
+      } ;
+    ComparAdvAdjS cadv a s = {
+      s = cadv.s ++ a.s ! Posit ! APred ++ cadv.p ++ s.s ! Sub
+      } ;
+
+    PrepNP prep np = {s = appPrep prep.s np.s} ;
+
+    AdAdv = cc2 ;
+
+    PositAdAAdj a = {s = a.s ! Posit ! APred} ;
+
+    SubjS subj s = {s = subj.s ++ s.s ! Sub} ;
+
+    AdnCAdv cadv = {s = cadv.s ++ conjThan} ;
+
+}
diff --git a/lib/src/afrikaans/AllAfr.gf b/lib/src/afrikaans/AllAfr.gf
new file mode 100644
--- /dev/null
+++ b/lib/src/afrikaans/AllAfr.gf
@@ -0,0 +1,11 @@
+--# -path=.:../abstract:../common:prelude
+
+concrete AllAfr of AllAfrAbs = 
+  LangAfr,
+  IrregAfr,
+  ExtraAfr
+  ** 
+{
+--{} ;
+
+}
diff --git a/lib/src/afrikaans/AllAfrAbs.gf b/lib/src/afrikaans/AllAfrAbs.gf
new file mode 100644
--- /dev/null
+++ b/lib/src/afrikaans/AllAfrAbs.gf
@@ -0,0 +1,11 @@
+--# -path=.:../abstract:../common:prelude
+
+abstract AllAfrAbs = 
+  Lang,
+  IrregAfrAbs,
+  ExtraAfrAbs
+  ** 
+{
+--{} ;
+
+}
diff --git a/lib/src/afrikaans/CatAfr.gf b/lib/src/afrikaans/CatAfr.gf
new file mode 100644
--- /dev/null
+++ b/lib/src/afrikaans/CatAfr.gf
@@ -0,0 +1,88 @@
+concrete CatAfr of Cat = 
+  CommonX **
+  open ResAfr, Prelude in {
+  flags optimize=all_subs ;
+
+  lincat
+
+-- Tensed/Untensed
+
+    S  = {s : Order => Str} ;
+    QS = {s : QForm => Str} ;
+    RS = {s : Gender => Number => Str} ;
+    SSlash = {s : Order => Str} ** {c2 : Preposition} ;
+
+-- Sentence
+
+    Cl = Clause ; -- {s : Tense => Anteriority => Polarity => Order => Str} ;
+    ClSlash = Clause ** {c2 : Preposition} ;
+    Imp = {s : Polarity => ImpForm => Str} ;
+
+-- Question
+
+    QCl = {s : ResAfr.Tense => Anteriority => Polarity => QForm => Str} ;
+    IP = {s : NPCase => Str ; n : Number} ;
+    IComp  = {s : Agr => Str} ; 
+    IDet   = {s : Gender => Str ; n : Number} ;
+    IQuant = {s : Number => Gender => Str} ;
+
+-- Relative
+
+    RCl = {s : ResAfr.Tense => Anteriority => Polarity => Gender => Number => Str} ;
+    RP = {s : Gender => Number => Str ; a : RAgr} ;
+
+-- Verb
+
+    VP = ResAfr.VP ;
+    VPSlash = ResAfr.VP ** {c2 : Preposition} ;
+    Comp = {s : Agr => Str} ; 
+
+-- Adjective
+
+    AP = {s : AForm => Str ; isPre : Bool} ; 
+
+-- Noun
+
+    CN = {s : Adjf => NForm => Str ; g : Gender} ;
+    NP = {s : NPCase => Str ; a : Agr ; isPron : Bool} ;
+    Pron = Pronoun ;
+
+    Det = {s,sp : Gender => Str ; n : Number ; a : Adjf} ;
+    Quant = {
+      s  : Bool => Number => Gender => Str ; 
+      sp : Number => Gender => Str ; 
+      a  : Adjf
+      } ;
+    Predet = {s : Number => Gender => Str} ;
+    Num = {s : Str ; n : Number ; isNum : Bool} ;
+    Card = {s : Gender => Case => Str ; n : Number} ;
+    Ord = {s : AForm => Str} ;
+
+-- Numeral
+
+    Numeral = {s : CardOrd => Str ; n : Number } ;
+    Digits = {s : CardOrd => Str ; n : Number } ;
+
+-- Structural
+
+    Conj = {s1,s2 : Str ; n : Number} ;
+    Subj = {s : Str} ;
+    Prep = {s : Str} ;
+
+-- Open lexical classes, e.g. Lexicon
+
+    V, VS, VQ, VA = ResAfr.VVerb ;
+    VV = VVerb ** {isAux : Bool} ;
+    V2, V2A, V2S, V2Q = VVerb ** {c2 : Preposition} ;
+    V2V = VVerb ** {c2 : Preposition ; isAux : Bool} ;
+    V3 = VVerb ** {c2, c3 : Preposition} ;
+
+    A  = Adjective ;
+    A2 = Adjective ** {c2 : Preposition} ;
+
+    N  = Noun ;
+    N2 = {s : NForm => Str ; g : Gender} ** {c2 : Preposition} ;
+    N3 = {s : NForm => Str ; g : Gender} ** {c2,c3 : Preposition} ;
+    PN = {s : NPCase => Str} ;
+
+}
diff --git a/lib/src/afrikaans/ConjunctionAfr.gf b/lib/src/afrikaans/ConjunctionAfr.gf
new file mode 100644
--- /dev/null
+++ b/lib/src/afrikaans/ConjunctionAfr.gf
@@ -0,0 +1,42 @@
+concrete ConjunctionAfr of Conjunction = 
+  CatAfr ** open ResAfr, Coordination, Prelude in {
+
+  flags optimize=all_subs ;
+
+  lin
+
+    ConjS conj ss = conjunctDistrTable Order conj ss ;
+
+    ConjAdv conj ss = conjunctDistrSS conj ss ;
+
+    ConjNP conj ss = heavyNP (conjunctDistrTable NPCase conj ss ** {
+      a = {g = Neutr ; n = conjNumber conj.n ss.a.n ; p = ss.a.p}
+      }) ;
+
+    ConjAP conj ss = conjunctDistrTable AForm conj ss ** {
+      isPre = ss.isPre
+      } ;
+
+    ConjRS conj ss = conjunctDistrTable2 Gender Number conj ss ;
+
+-- These fun's are generated from the list cat's.
+
+    BaseS = twoTable Order ;
+    ConsS = consrTable Order comma ;
+    BaseAdv = twoSS ;
+    ConsAdv = consrSS comma ;
+    BaseNP x y = twoTable NPCase x y ** {a = conjAgr x.a y.a} ;
+    ConsNP xs x = consrTable NPCase comma xs x ** {a = conjAgr xs.a x.a} ;
+    BaseAP x y = twoTable AForm x y ** {isPre = andB x.isPre y.isPre} ;
+    ConsAP xs x = consrTable AForm comma xs x ** {isPre = andB xs.isPre x.isPre} ;
+    BaseRS x y = twoTable2 Gender Number x y ** {c = y.c} ;
+    ConsRS xs x = consrTable2 Gender Number comma xs x ;
+
+  lincat
+    [S] = {s1,s2 : Order => Str} ;
+    [Adv] = {s1,s2 : Str} ;
+    [NP] = {s1,s2 : NPCase => Str ; a : Agr} ;
+    [AP] = {s1,s2 : AForm => Str ; isPre : Bool} ;
+    [RS] = {s1,s2 : Gender => Number => Str} ;
+
+}
diff --git a/lib/src/afrikaans/ExtraAfr.gf b/lib/src/afrikaans/ExtraAfr.gf
new file mode 100644
--- /dev/null
+++ b/lib/src/afrikaans/ExtraAfr.gf
@@ -0,0 +1,38 @@
+concrete ExtraAfr of ExtraAfrAbs = CatAfr ** 
+  open ResAfr, Coordination, Prelude, IrregAfr in 
+{
+--{
+--
+--  lincat
+--    VPI   = {s : Bool => Str} ;
+--    [VPI] = {s1,s2 : Bool => Str} ;
+--  lin
+--    BaseVPI = twoTable Bool ;
+--    ConsVPI = consrTable Bool comma ;
+--
+--    MkVPI vp = {s = \\b => useInfVP b vp} ;
+--    ConjVPI = conjunctDistrTable Bool ;
+--
+--    ComplVPIVV v vpi = 
+--        insertInf (vpi.s ! v.isAux) (
+--            predVGen v.isAux v) ; ----
+--{-
+--      insertExtrapos vpi.p3 (
+--        insertInf vpi.p2 (
+--          insertObj vpi.p1 (
+--            predVGen v.isAux v))) ;
+---}
+--
+--    PPzuAdv cn = {s = case cn.g of {
+--      Masc | Neutr => "zum" ;
+--      Fem => "zur"
+--      } ++ cn.s ! adjfCase Weak Dat ! Sg ! Dat 
+--    } ;
+
+
+lin
+    ICompAP ap = {s = \\_ => "hoe" ++ ap.s ! APred} ; 
+
+    IAdvAdv adv = {s = "hoe" ++ adv.s} ;
+
+}
diff --git a/lib/src/afrikaans/ExtraAfrAbs.gf b/lib/src/afrikaans/ExtraAfrAbs.gf
new file mode 100644
--- /dev/null
+++ b/lib/src/afrikaans/ExtraAfrAbs.gf
@@ -0,0 +1,15 @@
+abstract ExtraAfrAbs = Extra [
+  VPI,ListVPI,BaseVPI,ConsVPI,MkVPI,ComplVPIVV,ConjVPI,
+  VV,VP,Conj,IComp,ICompAP,IAdvAdv,Adv,AP,IAdv] ** 
+{
+--{
+--
+--  fun
+--    PPzuAdv   : CN -> Adv ;  -- zum Lied, zur Flasche
+--    TImpfSubj : Tense ;      -- ich möchte...   --# notpresent
+--
+--    moegen_VV : VV ;         -- ich mag/möchte singen
+--
+--}
+
+}
diff --git a/lib/src/afrikaans/GrammarAfr.gf b/lib/src/afrikaans/GrammarAfr.gf
new file mode 100644
--- /dev/null
+++ b/lib/src/afrikaans/GrammarAfr.gf
@@ -0,0 +1,17 @@
+--# -path=.:../abstract:../common:prelude
+
+concrete GrammarAfr of Grammar = 
+  NounAfr, 
+  VerbAfr, 
+  AdjectiveAfr,
+  AdverbAfr,
+  NumeralAfr,
+  SentenceAfr,
+  QuestionAfr,
+  RelativeAfr,
+  ConjunctionAfr,
+  PhraseAfr,
+  TextX,
+  IdiomAfr,
+  StructuralAfr,
+  TenseX ;
diff --git a/lib/src/afrikaans/IdiomAfr.gf b/lib/src/afrikaans/IdiomAfr.gf
new file mode 100644
--- /dev/null
+++ b/lib/src/afrikaans/IdiomAfr.gf
@@ -0,0 +1,50 @@
+concrete IdiomAfr of Idiom = CatAfr ** 
+  open MorphoAfr, (P = ParadigmsAfr), IrregAfr, Prelude in {
+
+  flags optimize=all_subs ;
+
+  lin
+    ImpersCl vp = mkClause "dit" (agrP3 Sg) vp ;
+    GenericCl vp = mkClause "mens" (agrP3 Sg) vp ;	--afr
+
+    CleftNP np rs = mkClause "dit" (agrP3 Sg) 
+      (insertExtrapos (rs.s ! np.a.g ! np.a.n) ----
+        (insertObj (\\_ => np.s ! NPNom) (predV zijn_V))) ;
+
+    CleftAdv ad s = mkClause "dit" (agrP3 Sg) 
+      (insertExtrapos (conjThat ++ s.s ! Sub)
+        (insertObj (\\_ => ad.s) (predV zijn_V))) ;
+
+    ExistNP np = 
+      mkClause "daar" (agrP3 np.a.n) 	--afr
+        (insertObj (\\_ => np.s ! NPNom) 
+          (predV zijn_V)) ;
+
+    ExistIP ip = {
+      s = \\t,a,p => 
+            let 
+              cls = 
+                (mkClause "daar" (agrP3 ip.n)  (predV zijn_V)).s ! t ! a ! p ;	--afr
+              who = ip.s ! NPNom
+            in table {
+              QDir   => who ++ cls ! Inv ;
+              QIndir => who ++ cls ! Sub
+              }
+      } ;
+
+    ProgrVP vp = insertAdv ("aan" ++ "die" ++ useInfVP True vp) (predV zijn_V) ;	--afr
+
+    ImpPl1 vp =
+      let 
+        v   = v2vv (regVerb "laat") ;
+        vpi = infVP True vp ;
+        vvp = insertExtrapos vpi.p3 (
+                insertInf vpi.p2 (
+                  insertObj vpi.p1 (
+                    predVGen True v))) ;
+      in 
+      {s = (mkClause "ons" {g = Neutr ; n = Pl ; p = P1} vvp).s ! 
+                           Pres ! Simul ! Pos ! Inv 
+      } ;
+
+}
diff --git a/lib/src/afrikaans/IrregAfr.gf b/lib/src/afrikaans/IrregAfr.gf
new file mode 100644
--- /dev/null
+++ b/lib/src/afrikaans/IrregAfr.gf
@@ -0,0 +1,199 @@
+--# -path=.:../common:../abstract
+
+concrete IrregAfr of IrregAfrAbs = CatAfr ** open ParadigmsAfr in {
+{-
+-- lin bakken_V = mkV "bakken" "bakte" "bakten" "gebakken" ;
+-- lin bannen_V = mkV "bannen" "bande" "banden" "gebannen" ;
+-- lin barsten_V = mkV "barsten" "barstte" "barstten" "gebarsten" ;
+-- lin bederven_V = mkZijnHebbenV "bederven" "bedierf" "bedierven" "bedorven" ;
+-- lin bedriegen_V = mkV "bedriegen" "bedroog" "bedrogen" "bedrogen" ;
+-- lin beginnen_V = mkZijnV "beginnen" "begon" "begonnen" "begonnen" ;
+-- lin behangen_V = mkV "behangen" "behangde" "behangden" "behangen" ;
+-- lin bergen_V = mkV "bergen" "borg" "borgen" "geborgen" ;
+-- lin bevelen_V = mkV "bevelen" "beval" "bevalen" "bevolen" ;
+-- lin bezwijken_V = mkZijnV "bezwijken" "bezweek" "bezweken" "bezweken" ;
+-- lin bidden_V = mkV "bidden" "bad" "baden" "gebeden" ;
+-- lin bieden_V = mkV "bieden" "bood" "boden" "geboden" ;
+-- lin bijten_V = mkV "bijten" "beet" "beten" "gebeten" ;
+-- lin binden_V = mkV "binden" "bond" "bonden" "gebonden" ;
+-- lin blazen_V = mkV "blazen" "blies" "bliezen" "geblazen" ;
+-- lin blijken_V = mkZijnV "blijken" "bleek" "bleken" "gebleken" ;
+-- lin blijven_V = mkZijnV "blijven" "bleef" "bleven" "gebleven" ;
+-- lin blinken_V = mkV "blinken" "blonk" "blonken" "geblonken" ;
+-- lin braden_V = mkV "braden" "braadde" "braadden" "gebraden" ;
+-- lin breken_V = mkZijnHebbenV "breken" "brak" "braken" "gebroken" ;
+-- lin brengen_V = mkV "brengen" "bracht" "brachten" "gebracht" ;
+-- lin brouwen_V = mkV "brouwen" "brouwde" "brouwden" "gebrouwen" ;
+-- lin buigen_V = mkV "buigen" "boog" "bogen" "gebogen" ;
+-- lin denken_V = mkV "denken" "dacht" "dachten" "gedacht" ;
+-- lin dingen_V = mkV "dingen" "naar" "dong" "naar" ;
+-- lin doen_V = mkV "doen" "deed" "deden" "gedaan" ;
+-- lin dragen_V = mkV "dragen" "droeg" "droegen" "gedragen" ;
+-- lin drijven_V = mkV "drijven" "dreef" "dreven" "gedreven" ;
+-- lin dringen_V = mkV "dringen" "drong" "drongen" "gedrongen" ;
+-- lin drinken_V = mkV "drinken" "dronk" "dronken" "gedronken" ;
+-- lin druipen_V = mkZijnHebbenV "druipen" "droop" "dropen" "gedropen" ;
+-- lin duiken_V = mkZijnHebbenV "duiken" "dook" "doken" "gedoken" ;
+-- lin dwingen_V = mkV "dwingen" "dwong" "dwongen" "gedwongen" ;
+-- lin eten_V = mkV "eten" "at" "aten" "gegeten" ;
+-- lin fluiten_V = mkV "fluiten" "floot" "floten" "gefloten" ;
+-- lin gelden_V = mkV "gelden" "gold" "golden" "gegolden" ;
+-- lin gaan_V = mkZijnV "gaan" "ging" "gingen" "gegaan" ;
+-- lin genezen_V = mkZijnHebbenV "genezen" "genas" "genazen" "genezen" ;
+-- lin genieten_V = mkV "genieten" "genoot" "genoten" "genoten" ;
+-- lin geven_V = mkV "geven" "gaf" "gaven" "gegeven" ;
+-- lin gieten_V = mkV "gieten" "goot" "goten" "gegoten" ;
+-- lin glijden_V = mkZijnHebbenV "glijden" "gleed" "gleden" "gegleden" ;
+-- lin glimmen_V = mkV "glimmen" "glom" "glommen" "geglommen" ;
+-- lin graven_V = mkV "graven" "groef" "groeven" "gegraven" ;
+-- lin grijpen_V = mkV "grijpen" "greep" "grepen" "gegrepen" ;
+-- lin hangen_V = mkV "hangen" "hing" "hingen" "gehangen" ;
+-- lin heffen_V = mkV "heffen" "hief" "hieven" "geheven" ;
+-- lin helpen_V = mkV "helpen" "hielp" "hielpen" "geholpen" ;
+-- lin heten_V = mkV "heten" "heette" "heetten" "geheten" ;
+-- lin hijsen_V = mkV "hijsen" "hees" "hesen" "gehesen" ;
+-- lin hoeven_V = mkV "hoeven" "hoefde" "hoefden" "gehoeven" ;
+-- lin houden_V = mkV "houden" "hield" "hielden" "gehouden" ;
+-- lin houwen_V = mkV "houwen" "houwde" "houwden" "gehouwen" ;
+-- lin jagen_V = mkV "jagen" "joeg" "joegen" "gejaagd" ;
+-- lin kiezen_V = mkV "kiezen" "koos" "kozen" "gekozen" ;
+-- lin kijken_V = mkV "kijken" "naar" "keek" "naar" ;
+-- lin klimmen_V = mkZijnHebbenV "klimmen" "klom" "klommen" "geklommen" ;
+-- lin k-- linken_V = mkV "k-- linken" "klonk" "klonken" "geklonken" ;
+-- lin kluiven_V = mkV "kluiven" "kloof" "kloven" "gekloven" ;
+-- lin knijpen_V = mkV "knijpen" "kneep" "knepen" "geknepen" ;
+-- lin kopen_V = mkV "kopen" "kocht" "kochten" "gekocht" ;
+-- lin krijgen_V = mkV "krijgen" "kreeg" "kregen" "gekregen" ;
+-- lin krimpen_V = mkZijnV "krimpen" "kromp" "krompen" "gekrompen" ;
+-- lin kruipen_V = mkZijnHebbenV "kruipen" "kroop" "kropen" "gekropen" ;
+-- lin zich_V = mkV "zich" "kwijten" "van" "kweet" ;
+-- lin lachen_V = mkV "lachen" "lachte" "lachten" "gelachen" ;
+-- lin laden_V = mkV "laden" "laadde" "laadden" "geladen" ;
+-- lin laten_V = mkV "laten" "liet" "lieten" "gelaten" ;
+-- lin lezen_V = mkV "lezen" "las" "lazen" "gelezen" ;
+-- lin liegen_V = mkV "liegen" "loog" "logen" "gelogen" ;
+-- lin liggen_V = mkV "liggen" "lag" "lagen" "gelegen" ;
+-- lin lijden_V = mkV "lijden" "leed" "leden" "geleden" ;
+-- lin lijken_V = mkV "lijken" "op" "leek" "op" ;
+-- lin lopen_V = mkZijnHebbenV "lopen" "liep" "liepen" "gelopen" ;
+-- lin malen_V = mkV "malen" "maalde" "maalden" "gemalen" ;
+-- lin melken_V = mkV "melken" "molk" "molken" "gemolken" ;
+-- lin meten_V = mkV "meten" "mat" "maten" "gemeten" ;
+-- lin mijden_V = mkV "mijden" "meed" "meden" "gemeden" ;
+-- lin moeten_V = mkV "moeten" "moest" "moesten" "gemoeten" ;
+-- lin nemen_V = mkV "nemen" "nam" "namen" "genomen" ;
+-- lin nijgen_V = mkV "nijgen" "neeg" "negen" "genegen" ;
+-- lin ontginnen_V = mkV "ontginnen" "ontgon" "ontgonnen" "ontgonnen" ;
+-- lin ontluiken_V = mkZijnV "ontluiken" "ontlook" "ontloken" "ontloken" ;
+-- lin pluizen_V = mkV "pluizen" "ploos" "plozen" "geplozen" ;
+-- lin prijzen_V = mkV "prijzen" "prees" "prezen" "geprezen" ;
+-- lin raden_V = mkV "raden" "raadde" "raadden" "geraden" ;
+-- lin rijden_V = mkZijnHebbenV "rijden" "reed" "reden" "gereden" ;
+-- lin rijgen_V = mkV "rijgen" "reeg" "regen" "geregen" ;
+-- lin rijten_V = mkV "rijten" "reet" "reten" "gereten" ;
+-- lin rijzen_V = mkZijnV "rijzen" "rees" "rezen" "gerezen" ;
+-- lin roepen_V = mkV "roepen" "riep" "riepen" "geroepen" ;
+-- lin ruiken_V = mkV "ruiken" "rook" "roken" "geroken" ;
+-- lin scheiden_V = mkZijnHebbenV "scheiden" "scheidde" "scheidden" "gescheiden" ;
+-- lin schelden_V = mkV "schelden" "schold" "scholden" "gescholden" ;
+-- lin schenden_V = mkV "schenden" "schond" "schonden" "geschonden" ;
+-- lin schenken_V = mkV "schenken" "schonk" "schonken" "geschonken" ;
+-- lin scheppen_V = mkV "scheppen" "shiep" "schiepen" "geschapen" ;
+-- lin scheren_V = mkV "scheren" "scheerde" "scheerden" "geschoren" ;
+-- lin schieten_V = mkV "schieten" "schoot" "schoten" "geschoten" ;
+-- lin schijnen_V = mkV "schijnen" "scheen" "schenen" "1." ;
+-- lin verschijnen_V = mkZijnV "verschijnen" "verscheen" "verschenen" "verschenen" ;
+-- lin schijten_V = mkV "schijten" "scheet" "scheten" "gescheten" ;
+-- lin schrijven_V = mkV "schrijven" "schreef" "schreven" "geschreven" ;
+-- lin schrikken_V = mkZijnV "schrikken" "schrok" "schrokken" "geschrokken" ;
+-- lin schuilen_V = mkV "schuilen" "school" "scholen" "gescholen" ;
+-- lin schuiven_V = mkZijnHebbenV "schuiven" "schoof" "schoven" "geschoven" ;
+-- lin slaan_V = mkV "slaan" "sloeg" "sloegen" "geslagen" ;
+-- lin slapen_V = mkV "slapen" "sliep" "sliepen" "geslapen" ;
+-- lin slijpen_V = mkV "slijpen" "sleep" "slepen" "geslepen" ;
+-- lin slijten_V = mkZijnHebbenV "slijten" "sleet" "sleten" "gesleten" ;
+-- lin s-- linken_V = mkZijnV "s-- linken" "slonk" "slonken" "geslonken" ;
+-- lin sluipen_V = mkZijnHebbenV "sluipen" "sloop" "slopen" "geslopen" ;
+-- lin sluiten_V = mkZijnHebbenV "sluiten" "sloot" "sloten" "gesloten" ;
+-- lin smelten_V = mkZijnHebbenV "smelten" "smolt" "smolten" "gesmolten" ;
+-- lin smijten_V = mkV "smijten" "smeet" "smeten" "gesmeten" ;
+-- lin snijden_V = mkV "snijden" "sneed" "sneden" "gesneden" ;
+-- lin snuiten_V = mkV "snuiten" "snoot" "snoten" "gesnoten" ;
+-- lin snuiven_V = mkV "snuiven" "snoof" "snoven" "gesnoven" ;
+-- lin spannen_V = mkV "spannen" "spande" "spanden" "gespannen" ;
+-- lin spijten_V = mkV "spijten" "speet" "speten" "gespeten" ;
+-- lin spinnen_V = mkV "spinnen" "spon" "sponnen" "gesponnen" ;
+-- lin splijten_V = mkZijnHebbenV "splijten" "spleet" "spleten" "gespleten" ;
+-- lin spreken_V = mkV "spreken" "sprak" "spraken" "gesproken" ;
+-- lin springen_V = mkZijnHebbenV "springen" "sprong" "sprongen" "gesprongen" ;
+-- lin spruiten_V = mkZijnV "spruiten" "sproot" "sproten" "gesproten" ;
+-- lin spuiten_V = mkV "spuiten" "spoot" "spoten" "gespoten" ;
+-- lin staan_V = mkV "staan" "stond" "stonden" "gestaan" ;
+-- lin steken_V = mkV "steken" "stak" "staken" "gestoken" ;
+-- lin stelen_V = mkV "stelen" "stal" "stalen" "gestolen" ;
+-- lin sterven_V = mkZijnV "sterven" "stierf" "stierven" "gestorven" ;
+-- lin stijgen_V = mkZijnV "stijgen" "steeg" "stegen" "gestegen" ;
+-- lin stijven_V = mkV "stijven" "steef" "steven" "gesteven" ;
+-- lin stinken_V = mkV "stinken" "stonk" "stonken" "gestonken" ;
+-- lin stoten_V = mkV "stoten" "stootte" "stootten" "gestoten" ;
+-- lin strijden_V = mkV "strijden" "streed" "streden" "gestreden" ;
+-- lin strijken_V = mkV "strijken" "streek" "streken" "gestreken" ;
+-- lin neerstrijken_V = mkV "neerstrijken" "streek" "neer" "streken" ;
+-- lin stuiven_V = mkV "stuiven" "stoof" "stoven" "gestoven" ;
+-- lin treden_V = mkZijnHebbenV "treden" "trad" "traden" "getreden" ;
+-- lin treffen_V = mkV "treffen" "trof" "troffen" "getroffen" ;
+-- lin trekken_V = mkZijnHebbenV "trekken" "trok" "trokken" "getrokken" ;
+-- lin vallen_V = mkZijnV "vallen" "viel" "vielen" "gevallen" ;
+-- lin vangen_V = mkV "vangen" "ving" "vingen" "gevangen" ;
+-- lin varen_V = mkZijnHebbenV "varen" "voer" "voeren" "gevaren" ;
+-- lin vechten_V = mkV "vechten" "vocht" "vochten" "gevochten" ;
+-- lin verdrieten_V = mkV "verdrieten" "verdroot" "verdroten" "verdroten" ;
+-- lin verdwijnen_V = mkZijnV "verdwijnen" "verdween" "verdwenen" "verdwenen" ;
+-- lin vergeten_V = mkV "vergeten" "+" "vergat" "vergaten" ;
+-- lin verliezen_V = mkV "verliezen" "verloor" "verloren" "verloren" ;
+-- lin vinden_V = mkV "vinden" "vond" "vonden" "gevonden" ;
+-- lin vlechten_V = mkV "vlechten" "vlocht" "vlochten" "gevlochten" ;
+-- lin vliegen_V = mkZijnHebbenV "vliegen" "vloog" "vlogen" "gevlogen" ;
+-- lin vouwen_V = mkV "vouwen" "vouwde" "vouwden" "gevouwen" ;
+-- lin vragen_V = mkV "vragen" "vroeg" "vroegen" "gevraagd" ;
+-- lin vreten_V = mkV "vreten" "vrat" "vraten" "gevreten" ;
+-- lin vriezen_V = mkV "vriezen" "vroor" "vroren" "gevroren" ;
+-- lin vrijen_V = mkV "vrijen" "vree" "/" "vrijde" ;
+-- lin wassen_V = mkV "wassen" "waste" "wasten" "gewassen" ;
+-- lin wegen_V = mkV "wegen" "woog" "wogen" "gewogen" ;
+-- lin werpen_V = mkV "werpen" "wierp" "wierpen" "geworpen" ;
+-- lin werven_V = mkV "werven" "wierf" "wierven" "geworven" ;
+-- lin weten_V = mkV "weten" "wist" "wisten" "geweten" ;
+-- lin weven_V = mkV "weven" "weefde" "weefden" "geweven" ;
+-- lin wijken_V = mkZijnV "wijken" "week" "weken" "geweken" ;
+-- lin wijten_V = mkV "wijten" "weet" "weten" "geweten" ;
+-- lin wijzen_V = mkV "wijzen" "wees" "wezen" "gewezen" ;
+-- lin winden_V = mkV "winden" "wond" "wonden" "gewonden" ;
+-- lin winnen_V = mkV "winnen" "won" "wonnen" "gewonnen" ;
+-- lin worden_V = mkV "worden" "werd" "werden" "geworden" ;
+-- lin wrijven_V = mkV "wrijven" "wreef" "wreven" "gewreven" ;
+-- lin wringen_V = mkV "wringen" "wrong" "wrongen" "gewrongen" ;
+-- lin zeggen_V = mkV "zeggen" "zei" "zeiden" "gezegd" ;
+-- lin zenden_V = mkV "zenden" "zond" "zonden" "gezonden" ;
+-- lin zien_V = mkV "zien" "zag" "zagen" "gezien" ;
+-- lin zijgen_V = mkZijnV "zijgen" "zeeg" "zegen" "gezegen" ;
+-- lin zingen_V = mkV "zingen" "zong" "zongen" "gezongen" ;
+-- lin zinken_V = mkZijnV "zinken" "zonk" "zonken" "gezonken" ;
+-- lin zinnen_V = mkV "zinnen" "zon" "zonnen" "gezonnen" ;
+-- lin zitten_V = mkV "zitten" "zat" "zaten" "gezeten" ;
+-- lin zoeken_V = mkV "zoeken" "zocht" "zochten" "gezocht" ;
+-- lin zuigen_V = mkV "zuigen" "zoog" "zogen" "gezogen" ;
+-- lin zuipen_V = mkV "zuipen" "zoop" "zopen" "gezopen" ;
+-- lin zwelgen_V = mkV "zwelgen" "zwolg" "zwolgen" "gezwolgen" ;
+-- lin zwellen_V = mkZijnV "zwellen" "zwol" "zwollen" "gezwollen" ;
+-- lin zwemmen_V = mkZijnHebbenV "zwemmen" "zwom" "zwommen" "gezwommen" ;
+-- lin zweren_V = mkV "zweren" "zwoer" "zwoeren" "gezworen" ;
+-- lin zwerven_V = mkV "zwerven" "zwierf" "zwierven" "gezworven" ;
+-- lin zwijgen_V = mkV "zwijgen" "zweeg" "zwegen" "gezwegen" ;
+
+oper 
+  mkZijnV, mkZijnHebbenV : (_,_,_,_ : Str) -> V ;
+  mkZijnV a b c d = zijnV (mkV a b c d) ;
+  mkZijnHebbenV a b c d = zijnV (mkV a b c d) ; ---- both could be
+-}
+}
diff --git a/lib/src/afrikaans/IrregAfrAbs.gf b/lib/src/afrikaans/IrregAfrAbs.gf
new file mode 100644
--- /dev/null
+++ b/lib/src/afrikaans/IrregAfrAbs.gf
@@ -0,0 +1,192 @@
+abstract IrregAfrAbs = Cat ** {
+{-
+-- fun bakken_V : V ; -- to fry
+-- fun bannen_V : V ; -- to ban
+-- fun barsten_V : V ; -- to burst
+-- fun bederven_V : V ; -- to rot, to decay
+-- fun bedriegen_V : V ; -- to deceive, to cheat, to trick
+-- fun beginnen_V : V ; -- to begin
+-- fun behangen_V : V ; -- to wall-paper
+-- fun bergen_V : V ; -- to store, to recover
+-- fun bevelen_V : V ; -- to order, to command
+-- fun bezwijken_V : V ; -- to succumb, to collapse
+-- fun bidden_V : V ; -- to pray
+-- fun bieden_V : V ; -- to offer
+-- fun bijten_V : V ; -- to bite
+-- fun binden_V : V ; -- to bind, to tie
+-- fun blazen_V : V ; -- to blow, to spit (cat)
+-- fun blijken_V : V ; -- to appear, to be evident
+-- fun blijven_V : V ; -- to stay, to remain, to keep
+-- fun blinken_V : V ; -- to shine, to gleam
+-- fun braden_V : V ; -- to roast, to grill
+-- fun breken_V : V ; -- to break
+-- fun brengen_V : V ; -- to bring
+-- fun brouwen_V : V ; -- to brew
+-- fun buigen_V : V ; -- to bend
+-- fun denken_V : V ; -- to think
+-- fun dingen_V : V ; -- dongen naar gedongen naar to bid for, to compete for
+-- fun doen_V : V ; -- to do
+-- fun dragen_V : V ; -- to carry, to bear
+-- fun drijven_V : V ; -- to drive, to float , to manage
+-- fun dringen_V : V ; -- to push (a crowd)
+-- fun drinken_V : V ; -- to drink
+-- fun druipen_V : V ; -- to drip
+-- fun duiken_V : V ; -- to dive
+-- fun dwingen_V : V ; -- to force
+-- fun eten_V : V ; -- to eat
+-- fun fluiten_V : V ; -- to whistle, to play the flute
+-- fun gelden_V : V ; -- to be valid, to be in effect
+-- fun gaan_V : V ; -- to go
+-- fun genezen_V : V ; -- to heal, to cure
+-- fun genieten_V : V ; -- to enjoy
+-- fun geven_V : V ; -- to give
+-- fun gieten_V : V ; -- to pour
+-- fun glijden_V : V ; -- to glide
+-- fun glimmen_V : V ; -- to glimmer, to shine, to gleam
+-- fun graven_V : V ; -- to dig
+-- fun grijpen_V : V ; -- to grab, to snatch
+-- fun hangen_V : V ; -- to hang
+-- fun heffen_V : V ; -- to raise, to lift, to levy
+-- fun helpen_V : V ; -- to help
+-- fun heten_V : V ; -- to be called, to be named
+-- fun hijsen_V : V ; -- to hoist (sails, flag), to pull up
+-- fun hoeven_V : V ; -- to be necessary
+-- fun houden_V : V ; -- to hold
+-- fun houwen_V : V ; -- to hew, hack
+-- fun jagen_V : V ; -- to hunt
+-- fun kiezen_V : V ; -- to choose, to elect
+-- fun kijken_V : V ; -- keken naar gekeken naar to look at
+-- fun klimmen_V : V ; -- to climb
+-- fun klinken_V : V ; -- to sound, to ring, to clink
+-- fun kluiven_V : V ; -- to pick (a bone), to nibble
+-- fun knijpen_V : V ; -- to pinch, to squeeze
+-- fun kopen_V : V ; -- to buy
+-- fun krijgen_V : V ; -- to get
+-- fun krimpen_V : V ; -- to shrink
+-- fun kruipen_V : V ; -- to crawl, to creep
+-- fun zich_V : V ; -- zich van kweten zich van zich gekweten van to acquit oneself of
+-- fun lachen_V : V ; -- to laugh, to smile
+-- fun laden_V : V ; -- to load, to charge
+-- fun laten_V : V ; -- to let, to allow
+-- fun lezen_V : V ; -- to read
+-- fun liegen_V : V ; -- to (tell a) lie
+-- fun liggen_V : V ; -- to lie (on a bed)
+-- fun lijden_V : V ; -- to suffer
+-- fun lijken_V : V ; -- leken op geleken op to resemble, to seem
+-- fun lopen_V : V ; -- to walk
+-- fun malen_V : V ; -- to grind
+-- fun melken_V : V ; -- to milk (a cow)
+-- fun meten_V : V ; -- to measure
+-- fun mijden_V : V ; -- to avoid
+-- fun moeten_V : V ; -- to must, have to
+-- fun nemen_V : V ; -- to take
+-- fun nijgen_V : V ; -- to (make a bow
+-- fun ontginnen_V : V ; -- to reclaim (land), to clear (forest), to exploit (mine)
+-- fun ontluiken_V : V ; -- to open (flower, beauty)
+-- fun pluizen_V : V ; -- to fluff, to give off fluff
+-- fun prijzen_V : V ; -- to praise
+-- fun raden_V : V ; -- go guess
+-- fun rijden_V : V ; -- to drive, to ride
+-- fun rijgen_V : V ; -- to tack, to lace, to thread
+-- fun rijten_V : V ; -- to tear, to rip
+-- fun rijzen_V : V ; -- to rise
+-- fun roepen_V : V ; -- to call, to shout
+-- fun ruiken_V : V ; -- to smell, to scent
+-- fun scheiden_V : V ; -- to divorce, to separate
+-- fun schelden_V : V ; -- to curse, to swear
+-- fun schenden_V : V ; -- to violate, to damage
+-- fun schenken_V : V ; -- 1. to donate 2. to pour
+-- fun scheppen_V : V ; -- to create
+-- fun scheren_V : V ; -- to shave
+-- fun schieten_V : V ; -- to shoot
+-- fun schijnen_V : V ; -- geschenen
+-- fun verschijnen_V : V ; -- to appear, to turn up
+-- fun schijten_V : V ; -- to shit (flat)
+-- fun schrijven_V : V ; -- to write
+-- fun schrikken_V : V ; -- to be startled
+-- fun schuilen_V : V ; -- to shelter
+-- fun schuiven_V : V ; -- to shove
+-- fun slaan_V : V ; -- to hit
+-- fun slapen_V : V ; -- to sleep
+-- fun slijpen_V : V ; -- to sharpen, to polish
+-- fun slijten_V : V ; -- to wear out, to sell
+-- fun slinken_V : V ; -- to shrink, to decrease in number
+-- fun sluipen_V : V ; -- to sneak, to slink
+-- fun sluiten_V : V ; -- to close, to shut
+-- fun smelten_V : V ; -- to melt
+-- fun smijten_V : V ; -- to throw, to fling
+-- fun snijden_V : V ; -- to cut
+-- fun snuiten_V : V ; -- to snout, to blow (nose)
+-- fun snuiven_V : V ; -- to sniff, to snort
+-- fun spannen_V : V ; -- to strain, to bend (a bow)
+-- fun spijten_V : V ; -- to regret
+-- fun spinnen_V : V ; -- to twist
+-- fun splijten_V : V ; -- to split, to cleave
+-- fun spreken_V : V ; -- to speak
+-- fun springen_V : V ; -- to jump, to spring
+-- fun spruiten_V : V ; -- to sprout, to grow out
+-- fun spuiten_V : V ; -- to spout, to squirt
+-- fun staan_V : V ; -- to stand
+-- fun steken_V : V ; -- to stab, to prick, to sting
+-- fun stelen_V : V ; -- to steal
+-- fun sterven_V : V ; -- to die
+-- fun stijgen_V : V ; -- to rise
+-- fun stijven_V : V ; -- to starch
+-- fun stinken_V : V ; -- to stink
+-- fun stoten_V : V ; -- to push, to bump
+-- fun strijden_V : V ; -- to battle, to fight
+-- fun strijken_V : V ; -- to iron (clothes), strike (flag), smooth (hair)
+-- fun neerstrijken_V : V ; -- neer neergestreken * to settle in a place
+-- fun stuiven_V : V ; -- to cause dust to whirl, to dash forward
+-- fun treden_V : V ; -- to tread
+-- fun treffen_V : V ; -- to hit (goal) to strike
+-- fun trekken_V : V ; -- to pull, to draw, to travel
+-- fun vallen_V : V ; -- to fall
+-- fun vangen_V : V ; -- to catch
+-- fun varen_V : V ; -- to fare, to sail
+-- fun vechten_V : V ; -- to fight
+-- fun verdrieten_V : V ; -- to grieve
+-- fun verdwijnen_V : V ; -- to disappear
+-- fun vergeten_V : V ; -- vergeten to forget
+-- fun verliezen_V : V ; -- to lose
+-- fun vinden_V : V ; -- to find
+-- fun vlechten_V : V ; -- to plait, to braid
+-- fun vliegen_V : V ; -- to fly
+-- fun vouwen_V : V ; -- to fold
+-- fun vragen_V : V ; -- to ask
+-- fun vreten_V : V ; -- to eat, to devour
+-- fun vriezen_V : V ; -- to freeze ("it's freezing")
+-- fun vrijen_V : V ; -- vreeën / vrijden gevreeën / gevrijd to make love
+-- fun wassen_V : V ; -- to wash
+-- fun wegen_V : V ; -- to weigh
+-- fun werpen_V : V ; -- to throw
+-- fun werven_V : V ; -- to recruit
+-- fun weten_V : V ; -- to know
+-- fun weven_V : V ; -- to weave
+-- fun wijken_V : V ; -- to give way, to disappear
+-- fun wijten_V : V ; -- to blame (something) on
+-- fun wijzen_V : V ; -- to point
+-- fun winden_V : V ; -- to wind
+-- fun winnen_V : V ; -- to win
+-- fun worden_V : V ; -- to become
+-- fun wrijven_V : V ; -- to rub
+-- fun wringen_V : V ; -- to wring
+-- fun zeggen_V : V ; -- to say
+-- fun zenden_V : V ; -- to send
+-- fun zien_V : V ; -- to see
+-- fun zijgen_V : V ; -- to sink down (neerzijgen)
+-- fun zingen_V : V ; -- to sing
+-- fun zinken_V : V ; -- to sink
+-- fun zinnen_V : V ; -- to ponder (zinnen op)
+-- fun zitten_V : V ; -- to sit
+-- fun zoeken_V : V ; -- to seek, to search
+-- fun zuigen_V : V ; -- to suck
+-- fun zuipen_V : V ; -- to booze
+-- fun zwelgen_V : V ; -- to revel, to dwell (in self-pity)
+-- fun zwellen_V : V ; -- to swell
+-- fun zwemmen_V : V ; -- to swim
+-- fun zweren_V : V ; -- to swear (oath)
+-- fun zwerven_V : V ; -- to wander, to ramble
+-- fun zwijgen_V : V ; -- to be silent
+-}
+}
diff --git a/lib/src/afrikaans/LangAfr.gf b/lib/src/afrikaans/LangAfr.gf
new file mode 100644
--- /dev/null
+++ b/lib/src/afrikaans/LangAfr.gf
@@ -0,0 +1,5 @@
+--# -path=.:../abstract:../common:../prelude
+
+concrete LangAfr of Lang = 
+  GrammarAfr,
+  LexiconAfr ;
diff --git a/lib/src/afrikaans/LexiconAfr.gf b/lib/src/afrikaans/LexiconAfr.gf
new file mode 100644
--- /dev/null
+++ b/lib/src/afrikaans/LexiconAfr.gf
@@ -0,0 +1,370 @@
+--# -path=.:../common:../abstract:../../prelude
+
+-- work by Aarne Ranta
+
+concrete LexiconAfr of Lexicon = CatAfr ** 
+  open Prelude, ParadigmsAfr, IrregAfr in {
+
+flags 
+  optimize=all_subs ;
+
+lin
+  add_V3 = mkV3 (mkV "toe" (mkV "voeg")) (mkPrep "aan") ;
+  already_Adv = mkAdv "al" ;
+  answer_V2S = mkV2S (mkV "antwoord") noPrep ;
+  ask_V2Q = mkV2Q (mkV "vra") noPrep ;
+  bad_A = mkA "boos" ;
+  beautiful_A = mkA "mooi" ;
+  become_VA = mkVA (mkV "word") ;
+  beer_N = mkN "bier" neuter ;
+  beg_V2V = mkV2V (mkV "smeek") noPrep ; ---- om te
+  big_A = mkA "groot" "groot" "groots" "groter" "grootste";
+  bike_N = mkN "fiets" ;
+  black_A = mkA "swart" ;
+  blue_A = mkA "blou";
+  
+  book_N = mkN "boek" ;
+  
+  brother_N2 = mkN2 (mkN "broer" "broers" masculine) van_Prep ;
+  brown_A = mkA "bruin" ;
+  buy_V2 = mkV2 (mkV "koop") ;
+  child_N = mkN "kind" "kinders" neuter ;
+  come_V = zijnV (mkV "kom") ;
+  die_V = zijnV (mkV "sterf") ;
+  distance_N3 = mkN3 (mkN "afstand") van_Prep (mkPrep "na") ;
+  drink_V2 = mkV2 (mkV "drink") ;
+  easy_A2V = mkA2 (mkA "gemaklik") noPrep ;
+  eat_V2 = mkV2 (mkV "eet") ;
+  father_N2 = mkN2 (mkN "vader") van_Prep ;
+  fear_VS = mkVS (mkV "vrees") ;
+  fish_N = mkN "vis" ;
+  go_V = mkV "gaan" ;
+  hope_VS = mkVS (mkV "hoop") ;
+  house_N = mkN "huis" neuter ;
+  know_VQ = mkVQ (mkV "weet") ;
+  know_VS = mkVS (mkV "weet") ;
+  married_A2 = mkA2 (mkA "getroud") (mkPrep "met") ;
+  mother_N2 = mkN2 (mkN "ma") ;
+  now_Adv = mkAdv "nou" ;
+  paint_V2A = mkV2A (mkV "skilder") noPrep ;
+  paris_PN = mkPN "Parys" ;
+  red_A = mkA "rooi" ;
+  say_VS = mkVS (mkV "sê") ;
+  see_V2 = mkV2 (mkV "sien") ;
+  sell_V3 = mkV3 (mkV "verkoop") ;
+  send_V3 = mkV3 (mkV "stuur") (mkPrep "na") ;
+  sleep_V = mkV "slaap" ;
+  small_A = mkA "klein" ;
+  talk_V3 = mkV3 (mkV "praat") (mkPrep "met") (mkPrep "oor") ;
+  warm_A = mkA "warm" ;
+  wine_N = mkN "wyn" ;
+  john_PN = mkPN "Jan" ;
+  left_Ord = mkOrd (invarA "linker") ; ----
+  right_Ord = mkOrd (invarA "regter") ; ----
+  today_Adv = mkAdv "vandag" ;
+  far_Adv = mkAdv "ver" ;
+  give_V3 = mkV3 (mkV "gee") ;
+  wonder_VQ = mkVQ (reflV (mkV "af" (mkV "vra"))) ;
+airplane_N = mkN "vliegtuig" neuter ;
+animal_N = mkN "dier" neuter ;
+apartment_N = mkN "woonstel" "woonstelle" neuter ;
+apple_N = mkN "appel" neuter ;
+art_N = mkN "kuns" "kunste" neuter ;
+ashes_N = mkN "as" neuter ;
+baby_N = mkN "baba" neuter ;
+back_N = mkN "agterkant" neuter ;
+bank_N = mkN "bank" neuter ;
+bark_N = mkN "blaf" neuter ;
+belly_N = mkN "maag" neuter ;
+bird_N = mkN "voël" "voëls" neuter ;
+bite_V2 = mkV2 (mkV "byt") ;
+black_A = mkA "swart" ;
+blood_N = mkN "bloed" neuter ;
+blow_V = mkV "blaas" ;
+boat_N = mkN "boot" neuter ;
+bone_N = mkN "been" neuter ;
+boot_N = mkN "stewel" neuter ;
+boss_N = mkN "baas" neuter ;
+boy_N = mkN "seun" "seuns" neuter ;
+bread_N = mkN "brood" neuter ;
+break_V2 = mkV2 (mkV "breek") ;
+breast_N = mkN "bors" "borste" neuter ;
+breathe_V = mkV "asem" ;
+broad_A = mkA "breed" ;
+burn_V = mkV "brand" ;
+butter_N = mkN "botter" neuter ;
+camera_N = mkN "kamera" neuter ;
+cap_N = mkN "keps" neuter ;
+car_N = mkN "kar" neuter ;
+carpet_N = mkN "tapyt" neuter ;
+cat_N = mkN "kat" neuter ;
+ceiling_N = mkN "plafon" neuter ;
+chair_N = mkN "stoel" neuter ;
+cheese_N = mkN "kaas" neuter ;
+church_N = mkN "kerk" neuter ;
+city_N = mkN "stad" "stede" neuter ;
+clean_A = mkA "skoon" ;
+clever_A = mkA "slim" ;
+close_V2 = mkV2 (mkV "sluit") ;
+cloud_N = mkN "wolk" neuter ;
+coat_N = mkN "baadjie" neuter ;
+
+	cold_A = mkA "koud" ;
+
+computer_N = mkN "rekenaar" neuter ;
+correct_A = mkA "korrek" ;
+-- correct_A = mkA "reg" ;	--afr
+count_V2 = mkV2 "tel" ;
+country_N = mkN "land" neuter ;
+cousin_N = mkN "neef" "neefs" neuter ;
+cow_N = mkN "koei" neuter ;
+cut_V2 = mkV2 (mkV "sny") ;
+day_N = mkN "dag" neuter ;
+dig_V = mkV "grawe" ;
+dirty_A = mkA "vuil" ;
+do_V2 = mkV2 (mkV "doen") ;
+doctor_N = mkN "dokter" neuter ;
+dog_N = mkN "hond" neuter ;
+door_N = mkN "deur" neuter ;
+dry_A = mkA "droog" ;
+dull_A = mkA "vervelig" ;
+dust_N = mkN "stof" neuter ;
+ear_N = mkN "oor" neuter ;
+earth_N = mkN "aarde" neuter ;
+egg_N = mkN "eier" "eiers" neuter ;
+empty_A = mkA "leeg" ;
+enemy_N = mkN "vyand" neuter ;
+eye_N = mkN "oog" neuter ;
+factory_N = mkN "fabriek" neuter ;
+fall_V = mkV "val" ;
+fat_N = mkN "vet" neuter ;
+fear_V2 = mkV2 "vrees" ;
+feather_N = mkN "veer" neuter ;
+fight_V2 = mkV2 (mkV "veg") ;
+find_V2 = mkV2 (mkV "vind") ;
+fingernail_N = mkN "vingernael" neuter ;
+fire_N = mkN "brand" neuter ;
+float_V = mkV "dryf" ;
+floor_N = mkN "vloer" neuter ;
+flow_V = mkV "stroom" ;
+flower_N = mkN "blom" neuter ;
+fly_V = mkV "vlieg" ;
+fog_N = mkN "mis" neuter ;
+foot_N = mkN "voet" neuter ;
+forest_N = mkN "bos" neuter ;
+forget_V2 = mkV2 (mkV "vergeet") ;
+freeze_V = mkV "vries" ;
+fridge_N = mkN "yskas" "yskaste" neuter ;
+friend_N = mkN "vriend" neuter ;
+fruit_N = mkN "vrug" "vrugte" neuter ;
+full_A = mkA "vol" ;
+fun_AV = mkA "prettig" ;	--afr
+garden_N = mkN "tuin" neuter ;
+girl_N = mkN "meisie" neuter ;
+glove_N = mkN "handskoen" neuter ;
+gold_N = mkN "goud" neuter ;
+good_A = mkA "goed" "goeie" "goeds" "beter" "beste" ;
+grammar_N = mkN "grammatika" neuter ;
+grass_N = mkN "gras" neuter ;
+green_A = mkA "groen" ;
+guts_N = mkN "derms" "derms" neuter ;
+hair_N = mkN "haar" neuter ;
+hand_N = mkN "hand" neuter ;
+harbour_N = mkN "hawe" "hawens" neuter ;
+hat_N = mkN "hoed" "hoedens" neuter ;
+hate_V2 = mkV2 "haat" ;
+head_N = mkN "hoof" "hoofde" neuter ;
+hear_V2 = mkV2 "hoor" ;
+heart_N = mkN "hart" neuter ;
+heavy_A = mkA "swaar" ;
+hill_N = mkN "heuwel" neuter ;
+hit_V2 = mkV2 "tref" ;	--afr
+hold_V2 = mkV2 (mkV "hou") ;
+horn_N = mkN "horing" neuter ;
+horse_N = mkN "perd" neuter ;
+hot_A = mkA "warm" ;
+hunt_V2 = mkV2 "jag" ;
+husband_N = mkN "man" "mans" neuter ;
+ice_N = mkN "ys" neuter ;
+important_A = mkA "belangrik" ;
+industry_N = mkN "industrie" "industrieë" neuter ;
+iron_N = mkN "yster" neuter ;
+jump_V = mkV "spring" ;
+kill_V2 = mkV2 "dood" ;
+-- kill_V2 = mkV2 "doodmaak" ;	--afr
+king_N = mkN "koning" neuter ;
+knee_N = mkN "knie" neuter ;
+know_V2 = mkV2 "ken" ;
+lake_N = mkN "meer" neuter ;
+lamp_N = mkN "lamp" neuter ;
+language_N = mkN "taal" neuter ;
+laugh_V = mkV "lag" ;
+leaf_N = mkN "blaar" neuter ;
+learn_V2 = mkV2 "leer" ;
+leather_N = mkN "leer" neuter ;
+leave_V2 = mkV2 (mkV "verlaat") ;
+leg_N = mkN "been" neuter ;
+lie_V = mkV "lê" ;
+like_V2 = mkV2 (mkV "hou") van_Prep ;
+listen_V2 = mkV2 "luister" ;
+live_V = mkV "leef" ;
+liver_N = mkN "lewer" neuter ;
+long_A = mkA "lank" "lang" "langs" "langer" "langste" ;
+lose_V2 = mkV2 (mkV "verloor") ;
+louse_N = mkN "luis" neuter ;
+love_N = mkN "liefde" neuter ;
+love_V2 = mkV2 (mkV "lief" hebben_V) ;
+man_N = mkN "man" "mans" neuter ;
+meat_N = mkN "vleis" neuter ;
+milk_N = mkN "melk" neuter ;
+moon_N = mkN "maan" neuter ;
+mountain_N = mkN "berg" neuter ;
+mouth_N = mkN "mond" neuter ;
+music_N = mkN "musiek" neuter ;
+name_N = mkN "naam" neuter ;
+narrow_A = mkA "smal" ;
+near_A = mkA "naby" "naby" "nabys" "nader" "naaste";
+neck_N = mkN "nek" neuter ;
+new_A = mkA "nuut" "nuwe" ;
+newspaper_N = mkN "koerant" neuter ;
+night_N = mkN "nag" "nagte" neuter ;
+nose_N = mkN "neus" neuter ;
+number_N = mkN "nommer" neuter ;
+oil_N = mkN "olie" neuter ;
+old_A = mkA "oud" "ou" "ouds" "ouer" "oudste";
+open_V2 = mkV2 "oop" ;
+paper_N = mkN "papier" "papiere" neuter ;
+peace_N = mkN "vrede" neuter ;
+pen_N = mkN "pen" neuter ;
+person_N = mkN "persoon" neuter ;
+planet_N = mkN "planeet" neuter ;
+plastic_N = mkN "plastiek" neuter ;
+play_V = mkV "speel" ;
+play_V2 = mkV2 "speel" ;
+policeman_N = mkN "polisieman" neuter ;
+priest_N = mkN "priester" neuter ;
+probable_AS = mkA "waarskynlik" ;
+pull_V2 = mkV2 "trek" ;
+push_V2 = mkV2 "stoot" ;
+put_V2 = mkV2 "sit" ;
+queen_N = mkN "koningin" neuter ;
+question_N = mkN "vraag" neuter ;
+radio_N = mkN "radio" neuter ;
+rain_N = mkN "reën" "reëns" neuter ;
+rain_V0 = mkV "reën" ;
+read_V2 = mkV2 (mkV "lees") ;
+ready_A = mkA "reg" ;
+reason_N = mkN "rede" neuter ;
+-- red_A = mkA "rooi" ;
+religion_N = mkN "godsdiens" "godsdienste" neuter ;
+restaurant_N = mkN "restaurant" neuter ;
+river_N = mkN "rivier" "riviere" neuter ;
+road_N = mkN "pad" "paaie" neuter ;
+rock_N = mkN "rots" neuter ;
+roof_N = mkN "dak" neuter ;
+root_N = mkN "wortel" neuter ;
+rope_N = mkN "tou" neuter ;
+rotten_A = mkA "vrot" ;
+round_A = mkA "rond" ;
+rub_V2 = mkV2 (mkV "vryf") ;
+rubber_N = mkN "rubber" neuter ;
+rule_N = mkN "reël" "reël" neuter ;
+run_V = zijnV (mkV "hardloop") ;
+salt_N = mkN "sout" neuter ;
+sand_N = mkN "sand" neuter ;
+school_N = mkN "skool" neuter ;
+science_N = mkN "wetenskap" neuter ;
+scratch_V2 = mkV2 "krap" ;
+sea_N = mkN "see" neuter ;
+seed_N = mkN "saad" neuter ;
+seek_V2 = mkV2 (mkV "soek") ;
+sew_V = mkV "naai" ;
+sharp_A = mkA "skerp" ;
+sheep_N = mkN "skaap" neuter ;
+ship_N = mkN "skip" "skepe" neuter ;
+shirt_N = mkN "hemp" "hemde" neuter ;
+shoe_N = mkN "skoen" neuter ;
+shop_N = mkN "winkel" neuter ;
+short_A = mkA "kort" ;
+silver_N = mkN "silwer" neuter ;
+sing_V = mkV "sing" ;
+sister_N = mkN "suster" neuter ;
+sit_V = mkV "sit" ;
+skin_N = mkN "vel" neuter ;
+sky_N = mkN "lug" "lugte" neuter ;
+smell_V = mkV "ruik" ;
+smoke_N = mkN "rook" neuter ;
+smooth_A = mkA "glad" ;
+snake_N = mkN "slang" neuter ;
+snow_N = mkN "sneeu" neuter ;
+sock_N = mkN "sokkie" neuter ;
+song_N = mkN "liedjie" neuter ;
+speak_V2 = mkV2 (mkV "spreek") ;
+spit_V = mkV "spoeg" ;
+split_V2 = mkV2 (mkV "splits") ;
+squeeze_V2 = mkV2 (mkV "knyp") ;
+stab_V2 = mkV2 (mkV "steek") ;
+stand_V = mkV "staan" ;
+star_N = mkN "ster" neuter ;
+steel_N = mkN "staal" neuter ;
+stick_N = mkN "stok" neuter ;
+stone_N = mkN "steen" neuter ;
+stop_V = mkV "stop" ;
+stove_N = mkN "stoof" neuter ;
+straight_A = mkA "reguit" ;
+student_N = mkN "student" neuter ;
+stupid_A = mkA "dom" ;
+suck_V2 = mkV2 (mkV "suig") ;
+sun_N = mkN "son" neuter ;
+swell_V = mkV "swel" ;
+swim_V = mkV "swem" ;
+switch8off_V2 = mkV2 "skakel" ;
+switch8on_V2 = mkV2 (mkV "aan" (mkV "skakel")) ;	--afr
+table_N = mkN "tabel" "tabelle" neuter ;
+tail_N = mkN "stert" neuter ;
+teach_V2 = mkV2 "leer" ;
+teacher_N = mkN "onderwyser" neuter ;
+television_N = mkN "televisie" neuter ;
+thick_A = mkA "dik" ;
+--afr
+--thief_N = mkN "dief" neuter ;
+thin_A = mkA "dun" ;
+think_V = mkV "dink" ;
+throw_V2 = mkV2 "gooi" ;
+tie_V2 = mkV2 "bind" ;
+tongue_N = mkN "tong" neuter ;
+tooth_N = mkN "tand" neuter ;
+train_N = mkN "trein" neuter ;
+travel_V = mkV "reis" ;
+tree_N = mkN "boom" neuter ;
+turn_V = mkV "draai" ;
+ugly_A = mkA "lelik" ;
+uncertain_A = mkA "onseker" ;
+understand_V2 = mkV2 (mkV "verstaan") ;
+university_N = mkN "universiteit" neuter ;
+village_N = mkN "dorp" neuter ;
+vomit_V = mkV "braak" ;
+wait_V2 = mkV2 "wag" ;
+walk_V = mkV "loop" ;
+war_N = mkN "oorlog" neuter ;
+wash_V2 = mkV2 (mkV "was") ;
+watch_V2 = mkV2 (mkV "kyk") (mkPrep "na") ;
+water_N = mkN "water" neuter ;
+wet_A = mkA "nat" ;
+white_A = mkA "wit" ;
+wide_A = mkA "breed" ;
+wife_N = mkN "vrou" neuter ;
+win_V2 = mkV2 (mkV "wen") ;
+wind_N = mkN "wind" neuter ;
+window_N = mkN "venster" neuter ;
+wing_N = mkN "vlerk" neuter ;
+wipe_V2 = mkV2 "vee" ;
+woman_N = mkN "vrou" neuter ;
+wood_N = mkN "hout" neuter ;
+worm_N = mkN "wurm" neuter ;
+write_V2 = mkV2 (mkV "skryf") ;
+year_N = mkN "jaar" neuter ;
+yellow_A = mkA "geel" ;
+young_A = mkA "jonk" "jong" "jongs" "jonger" "jongste";
+
+}
diff --git a/lib/src/afrikaans/MorphoAfr.gf b/lib/src/afrikaans/MorphoAfr.gf
new file mode 100644
--- /dev/null
+++ b/lib/src/afrikaans/MorphoAfr.gf
@@ -0,0 +1,100 @@
+--# -path=.:../common:../../prelude
+--
+----1 A Simple Afrman Resource Morphology
+----
+---- Aarne Ranta & Harald Hammarström 2002 -- 2006
+----
+---- This resource morphology contains definitions needed in the resource
+---- syntax. To build a lexicon, it is better to use $ParadigmsAfr$, which
+---- gives a higher-level access to this module.
+--
+resource MorphoAfr = ResAfr ** open Prelude, (Predef=Predef) in 
+{
+--{
+--
+--  flags optimize=all ;
+--
+--oper
+--
+---- For $StructuralAfr$.
+--
+--  mkPrep : Str -> Case -> Preposition = \s,c -> 
+--    {s = s ; c = c} ;
+--
+--  nameNounPhrase : {s : Case => Str} ->  {s : Case => Str ; a : Agr} = \name ->
+--    name ** {a = agrP3 Sg} ;
+--
+--  detLikeAdj : Number -> Str -> 
+--    {s,sp : Gender => Case => Str ; n : Number ; a : Adjf} = \n,dies -> 
+--      {s,sp = appAdj (regA dies) ! n ; n = n ; a = Weak} ;
+--
+--  mkOrd : {s : Degree => AForm => Str} -> {s : AForm => Str} = \a ->
+--    {s = a.s ! Posit} ;
+--
+---- For $ParadigmsAfr$.
+--
+--  genitS : Str -> Str = \hund -> case hund of {
+--    _ + ("el" | "en" | "er") => hund + "s" ;
+--    _ + ("s" | "ß" | "sch" | "st" | "x" | "z") => hund + "es" ;
+--    _ => hund + variants {"s" ; "es"}
+--    } ;
+--  pluralN : Str -> Str = \hund -> case hund of {
+--    _ + ("el" | "er" | "e") => hund + "n" ;
+--    _ + "en" => hund ;
+--    _ => hund + "en"
+--    } ;
+--  dativE : Str -> Str = \hund -> case hund of {
+--    _ + ("el" | "en" | "er" | "e") => hund ;
+--    _ => variants {hund ; hund + "e"}
+--    } ;
+--
+---- Duden, p. 119
+--
+--  verbT : Str -> Str = \v -> case v of {
+--    _ + ("t" | "d") => v + "et" ; -- gründen, reden, betten
+--    _ + ("ch" | "k" | "p" | "t" | "g" | "b" | "d" | "f" | "s") + 
+--        ("m" | "n") => v + "et" ; -- atmen, widmen, öffnen, rechnen
+--    _ => v + "t"                  -- lernen, lärmen, qualmen etc
+--    } ;
+--
+--  verbST : Str -> Str = \v -> case v of {
+--    _ + ("s" | "ss" | "ß" | "sch" | "x" | "z") => v + "t" ;
+--    _ => v + "st"
+--    } ;
+--
+--  stemVerb : Str -> Str = \v -> case v of {
+--    _ + ("rn" | "ln") => init v ;
+--    _ => Predef.tk 2 v
+--    } ;
+--
+---- For $Numeral$.
+--
+--  LinDigit = {s : DForm => CardOrd => Str} ;
+--
+--  cardOrd : Str -> Str -> CardOrd => Str = \drei,dritte ->
+--    table {
+--      NCard _ _ => drei ;
+--      NOrd a => (regA (init dritte)).s ! Posit ! a
+--      } ;
+--
+--  cardReg : Str -> CardOrd => Str = \zehn ->
+--    cardOrd zehn (zehn + "te") ;
+--
+--  mkDigit : (x1,_,_,x4 : Str) -> LinDigit = 
+--    \drei,dreizehn,dreissig,dritte ->
+--    {s = table {
+--           DUnit => cardOrd drei dritte ;
+--           DTeen => cardReg dreizehn ;
+--           DTen  => cardOrd dreissig (dreissig + "ste")
+--           }
+--     } ;
+--
+--  regDigit : Str -> LinDigit = \vier -> 
+--    mkDigit vier (vier + "zehn") (vier + "zig") (vier + "te") ;
+--
+--  invNum : CardOrd = NCard Masc Nom ;
+--
+--} ;
+--
+
+}
diff --git a/lib/src/afrikaans/NounAfr.gf b/lib/src/afrikaans/NounAfr.gf
new file mode 100644
--- /dev/null
+++ b/lib/src/afrikaans/NounAfr.gf
@@ -0,0 +1,180 @@
+concrete NounAfr of Noun = CatAfr ** open ResAfr, Prelude in {
+
+  flags optimize=all_subs ;
+
+  lin
+    DetCN det cn = {
+      s = \\c => det.s ! cn.g ++ cn.s ! det.a ! NF det.n Nom ; -- kan dalk vereenvoudig (2011-01-14)
+      a = agrP3 det.n ;
+      isPron = False
+      } ;
+
+    DetNP det = {
+      s = \\_ => det.sp ! Neutr ;
+      a = agrP3 det.n ;
+      isPron = False
+      } ;
+
+    UsePN pn = {s = pn.s ; a = agrP3 Sg ; isPron = False} ;
+
+    UsePron pron = {
+      s = table {NPNom => pron.unstressed.nom ; NPAcc => pron.unstressed.acc} ;
+      a = pron.a ;
+      isPron = True
+      } ;
+
+    PredetNP pred np = heavyNP {
+      s = \\c => 
+        pred.s ! np.a.n ! np.a.g ++ np.s ! c ; ---- g
+      a = np.a
+      } ;
+
+    PPartNP np v2 = heavyNP {
+      s = \\c => np.s ! c ++ v2.s ! VPerf ; -- invar part
+      a = np.a
+      } ;
+
+    AdvNP np adv = heavyNP {
+      s = \\c => np.s ! c ++ adv.s ;
+      a = np.a
+      } ;
+
+    DetQuantOrd quant num ord = 
+      let 
+        n = num.n ;
+        a = quant.a
+      in {
+        s  = \\g => quant.s ! num.isNum ! n ! g ++ 
+                      num.s ++ ord.s ! agrAdj g quant.a (NF n Nom) ;
+        sp = \\g => quant.sp ! n ! g ++ 
+                      num.s ++ ord.s ! agrAdj g quant.a (NF n Nom) ;
+        n = n ;
+        a = a
+        } ;
+
+    DetQuant quant num = 
+      let 
+        n = num.n ;
+        a = quant.a
+      in {
+        s = \\g => quant.s ! num.isNum ! n ! g ++ num.s ;
+        sp = \\g => quant.sp ! n ! g ++ num.s ;
+        n = n ;
+        a = a
+        } ;
+
+    PossPron p = {
+      s  = \\_,n,g => p.unstressed.poss ;
+      sp = \\n,g => p.substposs ;
+      a = Strong
+      } ;
+
+    NumCard n = {s = n.s ! Neutr ! Nom ; n = n.n ; isNum = True} ;
+
+    NumPl = {s = []; n = Pl ; isNum = False} ; 
+    NumSg = {s = []; n = Sg ; isNum = False} ; 
+
+    NumDigits numeral = {s = \\g,c => numeral.s ! NCard g c; n = numeral.n } ;
+    OrdDigits numeral = {s = \\af => numeral.s ! NOrd af} ;
+
+    NumNumeral numeral = {s = \\g,c => numeral.s ! NCard g c; n = numeral.n } ;
+    OrdNumeral numeral = {s = \\af => numeral.s ! NOrd af} ;
+
+    AdNum adn num = {s = \\g,c => adn.s ++ num.s!g!c; n = num.n } ;
+
+    OrdSuperl a = {s = a.s ! Superl} ;
+
+    DefArt = {
+      s = \\_,n,g  => case <n,g> of {<Sg,Neutr> => "die" ; _ => "die"} ;	--afr
+      sp = \\n,g => "hulle" ;	--afr
+      a = Weak
+      } ;
+
+    IndefArt = {
+      s = table {
+        True => \\_,_ => [] ; 
+        False => table {
+          Sg => \\g => "'n" ;	--afr
+          Pl =>  \\_ => []
+          }
+        } ; 
+      sp = table {
+        Sg => \\g => "'n" ;	--afr
+        Pl => \\_ => "'n" ----	--afr
+        } ;
+      a = Strong
+      } ;
+
+    MassNP cn = {
+      s = \\c => cn.s ! Strong ! NF Sg Nom ;
+      a = agrP3 Sg ;
+      isPron = False
+      } ;
+
+    UseN, UseN2 = \n -> {
+      s = \\_ => n.s ;
+      g = n.g
+      } ;
+
+    ComplN2 f x = {
+      s = \\_,nc => f.s ! nc ++ appPrep f.c2 x.s ;
+      g = f.g
+      } ;
+
+    ComplN3 f x = {
+      s = \\nc => f.s ! nc ++ appPrep f.c2 x.s ;
+      g = f.g ; 
+      c2 = f.c3
+      } ;
+
+    Use2N3 f = {
+      s = f.s ;
+      g = f.g ; 
+      c2 = f.c2
+      } ;
+
+    Use3N3 f = {
+      s = f.s ;
+      g = f.g ; 
+      c2 = f.c3
+      } ;
+
+    AdjCN ap cn = 
+      let 
+        g = cn.g 
+      in {
+        s = \\a,n => 
+               preOrPost ap.isPre
+                 (ap.s ! agrAdj g a n)
+                 (cn.s ! a ! n) ;
+        g = g
+        } ;
+
+    RelCN cn rs = {
+      s = \\a,nc => cn.s ! a ! nc ++ rs.s ! cn.g ! (case nc of {NF n c => n}) ;
+      g = cn.g
+      } ;
+
+    RelNP np rs = {
+      s = \\c => np.s ! c ++ "," ++ rs.s ! np.a.g ! np.a.n ;
+      a = np.a ;
+      isPron = False
+      } ;
+
+    SentCN cn s = {
+      s = \\a,nc => cn.s ! a ! nc ++ s.s ;
+      g = cn.g
+      } ;
+
+    AdvCN cn s = {
+      s = \\a,nc => cn.s ! a ! nc ++ s.s ;
+      g = cn.g
+      } ;
+
+    ApposCN  cn np = let g = cn.g in {
+      s = \\a,nc => cn.s ! a ! nc ++ np.s ! NPNom ;
+      g = g ;
+      isMod = cn.isMod
+      } ;
+
+}
diff --git a/lib/src/afrikaans/NumeralAfr.gf b/lib/src/afrikaans/NumeralAfr.gf
new file mode 100644
--- /dev/null
+++ b/lib/src/afrikaans/NumeralAfr.gf
@@ -0,0 +1,111 @@
+concrete NumeralAfr of Numeral = CatAfr ** open ResAfr, Prelude in {
+
+flags optimize = all_subs ;
+
+lincat 
+  Digit = {s : DForm => CardOrd => Str ; en : Str} ;
+  Sub10 = {s : DForm => CardOrd => Str ; n : Number ; en : Str ; attr : Str} ;
+  Sub100, Sub1000, Sub1000000 = 
+          {s :          CardOrd => Str ; n : Number ; attr : Str} ;
+
+lin 
+  num x = x ;
+
+  n2 = mkDigit  "twee"  "twaalf"  "twintig"  "tweede" ;
+  n3 = mkDigit  "drie"  "dertien" "dertig"  "derde" ;
+  n4 = mkDigit  "vier"  "veertien" "veertig" "vierde" ;
+  n5 = mkDigit  "vyf"  "vyftien" "vyftig" "vyfde" ;
+  n6 = mkDigit  "ses"   "sestien" "sestig" "sesde" ;
+  n7 = mkDigit  "seven" "seventien" "seventig" "sevende" ;
+  n8 = mkDigit  "agt"  "agtien"   "tagtig"  "agtste" ;
+  n9 = mkDigit  "nege" "negentien" "negentig" "negende" ;
+
+  pot01 = {
+    s = \\f => table {
+          NCard g _ => "een" ; ---- "één" ;
+          NOrd af => (regAdjective "eerste").s ! Posit ! af
+          } ; 
+    n = Sg ;
+    attr = [] ;
+    en = "en"
+    } ;
+  pot0 d = {s = \\f,g => d.s ! f ! g ; n = Pl ; en = d.en ; attr = d.s ! DUnit ! invNum ++ BIND} ;
+  pot110 = {s = cardOrd "tien" "tiende" ; n = Pl ; attr = "tien" ++ BIND} ;
+  pot111 = {s = cardOrd "elf" "elfde" ; n = Pl ; attr = "elf" ++ BIND} ;
+  pot1to19 d = addAttr {s = d.s ! DTeen ; n = Pl} ;
+  pot0as1 n = {s = n.s ! DUnit; n = n.n ; attr = n.attr} ;
+  pot1 d = addAttr {s = d.s ! DTen ; n = Pl} ;
+  pot1plus d e = addAttr {s = \\g => 
+    e.s ! DUnit ! invNum ++ BIND ++ e.en ++ BIND ++ d.s ! DTen ! g ; n = Pl} ;
+  pot1as2 n = n ;
+  pot2 d = 
+    addAttr {s = \\g => d.attr ++ cardOrd "honderd" "honderdste" ! g ; n = Pl} ;
+  pot2plus d e = 
+    addAttr {s = \\g => d.attr ++ "honderd" ++ BIND ++ e.s ! g ; n = Pl} ;
+  pot2as3 n = n ;
+  pot3 n = 
+    addAttr {s = \\g => n.attr ++ cardOrd "duisend" "duisendste" ! g ; n = Pl} ; 
+  pot3plus n m = 
+    addAttr {s = \\g => n.attr ++ "duisend" ++ m.s ! g ; n = Pl} ;
+
+
+  lincat 
+    Dig = TDigit ;
+
+  lin
+    IDig d = d ; 
+
+    IIDig d i = {
+      s = \\o => d.s ! invNum ++ i.s ! o ;
+      n = Pl
+    } ;
+
+    D_0 = mkDig "0" ;
+    D_1 = mk3Dig "1" "1e" Sg ;
+    D_2 = mk2Dig "2" "2e" ;
+    D_3 = mkDig "3" ;
+    D_4 = mkDig "4" ;
+    D_5 = mkDig "5" ;
+    D_6 = mkDig "6" ;
+    D_7 = mkDig "7" ;
+    D_8 = mkDig "8" ;
+    D_9 = mkDig "9" ;
+
+  oper
+    mk2Dig : Str -> Str -> TDigit = \c,o -> mk3Dig c o Pl ;
+    mkDig : Str -> TDigit = \c -> mk2Dig c (c + "e") ;
+
+    mk3Dig : Str -> Str -> Number -> TDigit = \c,o,n -> {
+      s = table {NCard _ _ => c ; NOrd _ => o} ;
+      n = n
+      } ;
+
+    TDigit = {
+      n : Number ;
+      s : CardOrd => Str
+    } ;
+
+  LinDigit = {s : DForm => CardOrd => Str ; en : Str} ;
+
+  cardOrd : Str -> Str -> CardOrd => Str = \drei,dritte ->
+    let dritt = init dritte in
+    table {
+      NCard _ _ => drei ;
+      NOrd a => (regAdjective dritt).s ! Posit ! a
+      } ;
+
+  mkDigit : (x1,_,_,x4 : Str) -> LinDigit = 
+    \drei,dreizehn,dreissig,dritte ->
+    {s = table {
+           DUnit => cardOrd drei dritte ;
+           DTeen => cardOrd dreizehn (dreizehn + "de") ;
+           DTen  => cardOrd dreissig (dreissig + "ste")
+           } ;
+     en = case drei of {_ + "e" => "ën" ; _ => "en"}
+     } ;
+  invNum : CardOrd = NCard Neutr Nom ;
+
+  addAttr : {s : CardOrd => Str ; n : Number} -> 
+    {s : CardOrd => Str ; n : Number ; attr : Str} = \n -> n ** {attr = n.s ! invNum ++ BIND} ;
+
+}
diff --git a/lib/src/afrikaans/ParadigmsAfr.gf b/lib/src/afrikaans/ParadigmsAfr.gf
new file mode 100644
--- /dev/null
+++ b/lib/src/afrikaans/ParadigmsAfr.gf
@@ -0,0 +1,497 @@
+--# -path=.:../common:../abstract:../../prelude
+
+--1 Afrch Lexical Paradigms
+--
+-- Aarne Ranta 2009
+--
+-- This is an API for the user of the resource grammar 
+-- for adding lexical items. It gives functions for forming
+-- expressions of open categories: nouns, adjectives, verbs.
+-- 
+-- Closed categories (determiners, pronouns, conjunctions) are
+-- accessed through the resource syntax API, $Structural.gf$. 
+--
+-- The structure of functions for each word class $C$ is the following:
+-- first we give a handful of patterns that aim to cover all
+-- cases, from the most regular (with just one argument) to the worst. 
+-- The name of this function is $mkC$.
+-- 
+-- There is also a module [``IrregAfr`` IrregAfr.gf] 
+-- which covers irregular verbs.
+
+
+resource ParadigmsAfr = open 
+  (Predef=Predef), 
+  Prelude, 
+  ResAfr,
+  CatAfr
+  in 
+{
+--2 Parameters 
+
+-- To abstract over gender names, we define the following identifiers.
+
+oper
+  masculine : Gender ; --%
+  feminine  : Gender ; --%
+  neuter    : Gender ; --%
+  utrum     : Gender ; --%
+--afr!
+  de  : Gender ; -- non-neutrum
+  het : Gender ; -- neutrum
+  --die : Gender ;
+
+
+  
+--2 Nouns
+
+  mkN : overload {
+    mkN : (muis : Str) -> N ;   -- de muis-muisen, with some predictable exceptions
+    mkN : (bit : Str) -> Gender -> N ; -- if gender is not predictable
+    mkN : (gat,gaten : Str) -> Gender -> N ; -- worst-case for nouns
+  } ;
+
+-- Relational nouns need a preposition. The most common is "van".
+
+  mkN2 : overload {
+    mkN2 : N -> N2 ;        -- relational noun with preposition van
+    mkN2 : N -> Prep -> N2  -- other preposition than van
+    } ;   
+
+
+---- Use the function $mkPrep$ or see the section on prepositions below to  
+---- form other prepositions.
+---- Some prepositions are moreover constructed in [StructuralAfr StructuralAfr.html].
+----
+---- Three-place relational nouns ("die Verbindung von x nach y") need two prepositions.
+--
+  mkN3 : N -> Prep -> Prep -> N3 ; -- e.g. afstand + van + naar
+
+--3 Proper names and noun phrases
+
+  mkPN : overload {
+    mkPN : Str -> PN ; -- proper name
+    } ;
+
+
+--2 Adjectives
+
+  mkA : overload {
+    mkA : (vers : Str) -> A ; -- regular adjective
+    mkA : (sag, sagte : Str) -> A ; --"semi-irregular"
+    mkA : (goed,goede,goeds,beter,best : Str) -> A ; -- irregular adjective
+    } ;
+
+
+-- Invariable adjective are a special case. 
+
+  invarA : Str -> A ;            -- adjective with just one form
+
+
+---- Two-place adjectives are formed by adding a preposition to an adjective.
+
+  mkA2 : A -> Prep -> A2 ;  -- e.g. getrouwd + met
+
+--2 Adverbs
+
+-- Adverbs are formed from strings.
+
+  mkAdv : Str -> Adv ;
+
+
+
+--2 Prepositions
+
+-- A preposition is formed from a string.
+
+  mkPrep : Str -> Prep ;
+
+  
+---- A couple of common prepositions (always with the dative).
+--
+  van_Prep : Prep ;
+  te_Prep  : Prep ;
+
+
+--
+--2 Verbs
+
+  mkV : overload {
+    mkV : (aaien : Str) -> V ;  -- regular verb
+    mkV : (breken,brak,gebroken : Str) -> V ; -- theme of irregular verb
+    mkV : (breken,brak,braken,gebroken : Str) -> V ; -- also past plural irregular
+    mkV : (aai,aait,aaien,aaide,aaide,aaiden,geaaid : Str) -> V ; -- worst-case verb
+
+-- To add a movable suffix e.g. "auf(fassen)".
+
+    mkV : Str -> V -> V -- add movable suffix, e.g. af + stappen
+    } ;
+
+  zijnV  : V -> V ; -- force zijn as auxiliary (default hebben)
+
+  reflV  : V -> V ; -- reflexive verb e.g. zich afvragen
+
+
+--
+--
+--3 Three-place verbs
+
+-- Three-place (ditransitive) verbs need two prepositions, of which
+-- the first one or both can be absent.
+
+  mkV3 : overload {
+    mkV3 : V -> V3 ;                  -- geven,(accusative),(dative)
+    mkV3 : V -> Prep -> V3 ;          -- sturen,(accusative),naar
+    mkV3 : V -> Prep -> Prep -> V3 ;  -- praten, met, over
+    } ;
+
+
+----3 Other complement patterns
+----
+---- Verbs and adjectives can take complements such as sentences,
+---- questions, verb phrases, and adjectives.
+
+  mkV0  : V -> V0 ; --%
+  mkVS  : V -> VS ;
+  mkV2S : V -> Prep -> V2S ;
+  mkVV  : V -> VV ;
+  mkV2V : V -> Prep -> V2V ;
+  mkVA  : V -> VA ;
+  mkV2A : V -> Prep -> V2A ;
+  mkVQ  : V -> VQ ;
+  mkV2Q : V -> Prep -> V2Q ;
+--
+--  mkAS  : A -> AS ;
+--  mkA2S : A -> Prep -> A2S ;
+--  mkAV  : A -> AV ;
+--  mkA2V : A -> Prep -> A2V ;
+--
+---- Notice: categories $AS, A2S, AV, A2V$ are just $A$, 
+---- and the second argument is given as an adverb. Likewise 
+---- $V0$ is just $V$.
+--
+--  V0 : Type ;
+--  AS, A2S, AV, A2V : Type ;
+--
+--
+
+
+--.
+
+  mkOrd : A -> Ord = \a -> lin Ord {s = a.s ! Posit} ;
+
+  mkN = overload {
+    mkN : (muis : Str) -> N 
+    = \a -> lin N (regNoun a) ;
+    mkN : (bit : Str) -> Gender -> N 
+    = \a,b -> lin N (regNounG a b) ;
+    mkN : (gat,gaten : Str) -> Gender -> N 
+    = \a,b,c -> lin N (mkNoun a b c) ;
+  } ;
+
+  mkN2 = overload {
+    mkN2 : N -> N2 
+    = \n -> lin N2 (n ** {c2 = "van"}) ; 
+    mkN2 : N -> Prep -> N2 
+    = \n,p -> lin N2 (n ** {c2 = p.s}) ; 
+    } ;   
+  mkN3 n p q = lin N3 (n ** {c2 = p.s ; c3 = q.s}) ; 
+
+  mkPN = overload {
+    mkPN : Str -> PN = \s -> lin PN {s = \\_ => s} ;
+    } ;
+
+  masculine = Neutr ;
+  feminine  = Neutr ;
+  het,neuter = Neutr ;
+  de,utrum = Neutr ;
+
+  mkA = overload {
+    mkA : (vers : Str) -> A = \a -> lin A (regAdjective a) ;
+    mkA : (sag, sagte : Str) -> A = \a,b -> lin A (semregAdjective a b) ;
+    mkA : (goed,goede,goeds,beter,best : Str) -> A = \a,b,c,d,e -> lin A (mkAdjective a b c d e) ;
+    } ;
+
+  mkPrep s = lin Prep (ss s) ;
+  van_Prep = mkPrep "van" ;
+  te_Prep = mkPrep "te" ;
+
+  mkV = overload {
+    mkV : (aaien : Str) -> V = 
+      \s -> lin V (v2vv (regVerb s)) ;
+    mkV : (breek,gebreek : Str) -> V = 
+      \a,b -> lin V (v2vv (irregVerb a b)) ;
+    mkV : (wil,wou,gewil : Str) -> V = 
+      \a,b,c -> lin V (v2vv (mkVerb a a b c)) ;
+    mkV : Str -> V -> V = \v,s ->lin V (prefixV v s) ;
+    } ;
+  zijnV v = v ; -- lin V (v2vvAux v VZijn) ;
+  reflV v = lin V {s = v.s ; aux = v.aux ; prefix = v.prefix ; vtype = VRefl} ;
+
+  zijn_V : V = lin V ResAfr.zijn_V ;
+  hebben_V : V = lin V ResAfr.hebben_V ;
+
+  mkV2 = overload {
+    mkV2 : Str -> V2 = \s -> lin V2 (v2vv (regVerb s) ** {c2 = []}) ;
+    mkV2 : V -> V2 = \s -> lin V2 (s ** {c2 = []}) ;
+    mkV2 : V -> Prep -> V2  = \s,p -> lin V2 (s ** {c2 = p.s}) ;
+    } ;
+
+
+--3 Two-place verbs
+
+  mkV2 : overload {
+    mkV2 : Str -> V2 ;
+    mkV2 : V -> V2 ;
+    mkV2 : V -> Prep -> V2 ;
+    } ;
+  mkV3 = overload {
+    mkV3 : V -> Prep -> Prep -> V3 = mkmaxV3 ;
+    mkV3 : V -> Prep -> V3 = \v,p -> mkmaxV3 v (mkPrep []) p ; 
+    mkV3 : V -> V3 = \v -> mkmaxV3 v (mkPrep []) (mkPrep []) ; 
+    } ;
+  mkmaxV3 : V -> Prep -> Prep -> V3 = \v,c,d -> lin V3 (v ** {c2 = c.s ; c3 = d.s}) ;
+
+
+
+
+
+----2 Definitions of paradigms
+----
+---- The definitions should not bother the user of the API. So they are
+---- hidden from the document.
+--
+--
+--
+--  Gender = MorphoAfr.Gender ;
+--  Case = MorphoAfr.Case ;
+--  Number = MorphoAfr.Number ;
+--  masculine = Masc ;
+--  feminine  = Fem ;
+--  neuter = Neutr ;
+--  nominative = Nom ;
+--  accusative = Acc ;
+--  dative = Dat ;
+--  genitive = Gen ;
+--  singular = Sg ;
+--  plural = Pl ;
+--
+--  mk6N a b c d e f g = MorphoAfr.mkN a b c d e f g ** {lock_N = <>} ;
+--
+--  regN : Str -> N = \hund -> case hund of {
+--    _ + "e" => mk6N hund hund hund hund (hund + "n") (hund + "n") Fem ;
+--    _ + ("ion" | "ung") => mk6N hund hund hund hund (hund + "en") (hund + "en") Fem ;
+--    _ + ("er" | "en" | "el") => mk6N hund hund hund (genitS hund) hund (pluralN hund) Masc ; 
+--    _  => mk6N hund hund hund (genitS hund) (hund + "e") (pluralN hund) Masc
+--    } ;
+--
+--  reg2N : (x1,x2 : Str) -> Gender -> N = \hund,hunde,g -> 
+--    let
+--      hunds = genitS hund ;
+--      hundE = dativE hund ;
+--      hunden = pluralN hunde
+--    in
+--    case <hund,hunde,g> of {                                        -- Duden p. 223
+--      <_,_ + ("e" | "er"), Masc | Neutr> =>                         -- I,IV 
+--        mk6N hund hund hundE hunds hunde hunden g ;
+--      <_ + ("el"|"er"|"en"),_ + ("el"|"er"|"en"), Masc | Neutr> =>  -- II
+--        mk6N hund hund hund hunds hunde hunden g ;
+--      <_,_ + "s", Masc | Neutr> =>                                  -- V 
+--        mk6N hund hund hund (hund + "s") hunde hunde g ;
+--      <_,_ + "en", Masc> =>                                         -- VI 
+--        mk6N hund hunde hunde hunde hunde hunde g ;
+--      <_,_ + ("e" | "er"), Fem> =>                                  -- VII,VIII 
+--        mk6N hund hund hund hund hunde hunden g ;
+--      <_,_ + ("n" | "s"), Fem> =>                                   -- IX,X 
+--        mk6N hund hund hund hund hunde hunde g ;
+--      _ => {s = (regN hund).s ; g = g ; lock_N = <>}
+--    } ;
+--   
+--  mkN2 = overload {
+--    mkN2 : Str -> N2 = \s -> vonN2 (regN s) ;
+--    mkN2 : N ->   N2 = vonN2 ;
+--    mkN2 : N -> Prep -> N2 = mmkN2
+--    } ;   
+--
+--
+--  mmkN2  : N -> Prep -> N2 = \n,p -> n ** {c2 = p ; lock_N2 = <>} ;
+--  vonN2 : N -> N2 = \n -> n ** {c2 = {s = "von" ; c = dative} ; lock_N2 = <>} ;
+--
+--  mkN3 = \n,p,q -> n ** {c2 = p ; c3 = q ; lock_N3 = <>} ;
+--
+--  mk2PN = \karolus, karoli -> 
+--    {s = table {Gen => karoli ; _ => karolus} ; lock_PN = <>} ;
+--  regPN = \horst -> 
+--    mk2PN horst (ifTok Tok (Predef.dp 1 horst) "s" horst (horst + "s")) ;
+--
+--  mkPN = overload {
+--    mkPN : Str -> PN = regPN ;
+--    mkPN : (nom,gen : Str) -> PN = mk2PN ;
+--    mkPN : (nom,acc,dat,gen : Str) -> PN = \nom,acc,dat,gen ->
+--      {s = table {Nom => nom ; Acc => acc ; Dat => dat ; Gen => gen} ; lock_PN = <>} 
+--    } ;
+--
+--  mk2PN  : (karolus, karoli : Str) -> PN ; -- karolus, karoli
+--  regPN : (Johann : Str) -> PN ;  
+--    -- Johann, Johanns ; Johannes, Johannes
+--
+--
+--  mk3A : (gut,besser,beste : Str) -> A = \a,b,c ->
+--    let aa : Str = case a of {
+--      teu + "er" => teu + "r" ;
+--      mud + "e" => mud ;
+--      _ => a
+--    } in 
+--    MorphoAfr.mkA a aa b (init c) ** {lock_A = <>} ;
+--  mk4A : (gut,gute,besser,beste : Str) -> A = \a,aa,b,c ->
+--    MorphoAfr.mkA a aa b (init c) ** {lock_A = <>} ;
+--
+--  regA : Str -> A = \a -> case a of {
+--    teu + "er" => mk3A a (teu + "rer") (teu + "reste") ;
+--    _ + "e"    => mk3A a (a + "r") (a + "ste") ;
+--    _          => mk3A a (a + "er") (a + "este")
+--    } ;
+
+  invarA = \s -> lin A {s = \\_,_ => s} ; ---- comparison
+
+  mkA2 = \a,p -> lin A2 (a ** {c2 = p.s}) ;
+
+  mkAdv s = {s = s ; lock_Adv = <>} ;
+--
+--  mkPrep s c = {s = s ; c = c ; lock_Prep = <>} ;
+  noPrep = mkPrep [] ;
+--  datPrep = mkPrep [] dative ;
+--  genPrep = mkPrep [] genitive ;
+--  von_Prep = mkPrep "von" dative ;
+--  zu_Prep = mkPrep "zu" dative ;
+--
+--  mk6V geben gibt gib gab gaebe gegeben = 
+--    let
+--      geb   = stemVerb geben ;
+--      gebe  = geb + "e" ;
+--      gibst = verbST (init gibt) ;
+--      gebt  = verbT geb ;
+--      gabst = verbST gab ;
+--      gaben = pluralN gab ;
+--      gabt  = verbT gab
+--    in 
+--    MorphoAfr.mkV 
+--      geben gebe gibst gibt gebt gib gab gabst gaben gabt gaebe gegeben
+--      [] VHaben ** {lock_V = <>} ;
+--
+--  regV fragen = 
+--    let
+--      frag    = stemVerb fragen ;
+--      fragt   = verbT frag ;
+--      fragte  = fragt + "e" ;
+--      gefragt = "ge" + fragt ;
+--    in
+--    mk6V fragen fragt (frag + "e") fragte fragte gefragt ;
+--
+--  irregV singen singt sang saenge gesungen = 
+--    let
+--      sing = stemVerb singen ;
+--    in
+--    mk6V singen singt sing sang saenge gesungen ;
+--
+--  prefixV p v = MorphoAfr.prefixV p v ** {lock_V = v.lock_V} ;
+--
+--  habenV v = 
+--    {s = v.s ; prefix = v.prefix ; lock_V = v.lock_V ; aux = VHaben ; vtype = v.vtype} ;
+--  seinV v = 
+--    {s = v.s ; prefix = v.prefix ; lock_V = v.lock_V ; aux = VSein ; vtype = v.vtype} ;
+--  reflV v c = 
+--    {s = v.s ; prefix = v.prefix ; lock_V = v.lock_V ; aux = VHaben ; vtype = VRefl c} ;
+--
+--  no_geV v = let vs = v.s in {
+--    s = table {
+--      p@(VPastPart _) => Predef.drop 2 (vs ! p) ;
+--      p => vs ! p
+--      } ;
+--    prefix = v.prefix ; lock_V = v.lock_V ; aux = v.aux ; vtype = v.vtype
+--    } ;
+--
+--  haben_V = MorphoAfr.haben_V ** {lock_V = <>} ;
+--  sein_V = MorphoAfr.sein_V ** {lock_V = <>} ;
+--  werden_V = MorphoAfr.werden_V ** {lock_V = <>} ;
+--
+  prepV2  : V -> Prep -> V2 ;
+  prepV2 v c = lin V2 (v ** {c2 = c.s}) ;
+--  dirV2 v = prepV2 v (mkPrep [] accusative) ;
+--  datV2 v = prepV2 v (mkPrep [] dative) ;
+--
+--
+  mkVS v = lin VS v ;
+  mkVQ v = lin VQ v ;
+  mkVV v = lin VV (v ** {isAux = False}) ;
+
+  V0 : Type = V ;
+--  AS, A2S, AV : Type = A ;
+--  A2V : Type = A2 ;
+
+  mkV0 v = v ;
+  mkV2S v p = lin V2S (prepV2 v p) ;
+  mkV2V v p = lin V2V (prepV2 v p ** {isAux = False}) ;
+  mkVA  v   = lin VA v ;
+  mkV2A v p = lin V2A (prepV2 v p) ;
+  mkV2Q v p = lin V2Q (prepV2 v p) ;
+--
+--  mkAS  v = v ** {lock_A = <>} ;
+--  mkA2S v p = mkA2 v p ** {lock_A = <>} ;
+--  mkAV  v = v ** {lock_A = <>} ;
+--  mkA2V v p = mkA2 v p ** {lock_A2 = <>} ;
+--
+---- pre-overload API and overload definitions
+--
+--  regN : Str -> N ;
+--  reg2N : (x1,x2 : Str) -> Gender -> N ;
+--  mk6N : (x1,_,_,_,_,x6 : Str) -> Gender -> N ; 
+--
+--  mkN = overload {
+--    mkN : Str -> N = regN ;
+--    mkN : (x1,x2 : Str) -> Gender -> N = reg2N ;
+--    mkN : (x1,_,_,_,_,x6 : Str) -> Gender -> N = mk6N
+--    };
+--
+--
+--
+--  regA : Str -> A ;
+--  mk3A : (gut,besser,beste : Str) -> A ;
+--
+--  mkA = overload {
+--    mkA : Str -> A = regA ;
+--    mkA : (gut,besser,beste : Str) -> A = mk3A ;
+--    mkA : (gut,gute,besser,beste : Str) -> A = mk4A
+--    };
+--
+--
+--
+--  regV : Str -> V ;
+--  irregV : (x1,_,_,_,x5 : Str) -> V ;
+--  mk6V : (x1,_,_,_,_,x6 : Str) -> V ;
+--
+--  prefixV : Str -> V -> V ;
+--
+--  mkV = overload {
+--    mkV : Str -> V = regV ;
+--    mkV : (x1,_,_,_,x5 : Str) -> V = irregV ;
+--    mkV : (x1,_,_,_,_,x6 : Str) -> V = mk6V ;
+--    mkV : Str -> V -> V = prefixV
+--    };
+--
+
+
+--  dirV2 : V -> V2 ;
+--
+--  datV2 : V -> V2 ;
+--
+--  mkV2 = overload {
+--    mkV2 : Str -> V2 = \s -> dirV2 (regV s) ;
+--    mkV2 : V -> V2 = dirV2 ;
+--    mkV2 : V -> Prep -> V2 = prepV2;
+--    mkV2 : V -> Case -> V2 = \v,c -> prepV2 v (mkPrep [] c)
+--    } ;
+--
+--}
+
+}
diff --git a/lib/src/afrikaans/PhraseAfr.gf b/lib/src/afrikaans/PhraseAfr.gf
new file mode 100644
--- /dev/null
+++ b/lib/src/afrikaans/PhraseAfr.gf
@@ -0,0 +1,31 @@
+concrete PhraseAfr of Phrase = CatAfr ** open Prelude, ResAfr in 
+{
+
+
+  flags optimize=all_subs ;
+
+  lin
+    PhrUtt pconj utt voc = {s = pconj.s ++ utt.s ++ voc.s} ;
+
+    UttS s = {s = s.s ! Main} ;
+    UttQS qs = {s = qs.s ! QDir} ;
+    UttImpSg pol imp = {s = pol.s ++ imp.s ! pol.p ! ImpF Sg False} ;
+    UttImpPl pol imp = {s = pol.s ++ imp.s ! pol.p ! ImpF Pl False} ;
+    UttImpPol pol imp = {s = pol.s ++ imp.s ! pol.p ! ImpF Sg True} ;
+
+    UttIP ip = {s = ip.s ! NPNom} ; --- Acc also
+    UttIAdv iadv = iadv ;
+    UttNP np = {s = np.s ! NPNom} ;
+    UttVP vp = {s = useInfVP True vp} ;  -- without zu
+    UttAdv adv = adv ;
+    UttCN n = {s = n.s ! Strong ! NF Sg Nom} ;
+    UttCard n = {s = n.s ! Neutr ! Nom} ;
+    UttAP ap = {s = ap.s ! APred} ;
+
+    NoPConj = {s = []} ;
+    PConjConj conj = ss (conj.s2) ;
+
+    NoVoc = {s = []} ;
+    VocNP np = {s = "," ++ np.s ! NPNom} ;
+
+}
diff --git a/lib/src/afrikaans/QuestionAfr.gf b/lib/src/afrikaans/QuestionAfr.gf
new file mode 100644
--- /dev/null
+++ b/lib/src/afrikaans/QuestionAfr.gf
@@ -0,0 +1,103 @@
+concrete QuestionAfr of Question = CatAfr ** open ResAfr in {
+
+
+  flags optimize=all_subs ;
+
+  lin
+
+    QuestCl cl = {
+      s = \\t,a,p => 
+            let cls = cl.s ! t ! a ! p 
+            in table {
+              QDir   => cls ! Inv ;
+              QIndir => "of" ++ cls ! Sub
+              }
+      } ;
+
+    QuestVP qp vp = {
+      s = \\t,a,b,q => 
+        let 
+          cl = (mkClause (qp.s ! NPNom) (agrP3 qp.n) vp).s ! t ! a ! b
+        in
+        case q of {
+            QIndir => cl ! Sub ;
+            _      => cl ! Main
+            }
+      } ;
+
+    QuestSlash ip slash = {
+      s = \\t,a,p => 
+            let 
+              cls = slash.s ! t ! a ! p ;
+              who = appPrep slash.c2 ip.s
+            in table {
+              QDir   => who ++ cls ! Inv ;
+              QIndir => who ++ cls ! Sub
+              }
+      } ;
+
+    QuestIAdv iadv cl = {
+      s = \\t,a,p => 
+            let 
+              cls = cl.s ! t ! a ! p ;
+              why = iadv.s
+            in table {
+              QDir   => why ++ cls ! Inv ;
+              QIndir => why ++ cls ! Sub
+              }
+      } ;
+
+    QuestIComp icomp np = {
+      s = \\t,a,p => 
+            let 
+              vp  = predV zijn_V ;
+              cls = (mkClause (np.s ! NPNom) np.a vp).s ! t ! a ! p ;
+              why = icomp.s ! np.a
+            in table {
+              QDir   => why ++ cls ! Inv ;
+              QIndir => why ++ cls ! Sub
+              }
+      } ;
+
+    PrepIP p ip = {
+      s = appPrep p.s ip.s
+      } ;
+
+    AdvIP ip adv = {
+      s = \\c => ip.s ! c ++ adv.s ;
+      n = ip.n
+      } ;
+
+    IdetCN idet cn = 
+      let 
+        g = cn.g ;
+        n = idet.n
+      in {
+      s = \\c => idet.s ! g ++ cn.s ! Weak ! NF n Nom ; 
+      n = n
+      } ;
+
+    IdetIP idet = 
+      let 
+        g = Neutr ; ----
+        n = idet.n
+      in {
+        s = \\_ => idet.s ! g ;
+        n = n
+      } ;
+
+    IdetQuant idet num = 
+      let 
+        n = num.n
+      in {
+      s = \\g => idet.s ! n ! g ++ num.s  ; 
+      n = n
+      } ;
+
+    AdvIAdv i a = {s = i.s ++ a.s} ;
+ 
+    CompIAdv a = {s = \\_ => a.s} ;
+
+    CompIP ip = {s = \\_ => ip.s ! NPNom} ;
+
+}
diff --git a/lib/src/afrikaans/RelativeAfr.gf b/lib/src/afrikaans/RelativeAfr.gf
new file mode 100644
--- /dev/null
+++ b/lib/src/afrikaans/RelativeAfr.gf
@@ -0,0 +1,44 @@
+concrete RelativeAfr of Relative = CatAfr ** open ResAfr in {
+
+
+  flags optimize=all_subs ;
+
+  lin
+
+    RelCl cl = {
+      s = \\t,a,b,_,_ => "sodat" ++ cl.s ! t ! a ! b ! Sub
+      } ;
+
+    RelVP rp vp = {
+      s = \\t,ant,b,g,n => 
+        let 
+          agr = case rp.a of {
+            RNoAg   => agrgP3 g n ;
+            RAg rn p => {g = Neutr ; n = rn ; p = p} ---- g 
+            } ;
+          cl = mkClause (rp.s ! g ! n) agr vp
+        in
+        cl.s ! t ! ant ! b ! Sub
+      } ;
+
+    RelSlash rp slash = {
+      s = \\t,a,p,g,n => 
+          appPrep slash.c2 (\\_ => rp.s ! g ! n) ++ slash.s ! t ! a ! p ! Sub ;
+      c = slash.c2.c
+      } ;
+
+    FunRP p np rp = {
+      s = \\g,n => np.s ! NPNom ++ appPrep p.s (\\_ => rp.s ! g ! n) ;
+      a = RAg np.a.n np.a.p
+      } ;
+
+    IdRP = {s = relPron ; a = RNoAg} ;
+
+  oper
+    relPron : Gender => Number => Str = \\g,n =>
+      case <g,n> of {
+        <Neutr,Sg> => "wat" ;
+        _ => "wat"
+      } ;
+
+}
diff --git a/lib/src/afrikaans/ResAfr.gf b/lib/src/afrikaans/ResAfr.gf
new file mode 100644
--- /dev/null
+++ b/lib/src/afrikaans/ResAfr.gf
@@ -0,0 +1,552 @@
+--# -path=.:../abstract:../common
+
+--1 Afrch auxiliary operations.
+--
+-- (c) 2009 Femke Johansson and Aarne Ranta
+
+resource ResAfr = ParamX ** open Prelude in {
+
+  flags optimize=all ;
+
+--2 For $Noun$
+
+  param
+    Case = Nom | Gen ;
+    Gender = Neutr ; --!
+--    Gender = Utr | Neutr ; --!
+
+    NForm = NF Number Case ;
+
+    NPCase = NPNom | NPAcc ;
+
+  oper 
+    Noun = {s : NForm => Str ; g : Gender} ;
+
+    mkNoun : (_,_ : Str) -> Gender -> Noun = \sg,pl,g -> {
+      s = table {
+        NF Sg Nom => sg ;
+        NF Sg Gen => add_s sg ; 
+        NF Pl Nom => pl ;
+        NF Pl Gen => add_s pl
+        } ;
+     g = g
+     } ;
+
+--Volgens Afrikaanse Woordelys & Spelreëls, 2009
+--
+-- Uitsonderings wat in die leksikon hanteer moet word:
+-- 
+-- * enige uitsonderings wat in die AWS vermeld word
+-- * enige woord wat in die mv. "te" kry, soos lig, ligte
+-- * enige meerlettergrepige woord wat met "ie","ël","el","em","en","ng","ior","er","êr","erd","aar","aard","ier"
+--    eindig wat nie 'n "s" in die mv. kry nie
+-- * eiename wat nie reëlmatig verbuig
+-- * woorde met wisselvorme in die mv. moet as sinonieme in die leksikon hanteer word
+--
+    regNoun : Str -> Noun = \s -> case s of {
+      _ + #cons + ("i" | "o" | "u" ) => mkNoun s (s + "'s") Neutr ; --ski, ski's --R13.7
+      #cons* + ("ie" | "oe") =>mkNoun s (s + "ë") Neutr ; --knie, knieë --R13.10
+      #cons* + ("ee") =>mkNoun s (init s + "ë") Neutr ; --fee, feë --R13.10
+      #cons* + "a" => mkNoun s (s + "'s") Neutr ; --ma, ma's R13.7
+      _ + ("a" | "e" | "ie" | "ee" | "é" | "ê" | "ô") => mkNoun s (s + "s") Neutr ; --gogga, goggas --R13.5
+      
+      b + v@("oo") + "g" => mkNoun s (b + init v + "ë") Neutr ; --boog, boë --R13.11
+      b + v@("e"|"ie"|"o"|"oe") + "g" => mkNoun s (b + v + "ë") Neutr ; --kroeg, kroeë --R13.11
+      b + v@("aa") + "g" => mkNoun s (b + init v + "e") Neutr ; --kraag, krae --R13.11
+      b + v@("a") + "g" => mkNoun s (b + v + "e") Neutr ; --dag, dae --R13.11
+      b + v@("ei"|"eu"|"oe"|"ou"|"ie"|"y"|"ui") + "g" => mkNoun s (b + v + "e") Neutr ; --tuig, tuie --R13.1
+      
+      _ + ("oir" | "ion" | "je") => mkNoun s (s + "s") Neutr ; --uit Nederlandse reël
+      
+      _ + ("rm" | "lm") => mkNoun s (s + "s") Neutr ; --R13.3
+      
+      ? + ? + ? + _ + 
+        ("ël" |"el" | "em" | "um" | "ing" | "or" | "ior" | "er" | "êr" | "erd" | "aar" | "aard" | "ier") => -- unstressed
+                                            mkNoun s (s + "s") Neutr ; --R13.3
+      
+      ? + ? + _ + (#cons + "en") => mkNoun s (s + "s") Neutr ; --R13.3
+        
+      
+      _ +                     ("i"|"u")  => mkNoun s (s + "e") Neutr ; --R13.4
+      b + v@("aa"|"ee"|"oo"|"uu") + c@?  => mkNoun s (b + shortVoc v c + "e") Neutr ; --brood, brode --R13.1
+      b + ("ei"|"eu"|"oe"|"ou"|"ie"|"y"|"ui") + ? => mkNoun s (endCons s + "e") Neutr ; --geluid, geluide --R13.1
+      b + v@("a"|"e"|"i"|"o"|"u" ) + "f" => mkNoun s (b + v + "ww" + "e") Neutr ; --stof, stowwe --R13.1
+      b + v@("a"|"e"|"i"|"o"|"u" ) + c@? => mkNoun s (b + v + c + c + "e") Neutr ; --dak, dakke --R13.1
+      _ => mkNoun s (endCons s + "e") Neutr --R13.1
+      } ;
+
+    regNounG : Str -> Gender -> Noun = \s,g -> {
+      s = (regNoun s).s ;
+      g = g
+      } ;
+
+    shortVoc : Str -> Str -> Str = \v,s -> init v + endCons s ;
+
+    endCons : Str -> Str = \s -> case s of {
+      _ + ("ts" |"rs" | "ls" | "ds" | "ns" | "ms") => s ;
+      b + "f" => b + "w" ;
+      _ => s
+      } ;
+
+    vowel : pattern Str = #("a"|"e"|"i"|"o"|"u") ;
+    cons : pattern Str = #("b"|"c"|"d"|"f"|"g"|"h"|"j"|"k"|"l"|"m"|"n"|"p"|"q"|"r"|"s"|"t"|"v"|"w"|"x"|"z") ;
+    dupCons : pattern Str = #("b"|"d"|"f"|"g"|"k"|"l"|"m"|"n"|"p"|"r"|"s"|"t") ;
+
+--afr! untested because something "breaks" in other languages
+    add_s : Str -> Str = \s -> case s of {
+      _ + "s" => s ++ "se";
+      _       => s ++ "se"
+      } ; 
+
+  param 
+    AForm = APred | AAttr | AGen ;
+    
+  oper
+    Adjective = {s : Degree => AForm => Str} ;
+
+    mkAdjective : (_,_,_,_,_ : Str) -> Adjective = \ap,aa,ag,ac,as -> {
+      s = table {
+        Posit  => table {APred => ap ; AAttr => aa ; AGen => ag} ; 
+        Compar => table {APred => ac ; AAttr => ac ; AGen => ac + "s"} ; ----
+        Superl => table {APred => as ; AAttr => as ; AGen => as + "s"}   ----
+        }
+      } ;
+      
+--Volgens Afrikaanse Morfologie: Capital Exemplaria, Combrinck, 1990
+    regAdjective : Str -> Adjective = \s ->  ----
+      let 
+        se : Str = case s of {
+          b + v@("aal"|"baar"|"eel"|"loos") => b + init (init v) + last v + "e" ; --p288
+          _ + ("agtig"|"ant"|"ent"|"êr"|"ies"|"ig"|"lik"|"matig"|"s") => s + "e" ; --p288
+          b + "ief" => b + "iewe" ; --p288
+          
+          --b + ("ei"|"eu"|"oe"|"ou"|"ie"|"y"|"ui") + ?  => endCons s + "e" ;
+          b + v@("ou"|"y") + "d"  => b + v + "e" ; --koud, koue / wyd, wye
+          
+          --b + v@("oo"|"ee") + "d" => b + init v + "ë" ; --leeg, leë
+          b + v@("oo"|"ee") + ("g"|"d") => b + init v + "ë" ; --leeg, leë
+          b + v@("e"|"ie"|"o"|"oe") + "g" => b + v + "ë" ; --moeg, moeë
+          b + v@("aa") + "g" => b + init v + "e" ; --vaag, vae
+          b + v@("a") + "g" => b + v + "e" ; --kan nog nie aan 'n voorbeeld dink nie
+          
+          b + v@("aa"|"ee"|"oo"|"uu") + "r" => s ; --duur, duur
+          b + v@("aa"|"ee"|"oo"|"uu") + c@#cons => b + shortVoc v c + "e" ; --gaaf, gawe
+          b + v@("a"|"e"|"i"|"o"|"u" ) + "f" => b + v + "ww" + "e" ; --grof, growwe
+          --b + v@("a"|"e"|"i"|"o"|"u" ) + c@? => b + v + c + c + "e" ; --stom, growwe
+          _ + "d" => s + "e" ; --p286
+          _ => s 
+          } ;
+        ser : Str = case se of {
+          b + v@("aa"|"ee"|"oo"|"uu") + "r" => se + "der" ;
+          b + v@("a"|"i"|"o"|"u" ) + c@#cons => b + v + c + c + "er" ; --dom, dommer
+          _ + "r" => se + "der" ;
+          _ + "ë" => se + "r" ;
+          _ + "e" => se + "r" ;
+          _ => se + "er"
+          } ;
+        sst : Str = case s of {
+          _ + "s" => s + "te" ;
+          _ => s + "ste"
+          } ;
+      in
+      mkAdjective s se (s + "s") ser sst ;
+      
+      
+    semregAdjective : Str -> Str -> Adjective = \ap,aa -> mkAdjective ap aa (ap + "s") (aa + "r") (ap + "ste") ;
+      
+      --shortVoc : Str -> Str -> Str = \v,s -> init v + endCons s ;
+
+  param 
+    VForm =         --!
+       VInf      -- wees
+     | VPres     -- is 
+     | VPast     -- was  --# notpresent
+     | VPerf     -- gewees
+     ;
+
+    VPart = VPart_aan | VPart_af | VPart_be ;
+
+  oper
+    Verb : Type = {s: VForm => Str};
+    
+  mkVerb : (_,_,_,_ : Str) -> 
+    	Verb = \aai, aaien, aaide, geaaid -> {
+    	s = table {
+    		VInf        => aaien; -- hij/zij/het/wij aaien
+    		VPres       => aai;   -- ik aai
+    		VPast       => aai; -- ik aaide  --# notpresent --!afr!	lyk vir nou soos VPres
+    		VPerf       => geaaid -- ik heb geaaid 
+    	}
+    };
+    
+  regVerb : Str -> Verb = \s -> irregVerb s ("ge" + s) ;
+
+  irregVerb : (breek, gebreek : Str) -> Verb = \breek,gebreek ->
+    mkVerb breek breek breek gebreek ;
+
+
+-- To add a prefix (like "ein") to an already existing verb.
+
+  prefixV : Str -> VVerb -> VVerb = \ein,verb ->
+    let
+      vs = verb.s ;
+      einb : Bool -> Str -> Str = \b,geb -> 
+        if_then_Str b (ein + geb) geb ;
+    in
+    {s = table {
+      f@(VInf | VPerf) => ein + vs ! f ; ---- TODO: eingegeven
+      f       => vs ! f
+      } ;
+     prefix = ein ;
+     aux = verb.aux ;
+     vtype = verb.vtype 
+     } ;
+  zijn_V : VVerb = {
+    s = table {
+       VInf      => "wees" ;
+       VPres     => "is" ; 
+       VPast     => "was" ; --# notpresent
+       VPerf     => "gewees" 
+       } ;
+    aux = VZijn ;
+    prefix = [] ;
+    vtype = VAct ;
+    } ;
+
+  hebben_V : VVerb = {
+    s = table {
+       VInf      => "het" ;
+       VPres     => "het" ; 
+       VPast     => "had" ; --# notpresent
+       VPerf     => "gehad" 
+       } ;
+    aux = VHebben ;
+    prefix = [] ;
+    vtype = VAct ;
+    } ;
+
+    Pronoun : Type = {
+      unstressed,stressed : {nom, acc, poss : Str} ;
+      substposs : Str ;
+      a : Agr
+      } ; 
+
+  sal_V : VVerb = {
+    s = table {
+       VInf      => "sal" ;
+       VPres     => "sal" ; 
+       VPast     => "sou" ; --# notpresent
+       VPerf     => "sou" --!afr!	perfektum moet hom soos past gedra
+       } ;
+    aux = VHebben ;
+    prefix = [] ;
+    vtype = VAct ;
+    } ;
+
+  word_V : VVerb = {
+    s = table {
+       VInf      => "word" ;
+       VPres     => "word" ; 
+       VPast     => "word" ; --# notpresent
+       VPerf     => "geword" 
+       } ;
+    aux = VHebben ;
+    prefix = [] ;
+    vtype = VAct ;
+    } ;
+
+  mkPronoun : (x1,_,_,_,_,x6,x7 : Str) -> Gender -> Number -> Person -> Pronoun = 
+      \ik,me,mn,Ik,mij,mijn,mijne,g,n,p -> {
+         unstressed = {nom = ik ; acc = me  ; poss = mn} ;
+         stressed   = {nom = Ik ; acc = mij ; poss = mijn} ;
+         substposs  = mijne ;
+         a = {g = g ; n = n ; p = p}
+         } ;
+
+    het_Pron : Pronoun = mkPronoun "dit" "dit" "hy" "hy" "hom" "sy" "syne" Neutr Sg P3 ;
+
+
+-- Complex $CN$s, like adjectives, have strong and weak forms.
+
+param
+    Adjf = Strong | Weak ;
+
+
+  oper VVerb = Verb ** {prefix : Str ; aux : VAux ; vtype : VType} ;
+  param VAux = VHebben | VZijn ;
+
+  param VType = VAct | VRefl ;
+
+  oper 
+    v2vvAux : Verb -> VAux -> VVerb = \v,a -> 
+      {s = v.s ; aux = a ; prefix = [] ; vtype = VAct} ;
+    v2vv : Verb -> VVerb = \v -> v2vvAux v VHebben ;
+
+
+
+---- The order of sentence is depends on whether it is used as a main
+---- clause, inverted, or subordinate.
+
+  oper 
+    Preposition = Str ;
+    appPrep : Preposition -> (NPCase => Str) -> Str = \p,np -> p ++ np ! NPAcc ; ----
+
+  param  
+    Order = Main | Inv | Sub ;
+
+  oper
+    vForm : Tense -> VForm = \t -> case t of {
+      Pres  => VPres 
+     ; Fut   => VPres  --# notpresent
+     ;  Past | Cond => VPast   -- Fut and Cond affect zullen --# notpresent
+      } ;
+
+--2 For $Relative$
+
+  param 
+    RAgr = RNoAg | RAg Number Person ;
+
+--2 For $Numeral$
+
+  param
+    CardOrd = NCard Gender Case | NOrd AForm ;
+    DForm = DUnit  | DTeen  | DTen ;
+
+--2 Transformations between parameter types
+
+  oper Agr : Type = {g : Gender ; n : Number ; p : Person} ;
+
+  oper
+    agrP3 : Number -> Agr = agrgP3 Neutr ;
+
+    agrgP3 : Gender -> Number -> Agr = \g,n -> 
+      {g = g ; n = n ; p = P3} ;
+
+-- Used in $NounAfr$.
+
+    agrAdj : Gender -> Adjf -> NForm -> AForm = \g,a,n ->
+      case <a,g,n> of {
+        <Strong,Neutr,NF Sg _> => APred ;
+        _ => AAttr
+        } ;
+
+  oper VP : Type = {
+      s  : VVerb ;
+      a1 : Polarity => Str ; -- niet
+      n0 : Agr => Str ;      -- je
+      n2 : Agr => Str ;      -- je vrouw
+      a2 : Str ;             -- vandaag
+      isAux : Bool ;         -- is a double infinitive
+      inf : Str * Bool ;     -- sagen (True = non-empty)
+      ext : Str              -- dass sie kommt
+      } ;
+
+  predV : VVerb -> VP = predVGen False ;
+
+
+  predVGen : Bool -> VVerb -> VP = \isAux, verb -> {
+    s = verb ;
+    a1  : Polarity => Str = negation ;
+    n0  : Agr => Str = \\a => case verb.vtype of {
+      VAct  => [] ;
+      VRefl => reflPron ! a
+      } ;
+    n2  : Agr => Str = \\a => [] ;
+    a2  : Str = [] ;
+    isAux = isAux ; ----
+    inf : Str * Bool = <[],False> ;
+    ext : Str = []
+    } ;
+
+  negation : Polarity => Str = table {
+      Pos => [] ;
+      Neg => "nie"
+      } ;
+
+-- Extending a verb phrase with new constituents
+
+  insertObj : (Agr => Str) -> VP -> VP = insertObjNP False ;
+
+  insertObjNP : Bool -> (Agr => Str) -> VP -> VP = \isPron, obj,vp -> {
+    s = vp.s ;
+    a1 = vp.a1 ;
+    n0 = \\a => case isPron of {True  => obj ! a ; _ => []} ++ vp.n0 ! a;
+    n2 = \\a => case isPron of {False => obj ! a ; _ => []} ++ vp.n2 ! a;
+    a2 = vp.a2 ;
+    isAux = vp.isAux ;
+    inf = vp.inf ;
+    ext = vp.ext
+    } ;
+
+  insertAdV : Str -> VP -> VP = \adv,vp -> {
+    s = vp.s ;
+    a1 = \\a => adv ++ vp.a1 ! a ; -- immer nicht
+    n0 = vp.n0 ;
+    n2 = vp.n2 ;
+    a2 = vp.a2 ;
+    isAux = vp.isAux ;
+    inf = vp.inf ;
+    ext = vp.ext
+    } ;
+
+  insertAdv : Str -> VP -> VP = \adv,vp -> {
+    s = vp.s ;
+    a1 = vp.a1 ;
+    n0 = vp.n0 ;
+    n2 = vp.n2 ;
+    a2 = vp.a2 ++ adv ;
+    isAux = vp.isAux ;
+    inf = vp.inf ;
+    ext = vp.ext
+    } ;
+
+  insertExtrapos : Str -> VP -> VP = \ext,vp -> {
+    s = vp.s ;
+    a1 = vp.a1 ;
+    n0 = vp.n0 ;
+    n2 = vp.n2 ;
+    a2 = vp.a2 ;
+    isAux = vp.isAux ;
+    inf = vp.inf ;
+    ext = vp.ext ++ ext
+    } ;
+
+  insertInf : Str -> VP -> VP = \inf,vp -> {
+    s = vp.s ;
+    a1 = vp.a1 ;
+    n0 = vp.n0 ;
+    n2 = vp.n2 ;
+    a2 = vp.a2 ;
+    isAux = vp.isAux ; ----
+    inf = <inf ++ vp.inf.p1, True> ;
+    ext = vp.ext
+    } ;
+
+-- For $Sentence$.
+
+  Clause : Type = {
+    s : Tense => Anteriority => Polarity => Order => Str
+    } ;
+
+  mkClause : Str -> Agr -> VP -> Clause = \subj,agr,vp -> {
+      s = \\t,a,b,o =>
+        let
+          ord   = case o of {
+            Sub => True ;  -- glue prefix to verb
+            _ => False
+            } ;
+          vform = vForm t ;
+          auxv = (auxVerb vp.s.aux).s ;
+          vperf = vp.s.s ! VPerf ;
+          verb : Str * Str = case <t,a> of {
+            <Fut|Cond,Simul>  => <sal_V.s ! vform, vperf ++ auxv ! VInf> ; --# notpresent
+            <Fut|Cond,Anter>  => <sal_V.s ! vform, vperf ++ auxv ! VInf> ; --# notpresent
+            <_,       Anter>  => <auxv ! vform,       vperf> ; --# notpresent
+            <_,       Simul>  => <vp.s.s ! vform,     []>
+            } ;
+          fin   = verb.p1 ;
+          neg   = vp.a1 ! b ;
+          obj0  = vp.n0 ! agr ;
+          obj   = vp.n2 ! agr ;
+          compl = obj0 ++ neg ++ obj ++ vp.a2 ++ vp.s.prefix ++ neg;
+          inf   = 
+            case <vp.isAux, vp.inf.p2, a> of {                  --# notpresent
+              <True,True,Anter> => vp.s.s ! VInf ++ vp.inf.p1 ; --# notpresent
+              _ =>                                              --# notpresent
+                 vp.inf.p1 ++ verb.p2
+              }                                                 --# notpresent
+              ;
+          extra = vp.ext ;
+          inffin = 
+            case <a,vp.isAux> of {                              --# notpresent
+              <Anter,True> => fin ++ inf ; -- double inf   --# notpresent
+              _ =>                                              --# notpresent
+              inf ++ fin              --- or just auxiliary vp
+            }                                                   --# notpresent
+        in
+        case o of {
+          Main => subj ++ fin ++ compl ++ inf ++ extra ;
+          Inv  => fin ++ subj ++ compl ++ inf ++ extra ;
+          Sub  => subj ++ compl ++ inffin ++ extra
+          }
+    } ;
+
+  auxVerb : VAux -> VVerb = \a -> case a of {
+    VHebben => hebben_V ;
+    VZijn   => zijn_V 
+    } ;
+
+  infVP : Bool -> VP -> ((Agr => Str) * Str * Str) = \isAux, vp -> 
+    <
+     \\agr => vp.n0 ! agr ++  vp.n2 ! agr ++  vp.a2,
+     vp.a1 ! Pos ++ 
+     if_then_Str isAux [] "te" ++ vp.s.s ! VInf,
+     vp.inf.p1 ++ vp.ext
+    > ;
+
+  useInfVP : Bool -> VP -> Str = \isAux,vp ->
+    let vpi = infVP isAux vp in
+    vpi.p1 ! agrP3 Sg ++ vpi.p3 ++ vpi.p2 ;
+
+  reflPron : Agr => Str = table {
+    {n = Sg ; p = P1} => "my" ;	--afr
+    {n = Sg ; p = P2} => "jou" ;	--afr
+    {n = Sg ; p = P3} => "hom" ;	--afr
+    {g = masculine ; n = Sg ; p = P3} => "hom" ;	--afr
+    {g = feminine ; n = Sg ; p = P3} => "haar" ;	--afr
+    {n = Pl ; p = P1} => "ons" ;	--afr
+    {n = Pl ; p = P2} => "julle" ;	--afr
+    {n = Pl ; p = P3} => "hulle"	--afr
+    } ;
+
+  conjThat : Str = "dat" ;	--afr
+
+  conjThan : Str = "as" ;	--afr
+
+  conjAgr : Agr -> Agr -> Agr = \a,b -> {
+      g = Neutr ; ----
+      n = conjNumber a.n b.n ;
+      p = conjPerson a.p b.p
+      } ;
+
+-- The infinitive particle "zu" is used if and only if $vv.isAux = False$.
+ 
+  infPart : Bool -> Str = \b -> if_then_Str b [] "te" ;
+
+  mkDet : Str -> Str -> Number -> {s,sp : Gender => Str ; n : Number ; a : Adjf} =
+    \deze,dit,n -> {
+      s  = \\g => case <n,g> of {<Sg,Neutr> => dit ; _ => deze} ;
+      sp = \\g => case <n,g> of {<Sg,Neutr> => dit ; _ => deze} ;
+      n = n ;
+      a = Weak
+      } ;
+
+  mkQuant : Str -> Str -> {
+    s  : Bool => Number => Gender => Str ; 
+    sp : Number => Gender => Str ; 
+    a  : Adjf
+    } = 
+    \deze,dit -> {
+      s  = \\_ ,n,g => case <n,g> of {<Sg,Neutr> => dit ; _ => deze} ;
+      sp = \\   n,g => case <n,g> of {<Sg,Neutr> => dit ; _ => deze} ;
+      a = Weak
+      } ;
+
+  mkPredet : Str -> Str -> {s : Number => Gender => Str} = 
+    \deze,dit -> {
+      s  = \\n,g => case <n,g> of {<Sg,Neutr> => dit ; _ => deze}
+      } ;
+
+  mkNP : Str -> Gender -> Number -> {s : NPCase => Str ; a : Agr ; isPron : Bool} = 
+    \s,g,n -> heavyNP {
+      s = \\_ => s ;
+      a = agrgP3 g n ;
+      } ;
+
+  auxVV : VVerb -> VVerb ** {isAux : Bool} = \v -> v ** {isAux = True} ;
+
+  heavyNP : 
+    {s : NPCase => Str ; a : Agr} -> {s : NPCase => Str ; a : Agr ; isPron : Bool} = \np ->
+    np ** {isPron = False} ;
+
+}
diff --git a/lib/src/afrikaans/SentenceAfr.gf b/lib/src/afrikaans/SentenceAfr.gf
new file mode 100644
--- /dev/null
+++ b/lib/src/afrikaans/SentenceAfr.gf
@@ -0,0 +1,67 @@
+concrete SentenceAfr of Sentence = CatAfr ** open ResAfr, Prelude in {
+
+  flags optimize=all_subs ;
+
+  lin
+
+    PredVP np vp = mkClause (np.s ! NPNom) np.a vp ;
+
+    PredSCVP sc vp = mkClause sc.s (agrP3 Sg) vp ;
+
+    ImpVP vp = {
+      s = \\pol,im => 
+        let 
+          ps = case im of {
+            ImpF Pl _     => <VInf,[],Pl> ;
+            ImpF Sg True  => <VInf,[],Sg> ;
+            ImpF Sg False => <VInf,[],Sg>
+            } ;
+          agr  = {g = Neutr ; n = ps.p3 ; p = P2} ; ---- P2? -- g does not matter
+          verb = vp.s.s ! ps.p1 ;
+          inf  = vp.inf.p1 ;
+        in
+        verb ++ ps.p2 ++ 
+        vp.n2 ! agr ++ vp.a1 ! pol ++ vp.a2 ++ inf ++ vp.ext
+    } ;
+
+    SlashVP np vp = 
+      mkClause 
+        (np.s ! NPNom) np.a 
+        vp **
+      {c2 = vp.c2} ;
+
+    AdvSlash slash adv = {
+      s  = \\t,a,b,o => slash.s ! t ! a ! b ! o ++ adv.s ;
+      c2 = slash.c2
+    } ;
+
+    SlashPrep cl prep = cl ** {c2 = prep.s} ;
+
+    SlashVS np vs slash = 
+        mkClause (np.s ! NPNom) np.a 
+          (insertExtrapos (conjThat ++ slash.s ! Sub) (predV vs)) **
+        {c2 = slash.c2} ;
+
+    EmbedS  s  = {s = conjThat ++ s.s ! Sub} ;
+    EmbedQS qs = {s = qs.s ! QIndir} ;
+    EmbedVP vp = {s = useInfVP False vp} ;
+
+    UseCl t p cl = {
+      s = \\o => t.s ++ p.s ++ cl.s ! t.t ! t.a ! p.p ! o
+      } ;
+    UseQCl t p cl = {
+      s = \\q => t.s ++ p.s ++ cl.s ! t.t ! t.a ! p.p ! q
+      } ;
+    UseRCl t p cl = {
+      s = \\g,n => t.s ++ p.s ++ cl.s ! t.t ! t.a ! p.p ! g ! n
+      } ;
+    UseSlash t p cl = {
+      s = \\o => t.s ++ p.s ++ cl.s ! t.t ! t.a ! p.p ! o ;
+      c2 = cl.c2
+      } ;
+
+    AdvS a s = {s = \\o => a.s ++ s.s ! Inv} ;
+
+    RelS s r = {s = \\o => s.s ! o ++ "," ++ r.s ! Neutr ! Sg} ;
+
+}
diff --git a/lib/src/afrikaans/StructuralAfr.gf b/lib/src/afrikaans/StructuralAfr.gf
new file mode 100644
--- /dev/null
+++ b/lib/src/afrikaans/StructuralAfr.gf
@@ -0,0 +1,125 @@
+concrete StructuralAfr of Structural = CatAfr, Prelude ** 
+
+  open ParadigmsAfr, ResAfr, (X = ConstructX) in
+{
+
+
+  flags optimize=all ;
+
+  lin
+
+  above_Prep = mkPrep "bo" ;
+  after_Prep = mkPrep "na" ;
+  all_Predet = mkPredet "alle" "alle" ; ----
+  almost_AdA, almost_AdN = ss "byna" ;
+  although_Subj = ss "hoewel" ;
+  always_AdV = ss "altyd" ;
+  and_Conj = {s1 = [] ; s2 = "en" ; n = Pl} ;
+  because_Subj = ss "omdat" ; ---- doordat
+  before_Prep = mkPrep "voor" ;
+  behind_Prep = mkPrep "agter" ;
+  between_Prep = mkPrep "tussen" ;
+  both7and_DConj = {s1 = "sowel" ; s2 = "as" ; n = Pl} ;
+  but_PConj = ss "maar" ;
+  by8agent_Prep = mkPrep "deur" ;
+  by8means_Prep = mkPrep "met" ;
+  can8know_VV, can_VV = auxVV (mkV "kan" "kon") ;
+  during_Prep = mkPrep "tydens" ;
+  either7or_DConj = {s1 = "òf" ; s2 = "òf" ; n = Pl} ;
+  everybody_NP = mkNP "almal" Neutr Pl ; ----
+  every_Det = mkDet "elke" "elk" Sg ; ----
+  everything_NP = mkNP "alles" Neutr Sg ; ----
+  everywhere_Adv = ss "oral" ;
+  few_Det = mkDet "min" "min" Pl ;
+  for_Prep = mkPrep "voor" ;
+  from_Prep = mkPrep "uit" ;
+  he_Pron = mkPronoun "hy" "hom" "sy" "hy" "hom" "sy" "syne" Neutr Sg P3 ;	--afr
+  here7to_Adv = ss ["hier"] ;
+  here7from_Adv = ss ["van hier"] ; ----
+  here_Adv = ss "hier" ;
+  how_IAdv = ss "hoe" ;
+  how8much_IAdv = ss "hoeveel" ;
+  how8many_IDet = mkDet "hoeveel" "hoeveel" Pl ;
+  if_Subj = ss "as" ;
+  in8front_Prep = mkPrep "voor" ;
+  i_Pron = mkPronoun "ek" "my" "my" "ek" "my" "my" "myne" Neutr Sg P1 ;
+  in_Prep = ss "in" ;
+  it_Pron = mkPronoun "dit" "dit" "sy" "dit" "dit" "sy" "syne" Neutr Sg P3 ;
+
+  less_CAdv = X.mkCAdv "minder" "as" ;
+  many_Det = mkDet "baie" "baie" Pl ;
+  more_CAdv = X.mkCAdv "meer" "as" ;
+  most_Predet = mkPredet "meeste" "meeste" ;
+  much_Det = mkDet "baie" "baie" Sg ;
+
+  must_VV = auxVV (mkV "moet" "moes" "gemoeten") ;	--afr
+
+  only_Predet = {s = \\_,_ => "slegs"} ;
+  no_Utt = ss "neen" ;
+  on_Prep = mkPrep "op" ;
+  or_Conj = {s1 = [] ; s2 = "of" ; n = Sg} ;
+  otherwise_PConj = ss "anders" ;
+  part_Prep = mkPrep "van" ;
+  please_Voc = ss "asseblief" ;
+  possess_Prep = mkPrep "van" ;
+  quite_Adv = ss "heel" ;
+  she_Pron = mkPronoun "sy" "haar" "haar" "sy" "haar" "haar" "hare" Neutr Sg P3 ;
+
+  so_AdA = ss "so" ;
+  somebody_NP = mkNP "iemand" Neutr Sg ;
+  somePl_Det = mkDet "sommige" "sommige" Pl ;
+  someSg_Det = mkDet "sommige" "sommige" Sg ;
+  something_NP = mkNP "iets" Neutr Sg ;
+  somewhere_Adv = ss "êrens" ;
+  that_Quant = mkQuant "daardie" "daardie" ;
+  that_Subj = ss "dat" ;
+  there_Adv = ss "daar" ;
+  there7to_Adv = ss "daar" ;
+  there7from_Adv = ss "van daar" ;
+  therefore_PConj = ss "daarom" ;
+
+  they_Pron = mkPronoun "hulle" "hulle" "hulle" "hulle" "hulle" "hulle" "hulle s'n" Neutr Pl P3 ; ----
+
+  this_Quant = mkQuant "hierdie" "hierdie" ;
+  through_Prep = mkPrep "deur" ;
+  too_AdA = ss "te" ;
+  to_Prep = mkPrep "na" ;
+  under_Prep = mkPrep "onder" ;
+  very_AdA = ss "baie" ;
+  want_VV = auxVV (mkV "wil" "wou" "gewil") ;
+
+  we_Pron = mkPronoun "ons" "ons" "ons" "ons" "ons" "ons" "ons s'n" Neutr Pl P3 ; ----
+
+  whatSg_IP = {s = \\_ => "wat" ; n = Sg} ;
+  whatPl_IP = {s = \\_ => "wat" ; n = Pl} ;
+
+  when_IAdv = ss "wanneer" ;
+  when_Subj = ss "as" ;
+  where_IAdv = ss "waar" ;
+  which_IQuant = mkPredet "watter" "watter" ;
+
+  whoSg_IP = {s = \\_ => "wie" ; n = Sg} ;
+  whoPl_IP = {s = \\_ => "wie" ; n = Pl} ;
+  why_IAdv = ss "waarom" ;
+  without_Prep = mkPrep "sonder" ;
+  with_Prep = mkPrep "met" ;
+  youSg_Pron = mkPronoun "jy" "jou" "jou" "jy" "jou" "je" "joune" Neutr Sg P2 ;  --- Neutr as hack for familiarity
+  youPl_Pron = mkPronoun "julle" "julle" "julle" "julle" "julle" "julle" "julle s'n" Neutr Pl P2 ;
+  youPol_Pron = mkPronoun "u" "u" "u" "u" "u" "u" "u s'n" Neutr Sg P2 ;
+  yes_Utt = ss "ja" ;
+
+  not_Predet = mkPredet "nie" "nie" ;
+  no_Quant = mkQuant "geen" "geen" ;
+  if_then_Conj = {s1 = "as" ; s2 = "dan" ; n = Sg ; lock_Conj = <>} ;
+  nobody_NP = mkNP "niemand" Neutr Sg ;
+  nothing_NP = mkNP "niks" Neutr Sg ;
+  at_least_AdN = ss "ten minste" ;
+  at_most_AdN = ss "hoogstens" ;
+  except_Prep = mkPrep "behalwe" ;
+
+  as_CAdv = X.mkCAdv "so" "soos" ;	--afr
+  have_V2 = mkV2 ParadigmsAfr.hebben_V ;
+
+  lin language_title_Utt = ss "afrikaans" ;
+
+}
diff --git a/lib/src/afrikaans/SymbolAfr.gf b/lib/src/afrikaans/SymbolAfr.gf
new file mode 100644
--- /dev/null
+++ b/lib/src/afrikaans/SymbolAfr.gf
@@ -0,0 +1,49 @@
+--# -path=.:../abstract:../common
+
+concrete SymbolAfr of Symbol = CatAfr ** open Prelude, ResAfr in 
+{
+
+
+lin
+  SymbPN i = {s = \\c => i.s ; g = Neutr} ; --- c
+  IntPN i  = {s = \\c => i.s ; g = Neutr} ; --- c
+  FloatPN i  = {s = \\c => i.s ; g = Neutr} ; --- c
+  NumPN i  = {s = \\_ => i.s ! Neutr ! Nom ; g = Neutr} ; --- c
+
+  CNIntNP cn i = {
+    s = \\c => cn.s ! Weak ! NF Sg Nom ++ i.s ;
+    a = agrP3 Sg ;
+    isPron = False
+    } ;
+  CNSymbNP det cn xs = let g = cn.g in {
+    s = \\c => det.s ! g ++ cn.s ! det.a ! NF det.n Nom ++ xs.s ; 
+    a = agrP3 det.n ;
+    isPron = False
+    } ;
+  CNNumNP cn i = {
+    s = \\c => artDef Sg cn.g ++ cn.s ! Weak ! NF Sg Nom ++ i.s ! Neutr ! Nom ;
+    a = agrP3 Sg ;
+    isPron = False
+    } ;
+
+  SymbS sy = {s = \\_ => sy.s} ;
+
+  SymbNum n = {s = \\_,_ => n.s ; n = Pl ; isNum = True} ;
+  SymbOrd n = {s = \\_ => n.s ++ "."} ;
+
+
+lincat 
+
+  Symb, [Symb] = SS ;
+
+lin
+
+  MkSymb s = s ;
+
+  BaseSymb = infixSS "en" ;
+  ConsSymb = infixSS "," ;
+
+oper
+  artDef : Number -> Gender -> Str = \n,g -> case <n,g> of {<Sg,Neutr> => "die" ; _ => "die"} ;	--afr
+
+}
diff --git a/lib/src/afrikaans/VerbAfr.gf b/lib/src/afrikaans/VerbAfr.gf
new file mode 100644
--- /dev/null
+++ b/lib/src/afrikaans/VerbAfr.gf
@@ -0,0 +1,92 @@
+concrete VerbAfr of Verb = CatAfr ** open Prelude, ResAfr in {
+
+  flags optimize=all_subs ;
+
+  lin
+    UseV = predV ;
+
+    ComplVV v vp = 
+      let 
+        vpi = infVP v.isAux vp 
+      in
+      insertExtrapos vpi.p3 (
+        insertInf vpi.p2 (
+          insertObj vpi.p1 (
+            predVGen v.isAux (v2v v)))) ; ---- subtyp
+
+    ComplVS v s = 
+      insertExtrapos (conjThat ++ s.s ! Sub) (predV v) ;
+    ComplVQ v q = 
+      insertExtrapos (q.s ! QIndir) (predV v) ;
+    ComplVA  v ap = insertObj (\\ _ => ap.s ! APred) (predV v) ;
+
+    SlashV2a v = predV (v2v v) ** {c2 = v.c2} ; 
+      
+    Slash2V3 v np =
+      insertObj (\\_ => appPrep v.c2 np.s) (predVv v) ** {c2 = v.c3} ;
+    Slash3V3 v np =
+      insertObj (\\_ => appPrep v.c3 np.s) (predVv v) ** {c2 = v.c2} ;
+
+    SlashV2S v s = 
+      insertExtrapos (conjThat ++ s.s ! Sub) (predVv v) ** {c2 = v.c2} ;
+    SlashV2Q v q = 
+      insertExtrapos (q.s ! QIndir) (predVv v) ** {c2 = v.c2} ;
+    SlashV2V v vp = 
+      let 
+        vpi = infVP False vp 
+      in
+      insertExtrapos vpi.p3 (
+        insertInf vpi.p2 (
+          insertObj vpi.p1 ((predVv v)))) ** {c2 = v.c2} ;
+
+    SlashV2A v ap = 
+      insertObj (\\_ => ap.s ! APred) (predVv v) ** {c2 = v.c2} ;
+
+    ComplSlash vp np = insertObjNP np.isPron (\\_ => appPrep vp.c2 np.s) vp ;
+
+    SlashVV v vp = 
+      let 
+        vpi = infVP v.isAux vp 
+      in
+      insertExtrapos vpi.p3 (
+        insertInf vpi.p2 (
+          insertObj vpi.p1 (
+            predVGen v.isAux (v2v v)))) ** {c2 = vp.c2} ;
+
+    SlashV2VNP v np vp = 
+      let 
+        vpi = infVP False vp 
+      in
+      insertExtrapos vpi.p3 (
+        insertInf vpi.p2 (
+          insertObj vpi.p1 (
+            insertObj (\\_ => appPrep v.c2 np.s) (
+              predVv v)))) ** {c2 = v.c2} ;
+
+    UseComp comp = insertObj comp.s (predV zijn_V) ; -- agr not used
+    
+--edited
+    CompCN cn = {s = \\a => case a.n of {
+        Sg => "'n" ++ cn.s ! Strong ! NF a.n Nom ;
+        Pl => cn.s ! Strong ! NF a.n Nom
+        }
+      } ;
+
+
+    CompAP ap = {s = \\_ => ap.s ! APred} ;
+    CompNP np = {s = \\_ => np.s ! NPNom} ;
+    CompAdv a = {s = \\_ => a.s} ;
+
+    AdvVP vp adv = insertAdv adv.s vp ;
+    AdVVP adv vp = insertAdV adv.s vp ;
+
+    ReflVP vp = insertObj (\\a => appPrep vp.c2 (\\_ => reflPron ! a )) vp ;
+
+    PassV2 v = insertInf (v.s ! VPerf) (predV word_V) ;
+
+---- workaround for a subtyping bug
+  oper
+    v2v : VVerb -> VVerb = \v -> 
+      {s = v.s ; aux = v.aux ; prefix = v.prefix ; vtype = v.vtype} ;
+    predVv : VVerb -> ResAfr.VP = \v -> predV (v2v v) ;
+}
diff --git a/lib/src/api/CombinatorsAfr.gf b/lib/src/api/CombinatorsAfr.gf
new file mode 100644
--- /dev/null
+++ b/lib/src/api/CombinatorsAfr.gf
@@ -0,0 +1,6 @@
+--# -path=.:alltenses:prelude
+
+resource CombinatorsAfr = Combinators with 
+  (Cat = CatAfr),
+  (Structural = StructuralAfr),
+  (Constructors = ConstructorsAfr) ;
diff --git a/lib/src/api/CombinatorsNep.gf b/lib/src/api/CombinatorsNep.gf
new file mode 100644
--- /dev/null
+++ b/lib/src/api/CombinatorsNep.gf
@@ -0,0 +1,6 @@
+--# -path=.:alltenses:prelude
+
+resource CombinatorsNep = Combinators with 
+  (Cat = CatNep),
+  (Structural = StructuralNep),
+  (Constructors = ConstructorsNep) ;
diff --git a/lib/src/api/CombinatorsPes.gf b/lib/src/api/CombinatorsPes.gf
new file mode 100644
--- /dev/null
+++ b/lib/src/api/CombinatorsPes.gf
@@ -0,0 +1,6 @@
+--# -path=.:alltenses:prelude
+
+resource CombinatorsPes = Combinators with 
+  (Cat = CatPes),
+  (Structural = StructuralPes),
+  (Constructors = ConstructorsPes) ;
diff --git a/lib/src/api/Constructors.gf b/lib/src/api/Constructors.gf
--- a/lib/src/api/Constructors.gf
+++ b/lib/src/api/Constructors.gf
@@ -330,8 +330,10 @@
       = \t,p -> TUseCl t ASimul p ;   --%  
       mkS : Ant -> Pol -> Cl -> S   --%  
       = \a,p -> TUseCl TPres a p ;   --%  
-      mkS : (Tense) -> (Ant) -> (Pol) -> Cl  -> S -- she wouldn't have slept  --:
+      mkS : (Tense) -> (Ant) -> (Pol) -> Cl  -> S -- she wouldn't have slept
       = \t,a -> TUseCl t a ;   --%  
+      mkS : Temp -> Pol -> Cl -> S -- she wouldn't have slept  --:
+      = UseCl ; --%
 
 -- Sentences can be combined with conjunctions. This can apply to a pair
 -- of sentences, but also to a list of more than two.
@@ -585,6 +587,8 @@
           = \q,n -> DetCN (DetQuant q NumSg) n ; --%   
       mkNP : Quant -> Num -> CN -> NP   -- these five old men
           = \q,nu,n -> DetCN (DetQuant q nu) n ; --%  
+      mkNP : Quant -> Num -> Ord -> CN -> NP   -- these five best old men --%
+          = \q,nu,or,n -> DetCN (DetQuantOrd q nu or) n ; --%  
       mkNP : Quant -> Num -> N  -> NP   -- these five men
           = \q,nu,n -> DetCN (DetQuant q nu) (UseN n) ; --%  
       mkNP : Det -> CN -> NP      -- the first old man   --:
@@ -1362,6 +1366,8 @@
       = \a,p -> TUseRCl TPres a p ; --% 
       mkRS : (Tense) -> (Ant) -> (Pol) -> RCl -> RS -- that wouldn't have slept 
       = TUseRCl ; --% 
+      mkRS : Temp -> (Pol) -> RCl -> RS -- that wouldn't have slept 
+      = UseRCl ; --% 
       mkRS : Conj -> RS -> RS -> RS -- who sleeps and whose mother runsx
       = \c,x,y -> ConjRS c (BaseRS x y) ; --% 
       mkRS : Conj -> ListRS -> RS -- who sleeps, whom I see and who sleeps --:
@@ -1678,13 +1684,13 @@
     "7" => n7 ;
     "8" => n8 ;
     "9" => n9 ;
-    _   => Predef.error ("not a valid digit" ++ s)
+    _   => Predef.error ("str2numeral: not a valid Digit" ++ s)
     } ;
 
   s2s10 : Str -> Sub10 = \s -> case s of {
     "1" => pot01 ;
     #idigit => pot0 (s2d s) ;
-    _   => Predef.error ("not a valid digit" ++ s)
+    _   => Predef.error ("str2numeral: not a valid Sub10" ++ s)
     } ;
 
   s2s100 : Str -> Sub100 = \s -> case s of {
@@ -1738,7 +1744,7 @@
     "7" => D_7 ;
     "8" => D_8 ;
     "9" => D_9 ;
-    _   => Predef.error ("not a valid digit" ++ s)
+    _   => Predef.error ("s2d: not a valid digit" ++ s)
     } ;
   } ;
 
diff --git a/lib/src/api/ConstructorsAfr.gf b/lib/src/api/ConstructorsAfr.gf
new file mode 100644
--- /dev/null
+++ b/lib/src/api/ConstructorsAfr.gf
@@ -0,0 +1,3 @@
+--# -path=.:alltenses:prelude
+
+resource ConstructorsAfr = Constructors with (Grammar = GrammarAfr) ;
diff --git a/lib/src/api/ConstructorsNep.gf b/lib/src/api/ConstructorsNep.gf
new file mode 100644
--- /dev/null
+++ b/lib/src/api/ConstructorsNep.gf
@@ -0,0 +1,3 @@
+--# -path=.:alltenses:prelude
+
+resource ConstructorsNep = Constructors with (Grammar = GrammarNep) ;
diff --git a/lib/src/api/ConstructorsPes.gf b/lib/src/api/ConstructorsPes.gf
new file mode 100644
--- /dev/null
+++ b/lib/src/api/ConstructorsPes.gf
@@ -0,0 +1,3 @@
+--# -path=.:alltenses:prelude
+
+resource ConstructorsPes = Constructors with (Grammar = GrammarPes) ;
diff --git a/lib/src/api/SymbolicPes.gf b/lib/src/api/SymbolicPes.gf
new file mode 100644
--- /dev/null
+++ b/lib/src/api/SymbolicPes.gf
@@ -0,0 +1,5 @@
+--# -path=.:present:mathematical:prelude
+
+resource SymbolicPes = Symbolic with 
+  (Symbol = SymbolPes),
+  (Grammar = GrammarPes) ;
diff --git a/lib/src/api/SymbolicPnb.gf b/lib/src/api/SymbolicPnb.gf
new file mode 100644
--- /dev/null
+++ b/lib/src/api/SymbolicPnb.gf
@@ -0,0 +1,5 @@
+--# -path=.:present:mathematical:prelude
+
+resource SymbolicPnb = Symbolic with 
+  (Symbol = SymbolPnb),
+  (Grammar = GrammarPnb) ;
diff --git a/lib/src/api/SyntaxAfr.gf b/lib/src/api/SyntaxAfr.gf
new file mode 100644
--- /dev/null
+++ b/lib/src/api/SyntaxAfr.gf
@@ -0,0 +1,4 @@
+--# -path=.:alltenses:prelude
+
+instance SyntaxAfr of Syntax = ConstructorsAfr, CatAfr, StructuralAfr, CombinatorsAfr ;
+
diff --git a/lib/src/api/SyntaxNep.gf b/lib/src/api/SyntaxNep.gf
new file mode 100644
--- /dev/null
+++ b/lib/src/api/SyntaxNep.gf
@@ -0,0 +1,5 @@
+--# -path=.:./alltenses:../prelude:/users/shafqat/gf_7/lib/src/nepali::/users/shafqat/gf_7/lib/src/abstract
+
+instance SyntaxNep of Syntax = 
+  ConstructorsNep, CatNep, StructuralNep, CombinatorsNep ;
+
diff --git a/lib/src/api/SyntaxPes.gf b/lib/src/api/SyntaxPes.gf
new file mode 100644
--- /dev/null
+++ b/lib/src/api/SyntaxPes.gf
@@ -0,0 +1,5 @@
+--# -path=.:./alltenses:../prelude
+
+instance SyntaxPes of Syntax = 
+  ConstructorsPes, CatPes, StructuralPes, CombinatorsPes ;
+
diff --git a/lib/src/api/TryAfr.gf b/lib/src/api/TryAfr.gf
new file mode 100644
--- /dev/null
+++ b/lib/src/api/TryAfr.gf
@@ -0,0 +1,3 @@
+--# -path=.:alltenses:prelude
+
+resource TryAfr = SyntaxAfr, LexiconAfr, ParadigmsAfr - [mkAdv,mkOrd] ;
diff --git a/lib/src/api/TryGer.gf b/lib/src/api/TryGer.gf
--- a/lib/src/api/TryGer.gf
+++ b/lib/src/api/TryGer.gf
@@ -1,3 +1,3 @@
 --# -path=.:alltenses:prelude
 
-resource TryGer = SyntaxGer, LexiconGer, ParadigmsGer - [mkAdv] ;
+resource TryGer = SyntaxGer, ExtraGer, LexiconGer, ParadigmsGer - [mkAdv], MakeStructuralGer ;
diff --git a/lib/src/api/TryNep.gf b/lib/src/api/TryNep.gf
new file mode 100644
--- /dev/null
+++ b/lib/src/api/TryNep.gf
@@ -0,0 +1,21 @@
+--# -path=.:alltenses:prelude
+resource TryNep = SyntaxNep - [mkAdN] , LexiconNep, ParadigmsNep - [mkAdv,mkDet,mkIP,mkAdN,mkQuant] ** 
+  open (P = ParadigmsNep) in {
+
+oper
+
+  mkAdv = overload SyntaxNep {
+    mkAdv : Str -> Adv = P.mkAdv ;
+  } ;
+
+  mkAdN = overload {
+    mkAdN : CAdv -> AdN = SyntaxNep.mkAdN ;
+---   mkAdN : Str -> AdN = P.mkAdN ;
+  } ;
+
+--  mkOrd = overload SyntaxNep {
+--    mkOrd : A -> Ord = SyntaxNep.OrdSuperl ;
+--  } ;
+
+
+}
diff --git a/lib/src/api/TryPes.gf b/lib/src/api/TryPes.gf
new file mode 100644
--- /dev/null
+++ b/lib/src/api/TryPes.gf
@@ -0,0 +1,12 @@
+--# -path=.:alltenses:prelude:/users/shafqat/www.grammaticalframework.org_0/lib/src/persian
+
+resource TryPes = SyntaxPes, LexiconPes, ParadigmsPes -[mkDet,mkQuant]** 
+  open (P = ParadigmsPes) in {
+
+-- oper
+
+--  mkAdv = overload SyntaxPes {
+--    mkAdv : Str -> Adv = P.mkAdv ;
+--  } ;
+
+}
diff --git a/lib/src/api/TrySpa.gf b/lib/src/api/TrySpa.gf
--- a/lib/src/api/TrySpa.gf
+++ b/lib/src/api/TrySpa.gf
@@ -1,3 +1,3 @@
 --# -path=.:alltenses:prelude
 
-resource TrySpa = SyntaxSpa, LexiconSpa, ParadigmsSpa - [mkAdv] ;
+resource TrySpa = SyntaxSpa, LexiconSpa, ParadigmsSpa - [mkAdv,mkAdN,mkDet,mkOrd,mkQuant] ;
diff --git a/lib/src/bulgarian/SentenceBul.gf b/lib/src/bulgarian/SentenceBul.gf
--- a/lib/src/bulgarian/SentenceBul.gf
+++ b/lib/src/bulgarian/SentenceBul.gf
@@ -66,7 +66,8 @@
       c2 = cl.c2
     } ;
 
-    AdvS a s = {s = a.s ++ "," ++ s.s} ;
+    ExtAdvS a s = {s = a.s ++ "," ++ s.s} ;
+    AdvS a s = {s = a.s ++ s.s} ;
 
     RelS s r = {s = s.s ++ "," ++ r.s ! {gn=gennum ANeut Sg; p=P3}} ;
 }
diff --git a/lib/src/bulgarian/StructuralBul.gf b/lib/src/bulgarian/StructuralBul.gf
--- a/lib/src/bulgarian/StructuralBul.gf
+++ b/lib/src/bulgarian/StructuralBul.gf
@@ -86,6 +86,7 @@
   something_NP = mkNP "íåùî" (GSg Neut) P3 ;
   somewhere_Adv = ss "íÿêúäå" ;
   that_Quant = mkQuant "îíçè" "îíàçè" "îíîâà" "îíåçè" ;
+  that_Subj = ss "÷å" ;
   there_Adv = ss "òàì" ;
   there7to_Adv = ss ["äî òàì"] ;
   there7from_Adv = ss ["îò òàì"] ;
diff --git a/lib/src/catalan/DiffCat.gf b/lib/src/catalan/DiffCat.gf
--- a/lib/src/catalan/DiffCat.gf
+++ b/lib/src/catalan/DiffCat.gf
@@ -50,9 +50,9 @@
       _ => prepCase c ++ artDef g Sg (CPrep P_de)
       } ;
 
-    conjunctCase : NPForm -> NPForm = \c -> case c of {
-      Ton Nom | Aton Nom => Ton Nom ;
-      _ => Ton Acc 
+    conjunctCase : Case -> Case = \c -> case c of {
+      Nom => Nom ;
+      _ => Acc 
       } ;
 
     auxVerb : VType -> (VF => Str) = \_ -> haver_V.s ;
diff --git a/lib/src/catalan/ExtraCat.gf b/lib/src/catalan/ExtraCat.gf
--- a/lib/src/catalan/ExtraCat.gf
+++ b/lib/src/catalan/ExtraCat.gf
@@ -3,13 +3,13 @@
 
 lin
 	i8fem_Pron =  mkPronoun
-      	"jo" "em" "em" "mi"  ["el meu"] ["la meva"] "mes"
+      	"jo" "em" "em" "mi"  ["el meu"] ["la meva"] ["els meus"] ["les meves"]
 		Fem Sg P1 ;
 
       these8fem_NP = makeNP "aquestes" Fem Pl ;
       they8fem_Pron = mkPronoun
       "elles" "les" "les" "elles"
-      "llur" "llur" "llurs"
+      "llur" "llur" "llurs" "llurs"
       Fem Pl P3 ;
     this8fem_NP = pn2np (mkPN ["aquesta"] Fem) ;
     those8fem_NP = makeNP ["aquestes"] Fem Pl ;
@@ -17,7 +17,7 @@
     we8fem_Pron = 
 	  mkPronoun 
 	    "nosaltres" "ens" "ens" "nosaltres"
-	    ["el nostre"] ["la nostra"] ["els nostres"]
+	    ["el nostre"] ["la nostra"] ["els nostres"] ["les nostres"]
       	Fem Pl P1 ;
 
     whoPl8fem_IP = {s = \\c => prepCase c ++ "qui" ; a = aagr Fem Pl} ;
@@ -25,21 +25,21 @@
 
     youSg8fem_Pron = mkPronoun 
   		"tu" "et" "et" "tu"
-    	["el teu"] ["la teva"] ["les teves"]
+    	["el teu"] ["la teva"] ["els teus"] ["les teves"]
       	Fem Sg P2 ;
     youPl8fem_Pron = mkPronoun
       "vosaltres" "us" "us" "vosaltres"
-      ["el vostre"] ["la vostra"] ["els vostres"]
+      ["el vostre"] ["la vostra"] ["els vostres"] ["les vostres"]
       Fem Pl P2 ;
     youPol8fem_Pron = mkPronoun
       "vosté" "la" "li" "vosté"
-      ["el seu"] ["la seva"] ["els seus"]
+      ["el seu"] ["la seva"] ["els seus"] ["les seves"]
       Fem Sg P3 ;
 
 oper
 	vostePl : ParadigmsCat.Gender -> Pron = \g -> lin Pron (mkPronoun
       "vostés" "els" "li" "vostés"
-      "llur" "llur" "llurs"
+      "llur" "llur" "llurs" "llurs"
       g Pl P3) ;
 lin
     youPolPl_Pron = vostePl Masc;
diff --git a/lib/src/catalan/LexiconCat.gf b/lib/src/catalan/LexiconCat.gf
--- a/lib/src/catalan/LexiconCat.gf
+++ b/lib/src/catalan/LexiconCat.gf
@@ -206,7 +206,7 @@
    village_N = regMN "poble" ;
    wait_V2 = mkV2 (regV "esperar") dative ;
    walk_V = regV "caminar" ;
-   warm_A = regADeg "tebi" ;
+   warm_A = compADeg (mkA "tebi" "tèbia" "tebis" "tèbies" "tèbiament") ;
    war_N = regFN "guerra" ;
    watch_V2 = dirV2 (regV "mirar") ;
    water_N = regFN "aigua" ;
diff --git a/lib/src/catalan/MorphoCat.gf b/lib/src/catalan/MorphoCat.gf
--- a/lib/src/catalan/MorphoCat.gf
+++ b/lib/src/catalan/MorphoCat.gf
@@ -119,8 +119,8 @@
 
   mkAdjReg : Str -> Adj = \prim ->
 	case prim of {
-		_ + "e" + ("r"|"l") => adjPrim prim ;
-		_ + ("r"|"l")       => adjFidel prim ;
+	--	_ + "e" + ("r"|"l") => adjPrim prim ;
+		_ + "l"             => adjFidel prim ;
 		_ + ("e"|"u"|"o")   => adjFondo prim ;
 		_                   => adjPrim prim  
 	} ;
@@ -131,9 +131,9 @@
 -- All the eight personal pronouns can be built by the following macro.
 -- The use of "en" as atonic genitive is debatable.
 
-  mkPronoun : (_,_,_,_,_,_,_ : Str) -> 
+  mkPronoun : (_,_,_,_,_,_,_,_ : Str) -> 
               Gender -> Number -> Person -> Pronoun =
-    \ell,el,li,Ell,son,sa,ses,g,n,p ->
+    \ell,el,li,Ell,son,sa,elsSeus,lesSeves,g,n,p ->
     let
       aell : Case -> Str = \x -> prepCase x ++ Ell ;
     in {
@@ -146,7 +146,8 @@
     poss = \\n,g => case <n,g> of {
       <Sg,Masc> => son ;
       <Sg,Fem>  => sa ;
-      _         => ses
+	  <Pl,Masc> => elsSeus ;
+      <Pl,Fem>  => lesSeves
       } ;
     a = Ag g n p ;
     hasClit = True ; isPol = False
diff --git a/lib/src/catalan/StructuralCat.gf b/lib/src/catalan/StructuralCat.gf
--- a/lib/src/catalan/StructuralCat.gf
+++ b/lib/src/catalan/StructuralCat.gf
@@ -40,7 +40,7 @@
   from_Prep = complGen ; ---
   he_Pron = 
     mkPronoun 
-     "ell" "el" "li" "ell" ["el seu"] ["la seva"] "ses"
+     "ell" "el" "li" "ell" ["el seu"] ["la seva"] ["els seus"] ["les seves"]
       Masc Sg P3 ;
   here_Adv = mkAdv "aquí" ;		-- acÌ
   here7to_Adv = mkAdv ["cap aquí"] ;
@@ -54,12 +54,12 @@
   i_Pron = 
     mkPronoun
       "jo" "em" "em" "mi"
-      ["el meu"] ["la meva"] "mes"
+      ["el meu"] ["la meva"] ["els meus"] ["les meves"]
       Fem Sg P1 ;
   in_Prep = mkPrep "en" ;
   it_Pron = mkPronoun 
      "ell" "ho" "li" "ell"
-     ["el seu"] ["la seva"] ["els seus"]
+     ["el seu"] ["la seva"] ["els seus"] ["les seves"]
      Masc Sg P3 ;
 
   less_CAdv = X.mkCAdv "menys" conjThan ; ----
@@ -85,7 +85,7 @@
   she_Pron = 
     mkPronoun
       "ella" "la" "li" "ella"
-      ["el seu"] ["la seva"] "ses"
+      ["el seu"] ["la seva"] ["els seus"] ["les seves"]
       Fem Sg P3 ;
   so_AdA = ss "tan" ;
   somebody_NP = pn2np (mkPN ["alg˙"] Masc) ;
@@ -111,7 +111,7 @@
   therefore_PConj = ss ["per tant"] ;
   they_Pron = mkPronoun
     "elles" "les" "les" "elles"
-    "llur" "llur" "llurs"
+    "llur" "llur" "llurs" "llurs"
     Fem Pl P3 ;
 
   this_Quant =
@@ -133,7 +133,7 @@
   we_Pron = 
     mkPronoun 
       "nosaltres" "ens" "ens" "nosaltres"
-      ["el nostre"] ["la nostra"] ["els nostres"]
+      ["el nostre"] ["la nostra"] ["els nostres"] ["les nostres"]
       Fem Pl P1 ;
    whatSg_IP = {s = \\c => prepCase c ++ ["què"] ; a = aagr Masc Sg} ;
    whatPl_IP = {s = \\c => prepCase c ++ ["què"] ; a = aagr Masc Pl} ; ---
@@ -153,16 +153,16 @@
   yes_Utt = ss "sí" ;  
   youSg_Pron = mkPronoun 
     "tu" "et" "et" "tu"
-    ["el teu"] ["la teva"] ["les teves"]
+    ["el teu"] ["la teva"] ["els teus"] ["les teves"]
     Masc Sg P2 ;
   youPl_Pron =
     mkPronoun
       "vosaltres" "us" "us" "vosaltres"
-      ["el vostre"] ["la vostra"] ["els vostres"]
+      ["el vostre"] ["la vostra"] ["els vostres"] ["les vostres"]
       Masc Pl P2 ;
   youPol_Pron = mkPronoun
       "vosté" "el" "li" "vosté"
-      ["el seu"] ["la seva"] ["els seus"]
+      ["el seu"] ["la seva"] ["els seus"] ["les seves"]
       Masc Pl P2 ;
    not_Predet = {s = \\a,c => prepCase c ++ "no pas" ; c = Nom ;
     a = PNoAg} ;
diff --git a/lib/src/dutch/ResDut.gf b/lib/src/dutch/ResDut.gf
--- a/lib/src/dutch/ResDut.gf
+++ b/lib/src/dutch/ResDut.gf
@@ -598,7 +598,7 @@
 
   infVP : Bool -> VP -> ((Agr => Str) * Str * Str) = \isAux, vp -> 
     <
-     \\agr => vp.n2 ! agr ++  vp.a2,
+     \\agr => vp.n0 ! agr ++  vp.n2 ! agr ++  vp.a2,
      vp.a1 ! Pos ++ 
      if_then_Str isAux [] "te" ++ vp.s.s ! VInf,
      vp.inf.p1 ++ vp.ext
diff --git a/lib/src/dutch/SentenceDut.gf b/lib/src/dutch/SentenceDut.gf
--- a/lib/src/dutch/SentenceDut.gf
+++ b/lib/src/dutch/SentenceDut.gf
@@ -61,6 +61,7 @@
       } ;
 
     AdvS a s = {s = \\o => a.s ++ s.s ! Inv} ;
+    ExtAdvS a s = {s = \\o => a.s ++ "," ++ s.s ! Inv} ;
 
     RelS s r = {s = \\o => s.s ! o ++ "," ++ r.s ! Neutr ! Sg} ;
 
diff --git a/lib/src/english/AdjectiveEng.gf b/lib/src/english/AdjectiveEng.gf
--- a/lib/src/english/AdjectiveEng.gf
+++ b/lib/src/english/AdjectiveEng.gf
@@ -7,7 +7,7 @@
       isPre = True
       } ;
     ComparA a np = {
-      s = \\_ => a.s ! AAdj Compar Nom ++ "than" ++ np.s ! Nom ; 
+      s = \\_ => a.s ! AAdj Compar Nom ++ "than" ++ np.s ! npNom ; 
       isPre = False
       } ;
     UseComparA a = {
@@ -21,12 +21,12 @@
       } ;
 
     CAdvAP ad ap np = {
-      s = \\a => ad.s ++ ap.s ! a ++ ad.p ++ np.s ! Nom ; 
+      s = \\a => ad.s ++ ap.s ! a ++ ad.p ++ np.s ! npNom ; 
       isPre = False
       } ;
 
     ComplA2 a np = {
-      s = \\_ => a.s ! AAdj Posit Nom ++ a.c2 ++ np.s ! Acc ; 
+      s = \\_ => a.s ! AAdj Posit Nom ++ a.c2 ++ np.s ! NPAcc ; 
       isPre = False
       } ;
 
diff --git a/lib/src/english/AdverbEng.gf b/lib/src/english/AdverbEng.gf
--- a/lib/src/english/AdverbEng.gf
+++ b/lib/src/english/AdverbEng.gf
@@ -3,13 +3,13 @@
   lin
     PositAdvAdj a = {s = a.s ! AAdv} ;
     ComparAdvAdj cadv a np = {
-      s = cadv.s ++ a.s ! AAdv ++ cadv.p ++ np.s ! Nom
+      s = cadv.s ++ a.s ! AAdv ++ cadv.p ++ np.s ! npNom
       } ;
     ComparAdvAdjS cadv a s = {
       s = cadv.s ++ a.s ! AAdv ++ cadv.p ++ s.s
       } ;
 
-    PrepNP prep np = {s = prep.s ++ np.s ! Acc} ;
+    PrepNP prep np = {s = prep.s ++ np.s ! NPAcc} ;
 
     AdAdv = cc2 ;
     PositAdAAdj a = {s = a.s ! AAdv} ;
diff --git a/lib/src/english/CatEng.gf b/lib/src/english/CatEng.gf
--- a/lib/src/english/CatEng.gf
+++ b/lib/src/english/CatEng.gf
@@ -1,14 +1,18 @@
-concrete CatEng of Cat = CommonX ** open ResEng, Prelude in {
+concrete CatEng of Cat = CommonX - [Pol] ** open ResEng, Prelude in {
 
   flags optimize=all_subs ;
 
   lincat
 
+-- exception to CommonX, due to the distinction contracted/uncontracted negation
+
+    Pol = {s : Str ; p : CPolarity} ;
+
 -- Tensed/Untensed
 
     S  = {s : Str} ;
     QS = {s : QForm => Str} ;
-    RS = {s : Agr => Str ; c : Case} ; -- c for it clefts
+    RS = {s : Agr => Str ; c : NPCase} ; -- c for it clefts
     SSlash = {s : Str ; c2 : Str} ;
 
 -- Sentence
@@ -23,7 +27,7 @@
 -- Question
 
     QCl = {s : ResEng.Tense => Anteriority => CPolarity => QForm => Str} ;
-    IP = {s : Case => Str ; n : Number} ;
+    IP = {s : NPCase => Str ; n : Number} ;
     IComp = {s : Str} ;    
     IDet = {s : Str ; n : Number} ;
     IQuant = {s : Number => Str} ;
@@ -32,7 +36,7 @@
 
     RCl = {
       s : ResEng.Tense => Anteriority => CPolarity => Agr => Str ; 
-      c : Case
+      c : NPCase
       } ;
     RP = {s : RCase => Str ; a : RAgr} ;
 
@@ -49,14 +53,14 @@
 -- Noun
 
     CN = {s : Number => Case => Str ; g : Gender} ;
-    NP = {s : Case => Str ; a : Agr} ;
-    Pron = {s : Case => Str ; sp : Case => Str ; a : Agr} ;
-    Det = {s : Str ; sp : Case => Str ; n : Number ; hasNum : Bool} ;
+    NP = {s : NPCase => Str ; a : Agr} ;
+    Pron = {s : NPCase => Str ; sp : Case => Str ; a : Agr} ;
+    Det = {s : Str ; sp : NPCase => Str ; n : Number ; hasNum : Bool} ;
     Predet = {s : Str} ;
     Ord = { s : Case => Str } ;
     Num  = {s : Case => Str ; n : Number ; hasCard : Bool} ;
     Card = {s : Case => Str ; n : Number} ;
-    Quant = {s : Bool => Number => Str ; sp : Bool => Number => Case => Str} ;
+    Quant = {s : Bool => Number => Str ; sp : Bool => Number => NPCase => Str} ;
 
 -- Numeral
 
@@ -77,7 +81,7 @@
     V2, V2A, V2Q, V2S = Verb ** {c2 : Str} ;
     V3 = Verb ** {c2, c3 : Str} ;
     VV = {s : VVForm => Str ; typ : VVType} ;
-    V2V = Verb ** {c2 : Str ; typ : VVType} ;
+    V2V = Verb ** {c2,c3 : Str ; typ : VVType} ;
 
     A = {s : AForm => Str} ;
     A2 = {s : AForm => Str ; c2 : Str} ;
diff --git a/lib/src/english/ConjunctionEng.gf b/lib/src/english/ConjunctionEng.gf
--- a/lib/src/english/ConjunctionEng.gf
+++ b/lib/src/english/ConjunctionEng.gf
@@ -9,7 +9,7 @@
 
     ConjAdv = conjunctDistrSS ;
 
-    ConjNP conj ss = conjunctDistrTable Case conj ss ** {
+    ConjNP conj ss = conjunctDistrTable NPCase conj ss ** {
       a = conjAgr (agrP3 conj.n) ss.a
       } ;
 
@@ -31,8 +31,8 @@
     ConsS = consrSS comma ;
     BaseAdv = twoSS ;
     ConsAdv = consrSS comma ;
-    BaseNP x y = twoTable Case x y ** {a = conjAgr x.a y.a} ;
-    ConsNP xs x = consrTable Case comma xs x ** {a = conjAgr xs.a x.a} ;
+    BaseNP x y = twoTable NPCase x y ** {a = conjAgr x.a y.a} ;
+    ConsNP xs x = consrTable NPCase comma xs x ** {a = conjAgr xs.a x.a} ;
     BaseAP x y = twoTable Agr x y ** {isPre = andB x.isPre y.isPre} ;
     ConsAP xs x = consrTable Agr comma xs x ** {isPre = andB xs.isPre x.isPre} ;
     BaseRS x y = twoTable Agr x y ** {c = y.c} ;
@@ -46,9 +46,9 @@
     [S] = {s1,s2 : Str} ;
     [Adv] = {s1,s2 : Str} ;
     [IAdv] = {s1,s2 : Str} ;
-    [NP] = {s1,s2 : Case => Str ; a : Agr} ;
+    [NP] = {s1,s2 : NPCase => Str ; a : Agr} ;
     [AP] = {s1,s2 : Agr => Str ; isPre : Bool} ;
-    [RS] = {s1,s2 : Agr => Str ; c : Case} ;
+    [RS] = {s1,s2 : Agr => Str ; c : NPCase} ;
     [CN] = {s1,s2 : Number => Case => Str} ;
 
 }
diff --git a/lib/src/english/DictEng.gf b/lib/src/english/DictEng.gf
# file too large to diff: lib/src/english/DictEng.gf
diff --git a/lib/src/english/DictEngAbs.gf b/lib/src/english/DictEngAbs.gf
--- a/lib/src/english/DictEngAbs.gf
+++ b/lib/src/english/DictEngAbs.gf
@@ -20,41780 +20,42946 @@
 --    http://www.stanford.edu/~mpurver/software.html
 
 abstract DictEngAbs = Cat ** {
-fun a_bomb_N : N;
-fun a_fortiori_Adv : Adv;
-fun a_level_N : N;
-fun a_posteriori_A : A;
-fun a_posteriori_Adv : Adv;
-fun a_priori_A : A;
-fun a_priori_Adv : Adv;
-fun aa_N : N;
-fun aachen_PN : PN;
-fun aarhus_PN : PN;
-fun ab_initio_Adv : Adv;
-fun aback_Adv : Adv;
-fun abacus_N : N;
-fun abaft_Adv : Adv;
-fun abandon_N : N;
-fun abandon_V2 : V2;
-fun abandoned_A : A;
-fun abandonment_N : N;
-fun abase_V2 : V2;
-fun abasement_N : N;
-fun abash_V2 : V2;
-fun abate_V : V;
-fun abate_V2 : V2;
-fun abatement_N : N;
-fun abattoir_N : N;
-fun abbess_N : N;
-fun abbey_N : N;
-fun abbot_N : N;
-fun abbreviate_V2 : V2;
-fun abbreviation_N : N;
-fun abbe_N : N;
-fun abc_N : N;
-fun abcs_N : N;
-fun abdicate_V : V;
-fun abdicate_V2 : V2;
-fun abdication_N : N;
-fun abdomen_N : N;
-fun abdominal_A : A;
-fun abduct_V2 : V2;
-fun abduction_N : N;
-fun abe_PN : PN;
-fun abeam_Adv : Adv;
-fun abed_Adv : Adv;
-fun abercarn_PN : PN;
-fun aberdare_PN : PN;
-fun aberdeen_PN : PN;
-fun abergavenny_PN : PN;
-fun abergele_PN : PN;
-fun aberrant_A : A;
-fun aberration_N : N;
-fun abertillery_PN : PN;
-fun aberystwyth_PN : PN;
-fun abet_V2 : V2;
-fun abeyance_N : N;
-fun abhor_V2 : V2;
-fun abhorrence_N : N;
-fun abhorrent_A : A;
-fun abide_V : V;
-fun abide_V2 : V2;
-fun abiding_A : A;
-fun ability_N : N;
-fun abingdon_PN : PN;
-fun abject_A : A;
-fun abjection_N : N;
-fun abjuration_N : N;
-fun abjure_V2 : V2;
-fun ablative_A : A;
-fun ablative_N : N;
-fun ablaut_N : N;
-fun ablaze_A : A;
-fun ablaze_Adv : Adv;
-fun able_A : A;
-fun able_bodied_A : A;
-fun ablution_N : N;
-fun ably_Adv : Adv;
-fun abnegation_N : N;
-fun abnormal_A : A;
-fun abnormality_N : N;
-fun abo_N : N;
-fun aboard_Adv : Adv;
-fun abode_N : N;
-fun abolish_V2 : V2;
-fun abolition_N : N;
-fun abolitionist_N : N;
-fun abominable_A : A;
-fun abominate_V2 : V2;
-fun abomination_N : N;
-fun aboriginal_A : A;
-fun aboriginal_N : N;
-fun aborigine_N : N;
-fun abort_V : V;
-fun abort_V2 : V2;
-fun abortion_N : N;
-fun abortionist_N : N;
-fun abortive_A : A;
-fun abound_V : V;
-fun about_Adv : Adv;
-fun about_face_N : N;
-fun about_face_V : V;
-fun above_Adv : Adv;
-fun above_board_A : A;
-fun above_board_Adv : Adv;
-fun above_mentioned_A : A;
-fun above_named_A : A;
-fun abracadabra_N : N;
-fun abrade_V2 : V2;
-fun abraham_PN : PN;
-fun abrasion_N : N;
-fun abrasive_A : A;
-fun abrasive_N : N;
-fun abreast_Adv : Adv;
-fun abridge_V2 : V2;
-fun abridgement_N : N;
-fun abridgment_N : N;
-fun abroad_Adv : Adv;
-fun abrogate_V2 : V2;
-fun abrogation_N : N;
-fun abrupt_A : A;
-fun abruptness_N : N;
-fun abscess_N : N;
-fun abscond_V : V;
-fun absence_N : N;
-fun absent_A : A;
-fun absent_V2 : V2;
-fun absent_minded_A : A;
-fun absent_mindedness_N : N;
-fun absentee_N : N;
-fun absenteeism_N : N;
-fun absinth_N : N;
-fun absinthe_N : N;
-fun absolute_A : A;
-fun absolution_N : N;
-fun absolutism_N : N;
-fun absolve_V2 : V2;
-fun absorb_V2 : V2;
-fun absorbent_A : A;
-fun absorbent_N : N;
-fun absorption_N : N;
-fun abstain_V : V;
-fun abstainer_N : N;
-fun abstemious_A : A;
-fun abstemiousness_N : N;
-fun abstention_N : N;
-fun abstinence_N : N;
-fun abstract_A : A;
-fun abstract_N : N;
-fun abstract_V2 : V2;
-fun abstracted_A : A;
-fun abstraction_N : N;
-fun abstruse_A : A;
-fun abstruseness_N : N;
-fun absurd_A : A;
-fun absurdity_N : N;
-fun abundance_N : N;
-fun abundant_A : A;
-fun abuse_N : N;
-fun abuse_V2 : V2;
-fun abusive_A : A;
-fun abut_V : V;
-fun abutment_N : N;
-fun abysm_N : N;
-fun abysmal_A : A;
-fun abyss_N : N;
-fun acacia_N : N;
-fun academic_A : A;
-fun academic_N : N;
-fun academically_Adv : Adv;
-fun academician_N : N;
-fun academy_N : N;
-fun accede_V : V;
-fun accelerando_A : A;
-fun accelerando_Adv : Adv;
-fun accelerando_N : N;
-fun accelerate_V : V;
-fun accelerate_V2 : V2;
-fun acceleration_N : N;
-fun accelerator_N : N;
-fun accent_N : N;
-fun accent_V2 : V2;
-fun accentuate_V2 : V2;
-fun accentuation_N : N;
-fun accept_V : V;
-fun accept_V2 : V2;
-fun acceptability_N : N;
-fun acceptable_A : A;
-fun acceptance_N : N;
-fun acceptation_N : N;
-fun access_N : N;
-fun accessary_N : N;
-fun accessibility_N : N;
-fun accessible_A : A;
-fun accession_N : N;
-fun accessory_N : N;
-fun accidence_N : N;
-fun accident_N : N;
-fun accident_prone_A : A;
-fun accidental_A : A;
-fun acclaim_N : N;
-fun acclaim_V2 : V2;
-fun acclamation_N : N;
-fun acclimate_V : V;
-fun acclimate_V2 : V2;
-fun acclimation_N : N;
-fun acclimatization_N : N;
-fun acclimatize_V : V;
-fun acclimatize_V2 : V2;
-fun acclivity_N : N;
-fun accolade_N : N;
-fun accommodate_V2 : V2;
-fun accommodating_A : A;
-fun accommodation_N : N;
-fun accompaniment_N : N;
-fun accompanist_N : N;
-fun accompany_V2 : V2;
-fun accomplice_N : N;
-fun accomplish_V2 : V2;
-fun accomplished_A : A;
-fun accomplishment_N : N;
-fun accord_N : N;
-fun accord_V : V;
-fun accord_V2 : V2;
-fun accordance_N : N;
-fun accordingly_Adv : Adv;
-fun accordion_N : N;
-fun accost_V2 : V2;
-fun accouchement_N : N;
-fun account_N : N;
-fun account_V : V;
-fun account_V2 : V2;
-fun accountable_A : A;
-fun accountancy_N : N;
-fun accountant_N : N;
-fun accra_PN : PN;
-fun accredit_V2 : V2;
-fun accredited_A : A;
-fun accretion_N : N;
-fun accrington_PN : PN;
-fun accrue_V : V;
-fun accumulate_V : V;
-fun accumulate_V2 : V2;
-fun accumulation_N : N;
-fun accumulative_A : A;
-fun accumulator_N : N;
-fun accuracy_N : N;
-fun accurate_A : A;
-fun accursed_A : A;
-fun accurst_A : A;
-fun accusation_N : N;
-fun accusative_A : A;
-fun accusative_N : N;
-fun accuse_V2 : V2;
-fun accuser_N : N;
-fun accusingly_Adv : Adv;
-fun accustom_V2 : V2;
-fun accustomed_A : A;
-fun ace_N : N;
-fun acerbity_N : N;
-fun acetate_N : N;
-fun acetic_A : A;
-fun acetylene_N : N;
-fun ache_N : N;
-fun ache_V : V;
-fun achievable_A : A;
-fun achieve_V2 : V2;
-fun achievement_N : N;
-fun achilles_PN : PN;
-fun acid_A : A;
-fun acid_N : N;
-fun acidic_A : A;
-fun acidify_V : V;
-fun acidify_V2 : V2;
-fun acidity_N : N;
-fun acidulated_A : A;
-fun acidulous_A : A;
-fun ack_ack_N : N;
-fun acknowledge_V2 : V2;
-fun acknowledgement_N : N;
-fun acme_N : N;
-fun acne_N : N;
-fun acolyte_N : N;
-fun aconite_N : N;
-fun acorn_N : N;
-fun acorn_cup_N : N;
-fun acoustic_A : A;
-fun acoustic_N : N;
-fun acoustics_N : N;
-fun acquaint_V2 : V2;
-fun acquaintance_N : N;
-fun acquaintanceship_N : N;
-fun acquiesce_V : V;
-fun acquiescence_N : N;
-fun acquiescent_A : A;
-fun acquire_V2 : V2;
-fun acquirement_N : N;
-fun acquisition_N : N;
-fun acquisitive_A : A;
-fun acquit_V2 : V2;
-fun acquittal_N : N;
-fun acre_N : N;
-fun acreage_N : N;
-fun acrid_A : A;
-fun acrimonious_A : A;
-fun acrimony_N : N;
-fun acrobat_N : N;
-fun acrobatic_A : A;
-fun acrobatics_N : N;
-fun acronym_N : N;
-fun acropolis_N : N;
-fun across_Adv : Adv;
-fun acrostic_N : N;
-fun acrylic_N : N;
-fun act_N : N;
-fun act_V : V;
-fun act_V2 : V2;
-fun acting_A : A;
-fun acting_N : N;
-fun actinic_A : A;
-fun actinism_N : N;
-fun action_N : N;
-fun actionable_A : A;
-fun activate_V2 : V2;
-fun activation_N : N;
-fun active_A : A;
-fun activist_N : N;
-fun activity_N : N;
-fun actor_N : N;
-fun actress_N : N;
-fun actual_A : A;
-fun actuality_N : N;
-fun actuarial_A : A;
-fun actuary_N : N;
-fun actuate_V2 : V2;
-fun acuity_N : N;
-fun acumen_N : N;
-fun acupuncture_N : N;
-fun acute_A : A;
-fun acuteness_N : N;
-fun ad_N : N;
-fun ad_PN : PN;
-fun ad_hoc_A : A;
-fun ad_hoc_Adv : Adv;
-fun ad_infinitum_Adv : Adv;
-fun ad_interim_Adv : Adv;
-fun ad_lib_A : A;
-fun ad_lib_Adv : Adv;
-fun ad_lib_V : V;
-fun ad_libitum_Adv : Adv;
-fun ad_man_N : N;
-fun ad_nauseam_Adv : Adv;
-fun ad_valorem_Adv : Adv;
-fun ada_PN : PN;
-fun adage_N : N;
-fun adagio_A : A;
-fun adagio_Adv : Adv;
-fun adagio_N : N;
-fun adam_PN : PN;
-fun adamant_A : A;
-fun adamant_N : N;
-fun adamantine_A : A;
-fun adapt_V2 : V2;
-fun adaptability_N : N;
-fun adaptable_A : A;
-fun adaptation_N : N;
-fun adapter_N : N;
-fun adaptor_N : N;
-fun add_V : V;
-fun add_V2 : V2;
-fun addendum_N : N;
-fun adder_N : N;
-fun addict_N : N;
-fun addict_V2 : V2;
-fun addiction_N : N;
-fun addictive_A : A;
-fun adding_machine_N : N;
-fun addis_ababa_PN : PN;
-fun addition_N : N;
-fun additional_A : A;
-fun additive_N : N;
-fun addle_A : A;
-fun addle_V : V;
-fun addle_V2 : V2;
-fun addle_brained_A : A;
-fun addle_head_N : N;
-fun addle_pated_A : A;
-fun address_N : N;
-fun address_V2 : V2;
-fun addressee_N : N;
-fun addressograph_N : N;
-fun adduce_V2 : V2;
-fun adelaide_PN : PN;
-fun adenoidal_A : A;
-fun adept_A : A;
-fun adept_N : N;
-fun adequacy_N : N;
-fun adequate_A : A;
-fun adhere_V : V;
-fun adherence_N : N;
-fun adherent_N : N;
-fun adhesion_N : N;
-fun adhesive_A : A;
-fun adhesive_N : N;
-fun adieu_N : N;
-fun adipose_A : A;
-fun adjacent_A : A;
-fun adjectival_A : A;
-fun adjective_N : N;
-fun adjoin_V : V;
-fun adjoin_V2 : V2;
-fun adjoining_A : A;
-fun adjourn_V : V;
-fun adjourn_V2 : V2;
-fun adjournment_N : N;
-fun adjudge_V2 : V2;
-fun adjudicate_V : V;
-fun adjudicate_V2 : V2;
-fun adjudication_N : N;
-fun adjudicator_N : N;
-fun adjunct_N : N;
-fun adjuration_N : N;
-fun adjure_V2 : V2;
-fun adjust_V2 : V2;
-fun adjustable_A : A;
-fun adjuster_N : N;
-fun adjustment_N : N;
-fun adjutant_N : N;
-fun admass_N : N;
-fun administer_V : V;
-fun administer_V2 : V2;
-fun administration_N : N;
-fun administrative_A : A;
-fun administrator_N : N;
-fun admirable_A : A;
-fun admiral_N : N;
-fun admiralty_N : N;
-fun admiration_N : N;
-fun admire_V2 : V2;
-fun admirer_N : N;
-fun admiring_A : A;
-fun admissibility_N : N;
-fun admissible_A : A;
-fun admission_N : N;
-fun admit_V : V;
-fun admit_V2 : V2;
-fun admittance_N : N;
-fun admittedly_Adv : Adv;
-fun admix_V : V;
-fun admix_V2 : V2;
-fun admixture_N : N;
-fun admonish_V2 : V2;
-fun admonition_N : N;
-fun admonitory_A : A;
-fun ado_N : N;
-fun adobe_N : N;
-fun adolescence_N : N;
-fun adolescent_A : A;
-fun adolescent_N : N;
-fun adopt_V2 : V2;
-fun adoption_N : N;
-fun adoptive_A : A;
-fun adorable_A : A;
-fun adoration_N : N;
-fun adore_V2 : V2;
-fun adorer_N : N;
-fun adoring_A : A;
-fun adorn_V2 : V2;
-fun adornment_N : N;
-fun adrenal_A : A;
-fun adrenalin_N : N;
-fun adrian_PN : PN;
-fun adrift_A : A;
-fun adrift_Adv : Adv;
-fun adroit_A : A;
-fun adroitness_N : N;
-fun adulation_N : N;
-fun adult_A : A;
-fun adult_N : N;
-fun adulterant_N : N;
-fun adulterate_V2 : V2;
-fun adulteration_N : N;
-fun adulterer_N : N;
-fun adulteress_N : N;
-fun adulterous_A : A;
-fun adultery_N : N;
-fun adulthood_N : N;
-fun adumbrate_V2 : V2;
-fun advance_N : N;
-fun advance_V : V;
-fun advance_V2 : V2;
-fun advanced_A : A;
-fun advancement_N : N;
-fun advantage_N : N;
-fun advantage_V2 : V2;
-fun advantageous_A : A;
-fun advent_N : N;
-fun adventist_N : N;
-fun adventitious_A : A;
-fun adventure_N : N;
-fun adventure_V2 : V2;
-fun adventurer_N : N;
-fun adventuresome_A : A;
-fun adventuress_N : N;
-fun adventurous_A : A;
-fun adverb_N : N;
-fun adverbial_A : A;
-fun adversary_N : N;
-fun adverse_A : A;
-fun adversity_N : N;
-fun advert_N : N;
-fun advert_V : V;
-fun advertise_V : V;
-fun advertise_V2 : V2;
-fun advertisement_N : N;
-fun advertiser_N : N;
-fun advice_N : N;
-fun advisability_N : N;
-fun advisable_A : A;
-fun advise_V : V;
-fun advise_V2 : V2;
-fun advised_A : A;
-fun adviser_N : N;
-fun advisory_A : A;
-fun advocacy_N : N;
-fun advocate_N : N;
-fun advocate_V2 : V2;
-fun advowson_N : N;
-fun adz_N : N;
-fun adze_N : N;
-fun aegis_N : N;
-fun aeon_N : N;
-fun aerate_V2 : V2;
-fun aeration_N : N;
-fun aerial_A : A;
-fun aerial_N : N;
-fun aerie_N : N;
-fun aerobatics_N : N;
-fun aerodrome_N : N;
-fun aerodynamic_A : A;
-fun aerodynamics_N : N;
-fun aeronaut_N : N;
-fun aeronautics_N : N;
-fun aeroplane_N : N;
-fun aerosol_N : N;
-fun aerospace_N : N;
-fun aertex_N : N;
-fun aery_N : N;
-fun aesthete_N : N;
-fun aesthetic_A : A;
-fun aesthetic_N : N;
-fun aesthetical_A : A;
-fun aesthetics_N : N;
-fun aether_N : N;
-fun aetiology_N : N;
-fun afar_Adv : Adv;
-fun affability_N : N;
-fun affable_A : A;
-fun affair_N : N;
-fun affect_V2 : V2;
-fun affectation_N : N;
-fun affected_A : A;
-fun affecting_A : A;
-fun affection_N : N;
-fun affectionate_A : A;
-fun affiance_V2 : V2;
-fun affidavit_N : N;
-fun affiliate_V : V;
-fun affiliate_V2 : V2;
-fun affiliation_N : N;
-fun affinity_N : N;
-fun affirm_V : V;
-fun affirm_V2 : V2;
-fun affirmation_N : N;
-fun affirmative_A : A;
-fun affirmative_N : N;
-fun affix_N : N;
-fun affix_V2 : V2;
-fun afflatus_N : N;
-fun afflict_V2 : V2;
-fun affliction_N : N;
-fun affluence_N : N;
-fun affluent_A : A;
-fun affluent_N : N;
-fun afford_V2 : V2;
-fun afforest_V2 : V2;
-fun afforestation_N : N;
-fun affranchise_V2 : V2;
-fun affray_N : N;
-fun affront_N : N;
-fun affront_V2 : V2;
-fun afghan_A : A;
-fun afghan_N : N;
-fun afghanistan_PN : PN;
-fun afghanistani_A : A;
-fun afghanistani_N : N;
-fun afield_Adv : Adv;
-fun afire_A : A;
-fun aflame_A : A;
-fun afloat_A : A;
-fun afoot_A : A;
-fun afore_Adv : Adv;
-fun aforesaid_A : A;
-fun aforethought_Adv : Adv;
-fun afoul_Adv : Adv;
-fun afraid_A : A;
-fun afresh_Adv : Adv;
-fun africa_PN : PN;
-fun african_A : A;
-fun african_N : N;
-fun afrikaans_N : N;
-fun afrikaner_A : A;
-fun afrikaner_N : N;
-fun afro_american_N : N;
-fun afro_asian_A : A;
-fun afro_wig_N : N;
-fun aft_Adv : Adv;
-fun after_A : A;
-fun after_Adv : Adv;
-fun aftercare_N : N;
-fun afterdamp_N : N;
-fun aftereffect_N : N;
-fun afterglow_N : N;
-fun aftermath_N : N;
-fun afternoon_N : N;
-fun afterthought_N : N;
-fun afterwards_Adv : Adv;
-fun again_Adv : Adv;
-fun agape_A : A;
-fun agar_agar_N : N;
-fun agate_N : N;
-fun agatha_PN : PN;
-fun agave_N : N;
-fun age_N : N;
-fun age_V : V;
-fun age_V2 : V2;
-fun age_bracket_N : N;
-fun age_group_N : N;
-fun age_long_A : A;
-fun age_old_A : A;
-fun aged_A : A;
-fun ageing_N : N;
-fun ageless_A : A;
-fun agency_N : N;
-fun agenda_N : N;
-fun agent_N : N;
-fun agent_provocateur_N : N;
-fun aggie_PN : PN;
-fun agglomerate_A : A;
-fun agglomerate_V : V;
-fun agglomerate_V2 : V2;
-fun agglomeration_N : N;
-fun agglutinate_V2 : V2;
-fun agglutinative_A : A;
-fun aggrandize_V2 : V2;
-fun aggrandizement_N : N;
-fun aggravate_V2 : V2;
-fun aggravation_N : N;
-fun aggregate_N : N;
-fun aggregate_V : V;
-fun aggregate_V2 : V2;
-fun aggregation_N : N;
-fun aggression_N : N;
-fun aggressive_A : A;
-fun aggressiveness_N : N;
-fun aggressor_N : N;
-fun aggrieve_V2 : V2;
-fun aggro_N : N;
-fun aghast_A : A;
-fun agile_A : A;
-fun agility_N : N;
-fun aging_N : N;
-fun agitate_V : V;
-fun agitate_V2 : V2;
-fun agitated_A : A;
-fun agitating_A : A;
-fun agitation_N : N;
-fun agitator_N : N;
-fun aglow_A : A;
-fun agm_N : N;
-fun agnail_N : N;
-fun agnes_PN : PN;
-fun agnostic_A : A;
-fun agnostic_N : N;
-fun agnosticism_N : N;
-fun ago_Adv : Adv;
-fun agog_A : A;
-fun agonized_A : A;
-fun agonizing_A : A;
-fun agony_N : N;
-fun agora_N : N;
-fun agoraphobia_N : N;
-fun agra_PN : PN;
-fun agrarian_A : A;
-fun agree_V : V;
-fun agree_V2 : V2;
-fun agreeable_A : A;
-fun agreement_N : N;
-fun agricultural_A : A;
-fun agriculture_N : N;
-fun aground_A : A;
-fun aground_Adv : Adv;
-fun ague_N : N;
-fun ahead_Adv : Adv;
-fun ahmedabad_PN : PN;
-fun aid_N : N;
-fun aid_V2 : V2;
-fun aide_de_camp_N : N;
-fun aide_memoire_N : N;
-fun aids_N : N;
-fun aigret_N : N;
-fun aigrette_N : N;
-fun ail_V : V;
-fun ail_V2 : V2;
-fun aileron_N : N;
-fun ailment_N : N;
-fun aim_N : N;
-fun aim_V : V;
-fun aim_V2 : V2;
-fun aimless_A : A;
-fun air_N : N;
-fun air_V2 : V2;
-fun air_bladder_N : N;
-fun air_conditioned_A : A;
-fun air_conditioning_N : N;
-fun air_cooled_A : A;
-fun air_minded_A : A;
-fun air_pump_N : N;
-fun air_raid_N : N;
-fun air_shaft_N : N;
-fun air_sick_A : A;
-fun air_sickness_N : N;
-fun air_to_air_A : A;
-fun air_to_ground_A : A;
-fun airbed_N : N;
-fun airborne_A : A;
-fun airbrake_N : N;
-fun aircraft_N : N;
-fun aircraftman_N : N;
-fun aircrew_N : N;
-fun airdrie_PN : PN;
-fun airdrome_N : N;
-fun aireborough_PN : PN;
-fun airedale_N : N;
-fun airfield_N : N;
-fun airflow_N : N;
-fun airframe_N : N;
-fun airing_N : N;
-fun airing_cupboard_N : N;
-fun airless_A : A;
-fun airline_N : N;
-fun airliner_N : N;
-fun airmail_N : N;
-fun airman_N : N;
-fun airplane_N : N;
-fun airport_N : N;
-fun airscrew_N : N;
-fun airship_N : N;
-fun airstrip_N : N;
-fun airtight_A : A;
-fun airway_N : N;
-fun airwoman_N : N;
-fun airworthiness_N : N;
-fun airworthy_A : A;
-fun airy_A : A;
-fun aisle_N : N;
-fun aitch_N : N;
-fun aitch_bone_N : N;
-fun ajar_A : A;
-fun akimbo_Adv : Adv;
-fun akin_A : A;
-fun akron_PN : PN;
-fun al_PN : PN;
-fun alabama_PN : PN;
-fun alabaster_A : A;
-fun alabaster_N : N;
-fun alacrity_N : N;
-fun alan_PN : PN;
-fun alarm_N : N;
-fun alarm_V2 : V2;
-fun alarm_clock_N : N;
-fun alarming_A : A;
-fun alarmist_N : N;
-fun alaska_PN : PN;
-fun alb_N : N;
-fun albania_PN : PN;
-fun albanian_A : A;
-fun albanian_N : N;
-fun albatross_N : N;
-fun albert_PN : PN;
-fun alberta_PN : PN;
-fun albino_N : N;
-fun album_N : N;
-fun albumen_N : N;
-fun alchemist_N : N;
-fun alchemy_N : N;
-fun alcohol_N : N;
-fun alcoholic_A : A;
-fun alcoholic_N : N;
-fun alcoholism_N : N;
-fun alcove_N : N;
-fun alder_N : N;
-fun alderman_N : N;
-fun aldermanic_A : A;
-fun aldershot_PN : PN;
-fun ale_N : N;
-fun ale_house_N : N;
-fun alee_A : A;
-fun alee_Adv : Adv;
-fun aleppo_PN : PN;
-fun alert_A : A;
-fun alert_N : N;
-fun alert_V2 : V2;
-fun alertness_N : N;
-fun alessandria_PN : PN;
-fun alex_PN : PN;
-fun alexander_PN : PN;
-fun alexandra_PN : PN;
-fun alexandria_PN : PN;
-fun alexandrine_N : N;
-fun alexia_N : N;
-fun alexic_A : A;
-fun alexic_N : N;
-fun alf_PN : PN;
-fun alfalfa_N : N;
-fun alfred_PN : PN;
-fun alfresco_A : A;
-fun alfresco_Adv : Adv;
-fun alfreton_PN : PN;
-fun alga_N : N;
-fun algebra_N : N;
-fun algebraic_A : A;
-fun algebraical_A : A;
-fun alger_PN : PN;
-fun algeria_PN : PN;
-fun algerian_A : A;
-fun algerian_N : N;
-fun ali_PN : PN;
-fun alias_Adv : Adv;
-fun alias_N : N;
-fun alibi_N : N;
-fun alicante_PN : PN;
-fun alice_PN : PN;
-fun alien_A : A;
-fun alien_N : N;
-fun alienate_V2 : V2;
-fun alienation_N : N;
-fun alienist_N : N;
-fun alight_A : A;
-fun alight_V : V;
-fun align_V : V;
-fun align_V2 : V2;
-fun alignment_N : N;
-fun alike_A : A;
-fun alike_Adv : Adv;
-fun alimentary_A : A;
-fun alimony_N : N;
-fun alison_PN : PN;
-fun alive_A : A;
-fun alkali_N : N;
-fun alkaline_A : A;
-fun all_mains_A : A;
-fun all_round_A : A;
-fun all_rounder_N : N;
-fun allah_PN : PN;
-fun allahabad_PN : PN;
-fun allan_PN : PN;
-fun allay_V2 : V2;
-fun allegation_N : N;
-fun allege_V2 : V2;
-fun allegedly_Adv : Adv;
-fun allegiance_N : N;
-fun allegoric_A : A;
-fun allegorical_A : A;
-fun allegory_N : N;
-fun allegretto_A : A;
-fun allegretto_Adv : Adv;
-fun allegretto_N : N;
-fun allegro_A : A;
-fun allegro_Adv : Adv;
-fun allegro_N : N;
-fun allen_PN : PN;
-fun allergen_N : N;
-fun allergic_A : A;
-fun allergy_N : N;
-fun alleviate_V2 : V2;
-fun alleviation_N : N;
-fun alley_N : N;
-fun alleyway_N : N;
-fun alliance_N : N;
-fun alligator_N : N;
-fun alliteration_N : N;
-fun alliterative_A : A;
-fun alloa_PN : PN;
-fun allocate_V2 : V2;
-fun allocation_N : N;
-fun allot_V2 : V2;
-fun allotment_N : N;
-fun allow_V : V;
-fun allow_V2 : V2;
-fun allowable_A : A;
-fun allowance_N : N;
-fun alloy_N : N;
-fun alloy_V2 : V2;
-fun allspice_N : N;
-fun allude_V : V;
-fun allure_N : N;
-fun allure_V2 : V2;
-fun allurement_N : N;
-fun alluring_A : A;
-fun allusion_N : N;
-fun allusive_A : A;
-fun alluvial_A : A;
-fun ally_N : N;
-fun ally_V2 : V2;
-fun alma_ata_PN : PN;
-fun alma_mater_N : N;
-fun almanac_N : N;
-fun almeria_PN : PN;
-fun almighty_A : A;
-fun almighty_N : N;
-fun almond_N : N;
-fun almond_eyed_A : A;
-fun almoner_N : N;
-fun almost_Adv : Adv;
-fun alms_box_N : N;
-fun alms_giving_N : N;
-fun alms_house_N : N;
-fun alnwick_PN : PN;
-fun aloe_N : N;
-fun aloft_Adv : Adv;
-fun alone_A : A;
-fun alone_Adv : Adv;
-fun along_Adv : Adv;
-fun alongside_Adv : Adv;
-fun aloof_A : A;
-fun aloof_Adv : Adv;
-fun aloofness_N : N;
-fun aloud_Adv : Adv;
-fun alp_N : N;
-fun alpaca_N : N;
-fun alpenstock_N : N;
-fun alpha_N : N;
-fun alphabet_N : N;
-fun alphabetical_A : A;
-fun alpine_A : A;
-fun alpinist_N : N;
-fun already_Adv : Adv;
-fun alright_A : A;
-fun alright_Adv : Adv;
-fun alsatian_N : N;
-fun also_Adv : Adv;
-fun also_ran_N : N;
-fun altar_N : N;
-fun altar_piece_N : N;
-fun alter_V : V;
-fun alter_V2 : V2;
-fun alter_ego_N : N;
-fun alterable_A : A;
-fun alteration_N : N;
-fun altercation_N : N;
-fun alternate_A : A;
-fun alternate_V : V;
-fun alternate_V2 : V2;
-fun alternation_N : N;
-fun alternative_A : A;
-fun alternative_N : N;
-fun altimeter_N : N;
-fun altitude_N : N;
-fun alto_N : N;
-fun altogether_Adv : Adv;
-fun alton_PN : PN;
-fun altrincham_PN : PN;
-fun altruism_N : N;
-fun altruist_N : N;
-fun altruistic_A : A;
-fun altruistically_Adv : Adv;
-fun alum_N : N;
-fun aluminium_N : N;
-fun alumna_N : N;
-fun alumnus_N : N;
-fun alvechurch_PN : PN;
-fun alveolar_A : A;
-fun alveolar_N : N;
-fun always_Adv : Adv;
-fun amah_N : N;
-fun amain_Adv : Adv;
-fun amalgam_N : N;
-fun amalgamate_V : V;
-fun amalgamate_V2 : V2;
-fun amalgamation_N : N;
-fun amanda_PN : PN;
-fun amanuensis_N : N;
-fun amaryllis_N : N;
-fun amass_V2 : V2;
-fun amateur_N : N;
-fun amateurish_A : A;
-fun amateurism_N : N;
-fun amatory_A : A;
-fun amaze_V2 : V2;
-fun amazement_N : N;
-fun amazing_A : A;
-fun amazon_N : N;
-fun ambassador_N : N;
-fun ambassadorial_A : A;
-fun ambassadress_N : N;
-fun amber_N : N;
-fun ambergris_N : N;
-fun ambidextrous_A : A;
-fun ambience_N : N;
-fun ambient_A : A;
-fun ambiguity_N : N;
-fun ambiguous_A : A;
-fun ambit_N : N;
-fun ambition_N : N;
-fun ambitious_A : A;
-fun ambivalence_N : N;
-fun ambivalent_A : A;
-fun amble_N : N;
-fun amble_V : V;
-fun ambrosia_N : N;
-fun ambulance_N : N;
-fun ambuscade_N : N;
-fun ambuscade_V2 : V2;
-fun ambush_N : N;
-fun ambush_V2 : V2;
-fun ameba_N : N;
-fun ameer_N : N;
-fun ameliorate_V : V;
-fun ameliorate_V2 : V2;
-fun amelioration_N : N;
-fun amenable_A : A;
-fun amend_V : V;
-fun amend_V2 : V2;
-fun amendable_A : A;
-fun amendment_N : N;
-fun amenity_N : N;
-fun america_PN : PN;
-fun american_A : A;
-fun american_N : N;
-fun americanism_N : N;
-fun amesbury_PN : PN;
-fun amethyst_N : N;
-fun amharic_N : N;
-fun amiability_N : N;
-fun amiable_A : A;
-fun amicability_N : N;
-fun amicable_A : A;
-fun amidships_Adv : Adv;
-fun amiens_PN : PN;
-fun amir_N : N;
-fun amiss_A : A;
-fun amiss_Adv : Adv;
-fun amity_N : N;
-fun ammanford_PN : PN;
-fun ammeter_N : N;
-fun ammonia_N : N;
-fun ammoniated_A : A;
-fun ammonite_N : N;
-fun ammunition_N : N;
-fun amnesia_N : N;
-fun amnesty_N : N;
-fun amoeba_N : N;
-fun amoebic_A : A;
-fun amok_Adv : Adv;
-fun amoral_A : A;
-fun amorous_A : A;
-fun amorphous_A : A;
-fun amortization_N : N;
-fun amortize_V2 : V2;
-fun amount_N : N;
-fun amount_V : V;
-fun amour_N : N;
-fun amour_propre_N : N;
-fun amp_N : N;
-fun ampere_N : N;
-fun amphetamine_N : N;
-fun amphibian_N : N;
-fun amphibious_A : A;
-fun amphitheatre_N : N;
-fun amphora_N : N;
-fun ample_A : A;
-fun amplification_N : N;
-fun amplifier_N : N;
-fun amplify_V2 : V2;
-fun amplitude_N : N;
-fun ampoule_N : N;
-fun amputate_V2 : V2;
-fun amputation_N : N;
-fun amsterdam_PN : PN;
-fun amuck_Adv : Adv;
-fun amulet_N : N;
-fun amuse_V2 : V2;
-fun amusement_N : N;
-fun amusing_A : A;
-fun amy_PN : PN;
-fun anachronism_N : N;
-fun anachronistic_A : A;
-fun anaconda_N : N;
-fun anaemia_N : N;
-fun anaemic_A : A;
-fun anaesthesia_N : N;
-fun anaesthetic_A : A;
-fun anaesthetic_N : N;
-fun anaesthetist_N : N;
-fun anaesthetize_V2 : V2;
-fun anagram_N : N;
-fun anal_A : A;
-fun analgesia_N : N;
-fun analgesic_N : N;
-fun analog_N : N;
-fun analogous_A : A;
-fun analogue_N : N;
-fun analogy_N : N;
-fun analyse_V2 : V2;
-fun analysis_N : N;
-fun analyst_N : N;
-fun analytic_A : A;
-fun analytical_A : A;
-fun analyze_V2 : V2;
-fun anapaest_N : N;
-fun anapaestic_A : A;
-fun anarchic_A : A;
-fun anarchically_Adv : Adv;
-fun anarchism_N : N;
-fun anarchist_N : N;
-fun anarchy_N : N;
-fun anathema_N : N;
-fun anathematize_V : V;
-fun anathematize_V2 : V2;
-fun anatomical_A : A;
-fun anatomist_N : N;
-fun anatomy_N : N;
-fun ancestor_N : N;
-fun ancestral_A : A;
-fun ancestress_N : N;
-fun ancestry_N : N;
-fun anchor_N : N;
-fun anchor_V : V;
-fun anchor_V2 : V2;
-fun anchorage_N : N;
-fun anchorite_N : N;
-fun anchorman_N : N;
-fun anchovy_N : N;
-fun ancient_A : A;
-fun ancillary_A : A;
-fun ancona_PN : PN;
-fun andante_A : A;
-fun andante_Adv : Adv;
-fun andante_N : N;
-fun andiron_N : N;
-fun andorra_PN : PN;
-fun andorran_A : A;
-fun andorran_N : N;
-fun andover_PN : PN;
-fun andrew_PN : PN;
-fun andy_PN : PN;
-fun anecdotal_A : A;
-fun anecdote_N : N;
-fun anemometer_N : N;
-fun anemone_N : N;
-fun aneroid_A : A;
-fun aneroid_N : N;
-fun anesthetic_A : A;
-fun anesthetic_N : N;
-fun anesthetist_N : N;
-fun anesthetize_V2 : V2;
-fun anew_Adv : Adv;
-fun angel_N : N;
-fun angela_PN : PN;
-fun angelic_A : A;
-fun angelica_N : N;
-fun angelically_Adv : Adv;
-fun angelus_N : N;
-fun anger_N : N;
-fun anger_V2 : V2;
-fun angers_PN : PN;
-fun angie_PN : PN;
-fun angina_N : N;
-fun angle_N : N;
-fun angle_V : V;
-fun angle_V2 : V2;
-fun angle_dozer_N : N;
-fun angle_iron_N : N;
-fun angle_park_V : V;
-fun angle_park_V2 : V2;
-fun angler_N : N;
-fun anglican_A : A;
-fun anglican_N : N;
-fun anglicism_N : N;
-fun anglicize_V2 : V2;
-fun angling_N : N;
-fun anglo_catholic_A : A;
-fun anglo_catholic_N : N;
-fun anglo_indian_A : A;
-fun anglo_indian_N : N;
-fun anglo_saxon_A : A;
-fun anglo_saxon_N : N;
-fun anglomania_N : N;
-fun anglophil_N : N;
-fun anglophile_N : N;
-fun anglophobe_N : N;
-fun anglophobia_N : N;
-fun angola_PN : PN;
-fun angolan_A : A;
-fun angolan_N : N;
-fun angora_N : N;
-fun angostura_N : N;
-fun angry_A : A;
-fun angst_N : N;
-fun anguilla_PN : PN;
-fun anguillan_A : A;
-fun anguillan_N : N;
-fun anguish_N : N;
-fun anguished_A : A;
-fun angular_A : A;
-fun angularity_N : N;
-fun angus_PN : PN;
-fun aniline_N : N;
-fun animadversion_N : N;
-fun animadvert_V : V;
-fun animal_N : N;
-fun animalcule_N : N;
-fun animate_A : A;
-fun animate_V2 : V2;
-fun animatedly_A : A;
-fun animation_N : N;
-fun animism_N : N;
-fun animosity_N : N;
-fun animus_N : N;
-fun anise_N : N;
-fun aniseed_N : N;
-fun anita_PN : PN;
-fun ankara_PN : PN;
-fun ankle_N : N;
-fun anklet_N : N;
-fun ann_PN : PN;
-fun anna_N : N;
-fun annabel_PN : PN;
-fun annalist_N : N;
-fun annan_PN : PN;
-fun anne_PN : PN;
-fun anneal_V2 : V2;
-fun annex_N : N;
-fun annex_V2 : V2;
-fun annexation_N : N;
-fun annexe_N : N;
-fun annfield_PN : PN;
-fun annfield_plain_PN : PN;
-fun annie_PN : PN;
-fun annihilate_V2 : V2;
-fun annihilation_N : N;
-fun anniversary_N : N;
-fun annotate_V2 : V2;
-fun annotation_N : N;
-fun announce_V2 : V2;
-fun announcement_N : N;
-fun announcer_N : N;
-fun annoy_V2 : V2;
-fun annoyance_N : N;
-fun annoying_A : A;
-fun annual_A : A;
-fun annual_N : N;
-fun annuitant_N : N;
-fun annuity_N : N;
-fun annul_V2 : V2;
-fun annular_A : A;
-fun annulment_N : N;
-fun annunciate_V2 : V2;
-fun annunciation_N : N;
-fun anode_N : N;
-fun anodyne_A : A;
-fun anodyne_N : N;
-fun anoint_V2 : V2;
-fun anointment_N : N;
-fun anomalous_A : A;
-fun anomaly_N : N;
-fun anon_Adv : Adv;
-fun anon_PN : PN;
-fun anonymity_N : N;
-fun anonymous_A : A;
-fun anopheles_N : N;
-fun anorak_N : N;
-fun another_A : A;
-fun anshan_PN : PN;
-fun answer_N : N;
-fun answer_V : V;
-fun answer_V2 : V2;
-fun answerable_A : A;
-fun ant_N : N;
-fun ant_eater_N : N;
-fun ant_hill_N : N;
-fun antagonism_N : N;
-fun antagonist_N : N;
-fun antagonistic_A : A;
-fun antagonistically_Adv : Adv;
-fun antagonize_V2 : V2;
-fun antarctic_A : A;
-fun ante_N : N;
-fun ante_meridiem_Adv : Adv;
-fun antecedence_N : N;
-fun antecedent_A : A;
-fun antecedent_N : N;
-fun antechamber_N : N;
-fun antedate_V2 : V2;
-fun antediluvian_A : A;
-fun antediluvian_N : N;
-fun antelope_N : N;
-fun antenatal_A : A;
-fun antenna_N : N;
-fun antenuptial_A : A;
-fun antepenultimate_A : A;
-fun anterior_A : A;
-fun anteroom_N : N;
-fun anthea_PN : PN;
-fun anthem_N : N;
-fun anther_N : N;
-fun anthology_N : N;
-fun anthony_PN : PN;
-fun anthracite_N : N;
-fun anthrax_N : N;
-fun anthropoid_A : A;
-fun anthropoid_N : N;
-fun anthropological_A : A;
-fun anthropologist_N : N;
-fun anthropology_N : N;
-fun anti_aircraft_A : A;
-fun anti_hero_N : N;
-fun anti_personnel_A : A;
-fun anti_semite_A : A;
-fun anti_semite_N : N;
-fun anti_semitic_A : A;
-fun anti_semitism_N : N;
-fun antibiotic_A : A;
-fun antibiotic_N : N;
-fun antibody_N : N;
-fun antic_N : N;
-fun anticipate_V2 : V2;
-fun anticipation_N : N;
-fun anticipatory_A : A;
-fun anticlimax_N : N;
-fun anticlockwise_Adv : Adv;
-fun anticyclone_N : N;
-fun antidote_N : N;
-fun antifreeze_N : N;
-fun antigua_PN : PN;
-fun antiguan_A : A;
-fun antiguan_N : N;
-fun antiknock_N : N;
-fun antilogarithm_N : N;
-fun antimacassar_N : N;
-fun antimony_N : N;
-fun antipathetic_A : A;
-fun antipathy_N : N;
-fun antiquarian_A : A;
-fun antiquarian_N : N;
-fun antiquary_N : N;
-fun antiquated_A : A;
-fun antique_A : A;
-fun antique_N : N;
-fun antiquity_N : N;
-fun antirrhinum_N : N;
-fun antiseptic_A : A;
-fun antiseptic_N : N;
-fun antisocial_A : A;
-fun antitank_A : A;
-fun antithesis_N : N;
-fun antithetic_A : A;
-fun antithetical_A : A;
-fun antitoxin_N : N;
-fun antitrade_A : A;
-fun antitrade_N : N;
-fun antler_N : N;
-fun antony_PN : PN;
-fun antonym_N : N;
-fun antrim_PN : PN;
-fun antwerp_PN : PN;
-fun anus_N : N;
-fun anvil_N : N;
-fun anxiety_N : N;
-fun anxious_A : A;
-fun any_A : A;
-fun any_Adv : Adv;
-fun anybody_N : N;
-fun anyhow_Adv : Adv;
-fun anyone_N : N;
-fun anyplace_Adv : Adv;
-fun anything_N : N;
-fun anyway_Adv : Adv;
-fun anywhere_Adv : Adv;
-fun aorta_N : N;
-fun apace_Adv : Adv;
-fun apache_N : N;
-fun apanage_N : N;
-fun apart_Adv : Adv;
-fun apartheid_N : N;
-fun apartment_N : N;
-fun apathetic_A : A;
-fun apathetically_Adv : Adv;
-fun apathy_N : N;
-fun ape_N : N;
-fun ape_V2 : V2;
-fun apeldoorn_PN : PN;
-fun aperient_A : A;
-fun aperient_N : N;
-fun aperitif_N : N;
-fun aperture_N : N;
-fun apex_N : N;
-fun aphasia_N : N;
-fun aphid_N : N;
-fun aphis_N : N;
-fun aphorism_N : N;
-fun aphrodisiac_A : A;
-fun aphrodisiac_N : N;
-fun apiarist_N : N;
-fun apiary_N : N;
-fun apiculture_N : N;
-fun apiece_Adv : Adv;
-fun apish_A : A;
-fun aplomb_N : N;
-fun apocalypse_N : N;
-fun apocalyptic_A : A;
-fun apocrypha_N : N;
-fun apocryphal_A : A;
-fun apogee_N : N;
-fun apologetic_A : A;
-fun apologetically_Adv : Adv;
-fun apologetics_N : N;
-fun apologist_N : N;
-fun apologize_V : V;
-fun apology_N : N;
-fun apophthegm_N : N;
-fun apoplectic_A : A;
-fun apoplexy_N : N;
-fun apostasy_N : N;
-fun apostate_A : A;
-fun apostate_N : N;
-fun apostle_N : N;
-fun apostolic_A : A;
-fun apostrophe_N : N;
-fun apostrophize_V2 : V2;
-fun apothecary_N : N;
-fun apothegm_N : N;
-fun apotheosis_N : N;
-fun appal_V2 : V2;
-fun appalling_A : A;
-fun appanage_N : N;
-fun apparatus_N : N;
-fun apparel_N : N;
-fun apparel_V2 : V2;
-fun apparent_A : A;
-fun apparition_N : N;
-fun appeal_N : N;
-fun appeal_V : V;
-fun appealing_A : A;
-fun appear_V : V;
-fun appearance_N : N;
-fun appease_V2 : V2;
-fun appeasement_N : N;
-fun appellant_A : A;
-fun appellant_N : N;
-fun appellation_N : N;
-fun append_V2 : V2;
-fun appendage_N : N;
-fun appendectomy_N : N;
-fun appendicitis_N : N;
-fun appendix_N : N;
-fun appertain_V : V;
-fun appetite_N : N;
-fun appetizer_N : N;
-fun appetizing_A : A;
-fun applaud_V : V;
-fun applaud_V2 : V2;
-fun applause_N : N;
-fun apple_N : N;
-fun applejack_N : N;
-fun appliance_N : N;
-fun applicability_N : N;
-fun applicable_A : A;
-fun applicant_N : N;
-fun application_N : N;
-fun applied_A : A;
-fun applique_N : N;
-fun applique_V2 : V2;
-fun apply_V : V;
-fun apply_V2 : V2;
-fun appoint_V2 : V2;
-fun appointee_N : N;
-fun appointment_N : N;
-fun apportion_V2 : V2;
-fun apportionment_N : N;
-fun apposite_A : A;
-fun apposition_N : N;
-fun appraisal_N : N;
-fun appraise_V2 : V2;
-fun appreciable_A : A;
-fun appreciate_V : V;
-fun appreciate_V2 : V2;
-fun appreciation_N : N;
-fun appreciative_A : A;
-fun apprehend_V2 : V2;
-fun apprehensible_A : A;
-fun apprehension_N : N;
-fun apprehensive_A : A;
-fun apprentice_N : N;
-fun apprentice_V2 : V2;
-fun apprenticeship_N : N;
-fun apprise_V2 : V2;
-fun appro_N : N;
-fun approach_N : N;
-fun approach_V : V;
-fun approach_V2 : V2;
-fun approachable_A : A;
-fun approbation_N : N;
-fun appropriate_A : A;
-fun appropriate_V2 : V2;
-fun appropriation_N : N;
-fun approval_N : N;
-fun approve_V : V;
-fun approve_V2 : V2;
-fun approvingly_Adv : Adv;
-fun approx_PN : PN;
-fun approximate_A : A;
-fun approximate_V : V;
-fun approximate_V2 : V2;
-fun approximation_N : N;
-fun appurtenance_N : N;
-fun apr_PN : PN;
-fun apricot_N : N;
-fun april_N : N;
-fun april_PN : PN;
-fun apron_N : N;
-fun apropos_A : A;
-fun apropos_Adv : Adv;
-fun apres_ski_A : A;
-fun apse_N : N;
-fun apt_A : A;
-fun aptitude_N : N;
-fun aptness_N : N;
-fun aqualung_N : N;
-fun aquamarine_N : N;
-fun aquanaut_N : N;
-fun aquaplane_N : N;
-fun aquaplane_V : V;
-fun aquarium_N : N;
-fun aquarius_PN : PN;
-fun aquatic_A : A;
-fun aquatint_N : N;
-fun aquavit_N : N;
-fun aqueduct_N : N;
-fun aqueous_A : A;
-fun aquiline_A : A;
-fun arab_N : N;
-fun arabesque_N : N;
-fun arabian_A : A;
-fun arabian_N : N;
-fun arabic_A : A;
-fun arabic_N : N;
-fun arabist_N : N;
-fun arable_A : A;
-fun arachnid_N : N;
-fun arbiter_N : N;
-fun arbitrament_N : N;
-fun arbitrary_A : A;
-fun arbitrate_V : V;
-fun arbitrate_V2 : V2;
-fun arbitration_N : N;
-fun arbitrator_N : N;
-fun arboreal_A : A;
-fun arbour_N : N;
-fun arbroath_PN : PN;
-fun arc_N : N;
-fun arc_lamp_N : N;
-fun arc_light_N : N;
-fun arcade_N : N;
-fun arcadian_A : A;
-fun arcadian_N : N;
-fun arcane_A : A;
-fun arch_A : A;
-fun arch_N : N;
-fun arch_V : V;
-fun arch_V2 : V2;
-fun archaeological_A : A;
-fun archaeologist_N : N;
-fun archaeology_N : N;
-fun archaic_A : A;
-fun archaism_N : N;
-fun archangel_N : N;
-fun archbishop_N : N;
-fun archbishopric_N : N;
-fun archdeacon_N : N;
-fun archdeaconry_N : N;
-fun archdiocese_N : N;
-fun archduke_N : N;
-fun archeology_N : N;
-fun archer_N : N;
-fun archery_N : N;
-fun archetypal_A : A;
-fun archetype_N : N;
-fun archimandrite_N : N;
-fun archipelago_N : N;
-fun architect_N : N;
-fun architectural_A : A;
-fun architecture_N : N;
-fun archivist_N : N;
-fun archway_N : N;
-fun arctic_A : A;
-fun ardent_A : A;
-fun ardour_N : N;
-fun ardrossan_PN : PN;
-fun arduous_A : A;
-fun are_N : N;
-fun area_N : N;
-fun areca_N : N;
-fun arena_N : N;
-fun argent_A : A;
-fun argent_N : N;
-fun argentina_PN : PN;
-fun argentine_PN : PN;
-fun argentinian_A : A;
-fun argentinian_N : N;
-fun argon_N : N;
-fun argonaut_N : N;
-fun argosy_N : N;
-fun argot_N : N;
-fun arguable_A : A;
-fun argue_V : V;
-fun argue_V2 : V2;
-fun argument_N : N;
-fun argumentation_N : N;
-fun argumentative_A : A;
-fun argus_N : N;
-fun argus_eyed_A : A;
-fun aria_N : N;
-fun arid_A : A;
-fun aridity_N : N;
-fun aries_PN : PN;
-fun aright_Adv : Adv;
-fun arise_V : V;
-fun aristocracy_N : N;
-fun aristocrat_N : N;
-fun aristocratic_A : A;
-fun aristocratically_Adv : Adv;
-fun arithmetic_N : N;
-fun arithmetical_A : A;
-fun arithmetician_N : N;
-fun arizona_PN : PN;
-fun ark_N : N;
-fun arkansas_PN : PN;
-fun arm_N : N;
-fun arm_V : V;
-fun arm_V2 : V2;
-fun arm_hole_N : N;
-fun armada_N : N;
-fun armadale_PN : PN;
-fun armadillo_N : N;
-fun armageddon_PN : PN;
-fun armagh_PN : PN;
-fun armament_N : N;
-fun armature_N : N;
-fun armband_N : N;
-fun armchair_N : N;
-fun armful_N : N;
-fun armistice_N : N;
-fun armlet_N : N;
-fun armoire_N : N;
-fun armorial_A : A;
-fun armour_N : N;
-fun armour_plate_N : N;
-fun armoured_A : A;
-fun armourer_N : N;
-fun armoury_N : N;
-fun armpit_N : N;
-fun arms_race_N : N;
-fun arms_runner_N : N;
-fun army_N : N;
-fun arnhem_PN : PN;
-fun arnica_N : N;
-fun arnold_PN : PN;
-fun aroma_N : N;
-fun aromatic_A : A;
-fun around_Adv : Adv;
-fun arouse_V2 : V2;
-fun arpeggio_N : N;
-fun arquebus_N : N;
-fun arr_PN : PN;
-fun arrack_N : N;
-fun arraign_V2 : V2;
-fun arraignment_N : N;
-fun arrange_V : V;
-fun arrange_V2 : V2;
-fun arrangement_N : N;
-fun arrant_A : A;
-fun arras_N : N;
-fun array_N : N;
-fun array_V2 : V2;
-fun arrest_N : N;
-fun arrest_V2 : V2;
-fun arrester_N : N;
-fun arresting_A : A;
-fun arrival_N : N;
-fun arrive_V : V;
-fun arriere_pensee_N : N;
-fun arrogance_N : N;
-fun arrogant_A : A;
-fun arrogate_V2 : V2;
-fun arrow_N : N;
-fun arrowhead_N : N;
-fun arrowroot_N : N;
-fun arse_N : N;
-fun arsehole_N : N;
-fun arsenal_N : N;
-fun arsenic_N : N;
-fun arson_N : N;
-fun art_N : N;
-fun art_PN : PN;
-fun artefact_N : N;
-fun arterial_A : A;
-fun arteriosclerosis_N : N;
-fun artery_N : N;
-fun artesian_A : A;
-fun artful_A : A;
-fun artfulness_N : N;
-fun arthritic_A : A;
-fun arthritis_N : N;
-fun arthur_PN : PN;
-fun artichoke_N : N;
-fun article_N : N;
-fun article_V2 : V2;
-fun articulate_A : A;
-fun articulate_V : V;
-fun articulate_V2 : V2;
-fun articulation_N : N;
-fun artie_PN : PN;
-fun artifact_N : N;
-fun artifice_N : N;
-fun artificer_N : N;
-fun artificial_A : A;
-fun artillery_N : N;
-fun artisan_N : N;
-fun artist_N : N;
-fun artiste_N : N;
-fun artistic_A : A;
-fun artistically_Adv : Adv;
-fun artistry_N : N;
-fun artless_A : A;
-fun artlessness_N : N;
-fun arty_A : A;
-fun arty_crafty_A : A;
-fun arum_N : N;
-fun aryan_A : A;
-fun aryan_N : N;
-fun arete_N : N;
-fun asap_PN : PN;
-fun asbestos_N : N;
-fun ascend_V : V;
-fun ascend_V2 : V2;
-fun ascendancy_N : N;
-fun ascendant_N : N;
-fun ascendency_N : N;
-fun ascendent_N : N;
-fun ascension_N : N;
-fun ascent_N : N;
-fun ascertain_V2 : V2;
-fun ascertainable_A : A;
-fun ascetic_A : A;
-fun ascetic_N : N;
-fun ascetically_Adv : Adv;
-fun asceticism_N : N;
-fun ascorbic_A : A;
-fun ascot_PN : PN;
-fun ascribable_A : A;
-fun ascribe_V2 : V2;
-fun ascription_N : N;
-fun asdic_N : N;
-fun asepsis_N : N;
-fun aseptic_A : A;
-fun asexual_A : A;
-fun asexuality_N : N;
-fun ash_N : N;
-fun ash_bin_N : N;
-fun ash_can_N : N;
-fun ash_key_N : N;
-fun ash_pan_N : N;
-fun ashamed_A : A;
-fun ashbourne_PN : PN;
-fun ashby_PN : PN;
-fun ashby_de_la_zouch_PN : PN;
-fun ashby_woulds_PN : PN;
-fun ashen_A : A;
-fun ashford_PN : PN;
-fun ashington_PN : PN;
-fun ashore_Adv : Adv;
-fun ashton_in_makerfield_PN : PN;
-fun ashton_under_lyne_PN : PN;
-fun ashtray_N : N;
-fun ashy_A : A;
-fun asian_A : A;
-fun asian_N : N;
-fun asiatic_A : A;
-fun asiatic_N : N;
-fun aside_Adv : Adv;
-fun aside_N : N;
-fun asinine_A : A;
-fun ask_V : V;
-fun ask_V2 : V2;
-fun askance_Adv : Adv;
-fun askern_PN : PN;
-fun askew_A : A;
-fun askew_Adv : Adv;
-fun asking_N : N;
-fun aslant_Adv : Adv;
-fun asleep_A : A;
-fun asleep_Adv : Adv;
-fun asp_N : N;
-fun asparagus_N : N;
-fun aspect_N : N;
-fun aspectual_A : A;
-fun aspen_N : N;
-fun asperity_N : N;
-fun asperse_V2 : V2;
-fun aspersion_N : N;
-fun asphalt_N : N;
-fun asphalt_V2 : V2;
-fun asphodel_N : N;
-fun asphyxia_N : N;
-fun asphyxiate_V2 : V2;
-fun asphyxiation_N : N;
-fun aspic_N : N;
-fun aspidistra_N : N;
-fun aspirant_N : N;
-fun aspirate_N : N;
-fun aspirate_V2 : V2;
-fun aspiration_N : N;
-fun aspire_V : V;
-fun aspirin_N : N;
-fun aspull_PN : PN;
-fun ass_N : N;
-fun assagai_N : N;
-fun assail_V2 : V2;
-fun assailable_A : A;
-fun assailant_N : N;
-fun assassin_N : N;
-fun assassinate_V2 : V2;
-fun assassination_N : N;
-fun assault_N : N;
-fun assault_V2 : V2;
-fun assay_N : N;
-fun assay_V2 : V2;
-fun assegai_N : N;
-fun assemblage_N : N;
-fun assemble_V : V;
-fun assemble_V2 : V2;
-fun assembly_N : N;
-fun assent_N : N;
-fun assent_V : V;
-fun assert_V2 : V2;
-fun assertion_N : N;
-fun assertive_A : A;
-fun assess_V2 : V2;
-fun assessment_N : N;
-fun assessor_N : N;
-fun asset_N : N;
-fun asseverate_V2 : V2;
-fun asseveration_N : N;
-fun asshole_N : N;
-fun assiduity_N : N;
-fun assiduous_A : A;
-fun assign_V2 : V2;
-fun assignable_A : A;
-fun assignation_N : N;
-fun assignment_N : N;
-fun assimilate_V : V;
-fun assimilate_V2 : V2;
-fun assimilation_N : N;
-fun assist_V : V;
-fun assist_V2 : V2;
-fun assistance_N : N;
-fun assistant_N : N;
-fun assize_N : N;
-fun assoc_N : N;
-fun associate_A : A;
-fun associate_N : N;
-fun associate_V : V;
-fun associate_V2 : V2;
-fun association_N : N;
-fun assonance_N : N;
-fun assorted_A : A;
-fun assortment_N : N;
-fun asst_N : N;
-fun assuage_V2 : V2;
-fun assume_V2 : V2;
-fun assumption_N : N;
-fun assurance_N : N;
-fun assure_V2 : V2;
-fun assured_A : A;
-fun assuredness_N : N;
-fun aster_N : N;
-fun asterisk_N : N;
-fun astern_Adv : Adv;
-fun asteroid_N : N;
-fun asthma_N : N;
-fun asthmatic_A : A;
-fun astigmatic_A : A;
-fun astigmatism_N : N;
-fun astir_A : A;
-fun astir_Adv : Adv;
-fun aston_PN : PN;
-fun astonish_V2 : V2;
-fun astonishing_A : A;
-fun astonishment_N : N;
-fun astound_V2 : V2;
-fun astrakhan_N : N;
-fun astral_A : A;
-fun astray_A : A;
-fun astray_Adv : Adv;
-fun astride_A : A;
-fun astride_Adv : Adv;
-fun astringency_N : N;
-fun astringent_A : A;
-fun astringent_N : N;
-fun astrodome_N : N;
-fun astrolabe_N : N;
-fun astrologer_N : N;
-fun astrological_A : A;
-fun astrology_N : N;
-fun astronaut_N : N;
-fun astronautics_N : N;
-fun astronomer_N : N;
-fun astronomical_A : A;
-fun astronomy_N : N;
-fun astrophysics_N : N;
-fun astute_A : A;
-fun astuteness_N : N;
-fun asunder_Adv : Adv;
-fun asylum_N : N;
-fun asymmetric_A : A;
-fun asymmetrical_A : A;
-fun asymmetry_N : N;
-fun asymptote_N : N;
-fun asymptotic_A : A;
-fun asymptotically_Adv : Adv;
-fun at_home_N : N;
-fun atabrine_N : N;
-fun atavism_N : N;
-fun atavistic_A : A;
-fun atelier_N : N;
-fun atheism_N : N;
-fun atheist_N : N;
-fun atheistic_A : A;
-fun athenian_A : A;
-fun athenian_N : N;
-fun athens_PN : PN;
-fun atherstone_PN : PN;
-fun athirst_A : A;
-fun athlete_N : N;
-fun athletic_A : A;
-fun athletics_N : N;
-fun athlone_PN : PN;
-fun athwart_Adv : Adv;
-fun atlanta_PN : PN;
-fun atlantic_PN : PN;
-fun atlas_N : N;
-fun atmosphere_N : N;
-fun atmospheric_A : A;
-fun atmospherics_N : N;
-fun atoll_N : N;
-fun atom_N : N;
-fun atomic_A : A;
-fun atomize_V2 : V2;
-fun atomizer_N : N;
-fun atonal_A : A;
-fun atonality_N : N;
-fun atone_V : V;
-fun atonement_N : N;
-fun atop_Adv : Adv;
-fun atrabilious_A : A;
-fun atrocious_A : A;
-fun atrocity_N : N;
-fun atrophy_N : N;
-fun atrophy_V : V;
-fun atrophy_V2 : V2;
-fun attach_V : V;
-fun attach_V2 : V2;
-fun attachment_N : N;
-fun attache_N : N;
-fun attack_N : N;
-fun attack_V2 : V2;
-fun attacker_N : N;
-fun attain_V : V;
-fun attain_V2 : V2;
-fun attainable_A : A;
-fun attainder_N : N;
-fun attainment_N : N;
-fun attar_N : N;
-fun attempt_N : N;
-fun attempt_V2 : V2;
-fun attend_V : V;
-fun attend_V2 : V2;
-fun attendance_N : N;
-fun attendant_A : A;
-fun attendant_N : N;
-fun attention_N : N;
-fun attentive_A : A;
-fun attentiveness_N : N;
-fun attenuate_V2 : V2;
-fun attenuation_N : N;
-fun attest_V : V;
-fun attest_V2 : V2;
-fun attic_A : A;
-fun attic_N : N;
-fun attire_N : N;
-fun attire_V2 : V2;
-fun attitude_N : N;
-fun attitudinize_V : V;
-fun attorney_N : N;
-fun attract_V2 : V2;
-fun attraction_N : N;
-fun attractive_A : A;
-fun attributable_A : A;
-fun attribute_N : N;
-fun attribute_V2 : V2;
-fun attribution_N : N;
-fun attributive_A : A;
-fun attrition_N : N;
-fun attune_V2 : V2;
-fun atypical_A : A;
-fun au_fait_A : A;
-fun au_fond_Adv : Adv;
-fun au_pair_N : N;
-fun aubergine_N : N;
-fun aubrietia_N : N;
-fun auburn_A : A;
-fun auckland_PN : PN;
-fun auction_N : N;
-fun auction_V2 : V2;
-fun auctioneer_N : N;
-fun audacious_A : A;
-fun audacity_N : N;
-fun audibility_N : N;
-fun audible_A : A;
-fun audience_N : N;
-fun audio_lingual_A : A;
-fun audit_N : N;
-fun audit_V2 : V2;
-fun audition_N : N;
-fun audition_V2 : V2;
-fun auditor_N : N;
-fun auditorium_N : N;
-fun auditory_A : A;
-fun audley_PN : PN;
-fun audrey_PN : PN;
-fun aug_PN : PN;
-fun auger_N : N;
-fun aught_N : N;
-fun augment_V : V;
-fun augment_V2 : V2;
-fun augmentation_N : N;
-fun augsburg_PN : PN;
-fun augur_N : N;
-fun augur_V : V;
-fun augur_V2 : V2;
-fun augury_N : N;
-fun august_A : A;
-fun august_N : N;
-fun august_PN : PN;
-fun augustan_A : A;
-fun auk_N : N;
-fun auld_lang_syne_N : N;
-fun aunt_N : N;
-fun auntie_N : N;
-fun aunty_N : N;
-fun aura_N : N;
-fun aural_A : A;
-fun aureole_N : N;
-fun auricle_N : N;
-fun auricular_A : A;
-fun auriferous_A : A;
-fun aurora_N : N;
-fun auspicious_A : A;
-fun aussie_N : N;
-fun austere_A : A;
-fun austerity_N : N;
-fun australia_PN : PN;
-fun australian_A : A;
-fun australian_N : N;
-fun austria_PN : PN;
-fun austrian_A : A;
-fun austrian_N : N;
-fun autarchy_N : N;
-fun autarky_N : N;
-fun authentic_A : A;
-fun authentically_Adv : Adv;
-fun authenticate_V2 : V2;
-fun authentication_N : N;
-fun authenticity_N : N;
-fun author_N : N;
-fun authoress_N : N;
-fun authoritarian_A : A;
-fun authoritarian_N : N;
-fun authoritarianism_N : N;
-fun authoritative_A : A;
-fun authority_N : N;
-fun authorization_N : N;
-fun authorize_V2 : V2;
-fun authorship_N : N;
-fun autism_N : N;
-fun autistic_A : A;
-fun auto_N : N;
-fun auto_changer_N : N;
-fun auto_da_fe_N : N;
-fun autobahn_N : N;
-fun autobiographic_A : A;
-fun autobiographical_A : A;
-fun autobiography_N : N;
-fun autocracy_N : N;
-fun autocrat_N : N;
-fun autocratic_A : A;
-fun autocratically_Adv : Adv;
-fun autogiro_N : N;
-fun autograph_N : N;
-fun autograph_V2 : V2;
-fun autogyro_N : N;
-fun automat_N : N;
-fun automate_V2 : V2;
-fun automatic_A : A;
-fun automatic_N : N;
-fun automatically_Adv : Adv;
-fun automation_N : N;
-fun automaton_N : N;
-fun automobile_N : N;
-fun autonomous_A : A;
-fun autonomy_N : N;
-fun autopsy_N : N;
-fun autostrada_N : N;
-fun autumn_N : N;
-fun autumnal_A : A;
-fun auxiliary_A : A;
-fun auxiliary_N : N;
-fun avail_N : N;
-fun avail_V : V;
-fun avail_V2 : V2;
-fun availability_N : N;
-fun available_A : A;
-fun avalanche_N : N;
-fun avant_garde_N : N;
-fun avarice_N : N;
-fun avaricious_A : A;
-fun avatar_N : N;
-fun ave_PN : PN;
-fun aveley_PN : PN;
-fun avenge_V2 : V2;
-fun avenger_N : N;
-fun avenue_N : N;
-fun aver_V2 : V2;
-fun average_A : A;
-fun average_N : N;
-fun average_V : V;
-fun average_V2 : V2;
-fun averse_A : A;
-fun aversion_N : N;
-fun avert_V2 : V2;
-fun aviary_N : N;
-fun aviation_N : N;
-fun aviator_N : N;
-fun avid_A : A;
-fun avidity_N : N;
-fun avignon_PN : PN;
-fun avocado_N : N;
-fun avocation_N : N;
-fun avoid_V2 : V2;
-fun avoidable_A : A;
-fun avoidance_N : N;
-fun avoirdupois_N : N;
-fun avon_PN : PN;
-fun avouch_V : V;
-fun avouch_V2 : V2;
-fun avow_V2 : V2;
-fun avowal_N : N;
-fun avowedly_Adv : Adv;
-fun avuncular_A : A;
-fun await_V2 : V2;
-fun awake_A : A;
-fun awake_V : V;
-fun awaken_V2 : V2;
-fun awakening_N : N;
-fun award_N : N;
-fun award_V2 : V2;
-fun aware_A : A;
-fun awareness_N : N;
-fun awash_A : A;
-fun away_A : A;
-fun away_Adv : Adv;
-fun awe_N : N;
-fun awe_V2 : V2;
-fun awe_inspiring_A : A;
-fun awe_stricken_A : A;
-fun awe_struck_A : A;
-fun aweigh_Adv : Adv;
-fun awesome_A : A;
-fun awful_A : A;
-fun awhile_Adv : Adv;
-fun awkward_A : A;
-fun awkwardness_N : N;
-fun awl_N : N;
-fun awning_N : N;
-fun awol_PN : PN;
-fun awry_A : A;
-fun awry_Adv : Adv;
-fun ax_N : N;
-fun ax_V2 : V2;
-fun axe_N : N;
-fun axe_V2 : V2;
-fun axiom_N : N;
-fun axiomatic_A : A;
-fun axiomatically_Adv : Adv;
-fun axis_N : N;
-fun axle_N : N;
-fun ay_Adv : Adv;
-fun ayah_N : N;
-fun aycliffe_PN : PN;
-fun aye_Adv : Adv;
-fun aylesbury_PN : PN;
-fun aylesford_PN : PN;
-fun ayr_PN : PN;
-fun azalea_N : N;
-fun azimuth_N : N;
-fun azure_A : A;
-fun azure_N : N;
-fun b_ed_N : N;
-fun ba_N : N;
-fun baa_N : N;
-fun baa_V : V;
-fun baa_lamb_N : N;
-fun baas_N : N;
-fun babble_N : N;
-fun babble_V : V;
-fun babble_V2 : V2;
-fun babbler_N : N;
-fun babe_N : N;
-fun babel_N : N;
-fun baboo_N : N;
-fun baboon_N : N;
-fun babs_PN : PN;
-fun babu_N : N;
-fun baby_N : N;
-fun baby_V2 : V2;
-fun baby_faced_A : A;
-fun baby_farmer_N : N;
-fun baby_minder_N : N;
-fun baby_talk_N : N;
-fun babyhood_N : N;
-fun babyish_A : A;
-fun babysit_V : V;
-fun babysitter_N : N;
-fun babysitting_N : N;
-fun baccalaureate_N : N;
-fun baccarat_N : N;
-fun bacchanal_A : A;
-fun bacchanal_N : N;
-fun bacchanalian_A : A;
-fun baccy_N : N;
-fun bachelor_N : N;
-fun bacillus_N : N;
-fun back_Adv : Adv;
-fun back_N : N;
-fun back_V : V;
-fun back_V2 : V2;
-fun back_breaking_A : A;
-fun back_down_N : N;
-fun back_formation_N : N;
-fun back_up_N : N;
-fun backache_N : N;
-fun backband_N : N;
-fun backbench_N : N;
-fun backbencher_N : N;
-fun backbite_V : V;
-fun backbite_V2 : V2;
-fun backbiter_N : N;
-fun backboard_N : N;
-fun backbone_N : N;
-fun backchat_N : N;
-fun backcloth_N : N;
-fun backdate_V2 : V2;
-fun backdoor_N : N;
-fun backdrop_N : N;
-fun backer_N : N;
-fun backfire_N : N;
-fun backfire_V : V;
-fun backgammon_N : N;
-fun background_N : N;
-fun backhand_A : A;
-fun backhanded_A : A;
-fun backing_N : N;
-fun backlash_N : N;
-fun backless_A : A;
-fun backlog_N : N;
-fun backmost_A : A;
-fun backpedal_V : V;
-fun backroom_N : N;
-fun backscratcher_N : N;
-fun backseat_N : N;
-fun backsheesh_N : N;
-fun backside_N : N;
-fun backslide_V : V;
-fun backspace_V : V;
-fun backstage_Adv : Adv;
-fun backstair_A : A;
-fun backstroke_N : N;
-fun backsword_N : N;
-fun backtalk_N : N;
-fun backward_A : A;
-fun backward_Adv : Adv;
-fun backwards_A : A;
-fun backwards_Adv : Adv;
-fun backwash_N : N;
-fun backwater_N : N;
-fun backwoodsman_N : N;
-fun backworth_PN : PN;
-fun bacon_N : N;
-fun bacterial_A : A;
-fun bacteriologist_N : N;
-fun bacteriology_N : N;
-fun bacterium_N : N;
-fun bacup_PN : PN;
-fun bad_A : A;
-fun bad_N : N;
-fun badajoz_PN : PN;
-fun badalona_PN : PN;
-fun badge_N : N;
-fun badger_N : N;
-fun badger_V2 : V2;
-fun badinage_N : N;
-fun badly_behaved_A : A;
-fun badminton_N : N;
-fun badness_N : N;
-fun baffle_N : N;
-fun baffle_V2 : V2;
-fun bag_N : N;
-fun bag_V : V;
-fun bag_V2 : V2;
-fun bagatelle_N : N;
-fun baggage_N : N;
-fun baggy_A : A;
-fun baghdad_PN : PN;
-fun bagnio_N : N;
-fun bagpipe_N : N;
-fun bahamas_PN : PN;
-fun bahamian_A : A;
-fun bahamian_N : N;
-fun bahasa_N : N;
-fun bahrain_PN : PN;
-fun bahraini_A : A;
-fun bahraini_N : N;
-fun bail_N : N;
-fun bail_V : V;
-fun bail_V2 : V2;
-fun bailee_N : N;
-fun bailey_N : N;
-fun bailey_PN : PN;
-fun bailiff_N : N;
-fun bailment_N : N;
-fun bailor_N : N;
-fun bairn_N : N;
-fun bait_N : N;
-fun bait_V : V;
-fun bait_V2 : V2;
-fun baize_N : N;
-fun bake_V : V;
-fun bake_V2 : V2;
-fun bakelite_N : N;
-fun baker_N : N;
-fun bakery_N : N;
-fun baking_hot_A : A;
-fun baking_powder_N : N;
-fun baksheesh_N : N;
-fun baku_PN : PN;
-fun balaclava_N : N;
-fun balalaika_N : N;
-fun balance_N : N;
-fun balance_V : V;
-fun balance_V2 : V2;
-fun balance_sheet_N : N;
-fun balance_wheel_N : N;
-fun balconied_A : A;
-fun balcony_N : N;
-fun bald_A : A;
-fun bald_head_N : N;
-fun bald_pate_N : N;
-fun balderdash_N : N;
-fun baldness_N : N;
-fun baldock_PN : PN;
-fun baldric_N : N;
-fun bale_N : N;
-fun bale_V2 : V2;
-fun baleful_A : A;
-fun balk_N : N;
-fun balk_V : V;
-fun balk_V2 : V2;
-fun ball_N : N;
-fun ball_V : V;
-fun ball_V2 : V2;
-fun ball_cartridge_N : N;
-fun ball_dress_N : N;
-fun ballad_N : N;
-fun ballade_N : N;
-fun ballast_N : N;
-fun ballast_V2 : V2;
-fun ballbearing_N : N;
-fun ballcock_N : N;
-fun ballerina_N : N;
-fun ballet_N : N;
-fun ballet_dancer_N : N;
-fun ballet_skirt_N : N;
-fun ballistic_A : A;
-fun ballistics_N : N;
-fun ballock_N : N;
-fun balloon_N : N;
-fun balloon_V : V;
-fun balloonist_N : N;
-fun ballot_N : N;
-fun ballot_V : V;
-fun ballot_box_N : N;
-fun ballpen_N : N;
-fun ballpoint_N : N;
-fun ballpoint_pen_N : N;
-fun ballroom_N : N;
-fun balls_up_N : N;
-fun bally_A : A;
-fun bally_Adv : Adv;
-fun ballyhoo_N : N;
-fun balm_N : N;
-fun balmy_A : A;
-fun baloney_N : N;
-fun balsa_N : N;
-fun balsam_N : N;
-fun baltimore_PN : PN;
-fun baluster_N : N;
-fun balustrade_N : N;
-fun bambino_N : N;
-fun bamboo_N : N;
-fun bamboozle_V2 : V2;
-fun ban_N : N;
-fun ban_V2 : V2;
-fun banal_A : A;
-fun banality_N : N;
-fun banana_N : N;
-fun banbury_PN : PN;
-fun band_N : N;
-fun band_V : V;
-fun band_V2 : V2;
-fun band_saw_N : N;
-fun bandage_N : N;
-fun bandage_V2 : V2;
-fun bandanna_N : N;
-fun bandbox_N : N;
-fun bandeau_N : N;
-fun bandit_N : N;
-fun banditry_N : N;
-fun bandleader_N : N;
-fun bandmaster_N : N;
-fun bandoleer_N : N;
-fun bandolier_N : N;
-fun bandsman_N : N;
-fun bandstand_N : N;
-fun bandung_PN : PN;
-fun bandwagon_N : N;
-fun bandy_A : A;
-fun bandy_V2 : V2;
-fun bandy_legged_A : A;
-fun bane_N : N;
-fun baneful_A : A;
-fun bang_Adv : Adv;
-fun bang_N : N;
-fun bang_V : V;
-fun bang_V2 : V2;
-fun bangalore_PN : PN;
-fun banger_N : N;
-fun bangkok_PN : PN;
-fun bangladesh_PN : PN;
-fun bangladeshi_A : A;
-fun bangladeshi_N : N;
-fun bangle_N : N;
-fun bangor_PN : PN;
-fun banian_N : N;
-fun banian_tree_N : N;
-fun banish_V2 : V2;
-fun banishment_N : N;
-fun banister_N : N;
-fun banjo_N : N;
-fun bank_N : N;
-fun bank_V : V;
-fun bank_V2 : V2;
-fun bank_bill_N : N;
-fun bank_book_N : N;
-fun bank_draft_N : N;
-fun bank_rate_N : N;
-fun banker_N : N;
-fun banking_N : N;
-fun banknote_N : N;
-fun bankroll_N : N;
-fun bankrupt_A : A;
-fun bankrupt_N : N;
-fun bankrupt_V2 : V2;
-fun bankruptcy_N : N;
-fun banner_N : N;
-fun banning_order_N : N;
-fun bannister_N : N;
-fun bannock_N : N;
-fun bannockburn_PN : PN;
-fun banquet_N : N;
-fun banquet_V : V;
-fun banquet_V2 : V2;
-fun banshee_N : N;
-fun bant_V : V;
-fun bantam_N : N;
-fun banter_N : N;
-fun banter_V : V;
-fun banter_V2 : V2;
-fun bantering_A : A;
-fun banting_N : N;
-fun bantry_PN : PN;
-fun bantu_A : A;
-fun bantu_N : N;
-fun banyan_N : N;
-fun baobab_N : N;
-fun baptism_N : N;
-fun baptismal_A : A;
-fun baptist_A : A;
-fun baptist_N : N;
-fun baptize_V2 : V2;
-fun bar_N : N;
-fun bar_V2 : V2;
-fun baracaldo_PN : PN;
-fun barb_N : N;
-fun barbadian_A : A;
-fun barbadian_N : N;
-fun barbados_PN : PN;
-fun barbara_PN : PN;
-fun barbarian_A : A;
-fun barbarian_N : N;
-fun barbaric_A : A;
-fun barbarism_N : N;
-fun barbarity_N : N;
-fun barbarize_V2 : V2;
-fun barbarous_A : A;
-fun barbecue_N : N;
-fun barbecue_V2 : V2;
-fun barbed_A : A;
-fun barbel_N : N;
-fun barber_N : N;
-fun barbican_N : N;
-fun barbitone_N : N;
-fun barbiturate_N : N;
-fun barcarole_N : N;
-fun barcarolle_N : N;
-fun barcelona_PN : PN;
-fun bard_N : N;
-fun bardic_A : A;
-fun bardolatry_N : N;
-fun bare_A : A;
-fun bare_V2 : V2;
-fun bareback_Adv : Adv;
-fun barebacked_A : A;
-fun barebacked_Adv : Adv;
-fun barefaced_A : A;
-fun barefoot_Adv : Adv;
-fun barefooted_A : A;
-fun barefooted_Adv : Adv;
-fun bareheaded_A : A;
-fun barelegged_A : A;
-fun bareness_N : N;
-fun bargain_N : N;
-fun bargain_V : V;
-fun bargain_V2 : V2;
-fun barge_N : N;
-fun barge_V : V;
-fun bargee_N : N;
-fun bargepole_N : N;
-fun bargoed_PN : PN;
-fun bari_PN : PN;
-fun baritone_N : N;
-fun barium_N : N;
-fun bark_N : N;
-fun bark_V : V;
-fun bark_V2 : V2;
-fun barker_N : N;
-fun barking_PN : PN;
-fun barley_N : N;
-fun barley_sugar_N : N;
-fun barley_water_N : N;
-fun barleycorn_N : N;
-fun barm_N : N;
-fun barmaid_N : N;
-fun barman_N : N;
-fun barmy_A : A;
-fun barn_N : N;
-fun barn_door_N : N;
-fun barnacle_N : N;
-fun barnard_castle_PN : PN;
-fun barnet_PN : PN;
-fun barnoldswick_PN : PN;
-fun barnsley_PN : PN;
-fun barnstaple_PN : PN;
-fun barnstorm_V : V;
-fun barnstormer_N : N;
-fun barnyard_N : N;
-fun barometer_N : N;
-fun barometric_A : A;
-fun baron_N : N;
-fun baronage_N : N;
-fun baroness_N : N;
-fun baronet_N : N;
-fun baronetcy_N : N;
-fun baronial_A : A;
-fun barony_N : N;
-fun baroque_A : A;
-fun baroque_N : N;
-fun barouche_N : N;
-fun barque_N : N;
-fun barrack_N : N;
-fun barrack_V : V;
-fun barrack_V2 : V2;
-fun barracking_N : N;
-fun barracuda_N : N;
-fun barrage_N : N;
-fun barranquilla_PN : PN;
-fun barrel_N : N;
-fun barrel_V2 : V2;
-fun barrelled_A : A;
-fun barren_A : A;
-fun barrenness_N : N;
-fun barrhead_PN : PN;
-fun barricade_N : N;
-fun barricade_V2 : V2;
-fun barrier_N : N;
-fun barrister_N : N;
-fun barrow_N : N;
-fun barrow_boy_N : N;
-fun barrow_in_furness_PN : PN;
-fun barrow_man_N : N;
-fun barry_PN : PN;
-fun bart_PN : PN;
-fun bartender_N : N;
-fun barter_N : N;
-fun barter_V : V;
-fun barter_V2 : V2;
-fun barterer_N : N;
-fun bartholomew_PN : PN;
-fun barton_upon_humber_PN : PN;
-fun bas_relief_N : N;
-fun basal_A : A;
-fun basalt_N : N;
-fun bascule_N : N;
-fun base_A : A;
-fun base_N : N;
-fun base_V2 : V2;
-fun baseball_N : N;
-fun baseboard_N : N;
-fun basel_PN : PN;
-fun baseless_A : A;
-fun basement_N : N;
-fun bash_N : N;
-fun bash_V2 : V2;
-fun bashful_A : A;
-fun basic_A : A;
-fun basically_Adv : Adv;
-fun basil_N : N;
-fun basil_PN : PN;
-fun basildon_PN : PN;
-fun basilica_N : N;
-fun basilisk_N : N;
-fun basin_N : N;
-fun basingstoke_PN : PN;
-fun basis_N : N;
-fun bask_V : V;
-fun basket_N : N;
-fun basketball_N : N;
-fun basketry_N : N;
-fun bass_A : A;
-fun bass_N : N;
-fun bassinet_N : N;
-fun bassoon_N : N;
-fun bast_N : N;
-fun bastard_N : N;
-fun bastardize_V2 : V2;
-fun bastardy_N : N;
-fun baste_V2 : V2;
-fun bastinado_N : N;
-fun bastinado_V2 : V2;
-fun bastion_N : N;
-fun bat_N : N;
-fun bat_V : V;
-fun bat_V2 : V2;
-fun batch_N : N;
-fun bate_V2 : V2;
-fun bath_N : N;
-fun bath_PN : PN;
-fun bath_V : V;
-fun bath_V2 : V2;
-fun bath_chair_N : N;
-fun bathe_N : N;
-fun bathe_V : V;
-fun bathe_V2 : V2;
-fun bather_N : N;
-fun bathgate_PN : PN;
-fun bathing_N : N;
-fun bathing_cap_N : N;
-fun bathing_costume_N : N;
-fun bathing_machine_N : N;
-fun bathing_suit_N : N;
-fun bathos_N : N;
-fun bathrobe_N : N;
-fun bathroom_N : N;
-fun bathtub_N : N;
-fun bathysphere_N : N;
-fun batik_N : N;
-fun batiste_N : N;
-fun batley_PN : PN;
-fun batman_N : N;
-fun baton_N : N;
-fun bats_A : A;
-fun batsman_N : N;
-fun battalion_N : N;
-fun batten_N : N;
-fun batten_V : V;
-fun batten_V2 : V2;
-fun batter_N : N;
-fun batter_V : V;
-fun batter_V2 : V2;
-fun battery_N : N;
-fun batting_N : N;
-fun battle_N : N;
-fun battle_V : V;
-fun battle_axe_N : N;
-fun battle_cruiser_N : N;
-fun battledore_N : N;
-fun battledress_N : N;
-fun battlefield_N : N;
-fun battleground_N : N;
-fun battleship_N : N;
-fun battue_N : N;
-fun batty_A : A;
-fun bauble_N : N;
-fun baulk_N : N;
-fun baulk_V : V;
-fun baulk_V2 : V2;
-fun bauxite_N : N;
-fun bawbee_N : N;
-fun bawd_N : N;
-fun bawdily_Adv : Adv;
-fun bawdy_A : A;
-fun bawdy_N : N;
-fun bawl_V : V;
-fun bawl_V2 : V2;
-fun bay_A : A;
-fun bay_N : N;
-fun bay_V : V;
-fun bay_wreath_N : N;
-fun bayonet_N : N;
-fun bayonet_V2 : V2;
-fun bayou_N : N;
-fun bazaar_N : N;
-fun bazooka_N : N;
-fun bbc_PN : PN;
-fun beach_N : N;
-fun beach_V2 : V2;
-fun beachcomber_N : N;
-fun beachhead_N : N;
-fun beachwear_N : N;
-fun beacon_N : N;
-fun beacon_fire_N : N;
-fun beacon_light_N : N;
-fun beaconsfield_PN : PN;
-fun bead_N : N;
-fun beading_N : N;
-fun beadle_N : N;
-fun beady_A : A;
-fun beagle_N : N;
-fun beagling_N : N;
-fun beak_N : N;
-fun beaker_N : N;
-fun beam_N : N;
-fun beam_V : V;
-fun beam_V2 : V2;
-fun bean_N : N;
-fun beanfeast_N : N;
-fun beano_N : N;
-fun beanstalk_N : N;
-fun bear_N : N;
-fun bear_V : V;
-fun bear_V2 : V2;
-fun bearable_A : A;
-fun beard_N : N;
-fun beard_V2 : V2;
-fun bearded_A : A;
-fun beardless_A : A;
-fun bearer_N : N;
-fun bearing_N : N;
-fun bearish_A : A;
-fun bearsden_PN : PN;
-fun bearskin_N : N;
-fun beast_N : N;
-fun beastliness_N : N;
-fun beastly_A : A;
-fun beastly_Adv : Adv;
-fun beat_A : A;
-fun beat_N : N;
-fun beat_V : V;
-fun beat_V2 : V2;
-fun beaten_A : A;
-fun beater_N : N;
-fun beatific_A : A;
-fun beatification_N : N;
-fun beatify_V2 : V2;
-fun beating_N : N;
-fun beatitude_N : N;
-fun beatnik_N : N;
-fun beatrice_PN : PN;
-fun beau_N : N;
-fun beaujolais_N : N;
-fun beaumaris_PN : PN;
-fun beauteous_A : A;
-fun beautician_N : N;
-fun beautiful_A : A;
-fun beautify_V2 : V2;
-fun beauty_N : N;
-fun beauty_parlour_N : N;
-fun beauty_salon_N : N;
-fun beauty_sleep_N : N;
-fun beauty_spot_N : N;
-fun beaver_N : N;
-fun beaver_V : V;
-fun bebington_PN : PN;
-fun becalmed_A : A;
-fun beccles_PN : PN;
-fun beck_N : N;
-fun beckon_V : V;
-fun beckon_V2 : V2;
-fun become_V : V;
-fun become_V2 : V2;
-fun becoming_A : A;
-fun bed_N : N;
-fun bed_V2 : V2;
-fun bedaubed_A : A;
-fun bedbug_N : N;
-fun beddau_PN : PN;
-fun bedded_A : A;
-fun bedding_N : N;
-fun bedecked_A : A;
-fun bedevil_V2 : V2;
-fun bedevilment_N : N;
-fun bedewed_A : A;
-fun bedfellow_N : N;
-fun bedford_PN : PN;
-fun bedfordshire_PN : PN;
-fun bedimmed_A : A;
-fun bedlam_N : N;
-fun bedlington_PN : PN;
-fun bedouin_N : N;
-fun bedpan_N : N;
-fun bedpost_N : N;
-fun bedraggled_A : A;
-fun bedridden_A : A;
-fun bedrock_N : N;
-fun bedroll_N : N;
-fun bedroom_N : N;
-fun bedroomed_A : A;
-fun bedside_N : N;
-fun bedsit_N : N;
-fun bedsitter_N : N;
-fun bedsitting_room_N : N;
-fun bedsore_N : N;
-fun bedspread_N : N;
-fun bedstead_N : N;
-fun bedtime_N : N;
-fun beduin_N : N;
-fun bedwas_PN : PN;
-fun bee_N : N;
-fun beech_N : N;
-fun beef_N : N;
-fun beef_V : V;
-fun beefeater_N : N;
-fun beefsteak_N : N;
-fun beefy_A : A;
-fun beehive_N : N;
-fun beep_N : N;
-fun beer_N : N;
-fun beery_A : A;
-fun beeswax_N : N;
-fun beeswax_V2 : V2;
-fun beet_N : N;
-fun beetle_N : N;
-fun beetle_V : V;
-fun beetle_browed_A : A;
-fun beetroot_N : N;
-fun befall_V : V;
-fun befall_V2 : V2;
-fun befit_V2 : V2;
-fun befitting_A : A;
-fun befogged_A : A;
-fun before_Adv : Adv;
-fun beforehand_A : A;
-fun beforehand_Adv : Adv;
-fun befoul_V2 : V2;
-fun befriend_V2 : V2;
-fun beg_V : V;
-fun beg_V2 : V2;
-fun beget_V2 : V2;
-fun begetter_N : N;
-fun beggar_N : N;
-fun beggar_V2 : V2;
-fun beggarly_A : A;
-fun beggarman_N : N;
-fun beggarwoman_N : N;
-fun beggary_N : N;
-fun begin_V : V;
-fun begin_V2 : V2;
-fun beginner_N : N;
-fun beginning_N : N;
-fun begonia_N : N;
-fun begrimed_A : A;
-fun begrudge_V2 : V2;
-fun beguile_V2 : V2;
-fun begum_N : N;
-fun behalf_N : N;
-fun behave_V : V;
-fun behaved_A : A;
-fun behaviour_N : N;
-fun behaviourism_N : N;
-fun behaviourist_N : N;
-fun behead_V2 : V2;
-fun behest_N : N;
-fun behind_Adv : Adv;
-fun behind_N : N;
-fun behindhand_A : A;
-fun behold_V2 : V2;
-fun beholden_A : A;
-fun beholder_N : N;
-fun behove_V2 : V2;
-fun beige_N : N;
-fun being_N : N;
-fun beirut_PN : PN;
-fun beith_PN : PN;
-fun bejewelled_A : A;
-fun belabour_V2 : V2;
-fun belated_A : A;
-fun belay_N : N;
-fun belay_V2 : V2;
-fun belaying_pin_N : N;
-fun belch_N : N;
-fun belch_V : V;
-fun belch_V2 : V2;
-fun beldam_N : N;
-fun beldame_N : N;
-fun beleaguer_V2 : V2;
-fun belem_PN : PN;
-fun belfast_PN : PN;
-fun belfry_N : N;
-fun belgian_A : A;
-fun belgian_N : N;
-fun belgium_PN : PN;
-fun belgrade_PN : PN;
-fun belie_V2 : V2;
-fun belief_N : N;
-fun believable_A : A;
-fun believe_V : V;
-fun believe_V2 : V2;
-fun believer_N : N;
-fun believing_N : N;
-fun belike_Adv : Adv;
-fun belinda_PN : PN;
-fun belittle_V2 : V2;
-fun bell_N : N;
-fun bell_V2 : V2;
-fun bell_bottomed_A : A;
-fun bell_buoy_N : N;
-fun bell_flower_N : N;
-fun bell_founder_N : N;
-fun bell_foundry_N : N;
-fun bell_metal_N : N;
-fun bell_push_N : N;
-fun bell_ringer_N : N;
-fun bell_tent_N : N;
-fun bella_PN : PN;
-fun belladonna_N : N;
-fun bellboy_N : N;
-fun belle_N : N;
-fun belle_PN : PN;
-fun bellhop_N : N;
-fun bellicose_A : A;
-fun bellied_A : A;
-fun belligerency_N : N;
-fun belligerent_A : A;
-fun belligerent_N : N;
-fun bellow_V : V;
-fun bellow_V2 : V2;
-fun bellshill_PN : PN;
-fun bellwether_N : N;
-fun belly_N : N;
-fun belly_V : V;
-fun belly_V2 : V2;
-fun bellyache_N : N;
-fun bellyache_V : V;
-fun bellyflop_N : N;
-fun bellyful_N : N;
-fun bellyland_V : V;
-fun bellylaugh_N : N;
-fun bellylaugh_V : V;
-fun belo_horizonte_PN : PN;
-fun belong_V : V;
-fun beloved_A : A;
-fun beloved_N : N;
-fun below_Adv : Adv;
-fun belper_PN : PN;
-fun belt_N : N;
-fun belt_V2 : V2;
-fun belting_N : N;
-fun bemoan_V2 : V2;
-fun bemused_A : A;
-fun ben_N : N;
-fun ben_PN : PN;
-fun bench_N : N;
-fun bend_N : N;
-fun bend_V : V;
-fun bend_V2 : V2;
-fun beneath_Adv : Adv;
-fun benedick_N : N;
-fun benedictine_A : A;
-fun benedictine_N : N;
-fun benediction_N : N;
-fun benefaction_N : N;
-fun benefactor_N : N;
-fun benefactress_N : N;
-fun benefice_N : N;
-fun beneficed_A : A;
-fun beneficence_N : N;
-fun beneficent_A : A;
-fun beneficial_A : A;
-fun beneficiary_N : N;
-fun benefit_N : N;
-fun benefit_V : V;
-fun benefit_V2 : V2;
-fun benevolence_N : N;
-fun benevolent_A : A;
-fun bengali_A : A;
-fun bengali_N : N;
-fun benighted_A : A;
-fun benign_A : A;
-fun benignant_A : A;
-fun benignity_N : N;
-fun benin_PN : PN;
-fun beninese_A : A;
-fun beninese_N : N;
-fun benison_N : N;
-fun benjamin_PN : PN;
-fun benny_PN : PN;
-fun bent_A : A;
-fun bent_N : N;
-fun benumbed_A : A;
-fun benzedrine_N : N;
-fun benzene_N : N;
-fun benzine_N : N;
-fun benzol_N : N;
-fun beograd_PN : PN;
-fun bequeath_V2 : V2;
-fun bequest_N : N;
-fun berate_V2 : V2;
-fun bereave_V2 : V2;
-fun bereavement_N : N;
-fun beret_N : N;
-fun berg_N : N;
-fun bergamo_PN : PN;
-fun bergen_PN : PN;
-fun beri_beri_N : N;
-fun berkhamsted_PN : PN;
-fun berkshire_PN : PN;
-fun berlin_PN : PN;
-fun bermuda_PN : PN;
-fun bermudan_A : A;
-fun bermudan_N : N;
-fun bern_PN : PN;
-fun bernard_PN : PN;
-fun bernie_PN : PN;
-fun berry_N : N;
-fun berserk_A : A;
-fun bert_PN : PN;
-fun berth_N : N;
-fun berth_V : V;
-fun berth_V2 : V2;
-fun bertha_PN : PN;
-fun bertie_PN : PN;
-fun berwick_upon_tweed_PN : PN;
-fun beryl_N : N;
-fun beryl_PN : PN;
-fun beseech_V2 : V2;
-fun beseeching_A : A;
-fun beseem_V2 : V2;
-fun beset_V2 : V2;
-fun beshrew_V2 : V2;
-fun besides_Adv : Adv;
-fun besiege_V2 : V2;
-fun besieger_N : N;
-fun besmear_V2 : V2;
-fun besmirch_V2 : V2;
-fun besom_N : N;
-fun besotted_A : A;
-fun bespangled_A : A;
-fun bespattered_A : A;
-fun bespeak_V2 : V2;
-fun bespectacled_A : A;
-fun bess_PN : PN;
-fun bessie_PN : PN;
-fun best_Adv : Adv;
-fun best_V2 : V2;
-fun best_seller_N : N;
-fun bestial_A : A;
-fun bestiality_N : N;
-fun bestiary_N : N;
-fun bestir_V2 : V2;
-fun bestow_V2 : V2;
-fun bestowal_N : N;
-fun bestrew_V2 : V2;
-fun bestride_V2 : V2;
-fun bet_N : N;
-fun bet_V : V;
-fun bet_V2 : V2;
-fun beta_N : N;
-fun betake_V2 : V2;
-fun betel_N : N;
-fun betel_nut_N : N;
-fun bethel_N : N;
-fun bethink_V2 : V2;
-fun bethune_PN : PN;
-fun betide_V2 : V2;
-fun betimes_Adv : Adv;
-fun betoken_V2 : V2;
-fun betray_V2 : V2;
-fun betrayal_N : N;
-fun betrayer_N : N;
-fun betroth_V2 : V2;
-fun betrothal_N : N;
-fun betrothed_N : N;
-fun betsy_PN : PN;
-fun better_Adv : Adv;
-fun better_N : N;
-fun better_V2 : V2;
-fun betterment_N : N;
-fun bettor_N : N;
-fun betty_PN : PN;
-fun between_Adv : Adv;
-fun betwixt_Adv : Adv;
-fun bevel_N : N;
-fun bevel_V2 : V2;
-fun beverage_N : N;
-fun beverley_PN : PN;
-fun bevy_N : N;
-fun bewail_V2 : V2;
-fun beware_V : V;
-fun beware_V2 : V2;
-fun bewdley_PN : PN;
-fun bewilder_V2 : V2;
-fun bewildering_A : A;
-fun bewilderment_N : N;
-fun bewitch_V2 : V2;
-fun bewitching_A : A;
-fun bexhill_PN : PN;
-fun bexley_PN : PN;
-fun bey_N : N;
-fun beyond_Adv : Adv;
-fun bezique_N : N;
-fun bhang_N : N;
-fun bhutan_PN : PN;
-fun bhutani_A : A;
-fun bhutani_N : N;
-fun bias_N : N;
-fun bias_V2 : V2;
-fun bib_N : N;
-fun bib_V : V;
-fun bible_N : N;
-fun biblical_A : A;
-fun bibliographer_N : N;
-fun bibliography_N : N;
-fun bibliophile_N : N;
-fun bibulous_A : A;
-fun bicameral_A : A;
-fun bicarbonate_N : N;
-fun bicentenary_N : N;
-fun bicentennial_A : A;
-fun bicentennial_N : N;
-fun biceps_N : N;
-fun bicester_PN : PN;
-fun bicker_V : V;
-fun bicycle_N : N;
-fun bicycle_V : V;
-fun bid_N : N;
-fun bid_V : V;
-fun bid_V2 : V2;
-fun biddable_A : A;
-fun bidder_N : N;
-fun bidding_N : N;
-fun biddulph_PN : PN;
-fun bide_V2 : V2;
-fun bideford_PN : PN;
-fun bidet_N : N;
-fun bielefeld_PN : PN;
-fun biennial_A : A;
-fun biennial_N : N;
-fun bier_N : N;
-fun biff_N : N;
-fun biff_V2 : V2;
-fun bifocal_A : A;
-fun bifurcate_A : A;
-fun bifurcate_V : V;
-fun bifurcate_V2 : V2;
-fun bifurcated_A : A;
-fun bifurcation_N : N;
-fun big_A : A;
-fun big_boned_A : A;
-fun bigamist_N : N;
-fun bigamous_A : A;
-fun bigamy_N : N;
-fun biggleswade_PN : PN;
-fun bight_N : N;
-fun bigot_N : N;
-fun bigoted_A : A;
-fun bigotry_N : N;
-fun bigwig_N : N;
-fun bijou_A : A;
-fun bijou_N : N;
-fun bike_N : N;
-fun bike_V : V;
-fun bikini_N : N;
-fun bilabial_A : A;
-fun bilabial_N : N;
-fun bilateral_A : A;
-fun bilateralism_N : N;
-fun bilbao_PN : PN;
-fun bilberry_N : N;
-fun bile_N : N;
-fun bile_duct_N : N;
-fun bilge_N : N;
-fun bilge_water_N : N;
-fun bilharzia_N : N;
-fun bilingual_A : A;
-fun bilingual_N : N;
-fun bilious_A : A;
-fun biliousness_N : N;
-fun bilk_V2 : V2;
-fun bill_N : N;
-fun bill_PN : PN;
-fun bill_V : V;
-fun bill_V2 : V2;
-fun bill_poster_N : N;
-fun bill_sticker_N : N;
-fun billboard_N : N;
-fun billericay_PN : PN;
-fun billet_N : N;
-fun billet_V2 : V2;
-fun billet_doux_N : N;
-fun billfold_N : N;
-fun billhook_N : N;
-fun billiard_marker_N : N;
-fun billiard_player_N : N;
-fun billiard_room_N : N;
-fun billiard_table_N : N;
-fun billiards_N : N;
-fun billingsgate_N : N;
-fun billington_PN : PN;
-fun billion_A : A;
-fun billion_N : N;
-fun billionth_A : A;
-fun billionth_N : N;
-fun billow_N : N;
-fun billow_V : V;
-fun billowy_A : A;
-fun billy_N : N;
-fun billy_PN : PN;
-fun billy_goat_N : N;
-fun billy_ho_N : N;
-fun billy_o_N : N;
-fun biltong_N : N;
-fun bimetallic_A : A;
-fun bimetallism_N : N;
-fun bin_N : N;
-fun binary_A : A;
-fun bind_N : N;
-fun bind_V : V;
-fun bind_V2 : V2;
-fun binder_N : N;
-fun bindery_N : N;
-fun binding_A : A;
-fun bindweed_N : N;
-fun bine_N : N;
-fun binge_N : N;
-fun bingley_PN : PN;
-fun bingo_N : N;
-fun binnacle_N : N;
-fun binomial_A : A;
-fun biochemistry_N : N;
-fun biodegradable_A : A;
-fun biograph_N : N;
-fun biographer_N : N;
-fun biographic_A : A;
-fun biographical_A : A;
-fun biography_N : N;
-fun biological_A : A;
-fun biologist_N : N;
-fun biology_N : N;
-fun bioscope_N : N;
-fun bipartisan_A : A;
-fun biped_N : N;
-fun biplane_N : N;
-fun birch_N : N;
-fun birch_V2 : V2;
-fun birch_rod_N : N;
-fun bird's_eye_A : A;
-fun bird_N : N;
-fun bird_fancier_N : N;
-fun birdcage_N : N;
-fun birdlime_N : N;
-fun birdnesting_N : N;
-fun birdwatcher_N : N;
-fun biretta_N : N;
-fun birkenhead_PN : PN;
-fun biro_N : N;
-fun birstall_PN : PN;
-fun birth_N : N;
-fun birth_control_N : N;
-fun birthday_N : N;
-fun birthmark_N : N;
-fun birthplace_N : N;
-fun birthrate_N : N;
-fun birthright_N : N;
-fun birtley_PN : PN;
-fun biscuit_N : N;
-fun bisect_V2 : V2;
-fun bisection_N : N;
-fun bisexual_A : A;
-fun bisexual_N : N;
-fun bisexuality_N : N;
-fun bishop's_cleeve_PN : PN;
-fun bishop's_stortford_PN : PN;
-fun bishop_N : N;
-fun bishop_auckland_PN : PN;
-fun bishopbriggs_PN : PN;
-fun bishopric_N : N;
-fun bismuth_N : N;
-fun bison_N : N;
-fun bistro_N : N;
-fun bit_N : N;
-fun bitch_N : N;
-fun bitch_V : V;
-fun bitchy_A : A;
-fun bite_N : N;
-fun bite_V : V;
-fun bite_V2 : V2;
-fun biting_A : A;
-fun bitter_A : A;
-fun bitter_N : N;
-fun bitter_sweet_A : A;
-fun bittern_N : N;
-fun bitterness_N : N;
-fun bitumen_N : N;
-fun bituminous_A : A;
-fun bivalve_N : N;
-fun bivouac_N : N;
-fun bivouac_V : V;
-fun biz_N : N;
-fun bizarre_A : A;
-fun bizonal_A : A;
-fun blab_V : V;
-fun blab_V2 : V2;
-fun blabber_V : V;
-fun blabber_V2 : V2;
-fun blabbermouth_N : N;
-fun black_A : A;
-fun black_N : N;
-fun black_V2 : V2;
-fun black_beetle_N : N;
-fun black_lead_N : N;
-fun black_lead_V2 : V2;
-fun blackamoor_N : N;
-fun blackball_V2 : V2;
-fun blackberry_N : N;
-fun blackbird_N : N;
-fun blackboard_N : N;
-fun blackburn_PN : PN;
-fun blackcurrant_N : N;
-fun blacken_V : V;
-fun blacken_V2 : V2;
-fun blackguard_N : N;
-fun blackguard_V2 : V2;
-fun blackguardly_A : A;
-fun blackhall_PN : PN;
-fun blackhead_N : N;
-fun blacking_N : N;
-fun blackish_A : A;
-fun blackleg_N : N;
-fun blackleg_V : V;
-fun blackleg_V2 : V2;
-fun blacklist_N : N;
-fun blacklist_V2 : V2;
-fun blackmail_N : N;
-fun blackmail_V2 : V2;
-fun blackmailer_N : N;
-fun blackness_N : N;
-fun blackout_N : N;
-fun blackpool_PN : PN;
-fun blackshirt_N : N;
-fun blacksmith_N : N;
-fun blackthorn_N : N;
-fun blackwater_A : A;
-fun blackwood_PN : PN;
-fun bladder_N : N;
-fun blade_N : N;
-fun blaeberry_N : N;
-fun blaenau_ffestiniog_PN : PN;
-fun blaenavon_PN : PN;
-fun blaengwrach_PN : PN;
-fun blah_N : N;
-fun blaina_PN : PN;
-fun blairgowrie_PN : PN;
-fun blame_N : N;
-fun blame_V2 : V2;
-fun blameless_A : A;
-fun blameworthy_A : A;
-fun blanch_V : V;
-fun blanch_V2 : V2;
-fun blancmange_N : N;
-fun bland_A : A;
-fun blandishment_N : N;
-fun blandness_N : N;
-fun blank_A : A;
-fun blank_N : N;
-fun blanket_N : N;
-fun blanket_V2 : V2;
-fun blantyre_PN : PN;
-fun blare_N : N;
-fun blare_V : V;
-fun blare_V2 : V2;
-fun blarney_N : N;
-fun blaspheme_V : V;
-fun blaspheme_V2 : V2;
-fun blasphemer_N : N;
-fun blasphemous_A : A;
-fun blasphemy_N : N;
-fun blast_N : N;
-fun blast_V2 : V2;
-fun blast_furnace_N : N;
-fun blast_off_N : N;
-fun blasted_A : A;
-fun blase_A : A;
-fun blatant_A : A;
-fun blather_N : N;
-fun blather_V : V;
-fun blaze_N : N;
-fun blaze_V : V;
-fun blaze_V2 : V2;
-fun blazer_N : N;
-fun blazing_A : A;
-fun blazon_N : N;
-fun blazon_V2 : V2;
-fun blazonry_N : N;
-fun bldg_PN : PN;
-fun bldgs_PN : PN;
-fun bleach_N : N;
-fun bleach_V : V;
-fun bleach_V2 : V2;
-fun bleaching_powder_N : N;
-fun bleak_A : A;
-fun bleary_A : A;
-fun bleary_eyed_A : A;
-fun bleat_N : N;
-fun bleat_V : V;
-fun bleat_V2 : V2;
-fun bleed_V : V;
-fun bleed_V2 : V2;
-fun bleep_N : N;
-fun bleep_V : V;
-fun blemish_N : N;
-fun blemish_V2 : V2;
-fun blench_V : V;
-fun blend_N : N;
-fun blend_V : V;
-fun blend_V2 : V2;
-fun bless_V2 : V2;
-fun blessed_A : A;
-fun blessedness_N : N;
-fun blessing_N : N;
-fun bletchley_PN : PN;
-fun blether_N : N;
-fun blether_V : V;
-fun blidworth_PN : PN;
-fun blight_N : N;
-fun blight_V2 : V2;
-fun blighter_N : N;
-fun blighty_N : N;
-fun blimp_N : N;
-fun blind_A : A;
-fun blind_N : N;
-fun blind_V2 : V2;
-fun blindfold_A : A;
-fun blindfold_N : N;
-fun blindfold_V2 : V2;
-fun blindman's_buff_N : N;
-fun blindness_N : N;
-fun blink_N : N;
-fun blink_V : V;
-fun blink_V2 : V2;
-fun blinking_A : A;
-fun blip_N : N;
-fun bliss_N : N;
-fun blissful_A : A;
-fun blister_N : N;
-fun blister_V : V;
-fun blister_V2 : V2;
-fun blithe_A : A;
-fun blithering_A : A;
-fun blithesome_A : A;
-fun blitz_N : N;
-fun blitz_V2 : V2;
-fun blizzard_N : N;
-fun bloated_A : A;
-fun bloater_N : N;
-fun blob_N : N;
-fun bloc_N : N;
-fun block_N : N;
-fun block_V2 : V2;
-fun blockade_N : N;
-fun blockade_V2 : V2;
-fun blockade_runner_N : N;
-fun blockage_N : N;
-fun blockbuster_N : N;
-fun blockhead_N : N;
-fun blockhouse_N : N;
-fun bloke_N : N;
-fun blond_A : A;
-fun blond_N : N;
-fun blonde_A : A;
-fun blonde_N : N;
-fun blood_N : N;
-fun blood_V2 : V2;
-fun blood_bath_N : N;
-fun blood_donor_N : N;
-fun blood_group_N : N;
-fun blood_heat_N : N;
-fun blood_letting_N : N;
-fun blood_money_N : N;
-fun blood_poisoning_N : N;
-fun blood_pressure_N : N;
-fun blood_relation_N : N;
-fun blood_transfusion_N : N;
-fun blood_type_N : N;
-fun blood_vessel_N : N;
-fun bloodcurdling_A : A;
-fun bloodhound_N : N;
-fun bloodless_A : A;
-fun bloodlust_N : N;
-fun bloodshed_N : N;
-fun bloodshot_A : A;
-fun bloodstain_N : N;
-fun bloodstained_A : A;
-fun bloodstock_N : N;
-fun bloodsucker_N : N;
-fun bloodthirstiness_N : N;
-fun bloodthirsty_A : A;
-fun bloody_A : A;
-fun bloody_Adv : Adv;
-fun bloody_minded_A : A;
-fun bloom_N : N;
-fun bloom_V : V;
-fun bloomer_N : N;
-fun blooming_A : A;
-fun blossom_N : N;
-fun blossom_V : V;
-fun blot_N : N;
-fun blot_V2 : V2;
-fun blotch_N : N;
-fun blotter_N : N;
-fun blotting_paper_N : N;
-fun blotto_A : A;
-fun blouse_N : N;
-fun blow_N : N;
-fun blow_V : V;
-fun blow_V2 : V2;
-fun blow_dry_V2 : V2;
-fun blow_up_N : N;
-fun blowback_N : N;
-fun blower_N : N;
-fun blowfly_N : N;
-fun blowhole_N : N;
-fun blowing_up_N : N;
-fun blowlamp_N : N;
-fun blowout_N : N;
-fun blowpipe_N : N;
-fun blowtorch_N : N;
-fun blowzy_A : A;
-fun blubber_N : N;
-fun blubber_V : V;
-fun blubber_V2 : V2;
-fun bludgeon_N : N;
-fun bludgeon_V2 : V2;
-fun blue_A : A;
-fun blue_N : N;
-fun blue_V2 : V2;
-fun blue_collar_A : A;
-fun blue_jacket_N : N;
-fun blue_pencil_V2 : V2;
-fun bluebell_N : N;
-fun bluebottle_N : N;
-fun blueprint_N : N;
-fun bluestocking_N : N;
-fun bluff_A : A;
-fun bluff_N : N;
-fun bluff_V : V;
-fun bluff_V2 : V2;
-fun bluffer_N : N;
-fun bluffness_N : N;
-fun bluish_A : A;
-fun blunder_N : N;
-fun blunder_V : V;
-fun blunder_V2 : V2;
-fun blunderbuss_N : N;
-fun blunderer_N : N;
-fun blunt_A : A;
-fun blunt_V2 : V2;
-fun bluntness_N : N;
-fun blur_N : N;
-fun blur_V : V;
-fun blur_V2 : V2;
-fun blurb_N : N;
-fun blurt_V2 : V2;
-fun blush_N : N;
-fun blush_V : V;
-fun blushing_A : A;
-fun bluster_N : N;
-fun bluster_V : V;
-fun bluster_V2 : V2;
-fun blustery_A : A;
-fun blvd_N : N;
-fun blyth_PN : PN;
-fun bma_N : N;
-fun bmus_N : N;
-fun bo'ness_PN : PN;
-fun bo'sn_N : N;
-fun bo'sun_N : N;
-fun boa_N : N;
-fun boa_constrictor_N : N;
-fun boar_N : N;
-fun board_N : N;
-fun board_V : V;
-fun board_V2 : V2;
-fun boarder_N : N;
-fun boarding_N : N;
-fun boarding_card_N : N;
-fun boarding_house_N : N;
-fun boarding_school_N : N;
-fun boardroom_N : N;
-fun boardwalk_N : N;
-fun boast_N : N;
-fun boast_V : V;
-fun boast_V2 : V2;
-fun boaster_N : N;
-fun boastful_A : A;
-fun boat_N : N;
-fun boat_V : V;
-fun boat_hook_N : N;
-fun boat_house_N : N;
-fun boat_race_N : N;
-fun boat_train_N : N;
-fun boater_N : N;
-fun boatman_N : N;
-fun boatswain_N : N;
-fun bob_N : N;
-fun bob_PN : PN;
-fun bob_V : V;
-fun bob_V2 : V2;
-fun bobbin_N : N;
-fun bobby_N : N;
-fun bobby_PN : PN;
-fun bobby_soxer_N : N;
-fun bobolink_N : N;
-fun bobsled_N : N;
-fun bobsleigh_N : N;
-fun bobtail_N : N;
-fun boche_A : A;
-fun bochum_PN : PN;
-fun bode_V : V;
-fun bode_V2 : V2;
-fun bodice_N : N;
-fun bodied_A : A;
-fun bodily_A : A;
-fun bodily_Adv : Adv;
-fun boding_N : N;
-fun bodkin_N : N;
-fun bodmin_PN : PN;
-fun body_N : N;
-fun body_servant_N : N;
-fun body_snatcher_N : N;
-fun bodyguard_N : N;
-fun bodywork_N : N;
-fun boer_A : A;
-fun boer_N : N;
-fun boffin_N : N;
-fun bog_N : N;
-fun bog_V : V;
-fun bog_V2 : V2;
-fun bogey_N : N;
-fun bogeyman_N : N;
-fun boggle_V : V;
-fun boggy_A : A;
-fun bogie_N : N;
-fun bognor_PN : PN;
-fun bognor_regis_PN : PN;
-fun bogota_PN : PN;
-fun bogus_A : A;
-fun bogy_N : N;
-fun bohemian_A : A;
-fun bohemian_N : N;
-fun boil_N : N;
-fun boil_V : V;
-fun boil_V2 : V2;
-fun boiler_N : N;
-fun boilersuit_N : N;
-fun boiling_point_N : N;
-fun boisterous_A : A;
-fun boisterousness_N : N;
-fun bold_A : A;
-fun boldness_N : N;
-fun boldon_PN : PN;
-fun bole_N : N;
-fun bolero_N : N;
-fun bolivia_PN : PN;
-fun bolivian_A : A;
-fun bolivian_N : N;
-fun boll_N : N;
-fun bollard_N : N;
-fun bollington_PN : PN;
-fun bollock_N : N;
-fun bologna_PN : PN;
-fun boloney_N : N;
-fun bolshevik_N : N;
-fun bolshy_A : A;
-fun bolsover_PN : PN;
-fun bolster_N : N;
-fun bolster_V2 : V2;
-fun bolt_Adv : Adv;
-fun bolt_N : N;
-fun bolt_V : V;
-fun bolt_V2 : V2;
-fun bolt_hole_N : N;
-fun bolton_PN : PN;
-fun bolton_le_sands_PN : PN;
-fun bolzano_PN : PN;
-fun bomb_N : N;
-fun bomb_V : V;
-fun bomb_V2 : V2;
-fun bomb_proof_A : A;
-fun bomb_sight_N : N;
-fun bomb_site_N : N;
-fun bombard_V2 : V2;
-fun bombardier_N : N;
-fun bombardment_N : N;
-fun bombast_N : N;
-fun bombastic_A : A;
-fun bombastically_Adv : Adv;
-fun bombay_PN : PN;
-fun bomber_N : N;
-fun bombshell_N : N;
-fun bon_mot_N : N;
-fun bona_fide_A : A;
-fun bona_fide_Adv : Adv;
-fun bonanza_N : N;
-fun bonbon_N : N;
-fun bond_N : N;
-fun bond_V2 : V2;
-fun bond_holder_N : N;
-fun bondage_N : N;
-fun bone_N : N;
-fun bone_V2 : V2;
-fun bone_dry_A : A;
-fun bone_head_N : N;
-fun bone_idle_A : A;
-fun bone_lazy_A : A;
-fun bone_setter_N : N;
-fun boneless_A : A;
-fun bonemeal_N : N;
-fun boner_N : N;
-fun boneshaker_N : N;
-fun bonfire_N : N;
-fun bongo_N : N;
-fun bonhomie_N : N;
-fun bonito_N : N;
-fun bonkers_A : A;
-fun bonn_PN : PN;
-fun bonnet_N : N;
-fun bonnily_Adv : Adv;
-fun bonny_A : A;
-fun bonnybridge_PN : PN;
-fun bonnyrigg_PN : PN;
-fun bonus_N : N;
-fun bony_A : A;
-fun boo_N : N;
-fun boo_V : V;
-fun boo_V2 : V2;
-fun boob_N : N;
-fun boob_V : V;
-fun booby_N : N;
-fun booby_trap_N : N;
-fun boogie_N : N;
-fun boogie_woogie_N : N;
-fun book_N : N;
-fun book_V2 : V2;
-fun book_end_N : N;
-fun book_keeper_N : N;
-fun bookable_A : A;
-fun bookcase_N : N;
-fun bookclub_N : N;
-fun bookie_N : N;
-fun booking_N : N;
-fun bookish_A : A;
-fun bookishness_N : N;
-fun bookkeeper_N : N;
-fun bookkeeping_N : N;
-fun booklet_N : N;
-fun bookmaker_N : N;
-fun bookmark_N : N;
-fun bookmarker_N : N;
-fun bookmobile_N : N;
-fun bookseller_N : N;
-fun bookshop_N : N;
-fun bookstall_N : N;
-fun bookworm_N : N;
-fun boom_N : N;
-fun boom_V : V;
-fun boom_V2 : V2;
-fun boomerang_N : N;
-fun boon_A : A;
-fun boon_N : N;
-fun boor_N : N;
-fun boorish_A : A;
-fun boorishness_N : N;
-fun boost_N : N;
-fun boost_V2 : V2;
-fun booster_N : N;
-fun boot_N : N;
-fun boot_V2 : V2;
-fun booted_A : A;
-fun bootee_N : N;
-fun booth_N : N;
-fun bootlace_N : N;
-fun bootle_PN : PN;
-fun bootleg_V2 : V2;
-fun bootlegger_N : N;
-fun bootless_A : A;
-fun booty_N : N;
-fun booze_N : N;
-fun booze_V : V;
-fun booze_up_N : N;
-fun boozer_N : N;
-fun boozy_A : A;
-fun bopeep_N : N;
-fun boracic_A : A;
-fun borage_N : N;
-fun borax_N : N;
-fun bordeaux_N : N;
-fun bordeaux_PN : PN;
-fun border_N : N;
-fun border_V : V;
-fun border_V2 : V2;
-fun borderer_N : N;
-fun borderland_N : N;
-fun borderline_N : N;
-fun borders_PN : PN;
-fun bordon_PN : PN;
-fun bore_N : N;
-fun bore_V : V;
-fun bore_V2 : V2;
-fun bore_hole_N : N;
-fun boredom_N : N;
-fun borer_N : N;
-fun boric_A : A;
-fun boring_A : A;
-fun boris_PN : PN;
-fun boron_N : N;
-fun borough_N : N;
-fun borrow_V2 : V2;
-fun borrower_N : N;
-fun borsch_N : N;
-fun borstal_N : N;
-fun bortsch_N : N;
-fun borzoi_N : N;
-fun bosh_N : N;
-fun bosky_A : A;
-fun bosom_N : N;
-fun boss_N : N;
-fun boss_V2 : V2;
-fun boss_eyed_A : A;
-fun bossy_A : A;
-fun boston_PN : PN;
-fun botanical_A : A;
-fun botanist_N : N;
-fun botanize_V : V;
-fun botany_N : N;
-fun botch_N : N;
-fun botch_V2 : V2;
-fun botcher_N : N;
-fun both_A : A;
-fun both_Adv : Adv;
-fun bother_N : N;
-fun bother_V : V;
-fun bother_V2 : V2;
-fun bothersome_A : A;
-fun botswana_PN : PN;
-fun bottle_N : N;
-fun bottle_V2 : V2;
-fun bottle_fed_A : A;
-fun bottle_green_A : A;
-fun bottleneck_N : N;
-fun bottom_N : N;
-fun bottom_V : V;
-fun bottomless_A : A;
-fun bottrop_PN : PN;
-fun botulism_N : N;
-fun boudoir_N : N;
-fun bougainvillea_N : N;
-fun bough_N : N;
-fun bouillon_N : N;
-fun boulder_N : N;
-fun boulevard_N : N;
-fun bounce_N : N;
-fun bounce_V : V;
-fun bounce_V2 : V2;
-fun bouncing_A : A;
-fun bouncy_A : A;
-fun bound_A : A;
-fun bound_N : N;
-fun bound_V : V;
-fun bound_V2 : V2;
-fun boundary_N : N;
-fun bounden_A : A;
-fun bounder_N : N;
-fun boundless_A : A;
-fun bounteous_A : A;
-fun bountiful_A : A;
-fun bounty_N : N;
-fun bouquet_N : N;
-fun bourbon_N : N;
-fun bourgeois_A : A;
-fun bourgeois_N : N;
-fun bourgeoisie_N : N;
-fun bourn_N : N;
-fun bourne_N : N;
-fun bourne_PN : PN;
-fun bournemouth_PN : PN;
-fun bourse_N : N;
-fun bout_N : N;
-fun boutique_N : N;
-fun bovine_A : A;
-fun bovril_N : N;
-fun bow_N : N;
-fun bow_V : V;
-fun bow_V2 : V2;
-fun bow_wow_N : N;
-fun bowburn_PN : PN;
-fun bowdlerize_V2 : V2;
-fun bowel_N : N;
-fun bower_N : N;
-fun bowie_knife_N : N;
-fun bowing_N : N;
-fun bowl_N : N;
-fun bowl_V : V;
-fun bowl_V2 : V2;
-fun bowler_N : N;
-fun bowline_N : N;
-fun bowling_green_N : N;
-fun bowls_N : N;
-fun bowman_N : N;
-fun bowsprit_N : N;
-fun box_N : N;
-fun box_V : V;
-fun box_V2 : V2;
-fun box_kite_N : N;
-fun box_number_N : N;
-fun box_office_N : N;
-fun boxer_N : N;
-fun boxful_N : N;
-fun boxing_N : N;
-fun boxing_day_N : N;
-fun boxing_day_PN : PN;
-fun boxing_glove_N : N;
-fun boxing_match_N : N;
-fun boxwood_N : N;
-fun boy_N : N;
-fun boycott_N : N;
-fun boycott_V2 : V2;
-fun boyfriend_N : N;
-fun boyhood_N : N;
-fun boyish_A : A;
-fun bra_N : N;
-fun brace_N : N;
-fun brace_V : V;
-fun brace_V2 : V2;
-fun bracelet_N : N;
-fun bracken_N : N;
-fun bracket_N : N;
-fun bracket_V2 : V2;
-fun brackish_A : A;
-fun bracknell_PN : PN;
-fun bract_N : N;
-fun brad_N : N;
-fun bradawl_N : N;
-fun bradford_PN : PN;
-fun bradford_on_avon_PN : PN;
-fun brae_N : N;
-fun brag_V : V;
-fun braggart_N : N;
-fun bragging_N : N;
-fun brahmin_N : N;
-fun braid_N : N;
-fun braid_V2 : V2;
-fun braille_N : N;
-fun brain_N : N;
-fun brain_V2 : V2;
-fun brain_fag_N : N;
-fun brain_teaser_N : N;
-fun brainchild_N : N;
-fun brainless_A : A;
-fun brainstorm_N : N;
-fun braintree_PN : PN;
-fun brainwash_V2 : V2;
-fun brainwashed_A : A;
-fun brainwashing_N : N;
-fun brainwave_N : N;
-fun brainy_A : A;
-fun braise_V2 : V2;
-fun brake_N : N;
-fun brake_V : V;
-fun brake_V2 : V2;
-fun brakeman_N : N;
-fun bramble_N : N;
-fun bran_N : N;
-fun bran_new_A : A;
-fun branch_N : N;
-fun branch_V : V;
-fun branchy_A : A;
-fun brand_N : N;
-fun brand_V2 : V2;
-fun brand_new_A : A;
-fun branderburgh_PN : PN;
-fun branding_iron_N : N;
-fun brandish_V2 : V2;
-fun brandy_N : N;
-fun brandy_ball_N : N;
-fun brandy_snap_N : N;
-fun brash_A : A;
-fun brasilia_PN : PN;
-fun brass_N : N;
-fun brassard_N : N;
-fun brasserie_N : N;
-fun brassiere_1_N : N;
-fun brassiere_2_N : N;
-fun brassy_A : A;
-fun brat_N : N;
-fun bratislava_PN : PN;
-fun braunschweig_PN : PN;
-fun braunton_PN : PN;
-fun bravado_N : N;
-fun brave_A : A;
-fun brave_N : N;
-fun brave_V2 : V2;
-fun bravery_N : N;
-fun bravo_N : N;
-fun brawl_N : N;
-fun brawl_V : V;
-fun brawler_N : N;
-fun brawn_N : N;
-fun brawny_A : A;
-fun bray_N : N;
-fun bray_V2 : V2;
-fun braze_V2 : V2;
-fun brazen_A : A;
-fun brazen_V2 : V2;
-fun brazen_faced_A : A;
-fun brazier_N : N;
-fun brazil_PN : PN;
-fun brazilian_A : A;
-fun brazilian_N : N;
-fun breach_N : N;
-fun breach_V2 : V2;
-fun bread_N : N;
-fun breadcrumb_N : N;
-fun breadfruit_N : N;
-fun breadline_N : N;
-fun breadth_N : N;
-fun breadthways_Adv : Adv;
-fun breadthwise_Adv : Adv;
-fun breadwinner_N : N;
-fun break_N : N;
-fun break_V : V;
-fun break_V2 : V2;
-fun break_in_N : N;
-fun break_up_N : N;
-fun breakable_A : A;
-fun breakage_N : N;
-fun breakaway_N : N;
-fun breakaways_N : N;
-fun breakdown_N : N;
-fun breaker_N : N;
-fun breakfast_N : N;
-fun breakfast_V : V;
-fun breakneck_A : A;
-fun breakthrough_N : N;
-fun breakwater_N : N;
-fun bream_N : N;
-fun breast_N : N;
-fun breast_V2 : V2;
-fun breast_deep_Adv : Adv;
-fun breast_fed_A : A;
-fun breast_high_Adv : Adv;
-fun breast_plate_N : N;
-fun breastfeed_V : V;
-fun breastfeed_V2 : V2;
-fun breaston_PN : PN;
-fun breaststroke_N : N;
-fun breastwork_N : N;
-fun breath_N : N;
-fun breathalyser_N : N;
-fun breathe_V : V;
-fun breathe_V2 : V2;
-fun breather_N : N;
-fun breathing_N : N;
-fun breathing_space_N : N;
-fun breathless_A : A;
-fun breathtaking_A : A;
-fun brecknock_PN : PN;
-fun breda_PN : PN;
-fun breech_N : N;
-fun breech_block_N : N;
-fun breeches_buoy_N : N;
-fun breed_N : N;
-fun breed_V : V;
-fun breed_V2 : V2;
-fun breeder_N : N;
-fun breeding_N : N;
-fun breedsall_PN : PN;
-fun breeze_N : N;
-fun breeze_V : V;
-fun breezily_Adv : Adv;
-fun breeziness_N : N;
-fun breezy_A : A;
-fun bremen_PN : PN;
-fun bremerhaven_PN : PN;
-fun bren_N : N;
-fun bren_gun_N : N;
-fun brenda_PN : PN;
-fun brent_PN : PN;
-fun brentwood_PN : PN;
-fun brescia_PN : PN;
-fun brest_PN : PN;
-fun breve_N : N;
-fun brevet_N : N;
-fun breviary_N : N;
-fun brevity_N : N;
-fun brew_N : N;
-fun brew_V : V;
-fun brew_V2 : V2;
-fun brewer_N : N;
-fun brewery_N : N;
-fun brian_PN : PN;
-fun briar_N : N;
-fun bribable_A : A;
-fun bribe_N : N;
-fun bribe_V2 : V2;
-fun bribery_N : N;
-fun bric_a_brac_N : N;
-fun brick_N : N;
-fun brick_V2 : V2;
-fun brick_field_N : N;
-fun brickbat_N : N;
-fun bricket_wood_PN : PN;
-fun brickkiln_N : N;
-fun bricklayer_N : N;
-fun brickwork_N : N;
-fun bridal_A : A;
-fun bridal_N : N;
-fun bride_N : N;
-fun bridecake_N : N;
-fun bridegroom_N : N;
-fun bridesmaid_N : N;
-fun bridge_N : N;
-fun bridge_V2 : V2;
-fun bridgehead_N : N;
-fun bridgend_PN : PN;
-fun bridget_PN : PN;
-fun bridgnorth_PN : PN;
-fun bridgwater_PN : PN;
-fun bridle_N : N;
-fun bridle_V : V;
-fun bridle_V2 : V2;
-fun bridle_path_N : N;
-fun bridle_road_N : N;
-fun bridlington_PN : PN;
-fun bridport_PN : PN;
-fun brief_A : A;
-fun brief_N : N;
-fun brief_V2 : V2;
-fun briefcase_N : N;
-fun briefing_N : N;
-fun brier_N : N;
-fun brig_N : N;
-fun brig_PN : PN;
-fun brigade_N : N;
-fun brigadier_N : N;
-fun brigand_N : N;
-fun brigantine_N : N;
-fun brighouse_PN : PN;
-fun bright_A : A;
-fun bright_Adv : Adv;
-fun brighten_V : V;
-fun brighten_V2 : V2;
-fun brightlingsea_PN : PN;
-fun brightness_N : N;
-fun brighton_PN : PN;
-fun brill_N : N;
-fun brilliance_N : N;
-fun brilliancy_N : N;
-fun brilliant_A : A;
-fun brilliantine_N : N;
-fun brim_N : N;
-fun brim_V : V;
-fun brimful_A : A;
-fun brimfull_A : A;
-fun brimstone_N : N;
-fun brindled_A : A;
-fun brine_N : N;
-fun bring_V2 : V2;
-fun brink_N : N;
-fun brinkmanship_N : N;
-fun briny_A : A;
-fun brioche_N : N;
-fun briquet_N : N;
-fun briquette_N : N;
-fun brisbane_PN : PN;
-fun brisk_A : A;
-fun brisket_N : N;
-fun bristle_N : N;
-fun bristle_V : V;
-fun bristly_A : A;
-fun bristol_PN : PN;
-fun brit_N : N;
-fun britain_PN : PN;
-fun britannic_A : A;
-fun british_A : A;
-fun britisher_N : N;
-fun briton_A : A;
-fun briton_N : N;
-fun brittle_A : A;
-fun brixham_PN : PN;
-fun brno_PN : PN;
-fun broach_V : V;
-fun broach_V2 : V2;
-fun broad_A : A;
-fun broad_N : N;
-fun broad_minded_A : A;
-fun broad_mindedness_N : N;
-fun broadcast_Adv : Adv;
-fun broadcast_N : N;
-fun broadcast_V : V;
-fun broadcast_V2 : V2;
-fun broadcasting_A : A;
-fun broadcasting_N : N;
-fun broadcloth_N : N;
-fun broaden_V : V;
-fun broaden_V2 : V2;
-fun broadness_N : N;
-fun broadsheet_N : N;
-fun broadside_N : N;
-fun broadways_Adv : Adv;
-fun broadwise_Adv : Adv;
-fun brocade_N : N;
-fun brocade_V2 : V2;
-fun broccoli_N : N;
-fun brochure_N : N;
-fun brogue_N : N;
-fun broil_V : V;
-fun broil_V2 : V2;
-fun broiler_N : N;
-fun broke_A : A;
-fun broken_hearted_A : A;
-fun broker_N : N;
-fun brokerage_N : N;
-fun brolly_N : N;
-fun bromide_N : N;
-fun bromine_N : N;
-fun bromley_PN : PN;
-fun bromsgrove_PN : PN;
-fun bronchial_A : A;
-fun bronchitic_A : A;
-fun bronchitis_N : N;
-fun bronchus_N : N;
-fun bronco_N : N;
-fun bronze_N : N;
-fun bronze_V : V;
-fun bronze_V2 : V2;
-fun brooch_N : N;
-fun brood_N : N;
-fun brood_V : V;
-fun brood_hen_N : N;
-fun brood_mare_N : N;
-fun broody_A : A;
-fun brook_N : N;
-fun brook_V2 : V2;
-fun broom_N : N;
-fun broomstick_N : N;
-fun bros_PN : PN;
-fun broth_N : N;
-fun brothel_N : N;
-fun brother_N : N;
-fun brother_in_law_N : N;
-fun brotherhood_N : N;
-fun brotherly_A : A;
-fun brougham_N : N;
-fun broughton_PN : PN;
-fun brouhaha_N : N;
-fun brow_N : N;
-fun browbeat_V2 : V2;
-fun brown_A : A;
-fun brown_V : V;
-fun brown_V2 : V2;
-fun brownie_N : N;
-fun brownish_A : A;
-fun brownstone_N : N;
-fun browse_N : N;
-fun browse_V : V;
-fun broxburn_PN : PN;
-fun bruce_PN : PN;
-fun bruges_PN : PN;
-fun bruin_N : N;
-fun bruise_N : N;
-fun bruise_V : V;
-fun bruise_V2 : V2;
-fun bruiser_N : N;
-fun bruit_V2 : V2;
-fun brunch_N : N;
-fun brunei_PN : PN;
-fun bruneian_A : A;
-fun bruneian_N : N;
-fun brunette_N : N;
-fun brunswick_PN : PN;
-fun brunt_N : N;
-fun brush_N : N;
-fun brush_V : V;
-fun brush_V2 : V2;
-fun brush_off_N : N;
-fun brush_up_N : N;
-fun brushwood_N : N;
-fun brushwork_N : N;
-fun brusque_A : A;
-fun brusqueness_N : N;
-fun brussels_PN : PN;
-fun brutal_A : A;
-fun brutality_N : N;
-fun brutalize_V2 : V2;
-fun brute_N : N;
-fun brutish_A : A;
-fun bryan_PN : PN;
-fun bsc_N : N;
-fun bst_PN : PN;
-fun bt_PN : PN;
-fun bubble_N : N;
-fun bubble_V : V;
-fun bubbly_A : A;
-fun bubbly_N : N;
-fun bubonic_A : A;
-fun bucarest_PN : PN;
-fun buccaneer_N : N;
-fun buck_N : N;
-fun buck_V : V;
-fun buck_V2 : V2;
-fun bucket_N : N;
-fun bucket_V : V;
-fun bucketful_N : N;
-fun buckhaven_PN : PN;
-fun buckie_PN : PN;
-fun buckingham_PN : PN;
-fun buckinghamshire_PN : PN;
-fun buckle_N : N;
-fun buckle_V : V;
-fun buckle_V2 : V2;
-fun buckler_N : N;
-fun buckley_PN : PN;
-fun buckram_N : N;
-fun bucksburn_PN : PN;
-fun buckshot_N : N;
-fun buckskin_N : N;
-fun bucktooth_N : N;
-fun buckwheat_N : N;
-fun bucolic_A : A;
-fun bucolics_N : N;
-fun bud_N : N;
-fun bud_V : V;
-fun budapest_PN : PN;
-fun buddhism_N : N;
-fun buddhist_N : N;
-fun budding_A : A;
-fun buddy_N : N;
-fun budge_V : V;
-fun budge_V2 : V2;
-fun budgerigar_N : N;
-fun budget_N : N;
-fun budget_V : V;
-fun budgetary_A : A;
-fun budgie_N : N;
-fun buenos_aires_PN : PN;
-fun buff_N : N;
-fun buff_V2 : V2;
-fun buffalo_N : N;
-fun buffalo_PN : PN;
-fun buffer_N : N;
-fun buffet_N : N;
-fun buffet_V : V;
-fun buffet_V2 : V2;
-fun buffoon_N : N;
-fun buffoonery_N : N;
-fun bug_N : N;
-fun bug_V2 : V2;
-fun bug_hunter_N : N;
-fun bugaboo_N : N;
-fun bugbear_N : N;
-fun bugger_N : N;
-fun bugger_V : V;
-fun bugger_V2 : V2;
-fun bugger_all_N : N;
-fun buggery_N : N;
-fun buggy_N : N;
-fun bugle_N : N;
-fun bugler_N : N;
-fun buhl_N : N;
-fun build_N : N;
-fun build_V : V;
-fun build_V2 : V2;
-fun build_up_N : N;
-fun builder_N : N;
-fun building_N : N;
-fun building_society_N : N;
-fun built_in_A : A;
-fun built_up_A : A;
-fun bulb_N : N;
-fun bulbous_A : A;
-fun bulbul_N : N;
-fun bulgaria_PN : PN;
-fun bulgarian_A : A;
-fun bulgarian_N : N;
-fun bulge_N : N;
-fun bulge_V : V;
-fun bulge_V2 : V2;
-fun bulk_N : N;
-fun bulk_V : V;
-fun bulkhead_N : N;
-fun bulkington_PN : PN;
-fun bulky_A : A;
-fun bull's_eye_N : N;
-fun bull_N : N;
-fun bull_headed_A : A;
-fun bull_neck_N : N;
-fun bull_terrier_N : N;
-fun bulldog_N : N;
-fun bulldoze_V2 : V2;
-fun bulldozer_N : N;
-fun bullet_N : N;
-fun bullet_headed_A : A;
-fun bulletin_N : N;
-fun bulletproof_A : A;
-fun bullfight_N : N;
-fun bullfighter_N : N;
-fun bullfinch_N : N;
-fun bullfrog_N : N;
-fun bullion_N : N;
-fun bullock_N : N;
-fun bullring_N : N;
-fun bullshit_N : N;
-fun bullshit_V : V;
-fun bully_A : A;
-fun bully_N : N;
-fun bully_V : V;
-fun bully_V2 : V2;
-fun bulrush_N : N;
-fun bulwark_N : N;
-fun bum_A : A;
-fun bum_N : N;
-fun bum_V : V;
-fun bum_V2 : V2;
-fun bumblebee_N : N;
-fun bumboat_N : N;
-fun bump_Adv : Adv;
-fun bump_N : N;
-fun bump_V : V;
-fun bump_V2 : V2;
-fun bumper_N : N;
-fun bumpkin_N : N;
-fun bumptious_A : A;
-fun bumptiousness_N : N;
-fun bumpy_A : A;
-fun bun_N : N;
-fun buna_N : N;
-fun bunch_N : N;
-fun bunch_V : V;
-fun bunch_V2 : V2;
-fun bundle_N : N;
-fun bundle_V : V;
-fun bundle_V2 : V2;
-fun bung_N : N;
-fun bung_V2 : V2;
-fun bung_hole_N : N;
-fun bungaloid_A : A;
-fun bungalow_N : N;
-fun bungle_N : N;
-fun bungle_V : V;
-fun bungle_V2 : V2;
-fun bungler_N : N;
-fun bunion_N : N;
-fun bunk_N : N;
-fun bunk_V : V;
-fun bunker_N : N;
-fun bunker_V : V;
-fun bunker_V2 : V2;
-fun bunkum_N : N;
-fun bunny_N : N;
-fun bunsen_N : N;
-fun bunting_N : N;
-fun buoy_N : N;
-fun buoy_V : V;
-fun buoyancy_N : N;
-fun buoyant_A : A;
-fun bur_N : N;
-fun burberry_N : N;
-fun burble_V : V;
-fun burden_N : N;
-fun burden_V2 : V2;
-fun burdensome_A : A;
-fun burdock_N : N;
-fun bureau_N : N;
-fun bureaucracy_N : N;
-fun bureaucrat_N : N;
-fun bureaucratic_A : A;
-fun bureaucratically_Adv : Adv;
-fun burette_N : N;
-fun burg_N : N;
-fun burgeon_V : V;
-fun burgess_N : N;
-fun burgess_PN : PN;
-fun burgh_N : N;
-fun burgher_N : N;
-fun burglar_N : N;
-fun burglar_alarm_N : N;
-fun burglar_proof_A : A;
-fun burglarious_A : A;
-fun burglary_N : N;
-fun burgle_V : V;
-fun burgle_V2 : V2;
-fun burgomaster_N : N;
-fun burgos_PN : PN;
-fun burgundy_N : N;
-fun burial_N : N;
-fun burial_ground_N : N;
-fun burke_V2 : V2;
-fun burlap_N : N;
-fun burlesque_N : N;
-fun burlesque_V2 : V2;
-fun burley_PN : PN;
-fun burly_A : A;
-fun burma_PN : PN;
-fun burmese_A : A;
-fun burmese_N : N;
-fun burn_N : N;
-fun burn_V : V;
-fun burn_V2 : V2;
-fun burn_up_N : N;
-fun burner_N : N;
-fun burnham_on_sea_PN : PN;
-fun burning_A : A;
-fun burnish_V : V;
-fun burnish_V2 : V2;
-fun burnley_PN : PN;
-fun burnouse_N : N;
-fun burntisland_PN : PN;
-fun burntwood_PN : PN;
-fun burp_N : N;
-fun burp_V : V;
-fun burp_V2 : V2;
-fun burr_N : N;
-fun burr_drill_N : N;
-fun burrow_N : N;
-fun burrow_V : V;
-fun burrow_V2 : V2;
-fun burry_port_PN : PN;
-fun bursar_N : N;
-fun bursary_N : N;
-fun burscough_PN : PN;
-fun burst_N : N;
-fun burst_V : V;
-fun burst_V2 : V2;
-fun burthen_N : N;
-fun burthen_V2 : V2;
-fun burton_N : N;
-fun burton_upon_trent_PN : PN;
-fun burundi_PN : PN;
-fun burundian_A : A;
-fun burundian_N : N;
-fun bury_PN : PN;
-fun bury_V2 : V2;
-fun bury_st__edmunds_PN : PN;
-fun burying_ground_N : N;
-fun bus_N : N;
-fun bus_V : V;
-fun bus_V2 : V2;
-fun busby_N : N;
-fun bush_N : N;
-fun bushel_N : N;
-fun bushman_N : N;
-fun bushy_A : A;
-fun busily_Adv : Adv;
-fun business_N : N;
-fun businesslike_A : A;
-fun businessman_N : N;
-fun busker_N : N;
-fun busman_N : N;
-fun bust_N : N;
-fun bust_V : V;
-fun bust_V2 : V2;
-fun bust_up_N : N;
-fun bustard_N : N;
-fun buster_N : N;
-fun bustle_N : N;
-fun bustle_V : V;
-fun bustle_V2 : V2;
-fun busy_A : A;
-fun busy_V2 : V2;
-fun busybody_N : N;
-fun but_Adv : Adv;
-fun butane_N : N;
-fun butch_A : A;
-fun butcher_N : N;
-fun butcher_V2 : V2;
-fun butchery_N : N;
-fun butler_N : N;
-fun butt_N : N;
-fun butt_V : V;
-fun butt_V2 : V2;
-fun butter_N : N;
-fun butter_V2 : V2;
-fun butterbean_N : N;
-fun buttercup_N : N;
-fun butterfingers_N : N;
-fun butterfly_N : N;
-fun buttermilk_N : N;
-fun butterscotch_N : N;
-fun buttery_N : N;
-fun buttock_N : N;
-fun button_N : N;
-fun button_V : V;
-fun button_V2 : V2;
-fun buttoned_up_A : A;
-fun buttonhole_N : N;
-fun buttonhole_V2 : V2;
-fun buttonhook_N : N;
-fun buttonwood_N : N;
-fun buttress_N : N;
-fun buttress_V2 : V2;
-fun buxom_A : A;
-fun buxton_PN : PN;
-fun buy_N : N;
-fun buy_V : V;
-fun buy_V2 : V2;
-fun buyer_N : N;
-fun buzz_N : N;
-fun buzz_V : V;
-fun buzz_V2 : V2;
-fun buzzard_N : N;
-fun buzzer_N : N;
-fun bvm_N : N;
-fun by_Adv : Adv;
-fun by_election_N : N;
-fun bye_N : N;
-fun bye_bye_N : N;
-fun bye_law_N : N;
-fun bygone_A : A;
-fun bylaw_N : N;
-fun bypass_N : N;
-fun bypass_V2 : V2;
-fun bypath_N : N;
-fun byplay_N : N;
-fun byproduct_N : N;
-fun byroad_N : N;
-fun bystander_N : N;
-fun byway_N : N;
-fun byword_N : N;
-fun bete_noire_N : N;
-fun c_in_c_PN : PN;
-fun c_of_e_N : N;
-fun ca'canny_N : N;
-fun cab_N : N;
-fun cab_rank_N : N;
-fun cabal_N : N;
-fun cabaret_N : N;
-fun cabbage_N : N;
-fun cabby_N : N;
-fun caber_N : N;
-fun cabin_N : N;
-fun cabinet_N : N;
-fun cabinet_maker_N : N;
-fun cable's_length_N : N;
-fun cable_N : N;
-fun cable_V : V;
-fun cable_V2 : V2;
-fun cable_car_N : N;
-fun cable_length_N : N;
-fun cable_railway_N : N;
-fun cablegram_N : N;
-fun cabman_N : N;
-fun caboodle_N : N;
-fun caboose_N : N;
-fun cabstand_N : N;
-fun cacao_N : N;
-fun cacao_bean_N : N;
-fun cacao_tree_N : N;
-fun cache_N : N;
-fun cache_V2 : V2;
-fun cachet_N : N;
-fun cachou_N : N;
-fun cackle_N : N;
-fun cackle_V : V;
-fun cackler_N : N;
-fun cacophonous_A : A;
-fun cacophony_N : N;
-fun cactus_N : N;
-fun cad_N : N;
-fun cadaver_N : N;
-fun cadaverous_A : A;
-fun caddie_N : N;
-fun caddish_A : A;
-fun caddy_N : N;
-fun cadence_N : N;
-fun cadenza_N : N;
-fun cadet_N : N;
-fun cadge_V : V;
-fun cadge_V2 : V2;
-fun cadger_N : N;
-fun cadiz_PN : PN;
-fun cadmium_N : N;
-fun cadre_N : N;
-fun caen_PN : PN;
-fun caerleon_PN : PN;
-fun caernarfon_PN : PN;
-fun caerphilly_PN : PN;
-fun caesar_N : N;
-fun caesarian_A : A;
-fun caesura_N : N;
-fun cafe_au_lait_N : N;
-fun cafeteria_N : N;
-fun caff_N : N;
-fun caffeine_N : N;
-fun caftan_N : N;
-fun cafe_N : N;
-fun cage_N : N;
-fun cage_V2 : V2;
-fun cagey_A : A;
-fun cagily_Adv : Adv;
-fun cagliari_PN : PN;
-fun cagoule_N : N;
-fun caiman_N : N;
-fun cairn_N : N;
-fun cairo_PN : PN;
-fun caisson_N : N;
-fun caitiff_N : N;
-fun cajole_V2 : V2;
-fun cajolery_N : N;
-fun cake_N : N;
-fun cake_V : V;
-fun cake_V2 : V2;
-fun calabash_N : N;
-fun calamitous_A : A;
-fun calamity_N : N;
-fun calcify_V : V;
-fun calcify_V2 : V2;
-fun calcination_N : N;
-fun calcine_V : V;
-fun calcine_V2 : V2;
-fun calcium_N : N;
-fun calculable_A : A;
-fun calculate_V : V;
-fun calculate_V2 : V2;
-fun calculating_A : A;
-fun calculation_N : N;
-fun calculator_N : N;
-fun calculus_N : N;
-fun calcutta_PN : PN;
-fun caldicot_PN : PN;
-fun caldron_N : N;
-fun calendar_N : N;
-fun calender_N : N;
-fun calender_V2 : V2;
-fun calf_N : N;
-fun calf_love_N : N;
-fun cali_PN : PN;
-fun calibrate_V2 : V2;
-fun calibration_N : N;
-fun calibre_N : N;
-fun calico_N : N;
-fun calif_N : N;
-fun california_PN : PN;
-fun californian_A : A;
-fun californian_N : N;
-fun caliph_N : N;
-fun caliphate_N : N;
-fun calisthenics_N : N;
-fun calk_N : N;
-fun calk_V2 : V2;
-fun call_N : N;
-fun call_V : V;
-fun call_V2 : V2;
-fun call_box_N : N;
-fun call_girl_N : N;
-fun call_over_N : N;
-fun call_up_N : N;
-fun caller_N : N;
-fun calligraphy_N : N;
-fun calling_N : N;
-fun calliope_N : N;
-fun callisthenics_N : N;
-fun callosity_N : N;
-fun callous_A : A;
-fun callousness_N : N;
-fun callow_A : A;
-fun callowness_N : N;
-fun callus_N : N;
-fun calm_A : A;
-fun calm_N : N;
-fun calm_V : V;
-fun calm_V2 : V2;
-fun calmness_N : N;
-fun calne_PN : PN;
-fun calomel_N : N;
-fun calor_PN : PN;
-fun calorie_N : N;
-fun calorific_A : A;
-fun calumniate_V2 : V2;
-fun calumny_N : N;
-fun calvary_N : N;
-fun calve_V : V;
-fun calverton_PN : PN;
-fun calvinism_N : N;
-fun calvinist_N : N;
-fun calypso_N : N;
-fun calyx_N : N;
-fun cam_N : N;
-fun camaraderie_N : N;
-fun camber_N : N;
-fun camber_V : V;
-fun camber_V2 : V2;
-fun cambodia_PN : PN;
-fun cambodian_A : A;
-fun cambodian_N : N;
-fun cambourne_PN : PN;
-fun cambric_N : N;
-fun cambridge_PN : PN;
-fun cambridgeshire_PN : PN;
-fun cambuslang_PN : PN;
-fun camden_PN : PN;
-fun camel_N : N;
-fun camel_hair_N : N;
-fun camellia_N : N;
-fun camembert_N : N;
-fun cameo_N : N;
-fun camera_N : N;
-fun cameraman_N : N;
-fun cameroon_PN : PN;
-fun cameroonian_A : A;
-fun cameroonian_N : N;
-fun camion_N : N;
-fun camomile_N : N;
-fun camouflage_N : N;
-fun camouflage_V2 : V2;
-fun camp_A : A;
-fun camp_N : N;
-fun camp_V : V;
-fun camp_V2 : V2;
-fun camp_bed_N : N;
-fun camp_chair_N : N;
-fun camp_fire_N : N;
-fun camp_follower_N : N;
-fun camp_stool_N : N;
-fun campaign_N : N;
-fun campaign_V : V;
-fun campaigner_N : N;
-fun campanile_N : N;
-fun campanula_N : N;
-fun campbeltown_PN : PN;
-fun camper_N : N;
-fun camphor_N : N;
-fun camphorated_A : A;
-fun camping_N : N;
-fun campion_N : N;
-fun campus_N : N;
-fun camshaft_N : N;
-fun can_N : N;
-fun can_V2 : V2;
-fun canada_PN : PN;
-fun canadian_A : A;
-fun canadian_N : N;
-fun canal_N : N;
-fun canalization_N : N;
-fun canalize_V2 : V2;
-fun canape_N : N;
-fun canard_N : N;
-fun canary_N : N;
-fun canary_bird_N : N;
-fun canary_wine_N : N;
-fun canasta_N : N;
-fun canberra_PN : PN;
-fun cancan_N : N;
-fun cancel_V : V;
-fun cancel_V2 : V2;
-fun cancellation_N : N;
-fun cancer_N : N;
-fun cancer_PN : PN;
-fun cancerous_A : A;
-fun candelabrum_N : N;
-fun candid_A : A;
-fun candidate_N : N;
-fun candidature_N : N;
-fun candied_A : A;
-fun candle_N : N;
-fun candle_power_N : N;
-fun candlelight_N : N;
-fun candlestick_N : N;
-fun candlewick_N : N;
-fun candour_N : N;
-fun candy_N : N;
-fun candy_V : V;
-fun candy_V2 : V2;
-fun candy_floss_N : N;
-fun candytuft_N : N;
-fun cane_N : N;
-fun cane_V2 : V2;
-fun canine_A : A;
-fun canister_N : N;
-fun canker_N : N;
-fun canker_V2 : V2;
-fun cankerous_A : A;
-fun canna_N : N;
-fun cannabis_N : N;
-fun canned_A : A;
-fun cannery_N : N;
-fun cannes_PN : PN;
-fun cannibal_N : N;
-fun cannibalism_N : N;
-fun cannibalistic_A : A;
-fun cannibalize_V2 : V2;
-fun cannily_Adv : Adv;
-fun cannock_PN : PN;
-fun cannon_N : N;
-fun cannon_fodder_N : N;
-fun cannonade_N : N;
-fun canny_A : A;
-fun canoe_N : N;
-fun canoe_V2 : V2;
-fun canoeist_N : N;
-fun canon_1_N : N;
-fun canonical_A : A;
-fun canonization_N : N;
-fun canonize_V2 : V2;
-fun canopied_A : A;
-fun canopy_N : N;
-fun cant_N : N;
-fun cant_V : V;
-fun cant_V2 : V2;
-fun cantab_PN : PN;
-fun cantaloup_N : N;
-fun cantaloupe_N : N;
-fun cantankerous_A : A;
-fun cantata_N : N;
-fun canteen_N : N;
-fun canter_N : N;
-fun canter_V : V;
-fun canter_V2 : V2;
-fun canterbury_PN : PN;
-fun canticle_N : N;
-fun cantilever_N : N;
-fun canto_N : N;
-fun canton_N : N;
-fun canton_PN : PN;
-fun cantonment_N : N;
-fun cantor_N : N;
-fun canuck_N : N;
-fun canvas_N : N;
-fun canvass_N : N;
-fun canvass_V : V;
-fun canvass_V2 : V2;
-fun canvey_PN : PN;
-fun canvey_island_PN : PN;
-fun canyon_N : N;
-fun cap_N : N;
-fun cap_V2 : V2;
-fun cap_a_pie_Adv : Adv;
-fun capability_N : N;
-fun capable_A : A;
-fun capacious_A : A;
-fun capacity_N : N;
-fun caparison_N : N;
-fun caparison_V2 : V2;
-fun cape_N : N;
-fun cape_town_PN : PN;
-fun caper_N : N;
-fun caper_V : V;
-fun capillary_N : N;
-fun capital_A : A;
-fun capital_N : N;
-fun capitalism_A : A;
-fun capitalism_N : N;
-fun capitalist_N : N;
-fun capitalistic_A : A;
-fun capitalization_N : N;
-fun capitalize_V : V;
-fun capitalize_V2 : V2;
-fun capitation_N : N;
-fun capitol_N : N;
-fun capitulate_V2 : V2;
-fun capitulation_N : N;
-fun capon_N : N;
-fun caprice_N : N;
-fun capricious_A : A;
-fun capriciousness_N : N;
-fun capricorn_PN : PN;
-fun capsicum_N : N;
-fun capsize_V : V;
-fun capsize_V2 : V2;
-fun capstan_N : N;
-fun capsule_N : N;
-fun capt_PN : PN;
-fun captain_N : N;
-fun captain_V2 : V2;
-fun caption_N : N;
-fun captious_A : A;
-fun captivate_V2 : V2;
-fun captive_A : A;
-fun captive_N : N;
-fun captivity_N : N;
-fun captor_N : N;
-fun capture_N : N;
-fun capture_V2 : V2;
-fun car_N : N;
-fun car_ferry_N : N;
-fun caracas_PN : PN;
-fun carafe_N : N;
-fun caramel_N : N;
-fun carapace_N : N;
-fun carat_N : N;
-fun caravan_N : N;
-fun caravanning_N : N;
-fun caravansary_N : N;
-fun caravanserai_N : N;
-fun caraway_N : N;
-fun carbide_N : N;
-fun carbine_N : N;
-fun carbohydrate_N : N;
-fun carbolic_A : A;
-fun carbon_N : N;
-fun carbon_paper_N : N;
-fun carbonated_A : A;
-fun carbonic_A : A;
-fun carboniferous_A : A;
-fun carbonization_N : N;
-fun carbonize_V2 : V2;
-fun carborundum_N : N;
-fun carboy_N : N;
-fun carbuncle_N : N;
-fun carburettor_N : N;
-fun carcase_N : N;
-fun carcass_N : N;
-fun card_N : N;
-fun card_V2 : V2;
-fun card_sharper_N : N;
-fun cardamom_N : N;
-fun cardboard_N : N;
-fun cardenden_PN : PN;
-fun cardiac_A : A;
-fun cardiff_PN : PN;
-fun cardigan_N : N;
-fun cardigan_PN : PN;
-fun cardinal_A : A;
-fun cardinal_N : N;
-fun care_N : N;
-fun care_V : V;
-fun careen_V : V;
-fun careen_V2 : V2;
-fun career_N : N;
-fun career_V : V;
-fun careerist_N : N;
-fun carefree_A : A;
-fun careful_A : A;
-fun carefulness_N : N;
-fun careladen_A : A;
-fun careless_A : A;
-fun carelessness_N : N;
-fun caress_N : N;
-fun caress_V2 : V2;
-fun caressing_A : A;
-fun caret_N : N;
-fun caretaker_N : N;
-fun careworn_A : A;
-fun cargo_N : N;
-fun caribou_N : N;
-fun caricature_N : N;
-fun caricature_V2 : V2;
-fun caricaturist_N : N;
-fun caries_N : N;
-fun carillon_N : N;
-fun carious_A : A;
-fun carl_PN : PN;
-fun carlisle_PN : PN;
-fun carlow_PN : PN;
-fun carluke_PN : PN;
-fun carmarthen_PN : PN;
-fun carmelite_A : A;
-fun carmelite_N : N;
-fun carmine_A : A;
-fun carmine_N : N;
-fun carnage_N : N;
-fun carnal_A : A;
-fun carnation_N : N;
-fun carnforth_PN : PN;
-fun carnival_N : N;
-fun carnivore_N : N;
-fun carnivorous_A : A;
-fun carnoustie_PN : PN;
-fun carol_N : N;
-fun carol_PN : PN;
-fun carol_V2 : V2;
-fun carole_PN : PN;
-fun carolina_PN : PN;
-fun caroline_PN : PN;
-fun caroller_N : N;
-fun carolyn_PN : PN;
-fun carousal_N : N;
-fun carouse_V2 : V2;
-fun carousel_N : N;
-fun carp_N : N;
-fun carp_V2 : V2;
-fun carpal_A : A;
-fun carpal_N : N;
-fun carpenter_N : N;
-fun carpentry_N : N;
-fun carpet_N : N;
-fun carpet_V2 : V2;
-fun carpet_beater_N : N;
-fun carpet_knight_N : N;
-fun carpet_sweeper_N : N;
-fun carpetbag_N : N;
-fun carpetbagger_N : N;
-fun carport_N : N;
-fun carriage_N : N;
-fun carriageway_N : N;
-fun carrie_PN : PN;
-fun carrier_N : N;
-fun carrier_bag_N : N;
-fun carrier_pigeon_N : N;
-fun carrion_N : N;
-fun carrion_crow_N : N;
-fun carron_PN : PN;
-fun carrot_N : N;
-fun carroty_A : A;
-fun carry_N : N;
-fun carry_V : V;
-fun carry_V2 : V2;
-fun carrycot_N : N;
-fun carsick_A : A;
-fun carsickness_N : N;
-fun cart_N : N;
-fun cart_V2 : V2;
-fun cart_track_N : N;
-fun cartage_N : N;
-fun cartagena_PN : PN;
-fun carte_blanche_N : N;
-fun cartel_N : N;
-fun carter_N : N;
-fun carthorse_N : N;
-fun cartilage_N : N;
-fun cartilaginous_A : A;
-fun cartload_N : N;
-fun cartographer_N : N;
-fun cartography_N : N;
-fun carton_N : N;
-fun cartoon_N : N;
-fun cartoon_V2 : V2;
-fun cartoonist_N : N;
-fun cartridge_N : N;
-fun cartridge_belt_N : N;
-fun cartridge_paper_N : N;
-fun cartroad_N : N;
-fun cartwheel_N : N;
-fun carve_V : V;
-fun carve_V2 : V2;
-fun carver_N : N;
-fun carving_N : N;
-fun carving_fork_N : N;
-fun carving_knife_N : N;
-fun caryatid_N : N;
-fun casablanca_PN : PN;
-fun cascade_N : N;
-fun cascade_V : V;
-fun case_N : N;
-fun case_V2 : V2;
-fun case_hardened_A : A;
-fun case_history_N : N;
-fun case_law_N : N;
-fun casebook_N : N;
-fun casein_N : N;
-fun casement_N : N;
-fun casework_N : N;
-fun cash_N : N;
-fun cash_V : V;
-fun cash_V2 : V2;
-fun cashable_A : A;
-fun cashew_N : N;
-fun cashier_N : N;
-fun cashier_V2 : V2;
-fun cashmere_N : N;
-fun casing_N : N;
-fun casino_N : N;
-fun cask_N : N;
-fun casket_N : N;
-fun cassava_N : N;
-fun casserole_N : N;
-fun cassette_N : N;
-fun cassock_N : N;
-fun cassowary_N : N;
-fun cast_N : N;
-fun cast_V : V;
-fun cast_V2 : V2;
-fun cast_iron_A : A;
-fun cast_off_A : A;
-fun castaway_N : N;
-fun caste_N : N;
-fun castellated_A : A;
-fun caster_N : N;
-fun castigate_V2 : V2;
-fun castigation_N : N;
-fun casting_N : N;
-fun castle_N : N;
-fun castle_V : V;
-fun castleford_PN : PN;
-fun castor_N : N;
-fun castor_oil_N : N;
-fun castrate_V2 : V2;
-fun castration_N : N;
-fun casual_A : A;
-fun casualty_N : N;
-fun casuist_N : N;
-fun casuistic_A : A;
-fun casuistical_A : A;
-fun casuistry_N : N;
-fun casus_belli_N : N;
-fun cat_N : N;
-fun cat_nap_N : N;
-fun cat_o'_nine_tails_N : N;
-fun cat_sleep_N : N;
-fun cataclysm_N : N;
-fun cataclysmic_A : A;
-fun catafalque_N : N;
-fun catalan_A : A;
-fun catalan_N : N;
-fun catalepsy_N : N;
-fun cataleptic_A : A;
-fun cataleptic_N : N;
-fun catalogue_N : N;
-fun catalogue_V2 : V2;
-fun catalpa_N : N;
-fun catalysis_N : N;
-fun catalyst_N : N;
-fun catalytic_A : A;
-fun catamaran_N : N;
-fun catania_PN : PN;
-fun catapult_N : N;
-fun catapult_V2 : V2;
-fun cataract_N : N;
-fun catarrh_N : N;
-fun catastrophe_N : N;
-fun catastrophic_A : A;
-fun catastrophically_Adv : Adv;
-fun catcall_N : N;
-fun catcall_V : V;
-fun catch_N : N;
-fun catch_V : V;
-fun catch_V2 : V2;
-fun catch_crop_N : N;
-fun catcher_N : N;
-fun catching_A : A;
-fun catchment_N : N;
-fun catchment_area_N : N;
-fun catchment_basin_N : N;
-fun catchpenny_A : A;
-fun catchup_N : N;
-fun catchword_N : N;
-fun catchy_A : A;
-fun catechism_N : N;
-fun catechize_V2 : V2;
-fun categorical_A : A;
-fun categorize_V2 : V2;
-fun category_N : N;
-fun cater_V : V;
-fun caterer_N : N;
-fun caterpillar_N : N;
-fun caterwaul_N : N;
-fun caterwaul_V : V;
-fun catfish_N : N;
-fun catgut_N : N;
-fun cath_PN : PN;
-fun catharsis_N : N;
-fun cathartic_N : N;
-fun cathedral_N : N;
-fun catherine_PN : PN;
-fun cathode_N : N;
-fun catholic_A : A;
-fun catholic_N : N;
-fun catholicism_N : N;
-fun catholicity_N : N;
-fun cathy_PN : PN;
-fun catkin_N : N;
-fun catsup_N : N;
-fun cattiness_N : N;
-fun cattish_A : A;
-fun cattle_cake_N : N;
-fun cattleman_N : N;
-fun catty_A : A;
-fun catwalk_N : N;
-fun caucasian_A : A;
-fun caucasian_N : N;
-fun caucus_N : N;
-fun caul_N : N;
-fun cauldron_N : N;
-fun cauliflower_N : N;
-fun caulk_V2 : V2;
-fun causal_A : A;
-fun causality_N : N;
-fun causation_N : N;
-fun causative_A : A;
-fun cause_N : N;
-fun cause_V2 : V2;
-fun causeless_A : A;
-fun causerie_N : N;
-fun causeway_N : N;
-fun caustic_A : A;
-fun caustically_Adv : Adv;
-fun cauterize_V2 : V2;
-fun caution_N : N;
-fun caution_V2 : V2;
-fun cautionary_A : A;
-fun cautious_A : A;
-fun cavalcade_N : N;
-fun cavalier_A : A;
-fun cavalier_N : N;
-fun cavalry_N : N;
-fun cavalryman_N : N;
-fun cavan_PN : PN;
-fun cave_N : N;
-fun cave_V : V;
-fun cave_V2 : V2;
-fun cave_dweller_N : N;
-fun cave_in_N : N;
-fun caveat_N : N;
-fun caveman_N : N;
-fun cavern_N : N;
-fun cavernous_A : A;
-fun caviar_N : N;
-fun caviare_N : N;
-fun cavil_V : V;
-fun cavity_N : N;
-fun cavort_V : V;
-fun caw_N : N;
-fun caw_V : V;
-fun caw_V2 : V2;
-fun cayenne_N : N;
-fun cayenne_pepper_N : N;
-fun cayman_N : N;
-fun canon_2_N : N;
-fun cbi_N : N;
-fun cc_N : N;
-fun cd_N : N;
-fun cdr_PN : PN;
-fun cdre_PN : PN;
-fun cease_N : N;
-fun cease_V : V;
-fun cease_V2 : V2;
-fun cease_fire_N : N;
-fun ceaseless_A : A;
-fun cecil_PN : PN;
-fun cecilia_PN : PN;
-fun cecily_PN : PN;
-fun cedar_N : N;
-fun cede_V2 : V2;
-fun cedilla_N : N;
-fun cedric_PN : PN;
-fun cefn_mawr_PN : PN;
-fun ceiling_N : N;
-fun celandine_N : N;
-fun celebrant_N : N;
-fun celebrate_V2 : V2;
-fun celebrated_A : A;
-fun celebration_N : N;
-fun celebrity_N : N;
-fun celerity_N : N;
-fun celery_N : N;
-fun celestial_A : A;
-fun celia_PN : PN;
-fun celibacy_N : N;
-fun celibate_N : N;
-fun cell_N : N;
-fun cellar_N : N;
-fun cellarage_N : N;
-fun cellist_N : N;
-fun cello_N : N;
-fun cellophane_N : N;
-fun cellular_A : A;
-fun celluloid_N : N;
-fun cellulose_N : N;
-fun celt_N : N;
-fun celtic_A : A;
-fun celtic_N : N;
-fun cement_N : N;
-fun cement_V2 : V2;
-fun cement_mixer_N : N;
-fun cemetery_N : N;
-fun cenotaph_N : N;
-fun censer_N : N;
-fun censor_N : N;
-fun censor_V2 : V2;
-fun censorious_A : A;
-fun censorship_N : N;
-fun censure_N : N;
-fun censure_V2 : V2;
-fun census_N : N;
-fun cent_N : N;
-fun centaur_N : N;
-fun centenarian_A : A;
-fun centenarian_N : N;
-fun centenary_A : A;
-fun centenary_N : N;
-fun centennial_A : A;
-fun centennial_N : N;
-fun centigrade_A : A;
-fun centime_N : N;
-fun centimetre_N : N;
-fun centipede_N : N;
-fun central_A : A;
-fun central_N : N;
-fun centralization_N : N;
-fun centralize_V : V;
-fun centralize_V2 : V2;
-fun centre_N : N;
-fun centre_V : V;
-fun centre_V2 : V2;
-fun centre_bit_N : N;
-fun centre_board_N : N;
-fun centrepiece_N : N;
-fun centrifugal_A : A;
-fun centrifuge_N : N;
-fun centripetal_A : A;
-fun centurion_N : N;
-fun century_N : N;
-fun ceramic_A : A;
-fun ceramics_N : N;
-fun cereal_N : N;
-fun cerebral_A : A;
-fun cerebration_N : N;
-fun ceremonial_A : A;
-fun ceremonial_N : N;
-fun ceremonious_A : A;
-fun ceremony_N : N;
-fun cerise_A : A;
-fun cerise_N : N;
-fun cert_N : N;
-fun certain_A : A;
-fun certainty_N : N;
-fun certifiable_A : A;
-fun certificate_N : N;
-fun certificate_V2 : V2;
-fun certificated_A : A;
-fun certification_N : N;
-fun certify_V : V;
-fun certify_V2 : V2;
-fun certitude_N : N;
-fun cerulean_A : A;
-fun cervical_A : A;
-fun cervix_N : N;
-fun cesarean_A : A;
-fun cessation_N : N;
-fun cession_N : N;
-fun cesspit_N : N;
-fun cesspool_N : N;
-fun ceylon_PN : PN;
-fun cf_PN : PN;
-fun chad_PN : PN;
-fun chadian_A : A;
-fun chadian_N : N;
-fun chafe_N : N;
-fun chafe_V : V;
-fun chafe_V2 : V2;
-fun chaff_N : N;
-fun chaff_V2 : V2;
-fun chaffinch_N : N;
-fun chafing_dish_N : N;
-fun chagrin_N : N;
-fun chagrin_V2 : V2;
-fun chain_N : N;
-fun chain_V2 : V2;
-fun chain_armour_N : N;
-fun chain_gang_N : N;
-fun chain_letter_N : N;
-fun chain_mail_N : N;
-fun chain_smoker_N : N;
-fun chain_stitch_N : N;
-fun chain_store_N : N;
-fun chair_N : N;
-fun chair_V2 : V2;
-fun chair_lift_N : N;
-fun chairman_N : N;
-fun chairmanship_N : N;
-fun chaise_N : N;
-fun chaise_longue_N : N;
-fun chalet_N : N;
-fun chalfont_PN : PN;
-fun chalfont_st_giles_PN : PN;
-fun chalfont_st_peter_PN : PN;
-fun chalice_N : N;
-fun chalk_N : N;
-fun chalk_V2 : V2;
-fun chalkpit_N : N;
-fun chalky_A : A;
-fun challenge_N : N;
-fun challenge_V2 : V2;
-fun challenger_N : N;
-fun chamber_N : N;
-fun chamberlain_N : N;
-fun chambermaid_N : N;
-fun chamberpot_N : N;
-fun chameleon_N : N;
-fun chammy_leather_N : N;
-fun chamois_N : N;
-fun chamois_leather_N : N;
-fun champ_N : N;
-fun champ_V : V;
-fun champ_V2 : V2;
-fun champagne_N : N;
-fun champion_A : A;
-fun champion_Adv : Adv;
-fun champion_N : N;
-fun champion_V2 : V2;
-fun championship_N : N;
-fun chance_N : N;
-fun chance_V : V;
-fun chance_V2 : V2;
-fun chancel_N : N;
-fun chancellery_N : N;
-fun chancellor_N : N;
-fun chancery_N : N;
-fun chancy_A : A;
-fun chandelier_N : N;
-fun chandler_N : N;
-fun changchun_PN : PN;
-fun change_N : N;
-fun change_V : V;
-fun change_V2 : V2;
-fun changeable_A : A;
-fun changeableness_N : N;
-fun changeful_A : A;
-fun changeless_A : A;
-fun changeling_N : N;
-fun changeover_N : N;
-fun changsha_PN : PN;
-fun channel_N : N;
-fun channel_V2 : V2;
-fun chant_N : N;
-fun chant_V : V;
-fun chant_V2 : V2;
-fun chaos_N : N;
-fun chaotic_A : A;
-fun chaotically_Adv : Adv;
-fun chap_N : N;
-fun chap_V : V;
-fun chap_V2 : V2;
-fun chapel_N : N;
-fun chapelgoer_N : N;
-fun chaperon_N : N;
-fun chaperon_V2 : V2;
-fun chapfallen_A : A;
-fun chaplain_N : N;
-fun chaplaincy_N : N;
-fun chaplet_N : N;
-fun chapman_N : N;
-fun chapter_N : N;
-fun chapterhouse_N : N;
-fun char_N : N;
-fun char_V : V;
-fun char_V2 : V2;
-fun charabanc_1_N : N;
-fun character_N : N;
-fun characteristic_A : A;
-fun characteristic_N : N;
-fun characteristically_Adv : Adv;
-fun characterization_N : N;
-fun characterize_V2 : V2;
-fun characterless_A : A;
-fun charade_N : N;
-fun charcoal_N : N;
-fun charcoal_burner_N : N;
-fun chard_N : N;
-fun chard_PN : PN;
-fun charge_N : N;
-fun charge_V : V;
-fun charge_V2 : V2;
-fun charge_account_N : N;
-fun charge_sheet_N : N;
-fun chargeable_A : A;
-fun charger_N : N;
-fun charge_d'affaires_N : N;
-fun chariot_N : N;
-fun charioteer_N : N;
-fun charisma_N : N;
-fun charismatic_A : A;
-fun charitable_A : A;
-fun charity_N : N;
-fun charivari_N : N;
-fun charlady_N : N;
-fun charlatan_N : N;
-fun charles_PN : PN;
-fun charleston_N : N;
-fun charlie_PN : PN;
-fun charlock_N : N;
-fun charlotte_PN : PN;
-fun charm_N : N;
-fun charm_V : V;
-fun charm_V2 : V2;
-fun charmer_N : N;
-fun charming_A : A;
-fun charnel_house_N : N;
-fun chart_N : N;
-fun chart_V2 : V2;
-fun charter_N : N;
-fun charter_V2 : V2;
-fun charter_party_N : N;
-fun chartism_N : N;
-fun chartist_N : N;
-fun chartreuse_N : N;
-fun charwoman_N : N;
-fun chary_A : A;
-fun charybdis_PN : PN;
-fun charabanc_2_N : N;
-fun chas_PN : PN;
-fun chase_N : N;
-fun chase_V : V;
-fun chase_V2 : V2;
-fun chaser_N : N;
-fun chasm_N : N;
-fun chassis_N : N;
-fun chaste_A : A;
-fun chasten_V2 : V2;
-fun chastise_V2 : V2;
-fun chastisement_N : N;
-fun chastity_N : N;
-fun chasuble_N : N;
-fun chat_N : N;
-fun chat_V : V;
-fun chat_V2 : V2;
-fun chatelaine_N : N;
-fun chatham_PN : PN;
-fun chattel_N : N;
-fun chatter_N : N;
-fun chatter_V : V;
-fun chatterbox_N : N;
-fun chattily_Adv : Adv;
-fun chatty_A : A;
-fun chauffeur_N : N;
-fun chauffeuse_N : N;
-fun chauvinism_N : N;
-fun chauvinist_N : N;
-fun chauvinistic_A : A;
-fun chaw_N : N;
-fun chaw_V2 : V2;
-fun chaw_bacon_N : N;
-fun cheadle_PN : PN;
-fun cheap_A : A;
-fun cheapen_V : V;
-fun cheapen_V2 : V2;
-fun cheapjack_A : A;
-fun cheapness_N : N;
-fun cheat_N : N;
-fun cheat_V : V;
-fun cheat_V2 : V2;
-fun check_N : N;
-fun check_V : V;
-fun check_V2 : V2;
-fun checkbook_N : N;
-fun checked_A : A;
-fun checker_N : N;
-fun checker_V2 : V2;
-fun checkers_N : N;
-fun checklist_N : N;
-fun checkmate_N : N;
-fun checkmate_V2 : V2;
-fun checkout_N : N;
-fun checkpoint_N : N;
-fun checkroom_N : N;
-fun checkup_N : N;
-fun cheddar_N : N;
-fun cheek_N : N;
-fun cheek_V2 : V2;
-fun cheekbone_N : N;
-fun cheeked_A : A;
-fun cheekily_Adv : Adv;
-fun cheeky_A : A;
-fun cheep_N : N;
-fun cheep_V : V;
-fun cheer_N : N;
-fun cheer_V : V;
-fun cheer_V2 : V2;
-fun cheerful_A : A;
-fun cheerfulness_N : N;
-fun cheering_A : A;
-fun cheering_N : N;
-fun cheerleader_N : N;
-fun cheerless_A : A;
-fun cheerlessness_N : N;
-fun cheery_A : A;
-fun cheese_N : N;
-fun cheesecake_N : N;
-fun cheesecloth_N : N;
-fun cheeseparing_A : A;
-fun cheetah_N : N;
-fun chef_N : N;
-fun chef_d'oeuvre_N : N;
-fun chelmsford_PN : PN;
-fun chelsea_PN : PN;
-fun cheltenham_PN : PN;
-fun chelyabinsk_PN : PN;
-fun chemical_A : A;
-fun chemical_N : N;
-fun chemise_N : N;
-fun chemist_N : N;
-fun chemistry_N : N;
-fun chemotherapy_N : N;
-fun chengchow_PN : PN;
-fun chengtu_PN : PN;
-fun chenille_N : N;
-fun chepstow_PN : PN;
-fun cheque_N : N;
-fun chequebook_N : N;
-fun chequer_V2 : V2;
-fun cherish_V2 : V2;
-fun cheroot_N : N;
-fun cherry_A : A;
-fun cherry_N : N;
-fun cherub_N : N;
-fun cherubic_A : A;
-fun chervil_N : N;
-fun chesham_PN : PN;
-fun cheshire_PN : PN;
-fun chess_N : N;
-fun chessboard_N : N;
-fun chessman_N : N;
-fun chest_N : N;
-fun chester_PN : PN;
-fun chester_le_street_PN : PN;
-fun chesterfield_N : N;
-fun chesterfield_PN : PN;
-fun chestnut_N : N;
-fun cheval_glass_N : N;
-fun chevron_N : N;
-fun chew_N : N;
-fun chew_V : V;
-fun chew_V2 : V2;
-fun chewing_gum_N : N;
-fun chianti_N : N;
-fun chiaroscuro_N : N;
-fun chic_A : A;
-fun chic_N : N;
-fun chicago_PN : PN;
-fun chicanery_N : N;
-fun chichester_PN : PN;
-fun chichi_A : A;
-fun chick_N : N;
-fun chicken_N : N;
-fun chicken_hearted_A : A;
-fun chicken_run_N : N;
-fun chickenfeed_N : N;
-fun chickenpox_N : N;
-fun chickpea_N : N;
-fun chickweed_N : N;
-fun chicle_N : N;
-fun chicory_N : N;
-fun chide_V : V;
-fun chide_V2 : V2;
-fun chief_A : A;
-fun chief_N : N;
-fun chieftain_N : N;
-fun chieftaincy_N : N;
-fun chiffon_N : N;
-fun chiffonier_N : N;
-fun chignon_N : N;
-fun chilblain_N : N;
-fun chilblained_A : A;
-fun child's_play_N : N;
-fun child_N : N;
-fun child_bearing_N : N;
-fun childbirth_N : N;
-fun childhood_N : N;
-fun childish_A : A;
-fun childless_A : A;
-fun childlike_A : A;
-fun chile_PN : PN;
-fun chilean_A : A;
-fun chilean_N : N;
-fun chill_A : A;
-fun chill_N : N;
-fun chill_V : V;
-fun chill_V2 : V2;
-fun chilli_N : N;
-fun chilly_A : A;
-fun chilly_N : N;
-fun chimaera_N : N;
-fun chime_N : N;
-fun chime_V : V;
-fun chime_V2 : V2;
-fun chimera_N : N;
-fun chimerical_A : A;
-fun chimney_N : N;
-fun chimney_sweep_N : N;
-fun chimneybreast_N : N;
-fun chimneypiece_N : N;
-fun chimneypot_N : N;
-fun chimneystack_N : N;
-fun chimneysweep_N : N;
-fun chimneysweeper_N : N;
-fun chimp_N : N;
-fun chimpanzee_N : N;
-fun chin_N : N;
-fun chin_strap_N : N;
-fun chin_wagging_N : N;
-fun china_N : N;
-fun china_PN : PN;
-fun china_closet_N : N;
-fun chinaware_N : N;
-fun chinchilla_N : N;
-fun chinchow_PN : PN;
-fun chine_N : N;
-fun chinese_A : A;
-fun chinese_N : N;
-fun chink_N : N;
-fun chink_V : V;
-fun chink_V2 : V2;
-fun chintz_N : N;
-fun chip_N : N;
-fun chip_V : V;
-fun chip_V2 : V2;
-fun chipboard_N : N;
-fun chipmunk_N : N;
-fun chippendale_N : N;
-fun chippenham_PN : PN;
-fun chiropodist_N : N;
-fun chiropody_N : N;
-fun chiropractor_N : N;
-fun chirp_N : N;
-fun chirp_V : V;
-fun chirp_V2 : V2;
-fun chirpiness_N : N;
-fun chirpy_A : A;
-fun chirrup_N : N;
-fun chirrup_V : V;
-fun chirrup_V2 : V2;
-fun chisel_N : N;
-fun chisel_V2 : V2;
-fun chiseller_N : N;
-fun chit_N : N;
-fun chit_chat_N : N;
-fun chivalrous_A : A;
-fun chivalry_N : N;
-fun chive_N : N;
-fun chivvy_V2 : V2;
-fun chivy_V2 : V2;
-fun chloe_PN : PN;
-fun chloride_N : N;
-fun chlorinate_V2 : V2;
-fun chlorination_N : N;
-fun chlorine_N : N;
-fun chloroform_N : N;
-fun chlorophyll_N : N;
-fun choc_N : N;
-fun choc_ice_N : N;
-fun chock_N : N;
-fun chock_V2 : V2;
-fun chock_a_block_A : A;
-fun chock_a_block_Adv : Adv;
-fun chock_full_A : A;
-fun chocolate_N : N;
-fun choice_A : A;
-fun choice_N : N;
-fun choir_N : N;
-fun choir_school_N : N;
-fun choirboy_N : N;
-fun choke_N : N;
-fun choke_V : V;
-fun choke_V2 : V2;
-fun choke_damp_N : N;
-fun choker_N : N;
-fun chokey_N : N;
-fun choky_N : N;
-fun choler_N : N;
-fun cholera_N : N;
-fun choleric_A : A;
-fun choose_V : V;
-fun choose_V2 : V2;
-fun choosey_A : A;
-fun choosy_A : A;
-fun chop_N : N;
-fun chop_V : V;
-fun chop_V2 : V2;
-fun chop_chop_Adv : Adv;
-fun chop_house_N : N;
-fun chop_suey_N : N;
-fun chopper_N : N;
-fun choppy_A : A;
-fun chopwell_PN : PN;
-fun choral_A : A;
-fun chorale_N : N;
-fun chord_N : N;
-fun chore_N : N;
-fun choreographer_N : N;
-fun choreography_N : N;
-fun chorister_N : N;
-fun chorley_PN : PN;
-fun chortle_N : N;
-fun chortle_V : V;
-fun chorus_N : N;
-fun chorus_V2 : V2;
-fun chorus_girl_N : N;
-fun chow_N : N;
-fun chowder_N : N;
-fun chris_PN : PN;
-fun chrissie_PN : PN;
-fun chrissy_PN : PN;
-fun christ_PN : PN;
-fun christchurch_PN : PN;
-fun christen_V2 : V2;
-fun christendom_N : N;
-fun christening_N : N;
-fun christian_A : A;
-fun christian_N : N;
-fun christian_PN : PN;
-fun christianity_N : N;
-fun christina_PN : PN;
-fun christine_PN : PN;
-fun christlike_A : A;
-fun christmas_N : N;
-fun christmas_PN : PN;
-fun christmas_box_N : N;
-fun christmas_tree_N : N;
-fun christmastide_N : N;
-fun christmastime_N : N;
-fun christopher_PN : PN;
-fun chromatic_A : A;
-fun chrome_N : N;
-fun chromium_N : N;
-fun chromosome_N : N;
-fun chronic_A : A;
-fun chronically_Adv : Adv;
-fun chronicle_N : N;
-fun chronicle_V2 : V2;
-fun chronicler_N : N;
-fun chronological_A : A;
-fun chronology_N : N;
-fun chronometer_N : N;
-fun chrysalis_N : N;
-fun chrysanthemum_N : N;
-fun chubby_A : A;
-fun chuck_N : N;
-fun chuck_V2 : V2;
-fun chucker_out_N : N;
-fun chuckle_N : N;
-fun chuckle_V : V;
-fun chug_N : N;
-fun chug_V : V;
-fun chukker_N : N;
-fun chum_N : N;
-fun chum_V : V;
-fun chummy_A : A;
-fun chump_N : N;
-fun chungking_PN : PN;
-fun chunk_N : N;
-fun chunky_A : A;
-fun church_N : N;
-fun churchgoer_N : N;
-fun churchman_N : N;
-fun churchwarden_N : N;
-fun churchyard_N : N;
-fun churl_N : N;
-fun churlish_A : A;
-fun churn_N : N;
-fun churn_V : V;
-fun churn_V2 : V2;
-fun chute_N : N;
-fun chutney_N : N;
-fun chateau_N : N;
-fun cia_N : N;
-fun cicada_N : N;
-fun cicala_N : N;
-fun cicatrice_N : N;
-fun cicatrix_N : N;
-fun cicerone_N : N;
-fun cid_N : N;
-fun cider_N : N;
-fun ciderpress_N : N;
-fun cif_PN : PN;
-fun cigar_N : N;
-fun cigar_shaped_A : A;
-fun cigarette_N : N;
-fun cigarette_case_N : N;
-fun cigarette_holder_N : N;
-fun cigarette_paper_N : N;
-fun cinch_N : N;
-fun cinchona_N : N;
-fun cincinnati_PN : PN;
-fun cincture_N : N;
-fun cinder_N : N;
-fun cinder_track_N : N;
-fun cinderella_N : N;
-fun cinderford_PN : PN;
-fun cine_camera_N : N;
-fun cine_film_N : N;
-fun cine_projector_N : N;
-fun cinema_N : N;
-fun cinematic_A : A;
-fun cinematography_N : N;
-fun cinnamon_N : N;
-fun cinquefoil_N : N;
-fun cipher_N : N;
-fun cipher_V : V;
-fun cipher_V2 : V2;
-fun circle_N : N;
-fun circle_V : V;
-fun circle_V2 : V2;
-fun circlet_N : N;
-fun circuit_N : N;
-fun circuitous_A : A;
-fun circular_A : A;
-fun circular_N : N;
-fun circularity_N : N;
-fun circularize_V2 : V2;
-fun circulate_V : V;
-fun circulate_V2 : V2;
-fun circulation_N : N;
-fun circumcise_V2 : V2;
-fun circumcision_N : N;
-fun circumference_N : N;
-fun circumflex_N : N;
-fun circumlocution_N : N;
-fun circumnavigate_V2 : V2;
-fun circumnavigation_N : N;
-fun circumscribe_V2 : V2;
-fun circumscription_N : N;
-fun circumspect_A : A;
-fun circumspection_N : N;
-fun circumstance_N : N;
-fun circumstantial_A : A;
-fun circumvent_V2 : V2;
-fun circumvention_N : N;
-fun circus_N : N;
-fun cirencester_PN : PN;
-fun cirrhosis_N : N;
-fun cirrus_N : N;
-fun cissy_A : A;
-fun cissy_N : N;
-fun cistern_N : N;
-fun citadel_N : N;
-fun citation_N : N;
-fun cite_V2 : V2;
-fun citizen_N : N;
-fun citizenship_N : N;
-fun citric_A : A;
-fun citron_N : N;
-fun citrous_A : A;
-fun citrus_N : N;
-fun city_N : N;
-fun civet_N : N;
-fun civet_cat_N : N;
-fun civic_A : A;
-fun civics_N : N;
-fun civil_A : A;
-fun civilian_A : A;
-fun civilian_N : N;
-fun civility_N : N;
-fun civilization_N : N;
-fun civilize_V2 : V2;
-fun civvy_street_PN : PN;
-fun clack_N : N;
-fun clack_V : V;
-fun clackmannon_PN : PN;
-fun clacton_PN : PN;
-fun claim_N : N;
-fun claim_V : V;
-fun claim_V2 : V2;
-fun claimant_N : N;
-fun clairvoyance_N : N;
-fun clairvoyant_N : N;
-fun clam_N : N;
-fun clam_V : V;
-fun clambake_N : N;
-fun clamber_N : N;
-fun clamber_V : V;
-fun clammily_Adv : Adv;
-fun clammy_A : A;
-fun clamorous_A : A;
-fun clamour_N : N;
-fun clamour_V : V;
-fun clamour_V2 : V2;
-fun clamp_N : N;
-fun clamp_V : V;
-fun clamp_V2 : V2;
-fun clamp_down_N : N;
-fun clan_N : N;
-fun clandestine_A : A;
-fun clang_N : N;
-fun clang_V : V;
-fun clang_V2 : V2;
-fun clanger_N : N;
-fun clangorous_A : A;
-fun clangour_N : N;
-fun clank_N : N;
-fun clank_V : V;
-fun clank_V2 : V2;
-fun clannish_A : A;
-fun clansman_N : N;
-fun clap_N : N;
-fun clap_V : V;
-fun clap_V2 : V2;
-fun clapboard_N : N;
-fun clapper_N : N;
-fun clapperboard_N : N;
-fun claptrap_N : N;
-fun claque_N : N;
-fun clare_PN : PN;
-fun claret_N : N;
-fun clarification_N : N;
-fun clarify_V : V;
-fun clarify_V2 : V2;
-fun clarinet_N : N;
-fun clarinetist_N : N;
-fun clarinettist_N : N;
-fun clarion_N : N;
-fun clarity_N : N;
-fun clarkston_PN : PN;
-fun clarrie_PN : PN;
-fun clash_N : N;
-fun clash_V : V;
-fun clash_V2 : V2;
-fun clasp_N : N;
-fun clasp_V : V;
-fun clasp_V2 : V2;
-fun clasp_knife_N : N;
-fun class_N : N;
-fun class_V2 : V2;
-fun class_conscious_A : A;
-fun class_feeling_N : N;
-fun class_fellow_N : N;
-fun class_list_N : N;
-fun class_warfare_N : N;
-fun classic_A : A;
-fun classic_N : N;
-fun classical_A : A;
-fun classicism_N : N;
-fun classicist_N : N;
-fun classics_N : N;
-fun classifiable_A : A;
-fun classification_N : N;
-fun classified_A : A;
-fun classify_V2 : V2;
-fun classless_A : A;
-fun classmate_N : N;
-fun classroom_N : N;
-fun classy_A : A;
-fun clatter_N : N;
-fun clatter_V : V;
-fun clatter_V2 : V2;
-fun claud_PN : PN;
-fun claude_PN : PN;
-fun clause_N : N;
-fun claustrophobia_N : N;
-fun claustrophobic_A : A;
-fun clavichord_N : N;
-fun clavicle_N : N;
-fun claw_N : N;
-fun claw_V2 : V2;
-fun clawback_N : N;
-fun clawhammer_N : N;
-fun clay_N : N;
-fun clay_cross_PN : PN;
-fun clayey_A : A;
-fun clean_A : A;
-fun clean_Adv : Adv;
-fun clean_N : N;
-fun clean_V : V;
-fun clean_V2 : V2;
-fun clean_bowled_A : A;
-fun clean_cut_A : A;
-fun clean_limbed_A : A;
-fun clean_living_A : A;
-fun clean_shaven_A : A;
-fun clean_up_N : N;
-fun cleaner_N : N;
-fun cleanliness_N : N;
-fun cleanly_A : A;
-fun cleanse_V2 : V2;
-fun cleanser_N : N;
-fun clear_A : A;
-fun clear_Adv : Adv;
-fun clear_N : N;
-fun clear_V : V;
-fun clear_V2 : V2;
-fun clear_cut_Adv : Adv;
-fun clear_headed_A : A;
-fun clear_sighted_A : A;
-fun clearance_N : N;
-fun clearing_N : N;
-fun clearing_house_N : N;
-fun clearness_N : N;
-fun clearway_N : N;
-fun cleat_N : N;
-fun cleator_moor_PN : PN;
-fun cleavage_N : N;
-fun cleave_V : V;
-fun cleave_V2 : V2;
-fun cleaver_N : N;
-fun cleethorpes_PN : PN;
-fun clef_N : N;
-fun cleft_N : N;
-fun clem_PN : PN;
-fun clematis_N : N;
-fun clemency_N : N;
-fun clement_A : A;
-fun clement_PN : PN;
-fun clench_V2 : V2;
-fun clerestory_N : N;
-fun clergy_N : N;
-fun clergyman_N : N;
-fun cleric_N : N;
-fun clerical_A : A;
-fun clerihew_N : N;
-fun clerk_N : N;
-fun clerk_V : V;
-fun clermont_ferrand_PN : PN;
-fun clevedon_PN : PN;
-fun cleveland_PN : PN;
-fun clever_A : A;
-fun cleverness_N : N;
-fun clew_N : N;
-fun clew_V2 : V2;
-fun cliche_N : N;
-fun click_N : N;
-fun click_V : V;
-fun client_N : N;
-fun clientele_N : N;
-fun cliff_N : N;
-fun cliff_PN : PN;
-fun cliff_hanger_N : N;
-fun clifford_PN : PN;
-fun climacteric_N : N;
-fun climactic_A : A;
-fun climate_N : N;
-fun climatic_A : A;
-fun climatically_Adv : Adv;
-fun climatology_N : N;
-fun climax_N : N;
-fun climax_V : V;
-fun climax_V2 : V2;
-fun climb_N : N;
-fun climb_V : V;
-fun climb_V2 : V2;
-fun climb_down_N : N;
-fun climber_N : N;
-fun clime_N : N;
-fun clinch_N : N;
-fun clinch_V : V;
-fun clinch_V2 : V2;
-fun clincher_N : N;
-fun cling_V : V;
-fun clinic_N : N;
-fun clinical_A : A;
-fun clink_N : N;
-fun clink_V : V;
-fun clink_V2 : V2;
-fun clinker_N : N;
-fun clinker_built_A : A;
-fun clip_N : N;
-fun clip_V2 : V2;
-fun clip_joint_N : N;
-fun clip_on_A : A;
-fun clipper_N : N;
-fun clipping_N : N;
-fun clique_N : N;
-fun cliquish_A : A;
-fun clitheroe_PN : PN;
-fun clitoris_N : N;
-fun clive_PN : PN;
-fun cloak_N : N;
-fun cloak_V2 : V2;
-fun cloakroom_N : N;
-fun clobber_N : N;
-fun clobber_V2 : V2;
-fun cloche_N : N;
-fun clock_N : N;
-fun clock_V : V;
-fun clock_V2 : V2;
-fun clock_dial_N : N;
-fun clock_face_N : N;
-fun clock_golf_N : N;
-fun clock_tower_N : N;
-fun clock_watching_N : N;
-fun clockwise_Adv : Adv;
-fun clockwork_N : N;
-fun clod_N : N;
-fun clodhopper_N : N;
-fun clog_N : N;
-fun clog_V : V;
-fun clog_V2 : V2;
-fun clog_dance_N : N;
-fun cloggy_A : A;
-fun cloisonne_N : N;
-fun cloister_N : N;
-fun cloister_V2 : V2;
-fun clone_N : N;
-fun close_A : A;
-fun close_Adv : Adv;
-fun close_N : N;
-fun close_V : V;
-fun close_V2 : V2;
-fun close_cropped_A : A;
-fun close_cut_A : A;
-fun close_down_N : N;
-fun close_fisted_A : A;
-fun close_fitting_A : A;
-fun close_grained_A : A;
-fun close_hauled_A : A;
-fun close_set_A : A;
-fun close_up_N : N;
-fun closeness_N : N;
-fun closet_A : A;
-fun closet_N : N;
-fun closet_V2 : V2;
-fun closure_N : N;
-fun clot_N : N;
-fun clot_V : V;
-fun clot_V2 : V2;
-fun cloth_N : N;
-fun clothe_V2 : V2;
-fun clothes_basket_N : N;
-fun clothes_hanger_N : N;
-fun clothes_moth_N : N;
-fun clothes_peg_N : N;
-fun clothes_pin_N : N;
-fun clotheshorse_N : N;
-fun clothesline_N : N;
-fun clothier_N : N;
-fun clothing_N : N;
-fun cloud_N : N;
-fun cloud_V : V;
-fun cloud_V2 : V2;
-fun cloud_bank_N : N;
-fun cloud_capped_A : A;
-fun cloud_cuckoo_land_N : N;
-fun cloudburst_N : N;
-fun cloudless_A : A;
-fun cloudy_A : A;
-fun clout_N : N;
-fun clout_V2 : V2;
-fun clove_N : N;
-fun clove_hitch_N : N;
-fun clover_N : N;
-fun cloverleaf_N : N;
-fun clown_N : N;
-fun clown_V : V;
-fun clowne_PN : PN;
-fun clownish_A : A;
-fun cloy_V : V;
-fun cloy_V2 : V2;
-fun club_N : N;
-fun club_V : V;
-fun club_V2 : V2;
-fun club_footed_A : A;
-fun clubbable_A : A;
-fun clubfoot_N : N;
-fun clubhouse_N : N;
-fun cluck_N : N;
-fun cluck_V : V;
-fun clue_N : N;
-fun clump_N : N;
-fun clump_V : V;
-fun clump_V2 : V2;
-fun clumsily_Adv : Adv;
-fun clumsiness_N : N;
-fun clumsy_A : A;
-fun clunk_N : N;
-fun clunk_V : V;
-fun cluster_N : N;
-fun cluster_V : V;
-fun clutch_N : N;
-fun clutch_V : V;
-fun clutch_V2 : V2;
-fun clutter_N : N;
-fun clutter_V2 : V2;
-fun clwyd_PN : PN;
-fun clydach_PN : PN;
-fun clydebank_PN : PN;
-fun cm_N : N;
-fun co_N : N;
-fun co_ed_N : N;
-fun co_op_N : N;
-fun co_opt_V2 : V2;
-fun co_respondent_N : N;
-fun co_star_N : N;
-fun co_star_V : V;
-fun co_star_V2 : V2;
-fun coach_N : N;
-fun coach_V : V;
-fun coach_V2 : V2;
-fun coach_builder_N : N;
-fun coachman_N : N;
-fun coagulate_V : V;
-fun coagulate_V2 : V2;
-fun coagulation_N : N;
-fun coal_N : N;
-fun coal_V : V;
-fun coal_V2 : V2;
-fun coal_gas_N : N;
-fun coal_hole_N : N;
-fun coal_house_N : N;
-fun coal_scuttle_N : N;
-fun coal_seam_N : N;
-fun coal_tar_N : N;
-fun coalesce_V : V;
-fun coalescence_N : N;
-fun coalface_N : N;
-fun coalfield_N : N;
-fun coaling_station_N : N;
-fun coalition_N : N;
-fun coalman_N : N;
-fun coalmine_N : N;
-fun coalpit_N : N;
-fun coalville_PN : PN;
-fun coaming_N : N;
-fun coarse_A : A;
-fun coarsen_V : V;
-fun coarsen_V2 : V2;
-fun coarseness_N : N;
-fun coast_N : N;
-fun coast_V : V;
-fun coast_V2 : V2;
-fun coastal_A : A;
-fun coaster_N : N;
-fun coastguard_N : N;
-fun coastline_N : N;
-fun coastwise_A : A;
-fun coastwise_Adv : Adv;
-fun coat_N : N;
-fun coat_V2 : V2;
-fun coat_hanger_N : N;
-fun coatbridge_PN : PN;
-fun coatee_N : N;
-fun coating_N : N;
-fun coax_V : V;
-fun coax_V2 : V2;
-fun coaxing_N : N;
-fun coaxingly_Adv : Adv;
-fun cob_N : N;
-fun cob_nut_N : N;
-fun cobalt_N : N;
-fun cobber_N : N;
-fun cobble_N : N;
-fun cobble_V2 : V2;
-fun cobbler_N : N;
-fun cobblestone_N : N;
-fun cobham_PN : PN;
-fun cobra_N : N;
-fun cobweb_N : N;
-fun coca_cola_N : N;
-fun cocaine_N : N;
-fun cochineal_N : N;
-fun cochlea_N : N;
-fun cock_N : N;
-fun cock_V2 : V2;
-fun cock_a_doodle_doo_N : N;
-fun cock_a_hoop_A : A;
-fun cock_a_hoop_Adv : Adv;
-fun cock_crow_N : N;
-fun cockade_N : N;
-fun cockatoo_N : N;
-fun cockchafer_N : N;
-fun cocker_N : N;
-fun cockerel_N : N;
-fun cockermouth_PN : PN;
-fun cockeyed_A : A;
-fun cockfighting_N : N;
-fun cockhorse_N : N;
-fun cockle_N : N;
-fun cockleshell_N : N;
-fun cockney_A : A;
-fun cockney_N : N;
-fun cockpit_N : N;
-fun cockroach_N : N;
-fun cockscomb_N : N;
-fun cocksure_A : A;
-fun cocktail_N : N;
-fun cockup_N : N;
-fun cocky_A : A;
-fun coco_N : N;
-fun cocoa_N : N;
-fun coconut_N : N;
-fun cocoon_N : N;
-fun cocoon_V2 : V2;
-fun cocotte_N : N;
-fun cod_N : N;
-fun cod_PN : PN;
-fun cod_V : V;
-fun cod_V2 : V2;
-fun cod_liver_oil_N : N;
-fun coda_N : N;
-fun coddle_V2 : V2;
-fun code_N : N;
-fun code_V2 : V2;
-fun codeine_N : N;
-fun codex_N : N;
-fun codfish_N : N;
-fun codger_N : N;
-fun codicil_N : N;
-fun codification_N : N;
-fun codify_V2 : V2;
-fun codling_N : N;
-fun codpiece_N : N;
-fun codsall_PN : PN;
-fun coeducation_N : N;
-fun coeducational_A : A;
-fun coefficient_N : N;
-fun coerce_V2 : V2;
-fun coercion_N : N;
-fun coercive_A : A;
-fun coeval_A : A;
-fun coeval_N : N;
-fun coexist_V : V;
-fun coexistence_N : N;
-fun coffee_N : N;
-fun coffee_house_N : N;
-fun coffee_mill_N : N;
-fun coffee_stall_N : N;
-fun coffer_N : N;
-fun coffer_dam_N : N;
-fun coffin_N : N;
-fun cog_N : N;
-fun cogency_N : N;
-fun cogent_A : A;
-fun cogitate_V : V;
-fun cogitate_V2 : V2;
-fun cogitation_N : N;
-fun cognac_N : N;
-fun cognate_A : A;
-fun cognate_N : N;
-fun cognition_N : N;
-fun cognizance_N : N;
-fun cognizant_A : A;
-fun cognomen_N : N;
-fun cogwheel_N : N;
-fun cohabit_V : V;
-fun cohabitation_N : N;
-fun cohere_V : V;
-fun coherence_N : N;
-fun coherency_N : N;
-fun coherent_A : A;
-fun cohesion_N : N;
-fun cohesive_A : A;
-fun cohort_N : N;
-fun coif_N : N;
-fun coiffeur_N : N;
-fun coiffure_N : N;
-fun coign_N : N;
-fun coil_N : N;
-fun coil_V : V;
-fun coil_V2 : V2;
-fun coimbatore_PN : PN;
-fun coin_N : N;
-fun coin_V2 : V2;
-fun coinage_N : N;
-fun coincide_V : V;
-fun coincidence_N : N;
-fun coincident_A : A;
-fun coincidental_A : A;
-fun coiner_N : N;
-fun coir_N : N;
-fun coition_N : N;
-fun coitus_N : N;
-fun coke_N : N;
-fun coke_V2 : V2;
-fun col_N : N;
-fun col_PN : PN;
-fun cola_N : N;
-fun colander_N : N;
-fun colchester_PN : PN;
-fun cold_A : A;
-fun cold_N : N;
-fun cold_blooded_A : A;
-fun cold_hearted_A : A;
-fun cold_shoulder_V2 : V2;
-fun coldness_N : N;
-fun coleshill_PN : PN;
-fun coleslaw_N : N;
-fun colic_N : N;
-fun colin_PN : PN;
-fun colitis_N : N;
-fun coll_PN : PN;
-fun collaborate_V : V;
-fun collaboration_N : N;
-fun collaborationist_N : N;
-fun collaborator_N : N;
-fun collage_N : N;
-fun collapsable_A : A;
-fun collapse_N : N;
-fun collapse_V : V;
-fun collapsible_A : A;
-fun collar_N : N;
-fun collar_V2 : V2;
-fun collarbone_N : N;
-fun collate_V2 : V2;
-fun collateral_A : A;
-fun collateral_N : N;
-fun collation_N : N;
-fun colleague_N : N;
-fun collect_A : A;
-fun collect_Adv : Adv;
-fun collect_N : N;
-fun collect_V : V;
-fun collect_V2 : V2;
-fun collected_A : A;
-fun collection_N : N;
-fun collective_A : A;
-fun collectivization_N : N;
-fun collectivize_V2 : V2;
-fun collector_N : N;
-fun colleen_N : N;
-fun college_N : N;
-fun collegiate_A : A;
-fun collide_V : V;
-fun collie_N : N;
-fun collier_N : N;
-fun colliery_N : N;
-fun collision_N : N;
-fun collocate_V : V;
-fun collocation_N : N;
-fun colloquial_A : A;
-fun colloquialism_N : N;
-fun colloquy_N : N;
-fun collusion_N : N;
-fun collusive_A : A;
-fun colne_PN : PN;
-fun cologne_PN : PN;
-fun colombia_PN : PN;
-fun colombian_A : A;
-fun colombian_N : N;
-fun colombo_PN : PN;
-fun colon_N : N;
-fun colonel_N : N;
-fun colonial_A : A;
-fun colonial_N : N;
-fun colonialism_N : N;
-fun colonialist_N : N;
-fun colonist_N : N;
-fun colonization_N : N;
-fun colonize_V2 : V2;
-fun colonizer_N : N;
-fun colonnade_N : N;
-fun colonnaded_A : A;
-fun colony_N : N;
-fun colorado_PN : PN;
-fun coloratura_N : N;
-fun colossal_A : A;
-fun colossus_N : N;
-fun colour_N : N;
-fun colour_V : V;
-fun colour_V2 : V2;
-fun colour_bar_N : N;
-fun colour_blind_A : A;
-fun colour_wash_N : N;
-fun coloured_A : A;
-fun colourful_A : A;
-fun colouring_N : N;
-fun colourless_A : A;
-fun colt_N : N;
-fun coltish_A : A;
-fun columbia_PN : PN;
-fun columbine_N : N;
-fun columbus_PN : PN;
-fun column_N : N;
-fun columnist_N : N;
-fun colwyn_bay_PN : PN;
-fun coma_N : N;
-fun comatose_A : A;
-fun comb_N : N;
-fun comb_V : V;
-fun comb_V2 : V2;
-fun comb_out_N : N;
-fun combat_N : N;
-fun combat_V : V;
-fun combat_V2 : V2;
-fun combatant_A : A;
-fun combatant_N : N;
-fun combative_A : A;
-fun combination_N : N;
-fun combination_lock_N : N;
-fun combine_N : N;
-fun combine_V : V;
-fun combine_V2 : V2;
-fun combustible_A : A;
-fun combustible_N : N;
-fun combustion_N : N;
-fun come_V : V;
-fun come_at_able_A : A;
-fun come_on_N : N;
-fun comeback_N : N;
-fun comedian_N : N;
-fun comedienne_N : N;
-fun comedown_N : N;
-fun comedy_N : N;
-fun comeliness_N : N;
-fun comely_A : A;
-fun comer_N : N;
-fun comestible_N : N;
-fun comet_N : N;
-fun comfit_N : N;
-fun comfort_N : N;
-fun comfort_V2 : V2;
-fun comfortable_A : A;
-fun comforter_N : N;
-fun comfortingly_Adv : Adv;
-fun comfortless_A : A;
-fun comfrey_N : N;
-fun comfy_A : A;
-fun comic_A : A;
-fun comic_N : N;
-fun comical_A : A;
-fun coming_A : A;
-fun coming_N : N;
-fun comity_N : N;
-fun comma_N : N;
-fun command_N : N;
-fun command_V : V;
-fun command_V2 : V2;
-fun commandant_N : N;
-fun commandeer_V2 : V2;
-fun commander_N : N;
-fun commanding_A : A;
-fun commandment_N : N;
-fun commando_N : N;
-fun commemorate_V2 : V2;
-fun commemoration_N : N;
-fun commemorative_A : A;
-fun commence_V : V;
-fun commence_V2 : V2;
-fun commencement_N : N;
-fun commend_V2 : V2;
-fun commendable_A : A;
-fun commendation_N : N;
-fun commensurable_A : A;
-fun commensurate_A : A;
-fun comment_N : N;
-fun comment_V : V;
-fun commentary_N : N;
-fun commentate_V : V;
-fun commentator_N : N;
-fun commerce_N : N;
-fun commercial_A : A;
-fun commercial_N : N;
-fun commercialism_N : N;
-fun commercialize_V2 : V2;
-fun commination_N : N;
-fun comminatory_A : A;
-fun commingle_V : V;
-fun commingle_V2 : V2;
-fun commiserate_V : V;
-fun commiseration_N : N;
-fun commissar_N : N;
-fun commissariat_N : N;
-fun commissary_N : N;
-fun commission_N : N;
-fun commission_V2 : V2;
-fun commissionaire_N : N;
-fun commissioned_A : A;
-fun commissioner_N : N;
-fun commit_V2 : V2;
-fun commital_N : N;
-fun commitment_N : N;
-fun committee_N : N;
-fun commode_N : N;
-fun commodious_A : A;
-fun commodity_N : N;
-fun commodore_N : N;
-fun common_A : A;
-fun common_N : N;
-fun common_room_N : N;
-fun commonalty_N : N;
-fun commoner_N : N;
-fun commonplace_A : A;
-fun commonplace_N : N;
-fun commonwealth_N : N;
-fun commotion_N : N;
-fun communal_A : A;
-fun commune_N : N;
-fun commune_V : V;
-fun communicable_A : A;
-fun communicant_N : N;
-fun communicate_V : V;
-fun communicate_V2 : V2;
-fun communication_N : N;
-fun communicative_A : A;
-fun communion_N : N;
-fun communique_N : N;
-fun communism_N : N;
-fun communist_A : A;
-fun communist_N : N;
-fun community_N : N;
-fun commutable_A : A;
-fun commutation_N : N;
-fun commutator_N : N;
-fun commute_V : V;
-fun commute_V2 : V2;
-fun commuter_N : N;
-fun compact_A : A;
-fun compact_N : N;
-fun compact_V2 : V2;
-fun compactness_N : N;
-fun companion_N : N;
-fun companionable_A : A;
-fun companionship_N : N;
-fun companionway_N : N;
-fun company_N : N;
-fun comparability_N : N;
-fun comparable_A : A;
-fun comparative_A : A;
-fun comparative_N : N;
-fun compare_N : N;
-fun compare_V : V;
-fun compare_V2 : V2;
-fun comparison_N : N;
-fun compartment_N : N;
-fun compartmentalize_V2 : V2;
-fun compass_N : N;
-fun compass_V2 : V2;
-fun compassion_N : N;
-fun compassionate_A : A;
-fun compatibility_N : N;
-fun compatible_A : A;
-fun compatriot_N : N;
-fun compeer_N : N;
-fun compel_V2 : V2;
-fun compendious_A : A;
-fun compendium_N : N;
-fun compensate_V : V;
-fun compensate_V2 : V2;
-fun compensation_N : N;
-fun compensatory_A : A;
-fun compete_V : V;
-fun competence_N : N;
-fun competent_A : A;
-fun competition_N : N;
-fun competitive_A : A;
-fun competitiveness_N : N;
-fun competitor_N : N;
-fun compilation_N : N;
-fun compile_V2 : V2;
-fun compiler_N : N;
-fun complacence_N : N;
-fun complacency_N : N;
-fun complacent_A : A;
-fun complain_V : V;
-fun complainant_N : N;
-fun complainingly_Adv : Adv;
-fun complaint_N : N;
-fun complaisance_N : N;
-fun complaisant_A : A;
-fun complement_N : N;
-fun complement_V2 : V2;
-fun complementary_A : A;
-fun complete_A : A;
-fun complete_V2 : V2;
-fun completeness_N : N;
-fun completion_N : N;
-fun complex_A : A;
-fun complex_N : N;
-fun complexion_N : N;
-fun complexity_N : N;
-fun compliance_N : N;
-fun compliant_A : A;
-fun complicate_V2 : V2;
-fun complicated_A : A;
-fun complication_N : N;
-fun complicity_N : N;
-fun compliment_N : N;
-fun compliment_V2 : V2;
-fun complimentary_A : A;
-fun complin_N : N;
-fun compline_N : N;
-fun comply_V2 : V2;
-fun component_A : A;
-fun component_N : N;
-fun comport_V : V;
-fun comport_V2 : V2;
-fun comportment_N : N;
-fun compos_mentis_A : A;
-fun compose_V : V;
-fun compose_V2 : V2;
-fun composed_A : A;
-fun composer_N : N;
-fun composite_A : A;
-fun composition_N : N;
-fun compositor_N : N;
-fun compost_N : N;
-fun compost_V2 : V2;
-fun composure_N : N;
-fun compote_N : N;
-fun compound_A : A;
-fun compound_N : N;
-fun compound_V : V;
-fun compound_V2 : V2;
-fun comprehend_V2 : V2;
-fun comprehensibility_N : N;
-fun comprehensible_A : A;
-fun comprehension_N : N;
-fun comprehensive_A : A;
-fun comprehensiveness_N : N;
-fun compress_N : N;
-fun compress_V2 : V2;
-fun compression_N : N;
-fun compressor_N : N;
-fun comprise_V2 : V2;
-fun compromise_N : N;
-fun compromise_V : V;
-fun compromise_V2 : V2;
-fun comptroller_N : N;
-fun compulsion_N : N;
-fun compulsive_A : A;
-fun compulsory_A : A;
-fun compunction_N : N;
-fun computation_N : N;
-fun computational_A : A;
-fun compute_V : V;
-fun compute_V2 : V2;
-fun computer_N : N;
-fun computerize_V2 : V2;
-fun compere_N : N;
-fun compere_V2 : V2;
-fun comrade_N : N;
-fun comradely_Adv : Adv;
-fun comradeship_N : N;
-fun con_Adv : Adv;
-fun con_N : N;
-fun con_V2 : V2;
-fun con_man_N : N;
-fun concatenation_N : N;
-fun concave_A : A;
-fun concavity_N : N;
-fun conceal_V2 : V2;
-fun concealment_N : N;
-fun concede_V2 : V2;
-fun conceit_N : N;
-fun conceited_A : A;
-fun conceivable_A : A;
-fun conceive_V : V;
-fun conceive_V2 : V2;
-fun concentrate_N : N;
-fun concentrate_V : V;
-fun concentrate_V2 : V2;
-fun concentrated_A : A;
-fun concentration_N : N;
-fun concentric_A : A;
-fun concept_N : N;
-fun conception_N : N;
-fun conceptual_A : A;
-fun concern_N : N;
-fun concern_V2 : V2;
-fun concerned_A : A;
-fun concert_N : N;
-fun concert_V2 : V2;
-fun concert_hall_N : N;
-fun concerted_A : A;
-fun concertina_N : N;
-fun concerto_N : N;
-fun concession_N : N;
-fun concessionaire_N : N;
-fun concessive_A : A;
-fun conch_N : N;
-fun conchology_N : N;
-fun concierge_N : N;
-fun conciliate_V2 : V2;
-fun conciliation_N : N;
-fun conciliatory_A : A;
-fun concise_A : A;
-fun conciseness_N : N;
-fun conclave_N : N;
-fun conclude_V : V;
-fun conclude_V2 : V2;
-fun conclusion_N : N;
-fun conclusive_A : A;
-fun concoct_V2 : V2;
-fun concoction_N : N;
-fun concomitant_A : A;
-fun concomitant_N : N;
-fun concord_N : N;
-fun concordance_N : N;
-fun concordant_A : A;
-fun concordat_N : N;
-fun concourse_N : N;
-fun concrete_A : A;
-fun concrete_N : N;
-fun concrete_V : V;
-fun concrete_V2 : V2;
-fun concretion_N : N;
-fun concubine_N : N;
-fun concupiscence_N : N;
-fun concur_V : V;
-fun concurrence_N : N;
-fun concurrent_A : A;
-fun concuss_V2 : V2;
-fun concussion_N : N;
-fun condemn_V2 : V2;
-fun condemnation_N : N;
-fun condensation_N : N;
-fun condense_V : V;
-fun condense_V2 : V2;
-fun condenser_N : N;
-fun condescend_V : V;
-fun condescending_A : A;
-fun condescension_N : N;
-fun condign_A : A;
-fun condiment_N : N;
-fun condition_N : N;
-fun condition_V2 : V2;
-fun conditional_A : A;
-fun conditioned_A : A;
-fun conditioner_N : N;
-fun condole_V : V;
-fun condolence_N : N;
-fun condominium_N : N;
-fun condonation_N : N;
-fun condone_V2 : V2;
-fun condor_N : N;
-fun conduce_V : V;
-fun conducive_A : A;
-fun conduct_N : N;
-fun conduct_V : V;
-fun conduct_V2 : V2;
-fun conduction_N : N;
-fun conductive_A : A;
-fun conductivity_N : N;
-fun conductor_N : N;
-fun conductress_N : N;
-fun conduit_N : N;
-fun cone_N : N;
-fun cone_V2 : V2;
-fun coney_N : N;
-fun confab_N : N;
-fun confab_V : V;
-fun confabulate_V : V;
-fun confabulation_N : N;
-fun confection_N : N;
-fun confectioner_N : N;
-fun confectionery_N : N;
-fun confederacy_N : N;
-fun confederate_A : A;
-fun confederate_N : N;
-fun confederate_V : V;
-fun confederate_V2 : V2;
-fun confederation_N : N;
-fun confer_V : V;
-fun confer_V2 : V2;
-fun conference_N : N;
-fun conferment_N : N;
-fun confess_V : V;
-fun confess_V2 : V2;
-fun confessedly_Adv : Adv;
-fun confession_N : N;
-fun confessional_N : N;
-fun confessor_N : N;
-fun confetti_N : N;
-fun confidant_N : N;
-fun confide_V : V;
-fun confide_V2 : V2;
-fun confidence_N : N;
-fun confident_A : A;
-fun confidential_A : A;
-fun confidentiality_N : N;
-fun confiding_A : A;
-fun configuration_N : N;
-fun configure_V2 : V2;
-fun configured_A : A;
-fun confine_V2 : V2;
-fun confined_A : A;
-fun confinement_N : N;
-fun confirm_V2 : V2;
-fun confirmation_N : N;
-fun confirmed_A : A;
-fun confiscate_V2 : V2;
-fun confiscation_N : N;
-fun conflagration_N : N;
-fun conflict_N : N;
-fun conflict_V : V;
-fun conflicting_A : A;
-fun confluence_N : N;
-fun confluent_A : A;
-fun conform_V : V;
-fun conform_V2 : V2;
-fun conformable_A : A;
-fun conformation_N : N;
-fun conformist_N : N;
-fun conformity_N : N;
-fun confound_V2 : V2;
-fun confounded_A : A;
-fun confront_V2 : V2;
-fun confrontation_N : N;
-fun confrere_N : N;
-fun confucian_A : A;
-fun confucian_N : N;
-fun confuse_V2 : V2;
-fun confusedly_Adv : Adv;
-fun confusion_N : N;
-fun confutation_N : N;
-fun confute_V2 : V2;
-fun congeal_V : V;
-fun congeal_V2 : V2;
-fun congenial_A : A;
-fun congenital_A : A;
-fun conger_N : N;
-fun conger_eel_N : N;
-fun congested_A : A;
-fun congestion_N : N;
-fun congleton_PN : PN;
-fun conglomerate_A : A;
-fun conglomerate_N : N;
-fun conglomerate_V : V;
-fun conglomerate_V2 : V2;
-fun conglomeration_N : N;
-fun congo_PN : PN;
-fun congolese_A : A;
-fun congolese_N : N;
-fun congratulate_V2 : V2;
-fun congratulation_N : N;
-fun congratulatory_A : A;
-fun congregate_V : V;
-fun congregate_V2 : V2;
-fun congregation_N : N;
-fun congregational_A : A;
-fun congress_N : N;
-fun congressional_A : A;
-fun congressman_N : N;
-fun congresswoman_N : N;
-fun congruent_A : A;
-fun congruous_A : A;
-fun conge_N : N;
-fun conic_A : A;
-fun conical_A : A;
-fun conifer_N : N;
-fun coniferous_A : A;
-fun conjectural_A : A;
-fun conjecture_N : N;
-fun conjecture_V : V;
-fun conjecture_V2 : V2;
-fun conjoin_V : V;
-fun conjoin_V2 : V2;
-fun conjoint_A : A;
-fun conjugal_A : A;
-fun conjugate_V : V;
-fun conjugate_V2 : V2;
-fun conjugation_N : N;
-fun conjunction_N : N;
-fun conjunctive_A : A;
-fun conjunctive_N : N;
-fun conjuncture_N : N;
-fun conjuration_N : N;
-fun conjure_V : V;
-fun conjure_V2 : V2;
-fun conjurer_N : N;
-fun conjuror_N : N;
-fun conk_N : N;
-fun conk_V : V;
-fun conker_N : N;
-fun connah's_quay_PN : PN;
-fun connaught_PN : PN;
-fun connect_V : V;
-fun connect_V2 : V2;
-fun connecticut_PN : PN;
-fun connection_N : N;
-fun connective_A : A;
-fun connective_N : N;
-fun connexion_N : N;
-fun connie_PN : PN;
-fun conning_A : A;
-fun connivance_N : N;
-fun connive_V : V;
-fun connoisseur_N : N;
-fun connotation_N : N;
-fun connote_V2 : V2;
-fun connubial_A : A;
-fun conquer_V2 : V2;
-fun conqueror_N : N;
-fun conquest_N : N;
-fun conquistador_N : N;
-fun cons_PN : PN;
-fun consanguinity_N : N;
-fun conscience_N : N;
-fun conscience_smitten_A : A;
-fun conscientious_A : A;
-fun conscientiousness_N : N;
-fun conscious_A : A;
-fun consciousness_N : N;
-fun conscript_N : N;
-fun conscript_V2 : V2;
-fun conscription_N : N;
-fun consecrate_V2 : V2;
-fun consecration_N : N;
-fun consecutive_A : A;
-fun consensus_N : N;
-fun consent_N : N;
-fun consent_V : V;
-fun consequence_N : N;
-fun consequent_A : A;
-fun consequential_A : A;
-fun conservancy_N : N;
-fun conservation_N : N;
-fun conservatism_N : N;
-fun conservative_A : A;
-fun conservative_N : N;
-fun conservatoire_N : N;
-fun conservatory_N : N;
-fun conserve_N : N;
-fun conserve_V2 : V2;
-fun consett_PN : PN;
-fun consider_V2 : V2;
-fun considerable_A : A;
-fun considerate_A : A;
-fun considerateness_N : N;
-fun consideration_N : N;
-fun consign_V2 : V2;
-fun consignee_N : N;
-fun consigner_N : N;
-fun consignment_N : N;
-fun consignor_N : N;
-fun consist_V : V;
-fun consistence_N : N;
-fun consistency_N : N;
-fun consistent_A : A;
-fun consistory_N : N;
-fun consolable_A : A;
-fun consolation_N : N;
-fun consolatory_A : A;
-fun console_N : N;
-fun console_V2 : V2;
-fun consolidate_V : V;
-fun consolidate_V2 : V2;
-fun consolidation_N : N;
-fun consomme_N : N;
-fun consonance_N : N;
-fun consonant_A : A;
-fun consonant_N : N;
-fun consort_N : N;
-fun consort_V : V;
-fun consortium_N : N;
-fun conspectus_N : N;
-fun conspicuous_A : A;
-fun conspicuousness_N : N;
-fun conspiracy_N : N;
-fun conspirator_N : N;
-fun conspiratorial_A : A;
-fun conspire_V : V;
-fun conspire_V2 : V2;
-fun constable_N : N;
-fun constabulary_N : N;
-fun constance_PN : PN;
-fun constancy_N : N;
-fun constant_A : A;
-fun constant_N : N;
-fun constellation_N : N;
-fun consternation_N : N;
-fun constipate_V2 : V2;
-fun constipated_A : A;
-fun constipation_N : N;
-fun constituency_N : N;
-fun constituent_A : A;
-fun constituent_N : N;
-fun constitute_V2 : V2;
-fun constitution_N : N;
-fun constitutional_A : A;
-fun constitutional_N : N;
-fun constitutionalism_N : N;
-fun constitutionalist_N : N;
-fun constitutionalize_V2 : V2;
-fun constitutive_A : A;
-fun constrain_V2 : V2;
-fun constrained_A : A;
-fun constraint_N : N;
-fun constrict_V2 : V2;
-fun constriction_N : N;
-fun construct_V2 : V2;
-fun construction_N : N;
-fun constructional_A : A;
-fun constructive_A : A;
-fun constructor_N : N;
-fun construe_V : V;
-fun construe_V2 : V2;
-fun consubstantiation_N : N;
-fun consul_N : N;
-fun consular_A : A;
-fun consulate_N : N;
-fun consulship_N : N;
-fun consult_V : V;
-fun consult_V2 : V2;
-fun consultant_N : N;
-fun consultation_N : N;
-fun consultative_A : A;
-fun consume_V : V;
-fun consume_V2 : V2;
-fun consumer_N : N;
-fun consuming_A : A;
-fun consummate_A : A;
-fun consummate_V2 : V2;
-fun consummation_N : N;
-fun consumption_N : N;
-fun consumptive_A : A;
-fun consumptive_N : N;
-fun cont_PN : PN;
-fun contact_N : N;
-fun contact_V2 : V2;
-fun contagion_N : N;
-fun contagious_A : A;
-fun contain_V2 : V2;
-fun container_N : N;
-fun containment_N : N;
-fun contaminant_N : N;
-fun contaminate_V2 : V2;
-fun contamination_N : N;
-fun contemn_V2 : V2;
-fun contemplate_V : V;
-fun contemplate_V2 : V2;
-fun contemplation_N : N;
-fun contemplative_A : A;
-fun contemporaneous_A : A;
-fun contemporary_A : A;
-fun contemporary_N : N;
-fun contempt_N : N;
-fun contemptible_A : A;
-fun contemptuous_A : A;
-fun contend_V : V;
-fun contend_V2 : V2;
-fun contender_N : N;
-fun content_A : A;
-fun content_N : N;
-fun content_V2 : V2;
-fun contented_A : A;
-fun contention_N : N;
-fun contentious_A : A;
-fun contentment_N : N;
-fun conterminous_A : A;
-fun contest_N : N;
-fun contest_V : V;
-fun contest_V2 : V2;
-fun contestant_N : N;
-fun context_N : N;
-fun contextual_A : A;
-fun contiguity_N : N;
-fun contiguous_A : A;
-fun continence_N : N;
-fun continent_A : A;
-fun continent_N : N;
-fun continental_A : A;
-fun contingency_N : N;
-fun contingent_A : A;
-fun contingent_N : N;
-fun continual_A : A;
-fun continuance_N : N;
-fun continuation_N : N;
-fun continue_V : V;
-fun continue_V2 : V2;
-fun continuity_N : N;
-fun continuous_A : A;
-fun contort_V2 : V2;
-fun contortion_N : N;
-fun contortionist_N : N;
-fun contour_N : N;
-fun contour_V2 : V2;
-fun contraband_N : N;
-fun contrabass_N : N;
-fun contraception_N : N;
-fun contraceptive_A : A;
-fun contraceptive_N : N;
-fun contract_N : N;
-fun contract_V : V;
-fun contract_V2 : V2;
-fun contractible_A : A;
-fun contractile_A : A;
-fun contraction_N : N;
-fun contractor_N : N;
-fun contractual_A : A;
-fun contradict_V2 : V2;
-fun contradiction_N : N;
-fun contradictory_A : A;
-fun contradistinction_N : N;
-fun contradistinguish_V2 : V2;
-fun contralto_N : N;
-fun contraption_N : N;
-fun contrapuntal_A : A;
-fun contrariety_N : N;
-fun contrariness_N : N;
-fun contrariwise_Adv : Adv;
-fun contrary_A : A;
-fun contrary_N : N;
-fun contrast_N : N;
-fun contrast_V : V;
-fun contrast_V2 : V2;
-fun contrastingly_Adv : Adv;
-fun contravene_V2 : V2;
-fun contravention_N : N;
-fun contretemps_N : N;
-fun contribute_V : V;
-fun contribute_V2 : V2;
-fun contribution_N : N;
-fun contributor_N : N;
-fun contributory_A : A;
-fun contrite_A : A;
-fun contrition_N : N;
-fun contrivance_N : N;
-fun contrive_V : V;
-fun contrive_V2 : V2;
-fun contriver_N : N;
-fun control_N : N;
-fun control_V2 : V2;
-fun controllable_A : A;
-fun controller_N : N;
-fun controversial_A : A;
-fun controversialist_N : N;
-fun controversy_N : N;
-fun controvert_V2 : V2;
-fun contumacious_A : A;
-fun contumacy_N : N;
-fun contumelious_A : A;
-fun contumely_N : N;
-fun contuse_V2 : V2;
-fun contusion_N : N;
-fun conundrum_N : N;
-fun conurbation_N : N;
-fun convalesce_V : V;
-fun convalescence_N : N;
-fun convalescent_A : A;
-fun convalescent_N : N;
-fun convection_N : N;
-fun convector_N : N;
-fun convene_V : V;
-fun convene_V2 : V2;
-fun convener_N : N;
-fun convenience_N : N;
-fun convenient_A : A;
-fun convent_N : N;
-fun conventicle_N : N;
-fun convention_N : N;
-fun conventional_A : A;
-fun conventionality_N : N;
-fun converge_V : V;
-fun convergence_N : N;
-fun convergent_A : A;
-fun conversant_A : A;
-fun conversation_N : N;
-fun conversational_A : A;
-fun conversationalist_N : N;
-fun converse_A : A;
-fun converse_N : N;
-fun converse_V : V;
-fun conversion_N : N;
-fun convert_N : N;
-fun convert_V2 : V2;
-fun converted_A : A;
-fun converter_N : N;
-fun convertibility_N : N;
-fun convertible_A : A;
-fun convertible_N : N;
-fun convex_A : A;
-fun convexity_N : N;
-fun convey_V2 : V2;
-fun conveyance_N : N;
-fun conveyancer_N : N;
-fun conveyer_N : N;
-fun conveyer_belt_N : N;
-fun conveyor_N : N;
-fun convict_N : N;
-fun convict_V2 : V2;
-fun conviction_N : N;
-fun convince_V2 : V2;
-fun convincible_A : A;
-fun convincing_A : A;
-fun convivial_A : A;
-fun conviviality_N : N;
-fun convocation_N : N;
-fun convoke_V2 : V2;
-fun convoluted_A : A;
-fun convolution_N : N;
-fun convolvulus_N : N;
-fun convoy_N : N;
-fun convoy_V2 : V2;
-fun convulse_V2 : V2;
-fun convulsion_N : N;
-fun convulsive_A : A;
-fun conwy_PN : PN;
-fun cony_N : N;
-fun coo_N : N;
-fun coo_V : V;
-fun coo_V2 : V2;
-fun cook_N : N;
-fun cook_V : V;
-fun cook_V2 : V2;
-fun cookbook_N : N;
-fun cooker_N : N;
-fun cookery_N : N;
-fun cookery_book_N : N;
-fun cookham_PN : PN;
-fun cookhouse_N : N;
-fun cookie_N : N;
-fun cooking_N : N;
-fun cooky_N : N;
-fun cool_A : A;
-fun cool_N : N;
-fun cool_V : V;
-fun cool_V2 : V2;
-fun cool_headed_A : A;
-fun coolant_N : N;
-fun cooler_N : N;
-fun coolie_N : N;
-fun cooling_tower_N : N;
-fun coolness_N : N;
-fun coon_N : N;
-fun coop_N : N;
-fun coop_V2 : V2;
-fun cooper_N : N;
-fun cooperate_V : V;
-fun cooperation_N : N;
-fun cooperative_A : A;
-fun cooperative_N : N;
-fun cooperator_N : N;
-fun coordinate_A : A;
-fun coordinate_N : N;
-fun coordinate_V2 : V2;
-fun coordination_N : N;
-fun coordinator_N : N;
-fun coot_N : N;
-fun cop_N : N;
-fun cop_V : V;
-fun cop_V2 : V2;
-fun cop_out_N : N;
-fun copartner_N : N;
-fun copartnership_N : N;
-fun cope_N : N;
-fun cope_V : V;
-fun copeck_N : N;
-fun copenhagen_PN : PN;
-fun copernican_A : A;
-fun coping_N : N;
-fun coping_stone_N : N;
-fun copious_A : A;
-fun copper_N : N;
-fun copper_V2 : V2;
-fun copper_bottom_V2 : V2;
-fun copper_bottomed_A : A;
-fun copperhead_N : N;
-fun copperplate_N : N;
-fun coppersmith_N : N;
-fun coppice_N : N;
-fun coppull_PN : PN;
-fun copra_N : N;
-fun copse_N : N;
-fun copt_A : A;
-fun copt_N : N;
-fun coptic_N : N;
-fun copula_N : N;
-fun copulate_V : V;
-fun copulation_N : N;
-fun copulative_A : A;
-fun copulative_N : N;
-fun copy_N : N;
-fun copy_V : V;
-fun copy_V2 : V2;
-fun copybook_N : N;
-fun copycat_N : N;
-fun copyhold_N : N;
-fun copyholder_N : N;
-fun copyist_N : N;
-fun copyright_N : N;
-fun copyright_V2 : V2;
-fun copywriter_N : N;
-fun coquetry_N : N;
-fun coquette_N : N;
-fun coquettish_A : A;
-fun cor_anglais_N : N;
-fun coracle_N : N;
-fun coral_A : A;
-fun coral_N : N;
-fun coral_reef_N : N;
-fun corbel_N : N;
-fun corby_PN : PN;
-fun cord_N : N;
-fun cord_V2 : V2;
-fun cordage_N : N;
-fun cordial_A : A;
-fun cordial_N : N;
-fun cordiality_N : N;
-fun cordite_N : N;
-fun cordoba_PN : PN;
-fun cordon_N : N;
-fun cordon_V2 : V2;
-fun cordon_bleu_A : A;
-fun corduroy_N : N;
-fun core_N : N;
-fun core_V2 : V2;
-fun coreligionist_N : N;
-fun corgi_N : N;
-fun corinthian_A : A;
-fun corinthian_N : N;
-fun cork_N : N;
-fun cork_PN : PN;
-fun cork_V2 : V2;
-fun corkage_N : N;
-fun corked_A : A;
-fun corker_N : N;
-fun corkscrew_N : N;
-fun corm_N : N;
-fun cormorant_N : N;
-fun corn_N : N;
-fun corn_V2 : V2;
-fun corn_exchange_N : N;
-fun corncob_N : N;
-fun corncrake_N : N;
-fun cornea_N : N;
-fun cornelian_N : N;
-fun corner_N : N;
-fun corner_V : V;
-fun corner_V2 : V2;
-fun corner_kick_N : N;
-fun cornered_A : A;
-fun cornerstone_N : N;
-fun cornet_N : N;
-fun cornflake_N : N;
-fun cornflour_N : N;
-fun cornflower_N : N;
-fun cornice_N : N;
-fun cornpone_N : N;
-fun cornstarch_N : N;
-fun cornucopia_N : N;
-fun cornwall_PN : PN;
-fun corny_A : A;
-fun corolla_N : N;
-fun corollary_N : N;
-fun corona_N : N;
-fun coronary_A : A;
-fun coronary_N : N;
-fun coronation_N : N;
-fun coroner_N : N;
-fun coronet_N : N;
-fun corp_PN : PN;
-fun corporal_A : A;
-fun corporal_N : N;
-fun corporate_A : A;
-fun corporation_N : N;
-fun corporeal_A : A;
-fun corps_N : N;
-fun corps_de_ballet_N : N;
-fun corps_diplomatique_N : N;
-fun corpse_N : N;
-fun corpulence_N : N;
-fun corpulent_A : A;
-fun corpus_N : N;
-fun corpuscle_N : N;
-fun corral_N : N;
-fun corral_V2 : V2;
-fun correct_A : A;
-fun correct_V2 : V2;
-fun correction_N : N;
-fun correctitude_N : N;
-fun corrective_A : A;
-fun corrective_N : N;
-fun correctness_N : N;
-fun correlate_V : V;
-fun correlate_V2 : V2;
-fun correlation_N : N;
-fun correlative_A : A;
-fun correlative_N : N;
-fun correspond_V : V;
-fun correspondence_N : N;
-fun correspondent_N : N;
-fun corresponding_A : A;
-fun corridor_N : N;
-fun corrie_N : N;
-fun corrigendum_N : N;
-fun corrigible_A : A;
-fun corroborate_V2 : V2;
-fun corroboration_N : N;
-fun corroborative_A : A;
-fun corrode_V : V;
-fun corrode_V2 : V2;
-fun corrosion_N : N;
-fun corrosive_A : A;
-fun corrosive_N : N;
-fun corrugate_V : V;
-fun corrugate_V2 : V2;
-fun corrugation_N : N;
-fun corrupt_A : A;
-fun corrupt_V : V;
-fun corrupt_V2 : V2;
-fun corruptibility_N : N;
-fun corruptible_A : A;
-fun corruption_N : N;
-fun corruptness_N : N;
-fun corsage_N : N;
-fun corsair_N : N;
-fun corse_N : N;
-fun corselet_N : N;
-fun corset_N : N;
-fun corsham_PN : PN;
-fun corslet_N : N;
-fun cortege_1_N : N;
-fun cortex_N : N;
-fun cortical_A : A;
-fun cortisone_N : N;
-fun cortege_2_N : N;
-fun corundum_N : N;
-fun corunna_PN : PN;
-fun coruscate_V : V;
-fun coruscation_N : N;
-fun corvette_N : N;
-fun corvee_N : N;
-fun cos_N : N;
-fun cosenza_PN : PN;
-fun cosh_N : N;
-fun cosh_V2 : V2;
-fun cosher_A : A;
-fun cosignatory_A : A;
-fun cosignatory_N : N;
-fun cosily_Adv : Adv;
-fun cosine_N : N;
-fun cosiness_N : N;
-fun cosmetic_A : A;
-fun cosmetic_N : N;
-fun cosmetician_N : N;
-fun cosmic_A : A;
-fun cosmogony_N : N;
-fun cosmonaut_N : N;
-fun cosmopolitan_A : A;
-fun cosmopolitan_N : N;
-fun cosmos_N : N;
-fun cosset_V2 : V2;
-fun cost_N : N;
-fun cost_V : V;
-fun cost_V2 : V2;
-fun costa_rica_PN : PN;
-fun costa_rican_A : A;
-fun costa_rican_N : N;
-fun costermonger_N : N;
-fun costing_N : N;
-fun costive_A : A;
-fun costliness_N : N;
-fun costly_A : A;
-fun costume_N : N;
-fun costumier_N : N;
-fun cosy_A : A;
-fun cosy_N : N;
-fun cot_N : N;
-fun cote_N : N;
-fun cotenant_N : N;
-fun coterie_N : N;
-fun coterminous_A : A;
-fun cotilion_N : N;
-fun cotillion_N : N;
-fun cottage_N : N;
-fun cottar_N : N;
-fun cotter_N : N;
-fun cotton_N : N;
-fun cotton_V : V;
-fun cotton_cake_N : N;
-fun cotton_plant_N : N;
-fun cotton_wool_N : N;
-fun cottontail_N : N;
-fun cotyledon_N : N;
-fun couch_N : N;
-fun couch_V : V;
-fun couch_V2 : V2;
-fun couch_grass_N : N;
-fun couchant_A : A;
-fun couchette_N : N;
-fun cougar_N : N;
-fun cough_N : N;
-fun cough_V : V;
-fun cough_V2 : V2;
-fun coulter_N : N;
-fun council_N : N;
-fun council_board_N : N;
-fun council_chamber_N : N;
-fun councillor_N : N;
-fun counsel_N : N;
-fun counsel_V2 : V2;
-fun counsellor_N : N;
-fun count_N : N;
-fun count_V : V;
-fun count_V2 : V2;
-fun countable_A : A;
-fun countdown_N : N;
-fun countenance_N : N;
-fun countenance_V2 : V2;
-fun counter_Adv : Adv;
-fun counter_N : N;
-fun counter_V : V;
-fun counter_V2 : V2;
-fun counter_example_N : N;
-fun counter_revolution_N : N;
-fun counter_revolutionary_A : A;
-fun counter_revolutionary_N : N;
-fun counteract_V2 : V2;
-fun counteraction_N : N;
-fun counterattack_N : N;
-fun counterattack_V : V;
-fun counterattack_V2 : V2;
-fun counterattraction_N : N;
-fun counterbalance_N : N;
-fun counterbalance_V2 : V2;
-fun counterblast_N : N;
-fun counterclaim_N : N;
-fun counterclockwise_Adv : Adv;
-fun counterespionage_N : N;
-fun counterfeit_A : A;
-fun counterfeit_N : N;
-fun counterfeit_V2 : V2;
-fun counterfeiter_N : N;
-fun counterfoil_N : N;
-fun counterintelligence_N : N;
-fun counterirritant_N : N;
-fun countermand_V2 : V2;
-fun countermine_N : N;
-fun countermine_V : V;
-fun countermine_V2 : V2;
-fun counteroffer_N : N;
-fun counterpane_N : N;
-fun counterpart_N : N;
-fun counterplot_N : N;
-fun counterplot_V : V;
-fun counterplot_V2 : V2;
-fun counterpoint_N : N;
-fun counterpoise_N : N;
-fun counterpoise_V2 : V2;
-fun countersign_N : N;
-fun countersign_V2 : V2;
-fun countersink_V2 : V2;
-fun countertenor_N : N;
-fun countervail_V : V;
-fun countervail_V2 : V2;
-fun countess_N : N;
-fun counting_house_N : N;
-fun countless_A : A;
-fun countrified_A : A;
-fun country_N : N;
-fun country_house_N : N;
-fun country_seat_N : N;
-fun countryman_N : N;
-fun countryside_N : N;
-fun countrywoman_N : N;
-fun county_N : N;
-fun coup_N : N;
-fun coup_d'etat_N : N;
-fun coup_de_grace_N : N;
-fun couple_N : N;
-fun couple_V : V;
-fun couple_V2 : V2;
-fun couplet_N : N;
-fun coupling_N : N;
-fun coupon_N : N;
-fun coupe_N : N;
-fun courage_N : N;
-fun courageous_A : A;
-fun courgette_N : N;
-fun courier_N : N;
-fun course_N : N;
-fun course_V : V;
-fun course_V2 : V2;
-fun courser_N : N;
-fun coursing_N : N;
-fun court_N : N;
-fun court_V : V;
-fun court_V2 : V2;
-fun court_card_N : N;
-fun court_martial_N : N;
-fun court_martial_V2 : V2;
-fun courteous_A : A;
-fun courtesan_N : N;
-fun courtesy_N : N;
-fun courtier_N : N;
-fun courtliness_N : N;
-fun courtly_A : A;
-fun courtroom_N : N;
-fun courtship_N : N;
-fun courtyard_N : N;
-fun cousin_N : N;
-fun cousinly_A : A;
-fun cove_N : N;
-fun coven_N : N;
-fun covenant_N : N;
-fun covenant_V : V;
-fun covenant_V2 : V2;
-fun coventry_PN : PN;
-fun cover_N : N;
-fun cover_V2 : V2;
-fun cover_up_N : N;
-fun coverage_N : N;
-fun covering_A : A;
-fun covering_N : N;
-fun coverlet_N : N;
-fun covert_A : A;
-fun covert_N : N;
-fun covet_V2 : V2;
-fun covetous_A : A;
-fun covetousness_N : N;
-fun covey_N : N;
-fun cow_N : N;
-fun cow_V2 : V2;
-fun coward_N : N;
-fun cowardice_N : N;
-fun cowardly_A : A;
-fun cowbell_N : N;
-fun cowboy_N : N;
-fun cowcatcher_N : N;
-fun cowdenbeath_PN : PN;
-fun cower_V : V;
-fun cowes_PN : PN;
-fun cowhand_N : N;
-fun cowherd_N : N;
-fun cowhide_N : N;
-fun cowhouse_N : N;
-fun cowl_N : N;
-fun cowling_N : N;
-fun cowman_N : N;
-fun cowpox_N : N;
-fun cowrie_N : N;
-fun cowshed_N : N;
-fun cowskin_N : N;
-fun cowslip_N : N;
-fun cox_N : N;
-fun cox_V : V;
-fun cox_V2 : V2;
-fun coxcomb_N : N;
-fun coxswain_N : N;
-fun coy_A : A;
-fun coyness_N : N;
-fun coyote_N : N;
-fun coypu_N : N;
-fun cozen_V2 : V2;
-fun cozy_A : A;
-fun cp_PN : PN;
-fun cpl_PN : PN;
-fun crab_N : N;
-fun crab_V : V;
-fun crab_V2 : V2;
-fun crab_apple_N : N;
-fun crabbed_A : A;
-fun crack_N : N;
-fun crack_V : V;
-fun crack_V2 : V2;
-fun crack_down_N : N;
-fun crack_up_N : N;
-fun cracker_N : N;
-fun crackers_A : A;
-fun crackle_N : N;
-fun crackle_V : V;
-fun crackle_china_N : N;
-fun crackleware_N : N;
-fun crackling_N : N;
-fun crackpot_N : N;
-fun cracksman_N : N;
-fun cradle_N : N;
-fun cradle_V2 : V2;
-fun craft_N : N;
-fun craftily_Adv : Adv;
-fun craftiness_N : N;
-fun craftsman_N : N;
-fun craftsmanship_N : N;
-fun crafty_A : A;
-fun crag_N : N;
-fun cragged_A : A;
-fun craggy_A : A;
-fun cragsman_N : N;
-fun crake_N : N;
-fun cram_V : V;
-fun cram_V2 : V2;
-fun cram_full_A : A;
-fun cram_full_Adv : Adv;
-fun cramlington_PN : PN;
-fun crammer_N : N;
-fun cramp_N : N;
-fun cramp_V2 : V2;
-fun cramp_iron_N : N;
-fun cramped_A : A;
-fun crampon_N : N;
-fun cranberry_N : N;
-fun crane_N : N;
-fun crane_V : V;
-fun crane_V2 : V2;
-fun crane_fly_N : N;
-fun cranial_A : A;
-fun cranium_N : N;
-fun crank_N : N;
-fun crank_V2 : V2;
-fun crankshaft_N : N;
-fun cranky_A : A;
-fun crannied_A : A;
-fun cranny_N : N;
-fun crap_N : N;
-fun crap_V : V;
-fun crap_shooting_N : N;
-fun crape_N : N;
-fun craps_N : N;
-fun crash_Adv : Adv;
-fun crash_N : N;
-fun crash_V : V;
-fun crash_V2 : V2;
-fun crash_dive_N : N;
-fun crash_dive_V : V;
-fun crash_helmet_N : N;
-fun crash_land_V : V;
-fun crash_land_V2 : V2;
-fun crash_landing_N : N;
-fun crass_A : A;
-fun crate_N : N;
-fun crate_V2 : V2;
-fun crater_N : N;
-fun cravat_N : N;
-fun crave_V : V;
-fun crave_V2 : V2;
-fun craven_A : A;
-fun craven_N : N;
-fun craving_N : N;
-fun crawfish_N : N;
-fun crawl_N : N;
-fun crawl_V : V;
-fun crawler_N : N;
-fun crawley_PN : PN;
-fun crayfish_N : N;
-fun crayon_N : N;
-fun crayon_V2 : V2;
-fun craze_N : N;
-fun crazed_A : A;
-fun crazily_Adv : Adv;
-fun craziness_N : N;
-fun crazy_A : A;
-fun creak_N : N;
-fun creak_V : V;
-fun creakily_Adv : Adv;
-fun creaky_A : A;
-fun cream_N : N;
-fun cream_V2 : V2;
-fun creamery_N : N;
-fun creamy_A : A;
-fun crease_N : N;
-fun crease_V : V;
-fun crease_V2 : V2;
-fun create_V2 : V2;
-fun creation_N : N;
-fun creative_A : A;
-fun creativeness_N : N;
-fun creator_N : N;
-fun creature_N : N;
-fun credence_N : N;
-fun credibility_N : N;
-fun credible_A : A;
-fun credit_N : N;
-fun credit_V2 : V2;
-fun credit_side_N : N;
-fun credit_worthiness_N : N;
-fun credit_worthy_A : A;
-fun creditable_A : A;
-fun creditor_N : N;
-fun credo_N : N;
-fun credulity_N : N;
-fun credulous_A : A;
-fun creed_N : N;
-fun creek_N : N;
-fun creel_N : N;
-fun creep_N : N;
-fun creep_V : V;
-fun creeper_N : N;
-fun creepy_A : A;
-fun cremate_V2 : V2;
-fun cremation_N : N;
-fun crematorium_N : N;
-fun crematory_N : N;
-fun crenellated_A : A;
-fun creole_A : A;
-fun creole_N : N;
-fun creosote_N : N;
-fun crepe_1_N : N;
-fun crepitate_V : V;
-fun crepitation_N : N;
-fun crepuscular_A : A;
-fun cres_PN : PN;
-fun crescendo_N : N;
-fun crescent_N : N;
-fun cress_N : N;
-fun crest_N : N;
-fun crest_V : V;
-fun crest_V2 : V2;
-fun crested_A : A;
-fun crestfallen_A : A;
-fun creswell_PN : PN;
-fun cretaceous_A : A;
-fun cretin_N : N;
-fun cretinous_A : A;
-fun cretonne_N : N;
-fun crevasse_N : N;
-fun crevice_N : N;
-fun crew_N : N;
-fun crew_V : V;
-fun crew_cut_N : N;
-fun crew_neck_N : N;
-fun crewe_PN : PN;
-fun crib_N : N;
-fun crib_V : V;
-fun crib_V2 : V2;
-fun cribbage_N : N;
-fun cribbage_board_N : N;
-fun crick_N : N;
-fun crick_V2 : V2;
-fun cricket_N : N;
-fun cricketer_N : N;
-fun crieff_PN : PN;
-fun crier_N : N;
-fun crime_N : N;
-fun crime_V2 : V2;
-fun criminal_A : A;
-fun criminal_N : N;
-fun criminology_N : N;
-fun crimp_V2 : V2;
-fun crimson_A : A;
-fun crimson_N : N;
-fun crimson_V : V;
-fun crimson_V2 : V2;
-fun cringe_V : V;
-fun crinkle_N : N;
-fun crinkle_V : V;
-fun crinkle_V2 : V2;
-fun crinkly_A : A;
-fun crinoline_N : N;
-fun cripple_N : N;
-fun cripple_V2 : V2;
-fun crisis_N : N;
-fun crisp_A : A;
-fun crisp_N : N;
-fun crisp_V : V;
-fun crisp_V2 : V2;
-fun crispness_N : N;
-fun crisscross_A : A;
-fun crisscross_Adv : Adv;
-fun crisscross_V : V;
-fun crisscross_V2 : V2;
-fun criterion_N : N;
-fun critic_N : N;
-fun critical_A : A;
-fun criticism_N : N;
-fun criticize_V : V;
-fun criticize_V2 : V2;
-fun critique_N : N;
-fun croak_N : N;
-fun croak_V : V;
-fun croak_V2 : V2;
-fun crochet_N : N;
-fun crochet_V : V;
-fun crochet_V2 : V2;
-fun crochet_hook_N : N;
-fun crock_N : N;
-fun crock_V : V;
-fun crock_V2 : V2;
-fun crockery_N : N;
-fun crocodile_N : N;
-fun crocus_N : N;
-fun croesus_PN : PN;
-fun croft_N : N;
-fun crofter_N : N;
-fun cromer_PN : PN;
-fun cromlech_N : N;
-fun crone_N : N;
-fun crony_N : N;
-fun crook_N : N;
-fun crook_PN : PN;
-fun crook_V : V;
-fun crook_V2 : V2;
-fun crook_back_A : A;
-fun crook_backed_A : A;
-fun crooked_A : A;
-fun crookedness_N : N;
-fun croon_V : V;
-fun croon_V2 : V2;
-fun crooner_N : N;
-fun crop_N : N;
-fun crop_V : V;
-fun crop_V2 : V2;
-fun crop_dusting_N : N;
-fun cropper_N : N;
-fun croquet_N : N;
-fun croquette_N : N;
-fun crore_N : N;
-fun crosby_PN : PN;
-fun crosier_N : N;
-fun cross_A : A;
-fun cross_N : N;
-fun cross_V : V;
-fun cross_V2 : V2;
-fun cross_bench_N : N;
-fun cross_bencher_N : N;
-fun cross_division_N : N;
-fun cross_examination_N : N;
-fun cross_examine_V2 : V2;
-fun cross_examiner_N : N;
-fun cross_fertilization_N : N;
-fun cross_fertilize_V2 : V2;
-fun cross_grained_A : A;
-fun cross_heading_N : N;
-fun cross_index_N : N;
-fun cross_index_V2 : V2;
-fun cross_legged_Adv : Adv;
-fun cross_question_V2 : V2;
-fun cross_reference_N : N;
-fun cross_section_N : N;
-fun cross_stitch_N : N;
-fun crossbar_N : N;
-fun crossbeam_N : N;
-fun crossbow_N : N;
-fun crossbred_A : A;
-fun crossbreed_N : N;
-fun crossbreed_V2 : V2;
-fun crosscheck_N : N;
-fun crosscheck_V : V;
-fun crosscheck_V2 : V2;
-fun crosscountry_A : A;
-fun crosscountry_Adv : Adv;
-fun crosscurrent_N : N;
-fun crosscut_A : A;
-fun crosscut_N : N;
-fun crosse_N : N;
-fun crosseyed_A : A;
-fun crossfire_N : N;
-fun crossing_N : N;
-fun crossness_N : N;
-fun crosspatch_N : N;
-fun crosspiece_N : N;
-fun crossroad_N : N;
-fun crosstalk_N : N;
-fun crosswalk_N : N;
-fun crosswind_N : N;
-fun crosswise_Adv : Adv;
-fun crossword_N : N;
-fun crotch_N : N;
-fun crotchet_N : N;
-fun crotchety_A : A;
-fun crouch_N : N;
-fun crouch_V : V;
-fun croup_N : N;
-fun croupier_N : N;
-fun crow's_nest_N : N;
-fun crow_N : N;
-fun crow_V : V;
-fun crowbar_N : N;
-fun crowborough_PN : PN;
-fun crowd_N : N;
-fun crowd_V : V;
-fun crowd_V2 : V2;
-fun crowded_A : A;
-fun crown_N : N;
-fun crown_V2 : V2;
-fun crown_land_N : N;
-fun crowning_A : A;
-fun crowthorne_PN : PN;
-fun croydon_PN : PN;
-fun crozier_N : N;
-fun crucial_A : A;
-fun crucible_N : N;
-fun crucifix_N : N;
-fun crucifixion_N : N;
-fun cruciform_A : A;
-fun crucify_V2 : V2;
-fun crude_A : A;
-fun crudeness_N : N;
-fun crudity_N : N;
-fun cruel_A : A;
-fun cruelty_N : N;
-fun cruet_N : N;
-fun cruet_stand_N : N;
-fun cruise_N : N;
-fun cruise_V : V;
-fun cruiser_N : N;
-fun crumb_N : N;
-fun crumble_V : V;
-fun crumble_V2 : V2;
-fun crumbly_A : A;
-fun crumpet_N : N;
-fun crumple_V : V;
-fun crumple_V2 : V2;
-fun crunch_N : N;
-fun crunch_V : V;
-fun crunch_V2 : V2;
-fun crupper_N : N;
-fun crusade_N : N;
-fun crusade_V : V;
-fun crusader_N : N;
-fun cruse_N : N;
-fun crush_N : N;
-fun crush_V : V;
-fun crush_V2 : V2;
-fun crushing_A : A;
-fun crust_N : N;
-fun crust_V : V;
-fun crust_V2 : V2;
-fun crustacean_N : N;
-fun crusted_A : A;
-fun crusty_A : A;
-fun crutch_N : N;
-fun crux_N : N;
-fun cruzeiro_N : N;
-fun cry_N : N;
-fun cry_V : V;
-fun cry_V2 : V2;
-fun crybaby_N : N;
-fun crying_A : A;
-fun crypt_N : N;
-fun cryptic_A : A;
-fun cryptically_Adv : Adv;
-fun cryptogram_N : N;
-fun crystal_N : N;
-fun crystal_gazing_N : N;
-fun crystalline_A : A;
-fun crystallization_N : N;
-fun crystallize_V : V;
-fun crystallize_V2 : V2;
-fun crystallography_N : N;
-fun creche_N : N;
-fun creme_de_menthe_N : N;
-fun crepe_2_N : N;
-fun cub_N : N;
-fun cuba_PN : PN;
-fun cuban_A : A;
-fun cuban_N : N;
-fun cubbyhole_N : N;
-fun cube_N : N;
-fun cube_V2 : V2;
-fun cubic_A : A;
-fun cubical_A : A;
-fun cubicle_N : N;
-fun cubism_N : N;
-fun cubist_N : N;
-fun cubit_N : N;
-fun cuckold_N : N;
-fun cuckold_V2 : V2;
-fun cuckoo_N : N;
-fun cuckoo_clock_N : N;
-fun cucumber_N : N;
-fun cud_N : N;
-fun cuddle_N : N;
-fun cuddle_V : V;
-fun cuddle_V2 : V2;
-fun cuddlesome_A : A;
-fun cuddly_A : A;
-fun cudgel_N : N;
-fun cudgel_V2 : V2;
-fun cudworth_PN : PN;
-fun cue_N : N;
-fun cuff_N : N;
-fun cuff_V2 : V2;
-fun cuffley_PN : PN;
-fun cuirass_N : N;
-fun cuirassier_N : N;
-fun cuisine_N : N;
-fun cul_de_sac_N : N;
-fun culcheth_PN : PN;
-fun culinary_A : A;
-fun cull_N : N;
-fun cull_V2 : V2;
-fun cullender_N : N;
-fun culminate_V2 : V2;
-fun culmination_N : N;
-fun culpability_N : N;
-fun culpable_A : A;
-fun culprit_N : N;
-fun cult_N : N;
-fun cultivable_A : A;
-fun cultivate_V2 : V2;
-fun cultivated_A : A;
-fun cultivation_N : N;
-fun cultivator_N : N;
-fun cultural_A : A;
-fun culture_N : N;
-fun cultured_A : A;
-fun culvert_N : N;
-fun cumber_V2 : V2;
-fun cumberland_PN : PN;
-fun cumbernauld_PN : PN;
-fun cumbersome_A : A;
-fun cumbria_PN : PN;
-fun cumbrous_A : A;
-fun cummerbund_N : N;
-fun cumnock_PN : PN;
-fun cumulative_A : A;
-fun cumulus_N : N;
-fun cuneiform_A : A;
-fun cunning_A : A;
-fun cunning_N : N;
-fun cunt_N : N;
-fun cup_N : N;
-fun cup_V2 : V2;
-fun cup_bearer_N : N;
-fun cup_final_N : N;
-fun cup_tie_N : N;
-fun cupar_PN : PN;
-fun cupboard_N : N;
-fun cupboard_love_N : N;
-fun cupful_N : N;
-fun cupid_PN : PN;
-fun cupidity_N : N;
-fun cupola_N : N;
-fun cuppa_N : N;
-fun cupping_N : N;
-fun cupric_A : A;
-fun cupro_nickel_N : N;
-fun cur_N : N;
-fun curability_N : N;
-fun curable_A : A;
-fun curacy_N : N;
-fun curate_N : N;
-fun curative_A : A;
-fun curator_N : N;
-fun curacao_N : N;
-fun curacoa_N : N;
-fun curb_N : N;
-fun curb_V2 : V2;
-fun curd_N : N;
-fun curdle_V : V;
-fun curdle_V2 : V2;
-fun cure_1_N : N;
-fun cure_V : V;
-fun cure_V2 : V2;
-fun cure_all_N : N;
-fun curfew_N : N;
-fun curio_N : N;
-fun curiosity_N : N;
-fun curious_A : A;
-fun curitiba_PN : PN;
-fun curl_N : N;
-fun curl_V : V;
-fun curl_V2 : V2;
-fun curler_N : N;
-fun curlew_N : N;
-fun curling_N : N;
-fun curly_A : A;
-fun curmudgeon_N : N;
-fun currant_N : N;
-fun currency_N : N;
-fun current_A : A;
-fun current_N : N;
-fun curriculum_N : N;
-fun curriculum_vitae_N : N;
-fun currie_PN : PN;
-fun currish_A : A;
-fun curry_N : N;
-fun curry_V2 : V2;
-fun curry_powder_N : N;
-fun curse_N : N;
-fun curse_V : V;
-fun curse_V2 : V2;
-fun cursed_A : A;
-fun cursive_A : A;
-fun cursory_A : A;
-fun curst_A : A;
-fun curt_A : A;
-fun curtail_V2 : V2;
-fun curtailment_N : N;
-fun curtain_N : N;
-fun curtain_V2 : V2;
-fun curtain_call_N : N;
-fun curtain_lecture_N : N;
-fun curtain_raiser_N : N;
-fun curtness_N : N;
-fun curtsey_N : N;
-fun curtsey_V : V;
-fun curtsy_N : N;
-fun curtsy_V : V;
-fun curvature_N : N;
-fun curve_N : N;
-fun curve_V : V;
-fun curve_V2 : V2;
-fun cure_2_N : N;
-fun cushion_N : N;
-fun cushion_V2 : V2;
-fun cushy_A : A;
-fun cusp_N : N;
-fun cuspidor_N : N;
-fun cuss_N : N;
-fun cussed_A : A;
-fun cussedness_N : N;
-fun custard_N : N;
-fun custodial_A : A;
-fun custodian_N : N;
-fun custody_N : N;
-fun custom_N : N;
-fun custom_built_A : A;
-fun custom_made_A : A;
-fun customary_A : A;
-fun customer_N : N;
-fun cut_N : N;
-fun cut_V : V;
-fun cut_V2 : V2;
-fun cut_out_N : N;
-fun cut_price_A : A;
-fun cut_rate_A : A;
-fun cut_throat_A : A;
-fun cut_throat_N : N;
-fun cutback_N : N;
-fun cute_A : A;
-fun cuteness_N : N;
-fun cuticle_N : N;
-fun cutlass_N : N;
-fun cutler_N : N;
-fun cutlery_N : N;
-fun cutlet_N : N;
-fun cutpurse_N : N;
-fun cutter_N : N;
-fun cutting_A : A;
-fun cutting_N : N;
-fun cutting_room_N : N;
-fun cuttlefish_N : N;
-fun cutworm_N : N;
-fun cwmbran_PN : PN;
-fun cwt_N : N;
-fun cyanide_N : N;
-fun cybernetic_A : A;
-fun cybernetics_N : N;
-fun cyclamen_N : N;
-fun cycle_N : N;
-fun cycle_V : V;
-fun cyclic_A : A;
-fun cyclical_A : A;
-fun cyclist_N : N;
-fun cyclone_N : N;
-fun cyclonic_A : A;
-fun cyclopaedia_N : N;
-fun cyclopean_A : A;
-fun cyclostyle_N : N;
-fun cyclostyle_V2 : V2;
-fun cyclotron_N : N;
-fun cyder_N : N;
-fun cygnet_N : N;
-fun cylinder_N : N;
-fun cylindrical_A : A;
-fun cymbal_N : N;
-fun cynic_N : N;
-fun cynical_A : A;
-fun cynicism_N : N;
-fun cynosure_N : N;
-fun cynthia_PN : PN;
-fun cypher_N : N;
-fun cypher_V : V;
-fun cypher_V2 : V2;
-fun cypress_N : N;
-fun cyprian_A : A;
-fun cypriot_A : A;
-fun cypriot_N : N;
-fun cyprus_PN : PN;
-fun cyril_PN : PN;
-fun cyrillic_A : A;
-fun cyst_N : N;
-fun czar_N : N;
-fun czarina_N : N;
-fun czech_A : A;
-fun czech_N : N;
-fun czechoslovak_A : A;
-fun czechoslovak_N : N;
-fun czechoslovakia_PN : PN;
-fun czechoslovakian_A : A;
-fun czechoslovakian_N : N;
-fun d_day_PN : PN;
-fun dab_N : N;
-fun dab_V : V;
-fun dab_V2 : V2;
-fun dabble_V : V;
-fun dabble_V2 : V2;
-fun dabbler_N : N;
-fun dacca_PN : PN;
-fun dace_N : N;
-fun dacha_N : N;
-fun dachshund_N : N;
-fun dacoit_N : N;
-fun dacoity_N : N;
-fun dactyl_N : N;
-fun dactylic_A : A;
-fun dad_N : N;
-fun daddy_N : N;
-fun daddy_longlegs_N : N;
-fun dado_N : N;
-fun daemon_N : N;
-fun daffodil_N : N;
-fun daft_A : A;
-fun dagger_N : N;
-fun dago_N : N;
-fun daguerreotype_N : N;
-fun dahlia_N : N;
-fun dail_eireann_N : N;
-fun daily_A : A;
-fun daily_Adv : Adv;
-fun daily_N : N;
-fun daintily_Adv : Adv;
-fun daintiness_N : N;
-fun dainty_A : A;
-fun dainty_N : N;
-fun dairy_N : N;
-fun dairy_farm_N : N;
-fun dairy_farming_N : N;
-fun dairying_N : N;
-fun dairymaid_N : N;
-fun dairyman_N : N;
-fun dais_N : N;
-fun daisy_N : N;
-fun daisy_PN : PN;
-fun dakar_PN : PN;
-fun dakota_PN : PN;
-fun dale_N : N;
-fun dalesman_N : N;
-fun dalkeith_PN : PN;
-fun dallas_PN : PN;
-fun dalliance_N : N;
-fun dally_V : V;
-fun dalmatian_N : N;
-fun dalry_PN : PN;
-fun dalton_PN : PN;
-fun dam_N : N;
-fun dam_V2 : V2;
-fun damage_N : N;
-fun damage_V2 : V2;
-fun damascene_A : A;
-fun damascene_V2 : V2;
-fun damascus_PN : PN;
-fun damask_N : N;
-fun dame_N : N;
-fun damn_A : A;
-fun damn_Adv : Adv;
-fun damn_N : N;
-fun damn_V2 : V2;
-fun damnable_A : A;
-fun damnation_N : N;
-fun damned_A : A;
-fun damned_Adv : Adv;
-fun damocles_PN : PN;
-fun damp_A : A;
-fun damp_N : N;
-fun damp_V : V;
-fun damp_V2 : V2;
-fun dampen_V : V;
-fun dampen_V2 : V2;
-fun damper_N : N;
-fun dampish_A : A;
-fun dampness_N : N;
-fun damsel_N : N;
-fun damson_N : N;
-fun dan_PN : PN;
-fun dance_N : N;
-fun dance_V : V;
-fun dance_V2 : V2;
-fun dance_band_N : N;
-fun dance_hall_N : N;
-fun dance_orchestra_N : N;
-fun dancer_N : N;
-fun dancing_A : A;
-fun dancing_N : N;
-fun dandelion_N : N;
-fun dander_N : N;
-fun dandified_A : A;
-fun dandle_V2 : V2;
-fun dandruff_N : N;
-fun dandy_A : A;
-fun dandy_N : N;
-fun dane_N : N;
-fun danger_N : N;
-fun dangerous_A : A;
-fun dangle_V : V;
-fun dangle_V2 : V2;
-fun daniel_N : N;
-fun daniel_PN : PN;
-fun danish_A : A;
-fun danish_N : N;
-fun dank_A : A;
-fun danny_PN : PN;
-fun danse_macabre_N : N;
-fun daphne_N : N;
-fun daphne_PN : PN;
-fun dapper_A : A;
-fun dapple_V2 : V2;
-fun dapple_grey_A : A;
-fun dapple_grey_N : N;
-fun darby_PN : PN;
-fun dare_N : N;
-fun dare_V : V;
-fun dare_V2 : V2;
-fun daredevil_N : N;
-fun darenth_PN : PN;
-fun darfield_PN : PN;
-fun daring_A : A;
-fun daring_N : N;
-fun dark_A : A;
-fun dark_N : N;
-fun darken_V : V;
-fun darken_V2 : V2;
-fun darkey_N : N;
-fun darkie_N : N;
-fun darkness_N : N;
-fun darkroom_N : N;
-fun darky_N : N;
-fun darling_N : N;
-fun darlington_PN : PN;
-fun darmstadt_PN : PN;
-fun darn_N : N;
-fun darn_V : V;
-fun darn_V2 : V2;
-fun darning_N : N;
-fun darning_needle_N : N;
-fun dart_N : N;
-fun dart_V : V;
-fun dart_V2 : V2;
-fun dartford_PN : PN;
-fun dartmouth_PN : PN;
-fun darwen_PN : PN;
-fun dash_N : N;
-fun dash_V : V;
-fun dash_V2 : V2;
-fun dashboard_N : N;
-fun dashing_A : A;
-fun dastard_N : N;
-fun dastardly_A : A;
-fun data_N : N;
-fun datable_A : A;
-fun date_N : N;
-fun date_V : V;
-fun date_V2 : V2;
-fun dated_A : A;
-fun dateless_A : A;
-fun dateline_N : N;
-fun dative_A : A;
-fun dative_N : N;
-fun datum_N : N;
-fun daub_N : N;
-fun daub_V : V;
-fun daub_V2 : V2;
-fun dauber_N : N;
-fun daughter_N : N;
-fun daughter_in_law_N : N;
-fun daughterly_A : A;
-fun daunt_V2 : V2;
-fun dauntless_A : A;
-fun dauphin_N : N;
-fun dave_PN : PN;
-fun davenport_N : N;
-fun daventry_PN : PN;
-fun davey_PN : PN;
-fun david_PN : PN;
-fun davit_N : N;
-fun daw_N : N;
-fun dawdle_V : V;
-fun dawdle_V2 : V2;
-fun dawdler_N : N;
-fun dawley_PN : PN;
-fun dawlish_PN : PN;
-fun dawn_N : N;
-fun dawn_PN : PN;
-fun dawn_V : V;
-fun day_N : N;
-fun day_boarder_N : N;
-fun day_labourer_N : N;
-fun day_return_N : N;
-fun day_school_N : N;
-fun daybook_N : N;
-fun dayboy_N : N;
-fun daybreak_N : N;
-fun daydream_N : N;
-fun daydream_V : V;
-fun daygirl_N : N;
-fun daylight_N : N;
-fun daylight_saving_A : A;
-fun daylight_saving_N : N;
-fun daylong_A : A;
-fun daylong_Adv : Adv;
-fun dayspring_N : N;
-fun daytime_N : N;
-fun dayton_PN : PN;
-fun daze_N : N;
-fun daze_V2 : V2;
-fun dazedly_Adv : Adv;
-fun dazzle_N : N;
-fun dazzle_V2 : V2;
-fun ddt_N : N;
-fun de_escalate_V2 : V2;
-fun de_escalation_N : N;
-fun de_facto_A : A;
-fun de_facto_Adv : Adv;
-fun de_ice_V2 : V2;
-fun de_jure_A : A;
-fun de_jure_Adv : Adv;
-fun de_luxe_A : A;
-fun de_rigeur_A : A;
-fun de_trop_A : A;
-fun deacon_N : N;
-fun deaconess_N : N;
-fun dead_A : A;
-fun dead_Adv : Adv;
-fun deaden_V2 : V2;
-fun deadline_N : N;
-fun deadlock_N : N;
-fun deadlocked_A : A;
-fun deadly_A : A;
-fun deadpan_A : A;
-fun deaf_A : A;
-fun deaf_aid_N : N;
-fun deaf_mute_N : N;
-fun deafen_V2 : V2;
-fun deafness_N : N;
-fun deal_Adv : Adv;
-fun deal_N : N;
-fun deal_PN : PN;
-fun deal_V : V;
-fun deal_V2 : V2;
-fun dealer_N : N;
-fun dealing_N : N;
-fun dean_N : N;
-fun dean_PN : PN;
-fun deanery_N : N;
-fun dear_A : A;
-fun dear_Adv : Adv;
-fun dear_N : N;
-fun dearest_N : N;
-fun dearie_N : N;
-fun dearness_N : N;
-fun dearth_N : N;
-fun deary_N : N;
-fun death_N : N;
-fun death_mask_N : N;
-fun death_rate_N : N;
-fun death_roll_N : N;
-fun death_warrant_N : N;
-fun deathbed_N : N;
-fun deathblow_N : N;
-fun deathless_A : A;
-fun deathlike_A : A;
-fun deathly_A : A;
-fun deathly_Adv : Adv;
-fun deathtrap_N : N;
-fun deb_N : N;
-fun debag_V2 : V2;
-fun debar_V2 : V2;
-fun debark_V : V;
-fun debark_V2 : V2;
-fun debarkation_N : N;
-fun debase_V2 : V2;
-fun debasement_N : N;
-fun debatable_A : A;
-fun debate_N : N;
-fun debate_V : V;
-fun debate_V2 : V2;
-fun debater_N : N;
-fun debauch_N : N;
-fun debauch_V2 : V2;
-fun debauchee_N : N;
-fun debauchery_N : N;
-fun debbie_PN : PN;
-fun debby_PN : PN;
-fun debenture_N : N;
-fun debilitate_V2 : V2;
-fun debility_N : N;
-fun debit_N : N;
-fun debit_V2 : V2;
-fun debit_side_N : N;
-fun debonair_A : A;
-fun deborah_PN : PN;
-fun debouch_V : V;
-fun debouch_V2 : V2;
-fun debrief_V2 : V2;
-fun debris_1_N : N;
-fun debt_N : N;
-fun debtor_N : N;
-fun debug_V2 : V2;
-fun debunk_V2 : V2;
-fun debut_1_N : N;
-fun debutante_1_N : N;
-fun dec_PN : PN;
-fun decade_N : N;
-fun decadence_N : N;
-fun decadent_A : A;
-fun decadent_N : N;
-fun decalogue_N : N;
-fun decamp_V : V;
-fun decant_V2 : V2;
-fun decanter_N : N;
-fun decapitate_V2 : V2;
-fun decapitation_N : N;
-fun decarbonize_V2 : V2;
-fun decasyllabic_A : A;
-fun decasyllable_N : N;
-fun decay_N : N;
-fun decay_V : V;
-fun decease_N : N;
-fun decease_V : V;
-fun deceit_N : N;
-fun deceitful_A : A;
-fun deceitfulness_N : N;
-fun deceive_V2 : V2;
-fun deceiver_N : N;
-fun deceivingly_Adv : Adv;
-fun decelerate_V : V;
-fun decelerate_V2 : V2;
-fun december_N : N;
-fun december_PN : PN;
-fun decency_N : N;
-fun decent_A : A;
-fun decentralization_N : N;
-fun decentralize_V2 : V2;
-fun deception_N : N;
-fun deceptive_A : A;
-fun decibel_N : N;
-fun decide_V : V;
-fun decide_V2 : V2;
-fun decided_A : A;
-fun deciduous_A : A;
-fun decimal_A : A;
-fun decimalization_N : N;
-fun decimalize_V2 : V2;
-fun decimate_V2 : V2;
-fun decipher_V2 : V2;
-fun decipherable_A : A;
-fun decision_N : N;
-fun decisive_A : A;
-fun deck_N : N;
-fun deck_V2 : V2;
-fun decker_N : N;
-fun deckle_edged_A : A;
-fun declaim_V : V;
-fun declaim_V2 : V2;
-fun declamation_N : N;
-fun declamatory_A : A;
-fun declarable_A : A;
-fun declaration_N : N;
-fun declare_V : V;
-fun declare_V2 : V2;
-fun declassification_N : N;
-fun declassify_V2 : V2;
-fun declension_N : N;
-fun declination_N : N;
-fun decline_N : N;
-fun decline_V : V;
-fun decline_V2 : V2;
-fun declivity_N : N;
-fun declutch_V : V;
-fun decode_V2 : V2;
-fun decoder_N : N;
-fun decoke_V2 : V2;
-fun decolonization_N : N;
-fun decolonize_V2 : V2;
-fun decompose_V : V;
-fun decompose_V2 : V2;
-fun decomposition_N : N;
-fun decompress_V2 : V2;
-fun decompression_N : N;
-fun decontaminate_V2 : V2;
-fun decontamination_N : N;
-fun decontrol_V2 : V2;
-fun decorate_V2 : V2;
-fun decoration_N : N;
-fun decorative_A : A;
-fun decorator_N : N;
-fun decorous_A : A;
-fun decorum_N : N;
-fun decoy_N : N;
-fun decoy_V2 : V2;
-fun decrease_N : N;
-fun decrease_V : V;
-fun decrease_V2 : V2;
-fun decree_N : N;
-fun decree_V2 : V2;
-fun decree_nisi_N : N;
-fun decrepit_A : A;
-fun decrepitude_N : N;
-fun decry_V2 : V2;
-fun dedicate_V2 : V2;
-fun dedication_N : N;
-fun deduce_V2 : V2;
-fun deduct_V2 : V2;
-fun deductible_A : A;
-fun deduction_N : N;
-fun deductive_A : A;
-fun deed_N : N;
-fun deed_box_N : N;
-fun deedpoll_N : N;
-fun deem_V2 : V2;
-fun deep_A : A;
-fun deep_Adv : Adv;
-fun deep_N : N;
-fun deep_freeze_N : N;
-fun deep_freeze_V2 : V2;
-fun deep_laid_A : A;
-fun deep_mined_A : A;
-fun deep_rooted_A : A;
-fun deep_sea_A : A;
-fun deep_seated_A : A;
-fun deep_water_A : A;
-fun deepen_V : V;
-fun deepen_V2 : V2;
-fun deepness_N : N;
-fun deer_N : N;
-fun deerskin_N : N;
-fun deerstalker_N : N;
-fun deerstalking_N : N;
-fun deface_V2 : V2;
-fun defacement_N : N;
-fun defalcation_N : N;
-fun defamation_N : N;
-fun defamatory_A : A;
-fun defame_V2 : V2;
-fun default_N : N;
-fun default_V : V;
-fun defaulter_N : N;
-fun defeat_N : N;
-fun defeat_V2 : V2;
-fun defeatism_N : N;
-fun defeatist_N : N;
-fun defecate_V : V;
-fun defecation_N : N;
-fun defect_N : N;
-fun defect_V : V;
-fun defection_N : N;
-fun defective_A : A;
-fun defectiveness_N : N;
-fun defector_N : N;
-fun defence_N : N;
-fun defenceless_A : A;
-fun defencelessness_N : N;
-fun defend_V2 : V2;
-fun defendant_N : N;
-fun defender_N : N;
-fun defensible_A : A;
-fun defensive_A : A;
-fun defensive_N : N;
-fun defer_V : V;
-fun defer_V2 : V2;
-fun deference_N : N;
-fun deferential_A : A;
-fun deferment_N : N;
-fun defiance_N : N;
-fun defiant_A : A;
-fun deficiency_N : N;
-fun deficient_A : A;
-fun deficit_N : N;
-fun defile_N : N;
-fun defile_V : V;
-fun defile_V2 : V2;
-fun defilement_N : N;
-fun definable_A : A;
-fun define_V2 : V2;
-fun definite_A : A;
-fun definition_N : N;
-fun definitive_A : A;
-fun deflate_V2 : V2;
-fun deflation_N : N;
-fun deflationary_A : A;
-fun deflect_V : V;
-fun deflect_V2 : V2;
-fun deflection_N : N;
-fun deflower_V2 : V2;
-fun defoliant_N : N;
-fun defoliate_V2 : V2;
-fun defoliation_N : N;
-fun deforest_V2 : V2;
-fun deform_V2 : V2;
-fun deformed_A : A;
-fun deformity_N : N;
-fun defraud_V2 : V2;
-fun defray_V2 : V2;
-fun defrayal_N : N;
-fun defrayment_N : N;
-fun defrock_V2 : V2;
-fun defrost_V2 : V2;
-fun defroster_N : N;
-fun deft_A : A;
-fun deftness_N : N;
-fun defunct_A : A;
-fun defuse_V2 : V2;
-fun defy_V2 : V2;
-fun degauss_V2 : V2;
-fun degeneracy_N : N;
-fun degenerate_A : A;
-fun degenerate_N : N;
-fun degenerate_V : V;
-fun degeneration_N : N;
-fun degradation_N : N;
-fun degrade_V2 : V2;
-fun degree_N : N;
-fun dehorn_V2 : V2;
-fun dehumanize_V2 : V2;
-fun dehydrate_V2 : V2;
-fun deification_N : N;
-fun deify_V2 : V2;
-fun deign_V : V;
-fun deirdre_PN : PN;
-fun deism_N : N;
-fun deist_N : N;
-fun deity_N : N;
-fun deject_V2 : V2;
-fun dejectedly_Adv : Adv;
-fun dejection_N : N;
-fun dekko_N : N;
-fun delaware_PN : PN;
-fun delay_N : N;
-fun delay_V : V;
-fun delay_V2 : V2;
-fun delayed_action_A : A;
-fun delayed_action_N : N;
-fun delectable_A : A;
-fun delectation_N : N;
-fun delegacy_N : N;
-fun delegate_N : N;
-fun delegate_V2 : V2;
-fun delegation_N : N;
-fun delete_V2 : V2;
-fun deleterious_A : A;
-fun deletion_N : N;
-fun delf_N : N;
-fun delft_N : N;
-fun delhi_PN : PN;
-fun deliberate_A : A;
-fun deliberate_V : V;
-fun deliberate_V2 : V2;
-fun deliberation_N : N;
-fun deliberative_A : A;
-fun delicacy_N : N;
-fun delicate_A : A;
-fun delicatessen_N : N;
-fun delicious_A : A;
-fun delight_N : N;
-fun delight_V : V;
-fun delight_V2 : V2;
-fun delightedly_Adv : Adv;
-fun delightful_A : A;
-fun delimit_V2 : V2;
-fun delimitate_V2 : V2;
-fun delimitation_N : N;
-fun delineate_V2 : V2;
-fun delineation_N : N;
-fun delinquency_N : N;
-fun delinquent_A : A;
-fun delinquent_N : N;
-fun deliquescent_A : A;
-fun delirious_A : A;
-fun delirium_N : N;
-fun delirium_tremens_N : N;
-fun deliver_V2 : V2;
-fun deliverance_N : N;
-fun deliverer_N : N;
-fun delivery_N : N;
-fun dell_N : N;
-fun delouse_V2 : V2;
-fun delphic_A : A;
-fun delphinium_N : N;
-fun delta_N : N;
-fun delude_V2 : V2;
-fun deluge_N : N;
-fun deluge_V2 : V2;
-fun delusion_N : N;
-fun delusive_A : A;
-fun delve_V : V;
-fun delve_V2 : V2;
-fun demagnetization_N : N;
-fun demagnetize_V2 : V2;
-fun demagogic_A : A;
-fun demagogue_N : N;
-fun demagogy_N : N;
-fun demand_N : N;
-fun demand_V2 : V2;
-fun demarcate_V2 : V2;
-fun demarcation_N : N;
-fun demean_V2 : V2;
-fun demeanour_N : N;
-fun demented_A : A;
-fun demerara_N : N;
-fun demerit_N : N;
-fun demesne_N : N;
-fun demigod_N : N;
-fun demijohn_N : N;
-fun demilitarize_V2 : V2;
-fun demimondaine_N : N;
-fun demimonde_N : N;
-fun demise_N : N;
-fun demist_V2 : V2;
-fun demister_N : N;
-fun demo_N : N;
-fun demob_V2 : V2;
-fun demobilization_N : N;
-fun demobilize_V2 : V2;
-fun democracy_N : N;
-fun democrat_N : N;
-fun democratic_A : A;
-fun democratically_Adv : Adv;
-fun democratization_N : N;
-fun democratize_V2 : V2;
-fun demographic_A : A;
-fun demography_N : N;
-fun demolish_V2 : V2;
-fun demolition_N : N;
-fun demon_N : N;
-fun demonetization_N : N;
-fun demonetize_V2 : V2;
-fun demoniac_A : A;
-fun demoniac_N : N;
-fun demoniacal_A : A;
-fun demonic_A : A;
-fun demonstrability_N : N;
-fun demonstrable_A : A;
-fun demonstrate_V : V;
-fun demonstrate_V2 : V2;
-fun demonstration_N : N;
-fun demonstrative_A : A;
-fun demonstrator_N : N;
-fun demoralization_N : N;
-fun demoralize_V2 : V2;
-fun demote_V2 : V2;
-fun demotic_A : A;
-fun demotion_N : N;
-fun demur_N : N;
-fun demur_V : V;
-fun demure_A : A;
-fun demureness_N : N;
-fun den_N : N;
-fun denain_PN : PN;
-fun denary_A : A;
-fun denationalization_N : N;
-fun denationalize_V2 : V2;
-fun denatured_A : A;
-fun denbigh_PN : PN;
-fun deniable_A : A;
-fun denial_N : N;
-fun denier_N : N;
-fun denigrate_V2 : V2;
-fun denigration_N : N;
-fun denim_N : N;
-fun denis_PN : PN;
-fun denise_PN : PN;
-fun denizen_N : N;
-fun denmark_PN : PN;
-fun dennis_PN : PN;
-fun denny_PN : PN;
-fun denominate_V2 : V2;
-fun denomination_N : N;
-fun denominational_A : A;
-fun denominator_N : N;
-fun denote_V2 : V2;
-fun denounce_V2 : V2;
-fun dense_A : A;
-fun denseness_N : N;
-fun density_N : N;
-fun dent_N : N;
-fun dent_V : V;
-fun dent_V2 : V2;
-fun dental_A : A;
-fun dentifrice_N : N;
-fun dentist_N : N;
-fun dentistry_N : N;
-fun denture_N : N;
-fun denudation_N : N;
-fun denude_V2 : V2;
-fun denunciation_N : N;
-fun denver_PN : PN;
-fun deny_V2 : V2;
-fun deodar_N : N;
-fun deodorant_N : N;
-fun deodorize_V2 : V2;
-fun dep_PN : PN;
-fun depart_V : V;
-fun departed_A : A;
-fun departed_N : N;
-fun department_N : N;
-fun departmental_A : A;
-fun departure_N : N;
-fun depend_V : V;
-fun dependable_A : A;
-fun dependant_N : N;
-fun dependence_N : N;
-fun dependency_N : N;
-fun dependent_A : A;
-fun dependent_N : N;
-fun depict_V2 : V2;
-fun depiction_N : N;
-fun depilatory_A : A;
-fun depilatory_N : N;
-fun deplane_V : V;
-fun deplete_V2 : V2;
-fun depletion_N : N;
-fun deplorable_A : A;
-fun deplore_V2 : V2;
-fun deploy_V : V;
-fun deploy_V2 : V2;
-fun deployment_N : N;
-fun deponent_N : N;
-fun depopulate_V2 : V2;
-fun depopulation_N : N;
-fun deport_V2 : V2;
-fun deportation_N : N;
-fun deportee_N : N;
-fun deportment_N : N;
-fun depose_V : V;
-fun depose_V2 : V2;
-fun deposit_N : N;
-fun deposit_V2 : V2;
-fun deposition_N : N;
-fun depositor_N : N;
-fun depository_N : N;
-fun depot_N : N;
-fun deprave_V2 : V2;
-fun depravity_N : N;
-fun deprecate_V2 : V2;
-fun deprecation_N : N;
-fun depreciate_V : V;
-fun depreciate_V2 : V2;
-fun depreciation_N : N;
-fun depreciatory_A : A;
-fun depredation_N : N;
-fun depress_V2 : V2;
-fun depression_N : N;
-fun depressive_A : A;
-fun depressive_N : N;
-fun deprivation_N : N;
-fun deprive_V2 : V2;
-fun deprived_A : A;
-fun dept_PN : PN;
-fun depth_N : N;
-fun depth_bomb_N : N;
-fun depth_charge_N : N;
-fun deputation_N : N;
-fun depute_V2 : V2;
-fun deputize_V : V;
-fun deputy_N : N;
-fun derail_V2 : V2;
-fun derailment_N : N;
-fun derange_V2 : V2;
-fun derangement_N : N;
-fun derate_V2 : V2;
-fun derby_N : N;
-fun derby_PN : PN;
-fun derbyshire_PN : PN;
-fun dereham_PN : PN;
-fun derek_PN : PN;
-fun derelict_A : A;
-fun dereliction_N : N;
-fun derequisition_V2 : V2;
-fun derestrict_V2 : V2;
-fun deride_V2 : V2;
-fun derision_N : N;
-fun derisive_A : A;
-fun derisory_A : A;
-fun derivation_N : N;
-fun derivative_A : A;
-fun derivative_N : N;
-fun derive_V : V;
-fun derive_V2 : V2;
-fun dermatitis_N : N;
-fun dermatologist_N : N;
-fun dermatology_N : N;
-fun derogate_V : V;
-fun derogation_N : N;
-fun derogatory_A : A;
-fun derrick_N : N;
-fun derring_do_N : N;
-fun derv_N : N;
-fun dervish_N : N;
-fun des_N : N;
-fun des_PN : PN;
-fun desalinate_V2 : V2;
-fun desalination_N : N;
-fun desalinization_N : N;
-fun desalinize_V2 : V2;
-fun desalt_V2 : V2;
-fun descale_V2 : V2;
-fun descant_N : N;
-fun descant_V : V;
-fun descend_V : V;
-fun descend_V2 : V2;
-fun descendant_N : N;
-fun descent_N : N;
-fun describe_V2 : V2;
-fun description_N : N;
-fun descriptive_A : A;
-fun descry_V2 : V2;
-fun desecrate_V2 : V2;
-fun desecration_N : N;
-fun desegregate_V2 : V2;
-fun desegregation_N : N;
-fun desensitization_N : N;
-fun desensitize_V2 : V2;
-fun desert_A : A;
-fun desert_N : N;
-fun desert_V : V;
-fun desert_V2 : V2;
-fun deserter_N : N;
-fun desertion_N : N;
-fun deserve_V : V;
-fun deserve_V2 : V2;
-fun deserved_A : A;
-fun deserving_A : A;
-fun desiccant_N : N;
-fun desiccate_V2 : V2;
-fun desideratum_N : N;
-fun design_N : N;
-fun design_V : V;
-fun design_V2 : V2;
-fun designate_A : A;
-fun designate_V2 : V2;
-fun designation_N : N;
-fun designedly_Adv : Adv;
-fun designer_N : N;
-fun designing_A : A;
-fun designing_N : N;
-fun desirability_N : N;
-fun desirable_A : A;
-fun desire_N : N;
-fun desire_V2 : V2;
-fun desirous_A : A;
-fun desist_V : V;
-fun desk_N : N;
-fun desmond_PN : PN;
-fun desolate_A : A;
-fun desolate_V2 : V2;
-fun desolation_N : N;
-fun despair_N : N;
-fun despair_V : V;
-fun despairingly_Adv : Adv;
-fun despatch_N : N;
-fun despatch_V2 : V2;
-fun desperado_N : N;
-fun desperate_A : A;
-fun desperation_N : N;
-fun despicable_A : A;
-fun despise_V2 : V2;
-fun despite_N : N;
-fun despiteful_A : A;
-fun despoil_V2 : V2;
-fun despondency_N : N;
-fun despondent_A : A;
-fun despot_N : N;
-fun despotic_A : A;
-fun despotism_N : N;
-fun dessau_PN : PN;
-fun dessert_N : N;
-fun dessertspoon_N : N;
-fun dessertspoonful_N : N;
-fun destination_N : N;
-fun destine_V2 : V2;
-fun destiny_N : N;
-fun destitute_A : A;
-fun destitution_N : N;
-fun destroy_V2 : V2;
-fun destroyer_N : N;
-fun destructibility_N : N;
-fun destructible_A : A;
-fun destruction_N : N;
-fun destructive_A : A;
-fun destructiveness_N : N;
-fun desuetude_N : N;
-fun desultory_A : A;
-fun detach_V2 : V2;
-fun detachable_A : A;
-fun detached_A : A;
-fun detachment_N : N;
-fun detail_N : N;
-fun detail_V2 : V2;
-fun detain_V2 : V2;
-fun detainee_N : N;
-fun detect_V2 : V2;
-fun detectable_A : A;
-fun detection_N : N;
-fun detective_N : N;
-fun detector_N : N;
-fun detention_N : N;
-fun deter_V2 : V2;
-fun detergent_A : A;
-fun detergent_N : N;
-fun deteriorate_V : V;
-fun deteriorate_V2 : V2;
-fun deterioration_N : N;
-fun determinable_A : A;
-fun determinant_A : A;
-fun determinant_N : N;
-fun determinate_A : A;
-fun determination_N : N;
-fun determinative_A : A;
-fun determinative_N : N;
-fun determine_V : V;
-fun determine_V2 : V2;
-fun determinedly_Adv : Adv;
-fun determiner_N : N;
-fun deterrent_A : A;
-fun deterrent_N : N;
-fun detest_V2 : V2;
-fun detestable_A : A;
-fun detestation_N : N;
-fun dethrone_V2 : V2;
-fun dethronement_N : N;
-fun detonate_V : V;
-fun detonate_V2 : V2;
-fun detonation_N : N;
-fun detonator_N : N;
-fun detour_N : N;
-fun detour_V2 : V2;
-fun detract_V : V;
-fun detraction_N : N;
-fun detractor_N : N;
-fun detrain_V : V;
-fun detrain_V2 : V2;
-fun detribalization_N : N;
-fun detribalize_V2 : V2;
-fun detriment_N : N;
-fun detrimental_A : A;
-fun detritus_N : N;
-fun detroit_PN : PN;
-fun deuce_N : N;
-fun deuced_A : A;
-fun deutschmark_N : N;
-fun devaluate_V2 : V2;
-fun devaluation_N : N;
-fun devalue_V2 : V2;
-fun devastate_V2 : V2;
-fun devastation_N : N;
-fun develop_V : V;
-fun develop_V2 : V2;
-fun developer_N : N;
-fun development_N : N;
-fun deviant_A : A;
-fun deviant_N : N;
-fun deviate_V : V;
-fun deviation_N : N;
-fun deviationism_N : N;
-fun deviationist_N : N;
-fun device_N : N;
-fun devil_N : N;
-fun devil_V : V;
-fun devil_V2 : V2;
-fun devil_may_care_A : A;
-fun devilish_A : A;
-fun devilish_Adv : Adv;
-fun devilment_N : N;
-fun devilry_N : N;
-fun devious_A : A;
-fun deviousness_N : N;
-fun devise_V2 : V2;
-fun devitalization_N : N;
-fun devitalize_V2 : V2;
-fun devizes_PN : PN;
-fun devoid_A : A;
-fun devolution_N : N;
-fun devolve_V : V;
-fun devolve_V2 : V2;
-fun devon_PN : PN;
-fun devote_V2 : V2;
-fun devoted_A : A;
-fun devotee_N : N;
-fun devotion_N : N;
-fun devotional_A : A;
-fun devour_V2 : V2;
-fun devout_A : A;
-fun devoutness_N : N;
-fun dew_N : N;
-fun dewlap_N : N;
-fun dewsbury_PN : PN;
-fun dewy_A : A;
-fun dexterity_N : N;
-fun dexterous_A : A;
-fun dextrose_N : N;
-fun dextrous_A : A;
-fun dg_PN : PN;
-fun dhoti_N : N;
-fun dhow_N : N;
-fun di_PN : PN;
-fun diabetes_N : N;
-fun diabetic_A : A;
-fun diabetic_N : N;
-fun diabolic_A : A;
-fun diabolical_A : A;
-fun diacritic_A : A;
-fun diacritic_N : N;
-fun diacritical_A : A;
-fun diadem_N : N;
-fun diaeresis_N : N;
-fun diagnose_V2 : V2;
-fun diagnosis_N : N;
-fun diagnostic_A : A;
-fun diagonal_A : A;
-fun diagonal_N : N;
-fun diagram_N : N;
-fun diagrammatic_A : A;
-fun diagrammatical_A : A;
-fun dial_N : N;
-fun dial_V2 : V2;
-fun dialect_N : N;
-fun dialectal_A : A;
-fun dialectic_N : N;
-fun dialectical_A : A;
-fun dialectician_N : N;
-fun dialogue_N : N;
-fun diameter_N : N;
-fun diametrically_Adv : Adv;
-fun diamond_N : N;
-fun diana_PN : PN;
-fun diaper_N : N;
-fun diaphanous_A : A;
-fun diaphragm_N : N;
-fun diarchy_N : N;
-fun diarist_N : N;
-fun diarrhea_N : N;
-fun diarrhoea_N : N;
-fun diary_N : N;
-fun diaspora_N : N;
-fun diatonic_A : A;
-fun diatribe_N : N;
-fun dibber_N : N;
-fun dibble_N : N;
-fun dibble_V2 : V2;
-fun dice_N : N;
-fun dice_V : V;
-fun dice_V2 : V2;
-fun dice_box_N : N;
-fun dicey_A : A;
-fun dichotomy_N : N;
-fun dick_PN : PN;
-fun dickens_N : N;
-fun dicker_V : V;
-fun dickey_N : N;
-fun dicky_A : A;
-fun dicky_N : N;
-fun dicky_PN : PN;
-fun dicky_seat_N : N;
-fun dickybird_N : N;
-fun dictaphone_N : N;
-fun dictate_N : N;
-fun dictate_V : V;
-fun dictate_V2 : V2;
-fun dictation_N : N;
-fun dictator_N : N;
-fun dictatorial_A : A;
-fun dictatorship_N : N;
-fun diction_N : N;
-fun dictionary_N : N;
-fun dictum_N : N;
-fun didactic_A : A;
-fun didactically_Adv : Adv;
-fun didcot_PN : PN;
-fun diddle_V2 : V2;
-fun die_N : N;
-fun die_V : V;
-fun die_cast_A : A;
-fun die_hard_N : N;
-fun dieresis_N : N;
-fun diesel_N : N;
-fun diet_N : N;
-fun diet_V : V;
-fun diet_V2 : V2;
-fun dietary_A : A;
-fun dietetics_N : N;
-fun dietician_N : N;
-fun dietitian_N : N;
-fun differ_V : V;
-fun difference_N : N;
-fun different_A : A;
-fun differential_A : A;
-fun differential_N : N;
-fun differentiate_V2 : V2;
-fun differentiation_N : N;
-fun difficult_A : A;
-fun difficulty_N : N;
-fun diffidence_N : N;
-fun diffident_A : A;
-fun diffract_V2 : V2;
-fun diffraction_N : N;
-fun diffuse_A : A;
-fun diffuse_V : V;
-fun diffuse_V2 : V2;
-fun diffuseness_N : N;
-fun diffusion_N : N;
-fun dig_N : N;
-fun dig_V : V;
-fun dig_V2 : V2;
-fun digest_N : N;
-fun digest_V : V;
-fun digest_V2 : V2;
-fun digestibility_N : N;
-fun digestible_A : A;
-fun digestion_N : N;
-fun digestive_A : A;
-fun digger_N : N;
-fun digging_N : N;
-fun digit_N : N;
-fun digital_A : A;
-fun dignified_A : A;
-fun dignify_V2 : V2;
-fun dignitary_N : N;
-fun dignity_N : N;
-fun digraph_N : N;
-fun digress_V : V;
-fun digression_N : N;
-fun dijon_PN : PN;
-fun dike_N : N;
-fun dike_V : V;
-fun dike_V2 : V2;
-fun dilapidated_A : A;
-fun dilapidation_N : N;
-fun dilate_V : V;
-fun dilate_V2 : V2;
-fun dilation_N : N;
-fun dilatory_A : A;
-fun dilemma_N : N;
-fun dilettante_N : N;
-fun diligence_N : N;
-fun diligent_A : A;
-fun dill_N : N;
-fun dilly_dally_V : V;
-fun dilute_A : A;
-fun dilute_V2 : V2;
-fun dilution_N : N;
-fun dim_A : A;
-fun dim_V : V;
-fun dim_V2 : V2;
-fun dime_N : N;
-fun dimension_N : N;
-fun dimensional_A : A;
-fun diminish_V : V;
-fun diminish_V2 : V2;
-fun diminuendo_N : N;
-fun diminution_N : N;
-fun diminutive_A : A;
-fun diminutive_N : N;
-fun dimity_N : N;
-fun dimness_N : N;
-fun dimple_N : N;
-fun dimple_V : V;
-fun dimple_V2 : V2;
-fun din_N : N;
-fun din_V : V;
-fun din_V2 : V2;
-fun dinar_N : N;
-fun dine_V : V;
-fun dine_V2 : V2;
-fun diner_N : N;
-fun ding_dong_Adv : Adv;
-fun ding_dong_N : N;
-fun dinghy_N : N;
-fun dingily_Adv : Adv;
-fun dinginess_N : N;
-fun dingle_N : N;
-fun dingle_PN : PN;
-fun dingy_A : A;
-fun dining_car_N : N;
-fun dining_room_N : N;
-fun dining_table_N : N;
-fun dinky_A : A;
-fun dinner_N : N;
-fun dinner_jacket_N : N;
-fun dinner_party_N : N;
-fun dinner_service_N : N;
-fun dinner_set_N : N;
-fun dinnington_PN : PN;
-fun dinosaur_N : N;
-fun dint_N : N;
-fun diocesan_A : A;
-fun diocesan_N : N;
-fun diocese_N : N;
-fun dioxide_N : N;
-fun dip_N : N;
-fun dip_V : V;
-fun dip_V2 : V2;
-fun dip_ed_N : N;
-fun diphtheria_N : N;
-fun diphthong_N : N;
-fun diploma_N : N;
-fun diplomacy_N : N;
-fun diplomat_N : N;
-fun diplomatic_A : A;
-fun diplomatically_Adv : Adv;
-fun diplomatist_N : N;
-fun dipper_N : N;
-fun dipsomania_N : N;
-fun dipsomaniac_N : N;
-fun dipstick_N : N;
-fun diptych_N : N;
-fun dir_N : N;
-fun dire_A : A;
-fun direct_A : A;
-fun direct_Adv : Adv;
-fun direct_V : V;
-fun direct_V2 : V2;
-fun direction_N : N;
-fun direction_finder_N : N;
-fun directional_A : A;
-fun directive_N : N;
-fun directness_N : N;
-fun director_N : N;
-fun directorate_N : N;
-fun directorship_N : N;
-fun directory_N : N;
-fun direful_A : A;
-fun dirge_N : N;
-fun dirigible_N : N;
-fun dirk_N : N;
-fun dirndl_N : N;
-fun dirt_N : N;
-fun dirt_cheap_A : A;
-fun dirt_track_N : N;
-fun dirtily_Adv : Adv;
-fun dirty_A : A;
-fun dirty_V : V;
-fun dirty_V2 : V2;
-fun disability_N : N;
-fun disable_V2 : V2;
-fun disablement_N : N;
-fun disabuse_V2 : V2;
-fun disadvantage_N : N;
-fun disadvantageous_A : A;
-fun disaffected_A : A;
-fun disaffection_N : N;
-fun disafforest_V2 : V2;
-fun disagree_V2 : V2;
-fun disagreeable_A : A;
-fun disagreeableness_N : N;
-fun disagreement_N : N;
-fun disallow_V2 : V2;
-fun disappear_V : V;
-fun disappearance_N : N;
-fun disappoint_V2 : V2;
-fun disappointed_A : A;
-fun disappointing_A : A;
-fun disappointment_N : N;
-fun disapprobation_N : N;
-fun disapproval_N : N;
-fun disapprove_V : V;
-fun disapprove_V2 : V2;
-fun disapprovingly_Adv : Adv;
-fun disarm_V : V;
-fun disarm_V2 : V2;
-fun disarmament_N : N;
-fun disarrange_V2 : V2;
-fun disarrangement_N : N;
-fun disarray_N : N;
-fun disarray_V2 : V2;
-fun disassociate_V2 : V2;
-fun disaster_N : N;
-fun disastrous_A : A;
-fun disavow_V2 : V2;
-fun disavowal_N : N;
-fun disband_V : V;
-fun disband_V2 : V2;
-fun disbandment_N : N;
-fun disbelief_N : N;
-fun disbelieve_V : V;
-fun disbelieve_V2 : V2;
-fun disbelievingly_Adv : Adv;
-fun disbud_V2 : V2;
-fun disburden_V2 : V2;
-fun disburse_V : V;
-fun disburse_V2 : V2;
-fun disbursement_N : N;
-fun disc_N : N;
-fun discard_N : N;
-fun discard_V2 : V2;
-fun discern_V2 : V2;
-fun discernible_A : A;
-fun discerning_A : A;
-fun discernment_N : N;
-fun discharge_N : N;
-fun discharge_V : V;
-fun discharge_V2 : V2;
-fun disciple_N : N;
-fun disciplinarian_N : N;
-fun disciplinary_A : A;
-fun discipline_N : N;
-fun discipline_V2 : V2;
-fun disclaim_V2 : V2;
-fun disclaimer_N : N;
-fun disclose_V2 : V2;
-fun disclosure_N : N;
-fun disco_N : N;
-fun discolour_V : V;
-fun discolour_V2 : V2;
-fun discolouration_N : N;
-fun discomfit_V2 : V2;
-fun discomfiture_N : N;
-fun discomfort_N : N;
-fun discommode_V2 : V2;
-fun discompose_V2 : V2;
-fun discomposure_N : N;
-fun disconcert_V2 : V2;
-fun disconcertingly_Adv : Adv;
-fun disconnect_V2 : V2;
-fun disconnected_A : A;
-fun disconsolate_A : A;
-fun discontent_N : N;
-fun discontent_V2 : V2;
-fun discontentedly_Adv : Adv;
-fun discontinuance_N : N;
-fun discontinue_V : V;
-fun discontinue_V2 : V2;
-fun discontinuity_N : N;
-fun discontinuous_A : A;
-fun discord_N : N;
-fun discordance_N : N;
-fun discordant_A : A;
-fun discotheque_N : N;
-fun discount_N : N;
-fun discount_V2 : V2;
-fun discountenance_V2 : V2;
-fun discourage_V2 : V2;
-fun discouragement_N : N;
-fun discourse_N : N;
-fun discourse_V : V;
-fun discourteous_A : A;
-fun discourtesy_N : N;
-fun discover_V2 : V2;
-fun discoverer_N : N;
-fun discovery_N : N;
-fun discredit_N : N;
-fun discredit_V2 : V2;
-fun discreditable_A : A;
-fun discreet_A : A;
-fun discrepancy_N : N;
-fun discrete_A : A;
-fun discreteness_N : N;
-fun discretion_N : N;
-fun discretionary_A : A;
-fun discriminate_V : V;
-fun discriminate_V2 : V2;
-fun discriminating_A : A;
-fun discrimination_N : N;
-fun discriminatory_A : A;
-fun discursive_A : A;
-fun discursiveness_N : N;
-fun discus_N : N;
-fun discuss_V2 : V2;
-fun discussion_N : N;
-fun disdain_N : N;
-fun disdain_V2 : V2;
-fun disdainful_A : A;
-fun disease_N : N;
-fun diseased_A : A;
-fun disembark_V : V;
-fun disembark_V2 : V2;
-fun disembarkation_N : N;
-fun disembarrass_V2 : V2;
-fun disembarrassment_N : N;
-fun disembody_V2 : V2;
-fun disembowel_V2 : V2;
-fun disenchant_V2 : V2;
-fun disenchantment_N : N;
-fun disencumber_V2 : V2;
-fun disenfranchise_V2 : V2;
-fun disengage_V : V;
-fun disengage_V2 : V2;
-fun disengagement_N : N;
-fun disentangle_V : V;
-fun disentangle_V2 : V2;
-fun disentanglement_N : N;
-fun disequilibrium_N : N;
-fun disestablish_V2 : V2;
-fun disestablishment_N : N;
-fun disfavour_N : N;
-fun disfavour_V2 : V2;
-fun disfigure_V2 : V2;
-fun disfigurement_N : N;
-fun disforest_V2 : V2;
-fun disfranchise_V2 : V2;
-fun disfranchisement_N : N;
-fun disgorge_V2 : V2;
-fun disgrace_N : N;
-fun disgrace_V2 : V2;
-fun disgraceful_A : A;
-fun disgruntled_A : A;
-fun disguise_N : N;
-fun disguise_V2 : V2;
-fun disgust_N : N;
-fun disgust_V2 : V2;
-fun disgustedly_Adv : Adv;
-fun disgusting_A : A;
-fun dish_N : N;
-fun dish_V2 : V2;
-fun dishabille_N : N;
-fun disharmonious_A : A;
-fun disharmony_N : N;
-fun dishcloth_N : N;
-fun dishearten_V2 : V2;
-fun dishevelled_A : A;
-fun dishful_N : N;
-fun dishonest_A : A;
-fun dishonesty_N : N;
-fun dishonour_N : N;
-fun dishonour_V2 : V2;
-fun dishonourable_A : A;
-fun dishwasher_N : N;
-fun dishwater_N : N;
-fun dishy_A : A;
-fun disillusion_N : N;
-fun disillusion_V2 : V2;
-fun disillusionment_N : N;
-fun disincentive_N : N;
-fun disinclination_N : N;
-fun disincline_V2 : V2;
-fun disinfect_V2 : V2;
-fun disinfectant_A : A;
-fun disinfectant_N : N;
-fun disinfection_N : N;
-fun disinfest_V2 : V2;
-fun disinfestation_N : N;
-fun disinflation_N : N;
-fun disingenuous_A : A;
-fun disingenuousness_N : N;
-fun disinherit_V2 : V2;
-fun disinheritance_N : N;
-fun disintegrate_V : V;
-fun disintegrate_V2 : V2;
-fun disintegration_N : N;
-fun disinter_V2 : V2;
-fun disinterested_A : A;
-fun disinterestedness_N : N;
-fun disinterment_N : N;
-fun disjoint_V2 : V2;
-fun disjointed_A : A;
-fun disjointedness_N : N;
-fun disjunctive_A : A;
-fun disk_N : N;
-fun dislike_N : N;
-fun dislike_V2 : V2;
-fun dislocate_V2 : V2;
-fun dislocation_N : N;
-fun dislodge_V2 : V2;
-fun dislodgement_N : N;
-fun disloyal_A : A;
-fun disloyalty_N : N;
-fun dismal_A : A;
-fun dismantle_V2 : V2;
-fun dismantlement_N : N;
-fun dismay_N : N;
-fun dismay_V2 : V2;
-fun dismember_V2 : V2;
-fun dismemberment_N : N;
-fun dismiss_V2 : V2;
-fun dismissal_N : N;
-fun dismount_V : V;
-fun dismount_V2 : V2;
-fun dismounted_A : A;
-fun disobedience_N : N;
-fun disobedient_A : A;
-fun disobey_V2 : V2;
-fun disoblige_V2 : V2;
-fun disorder_N : N;
-fun disorder_V2 : V2;
-fun disorderly_A : A;
-fun disorganization_N : N;
-fun disorganize_V2 : V2;
-fun disorient_V2 : V2;
-fun disorientate_V2 : V2;
-fun disown_V2 : V2;
-fun disparage_V2 : V2;
-fun disparagement_N : N;
-fun disparagingly_Adv : Adv;
-fun disparate_A : A;
-fun disparity_N : N;
-fun dispassionate_A : A;
-fun dispassionateness_N : N;
-fun dispatch_N : N;
-fun dispatch_V2 : V2;
-fun dispatch_box_N : N;
-fun dispatch_rider_N : N;
-fun dispel_V2 : V2;
-fun dispensable_A : A;
-fun dispensary_N : N;
-fun dispensation_N : N;
-fun dispense_V : V;
-fun dispense_V2 : V2;
-fun dispenser_N : N;
-fun dispersal_N : N;
-fun disperse_V : V;
-fun disperse_V2 : V2;
-fun dispersion_N : N;
-fun dispirit_V2 : V2;
-fun dispiritedly_Adv : Adv;
-fun displace_V2 : V2;
-fun displacement_N : N;
-fun display_N : N;
-fun display_V2 : V2;
-fun displease_V2 : V2;
-fun displeasing_A : A;
-fun displeasure_N : N;
-fun disport_V2 : V2;
-fun disposable_A : A;
-fun disposal_N : N;
-fun dispose_V : V;
-fun dispose_V2 : V2;
-fun disposition_N : N;
-fun dispossess_V2 : V2;
-fun dispossession_N : N;
-fun disproof_N : N;
-fun disproportion_N : N;
-fun disproportionate_A : A;
-fun disprove_V2 : V2;
-fun disputable_A : A;
-fun disputant_N : N;
-fun disputation_N : N;
-fun disputatious_A : A;
-fun dispute_N : N;
-fun dispute_V : V;
-fun dispute_V2 : V2;
-fun disqualification_N : N;
-fun disqualify_V2 : V2;
-fun disquiet_N : N;
-fun disquiet_V2 : V2;
-fun disquieting_A : A;
-fun disquietude_N : N;
-fun disquisition_N : N;
-fun disregard_N : N;
-fun disregard_V2 : V2;
-fun disrepair_N : N;
-fun disreputable_A : A;
-fun disrepute_N : N;
-fun disrespect_N : N;
-fun disrespectful_A : A;
-fun disrobe_V : V;
-fun disrobe_V2 : V2;
-fun disrupt_V2 : V2;
-fun disruption_N : N;
-fun disruptive_A : A;
-fun dissatisfaction_N : N;
-fun dissatisfy_V2 : V2;
-fun dissect_V2 : V2;
-fun dissection_N : N;
-fun dissemble_V : V;
-fun dissemble_V2 : V2;
-fun dissembler_N : N;
-fun disseminate_V2 : V2;
-fun dissemination_N : N;
-fun dissension_N : N;
-fun dissent_N : N;
-fun dissent_V : V;
-fun dissenter_N : N;
-fun dissertation_N : N;
-fun disservice_N : N;
-fun dissever_V2 : V2;
-fun dissidence_N : N;
-fun dissident_A : A;
-fun dissident_N : N;
-fun dissimilar_A : A;
-fun dissimilarity_N : N;
-fun dissimilitude_N : N;
-fun dissimulate_V : V;
-fun dissimulate_V2 : V2;
-fun dissimulation_N : N;
-fun dissipate_V : V;
-fun dissipate_V2 : V2;
-fun dissipated_A : A;
-fun dissipation_N : N;
-fun dissociate_V2 : V2;
-fun dissociation_N : N;
-fun dissolubility_N : N;
-fun dissoluble_A : A;
-fun dissolute_A : A;
-fun dissolution_N : N;
-fun dissolve_V : V;
-fun dissolve_V2 : V2;
-fun dissonance_N : N;
-fun dissonant_A : A;
-fun dissuade_V2 : V2;
-fun dissuasion_N : N;
-fun dissyllable_N : N;
-fun distaff_N : N;
-fun distance_N : N;
-fun distance_V2 : V2;
-fun distant_A : A;
-fun distaste_N : N;
-fun distasteful_A : A;
-fun distastefulness_N : N;
-fun distemper_N : N;
-fun distemper_V2 : V2;
-fun distend_V : V;
-fun distend_V2 : V2;
-fun distension_N : N;
-fun distil_V : V;
-fun distil_V2 : V2;
-fun distillation_N : N;
-fun distiller_N : N;
-fun distillery_N : N;
-fun distinct_A : A;
-fun distinction_N : N;
-fun distinctive_A : A;
-fun distinctiveness_N : N;
-fun distinctness_N : N;
-fun distinguish_V : V;
-fun distinguish_V2 : V2;
-fun distinguishable_A : A;
-fun distinguished_A : A;
-fun distort_V2 : V2;
-fun distortion_N : N;
-fun distract_V2 : V2;
-fun distracted_A : A;
-fun distraction_N : N;
-fun distrain_V : V;
-fun distraint_N : N;
-fun distrait_A : A;
-fun distraught_A : A;
-fun distress_N : N;
-fun distress_V2 : V2;
-fun distressful_A : A;
-fun distressing_A : A;
-fun distribute_V2 : V2;
-fun distribution_N : N;
-fun distributive_A : A;
-fun distributor_N : N;
-fun district_N : N;
-fun distrust_N : N;
-fun distrust_V2 : V2;
-fun distrustful_A : A;
-fun distrustfulness_N : N;
-fun disturb_V2 : V2;
-fun disturbance_N : N;
-fun disturbingly_Adv : Adv;
-fun disunion_N : N;
-fun disunite_V : V;
-fun disunite_V2 : V2;
-fun disunity_N : N;
-fun disuse_N : N;
-fun disused_A : A;
-fun disyllabic_A : A;
-fun disyllable_N : N;
-fun ditch_N : N;
-fun ditch_V : V;
-fun ditch_V2 : V2;
-fun dither_N : N;
-fun dither_V : V;
-fun ditto_N : N;
-fun ditty_N : N;
-fun diurnal_A : A;
-fun divagate_V : V;
-fun divagation_N : N;
-fun divan_N : N;
-fun divan_bed_N : N;
-fun dive_N : N;
-fun dive_V : V;
-fun dive_bomb_V : V;
-fun dive_bomb_V2 : V2;
-fun dive_bomber_N : N;
-fun diver_N : N;
-fun diverge_V : V;
-fun divergence_N : N;
-fun divergency_N : N;
-fun divergent_A : A;
-fun divers_A : A;
-fun diverse_A : A;
-fun diversification_N : N;
-fun diversify_V2 : V2;
-fun diversion_N : N;
-fun diversionary_A : A;
-fun diversionist_N : N;
-fun diversity_N : N;
-fun divert_V2 : V2;
-fun diverting_A : A;
-fun dives_PN : PN;
-fun divest_V2 : V2;
-fun divide_N : N;
-fun divide_V : V;
-fun divide_V2 : V2;
-fun dividend_N : N;
-fun dividend_warrant_N : N;
-fun divination_N : N;
-fun divine_A : A;
-fun divine_N : N;
-fun divine_V : V;
-fun divine_V2 : V2;
-fun diviner_N : N;
-fun diving_bell_N : N;
-fun diving_board_N : N;
-fun diving_dress_N : N;
-fun diving_suit_N : N;
-fun divinity_N : N;
-fun divisible_A : A;
-fun division_N : N;
-fun divisional_A : A;
-fun divisor_N : N;
-fun divorce_N : N;
-fun divorce_V2 : V2;
-fun divorcee_N : N;
-fun divot_N : N;
-fun divulge_V2 : V2;
-fun divulgence_N : N;
-fun divvy_N : N;
-fun dixie_N : N;
-fun diy_N : N;
-fun dizzily_Adv : Adv;
-fun dizziness_N : N;
-fun dizzy_A : A;
-fun dizzy_V2 : V2;
-fun dj_N : N;
-fun djibouti_PN : PN;
-fun djiboutian_A : A;
-fun djiboutian_N : N;
-fun djinn_N : N;
-fun djs_N : N;
-fun dlitt_N : N;
-fun dm_N : N;
-fun dna_N : N;
-fun dnepropetrovsk_PN : PN;
-fun do_N : N;
-fun do_V : V;
-fun do_V2 : V2;
-fun do_gooder_N : N;
-fun dobbin_N : N;
-fun docile_A : A;
-fun docility_N : N;
-fun dock_N : N;
-fun dock_V : V;
-fun dock_V2 : V2;
-fun docker_N : N;
-fun docket_N : N;
-fun docket_V2 : V2;
-fun dockyard_N : N;
-fun doctor_N : N;
-fun doctor_V2 : V2;
-fun doctorate_N : N;
-fun doctrinaire_A : A;
-fun doctrinaire_N : N;
-fun doctrinal_A : A;
-fun doctrine_N : N;
-fun document_N : N;
-fun document_V2 : V2;
-fun documentary_A : A;
-fun documentation_N : N;
-fun dodder_V : V;
-fun dodderer_N : N;
-fun doddering_A : A;
-fun doddery_A : A;
-fun dodge_N : N;
-fun dodge_V : V;
-fun dodge_V2 : V2;
-fun dodgem_N : N;
-fun dodger_N : N;
-fun dodgy_A : A;
-fun dodo_N : N;
-fun doe_N : N;
-fun doer_N : N;
-fun doff_V2 : V2;
-fun dog's_tooth_N : N;
-fun dog_N : N;
-fun dog_V2 : V2;
-fun dog_biscuit_N : N;
-fun dog_cart_N : N;
-fun dog_collar_N : N;
-fun dog_eared_A : A;
-fun dog_like_A : A;
-fun doge_N : N;
-fun dogfish_N : N;
-fun dogged_A : A;
-fun doggedness_N : N;
-fun doggerel_N : N;
-fun doggie_N : N;
-fun doggo_Adv : Adv;
-fun doggy_N : N;
-fun doghouse_N : N;
-fun dogma_N : N;
-fun dogmatic_A : A;
-fun dogmatically_Adv : Adv;
-fun dogmatism_N : N;
-fun dogmatize_V : V;
-fun dogmatize_V2 : V2;
-fun dogsbody_N : N;
-fun dogtooth_N : N;
-fun dogtrot_N : N;
-fun dogwatch_N : N;
-fun dogwood_N : N;
-fun doh_N : N;
-fun doily_N : N;
-fun dole_N : N;
-fun dole_V2 : V2;
-fun doleful_A : A;
-fun doll_N : N;
-fun doll_V : V;
-fun doll_V2 : V2;
-fun dollar_N : N;
-fun dollop_N : N;
-fun dolly_N : N;
-fun dolly_PN : PN;
-fun dolmen_N : N;
-fun dolour_N : N;
-fun dolourous_A : A;
-fun dolphin_N : N;
-fun dolt_N : N;
-fun doltish_A : A;
-fun domain_N : N;
-fun dome_N : N;
-fun domed_A : A;
-fun domesday_PN : PN;
-fun domestic_A : A;
-fun domestically_Adv : Adv;
-fun domesticate_V2 : V2;
-fun domestication_N : N;
-fun domesticity_N : N;
-fun domicile_N : N;
-fun domiciliary_A : A;
-fun dominance_N : N;
-fun dominant_A : A;
-fun dominate_V : V;
-fun dominate_V2 : V2;
-fun domination_N : N;
-fun domineer_V : V;
-fun domineering_A : A;
-fun dominic_PN : PN;
-fun dominica_PN : PN;
-fun dominican_A : A;
-fun dominican_N : N;
-fun dominie_N : N;
-fun dominion_N : N;
-fun domino_N : N;
-fun don't_know_N : N;
-fun don_N : N;
-fun don_PN : PN;
-fun don_V2 : V2;
-fun donald_PN : PN;
-fun donate_V2 : V2;
-fun donation_N : N;
-fun doncaster_PN : PN;
-fun donegal_PN : PN;
-fun donetsk_PN : PN;
-fun donjon_N : N;
-fun donkey_N : N;
-fun donkey_jacket_N : N;
-fun donkey_work_N : N;
-fun donnish_A : A;
-fun donor_N : N;
-fun doodle_V : V;
-fun doodlebug_N : N;
-fun doom_N : N;
-fun doom_V2 : V2;
-fun doomsday_PN : PN;
-fun door_N : N;
-fun door_to_door_A : A;
-fun doorbell_N : N;
-fun doorcase_N : N;
-fun doorframe_N : N;
-fun doorhandle_N : N;
-fun doorkeeper_N : N;
-fun doorknob_N : N;
-fun doorknocker_N : N;
-fun doorman_N : N;
-fun doormat_N : N;
-fun doornail_N : N;
-fun doorplate_N : N;
-fun doorpost_N : N;
-fun doorstep_N : N;
-fun doorstopper_N : N;
-fun doorway_N : N;
-fun dope_N : N;
-fun dope_V2 : V2;
-fun dopey_A : A;
-fun dora_PN : PN;
-fun dorchester_PN : PN;
-fun dordrecht_PN : PN;
-fun doreen_PN : PN;
-fun doric_A : A;
-fun doris_PN : PN;
-fun dorking_PN : PN;
-fun dormant_A : A;
-fun dormer_N : N;
-fun dormer_window_N : N;
-fun dormitory_N : N;
-fun dormouse_N : N;
-fun dorothy_PN : PN;
-fun dorsal_A : A;
-fun dorset_PN : PN;
-fun dortmund_PN : PN;
-fun dory_N : N;
-fun dosage_N : N;
-fun dose_N : N;
-fun dose_V2 : V2;
-fun doss_V : V;
-fun doss_house_N : N;
-fun dosser_N : N;
-fun dossier_N : N;
-fun dot_N : N;
-fun dot_V2 : V2;
-fun dotage_N : N;
-fun dotard_N : N;
-fun dote_V : V;
-fun dottle_N : N;
-fun dotty_A : A;
-fun douai_PN : PN;
-fun double_A : A;
-fun double_Adv : Adv;
-fun double_N : N;
-fun double_V : V;
-fun double_V2 : V2;
-fun double_barrelled_A : A;
-fun double_bass_N : N;
-fun double_bedded_A : A;
-fun double_breasted_A : A;
-fun double_check_V2 : V2;
-fun double_cross_N : N;
-fun double_cross_V2 : V2;
-fun double_dealer_N : N;
-fun double_dealing_A : A;
-fun double_dealing_N : N;
-fun double_decker_N : N;
-fun double_dutch_N : N;
-fun double_dyed_A : A;
-fun double_edged_A : A;
-fun double_entry_N : N;
-fun double_faced_A : A;
-fun double_first_N : N;
-fun double_jointed_A : A;
-fun double_park_V : V;
-fun double_park_V2 : V2;
-fun double_quick_A : A;
-fun double_quick_Adv : Adv;
-fun double_spacing_N : N;
-fun double_talk_N : N;
-fun double_think_N : N;
-fun doublet_N : N;
-fun doubloon_N : N;
-fun doubt_N : N;
-fun doubt_V2 : V2;
-fun doubtful_A : A;
-fun doubtless_Adv : Adv;
-fun douche_N : N;
-fun doug_PN : PN;
-fun dough_N : N;
-fun doughnut_N : N;
-fun doughty_A : A;
-fun doughy_A : A;
-fun douglas_PN : PN;
-fun dour_A : A;
-fun douse_V2 : V2;
-fun dove_N : N;
-fun dovecote_N : N;
-fun dover_PN : PN;
-fun dovetail_N : N;
-fun dovetail_V : V;
-fun dovetail_V2 : V2;
-fun dowager_N : N;
-fun dowdily_Adv : Adv;
-fun dowdiness_N : N;
-fun dowdy_A : A;
-fun dowel_N : N;
-fun dower_N : N;
-fun dower_V2 : V2;
-fun down_Adv : Adv;
-fun down_N : N;
-fun down_PN : PN;
-fun down_V2 : V2;
-fun down_and_out_N : N;
-fun down_market_A : A;
-fun down_to_earth_A : A;
-fun downbeat_N : N;
-fun downcast_A : A;
-fun downfall_N : N;
-fun downgrade_V2 : V2;
-fun downhearted_A : A;
-fun downhill_Adv : Adv;
-fun downing_street_PN : PN;
-fun downpour_N : N;
-fun downright_A : A;
-fun downright_Adv : Adv;
-fun downrightness_N : N;
-fun downstair_A : A;
-fun downstairs_A : A;
-fun downstairs_Adv : Adv;
-fun downstream_A : A;
-fun downstream_Adv : Adv;
-fun downtown_Adv : Adv;
-fun downtrodden_A : A;
-fun downward_A : A;
-fun downward_Adv : Adv;
-fun downwards_Adv : Adv;
-fun downy_A : A;
-fun dowry_N : N;
-fun dowse_V2 : V2;
-fun dowser_N : N;
-fun dowsing_N : N;
-fun doxology_N : N;
-fun doyen_N : N;
-fun doyley_N : N;
-fun doyly_N : N;
-fun doz_N : N;
-fun doze_N : N;
-fun doze_V : V;
-fun dozen_N : N;
-fun dphil_N : N;
-fun dr_PN : PN;
-fun drab_A : A;
-fun drabness_N : N;
-fun drachm_N : N;
-fun drachma_N : N;
-fun draconian_A : A;
-fun draft_N : N;
-fun draft_V2 : V2;
-fun draftee_N : N;
-fun drafting_N : N;
-fun draftsman_N : N;
-fun drag_N : N;
-fun drag_V : V;
-fun drag_V2 : V2;
-fun draggled_A : A;
-fun dragnet_N : N;
-fun dragoman_N : N;
-fun dragon_N : N;
-fun dragonfly_N : N;
-fun dragoon_N : N;
-fun dragoon_V2 : V2;
-fun drain_N : N;
-fun drain_V : V;
-fun drain_V2 : V2;
-fun drainage_N : N;
-fun drainage_basin_N : N;
-fun draining_board_N : N;
-fun drainpipe_N : N;
-fun drake_N : N;
-fun dram_N : N;
-fun drama_N : N;
-fun dramatic_A : A;
-fun dramatically_Adv : Adv;
-fun dramatics_N : N;
-fun dramatist_N : N;
-fun dramatization_N : N;
-fun dramatize_V2 : V2;
-fun drape_N : N;
-fun drape_V2 : V2;
-fun draper_N : N;
-fun drapery_N : N;
-fun drastic_A : A;
-fun drastically_Adv : Adv;
-fun drat_V2 : V2;
-fun draught_N : N;
-fun draught_V2 : V2;
-fun draught_horse_N : N;
-fun draughts_N : N;
-fun draughtsman_N : N;
-fun draughty_A : A;
-fun draw_N : N;
-fun draw_V : V;
-fun draw_V2 : V2;
-fun drawback_N : N;
-fun drawbridge_N : N;
-fun drawer_N : N;
-fun drawing_N : N;
-fun drawing_board_N : N;
-fun drawing_pin_N : N;
-fun drawing_room_N : N;
-fun drawl_N : N;
-fun drawl_V : V;
-fun drawl_V2 : V2;
-fun dray_N : N;
-fun drayton_PN : PN;
-fun dread_N : N;
-fun dread_V : V;
-fun dread_V2 : V2;
-fun dreaded_A : A;
-fun dreadful_A : A;
-fun dreadfulness_N : N;
-fun dreadnought_N : N;
-fun dream_N : N;
-fun dream_V : V;
-fun dream_V2 : V2;
-fun dreamer_N : N;
-fun dreamily_Adv : Adv;
-fun dreamland_N : N;
-fun dreamless_A : A;
-fun dreamlike_A : A;
-fun dreamworld_N : N;
-fun dreamy_A : A;
-fun drear_A : A;
-fun drearily_Adv : Adv;
-fun dreariness_N : N;
-fun dreary_A : A;
-fun dredge_N : N;
-fun dredge_V : V;
-fun dredge_V2 : V2;
-fun dredger_N : N;
-fun drench_V2 : V2;
-fun drenching_N : N;
-fun dresden_PN : PN;
-fun dress_N : N;
-fun dress_V : V;
-fun dress_V2 : V2;
-fun dress_hanger_N : N;
-fun dressage_N : N;
-fun dresser_N : N;
-fun dressing_N : N;
-fun dressing_case_N : N;
-fun dressing_down_N : N;
-fun dressing_gown_N : N;
-fun dressing_table_N : N;
-fun dressmaker_N : N;
-fun dressmaking_N : N;
-fun dressy_A : A;
-fun dribble_V : V;
-fun dribble_V2 : V2;
-fun dribbler_N : N;
-fun driblet_N : N;
-fun drier_N : N;
-fun driffield_PN : PN;
-fun drift_N : N;
-fun drift_V : V;
-fun drift_V2 : V2;
-fun drift_ice_N : N;
-fun drift_net_N : N;
-fun drift_wood_N : N;
-fun driftage_N : N;
-fun drifter_N : N;
-fun drill_N : N;
-fun drill_V : V;
-fun drill_V2 : V2;
-fun drily_Adv : Adv;
-fun drink_N : N;
-fun drink_V : V;
-fun drink_V2 : V2;
-fun drinkable_A : A;
-fun drinker_N : N;
-fun drinking_N : N;
-fun drinking_bout_N : N;
-fun drinking_fountain_N : N;
-fun drinking_song_N : N;
-fun drinking_water_N : N;
-fun drip_N : N;
-fun drip_V : V;
-fun drip_V2 : V2;
-fun drip_dry_A : A;
-fun drip_dry_V2 : V2;
-fun dripping_N : N;
-fun dripping_pan_N : N;
-fun drive_N : N;
-fun drive_V : V;
-fun drive_V2 : V2;
-fun drive_in_N : N;
-fun drivel_N : N;
-fun drivel_V : V;
-fun driveller_N : N;
-fun driver_N : N;
-fun driveway_N : N;
-fun driving_belt_N : N;
-fun driving_wheel_N : N;
-fun drizzle_N : N;
-fun drizzle_V : V;
-fun drizzly_A : A;
-fun drogheda_PN : PN;
-fun drogue_N : N;
-fun droitwich_PN : PN;
-fun droll_A : A;
-fun drollery_N : N;
-fun dromedary_N : N;
-fun drone_N : N;
-fun drone_V : V;
-fun drone_V2 : V2;
-fun dronfield_PN : PN;
-fun drool_V : V;
-fun droop_N : N;
-fun droop_V : V;
-fun droop_V2 : V2;
-fun droopingly_Adv : Adv;
-fun drop_N : N;
-fun drop_V : V;
-fun drop_V2 : V2;
-fun drop_curtain_N : N;
-fun drop_kick_N : N;
-fun dropout_N : N;
-fun dropping_zone_N : N;
-fun dropsical_A : A;
-fun dropsy_N : N;
-fun droshky_N : N;
-fun dross_N : N;
-fun drought_N : N;
-fun drove_N : N;
-fun drover_N : N;
-fun drown_V : V;
-fun drown_V2 : V2;
-fun drowse_N : N;
-fun drowse_V : V;
-fun drowse_V2 : V2;
-fun drowsily_Adv : Adv;
-fun drowsiness_N : N;
-fun drowsy_A : A;
-fun drub_V2 : V2;
-fun drubbing_N : N;
-fun drudge_N : N;
-fun drudge_V : V;
-fun drudgery_N : N;
-fun drug_N : N;
-fun drug_V2 : V2;
-fun drugget_N : N;
-fun druggist_N : N;
-fun drugstore_N : N;
-fun druid_N : N;
-fun drum_N : N;
-fun drum_V : V;
-fun drum_V2 : V2;
-fun drum_major_N : N;
-fun drum_majorette_N : N;
-fun drumfire_N : N;
-fun drumhead_A : A;
-fun drummer_N : N;
-fun drumstick_N : N;
-fun drunk_A : A;
-fun drunk_N : N;
-fun drunkard_N : N;
-fun drunken_A : A;
-fun drunkenness_N : N;
-fun drupe_N : N;
-fun dry_A : A;
-fun dry_V : V;
-fun dry_V2 : V2;
-fun dry_clean_V2 : V2;
-fun dry_cleaner_N : N;
-fun dry_cleaning_N : N;
-fun dry_shod_A : A;
-fun dry_walling_N : N;
-fun dryad_N : N;
-fun dryer_N : N;
-fun dryness_N : N;
-fun dsc_N : N;
-fun dss_N : N;
-fun dti_N : N;
-fun dts_N : N;
-fun dual_A : A;
-fun dub_V2 : V2;
-fun dubbin_N : N;
-fun dubiety_N : N;
-fun dubious_A : A;
-fun dubiousness_N : N;
-fun dublin_PN : PN;
-fun dubliner_N : N;
-fun ducal_A : A;
-fun ducat_N : N;
-fun duce_N : N;
-fun duchess_N : N;
-fun duchy_N : N;
-fun duck_N : N;
-fun duck_V : V;
-fun duck_V2 : V2;
-fun duckbilled_A : A;
-fun ducking_N : N;
-fun ducking_stool_N : N;
-fun duckling_N : N;
-fun duckweed_N : N;
-fun ducky_N : N;
-fun duct_N : N;
-fun ductile_A : A;
-fun ductility_N : N;
-fun dud_A : A;
-fun dud_N : N;
-fun dude_N : N;
-fun dudgeon_N : N;
-fun dudley_PN : PN;
-fun due_A : A;
-fun due_Adv : Adv;
-fun due_N : N;
-fun duel_N : N;
-fun duel_V : V;
-fun duelist_N : N;
-fun duellist_N : N;
-fun duenna_N : N;
-fun duet_N : N;
-fun duffel_N : N;
-fun duffer_N : N;
-fun duffle_N : N;
-fun dug_N : N;
-fun dugong_N : N;
-fun dugout_N : N;
-fun duisburg_PN : PN;
-fun duke_N : N;
-fun dukedom_N : N;
-fun dukinfield_PN : PN;
-fun dulcet_A : A;
-fun dulcimer_N : N;
-fun dull_A : A;
-fun dull_V : V;
-fun dull_V2 : V2;
-fun dullard_N : N;
-fun dullness_N : N;
-fun dully_Adv : Adv;
-fun duly_Adv : Adv;
-fun dumb_A : A;
-fun dumbarton_PN : PN;
-fun dumbbell_N : N;
-fun dumbfound_V2 : V2;
-fun dumbness_N : N;
-fun dumbwaiter_N : N;
-fun dumdum_N : N;
-fun dumfries_PN : PN;
-fun dummy_N : N;
-fun dump_N : N;
-fun dump_V2 : V2;
-fun dumper_N : N;
-fun dumpling_N : N;
-fun dumpy_A : A;
-fun dun_A : A;
-fun dun_N : N;
-fun dun_V2 : V2;
-fun dun_laoghaire_PN : PN;
-fun duncan_PN : PN;
-fun dunce_N : N;
-fun dundalk_PN : PN;
-fun dundee_PN : PN;
-fun dunderhead_N : N;
-fun dune_N : N;
-fun dunfermline_PN : PN;
-fun dung_N : N;
-fun dungeon_N : N;
-fun dunghill_N : N;
-fun dunk_V2 : V2;
-fun dunkirk_PN : PN;
-fun dunoon_PN : PN;
-fun dunstable_PN : PN;
-fun duodecimal_A : A;
-fun duodenal_A : A;
-fun duodenum_N : N;
-fun duologue_N : N;
-fun dupe_N : N;
-fun dupe_V2 : V2;
-fun dupl_PN : PN;
-fun duplex_A : A;
-fun duplicate_A : A;
-fun duplicate_N : N;
-fun duplicate_V2 : V2;
-fun duplication_N : N;
-fun duplicator_N : N;
-fun duplicity_N : N;
-fun durability_N : N;
-fun durable_A : A;
-fun durable_N : N;
-fun durance_N : N;
-fun duration_N : N;
-fun durban_PN : PN;
-fun durbar_N : N;
-fun duress_N : N;
-fun durham_PN : PN;
-fun durrington_PN : PN;
-fun dursley_PN : PN;
-fun dusk_N : N;
-fun dusky_A : A;
-fun dusseldorf_PN : PN;
-fun dust_N : N;
-fun dust_V2 : V2;
-fun dust_bowl_N : N;
-fun dust_coat_N : N;
-fun dust_jacket_N : N;
-fun dust_sheet_N : N;
-fun dust_up_N : N;
-fun dust_wrapper_N : N;
-fun dustbin_N : N;
-fun dustcart_N : N;
-fun duster_N : N;
-fun dustman_N : N;
-fun dustpan_N : N;
-fun dusty_A : A;
-fun dutch_A : A;
-fun dutch_N : N;
-fun dutchman_N : N;
-fun duteous_A : A;
-fun dutiable_A : A;
-fun dutiful_A : A;
-fun duty_N : N;
-fun duty_free_A : A;
-fun duvet_N : N;
-fun dwarf_N : N;
-fun dwarf_V2 : V2;
-fun dwarfish_A : A;
-fun dwell_V : V;
-fun dweller_N : N;
-fun dwelling_N : N;
-fun dwelling_house_N : N;
-fun dwindle_V : V;
-fun dyarchy_N : N;
-fun dye_N : N;
-fun dye_V : V;
-fun dye_V2 : V2;
-fun dye_works_N : N;
-fun dyed_in_the_wool_A : A;
-fun dyer_N : N;
-fun dyestuff_N : N;
-fun dyfed_PN : PN;
-fun dyke_N : N;
-fun dyke_V : V;
-fun dyke_V2 : V2;
-fun dynamic_A : A;
-fun dynamic_N : N;
-fun dynamically_Adv : Adv;
-fun dynamism_N : N;
-fun dynamite_N : N;
-fun dynamite_V2 : V2;
-fun dynamo_N : N;
-fun dynast_N : N;
-fun dynastic_A : A;
-fun dynasty_N : N;
-fun dyne_N : N;
-fun dysentery_N : N;
-fun dyslexia_N : N;
-fun dyslexic_A : A;
-fun dyspepsia_N : N;
-fun dyspeptic_A : A;
-fun dyspeptic_N : N;
-fun debris_2_N : N;
-fun debut_2_N : N;
-fun debutante_2_N : N;
-fun debacle_N : N;
-fun decollete_A : A;
-fun decor_N : N;
-fun demarche_N : N;
-fun demode_A : A;
-fun denouement_N : N;
-fun deshabille_N : N;
-fun detente_N : N;
-fun e'en_Adv : Adv;
-fun e'er_Adv : Adv;
-fun each_A : A;
-fun eager_A : A;
-fun eagerness_N : N;
-fun eagle_N : N;
-fun eagle_eyed_A : A;
-fun eaglescliffe_PN : PN;
-fun eaglet_N : N;
-fun ealing_PN : PN;
-fun ear_N : N;
-fun ear_trumpet_N : N;
-fun earache_N : N;
-fun eardrop_N : N;
-fun eardrum_N : N;
-fun earful_N : N;
-fun earl_N : N;
-fun earl_shilton_PN : PN;
-fun earldom_N : N;
-fun early_A : A;
-fun early_Adv : Adv;
-fun early_warning_A : A;
-fun earmark_N : N;
-fun earmark_V2 : V2;
-fun earn_V2 : V2;
-fun earnest_A : A;
-fun earnest_N : N;
-fun earnest_money_N : N;
-fun earnestness_N : N;
-fun earphone_N : N;
-fun earpiece_N : N;
-fun earring_N : N;
-fun earshot_N : N;
-fun earth_N : N;
-fun earth_V2 : V2;
-fun earth_closet_N : N;
-fun earthen_A : A;
-fun earthenware_N : N;
-fun earthly_A : A;
-fun earthnut_N : N;
-fun earthquake_N : N;
-fun earthwork_N : N;
-fun earthworm_N : N;
-fun earthy_A : A;
-fun earwax_N : N;
-fun earwig_N : N;
-fun ease_N : N;
-fun ease_V : V;
-fun ease_V2 : V2;
-fun easel_N : N;
-fun easily_Adv : Adv;
-fun easington_PN : PN;
-fun east_A : A;
-fun east_Adv : Adv;
-fun east_N : N;
-fun east_dereham_PN : PN;
-fun east_grinstead_PN : PN;
-fun east_kilbride_PN : PN;
-fun east_retford_PN : PN;
-fun eastbourne_PN : PN;
-fun easter_N : N;
-fun easter_PN : PN;
-fun easterly_A : A;
-fun easterly_Adv : Adv;
-fun eastern_A : A;
-fun easternmost_A : A;
-fun eastleigh_PN : PN;
-fun eastward_A : A;
-fun eastward_Adv : Adv;
-fun eastwards_Adv : Adv;
-fun easy_A : A;
-fun easy_Adv : Adv;
-fun easygoing_A : A;
-fun eat_V : V;
-fun eat_V2 : V2;
-fun eatable_A : A;
-fun eatable_N : N;
-fun eater_N : N;
-fun eating_apple_N : N;
-fun eating_house_N : N;
-fun eau_de_cologne_N : N;
-fun eau_de_vie_N : N;
-fun eavesdrop_V : V;
-fun eavesdropper_N : N;
-fun ebb_N : N;
-fun ebb_V : V;
-fun ebbtide_N : N;
-fun ebbw_vale_PN : PN;
-fun ebonite_N : N;
-fun ebony_A : A;
-fun ebony_N : N;
-fun ebullience_N : N;
-fun ebullient_A : A;
-fun ec_N : N;
-fun eccentric_A : A;
-fun eccentric_N : N;
-fun eccentricity_N : N;
-fun eccles_PN : PN;
-fun ecclesiastic_N : N;
-fun ecclesiastical_A : A;
-fun echelon_N : N;
-fun echo_N : N;
-fun echo_V : V;
-fun echo_V2 : V2;
-fun echo_sounder_N : N;
-fun echo_sounding_N : N;
-fun eclectic_A : A;
-fun eclecticism_N : N;
-fun eclipse_N : N;
-fun eclipse_V2 : V2;
-fun ecliptic_N : N;
-fun ecological_A : A;
-fun ecologist_N : N;
-fun ecology_N : N;
-fun economic_A : A;
-fun economical_A : A;
-fun economics_N : N;
-fun economist_N : N;
-fun economize_V : V;
-fun economize_V2 : V2;
-fun economy_N : N;
-fun ecosystem_N : N;
-fun ecstasy_N : N;
-fun ecstatic_A : A;
-fun ecstatically_Adv : Adv;
-fun ectoplasm_N : N;
-fun ecuador_PN : PN;
-fun ecuadorian_A : A;
-fun ecuadorian_N : N;
-fun ecumenical_A : A;
-fun eczema_N : N;
-fun ed_PN : PN;
-fun eddie_PN : PN;
-fun eddy_N : N;
-fun eddy_PN : PN;
-fun eddy_V : V;
-fun edelweiss_N : N;
-fun eden_PN : PN;
-fun edenbridge_PN : PN;
-fun edgar_PN : PN;
-fun edge_N : N;
-fun edge_V : V;
-fun edge_V2 : V2;
-fun edgeways_Adv : Adv;
-fun edgewise_Adv : Adv;
-fun edging_N : N;
-fun edgy_A : A;
-fun edibility_N : N;
-fun edible_A : A;
-fun edible_N : N;
-fun edict_N : N;
-fun edification_N : N;
-fun edifice_N : N;
-fun edify_V2 : V2;
-fun edinburgh_PN : PN;
-fun edit_V2 : V2;
-fun edith_PN : PN;
-fun edition_N : N;
-fun editor_N : N;
-fun editorial_A : A;
-fun editorial_N : N;
-fun edmund_PN : PN;
-fun edp_N : N;
-fun educate_V2 : V2;
-fun education_N : N;
-fun educational_A : A;
-fun educationalist_N : N;
-fun educationist_N : N;
-fun educator_N : N;
-fun educe_V2 : V2;
-fun edward_PN : PN;
-fun edwardian_A : A;
-fun edwardian_N : N;
-fun eec_N : N;
-fun eeg_N : N;
-fun eel_N : N;
-fun eerie_A : A;
-fun eerily_Adv : Adv;
-fun eeriness_N : N;
-fun eery_A : A;
-fun eff_V : V;
-fun efface_V2 : V2;
-fun effacement_N : N;
-fun effect_N : N;
-fun effect_V2 : V2;
-fun effective_A : A;
-fun effectiveness_N : N;
-fun effectual_A : A;
-fun effectuality_N : N;
-fun effectualness_N : N;
-fun effeminacy_N : N;
-fun effeminate_A : A;
-fun effendi_N : N;
-fun effervesce_V : V;
-fun effervescence_N : N;
-fun effervescent_A : A;
-fun effete_A : A;
-fun effeteness_N : N;
-fun efficacious_A : A;
-fun efficacy_N : N;
-fun efficiency_N : N;
-fun efficient_A : A;
-fun effigy_N : N;
-fun efflorescence_N : N;
-fun efflorescent_A : A;
-fun effluent_N : N;
-fun efflux_N : N;
-fun effort_N : N;
-fun effortless_A : A;
-fun effrontery_N : N;
-fun effulgence_N : N;
-fun effulgent_A : A;
-fun effusion_N : N;
-fun effusive_A : A;
-fun effusiveness_N : N;
-fun eft_N : N;
-fun efta_N : N;
-fun eg_PN : PN;
-fun egalitarian_A : A;
-fun egalitarian_N : N;
-fun egalitarianism_N : N;
-fun egg_N : N;
-fun egg_V2 : V2;
-fun egg_beater_N : N;
-fun egg_cup_N : N;
-fun egg_whisk_N : N;
-fun egghead_N : N;
-fun eggplant_N : N;
-fun eggshake_N : N;
-fun eggshell_N : N;
-fun eglantine_N : N;
-fun ego_N : N;
-fun egocentric_A : A;
-fun egoism_N : N;
-fun egoist_N : N;
-fun egoistic_A : A;
-fun egoistical_A : A;
-fun egotism_N : N;
-fun egotist_N : N;
-fun egotistic_A : A;
-fun egotistically_Adv : Adv;
-fun egotrip_N : N;
-fun egotrip_V : V;
-fun egregious_A : A;
-fun egremont_PN : PN;
-fun egress_N : N;
-fun egret_N : N;
-fun egypt_PN : PN;
-fun egyptian_A : A;
-fun egyptian_N : N;
-fun eiche_PN : PN;
-fun eiderdown_N : N;
-fun eightpence_N : N;
-fun eightpenny_A : A;
-fun eightsome_N : N;
-fun eileen_PN : PN;
-fun eindhoven_PN : PN;
-fun eisteddfod_N : N;
-fun either_A : A;
-fun either_Adv : Adv;
-fun ejaculate_V2 : V2;
-fun ejaculation_N : N;
-fun eject_V : V;
-fun eject_V2 : V2;
-fun ejection_N : N;
-fun ejector_N : N;
-fun ejector_seat_N : N;
-fun eke_V2 : V2;
-fun el_dorado_N : N;
-fun el_salvador_PN : PN;
-fun elaborate_A : A;
-fun elaborate_V2 : V2;
-fun elaborateness_N : N;
-fun elaboration_N : N;
-fun elaine_PN : PN;
-fun eland_N : N;
-fun elapse_V : V;
-fun elastic_A : A;
-fun elastic_N : N;
-fun elasticity_N : N;
-fun elasticized_A : A;
-fun elastoplast_N : N;
-fun elate_V2 : V2;
-fun elation_N : N;
-fun elbow_N : N;
-fun elbow_V2 : V2;
-fun elder_N : N;
-fun elderly_A : A;
-fun elderslie_PN : PN;
-fun eleanor_PN : PN;
-fun elect_A : A;
-fun elect_V2 : V2;
-fun election_N : N;
-fun electioneering_N : N;
-fun elective_A : A;
-fun elector_N : N;
-fun electoral_A : A;
-fun electorate_N : N;
-fun electric_A : A;
-fun electrical_A : A;
-fun electrician_N : N;
-fun electricity_N : N;
-fun electrification_N : N;
-fun electrify_V2 : V2;
-fun electrocardiogram_N : N;
-fun electrocardiograph_N : N;
-fun electrochemistry_N : N;
-fun electrocute_V2 : V2;
-fun electrocution_N : N;
-fun electrode_N : N;
-fun electrolysis_N : N;
-fun electrolyte_N : N;
-fun electromagnet_N : N;
-fun electromagnetic_A : A;
-fun electromagnetism_N : N;
-fun electron_N : N;
-fun electronic_A : A;
-fun electronically_Adv : Adv;
-fun electronics_N : N;
-fun electroplate_N : N;
-fun electroplate_V2 : V2;
-fun electrostatic_A : A;
-fun eleemosynary_A : A;
-fun elegance_N : N;
-fun elegant_A : A;
-fun elegiac_A : A;
-fun elegy_N : N;
-fun element_N : N;
-fun elemental_A : A;
-fun elementary_A : A;
-fun elephant_N : N;
-fun elephantiasis_N : N;
-fun elephantine_A : A;
-fun elevate_V2 : V2;
-fun elevation_N : N;
-fun elevator_N : N;
-fun elf_N : N;
-fun elfin_A : A;
-fun elfish_A : A;
-fun elgin_PN : PN;
-fun elicit_V2 : V2;
-fun elicitation_N : N;
-fun elide_V2 : V2;
-fun eligibility_N : N;
-fun eligible_A : A;
-fun eliminate_V2 : V2;
-fun elimination_N : N;
-fun elision_N : N;
-fun elitism_N : N;
-fun elitist_N : N;
-fun elixir_N : N;
-fun eliza_PN : PN;
-fun elizabeth_PN : PN;
-fun elizabethan_A : A;
-fun elizabethan_N : N;
-fun elk_N : N;
-fun elland_PN : PN;
-fun ellen_PN : PN;
-fun ellesmere_PN : PN;
-fun ellesmere_port_PN : PN;
-fun ellie_PN : PN;
-fun ellipse_N : N;
-fun ellipsis_N : N;
-fun elliptic_A : A;
-fun elliptical_A : A;
-fun elloughton_PN : PN;
-fun elm_N : N;
-fun elocution_N : N;
-fun elocutionary_A : A;
-fun elocutionist_N : N;
-fun elongate_V : V;
-fun elongate_V2 : V2;
-fun elongation_N : N;
-fun elope_V : V;
-fun elopement_N : N;
-fun eloquence_N : N;
-fun eloquent_A : A;
-fun else_Adv : Adv;
-fun elsewhere_Adv : Adv;
-fun elsie_PN : PN;
-fun elstree_PN : PN;
-fun elucidate_V2 : V2;
-fun elucidation_N : N;
-fun elude_V2 : V2;
-fun elusive_A : A;
-fun elver_N : N;
-fun elvish_A : A;
-fun ely_PN : PN;
-fun elysian_A : A;
-fun elysium_PN : PN;
-fun emaciate_V2 : V2;
-fun emaciation_N : N;
-fun emanate_V : V;
-fun emanation_N : N;
-fun emancipate_V2 : V2;
-fun emancipation_N : N;
-fun emasculate_V2 : V2;
-fun emasculation_N : N;
-fun embalm_V2 : V2;
-fun embalmment_N : N;
-fun embankment_N : N;
-fun embargo_N : N;
-fun embargo_V2 : V2;
-fun embark_V : V;
-fun embark_V2 : V2;
-fun embarkation_N : N;
-fun embarrass_V2 : V2;
-fun embarrassing_A : A;
-fun embarrassment_N : N;
-fun embassy_N : N;
-fun embattled_A : A;
-fun embed_V2 : V2;
-fun embellish_V2 : V2;
-fun embellishment_N : N;
-fun ember_N : N;
-fun embezzle_V2 : V2;
-fun embezzlement_N : N;
-fun embitter_V2 : V2;
-fun embitterment_N : N;
-fun emblazon_V2 : V2;
-fun emblem_N : N;
-fun emblematic_A : A;
-fun embodiment_N : N;
-fun embody_V2 : V2;
-fun embolden_V2 : V2;
-fun embonpoint_A : A;
-fun embonpoint_N : N;
-fun emboss_V2 : V2;
-fun embrace_N : N;
-fun embrace_V : V;
-fun embrace_V2 : V2;
-fun embrasure_N : N;
-fun embrocation_N : N;
-fun embroider_V : V;
-fun embroider_V2 : V2;
-fun embroidery_N : N;
-fun embroil_V2 : V2;
-fun embryo_N : N;
-fun embryonic_A : A;
-fun emeer_N : N;
-fun emend_V2 : V2;
-fun emendation_N : N;
-fun emerald_N : N;
-fun emerge_V : V;
-fun emergence_N : N;
-fun emergency_N : N;
-fun emergent_A : A;
-fun emeritus_A : A;
-fun emery_N : N;
-fun emetic_N : N;
-fun emigrant_N : N;
-fun emigrate_V : V;
-fun emigration_N : N;
-fun emily_PN : PN;
-fun eminence_N : N;
-fun eminent_A : A;
-fun emir_N : N;
-fun emirate_N : N;
-fun emissary_N : N;
-fun emission_N : N;
-fun emit_V2 : V2;
-fun emma_PN : PN;
-fun emolument_N : N;
-fun emotion_N : N;
-fun emotional_A : A;
-fun emotionless_A : A;
-fun emotive_A : A;
-fun empale_V2 : V2;
-fun empanel_V2 : V2;
-fun empathy_N : N;
-fun emperor_N : N;
-fun emphasis_N : N;
-fun emphasize_V2 : V2;
-fun emphatic_A : A;
-fun emphatically_Adv : Adv;
-fun empire_N : N;
-fun empiric_A : A;
-fun empirical_A : A;
-fun empiricism_N : N;
-fun empiricist_N : N;
-fun emplacement_N : N;
-fun emplane_V : V;
-fun emplane_V2 : V2;
-fun employ_N : N;
-fun employ_V2 : V2;
-fun employable_A : A;
-fun employee_N : N;
-fun employer_N : N;
-fun employment_N : N;
-fun emporium_N : N;
-fun empower_V2 : V2;
-fun empress_N : N;
-fun emptiness_N : N;
-fun empty_A : A;
-fun empty_N : N;
-fun empty_V : V;
-fun empty_V2 : V2;
-fun empty_handed_A : A;
-fun empty_headed_A : A;
-fun empurpled_A : A;
-fun empyrean_A : A;
-fun empyrean_N : N;
-fun emsworth_PN : PN;
-fun emu_N : N;
-fun emulate_V2 : V2;
-fun emulation_N : N;
-fun emulous_A : A;
-fun emulsify_V2 : V2;
-fun emulsion_N : N;
-fun en_clair_Adv : Adv;
-fun en_famille_Adv : Adv;
-fun en_masse_Adv : Adv;
-fun en_route_Adv : Adv;
-fun enable_V2 : V2;
-fun enabling_A : A;
-fun enact_V2 : V2;
-fun enactment_N : N;
-fun enamel_N : N;
-fun enamel_V2 : V2;
-fun enamour_V2 : V2;
-fun enc_PN : PN;
-fun encamp_V : V;
-fun encamp_V2 : V2;
-fun encampment_N : N;
-fun encase_V2 : V2;
-fun encaustic_A : A;
-fun encephalitis_N : N;
-fun enchain_V2 : V2;
-fun enchant_V2 : V2;
-fun enchanter_N : N;
-fun enchantingly_Adv : Adv;
-fun enchantment_N : N;
-fun enchantress_N : N;
-fun encircle_V2 : V2;
-fun encirclement_N : N;
-fun enclave_N : N;
-fun enclose_V2 : V2;
-fun enclosure_N : N;
-fun encode_V2 : V2;
-fun encomium_N : N;
-fun encompass_V2 : V2;
-fun encore_N : N;
-fun encore_V2 : V2;
-fun encounter_N : N;
-fun encounter_V2 : V2;
-fun encourage_V2 : V2;
-fun encouragement_N : N;
-fun encouragingly_Adv : Adv;
-fun encroach_V : V;
-fun encroachment_N : N;
-fun encrust_V : V;
-fun encrust_V2 : V2;
-fun encumber_V2 : V2;
-fun encumbrance_N : N;
-fun encyclical_A : A;
-fun encyclical_N : N;
-fun encyclopaedia_N : N;
-fun encyclopaedic_A : A;
-fun encyclopedia_N : N;
-fun encyclopedic_A : A;
-fun end_N : N;
-fun end_V : V;
-fun end_V2 : V2;
-fun end_all_N : N;
-fun endanger_V2 : V2;
-fun endear_V2 : V2;
-fun endearingly_Adv : Adv;
-fun endearment_N : N;
-fun endeavour_N : N;
-fun endeavour_V : V;
-fun endemic_A : A;
-fun endemic_N : N;
-fun ending_N : N;
-fun endive_N : N;
-fun endless_A : A;
-fun endorse_V2 : V2;
-fun endorsement_N : N;
-fun endow_V2 : V2;
-fun endowment_N : N;
-fun endue_V2 : V2;
-fun endurable_A : A;
-fun endurance_N : N;
-fun endure_V : V;
-fun endure_V2 : V2;
-fun enduring_A : A;
-fun endways_Adv : Adv;
-fun endwise_Adv : Adv;
-fun enema_N : N;
-fun enemy_N : N;
-fun energetic_A : A;
-fun energetically_Adv : Adv;
-fun energy_N : N;
-fun enervate_V2 : V2;
-fun enfant_terrible_N : N;
-fun enfeeble_V2 : V2;
-fun enfield_PN : PN;
-fun enfold_V2 : V2;
-fun enforce_V2 : V2;
-fun enforceable_A : A;
-fun enforcement_N : N;
-fun enfranchise_V2 : V2;
-fun enfranchisement_N : N;
-fun engage_V : V;
-fun engage_V2 : V2;
-fun engagement_N : N;
-fun engaging_A : A;
-fun engender_V2 : V2;
-fun engine_N : N;
-fun engine_driver_N : N;
-fun engineer_N : N;
-fun engineer_V : V;
-fun engineer_V2 : V2;
-fun engineering_N : N;
-fun england_PN : PN;
-fun english_A : A;
-fun english_N : N;
-fun englishman_N : N;
-fun englishwoman_N : N;
-fun engraft_V2 : V2;
-fun engrave_V2 : V2;
-fun engraver_N : N;
-fun engraving_N : N;
-fun engross_V2 : V2;
-fun engulf_V2 : V2;
-fun enhance_V2 : V2;
-fun enhancement_N : N;
-fun enigma_N : N;
-fun enigmatic_A : A;
-fun enigmatically_Adv : Adv;
-fun enjoin_V2 : V2;
-fun enjoy_V2 : V2;
-fun enjoyable_A : A;
-fun enjoyment_N : N;
-fun enkindle_V2 : V2;
-fun enlarge_V : V;
-fun enlarge_V2 : V2;
-fun enlargement_N : N;
-fun enlighten_V2 : V2;
-fun enlightened_A : A;
-fun enlightenment_N : N;
-fun enlist_V : V;
-fun enlist_V2 : V2;
-fun enlistment_N : N;
-fun enliven_V2 : V2;
-fun enmesh_V2 : V2;
-fun enmity_N : N;
-fun ennoble_V2 : V2;
-fun ennoblement_N : N;
-fun ennui_N : N;
-fun enoch_PN : PN;
-fun enormity_N : N;
-fun enormous_A : A;
-fun enormousness_N : N;
-fun enough_A : A;
-fun enough_Adv : Adv;
-fun enough_N : N;
-fun enplane_V : V;
-fun enplane_V2 : V2;
-fun enquire_V : V;
-fun enquire_V2 : V2;
-fun enquirer_N : N;
-fun enquiringly_Adv : Adv;
-fun enquiry_N : N;
-fun enrage_V2 : V2;
-fun enrapture_V2 : V2;
-fun enrich_V2 : V2;
-fun enrichment_N : N;
-fun enrol_V : V;
-fun enrol_V2 : V2;
-fun enroll_V : V;
-fun enroll_V2 : V2;
-fun enrolment_N : N;
-fun enschede_PN : PN;
-fun ensconce_V2 : V2;
-fun ensemble_N : N;
-fun enshrine_V2 : V2;
-fun enshroud_V2 : V2;
-fun ensign_N : N;
-fun ensilage_N : N;
-fun enslave_V2 : V2;
-fun enslavement_N : N;
-fun ensnare_V2 : V2;
-fun ensue_V : V;
-fun ensure_V : V;
-fun ensure_V2 : V2;
-fun entail_N : N;
-fun entail_V2 : V2;
-fun entangle_V2 : V2;
-fun entanglement_N : N;
-fun entente_N : N;
-fun entente_cordiale_N : N;
-fun enter_V : V;
-fun enter_V2 : V2;
-fun enteric_A : A;
-fun enteritis_N : N;
-fun enterprise_N : N;
-fun enterprising_A : A;
-fun entertain_V2 : V2;
-fun entertainer_N : N;
-fun entertaining_A : A;
-fun entertainment_N : N;
-fun enthral_V2 : V2;
-fun enthrall_V2 : V2;
-fun enthrone_V2 : V2;
-fun enthronement_N : N;
-fun enthuse_V : V;
-fun enthusiasm_N : N;
-fun enthusiast_N : N;
-fun enthusiastic_A : A;
-fun enthusiastically_Adv : Adv;
-fun entice_V2 : V2;
-fun enticement_N : N;
-fun entire_A : A;
-fun entirety_N : N;
-fun entitle_V2 : V2;
-fun entitlement_N : N;
-fun entity_N : N;
-fun entomb_V2 : V2;
-fun entomological_A : A;
-fun entomologist_N : N;
-fun entomology_N : N;
-fun entourage_N : N;
-fun entr'acte_N : N;
-fun entrain_V : V;
-fun entrain_V2 : V2;
-fun entrance_N : N;
-fun entrance_V2 : V2;
-fun entrance_fee_N : N;
-fun entrance_money_N : N;
-fun entrant_N : N;
-fun entrap_V2 : V2;
-fun entreat_V2 : V2;
-fun entreatingly_Adv : Adv;
-fun entreaty_N : N;
-fun entrench_V2 : V2;
-fun entrenchment_N : N;
-fun entrepot_N : N;
-fun entrepreneur_N : N;
-fun entrepreneurial_A : A;
-fun entrust_V2 : V2;
-fun entry_N : N;
-fun entree_N : N;
-fun entwine_V2 : V2;
-fun enumerate_V2 : V2;
-fun enumeration_N : N;
-fun enunciate_V : V;
-fun enunciate_V2 : V2;
-fun enunciation_N : N;
-fun envelop_V2 : V2;
-fun envelope_N : N;
-fun envelopment_N : N;
-fun envenom_V2 : V2;
-fun enviable_A : A;
-fun envious_A : A;
-fun environ_V2 : V2;
-fun environment_N : N;
-fun environmental_A : A;
-fun envisage_V2 : V2;
-fun envoi_N : N;
-fun envoy_N : N;
-fun envy_N : N;
-fun envy_V2 : V2;
-fun enwrap_V2 : V2;
-fun enzyme_N : N;
-fun eon_N : N;
-fun epaulet_N : N;
-fun epaulette_N : N;
-fun ephemeral_A : A;
-fun epic_A : A;
-fun epic_N : N;
-fun epicentre_N : N;
-fun epicure_N : N;
-fun epicurean_A : A;
-fun epicurean_N : N;
-fun epidemic_A : A;
-fun epidemic_N : N;
-fun epidemiologist_N : N;
-fun epidemiology_N : N;
-fun epidermis_N : N;
-fun epidiascope_N : N;
-fun epiglottis_N : N;
-fun epigram_N : N;
-fun epigrammatic_A : A;
-fun epilepsy_N : N;
-fun epileptic_A : A;
-fun epileptic_N : N;
-fun epilogue_N : N;
-fun epiphany_PN : PN;
-fun episcopal_A : A;
-fun episcopalian_A : A;
-fun episcopalian_N : N;
-fun episode_N : N;
-fun episodic_A : A;
-fun epistle_N : N;
-fun epistolary_A : A;
-fun epitaph_N : N;
-fun epithet_N : N;
-fun epitome_N : N;
-fun epitomize_V2 : V2;
-fun epoch_N : N;
-fun epoch_making_A : A;
-fun epping_PN : PN;
-fun epsom_PN : PN;
-fun equable_A : A;
-fun equal_A : A;
-fun equal_N : N;
-fun equal_V2 : V2;
-fun equalitarian_N : N;
-fun equality_N : N;
-fun equalization_N : N;
-fun equalize_V2 : V2;
-fun equalizer_N : N;
-fun equanimity_N : N;
-fun equate_V2 : V2;
-fun equation_N : N;
-fun equator_N : N;
-fun equatorial_A : A;
-fun equerry_N : N;
-fun equestrian_A : A;
-fun equestrian_N : N;
-fun equidistant_A : A;
-fun equilateral_A : A;
-fun equilibrium_N : N;
-fun equine_A : A;
-fun equinoctial_A : A;
-fun equinox_N : N;
-fun equip_V2 : V2;
-fun equipage_N : N;
-fun equipment_N : N;
-fun equipoise_N : N;
-fun equitable_A : A;
-fun equity_N : N;
-fun equivalence_N : N;
-fun equivalent_A : A;
-fun equivalent_N : N;
-fun equivocal_A : A;
-fun equivocation_N : N;
-fun era_N : N;
-fun eradicate_V2 : V2;
-fun eradication_N : N;
-fun erase_V2 : V2;
-fun eraser_N : N;
-fun erasure_N : N;
-fun ere_Adv : Adv;
-fun erect_A : A;
-fun erect_V2 : V2;
-fun erectile_A : A;
-fun erection_N : N;
-fun erectness_N : N;
-fun eremite_N : N;
-fun erfurt_PN : PN;
-fun erg_N : N;
-fun ergo_Adv : Adv;
-fun ergonomics_N : N;
-fun eric_PN : PN;
-fun erica_PN : PN;
-fun erin_PN : PN;
-fun eritrea_PN : PN;
-fun eritrean_A : A;
-fun eritrean_N : N;
-fun erlangen_PN : PN;
-fun ermine_N : N;
-fun ernest_PN : PN;
-fun ernie_PN : PN;
-fun erode_V2 : V2;
-fun erogenous_A : A;
-fun erosion_N : N;
-fun erosive_A : A;
-fun erotic_A : A;
-fun eroticism_N : N;
-fun err_V : V;
-fun errand_N : N;
-fun errant_A : A;
-fun erratic_A : A;
-fun erratically_Adv : Adv;
-fun erratum_N : N;
-fun erroneous_A : A;
-fun error_N : N;
-fun erse_N : N;
-fun eructation_N : N;
-fun erudite_A : A;
-fun erudition_N : N;
-fun erupt_V : V;
-fun eruption_N : N;
-fun erysipelas_N : N;
-fun escalate_V : V;
-fun escalate_V2 : V2;
-fun escalation_N : N;
-fun escalator_N : N;
-fun escalope_N : N;
-fun escapade_N : N;
-fun escape_N : N;
-fun escape_V : V;
-fun escape_V2 : V2;
-fun escapee_N : N;
-fun escapement_N : N;
-fun escapism_N : N;
-fun escapist_N : N;
-fun escapologist_N : N;
-fun escarpment_N : N;
-fun eschatology_N : N;
-fun eschew_V2 : V2;
-fun escort_N : N;
-fun escort_V2 : V2;
-fun escritoire_N : N;
-fun escudo_N : N;
-fun escutcheon_N : N;
-fun esfahan_PN : PN;
-fun eskimo_N : N;
-fun esophagus_N : N;
-fun esoteric_A : A;
-fun esp_N : N;
-fun espalier_N : N;
-fun especial_A : A;
-fun esperanto_N : N;
-fun espionage_N : N;
-fun esplanade_N : N;
-fun espousal_N : N;
-fun espouse_V2 : V2;
-fun espresso_N : N;
-fun esprit_N : N;
-fun esprit_de_corps_N : N;
-fun espy_V2 : V2;
-fun esq_PN : PN;
-fun esquire_N : N;
-fun essay_N : N;
-fun essay_V : V;
-fun essay_V2 : V2;
-fun essayist_N : N;
-fun essen_PN : PN;
-fun essence_N : N;
-fun essential_A : A;
-fun essential_N : N;
-fun essex_PN : PN;
-fun establish_V2 : V2;
-fun establishment_N : N;
-fun estaminet_N : N;
-fun estate_N : N;
-fun esteem_N : N;
-fun esteem_V2 : V2;
-fun esther_PN : PN;
-fun esthete_N : N;
-fun esthetic_A : A;
-fun esthetic_N : N;
-fun esthetical_A : A;
-fun esthetics_N : N;
-fun estimable_A : A;
-fun estimate_N : N;
-fun estimate_V : V;
-fun estimate_V2 : V2;
-fun estimation_N : N;
-fun estrange_V2 : V2;
-fun estrangement_N : N;
-fun estuary_N : N;
-fun et_al_PN : PN;
-fun et_seq_PN : PN;
-fun eta_N : N;
-fun etc_PN : PN;
-fun etch_V : V;
-fun etch_V2 : V2;
-fun etcher_N : N;
-fun etching_N : N;
-fun etd_N : N;
-fun eternal_A : A;
-fun eternity_N : N;
-fun ethel_PN : PN;
-fun ether_N : N;
-fun ethereal_A : A;
-fun ethic_N : N;
-fun ethical_A : A;
-fun ethics_N : N;
-fun ethiopia_PN : PN;
-fun ethiopian_A : A;
-fun ethiopian_N : N;
-fun ethnic_A : A;
-fun ethnically_Adv : Adv;
-fun ethnographer_N : N;
-fun ethnographic_A : A;
-fun ethnography_N : N;
-fun ethnological_A : A;
-fun ethnologist_N : N;
-fun ethnology_N : N;
-fun ethos_N : N;
-fun ethyl_N : N;
-fun etiology_N : N;
-fun etiquette_N : N;
-fun etymological_A : A;
-fun etymologist_N : N;
-fun etymology_N : N;
-fun eucalyptus_N : N;
-fun eucharist_N : N;
-fun euclidean_A : A;
-fun eugene_PN : PN;
-fun eugenics_N : N;
-fun eulogist_N : N;
-fun eulogistic_A : A;
-fun eulogize_V2 : V2;
-fun eulogy_N : N;
-fun eunice_PN : PN;
-fun eunuch_N : N;
-fun euphemism_N : N;
-fun euphemistic_A : A;
-fun euphemistically_Adv : Adv;
-fun euphonium_N : N;
-fun euphony_N : N;
-fun euphoria_N : N;
-fun euphoric_A : A;
-fun euphuism_N : N;
-fun eurasia_PN : PN;
-fun eurasian_A : A;
-fun eurasian_N : N;
-fun eurhythmics_N : N;
-fun eurodollar_N : N;
-fun europe_PN : PN;
-fun european_A : A;
-fun european_N : N;
-fun eurovision_PN : PN;
-fun eurythmics_N : N;
-fun eustachian_A : A;
-fun euthanasia_N : N;
-fun eva_PN : PN;
-fun evacuate_V2 : V2;
-fun evacuation_N : N;
-fun evacuee_N : N;
-fun evade_V2 : V2;
-fun evaluate_V2 : V2;
-fun evaluation_N : N;
-fun evaluative_A : A;
-fun evanescence_N : N;
-fun evanescent_A : A;
-fun evangelical_A : A;
-fun evangelicalism_N : N;
-fun evangelism_N : N;
-fun evangelist_N : N;
-fun evangelistic_A : A;
-fun evaporate_V : V;
-fun evaporate_V2 : V2;
-fun evaporation_N : N;
-fun evasion_N : N;
-fun evasive_A : A;
-fun evasiveness_N : N;
-fun eve_N : N;
-fun eve_PN : PN;
-fun evelyn_PN : PN;
-fun even_A : A;
-fun even_Adv : Adv;
-fun even_N : N;
-fun even_V2 : V2;
-fun even_handed_A : A;
-fun evening_N : N;
-fun evenness_N : N;
-fun evensong_N : N;
-fun event_N : N;
-fun eventful_A : A;
-fun eventide_N : N;
-fun eventual_A : A;
-fun eventuality_N : N;
-fun ever_Adv : Adv;
-fun evergreen_A : A;
-fun evergreen_N : N;
-fun everlasting_A : A;
-fun evermore_Adv : Adv;
-fun everyday_A : A;
-fun everyplace_Adv : Adv;
-fun evesham_PN : PN;
-fun evict_V2 : V2;
-fun eviction_N : N;
-fun evidence_N : N;
-fun evidence_V2 : V2;
-fun evident_A : A;
-fun evil_A : A;
-fun evil_N : N;
-fun evil_doer_N : N;
-fun evil_minded_A : A;
-fun evince_V2 : V2;
-fun eviscerate_V2 : V2;
-fun evocation_N : N;
-fun evocative_A : A;
-fun evoke_V2 : V2;
-fun evolution_N : N;
-fun evolutionary_A : A;
-fun evolve_V : V;
-fun evolve_V2 : V2;
-fun ewe_N : N;
-fun ewell_PN : PN;
-fun ewer_N : N;
-fun ex_directory_A : A;
-fun ex_gratia_A : A;
-fun ex_officio_A : A;
-fun ex_officio_Adv : Adv;
-fun ex_service_A : A;
-fun ex_serviceman_N : N;
-fun exacerbate_V2 : V2;
-fun exacerbation_N : N;
-fun exact_A : A;
-fun exact_V2 : V2;
-fun exacting_A : A;
-fun exaction_N : N;
-fun exactitude_N : N;
-fun exactness_N : N;
-fun exaggerate_V : V;
-fun exaggerate_V2 : V2;
-fun exaggeration_N : N;
-fun exalt_V2 : V2;
-fun exaltation_N : N;
-fun exalted_A : A;
-fun exam_N : N;
-fun examination_N : N;
-fun examine_V2 : V2;
-fun examiner_N : N;
-fun example_N : N;
-fun exasperate_V2 : V2;
-fun exasperation_N : N;
-fun excavate_V2 : V2;
-fun excavation_N : N;
-fun excavator_N : N;
-fun exceed_V2 : V2;
-fun exceedingly_Adv : Adv;
-fun excel_V : V;
-fun excel_V2 : V2;
-fun excellence_N : N;
-fun excellency_N : N;
-fun excellent_A : A;
-fun excelsior_N : N;
-fun except_V2 : V2;
-fun exception_N : N;
-fun exceptionable_A : A;
-fun exceptional_A : A;
-fun excerpt_N : N;
-fun excess_A : A;
-fun excess_N : N;
-fun excessive_A : A;
-fun exchange_N : N;
-fun exchange_V2 : V2;
-fun exchangeable_A : A;
-fun exchanger_N : N;
-fun exchequer_N : N;
-fun excise_N : N;
-fun excise_V2 : V2;
-fun exciseman_N : N;
-fun excision_N : N;
-fun excitability_N : N;
-fun excitable_A : A;
-fun excite_V2 : V2;
-fun excitedly_Adv : Adv;
-fun excitement_N : N;
-fun excitingly_Adv : Adv;
-fun excl_PN : PN;
-fun exclaim_V : V;
-fun exclaim_V2 : V2;
-fun exclamation_N : N;
-fun exclamatory_A : A;
-fun exclude_V2 : V2;
-fun exclusion_N : N;
-fun exclusive_A : A;
-fun excogitate_V2 : V2;
-fun excogitation_N : N;
-fun excommunicate_V2 : V2;
-fun excommunication_N : N;
-fun excoriate_V2 : V2;
-fun excoriation_N : N;
-fun excrement_N : N;
-fun excrescence_N : N;
-fun excrete_V2 : V2;
-fun excretion_N : N;
-fun excruciating_A : A;
-fun exculpate_V2 : V2;
-fun excursion_N : N;
-fun excursionist_N : N;
-fun excusable_A : A;
-fun excuse_N : N;
-fun excuse_V2 : V2;
-fun execrable_A : A;
-fun execrate_V2 : V2;
-fun execration_N : N;
-fun executant_N : N;
-fun execute_V2 : V2;
-fun execution_N : N;
-fun executioner_N : N;
-fun executive_A : A;
-fun executive_N : N;
-fun executor_N : N;
-fun executrix_N : N;
-fun exegesis_N : N;
-fun exemplary_A : A;
-fun exemplification_N : N;
-fun exemplify_V2 : V2;
-fun exempt_A : A;
-fun exempt_V2 : V2;
-fun exemption_N : N;
-fun exercise_N : N;
-fun exercise_V : V;
-fun exercise_V2 : V2;
-fun exert_V2 : V2;
-fun exertion_N : N;
-fun exeter_PN : PN;
-fun exhalation_N : N;
-fun exhale_V : V;
-fun exhale_V2 : V2;
-fun exhaust_N : N;
-fun exhaust_V2 : V2;
-fun exhaust_pipe_N : N;
-fun exhaustion_N : N;
-fun exhaustive_A : A;
-fun exhibit_N : N;
-fun exhibit_V2 : V2;
-fun exhibition_N : N;
-fun exhibitioner_N : N;
-fun exhibitionism_N : N;
-fun exhibitionist_N : N;
-fun exhibitor_N : N;
-fun exhilarate_V2 : V2;
-fun exhilaration_N : N;
-fun exhort_V2 : V2;
-fun exhortation_N : N;
-fun exhumation_N : N;
-fun exhume_V2 : V2;
-fun exigency_N : N;
-fun exigent_A : A;
-fun exiguous_A : A;
-fun exile_N : N;
-fun exile_V2 : V2;
-fun exist_V : V;
-fun existence_N : N;
-fun existent_A : A;
-fun existentialism_N : N;
-fun existentialist_N : N;
-fun exit_N : N;
-fun exit_V : V;
-fun exmouth_PN : PN;
-fun exodus_N : N;
-fun exonerate_V2 : V2;
-fun exoneration_N : N;
-fun exorbitance_N : N;
-fun exorbitant_A : A;
-fun exorcize_V2 : V2;
-fun exotic_A : A;
-fun expand_V : V;
-fun expand_V2 : V2;
-fun expanse_N : N;
-fun expansion_N : N;
-fun expansive_A : A;
-fun expansiveness_N : N;
-fun expatiate_V : V;
-fun expatriate_N : N;
-fun expatriate_V2 : V2;
-fun expect_V2 : V2;
-fun expectancy_N : N;
-fun expectant_A : A;
-fun expectation_N : N;
-fun expected_A : A;
-fun expectorant_N : N;
-fun expectorate_V : V;
-fun expectorate_V2 : V2;
-fun expedience_N : N;
-fun expediency_N : N;
-fun expedient_A : A;
-fun expedient_N : N;
-fun expedite_V2 : V2;
-fun expedition_N : N;
-fun expeditionary_A : A;
-fun expeditious_A : A;
-fun expel_V2 : V2;
-fun expend_V2 : V2;
-fun expendable_A : A;
-fun expenditure_N : N;
-fun expense_N : N;
-fun expensive_A : A;
-fun experience_N : N;
-fun experience_V2 : V2;
-fun experienced_A : A;
-fun experiment_N : N;
-fun experiment_V : V;
-fun experimental_A : A;
-fun experimentation_N : N;
-fun experimenter_N : N;
-fun expert_A : A;
-fun expert_N : N;
-fun expertise_N : N;
-fun expertness_N : N;
-fun expiate_V2 : V2;
-fun expiation_N : N;
-fun expiration_N : N;
-fun expire_V : V;
-fun expiry_N : N;
-fun explain_V2 : V2;
-fun explanation_N : N;
-fun explanatory_A : A;
-fun expletive_N : N;
-fun explicable_A : A;
-fun explicate_V2 : V2;
-fun explicit_A : A;
-fun explicitness_N : N;
-fun explode_V : V;
-fun explode_V2 : V2;
-fun exploit_N : N;
-fun exploit_V2 : V2;
-fun exploitation_N : N;
-fun exploration_N : N;
-fun exploratory_A : A;
-fun explore_V2 : V2;
-fun explorer_N : N;
-fun explosion_N : N;
-fun explosive_A : A;
-fun explosive_N : N;
-fun expo_N : N;
-fun exponent_N : N;
-fun exponential_A : A;
-fun exponential_N : N;
-fun export_N : N;
-fun export_V2 : V2;
-fun exportable_A : A;
-fun exportation_N : N;
-fun exporter_N : N;
-fun expose_V2 : V2;
-fun exposition_N : N;
-fun expostulate_V : V;
-fun expostulation_N : N;
-fun exposure_N : N;
-fun expose_N : N;
-fun expound_V2 : V2;
-fun express_A : A;
-fun express_Adv : Adv;
-fun express_N : N;
-fun express_V2 : V2;
-fun expression_N : N;
-fun expressionism_N : N;
-fun expressionist_N : N;
-fun expressionless_A : A;
-fun expressive_A : A;
-fun expressway_N : N;
-fun expropriate_V2 : V2;
-fun expropriation_N : N;
-fun expulsion_N : N;
-fun expunge_V2 : V2;
-fun expurgate_V2 : V2;
-fun expurgation_N : N;
-fun exquisite_A : A;
-fun exquisiteness_N : N;
-fun extant_A : A;
-fun extemporaneous_A : A;
-fun extemporary_A : A;
-fun extempore_A : A;
-fun extempore_Adv : Adv;
-fun extemporize_V : V;
-fun extemporize_V2 : V2;
-fun extend_V : V;
-fun extend_V2 : V2;
-fun extension_N : N;
-fun extensive_A : A;
-fun extent_N : N;
-fun extenuate_V2 : V2;
-fun extenuation_N : N;
-fun exterior_A : A;
-fun exterior_N : N;
-fun exteriorize_V2 : V2;
-fun exterminate_V2 : V2;
-fun extermination_N : N;
-fun external_A : A;
-fun external_N : N;
-fun externalize_V2 : V2;
-fun exterritorial_A : A;
-fun extinct_A : A;
-fun extinction_N : N;
-fun extinguish_V2 : V2;
-fun extinguisher_N : N;
-fun extirpate_V2 : V2;
-fun extirpation_N : N;
-fun extol_V2 : V2;
-fun extort_V2 : V2;
-fun extortion_N : N;
-fun extortionate_A : A;
-fun extra_A : A;
-fun extra_Adv : Adv;
-fun extra_N : N;
-fun extract_N : N;
-fun extract_V2 : V2;
-fun extraction_N : N;
-fun extracurricular_A : A;
-fun extradite_V2 : V2;
-fun extradition_N : N;
-fun extrajudicial_A : A;
-fun extramarital_A : A;
-fun extramural_A : A;
-fun extraneous_A : A;
-fun extraordinary_A : A;
-fun extrapolate_V : V;
-fun extrapolate_V2 : V2;
-fun extrapolation_N : N;
-fun extrasensory_A : A;
-fun extraterritorial_A : A;
-fun extravagance_N : N;
-fun extravagant_A : A;
-fun extravaganza_N : N;
-fun extreme_A : A;
-fun extreme_N : N;
-fun extremist_N : N;
-fun extremity_N : N;
-fun extricable_A : A;
-fun extricate_V2 : V2;
-fun extrication_N : N;
-fun extrinsic_A : A;
-fun extroversion_N : N;
-fun extrovert_N : N;
-fun extrude_V2 : V2;
-fun extrusion_N : N;
-fun exuberance_N : N;
-fun exuberant_A : A;
-fun exude_V : V;
-fun exude_V2 : V2;
-fun exult_V : V;
-fun exultant_A : A;
-fun exultation_N : N;
-fun eye_N : N;
-fun eye_V2 : V2;
-fun eye_catching_A : A;
-fun eye_opener_N : N;
-fun eye_shadow_N : N;
-fun eyeball_N : N;
-fun eyebath_N : N;
-fun eyebrow_N : N;
-fun eyecatching_A : A;
-fun eyecup_N : N;
-fun eyed_A : A;
-fun eyeful_N : N;
-fun eyeglass_N : N;
-fun eyelash_N : N;
-fun eyeless_A : A;
-fun eyelet_N : N;
-fun eyelid_N : N;
-fun eyepiece_N : N;
-fun eyeshot_N : N;
-fun eyesight_N : N;
-fun eyesore_N : N;
-fun eyestrain_N : N;
-fun eyetooth_N : N;
-fun eyewash_N : N;
-fun eyewitness_N : N;
-fun eyrie_N : N;
-fun eyry_N : N;
-fun fa_N : N;
-fun fab_A : A;
-fun fabian_A : A;
-fun fabian_N : N;
-fun fable_N : N;
-fun fabled_A : A;
-fun fabric_N : N;
-fun fabricate_V2 : V2;
-fun fabrication_N : N;
-fun fabulous_A : A;
-fun face_N : N;
-fun face_V : V;
-fun face_V2 : V2;
-fun face_ache_N : N;
-fun face_card_N : N;
-fun face_cloth_N : N;
-fun face_cream_N : N;
-fun face_lift_N : N;
-fun face_lifting_N : N;
-fun face_pack_N : N;
-fun face_powder_N : N;
-fun face_saver_N : N;
-fun face_saving_A : A;
-fun face_saving_N : N;
-fun faceless_A : A;
-fun facer_N : N;
-fun facet_N : N;
-fun facetious_A : A;
-fun facetiousness_N : N;
-fun facia_N : N;
-fun facial_A : A;
-fun facial_N : N;
-fun facile_A : A;
-fun facilitate_V2 : V2;
-fun facility_N : N;
-fun facing_N : N;
-fun facsimile_N : N;
-fun fact_N : N;
-fun fact_finding_A : A;
-fun faction_N : N;
-fun factious_A : A;
-fun factitious_A : A;
-fun factor_N : N;
-fun factorize_V2 : V2;
-fun factory_N : N;
-fun factotum_N : N;
-fun factual_A : A;
-fun faculty_N : N;
-fun fad_N : N;
-fun faddily_Adv : Adv;
-fun faddy_A : A;
-fun fade_V : V;
-fun fade_V2 : V2;
-fun faerie_N : N;
-fun faery_N : N;
-fun fag_N : N;
-fun fag_V : V;
-fun fag_V2 : V2;
-fun fag_end_N : N;
-fun faggot_N : N;
-fun faience_N : N;
-fun fail_N : N;
-fun fail_V : V;
-fun fail_V2 : V2;
-fun fail_safe_A : A;
-fun failing_N : N;
-fun failure_N : N;
-fun fain_Adv : Adv;
-fun faint_A : A;
-fun faint_N : N;
-fun faint_V : V;
-fun faint_hearted_A : A;
-fun faintness_N : N;
-fun fair_A : A;
-fun fair_Adv : Adv;
-fun fair_N : N;
-fun fair_minded_A : A;
-fun fairground_N : N;
-fun fairish_A : A;
-fun fairness_N : N;
-fun fairway_N : N;
-fun fairy_N : N;
-fun fairyland_N : N;
-fun fairytale_N : N;
-fun fait_accompli_N : N;
-fun faith_N : N;
-fun faith_healing_N : N;
-fun faithful_A : A;
-fun faithfulness_N : N;
-fun faithless_A : A;
-fun faithlessness_N : N;
-fun fake_N : N;
-fun fake_V2 : V2;
-fun fakir_N : N;
-fun falcon_N : N;
-fun falconry_N : N;
-fun falkirk_PN : PN;
-fun fall_N : N;
-fun fall_V : V;
-fun fallacious_A : A;
-fun fallacy_N : N;
-fun fallibility_N : N;
-fun fallible_A : A;
-fun fallopian_A : A;
-fun fallout_N : N;
-fun fallow_A : A;
-fun fallow_N : N;
-fun fallow_deer_N : N;
-fun falmouth_PN : PN;
-fun false_A : A;
-fun false_Adv : Adv;
-fun falsehood_N : N;
-fun falseness_N : N;
-fun falsetto_A : A;
-fun falsetto_N : N;
-fun falsification_N : N;
-fun falsify_V2 : V2;
-fun falsity_N : N;
-fun falter_V : V;
-fun falter_V2 : V2;
-fun falteringly_Adv : Adv;
-fun fame_N : N;
-fun famed_A : A;
-fun familiar_A : A;
-fun familiar_N : N;
-fun familiarity_N : N;
-fun familiarize_V2 : V2;
-fun family_N : N;
-fun famine_N : N;
-fun famish_V : V;
-fun famish_V2 : V2;
-fun famous_A : A;
-fun fan_N : N;
-fun fan_V : V;
-fun fan_V2 : V2;
-fun fan_belt_N : N;
-fun fanatic_A : A;
-fun fanatic_N : N;
-fun fanatical_A : A;
-fun fanaticism_N : N;
-fun fancier_N : N;
-fun fanciful_A : A;
-fun fancy_A : A;
-fun fancy_N : N;
-fun fancy_V2 : V2;
-fun fancy_free_A : A;
-fun fandango_N : N;
-fun fanfare_N : N;
-fun fang_N : N;
-fun fanlight_N : N;
-fun fanny_N : N;
-fun fanny_PN : PN;
-fun fantan_N : N;
-fun fantasia_N : N;
-fun fantastic_A : A;
-fun fantastically_Adv : Adv;
-fun fantasy_N : N;
-fun fao_N : N;
-fun far_A : A;
-fun far_Adv : Adv;
-fun far_famed_A : A;
-fun far_fetched_A : A;
-fun far_flung_A : A;
-fun far_off_A : A;
-fun far_reaching_A : A;
-fun far_seeing_A : A;
-fun far_sighted_A : A;
-fun faraway_A : A;
-fun farce_N : N;
-fun farcical_A : A;
-fun fare_N : N;
-fun fare_V : V;
-fun fare_stage_N : N;
-fun farewell_N : N;
-fun farinaceous_A : A;
-fun farm_N : N;
-fun farm_V : V;
-fun farm_V2 : V2;
-fun farmer_N : N;
-fun farmhand_N : N;
-fun farmhouse_N : N;
-fun farmstead_N : N;
-fun farmyard_N : N;
-fun farnham_PN : PN;
-fun farnworth_PN : PN;
-fun farrago_N : N;
-fun farrier_N : N;
-fun farrow_N : N;
-fun farrow_V : V;
-fun farsi_N : N;
-fun fart_N : N;
-fun fart_V : V;
-fun farther_Adv : Adv;
-fun farthest_Adv : Adv;
-fun farthing_N : N;
-fun fascia_N : N;
-fun fascinate_V2 : V2;
-fun fascinating_A : A;
-fun fascination_N : N;
-fun fascism_N : N;
-fun fascist_A : A;
-fun fascist_N : N;
-fun fashion_N : N;
-fun fashion_V2 : V2;
-fun fashionable_A : A;
-fun fast_A : A;
-fun fast_Adv : Adv;
-fun fast_N : N;
-fun fast_V : V;
-fun fasten_V : V;
-fun fasten_V2 : V2;
-fun fastener_N : N;
-fun fastening_N : N;
-fun fastidious_A : A;
-fun fastidiousness_N : N;
-fun fastness_N : N;
-fun fat_A : A;
-fun fat_N : N;
-fun fat_V2 : V2;
-fun fatal_A : A;
-fun fatalism_N : N;
-fun fatalist_N : N;
-fun fatalistic_A : A;
-fun fatality_N : N;
-fun fate_N : N;
-fun fate_V2 : V2;
-fun fateful_A : A;
-fun fathead_N : N;
-fun father_N : N;
-fun father_V2 : V2;
-fun father_in_law_N : N;
-fun fatherhood_N : N;
-fun fatherland_N : N;
-fun fatherless_A : A;
-fun fatherly_A : A;
-fun fathom_N : N;
-fun fathom_V2 : V2;
-fun fathomless_A : A;
-fun fatigue_N : N;
-fun fatigue_V2 : V2;
-fun fatigue_party_N : N;
-fun fatless_A : A;
-fun fatness_N : N;
-fun fatten_V : V;
-fun fatten_V2 : V2;
-fun fattish_A : A;
-fun fatty_A : A;
-fun fatuity_N : N;
-fun fatuous_A : A;
-fun fatuousness_N : N;
-fun faucet_N : N;
-fun fauldhouse_PN : PN;
-fun fault_N : N;
-fun fault_V2 : V2;
-fun fault_finder_N : N;
-fun fault_finding_N : N;
-fun faultily_Adv : Adv;
-fun faultless_A : A;
-fun faulty_A : A;
-fun faun_N : N;
-fun faux_pas_N : N;
-fun faversham_PN : PN;
-fun favour_N : N;
-fun favour_V2 : V2;
-fun favourable_A : A;
-fun favourite_A : A;
-fun favourite_N : N;
-fun favouritism_N : N;
-fun fawley_PN : PN;
-fun fawn_N : N;
-fun fawn_V : V;
-fun facade_N : N;
-fun fbi_PN : PN;
-fun fealty_N : N;
-fun fear_N : N;
-fun fear_V : V;
-fun fear_V2 : V2;
-fun fearful_A : A;
-fun fearfulness_N : N;
-fun fearless_A : A;
-fun fearlessness_N : N;
-fun fearsome_A : A;
-fun feasibility_N : N;
-fun feasible_A : A;
-fun feast_N : N;
-fun feast_V : V;
-fun feast_V2 : V2;
-fun feast_day_N : N;
-fun feat_N : N;
-fun feather_N : N;
-fun feather_V2 : V2;
-fun feather_boa_N : N;
-fun featherbed_N : N;
-fun featherbed_V2 : V2;
-fun featherbrained_A : A;
-fun featherstone_PN : PN;
-fun featherweight_N : N;
-fun feathery_A : A;
-fun feature_N : N;
-fun feature_V2 : V2;
-fun featureless_A : A;
-fun feb_PN : PN;
-fun febrile_A : A;
-fun february_N : N;
-fun february_PN : PN;
-fun feckless_A : A;
-fun fecklessness_N : N;
-fun fecund_A : A;
-fun fecundity_N : N;
-fun fed_N : N;
-fun federal_A : A;
-fun federalism_N : N;
-fun federalist_N : N;
-fun federate_V : V;
-fun federate_V2 : V2;
-fun federation_N : N;
-fun fee_N : N;
-fun fee_V2 : V2;
-fun feeble_A : A;
-fun feeble_minded_A : A;
-fun feebleness_N : N;
-fun feebly_Adv : Adv;
-fun feed_N : N;
-fun feed_V : V;
-fun feed_V2 : V2;
-fun feedback_N : N;
-fun feeder_N : N;
-fun feeding_bottle_N : N;
-fun feel_N : N;
-fun feel_V : V;
-fun feel_V2 : V2;
-fun feeler_N : N;
-fun feeling_A : A;
-fun feeling_N : N;
-fun feign_V2 : V2;
-fun feint_N : N;
-fun feint_V : V;
-fun feldspar_N : N;
-fun felicitate_V2 : V2;
-fun felicitation_N : N;
-fun felicitous_A : A;
-fun felicity_N : N;
-fun felicity_PN : PN;
-fun feline_A : A;
-fun felix_PN : PN;
-fun felixstowe_PN : PN;
-fun fell_A : A;
-fun fell_V2 : V2;
-fun fellah_N : N;
-fun fellow_N : N;
-fun fellow_feeling_N : N;
-fun fellow_traveller_N : N;
-fun fellowship_N : N;
-fun felon_N : N;
-fun felonious_A : A;
-fun felony_N : N;
-fun felspar_N : N;
-fun felt_N : N;
-fun felucca_N : N;
-fun fem_PN : PN;
-fun female_A : A;
-fun female_N : N;
-fun feminine_A : A;
-fun femininity_N : N;
-fun feminism_N : N;
-fun feminist_N : N;
-fun femur_N : N;
-fun fen_N : N;
-fun fence_N : N;
-fun fence_V2 : V2;
-fun fencer_N : N;
-fun fencing_N : N;
-fun fend_V : V;
-fun fend_V2 : V2;
-fun fender_N : N;
-fun fennel_N : N;
-fun feoff_N : N;
-fun feral_A : A;
-fun fermanagh_PN : PN;
-fun ferment_N : N;
-fun ferment_V : V;
-fun ferment_V2 : V2;
-fun fermentation_N : N;
-fun fern_N : N;
-fun ferny_A : A;
-fun ferocious_A : A;
-fun ferocity_N : N;
-fun ferrara_PN : PN;
-fun ferret_N : N;
-fun ferret_V : V;
-fun ferret_V2 : V2;
-fun ferroconcrete_N : N;
-fun ferrous_A : A;
-fun ferrule_N : N;
-fun ferry_N : N;
-fun ferry_V : V;
-fun ferry_V2 : V2;
-fun ferryboat_N : N;
-fun ferryhill_PN : PN;
-fun ferryman_N : N;
-fun fertile_A : A;
-fun fertility_N : N;
-fun fertilization_N : N;
-fun fertilize_V2 : V2;
-fun fertilizer_N : N;
-fun ferule_N : N;
-fun fervency_N : N;
-fun fervent_A : A;
-fun fervid_A : A;
-fun fervour_N : N;
-fun festal_A : A;
-fun fester_V : V;
-fun festival_N : N;
-fun festive_A : A;
-fun festivity_N : N;
-fun festoon_N : N;
-fun festoon_V2 : V2;
-fun fetal_A : A;
-fun fetch_V : V;
-fun fetch_V2 : V2;
-fun fetching_A : A;
-fun fete_day_N : N;
-fun fetid_A : A;
-fun fetish_N : N;
-fun fetlock_N : N;
-fun fetter_N : N;
-fun fetter_V2 : V2;
-fun fettle_N : N;
-fun feud_N : N;
-fun feudal_A : A;
-fun feudalism_N : N;
-fun feudatory_A : A;
-fun feudatory_N : N;
-fun fever_N : N;
-fun fevered_A : A;
-fun feverish_A : A;
-fun fewness_N : N;
-fun fey_A : A;
-fun fez_N : N;
-fun fiance_N : N;
-fun fiancee_N : N;
-fun fiasco_N : N;
-fun fiat_N : N;
-fun fib_N : N;
-fun fib_V : V;
-fun fibber_N : N;
-fun fibbing_N : N;
-fun fibre_N : N;
-fun fibreboard_N : N;
-fun fibreglass_N : N;
-fun fibrositis_N : N;
-fun fibrous_A : A;
-fun fibula_N : N;
-fun fickle_A : A;
-fun fickleness_N : N;
-fun fiction_N : N;
-fun fictional_A : A;
-fun fictitious_A : A;
-fun fiddle_N : N;
-fun fiddle_V2 : V2;
-fun fiddler_N : N;
-fun fiddlestick_N : N;
-fun fiddling_A : A;
-fun fidelity_N : N;
-fun fidget_N : N;
-fun fidget_V : V;
-fun fidget_V2 : V2;
-fun fidgety_A : A;
-fun fief_N : N;
-fun field_N : N;
-fun field_V : V;
-fun field_V2 : V2;
-fun field_hospital_N : N;
-fun field_officer_N : N;
-fun fielder_N : N;
-fun fieldsman_N : N;
-fun fieldwork_N : N;
-fun fiend_N : N;
-fun fiendish_A : A;
-fun fierce_A : A;
-fun fierceness_N : N;
-fun fieriness_N : N;
-fun fiery_A : A;
-fun fiesta_N : N;
-fun fife_N : N;
-fun fife_PN : PN;
-fun fig_N : N;
-fun fig_leaf_N : N;
-fun fight_N : N;
-fun fight_V : V;
-fun fight_V2 : V2;
-fun fighter_N : N;
-fun fighting_N : N;
-fun figment_N : N;
-fun figurative_A : A;
-fun figure_N : N;
-fun figure_V : V;
-fun figure_V2 : V2;
-fun figured_A : A;
-fun figurehead_N : N;
-fun fiji_PN : PN;
-fun fijian_A : A;
-fun fijian_N : N;
-fun filament_N : N;
-fun filature_N : N;
-fun filbert_N : N;
-fun filch_V2 : V2;
-fun file_N : N;
-fun file_V : V;
-fun file_V2 : V2;
-fun filial_A : A;
-fun filibuster_N : N;
-fun filibuster_V : V;
-fun filigree_N : N;
-fun filipino_A : A;
-fun filipino_N : N;
-fun fill_N : N;
-fun fill_V : V;
-fun fill_V2 : V2;
-fun fillet_N : N;
-fun fillet_V2 : V2;
-fun filling_N : N;
-fun fillip_N : N;
-fun filly_N : N;
-fun film_N : N;
-fun film_V : V;
-fun film_V2 : V2;
-fun film_star_N : N;
-fun filmable_A : A;
-fun filmy_A : A;
-fun filter_N : N;
-fun filter_V : V;
-fun filter_V2 : V2;
-fun filtertipped_A : A;
-fun filth_N : N;
-fun filthily_Adv : Adv;
-fun filthiness_N : N;
-fun filthy_A : A;
-fun filtrate_N : N;
-fun filtrate_V : V;
-fun filtrate_V2 : V2;
-fun filtration_N : N;
-fun fin_N : N;
-fun finable_A : A;
-fun final_A : A;
-fun final_N : N;
-fun finale_N : N;
-fun finalist_N : N;
-fun finality_N : N;
-fun finalize_V2 : V2;
-fun finance_N : N;
-fun finance_V2 : V2;
-fun financial_A : A;
-fun financier_N : N;
-fun finch_N : N;
-fun find_N : N;
-fun find_V2 : V2;
-fun finder_N : N;
-fun finding_N : N;
-fun fine_A : A;
-fun fine_Adv : Adv;
-fun fine_N : N;
-fun fine_V2 : V2;
-fun fine_tooth_A : A;
-fun fineable_A : A;
-fun fineness_N : N;
-fun finery_N : N;
-fun finesse_N : N;
-fun finger_N : N;
-fun finger_V2 : V2;
-fun finger_alphabet_N : N;
-fun finger_bowl_N : N;
-fun finger_plate_N : N;
-fun finger_post_N : N;
-fun fingerboard_N : N;
-fun fingermark_N : N;
-fun fingernail_N : N;
-fun fingerprint_N : N;
-fun fingerstall_N : N;
-fun fingertip_N : N;
-fun finical_A : A;
-fun finicky_A : A;
-fun finis_N : N;
-fun finish_N : N;
-fun finish_V : V;
-fun finish_V2 : V2;
-fun finite_A : A;
-fun finland_PN : PN;
-fun finn_N : N;
-fun finnan_N : N;
-fun finnan_haddie_N : N;
-fun finnan_haddock_N : N;
-fun finnish_A : A;
-fun finnish_N : N;
-fun fiona_PN : PN;
-fun fiord_N : N;
-fun fir_N : N;
-fun fir_cone_N : N;
-fun fire_N : N;
-fun fire_V : V;
-fun fire_V2 : V2;
-fun fire_alarm_N : N;
-fun fire_brigade_N : N;
-fun fire_control_N : N;
-fun fire_eater_N : N;
-fun fire_engine_N : N;
-fun fire_escape_N : N;
-fun fire_extinguisher_N : N;
-fun fire_fighter_N : N;
-fun fire_hose_N : N;
-fun fire_power_N : N;
-fun fire_raising_N : N;
-fun fire_walker_N : N;
-fun fire_walking_N : N;
-fun fire_watcher_N : N;
-fun fire_watching_N : N;
-fun firearm_N : N;
-fun fireball_N : N;
-fun firebird_N : N;
-fun firebomb_N : N;
-fun firebox_N : N;
-fun firebrand_N : N;
-fun firebreak_N : N;
-fun firebrick_N : N;
-fun firebug_N : N;
-fun fireclay_N : N;
-fun firecracker_N : N;
-fun firedamp_N : N;
-fun firedog_N : N;
-fun firefly_N : N;
-fun fireguard_N : N;
-fun firelight_N : N;
-fun firelighter_N : N;
-fun fireman_N : N;
-fun firenze_PN : PN;
-fun fireplace_N : N;
-fun fireproof_A : A;
-fun fireside_N : N;
-fun firestone_N : N;
-fun firewater_N : N;
-fun firewood_N : N;
-fun firework_N : N;
-fun firing_line_N : N;
-fun firing_party_N : N;
-fun firing_squad_N : N;
-fun firkin_N : N;
-fun firm_A : A;
-fun firm_Adv : Adv;
-fun firm_N : N;
-fun firm_V : V;
-fun firm_V2 : V2;
-fun firmament_N : N;
-fun firmness_N : N;
-fun first_class_A : A;
-fun first_class_Adv : Adv;
-fun first_hand_A : A;
-fun first_hand_Adv : Adv;
-fun first_nighter_N : N;
-fun first_rate_A : A;
-fun first_rate_Adv : Adv;
-fun firstborn_A : A;
-fun firstborn_N : N;
-fun firth_N : N;
-fun fiscal_A : A;
-fun fish_N : N;
-fun fish_V : V;
-fun fish_V2 : V2;
-fun fish_hook_N : N;
-fun fish_knife_N : N;
-fun fish_slice_N : N;
-fun fishball_N : N;
-fun fishbone_N : N;
-fun fishcake_N : N;
-fun fisher_N : N;
-fun fisherman_N : N;
-fun fishery_N : N;
-fun fishing_N : N;
-fun fishing_line_N : N;
-fun fishing_rod_N : N;
-fun fishing_tackle_N : N;
-fun fishmonger_N : N;
-fun fishpaste_N : N;
-fun fishplate_N : N;
-fun fishwife_N : N;
-fun fishy_A : A;
-fun fissile_A : A;
-fun fission_N : N;
-fun fissionable_A : A;
-fun fissiparous_A : A;
-fun fissure_N : N;
-fun fist_N : N;
-fun fistula_N : N;
-fun fit_A : A;
-fun fit_N : N;
-fun fit_V : V;
-fun fit_V2 : V2;
-fun fitful_A : A;
-fun fitment_N : N;
-fun fitness_N : N;
-fun fitter_N : N;
-fun fitting_A : A;
-fun fitting_N : N;
-fun fivefold_A : A;
-fun fivepence_N : N;
-fun fivepenny_A : A;
-fun fiver_N : N;
-fun fives_N : N;
-fun fix_N : N;
-fun fix_V : V;
-fun fix_V2 : V2;
-fun fixate_V2 : V2;
-fun fixation_N : N;
-fun fixative_N : N;
-fun fixed_A : A;
-fun fixture_N : N;
-fun fizz_N : N;
-fun fizz_V : V;
-fun fizzle_V : V;
-fun fizzy_A : A;
-fun fjord_N : N;
-fun flabbergast_V2 : V2;
-fun flabbily_Adv : Adv;
-fun flabbiness_N : N;
-fun flabby_A : A;
-fun flaccid_A : A;
-fun flaccidity_N : N;
-fun flag_N : N;
-fun flag_V : V;
-fun flag_V2 : V2;
-fun flag_captain_N : N;
-fun flag_day_N : N;
-fun flagellant_N : N;
-fun flagellate_V2 : V2;
-fun flagellation_N : N;
-fun flageolet_N : N;
-fun flagon_N : N;
-fun flagpole_N : N;
-fun flagrant_A : A;
-fun flagship_N : N;
-fun flagstaff_N : N;
-fun flagstone_N : N;
-fun flail_N : N;
-fun flail_V2 : V2;
-fun flair_N : N;
-fun flak_N : N;
-fun flake_N : N;
-fun flake_V : V;
-fun flakiness_N : N;
-fun flaky_A : A;
-fun flambeau_N : N;
-fun flamboyance_N : N;
-fun flamboyant_A : A;
-fun flame_N : N;
-fun flame_V : V;
-fun flamethrower_N : N;
-fun flaming_A : A;
-fun flamingo_N : N;
-fun flammable_A : A;
-fun flan_N : N;
-fun flange_N : N;
-fun flank_N : N;
-fun flank_V2 : V2;
-fun flannel_N : N;
-fun flannelette_N : N;
-fun flap_N : N;
-fun flap_V : V;
-fun flap_V2 : V2;
-fun flapjack_N : N;
-fun flapper_N : N;
-fun flare_N : N;
-fun flare_V : V;
-fun flare_V2 : V2;
-fun flare_path_N : N;
-fun flare_up_N : N;
-fun flash_N : N;
-fun flash_V : V;
-fun flash_V2 : V2;
-fun flashback_N : N;
-fun flashbulb_N : N;
-fun flashgun_N : N;
-fun flashily_Adv : Adv;
-fun flashlight_N : N;
-fun flashpoint_N : N;
-fun flashy_A : A;
-fun flask_N : N;
-fun flat_A : A;
-fun flat_Adv : Adv;
-fun flat_N : N;
-fun flat_bottomed_A : A;
-fun flat_car_N : N;
-fun flat_footed_A : A;
-fun flat_iron_N : N;
-fun flatfish_N : N;
-fun flatlet_N : N;
-fun flatness_N : N;
-fun flatten_V : V;
-fun flatten_V2 : V2;
-fun flatter_V2 : V2;
-fun flatterer_N : N;
-fun flattery_N : N;
-fun flattop_N : N;
-fun flatulence_N : N;
-fun flaunt_V : V;
-fun flaunt_V2 : V2;
-fun flautist_N : N;
-fun flavour_N : N;
-fun flavour_V2 : V2;
-fun flavouring_N : N;
-fun flavourless_A : A;
-fun flaw_N : N;
-fun flawed_A : A;
-fun flawless_A : A;
-fun flax_N : N;
-fun flaxen_A : A;
-fun flay_V2 : V2;
-fun flea_N : N;
-fun flea_bite_N : N;
-fun flea_bitten_A : A;
-fun fleapit_N : N;
-fun fleck_N : N;
-fun fleck_V2 : V2;
-fun fledged_A : A;
-fun fledgeling_N : N;
-fun fledgling_N : N;
-fun flee_V : V;
-fun flee_V2 : V2;
-fun fleece_N : N;
-fun fleece_V2 : V2;
-fun fleecy_A : A;
-fun fleet_A : A;
-fun fleet_N : N;
-fun fleet_PN : PN;
-fun fleet_street_PN : PN;
-fun fleeting_A : A;
-fun fleetness_N : N;
-fun fleetwood_PN : PN;
-fun flemish_A : A;
-fun flemish_N : N;
-fun flesh_N : N;
-fun flesh_wound_N : N;
-fun fleshly_A : A;
-fun fleshy_A : A;
-fun fleur_de_lis_N : N;
-fun fleur_de_lys_N : N;
-fun flex_N : N;
-fun flex_V2 : V2;
-fun flexibility_N : N;
-fun flexible_A : A;
-fun flibbertigibbet_N : N;
-fun flick_N : N;
-fun flick_V2 : V2;
-fun flick_knife_N : N;
-fun flicker_N : N;
-fun flicker_V : V;
-fun flier_N : N;
-fun flight_N : N;
-fun flight_V2 : V2;
-fun flightless_A : A;
-fun flighty_A : A;
-fun flimsily_Adv : Adv;
-fun flimsiness_N : N;
-fun flimsy_A : A;
-fun flimsy_N : N;
-fun flinch_V : V;
-fun fling_N : N;
-fun fling_V : V;
-fun fling_V2 : V2;
-fun flint_N : N;
-fun flint_PN : PN;
-fun flintstone_N : N;
-fun flinty_A : A;
-fun flip_A : A;
-fun flip_N : N;
-fun flip_V : V;
-fun flip_V2 : V2;
-fun flippancy_N : N;
-fun flippant_A : A;
-fun flipper_N : N;
-fun flirt_N : N;
-fun flirt_V : V;
-fun flirtation_N : N;
-fun flirtatious_A : A;
-fun flit_N : N;
-fun flit_V : V;
-fun float_N : N;
-fun float_V : V;
-fun float_V2 : V2;
-fun floatation_N : N;
-fun floating_A : A;
-fun flock_N : N;
-fun flock_V : V;
-fun floe_N : N;
-fun flog_V2 : V2;
-fun flogging_N : N;
-fun flood_N : N;
-fun flood_V : V;
-fun flood_V2 : V2;
-fun flood_tide_N : N;
-fun floodgate_N : N;
-fun floodlight_V2 : V2;
-fun floor_N : N;
-fun floor_V2 : V2;
-fun floor_walker_N : N;
-fun floorboard_N : N;
-fun flooring_N : N;
-fun floozie_N : N;
-fun floozy_N : N;
-fun flop_Adv : Adv;
-fun flop_N : N;
-fun flop_V : V;
-fun flop_V2 : V2;
-fun floppy_A : A;
-fun flora_PN : PN;
-fun floral_A : A;
-fun florence_PN : PN;
-fun floriculture_N : N;
-fun florid_A : A;
-fun florida_PN : PN;
-fun florin_N : N;
-fun florist_N : N;
-fun florrie_PN : PN;
-fun floss_N : N;
-fun flotation_N : N;
-fun flotilla_N : N;
-fun flotsam_N : N;
-fun flounce_N : N;
-fun flounce_V : V;
-fun flounce_V2 : V2;
-fun flounder_N : N;
-fun flounder_V : V;
-fun flour_N : N;
-fun flour_V2 : V2;
-fun flourish_N : N;
-fun flourish_V : V;
-fun flourish_V2 : V2;
-fun floury_A : A;
-fun flout_V2 : V2;
-fun flow_N : N;
-fun flow_V : V;
-fun flower_N : N;
-fun flower_V : V;
-fun flower_girl_N : N;
-fun flowerbed_N : N;
-fun flowered_A : A;
-fun flowerless_A : A;
-fun flowerpot_N : N;
-fun flowery_A : A;
-fun flu_N : N;
-fun fluctuate_V : V;
-fun fluctuation_N : N;
-fun flue_N : N;
-fun fluency_N : N;
-fun fluent_A : A;
-fun fluff_N : N;
-fun fluff_V2 : V2;
-fun fluffy_A : A;
-fun fluid_A : A;
-fun fluid_N : N;
-fun fluidity_N : N;
-fun fluke_N : N;
-fun flume_N : N;
-fun flummox_V2 : V2;
-fun flunk_V : V;
-fun flunk_V2 : V2;
-fun flunkey_N : N;
-fun flunky_N : N;
-fun fluorescence_N : N;
-fun fluorescent_A : A;
-fun fluoridate_V2 : V2;
-fun fluoridation_N : N;
-fun fluoride_N : N;
-fun fluoridization_N : N;
-fun fluoridize_V2 : V2;
-fun fluorine_N : N;
-fun flurry_N : N;
-fun flurry_V2 : V2;
-fun flush_A : A;
-fun flush_N : N;
-fun flush_V : V;
-fun flush_V2 : V2;
-fun fluster_N : N;
-fun fluster_V2 : V2;
-fun flute_N : N;
-fun flute_V : V;
-fun flute_V2 : V2;
-fun fluting_N : N;
-fun flutist_N : N;
-fun flutter_N : N;
-fun flutter_V : V;
-fun flutter_V2 : V2;
-fun fluvial_A : A;
-fun flux_N : N;
-fun fly_A : A;
-fun fly_N : N;
-fun fly_V : V;
-fun fly_V2 : V2;
-fun fly_fish_V : V;
-fun fly_fishing_N : N;
-fun fly_swat_N : N;
-fun fly_swatter_N : N;
-fun flyblown_A : A;
-fun flycatcher_N : N;
-fun flyer_N : N;
-fun flying_A : A;
-fun flying_bomb_N : N;
-fun flying_fish_N : N;
-fun flying_fox_N : N;
-fun flying_squad_N : N;
-fun flyleaf_N : N;
-fun flyover_N : N;
-fun flypaper_N : N;
-fun flypast_N : N;
-fun flytrap_N : N;
-fun flyweight_N : N;
-fun flywheel_N : N;
-fun fm_N : N;
-fun fo'c'sle_N : N;
-fun fo_N : N;
-fun foal_N : N;
-fun foal_V : V;
-fun foam_N : N;
-fun foam_V : V;
-fun foam_rubber_N : N;
-fun foamy_A : A;
-fun fob_V2 : V2;
-fun focal_A : A;
-fun focus_N : N;
-fun focus_V : V;
-fun focus_V2 : V2;
-fun fodder_N : N;
-fun foe_N : N;
-fun foetal_A : A;
-fun foetus_N : N;
-fun fog_N : N;
-fun fog_V2 : V2;
-fun fogbank_N : N;
-fun fogbound_A : A;
-fun fogey_N : N;
-fun foggia_PN : PN;
-fun foggy_A : A;
-fun foghorn_N : N;
-fun foglamp_N : N;
-fun fogsignal_N : N;
-fun foible_N : N;
-fun foil_N : N;
-fun foil_V2 : V2;
-fun foist_V2 : V2;
-fun fold_N : N;
-fun fold_V : V;
-fun fold_V2 : V2;
-fun folder_N : N;
-fun foliage_N : N;
-fun folio_N : N;
-fun folk_N : N;
-fun folk_dance_N : N;
-fun folkestone_PN : PN;
-fun folklore_N : N;
-fun folksong_N : N;
-fun folksy_A : A;
-fun folktale_N : N;
-fun follow_V : V;
-fun follow_V2 : V2;
-fun follow_on_N : N;
-fun follow_through_N : N;
-fun follow_up_N : N;
-fun follower_N : N;
-fun following_A : A;
-fun following_N : N;
-fun folly_N : N;
-fun foment_V2 : V2;
-fun fomentation_N : N;
-fun fond_A : A;
-fun fondant_N : N;
-fun fondle_V2 : V2;
-fun fondness_N : N;
-fun font_N : N;
-fun foochow_PN : PN;
-fun food_N : N;
-fun foodless_A : A;
-fun foodstuff_N : N;
-fun fool_N : N;
-fun fool_V : V;
-fun fool_V2 : V2;
-fun foolery_N : N;
-fun foolhardiness_N : N;
-fun foolhardy_A : A;
-fun foolish_A : A;
-fun foolishness_N : N;
-fun foolproof_A : A;
-fun foolscap_N : N;
-fun foot_N : N;
-fun foot_V : V;
-fun foot_V2 : V2;
-fun foot_and_mouth_A : A;
-fun foot_and_mouth_N : N;
-fun foot_bath_N : N;
-fun foot_pound_N : N;
-fun foot_race_N : N;
-fun foot_rot_N : N;
-fun footage_N : N;
-fun football_N : N;
-fun footballer_N : N;
-fun footboard_N : N;
-fun footbridge_N : N;
-fun footed_A : A;
-fun footer_N : N;
-fun footfall_N : N;
-fun footfault_N : N;
-fun foothold_N : N;
-fun footing_N : N;
-fun footle_V : V;
-fun footle_V2 : V2;
-fun footling_A : A;
-fun footloose_A : A;
-fun footman_N : N;
-fun footmark_N : N;
-fun footnote_N : N;
-fun footpath_N : N;
-fun footplate_N : N;
-fun footprint_N : N;
-fun footslog_V : V;
-fun footslogger_N : N;
-fun footsore_A : A;
-fun footstep_N : N;
-fun footstool_N : N;
-fun footsure_A : A;
-fun footwear_N : N;
-fun footwork_N : N;
-fun fop_N : N;
-fun foppish_A : A;
-fun forage_N : N;
-fun forage_V : V;
-fun foray_N : N;
-fun foray_V : V;
-fun forbear_N : N;
-fun forbear_V : V;
-fun forbear_V2 : V2;
-fun forbearance_N : N;
-fun forbid_V2 : V2;
-fun forbidding_A : A;
-fun force_N : N;
-fun force_V2 : V2;
-fun force_feed_V2 : V2;
-fun force_land_V : V;
-fun force_land_V2 : V2;
-fun force_majeure_N : N;
-fun forceful_A : A;
-fun forcefulness_N : N;
-fun forcemeat_N : N;
-fun forcible_A : A;
-fun ford_N : N;
-fun ford_V2 : V2;
-fun fordable_A : A;
-fun fore_A : A;
-fun fore_Adv : Adv;
-fun fore_N : N;
-fun forearm_N : N;
-fun forearm_V2 : V2;
-fun forebode_V2 : V2;
-fun foreboding_N : N;
-fun forecast_N : N;
-fun forecast_V2 : V2;
-fun forecaster_N : N;
-fun forecastle_N : N;
-fun foreclose_V : V;
-fun foreclose_V2 : V2;
-fun foreclosure_N : N;
-fun forecourt_N : N;
-fun foredoom_V2 : V2;
-fun forefather_N : N;
-fun forefinger_N : N;
-fun forefoot_N : N;
-fun forefront_N : N;
-fun foregather_V : V;
-fun forego_V : V;
-fun forego_V2 : V2;
-fun foregoing_A : A;
-fun foregone_A : A;
-fun foreground_N : N;
-fun forehand_A : A;
-fun forehead_N : N;
-fun foreign_A : A;
-fun foreigner_N : N;
-fun foreknow_V : V;
-fun foreknow_V2 : V2;
-fun foreknowledge_N : N;
-fun foreland_N : N;
-fun foreleg_N : N;
-fun forelock_N : N;
-fun foreman_N : N;
-fun foremast_N : N;
-fun foremost_A : A;
-fun foremost_Adv : Adv;
-fun forename_N : N;
-fun forenoon_N : N;
-fun forensic_A : A;
-fun foreordain_V2 : V2;
-fun forerunner_N : N;
-fun foresail_N : N;
-fun foresee_V2 : V2;
-fun foreseeable_A : A;
-fun foreshadow_V2 : V2;
-fun foreshore_N : N;
-fun foreshorten_V2 : V2;
-fun foresight_N : N;
-fun foreskin_N : N;
-fun forest_N : N;
-fun forestall_V2 : V2;
-fun forester_N : N;
-fun forestry_N : N;
-fun foreswear_V2 : V2;
-fun foretaste_N : N;
-fun foretell_V2 : V2;
-fun forethought_N : N;
-fun foretop_N : N;
-fun forever_Adv : Adv;
-fun forewarn_V2 : V2;
-fun forewoman_N : N;
-fun foreword_N : N;
-fun forfar_PN : PN;
-fun forfeit_N : N;
-fun forfeit_V2 : V2;
-fun forfeiture_N : N;
-fun forgather_V : V;
-fun forge_N : N;
-fun forge_V : V;
-fun forge_V2 : V2;
-fun forger_N : N;
-fun forgery_N : N;
-fun forget_V : V;
-fun forget_V2 : V2;
-fun forget_me_not_N : N;
-fun forgetful_A : A;
-fun forgetfulness_N : N;
-fun forging_N : N;
-fun forgivable_A : A;
-fun forgive_V : V;
-fun forgive_V2 : V2;
-fun forgiveness_N : N;
-fun forgiving_A : A;
-fun forgo_V2 : V2;
-fun fork_N : N;
-fun fork_V : V;
-fun fork_V2 : V2;
-fun forked_A : A;
-fun forli_PN : PN;
-fun forlorn_A : A;
-fun forlornness_N : N;
-fun form_N : N;
-fun form_V : V;
-fun form_V2 : V2;
-fun formal_A : A;
-fun formaldehyde_N : N;
-fun formalin_N : N;
-fun formalism_N : N;
-fun formality_N : N;
-fun formalize_V2 : V2;
-fun format_N : N;
-fun formation_N : N;
-fun formative_A : A;
-fun formby_PN : PN;
-fun former_A : A;
-fun formic_A : A;
-fun formica_N : N;
-fun formidable_A : A;
-fun formless_A : A;
-fun formosa_PN : PN;
-fun formula_N : N;
-fun formulate_V2 : V2;
-fun formulation_N : N;
-fun fornicate_V : V;
-fun fornication_N : N;
-fun forrader_Adv : Adv;
-fun forsake_V2 : V2;
-fun forsooth_Adv : Adv;
-fun forswear_V2 : V2;
-fun forsythia_N : N;
-fun fort_N : N;
-fun fort_lauderdale_PN : PN;
-fun fort_william_PN : PN;
-fun fort_worth_PN : PN;
-fun fortaleza_PN : PN;
-fun forte_A : A;
-fun forte_Adv : Adv;
-fun forte_N : N;
-fun forth_Adv : Adv;
-fun forthcoming_A : A;
-fun forthright_A : A;
-fun forthwith_Adv : Adv;
-fun fortieth_A : A;
-fun fortieth_N : N;
-fun fortification_N : N;
-fun fortify_V2 : V2;
-fun fortissimo_A : A;
-fun fortissimo_Adv : Adv;
-fun fortitude_N : N;
-fun fortnight_N : N;
-fun fortnightly_A : A;
-fun fortnightly_Adv : Adv;
-fun fortress_N : N;
-fun fortuitous_A : A;
-fun fortunate_A : A;
-fun fortune_N : N;
-fun forty_A : A;
-fun forty_N : N;
-fun fortyish_A : A;
-fun forum_N : N;
-fun forward_A : A;
-fun forward_Adv : Adv;
-fun forward_N : N;
-fun forward_V2 : V2;
-fun forwardness_N : N;
-fun forwards_Adv : Adv;
-fun fosse_N : N;
-fun fossil_N : N;
-fun fossilization_N : N;
-fun fossilize_V : V;
-fun fossilize_V2 : V2;
-fun foster_V2 : V2;
-fun foster_brother_N : N;
-fun foster_child_N : N;
-fun foster_father_N : N;
-fun foster_mother_N : N;
-fun foster_parent_N : N;
-fun foster_sister_N : N;
-fun foul_A : A;
-fun foul_N : N;
-fun foul_V : V;
-fun foul_V2 : V2;
-fun foul_mouthed_A : A;
-fun foul_spoken_A : A;
-fun foulness_N : N;
-fun found_V2 : V2;
-fun foundation_N : N;
-fun foundation_stone_N : N;
-fun founder_N : N;
-fun founder_V : V;
-fun founder_V2 : V2;
-fun foundling_N : N;
-fun foundress_N : N;
-fun foundry_N : N;
-fun fount_N : N;
-fun fountain_N : N;
-fun fountain_head_N : N;
-fun fountain_pen_N : N;
-fun four_in_hand_N : N;
-fun four_part_A : A;
-fun four_ply_A : A;
-fun four_poster_N : N;
-fun four_pounder_N : N;
-fun four_wheeler_N : N;
-fun fourfold_A : A;
-fun fourfold_Adv : Adv;
-fun fourpence_N : N;
-fun fourpenny_A : A;
-fun fourscore_A : A;
-fun fourscore_N : N;
-fun foursome_N : N;
-fun foursquare_A : A;
-fun fowey_PN : PN;
-fun fowl_N : N;
-fun fowl_V : V;
-fun fowl_run_N : N;
-fun fowler_N : N;
-fun fowlingpiece_N : N;
-fun fowlpest_N : N;
-fun fox_N : N;
-fun fox_V2 : V2;
-fun fox_terrier_N : N;
-fun foxglove_N : N;
-fun foxhole_N : N;
-fun foxhound_N : N;
-fun foxhunt_N : N;
-fun foxhunt_V : V;
-fun foxhunter_N : N;
-fun foxtrot_N : N;
-fun foxy_A : A;
-fun foyer_N : N;
-fun fr_PN : PN;
-fun fracas_N : N;
-fun fraction_N : N;
-fun fractional_A : A;
-fun fractious_A : A;
-fun fractiousness_N : N;
-fun fracture_N : N;
-fun fracture_V : V;
-fun fracture_V2 : V2;
-fun fragile_A : A;
-fun fragility_N : N;
-fun fragment_N : N;
-fun fragment_V : V;
-fun fragmentary_A : A;
-fun fragmentation_N : N;
-fun fragrance_N : N;
-fun fragrant_A : A;
-fun frail_A : A;
-fun frailty_N : N;
-fun frame_N : N;
-fun frame_V : V;
-fun frame_V2 : V2;
-fun frame_up_N : N;
-fun framework_N : N;
-fun frampton_cotterell_PN : PN;
-fun fran_PN : PN;
-fun franc_N : N;
-fun france_PN : PN;
-fun frances_PN : PN;
-fun franchise_N : N;
-fun francis_PN : PN;
-fun franciscan_A : A;
-fun franciscan_N : N;
-fun frank_A : A;
-fun frank_N : N;
-fun frank_PN : PN;
-fun frank_V2 : V2;
-fun frankfurt_PN : PN;
-fun frankfurter_N : N;
-fun frankie_PN : PN;
-fun frankincense_N : N;
-fun franking_machine_N : N;
-fun franklin_N : N;
-fun frankness_N : N;
-fun frantic_A : A;
-fun frantically_Adv : Adv;
-fun fraserburgh_PN : PN;
-fun fraternal_A : A;
-fun fraternity_N : N;
-fun fraternization_N : N;
-fun fraternize_V : V;
-fun fratricide_N : N;
-fun frau_N : N;
-fun fraud_N : N;
-fun fraudulent_A : A;
-fun fraught_A : A;
-fun fray_N : N;
-fun fray_V : V;
-fun fray_V2 : V2;
-fun frazzle_N : N;
-fun freak_N : N;
-fun freak_V : V;
-fun freak_V2 : V2;
-fun freak_out_N : N;
-fun freakish_A : A;
-fun freakishness_N : N;
-fun freaky_A : A;
-fun freckle_N : N;
-fun freckle_V : V;
-fun freckle_V2 : V2;
-fun freckleton_PN : PN;
-fun fred_PN : PN;
-fun freda_PN : PN;
-fun freddie_PN : PN;
-fun freddy_PN : PN;
-fun frederick_PN : PN;
-fun frederiksberg_PN : PN;
-fun free_A : A;
-fun free_V2 : V2;
-fun free_and_easy_A : A;
-fun free_for_all_N : N;
-fun free_handed_A : A;
-fun free_list_N : N;
-fun free_liver_N : N;
-fun free_living_N : N;
-fun free_range_A : A;
-fun free_spoken_A : A;
-fun free_standing_A : A;
-fun free_thinker_N : N;
-fun free_thinking_A : A;
-fun free_thought_N : N;
-fun free_trader_N : N;
-fun freebooter_N : N;
-fun freeborn_A : A;
-fun freedman_N : N;
-fun freedom_N : N;
-fun freehand_A : A;
-fun freehold_N : N;
-fun freeholder_N : N;
-fun freelance_N : N;
-fun freelance_V : V;
-fun freeman_N : N;
-fun freemason_N : N;
-fun freemasonry_N : N;
-fun freesia_N : N;
-fun freestone_N : N;
-fun freestyle_N : N;
-fun freeway_N : N;
-fun freewheel_V : V;
-fun freewill_A : A;
-fun freeze_N : N;
-fun freeze_V : V;
-fun freeze_V2 : V2;
-fun freezer_N : N;
-fun freezing_mixture_N : N;
-fun freezing_point_N : N;
-fun freiburg_PN : PN;
-fun freight_N : N;
-fun freight_V2 : V2;
-fun freight_train_N : N;
-fun freighter_N : N;
-fun freightliner_N : N;
-fun french_A : A;
-fun french_N : N;
-fun frenchman_N : N;
-fun frenchwoman_N : N;
-fun frenetic_A : A;
-fun frenzied_A : A;
-fun frenzy_N : N;
-fun frequency_N : N;
-fun frequent_A : A;
-fun frequent_V2 : V2;
-fun fresco_N : N;
-fun fresco_V2 : V2;
-fun fresh_A : A;
-fun fresh_Adv : Adv;
-fun freshen_V : V;
-fun freshen_V2 : V2;
-fun fresher_N : N;
-fun freshman_N : N;
-fun freshness_N : N;
-fun freshwater_A : A;
-fun freshwater_PN : PN;
-fun fret_N : N;
-fun fret_V : V;
-fun fret_V2 : V2;
-fun fretful_A : A;
-fun fretsaw_N : N;
-fun fretwork_N : N;
-fun freudian_A : A;
-fun fri_PN : PN;
-fun friability_N : N;
-fun friable_A : A;
-fun friar_N : N;
-fun fricassee_N : N;
-fun fricassee_V2 : V2;
-fun fricative_A : A;
-fun fricative_N : N;
-fun friction_N : N;
-fun friday_N : N;
-fun friday_PN : PN;
-fun fridge_N : N;
-fun friend_N : N;
-fun friendless_A : A;
-fun friendlessness_N : N;
-fun friendliness_N : N;
-fun friendly_A : A;
-fun friendship_N : N;
-fun frier_N : N;
-fun frieze_N : N;
-fun frigate_N : N;
-fun fright_N : N;
-fun fright_V2 : V2;
-fun frighten_V2 : V2;
-fun frightened_A : A;
-fun frightening_A : A;
-fun frightful_A : A;
-fun frightfulness_N : N;
-fun frigid_A : A;
-fun frigidity_N : N;
-fun frill_N : N;
-fun frilled_A : A;
-fun frilly_A : A;
-fun fringe_N : N;
-fun fringe_V2 : V2;
-fun frinton_PN : PN;
-fun frippery_N : N;
-fun frisk_V : V;
-fun frisk_V2 : V2;
-fun friskily_Adv : Adv;
-fun frisky_A : A;
-fun frisson_N : N;
-fun fritter_N : N;
-fun fritter_V2 : V2;
-fun frivol_V : V;
-fun frivol_V2 : V2;
-fun frivolity_N : N;
-fun frivolous_A : A;
-fun frizz_V2 : V2;
-fun frizzle_V : V;
-fun frizzle_V2 : V2;
-fun frizzy_A : A;
-fun fro_Adv : Adv;
-fun frock_N : N;
-fun frock_coat_N : N;
-fun frodsham_PN : PN;
-fun frog_N : N;
-fun frogman_N : N;
-fun frogmarch_V2 : V2;
-fun frolic_N : N;
-fun frolic_V : V;
-fun frolicsome_A : A;
-fun frome_PN : PN;
-fun frond_N : N;
-fun front_N : N;
-fun front_V : V;
-fun front_V2 : V2;
-fun front_bench_N : N;
-fun front_bencher_N : N;
-fun frontage_N : N;
-fun frontal_A : A;
-fun frontier_N : N;
-fun frontiersman_N : N;
-fun frontispiece_N : N;
-fun frost_N : N;
-fun frost_V : V;
-fun frost_V2 : V2;
-fun frost_bound_A : A;
-fun frostbite_N : N;
-fun frostbitten_A : A;
-fun frostily_Adv : Adv;
-fun frostiness_N : N;
-fun frosting_N : N;
-fun frosty_A : A;
-fun froth_N : N;
-fun froth_V : V;
-fun frothily_Adv : Adv;
-fun frothiness_N : N;
-fun frothy_A : A;
-fun froward_A : A;
-fun frown_N : N;
-fun frown_V : V;
-fun frowningly_Adv : Adv;
-fun frowsty_A : A;
-fun frowzy_A : A;
-fun frs_N : N;
-fun fructification_N : N;
-fun fructify_V : V;
-fun fructify_V2 : V2;
-fun frugal_A : A;
-fun frugality_N : N;
-fun fruit_N : N;
-fun fruit_V : V;
-fun fruit_fly_N : N;
-fun fruitcake_N : N;
-fun fruiterer_N : N;
-fun fruitful_A : A;
-fun fruitfulness_N : N;
-fun fruition_N : N;
-fun fruitless_A : A;
-fun fruitlessness_N : N;
-fun fruity_A : A;
-fun frump_N : N;
-fun frumpish_A : A;
-fun frumpy_A : A;
-fun frustrate_V2 : V2;
-fun frustration_N : N;
-fun fry_N : N;
-fun fry_V : V;
-fun fry_V2 : V2;
-fun fry_pan_N : N;
-fun fryer_N : N;
-fun frying_pan_N : N;
-fun fraulein_N : N;
-fun ft_PN : PN;
-fun fuchsia_N : N;
-fun fuck_V : V;
-fun fuck_V2 : V2;
-fun fuck_all_N : N;
-fun fucker_N : N;
-fun fucking_A : A;
-fun fuddle_V2 : V2;
-fun fuddy_duddy_N : N;
-fun fudge_N : N;
-fun fuel_N : N;
-fun fuel_V : V;
-fun fuel_V2 : V2;
-fun fug_N : N;
-fun fuggy_A : A;
-fun fugitive_A : A;
-fun fugitive_N : N;
-fun fugue_N : N;
-fun fulcrum_N : N;
-fun fulfil_V2 : V2;
-fun fulfilment_N : N;
-fun full_A : A;
-fun full_blooded_A : A;
-fun full_blown_A : A;
-fun full_dress_A : A;
-fun full_fashioned_A : A;
-fun full_fledged_A : A;
-fun full_grown_A : A;
-fun full_length_A : A;
-fun full_page_A : A;
-fun full_scale_A : A;
-fun full_time_A : A;
-fun full_time_Adv : Adv;
-fun fullback_N : N;
-fun fuller_N : N;
-fun fullness_N : N;
-fun fully_Adv : Adv;
-fun fully_fashioned_A : A;
-fun fully_fledged_A : A;
-fun fully_grown_A : A;
-fun fulmar_N : N;
-fun fulminate_V : V;
-fun fulmination_N : N;
-fun fulsome_A : A;
-fun fulsomeness_N : N;
-fun fumble_V : V;
-fun fumble_V2 : V2;
-fun fumbler_N : N;
-fun fume_N : N;
-fun fume_V : V;
-fun fume_V2 : V2;
-fun fumigate_V2 : V2;
-fun fumigation_N : N;
-fun fun_N : N;
-fun function_N : N;
-fun function_V : V;
-fun functional_A : A;
-fun functionalism_N : N;
-fun functionalist_N : N;
-fun functionary_N : N;
-fun fund_N : N;
-fun fund_V2 : V2;
-fun fundamental_A : A;
-fun fundamental_N : N;
-fun fundamentalism_N : N;
-fun fundamentalist_N : N;
-fun funeral_N : N;
-fun funereal_A : A;
-fun funfair_N : N;
-fun fungicide_N : N;
-fun fungoid_A : A;
-fun fungous_A : A;
-fun fungus_N : N;
-fun funicular_N : N;
-fun funk_N : N;
-fun funk_V : V;
-fun funk_V2 : V2;
-fun funky_A : A;
-fun funnel_N : N;
-fun funnel_V : V;
-fun funnel_V2 : V2;
-fun funnily_Adv : Adv;
-fun funniness_N : N;
-fun funny_A : A;
-fun funny_bone_N : N;
-fun fur_N : N;
-fun furbelow_N : N;
-fun furbish_V2 : V2;
-fun furious_A : A;
-fun furl_V : V;
-fun furl_V2 : V2;
-fun furlong_N : N;
-fun furlough_N : N;
-fun furnace_N : N;
-fun furnish_V2 : V2;
-fun furniture_N : N;
-fun furore_N : N;
-fun furrier_N : N;
-fun furrow_N : N;
-fun furrow_V2 : V2;
-fun furry_A : A;
-fun furth_PN : PN;
-fun further_Adv : Adv;
-fun further_V2 : V2;
-fun furtherance_N : N;
-fun furthermore_Adv : Adv;
-fun furthermost_A : A;
-fun furthest_A : A;
-fun furthest_Adv : Adv;
-fun furtive_A : A;
-fun furtiveness_N : N;
-fun fury_N : N;
-fun furze_N : N;
-fun fuse_N : N;
-fun fuse_V : V;
-fun fuse_V2 : V2;
-fun fuselage_N : N;
-fun fushun_PN : PN;
-fun fusilier_N : N;
-fun fusillade_N : N;
-fun fusion_N : N;
-fun fuss_N : N;
-fun fuss_V : V;
-fun fuss_V2 : V2;
-fun fussily_Adv : Adv;
-fun fussiness_N : N;
-fun fusspot_N : N;
-fun fussy_A : A;
-fun fustian_N : N;
-fun fusty_A : A;
-fun futile_A : A;
-fun futility_N : N;
-fun future_A : A;
-fun future_N : N;
-fun futureless_A : A;
-fun futurism_N : N;
-fun futurist_N : N;
-fun futurity_N : N;
-fun fuze_N : N;
-fun fuzz_N : N;
-fun fuzzy_A : A;
-fun fwd_PN : PN;
-fun fete_N : N;
-fun fete_V2 : V2;
-fun fuhrer_N : N;
-fun g_man_N : N;
-fun gab_N : N;
-fun gabardine_N : N;
-fun gabble_N : N;
-fun gabble_V : V;
-fun gabble_V2 : V2;
-fun gaberdine_N : N;
-fun gable_N : N;
-fun gabled_A : A;
-fun gabon_PN : PN;
-fun gabonese_A : A;
-fun gabonese_N : N;
-fun gad_V : V;
-fun gadabout_N : N;
-fun gadfly_N : N;
-fun gadget_N : N;
-fun gadgetry_N : N;
-fun gael_N : N;
-fun gaelic_A : A;
-fun gaelic_N : N;
-fun gaff_N : N;
-fun gaffe_N : N;
-fun gaffer_N : N;
-fun gag_N : N;
-fun gag_V : V;
-fun gag_V2 : V2;
-fun gaga_A : A;
-fun gage_N : N;
-fun gage_V2 : V2;
-fun gaggle_N : N;
-fun gaiety_N : N;
-fun gaily_Adv : Adv;
-fun gain_N : N;
-fun gain_V : V;
-fun gain_V2 : V2;
-fun gainful_A : A;
-fun gainsay_V2 : V2;
-fun gainsborough_N : N;
-fun gainsborough_PN : PN;
-fun gait_N : N;
-fun gaiter_N : N;
-fun gal_N : N;
-fun gala_N : N;
-fun galactic_A : A;
-fun galantine_N : N;
-fun galashiels_PN : PN;
-fun galaxy_N : N;
-fun gale_N : N;
-fun gall_N : N;
-fun gall_V2 : V2;
-fun gallant_A : A;
-fun gallant_N : N;
-fun gallantry_N : N;
-fun galleon_N : N;
-fun gallery_N : N;
-fun galley_N : N;
-fun galley_proof_N : N;
-fun galley_slave_N : N;
-fun gallic_A : A;
-fun gallicism_N : N;
-fun gallivant_V : V;
-fun gallon_N : N;
-fun gallop_N : N;
-fun gallop_V : V;
-fun gallop_V2 : V2;
-fun galloway_PN : PN;
-fun gallows_bird_N : N;
-fun gallstone_N : N;
-fun gallup_PN : PN;
-fun galore_Adv : Adv;
-fun galosh_N : N;
-fun galumph_V : V;
-fun galvanic_A : A;
-fun galvanism_N : N;
-fun galvanize_V2 : V2;
-fun galway_PN : PN;
-fun gambia_PN : PN;
-fun gambian_A : A;
-fun gambian_N : N;
-fun gambit_N : N;
-fun gamble_N : N;
-fun gamble_V : V;
-fun gamble_V2 : V2;
-fun gambler_N : N;
-fun gambling_N : N;
-fun gambling_den_N : N;
-fun gamboge_N : N;
-fun gambol_N : N;
-fun gambol_V : V;
-fun game_A : A;
-fun game_N : N;
-fun game_V : V;
-fun game_V2 : V2;
-fun game_bag_N : N;
-fun game_bird_N : N;
-fun game_licence_N : N;
-fun gamecock_N : N;
-fun gamekeeper_N : N;
-fun games_master_N : N;
-fun games_mistress_N : N;
-fun gamesmanship_N : N;
-fun gaming_house_N : N;
-fun gaming_table_N : N;
-fun gamma_N : N;
-fun gammon_N : N;
-fun gammy_A : A;
-fun gamp_N : N;
-fun gamut_N : N;
-fun gamy_A : A;
-fun gander_N : N;
-fun gang_N : N;
-fun gang_V : V;
-fun ganger_N : N;
-fun gangling_A : A;
-fun ganglion_N : N;
-fun gangplank_N : N;
-fun gangrene_N : N;
-fun gangrene_V : V;
-fun gangrene_V2 : V2;
-fun gangrenous_A : A;
-fun gangster_N : N;
-fun gangway_N : N;
-fun gannet_N : N;
-fun gantry_N : N;
-fun gaol_N : N;
-fun gaol_V2 : V2;
-fun gaolbird_N : N;
-fun gaolbreak_N : N;
-fun gaoler_N : N;
-fun gap_N : N;
-fun gap_toothed_A : A;
-fun gape_N : N;
-fun gape_V : V;
-fun garage_N : N;
-fun garage_V2 : V2;
-fun garb_N : N;
-fun garb_V2 : V2;
-fun garbage_N : N;
-fun garbage_can_N : N;
-fun garble_V2 : V2;
-fun garden_N : N;
-fun garden_V : V;
-fun garden_truck_N : N;
-fun gardener_N : N;
-fun gardenia_N : N;
-fun gardening_N : N;
-fun gareth_PN : PN;
-fun garforth_PN : PN;
-fun gargantuan_A : A;
-fun gargle_N : N;
-fun gargle_V : V;
-fun gargle_V2 : V2;
-fun gargoyle_N : N;
-fun garish_A : A;
-fun garland_N : N;
-fun garland_V2 : V2;
-fun garlic_N : N;
-fun garment_N : N;
-fun garner_N : N;
-fun garner_V2 : V2;
-fun garnet_N : N;
-fun garnish_N : N;
-fun garnish_V2 : V2;
-fun garotte_N : N;
-fun garotte_V2 : V2;
-fun garret_N : N;
-fun garrison_N : N;
-fun garrison_V2 : V2;
-fun garrotte_N : N;
-fun garrotte_V2 : V2;
-fun garrowhill_PN : PN;
-fun garrulity_N : N;
-fun garrulous_A : A;
-fun garter_N : N;
-fun gary_PN : PN;
-fun gas_N : N;
-fun gas_V : V;
-fun gas_V2 : V2;
-fun gas_bracket_N : N;
-fun gas_cooker_N : N;
-fun gas_engine_N : N;
-fun gas_fitter_N : N;
-fun gas_helmet_N : N;
-fun gas_holder_N : N;
-fun gas_mask_N : N;
-fun gas_meter_N : N;
-fun gas_oven_N : N;
-fun gas_ring_N : N;
-fun gas_station_N : N;
-fun gas_stove_N : N;
-fun gasbag_N : N;
-fun gaseous_A : A;
-fun gash_N : N;
-fun gash_V2 : V2;
-fun gasification_N : N;
-fun gasify_V : V;
-fun gasify_V2 : V2;
-fun gasket_N : N;
-fun gaslight_N : N;
-fun gasmask_N : N;
-fun gasolene_N : N;
-fun gasoline_N : N;
-fun gasometer_N : N;
-fun gasp_N : N;
-fun gasp_V : V;
-fun gasp_V2 : V2;
-fun gassy_A : A;
-fun gastric_A : A;
-fun gastritis_N : N;
-fun gastronomic_A : A;
-fun gastronomy_N : N;
-fun gasworks_N : N;
-fun gate_N : N;
-fun gate_V2 : V2;
-fun gatecrash_V2 : V2;
-fun gatecrasher_N : N;
-fun gatehouse_N : N;
-fun gatepost_N : N;
-fun gateshead_PN : PN;
-fun gateway_N : N;
-fun gather_V : V;
-fun gather_V2 : V2;
-fun gatherer_N : N;
-fun gathering_N : N;
-fun gatt_N : N;
-fun gauche_A : A;
-fun gaucherie_N : N;
-fun gaucho_N : N;
-fun gaud_N : N;
-fun gaudily_Adv : Adv;
-fun gaudy_A : A;
-fun gaudy_N : N;
-fun gauge_N : N;
-fun gauge_V2 : V2;
-fun gaul_N : N;
-fun gaunt_A : A;
-fun gauntlet_N : N;
-fun gauntness_N : N;
-fun gauze_N : N;
-fun gauzy_A : A;
-fun gavel_N : N;
-fun gavin_PN : PN;
-fun gavotte_N : N;
-fun gawk_N : N;
-fun gawkiness_N : N;
-fun gawky_A : A;
-fun gawp_V : V;
-fun gay_A : A;
-fun gay_N : N;
-fun gayness_N : N;
-fun gaze_N : N;
-fun gaze_V : V;
-fun gazelle_N : N;
-fun gazette_N : N;
-fun gazette_V2 : V2;
-fun gazetteer_N : N;
-fun gazump_V : V;
-fun gazump_V2 : V2;
-fun gb_PN : PN;
-fun gcse_N : N;
-fun gcses_N : N;
-fun gdansk_PN : PN;
-fun gdn_PN : PN;
-fun gdns_PN : PN;
-fun gear_N : N;
-fun gear_V : V;
-fun gear_V2 : V2;
-fun gear_case_N : N;
-fun gearbox_N : N;
-fun gearshift_N : N;
-fun gecko_N : N;
-fun gee_gee_N : N;
-fun geezer_N : N;
-fun geiger_N : N;
-fun geisha_N : N;
-fun gel_N : N;
-fun gel_V : V;
-fun gelatin_N : N;
-fun gelatine_N : N;
-fun gelatinous_A : A;
-fun geld_V2 : V2;
-fun gelding_N : N;
-fun gelignite_N : N;
-fun gelligaer_PN : PN;
-fun gelsenkirchen_PN : PN;
-fun gem_N : N;
-fun gemini_PN : PN;
-fun gemmed_A : A;
-fun gen_N : N;
-fun gen_PN : PN;
-fun gen_V2 : V2;
-fun gendarme_N : N;
-fun gendarmerie_N : N;
-fun gender_N : N;
-fun gene_N : N;
-fun gene_PN : PN;
-fun genealogical_A : A;
-fun genealogist_N : N;
-fun genealogy_N : N;
-fun general_A : A;
-fun general_N : N;
-fun generalissimo_N : N;
-fun generality_N : N;
-fun generalization_N : N;
-fun generalize_V : V;
-fun generalize_V2 : V2;
-fun generate_V2 : V2;
-fun generation_N : N;
-fun generative_A : A;
-fun generator_N : N;
-fun generic_A : A;
-fun generically_Adv : Adv;
-fun generosity_N : N;
-fun generous_A : A;
-fun genesis_N : N;
-fun genetic_A : A;
-fun genetically_Adv : Adv;
-fun geneticist_N : N;
-fun genetics_N : N;
-fun geneva_PN : PN;
-fun genial_A : A;
-fun geniality_N : N;
-fun genie_N : N;
-fun genital_A : A;
-fun genitive_A : A;
-fun genius_N : N;
-fun genius_loci_N : N;
-fun genoa_PN : PN;
-fun genocide_N : N;
-fun genova_PN : PN;
-fun genre_N : N;
-fun genre_painting_N : N;
-fun gent_N : N;
-fun genteel_A : A;
-fun gentian_N : N;
-fun gentile_A : A;
-fun gentile_N : N;
-fun gentility_N : N;
-fun gentle_A : A;
-fun gentleman_N : N;
-fun gentleman_at_arms_N : N;
-fun gentlemanly_A : A;
-fun gentleness_N : N;
-fun gentlewoman_N : N;
-fun gently_Adv : Adv;
-fun gentry_N : N;
-fun genuflect_V : V;
-fun genuflection_N : N;
-fun genuflexion_N : N;
-fun genuine_A : A;
-fun genuineness_N : N;
-fun genus_N : N;
-fun geocentric_A : A;
-fun geoff_PN : PN;
-fun geoffrey_PN : PN;
-fun geographer_N : N;
-fun geographical_A : A;
-fun geography_N : N;
-fun geological_A : A;
-fun geologist_N : N;
-fun geology_N : N;
-fun geometric_A : A;
-fun geometrical_A : A;
-fun geometry_N : N;
-fun geophysical_A : A;
-fun geophysics_N : N;
-fun geopolitics_N : N;
-fun george_PN : PN;
-fun georgette_N : N;
-fun georgia_PN : PN;
-fun georgian_A : A;
-fun georgian_N : N;
-fun georgie_PN : PN;
-fun gerald_PN : PN;
-fun geraldine_PN : PN;
-fun geranium_N : N;
-fun gerard_PN : PN;
-fun geriatric_A : A;
-fun geriatrician_N : N;
-fun geriatrics_N : N;
-fun germ_N : N;
-fun german_A : A;
-fun german_N : N;
-fun germane_A : A;
-fun germanic_A : A;
-fun germany_PN : PN;
-fun germicide_N : N;
-fun germinate_V : V;
-fun germinate_V2 : V2;
-fun germination_N : N;
-fun gerontology_N : N;
-fun gerry_PN : PN;
-fun gerrymander_N : N;
-fun gerrymander_V2 : V2;
-fun gertie_PN : PN;
-fun gertrude_PN : PN;
-fun gerund_N : N;
-fun gestapo_N : N;
-fun gestation_N : N;
-fun gesticulate_V : V;
-fun gesticulation_N : N;
-fun gesture_N : N;
-fun gesture_V : V;
-fun get_V : V;
-fun get_V2 : V2;
-fun get_at_able_A : A;
-fun get_together_N : N;
-fun get_up_N : N;
-fun getaway_N : N;
-fun geum_N : N;
-fun geyser_N : N;
-fun ghana_PN : PN;
-fun ghanaian_A : A;
-fun ghanaian_N : N;
-fun gharry_N : N;
-fun ghastly_A : A;
-fun ghat_N : N;
-fun ghee_N : N;
-fun ghent_PN : PN;
-fun gherkin_N : N;
-fun ghetto_N : N;
-fun ghost_N : N;
-fun ghost_V : V;
-fun ghost_V2 : V2;
-fun ghost_writer_N : N;
-fun ghostliness_N : N;
-fun ghostly_A : A;
-fun ghoul_N : N;
-fun ghoulish_A : A;
-fun ghq_PN : PN;
-fun gi_N : N;
-fun giant_N : N;
-fun giantess_N : N;
-fun gibber_V : V;
-fun gibberish_N : N;
-fun gibbet_N : N;
-fun gibbet_V2 : V2;
-fun gibbon_N : N;
-fun gibbous_A : A;
-fun gibe_N : N;
-fun gibe_V : V;
-fun gibingly_Adv : Adv;
-fun gibraltar_PN : PN;
-fun gibraltarian_A : A;
-fun gibraltarian_N : N;
-fun giddily_Adv : Adv;
-fun giddiness_N : N;
-fun giddy_A : A;
-fun giffnock_PN : PN;
-fun gift_N : N;
-fun gift_V2 : V2;
-fun gifted_A : A;
-fun gig_N : N;
-fun gigantic_A : A;
-fun giggle_N : N;
-fun giggle_V : V;
-fun gigolo_N : N;
-fun gilbert_PN : PN;
-fun gilbertian_A : A;
-fun gild_N : N;
-fun gild_V2 : V2;
-fun gilder_N : N;
-fun gilding_N : N;
-fun giles_PN : PN;
-fun gilfach_goch_PN : PN;
-fun gill_N : N;
-fun gill_PN : PN;
-fun gillian_PN : PN;
-fun gillie_N : N;
-fun gillingham_PN : PN;
-fun gilt_N : N;
-fun gilt_edged_A : A;
-fun gimcrack_A : A;
-fun gimlet_N : N;
-fun gimmick_N : N;
-fun gin_N : N;
-fun gin_V2 : V2;
-fun gina_PN : PN;
-fun ginger_N : N;
-fun ginger_V2 : V2;
-fun gingerbread_N : N;
-fun gingerly_A : A;
-fun gingerly_Adv : Adv;
-fun gingham_N : N;
-fun gingko_N : N;
-fun ginseng_N : N;
-fun gipsy_N : N;
-fun giraffe_N : N;
-fun gird_V2 : V2;
-fun girder_N : N;
-fun girdle_N : N;
-fun girdle_V2 : V2;
-fun girl_N : N;
-fun girlfriend_N : N;
-fun girlhood_N : N;
-fun girlish_A : A;
-fun girlishness_N : N;
-fun giro_N : N;
-fun girth_N : N;
-fun girvan_PN : PN;
-fun gis_N : N;
-fun gist_N : N;
-fun give_N : N;
-fun give_V : V;
-fun give_V2 : V2;
-fun giveaway_N : N;
-fun giver_N : N;
-fun gizzard_N : N;
-fun glacial_A : A;
-fun glacier_N : N;
-fun glace_A : A;
-fun glad_A : A;
-fun gladden_V2 : V2;
-fun glade_N : N;
-fun gladiator_N : N;
-fun gladiatorial_A : A;
-fun gladiolus_N : N;
-fun gladness_N : N;
-fun gladsome_A : A;
-fun gladys_PN : PN;
-fun glamorgan_PN : PN;
-fun glamorization_N : N;
-fun glamorize_V2 : V2;
-fun glamorous_A : A;
-fun glamour_N : N;
-fun glance_N : N;
-fun glance_V : V;
-fun glance_V2 : V2;
-fun gland_N : N;
-fun glanders_N : N;
-fun glandular_A : A;
-fun glare_N : N;
-fun glare_V : V;
-fun glare_V2 : V2;
-fun glaring_A : A;
-fun glasgow_PN : PN;
-fun glass_N : N;
-fun glass_V2 : V2;
-fun glass_blower_N : N;
-fun glass_cutter_N : N;
-fun glass_wool_N : N;
-fun glassful_N : N;
-fun glasshouse_N : N;
-fun glassware_N : N;
-fun glassworks_N : N;
-fun glassy_A : A;
-fun glastonbury_PN : PN;
-fun glaswegian_A : A;
-fun glaswegian_N : N;
-fun glaucoma_N : N;
-fun glaucous_A : A;
-fun glaze_N : N;
-fun glaze_V : V;
-fun glaze_V2 : V2;
-fun glazier_N : N;
-fun gleam_N : N;
-fun gleam_V : V;
-fun glean_V : V;
-fun glean_V2 : V2;
-fun gleaner_N : N;
-fun glebe_N : N;
-fun glee_N : N;
-fun gleeful_A : A;
-fun glen_N : N;
-fun glen_PN : PN;
-fun glengarry_N : N;
-fun glenrothes_PN : PN;
-fun glib_A : A;
-fun glibness_N : N;
-fun glide_N : N;
-fun glide_V : V;
-fun glider_N : N;
-fun gliding_N : N;
-fun glimmer_N : N;
-fun glimmer_V : V;
-fun glimpse_N : N;
-fun glimpse_V2 : V2;
-fun glint_N : N;
-fun glint_V : V;
-fun glissade_N : N;
-fun glissade_V : V;
-fun glissando_A : A;
-fun glissando_Adv : Adv;
-fun glisten_V : V;
-fun glister_N : N;
-fun glister_V : V;
-fun glitter_N : N;
-fun glitter_V : V;
-fun glittering_A : A;
-fun gloaming_N : N;
-fun gloat_V : V;
-fun gloatingly_Adv : Adv;
-fun global_A : A;
-fun globe_N : N;
-fun globetrot_V : V;
-fun globetrotter_N : N;
-fun globular_A : A;
-fun globule_N : N;
-fun glockenspiel_N : N;
-fun gloom_N : N;
-fun gloomily_Adv : Adv;
-fun gloomy_A : A;
-fun gloria_PN : PN;
-fun glorification_N : N;
-fun glorify_V2 : V2;
-fun glorious_A : A;
-fun glory_N : N;
-fun glory_V : V;
-fun glory_hole_N : N;
-fun gloss_N : N;
-fun gloss_V2 : V2;
-fun glossary_N : N;
-fun glossily_Adv : Adv;
-fun glossiness_N : N;
-fun glossop_PN : PN;
-fun glossy_A : A;
-fun glottal_A : A;
-fun glottis_N : N;
-fun gloucester_PN : PN;
-fun gloucestershire_PN : PN;
-fun glove_N : N;
-fun glove_compartment_N : N;
-fun gloved_A : A;
-fun glow_N : N;
-fun glow_V : V;
-fun glow_worm_N : N;
-fun glower_V : V;
-fun gloweringly_Adv : Adv;
-fun glowing_A : A;
-fun glucose_N : N;
-fun glue_N : N;
-fun glue_V2 : V2;
-fun gluey_A : A;
-fun glum_A : A;
-fun glumness_N : N;
-fun glusburn_PN : PN;
-fun glut_N : N;
-fun glut_V2 : V2;
-fun gluten_N : N;
-fun glutinous_A : A;
-fun glutton_N : N;
-fun gluttonous_A : A;
-fun gluttony_N : N;
-fun glycerine_N : N;
-fun gmt_PN : PN;
-fun gnarled_A : A;
-fun gnash_V : V;
-fun gnash_V2 : V2;
-fun gnat_N : N;
-fun gnaw_V : V;
-fun gnaw_V2 : V2;
-fun gnome_N : N;
-fun gnp_N : N;
-fun gnu_N : N;
-fun go_N : N;
-fun go_V : V;
-fun go_ahead_N : N;
-fun go_as_you_please_A : A;
-fun go_between_N : N;
-fun go_by_N : N;
-fun go_cart_N : N;
-fun go_getter_N : N;
-fun go_kart_N : N;
-fun go_slow_N : N;
-fun go_to_meeting_A : A;
-fun goad_N : N;
-fun goad_V2 : V2;
-fun goal_N : N;
-fun goal_kick_N : N;
-fun goal_line_N : N;
-fun goalie_N : N;
-fun goalkeeper_N : N;
-fun goalless_A : A;
-fun goalmouth_N : N;
-fun goat_N : N;
-fun goatee_N : N;
-fun goatherd_N : N;
-fun goatskin_N : N;
-fun gob_N : N;
-fun gobbet_N : N;
-fun gobble_N : N;
-fun gobble_V : V;
-fun gobble_V2 : V2;
-fun gobbledygook_N : N;
-fun gobbler_N : N;
-fun goblet_N : N;
-fun goblin_N : N;
-fun god_N : N;
-fun god_PN : PN;
-fun god_damn_A : A;
-fun god_damned_A : A;
-fun godalming_PN : PN;
-fun godchild_N : N;
-fun goddam_A : A;
-fun goddam_Adv : Adv;
-fun goddaughter_N : N;
-fun goddess_N : N;
-fun godfather_N : N;
-fun godfearing_A : A;
-fun godforsaken_A : A;
-fun godfrey_PN : PN;
-fun godhead_N : N;
-fun godless_A : A;
-fun godlessness_N : N;
-fun godlike_A : A;
-fun godliness_N : N;
-fun godly_A : A;
-fun godmanchester_PN : PN;
-fun godmother_N : N;
-fun godown_N : N;
-fun godparent_N : N;
-fun godsend_N : N;
-fun godson_N : N;
-fun godspeed_N : N;
-fun goffs_oak_PN : PN;
-fun goggle_V : V;
-fun goggle_box_N : N;
-fun goggle_eyed_A : A;
-fun going_A : A;
-fun going_N : N;
-fun going_over_N : N;
-fun goitre_N : N;
-fun golbourne_PN : PN;
-fun gold_N : N;
-fun gold_beater_N : N;
-fun gold_digger_N : N;
-fun gold_dust_N : N;
-fun gold_foil_N : N;
-fun gold_leaf_N : N;
-fun gold_plate_N : N;
-fun gold_rush_N : N;
-fun golden_A : A;
-fun goldfield_N : N;
-fun goldfinch_N : N;
-fun goldfish_N : N;
-fun goldmine_N : N;
-fun goldsmith_N : N;
-fun golf_N : N;
-fun golf_V : V;
-fun golf_ball_N : N;
-fun golf_club_N : N;
-fun golf_course_N : N;
-fun golf_links_N : N;
-fun golfer_N : N;
-fun goliath_N : N;
-fun golliwog_N : N;
-fun golosh_N : N;
-fun gondola_N : N;
-fun gondolier_N : N;
-fun goner_N : N;
-fun gong_N : N;
-fun gong_V2 : V2;
-fun gonorrhea_N : N;
-fun gonorrhoea_N : N;
-fun goo_N : N;
-fun good_A : A;
-fun good_N : N;
-fun good_fellowship_N : N;
-fun good_for_naught_A : A;
-fun good_for_naught_N : N;
-fun good_for_nothing_A : A;
-fun good_for_nothing_N : N;
-fun good_humoured_A : A;
-fun good_looking_A : A;
-fun good_natured_A : A;
-fun good_neighbourliness_N : N;
-fun good_tempered_A : A;
-fun good_time_A : A;
-fun goodbye_N : N;
-fun goodish_A : A;
-fun goodly_A : A;
-fun goodness_N : N;
-fun goodwill_N : N;
-fun goody_N : N;
-fun goody_goody_A : A;
-fun goody_goody_N : N;
-fun gooey_A : A;
-fun goof_N : N;
-fun goof_V : V;
-fun goof_V2 : V2;
-fun goofy_A : A;
-fun googly_N : N;
-fun goole_PN : PN;
-fun goon_N : N;
-fun goose_N : N;
-fun goose_flesh_N : N;
-fun goose_step_N : N;
-fun gooseberry_N : N;
-fun gopher_N : N;
-fun gordian_A : A;
-fun gordon_PN : PN;
-fun gore_N : N;
-fun gore_V2 : V2;
-fun gorge_N : N;
-fun gorge_V : V;
-fun gorge_V2 : V2;
-fun gorgeous_A : A;
-fun gorgon_N : N;
-fun gorgonzola_N : N;
-fun gorilla_N : N;
-fun gorky_PN : PN;
-fun gormandize_V : V;
-fun gormless_A : A;
-fun gorse_N : N;
-fun gorseinon_PN : PN;
-fun gory_A : A;
-fun gosling_N : N;
-fun gospel_N : N;
-fun gosport_PN : PN;
-fun gossamer_N : N;
-fun gossip_N : N;
-fun gossip_V : V;
-fun goteborg_PN : PN;
-fun goth_N : N;
-fun gothenburg_PN : PN;
-fun gothic_A : A;
-fun gothic_N : N;
-fun gottingen_PN : PN;
-fun gouache_N : N;
-fun gouge_N : N;
-fun gouge_V2 : V2;
-fun goulash_N : N;
-fun gourd_N : N;
-fun gourmand_N : N;
-fun gourmet_N : N;
-fun gourock_PN : PN;
-fun gout_N : N;
-fun gouty_A : A;
-fun gov_PN : PN;
-fun govern_V : V;
-fun govern_V2 : V2;
-fun governance_N : N;
-fun governess_N : N;
-fun governing_A : A;
-fun government_N : N;
-fun governmental_A : A;
-fun governor_N : N;
-fun governor_general_N : N;
-fun govt_N : N;
-fun gown_N : N;
-fun gown_V2 : V2;
-fun gp's_N : N;
-fun gp_N : N;
-fun grab_N : N;
-fun grab_V : V;
-fun grab_V2 : V2;
-fun grabber_N : N;
-fun grace_N : N;
-fun grace_V2 : V2;
-fun graceful_A : A;
-fun graceless_A : A;
-fun gracious_A : A;
-fun graciousness_N : N;
-fun gradation_N : N;
-fun grade_N : N;
-fun grade_V2 : V2;
-fun gradient_N : N;
-fun gradual_A : A;
-fun gradualness_N : N;
-fun graduate_N : N;
-fun graduate_V : V;
-fun graduate_V2 : V2;
-fun graduation_N : N;
-fun graffito_N : N;
-fun graft_N : N;
-fun graft_V : V;
-fun graft_V2 : V2;
-fun grail_N : N;
-fun grain_N : N;
-fun grained_A : A;
-fun gram_N : N;
-fun grammar_N : N;
-fun grammarian_N : N;
-fun grammatical_A : A;
-fun gramme_N : N;
-fun gramophone_N : N;
-fun grampian_PN : PN;
-fun grampus_N : N;
-fun granada_PN : PN;
-fun granary_N : N;
-fun grand_A : A;
-fun grand_prix_N : N;
-fun grandad_N : N;
-fun grandaunt_N : N;
-fun grandchild_N : N;
-fun granddad_N : N;
-fun granddaughter_N : N;
-fun grandee_N : N;
-fun grandeur_N : N;
-fun grandfather_N : N;
-fun grandiloquence_N : N;
-fun grandiloquent_A : A;
-fun grandiose_A : A;
-fun grandma_N : N;
-fun grandmother_N : N;
-fun grandnephew_N : N;
-fun grandniece_N : N;
-fun grandpa_N : N;
-fun grandparent_N : N;
-fun grandson_N : N;
-fun grandstand_N : N;
-fun granduncle_N : N;
-fun grange_N : N;
-fun grangemouth_PN : PN;
-fun granite_N : N;
-fun grannie_N : N;
-fun granny_N : N;
-fun grant_N : N;
-fun grant_V2 : V2;
-fun grantham_PN : PN;
-fun granular_A : A;
-fun granularity_N : N;
-fun granulate_V : V;
-fun granulate_V2 : V2;
-fun granule_N : N;
-fun grape_N : N;
-fun grape_sugar_N : N;
-fun grapefruit_N : N;
-fun grapeshot_N : N;
-fun grapevine_N : N;
-fun graph_N : N;
-fun graphic_A : A;
-fun graphical_A : A;
-fun graphics_N : N;
-fun graphite_N : N;
-fun grapnel_N : N;
-fun grapple_V : V;
-fun grappling_iron_N : N;
-fun grasp_N : N;
-fun grasp_V : V;
-fun grasp_V2 : V2;
-fun grasping_A : A;
-fun grass_N : N;
-fun grass_V : V;
-fun grass_V2 : V2;
-fun grasshopper_N : N;
-fun grassland_N : N;
-fun grassy_A : A;
-fun grate_N : N;
-fun grate_V : V;
-fun grate_V2 : V2;
-fun grateful_A : A;
-fun gratefulness_N : N;
-fun grater_N : N;
-fun gratification_N : N;
-fun gratify_V2 : V2;
-fun gratifying_A : A;
-fun grating_N : N;
-fun gratingly_Adv : Adv;
-fun gratis_A : A;
-fun gratis_Adv : Adv;
-fun gratitude_N : N;
-fun gratuitous_A : A;
-fun gratuity_N : N;
-fun grave_A : A;
-fun grave_N : N;
-fun grave_V2 : V2;
-fun gravel_N : N;
-fun gravel_V2 : V2;
-fun gravelly_A : A;
-fun graven_A : A;
-fun gravenhage_PN : PN;
-fun gravesend_PN : PN;
-fun gravestone_N : N;
-fun graveyard_N : N;
-fun graving_dock_N : N;
-fun gravitate_V : V;
-fun gravitation_N : N;
-fun gravity_N : N;
-fun gravure_N : N;
-fun gravy_N : N;
-fun gravy_boat_N : N;
-fun gray_A : A;
-fun gray_N : N;
-fun gray_V : V;
-fun gray_V2 : V2;
-fun graz_PN : PN;
-fun graze_N : N;
-fun graze_V : V;
-fun graze_V2 : V2;
-fun grazier_N : N;
-fun grazing_land_N : N;
-fun grease_N : N;
-fun grease_V2 : V2;
-fun grease_gun_N : N;
-fun greasepaint_N : N;
-fun greaseproof_A : A;
-fun greaser_N : N;
-fun greasily_Adv : Adv;
-fun greasiness_N : N;
-fun greasy_A : A;
-fun great_A : A;
-fun great_harwood_PN : PN;
-fun great_malvern_PN : PN;
-fun great_shelford_PN : PN;
-fun great_yarmouth_PN : PN;
-fun greatcoat_N : N;
-fun greatness_N : N;
-fun grebe_N : N;
-fun grecian_A : A;
-fun greece_PN : PN;
-fun greed_N : N;
-fun greedily_Adv : Adv;
-fun greediness_N : N;
-fun greedy_A : A;
-fun greek_A : A;
-fun greek_N : N;
-fun green_A : A;
-fun green_N : N;
-fun greenback_N : N;
-fun greenery_N : N;
-fun greeneyed_A : A;
-fun greenfly_N : N;
-fun greengage_N : N;
-fun greengrocer_N : N;
-fun greengrocery_N : N;
-fun greenhorn_N : N;
-fun greenhouse_N : N;
-fun greenish_A : A;
-fun greenishness_N : N;
-fun greenock_PN : PN;
-fun greensward_N : N;
-fun greenwich_PN : PN;
-fun greenwood_N : N;
-fun greet_V2 : V2;
-fun greeting_N : N;
-fun greg_PN : PN;
-fun gregarious_A : A;
-fun gregariousness_N : N;
-fun gregorian_A : A;
-fun gregory_PN : PN;
-fun gremlin_N : N;
-fun grenada_PN : PN;
-fun grenade_N : N;
-fun grenadian_A : A;
-fun grenadian_N : N;
-fun grenadier_N : N;
-fun grey_A : A;
-fun grey_N : N;
-fun grey_V : V;
-fun grey_V2 : V2;
-fun grey_headed_A : A;
-fun greybeard_N : N;
-fun greyhound_N : N;
-fun greyish_A : A;
-fun grid_N : N;
-fun griddle_N : N;
-fun gridiron_N : N;
-fun grief_N : N;
-fun grievance_N : N;
-fun grieve_V : V;
-fun grieve_V2 : V2;
-fun grievous_A : A;
-fun griffin_N : N;
-fun griffon_N : N;
-fun grill_N : N;
-fun grill_V : V;
-fun grill_V2 : V2;
-fun grille_N : N;
-fun grillroom_N : N;
-fun grim_A : A;
-fun grimace_N : N;
-fun grimace_V : V;
-fun grime_N : N;
-fun grime_V2 : V2;
-fun grimethorpe_PN : PN;
-fun grimness_N : N;
-fun grimsby_PN : PN;
-fun grimy_A : A;
-fun grin_N : N;
-fun grin_V : V;
-fun grin_V2 : V2;
-fun grind_N : N;
-fun grind_V : V;
-fun grind_V2 : V2;
-fun grinder_N : N;
-fun grindstone_N : N;
-fun grinstead_PN : PN;
-fun grip_N : N;
-fun grip_V : V;
-fun grip_V2 : V2;
-fun grippe_N : N;
-fun gripsack_N : N;
-fun grisly_A : A;
-fun grist_N : N;
-fun gristle_N : N;
-fun grit_N : N;
-fun grit_V2 : V2;
-fun grits_N : N;
-fun gritty_A : A;
-fun grizzle_V : V;
-fun grizzled_A : A;
-fun grizzly_N : N;
-fun groan_N : N;
-fun groan_V : V;
-fun groan_V2 : V2;
-fun groat_N : N;
-fun grocer_N : N;
-fun grocery_N : N;
-fun grog_N : N;
-fun groggy_A : A;
-fun groin_N : N;
-fun groin_V2 : V2;
-fun groningen_PN : PN;
-fun groom_N : N;
-fun groom_V2 : V2;
-fun groove_N : N;
-fun groove_V2 : V2;
-fun groover_N : N;
-fun groovy_A : A;
-fun grope_V : V;
-fun grope_V2 : V2;
-fun gropingly_Adv : Adv;
-fun gross_A : A;
-fun gross_N : N;
-fun gross_V2 : V2;
-fun grossness_N : N;
-fun grot_N : N;
-fun grotesque_A : A;
-fun grotesque_N : N;
-fun grotesqueness_N : N;
-fun grotto_N : N;
-fun grotty_A : A;
-fun grouch_N : N;
-fun grouch_V : V;
-fun grouchy_A : A;
-fun ground_N : N;
-fun ground_V : V;
-fun ground_V2 : V2;
-fun ground_bait_N : N;
-fun ground_fish_N : N;
-fun ground_plan_N : N;
-fun ground_rent_N : N;
-fun grounding_N : N;
-fun groundless_A : A;
-fun groundnut_N : N;
-fun groundsel_N : N;
-fun groundsheet_N : N;
-fun groundsman_N : N;
-fun groundwork_N : N;
-fun group_N : N;
-fun group_V : V;
-fun group_V2 : V2;
-fun grouping_N : N;
-fun grouse_N : N;
-fun grouse_V : V;
-fun grove_N : N;
-fun grovel_V : V;
-fun groveller_N : N;
-fun grow_V : V;
-fun grow_V2 : V2;
-fun grower_N : N;
-fun growl_N : N;
-fun growl_V : V;
-fun growl_V2 : V2;
-fun growler_N : N;
-fun growlingly_Adv : Adv;
-fun grown_up_A : A;
-fun grown_up_N : N;
-fun growth_N : N;
-fun groyne_N : N;
-fun grub_N : N;
-fun grub_V : V;
-fun grub_V2 : V2;
-fun grubbiness_N : N;
-fun grubby_A : A;
-fun grudge_N : N;
-fun grudge_V2 : V2;
-fun grudgingly_Adv : Adv;
-fun gruel_N : N;
-fun gruelling_A : A;
-fun gruesome_A : A;
-fun gruesomeness_N : N;
-fun gruff_A : A;
-fun gruffness_N : N;
-fun grumble_N : N;
-fun grumble_V : V;
-fun grumble_V2 : V2;
-fun grumbler_N : N;
-fun grumpily_Adv : Adv;
-fun grumpiness_N : N;
-fun grumpy_A : A;
-fun grundyism_N : N;
-fun grunt_N : N;
-fun grunt_V : V;
-fun grunt_V2 : V2;
-fun gryphon_N : N;
-fun guadalajara_PN : PN;
-fun guano_N : N;
-fun guarantee_N : N;
-fun guarantee_V2 : V2;
-fun guarantor_N : N;
-fun guaranty_N : N;
-fun guard_N : N;
-fun guard_V : V;
-fun guard_V2 : V2;
-fun guard_boat_N : N;
-fun guarded_A : A;
-fun guardhouse_N : N;
-fun guardian_N : N;
-fun guardianship_N : N;
-fun guardrail_N : N;
-fun guardroom_N : N;
-fun guardship_N : N;
-fun guardsman_N : N;
-fun guatemala_PN : PN;
-fun guatemala_city_PN : PN;
-fun guatemalan_A : A;
-fun guatemalan_N : N;
-fun guava_N : N;
-fun guayaquil_PN : PN;
-fun gudgeon_N : N;
-fun guelder_rose_N : N;
-fun guerilla_N : N;
-fun guerrilla_N : N;
-fun guess_N : N;
-fun guess_V : V;
-fun guess_V2 : V2;
-fun guesstimate_N : N;
-fun guesswork_N : N;
-fun guest_N : N;
-fun guest_night_N : N;
-fun guesthouse_N : N;
-fun guestroom_N : N;
-fun guffaw_N : N;
-fun guffaw_V : V;
-fun guidance_N : N;
-fun guide_N : N;
-fun guide_V2 : V2;
-fun guidebook_N : N;
-fun guideline_N : N;
-fun guild_N : N;
-fun guild_hall_N : N;
-fun guilder_N : N;
-fun guildford_PN : PN;
-fun guildhall_N : N;
-fun guile_N : N;
-fun guileful_A : A;
-fun guileless_A : A;
-fun guillemot_N : N;
-fun guillotine_N : N;
-fun guillotine_V2 : V2;
-fun guilt_N : N;
-fun guiltily_Adv : Adv;
-fun guiltiness_N : N;
-fun guiltless_A : A;
-fun guilty_A : A;
-fun guinea_N : N;
-fun guinea_PN : PN;
-fun guinea_fowl_N : N;
-fun guinea_pig_N : N;
-fun guinean_A : A;
-fun guinean_N : N;
-fun guinness_N : N;
-fun guisborough_PN : PN;
-fun guise_N : N;
-fun guitar_N : N;
-fun guitarist_N : N;
-fun gulch_N : N;
-fun gulden_N : N;
-fun gulf_N : N;
-fun gull_N : N;
-fun gull_V2 : V2;
-fun gullet_N : N;
-fun gullibility_N : N;
-fun gullible_A : A;
-fun gully_N : N;
-fun gulp_N : N;
-fun gulp_V : V;
-fun gulp_V2 : V2;
-fun gum_N : N;
-fun gum_V2 : V2;
-fun gumbo_N : N;
-fun gumboil_N : N;
-fun gumboot_N : N;
-fun gummy_A : A;
-fun gumption_N : N;
-fun gumshoe_N : N;
-fun gun_N : N;
-fun gun_V2 : V2;
-fun gun_carriage_N : N;
-fun gunboat_N : N;
-fun guncotton_N : N;
-fun gundog_N : N;
-fun gunfire_N : N;
-fun gunman_N : N;
-fun gunmetal_N : N;
-fun gunner_N : N;
-fun gunnery_N : N;
-fun gunny_N : N;
-fun gunplay_N : N;
-fun gunpoint_N : N;
-fun gunpowder_N : N;
-fun gunroom_N : N;
-fun gunrunner_N : N;
-fun gunrunning_N : N;
-fun gunshot_N : N;
-fun gunsmith_N : N;
-fun gunwale_N : N;
-fun gurgle_N : N;
-fun gurgle_V : V;
-fun gurkha_N : N;
-fun guru_N : N;
-fun gush_N : N;
-fun gush_V : V;
-fun gusher_N : N;
-fun gushing_A : A;
-fun gusset_N : N;
-fun gusseted_A : A;
-fun gust_N : N;
-fun gustation_N : N;
-fun gusto_N : N;
-fun gusty_A : A;
-fun gut_N : N;
-fun gut_V2 : V2;
-fun gutless_A : A;
-fun gutta_percha_N : N;
-fun gutter_N : N;
-fun gutter_V : V;
-fun guttersnipe_N : N;
-fun guttural_A : A;
-fun guttural_N : N;
-fun guvnor_N : N;
-fun guy's_PN : PN;
-fun guy_N : N;
-fun guy_PN : PN;
-fun guy_V2 : V2;
-fun guyana_PN : PN;
-fun guyanese_A : A;
-fun guyanese_N : N;
-fun guzzle_V : V;
-fun guzzle_V2 : V2;
-fun guzzler_N : N;
-fun gwen_PN : PN;
-fun gwendoline_PN : PN;
-fun gwent_PN : PN;
-fun gwersyllt_PN : PN;
-fun gwynedd_PN : PN;
-fun gybe_V : V;
-fun gybe_V2 : V2;
-fun gym_N : N;
-fun gymkhana_N : N;
-fun gymnasium_N : N;
-fun gymnast_N : N;
-fun gymnastic_A : A;
-fun gymnastics_N : N;
-fun gymslip_N : N;
-fun gynaecological_A : A;
-fun gynaecologist_N : N;
-fun gynaecology_N : N;
-fun gynecological_A : A;
-fun gynecologist_N : N;
-fun gyp_N : N;
-fun gyp_V2 : V2;
-fun gypsum_N : N;
-fun gypsy_N : N;
-fun gyrate_V : V;
-fun gyration_N : N;
-fun gyro_N : N;
-fun gyroscope_N : N;
-fun gyroscopic_A : A;
-fun gateau_N : N;
-fun h'm_V : V;
-fun h_bomb_N : N;
-fun ha'p'orth_N : N;
-fun ha'penny_N : N;
-fun haarlem_PN : PN;
-fun habeas_corpus_N : N;
-fun haberdasher_N : N;
-fun haberdashery_N : N;
-fun habit_N : N;
-fun habitable_A : A;
-fun habitat_N : N;
-fun habitation_N : N;
-fun habitual_A : A;
-fun habituate_V2 : V2;
-fun habituation_N : N;
-fun habitude_N : N;
-fun habitue_N : N;
-fun hacienda_N : N;
-fun hack_N : N;
-fun hack_V : V;
-fun hack_V2 : V2;
-fun hackney_N : N;
-fun hackney_PN : PN;
-fun hackneyed_A : A;
-fun hacksaw_N : N;
-fun haddington_PN : PN;
-fun haddock_N : N;
-fun hades_PN : PN;
-fun hadji_N : N;
-fun haematite_N : N;
-fun haemoglobin_N : N;
-fun haemophilia_N : N;
-fun haemophiliac_N : N;
-fun haemorrhage_N : N;
-fun haft_N : N;
-fun hag_N : N;
-fun hag_ridden_A : A;
-fun hagen_PN : PN;
-fun haggard_A : A;
-fun haggis_N : N;
-fun haggle_V : V;
-fun hagiology_N : N;
-fun hagley_PN : PN;
-fun haha_N : N;
-fun hail_N : N;
-fun hail_V : V;
-fun hail_V2 : V2;
-fun hailsham_PN : PN;
-fun hailstone_N : N;
-fun hailstorm_N : N;
-fun haiphong_PN : PN;
-fun hair's_breadth_N : N;
-fun hair_N : N;
-fun hair_breadth_N : N;
-fun hair_dye_N : N;
-fun hair_oil_N : N;
-fun hair_raising_A : A;
-fun hair_shirt_N : N;
-fun hair_slide_N : N;
-fun hair_trigger_N : N;
-fun hairbrush_N : N;
-fun haircloth_N : N;
-fun haircut_N : N;
-fun hairdo_N : N;
-fun hairdresser_N : N;
-fun hairdressing_N : N;
-fun hairiness_N : N;
-fun hairless_A : A;
-fun hairlike_A : A;
-fun hairline_N : N;
-fun hairnet_N : N;
-fun hairpiece_N : N;
-fun hairpin_N : N;
-fun hairsplitting_A : A;
-fun hairsplitting_N : N;
-fun hairspring_N : N;
-fun hairstyle_N : N;
-fun hairstylist_N : N;
-fun hairy_A : A;
-fun haiti_PN : PN;
-fun haitian_A : A;
-fun haitian_N : N;
-fun hake_N : N;
-fun hal_PN : PN;
-fun halberd_N : N;
-fun halberdier_N : N;
-fun halcyon_A : A;
-fun hale_A : A;
-fun halesowen_PN : PN;
-fun half_N : N;
-fun half_baked_A : A;
-fun half_blood_N : N;
-fun half_breed_N : N;
-fun half_brother_N : N;
-fun half_caste_N : N;
-fun half_crazed_A : A;
-fun half_crown_N : N;
-fun half_hardy_A : A;
-fun half_hearted_A : A;
-fun half_holiday_N : N;
-fun half_hour_N : N;
-fun half_hourly_A : A;
-fun half_hourly_Adv : Adv;
-fun half_length_A : A;
-fun half_pay_N : N;
-fun half_price_Adv : Adv;
-fun half_seas_over_A : A;
-fun half_sister_N : N;
-fun half_size_A : A;
-fun half_timbered_A : A;
-fun half_time_N : N;
-fun half_track_N : N;
-fun half_tracked_A : A;
-fun half_truth_N : N;
-fun half_volley_N : N;
-fun half_yearly_A : A;
-fun half_yearly_Adv : Adv;
-fun halfback_N : N;
-fun halfpenny_N : N;
-fun halfpennyworth_N : N;
-fun halftone_N : N;
-fun halfway_A : A;
-fun halfway_Adv : Adv;
-fun halfwit_N : N;
-fun halfwitted_A : A;
-fun halibut_N : N;
-fun halifax_PN : PN;
-fun halitosis_N : N;
-fun hall_N : N;
-fun hall_stand_N : N;
-fun halle_PN : PN;
-fun hallelujah_N : N;
-fun halliard_N : N;
-fun hallmark_N : N;
-fun halloo_N : N;
-fun halloo_V : V;
-fun hallow_N : N;
-fun hallow_V2 : V2;
-fun hallowe'en_N : N;
-fun hallowe'en_PN : PN;
-fun hallucination_N : N;
-fun hallucinatory_A : A;
-fun hallucinogenic_A : A;
-fun halma_N : N;
-fun halo_N : N;
-fun halstead_PN : PN;
-fun halt_A : A;
-fun halt_N : N;
-fun halt_V : V;
-fun halt_V2 : V2;
-fun halter_N : N;
-fun haltingly_Adv : Adv;
-fun halve_V2 : V2;
-fun halyard_N : N;
-fun ham_N : N;
-fun ham_V : V;
-fun ham_V2 : V2;
-fun ham_fisted_A : A;
-fun ham_handed_A : A;
-fun hamadryad_N : N;
-fun hamburg_PN : PN;
-fun hamburger_N : N;
-fun hamhung_PN : PN;
-fun hamilton_PN : PN;
-fun hamlet_N : N;
-fun hammer_N : N;
-fun hammer_V : V;
-fun hammer_V2 : V2;
-fun hammersmith_PN : PN;
-fun hammock_N : N;
-fun hamper_N : N;
-fun hamper_V2 : V2;
-fun hampreston_PN : PN;
-fun hampshire_PN : PN;
-fun hamster_N : N;
-fun hamstring_N : N;
-fun hamstring_V2 : V2;
-fun hand_N : N;
-fun hand_V2 : V2;
-fun hand_barrow_N : N;
-fun hand_grenade_N : N;
-fun hand_luggage_N : N;
-fun hand_me_down_N : N;
-fun hand_organ_N : N;
-fun hand_out_N : N;
-fun hand_picked_A : A;
-fun handbag_N : N;
-fun handbill_N : N;
-fun handbook_N : N;
-fun handbrake_N : N;
-fun handcart_N : N;
-fun handclap_N : N;
-fun handcuff_N : N;
-fun handcuff_V2 : V2;
-fun handful_N : N;
-fun handhold_N : N;
-fun handicap_N : N;
-fun handicap_V2 : V2;
-fun handicraft_N : N;
-fun handily_Adv : Adv;
-fun handiness_N : N;
-fun handiwork_N : N;
-fun handkerchief_N : N;
-fun handle_N : N;
-fun handle_V2 : V2;
-fun handlebar_N : N;
-fun handler_N : N;
-fun handmade_A : A;
-fun handmaid_N : N;
-fun handover_N : N;
-fun handrail_N : N;
-fun handsaw_N : N;
-fun handshake_N : N;
-fun handshaking_N : N;
-fun handsome_A : A;
-fun handstand_N : N;
-fun handwork_N : N;
-fun handwriting_N : N;
-fun handy_A : A;
-fun handyman_N : N;
-fun hang_N : N;
-fun hang_V : V;
-fun hang_V2 : V2;
-fun hang_up_N : N;
-fun hangar_N : N;
-fun hangchon_PN : PN;
-fun hangdog_A : A;
-fun hanger_N : N;
-fun hanger_on_N : N;
-fun hanging_N : N;
-fun hangman_N : N;
-fun hangnail_N : N;
-fun hangover_N : N;
-fun hank_N : N;
-fun hanker_V : V;
-fun hankering_N : N;
-fun hanky_N : N;
-fun hanky_panky_N : N;
-fun hanoi_PN : PN;
-fun hanover_PN : PN;
-fun hansard_N : N;
-fun hansom_N : N;
-fun hap_N : N;
-fun hap_V : V;
-fun haphazard_A : A;
-fun haphazard_Adv : Adv;
-fun hapless_A : A;
-fun haply_Adv : Adv;
-fun happen_V : V;
-fun happening_N : N;
-fun happily_Adv : Adv;
-fun happiness_N : N;
-fun happy_A : A;
-fun happy_go_lucky_A : A;
-fun hara_kiri_N : N;
-fun harangue_N : N;
-fun harangue_V : V;
-fun harangue_V2 : V2;
-fun harass_V2 : V2;
-fun harassment_N : N;
-fun harbin_PN : PN;
-fun harbinger_N : N;
-fun harbour_N : N;
-fun harbour_V : V;
-fun harbour_V2 : V2;
-fun harbourage_N : N;
-fun hard_A : A;
-fun hard_Adv : Adv;
-fun hard_baked_A : A;
-fun hard_bitten_A : A;
-fun hard_boiled_A : A;
-fun hard_headed_A : A;
-fun hardback_N : N;
-fun hardbacked_A : A;
-fun hardboard_N : N;
-fun hardbound_A : A;
-fun hardcover_N : N;
-fun hardcovered_A : A;
-fun harden_V : V;
-fun harden_V2 : V2;
-fun hardhearted_A : A;
-fun hardhitting_A : A;
-fun hardihood_N : N;
-fun hardiness_N : N;
-fun hardliner_N : N;
-fun hardness_N : N;
-fun hardship_N : N;
-fun hardtop_N : N;
-fun hardware_N : N;
-fun hardwood_N : N;
-fun hardworking_A : A;
-fun hardy_A : A;
-fun hare_N : N;
-fun hare_V : V;
-fun harebell_N : N;
-fun harebrained_A : A;
-fun harelip_N : N;
-fun harem_N : N;
-fun haricot_N : N;
-fun haringey_PN : PN;
-fun hark_V : V;
-fun harlequin_N : N;
-fun harlequinade_N : N;
-fun harley_street_PN : PN;
-fun harlot_N : N;
-fun harlow_PN : PN;
-fun harm_N : N;
-fun harm_V2 : V2;
-fun harmattan_N : N;
-fun harmful_A : A;
-fun harmless_A : A;
-fun harmonic_N : N;
-fun harmonica_N : N;
-fun harmonious_A : A;
-fun harmonium_N : N;
-fun harmonization_N : N;
-fun harmonize_V : V;
-fun harmonize_V2 : V2;
-fun harmony_N : N;
-fun harness_N : N;
-fun harness_V2 : V2;
-fun harold_PN : PN;
-fun harp_N : N;
-fun harp_V : V;
-fun harpenden_PN : PN;
-fun harper_N : N;
-fun harpist_N : N;
-fun harpoon_N : N;
-fun harpoon_V2 : V2;
-fun harpsichord_N : N;
-fun harpsichordist_N : N;
-fun harpy_N : N;
-fun harridan_N : N;
-fun harrier_N : N;
-fun harriet_PN : PN;
-fun harrogate_PN : PN;
-fun harrow_N : N;
-fun harrow_PN : PN;
-fun harrow_V2 : V2;
-fun harry_PN : PN;
-fun harry_V2 : V2;
-fun harsh_A : A;
-fun harshness_N : N;
-fun hart_N : N;
-fun hartlepool_PN : PN;
-fun hartley_PN : PN;
-fun harum_scarum_A : A;
-fun harum_scarum_N : N;
-fun harvest_N : N;
-fun harvest_V2 : V2;
-fun harvester_N : N;
-fun harvey_PN : PN;
-fun harwich_PN : PN;
-fun harwood_PN : PN;
-fun harworth_PN : PN;
-fun has_been_N : N;
-fun hash_N : N;
-fun hash_V2 : V2;
-fun hashish_N : N;
-fun haslemere_PN : PN;
-fun haslingden_PN : PN;
-fun hasp_N : N;
-fun hassle_N : N;
-fun hassle_V : V;
-fun hassle_V2 : V2;
-fun hassock_N : N;
-fun haste_N : N;
-fun hasten_V : V;
-fun hasten_V2 : V2;
-fun hastily_Adv : Adv;
-fun hastiness_N : N;
-fun hastings_PN : PN;
-fun hasty_A : A;
-fun hat_N : N;
-fun hatband_N : N;
-fun hatch_N : N;
-fun hatch_V : V;
-fun hatch_V2 : V2;
-fun hatchery_N : N;
-fun hatchet_N : N;
-fun hatching_N : N;
-fun hatchway_N : N;
-fun hate_N : N;
-fun hate_V2 : V2;
-fun hateful_A : A;
-fun hatfield_PN : PN;
-fun hatful_N : N;
-fun hatless_A : A;
-fun hatpin_N : N;
-fun hatred_N : N;
-fun hatter_N : N;
-fun hauberk_N : N;
-fun haughtily_Adv : Adv;
-fun haughtiness_N : N;
-fun haughty_A : A;
-fun haul_N : N;
-fun haul_V : V;
-fun haul_V2 : V2;
-fun haulage_N : N;
-fun haulier_N : N;
-fun haulm_N : N;
-fun haunch_N : N;
-fun haunt_N : N;
-fun haunt_V2 : V2;
-fun hautboy_N : N;
-fun hauteur_N : N;
-fun havana_N : N;
-fun havana_PN : PN;
-fun haven_N : N;
-fun haverfordwest_PN : PN;
-fun haverhill_PN : PN;
-fun havering_PN : PN;
-fun haversack_N : N;
-fun havoc_N : N;
-fun haw_N : N;
-fun haw_V : V;
-fun haw_haw_N : N;
-fun hawaii_PN : PN;
-fun hawick_PN : PN;
-fun hawk_N : N;
-fun hawk_V2 : V2;
-fun hawk_eyed_A : A;
-fun hawke's_bay_PN : PN;
-fun hawker_N : N;
-fun hawser_N : N;
-fun hawthorn_N : N;
-fun hay_N : N;
-fun haycock_N : N;
-fun hayfork_N : N;
-fun hayling_PN : PN;
-fun haymaker_N : N;
-fun haymaking_N : N;
-fun hayrick_N : N;
-fun haystack_N : N;
-fun haywards_heath_PN : PN;
-fun haywire_A : A;
-fun haywire_N : N;
-fun hazard_N : N;
-fun hazard_V2 : V2;
-fun hazardous_A : A;
-fun haze_N : N;
-fun haze_V2 : V2;
-fun hazel_N : N;
-fun hazel_PN : PN;
-fun hazily_Adv : Adv;
-fun haziness_N : N;
-fun hazy_A : A;
-fun he_goat_N : N;
-fun he_man_N : N;
-fun head_N : N;
-fun head_V : V;
-fun head_V2 : V2;
-fun head_hunter_N : N;
-fun head_on_A : A;
-fun head_on_Adv : Adv;
-fun headache_N : N;
-fun headband_N : N;
-fun headdress_N : N;
-fun headed_A : A;
-fun header_N : N;
-fun headgear_N : N;
-fun heading_N : N;
-fun headlamp_N : N;
-fun headland_N : N;
-fun headless_A : A;
-fun headlight_N : N;
-fun headline_N : N;
-fun headlong_A : A;
-fun headlong_Adv : Adv;
-fun headman_N : N;
-fun headmaster_N : N;
-fun headmistress_N : N;
-fun headpiece_N : N;
-fun headrest_N : N;
-fun headroom_N : N;
-fun headset_N : N;
-fun headship_N : N;
-fun headstall_N : N;
-fun headstone_N : N;
-fun headstrong_A : A;
-fun headway_N : N;
-fun headwind_N : N;
-fun headword_N : N;
-fun heady_A : A;
-fun heal_V : V;
-fun heal_V2 : V2;
-fun healer_N : N;
-fun healing_A : A;
-fun health_N : N;
-fun healthful_A : A;
-fun healthily_Adv : Adv;
-fun healthy_A : A;
-fun heanor_PN : PN;
-fun heap_N : N;
-fun heap_V2 : V2;
-fun heaps_Adv : Adv;
-fun hear_V : V;
-fun hear_V2 : V2;
-fun hearer_N : N;
-fun hearing_N : N;
-fun hearing_aid_N : N;
-fun hearken_V : V;
-fun hearsay_N : N;
-fun hearse_N : N;
-fun heart's_ease_N : N;
-fun heart_N : N;
-fun heart_disease_N : N;
-fun heart_failure_N : N;
-fun heart_rending_A : A;
-fun heartache_N : N;
-fun heartbeat_N : N;
-fun heartbreak_N : N;
-fun heartbreaking_A : A;
-fun heartbroken_A : A;
-fun heartburn_N : N;
-fun heartburning_N : N;
-fun hearted_A : A;
-fun hearten_V2 : V2;
-fun heartfelt_A : A;
-fun hearth_N : N;
-fun hearthrug_N : N;
-fun heartily_Adv : Adv;
-fun heartless_A : A;
-fun heartlessness_N : N;
-fun heartsick_A : A;
-fun hearty_A : A;
-fun heat_N : N;
-fun heat_V : V;
-fun heat_V2 : V2;
-fun heat_flash_N : N;
-fun heated_A : A;
-fun heater_N : N;
-fun heath_N : N;
-fun heathen_N : N;
-fun heathenish_A : A;
-fun heather_N : N;
-fun heather_PN : PN;
-fun heather_mixture_N : N;
-fun heating_N : N;
-fun heatspot_N : N;
-fun heatstroke_N : N;
-fun heatwave_N : N;
-fun heave_N : N;
-fun heave_V : V;
-fun heave_V2 : V2;
-fun heaven_N : N;
-fun heavenly_A : A;
-fun heavensent_A : A;
-fun heavenward_A : A;
-fun heavenward_Adv : Adv;
-fun heavenwards_A : A;
-fun heavenwards_Adv : Adv;
-fun heavily_Adv : Adv;
-fun heaviness_N : N;
-fun heaviside_PN : PN;
-fun heavy_A : A;
-fun heavy_Adv : Adv;
-fun heavy_handed_A : A;
-fun heavy_hearted_A : A;
-fun heavy_laden_A : A;
-fun heavyweight_N : N;
-fun hebden_royal_PN : PN;
-fun hebdomadal_A : A;
-fun hebraic_A : A;
-fun hebrew_A : A;
-fun hebrew_N : N;
-fun hecatomb_N : N;
-fun heck_N : N;
-fun heckle_V2 : V2;
-fun heckler_N : N;
-fun hectare_N : N;
-fun hectic_A : A;
-fun hector_V : V;
-fun hector_V2 : V2;
-fun hedge_N : N;
-fun hedge_V : V;
-fun hedge_V2 : V2;
-fun hedge_end_PN : PN;
-fun hedge_sparrow_N : N;
-fun hedgehog_N : N;
-fun hedgehop_V : V;
-fun hedgerow_N : N;
-fun hedonism_N : N;
-fun hedonist_N : N;
-fun hedonistic_A : A;
-fun heed_N : N;
-fun heed_V2 : V2;
-fun heedful_A : A;
-fun heedless_A : A;
-fun heehaw_N : N;
-fun heel_N : N;
-fun heel_V : V;
-fun heel_V2 : V2;
-fun hefty_A : A;
-fun hegemony_N : N;
-fun hegira_N : N;
-fun heidelburg_PN : PN;
-fun heifer_N : N;
-fun height_N : N;
-fun heighten_V : V;
-fun heighten_V2 : V2;
-fun heinous_A : A;
-fun heinousness_N : N;
-fun heir_N : N;
-fun heiress_N : N;
-fun heirloom_N : N;
-fun hejira_N : N;
-fun helen_PN : PN;
-fun helensburgh_PN : PN;
-fun helicopter_N : N;
-fun heliograph_N : N;
-fun heliograph_V2 : V2;
-fun heliotrope_N : N;
-fun heliport_N : N;
-fun helium_N : N;
-fun hell_N : N;
-fun hellcat_N : N;
-fun hellene_N : N;
-fun hellenic_A : A;
-fun hellish_A : A;
-fun helm_N : N;
-fun helmet_N : N;
-fun helmeted_A : A;
-fun helmsman_N : N;
-fun helot_N : N;
-fun help_N : N;
-fun help_V : V;
-fun help_V2 : V2;
-fun helper_N : N;
-fun helpful_A : A;
-fun helpfulness_N : N;
-fun helping_N : N;
-fun helpless_A : A;
-fun helplessness_N : N;
-fun helpmate_N : N;
-fun helpmeet_N : N;
-fun helsinki_PN : PN;
-fun helston_PN : PN;
-fun helter_skelter_Adv : Adv;
-fun helter_skelter_N : N;
-fun helve_N : N;
-fun hem_N : N;
-fun hem_V : V;
-fun hem_V2 : V2;
-fun hematite_N : N;
-fun hemel_hempstead_PN : PN;
-fun hemisphere_N : N;
-fun hemline_N : N;
-fun hemlock_N : N;
-fun hemming_stitch_N : N;
-fun hemoglobin_N : N;
-fun hemophilia_N : N;
-fun hemophiliac_N : N;
-fun hemorrhage_N : N;
-fun hemp_N : N;
-fun hempen_A : A;
-fun hemstitch_N : N;
-fun hemstitch_V2 : V2;
-fun hemsworth_PN : PN;
-fun hen_N : N;
-fun hen_party_N : N;
-fun henbane_N : N;
-fun hence_Adv : Adv;
-fun henceforth_Adv : Adv;
-fun henceforward_Adv : Adv;
-fun henchman_N : N;
-fun hencoop_N : N;
-fun henhouse_N : N;
-fun henley_on_thames_PN : PN;
-fun henna_N : N;
-fun hennaed_A : A;
-fun henpecked_A : A;
-fun henroost_N : N;
-fun henry_PN : PN;
-fun hep_A : A;
-fun hepatitis_N : N;
-fun heptagon_N : N;
-fun herald_N : N;
-fun herald_V2 : V2;
-fun heraldic_A : A;
-fun heraldry_N : N;
-fun herb_N : N;
-fun herb_PN : PN;
-fun herbaceous_A : A;
-fun herbage_N : N;
-fun herbal_A : A;
-fun herbalist_N : N;
-fun herbert_PN : PN;
-fun herbivorous_A : A;
-fun herculean_A : A;
-fun herd_N : N;
-fun herd_V : V;
-fun herd_V2 : V2;
-fun herdsman_N : N;
-fun hereabouts_Adv : Adv;
-fun hereafter_Adv : Adv;
-fun hereafter_N : N;
-fun hereby_Adv : Adv;
-fun hereditament_N : N;
-fun hereditary_A : A;
-fun heredity_N : N;
-fun hereford_PN : PN;
-fun herein_Adv : Adv;
-fun hereinafter_Adv : Adv;
-fun hereinbefore_Adv : Adv;
-fun hereof_Adv : Adv;
-fun heresy_N : N;
-fun heretic_N : N;
-fun heretical_A : A;
-fun hereto_Adv : Adv;
-fun heretofore_Adv : Adv;
-fun hereupon_Adv : Adv;
-fun herewith_Adv : Adv;
-fun heritable_A : A;
-fun heritage_N : N;
-fun hermaphrodite_N : N;
-fun hermetic_A : A;
-fun hermetically_Adv : Adv;
-fun hermit_N : N;
-fun hermitage_N : N;
-fun herne_PN : PN;
-fun herne_bay_PN : PN;
-fun hernia_N : N;
-fun hero_N : N;
-fun heroic_A : A;
-fun heroically_Adv : Adv;
-fun heroics_N : N;
-fun heroin_N : N;
-fun heroine_N : N;
-fun heroism_N : N;
-fun heron_N : N;
-fun heronry_N : N;
-fun herr_N : N;
-fun herring_N : N;
-fun herringbone_N : N;
-fun hertford_PN : PN;
-fun hertfordshire_PN : PN;
-fun hertz_N : N;
-fun hertzian_A : A;
-fun hesitance_N : N;
-fun hesitancy_N : N;
-fun hesitant_A : A;
-fun hesitate_V : V;
-fun hesitatingly_Adv : Adv;
-fun hesitation_N : N;
-fun hessian_N : N;
-fun het_up_A : A;
-fun heterodox_A : A;
-fun heterodoxy_N : N;
-fun heterogeneous_A : A;
-fun heterosexual_A : A;
-fun heterosexual_N : N;
-fun heterosexuality_N : N;
-fun hetton_PN : PN;
-fun heuristic_A : A;
-fun heuristics_N : N;
-fun hew_V : V;
-fun hew_V2 : V2;
-fun hewer_N : N;
-fun hexagon_N : N;
-fun hexagonal_A : A;
-fun hexameter_N : N;
-fun hexham_PN : PN;
-fun heyday_N : N;
-fun heysham_PN : PN;
-fun heywood_PN : PN;
-fun hi_fi_A : A;
-fun hi_fi_N : N;
-fun hiatus_N : N;
-fun hibernate_V : V;
-fun hibernation_N : N;
-fun hibiscus_N : N;
-fun hiccough_N : N;
-fun hiccough_V : V;
-fun hiccup_N : N;
-fun hiccup_V : V;
-fun hick_A : A;
-fun hick_N : N;
-fun hickory_N : N;
-fun hide_N : N;
-fun hide_V : V;
-fun hide_V2 : V2;
-fun hide_and_seek_N : N;
-fun hide_out_N : N;
-fun hideaway_N : N;
-fun hidebound_A : A;
-fun hideous_A : A;
-fun hiding_N : N;
-fun hiding_place_N : N;
-fun hie_V : V;
-fun hierarchic_A : A;
-fun hierarchical_A : A;
-fun hierarchy_N : N;
-fun hieroglyph_N : N;
-fun hieroglyphic_A : A;
-fun hieroglyphics_N : N;
-fun higgledy_piggledy_A : A;
-fun higgledy_piggledy_Adv : Adv;
-fun high_A : A;
-fun high_Adv : Adv;
-fun high_class_A : A;
-fun high_falutin_A : A;
-fun high_fidelity_A : A;
-fun high_fidelity_N : N;
-fun high_frequency_N : N;
-fun high_grade_A : A;
-fun high_handed_A : A;
-fun high_keyed_A : A;
-fun high_level_A : A;
-fun high_minded_A : A;
-fun high_mindedness_N : N;
-fun high_necked_A : A;
-fun high_octane_A : A;
-fun high_pitched_A : A;
-fun high_powered_A : A;
-fun high_pressure_N : N;
-fun high_priced_A : A;
-fun high_principled_A : A;
-fun high_ranking_A : A;
-fun high_rise_A : A;
-fun high_sounding_A : A;
-fun high_speed_A : A;
-fun high_spen_PN : PN;
-fun high_spirited_A : A;
-fun high_tension_A : A;
-fun high_toned_A : A;
-fun high_up_N : N;
-fun high_wycombe_PN : PN;
-fun highball_N : N;
-fun highborn_A : A;
-fun highboy_N : N;
-fun highbrow_A : A;
-fun highbrow_N : N;
-fun highflier_N : N;
-fun highflown_A : A;
-fun highflyer_N : N;
-fun highflying_A : A;
-fun highjack_N : N;
-fun highjack_V2 : V2;
-fun highland_N : N;
-fun highland_PN : PN;
-fun highlander_N : N;
-fun highlight_N : N;
-fun highlight_V2 : V2;
-fun highness_N : N;
-fun highroad_N : N;
-fun highway_N : N;
-fun highwayman_N : N;
-fun hijack_N : N;
-fun hijack_V2 : V2;
-fun hijacker_N : N;
-fun hike_N : N;
-fun hike_V : V;
-fun hiker_N : N;
-fun hilarious_A : A;
-fun hilarity_N : N;
-fun hilary_PN : PN;
-fun hilda_PN : PN;
-fun hill_N : N;
-fun hill_billy_N : N;
-fun hillingdon_PN : PN;
-fun hillock_N : N;
-fun hillside_N : N;
-fun hilly_A : A;
-fun hilt_N : N;
-fun hinckley_PN : PN;
-fun hind_A : A;
-fun hind_N : N;
-fun hinder_V2 : V2;
-fun hindi_A : A;
-fun hindi_N : N;
-fun hindmost_A : A;
-fun hindrance_N : N;
-fun hindsight_N : N;
-fun hindu_A : A;
-fun hindu_N : N;
-fun hinduism_N : N;
-fun hindustani_A : A;
-fun hindustani_N : N;
-fun hinge_N : N;
-fun hinge_V : V;
-fun hinge_V2 : V2;
-fun hint_N : N;
-fun hint_V : V;
-fun hint_V2 : V2;
-fun hinterland_N : N;
-fun hip_A : A;
-fun hip_N : N;
-fun hip_bath_N : N;
-fun hip_flask_N : N;
-fun hip_pocket_N : N;
-fun hippie_N : N;
-fun hippo_N : N;
-fun hippocratic_A : A;
-fun hippodrome_N : N;
-fun hippopotamus_N : N;
-fun hippy_N : N;
-fun hire_N : N;
-fun hire_V2 : V2;
-fun hireling_N : N;
-fun hiroshima_PN : PN;
-fun hirsute_A : A;
-fun hiss_N : N;
-fun hiss_V : V;
-fun hiss_V2 : V2;
-fun histogram_N : N;
-fun historian_N : N;
-fun historic_A : A;
-fun historical_A : A;
-fun history_N : N;
-fun histrionic_A : A;
-fun histrionics_N : N;
-fun hit_N : N;
-fun hit_V : V;
-fun hit_V2 : V2;
-fun hit_and_run_A : A;
-fun hitch_N : N;
-fun hitch_V : V;
-fun hitch_V2 : V2;
-fun hitchhike_V : V;
-fun hitchhiker_N : N;
-fun hitchin_PN : PN;
-fun hither_Adv : Adv;
-fun hitherto_Adv : Adv;
-fun hive_N : N;
-fun hive_V : V;
-fun hive_V2 : V2;
-fun hm_PN : PN;
-fun hmso_PN : PN;
-fun hoar_A : A;
-fun hoard_N : N;
-fun hoard_V : V;
-fun hoard_V2 : V2;
-fun hoarder_N : N;
-fun hoarding_N : N;
-fun hoarfrost_N : N;
-fun hoariness_N : N;
-fun hoarse_A : A;
-fun hoarseness_N : N;
-fun hoary_A : A;
-fun hoax_N : N;
-fun hoax_V2 : V2;
-fun hoaxer_N : N;
-fun hob_N : N;
-fun hobble_N : N;
-fun hobble_V : V;
-fun hobble_V2 : V2;
-fun hobble_skirt_N : N;
-fun hobbledehoy_N : N;
-fun hobby_N : N;
-fun hobbyhorse_N : N;
-fun hobgoblin_N : N;
-fun hobnail_N : N;
-fun hobnailed_A : A;
-fun hobnob_V : V;
-fun hobo_N : N;
-fun hobson_PN : PN;
-fun hock_N : N;
-fun hock_V2 : V2;
-fun hockey_N : N;
-fun hockley_PN : PN;
-fun hocus_pocus_N : N;
-fun hod_N : N;
-fun hoddesdon_PN : PN;
-fun hodgepodge_N : N;
-fun hoe_N : N;
-fun hoe_V : V;
-fun hoe_V2 : V2;
-fun hofei_PN : PN;
-fun hog_N : N;
-fun hog_V2 : V2;
-fun hoggish_A : A;
-fun hogmanay_N : N;
-fun hogmanay_PN : PN;
-fun hogshead_N : N;
-fun hogwash_N : N;
-fun hoist_N : N;
-fun hoist_V2 : V2;
-fun hoity_toity_A : A;
-fun hold_N : N;
-fun hold_V : V;
-fun hold_V2 : V2;
-fun hold_up_N : N;
-fun holdall_N : N;
-fun holder_N : N;
-fun holding_N : N;
-fun holdup_N : N;
-fun hole_N : N;
-fun hole_V : V;
-fun hole_V2 : V2;
-fun hole_and_corner_A : A;
-fun holiday_N : N;
-fun holiday_V : V;
-fun holiday_maker_N : N;
-fun holiness_N : N;
-fun holland_PN : PN;
-fun hollander_A : A;
-fun hollander_N : N;
-fun holler_V : V;
-fun holler_V2 : V2;
-fun holloa_N : N;
-fun hollow_A : A;
-fun hollow_N : N;
-fun hollow_V2 : V2;
-fun holly_N : N;
-fun hollyhock_N : N;
-fun hollywood_PN : PN;
-fun holm_oak_N : N;
-fun holmfirth_PN : PN;
-fun holocaust_N : N;
-fun holograph_N : N;
-fun holster_N : N;
-fun holy_A : A;
-fun holy_N : N;
-fun holyhead_PN : PN;
-fun holystone_N : N;
-fun holystone_V2 : V2;
-fun homage_N : N;
-fun home_Adv : Adv;
-fun home_N : N;
-fun home_baked_A : A;
-fun home_brewed_A : A;
-fun home_cured_A : A;
-fun home_farm_N : N;
-fun home_grown_A : A;
-fun home_made_A : A;
-fun homecoming_N : N;
-fun homeland_N : N;
-fun homeless_A : A;
-fun homelike_A : A;
-fun homeliness_N : N;
-fun homely_A : A;
-fun homeopath_N : N;
-fun homeopathic_A : A;
-fun homeric_A : A;
-fun homesick_A : A;
-fun homesickness_N : N;
-fun homespun_A : A;
-fun homespun_N : N;
-fun homestead_N : N;
-fun homeward_A : A;
-fun homeward_Adv : Adv;
-fun homewards_Adv : Adv;
-fun homework_N : N;
-fun homey_A : A;
-fun homicidal_A : A;
-fun homicide_N : N;
-fun homiletic_A : A;
-fun homiletics_N : N;
-fun homily_N : N;
-fun homing_A : A;
-fun hominy_N : N;
-fun homo_N : N;
-fun homo_sapiens_N : N;
-fun homoeopath_N : N;
-fun homoeopathy_N : N;
-fun homogeneity_N : N;
-fun homogeneous_A : A;
-fun homogenize_V2 : V2;
-fun homograph_N : N;
-fun homonym_N : N;
-fun homophone_N : N;
-fun homosexual_A : A;
-fun homosexual_N : N;
-fun homosexuality_N : N;
-fun hon_PN : PN;
-fun honduran_A : A;
-fun honduran_N : N;
-fun honduras_PN : PN;
-fun hone_N : N;
-fun hone_V2 : V2;
-fun honest_A : A;
-fun honesty_N : N;
-fun honey_N : N;
-fun honeybee_N : N;
-fun honeycomb_N : N;
-fun honeycomb_V2 : V2;
-fun honeydew_N : N;
-fun honeyed_A : A;
-fun honeymoon_N : N;
-fun honeymoon_V : V;
-fun honeysuckle_N : N;
-fun hong_kong_PN : PN;
-fun honiton_PN : PN;
-fun honk_N : N;
-fun honk_V : V;
-fun honorarium_N : N;
-fun honorary_A : A;
-fun honorific_A : A;
-fun honorific_N : N;
-fun honour_N : N;
-fun honour_V2 : V2;
-fun honourable_A : A;
-fun hoo_PN : PN;
-fun hooch_N : N;
-fun hood_N : N;
-fun hood_V2 : V2;
-fun hoodlum_N : N;
-fun hoodoo_N : N;
-fun hoodoo_V2 : V2;
-fun hoodwink_V2 : V2;
-fun hooey_N : N;
-fun hoof_N : N;
-fun hook_N : N;
-fun hook_V : V;
-fun hook_V2 : V2;
-fun hook_nosed_A : A;
-fun hook_up_N : N;
-fun hookah_N : N;
-fun hooked_A : A;
-fun hooker_N : N;
-fun hookworm_N : N;
-fun hooky_N : N;
-fun hooligan_N : N;
-fun hooliganism_N : N;
-fun hoop_N : N;
-fun hoop_V2 : V2;
-fun hoop_la_N : N;
-fun hoot_N : N;
-fun hoot_V : V;
-fun hoot_V2 : V2;
-fun hooter_N : N;
-fun hoover_N : N;
-fun hoover_V2 : V2;
-fun hop_N : N;
-fun hop_V : V;
-fun hop_V2 : V2;
-fun hop_field_N : N;
-fun hop_garden_N : N;
-fun hop_picker_N : N;
-fun hop_pole_N : N;
-fun hope_N : N;
-fun hope_PN : PN;
-fun hope_V : V;
-fun hope_V2 : V2;
-fun hopeful_A : A;
-fun hopefulness_N : N;
-fun hopeless_A : A;
-fun hopelessness_N : N;
-fun hopped_up_A : A;
-fun hopper_N : N;
-fun hopscotch_N : N;
-fun horace_PN : PN;
-fun horde_N : N;
-fun horizon_N : N;
-fun horizontal_A : A;
-fun horley_PN : PN;
-fun hormone_N : N;
-fun horn_N : N;
-fun horn_V : V;
-fun horn_rimmed_A : A;
-fun hornbeam_N : N;
-fun hornbill_N : N;
-fun horned_A : A;
-fun hornet_N : N;
-fun hornless_A : A;
-fun hornlike_A : A;
-fun hornpipe_N : N;
-fun hornsea_PN : PN;
-fun horny_A : A;
-fun horology_N : N;
-fun horoscope_N : N;
-fun horrible_A : A;
-fun horrid_A : A;
-fun horridness_N : N;
-fun horrific_A : A;
-fun horrify_V2 : V2;
-fun horrifyingly_Adv : Adv;
-fun horror_N : N;
-fun horror_stricken_A : A;
-fun horror_struck_A : A;
-fun hors_de_combat_A : A;
-fun horse_N : N;
-fun horse_chestnut_N : N;
-fun horse_laugh_N : N;
-fun horse_pond_N : N;
-fun horse_sense_N : N;
-fun horseback_N : N;
-fun horsebox_N : N;
-fun horseflesh_N : N;
-fun horsefly_N : N;
-fun horsehair_N : N;
-fun horseman_N : N;
-fun horsemanship_N : N;
-fun horsemeat_N : N;
-fun horseplay_N : N;
-fun horsepower_N : N;
-fun horserace_N : N;
-fun horseracing_N : N;
-fun horseradish_N : N;
-fun horseshoe_N : N;
-fun horsewhip_N : N;
-fun horsewhip_V2 : V2;
-fun horsewoman_N : N;
-fun horsham_PN : PN;
-fun horsley_PN : PN;
-fun horsy_A : A;
-fun hortative_A : A;
-fun horticultural_A : A;
-fun horticulture_N : N;
-fun horticulturist_N : N;
-fun horwich_PN : PN;
-fun hosanna_N : N;
-fun hose_N : N;
-fun hose_V2 : V2;
-fun hosepipe_N : N;
-fun hosier_N : N;
-fun hosiery_N : N;
-fun hosp_PN : PN;
-fun hospice_N : N;
-fun hospitable_A : A;
-fun hospital_N : N;
-fun hospitality_N : N;
-fun hospitalization_N : N;
-fun hospitalize_V2 : V2;
-fun host_N : N;
-fun host_V2 : V2;
-fun hostage_N : N;
-fun hostel_N : N;
-fun hosteller_N : N;
-fun hostelry_N : N;
-fun hostess_N : N;
-fun hostile_A : A;
-fun hostility_N : N;
-fun hot_A : A;
-fun hot_V : V;
-fun hot_V2 : V2;
-fun hot_blooded_A : A;
-fun hot_headed_A : A;
-fun hot_tempered_A : A;
-fun hot_water_bottle_N : N;
-fun hotbed_N : N;
-fun hotchpotch_N : N;
-fun hotel_N : N;
-fun hotelier_N : N;
-fun hotfoot_Adv : Adv;
-fun hotfoot_V : V;
-fun hothead_N : N;
-fun hothouse_N : N;
-fun hotplate_N : N;
-fun houghton_PN : PN;
-fun hound_N : N;
-fun hound_V2 : V2;
-fun hounslow_PN : PN;
-fun hour_N : N;
-fun hourglass_N : N;
-fun houri_N : N;
-fun hourly_A : A;
-fun hourly_Adv : Adv;
-fun house_N : N;
-fun house_V2 : V2;
-fun house_party_N : N;
-fun house_warming_N : N;
-fun houseboat_N : N;
-fun housebound_A : A;
-fun housebreaker_N : N;
-fun housecoat_N : N;
-fun housecraft_N : N;
-fun housedog_N : N;
-fun housefather_N : N;
-fun housefly_N : N;
-fun houseful_N : N;
-fun household_N : N;
-fun householder_N : N;
-fun housekeeper_N : N;
-fun housemaid_N : N;
-fun houseman_N : N;
-fun housemaster_N : N;
-fun housemother_N : N;
-fun houseproud_A : A;
-fun houseroom_N : N;
-fun housetop_N : N;
-fun housetrained_A : A;
-fun housewife_N : N;
-fun housewifely_A : A;
-fun housewifery_N : N;
-fun housework_N : N;
-fun housewrecker_N : N;
-fun housing_N : N;
-fun houston_PN : PN;
-fun hove_PN : PN;
-fun hovel_N : N;
-fun hover_V : V;
-fun hovercraft_N : N;
-fun how_Adv : Adv;
-fun how_d'ye_do_N : N;
-fun howard_PN : PN;
-fun howdah_N : N;
-fun however_Adv : Adv;
-fun howitzer_N : N;
-fun howl_N : N;
-fun howl_V : V;
-fun howl_V2 : V2;
-fun howler_N : N;
-fun howling_A : A;
-fun hoyden_N : N;
-fun hoydenish_A : A;
-fun hoylake_PN : PN;
-fun hoyland_nether_PN : PN;
-fun hp_N : N;
-fun hq_PN : PN;
-fun hrh_PN : PN;
-fun hub_N : N;
-fun hubble_bubble_N : N;
-fun hubbub_N : N;
-fun hubby_N : N;
-fun hubert_PN : PN;
-fun hubris_N : N;
-fun huckaback_N : N;
-fun huckleberry_N : N;
-fun hucknall_PN : PN;
-fun huckster_N : N;
-fun huddersfield_PN : PN;
-fun huddle_N : N;
-fun huddle_V : V;
-fun huddle_V2 : V2;
-fun hue_N : N;
-fun hued_A : A;
-fun huff_N : N;
-fun huff_V : V;
-fun huffily_Adv : Adv;
-fun huffish_A : A;
-fun huffy_A : A;
-fun hug_N : N;
-fun hug_V2 : V2;
-fun huge_A : A;
-fun hugger_mugger_A : A;
-fun hugger_mugger_Adv : Adv;
-fun hugger_mugger_N : N;
-fun hugh_PN : PN;
-fun hughie_PN : PN;
-fun huguenot_N : N;
-fun huhehot_PN : PN;
-fun hula_N : N;
-fun hulk_N : N;
-fun hulking_A : A;
-fun hull_N : N;
-fun hull_V2 : V2;
-fun hullabaloo_N : N;
-fun hum_N : N;
-fun hum_V : V;
-fun hum_V2 : V2;
-fun human_A : A;
-fun human_N : N;
-fun humane_A : A;
-fun humanism_N : N;
-fun humanist_N : N;
-fun humanitarian_A : A;
-fun humanitarian_N : N;
-fun humanitarianism_N : N;
-fun humanity_N : N;
-fun humanize_V : V;
-fun humanize_V2 : V2;
-fun humankind_N : N;
-fun humberside_PN : PN;
-fun humberston_PN : PN;
-fun humble_A : A;
-fun humble_V2 : V2;
-fun humbly_Adv : Adv;
-fun humbug_N : N;
-fun humbug_V2 : V2;
-fun humdinger_N : N;
-fun humdrum_A : A;
-fun humerus_N : N;
-fun humid_A : A;
-fun humidify_V2 : V2;
-fun humidity_N : N;
-fun humiliate_V2 : V2;
-fun humiliation_N : N;
-fun humility_N : N;
-fun humming_top_N : N;
-fun hummingbird_N : N;
-fun hummock_N : N;
-fun humorist_N : N;
-fun humorous_A : A;
-fun humour_N : N;
-fun humour_V2 : V2;
-fun humourist_N : N;
-fun humourless_A : A;
-fun hump_N : N;
-fun hump_V2 : V2;
-fun humpback_N : N;
-fun humpbacked_A : A;
-fun humphrey_PN : PN;
-fun humus_N : N;
-fun hun_N : N;
-fun hunch_N : N;
-fun hunch_V2 : V2;
-fun hunchback_A : A;
-fun hunchback_N : N;
-fun hunchbacked_A : A;
-fun hundredfold_Adv : Adv;
-fun hundredweight_N : N;
-fun hungarian_A : A;
-fun hungarian_N : N;
-fun hungary_PN : PN;
-fun hunger_N : N;
-fun hunger_V : V;
-fun hunger_march_N : N;
-fun hunger_marcher_N : N;
-fun hungrily_Adv : Adv;
-fun hungry_A : A;
-fun hunk_N : N;
-fun hunt_N : N;
-fun hunt_V : V;
-fun hunt_V2 : V2;
-fun hunter_N : N;
-fun hunting_N : N;
-fun hunting_crop_N : N;
-fun huntingdon_PN : PN;
-fun huntress_N : N;
-fun huntsman_N : N;
-fun hurdle_N : N;
-fun hurdle_V : V;
-fun hurdle_V2 : V2;
-fun hurdler_N : N;
-fun hurdy_gurdy_N : N;
-fun hurl_N : N;
-fun hurl_V2 : V2;
-fun hurling_N : N;
-fun hurly_burly_N : N;
-fun hurrah_V : V;
-fun hurricane_N : N;
-fun hurried_A : A;
-fun hurry_N : N;
-fun hurry_V : V;
-fun hurry_V2 : V2;
-fun hurstpierpoint_PN : PN;
-fun hurt_N : N;
-fun hurt_V : V;
-fun hurt_V2 : V2;
-fun hurtful_A : A;
-fun hurtle_V : V;
-fun husband_N : N;
-fun husband_V2 : V2;
-fun husbandman_N : N;
-fun husbandry_N : N;
-fun hush_N : N;
-fun hush_V : V;
-fun hush_V2 : V2;
-fun hush_hush_A : A;
-fun hush_money_N : N;
-fun husk_N : N;
-fun husk_V2 : V2;
-fun huskily_Adv : Adv;
-fun huskiness_N : N;
-fun husky_A : A;
-fun husky_N : N;
-fun hussar_N : N;
-fun hussy_N : N;
-fun hustle_N : N;
-fun hustle_V : V;
-fun hustle_V2 : V2;
-fun hustler_N : N;
-fun hut_N : N;
-fun hutch_N : N;
-fun hutment_N : N;
-fun hutted_A : A;
-fun hwainan_PN : PN;
-fun hyacinth_N : N;
-fun hyaena_N : N;
-fun hybrid_A : A;
-fun hybrid_N : N;
-fun hybridize_V : V;
-fun hybridize_V2 : V2;
-fun hyde_PN : PN;
-fun hyderabad_PN : PN;
-fun hydra_N : N;
-fun hydrangea_N : N;
-fun hydrant_N : N;
-fun hydrate_N : N;
-fun hydrate_V : V;
-fun hydrate_V2 : V2;
-fun hydraulic_A : A;
-fun hydraulics_N : N;
-fun hydrocarbon_N : N;
-fun hydrochloric_A : A;
-fun hydroelectric_A : A;
-fun hydrofoil_N : N;
-fun hydrogen_N : N;
-fun hydropathic_A : A;
-fun hydropathy_N : N;
-fun hydrophobia_N : N;
-fun hydroplane_N : N;
-fun hydroponics_N : N;
-fun hyena_N : N;
-fun hygiene_N : N;
-fun hygienic_A : A;
-fun hygienically_Adv : Adv;
-fun hymen_N : N;
-fun hymn_N : N;
-fun hymn_V2 : V2;
-fun hymnal_N : N;
-fun hyperbola_N : N;
-fun hyperbole_N : N;
-fun hyperbolic_A : A;
-fun hypercritical_A : A;
-fun hypermarket_N : N;
-fun hypersensitive_A : A;
-fun hyphen_N : N;
-fun hyphen_V2 : V2;
-fun hyphenate_V2 : V2;
-fun hypnosis_N : N;
-fun hypnotic_A : A;
-fun hypnotism_N : N;
-fun hypnotist_N : N;
-fun hypnotize_V2 : V2;
-fun hypo_N : N;
-fun hypochondria_N : N;
-fun hypochondriac_A : A;
-fun hypochondriac_N : N;
-fun hypochondriacal_A : A;
-fun hypocrisy_N : N;
-fun hypocrite_N : N;
-fun hypocritical_A : A;
-fun hypodermic_A : A;
-fun hypodermic_N : N;
-fun hypotenuse_N : N;
-fun hypothecate_V2 : V2;
-fun hypothesis_N : N;
-fun hypothetical_A : A;
-fun hyssop_N : N;
-fun hysteria_N : N;
-fun hysterical_A : A;
-fun hysterics_N : N;
-fun hythe_PN : PN;
-fun iamb_N : N;
-fun iambic_A : A;
-fun iambics_N : N;
-fun iambus_N : N;
-fun ian_PN : PN;
-fun iba_N : N;
-fun ibadan_PN : PN;
-fun ibex_N : N;
-fun ibid_PN : PN;
-fun ibidem_Adv : Adv;
-fun ibis_N : N;
-fun icbm_N : N;
-fun ice_N : N;
-fun ice_V : V;
-fun ice_V2 : V2;
-fun ice_axe_N : N;
-fun ice_cream_N : N;
-fun ice_lolly_N : N;
-fun ice_show_N : N;
-fun ice_skate_N : N;
-fun ice_skate_V : V;
-fun ice_skating_N : N;
-fun ice_tray_N : N;
-fun iceberg_N : N;
-fun iceboat_N : N;
-fun icebound_A : A;
-fun icebox_N : N;
-fun icebreaker_N : N;
-fun icecap_N : N;
-fun icecube_N : N;
-fun icefall_N : N;
-fun icefield_N : N;
-fun icefloe_N : N;
-fun icefree_A : A;
-fun icehouse_N : N;
-fun iceland_PN : PN;
-fun icelander_A : A;
-fun icelander_N : N;
-fun icelandic_A : A;
-fun icelandic_N : N;
-fun iceman_N : N;
-fun icepack_N : N;
-fun icepick_N : N;
-fun icerink_N : N;
-fun ichneumon_N : N;
-fun ichneumon_fly_N : N;
-fun icicle_N : N;
-fun icily_Adv : Adv;
-fun icing_N : N;
-fun icon_N : N;
-fun iconoclast_N : N;
-fun icy_A : A;
-fun id_N : N;
-fun ida_PN : PN;
-fun idaho_PN : PN;
-fun idea_N : N;
-fun ideal_A : A;
-fun ideal_N : N;
-fun idealism_N : N;
-fun idealist_N : N;
-fun idealistic_A : A;
-fun idealization_N : N;
-fun idealize_V2 : V2;
-fun idem_PN : PN;
-fun identical_A : A;
-fun identifiable_A : A;
-fun identification_N : N;
-fun identify_V2 : V2;
-fun identikit_N : N;
-fun identity_N : N;
-fun ideogram_N : N;
-fun ideograph_N : N;
-fun ideographic_A : A;
-fun ideological_A : A;
-fun ideology_N : N;
-fun idiocy_N : N;
-fun idiolect_N : N;
-fun idiom_N : N;
-fun idiomatic_A : A;
-fun idiomatically_Adv : Adv;
-fun idiosyncrasy_N : N;
-fun idiosyncratic_A : A;
-fun idiot_N : N;
-fun idiotic_A : A;
-fun idiotically_Adv : Adv;
-fun idle_A : A;
-fun idle_V : V;
-fun idle_V2 : V2;
-fun idleness_N : N;
-fun idler_N : N;
-fun idly_Adv : Adv;
-fun idol_N : N;
-fun idolater_N : N;
-fun idolatress_N : N;
-fun idolatrous_A : A;
-fun idolatry_N : N;
-fun idolization_N : N;
-fun idolize_V2 : V2;
-fun idyll_N : N;
-fun idyllic_A : A;
-fun ie_PN : PN;
-fun igloo_N : N;
-fun igneous_A : A;
-fun ignis_fatuus_N : N;
-fun ignite_V : V;
-fun ignite_V2 : V2;
-fun ignition_N : N;
-fun ignoble_A : A;
-fun ignominious_A : A;
-fun ignominy_N : N;
-fun ignoramus_N : N;
-fun ignorance_N : N;
-fun ignorant_A : A;
-fun ignore_V2 : V2;
-fun iguana_N : N;
-fun ikon_N : N;
-fun ilex_N : N;
-fun ilfracombe_PN : PN;
-fun ilk_N : N;
-fun ilkeston_PN : PN;
-fun ilkley_PN : PN;
-fun ill_A : A;
-fun ill_Adv : Adv;
-fun ill_N : N;
-fun ill_advised_A : A;
-fun ill_affected_A : A;
-fun ill_bred_A : A;
-fun ill_breeding_N : N;
-fun ill_disposed_A : A;
-fun ill_fated_A : A;
-fun ill_favoured_A : A;
-fun ill_gotten_A : A;
-fun ill_judged_A : A;
-fun ill_mannered_A : A;
-fun ill_natured_A : A;
-fun ill_omened_A : A;
-fun ill_starred_A : A;
-fun ill_timed_A : A;
-fun ill_treat_V2 : V2;
-fun ill_treatment_N : N;
-fun ill_usage_N : N;
-fun ill_use_V2 : V2;
-fun illegal_A : A;
-fun illegality_N : N;
-fun illegibility_N : N;
-fun illegible_A : A;
-fun illegitimacy_N : N;
-fun illegitimate_A : A;
-fun illegitimate_N : N;
-fun illiberal_A : A;
-fun illiberality_N : N;
-fun illicit_A : A;
-fun illimitable_A : A;
-fun illinois_PN : PN;
-fun illiteracy_N : N;
-fun illiterate_A : A;
-fun illiterate_N : N;
-fun illness_N : N;
-fun illogical_A : A;
-fun illogicality_N : N;
-fun illogicalness_N : N;
-fun illume_V2 : V2;
-fun illuminate_V2 : V2;
-fun illumination_N : N;
-fun illumine_V2 : V2;
-fun illusion_N : N;
-fun illusionist_N : N;
-fun illusive_A : A;
-fun illusory_A : A;
-fun illustrate_V2 : V2;
-fun illustration_N : N;
-fun illustrative_A : A;
-fun illustrator_N : N;
-fun illustrious_A : A;
-fun ilo_N : N;
-fun image_N : N;
-fun image_V2 : V2;
-fun imagery_N : N;
-fun imaginable_A : A;
-fun imaginary_A : A;
-fun imagination_N : N;
-fun imaginative_A : A;
-fun imagine_V2 : V2;
-fun imam_N : N;
-fun imbalance_N : N;
-fun imbecile_A : A;
-fun imbecile_N : N;
-fun imbecility_N : N;
-fun imbed_V2 : V2;
-fun imbibe_V2 : V2;
-fun imbroglio_N : N;
-fun imbue_V2 : V2;
-fun imf_N : N;
-fun imitate_V2 : V2;
-fun imitation_N : N;
-fun imitative_A : A;
-fun imitator_N : N;
-fun immaculate_A : A;
-fun immanence_N : N;
-fun immanent_A : A;
-fun immaterial_A : A;
-fun immature_A : A;
-fun immaturity_N : N;
-fun immeasurable_A : A;
-fun immediacy_N : N;
-fun immediate_A : A;
-fun immemorial_A : A;
-fun immense_A : A;
-fun immensity_N : N;
-fun immerse_V2 : V2;
-fun immersion_N : N;
-fun immigrant_N : N;
-fun immigrate_V : V;
-fun immigration_N : N;
-fun imminence_N : N;
-fun imminent_A : A;
-fun immingham_PN : PN;
-fun immobile_A : A;
-fun immobility_N : N;
-fun immobilization_N : N;
-fun immobilize_V2 : V2;
-fun immoderate_A : A;
-fun immodest_A : A;
-fun immodesty_N : N;
-fun immolate_V2 : V2;
-fun immolation_N : N;
-fun immoral_A : A;
-fun immorality_N : N;
-fun immortal_A : A;
-fun immortal_N : N;
-fun immortality_N : N;
-fun immortalize_V2 : V2;
-fun immovable_A : A;
-fun immune_A : A;
-fun immunity_N : N;
-fun immunization_N : N;
-fun immunize_V2 : V2;
-fun immunology_N : N;
-fun immure_V2 : V2;
-fun immutability_N : N;
-fun immutable_A : A;
-fun imp_N : N;
-fun impact_N : N;
-fun impact_V2 : V2;
-fun impair_V2 : V2;
-fun impairment_N : N;
-fun impala_N : N;
-fun impale_V2 : V2;
-fun impalement_N : N;
-fun impalpable_A : A;
-fun impanel_V2 : V2;
-fun impart_V2 : V2;
-fun impartial_A : A;
-fun impartiality_N : N;
-fun impassable_A : A;
-fun impasse_N : N;
-fun impassioned_A : A;
-fun impassive_A : A;
-fun impassiveness_N : N;
-fun impassivity_N : N;
-fun impatience_N : N;
-fun impatient_A : A;
-fun impeach_V2 : V2;
-fun impeachment_N : N;
-fun impeccable_A : A;
-fun impecunious_A : A;
-fun impede_V2 : V2;
-fun impediment_N : N;
-fun impel_V2 : V2;
-fun impeller_N : N;
-fun impend_V : V;
-fun impenetrable_A : A;
-fun impenitence_N : N;
-fun impenitent_A : A;
-fun imperative_A : A;
-fun imperceptible_A : A;
-fun imperfect_A : A;
-fun imperfect_N : N;
-fun imperfection_N : N;
-fun imperial_A : A;
-fun imperial_N : N;
-fun imperialism_N : N;
-fun imperialist_N : N;
-fun imperialistic_A : A;
-fun imperil_V2 : V2;
-fun imperious_A : A;
-fun imperiousness_N : N;
-fun imperishable_A : A;
-fun impermanence_N : N;
-fun impermanent_A : A;
-fun impermeable_A : A;
-fun impersonal_A : A;
-fun impersonate_V2 : V2;
-fun impersonation_N : N;
-fun impersonator_N : N;
-fun impertinence_N : N;
-fun impertinent_A : A;
-fun imperturbability_N : N;
-fun imperturbable_A : A;
-fun impervious_A : A;
-fun impetigo_N : N;
-fun impetuosity_N : N;
-fun impetuous_A : A;
-fun impetus_N : N;
-fun impiety_N : N;
-fun impinge_V : V;
-fun impingement_N : N;
-fun impious_A : A;
-fun impish_A : A;
-fun impishness_N : N;
-fun implacable_A : A;
-fun implant_V2 : V2;
-fun implausibility_N : N;
-fun implausible_A : A;
-fun implement_N : N;
-fun implement_V2 : V2;
-fun implementation_N : N;
-fun implicate_V2 : V2;
-fun implication_N : N;
-fun implicit_A : A;
-fun implore_V2 : V2;
-fun imploringly_Adv : Adv;
-fun implosion_N : N;
-fun imply_V2 : V2;
-fun impolite_A : A;
-fun impoliteness_N : N;
-fun impolitic_A : A;
-fun imponderable_A : A;
-fun imponderable_N : N;
-fun import_N : N;
-fun import_V2 : V2;
-fun importance_N : N;
-fun important_A : A;
-fun importation_N : N;
-fun importer_N : N;
-fun importunate_A : A;
-fun importune_V2 : V2;
-fun importunity_N : N;
-fun impose_V : V;
-fun impose_V2 : V2;
-fun imposing_A : A;
-fun imposition_N : N;
-fun impossibility_N : N;
-fun impossible_A : A;
-fun impostor_N : N;
-fun imposture_N : N;
-fun impotence_N : N;
-fun impotent_A : A;
-fun impound_V2 : V2;
-fun impoverish_V2 : V2;
-fun impoverishment_N : N;
-fun impracticability_N : N;
-fun impracticable_A : A;
-fun impracticableness_N : N;
-fun impractical_A : A;
-fun imprecate_V2 : V2;
-fun imprecation_N : N;
-fun imprecise_A : A;
-fun imprecision_N : N;
-fun impregnability_N : N;
-fun impregnable_A : A;
-fun impregnate_V2 : V2;
-fun impresario_N : N;
-fun impress_N : N;
-fun impress_V2 : V2;
-fun impression_N : N;
-fun impressionable_A : A;
-fun impressionism_N : N;
-fun impressionist_N : N;
-fun impressionistic_A : A;
-fun impressive_A : A;
-fun impressiveness_N : N;
-fun imprimatur_N : N;
-fun imprint_N : N;
-fun imprint_V2 : V2;
-fun imprison_V2 : V2;
-fun imprisonment_N : N;
-fun improbability_N : N;
-fun improbable_A : A;
-fun impromptu_A : A;
-fun impromptu_Adv : Adv;
-fun impromptu_N : N;
-fun improper_A : A;
-fun impropriety_N : N;
-fun improve_V : V;
-fun improve_V2 : V2;
-fun improvement_N : N;
-fun improver_N : N;
-fun improvidence_N : N;
-fun improvident_A : A;
-fun improvisation_N : N;
-fun improvise_V : V;
-fun improvise_V2 : V2;
-fun imprudence_N : N;
-fun imprudent_A : A;
-fun impudence_N : N;
-fun impudent_A : A;
-fun impugn_V2 : V2;
-fun impulse_N : N;
-fun impulse_buy_V : V;
-fun impulse_buy_V2 : V2;
-fun impulsion_N : N;
-fun impulsive_A : A;
-fun impulsiveness_N : N;
-fun impunity_N : N;
-fun impure_A : A;
-fun impurity_N : N;
-fun imputation_N : N;
-fun impute_V2 : V2;
-fun in_Adv : Adv;
-fun in_N : N;
-fun in_chief_A : A;
-fun in_fighting_N : N;
-fun in_loco_parentis_Adv : Adv;
-fun in_patient_N : N;
-fun in_service_A : A;
-fun in_situ_Adv : Adv;
-fun in_toto_Adv : Adv;
-fun in_tray_N : N;
-fun inability_N : N;
-fun inaccessibility_N : N;
-fun inaccessible_A : A;
-fun inaccuracy_N : N;
-fun inaccurate_A : A;
-fun inaction_N : N;
-fun inactivate_V2 : V2;
-fun inactive_A : A;
-fun inactivity_N : N;
-fun inadequacy_N : N;
-fun inadequate_A : A;
-fun inadmissible_A : A;
-fun inadvertence_N : N;
-fun inadvertent_A : A;
-fun inadvisability_N : N;
-fun inadvisable_A : A;
-fun inalienable_A : A;
-fun inane_A : A;
-fun inanimate_A : A;
-fun inanition_N : N;
-fun inanity_N : N;
-fun inapplicable_A : A;
-fun inappreciable_A : A;
-fun inappropriate_A : A;
-fun inappropriateness_N : N;
-fun inapt_A : A;
-fun inaptitude_N : N;
-fun inarticulate_A : A;
-fun inasmuch_as_Adv : Adv;
-fun inattention_N : N;
-fun inattentive_A : A;
-fun inaudibility_N : N;
-fun inaudible_A : A;
-fun inaugural_A : A;
-fun inaugural_N : N;
-fun inaugurate_V2 : V2;
-fun inauguration_N : N;
-fun inauspicious_A : A;
-fun inboard_A : A;
-fun inborn_A : A;
-fun inbound_A : A;
-fun inbred_A : A;
-fun inbreeding_N : N;
-fun inbuilt_A : A;
-fun inc_PN : PN;
-fun incalculable_A : A;
-fun incandescence_N : N;
-fun incandescent_A : A;
-fun incantation_N : N;
-fun incapability_N : N;
-fun incapable_A : A;
-fun incapacitate_V2 : V2;
-fun incapacity_N : N;
-fun incarcerate_V2 : V2;
-fun incarceration_N : N;
-fun incarnate_A : A;
-fun incarnate_V2 : V2;
-fun incarnation_N : N;
-fun incautious_A : A;
-fun incendiarism_N : N;
-fun incendiary_N : N;
-fun incense_N : N;
-fun incense_V2 : V2;
-fun incentive_N : N;
-fun inception_N : N;
-fun incertitude_N : N;
-fun incessant_A : A;
-fun incest_N : N;
-fun incestuous_A : A;
-fun inch_N : N;
-fun inch_V : V;
-fun inch_V2 : V2;
-fun inchoate_A : A;
-fun inchoative_A : A;
-fun inchon_PN : PN;
-fun incidence_N : N;
-fun incident_A : A;
-fun incident_N : N;
-fun incidental_A : A;
-fun incinerate_V2 : V2;
-fun incineration_N : N;
-fun incinerator_N : N;
-fun incipient_A : A;
-fun incise_V2 : V2;
-fun incision_N : N;
-fun incisive_A : A;
-fun incisor_N : N;
-fun incite_V2 : V2;
-fun incitement_N : N;
-fun incivility_N : N;
-fun incl_PN : PN;
-fun inclemency_N : N;
-fun inclement_A : A;
-fun inclination_N : N;
-fun incline_N : N;
-fun incline_V : V;
-fun incline_V2 : V2;
-fun inclose_V2 : V2;
-fun inclosure_N : N;
-fun include_V2 : V2;
-fun inclusion_N : N;
-fun inclusive_A : A;
-fun incognito_A : A;
-fun incognito_Adv : Adv;
-fun incoherence_N : N;
-fun incoherent_A : A;
-fun incombustible_A : A;
-fun income_N : N;
-fun income_tax_N : N;
-fun incoming_A : A;
-fun incommensurable_A : A;
-fun incommensurate_A : A;
-fun incommode_V2 : V2;
-fun incommunicado_A : A;
-fun incomparable_A : A;
-fun incompatibility_N : N;
-fun incompatible_A : A;
-fun incompetence_N : N;
-fun incompetency_N : N;
-fun incompetent_A : A;
-fun incomplete_A : A;
-fun incomprehensibility_N : N;
-fun incomprehensible_A : A;
-fun incomprehension_N : N;
-fun incompressible_A : A;
-fun inconceivable_A : A;
-fun inconclusive_A : A;
-fun incongruity_N : N;
-fun incongruous_A : A;
-fun inconsequent_A : A;
-fun inconsequential_A : A;
-fun inconsiderable_A : A;
-fun inconsiderate_A : A;
-fun inconsistency_N : N;
-fun inconsistent_A : A;
-fun inconsolable_A : A;
-fun inconspicuous_A : A;
-fun inconstancy_N : N;
-fun inconstant_A : A;
-fun incontestable_A : A;
-fun incontinence_N : N;
-fun incontinent_A : A;
-fun incontrovertible_A : A;
-fun inconvenience_N : N;
-fun inconvenience_V2 : V2;
-fun inconvenient_A : A;
-fun inconvertibility_N : N;
-fun inconvertible_A : A;
-fun incorporate_A : A;
-fun incorporate_V : V;
-fun incorporate_V2 : V2;
-fun incorporation_N : N;
-fun incorporeal_A : A;
-fun incorrect_A : A;
-fun incorrectness_N : N;
-fun incorrigible_A : A;
-fun incorruptibility_N : N;
-fun incorruptible_A : A;
-fun increase_N : N;
-fun increase_V : V;
-fun increase_V2 : V2;
-fun increasingly_Adv : Adv;
-fun incredibility_N : N;
-fun incredible_A : A;
-fun incredulity_N : N;
-fun incredulous_A : A;
-fun increment_N : N;
-fun incremental_A : A;
-fun incriminate_V2 : V2;
-fun incrustation_N : N;
-fun incubate_V : V;
-fun incubate_V2 : V2;
-fun incubation_N : N;
-fun incubator_N : N;
-fun incubus_N : N;
-fun inculcate_V2 : V2;
-fun inculpate_V2 : V2;
-fun incumbency_N : N;
-fun incumbent_A : A;
-fun incumbent_N : N;
-fun incur_V2 : V2;
-fun incurable_A : A;
-fun incurable_N : N;
-fun incurious_A : A;
-fun incursion_N : N;
-fun incurved_A : A;
-fun indebted_A : A;
-fun indebtedness_N : N;
-fun indecency_N : N;
-fun indecent_A : A;
-fun indecipherable_A : A;
-fun indecision_N : N;
-fun indecisive_A : A;
-fun indecorous_A : A;
-fun indecorum_N : N;
-fun indeed_Adv : Adv;
-fun indefatigable_A : A;
-fun indefeasible_A : A;
-fun indefensible_A : A;
-fun indefinable_A : A;
-fun indefinite_A : A;
-fun indelible_A : A;
-fun indelicacy_N : N;
-fun indelicate_A : A;
-fun indemnification_N : N;
-fun indemnify_V2 : V2;
-fun indemnity_N : N;
-fun indent_N : N;
-fun indent_V : V;
-fun indent_V2 : V2;
-fun indentation_N : N;
-fun indenture_N : N;
-fun indenture_V2 : V2;
-fun independence_N : N;
-fun independent_A : A;
-fun independent_N : N;
-fun indescribable_A : A;
-fun indestructibility_N : N;
-fun indestructible_A : A;
-fun indeterminable_A : A;
-fun indeterminacy_N : N;
-fun indeterminate_A : A;
-fun index_N : N;
-fun index_V2 : V2;
-fun indexer_N : N;
-fun india_PN : PN;
-fun india_rubber_N : N;
-fun indiaman_N : N;
-fun indian_A : A;
-fun indian_N : N;
-fun indiana_PN : PN;
-fun indianapolis_PN : PN;
-fun indicate_V2 : V2;
-fun indication_N : N;
-fun indicative_A : A;
-fun indicator_N : N;
-fun indict_V2 : V2;
-fun indictable_A : A;
-fun indictment_N : N;
-fun indies_PN : PN;
-fun indifference_N : N;
-fun indifferent_A : A;
-fun indigence_N : N;
-fun indigenous_A : A;
-fun indigent_A : A;
-fun indigestible_A : A;
-fun indigestion_N : N;
-fun indignant_A : A;
-fun indignation_N : N;
-fun indignity_N : N;
-fun indigo_N : N;
-fun indirect_A : A;
-fun indirectness_N : N;
-fun indiscernible_A : A;
-fun indiscipline_N : N;
-fun indiscreet_A : A;
-fun indiscrete_A : A;
-fun indiscretion_N : N;
-fun indiscriminate_A : A;
-fun indispensability_N : N;
-fun indispensable_A : A;
-fun indisposed_A : A;
-fun indisposition_N : N;
-fun indisputable_A : A;
-fun indissoluble_A : A;
-fun indistinct_A : A;
-fun indistinctness_N : N;
-fun indistinguishable_A : A;
-fun indite_V2 : V2;
-fun individual_A : A;
-fun individual_N : N;
-fun individualism_N : N;
-fun individualist_N : N;
-fun individualistic_A : A;
-fun individuality_N : N;
-fun individualize_V2 : V2;
-fun indivisible_A : A;
-fun indo_european_A : A;
-fun indoctrinate_V2 : V2;
-fun indoctrination_N : N;
-fun indolence_N : N;
-fun indolent_A : A;
-fun indomitable_A : A;
-fun indonesia_PN : PN;
-fun indonesian_A : A;
-fun indonesian_N : N;
-fun indoor_A : A;
-fun indoors_Adv : Adv;
-fun indore_PN : PN;
-fun indorse_V2 : V2;
-fun indrawn_A : A;
-fun indubitable_A : A;
-fun induce_V2 : V2;
-fun inducement_N : N;
-fun induct_V2 : V2;
-fun induction_N : N;
-fun inductive_A : A;
-fun indue_V2 : V2;
-fun indulge_V : V;
-fun indulge_V2 : V2;
-fun indulgence_N : N;
-fun indulgent_A : A;
-fun industrial_A : A;
-fun industrialism_N : N;
-fun industrialist_N : N;
-fun industrialization_N : N;
-fun industrialized_A : A;
-fun industrious_A : A;
-fun industry_N : N;
-fun indwelling_A : A;
-fun inebriate_A : A;
-fun inebriate_N : N;
-fun inebriate_V2 : V2;
-fun inebriation_N : N;
-fun inebriety_N : N;
-fun inedible_A : A;
-fun ineffable_A : A;
-fun ineffective_A : A;
-fun ineffectiveness_N : N;
-fun ineffectual_A : A;
-fun ineffectuality_N : N;
-fun inefficiency_N : N;
-fun inefficient_A : A;
-fun inelastic_A : A;
-fun inelegance_N : N;
-fun inelegant_A : A;
-fun ineligibility_N : N;
-fun ineligible_A : A;
-fun ineluctable_A : A;
-fun inept_A : A;
-fun ineptitude_N : N;
-fun inequality_N : N;
-fun inequitable_A : A;
-fun inequity_N : N;
-fun ineradicable_A : A;
-fun inert_A : A;
-fun inertia_N : N;
-fun inescapable_A : A;
-fun inessential_A : A;
-fun inessential_N : N;
-fun inestimable_A : A;
-fun inevitability_N : N;
-fun inevitable_A : A;
-fun inexact_A : A;
-fun inexactitude_N : N;
-fun inexcusable_A : A;
-fun inexhaustible_A : A;
-fun inexorable_A : A;
-fun inexpediency_N : N;
-fun inexpedient_A : A;
-fun inexpensive_A : A;
-fun inexperience_N : N;
-fun inexperienced_A : A;
-fun inexpert_A : A;
-fun inexpiable_A : A;
-fun inexplicable_A : A;
-fun inexpressible_A : A;
-fun inextinguishable_A : A;
-fun inextricable_A : A;
-fun infallibility_N : N;
-fun infallible_A : A;
-fun infamous_A : A;
-fun infamy_N : N;
-fun infancy_N : N;
-fun infant_N : N;
-fun infanticide_N : N;
-fun infantile_A : A;
-fun infantilism_N : N;
-fun infantry_N : N;
-fun infantryman_N : N;
-fun infatuate_V2 : V2;
-fun infatuation_N : N;
-fun infect_V2 : V2;
-fun infection_N : N;
-fun infectious_A : A;
-fun infer_V2 : V2;
-fun inference_N : N;
-fun inferential_A : A;
-fun inferior_A : A;
-fun inferior_N : N;
-fun inferiority_N : N;
-fun infernal_A : A;
-fun inferno_N : N;
-fun infertile_A : A;
-fun infertility_N : N;
-fun infest_V2 : V2;
-fun infestation_N : N;
-fun infidel_N : N;
-fun infidelity_N : N;
-fun infield_N : N;
-fun infiltrate_V : V;
-fun infiltrate_V2 : V2;
-fun infiltration_N : N;
-fun infinite_A : A;
-fun infinitesimal_A : A;
-fun infinitive_A : A;
-fun infinitive_N : N;
-fun infinitude_N : N;
-fun infinity_N : N;
-fun infirm_A : A;
-fun infirmary_N : N;
-fun infirmity_N : N;
-fun inflame_V : V;
-fun inflame_V2 : V2;
-fun inflammable_A : A;
-fun inflammation_N : N;
-fun inflammatory_A : A;
-fun inflatable_A : A;
-fun inflate_V2 : V2;
-fun inflation_N : N;
-fun inflationary_A : A;
-fun inflect_V2 : V2;
-fun inflection_N : N;
-fun inflectional_A : A;
-fun inflexibility_N : N;
-fun inflexible_A : A;
-fun inflexion_N : N;
-fun inflict_V2 : V2;
-fun infliction_N : N;
-fun inflorescence_N : N;
-fun inflow_N : N;
-fun influence_N : N;
-fun influence_V2 : V2;
-fun influential_A : A;
-fun influenza_N : N;
-fun influx_N : N;
-fun info_N : N;
-fun inform_V : V;
-fun inform_V2 : V2;
-fun informal_A : A;
-fun informality_N : N;
-fun informant_N : N;
-fun information_N : N;
-fun informative_A : A;
-fun informer_N : N;
-fun infra_Adv : Adv;
-fun infra_dig_A : A;
-fun infra_red_A : A;
-fun infraction_N : N;
-fun infrastructure_N : N;
-fun infrequency_N : N;
-fun infrequent_A : A;
-fun infringe_V : V;
-fun infringe_V2 : V2;
-fun infringement_N : N;
-fun infuriate_V2 : V2;
-fun infuse_V : V;
-fun infuse_V2 : V2;
-fun infusion_N : N;
-fun ingatestone_PN : PN;
-fun ingathering_N : N;
-fun ingenious_A : A;
-fun ingenuity_N : N;
-fun ingenuous_A : A;
-fun ingenuousness_N : N;
-fun ingest_V2 : V2;
-fun ingle_nook_N : N;
-fun inglorious_A : A;
-fun ingoing_A : A;
-fun ingot_N : N;
-fun ingraft_V2 : V2;
-fun ingrained_A : A;
-fun ingratiate_V2 : V2;
-fun ingratiatingly_Adv : Adv;
-fun ingratitude_N : N;
-fun ingredient_N : N;
-fun ingress_N : N;
-fun ingrid_PN : PN;
-fun ingrowing_A : A;
-fun ingenue_N : N;
-fun inhabit_V2 : V2;
-fun inhabitable_A : A;
-fun inhabitant_N : N;
-fun inhalation_N : N;
-fun inhale_V : V;
-fun inhale_V2 : V2;
-fun inhaler_N : N;
-fun inharmonious_A : A;
-fun inherent_A : A;
-fun inherit_V : V;
-fun inherit_V2 : V2;
-fun inheritance_N : N;
-fun inheritor_N : N;
-fun inhibit_V2 : V2;
-fun inhibition_N : N;
-fun inhibitor_N : N;
-fun inhibitory_A : A;
-fun inhospitable_A : A;
-fun inhuman_A : A;
-fun inhumane_A : A;
-fun inhumanity_N : N;
-fun inimical_A : A;
-fun inimitable_A : A;
-fun iniquitous_A : A;
-fun iniquity_N : N;
-fun initial_A : A;
-fun initial_N : N;
-fun initial_V2 : V2;
-fun initiate_A : A;
-fun initiate_N : N;
-fun initiate_V2 : V2;
-fun initiation_N : N;
-fun initiative_N : N;
-fun inject_V2 : V2;
-fun injection_N : N;
-fun injudicious_A : A;
-fun injunction_N : N;
-fun injure_V2 : V2;
-fun injured_A : A;
-fun injurious_A : A;
-fun injury_N : N;
-fun injustice_N : N;
-fun ink_N : N;
-fun ink_V2 : V2;
-fun ink_bottle_N : N;
-fun ink_pad_N : N;
-fun ink_pot_N : N;
-fun inkling_N : N;
-fun inkstand_N : N;
-fun inkwell_N : N;
-fun inky_A : A;
-fun inland_A : A;
-fun inland_Adv : Adv;
-fun inlay_N : N;
-fun inlay_V2 : V2;
-fun inlet_N : N;
-fun inmate_N : N;
-fun inmost_A : A;
-fun inn_N : N;
-fun innate_A : A;
-fun inner_A : A;
-fun innermost_A : A;
-fun inning_N : N;
-fun innings_N : N;
-fun innkeeper_N : N;
-fun innocence_N : N;
-fun innocent_A : A;
-fun innocent_N : N;
-fun innocuous_A : A;
-fun innovate_V : V;
-fun innovation_N : N;
-fun innovator_N : N;
-fun innsbruck_PN : PN;
-fun innuendo_N : N;
-fun innumerable_A : A;
-fun inoculate_V2 : V2;
-fun inoculation_N : N;
-fun inoffensive_A : A;
-fun inoperable_A : A;
-fun inoperative_A : A;
-fun inopportune_A : A;
-fun inordinate_A : A;
-fun inorganic_A : A;
-fun inorganically_Adv : Adv;
-fun inpouring_A : A;
-fun inpouring_N : N;
-fun input_N : N;
-fun inquest_N : N;
-fun inquietude_N : N;
-fun inquire_V : V;
-fun inquire_V2 : V2;
-fun inquirer_N : N;
-fun inquiring_A : A;
-fun inquiry_N : N;
-fun inquisition_N : N;
-fun inquisitive_A : A;
-fun inquisitiveness_N : N;
-fun inquisitor_N : N;
-fun inquisitorial_A : A;
-fun inroad_N : N;
-fun inrush_N : N;
-fun ins_N : N;
-fun insane_A : A;
-fun insanitary_A : A;
-fun insanity_N : N;
-fun insatiable_A : A;
-fun insatiate_A : A;
-fun inscribe_V2 : V2;
-fun inscription_N : N;
-fun inscrutable_A : A;
-fun insect_N : N;
-fun insect_powder_N : N;
-fun insecticide_N : N;
-fun insectivorous_A : A;
-fun insecure_A : A;
-fun insecurity_N : N;
-fun inseminate_V2 : V2;
-fun insemination_N : N;
-fun insensate_A : A;
-fun insensibility_N : N;
-fun insensible_A : A;
-fun insensitive_A : A;
-fun insensitivity_N : N;
-fun insentient_A : A;
-fun inseparable_A : A;
-fun insert_N : N;
-fun insert_V2 : V2;
-fun insertion_N : N;
-fun inset_N : N;
-fun inset_V2 : V2;
-fun inshore_A : A;
-fun inshore_Adv : Adv;
-fun inside_A : A;
-fun inside_Adv : Adv;
-fun inside_N : N;
-fun insider_N : N;
-fun insidious_A : A;
-fun insidiousness_N : N;
-fun insight_N : N;
-fun insignificance_N : N;
-fun insignificant_A : A;
-fun insincere_A : A;
-fun insincerity_N : N;
-fun insinuate_V2 : V2;
-fun insinuatingly_Adv : Adv;
-fun insinuation_N : N;
-fun insipid_A : A;
-fun insipidity_N : N;
-fun insipidness_N : N;
-fun insist_V : V;
-fun insist_V2 : V2;
-fun insistence_N : N;
-fun insistent_A : A;
-fun insofar_Adv : Adv;
-fun insole_N : N;
-fun insolence_N : N;
-fun insolent_A : A;
-fun insoluble_A : A;
-fun insolvency_N : N;
-fun insolvent_A : A;
-fun insolvent_N : N;
-fun insomnia_N : N;
-fun insomniac_N : N;
-fun insomuch_Adv : Adv;
-fun insouciance_N : N;
-fun insouciant_A : A;
-fun inspan_V2 : V2;
-fun inspect_V2 : V2;
-fun inspection_N : N;
-fun inspector_N : N;
-fun inspectorate_N : N;
-fun inspiration_N : N;
-fun inspirational_A : A;
-fun inspire_V2 : V2;
-fun inspired_A : A;
-fun inst_PN : PN;
-fun instability_N : N;
-fun install_V2 : V2;
-fun installation_N : N;
-fun instalment_N : N;
-fun instance_N : N;
-fun instance_V2 : V2;
-fun instant_A : A;
-fun instant_N : N;
-fun instantaneous_A : A;
-fun instead_Adv : Adv;
-fun instep_N : N;
-fun instigate_V2 : V2;
-fun instigation_N : N;
-fun instigator_N : N;
-fun instil_V2 : V2;
-fun instillation_N : N;
-fun instinct_A : A;
-fun instinct_N : N;
-fun instinctive_A : A;
-fun institute_N : N;
-fun institute_V2 : V2;
-fun institution_N : N;
-fun institutional_A : A;
-fun institutionalize_V2 : V2;
-fun instruct_V2 : V2;
-fun instruction_N : N;
-fun instructional_A : A;
-fun instructive_A : A;
-fun instructor_N : N;
-fun instructress_N : N;
-fun instrument_N : N;
-fun instrumental_A : A;
-fun instrumentalist_N : N;
-fun instrumentality_N : N;
-fun instrumentation_N : N;
-fun insubordinate_A : A;
-fun insubordination_N : N;
-fun insubstantial_A : A;
-fun insufferable_A : A;
-fun insufficiency_N : N;
-fun insufficient_A : A;
-fun insular_A : A;
-fun insularism_N : N;
-fun insularity_N : N;
-fun insulate_V2 : V2;
-fun insulation_N : N;
-fun insulator_N : N;
-fun insulin_N : N;
-fun insult_N : N;
-fun insult_V2 : V2;
-fun insulting_A : A;
-fun insuperable_A : A;
-fun insupportable_A : A;
-fun insurance_N : N;
-fun insure_V2 : V2;
-fun insurgent_A : A;
-fun insurgent_N : N;
-fun insurmountable_A : A;
-fun insurrection_N : N;
-fun intact_A : A;
-fun intaglio_N : N;
-fun intake_N : N;
-fun intangibility_N : N;
-fun intangible_A : A;
-fun intangibles_N : N;
-fun integer_N : N;
-fun integral_A : A;
-fun integrate_V2 : V2;
-fun integration_N : N;
-fun integrity_N : N;
-fun integument_N : N;
-fun intellect_N : N;
-fun intellectual_A : A;
-fun intellectual_N : N;
-fun intelligence_N : N;
-fun intelligent_A : A;
-fun intelligentsia_N : N;
-fun intelligibility_N : N;
-fun intelligible_A : A;
-fun intemperance_N : N;
-fun intemperate_A : A;
-fun intend_V2 : V2;
-fun intense_A : A;
-fun intensification_N : N;
-fun intensify_V : V;
-fun intensify_V2 : V2;
-fun intensity_N : N;
-fun intensive_A : A;
-fun intent_A : A;
-fun intent_N : N;
-fun intention_N : N;
-fun intentional_A : A;
-fun intentness_N : N;
-fun inter_V2 : V2;
-fun inter_alia_Adv : Adv;
-fun interact_V : V;
-fun interaction_N : N;
-fun interactive_A : A;
-fun interbreed_V : V;
-fun interbreed_V2 : V2;
-fun intercalary_A : A;
-fun intercede_V : V;
-fun intercept_V2 : V2;
-fun interception_N : N;
-fun interceptor_N : N;
-fun intercession_N : N;
-fun interchange_N : N;
-fun interchange_V2 : V2;
-fun interchangeable_A : A;
-fun intercollegiate_A : A;
-fun intercom_N : N;
-fun intercommunicate_V : V;
-fun intercommunication_N : N;
-fun intercommunion_N : N;
-fun interconnect_V : V;
-fun interconnect_V2 : V2;
-fun interconnectedness_N : N;
-fun interconnection_N : N;
-fun intercontinental_A : A;
-fun intercourse_N : N;
-fun interdenominational_A : A;
-fun interdepartmental_A : A;
-fun interdependence_N : N;
-fun interdependent_A : A;
-fun interdict_N : N;
-fun interdict_V2 : V2;
-fun interdiction_N : N;
-fun interdisciplinary_A : A;
-fun interest_N : N;
-fun interest_V2 : V2;
-fun interested_A : A;
-fun interesting_A : A;
-fun interface_N : N;
-fun interfere_V : V;
-fun interference_N : N;
-fun interim_N : N;
-fun interior_A : A;
-fun interior_N : N;
-fun interject_V2 : V2;
-fun interjection_N : N;
-fun interlace_V : V;
-fun interlace_V2 : V2;
-fun interlard_V2 : V2;
-fun interleave_V2 : V2;
-fun interlink_V : V;
-fun interlink_V2 : V2;
-fun interlock_V : V;
-fun interlock_V2 : V2;
-fun interlocutor_N : N;
-fun interloper_N : N;
-fun interlude_N : N;
-fun intermarriage_N : N;
-fun intermarry_V : V;
-fun intermediary_N : N;
-fun intermediate_A : A;
-fun intermediate_N : N;
-fun interment_N : N;
-fun intermezzo_N : N;
-fun interminable_A : A;
-fun intermingle_V : V;
-fun intermingle_V2 : V2;
-fun intermission_N : N;
-fun intermittent_A : A;
-fun intermix_V : V;
-fun intermix_V2 : V2;
-fun intermixture_N : N;
-fun intern_N : N;
-fun intern_V2 : V2;
-fun internal_A : A;
-fun internalize_V2 : V2;
-fun international_A : A;
-fun international_N : N;
-fun internationale_N : N;
-fun internationalism_N : N;
-fun internationalist_N : N;
-fun internationalization_N : N;
-fun internationalize_V2 : V2;
-fun interne_N : N;
-fun internecine_A : A;
-fun internee_N : N;
-fun internment_N : N;
-fun interpellate_V2 : V2;
-fun interpellation_N : N;
-fun interphone_N : N;
-fun interplanetary_A : A;
-fun interplay_N : N;
-fun interpol_PN : PN;
-fun interpolate_V2 : V2;
-fun interpolation_N : N;
-fun interpose_V : V;
-fun interpose_V2 : V2;
-fun interposition_N : N;
-fun interpret_V : V;
-fun interpret_V2 : V2;
-fun interpretation_N : N;
-fun interpretative_A : A;
-fun interpreter_N : N;
-fun interracial_A : A;
-fun interregnum_N : N;
-fun interrelate_V : V;
-fun interrelate_V2 : V2;
-fun interrelation_N : N;
-fun interrelationship_N : N;
-fun interrogate_V2 : V2;
-fun interrogation_N : N;
-fun interrogative_A : A;
-fun interrogative_N : N;
-fun interrogator_N : N;
-fun interrogatory_A : A;
-fun interrupt_V : V;
-fun interrupt_V2 : V2;
-fun interrupter_N : N;
-fun interruption_N : N;
-fun intersect_V : V;
-fun intersect_V2 : V2;
-fun intersection_N : N;
-fun intersperse_V2 : V2;
-fun interstate_A : A;
-fun interstellar_A : A;
-fun interstice_N : N;
-fun intertribal_A : A;
-fun intertwine_V : V;
-fun intertwine_V2 : V2;
-fun interval_N : N;
-fun intervene_V : V;
-fun intervention_N : N;
-fun interview_N : N;
-fun interview_V2 : V2;
-fun interviewer_N : N;
-fun interweave_V2 : V2;
-fun intestate_A : A;
-fun intestinal_A : A;
-fun intestine_N : N;
-fun intimacy_N : N;
-fun intimate_A : A;
-fun intimate_N : N;
-fun intimate_V2 : V2;
-fun intimation_N : N;
-fun intimidate_V2 : V2;
-fun intimidation_N : N;
-fun intolerable_A : A;
-fun intolerance_N : N;
-fun intolerant_A : A;
-fun intonation_N : N;
-fun intone_V : V;
-fun intone_V2 : V2;
-fun intoxicant_A : A;
-fun intoxicant_N : N;
-fun intoxicate_V2 : V2;
-fun intoxication_N : N;
-fun intra_uterine_A : A;
-fun intractability_N : N;
-fun intractable_A : A;
-fun intramural_A : A;
-fun intransigence_N : N;
-fun intransigent_A : A;
-fun intransitive_A : A;
-fun intravenous_A : A;
-fun intrench_V2 : V2;
-fun intrepid_A : A;
-fun intrepidity_N : N;
-fun intricacy_N : N;
-fun intricate_A : A;
-fun intrigue_N : N;
-fun intrigue_V : V;
-fun intrigue_V2 : V2;
-fun intrinsic_A : A;
-fun intrinsically_Adv : Adv;
-fun intro_N : N;
-fun introduce_V2 : V2;
-fun introduction_N : N;
-fun introductory_A : A;
-fun introspect_V : V;
-fun introspection_N : N;
-fun introspective_A : A;
-fun introversion_N : N;
-fun introvert_N : N;
-fun introvert_V2 : V2;
-fun intrude_V : V;
-fun intrude_V2 : V2;
-fun intruder_N : N;
-fun intrusion_N : N;
-fun intrusive_A : A;
-fun intrust_V2 : V2;
-fun intuit_V : V;
-fun intuit_V2 : V2;
-fun intuition_N : N;
-fun intuitive_A : A;
-fun intumescence_N : N;
-fun inundate_V2 : V2;
-fun inundation_N : N;
-fun inure_V2 : V2;
-fun invade_V2 : V2;
-fun invader_N : N;
-fun invalid_A : A;
-fun invalid_N : N;
-fun invalid_V2 : V2;
-fun invalidate_V2 : V2;
-fun invalidation_N : N;
-fun invalidism_N : N;
-fun invalidity_N : N;
-fun invaluable_A : A;
-fun invariable_A : A;
-fun invasion_N : N;
-fun invasive_A : A;
-fun invective_N : N;
-fun inveigh_V : V;
-fun inveigle_V2 : V2;
-fun invent_V2 : V2;
-fun invention_N : N;
-fun inventive_A : A;
-fun inventor_N : N;
-fun inventory_N : N;
-fun inverkeithing_PN : PN;
-fun inverness_PN : PN;
-fun inverse_A : A;
-fun inverse_N : N;
-fun inversion_N : N;
-fun invert_V2 : V2;
-fun invertebrate_A : A;
-fun invertebrate_N : N;
-fun inverurie_PN : PN;
-fun invest_V : V;
-fun invest_V2 : V2;
-fun investigate_V2 : V2;
-fun investigation_N : N;
-fun investigator_N : N;
-fun investiture_N : N;
-fun investment_N : N;
-fun investor_N : N;
-fun inveterate_A : A;
-fun invidious_A : A;
-fun invigilate_V : V;
-fun invigilation_N : N;
-fun invigilator_N : N;
-fun invigorate_V2 : V2;
-fun invincibility_N : N;
-fun invincible_A : A;
-fun inviolable_A : A;
-fun inviolate_A : A;
-fun invisibility_N : N;
-fun invisible_A : A;
-fun invitation_N : N;
-fun invite_N : N;
-fun invite_V2 : V2;
-fun inviting_A : A;
-fun invocation_N : N;
-fun invoice_N : N;
-fun invoice_V2 : V2;
-fun invoke_V2 : V2;
-fun involuntary_A : A;
-fun involute_A : A;
-fun involution_N : N;
-fun involve_V2 : V2;
-fun involved_A : A;
-fun involvement_N : N;
-fun invulnerable_A : A;
-fun inward_A : A;
-fun inward_Adv : Adv;
-fun inwardness_N : N;
-fun inwards_Adv : Adv;
-fun inwrought_A : A;
-fun iodine_N : N;
-fun ion_N : N;
-fun ionic_A : A;
-fun ionization_N : N;
-fun ionize_V : V;
-fun ionize_V2 : V2;
-fun ionosphere_N : N;
-fun iota_N : N;
-fun iou_N : N;
-fun ious_N : N;
-fun iowa_PN : PN;
-fun ipse_dixit_N : N;
-fun ipso_facto_Adv : Adv;
-fun ipswich_PN : PN;
-fun iq_N : N;
-fun ira_N : N;
-fun iran_PN : PN;
-fun iranian_A : A;
-fun iranian_N : N;
-fun iraq_PN : PN;
-fun iraqi_A : A;
-fun iraqi_N : N;
-fun irascibility_N : N;
-fun irascible_A : A;
-fun irate_A : A;
-fun ire_N : N;
-fun ireful_A : A;
-fun ireland_PN : PN;
-fun irene_PN : PN;
-fun iridescence_N : N;
-fun iridescent_A : A;
-fun iridium_N : N;
-fun iris_N : N;
-fun iris_PN : PN;
-fun irish_A : A;
-fun irish_N : N;
-fun irishman_N : N;
-fun irishwoman_N : N;
-fun irk_V2 : V2;
-fun irksome_A : A;
-fun iron_N : N;
-fun iron_V : V;
-fun iron_V2 : V2;
-fun iron_foundry_N : N;
-fun iron_grey_A : A;
-fun iron_grey_N : N;
-fun ironclad_A : A;
-fun ironic_A : A;
-fun ironical_A : A;
-fun ironing_board_N : N;
-fun ironmonger_N : N;
-fun ironmongery_N : N;
-fun ironmould_N : N;
-fun ironside_N : N;
-fun ironware_N : N;
-fun ironwork_N : N;
-fun ironworks_N : N;
-fun irony_N : N;
-fun irradiate_V2 : V2;
-fun irrational_A : A;
-fun irreconcilable_A : A;
-fun irrecoverable_A : A;
-fun irredeemable_A : A;
-fun irredentist_N : N;
-fun irreducible_A : A;
-fun irrefutable_A : A;
-fun irregular_A : A;
-fun irregular_N : N;
-fun irregularity_N : N;
-fun irrelevance_N : N;
-fun irrelevancy_N : N;
-fun irrelevant_A : A;
-fun irreligious_A : A;
-fun irremediable_A : A;
-fun irremovable_A : A;
-fun irreparable_A : A;
-fun irreplaceable_A : A;
-fun irrepressible_A : A;
-fun irreproachable_A : A;
-fun irresistible_A : A;
-fun irresolute_A : A;
-fun irresolution_N : N;
-fun irrespective_A : A;
-fun irresponsibility_N : N;
-fun irresponsible_A : A;
-fun irretrievable_A : A;
-fun irreverence_N : N;
-fun irreverent_A : A;
-fun irreversibility_N : N;
-fun irreversible_A : A;
-fun irrevocable_A : A;
-fun irridentism_N : N;
-fun irrigate_V2 : V2;
-fun irrigation_N : N;
-fun irritability_N : N;
-fun irritable_A : A;
-fun irritant_A : A;
-fun irritant_N : N;
-fun irritate_V2 : V2;
-fun irritation_N : N;
-fun irruption_N : N;
-fun irthlingborough_PN : PN;
-fun irvine_PN : PN;
-fun isaac_PN : PN;
-fun isabel_PN : PN;
-fun isabella_PN : PN;
-fun isinglass_N : N;
-fun islam_N : N;
-fun islamic_A : A;
-fun island_N : N;
-fun islander_N : N;
-fun isle_N : N;
-fun islet_N : N;
-fun islington_PN : PN;
-fun ism_N : N;
-fun isobar_N : N;
-fun isobel_PN : PN;
-fun isolate_V2 : V2;
-fun isolation_N : N;
-fun isolationism_N : N;
-fun isolationist_N : N;
-fun isosceles_A : A;
-fun isotherm_N : N;
-fun isotope_N : N;
-fun israel_PN : PN;
-fun israeli_A : A;
-fun israeli_N : N;
-fun issue_N : N;
-fun issue_V : V;
-fun issue_V2 : V2;
-fun istanbul_PN : PN;
-fun isthmus_N : N;
-fun italian_A : A;
-fun italian_N : N;
-fun italic_A : A;
-fun italicize_V2 : V2;
-fun italy_PN : PN;
-fun itch_N : N;
-fun itch_V : V;
-fun itchy_A : A;
-fun item_Adv : Adv;
-fun item_N : N;
-fun itemize_V2 : V2;
-fun iterate_V2 : V2;
-fun iteration_N : N;
-fun itinerant_A : A;
-fun itinerary_N : N;
-fun itv_N : N;
-fun iud_N : N;
-fun ivan_PN : PN;
-fun iver_PN : PN;
-fun ivied_A : A;
-fun ivor_PN : PN;
-fun ivory_N : N;
-fun ivy_N : N;
-fun ivy_PN : PN;
-fun izmir_PN : PN;
-fun jab_N : N;
-fun jab_V : V;
-fun jab_V2 : V2;
-fun jabalpur_PN : PN;
-fun jabber_N : N;
-fun jabber_V : V;
-fun jabber_V2 : V2;
-fun jabberer_N : N;
-fun jabot_N : N;
-fun jack_N : N;
-fun jack_PN : PN;
-fun jack_V2 : V2;
-fun jack_in_the_box_N : N;
-fun jack_knife_N : N;
-fun jack_knife_V : V;
-fun jack_o'_lantern_N : N;
-fun jack_plane_N : N;
-fun jackal_N : N;
-fun jackanapes_N : N;
-fun jackass_N : N;
-fun jackboot_N : N;
-fun jackdaw_N : N;
-fun jacket_N : N;
-fun jackie_PN : PN;
-fun jackpot_N : N;
-fun jacksonville_PN : PN;
-fun jacob_PN : PN;
-fun jacobean_A : A;
-fun jacobin_A : A;
-fun jacobin_N : N;
-fun jacobinism_N : N;
-fun jacobite_N : N;
-fun jacqueline_PN : PN;
-fun jade_N : N;
-fun jaded_A : A;
-fun jag_N : N;
-fun jag_V2 : V2;
-fun jagged_A : A;
-fun jaggy_A : A;
-fun jaguar_N : N;
-fun jail_N : N;
-fun jail_V2 : V2;
-fun jailer_N : N;
-fun jailor_N : N;
-fun jaipur_PN : PN;
-fun jakarta_PN : PN;
-fun jake_PN : PN;
-fun jakes_N : N;
-fun jalopy_N : N;
-fun jam_N : N;
-fun jam_V : V;
-fun jam_V2 : V2;
-fun jamaica_PN : PN;
-fun jamaican_A : A;
-fun jamaican_N : N;
-fun jamb_N : N;
-fun jamboree_N : N;
-fun james_PN : PN;
-fun jamjar_N : N;
-fun jampack_V2 : V2;
-fun jampot_N : N;
-fun jan_PN : PN;
-fun jane_PN : PN;
-fun janet_PN : PN;
-fun jangle_N : N;
-fun jangle_V : V;
-fun jangle_V2 : V2;
-fun janice_PN : PN;
-fun janie_PN : PN;
-fun janitor_N : N;
-fun january_N : N;
-fun january_PN : PN;
-fun janus_PN : PN;
-fun japan_PN : PN;
-fun japan_V2 : V2;
-fun japanese_A : A;
-fun japanese_N : N;
-fun jape_N : N;
-fun japonica_N : N;
-fun jar_N : N;
-fun jar_V : V;
-fun jar_V2 : V2;
-fun jarful_N : N;
-fun jargon_N : N;
-fun jarring_A : A;
-fun jarrow_PN : PN;
-fun jasmine_N : N;
-fun jason_PN : PN;
-fun jasper_N : N;
-fun jaundice_N : N;
-fun jaundice_V2 : V2;
-fun jaunt_N : N;
-fun jaunt_V : V;
-fun jauntily_Adv : Adv;
-fun jauntiness_N : N;
-fun jaunting_car_N : N;
-fun jaunty_A : A;
-fun java_PN : PN;
-fun javanese_A : A;
-fun javanese_N : N;
-fun javelin_N : N;
-fun jaw_N : N;
-fun jaw_V : V;
-fun jawbone_N : N;
-fun jawbreaker_N : N;
-fun jay_N : N;
-fun jaywalk_V : V;
-fun jaywalker_N : N;
-fun jazz_N : N;
-fun jazz_V2 : V2;
-fun jazzy_A : A;
-fun jc_PN : PN;
-fun jealous_A : A;
-fun jealousy_N : N;
-fun jean_N : N;
-fun jean_PN : PN;
-fun jeanie_PN : PN;
-fun jedburgh_PN : PN;
-fun jeep_N : N;
-fun jeer_N : N;
-fun jeer_V : V;
-fun jeer_V2 : V2;
-fun jeeringly_Adv : Adv;
-fun jeff_PN : PN;
-fun jeffrey_PN : PN;
-fun jehovah_PN : PN;
-fun jejune_A : A;
-fun jejuneness_N : N;
-fun jekyll_and_hyde_PN : PN;
-fun jell_V : V;
-fun jell_V2 : V2;
-fun jellaba_N : N;
-fun jellied_A : A;
-fun jelly_N : N;
-fun jelly_V : V;
-fun jelly_V2 : V2;
-fun jellyfish_N : N;
-fun jemmy_N : N;
-fun jennifer_PN : PN;
-fun jenny_N : N;
-fun jenny_PN : PN;
-fun jeopardize_V2 : V2;
-fun jeopardy_N : N;
-fun jerboa_N : N;
-fun jeremiad_N : N;
-fun jeremy_PN : PN;
-fun jerk_N : N;
-fun jerk_V : V;
-fun jerk_V2 : V2;
-fun jerkily_Adv : Adv;
-fun jerkin_N : N;
-fun jerkiness_N : N;
-fun jerky_A : A;
-fun jerome_PN : PN;
-fun jerry_N : N;
-fun jerry_PN : PN;
-fun jerry_builder_N : N;
-fun jerry_building_N : N;
-fun jerry_built_A : A;
-fun jersey_N : N;
-fun jersey_PN : PN;
-fun jess_PN : PN;
-fun jessica_PN : PN;
-fun jessie_PN : PN;
-fun jest_N : N;
-fun jest_V : V;
-fun jester_N : N;
-fun jesting_A : A;
-fun jesuit_N : N;
-fun jesuitical_A : A;
-fun jesus_PN : PN;
-fun jet_N : N;
-fun jet_V : V;
-fun jet_V2 : V2;
-fun jet_black_A : A;
-fun jet_propelled_A : A;
-fun jetsam_N : N;
-fun jettison_V2 : V2;
-fun jetty_N : N;
-fun jew_N : N;
-fun jewel_N : N;
-fun jewel_V2 : V2;
-fun jeweller_N : N;
-fun jewellery_N : N;
-fun jewelry_N : N;
-fun jewess_N : N;
-fun jewish_A : A;
-fun jezebel_N : N;
-fun jib_N : N;
-fun jib_V : V;
-fun jib_boom_N : N;
-fun jibe_N : N;
-fun jibe_V : V;
-fun jiffy_N : N;
-fun jig_N : N;
-fun jig_V : V;
-fun jig_V2 : V2;
-fun jigger_N : N;
-fun jiggered_A : A;
-fun jiggery_pokery_N : N;
-fun jiggle_N : N;
-fun jiggle_V : V;
-fun jiggle_V2 : V2;
-fun jigsaw_N : N;
-fun jihad_N : N;
-fun jill_PN : PN;
-fun jilt_N : N;
-fun jilt_V2 : V2;
-fun jim_PN : PN;
-fun jim_crow_N : N;
-fun jimmy_N : N;
-fun jimmy_PN : PN;
-fun jingle_N : N;
-fun jingle_V : V;
-fun jingle_V2 : V2;
-fun jingo_N : N;
-fun jingoism_N : N;
-fun jingoist_N : N;
-fun jingoistic_A : A;
-fun jinks_N : N;
-fun jinn_N : N;
-fun jinx_N : N;
-fun jitney_N : N;
-fun jitterbug_N : N;
-fun jittery_A : A;
-fun jive_N : N;
-fun jive_V : V;
-fun jnr_PN : PN;
-fun jo_PN : PN;
-fun joan_PN : PN;
-fun joanie_PN : PN;
-fun joann_PN : PN;
-fun joanna_PN : PN;
-fun joanne_PN : PN;
-fun job_N : N;
-fun job_PN : PN;
-fun job_V : V;
-fun job_V2 : V2;
-fun jobber_N : N;
-fun jobbery_N : N;
-fun jocelyn_PN : PN;
-fun jockey_N : N;
-fun jockey_V : V;
-fun jockey_V2 : V2;
-fun jocose_A : A;
-fun jocoseness_N : N;
-fun jocosity_N : N;
-fun jocular_A : A;
-fun jocularity_N : N;
-fun jocund_A : A;
-fun jocundity_N : N;
-fun joe_PN : PN;
-fun joey_PN : PN;
-fun jog_N : N;
-fun jog_V : V;
-fun jog_V2 : V2;
-fun jog_trot_N : N;
-fun jogger_N : N;
-fun jogging_N : N;
-fun joggle_N : N;
-fun joggle_V : V;
-fun joggle_V2 : V2;
-fun johannesburg_PN : PN;
-fun john_PN : PN;
-fun john_bull_N : N;
-fun johnny_PN : PN;
-fun johnstone_PN : PN;
-fun joie_de_vivre_N : N;
-fun join_N : N;
-fun join_V : V;
-fun join_V2 : V2;
-fun joiner_N : N;
-fun joinery_N : N;
-fun joint_A : A;
-fun joint_N : N;
-fun joint_V2 : V2;
-fun jointure_N : N;
-fun joist_N : N;
-fun joke_N : N;
-fun joke_V : V;
-fun joker_N : N;
-fun jokingly_Adv : Adv;
-fun jollification_N : N;
-fun jollity_N : N;
-fun jolly_A : A;
-fun jolly_Adv : Adv;
-fun jolly_V2 : V2;
-fun jollyboat_N : N;
-fun jolt_N : N;
-fun jolt_V : V;
-fun jolt_V2 : V2;
-fun jolty_A : A;
-fun jonah_PN : PN;
-fun jonathan_PN : PN;
-fun jonquil_N : N;
-fun jordan_PN : PN;
-fun jordanian_A : A;
-fun jordanian_N : N;
-fun joseph_PN : PN;
-fun josephine_PN : PN;
-fun josh_PN : PN;
-fun joshua_PN : PN;
-fun joss_N : N;
-fun joss_house_N : N;
-fun joss_stick_N : N;
-fun jostle_V : V;
-fun jostle_V2 : V2;
-fun jot_N : N;
-fun jot_V2 : V2;
-fun jotter_N : N;
-fun joule_N : N;
-fun journal_N : N;
-fun journalese_N : N;
-fun journalism_N : N;
-fun journalist_N : N;
-fun journalistic_A : A;
-fun journalistically_Adv : Adv;
-fun journey_N : N;
-fun journey_V : V;
-fun journeyman_N : N;
-fun joust_N : N;
-fun joust_V : V;
-fun jove_PN : PN;
-fun jovial_A : A;
-fun joviality_N : N;
-fun jowl_N : N;
-fun jowly_A : A;
-fun joy_N : N;
-fun joy_PN : PN;
-fun joy_V : V;
-fun joy_ride_N : N;
-fun joy_stick_N : N;
-fun joyce_PN : PN;
-fun joyful_A : A;
-fun joyfulness_N : N;
-fun joyless_A : A;
-fun joylessness_N : N;
-fun joyous_A : A;
-fun joyousness_N : N;
-fun jp_N : N;
-fun ju_jitsu_N : N;
-fun jubilant_A : A;
-fun jubilation_N : N;
-fun jubilee_N : N;
-fun judaic_A : A;
-fun judaism_N : N;
-fun judas_N : N;
-fun judas_PN : PN;
-fun judder_V : V;
-fun judge_N : N;
-fun judge_V : V;
-fun judge_V2 : V2;
-fun judgement_N : N;
-fun judicature_N : N;
-fun judicial_A : A;
-fun judiciary_N : N;
-fun judicious_A : A;
-fun judiciousness_N : N;
-fun judith_PN : PN;
-fun judo_N : N;
-fun judy_PN : PN;
-fun jug_N : N;
-fun jug_V2 : V2;
-fun jugful_N : N;
-fun juggernaut_N : N;
-fun juggle_V : V;
-fun juggle_V2 : V2;
-fun juggler_N : N;
-fun jugular_A : A;
-fun juice_N : N;
-fun juiciness_N : N;
-fun juicy_A : A;
-fun juju_N : N;
-fun jujube_N : N;
-fun jukebox_N : N;
-fun jul_PN : PN;
-fun julep_N : N;
-fun julia_PN : PN;
-fun julian_A : A;
-fun julian_PN : PN;
-fun julie_PN : PN;
-fun juliet_PN : PN;
-fun july_N : N;
-fun jumble_N : N;
-fun jumble_V : V;
-fun jumble_V2 : V2;
-fun jumble_sale_N : N;
-fun jumbo_A : A;
-fun jump_N : N;
-fun jump_V : V;
-fun jump_V2 : V2;
-fun jumped_up_A : A;
-fun jumper_N : N;
-fun jumpiness_N : N;
-fun jumpy_A : A;
-fun jun_PN : PN;
-fun junction_N : N;
-fun juncture_N : N;
-fun june_N : N;
-fun june_PN : PN;
-fun jungle_N : N;
-fun jungly_A : A;
-fun junior_A : A;
-fun junior_N : N;
-fun juniper_N : N;
-fun junk_N : N;
-fun junk_shop_N : N;
-fun junket_N : N;
-fun junket_V : V;
-fun junketing_N : N;
-fun junkie_N : N;
-fun junky_N : N;
-fun junoesque_A : A;
-fun junta_N : N;
-fun jupiter_PN : PN;
-fun juridical_A : A;
-fun jurisdiction_N : N;
-fun jurisprudence_N : N;
-fun jurist_N : N;
-fun juror_N : N;
-fun jury_N : N;
-fun jury_box_N : N;
-fun jury_mast_N : N;
-fun juryman_N : N;
-fun just_A : A;
-fun just_Adv : Adv;
-fun justice_N : N;
-fun justiciary_N : N;
-fun justifiable_A : A;
-fun justification_N : N;
-fun justify_V2 : V2;
-fun justin_PN : PN;
-fun justness_N : N;
-fun jut_V : V;
-fun jute_N : N;
-fun juvenile_A : A;
-fun juvenile_N : N;
-fun juxtapose_V2 : V2;
-fun juxtaposition_N : N;
-fun kaffir_N : N;
-fun kail_N : N;
-fun kaiser_N : N;
-fun kakemono_N : N;
-fun kale_N : N;
-fun kaleidoscope_N : N;
-fun kaleidoscopic_A : A;
-fun kalgan_PN : PN;
-fun kampong_N : N;
-fun kampuchea_PN : PN;
-fun kampuchean_A : A;
-fun kampuchean_N : N;
-fun kangaroo_N : N;
-fun kanpur_PN : PN;
-fun kansas_PN : PN;
-fun kansas_city_PN : PN;
-fun kaohsiung_PN : PN;
-fun kaolin_N : N;
-fun kapok_N : N;
-fun kaput_A : A;
-fun karachi_PN : PN;
-fun karaganda_PN : PN;
-fun karat_N : N;
-fun karate_N : N;
-fun karen_PN : PN;
-fun karlsruhe_PN : PN;
-fun karma_N : N;
-fun kashmir_PN : PN;
-fun kashmiri_A : A;
-fun kashmiri_N : N;
-fun kassel_PN : PN;
-fun kate_PN : PN;
-fun kath_PN : PN;
-fun katherine_PN : PN;
-fun kathy_PN : PN;
-fun katie_PN : PN;
-fun katowice_PN : PN;
-fun kava_N : N;
-fun kay_PN : PN;
-fun kayak_N : N;
-fun kazan_PN : PN;
-fun kebab_N : N;
-fun kedgeree_N : N;
-fun keel_N : N;
-fun keel_V : V;
-fun keel_V2 : V2;
-fun keen_A : A;
-fun keen_N : N;
-fun keen_V : V;
-fun keen_V2 : V2;
-fun keenness_N : N;
-fun keep_N : N;
-fun keep_V : V;
-fun keep_V2 : V2;
-fun keeper_N : N;
-fun keeping_N : N;
-fun keepsake_N : N;
-fun keg_N : N;
-fun keighley_PN : PN;
-fun keith_PN : PN;
-fun kelp_N : N;
-fun kelso_PN : PN;
-fun kelt_N : N;
-fun kelty_PN : PN;
-fun kemsing_PN : PN;
-fun ken_N : N;
-fun ken_PN : PN;
-fun ken_V2 : V2;
-fun kendal_PN : PN;
-fun kenilworth_PN : PN;
-fun kennel_N : N;
-fun kennel_V : V;
-fun kennel_V2 : V2;
-fun kenneth_PN : PN;
-fun kenny_PN : PN;
-fun kensington_PN : PN;
-fun kent_PN : PN;
-fun kentucky_PN : PN;
-fun kenya_PN : PN;
-fun kenyan_A : A;
-fun kenyan_N : N;
-fun kepi_N : N;
-fun kerb_N : N;
-fun kerbstone_N : N;
-fun kerchief_N : N;
-fun kernel_N : N;
-fun kerosene_N : N;
-fun kerry_PN : PN;
-fun kestrel_N : N;
-fun ketch_N : N;
-fun ketchup_N : N;
-fun kettering_PN : PN;
-fun kettle_N : N;
-fun kettledrum_N : N;
-fun kevin_PN : PN;
-fun key_N : N;
-fun key_V2 : V2;
-fun keyboard_N : N;
-fun keyhole_N : N;
-fun keyless_A : A;
-fun keynote_N : N;
-fun keynsham_PN : PN;
-fun keyring_N : N;
-fun keystone_N : N;
-fun keyword_N : N;
-fun keyworth_PN : PN;
-fun kg_N : N;
-fun kgb_N : N;
-fun khaki_A : A;
-fun khaki_N : N;
-fun khalka_N : N;
-fun khan_N : N;
-fun kharkov_PN : PN;
-fun khartoum_PN : PN;
-fun khmer_N : N;
-fun kibbutz_N : N;
-fun kibbutznik_N : N;
-fun kick_N : N;
-fun kick_V : V;
-fun kick_V2 : V2;
-fun kick_start_N : N;
-fun kick_starter_N : N;
-fun kickback_N : N;
-fun kickoff_N : N;
-fun kid_N : N;
-fun kid_V : V;
-fun kid_V2 : V2;
-fun kidderminster_PN : PN;
-fun kiddy_N : N;
-fun kidlington_PN : PN;
-fun kidnap_V2 : V2;
-fun kidnapper_N : N;
-fun kidney_N : N;
-fun kidney_bean_N : N;
-fun kidsgrove_PN : PN;
-fun kiev_PN : PN;
-fun kilbirnie_PN : PN;
-fun kildare_PN : PN;
-fun kilkenny_PN : PN;
-fun kill_N : N;
-fun kill_V : V;
-fun kill_V2 : V2;
-fun killarney_PN : PN;
-fun killer_N : N;
-fun killing_A : A;
-fun killing_N : N;
-fun killjoy_N : N;
-fun kilmarnock_PN : PN;
-fun kiln_N : N;
-fun kilo_N : N;
-fun kilocycle_N : N;
-fun kilogram_N : N;
-fun kilolitre_N : N;
-fun kilometre_N : N;
-fun kilowatt_N : N;
-fun kilsyth_PN : PN;
-fun kilt_N : N;
-fun kilwinning_PN : PN;
-fun kimberley_PN : PN;
-fun kimono_N : N;
-fun kind_A : A;
-fun kind_N : N;
-fun kind_hearted_A : A;
-fun kinda_Adv : Adv;
-fun kindergarten_N : N;
-fun kindle_V : V;
-fun kindle_V2 : V2;
-fun kindling_N : N;
-fun kindly_A : A;
-fun kindness_N : N;
-fun kindred_A : A;
-fun kindred_N : N;
-fun kinetic_A : A;
-fun kinetics_N : N;
-fun king's_lynn_PN : PN;
-fun king_N : N;
-fun king_size_A : A;
-fun king_sized_A : A;
-fun kingcup_N : N;
-fun kingdom_N : N;
-fun kingfisher_N : N;
-fun kinglike_A : A;
-fun kingly_A : A;
-fun kingpin_N : N;
-fun kingsbury_PN : PN;
-fun kingship_N : N;
-fun kingsteignton_PN : PN;
-fun kingston_PN : PN;
-fun kingston_upon_hull_PN : PN;
-fun kingston_upon_thames_PN : PN;
-fun kink_N : N;
-fun kink_V : V;
-fun kink_V2 : V2;
-fun kinky_A : A;
-fun kinshasa_PN : PN;
-fun kinship_N : N;
-fun kinsman_N : N;
-fun kinswoman_N : N;
-fun kiosk_N : N;
-fun kip_N : N;
-fun kip_V : V;
-fun kippax_PN : PN;
-fun kipper_N : N;
-fun kirin_PN : PN;
-fun kirk_N : N;
-fun kirkby_PN : PN;
-fun kirkby_in_ashfield_PN : PN;
-fun kirkcaldy_PN : PN;
-fun kirkham_PN : PN;
-fun kirkintilloch_PN : PN;
-fun kirkwall_PN : PN;
-fun kirsch_N : N;
-fun kirtle_N : N;
-fun kismet_N : N;
-fun kiss_N : N;
-fun kiss_V : V;
-fun kiss_V2 : V2;
-fun kisser_N : N;
-fun kit_N : N;
-fun kit_V2 : V2;
-fun kitakyushu_PN : PN;
-fun kitbag_N : N;
-fun kitchen_N : N;
-fun kitchenette_N : N;
-fun kite_N : N;
-fun kite_balloon_N : N;
-fun kitsch_A : A;
-fun kitten_N : N;
-fun kittenish_A : A;
-fun kitty_N : N;
-fun kitty_PN : PN;
-fun kiwi_N : N;
-fun klaxon_N : N;
-fun kleenex_N : N;
-fun kleptomania_N : N;
-fun kleptomaniac_N : N;
-fun km_N : N;
-fun knack_N : N;
-fun knacker_N : N;
-fun knap_V2 : V2;
-fun knapsack_N : N;
-fun knaresborough_PN : PN;
-fun knave_N : N;
-fun knavery_N : N;
-fun knavish_A : A;
-fun knead_V2 : V2;
-fun knee_N : N;
-fun knee_deep_A : A;
-fun knee_deep_Adv : Adv;
-fun knee_high_A : A;
-fun knee_high_Adv : Adv;
-fun kneecap_N : N;
-fun kneel_V : V;
-fun knell_N : N;
-fun knesset_N : N;
-fun knick_knack_N : N;
-fun knife_N : N;
-fun knife_V2 : V2;
-fun knife_edge_N : N;
-fun knight_N : N;
-fun knight_V2 : V2;
-fun knight_errant_N : N;
-fun knighthood_N : N;
-fun knightly_A : A;
-fun knit_V : V;
-fun knit_V2 : V2;
-fun knitter_N : N;
-fun knitting_N : N;
-fun knitting_machine_N : N;
-fun knitting_needle_N : N;
-fun knitwear_N : N;
-fun knob_N : N;
-fun knobble_N : N;
-fun knobbly_A : A;
-fun knobkerrie_N : N;
-fun knock_N : N;
-fun knock_V : V;
-fun knock_V2 : V2;
-fun knock_kneed_A : A;
-fun knock_on_N : N;
-fun knockabout_A : A;
-fun knockdown_A : A;
-fun knocker_N : N;
-fun knockout_A : A;
-fun knockout_N : N;
-fun knoll_N : N;
-fun knot_N : N;
-fun knot_V : V;
-fun knot_V2 : V2;
-fun knothole_N : N;
-fun knottingley_PN : PN;
-fun knotty_A : A;
-fun knout_N : N;
-fun know_N : N;
-fun know_V : V;
-fun know_V2 : V2;
-fun know_all_N : N;
-fun know_how_N : N;
-fun knowing_A : A;
-fun knowledge_N : N;
-fun knowledgeable_A : A;
-fun knuckle_N : N;
-fun knuckle_V : V;
-fun knutsford_PN : PN;
-fun ko_N : N;
-fun koala_N : N;
-fun kobe_PN : PN;
-fun koblenz_PN : PN;
-fun kobo_N : N;
-fun kohl_N : N;
-fun kohlrabi_N : N;
-fun kola_N : N;
-fun kola_nut_N : N;
-fun koln_PN : PN;
-fun kookaburra_N : N;
-fun kopeck_N : N;
-fun kopje_N : N;
-fun koppie_N : N;
-fun koran_N : N;
-fun koranic_A : A;
-fun korea_PN : PN;
-fun korean_A : A;
-fun korean_N : N;
-fun kosher_A : A;
-fun kosher_N : N;
-fun kotow_N : N;
-fun kotow_V : V;
-fun koumiss_N : N;
-fun kowtow_N : N;
-fun kowtow_V : V;
-fun kraal_N : N;
-fun krakow_PN : PN;
-fun krasnoyarsk_PN : PN;
-fun krefeld_PN : PN;
-fun kremlin_N : N;
-fun krivoi_rog_PN : PN;
-fun krona_N : N;
-fun krone_N : N;
-fun kudos_N : N;
-fun kumis_N : N;
-fun kung_fu_N : N;
-fun kunming_PN : PN;
-fun kuwait_PN : PN;
-fun kuwait_city_PN : PN;
-fun kuwaiti_A : A;
-fun kuwaiti_N : N;
-fun kuybyshev_PN : PN;
-fun kvass_N : N;
-fun kw_N : N;
-fun kwacha_N : N;
-fun kweiyang_PN : PN;
-fun kwela_N : N;
-fun kyoto_PN : PN;
-fun kummel_N : N;
-fun l_plate_N : N;
-fun la_N : N;
-fun la_PN : PN;
-fun la_di_da_A : A;
-fun la_habana_PN : PN;
-fun la_paz_PN : PN;
-fun la_plata_PN : PN;
-fun la_spezia_PN : PN;
-fun laager_N : N;
-fun lab_N : N;
-fun lab_PN : PN;
-fun label_N : N;
-fun label_V2 : V2;
-fun labial_A : A;
-fun laboratory_N : N;
-fun laborious_A : A;
-fun labour_N : N;
-fun labour_V : V;
-fun labour_V2 : V2;
-fun labour_saving_A : A;
-fun laboured_A : A;
-fun labourer_N : N;
-fun labourite_N : N;
-fun labrador_PN : PN;
-fun laburnum_N : N;
-fun labyrinth_N : N;
-fun labyrinthine_A : A;
-fun lace_N : N;
-fun lace_V : V;
-fun lace_V2 : V2;
-fun lacerate_V2 : V2;
-fun laceration_N : N;
-fun lachrymal_A : A;
-fun lachrymose_A : A;
-fun lack_N : N;
-fun lack_V : V;
-fun lack_V2 : V2;
-fun lack_lustre_A : A;
-fun lackadaisical_A : A;
-fun lackey_N : N;
-fun laconic_A : A;
-fun laconically_Adv : Adv;
-fun laconicism_N : N;
-fun laconism_N : N;
-fun lacquer_N : N;
-fun lacquer_V2 : V2;
-fun lacrosse_N : N;
-fun lactic_A : A;
-fun lacuna_N : N;
-fun lacy_A : A;
-fun lad_N : N;
-fun ladder_N : N;
-fun ladder_V : V;
-fun ladder_proof_A : A;
-fun laddie_N : N;
-fun lade_V2 : V2;
-fun laden_A : A;
-fun lading_N : N;
-fun ladle_N : N;
-fun ladle_V2 : V2;
-fun lady's_maid_N : N;
-fun lady_N : N;
-fun lady_chapel_N : N;
-fun lady_in_waiting_N : N;
-fun lady_killer_N : N;
-fun ladybird_N : N;
-fun ladylike_A : A;
-fun ladyship_N : N;
-fun lag_N : N;
-fun lag_V : V;
-fun lag_V2 : V2;
-fun lager_N : N;
-fun laggard_N : N;
-fun lagging_N : N;
-fun lagoon_N : N;
-fun lagos_PN : PN;
-fun lahore_PN : PN;
-fun laic_A : A;
-fun laicize_V2 : V2;
-fun lair_N : N;
-fun laird_N : N;
-fun laissez_faire_N : N;
-fun laity_N : N;
-fun lake_N : N;
-fun lakenheath_PN : PN;
-fun lakh_N : N;
-fun lam_V : V;
-fun lam_V2 : V2;
-fun lama_N : N;
-fun lamasery_N : N;
-fun lamb_N : N;
-fun lamb_V : V;
-fun lambaste_V2 : V2;
-fun lambency_N : N;
-fun lambent_A : A;
-fun lambeth_PN : PN;
-fun lambkin_N : N;
-fun lambskin_N : N;
-fun lame_A : A;
-fun lame_V2 : V2;
-fun lameness_N : N;
-fun lament_N : N;
-fun lament_V : V;
-fun lament_V2 : V2;
-fun lamentable_A : A;
-fun lamentation_N : N;
-fun laminate_V : V;
-fun laminate_V2 : V2;
-fun lammas_N : N;
-fun lammas_PN : PN;
-fun lamp_N : N;
-fun lamp_black_N : N;
-fun lamplight_N : N;
-fun lamplighter_N : N;
-fun lamplit_A : A;
-fun lampoon_N : N;
-fun lampoon_V2 : V2;
-fun lamppost_N : N;
-fun lamprey_N : N;
-fun lampshade_N : N;
-fun lame_N : N;
-fun lanark_PN : PN;
-fun lancashire_PN : PN;
-fun lancaster_PN : PN;
-fun lancastrian_A : A;
-fun lancastrian_N : N;
-fun lance_N : N;
-fun lance_V2 : V2;
-fun lance_corporal_N : N;
-fun lancer_N : N;
-fun lancet_N : N;
-fun lanchow_PN : PN;
-fun lancing_PN : PN;
-fun land_N : N;
-fun land_V : V;
-fun land_V2 : V2;
-fun land_agent_N : N;
-fun landau_N : N;
-fun landed_A : A;
-fun landfall_N : N;
-fun landgrave_N : N;
-fun landholder_N : N;
-fun landing_N : N;
-fun landing_craft_N : N;
-fun landing_field_N : N;
-fun landing_gear_N : N;
-fun landing_net_N : N;
-fun landing_party_N : N;
-fun landing_place_N : N;
-fun landing_stage_N : N;
-fun landing_strip_N : N;
-fun landlady_N : N;
-fun landless_A : A;
-fun landlocked_A : A;
-fun landlord_N : N;
-fun landlubber_N : N;
-fun landmark_N : N;
-fun landmine_N : N;
-fun landowner_N : N;
-fun landrover_N : N;
-fun landscape_N : N;
-fun landscape_V2 : V2;
-fun landslide_N : N;
-fun landslip_N : N;
-fun landsman_N : N;
-fun landward_Adv : Adv;
-fun lane_N : N;
-fun langsyne_Adv : Adv;
-fun langsyne_N : N;
-fun language_N : N;
-fun languid_A : A;
-fun languish_V : V;
-fun languor_N : N;
-fun languorous_A : A;
-fun langur_N : N;
-fun lank_A : A;
-fun lanky_A : A;
-fun lanolin_N : N;
-fun lantern_N : N;
-fun lantern_jawed_A : A;
-fun lanyard_N : N;
-fun lao_N : N;
-fun laos_PN : PN;
-fun laotian_A : A;
-fun laotian_N : N;
-fun lap_N : N;
-fun lap_V : V;
-fun lap_V2 : V2;
-fun lap_dog_N : N;
-fun lapel_N : N;
-fun lapidary_A : A;
-fun lapidary_N : N;
-fun lapis_lazuli_N : N;
-fun lapse_N : N;
-fun lapse_V : V;
-fun lapwing_N : N;
-fun larboard_A : A;
-fun larboard_N : N;
-fun larceny_N : N;
-fun larch_N : N;
-fun lard_N : N;
-fun lard_V2 : V2;
-fun larder_N : N;
-fun large_A : A;
-fun large_Adv : Adv;
-fun large_N : N;
-fun large_scale_A : A;
-fun largeness_N : N;
-fun largesse_N : N;
-fun largish_A : A;
-fun largo_N : N;
-fun largs_PN : PN;
-fun lariat_N : N;
-fun lark_N : N;
-fun lark_V : V;
-fun larkhall_PN : PN;
-fun larkspur_N : N;
-fun larn_V : V;
-fun larn_V2 : V2;
-fun larne_PN : PN;
-fun larry_PN : PN;
-fun larva_N : N;
-fun larval_A : A;
-fun laryngitis_N : N;
-fun larynx_N : N;
-fun las_palmas_PN : PN;
-fun lascar_N : N;
-fun lascivious_A : A;
-fun lasciviousness_N : N;
-fun laser_N : N;
-fun lash_N : N;
-fun lash_V : V;
-fun lash_V2 : V2;
-fun lash_up_N : N;
-fun lashing_N : N;
-fun lass_N : N;
-fun lassie_N : N;
-fun lassitude_N : N;
-fun lasso_N : N;
-fun lasso_V2 : V2;
-fun last_A : A;
-fun last_Adv : Adv;
-fun last_N : N;
-fun last_V : V;
-fun lasting_A : A;
-fun lat_N : N;
-fun latch_N : N;
-fun latch_V : V;
-fun latch_V2 : V2;
-fun latchkey_N : N;
-fun late_A : A;
-fun late_Adv : Adv;
-fun lateen_A : A;
-fun latent_A : A;
-fun lateral_A : A;
-fun laterite_N : N;
-fun latex_N : N;
-fun lath_N : N;
-fun lathe_N : N;
-fun lather_N : N;
-fun lather_V : V;
-fun lather_V2 : V2;
-fun lathi_N : N;
-fun latin_A : A;
-fun latin_N : N;
-fun latinist_N : N;
-fun latinize_V2 : V2;
-fun latish_A : A;
-fun latitude_N : N;
-fun latitudes_N : N;
-fun latitudinal_A : A;
-fun latitudinarian_A : A;
-fun latitudinarian_N : N;
-fun latrine_N : N;
-fun latter_A : A;
-fun latter_day_A : A;
-fun lattice_N : N;
-fun latticed_A : A;
-fun laud_V2 : V2;
-fun laudable_A : A;
-fun laudanum_N : N;
-fun laudatory_A : A;
-fun laugh_N : N;
-fun laugh_V : V;
-fun laugh_V2 : V2;
-fun laughable_A : A;
-fun laughing_A : A;
-fun laughing_gas_N : N;
-fun laughing_stock_N : N;
-fun laughter_N : N;
-fun launch_N : N;
-fun launch_V : V;
-fun launch_V2 : V2;
-fun launcher_N : N;
-fun launching_pad_N : N;
-fun launching_site_N : N;
-fun launder_V : V;
-fun launder_V2 : V2;
-fun launderette_N : N;
-fun laundress_N : N;
-fun laundry_N : N;
-fun laundryman_N : N;
-fun laundrywoman_N : N;
-fun laura_PN : PN;
-fun laureate_A : A;
-fun laureate_N : N;
-fun laurel_N : N;
-fun laurelled_A : A;
-fun laurence_PN : PN;
-fun lausanne_PN : PN;
-fun lav_N : N;
-fun lava_N : N;
-fun lavatory_N : N;
-fun lave_V2 : V2;
-fun lavender_N : N;
-fun lavish_A : A;
-fun lavish_V2 : V2;
-fun law_N : N;
-fun law_abiding_A : A;
-fun law_officer_N : N;
-fun lawbreaker_N : N;
-fun lawful_A : A;
-fun lawgiver_N : N;
-fun lawless_A : A;
-fun lawlessness_N : N;
-fun lawmaker_N : N;
-fun lawmaking_N : N;
-fun lawn_N : N;
-fun lawn_mower_N : N;
-fun lawrence_PN : PN;
-fun lawyer_N : N;
-fun lax_A : A;
-fun laxative_A : A;
-fun laxative_N : N;
-fun laxity_N : N;
-fun lay_A : A;
-fun lay_N : N;
-fun lay_V : V;
-fun lay_V2 : V2;
-fun lay_figure_N : N;
-fun lay_off_N : N;
-fun lay_out_N : N;
-fun layabout_N : N;
-fun layby_N : N;
-fun layer_N : N;
-fun layer_V2 : V2;
-fun layer_cake_N : N;
-fun layette_N : N;
-fun layman_N : N;
-fun layover_N : N;
-fun lazar_N : N;
-fun lazaret_N : N;
-fun lazarette_N : N;
-fun lazaretto_N : N;
-fun lazarus_N : N;
-fun lazarus_PN : PN;
-fun laze_V : V;
-fun laze_V2 : V2;
-fun lazily_Adv : Adv;
-fun laziness_N : N;
-fun lazy_A : A;
-fun lazybones_N : N;
-fun lb_N : N;
-fun lbs_N : N;
-fun lbw_PN : PN;
-fun le_havre_PN : PN;
-fun le_mans_PN : PN;
-fun lea_N : N;
-fun leach_V2 : V2;
-fun lead_N : N;
-fun lead_V : V;
-fun lead_V2 : V2;
-fun lead_in_N : N;
-fun lead_ore_N : N;
-fun leaded_A : A;
-fun leaden_A : A;
-fun leader_N : N;
-fun leaderless_A : A;
-fun leadership_N : N;
-fun leading_A : A;
-fun leading_N : N;
-fun leading_rein_N : N;
-fun leaf_N : N;
-fun leaf_V : V;
-fun leaf_bud_N : N;
-fun leaf_mould_N : N;
-fun leafless_A : A;
-fun leaflet_N : N;
-fun leafy_A : A;
-fun league_N : N;
-fun league_V : V;
-fun league_V2 : V2;
-fun leak_N : N;
-fun leak_V : V;
-fun leak_V2 : V2;
-fun leakage_N : N;
-fun leaky_A : A;
-fun leal_A : A;
-fun leamington_spa_PN : PN;
-fun lean_A : A;
-fun lean_N : N;
-fun lean_V : V;
-fun lean_V2 : V2;
-fun lean_to_N : N;
-fun leaning_N : N;
-fun leanness_N : N;
-fun leap_N : N;
-fun leap_V : V;
-fun leap_V2 : V2;
-fun leap_year_N : N;
-fun leapfrog_N : N;
-fun leapfrog_V2 : V2;
-fun learn_V : V;
-fun learn_V2 : V2;
-fun learned_A : A;
-fun learner_N : N;
-fun learning_N : N;
-fun lease_N : N;
-fun lease_V2 : V2;
-fun lease_lend_N : N;
-fun leasehold_A : A;
-fun leasehold_N : N;
-fun leaseholder_N : N;
-fun leash_N : N;
-fun least_A : A;
-fun least_Adv : Adv;
-fun least_N : N;
-fun leastways_Adv : Adv;
-fun leastwise_Adv : Adv;
-fun leather_N : N;
-fun leather_jacket_N : N;
-fun leatherette_N : N;
-fun leatherhead_PN : PN;
-fun leatherneck_N : N;
-fun leatherwork_N : N;
-fun leathery_A : A;
-fun leave_N : N;
-fun leave_V : V;
-fun leave_V2 : V2;
-fun leave_taking_N : N;
-fun leaven_N : N;
-fun leaven_V2 : V2;
-fun lebanese_A : A;
-fun lebanese_N : N;
-fun lebanon_PN : PN;
-fun lecher_N : N;
-fun lecherous_A : A;
-fun lechery_N : N;
-fun lectern_N : N;
-fun lecture_N : N;
-fun lecture_V : V;
-fun lecture_V2 : V2;
-fun lecturer_N : N;
-fun lectureship_N : N;
-fun ledge_N : N;
-fun ledger_N : N;
-fun lee_N : N;
-fun leech_N : N;
-fun leeds_PN : PN;
-fun leek_N : N;
-fun leek_PN : PN;
-fun leer_N : N;
-fun leer_V : V;
-fun leeward_A : A;
-fun leeward_Adv : Adv;
-fun leeway_N : N;
-fun left_A : A;
-fun left_Adv : Adv;
-fun left_N : N;
-fun left_hand_A : A;
-fun left_handed_A : A;
-fun left_wing_N : N;
-fun left_winger_N : N;
-fun leftist_N : N;
-fun leg_N : N;
-fun leg_pull_N : N;
-fun leg_pulling_N : N;
-fun legacy_N : N;
-fun legal_A : A;
-fun legalism_N : N;
-fun legalistic_A : A;
-fun legality_N : N;
-fun legalization_N : N;
-fun legalize_V2 : V2;
-fun legate_N : N;
-fun legatee_N : N;
-fun legation_N : N;
-fun legato_A : A;
-fun legato_Adv : Adv;
-fun legend_N : N;
-fun legendary_A : A;
-fun leger_line_N : N;
-fun legerdemain_N : N;
-fun legged_A : A;
-fun legging_N : N;
-fun leggy_A : A;
-fun leghorn_N : N;
-fun legibility_N : N;
-fun legible_A : A;
-fun legion_N : N;
-fun legionary_N : N;
-fun legislate_V : V;
-fun legislation_N : N;
-fun legislative_A : A;
-fun legislator_N : N;
-fun legislature_N : N;
-fun legitimacy_N : N;
-fun legitimate_A : A;
-fun legitimatize_V2 : V2;
-fun legless_A : A;
-fun leguminous_A : A;
-fun lei_N : N;
-fun leicester_PN : PN;
-fun leicestershire_PN : PN;
-fun leiden_PN : PN;
-fun leigh_PN : PN;
-fun leighton_linslade_PN : PN;
-fun leinster_PN : PN;
-fun leipzig_PN : PN;
-fun leisure_N : N;
-fun leisured_A : A;
-fun leisurely_A : A;
-fun leisurely_Adv : Adv;
-fun leitrim_PN : PN;
-fun leix_PN : PN;
-fun lemming_N : N;
-fun lemon_N : N;
-fun lemonade_N : N;
-fun lemur_N : N;
-fun len_PN : PN;
-fun lend_V2 : V2;
-fun lender_N : N;
-fun lending_library_N : N;
-fun length_N : N;
-fun lengthen_V : V;
-fun lengthen_V2 : V2;
-fun lengthily_Adv : Adv;
-fun lengthways_A : A;
-fun lengthways_Adv : Adv;
-fun lengthwise_Adv : Adv;
-fun lengthy_A : A;
-fun lenience_N : N;
-fun leniency_N : N;
-fun lenient_A : A;
-fun leningrad_PN : PN;
-fun lenity_N : N;
-fun lenny_PN : PN;
-fun lens_N : N;
-fun lens_PN : PN;
-fun lent_N : N;
-fun lent_PN : PN;
-fun lenten_A : A;
-fun lentil_N : N;
-fun lento_A : A;
-fun lento_Adv : Adv;
-fun leo_PN : PN;
-fun leominster_PN : PN;
-fun leon_PN : PN;
-fun leonard_PN : PN;
-fun leonine_A : A;
-fun leopard_N : N;
-fun leopardess_N : N;
-fun leper_N : N;
-fun leprechaun_N : N;
-fun leprosy_N : N;
-fun leprous_A : A;
-fun lerwick_PN : PN;
-fun les_PN : PN;
-fun lesbian_N : N;
-fun lesbianism_N : N;
-fun lese_majesty_N : N;
-fun lesion_N : N;
-fun lesley_PN : PN;
-fun leslie_PN : PN;
-fun lesotho_PN : PN;
-fun less_A : A;
-fun less_Adv : Adv;
-fun less_N : N;
-fun lessee_N : N;
-fun lessen_V : V;
-fun lessen_V2 : V2;
-fun lesser_A : A;
-fun lesson_N : N;
-fun lessor_N : N;
-fun let_N : N;
-fun let_V : V;
-fun let_V2 : V2;
-fun let_down_N : N;
-fun let_up_N : N;
-fun letchworth_PN : PN;
-fun lethal_A : A;
-fun lethargic_A : A;
-fun lethargically_Adv : Adv;
-fun lethargy_N : N;
-fun lethe_PN : PN;
-fun letter_N : N;
-fun letter_box_N : N;
-fun letter_card_N : N;
-fun letter_case_N : N;
-fun lettered_A : A;
-fun letterhead_N : N;
-fun lettering_N : N;
-fun letterpress_N : N;
-fun letting_N : N;
-fun lettuce_N : N;
-fun leucocyte_N : N;
-fun leukaemia_N : N;
-fun levant_PN : PN;
-fun levant_V : V;
-fun levantine_A : A;
-fun levantine_N : N;
-fun levee_N : N;
-fun level_A : A;
-fun level_N : N;
-fun level_V : V;
-fun level_V2 : V2;
-fun level_headed_A : A;
-fun leveller_N : N;
-fun leven_PN : PN;
-fun lever_N : N;
-fun lever_V2 : V2;
-fun leverage_N : N;
-fun leveret_N : N;
-fun leverkusen_PN : PN;
-fun leviathan_N : N;
-fun levitate_V : V;
-fun levitate_V2 : V2;
-fun levitation_N : N;
-fun levity_N : N;
-fun levy_N : N;
-fun levy_V : V;
-fun levy_V2 : V2;
-fun lewd_A : A;
-fun lewdness_N : N;
-fun lewes_PN : PN;
-fun lewis_PN : PN;
-fun lewisham_PN : PN;
-fun lexical_A : A;
-fun lexicographer_N : N;
-fun lexicography_N : N;
-fun lexicon_N : N;
-fun lexis_N : N;
-fun ley_N : N;
-fun leyland_PN : PN;
-fun liability_N : N;
-fun liable_A : A;
-fun liaise_V : V;
-fun liaison_N : N;
-fun liana_N : N;
-fun liar_N : N;
-fun lib_N : N;
-fun lib_PN : PN;
-fun libation_N : N;
-fun libel_N : N;
-fun libel_V2 : V2;
-fun libellous_A : A;
-fun liberal_A : A;
-fun liberal_N : N;
-fun liberalism_N : N;
-fun liberality_N : N;
-fun liberalization_N : N;
-fun liberalize_V2 : V2;
-fun liberate_V2 : V2;
-fun liberation_N : N;
-fun liberator_N : N;
-fun liberia_PN : PN;
-fun liberian_A : A;
-fun liberian_N : N;
-fun libertine_N : N;
-fun liberty_N : N;
-fun libidinous_A : A;
-fun libido_N : N;
-fun libra_PN : PN;
-fun librarian_N : N;
-fun librarianship_N : N;
-fun library_N : N;
-fun librettist_N : N;
-fun libretto_N : N;
-fun libya_PN : PN;
-fun libyan_A : A;
-fun libyan_N : N;
-fun licence_N : N;
-fun licence_V2 : V2;
-fun license_V2 : V2;
-fun licensee_N : N;
-fun licentiate_N : N;
-fun licentious_A : A;
-fun licentiousness_N : N;
-fun lichee_N : N;
-fun lichen_N : N;
-fun lichfield_PN : PN;
-fun lichgate_N : N;
-fun lichi_N : N;
-fun licit_A : A;
-fun lick_N : N;
-fun lick_V : V;
-fun lick_V2 : V2;
-fun licking_N : N;
-fun lid_N : N;
-fun lidless_A : A;
-fun lido_N : N;
-fun lie_N : N;
-fun lie_V : V;
-fun lie_abed_N : N;
-fun lie_detector_N : N;
-fun lie_in_N : N;
-fun liechtenstein_PN : PN;
-fun liechtensteiner_A : A;
-fun liechtensteiner_N : N;
-fun lied_N : N;
-fun lieder_singer_N : N;
-fun lief_Adv : Adv;
-fun liege_A : A;
-fun liege_N : N;
-fun liege_PN : PN;
-fun liegeman_N : N;
-fun lien_N : N;
-fun lieu_N : N;
-fun lieutenancy_N : N;
-fun lieutenant_N : N;
-fun life_N : N;
-fun life_buoy_N : N;
-fun life_giving_A : A;
-fun life_jacket_N : N;
-fun life_office_N : N;
-fun life_preserver_N : N;
-fun life_raft_N : N;
-fun life_saver_N : N;
-fun life_size_A : A;
-fun life_sized_A : A;
-fun life_span_N : N;
-fun life_work_N : N;
-fun lifebelt_N : N;
-fun lifeblood_N : N;
-fun lifeboat_N : N;
-fun lifebuoy_N : N;
-fun lifeguard_N : N;
-fun lifeless_A : A;
-fun lifelike_A : A;
-fun lifeline_N : N;
-fun lifelong_A : A;
-fun lifer_N : N;
-fun lifetime_N : N;
-fun lift_N : N;
-fun lift_V : V;
-fun lift_V2 : V2;
-fun lift_off_N : N;
-fun liftman_N : N;
-fun ligament_N : N;
-fun ligature_N : N;
-fun light_A : A;
-fun light_Adv : Adv;
-fun light_N : N;
-fun light_V : V;
-fun light_V2 : V2;
-fun light_armed_A : A;
-fun light_coloured_A : A;
-fun light_fingered_A : A;
-fun light_handed_A : A;
-fun light_headed_A : A;
-fun light_headedness_N : N;
-fun light_hearted_A : A;
-fun light_heartedness_N : N;
-fun light_heavyweight_N : N;
-fun light_minded_A : A;
-fun light_mindedness_N : N;
-fun light_o'_love_N : N;
-fun lighten_V : V;
-fun lighten_V2 : V2;
-fun lighter_N : N;
-fun lighter_V2 : V2;
-fun lighterage_N : N;
-fun lighthouse_N : N;
-fun lighting_up_A : A;
-fun lightness_N : N;
-fun lightning_N : N;
-fun lightning_conductor_N : N;
-fun lightning_rod_N : N;
-fun lightship_N : N;
-fun lightsome_A : A;
-fun lightsomeness_N : N;
-fun lightweight_A : A;
-fun lightweight_N : N;
-fun ligneous_A : A;
-fun lignite_N : N;
-fun likable_A : A;
-fun like_A : A;
-fun like_Adv : Adv;
-fun like_N : N;
-fun like_V2 : V2;
-fun like_minded_A : A;
-fun likeable_A : A;
-fun likelihood_N : N;
-fun likely_A : A;
-fun liken_V2 : V2;
-fun likeness_N : N;
-fun likewise_Adv : Adv;
-fun liking_N : N;
-fun lilac_N : N;
-fun lilian_PN : PN;
-fun lille_PN : PN;
-fun lilliputian_A : A;
-fun lilliputian_N : N;
-fun lilt_N : N;
-fun lilt_V : V;
-fun lilt_V2 : V2;
-fun lily_N : N;
-fun lily_PN : PN;
-fun lily_livered_A : A;
-fun lily_white_A : A;
-fun lima_PN : PN;
-fun limb_N : N;
-fun limbed_A : A;
-fun limber_A : A;
-fun limber_V : V;
-fun limber_V2 : V2;
-fun limbless_A : A;
-fun limbo_N : N;
-fun lime_N : N;
-fun lime_V2 : V2;
-fun lime_tree_N : N;
-fun limejuice_N : N;
-fun limekiln_N : N;
-fun limelight_N : N;
-fun limerick_N : N;
-fun limerick_PN : PN;
-fun limestone_N : N;
-fun limey_N : N;
-fun limit_N : N;
-fun limit_V2 : V2;
-fun limitation_N : N;
-fun limitless_A : A;
-fun limn_V2 : V2;
-fun limoges_PN : PN;
-fun limousine_N : N;
-fun limp_A : A;
-fun limp_N : N;
-fun limp_V : V;
-fun limpet_N : N;
-fun limpid_A : A;
-fun limpidity_N : N;
-fun limpness_N : N;
-fun linchpin_N : N;
-fun lincoln_PN : PN;
-fun lincolnshire_PN : PN;
-fun linda_PN : PN;
-fun linden_N : N;
-fun linden_tree_N : N;
-fun line_N : N;
-fun line_V : V;
-fun line_V2 : V2;
-fun line_shooter_N : N;
-fun line_shooting_N : N;
-fun line_up_N : N;
-fun lineage_N : N;
-fun lineal_A : A;
-fun lineament_N : N;
-fun linear_A : A;
-fun lineman_N : N;
-fun linen_N : N;
-fun linen_draper_N : N;
-fun liner_N : N;
-fun liner_train_N : N;
-fun linesman_N : N;
-fun ling_N : N;
-fun lingam_N : N;
-fun linger_V : V;
-fun lingerer_N : N;
-fun lingerie_N : N;
-fun lingering_A : A;
-fun lingo_N : N;
-fun lingua_franca_N : N;
-fun lingual_A : A;
-fun linguist_N : N;
-fun linguistic_A : A;
-fun linguistically_Adv : Adv;
-fun linguistics_N : N;
-fun liniment_N : N;
-fun lining_N : N;
-fun link_N : N;
-fun link_V : V;
-fun link_V2 : V2;
-fun link_up_N : N;
-fun linkage_N : N;
-fun linkboy_N : N;
-fun linkman_N : N;
-fun links_N : N;
-fun linlithgow_PN : PN;
-fun linnet_N : N;
-fun lino_N : N;
-fun linocut_N : N;
-fun linoleum_N : N;
-fun linotype_N : N;
-fun linseed_N : N;
-fun linsey_woolsey_N : N;
-fun lint_N : N;
-fun lintel_N : N;
-fun linwood_PN : PN;
-fun linz_PN : PN;
-fun lion_N : N;
-fun lion_hearted_A : A;
-fun lion_hunter_N : N;
-fun lionel_PN : PN;
-fun lioness_N : N;
-fun lionize_V2 : V2;
-fun lip_N : N;
-fun lip_read_V2 : V2;
-fun lip_reading_N : N;
-fun lipped_A : A;
-fun lipstick_N : N;
-fun liquefaction_N : N;
-fun liquefy_V : V;
-fun liquefy_V2 : V2;
-fun liquescent_A : A;
-fun liqueur_N : N;
-fun liquid_A : A;
-fun liquid_N : N;
-fun liquidate_V : V;
-fun liquidate_V2 : V2;
-fun liquidation_N : N;
-fun liquidator_N : N;
-fun liquidity_N : N;
-fun liquidize_V2 : V2;
-fun liquidizer_N : N;
-fun liquor_N : N;
-fun liquorice_N : N;
-fun lira_N : N;
-fun lisa_PN : PN;
-fun lisbon_PN : PN;
-fun liskeard_PN : PN;
-fun lisle_N : N;
-fun lisp_N : N;
-fun lisp_V : V;
-fun lisp_V2 : V2;
-fun lispingly_Adv : Adv;
-fun lissom_A : A;
-fun lissome_A : A;
-fun lissomness_N : N;
-fun list_N : N;
-fun list_V : V;
-fun list_V2 : V2;
-fun list_price_N : N;
-fun listen_V : V;
-fun listener_N : N;
-fun listing_N : N;
-fun listless_A : A;
-fun listlessness_N : N;
-fun litany_N : N;
-fun litchee_N : N;
-fun litchi_N : N;
-fun literacy_N : N;
-fun literal_A : A;
-fun literal_N : N;
-fun literary_A : A;
-fun literate_A : A;
-fun literate_N : N;
-fun literature_N : N;
-fun lithe_A : A;
-fun lithograph_N : N;
-fun lithograph_V : V;
-fun lithograph_V2 : V2;
-fun lithographic_A : A;
-fun lithography_N : N;
-fun litigant_N : N;
-fun litigate_V : V;
-fun litigate_V2 : V2;
-fun litigation_N : N;
-fun litigious_A : A;
-fun litmus_N : N;
-fun litmus_paper_N : N;
-fun litotes_N : N;
-fun litre_N : N;
-fun litter_N : N;
-fun litter_V : V;
-fun litter_V2 : V2;
-fun litter_basket_N : N;
-fun litter_lout_N : N;
-fun litterbin_N : N;
-fun little_A : A;
-fun little_Adv : Adv;
-fun little_N : N;
-fun littlehampton_PN : PN;
-fun littleness_N : N;
-fun littoral_A : A;
-fun littoral_N : N;
-fun liturgical_A : A;
-fun liturgy_N : N;
-fun livable_A : A;
-fun live_A : A;
-fun live_Adv : Adv;
-fun live_V : V;
-fun live_V2 : V2;
-fun live_birth_N : N;
-fun liveable_A : A;
-fun livelihood_N : N;
-fun liveliness_N : N;
-fun livelong_A : A;
-fun lively_A : A;
-fun liven_V : V;
-fun liven_V2 : V2;
-fun liver_N : N;
-fun liveried_A : A;
-fun liverish_A : A;
-fun liverpool_PN : PN;
-fun liverpudlian_A : A;
-fun liverpudlian_N : N;
-fun liverwurst_N : N;
-fun livery_A : A;
-fun livery_N : N;
-fun liveryman_N : N;
-fun livestock_N : N;
-fun livid_A : A;
-fun living_A : A;
-fun living_N : N;
-fun living_room_N : N;
-fun living_space_N : N;
-fun livingston_PN : PN;
-fun livorno_PN : PN;
-fun liz_PN : PN;
-fun liza_PN : PN;
-fun lizard_N : N;
-fun lizzy_PN : PN;
-fun ljubljana_PN : PN;
-fun ll_N : N;
-fun llama_N : N;
-fun llandudno_PN : PN;
-fun llanelli_PN : PN;
-fun llangollen_PN : PN;
-fun llantrisant_PN : PN;
-fun llantwit_major_PN : PN;
-fun llb_N : N;
-fun lloyd's_PN : PN;
-fun load_N : N;
-fun load_V : V;
-fun load_V2 : V2;
-fun load_line_N : N;
-fun load_shedding_N : N;
-fun loaded_A : A;
-fun loader_N : N;
-fun loading_N : N;
-fun loadstar_N : N;
-fun loadstone_N : N;
-fun loaf_N : N;
-fun loaf_V : V;
-fun loaf_V2 : V2;
-fun loaf_sugar_N : N;
-fun loafer_N : N;
-fun loam_N : N;
-fun loamy_A : A;
-fun loan_N : N;
-fun loan_V2 : V2;
-fun loan_collection_N : N;
-fun loan_office_N : N;
-fun loanhead_PN : PN;
-fun loanword_N : N;
-fun loath_A : A;
-fun loathe_V2 : V2;
-fun loathing_N : N;
-fun loathly_A : A;
-fun loathsome_A : A;
-fun lob_N : N;
-fun lob_V : V;
-fun lob_V2 : V2;
-fun lobby_N : N;
-fun lobby_V : V;
-fun lobby_V2 : V2;
-fun lobbyist_N : N;
-fun lobe_N : N;
-fun lobed_A : A;
-fun lobster_N : N;
-fun lobster_pot_N : N;
-fun loc_cit_PN : PN;
-fun local_A : A;
-fun local_N : N;
-fun locale_N : N;
-fun localism_N : N;
-fun locality_N : N;
-fun localization_N : N;
-fun localize_V2 : V2;
-fun locate_V2 : V2;
-fun location_N : N;
-fun loch_N : N;
-fun lochgelly_PN : PN;
-fun lock_N : N;
-fun lock_V : V;
-fun lock_V2 : V2;
-fun lock_gate_N : N;
-fun lock_keeper_N : N;
-fun locker_N : N;
-fun locket_N : N;
-fun lockjaw_N : N;
-fun locknut_N : N;
-fun lockout_N : N;
-fun locksmith_N : N;
-fun lockstitch_N : N;
-fun lockup_A : A;
-fun lockup_N : N;
-fun loco_A : A;
-fun locomotion_N : N;
-fun locomotive_A : A;
-fun locomotive_N : N;
-fun locum_N : N;
-fun locum_tenens_N : N;
-fun locus_N : N;
-fun locus_classicus_N : N;
-fun locust_N : N;
-fun locust_tree_N : N;
-fun locution_N : N;
-fun lode_N : N;
-fun lodestar_N : N;
-fun lodestone_N : N;
-fun lodge_N : N;
-fun lodge_V : V;
-fun lodge_V2 : V2;
-fun lodgement_N : N;
-fun lodger_N : N;
-fun lodging_N : N;
-fun lodging_house_N : N;
-fun lodgment_N : N;
-fun lodz_PN : PN;
-fun loess_N : N;
-fun loft_N : N;
-fun loft_V2 : V2;
-fun loftily_Adv : Adv;
-fun loftiness_N : N;
-fun loftus_PN : PN;
-fun lofty_A : A;
-fun log_N : N;
-fun log_V2 : V2;
-fun log_cabin_N : N;
-fun log_jam_N : N;
-fun log_rolling_N : N;
-fun loganberry_N : N;
-fun logarithm_N : N;
-fun logarithmic_A : A;
-fun logarithmically_Adv : Adv;
-fun logbook_N : N;
-fun loggerheads_N : N;
-fun loggia_N : N;
-fun logging_N : N;
-fun logic_N : N;
-fun logical_A : A;
-fun logicality_N : N;
-fun logician_N : N;
-fun logistics_N : N;
-fun loin_N : N;
-fun loincloth_N : N;
-fun lois_PN : PN;
-fun loiter_V : V;
-fun loiter_V2 : V2;
-fun loiterer_N : N;
-fun loll_V : V;
-fun loll_V2 : V2;
-fun lollipop_N : N;
-fun lolly_N : N;
-fun london_PN : PN;
-fun londonderry_PN : PN;
-fun londoner_N : N;
-fun lone_A : A;
-fun loneliness_N : N;
-fun lonely_A : A;
-fun lonesome_A : A;
-fun long_A : A;
-fun long_Adv : Adv;
-fun long_N : N;
-fun long_V : V;
-fun long_distance_A : A;
-fun long_drawn_out_A : A;
-fun long_eaton_PN : PN;
-fun long_haired_A : A;
-fun long_headed_A : A;
-fun long_lived_A : A;
-fun long_play_A : A;
-fun long_playing_A : A;
-fun long_range_A : A;
-fun long_sighted_A : A;
-fun long_standing_A : A;
-fun long_suffering_A : A;
-fun long_term_A : A;
-fun long_time_A : A;
-fun long_winded_A : A;
-fun long_windedness_N : N;
-fun longboat_N : N;
-fun longbow_N : N;
-fun longer_Adv : Adv;
-fun longest_Adv : Adv;
-fun longevity_N : N;
-fun longhand_N : N;
-fun longing_A : A;
-fun longing_N : N;
-fun longish_A : A;
-fun longitude_N : N;
-fun longitudinal_A : A;
-fun longridge_PN : PN;
-fun longshoreman_N : N;
-fun longton_PN : PN;
-fun longways_Adv : Adv;
-fun longwise_Adv : Adv;
-fun loo_N : N;
-fun loofa_N : N;
-fun loofah_N : N;
-fun look_N : N;
-fun look_V : V;
-fun look_V2 : V2;
-fun look_over_N : N;
-fun looker_N : N;
-fun looker_on_N : N;
-fun looking_glass_N : N;
-fun lookout_N : N;
-fun loom_N : N;
-fun loom_V : V;
-fun loon_N : N;
-fun loony_A : A;
-fun loony_N : N;
-fun loonybin_N : N;
-fun loop_N : N;
-fun loop_V : V;
-fun loop_V2 : V2;
-fun loop_line_N : N;
-fun loophole_N : N;
-fun loopy_A : A;
-fun loose_A : A;
-fun loose_V2 : V2;
-fun loose_leaf_A : A;
-fun loosen_V : V;
-fun loosen_V2 : V2;
-fun loot_N : N;
-fun loot_V : V;
-fun loot_V2 : V2;
-fun looter_N : N;
-fun lop_V : V;
-fun lop_V2 : V2;
-fun lop_eared_A : A;
-fun lope_N : N;
-fun lope_V : V;
-fun lopsided_A : A;
-fun loquacious_A : A;
-fun loquaciousness_N : N;
-fun loquacity_N : N;
-fun loquat_N : N;
-fun lord_N : N;
-fun lord_V2 : V2;
-fun lordless_A : A;
-fun lordliness_N : N;
-fun lordly_A : A;
-fun lordship_N : N;
-fun lore_N : N;
-fun lorgnette_N : N;
-fun lorn_A : A;
-fun lorna_PN : PN;
-fun lorry_N : N;
-fun los_angeles_PN : PN;
-fun lose_V : V;
-fun lose_V2 : V2;
-fun loser_N : N;
-fun loss_N : N;
-fun loss_leader_N : N;
-fun lossiemouth_PN : PN;
-fun lot_N : N;
-fun loth_A : A;
-fun lothian_PN : PN;
-fun lotion_N : N;
-fun lottery_N : N;
-fun lotto_N : N;
-fun lotus_N : N;
-fun lotus_eater_N : N;
-fun loud_A : A;
-fun loud_Adv : Adv;
-fun loud_hailer_N : N;
-fun loudness_N : N;
-fun loudspeaker_N : N;
-fun lough_N : N;
-fun loughborough_PN : PN;
-fun louis_PN : PN;
-fun louise_PN : PN;
-fun louisiana_PN : PN;
-fun louisville_PN : PN;
-fun lounge_N : N;
-fun lounge_V : V;
-fun lounge_chair_N : N;
-fun lounge_lizard_N : N;
-fun lounge_suit_N : N;
-fun lounger_N : N;
-fun lour_V : V;
-fun louringly_Adv : Adv;
-fun louse_N : N;
-fun lousy_A : A;
-fun lout_N : N;
-fun louth_PN : PN;
-fun loutish_A : A;
-fun louvered_A : A;
-fun louvre_N : N;
-fun lovable_A : A;
-fun love_N : N;
-fun love_V2 : V2;
-fun love_affair_N : N;
-fun love_child_N : N;
-fun love_feast_N : N;
-fun love_knot_N : N;
-fun love_letter_N : N;
-fun love_match_N : N;
-fun love_philtre_N : N;
-fun love_potion_N : N;
-fun love_seat_N : N;
-fun love_song_N : N;
-fun love_story_N : N;
-fun love_token_N : N;
-fun lovebird_N : N;
-fun loveless_A : A;
-fun loveliness_N : N;
-fun lovelorn_A : A;
-fun lovely_A : A;
-fun lovemaking_N : N;
-fun lover_N : N;
-fun loverlike_A : A;
-fun lovesick_A : A;
-fun loving_A : A;
-fun loving_cup_N : N;
-fun loving_kindness_N : N;
-fun low_A : A;
-fun low_Adv : Adv;
-fun low_N : N;
-fun low_V : V;
-fun low_down_A : A;
-fun low_keyed_A : A;
-fun low_pitched_A : A;
-fun low_relief_N : N;
-fun low_spirited_A : A;
-fun lowborn_A : A;
-fun lowbred_A : A;
-fun lowbrow_A : A;
-fun lowbrow_N : N;
-fun lower_Adv : Adv;
-fun lower_V : V;
-fun lower_V2 : V2;
-fun lowermost_A : A;
-fun lowest_Adv : Adv;
-fun lowestoft_PN : PN;
-fun lowlander_N : N;
-fun lowliness_N : N;
-fun lowly_A : A;
-fun lowness_N : N;
-fun loyal_A : A;
-fun loyalist_N : N;
-fun loyalty_N : N;
-fun loyang_PN : PN;
-fun lozenge_N : N;
-fun lp_N : N;
-fun lps_N : N;
-fun lsd_N : N;
-fun lt_PN : PN;
-fun ltd_PN : PN;
-fun lubber_N : N;
-fun lubberly_A : A;
-fun lubeck_PN : PN;
-fun lubricant_N : N;
-fun lubricate_V2 : V2;
-fun lubrication_N : N;
-fun lucent_A : A;
-fun lucerne_N : N;
-fun lucid_A : A;
-fun lucidity_N : N;
-fun lucifer_N : N;
-fun luck_N : N;
-fun luckily_Adv : Adv;
-fun luckless_A : A;
-fun lucknow_PN : PN;
-fun lucky_A : A;
-fun lucrative_A : A;
-fun lucre_N : N;
-fun lucy_PN : PN;
-fun luddite_N : N;
-fun ludicrous_A : A;
-fun ludlow_PN : PN;
-fun ludo_N : N;
-fun ludwigshafen_PN : PN;
-fun luff_V : V;
-fun luff_V2 : V2;
-fun lug_N : N;
-fun lug_V2 : V2;
-fun luge_N : N;
-fun luggage_N : N;
-fun luggage_carrier_N : N;
-fun luggage_rack_N : N;
-fun luggage_van_N : N;
-fun lugger_N : N;
-fun lugsail_N : N;
-fun lugubrious_A : A;
-fun lugubriousness_N : N;
-fun luke_PN : PN;
-fun lukewarm_A : A;
-fun lukewarmness_N : N;
-fun lull_N : N;
-fun lull_V : V;
-fun lull_V2 : V2;
-fun lullaby_N : N;
-fun lumbago_N : N;
-fun lumbar_A : A;
-fun lumber_N : N;
-fun lumber_V : V;
-fun lumber_V2 : V2;
-fun lumber_mill_N : N;
-fun lumberjack_N : N;
-fun lumberman_N : N;
-fun lumberroom_N : N;
-fun lumberyard_N : N;
-fun luminary_N : N;
-fun luminosity_N : N;
-fun luminous_A : A;
-fun lump_N : N;
-fun lump_V2 : V2;
-fun lumpish_A : A;
-fun lumpy_A : A;
-fun lunacy_N : N;
-fun lunar_A : A;
-fun lunatic_N : N;
-fun lunch_N : N;
-fun lunch_V : V;
-fun lunch_V2 : V2;
-fun luncheon_N : N;
-fun lunchtime_N : N;
-fun lung_N : N;
-fun lung_power_N : N;
-fun lunge_N : N;
-fun lunge_V : V;
-fun lupin_N : N;
-fun lurch_N : N;
-fun lurch_V : V;
-fun lurcher_N : N;
-fun lure_N : N;
-fun lure_V2 : V2;
-fun lurid_A : A;
-fun luridness_N : N;
-fun lurk_V : V;
-fun lurking_place_N : N;
-fun luscious_A : A;
-fun lusciousness_N : N;
-fun lush_A : A;
-fun lush_N : N;
-fun lust_N : N;
-fun lust_V : V;
-fun lustful_A : A;
-fun lustily_Adv : Adv;
-fun lustre_N : N;
-fun lustrous_A : A;
-fun lusty_A : A;
-fun luta_PN : PN;
-fun lutanist_N : N;
-fun lute_N : N;
-fun lutenist_N : N;
-fun lutheran_A : A;
-fun lutheran_N : N;
-fun luton_PN : PN;
-fun luxe_A : A;
-fun luxembourg_PN : PN;
-fun luxemburg_PN : PN;
-fun luxemburger_A : A;
-fun luxemburger_N : N;
-fun luxuriance_N : N;
-fun luxuriant_A : A;
-fun luxuriate_V : V;
-fun luxurious_A : A;
-fun luxury_N : N;
-fun lvov_PN : PN;
-fun lyallpur_PN : PN;
-fun lyceum_N : N;
-fun lychee_N : N;
-fun lychgate_N : N;
-fun lycee_N : N;
-fun lydia_PN : PN;
-fun lydney_PN : PN;
-fun lye_N : N;
-fun lying_in_A : A;
-fun lymington_PN : PN;
-fun lymm_PN : PN;
-fun lymph_N : N;
-fun lymphatic_A : A;
-fun lynch_N : N;
-fun lynch_V2 : V2;
-fun lynchpin_N : N;
-fun lynn_PN : PN;
-fun lynne_PN : PN;
-fun lynx_N : N;
-fun lynx_eyed_A : A;
-fun lyons_PN : PN;
-fun lyre_N : N;
-fun lyre_bird_N : N;
-fun lyric_A : A;
-fun lyric_N : N;
-fun lyrical_A : A;
-fun lyricism_N : N;
-fun lyricist_N : N;
-fun lysol_N : N;
-fun lytham_PN : PN;
-fun lytham_st_annes_PN : PN;
-fun ma'am_N : N;
-fun ma_N : N;
-fun maastricht_PN : PN;
-fun mabel_PN : PN;
-fun mac_N : N;
-fun macabre_A : A;
-fun macadam_N : N;
-fun macadamize_V2 : V2;
-fun macaroni_N : N;
-fun macaroon_N : N;
-fun macaw_N : N;
-fun macclesfield_PN : PN;
-fun mace_N : N;
-fun mace_bearer_N : N;
-fun macedonian_A : A;
-fun macedonian_N : N;
-fun macerate_V : V;
-fun macerate_V2 : V2;
-fun mach_PN : PN;
-fun machete_N : N;
-fun machiavellian_A : A;
-fun machination_N : N;
-fun machine_N : N;
-fun machine_V2 : V2;
-fun machine_gun_N : N;
-fun machine_made_A : A;
-fun machinery_N : N;
-fun machinist_N : N;
-fun machismo_N : N;
-fun mackerel_N : N;
-fun mackintosh_N : N;
-fun macrobiotic_A : A;
-fun macrocosm_N : N;
-fun mad_A : A;
-fun madagascan_A : A;
-fun madagascan_N : N;
-fun madagascar_PN : PN;
-fun madam_N : N;
-fun madame_N : N;
-fun madcap_N : N;
-fun madden_V2 : V2;
-fun madder_N : N;
-fun maddy_PN : PN;
-fun madeira_N : N;
-fun madeleine_PN : PN;
-fun mademoiselle_N : N;
-fun madge_PN : PN;
-fun madhouse_N : N;
-fun madman_N : N;
-fun madness_N : N;
-fun madonna_N : N;
-fun madras_PN : PN;
-fun madrid_PN : PN;
-fun madrigal_N : N;
-fun madurai_PN : PN;
-fun madwoman_N : N;
-fun maecenas_PN : PN;
-fun maelstrom_N : N;
-fun maenad_N : N;
-fun maesteg_PN : PN;
-fun maestro_N : N;
-fun maffick_V : V;
-fun mafia_N : N;
-fun mag_N : N;
-fun magazine_N : N;
-fun magdeburg_PN : PN;
-fun magenta_A : A;
-fun magenta_N : N;
-fun maggie_PN : PN;
-fun maggot_N : N;
-fun maggoty_A : A;
-fun maghull_PN : PN;
-fun magic_A : A;
-fun magic_N : N;
-fun magical_A : A;
-fun magician_N : N;
-fun magisterial_A : A;
-fun magistracy_N : N;
-fun magistrate_N : N;
-fun magnanimity_N : N;
-fun magnanimous_A : A;
-fun magnate_N : N;
-fun magnesia_N : N;
-fun magnesium_N : N;
-fun magnet_N : N;
-fun magnetic_A : A;
-fun magnetically_Adv : Adv;
-fun magnetism_N : N;
-fun magnetization_N : N;
-fun magnetize_V2 : V2;
-fun magneto_N : N;
-fun magnificat_N : N;
-fun magnification_N : N;
-fun magnificence_N : N;
-fun magnificent_A : A;
-fun magnifier_N : N;
-fun magnify_V2 : V2;
-fun magniloquence_N : N;
-fun magniloquent_A : A;
-fun magnitude_N : N;
-fun magnolia_N : N;
-fun magnum_N : N;
-fun magnum_opus_N : N;
-fun magpie_N : N;
-fun magyar_A : A;
-fun magyar_N : N;
-fun maharaja_N : N;
-fun maharajah_N : N;
-fun maharanee_N : N;
-fun mahatma_N : N;
-fun mahjong_N : N;
-fun mahogany_N : N;
-fun mahout_N : N;
-fun maid_N : N;
-fun maiden_A : A;
-fun maiden_N : N;
-fun maidenhair_N : N;
-fun maidenhead_N : N;
-fun maidenhead_PN : PN;
-fun maidenhood_N : N;
-fun maidenlike_A : A;
-fun maidenly_A : A;
-fun maidservant_N : N;
-fun maidstone_PN : PN;
-fun mail_N : N;
-fun mail_V2 : V2;
-fun mail_train_N : N;
-fun mailbag_N : N;
-fun mailboat_N : N;
-fun mailbox_N : N;
-fun mailed_A : A;
-fun mailing_card_N : N;
-fun mailing_list_N : N;
-fun mailman_N : N;
-fun maim_V2 : V2;
-fun main_A : A;
-fun main_N : N;
-fun maine_PN : PN;
-fun mainland_N : N;
-fun mainmast_N : N;
-fun mainspring_N : N;
-fun mainstay_N : N;
-fun mainstream_N : N;
-fun maintain_V2 : V2;
-fun maintainable_A : A;
-fun maintenance_N : N;
-fun mainz_PN : PN;
-fun maisonnette_N : N;
-fun maize_N : N;
-fun maj_PN : PN;
-fun majestic_A : A;
-fun majestically_Adv : Adv;
-fun majesty_N : N;
-fun majolica_N : N;
-fun major_A : A;
-fun major_N : N;
-fun major_V : V;
-fun major_domo_N : N;
-fun major_general_N : N;
-fun majority_N : N;
-fun make_N : N;
-fun make_V : V;
-fun make_V2 : V2;
-fun make_believe_N : N;
-fun make_up_N : N;
-fun maker_N : N;
-fun makeshift_N : N;
-fun makeweight_N : N;
-fun making_N : N;
-fun malacca_N : N;
-fun malachite_N : N;
-fun maladjusted_A : A;
-fun maladjustment_N : N;
-fun maladroit_A : A;
-fun maladroitness_N : N;
-fun malady_N : N;
-fun malaga_PN : PN;
-fun malaise_N : N;
-fun malapropism_N : N;
-fun malapropos_A : A;
-fun malapropos_Adv : Adv;
-fun malaria_N : N;
-fun malarial_A : A;
-fun malawi_PN : PN;
-fun malawian_A : A;
-fun malawian_N : N;
-fun malay_A : A;
-fun malay_N : N;
-fun malaya_PN : PN;
-fun malayan_A : A;
-fun malayan_N : N;
-fun malaysia_PN : PN;
-fun malaysian_A : A;
-fun malaysian_N : N;
-fun malcolm_PN : PN;
-fun malcontent_A : A;
-fun malcontent_N : N;
-fun maldon_PN : PN;
-fun male_A : A;
-fun male_N : N;
-fun malediction_N : N;
-fun malefactor_N : N;
-fun maleficent_A : A;
-fun malevolence_N : N;
-fun malevolent_A : A;
-fun malfeasance_N : N;
-fun malformation_N : N;
-fun malformed_A : A;
-fun malfunction_N : N;
-fun malfunction_V : V;
-fun mali_PN : PN;
-fun malian_A : A;
-fun malian_N : N;
-fun malice_N : N;
-fun malicious_A : A;
-fun malign_A : A;
-fun malign_V2 : V2;
-fun malignancy_N : N;
-fun malignant_A : A;
-fun malignity_N : N;
-fun malinger_V : V;
-fun malingerer_N : N;
-fun mallard_N : N;
-fun malleability_N : N;
-fun malleable_A : A;
-fun mallet_N : N;
-fun mallow_N : N;
-fun mallow_PN : PN;
-fun malmo_PN : PN;
-fun malmsey_N : N;
-fun malnutrition_N : N;
-fun malodorous_A : A;
-fun malpractice_N : N;
-fun malt_N : N;
-fun malt_V : V;
-fun malt_V2 : V2;
-fun malta_PN : PN;
-fun maltby_PN : PN;
-fun maltese_A : A;
-fun maltese_N : N;
-fun malthusian_A : A;
-fun maltreat_V2 : V2;
-fun maltreatment_N : N;
-fun maltster_N : N;
-fun malvern_PN : PN;
-fun malversation_N : N;
-fun mama_N : N;
-fun mamba_N : N;
-fun mamie_PN : PN;
-fun mamma_N : N;
-fun mammal_N : N;
-fun mammon_N : N;
-fun mammoth_N : N;
-fun mammy_N : N;
-fun man_N : N;
-fun man_V2 : V2;
-fun man_at_arms_N : N;
-fun man_eater_N : N;
-fun man_hour_N : N;
-fun man_of_war_N : N;
-fun man_sized_A : A;
-fun manacle_N : N;
-fun manacle_V2 : V2;
-fun manage_V : V;
-fun manage_V2 : V2;
-fun manageability_N : N;
-fun manageable_A : A;
-fun management_N : N;
-fun manager_N : N;
-fun manageress_N : N;
-fun managerial_A : A;
-fun manatee_N : N;
-fun manchester_PN : PN;
-fun mancunian_A : A;
-fun mancunian_N : N;
-fun mandarin_N : N;
-fun mandatary_N : N;
-fun mandate_N : N;
-fun mandate_V2 : V2;
-fun mandatory_A : A;
-fun mandatory_N : N;
-fun mandible_N : N;
-fun mandolin_N : N;
-fun mandragora_N : N;
-fun mandrake_N : N;
-fun mandrill_N : N;
-fun mandy_PN : PN;
-fun mane_N : N;
-fun manful_A : A;
-fun manganese_N : N;
-fun mange_N : N;
-fun mangel_wurzel_N : N;
-fun manger_N : N;
-fun mangily_Adv : Adv;
-fun mangle_N : N;
-fun mangle_V2 : V2;
-fun mango_N : N;
-fun mangosteen_N : N;
-fun mangrove_N : N;
-fun mangy_A : A;
-fun manhandle_V2 : V2;
-fun manhattan_N : N;
-fun manhole_N : N;
-fun manhood_N : N;
-fun mania_N : N;
-fun maniac_N : N;
-fun maniacal_A : A;
-fun manic_depressive_A : A;
-fun manic_depressive_N : N;
-fun manicure_N : N;
-fun manicure_V2 : V2;
-fun manicurist_N : N;
-fun manifest_A : A;
-fun manifest_N : N;
-fun manifest_V2 : V2;
-fun manifestation_N : N;
-fun manifesto_N : N;
-fun manifold_A : A;
-fun manifold_N : N;
-fun manifold_V2 : V2;
-fun manikin_N : N;
-fun manila_PN : PN;
-fun manilla_N : N;
-fun manipulate_V2 : V2;
-fun manipulation_N : N;
-fun manipulative_A : A;
-fun manitoba_PN : PN;
-fun mankind_N : N;
-fun manlike_A : A;
-fun manliness_N : N;
-fun manly_A : A;
-fun manna_N : N;
-fun mannequin_N : N;
-fun manner_N : N;
-fun mannered_A : A;
-fun mannerism_N : N;
-fun mannerly_A : A;
-fun mannheim_PN : PN;
-fun mannish_A : A;
-fun manoeuvrability_N : N;
-fun manoeuvrable_A : A;
-fun manoeuvre_N : N;
-fun manoeuvre_V : V;
-fun manoeuvre_V2 : V2;
-fun manoeuvrer_N : N;
-fun manor_N : N;
-fun manor_house_N : N;
-fun manorial_A : A;
-fun manpower_N : N;
-fun mansard_N : N;
-fun manse_N : N;
-fun manservant_N : N;
-fun mansfield_PN : PN;
-fun mansion_N : N;
-fun manslaughter_N : N;
-fun mantel_N : N;
-fun mantelpiece_N : N;
-fun mantilla_N : N;
-fun mantis_N : N;
-fun mantle_N : N;
-fun mantle_V : V;
-fun mantle_V2 : V2;
-fun mantrap_N : N;
-fun manual_A : A;
-fun manual_N : N;
-fun manufacture_N : N;
-fun manufacture_V2 : V2;
-fun manufacturer_N : N;
-fun manumission_N : N;
-fun manumit_V2 : V2;
-fun manure_N : N;
-fun manure_V2 : V2;
-fun manuscript_N : N;
-fun manx_A : A;
-fun manx_N : N;
-fun many_sided_A : A;
-fun maoism_N : N;
-fun maoist_N : N;
-fun maori_N : N;
-fun map_N : N;
-fun map_V2 : V2;
-fun map_reader_N : N;
-fun maple_N : N;
-fun maple_leaf_N : N;
-fun maquis_N : N;
-fun mar_PN : PN;
-fun mar_V2 : V2;
-fun marabou_N : N;
-fun maracaibo_PN : PN;
-fun maraschino_N : N;
-fun marathon_N : N;
-fun maraud_V : V;
-fun marauder_N : N;
-fun marble_N : N;
-fun marbled_A : A;
-fun marbling_N : N;
-fun march_N : N;
-fun march_PN : PN;
-fun march_V : V;
-fun march_V2 : V2;
-fun marcher_N : N;
-fun marchioness_N : N;
-fun mardi_gras_N : N;
-fun mare_N : N;
-fun margaret_PN : PN;
-fun margarine_N : N;
-fun margate_PN : PN;
-fun marge_N : N;
-fun marge_PN : PN;
-fun margery_PN : PN;
-fun margie_PN : PN;
-fun margin_N : N;
-fun marginal_A : A;
-fun margrave_N : N;
-fun marguerite_N : N;
-fun maria_PN : PN;
-fun marian_PN : PN;
-fun marie_PN : PN;
-fun marigold_N : N;
-fun marihuana_N : N;
-fun marijuana_N : N;
-fun marilyn_PN : PN;
-fun marimba_N : N;
-fun marina_N : N;
-fun marinade_N : N;
-fun marinade_V2 : V2;
-fun marinate_V2 : V2;
-fun marine_A : A;
-fun marine_N : N;
-fun mariner_N : N;
-fun marion_PN : PN;
-fun marionette_N : N;
-fun marital_A : A;
-fun maritime_A : A;
-fun marjoram_N : N;
-fun marjorie_PN : PN;
-fun mark_N : N;
-fun mark_PN : PN;
-fun mark_V2 : V2;
-fun mark_up_N : N;
-fun marked_A : A;
-fun marker_N : N;
-fun market_N : N;
-fun market_V : V;
-fun market_V2 : V2;
-fun market_cross_N : N;
-fun market_day_N : N;
-fun market_drayton_PN : PN;
-fun market_garden_N : N;
-fun market_gardening_N : N;
-fun market_harborough_PN : PN;
-fun market_square_N : N;
-fun market_town_N : N;
-fun marketable_A : A;
-fun marketing_N : N;
-fun marketplace_N : N;
-fun marking_N : N;
-fun marking_ink_N : N;
-fun marking_inks_N : N;
-fun marksman_N : N;
-fun marksmanship_N : N;
-fun marl_N : N;
-fun marlborough_PN : PN;
-fun marlene_PN : PN;
-fun marlinespike_N : N;
-fun marlow_PN : PN;
-fun marmalade_N : N;
-fun marmoreal_A : A;
-fun marmoset_N : N;
-fun marmot_N : N;
-fun marocain_N : N;
-fun maroon_A : A;
-fun maroon_N : N;
-fun maroon_V2 : V2;
-fun marple_PN : PN;
-fun marque_N : N;
-fun marquee_N : N;
-fun marquess_N : N;
-fun marquetry_N : N;
-fun marquis_N : N;
-fun marriage_N : N;
-fun marriageability_N : N;
-fun marriageable_A : A;
-fun married_A : A;
-fun marrow_N : N;
-fun marrowbone_N : N;
-fun marry_V : V;
-fun marry_V2 : V2;
-fun mars_PN : PN;
-fun marsala_N : N;
-fun marseillaise_N : N;
-fun marseilles_PN : PN;
-fun marsh_N : N;
-fun marshal_N : N;
-fun marshal_V2 : V2;
-fun marshalling_yard_N : N;
-fun marshmallow_N : N;
-fun marshy_A : A;
-fun marske_PN : PN;
-fun marsupial_A : A;
-fun marsupial_N : N;
-fun mart_N : N;
-fun marten_N : N;
-fun martha_PN : PN;
-fun martial_A : A;
-fun martian_A : A;
-fun martian_N : N;
-fun martin_N : N;
-fun martin_PN : PN;
-fun martinet_N : N;
-fun martini_N : N;
-fun martyr_N : N;
-fun martyr_V2 : V2;
-fun martyrdom_N : N;
-fun marvel_N : N;
-fun marvel_V : V;
-fun marvellous_A : A;
-fun marvelous_A : A;
-fun marxism_N : N;
-fun marxist_N : N;
-fun mary_PN : PN;
-fun maryland_PN : PN;
-fun maryport_PN : PN;
-fun marzipan_N : N;
-fun masc_PN : PN;
-fun mascara_N : N;
-fun mascot_N : N;
-fun masculine_A : A;
-fun masculinity_N : N;
-fun maser_N : N;
-fun mash_N : N;
-fun mash_V2 : V2;
-fun masher_N : N;
-fun mask_N : N;
-fun mask_V2 : V2;
-fun masochism_N : N;
-fun masochist_N : N;
-fun masochistic_A : A;
-fun masochistically_Adv : Adv;
-fun mason_N : N;
-fun mason_dixon_PN : PN;
-fun masonic_A : A;
-fun masonry_N : N;
-fun masque_N : N;
-fun masquerade_N : N;
-fun masquerade_V : V;
-fun mass_N : N;
-fun mass_V : V;
-fun mass_V2 : V2;
-fun mass_produce_V2 : V2;
-fun massachusetts_PN : PN;
-fun massacre_N : N;
-fun massacre_V2 : V2;
-fun massage_N : N;
-fun massage_V2 : V2;
-fun masseur_N : N;
-fun masseuse_N : N;
-fun massif_N : N;
-fun massive_A : A;
-fun massiveness_N : N;
-fun massy_A : A;
-fun mast_N : N;
-fun master_N : N;
-fun master_V2 : V2;
-fun master_at_arms_N : N;
-fun master_key_N : N;
-fun masterful_A : A;
-fun masterless_A : A;
-fun masterly_A : A;
-fun mastermind_N : N;
-fun mastermind_V2 : V2;
-fun masterpiece_N : N;
-fun mastership_N : N;
-fun masterstroke_N : N;
-fun mastery_N : N;
-fun masthead_N : N;
-fun masticate_V2 : V2;
-fun mastication_N : N;
-fun mastiff_N : N;
-fun mastodon_N : N;
-fun mastoid_N : N;
-fun mastoiditis_N : N;
-fun masturbate_V : V;
-fun masturbate_V2 : V2;
-fun masturbation_N : N;
-fun mat_A : A;
-fun mat_N : N;
-fun mat_V : V;
-fun mat_V2 : V2;
-fun matador_N : N;
-fun match_N : N;
-fun match_V : V;
-fun match_V2 : V2;
-fun match_point_N : N;
-fun matchbox_N : N;
-fun matchet_N : N;
-fun matchless_A : A;
-fun matchlock_N : N;
-fun matchmaker_N : N;
-fun matchwood_N : N;
-fun mate_1_N : N;
-fun mate_V : V;
-fun mate_V2 : V2;
-fun material_A : A;
-fun material_N : N;
-fun materialism_N : N;
-fun materialist_N : N;
-fun materialistic_A : A;
-fun materialistically_Adv : Adv;
-fun materialization_N : N;
-fun materialize_V : V;
-fun maternal_A : A;
-fun maternity_N : N;
-fun matey_A : A;
-fun mathematical_A : A;
-fun mathematician_N : N;
-fun mathematics_N : N;
-fun maths_N : N;
-fun matinee_N : N;
-fun matlock_PN : PN;
-fun matriarch_N : N;
-fun matriarchal_A : A;
-fun matriarchy_N : N;
-fun matric_N : N;
-fun matricide_N : N;
-fun matriculate_V : V;
-fun matriculate_V2 : V2;
-fun matriculation_N : N;
-fun matrimonial_A : A;
-fun matrimony_N : N;
-fun matrix_N : N;
-fun matron_N : N;
-fun matronly_A : A;
-fun matt_A : A;
-fun matt_PN : PN;
-fun matted_A : A;
-fun matter_N : N;
-fun matter_V : V;
-fun matter_of_course_A : A;
-fun matter_of_fact_A : A;
-fun matthew_PN : PN;
-fun matting_N : N;
-fun mattock_N : N;
-fun mattress_N : N;
-fun maturate_V : V;
-fun maturation_N : N;
-fun mature_A : A;
-fun mature_V : V;
-fun mature_V2 : V2;
-fun maturity_N : N;
-fun matutinal_A : A;
-fun mate_2_N : N;
-fun maud_PN : PN;
-fun maudie_PN : PN;
-fun maudlin_A : A;
-fun maul_V2 : V2;
-fun maulstick_N : N;
-fun maunder_V : V;
-fun maundy_thursday_N : N;
-fun maundy_thursday_PN : PN;
-fun maureen_PN : PN;
-fun maurice_PN : PN;
-fun mauritania_PN : PN;
-fun mauritanian_A : A;
-fun mauritanian_N : N;
-fun mauritian_A : A;
-fun mauritian_N : N;
-fun mauritius_PN : PN;
-fun mausoleum_N : N;
-fun mauve_A : A;
-fun mauve_N : N;
-fun maverick_N : N;
-fun mavis_N : N;
-fun mavis_PN : PN;
-fun maw_N : N;
-fun mawkish_A : A;
-fun mawkishness_N : N;
-fun max_N : N;
-fun max_PN : PN;
-fun maxim_N : N;
-fun maximal_A : A;
-fun maximization_N : N;
-fun maximize_V2 : V2;
-fun maximum_A : A;
-fun maximum_N : N;
-fun maxine_PN : PN;
-fun may_N : N;
-fun may_PN : PN;
-fun may_beetle_N : N;
-fun may_bug_N : N;
-fun maybe_Adv : Adv;
-fun mayday_N : N;
-fun mayfair_PN : PN;
-fun mayfield_PN : PN;
-fun mayfly_N : N;
-fun mayhem_N : N;
-fun mayo_PN : PN;
-fun mayonnaise_N : N;
-fun mayor_N : N;
-fun mayoral_A : A;
-fun mayoralty_N : N;
-fun mayoress_N : N;
-fun maypole_N : N;
-fun maze_N : N;
-fun mazed_A : A;
-fun mazurka_N : N;
-fun mb_N : N;
-fun mc_N : N;
-fun mcc_N : N;
-fun mccarthyism_N : N;
-fun md_N : N;
-fun mead_N : N;
-fun meadow_N : N;
-fun meagre_A : A;
-fun meagreness_N : N;
-fun meal_N : N;
-fun mealie_N : N;
-fun mealtime_N : N;
-fun mealy_A : A;
-fun mealy_bug_N : N;
-fun mealy_mouthed_A : A;
-fun mean_A : A;
-fun mean_N : N;
-fun mean_V2 : V2;
-fun meander_V : V;
-fun meanderingly_Adv : Adv;
-fun meanie_N : N;
-fun meaning_A : A;
-fun meaning_N : N;
-fun meaningful_A : A;
-fun meaningless_A : A;
-fun meanness_N : N;
-fun meantime_Adv : Adv;
-fun meantime_N : N;
-fun meanwhile_Adv : Adv;
-fun meany_N : N;
-fun measles_N : N;
-fun measly_A : A;
-fun measurable_A : A;
-fun measure_N : N;
-fun measure_V : V;
-fun measure_V2 : V2;
-fun measured_A : A;
-fun measureless_A : A;
-fun measurement_N : N;
-fun meat_N : N;
-fun meat_safe_N : N;
-fun meatball_N : N;
-fun meath_PN : PN;
-fun meatless_A : A;
-fun meaty_A : A;
-fun mecca_PN : PN;
-fun mechanic_N : N;
-fun mechanical_A : A;
-fun mechanics_N : N;
-fun mechanism_N : N;
-fun mechanistic_A : A;
-fun mechanistically_Adv : Adv;
-fun mechanization_N : N;
-fun mechanize_V2 : V2;
-fun med_N : N;
-fun medal_N : N;
-fun medalist_N : N;
-fun medallion_N : N;
-fun medallist_N : N;
-fun medan_PN : PN;
-fun meddle_V : V;
-fun meddler_N : N;
-fun meddlesome_A : A;
-fun medellin_PN : PN;
-fun mediaeval_A : A;
-fun medial_A : A;
-fun median_A : A;
-fun median_N : N;
-fun mediate_V : V;
-fun mediate_V2 : V2;
-fun mediation_N : N;
-fun mediator_N : N;
-fun medic_N : N;
-fun medical_A : A;
-fun medical_N : N;
-fun medicament_N : N;
-fun medicare_N : N;
-fun medicate_V2 : V2;
-fun medication_N : N;
-fun medicinal_A : A;
-fun medicine_N : N;
-fun medicine_ball_N : N;
-fun medicine_chest_N : N;
-fun medicine_man_N : N;
-fun medico_N : N;
-fun medieval_A : A;
-fun mediocre_A : A;
-fun mediocrity_N : N;
-fun meditate_V : V;
-fun meditate_V2 : V2;
-fun meditation_N : N;
-fun meditative_A : A;
-fun mediterranean_A : A;
-fun medium_A : A;
-fun medium_N : N;
-fun medlar_N : N;
-fun medley_N : N;
-fun meed_N : N;
-fun meek_A : A;
-fun meekness_N : N;
-fun meerschaum_N : N;
-fun meet_A : A;
-fun meet_N : N;
-fun meet_V : V;
-fun meet_V2 : V2;
-fun meeting_N : N;
-fun meeting_house_N : N;
-fun meeting_place_N : N;
-fun meg_PN : PN;
-fun megacycle_N : N;
-fun megadeath_N : N;
-fun megalith_N : N;
-fun megalithic_A : A;
-fun megalomania_N : N;
-fun megalomaniac_N : N;
-fun megaphone_N : N;
-fun megaton_N : N;
-fun megrim_N : N;
-fun meiosis_N : N;
-fun melancholia_N : N;
-fun melancholic_A : A;
-fun melancholy_A : A;
-fun melancholy_N : N;
-fun melbourne_PN : PN;
-fun melcombe_PN : PN;
-fun melcombe_regis_PN : PN;
-fun meliorate_V : V;
-fun meliorate_V2 : V2;
-fun melioration_N : N;
-fun meliorism_N : N;
-fun melksham_PN : PN;
-fun mellifluous_A : A;
-fun mellow_A : A;
-fun mellow_V : V;
-fun mellow_V2 : V2;
-fun mellowness_N : N;
-fun melodic_A : A;
-fun melodious_A : A;
-fun melodiousness_N : N;
-fun melodrama_N : N;
-fun melodramatic_A : A;
-fun melodramatically_Adv : Adv;
-fun melody_N : N;
-fun melon_N : N;
-fun melt_V : V;
-fun melt_V2 : V2;
-fun meltham_PN : PN;
-fun melting_A : A;
-fun melting_point_N : N;
-fun melting_pot_N : N;
-fun melton_mowbray_PN : PN;
-fun member_N : N;
-fun membership_N : N;
-fun membrane_N : N;
-fun membranous_A : A;
-fun memento_N : N;
-fun memo_N : N;
-fun memoir_N : N;
-fun memorable_A : A;
-fun memorandum_N : N;
-fun memorial_N : N;
-fun memorialize_V2 : V2;
-fun memorize_V2 : V2;
-fun memory_N : N;
-fun memphis_PN : PN;
-fun memsahib_N : N;
-fun menace_N : N;
-fun menace_V2 : V2;
-fun menacingly_Adv : Adv;
-fun menagerie_N : N;
-fun mend_N : N;
-fun mend_V : V;
-fun mend_V2 : V2;
-fun mendacious_A : A;
-fun mendacity_N : N;
-fun mendelian_A : A;
-fun mender_N : N;
-fun mendicant_A : A;
-fun mendicant_N : N;
-fun mending_N : N;
-fun menial_A : A;
-fun menial_N : N;
-fun meningitis_N : N;
-fun menopause_N : N;
-fun menstrual_A : A;
-fun menstruate_V : V;
-fun menstruation_N : N;
-fun mensurable_A : A;
-fun mensuration_N : N;
-fun mental_A : A;
-fun mentality_N : N;
-fun menthol_N : N;
-fun mentholated_A : A;
-fun mention_N : N;
-fun mention_V2 : V2;
-fun mentioned_A : A;
-fun mentor_N : N;
-fun menu_N : N;
-fun meopham_PN : PN;
-fun mephistophelian_A : A;
-fun mercantile_A : A;
-fun mercator_PN : PN;
-fun mercenary_A : A;
-fun mercenary_N : N;
-fun mercer_N : N;
-fun mercerize_V2 : V2;
-fun merchandise_N : N;
-fun merchant_N : N;
-fun merchantman_N : N;
-fun merciful_A : A;
-fun merciless_A : A;
-fun mercurial_A : A;
-fun mercury_N : N;
-fun mercury_PN : PN;
-fun mercy_N : N;
-fun mere_A : A;
-fun mere_N : N;
-fun meretricious_A : A;
-fun meretriciousness_N : N;
-fun merge_V : V;
-fun merge_V2 : V2;
-fun merger_N : N;
-fun meridian_N : N;
-fun meridional_A : A;
-fun meringue_N : N;
-fun merino_N : N;
-fun merino_sheep_N : N;
-fun merit_N : N;
-fun merit_V2 : V2;
-fun meritocracy_N : N;
-fun meritocratic_A : A;
-fun meritorious_A : A;
-fun mermaid_N : N;
-fun merman_N : N;
-fun merrily_Adv : Adv;
-fun merriment_N : N;
-fun merry_A : A;
-fun merry_go_round_N : N;
-fun merrymaker_N : N;
-fun merrymaking_N : N;
-fun merthyr_tydfil_PN : PN;
-fun merton_PN : PN;
-fun mescal_N : N;
-fun mescaline_N : N;
-fun meseems_Adv : Adv;
-fun mesh_N : N;
-fun mesh_V : V;
-fun mesh_V2 : V2;
-fun mesmeric_A : A;
-fun mesmerism_N : N;
-fun mesmerist_N : N;
-fun mesmerize_V2 : V2;
-fun meson_N : N;
-fun mess_N : N;
-fun mess_V : V;
-fun mess_V2 : V2;
-fun mess_jacket_N : N;
-fun mess_up_N : N;
-fun message_N : N;
-fun messenger_N : N;
-fun messiah_N : N;
-fun messianic_A : A;
-fun messily_Adv : Adv;
-fun messina_PN : PN;
-fun messiness_N : N;
-fun messmate_N : N;
-fun messuage_N : N;
-fun messy_A : A;
-fun met_PN : PN;
-fun metabolic_A : A;
-fun metabolism_N : N;
-fun metacarpal_A : A;
-fun metacarpal_N : N;
-fun metal_N : N;
-fun metal_V2 : V2;
-fun metallic_A : A;
-fun metallurgical_A : A;
-fun metallurgist_N : N;
-fun metallurgy_N : N;
-fun metalwork_N : N;
-fun metalworker_N : N;
-fun metamorphose_V : V;
-fun metamorphose_V2 : V2;
-fun metamorphosis_N : N;
-fun metaphor_N : N;
-fun metaphorical_A : A;
-fun metaphysical_A : A;
-fun metaphysics_N : N;
-fun metatarsal_A : A;
-fun metatarsal_N : N;
-fun mete_V2 : V2;
-fun meteor_N : N;
-fun meteoric_A : A;
-fun meteorite_N : N;
-fun meteorological_A : A;
-fun meteorologist_N : N;
-fun meteorology_N : N;
-fun meter_N : N;
-fun methane_N : N;
-fun methinks_Adv : Adv;
-fun method_N : N;
-fun methodical_A : A;
-fun methodism_N : N;
-fun methodist_A : A;
-fun methodist_N : N;
-fun methodological_A : A;
-fun methodology_N : N;
-fun methought_Adv : Adv;
-fun methuselah_PN : PN;
-fun methyl_N : N;
-fun methylated_A : A;
-fun meticulous_A : A;
-fun meticulousness_N : N;
-fun metre_N : N;
-fun metric_A : A;
-fun metrical_A : A;
-fun metrication_N : N;
-fun metricize_V2 : V2;
-fun metro_N : N;
-fun metronome_N : N;
-fun metropolis_N : N;
-fun metropolitan_A : A;
-fun metropolitan_N : N;
-fun mettle_N : N;
-fun mettlesome_A : A;
-fun metz_PN : PN;
-fun mew_N : N;
-fun mew_V : V;
-fun mews_N : N;
-fun mexican_A : A;
-fun mexican_N : N;
-fun mexico_PN : PN;
-fun mexico_city_PN : PN;
-fun mezzanine_A : A;
-fun mezzanine_N : N;
-fun mezzo_Adv : Adv;
-fun mezzo_soprano_N : N;
-fun mezzotint_N : N;
-fun mg_N : N;
-fun mgr_PN : PN;
-fun mi5_PN : PN;
-fun mi6_PN : PN;
-fun mi_N : N;
-fun miami_PN : PN;
-fun miaou_N : N;
-fun miaou_V : V;
-fun miaow_N : N;
-fun miaow_V : V;
-fun miasma_N : N;
-fun mica_N : N;
-fun michael_PN : PN;
-fun michaelmas_N : N;
-fun michaelmas_PN : PN;
-fun michelle_PN : PN;
-fun michigan_PN : PN;
-fun mick_PN : PN;
-fun mickey_N : N;
-fun mickey_PN : PN;
-fun mickle_N : N;
-fun micro_organism_N : N;
-fun microbe_N : N;
-fun microbiology_N : N;
-fun microcosm_N : N;
-fun microdot_N : N;
-fun microelectronics_N : N;
-fun microfiche_N : N;
-fun microfilm_N : N;
-fun microfilm_V2 : V2;
-fun micrometer_N : N;
-fun micron_N : N;
-fun microphone_N : N;
-fun microscope_N : N;
-fun microscopic_A : A;
-fun microscopical_A : A;
-fun microscopy_N : N;
-fun microwave_N : N;
-fun mid_A : A;
-fun mid_off_N : N;
-fun mid_on_N : N;
-fun midday_N : N;
-fun midden_N : N;
-fun middle_N : N;
-fun middle_aged_A : A;
-fun middle_class_A : A;
-fun middle_distance_A : A;
-fun middle_of_the_road_A : A;
-fun middleman_N : N;
-fun middlesex_PN : PN;
-fun middleton_PN : PN;
-fun middleweight_A : A;
-fun middleweight_N : N;
-fun middlewich_PN : PN;
-fun middling_A : A;
-fun middling_Adv : Adv;
-fun middling_N : N;
-fun middy_N : N;
-fun midfield_N : N;
-fun midge_N : N;
-fun midget_N : N;
-fun midinette_N : N;
-fun midland_N : N;
-fun midlands_PN : PN;
-fun midmost_A : A;
-fun midmost_Adv : Adv;
-fun midnight_N : N;
-fun midriff_N : N;
-fun midshipman_N : N;
-fun midships_Adv : Adv;
-fun midst_N : N;
-fun midstream_N : N;
-fun midsummer_N : N;
-fun midway_A : A;
-fun midway_Adv : Adv;
-fun midweek_A : A;
-fun midweek_Adv : Adv;
-fun midwest_PN : PN;
-fun midwestern_A : A;
-fun midwife_N : N;
-fun midwifery_N : N;
-fun mien_N : N;
-fun might_N : N;
-fun might_have_been_N : N;
-fun mightily_Adv : Adv;
-fun mighty_A : A;
-fun mighty_Adv : Adv;
-fun mignonette_N : N;
-fun migraine_N : N;
-fun migrant_N : N;
-fun migrate_V : V;
-fun migration_N : N;
-fun migratory_A : A;
-fun mikado_N : N;
-fun mike_N : N;
-fun mike_PN : PN;
-fun milady_N : N;
-fun milage_N : N;
-fun milan_PN : PN;
-fun milano_PN : PN;
-fun milch_A : A;
-fun mild_A : A;
-fun mildenhall_PN : PN;
-fun mildew_N : N;
-fun mildew_V : V;
-fun mildew_V2 : V2;
-fun mildness_N : N;
-fun mildred_PN : PN;
-fun mile_N : N;
-fun mileage_N : N;
-fun mileometer_N : N;
-fun miler_N : N;
-fun miles_PN : PN;
-fun milestone_N : N;
-fun milford_PN : PN;
-fun milford_haven_PN : PN;
-fun milieu_N : N;
-fun militancy_N : N;
-fun militant_A : A;
-fun militant_N : N;
-fun militarism_N : N;
-fun militarist_N : N;
-fun militaristic_A : A;
-fun military_A : A;
-fun military_N : N;
-fun militate_V : V;
-fun militia_N : N;
-fun militiaman_N : N;
-fun milk_N : N;
-fun milk_V : V;
-fun milk_V2 : V2;
-fun milk_churn_N : N;
-fun milk_powder_N : N;
-fun milk_shake_N : N;
-fun milk_tooth_N : N;
-fun milk_white_A : A;
-fun milkbar_N : N;
-fun milking_machine_N : N;
-fun milkmaid_N : N;
-fun milkman_N : N;
-fun milkshake_N : N;
-fun milksop_N : N;
-fun milkweed_N : N;
-fun milky_A : A;
-fun mill_N : N;
-fun mill_V : V;
-fun mill_V2 : V2;
-fun mill_dam_N : N;
-fun mill_girl_N : N;
-fun mill_hand_N : N;
-fun millboard_N : N;
-fun millenarian_N : N;
-fun millennial_A : A;
-fun millennium_N : N;
-fun millepede_N : N;
-fun miller_N : N;
-fun millet_N : N;
-fun milliard_N : N;
-fun millibar_N : N;
-fun millicent_PN : PN;
-fun millie_PN : PN;
-fun milligram_N : N;
-fun millimetre_N : N;
-fun milliner_N : N;
-fun millinery_N : N;
-fun millionaire_N : N;
-fun millionairess_N : N;
-fun millionfold_Adv : Adv;
-fun millionth_A : A;
-fun millionth_N : N;
-fun millipede_N : N;
-fun millom_PN : PN;
-fun millpond_N : N;
-fun millrace_N : N;
-fun millstone_N : N;
-fun millwheel_N : N;
-fun millwright_N : N;
-fun milly_PN : PN;
-fun milngavie_PN : PN;
-fun milnrow_PN : PN;
-fun milometer_N : N;
-fun milord_N : N;
-fun milt_N : N;
-fun milton_keynes_PN : PN;
-fun milwaukee_PN : PN;
-fun mime_N : N;
-fun mime_V : V;
-fun mime_V2 : V2;
-fun mimeograph_N : N;
-fun mimeograph_V2 : V2;
-fun mimetic_A : A;
-fun mimic_A : A;
-fun mimic_N : N;
-fun mimic_V2 : V2;
-fun mimicry_N : N;
-fun mimosa_N : N;
-fun min_N : N;
-fun minaret_N : N;
-fun minatory_A : A;
-fun mince_N : N;
-fun mince_V : V;
-fun mince_V2 : V2;
-fun mince_pie_N : N;
-fun mincemeat_N : N;
-fun mincer_N : N;
-fun mincing_A : A;
-fun mind_N : N;
-fun mind_V : V;
-fun mind_V2 : V2;
-fun mind_bending_A : A;
-fun mind_blowing_A : A;
-fun mind_boggling_A : A;
-fun mind_reader_N : N;
-fun minded_A : A;
-fun minder_N : N;
-fun mindful_A : A;
-fun mindfulness_N : N;
-fun mindless_A : A;
-fun mindlessness_N : N;
-fun mine_A : A;
-fun mine_N : N;
-fun mine_V : V;
-fun mine_V2 : V2;
-fun mine_detector_N : N;
-fun mine_disposal_N : N;
-fun minefield_N : N;
-fun minehead_PN : PN;
-fun minelayer_N : N;
-fun minelaying_N : N;
-fun miner_N : N;
-fun mineral_A : A;
-fun mineral_N : N;
-fun mineralogist_N : N;
-fun mineralogy_N : N;
-fun minestrone_N : N;
-fun minesweeper_N : N;
-fun minesweeping_N : N;
-fun mineworker_N : N;
-fun mingle_V : V;
-fun mingle_V2 : V2;
-fun mingy_A : A;
-fun miniature_N : N;
-fun miniaturist_N : N;
-fun miniaturization_N : N;
-fun miniaturize_V2 : V2;
-fun minim_N : N;
-fun minimal_A : A;
-fun minimize_V2 : V2;
-fun minimum_A : A;
-fun minimum_N : N;
-fun mining_N : N;
-fun minion_N : N;
-fun minister_N : N;
-fun minister_V : V;
-fun ministerial_A : A;
-fun ministrant_A : A;
-fun ministrant_N : N;
-fun ministration_N : N;
-fun ministry_N : N;
-fun miniver_N : N;
-fun mink_N : N;
-fun minneapolis_PN : PN;
-fun minnesota_PN : PN;
-fun minnow_N : N;
-fun minor_A : A;
-fun minor_N : N;
-fun minority_N : N;
-fun minotaur_N : N;
-fun minsk_PN : PN;
-fun minster_N : N;
-fun minster_in_sheppey_PN : PN;
-fun minstrel_N : N;
-fun minstrelsy_N : N;
-fun mint_N : N;
-fun mint_V2 : V2;
-fun minuet_N : N;
-fun minus_A : A;
-fun minus_N : N;
-fun minuscule_A : A;
-fun minute_A : A;
-fun minute_N : N;
-fun minute_V2 : V2;
-fun minute_book_N : N;
-fun minute_gun_N : N;
-fun minute_hand_N : N;
-fun minuteman_N : N;
-fun minuteness_N : N;
-fun minx_N : N;
-fun miracle_N : N;
-fun miraculous_A : A;
-fun mirage_N : N;
-fun miranda_PN : PN;
-fun mire_N : N;
-fun mire_V : V;
-fun mire_V2 : V2;
-fun miriam_PN : PN;
-fun mirror_N : N;
-fun mirror_V2 : V2;
-fun mirth_N : N;
-fun mirthful_A : A;
-fun mirthless_A : A;
-fun miry_A : A;
-fun misadventure_N : N;
-fun misadvise_V2 : V2;
-fun misalliance_N : N;
-fun misanthrope_N : N;
-fun misanthropic_A : A;
-fun misanthropy_N : N;
-fun misapplication_N : N;
-fun misapply_V2 : V2;
-fun misapprehend_V2 : V2;
-fun misapprehension_N : N;
-fun misappropriate_V2 : V2;
-fun misappropriation_N : N;
-fun misbegotten_A : A;
-fun misbehave_V : V;
-fun misbehave_V2 : V2;
-fun misbehaviour_N : N;
-fun misc_PN : PN;
-fun miscalculate_V : V;
-fun miscalculate_V2 : V2;
-fun miscalculation_N : N;
-fun miscall_V2 : V2;
-fun miscarriage_N : N;
-fun miscarry_V2 : V2;
-fun miscast_V2 : V2;
-fun miscegenation_N : N;
-fun miscellaneous_A : A;
-fun miscellany_N : N;
-fun mischance_N : N;
-fun mischief_N : N;
-fun mischief_maker_N : N;
-fun mischief_making_N : N;
-fun mischievous_A : A;
-fun mischievousness_N : N;
-fun misconceive_V : V;
-fun misconceive_V2 : V2;
-fun misconception_N : N;
-fun misconduct_N : N;
-fun misconduct_V2 : V2;
-fun misconstruction_N : N;
-fun misconstrue_V2 : V2;
-fun miscount_N : N;
-fun miscount_V : V;
-fun miscount_V2 : V2;
-fun miscreant_N : N;
-fun misdate_V2 : V2;
-fun misdeal_N : N;
-fun misdeal_V : V;
-fun misdeal_V2 : V2;
-fun misdeed_N : N;
-fun misdemeanour_N : N;
-fun misdirect_V2 : V2;
-fun misdirection_N : N;
-fun misdoing_N : N;
-fun mise_en_scene_N : N;
-fun miser_N : N;
-fun miserable_A : A;
-fun miserliness_N : N;
-fun miserly_A : A;
-fun misery_N : N;
-fun misfire_N : N;
-fun misfire_V : V;
-fun misfit_N : N;
-fun misfortune_N : N;
-fun misgive_V2 : V2;
-fun misgiving_N : N;
-fun misgovern_V2 : V2;
-fun misgovernment_N : N;
-fun misguide_V2 : V2;
-fun misguided_A : A;
-fun mishandle_V2 : V2;
-fun mishap_N : N;
-fun mishmash_N : N;
-fun misinform_V2 : V2;
-fun misinformation_N : N;
-fun misinterpret_V2 : V2;
-fun misinterpretation_N : N;
-fun misjudge_V : V;
-fun misjudge_V2 : V2;
-fun mislay_V2 : V2;
-fun mislead_V2 : V2;
-fun mismanage_V2 : V2;
-fun mismanagement_N : N;
-fun misname_V2 : V2;
-fun misnomer_N : N;
-fun misogynist_N : N;
-fun misplace_V2 : V2;
-fun misprint_N : N;
-fun misprint_V2 : V2;
-fun mispronounce_V2 : V2;
-fun mispronunciation_N : N;
-fun misquotation_N : N;
-fun misquote_V2 : V2;
-fun misread_V2 : V2;
-fun misrepresent_V2 : V2;
-fun misrepresentation_N : N;
-fun misrule_N : N;
-fun miss_N : N;
-fun miss_V : V;
-fun miss_V2 : V2;
-fun missal_N : N;
-fun misshapen_A : A;
-fun missile_N : N;
-fun missing_A : A;
-fun mission_N : N;
-fun missionary_N : N;
-fun missis_N : N;
-fun mississippi_PN : PN;
-fun missive_N : N;
-fun missouri_PN : PN;
-fun misspell_V2 : V2;
-fun misspelling_N : N;
-fun misspend_V2 : V2;
-fun misstate_V2 : V2;
-fun misstatement_N : N;
-fun missus_N : N;
-fun missy_N : N;
-fun mist_N : N;
-fun mist_V : V;
-fun mist_V2 : V2;
-fun mistake_N : N;
-fun mistake_V : V;
-fun mistake_V2 : V2;
-fun mistaken_A : A;
-fun mister_N : N;
-fun mistily_Adv : Adv;
-fun mistime_V2 : V2;
-fun mistiness_N : N;
-fun mistletoe_N : N;
-fun mistral_N : N;
-fun mistranslate_V2 : V2;
-fun mistranslation_N : N;
-fun mistress_N : N;
-fun mistrial_N : N;
-fun mistrust_N : N;
-fun mistrust_V2 : V2;
-fun mistrustful_A : A;
-fun misty_A : A;
-fun misunderstand_V2 : V2;
-fun misunderstanding_N : N;
-fun misuse_N : N;
-fun misuse_V2 : V2;
-fun mite_N : N;
-fun mitigate_V2 : V2;
-fun mitigation_N : N;
-fun mitre_N : N;
-fun mitre_joint_N : N;
-fun mitt_N : N;
-fun mitten_N : N;
-fun mix_N : N;
-fun mix_V : V;
-fun mix_V2 : V2;
-fun mix_up_N : N;
-fun mixed_A : A;
-fun mixed_up_A : A;
-fun mixer_N : N;
-fun mixture_N : N;
-fun mizen_N : N;
-fun mizzen_N : N;
-fun mizzen_mast_N : N;
-fun mizzle_V : V;
-fun ml_N : N;
-fun mlle_PN : PN;
-fun mm_N : N;
-fun mme_PN : PN;
-fun mnemonic_A : A;
-fun mnemonics_N : N;
-fun mo_N : N;
-fun mo_PN : PN;
-fun moan_N : N;
-fun moan_V : V;
-fun moan_V2 : V2;
-fun moat_N : N;
-fun moated_A : A;
-fun mob_N : N;
-fun mob_V2 : V2;
-fun mobcap_N : N;
-fun mobile_A : A;
-fun mobile_N : N;
-fun mobility_N : N;
-fun mobilization_N : N;
-fun mobilize_V : V;
-fun mobilize_V2 : V2;
-fun mobster_N : N;
-fun moccasin_N : N;
-fun mocha_N : N;
-fun mock_A : A;
-fun mock_N : N;
-fun mock_V : V;
-fun mock_V2 : V2;
-fun mock_up_N : N;
-fun mocker_N : N;
-fun mockery_N : N;
-fun mockingly_Adv : Adv;
-fun mod_A : A;
-fun mod_N : N;
-fun mod_cons_N : N;
-fun modal_A : A;
-fun modality_N : N;
-fun mode_N : N;
-fun model_N : N;
-fun model_V : V;
-fun model_V2 : V2;
-fun modeler_N : N;
-fun modeller_N : N;
-fun modelling_N : N;
-fun modena_PN : PN;
-fun moderate_A : A;
-fun moderate_N : N;
-fun moderate_V : V;
-fun moderate_V2 : V2;
-fun moderation_N : N;
-fun moderator_N : N;
-fun modern_A : A;
-fun modern_N : N;
-fun modernism_N : N;
-fun modernist_N : N;
-fun modernistic_A : A;
-fun modernity_N : N;
-fun modernization_N : N;
-fun modernize_V2 : V2;
-fun modest_A : A;
-fun modesty_N : N;
-fun modicum_N : N;
-fun modification_N : N;
-fun modifier_N : N;
-fun modify_V2 : V2;
-fun modish_A : A;
-fun modiste_N : N;
-fun modular_A : A;
-fun modulate_V : V;
-fun modulate_V2 : V2;
-fun modulation_N : N;
-fun module_N : N;
-fun modus_operandi_N : N;
-fun modus_vivendi_N : N;
-fun mogul_N : N;
-fun mohair_N : N;
-fun mohammedan_N : N;
-fun moiety_N : N;
-fun moil_V : V;
-fun moira_PN : PN;
-fun moist_A : A;
-fun moisten_V : V;
-fun moisten_V2 : V2;
-fun moisture_N : N;
-fun moke_N : N;
-fun molar_A : A;
-fun molar_N : N;
-fun molasses_N : N;
-fun mold_PN : PN;
-fun moldy_A : A;
-fun mole_N : N;
-fun molecular_A : A;
-fun molecule_N : N;
-fun molehill_N : N;
-fun moleskin_N : N;
-fun molest_V2 : V2;
-fun molestation_N : N;
-fun moll_N : N;
-fun mollification_N : N;
-fun mollify_V2 : V2;
-fun mollusc_N : N;
-fun molly_PN : PN;
-fun mollycoddle_N : N;
-fun mollycoddle_V2 : V2;
-fun moloch_PN : PN;
-fun molto_Adv : Adv;
-fun molybdenum_N : N;
-fun moment_N : N;
-fun momentary_A : A;
-fun momentous_A : A;
-fun momentousness_N : N;
-fun momentum_N : N;
-fun mon_PN : PN;
-fun monaco_PN : PN;
-fun monaghan_PN : PN;
-fun monarch_N : N;
-fun monarchic_A : A;
-fun monarchism_N : N;
-fun monarchist_N : N;
-fun monarchy_N : N;
-fun monastery_N : N;
-fun monastic_A : A;
-fun monasticism_N : N;
-fun monaural_A : A;
-fun monchengladbach_PN : PN;
-fun monday_N : N;
-fun monday_PN : PN;
-fun monegasque_A : A;
-fun monegasque_N : N;
-fun monetary_A : A;
-fun monetize_V2 : V2;
-fun money_N : N;
-fun money_grubber_N : N;
-fun money_order_N : N;
-fun money_spinner_N : N;
-fun moneybox_N : N;
-fun moneychanger_N : N;
-fun moneyed_A : A;
-fun moneylender_N : N;
-fun moneyless_A : A;
-fun monger_N : N;
-fun mongol_A : A;
-fun mongol_N : N;
-fun mongolia_PN : PN;
-fun mongolian_A : A;
-fun mongolian_N : N;
-fun mongolism_N : N;
-fun mongoose_N : N;
-fun mongrel_A : A;
-fun mongrel_N : N;
-fun monica_PN : PN;
-fun monifieth_PN : PN;
-fun monitor_N : N;
-fun monitor_V : V;
-fun monitor_V2 : V2;
-fun monk_N : N;
-fun monkey_N : N;
-fun monkey_V : V;
-fun monkey_jacket_N : N;
-fun monkey_nut_N : N;
-fun monkey_puzzle_N : N;
-fun monkey_wrench_N : N;
-fun monkish_A : A;
-fun monmouth_PN : PN;
-fun mono_A : A;
-fun monochrome_A : A;
-fun monochrome_N : N;
-fun monocle_N : N;
-fun monocled_A : A;
-fun monogamist_N : N;
-fun monogamous_A : A;
-fun monogamy_N : N;
-fun monogram_N : N;
-fun monograph_N : N;
-fun monolith_N : N;
-fun monolithic_A : A;
-fun monologue_N : N;
-fun monomania_N : N;
-fun monomaniac_N : N;
-fun monoplane_N : N;
-fun monopolist_N : N;
-fun monopolistic_A : A;
-fun monopolization_N : N;
-fun monopolize_V2 : V2;
-fun monopoly_N : N;
-fun monorail_N : N;
-fun monosyllabic_A : A;
-fun monosyllable_N : N;
-fun monotheism_N : N;
-fun monotheist_N : N;
-fun monotheistic_A : A;
-fun monotone_N : N;
-fun monotonous_A : A;
-fun monotony_N : N;
-fun monotype_N : N;
-fun monoxide_N : N;
-fun monsieur_N : N;
-fun monsignor_N : N;
-fun monsoon_N : N;
-fun monster_N : N;
-fun monstrance_N : N;
-fun monstrosity_N : N;
-fun monstrous_A : A;
-fun montage_N : N;
-fun montana_PN : PN;
-fun monterrey_PN : PN;
-fun montevideo_PN : PN;
-fun month_N : N;
-fun monthly_A : A;
-fun monthly_Adv : Adv;
-fun monthly_N : N;
-fun montreal_PN : PN;
-fun montrose_PN : PN;
-fun montserrat_PN : PN;
-fun montserratian_A : A;
-fun montserratian_N : N;
-fun monument_N : N;
-fun monumental_A : A;
-fun monza_PN : PN;
-fun moo_N : N;
-fun moo_V : V;
-fun moo_cow_N : N;
-fun mooch_V : V;
-fun mood_N : N;
-fun moodily_Adv : Adv;
-fun moodiness_N : N;
-fun moody_A : A;
-fun moon_N : N;
-fun moon_V : V;
-fun moon_V2 : V2;
-fun moonbeam_N : N;
-fun moonflower_N : N;
-fun moonless_A : A;
-fun moonlight_N : N;
-fun moonlit_A : A;
-fun moonshine_N : N;
-fun moonstone_N : N;
-fun moonstruck_A : A;
-fun moony_A : A;
-fun moor_N : N;
-fun moor_V2 : V2;
-fun moorcock_N : N;
-fun moorfowl_N : N;
-fun moorgame_N : N;
-fun moorhen_N : N;
-fun mooring_mast_N : N;
-fun moorish_A : A;
-fun moorland_N : N;
-fun moose_N : N;
-fun moot_A : A;
-fun moot_V2 : V2;
-fun mop_N : N;
-fun mop_V : V;
-fun mop_V2 : V2;
-fun mope_N : N;
-fun mope_V : V;
-fun moped_N : N;
-fun moquette_N : N;
-fun moraine_N : N;
-fun moral_A : A;
-fun moral_N : N;
-fun morale_N : N;
-fun moralist_N : N;
-fun moralistic_A : A;
-fun morality_N : N;
-fun moralize_V : V;
-fun moralize_V2 : V2;
-fun morass_N : N;
-fun moratorium_N : N;
-fun morbid_A : A;
-fun morbidity_N : N;
-fun morbidness_N : N;
-fun mordant_A : A;
-fun more_Adv : Adv;
-fun more_N : N;
-fun morecambe_PN : PN;
-fun morello_N : N;
-fun moreover_Adv : Adv;
-fun moresque_A : A;
-fun morganatic_A : A;
-fun morgue_N : N;
-fun moribund_A : A;
-fun morley_PN : PN;
-fun mormon_A : A;
-fun mormon_N : N;
-fun mormonism_N : N;
-fun morn_N : N;
-fun morning_N : N;
-fun morning_glory_N : N;
-fun morning_room_N : N;
-fun moroccan_A : A;
-fun moroccan_N : N;
-fun morocco_N : N;
-fun morocco_PN : PN;
-fun moron_N : N;
-fun moronic_A : A;
-fun morose_A : A;
-fun moroseness_N : N;
-fun morpeth_PN : PN;
-fun morpheme_N : N;
-fun morphemic_A : A;
-fun morpheus_PN : PN;
-fun morphia_N : N;
-fun morphine_N : N;
-fun morphological_A : A;
-fun morphology_N : N;
-fun morris_dance_N : N;
-fun morrow_N : N;
-fun morse_N : N;
-fun morsel_N : N;
-fun mortal_A : A;
-fun mortal_N : N;
-fun mortality_N : N;
-fun mortar_N : N;
-fun mortar_V2 : V2;
-fun mortarboard_N : N;
-fun mortgage_N : N;
-fun mortgage_V2 : V2;
-fun mortgagee_N : N;
-fun mortgagor_N : N;
-fun mortice_N : N;
-fun mortice_V2 : V2;
-fun mortician_N : N;
-fun mortification_N : N;
-fun mortify_V : V;
-fun mortify_V2 : V2;
-fun mortise_N : N;
-fun mortise_V2 : V2;
-fun mortuary_N : N;
-fun mosaic_A : A;
-fun mosaic_N : N;
-fun moscow_PN : PN;
-fun moselle_N : N;
-fun mosey_V : V;
-fun moslem_A : A;
-fun moslem_N : N;
-fun mosque_N : N;
-fun mosquito_N : N;
-fun mosquito_craft_N : N;
-fun mosquito_net_N : N;
-fun moss_N : N;
-fun moss_grown_A : A;
-fun mossley_PN : PN;
-fun mossy_A : A;
-fun mostly_Adv : Adv;
-fun mote_N : N;
-fun motel_N : N;
-fun moth_N : N;
-fun moth_eaten_A : A;
-fun mothball_N : N;
-fun mother_N : N;
-fun mother_V2 : V2;
-fun mother_in_law_N : N;
-fun mother_of_pearl_N : N;
-fun motherhood_N : N;
-fun motherland_N : N;
-fun motherless_A : A;
-fun motherlike_A : A;
-fun motherliness_N : N;
-fun motherly_A : A;
-fun motherwell_PN : PN;
-fun mothproof_A : A;
-fun mothproof_V2 : V2;
-fun motif_N : N;
-fun motion_N : N;
-fun motion_V : V;
-fun motion_V2 : V2;
-fun motionless_A : A;
-fun motivate_V2 : V2;
-fun motivation_N : N;
-fun motive_A : A;
-fun motive_N : N;
-fun motiveless_A : A;
-fun motley_A : A;
-fun motley_N : N;
-fun motor_N : N;
-fun motor_V : V;
-fun motor_assisted_A : A;
-fun motorbike_N : N;
-fun motorboat_N : N;
-fun motorcade_N : N;
-fun motorcar_N : N;
-fun motorcoach_N : N;
-fun motorcycle_N : N;
-fun motorist_N : N;
-fun motorize_V2 : V2;
-fun motorman_N : N;
-fun motorway_N : N;
-fun mottle_V2 : V2;
-fun motto_N : N;
-fun moujik_N : N;
-fun mould_N : N;
-fun mould_V : V;
-fun mould_V2 : V2;
-fun moulder_V : V;
-fun moulding_N : N;
-fun mouldy_A : A;
-fun moult_N : N;
-fun moult_V : V;
-fun moult_V2 : V2;
-fun mound_N : N;
-fun mount_N : N;
-fun mount_V : V;
-fun mount_V2 : V2;
-fun mountain_N : N;
-fun mountain_ash_PN : PN;
-fun mountaineer_N : N;
-fun mountaineering_N : N;
-fun mountainous_A : A;
-fun mountebank_N : N;
-fun mountie_N : N;
-fun mourn_V : V;
-fun mourn_V2 : V2;
-fun mourner_N : N;
-fun mournful_A : A;
-fun mourning_N : N;
-fun mourning_band_N : N;
-fun mourning_ring_N : N;
-fun mouse_N : N;
-fun mouse_V : V;
-fun mouser_N : N;
-fun mousetrap_N : N;
-fun mousse_N : N;
-fun moustache_N : N;
-fun mousy_A : A;
-fun mouth_N : N;
-fun mouth_V : V;
-fun mouth_V2 : V2;
-fun mouth_organ_N : N;
-fun mouth_watering_A : A;
-fun mouthful_N : N;
-fun mouthpiece_N : N;
-fun movable_A : A;
-fun move_N : N;
-fun move_V : V;
-fun move_V2 : V2;
-fun movement_N : N;
-fun mover_N : N;
-fun movie_N : N;
-fun mow_N : N;
-fun mow_V : V;
-fun mow_V2 : V2;
-fun mower_N : N;
-fun mozambican_A : A;
-fun mozambican_N : N;
-fun mozambique_PN : PN;
-fun mp's_N : N;
-fun mp_N : N;
-fun mpg_N : N;
-fun mph_N : N;
-fun mr_PN : PN;
-fun mrs_PN : PN;
-fun ms_N : N;
-fun ms_PN : PN;
-fun msc_N : N;
-fun mt_PN : PN;
-fun much_A : A;
-fun much_Adv : Adv;
-fun much_N : N;
-fun muchness_N : N;
-fun mucilage_N : N;
-fun muck_N : N;
-fun muck_V : V;
-fun muck_V2 : V2;
-fun muck_heap_N : N;
-fun muckle_N : N;
-fun muckraker_N : N;
-fun muckraking_N : N;
-fun mucky_A : A;
-fun mucous_A : A;
-fun mucus_N : N;
-fun mud_N : N;
-fun mud_V2 : V2;
-fun mud_bath_N : N;
-fun muddle_N : N;
-fun muddle_V : V;
-fun muddle_V2 : V2;
-fun muddle_headed_A : A;
-fun muddy_A : A;
-fun muddy_V2 : V2;
-fun mudguard_N : N;
-fun mudslinger_N : N;
-fun muesli_N : N;
-fun muezzin_N : N;
-fun muff_N : N;
-fun muff_V2 : V2;
-fun muffin_N : N;
-fun muffin_man_N : N;
-fun muffle_V2 : V2;
-fun muffler_N : N;
-fun mufti_N : N;
-fun mug_N : N;
-fun mug_V2 : V2;
-fun mugger_N : N;
-fun mugginess_N : N;
-fun mugging_N : N;
-fun muggins_N : N;
-fun muggy_A : A;
-fun mugwump_N : N;
-fun muhammad_PN : PN;
-fun muhammadan_A : A;
-fun muhammadan_N : N;
-fun muhammadanism_N : N;
-fun mukden_PN : PN;
-fun mulatto_N : N;
-fun mulberry_N : N;
-fun mulch_N : N;
-fun mulch_V2 : V2;
-fun mulct_V2 : V2;
-fun mule_N : N;
-fun muleteer_N : N;
-fun mulheim_PN : PN;
-fun mulhouse_PN : PN;
-fun mulish_A : A;
-fun mulishness_N : N;
-fun mull_N : N;
-fun mull_V2 : V2;
-fun mullah_N : N;
-fun mullein_N : N;
-fun mullet_N : N;
-fun mulligatawny_N : N;
-fun mullion_N : N;
-fun mullioned_A : A;
-fun multan_PN : PN;
-fun multi_lingual_A : A;
-fun multifarious_A : A;
-fun multiform_A : A;
-fun multilateral_A : A;
-fun multiple_A : A;
-fun multiple_N : N;
-fun multiplex_A : A;
-fun multiplication_N : N;
-fun multiplicity_N : N;
-fun multiply_V : V;
-fun multiply_V2 : V2;
-fun multitude_N : N;
-fun multitudinous_A : A;
-fun multum_in_parvo_N : N;
-fun mum_A : A;
-fun mum_N : N;
-fun mumble_V : V;
-fun mumble_V2 : V2;
-fun mumbo_jumbo_N : N;
-fun mummer_N : N;
-fun mummery_N : N;
-fun mummification_N : N;
-fun mummify_V2 : V2;
-fun mummy_N : N;
-fun mumps_N : N;
-fun munch_V : V;
-fun munch_V2 : V2;
-fun mundane_A : A;
-fun munich_PN : PN;
-fun municipal_A : A;
-fun municipality_N : N;
-fun munificence_N : N;
-fun munificent_A : A;
-fun munition_N : N;
-fun munition_V2 : V2;
-fun munster_PN : PN;
-fun mural_A : A;
-fun mural_N : N;
-fun murder_N : N;
-fun murder_V2 : V2;
-fun murderer_N : N;
-fun murderess_N : N;
-fun murderous_A : A;
-fun muriel_PN : PN;
-fun murk_N : N;
-fun murkily_Adv : Adv;
-fun murky_A : A;
-fun murmur_N : N;
-fun murmur_V : V;
-fun murmur_V2 : V2;
-fun murphy_N : N;
-fun murrain_N : N;
-fun murton_PN : PN;
-fun muscatel_N : N;
-fun muscle_N : N;
-fun muscle_V : V;
-fun muscle_bound_A : A;
-fun muscleman_N : N;
-fun muscovite_A : A;
-fun muscovite_N : N;
-fun muscovy_N : N;
-fun muscular_A : A;
-fun muse_N : N;
-fun muse_V : V;
-fun museum_N : N;
-fun mush_N : N;
-fun mushroom_N : N;
-fun mushroom_V : V;
-fun mushy_A : A;
-fun music_N : N;
-fun music_box_N : N;
-fun music_hall_N : N;
-fun music_stand_N : N;
-fun music_stool_N : N;
-fun musical_A : A;
-fun musical_N : N;
-fun musical_box_N : N;
-fun musician_N : N;
-fun musicianship_N : N;
-fun musingly_Adv : Adv;
-fun musk_N : N;
-fun musk_deer_N : N;
-fun musk_rose_N : N;
-fun musket_N : N;
-fun musketeer_N : N;
-fun musketry_N : N;
-fun muskrat_N : N;
-fun musky_A : A;
-fun muslim_N : N;
-fun muslin_N : N;
-fun musquash_N : N;
-fun muss_N : N;
-fun muss_V2 : V2;
-fun mussel_N : N;
-fun musselburgh_PN : PN;
-fun must_N : N;
-fun mustachio_N : N;
-fun mustang_N : N;
-fun mustard_N : N;
-fun muster_N : N;
-fun muster_V : V;
-fun muster_V2 : V2;
-fun mustiness_N : N;
-fun musty_A : A;
-fun mutability_N : N;
-fun mutable_A : A;
-fun mutation_N : N;
-fun mutatis_mutandis_Adv : Adv;
-fun mute_A : A;
-fun mute_N : N;
-fun mute_V2 : V2;
-fun mutilate_V2 : V2;
-fun mutilation_N : N;
-fun mutineer_N : N;
-fun mutinous_A : A;
-fun mutiny_N : N;
-fun mutiny_V : V;
-fun mutt_N : N;
-fun mutter_N : N;
-fun mutter_V : V;
-fun mutter_V2 : V2;
-fun mutterer_N : N;
-fun mutton_N : N;
-fun mutton_head_N : N;
-fun mutual_A : A;
-fun muzzle_N : N;
-fun muzzle_V2 : V2;
-fun muzzle_velocity_N : N;
-fun muzzy_A : A;
-fun mycology_N : N;
-fun myelitis_N : N;
-fun myna_N : N;
-fun mynah_N : N;
-fun myopia_N : N;
-fun myopic_A : A;
-fun myra_PN : PN;
-fun myriad_A : A;
-fun myriad_N : N;
-fun myrmidon_N : N;
-fun myrrh_N : N;
-fun myrtle_N : N;
-fun mysterious_A : A;
-fun mystery_N : N;
-fun mystic_A : A;
-fun mystic_N : N;
-fun mystical_A : A;
-fun mysticism_N : N;
-fun mystification_N : N;
-fun mystify_V2 : V2;
-fun mystique_N : N;
-fun myth_N : N;
-fun mythical_A : A;
-fun mythological_A : A;
-fun mythologist_N : N;
-fun mythology_N : N;
-fun myxomatosis_N : N;
-fun melange_N : N;
-fun menage_N : N;
-fun mesalliance_N : N;
-fun metier_N : N;
-fun melee_N : N;
-fun naafi_N : N;
-fun nab_V2 : V2;
-fun nabob_N : N;
-fun nacelle_N : N;
-fun nacre_N : N;
-fun nadir_N : N;
-fun nag_N : N;
-fun nag_V : V;
-fun nag_V2 : V2;
-fun nagger_N : N;
-fun nagoya_PN : PN;
-fun nagpur_PN : PN;
-fun naiad_N : N;
-fun nail_N : N;
-fun nail_V2 : V2;
-fun nail_polish_N : N;
-fun nail_varnish_N : N;
-fun nailbrush_N : N;
-fun nailfile_N : N;
-fun nailsea_PN : PN;
-fun nainsook_N : N;
-fun naira_N : N;
-fun nairn_PN : PN;
-fun nairobi_PN : PN;
-fun naive_1_A : A;
-fun naivety_N : N;
-fun naivete_N : N;
-fun naked_A : A;
-fun nakedness_N : N;
-fun namby_pamby_A : A;
-fun namby_pamby_N : N;
-fun name_N : N;
-fun name_V2 : V2;
-fun name_day_N : N;
-fun name_drop_V : V;
-fun name_dropping_N : N;
-fun name_part_N : N;
-fun nameless_A : A;
-fun namely_Adv : Adv;
-fun nameplate_N : N;
-fun namesake_N : N;
-fun namibia_PN : PN;
-fun namibian_A : A;
-fun namibian_N : N;
-fun nanchang_PN : PN;
-fun nancy_PN : PN;
-fun nankeen_N : N;
-fun nanking_PN : PN;
-fun nanning_PN : PN;
-fun nanny_N : N;
-fun nanny_goat_N : N;
-fun nantwich_PN : PN;
-fun naomi_PN : PN;
-fun nap_N : N;
-fun nap_V : V;
-fun napalm_N : N;
-fun nape_N : N;
-fun napery_N : N;
-fun naphtha_N : N;
-fun naphthalene_N : N;
-fun napkin_N : N;
-fun napkin_ring_N : N;
-fun naples_PN : PN;
-fun napoleonic_A : A;
-fun napoli_PN : PN;
-fun nappy_N : N;
-fun narborough_PN : PN;
-fun narcissism_N : N;
-fun narcissus_N : N;
-fun narcotic_A : A;
-fun narcotic_N : N;
-fun nark_N : N;
-fun nark_V2 : V2;
-fun narrate_V2 : V2;
-fun narration_N : N;
-fun narrative_N : N;
-fun narrator_N : N;
-fun narrow_A : A;
-fun narrow_N : N;
-fun narrow_V : V;
-fun narrow_V2 : V2;
-fun narrow_minded_A : A;
-fun narrow_mindedness_N : N;
-fun narrowness_N : N;
-fun narwhal_N : N;
-fun nasa_PN : PN;
-fun nasal_A : A;
-fun nasal_N : N;
-fun nasalize_V2 : V2;
-fun nascent_A : A;
-fun nastily_Adv : Adv;
-fun nastiness_N : N;
-fun nasturtium_N : N;
-fun nasty_A : A;
-fun nat_PN : PN;
-fun natal_A : A;
-fun natalie_PN : PN;
-fun nathaniel_PN : PN;
-fun nation_N : N;
-fun national_A : A;
-fun national_N : N;
-fun nationalism_N : N;
-fun nationalist_A : A;
-fun nationalist_N : N;
-fun nationalistic_A : A;
-fun nationality_N : N;
-fun nationalization_N : N;
-fun nationalize_V2 : V2;
-fun nationwide_A : A;
-fun nationwide_Adv : Adv;
-fun native_A : A;
-fun native_N : N;
-fun nativity_N : N;
-fun nato_PN : PN;
-fun natter_V : V;
-fun nattily_Adv : Adv;
-fun natty_A : A;
-fun natural_A : A;
-fun natural_N : N;
-fun naturalism_N : N;
-fun naturalist_N : N;
-fun naturalistic_A : A;
-fun naturalization_N : N;
-fun naturalize_V : V;
-fun naturalize_V2 : V2;
-fun naturalness_N : N;
-fun nature_N : N;
-fun naturism_N : N;
-fun naturist_N : N;
-fun naught_N : N;
-fun naughtily_Adv : Adv;
-fun naughtiness_N : N;
-fun naughty_A : A;
-fun nauru_PN : PN;
-fun nauruan_A : A;
-fun nauruan_N : N;
-fun nausea_N : N;
-fun nauseate_V2 : V2;
-fun nauseous_A : A;
-fun nautch_N : N;
-fun nautch_girl_N : N;
-fun nautical_A : A;
-fun nautilus_N : N;
-fun naval_A : A;
-fun nave_N : N;
-fun navel_N : N;
-fun navigability_N : N;
-fun navigable_A : A;
-fun navigate_V : V;
-fun navigate_V2 : V2;
-fun navigation_N : N;
-fun navigator_N : N;
-fun navvy_N : N;
-fun navy_N : N;
-fun nay_Adv : Adv;
-fun nazi_A : A;
-fun nazi_N : N;
-fun nazism_N : N;
-fun naive_2_A : A;
-fun nb_PN : PN;
-fun nco_N : N;
-fun ne'er_Adv : Adv;
-fun ne'er_do_well_N : N;
-fun ne_plus_ultra_N : N;
-fun neanderthal_A : A;
-fun neap_N : N;
-fun neap_tide_N : N;
-fun neapolitan_A : A;
-fun neapolitan_N : N;
-fun near_A : A;
-fun near_Adv : Adv;
-fun near_V : V;
-fun near_V2 : V2;
-fun near_sighted_A : A;
-fun nearby_A : A;
-fun nearer_Adv : Adv;
-fun nearest_Adv : Adv;
-fun nearness_N : N;
-fun nearside_N : N;
-fun neat_A : A;
-fun neath_PN : PN;
-fun neatness_N : N;
-fun nebraska_PN : PN;
-fun nebula_N : N;
-fun nebular_A : A;
-fun nebulous_A : A;
-fun necessary_A : A;
-fun necessary_N : N;
-fun necessitate_V2 : V2;
-fun necessitous_A : A;
-fun necessity_N : N;
-fun neck_N : N;
-fun neck_V : V;
-fun neckband_N : N;
-fun neckcloth_N : N;
-fun neckerchief_N : N;
-fun necklace_N : N;
-fun necklet_N : N;
-fun neckline_N : N;
-fun necktie_N : N;
-fun neckwear_N : N;
-fun necromancer_N : N;
-fun necromancy_N : N;
-fun necropolis_N : N;
-fun nectar_N : N;
-fun nectarine_N : N;
-fun ned_PN : PN;
-fun neddy_PN : PN;
-fun need_N : N;
-fun need_V2 : V2;
-fun needful_A : A;
-fun needle_N : N;
-fun needle_V2 : V2;
-fun needlecraft_N : N;
-fun needless_A : A;
-fun needlewoman_N : N;
-fun needlework_N : N;
-fun needs_Adv : Adv;
-fun needy_A : A;
-fun nefarious_A : A;
-fun nefariousness_N : N;
-fun negate_V2 : V2;
-fun negation_N : N;
-fun negative_A : A;
-fun negative_N : N;
-fun negative_V2 : V2;
-fun neglect_N : N;
-fun neglect_V2 : V2;
-fun neglectful_A : A;
-fun neglectfulness_N : N;
-fun negligee_N : N;
-fun negligence_N : N;
-fun negligent_A : A;
-fun negligible_A : A;
-fun negotiable_A : A;
-fun negotiate_V : V;
-fun negotiate_V2 : V2;
-fun negotiation_N : N;
-fun negotiator_N : N;
-fun negress_N : N;
-fun negro_N : N;
-fun negroid_A : A;
-fun negroid_N : N;
-fun negus_N : N;
-fun neigh_N : N;
-fun neigh_V : V;
-fun neighbour_N : N;
-fun neighbour_V : V;
-fun neighbour_V2 : V2;
-fun neighbourhood_N : N;
-fun neighbourliness_N : N;
-fun neighbourly_A : A;
-fun neil_PN : PN;
-fun neither_A : A;
-fun neither_Adv : Adv;
-fun nell_PN : PN;
-fun nelly_N : N;
-fun nelly_PN : PN;
-fun nelson_PN : PN;
-fun nem_con_Adv : Adv;
-fun nemesis_N : N;
-fun neocolonialism_N : N;
-fun neolithic_A : A;
-fun neologism_N : N;
-fun neon_N : N;
-fun neophyte_N : N;
-fun neoplasm_N : N;
-fun nepal_PN : PN;
-fun nepalese_A : A;
-fun nepalese_N : N;
-fun nepali_A : A;
-fun nepali_N : N;
-fun nephew_N : N;
-fun nephritis_N : N;
-fun nepotism_N : N;
-fun neptune_PN : PN;
-fun nereid_N : N;
-fun nerve_N : N;
-fun nerve_V2 : V2;
-fun nerve_cell_N : N;
-fun nerve_centre_N : N;
-fun nerve_racking_A : A;
-fun nerveless_A : A;
-fun nervous_A : A;
-fun nervousness_N : N;
-fun nervy_A : A;
-fun nescience_N : N;
-fun nescient_A : A;
-fun ness_N : N;
-fun nest_N : N;
-fun nest_V : V;
-fun nest_egg_N : N;
-fun nestle_V : V;
-fun nestle_V2 : V2;
-fun nestling_N : N;
-fun neston_PN : PN;
-fun nestor_PN : PN;
-fun net_A : A;
-fun net_N : N;
-fun net_V2 : V2;
-fun netball_N : N;
-fun nether_A : A;
-fun netherlander_N : N;
-fun netherlands_PN : PN;
-fun nethermost_A : A;
-fun netley_PN : PN;
-fun nett_A : A;
-fun nett_V2 : V2;
-fun netting_N : N;
-fun nettle_N : N;
-fun nettle_V2 : V2;
-fun nettlerash_N : N;
-fun network_N : N;
-fun neural_A : A;
-fun neuralgia_N : N;
-fun neuralgic_A : A;
-fun neurasthenia_N : N;
-fun neurasthenic_A : A;
-fun neurasthenic_N : N;
-fun neuritis_N : N;
-fun neurologist_N : N;
-fun neurology_N : N;
-fun neurosis_N : N;
-fun neurotic_A : A;
-fun neurotic_N : N;
-fun neurotically_Adv : Adv;
-fun neuss_PN : PN;
-fun neuter_A : A;
-fun neuter_N : N;
-fun neuter_V2 : V2;
-fun neutral_A : A;
-fun neutral_N : N;
-fun neutrality_N : N;
-fun neutralization_N : N;
-fun neutralize_V2 : V2;
-fun neutron_N : N;
-fun nevada_PN : PN;
-fun never_Adv : Adv;
-fun nevermore_Adv : Adv;
-fun nevertheless_Adv : Adv;
-fun neville_PN : PN;
-fun new_A : A;
-fun new_Adv : Adv;
-fun new_cumnock_PN : PN;
-fun new_mills_PN : PN;
-fun new_orleans_PN : PN;
-fun new_tredegar_PN : PN;
-fun new_windsor_PN : PN;
-fun new_york_PN : PN;
-fun newark_PN : PN;
-fun newarthill_PN : PN;
-fun newbiggin_PN : PN;
-fun newbury_PN : PN;
-fun newcastle_PN : PN;
-fun newcastle_under_lyme_PN : PN;
-fun newcastle_upon_tyne_PN : PN;
-fun newcomer_N : N;
-fun newel_N : N;
-fun newfangled_A : A;
-fun newfoundland_PN : PN;
-fun newham_PN : PN;
-fun newhaven_PN : PN;
-fun newlywed_N : N;
-fun newmains_PN : PN;
-fun newmarket_N : N;
-fun newmarket_PN : PN;
-fun newness_N : N;
-fun newport_PN : PN;
-fun newport_pagnell_PN : PN;
-fun newquay_PN : PN;
-fun newry_PN : PN;
-fun news_N : N;
-fun newsagent_N : N;
-fun newsboy_N : N;
-fun newscast_N : N;
-fun newscaster_N : N;
-fun newsdealer_N : N;
-fun newsflash_N : N;
-fun newsless_A : A;
-fun newsletter_N : N;
-fun newsmonger_N : N;
-fun newspaper_N : N;
-fun newspaperman_N : N;
-fun newsprint_N : N;
-fun newsreel_N : N;
-fun newsroom_N : N;
-fun newssheet_N : N;
-fun newsstand_N : N;
-fun newsvendor_N : N;
-fun newsworthy_A : A;
-fun newsy_A : A;
-fun newt_N : N;
-fun newton_abbot_PN : PN;
-fun newton_aycliffe_PN : PN;
-fun newton_le_willows_PN : PN;
-fun newton_mearns_PN : PN;
-fun newtonian_A : A;
-fun newtonian_N : N;
-fun newtown_PN : PN;
-fun next_A : A;
-fun next_Adv : Adv;
-fun next_N : N;
-fun nexus_N : N;
-fun nhs_N : N;
-fun nib_N : N;
-fun nibble_N : N;
-fun nibble_V : V;
-fun nibble_V2 : V2;
-fun nicaragua_PN : PN;
-fun nicaraguan_A : A;
-fun nicaraguan_N : N;
-fun nice_A : A;
-fun nice_PN : PN;
-fun niceness_N : N;
-fun nicety_N : N;
-fun niche_N : N;
-fun nicholas_PN : PN;
-fun nick_N : N;
-fun nick_PN : PN;
-fun nick_V2 : V2;
-fun nickel_N : N;
-fun nickel_V2 : V2;
-fun nicknack_N : N;
-fun nickname_N : N;
-fun nickname_V2 : V2;
-fun nicola_PN : PN;
-fun nicole_PN : PN;
-fun nicotine_N : N;
-fun niece_N : N;
-fun niff_N : N;
-fun niffy_A : A;
-fun nifty_A : A;
-fun nigel_PN : PN;
-fun niger_PN : PN;
-fun nigeria_PN : PN;
-fun nigerian_A : A;
-fun nigerian_N : N;
-fun nigerien_A : A;
-fun nigerien_N : N;
-fun niggard_N : N;
-fun niggardliness_N : N;
-fun niggardly_A : A;
-fun nigger_N : N;
-fun niggle_V : V;
-fun niggling_A : A;
-fun nigh_Adv : Adv;
-fun nigher_Adv : Adv;
-fun nighest_Adv : Adv;
-fun night_N : N;
-fun night_bell_N : N;
-fun night_bird_N : N;
-fun night_light_N : N;
-fun night_line_N : N;
-fun night_porter_N : N;
-fun night_soil_N : N;
-fun night_stop_N : N;
-fun night_time_N : N;
-fun night_watch_N : N;
-fun night_watchman_N : N;
-fun nightcap_N : N;
-fun nightclub_N : N;
-fun nightdress_N : N;
-fun nightfall_N : N;
-fun nightgown_N : N;
-fun nightie_N : N;
-fun nightingale_N : N;
-fun nightjar_N : N;
-fun nightlong_A : A;
-fun nightly_A : A;
-fun nightly_Adv : Adv;
-fun nightmare_N : N;
-fun nightmarish_A : A;
-fun nightshade_N : N;
-fun nightshirt_N : N;
-fun nightwork_N : N;
-fun nihilism_N : N;
-fun nihilist_N : N;
-fun nihilistic_A : A;
-fun nijmegen_PN : PN;
-fun nil_N : N;
-fun nilotic_A : A;
-fun nimble_A : A;
-fun nimbleness_N : N;
-fun nimbly_Adv : Adv;
-fun nimbus_N : N;
-fun niminy_piminy_A : A;
-fun nimrod_PN : PN;
-fun nincompoop_N : N;
-fun ninefold_A : A;
-fun ninefold_Adv : Adv;
-fun ninepence_N : N;
-fun ninepenny_A : A;
-fun ninepins_N : N;
-fun ninny_N : N;
-fun ninth_A : A;
-fun ninth_N : N;
-fun niobe_PN : PN;
-fun nip_N : N;
-fun nip_V : V;
-fun nip_V2 : V2;
-fun nipper_N : N;
-fun nipping_A : A;
-fun nipple_N : N;
-fun nipponese_A : A;
-fun nippy_A : A;
-fun nirvana_N : N;
-fun nisi_A : A;
-fun nissen_PN : PN;
-fun nit_N : N;
-fun nitrate_N : N;
-fun nitre_N : N;
-fun nitric_A : A;
-fun nitrochalk_N : N;
-fun nitrogen_N : N;
-fun nitroglycerin_N : N;
-fun nitroglycerine_N : N;
-fun nitrous_A : A;
-fun nitty_gritty_N : N;
-fun nitwit_N : N;
-fun nitwitted_A : A;
-fun nix_N : N;
-fun no_ball_N : N;
-fun no_go_A : A;
-fun no_man's_land_N : N;
-fun noah_PN : PN;
-fun nob_N : N;
-fun nobble_V2 : V2;
-fun nobel_PN : PN;
-fun nobility_N : N;
-fun noble_A : A;
-fun noble_N : N;
-fun noble_mindedness_N : N;
-fun nobleman_N : N;
-fun noblesse_N : N;
-fun noblesse_oblige_N : N;
-fun nobly_Adv : Adv;
-fun noctambulist_N : N;
-fun nocturnal_A : A;
-fun nocturne_N : N;
-fun nod_N : N;
-fun nod_V : V;
-fun nod_V2 : V2;
-fun noddle_N : N;
-fun node_N : N;
-fun nodular_A : A;
-fun nodulated_A : A;
-fun nodule_N : N;
-fun noel_N : N;
-fun noel_PN : PN;
-fun noggin_N : N;
-fun nohow_Adv : Adv;
-fun noise_N : N;
-fun noise_V2 : V2;
-fun noiseless_A : A;
-fun noiselessness_N : N;
-fun noisily_Adv : Adv;
-fun noisiness_N : N;
-fun noisome_A : A;
-fun noisy_A : A;
-fun nom_de_plume_N : N;
-fun nomad_N : N;
-fun nomadic_A : A;
-fun nomenclature_N : N;
-fun nominal_A : A;
-fun nominate_V2 : V2;
-fun nomination_N : N;
-fun nominative_A : A;
-fun nominative_N : N;
-fun nominee_N : N;
-fun non_compliance_N : N;
-fun non_compos_mentis_A : A;
-fun non_contentious_A : A;
-fun non_interference_N : N;
-fun non_sequitur_N : N;
-fun non_skid_A : A;
-fun non_u_A : A;
-fun nonage_N : N;
-fun nonagenarian_A : A;
-fun nonagenarian_N : N;
-fun nonaggression_N : N;
-fun nonalignment_N : N;
-fun nonce_N : N;
-fun nonce_word_N : N;
-fun nonchalance_N : N;
-fun nonchalant_A : A;
-fun noncombatant_N : N;
-fun noncommissioned_A : A;
-fun noncommittal_A : A;
-fun nonconductor_N : N;
-fun nonconformist_N : N;
-fun nonconformity_N : N;
-fun nondescript_A : A;
-fun nondescript_N : N;
-fun none_Adv : Adv;
-fun nonentity_N : N;
-fun nonesuch_N : N;
-fun nonevent_N : N;
-fun nonfiction_N : N;
-fun nonflammable_A : A;
-fun nonintervention_N : N;
-fun nonmoral_A : A;
-fun nonobservance_N : N;
-fun nonpareil_A : A;
-fun nonpareil_N : N;
-fun nonpayment_N : N;
-fun nonplus_V2 : V2;
-fun nonresident_A : A;
-fun nonsense_N : N;
-fun nonsensical_A : A;
-fun nonsmoker_N : N;
-fun nonstarter_N : N;
-fun nonstick_A : A;
-fun nonstop_A : A;
-fun nonstop_Adv : Adv;
-fun nonsuch_N : N;
-fun nonunion_A : A;
-fun nonviolence_N : N;
-fun noodle_N : N;
-fun nook_N : N;
-fun noon_N : N;
-fun noonday_A : A;
-fun noontide_N : N;
-fun noose_N : N;
-fun noose_V2 : V2;
-fun nor'_east_Adv : Adv;
-fun nor'_east_N : N;
-fun nor'_nor'_east_Adv : Adv;
-fun nor'_nor'_east_N : N;
-fun nor'_nor'_west_Adv : Adv;
-fun nor'_nor'_west_N : N;
-fun nor'_west_Adv : Adv;
-fun nor'_west_N : N;
-fun nora_PN : PN;
-fun nordic_A : A;
-fun nordic_N : N;
-fun norfolk_PN : PN;
-fun norm_N : N;
-fun normal_A : A;
-fun normal_N : N;
-fun normalcy_N : N;
-fun normality_N : N;
-fun normalization_N : N;
-fun normalize_V2 : V2;
-fun norman_A : A;
-fun norman_N : N;
-fun norman_PN : PN;
-fun normanton_PN : PN;
-fun normantown_PN : PN;
-fun normative_A : A;
-fun norse_A : A;
-fun norse_N : N;
-fun north_A : A;
-fun north_Adv : Adv;
-fun north_N : N;
-fun north_northeast_Adv : Adv;
-fun north_northeast_N : N;
-fun north_northwest_Adv : Adv;
-fun north_northwest_N : N;
-fun north_walsham_PN : PN;
-fun northallerton_PN : PN;
-fun northam_PN : PN;
-fun northampton_PN : PN;
-fun northamptonshire_PN : PN;
-fun northeast_Adv : Adv;
-fun northeast_N : N;
-fun northeaster_N : N;
-fun northeasterly_A : A;
-fun northeastern_A : A;
-fun northerly_A : A;
-fun northerly_Adv : Adv;
-fun northern_A : A;
-fun northerner_N : N;
-fun northernmost_A : A;
-fun northman_N : N;
-fun northumberland_PN : PN;
-fun northwards_Adv : Adv;
-fun northwest_Adv : Adv;
-fun northwest_N : N;
-fun northwester_N : N;
-fun northwesterly_A : A;
-fun northwestern_A : A;
-fun northwich_PN : PN;
-fun norton_PN : PN;
-fun norway_PN : PN;
-fun norwegian_A : A;
-fun norwegian_N : N;
-fun norwich_PN : PN;
-fun nos_N : N;
-fun nose_N : N;
-fun nose_V : V;
-fun nose_V2 : V2;
-fun nose_flute_N : N;
-fun nose_wheel_N : N;
-fun nosebag_N : N;
-fun nosebleed_N : N;
-fun nosecone_N : N;
-fun nosed_A : A;
-fun nosedive_N : N;
-fun nosedive_V : V;
-fun nosegay_N : N;
-fun nosering_N : N;
-fun nosey_A : A;
-fun nosh_N : N;
-fun nosh_V : V;
-fun nosh_up_N : N;
-fun nostalgia_N : N;
-fun nostalgic_A : A;
-fun nostalgically_Adv : Adv;
-fun nostril_N : N;
-fun nostrum_N : N;
-fun nosy_A : A;
-fun not_Adv : Adv;
-fun notability_N : N;
-fun notable_A : A;
-fun notable_N : N;
-fun notary_N : N;
-fun notation_N : N;
-fun notch_N : N;
-fun notch_V2 : V2;
-fun note_N : N;
-fun note_V2 : V2;
-fun notebook_N : N;
-fun notecase_N : N;
-fun noted_A : A;
-fun notepaper_N : N;
-fun noteworthy_A : A;
-fun nothing_Adv : Adv;
-fun nothingness_N : N;
-fun notice_N : N;
-fun notice_V : V;
-fun notice_V2 : V2;
-fun notice_board_N : N;
-fun noticeable_A : A;
-fun notifiable_A : A;
-fun notification_N : N;
-fun notify_V2 : V2;
-fun notion_N : N;
-fun notional_A : A;
-fun notoriety_N : N;
-fun notorious_A : A;
-fun nottingham_PN : PN;
-fun nottinghamshire_PN : PN;
-fun notwithstanding_Adv : Adv;
-fun nougat_N : N;
-fun nought_N : N;
-fun noun_N : N;
-fun nourish_V2 : V2;
-fun nourishment_N : N;
-fun nous_N : N;
-fun nouveau_riche_N : N;
-fun nov_PN : PN;
-fun nova_N : N;
-fun nova_scotia_PN : PN;
-fun novara_PN : PN;
-fun novel_A : A;
-fun novel_N : N;
-fun novelette_N : N;
-fun novelist_N : N;
-fun novelty_N : N;
-fun november_N : N;
-fun november_PN : PN;
-fun novice_N : N;
-fun noviciate_N : N;
-fun novitiate_N : N;
-fun novokuznetsk_PN : PN;
-fun novosibirsk_PN : PN;
-fun now_Adv : Adv;
-fun nowadays_Adv : Adv;
-fun nowhere_Adv : Adv;
-fun nowise_Adv : Adv;
-fun noxious_A : A;
-fun noxiousness_N : N;
-fun nozzle_N : N;
-fun nr_PN : PN;
-fun nspcc_N : N;
-fun nt_N : N;
-fun nuance_N : N;
-fun nub_N : N;
-fun nubile_A : A;
-fun nuclear_A : A;
-fun nucleic_A : A;
-fun nucleus_N : N;
-fun nude_A : A;
-fun nude_N : N;
-fun nudge_N : N;
-fun nudge_V2 : V2;
-fun nudism_N : N;
-fun nudist_N : N;
-fun nudity_N : N;
-fun nugatory_A : A;
-fun nugget_N : N;
-fun nuisance_N : N;
-fun null_A : A;
-fun nullification_N : N;
-fun nullify_V2 : V2;
-fun nullity_N : N;
-fun numb_A : A;
-fun numb_V2 : V2;
-fun number_N : N;
-fun number_V2 : V2;
-fun numberless_A : A;
-fun numberplate_N : N;
-fun numbness_N : N;
-fun numerable_A : A;
-fun numeracy_N : N;
-fun numeral_A : A;
-fun numeral_N : N;
-fun numerate_A : A;
-fun numeration_N : N;
-fun numerator_N : N;
-fun numeric_A : A;
-fun numerical_A : A;
-fun numerous_A : A;
-fun numinous_A : A;
-fun numismatics_N : N;
-fun numismatist_N : N;
-fun numskull_N : N;
-fun nun_N : N;
-fun nuncio_N : N;
-fun nuneaton_PN : PN;
-fun nunnery_N : N;
-fun nuptial_A : A;
-fun nurenburg_PN : PN;
-fun nurse_N : N;
-fun nurse_V2 : V2;
-fun nurseling_N : N;
-fun nursemaid_N : N;
-fun nursery_N : N;
-fun nurseryman_N : N;
-fun nursing_home_N : N;
-fun nursling_N : N;
-fun nurture_N : N;
-fun nurture_V2 : V2;
-fun nut_N : N;
-fun nut_V : V;
-fun nut_brown_A : A;
-fun nut_butter_N : N;
-fun nuthouse_N : N;
-fun nutmeg_N : N;
-fun nutria_N : N;
-fun nutrient_A : A;
-fun nutrient_N : N;
-fun nutriment_N : N;
-fun nutrition_N : N;
-fun nutritional_A : A;
-fun nutritious_A : A;
-fun nutritive_A : A;
-fun nuts_A : A;
-fun nutshell_N : N;
-fun nutty_A : A;
-fun nuzzle_V : V;
-fun nuzzle_V2 : V2;
-fun nylon_N : N;
-fun nymph_N : N;
-fun nymphet_N : N;
-fun nympho_N : N;
-fun nymphomania_N : N;
-fun nymphomaniac_A : A;
-fun nymphomaniac_N : N;
-fun nee_A : A;
-fun neglige_N : N;
-fun o'er_Adv : Adv;
-fun o_level_N : N;
-fun oaf_N : N;
-fun oafish_A : A;
-fun oak_N : N;
-fun oak_apple_N : N;
-fun oaken_A : A;
-fun oakengates_PN : PN;
-fun oakum_N : N;
-fun oap's_N : N;
-fun oap_N : N;
-fun oar_N : N;
-fun oarsman_N : N;
-fun oarsmanship_N : N;
-fun oarswoman_N : N;
-fun oasis_N : N;
-fun oast_N : N;
-fun oasthouse_N : N;
-fun oat_N : N;
-fun oatcake_N : N;
-fun oath_N : N;
-fun oatmeal_N : N;
-fun oau_N : N;
-fun ob_PN : PN;
-fun oban_PN : PN;
-fun obbligato_N : N;
-fun obduracy_N : N;
-fun obdurate_A : A;
-fun obedience_N : N;
-fun obedient_A : A;
-fun obeisance_N : N;
-fun obelisk_N : N;
-fun oberhausen_PN : PN;
-fun obese_A : A;
-fun obesity_N : N;
-fun obey_V : V;
-fun obey_V2 : V2;
-fun obfuscate_V2 : V2;
-fun obi_N : N;
-fun obiter_dictum_N : N;
-fun obituary_N : N;
-fun object_N : N;
-fun object_V : V;
-fun object_V2 : V2;
-fun objection_N : N;
-fun objectionable_A : A;
-fun objective_A : A;
-fun objective_N : N;
-fun objectivity_N : N;
-fun objector_N : N;
-fun objurgate_V2 : V2;
-fun objurgation_N : N;
-fun oblate_A : A;
-fun oblation_N : N;
-fun obligate_V2 : V2;
-fun obligation_N : N;
-fun obligatory_A : A;
-fun oblige_V2 : V2;
-fun obliging_A : A;
-fun oblique_A : A;
-fun obliquity_N : N;
-fun obliterate_V2 : V2;
-fun obliteration_N : N;
-fun oblivion_N : N;
-fun oblivious_A : A;
-fun oblong_A : A;
-fun oblong_N : N;
-fun obloquy_N : N;
-fun obnoxious_A : A;
-fun obnoxiousness_N : N;
-fun oboe_N : N;
-fun oboist_N : N;
-fun obscene_A : A;
-fun obscenity_N : N;
-fun obscurantism_N : N;
-fun obscurantist_N : N;
-fun obscure_A : A;
-fun obscure_V2 : V2;
-fun obscurity_N : N;
-fun obsequious_A : A;
-fun obsequiousness_N : N;
-fun observable_A : A;
-fun observance_N : N;
-fun observant_A : A;
-fun observation_N : N;
-fun observatory_N : N;
-fun observe_V : V;
-fun observe_V2 : V2;
-fun observer_N : N;
-fun observing_A : A;
-fun obsess_V2 : V2;
-fun obsession_N : N;
-fun obsessional_A : A;
-fun obsessive_A : A;
-fun obsidian_N : N;
-fun obsolescence_N : N;
-fun obsolescent_A : A;
-fun obsolete_A : A;
-fun obstacle_N : N;
-fun obstetric_A : A;
-fun obstetrical_A : A;
-fun obstetrician_N : N;
-fun obstetrics_N : N;
-fun obstinacy_N : N;
-fun obstinate_A : A;
-fun obstreperous_A : A;
-fun obstreperousness_N : N;
-fun obstruct_V2 : V2;
-fun obstruction_N : N;
-fun obstructionism_N : N;
-fun obstructionist_N : N;
-fun obstructive_A : A;
-fun obtain_V : V;
-fun obtain_V2 : V2;
-fun obtainable_A : A;
-fun obtrude_V : V;
-fun obtrude_V2 : V2;
-fun obtrusive_A : A;
-fun obtuse_A : A;
-fun obtuseness_N : N;
-fun obverse_N : N;
-fun obviate_V2 : V2;
-fun obvious_A : A;
-fun obviousness_N : N;
-fun ocarina_N : N;
-fun occasion_N : N;
-fun occasion_V2 : V2;
-fun occasional_A : A;
-fun occident_PN : PN;
-fun occidental_A : A;
-fun occidental_N : N;
-fun occult_A : A;
-fun occult_N : N;
-fun occupancy_N : N;
-fun occupant_N : N;
-fun occupation_N : N;
-fun occupational_A : A;
-fun occupier_N : N;
-fun occupy_V2 : V2;
-fun occur_V : V;
-fun occurrence_N : N;
-fun ocean_N : N;
-fun oceanic_A : A;
-fun ochre_N : N;
-fun ockbrook_PN : PN;
-fun ockendon_PN : PN;
-fun oct_PN : PN;
-fun octagon_N : N;
-fun octagonal_A : A;
-fun octane_N : N;
-fun octave_N : N;
-fun octavo_N : N;
-fun octet_N : N;
-fun octette_N : N;
-fun october_N : N;
-fun october_PN : PN;
-fun octogenarian_A : A;
-fun octogenarian_N : N;
-fun octopus_N : N;
-fun octroi_N : N;
-fun ocular_A : A;
-fun oculist_N : N;
-fun odalisque_N : N;
-fun odd_A : A;
-fun odd_job_A : A;
-fun oddity_N : N;
-fun oddment_N : N;
-fun odds_on_A : A;
-fun odds_on_Adv : Adv;
-fun ode_N : N;
-fun odessa_PN : PN;
-fun odious_A : A;
-fun odium_N : N;
-fun odoriferous_A : A;
-fun odorous_A : A;
-fun odour_N : N;
-fun odourless_A : A;
-fun odyssey_N : N;
-fun oecd_N : N;
-fun oecumenical_A : A;
-fun oed_N : N;
-fun oedipus_PN : PN;
-fun oesophagus_N : N;
-fun off_A : A;
-fun off_Adv : Adv;
-fun off_day_N : N;
-fun off_licence_N : N;
-fun off_peak_A : A;
-fun off_putting_A : A;
-fun off_street_A : A;
-fun off_white_A : A;
-fun offal_N : N;
-fun offaly_PN : PN;
-fun offbeat_A : A;
-fun offenbach_PN : PN;
-fun offence_N : N;
-fun offenceless_A : A;
-fun offend_V : V;
-fun offend_V2 : V2;
-fun offender_N : N;
-fun offensive_A : A;
-fun offensive_N : N;
-fun offensiveness_N : N;
-fun offer_N : N;
-fun offer_V : V;
-fun offer_V2 : V2;
-fun offering_N : N;
-fun offertory_N : N;
-fun offhand_A : A;
-fun offhand_Adv : Adv;
-fun offhanded_A : A;
-fun offhanded_Adv : Adv;
-fun offhandedly_A : A;
-fun office_N : N;
-fun office_bearer_N : N;
-fun office_block_N : N;
-fun office_boy_N : N;
-fun office_holder_N : N;
-fun officer_N : N;
-fun official_A : A;
-fun official_N : N;
-fun officialdom_N : N;
-fun officialese_N : N;
-fun officiate_V : V;
-fun officious_A : A;
-fun officiousness_N : N;
-fun offing_N : N;
-fun offish_A : A;
-fun offprint_N : N;
-fun offset_N : N;
-fun offset_V2 : V2;
-fun offshoot_N : N;
-fun offshore_A : A;
-fun offside_A : A;
-fun offside_Adv : Adv;
-fun offspring_N : N;
-fun offstage_A : A;
-fun offstage_Adv : Adv;
-fun oft_Adv : Adv;
-fun oft_times_Adv : Adv;
-fun often_Adv : Adv;
-fun oftener_Adv : Adv;
-fun ogle_V : V;
-fun ogle_V2 : V2;
-fun ogmore_valley_PN : PN;
-fun ogre_N : N;
-fun ogreish_A : A;
-fun ogress_N : N;
-fun ohio_PN : PN;
-fun ohm_N : N;
-fun oil_N : N;
-fun oil_V2 : V2;
-fun oil_bearing_A : A;
-fun oil_burner_N : N;
-fun oil_cake_N : N;
-fun oil_painting_N : N;
-fun oil_palm_N : N;
-fun oil_paper_N : N;
-fun oil_rig_N : N;
-fun oil_silk_N : N;
-fun oil_slick_N : N;
-fun oil_tanker_N : N;
-fun oil_well_N : N;
-fun oilcan_N : N;
-fun oilcloth_N : N;
-fun oiled_A : A;
-fun oiler_N : N;
-fun oilfield_N : N;
-fun oilfired_A : A;
-fun oiliness_N : N;
-fun oilskin_N : N;
-fun oily_A : A;
-fun ointment_N : N;
-fun okapi_N : N;
-fun okay_A : A;
-fun okay_Adv : Adv;
-fun okay_N : N;
-fun okay_V2 : V2;
-fun oklahoma_PN : PN;
-fun oklahoma_city_PN : PN;
-fun okra_N : N;
-fun old_A : A;
-fun old_N : N;
-fun old_fashioned_A : A;
-fun old_maidish_A : A;
-fun old_time_A : A;
-fun old_timer_N : N;
-fun old_windsor_PN : PN;
-fun old_womanish_A : A;
-fun old_world_A : A;
-fun olden_A : A;
-fun oldenburg_PN : PN;
-fun oldham_PN : PN;
-fun oldish_A : A;
-fun oldland_PN : PN;
-fun oldster_N : N;
-fun oleaginous_A : A;
-fun oleander_N : N;
-fun olfactory_A : A;
-fun oligarch_N : N;
-fun oligarchy_N : N;
-fun olive_A : A;
-fun olive_N : N;
-fun olive_PN : PN;
-fun olive_tree_N : N;
-fun oliver_PN : PN;
-fun olivia_PN : PN;
-fun ollerton_PN : PN;
-fun ollie_PN : PN;
-fun olympiad_N : N;
-fun olympian_A : A;
-fun olympian_N : N;
-fun olympic_A : A;
-fun olympics_PN : PN;
-fun oman_PN : PN;
-fun omani_A : A;
-fun omani_N : N;
-fun ombudsman_N : N;
-fun omega_N : N;
-fun omelet_N : N;
-fun omelette_N : N;
-fun omen_N : N;
-fun omen_V2 : V2;
-fun ominous_A : A;
-fun omission_N : N;
-fun omit_V2 : V2;
-fun omnibus_N : N;
-fun omnipotence_N : N;
-fun omnipotent_A : A;
-fun omniscience_N : N;
-fun omniscient_A : A;
-fun omnivorous_A : A;
-fun omsk_PN : PN;
-fun on_Adv : Adv;
-fun on_licence_N : N;
-fun once_Adv : Adv;
-fun oncoming_A : A;
-fun oncoming_N : N;
-fun one_armed_A : A;
-fun one_eyed_A : A;
-fun one_horse_A : A;
-fun one_idea'd_A : A;
-fun one_sided_A : A;
-fun one_step_N : N;
-fun one_time_A : A;
-fun one_upmanship_N : N;
-fun oneness_N : N;
-fun onerous_A : A;
-fun ongar_PN : PN;
-fun ongoing_A : A;
-fun onion_N : N;
-fun onlooker_N : N;
-fun only_A : A;
-fun only_Adv : Adv;
-fun onomatopoeia_N : N;
-fun onrush_N : N;
-fun onset_N : N;
-fun onshore_A : A;
-fun onshore_Adv : Adv;
-fun onslaught_N : N;
-fun ontario_PN : PN;
-fun ontology_N : N;
-fun onus_N : N;
-fun onward_A : A;
-fun onward_Adv : Adv;
-fun onwards_Adv : Adv;
-fun onyx_N : N;
-fun oomph_N : N;
-fun ooze_N : N;
-fun ooze_V : V;
-fun ooze_V2 : V2;
-fun oozy_A : A;
-fun op_PN : PN;
-fun op_art_N : N;
-fun op_cit_PN : PN;
-fun opacity_N : N;
-fun opal_N : N;
-fun opalescent_A : A;
-fun opaque_A : A;
-fun opaqueness_N : N;
-fun opec_PN : PN;
-fun open_A : A;
-fun open_N : N;
-fun open_V : V;
-fun open_V2 : V2;
-fun open_air_A : A;
-fun open_ended_A : A;
-fun open_eyed_A : A;
-fun open_handed_A : A;
-fun open_hearted_A : A;
-fun open_minded_A : A;
-fun open_mouthed_A : A;
-fun opencast_A : A;
-fun opener_N : N;
-fun opening_A : A;
-fun opening_N : N;
-fun openness_N : N;
-fun openwork_N : N;
-fun opera_N : N;
-fun opera_cloak_N : N;
-fun opera_hat_N : N;
-fun opera_house_N : N;
-fun operable_A : A;
-fun operate_V : V;
-fun operate_V2 : V2;
-fun operatic_A : A;
-fun operating_table_N : N;
-fun operating_theatre_N : N;
-fun operation_N : N;
-fun operational_A : A;
-fun operative_A : A;
-fun operative_N : N;
-fun operator_N : N;
-fun operetta_N : N;
-fun ophthalmia_N : N;
-fun ophthalmic_A : A;
-fun ophthalmoscope_N : N;
-fun opiate_N : N;
-fun opine_V2 : V2;
-fun opinion_N : N;
-fun opinionated_A : A;
-fun opinionative_A : A;
-fun opium_N : N;
-fun opium_den_N : N;
-fun opossum_N : N;
-fun opp_PN : PN;
-fun opponent_N : N;
-fun opportune_A : A;
-fun opportunism_N : N;
-fun opportunist_N : N;
-fun opportunity_N : N;
-fun oppose_V2 : V2;
-fun opposite_A : A;
-fun opposite_N : N;
-fun opposition_N : N;
-fun oppress_V2 : V2;
-fun oppression_N : N;
-fun oppressive_A : A;
-fun oppressor_N : N;
-fun opprobrious_A : A;
-fun opprobrium_N : N;
-fun oppugn_V2 : V2;
-fun opt_V : V;
-fun optative_A : A;
-fun optative_N : N;
-fun optic_A : A;
-fun optical_A : A;
-fun optician_N : N;
-fun optics_N : N;
-fun optimal_A : A;
-fun optimism_N : N;
-fun optimist_N : N;
-fun optimistic_A : A;
-fun optimistically_Adv : Adv;
-fun optimum_N : N;
-fun option_N : N;
-fun optional_A : A;
-fun opulence_N : N;
-fun opulent_A : A;
-fun opus_N : N;
-fun oracle_N : N;
-fun oracular_A : A;
-fun oral_A : A;
-fun oral_N : N;
-fun orang_outan_N : N;
-fun orang_outang_N : N;
-fun orang_utan_N : N;
-fun orange_A : A;
-fun orange_N : N;
-fun orangeade_N : N;
-fun orangeman_N : N;
-fun orate_V : V;
-fun oration_N : N;
-fun orator_N : N;
-fun oratorical_A : A;
-fun oratorio_N : N;
-fun oratory_N : N;
-fun orb_N : N;
-fun orbit_N : N;
-fun orbit_V : V;
-fun orbit_V2 : V2;
-fun orbital_A : A;
-fun orchard_N : N;
-fun orchestra_N : N;
-fun orchestral_A : A;
-fun orchestrate_V2 : V2;
-fun orchestration_N : N;
-fun orchid_N : N;
-fun orchis_N : N;
-fun ordain_V2 : V2;
-fun ordeal_N : N;
-fun order_N : N;
-fun order_V2 : V2;
-fun order_book_N : N;
-fun order_form_N : N;
-fun order_paper_N : N;
-fun ordering_N : N;
-fun orderliness_N : N;
-fun orderly_A : A;
-fun orderly_N : N;
-fun ordinal_A : A;
-fun ordinal_N : N;
-fun ordinance_N : N;
-fun ordinand_N : N;
-fun ordinary_A : A;
-fun ordination_N : N;
-fun ordnance_N : N;
-fun ordure_N : N;
-fun ore_N : N;
-fun oregon_PN : PN;
-fun organ_N : N;
-fun organ_blower_N : N;
-fun organ_grinder_N : N;
-fun organ_loft_N : N;
-fun organdie_N : N;
-fun organic_A : A;
-fun organically_Adv : Adv;
-fun organism_N : N;
-fun organist_N : N;
-fun organization_N : N;
-fun organizational_A : A;
-fun organize_V2 : V2;
-fun organized_A : A;
-fun organizer_N : N;
-fun orgasm_N : N;
-fun orgiastic_A : A;
-fun orgy_N : N;
-fun oriel_N : N;
-fun orient_A : A;
-fun orient_N : N;
-fun orient_V2 : V2;
-fun oriental_A : A;
-fun oriental_N : N;
-fun orientalist_N : N;
-fun orientate_V2 : V2;
-fun orientation_N : N;
-fun orifice_N : N;
-fun origin_N : N;
-fun original_A : A;
-fun original_N : N;
-fun originality_N : N;
-fun originate_V : V;
-fun originate_V2 : V2;
-fun originator_N : N;
-fun oriole_N : N;
-fun orison_N : N;
-fun orkney_PN : PN;
-fun orleans_PN : PN;
-fun orlop_N : N;
-fun ormolu_N : N;
-fun ormskirk_PN : PN;
-fun ornament_N : N;
-fun ornament_V2 : V2;
-fun ornamental_A : A;
-fun ornamentation_N : N;
-fun ornate_A : A;
-fun ornateness_N : N;
-fun ornery_A : A;
-fun ornithological_A : A;
-fun ornithologist_N : N;
-fun ornithology_N : N;
-fun orotund_A : A;
-fun orphan_N : N;
-fun orphan_V2 : V2;
-fun orphanage_N : N;
-fun orrisroot_N : N;
-fun orthodontic_A : A;
-fun orthodontics_N : N;
-fun orthodontist_N : N;
-fun orthodox_A : A;
-fun orthodoxy_N : N;
-fun orthogonal_A : A;
-fun orthographic_A : A;
-fun orthography_N : N;
-fun orthopaedic_A : A;
-fun orthopaedics_N : N;
-fun orthopedic_A : A;
-fun orthopedics_N : N;
-fun ortolan_N : N;
-fun oryx_N : N;
-fun osaka_PN : PN;
-fun oscar_N : N;
-fun oscar_PN : PN;
-fun oscillate_V : V;
-fun oscillate_V2 : V2;
-fun oscillation_N : N;
-fun oscillator_N : N;
-fun oscillograph_N : N;
-fun oscilloscope_N : N;
-fun osier_N : N;
-fun oslo_PN : PN;
-fun osnabruck_PN : PN;
-fun osprey_N : N;
-fun osseous_A : A;
-fun ossett_PN : PN;
-fun ossification_N : N;
-fun ossify_V : V;
-fun ossify_V2 : V2;
-fun ostensible_A : A;
-fun ostentation_N : N;
-fun ostentatious_A : A;
-fun osteopath_N : N;
-fun osteopathy_N : N;
-fun ostler_N : N;
-fun ostracism_N : N;
-fun ostracize_V2 : V2;
-fun ostrich_N : N;
-fun oswald_PN : PN;
-fun oswestry_PN : PN;
-fun ot_N : N;
-fun otago_PN : PN;
-fun other_A : A;
-fun other_Adv : Adv;
-fun other_N : N;
-fun otherwise_Adv : Adv;
-fun otherworldly_A : A;
-fun otiose_A : A;
-fun otley_PN : PN;
-fun ottawa_PN : PN;
-fun otter_N : N;
-fun ottoman_N : N;
-fun oubliette_N : N;
-fun ouija_N : N;
-fun ouija_board_N : N;
-fun ounce_N : N;
-fun oust_V2 : V2;
-fun out_Adv : Adv;
-fun out_V2 : V2;
-fun out_herod_V2 : V2;
-fun out_of_date_A : A;
-fun out_of_door_A : A;
-fun out_of_doors_Adv : Adv;
-fun out_of_the_way_A : A;
-fun out_of_the_way_Adv : Adv;
-fun out_of_work_A : A;
-fun out_tray_N : N;
-fun outback_A : A;
-fun outback_N : N;
-fun outbalance_V2 : V2;
-fun outbid_V2 : V2;
-fun outboard_A : A;
-fun outbound_A : A;
-fun outbrave_V2 : V2;
-fun outbreak_N : N;
-fun outbuilding_N : N;
-fun outburst_N : N;
-fun outcast_A : A;
-fun outcast_N : N;
-fun outcaste_A : A;
-fun outcaste_N : N;
-fun outclass_V2 : V2;
-fun outcome_N : N;
-fun outcrop_N : N;
-fun outcry_N : N;
-fun outdated_A : A;
-fun outdistance_V2 : V2;
-fun outdo_V2 : V2;
-fun outdoor_A : A;
-fun outdoors_Adv : Adv;
-fun outer_A : A;
-fun outermost_A : A;
-fun outface_V2 : V2;
-fun outfall_N : N;
-fun outfield_N : N;
-fun outfielder_N : N;
-fun outfight_V2 : V2;
-fun outfit_N : N;
-fun outfit_V2 : V2;
-fun outfitter_N : N;
-fun outflank_V2 : V2;
-fun outflow_N : N;
-fun outfox_V2 : V2;
-fun outgo_N : N;
-fun outgo_V : V;
-fun outgoing_A : A;
-fun outgrow_V2 : V2;
-fun outgrowth_N : N;
-fun outhouse_N : N;
-fun outing_N : N;
-fun outlandish_A : A;
-fun outlandishness_N : N;
-fun outlast_V2 : V2;
-fun outlaw_N : N;
-fun outlaw_V2 : V2;
-fun outlawry_N : N;
-fun outlay_N : N;
-fun outlet_N : N;
-fun outlier_N : N;
-fun outline_N : N;
-fun outline_V2 : V2;
-fun outlive_V2 : V2;
-fun outlook_N : N;
-fun outlying_A : A;
-fun outmanoeuvre_V2 : V2;
-fun outmarch_V2 : V2;
-fun outmatch_V2 : V2;
-fun outmoded_A : A;
-fun outmost_A : A;
-fun outnumber_V2 : V2;
-fun outpatient_N : N;
-fun outplay_V2 : V2;
-fun outpoint_V2 : V2;
-fun outport_N : N;
-fun outpost_N : N;
-fun outpouring_N : N;
-fun output_N : N;
-fun outrage_N : N;
-fun outrage_V2 : V2;
-fun outrageous_A : A;
-fun outrange_V2 : V2;
-fun outrank_V2 : V2;
-fun outride_V2 : V2;
-fun outrider_N : N;
-fun outrigged_A : A;
-fun outrigger_N : N;
-fun outright_A : A;
-fun outright_Adv : Adv;
-fun outrival_V2 : V2;
-fun outrun_V2 : V2;
-fun outre_A : A;
-fun outsail_V2 : V2;
-fun outset_N : N;
-fun outshine_V2 : V2;
-fun outside_A : A;
-fun outside_Adv : Adv;
-fun outside_N : N;
-fun outsider_N : N;
-fun outsize_A : A;
-fun outsmart_V2 : V2;
-fun outspan_V : V;
-fun outspan_V2 : V2;
-fun outspoken_A : A;
-fun outspokenness_N : N;
-fun outspread_A : A;
-fun outstanding_A : A;
-fun outstation_N : N;
-fun outstay_V2 : V2;
-fun outstretched_A : A;
-fun outstrip_V2 : V2;
-fun outvie_V2 : V2;
-fun outvote_V2 : V2;
-fun outward_A : A;
-fun outward_Adv : Adv;
-fun outwards_Adv : Adv;
-fun outwear_V2 : V2;
-fun outweigh_V2 : V2;
-fun outwit_V2 : V2;
-fun outwork_N : N;
-fun ouzel_N : N;
-fun ouzo_N : N;
-fun oval_A : A;
-fun oval_N : N;
-fun ovary_N : N;
-fun ovation_N : N;
-fun oven_N : N;
-fun ovenware_N : N;
-fun over_Adv : Adv;
-fun over_N : N;
-fun over_abundance_N : N;
-fun over_ripe_A : A;
-fun overabundant_A : A;
-fun overact_V : V;
-fun overact_V2 : V2;
-fun overactive_A : A;
-fun overall_A : A;
-fun overall_N : N;
-fun overambitious_A : A;
-fun overanxiety_N : N;
-fun overanxious_A : A;
-fun overarch_V : V;
-fun overarch_V2 : V2;
-fun overarm_A : A;
-fun overarm_Adv : Adv;
-fun overawe_V2 : V2;
-fun overbalance_V : V;
-fun overbalance_V2 : V2;
-fun overbear_V2 : V2;
-fun overbearing_A : A;
-fun overbid_N : N;
-fun overbid_V : V;
-fun overbid_V2 : V2;
-fun overblown_A : A;
-fun overboard_Adv : Adv;
-fun overbold_A : A;
-fun overburden_N : N;
-fun overburden_V2 : V2;
-fun overbusy_A : A;
-fun overcall_V : V;
-fun overcall_V2 : V2;
-fun overcapitalization_N : N;
-fun overcapitalize_V2 : V2;
-fun overcareful_A : A;
-fun overcast_A : A;
-fun overcast_N : N;
-fun overcautious_A : A;
-fun overcharge_N : N;
-fun overcharge_V : V;
-fun overcharge_V2 : V2;
-fun overclothe_V2 : V2;
-fun overcloud_V : V;
-fun overcloud_V2 : V2;
-fun overcoat_N : N;
-fun overcome_V2 : V2;
-fun overconfidence_N : N;
-fun overconfident_A : A;
-fun overcook_V2 : V2;
-fun overcredulity_N : N;
-fun overcredulous_A : A;
-fun overcritical_A : A;
-fun overcrop_V2 : V2;
-fun overcrowd_V2 : V2;
-fun overcurious_A : A;
-fun overdelicate_A : A;
-fun overdo_V2 : V2;
-fun overdraft_N : N;
-fun overdraw_V : V;
-fun overdraw_V2 : V2;
-fun overdress_V : V;
-fun overdress_V2 : V2;
-fun overdrive_N : N;
-fun overdue_A : A;
-fun overeager_A : A;
-fun overeat_V : V;
-fun overemotional_A : A;
-fun overemphasis_N : N;
-fun overemphasize_V2 : V2;
-fun overenthusiastic_A : A;
-fun overestimate_V2 : V2;
-fun overexcited_A : A;
-fun overexert_V2 : V2;
-fun overexertion_N : N;
-fun overexpose_V2 : V2;
-fun overexposure_N : N;
-fun overfamiliar_A : A;
-fun overfeed_V : V;
-fun overfeed_V2 : V2;
-fun overfeeding_N : N;
-fun overflow_N : N;
-fun overflow_V : V;
-fun overflow_V2 : V2;
-fun overfly_V2 : V2;
-fun overfond_A : A;
-fun overfull_A : A;
-fun overgenerous_A : A;
-fun overgreedy_A : A;
-fun overgrown_A : A;
-fun overgrowth_N : N;
-fun overhand_A : A;
-fun overhang_N : N;
-fun overhang_V : V;
-fun overhang_V2 : V2;
-fun overhasty_A : A;
-fun overhaul_N : N;
-fun overhaul_V2 : V2;
-fun overhead_A : A;
-fun overhead_Adv : Adv;
-fun overhear_V2 : V2;
-fun overheat_V2 : V2;
-fun overindulge_V : V;
-fun overindulge_V2 : V2;
-fun overindulgence_N : N;
-fun overjealous_A : A;
-fun overjoyed_A : A;
-fun overkill_N : N;
-fun overladen_A : A;
-fun overland_A : A;
-fun overlap_N : N;
-fun overlap_V : V;
-fun overlap_V2 : V2;
-fun overlarge_A : A;
-fun overlay_N : N;
-fun overlay_V2 : V2;
-fun overleaf_Adv : Adv;
-fun overleap_V2 : V2;
-fun overlie_V : V;
-fun overload_V2 : V2;
-fun overlook_V2 : V2;
-fun overlord_N : N;
-fun overly_Adv : Adv;
-fun overmantel_N : N;
-fun overmaster_V2 : V2;
-fun overmodest_A : A;
-fun overmuch_A : A;
-fun overmuch_Adv : Adv;
-fun overnervous_A : A;
-fun overnight_A : A;
-fun overnight_Adv : Adv;
-fun overpass_N : N;
-fun overpay_V2 : V2;
-fun overpayment_N : N;
-fun overplay_V2 : V2;
-fun overplus_N : N;
-fun overpopulation_N : N;
-fun overpower_V2 : V2;
-fun overpowering_A : A;
-fun overpraise_V2 : V2;
-fun overprint_N : N;
-fun overprint_V2 : V2;
-fun overproduce_V : V;
-fun overproduce_V2 : V2;
-fun overproduction_N : N;
-fun overproud_A : A;
-fun overrate_V2 : V2;
-fun overreach_V2 : V2;
-fun override_V2 : V2;
-fun overripe_A : A;
-fun overrule_V2 : V2;
-fun overrun_V2 : V2;
-fun oversea_A : A;
-fun oversea_Adv : Adv;
-fun overseas_A : A;
-fun overseas_Adv : Adv;
-fun oversee_V2 : V2;
-fun overseer_N : N;
-fun oversensitive_A : A;
-fun overserious_A : A;
-fun oversew_V2 : V2;
-fun oversewn_A : A;
-fun oversexed_A : A;
-fun overshadow_V2 : V2;
-fun overshoe_N : N;
-fun overshoot_V2 : V2;
-fun overshot_A : A;
-fun overside_Adv : Adv;
-fun oversight_N : N;
-fun oversimplify_V2 : V2;
-fun oversize_A : A;
-fun overskirt_N : N;
-fun oversleep_V : V;
-fun overspend_V : V;
-fun overspend_V2 : V2;
-fun overspill_N : N;
-fun overstate_V2 : V2;
-fun overstatement_N : N;
-fun overstay_V2 : V2;
-fun overstep_V2 : V2;
-fun overstock_V2 : V2;
-fun overstrain_N : N;
-fun overstrain_V2 : V2;
-fun overstrung_A : A;
-fun overstuffed_A : A;
-fun oversubscribed_A : A;
-fun oversuspicious_A : A;
-fun overt_A : A;
-fun overtake_V2 : V2;
-fun overtax_V2 : V2;
-fun overthrow_N : N;
-fun overthrow_V2 : V2;
-fun overtime_Adv : Adv;
-fun overtime_N : N;
-fun overtolerance_N : N;
-fun overtone_N : N;
-fun overtop_V2 : V2;
-fun overtrump_V2 : V2;
-fun overture_N : N;
-fun overturn_V : V;
-fun overturn_V2 : V2;
-fun overvalue_V2 : V2;
-fun overweening_A : A;
-fun overweight_A : A;
-fun overweight_N : N;
-fun overweighted_A : A;
-fun overwhelm_V2 : V2;
-fun overwhelmingly_Adv : Adv;
-fun overwork_N : N;
-fun overwork_V : V;
-fun overwork_V2 : V2;
-fun overwrought_A : A;
-fun overzealous_A : A;
-fun oviduct_N : N;
-fun oviedo_PN : PN;
-fun oviparous_A : A;
-fun ovoid_A : A;
-fun ovoid_N : N;
-fun ovum_N : N;
-fun owe_V : V;
-fun owe_V2 : V2;
-fun owing_A : A;
-fun owl_N : N;
-fun owlet_N : N;
-fun owlish_A : A;
-fun own_A : A;
-fun own_V : V;
-fun own_V2 : V2;
-fun owner_N : N;
-fun owner_driven_A : A;
-fun owner_driver_N : N;
-fun owner_occupied_A : A;
-fun owner_occupier_N : N;
-fun ownerless_A : A;
-fun ownership_N : N;
-fun ox_N : N;
-fun oxbridge_PN : PN;
-fun oxeye_N : N;
-fun oxeyed_A : A;
-fun oxford_PN : PN;
-fun oxfordshire_PN : PN;
-fun oxidation_N : N;
-fun oxide_N : N;
-fun oxidization_N : N;
-fun oxidize_V : V;
-fun oxidize_V2 : V2;
-fun oxon_PN : PN;
-fun oxonian_A : A;
-fun oxonian_N : N;
-fun oxtail_N : N;
-fun oxted_PN : PN;
-fun oxyacetylene_A : A;
-fun oxyacetylene_N : N;
-fun oxygen_N : N;
-fun oxygenate_V2 : V2;
-fun oxygenize_V2 : V2;
-fun oyster_N : N;
-fun oyster_bank_N : N;
-fun oyster_bar_N : N;
-fun oyster_bed_N : N;
-fun oyster_catcher_N : N;
-fun oz_N : N;
-fun ozone_N : N;
-fun ozzie_PN : PN;
-fun pa_N : N;
-fun pabulum_N : N;
-fun pace_N : N;
-fun pace_V : V;
-fun pace_V2 : V2;
-fun pacemaker_N : N;
-fun pacesetter_N : N;
-fun pachyderm_N : N;
-fun pacific_A : A;
-fun pacific_PN : PN;
-fun pacifically_Adv : Adv;
-fun pacification_N : N;
-fun pacifism_N : N;
-fun pacifist_N : N;
-fun pacify_V2 : V2;
-fun pack_N : N;
-fun pack_V : V;
-fun pack_V2 : V2;
-fun pack_animal_N : N;
-fun pack_saddle_N : N;
-fun pack_thread_N : N;
-fun package_N : N;
-fun package_V2 : V2;
-fun packer_N : N;
-fun packet_N : N;
-fun packet_boat_N : N;
-fun packhorse_N : N;
-fun packing_N : N;
-fun packing_case_N : N;
-fun packing_needle_N : N;
-fun pact_N : N;
-fun pad_N : N;
-fun pad_V : V;
-fun pad_V2 : V2;
-fun padding_N : N;
-fun paddle_N : N;
-fun paddle_V : V;
-fun paddle_V2 : V2;
-fun paddle_box_N : N;
-fun paddle_steamer_N : N;
-fun paddle_wheel_N : N;
-fun paddock_N : N;
-fun paddy_N : N;
-fun paddy_PN : PN;
-fun paddy_field_N : N;
-fun paddy_wagon_N : N;
-fun padlock_N : N;
-fun padlock_V2 : V2;
-fun padova_PN : PN;
-fun padre_N : N;
-fun padua_PN : PN;
-fun paean_N : N;
-fun paederasty_N : N;
-fun paediatrics_N : N;
-fun paeony_N : N;
-fun pagan_A : A;
-fun pagan_N : N;
-fun paganism_N : N;
-fun page_N : N;
-fun page_V2 : V2;
-fun pageant_N : N;
-fun pageantry_N : N;
-fun pagination_N : N;
-fun pagoda_N : N;
-fun pail_N : N;
-fun pailful_N : N;
-fun paillasse_N : N;
-fun pailliasse_N : N;
-fun pain_N : N;
-fun pain_V2 : V2;
-fun pained_A : A;
-fun painful_A : A;
-fun painkiller_N : N;
-fun painless_A : A;
-fun painstaking_A : A;
-fun paint_N : N;
-fun paint_V : V;
-fun paint_V2 : V2;
-fun paintbox_N : N;
-fun paintbrush_N : N;
-fun painter_N : N;
-fun painting_N : N;
-fun pair_N : N;
-fun pair_V : V;
-fun pair_V2 : V2;
-fun paisley_N : N;
-fun paisley_PN : PN;
-fun pakistan_PN : PN;
-fun pakistani_A : A;
-fun pakistani_N : N;
-fun pal_N : N;
-fun pal_V : V;
-fun palace_N : N;
-fun paladin_N : N;
-fun palaeolithic_A : A;
-fun palaeontologist_N : N;
-fun palaeontology_N : N;
-fun palankeen_N : N;
-fun palanquin_N : N;
-fun palatable_A : A;
-fun palatal_A : A;
-fun palatal_N : N;
-fun palate_N : N;
-fun palatial_A : A;
-fun palatinate_N : N;
-fun palaver_N : N;
-fun palaver_V : V;
-fun pale_A : A;
-fun pale_N : N;
-fun pale_V : V;
-fun paleface_N : N;
-fun palembang_PN : PN;
-fun paleness_N : N;
-fun paleolithic_A : A;
-fun paleontologist_N : N;
-fun paleontology_N : N;
-fun palermo_PN : PN;
-fun palestine_PN : PN;
-fun palestinian_A : A;
-fun palestinian_N : N;
-fun palette_N : N;
-fun palette_knife_N : N;
-fun palfrey_N : N;
-fun palimpsest_N : N;
-fun palindrome_N : N;
-fun paling_N : N;
-fun palisade_N : N;
-fun palisade_V2 : V2;
-fun palish_A : A;
-fun pall_N : N;
-fun pall_V : V;
-fun pallbearer_N : N;
-fun pallet_N : N;
-fun palliasse_N : N;
-fun palliate_V2 : V2;
-fun palliation_N : N;
-fun palliative_A : A;
-fun palliative_N : N;
-fun pallid_A : A;
-fun pallidness_N : N;
-fun pallor_N : N;
-fun pally_A : A;
-fun palm_N : N;
-fun palm_V2 : V2;
-fun palm_oil_N : N;
-fun palmer_N : N;
-fun palmetto_N : N;
-fun palmist_N : N;
-fun palmistry_N : N;
-fun palmy_A : A;
-fun palpable_A : A;
-fun palpitate_V : V;
-fun palpitation_N : N;
-fun palsy_N : N;
-fun palsy_V2 : V2;
-fun palter_V : V;
-fun paltry_A : A;
-fun pam_PN : PN;
-fun pamela_PN : PN;
-fun pampas_grass_N : N;
-fun pamper_V2 : V2;
-fun pamphlet_N : N;
-fun pamphleteer_N : N;
-fun pamplona_PN : PN;
-fun pan_N : N;
-fun pan_V : V;
-fun pan_V2 : V2;
-fun panacea_N : N;
-fun panache_N : N;
-fun panama_N : N;
-fun panama_PN : PN;
-fun panamanian_A : A;
-fun panamanian_N : N;
-fun panatella_N : N;
-fun pancake_N : N;
-fun panchromatic_A : A;
-fun pancreas_N : N;
-fun pancreatic_A : A;
-fun panda_N : N;
-fun pandemic_A : A;
-fun pandemic_N : N;
-fun pandemonium_N : N;
-fun pander_N : N;
-fun pander_V : V;
-fun pane_N : N;
-fun panegyric_N : N;
-fun panel_N : N;
-fun panel_V2 : V2;
-fun panelling_N : N;
-fun pang_N : N;
-fun panga_N : N;
-fun panhandle_N : N;
-fun panhandle_V : V;
-fun panic_N : N;
-fun panic_V : V;
-fun panic_stricken_A : A;
-fun panicky_A : A;
-fun panjandrum_N : N;
-fun pannier_N : N;
-fun pannikin_N : N;
-fun panoplied_A : A;
-fun panoply_N : N;
-fun panoptic_A : A;
-fun panorama_N : N;
-fun panoramic_A : A;
-fun pansy_N : N;
-fun pant_N : N;
-fun pant_V : V;
-fun pant_V2 : V2;
-fun pantaloon_N : N;
-fun pantechnicon_N : N;
-fun pantheism_N : N;
-fun pantheist_N : N;
-fun pantheistic_A : A;
-fun pantheon_N : N;
-fun panther_N : N;
-fun pantile_N : N;
-fun pantingly_Adv : Adv;
-fun panto_N : N;
-fun pantograph_N : N;
-fun pantomime_N : N;
-fun pantry_N : N;
-fun pantryman_N : N;
-fun panty_hose_N : N;
-fun panzer_A : A;
-fun paotow_PN : PN;
-fun pap_N : N;
-fun papa_N : N;
-fun papacy_N : N;
-fun papal_A : A;
-fun papaw_N : N;
-fun papaya_N : N;
-fun paper_N : N;
-fun paper_V2 : V2;
-fun paper_chase_N : N;
-fun paperback_N : N;
-fun paperbacked_A : A;
-fun paperclip_N : N;
-fun paperhanger_N : N;
-fun paperknife_N : N;
-fun paperless_A : A;
-fun papermill_N : N;
-fun paperweight_N : N;
-fun paperwork_N : N;
-fun papier_mache_N : N;
-fun papist_A : A;
-fun papist_N : N;
-fun papoose_N : N;
-fun paprika_N : N;
-fun papua_PN : PN;
-fun papuan_A : A;
-fun papuan_N : N;
-fun papyrus_N : N;
-fun par_N : N;
-fun par_excellence_Adv : Adv;
-fun para_N : N;
-fun parable_N : N;
-fun parabola_N : N;
-fun parabolic_A : A;
-fun parabolical_A : A;
-fun parachute_N : N;
-fun parachute_V : V;
-fun parachute_V2 : V2;
-fun parachutist_N : N;
-fun parade_N : N;
-fun parade_V : V;
-fun parade_V2 : V2;
-fun parade_ground_N : N;
-fun paradigm_N : N;
-fun paradise_N : N;
-fun paradisiac_A : A;
-fun paradisiacal_A : A;
-fun paradox_N : N;
-fun paradoxical_A : A;
-fun paraffin_N : N;
-fun paragon_N : N;
-fun paragraph_N : N;
-fun paragraph_V2 : V2;
-fun paraguay_PN : PN;
-fun paraguayan_A : A;
-fun paraguayan_N : N;
-fun parakeet_N : N;
-fun parallel_A : A;
-fun parallel_N : N;
-fun parallel_V2 : V2;
-fun parallelism_N : N;
-fun parallelogram_N : N;
-fun paralyse_V2 : V2;
-fun paralysis_N : N;
-fun paralytic_A : A;
-fun paralytic_N : N;
-fun paralyze_V2 : V2;
-fun parameter_N : N;
-fun paramilitary_A : A;
-fun paramount_A : A;
-fun paramountcy_N : N;
-fun paramour_N : N;
-fun paranoia_N : N;
-fun paranoiac_N : N;
-fun paranoid_A : A;
-fun paranoid_N : N;
-fun parapet_N : N;
-fun paraphernalia_N : N;
-fun paraphrase_V2 : V2;
-fun paraplegia_N : N;
-fun paraplegic_A : A;
-fun paraplegic_N : N;
-fun parasite_N : N;
-fun parasitic_A : A;
-fun parasitical_A : A;
-fun parasol_N : N;
-fun paratrooper_N : N;
-fun paratyphoid_N : N;
-fun parboil_V2 : V2;
-fun parcel_N : N;
-fun parcel_V2 : V2;
-fun parch_V2 : V2;
-fun parchment_N : N;
-fun pardon_N : N;
-fun pardon_V2 : V2;
-fun pardonable_A : A;
-fun pardoner_N : N;
-fun pare_V2 : V2;
-fun paregoric_N : N;
-fun parent_N : N;
-fun parentage_N : N;
-fun parental_A : A;
-fun parenthesis_N : N;
-fun parenthetic_A : A;
-fun parenthetical_A : A;
-fun pari_mutuel_N : N;
-fun pari_passu_Adv : Adv;
-fun pariah_N : N;
-fun pariah_dog_N : N;
-fun paris_PN : PN;
-fun parish_N : N;
-fun parishioner_N : N;
-fun parisian_A : A;
-fun parisian_N : N;
-fun parity_N : N;
-fun park_N : N;
-fun park_V : V;
-fun park_V2 : V2;
-fun parka_N : N;
-fun parking_N : N;
-fun parkinson's_A : A;
-fun parky_A : A;
-fun parlance_N : N;
-fun parley_N : N;
-fun parley_V : V;
-fun parliament_N : N;
-fun parliamentarian_N : N;
-fun parliamentary_A : A;
-fun parlour_N : N;
-fun parlour_car_N : N;
-fun parlous_A : A;
-fun parma_PN : PN;
-fun parmesan_N : N;
-fun parochial_A : A;
-fun parochialism_N : N;
-fun parodist_N : N;
-fun parody_N : N;
-fun parody_V2 : V2;
-fun parole_N : N;
-fun parole_V2 : V2;
-fun paroquet_N : N;
-fun paroxysm_N : N;
-fun parquet_N : N;
-fun parr_N : N;
-fun parricide_N : N;
-fun parrot_N : N;
-fun parry_N : N;
-fun parry_V2 : V2;
-fun parse_V2 : V2;
-fun parsee_N : N;
-fun parsimonious_A : A;
-fun parsimony_N : N;
-fun parsley_N : N;
-fun parsnip_N : N;
-fun parson_N : N;
-fun parsonage_N : N;
-fun part_Adv : Adv;
-fun part_N : N;
-fun part_V : V;
-fun part_V2 : V2;
-fun part_owner_N : N;
-fun part_singing_N : N;
-fun part_song_N : N;
-fun part_time_A : A;
-fun part_time_Adv : Adv;
-fun part_timer_N : N;
-fun partake_V : V;
-fun partake_V2 : V2;
-fun parterre_N : N;
-fun parthenogenesis_N : N;
-fun parthian_A : A;
-fun parti_coloured_A : A;
-fun partial_A : A;
-fun partiality_N : N;
-fun participant_N : N;
-fun participate_V : V;
-fun participation_N : N;
-fun participial_A : A;
-fun participle_N : N;
-fun particle_N : N;
-fun particular_A : A;
-fun particular_N : N;
-fun particularity_N : N;
-fun particularize_V : V;
-fun particularize_V2 : V2;
-fun parting_N : N;
-fun partisan_A : A;
-fun partisan_N : N;
-fun partisanship_N : N;
-fun partition_N : N;
-fun partition_V2 : V2;
-fun partitive_A : A;
-fun partitive_N : N;
-fun partly_Adv : Adv;
-fun partner_N : N;
-fun partner_V2 : V2;
-fun partnership_N : N;
-fun partridge_N : N;
-fun parturition_N : N;
-fun party_N : N;
-fun party_spirit_N : N;
-fun party_spirited_A : A;
-fun party_wall_N : N;
-fun parvenu_N : N;
-fun paschal_A : A;
-fun pasha_N : N;
-fun pashto_N : N;
-fun pass_N : N;
-fun pass_V : V;
-fun pass_V2 : V2;
-fun passable_A : A;
-fun passage_N : N;
-fun passageway_N : N;
-fun passbook_N : N;
-fun passenger_N : N;
-fun passepartout_N : N;
-fun passer_by_N : N;
-fun passim_Adv : Adv;
-fun passing_A : A;
-fun passing_Adv : Adv;
-fun passing_N : N;
-fun passing_out_A : A;
-fun passion_N : N;
-fun passion_flower_N : N;
-fun passionate_A : A;
-fun passionless_A : A;
-fun passive_A : A;
-fun passive_N : N;
-fun passiveness_N : N;
-fun passivity_N : N;
-fun passkey_N : N;
-fun passover_N : N;
-fun passport_N : N;
-fun password_N : N;
-fun passe_A : A;
-fun passee_A : A;
-fun past_A : A;
-fun past_Adv : Adv;
-fun past_N : N;
-fun pasta_N : N;
-fun paste_N : N;
-fun paste_V2 : V2;
-fun paste_up_N : N;
-fun pasteboard_N : N;
-fun pastel_N : N;
-fun pastern_N : N;
-fun pasteurization_N : N;
-fun pasteurize_V2 : V2;
-fun pastiche_N : N;
-fun pastille_N : N;
-fun pastime_N : N;
-fun pasting_N : N;
-fun pastor_N : N;
-fun pastoral_A : A;
-fun pastoral_N : N;
-fun pastorate_N : N;
-fun pastry_N : N;
-fun pastry_cook_N : N;
-fun pasturage_N : N;
-fun pasture_N : N;
-fun pasture_V : V;
-fun pasture_V2 : V2;
-fun pasty_A : A;
-fun pasty_N : N;
-fun pat_Adv : Adv;
-fun pat_N : N;
-fun pat_PN : PN;
-fun pat_V : V;
-fun pat_V2 : V2;
-fun patch_N : N;
-fun patch_V2 : V2;
-fun patch_pocket_N : N;
-fun patchily_Adv : Adv;
-fun patchiness_N : N;
-fun patchouli_N : N;
-fun patchwork_N : N;
-fun patchy_A : A;
-fun pate_1_N : N;
-fun pate_de_foie_gras_N : N;
-fun patella_N : N;
-fun patent_A : A;
-fun patent_N : N;
-fun patent_V2 : V2;
-fun patentee_N : N;
-fun paterfamilias_N : N;
-fun paternal_A : A;
-fun paternalism_N : N;
-fun paternity_N : N;
-fun paternoster_N : N;
-fun path_N : N;
-fun path_finder_N : N;
-fun pathetic_A : A;
-fun pathetically_Adv : Adv;
-fun pathless_A : A;
-fun pathogen_N : N;
-fun pathological_A : A;
-fun pathologist_N : N;
-fun pathology_N : N;
-fun pathos_N : N;
-fun pathway_N : N;
-fun patience_N : N;
-fun patience_PN : PN;
-fun patient_A : A;
-fun patient_N : N;
-fun patina_N : N;
-fun patio_N : N;
-fun patisserie_N : N;
-fun patois_N : N;
-fun patrai_PN : PN;
-fun patrial_N : N;
-fun patriarch_N : N;
-fun patriarchal_A : A;
-fun patriarchate_N : N;
-fun patriarchy_N : N;
-fun patricia_PN : PN;
-fun patrician_A : A;
-fun patrician_N : N;
-fun patricide_N : N;
-fun patrick_PN : PN;
-fun patrimonial_A : A;
-fun patrimony_N : N;
-fun patriot_N : N;
-fun patriotic_A : A;
-fun patriotically_Adv : Adv;
-fun patriotism_N : N;
-fun patrol_N : N;
-fun patrol_V : V;
-fun patrol_V2 : V2;
-fun patrolman_N : N;
-fun patron_N : N;
-fun patronage_N : N;
-fun patroness_N : N;
-fun patronize_V2 : V2;
-fun patronizing_A : A;
-fun patronymic_A : A;
-fun patronymic_N : N;
-fun patten_N : N;
-fun patter_N : N;
-fun patter_V : V;
-fun patter_V2 : V2;
-fun pattern_N : N;
-fun pattern_V2 : V2;
-fun patty_N : N;
-fun patty_PN : PN;
-fun patty_pan_N : N;
-fun paucity_N : N;
-fun paul_PN : PN;
-fun paula_PN : PN;
-fun pauline_PN : PN;
-fun paunch_N : N;
-fun paunchiness_N : N;
-fun paunchy_A : A;
-fun pauper_N : N;
-fun pauperism_N : N;
-fun pauperization_N : N;
-fun pauperize_V2 : V2;
-fun pause_N : N;
-fun pause_V : V;
-fun pave_V2 : V2;
-fun pavement_N : N;
-fun pavilion_N : N;
-fun paving_stone_N : N;
-fun paw_N : N;
-fun paw_V2 : V2;
-fun pawky_A : A;
-fun pawl_N : N;
-fun pawn_N : N;
-fun pawn_V2 : V2;
-fun pawn_ticket_N : N;
-fun pawnbroker_N : N;
-fun pawnshop_N : N;
-fun pawpaw_N : N;
-fun pax_N : N;
-fun pax_romana_N : N;
-fun pay_N : N;
-fun pay_V : V;
-fun pay_V2 : V2;
-fun pay_as_you_earn_N : N;
-fun pay_claim_N : N;
-fun pay_packet_N : N;
-fun pay_station_N : N;
-fun payable_A : A;
-fun payday_N : N;
-fun paydirt_N : N;
-fun paye_PN : PN;
-fun payee_N : N;
-fun payer_N : N;
-fun payload_N : N;
-fun paymaster_N : N;
-fun payment_N : N;
-fun paynim_N : N;
-fun payoff_N : N;
-fun payphone_N : N;
-fun payroll_N : N;
-fun paysheet_N : N;
-fun payslip_N : N;
-fun pc_PN : PN;
-fun pdsa_N : N;
-fun pe_N : N;
-fun pea_N : N;
-fun pea_chick_N : N;
-fun pea_flour_N : N;
-fun pea_green_A : A;
-fun pea_green_N : N;
-fun pea_jacket_N : N;
-fun pea_soup_N : N;
-fun peace_N : N;
-fun peace_offering_N : N;
-fun peaceable_A : A;
-fun peaceful_A : A;
-fun peacefulness_N : N;
-fun peacehaven_PN : PN;
-fun peacemaker_N : N;
-fun peacetime_N : N;
-fun peach_N : N;
-fun peach_V : V;
-fun peach_V2 : V2;
-fun peacock_N : N;
-fun peacock_blue_A : A;
-fun peacock_blue_N : N;
-fun peafowl_N : N;
-fun peahen_N : N;
-fun peak_N : N;
-fun peak_V : V;
-fun peaked_A : A;
-fun peaky_A : A;
-fun peal_N : N;
-fun peal_V : V;
-fun peal_V2 : V2;
-fun peanut_N : N;
-fun pear_N : N;
-fun pearl_N : N;
-fun pearl_PN : PN;
-fun pearl_V : V;
-fun pearl_barley_N : N;
-fun pearl_diver_N : N;
-fun pearl_fishery_N : N;
-fun pearl_oyster_N : N;
-fun pearl_sago_N : N;
-fun pearly_A : A;
-fun pearmain_N : N;
-fun peasant_N : N;
-fun peasantry_N : N;
-fun pease_N : N;
-fun pease_pudding_N : N;
-fun peashooter_N : N;
-fun peasouper_N : N;
-fun peat_N : N;
-fun peaty_A : A;
-fun pebble_N : N;
-fun pebbly_A : A;
-fun pecan_N : N;
-fun peccable_A : A;
-fun peccadillo_N : N;
-fun peccary_N : N;
-fun peck_N : N;
-fun peck_V : V;
-fun peck_V2 : V2;
-fun pecker_N : N;
-fun peckish_A : A;
-fun pectic_A : A;
-fun pectin_N : N;
-fun pectoral_A : A;
-fun peculate_V : V;
-fun peculate_V2 : V2;
-fun peculation_N : N;
-fun peculiar_A : A;
-fun peculiarity_N : N;
-fun pecuniary_A : A;
-fun pedagogic_A : A;
-fun pedagogical_A : A;
-fun pedagogue_N : N;
-fun pedagogy_N : N;
-fun pedal_A : A;
-fun pedal_N : N;
-fun pedal_V : V;
-fun pedal_V2 : V2;
-fun pedant_N : N;
-fun pedantic_A : A;
-fun pedantically_Adv : Adv;
-fun pedantry_N : N;
-fun peddle_V : V;
-fun peddle_V2 : V2;
-fun peddler_N : N;
-fun peddling_A : A;
-fun pederast_N : N;
-fun pederasty_N : N;
-fun pedestal_N : N;
-fun pedestrian_A : A;
-fun pedestrian_N : N;
-fun pediatrician_N : N;
-fun pediatrics_N : N;
-fun pedicab_N : N;
-fun pedicure_N : N;
-fun pedigree_N : N;
-fun pediment_N : N;
-fun pedlar_N : N;
-fun pedometer_N : N;
-fun pee_N : N;
-fun pee_V : V;
-fun peebles_PN : PN;
-fun peek_N : N;
-fun peek_V : V;
-fun peek_a_boo_N : N;
-fun peel_N : N;
-fun peel_V : V;
-fun peel_V2 : V2;
-fun peeler_N : N;
-fun peep_N : N;
-fun peep_V : V;
-fun peeper_N : N;
-fun peephole_N : N;
-fun peepshow_N : N;
-fun peepul_N : N;
-fun peer_N : N;
-fun peer_V : V;
-fun peerage_N : N;
-fun peeress_N : N;
-fun peerless_A : A;
-fun peeve_V2 : V2;
-fun peeved_A : A;
-fun peevish_A : A;
-fun peevishness_N : N;
-fun peewit_N : N;
-fun peg_N : N;
-fun peg_PN : PN;
-fun peg_V : V;
-fun peg_V2 : V2;
-fun peggy_PN : PN;
-fun peignoir_N : N;
-fun pejorative_A : A;
-fun peke_N : N;
-fun pekinese_N : N;
-fun peking_PN : PN;
-fun pekoe_N : N;
-fun pelf_N : N;
-fun pelican_N : N;
-fun pelisse_N : N;
-fun pell_mell_Adv : Adv;
-fun pellet_N : N;
-fun pellucid_A : A;
-fun pelmet_N : N;
-fun pelota_N : N;
-fun pelt_N : N;
-fun pelt_V : V;
-fun pelt_V2 : V2;
-fun pelton_PN : PN;
-fun pelvic_A : A;
-fun pelvis_N : N;
-fun pembroke_PN : PN;
-fun pemmican_N : N;
-fun pen_N : N;
-fun pen_V2 : V2;
-fun pen_and_ink_N : N;
-fun pen_friend_N : N;
-fun pen_name_N : N;
-fun pen_pusher_N : N;
-fun penal_A : A;
-fun penalization_N : N;
-fun penalize_V2 : V2;
-fun penalty_N : N;
-fun penance_N : N;
-fun penarth_PN : PN;
-fun penchant_N : N;
-fun pencil_N : N;
-fun pencil_V2 : V2;
-fun pendant_N : N;
-fun pendent_A : A;
-fun pending_A : A;
-fun pendlebury_PN : PN;
-fun pendulous_A : A;
-fun pendulum_N : N;
-fun penelope_PN : PN;
-fun penetrability_N : N;
-fun penetrable_A : A;
-fun penetrate_V : V;
-fun penetrate_V2 : V2;
-fun penetrating_A : A;
-fun penetration_N : N;
-fun penetrative_A : A;
-fun penguin_N : N;
-fun penicillin_N : N;
-fun penicuik_PN : PN;
-fun peninsula_N : N;
-fun peninsular_A : A;
-fun penis_N : N;
-fun penitence_N : N;
-fun penitent_A : A;
-fun penitent_N : N;
-fun penitential_A : A;
-fun penitentiary_A : A;
-fun penitentiary_N : N;
-fun penki_PN : PN;
-fun penknife_N : N;
-fun penmanship_N : N;
-fun penn'orth_N : N;
-fun pennant_N : N;
-fun penniless_A : A;
-fun pennon_N : N;
-fun pennsylvania_PN : PN;
-fun penny_N : N;
-fun penny_PN : PN;
-fun pennyweight_N : N;
-fun pennyworth_N : N;
-fun penology_N : N;
-fun penrhyn_PN : PN;
-fun penrith_PN : PN;
-fun penryn_PN : PN;
-fun pension_N : N;
-fun pension_V2 : V2;
-fun pensionable_A : A;
-fun pensioner_N : N;
-fun pensive_A : A;
-fun pensiveness_N : N;
-fun penstock_N : N;
-fun pent_up_A : A;
-fun pentagon_N : N;
-fun pentagonal_A : A;
-fun pentameter_N : N;
-fun pentateuch_N : N;
-fun pentathlon_N : N;
-fun pentecost_N : N;
-fun pentecostal_A : A;
-fun penthouse_N : N;
-fun penultimate_A : A;
-fun penultimate_N : N;
-fun penumbra_N : N;
-fun penurious_A : A;
-fun penuriousness_N : N;
-fun penury_N : N;
-fun penzance_PN : PN;
-fun peon_N : N;
-fun peonage_N : N;
-fun peony_N : N;
-fun people_N : N;
-fun people_V2 : V2;
-fun pep_N : N;
-fun pep_V2 : V2;
-fun pepper_N : N;
-fun pepper_V2 : V2;
-fun pepper_and_salt_N : N;
-fun pepper_mill_N : N;
-fun pepper_pot_N : N;
-fun peppercorn_N : N;
-fun peppermint_N : N;
-fun peppery_A : A;
-fun pepsin_N : N;
-fun peptic_A : A;
-fun peradventure_Adv : Adv;
-fun perambulate_V : V;
-fun perambulate_V2 : V2;
-fun perambulation_N : N;
-fun perambulator_N : N;
-fun perceivable_A : A;
-fun perceive_V2 : V2;
-fun perceiver_N : N;
-fun percent_N : N;
-fun percentage_N : N;
-fun perceptibility_N : N;
-fun perceptible_A : A;
-fun perception_N : N;
-fun perceptive_A : A;
-fun perceptual_A : A;
-fun perch_N : N;
-fun perch_V : V;
-fun perch_V2 : V2;
-fun perchance_Adv : Adv;
-fun percipient_A : A;
-fun percolate_V : V;
-fun percolate_V2 : V2;
-fun percolator_N : N;
-fun percussion_N : N;
-fun percussionist_N : N;
-fun percy_PN : PN;
-fun perdition_N : N;
-fun peregrination_N : N;
-fun peremptory_A : A;
-fun perennial_A : A;
-fun perennial_N : N;
-fun perfect_A : A;
-fun perfect_V2 : V2;
-fun perfectibility_N : N;
-fun perfectible_A : A;
-fun perfection_N : N;
-fun perfectionist_N : N;
-fun perfervid_A : A;
-fun perfidious_A : A;
-fun perfidiousness_N : N;
-fun perfidy_N : N;
-fun perforate_V2 : V2;
-fun perforation_N : N;
-fun perforce_Adv : Adv;
-fun perform_V : V;
-fun perform_V2 : V2;
-fun performance_N : N;
-fun performer_N : N;
-fun perfume_N : N;
-fun perfume_V2 : V2;
-fun perfumer_N : N;
-fun perfunctory_A : A;
-fun pergola_N : N;
-fun perhaps_Adv : Adv;
-fun peri_N : N;
-fun perigee_N : N;
-fun perihelion_N : N;
-fun peril_N : N;
-fun peril_V2 : V2;
-fun perilous_A : A;
-fun perimeter_N : N;
-fun period_N : N;
-fun periodic_A : A;
-fun periodical_A : A;
-fun periodical_N : N;
-fun peripatetic_A : A;
-fun peripheral_A : A;
-fun periphery_N : N;
-fun periphrasis_N : N;
-fun periphrastic_A : A;
-fun periscope_N : N;
-fun perish_V : V;
-fun perish_V2 : V2;
-fun perishable_A : A;
-fun perisher_N : N;
-fun peristyle_N : N;
-fun peritonitis_N : N;
-fun periwig_N : N;
-fun periwinkle_N : N;
-fun perjure_V2 : V2;
-fun perjurer_N : N;
-fun perjury_N : N;
-fun perk_N : N;
-fun perk_V : V;
-fun perk_V2 : V2;
-fun perkily_Adv : Adv;
-fun perkiness_N : N;
-fun perky_A : A;
-fun perm_N : N;
-fun perm_PN : PN;
-fun perm_V2 : V2;
-fun permafrost_N : N;
-fun permanence_N : N;
-fun permanency_N : N;
-fun permanent_A : A;
-fun permanganate_N : N;
-fun permeability_N : N;
-fun permeable_A : A;
-fun permeate_V : V;
-fun permeate_V2 : V2;
-fun permeation_N : N;
-fun permissible_A : A;
-fun permission_N : N;
-fun permissive_A : A;
-fun permissiveness_N : N;
-fun permit_N : N;
-fun permit_V : V;
-fun permit_V2 : V2;
-fun permutation_N : N;
-fun permute_V2 : V2;
-fun pernicious_A : A;
-fun perniciousness_N : N;
-fun pernickety_A : A;
-fun peroration_N : N;
-fun peroxide_N : N;
-fun perpendicular_A : A;
-fun perpendicular_N : N;
-fun perpetrate_V2 : V2;
-fun perpetration_N : N;
-fun perpetrator_N : N;
-fun perpetual_A : A;
-fun perpetuate_V2 : V2;
-fun perpetuation_N : N;
-fun perpetuity_N : N;
-fun perplex_V2 : V2;
-fun perplexed_A : A;
-fun perplexity_N : N;
-fun perquisite_N : N;
-fun perry_N : N;
-fun persecute_V2 : V2;
-fun persecution_N : N;
-fun persecutor_N : N;
-fun perseverance_N : N;
-fun persevere_V : V;
-fun persevering_A : A;
-fun pershore_PN : PN;
-fun persia_PN : PN;
-fun persian_A : A;
-fun persian_N : N;
-fun persiflage_N : N;
-fun persimmon_N : N;
-fun persist_V : V;
-fun persistence_N : N;
-fun persistent_A : A;
-fun person_N : N;
-fun persona_N : N;
-fun persona_grata_N : N;
-fun persona_non_grata_N : N;
-fun personable_A : A;
-fun personage_N : N;
-fun personal_A : A;
-fun personal_N : N;
-fun personality_N : N;
-fun personalize_V2 : V2;
-fun personalty_N : N;
-fun personate_V2 : V2;
-fun personation_N : N;
-fun personification_N : N;
-fun personify_V2 : V2;
-fun perspective_N : N;
-fun perspex_N : N;
-fun perspicacious_A : A;
-fun perspicacity_N : N;
-fun perspicuity_N : N;
-fun perspicuous_A : A;
-fun perspicuousness_N : N;
-fun perspiration_N : N;
-fun perspire_V : V;
-fun persuadable_A : A;
-fun persuade_V2 : V2;
-fun persuasion_N : N;
-fun persuasive_A : A;
-fun persuasiveness_N : N;
-fun pert_A : A;
-fun pertain_V : V;
-fun perth_PN : PN;
-fun pertinacious_A : A;
-fun pertinacity_N : N;
-fun pertinence_N : N;
-fun pertinent_A : A;
-fun pertness_N : N;
-fun perturb_V2 : V2;
-fun perturbation_N : N;
-fun peru_PN : PN;
-fun perugia_PN : PN;
-fun peruke_N : N;
-fun perusal_N : N;
-fun peruse_V2 : V2;
-fun peruvian_A : A;
-fun peruvian_N : N;
-fun pervade_V2 : V2;
-fun pervasion_N : N;
-fun pervasive_A : A;
-fun pervasiveness_N : N;
-fun perverse_A : A;
-fun perverseness_N : N;
-fun perversion_N : N;
-fun perversity_N : N;
-fun pervert_N : N;
-fun pervert_V2 : V2;
-fun pescara_PN : PN;
-fun peseta_N : N;
-fun pesky_A : A;
-fun peso_N : N;
-fun pessary_N : N;
-fun pessimism_N : N;
-fun pessimist_N : N;
-fun pessimistic_A : A;
-fun pessimistically_Adv : Adv;
-fun pest_N : N;
-fun pester_V2 : V2;
-fun pesticide_N : N;
-fun pestiferous_A : A;
-fun pestilence_N : N;
-fun pestilent_A : A;
-fun pestilential_A : A;
-fun pestle_N : N;
-fun pestle_V2 : V2;
-fun pet_N : N;
-fun pet_V2 : V2;
-fun petal_N : N;
-fun petaled_A : A;
-fun petalled_A : A;
-fun petard_N : N;
-fun pete_PN : PN;
-fun peter_PN : PN;
-fun peter_V : V;
-fun peterborough_PN : PN;
-fun peterhead_PN : PN;
-fun peterlee_PN : PN;
-fun petersfield_PN : PN;
-fun petit_bourgeois_N : N;
-fun petite_A : A;
-fun petition_N : N;
-fun petition_V : V;
-fun petition_V2 : V2;
-fun petitioner_N : N;
-fun petrel_N : N;
-fun petrifaction_N : N;
-fun petrify_V : V;
-fun petrify_V2 : V2;
-fun petro_chemical_N : N;
-fun petrol_N : N;
-fun petroleum_N : N;
-fun petrology_N : N;
-fun petticoat_N : N;
-fun pettifogging_A : A;
-fun pettily_Adv : Adv;
-fun pettiness_N : N;
-fun pettish_A : A;
-fun pettishness_N : N;
-fun petty_A : A;
-fun petulance_N : N;
-fun petulant_A : A;
-fun petunia_N : N;
-fun pew_N : N;
-fun pew_opener_N : N;
-fun pewit_N : N;
-fun pewter_N : N;
-fun peyote_N : N;
-fun pfennig_N : N;
-fun phaeton_N : N;
-fun phagocyte_N : N;
-fun phalanx_N : N;
-fun phallic_A : A;
-fun phallus_N : N;
-fun phantasm_N : N;
-fun phantasmagoria_N : N;
-fun phantasmal_A : A;
-fun phantasy_N : N;
-fun phantom_N : N;
-fun pharaoh_N : N;
-fun pharisaic_A : A;
-fun pharisaical_A : A;
-fun pharisee_N : N;
-fun pharmaceutical_A : A;
-fun pharmacist_N : N;
-fun pharmacological_A : A;
-fun pharmacologist_N : N;
-fun pharmacology_N : N;
-fun pharmacopoeia_N : N;
-fun pharmacy_N : N;
-fun pharos_N : N;
-fun pharyngitis_N : N;
-fun pharynx_N : N;
-fun phase_N : N;
-fun phase_V2 : V2;
-fun phd_N : N;
-fun pheasant_N : N;
-fun phenobarbitone_N : N;
-fun phenol_N : N;
-fun phenomenal_A : A;
-fun phenomenon_N : N;
-fun phial_N : N;
-fun phil_PN : PN;
-fun philadelphia_PN : PN;
-fun philander_V : V;
-fun philanderer_N : N;
-fun philanthropic_A : A;
-fun philanthropically_Adv : Adv;
-fun philanthropist_N : N;
-fun philanthropy_N : N;
-fun philatelic_A : A;
-fun philatelist_N : N;
-fun philately_N : N;
-fun philharmonic_A : A;
-fun philhellene_A : A;
-fun philhellene_N : N;
-fun philhellenic_A : A;
-fun philip_PN : PN;
-fun philippa_PN : PN;
-fun philippine_A : A;
-fun philippine_N : N;
-fun philippines_PN : PN;
-fun philistine_N : N;
-fun philistinism_N : N;
-fun philological_A : A;
-fun philologist_N : N;
-fun philology_N : N;
-fun philosopher_N : N;
-fun philosophic_A : A;
-fun philosophical_A : A;
-fun philosophize_V : V;
-fun philosophy_N : N;
-fun philtre_N : N;
-fun phlebitis_N : N;
-fun phlegm_N : N;
-fun phlegmatic_A : A;
-fun phlegmatically_Adv : Adv;
-fun phlox_N : N;
-fun phnom_penh_PN : PN;
-fun phobia_N : N;
-fun phoebe_PN : PN;
-fun phoenix_N : N;
-fun phoenix_PN : PN;
-fun phone_N : N;
-fun phone_V : V;
-fun phone_V2 : V2;
-fun phone_in_N : N;
-fun phonebooth_N : N;
-fun phonecall_N : N;
-fun phoneme_N : N;
-fun phonemic_A : A;
-fun phonemics_N : N;
-fun phonetic_A : A;
-fun phonetically_Adv : Adv;
-fun phonetician_N : N;
-fun phonetics_N : N;
-fun phoney_A : A;
-fun phoney_N : N;
-fun phonic_A : A;
-fun phonics_N : N;
-fun phonograph_N : N;
-fun phonological_A : A;
-fun phonology_N : N;
-fun phony_A : A;
-fun phony_N : N;
-fun phosgene_N : N;
-fun phosphate_N : N;
-fun phosphorescence_N : N;
-fun phosphorescent_A : A;
-fun phosphoric_A : A;
-fun phosphorous_A : A;
-fun phosphorus_N : N;
-fun photo_N : N;
-fun photocopier_N : N;
-fun photocopy_N : N;
-fun photocopy_V2 : V2;
-fun photoelectric_A : A;
-fun photoflash_N : N;
-fun photogenic_A : A;
-fun photograph_N : N;
-fun photograph_V2 : V2;
-fun photographer_N : N;
-fun photographic_A : A;
-fun photographically_Adv : Adv;
-fun photography_N : N;
-fun photogravure_N : N;
-fun photolithography_N : N;
-fun photometer_N : N;
-fun photon_N : N;
-fun photosensitize_V2 : V2;
-fun photostat_N : N;
-fun photostat_V2 : V2;
-fun photosynthesis_N : N;
-fun phrasal_A : A;
-fun phrase_N : N;
-fun phrase_V2 : V2;
-fun phrase_book_N : N;
-fun phraseology_N : N;
-fun phrenetic_A : A;
-fun phrenologist_N : N;
-fun phrenology_N : N;
-fun phthisis_N : N;
-fun phut_Adv : Adv;
-fun phyllis_PN : PN;
-fun phylum_N : N;
-fun physic_N : N;
-fun physical_A : A;
-fun physician_N : N;
-fun physicist_N : N;
-fun physics_N : N;
-fun physiognomy_N : N;
-fun physiological_A : A;
-fun physiologist_N : N;
-fun physiology_N : N;
-fun physiotherapist_N : N;
-fun physiotherapy_N : N;
-fun physique_N : N;
-fun pi_N : N;
-fun piacenza_PN : PN;
-fun pianissimo_A : A;
-fun pianissimo_Adv : Adv;
-fun pianist_N : N;
-fun piano_A : A;
-fun piano_Adv : Adv;
-fun piano_N : N;
-fun pianoforte_N : N;
-fun pianola_N : N;
-fun piastre_N : N;
-fun piazza_N : N;
-fun pibroch_N : N;
-fun pica_N : N;
-fun picador_N : N;
-fun picaresque_A : A;
-fun piccalilli_N : N;
-fun piccaninny_N : N;
-fun piccolo_N : N;
-fun pick_N : N;
-fun pick_V : V;
-fun pick_V2 : V2;
-fun pick_me_up_N : N;
-fun pick_up_N : N;
-fun pickaback_Adv : Adv;
-fun pickaxe_N : N;
-fun picker_N : N;
-fun pickerel_N : N;
-fun picket_N : N;
-fun picket_V : V;
-fun picket_V2 : V2;
-fun picking_N : N;
-fun pickle_N : N;
-fun pickle_V2 : V2;
-fun pickpocket_N : N;
-fun picnic_N : N;
-fun picnic_V : V;
-fun picnicker_N : N;
-fun picric_A : A;
-fun pictorial_A : A;
-fun pictorial_N : N;
-fun picture_N : N;
-fun picture_V2 : V2;
-fun picture_book_N : N;
-fun picture_card_N : N;
-fun picture_gallery_N : N;
-fun picturesque_A : A;
-fun picturesqueness_N : N;
-fun piddle_N : N;
-fun piddle_V : V;
-fun piddling_A : A;
-fun pidgin_N : N;
-fun pie_N : N;
-fun pie_crust_N : N;
-fun piebald_A : A;
-fun piece_N : N;
-fun piece_V2 : V2;
-fun piecemeal_A : A;
-fun piecemeal_Adv : Adv;
-fun piecework_N : N;
-fun pied_A : A;
-fun pied_a_terre_N : N;
-fun pier_N : N;
-fun pier_glass_N : N;
-fun pierce_V : V;
-fun pierce_V2 : V2;
-fun piercing_A : A;
-fun pierrot_N : N;
-fun piety_N : N;
-fun pieta_N : N;
-fun piffle_N : N;
-fun piffle_V : V;
-fun piffling_A : A;
-fun pig_N : N;
-fun pig_V : V;
-fun pig_headed_A : A;
-fun pig_headedness_N : N;
-fun pig_iron_N : N;
-fun pig_sticking_N : N;
-fun pigboat_N : N;
-fun pigeon_N : N;
-fun pigeon_breasted_A : A;
-fun pigeon_toed_A : A;
-fun pigeonhole_N : N;
-fun pigeonhole_V2 : V2;
-fun piggery_N : N;
-fun piggish_A : A;
-fun piggishness_N : N;
-fun piggy_A : A;
-fun piggy_N : N;
-fun piggyback_N : N;
-fun piglet_N : N;
-fun pigment_N : N;
-fun pigmentation_N : N;
-fun pigmy_N : N;
-fun pigskin_N : N;
-fun pigsty_N : N;
-fun pigswill_N : N;
-fun pigtail_N : N;
-fun pigwash_N : N;
-fun pike_N : N;
-fun pikestaff_N : N;
-fun pilaf_N : N;
-fun pilaff_N : N;
-fun pilaster_N : N;
-fun pilau_N : N;
-fun pilchard_N : N;
-fun pile_N : N;
-fun pile_V : V;
-fun pile_V2 : V2;
-fun pile_driver_N : N;
-fun pile_dwelling_N : N;
-fun pile_up_N : N;
-fun piles_N : N;
-fun pilfer_V : V;
-fun pilfer_V2 : V2;
-fun pilferage_N : N;
-fun pilferer_N : N;
-fun pilgrim_N : N;
-fun pilgrimage_N : N;
-fun pill_N : N;
-fun pill_PN : PN;
-fun pillage_N : N;
-fun pillage_V2 : V2;
-fun pillager_N : N;
-fun pillar_N : N;
-fun pillar_box_N : N;
-fun pillared_A : A;
-fun pillbox_N : N;
-fun pillion_N : N;
-fun pillory_N : N;
-fun pillow_N : N;
-fun pillow_V2 : V2;
-fun pillow_fight_N : N;
-fun pillowcase_N : N;
-fun pillowslip_N : N;
-fun pilot_N : N;
-fun pilot_V2 : V2;
-fun pilot_boat_N : N;
-fun pilot_burner_N : N;
-fun pilot_cloth_N : N;
-fun pilot_engine_N : N;
-fun pilot_fish_N : N;
-fun pilot_light_N : N;
-fun pimento_N : N;
-fun pimp_N : N;
-fun pimp_V : V;
-fun pimpernel_N : N;
-fun pimple_N : N;
-fun pimpled_A : A;
-fun pimply_A : A;
-fun pin_N : N;
-fun pin_V2 : V2;
-fun pin_money_N : N;
-fun pin_table_N : N;
-fun pin_up_N : N;
-fun pinafore_N : N;
-fun pinball_N : N;
-fun pince_nez_N : N;
-fun pincer_N : N;
-fun pinch_N : N;
-fun pinch_V : V;
-fun pinch_V2 : V2;
-fun pinchbeck_A : A;
-fun pinchbeck_N : N;
-fun pincushion_N : N;
-fun pine_N : N;
-fun pine_V : V;
-fun pineal_A : A;
-fun pineapple_N : N;
-fun ping_N : N;
-fun ping_V : V;
-fun pingpong_N : N;
-fun pinhead_N : N;
-fun pinion_N : N;
-fun pinion_V2 : V2;
-fun pink_A : A;
-fun pink_N : N;
-fun pink_V : V;
-fun pink_V2 : V2;
-fun pinkish_A : A;
-fun pinnace_N : N;
-fun pinnacle_N : N;
-fun pinnacle_V2 : V2;
-fun pinnate_A : A;
-fun pinny_N : N;
-fun pinpoint_N : N;
-fun pinpoint_V2 : V2;
-fun pinprick_N : N;
-fun pinstripe_A : A;
-fun pint_N : N;
-fun pioneer_N : N;
-fun pioneer_V : V;
-fun pioneer_V2 : V2;
-fun pious_A : A;
-fun pip_N : N;
-fun pip_V2 : V2;
-fun pipal_N : N;
-fun pipe_N : N;
-fun pipe_V : V;
-fun pipe_V2 : V2;
-fun pipe_organ_N : N;
-fun pipe_rack_N : N;
-fun pipeclay_N : N;
-fun pipedream_N : N;
-fun pipeful_N : N;
-fun pipeline_N : N;
-fun piper_N : N;
-fun pipette_N : N;
-fun pipework_N : N;
-fun piping_A : A;
-fun piping_Adv : Adv;
-fun piping_N : N;
-fun pippin_N : N;
-fun pipsqueak_N : N;
-fun piquancy_N : N;
-fun piquant_A : A;
-fun pique_N : N;
-fun pique_V2 : V2;
-fun piquet_N : N;
-fun piracy_N : N;
-fun piraeus_PN : PN;
-fun piranha_N : N;
-fun pirate_N : N;
-fun pirate_V2 : V2;
-fun piratical_A : A;
-fun pirouette_N : N;
-fun pirouette_V : V;
-fun pis_aller_N : N;
-fun pisa_PN : PN;
-fun piscatorial_A : A;
-fun pisces_PN : PN;
-fun piss_N : N;
-fun piss_V : V;
-fun piss_V2 : V2;
-fun pissed_A : A;
-fun pistachio_N : N;
-fun pistil_N : N;
-fun pistol_N : N;
-fun piston_N : N;
-fun pit_N : N;
-fun pit_V2 : V2;
-fun pit_a_pat_Adv : Adv;
-fun pit_prop_N : N;
-fun pitch_N : N;
-fun pitch_V : V;
-fun pitch_V2 : V2;
-fun pitch_black_A : A;
-fun pitch_dark_A : A;
-fun pitchblende_N : N;
-fun pitcher_N : N;
-fun pitchfork_N : N;
-fun pitchfork_V2 : V2;
-fun piteous_A : A;
-fun pitfall_N : N;
-fun pith_N : N;
-fun pithead_N : N;
-fun pithily_Adv : Adv;
-fun pithy_A : A;
-fun pitiable_A : A;
-fun pitiful_A : A;
-fun pitiless_A : A;
-fun pitman_N : N;
-fun piton_N : N;
-fun pitsaw_N : N;
-fun pittance_N : N;
-fun pitter_patter_N : N;
-fun pittsburgh_PN : PN;
-fun pituitary_A : A;
-fun pituitary_N : N;
-fun pity_N : N;
-fun pity_V2 : V2;
-fun pitying_A : A;
-fun pivot_N : N;
-fun pivot_V : V;
-fun pivot_V2 : V2;
-fun pivotal_A : A;
-fun pixie_N : N;
-fun pixilated_A : A;
-fun pixy_N : N;
-fun pizza_N : N;
-fun pizzicato_A : A;
-fun pizzicato_Adv : Adv;
-fun placard_N : N;
-fun placard_V2 : V2;
-fun placate_V2 : V2;
-fun placatingly_Adv : Adv;
-fun place_N : N;
-fun place_V2 : V2;
-fun place_bet_N : N;
-fun place_name_N : N;
-fun placebo_N : N;
-fun placeman_N : N;
-fun placement_N : N;
-fun placenta_N : N;
-fun placeseeker_N : N;
-fun placid_A : A;
-fun placidity_N : N;
-fun placing_N : N;
-fun placket_N : N;
-fun plage_N : N;
-fun plagiarism_N : N;
-fun plagiarist_N : N;
-fun plagiarize_V2 : V2;
-fun plague_N : N;
-fun plague_V2 : V2;
-fun plague_spot_N : N;
-fun plaguy_A : A;
-fun plaice_N : N;
-fun plaid_N : N;
-fun plain_A : A;
-fun plain_Adv : Adv;
-fun plain_N : N;
-fun plain_V : V;
-fun plain_V2 : V2;
-fun plain_spoken_A : A;
-fun plainness_N : N;
-fun plainsman_N : N;
-fun plaint_N : N;
-fun plaintiff_N : N;
-fun plaintive_A : A;
-fun plaintiveness_N : N;
-fun plait_N : N;
-fun plait_V2 : V2;
-fun plan_N : N;
-fun plan_V2 : V2;
-fun planchette_N : N;
-fun plane_N : N;
-fun plane_V : V;
-fun plane_V2 : V2;
-fun plane_tree_N : N;
-fun planet_N : N;
-fun planetarium_N : N;
-fun planetary_A : A;
-fun plangent_A : A;
-fun plank_N : N;
-fun plank_V2 : V2;
-fun plank_bed_N : N;
-fun planking_N : N;
-fun plankton_N : N;
-fun planless_A : A;
-fun planner_N : N;
-fun plant_N : N;
-fun plant_V2 : V2;
-fun plant_louse_N : N;
-fun plantain_N : N;
-fun plantation_N : N;
-fun planter_N : N;
-fun plaque_N : N;
-fun plash_N : N;
-fun plash_V : V;
-fun plash_V2 : V2;
-fun plasm_N : N;
-fun plasma_N : N;
-fun plaster_N : N;
-fun plaster_V2 : V2;
-fun plasterboard_N : N;
-fun plastered_A : A;
-fun plasterer_N : N;
-fun plastic_A : A;
-fun plastic_N : N;
-fun plastic_bomb_N : N;
-fun plasticine_N : N;
-fun plasticity_N : N;
-fun plastics_N : N;
-fun plate_N : N;
-fun plate_V2 : V2;
-fun plate_glass_N : N;
-fun plate_powder_N : N;
-fun plate_rack_N : N;
-fun plateau_N : N;
-fun plateful_N : N;
-fun platelayer_N : N;
-fun platform_N : N;
-fun plating_N : N;
-fun platinum_N : N;
-fun platitude_N : N;
-fun platitudinous_A : A;
-fun platonic_A : A;
-fun platoon_N : N;
-fun platter_N : N;
-fun platypus_N : N;
-fun plaudit_N : N;
-fun plausibility_N : N;
-fun plausible_A : A;
-fun play_N : N;
-fun play_V : V;
-fun play_V2 : V2;
-fun play_acting_N : N;
-fun play_actor_N : N;
-fun play_box_N : N;
-fun play_off_N : N;
-fun play_reading_N : N;
-fun playback_N : N;
-fun playbill_N : N;
-fun playboy_N : N;
-fun player_N : N;
-fun player_piano_N : N;
-fun playfellow_N : N;
-fun playful_A : A;
-fun playfulness_N : N;
-fun playgoer_N : N;
-fun playground_N : N;
-fun playgroup_N : N;
-fun playhouse_N : N;
-fun playing_N : N;
-fun playing_card_N : N;
-fun playing_field_N : N;
-fun playlet_N : N;
-fun playmate_N : N;
-fun playpen_N : N;
-fun playroom_N : N;
-fun playschool_N : N;
-fun playsuit_N : N;
-fun plaything_N : N;
-fun playtime_N : N;
-fun playwright_N : N;
-fun plaza_N : N;
-fun plc_PN : PN;
-fun plea_N : N;
-fun pleach_V2 : V2;
-fun plead_V : V;
-fun plead_V2 : V2;
-fun pleadingly_Adv : Adv;
-fun pleasance_N : N;
-fun pleasant_A : A;
-fun pleasantness_N : N;
-fun pleasantry_N : N;
-fun please_V : V;
-fun please_V2 : V2;
-fun pleased_A : A;
-fun pleasing_A : A;
-fun pleasurable_A : A;
-fun pleasure_N : N;
-fun pleasure_boat_N : N;
-fun pleasure_craft_N : N;
-fun pleasure_ground_N : N;
-fun pleat_N : N;
-fun pleat_V2 : V2;
-fun pleb_N : N;
-fun plebeian_A : A;
-fun plebeian_N : N;
-fun plebiscite_N : N;
-fun plectrum_N : N;
-fun pledge_N : N;
-fun pledge_V2 : V2;
-fun plenary_A : A;
-fun plenipotentiary_N : N;
-fun plenitude_N : N;
-fun plenteous_A : A;
-fun plentiful_A : A;
-fun plenty_Adv : Adv;
-fun plenty_N : N;
-fun pleonasm_N : N;
-fun plethora_N : N;
-fun pleurisy_N : N;
-fun plexus_N : N;
-fun pliability_N : N;
-fun pliable_A : A;
-fun pliancy_N : N;
-fun pliant_A : A;
-fun plight_N : N;
-fun plight_V2 : V2;
-fun plimsoll_N : N;
-fun plinth_N : N;
-fun plod_V : V;
-fun plod_V2 : V2;
-fun plodder_N : N;
-fun plodding_A : A;
-fun plonk_Adv : Adv;
-fun plonk_N : N;
-fun plonk_V : V;
-fun plop_Adv : Adv;
-fun plop_N : N;
-fun plop_V : V;
-fun plosive_A : A;
-fun plosive_N : N;
-fun plot_N : N;
-fun plot_V : V;
-fun plot_V2 : V2;
-fun plotter_N : N;
-fun plough_N : N;
-fun plough_V : V;
-fun plough_V2 : V2;
-fun ploughboy_N : N;
-fun ploughman_N : N;
-fun ploughshare_N : N;
-fun plover_N : N;
-fun ploy_N : N;
-fun pluck_N : N;
-fun pluck_V : V;
-fun pluck_V2 : V2;
-fun pluckily_Adv : Adv;
-fun plucky_A : A;
-fun plug_N : N;
-fun plug_V : V;
-fun plug_V2 : V2;
-fun plughole_N : N;
-fun plum_N : N;
-fun plum_pudding_N : N;
-fun plumage_N : N;
-fun plumb_Adv : Adv;
-fun plumb_N : N;
-fun plumb_V2 : V2;
-fun plumbago_N : N;
-fun plumber_N : N;
-fun plumbing_N : N;
-fun plume_N : N;
-fun plume_V2 : V2;
-fun plummet_N : N;
-fun plummet_V : V;
-fun plummy_A : A;
-fun plump_A : A;
-fun plump_Adv : Adv;
-fun plump_N : N;
-fun plump_V : V;
-fun plump_V2 : V2;
-fun plunder_N : N;
-fun plunder_V : V;
-fun plunder_V2 : V2;
-fun plunderer_N : N;
-fun plunge_N : N;
-fun plunge_V : V;
-fun plunge_V2 : V2;
-fun plunger_N : N;
-fun plunk_N : N;
-fun pluperfect_A : A;
-fun pluperfect_N : N;
-fun plural_A : A;
-fun plural_N : N;
-fun pluralism_N : N;
-fun pluralist_N : N;
-fun plurality_N : N;
-fun plus_A : A;
-fun plus_N : N;
-fun plush_A : A;
-fun plush_N : N;
-fun plushy_A : A;
-fun pluto_PN : PN;
-fun plutocracy_N : N;
-fun plutocrat_N : N;
-fun plutocratic_A : A;
-fun plutonium_N : N;
-fun ply_N : N;
-fun ply_V : V;
-fun ply_V2 : V2;
-fun plymouth_PN : PN;
-fun plywood_N : N;
-fun pneumatic_A : A;
-fun pneumatically_Adv : Adv;
-fun pneumonia_N : N;
-fun po_N : N;
-fun poach_V : V;
-fun poach_V2 : V2;
-fun poacher_N : N;
-fun pock_N : N;
-fun pocked_A : A;
-fun pocket_N : N;
-fun pocket_V2 : V2;
-fun pocket_book_N : N;
-fun pocket_handkerchief_N : N;
-fun pocket_knife_N : N;
-fun pocket_money_N : N;
-fun pocketful_N : N;
-fun pockmarked_A : A;
-fun pod_N : N;
-fun pod_V : V;
-fun pod_V2 : V2;
-fun podgy_A : A;
-fun podiatry_N : N;
-fun podium_N : N;
-fun poem_N : N;
-fun poesy_N : N;
-fun poet_N : N;
-fun poetess_N : N;
-fun poetic_A : A;
-fun poetical_A : A;
-fun poetry_N : N;
-fun pogrom_N : N;
-fun poignancy_N : N;
-fun poignant_A : A;
-fun poinsettia_N : N;
-fun point_N : N;
-fun point_V : V;
-fun point_V2 : V2;
-fun point_blank_A : A;
-fun point_blank_Adv : Adv;
-fun point_duty_N : N;
-fun pointed_A : A;
-fun pointer_N : N;
-fun pointless_A : A;
-fun pointsman_N : N;
-fun poise_N : N;
-fun poise_V : V;
-fun poise_V2 : V2;
-fun poison_N : N;
-fun poison_V2 : V2;
-fun poison_gas_N : N;
-fun poison_ivy_N : N;
-fun poisoner_N : N;
-fun poisonous_A : A;
-fun poke_N : N;
-fun poke_V : V;
-fun poke_V2 : V2;
-fun poke_bonnet_N : N;
-fun poker_N : N;
-fun poker_face_N : N;
-fun poky_A : A;
-fun poland_PN : PN;
-fun polar_A : A;
-fun polaris_N : N;
-fun polarity_N : N;
-fun polarization_N : N;
-fun polarize_V2 : V2;
-fun polaroid_N : N;
-fun pole_N : N;
-fun pole_jumping_N : N;
-fun pole_star_N : N;
-fun pole_vault_N : N;
-fun poleax_N : N;
-fun poleax_V2 : V2;
-fun poleaxe_N : N;
-fun poleaxe_V2 : V2;
-fun polecat_N : N;
-fun polemic_A : A;
-fun polemic_N : N;
-fun polemically_Adv : Adv;
-fun police_V2 : V2;
-fun police_office_N : N;
-fun police_officer_N : N;
-fun police_station_N : N;
-fun policeman_N : N;
-fun policewoman_N : N;
-fun policy_N : N;
-fun polio_N : N;
-fun poliomyelitis_N : N;
-fun polish_A : A;
-fun polish_N : N;
-fun polish_V : V;
-fun polish_V2 : V2;
-fun polisher_N : N;
-fun politburo_N : N;
-fun polite_A : A;
-fun politeness_N : N;
-fun politic_A : A;
-fun political_A : A;
-fun politician_N : N;
-fun politicize_V : V;
-fun politicize_V2 : V2;
-fun politick_V : V;
-fun politics_N : N;
-fun polity_N : N;
-fun polka_N : N;
-fun poll_N : N;
-fun poll_V : V;
-fun poll_V2 : V2;
-fun poll_tax_N : N;
-fun pollard_N : N;
-fun pollard_V2 : V2;
-fun pollen_N : N;
-fun pollinate_V2 : V2;
-fun pollination_N : N;
-fun polling_booth_N : N;
-fun polling_day_N : N;
-fun polling_station_N : N;
-fun pollster_N : N;
-fun pollutant_N : N;
-fun pollute_V2 : V2;
-fun pollution_N : N;
-fun polly_PN : PN;
-fun polo_N : N;
-fun polo_neck_A : A;
-fun polonaise_N : N;
-fun polony_N : N;
-fun poltergeist_N : N;
-fun poltroon_N : N;
-fun poltroonery_N : N;
-fun poly_N : N;
-fun polyandrous_A : A;
-fun polyandry_N : N;
-fun polyanthus_N : N;
-fun polygamist_N : N;
-fun polygamous_A : A;
-fun polygamy_N : N;
-fun polyglot_A : A;
-fun polyglot_N : N;
-fun polygon_N : N;
-fun polygonal_A : A;
-fun polymorphic_A : A;
-fun polymorphous_A : A;
-fun polynomial_A : A;
-fun polynomial_N : N;
-fun polyp_N : N;
-fun polyphonic_A : A;
-fun polyphony_N : N;
-fun polypus_N : N;
-fun polysyllabic_A : A;
-fun polysyllable_N : N;
-fun polytechnic_N : N;
-fun polytheism_N : N;
-fun polytheistic_A : A;
-fun polythene_N : N;
-fun pom_N : N;
-fun pomade_N : N;
-fun pomade_V2 : V2;
-fun pomegranate_N : N;
-fun pomelo_N : N;
-fun pommel_N : N;
-fun pommel_V2 : V2;
-fun pommy_N : N;
-fun pomp_N : N;
-fun pompon_N : N;
-fun pomposity_N : N;
-fun pompous_A : A;
-fun ponce_N : N;
-fun poncho_N : N;
-fun pond_N : N;
-fun ponder_V : V;
-fun ponder_V2 : V2;
-fun ponderable_A : A;
-fun ponderous_A : A;
-fun pone_N : N;
-fun pongee_N : N;
-fun poniard_N : N;
-fun poniard_V2 : V2;
-fun pont_llan_fraith_PN : PN;
-fun pontardawe_PN : PN;
-fun pontardulais_PN : PN;
-fun pontefract_PN : PN;
-fun pontiff_N : N;
-fun pontifical_A : A;
-fun pontificate_N : N;
-fun pontificate_V : V;
-fun pontoon_N : N;
-fun pontycymmer_PN : PN;
-fun pontypool_PN : PN;
-fun pony_N : N;
-fun pony_trekking_N : N;
-fun ponytail_N : N;
-fun poodle_N : N;
-fun poof_N : N;
-fun pooh_pooh_V2 : V2;
-fun pool_N : N;
-fun pool_V2 : V2;
-fun poole_PN : PN;
-fun poolroom_N : N;
-fun poona_PN : PN;
-fun poop_N : N;
-fun poor_A : A;
-fun poor_box_N : N;
-fun poor_rate_N : N;
-fun poor_spirited_A : A;
-fun poorhouse_N : N;
-fun poorly_A : A;
-fun poorness_N : N;
-fun pop_A : A;
-fun pop_Adv : Adv;
-fun pop_N : N;
-fun pop_V : V;
-fun pop_V2 : V2;
-fun popcorn_N : N;
-fun pope_N : N;
-fun popery_N : N;
-fun popeyed_A : A;
-fun popgun_N : N;
-fun popinjay_N : N;
-fun popish_A : A;
-fun poplar_N : N;
-fun poplin_N : N;
-fun poppa_N : N;
-fun poppet_N : N;
-fun poppy_N : N;
-fun poppycock_N : N;
-fun populace_N : N;
-fun popular_A : A;
-fun popularity_N : N;
-fun popularization_N : N;
-fun popularize_V2 : V2;
-fun populate_V2 : V2;
-fun population_N : N;
-fun populism_N : N;
-fun populist_N : N;
-fun populous_A : A;
-fun porcelain_N : N;
-fun porch_N : N;
-fun porcine_A : A;
-fun porcupine_N : N;
-fun pore_N : N;
-fun pore_V : V;
-fun pork_N : N;
-fun pork_barrel_N : N;
-fun pork_butcher_N : N;
-fun porker_N : N;
-fun porn_N : N;
-fun pornographer_N : N;
-fun pornographic_A : A;
-fun pornography_N : N;
-fun porosity_N : N;
-fun porous_A : A;
-fun porousness_N : N;
-fun porphyry_N : N;
-fun porpoise_N : N;
-fun porridge_N : N;
-fun porringer_N : N;
-fun port_N : N;
-fun port_V2 : V2;
-fun port_glasgow_PN : PN;
-fun port_talbot_PN : PN;
-fun portability_N : N;
-fun portable_A : A;
-fun portage_N : N;
-fun portal_N : N;
-fun portcullis_N : N;
-fun porte_cochere_N : N;
-fun portend_V2 : V2;
-fun portent_N : N;
-fun portentous_A : A;
-fun porter_N : N;
-fun porterage_N : N;
-fun porterhouse_N : N;
-fun portfolio_N : N;
-fun porthcawl_PN : PN;
-fun porthmadog_PN : PN;
-fun porthole_N : N;
-fun portico_N : N;
-fun portion_N : N;
-fun portion_V2 : V2;
-fun portishead_PN : PN;
-fun portiere_N : N;
-fun portland_PN : PN;
-fun portly_A : A;
-fun portmanteau_N : N;
-fun porto_alegre_PN : PN;
-fun portrait_N : N;
-fun portraitist_N : N;
-fun portraiture_N : N;
-fun portray_V2 : V2;
-fun portrayal_N : N;
-fun portsmouth_PN : PN;
-fun portugal_PN : PN;
-fun portuguese_A : A;
-fun portuguese_N : N;
-fun pose_N : N;
-fun pose_V : V;
-fun pose_V2 : V2;
-fun poser_N : N;
-fun poseur_N : N;
-fun poseuse_N : N;
-fun posh_A : A;
-fun posh_V2 : V2;
-fun posit_V2 : V2;
-fun position_N : N;
-fun position_V2 : V2;
-fun positive_A : A;
-fun positive_N : N;
-fun positiveness_N : N;
-fun positivism_N : N;
-fun positivist_N : N;
-fun posse_N : N;
-fun possess_V2 : V2;
-fun possession_N : N;
-fun possessive_A : A;
-fun possessiveness_N : N;
-fun possessor_N : N;
-fun posset_N : N;
-fun possibility_N : N;
-fun possible_A : A;
-fun possible_N : N;
-fun possum_N : N;
-fun post_N : N;
-fun post_V : V;
-fun post_V2 : V2;
-fun post_chaise_N : N;
-fun post_free_A : A;
-fun post_free_Adv : Adv;
-fun post_haste_Adv : Adv;
-fun post_horse_N : N;
-fun post_meridiem_Adv : Adv;
-fun post_mortem_A : A;
-fun post_mortem_N : N;
-fun post_paid_A : A;
-fun post_paid_Adv : Adv;
-fun postage_N : N;
-fun postage_stamp_N : N;
-fun postal_A : A;
-fun postbag_N : N;
-fun postbox_N : N;
-fun postcard_N : N;
-fun postcode_N : N;
-fun postdate_V2 : V2;
-fun poste_restante_N : N;
-fun poster_N : N;
-fun posterior_A : A;
-fun posterior_N : N;
-fun posterity_N : N;
-fun postern_N : N;
-fun postgraduate_A : A;
-fun postgraduate_N : N;
-fun posthumous_A : A;
-fun postilion_N : N;
-fun postillion_N : N;
-fun postman_N : N;
-fun postmark_N : N;
-fun postmark_V2 : V2;
-fun postmaster_N : N;
-fun postmistress_N : N;
-fun postpone_V2 : V2;
-fun postponement_N : N;
-fun postprandial_A : A;
-fun postscript_N : N;
-fun postulant_N : N;
-fun postulate_N : N;
-fun postulate_V2 : V2;
-fun postural_A : A;
-fun posture_N : N;
-fun posture_V : V;
-fun posture_V2 : V2;
-fun posturing_N : N;
-fun posy_N : N;
-fun pot_N : N;
-fun pot_V : V;
-fun pot_V2 : V2;
-fun pot_shot_N : N;
-fun pot_trained_A : A;
-fun potable_A : A;
-fun potash_N : N;
-fun potassium_N : N;
-fun potation_N : N;
-fun potato_N : N;
-fun potbellied_A : A;
-fun potbelly_N : N;
-fun potboiler_N : N;
-fun potbound_A : A;
-fun potboy_N : N;
-fun poteen_N : N;
-fun potency_N : N;
-fun potent_A : A;
-fun potentate_N : N;
-fun potential_A : A;
-fun potential_N : N;
-fun potentiality_N : N;
-fun pothead_N : N;
-fun pother_N : N;
-fun potherb_N : N;
-fun pothole_N : N;
-fun potholer_N : N;
-fun pothook_N : N;
-fun pothouse_N : N;
-fun pothunter_N : N;
-fun potion_N : N;
-fun potman_N : N;
-fun potpourri_N : N;
-fun potsdam_PN : PN;
-fun potsherd_N : N;
-fun pottage_N : N;
-fun potted_A : A;
-fun potter_N : N;
-fun potter_V : V;
-fun potterer_N : N;
-fun potters_bar_PN : PN;
-fun pottery_N : N;
-fun potty_A : A;
-fun potty_N : N;
-fun pouch_N : N;
-fun pouch_V2 : V2;
-fun pouf_N : N;
-fun pouffe_N : N;
-fun poulterer_N : N;
-fun poultice_N : N;
-fun poultice_V2 : V2;
-fun pounce_N : N;
-fun pounce_V : V;
-fun pound_N : N;
-fun pound_V : V;
-fun pound_V2 : V2;
-fun poundage_N : N;
-fun pounder_N : N;
-fun pour_V : V;
-fun pour_V2 : V2;
-fun pout_N : N;
-fun pout_V : V;
-fun pout_V2 : V2;
-fun poutingly_Adv : Adv;
-fun poverty_N : N;
-fun poverty_stricken_A : A;
-fun pow_N : N;
-fun powder_N : N;
-fun powder_V : V;
-fun powder_V2 : V2;
-fun powder_flask_N : N;
-fun powder_horn_N : N;
-fun powder_magazine_N : N;
-fun powder_puff_N : N;
-fun powder_room_N : N;
-fun powdered_A : A;
-fun powdery_A : A;
-fun power_N : N;
-fun power_V2 : V2;
-fun power_dive_N : N;
-fun power_dive_V2 : V2;
-fun power_point_N : N;
-fun power_station_N : N;
-fun powerboat_N : N;
-fun powered_A : A;
-fun powerful_A : A;
-fun powerhouse_N : N;
-fun powerless_A : A;
-fun powwow_N : N;
-fun powwow_V : V;
-fun powys_PN : PN;
-fun pox_N : N;
-fun poynton_PN : PN;
-fun poznan_PN : PN;
-fun pp_N : N;
-fun pr_N : N;
-fun practicability_N : N;
-fun practicable_A : A;
-fun practical_A : A;
-fun practicality_N : N;
-fun practice_N : N;
-fun practician_N : N;
-fun practise_V : V;
-fun practise_V2 : V2;
-fun practised_A : A;
-fun practitioner_N : N;
-fun praesidium_N : N;
-fun praetor_N : N;
-fun praetorian_A : A;
-fun pragmatic_A : A;
-fun pragmatically_Adv : Adv;
-fun pragmatism_N : N;
-fun pragmatist_N : N;
-fun prague_PN : PN;
-fun prairie_N : N;
-fun praise_N : N;
-fun praise_V2 : V2;
-fun praiseworthiness_N : N;
-fun praiseworthy_A : A;
-fun pram_N : N;
-fun prance_N : N;
-fun prance_V : V;
-fun prank_N : N;
-fun prate_V : V;
-fun prato_PN : PN;
-fun prattle_N : N;
-fun prattle_V : V;
-fun prattler_N : N;
-fun prawn_N : N;
-fun prawn_V : V;
-fun pray_V : V;
-fun pray_V2 : V2;
-fun prayer_N : N;
-fun prayer_book_N : N;
-fun prayer_mat_N : N;
-fun prayer_meeting_N : N;
-fun prayer_rug_N : N;
-fun prayer_wheel_N : N;
-fun pre_eminence_N : N;
-fun pre_eminent_A : A;
-fun pre_empt_V2 : V2;
-fun pre_emption_N : N;
-fun pre_emptive_A : A;
-fun pre_exist_V : V;
-fun pre_existence_N : N;
-fun pre_existent_A : A;
-fun pre_packaged_A : A;
-fun pre_raphaelite_A : A;
-fun pre_raphaelite_N : N;
-fun preach_V : V;
-fun preach_V2 : V2;
-fun preacher_N : N;
-fun preachify_V : V;
-fun preamble_N : N;
-fun prearrange_V2 : V2;
-fun prearrangement_N : N;
-fun prebend_N : N;
-fun prebendary_N : N;
-fun precarious_A : A;
-fun precariousness_N : N;
-fun precast_A : A;
-fun precaution_N : N;
-fun precautionary_A : A;
-fun precede_V : V;
-fun precede_V2 : V2;
-fun precedence_N : N;
-fun precedent_N : N;
-fun precedented_A : A;
-fun preceding_A : A;
-fun precentor_N : N;
-fun precept_N : N;
-fun preceptor_N : N;
-fun precession_N : N;
-fun precinct_N : N;
-fun preciosity_N : N;
-fun precious_A : A;
-fun precious_Adv : Adv;
-fun preciousness_N : N;
-fun precipice_N : N;
-fun precipitate_A : A;
-fun precipitate_N : N;
-fun precipitate_V2 : V2;
-fun precipitation_N : N;
-fun precipitous_A : A;
-fun precise_A : A;
-fun preciseness_N : N;
-fun precision_N : N;
-fun preclude_V2 : V2;
-fun preclusion_N : N;
-fun precocious_A : A;
-fun precociousness_N : N;
-fun precocity_N : N;
-fun precognition_N : N;
-fun preconceive_V2 : V2;
-fun preconception_N : N;
-fun preconcerted_A : A;
-fun precondition_N : N;
-fun preconditioned_A : A;
-fun precursor_N : N;
-fun precursory_A : A;
-fun predator_N : N;
-fun predatory_A : A;
-fun predecease_V2 : V2;
-fun predecessor_N : N;
-fun predestinate_A : A;
-fun predestinate_V2 : V2;
-fun predestination_N : N;
-fun predestine_V2 : V2;
-fun predetermination_N : N;
-fun predetermine_V2 : V2;
-fun predicament_N : N;
-fun predicate_N : N;
-fun predicate_V2 : V2;
-fun predicative_A : A;
-fun predict_V2 : V2;
-fun predictability_N : N;
-fun predictable_A : A;
-fun prediction_N : N;
-fun predictor_N : N;
-fun predigest_V2 : V2;
-fun predilection_N : N;
-fun predispose_V2 : V2;
-fun predisposition_N : N;
-fun predominance_N : N;
-fun predominant_A : A;
-fun predominate_V : V;
-fun preen_V2 : V2;
-fun prefab_N : N;
-fun prefabricate_V2 : V2;
-fun prefabrication_N : N;
-fun preface_N : N;
-fun preface_V2 : V2;
-fun prefatory_A : A;
-fun prefect_N : N;
-fun prefectural_A : A;
-fun prefecture_N : N;
-fun prefer_V2 : V2;
-fun preferable_A : A;
-fun preference_N : N;
-fun preferential_A : A;
-fun preferment_N : N;
-fun prefigure_V2 : V2;
-fun prefix_N : N;
-fun prefix_V2 : V2;
-fun pregnancy_N : N;
-fun pregnant_A : A;
-fun preheat_V2 : V2;
-fun prehensile_A : A;
-fun prehistoric_A : A;
-fun prehistorical_A : A;
-fun prehistory_N : N;
-fun prejudge_V2 : V2;
-fun prejudgement_N : N;
-fun prejudice_N : N;
-fun prejudice_V2 : V2;
-fun prejudicial_A : A;
-fun prelacy_N : N;
-fun prelate_N : N;
-fun prelim_N : N;
-fun preliminary_A : A;
-fun preliminary_N : N;
-fun prelude_N : N;
-fun prelude_V2 : V2;
-fun premarital_A : A;
-fun premature_A : A;
-fun premeditate_V2 : V2;
-fun premeditation_N : N;
-fun premier_A : A;
-fun premier_N : N;
-fun premiership_N : N;
-fun premise_N : N;
-fun premise_V2 : V2;
-fun premiss_N : N;
-fun premiss_V2 : V2;
-fun premium_N : N;
-fun premiere_N : N;
-fun premonition_N : N;
-fun premonitory_A : A;
-fun prenatal_A : A;
-fun prentice_N : N;
-fun preoccupation_N : N;
-fun preoccupy_V2 : V2;
-fun preordain_V2 : V2;
-fun prep_N : N;
-fun prepacked_A : A;
-fun preparation_N : N;
-fun preparatory_A : A;
-fun prepare_V : V;
-fun prepare_V2 : V2;
-fun preparedness_N : N;
-fun prepay_V2 : V2;
-fun preponderance_N : N;
-fun preponderant_A : A;
-fun preponderate_V : V;
-fun preposition_N : N;
-fun prepositional_A : A;
-fun prepossess_V2 : V2;
-fun prepossessing_A : A;
-fun prepossession_N : N;
-fun preposterous_A : A;
-fun prepuce_N : N;
-fun prerecord_V2 : V2;
-fun prerequisite_A : A;
-fun prerequisite_N : N;
-fun prerogative_N : N;
-fun pres_N : N;
-fun presage_N : N;
-fun presage_V2 : V2;
-fun presbyter_N : N;
-fun presbyterian_A : A;
-fun presbyterian_N : N;
-fun presbyterianism_N : N;
-fun presbytery_N : N;
-fun prescience_N : N;
-fun prescient_A : A;
-fun prescot_PN : PN;
-fun prescribe_V : V;
-fun prescribe_V2 : V2;
-fun prescript_N : N;
-fun prescription_N : N;
-fun prescriptive_A : A;
-fun presence_N : N;
-fun present_A : A;
-fun present_N : N;
-fun present_V2 : V2;
-fun present_day_A : A;
-fun presentable_A : A;
-fun presentation_N : N;
-fun presentiment_N : N;
-fun preservable_A : A;
-fun preservation_N : N;
-fun preservative_A : A;
-fun preservative_N : N;
-fun preserve_N : N;
-fun preserve_V2 : V2;
-fun preserver_N : N;
-fun preside_V : V;
-fun presidency_N : N;
-fun president_N : N;
-fun presidential_A : A;
-fun presidium_N : N;
-fun press_N : N;
-fun press_V : V;
-fun press_V2 : V2;
-fun press_agency_N : N;
-fun press_agent_N : N;
-fun press_box_N : N;
-fun press_clipping_N : N;
-fun press_cutting_N : N;
-fun press_gallery_N : N;
-fun press_gang_N : N;
-fun press_lord_N : N;
-fun press_photographer_N : N;
-fun press_stud_N : N;
-fun press_up_N : N;
-fun pressing_A : A;
-fun pressing_N : N;
-fun pressman_N : N;
-fun pressmark_N : N;
-fun pressure_N : N;
-fun pressure_cooker_N : N;
-fun pressure_gauge_N : N;
-fun pressurized_A : A;
-fun prestatyn_PN : PN;
-fun prestidigitation_N : N;
-fun prestidigitator_N : N;
-fun prestige_N : N;
-fun prestigious_A : A;
-fun prestissimo_A : A;
-fun prestissimo_Adv : Adv;
-fun presto_A : A;
-fun presto_Adv : Adv;
-fun preston_PN : PN;
-fun prestonpans_PN : PN;
-fun prestressed_A : A;
-fun prestwich_PN : PN;
-fun prestwick_PN : PN;
-fun presumable_A : A;
-fun presume_V : V;
-fun presume_V2 : V2;
-fun presuming_A : A;
-fun presumption_N : N;
-fun presumptive_A : A;
-fun presumptuous_A : A;
-fun presuppose_V2 : V2;
-fun presupposition_N : N;
-fun pretence_N : N;
-fun pretend_V : V;
-fun pretend_V2 : V2;
-fun pretendedly_Adv : Adv;
-fun pretender_N : N;
-fun pretension_N : N;
-fun pretentious_A : A;
-fun pretentiousness_N : N;
-fun preterit_A : A;
-fun preterit_N : N;
-fun preterite_A : A;
-fun preterite_N : N;
-fun preternatural_A : A;
-fun pretext_N : N;
-fun pretor_N : N;
-fun pretoria_PN : PN;
-fun prettify_V2 : V2;
-fun prettily_Adv : Adv;
-fun prettiness_N : N;
-fun pretty_A : A;
-fun pretty_Adv : Adv;
-fun pretty_N : N;
-fun pretty_pretty_A : A;
-fun pretzel_N : N;
-fun prevail_V : V;
-fun prevailing_A : A;
-fun prevalence_N : N;
-fun prevalent_A : A;
-fun prevaricate_V : V;
-fun prevarication_N : N;
-fun prevent_V2 : V2;
-fun preventable_A : A;
-fun preventative_N : N;
-fun prevention_N : N;
-fun preventive_A : A;
-fun preview_N : N;
-fun preview_V2 : V2;
-fun previous_A : A;
-fun prevision_N : N;
-fun prey_N : N;
-fun prey_V : V;
-fun price_N : N;
-fun price_V2 : V2;
-fun price_control_N : N;
-fun price_controlled_A : A;
-fun priceless_A : A;
-fun pricelist_N : N;
-fun pricey_A : A;
-fun prick_N : N;
-fun prick_V : V;
-fun prick_V2 : V2;
-fun pricker_N : N;
-fun pricking_N : N;
-fun prickle_N : N;
-fun prickle_V : V;
-fun prickle_V2 : V2;
-fun prickly_A : A;
-fun pride_N : N;
-fun pride_V2 : V2;
-fun prie_dieu_N : N;
-fun priest_N : N;
-fun priest_ridden_A : A;
-fun priestcraft_N : N;
-fun priestess_N : N;
-fun priesthood_N : N;
-fun priestlike_A : A;
-fun priestly_A : A;
-fun prig_N : N;
-fun priggish_A : A;
-fun priggishness_N : N;
-fun prim_A : A;
-fun prim_V2 : V2;
-fun prima_A : A;
-fun prima_ballerina_N : N;
-fun prima_donna_N : N;
-fun prima_facie_A : A;
-fun prima_facie_Adv : Adv;
-fun primacy_N : N;
-fun primaeval_A : A;
-fun primal_A : A;
-fun primary_A : A;
-fun primary_N : N;
-fun primate_N : N;
-fun prime_A : A;
-fun prime_N : N;
-fun prime_V2 : V2;
-fun primer_N : N;
-fun primeval_A : A;
-fun priming_N : N;
-fun primitive_A : A;
-fun primitive_N : N;
-fun primitiveness_N : N;
-fun primness_N : N;
-fun primogeniture_N : N;
-fun primordial_A : A;
-fun primp_V2 : V2;
-fun primrose_N : N;
-fun primula_N : N;
-fun primus_N : N;
-fun prince_N : N;
-fun princedom_N : N;
-fun princely_A : A;
-fun princes_risborough_PN : PN;
-fun princess_N : N;
-fun principal_A : A;
-fun principal_N : N;
-fun principality_N : N;
-fun principle_N : N;
-fun principled_A : A;
-fun prink_V2 : V2;
-fun print_N : N;
-fun print_V : V;
-fun print_V2 : V2;
-fun print_seller_N : N;
-fun print_shop_N : N;
-fun printable_A : A;
-fun printer_N : N;
-fun printing_N : N;
-fun printing_ink_N : N;
-fun printing_press_N : N;
-fun printout_N : N;
-fun prior_A : A;
-fun prior_N : N;
-fun prioress_N : N;
-fun priority_N : N;
-fun priory_N : N;
-fun priscilla_PN : PN;
-fun prise_V2 : V2;
-fun prism_N : N;
-fun prismatic_A : A;
-fun prison_N : N;
-fun prison_breaking_N : N;
-fun prisoner_N : N;
-fun pristine_A : A;
-fun privacy_N : N;
-fun private_A : A;
-fun private_N : N;
-fun privateer_N : N;
-fun privation_N : N;
-fun privet_N : N;
-fun privilege_N : N;
-fun privileged_A : A;
-fun privy_A : A;
-fun privy_N : N;
-fun prize_N : N;
-fun prize_V2 : V2;
-fun prize_fight_N : N;
-fun prize_money_N : N;
-fun prize_ring_N : N;
-fun pro_Adv : Adv;
-fun pro_N : N;
-fun pro_forma_A : A;
-fun pro_forma_Adv : Adv;
-fun pro_rata_Adv : Adv;
-fun pro_tem_Adv : Adv;
-fun pro_tempore_Adv : Adv;
-fun probabilistic_A : A;
-fun probabilistically_Adv : Adv;
-fun probability_N : N;
-fun probable_A : A;
-fun probable_N : N;
-fun probate_N : N;
-fun probate_V2 : V2;
-fun probation_N : N;
-fun probationary_A : A;
-fun probationer_N : N;
-fun probe_N : N;
-fun probe_V2 : V2;
-fun probity_N : N;
-fun problem_N : N;
-fun problematic_A : A;
-fun problematically_Adv : Adv;
-fun proboscis_N : N;
-fun procedural_A : A;
-fun procedure_N : N;
-fun proceed_V : V;
-fun proceeding_N : N;
-fun process_N : N;
-fun process_V : V;
-fun process_V2 : V2;
-fun process_server_N : N;
-fun procession_N : N;
-fun processional_A : A;
-fun processor_N : N;
-fun proclaim_V2 : V2;
-fun proclamation_N : N;
-fun proclivity_N : N;
-fun proconsul_N : N;
-fun proconsular_A : A;
-fun proconsulate_N : N;
-fun procrastinate_V : V;
-fun procrastination_N : N;
-fun procreate_V2 : V2;
-fun procreation_N : N;
-fun proctor_N : N;
-fun procurable_A : A;
-fun procurator_N : N;
-fun procure_V2 : V2;
-fun procurement_N : N;
-fun procurer_N : N;
-fun procuress_N : N;
-fun prod_N : N;
-fun prod_V : V;
-fun prod_V2 : V2;
-fun prodigal_A : A;
-fun prodigal_N : N;
-fun prodigality_N : N;
-fun prodigious_A : A;
-fun prodigy_N : N;
-fun produce_N : N;
-fun produce_V : V;
-fun produce_V2 : V2;
-fun producer_N : N;
-fun product_N : N;
-fun production_N : N;
-fun productive_A : A;
-fun productivity_N : N;
-fun prof_PN : PN;
-fun profanation_N : N;
-fun profane_A : A;
-fun profane_V2 : V2;
-fun profaneness_N : N;
-fun profanity_N : N;
-fun profess_V : V;
-fun profess_V2 : V2;
-fun professed_A : A;
-fun profession_N : N;
-fun professional_A : A;
-fun professional_N : N;
-fun professionalism_N : N;
-fun professor_N : N;
-fun professorial_A : A;
-fun professorship_N : N;
-fun proffer_N : N;
-fun proffer_V2 : V2;
-fun proficiency_N : N;
-fun proficient_A : A;
-fun profile_N : N;
-fun profile_V2 : V2;
-fun profit_N : N;
-fun profit_V : V;
-fun profit_V2 : V2;
-fun profit_margin_N : N;
-fun profit_sharing_N : N;
-fun profitable_A : A;
-fun profiteer_N : N;
-fun profiteer_V : V;
-fun profitless_A : A;
-fun profligacy_N : N;
-fun profligate_A : A;
-fun profligate_N : N;
-fun profound_A : A;
-fun profundity_N : N;
-fun profuse_A : A;
-fun profuseness_N : N;
-fun profusion_N : N;
-fun progenitor_N : N;
-fun prognosis_N : N;
-fun prognostic_A : A;
-fun prognostic_N : N;
-fun prognosticate_V2 : V2;
-fun prognostication_N : N;
-fun program_N : N;
-fun program_V2 : V2;
-fun programme_N : N;
-fun programme_V2 : V2;
-fun programmer_N : N;
-fun progress_N : N;
-fun progress_V : V;
-fun progression_N : N;
-fun progressive_A : A;
-fun progressive_N : N;
-fun progressiveness_N : N;
-fun prohibit_V2 : V2;
-fun prohibition_N : N;
-fun prohibitionist_N : N;
-fun prohibitive_A : A;
-fun prohibitory_A : A;
-fun project_N : N;
-fun project_V : V;
-fun project_V2 : V2;
-fun projectile_A : A;
-fun projectile_N : N;
-fun projection_N : N;
-fun projectionist_N : N;
-fun projector_N : N;
-fun prolapse_N : N;
-fun prolapse_V : V;
-fun prole_N : N;
-fun proletarian_A : A;
-fun proletarian_N : N;
-fun proletariat_N : N;
-fun proliferate_V : V;
-fun proliferate_V2 : V2;
-fun proliferation_N : N;
-fun prolific_A : A;
-fun prolix_A : A;
-fun prolixity_N : N;
-fun prologue_N : N;
-fun prolong_V2 : V2;
-fun prolongation_N : N;
-fun prolonged_A : A;
-fun prom_N : N;
-fun promenade_N : N;
-fun promenade_V : V;
-fun promenade_V2 : V2;
-fun prominence_N : N;
-fun prominent_A : A;
-fun promiscuity_N : N;
-fun promiscuous_A : A;
-fun promise_N : N;
-fun promise_V : V;
-fun promise_V2 : V2;
-fun promising_A : A;
-fun promissory_A : A;
-fun promontory_N : N;
-fun promote_V2 : V2;
-fun promoter_N : N;
-fun promotion_N : N;
-fun promotional_A : A;
-fun prompt_A : A;
-fun prompt_N : N;
-fun prompt_V2 : V2;
-fun prompt_box_N : N;
-fun prompt_copy_N : N;
-fun prompter_N : N;
-fun prompting_N : N;
-fun promptitude_N : N;
-fun promptness_N : N;
-fun promulgate_V2 : V2;
-fun promulgation_N : N;
-fun prone_A : A;
-fun proneness_N : N;
-fun prong_N : N;
-fun pronged_A : A;
-fun pronominal_A : A;
-fun pronoun_N : N;
-fun pronounce_V : V;
-fun pronounce_V2 : V2;
-fun pronounceable_A : A;
-fun pronounced_A : A;
-fun pronouncement_N : N;
-fun pronto_Adv : Adv;
-fun pronunciamento_N : N;
-fun pronunciation_N : N;
-fun proof_A : A;
-fun proof_N : N;
-fun proof_V2 : V2;
-fun proofread_V : V;
-fun proofread_V2 : V2;
-fun proofreader_N : N;
-fun prop_N : N;
-fun prop_V2 : V2;
-fun propaganda_N : N;
-fun propagandist_N : N;
-fun propagandize_V : V;
-fun propagate_V : V;
-fun propagate_V2 : V2;
-fun propagation_N : N;
-fun propagator_N : N;
-fun propane_N : N;
-fun propel_V2 : V2;
-fun propellant_A : A;
-fun propellant_N : N;
-fun propellent_A : A;
-fun propellent_N : N;
-fun propeller_N : N;
-fun propensity_N : N;
-fun proper_A : A;
-fun propertied_A : A;
-fun property_N : N;
-fun property_man_N : N;
-fun property_master_N : N;
-fun prophecy_N : N;
-fun prophesy_V : V;
-fun prophesy_V2 : V2;
-fun prophet_N : N;
-fun prophetess_N : N;
-fun prophetic_A : A;
-fun prophetical_A : A;
-fun prophylactic_A : A;
-fun prophylactic_N : N;
-fun prophylaxis_N : N;
-fun propinquity_N : N;
-fun propitiate_V2 : V2;
-fun propitiation_N : N;
-fun propitiatory_A : A;
-fun propitious_A : A;
-fun proponent_N : N;
-fun proportion_N : N;
-fun proportion_V2 : V2;
-fun proportionable_A : A;
-fun proportional_A : A;
-fun proportionality_N : N;
-fun proportionate_A : A;
-fun proposal_N : N;
-fun propose_V : V;
-fun propose_V2 : V2;
-fun proposer_N : N;
-fun proposition_N : N;
-fun proposition_V2 : V2;
-fun propound_V2 : V2;
-fun proprietary_A : A;
-fun proprietor_N : N;
-fun proprietress_N : N;
-fun propriety_N : N;
-fun propulsion_N : N;
-fun propulsive_A : A;
-fun prorogation_N : N;
-fun prorogue_V2 : V2;
-fun prosaic_A : A;
-fun prosaically_Adv : Adv;
-fun proscenium_N : N;
-fun proscribe_V2 : V2;
-fun proscription_N : N;
-fun prose_N : N;
-fun prosecute_V2 : V2;
-fun prosecution_N : N;
-fun prosecutor_N : N;
-fun proselyte_N : N;
-fun proselytize_V : V;
-fun proselytize_V2 : V2;
-fun prosily_Adv : Adv;
-fun prosiness_N : N;
-fun prosody_N : N;
-fun prospect_N : N;
-fun prospect_V : V;
-fun prospective_A : A;
-fun prospector_N : N;
-fun prospectus_N : N;
-fun prosper_V : V;
-fun prosper_V2 : V2;
-fun prosperity_N : N;
-fun prosperous_A : A;
-fun prostate_N : N;
-fun prostitute_N : N;
-fun prostitute_V2 : V2;
-fun prostitution_N : N;
-fun prostrate_A : A;
-fun prostrate_V2 : V2;
-fun prostration_N : N;
-fun prosy_A : A;
-fun protagonist_N : N;
-fun protean_A : A;
-fun protect_V2 : V2;
-fun protection_N : N;
-fun protectionism_N : N;
-fun protectionist_N : N;
-fun protective_A : A;
-fun protector_N : N;
-fun protectorate_N : N;
-fun protein_N : N;
-fun protest_N : N;
-fun protest_V : V;
-fun protest_V2 : V2;
-fun protestant_A : A;
-fun protestant_N : N;
-fun protestantism_N : N;
-fun protestation_N : N;
-fun protester_N : N;
-fun protestingly_Adv : Adv;
-fun protocol_N : N;
-fun proton_N : N;
-fun protoplasm_N : N;
-fun prototype_N : N;
-fun protract_V2 : V2;
-fun protraction_N : N;
-fun protractor_N : N;
-fun protrude_V : V;
-fun protrude_V2 : V2;
-fun protrusion_N : N;
-fun protrusive_A : A;
-fun protuberance_N : N;
-fun protuberant_A : A;
-fun protege_N : N;
-fun protegee_N : N;
-fun proud_A : A;
-fun provable_A : A;
-fun prove_V : V;
-fun prove_V2 : V2;
-fun provenance_N : N;
-fun provender_N : N;
-fun proverb_N : N;
-fun proverbial_A : A;
-fun provide_V : V;
-fun provide_V2 : V2;
-fun providence_N : N;
-fun providence_PN : PN;
-fun provident_A : A;
-fun providential_A : A;
-fun provider_N : N;
-fun province_N : N;
-fun provincial_A : A;
-fun provincial_N : N;
-fun provincialism_N : N;
-fun provision_N : N;
-fun provision_V2 : V2;
-fun provisional_A : A;
-fun proviso_N : N;
-fun provisory_A : A;
-fun provocation_N : N;
-fun provocative_A : A;
-fun provoke_V2 : V2;
-fun provoking_A : A;
-fun provost_N : N;
-fun prow_N : N;
-fun prowess_N : N;
-fun prowl_N : N;
-fun prowl_V : V;
-fun prowl_V2 : V2;
-fun prowler_N : N;
-fun prox_Adv : Adv;
-fun proximate_A : A;
-fun proximity_N : N;
-fun proximo_A : A;
-fun proxy_N : N;
-fun pru_PN : PN;
-fun prude_N : N;
-fun prudence_N : N;
-fun prudence_PN : PN;
-fun prudent_A : A;
-fun prudential_A : A;
-fun prudery_N : N;
-fun prudhoe_PN : PN;
-fun prudish_A : A;
-fun prune_N : N;
-fun prune_V2 : V2;
-fun pruning_N : N;
-fun pruning_hook_N : N;
-fun pruning_knife_N : N;
-fun pruning_saw_N : N;
-fun prurience_N : N;
-fun pruriency_N : N;
-fun prurient_A : A;
-fun prussian_A : A;
-fun prussian_N : N;
-fun prussic_A : A;
-fun pry_V : V;
-fun pry_V2 : V2;
-fun pryingly_Adv : Adv;
-fun precis_N : N;
-fun precis_V2 : V2;
-fun psalm_N : N;
-fun psalmist_N : N;
-fun psalmody_N : N;
-fun psalter_N : N;
-fun psaltery_N : N;
-fun psephologist_N : N;
-fun psephology_N : N;
-fun pseud_N : N;
-fun pseudo_A : A;
-fun pseudo_N : N;
-fun pseudonym_N : N;
-fun pseudonymous_A : A;
-fun psittacosis_N : N;
-fun psyche_N : N;
-fun psychedelic_A : A;
-fun psychiatric_A : A;
-fun psychiatrist_N : N;
-fun psychiatry_N : N;
-fun psychic_A : A;
-fun psychic_N : N;
-fun psychical_A : A;
-fun psychoanalyse_V2 : V2;
-fun psychoanalysis_N : N;
-fun psychoanalyst_N : N;
-fun psychoanalytic_A : A;
-fun psychoanalytical_A : A;
-fun psychoanalyze_V2 : V2;
-fun psychological_A : A;
-fun psychologist_N : N;
-fun psychology_N : N;
-fun psychopath_N : N;
-fun psychopathic_A : A;
-fun psychosis_N : N;
-fun psychosomatic_A : A;
-fun psychotherapy_N : N;
-fun psychotic_N : N;
-fun pt_N : N;
-fun pta_N : N;
-fun ptarmigan_N : N;
-fun pte_PN : PN;
-fun pterodactyl_N : N;
-fun pto_PN : PN;
-fun ptomaine_N : N;
-fun pty_PN : PN;
-fun pub_N : N;
-fun pub_crawl_N : N;
-fun pub_crawl_V : V;
-fun puberty_N : N;
-fun pubic_A : A;
-fun public_A : A;
-fun public_N : N;
-fun public_spirited_A : A;
-fun publican_N : N;
-fun publication_N : N;
-fun publicist_N : N;
-fun publicity_N : N;
-fun publicize_V2 : V2;
-fun publish_V2 : V2;
-fun publisher_N : N;
-fun puce_N : N;
-fun puck_N : N;
-fun pucker_N : N;
-fun pucker_V : V;
-fun pucker_V2 : V2;
-fun puckish_A : A;
-fun pud_N : N;
-fun pudden_N : N;
-fun pudden_head_N : N;
-fun pudding_N : N;
-fun pudding_face_N : N;
-fun puddle_N : N;
-fun puddle_V2 : V2;
-fun puddler_N : N;
-fun pudgy_A : A;
-fun pudsey_PN : PN;
-fun pueblo_N : N;
-fun puerile_A : A;
-fun puerility_N : N;
-fun puerperal_A : A;
-fun puff_N : N;
-fun puff_V : V;
-fun puff_V2 : V2;
-fun puffball_N : N;
-fun puffin_N : N;
-fun puffiness_N : N;
-fun puffy_A : A;
-fun pug_N : N;
-fun pug_dog_N : N;
-fun pug_nose_A : A;
-fun pug_nose_N : N;
-fun pug_nosed_A : A;
-fun pugilism_N : N;
-fun pugilist_N : N;
-fun pugilistic_A : A;
-fun pugnacious_A : A;
-fun pugnacity_N : N;
-fun puissance_N : N;
-fun puissant_A : A;
-fun puke_N : N;
-fun puke_V : V;
-fun puke_V2 : V2;
-fun pukka_A : A;
-fun pulchritude_N : N;
-fun pulchritudinous_A : A;
-fun pule_V : V;
-fun pull_N : N;
-fun pull_V : V;
-fun pull_V2 : V2;
-fun pull_in_N : N;
-fun pull_off_N : N;
-fun pull_out_N : N;
-fun pull_through_N : N;
-fun pull_up_N : N;
-fun pullet_N : N;
-fun pulley_N : N;
-fun pulley_block_N : N;
-fun pullman_N : N;
-fun pullover_N : N;
-fun pullulate_V : V;
-fun pulmonary_A : A;
-fun pulp_N : N;
-fun pulp_V : V;
-fun pulp_V2 : V2;
-fun pulpit_N : N;
-fun pulpy_A : A;
-fun pulque_N : N;
-fun pulsar_N : N;
-fun pulsate_V : V;
-fun pulsate_V2 : V2;
-fun pulsation_N : N;
-fun pulse_N : N;
-fun pulse_V : V;
-fun pulverize_V : V;
-fun pulverize_V2 : V2;
-fun puma_N : N;
-fun pumice_N : N;
-fun pumice_stone_N : N;
-fun pummel_V2 : V2;
-fun pump_N : N;
-fun pump_V : V;
-fun pump_V2 : V2;
-fun pump_room_N : N;
-fun pumpernickel_N : N;
-fun pumpkin_N : N;
-fun pun_N : N;
-fun pun_V : V;
-fun punch_N : N;
-fun punch_V2 : V2;
-fun punch_drunk_A : A;
-fun punch_up_N : N;
-fun punchball_N : N;
-fun punchbowl_N : N;
-fun punching_ball_N : N;
-fun punctilio_N : N;
-fun punctilious_A : A;
-fun punctiliousness_N : N;
-fun punctual_A : A;
-fun punctuality_N : N;
-fun punctuate_V2 : V2;
-fun punctuation_N : N;
-fun puncture_N : N;
-fun puncture_V : V;
-fun puncture_V2 : V2;
-fun pundit_N : N;
-fun pungency_N : N;
-fun pungent_A : A;
-fun punic_A : A;
-fun punily_Adv : Adv;
-fun punish_V2 : V2;
-fun punishable_A : A;
-fun punishment_N : N;
-fun punitive_A : A;
-fun punk_N : N;
-fun punkah_N : N;
-fun punnet_N : N;
-fun punster_N : N;
-fun punt_N : N;
-fun punt_V : V;
-fun punt_V2 : V2;
-fun punter_N : N;
-fun puny_A : A;
-fun pup_N : N;
-fun pupa_N : N;
-fun pupil_N : N;
-fun puppet_N : N;
-fun puppeteer_N : N;
-fun puppy_N : N;
-fun purblind_A : A;
-fun purchasable_A : A;
-fun purchase_N : N;
-fun purchase_V2 : V2;
-fun purchaser_N : N;
-fun purdah_N : N;
-fun pure_A : A;
-fun pureness_N : N;
-fun purgation_N : N;
-fun purgative_A : A;
-fun purgative_N : N;
-fun purgatorial_A : A;
-fun purgatory_N : N;
-fun purge_N : N;
-fun purge_V2 : V2;
-fun purification_N : N;
-fun purifier_N : N;
-fun purify_V2 : V2;
-fun purist_N : N;
-fun puritan_A : A;
-fun puritan_N : N;
-fun puritanical_A : A;
-fun puritanism_N : N;
-fun purity_N : N;
-fun purl_N : N;
-fun purl_V : V;
-fun purl_V2 : V2;
-fun purloin_V2 : V2;
-fun purple_A : A;
-fun purple_N : N;
-fun purplish_A : A;
-fun purport_N : N;
-fun purport_V2 : V2;
-fun purpose_N : N;
-fun purpose_V2 : V2;
-fun purpose_built_A : A;
-fun purposeful_A : A;
-fun purposeless_A : A;
-fun purposely_Adv : Adv;
-fun purposive_A : A;
-fun purr_N : N;
-fun purr_V : V;
-fun purr_V2 : V2;
-fun purse_N : N;
-fun purse_V2 : V2;
-fun purse_proud_A : A;
-fun purser_N : N;
-fun pursuance_N : N;
-fun pursuant_A : A;
-fun pursue_V2 : V2;
-fun pursuer_N : N;
-fun pursuit_N : N;
-fun pursy_A : A;
-fun purulence_N : N;
-fun purulent_A : A;
-fun purvey_V : V;
-fun purvey_V2 : V2;
-fun purveyance_N : N;
-fun purveyor_N : N;
-fun purview_N : N;
-fun puree_N : N;
-fun pus_N : N;
-fun pusan_PN : PN;
-fun push_N : N;
-fun push_V : V;
-fun push_V2 : V2;
-fun push_bike_N : N;
-fun pushcart_N : N;
-fun pushchair_N : N;
-fun pusher_N : N;
-fun pushful_A : A;
-fun pushing_A : A;
-fun pushover_N : N;
-fun pusillanimity_N : N;
-fun pusillanimous_A : A;
-fun puss_N : N;
-fun pussy_N : N;
-fun pussycat_N : N;
-fun pussyfoot_V : V;
-fun pustule_N : N;
-fun put_N : N;
-fun put_V : V;
-fun put_V2 : V2;
-fun put_down_N : N;
-fun put_on_N : N;
-fun putative_A : A;
-fun putrefaction_N : N;
-fun putrefy_V : V;
-fun putrefy_V2 : V2;
-fun putrescence_N : N;
-fun putrescent_A : A;
-fun putrid_A : A;
-fun putridity_N : N;
-fun putsch_N : N;
-fun putt_N : N;
-fun putt_V : V;
-fun putt_V2 : V2;
-fun puttee_N : N;
-fun putter_V : V;
-fun putter_V2 : V2;
-fun putting_green_N : N;
-fun putting_iron_N : N;
-fun putty_N : N;
-fun putty_V2 : V2;
-fun puzzle_N : N;
-fun puzzle_V : V;
-fun puzzle_V2 : V2;
-fun puzzlement_N : N;
-fun puzzler_N : N;
-fun pwllheli_PN : PN;
-fun pygmy_N : N;
-fun pyjama_A : A;
-fun pyle_PN : PN;
-fun pylon_N : N;
-fun pyongyang_PN : PN;
-fun pyorrhoea_N : N;
-fun pyramid_N : N;
-fun pyre_N : N;
-fun pyrites_N : N;
-fun pyrotechnic_A : A;
-fun pyrrhic_A : A;
-fun python_N : N;
-fun pyx_N : N;
-fun pate_2_N : N;
-fun qatar_PN : PN;
-fun qatari_A : A;
-fun qatari_N : N;
-fun qc_N : N;
-fun qed_PN : PN;
-fun qt_N : N;
-fun quack_N : N;
-fun quack_V : V;
-fun quack_quack_N : N;
-fun quackery_N : N;
-fun quad_N : N;
-fun quadrangle_N : N;
-fun quadrangular_A : A;
-fun quadrant_N : N;
-fun quadratic_A : A;
-fun quadrilateral_A : A;
-fun quadrilateral_N : N;
-fun quadrille_N : N;
-fun quadrillion_N : N;
-fun quadrophonic_A : A;
-fun quadrophony_N : N;
-fun quadruped_N : N;
-fun quadruple_A : A;
-fun quadruple_N : N;
-fun quadruple_V : V;
-fun quadruple_V2 : V2;
-fun quadruplet_N : N;
-fun quadruplicate_A : A;
-fun quadruplicate_N : N;
-fun quadruplicate_V2 : V2;
-fun quaff_V : V;
-fun quaff_V2 : V2;
-fun quagga_N : N;
-fun quagmire_N : N;
-fun quai_d'orsay_N : N;
-fun quail_N : N;
-fun quail_V : V;
-fun quaint_A : A;
-fun quaintness_N : N;
-fun quake_N : N;
-fun quake_V : V;
-fun quaker_N : N;
-fun qualification_N : N;
-fun qualified_A : A;
-fun qualifier_N : N;
-fun qualify_V : V;
-fun qualify_V2 : V2;
-fun qualitative_A : A;
-fun quality_N : N;
-fun qualm_N : N;
-fun quandary_N : N;
-fun quango_N : N;
-fun quantify_V2 : V2;
-fun quantitative_A : A;
-fun quantity_N : N;
-fun quantum_N : N;
-fun quarantine_N : N;
-fun quarantine_V2 : V2;
-fun quark_N : N;
-fun quarrel_N : N;
-fun quarrel_V : V;
-fun quarrelsome_A : A;
-fun quarry_N : N;
-fun quarry_V : V;
-fun quarry_V2 : V2;
-fun quarryman_N : N;
-fun quart_N : N;
-fun quarter_N : N;
-fun quarter_V2 : V2;
-fun quarter_day_N : N;
-fun quarter_deck_N : N;
-fun quarter_plate_N : N;
-fun quarterfinal_N : N;
-fun quartering_N : N;
-fun quarterlight_N : N;
-fun quarterly_A : A;
-fun quarterly_Adv : Adv;
-fun quarterly_N : N;
-fun quartermaster_N : N;
-fun quartermaster_general_N : N;
-fun quarterstaff_N : N;
-fun quartet_N : N;
-fun quarto_N : N;
-fun quartz_N : N;
-fun quasar_N : N;
-fun quash_V2 : V2;
-fun quassia_N : N;
-fun quatercentenary_N : N;
-fun quatrain_N : N;
-fun quattrocento_N : N;
-fun quaver_N : N;
-fun quaver_V : V;
-fun quaver_V2 : V2;
-fun quay_N : N;
-fun queasily_Adv : Adv;
-fun queasiness_N : N;
-fun queasy_A : A;
-fun quebec_PN : PN;
-fun queen_N : N;
-fun queen_V2 : V2;
-fun queenborough_in_sheppey_PN : PN;
-fun queenly_A : A;
-fun queensbury_PN : PN;
-fun queensferry_PN : PN;
-fun queensland_PN : PN;
-fun queer_A : A;
-fun queer_N : N;
-fun queer_V2 : V2;
-fun queerness_N : N;
-fun quell_V2 : V2;
-fun quench_V2 : V2;
-fun quenchless_A : A;
-fun quentin_PN : PN;
-fun quern_N : N;
-fun querulous_A : A;
-fun querulousness_N : N;
-fun query_N : N;
-fun query_V2 : V2;
-fun quest_N : N;
-fun quest_V : V;
-fun question_N : N;
-fun question_V2 : V2;
-fun question_mark_N : N;
-fun question_master_N : N;
-fun questionable_A : A;
-fun questioner_N : N;
-fun questioningly_Adv : Adv;
-fun questionnaire_N : N;
-fun quetzal_N : N;
-fun queue_N : N;
-fun queue_V : V;
-fun qui_vive_N : N;
-fun quibble_N : N;
-fun quibble_V : V;
-fun quibbler_N : N;
-fun quibbling_A : A;
-fun quiche_N : N;
-fun quick_A : A;
-fun quick_Adv : Adv;
-fun quick_N : N;
-fun quick_change_A : A;
-fun quick_eared_A : A;
-fun quick_eyed_A : A;
-fun quick_freeze_V2 : V2;
-fun quick_sighted_A : A;
-fun quick_tempered_A : A;
-fun quick_witted_A : A;
-fun quicken_V : V;
-fun quicken_V2 : V2;
-fun quicker_Adv : Adv;
-fun quickest_Adv : Adv;
-fun quickie_N : N;
-fun quicklime_N : N;
-fun quickness_N : N;
-fun quicksand_N : N;
-fun quickset_A : A;
-fun quicksilver_N : N;
-fun quickstep_N : N;
-fun quid_N : N;
-fun quid_pro_quo_N : N;
-fun quiescence_N : N;
-fun quiescent_A : A;
-fun quiet_A : A;
-fun quiet_N : N;
-fun quiet_V : V;
-fun quiet_V2 : V2;
-fun quieten_V : V;
-fun quieten_V2 : V2;
-fun quietism_N : N;
-fun quietist_N : N;
-fun quietness_N : N;
-fun quietude_N : N;
-fun quietus_N : N;
-fun quiff_N : N;
-fun quill_N : N;
-fun quill_feather_N : N;
-fun quilt_N : N;
-fun quilt_V2 : V2;
-fun quin_N : N;
-fun quince_N : N;
-fun quincentenary_A : A;
-fun quincentenary_N : N;
-fun quinine_N : N;
-fun quinquagesima_N : N;
-fun quinquagesima_PN : PN;
-fun quinsy_N : N;
-fun quintal_N : N;
-fun quintessence_N : N;
-fun quintet_N : N;
-fun quintuplet_N : N;
-fun quip_N : N;
-fun quip_V : V;
-fun quire_N : N;
-fun quirk_N : N;
-fun quisling_N : N;
-fun quit_A : A;
-fun quit_V2 : V2;
-fun quito_PN : PN;
-fun quits_A : A;
-fun quittance_N : N;
-fun quitter_N : N;
-fun quiver_N : N;
-fun quiver_V : V;
-fun quiver_V2 : V2;
-fun quixotic_A : A;
-fun quixotically_Adv : Adv;
-fun quiz_N : N;
-fun quiz_V2 : V2;
-fun quizmaster_N : N;
-fun quizzical_A : A;
-fun quoin_N : N;
-fun quoit_N : N;
-fun quonset_N : N;
-fun quorum_N : N;
-fun quota_N : N;
-fun quotability_N : N;
-fun quotable_A : A;
-fun quotation_N : N;
-fun quote_N : N;
-fun quote_V2 : V2;
-fun quotidian_A : A;
-fun quotient_N : N;
-fun qv_PN : PN;
-fun ra_N : N;
-fun rabbi_N : N;
-fun rabbinical_A : A;
-fun rabbit_N : N;
-fun rabbit_V : V;
-fun rabbit_burrow_N : N;
-fun rabbit_hole_N : N;
-fun rabbit_hutch_N : N;
-fun rabbit_punch_N : N;
-fun rabbit_warren_N : N;
-fun rabble_N : N;
-fun rabble_rousing_A : A;
-fun rabelaisian_A : A;
-fun rabid_A : A;
-fun rabies_N : N;
-fun raccoon_N : N;
-fun race_N : N;
-fun race_V : V;
-fun race_V2 : V2;
-fun race_meeting_N : N;
-fun racecard_N : N;
-fun racecourse_N : N;
-fun racehorse_N : N;
-fun raceme_N : N;
-fun racer_N : N;
-fun rachel_PN : PN;
-fun racial_A : A;
-fun racialism_N : N;
-fun racialist_N : N;
-fun racily_Adv : Adv;
-fun raciness_N : N;
-fun racing_N : N;
-fun racism_N : N;
-fun racist_N : N;
-fun rack_N : N;
-fun rack_V2 : V2;
-fun rack_railway_N : N;
-fun rack_rent_N : N;
-fun racket_N : N;
-fun racket_V : V;
-fun racketeer_N : N;
-fun racketeering_N : N;
-fun raconteur_N : N;
-fun racoon_N : N;
-fun racquet_N : N;
-fun racy_A : A;
-fun rada_PN : PN;
-fun radar_N : N;
-fun radcliffe_PN : PN;
-fun radcliffe_on_trent_PN : PN;
-fun raddled_A : A;
-fun radial_A : A;
-fun radial_N : N;
-fun radiance_N : N;
-fun radiant_A : A;
-fun radiate_V : V;
-fun radiate_V2 : V2;
-fun radiation_N : N;
-fun radiator_N : N;
-fun radical_A : A;
-fun radical_N : N;
-fun radicalism_N : N;
-fun radicle_N : N;
-fun radio_N : N;
-fun radio_gramophone_N : N;
-fun radio_location_N : N;
-fun radio_set_N : N;
-fun radio_telescope_N : N;
-fun radioactive_A : A;
-fun radioactivity_N : N;
-fun radiogram_N : N;
-fun radiograph_N : N;
-fun radiographer_N : N;
-fun radiography_N : N;
-fun radioisotope_N : N;
-fun radiologist_N : N;
-fun radiology_N : N;
-fun radiotherapist_N : N;
-fun radiotherapy_N : N;
-fun radish_N : N;
-fun radium_N : N;
-fun radius_N : N;
-fun radlett_PN : PN;
-fun radstock_PN : PN;
-fun raf_N : N;
-fun raffia_N : N;
-fun raffish_A : A;
-fun raffle_N : N;
-fun raffle_V2 : V2;
-fun raft_N : N;
-fun raft_V : V;
-fun raft_V2 : V2;
-fun rafter_N : N;
-fun raftered_A : A;
-fun raftsman_N : N;
-fun rag_N : N;
-fun rag_V2 : V2;
-fun rag_day_N : N;
-fun ragamuffin_N : N;
-fun ragbag_N : N;
-fun rage_N : N;
-fun rage_V : V;
-fun ragged_A : A;
-fun raggedness_N : N;
-fun raglan_N : N;
-fun ragout_N : N;
-fun ragtag_N : N;
-fun ragtime_N : N;
-fun raid_N : N;
-fun raid_V : V;
-fun raid_V2 : V2;
-fun raider_N : N;
-fun rail_N : N;
-fun rail_V : V;
-fun rail_V2 : V2;
-fun railcar_N : N;
-fun railhead_N : N;
-fun railing_N : N;
-fun raillery_N : N;
-fun railroad_N : N;
-fun railroad_V2 : V2;
-fun railway_N : N;
-fun railwayman_N : N;
-fun raiment_N : N;
-fun rain_N : N;
-fun rain_V : V;
-fun rain_V2 : V2;
-fun rain_gauge_N : N;
-fun rainbow_N : N;
-fun raincoat_N : N;
-fun raindrop_N : N;
-fun rainfall_N : N;
-fun rainford_PN : PN;
-fun rainproof_A : A;
-fun rainwater_N : N;
-fun rainy_A : A;
-fun raise_N : N;
-fun raise_V2 : V2;
-fun raiser_N : N;
-fun raisin_N : N;
-fun raison_d'etre_N : N;
-fun raj_N : N;
-fun rajah_N : N;
-fun rake_N : N;
-fun rake_V : V;
-fun rake_V2 : V2;
-fun rake_off_N : N;
-fun rakish_A : A;
-fun rakishness_N : N;
-fun rallentando_A : A;
-fun rallentando_Adv : Adv;
-fun rally_N : N;
-fun rally_V : V;
-fun rally_V2 : V2;
-fun ralph_PN : PN;
-fun ram_N : N;
-fun ram_V2 : V2;
-fun ramadan_N : N;
-fun ramadan_PN : PN;
-fun ramble_N : N;
-fun ramble_V : V;
-fun rambler_N : N;
-fun rambling_A : A;
-fun rambunctious_A : A;
-fun ramification_N : N;
-fun ramify_V : V;
-fun ramify_V2 : V2;
-fun ramjet_N : N;
-fun ramp_N : N;
-fun ramp_V2 : V2;
-fun rampage_N : N;
-fun rampage_V : V;
-fun rampageous_A : A;
-fun rampant_A : A;
-fun rampart_N : N;
-fun ramrod_N : N;
-fun ramsbottom_PN : PN;
-fun ramsgate_PN : PN;
-fun ramshackle_A : A;
-fun ranch_N : N;
-fun rancher_N : N;
-fun rancid_A : A;
-fun rancorous_A : A;
-fun rancour_N : N;
-fun rand_N : N;
-fun randolph_PN : PN;
-fun random_N : N;
-fun randomly_Adv : Adv;
-fun randomness_N : N;
-fun randy_A : A;
-fun ranee_N : N;
-fun range_N : N;
-fun range_V : V;
-fun range_V2 : V2;
-fun rangefinder_N : N;
-fun ranger_N : N;
-fun rangoon_PN : PN;
-fun rani_N : N;
-fun rank_A : A;
-fun rank_N : N;
-fun rank_V : V;
-fun rank_V2 : V2;
-fun ranker_N : N;
-fun ranking_N : N;
-fun rankle_V : V;
-fun rankness_N : N;
-fun ransack_V2 : V2;
-fun ransom_N : N;
-fun ransom_V2 : V2;
-fun rant_N : N;
-fun rant_V : V;
-fun rant_V2 : V2;
-fun ranter_N : N;
-fun rap_N : N;
-fun rap_V : V;
-fun rap_V2 : V2;
-fun rapacious_A : A;
-fun rapacity_N : N;
-fun rape_N : N;
-fun rape_V2 : V2;
-fun rapid_A : A;
-fun rapid_N : N;
-fun rapidity_N : N;
-fun rapier_N : N;
-fun rapier_thrust_N : N;
-fun rapine_N : N;
-fun rapist_N : N;
-fun rapport_N : N;
-fun rapprochement_N : N;
-fun rapscallion_N : N;
-fun rapt_A : A;
-fun rapture_N : N;
-fun rapturous_A : A;
-fun rare_A : A;
-fun rarebit_N : N;
-fun rarefaction_N : N;
-fun rarefy_V : V;
-fun rarefy_V2 : V2;
-fun rareness_N : N;
-fun raring_A : A;
-fun rarity_N : N;
-fun rascal_N : N;
-fun rascally_A : A;
-fun rase_V2 : V2;
-fun rash_A : A;
-fun rash_N : N;
-fun rasher_N : N;
-fun rashness_N : N;
-fun rasp_N : N;
-fun rasp_V : V;
-fun rasp_V2 : V2;
-fun raspberry_N : N;
-fun raspingly_Adv : Adv;
-fun rat_N : N;
-fun rat_V2 : V2;
-fun rat_a_tat_tat_N : N;
-fun rat_tat_N : N;
-fun ratability_N : N;
-fun ratable_A : A;
-fun ratan_N : N;
-fun ratch_N : N;
-fun ratchet_N : N;
-fun rate_N : N;
-fun rate_V : V;
-fun rate_V2 : V2;
-fun rateability_N : N;
-fun rateable_A : A;
-fun ratepayer_N : N;
-fun rather_Adv : Adv;
-fun ratification_N : N;
-fun ratify_V2 : V2;
-fun rating_N : N;
-fun ratio_N : N;
-fun ratiocination_N : N;
-fun ration_N : N;
-fun ration_V2 : V2;
-fun rational_A : A;
-fun rationale_N : N;
-fun rationalism_N : N;
-fun rationalist_N : N;
-fun rationalistic_A : A;
-fun rationality_N : N;
-fun rationalization_N : N;
-fun rationalize_V2 : V2;
-fun ratlin_N : N;
-fun ratline_N : N;
-fun rattan_N : N;
-fun ratter_N : N;
-fun rattle_N : N;
-fun rattle_V : V;
-fun rattle_V2 : V2;
-fun rattlebrained_A : A;
-fun rattlepated_A : A;
-fun rattler_N : N;
-fun rattlesnake_N : N;
-fun rattling_A : A;
-fun rattling_Adv : Adv;
-fun ratty_A : A;
-fun raucous_A : A;
-fun ravage_N : N;
-fun ravage_V : V;
-fun ravage_V2 : V2;
-fun rave_N : N;
-fun rave_V : V;
-fun rave_up_N : N;
-fun ravel_V : V;
-fun ravel_V2 : V2;
-fun raven_N : N;
-fun ravening_A : A;
-fun ravenna_PN : PN;
-fun ravenous_A : A;
-fun raver_N : N;
-fun ravine_N : N;
-fun raving_A : A;
-fun raving_Adv : Adv;
-fun ravioli_N : N;
-fun ravish_V2 : V2;
-fun ravishingly_Adv : Adv;
-fun ravishment_N : N;
-fun raw_A : A;
-fun raw_N : N;
-fun rawboned_A : A;
-fun rawhide_A : A;
-fun rawtenstall_PN : PN;
-fun ray_N : N;
-fun ray_PN : PN;
-fun ray_V : V;
-fun ray_V2 : V2;
-fun raymond_PN : PN;
-fun rayon_N : N;
-fun raze_V2 : V2;
-fun razor_N : N;
-fun razor_V2 : V2;
-fun razor_edge_N : N;
-fun razorback_N : N;
-fun razorbacked_A : A;
-fun razorblade_N : N;
-fun razzle_N : N;
-fun razzle_dazzle_N : N;
-fun rc_PN : PN;
-fun rd_PN : PN;
-fun re_N : N;
-fun re_address_V2 : V2;
-fun re_afforest_V2 : V2;
-fun re_afforestation_N : N;
-fun re_count_N : N;
-fun re_count_V2 : V2;
-fun re_cover_V2 : V2;
-fun re_echo_N : N;
-fun re_echo_V : V;
-fun re_entry_N : N;
-fun re_form_V : V;
-fun re_form_V2 : V2;
-fun re_formation_N : N;
-fun re_join_V2 : V2;
-fun reach_N : N;
-fun reach_V : V;
-fun reach_V2 : V2;
-fun react_V : V;
-fun reaction_N : N;
-fun reactionary_N : N;
-fun reactor_N : N;
-fun read_N : N;
-fun read_V : V;
-fun read_V2 : V2;
-fun readability_N : N;
-fun readable_A : A;
-fun reader_N : N;
-fun readership_N : N;
-fun readily_Adv : Adv;
-fun readiness_N : N;
-fun reading_N : N;
-fun reading_PN : PN;
-fun reading_lamp_N : N;
-fun reading_room_N : N;
-fun readjust_V2 : V2;
-fun readjustment_N : N;
-fun readmission_N : N;
-fun readmit_V2 : V2;
-fun ready_A : A;
-fun ready_N : N;
-fun ready_made_A : A;
-fun reaffiliation_N : N;
-fun reaffirm_V2 : V2;
-fun reagent_N : N;
-fun real_A : A;
-fun real_N : N;
-fun realism_N : N;
-fun realist_N : N;
-fun realistic_A : A;
-fun realistically_Adv : Adv;
-fun reality_N : N;
-fun realizable_A : A;
-fun realization_N : N;
-fun realize_V2 : V2;
-fun reallocation_N : N;
-fun realm_N : N;
-fun realtor_N : N;
-fun realty_N : N;
-fun ream_N : N;
-fun reanimate_V2 : V2;
-fun reap_V : V;
-fun reap_V2 : V2;
-fun reaper_N : N;
-fun reaping_hook_N : N;
-fun reappear_V : V;
-fun reappearance_N : N;
-fun reappraisal_N : N;
-fun rear_N : N;
-fun rear_V : V;
-fun rear_V2 : V2;
-fun rear_admiral_N : N;
-fun rearguard_N : N;
-fun rearm_V : V;
-fun rearm_V2 : V2;
-fun rearmament_N : N;
-fun rearmost_A : A;
-fun rearrange_V2 : V2;
-fun rearrangement_N : N;
-fun rearward_N : N;
-fun rearwards_Adv : Adv;
-fun reason_N : N;
-fun reason_V : V;
-fun reason_V2 : V2;
-fun reasonable_A : A;
-fun reasonableness_N : N;
-fun reasoning_N : N;
-fun reasonless_A : A;
-fun reassemble_V : V;
-fun reassemble_V2 : V2;
-fun reassess_V2 : V2;
-fun reassessment_N : N;
-fun reassurance_N : N;
-fun reassure_V2 : V2;
-fun reassuring_A : A;
-fun reattribute_V2 : V2;
-fun rebarbative_A : A;
-fun rebate_N : N;
-fun rebecca_PN : PN;
-fun rebel_N : N;
-fun rebel_V : V;
-fun rebellion_N : N;
-fun rebellious_A : A;
-fun rebelliousness_N : N;
-fun rebind_V2 : V2;
-fun rebirth_N : N;
-fun reborn_A : A;
-fun rebound_N : N;
-fun rebound_V : V;
-fun rebuff_N : N;
-fun rebuff_V2 : V2;
-fun rebuild_V2 : V2;
-fun rebuke_N : N;
-fun rebuke_V2 : V2;
-fun rebukingly_Adv : Adv;
-fun rebus_N : N;
-fun rebut_V2 : V2;
-fun rebuttal_N : N;
-fun rec_PN : PN;
-fun recalcitrance_N : N;
-fun recalcitrancy_N : N;
-fun recalcitrant_A : A;
-fun recall_N : N;
-fun recall_V2 : V2;
-fun recant_V : V;
-fun recant_V2 : V2;
-fun recantation_N : N;
-fun recap_N : N;
-fun recap_V : V;
-fun recap_V2 : V2;
-fun recapitulate_V : V;
-fun recapitulate_V2 : V2;
-fun recapitulation_N : N;
-fun recapture_V2 : V2;
-fun recast_V2 : V2;
-fun recce_N : N;
-fun recd_PN : PN;
-fun recede_V : V;
-fun receipt_N : N;
-fun receipt_V2 : V2;
-fun receivable_A : A;
-fun receive_V : V;
-fun receive_V2 : V2;
-fun received_A : A;
-fun receiver_N : N;
-fun receivership_N : N;
-fun receiving_set_N : N;
-fun recent_A : A;
-fun receptacle_N : N;
-fun reception_N : N;
-fun reception_desk_N : N;
-fun receptionist_N : N;
-fun receptive_A : A;
-fun receptiveness_N : N;
-fun receptivity_N : N;
-fun recess_N : N;
-fun recess_V2 : V2;
-fun recession_N : N;
-fun recessional_A : A;
-fun recessional_N : N;
-fun recessive_A : A;
-fun recherche_A : A;
-fun recidivism_N : N;
-fun recidivist_N : N;
-fun recife_PN : PN;
-fun recipe_N : N;
-fun recipient_N : N;
-fun reciprocal_A : A;
-fun reciprocal_N : N;
-fun reciprocate_V : V;
-fun reciprocate_V2 : V2;
-fun reciprocation_N : N;
-fun reciprocity_N : N;
-fun recital_N : N;
-fun recitalist_N : N;
-fun recitation_N : N;
-fun recitative_N : N;
-fun recite_V : V;
-fun recite_V2 : V2;
-fun reckless_A : A;
-fun recklessness_N : N;
-fun recklinghausen_PN : PN;
-fun reckon_V : V;
-fun reckon_V2 : V2;
-fun reckoner_N : N;
-fun reckoning_N : N;
-fun reclaim_V2 : V2;
-fun reclamation_N : N;
-fun recline_V : V;
-fun recline_V2 : V2;
-fun recluse_N : N;
-fun recognition_N : N;
-fun recognizable_A : A;
-fun recognizance_N : N;
-fun recognize_V2 : V2;
-fun recoil_N : N;
-fun recoil_V : V;
-fun recollect_V : V;
-fun recollect_V2 : V2;
-fun recollection_N : N;
-fun recommend_V2 : V2;
-fun recommendation_N : N;
-fun recommit_V2 : V2;
-fun recompense_N : N;
-fun recompense_V2 : V2;
-fun reconcilable_A : A;
-fun reconcile_V2 : V2;
-fun reconciliation_N : N;
-fun recondite_A : A;
-fun recondition_V2 : V2;
-fun reconnaissance_N : N;
-fun reconnoitre_V : V;
-fun reconnoitre_V2 : V2;
-fun reconsecrate_V2 : V2;
-fun reconsider_V2 : V2;
-fun reconstruct_V2 : V2;
-fun reconstruction_N : N;
-fun reconvict_V2 : V2;
-fun record_N : N;
-fun record_V2 : V2;
-fun record_breaking_A : A;
-fun record_player_N : N;
-fun recorder_N : N;
-fun recording_N : N;
-fun recount_V2 : V2;
-fun recoup_V2 : V2;
-fun recourse_N : N;
-fun recover_V : V;
-fun recover_V2 : V2;
-fun recoverable_A : A;
-fun recovery_N : N;
-fun recreant_A : A;
-fun recreant_N : N;
-fun recreate_V2 : V2;
-fun recreation_N : N;
-fun recreational_A : A;
-fun recriminate_V : V;
-fun recrimination_N : N;
-fun recriminatory_A : A;
-fun recrudescence_N : N;
-fun recruit_N : N;
-fun recruit_V : V;
-fun recruit_V2 : V2;
-fun recruitment_N : N;
-fun rectal_A : A;
-fun rectangle_N : N;
-fun rectangular_A : A;
-fun rectification_N : N;
-fun rectifier_N : N;
-fun rectify_V2 : V2;
-fun rectilinear_A : A;
-fun rectitude_N : N;
-fun recto_N : N;
-fun rector_N : N;
-fun rectory_N : N;
-fun rectum_N : N;
-fun recumbent_A : A;
-fun recuperate_V : V;
-fun recuperate_V2 : V2;
-fun recuperation_N : N;
-fun recuperative_A : A;
-fun recur_V : V;
-fun recurrence_N : N;
-fun recurrent_A : A;
-fun recurve_V : V;
-fun recurve_V2 : V2;
-fun recusancy_N : N;
-fun recusant_A : A;
-fun recusant_N : N;
-fun recycle_V2 : V2;
-fun red_A : A;
-fun red_N : N;
-fun red_hot_A : A;
-fun red_rimmed_A : A;
-fun redact_V2 : V2;
-fun redaction_N : N;
-fun redbreast_N : N;
-fun redbrick_A : A;
-fun redbridge_PN : PN;
-fun redcap_N : N;
-fun redcoat_N : N;
-fun redden_V : V;
-fun redden_V2 : V2;
-fun reddish_A : A;
-fun redditch_PN : PN;
-fun redecorate_V2 : V2;
-fun redeem_V2 : V2;
-fun redeemable_A : A;
-fun redeemer_N : N;
-fun redefine_V2 : V2;
-fun redemption_N : N;
-fun redemptive_A : A;
-fun redeploy_V2 : V2;
-fun redeployment_N : N;
-fun redesign_V2 : V2;
-fun redevelop_V2 : V2;
-fun redevelopment_N : N;
-fun redhead_N : N;
-fun rediffusion_N : N;
-fun rediscover_V2 : V2;
-fun rediscovery_N : N;
-fun redisposition_N : N;
-fun redistribute_V2 : V2;
-fun redistribution_N : N;
-fun redness_N : N;
-fun redo_V2 : V2;
-fun redolence_N : N;
-fun redolent_A : A;
-fun redouble_V : V;
-fun redouble_V2 : V2;
-fun redoubt_N : N;
-fun redoubtable_A : A;
-fun redound_V : V;
-fun redress_N : N;
-fun redress_V2 : V2;
-fun redruth_PN : PN;
-fun redskin_N : N;
-fun reduce_V : V;
-fun reduce_V2 : V2;
-fun reducible_A : A;
-fun reductio_ad_absurdum_N : N;
-fun reduction_N : N;
-fun redundance_N : N;
-fun redundancy_N : N;
-fun redundant_A : A;
-fun reduplicate_V2 : V2;
-fun reduplication_N : N;
-fun redwing_N : N;
-fun redwood_N : N;
-fun reed_N : N;
-fun reedy_A : A;
-fun reef_N : N;
-fun reef_V2 : V2;
-fun reef_knot_N : N;
-fun reefer_N : N;
-fun reek_N : N;
-fun reek_V : V;
-fun reel_N : N;
-fun reel_V : V;
-fun reel_V2 : V2;
-fun reeve_N : N;
-fun ref_N : N;
-fun reface_V2 : V2;
-fun refashion_N : N;
-fun refashion_V2 : V2;
-fun refection_N : N;
-fun refectory_N : N;
-fun refer_V : V;
-fun refer_V2 : V2;
-fun referable_A : A;
-fun referee_N : N;
-fun referee_V : V;
-fun referee_V2 : V2;
-fun reference_N : N;
-fun referendum_N : N;
-fun referential_A : A;
-fun refill_N : N;
-fun refill_V2 : V2;
-fun refine_V : V;
-fun refine_V2 : V2;
-fun refinement_N : N;
-fun refiner_N : N;
-fun refinery_N : N;
-fun refit_N : N;
-fun refit_V : V;
-fun refit_V2 : V2;
-fun reflate_V2 : V2;
-fun reflation_N : N;
-fun reflect_V : V;
-fun reflect_V2 : V2;
-fun reflection_N : N;
-fun reflective_A : A;
-fun reflector_N : N;
-fun reflex_A : A;
-fun reflex_N : N;
-fun reflexion_N : N;
-fun reflexive_A : A;
-fun reflexive_N : N;
-fun refloat_V : V;
-fun refloat_V2 : V2;
-fun reflux_N : N;
-fun reforest_V2 : V2;
-fun reforestation_N : N;
-fun reform_N : N;
-fun reform_V : V;
-fun reform_V2 : V2;
-fun reformation_N : N;
-fun reformatory_A : A;
-fun reformatory_N : N;
-fun reformer_N : N;
-fun refract_V2 : V2;
-fun refraction_N : N;
-fun refractory_A : A;
-fun refrain_N : N;
-fun refrain_V : V;
-fun refresh_V2 : V2;
-fun refresher_N : N;
-fun refreshing_A : A;
-fun refreshment_N : N;
-fun refrigerant_A : A;
-fun refrigerant_N : N;
-fun refrigerate_V2 : V2;
-fun refrigeration_N : N;
-fun refrigerator_N : N;
-fun refuel_V : V;
-fun refuel_V2 : V2;
-fun refuge_N : N;
-fun refugee_N : N;
-fun refulgence_N : N;
-fun refulgent_A : A;
-fun refund_N : N;
-fun refund_V2 : V2;
-fun refurbish_V2 : V2;
-fun refurnish_V2 : V2;
-fun refusal_N : N;
-fun refuse_N : N;
-fun refuse_V : V;
-fun refuse_V2 : V2;
-fun refuse_collector_N : N;
-fun refutable_A : A;
-fun refutation_N : N;
-fun refute_V2 : V2;
-fun reg_PN : PN;
-fun regain_V2 : V2;
-fun regal_A : A;
-fun regale_V2 : V2;
-fun regard_N : N;
-fun regard_V2 : V2;
-fun regardful_A : A;
-fun regardless_A : A;
-fun regatta_N : N;
-fun regency_N : N;
-fun regenerate_A : A;
-fun regenerate_V : V;
-fun regenerate_V2 : V2;
-fun regeneration_N : N;
-fun regensburg_PN : PN;
-fun regent_A : A;
-fun regent_N : N;
-fun reggae_N : N;
-fun regicide_N : N;
-fun regime_1_N : N;
-fun regimen_N : N;
-fun regiment_N : N;
-fun regiment_V2 : V2;
-fun regimental_A : A;
-fun regimentation_N : N;
-fun regina_PN : PN;
-fun reginald_PN : PN;
-fun region_N : N;
-fun regional_A : A;
-fun register_N : N;
-fun register_V : V;
-fun register_V2 : V2;
-fun registrar_N : N;
-fun registration_N : N;
-fun registry_N : N;
-fun regnant_A : A;
-fun regress_V : V;
-fun regression_N : N;
-fun regressive_A : A;
-fun regret_N : N;
-fun regret_V2 : V2;
-fun regretful_A : A;
-fun regrettable_A : A;
-fun regroup_V : V;
-fun regroup_V2 : V2;
-fun regular_A : A;
-fun regular_N : N;
-fun regularity_N : N;
-fun regularization_N : N;
-fun regularize_V2 : V2;
-fun regulate_V2 : V2;
-fun regulation_N : N;
-fun regulator_N : N;
-fun regurgitate_V : V;
-fun regurgitate_V2 : V2;
-fun rehabilitate_V2 : V2;
-fun rehabilitation_N : N;
-fun rehash_N : N;
-fun rehash_V2 : V2;
-fun rehear_V2 : V2;
-fun rehearing_N : N;
-fun rehearsal_N : N;
-fun rehearse_V : V;
-fun rehearse_V2 : V2;
-fun rehouse_V2 : V2;
-fun reich_N : N;
-fun reigate_PN : PN;
-fun reign_N : N;
-fun reign_V : V;
-fun reimburse_V2 : V2;
-fun reimbursement_N : N;
-fun reimposition_N : N;
-fun rein_N : N;
-fun rein_V2 : V2;
-fun reincarnate_A : A;
-fun reincarnate_V2 : V2;
-fun reincarnation_N : N;
-fun reindeer_N : N;
-fun reinforce_V2 : V2;
-fun reinforcement_N : N;
-fun reinstate_V2 : V2;
-fun reinstatement_N : N;
-fun reinsurance_N : N;
-fun reinsure_V2 : V2;
-fun reintegrate_V2 : V2;
-fun reinterpret_V2 : V2;
-fun reinterpretation_N : N;
-fun reissue_N : N;
-fun reissue_V2 : V2;
-fun reiterate_V2 : V2;
-fun reiteration_N : N;
-fun reject_N : N;
-fun reject_V2 : V2;
-fun rejection_N : N;
-fun rejig_V2 : V2;
-fun rejoice_V : V;
-fun rejoice_V2 : V2;
-fun rejoicing_N : N;
-fun rejoin_V : V;
-fun rejoin_V2 : V2;
-fun rejoinder_N : N;
-fun rejuvenate_V : V;
-fun rejuvenate_V2 : V2;
-fun rejuvenation_N : N;
-fun rekindle_V : V;
-fun rekindle_V2 : V2;
-fun relapse_N : N;
-fun relapse_V : V;
-fun relate_V : V;
-fun relate_V2 : V2;
-fun relation_N : N;
-fun relationship_N : N;
-fun relative_A : A;
-fun relative_N : N;
-fun relativity_N : N;
-fun relax_V : V;
-fun relax_V2 : V2;
-fun relaxation_N : N;
-fun relay_N : N;
-fun relay_V2 : V2;
-fun release_N : N;
-fun release_V2 : V2;
-fun relegate_V2 : V2;
-fun relegation_N : N;
-fun relent_V : V;
-fun relentless_A : A;
-fun relevance_N : N;
-fun relevancy_N : N;
-fun relevant_A : A;
-fun reliability_N : N;
-fun reliable_A : A;
-fun reliance_N : N;
-fun reliant_A : A;
-fun relic_N : N;
-fun relict_N : N;
-fun relief_N : N;
-fun relieve_V2 : V2;
-fun religion_N : N;
-fun religious_A : A;
-fun religious_N : N;
-fun reline_V2 : V2;
-fun relinquish_V2 : V2;
-fun reliquary_N : N;
-fun relish_N : N;
-fun relish_V2 : V2;
-fun relive_V2 : V2;
-fun relocate_V : V;
-fun relocate_V2 : V2;
-fun relocation_N : N;
-fun reluctance_N : N;
-fun reluctant_A : A;
-fun rely_V : V;
-fun remain_V : V;
-fun remainder_N : N;
-fun remake_N : N;
-fun remake_V2 : V2;
-fun remand_N : N;
-fun remand_V2 : V2;
-fun remark_N : N;
-fun remark_V : V;
-fun remark_V2 : V2;
-fun remarkable_A : A;
-fun remarriage_N : N;
-fun remarry_V : V;
-fun remarry_V2 : V2;
-fun remediable_A : A;
-fun remedial_A : A;
-fun remedy_N : N;
-fun remedy_V2 : V2;
-fun remember_V : V;
-fun remember_V2 : V2;
-fun remembrance_N : N;
-fun remilitarization_N : N;
-fun remilitarize_V2 : V2;
-fun remind_V2 : V2;
-fun reminder_N : N;
-fun reminisce_V : V;
-fun reminiscence_N : N;
-fun reminiscent_A : A;
-fun remiss_A : A;
-fun remission_N : N;
-fun remissness_N : N;
-fun remit_V : V;
-fun remit_V2 : V2;
-fun remittance_N : N;
-fun remittent_A : A;
-fun remnant_N : N;
-fun remodel_V2 : V2;
-fun remonstrance_N : N;
-fun remonstrate_V : V;
-fun remorse_N : N;
-fun remorseful_A : A;
-fun remorseless_A : A;
-fun remote_A : A;
-fun remoteness_N : N;
-fun remould_V2 : V2;
-fun remount_N : N;
-fun remount_V : V;
-fun remount_V2 : V2;
-fun removable_A : A;
-fun removal_N : N;
-fun remove_N : N;
-fun remove_V : V;
-fun remove_V2 : V2;
-fun removed_A : A;
-fun remover_N : N;
-fun remscheid_PN : PN;
-fun remunerate_V2 : V2;
-fun remuneration_N : N;
-fun remunerative_A : A;
-fun renaissance_N : N;
-fun renal_A : A;
-fun rename_V2 : V2;
-fun renascence_N : N;
-fun renascent_A : A;
-fun rend_V2 : V2;
-fun render_V2 : V2;
-fun rendering_N : N;
-fun rendezvous_N : N;
-fun rendezvous_V : V;
-fun rendition_N : N;
-fun renegade_N : N;
-fun renegade_V : V;
-fun renege_V : V;
-fun renegue_V : V;
-fun renew_V2 : V2;
-fun renewable_A : A;
-fun renewal_N : N;
-fun renfrew_PN : PN;
-fun rennes_PN : PN;
-fun rennet_N : N;
-fun renounce_V2 : V2;
-fun renovate_V2 : V2;
-fun renovation_N : N;
-fun renovator_N : N;
-fun renown_N : N;
-fun renowned_A : A;
-fun rent_N : N;
-fun rent_V : V;
-fun rent_V2 : V2;
-fun rent_collector_N : N;
-fun rent_free_A : A;
-fun rent_free_Adv : Adv;
-fun rent_rebate_N : N;
-fun rent_roll_N : N;
-fun rentable_A : A;
-fun rental_N : N;
-fun rentier_N : N;
-fun renunciation_N : N;
-fun reopen_V : V;
-fun reopen_V2 : V2;
-fun reorganization_N : N;
-fun reorganize_V : V;
-fun reorganize_V2 : V2;
-fun reorient_V : V;
-fun reorient_V2 : V2;
-fun reorientate_V : V;
-fun reorientate_V2 : V2;
-fun reorientation_N : N;
-fun rep_N : N;
-fun repaint_V2 : V2;
-fun repair_N : N;
-fun repair_V : V;
-fun repair_V2 : V2;
-fun repairable_A : A;
-fun repairer_N : N;
-fun reparable_A : A;
-fun reparation_N : N;
-fun repartee_N : N;
-fun repast_N : N;
-fun repatriate_N : N;
-fun repatriate_V2 : V2;
-fun repatriation_N : N;
-fun repay_V : V;
-fun repay_V2 : V2;
-fun repayable_A : A;
-fun repayment_N : N;
-fun repeal_N : N;
-fun repeal_V2 : V2;
-fun repeat_N : N;
-fun repeat_V : V;
-fun repeat_V2 : V2;
-fun repeatable_A : A;
-fun repeated_A : A;
-fun repeater_N : N;
-fun repel_V2 : V2;
-fun repellent_A : A;
-fun repellent_N : N;
-fun repent_V : V;
-fun repent_V2 : V2;
-fun repentance_N : N;
-fun repentant_A : A;
-fun repercussion_N : N;
-fun repertoire_N : N;
-fun repertory_N : N;
-fun repetition_N : N;
-fun repetitious_A : A;
-fun repetitive_A : A;
-fun repine_V : V;
-fun replace_V2 : V2;
-fun replaceable_A : A;
-fun replacement_N : N;
-fun replant_V2 : V2;
-fun replay_N : N;
-fun replay_V2 : V2;
-fun replenish_V2 : V2;
-fun replenishment_N : N;
-fun replete_A : A;
-fun repletion_N : N;
-fun replica_N : N;
-fun reply_N : N;
-fun reply_V : V;
-fun reply_V2 : V2;
-fun reply_paid_A : A;
-fun repoint_V2 : V2;
-fun report_N : N;
-fun report_V : V;
-fun report_V2 : V2;
-fun reportable_A : A;
-fun reportage_N : N;
-fun reportedly_Adv : Adv;
-fun reporter_N : N;
-fun repose_N : N;
-fun repose_V : V;
-fun repose_V2 : V2;
-fun reposeful_A : A;
-fun repository_N : N;
-fun repot_V2 : V2;
-fun repp_N : N;
-fun reprehend_V2 : V2;
-fun reprehensible_A : A;
-fun represent_V2 : V2;
-fun representation_N : N;
-fun representative_A : A;
-fun representative_N : N;
-fun repress_V2 : V2;
-fun repressed_A : A;
-fun repression_N : N;
-fun repressive_A : A;
-fun reprieve_N : N;
-fun reprieve_V2 : V2;
-fun reprimand_N : N;
-fun reprimand_V2 : V2;
-fun reprint_N : N;
-fun reprint_V2 : V2;
-fun reprisal_N : N;
-fun reproach_N : N;
-fun reproach_V2 : V2;
-fun reproachful_A : A;
-fun reprobate_N : N;
-fun reprobate_V2 : V2;
-fun reprobation_N : N;
-fun reproduce_V : V;
-fun reproduce_V2 : V2;
-fun reproducer_N : N;
-fun reproducible_A : A;
-fun reproduction_N : N;
-fun reproductive_A : A;
-fun reproof_N : N;
-fun reproof_V2 : V2;
-fun reprove_V2 : V2;
-fun reprovingly_Adv : Adv;
-fun reps_N : N;
-fun reptile_N : N;
-fun reptilian_A : A;
-fun reptilian_N : N;
-fun republic_N : N;
-fun republican_A : A;
-fun republican_N : N;
-fun republicanism_N : N;
-fun repudiate_V2 : V2;
-fun repudiation_N : N;
-fun repugnance_N : N;
-fun repugnant_A : A;
-fun repulse_N : N;
-fun repulse_V2 : V2;
-fun repulsion_N : N;
-fun repulsive_A : A;
-fun reputable_A : A;
-fun reputation_N : N;
-fun repute_N : N;
-fun repute_V2 : V2;
-fun reputed_A : A;
-fun request_N : N;
-fun request_V2 : V2;
-fun requiem_N : N;
-fun require_V2 : V2;
-fun requirement_N : N;
-fun requisite_A : A;
-fun requisite_N : N;
-fun requisition_N : N;
-fun requisition_V2 : V2;
-fun requital_N : N;
-fun requite_V2 : V2;
-fun reread_V2 : V2;
-fun reredos_N : N;
-fun rerun_N : N;
-fun rerun_V2 : V2;
-fun res_N : N;
-fun rescind_V2 : V2;
-fun rescript_N : N;
-fun rescue_N : N;
-fun rescue_V2 : V2;
-fun rescuer_N : N;
-fun research_N : N;
-fun research_V : V;
-fun researcher_N : N;
-fun reseat_V2 : V2;
-fun reseed_V2 : V2;
-fun resell_V2 : V2;
-fun resemblance_N : N;
-fun resemble_V2 : V2;
-fun resent_V2 : V2;
-fun resentful_A : A;
-fun resentment_N : N;
-fun reservation_N : N;
-fun reserve_N : N;
-fun reserve_V2 : V2;
-fun reserved_A : A;
-fun reservist_N : N;
-fun reservoir_N : N;
-fun reset_V2 : V2;
-fun resettle_V : V;
-fun resettle_V2 : V2;
-fun resettlement_N : N;
-fun reshape_V2 : V2;
-fun reshuffle_N : N;
-fun reshuffle_V2 : V2;
-fun reside_V : V;
-fun residence_N : N;
-fun residency_N : N;
-fun resident_A : A;
-fun resident_N : N;
-fun residential_A : A;
-fun residual_A : A;
-fun residuary_A : A;
-fun residue_N : N;
-fun resign_V : V;
-fun resign_V2 : V2;
-fun resignation_N : N;
-fun resigned_A : A;
-fun resilience_N : N;
-fun resiliency_N : N;
-fun resilient_A : A;
-fun resin_N : N;
-fun resinated_A : A;
-fun resinous_A : A;
-fun resist_V : V;
-fun resist_V2 : V2;
-fun resistance_N : N;
-fun resistant_A : A;
-fun resister_N : N;
-fun resistive_A : A;
-fun resistivity_N : N;
-fun resistless_A : A;
-fun resistor_N : N;
-fun resole_V2 : V2;
-fun resolute_A : A;
-fun resoluteness_N : N;
-fun resolution_N : N;
-fun resolvable_A : A;
-fun resolve_N : N;
-fun resolve_V : V;
-fun resolve_V2 : V2;
-fun resonance_N : N;
-fun resonant_A : A;
-fun resonate_V : V;
-fun resonate_V2 : V2;
-fun resonator_N : N;
-fun resort_N : N;
-fun resort_V : V;
-fun resound_V : V;
-fun resound_V2 : V2;
-fun resoundingly_Adv : Adv;
-fun resource_N : N;
-fun resourceful_A : A;
-fun resourceless_A : A;
-fun respect_N : N;
-fun respect_V2 : V2;
-fun respectability_N : N;
-fun respectable_A : A;
-fun respecter_N : N;
-fun respectful_A : A;
-fun respective_A : A;
-fun respiration_N : N;
-fun respirator_N : N;
-fun respiratory_A : A;
-fun respire_V : V;
-fun respite_N : N;
-fun respite_V2 : V2;
-fun resplendence_N : N;
-fun resplendency_N : N;
-fun resplendent_A : A;
-fun respond_V : V;
-fun respondent_N : N;
-fun response_N : N;
-fun responsibility_N : N;
-fun responsible_A : A;
-fun responsive_A : A;
-fun responsiveness_N : N;
-fun rest_N : N;
-fun rest_V : V;
-fun rest_V2 : V2;
-fun rest_cure_N : N;
-fun rest_day_N : N;
-fun rest_home_N : N;
-fun rest_house_N : N;
-fun restart_V : V;
-fun restart_V2 : V2;
-fun restate_V2 : V2;
-fun restatement_N : N;
-fun restaurant_N : N;
-fun restauranteur_N : N;
-fun restaurateur_N : N;
-fun restful_A : A;
-fun restfulness_N : N;
-fun restitution_N : N;
-fun restive_A : A;
-fun restiveness_N : N;
-fun restless_A : A;
-fun restlessness_N : N;
-fun restock_V2 : V2;
-fun restoration_N : N;
-fun restorative_A : A;
-fun restorative_N : N;
-fun restore_V2 : V2;
-fun restorer_N : N;
-fun restrain_V2 : V2;
-fun restrained_A : A;
-fun restraint_N : N;
-fun restrict_V2 : V2;
-fun restriction_N : N;
-fun restrictive_A : A;
-fun restrictiveness_N : N;
-fun restructure_V2 : V2;
-fun result_N : N;
-fun result_V : V;
-fun resultant_A : A;
-fun resume_V2 : V2;
-fun resumption_N : N;
-fun resurface_V : V;
-fun resurface_V2 : V2;
-fun resurgence_N : N;
-fun resurgent_A : A;
-fun resurrect_V : V;
-fun resurrect_V2 : V2;
-fun resurrection_N : N;
-fun resuscitate_V : V;
-fun resuscitate_V2 : V2;
-fun resuscitation_N : N;
-fun ret_PN : PN;
-fun ret_V2 : V2;
-fun retail_Adv : Adv;
-fun retail_N : N;
-fun retail_V : V;
-fun retail_V2 : V2;
-fun retailer_N : N;
-fun retain_V2 : V2;
-fun retainer_N : N;
-fun retake_N : N;
-fun retake_V2 : V2;
-fun retaliate_V : V;
-fun retaliation_N : N;
-fun retaliative_A : A;
-fun retaliatory_A : A;
-fun retard_V2 : V2;
-fun retardation_N : N;
-fun retch_V : V;
-fun retd_PN : PN;
-fun retell_V2 : V2;
-fun retention_N : N;
-fun retentive_A : A;
-fun retentiveness_N : N;
-fun retford_PN : PN;
-fun rethink_N : N;
-fun rethink_V : V;
-fun rethink_V2 : V2;
-fun reticence_N : N;
-fun reticent_A : A;
-fun reticulate_A : A;
-fun reticulate_V : V;
-fun reticulate_V2 : V2;
-fun reticulation_N : N;
-fun reticule_N : N;
-fun retina_N : N;
-fun retinal_A : A;
-fun retinue_N : N;
-fun retire_N : N;
-fun retire_V : V;
-fun retire_V2 : V2;
-fun retired_A : A;
-fun retirement_N : N;
-fun retiring_A : A;
-fun retool_V2 : V2;
-fun retort_N : N;
-fun retort_V : V;
-fun retort_V2 : V2;
-fun retouch_V2 : V2;
-fun retrace_V2 : V2;
-fun retract_V : V;
-fun retract_V2 : V2;
-fun retractable_A : A;
-fun retractile_A : A;
-fun retraction_N : N;
-fun retransmit_V2 : V2;
-fun retread_N : N;
-fun retread_V2 : V2;
-fun retreat_N : N;
-fun retreat_V : V;
-fun retrench_V : V;
-fun retrench_V2 : V2;
-fun retrenchment_N : N;
-fun retrial_N : N;
-fun retribution_N : N;
-fun retributive_A : A;
-fun retrievable_A : A;
-fun retrieval_N : N;
-fun retrieve_V : V;
-fun retrieve_V2 : V2;
-fun retriever_N : N;
-fun retroactive_A : A;
-fun retrograde_A : A;
-fun retrograde_V : V;
-fun retrogress_V : V;
-fun retrogression_N : N;
-fun retrogressive_A : A;
-fun retrorocket_N : N;
-fun retrospect_N : N;
-fun retrospection_N : N;
-fun retrospective_A : A;
-fun retrousse_A : A;
-fun retroversion_N : N;
-fun retsina_N : N;
-fun return_N : N;
-fun return_V : V;
-fun return_V2 : V2;
-fun returnable_A : A;
-fun reunification_N : N;
-fun reunion_N : N;
-fun reunite_V : V;
-fun reunite_V2 : V2;
-fun rev_N : N;
-fun rev_PN : PN;
-fun rev_V : V;
-fun rev_V2 : V2;
-fun revaluation_N : N;
-fun revalue_V2 : V2;
-fun revamp_V2 : V2;
-fun revd_PN : PN;
-fun reveal_V2 : V2;
-fun reveille_N : N;
-fun revel_N : N;
-fun revel_V : V;
-fun revelation_N : N;
-fun reveller_N : N;
-fun revelry_N : N;
-fun revenge_N : N;
-fun revenge_V2 : V2;
-fun revengeful_A : A;
-fun revenue_N : N;
-fun reverberant_A : A;
-fun reverberate_V : V;
-fun reverberate_V2 : V2;
-fun reverberation_N : N;
-fun revere_V2 : V2;
-fun reverence_N : N;
-fun reverence_V2 : V2;
-fun reverend_A : A;
-fun reverend_N : N;
-fun reverent_A : A;
-fun reverential_A : A;
-fun reverie_N : N;
-fun revers_N : N;
-fun reversal_N : N;
-fun reverse_A : A;
-fun reverse_N : N;
-fun reverse_V : V;
-fun reverse_V2 : V2;
-fun reversibility_N : N;
-fun reversible_A : A;
-fun reversion_N : N;
-fun reversionary_A : A;
-fun revert_V : V;
-fun revertible_A : A;
-fun revetment_N : N;
-fun review_N : N;
-fun review_V : V;
-fun review_V2 : V2;
-fun reviewer_N : N;
-fun revile_V : V;
-fun revile_V2 : V2;
-fun revise_N : N;
-fun revise_V2 : V2;
-fun reviser_N : N;
-fun revision_N : N;
-fun revisionism_N : N;
-fun revisionist_N : N;
-fun revisit_V2 : V2;
-fun revitalization_N : N;
-fun revitalize_V2 : V2;
-fun revival_N : N;
-fun revivalist_N : N;
-fun revive_V : V;
-fun revive_V2 : V2;
-fun revivify_V2 : V2;
-fun revocable_A : A;
-fun revocation_N : N;
-fun revoke_N : N;
-fun revoke_V : V;
-fun revoke_V2 : V2;
-fun revolt_N : N;
-fun revolt_V : V;
-fun revolt_V2 : V2;
-fun revolting_A : A;
-fun revolution_N : N;
-fun revolutionary_A : A;
-fun revolutionary_N : N;
-fun revolutionize_V2 : V2;
-fun revolve_V : V;
-fun revolve_V2 : V2;
-fun revolver_N : N;
-fun revue_N : N;
-fun revulsion_N : N;
-fun reward_N : N;
-fun reward_V2 : V2;
-fun rewire_V2 : V2;
-fun reword_V2 : V2;
-fun rewrite_N : N;
-fun rewrite_V2 : V2;
-fun rex_PN : PN;
-fun reykjavik_PN : PN;
-fun rhapsodize_V : V;
-fun rhapsody_N : N;
-fun rhea_N : N;
-fun rheims_PN : PN;
-fun rhenish_A : A;
-fun rheostat_N : N;
-fun rhesus_N : N;
-fun rhetoric_N : N;
-fun rhetorical_A : A;
-fun rhetorician_N : N;
-fun rheum_N : N;
-fun rheumatic_A : A;
-fun rheumatic_N : N;
-fun rheumatism_N : N;
-fun rheumatoid_A : A;
-fun rheydt_PN : PN;
-fun rhinal_A : A;
-fun rhine_PN : PN;
-fun rhinestone_N : N;
-fun rhino_N : N;
-fun rhinoceros_N : N;
-fun rhizome_N : N;
-fun rhode_PN : PN;
-fun rhododendron_N : N;
-fun rhomb_N : N;
-fun rhomboid_A : A;
-fun rhomboid_N : N;
-fun rhombus_N : N;
-fun rhondda_PN : PN;
-fun rhosllanerchrugog_PN : PN;
-fun rhubarb_N : N;
-fun rhyl_PN : PN;
-fun rhyme_N : N;
-fun rhyme_V : V;
-fun rhyme_V2 : V2;
-fun rhymed_A : A;
-fun rhymester_N : N;
-fun rhymney_PN : PN;
-fun rhythm_N : N;
-fun rhythmic_A : A;
-fun rhythmical_A : A;
-fun rib_N : N;
-fun rib_V2 : V2;
-fun ribald_A : A;
-fun ribald_N : N;
-fun ribaldry_N : N;
-fun riband_N : N;
-fun ribbon_N : N;
-fun riboflavin_N : N;
-fun rice_N : N;
-fun rice_paper_N : N;
-fun rich_A : A;
-fun richard_PN : PN;
-fun richmond_PN : PN;
-fun richmond_upon_thames_PN : PN;
-fun richness_N : N;
-fun rick_N : N;
-fun rick_PN : PN;
-fun rick_V2 : V2;
-fun rickets_N : N;
-fun rickety_A : A;
-fun rickmansworth_PN : PN;
-fun rickshaw_N : N;
-fun ricky_PN : PN;
-fun ricochet_N : N;
-fun ricochet_V : V;
-fun ricochet_V2 : V2;
-fun rid_V2 : V2;
-fun riddance_N : N;
-fun riddle_N : N;
-fun riddle_V2 : V2;
-fun ride_N : N;
-fun ride_V : V;
-fun ride_V2 : V2;
-fun rider_N : N;
-fun riderless_A : A;
-fun ridge_N : N;
-fun ridge_V2 : V2;
-fun ridge_tile_N : N;
-fun ridgepole_N : N;
-fun ridicule_N : N;
-fun ridicule_V2 : V2;
-fun ridiculous_A : A;
-fun riding_N : N;
-fun riding_habit_N : N;
-fun riding_lamp_N : N;
-fun riding_light_N : N;
-fun riding_master_N : N;
-fun riding_school_N : N;
-fun riesling_N : N;
-fun rife_A : A;
-fun riff_N : N;
-fun riff_raff_N : N;
-fun riffle_V : V;
-fun riffle_V2 : V2;
-fun rifle_N : N;
-fun rifle_V2 : V2;
-fun rifle_range_N : N;
-fun rifle_shot_N : N;
-fun rifleman_N : N;
-fun rift_N : N;
-fun rift_valley_N : N;
-fun rig_N : N;
-fun rig_V : V;
-fun rig_V2 : V2;
-fun riga_PN : PN;
-fun rigger_N : N;
-fun rigging_N : N;
-fun right_A : A;
-fun right_Adv : Adv;
-fun right_N : N;
-fun right_V2 : V2;
-fun right_angled_A : A;
-fun right_down_A : A;
-fun right_down_Adv : Adv;
-fun right_hand_A : A;
-fun right_handed_A : A;
-fun right_hander_N : N;
-fun right_minded_A : A;
-fun right_turn_N : N;
-fun right_wing_N : N;
-fun right_winger_N : N;
-fun righteous_A : A;
-fun righteousness_N : N;
-fun rightful_A : A;
-fun rightfulness_N : N;
-fun rightist_A : A;
-fun rightist_N : N;
-fun rightness_N : N;
-fun rigid_A : A;
-fun rigidity_N : N;
-fun rigmarole_N : N;
-fun rigor_mortis_N : N;
-fun rigorous_A : A;
-fun rigour_N : N;
-fun rigout_N : N;
-fun rijeka_PN : PN;
-fun rile_V2 : V2;
-fun rill_N : N;
-fun rim_N : N;
-fun rim_V2 : V2;
-fun rime_N : N;
-fun rime_V2 : V2;
-fun rimini_PN : PN;
-fun rind_N : N;
-fun rinderpest_N : N;
-fun ring_N : N;
-fun ring_V : V;
-fun ring_V2 : V2;
-fun ring_armour_N : N;
-fun ring_finger_N : N;
-fun ring_mail_N : N;
-fun ring_road_N : N;
-fun ringer_N : N;
-fun ringleader_N : N;
-fun ringlet_N : N;
-fun ringmaster_N : N;
-fun ringside_N : N;
-fun ringwood_PN : PN;
-fun ringworm_N : N;
-fun rink_N : N;
-fun rinse_N : N;
-fun rinse_V2 : V2;
-fun rio_de_janeiro_PN : PN;
-fun riot_N : N;
-fun riot_V : V;
-fun rioter_N : N;
-fun riotous_A : A;
-fun rip_N : N;
-fun rip_PN : PN;
-fun rip_V : V;
-fun rip_V2 : V2;
-fun rip_off_N : N;
-fun rip_roaring_A : A;
-fun riparian_A : A;
-fun ripcord_N : N;
-fun ripe_A : A;
-fun ripen_V : V;
-fun ripen_V2 : V2;
-fun ripeness_N : N;
-fun ripley_PN : PN;
-fun ripon_PN : PN;
-fun riposte_N : N;
-fun riposte_V : V;
-fun ripple_N : N;
-fun ripple_V : V;
-fun ripple_V2 : V2;
-fun ripsaw_N : N;
-fun riptide_N : N;
-fun risborough_PN : PN;
-fun risca_PN : PN;
-fun rise_N : N;
-fun rise_V : V;
-fun riser_N : N;
-fun rishton_PN : PN;
-fun risibility_N : N;
-fun risible_A : A;
-fun rising_N : N;
-fun risk_N : N;
-fun risk_V2 : V2;
-fun riskily_Adv : Adv;
-fun riskiness_N : N;
-fun risky_A : A;
-fun risotto_N : N;
-fun risque_A : A;
-fun rissole_N : N;
-fun rita_PN : PN;
-fun rite_N : N;
-fun ritual_A : A;
-fun ritual_N : N;
-fun ritualism_N : N;
-fun ritualist_N : N;
-fun ritualistic_A : A;
-fun ritzy_A : A;
-fun rival_N : N;
-fun rival_V2 : V2;
-fun rivalry_N : N;
-fun rive_V : V;
-fun rive_V2 : V2;
-fun river_N : N;
-fun river_basin_N : N;
-fun river_bed_N : N;
-fun riverside_N : N;
-fun rivet_N : N;
-fun rivet_V2 : V2;
-fun riveter_N : N;
-fun riviera_PN : PN;
-fun rivulet_N : N;
-fun rly_N : N;
-fun rm_N : N;
-fun rn_N : N;
-fun roach_N : N;
-fun road_N : N;
-fun road_book_N : N;
-fun road_hog_N : N;
-fun road_metal_N : N;
-fun road_sense_N : N;
-fun roadbed_N : N;
-fun roadblock_N : N;
-fun roadhouse_N : N;
-fun roadless_A : A;
-fun roadman_N : N;
-fun roadmender_N : N;
-fun roadside_N : N;
-fun roadstead_N : N;
-fun roadster_N : N;
-fun roadway_N : N;
-fun roadworthy_A : A;
-fun roam_V : V;
-fun roam_V2 : V2;
-fun roan_A : A;
-fun roan_N : N;
-fun roar_N : N;
-fun roar_V : V;
-fun roar_V2 : V2;
-fun roaring_A : A;
-fun roaring_Adv : Adv;
-fun roast_A : A;
-fun roast_N : N;
-fun roast_V : V;
-fun roast_V2 : V2;
-fun roaster_N : N;
-fun roasting_N : N;
-fun rob_PN : PN;
-fun rob_V2 : V2;
-fun robber_N : N;
-fun robbery_N : N;
-fun robe_N : N;
-fun robe_V : V;
-fun robe_V2 : V2;
-fun robert_PN : PN;
-fun robin_N : N;
-fun robin_PN : PN;
-fun robot_N : N;
-fun robust_A : A;
-fun robustness_N : N;
-fun roc_N : N;
-fun rochdale_PN : PN;
-fun rochester_PN : PN;
-fun rock_'n_roll_N : N;
-fun rock_N : N;
-fun rock_V : V;
-fun rock_V2 : V2;
-fun rock_bottom_N : N;
-fun rock_cake_N : N;
-fun rock_climbing_N : N;
-fun rock_crystal_N : N;
-fun rock_garden_N : N;
-fun rock_plant_N : N;
-fun rock_salmon_N : N;
-fun rock_salt_N : N;
-fun rocker_N : N;
-fun rockery_N : N;
-fun rocket_N : N;
-fun rocket_V : V;
-fun rocket_base_N : N;
-fun rocket_range_N : N;
-fun rocketry_N : N;
-fun rocking_chair_N : N;
-fun rocking_horse_N : N;
-fun rocky_A : A;
-fun rococo_A : A;
-fun rod_N : N;
-fun rod_PN : PN;
-fun rodent_N : N;
-fun rodeo_N : N;
-fun rodney_PN : PN;
-fun rodomontade_N : N;
-fun roe_N : N;
-fun roebuck_N : N;
-fun roentgen_N : N;
-fun rogation_N : N;
-fun roger_PN : PN;
-fun rogue_N : N;
-fun rogue_elephant_N : N;
-fun roguery_N : N;
-fun roguish_A : A;
-fun roguishness_N : N;
-fun roisterer_N : N;
-fun role_1_N : N;
-fun roll_N : N;
-fun roll_V : V;
-fun roll_V2 : V2;
-fun roll_call_N : N;
-fun roll_on_N : N;
-fun roller_N : N;
-fun roller_skate_N : N;
-fun rollicking_A : A;
-fun rolling_N : N;
-fun rolling_mill_N : N;
-fun rolling_pin_N : N;
-fun rolling_stock_N : N;
-fun roly_poly_N : N;
-fun romaic_A : A;
-fun romaic_N : N;
-fun roman_A : A;
-fun roman_N : N;
-fun romance_A : A;
-fun romance_N : N;
-fun romance_V : V;
-fun romanesque_N : N;
-fun romania_PN : PN;
-fun romanian_A : A;
-fun romanian_N : N;
-fun romantic_A : A;
-fun romantic_N : N;
-fun romantically_Adv : Adv;
-fun romanticism_N : N;
-fun romanticist_N : N;
-fun romanticize_V : V;
-fun romanticize_V2 : V2;
-fun romany_A : A;
-fun romany_N : N;
-fun rome_PN : PN;
-fun romish_A : A;
-fun romp_N : N;
-fun romp_V : V;
-fun romper_N : N;
-fun romsey_PN : PN;
-fun ron_PN : PN;
-fun ronald_PN : PN;
-fun rondeau_N : N;
-fun rondel_N : N;
-fun rondo_N : N;
-fun roneo_N : N;
-fun roneo_V2 : V2;
-fun ronnie_PN : PN;
-fun rood_N : N;
-fun rood_tree_N : N;
-fun roof_N : N;
-fun roof_V2 : V2;
-fun roof_garden_N : N;
-fun roof_tree_N : N;
-fun roofing_N : N;
-fun roofless_A : A;
-fun rook_N : N;
-fun rook_V2 : V2;
-fun rookery_N : N;
-fun rookie_N : N;
-fun room_N : N;
-fun room_V : V;
-fun room_mate_N : N;
-fun roomed_A : A;
-fun roomer_N : N;
-fun roomful_N : N;
-fun roomily_Adv : Adv;
-fun roomy_A : A;
-fun roost_N : N;
-fun roost_V : V;
-fun rooster_N : N;
-fun root_N : N;
-fun root_V : V;
-fun root_V2 : V2;
-fun rootle_V : V;
-fun rootless_A : A;
-fun rope_N : N;
-fun rope_V2 : V2;
-fun rope_dancer_N : N;
-fun rope_ladder_N : N;
-fun rope_yard_N : N;
-fun rope_yarn_N : N;
-fun ropewalk_N : N;
-fun ropewalker_N : N;
-fun ropeway_N : N;
-fun ropey_A : A;
-fun roquefort_N : N;
-fun rosalie_PN : PN;
-fun rosalind_PN : PN;
-fun rosamund_PN : PN;
-fun rosario_PN : PN;
-fun rosary_N : N;
-fun roscommon_PN : PN;
-fun rose_N : N;
-fun rose_PN : PN;
-fun rose_bed_N : N;
-fun rose_leaf_N : N;
-fun rose_red_A : A;
-fun rose_water_N : N;
-fun roseate_A : A;
-fun rosebud_N : N;
-fun rosemary_N : N;
-fun rosemary_PN : PN;
-fun rosette_N : N;
-fun rosewood_N : N;
-fun rosie_PN : PN;
-fun rosin_N : N;
-fun rosin_V2 : V2;
-fun roslyn_PN : PN;
-fun ross_on_wye_PN : PN;
-fun rossington_PN : PN;
-fun rosslare_PN : PN;
-fun roster_N : N;
-fun rostock_PN : PN;
-fun rostov_na_donu_PN : PN;
-fun rostrum_N : N;
-fun rosy_A : A;
-fun rot_N : N;
-fun rot_V : V;
-fun rot_V2 : V2;
-fun rota_N : N;
-fun rotarian_N : N;
-fun rotary_A : A;
-fun rotary_N : N;
-fun rotate_V : V;
-fun rotate_V2 : V2;
-fun rotation_N : N;
-fun rotational_A : A;
-fun rotatory_A : A;
-fun rote_N : N;
-fun rotgut_N : N;
-fun rotherham_PN : PN;
-fun rothesay_PN : PN;
-fun rothwell_PN : PN;
-fun rotisserie_N : N;
-fun rotogravure_N : N;
-fun rotor_N : N;
-fun rotten_A : A;
-fun rottenness_N : N;
-fun rotter_N : N;
-fun rotterdam_PN : PN;
-fun rotund_A : A;
-fun rotunda_N : N;
-fun rotundity_N : N;
-fun roubaix_PN : PN;
-fun rouble_N : N;
-fun rouen_PN : PN;
-fun rouge_N : N;
-fun rouge_V : V;
-fun rouge_V2 : V2;
-fun rough_A : A;
-fun rough_Adv : Adv;
-fun rough_N : N;
-fun rough_V2 : V2;
-fun rough_and_tumble_A : A;
-fun rough_and_tumble_N : N;
-fun rough_dry_V2 : V2;
-fun rough_hewn_A : A;
-fun rough_house_V : V;
-fun rough_house_V2 : V2;
-fun rough_spoken_A : A;
-fun roughage_N : N;
-fun roughcast_N : N;
-fun roughcast_V2 : V2;
-fun roughen_V : V;
-fun roughen_V2 : V2;
-fun roughish_A : A;
-fun roughneck_N : N;
-fun roughness_N : N;
-fun roughrider_N : N;
-fun roughshod_A : A;
-fun roulette_N : N;
-fun round_A : A;
-fun round_Adv : Adv;
-fun round_N : N;
-fun round_V : V;
-fun round_V2 : V2;
-fun round_arm_A : A;
-fun round_arm_Adv : Adv;
-fun round_backed_A : A;
-fun round_eyed_A : A;
-fun round_hand_N : N;
-fun round_shot_N : N;
-fun round_shouldered_A : A;
-fun round_the_clock_A : A;
-fun round_the_clock_Adv : Adv;
-fun roundabout_A : A;
-fun roundabout_N : N;
-fun roundel_N : N;
-fun roundelay_N : N;
-fun roundhead_N : N;
-fun roundhouse_N : N;
-fun roundish_A : A;
-fun roundness_N : N;
-fun roundsman_N : N;
-fun roundup_N : N;
-fun rouse_V : V;
-fun rouse_V2 : V2;
-fun rout_N : N;
-fun rout_V2 : V2;
-fun route_N : N;
-fun route_V2 : V2;
-fun routemarch_N : N;
-fun routine_A : A;
-fun routine_N : N;
-fun roue_N : N;
-fun rove_V : V;
-fun rove_V2 : V2;
-fun rover_N : N;
-fun row_N : N;
-fun row_V : V;
-fun row_V2 : V2;
-fun rowan_N : N;
-fun rowan_berry_N : N;
-fun rowan_tree_N : N;
-fun rowboat_N : N;
-fun rowdily_Adv : Adv;
-fun rowdiness_N : N;
-fun rowdy_A : A;
-fun rowdy_N : N;
-fun rowdyism_N : N;
-fun rowel_N : N;
-fun rower_N : N;
-fun rowing_N : N;
-fun rowing_boat_N : N;
-fun rowing_club_N : N;
-fun rowlands_gill_PN : PN;
-fun rowlock_N : N;
-fun roy_PN : PN;
-fun royal_A : A;
-fun royalist_N : N;
-fun royalty_N : N;
-fun royston_PN : PN;
-fun rpm_N : N;
-fun rspca_N : N;
-fun rsvp_PN : PN;
-fun rt_hon_PN : PN;
-fun rub_N : N;
-fun rub_V : V;
-fun rub_V2 : V2;
-fun rub_a_dub_N : N;
-fun rub_down_N : N;
-fun rub_up_N : N;
-fun rubber_N : N;
-fun rubber_V2 : V2;
-fun rubber_stamp_V2 : V2;
-fun rubberize_V2 : V2;
-fun rubberneck_N : N;
-fun rubberneck_V : V;
-fun rubbery_A : A;
-fun rubbing_N : N;
-fun rubbish_N : N;
-fun rubbish_V2 : V2;
-fun rubbishing_N : N;
-fun rubbishy_A : A;
-fun rubble_N : N;
-fun rubicon_N : N;
-fun rubicund_A : A;
-fun rubric_N : N;
-fun ruby_A : A;
-fun ruby_N : N;
-fun ruck_N : N;
-fun ruck_V : V;
-fun ruck_V2 : V2;
-fun rucksack_N : N;
-fun ruckus_N : N;
-fun rudder_N : N;
-fun rudderless_A : A;
-fun ruddiness_N : N;
-fun ruddington_PN : PN;
-fun ruddle_N : N;
-fun ruddle_V2 : V2;
-fun ruddy_A : A;
-fun rude_A : A;
-fun rudeness_N : N;
-fun rudiment_N : N;
-fun rudimentary_A : A;
-fun rudolf_PN : PN;
-fun rudy_PN : PN;
-fun rue_N : N;
-fun rue_V2 : V2;
-fun rueful_A : A;
-fun ruff_N : N;
-fun ruff_V : V;
-fun ruff_V2 : V2;
-fun ruffian_N : N;
-fun ruffianism_N : N;
-fun ruffianly_A : A;
-fun ruffle_N : N;
-fun ruffle_V : V;
-fun ruffle_V2 : V2;
-fun rug_N : N;
-fun rugby_N : N;
-fun rugby_PN : PN;
-fun rugeley_PN : PN;
-fun rugged_A : A;
-fun ruggedness_N : N;
-fun rugger_N : N;
-fun ruin_N : N;
-fun ruin_V2 : V2;
-fun ruination_N : N;
-fun ruinous_A : A;
-fun rule_N : N;
-fun rule_V : V;
-fun rule_V2 : V2;
-fun ruler_N : N;
-fun ruling_A : A;
-fun ruling_N : N;
-fun rum_N : N;
-fun rum_runner_N : N;
-fun rumba_N : N;
-fun rumble_N : N;
-fun rumble_V : V;
-fun rumble_V2 : V2;
-fun rumbling_N : N;
-fun rumbustious_A : A;
-fun ruminant_A : A;
-fun ruminant_N : N;
-fun ruminate_V : V;
-fun rumination_N : N;
-fun ruminative_A : A;
-fun rummage_N : N;
-fun rummage_V : V;
-fun rummage_V2 : V2;
-fun rummy_A : A;
-fun rummy_N : N;
-fun rumour_N : N;
-fun rumour_V2 : V2;
-fun rumour_monger_N : N;
-fun rump_N : N;
-fun rump_steak_N : N;
-fun rumple_V2 : V2;
-fun rumpus_N : N;
-fun run_N : N;
-fun run_V : V;
-fun run_V2 : V2;
-fun run_of_the_mill_A : A;
-fun run_off_N : N;
-fun run_through_N : N;
-fun run_up_N : N;
-fun runaway_A : A;
-fun runaway_N : N;
-fun runcorn_PN : PN;
-fun rundown_A : A;
-fun rundown_N : N;
-fun rune_N : N;
-fun rung_N : N;
-fun runic_A : A;
-fun runnel_N : N;
-fun runner_N : N;
-fun runner_up_N : N;
-fun running_A : A;
-fun running_N : N;
-fun running_board_N : N;
-fun runny_A : A;
-fun runt_N : N;
-fun runway_N : N;
-fun rupee_N : N;
-fun rupert_PN : PN;
-fun rupiah_N : N;
-fun rupture_N : N;
-fun rupture_V : V;
-fun rupture_V2 : V2;
-fun rural_A : A;
-fun ruritanian_A : A;
-fun ruse_N : N;
-fun rush_N : N;
-fun rush_V : V;
-fun rush_V2 : V2;
-fun rushlight_N : N;
-fun rushy_A : A;
-fun rusk_N : N;
-fun russet_A : A;
-fun russet_N : N;
-fun russia_PN : PN;
-fun russian_A : A;
-fun russian_N : N;
-fun rust_N : N;
-fun rust_V : V;
-fun rust_V2 : V2;
-fun rustic_A : A;
-fun rustic_N : N;
-fun rusticate_V : V;
-fun rusticate_V2 : V2;
-fun rusticity_N : N;
-fun rustiness_N : N;
-fun rustle_N : N;
-fun rustle_V : V;
-fun rustle_V2 : V2;
-fun rustler_N : N;
-fun rustless_A : A;
-fun rustling_N : N;
-fun rusty_A : A;
-fun rut_N : N;
-fun rut_V2 : V2;
-fun ruth_PN : PN;
-fun rutherglen_PN : PN;
-fun ruthless_A : A;
-fun ruthlessness_N : N;
-fun rutland_PN : PN;
-fun rwanda_PN : PN;
-fun rwandan_A : A;
-fun rwandan_N : N;
-fun ryde_PN : PN;
-fun rye_N : N;
-fun rye_bread_N : N;
-fun ryehill_PN : PN;
-fun rechauffe_N : N;
-fun regime_2_N : N;
-fun resume_N : N;
-fun role_2_N : N;
-fun rontgen_N : N;
-fun saarbrucken_PN : PN;
-fun sabadeli_PN : PN;
-fun sabah_PN : PN;
-fun sabahan_A : A;
-fun sabahan_N : N;
-fun sabbatarian_A : A;
-fun sabbatarian_N : N;
-fun sabbath_N : N;
-fun sabbatical_A : A;
-fun sabbatical_N : N;
-fun sable_A : A;
-fun sable_N : N;
-fun sabot_N : N;
-fun sabotage_N : N;
-fun sabotage_V2 : V2;
-fun saboteur_N : N;
-fun sabre_N : N;
-fun sabre_V2 : V2;
-fun sabre_rattling_N : N;
-fun sabre_toothed_A : A;
-fun sac_N : N;
-fun saccharin_N : N;
-fun saccharine_A : A;
-fun sacerdotal_A : A;
-fun sacerdotalism_N : N;
-fun sachet_N : N;
-fun sack_N : N;
-fun sack_V2 : V2;
-fun sack_race_N : N;
-fun sackbut_N : N;
-fun sackcloth_N : N;
-fun sacking_N : N;
-fun sacrament_N : N;
-fun sacramental_A : A;
-fun sacramento_PN : PN;
-fun sacred_A : A;
-fun sacredness_N : N;
-fun sacrifice_N : N;
-fun sacrifice_V : V;
-fun sacrifice_V2 : V2;
-fun sacrificial_A : A;
-fun sacrilege_N : N;
-fun sacrilegious_A : A;
-fun sacristan_N : N;
-fun sacristy_N : N;
-fun sacrosanct_A : A;
-fun sad_A : A;
-fun sadden_V : V;
-fun sadden_V2 : V2;
-fun saddle_N : N;
-fun saddle_V2 : V2;
-fun saddle_sore_A : A;
-fun saddlebag_N : N;
-fun saddler_N : N;
-fun saddlery_N : N;
-fun sadhu_N : N;
-fun sadism_N : N;
-fun sadist_N : N;
-fun sadistic_A : A;
-fun sadness_N : N;
-fun sado_masochist_N : N;
-fun sadomasochism_N : N;
-fun sae_N : N;
-fun safari_N : N;
-fun safe_A : A;
-fun safe_N : N;
-fun safe_conduct_N : N;
-fun safe_deposit_A : A;
-fun safe_deposit_N : N;
-fun safecracker_N : N;
-fun safeguard_N : N;
-fun safeguard_V2 : V2;
-fun safekeeping_N : N;
-fun safeness_N : N;
-fun safety_N : N;
-fun safety_belt_N : N;
-fun safety_bolt_N : N;
-fun safety_catch_N : N;
-fun safety_curtain_N : N;
-fun safety_factor_N : N;
-fun safety_lamp_N : N;
-fun safety_lock_N : N;
-fun safety_match_N : N;
-fun safety_pin_N : N;
-fun safety_razor_N : N;
-fun safety_valve_N : N;
-fun saffron_N : N;
-fun saffron_walden_PN : PN;
-fun sag_N : N;
-fun sag_V : V;
-fun saga_N : N;
-fun sagacious_A : A;
-fun sagacity_N : N;
-fun sage_A : A;
-fun sage_N : N;
-fun sage_green_A : A;
-fun sage_green_N : N;
-fun sagittarius_PN : PN;
-fun sago_N : N;
-fun sahib_N : N;
-fun said_A : A;
-fun saigon_PN : PN;
-fun sail_N : N;
-fun sail_V : V;
-fun sail_V2 : V2;
-fun sailcloth_N : N;
-fun sailing_N : N;
-fun sailing_boat_N : N;
-fun sailing_master_N : N;
-fun sailing_ship_N : N;
-fun sailing_vessel_N : N;
-fun sailor_N : N;
-fun saint's_day_N : N;
-fun saint_N : N;
-fun sainted_A : A;
-fun sainthood_N : N;
-fun saintlike_A : A;
-fun saintliness_N : N;
-fun saintly_A : A;
-fun sake_1_N : N;
-fun sake_2_N : N;
-fun sal_volatile_N : N;
-fun salaam_N : N;
-fun salaam_V : V;
-fun salable_A : A;
-fun salacious_A : A;
-fun salaciousness_N : N;
-fun salacity_N : N;
-fun salad_N : N;
-fun salad_dressing_N : N;
-fun salad_oil_N : N;
-fun salamanca_PN : PN;
-fun salamander_N : N;
-fun salami_N : N;
-fun salaried_A : A;
-fun salary_N : N;
-fun sale_N : N;
-fun sale_PN : PN;
-fun saleable_A : A;
-fun salerno_PN : PN;
-fun saleroom_N : N;
-fun salesman_N : N;
-fun salesmanship_N : N;
-fun saleswoman_N : N;
-fun salford_PN : PN;
-fun salience_N : N;
-fun salient_A : A;
-fun salient_N : N;
-fun saline_A : A;
-fun saline_N : N;
-fun salinity_N : N;
-fun salisbury_PN : PN;
-fun saliva_N : N;
-fun salivary_A : A;
-fun salivate_V : V;
-fun sallow_A : A;
-fun sallow_V : V;
-fun sallow_V2 : V2;
-fun sally_N : N;
-fun sally_PN : PN;
-fun sally_V : V;
-fun salmon_N : N;
-fun salon_N : N;
-fun saloon_N : N;
-fun salsify_N : N;
-fun salt_A : A;
-fun salt_N : N;
-fun salt_PN : PN;
-fun salt_V2 : V2;
-fun salt_cellar_N : N;
-fun salt_lick_N : N;
-fun saltash_PN : PN;
-fun saltburn_PN : PN;
-fun saltcoats_PN : PN;
-fun saltiness_N : N;
-fun saltpan_N : N;
-fun saltpetre_N : N;
-fun saltwater_N : N;
-fun saltworks_N : N;
-fun salty_A : A;
-fun salubrious_A : A;
-fun salubrity_N : N;
-fun salutary_A : A;
-fun salutation_N : N;
-fun salute_N : N;
-fun salute_V : V;
-fun salute_V2 : V2;
-fun salvador_PN : PN;
-fun salvadorean_A : A;
-fun salvadorean_N : N;
-fun salvage_N : N;
-fun salvage_V2 : V2;
-fun salvation_N : N;
-fun salve_N : N;
-fun salve_V2 : V2;
-fun salver_N : N;
-fun salvia_N : N;
-fun salvo_N : N;
-fun salzburg_PN : PN;
-fun sam_PN : PN;
-fun samantha_PN : PN;
-fun samaritan_N : N;
-fun samba_N : N;
-fun same_A : A;
-fun same_Adv : Adv;
-fun sameness_N : N;
-fun sammy_PN : PN;
-fun samoa_PN : PN;
-fun samoan_A : A;
-fun samoan_N : N;
-fun samovar_N : N;
-fun sampan_N : N;
-fun sample_N : N;
-fun sample_V2 : V2;
-fun sampler_N : N;
-fun samuel_PN : PN;
-fun samurai_N : N;
-fun san_antonio_PN : PN;
-fun san_bernardino_PN : PN;
-fun san_diego_PN : PN;
-fun san_francisco_PN : PN;
-fun san_jose_PN : PN;
-fun san_juan_PN : PN;
-fun san_marinese_A : A;
-fun san_marinese_N : N;
-fun san_marino_PN : PN;
-fun san_sebastian_PN : PN;
-fun sanatorium_N : N;
-fun sanctification_N : N;
-fun sanctify_V2 : V2;
-fun sanctimonious_A : A;
-fun sanction_N : N;
-fun sanction_V2 : V2;
-fun sanctity_N : N;
-fun sanctuary_N : N;
-fun sanctum_N : N;
-fun sand_N : N;
-fun sand_V2 : V2;
-fun sand_bar_N : N;
-fun sandal_N : N;
-fun sandalled_A : A;
-fun sandalwood_N : N;
-fun sandbach_PN : PN;
-fun sandbag_N : N;
-fun sandbank_N : N;
-fun sandblast_V2 : V2;
-fun sandboy_N : N;
-fun sandfly_N : N;
-fun sandglass_N : N;
-fun sandiness_N : N;
-fun sandown_PN : PN;
-fun sandpaper_N : N;
-fun sandpaper_V2 : V2;
-fun sandpiper_N : N;
-fun sandpit_N : N;
-fun sandra_PN : PN;
-fun sandstone_N : N;
-fun sandstorm_N : N;
-fun sandwich_N : N;
-fun sandwich_V2 : V2;
-fun sandwich_board_N : N;
-fun sandwichman_N : N;
-fun sandy_A : A;
-fun sandy_PN : PN;
-fun sane_A : A;
-fun sang_froid_N : N;
-fun sango_N : N;
-fun sanguinary_A : A;
-fun sanguine_A : A;
-fun sanitary_A : A;
-fun sanitation_N : N;
-fun sanity_N : N;
-fun sanskrit_N : N;
-fun santa_claus_N : N;
-fun santa_claus_PN : PN;
-fun santander_PN : PN;
-fun santiago_PN : PN;
-fun santo_domingo_PN : PN;
-fun santos_PN : PN;
-fun sao_paolo_PN : PN;
-fun sap_N : N;
-fun sap_V : V;
-fun sap_V2 : V2;
-fun saphead_N : N;
-fun sapience_N : N;
-fun sapient_A : A;
-fun sapless_A : A;
-fun sapling_N : N;
-fun sapper_N : N;
-fun sapphic_A : A;
-fun sapphire_N : N;
-fun sapporo_PN : PN;
-fun sappy_A : A;
-fun sapwood_N : N;
-fun sara_PN : PN;
-fun saraband_N : N;
-fun saracen_N : N;
-fun sarah_PN : PN;
-fun sarajevo_PN : PN;
-fun saratov_PN : PN;
-fun sarawak_PN : PN;
-fun sarawakian_A : A;
-fun sarawakian_N : N;
-fun sarcasm_N : N;
-fun sarcastic_A : A;
-fun sarcastically_Adv : Adv;
-fun sarcophagus_N : N;
-fun sardine_N : N;
-fun sardonic_A : A;
-fun sardonically_Adv : Adv;
-fun sari_N : N;
-fun sarisbury_PN : PN;
-fun sarong_N : N;
-fun sarsaparilla_N : N;
-fun sartorial_A : A;
-fun sash_N : N;
-fun sash_cord_N : N;
-fun sash_line_N : N;
-fun saskatchewan_PN : PN;
-fun sassari_PN : PN;
-fun sassenach_N : N;
-fun sat_PN : PN;
-fun satan_N : N;
-fun satanic_A : A;
-fun satchel_N : N;
-fun sate_V2 : V2;
-fun sateen_N : N;
-fun satellite_N : N;
-fun satiable_A : A;
-fun satiate_V2 : V2;
-fun satiety_N : N;
-fun satin_A : A;
-fun satin_N : N;
-fun satinwood_N : N;
-fun satire_N : N;
-fun satirical_A : A;
-fun satirist_N : N;
-fun satirize_V2 : V2;
-fun satisfaction_N : N;
-fun satisfactory_A : A;
-fun satisfy_V : V;
-fun satisfy_V2 : V2;
-fun satisfying_A : A;
-fun satrap_N : N;
-fun satsuma_N : N;
-fun saturate_V2 : V2;
-fun saturation_N : N;
-fun saturday_N : N;
-fun saturday_PN : PN;
-fun saturn_PN : PN;
-fun saturnalia_N : N;
-fun saturnine_A : A;
-fun satyr_N : N;
-fun satyric_A : A;
-fun sauce_N : N;
-fun sauce_V2 : V2;
-fun sauce_boat_N : N;
-fun saucepan_N : N;
-fun saucer_N : N;
-fun saucer_eyed_A : A;
-fun sauchie_PN : PN;
-fun saucily_Adv : Adv;
-fun sauciness_N : N;
-fun saucy_A : A;
-fun saudi_arabia_PN : PN;
-fun saudi_arabian_A : A;
-fun saudi_arabian_N : N;
-fun sauerkraut_N : N;
-fun sauna_N : N;
-fun saunter_N : N;
-fun saunter_V : V;
-fun saunterer_N : N;
-fun saurian_A : A;
-fun saurian_N : N;
-fun sausage_N : N;
-fun sausage_dog_N : N;
-fun sausage_meat_N : N;
-fun sausage_roll_N : N;
-fun saute_A : A;
-fun saute_V2 : V2;
-fun savage_A : A;
-fun savage_N : N;
-fun savage_V2 : V2;
-fun savageness_N : N;
-fun savagery_N : N;
-fun savanna_N : N;
-fun savannah_N : N;
-fun savant_N : N;
-fun save_N : N;
-fun save_V : V;
-fun save_V2 : V2;
-fun saveloy_N : N;
-fun saver_N : N;
-fun saving_A : A;
-fun saving_N : N;
-fun savings_bank_N : N;
-fun saviour_N : N;
-fun savoir_faire_N : N;
-fun savory_N : N;
-fun savour_N : N;
-fun savour_V : V;
-fun savour_V2 : V2;
-fun savoury_A : A;
-fun savoury_N : N;
-fun savoy_N : N;
-fun savvy_N : N;
-fun savvy_V : V;
-fun saw_N : N;
-fun saw_V : V;
-fun saw_V2 : V2;
-fun saw_pit_N : N;
-fun sawbridgeworth_PN : PN;
-fun sawdust_N : N;
-fun sawhorse_N : N;
-fun sawmill_N : N;
-fun sawyer_N : N;
-fun sax_N : N;
-fun saxhorn_N : N;
-fun saxifrage_N : N;
-fun saxon_A : A;
-fun saxon_N : N;
-fun saxophone_N : N;
-fun saxophonist_N : N;
-fun say_N : N;
-fun say_V : V;
-fun say_V2 : V2;
-fun saying_N : N;
-fun scab_N : N;
-fun scabbard_N : N;
-fun scabby_A : A;
-fun scabies_N : N;
-fun scabious_N : N;
-fun scabrous_A : A;
-fun scaffold_N : N;
-fun scaffolding_N : N;
-fun scalawag_N : N;
-fun scald_N : N;
-fun scald_V2 : V2;
-fun scale_N : N;
-fun scale_V : V;
-fun scale_V2 : V2;
-fun scaling_ladder_N : N;
-fun scallop_N : N;
-fun scallop_V2 : V2;
-fun scallop_shell_N : N;
-fun scallywag_N : N;
-fun scalp_N : N;
-fun scalp_V2 : V2;
-fun scalpel_N : N;
-fun scaly_A : A;
-fun scamp_N : N;
-fun scamp_V2 : V2;
-fun scamper_N : N;
-fun scamper_V : V;
-fun scan_V : V;
-fun scan_V2 : V2;
-fun scandal_N : N;
-fun scandalize_V2 : V2;
-fun scandalmonger_N : N;
-fun scandalmongering_N : N;
-fun scandalous_A : A;
-fun scandinavian_A : A;
-fun scandinavian_N : N;
-fun scanner_N : N;
-fun scansion_N : N;
-fun scant_A : A;
-fun scant_V2 : V2;
-fun scantily_Adv : Adv;
-fun scantiness_N : N;
-fun scantling_N : N;
-fun scanty_A : A;
-fun scapegoat_N : N;
-fun scapegrace_N : N;
-fun scapula_N : N;
-fun scar_N : N;
-fun scar_V : V;
-fun scar_V2 : V2;
-fun scarab_N : N;
-fun scarborough_PN : PN;
-fun scarce_A : A;
-fun scarcity_N : N;
-fun scare_N : N;
-fun scare_V : V;
-fun scare_V2 : V2;
-fun scarecrow_N : N;
-fun scaremonger_N : N;
-fun scarf_N : N;
-fun scarf_pin_N : N;
-fun scarify_V2 : V2;
-fun scarlet_A : A;
-fun scarlet_N : N;
-fun scarp_N : N;
-fun scarper_V : V;
-fun scary_A : A;
-fun scathing_A : A;
-fun scatter_N : N;
-fun scatter_V : V;
-fun scatter_V2 : V2;
-fun scatterbrain_N : N;
-fun scatterbrained_A : A;
-fun scattered_A : A;
-fun scatty_A : A;
-fun scavenge_V : V;
-fun scavenger_N : N;
-fun scenario_N : N;
-fun scenarist_N : N;
-fun scene_N : N;
-fun scene_painter_N : N;
-fun scene_shifter_N : N;
-fun scenery_N : N;
-fun scenic_A : A;
-fun scenically_Adv : Adv;
-fun scent_N : N;
-fun scent_V2 : V2;
-fun scentless_A : A;
-fun sceptered_A : A;
-fun sceptic_N : N;
-fun sceptical_A : A;
-fun scepticism_N : N;
-fun sceptre_N : N;
-fun sceptred_A : A;
-fun schedule_N : N;
-fun schedule_V2 : V2;
-fun schema_N : N;
-fun schematic_A : A;
-fun schematically_Adv : Adv;
-fun scheme_N : N;
-fun scheme_V : V;
-fun scheme_V2 : V2;
-fun schemer_N : N;
-fun scherzo_N : N;
-fun schism_N : N;
-fun schismatic_A : A;
-fun schist_N : N;
-fun schizoid_A : A;
-fun schizophrenia_N : N;
-fun schizophrenic_A : A;
-fun schizophrenic_N : N;
-fun schmaltz_N : N;
-fun schmaltzy_A : A;
-fun schmalz_N : N;
-fun schmalzy_A : A;
-fun schnapps_N : N;
-fun schnitzel_N : N;
-fun schnorkel_N : N;
-fun scholar_N : N;
-fun scholarly_A : A;
-fun scholarship_N : N;
-fun scholastic_A : A;
-fun scholasticism_N : N;
-fun school_N : N;
-fun school_V2 : V2;
-fun school_board_N : N;
-fun schoolbook_N : N;
-fun schoolboy_N : N;
-fun schoolchild_N : N;
-fun schoolfellow_N : N;
-fun schoolfriend_N : N;
-fun schoolgirl_N : N;
-fun schoolhouse_N : N;
-fun schooling_N : N;
-fun schoolman_N : N;
-fun schoolmaster_N : N;
-fun schoolmate_N : N;
-fun schoolmistress_N : N;
-fun schoolroom_N : N;
-fun schoolteacher_N : N;
-fun schooltime_N : N;
-fun schooner_N : N;
-fun schottische_N : N;
-fun schwa_N : N;
-fun schwerin_PN : PN;
-fun sci_fi_N : N;
-fun sciatic_A : A;
-fun sciatica_N : N;
-fun science_N : N;
-fun scientific_A : A;
-fun scientifically_Adv : Adv;
-fun scientist_N : N;
-fun scimitar_N : N;
-fun scintilla_N : N;
-fun scintillate_V : V;
-fun scintillation_N : N;
-fun scion_N : N;
-fun sclerosis_N : N;
-fun scoff_N : N;
-fun scoff_V : V;
-fun scoff_V2 : V2;
-fun scoffer_N : N;
-fun scoffingly_Adv : Adv;
-fun scold_N : N;
-fun scold_V : V;
-fun scold_V2 : V2;
-fun scolding_N : N;
-fun scollop_N : N;
-fun scollop_V2 : V2;
-fun sconce_N : N;
-fun scone_N : N;
-fun scoop_N : N;
-fun scoop_V2 : V2;
-fun scoopful_N : N;
-fun scoot_V : V;
-fun scooter_N : N;
-fun scope_N : N;
-fun scorbutic_A : A;
-fun scorch_N : N;
-fun scorch_V : V;
-fun scorch_V2 : V2;
-fun scorcher_N : N;
-fun scorching_A : A;
-fun scorching_Adv : Adv;
-fun score_N : N;
-fun score_V : V;
-fun score_V2 : V2;
-fun scoreboard_N : N;
-fun scorebook_N : N;
-fun scorecard_N : N;
-fun scorer_N : N;
-fun scorn_N : N;
-fun scorn_V2 : V2;
-fun scornful_A : A;
-fun scorpio_PN : PN;
-fun scorpion_N : N;
-fun scot_N : N;
-fun scot_free_Adv : Adv;
-fun scotch_A : A;
-fun scotch_N : N;
-fun scotch_V2 : V2;
-fun scotchman_N : N;
-fun scotchwoman_N : N;
-fun scotland_PN : PN;
-fun scotland_yard_PN : PN;
-fun scots_A : A;
-fun scotsman_N : N;
-fun scotswoman_N : N;
-fun scottish_A : A;
-fun scoundrel_N : N;
-fun scoundrelly_A : A;
-fun scour_N : N;
-fun scour_V : V;
-fun scour_V2 : V2;
-fun scourer_N : N;
-fun scourge_N : N;
-fun scourge_V2 : V2;
-fun scout_N : N;
-fun scout_V : V;
-fun scout_V2 : V2;
-fun scoutmaster_N : N;
-fun scow_N : N;
-fun scowl_N : N;
-fun scowl_V : V;
-fun scrabble_N : N;
-fun scrabble_V : V;
-fun scrag_N : N;
-fun scrag_V2 : V2;
-fun scrag_end_N : N;
-fun scraggy_A : A;
-fun scram_V : V;
-fun scramble_N : N;
-fun scramble_V : V;
-fun scramble_V2 : V2;
-fun scrambler_N : N;
-fun scrap_N : N;
-fun scrap_V2 : V2;
-fun scrap_iron_N : N;
-fun scrapbook_N : N;
-fun scrape_N : N;
-fun scrape_V : V;
-fun scrape_V2 : V2;
-fun scraper_N : N;
-fun scrapheap_N : N;
-fun scraping_N : N;
-fun scrappily_Adv : Adv;
-fun scrappiness_N : N;
-fun scrappy_A : A;
-fun scratch_N : N;
-fun scratch_V : V;
-fun scratch_V2 : V2;
-fun scratch_pad_N : N;
-fun scratch_race_N : N;
-fun scratchy_A : A;
-fun scrawl_N : N;
-fun scrawl_V : V;
-fun scrawl_V2 : V2;
-fun scrawny_A : A;
-fun scream_N : N;
-fun scream_V : V;
-fun scream_V2 : V2;
-fun screamingly_Adv : Adv;
-fun scree_N : N;
-fun screech_N : N;
-fun screech_V : V;
-fun screech_V2 : V2;
-fun screech_owl_N : N;
-fun screed_N : N;
-fun screen_N : N;
-fun screen_V : V;
-fun screen_V2 : V2;
-fun screw_N : N;
-fun screw_V : V;
-fun screw_V2 : V2;
-fun screw_topped_A : A;
-fun screwball_A : A;
-fun screwball_N : N;
-fun screwdriver_N : N;
-fun screwy_A : A;
-fun scribble_N : N;
-fun scribble_V : V;
-fun scribble_V2 : V2;
-fun scribbler_N : N;
-fun scribbling_block_N : N;
-fun scribe_N : N;
-fun scrimmage_N : N;
-fun scrimmage_V : V;
-fun scrimmage_V2 : V2;
-fun scrimp_V : V;
-fun scrimp_V2 : V2;
-fun scrimshank_V : V;
-fun scrimshanker_N : N;
-fun scrip_N : N;
-fun script_N : N;
-fun scripted_A : A;
-fun scriptural_A : A;
-fun scripture_N : N;
-fun scriptwriter_N : N;
-fun scrivener_N : N;
-fun scrofula_N : N;
-fun scrofulous_A : A;
-fun scroll_N : N;
-fun scrooge_N : N;
-fun scrotum_N : N;
-fun scrounge_V : V;
-fun scrounge_V2 : V2;
-fun scrounger_N : N;
-fun scrub_N : N;
-fun scrub_V : V;
-fun scrub_V2 : V2;
-fun scrubbing_brush_N : N;
-fun scrubby_A : A;
-fun scruff_N : N;
-fun scruffy_A : A;
-fun scrum_N : N;
-fun scrummage_N : N;
-fun scrumptious_A : A;
-fun scrunch_N : N;
-fun scrunch_V2 : V2;
-fun scruple_N : N;
-fun scruple_V : V;
-fun scrupulous_A : A;
-fun scrutineer_N : N;
-fun scrutinize_V2 : V2;
-fun scrutiny_N : N;
-fun scud_N : N;
-fun scud_V : V;
-fun scuff_V : V;
-fun scuff_V2 : V2;
-fun scuffle_V : V;
-fun scull_N : N;
-fun scull_V : V;
-fun scull_V2 : V2;
-fun sculler_N : N;
-fun scullery_N : N;
-fun scullion_N : N;
-fun sculpt_V : V;
-fun sculpt_V2 : V2;
-fun sculptor_N : N;
-fun sculptress_N : N;
-fun sculptural_A : A;
-fun sculpture_N : N;
-fun sculpture_V : V;
-fun sculpture_V2 : V2;
-fun scum_N : N;
-fun scummy_A : A;
-fun scunthorpe_PN : PN;
-fun scupper_N : N;
-fun scupper_V2 : V2;
-fun scurf_N : N;
-fun scurfy_A : A;
-fun scurrility_N : N;
-fun scurrilous_A : A;
-fun scurry_N : N;
-fun scurry_V : V;
-fun scurvy_A : A;
-fun scurvy_N : N;
-fun scut_N : N;
-fun scutcheon_N : N;
-fun scuttle_N : N;
-fun scuttle_V : V;
-fun scuttle_V2 : V2;
-fun scylla_N : N;
-fun scythe_N : N;
-fun scythe_V2 : V2;
-fun sea_N : N;
-fun sea_anemone_N : N;
-fun sea_animal_N : N;
-fun sea_bathing_N : N;
-fun sea_boat_N : N;
-fun sea_bream_N : N;
-fun sea_breeze_N : N;
-fun sea_coal_N : N;
-fun sea_cow_N : N;
-fun sea_dog_N : N;
-fun sea_fish_N : N;
-fun sea_girt_A : A;
-fun sea_god_N : N;
-fun sea_green_A : A;
-fun sea_green_N : N;
-fun sea_horse_N : N;
-fun sea_level_N : N;
-fun sea_lion_N : N;
-fun sea_power_N : N;
-fun sea_rover_N : N;
-fun sea_snake_N : N;
-fun sea_urchin_N : N;
-fun sea_wall_N : N;
-fun sea_water_N : N;
-fun seabed_N : N;
-fun seabird_N : N;
-fun seaboard_N : N;
-fun seaborne_A : A;
-fun seafarer_N : N;
-fun seafaring_A : A;
-fun seafood_N : N;
-fun seaford_PN : PN;
-fun seafront_N : N;
-fun seagoing_A : A;
-fun seagull_N : N;
-fun seaham_PN : PN;
-fun seakale_N : N;
-fun seal_N : N;
-fun seal_V : V;
-fun seal_V2 : V2;
-fun seal_ring_N : N;
-fun sealer_N : N;
-fun sealing_wax_N : N;
-fun sealskin_N : N;
-fun sealyham_N : N;
-fun seam_N : N;
-fun seam_V2 : V2;
-fun seaman_N : N;
-fun seamanlike_A : A;
-fun seamanship_N : N;
-fun seamless_A : A;
-fun seamstress_N : N;
-fun seamus_PN : PN;
-fun seamy_A : A;
-fun sean_PN : PN;
-fun seaplane_N : N;
-fun seaport_N : N;
-fun sear_A : A;
-fun sear_V2 : V2;
-fun search_N : N;
-fun search_V : V;
-fun search_V2 : V2;
-fun search_party_N : N;
-fun search_warrant_N : N;
-fun searcher_N : N;
-fun searching_A : A;
-fun searchlight_N : N;
-fun searing_iron_N : N;
-fun seascape_N : N;
-fun seashell_N : N;
-fun seashore_N : N;
-fun seasick_A : A;
-fun seasickness_N : N;
-fun seaside_N : N;
-fun season_N : N;
-fun season_V : V;
-fun season_V2 : V2;
-fun season_ticket_N : N;
-fun seasonable_A : A;
-fun seasonal_A : A;
-fun seasoning_N : N;
-fun seat_N : N;
-fun seat_V2 : V2;
-fun seat_belt_N : N;
-fun seating_room_N : N;
-fun seaton_burn_PN : PN;
-fun seaton_delaval_PN : PN;
-fun seattle_PN : PN;
-fun seaward_A : A;
-fun seawards_Adv : Adv;
-fun seaway_N : N;
-fun seaweed_N : N;
-fun seaworthiness_N : N;
-fun seaworthy_A : A;
-fun sec_N : N;
-fun secede_V : V;
-fun secession_N : N;
-fun secessionist_N : N;
-fun seclude_V2 : V2;
-fun secluded_A : A;
-fun seclusion_N : N;
-fun second_N : N;
-fun second_V2 : V2;
-fun second_best_A : A;
-fun second_best_Adv : Adv;
-fun second_best_N : N;
-fun second_class_A : A;
-fun second_class_Adv : Adv;
-fun second_class_N : N;
-fun second_hand_A : A;
-fun second_hand_N : N;
-fun second_rate_A : A;
-fun second_rater_N : N;
-fun second_sighted_A : A;
-fun secondary_A : A;
-fun seconder_N : N;
-fun secondment_N : N;
-fun secrecy_N : N;
-fun secret_A : A;
-fun secret_N : N;
-fun secretarial_A : A;
-fun secretariat_N : N;
-fun secretary_N : N;
-fun secretary_general_N : N;
-fun secrete_V2 : V2;
-fun secretion_N : N;
-fun secretive_A : A;
-fun secretiveness_N : N;
-fun sect_N : N;
-fun sectarian_A : A;
-fun sectarian_N : N;
-fun sectarianism_N : N;
-fun section_N : N;
-fun sectional_A : A;
-fun sectionalism_N : N;
-fun sector_N : N;
-fun secular_A : A;
-fun secularism_N : N;
-fun secularist_N : N;
-fun secularize_V2 : V2;
-fun secure_A : A;
-fun secure_V2 : V2;
-fun securicor_PN : PN;
-fun security_N : N;
-fun sedan_N : N;
-fun sedan_chair_N : N;
-fun sedate_A : A;
-fun sedate_V2 : V2;
-fun sedateness_N : N;
-fun sedation_N : N;
-fun sedative_A : A;
-fun sedative_N : N;
-fun sedentary_A : A;
-fun sedge_N : N;
-fun sedgy_A : A;
-fun sediment_N : N;
-fun sedimentary_A : A;
-fun sedition_N : N;
-fun seditious_A : A;
-fun seduce_V2 : V2;
-fun seducer_N : N;
-fun seduction_N : N;
-fun seductive_A : A;
-fun sedulous_A : A;
-fun see_N : N;
-fun see_V : V;
-fun see_V2 : V2;
-fun see_through_A : A;
-fun seed_N : N;
-fun seed_V : V;
-fun seed_V2 : V2;
-fun seed_corn_N : N;
-fun seedbed_N : N;
-fun seedcake_N : N;
-fun seedily_Adv : Adv;
-fun seediness_N : N;
-fun seedless_A : A;
-fun seedling_N : N;
-fun seedsman_N : N;
-fun seedtime_N : N;
-fun seedy_A : A;
-fun seek_V2 : V2;
-fun seeker_N : N;
-fun seem_V : V;
-fun seeming_A : A;
-fun seemliness_N : N;
-fun seemly_A : A;
-fun seep_V : V;
-fun seepage_N : N;
-fun seer_N : N;
-fun seersucker_N : N;
-fun seesaw_N : N;
-fun seesaw_V : V;
-fun seethe_V : V;
-fun seethe_V2 : V2;
-fun segment_N : N;
-fun segment_V : V;
-fun segment_V2 : V2;
-fun segmentation_N : N;
-fun segregate_V2 : V2;
-fun segregation_N : N;
-fun seignior_N : N;
-fun seine_N : N;
-fun seine_V : V;
-fun seine_V2 : V2;
-fun seismic_A : A;
-fun seismograph_N : N;
-fun seismologist_N : N;
-fun seismology_N : N;
-fun seize_V : V;
-fun seize_V2 : V2;
-fun seizure_N : N;
-fun selby_PN : PN;
-fun seldom_Adv : Adv;
-fun select_A : A;
-fun select_V2 : V2;
-fun selection_N : N;
-fun selective_A : A;
-fun selectivity_N : N;
-fun selector_N : N;
-fun selenium_N : N;
-fun self_N : N;
-fun self_abasement_N : N;
-fun self_abnegation_N : N;
-fun self_absorbed_A : A;
-fun self_acting_A : A;
-fun self_activating_A : A;
-fun self_addressed_A : A;
-fun self_appointed_A : A;
-fun self_assertion_N : N;
-fun self_assertive_A : A;
-fun self_assurance_N : N;
-fun self_assured_A : A;
-fun self_centred_A : A;
-fun self_collected_A : A;
-fun self_coloured_A : A;
-fun self_command_N : N;
-fun self_communion_N : N;
-fun self_complacency_N : N;
-fun self_confessed_A : A;
-fun self_confidence_N : N;
-fun self_confident_A : A;
-fun self_conscious_A : A;
-fun self_consciousness_N : N;
-fun self_contained_A : A;
-fun self_control_N : N;
-fun self_defence_N : N;
-fun self_denial_N : N;
-fun self_denying_A : A;
-fun self_determination_N : N;
-fun self_educated_A : A;
-fun self_effacing_A : A;
-fun self_employed_A : A;
-fun self_esteem_N : N;
-fun self_evident_A : A;
-fun self_examination_N : N;
-fun self_explanatory_A : A;
-fun self_help_N : N;
-fun self_importance_N : N;
-fun self_important_A : A;
-fun self_imposed_A : A;
-fun self_indulgence_N : N;
-fun self_indulgent_A : A;
-fun self_interest_N : N;
-fun self_locking_A : A;
-fun self_made_A : A;
-fun self_opinionated_A : A;
-fun self_pity_N : N;
-fun self_possessed_A : A;
-fun self_possession_N : N;
-fun self_preservation_N : N;
-fun self_raising_A : A;
-fun self_reliance_N : N;
-fun self_reliant_A : A;
-fun self_respect_N : N;
-fun self_respecting_A : A;
-fun self_righteous_A : A;
-fun self_rule_N : N;
-fun self_sacrifice_N : N;
-fun self_sacrificing_A : A;
-fun self_same_A : A;
-fun self_sealing_A : A;
-fun self_seeker_N : N;
-fun self_seeking_A : A;
-fun self_seeking_N : N;
-fun self_service_N : N;
-fun self_sown_A : A;
-fun self_starter_N : N;
-fun self_styled_A : A;
-fun self_sufficiency_N : N;
-fun self_sufficient_A : A;
-fun self_sufficing_A : A;
-fun self_supporting_A : A;
-fun self_will_N : N;
-fun self_willed_A : A;
-fun self_winding_A : A;
-fun selfconsciously_Adv : Adv;
-fun selfish_A : A;
-fun selfishness_N : N;
-fun selkirk_PN : PN;
-fun sell_N : N;
-fun sell_V : V;
-fun sell_V2 : V2;
-fun seller_N : N;
-fun selling_N : N;
-fun sellout_N : N;
-fun selsey_PN : PN;
-fun selston_PN : PN;
-fun selvage_N : N;
-fun selvedge_N : N;
-fun semantic_A : A;
-fun semantics_N : N;
-fun semaphore_N : N;
-fun semaphore_V : V;
-fun semaphore_V2 : V2;
-fun semarang_PN : PN;
-fun semblance_N : N;
-fun semen_N : N;
-fun semester_N : N;
-fun semibreve_N : N;
-fun semicircle_N : N;
-fun semicircular_A : A;
-fun semicolon_N : N;
-fun semiconducting_A : A;
-fun semiconductor_N : N;
-fun semiconscious_A : A;
-fun semidetached_A : A;
-fun semifinal_N : N;
-fun semifinalist_N : N;
-fun seminal_A : A;
-fun seminar_N : N;
-fun seminarist_N : N;
-fun seminary_N : N;
-fun semiofficial_A : A;
-fun semiquaver_N : N;
-fun semirigid_A : A;
-fun semite_A : A;
-fun semite_N : N;
-fun semitic_A : A;
-fun semitone_N : N;
-fun semitropical_A : A;
-fun semivowel_N : N;
-fun semolina_N : N;
-fun sempstress_N : N;
-fun senate_N : N;
-fun senator_N : N;
-fun senatorial_A : A;
-fun send_V : V;
-fun send_V2 : V2;
-fun send_up_N : N;
-fun sender_N : N;
-fun sendoff_N : N;
-fun senegal_PN : PN;
-fun senegalese_A : A;
-fun senegalese_N : N;
-fun senescence_N : N;
-fun senescent_A : A;
-fun seneschal_N : N;
-fun senile_A : A;
-fun senility_N : N;
-fun senior_A : A;
-fun senior_N : N;
-fun seniority_N : N;
-fun senna_N : N;
-fun senora_N : N;
-fun senorita_N : N;
-fun sensation_N : N;
-fun sensational_A : A;
-fun sensationalism_N : N;
-fun sensationalist_N : N;
-fun sense_N : N;
-fun sense_V2 : V2;
-fun sense_organ_N : N;
-fun senseless_A : A;
-fun senselessness_N : N;
-fun sensibility_N : N;
-fun sensible_A : A;
-fun sensitive_A : A;
-fun sensitivity_N : N;
-fun sensitization_N : N;
-fun sensitize_V2 : V2;
-fun sensory_A : A;
-fun sensual_A : A;
-fun sensualism_N : N;
-fun sensualist_N : N;
-fun sensuality_N : N;
-fun sensuous_A : A;
-fun sensuousness_N : N;
-fun sentence_N : N;
-fun sentence_V2 : V2;
-fun sententious_A : A;
-fun sentient_A : A;
-fun sentiment_N : N;
-fun sentimental_A : A;
-fun sentimentalist_N : N;
-fun sentimentality_N : N;
-fun sentimentalize_V : V;
-fun sentimentalize_V2 : V2;
-fun sentinel_N : N;
-fun sentry_N : N;
-fun sentry_box_N : N;
-fun sentry_go_N : N;
-fun seoul_PN : PN;
-fun sepal_N : N;
-fun separability_N : N;
-fun separable_A : A;
-fun separate_A : A;
-fun separate_N : N;
-fun separate_V : V;
-fun separate_V2 : V2;
-fun separation_N : N;
-fun separatist_N : N;
-fun separator_N : N;
-fun sepia_N : N;
-fun sepsis_N : N;
-fun sept_PN : PN;
-fun september_N : N;
-fun september_PN : PN;
-fun septet_N : N;
-fun septic_A : A;
-fun septicaemia_N : N;
-fun septicemia_N : N;
-fun septuagenarian_N : N;
-fun septuagint_N : N;
-fun sepulchral_A : A;
-fun sepulchre_N : N;
-fun sepulture_N : N;
-fun sequel_N : N;
-fun sequence_N : N;
-fun sequent_A : A;
-fun sequential_A : A;
-fun sequester_V2 : V2;
-fun sequestered_A : A;
-fun sequestrate_V2 : V2;
-fun sequestration_N : N;
-fun sequin_N : N;
-fun sequoia_N : N;
-fun seraglio_N : N;
-fun seraph_N : N;
-fun seraphic_A : A;
-fun serbo_croat_N : N;
-fun sere_A : A;
-fun serenade_N : N;
-fun serenade_V2 : V2;
-fun serendipity_N : N;
-fun serene_A : A;
-fun serenity_N : N;
-fun serf_N : N;
-fun serfdom_N : N;
-fun serge_N : N;
-fun sergeant_N : N;
-fun sergeant_major_N : N;
-fun serial_A : A;
-fun serial_N : N;
-fun serialize_V2 : V2;
-fun seriatim_Adv : Adv;
-fun sericultural_A : A;
-fun sericulture_N : N;
-fun sericulturist_N : N;
-fun series_N : N;
-fun seriocomic_A : A;
-fun serious_A : A;
-fun seriousness_N : N;
-fun serjeant_N : N;
-fun serjeant_at_arms_N : N;
-fun sermon_N : N;
-fun sermonize_V : V;
-fun sermonize_V2 : V2;
-fun serous_A : A;
-fun serpent_N : N;
-fun serpentine_A : A;
-fun serrated_A : A;
-fun serried_A : A;
-fun serum_N : N;
-fun servant_N : N;
-fun serve_N : N;
-fun serve_V : V;
-fun serve_V2 : V2;
-fun server_N : N;
-fun service_N : N;
-fun service_V2 : V2;
-fun serviceable_A : A;
-fun serviceman_N : N;
-fun serviette_N : N;
-fun servile_A : A;
-fun servility_N : N;
-fun serving_N : N;
-fun servitor_N : N;
-fun servitude_N : N;
-fun sesame_N : N;
-fun sesotho_N : N;
-fun sesquipedalian_A : A;
-fun session_N : N;
-fun set_N : N;
-fun set_V : V;
-fun set_V2 : V2;
-fun set_square_N : N;
-fun set_to_N : N;
-fun set_up_N : N;
-fun setback_N : N;
-fun setswana_N : N;
-fun sett_N : N;
-fun settee_N : N;
-fun setter_N : N;
-fun setting_N : N;
-fun settle_N : N;
-fun settle_V : V;
-fun settle_V2 : V2;
-fun settled_A : A;
-fun settlement_N : N;
-fun settler_N : N;
-fun seven_sisters_PN : PN;
-fun sevenfold_A : A;
-fun sevenfold_Adv : Adv;
-fun sevenoaks_PN : PN;
-fun sever_V : V;
-fun sever_V2 : V2;
-fun several_A : A;
-fun severally_Adv : Adv;
-fun severance_N : N;
-fun severe_A : A;
-fun severity_N : N;
-fun sevilla_PN : PN;
-fun seville_PN : PN;
-fun sew_V : V;
-fun sew_V2 : V2;
-fun sewage_N : N;
-fun sewage_farm_N : N;
-fun sewage_works_N : N;
-fun sewer_N : N;
-fun sewer_gas_N : N;
-fun sewer_rat_N : N;
-fun sewerage_N : N;
-fun sewing_N : N;
-fun sewing_machine_N : N;
-fun sex_N : N;
-fun sex_V2 : V2;
-fun sex_starved_A : A;
-fun sexagenarian_A : A;
-fun sexagenarian_N : N;
-fun sexed_A : A;
-fun sexism_N : N;
-fun sexist_A : A;
-fun sexist_N : N;
-fun sexless_A : A;
-fun sextant_N : N;
-fun sextet_N : N;
-fun sextette_N : N;
-fun sexton_N : N;
-fun sexual_A : A;
-fun sexuality_N : N;
-fun sexy_A : A;
-fun seychelles_PN : PN;
-fun seychellois_A : A;
-fun seychellois_N : N;
-fun senor_N : N;
-fun sgd_PN : PN;
-fun sgt_PN : PN;
-fun shabbily_Adv : Adv;
-fun shabbiness_N : N;
-fun shabby_A : A;
-fun shabby_genteel_A : A;
-fun shack_N : N;
-fun shack_V : V;
-fun shackle_N : N;
-fun shackle_V2 : V2;
-fun shad_N : N;
-fun shaddock_N : N;
-fun shade_N : N;
-fun shade_V : V;
-fun shade_V2 : V2;
-fun shade_tree_N : N;
-fun shading_N : N;
-fun shadow_N : N;
-fun shadow_V2 : V2;
-fun shadow_boxing_N : N;
-fun shadowy_A : A;
-fun shady_A : A;
-fun shaft_N : N;
-fun shag_N : N;
-fun shag_V : V;
-fun shag_V2 : V2;
-fun shaggily_Adv : Adv;
-fun shagginess_N : N;
-fun shagging_N : N;
-fun shaggy_A : A;
-fun shah_N : N;
-fun shake_N : N;
-fun shake_V : V;
-fun shake_V2 : V2;
-fun shake_up_N : N;
-fun shakedown_N : N;
-fun shakeout_N : N;
-fun shaker_N : N;
-fun shakespearian_A : A;
-fun shakily_Adv : Adv;
-fun shakiness_N : N;
-fun shaking_N : N;
-fun shaky_A : A;
-fun shale_N : N;
-fun shale_oil_N : N;
-fun shallot_N : N;
-fun shallow_A : A;
-fun shallow_N : N;
-fun shallow_V : V;
-fun sham_A : A;
-fun sham_N : N;
-fun sham_V : V;
-fun sham_V2 : V2;
-fun shamble_N : N;
-fun shamble_V : V;
-fun shambles_N : N;
-fun shame_N : N;
-fun shame_V2 : V2;
-fun shame_making_A : A;
-fun shamefaced_A : A;
-fun shameful_A : A;
-fun shameless_A : A;
-fun shamelessness_N : N;
-fun shammy_N : N;
-fun shampoo_N : N;
-fun shampoo_V2 : V2;
-fun shamrock_N : N;
-fun shandy_N : N;
-fun shanghai_PN : PN;
-fun shanghai_V2 : V2;
-fun shank_N : N;
-fun shanklin_PN : PN;
-fun shantung_N : N;
-fun shanty_N : N;
-fun shantytown_N : N;
-fun shape_N : N;
-fun shape_V : V;
-fun shape_V2 : V2;
-fun shapeless_A : A;
-fun shapelessness_N : N;
-fun shapely_A : A;
-fun shard_N : N;
-fun share_N : N;
-fun share_V : V;
-fun share_V2 : V2;
-fun share_out_N : N;
-fun sharecropper_N : N;
-fun shareholder_N : N;
-fun shareholding_N : N;
-fun shark_N : N;
-fun sharkskin_N : N;
-fun sharon_PN : PN;
-fun sharp_A : A;
-fun sharp_Adv : Adv;
-fun sharp_N : N;
-fun sharp_eyed_A : A;
-fun sharp_set_A : A;
-fun sharp_sighted_A : A;
-fun sharp_witted_A : A;
-fun sharpen_V : V;
-fun sharpen_V2 : V2;
-fun sharpener_N : N;
-fun sharper_N : N;
-fun sharpness_N : N;
-fun sharpshooter_N : N;
-fun shatter_V : V;
-fun shatter_V2 : V2;
-fun shatterproof_A : A;
-fun shave_N : N;
-fun shave_V : V;
-fun shave_V2 : V2;
-fun shaver_N : N;
-fun shavian_A : A;
-fun shavian_N : N;
-fun shaving_brush_N : N;
-fun shawl_N : N;
-fun she_goat_N : N;
-fun sheaf_N : N;
-fun shear_V2 : V2;
-fun sheath_N : N;
-fun sheath_knife_N : N;
-fun sheathe_V2 : V2;
-fun sheathing_N : N;
-fun shebang_N : N;
-fun shebeen_N : N;
-fun shed_N : N;
-fun shed_V2 : V2;
-fun sheen_N : N;
-fun sheep_N : N;
-fun sheepdog_N : N;
-fun sheepfold_N : N;
-fun sheepish_A : A;
-fun sheepishness_N : N;
-fun sheeprun_N : N;
-fun sheepskin_N : N;
-fun sheer_A : A;
-fun sheer_Adv : Adv;
-fun sheer_V : V;
-fun sheerness_PN : PN;
-fun sheet_N : N;
-fun sheet_anchor_N : N;
-fun sheet_lightning_N : N;
-fun sheeting_N : N;
-fun sheffield_PN : PN;
-fun sheik_N : N;
-fun sheikdom_N : N;
-fun sheikh_N : N;
-fun sheikhdom_N : N;
-fun sheila_PN : PN;
-fun shekel_N : N;
-fun sheldrake_N : N;
-fun shelf_N : N;
-fun shelford_PN : PN;
-fun shell_N : N;
-fun shell_V : V;
-fun shell_V2 : V2;
-fun shell_shock_N : N;
-fun shellac_N : N;
-fun shellac_V2 : V2;
-fun shellfire_N : N;
-fun shellfish_N : N;
-fun shellproof_A : A;
-fun shelter_N : N;
-fun shelter_V : V;
-fun shelter_V2 : V2;
-fun shelve_V : V;
-fun shelve_V2 : V2;
-fun shepherd_N : N;
-fun shepherd_V2 : V2;
-fun shepherdess_N : N;
-fun shepshed_PN : PN;
-fun shepton_mallet_PN : PN;
-fun sheraton_N : N;
-fun sherbet_N : N;
-fun sherbourne_PN : PN;
-fun sheriff_N : N;
-fun sheringham_PN : PN;
-fun sherry_N : N;
-fun shetland_PN : PN;
-fun shevington_PN : PN;
-fun shew_V : V;
-fun shew_V2 : V2;
-fun shibboleth_N : N;
-fun shield_N : N;
-fun shield_V2 : V2;
-fun shift_N : N;
-fun shift_V : V;
-fun shift_V2 : V2;
-fun shiftily_Adv : Adv;
-fun shiftiness_N : N;
-fun shiftless_A : A;
-fun shifty_A : A;
-fun shihkiachwang_PN : PN;
-fun shildon_PN : PN;
-fun shillelagh_N : N;
-fun shilling_N : N;
-fun shillyshally_N : N;
-fun shillyshally_V : V;
-fun shimmer_N : N;
-fun shimmer_V : V;
-fun shin_N : N;
-fun shin_V : V;
-fun shinbone_N : N;
-fun shindig_N : N;
-fun shindy_N : N;
-fun shine_N : N;
-fun shine_V : V;
-fun shine_V2 : V2;
-fun shingle_N : N;
-fun shingle_V2 : V2;
-fun shingles_N : N;
-fun shingly_A : A;
-fun shinguard_N : N;
-fun shiny_A : A;
-fun ship's_chandler_N : N;
-fun ship_N : N;
-fun ship_V : V;
-fun ship_V2 : V2;
-fun ship_breaker_N : N;
-fun ship_canal_N : N;
-fun shipboard_A : A;
-fun shipbroker_N : N;
-fun shipbuilder_N : N;
-fun shipbuilding_N : N;
-fun shipload_N : N;
-fun shipmate_N : N;
-fun shipment_N : N;
-fun shipowner_N : N;
-fun shipper_N : N;
-fun shipping_N : N;
-fun shipping_agent_N : N;
-fun shipping_office_N : N;
-fun shipshape_A : A;
-fun shipshape_Adv : Adv;
-fun shipway_N : N;
-fun shipwreck_N : N;
-fun shipwreck_V : V;
-fun shipwright_N : N;
-fun shipyard_N : N;
-fun shire_N : N;
-fun shirebrook_PN : PN;
-fun shiremoor_PN : PN;
-fun shirk_V : V;
-fun shirk_V2 : V2;
-fun shirker_N : N;
-fun shirley_PN : PN;
-fun shirt_N : N;
-fun shirt_front_N : N;
-fun shirting_N : N;
-fun shirtwaist_N : N;
-fun shirtwaister_N : N;
-fun shirty_A : A;
-fun shish_kebab_N : N;
-fun shit_N : N;
-fun shit_V : V;
-fun shiver_N : N;
-fun shiver_V : V;
-fun shiver_V2 : V2;
-fun shivery_A : A;
-fun shoal_N : N;
-fun shoal_V : V;
-fun shock_Adv : Adv;
-fun shock_N : N;
-fun shock_V2 : V2;
-fun shock_brigade_N : N;
-fun shock_headed_A : A;
-fun shock_worker_N : N;
-fun shockable_A : A;
-fun shocker_N : N;
-fun shocking_A : A;
-fun shoddiness_N : N;
-fun shoddy_A : A;
-fun shoddy_N : N;
-fun shoe_N : N;
-fun shoe_V2 : V2;
-fun shoe_leather_N : N;
-fun shoeblack_N : N;
-fun shoehorn_N : N;
-fun shoelace_N : N;
-fun shoemaker_N : N;
-fun shoemaking_N : N;
-fun shoestring_N : N;
-fun shoetree_N : N;
-fun shogun_N : N;
-fun shoo_V : V;
-fun shoo_V2 : V2;
-fun shoot_N : N;
-fun shoot_V : V;
-fun shoot_V2 : V2;
-fun shooter_N : N;
-fun shooting_N : N;
-fun shooting_box_N : N;
-fun shooting_brake_N : N;
-fun shooting_gallery_N : N;
-fun shooting_range_N : N;
-fun shooting_stick_N : N;
-fun shop_N : N;
-fun shop_V : V;
-fun shop_assistant_N : N;
-fun shop_bell_N : N;
-fun shop_boy_N : N;
-fun shop_front_N : N;
-fun shop_girl_N : N;
-fun shop_steward_N : N;
-fun shopkeeper_N : N;
-fun shoplift_V : V;
-fun shoplift_V2 : V2;
-fun shoplifter_N : N;
-fun shoplifting_N : N;
-fun shopper_N : N;
-fun shopping_N : N;
-fun shopsoiled_A : A;
-fun shopwalker_N : N;
-fun shopwindow_N : N;
-fun shopworn_A : A;
-fun shore_N : N;
-fun shore_V2 : V2;
-fun short_A : A;
-fun short_Adv : Adv;
-fun short_N : N;
-fun short_V : V;
-fun short_V2 : V2;
-fun short_change_V2 : V2;
-fun short_circuit_N : N;
-fun short_circuit_V : V;
-fun short_circuit_V2 : V2;
-fun short_dated_A : A;
-fun short_handed_A : A;
-fun short_lived_A : A;
-fun short_range_A : A;
-fun short_sighted_A : A;
-fun short_tempered_A : A;
-fun short_term_A : A;
-fun short_winded_A : A;
-fun shortage_N : N;
-fun shortbread_N : N;
-fun shortcake_N : N;
-fun shortcoming_N : N;
-fun shorten_V : V;
-fun shorten_V2 : V2;
-fun shortening_N : N;
-fun shortfall_N : N;
-fun shorthand_N : N;
-fun shorthorn_N : N;
-fun shortish_A : A;
-fun shortlist_N : N;
-fun shortlist_V2 : V2;
-fun shortness_N : N;
-fun shot_N : N;
-fun shot_put_N : N;
-fun shot_tower_N : N;
-fun shotgun_N : N;
-fun shotton_PN : PN;
-fun shotts_PN : PN;
-fun shoulder_N : N;
-fun shoulder_V2 : V2;
-fun shoulder_blade_N : N;
-fun shoulder_flash_N : N;
-fun shoulder_strap_N : N;
-fun shout_N : N;
-fun shout_V : V;
-fun shout_V2 : V2;
-fun shouting_N : N;
-fun shove_N : N;
-fun shove_V : V;
-fun shove_V2 : V2;
-fun shove_ha'penny_N : N;
-fun shovel_N : N;
-fun shovel_V2 : V2;
-fun shovel_board_N : N;
-fun shovelful_N : N;
-fun show_N : N;
-fun show_V : V;
-fun show_V2 : V2;
-fun show_business_N : N;
-fun show_off_N : N;
-fun show_window_N : N;
-fun showbiz_N : N;
-fun showboat_N : N;
-fun showcase_N : N;
-fun showdown_N : N;
-fun shower_N : N;
-fun shower_V : V;
-fun shower_V2 : V2;
-fun shower_bath_N : N;
-fun showery_A : A;
-fun showgirl_N : N;
-fun showily_Adv : Adv;
-fun showiness_N : N;
-fun showing_N : N;
-fun showjumping_N : N;
-fun showman_N : N;
-fun showmanship_N : N;
-fun showplace_N : N;
-fun showroom_N : N;
-fun showy_A : A;
-fun shrapnel_N : N;
-fun shred_N : N;
-fun shred_V2 : V2;
-fun shrew_N : N;
-fun shrew_mouse_N : N;
-fun shrewd_A : A;
-fun shrewdness_N : N;
-fun shrewish_A : A;
-fun shrewishness_N : N;
-fun shrewsbury_PN : PN;
-fun shriek_N : N;
-fun shriek_V : V;
-fun shriek_V2 : V2;
-fun shrift_N : N;
-fun shrike_N : N;
-fun shrill_A : A;
-fun shrill_V : V;
-fun shrill_V2 : V2;
-fun shrillness_N : N;
-fun shrilly_Adv : Adv;
-fun shrimp_N : N;
-fun shrimp_V : V;
-fun shrine_N : N;
-fun shrine_V2 : V2;
-fun shrink_N : N;
-fun shrink_V : V;
-fun shrink_V2 : V2;
-fun shrinkable_A : A;
-fun shrinkage_N : N;
-fun shrive_V2 : V2;
-fun shrivel_V : V;
-fun shrivel_V2 : V2;
-fun shropshire_PN : PN;
-fun shroud_N : N;
-fun shroud_V2 : V2;
-fun shrove_tuesday_N : N;
-fun shrove_tuesday_PN : PN;
-fun shrub_N : N;
-fun shrubbery_N : N;
-fun shrug_N : N;
-fun shrug_V2 : V2;
-fun shuck_N : N;
-fun shuck_V2 : V2;
-fun shudder_N : N;
-fun shudder_V : V;
-fun shudderingly_Adv : Adv;
-fun shuffle_N : N;
-fun shuffle_V : V;
-fun shuffle_V2 : V2;
-fun shuffler_N : N;
-fun shun_V2 : V2;
-fun shunt_V : V;
-fun shunt_V2 : V2;
-fun shunter_N : N;
-fun shush_V : V;
-fun shush_V2 : V2;
-fun shut_V : V;
-fun shut_V2 : V2;
-fun shutdown_N : N;
-fun shuteye_N : N;
-fun shutter_N : N;
-fun shutter_V2 : V2;
-fun shuttle_N : N;
-fun shuttle_V : V;
-fun shuttle_V2 : V2;
-fun shuttlecock_N : N;
-fun shy_A : A;
-fun shy_N : N;
-fun shy_V : V;
-fun shy_V2 : V2;
-fun shyness_N : N;
-fun shyster_N : N;
-fun siam_PN : PN;
-fun siamese_A : A;
-fun siamese_N : N;
-fun sian_PN : PN;
-fun siberian_A : A;
-fun sibilant_A : A;
-fun sibilant_N : N;
-fun sibling_N : N;
-fun sibyl_N : N;
-fun sibylline_A : A;
-fun sic_Adv : Adv;
-fun sicilian_A : A;
-fun sicilian_N : N;
-fun sick_A : A;
-fun sick_V2 : V2;
-fun sick_benefit_N : N;
-fun sick_berth_N : N;
-fun sick_headache_N : N;
-fun sick_leave_N : N;
-fun sick_list_N : N;
-fun sick_parade_N : N;
-fun sick_pay_N : N;
-fun sick_room_N : N;
-fun sickbay_N : N;
-fun sickbed_N : N;
-fun sicken_V : V;
-fun sicken_V2 : V2;
-fun sickening_A : A;
-fun sickish_A : A;
-fun sickle_N : N;
-fun sickly_A : A;
-fun sickness_N : N;
-fun sid_PN : PN;
-fun side_N : N;
-fun side_V : V;
-fun side_chapel_N : N;
-fun side_dish_N : N;
-fun side_drum_N : N;
-fun side_face_Adv : Adv;
-fun side_glance_N : N;
-fun side_road_N : N;
-fun side_saddle_Adv : Adv;
-fun side_saddle_N : N;
-fun side_slip_N : N;
-fun side_slip_V : V;
-fun side_splitting_A : A;
-fun side_stroke_N : N;
-fun side_view_N : N;
-fun sideboard_N : N;
-fun sidecar_N : N;
-fun sided_A : A;
-fun sidelight_N : N;
-fun sideline_N : N;
-fun sidelong_A : A;
-fun sidelong_Adv : Adv;
-fun sidereal_A : A;
-fun sideshow_N : N;
-fun sidesman_N : N;
-fun sidestep_N : N;
-fun sidestep_V : V;
-fun sidestep_V2 : V2;
-fun sidetrack_N : N;
-fun sidetrack_V2 : V2;
-fun sidewalk_N : N;
-fun sidewards_Adv : Adv;
-fun sideways_Adv : Adv;
-fun siding_N : N;
-fun sidle_V : V;
-fun sidmouth_PN : PN;
-fun sidney_PN : PN;
-fun siege_N : N;
-fun sienna_N : N;
-fun sierra_N : N;
-fun sierra_leone_PN : PN;
-fun sierra_leonian_A : A;
-fun sierra_leonian_N : N;
-fun siesta_N : N;
-fun sieve_N : N;
-fun sieve_V2 : V2;
-fun sift_V : V;
-fun sift_V2 : V2;
-fun sifter_N : N;
-fun sigh_N : N;
-fun sigh_V : V;
-fun sigh_V2 : V2;
-fun sight_N : N;
-fun sight_V2 : V2;
-fun sighted_A : A;
-fun sighting_N : N;
-fun sightless_A : A;
-fun sightseeing_N : N;
-fun sightseer_N : N;
-fun sign_N : N;
-fun sign_V : V;
-fun sign_V2 : V2;
-fun sign_painter_N : N;
-fun signal_A : A;
-fun signal_N : N;
-fun signal_V : V;
-fun signal_V2 : V2;
-fun signal_box_N : N;
-fun signalize_V2 : V2;
-fun signaller_N : N;
-fun signalman_N : N;
-fun signatory_N : N;
-fun signature_N : N;
-fun signet_N : N;
-fun signet_ring_N : N;
-fun significance_N : N;
-fun significant_A : A;
-fun signification_N : N;
-fun significative_A : A;
-fun signify_V : V;
-fun signify_V2 : V2;
-fun signor_N : N;
-fun signora_N : N;
-fun signorina_N : N;
-fun signpost_N : N;
-fun signpost_V2 : V2;
-fun sikh_N : N;
-fun silage_N : N;
-fun sileby_PN : PN;
-fun silence_N : N;
-fun silence_V2 : V2;
-fun silencer_N : N;
-fun silent_A : A;
-fun silhouette_N : N;
-fun silhouette_V2 : V2;
-fun silica_N : N;
-fun silicate_N : N;
-fun silicon_N : N;
-fun silicone_N : N;
-fun silicosis_N : N;
-fun silk_N : N;
-fun silken_A : A;
-fun silkily_Adv : Adv;
-fun silkiness_N : N;
-fun silkworm_N : N;
-fun silky_A : A;
-fun sill_N : N;
-fun sillabub_N : N;
-fun silliness_N : N;
-fun silly_A : A;
-fun silly_N : N;
-fun silo_N : N;
-fun silsden_PN : PN;
-fun silt_N : N;
-fun silt_V : V;
-fun silt_V2 : V2;
-fun silvan_A : A;
-fun silver_N : N;
-fun silver_V : V;
-fun silver_V2 : V2;
-fun silver_fish_N : N;
-fun silvern_A : A;
-fun silverside_N : N;
-fun silversmith_N : N;
-fun silvery_A : A;
-fun silvia_PN : PN;
-fun simian_A : A;
-fun simian_N : N;
-fun similar_A : A;
-fun similarity_N : N;
-fun simile_N : N;
-fun similitude_N : N;
-fun simmer_N : N;
-fun simmer_V : V;
-fun simmer_V2 : V2;
-fun simon_PN : PN;
-fun simony_N : N;
-fun simoom_N : N;
-fun simoon_N : N;
-fun simper_V : V;
-fun simperingly_Adv : Adv;
-fun simple_A : A;
-fun simple_N : N;
-fun simple_hearted_A : A;
-fun simple_minded_A : A;
-fun simpleton_N : N;
-fun simplicity_N : N;
-fun simplification_N : N;
-fun simplify_V2 : V2;
-fun simply_Adv : Adv;
-fun simulacrum_N : N;
-fun simulate_V2 : V2;
-fun simulation_N : N;
-fun simulator_N : N;
-fun simultaneity_N : N;
-fun simultaneous_A : A;
-fun simultaneousness_N : N;
-fun sin_N : N;
-fun sin_V : V;
-fun since_Adv : Adv;
-fun sincere_A : A;
-fun sincerity_N : N;
-fun sine_N : N;
-fun sine_die_Adv : Adv;
-fun sine_qua_non_N : N;
-fun sinecure_N : N;
-fun sinew_N : N;
-fun sinewy_A : A;
-fun sinful_A : A;
-fun sinfulness_N : N;
-fun sing_V : V;
-fun sing_V2 : V2;
-fun singable_A : A;
-fun singapore_PN : PN;
-fun singaporean_A : A;
-fun singaporean_N : N;
-fun singe_N : N;
-fun singe_V : V;
-fun singe_V2 : V2;
-fun singer_N : N;
-fun singhalese_A : A;
-fun singing_N : N;
-fun single_A : A;
-fun single_N : N;
-fun single_V2 : V2;
-fun single_breasted_A : A;
-fun single_handed_A : A;
-fun single_handed_Adv : Adv;
-fun single_minded_A : A;
-fun single_spacing_N : N;
-fun singleness_N : N;
-fun singlestick_N : N;
-fun singlet_N : N;
-fun singleton_N : N;
-fun singly_Adv : Adv;
-fun singsong_N : N;
-fun singular_A : A;
-fun singular_N : N;
-fun singularity_N : N;
-fun singularize_V2 : V2;
-fun sinhala_N : N;
-fun sinhalese_A : A;
-fun sinhalese_N : N;
-fun sining_PN : PN;
-fun sinister_A : A;
-fun sink_N : N;
-fun sink_V : V;
-fun sink_V2 : V2;
-fun sinkable_A : A;
-fun sinker_N : N;
-fun sinking_N : N;
-fun sinking_fund_N : N;
-fun sinless_A : A;
-fun sinlessness_N : N;
-fun sinn_fein_PN : PN;
-fun sinner_N : N;
-fun sinologist_N : N;
-fun sinology_N : N;
-fun sinuosity_N : N;
-fun sinuous_A : A;
-fun sinus_N : N;
-fun sinusitis_N : N;
-fun sioux_N : N;
-fun sip_N : N;
-fun sip_V : V;
-fun sip_V2 : V2;
-fun siphon_N : N;
-fun siphon_V : V;
-fun siphon_V2 : V2;
-fun sir_N : N;
-fun sir_roger_de_coverley_N : N;
-fun siracusa_PN : PN;
-fun sirdar_N : N;
-fun sire_N : N;
-fun sire_V2 : V2;
-fun siren_N : N;
-fun sirloin_N : N;
-fun sirocco_N : N;
-fun sirrah_N : N;
-fun sirup_N : N;
-fun sisal_N : N;
-fun sissified_A : A;
-fun sissy_N : N;
-fun sister_N : N;
-fun sister_in_law_N : N;
-fun sisterhood_N : N;
-fun sisterly_A : A;
-fun siswati_N : N;
-fun sit_V : V;
-fun sit_V2 : V2;
-fun sit_in_N : N;
-fun sitar_N : N;
-fun site_N : N;
-fun site_V : V;
-fun sitter_N : N;
-fun sitting_N : N;
-fun sitting_room_N : N;
-fun sittingbourne_PN : PN;
-fun situated_A : A;
-fun situation_N : N;
-fun six_footer_N : N;
-fun six_shooter_N : N;
-fun sixfold_A : A;
-fun sixfold_Adv : Adv;
-fun sixpence_N : N;
-fun sixpenny_A : A;
-fun sixth_former_N : N;
-fun sizable_A : A;
-fun size_N : N;
-fun size_V2 : V2;
-fun sizeable_A : A;
-fun sized_A : A;
-fun sizzle_V : V;
-fun skate_N : N;
-fun skate_V : V;
-fun skateboard_N : N;
-fun skateboarder_N : N;
-fun skateboarding_N : N;
-fun skater_N : N;
-fun skating_N : N;
-fun skating_rink_N : N;
-fun skedaddle_V : V;
-fun skeet_N : N;
-fun skegness_PN : PN;
-fun skein_N : N;
-fun skeleton_N : N;
-fun skelmanthorpe_PN : PN;
-fun skelmersdale_PN : PN;
-fun skep_N : N;
-fun skeptical_A : A;
-fun skepticism_N : N;
-fun sketch_N : N;
-fun sketch_V : V;
-fun sketch_V2 : V2;
-fun sketch_block_N : N;
-fun sketch_book_N : N;
-fun sketch_map_N : N;
-fun sketcher_N : N;
-fun sketchily_Adv : Adv;
-fun sketchiness_N : N;
-fun sketchy_A : A;
-fun skew_A : A;
-fun skew_eyed_A : A;
-fun skewen_PN : PN;
-fun skewer_N : N;
-fun skewer_V2 : V2;
-fun ski_N : N;
-fun ski_V : V;
-fun ski_bob_N : N;
-fun ski_jump_N : N;
-fun ski_lift_N : N;
-fun ski_plane_N : N;
-fun skid_N : N;
-fun skid_V : V;
-fun skidpan_N : N;
-fun skier_N : N;
-fun skiff_N : N;
-fun skiffle_N : N;
-fun skiffle_group_N : N;
-fun skilful_A : A;
-fun skill_N : N;
-fun skilled_A : A;
-fun skillet_N : N;
-fun skilly_N : N;
-fun skim_V : V;
-fun skim_V2 : V2;
-fun skimmed_milk_N : N;
-fun skimmer_N : N;
-fun skimp_V : V;
-fun skimp_V2 : V2;
-fun skimpily_Adv : Adv;
-fun skimpy_A : A;
-fun skin_N : N;
-fun skin_V : V;
-fun skin_V2 : V2;
-fun skin_deep_A : A;
-fun skin_diving_N : N;
-fun skin_graft_N : N;
-fun skin_tight_A : A;
-fun skinflint_N : N;
-fun skinhead_N : N;
-fun skinny_A : A;
-fun skint_A : A;
-fun skip_N : N;
-fun skip_V : V;
-fun skip_V2 : V2;
-fun skipper_N : N;
-fun skipper_V2 : V2;
-fun skipping_rope_N : N;
-fun skipton_PN : PN;
-fun skirl_N : N;
-fun skirmish_N : N;
-fun skirmish_V : V;
-fun skirmisher_N : N;
-fun skirt_N : N;
-fun skirt_V : V;
-fun skirt_V2 : V2;
-fun skirting_board_N : N;
-fun skit_N : N;
-fun skitter_V : V;
-fun skittish_A : A;
-fun skittishness_N : N;
-fun skittle_N : N;
-fun skittle_V2 : V2;
-fun skittle_pin_N : N;
-fun skittles_N : N;
-fun skivvy_N : N;
-fun skopje_PN : PN;
-fun skua_N : N;
-fun skulk_V : V;
-fun skulker_N : N;
-fun skull_N : N;
-fun skullcap_N : N;
-fun skullduggery_N : N;
-fun skulled_A : A;
-fun skunk_N : N;
-fun sky_N : N;
-fun sky_V2 : V2;
-fun sky_blue_A : A;
-fun sky_blue_N : N;
-fun sky_high_Adv : Adv;
-fun skylark_N : N;
-fun skylark_V : V;
-fun skylight_N : N;
-fun skyline_N : N;
-fun skyrocket_V : V;
-fun skyscraper_N : N;
-fun skyward_A : A;
-fun skyward_Adv : Adv;
-fun skywards_A : A;
-fun skywards_Adv : Adv;
-fun skywriting_N : N;
-fun slab_N : N;
-fun slack_A : A;
-fun slack_N : N;
-fun slack_V : V;
-fun slacken_V : V;
-fun slacken_V2 : V2;
-fun slacker_N : N;
-fun slackness_N : N;
-fun slag_N : N;
-fun slag_heap_N : N;
-fun slake_V2 : V2;
-fun slalom_N : N;
-fun slam_N : N;
-fun slam_V : V;
-fun slam_V2 : V2;
-fun slander_N : N;
-fun slander_V2 : V2;
-fun slanderer_N : N;
-fun slanderous_A : A;
-fun slang_N : N;
-fun slang_V2 : V2;
-fun slangily_Adv : Adv;
-fun slanginess_N : N;
-fun slangy_A : A;
-fun slant_N : N;
-fun slant_V : V;
-fun slant_V2 : V2;
-fun slantingly_Adv : Adv;
-fun slantwise_Adv : Adv;
-fun slap_Adv : Adv;
-fun slap_N : N;
-fun slap_V2 : V2;
-fun slap_bang_Adv : Adv;
-fun slap_happy_A : A;
-fun slap_up_A : A;
-fun slapdash_A : A;
-fun slapdash_Adv : Adv;
-fun slapstick_N : N;
-fun slash_N : N;
-fun slash_V : V;
-fun slash_V2 : V2;
-fun slat_N : N;
-fun slate_N : N;
-fun slate_V2 : V2;
-fun slate_club_N : N;
-fun slate_pencil_N : N;
-fun slating_N : N;
-fun slatted_A : A;
-fun slattern_N : N;
-fun slatternliness_N : N;
-fun slatternly_A : A;
-fun slaty_A : A;
-fun slaughter_N : N;
-fun slaughter_V2 : V2;
-fun slaughterer_N : N;
-fun slaughterhouse_N : N;
-fun slav_A : A;
-fun slav_N : N;
-fun slave_N : N;
-fun slave_V : V;
-fun slave_driver_N : N;
-fun slave_trade_N : N;
-fun slave_traffic_N : N;
-fun slaver_N : N;
-fun slaver_V : V;
-fun slavery_N : N;
-fun slavey_N : N;
-fun slavish_A : A;
-fun slavonic_A : A;
-fun slaw_N : N;
-fun slay_V2 : V2;
-fun slayer_N : N;
-fun sleaford_PN : PN;
-fun sleazy_A : A;
-fun sled_N : N;
-fun sledge_N : N;
-fun sledge_V : V;
-fun sledge_V2 : V2;
-fun sledgehammer_N : N;
-fun sleek_A : A;
-fun sleek_V2 : V2;
-fun sleekness_N : N;
-fun sleep_N : N;
-fun sleep_V : V;
-fun sleep_V2 : V2;
-fun sleeper_N : N;
-fun sleepily_Adv : Adv;
-fun sleepiness_N : N;
-fun sleeping_N : N;
-fun sleeping_bag_N : N;
-fun sleeping_car_N : N;
-fun sleeping_draught_N : N;
-fun sleeping_pill_N : N;
-fun sleeping_sickness_N : N;
-fun sleepless_A : A;
-fun sleeplessness_N : N;
-fun sleepwalker_N : N;
-fun sleepy_A : A;
-fun sleepy_head_N : N;
-fun sleet_N : N;
-fun sleet_V : V;
-fun sleety_A : A;
-fun sleeve_N : N;
-fun sleeved_A : A;
-fun sleeveless_A : A;
-fun sleigh_N : N;
-fun sleigh_V : V;
-fun sleigh_V2 : V2;
-fun sleigh_bell_N : N;
-fun sleight_N : N;
-fun slender_A : A;
-fun slenderize_V : V;
-fun slenderize_V2 : V2;
-fun slenderness_N : N;
-fun sleuth_N : N;
-fun sleuth_hound_N : N;
-fun slew_V : V;
-fun slew_V2 : V2;
-fun slice_N : N;
-fun slice_V : V;
-fun slice_V2 : V2;
-fun slick_A : A;
-fun slick_Adv : Adv;
-fun slick_N : N;
-fun slicker_N : N;
-fun slide_N : N;
-fun slide_V : V;
-fun slide_V2 : V2;
-fun slide_rule_N : N;
-fun slight_A : A;
-fun slight_N : N;
-fun slight_V2 : V2;
-fun slightingly_Adv : Adv;
-fun slightness_N : N;
-fun sligo_PN : PN;
-fun slim_A : A;
-fun slim_V : V;
-fun slime_N : N;
-fun sliminess_N : N;
-fun slimness_N : N;
-fun slimy_A : A;
-fun sling_N : N;
-fun sling_V : V;
-fun sling_V2 : V2;
-fun slinger_N : N;
-fun slink_V : V;
-fun slip_N : N;
-fun slip_V : V;
-fun slip_V2 : V2;
-fun slip_carriage_N : N;
-fun slip_coach_N : N;
-fun slip_road_N : N;
-fun slip_up_N : N;
-fun slipcover_N : N;
-fun slipknot_N : N;
-fun slipon_N : N;
-fun slipover_N : N;
-fun slipper_N : N;
-fun slippered_A : A;
-fun slipperiness_N : N;
-fun slippery_A : A;
-fun slippy_A : A;
-fun slipshod_A : A;
-fun slipstream_N : N;
-fun slipway_N : N;
-fun slit_N : N;
-fun slit_V2 : V2;
-fun slither_V : V;
-fun slithery_A : A;
-fun sliver_N : N;
-fun sliver_V : V;
-fun sliver_V2 : V2;
-fun slob_N : N;
-fun slobber_N : N;
-fun slobber_V : V;
-fun slobber_V2 : V2;
-fun sloe_N : N;
-fun sloe_gin_N : N;
-fun slog_V : V;
-fun slog_V2 : V2;
-fun slogan_N : N;
-fun slogger_N : N;
-fun sloop_N : N;
-fun slop_N : N;
-fun slop_V : V;
-fun slop_V2 : V2;
-fun slop_basin_N : N;
-fun slop_pail_N : N;
-fun slop_shop_N : N;
-fun slope_N : N;
-fun slope_V : V;
-fun slope_V2 : V2;
-fun slopingly_Adv : Adv;
-fun sloppily_Adv : Adv;
-fun sloppiness_N : N;
-fun sloppy_A : A;
-fun slosh_V : V;
-fun slosh_V2 : V2;
-fun sloshed_A : A;
-fun slot_N : N;
-fun slot_V2 : V2;
-fun slot_machine_N : N;
-fun sloth_N : N;
-fun slothful_A : A;
-fun slouch_N : N;
-fun slouch_V : V;
-fun slouch_hat_N : N;
-fun slouchingly_Adv : Adv;
-fun slough_N : N;
-fun slough_PN : PN;
-fun slough_V : V;
-fun slough_V2 : V2;
-fun slovak_N : N;
-fun sloven_N : N;
-fun slovenian_A : A;
-fun slovenian_N : N;
-fun slovenliness_N : N;
-fun slovenly_A : A;
-fun slow_A : A;
-fun slow_Adv : Adv;
-fun slow_V : V;
-fun slow_V2 : V2;
-fun slow_worm_N : N;
-fun slowcoach_N : N;
-fun slowdown_N : N;
-fun slower_Adv : Adv;
-fun slowest_Adv : Adv;
-fun slowness_N : N;
-fun sludge_N : N;
-fun slug_N : N;
-fun slug_V : V;
-fun slug_V2 : V2;
-fun sluggard_N : N;
-fun sluggish_A : A;
-fun sluggishness_N : N;
-fun sluice_N : N;
-fun sluice_V : V;
-fun sluice_V2 : V2;
-fun sluice_valve_N : N;
-fun sluicegate_N : N;
-fun slum_N : N;
-fun slum_V : V;
-fun slumber_N : N;
-fun slumber_V : V;
-fun slumber_V2 : V2;
-fun slumberer_N : N;
-fun slumberous_A : A;
-fun slummy_A : A;
-fun slump_N : N;
-fun slump_V : V;
-fun slur_N : N;
-fun slur_V : V;
-fun slur_V2 : V2;
-fun slurry_N : N;
-fun slush_N : N;
-fun slushy_A : A;
-fun slut_N : N;
-fun sluttish_A : A;
-fun sly_A : A;
-fun slyness_N : N;
-fun smack_Adv : Adv;
-fun smack_N : N;
-fun smack_V : V;
-fun smack_V2 : V2;
-fun smacker_N : N;
-fun smacking_N : N;
-fun small_A : A;
-fun small_Adv : Adv;
-fun small_N : N;
-fun small_minded_A : A;
-fun smallholder_N : N;
-fun smallholding_N : N;
-fun smallness_N : N;
-fun smallpox_N : N;
-fun smalltime_A : A;
-fun smarmy_A : A;
-fun smart_A : A;
-fun smart_N : N;
-fun smart_V : V;
-fun smarten_V : V;
-fun smarten_V2 : V2;
-fun smartness_N : N;
-fun smash_Adv : Adv;
-fun smash_N : N;
-fun smash_V : V;
-fun smash_V2 : V2;
-fun smash_up_N : N;
-fun smasher_N : N;
-fun smashing_A : A;
-fun smattering_N : N;
-fun smear_N : N;
-fun smear_V : V;
-fun smear_V2 : V2;
-fun smear_word_N : N;
-fun smell_N : N;
-fun smell_V : V;
-fun smell_V2 : V2;
-fun smelling_bottle_N : N;
-fun smelly_A : A;
-fun smelt_N : N;
-fun smelt_V2 : V2;
-fun smilax_N : N;
-fun smile_N : N;
-fun smile_V : V;
-fun smile_V2 : V2;
-fun smilingly_Adv : Adv;
-fun smirch_N : N;
-fun smirch_V2 : V2;
-fun smirk_N : N;
-fun smirk_V : V;
-fun smite_V : V;
-fun smite_V2 : V2;
-fun smith_N : N;
-fun smithy_N : N;
-fun smock_N : N;
-fun smocking_N : N;
-fun smog_N : N;
-fun smoke_N : N;
-fun smoke_V : V;
-fun smoke_V2 : V2;
-fun smoke_bomb_N : N;
-fun smoke_cured_A : A;
-fun smoke_dried_A : A;
-fun smoke_screen_N : N;
-fun smokeless_A : A;
-fun smoker_N : N;
-fun smokestack_N : N;
-fun smoking_N : N;
-fun smoking_car_N : N;
-fun smoking_carriage_N : N;
-fun smoking_compartment_N : N;
-fun smoking_mixture_N : N;
-fun smoking_room_N : N;
-fun smoky_A : A;
-fun smooth_A : A;
-fun smooth_N : N;
-fun smooth_V : V;
-fun smooth_V2 : V2;
-fun smooth_bore_A : A;
-fun smooth_faced_A : A;
-fun smooth_spoken_A : A;
-fun smooth_tongued_A : A;
-fun smoothing_iron_N : N;
-fun smoothing_plane_N : N;
-fun smoothness_N : N;
-fun smorgasbord_N : N;
-fun smother_N : N;
-fun smother_V2 : V2;
-fun smoulder_N : N;
-fun smoulder_V : V;
-fun smudge_N : N;
-fun smudge_V : V;
-fun smudge_V2 : V2;
-fun smudgy_A : A;
-fun smug_A : A;
-fun smuggle_V2 : V2;
-fun smuggler_N : N;
-fun smugness_N : N;
-fun smut_N : N;
-fun smut_V2 : V2;
-fun smuttily_Adv : Adv;
-fun smuttiness_N : N;
-fun smutty_A : A;
-fun snack_N : N;
-fun snack_bar_N : N;
-fun snack_counter_N : N;
-fun snaffle_N : N;
-fun snaffle_V2 : V2;
-fun snaffle_bit_N : N;
-fun snag_N : N;
-fun snag_V2 : V2;
-fun snail_N : N;
-fun snake_N : N;
-fun snake_V : V;
-fun snake_charmer_N : N;
-fun snaky_A : A;
-fun snap_N : N;
-fun snap_V : V;
-fun snap_V2 : V2;
-fun snap_fastener_N : N;
-fun snapdragon_N : N;
-fun snappish_A : A;
-fun snappishness_N : N;
-fun snappy_A : A;
-fun snapshot_N : N;
-fun snare_N : N;
-fun snare_V2 : V2;
-fun snare_drum_N : N;
-fun snarl_N : N;
-fun snarl_V : V;
-fun snarl_V2 : V2;
-fun snarl_up_N : N;
-fun snatch_N : N;
-fun snatch_V : V;
-fun snatch_V2 : V2;
-fun snatcher_N : N;
-fun snazzy_A : A;
-fun sneak_N : N;
-fun sneak_V : V;
-fun sneak_V2 : V2;
-fun sneak_thief_N : N;
-fun sneaking_A : A;
-fun sneaky_A : A;
-fun sneer_N : N;
-fun sneer_V : V;
-fun sneeringly_Adv : Adv;
-fun sneeze_N : N;
-fun sneeze_V : V;
-fun snick_N : N;
-fun snick_V : V;
-fun snick_V2 : V2;
-fun snicker_N : N;
-fun snicker_V : V;
-fun snide_A : A;
-fun sniff_N : N;
-fun sniff_V : V;
-fun sniff_V2 : V2;
-fun sniffle_V : V;
-fun sniffy_A : A;
-fun snifter_N : N;
-fun snigger_N : N;
-fun snigger_V : V;
-fun snip_N : N;
-fun snip_V : V;
-fun snip_V2 : V2;
-fun snipe_N : N;
-fun snipe_V : V;
-fun snipe_V2 : V2;
-fun sniper_N : N;
-fun snippet_N : N;
-fun snipping_N : N;
-fun snitch_V : V;
-fun snitch_V2 : V2;
-fun snivel_V : V;
-fun sniveller_N : N;
-fun snob_N : N;
-fun snobbery_N : N;
-fun snobbish_A : A;
-fun snobbishness_N : N;
-fun snog_V : V;
-fun snogging_N : N;
-fun snood_N : N;
-fun snook_N : N;
-fun snooker_N : N;
-fun snoop_V : V;
-fun snooper_N : N;
-fun snootily_Adv : Adv;
-fun snooty_A : A;
-fun snooze_N : N;
-fun snooze_V : V;
-fun snore_N : N;
-fun snore_V : V;
-fun snorer_N : N;
-fun snorkel_N : N;
-fun snort_N : N;
-fun snort_V : V;
-fun snort_V2 : V2;
-fun snorter_N : N;
-fun snorty_A : A;
-fun snot_N : N;
-fun snot_nosed_A : A;
-fun snotty_A : A;
-fun snout_N : N;
-fun snow_N : N;
-fun snow_V : V;
-fun snow_V2 : V2;
-fun snow_clad_A : A;
-fun snow_covered_A : A;
-fun snow_line_N : N;
-fun snow_white_A : A;
-fun snowball_N : N;
-fun snowball_V : V;
-fun snowball_V2 : V2;
-fun snowberry_N : N;
-fun snowblind_A : A;
-fun snowblindness_N : N;
-fun snowbound_A : A;
-fun snowcapped_A : A;
-fun snowdrift_N : N;
-fun snowdrop_N : N;
-fun snowfall_N : N;
-fun snowfield_N : N;
-fun snowflake_N : N;
-fun snowman_N : N;
-fun snowplough_N : N;
-fun snowstorm_N : N;
-fun snowy_A : A;
-fun snr_PN : PN;
-fun snub_A : A;
-fun snub_N : N;
-fun snub_V2 : V2;
-fun snub_nosed_A : A;
-fun snuff_N : N;
-fun snuff_V : V;
-fun snuff_V2 : V2;
-fun snuff_colour_A : A;
-fun snuff_colour_N : N;
-fun snuff_coloured_A : A;
-fun snuffbox_N : N;
-fun snuffle_N : N;
-fun snuffle_V : V;
-fun snug_A : A;
-fun snug_N : N;
-fun snuggery_N : N;
-fun snuggle_V : V;
-fun snuggle_V2 : V2;
-fun snugness_N : N;
-fun so_Adv : Adv;
-fun so_N : N;
-fun so_and_so_N : N;
-fun so_called_A : A;
-fun so_so_A : A;
-fun so_so_Adv : Adv;
-fun soak_N : N;
-fun soak_V : V;
-fun soak_V2 : V2;
-fun soaker_N : N;
-fun soap_N : N;
-fun soap_V2 : V2;
-fun soap_bubble_N : N;
-fun soap_opera_N : N;
-fun soapbox_N : N;
-fun soapy_A : A;
-fun soar_V : V;
-fun sob_N : N;
-fun sob_V : V;
-fun sob_V2 : V2;
-fun sob_stuff_N : N;
-fun sobbingly_Adv : Adv;
-fun sober_A : A;
-fun sober_V : V;
-fun sober_V2 : V2;
-fun sober_sides_N : N;
-fun sobriety_N : N;
-fun sobriquet_N : N;
-fun soc_N : N;
-fun soccer_N : N;
-fun sociability_N : N;
-fun sociable_A : A;
-fun social_A : A;
-fun social_N : N;
-fun social_work_N : N;
-fun socialism_N : N;
-fun socialist_A : A;
-fun socialist_N : N;
-fun socialite_N : N;
-fun socialization_N : N;
-fun socialize_V2 : V2;
-fun society_N : N;
-fun sociological_A : A;
-fun sociologist_N : N;
-fun sociology_N : N;
-fun sock_Adv : Adv;
-fun sock_N : N;
-fun sock_V2 : V2;
-fun socket_N : N;
-fun socratic_A : A;
-fun sod_N : N;
-fun sod_V : V;
-fun soda_N : N;
-fun soda_biscuit_N : N;
-fun soda_cracker_N : N;
-fun soda_fountain_N : N;
-fun soda_water_N : N;
-fun sodden_A : A;
-fun sodding_A : A;
-fun sodium_N : N;
-fun sodomite_N : N;
-fun sodomy_N : N;
-fun sofa_N : N;
-fun sofia_PN : PN;
-fun soft_A : A;
-fun soft_boiled_A : A;
-fun soft_footed_A : A;
-fun soft_headed_A : A;
-fun soft_hearted_A : A;
-fun soft_pedal_V : V;
-fun soft_pedal_V2 : V2;
-fun soft_soap_V2 : V2;
-fun soft_solder_N : N;
-fun soft_solder_V2 : V2;
-fun soft_spoken_A : A;
-fun soft_witted_A : A;
-fun soften_V : V;
-fun soften_V2 : V2;
-fun softener_N : N;
-fun softie_N : N;
-fun softish_A : A;
-fun softland_V : V;
-fun softness_N : N;
-fun software_N : N;
-fun softwood_N : N;
-fun softy_N : N;
-fun sogginess_N : N;
-fun soggy_A : A;
-fun soh_N : N;
-fun soho_PN : PN;
-fun soignee_A : A;
-fun soigne_A : A;
-fun soil_N : N;
-fun soil_V : V;
-fun soil_V2 : V2;
-fun soil_pipe_N : N;
-fun soiree_N : N;
-fun sojourn_N : N;
-fun sojourn_V : V;
-fun sojourner_N : N;
-fun sol_PN : PN;
-fun sol_fa_N : N;
-fun solace_N : N;
-fun solace_V2 : V2;
-fun solar_A : A;
-fun solar_plexus_N : N;
-fun solarium_N : N;
-fun solder_N : N;
-fun solder_V2 : V2;
-fun soldering_iron_N : N;
-fun soldier_N : N;
-fun soldier_V : V;
-fun soldiery_N : N;
-fun sole_A : A;
-fun sole_N : N;
-fun sole_V2 : V2;
-fun solecism_N : N;
-fun soled_A : A;
-fun solemn_A : A;
-fun solemnity_N : N;
-fun solemnization_N : N;
-fun solemnize_V2 : V2;
-fun solemnness_N : N;
-fun solicit_V : V;
-fun solicit_V2 : V2;
-fun solicitation_N : N;
-fun solicitor_N : N;
-fun solicitor_general_N : N;
-fun solicitous_A : A;
-fun solicitude_N : N;
-fun solid_A : A;
-fun solid_N : N;
-fun solid_state_A : A;
-fun solidarity_N : N;
-fun solidification_N : N;
-fun solidify_V : V;
-fun solidify_V2 : V2;
-fun solidity_N : N;
-fun solidness_N : N;
-fun solihull_PN : PN;
-fun soliloquize_V : V;
-fun soliloquy_N : N;
-fun solingen_PN : PN;
-fun solipsism_N : N;
-fun solitaire_N : N;
-fun solitary_A : A;
-fun solitude_N : N;
-fun solo_N : N;
-fun soloist_N : N;
-fun solon_PN : PN;
-fun solstice_N : N;
-fun solubility_N : N;
-fun soluble_A : A;
-fun solution_N : N;
-fun solvable_A : A;
-fun solve_V2 : V2;
-fun solvency_N : N;
-fun solvent_A : A;
-fun solvent_N : N;
-fun somali_A : A;
-fun somali_N : N;
-fun somalia_PN : PN;
-fun somalian_A : A;
-fun somalian_N : N;
-fun somatic_A : A;
-fun sombre_A : A;
-fun sombreness_N : N;
-fun sombrero_N : N;
-fun someday_Adv : Adv;
-fun somehow_Adv : Adv;
-fun someone_N : N;
-fun someplace_Adv : Adv;
-fun somercotes_PN : PN;
-fun somersault_N : N;
-fun somersault_V : V;
-fun somerset_PN : PN;
-fun something_Adv : Adv;
-fun sometime_Adv : Adv;
-fun sometimes_Adv : Adv;
-fun someway_Adv : Adv;
-fun somewhat_Adv : Adv;
-fun somnambulism_N : N;
-fun somnambulist_N : N;
-fun somnolence_N : N;
-fun somnolent_A : A;
-fun son_N : N;
-fun son_in_law_N : N;
-fun sonar_N : N;
-fun sonata_N : N;
-fun song_N : N;
-fun songbird_N : N;
-fun songbook_N : N;
-fun songster_N : N;
-fun songstress_N : N;
-fun sonia_PN : PN;
-fun sonic_A : A;
-fun sonnet_N : N;
-fun sonneteer_N : N;
-fun sonny_N : N;
-fun sonority_N : N;
-fun sonorous_A : A;
-fun sonsy_A : A;
-fun soochow_PN : PN;
-fun soon_Adv : Adv;
-fun sooner_Adv : Adv;
-fun soonest_Adv : Adv;
-fun soot_N : N;
-fun soot_V2 : V2;
-fun sooth_N : N;
-fun soothe_V2 : V2;
-fun soothingly_Adv : Adv;
-fun soothsayer_N : N;
-fun sooty_A : A;
-fun sop_N : N;
-fun sop_V2 : V2;
-fun sophia_PN : PN;
-fun sophie_PN : PN;
-fun sophism_N : N;
-fun sophist_N : N;
-fun sophisticated_A : A;
-fun sophistication_N : N;
-fun sophistry_N : N;
-fun sophomore_N : N;
-fun soporific_A : A;
-fun soporific_N : N;
-fun sopping_A : A;
-fun sopping_Adv : Adv;
-fun soppy_A : A;
-fun soprano_N : N;
-fun sorbet_N : N;
-fun sorcerer_N : N;
-fun sorceress_N : N;
-fun sorcery_N : N;
-fun sordid_A : A;
-fun sordidness_N : N;
-fun sore_A : A;
-fun sore_N : N;
-fun soreness_N : N;
-fun sorghum_N : N;
-fun sorority_N : N;
-fun sorrel_A : A;
-fun sorrel_N : N;
-fun sorrow_N : N;
-fun sorrow_V : V;
-fun sorrowful_A : A;
-fun sorry_A : A;
-fun sort_N : N;
-fun sort_V : V;
-fun sort_V2 : V2;
-fun sorter_N : N;
-fun sortie_N : N;
-fun sos_N : N;
-fun soss_N : N;
-fun sot_N : N;
-fun sotho_A : A;
-fun sotho_N : N;
-fun sottish_A : A;
-fun sottishness_N : N;
-fun sotto_voce_Adv : Adv;
-fun sou'_east_Adv : Adv;
-fun sou'_east_N : N;
-fun sou'_sou'_east_Adv : Adv;
-fun sou'_sou'_east_N : N;
-fun sou'_sou'_west_Adv : Adv;
-fun sou'_sou'_west_N : N;
-fun sou'_west_Adv : Adv;
-fun sou'_west_N : N;
-fun sou'_wester_N : N;
-fun sou_N : N;
-fun soubrette_N : N;
-fun soubriquet_N : N;
-fun souffle_N : N;
-fun sough_V : V;
-fun soul_N : N;
-fun soul_destroying_A : A;
-fun soul_stirring_A : A;
-fun soulful_A : A;
-fun soulless_A : A;
-fun sound_A : A;
-fun sound_Adv : Adv;
-fun sound_N : N;
-fun sound_V : V;
-fun sound_V2 : V2;
-fun sound_film_N : N;
-fun sound_recording_N : N;
-fun sound_wave_N : N;
-fun soundbox_N : N;
-fun sounding_board_N : N;
-fun soundless_A : A;
-fun soundness_N : N;
-fun soundproof_A : A;
-fun soundproof_V2 : V2;
-fun soundtrack_N : N;
-fun soup_N : N;
-fun soup_V2 : V2;
-fun soup_kitchen_N : N;
-fun soupcon_N : N;
-fun sour_A : A;
-fun sour_V : V;
-fun sour_V2 : V2;
-fun source_N : N;
-fun sourness_N : N;
-fun souse_V2 : V2;
-fun soused_A : A;
-fun soutane_N : N;
-fun south_A : A;
-fun south_Adv : Adv;
-fun south_N : N;
-fun south_kirkby_PN : PN;
-fun south_normantown_PN : PN;
-fun south_ockendon_PN : PN;
-fun south_shields_PN : PN;
-fun south_southeast_Adv : Adv;
-fun south_southeast_N : N;
-fun south_southwest_Adv : Adv;
-fun south_southwest_N : N;
-fun southampton_PN : PN;
-fun southeast_Adv : Adv;
-fun southeast_N : N;
-fun southeaster_N : N;
-fun southeasterly_A : A;
-fun southeastern_A : A;
-fun southend_on_sea_PN : PN;
-fun southerly_A : A;
-fun southerly_Adv : Adv;
-fun southern_A : A;
-fun southerner_N : N;
-fun southernmost_A : A;
-fun southpaw_N : N;
-fun southport_PN : PN;
-fun southward_Adv : Adv;
-fun southwards_Adv : Adv;
-fun southwark_PN : PN;
-fun southwest_Adv : Adv;
-fun southwest_N : N;
-fun southwester_N : N;
-fun southwesterly_A : A;
-fun southwestern_A : A;
-fun souvenir_N : N;
-fun sovereign_A : A;
-fun sovereign_N : N;
-fun sovereignty_N : N;
-fun soviet_A : A;
-fun soviet_N : N;
-fun sovietize_V2 : V2;
-fun sow_N : N;
-fun sow_V : V;
-fun sow_V2 : V2;
-fun sower_N : N;
-fun soy_N : N;
-fun soya_N : N;
-fun sozzled_A : A;
-fun spa_N : N;
-fun space_N : N;
-fun space_V2 : V2;
-fun space_bar_N : N;
-fun space_capsule_N : N;
-fun space_heater_N : N;
-fun space_helmet_N : N;
-fun space_rocket_N : N;
-fun space_time_N : N;
-fun space_vehicle_N : N;
-fun spacecraft_N : N;
-fun spaceship_N : N;
-fun spacesuit_N : N;
-fun spacing_N : N;
-fun spacious_A : A;
-fun spaciousness_N : N;
-fun spade_N : N;
-fun spade_V2 : V2;
-fun spadeful_N : N;
-fun spadework_N : N;
-fun spaghetti_N : N;
-fun spain_PN : PN;
-fun spalding_PN : PN;
-fun spam_N : N;
-fun span_N : N;
-fun span_V2 : V2;
-fun spangle_N : N;
-fun spangle_V2 : V2;
-fun spaniard_N : N;
-fun spaniel_N : N;
-fun spanish_A : A;
-fun spanish_N : N;
-fun spank_V : V;
-fun spank_V2 : V2;
-fun spanking_A : A;
-fun spanking_N : N;
-fun spanner_N : N;
-fun spar_N : N;
-fun spar_V : V;
-fun spare_A : A;
-fun spare_N : N;
-fun spare_V : V;
-fun spare_V2 : V2;
-fun spare_rib_N : N;
-fun spareness_N : N;
-fun sparing_A : A;
-fun spark_N : N;
-fun spark_V : V;
-fun spark_V2 : V2;
-fun spark_plug_N : N;
-fun sparking_plug_N : N;
-fun sparkle_N : N;
-fun sparkle_V : V;
-fun sparkler_N : N;
-fun sparkling_A : A;
-fun sparring_match_N : N;
-fun sparring_partner_N : N;
-fun sparrow_N : N;
-fun sparse_A : A;
-fun sparseness_N : N;
-fun sparsity_N : N;
-fun spartan_A : A;
-fun spartan_N : N;
-fun spasm_N : N;
-fun spasmodic_A : A;
-fun spasmodically_Adv : Adv;
-fun spastic_A : A;
-fun spastic_N : N;
-fun spat_N : N;
-fun spat_V : V;
-fun spat_V2 : V2;
-fun spatchcock_N : N;
-fun spatchcock_V2 : V2;
-fun spate_N : N;
-fun spatial_A : A;
-fun spatter_N : N;
-fun spatter_V : V;
-fun spatter_V2 : V2;
-fun spatula_N : N;
-fun spavin_N : N;
-fun spavined_A : A;
-fun spawn_N : N;
-fun spawn_V : V;
-fun spawn_V2 : V2;
-fun spay_V2 : V2;
-fun speak_V : V;
-fun speak_V2 : V2;
-fun speaker_N : N;
-fun speakership_N : N;
-fun speaking_trumpet_N : N;
-fun speaking_tube_N : N;
-fun spear_N : N;
-fun spear_V2 : V2;
-fun spearhead_N : N;
-fun spearmint_N : N;
-fun spec_N : N;
-fun special_A : A;
-fun special_N : N;
-fun specialism_N : N;
-fun specialist_N : N;
-fun speciality_N : N;
-fun specialization_N : N;
-fun specialize_V : V;
-fun specialize_V2 : V2;
-fun specialty_N : N;
-fun specie_N : N;
-fun species_N : N;
-fun specifiable_A : A;
-fun specific_A : A;
-fun specific_N : N;
-fun specifically_Adv : Adv;
-fun specification_N : N;
-fun specificity_N : N;
-fun specify_V2 : V2;
-fun specimen_N : N;
-fun specious_A : A;
-fun speciousness_N : N;
-fun speck_N : N;
-fun specked_A : A;
-fun speckle_N : N;
-fun speckled_A : A;
-fun speckless_A : A;
-fun spectacle_N : N;
-fun spectacled_A : A;
-fun spectacular_A : A;
-fun spectacular_N : N;
-fun spectator_N : N;
-fun spectral_A : A;
-fun spectre_N : N;
-fun spectroscope_N : N;
-fun spectroscopic_A : A;
-fun spectrum_N : N;
-fun speculate_V : V;
-fun speculation_N : N;
-fun speculative_A : A;
-fun speculator_N : N;
-fun speech_N : N;
-fun speech_day_N : N;
-fun speechify_V : V;
-fun speechless_A : A;
-fun speed_N : N;
-fun speed_V : V;
-fun speed_V2 : V2;
-fun speed_cop_N : N;
-fun speed_indicator_N : N;
-fun speed_limit_N : N;
-fun speed_up_N : N;
-fun speedboat_N : N;
-fun speedily_Adv : Adv;
-fun speeding_N : N;
-fun speedometer_N : N;
-fun speedway_N : N;
-fun speedwell_N : N;
-fun speedy_A : A;
-fun spelaeologist_N : N;
-fun spelaeology_N : N;
-fun speleologist_N : N;
-fun speleology_N : N;
-fun spell_N : N;
-fun spell_V : V;
-fun spell_V2 : V2;
-fun spellbinder_N : N;
-fun spellbound_A : A;
-fun speller_N : N;
-fun spelling_N : N;
-fun spelt_N : N;
-fun spenborough_PN : PN;
-fun spend_V : V;
-fun spend_V2 : V2;
-fun spender_N : N;
-fun spendthrift_N : N;
-fun spennymoor_PN : PN;
-fun spent_A : A;
-fun sperm_N : N;
-fun sperm_whale_N : N;
-fun spermaceti_N : N;
-fun spermatozoon_N : N;
-fun spermicide_N : N;
-fun spew_V : V;
-fun spew_V2 : V2;
-fun sphagnum_N : N;
-fun sphere_N : N;
-fun spherical_A : A;
-fun spheroid_N : N;
-fun sphinx_N : N;
-fun spice_N : N;
-fun spice_V2 : V2;
-fun spicily_Adv : Adv;
-fun spiciness_N : N;
-fun spick_A : A;
-fun spicy_A : A;
-fun spider_N : N;
-fun spidery_A : A;
-fun spiel_N : N;
-fun spiel_V : V;
-fun spiel_V2 : V2;
-fun spigot_N : N;
-fun spike_N : N;
-fun spike_V2 : V2;
-fun spikenard_N : N;
-fun spiky_A : A;
-fun spill_N : N;
-fun spill_V : V;
-fun spill_V2 : V2;
-fun spillage_N : N;
-fun spillover_N : N;
-fun spillway_N : N;
-fun spin_N : N;
-fun spin_V : V;
-fun spin_V2 : V2;
-fun spin_drier_N : N;
-fun spin_dry_V2 : V2;
-fun spin_off_N : N;
-fun spinach_N : N;
-fun spinal_A : A;
-fun spindle_N : N;
-fun spindle_berry_N : N;
-fun spindle_legged_A : A;
-fun spindle_shanked_A : A;
-fun spindle_shanks_N : N;
-fun spindle_tree_N : N;
-fun spindly_A : A;
-fun spindrift_N : N;
-fun spine_N : N;
-fun spineless_A : A;
-fun spinet_N : N;
-fun spinnaker_N : N;
-fun spinney_N : N;
-fun spinning_wheel_N : N;
-fun spinster_N : N;
-fun spinsterhood_N : N;
-fun spiny_A : A;
-fun spiral_A : A;
-fun spiral_N : N;
-fun spiral_V : V;
-fun spire_N : N;
-fun spirit_N : N;
-fun spirit_V2 : V2;
-fun spirit_lamp_N : N;
-fun spirit_level_N : N;
-fun spirit_rapper_N : N;
-fun spirit_stove_N : N;
-fun spirited_A : A;
-fun spiritless_A : A;
-fun spiritual_A : A;
-fun spiritual_N : N;
-fun spiritualism_N : N;
-fun spiritualist_N : N;
-fun spiritualistic_A : A;
-fun spirituality_N : N;
-fun spiritualization_N : N;
-fun spiritualize_V2 : V2;
-fun spirituous_A : A;
-fun spirt_N : N;
-fun spirt_V : V;
-fun spit_N : N;
-fun spit_V : V;
-fun spit_V2 : V2;
-fun spite_N : N;
-fun spite_V2 : V2;
-fun spiteful_A : A;
-fun spitefulness_N : N;
-fun spitfire_N : N;
-fun spitting_N : N;
-fun spittle_N : N;
-fun spittoon_N : N;
-fun spiv_N : N;
-fun splash_N : N;
-fun splash_V : V;
-fun splash_V2 : V2;
-fun splashdown_N : N;
-fun splay_A : A;
-fun splay_N : N;
-fun splay_V : V;
-fun splay_V2 : V2;
-fun splayfoot_N : N;
-fun splayfooted_A : A;
-fun spleen_N : N;
-fun splendid_A : A;
-fun splendiferous_A : A;
-fun splendour_N : N;
-fun splenetic_A : A;
-fun splice_N : N;
-fun splice_V2 : V2;
-fun splicer_N : N;
-fun splint_N : N;
-fun splinter_N : N;
-fun splinter_V : V;
-fun splinter_V2 : V2;
-fun splinter_proof_A : A;
-fun splintery_A : A;
-fun split_N : N;
-fun split_PN : PN;
-fun split_V : V;
-fun split_V2 : V2;
-fun splodge_N : N;
-fun splosh_V2 : V2;
-fun splotch_N : N;
-fun splurge_N : N;
-fun splurge_V : V;
-fun splutter_N : N;
-fun splutter_V : V;
-fun splutter_V2 : V2;
-fun spode_N : N;
-fun spoil_N : N;
-fun spoil_V : V;
-fun spoil_V2 : V2;
-fun spoilsport_N : N;
-fun spoke_N : N;
-fun spokesman_N : N;
-fun spoliation_N : N;
-fun spondaic_A : A;
-fun spondee_N : N;
-fun sponge_N : N;
-fun sponge_V : V;
-fun sponge_V2 : V2;
-fun sponge_cake_N : N;
-fun sponger_N : N;
-fun sponginess_N : N;
-fun spongy_A : A;
-fun sponsor_N : N;
-fun sponsor_V2 : V2;
-fun sponsorship_N : N;
-fun spontaneity_N : N;
-fun spontaneous_A : A;
-fun spontaneousness_N : N;
-fun spoof_N : N;
-fun spoof_V2 : V2;
-fun spook_N : N;
-fun spooky_A : A;
-fun spool_N : N;
-fun spoon_N : N;
-fun spoon_V : V;
-fun spoon_V2 : V2;
-fun spoonerism_N : N;
-fun spoonfeed_V2 : V2;
-fun spoonfeeding_N : N;
-fun spoonful_N : N;
-fun spoor_N : N;
-fun sporadic_A : A;
-fun sporadically_Adv : Adv;
-fun spore_N : N;
-fun sporran_N : N;
-fun sport_N : N;
-fun sport_V : V;
-fun sport_V2 : V2;
-fun sporting_A : A;
-fun sportive_A : A;
-fun sportiveness_N : N;
-fun sports_car_N : N;
-fun sports_coat_N : N;
-fun sports_editor_N : N;
-fun sports_jacket_N : N;
-fun sportsman_N : N;
-fun sportsmanlike_A : A;
-fun sportsmanship_N : N;
-fun spot_N : N;
-fun spot_V : V;
-fun spot_V2 : V2;
-fun spotless_A : A;
-fun spotlight_N : N;
-fun spotlight_V2 : V2;
-fun spotted_A : A;
-fun spotter_N : N;
-fun spotty_A : A;
-fun spouse_N : N;
-fun spout_N : N;
-fun spout_V : V;
-fun spout_V2 : V2;
-fun sprain_N : N;
-fun sprain_V2 : V2;
-fun sprat_N : N;
-fun sprawl_N : N;
-fun sprawl_V : V;
-fun spray_N : N;
-fun spray_V2 : V2;
-fun spray_gun_N : N;
-fun sprayer_N : N;
-fun spread_N : N;
-fun spread_V : V;
-fun spread_V2 : V2;
-fun spread_over_N : N;
-fun spreadeagle_N : N;
-fun spreadeagle_V2 : V2;
-fun spreader_N : N;
-fun spree_N : N;
-fun sprig_N : N;
-fun sprigged_A : A;
-fun sprightliness_N : N;
-fun sprightly_A : A;
-fun spring_N : N;
-fun spring_V : V;
-fun spring_V2 : V2;
-fun spring_balance_N : N;
-fun spring_clean_N : N;
-fun spring_clean_V2 : V2;
-fun spring_cleaning_N : N;
-fun spring_gun_N : N;
-fun spring_mattress_N : N;
-fun springboard_N : N;
-fun springbok_N : N;
-fun springfield_PN : PN;
-fun springless_A : A;
-fun springlike_A : A;
-fun springtide_N : N;
-fun springtime_N : N;
-fun springy_A : A;
-fun sprinkle_V2 : V2;
-fun sprinkler_N : N;
-fun sprinkling_N : N;
-fun sprint_N : N;
-fun sprint_V : V;
-fun sprinter_N : N;
-fun sprit_N : N;
-fun sprite_N : N;
-fun spritsail_N : N;
-fun sprocket_N : N;
-fun sprocket_wheel_N : N;
-fun sprout_N : N;
-fun sprout_V : V;
-fun sprout_V2 : V2;
-fun spruce_A : A;
-fun spruce_N : N;
-fun spruce_V : V;
-fun spruce_V2 : V2;
-fun spruceness_N : N;
-fun spry_A : A;
-fun spud_N : N;
-fun spue_V : V;
-fun spue_V2 : V2;
-fun spume_N : N;
-fun spunk_N : N;
-fun spunky_A : A;
-fun spur_N : N;
-fun spur_V : V;
-fun spur_V2 : V2;
-fun spurious_A : A;
-fun spuriousness_N : N;
-fun spurn_V2 : V2;
-fun spurt_N : N;
-fun spurt_V : V;
-fun sputnik_N : N;
-fun sputter_V : V;
-fun sputter_V2 : V2;
-fun sputum_N : N;
-fun spy_N : N;
-fun spy_V : V;
-fun spy_V2 : V2;
-fun spy_hole_N : N;
-fun spyglass_N : N;
-fun sq_PN : PN;
-fun squab_N : N;
-fun squabble_N : N;
-fun squabble_V : V;
-fun squad_N : N;
-fun squadron_N : N;
-fun squalid_A : A;
-fun squall_N : N;
-fun squall_V : V;
-fun squally_A : A;
-fun squalor_N : N;
-fun squander_V2 : V2;
-fun squandermania_N : N;
-fun square_A : A;
-fun square_Adv : Adv;
-fun square_N : N;
-fun square_V : V;
-fun square_V2 : V2;
-fun square_bashing_N : N;
-fun square_built_A : A;
-fun square_rigged_A : A;
-fun square_shouldered_A : A;
-fun square_toed_A : A;
-fun square_toes_N : N;
-fun squareness_N : N;
-fun squash_N : N;
-fun squash_V : V;
-fun squash_V2 : V2;
-fun squashy_A : A;
-fun squat_A : A;
-fun squat_V : V;
-fun squatter_N : N;
-fun squaw_N : N;
-fun squawk_N : N;
-fun squawk_V : V;
-fun squawker_N : N;
-fun squeak_N : N;
-fun squeak_V : V;
-fun squeak_V2 : V2;
-fun squeaker_N : N;
-fun squeaky_A : A;
-fun squeal_N : N;
-fun squeal_V : V;
-fun squeal_V2 : V2;
-fun squealer_N : N;
-fun squeamish_A : A;
-fun squeamishness_N : N;
-fun squeegee_N : N;
-fun squeegee_V2 : V2;
-fun squeeze_N : N;
-fun squeeze_V : V;
-fun squeeze_V2 : V2;
-fun squeezer_N : N;
-fun squelch_N : N;
-fun squelch_V : V;
-fun squelch_V2 : V2;
-fun squib_N : N;
-fun squid_N : N;
-fun squiffy_A : A;
-fun squiggle_N : N;
-fun squiggly_A : A;
-fun squint_N : N;
-fun squint_V : V;
-fun squint_eyed_A : A;
-fun squire_N : N;
-fun squire_V2 : V2;
-fun squirearchy_N : N;
-fun squirm_N : N;
-fun squirm_V : V;
-fun squirrel_N : N;
-fun squirt_N : N;
-fun squirt_V : V;
-fun squirt_V2 : V2;
-fun sr_PN : PN;
-fun sri_lanka_PN : PN;
-fun sri_lankan_A : A;
-fun sri_lankan_N : N;
-fun srn_N : N;
-fun ss_N : N;
-fun st_PN : PN;
-fun st_albans_PN : PN;
-fun st_andrews_PN : PN;
-fun st_andrews_major_PN : PN;
-fun st_austell_PN : PN;
-fun st_blazey_PN : PN;
-fun st_helens_PN : PN;
-fun st_ives_PN : PN;
-fun st_louis_PN : PN;
-fun st_neots_PN : PN;
-fun st_paul_PN : PN;
-fun st_petersburg_PN : PN;
-fun st_stephen_PN : PN;
-fun sta_PN : PN;
-fun stab_N : N;
-fun stab_V : V;
-fun stab_V2 : V2;
-fun stabber_N : N;
-fun stability_N : N;
-fun stabilization_N : N;
-fun stabilize_V2 : V2;
-fun stabilizer_N : N;
-fun stable_A : A;
-fun stable_N : N;
-fun stable_V2 : V2;
-fun stable_companion_N : N;
-fun stableboy_N : N;
-fun stableman_N : N;
-fun stablemate_N : N;
-fun stabling_N : N;
-fun staccato_A : A;
-fun staccato_Adv : Adv;
-fun stack_N : N;
-fun stack_V2 : V2;
-fun stadium_N : N;
-fun staff_N : N;
-fun staff_V2 : V2;
-fun staff_office_N : N;
-fun stafford_PN : PN;
-fun staffordshire_PN : PN;
-fun stag_N : N;
-fun stag_party_N : N;
-fun stage_N : N;
-fun stage_V : V;
-fun stage_V2 : V2;
-fun stage_struck_A : A;
-fun stage_whisper_N : N;
-fun stagecoach_N : N;
-fun stagecraft_N : N;
-fun stager_N : N;
-fun stagflation_N : N;
-fun stagger_N : N;
-fun stagger_V : V;
-fun stagger_V2 : V2;
-fun staggerer_N : N;
-fun staggeringly_Adv : Adv;
-fun staginess_N : N;
-fun staging_N : N;
-fun stagnancy_N : N;
-fun stagnant_A : A;
-fun stagnate_V : V;
-fun stagnation_N : N;
-fun stagy_A : A;
-fun staid_A : A;
-fun staidness_N : N;
-fun stain_N : N;
-fun stain_V : V;
-fun stain_V2 : V2;
-fun stainless_A : A;
-fun stair_N : N;
-fun stair_carpet_N : N;
-fun stair_rod_N : N;
-fun staircase_N : N;
-fun stairway_N : N;
-fun stake_N : N;
-fun stake_V2 : V2;
-fun stake_holder_N : N;
-fun stakeford_PN : PN;
-fun stalactite_N : N;
-fun stalagmite_N : N;
-fun stale_A : A;
-fun stale_V : V;
-fun stalemate_N : N;
-fun stalemate_V2 : V2;
-fun staleness_N : N;
-fun stalk_N : N;
-fun stalk_V : V;
-fun stalk_V2 : V2;
-fun stalker_N : N;
-fun stalking_horse_N : N;
-fun stall_N : N;
-fun stall_V : V;
-fun stall_V2 : V2;
-fun stall_fed_A : A;
-fun stallion_N : N;
-fun stalwart_A : A;
-fun stalwart_N : N;
-fun stalybridge_PN : PN;
-fun stamen_N : N;
-fun stamford_PN : PN;
-fun stamina_N : N;
-fun stammer_N : N;
-fun stammer_V : V;
-fun stammer_V2 : V2;
-fun stammerer_N : N;
-fun stammeringly_Adv : Adv;
-fun stamp_N : N;
-fun stamp_V : V;
-fun stamp_V2 : V2;
-fun stamp_album_N : N;
-fun stamp_collector_N : N;
-fun stamp_dealer_N : N;
-fun stamp_duty_N : N;
-fun stampede_N : N;
-fun stampede_V : V;
-fun stampede_V2 : V2;
-fun stamping_ground_N : N;
-fun stan_PN : PN;
-fun stance_N : N;
-fun stanchion_N : N;
-fun stand_N : N;
-fun stand_V : V;
-fun stand_V2 : V2;
-fun stand_in_N : N;
-fun stand_to_N : N;
-fun stand_up_A : A;
-fun standard_A : A;
-fun standard_N : N;
-fun standard_bearer_N : N;
-fun standardization_N : N;
-fun standardize_V2 : V2;
-fun standby_N : N;
-fun standing_A : A;
-fun standing_N : N;
-fun standoffish_A : A;
-fun standoffishness_N : N;
-fun standpipe_N : N;
-fun standpoint_N : N;
-fun standstill_N : N;
-fun stanford_PN : PN;
-fun stanley_PN : PN;
-fun stanza_N : N;
-fun staple_N : N;
-fun staple_V2 : V2;
-fun stapler_N : N;
-fun stapling_machine_N : N;
-fun star_N : N;
-fun star_V : V;
-fun star_V2 : V2;
-fun starboard_N : N;
-fun starboard_V2 : V2;
-fun starch_N : N;
-fun starch_V2 : V2;
-fun starchy_A : A;
-fun stardom_N : N;
-fun stardust_N : N;
-fun stare_N : N;
-fun stare_V : V;
-fun stare_V2 : V2;
-fun starfish_N : N;
-fun stargazer_N : N;
-fun staring_A : A;
-fun staring_Adv : Adv;
-fun stark_A : A;
-fun stark_Adv : Adv;
-fun starkers_A : A;
-fun starless_A : A;
-fun starlet_N : N;
-fun starlight_N : N;
-fun starling_N : N;
-fun starlit_A : A;
-fun starry_A : A;
-fun starry_eyed_A : A;
-fun start_N : N;
-fun start_V : V;
-fun start_V2 : V2;
-fun starter_N : N;
-fun starting_gate_N : N;
-fun starting_point_N : N;
-fun starting_post_N : N;
-fun startle_V2 : V2;
-fun startlingly_Adv : Adv;
-fun starvation_N : N;
-fun starve_V : V;
-fun starve_V2 : V2;
-fun starveling_N : N;
-fun stash_V2 : V2;
-fun state_N : N;
-fun state_V2 : V2;
-fun statecraft_N : N;
-fun stated_A : A;
-fun statehouse_N : N;
-fun stateless_A : A;
-fun stateliness_N : N;
-fun stately_A : A;
-fun statement_N : N;
-fun statesman_N : N;
-fun statesmanlike_A : A;
-fun statesmanship_N : N;
-fun static_A : A;
-fun statically_Adv : Adv;
-fun statics_N : N;
-fun station_N : N;
-fun station_V2 : V2;
-fun station_waggon_N : N;
-fun stationary_A : A;
-fun stationer_N : N;
-fun stationery_N : N;
-fun stationmaster_N : N;
-fun statistic_N : N;
-fun statistical_A : A;
-fun statistician_N : N;
-fun statistics_N : N;
-fun statuary_A : A;
-fun statuary_N : N;
-fun statue_N : N;
-fun statuesque_A : A;
-fun statuette_N : N;
-fun stature_N : N;
-fun status_N : N;
-fun status_quo_N : N;
-fun statute_N : N;
-fun statute_book_N : N;
-fun statutory_A : A;
-fun staunch_A : A;
-fun staunch_V2 : V2;
-fun staunchness_N : N;
-fun stave_N : N;
-fun stave_V : V;
-fun stave_V2 : V2;
-fun stay_N : N;
-fun stay_V : V;
-fun stay_V2 : V2;
-fun stay_at_home_N : N;
-fun stayer_N : N;
-fun std_PN : PN;
-fun stead_N : N;
-fun steadfast_A : A;
-fun steadfastness_N : N;
-fun steadily_Adv : Adv;
-fun steadiness_N : N;
-fun steady_A : A;
-fun steady_Adv : Adv;
-fun steady_N : N;
-fun steady_V : V;
-fun steady_V2 : V2;
-fun steak_N : N;
-fun steal_V : V;
-fun steal_V2 : V2;
-fun stealth_N : N;
-fun stealthily_Adv : Adv;
-fun stealthy_A : A;
-fun steam_N : N;
-fun steam_V : V;
-fun steam_V2 : V2;
-fun steam_boiler_N : N;
-fun steam_coal_N : N;
-fun steam_engine_N : N;
-fun steam_heat_N : N;
-fun steam_heat_V2 : V2;
-fun steamboat_N : N;
-fun steamer_N : N;
-fun steamroller_N : N;
-fun steamroller_V2 : V2;
-fun steamship_N : N;
-fun steamy_A : A;
-fun steed_N : N;
-fun steel_N : N;
-fun steel_V2 : V2;
-fun steel_clad_A : A;
-fun steel_plated_A : A;
-fun steelworks_N : N;
-fun steely_A : A;
-fun steelyard_N : N;
-fun steenbok_N : N;
-fun steep_A : A;
-fun steep_V : V;
-fun steep_V2 : V2;
-fun steepen_V : V;
-fun steepen_V2 : V2;
-fun steepish_A : A;
-fun steeple_N : N;
-fun steeplechase_N : N;
-fun steeplechaser_N : N;
-fun steeplejack_N : N;
-fun steepness_N : N;
-fun steer_N : N;
-fun steer_V : V;
-fun steer_V2 : V2;
-fun steerage_N : N;
-fun steerageway_N : N;
-fun steering_gear_N : N;
-fun steering_wheel_N : N;
-fun steersman_N : N;
-fun stele_N : N;
-fun stella_PN : PN;
-fun stellar_A : A;
-fun stem_N : N;
-fun stem_V : V;
-fun stem_V2 : V2;
-fun stemmed_A : A;
-fun sten_PN : PN;
-fun stench_N : N;
-fun stencil_N : N;
-fun stencil_V2 : V2;
-fun stenographer_N : N;
-fun stenography_N : N;
-fun stentorian_A : A;
-fun step_N : N;
-fun step_V : V;
-fun step_V2 : V2;
-fun stepbrother_N : N;
-fun stepchild_N : N;
-fun stepdaughter_N : N;
-fun stepfather_N : N;
-fun stephanie_PN : PN;
-fun stephen_PN : PN;
-fun stepladder_N : N;
-fun stepmother_N : N;
-fun stepparent_N : N;
-fun steppe_N : N;
-fun stepping_stone_N : N;
-fun stepsister_N : N;
-fun stepson_N : N;
-fun stereo_N : N;
-fun stereophonic_A : A;
-fun stereoscope_N : N;
-fun stereoscopic_A : A;
-fun stereotype_N : N;
-fun stereotype_V2 : V2;
-fun sterile_A : A;
-fun sterility_N : N;
-fun sterilization_N : N;
-fun sterilize_V2 : V2;
-fun sterling_A : A;
-fun sterling_N : N;
-fun stern_A : A;
-fun stern_N : N;
-fun sternness_N : N;
-fun sternum_N : N;
-fun sternwheeler_N : N;
-fun stertorous_A : A;
-fun stethoscope_N : N;
-fun stetson_N : N;
-fun steve_PN : PN;
-fun stevedore_N : N;
-fun steven_PN : PN;
-fun stevenage_PN : PN;
-fun stevenston_PN : PN;
-fun stew_N : N;
-fun stew_V : V;
-fun stew_V2 : V2;
-fun steward_N : N;
-fun stewardess_N : N;
-fun stewardship_N : N;
-fun stewart_PN : PN;
-fun stewed_A : A;
-fun steyning_PN : PN;
-fun stick_N : N;
-fun stick_V : V;
-fun stick_V2 : V2;
-fun stick_in_the_mud_A : A;
-fun stick_in_the_mud_N : N;
-fun stick_on_A : A;
-fun stick_up_N : N;
-fun sticker_N : N;
-fun stickily_Adv : Adv;
-fun stickiness_N : N;
-fun sticking_plaster_N : N;
-fun stickler_N : N;
-fun sticky_A : A;
-fun stiff_A : A;
-fun stiff_Adv : Adv;
-fun stiff_N : N;
-fun stiff_necked_A : A;
-fun stiffen_V : V;
-fun stiffen_V2 : V2;
-fun stiffener_N : N;
-fun stiffening_N : N;
-fun stiffness_N : N;
-fun stifle_V : V;
-fun stifle_V2 : V2;
-fun stigma_N : N;
-fun stigmatize_V2 : V2;
-fun stile_N : N;
-fun stiletto_N : N;
-fun still_A : A;
-fun still_Adv : Adv;
-fun still_N : N;
-fun still_V2 : V2;
-fun still_life_N : N;
-fun still_room_N : N;
-fun stillbirth_N : N;
-fun stillborn_A : A;
-fun stillness_N : N;
-fun stilly_A : A;
-fun stilt_N : N;
-fun stilted_A : A;
-fun stilton_N : N;
-fun stimulant_N : N;
-fun stimulate_V2 : V2;
-fun stimulating_A : A;
-fun stimulation_N : N;
-fun stimulus_N : N;
-fun sting_N : N;
-fun sting_V : V;
-fun sting_V2 : V2;
-fun stinger_N : N;
-fun stingily_Adv : Adv;
-fun stinginess_N : N;
-fun stingless_A : A;
-fun stingray_N : N;
-fun stingy_A : A;
-fun stink_N : N;
-fun stink_V : V;
-fun stink_V2 : V2;
-fun stinker_N : N;
-fun stint_N : N;
-fun stint_V : V;
-fun stint_V2 : V2;
-fun stipend_N : N;
-fun stipendiary_A : A;
-fun stipendiary_N : N;
-fun stipple_V2 : V2;
-fun stipulate_V : V;
-fun stipulate_V2 : V2;
-fun stipulation_N : N;
-fun stir_N : N;
-fun stir_V : V;
-fun stir_V2 : V2;
-fun stirling_PN : PN;
-fun stirring_A : A;
-fun stirrup_N : N;
-fun stirrup_cup_N : N;
-fun stitch_N : N;
-fun stitch_V : V;
-fun stitch_V2 : V2;
-fun stoat_N : N;
-fun stochastic_A : A;
-fun stochastically_Adv : Adv;
-fun stock_N : N;
-fun stock_V2 : V2;
-fun stock_cube_N : N;
-fun stock_farmer_N : N;
-fun stock_in_trade_N : N;
-fun stock_list_N : N;
-fun stock_still_Adv : Adv;
-fun stockade_N : N;
-fun stockade_V2 : V2;
-fun stockbreeder_N : N;
-fun stockbroker_N : N;
-fun stockcar_N : N;
-fun stockfish_N : N;
-fun stockholder_N : N;
-fun stockholding_N : N;
-fun stockholm_PN : PN;
-fun stockily_Adv : Adv;
-fun stockinette_N : N;
-fun stocking_N : N;
-fun stockinged_A : A;
-fun stockist_N : N;
-fun stockjobber_N : N;
-fun stockpile_N : N;
-fun stockpiling_N : N;
-fun stockport_PN : PN;
-fun stockpot_N : N;
-fun stockroom_N : N;
-fun stocksbridge_PN : PN;
-fun stocktaking_N : N;
-fun stocky_A : A;
-fun stockyard_N : N;
-fun stodge_N : N;
-fun stodginess_N : N;
-fun stodgy_A : A;
-fun stoep_N : N;
-fun stoic_N : N;
-fun stoical_A : A;
-fun stoicism_N : N;
-fun stoke_V : V;
-fun stoke_V2 : V2;
-fun stoke_on_trent_PN : PN;
-fun stokehold_N : N;
-fun stokehole_N : N;
-fun stoker_N : N;
-fun stole_N : N;
-fun stolen_A : A;
-fun stolid_A : A;
-fun stolidity_N : N;
-fun stolidness_N : N;
-fun stomach_N : N;
-fun stomach_V2 : V2;
-fun stomach_ache_N : N;
-fun stomach_pump_N : N;
-fun stomp_N : N;
-fun stomp_V : V;
-fun stone_N : N;
-fun stone_PN : PN;
-fun stone_V2 : V2;
-fun stone_blind_A : A;
-fun stone_cold_A : A;
-fun stone_dead_A : A;
-fun stone_deaf_A : A;
-fun stone_fruit_N : N;
-fun stone_pit_N : N;
-fun stone_sober_A : A;
-fun stonebreaker_N : N;
-fun stoned_A : A;
-fun stonehouse_PN : PN;
-fun stoneless_A : A;
-fun stonemason_N : N;
-fun stonewall_V2 : V2;
-fun stonewaller_N : N;
-fun stonewalling_N : N;
-fun stoneware_N : N;
-fun stonework_N : N;
-fun stonily_Adv : Adv;
-fun stony_A : A;
-fun stony_broke_A : A;
-fun stooge_N : N;
-fun stooge_V : V;
-fun stool_N : N;
-fun stoop_N : N;
-fun stoop_V : V;
-fun stoop_V2 : V2;
-fun stop_N : N;
-fun stop_V : V;
-fun stop_V2 : V2;
-fun stopcock_N : N;
-fun stopgap_N : N;
-fun stopover_N : N;
-fun stoppage_N : N;
-fun stopper_N : N;
-fun stopping_N : N;
-fun stopwatch_N : N;
-fun storage_N : N;
-fun store_N : N;
-fun store_V2 : V2;
-fun storehouse_N : N;
-fun storeroom_N : N;
-fun storey_N : N;
-fun storeyed_A : A;
-fun storied_A : A;
-fun stork_N : N;
-fun storm_N : N;
-fun storm_V : V;
-fun storm_V2 : V2;
-fun storm_beaten_A : A;
-fun storm_bound_A : A;
-fun storm_centre_N : N;
-fun storm_cloud_N : N;
-fun storm_cone_N : N;
-fun storm_lantern_N : N;
-fun storm_signal_N : N;
-fun storm_tossed_A : A;
-fun storm_trooper_N : N;
-fun stormily_Adv : Adv;
-fun stormproof_A : A;
-fun stormy_A : A;
-fun stornoway_PN : PN;
-fun story_N : N;
-fun storyteller_N : N;
-fun stotfold_PN : PN;
-fun stoup_N : N;
-fun stourbridge_PN : PN;
-fun stourport_on_severn_PN : PN;
-fun stout_A : A;
-fun stout_N : N;
-fun stouthearted_A : A;
-fun stoutness_N : N;
-fun stove_N : N;
-fun stovepipe_N : N;
-fun stow_V2 : V2;
-fun stowaway_N : N;
-fun stowmarket_PN : PN;
-fun straddle_V : V;
-fun straddle_V2 : V2;
-fun strafe_V2 : V2;
-fun straggle_V : V;
-fun straggler_N : N;
-fun straggly_A : A;
-fun straight_A : A;
-fun straight_Adv : Adv;
-fun straight_N : N;
-fun straighten_V : V;
-fun straighten_V2 : V2;
-fun straightforward_A : A;
-fun straightness_N : N;
-fun straightway_Adv : Adv;
-fun strain_N : N;
-fun strain_V : V;
-fun strain_V2 : V2;
-fun strained_A : A;
-fun strainer_N : N;
-fun strait_A : A;
-fun strait_N : N;
-fun strait_laced_A : A;
-fun straiten_V2 : V2;
-fun straitjacket_N : N;
-fun strand_N : N;
-fun strand_V : V;
-fun strand_V2 : V2;
-fun strange_A : A;
-fun strangeness_N : N;
-fun stranger_N : N;
-fun strangle_V2 : V2;
-fun stranglehold_N : N;
-fun strangulation_N : N;
-fun stranraer_PN : PN;
-fun strap_N : N;
-fun strap_V2 : V2;
-fun straphanger_N : N;
-fun strapping_A : A;
-fun strapping_N : N;
-fun strasbourg_PN : PN;
-fun stratagem_N : N;
-fun strategic_A : A;
-fun strategical_A : A;
-fun strategics_N : N;
-fun strategist_N : N;
-fun strategy_N : N;
-fun stratford_on_avon_PN : PN;
-fun strathaven_PN : PN;
-fun strathclyde_PN : PN;
-fun stratification_N : N;
-fun stratify_V : V;
-fun stratify_V2 : V2;
-fun stratosphere_N : N;
-fun stratum_N : N;
-fun straw_N : N;
-fun straw_V2 : V2;
-fun straw_coloured_A : A;
-fun strawberry_N : N;
-fun strawboard_N : N;
-fun stray_N : N;
-fun stray_V : V;
-fun streak_N : N;
-fun streak_V : V;
-fun streak_V2 : V2;
-fun streaky_A : A;
-fun stream_N : N;
-fun stream_V : V;
-fun streamer_N : N;
-fun streamlet_N : N;
-fun streamline_V2 : V2;
-fun streamlined_A : A;
-fun street_N : N;
-fun street_PN : PN;
-fun street_girl_N : N;
-fun street_urchin_N : N;
-fun streetcar_N : N;
-fun streetwalker_N : N;
-fun strength_N : N;
-fun strengthen_V : V;
-fun strengthen_V2 : V2;
-fun strenuous_A : A;
-fun strenuousness_N : N;
-fun streptococcus_N : N;
-fun streptomycin_N : N;
-fun stress_N : N;
-fun stress_V2 : V2;
-fun stress_mark_N : N;
-fun stretch_N : N;
-fun stretch_V : V;
-fun stretch_V2 : V2;
-fun stretcher_N : N;
-fun stretcher_bearer_N : N;
-fun stretcher_party_N : N;
-fun stretford_PN : PN;
-fun strew_V2 : V2;
-fun striated_A : A;
-fun stricken_A : A;
-fun strict_A : A;
-fun strictness_N : N;
-fun stricture_N : N;
-fun stride_N : N;
-fun stride_V : V;
-fun stride_V2 : V2;
-fun strident_A : A;
-fun stridulate_V : V;
-fun stridulation_N : N;
-fun strife_N : N;
-fun strike_N : N;
-fun strike_V : V;
-fun strike_V2 : V2;
-fun strike_leader_N : N;
-fun strike_pay_N : N;
-fun strikebound_A : A;
-fun strikebreaker_N : N;
-fun striker_N : N;
-fun striking_A : A;
-fun string_N : N;
-fun string_V : V;
-fun string_V2 : V2;
-fun stringency_N : N;
-fun stringent_A : A;
-fun stringy_A : A;
-fun strip_N : N;
-fun strip_V : V;
-fun strip_V2 : V2;
-fun strip_lighting_N : N;
-fun strip_poker_N : N;
-fun strip_show_N : N;
-fun stripe_N : N;
-fun striped_A : A;
-fun stripling_N : N;
-fun stripper_N : N;
-fun striptease_N : N;
-fun stripy_A : A;
-fun strive_V : V;
-fun striver_N : N;
-fun stroboscope_N : N;
-fun stroke_N : N;
-fun stroke_V2 : V2;
-fun stroll_N : N;
-fun stroll_V : V;
-fun stroller_N : N;
-fun strong_A : A;
-fun strong_arm_A : A;
-fun strong_boned_A : A;
-fun strong_minded_A : A;
-fun strongbox_N : N;
-fun stronghold_N : N;
-fun strongroom_N : N;
-fun strontium_N : N;
-fun strop_N : N;
-fun strop_V2 : V2;
-fun strophe_N : N;
-fun stroppy_A : A;
-fun stroud_PN : PN;
-fun struck_A : A;
-fun structural_A : A;
-fun structure_N : N;
-fun structured_A : A;
-fun strudel_N : N;
-fun struggle_N : N;
-fun struggle_V : V;
-fun strum_N : N;
-fun strum_V : V;
-fun strum_V2 : V2;
-fun strumpet_N : N;
-fun strut_N : N;
-fun strut_V : V;
-fun strychnine_N : N;
-fun stuart_PN : PN;
-fun stub_N : N;
-fun stub_V2 : V2;
-fun stubble_N : N;
-fun stubbly_A : A;
-fun stubborn_A : A;
-fun stubbornness_N : N;
-fun stubby_A : A;
-fun stucco_N : N;
-fun stucco_V2 : V2;
-fun stuck_up_A : A;
-fun stud_N : N;
-fun stud_V2 : V2;
-fun stud_farm_N : N;
-fun stud_mare_N : N;
-fun studbook_N : N;
-fun student_N : N;
-fun studied_A : A;
-fun studio_N : N;
-fun studious_A : A;
-fun studiousness_N : N;
-fun studley_PN : PN;
-fun study_N : N;
-fun study_V : V;
-fun study_V2 : V2;
-fun stuff_N : N;
-fun stuff_V2 : V2;
-fun stuffily_Adv : Adv;
-fun stuffiness_N : N;
-fun stuffing_N : N;
-fun stuffy_A : A;
-fun stultification_N : N;
-fun stultify_V2 : V2;
-fun stumble_N : N;
-fun stumble_V : V;
-fun stumbling_block_N : N;
-fun stump_N : N;
-fun stump_V : V;
-fun stump_V2 : V2;
-fun stumper_N : N;
-fun stumpy_A : A;
-fun stun_V2 : V2;
-fun stunner_N : N;
-fun stunning_A : A;
-fun stunt_N : N;
-fun stunt_V2 : V2;
-fun stupefaction_N : N;
-fun stupefy_V2 : V2;
-fun stupendous_A : A;
-fun stupid_A : A;
-fun stupid_N : N;
-fun stupidity_N : N;
-fun stupify_V2 : V2;
-fun stupifying_A : A;
-fun stupor_N : N;
-fun sturdily_Adv : Adv;
-fun sturdiness_N : N;
-fun sturdy_A : A;
-fun sturgeon_N : N;
-fun stutter_N : N;
-fun stutter_V : V;
-fun stutter_V2 : V2;
-fun stutterer_N : N;
-fun stutteringly_Adv : Adv;
-fun stuttgart_PN : PN;
-fun sty_N : N;
-fun stye_N : N;
-fun stygian_A : A;
-fun style_N : N;
-fun style_V2 : V2;
-fun stylish_A : A;
-fun stylishness_N : N;
-fun stylist_N : N;
-fun stylistic_A : A;
-fun stylistically_Adv : Adv;
-fun stylization_N : N;
-fun stylize_V2 : V2;
-fun stylus_N : N;
-fun stymie_N : N;
-fun stymie_V2 : V2;
-fun styptic_A : A;
-fun styptic_N : N;
-fun styx_PN : PN;
-fun suasion_N : N;
-fun suave_A : A;
-fun suavity_N : N;
-fun sub_N : N;
-fun sub_V : V;
-fun sub_V2 : V2;
-fun sub_judice_A : A;
-fun sub_rosa_Adv : Adv;
-fun subaltern_N : N;
-fun subatomic_A : A;
-fun subcommittee_N : N;
-fun subconscious_A : A;
-fun subconscious_N : N;
-fun subconsciousness_N : N;
-fun subcontinent_N : N;
-fun subcontract_N : N;
-fun subcontract_V : V;
-fun subcontract_V2 : V2;
-fun subcontractor_N : N;
-fun subcutaneous_A : A;
-fun subdivide_V : V;
-fun subdivide_V2 : V2;
-fun subdivision_N : N;
-fun subdue_V2 : V2;
-fun subedit_V2 : V2;
-fun subeditor_N : N;
-fun subfusc_A : A;
-fun subgroup_N : N;
-fun subheading_N : N;
-fun subhuman_A : A;
-fun subject_A : A;
-fun subject_N : N;
-fun subject_V2 : V2;
-fun subjection_N : N;
-fun subjective_A : A;
-fun subjectivity_N : N;
-fun subjoin_V2 : V2;
-fun subjugate_V2 : V2;
-fun subjugation_N : N;
-fun subjunctive_A : A;
-fun subjunctive_N : N;
-fun sublease_N : N;
-fun sublease_V : V;
-fun sublease_V2 : V2;
-fun sublet_V : V;
-fun sublet_V2 : V2;
-fun sublieutenant_N : N;
-fun sublimate_A : A;
-fun sublimate_N : N;
-fun sublimate_V2 : V2;
-fun sublimation_N : N;
-fun sublime_A : A;
-fun sublime_N : N;
-fun subliminal_A : A;
-fun sublimity_N : N;
-fun submarine_A : A;
-fun submarine_N : N;
-fun submariner_N : N;
-fun submerge_V : V;
-fun submerge_V2 : V2;
-fun submerged_A : A;
-fun submergence_N : N;
-fun submersible_A : A;
-fun submersion_N : N;
-fun submission_N : N;
-fun submissive_A : A;
-fun submissiveness_N : N;
-fun submit_V : V;
-fun submit_V2 : V2;
-fun subnormal_A : A;
-fun subnormal_N : N;
-fun suborbital_A : A;
-fun subordinate_A : A;
-fun subordinate_N : N;
-fun subordinate_V2 : V2;
-fun subordination_N : N;
-fun subordinative_A : A;
-fun suborn_V2 : V2;
-fun subornation_N : N;
-fun subpoena_N : N;
-fun subpoena_V2 : V2;
-fun subscribe_V : V;
-fun subscribe_V2 : V2;
-fun subscriber_N : N;
-fun subscript_N : N;
-fun subscription_N : N;
-fun subsection_N : N;
-fun subsequent_A : A;
-fun subserve_V2 : V2;
-fun subservience_N : N;
-fun subservient_A : A;
-fun subside_V : V;
-fun subsidence_N : N;
-fun subsidiary_A : A;
-fun subsidiary_N : N;
-fun subsidization_N : N;
-fun subsidize_V2 : V2;
-fun subsidy_N : N;
-fun subsist_V : V;
-fun subsistence_N : N;
-fun subsoil_N : N;
-fun subsonic_A : A;
-fun substance_N : N;
-fun substandard_A : A;
-fun substantial_A : A;
-fun substantiate_V2 : V2;
-fun substantiation_N : N;
-fun substantival_A : A;
-fun substantive_A : A;
-fun substantive_N : N;
-fun substation_N : N;
-fun substitute_N : N;
-fun substitute_V : V;
-fun substitute_V2 : V2;
-fun substitution_N : N;
-fun substrate_N : N;
-fun substratum_N : N;
-fun substructure_N : N;
-fun subsume_V2 : V2;
-fun subtend_V2 : V2;
-fun subterfuge_N : N;
-fun subterranean_A : A;
-fun subtitle_N : N;
-fun subtle_A : A;
-fun subtlety_N : N;
-fun subtly_Adv : Adv;
-fun subtopia_N : N;
-fun subtract_V2 : V2;
-fun subtraction_N : N;
-fun subtropical_A : A;
-fun suburb_N : N;
-fun suburban_A : A;
-fun suburbia_N : N;
-fun subvention_N : N;
-fun subversion_N : N;
-fun subversive_A : A;
-fun subversive_N : N;
-fun subvert_V2 : V2;
-fun subway_N : N;
-fun succeed_V : V;
-fun succeed_V2 : V2;
-fun success_N : N;
-fun successful_A : A;
-fun succession_N : N;
-fun successive_A : A;
-fun successor_N : N;
-fun succinct_A : A;
-fun succinctness_N : N;
-fun succour_N : N;
-fun succour_V2 : V2;
-fun succubus_N : N;
-fun succulence_N : N;
-fun succulent_A : A;
-fun succulent_N : N;
-fun succumb_V : V;
-fun such_A : A;
-fun suchlike_A : A;
-fun suchow_PN : PN;
-fun suck_N : N;
-fun suck_V : V;
-fun suck_V2 : V2;
-fun sucker_N : N;
-fun sucking_pig_N : N;
-fun suckle_V2 : V2;
-fun suckling_N : N;
-fun suction_N : N;
-fun sudan_PN : PN;
-fun sudanese_A : A;
-fun sudanese_N : N;
-fun sudbury_PN : PN;
-fun sudden_A : A;
-fun sudden_N : N;
-fun suddenness_N : N;
-fun sue_PN : PN;
-fun sue_V : V;
-fun sue_V2 : V2;
-fun suede_N : N;
-fun suet_N : N;
-fun suety_A : A;
-fun suffer_V : V;
-fun suffer_V2 : V2;
-fun sufferable_A : A;
-fun sufferance_N : N;
-fun sufferer_N : N;
-fun suffering_N : N;
-fun suffice_V : V;
-fun suffice_V2 : V2;
-fun sufficiency_N : N;
-fun sufficient_A : A;
-fun suffix_N : N;
-fun suffocate_V : V;
-fun suffocate_V2 : V2;
-fun suffocation_N : N;
-fun suffolk_PN : PN;
-fun suffragan_N : N;
-fun suffrage_N : N;
-fun suffragette_N : N;
-fun suffuse_V2 : V2;
-fun suffusion_N : N;
-fun sugar_N : N;
-fun sugar_V2 : V2;
-fun sugar_beet_N : N;
-fun sugar_candy_N : N;
-fun sugar_cane_N : N;
-fun sugar_coated_A : A;
-fun sugar_daddy_N : N;
-fun sugar_loaf_N : N;
-fun sugar_refinery_N : N;
-fun sugarlump_N : N;
-fun sugary_A : A;
-fun suggest_V2 : V2;
-fun suggestibility_N : N;
-fun suggestible_A : A;
-fun suggestion_N : N;
-fun suggestive_A : A;
-fun suicidal_A : A;
-fun suicide_N : N;
-fun suit_N : N;
-fun suit_V : V;
-fun suit_V2 : V2;
-fun suitability_N : N;
-fun suitable_A : A;
-fun suitableness_N : N;
-fun suitcase_N : N;
-fun suite_N : N;
-fun suiting_N : N;
-fun suitor_N : N;
-fun sulk_N : N;
-fun sulk_V : V;
-fun sulkily_Adv : Adv;
-fun sulkiness_N : N;
-fun sulky_A : A;
-fun sulky_N : N;
-fun sullen_A : A;
-fun sullenness_N : N;
-fun sully_V2 : V2;
-fun sulpha_N : N;
-fun sulphate_N : N;
-fun sulphide_N : N;
-fun sulphur_N : N;
-fun sulphuretted_A : A;
-fun sulphuric_A : A;
-fun sulphurous_A : A;
-fun sultan_N : N;
-fun sultana_N : N;
-fun sultanate_N : N;
-fun sultrily_Adv : Adv;
-fun sultriness_N : N;
-fun sultry_A : A;
-fun sum_N : N;
-fun sum_V : V;
-fun sum_V2 : V2;
-fun sumac_N : N;
-fun sumach_N : N;
-fun sumatra_PN : PN;
-fun sumatran_A : A;
-fun sumatran_N : N;
-fun summarize_V2 : V2;
-fun summary_A : A;
-fun summary_N : N;
-fun summation_N : N;
-fun summer_N : N;
-fun summer_V : V;
-fun summerhouse_N : N;
-fun summertime_N : N;
-fun summery_A : A;
-fun summing_up_N : N;
-fun summit_N : N;
-fun summon_V2 : V2;
-fun summons_N : N;
-fun summons_V2 : V2;
-fun sump_N : N;
-fun sumpter_N : N;
-fun sumptuary_A : A;
-fun sumptuous_A : A;
-fun sumptuousness_N : N;
-fun sun_N : N;
-fun sun_PN : PN;
-fun sun_V2 : V2;
-fun sun_drenched_A : A;
-fun sun_dried_A : A;
-fun sun_god_N : N;
-fun sun_helmet_N : N;
-fun sun_lounge_N : N;
-fun sun_parlour_N : N;
-fun sun_porch_N : N;
-fun sun_up_N : N;
-fun sun_visor_N : N;
-fun sun_worship_N : N;
-fun sunbaked_A : A;
-fun sunbathe_N : N;
-fun sunbathe_V : V;
-fun sunbeam_N : N;
-fun sunblind_N : N;
-fun sunbonnet_N : N;
-fun sunburn_N : N;
-fun sunburned_A : A;
-fun sunburnt_A : A;
-fun sunburst_N : N;
-fun sundae_N : N;
-fun sunday_N : N;
-fun sunday_PN : PN;
-fun sunder_N : N;
-fun sunder_V2 : V2;
-fun sunderland_PN : PN;
-fun sundial_N : N;
-fun sundown_N : N;
-fun sundowner_N : N;
-fun sundry_A : A;
-fun sunfish_N : N;
-fun sunflower_N : N;
-fun sunhat_N : N;
-fun sunlamp_N : N;
-fun sunless_A : A;
-fun sunlight_N : N;
-fun sunlit_A : A;
-fun sunnily_Adv : Adv;
-fun sunny_A : A;
-fun sunray_A : A;
-fun sunrise_N : N;
-fun sunroof_N : N;
-fun sunset_N : N;
-fun sunshade_N : N;
-fun sunshine_N : N;
-fun sunshine_roof_N : N;
-fun sunspot_N : N;
-fun sunstroke_N : N;
-fun suntan_N : N;
-fun suntrap_N : N;
-fun sup_N : N;
-fun sup_V : V;
-fun sup_V2 : V2;
-fun super_A : A;
-fun super_N : N;
-fun superabundance_N : N;
-fun superabundant_A : A;
-fun superannuate_V2 : V2;
-fun superannuated_A : A;
-fun superannuation_N : N;
-fun superb_A : A;
-fun supercargo_N : N;
-fun supercharged_A : A;
-fun supercharger_N : N;
-fun supercilious_A : A;
-fun superciliousness_N : N;
-fun superego_N : N;
-fun supererogation_N : N;
-fun superfatted_A : A;
-fun superficial_A : A;
-fun superficiality_N : N;
-fun superficies_N : N;
-fun superfine_A : A;
-fun superfluity_N : N;
-fun superfluous_A : A;
-fun superhuman_A : A;
-fun superimpose_V2 : V2;
-fun superintend_V : V;
-fun superintend_V2 : V2;
-fun superintendence_N : N;
-fun superintendent_N : N;
-fun superior_A : A;
-fun superior_N : N;
-fun superiority_N : N;
-fun superlative_A : A;
-fun superlative_N : N;
-fun superman_N : N;
-fun supermarket_N : N;
-fun supernal_A : A;
-fun supernatural_A : A;
-fun supernormal_A : A;
-fun supernumerary_N : N;
-fun superscription_N : N;
-fun supersede_V2 : V2;
-fun supersession_N : N;
-fun supersonic_A : A;
-fun superstition_N : N;
-fun superstitious_A : A;
-fun superstructure_N : N;
-fun supertax_N : N;
-fun supervene_V : V;
-fun supervise_V : V;
-fun supervise_V2 : V2;
-fun supervision_N : N;
-fun supervisor_N : N;
-fun supervisory_A : A;
-fun supine_A : A;
-fun supper_N : N;
-fun supperless_A : A;
-fun supplant_V2 : V2;
-fun supplanter_N : N;
-fun supple_A : A;
-fun supplement_N : N;
-fun supplement_V2 : V2;
-fun supplementary_A : A;
-fun suppleness_N : N;
-fun suppliant_A : A;
-fun suppliant_N : N;
-fun supplicant_N : N;
-fun supplicate_V : V;
-fun supplicate_V2 : V2;
-fun supplication_N : N;
-fun supplier_N : N;
-fun supply_N : N;
-fun supply_V2 : V2;
-fun support_N : N;
-fun support_V2 : V2;
-fun supportable_A : A;
-fun supporter_N : N;
-fun suppose_V2 : V2;
-fun supposed_A : A;
-fun supposition_N : N;
-fun suppository_N : N;
-fun suppress_V2 : V2;
-fun suppression_N : N;
-fun suppressive_A : A;
-fun suppressor_N : N;
-fun suppurate_V : V;
-fun suppuration_N : N;
-fun supra_Adv : Adv;
-fun supranational_A : A;
-fun supremacy_N : N;
-fun supreme_A : A;
-fun supt_PN : PN;
-fun surabaja_PN : PN;
-fun surcharge_N : N;
-fun surcharge_V2 : V2;
-fun surd_N : N;
-fun sure_A : A;
-fun sure_Adv : Adv;
-fun sure_footed_A : A;
-fun sureness_N : N;
-fun surety_N : N;
-fun surf_N : N;
-fun surface_N : N;
-fun surface_V : V;
-fun surface_V2 : V2;
-fun surface_to_air_A : A;
-fun surfboard_N : N;
-fun surfboat_N : N;
-fun surfeit_N : N;
-fun surfeit_V2 : V2;
-fun surfing_N : N;
-fun surfriding_N : N;
-fun surge_N : N;
-fun surge_V : V;
-fun surgeon_N : N;
-fun surgery_N : N;
-fun surgical_A : A;
-fun surlily_Adv : Adv;
-fun surliness_N : N;
-fun surly_A : A;
-fun surmise_N : N;
-fun surmise_V : V;
-fun surmise_V2 : V2;
-fun surmount_V2 : V2;
-fun surmountable_A : A;
-fun surname_N : N;
-fun surpass_V2 : V2;
-fun surpassing_A : A;
-fun surplice_N : N;
-fun surpliced_A : A;
-fun surplus_N : N;
-fun surprise_N : N;
-fun surprise_V2 : V2;
-fun surprised_A : A;
-fun surprising_A : A;
-fun surrealism_N : N;
-fun surrealist_N : N;
-fun surrealistic_A : A;
-fun surrender_N : N;
-fun surrender_V : V;
-fun surrender_V2 : V2;
-fun surreptitious_A : A;
-fun surrey_PN : PN;
-fun surrogate_A : A;
-fun surrogate_N : N;
-fun surround_N : N;
-fun surround_V2 : V2;
-fun surrounding_A : A;
-fun surtax_N : N;
-fun surtax_V2 : V2;
-fun surveillance_N : N;
-fun survey_N : N;
-fun survey_V2 : V2;
-fun surveying_N : N;
-fun surveyor_N : N;
-fun survival_N : N;
-fun survive_V : V;
-fun survive_V2 : V2;
-fun survivor_N : N;
-fun susan_PN : PN;
-fun susanna_PN : PN;
-fun susceptibility_N : N;
-fun susceptible_A : A;
-fun susie_PN : PN;
-fun suspect_A : A;
-fun suspect_N : N;
-fun suspect_V2 : V2;
-fun suspend_V2 : V2;
-fun suspender_N : N;
-fun suspense_N : N;
-fun suspension_N : N;
-fun suspicion_N : N;
-fun suspicious_A : A;
-fun suss_V2 : V2;
-fun sussex_PN : PN;
-fun sustain_V2 : V2;
-fun sustenance_N : N;
-fun suttee_N : N;
-fun sutton_PN : PN;
-fun sutton_at_hone_PN : PN;
-fun sutton_coldfield_PN : PN;
-fun sutton_in_ashfield_PN : PN;
-fun suture_N : N;
-fun suzanne_PN : PN;
-fun suzerain_N : N;
-fun suzerainty_N : N;
-fun svelte_A : A;
-fun sverdlovsk_PN : PN;
-fun swab_N : N;
-fun swab_V2 : V2;
-fun swaddle_V2 : V2;
-fun swadlincote_PN : PN;
-fun swag_N : N;
-fun swagger_A : A;
-fun swagger_N : N;
-fun swagger_V : V;
-fun swaggerer_N : N;
-fun swahili_N : N;
-fun swain_N : N;
-fun swallow_N : N;
-fun swallow_V : V;
-fun swallow_V2 : V2;
-fun swallow_tailed_A : A;
-fun swami_N : N;
-fun swamp_N : N;
-fun swamp_V2 : V2;
-fun swampy_A : A;
-fun swan's_down_N : N;
-fun swan_N : N;
-fun swan_V : V;
-fun swan_song_N : N;
-fun swanage_PN : PN;
-fun swank_N : N;
-fun swank_V : V;
-fun swanky_A : A;
-fun swanley_PN : PN;
-fun swansea_PN : PN;
-fun swap_N : N;
-fun swap_V : V;
-fun swap_V2 : V2;
-fun sward_N : N;
-fun swarm_N : N;
-fun swarm_V : V;
-fun swarm_V2 : V2;
-fun swarthy_A : A;
-fun swashbuckler_N : N;
-fun swashbuckling_A : A;
-fun swashbuckling_N : N;
-fun swastika_N : N;
-fun swat_N : N;
-fun swat_V2 : V2;
-fun swath_N : N;
-fun swathe_N : N;
-fun swathe_V2 : V2;
-fun sway_N : N;
-fun sway_V : V;
-fun sway_V2 : V2;
-fun swazi_A : A;
-fun swazi_N : N;
-fun swaziland_PN : PN;
-fun swear_V : V;
-fun swear_V2 : V2;
-fun swearer_N : N;
-fun swearing_N : N;
-fun swearword_N : N;
-fun sweat_N : N;
-fun sweat_V : V;
-fun sweat_V2 : V2;
-fun sweatband_N : N;
-fun sweater_N : N;
-fun sweatshop_N : N;
-fun sweaty_A : A;
-fun swede_A : A;
-fun swede_N : N;
-fun sweden_PN : PN;
-fun swedish_A : A;
-fun swedish_N : N;
-fun sweep_N : N;
-fun sweep_V : V;
-fun sweep_V2 : V2;
-fun sweeper_N : N;
-fun sweeping_A : A;
-fun sweeping_N : N;
-fun sweet_A : A;
-fun sweet_N : N;
-fun sweet_scented_A : A;
-fun sweetbread_N : N;
-fun sweetbriar_N : N;
-fun sweetbrier_N : N;
-fun sweeten_V : V;
-fun sweeten_V2 : V2;
-fun sweetening_N : N;
-fun sweetheart_N : N;
-fun sweetie_N : N;
-fun sweetish_A : A;
-fun sweetmeat_N : N;
-fun sweetness_N : N;
-fun swell_A : A;
-fun swell_N : N;
-fun swell_V : V;
-fun swell_V2 : V2;
-fun swelling_N : N;
-fun swelter_V : V;
-fun sweptback_A : A;
-fun swerve_N : N;
-fun swerve_V : V;
-fun swerve_V2 : V2;
-fun swift_A : A;
-fun swift_N : N;
-fun swiftness_N : N;
-fun swig_N : N;
-fun swig_V : V;
-fun swig_V2 : V2;
-fun swill_N : N;
-fun swill_V : V;
-fun swill_V2 : V2;
-fun swim_N : N;
-fun swim_V : V;
-fun swim_V2 : V2;
-fun swimmer_N : N;
-fun swimming_N : N;
-fun swimming_bath_N : N;
-fun swimming_costume_N : N;
-fun swimming_pool_N : N;
-fun swimmingly_Adv : Adv;
-fun swimsuit_N : N;
-fun swindle_N : N;
-fun swindle_V : V;
-fun swindle_V2 : V2;
-fun swindler_N : N;
-fun swindon_PN : PN;
-fun swine_N : N;
-fun swineherd_N : N;
-fun swing_N : N;
-fun swing_V : V;
-fun swing_V2 : V2;
-fun swinge_V2 : V2;
-fun swingeing_A : A;
-fun swinging_A : A;
-fun swinish_A : A;
-fun swinton_PN : PN;
-fun swipe_N : N;
-fun swipe_V2 : V2;
-fun swirl_N : N;
-fun swirl_V : V;
-fun swirl_V2 : V2;
-fun swish_A : A;
-fun swish_N : N;
-fun swish_V : V;
-fun swish_V2 : V2;
-fun swiss_A : A;
-fun swiss_N : N;
-fun switch_N : N;
-fun switch_V : V;
-fun switch_V2 : V2;
-fun switchboard_N : N;
-fun switchman_N : N;
-fun switzerland_PN : PN;
-fun swivel_N : N;
-fun swivel_V : V;
-fun swivel_V2 : V2;
-fun swiz_N : N;
-fun swizzle_N : N;
-fun swizzle_stick_N : N;
-fun swob_N : N;
-fun swob_V2 : V2;
-fun swollen_headed_A : A;
-fun swoon_N : N;
-fun swoon_V : V;
-fun swoop_N : N;
-fun swoop_V : V;
-fun swoop_V2 : V2;
-fun swop_N : N;
-fun swop_V : V;
-fun swop_V2 : V2;
-fun sword_N : N;
-fun sword_cane_N : N;
-fun sword_cut_N : N;
-fun sword_dance_N : N;
-fun swordfish_N : N;
-fun swordplay_N : N;
-fun swordsman_N : N;
-fun swordsmanship_N : N;
-fun swordstick_N : N;
-fun sworn_A : A;
-fun swot_N : N;
-fun swot_V : V;
-fun swot_V2 : V2;
-fun sybarite_N : N;
-fun sybaritic_A : A;
-fun sycamore_N : N;
-fun sycophancy_N : N;
-fun sycophant_N : N;
-fun sycophantic_A : A;
-fun sydney_PN : PN;
-fun syllabary_N : N;
-fun syllabic_A : A;
-fun syllabicate_V2 : V2;
-fun syllabication_N : N;
-fun syllabification_N : N;
-fun syllabify_V2 : V2;
-fun syllabize_V2 : V2;
-fun syllable_N : N;
-fun syllabled_A : A;
-fun syllabus_N : N;
-fun syllogism_N : N;
-fun syllogistic_A : A;
-fun sylph_N : N;
-fun sylph_like_A : A;
-fun sylvan_A : A;
-fun sylvia_PN : PN;
-fun symbiosis_N : N;
-fun symbol_N : N;
-fun symbolic_A : A;
-fun symbolical_A : A;
-fun symbolism_N : N;
-fun symbolization_N : N;
-fun symbolize_V2 : V2;
-fun symmetric_A : A;
-fun symmetrical_A : A;
-fun symmetry_N : N;
-fun sympathetic_A : A;
-fun sympathetically_Adv : Adv;
-fun sympathize_V : V;
-fun sympathizer_N : N;
-fun sympathy_N : N;
-fun symphonic_A : A;
-fun symphony_N : N;
-fun symposium_N : N;
-fun symptom_N : N;
-fun symptomatic_A : A;
-fun symptomatically_Adv : Adv;
-fun symptomless_A : A;
-fun synagogue_N : N;
-fun synchroflash_N : N;
-fun synchromesh_N : N;
-fun synchronization_N : N;
-fun synchronize_V : V;
-fun synchronize_V2 : V2;
-fun synchronous_A : A;
-fun synchrony_N : N;
-fun synchrotron_N : N;
-fun syncopate_V2 : V2;
-fun syncopation_N : N;
-fun syncope_N : N;
-fun syndic_N : N;
-fun syndicalism_N : N;
-fun syndicalist_N : N;
-fun syndicate_N : N;
-fun syndicate_V2 : V2;
-fun syndication_N : N;
-fun syndrome_N : N;
-fun synod_N : N;
-fun synonym_N : N;
-fun synonymous_A : A;
-fun synopsis_N : N;
-fun synoptic_A : A;
-fun synoptically_Adv : Adv;
-fun syntactic_A : A;
-fun syntactically_Adv : Adv;
-fun syntax_N : N;
-fun synthesis_N : N;
-fun synthesize_V2 : V2;
-fun synthetic_A : A;
-fun synthetic_N : N;
-fun synthetically_Adv : Adv;
-fun syphilis_N : N;
-fun syphilitic_A : A;
-fun syphilitic_N : N;
-fun syphon_N : N;
-fun syphon_V : V;
-fun syphon_V2 : V2;
-fun syracuse_PN : PN;
-fun syria_PN : PN;
-fun syrian_A : A;
-fun syrian_N : N;
-fun syringa_N : N;
-fun syringe_N : N;
-fun syringe_V2 : V2;
-fun syrup_N : N;
-fun syrupy_A : A;
-fun system_N : N;
-fun systematic_A : A;
-fun systematically_Adv : Adv;
-fun systematization_N : N;
-fun systematize_V2 : V2;
-fun syston_PN : PN;
-fun seance_N : N;
-fun t_junction_N : N;
-fun t_shirt_N : N;
-fun t_square_N : N;
-fun tab_N : N;
-fun tabard_N : N;
-fun tabby_A : A;
-fun tabby_N : N;
-fun tabby_cat_N : N;
-fun tabernacle_N : N;
-fun table_N : N;
-fun table_V2 : V2;
-fun table_d'hote_A : A;
-fun table_d'hote_Adv : Adv;
-fun table_knife_N : N;
-fun table_lifting_N : N;
-fun table_linen_N : N;
-fun table_rapping_N : N;
-fun table_talk_N : N;
-fun table_turning_N : N;
-fun tableau_N : N;
-fun tableau_vivant_N : N;
-fun tablecloth_N : N;
-fun tablemat_N : N;
-fun tablespoon_N : N;
-fun tablespoonful_N : N;
-fun tablet_N : N;
-fun tableware_N : N;
-fun tabloid_N : N;
-fun taboo_A : A;
-fun taboo_N : N;
-fun taboo_V2 : V2;
-fun tabor_N : N;
-fun tabular_A : A;
-fun tabulate_V2 : V2;
-fun tabulation_N : N;
-fun tabulator_N : N;
-fun tachograph_N : N;
-fun tacit_A : A;
-fun taciturn_A : A;
-fun taciturnity_N : N;
-fun tack_N : N;
-fun tack_V : V;
-fun tack_V2 : V2;
-fun tackle_N : N;
-fun tackle_V : V;
-fun tackle_V2 : V2;
-fun tacky_A : A;
-fun tact_N : N;
-fun tactful_A : A;
-fun tactic_N : N;
-fun tactical_A : A;
-fun tactician_N : N;
-fun tactile_A : A;
-fun tactless_A : A;
-fun tactlessness_N : N;
-fun tactual_A : A;
-fun tadley_PN : PN;
-fun tadpole_N : N;
-fun taegu_PN : PN;
-fun taffeta_N : N;
-fun taffrail_N : N;
-fun taffy_N : N;
-fun tag_N : N;
-fun tag_V : V;
-fun tag_V2 : V2;
-fun tahiti_PN : PN;
-fun tahitian_A : A;
-fun tahitian_N : N;
-fun tail_N : N;
-fun tail_V : V;
-fun tail_V2 : V2;
-fun tail_coat_N : N;
-fun tail_end_N : N;
-fun tail_light_N : N;
-fun tailboard_N : N;
-fun tailed_A : A;
-fun tailgate_N : N;
-fun tailless_A : A;
-fun tailor_N : N;
-fun tailor_V2 : V2;
-fun tailor_made_A : A;
-fun tailpiece_N : N;
-fun tailplane_N : N;
-fun tailspin_N : N;
-fun taint_N : N;
-fun taint_V : V;
-fun taint_V2 : V2;
-fun taintless_A : A;
-fun taipei_PN : PN;
-fun taiwan_PN : PN;
-fun taiwanese_A : A;
-fun taiwanese_N : N;
-fun taiyuan_PN : PN;
-fun take_N : N;
-fun take_V : V;
-fun take_V2 : V2;
-fun take_home_A : A;
-fun take_off_N : N;
-fun take_up_N : N;
-fun takeaway_A : A;
-fun takeover_N : N;
-fun taker_N : N;
-fun taking_A : A;
-fun talc_N : N;
-fun talcum_N : N;
-fun tale_N : N;
-fun tale_bearer_N : N;
-fun tale_teller_N : N;
-fun talent_N : N;
-fun talented_A : A;
-fun talisman_N : N;
-fun talk_N : N;
-fun talk_V : V;
-fun talk_V2 : V2;
-fun talkative_A : A;
-fun talker_N : N;
-fun talkie_N : N;
-fun talking_point_N : N;
-fun talking_to_N : N;
-fun tall_A : A;
-fun tallboy_N : N;
-fun tallish_A : A;
-fun tallow_N : N;
-fun tally_N : N;
-fun tally_V : V;
-fun tally_clerk_N : N;
-fun tallyman_N : N;
-fun talmud_N : N;
-fun talon_N : N;
-fun talus_N : N;
-fun tam_o'_shanter_N : N;
-fun tamable_A : A;
-fun tamale_N : N;
-fun tamarind_N : N;
-fun tamarisk_N : N;
-fun tambour_N : N;
-fun tambourine_N : N;
-fun tame_A : A;
-fun tame_V2 : V2;
-fun tameness_N : N;
-fun tamer_N : N;
-fun tamil_A : A;
-fun tamil_N : N;
-fun tammany_N : N;
-fun tammy_N : N;
-fun tamp_V2 : V2;
-fun tamper_V : V;
-fun tampere_PN : PN;
-fun tamworth_PN : PN;
-fun tan_A : A;
-fun tan_N : N;
-fun tan_V : V;
-fun tan_V2 : V2;
-fun tandem_Adv : Adv;
-fun tandem_N : N;
-fun tang_N : N;
-fun tangent_N : N;
-fun tangerine_A : A;
-fun tangerine_N : N;
-fun tangibility_N : N;
-fun tangible_A : A;
-fun tangle_N : N;
-fun tangle_V : V;
-fun tangle_V2 : V2;
-fun tango_N : N;
-fun tangshan_PN : PN;
-fun tangy_A : A;
-fun tank_N : N;
-fun tank_V : V;
-fun tank_car_N : N;
-fun tankard_N : N;
-fun tanker_N : N;
-fun tanner_N : N;
-fun tannery_N : N;
-fun tannic_A : A;
-fun tannin_N : N;
-fun tannoy_N : N;
-fun tansy_N : N;
-fun tantalize_V2 : V2;
-fun tantamount_A : A;
-fun tantrum_N : N;
-fun tanzania_PN : PN;
-fun tanzanian_A : A;
-fun tanzanian_N : N;
-fun tap_N : N;
-fun tap_V : V;
-fun tap_V2 : V2;
-fun tap_dancing_N : N;
-fun tape_N : N;
-fun tape_V2 : V2;
-fun tape_measure_N : N;
-fun tape_recorder_N : N;
-fun taper_N : N;
-fun taper_V : V;
-fun taper_V2 : V2;
-fun tapestried_A : A;
-fun tapestry_N : N;
-fun tapeworm_N : N;
-fun tapioca_N : N;
-fun tapir_N : N;
-fun taproom_N : N;
-fun taproot_N : N;
-fun tapster_N : N;
-fun tar_N : N;
-fun tar_V2 : V2;
-fun tar_macadam_N : N;
-fun taradiddle_N : N;
-fun taranaki_PN : PN;
-fun tarantella_N : N;
-fun tarantelle_N : N;
-fun taranto_PN : PN;
-fun tarantula_N : N;
-fun tarboosh_N : N;
-fun tardily_Adv : Adv;
-fun tardiness_N : N;
-fun tardy_A : A;
-fun tare_N : N;
-fun target_N : N;
-fun tariff_N : N;
-fun tarmac_N : N;
-fun tarmac_V2 : V2;
-fun tarn_N : N;
-fun tarnish_N : N;
-fun tarnish_V : V;
-fun tarnish_V2 : V2;
-fun taro_N : N;
-fun tarpaulin_N : N;
-fun tarpon_N : N;
-fun tarradiddle_N : N;
-fun tarragon_N : N;
-fun tarrasa_PN : PN;
-fun tarry_A : A;
-fun tarry_V : V;
-fun tarsal_A : A;
-fun tarsal_N : N;
-fun tarsus_N : N;
-fun tart_A : A;
-fun tart_N : N;
-fun tart_V2 : V2;
-fun tartan_N : N;
-fun tartar_N : N;
-fun tartaric_A : A;
-fun tartness_N : N;
-fun tashkent_PN : PN;
-fun task_N : N;
-fun task_V2 : V2;
-fun task_force_N : N;
-fun taskmaster_N : N;
-fun tasmania_PN : PN;
-fun tassel_N : N;
-fun tasseled_A : A;
-fun tasselled_A : A;
-fun taste_N : N;
-fun taste_V : V;
-fun taste_V2 : V2;
-fun tasteful_A : A;
-fun tasteless_A : A;
-fun taster_N : N;
-fun tastily_Adv : Adv;
-fun tasty_A : A;
-fun tat_N : N;
-fun tat_V : V;
-fun tat_V2 : V2;
-fun tatter_N : N;
-fun tatterdemalion_N : N;
-fun tattered_A : A;
-fun tattily_Adv : Adv;
-fun tatting_N : N;
-fun tattle_N : N;
-fun tattle_V : V;
-fun tattle_V2 : V2;
-fun tattler_N : N;
-fun tattoo_N : N;
-fun tattoo_V2 : V2;
-fun tatty_A : A;
-fun taunt_N : N;
-fun taunt_V2 : V2;
-fun tauntingly_Adv : Adv;
-fun taunton_PN : PN;
-fun taurus_PN : PN;
-fun taut_A : A;
-fun tautness_N : N;
-fun tautological_A : A;
-fun tautology_N : N;
-fun taverham_PN : PN;
-fun tavern_N : N;
-fun tavistock_PN : PN;
-fun tawdrily_Adv : Adv;
-fun tawdriness_N : N;
-fun tawdry_A : A;
-fun tawny_A : A;
-fun tawse_N : N;
-fun tax_N : N;
-fun tax_V2 : V2;
-fun tax_collector_N : N;
-fun tax_free_A : A;
-fun taxability_N : N;
-fun taxable_A : A;
-fun taxation_N : N;
-fun taxi_N : N;
-fun taxi_V : V;
-fun taxi_V2 : V2;
-fun taxicab_N : N;
-fun taxidermist_N : N;
-fun taxidermy_N : N;
-fun taximeter_N : N;
-fun taxonomy_N : N;
-fun taxpayer_N : N;
-fun tayside_PN : PN;
-fun tb_N : N;
-fun tbilisi_PN : PN;
-fun te_deum_N : N;
-fun tea_N : N;
-fun tea_bag_N : N;
-fun tea_break_N : N;
-fun tea_caddy_N : N;
-fun tea_chest_N : N;
-fun tea_cloth_N : N;
-fun tea_cosy_N : N;
-fun tea_garden_N : N;
-fun tea_kettle_N : N;
-fun tea_leaf_N : N;
-fun tea_party_N : N;
-fun tea_service_N : N;
-fun tea_set_N : N;
-fun tea_strainer_N : N;
-fun tea_table_N : N;
-fun tea_time_N : N;
-fun tea_towel_N : N;
-fun tea_tray_N : N;
-fun tea_trolley_N : N;
-fun tea_urn_N : N;
-fun tea_wagon_N : N;
-fun teacake_N : N;
-fun teach_V : V;
-fun teach_V2 : V2;
-fun teach_in_N : N;
-fun teachable_A : A;
-fun teacher_N : N;
-fun teaching_N : N;
-fun teacup_N : N;
-fun teahouse_N : N;
-fun teak_N : N;
-fun teal_N : N;
-fun team_N : N;
-fun team_V : V;
-fun teamster_N : N;
-fun teamwork_N : N;
-fun teapot_N : N;
-fun tear_N : N;
-fun tear_V : V;
-fun tear_V2 : V2;
-fun tear_drop_N : N;
-fun tear_gas_N : N;
-fun tearaway_A : A;
-fun tearaway_N : N;
-fun tearful_A : A;
-fun tearing_A : A;
-fun tearing_N : N;
-fun tearless_A : A;
-fun tearoom_N : N;
-fun tease_N : N;
-fun tease_V2 : V2;
-fun teasel_N : N;
-fun teaser_N : N;
-fun teashop_N : N;
-fun teasingly_Adv : Adv;
-fun teaspoon_N : N;
-fun teaspoonful_N : N;
-fun teat_N : N;
-fun teazel_N : N;
-fun teazle_N : N;
-fun tec_N : N;
-fun tech_N : N;
-fun technical_A : A;
-fun technicality_N : N;
-fun technician_N : N;
-fun technicolor_N : N;
-fun technique_N : N;
-fun technocracy_N : N;
-fun technocrat_N : N;
-fun technological_A : A;
-fun technologist_N : N;
-fun technology_N : N;
-fun techy_A : A;
-fun ted_N : N;
-fun ted_PN : PN;
-fun teddy_N : N;
-fun teddy_PN : PN;
-fun teddy_boy_N : N;
-fun tedious_A : A;
-fun tediousness_N : N;
-fun tedium_N : N;
-fun tee_N : N;
-fun tee_V : V;
-fun tee_V2 : V2;
-fun tee_shirt_N : N;
-fun teem_V : V;
-fun teenage_A : A;
-fun teenager_N : N;
-fun teeny_A : A;
-fun teesside_PN : PN;
-fun teeter_V : V;
-fun teethe_V : V;
-fun teetotal_A : A;
-fun teetotaller_N : N;
-fun teetotum_N : N;
-fun teg_N : N;
-fun tegument_N : N;
-fun teheran_PN : PN;
-fun teignmouth_PN : PN;
-fun tel_PN : PN;
-fun tel_aviv_PN : PN;
-fun telecast_N : N;
-fun telecast_V2 : V2;
-fun telecommunication_N : N;
-fun telegram_N : N;
-fun telegraph_N : N;
-fun telegraph_V : V;
-fun telegraph_V2 : V2;
-fun telegraph_line_N : N;
-fun telegraph_pole_N : N;
-fun telegraph_post_N : N;
-fun telegraph_wire_N : N;
-fun telegrapher_N : N;
-fun telegraphese_N : N;
-fun telegraphic_A : A;
-fun telegraphically_Adv : Adv;
-fun telegraphist_N : N;
-fun telegraphy_N : N;
-fun telemetry_N : N;
-fun teleological_A : A;
-fun teleologist_N : N;
-fun teleology_N : N;
-fun telepathic_A : A;
-fun telepathist_N : N;
-fun telepathy_N : N;
-fun telephone_N : N;
-fun telephone_V : V;
-fun telephone_V2 : V2;
-fun telephonic_A : A;
-fun telephonist_N : N;
-fun telephony_N : N;
-fun telephoto_N : N;
-fun telephotograph_N : N;
-fun telephotography_N : N;
-fun teleprinter_N : N;
-fun teleprompter_N : N;
-fun telescope_N : N;
-fun telescope_V : V;
-fun telescope_V2 : V2;
-fun telescopic_A : A;
-fun telescopically_Adv : Adv;
-fun teletypewriter_N : N;
-fun televise_V2 : V2;
-fun television_N : N;
-fun telex_N : N;
-fun telfer_N : N;
-fun telford_PN : PN;
-fun tell_V : V;
-fun tell_V2 : V2;
-fun teller_N : N;
-fun telling_A : A;
-fun telltale_N : N;
-fun telly_N : N;
-fun telpher_N : N;
-fun telstar_PN : PN;
-fun temerity_N : N;
-fun temp_N : N;
-fun temper_N : N;
-fun temper_V : V;
-fun temper_V2 : V2;
-fun tempera_N : N;
-fun temperament_N : N;
-fun temperamental_A : A;
-fun temperance_N : N;
-fun temperate_A : A;
-fun temperateness_N : N;
-fun temperature_N : N;
-fun tempered_A : A;
-fun tempest_N : N;
-fun tempest_swept_A : A;
-fun tempest_tossed_A : A;
-fun tempestuous_A : A;
-fun template_N : N;
-fun temple_N : N;
-fun templet_N : N;
-fun tempo_N : N;
-fun temporal_A : A;
-fun temporality_N : N;
-fun temporalty_N : N;
-fun temporariness_N : N;
-fun temporary_A : A;
-fun temporize_V : V;
-fun tempt_V2 : V2;
-fun temptation_N : N;
-fun tempter_N : N;
-fun temptingly_Adv : Adv;
-fun temptress_N : N;
-fun tenability_N : N;
-fun tenable_A : A;
-fun tenacious_A : A;
-fun tenaciousness_N : N;
-fun tenacity_N : N;
-fun tenancy_N : N;
-fun tenant_N : N;
-fun tenant_V2 : V2;
-fun tenantry_N : N;
-fun tenby_PN : PN;
-fun tench_N : N;
-fun tend_V : V;
-fun tend_V2 : V2;
-fun tendency_N : N;
-fun tendentious_A : A;
-fun tendentiousness_N : N;
-fun tender_A : A;
-fun tender_N : N;
-fun tender_V : V;
-fun tender_V2 : V2;
-fun tenderfoot_N : N;
-fun tenderhearted_A : A;
-fun tenderloin_N : N;
-fun tenderness_N : N;
-fun tendon_N : N;
-fun tendril_N : N;
-fun tenement_N : N;
-fun tenement_house_N : N;
-fun tenet_N : N;
-fun tenfold_Adv : Adv;
-fun tenner_N : N;
-fun tennessee_PN : PN;
-fun tennis_N : N;
-fun tennis_court_N : N;
-fun tennis_elbow_N : N;
-fun tenon_N : N;
-fun tenor_N : N;
-fun tenpence_N : N;
-fun tenpin_N : N;
-fun tense_A : A;
-fun tense_N : N;
-fun tense_V : V;
-fun tense_V2 : V2;
-fun tenseness_N : N;
-fun tensile_A : A;
-fun tension_N : N;
-fun tensity_N : N;
-fun tent_N : N;
-fun tent_peg_N : N;
-fun tentacle_N : N;
-fun tentative_A : A;
-fun tenterden_PN : PN;
-fun tenth_A : A;
-fun tenth_N : N;
-fun tenuity_N : N;
-fun tenuous_A : A;
-fun tenure_N : N;
-fun tepee_N : N;
-fun tepid_A : A;
-fun tepidity_N : N;
-fun tepidness_N : N;
-fun tercentenary_N : N;
-fun tercentennial_N : N;
-fun terence_PN : PN;
-fun teresa_PN : PN;
-fun tergiversate_V : V;
-fun tergiversation_N : N;
-fun term_N : N;
-fun term_V2 : V2;
-fun termagant_N : N;
-fun termi_PN : PN;
-fun terminable_A : A;
-fun terminal_A : A;
-fun terminal_N : N;
-fun terminate_V : V;
-fun terminate_V2 : V2;
-fun termination_N : N;
-fun terminological_A : A;
-fun terminology_N : N;
-fun terminus_N : N;
-fun termite_N : N;
-fun tern_N : N;
-fun terpsichorean_A : A;
-fun terr_PN : PN;
-fun terra_cotta_N : N;
-fun terra_firma_N : N;
-fun terra_incognita_N : N;
-fun terrace_N : N;
-fun terrace_V2 : V2;
-fun terrain_N : N;
-fun terrapin_N : N;
-fun terrestrial_A : A;
-fun terrible_A : A;
-fun terrier_N : N;
-fun terrific_A : A;
-fun terrifically_Adv : Adv;
-fun terrify_V2 : V2;
-fun territorial_A : A;
-fun territorial_N : N;
-fun territory_N : N;
-fun terror_N : N;
-fun terror_stricken_A : A;
-fun terror_struck_A : A;
-fun terrorism_N : N;
-fun terrorist_N : N;
-fun terrorize_V2 : V2;
-fun terry_PN : PN;
-fun terse_A : A;
-fun terseness_N : N;
-fun tertian_A : A;
-fun tertiary_A : A;
-fun terylene_N : N;
-fun tess_PN : PN;
-fun tessa_PN : PN;
-fun tessellated_A : A;
-fun test_N : N;
-fun test_V2 : V2;
-fun test_drive_N : N;
-fun test_drive_V2 : V2;
-fun test_tube_N : N;
-fun testament_N : N;
-fun testamentary_A : A;
-fun testate_A : A;
-fun testate_N : N;
-fun testator_N : N;
-fun testatrix_N : N;
-fun testbed_N : N;
-fun testicle_N : N;
-fun testify_V : V;
-fun testify_V2 : V2;
-fun testily_Adv : Adv;
-fun testimonial_N : N;
-fun testimony_N : N;
-fun testiness_N : N;
-fun testis_N : N;
-fun testy_A : A;
-fun tetanus_N : N;
-fun tetchily_Adv : Adv;
-fun tetchiness_N : N;
-fun tetchy_A : A;
-fun tether_N : N;
-fun tether_V2 : V2;
-fun teuton_N : N;
-fun teutonic_A : A;
-fun tewkesbury_PN : PN;
-fun texan_A : A;
-fun texan_N : N;
-fun texas_PN : PN;
-fun text_N : N;
-fun textbook_N : N;
-fun textile_A : A;
-fun textile_N : N;
-fun textual_A : A;
-fun texture_N : N;
-fun textured_A : A;
-fun thai_A : A;
-fun thai_N : N;
-fun thailand_PN : PN;
-fun thalidomide_N : N;
-fun thame_PN : PN;
-fun thane_N : N;
-fun thank_V2 : V2;
-fun thank_offering_N : N;
-fun thankful_A : A;
-fun thankfulness_N : N;
-fun thankless_A : A;
-fun thanksgiving_N : N;
-fun thatch_N : N;
-fun thatch_V2 : V2;
-fun thatcham_PN : PN;
-fun thatcher_N : N;
-fun thaw_N : N;
-fun thaw_V : V;
-fun thaw_V2 : V2;
-fun theatre_N : N;
-fun theatregoer_N : N;
-fun theatrical_A : A;
-fun theatrical_N : N;
-fun theft_N : N;
-fun theism_N : N;
-fun theist_N : N;
-fun theistic_A : A;
-fun theistical_A : A;
-fun thematic_A : A;
-fun theme_N : N;
-fun then_Adv : Adv;
-fun thence_Adv : Adv;
-fun thenceforth_Adv : Adv;
-fun thenceforward_Adv : Adv;
-fun theo_PN : PN;
-fun theocracy_N : N;
-fun theocratic_A : A;
-fun theodolite_N : N;
-fun theodore_PN : PN;
-fun theologian_N : N;
-fun theological_A : A;
-fun theology_N : N;
-fun theorem_N : N;
-fun theoretic_A : A;
-fun theoretical_A : A;
-fun theoretician_N : N;
-fun theorist_N : N;
-fun theorize_V : V;
-fun theory_N : N;
-fun theosophical_A : A;
-fun theosophist_N : N;
-fun theosophy_N : N;
-fun therapeutic_A : A;
-fun therapeutical_A : A;
-fun therapeutics_N : N;
-fun therapist_N : N;
-fun therapy_N : N;
-fun thereabout_Adv : Adv;
-fun thereabouts_Adv : Adv;
-fun thereafter_Adv : Adv;
-fun thereby_Adv : Adv;
-fun therefore_Adv : Adv;
-fun therefrom_Adv : Adv;
-fun therein_Adv : Adv;
-fun thereinafter_Adv : Adv;
-fun thereof_Adv : Adv;
-fun thereon_Adv : Adv;
-fun theresa_PN : PN;
-fun thereto_Adv : Adv;
-fun thereunder_Adv : Adv;
-fun thereupon_Adv : Adv;
-fun therewith_Adv : Adv;
-fun therewithal_Adv : Adv;
-fun therm_N : N;
-fun thermal_A : A;
-fun thermal_N : N;
-fun thermionic_A : A;
-fun thermodynamics_N : N;
-fun thermometer_N : N;
-fun thermonuclear_A : A;
-fun thermoplastic_A : A;
-fun thermoplastic_N : N;
-fun thermos_N : N;
-fun thermosetting_A : A;
-fun thermostat_N : N;
-fun thermostatic_A : A;
-fun thermostatically_Adv : Adv;
-fun thesaurus_N : N;
-fun thesis_N : N;
-fun thespian_A : A;
-fun thespian_N : N;
-fun thessaloniki_PN : PN;
-fun thetford_PN : PN;
-fun thick_A : A;
-fun thick_Adv : Adv;
-fun thick_N : N;
-fun thick_headed_A : A;
-fun thick_set_A : A;
-fun thick_skinned_A : A;
-fun thicken_V : V;
-fun thicken_V2 : V2;
-fun thickening_N : N;
-fun thicket_N : N;
-fun thickness_N : N;
-fun thief_N : N;
-fun thieve_V : V;
-fun thieve_V2 : V2;
-fun thievery_N : N;
-fun thievish_A : A;
-fun thigh_N : N;
-fun thighbone_N : N;
-fun thimble_N : N;
-fun thimbleful_N : N;
-fun thin_A : A;
-fun thin_Adv : Adv;
-fun thin_V : V;
-fun thin_V2 : V2;
-fun thin_skinned_A : A;
-fun thine_A : A;
-fun thing_N : N;
-fun thingmabob_N : N;
-fun thingmajig_N : N;
-fun thingumabob_N : N;
-fun thingumajig_N : N;
-fun thingummy_N : N;
-fun think_N : N;
-fun think_V : V;
-fun think_V2 : V2;
-fun think_tank_N : N;
-fun thinkable_A : A;
-fun thinker_N : N;
-fun thinking_A : A;
-fun thinking_N : N;
-fun thinness_N : N;
-fun thionville_PN : PN;
-fun third_rate_A : A;
-fun third_rater_N : N;
-fun thirsk_PN : PN;
-fun thirst_N : N;
-fun thirst_V2 : V2;
-fun thirstily_Adv : Adv;
-fun thirsty_A : A;
-fun thistle_N : N;
-fun thistledown_N : N;
-fun thither_Adv : Adv;
-fun tho'_Adv : Adv;
-fun thole_N : N;
-fun tholepin_N : N;
-fun thomas_PN : PN;
-fun thong_N : N;
-fun thorax_N : N;
-fun thorn_N : N;
-fun thornbury_PN : PN;
-fun thorne_PN : PN;
-fun thorny_A : A;
-fun thorough_A : A;
-fun thoroughbred_A : A;
-fun thoroughbred_N : N;
-fun thoroughfare_N : N;
-fun thoroughgoing_A : A;
-fun thoroughness_N : N;
-fun though_Adv : Adv;
-fun thought_N : N;
-fun thought_reader_N : N;
-fun thoughtful_A : A;
-fun thoughtfulness_N : N;
-fun thoughtless_A : A;
-fun thoughtlessness_N : N;
-fun thousandfold_A : A;
-fun thousandfold_Adv : Adv;
-fun thousandth_A : A;
-fun thousandth_N : N;
-fun thraldom_N : N;
-fun thrall_N : N;
-fun thrash_V : V;
-fun thrash_V2 : V2;
-fun thrashing_N : N;
-fun thread_N : N;
-fun thread_V2 : V2;
-fun threadbare_A : A;
-fun threadlike_A : A;
-fun threat_N : N;
-fun threaten_V : V;
-fun threaten_V2 : V2;
-fun threateningly_Adv : Adv;
-fun three_cornered_A : A;
-fun three_d_A : A;
-fun three_d_N : N;
-fun three_decker_N : N;
-fun three_dimensional_A : A;
-fun three_figure_A : A;
-fun three_funnelled_A : A;
-fun three_lane_A : A;
-fun three_legged_A : A;
-fun three_piece_A : A;
-fun three_ply_A : A;
-fun three_quarter_A : A;
-fun three_quarter_N : N;
-fun three_score_A : A;
-fun three_score_N : N;
-fun three_storey_A : A;
-fun three_storeyed_A : A;
-fun three_wheeled_A : A;
-fun threefold_A : A;
-fun threefold_Adv : Adv;
-fun threepence_N : N;
-fun threepenny_A : A;
-fun threesome_N : N;
-fun threnody_N : N;
-fun thresh_V : V;
-fun thresh_V2 : V2;
-fun thresher_N : N;
-fun threshing_floor_N : N;
-fun threshing_machine_N : N;
-fun threshold_N : N;
-fun thrice_Adv : Adv;
-fun thrift_N : N;
-fun thriftily_Adv : Adv;
-fun thriftless_A : A;
-fun thriftlessness_N : N;
-fun thrifty_A : A;
-fun thrill_N : N;
-fun thrill_V : V;
-fun thrill_V2 : V2;
-fun thriller_N : N;
-fun thrive_V : V;
-fun throat_N : N;
-fun throated_A : A;
-fun throaty_A : A;
-fun throb_N : N;
-fun throb_V : V;
-fun throbbing_A : A;
-fun throe_N : N;
-fun thrombosis_N : N;
-fun throne_N : N;
-fun throng_N : N;
-fun throng_V : V;
-fun throng_V2 : V2;
-fun throstle_N : N;
-fun throttle_N : N;
-fun throttle_V : V;
-fun throttle_V2 : V2;
-fun throttle_valve_N : N;
-fun through_Adv : Adv;
-fun throughout_Adv : Adv;
-fun throughput_N : N;
-fun throughway_N : N;
-fun throw_N : N;
-fun throw_V : V;
-fun throw_V2 : V2;
-fun throw_in_N : N;
-fun throwaway_N : N;
-fun throwback_N : N;
-fun thrum_V : V;
-fun thrum_V2 : V2;
-fun thrush_N : N;
-fun thrust_N : N;
-fun thrust_V : V;
-fun thrust_V2 : V2;
-fun thruster_N : N;
-fun thud_N : N;
-fun thud_V : V;
-fun thug_N : N;
-fun thuggery_N : N;
-fun thumb_N : N;
-fun thumb_V2 : V2;
-fun thumbnut_N : N;
-fun thumbscrew_N : N;
-fun thumbstall_N : N;
-fun thumbtack_N : N;
-fun thump_N : N;
-fun thump_V : V;
-fun thump_V2 : V2;
-fun thumping_A : A;
-fun thunder_N : N;
-fun thunder_V : V;
-fun thunder_V2 : V2;
-fun thunderbolt_N : N;
-fun thunderclap_N : N;
-fun thunderous_A : A;
-fun thunderstorm_N : N;
-fun thunderstruck_A : A;
-fun thundery_A : A;
-fun thurcroft_PN : PN;
-fun thurible_N : N;
-fun thurmaston_PN : PN;
-fun thurrock_PN : PN;
-fun thurs_PN : PN;
-fun thursday_N : N;
-fun thursday_PN : PN;
-fun thurso_PN : PN;
-fun thus_Adv : Adv;
-fun thwack_N : N;
-fun thwack_V2 : V2;
-fun thwart_N : N;
-fun thwart_V2 : V2;
-fun thy_A : A;
-fun thyme_N : N;
-fun thyroid_N : N;
-fun ti_N : N;
-fun tiara_N : N;
-fun tibet_PN : PN;
-fun tibetan_A : A;
-fun tibetan_N : N;
-fun tibia_N : N;
-fun tic_N : N;
-fun tick_N : N;
-fun tick_V : V;
-fun tick_V2 : V2;
-fun tick_tock_N : N;
-fun ticker_N : N;
-fun ticker_tape_N : N;
-fun ticket_N : N;
-fun ticket_V2 : V2;
-fun ticket_collector_N : N;
-fun ticking_N : N;
-fun tickle_V : V;
-fun tickle_V2 : V2;
-fun tickler_N : N;
-fun ticklish_A : A;
-fun tidal_A : A;
-fun tidbit_N : N;
-fun tiddler_N : N;
-fun tiddley_A : A;
-fun tiddlywinks_N : N;
-fun tide_N : N;
-fun tide_V2 : V2;
-fun tidemark_N : N;
-fun tideway_N : N;
-fun tidily_Adv : Adv;
-fun tidiness_N : N;
-fun tidworth_PN : PN;
-fun tidy_A : A;
-fun tidy_N : N;
-fun tidy_V : V;
-fun tidy_V2 : V2;
-fun tie_N : N;
-fun tie_V : V;
-fun tie_V2 : V2;
-fun tie_on_A : A;
-fun tie_up_N : N;
-fun tientsin_PN : PN;
-fun tier_N : N;
-fun tiff_N : N;
-fun tiger_N : N;
-fun tiger_lily_N : N;
-fun tigerish_A : A;
-fun tight_A : A;
-fun tight_Adv : Adv;
-fun tight_laced_A : A;
-fun tight_lipped_A : A;
-fun tight_wad_N : N;
-fun tighten_V : V;
-fun tighten_V2 : V2;
-fun tightness_N : N;
-fun tightrope_N : N;
-fun tigress_N : N;
-fun tike_N : N;
-fun tilburg_PN : PN;
-fun tilbury_PN : PN;
-fun tilde_N : N;
-fun tile_N : N;
-fun tile_V2 : V2;
-fun till_N : N;
-fun till_V2 : V2;
-fun tillage_N : N;
-fun tiller_N : N;
-fun tilt_N : N;
-fun tilt_V : V;
-fun tilt_V2 : V2;
-fun tilth_N : N;
-fun tiltyard_N : N;
-fun tim_PN : PN;
-fun timber_N : N;
-fun timbered_A : A;
-fun timbre_N : N;
-fun timbrel_N : N;
-fun time_N : N;
-fun time_V2 : V2;
-fun time_ball_N : N;
-fun time_bomb_N : N;
-fun time_expired_A : A;
-fun time_exposure_N : N;
-fun time_fuse_N : N;
-fun time_honoured_A : A;
-fun time_lag_N : N;
-fun time_limit_N : N;
-fun time_sheet_N : N;
-fun time_signal_N : N;
-fun time_switch_N : N;
-fun timecard_N : N;
-fun timekeeper_N : N;
-fun timekeeping_N : N;
-fun timeless_A : A;
-fun timeliness_N : N;
-fun timely_A : A;
-fun timepiece_N : N;
-fun timesaving_A : A;
-fun timeserver_N : N;
-fun timeserving_A : A;
-fun timetable_N : N;
-fun timework_N : N;
-fun timid_A : A;
-fun timidity_N : N;
-fun timidness_N : N;
-fun timing_N : N;
-fun timmy_PN : PN;
-fun timorous_A : A;
-fun timothy_N : N;
-fun timothy_PN : PN;
-fun timpanist_N : N;
-fun tin_N : N;
-fun tin_V2 : V2;
-fun tin_opener_N : N;
-fun tin_pan_alley_N : N;
-fun tin_plate_N : N;
-fun tina_PN : PN;
-fun tincture_N : N;
-fun tincture_V2 : V2;
-fun tinder_N : N;
-fun tinderbox_N : N;
-fun tine_N : N;
-fun tined_A : A;
-fun tinfoil_N : N;
-fun ting_N : N;
-fun ting_V : V;
-fun ting_V2 : V2;
-fun tinge_N : N;
-fun tinge_V2 : V2;
-fun tingle_N : N;
-fun tingle_V : V;
-fun tinker_N : N;
-fun tinker_V : V;
-fun tinkle_N : N;
-fun tinkle_V : V;
-fun tinkle_V2 : V2;
-fun tinny_A : A;
-fun tinsel_N : N;
-fun tinsel_V2 : V2;
-fun tinselly_A : A;
-fun tinsmith_N : N;
-fun tint_N : N;
-fun tint_V2 : V2;
-fun tintack_N : N;
-fun tintinnabulation_N : N;
-fun tiny_A : A;
-fun tip_N : N;
-fun tip_V : V;
-fun tip_V2 : V2;
-fun tip_and_run_A : A;
-fun tip_off_N : N;
-fun tip_top_A : A;
-fun tip_top_Adv : Adv;
-fun tip_up_A : A;
-fun tipperary_PN : PN;
-fun tippet_N : N;
-fun tipple_N : N;
-fun tipple_V : V;
-fun tipple_V2 : V2;
-fun tippler_N : N;
-fun tipstaff_N : N;
-fun tipster_N : N;
-fun tipsy_A : A;
-fun tiptoe_Adv : Adv;
-fun tiptoe_V : V;
-fun tirade_N : N;
-fun tire_N : N;
-fun tire_V : V;
-fun tire_V2 : V2;
-fun tired_A : A;
-fun tiredness_N : N;
-fun tireless_A : A;
-fun tiresome_A : A;
-fun tiring_Adv : Adv;
-fun tiro_N : N;
-fun tissue_N : N;
-fun tit_N : N;
-fun titan_N : N;
-fun titanic_A : A;
-fun titbit_N : N;
-fun tithe_N : N;
-fun tithe_barn_N : N;
-fun titillate_V2 : V2;
-fun titillation_N : N;
-fun titivate_V : V;
-fun titivate_V2 : V2;
-fun titlark_N : N;
-fun title_N : N;
-fun title_deed_N : N;
-fun title_page_N : N;
-fun title_role_N : N;
-fun titled_A : A;
-fun titmouse_N : N;
-fun titter_V : V;
-fun tittivate_V : V;
-fun tittivate_V2 : V2;
-fun tittle_N : N;
-fun tittle_tattle_N : N;
-fun tittle_tattle_V : V;
-fun titular_A : A;
-fun tiverton_PN : PN;
-fun tizzy_N : N;
-fun tnt_N : N;
-fun to_Adv : Adv;
-fun to_do_N : N;
-fun toad_N : N;
-fun toad_in_the_hole_N : N;
-fun toadstool_N : N;
-fun toady_N : N;
-fun toady_V : V;
-fun toast_N : N;
-fun toast_V : V;
-fun toast_V2 : V2;
-fun toaster_N : N;
-fun toasting_fork_N : N;
-fun toastmaster_N : N;
-fun toastrack_N : N;
-fun tobacco_N : N;
-fun tobacconist_N : N;
-fun tobago_PN : PN;
-fun tobagonian_A : A;
-fun tobagonian_N : N;
-fun toboggan_N : N;
-fun toboggan_V : V;
-fun toby_PN : PN;
-fun toby_jug_N : N;
-fun toccata_N : N;
-fun tocsin_N : N;
-fun today_Adv : Adv;
-fun today_N : N;
-fun toddle_V : V;
-fun toddler_N : N;
-fun toddy_N : N;
-fun todmorden_PN : PN;
-fun toe_N : N;
-fun toe_V2 : V2;
-fun toecap_N : N;
-fun toehold_N : N;
-fun toenail_N : N;
-fun toff_N : N;
-fun toffee_N : N;
-fun tog_V2 : V2;
-fun toga_N : N;
-fun together_Adv : Adv;
-fun togetherness_N : N;
-fun toggle_N : N;
-fun togo_PN : PN;
-fun togolese_A : A;
-fun togolese_N : N;
-fun toil_N : N;
-fun toil_V : V;
-fun toiler_N : N;
-fun toilet_N : N;
-fun toilet_paper_N : N;
-fun toilet_powder_N : N;
-fun toilet_roll_N : N;
-fun toilet_table_N : N;
-fun toilsome_A : A;
-fun tokay_N : N;
-fun token_N : N;
-fun tokyo_PN : PN;
-fun tolerable_A : A;
-fun tolerance_N : N;
-fun tolerant_A : A;
-fun tolerate_V2 : V2;
-fun toleration_N : N;
-fun toll_N : N;
-fun toll_V : V;
-fun toll_V2 : V2;
-fun tollbar_N : N;
-fun tollbooth_N : N;
-fun tollgate_N : N;
-fun tollhouse_N : N;
-fun tom_PN : PN;
-fun tomahawk_N : N;
-fun tomahawk_V2 : V2;
-fun tomato_N : N;
-fun tomb_N : N;
-fun tombola_N : N;
-fun tomboy_N : N;
-fun tombstone_N : N;
-fun tomcat_N : N;
-fun tome_N : N;
-fun tomfool_N : N;
-fun tomfoolery_N : N;
-fun tommy_PN : PN;
-fun tommy_gun_N : N;
-fun tommy_rot_N : N;
-fun tomorrow_Adv : Adv;
-fun tomorrow_N : N;
-fun tomtit_N : N;
-fun tomtom_N : N;
-fun ton_N : N;
-fun ton_V : V;
-fun tonal_A : A;
-fun tonality_N : N;
-fun tonbridge_PN : PN;
-fun tone_N : N;
-fun tone_V : V;
-fun tone_V2 : V2;
-fun tone_deaf_A : A;
-fun tone_poem_N : N;
-fun toned_A : A;
-fun toneless_A : A;
-fun tonga_PN : PN;
-fun tongan_A : A;
-fun tongan_N : N;
-fun tongue_N : N;
-fun tongue_in_cheek_A : A;
-fun tongue_in_cheek_Adv : Adv;
-fun tongue_tied_A : A;
-fun tongue_twister_N : N;
-fun tongued_A : A;
-fun tonic_A : A;
-fun tonic_N : N;
-fun tonic_sol_fa_N : N;
-fun tonight_Adv : Adv;
-fun tonight_N : N;
-fun tonnage_N : N;
-fun tonne_N : N;
-fun tonsil_N : N;
-fun tonsillitis_N : N;
-fun tonsorial_A : A;
-fun tonsure_N : N;
-fun tonsure_V2 : V2;
-fun tontine_N : N;
-fun tony_PN : PN;
-fun tonyrefail_PN : PN;
-fun too_Adv : Adv;
-fun tool_N : N;
-fun tool_V2 : V2;
-fun toot_N : N;
-fun toot_V : V;
-fun toot_V2 : V2;
-fun tooth_N : N;
-fun toothache_N : N;
-fun toothbrush_N : N;
-fun toothed_A : A;
-fun toothless_A : A;
-fun toothpaste_N : N;
-fun toothpick_N : N;
-fun toothpowder_N : N;
-fun toothsome_A : A;
-fun tootle_N : N;
-fun tootle_V : V;
-fun top_N : N;
-fun top_V2 : V2;
-fun top_boot_N : N;
-fun top_dress_V2 : V2;
-fun top_dressing_N : N;
-fun top_flight_A : A;
-fun top_heavy_A : A;
-fun top_hole_A : A;
-fun top_ranking_A : A;
-fun topaz_N : N;
-fun topcoat_N : N;
-fun tope_V : V;
-fun tope_V2 : V2;
-fun toper_N : N;
-fun topgallant_A : A;
-fun topgallant_N : N;
-fun topi_N : N;
-fun topiary_N : N;
-fun topic_N : N;
-fun topical_A : A;
-fun topknot_N : N;
-fun topless_A : A;
-fun topmast_N : N;
-fun topmost_A : A;
-fun topnotch_A : A;
-fun topographical_A : A;
-fun topography_N : N;
-fun topper_N : N;
-fun topping_A : A;
-fun topple_V : V;
-fun topple_V2 : V2;
-fun topsail_N : N;
-fun topsy_turvy_A : A;
-fun topsy_turvy_Adv : Adv;
-fun topsy_turvydom_N : N;
-fun toque_N : N;
-fun tor_N : N;
-fun torbay_PN : PN;
-fun torch_N : N;
-fun torch_race_N : N;
-fun torch_singer_N : N;
-fun torchlight_N : N;
-fun toreador_N : N;
-fun torino_PN : PN;
-fun torment_N : N;
-fun torment_V2 : V2;
-fun tormentor_N : N;
-fun tornado_N : N;
-fun toronto_PN : PN;
-fun torpedo_N : N;
-fun torpedo_V2 : V2;
-fun torpedo_boat_N : N;
-fun torpedo_tube_N : N;
-fun torpid_A : A;
-fun torpidity_N : N;
-fun torpidness_N : N;
-fun torpor_N : N;
-fun torque_N : N;
-fun torrent_N : N;
-fun torrential_A : A;
-fun torrid_A : A;
-fun torridity_N : N;
-fun torsion_N : N;
-fun torso_N : N;
-fun tort_N : N;
-fun tortilla_N : N;
-fun tortoise_N : N;
-fun tortoiseshell_N : N;
-fun tortuous_A : A;
-fun torture_N : N;
-fun torture_V2 : V2;
-fun torturer_N : N;
-fun tory_N : N;
-fun tosh_N : N;
-fun toss_N : N;
-fun toss_V : V;
-fun toss_V2 : V2;
-fun toss_up_N : N;
-fun tot_N : N;
-fun tot_V : V;
-fun tot_V2 : V2;
-fun total_A : A;
-fun total_N : N;
-fun total_V : V;
-fun total_V2 : V2;
-fun totalitarian_A : A;
-fun totalitarianism_N : N;
-fun totality_N : N;
-fun totalizator_N : N;
-fun tote_N : N;
-fun tote_V2 : V2;
-fun totem_N : N;
-fun totem_pole_N : N;
-fun totnes_PN : PN;
-fun totter_V : V;
-fun tottery_A : A;
-fun toucan_N : N;
-fun touch_N : N;
-fun touch_V : V;
-fun touch_V2 : V2;
-fun touch_and_go_A : A;
-fun touch_type_V : V;
-fun touchable_A : A;
-fun touchdown_N : N;
-fun touched_A : A;
-fun touchily_Adv : Adv;
-fun touchiness_N : N;
-fun touching_A : A;
-fun touchline_N : N;
-fun touchstone_N : N;
-fun touchy_A : A;
-fun tough_A : A;
-fun tough_N : N;
-fun toughen_V : V;
-fun toughen_V2 : V2;
-fun toughie_N : N;
-fun toughness_N : N;
-fun toulon_PN : PN;
-fun toulouse_PN : PN;
-fun toupee_N : N;
-fun tour_N : N;
-fun tour_V : V;
-fun tour_V2 : V2;
-fun tour_de_force_N : N;
-fun touring_A : A;
-fun touring_N : N;
-fun tourism_N : N;
-fun tourist_N : N;
-fun tournament_N : N;
-fun tourney_N : N;
-fun tourniquet_N : N;
-fun tours_PN : PN;
-fun tousle_V2 : V2;
-fun tout_N : N;
-fun tout_V : V;
-fun tout_ensemble_Adv : Adv;
-fun tout_ensemble_N : N;
-fun tow_N : N;
-fun tow_V2 : V2;
-fun towel_N : N;
-fun towel_V2 : V2;
-fun towel_horse_N : N;
-fun towel_rack_N : N;
-fun towel_rail_N : N;
-fun towelling_N : N;
-fun tower_N : N;
-fun tower_V : V;
-fun tower_block_N : N;
-fun tower_hamlets_PN : PN;
-fun towering_A : A;
-fun towing_line_N : N;
-fun towing_path_N : N;
-fun towing_rope_N : N;
-fun towline_N : N;
-fun town_N : N;
-fun town_crier_N : N;
-fun town_gas_N : N;
-fun townee_N : N;
-fun township_N : N;
-fun townsman_N : N;
-fun towpath_N : N;
-fun towrope_N : N;
-fun toxaemia_N : N;
-fun toxic_A : A;
-fun toxicity_N : N;
-fun toxicologist_N : N;
-fun toxicology_N : N;
-fun toxin_N : N;
-fun toy_N : N;
-fun toy_V : V;
-fun toyshop_N : N;
-fun trace_N : N;
-fun trace_V : V;
-fun trace_V2 : V2;
-fun traceable_A : A;
-fun tracer_N : N;
-fun tracery_N : N;
-fun trachea_N : N;
-fun trachoma_N : N;
-fun tracing_N : N;
-fun tracing_paper_N : N;
-fun track_N : N;
-fun track_V2 : V2;
-fun tracked_A : A;
-fun tracker_N : N;
-fun trackless_A : A;
-fun tract_N : N;
-fun tractability_N : N;
-fun tractable_A : A;
-fun traction_N : N;
-fun traction_engine_N : N;
-fun tractor_N : N;
-fun tracy_PN : PN;
-fun trad_N : N;
-fun trade_N : N;
-fun trade_V : V;
-fun trade_V2 : V2;
-fun trade_in_N : N;
-fun trade_union_N : N;
-fun trade_unionism_N : N;
-fun trade_unionist_N : N;
-fun trade_wind_N : N;
-fun trademark_N : N;
-fun trader_N : N;
-fun trades_union_N : N;
-fun tradesman_N : N;
-fun tradition_N : N;
-fun traditional_A : A;
-fun traditionalism_N : N;
-fun traditionalist_N : N;
-fun traduce_V2 : V2;
-fun traducer_N : N;
-fun traffic_N : N;
-fun traffic_V : V;
-fun trafficator_N : N;
-fun trafficker_N : N;
-fun tragedian_N : N;
-fun tragedienne_N : N;
-fun tragedy_N : N;
-fun tragic_A : A;
-fun tragically_Adv : Adv;
-fun tragicomedy_N : N;
-fun tragicomic_A : A;
-fun trail_N : N;
-fun trail_V : V;
-fun trail_V2 : V2;
-fun trailer_N : N;
-fun train_N : N;
-fun train_V : V;
-fun train_V2 : V2;
-fun trainbearer_N : N;
-fun trainee_N : N;
-fun trainer_N : N;
-fun training_N : N;
-fun training_college_N : N;
-fun training_ship_N : N;
-fun trainload_N : N;
-fun trainman_N : N;
-fun traipse_V : V;
-fun trait_N : N;
-fun traitor_N : N;
-fun traitorous_A : A;
-fun traitress_N : N;
-fun trajectory_N : N;
-fun tralee_PN : PN;
-fun tram_N : N;
-fun tram_car_N : N;
-fun tramline_N : N;
-fun trammel_V2 : V2;
-fun tramp_N : N;
-fun tramp_V : V;
-fun tramp_V2 : V2;
-fun tramp_steamer_N : N;
-fun trample_N : N;
-fun trample_V : V;
-fun trample_V2 : V2;
-fun trampoline_N : N;
-fun tramway_N : N;
-fun trance_N : N;
-fun tranent_PN : PN;
-fun tranquil_A : A;
-fun tranquility_N : N;
-fun tranquilize_V2 : V2;
-fun tranquillity_N : N;
-fun tranquillize_V2 : V2;
-fun tranquillizer_N : N;
-fun trans_PN : PN;
-fun transact_V2 : V2;
-fun transaction_N : N;
-fun transalpine_A : A;
-fun transalpine_N : N;
-fun transatlantic_A : A;
-fun transcend_V2 : V2;
-fun transcendence_N : N;
-fun transcendency_N : N;
-fun transcendent_A : A;
-fun transcendental_A : A;
-fun transcendentalism_N : N;
-fun transcendentalist_N : N;
-fun transcontinental_A : A;
-fun transcribe_V2 : V2;
-fun transcript_N : N;
-fun transcription_N : N;
-fun transept_N : N;
-fun transfer_N : N;
-fun transfer_V : V;
-fun transfer_V2 : V2;
-fun transferability_N : N;
-fun transferable_A : A;
-fun transference_N : N;
-fun transfiguration_N : N;
-fun transfigure_V2 : V2;
-fun transfix_V2 : V2;
-fun transform_V2 : V2;
-fun transformable_A : A;
-fun transformation_N : N;
-fun transformer_N : N;
-fun transfuse_V2 : V2;
-fun transfusion_N : N;
-fun transgress_V : V;
-fun transgress_V2 : V2;
-fun transgression_N : N;
-fun transgressor_N : N;
-fun transience_N : N;
-fun transiency_N : N;
-fun transient_A : A;
-fun transient_N : N;
-fun transistor_N : N;
-fun transistorized_A : A;
-fun transit_N : N;
-fun transition_N : N;
-fun transitional_A : A;
-fun transitive_A : A;
-fun transitory_A : A;
-fun translatable_A : A;
-fun translate_V2 : V2;
-fun translation_N : N;
-fun translator_N : N;
-fun transliterate_V2 : V2;
-fun transliteration_N : N;
-fun translucence_N : N;
-fun translucency_N : N;
-fun translucent_A : A;
-fun transmigration_N : N;
-fun transmission_N : N;
-fun transmit_V2 : V2;
-fun transmitter_N : N;
-fun transmogrification_N : N;
-fun transmogrify_V2 : V2;
-fun transmutable_A : A;
-fun transmutation_N : N;
-fun transmute_V2 : V2;
-fun transoceanic_A : A;
-fun transom_N : N;
-fun transom_window_N : N;
-fun transparence_N : N;
-fun transparency_N : N;
-fun transparent_A : A;
-fun transpiration_N : N;
-fun transpire_V : V;
-fun transpire_V2 : V2;
-fun transplant_N : N;
-fun transplant_V : V;
-fun transplant_V2 : V2;
-fun transplantation_N : N;
-fun transpolar_A : A;
-fun transport_N : N;
-fun transport_V2 : V2;
-fun transportable_A : A;
-fun transportation_N : N;
-fun transporter_N : N;
-fun transpose_V2 : V2;
-fun transposition_N : N;
-fun transsexual_N : N;
-fun transship_V2 : V2;
-fun transshipment_N : N;
-fun transubstantiation_N : N;
-fun transverse_A : A;
-fun transvestism_N : N;
-fun transvestite_N : N;
-fun trap_N : N;
-fun trap_V2 : V2;
-fun trap_door_N : N;
-fun trap_shooting_N : N;
-fun trapeze_N : N;
-fun trapezium_N : N;
-fun trapezoid_N : N;
-fun trapper_N : N;
-fun trappist_N : N;
-fun trash_N : N;
-fun trashy_A : A;
-fun trauma_N : N;
-fun traumatic_A : A;
-fun travail_N : N;
-fun travel_N : N;
-fun travel_V : V;
-fun travel_V2 : V2;
-fun travel_soiled_A : A;
-fun travel_stained_A : A;
-fun travel_worn_A : A;
-fun traveled_A : A;
-fun travelled_A : A;
-fun traveller_N : N;
-fun travelling_N : N;
-fun travelogue_N : N;
-fun traverse_N : N;
-fun traverse_V2 : V2;
-fun travesty_N : N;
-fun travesty_V2 : V2;
-fun trawl_N : N;
-fun trawl_V : V;
-fun trawl_V2 : V2;
-fun trawl_net_N : N;
-fun trawler_N : N;
-fun tray_N : N;
-fun tray_cloth_N : N;
-fun treacherous_A : A;
-fun treachery_N : N;
-fun treacle_N : N;
-fun treacly_A : A;
-fun tread_N : N;
-fun tread_V : V;
-fun tread_V2 : V2;
-fun treadle_N : N;
-fun treadle_V : V;
-fun treadmill_N : N;
-fun treas_N : N;
-fun treason_N : N;
-fun treasonable_A : A;
-fun treasonous_A : A;
-fun treasure_N : N;
-fun treasure_V2 : V2;
-fun treasure_house_N : N;
-fun treasure_trove_N : N;
-fun treasurer_N : N;
-fun treasury_N : N;
-fun treat_N : N;
-fun treat_V : V;
-fun treat_V2 : V2;
-fun treatise_N : N;
-fun treatment_N : N;
-fun treaty_N : N;
-fun treble_A : A;
-fun treble_N : N;
-fun treble_V : V;
-fun treble_V2 : V2;
-fun tredegar_PN : PN;
-fun tree_N : N;
-fun tree_V2 : V2;
-fun tree_fern_N : N;
-fun treeless_A : A;
-fun trefoil_N : N;
-fun trek_N : N;
-fun trek_V : V;
-fun trellis_N : N;
-fun trellis_V2 : V2;
-fun tremble_N : N;
-fun tremble_V : V;
-fun tremendous_A : A;
-fun tremolo_N : N;
-fun tremor_N : N;
-fun tremulous_A : A;
-fun trench_N : N;
-fun trench_V2 : V2;
-fun trenchancy_N : N;
-fun trenchant_A : A;
-fun trencher_N : N;
-fun trencherman_N : N;
-fun trend_N : N;
-fun trend_V : V;
-fun trend_setter_N : N;
-fun trend_setting_N : N;
-fun trendy_A : A;
-fun trepan_V2 : V2;
-fun trephine_N : N;
-fun trephine_V2 : V2;
-fun trepidation_N : N;
-fun trespass_N : N;
-fun trespass_V : V;
-fun trespasser_N : N;
-fun tress_N : N;
-fun trestle_N : N;
-fun trestle_bridge_N : N;
-fun trestle_table_N : N;
-fun trevor_PN : PN;
-fun triad_N : N;
-fun trial_N : N;
-fun triangle_N : N;
-fun triangular_A : A;
-fun tribal_A : A;
-fun tribalism_N : N;
-fun tribe_N : N;
-fun tribesman_N : N;
-fun tribulation_N : N;
-fun tribunal_N : N;
-fun tribune_N : N;
-fun tributary_A : A;
-fun tributary_N : N;
-fun tribute_N : N;
-fun trice_N : N;
-fun trice_V2 : V2;
-fun trick_N : N;
-fun trick_V2 : V2;
-fun trickery_N : N;
-fun trickiness_N : N;
-fun trickle_N : N;
-fun trickle_V : V;
-fun trickle_V2 : V2;
-fun trickster_N : N;
-fun tricksy_A : A;
-fun tricky_A : A;
-fun tricolour_N : N;
-fun tricycle_N : N;
-fun trident_N : N;
-fun tried_A : A;
-fun triennial_A : A;
-fun triennial_N : N;
-fun trier_N : N;
-fun trieste_PN : PN;
-fun trifle_N : N;
-fun trifle_V : V;
-fun trifle_V2 : V2;
-fun trifler_N : N;
-fun trifling_A : A;
-fun trigger_N : N;
-fun trigger_V2 : V2;
-fun trigger_happy_A : A;
-fun trigonometry_N : N;
-fun trilateral_A : A;
-fun trilby_N : N;
-fun trill_N : N;
-fun trill_V : V;
-fun trill_V2 : V2;
-fun trillion_A : A;
-fun trillion_N : N;
-fun trillionth_A : A;
-fun trillionth_N : N;
-fun trilogy_N : N;
-fun trim_A : A;
-fun trim_N : N;
-fun trim_V : V;
-fun trim_V2 : V2;
-fun trimaran_N : N;
-fun trimmer_N : N;
-fun trimming_N : N;
-fun tring_PN : PN;
-fun trinidad_PN : PN;
-fun trinidadian_A : A;
-fun trinidadian_N : N;
-fun trinitrotoluene_N : N;
-fun trinity_N : N;
-fun trinket_N : N;
-fun trio_N : N;
-fun trip_N : N;
-fun trip_V : V;
-fun trip_V2 : V2;
-fun tripartite_A : A;
-fun tripe_N : N;
-fun triple_A : A;
-fun triple_V : V;
-fun triple_V2 : V2;
-fun triplet_N : N;
-fun triplex_A : A;
-fun triplicate_A : A;
-fun triplicate_N : N;
-fun triplicate_V2 : V2;
-fun tripod_N : N;
-fun tripos_N : N;
-fun tripper_N : N;
-fun tripping_A : A;
-fun triptych_N : N;
-fun trireme_N : N;
-fun trisect_V2 : V2;
-fun trite_A : A;
-fun triteness_N : N;
-fun triumph_N : N;
-fun triumph_V : V;
-fun triumphal_A : A;
-fun triumphant_A : A;
-fun triumvir_N : N;
-fun triumvirate_N : N;
-fun triune_A : A;
-fun trivet_N : N;
-fun trivial_A : A;
-fun triviality_N : N;
-fun trivialize_V2 : V2;
-fun trochaic_A : A;
-fun trochee_N : N;
-fun troglodyte_N : N;
-fun troika_N : N;
-fun trojan_A : A;
-fun trojan_N : N;
-fun troll_N : N;
-fun troll_V : V;
-fun troll_V2 : V2;
-fun trolley_N : N;
-fun trolley_car_N : N;
-fun trollop_N : N;
-fun trombone_N : N;
-fun trombonist_N : N;
-fun troon_PN : PN;
-fun troop_N : N;
-fun troop_V : V;
-fun troop_V2 : V2;
-fun troop_carrier_N : N;
-fun trooper_N : N;
-fun troopship_N : N;
-fun trope_N : N;
-fun trophy_N : N;
-fun tropic_N : N;
-fun tropical_A : A;
-fun trot_N : N;
-fun trot_V : V;
-fun trot_V2 : V2;
-fun troth_N : N;
-fun trotter_N : N;
-fun troubadour_N : N;
-fun trouble_N : N;
-fun trouble_V : V;
-fun trouble_V2 : V2;
-fun troublemaker_N : N;
-fun troubleshooter_N : N;
-fun troublesome_A : A;
-fun troublous_A : A;
-fun trough_N : N;
-fun trounce_V2 : V2;
-fun trouncing_N : N;
-fun troupe_N : N;
-fun trouper_N : N;
-fun trouser_N : N;
-fun trousseau_N : N;
-fun trout_N : N;
-fun trove_N : N;
-fun trowbridge_PN : PN;
-fun trowel_N : N;
-fun troy_N : N;
-fun truancy_N : N;
-fun truant_N : N;
-fun truce_N : N;
-fun truck_N : N;
-fun truckle_N : N;
-fun truckle_V : V;
-fun truckle_bed_N : N;
-fun truculence_N : N;
-fun truculency_N : N;
-fun truculent_A : A;
-fun trudge_N : N;
-fun trudge_V : V;
-fun true_A : A;
-fun true_Adv : Adv;
-fun true_N : N;
-fun true_V2 : V2;
-fun true_blue_A : A;
-fun true_blue_N : N;
-fun true_hearted_A : A;
-fun truelove_N : N;
-fun truffle_N : N;
-fun truism_N : N;
-fun truly_Adv : Adv;
-fun trump_N : N;
-fun trump_V : V;
-fun trump_V2 : V2;
-fun trumpery_A : A;
-fun trumpet_N : N;
-fun trumpet_V : V;
-fun trumpet_V2 : V2;
-fun trumpeter_N : N;
-fun truncate_V2 : V2;
-fun truncheon_N : N;
-fun trundle_V : V;
-fun trundle_V2 : V2;
-fun trunk_N : N;
-fun trunk_call_N : N;
-fun trunk_line_N : N;
-fun trunk_road_N : N;
-fun trunking_N : N;
-fun truro_PN : PN;
-fun truss_N : N;
-fun truss_V2 : V2;
-fun trust_N : N;
-fun trust_V : V;
-fun trust_V2 : V2;
-fun trustee_N : N;
-fun trusteeship_N : N;
-fun trustful_A : A;
-fun trusting_A : A;
-fun trustworthiness_N : N;
-fun trustworthy_A : A;
-fun trusty_A : A;
-fun truth_N : N;
-fun truthful_A : A;
-fun truthfulness_N : N;
-fun try_N : N;
-fun try_V : V;
-fun try_V2 : V2;
-fun try_on_N : N;
-fun try_out_N : N;
-fun trying_A : A;
-fun tryst_N : N;
-fun tsar_N : N;
-fun tsarina_N : N;
-fun tsetse_N : N;
-fun tsetse_fly_N : N;
-fun tsinan_PN : PN;
-fun tsingtao_PN : PN;
-fun tsitsihar_PN : PN;
-fun tswana_A : A;
-fun tswana_N : N;
-fun tub_N : N;
-fun tub_thumper_N : N;
-fun tuba_N : N;
-fun tubby_A : A;
-fun tube_N : N;
-fun tube_well_N : N;
-fun tubeless_A : A;
-fun tuber_N : N;
-fun tubercular_A : A;
-fun tuberculosis_N : N;
-fun tuberculous_A : A;
-fun tubful_N : N;
-fun tubing_N : N;
-fun tubular_A : A;
-fun tuc_N : N;
-fun tuck_N : N;
-fun tuck_V : V;
-fun tuck_V2 : V2;
-fun tuck_in_N : N;
-fun tuck_shop_N : N;
-fun tucker_N : N;
-fun tues_PN : PN;
-fun tuesday_N : N;
-fun tuesday_PN : PN;
-fun tuft_N : N;
-fun tufted_A : A;
-fun tug_N : N;
-fun tug_V : V;
-fun tug_V2 : V2;
-fun tugboat_N : N;
-fun tuition_N : N;
-fun tulip_N : N;
-fun tulle_N : N;
-fun tullibody_PN : PN;
-fun tumble_N : N;
-fun tumble_V : V;
-fun tumble_V2 : V2;
-fun tumble_down_A : A;
-fun tumbler_N : N;
-fun tumbleweed_N : N;
-fun tumbrel_N : N;
-fun tumbril_N : N;
-fun tumescence_N : N;
-fun tumescent_A : A;
-fun tumid_A : A;
-fun tumidity_N : N;
-fun tummy_N : N;
-fun tumour_N : N;
-fun tumult_N : N;
-fun tumultuous_A : A;
-fun tumulus_N : N;
-fun tun_N : N;
-fun tuna_N : N;
-fun tunbridge_wells_PN : PN;
-fun tundra_N : N;
-fun tune_N : N;
-fun tune_V : V;
-fun tune_V2 : V2;
-fun tuneful_A : A;
-fun tunefulness_N : N;
-fun tuner_N : N;
-fun tung_oil_N : N;
-fun tungsten_N : N;
-fun tunic_N : N;
-fun tuning_fork_N : N;
-fun tunis_PN : PN;
-fun tunisia_PN : PN;
-fun tunisian_A : A;
-fun tunisian_N : N;
-fun tunnel_N : N;
-fun tunnel_V : V;
-fun tunnel_V2 : V2;
-fun tunny_N : N;
-fun tup_N : N;
-fun tuppence_N : N;
-fun tuppenny_A : A;
-fun turban_N : N;
-fun turbaned_A : A;
-fun turbid_A : A;
-fun turbidity_N : N;
-fun turbidness_N : N;
-fun turbine_N : N;
-fun turbojet_N : N;
-fun turboprop_N : N;
-fun turbot_N : N;
-fun turbulence_N : N;
-fun turbulent_A : A;
-fun turd_N : N;
-fun tureen_N : N;
-fun turf_N : N;
-fun turf_V2 : V2;
-fun turgid_A : A;
-fun turgidity_N : N;
-fun turin_PN : PN;
-fun turk_N : N;
-fun turkey_N : N;
-fun turkey_PN : PN;
-fun turkish_A : A;
-fun turkish_N : N;
-fun turku_PN : PN;
-fun turmeric_N : N;
-fun turmoil_N : N;
-fun turn_N : N;
-fun turn_V : V;
-fun turn_V2 : V2;
-fun turn_off_N : N;
-fun turn_on_N : N;
-fun turn_out_N : N;
-fun turn_round_N : N;
-fun turn_up_N : N;
-fun turncoat_N : N;
-fun turncock_N : N;
-fun turner_N : N;
-fun turning_N : N;
-fun turning_point_N : N;
-fun turnip_N : N;
-fun turnkey_N : N;
-fun turnover_N : N;
-fun turnpike_N : N;
-fun turnspit_N : N;
-fun turnstile_N : N;
-fun turntable_N : N;
-fun turpentine_N : N;
-fun turpitude_N : N;
-fun turps_N : N;
-fun turquoise_N : N;
-fun turret_N : N;
-fun turtle_N : N;
-fun turtledove_N : N;
-fun turtleneck_A : A;
-fun turtlenecked_A : A;
-fun tusk_N : N;
-fun tussle_N : N;
-fun tussle_V : V;
-fun tussock_N : N;
-fun tut_V2 : V2;
-fun tutelage_N : N;
-fun tutelary_A : A;
-fun tutor_N : N;
-fun tutor_V2 : V2;
-fun tutorial_A : A;
-fun tutorial_N : N;
-fun tutorship_N : N;
-fun tutti_frutti_N : N;
-fun tutu_N : N;
-fun tuxedo_N : N;
-fun tv_N : N;
-fun tvs_N : N;
-fun twaddle_N : N;
-fun twaddle_V : V;
-fun twain_N : N;
-fun twang_N : N;
-fun twang_V : V;
-fun twang_V2 : V2;
-fun tweak_N : N;
-fun tweak_V2 : V2;
-fun twee_A : A;
-fun tweed_N : N;
-fun tween_Adv : Adv;
-fun tween_decks_Adv : Adv;
-fun tweet_N : N;
-fun tweet_V : V;
-fun tweeter_N : N;
-fun twelfth_night_N : N;
-fun twelfth_night_PN : PN;
-fun twelvemonth_N : N;
-fun twerp_N : N;
-fun twice_Adv : Adv;
-fun twiddle_N : N;
-fun twiddle_V : V;
-fun twiddle_V2 : V2;
-fun twiddly_A : A;
-fun twig_N : N;
-fun twig_V : V;
-fun twig_V2 : V2;
-fun twiggy_A : A;
-fun twilight_N : N;
-fun twilit_A : A;
-fun twill_N : N;
-fun twilled_A : A;
-fun twin_N : N;
-fun twin_V2 : V2;
-fun twine_N : N;
-fun twine_V : V;
-fun twine_V2 : V2;
-fun twinge_N : N;
-fun twinkle_N : N;
-fun twinkle_V : V;
-fun twinkling_N : N;
-fun twinned_A : A;
-fun twirl_N : N;
-fun twirl_V : V;
-fun twirl_V2 : V2;
-fun twist_N : N;
-fun twist_V : V;
-fun twist_V2 : V2;
-fun twister_N : N;
-fun twisty_A : A;
-fun twit_N : N;
-fun twit_V2 : V2;
-fun twitch_N : N;
-fun twitch_V : V;
-fun twitch_V2 : V2;
-fun twitter_N : N;
-fun twitter_V : V;
-fun two_a_penny_A : A;
-fun two_edged_A : A;
-fun two_faced_A : A;
-fun two_funnelled_A : A;
-fun two_handed_A : A;
-fun two_piece_N : N;
-fun two_ply_A : A;
-fun two_seater_N : N;
-fun two_step_N : N;
-fun two_timing_A : A;
-fun two_way_A : A;
-fun twofold_A : A;
-fun twofold_Adv : Adv;
-fun twopence_N : N;
-fun twopenny_A : A;
-fun twopenny_halfpenny_A : A;
-fun tycoon_N : N;
-fun tyke_N : N;
-fun tympanum_N : N;
-fun tyne_PN : PN;
-fun tynemouth_PN : PN;
-fun type_N : N;
-fun type_V : V;
-fun type_V2 : V2;
-fun typecast_V2 : V2;
-fun typeface_N : N;
-fun typescript_N : N;
-fun typesetter_N : N;
-fun typewriter_N : N;
-fun typewritten_A : A;
-fun typhoid_N : N;
-fun typhoon_N : N;
-fun typhus_N : N;
-fun typical_A : A;
-fun typify_V2 : V2;
-fun typist_N : N;
-fun typographer_N : N;
-fun typographic_A : A;
-fun typographically_Adv : Adv;
-fun typography_N : N;
-fun tyrannical_A : A;
-fun tyrannize_V : V;
-fun tyrannize_V2 : V2;
-fun tyrannous_A : A;
-fun tyranny_N : N;
-fun tyrant_N : N;
-fun tyre_N : N;
-fun tyro_N : N;
-fun tyrone_PN : PN;
-fun tzar_N : N;
-fun tzarina_N : N;
-fun tzupo_PN : PN;
-fun tete_a_tete_Adv : Adv;
-fun tete_a_tete_N : N;
-fun u_boat_N : N;
-fun u_turn_N : N;
-fun ubiquitous_A : A;
-fun ubiquity_N : N;
-fun udder_N : N;
-fun uddingston_PN : PN;
-fun udi_PN : PN;
-fun udine_PN : PN;
-fun ufa_PN : PN;
-fun ufo's_N : N;
-fun ufo_N : N;
-fun uganda_PN : PN;
-fun ugandan_A : A;
-fun ugandan_N : N;
-fun uglify_V2 : V2;
-fun ugliness_N : N;
-fun ugly_A : A;
-fun uk_PN : PN;
-fun ukase_N : N;
-fun ukulele_N : N;
-fun ulcer_N : N;
-fun ulcerate_V : V;
-fun ulcerate_V2 : V2;
-fun ulceration_N : N;
-fun ulcerous_A : A;
-fun ulna_N : N;
-fun ulster_N : N;
-fun ulster_PN : PN;
-fun ulterior_A : A;
-fun ultimate_A : A;
-fun ultimatum_N : N;
-fun ultimo_A : A;
-fun ultra_vires_A : A;
-fun ultra_vires_Adv : Adv;
-fun ultramarine_A : A;
-fun ultramarine_N : N;
-fun ultramontane_A : A;
-fun ultrasonic_A : A;
-fun ultraviolet_A : A;
-fun ululate_V : V;
-fun ululation_N : N;
-fun ulverston_PN : PN;
-fun umber_A : A;
-fun umber_N : N;
-fun umbilical_A : A;
-fun umbrage_N : N;
-fun umbrella_N : N;
-fun umlaut_N : N;
-fun umpire_N : N;
-fun umpire_V : V;
-fun umpire_V2 : V2;
-fun umpteen_A : A;
-fun umpteenth_A : A;
-fun un_N : N;
-fun un_come_at_able_A : A;
-fun un_get_at_able_A : A;
-fun unabashed_A : A;
-fun unabated_A : A;
-fun unable_A : A;
-fun unabridged_A : A;
-fun unacceptable_A : A;
-fun unaccommodating_A : A;
-fun unaccompanied_A : A;
-fun unaccountable_A : A;
-fun unaccounted_A : A;
-fun unaccustomed_A : A;
-fun unacknowledged_A : A;
-fun unacquainted_A : A;
-fun unadorned_A : A;
-fun unadulterated_A : A;
-fun unadventurous_A : A;
-fun unadvised_A : A;
-fun unaffected_A : A;
-fun unafraid_A : A;
-fun unaided_A : A;
-fun unalienable_A : A;
-fun unaligned_A : A;
-fun unalloyed_A : A;
-fun unalterable_A : A;
-fun unaltered_A : A;
-fun unambiguous_A : A;
-fun unamended_A : A;
-fun unanimity_N : N;
-fun unanimous_A : A;
-fun unannounced_A : A;
-fun unanswerable_A : A;
-fun unanswered_A : A;
-fun unanticipated_A : A;
-fun unappealing_A : A;
-fun unappetizing_A : A;
-fun unappreciated_A : A;
-fun unappreciative_A : A;
-fun unapproachable_A : A;
-fun unarguable_A : A;
-fun unarmed_A : A;
-fun unarticulated_A : A;
-fun unashamed_A : A;
-fun unasked_A : A;
-fun unassailable_A : A;
-fun unassisted_A : A;
-fun unassuming_A : A;
-fun unattached_A : A;
-fun unattainable_A : A;
-fun unattended_A : A;
-fun unattractive_A : A;
-fun unauthorized_A : A;
-fun unavailable_A : A;
-fun unavailing_A : A;
-fun unavoidable_A : A;
-fun unawakened_A : A;
-fun unaware_A : A;
-fun unawares_Adv : Adv;
-fun unbacked_A : A;
-fun unbalance_V2 : V2;
-fun unbalanced_A : A;
-fun unbar_V2 : V2;
-fun unbearable_A : A;
-fun unbeatable_A : A;
-fun unbeaten_A : A;
-fun unbecoming_A : A;
-fun unbeknown_A : A;
-fun unbeknown_Adv : Adv;
-fun unbeknownst_A : A;
-fun unbeknownst_Adv : Adv;
-fun unbelief_N : N;
-fun unbelievable_A : A;
-fun unbeliever_N : N;
-fun unbelieving_A : A;
-fun unbeloved_A : A;
-fun unbend_V : V;
-fun unbend_V2 : V2;
-fun unbending_A : A;
-fun unbiased_A : A;
-fun unbiassed_A : A;
-fun unbidden_A : A;
-fun unbind_V2 : V2;
-fun unblock_V2 : V2;
-fun unblushing_A : A;
-fun unbolt_V : V;
-fun unbolt_V2 : V2;
-fun unborn_A : A;
-fun unbosom_V2 : V2;
-fun unbounded_A : A;
-fun unbowed_A : A;
-fun unbreakable_A : A;
-fun unbridled_A : A;
-fun unbroken_A : A;
-fun unbuckle_V2 : V2;
-fun unburden_V2 : V2;
-fun unburied_A : A;
-fun unbutton_V2 : V2;
-fun unbuttoned_A : A;
-fun uncalled_for_A : A;
-fun uncanny_A : A;
-fun uncared_for_A : A;
-fun uncarpeted_A : A;
-fun unceasing_A : A;
-fun uncensored_A : A;
-fun unceremonious_A : A;
-fun unceremoniousness_N : N;
-fun uncertain_A : A;
-fun uncertainty_N : N;
-fun unchain_V2 : V2;
-fun unchallengeable_A : A;
-fun unchallenged_A : A;
-fun unchanged_A : A;
-fun unchanging_A : A;
-fun uncharacteristic_A : A;
-fun uncharacteristically_Adv : Adv;
-fun uncharitable_A : A;
-fun uncharted_A : A;
-fun unchecked_A : A;
-fun unchivalrously_Adv : Adv;
-fun unchristian_A : A;
-fun uncivil_A : A;
-fun uncivilized_A : A;
-fun unclaimed_A : A;
-fun unclassified_A : A;
-fun uncle_N : N;
-fun unclean_A : A;
-fun unclear_A : A;
-fun unclouded_A : A;
-fun uncluttered_A : A;
-fun unco_A : A;
-fun unco_Adv : Adv;
-fun unco_operative_A : A;
-fun unco_ordinated_A : A;
-fun uncoloured_A : A;
-fun uncomfortable_A : A;
-fun uncommercialized_A : A;
-fun uncommitted_A : A;
-fun uncommon_A : A;
-fun uncommunicative_A : A;
-fun uncompetitive_A : A;
-fun uncomplaining_A : A;
-fun uncompleted_A : A;
-fun uncomplicated_A : A;
-fun uncomplimentary_A : A;
-fun uncomprehending_A : A;
-fun uncompromising_A : A;
-fun unconcealed_A : A;
-fun unconcern_N : N;
-fun unconcerned_A : A;
-fun unconditional_A : A;
-fun unconditioned_A : A;
-fun unconfined_A : A;
-fun unconfirmed_A : A;
-fun unconformable_A : A;
-fun uncongenial_A : A;
-fun unconnected_A : A;
-fun unconquered_A : A;
-fun unconscionable_A : A;
-fun unconscious_A : A;
-fun unconscious_N : N;
-fun unconsciousness_N : N;
-fun unconsidered_A : A;
-fun unconstitutional_A : A;
-fun unconstrained_A : A;
-fun unconstructive_A : A;
-fun unconsummated_A : A;
-fun uncontaminated_A : A;
-fun uncontrollable_A : A;
-fun uncontrolled_A : A;
-fun uncontroversial_A : A;
-fun unconventional_A : A;
-fun unconventionality_N : N;
-fun unconverted_A : A;
-fun unconvinced_A : A;
-fun unconvincing_A : A;
-fun uncooked_A : A;
-fun uncork_V2 : V2;
-fun uncorrected_A : A;
-fun uncorrelated_A : A;
-fun uncorroborated_A : A;
-fun uncouple_V2 : V2;
-fun uncouth_A : A;
-fun uncouthness_N : N;
-fun uncover_V2 : V2;
-fun uncritical_A : A;
-fun uncross_V2 : V2;
-fun uncrossed_A : A;
-fun uncrowned_A : A;
-fun unction_N : N;
-fun unctuous_A : A;
-fun uncultivated_A : A;
-fun uncultured_A : A;
-fun uncurl_V : V;
-fun uncurl_V2 : V2;
-fun uncut_A : A;
-fun undamaged_A : A;
-fun undated_A : A;
-fun undaunted_A : A;
-fun undeceive_V2 : V2;
-fun undecided_A : A;
-fun undeclared_A : A;
-fun undefeated_A : A;
-fun undefended_A : A;
-fun undeferential_A : A;
-fun undefinable_A : A;
-fun undefined_A : A;
-fun undemanding_A : A;
-fun undemocratic_A : A;
-fun undemocratically_Adv : Adv;
-fun undemonstrative_A : A;
-fun undeniable_A : A;
-fun undenominational_A : A;
-fun under_Adv : Adv;
-fun under_the_counter_A : A;
-fun underact_V : V;
-fun underact_V2 : V2;
-fun underarm_A : A;
-fun underarm_Adv : Adv;
-fun underbelly_N : N;
-fun underbid_V2 : V2;
-fun underbred_A : A;
-fun underbrush_N : N;
-fun undercarriage_N : N;
-fun undercharge_N : N;
-fun undercharge_V2 : V2;
-fun underclothing_N : N;
-fun undercoat_N : N;
-fun undercover_A : A;
-fun undercurrent_N : N;
-fun undercut_N : N;
-fun undercut_V2 : V2;
-fun underdeveloped_A : A;
-fun underdevelopment_N : N;
-fun underdog_N : N;
-fun underdone_A : A;
-fun underemployed_A : A;
-fun underestimate_N : N;
-fun underestimate_V2 : V2;
-fun underestimation_N : N;
-fun underexpose_V2 : V2;
-fun underexposure_N : N;
-fun underfed_A : A;
-fun underfelt_N : N;
-fun underfloor_A : A;
-fun underfoot_Adv : Adv;
-fun undergarment_N : N;
-fun undergo_V2 : V2;
-fun undergraduate_N : N;
-fun underground_A : A;
-fun underground_Adv : Adv;
-fun underground_N : N;
-fun undergrowth_N : N;
-fun underhand_A : A;
-fun underhand_Adv : Adv;
-fun underhanded_A : A;
-fun underhung_A : A;
-fun underlay_N : N;
-fun underlie_V2 : V2;
-fun underline_N : N;
-fun underline_V2 : V2;
-fun underling_N : N;
-fun undermanned_A : A;
-fun undermentioned_A : A;
-fun undermine_V2 : V2;
-fun underneath_Adv : Adv;
-fun undernourished_A : A;
-fun undernourishment_N : N;
-fun underpass_N : N;
-fun underpay_V2 : V2;
-fun underpayment_N : N;
-fun underpin_V2 : V2;
-fun underpopulated_A : A;
-fun underprivileged_A : A;
-fun underproduction_N : N;
-fun underquote_V2 : V2;
-fun underrate_V2 : V2;
-fun underscore_V2 : V2;
-fun undersea_A : A;
-fun underseal_N : N;
-fun undersealed_A : A;
-fun undersecretary_N : N;
-fun undersell_V2 : V2;
-fun undersexed_A : A;
-fun undershoot_V2 : V2;
-fun underside_N : N;
-fun undersign_V2 : V2;
-fun undersized_A : A;
-fun underskirt_N : N;
-fun underslung_A : A;
-fun underspend_V : V;
-fun underspend_V2 : V2;
-fun underspent_A : A;
-fun understaffed_A : A;
-fun understand_V : V;
-fun understand_V2 : V2;
-fun understandable_A : A;
-fun understanding_A : A;
-fun understanding_N : N;
-fun understate_V2 : V2;
-fun understatement_N : N;
-fun understock_V2 : V2;
-fun understudy_N : N;
-fun understudy_V2 : V2;
-fun undersurface_N : N;
-fun undertake_V2 : V2;
-fun undertaker_N : N;
-fun undertaking_N : N;
-fun undertone_N : N;
-fun undertow_N : N;
-fun undervaluation_N : N;
-fun undervalue_V2 : V2;
-fun underwater_A : A;
-fun underwear_N : N;
-fun underweight_A : A;
-fun underworld_N : N;
-fun underwrite_V2 : V2;
-fun underwriter_N : N;
-fun undeserved_A : A;
-fun undeserving_A : A;
-fun undesigned_A : A;
-fun undesirable_A : A;
-fun undesirable_N : N;
-fun undetected_A : A;
-fun undetermined_A : A;
-fun undeterred_A : A;
-fun undeveloped_A : A;
-fun undiagnosed_A : A;
-fun undifferentiated_A : A;
-fun undigested_A : A;
-fun undignified_A : A;
-fun undiluted_A : A;
-fun undiminished_A : A;
-fun undimmed_A : A;
-fun undiplomatic_A : A;
-fun undiplomatically_Adv : Adv;
-fun undischarged_A : A;
-fun undisciplined_A : A;
-fun undisclosed_A : A;
-fun undiscovered_A : A;
-fun undiscriminating_A : A;
-fun undisguised_A : A;
-fun undismayed_A : A;
-fun undisputed_A : A;
-fun undissolved_A : A;
-fun undistinguishable_A : A;
-fun undistinguished_A : A;
-fun undistributed_A : A;
-fun undisturbed_A : A;
-fun undivided_A : A;
-fun undo_V2 : V2;
-fun undock_V : V;
-fun undock_V2 : V2;
-fun undocumented_A : A;
-fun undogmatic_A : A;
-fun undoing_N : N;
-fun undomesticated_A : A;
-fun undone_A : A;
-fun undoubted_A : A;
-fun undramatic_A : A;
-fun undramatically_Adv : Adv;
-fun undreamed_A : A;
-fun undreamed_of_A : A;
-fun undreamt_A : A;
-fun undress_N : N;
-fun undress_V : V;
-fun undress_V2 : V2;
-fun undrinkable_A : A;
-fun undue_A : A;
-fun undulate_V : V;
-fun undulation_N : N;
-fun unduly_Adv : Adv;
-fun undying_A : A;
-fun unearned_A : A;
-fun unearth_V2 : V2;
-fun unearthly_A : A;
-fun unease_N : N;
-fun uneasiness_N : N;
-fun uneasy_A : A;
-fun uneatable_A : A;
-fun uneaten_A : A;
-fun uneconomic_A : A;
-fun uneconomical_A : A;
-fun unedifying_A : A;
-fun unedited_A : A;
-fun uneducated_A : A;
-fun uneffective_A : A;
-fun unelaborated_A : A;
-fun unemotional_A : A;
-fun unemployable_A : A;
-fun unemployed_A : A;
-fun unemployment_N : N;
-fun unending_A : A;
-fun unendurable_A : A;
-fun unenlightened_A : A;
-fun unenterprising_A : A;
-fun unenthusiastic_A : A;
-fun unenthusiastically_Adv : Adv;
-fun unenviable_A : A;
-fun unequal_A : A;
-fun unequalled_A : A;
-fun unequipped_A : A;
-fun unequivocal_A : A;
-fun unerring_A : A;
-fun unesco_PN : PN;
-fun unethical_A : A;
-fun uneven_A : A;
-fun uneventful_A : A;
-fun unexampled_A : A;
-fun unexceeded_A : A;
-fun unexceptionable_A : A;
-fun unexceptional_A : A;
-fun unexciting_A : A;
-fun unexpected_A : A;
-fun unexpectedness_N : N;
-fun unexpired_A : A;
-fun unexplained_A : A;
-fun unexplored_A : A;
-fun unexposed_A : A;
-fun unexpressed_A : A;
-fun unexpurgated_A : A;
-fun unfailing_A : A;
-fun unfair_A : A;
-fun unfairness_N : N;
-fun unfaithful_A : A;
-fun unfaithfulness_N : N;
-fun unfaltering_A : A;
-fun unfamiliar_A : A;
-fun unfamiliarity_N : N;
-fun unfashionable_A : A;
-fun unfasten_V : V;
-fun unfasten_V2 : V2;
-fun unfathomable_A : A;
-fun unfathomed_A : A;
-fun unfavourable_A : A;
-fun unfed_A : A;
-fun unfeeling_A : A;
-fun unfeigned_A : A;
-fun unfermented_A : A;
-fun unfertilized_A : A;
-fun unfettered_A : A;
-fun unfinished_A : A;
-fun unfit_A : A;
-fun unfit_V2 : V2;
-fun unflagging_A : A;
-fun unflappable_A : A;
-fun unfledged_A : A;
-fun unflinching_A : A;
-fun unflurried_A : A;
-fun unfold_V : V;
-fun unfold_V2 : V2;
-fun unforeseeable_A : A;
-fun unforeseen_A : A;
-fun unforgettable_A : A;
-fun unforgivable_A : A;
-fun unforgiving_A : A;
-fun unformed_A : A;
-fun unforthcoming_A : A;
-fun unfortunate_A : A;
-fun unfortunate_N : N;
-fun unfounded_A : A;
-fun unframed_A : A;
-fun unfrequented_A : A;
-fun unfriendliness_N : N;
-fun unfriendly_A : A;
-fun unfrock_V2 : V2;
-fun unfruitful_A : A;
-fun unfulfilled_A : A;
-fun unfurl_V : V;
-fun unfurl_V2 : V2;
-fun unfurnished_A : A;
-fun ungainly_A : A;
-fun ungenerous_A : A;
-fun ungentle_A : A;
-fun ungentlemanly_A : A;
-fun unglazed_A : A;
-fun ungodly_A : A;
-fun ungovernable_A : A;
-fun ungraceful_A : A;
-fun ungracious_A : A;
-fun ungrammatical_A : A;
-fun ungrateful_A : A;
-fun ungratefulness_N : N;
-fun ungrudging_A : A;
-fun unguarded_A : A;
-fun unguent_N : N;
-fun unhallowed_A : A;
-fun unhampered_A : A;
-fun unhand_V2 : V2;
-fun unhappily_Adv : Adv;
-fun unhappiness_N : N;
-fun unhappy_A : A;
-fun unharmed_A : A;
-fun unhealed_A : A;
-fun unhealthy_A : A;
-fun unheard_A : A;
-fun unheard_of_A : A;
-fun unhearing_A : A;
-fun unheated_A : A;
-fun unheeded_A : A;
-fun unhelpful_A : A;
-fun unheralded_A : A;
-fun unhesitating_A : A;
-fun unhindered_A : A;
-fun unhinge_V2 : V2;
-fun unhitch_V : V;
-fun unhitch_V2 : V2;
-fun unholy_A : A;
-fun unhook_V2 : V2;
-fun unhoped_for_A : A;
-fun unhorse_V2 : V2;
-fun unhurried_A : A;
-fun unhurt_A : A;
-fun unhygienic_A : A;
-fun unhygienically_Adv : Adv;
-fun unicef_PN : PN;
-fun unicorn_N : N;
-fun unidentifiable_A : A;
-fun unidentified_A : A;
-fun unification_N : N;
-fun uniform_A : A;
-fun uniform_N : N;
-fun uniformed_A : A;
-fun uniformity_N : N;
-fun unify_V2 : V2;
-fun unilateral_A : A;
-fun unilateralism_N : N;
-fun unilateralist_A : A;
-fun unilateralist_N : N;
-fun unimaginable_A : A;
-fun unimaginative_A : A;
-fun unimpaired_A : A;
-fun unimpeachable_A : A;
-fun unimpeded_A : A;
-fun unimportant_A : A;
-fun unimpressed_A : A;
-fun unimpressive_A : A;
-fun uninfluenced_A : A;
-fun uninformative_A : A;
-fun uninformed_A : A;
-fun uninhabitable_A : A;
-fun uninhabited_A : A;
-fun uninhibited_A : A;
-fun uninitiated_A : A;
-fun uninjured_A : A;
-fun uninspired_A : A;
-fun uninspiring_A : A;
-fun uninsured_A : A;
-fun unintelligent_A : A;
-fun unintelligible_A : A;
-fun unintended_A : A;
-fun unintentional_A : A;
-fun uninterested_A : A;
-fun uninteresting_A : A;
-fun uninterrupted_A : A;
-fun uninvited_A : A;
-fun uninviting_A : A;
-fun union_N : N;
-fun unionist_N : N;
-fun unique_A : A;
-fun uniqueness_N : N;
-fun unisex_A : A;
-fun unison_N : N;
-fun unit_N : N;
-fun unitarian_A : A;
-fun unitarian_N : N;
-fun unitarianism_N : N;
-fun unitary_A : A;
-fun unite_V : V;
-fun unite_V2 : V2;
-fun united_A : A;
-fun unity_N : N;
-fun univ_PN : PN;
-fun universal_A : A;
-fun universality_N : N;
-fun universe_N : N;
-fun university_N : N;
-fun unjust_A : A;
-fun unjustifiable_A : A;
-fun unjustified_A : A;
-fun unkempt_A : A;
-fun unkind_A : A;
-fun unkissed_A : A;
-fun unknowable_A : A;
-fun unknowing_A : A;
-fun unknown_A : A;
-fun unknown_N : N;
-fun unlabelled_A : A;
-fun unladylike_A : A;
-fun unlamented_A : A;
-fun unlatched_A : A;
-fun unlawful_A : A;
-fun unlearn_V2 : V2;
-fun unleash_V2 : V2;
-fun unleavened_A : A;
-fun unlettered_A : A;
-fun unlicensed_A : A;
-fun unlighted_A : A;
-fun unlikable_A : A;
-fun unlike_A : A;
-fun unlikely_A : A;
-fun unlimited_A : A;
-fun unlined_A : A;
-fun unlisted_A : A;
-fun unlit_A : A;
-fun unliterary_A : A;
-fun unload_V : V;
-fun unload_V2 : V2;
-fun unlocated_A : A;
-fun unlock_V : V;
-fun unlock_V2 : V2;
-fun unlooked_for_A : A;
-fun unloose_V2 : V2;
-fun unlovable_A : A;
-fun unloved_A : A;
-fun unlovely_A : A;
-fun unlucky_A : A;
-fun unmade_A : A;
-fun unman_V2 : V2;
-fun unmanageable_A : A;
-fun unmanly_A : A;
-fun unmanned_A : A;
-fun unmannered_A : A;
-fun unmannerly_A : A;
-fun unmarked_A : A;
-fun unmarried_A : A;
-fun unmask_V : V;
-fun unmask_V2 : V2;
-fun unmatchable_A : A;
-fun unmatched_A : A;
-fun unmechanized_A : A;
-fun unmemorable_A : A;
-fun unmentionable_A : A;
-fun unmerciful_A : A;
-fun unmerited_A : A;
-fun unmindful_A : A;
-fun unmingled_A : A;
-fun unmistakable_A : A;
-fun unmitigated_A : A;
-fun unmixed_A : A;
-fun unmodernized_A : A;
-fun unmodified_A : A;
-fun unmolested_A : A;
-fun unmourned_A : A;
-fun unmovable_A : A;
-fun unmoved_A : A;
-fun unmoving_A : A;
-fun unmusical_A : A;
-fun unnamed_A : A;
-fun unnatural_A : A;
-fun unnecessary_A : A;
-fun unnerve_V2 : V2;
-fun unnoticeable_A : A;
-fun unnoticed_A : A;
-fun unnumbered_A : A;
-fun unobjectionable_A : A;
-fun unobservant_A : A;
-fun unobserved_A : A;
-fun unobtainable_A : A;
-fun unobtrusive_A : A;
-fun unobvious_A : A;
-fun unoccupied_A : A;
-fun unofficial_A : A;
-fun unopen_A : A;
-fun unopened_A : A;
-fun unopposed_A : A;
-fun unoriginal_A : A;
-fun unorthodox_A : A;
-fun unpack_V : V;
-fun unpack_V2 : V2;
-fun unpaid_A : A;
-fun unpainted_A : A;
-fun unpalatable_A : A;
-fun unparalleled_A : A;
-fun unpardonable_A : A;
-fun unparliamentary_A : A;
-fun unpatriotic_A : A;
-fun unpatriotically_Adv : Adv;
-fun unpaved_A : A;
-fun unpersuaded_A : A;
-fun unperturbed_A : A;
-fun unpick_V : V;
-fun unpick_V2 : V2;
-fun unplaced_A : A;
-fun unplanned_A : A;
-fun unplayable_A : A;
-fun unpleasant_A : A;
-fun unpleasantness_N : N;
-fun unplug_V : V;
-fun unplug_V2 : V2;
-fun unplumbed_A : A;
-fun unpolluted_A : A;
-fun unpompous_A : A;
-fun unpopular_A : A;
-fun unpopularity_N : N;
-fun unpractised_A : A;
-fun unprecedented_A : A;
-fun unpredictability_N : N;
-fun unpredictable_A : A;
-fun unpredicted_A : A;
-fun unprejudiced_A : A;
-fun unpremeditated_A : A;
-fun unprepared_A : A;
-fun unprepossessing_A : A;
-fun unpretentious_A : A;
-fun unprincipled_A : A;
-fun unprintable_A : A;
-fun unproductive_A : A;
-fun unprofessional_A : A;
-fun unprofitable_A : A;
-fun unpromising_A : A;
-fun unprompted_A : A;
-fun unpronounceable_A : A;
-fun unpropitious_A : A;
-fun unprotected_A : A;
-fun unproved_A : A;
-fun unproven_A : A;
-fun unprovided_A : A;
-fun unprovoked_A : A;
-fun unpublished_A : A;
-fun unpunished_A : A;
-fun unputdownable_A : A;
-fun unqualified_A : A;
-fun unquestionable_A : A;
-fun unquestioned_A : A;
-fun unquestioning_A : A;
-fun unquiet_A : A;
-fun unquotable_A : A;
-fun unquote_Adv : Adv;
-fun unravel_V : V;
-fun unravel_V2 : V2;
-fun unreached_A : A;
-fun unread_A : A;
-fun unreadable_A : A;
-fun unready_A : A;
-fun unreal_A : A;
-fun unrealistic_A : A;
-fun unrealistically_Adv : Adv;
-fun unreality_N : N;
-fun unrealized_A : A;
-fun unreasonable_A : A;
-fun unreasoning_A : A;
-fun unreceptive_A : A;
-fun unreciprocated_A : A;
-fun unrecognizable_A : A;
-fun unrecognized_A : A;
-fun unreconciled_A : A;
-fun unrecorded_A : A;
-fun unredeemable_A : A;
-fun unrefined_A : A;
-fun unreflective_A : A;
-fun unregenerate_A : A;
-fun unregistered_A : A;
-fun unrehearsed_A : A;
-fun unrelated_A : A;
-fun unrelaxed_A : A;
-fun unrelenting_A : A;
-fun unreliable_A : A;
-fun unrelieved_A : A;
-fun unremarkable_A : A;
-fun unremitting_A : A;
-fun unrepeatable_A : A;
-fun unrepentant_A : A;
-fun unrepresentative_A : A;
-fun unrequested_A : A;
-fun unrequited_A : A;
-fun unreserved_A : A;
-fun unresisting_A : A;
-fun unresolved_A : A;
-fun unrest_N : N;
-fun unrestrained_A : A;
-fun unrestricted_A : A;
-fun unrevised_A : A;
-fun unrewarded_A : A;
-fun unrewarding_A : A;
-fun unrhythmical_A : A;
-fun unrighteous_A : A;
-fun unripe_A : A;
-fun unripened_A : A;
-fun unrivalled_A : A;
-fun unroll_V : V;
-fun unroll_V2 : V2;
-fun unromantic_A : A;
-fun unromantically_Adv : Adv;
-fun unruffled_A : A;
-fun unruly_A : A;
-fun unsaddle_V2 : V2;
-fun unsaddled_A : A;
-fun unsafe_A : A;
-fun unsaid_A : A;
-fun unsaleable_A : A;
-fun unsalted_A : A;
-fun unsatisfactory_A : A;
-fun unsatisfied_A : A;
-fun unsatisfying_A : A;
-fun unsaturated_A : A;
-fun unsavoury_A : A;
-fun unsay_V2 : V2;
-fun unscathed_A : A;
-fun unscheduled_A : A;
-fun unscientific_A : A;
-fun unscientifically_Adv : Adv;
-fun unscramble_V2 : V2;
-fun unscrew_V : V;
-fun unscrew_V2 : V2;
-fun unscripted_A : A;
-fun unscrupulous_A : A;
-fun unsealed_A : A;
-fun unseasonable_A : A;
-fun unseasoned_A : A;
-fun unseat_V2 : V2;
-fun unseaworthy_A : A;
-fun unsecured_A : A;
-fun unseeded_A : A;
-fun unseeing_A : A;
-fun unseemly_A : A;
-fun unseen_A : A;
-fun unseen_N : N;
-fun unselected_A : A;
-fun unselective_A : A;
-fun unselfconscious_A : A;
-fun unselfish_A : A;
-fun unselfishness_N : N;
-fun unsettle_V2 : V2;
-fun unsex_V2 : V2;
-fun unsexed_A : A;
-fun unshakable_A : A;
-fun unshaved_A : A;
-fun unshaven_A : A;
-fun unsheathe_V2 : V2;
-fun unshielded_A : A;
-fun unshrinkable_A : A;
-fun unshrinking_A : A;
-fun unshuttered_A : A;
-fun unsighted_A : A;
-fun unsightliness_N : N;
-fun unsightly_A : A;
-fun unsigned_A : A;
-fun unsilenced_A : A;
-fun unsinkable_A : A;
-fun unskilled_A : A;
-fun unsmiling_A : A;
-fun unsociable_A : A;
-fun unsocial_A : A;
-fun unsold_A : A;
-fun unsolicited_A : A;
-fun unsolved_A : A;
-fun unsophisticated_A : A;
-fun unsound_A : A;
-fun unsparing_A : A;
-fun unspeakable_A : A;
-fun unspecialized_A : A;
-fun unspecific_A : A;
-fun unspecifically_Adv : Adv;
-fun unspecified_A : A;
-fun unspectacular_A : A;
-fun unspoiled_A : A;
-fun unspoilt_A : A;
-fun unspoken_A : A;
-fun unsporting_A : A;
-fun unsportsmanlike_A : A;
-fun unspotted_A : A;
-fun unstable_A : A;
-fun unstartling_A : A;
-fun unstated_A : A;
-fun unstatesmanlike_A : A;
-fun unsteady_A : A;
-fun unstoppable_A : A;
-fun unstrained_A : A;
-fun unstressed_A : A;
-fun unstructured_A : A;
-fun unstrung_A : A;
-fun unstuck_A : A;
-fun unstudied_A : A;
-fun unsubtle_A : A;
-fun unsuccessful_A : A;
-fun unsuitability_N : N;
-fun unsuitable_A : A;
-fun unsuited_A : A;
-fun unsullied_A : A;
-fun unsung_A : A;
-fun unsupervised_A : A;
-fun unsupported_A : A;
-fun unsure_A : A;
-fun unsurpassed_A : A;
-fun unsuspected_A : A;
-fun unsuspecting_A : A;
-fun unsuspicious_A : A;
-fun unswayed_A : A;
-fun unsweetened_A : A;
-fun unswept_A : A;
-fun unswerving_A : A;
-fun unsyllabic_A : A;
-fun unsympathetic_A : A;
-fun unsympathetically_Adv : Adv;
-fun unsystematic_A : A;
-fun unsystematically_Adv : Adv;
-fun untainted_A : A;
-fun untamed_A : A;
-fun untapped_A : A;
-fun untarnished_A : A;
-fun untaxed_A : A;
-fun untenable_A : A;
-fun untenanted_A : A;
-fun untended_A : A;
-fun untested_A : A;
-fun untethered_A : A;
-fun unthinkable_A : A;
-fun unthinking_A : A;
-fun unthought_of_A : A;
-fun untidily_Adv : Adv;
-fun untidiness_N : N;
-fun untidy_A : A;
-fun untie_V : V;
-fun untie_V2 : V2;
-fun untimely_A : A;
-fun untiring_A : A;
-fun untitled_A : A;
-fun untold_A : A;
-fun untouchable_A : A;
-fun untouchable_N : N;
-fun untouched_A : A;
-fun untoward_A : A;
-fun untrained_A : A;
-fun untrammelled_A : A;
-fun untranslatable_A : A;
-fun untreated_A : A;
-fun untried_A : A;
-fun untroubled_A : A;
-fun untrue_A : A;
-fun untruly_Adv : Adv;
-fun untrustworthy_A : A;
-fun untruth_N : N;
-fun untruthful_A : A;
-fun untucked_A : A;
-fun unturned_A : A;
-fun untutored_A : A;
-fun untwisted_A : A;
-fun untypical_A : A;
-fun unused_A : A;
-fun unusual_A : A;
-fun unutterable_A : A;
-fun unvaried_A : A;
-fun unvarnished_A : A;
-fun unvarying_A : A;
-fun unveil_V : V;
-fun unveil_V2 : V2;
-fun unverified_A : A;
-fun unversed_A : A;
-fun unvigilant_A : A;
-fun unvoiced_A : A;
-fun unwanted_A : A;
-fun unwarrantably_Adv : Adv;
-fun unwarranted_A : A;
-fun unwary_A : A;
-fun unwashed_A : A;
-fun unwavering_A : A;
-fun unweaned_A : A;
-fun unwearied_A : A;
-fun unwed_A : A;
-fun unwelcome_A : A;
-fun unwell_A : A;
-fun unwholesome_A : A;
-fun unwieldiness_N : N;
-fun unwieldy_A : A;
-fun unwilling_A : A;
-fun unwillingness_N : N;
-fun unwind_V : V;
-fun unwind_V2 : V2;
-fun unwise_A : A;
-fun unwitnessed_A : A;
-fun unwitting_A : A;
-fun unwonted_A : A;
-fun unworkable_A : A;
-fun unworkmanlike_A : A;
-fun unworldly_A : A;
-fun unworn_A : A;
-fun unworried_A : A;
-fun unworthiness_N : N;
-fun unworthy_A : A;
-fun unwrap_V : V;
-fun unwrap_V2 : V2;
-fun unwritten_A : A;
-fun unyielding_A : A;
-fun unzip_V2 : V2;
-fun up_Adv : Adv;
-fun up_V : V;
-fun up_V2 : V2;
-fun up_and_coming_A : A;
-fun up_beat_N : N;
-fun up_holland_PN : PN;
-fun up_market_A : A;
-fun up_to_date_A : A;
-fun up_to_the_minute_A : A;
-fun upbraid_V2 : V2;
-fun upbraiding_N : N;
-fun upbringing_N : N;
-fun upcountry_A : A;
-fun upcountry_Adv : Adv;
-fun update_V2 : V2;
-fun upgrade_N : N;
-fun upgrade_V2 : V2;
-fun upheaval_N : N;
-fun uphill_A : A;
-fun uphill_Adv : Adv;
-fun uphold_V2 : V2;
-fun upholster_V2 : V2;
-fun upholsterer_N : N;
-fun upholstery_N : N;
-fun upkeep_N : N;
-fun upland_N : N;
-fun uplift_N : N;
-fun uplift_V2 : V2;
-fun upmost_A : A;
-fun upper_A : A;
-fun upper_N : N;
-fun uppercut_N : N;
-fun uppermost_A : A;
-fun uppermost_Adv : Adv;
-fun uppish_A : A;
-fun uppishness_N : N;
-fun uppity_A : A;
-fun upright_A : A;
-fun upright_N : N;
-fun uprightness_N : N;
-fun uprising_N : N;
-fun uproar_N : N;
-fun uproarious_A : A;
-fun uproot_V2 : V2;
-fun upset_N : N;
-fun upset_V : V;
-fun upset_V2 : V2;
-fun upshot_N : N;
-fun upside_down_Adv : Adv;
-fun upstage_A : A;
-fun upstage_Adv : Adv;
-fun upstage_V2 : V2;
-fun upstairs_A : A;
-fun upstairs_Adv : Adv;
-fun upstanding_A : A;
-fun upstart_A : A;
-fun upstart_N : N;
-fun upstream_Adv : Adv;
-fun upsurge_N : N;
-fun uptake_N : N;
-fun uptight_A : A;
-fun upton_PN : PN;
-fun uptown_A : A;
-fun uptown_Adv : Adv;
-fun upturn_N : N;
-fun upturned_A : A;
-fun upward_A : A;
-fun upward_Adv : Adv;
-fun upwards_Adv : Adv;
-fun uranium_N : N;
-fun uranus_PN : PN;
-fun urban_A : A;
-fun urbane_A : A;
-fun urbanity_N : N;
-fun urbanization_N : N;
-fun urbanize_V2 : V2;
-fun urchin_N : N;
-fun urdu_A : A;
-fun urdu_N : N;
-fun urge_N : N;
-fun urge_V2 : V2;
-fun urgency_N : N;
-fun urgent_A : A;
-fun urging_N : N;
-fun uric_A : A;
-fun urinal_N : N;
-fun urinary_A : A;
-fun urinate_V : V;
-fun urine_N : N;
-fun urn_N : N;
-fun ursula_PN : PN;
-fun uruguay_PN : PN;
-fun uruguayan_A : A;
-fun uruguayan_N : N;
-fun urumchi_PN : PN;
-fun us_PN : PN;
-fun usa_PN : PN;
-fun usable_A : A;
-fun usaf_N : N;
-fun usage_N : N;
-fun use_N : N;
-fun use_V2 : V2;
-fun used_A : A;
-fun useful_A : A;
-fun usefulness_N : N;
-fun useless_A : A;
-fun uselessness_N : N;
-fun user_N : N;
-fun ushaw_moor_PN : PN;
-fun usher_N : N;
-fun usher_V2 : V2;
-fun usherette_N : N;
-fun usn_N : N;
-fun uss_N : N;
-fun ussr_N : N;
-fun usual_A : A;
-fun usurer_N : N;
-fun usurious_A : A;
-fun usurp_V2 : V2;
-fun usurpation_N : N;
-fun usurper_N : N;
-fun usury_N : N;
-fun utah_PN : PN;
-fun utensil_N : N;
-fun uterine_A : A;
-fun uterus_N : N;
-fun utilitarian_A : A;
-fun utilitarian_N : N;
-fun utilitarianism_N : N;
-fun utility_N : N;
-fun utilizable_A : A;
-fun utilization_N : N;
-fun utilize_V2 : V2;
-fun utmost_A : A;
-fun utmost_N : N;
-fun utopia_N : N;
-fun utopian_A : A;
-fun utrecht_PN : PN;
-fun utter_A : A;
-fun utter_V2 : V2;
-fun utterance_N : N;
-fun uttermost_A : A;
-fun uttermost_N : N;
-fun uttoxeter_PN : PN;
-fun uvula_N : N;
-fun uvular_A : A;
-fun uxorious_A : A;
-fun uxoriousness_N : N;
-fun v_and_a_N : N;
-fun vac_N : N;
-fun vacancy_N : N;
-fun vacant_A : A;
-fun vacate_V2 : V2;
-fun vacation_N : N;
-fun vacation_V : V;
-fun vacationist_N : N;
-fun vaccinate_V2 : V2;
-fun vaccination_N : N;
-fun vaccine_N : N;
-fun vacillate_V : V;
-fun vacillation_N : N;
-fun vacuity_N : N;
-fun vacuous_A : A;
-fun vacuum_N : N;
-fun vade_mecum_N : N;
-fun vagabond_A : A;
-fun vagabond_N : N;
-fun vagary_N : N;
-fun vagina_N : N;
-fun vaginal_A : A;
-fun vagrancy_N : N;
-fun vagrant_A : A;
-fun vagrant_N : N;
-fun vague_A : A;
-fun vagueness_N : N;
-fun vain_A : A;
-fun vainglorious_A : A;
-fun vainglory_N : N;
-fun valance_N : N;
-fun vale_N : N;
-fun valediction_N : N;
-fun valedictory_A : A;
-fun valence_N : N;
-fun valencia_PN : PN;
-fun valenciennes_PN : PN;
-fun valency_N : N;
-fun valentine_N : N;
-fun valerian_N : N;
-fun valet_N : N;
-fun valet_V2 : V2;
-fun valetudinarian_A : A;
-fun valetudinarian_N : N;
-fun valiant_A : A;
-fun valid_A : A;
-fun validate_V2 : V2;
-fun validity_N : N;
-fun valise_N : N;
-fun valladolid_PN : PN;
-fun valley_N : N;
-fun valorous_A : A;
-fun valour_N : N;
-fun valuable_A : A;
-fun valuable_N : N;
-fun valuation_N : N;
-fun value_N : N;
-fun value_V2 : V2;
-fun value_added_A : A;
-fun valueless_A : A;
-fun valuer_N : N;
-fun valve_N : N;
-fun valvular_A : A;
-fun vamoose_V : V;
-fun vamp_N : N;
-fun vamp_V : V;
-fun vamp_V2 : V2;
-fun vampire_N : N;
-fun van_N : N;
-fun vancouver_PN : PN;
-fun vandal_N : N;
-fun vandalism_N : N;
-fun vane_N : N;
-fun vanessa_PN : PN;
-fun vanguard_N : N;
-fun vanilla_N : N;
-fun vanish_V : V;
-fun vanity_N : N;
-fun vanquish_V2 : V2;
-fun vantage_N : N;
-fun vantage_point_N : N;
-fun vapid_A : A;
-fun vapidity_N : N;
-fun vapidness_N : N;
-fun vaporization_N : N;
-fun vaporize_V : V;
-fun vaporize_V2 : V2;
-fun vaporous_A : A;
-fun vapour_N : N;
-fun vapour_bath_N : N;
-fun varanasi_PN : PN;
-fun variability_N : N;
-fun variable_A : A;
-fun variable_N : N;
-fun variableness_N : N;
-fun variance_N : N;
-fun variant_A : A;
-fun variant_N : N;
-fun variation_N : N;
-fun varicoloured_A : A;
-fun varicose_A : A;
-fun varied_A : A;
-fun variegated_A : A;
-fun variegation_N : N;
-fun variety_N : N;
-fun variform_A : A;
-fun variorum_A : A;
-fun various_A : A;
-fun varlet_N : N;
-fun varnish_N : N;
-fun varnish_V2 : V2;
-fun varsity_N : N;
-fun vary_V : V;
-fun vary_V2 : V2;
-fun vascular_A : A;
-fun vase_N : N;
-fun vasectomy_N : N;
-fun vaseline_N : N;
-fun vassal_N : N;
-fun vassalage_N : N;
-fun vast_A : A;
-fun vasteras_PN : PN;
-fun vastness_N : N;
-fun vat_N : N;
-fun vatican_N : N;
-fun vaudeville_N : N;
-fun vault_N : N;
-fun vault_V : V;
-fun vault_V2 : V2;
-fun vaulted_A : A;
-fun vaulter_N : N;
-fun vaulting_horse_N : N;
-fun vaunt_N : N;
-fun vaunt_V : V;
-fun vaunt_V2 : V2;
-fun vaunter_N : N;
-fun vauntingly_Adv : Adv;
-fun vc_N : N;
-fun vd_N : N;
-fun veal_N : N;
-fun vector_N : N;
-fun veer_V : V;
-fun vegetable_A : A;
-fun vegetable_N : N;
-fun vegetarian_N : N;
-fun vegetate_V : V;
-fun vegetation_N : N;
-fun vehemence_N : N;
-fun vehement_A : A;
-fun vehicle_N : N;
-fun vehicular_A : A;
-fun veil_N : N;
-fun veil_V2 : V2;
-fun veiling_N : N;
-fun vein_N : N;
-fun veined_A : A;
-fun veld_N : N;
-fun vellum_N : N;
-fun velocipede_N : N;
-fun velocity_N : N;
-fun velour_N : N;
-fun velvet_N : N;
-fun velveteen_N : N;
-fun velvety_A : A;
-fun venal_A : A;
-fun venality_N : N;
-fun vend_V2 : V2;
-fun vendee_N : N;
-fun vender_N : N;
-fun vendetta_N : N;
-fun vendor_N : N;
-fun veneer_N : N;
-fun veneer_V2 : V2;
-fun venerable_A : A;
-fun venerate_V2 : V2;
-fun veneration_N : N;
-fun venereal_A : A;
-fun venetian_A : A;
-fun venezia_PN : PN;
-fun venezuela_PN : PN;
-fun venezuelan_A : A;
-fun venezuelan_N : N;
-fun vengeance_N : N;
-fun vengeful_A : A;
-fun venial_A : A;
-fun venice_PN : PN;
-fun venison_N : N;
-fun venom_N : N;
-fun venomed_A : A;
-fun venomous_A : A;
-fun venous_A : A;
-fun vent_N : N;
-fun vent_V2 : V2;
-fun vent_hole_N : N;
-fun ventilate_V2 : V2;
-fun ventilation_N : N;
-fun ventilator_N : N;
-fun ventnor_PN : PN;
-fun ventral_A : A;
-fun ventricle_N : N;
-fun ventricular_A : A;
-fun ventriloquism_N : N;
-fun ventriloquist_N : N;
-fun venture_N : N;
-fun venture_V : V;
-fun venture_V2 : V2;
-fun venturesome_A : A;
-fun venturous_A : A;
-fun venue_N : N;
-fun venus_PN : PN;
-fun vera_PN : PN;
-fun veracious_A : A;
-fun veracity_N : N;
-fun veranda_N : N;
-fun verandah_N : N;
-fun verb_N : N;
-fun verbal_A : A;
-fun verbalize_V2 : V2;
-fun verbatim_A : A;
-fun verbatim_Adv : Adv;
-fun verbena_N : N;
-fun verbiage_N : N;
-fun verbose_A : A;
-fun verboseness_N : N;
-fun verbosity_N : N;
-fun verdancy_N : N;
-fun verdant_A : A;
-fun verdict_N : N;
-fun verdigris_N : N;
-fun verdure_N : N;
-fun verey_A : A;
-fun verge_N : N;
-fun verge_V : V;
-fun verger_N : N;
-fun verifiable_A : A;
-fun verification_N : N;
-fun verify_V2 : V2;
-fun verisimilitude_N : N;
-fun veritable_A : A;
-fun verity_N : N;
-fun vermicelli_N : N;
-fun vermiform_A : A;
-fun vermilion_A : A;
-fun vermilion_N : N;
-fun vermin_N : N;
-fun verminous_A : A;
-fun vermont_PN : PN;
-fun vermouth_N : N;
-fun vernacular_A : A;
-fun vernacular_N : N;
-fun vernal_A : A;
-fun vernon_PN : PN;
-fun verona_PN : PN;
-fun veronica_N : N;
-fun veronica_PN : PN;
-fun verruca_N : N;
-fun versatile_A : A;
-fun versatility_N : N;
-fun verse_N : N;
-fun versed_A : A;
-fun versification_N : N;
-fun versifier_N : N;
-fun versify_V : V;
-fun versify_V2 : V2;
-fun version_N : N;
-fun verso_N : N;
-fun vertebra_N : N;
-fun vertebrate_A : A;
-fun vertebrate_N : N;
-fun vertex_N : N;
-fun vertical_A : A;
-fun vertical_N : N;
-fun vertiginous_A : A;
-fun vertigo_N : N;
-fun verve_N : N;
-fun very_A : A;
-fun very_Adv : Adv;
-fun vesicle_N : N;
-fun vesicular_A : A;
-fun vessel_N : N;
-fun vest_N : N;
-fun vest_V : V;
-fun vest_V2 : V2;
-fun vestal_A : A;
-fun vestal_N : N;
-fun vestibule_N : N;
-fun vestige_N : N;
-fun vestigial_A : A;
-fun vestment_N : N;
-fun vestry_N : N;
-fun vestryman_N : N;
-fun vesture_N : N;
-fun vesture_V2 : V2;
-fun vet_N : N;
-fun vet_V2 : V2;
-fun vetch_N : N;
-fun veteran_N : N;
-fun veterinary_A : A;
-fun veto_N : N;
-fun veto_V2 : V2;
-fun vex_V2 : V2;
-fun vexation_N : N;
-fun vexatious_A : A;
-fun vhf_PN : PN;
-fun via_media_N : N;
-fun viability_N : N;
-fun viable_A : A;
-fun viaduct_N : N;
-fun vial_N : N;
-fun vibrant_A : A;
-fun vibraphone_N : N;
-fun vibrate_V : V;
-fun vibrate_V2 : V2;
-fun vibration_N : N;
-fun vibrato_N : N;
-fun vibrator_N : N;
-fun vic_PN : PN;
-fun vicar_N : N;
-fun vicarage_N : N;
-fun vicarious_A : A;
-fun vice_N : N;
-fun vice_versa_Adv : Adv;
-fun vicenza_PN : PN;
-fun viceregal_A : A;
-fun vicereine_N : N;
-fun viceroy_N : N;
-fun vicinity_N : N;
-fun vicious_A : A;
-fun viciousness_N : N;
-fun vicissitude_N : N;
-fun vicky_PN : PN;
-fun victim_N : N;
-fun victimization_N : N;
-fun victimize_V2 : V2;
-fun victor_N : N;
-fun victor_PN : PN;
-fun victoria_N : N;
-fun victoria_PN : PN;
-fun victorian_A : A;
-fun victorian_N : N;
-fun victoriana_N : N;
-fun victorious_A : A;
-fun victory_N : N;
-fun victual_N : N;
-fun victual_V : V;
-fun victual_V2 : V2;
-fun victualler_N : N;
-fun vicuna_N : N;
-fun videlicet_Adv : Adv;
-fun video_N : N;
-fun videotape_N : N;
-fun videotape_V2 : V2;
-fun vie_V : V;
-fun vienna_PN : PN;
-fun vietnam_PN : PN;
-fun vietnamese_A : A;
-fun vietnamese_N : N;
-fun view_N : N;
-fun view_V2 : V2;
-fun viewer_N : N;
-fun viewfinder_N : N;
-fun viewless_A : A;
-fun viewpark_PN : PN;
-fun viewpoint_N : N;
-fun vigil_N : N;
-fun vigilance_N : N;
-fun vigilant_A : A;
-fun vigilante_N : N;
-fun vignette_N : N;
-fun vigo_PN : PN;
-fun vigorous_A : A;
-fun vigour_N : N;
-fun viking_N : N;
-fun vile_A : A;
-fun vileness_N : N;
-fun vilification_N : N;
-fun vilify_V2 : V2;
-fun villa_N : N;
-fun village_N : N;
-fun villager_N : N;
-fun villain_N : N;
-fun villainess_N : N;
-fun villainous_A : A;
-fun villainy_N : N;
-fun villein_N : N;
-fun villeinage_N : N;
-fun vim_N : N;
-fun vinaigrette_N : N;
-fun vince_PN : PN;
-fun vincent_PN : PN;
-fun vindicate_V2 : V2;
-fun vindication_N : N;
-fun vindictive_A : A;
-fun vindictiveness_N : N;
-fun vine_N : N;
-fun vinegar_N : N;
-fun vinegary_A : A;
-fun vinery_N : N;
-fun vineyard_N : N;
-fun vino_N : N;
-fun vinous_A : A;
-fun vintage_N : N;
-fun vintner_N : N;
-fun vinyl_N : N;
-fun viol_N : N;
-fun viola_N : N;
-fun viola_PN : PN;
-fun violate_V2 : V2;
-fun violation_N : N;
-fun violence_N : N;
-fun violent_A : A;
-fun violet_N : N;
-fun violet_PN : PN;
-fun violin_N : N;
-fun violinist_N : N;
-fun vip_N : N;
-fun viper_N : N;
-fun vips_N : N;
-fun virago_N : N;
-fun virgin_A : A;
-fun virgin_N : N;
-fun virginal_A : A;
-fun virginal_N : N;
-fun virginia_N : N;
-fun virginia_PN : PN;
-fun virginia_water_PN : PN;
-fun virginity_N : N;
-fun virgo_PN : PN;
-fun virgule_N : N;
-fun virile_A : A;
-fun virility_N : N;
-fun virology_N : N;
-fun virtu_N : N;
-fun virtual_A : A;
-fun virtue_N : N;
-fun virtuosity_N : N;
-fun virtuoso_N : N;
-fun virtuous_A : A;
-fun virulence_N : N;
-fun virulent_A : A;
-fun virus_N : N;
-fun vis_a_vis_Adv : Adv;
-fun visa_N : N;
-fun visa_V2 : V2;
-fun visage_N : N;
-fun visaged_A : A;
-fun visceral_A : A;
-fun viscid_A : A;
-fun viscosity_N : N;
-fun viscount_N : N;
-fun viscountcy_N : N;
-fun viscountess_N : N;
-fun viscous_A : A;
-fun visibility_N : N;
-fun visible_A : A;
-fun vision_N : N;
-fun visionary_A : A;
-fun visionary_N : N;
-fun visit_N : N;
-fun visit_V : V;
-fun visit_V2 : V2;
-fun visitant_N : N;
-fun visitation_N : N;
-fun visiting_N : N;
-fun visitor_N : N;
-fun visor_N : N;
-fun vista_N : N;
-fun visual_A : A;
-fun visualization_N : N;
-fun visualize_V2 : V2;
-fun vital_A : A;
-fun vitalism_N : N;
-fun vitalist_N : N;
-fun vitality_N : N;
-fun vitalize_V2 : V2;
-fun vitamin_N : N;
-fun vitiate_V2 : V2;
-fun vitoria_PN : PN;
-fun vitreous_A : A;
-fun vitrify_V : V;
-fun vitrify_V2 : V2;
-fun vitriol_N : N;
-fun vitriolic_A : A;
-fun vituperate_V2 : V2;
-fun vituperation_N : N;
-fun vituperative_A : A;
-fun viv_PN : PN;
-fun viva_N : N;
-fun viva_voce_A : A;
-fun viva_voce_Adv : Adv;
-fun viva_voce_N : N;
-fun vivace_Adv : Adv;
-fun vivacious_A : A;
-fun vivacity_N : N;
-fun vivian_PN : PN;
-fun vivid_A : A;
-fun vividness_N : N;
-fun vivien_PN : PN;
-fun vivienne_PN : PN;
-fun viviparous_A : A;
-fun vivisect_V2 : V2;
-fun vivisection_N : N;
-fun vivisectionist_N : N;
-fun vixen_N : N;
-fun vixenish_A : A;
-fun viz_PN : PN;
-fun vizier_N : N;
-fun vocabulary_N : N;
-fun vocal_A : A;
-fun vocalist_N : N;
-fun vocalize_V2 : V2;
-fun vocation_N : N;
-fun vocational_A : A;
-fun vocative_A : A;
-fun vocative_N : N;
-fun vociferate_V : V;
-fun vociferate_V2 : V2;
-fun vociferation_N : N;
-fun vociferous_A : A;
-fun vodka_N : N;
-fun vogue_N : N;
-fun voice_N : N;
-fun voice_V2 : V2;
-fun voiced_A : A;
-fun voiceless_A : A;
-fun void_A : A;
-fun void_N : N;
-fun void_V2 : V2;
-fun voile_N : N;
-fun vol_N : N;
-fun volatile_A : A;
-fun volatility_N : N;
-fun volcanic_A : A;
-fun volcano_N : N;
-fun vole_N : N;
-fun volgograd_PN : PN;
-fun volition_N : N;
-fun volitional_A : A;
-fun volley_N : N;
-fun volley_V : V;
-fun volley_V2 : V2;
-fun volleyball_N : N;
-fun vols_N : N;
-fun volt_N : N;
-fun voltage_N : N;
-fun volte_face_N : N;
-fun volubility_N : N;
-fun voluble_A : A;
-fun volume_N : N;
-fun voluminous_A : A;
-fun voluntary_A : A;
-fun voluntary_N : N;
-fun volunteer_N : N;
-fun volunteer_V : V;
-fun volunteer_V2 : V2;
-fun voluptuary_N : N;
-fun voluptuous_A : A;
-fun voluptuousness_N : N;
-fun volute_N : N;
-fun voluted_A : A;
-fun vomit_N : N;
-fun vomit_V : V;
-fun vomit_V2 : V2;
-fun voodoo_N : N;
-fun voodooism_N : N;
-fun voracious_A : A;
-fun voracity_N : N;
-fun voronezh_PN : PN;
-fun vortex_N : N;
-fun votary_N : N;
-fun vote_N : N;
-fun vote_V : V;
-fun vote_V2 : V2;
-fun voteless_A : A;
-fun voter_N : N;
-fun votive_A : A;
-fun vouch_V : V;
-fun voucher_N : N;
-fun vouchsafe_V2 : V2;
-fun vow_N : N;
-fun vow_V2 : V2;
-fun vowel_N : N;
-fun vox_N : N;
-fun vox_populi_N : N;
-fun voyage_N : N;
-fun voyage_V : V;
-fun voyager_N : N;
-fun voyeur_N : N;
-fun voyeurism_N : N;
-fun voyeuristic_A : A;
-fun voyeuristically_Adv : Adv;
-fun vp_N : N;
-fun vs_PN : PN;
-fun vso_PN : PN;
-fun vulcanite_N : N;
-fun vulcanization_N : N;
-fun vulcanize_V2 : V2;
-fun vulgar_A : A;
-fun vulgarian_N : N;
-fun vulgarism_N : N;
-fun vulgarity_N : N;
-fun vulgarization_N : N;
-fun vulgarize_V2 : V2;
-fun vulgate_N : N;
-fun vulnerability_N : N;
-fun vulnerable_A : A;
-fun vulpine_A : A;
-fun vulture_N : N;
-fun vulva_N : N;
-fun wad_N : N;
-fun wad_V2 : V2;
-fun wadding_N : N;
-fun waddle_N : N;
-fun waddle_V : V;
-fun wade_V : V;
-fun wade_V2 : V2;
-fun wader_N : N;
-fun wadi_N : N;
-fun wafer_N : N;
-fun waffle_N : N;
-fun waffle_V : V;
-fun waft_N : N;
-fun waft_V2 : V2;
-fun wag_N : N;
-fun wag_V : V;
-fun wag_V2 : V2;
-fun wage_N : N;
-fun wage_V2 : V2;
-fun wage_claim_N : N;
-fun wage_earner_N : N;
-fun wage_freeze_N : N;
-fun wager_N : N;
-fun wager_V : V;
-fun wager_V2 : V2;
-fun waggery_N : N;
-fun waggish_A : A;
-fun waggishness_N : N;
-fun waggle_V : V;
-fun waggle_V2 : V2;
-fun waggon_N : N;
-fun waggoner_N : N;
-fun wagon_lit_N : N;
-fun wagtail_N : N;
-fun waif_N : N;
-fun wail_N : N;
-fun wail_V : V;
-fun wail_V2 : V2;
-fun wain_N : N;
-fun wainscot_N : N;
-fun wainscoted_A : A;
-fun waist_N : N;
-fun waist_deep_A : A;
-fun waist_deep_Adv : Adv;
-fun waist_high_A : A;
-fun waist_high_Adv : Adv;
-fun waistband_N : N;
-fun waistcoat_N : N;
-fun waistline_N : N;
-fun wait_N : N;
-fun wait_V : V;
-fun wait_V2 : V2;
-fun waiter_N : N;
-fun waiting_list_N : N;
-fun waiting_room_N : N;
-fun waitress_N : N;
-fun waive_V2 : V2;
-fun waiver_N : N;
-fun wake_N : N;
-fun wake_V : V;
-fun wake_V2 : V2;
-fun wakefield_PN : PN;
-fun wakeful_A : A;
-fun wakefulness_N : N;
-fun waken_V : V;
-fun waken_V2 : V2;
-fun waking_A : A;
-fun wale_N : N;
-fun wales_PN : PN;
-fun walk_N : N;
-fun walk_V : V;
-fun walk_V2 : V2;
-fun walkabout_N : N;
-fun walkaway_N : N;
-fun walker_N : N;
-fun walkie_talkie_N : N;
-fun walking_N : N;
-fun walkout_N : N;
-fun walkover_N : N;
-fun wall_N : N;
-fun wall_V2 : V2;
-fun wall_eyed_A : A;
-fun wall_painting_N : N;
-fun wall_street_PN : PN;
-fun wallaby_N : N;
-fun wallace_PN : PN;
-fun wallah_N : N;
-fun wallasey_PN : PN;
-fun wallet_N : N;
-fun wallflower_N : N;
-fun wallingford_PN : PN;
-fun wallop_N : N;
-fun wallop_V2 : V2;
-fun walloping_A : A;
-fun wallow_N : N;
-fun wallow_V : V;
-fun wallpaper_N : N;
-fun wallsend_PN : PN;
-fun wally_PN : PN;
-fun walnut_N : N;
-fun walrus_N : N;
-fun walsall_PN : PN;
-fun walsham_PN : PN;
-fun walter_PN : PN;
-fun waltham_forest_PN : PN;
-fun walton_PN : PN;
-fun waltz_N : N;
-fun waltz_V : V;
-fun waltz_V2 : V2;
-fun wampum_N : N;
-fun wan_A : A;
-fun wand_N : N;
-fun wander_V : V;
-fun wander_V2 : V2;
-fun wanderer_N : N;
-fun wanderlust_N : N;
-fun wandsworth_PN : PN;
-fun wane_N : N;
-fun wane_V : V;
-fun wangle_N : N;
-fun wangle_V2 : V2;
-fun wank_N : N;
-fun wank_V : V;
-fun wanness_N : N;
-fun want_N : N;
-fun want_V : V;
-fun want_V2 : V2;
-fun want_ad_N : N;
-fun wantage_PN : PN;
-fun wanton_A : A;
-fun wanton_N : N;
-fun wanton_V : V;
-fun wantonness_N : N;
-fun war_N : N;
-fun war_V : V;
-fun war_baby_N : N;
-fun war_bride_N : N;
-fun war_cloud_N : N;
-fun war_cry_N : N;
-fun war_dance_N : N;
-fun war_god_N : N;
-fun war_torn_A : A;
-fun war_widow_N : N;
-fun warble_N : N;
-fun warble_V : V;
-fun warble_V2 : V2;
-fun warbler_N : N;
-fun ward_N : N;
-fun ward_V2 : V2;
-fun warden_N : N;
-fun warder_N : N;
-fun wardress_N : N;
-fun wardrobe_N : N;
-fun wardroom_N : N;
-fun ware_N : N;
-fun ware_PN : PN;
-fun ware_V2 : V2;
-fun warehouse_N : N;
-fun warehousing_N : N;
-fun warfare_N : N;
-fun warhead_N : N;
-fun warhorse_N : N;
-fun warily_Adv : Adv;
-fun wariness_N : N;
-fun warley_PN : PN;
-fun warlike_A : A;
-fun warlord_N : N;
-fun warm_A : A;
-fun warm_V : V;
-fun warm_V2 : V2;
-fun warm_blooded_A : A;
-fun warm_hearted_A : A;
-fun warmer_N : N;
-fun warming_pan_N : N;
-fun warminster_PN : PN;
-fun warmonger_N : N;
-fun warmth_N : N;
-fun warn_V2 : V2;
-fun warning_A : A;
-fun warning_N : N;
-fun warp_N : N;
-fun warp_V : V;
-fun warp_V2 : V2;
-fun warpaint_N : N;
-fun warpath_N : N;
-fun warrant_N : N;
-fun warrant_V2 : V2;
-fun warrantee_N : N;
-fun warrantor_N : N;
-fun warranty_N : N;
-fun warren_N : N;
-fun warrington_PN : PN;
-fun warrior_N : N;
-fun warsaw_PN : PN;
-fun warship_N : N;
-fun warsop_PN : PN;
-fun wart_N : N;
-fun warthog_N : N;
-fun wartime_N : N;
-fun warwick_PN : PN;
-fun warwickshire_PN : PN;
-fun wary_A : A;
-fun wash_N : N;
-fun wash_V : V;
-fun wash_V2 : V2;
-fun wash_drawing_N : N;
-fun wash_hand_basin_N : N;
-fun wash_hand_stand_N : N;
-fun wash_house_N : N;
-fun wash_leather_N : N;
-fun washable_A : A;
-fun washbasin_N : N;
-fun washboard_N : N;
-fun washbowl_N : N;
-fun washcloth_N : N;
-fun washday_N : N;
-fun washer_N : N;
-fun washerwoman_N : N;
-fun washing_N : N;
-fun washing_day_N : N;
-fun washing_machine_N : N;
-fun washing_up_N : N;
-fun washington_PN : PN;
-fun washington_dc_PN : PN;
-fun washout_N : N;
-fun washroom_N : N;
-fun washstand_N : N;
-fun washtub_N : N;
-fun washy_A : A;
-fun wasp_N : N;
-fun wasp_waisted_A : A;
-fun waspish_A : A;
-fun wassail_N : N;
-fun wastage_N : N;
-fun waste_A : A;
-fun waste_N : N;
-fun waste_V : V;
-fun waste_V2 : V2;
-fun waste_paper_basket_N : N;
-fun waste_pipe_N : N;
-fun wastebasket_N : N;
-fun wastebin_N : N;
-fun wasteful_A : A;
-fun wasteland_N : N;
-fun waster_N : N;
-fun wastrel_N : N;
-fun watch_N : N;
-fun watch_V : V;
-fun watch_V2 : V2;
-fun watch_chain_N : N;
-fun watch_glass_N : N;
-fun watch_guard_N : N;
-fun watch_key_N : N;
-fun watchdog_N : N;
-fun watcher_N : N;
-fun watchful_A : A;
-fun watchfulness_N : N;
-fun watchmaker_N : N;
-fun watchman_N : N;
-fun watchtower_N : N;
-fun watchword_N : N;
-fun water_N : N;
-fun water_V : V;
-fun water_V2 : V2;
-fun water_biscuit_N : N;
-fun water_blister_N : N;
-fun water_bottle_N : N;
-fun water_buffalo_N : N;
-fun water_butt_N : N;
-fun water_cart_N : N;
-fun water_closet_N : N;
-fun water_finder_N : N;
-fun water_glass_N : N;
-fun water_hole_N : N;
-fun water_ice_N : N;
-fun water_jacket_N : N;
-fun water_level_N : N;
-fun water_lily_N : N;
-fun water_line_N : N;
-fun water_main_N : N;
-fun water_nymph_N : N;
-fun water_polo_N : N;
-fun water_power_N : N;
-fun water_rat_N : N;
-fun water_rate_N : N;
-fun water_skiing_N : N;
-fun water_skin_N : N;
-fun water_softener_N : N;
-fun water_spaniel_N : N;
-fun water_supply_N : N;
-fun water_tower_N : N;
-fun water_vole_N : N;
-fun water_waggon_N : N;
-fun water_wagon_N : N;
-fun water_wheel_N : N;
-fun water_worn_A : A;
-fun waterbird_N : N;
-fun waterborne_A : A;
-fun watercannon_N : N;
-fun waterchute_N : N;
-fun watercolour_N : N;
-fun watercolourist_N : N;
-fun watercourse_N : N;
-fun watercress_N : N;
-fun waterfall_N : N;
-fun waterford_PN : PN;
-fun waterfowl_N : N;
-fun waterfront_N : N;
-fun waterhen_N : N;
-fun waterhyacinth_N : N;
-fun watering_can_N : N;
-fun watering_cart_N : N;
-fun waterless_A : A;
-fun waterlogged_A : A;
-fun waterloo_PN : PN;
-fun waterman_N : N;
-fun watermark_N : N;
-fun watermelon_N : N;
-fun watermill_N : N;
-fun waterproof_A : A;
-fun waterproof_N : N;
-fun waterproof_V2 : V2;
-fun watershed_N : N;
-fun waterside_N : N;
-fun waterspout_N : N;
-fun watertable_N : N;
-fun watertight_A : A;
-fun waterway_N : N;
-fun waterworks_N : N;
-fun watery_A : A;
-fun watford_PN : PN;
-fun watt_N : N;
-fun wattage_N : N;
-fun wattle_N : N;
-fun wave_N : N;
-fun wave_V : V;
-fun wave_V2 : V2;
-fun wavelength_N : N;
-fun waver_V : V;
-fun waverer_N : N;
-fun wavy_A : A;
-fun wax_N : N;
-fun wax_V : V;
-fun wax_V2 : V2;
-fun wax_chandler_N : N;
-fun wax_paper_N : N;
-fun waxen_A : A;
-fun waxwork_N : N;
-fun waxy_A : A;
-fun way_Adv : Adv;
-fun way_N : N;
-fun way_out_A : A;
-fun waybill_N : N;
-fun wayfarer_N : N;
-fun wayfaring_A : A;
-fun waylay_V2 : V2;
-fun wayne_PN : PN;
-fun wayside_N : N;
-fun wayward_A : A;
-fun wc_N : N;
-fun wcs_N : N;
-fun weak_A : A;
-fun weak_kneed_A : A;
-fun weaken_V : V;
-fun weaken_V2 : V2;
-fun weakling_N : N;
-fun weakly_A : A;
-fun weakness_N : N;
-fun weal_N : N;
-fun weald_N : N;
-fun wealth_N : N;
-fun wealthily_Adv : Adv;
-fun wealthy_A : A;
-fun wean_V2 : V2;
-fun weapon_N : N;
-fun weaponless_A : A;
-fun wear_N : N;
-fun wear_PN : PN;
-fun wear_V : V;
-fun wear_V2 : V2;
-fun wearable_A : A;
-fun wearer_N : N;
-fun wearily_Adv : Adv;
-fun weariness_N : N;
-fun wearing_A : A;
-fun wearisome_A : A;
-fun weary_A : A;
-fun weary_V : V;
-fun weary_V2 : V2;
-fun weasel_N : N;
-fun weather_N : N;
-fun weather_V : V;
-fun weather_V2 : V2;
-fun weather_beaten_A : A;
-fun weather_bound_A : A;
-fun weather_bureau_N : N;
-fun weather_chart_N : N;
-fun weather_glass_N : N;
-fun weather_map_N : N;
-fun weather_ship_N : N;
-fun weather_station_N : N;
-fun weather_vane_N : N;
-fun weatherboarding_N : N;
-fun weathercock_N : N;
-fun weatherman_N : N;
-fun weatherproof_A : A;
-fun weave_N : N;
-fun weave_V : V;
-fun weave_V2 : V2;
-fun weaver_N : N;
-fun weaverbird_N : N;
-fun web_N : N;
-fun web_footed_A : A;
-fun web_toed_A : A;
-fun webbed_A : A;
-fun webbing_N : N;
-fun wed_PN : PN;
-fun wed_V : V;
-fun wed_V2 : V2;
-fun wedding_N : N;
-fun wedding_cake_N : N;
-fun wedding_ring_N : N;
-fun wedge_N : N;
-fun wedge_V2 : V2;
-fun wedlock_N : N;
-fun wednesday_N : N;
-fun wednesday_PN : PN;
-fun wee_A : A;
-fun wee_N : N;
-fun wee_V : V;
-fun wee_wee_N : N;
-fun weed_N : N;
-fun weed_V : V;
-fun weed_V2 : V2;
-fun weedkiller_N : N;
-fun weedy_A : A;
-fun week_N : N;
-fun weekday_N : N;
-fun weekend_N : N;
-fun weekend_V : V;
-fun weekender_N : N;
-fun weekly_A : A;
-fun weekly_Adv : Adv;
-fun weekly_N : N;
-fun weeny_A : A;
-fun weep_V : V;
-fun weep_V2 : V2;
-fun weeping_A : A;
-fun weevil_N : N;
-fun weft_N : N;
-fun weigh_V : V;
-fun weigh_V2 : V2;
-fun weighbridge_N : N;
-fun weighing_machine_N : N;
-fun weight_N : N;
-fun weight_V2 : V2;
-fun weightily_Adv : Adv;
-fun weightiness_N : N;
-fun weightless_A : A;
-fun weightlessness_N : N;
-fun weightlifting_N : N;
-fun weighty_A : A;
-fun weir_N : N;
-fun weird_A : A;
-fun weirdie_N : N;
-fun weirdness_N : N;
-fun welcome_A : A;
-fun welcome_N : N;
-fun welcome_V2 : V2;
-fun weld_N : N;
-fun weld_V : V;
-fun weld_V2 : V2;
-fun welder_N : N;
-fun welfare_N : N;
-fun welkin_N : N;
-fun well_A : A;
-fun well_Adv : Adv;
-fun well_N : N;
-fun well_V : V;
-fun well_adjusted_A : A;
-fun well_advised_A : A;
-fun well_appointed_A : A;
-fun well_balanced_A : A;
-fun well_behaved_A : A;
-fun well_being_N : N;
-fun well_born_A : A;
-fun well_bred_A : A;
-fun well_conducted_A : A;
-fun well_connected_A : A;
-fun well_disposed_A : A;
-fun well_doer_N : N;
-fun well_doing_N : N;
-fun well_favoured_A : A;
-fun well_found_A : A;
-fun well_founded_A : A;
-fun well_groomed_A : A;
-fun well_grounded_A : A;
-fun well_heeled_A : A;
-fun well_informed_A : A;
-fun well_intentioned_A : A;
-fun well_knit_A : A;
-fun well_known_A : A;
-fun well_lined_A : A;
-fun well_marked_A : A;
-fun well_meaning_A : A;
-fun well_meant_A : A;
-fun well_nigh_Adv : Adv;
-fun well_read_A : A;
-fun well_rounded_A : A;
-fun well_set_A : A;
-fun well_shaven_A : A;
-fun well_spoken_A : A;
-fun well_timed_A : A;
-fun well_to_do_A : A;
-fun well_tried_A : A;
-fun well_turned_A : A;
-fun well_water_N : N;
-fun well_wisher_N : N;
-fun well_worn_A : A;
-fun wellhead_N : N;
-fun wellingborough_PN : PN;
-fun wellington_N : N;
-fun wellington_PN : PN;
-fun wells_PN : PN;
-fun welsh_A : A;
-fun welsh_N : N;
-fun welsh_V : V;
-fun welsher_N : N;
-fun welshman_N : N;
-fun welshpool_PN : PN;
-fun welt_N : N;
-fun welter_A : A;
-fun welter_N : N;
-fun welter_V : V;
-fun welterweight_N : N;
-fun welwyn_PN : PN;
-fun welwyn_garden_city_PN : PN;
-fun wen_N : N;
-fun wench_N : N;
-fun wench_V : V;
-fun wend_V2 : V2;
-fun wendover_PN : PN;
-fun wendy_PN : PN;
-fun werewolf_N : N;
-fun wesleyan_A : A;
-fun wesleyan_N : N;
-fun west_A : A;
-fun west_Adv : Adv;
-fun west_N : N;
-fun west_bromwich_PN : PN;
-fun west_country_A : A;
-fun west_end_A : A;
-fun westbury_PN : PN;
-fun westerly_A : A;
-fun westerly_Adv : Adv;
-fun western_A : A;
-fun western_N : N;
-fun westerner_N : N;
-fun westernization_N : N;
-fun westernize_V2 : V2;
-fun westernmost_A : A;
-fun westhoughton_PN : PN;
-fun westmeath_PN : PN;
-fun westminster_PN : PN;
-fun westmoreland_PN : PN;
-fun weston_super_mare_PN : PN;
-fun westward_A : A;
-fun westward_Adv : Adv;
-fun westwards_Adv : Adv;
-fun wet_A : A;
-fun wet_N : N;
-fun wet_V2 : V2;
-fun wet_nurse_N : N;
-fun wether_N : N;
-fun wetherby_PN : PN;
-fun wetting_N : N;
-fun wexford_PN : PN;
-fun weymouth_PN : PN;
-fun whack_N : N;
-fun whack_V2 : V2;
-fun whacked_A : A;
-fun whacker_N : N;
-fun whacking_A : A;
-fun whacking_Adv : Adv;
-fun whacking_N : N;
-fun whale_N : N;
-fun whale_V : V;
-fun whalebone_N : N;
-fun whaler_N : N;
-fun whaley_bridge_PN : PN;
-fun whaling_gun_N : N;
-fun whang_Adv : Adv;
-fun whang_N : N;
-fun whang_V2 : V2;
-fun wharf_N : N;
-fun wharfage_N : N;
-fun what_A : A;
-fun what_for_N : N;
-fun whate'er_A : A;
-fun whatever_A : A;
-fun whatnot_N : N;
-fun whatsoe'er_A : A;
-fun whatsoever_A : A;
-fun wheat_N : N;
-fun wheaten_A : A;
-fun wheatley_hill_PN : PN;
-fun wheedle_V2 : V2;
-fun wheel_N : N;
-fun wheel_V : V;
-fun wheel_V2 : V2;
-fun wheelbarrow_N : N;
-fun wheelbase_N : N;
-fun wheelchair_N : N;
-fun wheelhouse_N : N;
-fun wheelwright_N : N;
-fun wheeze_N : N;
-fun wheeze_V : V;
-fun wheeze_V2 : V2;
-fun wheezily_Adv : Adv;
-fun wheeziness_N : N;
-fun wheezy_A : A;
-fun whelk_N : N;
-fun whelp_N : N;
-fun whelp_V : V;
-fun when_Adv : Adv;
-fun whence_Adv : Adv;
-fun whencesoever_A : A;
-fun whenever_Adv : Adv;
-fun where_Adv : Adv;
-fun whereabouts_Adv : Adv;
-fun whereat_Adv : Adv;
-fun whereby_Adv : Adv;
-fun wherefore_Adv : Adv;
-fun wherein_Adv : Adv;
-fun whereof_Adv : Adv;
-fun whereon_Adv : Adv;
-fun wheresoever_Adv : Adv;
-fun whereto_Adv : Adv;
-fun whereunto_Adv : Adv;
-fun whereupon_Adv : Adv;
-fun wherever_Adv : Adv;
-fun wherewith_Adv : Adv;
-fun wherewithal_Adv : Adv;
-fun wherewithal_N : N;
-fun wherry_N : N;
-fun whet_V2 : V2;
-fun whetstone_N : N;
-fun whey_N : N;
-fun which_A : A;
-fun whichever_A : A;
-fun whichsoever_A : A;
-fun whiff_N : N;
-fun whig_N : N;
-fun while_N : N;
-fun while_V2 : V2;
-fun whim_N : N;
-fun whimper_N : N;
-fun whimper_V : V;
-fun whimper_V2 : V2;
-fun whimsey_N : N;
-fun whimsical_A : A;
-fun whimsicality_N : N;
-fun whimsy_N : N;
-fun whin_N : N;
-fun whine_N : N;
-fun whine_V : V;
-fun whine_V2 : V2;
-fun whiner_N : N;
-fun whinny_N : N;
-fun whinny_V : V;
-fun whip_N : N;
-fun whip_V : V;
-fun whip_V2 : V2;
-fun whip_round_N : N;
-fun whipcord_N : N;
-fun whipper_in_N : N;
-fun whippersnapper_N : N;
-fun whippet_N : N;
-fun whipping_N : N;
-fun whipping_boy_N : N;
-fun whipping_post_N : N;
-fun whipping_top_N : N;
-fun whippoorwill_N : N;
-fun whippy_A : A;
-fun whir_N : N;
-fun whir_V : V;
-fun whirl_N : N;
-fun whirl_V : V;
-fun whirl_V2 : V2;
-fun whirligig_N : N;
-fun whirlpool_N : N;
-fun whirlwind_N : N;
-fun whirr_N : N;
-fun whirr_V : V;
-fun whisk_N : N;
-fun whisk_V : V;
-fun whisk_V2 : V2;
-fun whisker_N : N;
-fun whiskered_A : A;
-fun whiskey_N : N;
-fun whisky_N : N;
-fun whisper_N : N;
-fun whisper_V : V;
-fun whisper_V2 : V2;
-fun whisperer_N : N;
-fun whispering_N : N;
-fun whispering_gallery_N : N;
-fun whist_N : N;
-fun whist_drive_N : N;
-fun whistle_N : N;
-fun whistle_V : V;
-fun whistle_V2 : V2;
-fun whistle_stop_N : N;
-fun whit_N : N;
-fun whitburn_PN : PN;
-fun whitby_PN : PN;
-fun whitchurch_PN : PN;
-fun white_A : A;
-fun white_N : N;
-fun white_collar_A : A;
-fun white_hot_A : A;
-fun white_lipped_A : A;
-fun white_livered_A : A;
-fun whitebait_N : N;
-fun whitehall_PN : PN;
-fun whitehaven_PN : PN;
-fun whiten_V : V;
-fun whiten_V2 : V2;
-fun whiteness_N : N;
-fun whitening_N : N;
-fun whitethorn_N : N;
-fun whitewash_N : N;
-fun whitewash_V2 : V2;
-fun whither_Adv : Adv;
-fun whithersoever_Adv : Adv;
-fun whiting_N : N;
-fun whitish_A : A;
-fun whitley_bay_PN : PN;
-fun whitlow_N : N;
-fun whitstable_PN : PN;
-fun whitsun_N : N;
-fun whitsun_PN : PN;
-fun whitsuntide_N : N;
-fun whitsuntide_PN : PN;
-fun whittle_V : V;
-fun whittle_V2 : V2;
-fun whittle_le_woods_PN : PN;
-fun whittlesey_PN : PN;
-fun whitworth_PN : PN;
-fun whiz_N : N;
-fun whiz_V : V;
-fun whizz_kid_N : N;
-fun who_N : N;
-fun whodunit_N : N;
-fun whole_A : A;
-fun whole_N : N;
-fun whole_wheat_N : N;
-fun wholehearted_A : A;
-fun wholeheartedness_N : N;
-fun wholemeal_N : N;
-fun wholesale_A : A;
-fun wholesale_Adv : Adv;
-fun wholesale_N : N;
-fun wholesaler_N : N;
-fun wholesome_A : A;
-fun wholly_Adv : Adv;
-fun whoop_N : N;
-fun whoop_V : V;
-fun whoop_V2 : V2;
-fun whoopee_N : N;
-fun whooping_cough_N : N;
-fun whop_V2 : V2;
-fun whopper_N : N;
-fun whopping_A : A;
-fun whopping_Adv : Adv;
-fun whore_N : N;
-fun whoremonger_N : N;
-fun whorl_N : N;
-fun whorled_A : A;
-fun why_Adv : Adv;
-fun why_N : N;
-fun wi_N : N;
-fun wick_N : N;
-fun wick_PN : PN;
-fun wicked_A : A;
-fun wickedness_N : N;
-fun wicker_N : N;
-fun wickerwork_N : N;
-fun wicket_N : N;
-fun wicket_door_N : N;
-fun wicket_gate_N : N;
-fun wicket_keeper_N : N;
-fun wickford_PN : PN;
-fun wicklow_PN : PN;
-fun wide_A : A;
-fun wide_Adv : Adv;
-fun wide_awake_A : A;
-fun widen_V : V;
-fun widen_V2 : V2;
-fun widespread_A : A;
-fun widgeon_N : N;
-fun widnes_PN : PN;
-fun widow_N : N;
-fun widowed_A : A;
-fun widower_N : N;
-fun widowhood_N : N;
-fun width_N : N;
-fun wield_V2 : V2;
-fun wiesbaden_PN : PN;
-fun wife_N : N;
-fun wifelike_A : A;
-fun wifely_A : A;
-fun wig_N : N;
-fun wigan_PN : PN;
-fun wigged_A : A;
-fun wigging_N : N;
-fun wiggle_N : N;
-fun wiggle_V : V;
-fun wiggle_V2 : V2;
-fun wight_N : N;
-fun wight_PN : PN;
-fun wigwam_N : N;
-fun wild_A : A;
-fun wild_Adv : Adv;
-fun wildcat_A : A;
-fun wildebeest_N : N;
-fun wilderness_N : N;
-fun wildfire_N : N;
-fun wildness_N : N;
-fun wile_N : N;
-fun wilf_PN : PN;
-fun wilfrid_PN : PN;
-fun wilful_A : A;
-fun wilfulness_N : N;
-fun wilhelmshaven_PN : PN;
-fun will_N : N;
-fun will_PN : PN;
-fun will_V : V;
-fun will_V2 : V2;
-fun will_o'_the_wisp_N : N;
-fun willed_A : A;
-fun willful_A : A;
-fun william_PN : PN;
-fun willie_PN : PN;
-fun willing_A : A;
-fun willingness_N : N;
-fun willington_PN : PN;
-fun willow_N : N;
-fun willow_pattern_N : N;
-fun willow_tree_N : N;
-fun willowy_A : A;
-fun willpower_N : N;
-fun willy_PN : PN;
-fun willy_nilly_Adv : Adv;
-fun wilmslow_PN : PN;
-fun wilt_V : V;
-fun wilt_V2 : V2;
-fun wilton_N : N;
-fun wiltshire_PN : PN;
-fun wily_A : A;
-fun wimbourne_PN : PN;
-fun wimbourne_minster_PN : PN;
-fun wimple_N : N;
-fun win_N : N;
-fun win_V : V;
-fun win_V2 : V2;
-fun wince_N : N;
-fun wince_V2 : V2;
-fun winceyette_N : N;
-fun winch_N : N;
-fun winch_V2 : V2;
-fun winchester_PN : PN;
-fun wind_N : N;
-fun wind_V : V;
-fun wind_V2 : V2;
-fun wind_gauge_N : N;
-fun wind_tunnel_N : N;
-fun windbag_N : N;
-fun windblown_A : A;
-fun windbreak_N : N;
-fun windbreaker_N : N;
-fun windcheater_N : N;
-fun windermere_PN : PN;
-fun windfall_N : N;
-fun windflower_N : N;
-fun windily_Adv : Adv;
-fun windiness_N : N;
-fun winding_sheet_N : N;
-fun windjammer_N : N;
-fun windlass_N : N;
-fun windless_A : A;
-fun windmill_N : N;
-fun window_N : N;
-fun window_box_N : N;
-fun window_dressing_N : N;
-fun windowpane_N : N;
-fun windowsill_N : N;
-fun windpipe_N : N;
-fun windscreen_N : N;
-fun windscreen_wiper_N : N;
-fun windshield_N : N;
-fun windsock_N : N;
-fun windsor_PN : PN;
-fun windswept_A : A;
-fun windward_A : A;
-fun windward_N : N;
-fun windy_A : A;
-fun wine_N : N;
-fun wine_V2 : V2;
-fun wineglass_N : N;
-fun winepress_N : N;
-fun wineskin_N : N;
-fun wing_N : N;
-fun wing_V : V;
-fun wing_V2 : V2;
-fun wing_commander_N : N;
-fun wing_nut_N : N;
-fun wing_screw_N : N;
-fun wingate_PN : PN;
-fun winged_A : A;
-fun winger_N : N;
-fun wingless_A : A;
-fun wingspan_N : N;
-fun wingspread_N : N;
-fun winifred_PN : PN;
-fun wink_N : N;
-fun wink_V : V;
-fun wink_V2 : V2;
-fun winkle_N : N;
-fun winkle_V2 : V2;
-fun winner_N : N;
-fun winnie_PN : PN;
-fun winning_post_N : N;
-fun winnipeg_PN : PN;
-fun winnow_V2 : V2;
-fun winsford_PN : PN;
-fun winsome_A : A;
-fun winsomeness_N : N;
-fun winter_N : N;
-fun winter_V : V;
-fun wintery_A : A;
-fun wintry_A : A;
-fun wipe_N : N;
-fun wipe_V : V;
-fun wipe_V2 : V2;
-fun wiper_N : N;
-fun wire_N : N;
-fun wire_V : V;
-fun wire_V2 : V2;
-fun wire_haired_A : A;
-fun wireless_A : A;
-fun wireless_N : N;
-fun wirepuller_N : N;
-fun wireworm_N : N;
-fun wiring_N : N;
-fun wiry_A : A;
-fun wisbech_PN : PN;
-fun wisconsin_PN : PN;
-fun wisdom_N : N;
-fun wisdom_tooth_N : N;
-fun wise_A : A;
-fun wise_N : N;
-fun wiseacre_N : N;
-fun wisecrack_N : N;
-fun wisecrack_V : V;
-fun wish_N : N;
-fun wish_V : V;
-fun wish_V2 : V2;
-fun wishbone_N : N;
-fun wishful_A : A;
-fun wishing_cap_N : N;
-fun wishy_washy_A : A;
-fun wisp_N : N;
-fun wispy_A : A;
-fun wisteria_N : N;
-fun wistful_A : A;
-fun wit_N : N;
-fun witch_N : N;
-fun witch_doctor_N : N;
-fun witch_elm_N : N;
-fun witch_hazel_N : N;
-fun witch_hunt_N : N;
-fun witchcraft_N : N;
-fun witchery_N : N;
-fun witching_A : A;
-fun withal_Adv : Adv;
-fun witham_PN : PN;
-fun withdraw_V : V;
-fun withdraw_V2 : V2;
-fun withdrawal_N : N;
-fun withe_N : N;
-fun wither_V : V;
-fun wither_V2 : V2;
-fun witheringly_Adv : Adv;
-fun withernsea_PN : PN;
-fun withhold_V2 : V2;
-fun within_Prep : Prep;
-fun without_Prep : Prep;
-fun withstand_V2 : V2;
-fun withy_N : N;
-fun witless_A : A;
-fun witness_N : N;
-fun witness_V : V;
-fun witness_V2 : V2;
-fun witness_box_N : N;
-fun witness_stand_N : N;
-fun witney_PN : PN;
-fun witticism_N : N;
-fun wittily_Adv : Adv;
-fun wittingly_Adv : Adv;
-fun witty_A : A;
-fun wive_V : V;
-fun wive_V2 : V2;
-fun wizard_A : A;
-fun wizard_N : N;
-fun wizardry_N : N;
-fun wizened_A : A;
-fun wk_N : N;
-fun woad_N : N;
-fun wobble_V : V;
-fun wobble_V2 : V2;
-fun wobbler_N : N;
-fun wobbly_A : A;
-fun woburn_PN : PN;
-fun woe_N : N;
-fun woebegone_A : A;
-fun woeful_A : A;
-fun wokingham_PN : PN;
-fun wold_N : N;
-fun wolf's_bane_N : N;
-fun wolf_N : N;
-fun wolf_V2 : V2;
-fun wolf_cub_N : N;
-fun wolfhound_N : N;
-fun wolfish_A : A;
-fun wolfram_N : N;
-fun wolverhampton_PN : PN;
-fun wolverton_PN : PN;
-fun woman_N : N;
-fun womanhood_N : N;
-fun womanish_A : A;
-fun womanize_V : V;
-fun womanizer_N : N;
-fun womankind_N : N;
-fun womanlike_A : A;
-fun womanly_A : A;
-fun womb_N : N;
-fun wombat_N : N;
-fun wombourne_PN : PN;
-fun wonder_N : N;
-fun wonder_V : V;
-fun wonder_V2 : V2;
-fun wonder_struck_A : A;
-fun wonderful_A : A;
-fun wonderingly_Adv : Adv;
-fun wonderland_N : N;
-fun wonderment_N : N;
-fun wondrous_A : A;
-fun wondrous_Adv : Adv;
-fun wonky_A : A;
-fun wont_A : A;
-fun wont_N : N;
-fun wonted_A : A;
-fun woo_V2 : V2;
-fun wood_N : N;
-fun wood_block_N : N;
-fun wood_pulp_N : N;
-fun woodbine_N : N;
-fun woodbridge_PN : PN;
-fun woodcock_N : N;
-fun woodcraft_N : N;
-fun woodcut_N : N;
-fun woodcutter_N : N;
-fun wooded_A : A;
-fun wooden_A : A;
-fun woodenheaded_A : A;
-fun woodland_N : N;
-fun woodlouse_N : N;
-fun woodman_N : N;
-fun woodpecker_N : N;
-fun woodpile_N : N;
-fun woodshed_N : N;
-fun woodsman_N : N;
-fun woodwind_N : N;
-fun woodwork_N : N;
-fun woodworm_N : N;
-fun woody_A : A;
-fun wooer_N : N;
-fun woof_N : N;
-fun woofer_N : N;
-fun wool_N : N;
-fun woolen_A : A;
-fun woolgathering_A : A;
-fun woolgathering_N : N;
-fun woollen_A : A;
-fun woolly_A : A;
-fun wooly_A : A;
-fun wooly_N : N;
-fun wootton_bassett_PN : PN;
-fun worcester_PN : PN;
-fun word_N : N;
-fun word_V2 : V2;
-fun word_division_N : N;
-fun word_painter_N : N;
-fun word_perfect_A : A;
-fun word_picture_N : N;
-fun word_splitting_N : N;
-fun wordbook_N : N;
-fun wordily_Adv : Adv;
-fun wordiness_N : N;
-fun wording_N : N;
-fun wordless_A : A;
-fun wordy_A : A;
-fun work_N : N;
-fun work_V : V;
-fun work_V2 : V2;
-fun work_in_N : N;
-fun work_out_N : N;
-fun work_study_N : N;
-fun workable_A : A;
-fun workaday_A : A;
-fun workbag_N : N;
-fun workbasket_N : N;
-fun workbench_N : N;
-fun workbook_N : N;
-fun workbox_N : N;
-fun workday_N : N;
-fun worker_N : N;
-fun workhouse_N : N;
-fun working_A : A;
-fun working_N : N;
-fun working_class_A : A;
-fun working_out_N : N;
-fun workington_PN : PN;
-fun workman_N : N;
-fun workmanlike_A : A;
-fun workmanship_N : N;
-fun workmate_N : N;
-fun workroom_N : N;
-fun workshop_N : N;
-fun workshy_A : A;
-fun worksop_PN : PN;
-fun worktable_N : N;
-fun world_N : N;
-fun world_weary_A : A;
-fun worldliness_N : N;
-fun worldly_A : A;
-fun worldwide_A : A;
-fun worm_N : N;
-fun worm_V2 : V2;
-fun worm_eaten_A : A;
-fun worm_gear_N : N;
-fun wormcast_N : N;
-fun wormhole_N : N;
-fun wormwood_N : N;
-fun wormy_A : A;
-fun worried_A : A;
-fun worrisome_A : A;
-fun worry_N : N;
-fun worry_V : V;
-fun worry_V2 : V2;
-fun worrying_A : A;
-fun worse_Adv : Adv;
-fun worse_N : N;
-fun worsen_V : V;
-fun worsen_V2 : V2;
-fun worship_N : N;
-fun worship_V : V;
-fun worship_V2 : V2;
-fun worshipful_A : A;
-fun worshipper_N : N;
-fun worst_Adv : Adv;
-fun worst_N : N;
-fun worst_V2 : V2;
-fun worsted_N : N;
-fun worth_A : A;
-fun worth_N : N;
-fun worthily_Adv : Adv;
-fun worthiness_N : N;
-fun worthing_PN : PN;
-fun worthless_A : A;
-fun worthlessness_N : N;
-fun worthwhile_A : A;
-fun worthy_A : A;
-fun worthy_N : N;
-fun would_be_A : A;
-fun wound_N : N;
-fun wound_V2 : V2;
-fun wow_N : N;
-fun wpb_N : N;
-fun wpm_N : N;
-fun wrac_N : N;
-fun wrack_N : N;
-fun wraf_N : N;
-fun wraith_N : N;
-fun wrangle_N : N;
-fun wrangle_V : V;
-fun wrap_N : N;
-fun wrap_V : V;
-fun wrap_V2 : V2;
-fun wrapper_N : N;
-fun wrapping_N : N;
-fun wrath_N : N;
-fun wrathful_A : A;
-fun wreak_V2 : V2;
-fun wreath_N : N;
-fun wreathe_V : V;
-fun wreathe_V2 : V2;
-fun wreck_N : N;
-fun wreck_V2 : V2;
-fun wreckage_N : N;
-fun wrecker_N : N;
-fun wren_N : N;
-fun wrench_N : N;
-fun wrench_V2 : V2;
-fun wrest_V2 : V2;
-fun wrestle_N : N;
-fun wrestle_V : V;
-fun wrestler_N : N;
-fun wretch_N : N;
-fun wretched_A : A;
-fun wretchedness_N : N;
-fun wrexham_PN : PN;
-fun wrick_N : N;
-fun wrick_V2 : V2;
-fun wriggle_N : N;
-fun wriggle_V : V;
-fun wriggle_V2 : V2;
-fun wriggler_N : N;
-fun wright_N : N;
-fun wring_N : N;
-fun wring_V2 : V2;
-fun wringer_N : N;
-fun wrinkle_N : N;
-fun wrinkle_V : V;
-fun wrinkle_V2 : V2;
-fun wrinkly_A : A;
-fun wrist_N : N;
-fun wristband_N : N;
-fun wristlet_N : N;
-fun wristwatch_N : N;
-fun writ_N : N;
-fun writ_large_A : A;
-fun write_V : V;
-fun write_V2 : V2;
-fun write_off_N : N;
-fun write_up_N : N;
-fun writer_N : N;
-fun writhe_V : V;
-fun writing_N : N;
-fun writing_desk_N : N;
-fun writing_ink_N : N;
-fun writing_paper_N : N;
-fun writtle_PN : PN;
-fun wrns_N : N;
-fun wroclaw_PN : PN;
-fun wrong_A : A;
-fun wrong_Adv : Adv;
-fun wrong_N : N;
-fun wrong_V2 : V2;
-fun wrong_headed_A : A;
-fun wrongdoer_N : N;
-fun wrongdoing_N : N;
-fun wrongful_A : A;
-fun wroth_A : A;
-fun wroughton_PN : PN;
-fun wry_A : A;
-fun wt_N : N;
-fun wuhan_PN : PN;
-fun wuppertal_PN : PN;
-fun wurzburg_PN : PN;
-fun wusih_PN : PN;
-fun wycombe_PN : PN;
-fun wymondham_PN : PN;
-fun wyoming_PN : PN;
-fun wythall_PN : PN;
-fun x_ray_N : N;
-fun x_ray_V2 : V2;
-fun xenophobia_N : N;
-fun xerox_N : N;
-fun xerox_V2 : V2;
-fun xmas_N : N;
-fun xmas_PN : PN;
-fun xylophone_N : N;
-fun yacht_N : N;
-fun yacht_V : V;
-fun yacht_club_N : N;
-fun yachting_N : N;
-fun yachtsman_N : N;
-fun yahoo_N : N;
-fun yak_N : N;
-fun yam_N : N;
-fun yammer_V : V;
-fun yank_N : N;
-fun yank_V2 : V2;
-fun yankee_N : N;
-fun yap_N : N;
-fun yap_V : V;
-fun yard_N : N;
-fun yard_measure_N : N;
-fun yardarm_N : N;
-fun yardstick_N : N;
-fun yarmouth_PN : PN;
-fun yarn_N : N;
-fun yarn_V : V;
-fun yaroslavi_PN : PN;
-fun yarrow_N : N;
-fun yashmak_N : N;
-fun yate_PN : PN;
-fun yateley_PN : PN;
-fun yaw_N : N;
-fun yaw_V : V;
-fun yawl_N : N;
-fun yawn_N : N;
-fun yawn_V : V;
-fun yea_Adv : Adv;
-fun yea_N : N;
-fun yeah_Adv : Adv;
-fun year_N : N;
-fun yearbook_N : N;
-fun yearling_N : N;
-fun yearlong_A : A;
-fun yearly_A : A;
-fun yearly_Adv : Adv;
-fun yearn_V : V;
-fun yearning_N : N;
-fun yearningly_Adv : Adv;
-fun yeast_N : N;
-fun yeasty_A : A;
-fun yell_N : N;
-fun yell_V : V;
-fun yell_V2 : V2;
-fun yellow_A : A;
-fun yellow_N : N;
-fun yellow_V : V;
-fun yellow_V2 : V2;
-fun yellow_bellied_A : A;
-fun yellow_flag_N : N;
-fun yellowish_A : A;
-fun yellowness_N : N;
-fun yelp_V : V;
-fun yemen_PN : PN;
-fun yemeni_A : A;
-fun yemeni_N : N;
-fun yen_N : N;
-fun yen_V : V;
-fun yeoman_N : N;
-fun yeomanry_N : N;
-fun yeovil_PN : PN;
-fun yerevan_PN : PN;
-fun yes_N : N;
-fun yesterday_Adv : Adv;
-fun yesterday_N : N;
-fun yet_Adv : Adv;
-fun yeti_N : N;
-fun yew_N : N;
-fun yew_tree_N : N;
-fun yha_N : N;
-fun yiddish_N : N;
-fun yield_N : N;
-fun yield_V : V;
-fun yield_V2 : V2;
-fun yielding_A : A;
-fun ymca_N : N;
-fun yo_yo_N : N;
-fun yob_N : N;
-fun yobo_N : N;
-fun yodel_N : N;
-fun yodel_V : V;
-fun yodel_V2 : V2;
-fun yodeller_N : N;
-fun yoga_N : N;
-fun yoghourt_N : N;
-fun yoghurt_N : N;
-fun yogi_N : N;
-fun yogurt_N : N;
-fun yoke_N : N;
-fun yoke_V : V;
-fun yoke_V2 : V2;
-fun yokel_N : N;
-fun yokohama_PN : PN;
-fun yolk_N : N;
-fun yon_A : A;
-fun yon_Adv : Adv;
-fun yonder_A : A;
-fun yonder_Adv : Adv;
-fun yore_N : N;
-fun york_PN : PN;
-fun yorkley_PN : PN;
-fun yorkshire_PN : PN;
-fun young_A : A;
-fun young_N : N;
-fun youngish_A : A;
-fun youngster_N : N;
-fun youth_N : N;
-fun youthful_A : A;
-fun youthfulness_N : N;
-fun yowl_V : V;
-fun yr_N : N;
-fun ystradgynlais_PN : PN;
-fun yugoslav_A : A;
-fun yugoslav_N : N;
-fun yugoslavia_PN : PN;
-fun yugoslavian_A : A;
-fun yugoslavian_N : N;
-fun yukon_PN : PN;
-fun yule_N : N;
-fun yule_log_N : N;
-fun yuletide_N : N;
-fun yvonne_PN : PN;
-fun ywca_N : N;
-fun zagreb_PN : PN;
-fun zaire_PN : PN;
-fun zairean_A : A;
-fun zairean_N : N;
-fun zambia_PN : PN;
-fun zambian_A : A;
-fun zambian_N : N;
-fun zany_A : A;
-fun zany_N : N;
-fun zap_V2 : V2;
-fun zaporozhye_PN : PN;
-fun zaragoza_PN : PN;
-fun zeal_N : N;
-fun zealand_PN : PN;
-fun zealander_A : A;
-fun zealander_N : N;
-fun zealot_N : N;
-fun zealotry_N : N;
-fun zealous_A : A;
-fun zebra_N : N;
-fun zebu_N : N;
-fun zee_N : N;
-fun zen_N : N;
-fun zenith_N : N;
-fun zenithal_A : A;
-fun zephyr_N : N;
-fun zeppelin_N : N;
-fun zero_N : N;
-fun zero_V : V;
-fun zest_N : N;
-fun zestful_A : A;
-fun zigzag_Adv : Adv;
-fun zigzag_N : N;
-fun zigzag_V : V;
-fun zimbabwe_PN : PN;
-fun zimbabwean_A : A;
-fun zimbabwean_N : N;
-fun zinc_N : N;
-fun zing_N : N;
-fun zinnia_N : N;
-fun zion_N : N;
-fun zionism_N : N;
-fun zionist_A : A;
-fun zionist_N : N;
-fun zip_N : N;
-fun zip_V2 : V2;
-fun zip_code_N : N;
-fun zip_fastener_N : N;
-fun zipper_N : N;
-fun zither_N : N;
-fun zloty_N : N;
-fun zodiac_N : N;
-fun zoe_PN : PN;
-fun zombie_N : N;
-fun zonal_A : A;
-fun zone_N : N;
-fun zone_V2 : V2;
-fun zoning_N : N;
-fun zoo_N : N;
-fun zoological_A : A;
-fun zoologist_N : N;
-fun zoology_N : N;
-fun zoom_N : N;
-fun zoom_V : V;
-fun zoophyte_N : N;
-fun zoot_suit_N : N;
-fun zucchini_N : N;
-fun zurich_PN : PN;
-fun a_la_carte_Adv : Adv;
-fun a_la_mode_Adv : Adv;
-fun eclair_N : N;
-fun eclat_N : N;
-fun elan_N : N;
-fun elite_N : N;
-fun emigre_N : N;
-fun epee_N : N;
+
+fun a_bomb_N : N;
+fun a_fortiori_Adv : Adv;
+fun a_la_carte_Adv : Adv;
+fun a_la_mode_Adv : Adv;
+fun a_level_N : N;
+fun a_posteriori_A : A;
+fun a_posteriori_Adv : Adv;
+fun a_priori_A : A;
+fun a_priori_Adv : Adv;
+fun aachen_PN : PN;
+fun aarhus_PN : PN;
+fun ab_initio_Adv : Adv;
+fun aback_Adv : Adv;
+fun abacus_N : N;
+fun abaft_Adv : Adv;
+fun abandon_N : N;
+fun abandon_V2 : V2;
+fun abandoned_A : A;
+fun abandonment_N : N;
+fun abase_V2 : V2;
+fun abasement_N : N;
+fun abash_V2 : V2;
+fun abate_V : V;
+fun abate_V2 : V2;
+fun abatement_N : N;
+fun abattoir_N : N;
+fun abbe_N : N;
+fun abbess_N : N;
+fun abbey_N : N;
+fun abbot_N : N;
+fun abbreviate_V2 : V2;
+fun abbreviation_N : N;
+fun abc_N : N;
+fun abdicate_V : V;
+fun abdicate_V2 : V2;
+fun abdication_N : N;
+fun abdomen_N : N;
+fun abdominal_A : A;
+fun abduct_V2 : V2;
+fun abduction_N : N;
+fun abe_PN : PN;
+fun abeam_Adv : Adv;
+fun abed_Adv : Adv;
+fun abercarn_PN : PN;
+fun aberdare_PN : PN;
+fun aberdeen_PN : PN;
+fun abergavenny_PN : PN;
+fun abergele_PN : PN;
+fun aberrant_A : A;
+fun aberration_N : N;
+fun abertillery_PN : PN;
+fun aberystwyth_PN : PN;
+fun abet_V : V;
+fun abet_V2 : V2;
+fun abeyance_N : N;
+fun abhor_V2 : V2;
+fun abhorrence_N : N;
+fun abhorrent_A : A;
+fun abide_V : V;
+fun abide_V2 : V2;
+fun abiding_A : A;
+fun ability_N : N;
+fun abingdon_PN : PN;
+fun abject_A : A;
+fun abjection_N : N;
+fun abjuration_N : N;
+fun abjure_V2 : V2;
+fun ablative_A : A;
+fun ablative_N : N;
+fun ablaut_N : N;
+fun ablaze_A : A;
+fun ablaze_Adv : Adv;
+fun able_A : A;
+fun able_bodied_A : A;
+fun ablution_N : N;
+fun ably_Adv : Adv;
+fun abnegation_N : N;
+fun abnormal_A : A;
+fun abnormality_N : N;
+fun abo_N : N;
+fun aboard_Adv : Adv;
+fun aboard_Prep : Prep ;
+fun abode_N : N;
+fun abolish_V2 : V2;
+fun abolition_N : N;
+fun abolitionist_N : N;
+fun abominable_A : A;
+fun abominate_V2 : V2;
+fun abomination_N : N;
+fun aboriginal_A : A;
+fun aboriginal_N : N;
+fun aborigine_N : N;
+fun abort_V : V;
+fun abort_V2 : V2;
+fun abortion_N : N;
+fun abortionist_N : N;
+fun abortive_A : A;
+fun abound_V : V;
+fun about_AdN : AdN;
+fun about_Adv : Adv;
+fun about_Prep : Prep ;
+fun about_face_N : N;
+fun about_face_V : V;
+fun above_Adv : Adv;
+fun above_Prep : Prep ;
+fun above_board_A : A;
+fun above_board_Adv : Adv;
+fun above_mentioned_A : A;
+fun above_named_A : A;
+fun abracadabra_N : N;
+fun abrade_V2 : V2;
+fun abraham_PN : PN;
+fun abrasion_N : N;
+fun abrasive_A : A;
+fun abrasive_N : N;
+fun abreast_Adv : Adv;
+fun abridge_V2 : V2;
+fun abridgement_N : N;
+fun abridgment_N : N;
+fun abroad_Adv : Adv;
+fun abrogate_V2 : V2;
+fun abrogation_N : N;
+fun abrupt_A : A;
+fun abruptness_N : N;
+fun abscess_N : N;
+fun abscond_V : V;
+fun absence_N : N;
+fun absent_A : A;
+fun absent_V2 : V2;
+fun absent_minded_A : A;
+fun absent_mindedness_N : N;
+fun absentee_N : N;
+fun absenteeism_N : N;
+fun absinth_N : N;
+fun absinthe_N : N;
+fun absolute_A : A;
+fun absolution_N : N;
+fun absolutism_N : N;
+fun absolve_V2 : V2;
+fun absorb_V2 : V2;
+fun absorbent_A : A;
+fun absorbent_N : N;
+fun absorption_N : N;
+fun abstain_V : V;
+fun abstainer_N : N;
+fun abstemious_A : A;
+fun abstemiousness_N : N;
+fun abstention_N : N;
+fun abstinence_N : N;
+fun abstract_A : A;
+fun abstract_N : N;
+fun abstract_V2 : V2;
+fun abstracted_A : A;
+fun abstraction_N : N;
+fun abstruse_A : A;
+fun abstruseness_N : N;
+fun absurd_A : A;
+fun absurdity_N : N;
+fun abundance_N : N;
+fun abundant_A : A;
+fun abuse_N : N;
+fun abuse_V2 : V2;
+fun abusive_A : A;
+fun abut_V : V;
+fun abutment_N : N;
+fun abysm_N : N;
+fun abysmal_A : A;
+fun abyss_N : N;
+fun acacia_N : N;
+fun academic_A : A;
+fun academic_N : N;
+fun academically_Adv : Adv;
+fun academician_N : N;
+fun academy_N : N;
+fun accede_V : V;
+fun accelerando_A : A;
+fun accelerando_Adv : Adv;
+fun accelerando_N : N;
+fun accelerate_V : V;
+fun accelerate_V2 : V2;
+fun acceleration_N : N;
+fun accelerator_N : N;
+fun accent_N : N;
+fun accent_V2 : V2;
+fun accentuate_V2 : V2;
+fun accentuation_N : N;
+fun accept_V : V;
+fun accept_V2 : V2;
+fun accept_VS : VS;
+fun acceptability_N : N;
+fun acceptable_A : A;
+fun acceptance_N : N;
+fun acceptation_N : N;
+fun access_N : N;
+fun access_V2 : V2;
+fun accessary_N : N;
+fun accessibility_N : N;
+fun accessible_A : A;
+fun accession_N : N;
+fun accessory_N : N;
+fun accidence_N : N;
+fun accident_N : N;
+fun accident_prone_A : A;
+fun accidental_A : A;
+fun acclaim_N : N;
+fun acclaim_V2 : V2;
+fun acclamation_N : N;
+fun acclimate_V : V;
+fun acclimate_V2 : V2;
+fun acclimation_N : N;
+fun acclimatization_N : N;
+fun acclimatize_V : V;
+fun acclimatize_V2 : V2;
+fun acclivity_N : N;
+fun accolade_N : N;
+fun accommodate_V : V;
+fun accommodate_V2 : V2;
+fun accommodating_A : A;
+fun accommodation_N : N;
+fun accompaniment_N : N;
+fun accompanist_N : N;
+fun accompany_V2 : V2;
+fun accomplice_N : N;
+fun accomplish_V2 : V2;
+fun accomplished_A : A;
+fun accomplishment_N : N;
+fun accord_N : N;
+fun accord_V : V;
+fun accord_V2 : V2;
+fun accordance_N : N;
+fun accordingly_Adv : Adv;
+fun accordion_N : N;
+fun accost_V2 : V2;
+fun accouchement_N : N;
+fun account_N : N;
+fun account_V : V;
+fun account_V2 : V2;
+fun accountable_A : A;
+fun accountancy_N : N;
+fun accountant_N : N;
+fun accra_PN : PN;
+fun accredit_V2 : V2;
+fun accredited_A : A;
+fun accretion_N : N;
+fun accrington_PN : PN;
+fun accrue_V : V;
+fun accrue_V2 : V2;
+fun accumulate_V : V;
+fun accumulate_V2 : V2;
+fun accumulation_N : N;
+fun accumulative_A : A;
+fun accumulator_N : N;
+fun accuracy_N : N;
+fun accurate_A : A;
+fun accursed_A : A;
+fun accurst_A : A;
+fun accusation_N : N;
+fun accusative_A : A;
+fun accusative_N : N;
+fun accuse_V2 : V2;
+fun accuser_N : N;
+fun accusingly_Adv : Adv;
+fun accustom_V2 : V2;
+fun accustomed_A : A;
+fun ace_N : N;
+fun acerbity_N : N;
+fun acetate_N : N;
+fun acetic_A : A;
+fun acetylene_N : N;
+fun ache_N : N;
+fun ache_V : V;
+fun achievable_A : A;
+fun achieve_V2 : V2;
+fun achievement_N : N;
+fun achilles_PN : PN;
+fun acid_A : A;
+fun acid_N : N;
+fun acidic_A : A;
+fun acidify_V : V;
+fun acidify_V2 : V2;
+fun acidity_N : N;
+fun acidulated_A : A;
+fun acidulous_A : A;
+fun ack_ack_N : N;
+fun acknowledge_V : V;
+fun acknowledge_V2 : V2;
+fun acknowledge_VS : VS;
+fun acknowledgement_N : N;
+fun acme_N : N;
+fun acne_N : N;
+fun acolyte_N : N;
+fun aconite_N : N;
+fun acorn_N : N;
+fun acorn_cup_N : N;
+fun acoustic_A : A;
+fun acoustic_N : N;
+fun acoustics_N : N;
+fun acquaint_V2 : V2;
+fun acquaintance_N : N;
+fun acquaintanceship_N : N;
+fun acquiesce_V : V;
+fun acquiescence_N : N;
+fun acquiescent_A : A;
+fun acquire_V2 : V2;
+fun acquirement_N : N;
+fun acquisition_N : N;
+fun acquisitive_A : A;
+fun acquit_V2 : V2;
+fun acquittal_N : N;
+fun acre_N : N;
+fun acreage_N : N;
+fun acrid_A : A;
+fun acrimonious_A : A;
+fun acrimony_N : N;
+fun acrobat_N : N;
+fun acrobatic_A : A;
+fun acrobatics_N : N;
+fun acronym_N : N;
+fun acropolis_N : N;
+fun across_Adv : Adv;
+fun across_Prep : Prep ;
+fun acrostic_N : N;
+fun acrylic_N : N;
+fun act_N : N;
+fun act_V : V;
+fun act_V2 : V2;
+fun act_V2V : V2V;
+fun act_VA : VA;
+fun acting_A : A;
+fun acting_N : N;
+fun actinic_A : A;
+fun actinism_N : N;
+fun action_N : N;
+fun actionable_A : A;
+fun activate_V2 : V2;
+fun activation_N : N;
+fun active_A : A;
+fun activist_N : N;
+fun activity_N : N;
+fun actor_N : N;
+fun actress_N : N;
+fun actual_A : A;
+fun actuality_N : N;
+fun actuarial_A : A;
+fun actuary_N : N;
+fun actuate_V2 : V2;
+fun acuity_N : N;
+fun acumen_N : N;
+fun acupuncture_N : N;
+fun acute_A : A;
+fun acuteness_N : N;
+fun ad_N : N;
+fun ad_PN : PN;
+fun ad_hoc_A : A;
+fun ad_hoc_Adv : Adv;
+fun ad_infinitum_Adv : Adv;
+fun ad_interim_Adv : Adv;
+fun ad_lib_A : A;
+fun ad_lib_Adv : Adv;
+fun ad_lib_V : V;
+fun ad_libitum_Adv : Adv;
+fun ad_man_N : N;
+fun ad_nauseam_Adv : Adv;
+fun ad_valorem_Adv : Adv;
+fun ada_PN : PN;
+fun adage_N : N;
+fun adagio_A : A;
+fun adagio_Adv : Adv;
+fun adagio_N : N;
+fun adam_PN : PN;
+fun adamant_A : A;
+fun adamant_N : N;
+fun adamantine_A : A;
+fun adapt_V : V;
+fun adapt_V2 : V2;
+fun adaptability_N : N;
+fun adaptable_A : A;
+fun adaptation_N : N;
+fun adapter_N : N;
+fun adaptor_N : N;
+fun add_V : V;
+fun add_V2 : V2;
+fun add_VS : VS;
+fun addendum_N : N;
+fun adder_N : N;
+fun addict_N : N;
+fun addict_V2 : V2;
+fun addiction_N : N;
+fun addictive_A : A;
+fun adding_machine_N : N;
+fun addis_ababa_PN : PN;
+fun addition_N : N;
+fun additional_A : A;
+fun additive_N : N;
+fun addle_A : A;
+fun addle_V : V;
+fun addle_V2 : V2;
+fun addle_brained_A : A;
+fun addle_head_N : N;
+fun addle_pated_A : A;
+fun address_N : N;
+fun address_V2 : V2;
+fun addressee_N : N;
+fun addressograph_N : N;
+fun adduce_V2 : V2;
+fun adelaide_PN : PN;
+fun adenoidal_A : A;
+fun adept_A : A;
+fun adept_N : N;
+fun adequacy_N : N;
+fun adequate_A : A;
+fun adhere_V : V;
+fun adherence_N : N;
+fun adherent_N : N;
+fun adhesion_N : N;
+fun adhesive_A : A;
+fun adhesive_N : N;
+fun adieu_N : N;
+fun adipose_A : A;
+fun adjacent_A : A;
+fun adjectival_A : A;
+fun adjective_N : N;
+fun adjoin_V : V;
+fun adjoin_V2 : V2;
+fun adjoining_A : A;
+fun adjourn_V : V;
+fun adjourn_V2 : V2;
+fun adjournment_N : N;
+fun adjudge_V2 : V2;
+fun adjudicate_V : V;
+fun adjudicate_V2 : V2;
+fun adjudication_N : N;
+fun adjudicator_N : N;
+fun adjunct_N : N;
+fun adjuration_N : N;
+fun adjure_V2 : V2;
+fun adjust_V : V;
+fun adjust_V2 : V2;
+fun adjust_V2V : V2V;
+fun adjustable_A : A;
+fun adjuster_N : N;
+fun adjustment_N : N;
+fun adjutant_N : N;
+fun admass_N : N;
+fun administer_V : V;
+fun administer_V2 : V2;
+fun administration_N : N;
+fun administrative_A : A;
+fun administrator_N : N;
+fun admirable_A : A;
+fun admiral_N : N;
+fun admiralty_N : N;
+fun admiration_N : N;
+fun admire_V2 : V2;
+fun admirer_N : N;
+fun admiring_A : A;
+fun admissibility_N : N;
+fun admissible_A : A;
+fun admission_N : N;
+fun admit_V : V;
+fun admit_V2 : V2;
+fun admit_VS : VS;
+fun admittance_N : N;
+fun admittedly_Adv : Adv;
+fun admix_V : V;
+fun admix_V2 : V2;
+fun admixture_N : N;
+fun admonish_V2 : V2;
+fun admonition_N : N;
+fun admonitory_A : A;
+fun ado_N : N;
+fun adobe_N : N;
+fun adolescence_N : N;
+fun adolescent_A : A;
+fun adolescent_N : N;
+fun adopt_V2 : V2;
+fun adoption_N : N;
+fun adoptive_A : A;
+fun adorable_A : A;
+fun adoration_N : N;
+fun adore_V2 : V2;
+fun adorer_N : N;
+fun adoring_A : A;
+fun adorn_V2 : V2;
+fun adornment_N : N;
+fun adrenal_A : A;
+fun adrenalin_N : N;
+fun adrian_PN : PN;
+fun adrift_A : A;
+fun adrift_Adv : Adv;
+fun adroit_A : A;
+fun adroitness_N : N;
+fun adulation_N : N;
+fun adult_A : A;
+fun adult_N : N;
+fun adulterant_N : N;
+fun adulterate_V2 : V2;
+fun adulteration_N : N;
+fun adulterer_N : N;
+fun adulteress_N : N;
+fun adulterous_A : A;
+fun adultery_N : N;
+fun adulthood_N : N;
+fun adumbrate_V2 : V2;
+fun advance_N : N;
+fun advance_V : V;
+fun advance_V2 : V2;
+fun advanced_A : A;
+fun advancement_N : N;
+fun advantage_N : N;
+fun advantage_V2 : V2;
+fun advantageous_A : A;
+fun advent_N : N;
+fun adventist_N : N;
+fun adventitious_A : A;
+fun adventure_N : N;
+fun adventure_V2 : V2;
+fun adventurer_N : N;
+fun adventuresome_A : A;
+fun adventuress_N : N;
+fun adventurous_A : A;
+fun adverb_N : N;
+fun adverbial_A : A;
+fun adversary_N : N;
+fun adverse_A : A;
+fun adversity_N : N;
+fun advert_N : N;
+fun advert_V : V;
+fun advertise_V : V;
+fun advertise_V2 : V2;
+fun advertisement_N : N;
+fun advertiser_N : N;
+fun advice_N : N;
+fun advisability_N : N;
+fun advisable_A : A;
+fun advise_V : V;
+fun advise_V2 : V2;
+fun advise_VS : VS;
+fun advised_A : A;
+fun adviser_N : N;
+fun advisory_A : A;
+fun advocacy_N : N;
+fun advocate_N : N;
+fun advocate_V2 : V2;
+fun advocate_VS : VS;
+fun advowson_N : N;
+fun adz_N : N;
+fun adze_N : N;
+fun aegis_N : N;
+fun aeon_N : N;
+fun aerate_V2 : V2;
+fun aeration_N : N;
+fun aerial_A : A;
+fun aerial_N : N;
+fun aerie_N : N;
+fun aerobatics_N : N;
+fun aerodrome_N : N;
+fun aerodynamic_A : A;
+fun aerodynamics_N : N;
+fun aeronaut_N : N;
+fun aeronautics_N : N;
+fun aeroplane_N : N;
+fun aerosol_N : N;
+fun aerospace_N : N;
+fun aertex_N : N;
+fun aery_N : N;
+fun aesthete_N : N;
+fun aesthetic_A : A;
+fun aesthetic_N : N;
+fun aesthetical_A : A;
+fun aesthetics_N : N;
+fun aether_N : N;
+fun aetiology_N : N;
+fun afar_Adv : Adv;
+fun affability_N : N;
+fun affable_A : A;
+fun affair_N : N;
+fun affect_V2 : V2;
+fun affectation_N : N;
+fun affected_A : A;
+fun affecting_A : A;
+fun affection_N : N;
+fun affectionate_A : A;
+fun affiance_V2 : V2;
+fun affidavit_N : N;
+fun affiliate_V : V;
+fun affiliate_V2 : V2;
+fun affiliation_N : N;
+fun affinity_N : N;
+fun affirm_V : V;
+fun affirm_V2 : V2;
+fun affirm_VS : VS;
+fun affirmation_N : N;
+fun affirmative_A : A;
+fun affirmative_N : N;
+fun affix_N : N;
+fun affix_V2 : V2;
+fun afflatus_N : N;
+fun afflict_V2 : V2;
+fun affliction_N : N;
+fun affluence_N : N;
+fun affluent_A : A;
+fun affluent_N : N;
+fun afford_V2 : V2;
+fun afford_V2V : V2V;
+fun afforest_V2 : V2;
+fun afforestation_N : N;
+fun affranchise_V2 : V2;
+fun affray_N : N;
+fun affront_N : N;
+fun affront_V2 : V2;
+fun afghan_A : A;
+fun afghan_N : N;
+fun afghanistan_PN : PN;
+fun afghanistani_A : A;
+fun afghanistani_N : N;
+fun afield_Adv : Adv;
+fun afire_A : A;
+fun aflame_A : A;
+fun afloat_A : A;
+fun afoot_A : A;
+fun afore_Adv : Adv;
+fun aforesaid_A : A;
+fun aforethought_Adv : Adv;
+fun afoul_Adv : Adv;
+fun afraid_A : A;
+fun afresh_Adv : Adv;
+fun africa_PN : PN;
+fun african_A : A;
+fun african_N : N;
+fun afrikaans_N : N;
+fun afrikaner_A : A;
+fun afrikaner_N : N;
+fun afro_american_N : N;
+fun afro_asian_A : A;
+fun afro_wig_N : N;
+fun aft_Adv : Adv;
+fun after_A : A;
+fun after_Adv : Adv;
+fun after_Prep : Prep ;
+fun aftercare_N : N;
+fun afterdamp_N : N;
+fun aftereffect_N : N;
+fun afterglow_N : N;
+fun aftermath_N : N;
+fun afternoon_N : N;
+fun afterthought_N : N;
+fun afterwards_Adv : Adv;
+fun again_Adv : Adv;
+fun against_Prep : Prep ;
+fun agape_A : A;
+fun agar_agar_N : N;
+fun agate_N : N;
+fun agatha_PN : PN;
+fun agave_N : N;
+fun age_N : N;
+fun age_V : V;
+fun age_V2 : V2;
+fun age_bracket_N : N;
+fun age_group_N : N;
+fun age_long_A : A;
+fun age_old_A : A;
+fun aged_A : A;
+fun ageing_N : N;
+fun ageless_A : A;
+fun agency_N : N;
+fun agenda_N : N;
+fun agent_N : N;
+fun agent_provocateur_N : N;
+fun aggie_PN : PN;
+fun agglomerate_A : A;
+fun agglomerate_V : V;
+fun agglomerate_V2 : V2;
+fun agglomeration_N : N;
+fun agglutinate_V2 : V2;
+fun agglutinative_A : A;
+fun aggrandize_V2 : V2;
+fun aggrandizement_N : N;
+fun aggravate_V2 : V2;
+fun aggravation_N : N;
+fun aggregate_N : N;
+fun aggregate_V : V;
+fun aggregate_V2 : V2;
+fun aggregation_N : N;
+fun aggression_N : N;
+fun aggressive_A : A;
+fun aggressiveness_N : N;
+fun aggressor_N : N;
+fun aggrieve_V2 : V2;
+fun aggro_N : N;
+fun aghast_A : A;
+fun agile_A : A;
+fun agility_N : N;
+fun aging_N : N;
+fun agitate_V : V;
+fun agitate_V2 : V2;
+fun agitated_A : A;
+fun agitating_A : A;
+fun agitation_N : N;
+fun agitator_N : N;
+fun aglow_A : A;
+fun agm_N : N;
+fun agnail_N : N;
+fun agnes_PN : PN;
+fun agnostic_A : A;
+fun agnostic_N : N;
+fun agnosticism_N : N;
+fun ago_Adv : Adv;
+fun ago_Prep : Prep ;
+fun agog_A : A;
+fun agonize_V : V;
+fun agonized_A : A;
+fun agonizing_A : A;
+fun agony_N : N;
+fun agora_N : N;
+fun agoraphobia_N : N;
+fun agra_PN : PN;
+fun agrarian_A : A;
+fun agree_V : V;
+fun agree_V2 : V2;
+fun agree_VV : VV;
+fun agree_VS : VS;
+fun agreeable_A : A;
+fun agreement_N : N;
+fun agricultural_A : A;
+fun agriculture_N : N;
+fun aground_A : A;
+fun aground_Adv : Adv;
+fun ague_N : N;
+fun ahead_Adv : Adv;
+fun ahmedabad_PN : PN;
+fun aid_N : N;
+fun aid_V : V;
+fun aid_V2 : V2;
+fun aide_de_camp_N : N;
+fun aide_memoire_N : N;
+fun aids_N : N;
+fun aigret_N : N;
+fun aigrette_N : N;
+fun ail_V : V;
+fun ail_V2 : V2;
+fun aileron_N : N;
+fun ailment_N : N;
+fun aim_N : N;
+fun aim_V : V;
+fun aim_V2 : V2;
+fun aim_VV : VV;
+fun aimless_A : A;
+fun air_N : N;
+fun air_V : V;
+fun air_V2 : V2;
+fun air_bladder_N : N;
+fun air_conditioned_A : A;
+fun air_conditioning_N : N;
+fun air_cooled_A : A;
+fun air_minded_A : A;
+fun air_pump_N : N;
+fun air_raid_N : N;
+fun air_shaft_N : N;
+fun air_sick_A : A;
+fun air_sickness_N : N;
+fun air_to_air_A : A;
+fun air_to_ground_A : A;
+fun airbed_N : N;
+fun airborne_A : A;
+fun airbrake_N : N;
+fun aircraft_N : N;
+fun aircraftman_N : N;
+fun aircrew_N : N;
+fun airdrie_PN : PN;
+fun airdrome_N : N;
+fun aireborough_PN : PN;
+fun airedale_N : N;
+fun airfield_N : N;
+fun airflow_N : N;
+fun airframe_N : N;
+fun airing_N : N;
+fun airing_cupboard_N : N;
+fun airless_A : A;
+fun airline_N : N;
+fun airliner_N : N;
+fun airmail_N : N;
+fun airman_N : N;
+fun airplane_N : N;
+fun airport_N : N;
+fun airscrew_N : N;
+fun airship_N : N;
+fun airstrip_N : N;
+fun airtight_A : A;
+fun airway_N : N;
+fun airwoman_N : N;
+fun airworthiness_N : N;
+fun airworthy_A : A;
+fun airy_A : A;
+fun aisle_N : N;
+fun aitch_N : N;
+fun aitch_bone_N : N;
+fun ajar_A : A;
+fun aka_Prep : Prep ;
+fun akimbo_Adv : Adv;
+fun akin_A : A;
+fun akron_PN : PN;
+fun al_PN : PN;
+fun alabama_PN : PN;
+fun alabaster_A : A;
+fun alabaster_N : N;
+fun alacrity_N : N;
+fun alan_PN : PN;
+fun alarm_N : N;
+fun alarm_V2 : V2;
+fun alarm_clock_N : N;
+fun alarming_A : A;
+fun alarmist_N : N;
+fun alaska_PN : PN;
+fun alb_N : N;
+fun albania_PN : PN;
+fun albanian_A : A;
+fun albanian_N : N;
+fun albatross_N : N;
+fun albeit_Subj : Subj ;
+fun albert_PN : PN;
+fun alberta_PN : PN;
+fun albino_N : N;
+fun album_N : N;
+fun albumen_N : N;
+fun alchemist_N : N;
+fun alchemy_N : N;
+fun alcohol_N : N;
+fun alcoholic_A : A;
+fun alcoholic_N : N;
+fun alcoholism_N : N;
+fun alcove_N : N;
+fun alder_N : N;
+fun alderman_N : N;
+fun aldermanic_A : A;
+fun aldershot_PN : PN;
+fun ale_N : N;
+fun ale_house_N : N;
+fun alee_A : A;
+fun alee_Adv : Adv;
+fun aleppo_PN : PN;
+fun alert_A : A;
+fun alert_N : N;
+fun alert_V2 : V2;
+fun alertness_N : N;
+fun alessandria_PN : PN;
+fun alex_PN : PN;
+fun alexander_PN : PN;
+fun alexandra_PN : PN;
+fun alexandria_PN : PN;
+fun alexandrine_N : N;
+fun alexia_N : N;
+fun alexic_A : A;
+fun alexic_N : N;
+fun alf_PN : PN;
+fun alfalfa_N : N;
+fun alfred_PN : PN;
+fun alfresco_A : A;
+fun alfresco_Adv : Adv;
+fun alfreton_PN : PN;
+fun alga_N : N;
+fun algebra_N : N;
+fun algebraic_A : A;
+fun algebraical_A : A;
+fun alger_PN : PN;
+fun algeria_PN : PN;
+fun algerian_A : A;
+fun algerian_N : N;
+fun ali_PN : PN;
+fun alias_Adv : Adv;
+fun alias_N : N;
+fun alibi_N : N;
+fun alicante_PN : PN;
+fun alice_PN : PN;
+fun alien_A : A;
+fun alien_N : N;
+fun alienate_V2 : V2;
+fun alienation_N : N;
+fun alienist_N : N;
+fun alight_A : A;
+fun alight_V : V;
+fun align_V : V;
+fun align_V2 : V2;
+fun alignment_N : N;
+fun alike_A : A;
+fun alike_Adv : Adv;
+fun alimentary_A : A;
+fun alimony_N : N;
+fun alison_PN : PN;
+fun alive_A : A;
+fun alkali_N : N;
+fun alkaline_A : A;
+fun all_Predet : Predet;
+fun all_mains_A : A;
+fun all_round_A : A;
+fun all_rounder_N : N;
+fun allah_PN : PN;
+fun allahabad_PN : PN;
+fun allan_PN : PN;
+fun allay_V2 : V2;
+fun allegation_N : N;
+fun allege_V2 : V2;
+fun allege_V2V : V2V;
+fun allege_VS : VS;
+fun allegedly_Adv : Adv;
+fun allegiance_N : N;
+fun allegoric_A : A;
+fun allegorical_A : A;
+fun allegory_N : N;
+fun allegretto_A : A;
+fun allegretto_Adv : Adv;
+fun allegretto_N : N;
+fun allegro_A : A;
+fun allegro_Adv : Adv;
+fun allegro_N : N;
+fun allen_PN : PN;
+fun allergen_N : N;
+fun allergic_A : A;
+fun allergy_N : N;
+fun alleviate_V2 : V2;
+fun alleviation_N : N;
+fun alley_N : N;
+fun alleyway_N : N;
+fun alliance_N : N;
+fun alligator_N : N;
+fun alliteration_N : N;
+fun alliterative_A : A;
+fun alloa_PN : PN;
+fun allocate_V : V;
+fun allocate_V2 : V2;
+fun allocation_N : N;
+fun allot_V2 : V2;
+fun allotment_N : N;
+fun allow_V : V;
+fun allow_V2 : V2;
+fun allow_V2V : V2V;
+fun allow_VS : VS;
+fun allowable_A : A;
+fun allowance_N : N;
+fun alloy_N : N;
+fun alloy_V2 : V2;
+fun allspice_N : N;
+fun allude_V : V;
+fun allure_N : N;
+fun allure_V2 : V2;
+fun allurement_N : N;
+fun alluring_A : A;
+fun allusion_N : N;
+fun allusive_A : A;
+fun alluvial_A : A;
+fun ally_N : N;
+fun ally_V2 : V2;
+fun alma_ata_PN : PN;
+fun alma_mater_N : N;
+fun almanac_N : N;
+fun almeria_PN : PN;
+fun almighty_A : A;
+fun almighty_N : N;
+fun almond_N : N;
+fun almond_eyed_A : A;
+fun almoner_N : N;
+fun almost_AdN : AdN;
+fun almost_Adv : Adv;
+fun almost_Predet : Predet;
+fun alms_box_N : N;
+fun alms_giving_N : N;
+fun alms_house_N : N;
+fun alnwick_PN : PN;
+fun aloe_N : N;
+fun aloft_Adv : Adv;
+fun alone_A : A;
+fun alone_Adv : Adv;
+fun along_Adv : Adv;
+fun along_Prep : Prep ;
+fun alongside_Adv : Adv;
+fun alongside_Prep : Prep ;
+fun aloof_A : A;
+fun aloof_Adv : Adv;
+fun aloofness_N : N;
+fun aloud_Adv : Adv;
+fun alp_N : N;
+fun alpaca_N : N;
+fun alpenstock_N : N;
+fun alpha_N : N;
+fun alphabet_N : N;
+fun alphabetical_A : A;
+fun alpine_A : A;
+fun alpinist_N : N;
+fun already_Adv : Adv;
+fun already_AdV : AdV;
+fun alright_A : A;
+fun alright_Adv : Adv;
+fun alsatian_N : N;
+fun also_AdV : AdV;
+fun also_Adv : Adv;
+fun also_ran_N : N;
+fun altar_N : N;
+fun altar_piece_N : N;
+fun alter_V : V;
+fun alter_V2 : V2;
+fun alter_ego_N : N;
+fun alterable_A : A;
+fun alteration_N : N;
+fun altercation_N : N;
+fun alternate_A : A;
+fun alternate_V : V;
+fun alternate_V2 : V2;
+fun alternation_N : N;
+fun alternative_A : A;
+fun alternative_N : N;
+fun although_Subj : Subj ;
+fun altimeter_N : N;
+fun altitude_N : N;
+fun alto_N : N;
+fun altogether_Adv : Adv;
+fun alton_PN : PN;
+fun altrincham_PN : PN;
+fun altruism_N : N;
+fun altruist_N : N;
+fun altruistic_A : A;
+fun altruistically_Adv : Adv;
+fun alum_N : N;
+fun aluminium_N : N;
+fun alumna_N : N;
+fun alumnus_N : N;
+fun alvechurch_PN : PN;
+fun alveolar_A : A;
+fun alveolar_N : N;
+fun always_AdV : AdV;
+fun amah_N : N;
+fun amain_Adv : Adv;
+fun amalgam_N : N;
+fun amalgamate_V : V;
+fun amalgamate_V2 : V2;
+fun amalgamation_N : N;
+fun amanda_PN : PN;
+fun amanuensis_N : N;
+fun amaryllis_N : N;
+fun amass_V2 : V2;
+fun amateur_N : N;
+fun amateurish_A : A;
+fun amateurism_N : N;
+fun amatory_A : A;
+fun amaze_V2 : V2;
+fun amaze_V2V : V2V;
+fun amazement_N : N;
+fun amazing_A : A;
+fun amazon_N : N;
+fun ambassador_N : N;
+fun ambassadorial_A : A;
+fun ambassadress_N : N;
+fun amber_N : N;
+fun ambergris_N : N;
+fun ambidextrous_A : A;
+fun ambience_N : N;
+fun ambient_A : A;
+fun ambiguity_N : N;
+fun ambiguous_A : A;
+fun ambit_N : N;
+fun ambition_N : N;
+fun ambitious_A : A;
+fun ambivalence_N : N;
+fun ambivalent_A : A;
+fun amble_N : N;
+fun amble_V : V;
+fun ambrosia_N : N;
+fun ambulance_N : N;
+fun ambuscade_N : N;
+fun ambuscade_V2 : V2;
+fun ambush_N : N;
+fun ambush_V2 : V2;
+fun ameba_N : N;
+fun ameer_N : N;
+fun ameliorate_V : V;
+fun ameliorate_V2 : V2;
+fun amelioration_N : N;
+fun amenable_A : A;
+fun amend_V : V;
+fun amend_V2 : V2;
+fun amend_V2V : V2V;
+fun amendable_A : A;
+fun amendment_N : N;
+fun amenity_N : N;
+fun america_PN : PN;
+fun american_A : A;
+fun american_N : N;
+fun americanism_N : N;
+fun americanize_V2 : V2;
+fun amesbury_PN : PN;
+fun amethyst_N : N;
+fun amharic_N : N;
+fun amiability_N : N;
+fun amiable_A : A;
+fun amicability_N : N;
+fun amicable_A : A;
+fun amid_Prep : Prep ;
+fun amidships_Adv : Adv;
+fun amiens_PN : PN;
+fun amir_N : N;
+fun amiss_A : A;
+fun amiss_Adv : Adv;
+fun amity_N : N;
+fun ammanford_PN : PN;
+fun ammeter_N : N;
+fun ammonia_N : N;
+fun ammoniated_A : A;
+fun ammonite_N : N;
+fun ammunition_N : N;
+fun amnesia_N : N;
+fun amnesty_N : N;
+fun amoeba_N : N;
+fun amoebic_A : A;
+fun amok_Adv : Adv;
+fun among_Prep : Prep ;
+fun amongst_Prep : Prep ;
+fun amoral_A : A;
+fun amorous_A : A;
+fun amorphous_A : A;
+fun amortization_N : N;
+fun amortize_V2 : V2;
+fun amount_N : N;
+fun amount_V : V;
+fun amour_N : N;
+fun amour_propre_N : N;
+fun amp_Conj : Conj;
+fun amp_N : N;
+fun ampere_N : N;
+fun amphetamine_N : N;
+fun amphibian_N : N;
+fun amphibious_A : A;
+fun amphitheatre_N : N;
+fun amphora_N : N;
+fun ample_A : A;
+fun amplification_N : N;
+fun amplifier_N : N;
+fun amplify_V2 : V2;
+fun amplitude_N : N;
+fun ampoule_N : N;
+fun amputate_V2 : V2;
+fun amputation_N : N;
+fun amsterdam_PN : PN;
+fun amuck_Adv : Adv;
+fun amulet_N : N;
+fun amuse_V2 : V2;
+fun amusement_N : N;
+fun amusing_A : A;
+fun amy_PN : PN;
+fun anachronism_N : N;
+fun anachronistic_A : A;
+fun anaconda_N : N;
+fun anaemia_N : N;
+fun anaemic_A : A;
+fun anaesthesia_N : N;
+fun anaesthetic_A : A;
+fun anaesthetic_N : N;
+fun anaesthetist_N : N;
+fun anaesthetize_V2 : V2;
+fun anagram_N : N;
+fun anal_A : A;
+fun analgesia_N : N;
+fun analgesic_N : N;
+fun analog_N : N;
+fun analogous_A : A;
+fun analogue_N : N;
+fun analogy_N : N;
+fun analyse_V2 : V2;
+fun analysis_N : N;
+fun analyst_N : N;
+fun analytic_A : A;
+fun analytical_A : A;
+fun analyze_V2 : V2;
+fun anapaest_N : N;
+fun anapaestic_A : A;
+fun anarchic_A : A;
+fun anarchically_Adv : Adv;
+fun anarchism_N : N;
+fun anarchist_N : N;
+fun anarchy_N : N;
+fun anathema_N : N;
+fun anathematize_V : V;
+fun anathematize_V2 : V2;
+fun anatomical_A : A;
+fun anatomist_N : N;
+fun anatomy_N : N;
+fun ancestor_N : N;
+fun ancestral_A : A;
+fun ancestress_N : N;
+fun ancestry_N : N;
+fun anchor_N : N;
+fun anchor_V : V;
+fun anchor_V2 : V2;
+fun anchorage_N : N;
+fun anchorite_N : N;
+fun anchorman_N : N;
+fun anchovy_N : N;
+fun ancient_A : A;
+fun ancillary_A : A;
+fun ancona_PN : PN;
+fun and_Conj : Conj;
+fun andante_A : A;
+fun andante_Adv : Adv;
+fun andante_N : N;
+fun andiron_N : N;
+fun andorra_PN : PN;
+fun andorran_A : A;
+fun andorran_N : N;
+fun andover_PN : PN;
+fun andrew_PN : PN;
+fun andy_PN : PN;
+fun anecdotal_A : A;
+fun anecdote_N : N;
+fun anemometer_N : N;
+fun anemone_N : N;
+fun aneroid_A : A;
+fun aneroid_N : N;
+fun anesthetic_A : A;
+fun anesthetic_N : N;
+fun anesthetist_N : N;
+fun anesthetize_V2 : V2;
+fun anew_Adv : Adv;
+fun angel_N : N;
+fun angela_PN : PN;
+fun angelic_A : A;
+fun angelica_N : N;
+fun angelically_Adv : Adv;
+fun angelus_N : N;
+fun anger_N : N;
+fun anger_V2 : V2;
+fun angers_PN : PN;
+fun angie_PN : PN;
+fun angina_N : N;
+fun angle_N : N;
+fun angle_V : V;
+fun angle_V2 : V2;
+fun angle_dozer_N : N;
+fun angle_iron_N : N;
+fun angle_park_V : V;
+fun angle_park_V2 : V2;
+fun angler_N : N;
+fun anglican_A : A;
+fun anglican_N : N;
+fun anglicism_N : N;
+fun anglicize_V2 : V2;
+fun angling_N : N;
+fun anglo_catholic_A : A;
+fun anglo_catholic_N : N;
+fun anglo_indian_A : A;
+fun anglo_indian_N : N;
+fun anglo_saxon_A : A;
+fun anglo_saxon_N : N;
+fun anglomania_N : N;
+fun anglophil_N : N;
+fun anglophile_N : N;
+fun anglophobe_N : N;
+fun anglophobia_N : N;
+fun angola_PN : PN;
+fun angolan_A : A;
+fun angolan_N : N;
+fun angora_N : N;
+fun angostura_N : N;
+fun angry_A : A;
+fun angst_N : N;
+fun anguilla_PN : PN;
+fun anguillan_A : A;
+fun anguillan_N : N;
+fun anguish_N : N;
+fun anguished_A : A;
+fun angular_A : A;
+fun angularity_N : N;
+fun angus_PN : PN;
+fun aniline_N : N;
+fun animadversion_N : N;
+fun animadvert_V : V;
+fun animal_N : N;
+fun animalcule_N : N;
+fun animate_A : A;
+fun animate_V2 : V2;
+fun animatedly_A : A;
+fun animation_N : N;
+fun animism_N : N;
+fun animosity_N : N;
+fun animus_N : N;
+fun anise_N : N;
+fun aniseed_N : N;
+fun anita_PN : PN;
+fun ankara_PN : PN;
+fun ankle_N : N;
+fun anklet_N : N;
+fun ann_PN : PN;
+fun anna_N : N;
+fun annabel_PN : PN;
+fun annalist_N : N;
+fun annan_PN : PN;
+fun anne_PN : PN;
+fun anneal_V2 : V2;
+fun annex_N : N;
+fun annex_V2 : V2;
+fun annexation_N : N;
+fun annexe_N : N;
+fun annfield_PN : PN;
+fun annfield_plain_PN : PN;
+fun annie_PN : PN;
+fun annihilate_V2 : V2;
+fun annihilation_N : N;
+fun anniversary_N : N;
+fun annotate_V2 : V2;
+fun annotation_N : N;
+fun announce_V2 : V2;
+fun announce_VS : VS;
+fun announcement_N : N;
+fun announcer_N : N;
+fun annoy_V2 : V2;
+fun annoyance_N : N;
+fun annoying_A : A;
+fun annual_A : A;
+fun annual_N : N;
+fun annuitant_N : N;
+fun annuity_N : N;
+fun annul_V2 : V2;
+fun annular_A : A;
+fun annulment_N : N;
+fun annunciate_V2 : V2;
+fun annunciation_N : N;
+fun anode_N : N;
+fun anodyne_A : A;
+fun anodyne_N : N;
+fun anoint_V2 : V2;
+fun anointment_N : N;
+fun anomalous_A : A;
+fun anomaly_N : N;
+fun anon_Adv : Adv;
+fun anon_PN : PN;
+fun anonymity_N : N;
+fun anonymous_A : A;
+fun anopheles_N : N;
+fun anorak_N : N;
+fun another_Quant : Quant;
+fun anshan_PN : PN;
+fun answer_N : N;
+fun answer_V : V;
+fun answer_V2 : V2;
+fun answerable_A : A;
+fun ant_N : N;
+fun ant_eater_N : N;
+fun ant_hill_N : N;
+fun antagonism_N : N;
+fun antagonist_N : N;
+fun antagonistic_A : A;
+fun antagonistically_Adv : Adv;
+fun antagonize_V2 : V2;
+fun antarctic_A : A;
+fun ante_N : N;
+fun ante_meridiem_Adv : Adv;
+fun antecedence_N : N;
+fun antecedent_A : A;
+fun antecedent_N : N;
+fun antechamber_N : N;
+fun antedate_V2 : V2;
+fun antediluvian_A : A;
+fun antediluvian_N : N;
+fun antelope_N : N;
+fun antenatal_A : A;
+fun antenna_N : N;
+fun antenuptial_A : A;
+fun antepenultimate_A : A;
+fun anterior_A : A;
+fun anteroom_N : N;
+fun anthea_PN : PN;
+fun anthem_N : N;
+fun anther_N : N;
+fun anthology_N : N;
+fun anthony_PN : PN;
+fun anthracite_N : N;
+fun anthrax_N : N;
+fun anthropoid_A : A;
+fun anthropoid_N : N;
+fun anthropological_A : A;
+fun anthropologist_N : N;
+fun anthropology_N : N;
+fun anti_aircraft_A : A;
+fun anti_hero_N : N;
+fun anti_personnel_A : A;
+fun anti_semite_A : A;
+fun anti_semite_N : N;
+fun anti_semitic_A : A;
+fun anti_semitism_N : N;
+fun antibiotic_A : A;
+fun antibiotic_N : N;
+fun antibody_N : N;
+fun antic_N : N;
+fun anticipate_V : V;
+fun anticipate_V2 : V2;
+fun anticipate_VS : VS;
+fun anticipate_VV : VV;
+fun anticipation_N : N;
+fun anticipatory_A : A;
+fun anticlimax_N : N;
+fun anticlockwise_Adv : Adv;
+fun anticyclone_N : N;
+fun antidote_N : N;
+fun antifreeze_N : N;
+fun antigua_PN : PN;
+fun antiguan_A : A;
+fun antiguan_N : N;
+fun antiknock_N : N;
+fun antilogarithm_N : N;
+fun antimacassar_N : N;
+fun antimony_N : N;
+fun antipathetic_A : A;
+fun antipathy_N : N;
+fun antiquarian_A : A;
+fun antiquarian_N : N;
+fun antiquary_N : N;
+fun antiquated_A : A;
+fun antique_A : A;
+fun antique_N : N;
+fun antiquity_N : N;
+fun antirrhinum_N : N;
+fun antiseptic_A : A;
+fun antiseptic_N : N;
+fun antisocial_A : A;
+fun antitank_A : A;
+fun antithesis_N : N;
+fun antithetic_A : A;
+fun antithetical_A : A;
+fun antitoxin_N : N;
+fun antitrade_A : A;
+fun antitrade_N : N;
+fun antler_N : N;
+fun antony_PN : PN;
+fun antonym_N : N;
+fun antrim_PN : PN;
+fun antwerp_PN : PN;
+fun anus_N : N;
+fun anvil_N : N;
+fun anxiety_N : N;
+fun anxious_A : A;
+fun anyPl_Det : Det ;
+fun anySg_Det : Det ;
+fun anybody_NP : NP;
+fun anyhow_Adv : Adv;
+fun anyone_NP : NP;
+fun anyplace_Adv : Adv;
+fun anything_NP : NP;
+fun anyway_Adv : Adv;
+fun anywhere_Adv : Adv;
+fun aorta_N : N;
+fun apace_Adv : Adv;
+fun apache_N : N;
+fun apanage_N : N;
+fun apart_Adv : Adv;
+fun apartheid_N : N;
+fun apartment_N : N;
+fun apathetic_A : A;
+fun apathetically_Adv : Adv;
+fun apathy_N : N;
+fun ape_N : N;
+fun ape_V2 : V2;
+fun apeldoorn_PN : PN;
+fun aperient_A : A;
+fun aperient_N : N;
+fun aperitif_N : N;
+fun aperture_N : N;
+fun apex_N : N;
+fun aphasia_N : N;
+fun aphid_N : N;
+fun aphis_N : N;
+fun aphorism_N : N;
+fun aphrodisiac_A : A;
+fun aphrodisiac_N : N;
+fun apiarist_N : N;
+fun apiary_N : N;
+fun apiculture_N : N;
+fun apiece_Adv : Adv;
+fun apish_A : A;
+fun aplomb_N : N;
+fun apocalypse_N : N;
+fun apocalyptic_A : A;
+fun apocrypha_N : N;
+fun apocryphal_A : A;
+fun apogee_N : N;
+fun apologetic_A : A;
+fun apologetically_Adv : Adv;
+fun apologetics_N : N;
+fun apologist_N : N;
+fun apologize_V : V;
+fun apology_N : N;
+fun apophthegm_N : N;
+fun apoplectic_A : A;
+fun apoplexy_N : N;
+fun apostasy_N : N;
+fun apostate_A : A;
+fun apostate_N : N;
+fun apostle_N : N;
+fun apostolic_A : A;
+fun apostrophe_N : N;
+fun apostrophize_V2 : V2;
+fun apothecary_N : N;
+fun apothegm_N : N;
+fun apotheosis_N : N;
+fun appal_V2 : V2;
+fun appalling_A : A;
+fun appanage_N : N;
+fun apparatus_N : N;
+fun apparel_N : N;
+fun apparel_V2 : V2;
+fun apparent_A : A;
+fun apparition_N : N;
+fun appeal_N : N;
+fun appeal_V : V;
+fun appeal_V2 : V2;
+fun appeal_V2V : V2V;
+fun appealing_A : A;
+fun appear_V : V;
+fun appear_V2 : V2;
+fun appear_VA : VA;
+fun appear_VV : VV;
+fun appear_VS : VS;
+fun appearance_N : N;
+fun appease_V2 : V2;
+fun appeasement_N : N;
+fun appellant_A : A;
+fun appellant_N : N;
+fun appellation_N : N;
+fun append_V2 : V2;
+fun appendage_N : N;
+fun appendectomy_N : N;
+fun appendicitis_N : N;
+fun appendix_N : N;
+fun appertain_V : V;
+fun appetite_N : N;
+fun appetizer_N : N;
+fun appetizing_A : A;
+fun applaud_V : V;
+fun applaud_V2 : V2;
+fun applause_N : N;
+fun apple_N : N;
+fun applejack_N : N;
+fun appliance_N : N;
+fun applicability_N : N;
+fun applicable_A : A;
+fun applicant_N : N;
+fun application_N : N;
+fun applied_A : A;
+fun applique_N : N;
+fun applique_V2 : V2;
+fun apply_V : V;
+fun apply_V2 : V2;
+fun apply_V2V : V2V;
+fun appoint_V2 : V2;
+fun appoint_V2V : V2V;
+fun appoint_VS : VS;
+fun appointee_N : N;
+fun appointment_N : N;
+fun apportion_V2 : V2;
+fun apportionment_N : N;
+fun apposite_A : A;
+fun apposition_N : N;
+fun appraisal_N : N;
+fun appraise_V2 : V2;
+fun appreciable_A : A;
+fun appreciate_V : V;
+fun appreciate_V2 : V2;
+fun appreciation_N : N;
+fun appreciative_A : A;
+fun apprehend_V2 : V2;
+fun apprehensible_A : A;
+fun apprehension_N : N;
+fun apprehensive_A : A;
+fun apprentice_N : N;
+fun apprentice_V2 : V2;
+fun apprenticeship_N : N;
+fun apprise_V2 : V2;
+fun appro_N : N;
+fun approach_N : N;
+fun approach_V : V;
+fun approach_V2 : V2;
+fun approachable_A : A;
+fun approbation_N : N;
+fun appropriate_A : A;
+fun appropriate_V2 : V2;
+fun appropriation_N : N;
+fun approval_N : N;
+fun approve_V : V;
+fun approve_V2 : V2;
+fun approvingly_Adv : Adv;
+fun approx_PN : PN;
+fun approximate_A : A;
+fun approximate_V : V;
+fun approximate_V2 : V2;
+fun approximation_N : N;
+fun appurtenance_N : N;
+fun apr_PN : PN;
+fun apres_ski_A : A;
+fun apricot_N : N;
+fun april_N : N;
+fun april_PN : PN;
+fun apron_N : N;
+fun apropos_A : A;
+fun apropos_Adv : Adv;
+fun apse_N : N;
+fun apt_A : A;
+fun aptitude_N : N;
+fun aptness_N : N;
+fun aqualung_N : N;
+fun aquamarine_N : N;
+fun aquanaut_N : N;
+fun aquaplane_N : N;
+fun aquaplane_V : V;
+fun aquarium_N : N;
+fun aquarius_PN : PN;
+fun aquatic_A : A;
+fun aquatint_N : N;
+fun aquavit_N : N;
+fun aqueduct_N : N;
+fun aqueous_A : A;
+fun aquiline_A : A;
+fun arab_N : N;
+fun arabesque_N : N;
+fun arabian_A : A;
+fun arabian_N : N;
+fun arabic_A : A;
+fun arabic_N : N;
+fun arabist_N : N;
+fun arable_A : A;
+fun arachnid_N : N;
+fun arbiter_N : N;
+fun arbitrament_N : N;
+fun arbitrary_A : A;
+fun arbitrate_V : V;
+fun arbitrate_V2 : V2;
+fun arbitration_N : N;
+fun arbitrator_N : N;
+fun arboreal_A : A;
+fun arbour_N : N;
+fun arbroath_PN : PN;
+fun arc_N : N;
+fun arc_lamp_N : N;
+fun arc_light_N : N;
+fun arcade_N : N;
+fun arcadian_A : A;
+fun arcadian_N : N;
+fun arcane_A : A;
+fun arch_A : A;
+fun arch_N : N;
+fun arch_V : V;
+fun arch_V2 : V2;
+fun archaeological_A : A;
+fun archaeologist_N : N;
+fun archaeology_N : N;
+fun archaic_A : A;
+fun archaism_N : N;
+fun archangel_N : N;
+fun archbishop_N : N;
+fun archbishopric_N : N;
+fun archdeacon_N : N;
+fun archdeaconry_N : N;
+fun archdiocese_N : N;
+fun archduke_N : N;
+fun archeology_N : N;
+fun archer_N : N;
+fun archery_N : N;
+fun archetypal_A : A;
+fun archetype_N : N;
+fun archimandrite_N : N;
+fun archipelago_N : N;
+fun architect_N : N;
+fun architectural_A : A;
+fun architecture_N : N;
+fun archivist_N : N;
+fun archway_N : N;
+fun arctic_A : A;
+fun ardent_A : A;
+fun ardour_N : N;
+fun ardrossan_PN : PN;
+fun arduous_A : A;
+fun are_N : N;
+fun area_N : N;
+fun areca_N : N;
+fun arena_N : N;
+fun arete_N : N;
+fun argent_A : A;
+fun argent_N : N;
+fun argentina_PN : PN;
+fun argentine_PN : PN;
+fun argentinian_A : A;
+fun argentinian_N : N;
+fun argon_N : N;
+fun argonaut_N : N;
+fun argosy_N : N;
+fun argot_N : N;
+fun arguable_A : A;
+fun argue_V : V;
+fun argue_V2 : V2;
+fun argue_VS : VS;
+fun argument_N : N;
+fun argumentation_N : N;
+fun argumentative_A : A;
+fun argus_N : N;
+fun argus_eyed_A : A;
+fun aria_N : N;
+fun arid_A : A;
+fun aridity_N : N;
+fun aries_PN : PN;
+fun aright_Adv : Adv;
+fun arise_V : V;
+fun arise_VS : VS;
+fun aristocracy_N : N;
+fun aristocrat_N : N;
+fun aristocratic_A : A;
+fun aristocratically_Adv : Adv;
+fun arithmetic_N : N;
+fun arithmetical_A : A;
+fun arithmetician_N : N;
+fun arizona_PN : PN;
+fun ark_N : N;
+fun arkansas_PN : PN;
+fun arm_N : N;
+fun arm_V : V;
+fun arm_V2 : V2;
+fun arm_hole_N : N;
+fun armada_N : N;
+fun armadale_PN : PN;
+fun armadillo_N : N;
+fun armageddon_PN : PN;
+fun armagh_PN : PN;
+fun armament_N : N;
+fun armature_N : N;
+fun armband_N : N;
+fun armchair_N : N;
+fun armful_N : N;
+fun armistice_N : N;
+fun armlet_N : N;
+fun armoire_N : N;
+fun armorial_A : A;
+fun armour_N : N;
+fun armour_plate_N : N;
+fun armoured_A : A;
+fun armourer_N : N;
+fun armoury_N : N;
+fun armpit_N : N;
+fun arms_race_N : N;
+fun arms_runner_N : N;
+fun army_N : N;
+fun arnhem_PN : PN;
+fun arnica_N : N;
+fun arnold_PN : PN;
+fun aroma_N : N;
+fun aromatic_A : A;
+fun arose_V2 : V2;
+fun arose_VS : VS;
+fun around_Adv : Adv;
+fun around_Prep : Prep ;
+fun arouse_V2 : V2;
+fun arouse_V2V : V2V;
+fun arpeggio_N : N;
+fun arquebus_N : N;
+fun arr_PN : PN;
+fun arrack_N : N;
+fun arraign_V2 : V2;
+fun arraignment_N : N;
+fun arrange_V : V;
+fun arrange_V2 : V2;
+fun arrangement_N : N;
+fun arrant_A : A;
+fun arras_N : N;
+fun array_N : N;
+fun array_V2 : V2;
+fun arrest_N : N;
+fun arrest_V2 : V2;
+fun arrester_N : N;
+fun arresting_A : A;
+fun arriere_pensee_N : N;
+fun arrival_N : N;
+fun arrive_V : V;
+fun arrive_V2 : V2;
+fun arrogance_N : N;
+fun arrogant_A : A;
+fun arrogate_V2 : V2;
+fun arrow_N : N;
+fun arrowhead_N : N;
+fun arrowroot_N : N;
+fun arse_N : N;
+fun arsehole_N : N;
+fun arsenal_N : N;
+fun arsenic_N : N;
+fun arson_N : N;
+fun art_N : N;
+fun art_PN : PN;
+fun artefact_N : N;
+fun arterial_A : A;
+fun arteriosclerosis_N : N;
+fun artery_N : N;
+fun artesian_A : A;
+fun artful_A : A;
+fun artfulness_N : N;
+fun arthritic_A : A;
+fun arthritis_N : N;
+fun arthur_PN : PN;
+fun artichoke_N : N;
+fun article_N : N;
+fun article_V2 : V2;
+fun articulate_A : A;
+fun articulate_V : V;
+fun articulate_V2 : V2;
+fun articulation_N : N;
+fun artie_PN : PN;
+fun artifact_N : N;
+fun artifice_N : N;
+fun artificer_N : N;
+fun artificial_A : A;
+fun artillery_N : N;
+fun artisan_N : N;
+fun artist_N : N;
+fun artiste_N : N;
+fun artistic_A : A;
+fun artistically_Adv : Adv;
+fun artistry_N : N;
+fun artless_A : A;
+fun artlessness_N : N;
+fun arty_A : A;
+fun arty_crafty_A : A;
+fun arum_N : N;
+fun aryan_A : A;
+fun aryan_N : N;
+fun as_Prep : Prep ;
+fun asap_PN : PN;
+fun asbestos_N : N;
+fun ascend_V : V;
+fun ascend_V2 : V2;
+fun ascendancy_N : N;
+fun ascendant_N : N;
+fun ascendency_N : N;
+fun ascendent_N : N;
+fun ascension_N : N;
+fun ascent_N : N;
+fun ascertain_V2 : V2;
+fun ascertainable_A : A;
+fun ascetic_A : A;
+fun ascetic_N : N;
+fun ascetically_Adv : Adv;
+fun asceticism_N : N;
+fun ascorbic_A : A;
+fun ascot_PN : PN;
+fun ascribable_A : A;
+fun ascribe_V2 : V2;
+fun ascription_N : N;
+fun asdic_N : N;
+fun asepsis_N : N;
+fun aseptic_A : A;
+fun asexual_A : A;
+fun asexuality_N : N;
+fun ash_N : N;
+fun ash_bin_N : N;
+fun ash_can_N : N;
+fun ash_key_N : N;
+fun ash_pan_N : N;
+fun ashamed_A : A;
+fun ashbourne_PN : PN;
+fun ashby_PN : PN;
+fun ashby_de_la_zouch_PN : PN;
+fun ashby_woulds_PN : PN;
+fun ashen_A : A;
+fun ashford_PN : PN;
+fun ashington_PN : PN;
+fun ashore_Adv : Adv;
+fun ashton_in_makerfield_PN : PN;
+fun ashton_under_lyne_PN : PN;
+fun ashtray_N : N;
+fun ashy_A : A;
+fun asian_A : A;
+fun asian_N : N;
+fun asiatic_A : A;
+fun asiatic_N : N;
+fun aside_Adv : Adv;
+fun aside_N : N;
+fun asinine_A : A;
+fun ask_V : V;
+fun ask_V2 : V2;
+fun ask_V2V : V2V;
+fun ask_VS : VS;
+fun ask_VV : VV;
+fun askance_Adv : Adv;
+fun askern_PN : PN;
+fun askew_A : A;
+fun askew_Adv : Adv;
+fun asking_N : N;
+fun aslant_Adv : Adv;
+fun asleep_A : A;
+fun asleep_Adv : Adv;
+fun asp_N : N;
+fun asparagus_N : N;
+fun aspect_N : N;
+fun aspectual_A : A;
+fun aspen_N : N;
+fun asperity_N : N;
+fun asperse_V2 : V2;
+fun aspersion_N : N;
+fun asphalt_N : N;
+fun asphalt_V2 : V2;
+fun asphodel_N : N;
+fun asphyxia_N : N;
+fun asphyxiate_V2 : V2;
+fun asphyxiation_N : N;
+fun aspic_N : N;
+fun aspidistra_N : N;
+fun aspirant_N : N;
+fun aspirate_N : N;
+fun aspirate_V2 : V2;
+fun aspiration_N : N;
+fun aspire_V : V;
+fun aspirin_N : N;
+fun aspull_PN : PN;
+fun ass_N : N;
+fun assagai_N : N;
+fun assail_V2 : V2;
+fun assailable_A : A;
+fun assailant_N : N;
+fun assassin_N : N;
+fun assassinate_V2 : V2;
+fun assassination_N : N;
+fun assault_N : N;
+fun assault_V2 : V2;
+fun assay_N : N;
+fun assay_V2 : V2;
+fun assegai_N : N;
+fun assemblage_N : N;
+fun assemble_V : V;
+fun assemble_V2 : V2;
+fun assembly_N : N;
+fun assent_N : N;
+fun assent_V : V;
+fun assert_V : V;
+fun assert_V2 : V2;
+fun assert_VS : VS;
+fun assertion_N : N;
+fun assertive_A : A;
+fun assess_V2 : V2;
+fun assessment_N : N;
+fun assessor_N : N;
+fun asset_N : N;
+fun asseverate_V2 : V2;
+fun asseveration_N : N;
+fun asshole_N : N;
+fun assiduity_N : N;
+fun assiduous_A : A;
+fun assign_V2 : V2;
+fun assign_V2V : V2V;
+fun assignable_A : A;
+fun assignation_N : N;
+fun assignment_N : N;
+fun assimilate_V : V;
+fun assimilate_V2 : V2;
+fun assimilation_N : N;
+fun assist_V : V;
+fun assist_V2 : V2;
+fun assistance_N : N;
+fun assistant_N : N;
+fun assize_N : N;
+fun assoc_N : N;
+fun associate_A : A;
+fun associate_N : N;
+fun associate_V : V;
+fun associate_V2 : V2;
+fun association_N : N;
+fun assonance_N : N;
+fun assorted_A : A;
+fun assortment_N : N;
+fun asst_N : N;
+fun assuage_V2 : V2;
+fun assume_V : V;
+fun assume_V2 : V2;
+fun assume_VS : VS;
+fun assumption_N : N;
+fun assurance_N : N;
+fun assure_V2 : V2;
+fun assure_VS : VS;
+fun assured_A : A;
+fun assuredness_N : N;
+fun aster_N : N;
+fun asterisk_N : N;
+fun astern_Adv : Adv;
+fun asteroid_N : N;
+fun asthma_N : N;
+fun asthmatic_A : A;
+fun astigmatic_A : A;
+fun astigmatism_N : N;
+fun astir_A : A;
+fun astir_Adv : Adv;
+fun aston_PN : PN;
+fun astonish_V2 : V2;
+fun astonishing_A : A;
+fun astonishment_N : N;
+fun astound_V2 : V2;
+fun astrakhan_N : N;
+fun astral_A : A;
+fun astray_A : A;
+fun astray_Adv : Adv;
+fun astride_A : A;
+fun astride_Adv : Adv;
+fun astride_Prep : Prep ;
+fun astringency_N : N;
+fun astringent_A : A;
+fun astringent_N : N;
+fun astrodome_N : N;
+fun astrolabe_N : N;
+fun astrologer_N : N;
+fun astrological_A : A;
+fun astrology_N : N;
+fun astronaut_N : N;
+fun astronautics_N : N;
+fun astronomer_N : N;
+fun astronomical_A : A;
+fun astronomy_N : N;
+fun astrophysics_N : N;
+fun astute_A : A;
+fun astuteness_N : N;
+fun asunder_Adv : Adv;
+fun asylum_N : N;
+fun asymmetric_A : A;
+fun asymmetrical_A : A;
+fun asymmetry_N : N;
+fun asymptote_N : N;
+fun asymptotic_A : A;
+fun asymptotically_Adv : Adv;
+fun at_Prep : Prep ;
+fun at_home_N : N;
+fun atabrine_N : N;
+fun atavism_N : N;
+fun atavistic_A : A;
+fun atelier_N : N;
+fun atheism_N : N;
+fun atheist_N : N;
+fun atheistic_A : A;
+fun athenian_A : A;
+fun athenian_N : N;
+fun athens_PN : PN;
+fun atherstone_PN : PN;
+fun athirst_A : A;
+fun athlete_N : N;
+fun athletic_A : A;
+fun athletics_N : N;
+fun athlone_PN : PN;
+fun athwart_Adv : Adv;
+fun atlanta_PN : PN;
+fun atlantic_PN : PN;
+fun atlas_N : N;
+fun atmosphere_N : N;
+fun atmospheric_A : A;
+fun atmospherics_N : N;
+fun atoll_N : N;
+fun atom_N : N;
+fun atomic_A : A;
+fun atomize_V2 : V2;
+fun atomizer_N : N;
+fun atonal_A : A;
+fun atonality_N : N;
+fun atone_V : V;
+fun atonement_N : N;
+fun atop_Adv : Adv;
+fun atop_Prep : Prep ;
+fun atrabilious_A : A;
+fun atrocious_A : A;
+fun atrocity_N : N;
+fun atrophy_N : N;
+fun atrophy_V : V;
+fun atrophy_V2 : V2;
+fun attach_V : V;
+fun attach_V2 : V2;
+fun attache_N : N;
+fun attachment_N : N;
+fun attack_N : N;
+fun attack_V2 : V2;
+fun attacker_N : N;
+fun attain_V : V;
+fun attain_V2 : V2;
+fun attainable_A : A;
+fun attainder_N : N;
+fun attainment_N : N;
+fun attar_N : N;
+fun attempt_N : N;
+fun attempt_V2 : V2;
+fun attempt_VV : VV;
+fun attend_V : V;
+fun attend_V2 : V2;
+fun attendance_N : N;
+fun attendant_A : A;
+fun attendant_N : N;
+fun attention_N : N;
+fun attentive_A : A;
+fun attentiveness_N : N;
+fun attenuate_V2 : V2;
+fun attenuation_N : N;
+fun attest_V : V;
+fun attest_V2 : V2;
+fun attest_VS : VS;
+fun attic_A : A;
+fun attic_N : N;
+fun attire_N : N;
+fun attire_V2 : V2;
+fun attitude_N : N;
+fun attitudinize_V : V;
+fun attorney_N : N;
+fun attract_V2 : V2;
+fun attraction_N : N;
+fun attractive_A : A;
+fun attributable_A : A;
+fun attribute_N : N;
+fun attribute_V2 : V2;
+fun attribution_N : N;
+fun attributive_A : A;
+fun attrition_N : N;
+fun attune_V2 : V2;
+fun atypical_A : A;
+fun au_fait_A : A;
+fun au_fond_Adv : Adv;
+fun au_pair_N : N;
+fun aubergine_N : N;
+fun aubrietia_N : N;
+fun auburn_A : A;
+fun auckland_PN : PN;
+fun auction_N : N;
+fun auction_V2 : V2;
+fun auctioneer_N : N;
+fun audacious_A : A;
+fun audacity_N : N;
+fun audibility_N : N;
+fun audible_A : A;
+fun audience_N : N;
+fun audio_lingual_A : A;
+fun audit_N : N;
+fun audit_V2 : V2;
+fun audition_N : N;
+fun audition_V : V;
+fun audition_V2 : V2;
+fun auditor_N : N;
+fun auditorium_N : N;
+fun auditory_A : A;
+fun audley_PN : PN;
+fun audrey_PN : PN;
+fun aug_PN : PN;
+fun auger_N : N;
+fun aught_N : N;
+fun augment_V : V;
+fun augment_V2 : V2;
+fun augmentation_N : N;
+fun augsburg_PN : PN;
+fun augur_N : N;
+fun augur_V : V;
+fun augur_V2 : V2;
+fun augury_N : N;
+fun august_A : A;
+fun august_N : N;
+fun august_PN : PN;
+fun augustan_A : A;
+fun auk_N : N;
+fun auld_lang_syne_N : N;
+fun aunt_N : N;
+fun auntie_N : N;
+fun aunty_N : N;
+fun aura_N : N;
+fun aural_A : A;
+fun aureole_N : N;
+fun auricle_N : N;
+fun auricular_A : A;
+fun auriferous_A : A;
+fun aurora_N : N;
+fun auspicious_A : A;
+fun aussie_N : N;
+fun austere_A : A;
+fun austerity_N : N;
+fun australia_PN : PN;
+fun australian_A : A;
+fun australian_N : N;
+fun austria_PN : PN;
+fun austrian_A : A;
+fun austrian_N : N;
+fun autarchy_N : N;
+fun autarky_N : N;
+fun authentic_A : A;
+fun authentically_Adv : Adv;
+fun authenticate_V2 : V2;
+fun authentication_N : N;
+fun authenticity_N : N;
+fun author_N : N;
+fun authore_V2 : V2;
+fun authoress_N : N;
+fun authoritarian_A : A;
+fun authoritarian_N : N;
+fun authoritarianism_N : N;
+fun authoritative_A : A;
+fun authority_N : N;
+fun authorization_N : N;
+fun authorize_V2 : V2;
+fun authorize_V2V : V2V;
+fun authorship_N : N;
+fun autism_N : N;
+fun autistic_A : A;
+fun auto_N : N;
+fun auto_changer_N : N;
+fun auto_da_fe_N : N;
+fun autobahn_N : N;
+fun autobiographic_A : A;
+fun autobiographical_A : A;
+fun autobiography_N : N;
+fun autocracy_N : N;
+fun autocrat_N : N;
+fun autocratic_A : A;
+fun autocratically_Adv : Adv;
+fun autogiro_N : N;
+fun autograph_N : N;
+fun autograph_V2 : V2;
+fun autogyro_N : N;
+fun automat_N : N;
+fun automate_V2 : V2;
+fun automatic_A : A;
+fun automatic_N : N;
+fun automatically_Adv : Adv;
+fun automation_N : N;
+fun automaton_N : N;
+fun automobile_N : N;
+fun autonomous_A : A;
+fun autonomy_N : N;
+fun autopsy_N : N;
+fun autostrada_N : N;
+fun autumn_N : N;
+fun autumnal_A : A;
+fun auxiliary_A : A;
+fun auxiliary_N : N;
+fun avail_N : N;
+fun avail_V : V;
+fun avail_V2 : V2;
+fun availability_N : N;
+fun available_A : A;
+fun avalanche_N : N;
+fun avant_garde_N : N;
+fun avarice_N : N;
+fun avaricious_A : A;
+fun avatar_N : N;
+fun ave_PN : PN;
+fun aveley_PN : PN;
+fun avenge_V2 : V2;
+fun avenger_N : N;
+fun avenue_N : N;
+fun aver_V2 : V2;
+fun average_A : A;
+fun average_N : N;
+fun average_V : V;
+fun average_V2 : V2;
+fun averr_VS : VS;
+fun averse_A : A;
+fun aversion_N : N;
+fun avert_V2 : V2;
+fun aviary_N : N;
+fun aviation_N : N;
+fun aviator_N : N;
+fun avid_A : A;
+fun avidity_N : N;
+fun avignon_PN : PN;
+fun avocado_N : N;
+fun avocation_N : N;
+fun avoid_V2 : V2;
+fun avoid_VV : VV;
+fun avoidable_A : A;
+fun avoidance_N : N;
+fun avoirdupois_N : N;
+fun avon_PN : PN;
+fun avouch_V : V;
+fun avouch_V2 : V2;
+fun avow_V2 : V2;
+fun avowal_N : N;
+fun avowedly_Adv : Adv;
+fun avuncular_A : A;
+fun await_V2 : V2;
+fun awake_A : A;
+fun awake_V : V;
+fun awaken_V2 : V2;
+fun awakening_N : N;
+fun award_N : N;
+fun award_V2 : V2;
+fun aware_A : A;
+fun awareness_N : N;
+fun awash_A : A;
+fun away_A : A;
+fun away_Adv : Adv;
+fun awe_N : N;
+fun awe_V2 : V2;
+fun awe_inspiring_A : A;
+fun awe_stricken_A : A;
+fun awe_struck_A : A;
+fun aweigh_Adv : Adv;
+fun awesome_A : A;
+fun awful_A : A;
+fun awhile_Adv : Adv;
+fun awkward_A : A;
+fun awkwardness_N : N;
+fun awl_N : N;
+fun awning_N : N;
+fun awol_PN : PN;
+fun awry_A : A;
+fun awry_Adv : Adv;
+fun ax_N : N;
+fun ax_V2 : V2;
+fun axe_N : N;
+fun axe_V2 : V2;
+fun axiom_N : N;
+fun axiomatic_A : A;
+fun axiomatically_Adv : Adv;
+fun axis_N : N;
+fun axle_N : N;
+fun ay_Adv : Adv;
+fun ayah_N : N;
+fun aycliffe_PN : PN;
+fun aye_Adv : Adv;
+fun aylesbury_PN : PN;
+fun aylesford_PN : PN;
+fun ayr_PN : PN;
+fun azalea_N : N;
+fun azimuth_N : N;
+fun azure_A : A;
+fun azure_N : N;
+fun b_ed_N : N;
+fun ba_N : N;
+fun baa_N : N;
+fun baa_V : V;
+fun baa_lamb_N : N;
+fun babble_N : N;
+fun babble_V : V;
+fun babble_V2 : V2;
+fun babbler_N : N;
+fun babe_N : N;
+fun babel_N : N;
+fun baboo_N : N;
+fun baboon_N : N;
+fun babs_PN : PN;
+fun babu_N : N;
+fun baby_N : N;
+fun baby_V2 : V2;
+fun baby_faced_A : A;
+fun baby_farmer_N : N;
+fun baby_minder_N : N;
+fun baby_talk_N : N;
+fun babyhood_N : N;
+fun babyish_A : A;
+fun babysit_V : V;
+fun babysitter_N : N;
+fun babysitting_N : N;
+fun baccalaureate_N : N;
+fun baccarat_N : N;
+fun bacchanal_A : A;
+fun bacchanal_N : N;
+fun bacchanalian_A : A;
+fun baccy_N : N;
+fun bachelor_N : N;
+fun bacillus_N : N;
+fun back_Adv : Adv;
+fun back_N : N;
+fun back_V : V;
+fun back_V2 : V2;
+fun back_breaking_A : A;
+fun back_down_N : N;
+fun back_formation_N : N;
+fun back_up_N : N;
+fun backache_N : N;
+fun backband_N : N;
+fun backbench_N : N;
+fun backbencher_N : N;
+fun backbite_V : V;
+fun backbite_V2 : V2;
+fun backbiter_N : N;
+fun backboard_N : N;
+fun backbone_N : N;
+fun backchat_N : N;
+fun backcloth_N : N;
+fun backdate_V2 : V2;
+fun backdoor_N : N;
+fun backdrop_N : N;
+fun backer_N : N;
+fun backfire_N : N;
+fun backfire_V : V;
+fun backgammon_N : N;
+fun background_N : N;
+fun backhand_A : A;
+fun backhanded_A : A;
+fun backing_N : N;
+fun backlash_N : N;
+fun backless_A : A;
+fun backlog_N : N;
+fun backmost_A : A;
+fun backpedal_V : V;
+fun backpedaling_V : V;
+fun backroom_N : N;
+fun backscratcher_N : N;
+fun backseat_N : N;
+fun backsheesh_N : N;
+fun backside_N : N;
+fun backslide_V : V;
+fun backspace_V : V;
+fun backstage_Adv : Adv;
+fun backstair_A : A;
+fun backstroke_N : N;
+fun backsword_N : N;
+fun backtalk_N : N;
+fun backward_A : A;
+fun backward_Adv : Adv;
+fun backwards_A : A;
+fun backwards_Adv : Adv;
+fun backwash_N : N;
+fun backwater_N : N;
+fun backwoodsman_N : N;
+fun backworth_PN : PN;
+fun bacon_N : N;
+fun bacterial_A : A;
+fun bacteriologist_N : N;
+fun bacteriology_N : N;
+fun bacterium_N : N;
+fun bacup_PN : PN;
+fun bad_A : A;
+fun bad_N : N;
+fun badajoz_PN : PN;
+fun badalona_PN : PN;
+fun badge_N : N;
+fun badger_N : N;
+fun badger_V2 : V2;
+fun badinage_N : N;
+fun badly_behaved_A : A;
+fun badminton_N : N;
+fun badness_N : N;
+fun baffle_N : N;
+fun baffle_V2 : V2;
+fun bag_N : N;
+fun bag_V : V;
+fun bag_V2 : V2;
+fun bagatelle_N : N;
+fun baggage_N : N;
+fun baggy_A : A;
+fun baghdad_PN : PN;
+fun bagnio_N : N;
+fun bagpipe_N : N;
+fun bahamas_PN : PN;
+fun bahamian_A : A;
+fun bahamian_N : N;
+fun bahasa_N : N;
+fun bahrain_PN : PN;
+fun bahraini_A : A;
+fun bahraini_N : N;
+fun bail_N : N;
+fun bail_V : V;
+fun bail_V2 : V2;
+fun bailee_N : N;
+fun bailey_N : N;
+fun bailey_PN : PN;
+fun bailiff_N : N;
+fun bailment_N : N;
+fun bailor_N : N;
+fun bairn_N : N;
+fun bait_N : N;
+fun bait_V : V;
+fun bait_V2 : V2;
+fun baize_N : N;
+fun bake_V : V;
+fun bake_V2 : V2;
+fun bakelite_N : N;
+fun baker_N : N;
+fun bakery_N : N;
+fun baking_hot_A : A;
+fun baking_powder_N : N;
+fun baksheesh_N : N;
+fun baku_PN : PN;
+fun balaclava_N : N;
+fun balalaika_N : N;
+fun balance_N : N;
+fun balance_V : V;
+fun balance_V2 : V2;
+fun balance_sheet_N : N;
+fun balance_wheel_N : N;
+fun balconied_A : A;
+fun balcony_N : N;
+fun bald_A : A;
+fun bald_head_N : N;
+fun bald_pate_N : N;
+fun balderdash_N : N;
+fun baldness_N : N;
+fun baldock_PN : PN;
+fun baldric_N : N;
+fun bale_N : N;
+fun bale_V2 : V2;
+fun baleful_A : A;
+fun balk_N : N;
+fun balk_V : V;
+fun balk_V2 : V2;
+fun ball_N : N;
+fun ball_V : V;
+fun ball_V2 : V2;
+fun ball_cartridge_N : N;
+fun ball_dress_N : N;
+fun ballad_N : N;
+fun ballade_N : N;
+fun ballast_N : N;
+fun ballast_V2 : V2;
+fun ballbearing_N : N;
+fun ballcock_N : N;
+fun ballerina_N : N;
+fun ballet_N : N;
+fun ballet_dancer_N : N;
+fun ballet_skirt_N : N;
+fun ballistic_A : A;
+fun ballistics_N : N;
+fun ballock_N : N;
+fun balloon_N : N;
+fun balloon_V : V;
+fun balloon_V2 : V2;
+fun balloonist_N : N;
+fun ballot_N : N;
+fun ballot_V : V;
+fun ballot_box_N : N;
+fun ballpen_N : N;
+fun ballpoint_N : N;
+fun ballpoint_pen_N : N;
+fun ballroom_N : N;
+fun balls_up_N : N;
+fun bally_A : A;
+fun bally_Adv : Adv;
+fun ballyhoo_N : N;
+fun balm_N : N;
+fun balmy_A : A;
+fun baloney_N : N;
+fun balsa_N : N;
+fun balsam_N : N;
+fun baltimore_PN : PN;
+fun baluster_N : N;
+fun balustrade_N : N;
+fun bambino_N : N;
+fun bamboo_N : N;
+fun bamboozle_V2 : V2;
+fun ban_N : N;
+fun ban_V2 : V2;
+fun banal_A : A;
+fun banality_N : N;
+fun banana_N : N;
+fun banbury_PN : PN;
+fun band_N : N;
+fun band_V : V;
+fun band_V2 : V2;
+fun band_saw_N : N;
+fun bandage_N : N;
+fun bandage_V2 : V2;
+fun bandanna_N : N;
+fun bandbox_N : N;
+fun bandeau_N : N;
+fun bandit_N : N;
+fun banditry_N : N;
+fun bandleader_N : N;
+fun bandmaster_N : N;
+fun bandoleer_N : N;
+fun bandolier_N : N;
+fun bandsman_N : N;
+fun bandstand_N : N;
+fun bandung_PN : PN;
+fun bandwagon_N : N;
+fun bandy_A : A;
+fun bandy_V2 : V2;
+fun bandy_legged_A : A;
+fun bane_N : N;
+fun baneful_A : A;
+fun bang_Adv : Adv;
+fun bang_N : N;
+fun bang_V : V;
+fun bang_V2 : V2;
+fun bangalore_PN : PN;
+fun banger_N : N;
+fun bangkok_PN : PN;
+fun bangladesh_PN : PN;
+fun bangladeshi_A : A;
+fun bangladeshi_N : N;
+fun bangle_N : N;
+fun bangor_PN : PN;
+fun banian_N : N;
+fun banian_tree_N : N;
+fun banish_V2 : V2;
+fun banishment_N : N;
+fun banister_N : N;
+fun banjo_N : N;
+fun bank_N : N;
+fun bank_V : V;
+fun bank_V2 : V2;
+fun bank_bill_N : N;
+fun bank_book_N : N;
+fun bank_draft_N : N;
+fun bank_rate_N : N;
+fun banker_N : N;
+fun banking_N : N;
+fun banknote_N : N;
+fun bankroll_N : N;
+fun bankrupt_A : A;
+fun bankrupt_N : N;
+fun bankrupt_V2 : V2;
+fun bankruptcy_N : N;
+fun banner_N : N;
+fun banning_order_N : N;
+fun bannister_N : N;
+fun bannock_N : N;
+fun bannockburn_PN : PN;
+fun banquet_N : N;
+fun banquet_V : V;
+fun banquet_V2 : V2;
+fun banshee_N : N;
+fun bant_V : V;
+fun bantam_N : N;
+fun banter_N : N;
+fun banter_V : V;
+fun banter_V2 : V2;
+fun bantering_A : A;
+fun banting_N : N;
+fun bantry_PN : PN;
+fun bantu_A : A;
+fun bantu_N : N;
+fun banyan_N : N;
+fun baobab_N : N;
+fun baptism_N : N;
+fun baptismal_A : A;
+fun baptist_A : A;
+fun baptist_N : N;
+fun baptize_V2 : V2;
+fun bar_N : N;
+fun bar_V2 : V2;
+fun baracaldo_PN : PN;
+fun barb_N : N;
+fun barbadian_A : A;
+fun barbadian_N : N;
+fun barbados_PN : PN;
+fun barbara_PN : PN;
+fun barbarian_A : A;
+fun barbarian_N : N;
+fun barbaric_A : A;
+fun barbarism_N : N;
+fun barbarity_N : N;
+fun barbarize_V2 : V2;
+fun barbarous_A : A;
+fun barbecue_N : N;
+fun barbecue_V2 : V2;
+fun barbed_A : A;
+fun barbel_N : N;
+fun barber_N : N;
+fun barbican_N : N;
+fun barbitone_N : N;
+fun barbiturate_N : N;
+fun barcarole_N : N;
+fun barcarolle_N : N;
+fun barcelona_PN : PN;
+fun bard_N : N;
+fun bardic_A : A;
+fun bardolatry_N : N;
+fun bare_A : A;
+fun bare_V2 : V2;
+fun bareback_Adv : Adv;
+fun barebacked_A : A;
+fun barebacked_Adv : Adv;
+fun barefaced_A : A;
+fun barefoot_Adv : Adv;
+fun barefooted_A : A;
+fun barefooted_Adv : Adv;
+fun bareheaded_A : A;
+fun barelegged_A : A;
+fun bareness_N : N;
+fun bargain_N : N;
+fun bargain_V : V;
+fun bargain_V2 : V2;
+fun barge_N : N;
+fun barge_V : V;
+fun bargee_N : N;
+fun bargepole_N : N;
+fun bargoed_PN : PN;
+fun bari_PN : PN;
+fun baritone_N : N;
+fun barium_N : N;
+fun bark_N : N;
+fun bark_V : V;
+fun bark_V2 : V2;
+fun barker_N : N;
+fun barking_PN : PN;
+fun barley_N : N;
+fun barley_sugar_N : N;
+fun barley_water_N : N;
+fun barleycorn_N : N;
+fun barm_N : N;
+fun barmaid_N : N;
+fun barman_N : N;
+fun barmy_A : A;
+fun barn_N : N;
+fun barn_door_N : N;
+fun barnacle_N : N;
+fun barnard_castle_PN : PN;
+fun barnet_PN : PN;
+fun barnoldswick_PN : PN;
+fun barnsley_PN : PN;
+fun barnstaple_PN : PN;
+fun barnstorm_V : V;
+fun barnstormer_N : N;
+fun barnyard_N : N;
+fun barometer_N : N;
+fun barometric_A : A;
+fun baron_N : N;
+fun baronage_N : N;
+fun baroness_N : N;
+fun baronet_N : N;
+fun baronetcy_N : N;
+fun baronial_A : A;
+fun barony_N : N;
+fun baroque_A : A;
+fun baroque_N : N;
+fun barouche_N : N;
+fun barque_N : N;
+fun barrack_N : N;
+fun barrack_V : V;
+fun barrack_V2 : V2;
+fun barracking_N : N;
+fun barracuda_N : N;
+fun barrage_N : N;
+fun barranquilla_PN : PN;
+fun barrel_N : N;
+fun barrel_V2 : V2;
+fun barrelled_A : A;
+fun barren_A : A;
+fun barrenness_N : N;
+fun barrhead_PN : PN;
+fun barricade_N : N;
+fun barricade_V2 : V2;
+fun barrier_N : N;
+fun barrister_N : N;
+fun barrow_N : N;
+fun barrow_boy_N : N;
+fun barrow_in_furness_PN : PN;
+fun barrow_man_N : N;
+fun barry_PN : PN;
+fun bart_PN : PN;
+fun bartender_N : N;
+fun barter_N : N;
+fun barter_V : V;
+fun barter_V2 : V2;
+fun barterer_N : N;
+fun bartholomew_PN : PN;
+fun barton_upon_humber_PN : PN;
+fun bas_relief_N : N;
+fun basal_A : A;
+fun basalt_N : N;
+fun bascule_N : N;
+fun base_A : A;
+fun base_N : N;
+fun base_V : V;
+fun base_V2 : V2;
+fun baseball_N : N;
+fun baseboard_N : N;
+fun basel_PN : PN;
+fun baseless_A : A;
+fun basement_N : N;
+fun bash_N : N;
+fun bash_V2 : V2;
+fun bashful_A : A;
+fun basic_A : A;
+fun basically_Adv : Adv;
+fun basil_N : N;
+fun basil_PN : PN;
+fun basildon_PN : PN;
+fun basilica_N : N;
+fun basilisk_N : N;
+fun basin_N : N;
+fun basingstoke_PN : PN;
+fun basis_N : N;
+fun bask_V : V;
+fun basket_N : N;
+fun basketball_N : N;
+fun basketry_N : N;
+fun bass_A : A;
+fun bass_N : N;
+fun bassinet_N : N;
+fun bassoon_N : N;
+fun bast_N : N;
+fun bastard_N : N;
+fun bastardize_V2 : V2;
+fun bastardy_N : N;
+fun baste_V2 : V2;
+fun bastinado_N : N;
+fun bastinado_V2 : V2;
+fun bastion_N : N;
+fun bat_N : N;
+fun bat_V : V;
+fun bat_V2 : V2;
+fun batch_N : N;
+fun bate_V2 : V2;
+fun bath_N : N;
+fun bath_PN : PN;
+fun bath_V : V;
+fun bath_V2 : V2;
+fun bath_chair_N : N;
+fun bathe_N : N;
+fun bathe_V : V;
+fun bathe_V2 : V2;
+fun bather_N : N;
+fun bathgate_PN : PN;
+fun bathing_N : N;
+fun bathing_cap_N : N;
+fun bathing_costume_N : N;
+fun bathing_machine_N : N;
+fun bathing_suit_N : N;
+fun bathos_N : N;
+fun bathrobe_N : N;
+fun bathroom_N : N;
+fun bathtub_N : N;
+fun bathysphere_N : N;
+fun batik_N : N;
+fun batiste_N : N;
+fun batley_PN : PN;
+fun batman_N : N;
+fun baton_N : N;
+fun bats_A : A;
+fun batsman_N : N;
+fun battalion_N : N;
+fun batten_N : N;
+fun batten_V : V;
+fun batten_V2 : V2;
+fun batter_N : N;
+fun batter_V : V;
+fun batter_V2 : V2;
+fun battery_N : N;
+fun batting_N : N;
+fun battle_N : N;
+fun battle_V : V;
+fun battle_V2 : V2;
+fun battle_axe_N : N;
+fun battle_cruiser_N : N;
+fun battledore_N : N;
+fun battledress_N : N;
+fun battlefield_N : N;
+fun battleground_N : N;
+fun battleship_N : N;
+fun battue_N : N;
+fun batty_A : A;
+fun bauble_N : N;
+fun baulk_N : N;
+fun baulk_V : V;
+fun baulk_V2 : V2;
+fun bauxite_N : N;
+fun bawbee_N : N;
+fun bawd_N : N;
+fun bawdily_Adv : Adv;
+fun bawdy_A : A;
+fun bawdy_N : N;
+fun bawl_V : V;
+fun bawl_V2 : V2;
+fun bay_A : A;
+fun bay_N : N;
+fun bay_V : V;
+fun bay_wreath_N : N;
+fun bayonet_N : N;
+fun bayonet_V2 : V2;
+fun bayou_N : N;
+fun bazaar_N : N;
+fun bazooka_N : N;
+fun bbc_PN : PN;
+fun beach_N : N;
+fun beach_V2 : V2;
+fun beachcomber_N : N;
+fun beachhead_N : N;
+fun beachwear_N : N;
+fun beacon_N : N;
+fun beacon_fire_N : N;
+fun beacon_light_N : N;
+fun beaconsfield_PN : PN;
+fun bead_N : N;
+fun beading_N : N;
+fun beadle_N : N;
+fun beady_A : A;
+fun beagle_N : N;
+fun beagling_N : N;
+fun beak_N : N;
+fun beaker_N : N;
+fun beam_N : N;
+fun beam_V : V;
+fun beam_V2 : V2;
+fun bean_N : N;
+fun beanfeast_N : N;
+fun beano_N : N;
+fun beanstalk_N : N;
+fun bear_N : N;
+fun bear_V : V;
+fun bear_V2 : V2;
+fun bearable_A : A;
+fun beard_N : N;
+fun beard_V2 : V2;
+fun bearded_A : A;
+fun beardless_A : A;
+fun bearer_N : N;
+fun bearing_N : N;
+fun bearish_A : A;
+fun bearsden_PN : PN;
+fun bearskin_N : N;
+fun beast_N : N;
+fun beastliness_N : N;
+fun beastly_A : A;
+fun beastly_Adv : Adv;
+fun beat_A : A;
+fun beat_N : N;
+fun beat_V : V;
+fun beat_V2 : V2;
+fun beaten_A : A;
+fun beater_N : N;
+fun beatific_A : A;
+fun beatification_N : N;
+fun beatify_V2 : V2;
+fun beating_N : N;
+fun beatitude_N : N;
+fun beatnik_N : N;
+fun beatrice_PN : PN;
+fun beau_N : N;
+fun beaujolais_N : N;
+fun beaumaris_PN : PN;
+fun beauteous_A : A;
+fun beautician_N : N;
+fun beautiful_A : A;
+fun beautify_V2 : V2;
+fun beauty_N : N;
+fun beauty_parlour_N : N;
+fun beauty_salon_N : N;
+fun beauty_sleep_N : N;
+fun beauty_spot_N : N;
+fun beaver_N : N;
+fun beaver_V : V;
+fun bebington_PN : PN;
+fun becalmed_A : A;
+fun because_Subj : Subj ;
+fun beccles_PN : PN;
+fun beck_N : N;
+fun beckon_V : V;
+fun beckon_V2 : V2;
+fun become_V : V;
+fun become_V2 : V2;
+fun become_VA : VA;
+fun become_VS : VS;
+fun becoming_A : A;
+fun bed_N : N;
+fun bed_V2 : V2;
+fun bedaubed_A : A;
+fun bedbug_N : N;
+fun beddau_PN : PN;
+fun bedded_A : A;
+fun bedding_N : N;
+fun bedecked_A : A;
+fun bedevil_V2 : V2;
+fun bedevilment_N : N;
+fun bedewed_A : A;
+fun bedfellow_N : N;
+fun bedford_PN : PN;
+fun bedfordshire_PN : PN;
+fun bedimmed_A : A;
+fun bedlam_N : N;
+fun bedlington_PN : PN;
+fun bedouin_N : N;
+fun bedpan_N : N;
+fun bedpost_N : N;
+fun bedraggled_A : A;
+fun bedridden_A : A;
+fun bedrock_N : N;
+fun bedroll_N : N;
+fun bedroom_N : N;
+fun bedroomed_A : A;
+fun bedside_N : N;
+fun bedsit_N : N;
+fun bedsitter_N : N;
+fun bedsitting_room_N : N;
+fun bedsore_N : N;
+fun bedspread_N : N;
+fun bedstead_N : N;
+fun bedtime_N : N;
+fun beduin_N : N;
+fun bedwas_PN : PN;
+fun bee_N : N;
+fun beech_N : N;
+fun beef_N : N;
+fun beef_V : V;
+fun beefeater_N : N;
+fun beefsteak_N : N;
+fun beefy_A : A;
+fun beehive_N : N;
+fun beep_N : N;
+fun beer_N : N;
+fun beery_A : A;
+fun beeswax_N : N;
+fun beeswax_V2 : V2;
+fun beet_N : N;
+fun beetle_N : N;
+fun beetle_V : V;
+fun beetle_browed_A : A;
+fun beetroot_N : N;
+fun befall_V : V;
+fun befall_V2 : V2;
+fun befit_V2 : V2;
+fun befitting_A : A;
+fun befogged_A : A;
+fun before_Adv : Adv;
+fun before_Prep : Prep ;
+fun beforehand_A : A;
+fun beforehand_Adv : Adv;
+fun befoul_V2 : V2;
+fun befriend_V2 : V2;
+fun beg_V : V;
+fun beg_V2 : V2;
+fun beget_V2 : V2;
+fun begetter_N : N;
+fun beggar_N : N;
+fun beggar_V2 : V2;
+fun beggarly_A : A;
+fun beggarman_N : N;
+fun beggarwoman_N : N;
+fun beggary_N : N;
+fun begin_V : V;
+fun begin_V2 : V2;
+fun begin_VV : VV;
+fun beginner_N : N;
+fun beginning_N : N;
+fun begonia_N : N;
+fun begrimed_A : A;
+fun begrudge_V2 : V2;
+fun beguile_V2 : V2;
+fun begum_N : N;
+fun behalf_N : N;
+fun behave_V : V;
+fun behaved_A : A;
+fun behaviour_N : N;
+fun behaviourism_N : N;
+fun behaviourist_N : N;
+fun behead_V2 : V2;
+fun behest_N : N;
+fun behind_Adv : Adv;
+fun behind_N : N;
+fun behind_Prep : Prep ;
+fun behindhand_A : A;
+fun behold_V2 : V2;
+fun beholden_A : A;
+fun beholder_N : N;
+fun behove_V2 : V2;
+fun beige_N : N;
+fun being_N : N;
+fun beirut_PN : PN;
+fun beith_PN : PN;
+fun bejewelled_A : A;
+fun belabour_V2 : V2;
+fun belated_A : A;
+fun belay_N : N;
+fun belay_V2 : V2;
+fun belaying_pin_N : N;
+fun belch_N : N;
+fun belch_V : V;
+fun belch_V2 : V2;
+fun beldam_N : N;
+fun beldame_N : N;
+fun beleaguer_V2 : V2;
+fun belem_PN : PN;
+fun belfast_PN : PN;
+fun belfry_N : N;
+fun belgian_A : A;
+fun belgian_N : N;
+fun belgium_PN : PN;
+fun belgrade_PN : PN;
+fun belie_V2 : V2;
+fun belief_N : N;
+fun believable_A : A;
+fun believe_V : V;
+fun believe_V2 : V2;
+fun believe_V2V : V2V;
+fun believe_VS : VS;
+fun believer_N : N;
+fun believing_N : N;
+fun belike_Adv : Adv;
+fun belinda_PN : PN;
+fun belittle_V2 : V2;
+fun bell_N : N;
+fun bell_V2 : V2;
+fun bell_bottomed_A : A;
+fun bell_buoy_N : N;
+fun bell_flower_N : N;
+fun bell_founder_N : N;
+fun bell_foundry_N : N;
+fun bell_metal_N : N;
+fun bell_push_N : N;
+fun bell_ringer_N : N;
+fun bell_tent_N : N;
+fun bella_PN : PN;
+fun belladonna_N : N;
+fun bellboy_N : N;
+fun belle_N : N;
+fun belle_PN : PN;
+fun bellhop_N : N;
+fun bellicose_A : A;
+fun bellied_A : A;
+fun belligerency_N : N;
+fun belligerent_A : A;
+fun belligerent_N : N;
+fun bellow_V : V;
+fun bellow_V2 : V2;
+fun bellshill_PN : PN;
+fun bellwether_N : N;
+fun belly_N : N;
+fun belly_V : V;
+fun belly_V2 : V2;
+fun bellyache_N : N;
+fun bellyache_V : V;
+fun bellyflop_N : N;
+fun bellyful_N : N;
+fun bellyland_V : V;
+fun bellylaugh_N : N;
+fun bellylaugh_V : V;
+fun belo_horizonte_PN : PN;
+fun belong_V : V;
+fun beloved_A : A;
+fun beloved_N : N;
+fun below_Adv : Adv;
+fun below_Prep : Prep ;
+fun belper_PN : PN;
+fun belt_N : N;
+fun belt_V2 : V2;
+fun belting_N : N;
+fun bemoan_V2 : V2;
+fun bemused_A : A;
+fun ben_N : N;
+fun ben_PN : PN;
+fun bench_N : N;
+fun bend_N : N;
+fun bend_V : V;
+fun bend_V2 : V2;
+fun beneath_Adv : Adv;
+fun beneath_Prep : Prep ;
+fun benedick_N : N;
+fun benedictine_A : A;
+fun benedictine_N : N;
+fun benediction_N : N;
+fun benefaction_N : N;
+fun benefactor_N : N;
+fun benefactress_N : N;
+fun benefice_N : N;
+fun beneficed_A : A;
+fun beneficence_N : N;
+fun beneficent_A : A;
+fun beneficial_A : A;
+fun beneficiary_N : N;
+fun benefit_N : N;
+fun benefit_V : V;
+fun benefit_V2 : V2;
+fun benevolence_N : N;
+fun benevolent_A : A;
+fun bengali_A : A;
+fun bengali_N : N;
+fun benighted_A : A;
+fun benign_A : A;
+fun benignant_A : A;
+fun benignity_N : N;
+fun benin_PN : PN;
+fun beninese_A : A;
+fun beninese_N : N;
+fun benison_N : N;
+fun benjamin_PN : PN;
+fun benny_PN : PN;
+fun bent_A : A;
+fun bent_N : N;
+fun benumbed_A : A;
+fun benzedrine_N : N;
+fun benzene_N : N;
+fun benzine_N : N;
+fun benzol_N : N;
+fun beograd_PN : PN;
+fun bequeath_V2 : V2;
+fun bequest_N : N;
+fun berate_V2 : V2;
+fun bereave_V2 : V2;
+fun bereavement_N : N;
+fun beret_N : N;
+fun berg_N : N;
+fun bergamo_PN : PN;
+fun bergen_PN : PN;
+fun beri_beri_N : N;
+fun berkhamsted_PN : PN;
+fun berkshire_PN : PN;
+fun berlin_PN : PN;
+fun bermuda_PN : PN;
+fun bermudan_A : A;
+fun bermudan_N : N;
+fun bern_PN : PN;
+fun bernard_PN : PN;
+fun bernie_PN : PN;
+fun berry_N : N;
+fun berserk_A : A;
+fun bert_PN : PN;
+fun berth_N : N;
+fun berth_V : V;
+fun berth_V2 : V2;
+fun bertha_PN : PN;
+fun bertie_PN : PN;
+fun berwick_upon_tweed_PN : PN;
+fun beryl_N : N;
+fun beryl_PN : PN;
+fun beseech_V2 : V2;
+fun beseeching_A : A;
+fun beseem_V2 : V2;
+fun beset_V2 : V2;
+fun beshrew_V2 : V2;
+fun beside_Prep : Prep ;
+fun besides_Adv : Adv;
+fun besides_Prep : Prep ;
+fun besiege_V2 : V2;
+fun besieger_N : N;
+fun besmear_V2 : V2;
+fun besmirch_V2 : V2;
+fun besom_N : N;
+fun besotted_A : A;
+fun bespangled_A : A;
+fun bespattered_A : A;
+fun bespeak_V2 : V2;
+fun bespectacled_A : A;
+fun bess_PN : PN;
+fun bessie_PN : PN;
+fun best_Adv : Adv;
+fun best_V2 : V2;
+fun best_seller_N : N;
+fun bestial_A : A;
+fun bestiality_N : N;
+fun bestiary_N : N;
+fun bestir_V2 : V2;
+fun bestow_V2 : V2;
+fun bestowal_N : N;
+fun bestrew_V2 : V2;
+fun bestride_V2 : V2;
+fun bet_N : N;
+fun bet_V : V;
+fun bet_V2 : V2;
+fun bet_VS : VS;
+fun beta_N : N;
+fun betake_V2 : V2;
+fun bete_noire_N : N;
+fun betel_N : N;
+fun betel_nut_N : N;
+fun bethel_N : N;
+fun bethink_V2 : V2;
+fun bethune_PN : PN;
+fun betide_V2 : V2;
+fun betimes_Adv : Adv;
+fun betoken_V2 : V2;
+fun betray_V2 : V2;
+fun betrayal_N : N;
+fun betrayer_N : N;
+fun betroth_V2 : V2;
+fun betrothal_N : N;
+fun betrothed_N : N;
+fun betsy_PN : PN;
+fun better_Adv : Adv;
+fun better_N : N;
+fun better_V2 : V2;
+fun betterment_N : N;
+fun bettor_N : N;
+fun betty_PN : PN;
+fun between_Adv : Adv;
+fun between_Prep : Prep ;
+fun betwixt_Adv : Adv;
+fun bevel_N : N;
+fun bevel_V2 : V2;
+fun beverage_N : N;
+fun beverley_PN : PN;
+fun bevy_N : N;
+fun bewail_V2 : V2;
+fun beware_V : V;
+fun beware_V2 : V2;
+fun bewdley_PN : PN;
+fun bewilder_V2 : V2;
+fun bewildering_A : A;
+fun bewilderment_N : N;
+fun bewitch_V2 : V2;
+fun bewitching_A : A;
+fun bexhill_PN : PN;
+fun bexley_PN : PN;
+fun bey_N : N;
+fun beyond_Adv : Adv;
+fun beyond_Prep : Prep ;
+fun bezique_N : N;
+fun bhang_N : N;
+fun bhutan_PN : PN;
+fun bhutani_A : A;
+fun bhutani_N : N;
+fun bias_N : N;
+fun bias_V2 : V2;
+fun bib_N : N;
+fun bib_V : V;
+fun bible_N : N;
+fun biblical_A : A;
+fun bibliographer_N : N;
+fun bibliography_N : N;
+fun bibliophile_N : N;
+fun bibulous_A : A;
+fun bicameral_A : A;
+fun bicarbonate_N : N;
+fun bicentenary_N : N;
+fun bicentennial_A : A;
+fun bicentennial_N : N;
+fun biceps_N : N;
+fun bicester_PN : PN;
+fun bicker_V : V;
+fun bicycle_N : N;
+fun bicycle_V : V;
+fun bid_N : N;
+fun bid_V : V;
+fun bid_V2 : V2;
+fun biddable_A : A;
+fun bidder_N : N;
+fun bidding_N : N;
+fun biddulph_PN : PN;
+fun bide_V2 : V2;
+fun bideford_PN : PN;
+fun bidet_N : N;
+fun bielefeld_PN : PN;
+fun biennial_A : A;
+fun biennial_N : N;
+fun bier_N : N;
+fun biff_N : N;
+fun biff_V2 : V2;
+fun bifocal_A : A;
+fun bifurcate_A : A;
+fun bifurcate_V : V;
+fun bifurcate_V2 : V2;
+fun bifurcated_A : A;
+fun bifurcation_N : N;
+fun big_A : A;
+fun big_boned_A : A;
+fun bigamist_N : N;
+fun bigamous_A : A;
+fun bigamy_N : N;
+fun biggleswade_PN : PN;
+fun bight_N : N;
+fun bigot_N : N;
+fun bigoted_A : A;
+fun bigotry_N : N;
+fun bigwig_N : N;
+fun bijou_A : A;
+fun bijou_N : N;
+fun bike_N : N;
+fun bike_V : V;
+fun bikini_N : N;
+fun bilabial_A : A;
+fun bilabial_N : N;
+fun bilateral_A : A;
+fun bilateralism_N : N;
+fun bilbao_PN : PN;
+fun bilberry_N : N;
+fun bile_N : N;
+fun bile_duct_N : N;
+fun bilge_N : N;
+fun bilge_water_N : N;
+fun bilharzia_N : N;
+fun bilingual_A : A;
+fun bilingual_N : N;
+fun bilious_A : A;
+fun biliousness_N : N;
+fun bilk_V2 : V2;
+fun bill_N : N;
+fun bill_PN : PN;
+fun bill_V : V;
+fun bill_V2 : V2;
+fun bill_poster_N : N;
+fun bill_sticker_N : N;
+fun billboard_N : N;
+fun billericay_PN : PN;
+fun billet_N : N;
+fun billet_V2 : V2;
+fun billet_doux_N : N;
+fun billfold_N : N;
+fun billhook_N : N;
+fun billiard_marker_N : N;
+fun billiard_player_N : N;
+fun billiard_room_N : N;
+fun billiard_table_N : N;
+fun billiards_N : N;
+fun billingsgate_N : N;
+fun billington_PN : PN;
+fun billion_A : A;
+fun billion_N : N;
+fun billionth_A : A;
+fun billionth_N : N;
+fun billow_N : N;
+fun billow_V : V;
+fun billowy_A : A;
+fun billy_N : N;
+fun billy_PN : PN;
+fun billy_goat_N : N;
+fun billy_ho_N : N;
+fun billy_o_N : N;
+fun biltong_N : N;
+fun bimetallic_A : A;
+fun bimetallism_N : N;
+fun bin_N : N;
+fun binary_A : A;
+fun bind_N : N;
+fun bind_V : V;
+fun bind_V2 : V2;
+fun binder_N : N;
+fun bindery_N : N;
+fun binding_A : A;
+fun bindweed_N : N;
+fun bine_N : N;
+fun binge_N : N;
+fun bingley_PN : PN;
+fun bingo_N : N;
+fun binnacle_N : N;
+fun binomial_A : A;
+fun biochemistry_N : N;
+fun biodegradable_A : A;
+fun biograph_N : N;
+fun biographer_N : N;
+fun biographic_A : A;
+fun biographical_A : A;
+fun biography_N : N;
+fun biological_A : A;
+fun biologist_N : N;
+fun biology_N : N;
+fun bioscope_N : N;
+fun bipartisan_A : A;
+fun biped_N : N;
+fun biplane_N : N;
+fun birch_N : N;
+fun birch_V2 : V2;
+fun birch_rod_N : N;
+fun bird's_eye_A : A;
+fun bird_N : N;
+fun bird_fancier_N : N;
+fun birdcage_N : N;
+fun birdlime_N : N;
+fun birdnesting_N : N;
+fun birdwatcher_N : N;
+fun biretta_N : N;
+fun birkenhead_PN : PN;
+fun biro_N : N;
+fun birstall_PN : PN;
+fun birth_N : N;
+fun birth_control_N : N;
+fun birthday_N : N;
+fun birthmark_N : N;
+fun birthplace_N : N;
+fun birthrate_N : N;
+fun birthright_N : N;
+fun birtley_PN : PN;
+fun biscuit_N : N;
+fun bisect_V2 : V2;
+fun bisection_N : N;
+fun bisexual_A : A;
+fun bisexual_N : N;
+fun bisexuality_N : N;
+fun bishop's_cleeve_PN : PN;
+fun bishop's_stortford_PN : PN;
+fun bishop_N : N;
+fun bishop_auckland_PN : PN;
+fun bishopbriggs_PN : PN;
+fun bishopric_N : N;
+fun bismuth_N : N;
+fun bison_N : N;
+fun bistro_N : N;
+fun bit_N : N;
+fun bitch_N : N;
+fun bitch_V : V;
+fun bitchy_A : A;
+fun bite_N : N;
+fun bite_V : V;
+fun bite_V2 : V2;
+fun biting_A : A;
+fun bitter_A : A;
+fun bitter_N : N;
+fun bitter_sweet_A : A;
+fun bittern_N : N;
+fun bitterness_N : N;
+fun bitumen_N : N;
+fun bituminous_A : A;
+fun bivalve_N : N;
+fun bivouac_N : N;
+fun bivouac_V : V;
+fun biz_N : N;
+fun bizarre_A : A;
+fun bizonal_A : A;
+fun blab_V : V;
+fun blab_V2 : V2;
+fun blabber_V : V;
+fun blabber_V2 : V2;
+fun blabbermouth_N : N;
+fun black_A : A;
+fun black_N : N;
+fun black_V2 : V2;
+fun black_beetle_N : N;
+fun black_lead_N : N;
+fun black_lead_V2 : V2;
+fun blackamoor_N : N;
+fun blackball_V2 : V2;
+fun blackberry_N : N;
+fun blackbird_N : N;
+fun blackboard_N : N;
+fun blackburn_PN : PN;
+fun blackcurrant_N : N;
+fun blacken_V : V;
+fun blacken_V2 : V2;
+fun blackguard_N : N;
+fun blackguard_V2 : V2;
+fun blackguardly_A : A;
+fun blackhall_PN : PN;
+fun blackhead_N : N;
+fun blacking_N : N;
+fun blackish_A : A;
+fun blackleg_N : N;
+fun blackleg_V : V;
+fun blackleg_V2 : V2;
+fun blacklist_N : N;
+fun blacklist_V2 : V2;
+fun blackmail_N : N;
+fun blackmail_V2 : V2;
+fun blackmailer_N : N;
+fun blackness_N : N;
+fun blackout_N : N;
+fun blackpool_PN : PN;
+fun blackshirt_N : N;
+fun blacksmith_N : N;
+fun blackthorn_N : N;
+fun blackwater_A : A;
+fun blackwood_PN : PN;
+fun bladder_N : N;
+fun blade_N : N;
+fun blaeberry_N : N;
+fun blaenau_ffestiniog_PN : PN;
+fun blaenavon_PN : PN;
+fun blaengwrach_PN : PN;
+fun blah_N : N;
+fun blaina_PN : PN;
+fun blairgowrie_PN : PN;
+fun blame_N : N;
+fun blame_V : V;
+fun blame_V2 : V2;
+fun blameless_A : A;
+fun blameworthy_A : A;
+fun blanch_V : V;
+fun blanch_V2 : V2;
+fun blancmange_N : N;
+fun bland_A : A;
+fun blandishment_N : N;
+fun blandness_N : N;
+fun blank_A : A;
+fun blank_N : N;
+fun blanket_N : N;
+fun blanket_V2 : V2;
+fun blantyre_PN : PN;
+fun blare_N : N;
+fun blare_V : V;
+fun blare_V2 : V2;
+fun blarney_N : N;
+fun blase_A : A;
+fun blaspheme_V : V;
+fun blaspheme_V2 : V2;
+fun blasphemer_N : N;
+fun blasphemous_A : A;
+fun blasphemy_N : N;
+fun blast_N : N;
+fun blast_V : V;
+fun blast_V2 : V2;
+fun blast_furnace_N : N;
+fun blast_off_N : N;
+fun blasted_A : A;
+fun blatant_A : A;
+fun blather_N : N;
+fun blather_V : V;
+fun blaze_N : N;
+fun blaze_V : V;
+fun blaze_V2 : V2;
+fun blazer_N : N;
+fun blazing_A : A;
+fun blazon_N : N;
+fun blazon_V2 : V2;
+fun blazonry_N : N;
+fun bldg_PN : PN;
+fun bldgs_PN : PN;
+fun bleach_N : N;
+fun bleach_V : V;
+fun bleach_V2 : V2;
+fun bleaching_powder_N : N;
+fun bleak_A : A;
+fun bleary_A : A;
+fun bleary_eyed_A : A;
+fun bleat_N : N;
+fun bleat_V : V;
+fun bleat_V2 : V2;
+fun bleed_V : V;
+fun bleed_V2 : V2;
+fun bleed_VS : VS;
+fun bleep_N : N;
+fun bleep_V : V;
+fun blemish_N : N;
+fun blemish_V2 : V2;
+fun blench_V : V;
+fun blend_N : N;
+fun blend_V : V;
+fun blend_V2 : V2;
+fun bless_V2 : V2;
+fun blessed_A : A;
+fun blessedness_N : N;
+fun blessing_N : N;
+fun bletchley_PN : PN;
+fun blether_N : N;
+fun blether_V : V;
+fun blidworth_PN : PN;
+fun blight_N : N;
+fun blight_V2 : V2;
+fun blighter_N : N;
+fun blighty_N : N;
+fun blimp_N : N;
+fun blind_A : A;
+fun blind_N : N;
+fun blind_V2 : V2;
+fun blindfold_A : A;
+fun blindfold_N : N;
+fun blindfold_V2 : V2;
+fun blindman's_buff_N : N;
+fun blindness_N : N;
+fun blink_N : N;
+fun blink_V : V;
+fun blink_V2 : V2;
+fun blinking_A : A;
+fun blip_N : N;
+fun bliss_N : N;
+fun blissful_A : A;
+fun blister_N : N;
+fun blister_V : V;
+fun blister_V2 : V2;
+fun blithe_A : A;
+fun blithering_A : A;
+fun blithesome_A : A;
+fun blitz_N : N;
+fun blitz_V2 : V2;
+fun blizzard_N : N;
+fun bloated_A : A;
+fun bloater_N : N;
+fun blob_N : N;
+fun bloc_N : N;
+fun block_N : N;
+fun block_V2 : V2;
+fun blockade_N : N;
+fun blockade_V2 : V2;
+fun blockade_runner_N : N;
+fun blockage_N : N;
+fun blockbuster_N : N;
+fun blockhead_N : N;
+fun blockhouse_N : N;
+fun bloke_N : N;
+fun blond_A : A;
+fun blond_N : N;
+fun blonde_A : A;
+fun blonde_N : N;
+fun blood_N : N;
+fun blood_V2 : V2;
+fun blood_bath_N : N;
+fun blood_donor_N : N;
+fun blood_group_N : N;
+fun blood_heat_N : N;
+fun blood_letting_N : N;
+fun blood_money_N : N;
+fun blood_poisoning_N : N;
+fun blood_pressure_N : N;
+fun blood_relation_N : N;
+fun blood_transfusion_N : N;
+fun blood_type_N : N;
+fun blood_vessel_N : N;
+fun bloodcurdling_A : A;
+fun bloodhound_N : N;
+fun bloodless_A : A;
+fun bloodlust_N : N;
+fun bloodshed_N : N;
+fun bloodshot_A : A;
+fun bloodstain_N : N;
+fun bloodstained_A : A;
+fun bloodstock_N : N;
+fun bloodsucker_N : N;
+fun bloodthirstiness_N : N;
+fun bloodthirsty_A : A;
+fun bloody_A : A;
+fun bloody_Adv : Adv;
+fun bloody_minded_A : A;
+fun bloom_N : N;
+fun bloom_V : V;
+fun bloomer_N : N;
+fun blooming_A : A;
+fun blossom_N : N;
+fun blossom_V : V;
+fun blot_N : N;
+fun blot_V2 : V2;
+fun blotch_N : N;
+fun blotter_N : N;
+fun blotting_paper_N : N;
+fun blotto_A : A;
+fun blouse_N : N;
+fun blow_N : N;
+fun blow_V : V;
+fun blow_V2 : V2;
+fun blow_dry_V2 : V2;
+fun blow_up_N : N;
+fun blowback_N : N;
+fun blower_N : N;
+fun blowfly_N : N;
+fun blowhole_N : N;
+fun blowing_up_N : N;
+fun blowlamp_N : N;
+fun blowout_N : N;
+fun blowpipe_N : N;
+fun blowtorch_N : N;
+fun blowzy_A : A;
+fun blubber_N : N;
+fun blubber_V : V;
+fun blubber_V2 : V2;
+fun bludgeon_N : N;
+fun bludgeon_V2 : V2;
+fun blue_A : A;
+fun blue_N : N;
+fun blue_V2 : V2;
+fun blue_collar_A : A;
+fun blue_jacket_N : N;
+fun blue_pencil_V2 : V2;
+fun bluebell_N : N;
+fun bluebottle_N : N;
+fun blueprint_N : N;
+fun bluestocking_N : N;
+fun bluff_A : A;
+fun bluff_N : N;
+fun bluff_V : V;
+fun bluff_V2 : V2;
+fun bluffer_N : N;
+fun bluffness_N : N;
+fun bluish_A : A;
+fun blunder_N : N;
+fun blunder_V : V;
+fun blunder_V2 : V2;
+fun blunderbuss_N : N;
+fun blunderer_N : N;
+fun blunt_A : A;
+fun blunt_V2 : V2;
+fun bluntness_N : N;
+fun blur_N : N;
+fun blur_V : V;
+fun blur_V2 : V2;
+fun blurb_N : N;
+fun blurt_V2 : V2;
+fun blush_N : N;
+fun blush_V : V;
+fun blushing_A : A;
+fun bluster_N : N;
+fun bluster_V : V;
+fun bluster_V2 : V2;
+fun blustery_A : A;
+fun blvd_N : N;
+fun blyth_PN : PN;
+fun bma_N : N;
+fun bmus_N : N;
+fun bo'ness_PN : PN;
+fun bo'sn_N : N;
+fun bo'sun_N : N;
+fun boa_N : N;
+fun boa_constrictor_N : N;
+fun boar_N : N;
+fun board_N : N;
+fun board_V : V;
+fun board_V2 : V2;
+fun boarder_N : N;
+fun boarding_N : N;
+fun boarding_card_N : N;
+fun boarding_house_N : N;
+fun boarding_school_N : N;
+fun boardroom_N : N;
+fun boardwalk_N : N;
+fun boast_N : N;
+fun boast_V : V;
+fun boast_V2 : V2;
+fun boast_VS : VS;
+fun boaster_N : N;
+fun boastful_A : A;
+fun boat_N : N;
+fun boat_V : V;
+fun boat_hook_N : N;
+fun boat_house_N : N;
+fun boat_race_N : N;
+fun boat_train_N : N;
+fun boater_N : N;
+fun boatman_N : N;
+fun boatswain_N : N;
+fun bob_N : N;
+fun bob_PN : PN;
+fun bob_V : V;
+fun bob_V2 : V2;
+fun bobbin_N : N;
+fun bobby_N : N;
+fun bobby_PN : PN;
+fun bobby_soxer_N : N;
+fun bobolink_N : N;
+fun bobsled_N : N;
+fun bobsleigh_N : N;
+fun bobtail_N : N;
+fun boche_A : A;
+fun bochum_PN : PN;
+fun bode_V : V;
+fun bode_V2 : V2;
+fun bodice_N : N;
+fun bodied_A : A;
+fun bodily_A : A;
+fun bodily_Adv : Adv;
+fun boding_N : N;
+fun bodkin_N : N;
+fun bodmin_PN : PN;
+fun body_N : N;
+fun body_servant_N : N;
+fun body_snatcher_N : N;
+fun bodyguard_N : N;
+fun bodywork_N : N;
+fun boer_A : A;
+fun boer_N : N;
+fun boffin_N : N;
+fun bog_N : N;
+fun bog_V : V;
+fun bog_V2 : V2;
+fun bogey_N : N;
+fun bogeyman_N : N;
+fun boggle_V : V;
+fun boggy_A : A;
+fun bogie_N : N;
+fun bognor_PN : PN;
+fun bognor_regis_PN : PN;
+fun bogota_PN : PN;
+fun bogus_A : A;
+fun bogy_N : N;
+fun bohemian_A : A;
+fun bohemian_N : N;
+fun boil_N : N;
+fun boil_V : V;
+fun boil_V2 : V2;
+fun boiler_N : N;
+fun boilersuit_N : N;
+fun boiling_point_N : N;
+fun boisterous_A : A;
+fun boisterousness_N : N;
+fun bold_A : A;
+fun boldness_N : N;
+fun boldon_PN : PN;
+fun bole_N : N;
+fun bolero_N : N;
+fun bolivia_PN : PN;
+fun bolivian_A : A;
+fun bolivian_N : N;
+fun boll_N : N;
+fun bollard_N : N;
+fun bollington_PN : PN;
+fun bollock_N : N;
+fun bologna_PN : PN;
+fun boloney_N : N;
+fun bolshevik_N : N;
+fun bolshy_A : A;
+fun bolsover_PN : PN;
+fun bolster_N : N;
+fun bolster_V : V;
+fun bolster_V2 : V2;
+fun bolt_Adv : Adv;
+fun bolt_N : N;
+fun bolt_V : V;
+fun bolt_V2 : V2;
+fun bolt_hole_N : N;
+fun bolton_PN : PN;
+fun bolton_le_sands_PN : PN;
+fun bolzano_PN : PN;
+fun bomb_N : N;
+fun bomb_V : V;
+fun bomb_V2 : V2;
+fun bomb_proof_A : A;
+fun bomb_sight_N : N;
+fun bomb_site_N : N;
+fun bombard_V2 : V2;
+fun bombardier_N : N;
+fun bombardment_N : N;
+fun bombast_N : N;
+fun bombastic_A : A;
+fun bombastically_Adv : Adv;
+fun bombay_PN : PN;
+fun bomber_N : N;
+fun bombshell_N : N;
+fun bon_mot_N : N;
+fun bona_fide_A : A;
+fun bona_fide_Adv : Adv;
+fun bonanza_N : N;
+fun bonbon_N : N;
+fun bond_N : N;
+fun bond_V2 : V2;
+fun bond_holder_N : N;
+fun bondage_N : N;
+fun bone_N : N;
+fun bone_V2 : V2;
+fun bone_dry_A : A;
+fun bone_head_N : N;
+fun bone_idle_A : A;
+fun bone_lazy_A : A;
+fun bone_setter_N : N;
+fun boneless_A : A;
+fun bonemeal_N : N;
+fun boner_N : N;
+fun boneshaker_N : N;
+fun bonfire_N : N;
+fun bongo_N : N;
+fun bonhomie_N : N;
+fun bonito_N : N;
+fun bonkers_A : A;
+fun bonn_PN : PN;
+fun bonnet_N : N;
+fun bonnily_Adv : Adv;
+fun bonny_A : A;
+fun bonnybridge_PN : PN;
+fun bonnyrigg_PN : PN;
+fun bonus_N : N;
+fun bony_A : A;
+fun boo_N : N;
+fun boo_V : V;
+fun boo_V2 : V2;
+fun boob_N : N;
+fun boob_V : V;
+fun booby_N : N;
+fun booby_trap_N : N;
+fun boogie_N : N;
+fun boogie_woogie_N : N;
+fun book_N : N;
+fun book_V2 : V2;
+fun book_end_N : N;
+fun book_keeper_N : N;
+fun bookable_A : A;
+fun bookcase_N : N;
+fun bookclub_N : N;
+fun bookie_N : N;
+fun booking_N : N;
+fun bookish_A : A;
+fun bookishness_N : N;
+fun bookkeeper_N : N;
+fun bookkeeping_N : N;
+fun booklet_N : N;
+fun bookmaker_N : N;
+fun bookmark_N : N;
+fun bookmarker_N : N;
+fun bookmobile_N : N;
+fun bookseller_N : N;
+fun bookshop_N : N;
+fun bookstall_N : N;
+fun bookworm_N : N;
+fun boom_N : N;
+fun boom_V : V;
+fun boom_V2 : V2;
+fun boomerang_N : N;
+fun boon_A : A;
+fun boon_N : N;
+fun boor_N : N;
+fun boorish_A : A;
+fun boorishness_N : N;
+fun boost_N : N;
+fun boost_V2 : V2;
+fun booster_N : N;
+fun boot_N : N;
+fun boot_V2 : V2;
+fun booted_A : A;
+fun bootee_N : N;
+fun booth_N : N;
+fun bootlace_N : N;
+fun bootle_PN : PN;
+fun bootleg_V2 : V2;
+fun bootlegger_N : N;
+fun bootless_A : A;
+fun booty_N : N;
+fun booze_N : N;
+fun booze_V : V;
+fun booze_up_N : N;
+fun boozer_N : N;
+fun boozy_A : A;
+fun bopeep_N : N;
+fun boracic_A : A;
+fun borage_N : N;
+fun borax_N : N;
+fun bordeaux_N : N;
+fun bordeaux_PN : PN;
+fun border_N : N;
+fun border_V : V;
+fun border_V2 : V2;
+fun borderer_N : N;
+fun borderland_N : N;
+fun borderline_N : N;
+fun borders_PN : PN;
+fun bordon_PN : PN;
+fun bore_N : N;
+fun bore_V : V;
+fun bore_V2 : V2;
+fun bore_hole_N : N;
+fun boredom_N : N;
+fun borer_N : N;
+fun boric_A : A;
+fun boring_A : A;
+fun boris_PN : PN;
+fun boron_N : N;
+fun borough_N : N;
+fun borrow_V : V;
+fun borrow_V2 : V2;
+fun borrow_VV : VV;
+fun borrower_N : N;
+fun borsch_N : N;
+fun borstal_N : N;
+fun bortsch_N : N;
+fun borzoi_N : N;
+fun bosh_N : N;
+fun bosky_A : A;
+fun bosom_N : N;
+fun boss_N : N;
+fun boss_V2 : V2;
+fun boss_eyed_A : A;
+fun bossy_A : A;
+fun boston_PN : PN;
+fun botanical_A : A;
+fun botanist_N : N;
+fun botanize_V : V;
+fun botany_N : N;
+fun botch_N : N;
+fun botch_V2 : V2;
+fun botcher_N : N;
+fun both7and_DConj : Conj;
+fun both_Adv : Adv;
+fun both_Det : Det;
+fun bother_N : N;
+fun bother_V : V;
+fun bother_V2 : V2;
+fun bother_V2V : V2V;
+fun bothersome_A : A;
+fun botswana_PN : PN;
+fun bottle_N : N;
+fun bottle_V2 : V2;
+fun bottle_fed_A : A;
+fun bottle_green_A : A;
+fun bottleneck_N : N;
+fun bottom_N : N;
+fun bottom_V : V;
+fun bottomless_A : A;
+fun bottrop_PN : PN;
+fun botulism_N : N;
+fun boudoir_N : N;
+fun bougainvillea_N : N;
+fun bough_N : N;
+fun bouillon_N : N;
+fun boulder_N : N;
+fun boulevard_N : N;
+fun bounce_N : N;
+fun bounce_V : V;
+fun bounce_V2 : V2;
+fun bouncing_A : A;
+fun bouncy_A : A;
+fun bound_A : A;
+fun bound_N : N;
+fun bound_V : V;
+fun bound_V2 : V2;
+fun bound_V2V : V2V;
+fun boundary_N : N;
+fun bounden_A : A;
+fun bounder_N : N;
+fun boundless_A : A;
+fun bounteous_A : A;
+fun bountiful_A : A;
+fun bounty_N : N;
+fun bouquet_N : N;
+fun bourbon_N : N;
+fun bourgeois_A : A;
+fun bourgeois_N : N;
+fun bourgeoisie_N : N;
+fun bourn_N : N;
+fun bourne_N : N;
+fun bourne_PN : PN;
+fun bournemouth_PN : PN;
+fun bourse_N : N;
+fun bout_N : N;
+fun boutique_N : N;
+fun bovine_A : A;
+fun bovril_N : N;
+fun bow_N : N;
+fun bow_V : V;
+fun bow_V2 : V2;
+fun bow_wow_N : N;
+fun bowburn_PN : PN;
+fun bowdlerize_V2 : V2;
+fun bowel_N : N;
+fun bower_N : N;
+fun bowie_knife_N : N;
+fun bowing_N : N;
+fun bowl_N : N;
+fun bowl_V : V;
+fun bowl_V2 : V2;
+fun bowler_N : N;
+fun bowline_N : N;
+fun bowling_green_N : N;
+fun bowls_N : N;
+fun bowman_N : N;
+fun bowsprit_N : N;
+fun box_N : N;
+fun box_V : V;
+fun box_V2 : V2;
+fun box_kite_N : N;
+fun box_number_N : N;
+fun box_office_N : N;
+fun boxer_N : N;
+fun boxful_N : N;
+fun boxing_N : N;
+fun boxing_day_N : N;
+fun boxing_day_PN : PN;
+fun boxing_glove_N : N;
+fun boxing_match_N : N;
+fun boxwood_N : N;
+fun boy_N : N;
+fun boycott_N : N;
+fun boycott_V2 : V2;
+fun boyfriend_N : N;
+fun boyhood_N : N;
+fun boyish_A : A;
+fun bra_N : N;
+fun brace_N : N;
+fun brace_V : V;
+fun brace_V2 : V2;
+fun bracelet_N : N;
+fun bracken_N : N;
+fun bracket_N : N;
+fun bracket_V2 : V2;
+fun brackish_A : A;
+fun bracknell_PN : PN;
+fun bract_N : N;
+fun brad_N : N;
+fun bradawl_N : N;
+fun bradford_PN : PN;
+fun bradford_on_avon_PN : PN;
+fun brae_N : N;
+fun brag_V : V;
+fun braggart_N : N;
+fun bragging_N : N;
+fun brahmin_N : N;
+fun braid_N : N;
+fun braid_V2 : V2;
+fun braille_N : N;
+fun brain_N : N;
+fun brain_V2 : V2;
+fun brain_fag_N : N;
+fun brain_teaser_N : N;
+fun brainchild_N : N;
+fun brainless_A : A;
+fun brainstorm_N : N;
+fun braintree_PN : PN;
+fun brainwash_V2 : V2;
+fun brainwashed_A : A;
+fun brainwashing_N : N;
+fun brainwave_N : N;
+fun brainy_A : A;
+fun braise_V2 : V2;
+fun brake_N : N;
+fun brake_V : V;
+fun brake_V2 : V2;
+fun brakeman_N : N;
+fun bramble_N : N;
+fun bran_N : N;
+fun bran_new_A : A;
+fun branch_N : N;
+fun branch_V : V;
+fun branchy_A : A;
+fun brand_N : N;
+fun brand_V2 : V2;
+fun brand_new_A : A;
+fun branderburgh_PN : PN;
+fun branding_iron_N : N;
+fun brandish_V2 : V2;
+fun brandy_N : N;
+fun brandy_ball_N : N;
+fun brandy_snap_N : N;
+fun brash_A : A;
+fun brasilia_PN : PN;
+fun brass_N : N;
+fun brassard_N : N;
+fun brasserie_N : N;
+fun brassiere_1_N : N;
+fun brassiere_2_N : N;
+fun brassy_A : A;
+fun brat_N : N;
+fun bratislava_PN : PN;
+fun braunschweig_PN : PN;
+fun braunton_PN : PN;
+fun bravado_N : N;
+fun brave_A : A;
+fun brave_N : N;
+fun brave_V2 : V2;
+fun bravery_N : N;
+fun bravo_N : N;
+fun brawl_N : N;
+fun brawl_V : V;
+fun brawler_N : N;
+fun brawn_N : N;
+fun brawny_A : A;
+fun bray_N : N;
+fun bray_V2 : V2;
+fun braze_V2 : V2;
+fun brazen_A : A;
+fun brazen_V2 : V2;
+fun brazen_faced_A : A;
+fun brazier_N : N;
+fun brazil_PN : PN;
+fun brazilian_A : A;
+fun brazilian_N : N;
+fun breach_N : N;
+fun breach_V2 : V2;
+fun bread_N : N;
+fun breadcrumb_N : N;
+fun breadfruit_N : N;
+fun breadline_N : N;
+fun breadth_N : N;
+fun breadthways_Adv : Adv;
+fun breadthwise_Adv : Adv;
+fun breadwinner_N : N;
+fun break_N : N;
+fun break_V : V;
+fun break_V2 : V2;
+fun break_in_N : N;
+fun break_up_N : N;
+fun breakable_A : A;
+fun breakage_N : N;
+fun breakaway_N : N;
+fun breakaways_N : N;
+fun breakdown_N : N;
+fun breaker_N : N;
+fun breakfast_N : N;
+fun breakfast_V : V;
+fun breakneck_A : A;
+fun breakthrough_N : N;
+fun breakwater_N : N;
+fun bream_N : N;
+fun breast_N : N;
+fun breast_V2 : V2;
+fun breast_deep_Adv : Adv;
+fun breast_fed_A : A;
+fun breast_high_Adv : Adv;
+fun breast_plate_N : N;
+fun breastfeed_V : V;
+fun breastfeed_V2 : V2;
+fun breaston_PN : PN;
+fun breaststroke_N : N;
+fun breastwork_N : N;
+fun breath_N : N;
+fun breathalyser_N : N;
+fun breathe_V : V;
+fun breathe_V2 : V2;
+fun breather_N : N;
+fun breathing_N : N;
+fun breathing_space_N : N;
+fun breathless_A : A;
+fun breathtaking_A : A;
+fun brecknock_PN : PN;
+fun breda_PN : PN;
+fun breech_N : N;
+fun breech_block_N : N;
+fun breeches_buoy_N : N;
+fun breed_N : N;
+fun breed_V : V;
+fun breed_V2 : V2;
+fun breeder_N : N;
+fun breeding_N : N;
+fun breedsall_PN : PN;
+fun breeze_N : N;
+fun breeze_V : V;
+fun breezily_Adv : Adv;
+fun breeziness_N : N;
+fun breezy_A : A;
+fun bremen_PN : PN;
+fun bremerhaven_PN : PN;
+fun bren_N : N;
+fun bren_gun_N : N;
+fun brenda_PN : PN;
+fun brent_PN : PN;
+fun brentwood_PN : PN;
+fun brescia_PN : PN;
+fun brest_PN : PN;
+fun breve_N : N;
+fun brevet_N : N;
+fun breviary_N : N;
+fun brevity_N : N;
+fun brew_N : N;
+fun brew_V : V;
+fun brew_V2 : V2;
+fun brewer_N : N;
+fun brewery_N : N;
+fun brian_PN : PN;
+fun briar_N : N;
+fun bribable_A : A;
+fun bribe_N : N;
+fun bribe_V : V;
+fun bribe_V2 : V2;
+fun bribery_N : N;
+fun bric_a_brac_N : N;
+fun brick_N : N;
+fun brick_V2 : V2;
+fun brick_field_N : N;
+fun brickbat_N : N;
+fun bricket_wood_PN : PN;
+fun brickkiln_N : N;
+fun bricklayer_N : N;
+fun brickwork_N : N;
+fun bridal_A : A;
+fun bridal_N : N;
+fun bride_N : N;
+fun bridecake_N : N;
+fun bridegroom_N : N;
+fun bridesmaid_N : N;
+fun bridge_N : N;
+fun bridge_V2 : V2;
+fun bridgehead_N : N;
+fun bridgend_PN : PN;
+fun bridget_PN : PN;
+fun bridgnorth_PN : PN;
+fun bridgwater_PN : PN;
+fun bridle_N : N;
+fun bridle_V : V;
+fun bridle_V2 : V2;
+fun bridle_path_N : N;
+fun bridle_road_N : N;
+fun bridlington_PN : PN;
+fun bridport_PN : PN;
+fun brief_A : A;
+fun brief_N : N;
+fun brief_V2 : V2;
+fun briefcase_N : N;
+fun briefing_N : N;
+fun brier_N : N;
+fun brig_N : N;
+fun brig_PN : PN;
+fun brigade_N : N;
+fun brigadier_N : N;
+fun brigand_N : N;
+fun brigantine_N : N;
+fun brighouse_PN : PN;
+fun bright_A : A;
+fun bright_Adv : Adv;
+fun brighten_V : V;
+fun brighten_V2 : V2;
+fun brightlingsea_PN : PN;
+fun brightness_N : N;
+fun brighton_PN : PN;
+fun brill_N : N;
+fun brilliance_N : N;
+fun brilliancy_N : N;
+fun brilliant_A : A;
+fun brilliantine_N : N;
+fun brim_N : N;
+fun brim_V : V;
+fun brimful_A : A;
+fun brimfull_A : A;
+fun brimstone_N : N;
+fun brindled_A : A;
+fun brine_N : N;
+fun bring_V2 : V2;
+fun bring_V2V : V2V;
+fun brink_N : N;
+fun brinkmanship_N : N;
+fun briny_A : A;
+fun brioche_N : N;
+fun briquet_N : N;
+fun briquette_N : N;
+fun brisbane_PN : PN;
+fun brisk_A : A;
+fun brisket_N : N;
+fun bristle_N : N;
+fun bristle_V : V;
+fun bristly_A : A;
+fun bristol_PN : PN;
+fun brit_N : N;
+fun britain_PN : PN;
+fun britannic_A : A;
+fun british_A : A;
+fun britisher_N : N;
+fun briton_A : A;
+fun briton_N : N;
+fun brittle_A : A;
+fun brixham_PN : PN;
+fun brno_PN : PN;
+fun broach_V : V;
+fun broach_V2 : V2;
+fun broad_A : A;
+fun broad_N : N;
+fun broad_minded_A : A;
+fun broad_mindedness_N : N;
+fun broadcast_Adv : Adv;
+fun broadcast_N : N;
+fun broadcast_V : V;
+fun broadcast_V2 : V2;
+fun broadcasting_A : A;
+fun broadcasting_N : N;
+fun broadcloth_N : N;
+fun broaden_V : V;
+fun broaden_V2 : V2;
+fun broadness_N : N;
+fun broadsheet_N : N;
+fun broadside_N : N;
+fun broadways_Adv : Adv;
+fun broadwise_Adv : Adv;
+fun brocade_N : N;
+fun brocade_V2 : V2;
+fun broccoli_N : N;
+fun brochure_N : N;
+fun brogue_N : N;
+fun broil_V : V;
+fun broil_V2 : V2;
+fun broiler_N : N;
+fun broke_A : A;
+fun broke_VA : VA;
+fun broke_VS : VS;
+fun broken_hearted_A : A;
+fun broker_N : N;
+fun brokerage_N : N;
+fun brolly_N : N;
+fun bromide_N : N;
+fun bromine_N : N;
+fun bromley_PN : PN;
+fun bromsgrove_PN : PN;
+fun bronchial_A : A;
+fun bronchitic_A : A;
+fun bronchitis_N : N;
+fun bronchus_N : N;
+fun bronco_N : N;
+fun bronze_N : N;
+fun bronze_V : V;
+fun bronze_V2 : V2;
+fun brooch_N : N;
+fun brood_N : N;
+fun brood_V : V;
+fun brood_hen_N : N;
+fun brood_mare_N : N;
+fun broody_A : A;
+fun brook_N : N;
+fun brook_V2 : V2;
+fun broom_N : N;
+fun broomstick_N : N;
+fun bros_PN : PN;
+fun broth_N : N;
+fun brothel_N : N;
+fun brother_N : N;
+fun brother_in_law_N : N;
+fun brotherhood_N : N;
+fun brotherly_A : A;
+fun brougham_N : N;
+fun brought_V : V;
+fun brought_VS : VS;
+fun broughton_PN : PN;
+fun brouhaha_N : N;
+fun brow_N : N;
+fun browbeat_V2 : V2;
+fun brown_A : A;
+fun brown_V : V;
+fun brown_V2 : V2;
+fun brownie_N : N;
+fun brownish_A : A;
+fun brownstone_N : N;
+fun browse_N : N;
+fun browse_V : V;
+fun broxburn_PN : PN;
+fun bruce_PN : PN;
+fun bruges_PN : PN;
+fun bruin_N : N;
+fun bruise_N : N;
+fun bruise_V : V;
+fun bruise_V2 : V2;
+fun bruiser_N : N;
+fun bruit_V2 : V2;
+fun brunch_N : N;
+fun brunei_PN : PN;
+fun bruneian_A : A;
+fun bruneian_N : N;
+fun brunette_N : N;
+fun brunswick_PN : PN;
+fun brunt_N : N;
+fun brush_N : N;
+fun brush_V : V;
+fun brush_V2 : V2;
+fun brush_off_N : N;
+fun brush_up_N : N;
+fun brushwood_N : N;
+fun brushwork_N : N;
+fun brusque_A : A;
+fun brusqueness_N : N;
+fun brussels_PN : PN;
+fun brutal_A : A;
+fun brutality_N : N;
+fun brutalize_V2 : V2;
+fun brute_N : N;
+fun brutish_A : A;
+fun bryan_PN : PN;
+fun bsc_N : N;
+fun bst_PN : PN;
+fun bt_PN : PN;
+fun bubble_N : N;
+fun bubble_V : V;
+fun bubbly_A : A;
+fun bubbly_N : N;
+fun bubonic_A : A;
+fun bucarest_PN : PN;
+fun buccaneer_N : N;
+fun buck_N : N;
+fun buck_V : V;
+fun buck_V2 : V2;
+fun bucket_N : N;
+fun bucket_V : V;
+fun bucketful_N : N;
+fun buckhaven_PN : PN;
+fun buckie_PN : PN;
+fun buckingham_PN : PN;
+fun buckinghamshire_PN : PN;
+fun buckle_N : N;
+fun buckle_V : V;
+fun buckle_V2 : V2;
+fun buckler_N : N;
+fun buckley_PN : PN;
+fun buckram_N : N;
+fun bucksburn_PN : PN;
+fun buckshot_N : N;
+fun buckskin_N : N;
+fun bucktooth_N : N;
+fun buckwheat_N : N;
+fun bucolic_A : A;
+fun bucolics_N : N;
+fun bud_N : N;
+fun bud_V : V;
+fun budapest_PN : PN;
+fun buddhism_N : N;
+fun buddhist_N : N;
+fun budding_A : A;
+fun buddy_N : N;
+fun budge_V : V;
+fun budge_V2 : V2;
+fun budgerigar_N : N;
+fun budget_N : N;
+fun budget_V : V;
+fun budget_V2 : V2;
+fun budgetary_A : A;
+fun budgie_N : N;
+fun buenos_aires_PN : PN;
+fun buff_N : N;
+fun buff_V2 : V2;
+fun buffalo_N : N;
+fun buffalo_PN : PN;
+fun buffer_N : N;
+fun buffer_V2 : V2;
+fun buffet_N : N;
+fun buffet_V : V;
+fun buffet_V2 : V2;
+fun buffoon_N : N;
+fun buffoonery_N : N;
+fun bug_N : N;
+fun bug_V2 : V2;
+fun bug_hunter_N : N;
+fun bugaboo_N : N;
+fun bugbear_N : N;
+fun bugger_N : N;
+fun bugger_V : V;
+fun bugger_V2 : V2;
+fun bugger_all_N : N;
+fun buggery_N : N;
+fun buggy_N : N;
+fun bugle_N : N;
+fun bugler_N : N;
+fun buhl_N : N;
+fun build_N : N;
+fun build_V : V;
+fun build_V2 : V2;
+fun build_up_N : N;
+fun builder_N : N;
+fun building_N : N;
+fun building_society_N : N;
+fun built_in_A : A;
+fun built_up_A : A;
+fun bulb_N : N;
+fun bulbous_A : A;
+fun bulbul_N : N;
+fun bulgaria_PN : PN;
+fun bulgarian_A : A;
+fun bulgarian_N : N;
+fun bulge_N : N;
+fun bulge_V : V;
+fun bulge_V2 : V2;
+fun bulk_N : N;
+fun bulk_V : V;
+fun bulkhead_N : N;
+fun bulkington_PN : PN;
+fun bulky_A : A;
+fun bull's_eye_N : N;
+fun bull_N : N;
+fun bull_headed_A : A;
+fun bull_neck_N : N;
+fun bull_terrier_N : N;
+fun bulldog_N : N;
+fun bulldoze_V2 : V2;
+fun bulldozer_N : N;
+fun bullet_N : N;
+fun bullet_headed_A : A;
+fun bulletin_N : N;
+fun bulletproof_A : A;
+fun bullfight_N : N;
+fun bullfighter_N : N;
+fun bullfinch_N : N;
+fun bullfrog_N : N;
+fun bullion_N : N;
+fun bullock_N : N;
+fun bullring_N : N;
+fun bullshit_N : N;
+fun bullshit_V : V;
+fun bully_A : A;
+fun bully_N : N;
+fun bully_V : V;
+fun bully_V2 : V2;
+fun bulrush_N : N;
+fun bulwark_N : N;
+fun bum_A : A;
+fun bum_N : N;
+fun bum_V : V;
+fun bum_V2 : V2;
+fun bumblebee_N : N;
+fun bumboat_N : N;
+fun bump_Adv : Adv;
+fun bump_N : N;
+fun bump_V : V;
+fun bump_V2 : V2;
+fun bumper_N : N;
+fun bumpkin_N : N;
+fun bumptious_A : A;
+fun bumptiousness_N : N;
+fun bumpy_A : A;
+fun bun_N : N;
+fun buna_N : N;
+fun bunch_N : N;
+fun bunch_V : V;
+fun bunch_V2 : V2;
+fun bundle_N : N;
+fun bundle_V : V;
+fun bundle_V2 : V2;
+fun bung_N : N;
+fun bung_V2 : V2;
+fun bung_hole_N : N;
+fun bungaloid_A : A;
+fun bungalow_N : N;
+fun bungle_N : N;
+fun bungle_V : V;
+fun bungle_V2 : V2;
+fun bungler_N : N;
+fun bunion_N : N;
+fun bunk_N : N;
+fun bunk_V : V;
+fun bunker_N : N;
+fun bunker_V : V;
+fun bunker_V2 : V2;
+fun bunkum_N : N;
+fun bunny_N : N;
+fun bunsen_N : N;
+fun bunting_N : N;
+fun buoy_N : N;
+fun buoy_V : V;
+fun buoy_V2 : V2;
+fun buoyancy_N : N;
+fun buoyant_A : A;
+fun bur_N : N;
+fun burberry_N : N;
+fun burble_V : V;
+fun burble_VS : VS;
+fun burden_N : N;
+fun burden_V2 : V2;
+fun burdensome_A : A;
+fun burdock_N : N;
+fun bureau_N : N;
+fun bureaucracy_N : N;
+fun bureaucrat_N : N;
+fun bureaucratic_A : A;
+fun bureaucratically_Adv : Adv;
+fun burette_N : N;
+fun burg_N : N;
+fun burgeon_V : V;
+fun burgess_N : N;
+fun burgess_PN : PN;
+fun burgh_N : N;
+fun burgher_N : N;
+fun burglar_N : N;
+fun burglar_alarm_N : N;
+fun burglar_proof_A : A;
+fun burglarious_A : A;
+fun burglary_N : N;
+fun burgle_V : V;
+fun burgle_V2 : V2;
+fun burgomaster_N : N;
+fun burgos_PN : PN;
+fun burgundy_N : N;
+fun burial_N : N;
+fun burial_ground_N : N;
+fun burke_V2 : V2;
+fun burlap_N : N;
+fun burlesque_N : N;
+fun burlesque_V2 : V2;
+fun burley_PN : PN;
+fun burly_A : A;
+fun burma_PN : PN;
+fun burmese_A : A;
+fun burmese_N : N;
+fun burn_N : N;
+fun burn_V : V;
+fun burn_V2 : V2;
+fun burn_up_N : N;
+fun burner_N : N;
+fun burnham_on_sea_PN : PN;
+fun burning_A : A;
+fun burnish_V : V;
+fun burnish_V2 : V2;
+fun burnley_PN : PN;
+fun burnouse_N : N;
+fun burntisland_PN : PN;
+fun burntwood_PN : PN;
+fun burp_N : N;
+fun burp_V : V;
+fun burp_V2 : V2;
+fun burr_N : N;
+fun burr_drill_N : N;
+fun burrow_N : N;
+fun burrow_V : V;
+fun burrow_V2 : V2;
+fun burry_port_PN : PN;
+fun bursar_N : N;
+fun bursary_N : N;
+fun burscough_PN : PN;
+fun burst_N : N;
+fun burst_V : V;
+fun burst_V2 : V2;
+fun burthen_N : N;
+fun burthen_V2 : V2;
+fun burton_N : N;
+fun burton_upon_trent_PN : PN;
+fun burundi_PN : PN;
+fun burundian_A : A;
+fun burundian_N : N;
+fun bury_PN : PN;
+fun bury_V : V;
+fun bury_V2 : V2;
+fun bury_st__edmunds_PN : PN;
+fun burying_ground_N : N;
+fun bus_N : N;
+fun bus_V : V;
+fun bus_V2 : V2;
+fun busby_N : N;
+fun bush_N : N;
+fun bushel_N : N;
+fun bushman_N : N;
+fun bushy_A : A;
+fun busily_Adv : Adv;
+fun business_N : N;
+fun businesslike_A : A;
+fun businessman_N : N;
+fun busker_N : N;
+fun busman_N : N;
+fun bust_N : N;
+fun bust_V : V;
+fun bust_V2 : V2;
+fun bust_up_N : N;
+fun bustard_N : N;
+fun buster_N : N;
+fun bustle_N : N;
+fun bustle_V : V;
+fun bustle_V2 : V2;
+fun busy_A : A;
+fun busy_V2 : V2;
+fun busybody_N : N;
+fun but_Adv : Adv;
+fun but_Prep : Prep ;
+fun butane_N : N;
+fun butch_A : A;
+fun butcher_N : N;
+fun butcher_V2 : V2;
+fun butchery_N : N;
+fun butler_N : N;
+fun butt_N : N;
+fun butt_V : V;
+fun butt_V2 : V2;
+fun butter_N : N;
+fun butter_V2 : V2;
+fun butterbean_N : N;
+fun buttercup_N : N;
+fun butterfingers_N : N;
+fun butterfly_N : N;
+fun buttermilk_N : N;
+fun butterscotch_N : N;
+fun buttery_N : N;
+fun buttock_N : N;
+fun button_N : N;
+fun button_V : V;
+fun button_V2 : V2;
+fun buttoned_up_A : A;
+fun buttonhole_N : N;
+fun buttonhole_V2 : V2;
+fun buttonhook_N : N;
+fun buttonwood_N : N;
+fun buttress_N : N;
+fun buttress_V2 : V2;
+fun buxom_A : A;
+fun buxton_PN : PN;
+fun buy_N : N;
+fun buy_V : V;
+fun buy_V2 : V2;
+fun buyer_N : N;
+fun buzz_N : N;
+fun buzz_V : V;
+fun buzz_V2 : V2;
+fun buzzard_N : N;
+fun buzzer_N : N;
+fun bvm_N : N;
+fun by_Adv : Adv;
+fun by_Prep : Prep ;
+fun by_election_N : N;
+fun bye_N : N;
+fun bye_bye_N : N;
+fun bye_law_N : N;
+fun bygone_A : A;
+fun bylaw_N : N;
+fun bypass_N : N;
+fun bypass_V2 : V2;
+fun bypath_N : N;
+fun byplay_N : N;
+fun byproduct_N : N;
+fun byroad_N : N;
+fun bystander_N : N;
+fun byway_N : N;
+fun byword_N : N;
+fun c_in_c_PN : PN;
+fun c_of_e_N : N;
+fun ca'canny_N : N;
+fun cab_N : N;
+fun cab_rank_N : N;
+fun cabal_N : N;
+fun cabaret_N : N;
+fun cabbage_N : N;
+fun cabby_N : N;
+fun caber_N : N;
+fun cabin_N : N;
+fun cabinet_N : N;
+fun cabinet_maker_N : N;
+fun cable's_length_N : N;
+fun cable_N : N;
+fun cable_V : V;
+fun cable_V2 : V2;
+fun cable_car_N : N;
+fun cable_length_N : N;
+fun cable_railway_N : N;
+fun cablegram_N : N;
+fun cabman_N : N;
+fun caboodle_N : N;
+fun caboose_N : N;
+fun cabstand_N : N;
+fun cacao_N : N;
+fun cacao_bean_N : N;
+fun cacao_tree_N : N;
+fun cache_N : N;
+fun cache_V2 : V2;
+fun cachet_N : N;
+fun cachou_N : N;
+fun cackle_N : N;
+fun cackle_V : V;
+fun cackler_N : N;
+fun cacophonous_A : A;
+fun cacophony_N : N;
+fun cactus_N : N;
+fun cad_N : N;
+fun cadaver_N : N;
+fun cadaverous_A : A;
+fun caddie_N : N;
+fun caddish_A : A;
+fun caddy_N : N;
+fun cadence_N : N;
+fun cadenza_N : N;
+fun cadet_N : N;
+fun cadge_V : V;
+fun cadge_V2 : V2;
+fun cadger_N : N;
+fun cadiz_PN : PN;
+fun cadmium_N : N;
+fun cadre_N : N;
+fun caen_PN : PN;
+fun caerleon_PN : PN;
+fun caernarfon_PN : PN;
+fun caerphilly_PN : PN;
+fun caesar_N : N;
+fun caesarian_A : A;
+fun caesura_N : N;
+fun cafe_N : N;
+fun cafe_au_lait_N : N;
+fun cafeteria_N : N;
+fun caff_N : N;
+fun caffeine_N : N;
+fun caftan_N : N;
+fun cage_N : N;
+fun cage_V2 : V2;
+fun cagey_A : A;
+fun cagily_Adv : Adv;
+fun cagliari_PN : PN;
+fun cagoule_N : N;
+fun caiman_N : N;
+fun cairn_N : N;
+fun cairo_PN : PN;
+fun caisson_N : N;
+fun caitiff_N : N;
+fun cajole_V2 : V2;
+fun cajolery_N : N;
+fun cake_N : N;
+fun cake_V : V;
+fun cake_V2 : V2;
+fun calabash_N : N;
+fun calamitous_A : A;
+fun calamity_N : N;
+fun calcify_V : V;
+fun calcify_V2 : V2;
+fun calcination_N : N;
+fun calcine_V : V;
+fun calcine_V2 : V2;
+fun calcium_N : N;
+fun calculable_A : A;
+fun calculate_V : V;
+fun calculate_V2 : V2;
+fun calculate_VS : VS;
+fun calculating_A : A;
+fun calculation_N : N;
+fun calculator_N : N;
+fun calculus_N : N;
+fun calcutta_PN : PN;
+fun caldicot_PN : PN;
+fun caldron_N : N;
+fun calendar_N : N;
+fun calender_N : N;
+fun calender_V2 : V2;
+fun calf_N : N;
+fun calf_love_N : N;
+fun cali_PN : PN;
+fun calibrate_V2 : V2;
+fun calibration_N : N;
+fun calibre_N : N;
+fun calico_N : N;
+fun calif_N : N;
+fun california_PN : PN;
+fun californian_A : A;
+fun californian_N : N;
+fun caliph_N : N;
+fun caliphate_N : N;
+fun calisthenics_N : N;
+fun calk_N : N;
+fun calk_V2 : V2;
+fun call_N : N;
+fun call_V : V;
+fun call_V2 : V2;
+fun call_V2V : V2V;
+fun call_VS : VS;
+fun call_box_N : N;
+fun call_girl_N : N;
+fun call_over_N : N;
+fun call_up_N : N;
+fun caller_N : N;
+fun calligraphy_N : N;
+fun calling_N : N;
+fun calliope_N : N;
+fun callisthenics_N : N;
+fun callosity_N : N;
+fun callous_A : A;
+fun callousness_N : N;
+fun callow_A : A;
+fun callowness_N : N;
+fun callus_N : N;
+fun calm_A : A;
+fun calm_N : N;
+fun calm_V : V;
+fun calm_V2 : V2;
+fun calmness_N : N;
+fun calne_PN : PN;
+fun calomel_N : N;
+fun calor_PN : PN;
+fun calorie_N : N;
+fun calorific_A : A;
+fun calumniate_V2 : V2;
+fun calumny_N : N;
+fun calvary_N : N;
+fun calve_V : V;
+fun calverton_PN : PN;
+fun calvinism_N : N;
+fun calvinist_N : N;
+fun calypso_N : N;
+fun calyx_N : N;
+fun cam_N : N;
+fun camaraderie_N : N;
+fun camber_N : N;
+fun camber_V : V;
+fun camber_V2 : V2;
+fun cambodia_PN : PN;
+fun cambodian_A : A;
+fun cambodian_N : N;
+fun cambourne_PN : PN;
+fun cambric_N : N;
+fun cambridge_PN : PN;
+fun cambridgeshire_PN : PN;
+fun cambuslang_PN : PN;
+fun camden_PN : PN;
+fun camel_N : N;
+fun camel_hair_N : N;
+fun camellia_N : N;
+fun camembert_N : N;
+fun cameo_N : N;
+fun camera_N : N;
+fun cameraman_N : N;
+fun cameroon_PN : PN;
+fun cameroonian_A : A;
+fun cameroonian_N : N;
+fun camion_N : N;
+fun camomile_N : N;
+fun camouflage_N : N;
+fun camouflage_V2 : V2;
+fun camp_A : A;
+fun camp_N : N;
+fun camp_V : V;
+fun camp_V2 : V2;
+fun camp_bed_N : N;
+fun camp_chair_N : N;
+fun camp_fire_N : N;
+fun camp_follower_N : N;
+fun camp_stool_N : N;
+fun campaign_N : N;
+fun campaign_V : V;
+fun campaigner_N : N;
+fun campanile_N : N;
+fun campanula_N : N;
+fun campbeltown_PN : PN;
+fun camper_N : N;
+fun camphor_N : N;
+fun camphorated_A : A;
+fun camping_N : N;
+fun campion_N : N;
+fun campus_N : N;
+fun camshaft_N : N;
+fun can_N : N;
+fun can_V2 : V2;
+fun can_VV : VV;
+fun canada_PN : PN;
+fun canadian_A : A;
+fun canadian_N : N;
+fun canal_N : N;
+fun canalization_N : N;
+fun canalize_V2 : V2;
+fun canape_N : N;
+fun canard_N : N;
+fun canary_N : N;
+fun canary_bird_N : N;
+fun canary_wine_N : N;
+fun canasta_N : N;
+fun canberra_PN : PN;
+fun cancan_N : N;
+fun cancel_V : V;
+fun cancel_V2 : V2;
+fun cancellation_N : N;
+fun cancer_N : N;
+fun cancer_PN : PN;
+fun cancerous_A : A;
+fun candelabrum_N : N;
+fun candid_A : A;
+fun candidate_N : N;
+fun candidature_N : N;
+fun candied_A : A;
+fun candle_N : N;
+fun candle_power_N : N;
+fun candlelight_N : N;
+fun candlestick_N : N;
+fun candlewick_N : N;
+fun candour_N : N;
+fun candy_N : N;
+fun candy_V : V;
+fun candy_V2 : V2;
+fun candy_floss_N : N;
+fun candytuft_N : N;
+fun cane_N : N;
+fun cane_V2 : V2;
+fun canine_A : A;
+fun canister_N : N;
+fun canker_N : N;
+fun canker_V2 : V2;
+fun cankerous_A : A;
+fun canna_N : N;
+fun cannabis_N : N;
+fun canned_A : A;
+fun cannery_N : N;
+fun cannes_PN : PN;
+fun cannibal_N : N;
+fun cannibalism_N : N;
+fun cannibalistic_A : A;
+fun cannibalize_V2 : V2;
+fun cannily_Adv : Adv;
+fun cannock_PN : PN;
+fun cannon_N : N;
+fun cannon_fodder_N : N;
+fun cannonade_N : N;
+fun canny_A : A;
+fun canoe_N : N;
+fun canoe_V2 : V2;
+fun canoeist_N : N;
+fun canon_1_N : N;
+fun canon_2_N : N;
+fun canonical_A : A;
+fun canonization_N : N;
+fun canonize_V2 : V2;
+fun canopied_A : A;
+fun canopy_N : N;
+fun cant_N : N;
+fun cant_V : V;
+fun cant_V2 : V2;
+fun cantab_PN : PN;
+fun cantaloup_N : N;
+fun cantaloupe_N : N;
+fun cantankerous_A : A;
+fun cantata_N : N;
+fun canteen_N : N;
+fun canter_N : N;
+fun canter_V : V;
+fun canter_V2 : V2;
+fun canterbury_PN : PN;
+fun canticle_N : N;
+fun cantilever_N : N;
+fun canto_N : N;
+fun canton_N : N;
+fun canton_PN : PN;
+fun cantonment_N : N;
+fun cantor_N : N;
+fun canuck_N : N;
+fun canvas_N : N;
+fun canvass_N : N;
+fun canvass_V : V;
+fun canvass_V2 : V2;
+fun canvey_PN : PN;
+fun canvey_island_PN : PN;
+fun canyon_N : N;
+fun cap_N : N;
+fun cap_V2 : V2;
+fun cap_a_pie_Adv : Adv;
+fun capability_N : N;
+fun capable_A : A;
+fun capacious_A : A;
+fun capacity_N : N;
+fun caparison_N : N;
+fun caparison_V2 : V2;
+fun cape_N : N;
+fun cape_town_PN : PN;
+fun caper_N : N;
+fun caper_V : V;
+fun capillary_N : N;
+fun capital_A : A;
+fun capital_N : N;
+fun capitalism_A : A;
+fun capitalism_N : N;
+fun capitalist_N : N;
+fun capitalistic_A : A;
+fun capitalization_N : N;
+fun capitalize_V : V;
+fun capitalize_V2 : V2;
+fun capitation_N : N;
+fun capitol_N : N;
+fun capitulate_V : V;
+fun capitulate_V2 : V2;
+fun capitulation_N : N;
+fun capon_N : N;
+fun caprice_N : N;
+fun capricious_A : A;
+fun capriciousness_N : N;
+fun capricorn_PN : PN;
+fun capsicum_N : N;
+fun capsize_V : V;
+fun capsize_V2 : V2;
+fun capstan_N : N;
+fun capsule_N : N;
+fun capt_PN : PN;
+fun captain_N : N;
+fun captain_V2 : V2;
+fun caption_N : N;
+fun captious_A : A;
+fun captivate_V2 : V2;
+fun captive_A : A;
+fun captive_N : N;
+fun captivity_N : N;
+fun captor_N : N;
+fun capture_N : N;
+fun capture_V2 : V2;
+fun car_N : N;
+fun car_ferry_N : N;
+fun caracas_PN : PN;
+fun carafe_N : N;
+fun caramel_N : N;
+fun carapace_N : N;
+fun carat_N : N;
+fun caravan_N : N;
+fun caravanning_N : N;
+fun caravansary_N : N;
+fun caravanserai_N : N;
+fun caraway_N : N;
+fun carbide_N : N;
+fun carbine_N : N;
+fun carbohydrate_N : N;
+fun carbolic_A : A;
+fun carbon_N : N;
+fun carbon_paper_N : N;
+fun carbonated_A : A;
+fun carbonic_A : A;
+fun carboniferous_A : A;
+fun carbonization_N : N;
+fun carbonize_V2 : V2;
+fun carborundum_N : N;
+fun carboy_N : N;
+fun carbuncle_N : N;
+fun carburettor_N : N;
+fun carcase_N : N;
+fun carcass_N : N;
+fun card_N : N;
+fun card_V2 : V2;
+fun card_sharper_N : N;
+fun cardamom_N : N;
+fun cardboard_N : N;
+fun cardenden_PN : PN;
+fun cardiac_A : A;
+fun cardiff_PN : PN;
+fun cardigan_N : N;
+fun cardigan_PN : PN;
+fun cardinal_A : A;
+fun cardinal_N : N;
+fun care_N : N;
+fun care_V : V;
+fun careen_V : V;
+fun careen_V2 : V2;
+fun career_N : N;
+fun career_V : V;
+fun careerist_N : N;
+fun carefree_A : A;
+fun careful_A : A;
+fun carefulness_N : N;
+fun careladen_A : A;
+fun careless_A : A;
+fun carelessness_N : N;
+fun caress_N : N;
+fun caress_V2 : V2;
+fun caressing_A : A;
+fun caret_N : N;
+fun caretaker_N : N;
+fun careworn_A : A;
+fun cargo_N : N;
+fun caribou_N : N;
+fun caricature_N : N;
+fun caricature_V2 : V2;
+fun caricaturist_N : N;
+fun caries_N : N;
+fun carillon_N : N;
+fun carious_A : A;
+fun carl_PN : PN;
+fun carlisle_PN : PN;
+fun carlow_PN : PN;
+fun carluke_PN : PN;
+fun carmarthen_PN : PN;
+fun carmelite_A : A;
+fun carmelite_N : N;
+fun carmine_A : A;
+fun carmine_N : N;
+fun carnage_N : N;
+fun carnal_A : A;
+fun carnation_N : N;
+fun carnforth_PN : PN;
+fun carnival_N : N;
+fun carnivore_N : N;
+fun carnivorous_A : A;
+fun carnoustie_PN : PN;
+fun carol_N : N;
+fun carol_PN : PN;
+fun carol_V2 : V2;
+fun carole_PN : PN;
+fun carolina_PN : PN;
+fun caroline_PN : PN;
+fun caroller_N : N;
+fun carolyn_PN : PN;
+fun carousal_N : N;
+fun carouse_V2 : V2;
+fun carousel_N : N;
+fun carp_N : N;
+fun carp_V : V;
+fun carp_V2 : V2;
+fun carpal_A : A;
+fun carpal_N : N;
+fun carpenter_N : N;
+fun carpentry_N : N;
+fun carpet_N : N;
+fun carpet_V2 : V2;
+fun carpet_beater_N : N;
+fun carpet_knight_N : N;
+fun carpet_sweeper_N : N;
+fun carpetbag_N : N;
+fun carpetbagger_N : N;
+fun carport_N : N;
+fun carriage_N : N;
+fun carriageway_N : N;
+fun carrie_PN : PN;
+fun carrier_N : N;
+fun carrier_bag_N : N;
+fun carrier_pigeon_N : N;
+fun carrion_N : N;
+fun carrion_crow_N : N;
+fun carron_PN : PN;
+fun carrot_N : N;
+fun carroty_A : A;
+fun carry_N : N;
+fun carry_V : V;
+fun carry_V2 : V2;
+fun carry_out_V2 : V2;
+fun carrycot_N : N;
+fun carsick_A : A;
+fun carsickness_N : N;
+fun cart_N : N;
+fun cart_V2 : V2;
+fun cart_track_N : N;
+fun cartage_N : N;
+fun cartagena_PN : PN;
+fun carte_blanche_N : N;
+fun cartel_N : N;
+fun carter_N : N;
+fun carthorse_N : N;
+fun cartilage_N : N;
+fun cartilaginous_A : A;
+fun cartload_N : N;
+fun cartographer_N : N;
+fun cartography_N : N;
+fun carton_N : N;
+fun cartoon_N : N;
+fun cartoon_V2 : V2;
+fun cartoonist_N : N;
+fun cartridge_N : N;
+fun cartridge_belt_N : N;
+fun cartridge_paper_N : N;
+fun cartroad_N : N;
+fun cartwheel_N : N;
+fun carve_V : V;
+fun carve_V2 : V2;
+fun carver_N : N;
+fun carving_N : N;
+fun carving_fork_N : N;
+fun carving_knife_N : N;
+fun caryatid_N : N;
+fun casablanca_PN : PN;
+fun cascade_N : N;
+fun cascade_V : V;
+fun case_N : N;
+fun case_V2 : V2;
+fun case_hardened_A : A;
+fun case_history_N : N;
+fun case_law_N : N;
+fun casebook_N : N;
+fun casein_N : N;
+fun casement_N : N;
+fun casework_N : N;
+fun cash_N : N;
+fun cash_V : V;
+fun cash_V2 : V2;
+fun cashable_A : A;
+fun cashew_N : N;
+fun cashier_N : N;
+fun cashier_V2 : V2;
+fun cashmere_N : N;
+fun casing_N : N;
+fun casino_N : N;
+fun cask_N : N;
+fun casket_N : N;
+fun cassava_N : N;
+fun casserole_N : N;
+fun cassette_N : N;
+fun cassock_N : N;
+fun cassowary_N : N;
+fun cast_N : N;
+fun cast_V : V;
+fun cast_V2 : V2;
+fun cast_iron_A : A;
+fun cast_off_A : A;
+fun castaway_N : N;
+fun caste_N : N;
+fun castellated_A : A;
+fun caster_N : N;
+fun castigate_V2 : V2;
+fun castigation_N : N;
+fun casting_N : N;
+fun castle_N : N;
+fun castle_V : V;
+fun castleford_PN : PN;
+fun castor_N : N;
+fun castor_oil_N : N;
+fun castrate_V2 : V2;
+fun castration_N : N;
+fun casual_A : A;
+fun casualty_N : N;
+fun casuist_N : N;
+fun casuistic_A : A;
+fun casuistical_A : A;
+fun casuistry_N : N;
+fun casus_belli_N : N;
+fun cat_N : N;
+fun cat_nap_N : N;
+fun cat_o'_nine_tails_N : N;
+fun cat_sleep_N : N;
+fun cataclysm_N : N;
+fun cataclysmic_A : A;
+fun catafalque_N : N;
+fun catalan_A : A;
+fun catalan_N : N;
+fun catalepsy_N : N;
+fun cataleptic_A : A;
+fun cataleptic_N : N;
+fun catalog_V2 : V2;
+fun catalogue_N : N;
+fun catalogue_V2 : V2;
+fun catalpa_N : N;
+fun catalysis_N : N;
+fun catalyst_N : N;
+fun catalytic_A : A;
+fun catamaran_N : N;
+fun catania_PN : PN;
+fun catapult_N : N;
+fun catapult_V2 : V2;
+fun cataract_N : N;
+fun catarrh_N : N;
+fun catastrophe_N : N;
+fun catastrophic_A : A;
+fun catastrophically_Adv : Adv;
+fun catcall_N : N;
+fun catcall_V : V;
+fun catch_N : N;
+fun catch_V : V;
+fun catch_V2 : V2;
+fun catch_VS : VS;
+fun catch_crop_N : N;
+fun catcher_N : N;
+fun catching_A : A;
+fun catchment_N : N;
+fun catchment_area_N : N;
+fun catchment_basin_N : N;
+fun catchpenny_A : A;
+fun catchup_N : N;
+fun catchword_N : N;
+fun catchy_A : A;
+fun catechism_N : N;
+fun catechize_V2 : V2;
+fun categorical_A : A;
+fun categorize_V2 : V2;
+fun category_N : N;
+fun cater_V : V;
+fun caterer_N : N;
+fun caterpillar_N : N;
+fun caterwaul_N : N;
+fun caterwaul_V : V;
+fun catfish_N : N;
+fun catgut_N : N;
+fun cath_PN : PN;
+fun catharsis_N : N;
+fun cathartic_N : N;
+fun cathedral_N : N;
+fun catherine_PN : PN;
+fun cathode_N : N;
+fun catholic_A : A;
+fun catholic_N : N;
+fun catholicism_N : N;
+fun catholicity_N : N;
+fun cathy_PN : PN;
+fun catkin_N : N;
+fun catsup_N : N;
+fun cattiness_N : N;
+fun cattish_A : A;
+fun cattle_cake_N : N;
+fun cattleman_N : N;
+fun catty_A : A;
+fun catwalk_N : N;
+fun caucasian_A : A;
+fun caucasian_N : N;
+fun caucus_N : N;
+fun caul_N : N;
+fun cauldron_N : N;
+fun cauliflower_N : N;
+fun caulk_V2 : V2;
+fun causal_A : A;
+fun causality_N : N;
+fun causation_N : N;
+fun causative_A : A;
+fun cause_N : N;
+fun cause_V2 : V2;
+fun cause_V2V : V2V;
+fun cause_VS : VS;
+fun causeless_A : A;
+fun causerie_N : N;
+fun causeway_N : N;
+fun caustic_A : A;
+fun caustically_Adv : Adv;
+fun cauterize_V2 : V2;
+fun caution_N : N;
+fun caution_V : V;
+fun caution_V2 : V2;
+fun caution_V2V : V2V;
+fun caution_VS : VS;
+fun cautionary_A : A;
+fun cautious_A : A;
+fun cavalcade_N : N;
+fun cavalier_A : A;
+fun cavalier_N : N;
+fun cavalry_N : N;
+fun cavalryman_N : N;
+fun cavan_PN : PN;
+fun cave_N : N;
+fun cave_V : V;
+fun cave_V2 : V2;
+fun cave_dweller_N : N;
+fun cave_in_N : N;
+fun caveat_N : N;
+fun caveman_N : N;
+fun cavern_N : N;
+fun cavernous_A : A;
+fun caviar_N : N;
+fun caviare_N : N;
+fun cavil_V : V;
+fun cavity_N : N;
+fun cavort_V : V;
+fun caw_N : N;
+fun caw_V : V;
+fun caw_V2 : V2;
+fun cayenne_N : N;
+fun cayenne_pepper_N : N;
+fun cayman_N : N;
+fun cbi_N : N;
+fun cc_N : N;
+fun cd_N : N;
+fun cdr_PN : PN;
+fun cdre_PN : PN;
+fun cease_N : N;
+fun cease_V : V;
+fun cease_V2 : V2;
+fun cease_V2V : V2V;
+fun cease_VS : VS;
+fun cease_fire_N : N;
+fun ceaseless_A : A;
+fun cecil_PN : PN;
+fun cecilia_PN : PN;
+fun cecily_PN : PN;
+fun cedar_N : N;
+fun cede_V2 : V2;
+fun cedilla_N : N;
+fun cedric_PN : PN;
+fun cefn_mawr_PN : PN;
+fun ceiling_N : N;
+fun celandine_N : N;
+fun celebrant_N : N;
+fun celebrate_V2 : V2;
+fun celebrated_A : A;
+fun celebration_N : N;
+fun celebrity_N : N;
+fun celerity_N : N;
+fun celery_N : N;
+fun celestial_A : A;
+fun celia_PN : PN;
+fun celibacy_N : N;
+fun celibate_N : N;
+fun cell_N : N;
+fun cellar_N : N;
+fun cellarage_N : N;
+fun cellist_N : N;
+fun cello_N : N;
+fun cellophane_N : N;
+fun cellular_A : A;
+fun celluloid_N : N;
+fun cellulose_N : N;
+fun celt_N : N;
+fun celtic_A : A;
+fun celtic_N : N;
+fun cement_N : N;
+fun cement_V2 : V2;
+fun cement_mixer_N : N;
+fun cemetery_N : N;
+fun cenotaph_N : N;
+fun censer_N : N;
+fun censor_N : N;
+fun censor_V2 : V2;
+fun censorious_A : A;
+fun censorship_N : N;
+fun censure_N : N;
+fun censure_V2 : V2;
+fun census_N : N;
+fun cent_N : N;
+fun centaur_N : N;
+fun centenarian_A : A;
+fun centenarian_N : N;
+fun centenary_A : A;
+fun centenary_N : N;
+fun centennial_A : A;
+fun centennial_N : N;
+fun center_V : V;
+fun center_V2 : V2;
+fun centigrade_A : A;
+fun centime_N : N;
+fun centimetre_N : N;
+fun centipede_N : N;
+fun central_A : A;
+fun central_N : N;
+fun centralization_N : N;
+fun centralize_V : V;
+fun centralize_V2 : V2;
+fun centre_N : N;
+fun centre_V : V;
+fun centre_V2 : V2;
+fun centre_bit_N : N;
+fun centre_board_N : N;
+fun centrepiece_N : N;
+fun centrifugal_A : A;
+fun centrifuge_N : N;
+fun centripetal_A : A;
+fun centurion_N : N;
+fun century_N : N;
+fun ceramic_A : A;
+fun ceramics_N : N;
+fun cereal_N : N;
+fun cerebral_A : A;
+fun cerebration_N : N;
+fun ceremonial_A : A;
+fun ceremonial_N : N;
+fun ceremonious_A : A;
+fun ceremony_N : N;
+fun cerise_A : A;
+fun cerise_N : N;
+fun cert_N : N;
+fun certain_A : A;
+fun certainty_N : N;
+fun certifiable_A : A;
+fun certificate_N : N;
+fun certificate_V2 : V2;
+fun certificated_A : A;
+fun certification_N : N;
+fun certify_V : V;
+fun certify_V2 : V2;
+fun certitude_N : N;
+fun cerulean_A : A;
+fun cervical_A : A;
+fun cervix_N : N;
+fun cesarean_A : A;
+fun cessation_N : N;
+fun cession_N : N;
+fun cesspit_N : N;
+fun cesspool_N : N;
+fun ceylon_PN : PN;
+fun cf_PN : PN;
+fun chad_PN : PN;
+fun chadian_A : A;
+fun chadian_N : N;
+fun chafe_N : N;
+fun chafe_V : V;
+fun chafe_V2 : V2;
+fun chaff_N : N;
+fun chaff_V2 : V2;
+fun chaffinch_N : N;
+fun chafing_dish_N : N;
+fun chagrin_N : N;
+fun chagrin_V2 : V2;
+fun chain_N : N;
+fun chain_V2 : V2;
+fun chain_armour_N : N;
+fun chain_gang_N : N;
+fun chain_letter_N : N;
+fun chain_mail_N : N;
+fun chain_smoker_N : N;
+fun chain_stitch_N : N;
+fun chain_store_N : N;
+fun chair_N : N;
+fun chair_V2 : V2;
+fun chair_lift_N : N;
+fun chairman_N : N;
+fun chairmanship_N : N;
+fun chaise_N : N;
+fun chaise_longue_N : N;
+fun chalet_N : N;
+fun chalfont_PN : PN;
+fun chalfont_st_giles_PN : PN;
+fun chalfont_st_peter_PN : PN;
+fun chalice_N : N;
+fun chalk_N : N;
+fun chalk_V2 : V2;
+fun chalkpit_N : N;
+fun chalky_A : A;
+fun challenge_N : N;
+fun challenge_V : V;
+fun challenge_V2 : V2;
+fun challenger_N : N;
+fun chamber_N : N;
+fun chamberlain_N : N;
+fun chambermaid_N : N;
+fun chamberpot_N : N;
+fun chameleon_N : N;
+fun chammy_leather_N : N;
+fun chamois_N : N;
+fun chamois_leather_N : N;
+fun champ_N : N;
+fun champ_V : V;
+fun champ_V2 : V2;
+fun champagne_N : N;
+fun champion_A : A;
+fun champion_Adv : Adv;
+fun champion_N : N;
+fun champion_V2 : V2;
+fun championship_N : N;
+fun chance_N : N;
+fun chance_V : V;
+fun chance_V2 : V2;
+fun chance_VS : VS;
+fun chancel_N : N;
+fun chancellery_N : N;
+fun chancellor_N : N;
+fun chancery_N : N;
+fun chancy_A : A;
+fun chandelier_N : N;
+fun chandler_N : N;
+fun changchun_PN : PN;
+fun change_N : N;
+fun change_V : V;
+fun change_V2 : V2;
+fun changeable_A : A;
+fun changeableness_N : N;
+fun changeful_A : A;
+fun changeless_A : A;
+fun changeling_N : N;
+fun changeover_N : N;
+fun changsha_PN : PN;
+fun channel_N : N;
+fun channel_V2 : V2;
+fun chant_N : N;
+fun chant_V : V;
+fun chant_V2 : V2;
+fun chaos_N : N;
+fun chaotic_A : A;
+fun chaotically_Adv : Adv;
+fun chap_N : N;
+fun chap_V : V;
+fun chap_V2 : V2;
+fun chapel_N : N;
+fun chapelgoer_N : N;
+fun chaperon_N : N;
+fun chaperon_V2 : V2;
+fun chapfallen_A : A;
+fun chaplain_N : N;
+fun chaplaincy_N : N;
+fun chaplet_N : N;
+fun chapman_N : N;
+fun chapter_N : N;
+fun chapterhouse_N : N;
+fun char_N : N;
+fun char_V : V;
+fun char_V2 : V2;
+fun charabanc_1_N : N;
+fun charabanc_2_N : N;
+fun character_N : N;
+fun characteristic_A : A;
+fun characteristic_N : N;
+fun characteristically_Adv : Adv;
+fun characterization_N : N;
+fun characterize_V2 : V2;
+fun characterless_A : A;
+fun charade_N : N;
+fun charcoal_N : N;
+fun charcoal_burner_N : N;
+fun chard_N : N;
+fun chard_PN : PN;
+fun charge_N : N;
+fun charge_V : V;
+fun charge_V2 : V2;
+fun charge_VS : VS;
+fun charge_account_N : N;
+fun charge_d'affaires_N : N;
+fun charge_sheet_N : N;
+fun chargeable_A : A;
+fun charger_N : N;
+fun chariot_N : N;
+fun charioteer_N : N;
+fun charisma_N : N;
+fun charismatic_A : A;
+fun charitable_A : A;
+fun charity_N : N;
+fun charivari_N : N;
+fun charlady_N : N;
+fun charlatan_N : N;
+fun charles_PN : PN;
+fun charleston_N : N;
+fun charlie_PN : PN;
+fun charlock_N : N;
+fun charlotte_PN : PN;
+fun charm_N : N;
+fun charm_V : V;
+fun charm_V2 : V2;
+fun charmer_N : N;
+fun charming_A : A;
+fun charnel_house_N : N;
+fun chart_N : N;
+fun chart_V2 : V2;
+fun charter_N : N;
+fun charter_V2 : V2;
+fun charter_party_N : N;
+fun chartism_N : N;
+fun chartist_N : N;
+fun chartreuse_N : N;
+fun charwoman_N : N;
+fun chary_A : A;
+fun charybdis_PN : PN;
+fun chas_PN : PN;
+fun chase_N : N;
+fun chase_V : V;
+fun chase_V2 : V2;
+fun chaser_N : N;
+fun chasm_N : N;
+fun chassis_N : N;
+fun chaste_A : A;
+fun chasten_V2 : V2;
+fun chastise_V2 : V2;
+fun chastisement_N : N;
+fun chastity_N : N;
+fun chasuble_N : N;
+fun chat_N : N;
+fun chat_V : V;
+fun chat_V2 : V2;
+fun chateau_N : N;
+fun chatelaine_N : N;
+fun chatham_PN : PN;
+fun chattel_N : N;
+fun chatter_N : N;
+fun chatter_V : V;
+fun chatterbox_N : N;
+fun chattily_Adv : Adv;
+fun chatty_A : A;
+fun chauffeur_N : N;
+fun chauffeur_V2 : V2;
+fun chauffeuse_N : N;
+fun chauvinism_N : N;
+fun chauvinist_N : N;
+fun chauvinistic_A : A;
+fun chaw_N : N;
+fun chaw_V2 : V2;
+fun chaw_bacon_N : N;
+fun cheadle_PN : PN;
+fun cheap_A : A;
+fun cheapen_V : V;
+fun cheapen_V2 : V2;
+fun cheapjack_A : A;
+fun cheapness_N : N;
+fun cheat_N : N;
+fun cheat_V : V;
+fun cheat_V2 : V2;
+fun check_N : N;
+fun check_V : V;
+fun check_V2 : V2;
+fun checkbook_N : N;
+fun checked_A : A;
+fun checker_N : N;
+fun checker_V2 : V2;
+fun checkers_N : N;
+fun checklist_N : N;
+fun checkmate_N : N;
+fun checkmate_V2 : V2;
+fun checkout_N : N;
+fun checkpoint_N : N;
+fun checkroom_N : N;
+fun checkup_N : N;
+fun cheddar_N : N;
+fun cheek_N : N;
+fun cheek_V2 : V2;
+fun cheekbone_N : N;
+fun cheeked_A : A;
+fun cheekily_Adv : Adv;
+fun cheeky_A : A;
+fun cheep_N : N;
+fun cheep_V : V;
+fun cheer_N : N;
+fun cheer_V : V;
+fun cheer_V2 : V2;
+fun cheerful_A : A;
+fun cheerfulness_N : N;
+fun cheering_A : A;
+fun cheering_N : N;
+fun cheerleader_N : N;
+fun cheerless_A : A;
+fun cheerlessness_N : N;
+fun cheery_A : A;
+fun cheese_N : N;
+fun cheesecake_N : N;
+fun cheesecloth_N : N;
+fun cheeseparing_A : A;
+fun cheetah_N : N;
+fun chef_N : N;
+fun chef_d'oeuvre_N : N;
+fun chelmsford_PN : PN;
+fun chelsea_PN : PN;
+fun cheltenham_PN : PN;
+fun chelyabinsk_PN : PN;
+fun chemical_A : A;
+fun chemical_N : N;
+fun chemise_N : N;
+fun chemist_N : N;
+fun chemistry_N : N;
+fun chemotherapy_N : N;
+fun chengchow_PN : PN;
+fun chengtu_PN : PN;
+fun chenille_N : N;
+fun chepstow_PN : PN;
+fun cheque_N : N;
+fun chequebook_N : N;
+fun chequer_V2 : V2;
+fun cherish_V2 : V2;
+fun cheroot_N : N;
+fun cherry_A : A;
+fun cherry_N : N;
+fun cherub_N : N;
+fun cherubic_A : A;
+fun chervil_N : N;
+fun chesham_PN : PN;
+fun cheshire_PN : PN;
+fun chess_N : N;
+fun chessboard_N : N;
+fun chessman_N : N;
+fun chest_N : N;
+fun chester_PN : PN;
+fun chester_le_street_PN : PN;
+fun chesterfield_N : N;
+fun chesterfield_PN : PN;
+fun chestnut_N : N;
+fun cheval_glass_N : N;
+fun chevron_N : N;
+fun chew_N : N;
+fun chew_V : V;
+fun chew_V2 : V2;
+fun chewing_gum_N : N;
+fun chianti_N : N;
+fun chiaroscuro_N : N;
+fun chic_A : A;
+fun chic_N : N;
+fun chicago_PN : PN;
+fun chicanery_N : N;
+fun chichester_PN : PN;
+fun chichi_A : A;
+fun chick_N : N;
+fun chicken_N : N;
+fun chicken_hearted_A : A;
+fun chicken_run_N : N;
+fun chickenfeed_N : N;
+fun chickenpox_N : N;
+fun chickpea_N : N;
+fun chickweed_N : N;
+fun chicle_N : N;
+fun chicory_N : N;
+fun chide_V : V;
+fun chide_V2 : V2;
+fun chief_A : A;
+fun chief_N : N;
+fun chieftain_N : N;
+fun chieftaincy_N : N;
+fun chiffon_N : N;
+fun chiffonier_N : N;
+fun chignon_N : N;
+fun chilblain_N : N;
+fun chilblained_A : A;
+fun child's_play_N : N;
+fun child_N : N;
+fun child_bearing_N : N;
+fun childbirth_N : N;
+fun childhood_N : N;
+fun childish_A : A;
+fun childless_A : A;
+fun childlike_A : A;
+fun chile_PN : PN;
+fun chilean_A : A;
+fun chilean_N : N;
+fun chill_A : A;
+fun chill_N : N;
+fun chill_V : V;
+fun chill_V2 : V2;
+fun chilli_N : N;
+fun chilly_A : A;
+fun chilly_N : N;
+fun chimaera_N : N;
+fun chime_N : N;
+fun chime_V : V;
+fun chime_V2 : V2;
+fun chimera_N : N;
+fun chimerical_A : A;
+fun chimney_N : N;
+fun chimney_sweep_N : N;
+fun chimneybreast_N : N;
+fun chimneypiece_N : N;
+fun chimneypot_N : N;
+fun chimneystack_N : N;
+fun chimneysweep_N : N;
+fun chimneysweeper_N : N;
+fun chimp_N : N;
+fun chimpanzee_N : N;
+fun chin_N : N;
+fun chin_strap_N : N;
+fun chin_wagging_N : N;
+fun china_N : N;
+fun china_PN : PN;
+fun china_closet_N : N;
+fun chinaware_N : N;
+fun chinchilla_N : N;
+fun chinchow_PN : PN;
+fun chine_N : N;
+fun chinese_A : A;
+fun chinese_N : N;
+fun chink_N : N;
+fun chink_V : V;
+fun chink_V2 : V2;
+fun chintz_N : N;
+fun chip_N : N;
+fun chip_V : V;
+fun chip_V2 : V2;
+fun chipboard_N : N;
+fun chipmunk_N : N;
+fun chippendale_N : N;
+fun chippenham_PN : PN;
+fun chiropodist_N : N;
+fun chiropody_N : N;
+fun chiropractor_N : N;
+fun chirp_N : N;
+fun chirp_V : V;
+fun chirp_V2 : V2;
+fun chirpiness_N : N;
+fun chirpy_A : A;
+fun chirrup_N : N;
+fun chirrup_V : V;
+fun chirrup_V2 : V2;
+fun chisel_N : N;
+fun chisel_V2 : V2;
+fun chiseller_N : N;
+fun chit_N : N;
+fun chit_chat_N : N;
+fun chivalrous_A : A;
+fun chivalry_N : N;
+fun chive_N : N;
+fun chivvy_V2 : V2;
+fun chivy_V2 : V2;
+fun chloe_PN : PN;
+fun chloride_N : N;
+fun chlorinate_V2 : V2;
+fun chlorination_N : N;
+fun chlorine_N : N;
+fun chloroform_N : N;
+fun chlorophyll_N : N;
+fun choc_N : N;
+fun choc_ice_N : N;
+fun chock_N : N;
+fun chock_V2 : V2;
+fun chock_a_block_A : A;
+fun chock_a_block_Adv : Adv;
+fun chock_full_A : A;
+fun chocolate_N : N;
+fun choice_A : A;
+fun choice_N : N;
+fun choir_N : N;
+fun choir_school_N : N;
+fun choirboy_N : N;
+fun choke_N : N;
+fun choke_V : V;
+fun choke_V2 : V2;
+fun choke_damp_N : N;
+fun choker_N : N;
+fun chokey_N : N;
+fun choky_N : N;
+fun choler_N : N;
+fun cholera_N : N;
+fun choleric_A : A;
+fun choose_V : V;
+fun choose_V2 : V2;
+fun choose_V2V : V2V;
+fun choose_VS : VS;
+fun choosey_A : A;
+fun choosy_A : A;
+fun chop_N : N;
+fun chop_V : V;
+fun chop_V2 : V2;
+fun chop_chop_Adv : Adv;
+fun chop_house_N : N;
+fun chop_suey_N : N;
+fun chopper_N : N;
+fun choppy_A : A;
+fun chopwell_PN : PN;
+fun choral_A : A;
+fun chorale_N : N;
+fun chord_N : N;
+fun chore_N : N;
+fun choreographer_N : N;
+fun choreography_N : N;
+fun chorister_N : N;
+fun chorley_PN : PN;
+fun chortle_N : N;
+fun chortle_V : V;
+fun chorus_N : N;
+fun chorus_V2 : V2;
+fun chorus_girl_N : N;
+fun chow_N : N;
+fun chowder_N : N;
+fun chris_PN : PN;
+fun chrissie_PN : PN;
+fun chrissy_PN : PN;
+fun christ_PN : PN;
+fun christchurch_PN : PN;
+fun christen_V2 : V2;
+fun christendom_N : N;
+fun christening_N : N;
+fun christian_A : A;
+fun christian_N : N;
+fun christian_PN : PN;
+fun christianity_N : N;
+fun christina_PN : PN;
+fun christine_PN : PN;
+fun christlike_A : A;
+fun christmas_N : N;
+fun christmas_PN : PN;
+fun christmas_box_N : N;
+fun christmas_tree_N : N;
+fun christmastide_N : N;
+fun christmastime_N : N;
+fun christopher_PN : PN;
+fun chromatic_A : A;
+fun chrome_N : N;
+fun chromium_N : N;
+fun chromosome_N : N;
+fun chronic_A : A;
+fun chronically_Adv : Adv;
+fun chronicle_N : N;
+fun chronicle_V2 : V2;
+fun chronicler_N : N;
+fun chronological_A : A;
+fun chronology_N : N;
+fun chronometer_N : N;
+fun chrysalis_N : N;
+fun chrysanthemum_N : N;
+fun chubby_A : A;
+fun chuck_N : N;
+fun chuck_V2 : V2;
+fun chucker_out_N : N;
+fun chuckle_N : N;
+fun chuckle_V : V;
+fun chuckle_VS : VS;
+fun chug_N : N;
+fun chug_V : V;
+fun chukker_N : N;
+fun chum_N : N;
+fun chum_V : V;
+fun chummy_A : A;
+fun chump_N : N;
+fun chungking_PN : PN;
+fun chunk_N : N;
+fun chunky_A : A;
+fun church_N : N;
+fun churchgoer_N : N;
+fun churchman_N : N;
+fun churchwarden_N : N;
+fun churchyard_N : N;
+fun churl_N : N;
+fun churlish_A : A;
+fun churn_N : N;
+fun churn_V : V;
+fun churn_V2 : V2;
+fun chute_N : N;
+fun chutney_N : N;
+fun cia_N : N;
+fun cicada_N : N;
+fun cicala_N : N;
+fun cicatrice_N : N;
+fun cicatrix_N : N;
+fun cicerone_N : N;
+fun cid_N : N;
+fun cider_N : N;
+fun ciderpress_N : N;
+fun cif_PN : PN;
+fun cigar_N : N;
+fun cigar_shaped_A : A;
+fun cigarette_N : N;
+fun cigarette_case_N : N;
+fun cigarette_holder_N : N;
+fun cigarette_paper_N : N;
+fun cinch_N : N;
+fun cinch_V2 : V2;
+fun cinchona_N : N;
+fun cincinnati_PN : PN;
+fun cincture_N : N;
+fun cinder_N : N;
+fun cinder_track_N : N;
+fun cinderella_N : N;
+fun cinderford_PN : PN;
+fun cine_camera_N : N;
+fun cine_film_N : N;
+fun cine_projector_N : N;
+fun cinema_N : N;
+fun cinematic_A : A;
+fun cinematography_N : N;
+fun cinnamon_N : N;
+fun cinquefoil_N : N;
+fun cipher_N : N;
+fun cipher_V : V;
+fun cipher_V2 : V2;
+fun circle_N : N;
+fun circle_V : V;
+fun circle_V2 : V2;
+fun circlet_N : N;
+fun circuit_N : N;
+fun circuitous_A : A;
+fun circular_A : A;
+fun circular_N : N;
+fun circularity_N : N;
+fun circularize_V2 : V2;
+fun circulate_V : V;
+fun circulate_V2 : V2;
+fun circulation_N : N;
+fun circumcise_V2 : V2;
+fun circumcision_N : N;
+fun circumference_N : N;
+fun circumflex_N : N;
+fun circumlocution_N : N;
+fun circumnavigate_V2 : V2;
+fun circumnavigation_N : N;
+fun circumscribe_V2 : V2;
+fun circumscription_N : N;
+fun circumspect_A : A;
+fun circumspection_N : N;
+fun circumstance_N : N;
+fun circumstantial_A : A;
+fun circumvent_V2 : V2;
+fun circumvention_N : N;
+fun circus_N : N;
+fun cirencester_PN : PN;
+fun cirrhosis_N : N;
+fun cirrus_N : N;
+fun cissy_A : A;
+fun cissy_N : N;
+fun cistern_N : N;
+fun citadel_N : N;
+fun citation_N : N;
+fun cite_V2 : V2;
+fun citizen_N : N;
+fun citizenship_N : N;
+fun citric_A : A;
+fun citron_N : N;
+fun citrous_A : A;
+fun citrus_N : N;
+fun city_N : N;
+fun civet_N : N;
+fun civet_cat_N : N;
+fun civic_A : A;
+fun civics_N : N;
+fun civil_A : A;
+fun civilian_A : A;
+fun civilian_N : N;
+fun civility_N : N;
+fun civilization_N : N;
+fun civilize_V2 : V2;
+fun civvy_street_PN : PN;
+fun clack_N : N;
+fun clack_V : V;
+fun clackmannon_PN : PN;
+fun clacton_PN : PN;
+fun clad_V : V;
+fun clad_V2 : V2;
+fun claim_N : N;
+fun claim_V : V;
+fun claim_V2 : V2;
+fun claim_VV : VV;
+fun claim_VS : VS;
+fun claimant_N : N;
+fun clairvoyance_N : N;
+fun clairvoyant_N : N;
+fun clam_N : N;
+fun clam_V : V;
+fun clambake_N : N;
+fun clamber_N : N;
+fun clamber_V : V;
+fun clammily_Adv : Adv;
+fun clammy_A : A;
+fun clamorous_A : A;
+fun clamour_N : N;
+fun clamour_V : V;
+fun clamour_V2 : V2;
+fun clamp_N : N;
+fun clamp_V : V;
+fun clamp_V2 : V2;
+fun clamp_down_N : N;
+fun clan_N : N;
+fun clandestine_A : A;
+fun clang_N : N;
+fun clang_V : V;
+fun clang_V2 : V2;
+fun clanger_N : N;
+fun clangorous_A : A;
+fun clangour_N : N;
+fun clank_N : N;
+fun clank_V : V;
+fun clank_V2 : V2;
+fun clannish_A : A;
+fun clansman_N : N;
+fun clap_N : N;
+fun clap_V : V;
+fun clap_V2 : V2;
+fun clapboard_N : N;
+fun clapper_N : N;
+fun clapperboard_N : N;
+fun claptrap_N : N;
+fun claque_N : N;
+fun clare_PN : PN;
+fun claret_N : N;
+fun clarification_N : N;
+fun clarify_V : V;
+fun clarify_V2 : V2;
+fun clarinet_N : N;
+fun clarinetist_N : N;
+fun clarinettist_N : N;
+fun clarion_N : N;
+fun clarity_N : N;
+fun clarkston_PN : PN;
+fun clarrie_PN : PN;
+fun clash_N : N;
+fun clash_V : V;
+fun clash_V2 : V2;
+fun clasp_N : N;
+fun clasp_V : V;
+fun clasp_V2 : V2;
+fun clasp_knife_N : N;
+fun class_N : N;
+fun class_V2 : V2;
+fun class_conscious_A : A;
+fun class_feeling_N : N;
+fun class_fellow_N : N;
+fun class_list_N : N;
+fun class_warfare_N : N;
+fun classic_A : A;
+fun classic_N : N;
+fun classical_A : A;
+fun classicism_N : N;
+fun classicist_N : N;
+fun classics_N : N;
+fun classifiable_A : A;
+fun classification_N : N;
+fun classified_A : A;
+fun classify_V2 : V2;
+fun classless_A : A;
+fun classmate_N : N;
+fun classroom_N : N;
+fun classy_A : A;
+fun clatter_N : N;
+fun clatter_V : V;
+fun clatter_V2 : V2;
+fun claud_PN : PN;
+fun claude_PN : PN;
+fun clause_N : N;
+fun claustrophobia_N : N;
+fun claustrophobic_A : A;
+fun clavichord_N : N;
+fun clavicle_N : N;
+fun claw_N : N;
+fun claw_V2 : V2;
+fun clawback_N : N;
+fun clawhammer_N : N;
+fun clay_N : N;
+fun clay_cross_PN : PN;
+fun clayey_A : A;
+fun clean_A : A;
+fun clean_Adv : Adv;
+fun clean_N : N;
+fun clean_V : V;
+fun clean_V2 : V2;
+fun clean_bowled_A : A;
+fun clean_cut_A : A;
+fun clean_limbed_A : A;
+fun clean_living_A : A;
+fun clean_shaven_A : A;
+fun clean_up_N : N;
+fun cleaner_N : N;
+fun cleanliness_N : N;
+fun cleanly_A : A;
+fun cleanse_V2 : V2;
+fun cleanser_N : N;
+fun clear_A : A;
+fun clear_Adv : Adv;
+fun clear_N : N;
+fun clear_V : V;
+fun clear_V2 : V2;
+fun clear_V2V : V2V;
+fun clear_cut_Adv : Adv;
+fun clear_headed_A : A;
+fun clear_sighted_A : A;
+fun clearance_N : N;
+fun clearing_N : N;
+fun clearing_house_N : N;
+fun clearness_N : N;
+fun clearway_N : N;
+fun cleat_N : N;
+fun cleator_moor_PN : PN;
+fun cleavage_N : N;
+fun cleave_V : V;
+fun cleave_V2 : V2;
+fun cleaver_N : N;
+fun cleethorpes_PN : PN;
+fun clef_N : N;
+fun cleft_N : N;
+fun clem_PN : PN;
+fun clematis_N : N;
+fun clemency_N : N;
+fun clement_A : A;
+fun clement_PN : PN;
+fun clench_V2 : V2;
+fun clerestory_N : N;
+fun clergy_N : N;
+fun clergyman_N : N;
+fun cleric_N : N;
+fun clerical_A : A;
+fun clerihew_N : N;
+fun clerk_N : N;
+fun clerk_V : V;
+fun clermont_ferrand_PN : PN;
+fun clevedon_PN : PN;
+fun cleveland_PN : PN;
+fun clever_A : A;
+fun cleverness_N : N;
+fun clew_N : N;
+fun clew_V2 : V2;
+fun cliche_N : N;
+fun click_N : N;
+fun click_V : V;
+fun client_N : N;
+fun clientele_N : N;
+fun cliff_N : N;
+fun cliff_PN : PN;
+fun cliff_hanger_N : N;
+fun clifford_PN : PN;
+fun climacteric_N : N;
+fun climactic_A : A;
+fun climate_N : N;
+fun climatic_A : A;
+fun climatically_Adv : Adv;
+fun climatology_N : N;
+fun climax_N : N;
+fun climax_V : V;
+fun climax_V2 : V2;
+fun climb_N : N;
+fun climb_V : V;
+fun climb_V2 : V2;
+fun climb_down_N : N;
+fun climber_N : N;
+fun clime_N : N;
+fun clinch_N : N;
+fun clinch_V : V;
+fun clinch_V2 : V2;
+fun clincher_N : N;
+fun cling_V : V;
+fun clinic_N : N;
+fun clinical_A : A;
+fun clink_N : N;
+fun clink_V : V;
+fun clink_V2 : V2;
+fun clinker_N : N;
+fun clinker_built_A : A;
+fun clip_N : N;
+fun clip_V2 : V2;
+fun clip_joint_N : N;
+fun clip_on_A : A;
+fun clipper_N : N;
+fun clipping_N : N;
+fun clique_N : N;
+fun cliquish_A : A;
+fun clitheroe_PN : PN;
+fun clitoris_N : N;
+fun clive_PN : PN;
+fun cloak_N : N;
+fun cloak_V2 : V2;
+fun cloakroom_N : N;
+fun clobber_N : N;
+fun clobber_V2 : V2;
+fun cloche_N : N;
+fun clock_N : N;
+fun clock_V : V;
+fun clock_V2 : V2;
+fun clock_dial_N : N;
+fun clock_face_N : N;
+fun clock_golf_N : N;
+fun clock_tower_N : N;
+fun clock_watching_N : N;
+fun clockwise_Adv : Adv;
+fun clockwork_N : N;
+fun clod_N : N;
+fun clodhopper_N : N;
+fun clog_N : N;
+fun clog_V : V;
+fun clog_V2 : V2;
+fun clog_dance_N : N;
+fun cloggy_A : A;
+fun cloisonne_N : N;
+fun cloister_N : N;
+fun cloister_V2 : V2;
+fun clone_N : N;
+fun clone_V2 : V2;
+fun close_A : A;
+fun close_Adv : Adv;
+fun close_N : N;
+fun close_V : V;
+fun close_V2 : V2;
+fun close_V2V : V2V;
+fun close_VA : VA;
+fun close_VS : VS;
+fun close_cropped_A : A;
+fun close_cut_A : A;
+fun close_down_N : N;
+fun close_fisted_A : A;
+fun close_fitting_A : A;
+fun close_grained_A : A;
+fun close_hauled_A : A;
+fun close_set_A : A;
+fun close_up_N : N;
+fun closeness_N : N;
+fun closet_A : A;
+fun closet_N : N;
+fun closet_V2 : V2;
+fun closure_N : N;
+fun clot_N : N;
+fun clot_V : V;
+fun clot_V2 : V2;
+fun cloth_N : N;
+fun clothe_V2 : V2;
+fun clothes_basket_N : N;
+fun clothes_hanger_N : N;
+fun clothes_moth_N : N;
+fun clothes_peg_N : N;
+fun clothes_pin_N : N;
+fun clotheshorse_N : N;
+fun clothesline_N : N;
+fun clothier_N : N;
+fun clothing_N : N;
+fun cloud_N : N;
+fun cloud_V : V;
+fun cloud_V2 : V2;
+fun cloud_bank_N : N;
+fun cloud_capped_A : A;
+fun cloud_cuckoo_land_N : N;
+fun cloudburst_N : N;
+fun cloudless_A : A;
+fun cloudy_A : A;
+fun clout_N : N;
+fun clout_V2 : V2;
+fun clove_N : N;
+fun clove_hitch_N : N;
+fun clover_N : N;
+fun cloverleaf_N : N;
+fun clown_N : N;
+fun clown_V : V;
+fun clowne_PN : PN;
+fun clownish_A : A;
+fun cloy_V : V;
+fun cloy_V2 : V2;
+fun club_N : N;
+fun club_V : V;
+fun club_V2 : V2;
+fun club_footed_A : A;
+fun clubbable_A : A;
+fun clubfoot_N : N;
+fun clubhouse_N : N;
+fun cluck_N : N;
+fun cluck_V : V;
+fun clue_N : N;
+fun clump_N : N;
+fun clump_V : V;
+fun clump_V2 : V2;
+fun clumsily_Adv : Adv;
+fun clumsiness_N : N;
+fun clumsy_A : A;
+fun clunk_N : N;
+fun clunk_V : V;
+fun cluster_N : N;
+fun cluster_V : V;
+fun cluster_V2 : V2;
+fun clutch_N : N;
+fun clutch_V : V;
+fun clutch_V2 : V2;
+fun clutter_N : N;
+fun clutter_V2 : V2;
+fun clwyd_PN : PN;
+fun clydach_PN : PN;
+fun clydebank_PN : PN;
+fun cm_N : N;
+fun co_N : N;
+fun co_author_V2 : V2;
+fun co_ed_N : N;
+fun co_edit_V2 : V2;
+fun co_exist_V : V;
+fun co_found_V2 : V2;
+fun co_manage_V2 : V2;
+fun co_op_N : N;
+fun co_opt_V2 : V2;
+fun co_respondent_N : N;
+fun co_sponsor_V2 : V2;
+fun co_star_N : N;
+fun co_star_V : V;
+fun co_star_V2 : V2;
+fun coach_N : N;
+fun coach_V : V;
+fun coach_V2 : V2;
+fun coach_builder_N : N;
+fun coachman_N : N;
+fun coagulate_V : V;
+fun coagulate_V2 : V2;
+fun coagulation_N : N;
+fun coal_N : N;
+fun coal_V : V;
+fun coal_V2 : V2;
+fun coal_gas_N : N;
+fun coal_hole_N : N;
+fun coal_house_N : N;
+fun coal_scuttle_N : N;
+fun coal_seam_N : N;
+fun coal_tar_N : N;
+fun coalesce_V : V;
+fun coalescence_N : N;
+fun coalface_N : N;
+fun coalfield_N : N;
+fun coaling_station_N : N;
+fun coalition_N : N;
+fun coalman_N : N;
+fun coalmine_N : N;
+fun coalpit_N : N;
+fun coalville_PN : PN;
+fun coaming_N : N;
+fun coarse_A : A;
+fun coarsen_V : V;
+fun coarsen_V2 : V2;
+fun coarseness_N : N;
+fun coast_N : N;
+fun coast_V : V;
+fun coast_V2 : V2;
+fun coastal_A : A;
+fun coaster_N : N;
+fun coastguard_N : N;
+fun coastline_N : N;
+fun coastwise_A : A;
+fun coastwise_Adv : Adv;
+fun coat_N : N;
+fun coat_V2 : V2;
+fun coat_hanger_N : N;
+fun coatbridge_PN : PN;
+fun coatee_N : N;
+fun coating_N : N;
+fun coax_V : V;
+fun coax_V2 : V2;
+fun coaxing_N : N;
+fun coaxingly_Adv : Adv;
+fun cob_N : N;
+fun cob_nut_N : N;
+fun cobalt_N : N;
+fun cobber_N : N;
+fun cobble_N : N;
+fun cobble_V2 : V2;
+fun cobbler_N : N;
+fun cobblestone_N : N;
+fun cobham_PN : PN;
+fun cobra_N : N;
+fun cobweb_N : N;
+fun coca_cola_N : N;
+fun cocaine_N : N;
+fun cochineal_N : N;
+fun cochlea_N : N;
+fun cock_N : N;
+fun cock_V2 : V2;
+fun cock_a_doodle_doo_N : N;
+fun cock_a_hoop_A : A;
+fun cock_a_hoop_Adv : Adv;
+fun cock_crow_N : N;
+fun cockade_N : N;
+fun cockatoo_N : N;
+fun cockchafer_N : N;
+fun cocker_N : N;
+fun cockerel_N : N;
+fun cockermouth_PN : PN;
+fun cockeyed_A : A;
+fun cockfighting_N : N;
+fun cockhorse_N : N;
+fun cockle_N : N;
+fun cockleshell_N : N;
+fun cockney_A : A;
+fun cockney_N : N;
+fun cockpit_N : N;
+fun cockroach_N : N;
+fun cockscomb_N : N;
+fun cocksure_A : A;
+fun cocktail_N : N;
+fun cockup_N : N;
+fun cocky_A : A;
+fun coco_N : N;
+fun cocoa_N : N;
+fun coconut_N : N;
+fun cocoon_N : N;
+fun cocoon_V2 : V2;
+fun cocotte_N : N;
+fun cod_N : N;
+fun cod_PN : PN;
+fun cod_V : V;
+fun cod_V2 : V2;
+fun cod_liver_oil_N : N;
+fun coda_N : N;
+fun coddle_V2 : V2;
+fun code_N : N;
+fun code_V2 : V2;
+fun codeine_N : N;
+fun codex_N : N;
+fun codfish_N : N;
+fun codger_N : N;
+fun codicil_N : N;
+fun codification_N : N;
+fun codify_V2 : V2;
+fun codling_N : N;
+fun codpiece_N : N;
+fun codsall_PN : PN;
+fun coeducation_N : N;
+fun coeducational_A : A;
+fun coefficient_N : N;
+fun coerce_V2 : V2;
+fun coercion_N : N;
+fun coercive_A : A;
+fun coeval_A : A;
+fun coeval_N : N;
+fun coexist_V : V;
+fun coexistence_N : N;
+fun coextrude_V2 : V2;
+fun coffee_N : N;
+fun coffee_house_N : N;
+fun coffee_mill_N : N;
+fun coffee_stall_N : N;
+fun coffer_N : N;
+fun coffer_dam_N : N;
+fun coffin_N : N;
+fun cog_N : N;
+fun cogency_N : N;
+fun cogent_A : A;
+fun cogitate_V : V;
+fun cogitate_V2 : V2;
+fun cogitation_N : N;
+fun cognac_N : N;
+fun cognate_A : A;
+fun cognate_N : N;
+fun cognition_N : N;
+fun cognizance_N : N;
+fun cognizant_A : A;
+fun cognomen_N : N;
+fun cogwheel_N : N;
+fun cohabit_V : V;
+fun cohabitation_N : N;
+fun cohere_V : V;
+fun coherence_N : N;
+fun coherency_N : N;
+fun coherent_A : A;
+fun cohesion_N : N;
+fun cohesive_A : A;
+fun cohort_N : N;
+fun coif_N : N;
+fun coiffeur_N : N;
+fun coiffure_N : N;
+fun coign_N : N;
+fun coil_N : N;
+fun coil_V : V;
+fun coil_V2 : V2;
+fun coimbatore_PN : PN;
+fun coin_N : N;
+fun coin_V2 : V2;
+fun coinage_N : N;
+fun coincide_V : V;
+fun coincidence_N : N;
+fun coincident_A : A;
+fun coincidental_A : A;
+fun coiner_N : N;
+fun coir_N : N;
+fun coition_N : N;
+fun coitus_N : N;
+fun coke_N : N;
+fun coke_V2 : V2;
+fun col_N : N;
+fun col_PN : PN;
+fun cola_N : N;
+fun colander_N : N;
+fun colchester_PN : PN;
+fun cold_A : A;
+fun cold_N : N;
+fun cold_blooded_A : A;
+fun cold_hearted_A : A;
+fun cold_shoulder_V2 : V2;
+fun coldness_N : N;
+fun coleshill_PN : PN;
+fun coleslaw_N : N;
+fun colic_N : N;
+fun colin_PN : PN;
+fun colitis_N : N;
+fun coll_PN : PN;
+fun collaborate_V : V;
+fun collaboration_N : N;
+fun collaborationist_N : N;
+fun collaborator_N : N;
+fun collage_N : N;
+fun collapsable_A : A;
+fun collapse_N : N;
+fun collapse_V : V;
+fun collapse_V2 : V2;
+fun collapsible_A : A;
+fun collar_N : N;
+fun collar_V2 : V2;
+fun collarbone_N : N;
+fun collate_V2 : V2;
+fun collateral_A : A;
+fun collateral_N : N;
+fun collation_N : N;
+fun colleague_N : N;
+fun collect_A : A;
+fun collect_Adv : Adv;
+fun collect_N : N;
+fun collect_V : V;
+fun collect_V2 : V2;
+fun collected_A : A;
+fun collection_N : N;
+fun collective_A : A;
+fun collectivization_N : N;
+fun collectivize_V2 : V2;
+fun collector_N : N;
+fun colleen_N : N;
+fun college_N : N;
+fun collegiate_A : A;
+fun collide_V : V;
+fun collie_N : N;
+fun collier_N : N;
+fun colliery_N : N;
+fun collision_N : N;
+fun collocate_V : V;
+fun collocation_N : N;
+fun colloquial_A : A;
+fun colloquialism_N : N;
+fun colloquy_N : N;
+fun collusion_N : N;
+fun collusive_A : A;
+fun colne_PN : PN;
+fun cologne_PN : PN;
+fun colombia_PN : PN;
+fun colombian_A : A;
+fun colombian_N : N;
+fun colombo_PN : PN;
+fun colon_N : N;
+fun colonel_N : N;
+fun colonial_A : A;
+fun colonial_N : N;
+fun colonialism_N : N;
+fun colonialist_N : N;
+fun colonist_N : N;
+fun colonization_N : N;
+fun colonize_V2 : V2;
+fun colonizer_N : N;
+fun colonnade_N : N;
+fun colonnaded_A : A;
+fun colony_N : N;
+fun color_V2 : V2;
+fun color_code_V2 : V2;
+fun colorado_PN : PN;
+fun coloratura_N : N;
+fun colossal_A : A;
+fun colossus_N : N;
+fun colour_N : N;
+fun colour_V : V;
+fun colour_V2 : V2;
+fun colour_bar_N : N;
+fun colour_blind_A : A;
+fun colour_wash_N : N;
+fun coloured_A : A;
+fun colourful_A : A;
+fun colouring_N : N;
+fun colourless_A : A;
+fun colt_N : N;
+fun coltish_A : A;
+fun columbia_PN : PN;
+fun columbine_N : N;
+fun columbus_PN : PN;
+fun column_N : N;
+fun columnist_N : N;
+fun colwyn_bay_PN : PN;
+fun coma_N : N;
+fun comatose_A : A;
+fun comb_N : N;
+fun comb_V : V;
+fun comb_V2 : V2;
+fun comb_out_N : N;
+fun combat_N : N;
+fun combat_V : V;
+fun combat_V2 : V2;
+fun combatant_A : A;
+fun combatant_N : N;
+fun combative_A : A;
+fun combination_N : N;
+fun combination_lock_N : N;
+fun combine_N : N;
+fun combine_V : V;
+fun combine_V2 : V2;
+fun combine_V2V : V2V;
+fun combustible_A : A;
+fun combustible_N : N;
+fun combustion_N : N;
+fun come_V : V;
+fun come_V2 : V2;
+fun come_VV : VV;
+fun come_VA : VA;
+fun come_VS : VS;
+fun come_at_able_A : A;
+fun come_on_N : N;
+fun comeback_N : N;
+fun comedian_N : N;
+fun comedienne_N : N;
+fun comedown_N : N;
+fun comedy_N : N;
+fun comeliness_N : N;
+fun comely_A : A;
+fun comer_N : N;
+fun comestible_N : N;
+fun comet_N : N;
+fun comfit_N : N;
+fun comfort_N : N;
+fun comfort_V2 : V2;
+fun comfortable_A : A;
+fun comforter_N : N;
+fun comfortingly_Adv : Adv;
+fun comfortless_A : A;
+fun comfrey_N : N;
+fun comfy_A : A;
+fun comic_A : A;
+fun comic_N : N;
+fun comical_A : A;
+fun coming_A : A;
+fun coming_N : N;
+fun comity_N : N;
+fun comma_N : N;
+fun command_N : N;
+fun command_V : V;
+fun command_V2 : V2;
+fun commandant_N : N;
+fun commandeer_V2 : V2;
+fun commander_N : N;
+fun commanding_A : A;
+fun commandment_N : N;
+fun commando_N : N;
+fun commemorate_V2 : V2;
+fun commemoration_N : N;
+fun commemorative_A : A;
+fun commence_V : V;
+fun commence_V2 : V2;
+fun commencement_N : N;
+fun commend_V2 : V2;
+fun commendable_A : A;
+fun commendation_N : N;
+fun commensurable_A : A;
+fun commensurate_A : A;
+fun comment_N : N;
+fun comment_V : V;
+fun comment_V2 : V2;
+fun comment_VS : VS;
+fun commentary_N : N;
+fun commentate_V : V;
+fun commentator_N : N;
+fun commerce_N : N;
+fun commercial_A : A;
+fun commercial_N : N;
+fun commercialism_N : N;
+fun commercialize_V2 : V2;
+fun commination_N : N;
+fun comminatory_A : A;
+fun commingle_V : V;
+fun commingle_V2 : V2;
+fun commiserate_V : V;
+fun commiseration_N : N;
+fun commissar_N : N;
+fun commissariat_N : N;
+fun commissary_N : N;
+fun commission_N : N;
+fun commission_V2 : V2;
+fun commission_V2V : V2V;
+fun commissionaire_N : N;
+fun commissioned_A : A;
+fun commissioner_N : N;
+fun commit_V2 : V2;
+fun commit_V2V : V2V;
+fun commital_N : N;
+fun commitment_N : N;
+fun committee_N : N;
+fun commode_N : N;
+fun commodious_A : A;
+fun commodity_N : N;
+fun commodore_N : N;
+fun common_A : A;
+fun common_N : N;
+fun common_room_N : N;
+fun commonalty_N : N;
+fun commoner_N : N;
+fun commonplace_A : A;
+fun commonplace_N : N;
+fun commonwealth_N : N;
+fun commotion_N : N;
+fun communal_A : A;
+fun commune_N : N;
+fun commune_V : V;
+fun communicable_A : A;
+fun communicant_N : N;
+fun communicate_V : V;
+fun communicate_V2 : V2;
+fun communication_N : N;
+fun communicative_A : A;
+fun communion_N : N;
+fun communique_N : N;
+fun communism_N : N;
+fun communist_A : A;
+fun communist_N : N;
+fun community_N : N;
+fun commutable_A : A;
+fun commutation_N : N;
+fun commutator_N : N;
+fun commute_V : V;
+fun commute_V2 : V2;
+fun commuter_N : N;
+fun compact_A : A;
+fun compact_N : N;
+fun compact_V2 : V2;
+fun compactness_N : N;
+fun companion_N : N;
+fun companionable_A : A;
+fun companionship_N : N;
+fun companionway_N : N;
+fun company_N : N;
+fun comparability_N : N;
+fun comparable_A : A;
+fun comparative_A : A;
+fun comparative_N : N;
+fun compare_N : N;
+fun compare_V : V;
+fun compare_V2 : V2;
+fun comparison_N : N;
+fun compartment_N : N;
+fun compartmentalize_V2 : V2;
+fun compass_N : N;
+fun compass_V2 : V2;
+fun compassion_N : N;
+fun compassionate_A : A;
+fun compatibility_N : N;
+fun compatible_A : A;
+fun compatriot_N : N;
+fun compeer_N : N;
+fun compel_V2 : V2;
+fun compel_VV : VV;
+fun compendious_A : A;
+fun compendium_N : N;
+fun compensate_V : V;
+fun compensate_V2 : V2;
+fun compensation_N : N;
+fun compensatory_A : A;
+fun compere_N : N;
+fun compere_V2 : V2;
+fun compete_V : V;
+fun competence_N : N;
+fun competent_A : A;
+fun competition_N : N;
+fun competitive_A : A;
+fun competitiveness_N : N;
+fun competitor_N : N;
+fun compilation_N : N;
+fun compile_V2 : V2;
+fun compiler_N : N;
+fun complacence_N : N;
+fun complacency_N : N;
+fun complacent_A : A;
+fun complain_V : V;
+fun complain_VS : VS;
+fun complainant_N : N;
+fun complainingly_Adv : Adv;
+fun complaint_N : N;
+fun complaisance_N : N;
+fun complaisant_A : A;
+fun complement_N : N;
+fun complement_V2 : V2;
+fun complementary_A : A;
+fun complete_A : A;
+fun complete_V : V;
+fun complete_V2 : V2;
+fun completeness_N : N;
+fun completion_N : N;
+fun complex_A : A;
+fun complex_N : N;
+fun complexion_N : N;
+fun complexity_N : N;
+fun compliance_N : N;
+fun compliant_A : A;
+fun complicate_V2 : V2;
+fun complicated_A : A;
+fun complication_N : N;
+fun complicity_N : N;
+fun compliment_N : N;
+fun compliment_V2 : V2;
+fun complimentary_A : A;
+fun complin_N : N;
+fun compline_N : N;
+fun comply_V : V;
+fun comply_V2 : V2;
+fun component_A : A;
+fun component_N : N;
+fun comport_V : V;
+fun comport_V2 : V2;
+fun comportment_N : N;
+fun compos_mentis_A : A;
+fun compose_V : V;
+fun compose_V2 : V2;
+fun composed_A : A;
+fun composer_N : N;
+fun composite_A : A;
+fun composition_N : N;
+fun compositor_N : N;
+fun compost_N : N;
+fun compost_V2 : V2;
+fun composure_N : N;
+fun compote_N : N;
+fun compound_A : A;
+fun compound_N : N;
+fun compound_V : V;
+fun compound_V2 : V2;
+fun comprehend_V2 : V2;
+fun comprehensibility_N : N;
+fun comprehensible_A : A;
+fun comprehension_N : N;
+fun comprehensive_A : A;
+fun comprehensiveness_N : N;
+fun compress_N : N;
+fun compress_V2 : V2;
+fun compression_N : N;
+fun compressor_N : N;
+fun comprise_V2 : V2;
+fun compromise_N : N;
+fun compromise_V : V;
+fun compromise_V2 : V2;
+fun comptroller_N : N;
+fun compulsion_N : N;
+fun compulsive_A : A;
+fun compulsory_A : A;
+fun compunction_N : N;
+fun computation_N : N;
+fun computational_A : A;
+fun compute_V : V;
+fun compute_V2 : V2;
+fun computer_N : N;
+fun computerize_V2 : V2;
+fun comrade_N : N;
+fun comradely_Adv : Adv;
+fun comradeship_N : N;
+fun con_Adv : Adv;
+fun con_N : N;
+fun con_V2 : V2;
+fun con_man_N : N;
+fun concatenation_N : N;
+fun concave_A : A;
+fun concavity_N : N;
+fun conceal_V2 : V2;
+fun conceale_V : V;
+fun concealment_N : N;
+fun concede_V : V;
+fun concede_V2 : V2;
+fun concede_VS : VS;
+fun conceit_N : N;
+fun conceited_A : A;
+fun conceivable_A : A;
+fun conceive_V : V;
+fun conceive_V2 : V2;
+fun concentrate_N : N;
+fun concentrate_V : V;
+fun concentrate_V2 : V2;
+fun concentrated_A : A;
+fun concentration_N : N;
+fun concentric_A : A;
+fun concept_N : N;
+fun conception_N : N;
+fun conceptual_A : A;
+fun concern_N : N;
+fun concern_V : V;
+fun concern_V2 : V2;
+fun concern_VS : VS;
+fun concerned_A : A;
+fun concert_N : N;
+fun concert_V2 : V2;
+fun concert_hall_N : N;
+fun concerted_A : A;
+fun concertina_N : N;
+fun concerto_N : N;
+fun concession_N : N;
+fun concessionaire_N : N;
+fun concessive_A : A;
+fun conch_N : N;
+fun conchology_N : N;
+fun concierge_N : N;
+fun conciliate_V2 : V2;
+fun conciliation_N : N;
+fun conciliatory_A : A;
+fun concise_A : A;
+fun conciseness_N : N;
+fun conclave_N : N;
+fun conclude_V : V;
+fun conclude_V2 : V2;
+fun conclude_VS : VS;
+fun conclusion_N : N;
+fun conclusive_A : A;
+fun concoct_V2 : V2;
+fun concoction_N : N;
+fun concomitant_A : A;
+fun concomitant_N : N;
+fun concord_N : N;
+fun concordance_N : N;
+fun concordant_A : A;
+fun concordat_N : N;
+fun concourse_N : N;
+fun concrete_A : A;
+fun concrete_N : N;
+fun concrete_V : V;
+fun concrete_V2 : V2;
+fun concretion_N : N;
+fun concubine_N : N;
+fun concupiscence_N : N;
+fun concur_V : V;
+fun concurrence_N : N;
+fun concurrent_A : A;
+fun concuss_V2 : V2;
+fun concussion_N : N;
+fun condemn_V2 : V2;
+fun condemnation_N : N;
+fun condensation_N : N;
+fun condense_V : V;
+fun condense_V2 : V2;
+fun condenser_N : N;
+fun condescend_V : V;
+fun condescending_A : A;
+fun condescension_N : N;
+fun condign_A : A;
+fun condiment_N : N;
+fun condition_N : N;
+fun condition_V2 : V2;
+fun conditional_A : A;
+fun conditioned_A : A;
+fun conditioner_N : N;
+fun condole_V : V;
+fun condolence_N : N;
+fun condominium_N : N;
+fun condonation_N : N;
+fun condone_V2 : V2;
+fun condor_N : N;
+fun conduce_V : V;
+fun conducive_A : A;
+fun conduct_N : N;
+fun conduct_V : V;
+fun conduct_V2 : V2;
+fun conduction_N : N;
+fun conductive_A : A;
+fun conductivity_N : N;
+fun conductor_N : N;
+fun conductress_N : N;
+fun conduit_N : N;
+fun cone_N : N;
+fun cone_V2 : V2;
+fun coney_N : N;
+fun confab_N : N;
+fun confab_V : V;
+fun confabulate_V : V;
+fun confabulation_N : N;
+fun confection_N : N;
+fun confectioner_N : N;
+fun confectionery_N : N;
+fun confederacy_N : N;
+fun confederate_A : A;
+fun confederate_N : N;
+fun confederate_V : V;
+fun confederate_V2 : V2;
+fun confederation_N : N;
+fun confer_V : V;
+fun confer_V2 : V2;
+fun conference_N : N;
+fun conferment_N : N;
+fun confess_V : V;
+fun confess_V2 : V2;
+fun confess_VS : VS;
+fun confessedly_Adv : Adv;
+fun confession_N : N;
+fun confessional_N : N;
+fun confessor_N : N;
+fun confetti_N : N;
+fun confidant_N : N;
+fun confide_V : V;
+fun confide_V2 : V2;
+fun confide_VS : VS;
+fun confidence_N : N;
+fun confident_A : A;
+fun confidential_A : A;
+fun confidentiality_N : N;
+fun confiding_A : A;
+fun configuration_N : N;
+fun configure_V2 : V2;
+fun configured_A : A;
+fun confine_V2 : V2;
+fun confined_A : A;
+fun confinement_N : N;
+fun confirm_V2 : V2;
+fun confirm_VS : VS;
+fun confirmation_N : N;
+fun confirmed_A : A;
+fun confiscate_V2 : V2;
+fun confiscation_N : N;
+fun conflagration_N : N;
+fun conflict_N : N;
+fun conflict_V : V;
+fun conflicting_A : A;
+fun confluence_N : N;
+fun confluent_A : A;
+fun conform_V : V;
+fun conform_V2 : V2;
+fun conformable_A : A;
+fun conformation_N : N;
+fun conformist_N : N;
+fun conformity_N : N;
+fun confound_V2 : V2;
+fun confounded_A : A;
+fun confrere_N : N;
+fun confront_V2 : V2;
+fun confrontation_N : N;
+fun confucian_A : A;
+fun confucian_N : N;
+fun confuse_V2 : V2;
+fun confusedly_Adv : Adv;
+fun confusion_N : N;
+fun confutation_N : N;
+fun confute_V2 : V2;
+fun conge_N : N;
+fun congeal_V : V;
+fun congeal_V2 : V2;
+fun congenial_A : A;
+fun congenital_A : A;
+fun conger_N : N;
+fun conger_eel_N : N;
+fun congested_A : A;
+fun congestion_N : N;
+fun congleton_PN : PN;
+fun conglomerate_A : A;
+fun conglomerate_N : N;
+fun conglomerate_V : V;
+fun conglomerate_V2 : V2;
+fun conglomeration_N : N;
+fun congo_PN : PN;
+fun congolese_A : A;
+fun congolese_N : N;
+fun congratulate_V2 : V2;
+fun congratulation_N : N;
+fun congratulatory_A : A;
+fun congregate_V : V;
+fun congregate_V2 : V2;
+fun congregation_N : N;
+fun congregational_A : A;
+fun congress_N : N;
+fun congressional_A : A;
+fun congressman_N : N;
+fun congresswoman_N : N;
+fun congruent_A : A;
+fun congruous_A : A;
+fun conic_A : A;
+fun conical_A : A;
+fun conifer_N : N;
+fun coniferous_A : A;
+fun conjectural_A : A;
+fun conjecture_N : N;
+fun conjecture_V : V;
+fun conjecture_V2 : V2;
+fun conjoin_V : V;
+fun conjoin_V2 : V2;
+fun conjoint_A : A;
+fun conjugal_A : A;
+fun conjugate_V : V;
+fun conjugate_V2 : V2;
+fun conjugation_N : N;
+fun conjunction_N : N;
+fun conjunctive_A : A;
+fun conjunctive_N : N;
+fun conjuncture_N : N;
+fun conjuration_N : N;
+fun conjure_V : V;
+fun conjure_V2 : V2;
+fun conjurer_N : N;
+fun conjuror_N : N;
+fun conk_N : N;
+fun conk_V : V;
+fun conker_N : N;
+fun connah's_quay_PN : PN;
+fun connaught_PN : PN;
+fun connect_V : V;
+fun connect_V2 : V2;
+fun connecticut_PN : PN;
+fun connection_N : N;
+fun connective_A : A;
+fun connective_N : N;
+fun connexion_N : N;
+fun connie_PN : PN;
+fun conning_A : A;
+fun connivance_N : N;
+fun connive_V : V;
+fun connoisseur_N : N;
+fun connotation_N : N;
+fun connote_V2 : V2;
+fun connubial_A : A;
+fun conquer_V2 : V2;
+fun conqueror_N : N;
+fun conquest_N : N;
+fun conquistador_N : N;
+fun cons_PN : PN;
+fun consanguinity_N : N;
+fun conscience_N : N;
+fun conscience_smitten_A : A;
+fun conscientious_A : A;
+fun conscientiousness_N : N;
+fun conscious_A : A;
+fun consciousness_N : N;
+fun conscript_N : N;
+fun conscript_V2 : V2;
+fun conscription_N : N;
+fun consecrate_V2 : V2;
+fun consecration_N : N;
+fun consecutive_A : A;
+fun consensus_N : N;
+fun consent_N : N;
+fun consent_V : V;
+fun consent_V2V : V2V;
+fun consequence_N : N;
+fun consequent_A : A;
+fun consequential_A : A;
+fun conservancy_N : N;
+fun conservation_N : N;
+fun conservatism_N : N;
+fun conservative_A : A;
+fun conservative_N : N;
+fun conservatoire_N : N;
+fun conservatory_N : N;
+fun conserve_N : N;
+fun conserve_V2 : V2;
+fun consett_PN : PN;
+fun consider_V : V;
+fun consider_V2 : V2;
+fun consider_V2V : V2V;
+fun consider_VA : VA;
+fun consider_VV : VV;
+fun consider_VS : VS;
+fun considerable_A : A;
+fun considerate_A : A;
+fun considerateness_N : N;
+fun consideration_N : N;
+fun consign_V2 : V2;
+fun consignee_N : N;
+fun consigner_N : N;
+fun consignment_N : N;
+fun consignor_N : N;
+fun consist_V : V;
+fun consistence_N : N;
+fun consistency_N : N;
+fun consistent_A : A;
+fun consistory_N : N;
+fun consolable_A : A;
+fun consolation_N : N;
+fun consolatory_A : A;
+fun console_N : N;
+fun console_V2 : V2;
+fun consolidate_V : V;
+fun consolidate_V2 : V2;
+fun consolidation_N : N;
+fun consomme_N : N;
+fun consonance_N : N;
+fun consonant_A : A;
+fun consonant_N : N;
+fun consort_N : N;
+fun consort_V : V;
+fun consortium_N : N;
+fun conspectus_N : N;
+fun conspicuous_A : A;
+fun conspicuousness_N : N;
+fun conspiracy_N : N;
+fun conspirator_N : N;
+fun conspiratorial_A : A;
+fun conspire_V : V;
+fun conspire_V2 : V2;
+fun conspire_V2V : V2V;
+fun constable_N : N;
+fun constabulary_N : N;
+fun constance_PN : PN;
+fun constancy_N : N;
+fun constant_A : A;
+fun constant_N : N;
+fun constellation_N : N;
+fun consternation_N : N;
+fun constipate_V2 : V2;
+fun constipated_A : A;
+fun constipation_N : N;
+fun constituency_N : N;
+fun constituent_A : A;
+fun constituent_N : N;
+fun constitute_V2 : V2;
+fun constitution_N : N;
+fun constitutional_A : A;
+fun constitutional_N : N;
+fun constitutionalism_N : N;
+fun constitutionalist_N : N;
+fun constitutionalize_V2 : V2;
+fun constitutive_A : A;
+fun constrain_V2 : V2;
+fun constrained_A : A;
+fun constraint_N : N;
+fun constrict_V2 : V2;
+fun constriction_N : N;
+fun construct_V2 : V2;
+fun construction_N : N;
+fun constructional_A : A;
+fun constructive_A : A;
+fun constructor_N : N;
+fun construe_V : V;
+fun construe_V2 : V2;
+fun construe_V2V : V2V;
+fun consubstantiation_N : N;
+fun consul_N : N;
+fun consular_A : A;
+fun consulate_N : N;
+fun consulship_N : N;
+fun consult_V : V;
+fun consult_V2 : V2;
+fun consultant_N : N;
+fun consultation_N : N;
+fun consultative_A : A;
+fun consume_V : V;
+fun consume_V2 : V2;
+fun consumer_N : N;
+fun consuming_A : A;
+fun consummate_A : A;
+fun consummate_V2 : V2;
+fun consummation_N : N;
+fun consumption_N : N;
+fun consumptive_A : A;
+fun consumptive_N : N;
+fun cont_PN : PN;
+fun contact_N : N;
+fun contact_V2 : V2;
+fun contagion_N : N;
+fun contagious_A : A;
+fun contain_V2 : V2;
+fun container_N : N;
+fun containment_N : N;
+fun contaminant_N : N;
+fun contaminate_V2 : V2;
+fun contamination_N : N;
+fun contemn_V2 : V2;
+fun contemplate_V : V;
+fun contemplate_V2 : V2;
+fun contemplate_VS : VS;
+fun contemplation_N : N;
+fun contemplative_A : A;
+fun contemporaneous_A : A;
+fun contemporary_A : A;
+fun contemporary_N : N;
+fun contempt_N : N;
+fun contemptible_A : A;
+fun contemptuous_A : A;
+fun contend_V : V;
+fun contend_VS : VS;
+fun contender_N : N;
+fun content_A : A;
+fun content_N : N;
+fun content_V2 : V2;
+fun contented_A : A;
+fun contention_N : N;
+fun contentious_A : A;
+fun contentment_N : N;
+fun conterminous_A : A;
+fun contest_N : N;
+fun contest_V : V;
+fun contest_V2 : V2;
+fun contestant_N : N;
+fun context_N : N;
+fun contextual_A : A;
+fun contiguity_N : N;
+fun contiguous_A : A;
+fun continence_N : N;
+fun continent_A : A;
+fun continent_N : N;
+fun continental_A : A;
+fun contingency_N : N;
+fun contingent_A : A;
+fun contingent_N : N;
+fun continual_A : A;
+fun continuance_N : N;
+fun continuation_N : N;
+fun continue_V : V;
+fun continue_V2 : V2;
+fun continue_VV : VV;
+fun continue_VS : VS;
+fun continuity_N : N;
+fun continuous_A : A;
+fun contort_V2 : V2;
+fun contortion_N : N;
+fun contortionist_N : N;
+fun contour_N : N;
+fun contour_V2 : V2;
+fun contraband_N : N;
+fun contrabass_N : N;
+fun contraception_N : N;
+fun contraceptive_A : A;
+fun contraceptive_N : N;
+fun contract_N : N;
+fun contract_V : V;
+fun contract_V2 : V2;
+fun contract_V2V : V2V;
+fun contractible_A : A;
+fun contractile_A : A;
+fun contraction_N : N;
+fun contractor_N : N;
+fun contractual_A : A;
+fun contradict_V2 : V2;
+fun contradiction_N : N;
+fun contradictory_A : A;
+fun contradistinction_N : N;
+fun contradistinguish_V2 : V2;
+fun contralto_N : N;
+fun contraption_N : N;
+fun contrapuntal_A : A;
+fun contrariety_N : N;
+fun contrariness_N : N;
+fun contrariwise_Adv : Adv;
+fun contrary_A : A;
+fun contrary_N : N;
+fun contrast_N : N;
+fun contrast_V : V;
+fun contrast_V2 : V2;
+fun contrastingly_Adv : Adv;
+fun contravene_V2 : V2;
+fun contravention_N : N;
+fun contretemps_N : N;
+fun contribute_V : V;
+fun contribute_V2 : V2;
+fun contribute_V2V : V2V;
+fun contribution_N : N;
+fun contributor_N : N;
+fun contributory_A : A;
+fun contrite_A : A;
+fun contrition_N : N;
+fun contrivance_N : N;
+fun contrive_V : V;
+fun contrive_V2 : V2;
+fun contriver_N : N;
+fun control_N : N;
+fun control_V : V;
+fun control_V2 : V2;
+fun controllable_A : A;
+fun controller_N : N;
+fun controversial_A : A;
+fun controversialist_N : N;
+fun controversy_N : N;
+fun controvert_V2 : V2;
+fun contumacious_A : A;
+fun contumacy_N : N;
+fun contumelious_A : A;
+fun contumely_N : N;
+fun contuse_V2 : V2;
+fun contusion_N : N;
+fun conundrum_N : N;
+fun conurbation_N : N;
+fun convalesce_V : V;
+fun convalescence_N : N;
+fun convalescent_A : A;
+fun convalescent_N : N;
+fun convection_N : N;
+fun convector_N : N;
+fun convene_V : V;
+fun convene_V2 : V2;
+fun convener_N : N;
+fun convenience_N : N;
+fun convenient_A : A;
+fun convent_N : N;
+fun conventicle_N : N;
+fun convention_N : N;
+fun conventional_A : A;
+fun conventionality_N : N;
+fun converge_V : V;
+fun convergence_N : N;
+fun convergent_A : A;
+fun conversant_A : A;
+fun conversation_N : N;
+fun conversational_A : A;
+fun conversationalist_N : N;
+fun converse_A : A;
+fun converse_N : N;
+fun converse_V : V;
+fun conversion_N : N;
+fun convert_N : N;
+fun convert_V : V;
+fun convert_V2 : V2;
+fun converted_A : A;
+fun converter_N : N;
+fun convertibility_N : N;
+fun convertible_A : A;
+fun convertible_N : N;
+fun convex_A : A;
+fun convexity_N : N;
+fun convey_V2 : V2;
+fun conveyance_N : N;
+fun conveyancer_N : N;
+fun conveyer_N : N;
+fun conveyer_belt_N : N;
+fun conveyor_N : N;
+fun convict_N : N;
+fun convict_V2 : V2;
+fun conviction_N : N;
+fun convince_V2 : V2;
+fun convince_V2V : V2V;
+fun convincible_A : A;
+fun convincing_A : A;
+fun convivial_A : A;
+fun conviviality_N : N;
+fun convocation_N : N;
+fun convoke_V2 : V2;
+fun convoluted_A : A;
+fun convolution_N : N;
+fun convolvulus_N : N;
+fun convoy_N : N;
+fun convoy_V2 : V2;
+fun convulse_V2 : V2;
+fun convulsion_N : N;
+fun convulsive_A : A;
+fun conwy_PN : PN;
+fun cony_N : N;
+fun coo_N : N;
+fun coo_V : V;
+fun coo_V2 : V2;
+fun cook_N : N;
+fun cook_V : V;
+fun cook_V2 : V2;
+fun cookbook_N : N;
+fun cooker_N : N;
+fun cookery_N : N;
+fun cookery_book_N : N;
+fun cookham_PN : PN;
+fun cookhouse_N : N;
+fun cookie_N : N;
+fun cooking_N : N;
+fun cooky_N : N;
+fun cool_A : A;
+fun cool_N : N;
+fun cool_V : V;
+fun cool_V2 : V2;
+fun cool_headed_A : A;
+fun coolant_N : N;
+fun cooler_N : N;
+fun coolie_N : N;
+fun cooling_tower_N : N;
+fun coolness_N : N;
+fun coon_N : N;
+fun coop_N : N;
+fun coop_V2 : V2;
+fun cooper_N : N;
+fun cooperate_V : V;
+fun cooperation_N : N;
+fun cooperative_A : A;
+fun cooperative_N : N;
+fun cooperator_N : N;
+fun coordinate_A : A;
+fun coordinate_N : N;
+fun coordinate_V : V;
+fun coordinate_V2 : V2;
+fun coordination_N : N;
+fun coordinator_N : N;
+fun coot_N : N;
+fun cop_N : N;
+fun cop_V : V;
+fun cop_V2 : V2;
+fun cop_out_N : N;
+fun copartner_N : N;
+fun copartnership_N : N;
+fun cope_N : N;
+fun cope_V : V;
+fun copeck_N : N;
+fun copenhagen_PN : PN;
+fun copernican_A : A;
+fun coping_N : N;
+fun coping_stone_N : N;
+fun copious_A : A;
+fun copper_N : N;
+fun copper_V2 : V2;
+fun copper_bottom_V2 : V2;
+fun copper_bottomed_A : A;
+fun copperhead_N : N;
+fun copperplate_N : N;
+fun coppersmith_N : N;
+fun coppice_N : N;
+fun coppull_PN : PN;
+fun copra_N : N;
+fun copse_N : N;
+fun copt_A : A;
+fun copt_N : N;
+fun coptic_N : N;
+fun copula_N : N;
+fun copulate_V : V;
+fun copulation_N : N;
+fun copulative_A : A;
+fun copulative_N : N;
+fun copy_N : N;
+fun copy_V : V;
+fun copy_V2 : V2;
+fun copybook_N : N;
+fun copycat_N : N;
+fun copyhold_N : N;
+fun copyholder_N : N;
+fun copyist_N : N;
+fun copyright_N : N;
+fun copyright_V2 : V2;
+fun copywriter_N : N;
+fun coquetry_N : N;
+fun coquette_N : N;
+fun coquettish_A : A;
+fun cor_anglais_N : N;
+fun coracle_N : N;
+fun coral_A : A;
+fun coral_N : N;
+fun coral_reef_N : N;
+fun corbel_N : N;
+fun corby_PN : PN;
+fun cord_N : N;
+fun cord_V2 : V2;
+fun cordage_N : N;
+fun cordial_A : A;
+fun cordial_N : N;
+fun cordiality_N : N;
+fun cordite_N : N;
+fun cordoba_PN : PN;
+fun cordon_N : N;
+fun cordon_V2 : V2;
+fun cordon_bleu_A : A;
+fun corduroy_N : N;
+fun core_N : N;
+fun core_V2 : V2;
+fun coreligionist_N : N;
+fun corgi_N : N;
+fun corinthian_A : A;
+fun corinthian_N : N;
+fun cork_N : N;
+fun cork_PN : PN;
+fun cork_V2 : V2;
+fun corkage_N : N;
+fun corked_A : A;
+fun corker_N : N;
+fun corkscrew_N : N;
+fun corm_N : N;
+fun cormorant_N : N;
+fun corn_N : N;
+fun corn_V2 : V2;
+fun corn_exchange_N : N;
+fun corncob_N : N;
+fun corncrake_N : N;
+fun cornea_N : N;
+fun cornelian_N : N;
+fun corner_N : N;
+fun corner_V : V;
+fun corner_V2 : V2;
+fun corner_kick_N : N;
+fun cornered_A : A;
+fun cornerstone_N : N;
+fun cornet_N : N;
+fun cornflake_N : N;
+fun cornflour_N : N;
+fun cornflower_N : N;
+fun cornice_N : N;
+fun cornpone_N : N;
+fun cornstarch_N : N;
+fun cornucopia_N : N;
+fun cornwall_PN : PN;
+fun corny_A : A;
+fun corolla_N : N;
+fun corollary_N : N;
+fun corona_N : N;
+fun coronary_A : A;
+fun coronary_N : N;
+fun coronation_N : N;
+fun coroner_N : N;
+fun coronet_N : N;
+fun corp_PN : PN;
+fun corporal_A : A;
+fun corporal_N : N;
+fun corporate_A : A;
+fun corporation_N : N;
+fun corporeal_A : A;
+fun corps_N : N;
+fun corps_de_ballet_N : N;
+fun corps_diplomatique_N : N;
+fun corpse_N : N;
+fun corpulence_N : N;
+fun corpulent_A : A;
+fun corpus_N : N;
+fun corpuscle_N : N;
+fun corral_N : N;
+fun corral_V2 : V2;
+fun correct_A : A;
+fun correct_V : V;
+fun correct_V2 : V2;
+fun correct_VS : VS;
+fun correction_N : N;
+fun correctitude_N : N;
+fun corrective_A : A;
+fun corrective_N : N;
+fun correctness_N : N;
+fun correlate_V : V;
+fun correlate_V2 : V2;
+fun correlation_N : N;
+fun correlative_A : A;
+fun correlative_N : N;
+fun correspond_V : V;
+fun correspondence_N : N;
+fun correspondent_N : N;
+fun corresponding_A : A;
+fun corridor_N : N;
+fun corrie_N : N;
+fun corrigendum_N : N;
+fun corrigible_A : A;
+fun corroborate_V2 : V2;
+fun corroboration_N : N;
+fun corroborative_A : A;
+fun corrode_V : V;
+fun corrode_V2 : V2;
+fun corrosion_N : N;
+fun corrosive_A : A;
+fun corrosive_N : N;
+fun corrugate_V : V;
+fun corrugate_V2 : V2;
+fun corrugation_N : N;
+fun corrupt_A : A;
+fun corrupt_V : V;
+fun corrupt_V2 : V2;
+fun corruptibility_N : N;
+fun corruptible_A : A;
+fun corruption_N : N;
+fun corruptness_N : N;
+fun corsage_N : N;
+fun corsair_N : N;
+fun corse_N : N;
+fun corselet_N : N;
+fun corset_N : N;
+fun corsham_PN : PN;
+fun corslet_N : N;
+fun cortege_1_N : N;
+fun cortege_2_N : N;
+fun cortex_N : N;
+fun cortical_A : A;
+fun cortisone_N : N;
+fun corundum_N : N;
+fun corunna_PN : PN;
+fun coruscate_V : V;
+fun coruscation_N : N;
+fun corvee_N : N;
+fun corvette_N : N;
+fun cos_N : N;
+fun cosenza_PN : PN;
+fun cosh_N : N;
+fun cosh_V2 : V2;
+fun cosher_A : A;
+fun cosignatory_A : A;
+fun cosignatory_N : N;
+fun cosily_Adv : Adv;
+fun cosine_N : N;
+fun cosiness_N : N;
+fun cosmetic_A : A;
+fun cosmetic_N : N;
+fun cosmetician_N : N;
+fun cosmic_A : A;
+fun cosmogony_N : N;
+fun cosmonaut_N : N;
+fun cosmopolitan_A : A;
+fun cosmopolitan_N : N;
+fun cosmos_N : N;
+fun cosset_V2 : V2;
+fun cost_N : N;
+fun cost_V : V;
+fun cost_V2 : V2;
+fun costa_rica_PN : PN;
+fun costa_rican_A : A;
+fun costa_rican_N : N;
+fun costermonger_N : N;
+fun costing_N : N;
+fun costive_A : A;
+fun costliness_N : N;
+fun costly_A : A;
+fun costum_V2 : V2;
+fun costume_N : N;
+fun costumier_N : N;
+fun cosy_A : A;
+fun cosy_N : N;
+fun cot_N : N;
+fun cote_N : N;
+fun cotenant_N : N;
+fun coterie_N : N;
+fun coterminous_A : A;
+fun cotilion_N : N;
+fun cotillion_N : N;
+fun cottage_N : N;
+fun cottar_N : N;
+fun cotter_N : N;
+fun cotton_N : N;
+fun cotton_V : V;
+fun cotton_cake_N : N;
+fun cotton_plant_N : N;
+fun cotton_wool_N : N;
+fun cottontail_N : N;
+fun cotyledon_N : N;
+fun couch_N : N;
+fun couch_V : V;
+fun couch_V2 : V2;
+fun couch_grass_N : N;
+fun couchant_A : A;
+fun couchette_N : N;
+fun cougar_N : N;
+fun cough_N : N;
+fun cough_V : V;
+fun cough_V2 : V2;
+fun coulter_N : N;
+fun council_N : N;
+fun council_board_N : N;
+fun council_chamber_N : N;
+fun councillor_N : N;
+fun counsel_N : N;
+fun counsel_V2 : V2;
+fun counsellor_N : N;
+fun count_N : N;
+fun count_V : V;
+fun count_V2 : V2;
+fun countable_A : A;
+fun countdown_N : N;
+fun countenance_N : N;
+fun countenance_V2 : V2;
+fun counter_Adv : Adv;
+fun counter_N : N;
+fun counter_V : V;
+fun counter_V2 : V2;
+fun counter_VS : VS;
+fun counter_example_N : N;
+fun counter_revolution_N : N;
+fun counter_revolutionary_A : A;
+fun counter_revolutionary_N : N;
+fun counteract_V2 : V2;
+fun counteraction_N : N;
+fun counterattack_N : N;
+fun counterattack_V : V;
+fun counterattack_V2 : V2;
+fun counterattraction_N : N;
+fun counterbalance_N : N;
+fun counterbalance_V2 : V2;
+fun counterblast_N : N;
+fun counterclaim_N : N;
+fun counterclockwise_Adv : Adv;
+fun counterespionage_N : N;
+fun counterfeit_A : A;
+fun counterfeit_N : N;
+fun counterfeit_V2 : V2;
+fun counterfeiter_N : N;
+fun counterfoil_N : N;
+fun counterintelligence_N : N;
+fun counterirritant_N : N;
+fun countermand_V2 : V2;
+fun countermine_N : N;
+fun countermine_V : V;
+fun countermine_V2 : V2;
+fun counteroffer_N : N;
+fun counterpane_N : N;
+fun counterpart_N : N;
+fun counterplot_N : N;
+fun counterplot_V : V;
+fun counterplot_V2 : V2;
+fun counterpoint_N : N;
+fun counterpoise_N : N;
+fun counterpoise_V2 : V2;
+fun countersign_N : N;
+fun countersign_V2 : V2;
+fun countersink_V2 : V2;
+fun countersuing_V2 : V2;
+fun countertenor_N : N;
+fun countervail_V : V;
+fun countervail_V2 : V2;
+fun countess_N : N;
+fun counting_house_N : N;
+fun countless_A : A;
+fun countrified_A : A;
+fun country_N : N;
+fun country_house_N : N;
+fun country_seat_N : N;
+fun countryman_N : N;
+fun countryside_N : N;
+fun countrywoman_N : N;
+fun county_N : N;
+fun coup_N : N;
+fun coup_d'etat_N : N;
+fun coup_de_grace_N : N;
+fun coupe_N : N;
+fun couple_N : N;
+fun couple_V : V;
+fun couple_V2 : V2;
+fun couplet_N : N;
+fun coupling_N : N;
+fun coupon_N : N;
+fun courage_N : N;
+fun courageous_A : A;
+fun courgette_N : N;
+fun courier_N : N;
+fun course_N : N;
+fun course_V : V;
+fun course_V2 : V2;
+fun courser_N : N;
+fun coursing_N : N;
+fun court_N : N;
+fun court_V : V;
+fun court_V2 : V2;
+fun court_card_N : N;
+fun court_martial_N : N;
+fun court_martial_V2 : V2;
+fun courteous_A : A;
+fun courtesan_N : N;
+fun courtesy_N : N;
+fun courtier_N : N;
+fun courtliness_N : N;
+fun courtly_A : A;
+fun courtroom_N : N;
+fun courtship_N : N;
+fun courtyard_N : N;
+fun cousin_N : N;
+fun cousinly_A : A;
+fun cove_N : N;
+fun coven_N : N;
+fun covenant_N : N;
+fun covenant_V : V;
+fun covenant_V2 : V2;
+fun coventry_PN : PN;
+fun cover_N : N;
+fun cover_V2 : V2;
+fun cover_VS : VS;
+fun cover_up_N : N;
+fun coverage_N : N;
+fun covering_A : A;
+fun covering_N : N;
+fun coverlet_N : N;
+fun covert_A : A;
+fun covert_N : N;
+fun covet_V2 : V2;
+fun covetous_A : A;
+fun covetousness_N : N;
+fun covey_N : N;
+fun cow_N : N;
+fun cow_V2 : V2;
+fun coward_N : N;
+fun cowardice_N : N;
+fun cowardly_A : A;
+fun cowbell_N : N;
+fun cowboy_N : N;
+fun cowcatcher_N : N;
+fun cowdenbeath_PN : PN;
+fun cower_V : V;
+fun cowes_PN : PN;
+fun cowhand_N : N;
+fun cowherd_N : N;
+fun cowhide_N : N;
+fun cowhouse_N : N;
+fun cowl_N : N;
+fun cowling_N : N;
+fun cowman_N : N;
+fun cowpox_N : N;
+fun cowrie_N : N;
+fun cowshed_N : N;
+fun cowskin_N : N;
+fun cowslip_N : N;
+fun cox_N : N;
+fun cox_V : V;
+fun cox_V2 : V2;
+fun coxcomb_N : N;
+fun coxswain_N : N;
+fun coy_A : A;
+fun coyness_N : N;
+fun coyote_N : N;
+fun coypu_N : N;
+fun cozen_V2 : V2;
+fun cozy_A : A;
+fun cp_PN : PN;
+fun cpl_PN : PN;
+fun crab_N : N;
+fun crab_V : V;
+fun crab_V2 : V2;
+fun crab_apple_N : N;
+fun crabbed_A : A;
+fun crack_N : N;
+fun crack_V : V;
+fun crack_V2 : V2;
+fun crack_down_N : N;
+fun crack_up_N : N;
+fun cracker_N : N;
+fun crackers_A : A;
+fun crackle_N : N;
+fun crackle_V : V;
+fun crackle_china_N : N;
+fun crackleware_N : N;
+fun crackling_N : N;
+fun crackpot_N : N;
+fun cracksman_N : N;
+fun cradle_N : N;
+fun cradle_V2 : V2;
+fun craft_N : N;
+fun craft_V2 : V2;
+fun craftily_Adv : Adv;
+fun craftiness_N : N;
+fun craftsman_N : N;
+fun craftsmanship_N : N;
+fun crafty_A : A;
+fun crag_N : N;
+fun cragged_A : A;
+fun craggy_A : A;
+fun cragsman_N : N;
+fun crake_N : N;
+fun cram_V : V;
+fun cram_V2 : V2;
+fun cram_full_A : A;
+fun cram_full_Adv : Adv;
+fun cramlington_PN : PN;
+fun crammer_N : N;
+fun cramp_N : N;
+fun cramp_V2 : V2;
+fun cramp_iron_N : N;
+fun cramped_A : A;
+fun crampon_N : N;
+fun cranberry_N : N;
+fun crane_N : N;
+fun crane_V : V;
+fun crane_V2 : V2;
+fun crane_fly_N : N;
+fun cranial_A : A;
+fun cranium_N : N;
+fun crank_N : N;
+fun crank_V2 : V2;
+fun crankshaft_N : N;
+fun cranky_A : A;
+fun crannied_A : A;
+fun cranny_N : N;
+fun crap_N : N;
+fun crap_V : V;
+fun crap_shooting_N : N;
+fun crape_N : N;
+fun craps_N : N;
+fun crash_Adv : Adv;
+fun crash_N : N;
+fun crash_V : V;
+fun crash_V2 : V2;
+fun crash_dive_N : N;
+fun crash_dive_V : V;
+fun crash_helmet_N : N;
+fun crash_land_V : V;
+fun crash_land_V2 : V2;
+fun crash_landing_N : N;
+fun crass_A : A;
+fun crate_N : N;
+fun crate_V2 : V2;
+fun crater_N : N;
+fun crater_V : V;
+fun cravat_N : N;
+fun crave_V : V;
+fun crave_V2 : V2;
+fun craven_A : A;
+fun craven_N : N;
+fun craving_N : N;
+fun crawfish_N : N;
+fun crawl_N : N;
+fun crawl_V : V;
+fun crawler_N : N;
+fun crawley_PN : PN;
+fun crayfish_N : N;
+fun crayon_N : N;
+fun crayon_V2 : V2;
+fun craze_N : N;
+fun crazed_A : A;
+fun crazily_Adv : Adv;
+fun craziness_N : N;
+fun crazy_A : A;
+fun creak_N : N;
+fun creak_V : V;
+fun creakily_Adv : Adv;
+fun creaky_A : A;
+fun cream_N : N;
+fun cream_V2 : V2;
+fun creamery_N : N;
+fun creamy_A : A;
+fun crease_N : N;
+fun crease_V : V;
+fun crease_V2 : V2;
+fun create_V : V;
+fun create_V2 : V2;
+fun create_VV : VV;
+fun creation_N : N;
+fun creative_A : A;
+fun creativeness_N : N;
+fun creator_N : N;
+fun creature_N : N;
+fun creche_N : N;
+fun credence_N : N;
+fun credibility_N : N;
+fun credible_A : A;
+fun credit_N : N;
+fun credit_V2 : V2;
+fun credit_side_N : N;
+fun credit_worthiness_N : N;
+fun credit_worthy_A : A;
+fun creditable_A : A;
+fun creditor_N : N;
+fun credo_N : N;
+fun credulity_N : N;
+fun credulous_A : A;
+fun creed_N : N;
+fun creek_N : N;
+fun creel_N : N;
+fun creep_N : N;
+fun creep_V : V;
+fun creeper_N : N;
+fun creepy_A : A;
+fun cremate_V2 : V2;
+fun cremation_N : N;
+fun crematorium_N : N;
+fun crematory_N : N;
+fun creme_de_menthe_N : N;
+fun crenellated_A : A;
+fun creole_A : A;
+fun creole_N : N;
+fun creosote_N : N;
+fun crepe_1_N : N;
+fun crepe_2_N : N;
+fun crepitate_V : V;
+fun crepitation_N : N;
+fun crepuscular_A : A;
+fun cres_PN : PN;
+fun crescendo_N : N;
+fun crescent_N : N;
+fun cress_N : N;
+fun crest_N : N;
+fun crest_V : V;
+fun crest_V2 : V2;
+fun crested_A : A;
+fun crestfallen_A : A;
+fun creswell_PN : PN;
+fun cretaceous_A : A;
+fun cretin_N : N;
+fun cretinous_A : A;
+fun cretonne_N : N;
+fun crevasse_N : N;
+fun crevice_N : N;
+fun crew_N : N;
+fun crew_V : V;
+fun crew_cut_N : N;
+fun crew_neck_N : N;
+fun crewe_PN : PN;
+fun crib_N : N;
+fun crib_V : V;
+fun crib_V2 : V2;
+fun cribbage_N : N;
+fun cribbage_board_N : N;
+fun crick_N : N;
+fun crick_V2 : V2;
+fun cricket_N : N;
+fun cricketer_N : N;
+fun crieff_PN : PN;
+fun crier_N : N;
+fun crime_N : N;
+fun crime_V2 : V2;
+fun criminal_A : A;
+fun criminal_N : N;
+fun criminalize_V2 : V2;
+fun criminology_N : N;
+fun crimp_V2 : V2;
+fun crimson_A : A;
+fun crimson_N : N;
+fun crimson_V : V;
+fun crimson_V2 : V2;
+fun cringe_V : V;
+fun crinkle_N : N;
+fun crinkle_V : V;
+fun crinkle_V2 : V2;
+fun crinkly_A : A;
+fun crinoline_N : N;
+fun cripple_N : N;
+fun cripple_V2 : V2;
+fun crisis_N : N;
+fun crisp_A : A;
+fun crisp_N : N;
+fun crisp_V : V;
+fun crisp_V2 : V2;
+fun crispness_N : N;
+fun criss_cross_V2 : V2;
+fun crisscross_A : A;
+fun crisscross_Adv : Adv;
+fun crisscross_V : V;
+fun crisscross_V2 : V2;
+fun criterion_N : N;
+fun critic_N : N;
+fun critical_A : A;
+fun criticism_N : N;
+fun criticize_V : V;
+fun criticize_V2 : V2;
+fun critique_N : N;
+fun croak_N : N;
+fun croak_V : V;
+fun croak_V2 : V2;
+fun crochet_N : N;
+fun crochet_V : V;
+fun crochet_V2 : V2;
+fun crochet_hook_N : N;
+fun crock_N : N;
+fun crock_V : V;
+fun crock_V2 : V2;
+fun crockery_N : N;
+fun crocodile_N : N;
+fun crocus_N : N;
+fun croesus_PN : PN;
+fun croft_N : N;
+fun crofter_N : N;
+fun cromer_PN : PN;
+fun cromlech_N : N;
+fun crone_N : N;
+fun crony_N : N;
+fun crook_N : N;
+fun crook_PN : PN;
+fun crook_V : V;
+fun crook_V2 : V2;
+fun crook_back_A : A;
+fun crook_backed_A : A;
+fun crooked_A : A;
+fun crookedness_N : N;
+fun croon_V : V;
+fun croon_V2 : V2;
+fun crooner_N : N;
+fun crop_N : N;
+fun crop_V : V;
+fun crop_V2 : V2;
+fun crop_dusting_N : N;
+fun cropper_N : N;
+fun croquet_N : N;
+fun croquette_N : N;
+fun crore_N : N;
+fun crosby_PN : PN;
+fun crosier_N : N;
+fun cross_A : A;
+fun cross_N : N;
+fun cross_V : V;
+fun cross_V2 : V2;
+fun cross_bench_N : N;
+fun cross_bencher_N : N;
+fun cross_division_N : N;
+fun cross_examination_N : N;
+fun cross_examine_V2 : V2;
+fun cross_examiner_N : N;
+fun cross_fertilization_N : N;
+fun cross_fertilize_V2 : V2;
+fun cross_grained_A : A;
+fun cross_heading_N : N;
+fun cross_index_N : N;
+fun cross_index_V2 : V2;
+fun cross_legged_Adv : Adv;
+fun cross_question_V2 : V2;
+fun cross_reference_N : N;
+fun cross_section_N : N;
+fun cross_stitch_N : N;
+fun crossbar_N : N;
+fun crossbeam_N : N;
+fun crossbow_N : N;
+fun crossbred_A : A;
+fun crossbreed_N : N;
+fun crossbreed_V2 : V2;
+fun crosscheck_N : N;
+fun crosscheck_V : V;
+fun crosscheck_V2 : V2;
+fun crosscountry_A : A;
+fun crosscountry_Adv : Adv;
+fun crosscurrent_N : N;
+fun crosscut_A : A;
+fun crosscut_N : N;
+fun crosse_N : N;
+fun crosseyed_A : A;
+fun crossfire_N : N;
+fun crossing_N : N;
+fun crossness_N : N;
+fun crosspatch_N : N;
+fun crosspiece_N : N;
+fun crossroad_N : N;
+fun crosstalk_N : N;
+fun crosswalk_N : N;
+fun crosswind_N : N;
+fun crosswise_Adv : Adv;
+fun crossword_N : N;
+fun crotch_N : N;
+fun crotchet_N : N;
+fun crotchety_A : A;
+fun crouch_N : N;
+fun crouch_V : V;
+fun crouch_V2 : V2;
+fun croup_N : N;
+fun croupier_N : N;
+fun crow's_nest_N : N;
+fun crow_N : N;
+fun crow_V : V;
+fun crow_VS : VS;
+fun crowbar_N : N;
+fun crowborough_PN : PN;
+fun crowd_N : N;
+fun crowd_V : V;
+fun crowd_V2 : V2;
+fun crowded_A : A;
+fun crown_N : N;
+fun crown_V2 : V2;
+fun crown_land_N : N;
+fun crowning_A : A;
+fun crowthorne_PN : PN;
+fun croydon_PN : PN;
+fun crozier_N : N;
+fun crucial_A : A;
+fun crucible_N : N;
+fun crucifix_N : N;
+fun crucifixion_N : N;
+fun cruciform_A : A;
+fun crucify_V2 : V2;
+fun crude_A : A;
+fun crudeness_N : N;
+fun crudity_N : N;
+fun cruel_A : A;
+fun cruelty_N : N;
+fun cruet_N : N;
+fun cruet_stand_N : N;
+fun cruise_N : N;
+fun cruise_V : V;
+fun cruiser_N : N;
+fun crumb_N : N;
+fun crumble_V : V;
+fun crumble_V2 : V2;
+fun crumbly_A : A;
+fun crumpet_N : N;
+fun crumple_V : V;
+fun crumple_V2 : V2;
+fun crunch_N : N;
+fun crunch_V : V;
+fun crunch_V2 : V2;
+fun crupper_N : N;
+fun crusade_N : N;
+fun crusade_V : V;
+fun crusader_N : N;
+fun cruse_N : N;
+fun crush_N : N;
+fun crush_V : V;
+fun crush_V2 : V2;
+fun crushing_A : A;
+fun crust_N : N;
+fun crust_V : V;
+fun crust_V2 : V2;
+fun crustacean_N : N;
+fun crusted_A : A;
+fun crusty_A : A;
+fun crutch_N : N;
+fun crux_N : N;
+fun cruzeiro_N : N;
+fun cry_N : N;
+fun cry_V : V;
+fun cry_V2 : V2;
+fun crybaby_N : N;
+fun crying_A : A;
+fun crypt_N : N;
+fun cryptic_A : A;
+fun cryptically_Adv : Adv;
+fun cryptogram_N : N;
+fun crystal_N : N;
+fun crystal_gazing_N : N;
+fun crystalline_A : A;
+fun crystallization_N : N;
+fun crystallize_V : V;
+fun crystallize_V2 : V2;
+fun crystallography_N : N;
+fun cub_N : N;
+fun cuba_PN : PN;
+fun cuban_A : A;
+fun cuban_N : N;
+fun cubbyhole_N : N;
+fun cube_N : N;
+fun cube_V2 : V2;
+fun cubic_A : A;
+fun cubical_A : A;
+fun cubicle_N : N;
+fun cubism_N : N;
+fun cubist_N : N;
+fun cubit_N : N;
+fun cuckold_N : N;
+fun cuckold_V2 : V2;
+fun cuckoo_N : N;
+fun cuckoo_clock_N : N;
+fun cucumber_N : N;
+fun cud_N : N;
+fun cuddle_N : N;
+fun cuddle_V : V;
+fun cuddle_V2 : V2;
+fun cuddlesome_A : A;
+fun cuddly_A : A;
+fun cudgel_N : N;
+fun cudgel_V2 : V2;
+fun cudworth_PN : PN;
+fun cue_N : N;
+fun cuff_N : N;
+fun cuff_V2 : V2;
+fun cuffley_PN : PN;
+fun cuirass_N : N;
+fun cuirassier_N : N;
+fun cuisine_N : N;
+fun cul_de_sac_N : N;
+fun culcheth_PN : PN;
+fun culinary_A : A;
+fun cull_N : N;
+fun cull_V2 : V2;
+fun cullender_N : N;
+fun culminate_V : V;
+fun culminate_V2 : V2;
+fun culmination_N : N;
+fun culpability_N : N;
+fun culpable_A : A;
+fun culprit_N : N;
+fun cult_N : N;
+fun cultivable_A : A;
+fun cultivate_V2 : V2;
+fun cultivated_A : A;
+fun cultivation_N : N;
+fun cultivator_N : N;
+fun cultural_A : A;
+fun culture_N : N;
+fun cultured_A : A;
+fun culvert_N : N;
+fun cumber_V2 : V2;
+fun cumberland_PN : PN;
+fun cumbernauld_PN : PN;
+fun cumbersome_A : A;
+fun cumbria_PN : PN;
+fun cumbrous_A : A;
+fun cummerbund_N : N;
+fun cumnock_PN : PN;
+fun cumulative_A : A;
+fun cumulus_N : N;
+fun cuneiform_A : A;
+fun cunning_A : A;
+fun cunning_N : N;
+fun cunt_N : N;
+fun cup_N : N;
+fun cup_V2 : V2;
+fun cup_bearer_N : N;
+fun cup_final_N : N;
+fun cup_tie_N : N;
+fun cupar_PN : PN;
+fun cupboard_N : N;
+fun cupboard_love_N : N;
+fun cupful_N : N;
+fun cupid_PN : PN;
+fun cupidity_N : N;
+fun cupola_N : N;
+fun cuppa_N : N;
+fun cupping_N : N;
+fun cupric_A : A;
+fun cupro_nickel_N : N;
+fun cur_N : N;
+fun curability_N : N;
+fun curable_A : A;
+fun curacao_N : N;
+fun curacoa_N : N;
+fun curacy_N : N;
+fun curate_N : N;
+fun curative_A : A;
+fun curator_N : N;
+fun curb_N : N;
+fun curb_V2 : V2;
+fun curd_N : N;
+fun curdle_V : V;
+fun curdle_V2 : V2;
+fun cure_1_N : N;
+fun cure_2_N : N;
+fun cure_V : V;
+fun cure_V2 : V2;
+fun cure_all_N : N;
+fun curfew_N : N;
+fun curio_N : N;
+fun curiosity_N : N;
+fun curious_A : A;
+fun curitiba_PN : PN;
+fun curl_N : N;
+fun curl_V : V;
+fun curl_V2 : V2;
+fun curler_N : N;
+fun curlew_N : N;
+fun curling_N : N;
+fun curly_A : A;
+fun curmudgeon_N : N;
+fun currant_N : N;
+fun currency_N : N;
+fun current_A : A;
+fun current_N : N;
+fun curriculum_N : N;
+fun curriculum_vitae_N : N;
+fun currie_PN : PN;
+fun currish_A : A;
+fun curry_N : N;
+fun curry_V2 : V2;
+fun curry_powder_N : N;
+fun curse_N : N;
+fun curse_V : V;
+fun curse_V2 : V2;
+fun cursed_A : A;
+fun cursive_A : A;
+fun cursory_A : A;
+fun curst_A : A;
+fun curt_A : A;
+fun curtail_V2 : V2;
+fun curtailment_N : N;
+fun curtain_N : N;
+fun curtain_V2 : V2;
+fun curtain_call_N : N;
+fun curtain_lecture_N : N;
+fun curtain_raiser_N : N;
+fun curtness_N : N;
+fun curtsey_N : N;
+fun curtsey_V : V;
+fun curtsy_N : N;
+fun curtsy_V : V;
+fun curvature_N : N;
+fun curve_N : N;
+fun curve_V : V;
+fun curve_V2 : V2;
+fun cushion_N : N;
+fun cushion_V2 : V2;
+fun cushy_A : A;
+fun cusp_N : N;
+fun cuspidor_N : N;
+fun cuss_N : N;
+fun cussed_A : A;
+fun cussedness_N : N;
+fun custard_N : N;
+fun custodial_A : A;
+fun custodian_N : N;
+fun custody_N : N;
+fun custom_N : N;
+fun custom_built_A : A;
+fun custom_made_A : A;
+fun customary_A : A;
+fun customer_N : N;
+fun customize_V2 : V2;
+fun cut_N : N;
+fun cut_V : V;
+fun cut_V2 : V2;
+fun cut_VS : VS;
+fun cut_out_N : N;
+fun cut_price_A : A;
+fun cut_rate_A : A;
+fun cut_throat_A : A;
+fun cut_throat_N : N;
+fun cutback_N : N;
+fun cute_A : A;
+fun cuteness_N : N;
+fun cuticle_N : N;
+fun cutlass_N : N;
+fun cutler_N : N;
+fun cutlery_N : N;
+fun cutlet_N : N;
+fun cutpurse_N : N;
+fun cutter_N : N;
+fun cutting_A : A;
+fun cutting_N : N;
+fun cutting_room_N : N;
+fun cuttlefish_N : N;
+fun cutworm_N : N;
+fun cwmbran_PN : PN;
+fun cwt_N : N;
+fun cyanide_N : N;
+fun cybernetic_A : A;
+fun cybernetics_N : N;
+fun cyclamen_N : N;
+fun cycle_N : N;
+fun cycle_V : V;
+fun cyclic_A : A;
+fun cyclical_A : A;
+fun cyclist_N : N;
+fun cyclone_N : N;
+fun cyclonic_A : A;
+fun cyclopaedia_N : N;
+fun cyclopean_A : A;
+fun cyclostyle_N : N;
+fun cyclostyle_V2 : V2;
+fun cyclotron_N : N;
+fun cyder_N : N;
+fun cygnet_N : N;
+fun cylinder_N : N;
+fun cylindrical_A : A;
+fun cymbal_N : N;
+fun cynic_N : N;
+fun cynical_A : A;
+fun cynicism_N : N;
+fun cynosure_N : N;
+fun cynthia_PN : PN;
+fun cypher_N : N;
+fun cypher_V : V;
+fun cypher_V2 : V2;
+fun cypress_N : N;
+fun cyprian_A : A;
+fun cypriot_A : A;
+fun cypriot_N : N;
+fun cyprus_PN : PN;
+fun cyril_PN : PN;
+fun cyrillic_A : A;
+fun cyst_N : N;
+fun czar_N : N;
+fun czarina_N : N;
+fun czech_A : A;
+fun czech_N : N;
+fun czechoslovak_A : A;
+fun czechoslovak_N : N;
+fun czechoslovakia_PN : PN;
+fun czechoslovakian_A : A;
+fun czechoslovakian_N : N;
+fun d_day_PN : PN;
+fun dab_N : N;
+fun dab_V : V;
+fun dab_V2 : V2;
+fun dabble_V : V;
+fun dabble_V2 : V2;
+fun dabbler_N : N;
+fun dacca_PN : PN;
+fun dace_N : N;
+fun dacha_N : N;
+fun dachshund_N : N;
+fun dacoit_N : N;
+fun dacoity_N : N;
+fun dactyl_N : N;
+fun dactylic_A : A;
+fun dad_N : N;
+fun daddy_N : N;
+fun daddy_longlegs_N : N;
+fun dado_N : N;
+fun daemon_N : N;
+fun daffodil_N : N;
+fun daft_A : A;
+fun dagger_N : N;
+fun dago_N : N;
+fun daguerreotype_N : N;
+fun dahlia_N : N;
+fun dail_eireann_N : N;
+fun daily_A : A;
+fun daily_Adv : Adv;
+fun daily_N : N;
+fun daintily_Adv : Adv;
+fun daintiness_N : N;
+fun dainty_A : A;
+fun dainty_N : N;
+fun dairy_N : N;
+fun dairy_farm_N : N;
+fun dairy_farming_N : N;
+fun dairying_N : N;
+fun dairymaid_N : N;
+fun dairyman_N : N;
+fun dais_N : N;
+fun daisy_N : N;
+fun daisy_PN : PN;
+fun dakar_PN : PN;
+fun dakota_PN : PN;
+fun dale_N : N;
+fun dalesman_N : N;
+fun dalkeith_PN : PN;
+fun dallas_PN : PN;
+fun dalliance_N : N;
+fun dally_V : V;
+fun dalmatian_N : N;
+fun dalry_PN : PN;
+fun dalton_PN : PN;
+fun dam_N : N;
+fun dam_V2 : V2;
+fun damage_N : N;
+fun damage_V2 : V2;
+fun damascene_A : A;
+fun damascene_V2 : V2;
+fun damascus_PN : PN;
+fun damask_N : N;
+fun dame_N : N;
+fun damn_A : A;
+fun damn_Adv : Adv;
+fun damn_N : N;
+fun damn_V2 : V2;
+fun damnable_A : A;
+fun damnation_N : N;
+fun damned_A : A;
+fun damned_Adv : Adv;
+fun damocles_PN : PN;
+fun damp_A : A;
+fun damp_N : N;
+fun damp_V : V;
+fun damp_V2 : V2;
+fun dampen_V : V;
+fun dampen_V2 : V2;
+fun damper_N : N;
+fun dampish_A : A;
+fun dampness_N : N;
+fun damsel_N : N;
+fun damson_N : N;
+fun dan_PN : PN;
+fun dance_N : N;
+fun dance_V : V;
+fun dance_V2 : V2;
+fun dance_band_N : N;
+fun dance_hall_N : N;
+fun dance_orchestra_N : N;
+fun dancer_N : N;
+fun dancing_A : A;
+fun dancing_N : N;
+fun dandelion_N : N;
+fun dander_N : N;
+fun dandified_A : A;
+fun dandle_V2 : V2;
+fun dandruff_N : N;
+fun dandy_A : A;
+fun dandy_N : N;
+fun dane_N : N;
+fun danger_N : N;
+fun dangerous_A : A;
+fun dangle_V : V;
+fun dangle_V2 : V2;
+fun daniel_N : N;
+fun daniel_PN : PN;
+fun danish_A : A;
+fun danish_N : N;
+fun dank_A : A;
+fun danny_PN : PN;
+fun danse_macabre_N : N;
+fun daphne_N : N;
+fun daphne_PN : PN;
+fun dapper_A : A;
+fun dapple_V2 : V2;
+fun dapple_grey_A : A;
+fun dapple_grey_N : N;
+fun darby_PN : PN;
+fun dare_N : N;
+fun dare_V : V;
+fun dare_V2 : V2;
+fun dare_VV : VV;
+fun daredevil_N : N;
+fun darenth_PN : PN;
+fun darfield_PN : PN;
+fun daring_A : A;
+fun daring_N : N;
+fun dark_A : A;
+fun dark_N : N;
+fun darken_V : V;
+fun darken_V2 : V2;
+fun darkey_N : N;
+fun darkie_N : N;
+fun darkness_N : N;
+fun darkroom_N : N;
+fun darky_N : N;
+fun darling_N : N;
+fun darlington_PN : PN;
+fun darmstadt_PN : PN;
+fun darn_N : N;
+fun darn_V : V;
+fun darn_V2 : V2;
+fun darning_N : N;
+fun darning_needle_N : N;
+fun dart_N : N;
+fun dart_V : V;
+fun dart_V2 : V2;
+fun dartford_PN : PN;
+fun dartmouth_PN : PN;
+fun darwen_PN : PN;
+fun dash_N : N;
+fun dash_V : V;
+fun dash_V2 : V2;
+fun dashboard_N : N;
+fun dashing_A : A;
+fun dastard_N : N;
+fun dastardly_A : A;
+fun data_N : N;
+fun datable_A : A;
+fun date_N : N;
+fun date_V : V;
+fun date_V2 : V2;
+fun dated_A : A;
+fun dateless_A : A;
+fun dateline_N : N;
+fun dative_A : A;
+fun dative_N : N;
+fun datum_N : N;
+fun daub_N : N;
+fun daub_V : V;
+fun daub_V2 : V2;
+fun dauber_N : N;
+fun daughter_N : N;
+fun daughter_in_law_N : N;
+fun daughterly_A : A;
+fun daunt_V2 : V2;
+fun dauntless_A : A;
+fun dauphin_N : N;
+fun dave_PN : PN;
+fun davenport_N : N;
+fun daventry_PN : PN;
+fun davey_PN : PN;
+fun david_PN : PN;
+fun davit_N : N;
+fun daw_N : N;
+fun dawdle_V : V;
+fun dawdle_V2 : V2;
+fun dawdler_N : N;
+fun dawley_PN : PN;
+fun dawlish_PN : PN;
+fun dawn_N : N;
+fun dawn_PN : PN;
+fun dawn_V : V;
+fun day_N : N;
+fun day_boarder_N : N;
+fun day_labourer_N : N;
+fun day_return_N : N;
+fun day_school_N : N;
+fun daybook_N : N;
+fun dayboy_N : N;
+fun daybreak_N : N;
+fun daydream_N : N;
+fun daydream_V : V;
+fun daygirl_N : N;
+fun daylight_N : N;
+fun daylight_saving_A : A;
+fun daylight_saving_N : N;
+fun daylong_A : A;
+fun daylong_Adv : Adv;
+fun dayspring_N : N;
+fun daytime_N : N;
+fun dayton_PN : PN;
+fun daze_N : N;
+fun daze_V2 : V2;
+fun dazedly_Adv : Adv;
+fun dazzle_N : N;
+fun dazzle_V2 : V2;
+fun ddt_N : N;
+fun de_emphasize_V2 : V2;
+fun de_escalate_V2 : V2;
+fun de_escalation_N : N;
+fun de_facto_A : A;
+fun de_facto_Adv : Adv;
+fun de_ice_V2 : V2;
+fun de_jure_A : A;
+fun de_jure_Adv : Adv;
+fun de_luxe_A : A;
+fun de_rigeur_A : A;
+fun de_trop_A : A;
+fun deacon_N : N;
+fun deaconess_N : N;
+fun deactivate_V2 : V2;
+fun dead_A : A;
+fun dead_Adv : Adv;
+fun deaden_V2 : V2;
+fun deadline_N : N;
+fun deadlock_N : N;
+fun deadlock_V : V;
+fun deadlocked_A : A;
+fun deadly_A : A;
+fun deadpan_A : A;
+fun deaf_A : A;
+fun deaf_aid_N : N;
+fun deaf_mute_N : N;
+fun deafen_V2 : V2;
+fun deafness_N : N;
+fun deal_Adv : Adv;
+fun deal_N : N;
+fun deal_PN : PN;
+fun deal_V : V;
+fun deal_V2 : V2;
+fun dealer_N : N;
+fun dealing_N : N;
+fun dean_N : N;
+fun dean_PN : PN;
+fun deanery_N : N;
+fun dear_A : A;
+fun dear_Adv : Adv;
+fun dear_N : N;
+fun dearest_N : N;
+fun dearie_N : N;
+fun dearness_N : N;
+fun dearth_N : N;
+fun deary_N : N;
+fun death_N : N;
+fun death_mask_N : N;
+fun death_rate_N : N;
+fun death_roll_N : N;
+fun death_warrant_N : N;
+fun deathbed_N : N;
+fun deathblow_N : N;
+fun deathless_A : A;
+fun deathlike_A : A;
+fun deathly_A : A;
+fun deathly_Adv : Adv;
+fun deathtrap_N : N;
+fun deb_N : N;
+fun debacle_N : N;
+fun debag_V2 : V2;
+fun debar_V2 : V2;
+fun debark_V : V;
+fun debark_V2 : V2;
+fun debarkation_N : N;
+fun debase_V2 : V2;
+fun debasement_N : N;
+fun debatable_A : A;
+fun debate_N : N;
+fun debate_V : V;
+fun debate_V2 : V2;
+fun debater_N : N;
+fun debauch_N : N;
+fun debauch_V2 : V2;
+fun debauchee_N : N;
+fun debauchery_N : N;
+fun debbie_PN : PN;
+fun debby_PN : PN;
+fun debenture_N : N;
+fun debilitate_V2 : V2;
+fun debility_N : N;
+fun debit_N : N;
+fun debit_V2 : V2;
+fun debit_side_N : N;
+fun debonair_A : A;
+fun deborah_PN : PN;
+fun debouch_V : V;
+fun debouch_V2 : V2;
+fun debrief_V2 : V2;
+fun debris_1_N : N;
+fun debris_2_N : N;
+fun debt_N : N;
+fun debtor_N : N;
+fun debug_V2 : V2;
+fun debunk_V2 : V2;
+fun debut_1_N : N;
+fun debut_2_N : N;
+fun debut_V2 : V2;
+fun debutante_1_N : N;
+fun debutante_2_N : N;
+fun dec_PN : PN;
+fun decade_N : N;
+fun decadence_N : N;
+fun decadent_A : A;
+fun decadent_N : N;
+fun decalogue_N : N;
+fun decamp_V : V;
+fun decant_V2 : V2;
+fun decanter_N : N;
+fun decapitate_V2 : V2;
+fun decapitation_N : N;
+fun decarbonize_V2 : V2;
+fun decasyllabic_A : A;
+fun decasyllable_N : N;
+fun decay_N : N;
+fun decay_V : V;
+fun decease_N : N;
+fun decease_V : V;
+fun deceit_N : N;
+fun deceitful_A : A;
+fun deceitfulness_N : N;
+fun deceive_V2 : V2;
+fun deceiver_N : N;
+fun deceivingly_Adv : Adv;
+fun decelerate_V : V;
+fun decelerate_V2 : V2;
+fun december_N : N;
+fun december_PN : PN;
+fun decency_N : N;
+fun decent_A : A;
+fun decentralization_N : N;
+fun decentralize_V2 : V2;
+fun deception_N : N;
+fun deceptive_A : A;
+fun decibel_N : N;
+fun decide_V : V;
+fun decide_V2 : V2;
+fun decide_VV : VV;
+fun decide_VS : VS;
+fun decided_A : A;
+fun deciduous_A : A;
+fun decimal_A : A;
+fun decimalization_N : N;
+fun decimalize_V2 : V2;
+fun decimate_V2 : V2;
+fun decipher_V2 : V2;
+fun decipherable_A : A;
+fun decision_N : N;
+fun decisive_A : A;
+fun deck_N : N;
+fun deck_V2 : V2;
+fun decker_N : N;
+fun deckle_edged_A : A;
+fun declaim_V : V;
+fun declaim_V2 : V2;
+fun declamation_N : N;
+fun declamatory_A : A;
+fun declarable_A : A;
+fun declaration_N : N;
+fun declare_V : V;
+fun declare_V2 : V2;
+fun declare_V2V : V2V;
+fun declare_VS : VS;
+fun declassification_N : N;
+fun declassify_V2 : V2;
+fun declension_N : N;
+fun declination_N : N;
+fun decline_N : N;
+fun decline_V : V;
+fun decline_V2 : V2;
+fun decline_VV : VV;
+fun decline_VS : VS;
+fun declivity_N : N;
+fun declutch_V : V;
+fun decode_V2 : V2;
+fun decoder_N : N;
+fun decoke_V2 : V2;
+fun decollete_A : A;
+fun decolonization_N : N;
+fun decolonize_V2 : V2;
+fun decompose_V : V;
+fun decompose_V2 : V2;
+fun decomposition_N : N;
+fun decompress_V2 : V2;
+fun decompression_N : N;
+fun decontaminate_V2 : V2;
+fun decontamination_N : N;
+fun decontrol_V2 : V2;
+fun decor_N : N;
+fun decorate_V2 : V2;
+fun decoration_N : N;
+fun decorative_A : A;
+fun decorator_N : N;
+fun decorous_A : A;
+fun decorum_N : N;
+fun decoy_N : N;
+fun decoy_V2 : V2;
+fun decrease_N : N;
+fun decrease_V : V;
+fun decrease_V2 : V2;
+fun decree_N : N;
+fun decree_V2 : V2;
+fun decree_nisi_N : N;
+fun decrepit_A : A;
+fun decrepitude_N : N;
+fun decribe_V2 : V2;
+fun decry_V2 : V2;
+fun dedicate_V2 : V2;
+fun dedication_N : N;
+fun deduce_V2 : V2;
+fun deduct_V2 : V2;
+fun deductible_A : A;
+fun deduction_N : N;
+fun deductive_A : A;
+fun deed_N : N;
+fun deed_box_N : N;
+fun deedpoll_N : N;
+fun deem_V2 : V2;
+fun deem_VS : VS;
+fun deep_A : A;
+fun deep_Adv : Adv;
+fun deep_N : N;
+fun deep_freeze_N : N;
+fun deep_freeze_V2 : V2;
+fun deep_laid_A : A;
+fun deep_mined_A : A;
+fun deep_rooted_A : A;
+fun deep_sea_A : A;
+fun deep_seated_A : A;
+fun deep_water_A : A;
+fun deepen_V : V;
+fun deepen_V2 : V2;
+fun deepness_N : N;
+fun deer_N : N;
+fun deerskin_N : N;
+fun deerstalker_N : N;
+fun deerstalking_N : N;
+fun deface_V2 : V2;
+fun defacement_N : N;
+fun defalcation_N : N;
+fun defamation_N : N;
+fun defamatory_A : A;
+fun defame_V2 : V2;
+fun default_N : N;
+fun default_V : V;
+fun defaulter_N : N;
+fun defeat_N : N;
+fun defeat_V2 : V2;
+fun defeatism_N : N;
+fun defeatist_N : N;
+fun defecate_V : V;
+fun defecation_N : N;
+fun defect_N : N;
+fun defect_V : V;
+fun defection_N : N;
+fun defective_A : A;
+fun defectiveness_N : N;
+fun defector_N : N;
+fun defence_N : N;
+fun defenceless_A : A;
+fun defencelessness_N : N;
+fun defend_V : V;
+fun defend_V2 : V2;
+fun defendant_N : N;
+fun defender_N : N;
+fun defensible_A : A;
+fun defensive_A : A;
+fun defensive_N : N;
+fun defer_V : V;
+fun defer_V2 : V2;
+fun deference_N : N;
+fun deferential_A : A;
+fun deferment_N : N;
+fun defiance_N : N;
+fun defiant_A : A;
+fun deficiency_N : N;
+fun deficient_A : A;
+fun deficit_N : N;
+fun defile_N : N;
+fun defile_V : V;
+fun defile_V2 : V2;
+fun defilement_N : N;
+fun definable_A : A;
+fun define_V : V;
+fun define_V2 : V2;
+fun definite_A : A;
+fun definition_N : N;
+fun definitive_A : A;
+fun deflate_V2 : V2;
+fun deflation_N : N;
+fun deflationary_A : A;
+fun deflect_V : V;
+fun deflect_V2 : V2;
+fun deflection_N : N;
+fun deflower_V2 : V2;
+fun defoliant_N : N;
+fun defoliate_V2 : V2;
+fun defoliation_N : N;
+fun deforest_V2 : V2;
+fun deform_V2 : V2;
+fun deformed_A : A;
+fun deformity_N : N;
+fun defraud_V2 : V2;
+fun defray_V2 : V2;
+fun defrayal_N : N;
+fun defrayment_N : N;
+fun defrock_V2 : V2;
+fun defrost_V2 : V2;
+fun defroster_N : N;
+fun deft_A : A;
+fun deftness_N : N;
+fun defunct_A : A;
+fun defuse_V2 : V2;
+fun defy_V2 : V2;
+fun defy_V2V : V2V;
+fun degauss_V2 : V2;
+fun degeneracy_N : N;
+fun degenerate_A : A;
+fun degenerate_N : N;
+fun degenerate_V : V;
+fun degeneration_N : N;
+fun degradation_N : N;
+fun degrade_V2 : V2;
+fun degree_N : N;
+fun dehorn_V2 : V2;
+fun dehumanize_V2 : V2;
+fun dehydrate_V2 : V2;
+fun deification_N : N;
+fun deify_V2 : V2;
+fun deign_V : V;
+fun deirdre_PN : PN;
+fun deism_N : N;
+fun deist_N : N;
+fun deity_N : N;
+fun deject_V2 : V2;
+fun dejectedly_Adv : Adv;
+fun dejection_N : N;
+fun dekko_N : N;
+fun delaware_PN : PN;
+fun delay_N : N;
+fun delay_V : V;
+fun delay_V2 : V2;
+fun delay_VS : VS;
+fun delayed_action_A : A;
+fun delayed_action_N : N;
+fun delectable_A : A;
+fun delectation_N : N;
+fun delegacy_N : N;
+fun delegate_N : N;
+fun delegate_V2 : V2;
+fun delegation_N : N;
+fun delete_V2 : V2;
+fun deleterious_A : A;
+fun deletion_N : N;
+fun delf_N : N;
+fun delft_N : N;
+fun delhi_PN : PN;
+fun deliberate_A : A;
+fun deliberate_V : V;
+fun deliberate_V2 : V2;
+fun deliberation_N : N;
+fun deliberative_A : A;
+fun delicacy_N : N;
+fun delicate_A : A;
+fun delicatessen_N : N;
+fun delicious_A : A;
+fun delight_N : N;
+fun delight_V : V;
+fun delight_V2 : V2;
+fun delight_VS : VS;
+fun delightedly_Adv : Adv;
+fun delightful_A : A;
+fun delimit_V2 : V2;
+fun delimitate_V2 : V2;
+fun delimitation_N : N;
+fun delineate_V2 : V2;
+fun delineation_N : N;
+fun delinquency_N : N;
+fun delinquent_A : A;
+fun delinquent_N : N;
+fun deliquescent_A : A;
+fun delirious_A : A;
+fun delirium_N : N;
+fun delirium_tremens_N : N;
+fun deliver_V : V;
+fun deliver_V2 : V2;
+fun deliverance_N : N;
+fun deliverer_N : N;
+fun delivery_N : N;
+fun dell_N : N;
+fun delouse_V2 : V2;
+fun delphic_A : A;
+fun delphinium_N : N;
+fun delta_N : N;
+fun delude_V2 : V2;
+fun deluge_N : N;
+fun deluge_V2 : V2;
+fun delusion_N : N;
+fun delusive_A : A;
+fun delve_V : V;
+fun delve_V2 : V2;
+fun demagnetization_N : N;
+fun demagnetize_V2 : V2;
+fun demagogic_A : A;
+fun demagogue_N : N;
+fun demagogy_N : N;
+fun demand_N : N;
+fun demand_V2 : V2;
+fun demand_VS : VS;
+fun demarcate_V2 : V2;
+fun demarcation_N : N;
+fun demarche_N : N;
+fun demean_V2 : V2;
+fun demeanour_N : N;
+fun demented_A : A;
+fun demerara_N : N;
+fun demerit_N : N;
+fun demesne_N : N;
+fun demigod_N : N;
+fun demijohn_N : N;
+fun demilitarize_V2 : V2;
+fun demimondaine_N : N;
+fun demimonde_N : N;
+fun demise_N : N;
+fun demist_V2 : V2;
+fun demister_N : N;
+fun demo_N : N;
+fun demob_V2 : V2;
+fun demobilization_N : N;
+fun demobilize_V2 : V2;
+fun democracy_N : N;
+fun democrat_N : N;
+fun democratic_A : A;
+fun democratically_Adv : Adv;
+fun democratization_N : N;
+fun democratize_V2 : V2;
+fun demode_A : A;
+fun demographic_A : A;
+fun demography_N : N;
+fun demolish_V2 : V2;
+fun demolition_N : N;
+fun demon_N : N;
+fun demonetization_N : N;
+fun demonetize_V2 : V2;
+fun demoniac_A : A;
+fun demoniac_N : N;
+fun demoniacal_A : A;
+fun demonic_A : A;
+fun demonize_V2 : V2;
+fun demonstrability_N : N;
+fun demonstrable_A : A;
+fun demonstrate_V : V;
+fun demonstrate_V2 : V2;
+fun demonstrate_VS : VS;
+fun demonstration_N : N;
+fun demonstrative_A : A;
+fun demonstrator_N : N;
+fun demoralization_N : N;
+fun demoralize_V2 : V2;
+fun demote_V2 : V2;
+fun demotic_A : A;
+fun demotion_N : N;
+fun demur_N : N;
+fun demur_V : V;
+fun demur_VS : VS;
+fun demure_A : A;
+fun demureness_N : N;
+fun den_N : N;
+fun denain_PN : PN;
+fun denary_A : A;
+fun denationalization_N : N;
+fun denationalize_V2 : V2;
+fun denatured_A : A;
+fun denbigh_PN : PN;
+fun deniable_A : A;
+fun denial_N : N;
+fun denier_N : N;
+fun denigrate_V2 : V2;
+fun denigration_N : N;
+fun denim_N : N;
+fun denis_PN : PN;
+fun denise_PN : PN;
+fun denizen_N : N;
+fun denmark_PN : PN;
+fun dennis_PN : PN;
+fun denny_PN : PN;
+fun denominate_V2 : V2;
+fun denomination_N : N;
+fun denominational_A : A;
+fun denominator_N : N;
+fun denote_V2 : V2;
+fun denouement_N : N;
+fun denounce_V2 : V2;
+fun dense_A : A;
+fun denseness_N : N;
+fun density_N : N;
+fun dent_N : N;
+fun dent_V : V;
+fun dent_V2 : V2;
+fun dental_A : A;
+fun dentifrice_N : N;
+fun dentist_N : N;
+fun dentistry_N : N;
+fun denture_N : N;
+fun denudation_N : N;
+fun denude_V2 : V2;
+fun denunciation_N : N;
+fun denver_PN : PN;
+fun deny_V2 : V2;
+fun deny_VS : VS;
+fun deodar_N : N;
+fun deodorant_N : N;
+fun deodorize_V2 : V2;
+fun dep_PN : PN;
+fun depart_V : V;
+fun departed_A : A;
+fun departed_N : N;
+fun department_N : N;
+fun departmental_A : A;
+fun departure_N : N;
+fun depend_V : V;
+fun dependable_A : A;
+fun dependant_N : N;
+fun dependence_N : N;
+fun dependency_N : N;
+fun dependent_A : A;
+fun dependent_N : N;
+fun depict_V2 : V2;
+fun depiction_N : N;
+fun depilatory_A : A;
+fun depilatory_N : N;
+fun deplane_V : V;
+fun deplete_V2 : V2;
+fun depletion_N : N;
+fun deplorable_A : A;
+fun deplore_V2 : V2;
+fun deploy_V : V;
+fun deploy_V2 : V2;
+fun deployment_N : N;
+fun deponent_N : N;
+fun depopulate_V2 : V2;
+fun depopulation_N : N;
+fun deport_V2 : V2;
+fun deportation_N : N;
+fun deportee_N : N;
+fun deportment_N : N;
+fun depose_V : V;
+fun depose_V2 : V2;
+fun deposit_N : N;
+fun deposit_V2 : V2;
+fun deposition_N : N;
+fun depositor_N : N;
+fun depository_N : N;
+fun depot_N : N;
+fun deprave_V2 : V2;
+fun depravity_N : N;
+fun deprecate_V2 : V2;
+fun deprecation_N : N;
+fun depreciate_V : V;
+fun depreciate_V2 : V2;
+fun depreciation_N : N;
+fun depreciatory_A : A;
+fun depredation_N : N;
+fun depress_V2 : V2;
+fun depression_N : N;
+fun depressive_A : A;
+fun depressive_N : N;
+fun deprivation_N : N;
+fun deprive_V2 : V2;
+fun deprived_A : A;
+fun dept_PN : PN;
+fun depth_N : N;
+fun depth_bomb_N : N;
+fun depth_charge_N : N;
+fun deputation_N : N;
+fun depute_V2 : V2;
+fun deputize_V : V;
+fun deputy_N : N;
+fun derail_V2 : V2;
+fun derailment_N : N;
+fun derange_V2 : V2;
+fun derangement_N : N;
+fun derate_V2 : V2;
+fun derby_N : N;
+fun derby_PN : PN;
+fun derbyshire_PN : PN;
+fun deregulate_V2 : V2;
+fun dereham_PN : PN;
+fun derek_PN : PN;
+fun derelict_A : A;
+fun dereliction_N : N;
+fun derequisition_V2 : V2;
+fun derestrict_V2 : V2;
+fun deride_V2 : V2;
+fun derision_N : N;
+fun derisive_A : A;
+fun derisory_A : A;
+fun derivation_N : N;
+fun derivative_A : A;
+fun derivative_N : N;
+fun derive_V : V;
+fun derive_V2 : V2;
+fun dermatitis_N : N;
+fun dermatologist_N : N;
+fun dermatology_N : N;
+fun derogate_V : V;
+fun derogation_N : N;
+fun derogatory_A : A;
+fun derrick_N : N;
+fun derring_do_N : N;
+fun derv_N : N;
+fun dervish_N : N;
+fun des_N : N;
+fun des_PN : PN;
+fun desalinate_V2 : V2;
+fun desalination_N : N;
+fun desalinization_N : N;
+fun desalinize_V2 : V2;
+fun desalt_V2 : V2;
+fun descale_V2 : V2;
+fun descant_N : N;
+fun descant_V : V;
+fun descend_V : V;
+fun descend_V2 : V2;
+fun descendant_N : N;
+fun descent_N : N;
+fun describe_V : V;
+fun describe_V2 : V2;
+fun describe_VS : VS;
+fun description_N : N;
+fun descriptive_A : A;
+fun descry_V2 : V2;
+fun desecrate_V2 : V2;
+fun desecration_N : N;
+fun desegregate_V2 : V2;
+fun desegregation_N : N;
+fun desensitization_N : N;
+fun desensitize_V2 : V2;
+fun desert_A : A;
+fun desert_N : N;
+fun desert_V : V;
+fun desert_V2 : V2;
+fun deserter_N : N;
+fun desertion_N : N;
+fun deserve_V : V;
+fun deserve_V2 : V2;
+fun deserved_A : A;
+fun deserving_A : A;
+fun deshabille_N : N;
+fun desiccant_N : N;
+fun desiccate_V2 : V2;
+fun desideratum_N : N;
+fun design_N : N;
+fun design_V : V;
+fun design_V2 : V2;
+fun design_VV : VV;
+fun design_VS : VS;
+fun designate_A : A;
+fun designate_V : V;
+fun designate_V2 : V2;
+fun designate_V2V : V2V;
+fun designate_VS : VS;
+fun designation_N : N;
+fun designedly_Adv : Adv;
+fun designer_N : N;
+fun designing_A : A;
+fun designing_N : N;
+fun desirability_N : N;
+fun desirable_A : A;
+fun desire_N : N;
+fun desire_V2 : V2;
+fun desirous_A : A;
+fun desist_V : V;
+fun desk_N : N;
+fun desmond_PN : PN;
+fun desolate_A : A;
+fun desolate_V2 : V2;
+fun desolation_N : N;
+fun despair_N : N;
+fun despair_V : V;
+fun despairingly_Adv : Adv;
+fun despatch_N : N;
+fun despatch_V2 : V2;
+fun desperado_N : N;
+fun desperate_A : A;
+fun desperation_N : N;
+fun despicable_A : A;
+fun despise_V2 : V2;
+fun despite_N : N;
+fun despite_Prep : Prep ;
+fun despiteful_A : A;
+fun despoil_V2 : V2;
+fun despondency_N : N;
+fun despondent_A : A;
+fun despot_N : N;
+fun despotic_A : A;
+fun despotism_N : N;
+fun dessau_PN : PN;
+fun dessert_N : N;
+fun dessertspoon_N : N;
+fun dessertspoonful_N : N;
+fun destination_N : N;
+fun destine_V2 : V2;
+fun destine_V2V : V2V;
+fun destiny_N : N;
+fun destitute_A : A;
+fun destitution_N : N;
+fun destroy_V2 : V2;
+fun destroyer_N : N;
+fun destructibility_N : N;
+fun destructible_A : A;
+fun destruction_N : N;
+fun destructive_A : A;
+fun destructiveness_N : N;
+fun desuetude_N : N;
+fun desultory_A : A;
+fun detach_V2 : V2;
+fun detachable_A : A;
+fun detached_A : A;
+fun detachment_N : N;
+fun detail_N : N;
+fun detail_V2 : V2;
+fun detain_V2 : V2;
+fun detainee_N : N;
+fun detect_V2 : V2;
+fun detectable_A : A;
+fun detection_N : N;
+fun detective_N : N;
+fun detector_N : N;
+fun detente_N : N;
+fun detention_N : N;
+fun deter_V2 : V2;
+fun detergent_A : A;
+fun detergent_N : N;
+fun deteriorate_V : V;
+fun deteriorate_V2 : V2;
+fun deterioration_N : N;
+fun determinable_A : A;
+fun determinant_A : A;
+fun determinant_N : N;
+fun determinate_A : A;
+fun determination_N : N;
+fun determinative_A : A;
+fun determinative_N : N;
+fun determine_V : V;
+fun determine_V2 : V2;
+fun determine_V2V : V2V;
+fun determine_VS : VS;
+fun determinedly_Adv : Adv;
+fun determiner_N : N;
+fun deterrent_A : A;
+fun deterrent_N : N;
+fun detest_V2 : V2;
+fun detestable_A : A;
+fun detestation_N : N;
+fun dethrone_V2 : V2;
+fun dethronement_N : N;
+fun detonate_V : V;
+fun detonate_V2 : V2;
+fun detonation_N : N;
+fun detonator_N : N;
+fun detour_N : N;
+fun detour_V2 : V2;
+fun detract_V : V;
+fun detraction_N : N;
+fun detractor_N : N;
+fun detrain_V : V;
+fun detrain_V2 : V2;
+fun detribalization_N : N;
+fun detribalize_V2 : V2;
+fun detriment_N : N;
+fun detrimental_A : A;
+fun detritus_N : N;
+fun detroit_PN : PN;
+fun deuce_N : N;
+fun deuced_A : A;
+fun deutschmark_N : N;
+fun devaluate_V2 : V2;
+fun devaluation_N : N;
+fun devalue_V2 : V2;
+fun devastate_V2 : V2;
+fun devastation_N : N;
+fun develop_V : V;
+fun develop_V2 : V2;
+fun developer_N : N;
+fun development_N : N;
+fun deviant_A : A;
+fun deviant_N : N;
+fun deviate_V : V;
+fun deviation_N : N;
+fun deviationism_N : N;
+fun deviationist_N : N;
+fun device_N : N;
+fun devil_N : N;
+fun devil_V : V;
+fun devil_V2 : V2;
+fun devil_may_care_A : A;
+fun devilish_A : A;
+fun devilish_Adv : Adv;
+fun devilment_N : N;
+fun devilry_N : N;
+fun devious_A : A;
+fun deviousness_N : N;
+fun devise_V2 : V2;
+fun devitalization_N : N;
+fun devitalize_V2 : V2;
+fun devizes_PN : PN;
+fun devoid_A : A;
+fun devolution_N : N;
+fun devolve_V : V;
+fun devolve_V2 : V2;
+fun devon_PN : PN;
+fun devote_V2 : V2;
+fun devoted_A : A;
+fun devotee_N : N;
+fun devotion_N : N;
+fun devotional_A : A;
+fun devour_V2 : V2;
+fun devout_A : A;
+fun devoutness_N : N;
+fun dew_N : N;
+fun dewlap_N : N;
+fun dewsbury_PN : PN;
+fun dewy_A : A;
+fun dexterity_N : N;
+fun dexterous_A : A;
+fun dextrose_N : N;
+fun dextrous_A : A;
+fun dg_PN : PN;
+fun dhoti_N : N;
+fun dhow_N : N;
+fun di_PN : PN;
+fun diabetes_N : N;
+fun diabetic_A : A;
+fun diabetic_N : N;
+fun diabolic_A : A;
+fun diabolical_A : A;
+fun diacritic_A : A;
+fun diacritic_N : N;
+fun diacritical_A : A;
+fun diadem_N : N;
+fun diaeresis_N : N;
+fun diagnose_V2 : V2;
+fun diagnosis_N : N;
+fun diagnostic_A : A;
+fun diagonal_A : A;
+fun diagonal_N : N;
+fun diagram_N : N;
+fun diagrammatic_A : A;
+fun diagrammatical_A : A;
+fun dial_N : N;
+fun dial_V2 : V2;
+fun dialect_N : N;
+fun dialectal_A : A;
+fun dialectic_N : N;
+fun dialectical_A : A;
+fun dialectician_N : N;
+fun dialogue_N : N;
+fun diameter_N : N;
+fun diametrically_Adv : Adv;
+fun diamond_N : N;
+fun diana_PN : PN;
+fun diaper_N : N;
+fun diaphanous_A : A;
+fun diaphragm_N : N;
+fun diarchy_N : N;
+fun diarist_N : N;
+fun diarrhea_N : N;
+fun diarrhoea_N : N;
+fun diary_N : N;
+fun diaspora_N : N;
+fun diatonic_A : A;
+fun diatribe_N : N;
+fun dibber_N : N;
+fun dibble_N : N;
+fun dibble_V2 : V2;
+fun dice_N : N;
+fun dice_V : V;
+fun dice_V2 : V2;
+fun dice_box_N : N;
+fun dicey_A : A;
+fun dichotomy_N : N;
+fun dick_PN : PN;
+fun dickens_N : N;
+fun dicker_V : V;
+fun dickey_N : N;
+fun dicky_A : A;
+fun dicky_N : N;
+fun dicky_PN : PN;
+fun dicky_seat_N : N;
+fun dickybird_N : N;
+fun dictaphone_N : N;
+fun dictate_N : N;
+fun dictate_V : V;
+fun dictate_V2 : V2;
+fun dictate_VS : VS;
+fun dictation_N : N;
+fun dictator_N : N;
+fun dictatorial_A : A;
+fun dictatorship_N : N;
+fun diction_N : N;
+fun dictionary_N : N;
+fun dictum_N : N;
+fun didactic_A : A;
+fun didactically_Adv : Adv;
+fun didcot_PN : PN;
+fun diddle_V2 : V2;
+fun die_N : N;
+fun die_V : V;
+fun die_V2 : V2;
+fun die_cast_A : A;
+fun die_hard_N : N;
+fun dieresis_N : N;
+fun diesel_N : N;
+fun diet_N : N;
+fun diet_V : V;
+fun diet_V2 : V2;
+fun dietary_A : A;
+fun dietetics_N : N;
+fun dietician_N : N;
+fun dietitian_N : N;
+fun differ_V : V;
+fun difference_N : N;
+fun different_A : A;
+fun differential_A : A;
+fun differential_N : N;
+fun differentiate_V : V;
+fun differentiate_V2 : V2;
+fun differentiation_N : N;
+fun difficult_A : A;
+fun difficulty_N : N;
+fun diffidence_N : N;
+fun diffident_A : A;
+fun diffract_V2 : V2;
+fun diffraction_N : N;
+fun diffuse_A : A;
+fun diffuse_V : V;
+fun diffuse_V2 : V2;
+fun diffuseness_N : N;
+fun diffusion_N : N;
+fun dig_N : N;
+fun dig_V : V;
+fun dig_V2 : V2;
+fun digest_N : N;
+fun digest_V : V;
+fun digest_V2 : V2;
+fun digestibility_N : N;
+fun digestible_A : A;
+fun digestion_N : N;
+fun digestive_A : A;
+fun digger_N : N;
+fun digging_N : N;
+fun digit_N : N;
+fun digital_A : A;
+fun dignified_A : A;
+fun dignify_V2 : V2;
+fun dignitary_N : N;
+fun dignity_N : N;
+fun digraph_N : N;
+fun digress_V : V;
+fun digression_N : N;
+fun dijon_PN : PN;
+fun dike_N : N;
+fun dike_V : V;
+fun dike_V2 : V2;
+fun dilapidated_A : A;
+fun dilapidation_N : N;
+fun dilate_V : V;
+fun dilate_V2 : V2;
+fun dilation_N : N;
+fun dilatory_A : A;
+fun dilemma_N : N;
+fun dilettante_N : N;
+fun diligence_N : N;
+fun diligent_A : A;
+fun dill_N : N;
+fun dilly_dally_V : V;
+fun dilute_A : A;
+fun dilute_V : V;
+fun dilute_V2 : V2;
+fun dilution_N : N;
+fun dim_A : A;
+fun dim_V : V;
+fun dim_V2 : V2;
+fun dime_N : N;
+fun dimension_N : N;
+fun dimensional_A : A;
+fun diminish_V : V;
+fun diminish_V2 : V2;
+fun diminuendo_N : N;
+fun diminution_N : N;
+fun diminutive_A : A;
+fun diminutive_N : N;
+fun dimity_N : N;
+fun dimness_N : N;
+fun dimple_N : N;
+fun dimple_V : V;
+fun dimple_V2 : V2;
+fun din_N : N;
+fun din_V : V;
+fun din_V2 : V2;
+fun dinar_N : N;
+fun dine_V : V;
+fun dine_V2 : V2;
+fun diner_N : N;
+fun ding_dong_Adv : Adv;
+fun ding_dong_N : N;
+fun dinghy_N : N;
+fun dingily_Adv : Adv;
+fun dinginess_N : N;
+fun dingle_N : N;
+fun dingle_PN : PN;
+fun dingy_A : A;
+fun dining_car_N : N;
+fun dining_room_N : N;
+fun dining_table_N : N;
+fun dinky_A : A;
+fun dinner_N : N;
+fun dinner_jacket_N : N;
+fun dinner_party_N : N;
+fun dinner_service_N : N;
+fun dinner_set_N : N;
+fun dinnington_PN : PN;
+fun dinosaur_N : N;
+fun dint_N : N;
+fun diocesan_A : A;
+fun diocesan_N : N;
+fun diocese_N : N;
+fun dioxide_N : N;
+fun dip_N : N;
+fun dip_V : V;
+fun dip_V2 : V2;
+fun dip_ed_N : N;
+fun diphtheria_N : N;
+fun diphthong_N : N;
+fun diploma_N : N;
+fun diplomacy_N : N;
+fun diplomat_N : N;
+fun diplomatic_A : A;
+fun diplomatically_Adv : Adv;
+fun diplomatist_N : N;
+fun dipper_N : N;
+fun dipsomania_N : N;
+fun dipsomaniac_N : N;
+fun dipstick_N : N;
+fun diptych_N : N;
+fun dir_N : N;
+fun dire_A : A;
+fun direct_A : A;
+fun direct_Adv : Adv;
+fun direct_V : V;
+fun direct_V2 : V2;
+fun direct_VS : VS;
+fun direction_N : N;
+fun direction_finder_N : N;
+fun directional_A : A;
+fun directive_N : N;
+fun directness_N : N;
+fun director_N : N;
+fun directorate_N : N;
+fun directorship_N : N;
+fun directory_N : N;
+fun direful_A : A;
+fun dirge_N : N;
+fun dirigible_N : N;
+fun dirk_N : N;
+fun dirndl_N : N;
+fun dirt_N : N;
+fun dirt_cheap_A : A;
+fun dirt_track_N : N;
+fun dirtily_Adv : Adv;
+fun dirty_A : A;
+fun dirty_V : V;
+fun dirty_V2 : V2;
+fun disability_N : N;
+fun disable_V2 : V2;
+fun disablement_N : N;
+fun disabuse_V2 : V2;
+fun disadvantage_N : N;
+fun disadvantageous_A : A;
+fun disaffected_A : A;
+fun disaffection_N : N;
+fun disafforest_V2 : V2;
+fun disagree_V : V;
+fun disagree_V2 : V2;
+fun disagree_VS : VS;
+fun disagreeable_A : A;
+fun disagreeableness_N : N;
+fun disagreement_N : N;
+fun disallow_V2 : V2;
+fun disappear_V : V;
+fun disappearance_N : N;
+fun disappoint_V2 : V2;
+fun disappointed_A : A;
+fun disappointing_A : A;
+fun disappointment_N : N;
+fun disapprobation_N : N;
+fun disapproval_N : N;
+fun disapprove_V : V;
+fun disapprove_V2 : V2;
+fun disapprovingly_Adv : Adv;
+fun disarm_V : V;
+fun disarm_V2 : V2;
+fun disarmament_N : N;
+fun disarrange_V2 : V2;
+fun disarrangement_N : N;
+fun disarray_N : N;
+fun disarray_V2 : V2;
+fun disassociate_V2 : V2;
+fun disaster_N : N;
+fun disastrous_A : A;
+fun disavow_V2 : V2;
+fun disavowal_N : N;
+fun disband_V : V;
+fun disband_V2 : V2;
+fun disbandment_N : N;
+fun disbelief_N : N;
+fun disbelieve_V : V;
+fun disbelieve_V2 : V2;
+fun disbelievingly_Adv : Adv;
+fun disbud_V2 : V2;
+fun disburden_V2 : V2;
+fun disburse_V : V;
+fun disburse_V2 : V2;
+fun disbursement_N : N;
+fun disc_N : N;
+fun discard_N : N;
+fun discard_V2 : V2;
+fun discern_V2 : V2;
+fun discernible_A : A;
+fun discerning_A : A;
+fun discernment_N : N;
+fun discharge_N : N;
+fun discharge_V : V;
+fun discharge_V2 : V2;
+fun disciple_N : N;
+fun disciplinarian_N : N;
+fun disciplinary_A : A;
+fun discipline_N : N;
+fun discipline_V2 : V2;
+fun disclaim_V2 : V2;
+fun disclaim_VS : VS;
+fun disclaimer_N : N;
+fun disclose_V : V;
+fun disclose_V2 : V2;
+fun disclose_VS : VS;
+fun disclosure_N : N;
+fun disco_N : N;
+fun discolour_V : V;
+fun discolour_V2 : V2;
+fun discolouration_N : N;
+fun discomfit_V2 : V2;
+fun discomfiture_N : N;
+fun discomfort_N : N;
+fun discommode_V2 : V2;
+fun discompose_V2 : V2;
+fun discomposure_N : N;
+fun disconcert_V2 : V2;
+fun disconcertingly_Adv : Adv;
+fun disconnect_V2 : V2;
+fun disconnected_A : A;
+fun disconsolate_A : A;
+fun discontent_N : N;
+fun discontent_V2 : V2;
+fun discontentedly_Adv : Adv;
+fun discontinuance_N : N;
+fun discontinue_V : V;
+fun discontinue_V2 : V2;
+fun discontinuity_N : N;
+fun discontinuous_A : A;
+fun discord_N : N;
+fun discordance_N : N;
+fun discordant_A : A;
+fun discotheque_N : N;
+fun discount_N : N;
+fun discount_V : V;
+fun discount_V2 : V2;
+fun discountenance_V2 : V2;
+fun discourage_V2 : V2;
+fun discouragement_N : N;
+fun discourse_N : N;
+fun discourse_V : V;
+fun discourteous_A : A;
+fun discourtesy_N : N;
+fun discover_V : V;
+fun discover_V2 : V2;
+fun discover_V2V : V2V;
+fun discover_VS : VS;
+fun discoverer_N : N;
+fun discovery_N : N;
+fun discredit_N : N;
+fun discredit_V2 : V2;
+fun discreditable_A : A;
+fun discreet_A : A;
+fun discrepancy_N : N;
+fun discrete_A : A;
+fun discreteness_N : N;
+fun discretion_N : N;
+fun discretionary_A : A;
+fun discriminate_V : V;
+fun discriminate_V2 : V2;
+fun discriminating_A : A;
+fun discrimination_N : N;
+fun discriminatory_A : A;
+fun discursive_A : A;
+fun discursiveness_N : N;
+fun discus_N : N;
+fun discuss_V2 : V2;
+fun discuss_VS : VS;
+fun discussion_N : N;
+fun disdain_N : N;
+fun disdain_V2 : V2;
+fun disdainful_A : A;
+fun disease_N : N;
+fun diseased_A : A;
+fun disembark_V : V;
+fun disembark_V2 : V2;
+fun disembarkation_N : N;
+fun disembarrass_V2 : V2;
+fun disembarrassment_N : N;
+fun disembody_V2 : V2;
+fun disembowel_V2 : V2;
+fun disenchant_V2 : V2;
+fun disenchantment_N : N;
+fun disencumber_V2 : V2;
+fun disenfranchise_V2 : V2;
+fun disengage_V : V;
+fun disengage_V2 : V2;
+fun disengagement_N : N;
+fun disentangle_V : V;
+fun disentangle_V2 : V2;
+fun disentanglement_N : N;
+fun disequilibrium_N : N;
+fun disestablish_V2 : V2;
+fun disestablishment_N : N;
+fun disfavour_N : N;
+fun disfavour_V2 : V2;
+fun disfigure_V2 : V2;
+fun disfigurement_N : N;
+fun disforest_V2 : V2;
+fun disfranchise_V2 : V2;
+fun disfranchisement_N : N;
+fun disgorge_V2 : V2;
+fun disgrace_N : N;
+fun disgrace_V2 : V2;
+fun disgraceful_A : A;
+fun disgruntled_A : A;
+fun disguise_N : N;
+fun disguise_V2 : V2;
+fun disgust_N : N;
+fun disgust_V2 : V2;
+fun disgustedly_Adv : Adv;
+fun disgusting_A : A;
+fun dish_N : N;
+fun dish_V2 : V2;
+fun dishabille_N : N;
+fun disharmonious_A : A;
+fun disharmony_N : N;
+fun dishcloth_N : N;
+fun dishearten_V2 : V2;
+fun dishevelled_A : A;
+fun dishful_N : N;
+fun dishonest_A : A;
+fun dishonesty_N : N;
+fun dishonour_N : N;
+fun dishonour_V2 : V2;
+fun dishonourable_A : A;
+fun dishwasher_N : N;
+fun dishwater_N : N;
+fun dishy_A : A;
+fun disillusion_N : N;
+fun disillusion_V2 : V2;
+fun disillusionment_N : N;
+fun disincentive_N : N;
+fun disinclination_N : N;
+fun disincline_V2 : V2;
+fun disincline_V2V : V2V;
+fun disinfect_V2 : V2;
+fun disinfectant_A : A;
+fun disinfectant_N : N;
+fun disinfection_N : N;
+fun disinfest_V2 : V2;
+fun disinfestation_N : N;
+fun disinflation_N : N;
+fun disingenuous_A : A;
+fun disingenuousness_N : N;
+fun disinherit_V2 : V2;
+fun disinheritance_N : N;
+fun disintegrate_V : V;
+fun disintegrate_V2 : V2;
+fun disintegration_N : N;
+fun disinter_V2 : V2;
+fun disinterested_A : A;
+fun disinterestedness_N : N;
+fun disinterment_N : N;
+fun disjoint_V2 : V2;
+fun disjointed_A : A;
+fun disjointedness_N : N;
+fun disjunctive_A : A;
+fun disk_N : N;
+fun dislike_N : N;
+fun dislike_V2 : V2;
+fun dislocate_V2 : V2;
+fun dislocation_N : N;
+fun dislodge_V2 : V2;
+fun dislodgement_N : N;
+fun disloyal_A : A;
+fun disloyalty_N : N;
+fun dismal_A : A;
+fun dismantle_V2 : V2;
+fun dismantlement_N : N;
+fun dismay_N : N;
+fun dismay_V : V;
+fun dismay_V2 : V2;
+fun dismember_V2 : V2;
+fun dismemberment_N : N;
+fun dismiss_V2 : V2;
+fun dismissal_N : N;
+fun dismount_V : V;
+fun dismount_V2 : V2;
+fun dismounted_A : A;
+fun disobedience_N : N;
+fun disobedient_A : A;
+fun disobey_V2 : V2;
+fun disoblige_V2 : V2;
+fun disorder_N : N;
+fun disorder_V2 : V2;
+fun disorderly_A : A;
+fun disorganization_N : N;
+fun disorganize_V2 : V2;
+fun disorient_V2 : V2;
+fun disorientate_V2 : V2;
+fun disown_V2 : V2;
+fun disparage_V2 : V2;
+fun disparagement_N : N;
+fun disparagingly_Adv : Adv;
+fun disparate_A : A;
+fun disparity_N : N;
+fun dispassionate_A : A;
+fun dispassionateness_N : N;
+fun dispatch_N : N;
+fun dispatch_V2 : V2;
+fun dispatch_V2V : V2V;
+fun dispatch_box_N : N;
+fun dispatch_rider_N : N;
+fun dispel_V2 : V2;
+fun dispensable_A : A;
+fun dispensary_N : N;
+fun dispensation_N : N;
+fun dispense_V : V;
+fun dispense_V2 : V2;
+fun dispenser_N : N;
+fun dispersal_N : N;
+fun disperse_V : V;
+fun disperse_V2 : V2;
+fun dispersion_N : N;
+fun dispirit_V2 : V2;
+fun dispiritedly_Adv : Adv;
+fun displace_V2 : V2;
+fun displacement_N : N;
+fun display_N : N;
+fun display_V2 : V2;
+fun display_VS : VS;
+fun displease_V2 : V2;
+fun displeasing_A : A;
+fun displeasure_N : N;
+fun disport_V2 : V2;
+fun disposable_A : A;
+fun disposal_N : N;
+fun dispose_V : V;
+fun dispose_V2 : V2;
+fun disposition_N : N;
+fun dispossess_V2 : V2;
+fun dispossession_N : N;
+fun disproof_N : N;
+fun disproportion_N : N;
+fun disproportionate_A : A;
+fun disprove_V2 : V2;
+fun disprove_VS : VS;
+fun disputable_A : A;
+fun disputant_N : N;
+fun disputation_N : N;
+fun disputatious_A : A;
+fun dispute_N : N;
+fun dispute_V : V;
+fun dispute_V2 : V2;
+fun disqualification_N : N;
+fun disqualify_V2 : V2;
+fun disquiet_N : N;
+fun disquiet_V2 : V2;
+fun disquieting_A : A;
+fun disquietude_N : N;
+fun disquisition_N : N;
+fun disregard_N : N;
+fun disregard_V2 : V2;
+fun disrepair_N : N;
+fun disreputable_A : A;
+fun disrepute_N : N;
+fun disrespect_N : N;
+fun disrespectful_A : A;
+fun disrobe_V : V;
+fun disrobe_V2 : V2;
+fun disrupt_V : V;
+fun disrupt_V2 : V2;
+fun disruption_N : N;
+fun disruptive_A : A;
+fun dissatisfaction_N : N;
+fun dissatisfy_V2 : V2;
+fun dissect_V2 : V2;
+fun dissection_N : N;
+fun dissemble_V : V;
+fun dissemble_V2 : V2;
+fun dissembler_N : N;
+fun disseminate_V : V;
+fun disseminate_V2 : V2;
+fun dissemination_N : N;
+fun dissension_N : N;
+fun dissent_N : N;
+fun dissent_V : V;
+fun dissenter_N : N;
+fun dissertation_N : N;
+fun disservice_N : N;
+fun dissever_V2 : V2;
+fun dissidence_N : N;
+fun dissident_A : A;
+fun dissident_N : N;
+fun dissimilar_A : A;
+fun dissimilarity_N : N;
+fun dissimilitude_N : N;
+fun dissimulate_V : V;
+fun dissimulate_V2 : V2;
+fun dissimulation_N : N;
+fun dissipate_V : V;
+fun dissipate_V2 : V2;
+fun dissipated_A : A;
+fun dissipation_N : N;
+fun dissociate_V2 : V2;
+fun dissociation_N : N;
+fun dissolubility_N : N;
+fun dissoluble_A : A;
+fun dissolute_A : A;
+fun dissolution_N : N;
+fun dissolve_V : V;
+fun dissolve_V2 : V2;
+fun dissonance_N : N;
+fun dissonant_A : A;
+fun dissuade_V2 : V2;
+fun dissuasion_N : N;
+fun dissyllable_N : N;
+fun distaff_N : N;
+fun distance_N : N;
+fun distance_V2 : V2;
+fun distant_A : A;
+fun distaste_N : N;
+fun distasteful_A : A;
+fun distastefulness_N : N;
+fun distemper_N : N;
+fun distemper_V2 : V2;
+fun distend_V : V;
+fun distend_V2 : V2;
+fun distension_N : N;
+fun distil_V : V;
+fun distil_V2 : V2;
+fun distillation_N : N;
+fun distiller_N : N;
+fun distillery_N : N;
+fun distinct_A : A;
+fun distinction_N : N;
+fun distinctive_A : A;
+fun distinctiveness_N : N;
+fun distinctness_N : N;
+fun distinguish_V : V;
+fun distinguish_V2 : V2;
+fun distinguishable_A : A;
+fun distinguished_A : A;
+fun distort_V2 : V2;
+fun distortion_N : N;
+fun distract_V : V;
+fun distract_V2 : V2;
+fun distracted_A : A;
+fun distraction_N : N;
+fun distrain_V : V;
+fun distraint_N : N;
+fun distrait_A : A;
+fun distraught_A : A;
+fun distress_N : N;
+fun distress_V2 : V2;
+fun distressful_A : A;
+fun distressing_A : A;
+fun distribute_V2 : V2;
+fun distribution_N : N;
+fun distributive_A : A;
+fun distributor_N : N;
+fun district_N : N;
+fun distrust_N : N;
+fun distrust_V2 : V2;
+fun distrustful_A : A;
+fun distrustfulness_N : N;
+fun disturb_V2 : V2;
+fun disturbance_N : N;
+fun disturbingly_Adv : Adv;
+fun disunion_N : N;
+fun disunite_V : V;
+fun disunite_V2 : V2;
+fun disunity_N : N;
+fun disuse_N : N;
+fun disused_A : A;
+fun disyllabic_A : A;
+fun disyllable_N : N;
+fun ditch_N : N;
+fun ditch_V : V;
+fun ditch_V2 : V2;
+fun dither_N : N;
+fun dither_V : V;
+fun ditto_N : N;
+fun ditty_N : N;
+fun diurnal_A : A;
+fun divagate_V : V;
+fun divagation_N : N;
+fun divan_N : N;
+fun divan_bed_N : N;
+fun dive_N : N;
+fun dive_V : V;
+fun dive_bomb_V : V;
+fun dive_bomb_V2 : V2;
+fun dive_bomber_N : N;
+fun diver_N : N;
+fun diverge_V : V;
+fun divergence_N : N;
+fun divergency_N : N;
+fun divergent_A : A;
+fun divers_A : A;
+fun diverse_A : A;
+fun diversification_N : N;
+fun diversify_V : V;
+fun diversify_V2 : V2;
+fun diversion_N : N;
+fun diversionary_A : A;
+fun diversionist_N : N;
+fun diversity_N : N;
+fun divert_V : V;
+fun divert_V2 : V2;
+fun diverting_A : A;
+fun dives_PN : PN;
+fun divest_V2 : V2;
+fun divide_N : N;
+fun divide_V : V;
+fun divide_V2 : V2;
+fun dividend_N : N;
+fun dividend_warrant_N : N;
+fun divination_N : N;
+fun divine_A : A;
+fun divine_N : N;
+fun divine_V : V;
+fun divine_V2 : V2;
+fun diviner_N : N;
+fun diving_bell_N : N;
+fun diving_board_N : N;
+fun diving_dress_N : N;
+fun diving_suit_N : N;
+fun divinity_N : N;
+fun divisible_A : A;
+fun division_N : N;
+fun divisional_A : A;
+fun divisor_N : N;
+fun divorce_N : N;
+fun divorce_V2 : V2;
+fun divorcee_N : N;
+fun divot_N : N;
+fun divulge_V2 : V2;
+fun divulgence_N : N;
+fun divvy_N : N;
+fun dixie_N : N;
+fun diy_N : N;
+fun dizzily_Adv : Adv;
+fun dizziness_N : N;
+fun dizzy_A : A;
+fun dizzy_V2 : V2;
+fun dj_N : N;
+fun djibouti_PN : PN;
+fun djiboutian_A : A;
+fun djiboutian_N : N;
+fun djinn_N : N;
+fun djs_N : N;
+fun dlitt_N : N;
+fun dm_N : N;
+fun dna_N : N;
+fun dnepropetrovsk_PN : PN;
+fun do_N : N;
+fun do_V : V;
+fun do_V2 : V2;
+fun do_gooder_N : N;
+fun dobbin_N : N;
+fun docile_A : A;
+fun docility_N : N;
+fun dock_N : N;
+fun dock_V : V;
+fun dock_V2 : V2;
+fun docker_N : N;
+fun docket_N : N;
+fun docket_V2 : V2;
+fun dockyard_N : N;
+fun doctor_N : N;
+fun doctor_V2 : V2;
+fun doctorate_N : N;
+fun doctrinaire_A : A;
+fun doctrinaire_N : N;
+fun doctrinal_A : A;
+fun doctrine_N : N;
+fun document_N : N;
+fun document_V2 : V2;
+fun documentary_A : A;
+fun documentation_N : N;
+fun dodder_V : V;
+fun dodderer_N : N;
+fun doddering_A : A;
+fun doddery_A : A;
+fun dodge_N : N;
+fun dodge_V : V;
+fun dodge_V2 : V2;
+fun dodgem_N : N;
+fun dodger_N : N;
+fun dodgy_A : A;
+fun dodo_N : N;
+fun doe_N : N;
+fun doer_N : N;
+fun doff_V2 : V2;
+fun dog's_tooth_N : N;
+fun dog_N : N;
+fun dog_V2 : V2;
+fun dog_biscuit_N : N;
+fun dog_cart_N : N;
+fun dog_collar_N : N;
+fun dog_eared_A : A;
+fun dog_like_A : A;
+fun doge_N : N;
+fun dogfish_N : N;
+fun dogged_A : A;
+fun doggedness_N : N;
+fun doggerel_N : N;
+fun doggie_N : N;
+fun doggo_Adv : Adv;
+fun doggy_N : N;
+fun doghouse_N : N;
+fun dogma_N : N;
+fun dogmatic_A : A;
+fun dogmatically_Adv : Adv;
+fun dogmatism_N : N;
+fun dogmatize_V : V;
+fun dogmatize_V2 : V2;
+fun dogsbody_N : N;
+fun dogtooth_N : N;
+fun dogtrot_N : N;
+fun dogwatch_N : N;
+fun dogwood_N : N;
+fun doh_N : N;
+fun doily_N : N;
+fun dole_N : N;
+fun dole_V2 : V2;
+fun doleful_A : A;
+fun doll_N : N;
+fun doll_V : V;
+fun doll_V2 : V2;
+fun dollar_N : N;
+fun dollop_N : N;
+fun dolly_N : N;
+fun dolly_PN : PN;
+fun dolmen_N : N;
+fun dolour_N : N;
+fun dolourous_A : A;
+fun dolphin_N : N;
+fun dolt_N : N;
+fun doltish_A : A;
+fun domain_N : N;
+fun dome_N : N;
+fun domed_A : A;
+fun domesday_PN : PN;
+fun domestic_A : A;
+fun domestically_Adv : Adv;
+fun domesticate_V2 : V2;
+fun domestication_N : N;
+fun domesticity_N : N;
+fun domicile_N : N;
+fun domiciliary_A : A;
+fun dominance_N : N;
+fun dominant_A : A;
+fun dominate_V : V;
+fun dominate_V2 : V2;
+fun domination_N : N;
+fun domineer_V : V;
+fun domineering_A : A;
+fun dominic_PN : PN;
+fun dominica_PN : PN;
+fun dominican_A : A;
+fun dominican_N : N;
+fun dominie_N : N;
+fun dominion_N : N;
+fun domino_N : N;
+fun don't_know_N : N;
+fun don_N : N;
+fun don_PN : PN;
+fun don_V2 : V2;
+fun donald_PN : PN;
+fun donate_V : V;
+fun donate_V2 : V2;
+fun donation_N : N;
+fun doncaster_PN : PN;
+fun done_VA : VA;
+fun donegal_PN : PN;
+fun donetsk_PN : PN;
+fun donjon_N : N;
+fun donkey_N : N;
+fun donkey_jacket_N : N;
+fun donkey_work_N : N;
+fun donnish_A : A;
+fun donor_N : N;
+fun doodle_V : V;
+fun doodlebug_N : N;
+fun doom_N : N;
+fun doom_V2 : V2;
+fun doomsday_PN : PN;
+fun door_N : N;
+fun door_to_door_A : A;
+fun doorbell_N : N;
+fun doorcase_N : N;
+fun doorframe_N : N;
+fun doorhandle_N : N;
+fun doorkeeper_N : N;
+fun doorknob_N : N;
+fun doorknocker_N : N;
+fun doorman_N : N;
+fun doormat_N : N;
+fun doornail_N : N;
+fun doorplate_N : N;
+fun doorpost_N : N;
+fun doorstep_N : N;
+fun doorstopper_N : N;
+fun doorway_N : N;
+fun dope_N : N;
+fun dope_V2 : V2;
+fun dopey_A : A;
+fun dora_PN : PN;
+fun dorchester_PN : PN;
+fun dordrecht_PN : PN;
+fun doreen_PN : PN;
+fun doric_A : A;
+fun doris_PN : PN;
+fun dorking_PN : PN;
+fun dormant_A : A;
+fun dormer_N : N;
+fun dormer_window_N : N;
+fun dormitory_N : N;
+fun dormouse_N : N;
+fun dorothy_PN : PN;
+fun dorsal_A : A;
+fun dorset_PN : PN;
+fun dortmund_PN : PN;
+fun dory_N : N;
+fun dosage_N : N;
+fun dose_N : N;
+fun dose_V2 : V2;
+fun doss_V : V;
+fun doss_house_N : N;
+fun dosser_N : N;
+fun dossier_N : N;
+fun dot_N : N;
+fun dot_V2 : V2;
+fun dotage_N : N;
+fun dotard_N : N;
+fun dote_V : V;
+fun dottle_N : N;
+fun dotty_A : A;
+fun douai_PN : PN;
+fun double_A : A;
+fun double_Adv : Adv;
+fun double_N : N;
+fun double_V : V;
+fun double_V2 : V2;
+fun double_barrelled_A : A;
+fun double_bass_N : N;
+fun double_bedded_A : A;
+fun double_breasted_A : A;
+fun double_check_V2 : V2;
+fun double_cross_N : N;
+fun double_cross_V2 : V2;
+fun double_dealer_N : N;
+fun double_dealing_A : A;
+fun double_dealing_N : N;
+fun double_decker_N : N;
+fun double_dutch_N : N;
+fun double_dyed_A : A;
+fun double_edged_A : A;
+fun double_entry_N : N;
+fun double_faced_A : A;
+fun double_first_N : N;
+fun double_jointed_A : A;
+fun double_park_V : V;
+fun double_park_V2 : V2;
+fun double_quick_A : A;
+fun double_quick_Adv : Adv;
+fun double_spacing_N : N;
+fun double_talk_N : N;
+fun double_think_N : N;
+fun doublet_N : N;
+fun doubloon_N : N;
+fun doubt_N : N;
+fun doubt_V2 : V2;
+fun doubt_VS : VS;
+fun doubtful_A : A;
+fun doubtless_Adv : Adv;
+fun douche_N : N;
+fun doug_PN : PN;
+fun dough_N : N;
+fun doughnut_N : N;
+fun doughty_A : A;
+fun doughy_A : A;
+fun douglas_PN : PN;
+fun dour_A : A;
+fun douse_V2 : V2;
+fun dove_N : N;
+fun dovecote_N : N;
+fun dover_PN : PN;
+fun dovetail_N : N;
+fun dovetail_V : V;
+fun dovetail_V2 : V2;
+fun dowager_N : N;
+fun dowdily_Adv : Adv;
+fun dowdiness_N : N;
+fun dowdy_A : A;
+fun dowel_N : N;
+fun dower_N : N;
+fun dower_V2 : V2;
+fun down_Adv : Adv;
+fun down_N : N;
+fun down_PN : PN;
+fun down_Prep : Prep ;
+fun down_V2 : V2;
+fun down_and_out_N : N;
+fun down_market_A : A;
+fun down_to_earth_A : A;
+fun downbeat_N : N;
+fun downcast_A : A;
+fun downfall_N : N;
+fun downgrade_V2 : V2;
+fun downhearted_A : A;
+fun downhill_Adv : Adv;
+fun downing_street_PN : PN;
+fun downplay_V2 : V2;
+fun downpour_N : N;
+fun downright_A : A;
+fun downright_Adv : Adv;
+fun downrightness_N : N;
+fun downsize_V2 : V2;
+fun downstair_A : A;
+fun downstairs_A : A;
+fun downstairs_Adv : Adv;
+fun downstream_A : A;
+fun downstream_Adv : Adv;
+fun downtown_Adv : Adv;
+fun downtrodden_A : A;
+fun downward_A : A;
+fun downward_Adv : Adv;
+fun downwards_Adv : Adv;
+fun downy_A : A;
+fun dowry_N : N;
+fun dowse_V2 : V2;
+fun dowser_N : N;
+fun dowsing_N : N;
+fun doxology_N : N;
+fun doyen_N : N;
+fun doyley_N : N;
+fun doyly_N : N;
+fun doz_N : N;
+fun doze_N : N;
+fun doze_V : V;
+fun dozen_N : N;
+fun dphil_N : N;
+fun dr_PN : PN;
+fun drab_A : A;
+fun drabness_N : N;
+fun drachm_N : N;
+fun drachma_N : N;
+fun draconian_A : A;
+fun draft_N : N;
+fun draft_V2 : V2;
+fun draftee_N : N;
+fun drafting_N : N;
+fun draftsman_N : N;
+fun drag_N : N;
+fun drag_V : V;
+fun drag_V2 : V2;
+fun draggled_A : A;
+fun dragnet_N : N;
+fun dragoman_N : N;
+fun dragon_N : N;
+fun dragonfly_N : N;
+fun dragoon_N : N;
+fun dragoon_V2 : V2;
+fun drain_N : N;
+fun drain_V : V;
+fun drain_V2 : V2;
+fun drainage_N : N;
+fun drainage_basin_N : N;
+fun draining_board_N : N;
+fun drainpipe_N : N;
+fun drake_N : N;
+fun dram_N : N;
+fun drama_N : N;
+fun dramatic_A : A;
+fun dramatically_Adv : Adv;
+fun dramatics_N : N;
+fun dramatist_N : N;
+fun dramatization_N : N;
+fun dramatize_V2 : V2;
+fun drape_N : N;
+fun drape_V2 : V2;
+fun draper_N : N;
+fun drapery_N : N;
+fun drastic_A : A;
+fun drastically_Adv : Adv;
+fun drat_V2 : V2;
+fun draught_N : N;
+fun draught_V2 : V2;
+fun draught_horse_N : N;
+fun draughts_N : N;
+fun draughtsman_N : N;
+fun draughty_A : A;
+fun draw_N : N;
+fun draw_V : V;
+fun draw_V2 : V2;
+fun draw_V2V : V2V;
+fun drawback_N : N;
+fun drawbridge_N : N;
+fun drawer_N : N;
+fun drawing_N : N;
+fun drawing_board_N : N;
+fun drawing_pin_N : N;
+fun drawing_room_N : N;
+fun drawl_N : N;
+fun drawl_V : V;
+fun drawl_V2 : V2;
+fun dray_N : N;
+fun drayton_PN : PN;
+fun dread_N : N;
+fun dread_V : V;
+fun dread_V2 : V2;
+fun dreaded_A : A;
+fun dreadful_A : A;
+fun dreadfulness_N : N;
+fun dreadnought_N : N;
+fun dream_N : N;
+fun dream_V : V;
+fun dream_V2 : V2;
+fun dreamer_N : N;
+fun dreamily_Adv : Adv;
+fun dreamland_N : N;
+fun dreamless_A : A;
+fun dreamlike_A : A;
+fun dreamworld_N : N;
+fun dreamy_A : A;
+fun drear_A : A;
+fun drearily_Adv : Adv;
+fun dreariness_N : N;
+fun dreary_A : A;
+fun dredge_N : N;
+fun dredge_V : V;
+fun dredge_V2 : V2;
+fun dredger_N : N;
+fun drench_V2 : V2;
+fun drenching_N : N;
+fun dresden_PN : PN;
+fun dress_N : N;
+fun dress_V : V;
+fun dress_V2 : V2;
+fun dress_hanger_N : N;
+fun dressage_N : N;
+fun dresser_N : N;
+fun dressing_N : N;
+fun dressing_case_N : N;
+fun dressing_down_N : N;
+fun dressing_gown_N : N;
+fun dressing_table_N : N;
+fun dressmaker_N : N;
+fun dressmaking_N : N;
+fun dressy_A : A;
+fun dribble_V : V;
+fun dribble_V2 : V2;
+fun dribbler_N : N;
+fun driblet_N : N;
+fun drier_N : N;
+fun driffield_PN : PN;
+fun drift_N : N;
+fun drift_V : V;
+fun drift_V2 : V2;
+fun drift_ice_N : N;
+fun drift_net_N : N;
+fun drift_wood_N : N;
+fun driftage_N : N;
+fun drifter_N : N;
+fun drill_N : N;
+fun drill_V : V;
+fun drill_V2 : V2;
+fun drily_Adv : Adv;
+fun drink_N : N;
+fun drink_V : V;
+fun drink_V2 : V2;
+fun drinkable_A : A;
+fun drinker_N : N;
+fun drinking_N : N;
+fun drinking_bout_N : N;
+fun drinking_fountain_N : N;
+fun drinking_song_N : N;
+fun drinking_water_N : N;
+fun drip_N : N;
+fun drip_V : V;
+fun drip_V2 : V2;
+fun drip_dry_A : A;
+fun drip_dry_V2 : V2;
+fun dripping_N : N;
+fun dripping_pan_N : N;
+fun drive_N : N;
+fun drive_V : V;
+fun drive_V2 : V2;
+fun drive_V2V : V2V;
+fun drive_VS : VS;
+fun drive_in_N : N;
+fun drivel_N : N;
+fun drivel_V : V;
+fun driveller_N : N;
+fun driver_N : N;
+fun driveway_N : N;
+fun driving_belt_N : N;
+fun driving_wheel_N : N;
+fun drizzle_N : N;
+fun drizzle_V : V;
+fun drizzly_A : A;
+fun drogheda_PN : PN;
+fun drogue_N : N;
+fun droitwich_PN : PN;
+fun droll_A : A;
+fun drollery_N : N;
+fun dromedary_N : N;
+fun drone_N : N;
+fun drone_V : V;
+fun drone_V2 : V2;
+fun dronfield_PN : PN;
+fun drool_V : V;
+fun droop_N : N;
+fun droop_V : V;
+fun droop_V2 : V2;
+fun droopingly_Adv : Adv;
+fun drop_N : N;
+fun drop_V : V;
+fun drop_V2 : V2;
+fun drop_curtain_N : N;
+fun drop_kick_N : N;
+fun dropout_N : N;
+fun dropping_zone_N : N;
+fun dropsical_A : A;
+fun dropsy_N : N;
+fun droshky_N : N;
+fun dross_N : N;
+fun drought_N : N;
+fun drove_N : N;
+fun drover_N : N;
+fun drown_V : V;
+fun drown_V2 : V2;
+fun drowse_N : N;
+fun drowse_V : V;
+fun drowse_V2 : V2;
+fun drowsily_Adv : Adv;
+fun drowsiness_N : N;
+fun drowsy_A : A;
+fun drub_V2 : V2;
+fun drubbing_N : N;
+fun drudge_N : N;
+fun drudge_V : V;
+fun drudgery_N : N;
+fun drug_N : N;
+fun drug_V2 : V2;
+fun drugget_N : N;
+fun druggist_N : N;
+fun drugstore_N : N;
+fun druid_N : N;
+fun drum_N : N;
+fun drum_V : V;
+fun drum_V2 : V2;
+fun drum_major_N : N;
+fun drum_majorette_N : N;
+fun drumfire_N : N;
+fun drumhead_A : A;
+fun drummer_N : N;
+fun drumstick_N : N;
+fun drunk_A : A;
+fun drunk_N : N;
+fun drunkard_N : N;
+fun drunken_A : A;
+fun drunkenness_N : N;
+fun drupe_N : N;
+fun dry_A : A;
+fun dry_V : V;
+fun dry_V2 : V2;
+fun dry_clean_V2 : V2;
+fun dry_cleaner_N : N;
+fun dry_cleaning_N : N;
+fun dry_shod_A : A;
+fun dry_walling_N : N;
+fun dryad_N : N;
+fun dryer_N : N;
+fun dryness_N : N;
+fun dsc_N : N;
+fun dss_N : N;
+fun dti_N : N;
+fun dual_A : A;
+fun dub_V2 : V2;
+fun dub_VS : VS;
+fun dubbin_N : N;
+fun dubiety_N : N;
+fun dubious_A : A;
+fun dubiousness_N : N;
+fun dublin_PN : PN;
+fun dubliner_N : N;
+fun ducal_A : A;
+fun ducat_N : N;
+fun duce_N : N;
+fun duchess_N : N;
+fun duchy_N : N;
+fun duck_N : N;
+fun duck_V : V;
+fun duck_V2 : V2;
+fun duckbilled_A : A;
+fun ducking_N : N;
+fun ducking_stool_N : N;
+fun duckling_N : N;
+fun duckweed_N : N;
+fun ducky_N : N;
+fun duct_N : N;
+fun ductile_A : A;
+fun ductility_N : N;
+fun dud_A : A;
+fun dud_N : N;
+fun dude_N : N;
+fun dudgeon_N : N;
+fun dudley_PN : PN;
+fun due_A : A;
+fun due_Adv : Adv;
+fun due_N : N;
+fun duel_N : N;
+fun duel_V : V;
+fun duelist_N : N;
+fun duellist_N : N;
+fun duenna_N : N;
+fun duet_N : N;
+fun duffel_N : N;
+fun duffer_N : N;
+fun duffle_N : N;
+fun dug_N : N;
+fun dugong_N : N;
+fun dugout_N : N;
+fun duisburg_PN : PN;
+fun duke_N : N;
+fun dukedom_N : N;
+fun dukinfield_PN : PN;
+fun dulcet_A : A;
+fun dulcimer_N : N;
+fun dull_A : A;
+fun dull_V : V;
+fun dull_V2 : V2;
+fun dullard_N : N;
+fun dullness_N : N;
+fun dully_Adv : Adv;
+fun duly_Adv : Adv;
+fun dumb_A : A;
+fun dumbarton_PN : PN;
+fun dumbbell_N : N;
+fun dumbfound_V2 : V2;
+fun dumbness_N : N;
+fun dumbwaiter_N : N;
+fun dumdum_N : N;
+fun dumfries_PN : PN;
+fun dummy_N : N;
+fun dump_N : N;
+fun dump_V : V;
+fun dump_V2 : V2;
+fun dumper_N : N;
+fun dumpling_N : N;
+fun dumpy_A : A;
+fun dun_A : A;
+fun dun_N : N;
+fun dun_V2 : V2;
+fun dun_laoghaire_PN : PN;
+fun duncan_PN : PN;
+fun dunce_N : N;
+fun dundalk_PN : PN;
+fun dundee_PN : PN;
+fun dunderhead_N : N;
+fun dune_N : N;
+fun dunfermline_PN : PN;
+fun dung_N : N;
+fun dungeon_N : N;
+fun dunghill_N : N;
+fun dunk_V2 : V2;
+fun dunkirk_PN : PN;
+fun dunoon_PN : PN;
+fun dunstable_PN : PN;
+fun duodecimal_A : A;
+fun duodenal_A : A;
+fun duodenum_N : N;
+fun duologue_N : N;
+fun dupe_N : N;
+fun dupe_V2 : V2;
+fun dupl_PN : PN;
+fun duplex_A : A;
+fun duplicate_A : A;
+fun duplicate_N : N;
+fun duplicate_V2 : V2;
+fun duplication_N : N;
+fun duplicator_N : N;
+fun duplicity_N : N;
+fun durability_N : N;
+fun durable_A : A;
+fun durable_N : N;
+fun durance_N : N;
+fun duration_N : N;
+fun durban_PN : PN;
+fun durbar_N : N;
+fun duress_N : N;
+fun durham_PN : PN;
+fun during_Prep : Prep ;
+fun durrington_PN : PN;
+fun dursley_PN : PN;
+fun dusk_N : N;
+fun dusky_A : A;
+fun dusseldorf_PN : PN;
+fun dust_N : N;
+fun dust_V2 : V2;
+fun dust_bowl_N : N;
+fun dust_coat_N : N;
+fun dust_jacket_N : N;
+fun dust_sheet_N : N;
+fun dust_up_N : N;
+fun dust_wrapper_N : N;
+fun dustbin_N : N;
+fun dustcart_N : N;
+fun duster_N : N;
+fun dustman_N : N;
+fun dustpan_N : N;
+fun dusty_A : A;
+fun dutch_A : A;
+fun dutch_N : N;
+fun dutchman_N : N;
+fun duteous_A : A;
+fun dutiable_A : A;
+fun dutiful_A : A;
+fun duty_N : N;
+fun duty_free_A : A;
+fun duvet_N : N;
+fun dwarf_N : N;
+fun dwarf_V2 : V2;
+fun dwarfish_A : A;
+fun dwell_V : V;
+fun dweller_N : N;
+fun dwelling_N : N;
+fun dwelling_house_N : N;
+fun dwindle_V : V;
+fun dyarchy_N : N;
+fun dye_N : N;
+fun dye_V : V;
+fun dye_V2 : V2;
+fun dye_works_N : N;
+fun dyed_in_the_wool_A : A;
+fun dyer_N : N;
+fun dyestuff_N : N;
+fun dyfed_PN : PN;
+fun dyke_N : N;
+fun dyke_V : V;
+fun dyke_V2 : V2;
+fun dynamic_A : A;
+fun dynamic_N : N;
+fun dynamically_Adv : Adv;
+fun dynamism_N : N;
+fun dynamite_N : N;
+fun dynamite_V2 : V2;
+fun dynamo_N : N;
+fun dynast_N : N;
+fun dynastic_A : A;
+fun dynasty_N : N;
+fun dyne_N : N;
+fun dysentery_N : N;
+fun dyslexia_N : N;
+fun dyslexic_A : A;
+fun dyspepsia_N : N;
+fun dyspeptic_A : A;
+fun dyspeptic_N : N;
+fun e'en_Adv : Adv;
+fun e'er_Adv : Adv;
+fun each_Det : Det;
+fun eager_A : A;
+fun eagerness_N : N;
+fun eagle_N : N;
+fun eagle_eyed_A : A;
+fun eaglescliffe_PN : PN;
+fun eaglet_N : N;
+fun ealing_PN : PN;
+fun ear_N : N;
+fun ear_trumpet_N : N;
+fun earache_N : N;
+fun eardrop_N : N;
+fun eardrum_N : N;
+fun earful_N : N;
+fun earl_N : N;
+fun earl_shilton_PN : PN;
+fun earldom_N : N;
+fun early_A : A;
+fun early_Adv : Adv;
+fun early_warning_A : A;
+fun earmark_N : N;
+fun earmark_V2 : V2;
+fun earn_V : V;
+fun earn_V2 : V2;
+fun earn_VA : VA;
+fun earnest_A : A;
+fun earnest_N : N;
+fun earnest_money_N : N;
+fun earnestness_N : N;
+fun earphone_N : N;
+fun earpiece_N : N;
+fun earring_N : N;
+fun earshot_N : N;
+fun earth_N : N;
+fun earth_V2 : V2;
+fun earth_closet_N : N;
+fun earthen_A : A;
+fun earthenware_N : N;
+fun earthly_A : A;
+fun earthnut_N : N;
+fun earthquake_N : N;
+fun earthwork_N : N;
+fun earthworm_N : N;
+fun earthy_A : A;
+fun earwax_N : N;
+fun earwig_N : N;
+fun ease_N : N;
+fun ease_V : V;
+fun ease_V2 : V2;
+fun easel_N : N;
+fun easily_Adv : Adv;
+fun easington_PN : PN;
+fun east_A : A;
+fun east_Adv : Adv;
+fun east_N : N;
+fun east_dereham_PN : PN;
+fun east_grinstead_PN : PN;
+fun east_kilbride_PN : PN;
+fun east_retford_PN : PN;
+fun eastbourne_PN : PN;
+fun easter_N : N;
+fun easter_PN : PN;
+fun easterly_A : A;
+fun easterly_Adv : Adv;
+fun eastern_A : A;
+fun easternmost_A : A;
+fun eastleigh_PN : PN;
+fun eastward_A : A;
+fun eastward_Adv : Adv;
+fun eastwards_Adv : Adv;
+fun easy_A : A;
+fun easy_Adv : Adv;
+fun easy_V2V : V2V;
+fun easygoing_A : A;
+fun eat_V : V;
+fun eat_V2 : V2;
+fun eatable_A : A;
+fun eatable_N : N;
+fun eater_N : N;
+fun eating_apple_N : N;
+fun eating_house_N : N;
+fun eau_de_cologne_N : N;
+fun eau_de_vie_N : N;
+fun eavesdrop_V : V;
+fun eavesdropper_N : N;
+fun ebb_N : N;
+fun ebb_V : V;
+fun ebbtide_N : N;
+fun ebbw_vale_PN : PN;
+fun ebonite_N : N;
+fun ebony_A : A;
+fun ebony_N : N;
+fun ebullience_N : N;
+fun ebullient_A : A;
+fun ec_N : N;
+fun eccentric_A : A;
+fun eccentric_N : N;
+fun eccentricity_N : N;
+fun eccles_PN : PN;
+fun ecclesiastic_N : N;
+fun ecclesiastical_A : A;
+fun echelon_N : N;
+fun echo_N : N;
+fun echo_V : V;
+fun echo_V2 : V2;
+fun echo_sounder_N : N;
+fun echo_sounding_N : N;
+fun eclair_N : N;
+fun eclat_N : N;
+fun eclectic_A : A;
+fun eclecticism_N : N;
+fun eclipse_N : N;
+fun eclipse_V2 : V2;
+fun ecliptic_N : N;
+fun ecological_A : A;
+fun ecologist_N : N;
+fun ecology_N : N;
+fun economic_A : A;
+fun economical_A : A;
+fun economics_N : N;
+fun economist_N : N;
+fun economize_V : V;
+fun economize_V2 : V2;
+fun economy_N : N;
+fun ecosystem_N : N;
+fun ecstasy_N : N;
+fun ecstatic_A : A;
+fun ecstatically_Adv : Adv;
+fun ectoplasm_N : N;
+fun ecuador_PN : PN;
+fun ecuadorian_A : A;
+fun ecuadorian_N : N;
+fun ecumenical_A : A;
+fun eczema_N : N;
+fun ed_PN : PN;
+fun eddie_PN : PN;
+fun eddy_N : N;
+fun eddy_PN : PN;
+fun eddy_V : V;
+fun edelweiss_N : N;
+fun eden_PN : PN;
+fun edenbridge_PN : PN;
+fun edgar_PN : PN;
+fun edge_N : N;
+fun edge_V : V;
+fun edge_V2 : V2;
+fun edgeways_Adv : Adv;
+fun edgewise_Adv : Adv;
+fun edging_N : N;
+fun edgy_A : A;
+fun edibility_N : N;
+fun edible_A : A;
+fun edible_N : N;
+fun edict_N : N;
+fun edification_N : N;
+fun edifice_N : N;
+fun edify_V2 : V2;
+fun edinburgh_PN : PN;
+fun edit_V2 : V2;
+fun edith_PN : PN;
+fun edition_N : N;
+fun editor_N : N;
+fun editorial_A : A;
+fun editorial_N : N;
+fun edmund_PN : PN;
+fun edp_N : N;
+fun educate_V2 : V2;
+fun education_N : N;
+fun educational_A : A;
+fun educationalist_N : N;
+fun educationist_N : N;
+fun educator_N : N;
+fun educe_V2 : V2;
+fun edward_PN : PN;
+fun edwardian_A : A;
+fun edwardian_N : N;
+fun eec_N : N;
+fun eeg_N : N;
+fun eel_N : N;
+fun eerie_A : A;
+fun eerily_Adv : Adv;
+fun eeriness_N : N;
+fun eery_A : A;
+fun eff_V : V;
+fun efface_V2 : V2;
+fun effacement_N : N;
+fun effect_N : N;
+fun effect_V2 : V2;
+fun effective_A : A;
+fun effectiveness_N : N;
+fun effectual_A : A;
+fun effectuality_N : N;
+fun effectualness_N : N;
+fun effeminacy_N : N;
+fun effeminate_A : A;
+fun effendi_N : N;
+fun effervesce_V : V;
+fun effervescence_N : N;
+fun effervescent_A : A;
+fun effete_A : A;
+fun effeteness_N : N;
+fun efficacious_A : A;
+fun efficacy_N : N;
+fun efficiency_N : N;
+fun efficient_A : A;
+fun effigy_N : N;
+fun efflorescence_N : N;
+fun efflorescent_A : A;
+fun effluent_N : N;
+fun efflux_N : N;
+fun effort_N : N;
+fun effortless_A : A;
+fun effrontery_N : N;
+fun effulgence_N : N;
+fun effulgent_A : A;
+fun effusion_N : N;
+fun effusive_A : A;
+fun effusiveness_N : N;
+fun eft_N : N;
+fun efta_N : N;
+fun eg_PN : PN;
+fun egalitarian_A : A;
+fun egalitarian_N : N;
+fun egalitarianism_N : N;
+fun egg_N : N;
+fun egg_V2 : V2;
+fun egg_beater_N : N;
+fun egg_cup_N : N;
+fun egg_whisk_N : N;
+fun egghead_N : N;
+fun eggplant_N : N;
+fun eggshake_N : N;
+fun eggshell_N : N;
+fun eglantine_N : N;
+fun ego_N : N;
+fun egocentric_A : A;
+fun egoism_N : N;
+fun egoist_N : N;
+fun egoistic_A : A;
+fun egoistical_A : A;
+fun egotism_N : N;
+fun egotist_N : N;
+fun egotistic_A : A;
+fun egotistically_Adv : Adv;
+fun egotrip_N : N;
+fun egotrip_V : V;
+fun egregious_A : A;
+fun egremont_PN : PN;
+fun egress_N : N;
+fun egret_N : N;
+fun egypt_PN : PN;
+fun egyptian_A : A;
+fun egyptian_N : N;
+fun eiche_PN : PN;
+fun eiderdown_N : N;
+fun eightpence_N : N;
+fun eightpenny_A : A;
+fun eightsome_N : N;
+fun eileen_PN : PN;
+fun eindhoven_PN : PN;
+fun eisteddfod_N : N;
+fun either7or_DConj : Conj;
+fun either_Adv : Adv;
+fun either_Det : Det;
+fun ejaculate_V2 : V2;
+fun ejaculation_N : N;
+fun eject_V : V;
+fun eject_V2 : V2;
+fun ejection_N : N;
+fun ejector_N : N;
+fun ejector_seat_N : N;
+fun eke_V2 : V2;
+fun el_dorado_N : N;
+fun el_salvador_PN : PN;
+fun elaborate_A : A;
+fun elaborate_V : V;
+fun elaborate_V2 : V2;
+fun elaborateness_N : N;
+fun elaboration_N : N;
+fun elaine_PN : PN;
+fun elan_N : N;
+fun eland_N : N;
+fun elapse_V : V;
+fun elastic_A : A;
+fun elastic_N : N;
+fun elasticity_N : N;
+fun elasticized_A : A;
+fun elastoplast_N : N;
+fun elate_V2 : V2;
+fun elation_N : N;
+fun elbow_N : N;
+fun elbow_V2 : V2;
+fun elder_N : N;
+fun elderly_A : A;
+fun elderslie_PN : PN;
+fun eleanor_PN : PN;
+fun elect_A : A;
+fun elect_V : V;
+fun elect_V2 : V2;
+fun elect_V2V : V2V;
+fun elect_V3 : V3;
+fun elect_VS : VS;
+fun election_N : N;
+fun electioneering_N : N;
+fun elective_A : A;
+fun elector_N : N;
+fun electoral_A : A;
+fun electorate_N : N;
+fun electric_A : A;
+fun electrical_A : A;
+fun electrician_N : N;
+fun electricity_N : N;
+fun electrification_N : N;
+fun electrify_V2 : V2;
+fun electrocardiogram_N : N;
+fun electrocardiograph_N : N;
+fun electrochemistry_N : N;
+fun electrocute_V2 : V2;
+fun electrocution_N : N;
+fun electrode_N : N;
+fun electrolysis_N : N;
+fun electrolyte_N : N;
+fun electromagnet_N : N;
+fun electromagnetic_A : A;
+fun electromagnetism_N : N;
+fun electron_N : N;
+fun electronic_A : A;
+fun electronically_Adv : Adv;
+fun electronics_N : N;
+fun electroplate_N : N;
+fun electroplate_V2 : V2;
+fun electrostatic_A : A;
+fun eleemosynary_A : A;
+fun elegance_N : N;
+fun elegant_A : A;
+fun elegiac_A : A;
+fun elegy_N : N;
+fun element_N : N;
+fun elemental_A : A;
+fun elementary_A : A;
+fun elephant_N : N;
+fun elephantiasis_N : N;
+fun elephantine_A : A;
+fun elevate_V2 : V2;
+fun elevation_N : N;
+fun elevator_N : N;
+fun elf_N : N;
+fun elfin_A : A;
+fun elfish_A : A;
+fun elgin_PN : PN;
+fun elicit_V2 : V2;
+fun elicitation_N : N;
+fun elide_V2 : V2;
+fun eligibility_N : N;
+fun eligible_A : A;
+fun eliminate_V2 : V2;
+fun elimination_N : N;
+fun elision_N : N;
+fun elite_N : N;
+fun elitism_N : N;
+fun elitist_N : N;
+fun elixir_N : N;
+fun eliza_PN : PN;
+fun elizabeth_PN : PN;
+fun elizabethan_A : A;
+fun elizabethan_N : N;
+fun elk_N : N;
+fun elland_PN : PN;
+fun ellen_PN : PN;
+fun ellesmere_PN : PN;
+fun ellesmere_port_PN : PN;
+fun ellie_PN : PN;
+fun ellipse_N : N;
+fun ellipsis_N : N;
+fun elliptic_A : A;
+fun elliptical_A : A;
+fun elloughton_PN : PN;
+fun elm_N : N;
+fun elocution_N : N;
+fun elocutionary_A : A;
+fun elocutionist_N : N;
+fun elongate_V : V;
+fun elongate_V2 : V2;
+fun elongation_N : N;
+fun elope_V : V;
+fun elopement_N : N;
+fun eloquence_N : N;
+fun eloquent_A : A;
+fun else_Adv : Adv;
+fun elsewhere_Adv : Adv;
+fun elsie_PN : PN;
+fun elstree_PN : PN;
+fun elucidate_V2 : V2;
+fun elucidation_N : N;
+fun elude_V2 : V2;
+fun elusive_A : A;
+fun elver_N : N;
+fun elvish_A : A;
+fun ely_PN : PN;
+fun elysian_A : A;
+fun elysium_PN : PN;
+fun emaciate_V2 : V2;
+fun emaciation_N : N;
+fun emanate_V : V;
+fun emanation_N : N;
+fun emancipate_V2 : V2;
+fun emancipation_N : N;
+fun emasculate_V2 : V2;
+fun emasculation_N : N;
+fun embalm_V2 : V2;
+fun embalmment_N : N;
+fun embankment_N : N;
+fun embargo_N : N;
+fun embargo_V2 : V2;
+fun embark_V : V;
+fun embark_V2 : V2;
+fun embarkation_N : N;
+fun embarrass_V2 : V2;
+fun embarrassing_A : A;
+fun embarrassment_N : N;
+fun embassy_N : N;
+fun embattled_A : A;
+fun embed_V2 : V2;
+fun embellish_V2 : V2;
+fun embellishment_N : N;
+fun ember_N : N;
+fun embezzle_V2 : V2;
+fun embezzlement_N : N;
+fun embitter_V2 : V2;
+fun embitterment_N : N;
+fun emblazon_V2 : V2;
+fun emblem_N : N;
+fun emblematic_A : A;
+fun embodiment_N : N;
+fun embody_V2 : V2;
+fun embolden_V2 : V2;
+fun embonpoint_A : A;
+fun embonpoint_N : N;
+fun emboss_V2 : V2;
+fun embrace_N : N;
+fun embrace_V : V;
+fun embrace_V2 : V2;
+fun embrasure_N : N;
+fun embrocation_N : N;
+fun embroider_V : V;
+fun embroider_V2 : V2;
+fun embroidery_N : N;
+fun embroil_V : V;
+fun embroil_V2 : V2;
+fun embryo_N : N;
+fun embryonic_A : A;
+fun emeer_N : N;
+fun emend_V2 : V2;
+fun emendation_N : N;
+fun emerald_N : N;
+fun emerge_V : V;
+fun emerge_V2 : V2;
+fun emerge_V2V : V2V;
+fun emerge_VS : VS;
+fun emergence_N : N;
+fun emergency_N : N;
+fun emergent_A : A;
+fun emeritus_A : A;
+fun emery_N : N;
+fun emetic_N : N;
+fun emigrant_N : N;
+fun emigrate_V : V;
+fun emigrate_V2V : V2V;
+fun emigration_N : N;
+fun emigre_N : N;
+fun emily_PN : PN;
+fun eminence_N : N;
+fun eminent_A : A;
+fun emir_N : N;
+fun emirate_N : N;
+fun emissary_N : N;
+fun emission_N : N;
+fun emit_V2 : V2;
+fun emma_PN : PN;
+fun emolument_N : N;
+fun emotion_N : N;
+fun emotional_A : A;
+fun emotionless_A : A;
+fun emotive_A : A;
+fun empale_V2 : V2;
+fun empanel_V2 : V2;
+fun empathize_V : V;
+fun empathy_N : N;
+fun emperor_N : N;
+fun emphasis_N : N;
+fun emphasize_V2 : V2;
+fun emphasize_VS : VS;
+fun emphatic_A : A;
+fun emphatically_Adv : Adv;
+fun empire_N : N;
+fun empiric_A : A;
+fun empirical_A : A;
+fun empiricism_N : N;
+fun empiricist_N : N;
+fun emplacement_N : N;
+fun emplane_V : V;
+fun emplane_V2 : V2;
+fun employ_N : N;
+fun employ_V2 : V2;
+fun employable_A : A;
+fun employee_N : N;
+fun employer_N : N;
+fun employment_N : N;
+fun emporium_N : N;
+fun empower_V2 : V2;
+fun empower_V2V : V2V;
+fun empress_N : N;
+fun emptiness_N : N;
+fun empty_A : A;
+fun empty_N : N;
+fun empty_V : V;
+fun empty_V2 : V2;
+fun empty_handed_A : A;
+fun empty_headed_A : A;
+fun empurpled_A : A;
+fun empyrean_A : A;
+fun empyrean_N : N;
+fun emsworth_PN : PN;
+fun emu_N : N;
+fun emulate_V2 : V2;
+fun emulation_N : N;
+fun emulous_A : A;
+fun emulsify_V2 : V2;
+fun emulsion_N : N;
+fun en_clair_Adv : Adv;
+fun en_famille_Adv : Adv;
+fun en_masse_Adv : Adv;
+fun en_route_Adv : Adv;
+fun enable_V2 : V2;
+fun enable_V2V : V2V;
+fun enable_VS : VS;
+fun enabling_A : A;
+fun enact_V2 : V2;
+fun enact_V2V : V2V;
+fun enactment_N : N;
+fun enamel_N : N;
+fun enamel_V2 : V2;
+fun enamour_V2 : V2;
+fun enc_PN : PN;
+fun encamp_V : V;
+fun encamp_V2 : V2;
+fun encampment_N : N;
+fun encase_V2 : V2;
+fun encaustic_A : A;
+fun encephalitis_N : N;
+fun enchain_V2 : V2;
+fun enchant_V2 : V2;
+fun enchanter_N : N;
+fun enchantingly_Adv : Adv;
+fun enchantment_N : N;
+fun enchantress_N : N;
+fun encircle_V2 : V2;
+fun encirclement_N : N;
+fun enclave_N : N;
+fun enclose_V2 : V2;
+fun enclosure_N : N;
+fun encode_V2 : V2;
+fun encomium_N : N;
+fun encompass_V2 : V2;
+fun encore_N : N;
+fun encore_V2 : V2;
+fun encounter_N : N;
+fun encounter_V2 : V2;
+fun encourage_V2 : V2;
+fun encourage_V2V : V2V;
+fun encouragement_N : N;
+fun encouragingly_Adv : Adv;
+fun encroach_V : V;
+fun encroachment_N : N;
+fun encrust_V : V;
+fun encrust_V2 : V2;
+fun encrypt_V2 : V2;
+fun encumber_V2 : V2;
+fun encumbrance_N : N;
+fun encyclical_A : A;
+fun encyclical_N : N;
+fun encyclopaedia_N : N;
+fun encyclopaedic_A : A;
+fun encyclopedia_N : N;
+fun encyclopedic_A : A;
+fun end_N : N;
+fun end_V : V;
+fun end_V2 : V2;
+fun end_VA : VA;
+fun end_VS : VS;
+fun end_all_N : N;
+fun end_tail_V2 : V2;
+fun endanger_V2 : V2;
+fun endear_V2 : V2;
+fun endearingly_Adv : Adv;
+fun endearment_N : N;
+fun endeavour_N : N;
+fun endeavour_V : V;
+fun endemic_A : A;
+fun endemic_N : N;
+fun ending_N : N;
+fun endive_N : N;
+fun endless_A : A;
+fun endorse_V2 : V2;
+fun endorsement_N : N;
+fun endow_V2 : V2;
+fun endowment_N : N;
+fun endue_V2 : V2;
+fun endurable_A : A;
+fun endurance_N : N;
+fun endure_V : V;
+fun endure_V2 : V2;
+fun enduring_A : A;
+fun endways_Adv : Adv;
+fun endwise_Adv : Adv;
+fun enema_N : N;
+fun enemy_N : N;
+fun energetic_A : A;
+fun energetically_Adv : Adv;
+fun energy_N : N;
+fun enervate_V2 : V2;
+fun enfant_terrible_N : N;
+fun enfeeble_V2 : V2;
+fun enfield_PN : PN;
+fun enfold_V2 : V2;
+fun enforce_V2 : V2;
+fun enforceable_A : A;
+fun enforcement_N : N;
+fun enfranchise_V2 : V2;
+fun enfranchisement_N : N;
+fun engage_V : V;
+fun engage_V2 : V2;
+fun engagement_N : N;
+fun engaging_A : A;
+fun engender_V2 : V2;
+fun engine_N : N;
+fun engine_driver_N : N;
+fun engineer_N : N;
+fun engineer_V : V;
+fun engineer_V2 : V2;
+fun engineering_N : N;
+fun england_PN : PN;
+fun english_A : A;
+fun english_N : N;
+fun englishman_N : N;
+fun englishwoman_N : N;
+fun engraft_V2 : V2;
+fun engrave_V2 : V2;
+fun engraver_N : N;
+fun engraving_N : N;
+fun engross_V2 : V2;
+fun engulf_V2 : V2;
+fun enhance_V2 : V2;
+fun enhancement_N : N;
+fun enigma_N : N;
+fun enigmatic_A : A;
+fun enigmatically_Adv : Adv;
+fun enjoin_V2 : V2;
+fun enjoy_V2 : V2;
+fun enjoy_VV : VV;
+fun enjoyable_A : A;
+fun enjoyment_N : N;
+fun enkindle_V2 : V2;
+fun enlarge_V : V;
+fun enlarge_V2 : V2;
+fun enlargement_N : N;
+fun enlighten_V2 : V2;
+fun enlightened_A : A;
+fun enlightenment_N : N;
+fun enlist_V : V;
+fun enlist_V2 : V2;
+fun enlistment_N : N;
+fun enliven_V2 : V2;
+fun enmesh_V2 : V2;
+fun enmity_N : N;
+fun ennoble_V2 : V2;
+fun ennoblement_N : N;
+fun ennui_N : N;
+fun ennumerate_V2 : V2;
+fun enoch_PN : PN;
+fun enormity_N : N;
+fun enormous_A : A;
+fun enormousness_N : N;
+fun enough_A : A;
+fun enough_Adv : Adv;
+fun enough_N : N;
+fun enplane_V : V;
+fun enplane_V2 : V2;
+fun enquire_V : V;
+fun enquire_V2 : V2;
+fun enquirer_N : N;
+fun enquiringly_Adv : Adv;
+fun enquiry_N : N;
+fun enrage_V2 : V2;
+fun enrapture_V2 : V2;
+fun enrich_V2 : V2;
+fun enrichment_N : N;
+fun enrol_V : V;
+fun enrol_V2 : V2;
+fun enroll_V : V;
+fun enroll_V2 : V2;
+fun enrolment_N : N;
+fun enschede_PN : PN;
+fun ensconce_V2 : V2;
+fun ensemble_N : N;
+fun enshrine_V2 : V2;
+fun enshroud_V2 : V2;
+fun ensign_N : N;
+fun ensilage_N : N;
+fun enslave_V2 : V2;
+fun enslavement_N : N;
+fun ensnare_V2 : V2;
+fun ensue_V : V;
+fun ensure_V : V;
+fun ensure_V2 : V2;
+fun ensure_VS : VS;
+fun entail_N : N;
+fun entail_V2 : V2;
+fun entangle_V2 : V2;
+fun entanglement_N : N;
+fun entente_N : N;
+fun entente_cordiale_N : N;
+fun enter_V : V;
+fun enter_V2 : V2;
+fun enteric_A : A;
+fun enteritis_N : N;
+fun enterprise_N : N;
+fun enterprising_A : A;
+fun entertain_V2 : V2;
+fun entertainer_N : N;
+fun entertaining_A : A;
+fun entertainment_N : N;
+fun enthral_V2 : V2;
+fun enthrall_V2 : V2;
+fun enthrone_V2 : V2;
+fun enthronement_N : N;
+fun enthuse_V : V;
+fun enthusiasm_N : N;
+fun enthusiast_N : N;
+fun enthusiastic_A : A;
+fun enthusiastically_Adv : Adv;
+fun entice_V2 : V2;
+fun enticement_N : N;
+fun entire_A : A;
+fun entirety_N : N;
+fun entitle_V2 : V2;
+fun entitle_V2V : V2V;
+fun entitle_VS : VS;
+fun entitlement_N : N;
+fun entity_N : N;
+fun entomb_V2 : V2;
+fun entomological_A : A;
+fun entomologist_N : N;
+fun entomology_N : N;
+fun entourage_N : N;
+fun entr'acte_N : N;
+fun entrain_V : V;
+fun entrain_V2 : V2;
+fun entrance_N : N;
+fun entrance_V2 : V2;
+fun entrance_fee_N : N;
+fun entrance_money_N : N;
+fun entrant_N : N;
+fun entrap_V2 : V2;
+fun entreat_V2 : V2;
+fun entreatingly_Adv : Adv;
+fun entreaty_N : N;
+fun entree_N : N;
+fun entrench_V2 : V2;
+fun entrenchment_N : N;
+fun entrepot_N : N;
+fun entrepreneur_N : N;
+fun entrepreneurial_A : A;
+fun entrust_V2 : V2;
+fun entry_N : N;
+fun entwin_V : V;
+fun entwine_V2 : V2;
+fun enumerate_V2 : V2;
+fun enumeration_N : N;
+fun enunciate_V : V;
+fun enunciate_V2 : V2;
+fun enunciation_N : N;
+fun envelop_V2 : V2;
+fun envelope_N : N;
+fun envelopment_N : N;
+fun envenom_V2 : V2;
+fun enviable_A : A;
+fun envious_A : A;
+fun environ_V2 : V2;
+fun environment_N : N;
+fun environmental_A : A;
+fun envisage_V2 : V2;
+fun envision_V2 : V2;
+fun envision_VS : VS;
+fun envoi_N : N;
+fun envoy_N : N;
+fun envy_N : N;
+fun envy_V2 : V2;
+fun enwrap_V2 : V2;
+fun enzyme_N : N;
+fun eon_N : N;
+fun epaulet_N : N;
+fun epaulette_N : N;
+fun epee_N : N;
+fun ephemeral_A : A;
+fun epic_A : A;
+fun epic_N : N;
+fun epicentre_N : N;
+fun epicure_N : N;
+fun epicurean_A : A;
+fun epicurean_N : N;
+fun epidemic_A : A;
+fun epidemic_N : N;
+fun epidemiologist_N : N;
+fun epidemiology_N : N;
+fun epidermis_N : N;
+fun epidiascope_N : N;
+fun epiglottis_N : N;
+fun epigram_N : N;
+fun epigrammatic_A : A;
+fun epilepsy_N : N;
+fun epileptic_A : A;
+fun epileptic_N : N;
+fun epilogue_N : N;
+fun epiphany_PN : PN;
+fun episcopal_A : A;
+fun episcopalian_A : A;
+fun episcopalian_N : N;
+fun episode_N : N;
+fun episodic_A : A;
+fun epistle_N : N;
+fun epistolary_A : A;
+fun epitaph_N : N;
+fun epithet_N : N;
+fun epitome_N : N;
+fun epitomize_V2 : V2;
+fun epoch_N : N;
+fun epoch_making_A : A;
+fun epping_PN : PN;
+fun epsom_PN : PN;
+fun equable_A : A;
+fun equal_A : A;
+fun equal_N : N;
+fun equal_V2 : V2;
+fun equalitarian_N : N;
+fun equality_N : N;
+fun equalization_N : N;
+fun equalize_V2 : V2;
+fun equalizer_N : N;
+fun equanimity_N : N;
+fun equate_V2 : V2;
+fun equation_N : N;
+fun equator_N : N;
+fun equatorial_A : A;
+fun equerry_N : N;
+fun equestrian_A : A;
+fun equestrian_N : N;
+fun equidistant_A : A;
+fun equilateral_A : A;
+fun equilibrium_N : N;
+fun equine_A : A;
+fun equinoctial_A : A;
+fun equinox_N : N;
+fun equip_V2 : V2;
+fun equipage_N : N;
+fun equipment_N : N;
+fun equipoise_N : N;
+fun equitable_A : A;
+fun equity_N : N;
+fun equivalence_N : N;
+fun equivalent_A : A;
+fun equivalent_N : N;
+fun equivocal_A : A;
+fun equivocation_N : N;
+fun era_N : N;
+fun eradicate_V2 : V2;
+fun eradication_N : N;
+fun erase_V2 : V2;
+fun eraser_N : N;
+fun erasure_N : N;
+fun ere_Adv : Adv;
+fun erect_A : A;
+fun erect_V2 : V2;
+fun erectile_A : A;
+fun erection_N : N;
+fun erectness_N : N;
+fun eremite_N : N;
+fun erfurt_PN : PN;
+fun erg_N : N;
+fun ergo_Adv : Adv;
+fun ergonomics_N : N;
+fun eric_PN : PN;
+fun erica_PN : PN;
+fun erin_PN : PN;
+fun eritrea_PN : PN;
+fun eritrean_A : A;
+fun eritrean_N : N;
+fun erlangen_PN : PN;
+fun ermine_N : N;
+fun ernest_PN : PN;
+fun ernie_PN : PN;
+fun erode_V : V;
+fun erode_V2 : V2;
+fun erogenous_A : A;
+fun erosion_N : N;
+fun erosive_A : A;
+fun erotic_A : A;
+fun eroticism_N : N;
+fun err_V : V;
+fun errand_N : N;
+fun errant_A : A;
+fun erratic_A : A;
+fun erratically_Adv : Adv;
+fun erratum_N : N;
+fun erroneous_A : A;
+fun error_N : N;
+fun erse_N : N;
+fun eructation_N : N;
+fun erudite_A : A;
+fun erudition_N : N;
+fun erupt_V : V;
+fun eruption_N : N;
+fun erysipelas_N : N;
+fun escalate_V : V;
+fun escalate_V2 : V2;
+fun escalation_N : N;
+fun escalator_N : N;
+fun escalope_N : N;
+fun escapade_N : N;
+fun escape_N : N;
+fun escape_V : V;
+fun escape_V2 : V2;
+fun escape_VS : VS;
+fun escapee_N : N;
+fun escapement_N : N;
+fun escapism_N : N;
+fun escapist_N : N;
+fun escapologist_N : N;
+fun escarpment_N : N;
+fun eschatology_N : N;
+fun eschew_V2 : V2;
+fun escort_N : N;
+fun escort_V2 : V2;
+fun escritoire_N : N;
+fun escudo_N : N;
+fun escutcheon_N : N;
+fun esfahan_PN : PN;
+fun eskimo_N : N;
+fun esophagus_N : N;
+fun esoteric_A : A;
+fun esp_N : N;
+fun espalier_N : N;
+fun especial_A : A;
+fun esperanto_N : N;
+fun espionage_N : N;
+fun esplanade_N : N;
+fun espousal_N : N;
+fun espouse_V2 : V2;
+fun espresso_N : N;
+fun esprit_N : N;
+fun esprit_de_corps_N : N;
+fun espy_V2 : V2;
+fun esq_PN : PN;
+fun esquire_N : N;
+fun essay_N : N;
+fun essay_V : V;
+fun essay_V2 : V2;
+fun essayist_N : N;
+fun essen_PN : PN;
+fun essence_N : N;
+fun essential_A : A;
+fun essential_N : N;
+fun essex_PN : PN;
+fun establish_V2 : V2;
+fun establishment_N : N;
+fun estaminet_N : N;
+fun estate_N : N;
+fun esteem_N : N;
+fun esteem_V2 : V2;
+fun esther_PN : PN;
+fun esthete_N : N;
+fun esthetic_A : A;
+fun esthetic_N : N;
+fun esthetical_A : A;
+fun esthetics_N : N;
+fun estimable_A : A;
+fun estimate_N : N;
+fun estimate_V : V;
+fun estimate_V2 : V2;
+fun estimate_V2V : V2V;
+fun estimate_VS : VS;
+fun estimation_N : N;
+fun estrange_V2 : V2;
+fun estrangement_N : N;
+fun estuary_N : N;
+fun et_al_PN : PN;
+fun et_seq_PN : PN;
+fun eta_N : N;
+fun etc_PN : PN;
+fun etch_V : V;
+fun etch_V2 : V2;
+fun etcher_N : N;
+fun etching_N : N;
+fun etd_N : N;
+fun eternal_A : A;
+fun eternity_N : N;
+fun ethel_PN : PN;
+fun ether_N : N;
+fun ethereal_A : A;
+fun ethic_N : N;
+fun ethical_A : A;
+fun ethiopia_PN : PN;
+fun ethiopian_A : A;
+fun ethiopian_N : N;
+fun ethnic_A : A;
+fun ethnically_Adv : Adv;
+fun ethnographer_N : N;
+fun ethnographic_A : A;
+fun ethnography_N : N;
+fun ethnological_A : A;
+fun ethnologist_N : N;
+fun ethnology_N : N;
+fun ethos_N : N;
+fun ethyl_N : N;
+fun etiology_N : N;
+fun etiquette_N : N;
+fun etymological_A : A;
+fun etymologist_N : N;
+fun etymology_N : N;
+fun eucalyptus_N : N;
+fun eucharist_N : N;
+fun euclidean_A : A;
+fun eugene_PN : PN;
+fun eugenics_N : N;
+fun eulogist_N : N;
+fun eulogistic_A : A;
+fun eulogize_V2 : V2;
+fun eulogy_N : N;
+fun eunice_PN : PN;
+fun eunuch_N : N;
+fun euphemism_N : N;
+fun euphemistic_A : A;
+fun euphemistically_Adv : Adv;
+fun euphonium_N : N;
+fun euphony_N : N;
+fun euphoria_N : N;
+fun euphoric_A : A;
+fun euphuism_N : N;
+fun eurasia_PN : PN;
+fun eurasian_A : A;
+fun eurasian_N : N;
+fun eurhythmics_N : N;
+fun eurodollar_N : N;
+fun europe_PN : PN;
+fun european_A : A;
+fun european_N : N;
+fun eurovision_PN : PN;
+fun eurythmics_N : N;
+fun eustachian_A : A;
+fun euthanasia_N : N;
+fun eva_PN : PN;
+fun evacuate_V2 : V2;
+fun evacuation_N : N;
+fun evacuee_N : N;
+fun evade_V2 : V2;
+fun evaluate_V : V;
+fun evaluate_V2 : V2;
+fun evaluation_N : N;
+fun evaluative_A : A;
+fun evanescence_N : N;
+fun evanescent_A : A;
+fun evangelical_A : A;
+fun evangelicalism_N : N;
+fun evangelism_N : N;
+fun evangelist_N : N;
+fun evangelistic_A : A;
+fun evaporate_V : V;
+fun evaporate_V2 : V2;
+fun evaporate_VS : VS;
+fun evaporation_N : N;
+fun evasion_N : N;
+fun evasive_A : A;
+fun evasiveness_N : N;
+fun eve_N : N;
+fun eve_PN : PN;
+fun evelyn_PN : PN;
+fun even_A : A;
+fun even_Adv : Adv;
+fun even_N : N;
+fun even_V2 : V2;
+fun even_handed_A : A;
+fun evening_N : N;
+fun evenness_N : N;
+fun evensong_N : N;
+fun event_N : N;
+fun eventful_A : A;
+fun eventide_N : N;
+fun eventual_A : A;
+fun eventuality_N : N;
+fun ever_AdV : AdV;
+fun evergreen_A : A;
+fun evergreen_N : N;
+fun everlasting_A : A;
+fun evermore_Adv : Adv;
+fun every_Det : Det;
+fun everybody_NP : NP;
+fun everyday_A : A;
+fun everyone_NP : NP;
+fun everyplace_Adv : Adv;
+fun everything_NP : NP;
+fun evesham_PN : PN;
+fun evict_V2 : V2;
+fun eviction_N : N;
+fun evidence_N : N;
+fun evidence_V2 : V2;
+fun evident_A : A;
+fun evil_A : A;
+fun evil_N : N;
+fun evil_doer_N : N;
+fun evil_minded_A : A;
+fun evince_V2 : V2;
+fun eviscerate_V2 : V2;
+fun evocation_N : N;
+fun evocative_A : A;
+fun evoke_V2 : V2;
+fun evolution_N : N;
+fun evolutionary_A : A;
+fun evolve_V : V;
+fun evolve_V2 : V2;
+fun ewe_N : N;
+fun ewell_PN : PN;
+fun ewer_N : N;
+fun ex_directory_A : A;
+fun ex_gratia_A : A;
+fun ex_officio_A : A;
+fun ex_officio_Adv : Adv;
+fun ex_service_A : A;
+fun ex_serviceman_N : N;
+fun exacerbate_V2 : V2;
+fun exacerbation_N : N;
+fun exact_A : A;
+fun exact_V2 : V2;
+fun exacting_A : A;
+fun exaction_N : N;
+fun exactitude_N : N;
+fun exactness_N : N;
+fun exaggerate_V : V;
+fun exaggerate_V2 : V2;
+fun exaggeration_N : N;
+fun exalt_V2 : V2;
+fun exaltation_N : N;
+fun exalted_A : A;
+fun exam_N : N;
+fun examination_N : N;
+fun examine_V2 : V2;
+fun examiner_N : N;
+fun example_N : N;
+fun exasperate_V2 : V2;
+fun exasperation_N : N;
+fun excavate_V2 : V2;
+fun excavation_N : N;
+fun excavator_N : N;
+fun exceed_V2 : V2;
+fun exceedingly_Adv : Adv;
+fun excel_V : V;
+fun excel_V2 : V2;
+fun excellence_N : N;
+fun excellency_N : N;
+fun excellent_A : A;
+fun excelsior_N : N;
+fun except_Prep : Prep ;
+fun except_V2 : V2;
+fun exception_N : N;
+fun exceptionable_A : A;
+fun exceptional_A : A;
+fun excerpt_N : N;
+fun excess_A : A;
+fun excess_N : N;
+fun excessive_A : A;
+fun exchange_N : N;
+fun exchange_V2 : V2;
+fun exchangeable_A : A;
+fun exchanger_N : N;
+fun exchequer_N : N;
+fun excise_N : N;
+fun excise_V2 : V2;
+fun exciseman_N : N;
+fun excision_N : N;
+fun excitability_N : N;
+fun excitable_A : A;
+fun excite_V2 : V2;
+fun excitedly_Adv : Adv;
+fun excitement_N : N;
+fun excitingly_Adv : Adv;
+fun excl_PN : PN;
+fun exclaim_V : V;
+fun exclaim_V2 : V2;
+fun exclamation_N : N;
+fun exclamatory_A : A;
+fun exclude_V2 : V2;
+fun exclusion_N : N;
+fun exclusive_A : A;
+fun excogitate_V2 : V2;
+fun excogitation_N : N;
+fun excommunicate_V2 : V2;
+fun excommunication_N : N;
+fun excoriate_V2 : V2;
+fun excoriation_N : N;
+fun excrement_N : N;
+fun excrescence_N : N;
+fun excrete_V2 : V2;
+fun excretion_N : N;
+fun excruciating_A : A;
+fun exculpate_V2 : V2;
+fun excursion_N : N;
+fun excursionist_N : N;
+fun excusable_A : A;
+fun excuse_N : N;
+fun excuse_V2 : V2;
+fun execrable_A : A;
+fun execrate_V2 : V2;
+fun execration_N : N;
+fun executant_N : N;
+fun execute_V2 : V2;
+fun execution_N : N;
+fun executioner_N : N;
+fun executive_A : A;
+fun executive_N : N;
+fun executor_N : N;
+fun executrix_N : N;
+fun exegesis_N : N;
+fun exemplary_A : A;
+fun exemplification_N : N;
+fun exemplify_V2 : V2;
+fun exempt_A : A;
+fun exempt_V2 : V2;
+fun exempt_V2V : V2V;
+fun exemption_N : N;
+fun exercise_N : N;
+fun exercise_V : V;
+fun exercise_V2 : V2;
+fun exercise_VV : VV;
+fun exert_V2 : V2;
+fun exertion_N : N;
+fun exeter_PN : PN;
+fun exhalation_N : N;
+fun exhale_V : V;
+fun exhale_V2 : V2;
+fun exhaust_N : N;
+fun exhaust_V2 : V2;
+fun exhaust_pipe_N : N;
+fun exhaustion_N : N;
+fun exhaustive_A : A;
+fun exhibit_N : N;
+fun exhibit_V2 : V2;
+fun exhibition_N : N;
+fun exhibitioner_N : N;
+fun exhibitionism_N : N;
+fun exhibitionist_N : N;
+fun exhibitor_N : N;
+fun exhilarate_V2 : V2;
+fun exhilaration_N : N;
+fun exhort_V2 : V2;
+fun exhortation_N : N;
+fun exhumation_N : N;
+fun exhume_V2 : V2;
+fun exigency_N : N;
+fun exigent_A : A;
+fun exiguous_A : A;
+fun exile_N : N;
+fun exile_V2 : V2;
+fun exist_V : V;
+fun exist_V2V : V2V;
+fun existence_N : N;
+fun existent_A : A;
+fun existentialism_N : N;
+fun existentialist_N : N;
+fun exit_N : N;
+fun exit_V : V;
+fun exmouth_PN : PN;
+fun exodus_N : N;
+fun exonerate_V2 : V2;
+fun exoneration_N : N;
+fun exorbitance_N : N;
+fun exorbitant_A : A;
+fun exorcise_V2 : V2;
+fun exorcize_V2 : V2;
+fun exotic_A : A;
+fun expand_V : V;
+fun expand_V2 : V2;
+fun expand_V2V : V2V;
+fun expanse_N : N;
+fun expansion_N : N;
+fun expansive_A : A;
+fun expansiveness_N : N;
+fun expatiate_V : V;
+fun expatriate_N : N;
+fun expatriate_V2 : V2;
+fun expect_Prep : Prep ;
+fun expect_V : V;
+fun expect_V2 : V2;
+fun expect_V2V : V2V;
+fun expect_VV : VV;
+fun expect_VS : VS;
+fun expectancy_N : N;
+fun expectant_A : A;
+fun expectation_N : N;
+fun expected_A : A;
+fun expectorant_N : N;
+fun expectorate_V : V;
+fun expectorate_V2 : V2;
+fun expedience_N : N;
+fun expediency_N : N;
+fun expedient_A : A;
+fun expedient_N : N;
+fun expedite_V2 : V2;
+fun expedition_N : N;
+fun expeditionary_A : A;
+fun expeditious_A : A;
+fun expel_V2 : V2;
+fun expend_V2 : V2;
+fun expendable_A : A;
+fun expenditure_N : N;
+fun expense_N : N;
+fun expensive_A : A;
+fun experience_N : N;
+fun experience_V2 : V2;
+fun experienced_A : A;
+fun experiment_N : N;
+fun experiment_V : V;
+fun experiment_V2 : V2;
+fun experimental_A : A;
+fun experimentation_N : N;
+fun experimenter_N : N;
+fun expert_A : A;
+fun expert_N : N;
+fun expertise_N : N;
+fun expertness_N : N;
+fun expiate_V2 : V2;
+fun expiation_N : N;
+fun expiration_N : N;
+fun expire_V : V;
+fun expire_V2 : V2;
+fun expire_VS : VS;
+fun expiry_N : N;
+fun explain_V2 : V2;
+fun explain_VS : VS;
+fun explanation_N : N;
+fun explanatory_A : A;
+fun expletive_N : N;
+fun explicable_A : A;
+fun explicate_V2 : V2;
+fun explicit_A : A;
+fun explicitness_N : N;
+fun explode_V : V;
+fun explode_V2 : V2;
+fun exploit_N : N;
+fun exploit_V2 : V2;
+fun exploitation_N : N;
+fun exploration_N : N;
+fun exploratory_A : A;
+fun explore_V2 : V2;
+fun explore_VS : VS;
+fun explorer_N : N;
+fun explosion_N : N;
+fun explosive_A : A;
+fun explosive_N : N;
+fun expo_N : N;
+fun exponent_N : N;
+fun exponential_A : A;
+fun exponential_N : N;
+fun export_N : N;
+fun export_V : V;
+fun export_V2 : V2;
+fun exportable_A : A;
+fun exportation_N : N;
+fun exporter_N : N;
+fun expose_N : N;
+fun expose_V : V;
+fun expose_V2 : V2;
+fun exposition_N : N;
+fun expostulate_V : V;
+fun expostulation_N : N;
+fun exposure_N : N;
+fun expound_V2 : V2;
+fun expound_VS : VS;
+fun express_A : A;
+fun express_Adv : Adv;
+fun express_N : N;
+fun express_V2 : V2;
+fun expression_N : N;
+fun expressionism_N : N;
+fun expressionist_N : N;
+fun expressionless_A : A;
+fun expressive_A : A;
+fun expressway_N : N;
+fun expropriate_V2 : V2;
+fun expropriation_N : N;
+fun expulsion_N : N;
+fun expunge_V2 : V2;
+fun expurgate_V2 : V2;
+fun expurgation_N : N;
+fun exquisite_A : A;
+fun exquisiteness_N : N;
+fun extant_A : A;
+fun extemporaneous_A : A;
+fun extemporary_A : A;
+fun extempore_A : A;
+fun extempore_Adv : Adv;
+fun extemporize_V : V;
+fun extemporize_V2 : V2;
+fun extend_V : V;
+fun extend_V2 : V2;
+fun extension_N : N;
+fun extensive_A : A;
+fun extent_N : N;
+fun extenuate_V2 : V2;
+fun extenuation_N : N;
+fun exterior_A : A;
+fun exterior_N : N;
+fun exteriorize_V2 : V2;
+fun exterminate_V2 : V2;
+fun extermination_N : N;
+fun external_A : A;
+fun external_N : N;
+fun externalize_V2 : V2;
+fun exterritorial_A : A;
+fun extinct_A : A;
+fun extinction_N : N;
+fun extinguish_V2 : V2;
+fun extinguisher_N : N;
+fun extirpate_V2 : V2;
+fun extirpation_N : N;
+fun extol_V2 : V2;
+fun extort_V : V;
+fun extort_V2 : V2;
+fun extortion_N : N;
+fun extortionate_A : A;
+fun extra_A : A;
+fun extra_Adv : Adv;
+fun extra_N : N;
+fun extract_N : N;
+fun extract_V2 : V2;
+fun extraction_N : N;
+fun extracurricular_A : A;
+fun extradite_V2 : V2;
+fun extradition_N : N;
+fun extrajudicial_A : A;
+fun extramarital_A : A;
+fun extramural_A : A;
+fun extraneous_A : A;
+fun extraordinary_A : A;
+fun extrapolate_V : V;
+fun extrapolate_V2 : V2;
+fun extrapolation_N : N;
+fun extrasensory_A : A;
+fun extraterritorial_A : A;
+fun extravagance_N : N;
+fun extravagant_A : A;
+fun extravaganza_N : N;
+fun extreme_A : A;
+fun extreme_N : N;
+fun extremist_N : N;
+fun extremity_N : N;
+fun extricable_A : A;
+fun extricate_V2 : V2;
+fun extrication_N : N;
+fun extrinsic_A : A;
+fun extroversion_N : N;
+fun extrovert_N : N;
+fun extrude_V2 : V2;
+fun extrusion_N : N;
+fun exuberance_N : N;
+fun exuberant_A : A;
+fun exude_V : V;
+fun exude_V2 : V2;
+fun exult_V : V;
+fun exultant_A : A;
+fun exultation_N : N;
+fun eye_N : N;
+fun eye_V2 : V2;
+fun eye_catching_A : A;
+fun eye_opener_N : N;
+fun eye_shadow_N : N;
+fun eyeball_N : N;
+fun eyeball_V2 : V2;
+fun eyebath_N : N;
+fun eyebrow_N : N;
+fun eyecatching_A : A;
+fun eyecup_N : N;
+fun eyed_A : A;
+fun eyeful_N : N;
+fun eyeglass_N : N;
+fun eyelash_N : N;
+fun eyeless_A : A;
+fun eyelet_N : N;
+fun eyelid_N : N;
+fun eyepiece_N : N;
+fun eyeshot_N : N;
+fun eyesight_N : N;
+fun eyesore_N : N;
+fun eyestrain_N : N;
+fun eyetooth_N : N;
+fun eyewash_N : N;
+fun eyewitness_N : N;
+fun eyrie_N : N;
+fun eyry_N : N;
+fun fa_N : N;
+fun fab_A : A;
+fun fabian_A : A;
+fun fabian_N : N;
+fun fable_N : N;
+fun fabled_A : A;
+fun fabric_N : N;
+fun fabricate_V2 : V2;
+fun fabrication_N : N;
+fun fabulous_A : A;
+fun facade_N : N;
+fun face_N : N;
+fun face_V : V;
+fun face_V2 : V2;
+fun face_ache_N : N;
+fun face_card_N : N;
+fun face_cloth_N : N;
+fun face_cream_N : N;
+fun face_lift_N : N;
+fun face_lifting_N : N;
+fun face_pack_N : N;
+fun face_powder_N : N;
+fun face_saver_N : N;
+fun face_saving_A : A;
+fun face_saving_N : N;
+fun faceless_A : A;
+fun facer_N : N;
+fun facet_N : N;
+fun facetious_A : A;
+fun facetiousness_N : N;
+fun facia_N : N;
+fun facial_A : A;
+fun facial_N : N;
+fun facile_A : A;
+fun facilitate_V2 : V2;
+fun facility_N : N;
+fun facing_N : N;
+fun facsimile_N : N;
+fun fact_N : N;
+fun fact_finding_A : A;
+fun faction_N : N;
+fun factious_A : A;
+fun factitious_A : A;
+fun factor_N : N;
+fun factorize_V2 : V2;
+fun factory_N : N;
+fun factotum_N : N;
+fun factual_A : A;
+fun faculty_N : N;
+fun fad_N : N;
+fun faddily_Adv : Adv;
+fun faddy_A : A;
+fun fade_V : V;
+fun fade_V2 : V2;
+fun faerie_N : N;
+fun faery_N : N;
+fun fag_N : N;
+fun fag_V : V;
+fun fag_V2 : V2;
+fun fag_end_N : N;
+fun faggot_N : N;
+fun faience_N : N;
+fun fail_N : N;
+fun fail_V : V;
+fun fail_V2 : V2;
+fun fail_V2V : V2V;
+fun fail_VS : VS;
+fun fail_VV : VV;
+fun fail_safe_A : A;
+fun failing_N : N;
+fun failure_N : N;
+fun fain_Adv : Adv;
+fun faint_A : A;
+fun faint_N : N;
+fun faint_V : V;
+fun faint_hearted_A : A;
+fun faintness_N : N;
+fun fair_A : A;
+fun fair_Adv : Adv;
+fun fair_N : N;
+fun fair_minded_A : A;
+fun fairground_N : N;
+fun fairish_A : A;
+fun fairness_N : N;
+fun fairway_N : N;
+fun fairy_N : N;
+fun fairyland_N : N;
+fun fairytale_N : N;
+fun fait_accompli_N : N;
+fun faith_N : N;
+fun faith_healing_N : N;
+fun faithful_A : A;
+fun faithfulness_N : N;
+fun faithless_A : A;
+fun faithlessness_N : N;
+fun fake_N : N;
+fun fake_V2 : V2;
+fun fakir_N : N;
+fun falcon_N : N;
+fun falconry_N : N;
+fun falkirk_PN : PN;
+fun fall_N : N;
+fun fall_V : V;
+fun fall_V2 : V2;
+fun fall_VA : VA;
+fun fall_VS : VS;
+fun fallacious_A : A;
+fun fallacy_N : N;
+fun fallibility_N : N;
+fun fallible_A : A;
+fun fallopian_A : A;
+fun fallout_N : N;
+fun fallow_A : A;
+fun fallow_N : N;
+fun fallow_deer_N : N;
+fun falmouth_PN : PN;
+fun false_A : A;
+fun false_Adv : Adv;
+fun falsehood_N : N;
+fun falseness_N : N;
+fun falsetto_A : A;
+fun falsetto_N : N;
+fun falsification_N : N;
+fun falsify_V2 : V2;
+fun falsity_N : N;
+fun falter_V : V;
+fun falter_V2 : V2;
+fun falteringly_Adv : Adv;
+fun fame_N : N;
+fun fame_V2 : V2;
+fun famed_A : A;
+fun familiar_A : A;
+fun familiar_N : N;
+fun familiarity_N : N;
+fun familiarize_V2 : V2;
+fun family_N : N;
+fun famine_N : N;
+fun famish_V : V;
+fun famish_V2 : V2;
+fun famous_A : A;
+fun fan_N : N;
+fun fan_V : V;
+fun fan_V2 : V2;
+fun fan_belt_N : N;
+fun fanatic_A : A;
+fun fanatic_N : N;
+fun fanatical_A : A;
+fun fanaticism_N : N;
+fun fancier_N : N;
+fun fanciful_A : A;
+fun fancy_A : A;
+fun fancy_N : N;
+fun fancy_V2 : V2;
+fun fancy_VS : VS;
+fun fancy_free_A : A;
+fun fandango_N : N;
+fun fanfare_N : N;
+fun fang_N : N;
+fun fanlight_N : N;
+fun fanny_N : N;
+fun fanny_PN : PN;
+fun fantan_N : N;
+fun fantasia_N : N;
+fun fantasize_V : V;
+fun fantastic_A : A;
+fun fantastically_Adv : Adv;
+fun fantasy_N : N;
+fun fao_N : N;
+fun far_A : A;
+fun far_V2 : V2;
+fun far_famed_A : A;
+fun far_fetched_A : A;
+fun far_flung_A : A;
+fun far_off_A : A;
+fun far_reaching_A : A;
+fun far_seeing_A : A;
+fun far_sighted_A : A;
+fun faraway_A : A;
+fun farce_N : N;
+fun farcical_A : A;
+fun fare_N : N;
+fun fare_V : V;
+fun fare_stage_N : N;
+fun farewell_N : N;
+fun farinaceous_A : A;
+fun farm_N : N;
+fun farm_V : V;
+fun farm_V2 : V2;
+fun farmer_N : N;
+fun farmhand_N : N;
+fun farmhouse_N : N;
+fun farmstead_N : N;
+fun farmyard_N : N;
+fun farnham_PN : PN;
+fun farnworth_PN : PN;
+fun farrago_N : N;
+fun farrier_N : N;
+fun farrow_N : N;
+fun farrow_V : V;
+fun farsi_N : N;
+fun fart_N : N;
+fun fart_V : V;
+fun farther_Adv : Adv;
+fun farthest_Adv : Adv;
+fun farthing_N : N;
+fun fascia_N : N;
+fun fascinate_V2 : V2;
+fun fascinating_A : A;
+fun fascination_N : N;
+fun fascism_N : N;
+fun fascist_A : A;
+fun fascist_N : N;
+fun fashion_N : N;
+fun fashion_V2 : V2;
+fun fashionable_A : A;
+fun fast_A : A;
+fun fast_Adv : Adv;
+fun fast_N : N;
+fun fast_V : V;
+fun fasten_V : V;
+fun fasten_V2 : V2;
+fun fastener_N : N;
+fun fastening_N : N;
+fun fastidious_A : A;
+fun fastidiousness_N : N;
+fun fastness_N : N;
+fun fat_A : A;
+fun fat_N : N;
+fun fat_V2 : V2;
+fun fatal_A : A;
+fun fatalism_N : N;
+fun fatalist_N : N;
+fun fatalistic_A : A;
+fun fatality_N : N;
+fun fate_N : N;
+fun fate_V2 : V2;
+fun fateful_A : A;
+fun fathead_N : N;
+fun father_N : N;
+fun father_V2 : V2;
+fun father_in_law_N : N;
+fun fatherhood_N : N;
+fun fatherland_N : N;
+fun fatherless_A : A;
+fun fatherly_A : A;
+fun fathom_N : N;
+fun fathom_V2 : V2;
+fun fathomless_A : A;
+fun fatigue_N : N;
+fun fatigue_V2 : V2;
+fun fatigue_party_N : N;
+fun fatless_A : A;
+fun fatness_N : N;
+fun fatten_V : V;
+fun fatten_V2 : V2;
+fun fattish_A : A;
+fun fatty_A : A;
+fun fatuity_N : N;
+fun fatuous_A : A;
+fun fatuousness_N : N;
+fun faucet_N : N;
+fun fauldhouse_PN : PN;
+fun fault_N : N;
+fun fault_V2 : V2;
+fun fault_finder_N : N;
+fun fault_finding_N : N;
+fun faultily_Adv : Adv;
+fun faultless_A : A;
+fun faulty_A : A;
+fun faun_N : N;
+fun faux_pas_N : N;
+fun faversham_PN : PN;
+fun favor_V : V;
+fun favor_V2 : V2;
+fun favor_VS : VS;
+fun favour_N : N;
+fun favour_V2 : V2;
+fun favourable_A : A;
+fun favourite_A : A;
+fun favourite_N : N;
+fun favouritism_N : N;
+fun fawley_PN : PN;
+fun fawn_N : N;
+fun fawn_V : V;
+fun fbi_PN : PN;
+fun fealty_N : N;
+fun fear_N : N;
+fun fear_V : V;
+fun fear_V2 : V2;
+fun fear_VS : VS;
+fun fearful_A : A;
+fun fearfulness_N : N;
+fun fearless_A : A;
+fun fearlessness_N : N;
+fun fearsome_A : A;
+fun feasibility_N : N;
+fun feasible_A : A;
+fun feast_N : N;
+fun feast_V : V;
+fun feast_V2 : V2;
+fun feast_day_N : N;
+fun feat_N : N;
+fun feather_N : N;
+fun feather_V2 : V2;
+fun feather_boa_N : N;
+fun featherbed_N : N;
+fun featherbed_V2 : V2;
+fun featherbrained_A : A;
+fun featherstone_PN : PN;
+fun featherweight_N : N;
+fun feathery_A : A;
+fun feature_N : N;
+fun feature_V2 : V2;
+fun featureless_A : A;
+fun feb_PN : PN;
+fun febrile_A : A;
+fun february_N : N;
+fun february_PN : PN;
+fun feckless_A : A;
+fun fecklessness_N : N;
+fun fecund_A : A;
+fun fecundity_N : N;
+fun fed_N : N;
+fun federal_A : A;
+fun federalism_N : N;
+fun federalist_N : N;
+fun federate_V : V;
+fun federate_V2 : V2;
+fun federation_N : N;
+fun fee_N : N;
+fun fee_V2 : V2;
+fun feeble_A : A;
+fun feeble_minded_A : A;
+fun feebleness_N : N;
+fun feebly_Adv : Adv;
+fun feed_N : N;
+fun feed_V : V;
+fun feed_V2 : V2;
+fun feedback_N : N;
+fun feeder_N : N;
+fun feeding_bottle_N : N;
+fun feel_N : N;
+fun feel_V : V;
+fun feel_V2 : V2;
+fun feel_VA : VA;
+fun feel_VS : VS;
+fun feeler_N : N;
+fun feeling_A : A;
+fun feeling_N : N;
+fun feign_V2 : V2;
+fun feint_N : N;
+fun feint_V : V;
+fun feldspar_N : N;
+fun felicitate_V2 : V2;
+fun felicitation_N : N;
+fun felicitous_A : A;
+fun felicity_N : N;
+fun felicity_PN : PN;
+fun feline_A : A;
+fun felix_PN : PN;
+fun felixstowe_PN : PN;
+fun fell_A : A;
+fun fell_V2 : V2;
+fun fell_V2V : V2V;
+fun fell_VA : VA;
+fun fell_VS : VS;
+fun fellah_N : N;
+fun fellow_N : N;
+fun fellow_feeling_N : N;
+fun fellow_traveller_N : N;
+fun fellowship_N : N;
+fun felon_N : N;
+fun felonious_A : A;
+fun felony_N : N;
+fun felspar_N : N;
+fun felt_N : N;
+fun felucca_N : N;
+fun fem_PN : PN;
+fun female_A : A;
+fun female_N : N;
+fun feminine_A : A;
+fun femininity_N : N;
+fun feminism_N : N;
+fun feminist_N : N;
+fun femur_N : N;
+fun fen_N : N;
+fun fence_N : N;
+fun fence_V2 : V2;
+fun fencer_N : N;
+fun fencing_N : N;
+fun fend_V : V;
+fun fend_V2 : V2;
+fun fender_N : N;
+fun fennel_N : N;
+fun feoff_N : N;
+fun feral_A : A;
+fun fermanagh_PN : PN;
+fun ferment_N : N;
+fun ferment_V : V;
+fun ferment_V2 : V2;
+fun fermentation_N : N;
+fun fern_N : N;
+fun ferny_A : A;
+fun ferocious_A : A;
+fun ferocity_N : N;
+fun ferrara_PN : PN;
+fun ferret_N : N;
+fun ferret_V : V;
+fun ferret_V2 : V2;
+fun ferroconcrete_N : N;
+fun ferrous_A : A;
+fun ferrule_N : N;
+fun ferry_N : N;
+fun ferry_V : V;
+fun ferry_V2 : V2;
+fun ferryboat_N : N;
+fun ferryhill_PN : PN;
+fun ferryman_N : N;
+fun fertile_A : A;
+fun fertility_N : N;
+fun fertilization_N : N;
+fun fertilize_V2 : V2;
+fun fertilizer_N : N;
+fun ferule_N : N;
+fun fervency_N : N;
+fun fervent_A : A;
+fun fervid_A : A;
+fun fervour_N : N;
+fun festal_A : A;
+fun fester_V : V;
+fun festival_N : N;
+fun festive_A : A;
+fun festivity_N : N;
+fun festoon_N : N;
+fun festoon_V2 : V2;
+fun fetal_A : A;
+fun fetch_V : V;
+fun fetch_V2 : V2;
+fun fetching_A : A;
+fun fete_N : N;
+fun fete_V2 : V2;
+fun fete_day_N : N;
+fun fetid_A : A;
+fun fetish_N : N;
+fun fetlock_N : N;
+fun fetter_N : N;
+fun fetter_V2 : V2;
+fun fettle_N : N;
+fun feud_N : N;
+fun feudal_A : A;
+fun feudalism_N : N;
+fun feudatory_A : A;
+fun feudatory_N : N;
+fun feude_V : V;
+fun fever_N : N;
+fun fevered_A : A;
+fun feverish_A : A;
+fun few_Num : Num;
+fun fewness_N : N;
+fun fey_A : A;
+fun fez_N : N;
+fun fiance_N : N;
+fun fiancee_N : N;
+fun fiasco_N : N;
+fun fiat_N : N;
+fun fib_N : N;
+fun fib_V : V;
+fun fibber_N : N;
+fun fibbing_N : N;
+fun fibre_N : N;
+fun fibreboard_N : N;
+fun fibreglass_N : N;
+fun fibrositis_N : N;
+fun fibrous_A : A;
+fun fibula_N : N;
+fun fickle_A : A;
+fun fickleness_N : N;
+fun fiction_N : N;
+fun fictional_A : A;
+fun fictitious_A : A;
+fun fiddle_N : N;
+fun fiddle_V2 : V2;
+fun fiddler_N : N;
+fun fiddlestick_N : N;
+fun fiddling_A : A;
+fun fidelity_N : N;
+fun fidget_N : N;
+fun fidget_V : V;
+fun fidget_V2 : V2;
+fun fidgety_A : A;
+fun fief_N : N;
+fun field_N : N;
+fun field_V : V;
+fun field_V2 : V2;
+fun field_hospital_N : N;
+fun field_officer_N : N;
+fun fielder_N : N;
+fun fieldsman_N : N;
+fun fieldwork_N : N;
+fun fiend_N : N;
+fun fiendish_A : A;
+fun fierce_A : A;
+fun fierceness_N : N;
+fun fieriness_N : N;
+fun fiery_A : A;
+fun fiesta_N : N;
+fun fife_N : N;
+fun fife_PN : PN;
+fun fig_N : N;
+fun fig_leaf_N : N;
+fun fight_N : N;
+fun fight_V : V;
+fun fight_V2 : V2;
+fun fight_V2V : V2V;
+fun fighter_N : N;
+fun fighting_N : N;
+fun figment_N : N;
+fun figurative_A : A;
+fun figure_N : N;
+fun figure_V : V;
+fun figure_V2 : V2;
+fun figure_V2V : V2V;
+fun figure_VS : VS;
+fun figured_A : A;
+fun figurehead_N : N;
+fun fiji_PN : PN;
+fun fijian_A : A;
+fun fijian_N : N;
+fun filament_N : N;
+fun filature_N : N;
+fun filbert_N : N;
+fun filch_V2 : V2;
+fun file_N : N;
+fun file_V : V;
+fun file_V2 : V2;
+fun filial_A : A;
+fun filibuster_N : N;
+fun filibuster_V : V;
+fun filigree_N : N;
+fun filipino_A : A;
+fun filipino_N : N;
+fun fill_N : N;
+fun fill_V : V;
+fun fill_V2 : V2;
+fun fillet_N : N;
+fun fillet_V2 : V2;
+fun filling_N : N;
+fun fillip_N : N;
+fun filly_N : N;
+fun film_N : N;
+fun film_V : V;
+fun film_V2 : V2;
+fun film_star_N : N;
+fun filmable_A : A;
+fun filmy_A : A;
+fun filter_N : N;
+fun filter_V : V;
+fun filter_V2 : V2;
+fun filtertipped_A : A;
+fun filth_N : N;
+fun filthily_Adv : Adv;
+fun filthiness_N : N;
+fun filthy_A : A;
+fun filtrate_N : N;
+fun filtrate_V : V;
+fun filtrate_V2 : V2;
+fun filtration_N : N;
+fun fin_N : N;
+fun finable_A : A;
+fun finagle_V2 : V2;
+fun final_A : A;
+fun final_N : N;
+fun finale_N : N;
+fun finalist_N : N;
+fun finality_N : N;
+fun finalize_V2 : V2;
+fun finance_N : N;
+fun finance_V2 : V2;
+fun financial_A : A;
+fun financier_N : N;
+fun finch_N : N;
+fun find_N : N;
+fun find_V : V;
+fun find_V2 : V2;
+fun find_V2V : V2V;
+fun find_VS : VS;
+fun finder_N : N;
+fun finding_N : N;
+fun fine_A : A;
+fun fine_Adv : Adv;
+fun fine_N : N;
+fun fine_V2 : V2;
+fun fine_tooth_A : A;
+fun fineable_A : A;
+fun fineness_N : N;
+fun finery_N : N;
+fun finesse_N : N;
+fun finesse_V2 : V2;
+fun finger_N : N;
+fun finger_V2 : V2;
+fun finger_alphabet_N : N;
+fun finger_bowl_N : N;
+fun finger_plate_N : N;
+fun finger_post_N : N;
+fun fingerboard_N : N;
+fun fingermark_N : N;
+fun fingernail_N : N;
+fun fingerprint_N : N;
+fun fingerstall_N : N;
+fun fingertip_N : N;
+fun finical_A : A;
+fun finicky_A : A;
+fun finis_N : N;
+fun finish_N : N;
+fun finish_V : V;
+fun finish_V2 : V2;
+fun finish_VA : VA;
+fun finish_VS : VS;
+fun finite_A : A;
+fun finland_PN : PN;
+fun finn_N : N;
+fun finnan_N : N;
+fun finnan_haddie_N : N;
+fun finnan_haddock_N : N;
+fun finnish_A : A;
+fun finnish_N : N;
+fun fiona_PN : PN;
+fun fiord_N : N;
+fun fir_N : N;
+fun fir_cone_N : N;
+fun fire_N : N;
+fun fire_V : V;
+fun fire_V2 : V2;
+fun fire_alarm_N : N;
+fun fire_brigade_N : N;
+fun fire_control_N : N;
+fun fire_eater_N : N;
+fun fire_engine_N : N;
+fun fire_escape_N : N;
+fun fire_extinguisher_N : N;
+fun fire_fighter_N : N;
+fun fire_hose_N : N;
+fun fire_power_N : N;
+fun fire_raising_N : N;
+fun fire_walker_N : N;
+fun fire_walking_N : N;
+fun fire_watcher_N : N;
+fun fire_watching_N : N;
+fun firearm_N : N;
+fun fireball_N : N;
+fun firebird_N : N;
+fun firebomb_N : N;
+fun firebox_N : N;
+fun firebrand_N : N;
+fun firebreak_N : N;
+fun firebrick_N : N;
+fun firebug_N : N;
+fun fireclay_N : N;
+fun firecracker_N : N;
+fun firedamp_N : N;
+fun firedog_N : N;
+fun firefly_N : N;
+fun fireguard_N : N;
+fun firelight_N : N;
+fun firelighter_N : N;
+fun fireman_N : N;
+fun firenze_PN : PN;
+fun fireplace_N : N;
+fun fireproof_A : A;
+fun fireside_N : N;
+fun firestone_N : N;
+fun firewater_N : N;
+fun firewood_N : N;
+fun firework_N : N;
+fun firing_line_N : N;
+fun firing_party_N : N;
+fun firing_squad_N : N;
+fun firkin_N : N;
+fun firm_A : A;
+fun firm_Adv : Adv;
+fun firm_N : N;
+fun firm_V : V;
+fun firm_V2 : V2;
+fun firmament_N : N;
+fun firmness_N : N;
+fun first_class_A : A;
+fun first_class_Adv : Adv;
+fun first_hand_A : A;
+fun first_hand_Adv : Adv;
+fun first_nighter_N : N;
+fun first_rate_A : A;
+fun first_rate_Adv : Adv;
+fun firstborn_A : A;
+fun firstborn_N : N;
+fun firth_N : N;
+fun fiscal_A : A;
+fun fish_N : N;
+fun fish_V : V;
+fun fish_V2 : V2;
+fun fish_hook_N : N;
+fun fish_knife_N : N;
+fun fish_slice_N : N;
+fun fishball_N : N;
+fun fishbone_N : N;
+fun fishcake_N : N;
+fun fisher_N : N;
+fun fisherman_N : N;
+fun fishery_N : N;
+fun fishing_N : N;
+fun fishing_line_N : N;
+fun fishing_rod_N : N;
+fun fishing_tackle_N : N;
+fun fishmonger_N : N;
+fun fishpaste_N : N;
+fun fishplate_N : N;
+fun fishwife_N : N;
+fun fishy_A : A;
+fun fissile_A : A;
+fun fission_N : N;
+fun fissionable_A : A;
+fun fissiparous_A : A;
+fun fissure_N : N;
+fun fist_N : N;
+fun fistula_N : N;
+fun fit_A : A;
+fun fit_N : N;
+fun fit_V : V;
+fun fit_V2 : V2;
+fun fitful_A : A;
+fun fitment_N : N;
+fun fitness_N : N;
+fun fitter_N : N;
+fun fitting_A : A;
+fun fitting_N : N;
+fun fivefold_A : A;
+fun fivepence_N : N;
+fun fivepenny_A : A;
+fun fiver_N : N;
+fun fives_N : N;
+fun fix_N : N;
+fun fix_V : V;
+fun fix_V2 : V2;
+fun fixate_V2 : V2;
+fun fixation_N : N;
+fun fixative_N : N;
+fun fixed_A : A;
+fun fixture_N : N;
+fun fizz_N : N;
+fun fizz_V : V;
+fun fizzle_V : V;
+fun fizzy_A : A;
+fun fjord_N : N;
+fun flabbergast_V2 : V2;
+fun flabbily_Adv : Adv;
+fun flabbiness_N : N;
+fun flabby_A : A;
+fun flaccid_A : A;
+fun flaccidity_N : N;
+fun flag_N : N;
+fun flag_V : V;
+fun flag_V2 : V2;
+fun flag_captain_N : N;
+fun flag_day_N : N;
+fun flagellant_N : N;
+fun flagellate_V2 : V2;
+fun flagellation_N : N;
+fun flageolet_N : N;
+fun flagon_N : N;
+fun flagpole_N : N;
+fun flagrant_A : A;
+fun flagship_N : N;
+fun flagstaff_N : N;
+fun flagstone_N : N;
+fun flail_N : N;
+fun flail_V2 : V2;
+fun flair_N : N;
+fun flak_N : N;
+fun flake_N : N;
+fun flake_V : V;
+fun flakiness_N : N;
+fun flaky_A : A;
+fun flambeau_N : N;
+fun flamboyance_N : N;
+fun flamboyant_A : A;
+fun flame_N : N;
+fun flame_V : V;
+fun flamethrower_N : N;
+fun flaming_A : A;
+fun flamingo_N : N;
+fun flammable_A : A;
+fun flan_N : N;
+fun flange_N : N;
+fun flank_N : N;
+fun flank_V : V;
+fun flank_V2 : V2;
+fun flannel_N : N;
+fun flannelette_N : N;
+fun flap_N : N;
+fun flap_V : V;
+fun flap_V2 : V2;
+fun flapjack_N : N;
+fun flapper_N : N;
+fun flare_N : N;
+fun flare_V : V;
+fun flare_V2 : V2;
+fun flare_path_N : N;
+fun flare_up_N : N;
+fun flash_N : N;
+fun flash_V : V;
+fun flash_V2 : V2;
+fun flashback_N : N;
+fun flashbulb_N : N;
+fun flashgun_N : N;
+fun flashily_Adv : Adv;
+fun flashlight_N : N;
+fun flashpoint_N : N;
+fun flashy_A : A;
+fun flask_N : N;
+fun flat_A : A;
+fun flat_Adv : Adv;
+fun flat_N : N;
+fun flat_bottomed_A : A;
+fun flat_car_N : N;
+fun flat_footed_A : A;
+fun flat_iron_N : N;
+fun flatfish_N : N;
+fun flatlet_N : N;
+fun flatness_N : N;
+fun flatten_V : V;
+fun flatten_V2 : V2;
+fun flatter_V2 : V2;
+fun flatterer_N : N;
+fun flattery_N : N;
+fun flattop_N : N;
+fun flatulence_N : N;
+fun flaunt_V : V;
+fun flaunt_V2 : V2;
+fun flautist_N : N;
+fun flavour_N : N;
+fun flavour_V2 : V2;
+fun flavouring_N : N;
+fun flavourless_A : A;
+fun flaw_N : N;
+fun flaw_V2 : V2;
+fun flawed_A : A;
+fun flawless_A : A;
+fun flax_N : N;
+fun flaxen_A : A;
+fun flay_V2 : V2;
+fun flea_N : N;
+fun flea_bite_N : N;
+fun flea_bitten_A : A;
+fun fleapit_N : N;
+fun fleck_N : N;
+fun fleck_V2 : V2;
+fun fledged_A : A;
+fun fledgeling_N : N;
+fun fledgling_N : N;
+fun flee_V : V;
+fun flee_V2 : V2;
+fun fleece_N : N;
+fun fleece_V2 : V2;
+fun fleecy_A : A;
+fun fleet_A : A;
+fun fleet_N : N;
+fun fleet_PN : PN;
+fun fleet_street_PN : PN;
+fun fleeting_A : A;
+fun fleetness_N : N;
+fun fleetwood_PN : PN;
+fun flemish_A : A;
+fun flemish_N : N;
+fun flesh_N : N;
+fun flesh_wound_N : N;
+fun fleshly_A : A;
+fun fleshy_A : A;
+fun fleur_de_lis_N : N;
+fun fleur_de_lys_N : N;
+fun flex_N : N;
+fun flex_V2 : V2;
+fun flexibility_N : N;
+fun flexible_A : A;
+fun flibbertigibbet_N : N;
+fun flick_N : N;
+fun flick_V2 : V2;
+fun flick_knife_N : N;
+fun flicker_N : N;
+fun flicker_V : V;
+fun flier_N : N;
+fun flight_N : N;
+fun flight_V2 : V2;
+fun flightless_A : A;
+fun flighty_A : A;
+fun flimsily_Adv : Adv;
+fun flimsiness_N : N;
+fun flimsy_A : A;
+fun flimsy_N : N;
+fun flinch_V : V;
+fun fling_N : N;
+fun fling_V : V;
+fun fling_V2 : V2;
+fun flint_N : N;
+fun flint_PN : PN;
+fun flintstone_N : N;
+fun flinty_A : A;
+fun flip_A : A;
+fun flip_N : N;
+fun flip_V : V;
+fun flip_V2 : V2;
+fun flippancy_N : N;
+fun flippant_A : A;
+fun flipper_N : N;
+fun flirt_N : N;
+fun flirt_V : V;
+fun flirtation_N : N;
+fun flirtatious_A : A;
+fun flit_N : N;
+fun flit_V : V;
+fun float_N : N;
+fun float_V : V;
+fun float_V2 : V2;
+fun float_VS : VS;
+fun floatation_N : N;
+fun floating_A : A;
+fun flock_N : N;
+fun flock_V : V;
+fun flock_V2V : V2V;
+fun floe_N : N;
+fun flog_V2 : V2;
+fun flogging_N : N;
+fun flood_N : N;
+fun flood_V : V;
+fun flood_V2 : V2;
+fun flood_tide_N : N;
+fun floodgate_N : N;
+fun floodlight_V2 : V2;
+fun floor_N : N;
+fun floor_V2 : V2;
+fun floor_walker_N : N;
+fun floorboard_N : N;
+fun flooring_N : N;
+fun floozie_N : N;
+fun floozy_N : N;
+fun flop_Adv : Adv;
+fun flop_N : N;
+fun flop_V : V;
+fun flop_V2 : V2;
+fun floppy_A : A;
+fun flora_PN : PN;
+fun floral_A : A;
+fun florence_PN : PN;
+fun floriculture_N : N;
+fun florid_A : A;
+fun florida_PN : PN;
+fun florin_N : N;
+fun florist_N : N;
+fun florrie_PN : PN;
+fun floss_N : N;
+fun flotation_N : N;
+fun flotilla_N : N;
+fun flotsam_N : N;
+fun flounce_N : N;
+fun flounce_V : V;
+fun flounce_V2 : V2;
+fun flounder_N : N;
+fun flounder_V : V;
+fun flour_N : N;
+fun flour_V2 : V2;
+fun flourish_N : N;
+fun flourish_V : V;
+fun flourish_V2 : V2;
+fun floury_A : A;
+fun flout_V2 : V2;
+fun flow_N : N;
+fun flow_V : V;
+fun flower_N : N;
+fun flower_V : V;
+fun flower_girl_N : N;
+fun flowerbed_N : N;
+fun flowered_A : A;
+fun flowerless_A : A;
+fun flowerpot_N : N;
+fun flowery_A : A;
+fun flu_N : N;
+fun fluctuate_V : V;
+fun fluctuation_N : N;
+fun flue_N : N;
+fun fluency_N : N;
+fun fluent_A : A;
+fun fluff_N : N;
+fun fluff_V2 : V2;
+fun fluffy_A : A;
+fun fluid_A : A;
+fun fluid_N : N;
+fun fluidity_N : N;
+fun fluke_N : N;
+fun flume_N : N;
+fun flummox_V2 : V2;
+fun flunk_V : V;
+fun flunk_V2 : V2;
+fun flunkey_N : N;
+fun flunky_N : N;
+fun fluorescence_N : N;
+fun fluorescent_A : A;
+fun fluoridate_V2 : V2;
+fun fluoridation_N : N;
+fun fluoride_N : N;
+fun fluoridization_N : N;
+fun fluoridize_V2 : V2;
+fun fluorine_N : N;
+fun flurry_N : N;
+fun flurry_V2 : V2;
+fun flush_A : A;
+fun flush_N : N;
+fun flush_V : V;
+fun flush_V2 : V2;
+fun fluster_N : N;
+fun fluster_V2 : V2;
+fun flute_N : N;
+fun flute_V : V;
+fun flute_V2 : V2;
+fun fluting_N : N;
+fun flutist_N : N;
+fun flutter_N : N;
+fun flutter_V : V;
+fun flutter_V2 : V2;
+fun fluvial_A : A;
+fun flux_N : N;
+fun fly_A : A;
+fun fly_N : N;
+fun fly_V : V;
+fun fly_V2 : V2;
+fun fly_VS : VS;
+fun fly_fish_V : V;
+fun fly_fishing_N : N;
+fun fly_swat_N : N;
+fun fly_swatter_N : N;
+fun flyblown_A : A;
+fun flycatcher_N : N;
+fun flyer_N : N;
+fun flying_A : A;
+fun flying_bomb_N : N;
+fun flying_fish_N : N;
+fun flying_fox_N : N;
+fun flying_squad_N : N;
+fun flyleaf_N : N;
+fun flyover_N : N;
+fun flypaper_N : N;
+fun flypast_N : N;
+fun flytrap_N : N;
+fun flyweight_N : N;
+fun flywheel_N : N;
+fun fm_N : N;
+fun fo'c'sle_N : N;
+fun fo_N : N;
+fun foal_N : N;
+fun foal_V : V;
+fun foam_N : N;
+fun foam_V : V;
+fun foam_rubber_N : N;
+fun foamy_A : A;
+fun fob_V2 : V2;
+fun focal_A : A;
+fun focus_N : N;
+fun focus_V : V;
+fun focus_V2 : V2;
+fun fodder_N : N;
+fun foe_N : N;
+fun foetal_A : A;
+fun foetus_N : N;
+fun fog_N : N;
+fun fog_V2 : V2;
+fun fogbank_N : N;
+fun fogbound_A : A;
+fun fogey_N : N;
+fun foggia_PN : PN;
+fun foggy_A : A;
+fun foghorn_N : N;
+fun foglamp_N : N;
+fun fogsignal_N : N;
+fun foible_N : N;
+fun foil_N : N;
+fun foil_V2 : V2;
+fun foist_V2 : V2;
+fun fold_N : N;
+fun fold_V : V;
+fun fold_V2 : V2;
+fun folder_N : N;
+fun foliage_N : N;
+fun folio_N : N;
+fun folk_N : N;
+fun folk_dance_N : N;
+fun folkestone_PN : PN;
+fun folklore_N : N;
+fun folksong_N : N;
+fun folksy_A : A;
+fun folktale_N : N;
+fun follow_V : V;
+fun follow_V2 : V2;
+fun follow_VS : VS;
+fun follow_on_N : N;
+fun follow_through_N : N;
+fun follow_up_N : N;
+fun follower_N : N;
+fun following_A : A;
+fun following_N : N;
+fun folly_N : N;
+fun foment_V2 : V2;
+fun fomentation_N : N;
+fun fond_A : A;
+fun fondant_N : N;
+fun fondle_V2 : V2;
+fun fondness_N : N;
+fun font_N : N;
+fun foochow_PN : PN;
+fun food_N : N;
+fun foodless_A : A;
+fun foodstuff_N : N;
+fun fool_N : N;
+fun fool_V : V;
+fun fool_V2 : V2;
+fun foolery_N : N;
+fun foolhardiness_N : N;
+fun foolhardy_A : A;
+fun foolish_A : A;
+fun foolishness_N : N;
+fun foolproof_A : A;
+fun foolscap_N : N;
+fun foot_N : N;
+fun foot_V : V;
+fun foot_V2 : V2;
+fun foot_and_mouth_A : A;
+fun foot_and_mouth_N : N;
+fun foot_bath_N : N;
+fun foot_pound_N : N;
+fun foot_race_N : N;
+fun foot_rot_N : N;
+fun footage_N : N;
+fun football_N : N;
+fun footballer_N : N;
+fun footboard_N : N;
+fun footbridge_N : N;
+fun footed_A : A;
+fun footer_N : N;
+fun footfall_N : N;
+fun footfault_N : N;
+fun foothold_N : N;
+fun footing_N : N;
+fun footle_V : V;
+fun footle_V2 : V2;
+fun footling_A : A;
+fun footloose_A : A;
+fun footman_N : N;
+fun footmark_N : N;
+fun footnote_N : N;
+fun footpath_N : N;
+fun footplate_N : N;
+fun footprint_N : N;
+fun footslog_V : V;
+fun footslogger_N : N;
+fun footsore_A : A;
+fun footstep_N : N;
+fun footstool_N : N;
+fun footsure_A : A;
+fun footwear_N : N;
+fun footwork_N : N;
+fun fop_N : N;
+fun foppish_A : A;
+fun for_Prep : Prep ;
+fun forage_N : N;
+fun forage_V : V;
+fun foray_N : N;
+fun foray_V : V;
+fun forbear_N : N;
+fun forbear_V : V;
+fun forbear_V2 : V2;
+fun forbearance_N : N;
+fun forbid_V2 : V2;
+fun forbidding_A : A;
+fun force_N : N;
+fun force_V : V;
+fun force_V2 : V2;
+fun force_V2V : V2V;
+fun force_VS : VS;
+fun force_feed_V2 : V2;
+fun force_land_V : V;
+fun force_land_V2 : V2;
+fun force_majeure_N : N;
+fun forceful_A : A;
+fun forcefulness_N : N;
+fun forcemeat_N : N;
+fun forcible_A : A;
+fun ford_N : N;
+fun ford_V2 : V2;
+fun fordable_A : A;
+fun fore_A : A;
+fun fore_Adv : Adv;
+fun fore_N : N;
+fun forearm_N : N;
+fun forearm_V2 : V2;
+fun forebode_V2 : V2;
+fun foreboding_N : N;
+fun forecast_N : N;
+fun forecast_V : V;
+fun forecast_V2 : V2;
+fun forecast_VS : VS;
+fun forecaster_N : N;
+fun forecastle_N : N;
+fun foreclose_V : V;
+fun foreclose_V2 : V2;
+fun foreclosure_N : N;
+fun forecourt_N : N;
+fun foredoom_V2 : V2;
+fun forefather_N : N;
+fun forefinger_N : N;
+fun forefoot_N : N;
+fun forefront_N : N;
+fun foregather_V : V;
+fun forego_V : V;
+fun forego_V2 : V2;
+fun foregoing_A : A;
+fun foregone_A : A;
+fun foreground_N : N;
+fun forehand_A : A;
+fun forehead_N : N;
+fun foreign_A : A;
+fun foreigner_N : N;
+fun foreknow_V : V;
+fun foreknow_V2 : V2;
+fun foreknowledge_N : N;
+fun foreland_N : N;
+fun foreleg_N : N;
+fun forelock_N : N;
+fun foreman_N : N;
+fun foremast_N : N;
+fun foremost_A : A;
+fun foremost_Adv : Adv;
+fun forename_N : N;
+fun forenoon_N : N;
+fun forensic_A : A;
+fun foreordain_V2 : V2;
+fun forerunner_N : N;
+fun foresail_N : N;
+fun foresee_V2 : V2;
+fun foreseeable_A : A;
+fun foreshadow_V2 : V2;
+fun foreshore_N : N;
+fun foreshorten_V2 : V2;
+fun foresight_N : N;
+fun foreskin_N : N;
+fun forest_N : N;
+fun forestall_V2 : V2;
+fun forester_N : N;
+fun forestry_N : N;
+fun foreswear_V2 : V2;
+fun foretaste_N : N;
+fun foretell_V2 : V2;
+fun forethought_N : N;
+fun foretop_N : N;
+fun forever_Adv : Adv;
+fun forewarn_V2 : V2;
+fun forewoman_N : N;
+fun foreword_N : N;
+fun forfar_PN : PN;
+fun forfeit_N : N;
+fun forfeit_V2 : V2;
+fun forfeiture_N : N;
+fun forgather_V : V;
+fun forge_N : N;
+fun forge_V : V;
+fun forge_V2 : V2;
+fun forger_N : N;
+fun forgery_N : N;
+fun forget_V : V;
+fun forget_V2 : V2;
+fun forget_VS : VS;
+fun forget_me_not_N : N;
+fun forgetful_A : A;
+fun forgetfulness_N : N;
+fun forging_N : N;
+fun forgivable_A : A;
+fun forgive_V : V;
+fun forgive_V2 : V2;
+fun forgiveness_N : N;
+fun forgiving_A : A;
+fun forgo_V2 : V2;
+fun fork_N : N;
+fun fork_V : V;
+fun fork_V2 : V2;
+fun forked_A : A;
+fun forli_PN : PN;
+fun forlorn_A : A;
+fun forlornness_N : N;
+fun form_N : N;
+fun form_V : V;
+fun form_V2 : V2;
+fun formal_A : A;
+fun formaldehyde_N : N;
+fun formalin_N : N;
+fun formalism_N : N;
+fun formality_N : N;
+fun formalize_V2 : V2;
+fun format_N : N;
+fun formation_N : N;
+fun formative_A : A;
+fun formby_PN : PN;
+fun former_A : A;
+fun formic_A : A;
+fun formica_N : N;
+fun formidable_A : A;
+fun formless_A : A;
+fun formosa_PN : PN;
+fun formula_N : N;
+fun formulate_V2 : V2;
+fun formulation_N : N;
+fun fornicate_V : V;
+fun fornication_N : N;
+fun forrader_Adv : Adv;
+fun forsake_V2 : V2;
+fun forsooth_Adv : Adv;
+fun forswear_V2 : V2;
+fun forsythia_N : N;
+fun fort_N : N;
+fun fort_lauderdale_PN : PN;
+fun fort_william_PN : PN;
+fun fort_worth_PN : PN;
+fun fortaleza_PN : PN;
+fun forte_A : A;
+fun forte_Adv : Adv;
+fun forte_N : N;
+fun forth_Adv : Adv;
+fun forthcoming_A : A;
+fun forthright_A : A;
+fun forthwith_Adv : Adv;
+fun fortieth_A : A;
+fun fortieth_N : N;
+fun fortification_N : N;
+fun fortify_V2 : V2;
+fun fortissimo_A : A;
+fun fortissimo_Adv : Adv;
+fun fortitude_N : N;
+fun fortnight_N : N;
+fun fortnightly_A : A;
+fun fortnightly_Adv : Adv;
+fun fortress_N : N;
+fun fortuitous_A : A;
+fun fortunate_A : A;
+fun fortune_N : N;
+fun forty_A : A;
+fun forty_N : N;
+fun fortyish_A : A;
+fun forum_N : N;
+fun forward_A : A;
+fun forward_Adv : Adv;
+fun forward_N : N;
+fun forward_V2 : V2;
+fun forwardness_N : N;
+fun forwards_Adv : Adv;
+fun fosse_N : N;
+fun fossil_N : N;
+fun fossilization_N : N;
+fun fossilize_V : V;
+fun fossilize_V2 : V2;
+fun foster_V2 : V2;
+fun foster_brother_N : N;
+fun foster_child_N : N;
+fun foster_father_N : N;
+fun foster_mother_N : N;
+fun foster_parent_N : N;
+fun foster_sister_N : N;
+fun foul_A : A;
+fun foul_N : N;
+fun foul_V : V;
+fun foul_V2 : V2;
+fun foul_mouthed_A : A;
+fun foul_spoken_A : A;
+fun foulness_N : N;
+fun found_V2 : V2;
+fun foundation_N : N;
+fun foundation_stone_N : N;
+fun founder_N : N;
+fun founder_V : V;
+fun founder_V2 : V2;
+fun foundling_N : N;
+fun foundress_N : N;
+fun foundry_N : N;
+fun fount_N : N;
+fun fountain_N : N;
+fun fountain_head_N : N;
+fun fountain_pen_N : N;
+fun four_in_hand_N : N;
+fun four_part_A : A;
+fun four_ply_A : A;
+fun four_poster_N : N;
+fun four_pounder_N : N;
+fun four_wheeler_N : N;
+fun fourfold_A : A;
+fun fourfold_Adv : Adv;
+fun fourpence_N : N;
+fun fourpenny_A : A;
+fun fourscore_A : A;
+fun fourscore_N : N;
+fun foursome_N : N;
+fun foursquare_A : A;
+fun fowey_PN : PN;
+fun fowl_N : N;
+fun fowl_V : V;
+fun fowl_run_N : N;
+fun fowler_N : N;
+fun fowlingpiece_N : N;
+fun fowlpest_N : N;
+fun fox_N : N;
+fun fox_V2 : V2;
+fun fox_terrier_N : N;
+fun foxglove_N : N;
+fun foxhole_N : N;
+fun foxhound_N : N;
+fun foxhunt_N : N;
+fun foxhunt_V : V;
+fun foxhunter_N : N;
+fun foxtrot_N : N;
+fun foxy_A : A;
+fun foyer_N : N;
+fun fr_PN : PN;
+fun fracas_N : N;
+fun fraction_N : N;
+fun fractional_A : A;
+fun fractious_A : A;
+fun fractiousness_N : N;
+fun fracture_N : N;
+fun fracture_V : V;
+fun fracture_V2 : V2;
+fun fragile_A : A;
+fun fragility_N : N;
+fun fragment_N : N;
+fun fragment_V : V;
+fun fragment_V2 : V2;
+fun fragmentary_A : A;
+fun fragmentation_N : N;
+fun fragrance_N : N;
+fun fragrant_A : A;
+fun frail_A : A;
+fun frailty_N : N;
+fun frame_N : N;
+fun frame_V : V;
+fun frame_V2 : V2;
+fun frame_up_N : N;
+fun framework_N : N;
+fun frampton_cotterell_PN : PN;
+fun fran_PN : PN;
+fun franc_N : N;
+fun france_PN : PN;
+fun frances_PN : PN;
+fun franchise_N : N;
+fun francis_PN : PN;
+fun franciscan_A : A;
+fun franciscan_N : N;
+fun frank_A : A;
+fun frank_N : N;
+fun frank_PN : PN;
+fun frank_V2 : V2;
+fun frankfurt_PN : PN;
+fun frankfurter_N : N;
+fun frankie_PN : PN;
+fun frankincense_N : N;
+fun franking_machine_N : N;
+fun franklin_N : N;
+fun frankness_N : N;
+fun frantic_A : A;
+fun frantically_Adv : Adv;
+fun fraserburgh_PN : PN;
+fun fraternal_A : A;
+fun fraternity_N : N;
+fun fraternization_N : N;
+fun fraternize_V : V;
+fun fratricide_N : N;
+fun frau_N : N;
+fun fraud_N : N;
+fun fraudulent_A : A;
+fun fraught_A : A;
+fun fraulein_N : N;
+fun fray_N : N;
+fun fray_V : V;
+fun fray_V2 : V2;
+fun frazzle_N : N;
+fun freak_N : N;
+fun freak_V : V;
+fun freak_V2 : V2;
+fun freak_out_N : N;
+fun freakish_A : A;
+fun freakishness_N : N;
+fun freaky_A : A;
+fun freckle_N : N;
+fun freckle_V : V;
+fun freckle_V2 : V2;
+fun freckleton_PN : PN;
+fun fred_PN : PN;
+fun freda_PN : PN;
+fun freddie_PN : PN;
+fun freddy_PN : PN;
+fun frederick_PN : PN;
+fun frederiksberg_PN : PN;
+fun free_A : A;
+fun free_V2 : V2;
+fun free_V2V : V2V;
+fun free_and_easy_A : A;
+fun free_for_all_N : N;
+fun free_handed_A : A;
+fun free_list_N : N;
+fun free_liver_N : N;
+fun free_living_N : N;
+fun free_range_A : A;
+fun free_spoken_A : A;
+fun free_standing_A : A;
+fun free_thinker_N : N;
+fun free_thinking_A : A;
+fun free_thought_N : N;
+fun free_trader_N : N;
+fun freebooter_N : N;
+fun freeborn_A : A;
+fun freedman_N : N;
+fun freedom_N : N;
+fun freehand_A : A;
+fun freehold_N : N;
+fun freeholder_N : N;
+fun freelance_N : N;
+fun freelance_V : V;
+fun freeman_N : N;
+fun freemason_N : N;
+fun freemasonry_N : N;
+fun freesia_N : N;
+fun freestone_N : N;
+fun freestyle_N : N;
+fun freeway_N : N;
+fun freewheel_V : V;
+fun freewill_A : A;
+fun freeze_N : N;
+fun freeze_V : V;
+fun freeze_V2 : V2;
+fun freezer_N : N;
+fun freezing_mixture_N : N;
+fun freezing_point_N : N;
+fun freiburg_PN : PN;
+fun freight_N : N;
+fun freight_V2 : V2;
+fun freight_train_N : N;
+fun freighter_N : N;
+fun freightliner_N : N;
+fun french_A : A;
+fun french_N : N;
+fun frenchman_N : N;
+fun frenchwoman_N : N;
+fun frenetic_A : A;
+fun frenzied_A : A;
+fun frenzy_N : N;
+fun frequency_N : N;
+fun frequent_A : A;
+fun frequent_V2 : V2;
+fun fresco_N : N;
+fun fresco_V2 : V2;
+fun fresh_A : A;
+fun fresh_Adv : Adv;
+fun freshen_V : V;
+fun freshen_V2 : V2;
+fun fresher_N : N;
+fun freshman_N : N;
+fun freshness_N : N;
+fun freshwater_A : A;
+fun freshwater_PN : PN;
+fun fret_N : N;
+fun fret_V : V;
+fun fret_V2 : V2;
+fun fret_VS : VS;
+fun fretful_A : A;
+fun fretsaw_N : N;
+fun fretwork_N : N;
+fun freudian_A : A;
+fun fri_PN : PN;
+fun friability_N : N;
+fun friable_A : A;
+fun friar_N : N;
+fun fricassee_N : N;
+fun fricassee_V2 : V2;
+fun fricative_A : A;
+fun fricative_N : N;
+fun friction_N : N;
+fun friday_N : N;
+fun friday_PN : PN;
+fun fridge_N : N;
+fun friend_N : N;
+fun friendless_A : A;
+fun friendlessness_N : N;
+fun friendliness_N : N;
+fun friendly_A : A;
+fun friendship_N : N;
+fun frier_N : N;
+fun frieze_N : N;
+fun frigate_N : N;
+fun fright_N : N;
+fun fright_V2 : V2;
+fun frighten_V2 : V2;
+fun frightened_A : A;
+fun frightening_A : A;
+fun frightful_A : A;
+fun frightfulness_N : N;
+fun frigid_A : A;
+fun frigidity_N : N;
+fun frill_N : N;
+fun frilled_A : A;
+fun frilly_A : A;
+fun fringe_N : N;
+fun fringe_V2 : V2;
+fun frinton_PN : PN;
+fun frippery_N : N;
+fun frisk_V : V;
+fun frisk_V2 : V2;
+fun friskily_Adv : Adv;
+fun frisky_A : A;
+fun frisson_N : N;
+fun fritter_N : N;
+fun fritter_V2 : V2;
+fun frivol_V : V;
+fun frivol_V2 : V2;
+fun frivolity_N : N;
+fun frivolous_A : A;
+fun frizz_V2 : V2;
+fun frizzle_V : V;
+fun frizzle_V2 : V2;
+fun frizzy_A : A;
+fun fro_Adv : Adv;
+fun frock_N : N;
+fun frock_coat_N : N;
+fun frodsham_PN : PN;
+fun frog_N : N;
+fun frogman_N : N;
+fun frogmarch_V2 : V2;
+fun frolic_N : N;
+fun frolic_V : V;
+fun frolicsome_A : A;
+fun from_Prep : Prep ;
+fun frome_PN : PN;
+fun frond_N : N;
+fun front_N : N;
+fun front_V : V;
+fun front_V2 : V2;
+fun front_bench_N : N;
+fun front_bencher_N : N;
+fun frontage_N : N;
+fun frontal_A : A;
+fun frontier_N : N;
+fun frontiersman_N : N;
+fun frontispiece_N : N;
+fun frost_N : N;
+fun frost_V : V;
+fun frost_V2 : V2;
+fun frost_bound_A : A;
+fun frostbite_N : N;
+fun frostbitten_A : A;
+fun frostily_Adv : Adv;
+fun frostiness_N : N;
+fun frosting_N : N;
+fun frosty_A : A;
+fun froth_N : N;
+fun froth_V : V;
+fun frothily_Adv : Adv;
+fun frothiness_N : N;
+fun frothy_A : A;
+fun froward_A : A;
+fun frown_N : N;
+fun frown_V : V;
+fun frowningly_Adv : Adv;
+fun frowsty_A : A;
+fun frowzy_A : A;
+fun frs_N : N;
+fun fructification_N : N;
+fun fructify_V : V;
+fun fructify_V2 : V2;
+fun frugal_A : A;
+fun frugality_N : N;
+fun fruit_N : N;
+fun fruit_V : V;
+fun fruit_fly_N : N;
+fun fruitcake_N : N;
+fun fruiterer_N : N;
+fun fruitful_A : A;
+fun fruitfulness_N : N;
+fun fruition_N : N;
+fun fruitless_A : A;
+fun fruitlessness_N : N;
+fun fruity_A : A;
+fun frump_N : N;
+fun frumpish_A : A;
+fun frumpy_A : A;
+fun frustrate_V2 : V2;
+fun frustration_N : N;
+fun fry_N : N;
+fun fry_V : V;
+fun fry_V2 : V2;
+fun fry_pan_N : N;
+fun fryer_N : N;
+fun frying_pan_N : N;
+fun ft_PN : PN;
+fun fuchsia_N : N;
+fun fuck_V : V;
+fun fuck_V2 : V2;
+fun fuck_all_N : N;
+fun fucker_N : N;
+fun fucking_A : A;
+fun fuddle_V2 : V2;
+fun fuddy_duddy_N : N;
+fun fudge_N : N;
+fun fuel_N : N;
+fun fuel_V : V;
+fun fuel_V2 : V2;
+fun fug_N : N;
+fun fuggy_A : A;
+fun fugitive_A : A;
+fun fugitive_N : N;
+fun fugue_N : N;
+fun fuhrer_N : N;
+fun fulcrum_N : N;
+fun fulfil_V2 : V2;
+fun fulfill_V2 : V2;
+fun fulfilment_N : N;
+fun full_A : A;
+fun full_blooded_A : A;
+fun full_blown_A : A;
+fun full_dress_A : A;
+fun full_fashioned_A : A;
+fun full_fledged_A : A;
+fun full_grown_A : A;
+fun full_length_A : A;
+fun full_page_A : A;
+fun full_scale_A : A;
+fun full_time_A : A;
+fun full_time_Adv : Adv;
+fun fullback_N : N;
+fun fuller_N : N;
+fun fullness_N : N;
+fun fully_Adv : Adv;
+fun fully_fashioned_A : A;
+fun fully_fledged_A : A;
+fun fully_grown_A : A;
+fun fulmar_N : N;
+fun fulminate_V : V;
+fun fulmination_N : N;
+fun fulsome_A : A;
+fun fulsomeness_N : N;
+fun fumble_V : V;
+fun fumble_V2 : V2;
+fun fumbler_N : N;
+fun fume_N : N;
+fun fume_V : V;
+fun fume_V2 : V2;
+fun fumigate_V2 : V2;
+fun fumigation_N : N;
+fun fun_N : N;
+fun function_N : N;
+fun function_V : V;
+fun functional_A : A;
+fun functionalism_N : N;
+fun functionalist_N : N;
+fun functionary_N : N;
+fun fund_N : N;
+fun fund_V2 : V2;
+fun fundamental_A : A;
+fun fundamental_N : N;
+fun fundamentalism_N : N;
+fun fundamentalist_N : N;
+fun funeral_N : N;
+fun funereal_A : A;
+fun funfair_N : N;
+fun fungicide_N : N;
+fun fungoid_A : A;
+fun fungous_A : A;
+fun fungus_N : N;
+fun funicular_N : N;
+fun funk_N : N;
+fun funk_V : V;
+fun funk_V2 : V2;
+fun funky_A : A;
+fun funnel_N : N;
+fun funnel_V : V;
+fun funnel_V2 : V2;
+fun funnily_Adv : Adv;
+fun funniness_N : N;
+fun funny_A : A;
+fun funny_bone_N : N;
+fun fur_N : N;
+fun furbelow_N : N;
+fun furbish_V2 : V2;
+fun furious_A : A;
+fun furl_V : V;
+fun furl_V2 : V2;
+fun furlong_N : N;
+fun furlough_N : N;
+fun furnace_N : N;
+fun furnish_V2 : V2;
+fun furniture_N : N;
+fun furore_N : N;
+fun furrier_N : N;
+fun furrow_N : N;
+fun furrow_V : V;
+fun furrow_V2 : V2;
+fun furry_A : A;
+fun furth_PN : PN;
+fun further_Adv : Adv;
+fun further_V2 : V2;
+fun furtherance_N : N;
+fun furthermore_Adv : Adv;
+fun furthermost_A : A;
+fun furthest_A : A;
+fun furthest_Adv : Adv;
+fun furtive_A : A;
+fun furtiveness_N : N;
+fun fury_N : N;
+fun furze_N : N;
+fun fuse_N : N;
+fun fuse_V : V;
+fun fuse_V2 : V2;
+fun fuselage_N : N;
+fun fushun_PN : PN;
+fun fusilier_N : N;
+fun fusillade_N : N;
+fun fusion_N : N;
+fun fuss_N : N;
+fun fuss_V : V;
+fun fuss_V2 : V2;
+fun fussily_Adv : Adv;
+fun fussiness_N : N;
+fun fusspot_N : N;
+fun fussy_A : A;
+fun fustian_N : N;
+fun fusty_A : A;
+fun futile_A : A;
+fun futility_N : N;
+fun future_A : A;
+fun future_N : N;
+fun futureless_A : A;
+fun futurism_N : N;
+fun futurist_N : N;
+fun futurity_N : N;
+fun fuze_N : N;
+fun fuzz_N : N;
+fun fuzzy_A : A;
+fun fwd_PN : PN;
+fun g_man_N : N;
+fun gab_N : N;
+fun gabardine_N : N;
+fun gabble_N : N;
+fun gabble_V : V;
+fun gabble_V2 : V2;
+fun gaberdine_N : N;
+fun gable_N : N;
+fun gabled_A : A;
+fun gabon_PN : PN;
+fun gabonese_A : A;
+fun gabonese_N : N;
+fun gad_V : V;
+fun gadabout_N : N;
+fun gadfly_N : N;
+fun gadget_N : N;
+fun gadgetry_N : N;
+fun gael_N : N;
+fun gaelic_A : A;
+fun gaelic_N : N;
+fun gaff_N : N;
+fun gaffe_N : N;
+fun gaffer_N : N;
+fun gag_N : N;
+fun gag_V : V;
+fun gag_V2 : V2;
+fun gaga_A : A;
+fun gage_N : N;
+fun gage_V2 : V2;
+fun gaggle_N : N;
+fun gaiety_N : N;
+fun gaily_Adv : Adv;
+fun gain_N : N;
+fun gain_V : V;
+fun gain_V2 : V2;
+fun gainful_A : A;
+fun gainsay_V2 : V2;
+fun gainsborough_N : N;
+fun gainsborough_PN : PN;
+fun gait_N : N;
+fun gaiter_N : N;
+fun gal_N : N;
+fun gala_N : N;
+fun galactic_A : A;
+fun galantine_N : N;
+fun galashiels_PN : PN;
+fun galaxy_N : N;
+fun gale_N : N;
+fun gall_N : N;
+fun gall_V2 : V2;
+fun gallant_A : A;
+fun gallant_N : N;
+fun gallantry_N : N;
+fun galleon_N : N;
+fun gallery_N : N;
+fun galley_N : N;
+fun galley_proof_N : N;
+fun galley_slave_N : N;
+fun gallic_A : A;
+fun gallicism_N : N;
+fun gallivant_V : V;
+fun gallon_N : N;
+fun gallop_N : N;
+fun gallop_V : V;
+fun gallop_V2 : V2;
+fun galloway_PN : PN;
+fun gallows_bird_N : N;
+fun gallstone_N : N;
+fun gallup_PN : PN;
+fun galore_Adv : Adv;
+fun galosh_N : N;
+fun galumph_V : V;
+fun galvanic_A : A;
+fun galvanism_N : N;
+fun galvanize_V2 : V2;
+fun galvanize_VS : VS;
+fun galway_PN : PN;
+fun gambia_PN : PN;
+fun gambian_A : A;
+fun gambian_N : N;
+fun gambit_N : N;
+fun gamble_N : N;
+fun gamble_V : V;
+fun gamble_V2 : V2;
+fun gambler_N : N;
+fun gambling_N : N;
+fun gambling_den_N : N;
+fun gamboge_N : N;
+fun gambol_N : N;
+fun gambol_V : V;
+fun game_A : A;
+fun game_N : N;
+fun game_V : V;
+fun game_V2 : V2;
+fun game_bag_N : N;
+fun game_bird_N : N;
+fun game_licence_N : N;
+fun gamecock_N : N;
+fun gamekeeper_N : N;
+fun games_master_N : N;
+fun games_mistress_N : N;
+fun gamesmanship_N : N;
+fun gaming_house_N : N;
+fun gaming_table_N : N;
+fun gamma_N : N;
+fun gammon_N : N;
+fun gammy_A : A;
+fun gamp_N : N;
+fun gamut_N : N;
+fun gamy_A : A;
+fun gander_N : N;
+fun gang_N : N;
+fun gang_V : V;
+fun ganger_N : N;
+fun gangling_A : A;
+fun ganglion_N : N;
+fun gangplank_N : N;
+fun gangrene_N : N;
+fun gangrene_V : V;
+fun gangrene_V2 : V2;
+fun gangrenous_A : A;
+fun gangster_N : N;
+fun gangway_N : N;
+fun gannet_N : N;
+fun gantry_N : N;
+fun gaol_N : N;
+fun gaol_V2 : V2;
+fun gaolbird_N : N;
+fun gaolbreak_N : N;
+fun gaoler_N : N;
+fun gap_N : N;
+fun gap_toothed_A : A;
+fun gape_N : N;
+fun gape_V : V;
+fun garage_N : N;
+fun garage_V2 : V2;
+fun garb_N : N;
+fun garb_V2 : V2;
+fun garbage_N : N;
+fun garbage_can_N : N;
+fun garble_V2 : V2;
+fun garden_N : N;
+fun garden_V : V;
+fun garden_truck_N : N;
+fun gardener_N : N;
+fun gardenia_N : N;
+fun gardening_N : N;
+fun gareth_PN : PN;
+fun garforth_PN : PN;
+fun gargantuan_A : A;
+fun gargle_N : N;
+fun gargle_V : V;
+fun gargle_V2 : V2;
+fun gargoyle_N : N;
+fun garish_A : A;
+fun garland_N : N;
+fun garland_V2 : V2;
+fun garlic_N : N;
+fun garment_N : N;
+fun garner_N : N;
+fun garner_V2 : V2;
+fun garnet_N : N;
+fun garnish_N : N;
+fun garnish_V2 : V2;
+fun garotte_N : N;
+fun garotte_V2 : V2;
+fun garret_N : N;
+fun garrison_N : N;
+fun garrison_V2 : V2;
+fun garrotte_N : N;
+fun garrotte_V2 : V2;
+fun garrowhill_PN : PN;
+fun garrulity_N : N;
+fun garrulous_A : A;
+fun garter_N : N;
+fun gary_PN : PN;
+fun gas_N : N;
+fun gas_V : V;
+fun gas_V2 : V2;
+fun gas_bracket_N : N;
+fun gas_cooker_N : N;
+fun gas_engine_N : N;
+fun gas_fitter_N : N;
+fun gas_helmet_N : N;
+fun gas_holder_N : N;
+fun gas_mask_N : N;
+fun gas_meter_N : N;
+fun gas_oven_N : N;
+fun gas_ring_N : N;
+fun gas_station_N : N;
+fun gas_stove_N : N;
+fun gasbag_N : N;
+fun gaseous_A : A;
+fun gash_N : N;
+fun gash_V2 : V2;
+fun gasification_N : N;
+fun gasify_V : V;
+fun gasify_V2 : V2;
+fun gasket_N : N;
+fun gaslight_N : N;
+fun gasmask_N : N;
+fun gasolene_N : N;
+fun gasoline_N : N;
+fun gasometer_N : N;
+fun gasp_N : N;
+fun gasp_V : V;
+fun gasp_V2 : V2;
+fun gassy_A : A;
+fun gastric_A : A;
+fun gastritis_N : N;
+fun gastronomic_A : A;
+fun gastronomy_N : N;
+fun gasworks_N : N;
+fun gate_N : N;
+fun gate_V2 : V2;
+fun gateau_N : N;
+fun gatecrash_V2 : V2;
+fun gatecrasher_N : N;
+fun gatehouse_N : N;
+fun gatepost_N : N;
+fun gateshead_PN : PN;
+fun gateway_N : N;
+fun gather_V : V;
+fun gather_V2 : V2;
+fun gatherer_N : N;
+fun gathering_N : N;
+fun gatt_N : N;
+fun gauche_A : A;
+fun gaucherie_N : N;
+fun gaucho_N : N;
+fun gaud_N : N;
+fun gaudily_Adv : Adv;
+fun gaudy_A : A;
+fun gaudy_N : N;
+fun gauge_N : N;
+fun gauge_V2 : V2;
+fun gaul_N : N;
+fun gaunt_A : A;
+fun gauntlet_N : N;
+fun gauntness_N : N;
+fun gauze_N : N;
+fun gauzy_A : A;
+fun gavel_N : N;
+fun gavin_PN : PN;
+fun gavotte_N : N;
+fun gawk_N : N;
+fun gawkiness_N : N;
+fun gawky_A : A;
+fun gawp_V : V;
+fun gay_A : A;
+fun gay_N : N;
+fun gayness_N : N;
+fun gaze_N : N;
+fun gaze_V : V;
+fun gazelle_N : N;
+fun gazette_N : N;
+fun gazette_V2 : V2;
+fun gazetteer_N : N;
+fun gazump_V : V;
+fun gazump_V2 : V2;
+fun gb_PN : PN;
+fun gcse_N : N;
+fun gcses_N : N;
+fun gdansk_PN : PN;
+fun gdn_PN : PN;
+fun gdns_PN : PN;
+fun gear_N : N;
+fun gear_V : V;
+fun gear_V2 : V2;
+fun gear_case_N : N;
+fun gearbox_N : N;
+fun gearshift_N : N;
+fun gecko_N : N;
+fun gee_gee_N : N;
+fun geezer_N : N;
+fun geiger_N : N;
+fun geisha_N : N;
+fun gel_N : N;
+fun gel_V : V;
+fun gelatin_N : N;
+fun gelatine_N : N;
+fun gelatinous_A : A;
+fun geld_V2 : V2;
+fun gelding_N : N;
+fun gelignite_N : N;
+fun gelligaer_PN : PN;
+fun gelsenkirchen_PN : PN;
+fun gem_N : N;
+fun gemini_PN : PN;
+fun gemmed_A : A;
+fun gen_N : N;
+fun gen_PN : PN;
+fun gen_V2 : V2;
+fun gendarme_N : N;
+fun gendarmerie_N : N;
+fun gender_N : N;
+fun gene_N : N;
+fun gene_PN : PN;
+fun genealogical_A : A;
+fun genealogist_N : N;
+fun genealogy_N : N;
+fun general_A : A;
+fun general_N : N;
+fun generalissimo_N : N;
+fun generality_N : N;
+fun generalization_N : N;
+fun generalize_V : V;
+fun generalize_V2 : V2;
+fun generate_V2 : V2;
+fun generation_N : N;
+fun generative_A : A;
+fun generator_N : N;
+fun generic_A : A;
+fun generically_Adv : Adv;
+fun generosity_N : N;
+fun generous_A : A;
+fun genesis_N : N;
+fun genetic_A : A;
+fun genetically_Adv : Adv;
+fun geneticist_N : N;
+fun genetics_N : N;
+fun geneva_PN : PN;
+fun genial_A : A;
+fun geniality_N : N;
+fun genie_N : N;
+fun genital_A : A;
+fun genitive_A : A;
+fun genius_N : N;
+fun genius_loci_N : N;
+fun genoa_PN : PN;
+fun genocide_N : N;
+fun genova_PN : PN;
+fun genre_N : N;
+fun genre_painting_N : N;
+fun gent_N : N;
+fun genteel_A : A;
+fun gentian_N : N;
+fun gentile_A : A;
+fun gentile_N : N;
+fun gentility_N : N;
+fun gentle_A : A;
+fun gentleman_N : N;
+fun gentleman_at_arms_N : N;
+fun gentlemanly_A : A;
+fun gentleness_N : N;
+fun gentlewoman_N : N;
+fun gently_Adv : Adv;
+fun gentry_N : N;
+fun genuflect_V : V;
+fun genuflection_N : N;
+fun genuflexion_N : N;
+fun genuine_A : A;
+fun genuineness_N : N;
+fun genus_N : N;
+fun geocentric_A : A;
+fun geoff_PN : PN;
+fun geoffrey_PN : PN;
+fun geographer_N : N;
+fun geographical_A : A;
+fun geography_N : N;
+fun geological_A : A;
+fun geologist_N : N;
+fun geology_N : N;
+fun geometric_A : A;
+fun geometrical_A : A;
+fun geometry_N : N;
+fun geophysical_A : A;
+fun geophysics_N : N;
+fun geopolitics_N : N;
+fun george_PN : PN;
+fun georgette_N : N;
+fun georgia_PN : PN;
+fun georgian_A : A;
+fun georgian_N : N;
+fun georgie_PN : PN;
+fun gerald_PN : PN;
+fun geraldine_PN : PN;
+fun geranium_N : N;
+fun gerard_PN : PN;
+fun geriatric_A : A;
+fun geriatrician_N : N;
+fun geriatrics_N : N;
+fun germ_N : N;
+fun german_A : A;
+fun german_N : N;
+fun germane_A : A;
+fun germanic_A : A;
+fun germany_PN : PN;
+fun germicide_N : N;
+fun germinate_V : V;
+fun germinate_V2 : V2;
+fun germination_N : N;
+fun gerontology_N : N;
+fun gerry_PN : PN;
+fun gerrymander_N : N;
+fun gerrymander_V2 : V2;
+fun gertie_PN : PN;
+fun gertrude_PN : PN;
+fun gerund_N : N;
+fun gestapo_N : N;
+fun gestation_N : N;
+fun gesticulate_V : V;
+fun gesticulation_N : N;
+fun gesture_N : N;
+fun gesture_V : V;
+fun get_V : V;
+fun get_V2 : V2;
+fun get_V2V : V2V;
+fun get_VA : VA;
+fun get_VV : VV;
+fun get_VS : VS;
+fun get_at_able_A : A;
+fun get_together_N : N;
+fun get_up_N : N;
+fun getaway_N : N;
+fun geum_N : N;
+fun geyser_N : N;
+fun ghana_PN : PN;
+fun ghanaian_A : A;
+fun ghanaian_N : N;
+fun gharry_N : N;
+fun ghastly_A : A;
+fun ghat_N : N;
+fun ghee_N : N;
+fun ghent_PN : PN;
+fun gherkin_N : N;
+fun ghetto_N : N;
+fun ghost_N : N;
+fun ghost_V : V;
+fun ghost_V2 : V2;
+fun ghost_writer_N : N;
+fun ghostliness_N : N;
+fun ghostly_A : A;
+fun ghoul_N : N;
+fun ghoulish_A : A;
+fun ghq_PN : PN;
+fun gi_N : N;
+fun giant_N : N;
+fun giantess_N : N;
+fun gibber_V : V;
+fun gibberish_N : N;
+fun gibbet_N : N;
+fun gibbet_V2 : V2;
+fun gibbon_N : N;
+fun gibbous_A : A;
+fun gibe_N : N;
+fun gibe_V : V;
+fun gibingly_Adv : Adv;
+fun gibraltar_PN : PN;
+fun gibraltarian_A : A;
+fun gibraltarian_N : N;
+fun giddily_Adv : Adv;
+fun giddiness_N : N;
+fun giddy_A : A;
+fun giffnock_PN : PN;
+fun gift_N : N;
+fun gift_V2 : V2;
+fun gifted_A : A;
+fun gig_N : N;
+fun gigantic_A : A;
+fun giggle_N : N;
+fun giggle_V : V;
+fun gigolo_N : N;
+fun gilbert_PN : PN;
+fun gilbertian_A : A;
+fun gild_N : N;
+fun gild_V2 : V2;
+fun gilder_N : N;
+fun gilding_N : N;
+fun giles_PN : PN;
+fun gilfach_goch_PN : PN;
+fun gill_N : N;
+fun gill_PN : PN;
+fun gillian_PN : PN;
+fun gillie_N : N;
+fun gillingham_PN : PN;
+fun gilt_N : N;
+fun gilt_edged_A : A;
+fun gimcrack_A : A;
+fun gimlet_N : N;
+fun gimmick_N : N;
+fun gin_N : N;
+fun gin_V2 : V2;
+fun gina_PN : PN;
+fun ginger_N : N;
+fun ginger_V2 : V2;
+fun gingerbread_N : N;
+fun gingerly_A : A;
+fun gingerly_Adv : Adv;
+fun gingham_N : N;
+fun gingko_N : N;
+fun ginseng_N : N;
+fun gipsy_N : N;
+fun giraffe_N : N;
+fun gird_V : V;
+fun gird_V2 : V2;
+fun girder_N : N;
+fun girdle_N : N;
+fun girdle_V2 : V2;
+fun girl_N : N;
+fun girlfriend_N : N;
+fun girlhood_N : N;
+fun girlish_A : A;
+fun girlishness_N : N;
+fun giro_N : N;
+fun girth_N : N;
+fun girvan_PN : PN;
+fun gist_N : N;
+fun give_N : N;
+fun give_V : V;
+fun give_V2 : V2;
+fun give_V3 : V3;
+fun giveaway_N : N;
+fun giver_N : N;
+fun giveth_V2 : V2;
+fun gizzard_N : N;
+fun glace_A : A;
+fun glacial_A : A;
+fun glacier_N : N;
+fun glad_A : A;
+fun gladden_V2 : V2;
+fun glade_N : N;
+fun gladiator_N : N;
+fun gladiatorial_A : A;
+fun gladiolus_N : N;
+fun gladness_N : N;
+fun gladsome_A : A;
+fun gladys_PN : PN;
+fun glamorgan_PN : PN;
+fun glamorization_N : N;
+fun glamorize_V2 : V2;
+fun glamorous_A : A;
+fun glamour_N : N;
+fun glance_N : N;
+fun glance_V : V;
+fun glance_V2 : V2;
+fun gland_N : N;
+fun glanders_N : N;
+fun glandular_A : A;
+fun glare_N : N;
+fun glare_V : V;
+fun glare_V2 : V2;
+fun glaring_A : A;
+fun glasgow_PN : PN;
+fun glass_N : N;
+fun glass_V2 : V2;
+fun glass_blower_N : N;
+fun glass_cutter_N : N;
+fun glass_wool_N : N;
+fun glassful_N : N;
+fun glasshouse_N : N;
+fun glassware_N : N;
+fun glassworks_N : N;
+fun glassy_A : A;
+fun glastonbury_PN : PN;
+fun glaswegian_A : A;
+fun glaswegian_N : N;
+fun glaucoma_N : N;
+fun glaucous_A : A;
+fun glaze_N : N;
+fun glaze_V : V;
+fun glaze_V2 : V2;
+fun glazier_N : N;
+fun gleam_N : N;
+fun gleam_V : V;
+fun glean_V : V;
+fun glean_V2 : V2;
+fun gleaner_N : N;
+fun glebe_N : N;
+fun glee_N : N;
+fun gleeful_A : A;
+fun glen_N : N;
+fun glen_PN : PN;
+fun glengarry_N : N;
+fun glenrothes_PN : PN;
+fun glib_A : A;
+fun glibness_N : N;
+fun glide_N : N;
+fun glide_V : V;
+fun glider_N : N;
+fun gliding_N : N;
+fun glimmer_N : N;
+fun glimmer_V : V;
+fun glimpse_N : N;
+fun glimpse_V2 : V2;
+fun glint_N : N;
+fun glint_V : V;
+fun glissade_N : N;
+fun glissade_V : V;
+fun glissando_A : A;
+fun glissando_Adv : Adv;
+fun glisten_V : V;
+fun glister_N : N;
+fun glister_V : V;
+fun glitter_N : N;
+fun glitter_V : V;
+fun glittering_A : A;
+fun gloaming_N : N;
+fun gloat_V : V;
+fun gloat_VS : VS;
+fun gloatingly_Adv : Adv;
+fun global_A : A;
+fun globe_N : N;
+fun globetrot_V : V;
+fun globetrotter_N : N;
+fun globular_A : A;
+fun globule_N : N;
+fun glockenspiel_N : N;
+fun gloom_N : N;
+fun gloomily_Adv : Adv;
+fun gloomy_A : A;
+fun gloria_PN : PN;
+fun glorification_N : N;
+fun glorify_V2 : V2;
+fun glorious_A : A;
+fun glory_N : N;
+fun glory_V : V;
+fun glory_hole_N : N;
+fun gloss_N : N;
+fun gloss_V2 : V2;
+fun glossary_N : N;
+fun glossily_Adv : Adv;
+fun glossiness_N : N;
+fun glossop_PN : PN;
+fun glossy_A : A;
+fun glottal_A : A;
+fun glottis_N : N;
+fun gloucester_PN : PN;
+fun gloucestershire_PN : PN;
+fun glove_N : N;
+fun glove_compartment_N : N;
+fun gloved_A : A;
+fun glow_N : N;
+fun glow_V : V;
+fun glow_worm_N : N;
+fun glower_V : V;
+fun gloweringly_Adv : Adv;
+fun glowing_A : A;
+fun glucose_N : N;
+fun glue_N : N;
+fun glue_V2 : V2;
+fun gluey_A : A;
+fun glum_A : A;
+fun glumness_N : N;
+fun glusburn_PN : PN;
+fun glut_N : N;
+fun glut_V2 : V2;
+fun gluten_N : N;
+fun glutinous_A : A;
+fun glutton_N : N;
+fun gluttonous_A : A;
+fun gluttony_N : N;
+fun glycerine_N : N;
+fun gmt_PN : PN;
+fun gnarled_A : A;
+fun gnash_V : V;
+fun gnash_V2 : V2;
+fun gnat_N : N;
+fun gnaw_V : V;
+fun gnaw_V2 : V2;
+fun gnome_N : N;
+fun gnp_N : N;
+fun gnu_N : N;
+fun go_N : N;
+fun go_V : V;
+fun go_V2 : V2;
+fun go_VA : VA;
+fun go_VV : VV;
+fun go_VS : VS;
+fun go_ahead_N : N;
+fun go_as_you_please_A : A;
+fun go_between_N : N;
+fun go_by_N : N;
+fun go_cart_N : N;
+fun go_getter_N : N;
+fun go_kart_N : N;
+fun go_slow_N : N;
+fun go_to_meeting_A : A;
+fun goad_N : N;
+fun goad_V2 : V2;
+fun goal_N : N;
+fun goal_kick_N : N;
+fun goal_line_N : N;
+fun goalie_N : N;
+fun goalkeeper_N : N;
+fun goalless_A : A;
+fun goalmouth_N : N;
+fun goat_N : N;
+fun goatee_N : N;
+fun goatherd_N : N;
+fun goatskin_N : N;
+fun gob_N : N;
+fun gobbet_N : N;
+fun gobble_N : N;
+fun gobble_V : V;
+fun gobble_V2 : V2;
+fun gobbledygook_N : N;
+fun gobbler_N : N;
+fun goblet_N : N;
+fun goblin_N : N;
+fun god_N : N;
+fun god_PN : PN;
+fun god_damn_A : A;
+fun god_damned_A : A;
+fun godalming_PN : PN;
+fun godchild_N : N;
+fun goddam_A : A;
+fun goddam_Adv : Adv;
+fun goddaughter_N : N;
+fun goddess_N : N;
+fun godfather_N : N;
+fun godfearing_A : A;
+fun godforsaken_A : A;
+fun godfrey_PN : PN;
+fun godhead_N : N;
+fun godless_A : A;
+fun godlessness_N : N;
+fun godlike_A : A;
+fun godliness_N : N;
+fun godly_A : A;
+fun godmanchester_PN : PN;
+fun godmother_N : N;
+fun godown_N : N;
+fun godparent_N : N;
+fun godsend_N : N;
+fun godson_N : N;
+fun godspeed_N : N;
+fun goffs_oak_PN : PN;
+fun goggle_V : V;
+fun goggle_box_N : N;
+fun goggle_eyed_A : A;
+fun going_A : A;
+fun going_N : N;
+fun going_over_N : N;
+fun goitre_N : N;
+fun golbourne_PN : PN;
+fun gold_N : N;
+fun gold_beater_N : N;
+fun gold_digger_N : N;
+fun gold_dust_N : N;
+fun gold_foil_N : N;
+fun gold_leaf_N : N;
+fun gold_plate_N : N;
+fun gold_rush_N : N;
+fun golden_A : A;
+fun goldfield_N : N;
+fun goldfinch_N : N;
+fun goldfish_N : N;
+fun goldmine_N : N;
+fun goldsmith_N : N;
+fun golf_N : N;
+fun golf_V : V;
+fun golf_ball_N : N;
+fun golf_club_N : N;
+fun golf_course_N : N;
+fun golf_links_N : N;
+fun golfer_N : N;
+fun goliath_N : N;
+fun golliwog_N : N;
+fun golosh_N : N;
+fun gondola_N : N;
+fun gondolier_N : N;
+fun goner_N : N;
+fun gong_N : N;
+fun gong_V2 : V2;
+fun gonorrhea_N : N;
+fun gonorrhoea_N : N;
+fun goo_N : N;
+fun good_A : A;
+fun good_N : N;
+fun good_fellowship_N : N;
+fun good_for_naught_A : A;
+fun good_for_naught_N : N;
+fun good_for_nothing_A : A;
+fun good_for_nothing_N : N;
+fun good_humoured_A : A;
+fun good_looking_A : A;
+fun good_natured_A : A;
+fun good_neighbourliness_N : N;
+fun good_tempered_A : A;
+fun good_time_A : A;
+fun goodbye_N : N;
+fun goodish_A : A;
+fun goodly_A : A;
+fun goodness_N : N;
+fun goodwill_N : N;
+fun goody_N : N;
+fun goody_goody_A : A;
+fun goody_goody_N : N;
+fun gooey_A : A;
+fun goof_N : N;
+fun goof_V : V;
+fun goof_V2 : V2;
+fun goofy_A : A;
+fun googly_N : N;
+fun goole_PN : PN;
+fun goon_N : N;
+fun goose_N : N;
+fun goose_flesh_N : N;
+fun goose_step_N : N;
+fun gooseberry_N : N;
+fun gopher_N : N;
+fun gordian_A : A;
+fun gordon_PN : PN;
+fun gore_N : N;
+fun gore_V2 : V2;
+fun gorge_N : N;
+fun gorge_V : V;
+fun gorge_V2 : V2;
+fun gorgeous_A : A;
+fun gorgon_N : N;
+fun gorgonzola_N : N;
+fun gorilla_N : N;
+fun gorky_PN : PN;
+fun gormandize_V : V;
+fun gormless_A : A;
+fun gorse_N : N;
+fun gorseinon_PN : PN;
+fun gory_A : A;
+fun gosling_N : N;
+fun gospel_N : N;
+fun gosport_PN : PN;
+fun gossamer_N : N;
+fun gossip_N : N;
+fun gossip_V : V;
+fun goteborg_PN : PN;
+fun goth_N : N;
+fun gothenburg_PN : PN;
+fun gothic_A : A;
+fun gothic_N : N;
+fun gottingen_PN : PN;
+fun gouache_N : N;
+fun gouge_N : N;
+fun gouge_V2 : V2;
+fun goulash_N : N;
+fun gourd_N : N;
+fun gourmand_N : N;
+fun gourmet_N : N;
+fun gourock_PN : PN;
+fun gout_N : N;
+fun gouty_A : A;
+fun gov_PN : PN;
+fun govern_V : V;
+fun govern_V2 : V2;
+fun governance_N : N;
+fun governess_N : N;
+fun governing_A : A;
+fun government_N : N;
+fun governmental_A : A;
+fun governor_N : N;
+fun governor_general_N : N;
+fun govt_N : N;
+fun gown_N : N;
+fun gown_V2 : V2;
+fun gp_N : N;
+fun grab_N : N;
+fun grab_V : V;
+fun grab_V2 : V2;
+fun grabber_N : N;
+fun grace_N : N;
+fun grace_V2 : V2;
+fun graceful_A : A;
+fun graceless_A : A;
+fun gracious_A : A;
+fun graciousness_N : N;
+fun gradation_N : N;
+fun grade_N : N;
+fun grade_V2 : V2;
+fun gradient_N : N;
+fun gradual_A : A;
+fun gradualness_N : N;
+fun graduate_N : N;
+fun graduate_V : V;
+fun graduate_V2 : V2;
+fun graduation_N : N;
+fun graffito_N : N;
+fun graft_N : N;
+fun graft_V : V;
+fun graft_V2 : V2;
+fun grail_N : N;
+fun grain_N : N;
+fun grained_A : A;
+fun gram_N : N;
+fun grammar_N : N;
+fun grammarian_N : N;
+fun grammatical_A : A;
+fun gramme_N : N;
+fun gramophone_N : N;
+fun grampian_PN : PN;
+fun grampus_N : N;
+fun granada_PN : PN;
+fun granary_N : N;
+fun grand_A : A;
+fun grand_prix_N : N;
+fun grandad_N : N;
+fun grandaunt_N : N;
+fun grandchild_N : N;
+fun granddad_N : N;
+fun granddaughter_N : N;
+fun grandee_N : N;
+fun grandeur_N : N;
+fun grandfather_N : N;
+fun grandiloquence_N : N;
+fun grandiloquent_A : A;
+fun grandiose_A : A;
+fun grandma_N : N;
+fun grandmother_N : N;
+fun grandnephew_N : N;
+fun grandniece_N : N;
+fun grandpa_N : N;
+fun grandparent_N : N;
+fun grandson_N : N;
+fun grandstand_N : N;
+fun granduncle_N : N;
+fun grange_N : N;
+fun grangemouth_PN : PN;
+fun granite_N : N;
+fun grannie_N : N;
+fun granny_N : N;
+fun grant_N : N;
+fun grant_V2 : V2;
+fun grantham_PN : PN;
+fun granular_A : A;
+fun granularity_N : N;
+fun granulate_V : V;
+fun granulate_V2 : V2;
+fun granule_N : N;
+fun grape_N : N;
+fun grape_sugar_N : N;
+fun grapefruit_N : N;
+fun grapeshot_N : N;
+fun grapevine_N : N;
+fun graph_N : N;
+fun graphic_A : A;
+fun graphical_A : A;
+fun graphics_N : N;
+fun graphite_N : N;
+fun grapnel_N : N;
+fun grapple_V : V;
+fun grappling_iron_N : N;
+fun grasp_N : N;
+fun grasp_V : V;
+fun grasp_V2 : V2;
+fun grasping_A : A;
+fun grass_N : N;
+fun grass_V : V;
+fun grass_V2 : V2;
+fun grasshopper_N : N;
+fun grassland_N : N;
+fun grassy_A : A;
+fun grate_N : N;
+fun grate_V : V;
+fun grate_V2 : V2;
+fun grateful_A : A;
+fun gratefulness_N : N;
+fun grater_N : N;
+fun gratification_N : N;
+fun gratify_V2 : V2;
+fun gratifying_A : A;
+fun grating_N : N;
+fun gratingly_Adv : Adv;
+fun gratis_A : A;
+fun gratis_Adv : Adv;
+fun gratitude_N : N;
+fun gratuitous_A : A;
+fun gratuity_N : N;
+fun grave_A : A;
+fun grave_N : N;
+fun grave_V2 : V2;
+fun gravel_N : N;
+fun gravel_V2 : V2;
+fun gravelly_A : A;
+fun graven_A : A;
+fun gravenhage_PN : PN;
+fun gravesend_PN : PN;
+fun gravestone_N : N;
+fun graveyard_N : N;
+fun graving_dock_N : N;
+fun gravitate_V : V;
+fun gravitation_N : N;
+fun gravity_N : N;
+fun gravure_N : N;
+fun gravy_N : N;
+fun gravy_boat_N : N;
+fun gray_A : A;
+fun gray_N : N;
+fun gray_V : V;
+fun gray_V2 : V2;
+fun graz_PN : PN;
+fun graze_N : N;
+fun graze_V : V;
+fun graze_V2 : V2;
+fun grazier_N : N;
+fun grazing_land_N : N;
+fun grease_N : N;
+fun grease_V2 : V2;
+fun grease_gun_N : N;
+fun greasepaint_N : N;
+fun greaseproof_A : A;
+fun greaser_N : N;
+fun greasily_Adv : Adv;
+fun greasiness_N : N;
+fun greasy_A : A;
+fun great_A : A;
+fun great_harwood_PN : PN;
+fun great_malvern_PN : PN;
+fun great_shelford_PN : PN;
+fun great_yarmouth_PN : PN;
+fun greatcoat_N : N;
+fun greatness_N : N;
+fun grebe_N : N;
+fun grecian_A : A;
+fun greece_PN : PN;
+fun greed_N : N;
+fun greedily_Adv : Adv;
+fun greediness_N : N;
+fun greedy_A : A;
+fun greek_A : A;
+fun greek_N : N;
+fun green_A : A;
+fun green_N : N;
+fun greenback_N : N;
+fun greenery_N : N;
+fun greeneyed_A : A;
+fun greenfly_N : N;
+fun greengage_N : N;
+fun greengrocer_N : N;
+fun greengrocery_N : N;
+fun greenhorn_N : N;
+fun greenhouse_N : N;
+fun greenish_A : A;
+fun greenishness_N : N;
+fun greenock_PN : PN;
+fun greensward_N : N;
+fun greenwich_PN : PN;
+fun greenwood_N : N;
+fun greet_V2 : V2;
+fun greeting_N : N;
+fun greg_PN : PN;
+fun gregarious_A : A;
+fun gregariousness_N : N;
+fun gregorian_A : A;
+fun gregory_PN : PN;
+fun gremlin_N : N;
+fun grenada_PN : PN;
+fun grenade_N : N;
+fun grenadian_A : A;
+fun grenadian_N : N;
+fun grenadier_N : N;
+fun grey_A : A;
+fun grey_N : N;
+fun grey_V : V;
+fun grey_V2 : V2;
+fun grey_headed_A : A;
+fun greybeard_N : N;
+fun greyhound_N : N;
+fun greyish_A : A;
+fun grid_N : N;
+fun griddle_N : N;
+fun gridiron_N : N;
+fun grief_N : N;
+fun grievance_N : N;
+fun grieve_V : V;
+fun grieve_V2 : V2;
+fun grievous_A : A;
+fun griffin_N : N;
+fun griffon_N : N;
+fun grill_N : N;
+fun grill_V : V;
+fun grill_V2 : V2;
+fun grille_N : N;
+fun grillroom_N : N;
+fun grim_A : A;
+fun grimace_N : N;
+fun grimace_V : V;
+fun grime_N : N;
+fun grime_V2 : V2;
+fun grimethorpe_PN : PN;
+fun grimness_N : N;
+fun grimsby_PN : PN;
+fun grimy_A : A;
+fun grin_N : N;
+fun grin_V : V;
+fun grin_V2 : V2;
+fun grind_N : N;
+fun grind_V : V;
+fun grind_V2 : V2;
+fun grinder_N : N;
+fun grindstone_N : N;
+fun grinstead_PN : PN;
+fun grip_N : N;
+fun grip_V : V;
+fun grip_V2 : V2;
+fun gripe_VS : VS;
+fun grippe_N : N;
+fun gripsack_N : N;
+fun grisly_A : A;
+fun grist_N : N;
+fun gristle_N : N;
+fun grit_N : N;
+fun grit_V2 : V2;
+fun grits_N : N;
+fun gritty_A : A;
+fun grizzle_V : V;
+fun grizzled_A : A;
+fun grizzly_N : N;
+fun groan_N : N;
+fun groan_V : V;
+fun groan_V2 : V2;
+fun groat_N : N;
+fun grocer_N : N;
+fun grocery_N : N;
+fun grog_N : N;
+fun groggy_A : A;
+fun groin_N : N;
+fun groin_V2 : V2;
+fun groningen_PN : PN;
+fun groom_N : N;
+fun groom_V2 : V2;
+fun groove_N : N;
+fun groove_V2 : V2;
+fun groover_N : N;
+fun groovy_A : A;
+fun grope_V : V;
+fun grope_V2 : V2;
+fun gropingly_Adv : Adv;
+fun gross_A : A;
+fun gross_N : N;
+fun gross_V2 : V2;
+fun grossness_N : N;
+fun grot_N : N;
+fun grotesque_A : A;
+fun grotesque_N : N;
+fun grotesqueness_N : N;
+fun grotto_N : N;
+fun grotty_A : A;
+fun grouch_N : N;
+fun grouch_V : V;
+fun grouchy_A : A;
+fun ground_N : N;
+fun ground_V : V;
+fun ground_V2 : V2;
+fun ground_bait_N : N;
+fun ground_fish_N : N;
+fun ground_plan_N : N;
+fun ground_rent_N : N;
+fun grounding_N : N;
+fun groundless_A : A;
+fun groundnut_N : N;
+fun groundsel_N : N;
+fun groundsheet_N : N;
+fun groundsman_N : N;
+fun groundwork_N : N;
+fun group_N : N;
+fun group_V : V;
+fun group_V2 : V2;
+fun grouping_N : N;
+fun grouse_N : N;
+fun grouse_V : V;
+fun grouse_VS : VS;
+fun grove_N : N;
+fun grovel_V : V;
+fun groveller_N : N;
+fun grow_V : V;
+fun grow_V2 : V2;
+fun grow_V2V : V2V;
+fun grow_VA : VA;
+fun grow_VS : VS;
+fun grower_N : N;
+fun growl_N : N;
+fun growl_V : V;
+fun growl_V2 : V2;
+fun growler_N : N;
+fun growlingly_Adv : Adv;
+fun grown_up_A : A;
+fun grown_up_N : N;
+fun growth_N : N;
+fun groyne_N : N;
+fun grub_N : N;
+fun grub_V : V;
+fun grub_V2 : V2;
+fun grubbiness_N : N;
+fun grubby_A : A;
+fun grudge_N : N;
+fun grudge_V2 : V2;
+fun grudgingly_Adv : Adv;
+fun gruel_N : N;
+fun gruelling_A : A;
+fun gruesome_A : A;
+fun gruesomeness_N : N;
+fun gruff_A : A;
+fun gruffness_N : N;
+fun grumble_N : N;
+fun grumble_V : V;
+fun grumble_V2 : V2;
+fun grumble_VS : VS;
+fun grumbler_N : N;
+fun grumpily_Adv : Adv;
+fun grumpiness_N : N;
+fun grumpy_A : A;
+fun grundyism_N : N;
+fun grunt_N : N;
+fun grunt_V : V;
+fun grunt_V2 : V2;
+fun gryphon_N : N;
+fun guadalajara_PN : PN;
+fun guano_N : N;
+fun guarantee_N : N;
+fun guarantee_V : V;
+fun guarantee_V2 : V2;
+fun guarantee_VS : VS;
+fun guarantor_N : N;
+fun guaranty_N : N;
+fun guard_N : N;
+fun guard_V : V;
+fun guard_V2 : V2;
+fun guard_boat_N : N;
+fun guarded_A : A;
+fun guardhouse_N : N;
+fun guardian_N : N;
+fun guardianship_N : N;
+fun guardrail_N : N;
+fun guardroom_N : N;
+fun guardship_N : N;
+fun guardsman_N : N;
+fun guatemala_PN : PN;
+fun guatemala_city_PN : PN;
+fun guatemalan_A : A;
+fun guatemalan_N : N;
+fun guava_N : N;
+fun guayaquil_PN : PN;
+fun gudgeon_N : N;
+fun guelder_rose_N : N;
+fun guerilla_N : N;
+fun guerrilla_N : N;
+fun guess_N : N;
+fun guess_V : V;
+fun guess_V2 : V2;
+fun guess_VS : VS;
+fun guesstimate_N : N;
+fun guesswork_N : N;
+fun guest_N : N;
+fun guest_night_N : N;
+fun guesthouse_N : N;
+fun guestroom_N : N;
+fun guffaw_N : N;
+fun guffaw_V : V;
+fun guidance_N : N;
+fun guide_N : N;
+fun guide_V2 : V2;
+fun guidebook_N : N;
+fun guideline_N : N;
+fun guild_N : N;
+fun guild_hall_N : N;
+fun guilder_N : N;
+fun guildford_PN : PN;
+fun guildhall_N : N;
+fun guile_N : N;
+fun guileful_A : A;
+fun guileless_A : A;
+fun guillemot_N : N;
+fun guillotine_N : N;
+fun guillotine_V2 : V2;
+fun guilt_N : N;
+fun guiltily_Adv : Adv;
+fun guiltiness_N : N;
+fun guiltless_A : A;
+fun guilty_A : A;
+fun guinea_N : N;
+fun guinea_PN : PN;
+fun guinea_fowl_N : N;
+fun guinea_pig_N : N;
+fun guinean_A : A;
+fun guinean_N : N;
+fun guinness_N : N;
+fun guisborough_PN : PN;
+fun guise_N : N;
+fun guitar_N : N;
+fun guitarist_N : N;
+fun gulch_N : N;
+fun gulden_N : N;
+fun gulf_N : N;
+fun gull_N : N;
+fun gull_V2 : V2;
+fun gullet_N : N;
+fun gullibility_N : N;
+fun gullible_A : A;
+fun gully_N : N;
+fun gulp_N : N;
+fun gulp_V : V;
+fun gulp_V2 : V2;
+fun gum_N : N;
+fun gum_V2 : V2;
+fun gumbo_N : N;
+fun gumboil_N : N;
+fun gumboot_N : N;
+fun gummy_A : A;
+fun gumption_N : N;
+fun gumshoe_N : N;
+fun gun_N : N;
+fun gun_V2 : V2;
+fun gun_carriage_N : N;
+fun gunboat_N : N;
+fun guncotton_N : N;
+fun gundog_N : N;
+fun gunfire_N : N;
+fun gunman_N : N;
+fun gunmetal_N : N;
+fun gunner_N : N;
+fun gunnery_N : N;
+fun gunny_N : N;
+fun gunplay_N : N;
+fun gunpoint_N : N;
+fun gunpowder_N : N;
+fun gunroom_N : N;
+fun gunrunner_N : N;
+fun gunrunning_N : N;
+fun gunshot_N : N;
+fun gunsmith_N : N;
+fun gunwale_N : N;
+fun gurgle_N : N;
+fun gurgle_V : V;
+fun gurkha_N : N;
+fun guru_N : N;
+fun gush_N : N;
+fun gush_V : V;
+fun gusher_N : N;
+fun gushes_VS : VS;
+fun gushing_A : A;
+fun gusset_N : N;
+fun gusseted_A : A;
+fun gust_N : N;
+fun gustation_N : N;
+fun gusto_N : N;
+fun gusty_A : A;
+fun gut_N : N;
+fun gut_V2 : V2;
+fun gutless_A : A;
+fun gutta_percha_N : N;
+fun gutter_N : N;
+fun gutter_V : V;
+fun guttersnipe_N : N;
+fun guttural_A : A;
+fun guttural_N : N;
+fun guvnor_N : N;
+fun guy's_PN : PN;
+fun guy_N : N;
+fun guy_PN : PN;
+fun guy_V2 : V2;
+fun guyana_PN : PN;
+fun guyanese_A : A;
+fun guyanese_N : N;
+fun guzzle_V : V;
+fun guzzle_V2 : V2;
+fun guzzler_N : N;
+fun gwen_PN : PN;
+fun gwendoline_PN : PN;
+fun gwent_PN : PN;
+fun gwersyllt_PN : PN;
+fun gwynedd_PN : PN;
+fun gybe_V : V;
+fun gybe_V2 : V2;
+fun gym_N : N;
+fun gymkhana_N : N;
+fun gymnasium_N : N;
+fun gymnast_N : N;
+fun gymnastic_A : A;
+fun gymnastics_N : N;
+fun gymslip_N : N;
+fun gynaecological_A : A;
+fun gynaecologist_N : N;
+fun gynaecology_N : N;
+fun gynecological_A : A;
+fun gynecologist_N : N;
+fun gyp_N : N;
+fun gyp_V2 : V2;
+fun gypsum_N : N;
+fun gypsy_N : N;
+fun gyrate_V : V;
+fun gyration_N : N;
+fun gyro_N : N;
+fun gyroscope_N : N;
+fun gyroscopic_A : A;
+fun h'm_V : V;
+fun h_bomb_N : N;
+fun ha'p'orth_N : N;
+fun ha'penny_N : N;
+fun haarlem_PN : PN;
+fun habeas_corpus_N : N;
+fun haberdasher_N : N;
+fun haberdashery_N : N;
+fun habit_N : N;
+fun habitable_A : A;
+fun habitat_N : N;
+fun habitation_N : N;
+fun habitual_A : A;
+fun habituate_V2 : V2;
+fun habituation_N : N;
+fun habitude_N : N;
+fun habitue_N : N;
+fun hacienda_N : N;
+fun hack_N : N;
+fun hack_V : V;
+fun hack_V2 : V2;
+fun hackney_N : N;
+fun hackney_PN : PN;
+fun hackneyed_A : A;
+fun hacksaw_N : N;
+fun haddington_PN : PN;
+fun haddock_N : N;
+fun hades_PN : PN;
+fun hadji_N : N;
+fun haematite_N : N;
+fun haemoglobin_N : N;
+fun haemophilia_N : N;
+fun haemophiliac_N : N;
+fun haemorrhage_N : N;
+fun haft_N : N;
+fun hag_N : N;
+fun hag_ridden_A : A;
+fun hagen_PN : PN;
+fun haggard_A : A;
+fun haggis_N : N;
+fun haggle_V : V;
+fun hagiology_N : N;
+fun hagley_PN : PN;
+fun haha_N : N;
+fun hail_N : N;
+fun hail_V : V;
+fun hail_V2 : V2;
+fun hailsham_PN : PN;
+fun hailstone_N : N;
+fun hailstorm_N : N;
+fun haiphong_PN : PN;
+fun hair's_breadth_N : N;
+fun hair_N : N;
+fun hair_breadth_N : N;
+fun hair_dye_N : N;
+fun hair_oil_N : N;
+fun hair_raising_A : A;
+fun hair_shirt_N : N;
+fun hair_slide_N : N;
+fun hair_trigger_N : N;
+fun hairbrush_N : N;
+fun haircloth_N : N;
+fun haircut_N : N;
+fun hairdo_N : N;
+fun hairdresser_N : N;
+fun hairdressing_N : N;
+fun hairiness_N : N;
+fun hairless_A : A;
+fun hairlike_A : A;
+fun hairline_N : N;
+fun hairnet_N : N;
+fun hairpiece_N : N;
+fun hairpin_N : N;
+fun hairsplitting_A : A;
+fun hairsplitting_N : N;
+fun hairspring_N : N;
+fun hairstyle_N : N;
+fun hairstylist_N : N;
+fun hairy_A : A;
+fun haiti_PN : PN;
+fun haitian_A : A;
+fun haitian_N : N;
+fun hake_N : N;
+fun hal_PN : PN;
+fun halberd_N : N;
+fun halberdier_N : N;
+fun halcyon_A : A;
+fun hale_A : A;
+fun halesowen_PN : PN;
+fun half_N : N;
+fun half_Predet : Predet;
+fun half_baked_A : A;
+fun half_blood_N : N;
+fun half_breed_N : N;
+fun half_brother_N : N;
+fun half_caste_N : N;
+fun half_crazed_A : A;
+fun half_crown_N : N;
+fun half_hardy_A : A;
+fun half_hearted_A : A;
+fun half_holiday_N : N;
+fun half_hour_N : N;
+fun half_hourly_A : A;
+fun half_hourly_Adv : Adv;
+fun half_length_A : A;
+fun half_pay_N : N;
+fun half_price_Adv : Adv;
+fun half_seas_over_A : A;
+fun half_sister_N : N;
+fun half_size_A : A;
+fun half_timbered_A : A;
+fun half_time_N : N;
+fun half_track_N : N;
+fun half_tracked_A : A;
+fun half_truth_N : N;
+fun half_volley_N : N;
+fun half_yearly_A : A;
+fun half_yearly_Adv : Adv;
+fun halfback_N : N;
+fun halfpenny_N : N;
+fun halfpennyworth_N : N;
+fun halftone_N : N;
+fun halfway_A : A;
+fun halfway_Adv : Adv;
+fun halfwit_N : N;
+fun halfwitted_A : A;
+fun halibut_N : N;
+fun halifax_PN : PN;
+fun halitosis_N : N;
+fun hall_N : N;
+fun hall_stand_N : N;
+fun halle_PN : PN;
+fun hallelujah_N : N;
+fun halliard_N : N;
+fun hallmark_N : N;
+fun halloo_N : N;
+fun halloo_V : V;
+fun hallow_N : N;
+fun hallow_V2 : V2;
+fun hallowe'en_N : N;
+fun hallowe'en_PN : PN;
+fun hallucination_N : N;
+fun hallucinatory_A : A;
+fun hallucinogenic_A : A;
+fun halma_N : N;
+fun halo_N : N;
+fun halstead_PN : PN;
+fun halt_A : A;
+fun halt_N : N;
+fun halt_V : V;
+fun halt_V2 : V2;
+fun halter_N : N;
+fun haltingly_Adv : Adv;
+fun halve_V2 : V2;
+fun halyard_N : N;
+fun ham_N : N;
+fun ham_V : V;
+fun ham_V2 : V2;
+fun ham_fisted_A : A;
+fun ham_handed_A : A;
+fun hamadryad_N : N;
+fun hamburg_PN : PN;
+fun hamburger_N : N;
+fun hamhung_PN : PN;
+fun hamilton_PN : PN;
+fun hamlet_N : N;
+fun hammer_N : N;
+fun hammer_V : V;
+fun hammer_V2 : V2;
+fun hammersmith_PN : PN;
+fun hammock_N : N;
+fun hamper_N : N;
+fun hamper_V2 : V2;
+fun hampreston_PN : PN;
+fun hampshire_PN : PN;
+fun hamster_N : N;
+fun hamstring_N : N;
+fun hamstring_V2 : V2;
+fun hand_N : N;
+fun hand_V2 : V2;
+fun hand_barrow_N : N;
+fun hand_carry_V2 : V2;
+fun hand_grenade_N : N;
+fun hand_luggage_N : N;
+fun hand_me_down_N : N;
+fun hand_organ_N : N;
+fun hand_out_N : N;
+fun hand_picked_A : A;
+fun handbag_N : N;
+fun handbill_N : N;
+fun handbook_N : N;
+fun handbrake_N : N;
+fun handcart_N : N;
+fun handclap_N : N;
+fun handcuff_N : N;
+fun handcuff_V2 : V2;
+fun handful_N : N;
+fun handhold_N : N;
+fun handicap_N : N;
+fun handicap_V2 : V2;
+fun handicraft_N : N;
+fun handily_Adv : Adv;
+fun handiness_N : N;
+fun handiwork_N : N;
+fun handkerchief_N : N;
+fun handle_N : N;
+fun handle_V : V;
+fun handle_V2 : V2;
+fun handlebar_N : N;
+fun handler_N : N;
+fun handmade_A : A;
+fun handmaid_N : N;
+fun handover_N : N;
+fun handrail_N : N;
+fun handsaw_N : N;
+fun handshake_N : N;
+fun handshaking_N : N;
+fun handsome_A : A;
+fun handstand_N : N;
+fun handwork_N : N;
+fun handwriting_N : N;
+fun handy_A : A;
+fun handyman_N : N;
+fun hang_N : N;
+fun hang_V : V;
+fun hang_V2 : V2;
+fun hang_up_N : N;
+fun hangar_N : N;
+fun hangchon_PN : PN;
+fun hangdog_A : A;
+fun hanger_N : N;
+fun hanger_on_N : N;
+fun hanging_N : N;
+fun hangman_N : N;
+fun hangnail_N : N;
+fun hangover_N : N;
+fun hank_N : N;
+fun hanker_V : V;
+fun hankering_N : N;
+fun hanky_N : N;
+fun hanky_panky_N : N;
+fun hanoi_PN : PN;
+fun hanover_PN : PN;
+fun hansard_N : N;
+fun hansom_N : N;
+fun hap_N : N;
+fun hap_V : V;
+fun haphazard_A : A;
+fun haphazard_Adv : Adv;
+fun hapless_A : A;
+fun haply_Adv : Adv;
+fun happen_V : V;
+fun happen_V2 : V2;
+fun happen_VV : VV;
+fun happening_N : N;
+fun happily_Adv : Adv;
+fun happiness_N : N;
+fun happy_A : A;
+fun happy_go_lucky_A : A;
+fun hara_kiri_N : N;
+fun harangue_N : N;
+fun harangue_V : V;
+fun harangue_V2 : V2;
+fun harass_V2 : V2;
+fun harassment_N : N;
+fun harbin_PN : PN;
+fun harbinger_N : N;
+fun harbor_V2 : V2;
+fun harbour_N : N;
+fun harbour_V : V;
+fun harbour_V2 : V2;
+fun harbourage_N : N;
+fun hard_A : A;
+fun hard_Adv : Adv;
+fun hard_baked_A : A;
+fun hard_bitten_A : A;
+fun hard_boiled_A : A;
+fun hard_headed_A : A;
+fun hardback_N : N;
+fun hardbacked_A : A;
+fun hardboard_N : N;
+fun hardbound_A : A;
+fun hardcover_N : N;
+fun hardcovered_A : A;
+fun harden_V : V;
+fun harden_V2 : V2;
+fun hardhearted_A : A;
+fun hardhitting_A : A;
+fun hardihood_N : N;
+fun hardiness_N : N;
+fun hardliner_N : N;
+fun hardness_N : N;
+fun hardship_N : N;
+fun hardtop_N : N;
+fun hardware_N : N;
+fun hardwood_N : N;
+fun hardworking_A : A;
+fun hardy_A : A;
+fun hare_N : N;
+fun hare_V : V;
+fun harebell_N : N;
+fun harebrained_A : A;
+fun harelip_N : N;
+fun harem_N : N;
+fun haricot_N : N;
+fun haringey_PN : PN;
+fun hark_V : V;
+fun harlequin_N : N;
+fun harlequinade_N : N;
+fun harley_street_PN : PN;
+fun harlot_N : N;
+fun harlow_PN : PN;
+fun harm_N : N;
+fun harm_V2 : V2;
+fun harmattan_N : N;
+fun harmful_A : A;
+fun harmless_A : A;
+fun harmonic_N : N;
+fun harmonica_N : N;
+fun harmonious_A : A;
+fun harmonium_N : N;
+fun harmonization_N : N;
+fun harmonize_V : V;
+fun harmonize_V2 : V2;
+fun harmony_N : N;
+fun harness_N : N;
+fun harness_V2 : V2;
+fun harold_PN : PN;
+fun harp_N : N;
+fun harp_V : V;
+fun harpenden_PN : PN;
+fun harper_N : N;
+fun harpist_N : N;
+fun harpoon_N : N;
+fun harpoon_V2 : V2;
+fun harpsichord_N : N;
+fun harpsichordist_N : N;
+fun harpy_N : N;
+fun harridan_N : N;
+fun harrier_N : N;
+fun harriet_PN : PN;
+fun harrogate_PN : PN;
+fun harrow_N : N;
+fun harrow_PN : PN;
+fun harrow_V2 : V2;
+fun harry_PN : PN;
+fun harry_V2 : V2;
+fun harsh_A : A;
+fun harshness_N : N;
+fun hart_N : N;
+fun hartlepool_PN : PN;
+fun hartley_PN : PN;
+fun harum_scarum_A : A;
+fun harum_scarum_N : N;
+fun harvest_N : N;
+fun harvest_V2 : V2;
+fun harvester_N : N;
+fun harvey_PN : PN;
+fun harwich_PN : PN;
+fun harwood_PN : PN;
+fun harworth_PN : PN;
+fun has_been_N : N;
+fun hash_N : N;
+fun hash_V2 : V2;
+fun hashish_N : N;
+fun haslemere_PN : PN;
+fun haslingden_PN : PN;
+fun hasp_N : N;
+fun hassle_N : N;
+fun hassle_V : V;
+fun hassle_V2 : V2;
+fun hassock_N : N;
+fun haste_N : N;
+fun hasten_V : V;
+fun hasten_V2 : V2;
+fun hastily_Adv : Adv;
+fun hastiness_N : N;
+fun hastings_PN : PN;
+fun hasty_A : A;
+fun hat_N : N;
+fun hatband_N : N;
+fun hatch_N : N;
+fun hatch_V : V;
+fun hatch_V2 : V2;
+fun hatchery_N : N;
+fun hatchet_N : N;
+fun hatching_N : N;
+fun hatchway_N : N;
+fun hate_N : N;
+fun hate_V2 : V2;
+fun hate_V2V : V2V;
+fun hate_VS : VS;
+fun hateful_A : A;
+fun hatfield_PN : PN;
+fun hatful_N : N;
+fun hatless_A : A;
+fun hatpin_N : N;
+fun hatred_N : N;
+fun hatter_N : N;
+fun hauberk_N : N;
+fun haughtily_Adv : Adv;
+fun haughtiness_N : N;
+fun haughty_A : A;
+fun haul_N : N;
+fun haul_V : V;
+fun haul_V2 : V2;
+fun haulage_N : N;
+fun haulier_N : N;
+fun haulm_N : N;
+fun haunch_N : N;
+fun haunt_N : N;
+fun haunt_V2 : V2;
+fun hautboy_N : N;
+fun hauteur_N : N;
+fun havana_N : N;
+fun havana_PN : PN;
+fun have_V : V;
+fun have_V2 : V2;
+fun have_VS : VS;
+fun have_VV : VV;
+fun haven_N : N;
+fun haverfordwest_PN : PN;
+fun haverhill_PN : PN;
+fun havering_PN : PN;
+fun haversack_N : N;
+fun havoc_N : N;
+fun haw_N : N;
+fun haw_V : V;
+fun haw_haw_N : N;
+fun hawaii_PN : PN;
+fun hawick_PN : PN;
+fun hawk_N : N;
+fun hawk_V2 : V2;
+fun hawk_eyed_A : A;
+fun hawke's_bay_PN : PN;
+fun hawker_N : N;
+fun hawser_N : N;
+fun hawthorn_N : N;
+fun hay_N : N;
+fun haycock_N : N;
+fun hayfork_N : N;
+fun hayling_PN : PN;
+fun haymaker_N : N;
+fun haymaking_N : N;
+fun hayrick_N : N;
+fun haystack_N : N;
+fun haywards_heath_PN : PN;
+fun haywire_A : A;
+fun haywire_N : N;
+fun hazard_N : N;
+fun hazard_V2 : V2;
+fun hazardous_A : A;
+fun haze_N : N;
+fun haze_V2 : V2;
+fun hazel_N : N;
+fun hazel_PN : PN;
+fun hazily_Adv : Adv;
+fun haziness_N : N;
+fun hazy_A : A;
+fun he_Pron : Pron;
+fun he_goat_N : N;
+fun he_man_N : N;
+fun head_N : N;
+fun head_V : V;
+fun head_V2 : V2;
+fun head_hunter_N : N;
+fun head_on_A : A;
+fun head_on_Adv : Adv;
+fun headache_N : N;
+fun headband_N : N;
+fun headdress_N : N;
+fun headed_A : A;
+fun header_N : N;
+fun headgear_N : N;
+fun heading_N : N;
+fun headlamp_N : N;
+fun headland_N : N;
+fun headless_A : A;
+fun headlight_N : N;
+fun headline_N : N;
+fun headlong_A : A;
+fun headlong_Adv : Adv;
+fun headman_N : N;
+fun headmaster_N : N;
+fun headmistress_N : N;
+fun headpiece_N : N;
+fun headrest_N : N;
+fun headroom_N : N;
+fun headset_N : N;
+fun headship_N : N;
+fun headstall_N : N;
+fun headstone_N : N;
+fun headstrong_A : A;
+fun headway_N : N;
+fun headwind_N : N;
+fun headword_N : N;
+fun heady_A : A;
+fun heal_V : V;
+fun heal_V2 : V2;
+fun healer_N : N;
+fun healing_A : A;
+fun health_N : N;
+fun healthful_A : A;
+fun healthily_Adv : Adv;
+fun healthy_A : A;
+fun heanor_PN : PN;
+fun heap_N : N;
+fun heap_V2 : V2;
+fun heaps_Adv : Adv;
+fun hear_V : V;
+fun hear_V2 : V2;
+fun hear_V2V : V2V;
+fun hear_VS : VS;
+fun hearer_N : N;
+fun hearing_N : N;
+fun hearing_aid_N : N;
+fun hearken_V : V;
+fun hearsay_N : N;
+fun hearse_N : N;
+fun heart's_ease_N : N;
+fun heart_N : N;
+fun heart_disease_N : N;
+fun heart_failure_N : N;
+fun heart_rending_A : A;
+fun heartache_N : N;
+fun heartbeat_N : N;
+fun heartbreak_N : N;
+fun heartbreaking_A : A;
+fun heartbroken_A : A;
+fun heartburn_N : N;
+fun heartburning_N : N;
+fun hearted_A : A;
+fun hearten_V2 : V2;
+fun heartfelt_A : A;
+fun hearth_N : N;
+fun hearthrug_N : N;
+fun heartily_Adv : Adv;
+fun heartless_A : A;
+fun heartlessness_N : N;
+fun heartsick_A : A;
+fun hearty_A : A;
+fun heat_N : N;
+fun heat_V : V;
+fun heat_V2 : V2;
+fun heat_flash_N : N;
+fun heated_A : A;
+fun heater_N : N;
+fun heath_N : N;
+fun heathen_N : N;
+fun heathenish_A : A;
+fun heather_N : N;
+fun heather_PN : PN;
+fun heather_mixture_N : N;
+fun heating_N : N;
+fun heatspot_N : N;
+fun heatstroke_N : N;
+fun heatwave_N : N;
+fun heave_N : N;
+fun heave_V : V;
+fun heave_V2 : V2;
+fun heaven_N : N;
+fun heavenly_A : A;
+fun heavensent_A : A;
+fun heavenward_A : A;
+fun heavenward_Adv : Adv;
+fun heavenwards_A : A;
+fun heavenwards_Adv : Adv;
+fun heavily_Adv : Adv;
+fun heaviness_N : N;
+fun heaviside_PN : PN;
+fun heavy_A : A;
+fun heavy_Adv : Adv;
+fun heavy_handed_A : A;
+fun heavy_hearted_A : A;
+fun heavy_laden_A : A;
+fun heavyweight_N : N;
+fun hebden_royal_PN : PN;
+fun hebdomadal_A : A;
+fun hebraic_A : A;
+fun hebrew_A : A;
+fun hebrew_N : N;
+fun hecatomb_N : N;
+fun heck_N : N;
+fun heckle_V2 : V2;
+fun heckler_N : N;
+fun hectare_N : N;
+fun hectic_A : A;
+fun hector_V : V;
+fun hector_V2 : V2;
+fun hedge_N : N;
+fun hedge_V : V;
+fun hedge_V2 : V2;
+fun hedge_end_PN : PN;
+fun hedge_sparrow_N : N;
+fun hedgehog_N : N;
+fun hedgehop_V : V;
+fun hedgerow_N : N;
+fun hedonism_N : N;
+fun hedonist_N : N;
+fun hedonistic_A : A;
+fun heed_N : N;
+fun heed_V2 : V2;
+fun heedful_A : A;
+fun heedless_A : A;
+fun heehaw_N : N;
+fun heel_N : N;
+fun heel_V : V;
+fun heel_V2 : V2;
+fun hefty_A : A;
+fun hegemony_N : N;
+fun hegira_N : N;
+fun heidelburg_PN : PN;
+fun heifer_N : N;
+fun height_N : N;
+fun heighten_V : V;
+fun heighten_V2 : V2;
+fun heinous_A : A;
+fun heinousness_N : N;
+fun heir_N : N;
+fun heiress_N : N;
+fun heirloom_N : N;
+fun hejira_N : N;
+fun helen_PN : PN;
+fun helensburgh_PN : PN;
+fun helicopter_N : N;
+fun heliograph_N : N;
+fun heliograph_V2 : V2;
+fun heliotrope_N : N;
+fun heliport_N : N;
+fun helium_N : N;
+fun hell_N : N;
+fun hellcat_N : N;
+fun hellene_N : N;
+fun hellenic_A : A;
+fun hellish_A : A;
+fun helm_N : N;
+fun helmet_N : N;
+fun helmeted_A : A;
+fun helmsman_N : N;
+fun helot_N : N;
+fun help_N : N;
+fun help_V : V;
+fun help_V2 : V2;
+fun help_V2V : V2V;
+fun help_VV : VV;
+fun help_VS : VS;
+fun helper_N : N;
+fun helpful_A : A;
+fun helpfulness_N : N;
+fun helping_N : N;
+fun helpless_A : A;
+fun helplessness_N : N;
+fun helpmate_N : N;
+fun helpmeet_N : N;
+fun helsinki_PN : PN;
+fun helston_PN : PN;
+fun helter_skelter_Adv : Adv;
+fun helter_skelter_N : N;
+fun helve_N : N;
+fun hem_N : N;
+fun hem_V : V;
+fun hem_V2 : V2;
+fun hematite_N : N;
+fun hemel_hempstead_PN : PN;
+fun hemisphere_N : N;
+fun hemline_N : N;
+fun hemlock_N : N;
+fun hemming_stitch_N : N;
+fun hemoglobin_N : N;
+fun hemophilia_N : N;
+fun hemophiliac_N : N;
+fun hemorrhage_N : N;
+fun hemorrhage_V : V;
+fun hemorrhage_V2 : V2;
+fun hemp_N : N;
+fun hempen_A : A;
+fun hemstitch_N : N;
+fun hemstitch_V2 : V2;
+fun hemsworth_PN : PN;
+fun hen_N : N;
+fun hen_party_N : N;
+fun henbane_N : N;
+fun hence_Adv : Adv;
+fun henceforth_Adv : Adv;
+fun henceforward_Adv : Adv;
+fun henchman_N : N;
+fun hencoop_N : N;
+fun henhouse_N : N;
+fun henley_on_thames_PN : PN;
+fun henna_N : N;
+fun hennaed_A : A;
+fun henpecked_A : A;
+fun henroost_N : N;
+fun henry_PN : PN;
+fun hep_A : A;
+fun hepatitis_N : N;
+fun heptagon_N : N;
+fun herald_N : N;
+fun herald_V2 : V2;
+fun heraldic_A : A;
+fun heraldry_N : N;
+fun herb_N : N;
+fun herb_PN : PN;
+fun herbaceous_A : A;
+fun herbage_N : N;
+fun herbal_A : A;
+fun herbalist_N : N;
+fun herbert_PN : PN;
+fun herbivorous_A : A;
+fun herculean_A : A;
+fun herd_N : N;
+fun herd_V : V;
+fun herd_V2 : V2;
+fun herdsman_N : N;
+fun hereabouts_Adv : Adv;
+fun hereafter_Adv : Adv;
+fun hereafter_N : N;
+fun hereby_Adv : Adv;
+fun hereditament_N : N;
+fun hereditary_A : A;
+fun heredity_N : N;
+fun hereford_PN : PN;
+fun herein_Adv : Adv;
+fun hereinafter_Adv : Adv;
+fun hereinbefore_Adv : Adv;
+fun hereof_Adv : Adv;
+fun heresy_N : N;
+fun heretic_N : N;
+fun heretical_A : A;
+fun hereto_Adv : Adv;
+fun heretofore_Adv : Adv;
+fun hereupon_Adv : Adv;
+fun herewith_Adv : Adv;
+fun heritable_A : A;
+fun heritage_N : N;
+fun hermaphrodite_N : N;
+fun hermetic_A : A;
+fun hermetically_Adv : Adv;
+fun hermit_N : N;
+fun hermitage_N : N;
+fun herne_PN : PN;
+fun herne_bay_PN : PN;
+fun hernia_N : N;
+fun hero_N : N;
+fun heroic_A : A;
+fun heroically_Adv : Adv;
+fun heroics_N : N;
+fun heroin_N : N;
+fun heroine_N : N;
+fun heroism_N : N;
+fun heron_N : N;
+fun heronry_N : N;
+fun herr_N : N;
+fun herring_N : N;
+fun herringbone_N : N;
+fun hertford_PN : PN;
+fun hertfordshire_PN : PN;
+fun hertz_N : N;
+fun hertzian_A : A;
+fun hesitance_N : N;
+fun hesitancy_N : N;
+fun hesitant_A : A;
+fun hesitate_V : V;
+fun hesitate_VV : VV;
+fun hesitate_VS : VS;
+fun hesitatingly_Adv : Adv;
+fun hesitation_N : N;
+fun hessian_N : N;
+fun het_up_A : A;
+fun heterodox_A : A;
+fun heterodoxy_N : N;
+fun heterogeneous_A : A;
+fun heterosexual_A : A;
+fun heterosexual_N : N;
+fun heterosexuality_N : N;
+fun hetton_PN : PN;
+fun heuristic_A : A;
+fun heuristics_N : N;
+fun hew_V : V;
+fun hew_V2 : V2;
+fun hewer_N : N;
+fun hexagon_N : N;
+fun hexagonal_A : A;
+fun hexameter_N : N;
+fun hexham_PN : PN;
+fun heyday_N : N;
+fun heysham_PN : PN;
+fun heywood_PN : PN;
+fun hi_fi_A : A;
+fun hi_fi_N : N;
+fun hiatus_N : N;
+fun hibernate_V : V;
+fun hibernation_N : N;
+fun hibiscus_N : N;
+fun hiccough_N : N;
+fun hiccough_V : V;
+fun hiccup_N : N;
+fun hiccup_V : V;
+fun hick_A : A;
+fun hick_N : N;
+fun hickory_N : N;
+fun hide_N : N;
+fun hide_V : V;
+fun hide_V2 : V2;
+fun hide_and_seek_N : N;
+fun hide_out_N : N;
+fun hideaway_N : N;
+fun hidebound_A : A;
+fun hideous_A : A;
+fun hiding_N : N;
+fun hiding_place_N : N;
+fun hie_V : V;
+fun hierarchic_A : A;
+fun hierarchical_A : A;
+fun hierarchy_N : N;
+fun hieroglyph_N : N;
+fun hieroglyphic_A : A;
+fun hieroglyphics_N : N;
+fun higgledy_piggledy_A : A;
+fun higgledy_piggledy_Adv : Adv;
+fun high_A : A;
+fun high_Adv : Adv;
+fun high_class_A : A;
+fun high_falutin_A : A;
+fun high_fidelity_A : A;
+fun high_fidelity_N : N;
+fun high_frequency_N : N;
+fun high_grade_A : A;
+fun high_handed_A : A;
+fun high_keyed_A : A;
+fun high_level_A : A;
+fun high_minded_A : A;
+fun high_mindedness_N : N;
+fun high_necked_A : A;
+fun high_octane_A : A;
+fun high_pitched_A : A;
+fun high_powered_A : A;
+fun high_pressure_N : N;
+fun high_priced_A : A;
+fun high_principled_A : A;
+fun high_ranking_A : A;
+fun high_rise_A : A;
+fun high_sounding_A : A;
+fun high_speed_A : A;
+fun high_spen_PN : PN;
+fun high_spirited_A : A;
+fun high_tension_A : A;
+fun high_toned_A : A;
+fun high_up_N : N;
+fun high_wycombe_PN : PN;
+fun highball_N : N;
+fun highborn_A : A;
+fun highboy_N : N;
+fun highbrow_A : A;
+fun highbrow_N : N;
+fun highflier_N : N;
+fun highflown_A : A;
+fun highflyer_N : N;
+fun highflying_A : A;
+fun highjack_N : N;
+fun highjack_V2 : V2;
+fun highland_N : N;
+fun highland_PN : PN;
+fun highlander_N : N;
+fun highlight_N : N;
+fun highlight_V2 : V2;
+fun highness_N : N;
+fun highroad_N : N;
+fun highway_N : N;
+fun highwayman_N : N;
+fun hijack_N : N;
+fun hijack_V2 : V2;
+fun hijacker_N : N;
+fun hike_N : N;
+fun hike_V : V;
+fun hiker_N : N;
+fun hilarious_A : A;
+fun hilarity_N : N;
+fun hilary_PN : PN;
+fun hilda_PN : PN;
+fun hill_N : N;
+fun hill_billy_N : N;
+fun hillingdon_PN : PN;
+fun hillock_N : N;
+fun hillside_N : N;
+fun hilly_A : A;
+fun hilt_N : N;
+fun hinckley_PN : PN;
+fun hind_A : A;
+fun hind_N : N;
+fun hinder_V2 : V2;
+fun hindi_A : A;
+fun hindi_N : N;
+fun hindmost_A : A;
+fun hindrance_N : N;
+fun hindsight_N : N;
+fun hindu_A : A;
+fun hindu_N : N;
+fun hinduism_N : N;
+fun hindustani_A : A;
+fun hindustani_N : N;
+fun hinge_N : N;
+fun hinge_V : V;
+fun hinge_V2 : V2;
+fun hint_N : N;
+fun hint_V : V;
+fun hint_V2 : V2;
+fun hint_VS : VS;
+fun hinterland_N : N;
+fun hip_A : A;
+fun hip_N : N;
+fun hip_bath_N : N;
+fun hip_flask_N : N;
+fun hip_pocket_N : N;
+fun hippie_N : N;
+fun hippo_N : N;
+fun hippocratic_A : A;
+fun hippodrome_N : N;
+fun hippopotamus_N : N;
+fun hippy_N : N;
+fun hire_N : N;
+fun hire_V : V;
+fun hire_V2 : V2;
+fun hire_V2V : V2V;
+fun hire_VS : VS;
+fun hireling_N : N;
+fun hiroshima_PN : PN;
+fun hirsute_A : A;
+fun hiss_N : N;
+fun hiss_V : V;
+fun hiss_V2 : V2;
+fun histogram_N : N;
+fun historian_N : N;
+fun historic_A : A;
+fun historical_A : A;
+fun historicize_V2 : V2;
+fun history_N : N;
+fun histrionic_A : A;
+fun histrionics_N : N;
+fun hit_N : N;
+fun hit_V : V;
+fun hit_V2 : V2;
+fun hit_and_run_A : A;
+fun hitch_N : N;
+fun hitch_V : V;
+fun hitch_V2 : V2;
+fun hitchhike_V : V;
+fun hitchhiker_N : N;
+fun hitchin_PN : PN;
+fun hither_Adv : Adv;
+fun hitherto_Adv : Adv;
+fun hive_N : N;
+fun hive_V : V;
+fun hive_V2 : V2;
+fun hm_PN : PN;
+fun hmso_PN : PN;
+fun hoar_A : A;
+fun hoard_N : N;
+fun hoard_V : V;
+fun hoard_V2 : V2;
+fun hoarder_N : N;
+fun hoarding_N : N;
+fun hoarfrost_N : N;
+fun hoariness_N : N;
+fun hoarse_A : A;
+fun hoarseness_N : N;
+fun hoary_A : A;
+fun hoax_N : N;
+fun hoax_V2 : V2;
+fun hoaxer_N : N;
+fun hob_N : N;
+fun hobble_N : N;
+fun hobble_V : V;
+fun hobble_V2 : V2;
+fun hobble_skirt_N : N;
+fun hobbledehoy_N : N;
+fun hobby_N : N;
+fun hobbyhorse_N : N;
+fun hobgoblin_N : N;
+fun hobnail_N : N;
+fun hobnailed_A : A;
+fun hobnob_V : V;
+fun hobo_N : N;
+fun hobson_PN : PN;
+fun hock_N : N;
+fun hock_V2 : V2;
+fun hockey_N : N;
+fun hockley_PN : PN;
+fun hocus_pocus_N : N;
+fun hod_N : N;
+fun hoddesdon_PN : PN;
+fun hodgepodge_N : N;
+fun hoe_N : N;
+fun hoe_V : V;
+fun hoe_V2 : V2;
+fun hofei_PN : PN;
+fun hog_N : N;
+fun hog_V2 : V2;
+fun hoggish_A : A;
+fun hogmanay_N : N;
+fun hogmanay_PN : PN;
+fun hogshead_N : N;
+fun hogwash_N : N;
+fun hoist_N : N;
+fun hoist_V2 : V2;
+fun hoity_toity_A : A;
+fun hold_N : N;
+fun hold_V : V;
+fun hold_V2 : V2;
+fun hold_V2V : V2V;
+fun hold_VS : VS;
+fun hold_up_N : N;
+fun holdall_N : N;
+fun holder_N : N;
+fun holding_N : N;
+fun holdup_N : N;
+fun hole_N : N;
+fun hole_V : V;
+fun hole_V2 : V2;
+fun hole_and_corner_A : A;
+fun holiday_N : N;
+fun holiday_V : V;
+fun holiday_maker_N : N;
+fun holiness_N : N;
+fun holland_PN : PN;
+fun hollander_A : A;
+fun hollander_N : N;
+fun holler_V : V;
+fun holler_V2 : V2;
+fun holloa_N : N;
+fun hollow_A : A;
+fun hollow_N : N;
+fun hollow_V2 : V2;
+fun holly_N : N;
+fun hollyhock_N : N;
+fun hollywood_PN : PN;
+fun holm_oak_N : N;
+fun holmfirth_PN : PN;
+fun holocaust_N : N;
+fun holograph_N : N;
+fun holster_N : N;
+fun holy_A : A;
+fun holy_N : N;
+fun holyhead_PN : PN;
+fun holystone_N : N;
+fun holystone_V2 : V2;
+fun homage_N : N;
+fun home_Adv : Adv;
+fun home_N : N;
+fun home_baked_A : A;
+fun home_brewed_A : A;
+fun home_cured_A : A;
+fun home_farm_N : N;
+fun home_grown_A : A;
+fun home_made_A : A;
+fun homecoming_N : N;
+fun homeland_N : N;
+fun homeless_A : A;
+fun homelike_A : A;
+fun homeliness_N : N;
+fun homely_A : A;
+fun homeopath_N : N;
+fun homeopathic_A : A;
+fun homer_V : V;
+fun homeric_A : A;
+fun homesick_A : A;
+fun homesickness_N : N;
+fun homespun_A : A;
+fun homespun_N : N;
+fun homestead_N : N;
+fun homeward_A : A;
+fun homeward_Adv : Adv;
+fun homewards_Adv : Adv;
+fun homework_N : N;
+fun homey_A : A;
+fun homicidal_A : A;
+fun homicide_N : N;
+fun homiletic_A : A;
+fun homiletics_N : N;
+fun homily_N : N;
+fun homing_A : A;
+fun hominy_N : N;
+fun homo_N : N;
+fun homo_sapiens_N : N;
+fun homoeopath_N : N;
+fun homoeopathy_N : N;
+fun homogeneity_N : N;
+fun homogeneous_A : A;
+fun homogenize_V2 : V2;
+fun homograph_N : N;
+fun homonym_N : N;
+fun homophone_N : N;
+fun homosexual_A : A;
+fun homosexual_N : N;
+fun homosexuality_N : N;
+fun hon_PN : PN;
+fun honduran_A : A;
+fun honduran_N : N;
+fun honduras_PN : PN;
+fun hone_N : N;
+fun hone_V2 : V2;
+fun honest_A : A;
+fun honesty_N : N;
+fun honey_N : N;
+fun honeybee_N : N;
+fun honeycomb_N : N;
+fun honeycomb_V2 : V2;
+fun honeydew_N : N;
+fun honeyed_A : A;
+fun honeymoon_N : N;
+fun honeymoon_V : V;
+fun honeysuckle_N : N;
+fun hong_kong_PN : PN;
+fun honiton_PN : PN;
+fun honk_N : N;
+fun honk_V : V;
+fun honor_V2 : V2;
+fun honorarium_N : N;
+fun honorary_A : A;
+fun honorific_A : A;
+fun honorific_N : N;
+fun honour_N : N;
+fun honour_V2 : V2;
+fun honourable_A : A;
+fun hoo_PN : PN;
+fun hooch_N : N;
+fun hood_N : N;
+fun hood_V2 : V2;
+fun hoodlum_N : N;
+fun hoodoo_N : N;
+fun hoodoo_V2 : V2;
+fun hoodwink_V2 : V2;
+fun hooey_N : N;
+fun hoof_N : N;
+fun hook_N : N;
+fun hook_V : V;
+fun hook_V2 : V2;
+fun hook_nosed_A : A;
+fun hook_up_N : N;
+fun hookah_N : N;
+fun hooked_A : A;
+fun hooker_N : N;
+fun hookworm_N : N;
+fun hooky_N : N;
+fun hooligan_N : N;
+fun hooliganism_N : N;
+fun hoop_N : N;
+fun hoop_V2 : V2;
+fun hoop_la_N : N;
+fun hoot_N : N;
+fun hoot_V : V;
+fun hoot_V2 : V2;
+fun hooter_N : N;
+fun hoover_N : N;
+fun hoover_V2 : V2;
+fun hop_N : N;
+fun hop_V : V;
+fun hop_V2 : V2;
+fun hop_field_N : N;
+fun hop_garden_N : N;
+fun hop_picker_N : N;
+fun hop_pole_N : N;
+fun hope_N : N;
+fun hope_PN : PN;
+fun hope_V : V;
+fun hope_VV : VV;
+fun hope_VS : VS;
+fun hopeful_A : A;
+fun hopefulness_N : N;
+fun hopeless_A : A;
+fun hopelessness_N : N;
+fun hopped_up_A : A;
+fun hopper_N : N;
+fun hopscotch_N : N;
+fun hopscotch_V : V;
+fun horace_PN : PN;
+fun horde_N : N;
+fun horizon_N : N;
+fun horizontal_A : A;
+fun horley_PN : PN;
+fun hormone_N : N;
+fun horn_N : N;
+fun horn_V : V;
+fun horn_rimmed_A : A;
+fun hornbeam_N : N;
+fun hornbill_N : N;
+fun horned_A : A;
+fun hornet_N : N;
+fun hornless_A : A;
+fun hornlike_A : A;
+fun hornpipe_N : N;
+fun hornsea_PN : PN;
+fun horny_A : A;
+fun horology_N : N;
+fun horoscope_N : N;
+fun horrible_A : A;
+fun horrid_A : A;
+fun horridness_N : N;
+fun horrific_A : A;
+fun horrify_V2 : V2;
+fun horrifyingly_Adv : Adv;
+fun horror_N : N;
+fun horror_stricken_A : A;
+fun horror_struck_A : A;
+fun hors_de_combat_A : A;
+fun horse_N : N;
+fun horse_chestnut_N : N;
+fun horse_laugh_N : N;
+fun horse_pond_N : N;
+fun horse_sense_N : N;
+fun horseback_N : N;
+fun horsebox_N : N;
+fun horseflesh_N : N;
+fun horsefly_N : N;
+fun horsehair_N : N;
+fun horseman_N : N;
+fun horsemanship_N : N;
+fun horsemeat_N : N;
+fun horseplay_N : N;
+fun horsepower_N : N;
+fun horserace_N : N;
+fun horseracing_N : N;
+fun horseradish_N : N;
+fun horseshoe_N : N;
+fun horsewhip_N : N;
+fun horsewhip_V2 : V2;
+fun horsewoman_N : N;
+fun horsham_PN : PN;
+fun horsley_PN : PN;
+fun horsy_A : A;
+fun hortative_A : A;
+fun horticultural_A : A;
+fun horticulture_N : N;
+fun horticulturist_N : N;
+fun horwich_PN : PN;
+fun hosanna_N : N;
+fun hose_N : N;
+fun hose_V2 : V2;
+fun hosepipe_N : N;
+fun hosier_N : N;
+fun hosiery_N : N;
+fun hosp_PN : PN;
+fun hospice_N : N;
+fun hospitable_A : A;
+fun hospital_N : N;
+fun hospitality_N : N;
+fun hospitalization_N : N;
+fun hospitalize_V2 : V2;
+fun host_N : N;
+fun host_V2 : V2;
+fun hostage_N : N;
+fun hostel_N : N;
+fun hosteller_N : N;
+fun hostelry_N : N;
+fun hostess_N : N;
+fun hostile_A : A;
+fun hostility_N : N;
+fun hot_A : A;
+fun hot_V : V;
+fun hot_V2 : V2;
+fun hot_blooded_A : A;
+fun hot_headed_A : A;
+fun hot_tempered_A : A;
+fun hot_water_bottle_N : N;
+fun hotbed_N : N;
+fun hotchpotch_N : N;
+fun hotel_N : N;
+fun hotelier_N : N;
+fun hotfoot_Adv : Adv;
+fun hotfoot_V : V;
+fun hothead_N : N;
+fun hothouse_N : N;
+fun hotplate_N : N;
+fun houghton_PN : PN;
+fun hound_N : N;
+fun hound_V2 : V2;
+fun hounslow_PN : PN;
+fun hour_N : N;
+fun hourglass_N : N;
+fun houri_N : N;
+fun hourly_A : A;
+fun hourly_Adv : Adv;
+fun house_N : N;
+fun house_V2 : V2;
+fun house_party_N : N;
+fun house_warming_N : N;
+fun houseboat_N : N;
+fun housebound_A : A;
+fun housebreaker_N : N;
+fun housecoat_N : N;
+fun housecraft_N : N;
+fun housedog_N : N;
+fun housefather_N : N;
+fun housefly_N : N;
+fun houseful_N : N;
+fun household_N : N;
+fun householder_N : N;
+fun housekeeper_N : N;
+fun housemaid_N : N;
+fun houseman_N : N;
+fun housemaster_N : N;
+fun housemother_N : N;
+fun houseproud_A : A;
+fun houseroom_N : N;
+fun housetop_N : N;
+fun housetrained_A : A;
+fun housewife_N : N;
+fun housewifely_A : A;
+fun housewifery_N : N;
+fun housework_N : N;
+fun housewrecker_N : N;
+fun housing_N : N;
+fun houston_PN : PN;
+fun hove_PN : PN;
+fun hovel_N : N;
+fun hover_V : V;
+fun hovercraft_N : N;
+fun how_Adv : Adv;
+fun how_d'ye_do_N : N;
+fun howard_PN : PN;
+fun howdah_N : N;
+fun however_Adv : Adv;
+fun howitzer_N : N;
+fun howl_N : N;
+fun howl_V : V;
+fun howl_V2 : V2;
+fun howler_N : N;
+fun howling_A : A;
+fun hoyden_N : N;
+fun hoydenish_A : A;
+fun hoylake_PN : PN;
+fun hoyland_nether_PN : PN;
+fun hp_N : N;
+fun hq_PN : PN;
+fun hrh_PN : PN;
+fun hub_N : N;
+fun hubble_bubble_N : N;
+fun hubbub_N : N;
+fun hubby_N : N;
+fun hubert_PN : PN;
+fun hubris_N : N;
+fun huckaback_N : N;
+fun huckleberry_N : N;
+fun hucknall_PN : PN;
+fun huckster_N : N;
+fun huddersfield_PN : PN;
+fun huddle_N : N;
+fun huddle_V : V;
+fun huddle_V2 : V2;
+fun hue_N : N;
+fun hued_A : A;
+fun huff_N : N;
+fun huff_V : V;
+fun huffily_Adv : Adv;
+fun huffish_A : A;
+fun huffy_A : A;
+fun hug_N : N;
+fun hug_V2 : V2;
+fun huge_A : A;
+fun hugger_mugger_A : A;
+fun hugger_mugger_Adv : Adv;
+fun hugger_mugger_N : N;
+fun hugh_PN : PN;
+fun hughie_PN : PN;
+fun huguenot_N : N;
+fun huhehot_PN : PN;
+fun hula_N : N;
+fun hulk_N : N;
+fun hulking_A : A;
+fun hull_N : N;
+fun hull_V2 : V2;
+fun hullabaloo_N : N;
+fun hum_N : N;
+fun hum_V : V;
+fun hum_V2 : V2;
+fun human_A : A;
+fun human_N : N;
+fun humane_A : A;
+fun humanism_N : N;
+fun humanist_N : N;
+fun humanitarian_A : A;
+fun humanitarian_N : N;
+fun humanitarianism_N : N;
+fun humanity_N : N;
+fun humanize_V : V;
+fun humanize_V2 : V2;
+fun humankind_N : N;
+fun humberside_PN : PN;
+fun humberston_PN : PN;
+fun humble_A : A;
+fun humble_V2 : V2;
+fun humbly_Adv : Adv;
+fun humbug_N : N;
+fun humbug_V2 : V2;
+fun humdinger_N : N;
+fun humdrum_A : A;
+fun humerus_N : N;
+fun humid_A : A;
+fun humidify_V2 : V2;
+fun humidity_N : N;
+fun humiliate_V2 : V2;
+fun humiliation_N : N;
+fun humility_N : N;
+fun humming_top_N : N;
+fun hummingbird_N : N;
+fun hummock_N : N;
+fun humorist_N : N;
+fun humorous_A : A;
+fun humour_N : N;
+fun humour_V2 : V2;
+fun humourist_N : N;
+fun humourless_A : A;
+fun hump_N : N;
+fun hump_V2 : V2;
+fun humpback_N : N;
+fun humpbacked_A : A;
+fun humphrey_PN : PN;
+fun humus_N : N;
+fun hun_N : N;
+fun hunch_N : N;
+fun hunch_V2 : V2;
+fun hunchback_A : A;
+fun hunchback_N : N;
+fun hunchbacked_A : A;
+fun hundredfold_Adv : Adv;
+fun hundredweight_N : N;
+fun hungarian_A : A;
+fun hungarian_N : N;
+fun hungary_PN : PN;
+fun hunger_N : N;
+fun hunger_V : V;
+fun hunger_march_N : N;
+fun hunger_marcher_N : N;
+fun hungrily_Adv : Adv;
+fun hungry_A : A;
+fun hunk_N : N;
+fun hunt_N : N;
+fun hunt_V : V;
+fun hunt_V2 : V2;
+fun hunter_N : N;
+fun hunting_N : N;
+fun hunting_crop_N : N;
+fun huntingdon_PN : PN;
+fun huntress_N : N;
+fun huntsman_N : N;
+fun hurdle_N : N;
+fun hurdle_V : V;
+fun hurdle_V2 : V2;
+fun hurdler_N : N;
+fun hurdy_gurdy_N : N;
+fun hurl_N : N;
+fun hurl_V2 : V2;
+fun hurling_N : N;
+fun hurly_burly_N : N;
+fun hurrah_V : V;
+fun hurricane_N : N;
+fun hurried_A : A;
+fun hurry_N : N;
+fun hurry_V : V;
+fun hurry_V2 : V2;
+fun hurry_V2V : V2V;
+fun hurstpierpoint_PN : PN;
+fun hurt_N : N;
+fun hurt_V : V;
+fun hurt_V2 : V2;
+fun hurt_VS : VS;
+fun hurtful_A : A;
+fun hurtle_V : V;
+fun husband_N : N;
+fun husband_V2 : V2;
+fun husbandman_N : N;
+fun husbandry_N : N;
+fun hush_N : N;
+fun hush_V : V;
+fun hush_V2 : V2;
+fun hush_hush_A : A;
+fun hush_money_N : N;
+fun husk_N : N;
+fun husk_V2 : V2;
+fun huskily_Adv : Adv;
+fun huskiness_N : N;
+fun husky_A : A;
+fun husky_N : N;
+fun hussar_N : N;
+fun hussy_N : N;
+fun hustle_N : N;
+fun hustle_V : V;
+fun hustle_V2 : V2;
+fun hustler_N : N;
+fun hut_N : N;
+fun hutch_N : N;
+fun hutment_N : N;
+fun hutted_A : A;
+fun hwainan_PN : PN;
+fun hyacinth_N : N;
+fun hyaena_N : N;
+fun hybrid_A : A;
+fun hybrid_N : N;
+fun hybridize_V : V;
+fun hybridize_V2 : V2;
+fun hyde_PN : PN;
+fun hyderabad_PN : PN;
+fun hydra_N : N;
+fun hydrangea_N : N;
+fun hydrant_N : N;
+fun hydrate_N : N;
+fun hydrate_V : V;
+fun hydrate_V2 : V2;
+fun hydraulic_A : A;
+fun hydraulics_N : N;
+fun hydrocarbon_N : N;
+fun hydrochloric_A : A;
+fun hydroelectric_A : A;
+fun hydrofoil_N : N;
+fun hydrogen_N : N;
+fun hydropathic_A : A;
+fun hydropathy_N : N;
+fun hydrophobia_N : N;
+fun hydroplane_N : N;
+fun hydroponics_N : N;
+fun hyena_N : N;
+fun hygiene_N : N;
+fun hygienic_A : A;
+fun hygienically_Adv : Adv;
+fun hymen_N : N;
+fun hymn_N : N;
+fun hymn_V2 : V2;
+fun hymnal_N : N;
+fun hype_V2 : V2;
+fun hyperbola_N : N;
+fun hyperbole_N : N;
+fun hyperbolic_A : A;
+fun hypercritical_A : A;
+fun hypermarket_N : N;
+fun hypersensitive_A : A;
+fun hyphen_N : N;
+fun hyphen_V2 : V2;
+fun hyphenate_V2 : V2;
+fun hypnosis_N : N;
+fun hypnotic_A : A;
+fun hypnotism_N : N;
+fun hypnotist_N : N;
+fun hypnotize_V2 : V2;
+fun hypo_N : N;
+fun hypochondria_N : N;
+fun hypochondriac_A : A;
+fun hypochondriac_N : N;
+fun hypochondriacal_A : A;
+fun hypocrisy_N : N;
+fun hypocrite_N : N;
+fun hypocritical_A : A;
+fun hypodermic_A : A;
+fun hypodermic_N : N;
+fun hypotenuse_N : N;
+fun hypothecate_V2 : V2;
+fun hypothesis_N : N;
+fun hypothesize_V2 : V2;
+fun hypothetical_A : A;
+fun hyssop_N : N;
+fun hysteria_N : N;
+fun hysterical_A : A;
+fun hysterics_N : N;
+fun hythe_PN : PN;
+fun i_Pron : Pron;
+fun iamb_N : N;
+fun iambic_A : A;
+fun iambics_N : N;
+fun iambus_N : N;
+fun ian_PN : PN;
+fun iba_N : N;
+fun ibadan_PN : PN;
+fun ibex_N : N;
+fun ibid_PN : PN;
+fun ibidem_Adv : Adv;
+fun ibis_N : N;
+fun icbm_N : N;
+fun ice_N : N;
+fun ice_V : V;
+fun ice_V2 : V2;
+fun ice_axe_N : N;
+fun ice_cream_N : N;
+fun ice_lolly_N : N;
+fun ice_show_N : N;
+fun ice_skate_N : N;
+fun ice_skate_V : V;
+fun ice_skating_N : N;
+fun ice_tray_N : N;
+fun iceberg_N : N;
+fun iceboat_N : N;
+fun icebound_A : A;
+fun icebox_N : N;
+fun icebreaker_N : N;
+fun icecap_N : N;
+fun icecube_N : N;
+fun icefall_N : N;
+fun icefield_N : N;
+fun icefloe_N : N;
+fun icefree_A : A;
+fun icehouse_N : N;
+fun iceland_PN : PN;
+fun icelander_A : A;
+fun icelander_N : N;
+fun icelandic_A : A;
+fun icelandic_N : N;
+fun iceman_N : N;
+fun icepack_N : N;
+fun icepick_N : N;
+fun icerink_N : N;
+fun ichneumon_N : N;
+fun ichneumon_fly_N : N;
+fun icicle_N : N;
+fun icily_Adv : Adv;
+fun icing_N : N;
+fun icon_N : N;
+fun iconoclast_N : N;
+fun icy_A : A;
+fun id_N : N;
+fun ida_PN : PN;
+fun idaho_PN : PN;
+fun idea_N : N;
+fun ideal_A : A;
+fun ideal_N : N;
+fun idealism_N : N;
+fun idealist_N : N;
+fun idealistic_A : A;
+fun idealization_N : N;
+fun idealize_V2 : V2;
+fun idem_PN : PN;
+fun identical_A : A;
+fun identifiable_A : A;
+fun identification_N : N;
+fun identify_V : V;
+fun identify_V2 : V2;
+fun identikit_N : N;
+fun identity_N : N;
+fun ideogram_N : N;
+fun ideograph_N : N;
+fun ideographic_A : A;
+fun ideological_A : A;
+fun ideology_N : N;
+fun idiocy_N : N;
+fun idiolect_N : N;
+fun idiom_N : N;
+fun idiomatic_A : A;
+fun idiomatically_Adv : Adv;
+fun idiosyncrasy_N : N;
+fun idiosyncratic_A : A;
+fun idiot_N : N;
+fun idiotic_A : A;
+fun idiotically_Adv : Adv;
+fun idle_A : A;
+fun idle_V : V;
+fun idle_V2 : V2;
+fun idleness_N : N;
+fun idler_N : N;
+fun idly_Adv : Adv;
+fun idol_N : N;
+fun idolater_N : N;
+fun idolatress_N : N;
+fun idolatrous_A : A;
+fun idolatry_N : N;
+fun idolization_N : N;
+fun idolize_V2 : V2;
+fun idyll_N : N;
+fun idyllic_A : A;
+fun ie_PN : PN;
+fun if_Subj : Subj;
+fun igloo_N : N;
+fun igneous_A : A;
+fun ignis_fatuus_N : N;
+fun ignite_V : V;
+fun ignite_V2 : V2;
+fun ignition_N : N;
+fun ignoble_A : A;
+fun ignominious_A : A;
+fun ignominy_N : N;
+fun ignoramus_N : N;
+fun ignorance_N : N;
+fun ignorant_A : A;
+fun ignore_V : V;
+fun ignore_V2 : V2;
+fun iguana_N : N;
+fun ikon_N : N;
+fun ilex_N : N;
+fun ilfracombe_PN : PN;
+fun ilk_N : N;
+fun ilkeston_PN : PN;
+fun ilkley_PN : PN;
+fun ill_A : A;
+fun ill_Adv : Adv;
+fun ill_N : N;
+fun ill_advised_A : A;
+fun ill_affected_A : A;
+fun ill_bred_A : A;
+fun ill_breeding_N : N;
+fun ill_disposed_A : A;
+fun ill_fated_A : A;
+fun ill_favoured_A : A;
+fun ill_gotten_A : A;
+fun ill_judged_A : A;
+fun ill_mannered_A : A;
+fun ill_natured_A : A;
+fun ill_omened_A : A;
+fun ill_starred_A : A;
+fun ill_timed_A : A;
+fun ill_treat_V2 : V2;
+fun ill_treatment_N : N;
+fun ill_usage_N : N;
+fun ill_use_V2 : V2;
+fun illegal_A : A;
+fun illegality_N : N;
+fun illegibility_N : N;
+fun illegible_A : A;
+fun illegitimacy_N : N;
+fun illegitimate_A : A;
+fun illegitimate_N : N;
+fun illiberal_A : A;
+fun illiberality_N : N;
+fun illicit_A : A;
+fun illimitable_A : A;
+fun illinois_PN : PN;
+fun illiteracy_N : N;
+fun illiterate_A : A;
+fun illiterate_N : N;
+fun illness_N : N;
+fun illogical_A : A;
+fun illogicality_N : N;
+fun illogicalness_N : N;
+fun illume_V2 : V2;
+fun illuminate_V2 : V2;
+fun illumination_N : N;
+fun illumine_V2 : V2;
+fun illusion_N : N;
+fun illusionist_N : N;
+fun illusive_A : A;
+fun illusory_A : A;
+fun illustrate_V : V;
+fun illustrate_V2 : V2;
+fun illustrate_VS : VS;
+fun illustration_N : N;
+fun illustrative_A : A;
+fun illustrator_N : N;
+fun illustrious_A : A;
+fun ilo_N : N;
+fun image_N : N;
+fun image_V2 : V2;
+fun imagery_N : N;
+fun imaginable_A : A;
+fun imaginary_A : A;
+fun imagination_N : N;
+fun imaginative_A : A;
+fun imagine_V : V;
+fun imagine_V2 : V2;
+fun imagine_VS : VS;
+fun imam_N : N;
+fun imbalance_N : N;
+fun imbecile_A : A;
+fun imbecile_N : N;
+fun imbecility_N : N;
+fun imbed_V2 : V2;
+fun imbibe_V2 : V2;
+fun imbroglio_N : N;
+fun imbue_V2 : V2;
+fun imf_N : N;
+fun imitate_V2 : V2;
+fun imitation_N : N;
+fun imitative_A : A;
+fun imitator_N : N;
+fun immaculate_A : A;
+fun immanence_N : N;
+fun immanent_A : A;
+fun immaterial_A : A;
+fun immature_A : A;
+fun immaturity_N : N;
+fun immeasurable_A : A;
+fun immediacy_N : N;
+fun immediate_A : A;
+fun immemorial_A : A;
+fun immense_A : A;
+fun immensity_N : N;
+fun immerse_V2 : V2;
+fun immersion_N : N;
+fun immigrant_N : N;
+fun immigrate_V : V;
+fun immigration_N : N;
+fun imminence_N : N;
+fun imminent_A : A;
+fun immingham_PN : PN;
+fun immobile_A : A;
+fun immobility_N : N;
+fun immobilization_N : N;
+fun immobilize_V2 : V2;
+fun immoderate_A : A;
+fun immodest_A : A;
+fun immodesty_N : N;
+fun immolate_V2 : V2;
+fun immolation_N : N;
+fun immoral_A : A;
+fun immorality_N : N;
+fun immortal_A : A;
+fun immortal_N : N;
+fun immortality_N : N;
+fun immortalize_V2 : V2;
+fun immovable_A : A;
+fun immune_A : A;
+fun immunity_N : N;
+fun immunization_N : N;
+fun immunize_V2 : V2;
+fun immunology_N : N;
+fun immure_V2 : V2;
+fun immutability_N : N;
+fun immutable_A : A;
+fun imp_N : N;
+fun impact_N : N;
+fun impact_V2 : V2;
+fun impair_V2 : V2;
+fun impairment_N : N;
+fun impala_N : N;
+fun impale_V2 : V2;
+fun impalement_N : N;
+fun impalpable_A : A;
+fun impanel_V2 : V2;
+fun impart_V2 : V2;
+fun impartial_A : A;
+fun impartiality_N : N;
+fun impassable_A : A;
+fun impasse_N : N;
+fun impassioned_A : A;
+fun impassive_A : A;
+fun impassiveness_N : N;
+fun impassivity_N : N;
+fun impatience_N : N;
+fun impatient_A : A;
+fun impeach_V2 : V2;
+fun impeachment_N : N;
+fun impeccable_A : A;
+fun impecunious_A : A;
+fun impede_V2 : V2;
+fun impediment_N : N;
+fun impel_V2 : V2;
+fun impeller_N : N;
+fun impend_V : V;
+fun impenetrable_A : A;
+fun impenitence_N : N;
+fun impenitent_A : A;
+fun imperative_A : A;
+fun imperceptible_A : A;
+fun imperfect_A : A;
+fun imperfect_N : N;
+fun imperfection_N : N;
+fun imperial_A : A;
+fun imperial_N : N;
+fun imperialism_N : N;
+fun imperialist_N : N;
+fun imperialistic_A : A;
+fun imperil_V2 : V2;
+fun imperile_V2 : V2;
+fun imperious_A : A;
+fun imperiousness_N : N;
+fun imperishable_A : A;
+fun impermanence_N : N;
+fun impermanent_A : A;
+fun impermeable_A : A;
+fun impersonal_A : A;
+fun impersonate_V2 : V2;
+fun impersonation_N : N;
+fun impersonator_N : N;
+fun impertinence_N : N;
+fun impertinent_A : A;
+fun imperturbability_N : N;
+fun imperturbable_A : A;
+fun impervious_A : A;
+fun impetigo_N : N;
+fun impetuosity_N : N;
+fun impetuous_A : A;
+fun impetus_N : N;
+fun impiety_N : N;
+fun impinge_V : V;
+fun impingement_N : N;
+fun impious_A : A;
+fun impish_A : A;
+fun impishness_N : N;
+fun implacable_A : A;
+fun implant_V2 : V2;
+fun implausibility_N : N;
+fun implausible_A : A;
+fun implement_N : N;
+fun implement_V2 : V2;
+fun implementation_N : N;
+fun implicate_V2 : V2;
+fun implication_N : N;
+fun implicit_A : A;
+fun implore_V2 : V2;
+fun implore_VS : VS;
+fun imploringly_Adv : Adv;
+fun implosion_N : N;
+fun imply_V : V;
+fun imply_V2 : V2;
+fun imply_VS : VS;
+fun impolite_A : A;
+fun impoliteness_N : N;
+fun impolitic_A : A;
+fun imponderable_A : A;
+fun imponderable_N : N;
+fun import_N : N;
+fun import_V2 : V2;
+fun importance_N : N;
+fun important_A : A;
+fun importation_N : N;
+fun importer_N : N;
+fun importunate_A : A;
+fun importune_V2 : V2;
+fun importunity_N : N;
+fun impose_V : V;
+fun impose_V2 : V2;
+fun imposing_A : A;
+fun imposition_N : N;
+fun impossibility_N : N;
+fun impossible_A : A;
+fun impostor_N : N;
+fun imposture_N : N;
+fun impotence_N : N;
+fun impotent_A : A;
+fun impound_V2 : V2;
+fun impoverish_V2 : V2;
+fun impoverishment_N : N;
+fun impracticability_N : N;
+fun impracticable_A : A;
+fun impracticableness_N : N;
+fun impractical_A : A;
+fun imprecate_V2 : V2;
+fun imprecation_N : N;
+fun imprecise_A : A;
+fun imprecision_N : N;
+fun impregnability_N : N;
+fun impregnable_A : A;
+fun impregnate_V2 : V2;
+fun impresario_N : N;
+fun impress_N : N;
+fun impress_V : V;
+fun impress_V2 : V2;
+fun impression_N : N;
+fun impressionable_A : A;
+fun impressionism_N : N;
+fun impressionist_N : N;
+fun impressionistic_A : A;
+fun impressive_A : A;
+fun impressiveness_N : N;
+fun imprimatur_N : N;
+fun imprint_N : N;
+fun imprint_V2 : V2;
+fun imprison_V2 : V2;
+fun imprisonment_N : N;
+fun improbability_N : N;
+fun improbable_A : A;
+fun impromptu_A : A;
+fun impromptu_Adv : Adv;
+fun impromptu_N : N;
+fun improper_A : A;
+fun impropriety_N : N;
+fun improve_V : V;
+fun improve_V2 : V2;
+fun improvement_N : N;
+fun improver_N : N;
+fun improvidence_N : N;
+fun improvident_A : A;
+fun improvisation_N : N;
+fun improvise_V : V;
+fun improvise_V2 : V2;
+fun imprudence_N : N;
+fun imprudent_A : A;
+fun impudence_N : N;
+fun impudent_A : A;
+fun impugn_V2 : V2;
+fun impulse_N : N;
+fun impulse_buy_V : V;
+fun impulse_buy_V2 : V2;
+fun impulsion_N : N;
+fun impulsive_A : A;
+fun impulsiveness_N : N;
+fun impunity_N : N;
+fun impure_A : A;
+fun impurity_N : N;
+fun imputation_N : N;
+fun impute_V2 : V2;
+fun in_Adv : Adv;
+fun in_N : N;
+fun in_Prep : Prep ;
+fun in_chief_A : A;
+fun in_fighting_N : N;
+fun in_loco_parentis_Adv : Adv;
+fun in_patient_N : N;
+fun in_service_A : A;
+fun in_situ_Adv : Adv;
+fun in_toto_Adv : Adv;
+fun in_tray_N : N;
+fun inability_N : N;
+fun inaccessibility_N : N;
+fun inaccessible_A : A;
+fun inaccuracy_N : N;
+fun inaccurate_A : A;
+fun inaction_N : N;
+fun inactivate_V2 : V2;
+fun inactive_A : A;
+fun inactivity_N : N;
+fun inadequacy_N : N;
+fun inadequate_A : A;
+fun inadmissible_A : A;
+fun inadvertence_N : N;
+fun inadvertent_A : A;
+fun inadvisability_N : N;
+fun inadvisable_A : A;
+fun inalienable_A : A;
+fun inane_A : A;
+fun inanimate_A : A;
+fun inanition_N : N;
+fun inanity_N : N;
+fun inapplicable_A : A;
+fun inappreciable_A : A;
+fun inappropriate_A : A;
+fun inappropriateness_N : N;
+fun inapt_A : A;
+fun inaptitude_N : N;
+fun inarticulate_A : A;
+fun inasmuch_as_Adv : Adv;
+fun inattention_N : N;
+fun inattentive_A : A;
+fun inaudibility_N : N;
+fun inaudible_A : A;
+fun inaugural_A : A;
+fun inaugural_N : N;
+fun inaugurate_V2 : V2;
+fun inauguration_N : N;
+fun inauspicious_A : A;
+fun inboard_A : A;
+fun inborn_A : A;
+fun inbound_A : A;
+fun inbred_A : A;
+fun inbreeding_N : N;
+fun inbuilt_A : A;
+fun inc_PN : PN;
+fun incalculable_A : A;
+fun incandescence_N : N;
+fun incandescent_A : A;
+fun incantation_N : N;
+fun incapability_N : N;
+fun incapable_A : A;
+fun incapacitate_V2 : V2;
+fun incapacity_N : N;
+fun incarcerate_V2 : V2;
+fun incarceration_N : N;
+fun incarnate_A : A;
+fun incarnate_V2 : V2;
+fun incarnation_N : N;
+fun incautious_A : A;
+fun incendiarism_N : N;
+fun incendiary_N : N;
+fun incense_N : N;
+fun incense_V2 : V2;
+fun incentive_N : N;
+fun inception_N : N;
+fun incertitude_N : N;
+fun incessant_A : A;
+fun incest_N : N;
+fun incestuous_A : A;
+fun inch_N : N;
+fun inch_V : V;
+fun inch_V2 : V2;
+fun inchoate_A : A;
+fun inchoative_A : A;
+fun inchon_PN : PN;
+fun incidence_N : N;
+fun incident_A : A;
+fun incident_N : N;
+fun incidental_A : A;
+fun incinerate_V2 : V2;
+fun incineration_N : N;
+fun incinerator_N : N;
+fun incipient_A : A;
+fun incise_V2 : V2;
+fun incision_N : N;
+fun incisive_A : A;
+fun incisor_N : N;
+fun incite_V2 : V2;
+fun incitement_N : N;
+fun incivility_N : N;
+fun incl_PN : PN;
+fun inclemency_N : N;
+fun inclement_A : A;
+fun inclination_N : N;
+fun incline_N : N;
+fun incline_V : V;
+fun incline_V2 : V2;
+fun incline_V2V : V2V;
+fun inclose_V2 : V2;
+fun inclosure_N : N;
+fun include_V : V;
+fun include_V2 : V2;
+fun include_VS : VS;
+fun inclusion_N : N;
+fun inclusive_A : A;
+fun incognito_A : A;
+fun incognito_Adv : Adv;
+fun incoherence_N : N;
+fun incoherent_A : A;
+fun incombustible_A : A;
+fun income_N : N;
+fun income_tax_N : N;
+fun incoming_A : A;
+fun incommensurable_A : A;
+fun incommensurate_A : A;
+fun incommode_V2 : V2;
+fun incommunicado_A : A;
+fun incomparable_A : A;
+fun incompatibility_N : N;
+fun incompatible_A : A;
+fun incompetence_N : N;
+fun incompetency_N : N;
+fun incompetent_A : A;
+fun incomplete_A : A;
+fun incomprehensibility_N : N;
+fun incomprehensible_A : A;
+fun incomprehension_N : N;
+fun incompressible_A : A;
+fun inconceivable_A : A;
+fun inconclusive_A : A;
+fun incongruity_N : N;
+fun incongruous_A : A;
+fun inconsequent_A : A;
+fun inconsequential_A : A;
+fun inconsiderable_A : A;
+fun inconsiderate_A : A;
+fun inconsistency_N : N;
+fun inconsistent_A : A;
+fun inconsolable_A : A;
+fun inconspicuous_A : A;
+fun inconstancy_N : N;
+fun inconstant_A : A;
+fun incontestable_A : A;
+fun incontinence_N : N;
+fun incontinent_A : A;
+fun incontrovertible_A : A;
+fun inconvenience_N : N;
+fun inconvenience_V2 : V2;
+fun inconvenient_A : A;
+fun inconvertibility_N : N;
+fun inconvertible_A : A;
+fun incorporate_A : A;
+fun incorporate_V : V;
+fun incorporate_V2 : V2;
+fun incorporation_N : N;
+fun incorporeal_A : A;
+fun incorrect_A : A;
+fun incorrectness_N : N;
+fun incorrigible_A : A;
+fun incorruptibility_N : N;
+fun incorruptible_A : A;
+fun increase_N : N;
+fun increase_V : V;
+fun increase_V2 : V2;
+fun increasingly_Adv : Adv;
+fun incredibility_N : N;
+fun incredible_A : A;
+fun incredulity_N : N;
+fun incredulous_A : A;
+fun increment_N : N;
+fun incremental_A : A;
+fun incriminate_V2 : V2;
+fun incrustation_N : N;
+fun incubate_V : V;
+fun incubate_V2 : V2;
+fun incubation_N : N;
+fun incubator_N : N;
+fun incubus_N : N;
+fun inculcate_V2 : V2;
+fun inculpate_V2 : V2;
+fun incumbency_N : N;
+fun incumbent_A : A;
+fun incumbent_N : N;
+fun incur_V2 : V2;
+fun incurable_A : A;
+fun incurable_N : N;
+fun incurious_A : A;
+fun incursion_N : N;
+fun incurved_A : A;
+fun indebted_A : A;
+fun indebtedness_N : N;
+fun indecency_N : N;
+fun indecent_A : A;
+fun indecipherable_A : A;
+fun indecision_N : N;
+fun indecisive_A : A;
+fun indecorous_A : A;
+fun indecorum_N : N;
+fun indeed_Adv : Adv;
+fun indefatigable_A : A;
+fun indefeasible_A : A;
+fun indefensible_A : A;
+fun indefinable_A : A;
+fun indefinite_A : A;
+fun indelible_A : A;
+fun indelicacy_N : N;
+fun indelicate_A : A;
+fun indemnification_N : N;
+fun indemnify_V2 : V2;
+fun indemnity_N : N;
+fun indent_N : N;
+fun indent_V : V;
+fun indent_V2 : V2;
+fun indentation_N : N;
+fun indenture_N : N;
+fun indenture_V2 : V2;
+fun independence_N : N;
+fun independent_A : A;
+fun independent_N : N;
+fun indescribable_A : A;
+fun indestructibility_N : N;
+fun indestructible_A : A;
+fun indeterminable_A : A;
+fun indeterminacy_N : N;
+fun indeterminate_A : A;
+fun index_N : N;
+fun index_V2 : V2;
+fun indexer_N : N;
+fun india_PN : PN;
+fun india_rubber_N : N;
+fun indiaman_N : N;
+fun indian_A : A;
+fun indian_N : N;
+fun indiana_PN : PN;
+fun indianapolis_PN : PN;
+fun indicate_V : V;
+fun indicate_V2 : V2;
+fun indicate_VS : VS;
+fun indication_N : N;
+fun indicative_A : A;
+fun indicator_N : N;
+fun indict_V : V;
+fun indict_V2 : V2;
+fun indictable_A : A;
+fun indictment_N : N;
+fun indies_PN : PN;
+fun indifference_N : N;
+fun indifferent_A : A;
+fun indigence_N : N;
+fun indigenous_A : A;
+fun indigent_A : A;
+fun indigestible_A : A;
+fun indigestion_N : N;
+fun indignant_A : A;
+fun indignation_N : N;
+fun indignity_N : N;
+fun indigo_N : N;
+fun indirect_A : A;
+fun indirectness_N : N;
+fun indiscernible_A : A;
+fun indiscipline_N : N;
+fun indiscreet_A : A;
+fun indiscrete_A : A;
+fun indiscretion_N : N;
+fun indiscriminate_A : A;
+fun indispensability_N : N;
+fun indispensable_A : A;
+fun indisposed_A : A;
+fun indisposition_N : N;
+fun indisputable_A : A;
+fun indissoluble_A : A;
+fun indistinct_A : A;
+fun indistinctness_N : N;
+fun indistinguishable_A : A;
+fun indite_V2 : V2;
+fun individual_A : A;
+fun individual_N : N;
+fun individualism_N : N;
+fun individualist_N : N;
+fun individualistic_A : A;
+fun individuality_N : N;
+fun individualize_V2 : V2;
+fun indivisible_A : A;
+fun indo_european_A : A;
+fun indoctrinate_V2 : V2;
+fun indoctrination_N : N;
+fun indolence_N : N;
+fun indolent_A : A;
+fun indomitable_A : A;
+fun indonesia_PN : PN;
+fun indonesian_A : A;
+fun indonesian_N : N;
+fun indoor_A : A;
+fun indoors_Adv : Adv;
+fun indore_PN : PN;
+fun indorse_V2 : V2;
+fun indrawn_A : A;
+fun indubitable_A : A;
+fun induce_V2 : V2;
+fun induce_V2V : V2V;
+fun inducement_N : N;
+fun induct_V2 : V2;
+fun induction_N : N;
+fun inductive_A : A;
+fun indue_V2 : V2;
+fun indulge_V : V;
+fun indulge_V2 : V2;
+fun indulgence_N : N;
+fun indulgent_A : A;
+fun industrial_A : A;
+fun industrialism_N : N;
+fun industrialist_N : N;
+fun industrialization_N : N;
+fun industrialized_A : A;
+fun industrious_A : A;
+fun industry_N : N;
+fun indwelling_A : A;
+fun inebriate_A : A;
+fun inebriate_N : N;
+fun inebriate_V2 : V2;
+fun inebriation_N : N;
+fun inebriety_N : N;
+fun inedible_A : A;
+fun ineffable_A : A;
+fun ineffective_A : A;
+fun ineffectiveness_N : N;
+fun ineffectual_A : A;
+fun ineffectuality_N : N;
+fun inefficiency_N : N;
+fun inefficient_A : A;
+fun inelastic_A : A;
+fun inelegance_N : N;
+fun inelegant_A : A;
+fun ineligibility_N : N;
+fun ineligible_A : A;
+fun ineluctable_A : A;
+fun inept_A : A;
+fun ineptitude_N : N;
+fun inequality_N : N;
+fun inequitable_A : A;
+fun inequity_N : N;
+fun ineradicable_A : A;
+fun inert_A : A;
+fun inertia_N : N;
+fun inescapable_A : A;
+fun inessential_A : A;
+fun inessential_N : N;
+fun inestimable_A : A;
+fun inevitability_N : N;
+fun inevitable_A : A;
+fun inexact_A : A;
+fun inexactitude_N : N;
+fun inexcusable_A : A;
+fun inexhaustible_A : A;
+fun inexorable_A : A;
+fun inexpediency_N : N;
+fun inexpedient_A : A;
+fun inexpensive_A : A;
+fun inexperience_N : N;
+fun inexperienced_A : A;
+fun inexpert_A : A;
+fun inexpiable_A : A;
+fun inexplicable_A : A;
+fun inexpressible_A : A;
+fun inextinguishable_A : A;
+fun inextricable_A : A;
+fun infallibility_N : N;
+fun infallible_A : A;
+fun infamous_A : A;
+fun infamy_N : N;
+fun infancy_N : N;
+fun infant_N : N;
+fun infanticide_N : N;
+fun infantile_A : A;
+fun infantilism_N : N;
+fun infantry_N : N;
+fun infantryman_N : N;
+fun infatuate_V2 : V2;
+fun infatuation_N : N;
+fun infect_V : V;
+fun infect_V2 : V2;
+fun infection_N : N;
+fun infectious_A : A;
+fun infer_V2 : V2;
+fun inference_N : N;
+fun inferential_A : A;
+fun inferior_A : A;
+fun inferior_N : N;
+fun inferiority_N : N;
+fun infernal_A : A;
+fun inferno_N : N;
+fun infertile_A : A;
+fun infertility_N : N;
+fun infest_V2 : V2;
+fun infestation_N : N;
+fun infidel_N : N;
+fun infidelity_N : N;
+fun infield_N : N;
+fun infiltrate_V : V;
+fun infiltrate_V2 : V2;
+fun infiltration_N : N;
+fun infinite_A : A;
+fun infinitesimal_A : A;
+fun infinitive_A : A;
+fun infinitive_N : N;
+fun infinitude_N : N;
+fun infinity_N : N;
+fun infirm_A : A;
+fun infirmary_N : N;
+fun infirmity_N : N;
+fun inflame_V : V;
+fun inflame_V2 : V2;
+fun inflammable_A : A;
+fun inflammation_N : N;
+fun inflammatory_A : A;
+fun inflatable_A : A;
+fun inflate_V : V;
+fun inflate_V2 : V2;
+fun inflation_N : N;
+fun inflationary_A : A;
+fun inflect_V2 : V2;
+fun inflection_N : N;
+fun inflectional_A : A;
+fun inflexibility_N : N;
+fun inflexible_A : A;
+fun inflexion_N : N;
+fun inflict_V2 : V2;
+fun infliction_N : N;
+fun inflorescence_N : N;
+fun inflow_N : N;
+fun influence_N : N;
+fun influence_V2 : V2;
+fun influential_A : A;
+fun influenza_N : N;
+fun influx_N : N;
+fun info_N : N;
+fun inform_V : V;
+fun inform_V2 : V2;
+fun informal_A : A;
+fun informality_N : N;
+fun informant_N : N;
+fun information_N : N;
+fun informative_A : A;
+fun informer_N : N;
+fun infra_Adv : Adv;
+fun infra_dig_A : A;
+fun infra_red_A : A;
+fun infraction_N : N;
+fun infrastructure_N : N;
+fun infrequency_N : N;
+fun infrequent_A : A;
+fun infringe_V : V;
+fun infringe_V2 : V2;
+fun infringement_N : N;
+fun infuriate_V2 : V2;
+fun infuse_V : V;
+fun infuse_V2 : V2;
+fun infusion_N : N;
+fun ingatestone_PN : PN;
+fun ingathering_N : N;
+fun ingenious_A : A;
+fun ingenue_N : N;
+fun ingenuity_N : N;
+fun ingenuous_A : A;
+fun ingenuousness_N : N;
+fun ingest_V2 : V2;
+fun ingle_nook_N : N;
+fun inglorious_A : A;
+fun ingoing_A : A;
+fun ingot_N : N;
+fun ingraft_V2 : V2;
+fun ingrained_A : A;
+fun ingratiate_V2 : V2;
+fun ingratiatingly_Adv : Adv;
+fun ingratitude_N : N;
+fun ingredient_N : N;
+fun ingress_N : N;
+fun ingrid_PN : PN;
+fun ingrowing_A : A;
+fun inhabit_V2 : V2;
+fun inhabitable_A : A;
+fun inhabitant_N : N;
+fun inhalation_N : N;
+fun inhale_V : V;
+fun inhale_V2 : V2;
+fun inhaler_N : N;
+fun inharmonious_A : A;
+fun inherent_A : A;
+fun inherit_V : V;
+fun inherit_V2 : V2;
+fun inheritance_N : N;
+fun inheritor_N : N;
+fun inhibit_V2 : V2;
+fun inhibition_N : N;
+fun inhibitor_N : N;
+fun inhibitory_A : A;
+fun inhospitable_A : A;
+fun inhuman_A : A;
+fun inhumane_A : A;
+fun inhumanity_N : N;
+fun inimical_A : A;
+fun inimitable_A : A;
+fun iniquitous_A : A;
+fun iniquity_N : N;
+fun initial_A : A;
+fun initial_N : N;
+fun initial_V2 : V2;
+fun initiate_A : A;
+fun initiate_N : N;
+fun initiate_V2 : V2;
+fun initiation_N : N;
+fun initiative_N : N;
+fun inject_V2 : V2;
+fun injection_N : N;
+fun injudicious_A : A;
+fun injunction_N : N;
+fun injure_V2 : V2;
+fun injured_A : A;
+fun injurious_A : A;
+fun injury_N : N;
+fun injustice_N : N;
+fun ink_N : N;
+fun ink_V2 : V2;
+fun ink_bottle_N : N;
+fun ink_pad_N : N;
+fun ink_pot_N : N;
+fun inkling_N : N;
+fun inkstand_N : N;
+fun inkwell_N : N;
+fun inky_A : A;
+fun inland_A : A;
+fun inland_Adv : Adv;
+fun inlay_N : N;
+fun inlay_V2 : V2;
+fun inlet_N : N;
+fun inmate_N : N;
+fun inmost_A : A;
+fun inn_N : N;
+fun innate_A : A;
+fun inner_A : A;
+fun innermost_A : A;
+fun inning_N : N;
+fun innings_N : N;
+fun innkeeper_N : N;
+fun innocence_N : N;
+fun innocent_A : A;
+fun innocent_N : N;
+fun innocuous_A : A;
+fun innovate_V : V;
+fun innovate_V2 : V2;
+fun innovation_N : N;
+fun innovator_N : N;
+fun innsbruck_PN : PN;
+fun innuendo_N : N;
+fun innumerable_A : A;
+fun inoculate_V2 : V2;
+fun inoculation_N : N;
+fun inoffensive_A : A;
+fun inoperable_A : A;
+fun inoperative_A : A;
+fun inopportune_A : A;
+fun inordinate_A : A;
+fun inorganic_A : A;
+fun inorganically_Adv : Adv;
+fun inpouring_A : A;
+fun inpouring_N : N;
+fun input_N : N;
+fun inquest_N : N;
+fun inquietude_N : N;
+fun inquire_V : V;
+fun inquire_V2 : V2;
+fun inquirer_N : N;
+fun inquiring_A : A;
+fun inquiry_N : N;
+fun inquisition_N : N;
+fun inquisitive_A : A;
+fun inquisitiveness_N : N;
+fun inquisitor_N : N;
+fun inquisitorial_A : A;
+fun inroad_N : N;
+fun inrush_N : N;
+fun insane_A : A;
+fun insanitary_A : A;
+fun insanity_N : N;
+fun insatiable_A : A;
+fun insatiate_A : A;
+fun inscribe_V2 : V2;
+fun inscription_N : N;
+fun inscrutable_A : A;
+fun insect_N : N;
+fun insect_powder_N : N;
+fun insecticide_N : N;
+fun insectivorous_A : A;
+fun insecure_A : A;
+fun insecurity_N : N;
+fun inseminate_V2 : V2;
+fun insemination_N : N;
+fun insensate_A : A;
+fun insensibility_N : N;
+fun insensible_A : A;
+fun insensitive_A : A;
+fun insensitivity_N : N;
+fun insentient_A : A;
+fun inseparable_A : A;
+fun insert_N : N;
+fun insert_V2 : V2;
+fun insertion_N : N;
+fun inset_N : N;
+fun inset_V2 : V2;
+fun inshore_A : A;
+fun inshore_Adv : Adv;
+fun inside_A : A;
+fun inside_Adv : Adv;
+fun inside_N : N;
+fun inside_Prep : Prep ;
+fun insider_N : N;
+fun insidious_A : A;
+fun insidiousness_N : N;
+fun insight_N : N;
+fun insignificance_N : N;
+fun insignificant_A : A;
+fun insincere_A : A;
+fun insincerity_N : N;
+fun insinuate_V2 : V2;
+fun insinuatingly_Adv : Adv;
+fun insinuation_N : N;
+fun insipid_A : A;
+fun insipidity_N : N;
+fun insipidness_N : N;
+fun insist_V : V;
+fun insist_V2 : V2;
+fun insist_VS : VS;
+fun insistence_N : N;
+fun insistent_A : A;
+fun insofar_Adv : Adv;
+fun insole_N : N;
+fun insolence_N : N;
+fun insolent_A : A;
+fun insoluble_A : A;
+fun insolvency_N : N;
+fun insolvent_A : A;
+fun insolvent_N : N;
+fun insomnia_N : N;
+fun insomniac_N : N;
+fun insomuch_Adv : Adv;
+fun insouciance_N : N;
+fun insouciant_A : A;
+fun inspan_V2 : V2;
+fun inspect_V2 : V2;
+fun inspection_N : N;
+fun inspector_N : N;
+fun inspectorate_N : N;
+fun inspiration_N : N;
+fun inspirational_A : A;
+fun inspire_V2 : V2;
+fun inspire_V2V : V2V;
+fun inspired_A : A;
+fun inst_PN : PN;
+fun instability_N : N;
+fun install_V : V;
+fun install_V2 : V2;
+fun installation_N : N;
+fun instalment_N : N;
+fun instance_N : N;
+fun instance_V2 : V2;
+fun instant_A : A;
+fun instant_N : N;
+fun instantaneous_A : A;
+fun instead_Adv : Adv;
+fun instep_N : N;
+fun instigate_V2 : V2;
+fun instigation_N : N;
+fun instigator_N : N;
+fun instil_V2 : V2;
+fun instillation_N : N;
+fun instinct_A : A;
+fun instinct_N : N;
+fun instinctive_A : A;
+fun institute_N : N;
+fun institute_V2 : V2;
+fun institution_N : N;
+fun institutional_A : A;
+fun institutionalize_V2 : V2;
+fun instruct_V2 : V2;
+fun instruction_N : N;
+fun instructional_A : A;
+fun instructive_A : A;
+fun instructor_N : N;
+fun instructress_N : N;
+fun instrument_N : N;
+fun instrumental_A : A;
+fun instrumentalist_N : N;
+fun instrumentality_N : N;
+fun instrumentation_N : N;
+fun insubordinate_A : A;
+fun insubordination_N : N;
+fun insubstantial_A : A;
+fun insufferable_A : A;
+fun insufficiency_N : N;
+fun insufficient_A : A;
+fun insular_A : A;
+fun insularism_N : N;
+fun insularity_N : N;
+fun insulate_V2 : V2;
+fun insulation_N : N;
+fun insulator_N : N;
+fun insulin_N : N;
+fun insult_N : N;
+fun insult_V2 : V2;
+fun insulting_A : A;
+fun insuperable_A : A;
+fun insupportable_A : A;
+fun insurance_N : N;
+fun insure_V : V;
+fun insure_V2 : V2;
+fun insure_VS : VS;
+fun insurgent_A : A;
+fun insurgent_N : N;
+fun insurmountable_A : A;
+fun insurrection_N : N;
+fun intact_A : A;
+fun intaglio_N : N;
+fun intake_N : N;
+fun intangibility_N : N;
+fun intangible_A : A;
+fun intangibles_N : N;
+fun integer_N : N;
+fun integral_A : A;
+fun integrate_V : V;
+fun integrate_V2 : V2;
+fun integration_N : N;
+fun integrity_N : N;
+fun integument_N : N;
+fun intellect_N : N;
+fun intellectual_A : A;
+fun intellectual_N : N;
+fun intelligence_N : N;
+fun intelligent_A : A;
+fun intelligentsia_N : N;
+fun intelligibility_N : N;
+fun intelligible_A : A;
+fun intemperance_N : N;
+fun intemperate_A : A;
+fun intend_V : V;
+fun intend_V2 : V2;
+fun intend_VV : VV;
+fun intend_VS : VS;
+fun intense_A : A;
+fun intensification_N : N;
+fun intensify_V : V;
+fun intensify_V2 : V2;
+fun intensity_N : N;
+fun intensive_A : A;
+fun intent_A : A;
+fun intent_N : N;
+fun intention_N : N;
+fun intentional_A : A;
+fun intentness_N : N;
+fun inter_V2 : V2;
+fun inter_alia_Adv : Adv;
+fun interact_V : V;
+fun interaction_N : N;
+fun interactive_A : A;
+fun interbreed_V : V;
+fun interbreed_V2 : V2;
+fun intercalary_A : A;
+fun intercede_V : V;
+fun intercept_V2 : V2;
+fun interception_N : N;
+fun interceptor_N : N;
+fun intercession_N : N;
+fun interchange_N : N;
+fun interchange_V2 : V2;
+fun interchangeable_A : A;
+fun intercollegiate_A : A;
+fun intercom_N : N;
+fun intercommunicate_V : V;
+fun intercommunication_N : N;
+fun intercommunion_N : N;
+fun interconnect_V : V;
+fun interconnect_V2 : V2;
+fun interconnectedness_N : N;
+fun interconnection_N : N;
+fun intercontinental_A : A;
+fun intercourse_N : N;
+fun interdenominational_A : A;
+fun interdepartmental_A : A;
+fun interdependence_N : N;
+fun interdependent_A : A;
+fun interdict_N : N;
+fun interdict_V2 : V2;
+fun interdiction_N : N;
+fun interdisciplinary_A : A;
+fun interest_N : N;
+fun interest_V : V;
+fun interest_V2 : V2;
+fun interested_A : A;
+fun interesting_A : A;
+fun interface_N : N;
+fun interfere_V : V;
+fun interference_N : N;
+fun interim_N : N;
+fun interior_A : A;
+fun interior_N : N;
+fun interject_V2 : V2;
+fun interjection_N : N;
+fun interlace_V : V;
+fun interlace_V2 : V2;
+fun interlard_V2 : V2;
+fun interleave_V2 : V2;
+fun interlink_V : V;
+fun interlink_V2 : V2;
+fun interlock_V : V;
+fun interlock_V2 : V2;
+fun interlocutor_N : N;
+fun interloper_N : N;
+fun interlude_N : N;
+fun intermarriage_N : N;
+fun intermarry_V : V;
+fun intermediary_N : N;
+fun intermediate_A : A;
+fun intermediate_N : N;
+fun interment_N : N;
+fun intermezzo_N : N;
+fun interminable_A : A;
+fun intermingle_V : V;
+fun intermingle_V2 : V2;
+fun intermission_N : N;
+fun intermittent_A : A;
+fun intermix_V : V;
+fun intermix_V2 : V2;
+fun intermixture_N : N;
+fun intern_N : N;
+fun intern_V2 : V2;
+fun internal_A : A;
+fun internalize_V2 : V2;
+fun international_A : A;
+fun international_N : N;
+fun internationale_N : N;
+fun internationalism_N : N;
+fun internationalist_N : N;
+fun internationalization_N : N;
+fun internationalize_V2 : V2;
+fun interne_N : N;
+fun internecine_A : A;
+fun internee_N : N;
+fun internment_N : N;
+fun interpellate_V2 : V2;
+fun interpellation_N : N;
+fun interphone_N : N;
+fun interplanetary_A : A;
+fun interplay_N : N;
+fun interpol_PN : PN;
+fun interpolate_V2 : V2;
+fun interpolation_N : N;
+fun interpose_V : V;
+fun interpose_V2 : V2;
+fun interposition_N : N;
+fun interpret_V : V;
+fun interpret_V2 : V2;
+fun interpretation_N : N;
+fun interpretative_A : A;
+fun interpreter_N : N;
+fun interracial_A : A;
+fun interregnum_N : N;
+fun interrelate_V : V;
+fun interrelate_V2 : V2;
+fun interrelation_N : N;
+fun interrelationship_N : N;
+fun interrogate_V2 : V2;
+fun interrogation_N : N;
+fun interrogative_A : A;
+fun interrogative_N : N;
+fun interrogator_N : N;
+fun interrogatory_A : A;
+fun interrupt_V : V;
+fun interrupt_V2 : V2;
+fun interrupter_N : N;
+fun interruption_N : N;
+fun intersect_V : V;
+fun intersect_V2 : V2;
+fun intersection_N : N;
+fun intersperse_V2 : V2;
+fun interstate_A : A;
+fun interstellar_A : A;
+fun interstice_N : N;
+fun intertribal_A : A;
+fun intertwine_V : V;
+fun intertwine_V2 : V2;
+fun interval_N : N;
+fun intervene_V : V;
+fun intervene_V2V : V2V;
+fun intervention_N : N;
+fun interview_N : N;
+fun interview_V2 : V2;
+fun interviewer_N : N;
+fun interweave_V2 : V2;
+fun intestate_A : A;
+fun intestinal_A : A;
+fun intestine_N : N;
+fun intimacy_N : N;
+fun intimate_A : A;
+fun intimate_N : N;
+fun intimate_V2 : V2;
+fun intimation_N : N;
+fun intimidate_V2 : V2;
+fun intimidation_N : N;
+fun into_Prep : Prep ;
+fun intolerable_A : A;
+fun intolerance_N : N;
+fun intolerant_A : A;
+fun intonation_N : N;
+fun intone_V : V;
+fun intone_V2 : V2;
+fun intoxicant_A : A;
+fun intoxicant_N : N;
+fun intoxicate_V2 : V2;
+fun intoxication_N : N;
+fun intra_uterine_A : A;
+fun intractability_N : N;
+fun intractable_A : A;
+fun intramural_A : A;
+fun intransigence_N : N;
+fun intransigent_A : A;
+fun intransitive_A : A;
+fun intravenous_A : A;
+fun intrench_V2 : V2;
+fun intrepid_A : A;
+fun intrepidity_N : N;
+fun intricacy_N : N;
+fun intricate_A : A;
+fun intrigue_N : N;
+fun intrigue_V : V;
+fun intrigue_V2 : V2;
+fun intrinsic_A : A;
+fun intrinsically_Adv : Adv;
+fun intro_N : N;
+fun introduce_V2 : V2;
+fun introduction_N : N;
+fun introductory_A : A;
+fun introspect_V : V;
+fun introspection_N : N;
+fun introspective_A : A;
+fun introversion_N : N;
+fun introvert_N : N;
+fun introvert_V2 : V2;
+fun intrude_V : V;
+fun intrude_V2 : V2;
+fun intruder_N : N;
+fun intrusion_N : N;
+fun intrusive_A : A;
+fun intrust_V2 : V2;
+fun intuit_V : V;
+fun intuit_V2 : V2;
+fun intuition_N : N;
+fun intuitive_A : A;
+fun intumescence_N : N;
+fun inundate_V2 : V2;
+fun inundation_N : N;
+fun inure_V2 : V2;
+fun invade_V2 : V2;
+fun invader_N : N;
+fun invalid_A : A;
+fun invalid_N : N;
+fun invalid_V2 : V2;
+fun invalidate_V2 : V2;
+fun invalidation_N : N;
+fun invalidism_N : N;
+fun invalidity_N : N;
+fun invaluable_A : A;
+fun invariable_A : A;
+fun invasion_N : N;
+fun invasive_A : A;
+fun invective_N : N;
+fun inveigh_V : V;
+fun inveigle_V2 : V2;
+fun invent_V : V;
+fun invent_V2 : V2;
+fun invention_N : N;
+fun inventive_A : A;
+fun inventor_N : N;
+fun inventory_N : N;
+fun inverkeithing_PN : PN;
+fun inverness_PN : PN;
+fun inverse_A : A;
+fun inverse_N : N;
+fun inversion_N : N;
+fun invert_V2 : V2;
+fun invertebrate_A : A;
+fun invertebrate_N : N;
+fun inverurie_PN : PN;
+fun invest_V : V;
+fun invest_V2 : V2;
+fun investigate_V : V;
+fun investigate_V2 : V2;
+fun investigation_N : N;
+fun investigator_N : N;
+fun investiture_N : N;
+fun investment_N : N;
+fun investor_N : N;
+fun inveterate_A : A;
+fun invidious_A : A;
+fun invigilate_V : V;
+fun invigilation_N : N;
+fun invigilator_N : N;
+fun invigorate_V2 : V2;
+fun invincibility_N : N;
+fun invincible_A : A;
+fun inviolable_A : A;
+fun inviolate_A : A;
+fun invisibility_N : N;
+fun invisible_A : A;
+fun invitation_N : N;
+fun invite_N : N;
+fun invite_V2 : V2;
+fun invite_V2V : V2V;
+fun inviting_A : A;
+fun invocation_N : N;
+fun invoice_N : N;
+fun invoice_V2 : V2;
+fun invoke_V2 : V2;
+fun involuntary_A : A;
+fun involute_A : A;
+fun involution_N : N;
+fun involve_V : V;
+fun involve_V2 : V2;
+fun involve_VS : VS;
+fun involved_A : A;
+fun involvement_N : N;
+fun invulnerable_A : A;
+fun inward_A : A;
+fun inward_Adv : Adv;
+fun inwardness_N : N;
+fun inwards_Adv : Adv;
+fun inwrought_A : A;
+fun iodine_N : N;
+fun ion_N : N;
+fun ionic_A : A;
+fun ionization_N : N;
+fun ionize_V : V;
+fun ionize_V2 : V2;
+fun ionosphere_N : N;
+fun iota_N : N;
+fun iou_N : N;
+fun iowa_PN : PN;
+fun ipse_dixit_N : N;
+fun ipso_facto_Adv : Adv;
+fun ipswich_PN : PN;
+fun iq_N : N;
+fun ira_N : N;
+fun iran_PN : PN;
+fun iranian_A : A;
+fun iranian_N : N;
+fun iraq_PN : PN;
+fun iraqi_A : A;
+fun iraqi_N : N;
+fun irascibility_N : N;
+fun irascible_A : A;
+fun irate_A : A;
+fun ire_N : N;
+fun ireful_A : A;
+fun ireland_PN : PN;
+fun irene_PN : PN;
+fun iridescence_N : N;
+fun iridescent_A : A;
+fun iridium_N : N;
+fun iris_N : N;
+fun iris_PN : PN;
+fun irish_A : A;
+fun irish_N : N;
+fun irishman_N : N;
+fun irishwoman_N : N;
+fun irk_V2 : V2;
+fun irksome_A : A;
+fun iron_N : N;
+fun iron_V : V;
+fun iron_V2 : V2;
+fun iron_foundry_N : N;
+fun iron_grey_A : A;
+fun iron_grey_N : N;
+fun ironclad_A : A;
+fun ironic_A : A;
+fun ironical_A : A;
+fun ironing_board_N : N;
+fun ironmonger_N : N;
+fun ironmongery_N : N;
+fun ironmould_N : N;
+fun ironside_N : N;
+fun ironware_N : N;
+fun ironwork_N : N;
+fun ironworks_N : N;
+fun irony_N : N;
+fun irradiate_V2 : V2;
+fun irrational_A : A;
+fun irreconcilable_A : A;
+fun irrecoverable_A : A;
+fun irredeemable_A : A;
+fun irredentist_N : N;
+fun irreducible_A : A;
+fun irrefutable_A : A;
+fun irregular_A : A;
+fun irregular_N : N;
+fun irregularity_N : N;
+fun irrelevance_N : N;
+fun irrelevancy_N : N;
+fun irrelevant_A : A;
+fun irreligious_A : A;
+fun irremediable_A : A;
+fun irremovable_A : A;
+fun irreparable_A : A;
+fun irreplaceable_A : A;
+fun irrepressible_A : A;
+fun irreproachable_A : A;
+fun irresistible_A : A;
+fun irresolute_A : A;
+fun irresolution_N : N;
+fun irrespective_A : A;
+fun irresponsibility_N : N;
+fun irresponsible_A : A;
+fun irretrievable_A : A;
+fun irreverence_N : N;
+fun irreverent_A : A;
+fun irreversibility_N : N;
+fun irreversible_A : A;
+fun irrevocable_A : A;
+fun irridentism_N : N;
+fun irrigate_V2 : V2;
+fun irrigation_N : N;
+fun irritability_N : N;
+fun irritable_A : A;
+fun irritant_A : A;
+fun irritant_N : N;
+fun irritate_V2 : V2;
+fun irritation_N : N;
+fun irruption_N : N;
+fun irthlingborough_PN : PN;
+fun irvine_PN : PN;
+fun isaac_PN : PN;
+fun isabel_PN : PN;
+fun isabella_PN : PN;
+fun isinglass_N : N;
+fun islam_N : N;
+fun islamic_A : A;
+fun island_N : N;
+fun islander_N : N;
+fun isle_N : N;
+fun islet_N : N;
+fun islington_PN : PN;
+fun ism_N : N;
+fun isobar_N : N;
+fun isobel_PN : PN;
+fun isolate_V2 : V2;
+fun isolation_N : N;
+fun isolationism_N : N;
+fun isolationist_N : N;
+fun isosceles_A : A;
+fun isotherm_N : N;
+fun isotope_N : N;
+fun israel_PN : PN;
+fun israeli_A : A;
+fun israeli_N : N;
+fun issue_N : N;
+fun issue_V : V;
+fun issue_V2 : V2;
+fun istanbul_PN : PN;
+fun isthmus_N : N;
+fun it_Pron : Pron;
+fun italian_A : A;
+fun italian_N : N;
+fun italic_A : A;
+fun italicize_V2 : V2;
+fun italy_PN : PN;
+fun itch_N : N;
+fun itch_V : V;
+fun itchy_A : A;
+fun item_Adv : Adv;
+fun item_N : N;
+fun itemize_V2 : V2;
+fun iterate_V2 : V2;
+fun iteration_N : N;
+fun itinerant_A : A;
+fun itinerary_N : N;
+fun itv_N : N;
+fun iud_N : N;
+fun ivan_PN : PN;
+fun iver_PN : PN;
+fun ivied_A : A;
+fun ivor_PN : PN;
+fun ivory_N : N;
+fun ivy_N : N;
+fun ivy_PN : PN;
+fun izmir_PN : PN;
+fun jab_N : N;
+fun jab_V : V;
+fun jab_V2 : V2;
+fun jabalpur_PN : PN;
+fun jabber_N : N;
+fun jabber_V : V;
+fun jabber_V2 : V2;
+fun jabberer_N : N;
+fun jabot_N : N;
+fun jack_N : N;
+fun jack_PN : PN;
+fun jack_V2 : V2;
+fun jack_in_the_box_N : N;
+fun jack_knife_N : N;
+fun jack_knife_V : V;
+fun jack_o'_lantern_N : N;
+fun jack_plane_N : N;
+fun jackal_N : N;
+fun jackanapes_N : N;
+fun jackass_N : N;
+fun jackboot_N : N;
+fun jackdaw_N : N;
+fun jacket_N : N;
+fun jackie_PN : PN;
+fun jackpot_N : N;
+fun jacksonville_PN : PN;
+fun jacob_PN : PN;
+fun jacobean_A : A;
+fun jacobin_A : A;
+fun jacobin_N : N;
+fun jacobinism_N : N;
+fun jacobite_N : N;
+fun jacqueline_PN : PN;
+fun jade_N : N;
+fun jaded_A : A;
+fun jag_N : N;
+fun jag_V2 : V2;
+fun jagged_A : A;
+fun jaggy_A : A;
+fun jaguar_N : N;
+fun jail_N : N;
+fun jail_V2 : V2;
+fun jailer_N : N;
+fun jailor_N : N;
+fun jaipur_PN : PN;
+fun jakarta_PN : PN;
+fun jake_PN : PN;
+fun jakes_N : N;
+fun jalopy_N : N;
+fun jam_N : N;
+fun jam_V : V;
+fun jam_V2 : V2;
+fun jam_VS : VS;
+fun jamaica_PN : PN;
+fun jamaican_A : A;
+fun jamaican_N : N;
+fun jamb_N : N;
+fun jamboree_N : N;
+fun james_PN : PN;
+fun jamjar_N : N;
+fun jampack_V2 : V2;
+fun jampot_N : N;
+fun jan_PN : PN;
+fun jane_PN : PN;
+fun janet_PN : PN;
+fun jangle_N : N;
+fun jangle_V : V;
+fun jangle_V2 : V2;
+fun janice_PN : PN;
+fun janie_PN : PN;
+fun janitor_N : N;
+fun january_N : N;
+fun january_PN : PN;
+fun janus_PN : PN;
+fun japan_PN : PN;
+fun japan_V2 : V2;
+fun japanese_A : A;
+fun japanese_N : N;
+fun jape_N : N;
+fun japonica_N : N;
+fun jar_N : N;
+fun jar_V : V;
+fun jar_V2 : V2;
+fun jarful_N : N;
+fun jargon_N : N;
+fun jarring_A : A;
+fun jarrow_PN : PN;
+fun jasmine_N : N;
+fun jason_PN : PN;
+fun jasper_N : N;
+fun jaundice_N : N;
+fun jaundice_V2 : V2;
+fun jaunt_N : N;
+fun jaunt_V : V;
+fun jauntily_Adv : Adv;
+fun jauntiness_N : N;
+fun jaunting_car_N : N;
+fun jaunty_A : A;
+fun java_PN : PN;
+fun javanese_A : A;
+fun javanese_N : N;
+fun javelin_N : N;
+fun jaw_N : N;
+fun jaw_V : V;
+fun jawbone_N : N;
+fun jawbreaker_N : N;
+fun jay_N : N;
+fun jaywalk_V : V;
+fun jaywalker_N : N;
+fun jazz_N : N;
+fun jazz_V2 : V2;
+fun jazzy_A : A;
+fun jc_PN : PN;
+fun jealous_A : A;
+fun jealousy_N : N;
+fun jean_N : N;
+fun jean_PN : PN;
+fun jeanie_PN : PN;
+fun jedburgh_PN : PN;
+fun jeep_N : N;
+fun jeer_N : N;
+fun jeer_V : V;
+fun jeer_V2 : V2;
+fun jeeringly_Adv : Adv;
+fun jeff_PN : PN;
+fun jeffrey_PN : PN;
+fun jehovah_PN : PN;
+fun jejune_A : A;
+fun jejuneness_N : N;
+fun jekyll_and_hyde_PN : PN;
+fun jell_V : V;
+fun jell_V2 : V2;
+fun jellaba_N : N;
+fun jellied_A : A;
+fun jelly_N : N;
+fun jelly_V : V;
+fun jelly_V2 : V2;
+fun jellyfish_N : N;
+fun jemmy_N : N;
+fun jennifer_PN : PN;
+fun jenny_N : N;
+fun jenny_PN : PN;
+fun jeopardize_V2 : V2;
+fun jeopardy_N : N;
+fun jerboa_N : N;
+fun jeremiad_N : N;
+fun jeremy_PN : PN;
+fun jerk_N : N;
+fun jerk_V : V;
+fun jerk_V2 : V2;
+fun jerkily_Adv : Adv;
+fun jerkin_N : N;
+fun jerkiness_N : N;
+fun jerky_A : A;
+fun jerome_PN : PN;
+fun jerry_N : N;
+fun jerry_PN : PN;
+fun jerry_builder_N : N;
+fun jerry_building_N : N;
+fun jerry_built_A : A;
+fun jersey_N : N;
+fun jersey_PN : PN;
+fun jess_PN : PN;
+fun jessica_PN : PN;
+fun jessie_PN : PN;
+fun jest_N : N;
+fun jest_V : V;
+fun jester_N : N;
+fun jesting_A : A;
+fun jesuit_N : N;
+fun jesuitical_A : A;
+fun jesus_PN : PN;
+fun jet_N : N;
+fun jet_V : V;
+fun jet_V2 : V2;
+fun jet_black_A : A;
+fun jet_propelled_A : A;
+fun jetsam_N : N;
+fun jettison_V2 : V2;
+fun jetty_N : N;
+fun jew_N : N;
+fun jewel_N : N;
+fun jewel_V2 : V2;
+fun jeweller_N : N;
+fun jewellery_N : N;
+fun jewelry_N : N;
+fun jewess_N : N;
+fun jewish_A : A;
+fun jezebel_N : N;
+fun jib_N : N;
+fun jib_V : V;
+fun jib_boom_N : N;
+fun jibe_N : N;
+fun jibe_V : V;
+fun jiffy_N : N;
+fun jig_N : N;
+fun jig_V : V;
+fun jig_V2 : V2;
+fun jigger_N : N;
+fun jiggered_A : A;
+fun jiggery_pokery_N : N;
+fun jiggle_N : N;
+fun jiggle_V : V;
+fun jiggle_V2 : V2;
+fun jigsaw_N : N;
+fun jihad_N : N;
+fun jill_PN : PN;
+fun jilt_N : N;
+fun jilt_V2 : V2;
+fun jim_PN : PN;
+fun jim_crow_N : N;
+fun jimmy_N : N;
+fun jimmy_PN : PN;
+fun jingle_N : N;
+fun jingle_V : V;
+fun jingle_V2 : V2;
+fun jingo_N : N;
+fun jingoism_N : N;
+fun jingoist_N : N;
+fun jingoistic_A : A;
+fun jinks_N : N;
+fun jinn_N : N;
+fun jinx_N : N;
+fun jitney_N : N;
+fun jitterbug_N : N;
+fun jittery_A : A;
+fun jive_N : N;
+fun jive_V : V;
+fun jnr_PN : PN;
+fun jo_PN : PN;
+fun joan_PN : PN;
+fun joanie_PN : PN;
+fun joann_PN : PN;
+fun joanna_PN : PN;
+fun joanne_PN : PN;
+fun job_N : N;
+fun job_PN : PN;
+fun job_V : V;
+fun job_V2 : V2;
+fun jobber_N : N;
+fun jobbery_N : N;
+fun jocelyn_PN : PN;
+fun jockey_N : N;
+fun jockey_V : V;
+fun jockey_V2 : V2;
+fun jocose_A : A;
+fun jocoseness_N : N;
+fun jocosity_N : N;
+fun jocular_A : A;
+fun jocularity_N : N;
+fun jocund_A : A;
+fun jocundity_N : N;
+fun joe_PN : PN;
+fun joey_PN : PN;
+fun jog_N : N;
+fun jog_V : V;
+fun jog_V2 : V2;
+fun jog_trot_N : N;
+fun jogger_N : N;
+fun jogging_N : N;
+fun joggle_N : N;
+fun joggle_V : V;
+fun joggle_V2 : V2;
+fun johannesburg_PN : PN;
+fun john_PN : PN;
+fun john_bull_N : N;
+fun johnny_PN : PN;
+fun johnstone_PN : PN;
+fun joie_de_vivre_N : N;
+fun join_N : N;
+fun join_V : V;
+fun join_V2 : V2;
+fun joiner_N : N;
+fun joinery_N : N;
+fun joint_A : A;
+fun joint_N : N;
+fun joint_V2 : V2;
+fun jointure_N : N;
+fun joist_N : N;
+fun joke_N : N;
+fun joke_V : V;
+fun joke_VS : VS;
+fun joker_N : N;
+fun jokingly_Adv : Adv;
+fun jollification_N : N;
+fun jollity_N : N;
+fun jolly_A : A;
+fun jolly_Adv : Adv;
+fun jolly_V2 : V2;
+fun jollyboat_N : N;
+fun jolt_N : N;
+fun jolt_V : V;
+fun jolt_V2 : V2;
+fun jolty_A : A;
+fun jonah_PN : PN;
+fun jonathan_PN : PN;
+fun jonquil_N : N;
+fun jordan_PN : PN;
+fun jordanian_A : A;
+fun jordanian_N : N;
+fun joseph_PN : PN;
+fun josephine_PN : PN;
+fun josh_PN : PN;
+fun joshua_PN : PN;
+fun joss_N : N;
+fun joss_house_N : N;
+fun joss_stick_N : N;
+fun jostle_V : V;
+fun jostle_V2 : V2;
+fun jot_N : N;
+fun jot_V2 : V2;
+fun jotter_N : N;
+fun joule_N : N;
+fun journal_N : N;
+fun journalese_N : N;
+fun journalism_N : N;
+fun journalist_N : N;
+fun journalistic_A : A;
+fun journalistically_Adv : Adv;
+fun journey_N : N;
+fun journey_V : V;
+fun journeyman_N : N;
+fun joust_N : N;
+fun joust_V : V;
+fun jove_PN : PN;
+fun jovial_A : A;
+fun joviality_N : N;
+fun jowl_N : N;
+fun jowly_A : A;
+fun joy_N : N;
+fun joy_PN : PN;
+fun joy_V : V;
+fun joy_ride_N : N;
+fun joy_stick_N : N;
+fun joyce_PN : PN;
+fun joyful_A : A;
+fun joyfulness_N : N;
+fun joyless_A : A;
+fun joylessness_N : N;
+fun joyous_A : A;
+fun joyousness_N : N;
+fun jp_N : N;
+fun ju_jitsu_N : N;
+fun jubilant_A : A;
+fun jubilation_N : N;
+fun jubilee_N : N;
+fun judaic_A : A;
+fun judaism_N : N;
+fun judas_N : N;
+fun judas_PN : PN;
+fun judder_V : V;
+fun judge_N : N;
+fun judge_V : V;
+fun judge_V2 : V2;
+fun judge_V2V : V2V;
+fun judge_VS : VS;
+fun judgement_N : N;
+fun judicature_N : N;
+fun judicial_A : A;
+fun judiciary_N : N;
+fun judicious_A : A;
+fun judiciousness_N : N;
+fun judith_PN : PN;
+fun judo_N : N;
+fun judy_PN : PN;
+fun jug_N : N;
+fun jug_V2 : V2;
+fun jugful_N : N;
+fun juggernaut_N : N;
+fun juggle_V : V;
+fun juggle_V2 : V2;
+fun juggler_N : N;
+fun jugular_A : A;
+fun juice_N : N;
+fun juiciness_N : N;
+fun juicy_A : A;
+fun juju_N : N;
+fun jujube_N : N;
+fun jukebox_N : N;
+fun jul_PN : PN;
+fun julep_N : N;
+fun julia_PN : PN;
+fun julian_A : A;
+fun julian_PN : PN;
+fun julie_PN : PN;
+fun juliet_PN : PN;
+fun july_N : N;
+fun jumble_N : N;
+fun jumble_V : V;
+fun jumble_V2 : V2;
+fun jumble_sale_N : N;
+fun jumbo_A : A;
+fun jump_N : N;
+fun jump_V : V;
+fun jump_V2 : V2;
+fun jump_V2V : V2V;
+fun jumped_up_A : A;
+fun jumper_N : N;
+fun jumpiness_N : N;
+fun jumpy_A : A;
+fun jun_PN : PN;
+fun junction_N : N;
+fun juncture_N : N;
+fun june_N : N;
+fun june_PN : PN;
+fun jungle_N : N;
+fun jungly_A : A;
+fun junior_A : A;
+fun junior_N : N;
+fun juniper_N : N;
+fun junk_N : N;
+fun junk_V2 : V2;
+fun junk_shop_N : N;
+fun junket_N : N;
+fun junket_V : V;
+fun junketing_N : N;
+fun junkie_N : N;
+fun junky_N : N;
+fun junoesque_A : A;
+fun junta_N : N;
+fun jupiter_PN : PN;
+fun juridical_A : A;
+fun jurisdiction_N : N;
+fun jurisprudence_N : N;
+fun jurist_N : N;
+fun juror_N : N;
+fun jury_N : N;
+fun jury_box_N : N;
+fun jury_mast_N : N;
+fun jury_rigge_V2 : V2;
+fun juryman_N : N;
+fun just_Adv : Adv;
+fun just_Predet : Predet;
+fun justice_N : N;
+fun justiciary_N : N;
+fun justifiable_A : A;
+fun justification_N : N;
+fun justify_V2 : V2;
+fun justify_VV : VV;
+fun justin_PN : PN;
+fun justness_N : N;
+fun jut_V : V;
+fun jute_N : N;
+fun juvenile_A : A;
+fun juvenile_N : N;
+fun juxtapose_V2 : V2;
+fun juxtaposition_N : N;
+fun kaffir_N : N;
+fun kail_N : N;
+fun kaiser_N : N;
+fun kakemono_N : N;
+fun kale_N : N;
+fun kaleidoscope_N : N;
+fun kaleidoscopic_A : A;
+fun kalgan_PN : PN;
+fun kampong_N : N;
+fun kampuchea_PN : PN;
+fun kampuchean_A : A;
+fun kampuchean_N : N;
+fun kangaroo_N : N;
+fun kanpur_PN : PN;
+fun kansas_PN : PN;
+fun kansas_city_PN : PN;
+fun kaohsiung_PN : PN;
+fun kaolin_N : N;
+fun kapok_N : N;
+fun kaput_A : A;
+fun karachi_PN : PN;
+fun karaganda_PN : PN;
+fun karat_N : N;
+fun karate_N : N;
+fun karen_PN : PN;
+fun karlsruhe_PN : PN;
+fun karma_N : N;
+fun kashmir_PN : PN;
+fun kashmiri_A : A;
+fun kashmiri_N : N;
+fun kassel_PN : PN;
+fun kate_PN : PN;
+fun kath_PN : PN;
+fun katherine_PN : PN;
+fun kathy_PN : PN;
+fun katie_PN : PN;
+fun katowice_PN : PN;
+fun kava_N : N;
+fun kay_PN : PN;
+fun kayak_N : N;
+fun kazan_PN : PN;
+fun kebab_N : N;
+fun kedgeree_N : N;
+fun keel_N : N;
+fun keel_V : V;
+fun keel_V2 : V2;
+fun keen_A : A;
+fun keen_N : N;
+fun keen_V : V;
+fun keen_V2 : V2;
+fun keenness_N : N;
+fun keep_N : N;
+fun keep_V : V;
+fun keep_V2 : V2;
+fun keep_VA : VA;
+fun keep_VS : VS;
+fun keeper_N : N;
+fun keeping_N : N;
+fun keepsake_N : N;
+fun keg_N : N;
+fun keighley_PN : PN;
+fun keith_PN : PN;
+fun kelp_N : N;
+fun kelso_PN : PN;
+fun kelt_N : N;
+fun kelty_PN : PN;
+fun kemsing_PN : PN;
+fun ken_N : N;
+fun ken_PN : PN;
+fun ken_V2 : V2;
+fun kendal_PN : PN;
+fun kenilworth_PN : PN;
+fun kennel_N : N;
+fun kennel_V : V;
+fun kennel_V2 : V2;
+fun kenneth_PN : PN;
+fun kenny_PN : PN;
+fun kensington_PN : PN;
+fun kent_PN : PN;
+fun kentucky_PN : PN;
+fun kenya_PN : PN;
+fun kenyan_A : A;
+fun kenyan_N : N;
+fun kepi_N : N;
+fun kerb_N : N;
+fun kerbstone_N : N;
+fun kerchief_N : N;
+fun kernel_N : N;
+fun kerosene_N : N;
+fun kerry_PN : PN;
+fun kestrel_N : N;
+fun ketch_N : N;
+fun ketchup_N : N;
+fun kettering_PN : PN;
+fun kettle_N : N;
+fun kettledrum_N : N;
+fun kevin_PN : PN;
+fun key_A : A;
+fun key_N : N;
+fun key_V2 : V2;
+fun keyboard_N : N;
+fun keyhole_N : N;
+fun keyless_A : A;
+fun keynote_N : N;
+fun keynsham_PN : PN;
+fun keyring_N : N;
+fun keystone_N : N;
+fun keyword_N : N;
+fun keyworth_PN : PN;
+fun kg_N : N;
+fun kgb_N : N;
+fun khaki_A : A;
+fun khaki_N : N;
+fun khalka_N : N;
+fun khan_N : N;
+fun kharkov_PN : PN;
+fun khartoum_PN : PN;
+fun khmer_N : N;
+fun kibbutz_N : N;
+fun kibbutznik_N : N;
+fun kick_N : N;
+fun kick_V : V;
+fun kick_V2 : V2;
+fun kick_start_N : N;
+fun kick_starter_N : N;
+fun kickback_N : N;
+fun kickoff_N : N;
+fun kid_N : N;
+fun kid_V : V;
+fun kid_V2 : V2;
+fun kidderminster_PN : PN;
+fun kiddy_N : N;
+fun kidlington_PN : PN;
+fun kidnap_V2 : V2;
+fun kidnapper_N : N;
+fun kidney_N : N;
+fun kidney_bean_N : N;
+fun kidsgrove_PN : PN;
+fun kiev_PN : PN;
+fun kilbirnie_PN : PN;
+fun kildare_PN : PN;
+fun kilkenny_PN : PN;
+fun kill_N : N;
+fun kill_V : V;
+fun kill_V2 : V2;
+fun killarney_PN : PN;
+fun killer_N : N;
+fun killing_A : A;
+fun killing_N : N;
+fun killjoy_N : N;
+fun kilmarnock_PN : PN;
+fun kiln_N : N;
+fun kilo_N : N;
+fun kilocycle_N : N;
+fun kilogram_N : N;
+fun kilolitre_N : N;
+fun kilometre_N : N;
+fun kilowatt_N : N;
+fun kilsyth_PN : PN;
+fun kilt_N : N;
+fun kilwinning_PN : PN;
+fun kimberley_PN : PN;
+fun kimono_N : N;
+fun kind_A : A;
+fun kind_N : N;
+fun kind_hearted_A : A;
+fun kinda_Adv : Adv;
+fun kindergarten_N : N;
+fun kindle_V : V;
+fun kindle_V2 : V2;
+fun kindling_N : N;
+fun kindly_A : A;
+fun kindness_N : N;
+fun kindred_A : A;
+fun kindred_N : N;
+fun kinetic_A : A;
+fun kinetics_N : N;
+fun king's_lynn_PN : PN;
+fun king_N : N;
+fun king_size_A : A;
+fun king_sized_A : A;
+fun kingcup_N : N;
+fun kingdom_N : N;
+fun kingfisher_N : N;
+fun kinglike_A : A;
+fun kingly_A : A;
+fun kingpin_N : N;
+fun kingsbury_PN : PN;
+fun kingship_N : N;
+fun kingsteignton_PN : PN;
+fun kingston_PN : PN;
+fun kingston_upon_hull_PN : PN;
+fun kingston_upon_thames_PN : PN;
+fun kink_N : N;
+fun kink_V : V;
+fun kink_V2 : V2;
+fun kinky_A : A;
+fun kinshasa_PN : PN;
+fun kinship_N : N;
+fun kinsman_N : N;
+fun kinswoman_N : N;
+fun kiosk_N : N;
+fun kip_N : N;
+fun kip_V : V;
+fun kippax_PN : PN;
+fun kipper_N : N;
+fun kirin_PN : PN;
+fun kirk_N : N;
+fun kirkby_PN : PN;
+fun kirkby_in_ashfield_PN : PN;
+fun kirkcaldy_PN : PN;
+fun kirkham_PN : PN;
+fun kirkintilloch_PN : PN;
+fun kirkwall_PN : PN;
+fun kirsch_N : N;
+fun kirtle_N : N;
+fun kismet_N : N;
+fun kiss_N : N;
+fun kiss_V : V;
+fun kiss_V2 : V2;
+fun kisser_N : N;
+fun kit_N : N;
+fun kit_V2 : V2;
+fun kitakyushu_PN : PN;
+fun kitbag_N : N;
+fun kitchen_N : N;
+fun kitchenette_N : N;
+fun kite_N : N;
+fun kite_balloon_N : N;
+fun kitsch_A : A;
+fun kitten_N : N;
+fun kittenish_A : A;
+fun kitty_N : N;
+fun kitty_PN : PN;
+fun kiwi_N : N;
+fun klaxon_N : N;
+fun kleenex_N : N;
+fun kleptomania_N : N;
+fun kleptomaniac_N : N;
+fun km_N : N;
+fun knack_N : N;
+fun knacker_N : N;
+fun knap_V2 : V2;
+fun knapsack_N : N;
+fun knaresborough_PN : PN;
+fun knave_N : N;
+fun knavery_N : N;
+fun knavish_A : A;
+fun knead_V : V;
+fun knead_V2 : V2;
+fun knee_N : N;
+fun knee_deep_A : A;
+fun knee_deep_Adv : Adv;
+fun knee_high_A : A;
+fun knee_high_Adv : Adv;
+fun kneecap_N : N;
+fun kneel_V : V;
+fun knell_N : N;
+fun knesset_N : N;
+fun knick_knack_N : N;
+fun knife_N : N;
+fun knife_V2 : V2;
+fun knife_edge_N : N;
+fun knight_N : N;
+fun knight_V2 : V2;
+fun knight_errant_N : N;
+fun knighthood_N : N;
+fun knightly_A : A;
+fun knit_V : V;
+fun knit_V2 : V2;
+fun knitter_N : N;
+fun knitting_N : N;
+fun knitting_machine_N : N;
+fun knitting_needle_N : N;
+fun knitwear_N : N;
+fun knob_N : N;
+fun knobble_N : N;
+fun knobbly_A : A;
+fun knobkerrie_N : N;
+fun knock_N : N;
+fun knock_V : V;
+fun knock_V2 : V2;
+fun knock_kneed_A : A;
+fun knock_on_N : N;
+fun knockabout_A : A;
+fun knockdown_A : A;
+fun knocker_N : N;
+fun knockout_A : A;
+fun knockout_N : N;
+fun knoll_N : N;
+fun knot_N : N;
+fun knot_V : V;
+fun knot_V2 : V2;
+fun knothole_N : N;
+fun knottingley_PN : PN;
+fun knotty_A : A;
+fun knout_N : N;
+fun know_N : N;
+fun know_V : V;
+fun know_V2 : V2;
+fun know_V2V : V2V;
+fun know_VS : VS;
+fun know_all_N : N;
+fun know_how_N : N;
+fun knowing_A : A;
+fun knowledge_N : N;
+fun knowledgeable_A : A;
+fun knuckle_N : N;
+fun knuckle_V : V;
+fun knutsford_PN : PN;
+fun ko_N : N;
+fun koala_N : N;
+fun kobe_PN : PN;
+fun koblenz_PN : PN;
+fun kobo_N : N;
+fun kohl_N : N;
+fun kohlrabi_N : N;
+fun kola_N : N;
+fun kola_nut_N : N;
+fun koln_PN : PN;
+fun kookaburra_N : N;
+fun kopeck_N : N;
+fun kopje_N : N;
+fun koppie_N : N;
+fun koran_N : N;
+fun koranic_A : A;
+fun korea_PN : PN;
+fun korean_A : A;
+fun korean_N : N;
+fun kosher_A : A;
+fun kosher_N : N;
+fun kotow_N : N;
+fun kotow_V : V;
+fun koumiss_N : N;
+fun kowtow_N : N;
+fun kowtow_V : V;
+fun kraal_N : N;
+fun krakow_PN : PN;
+fun krasnoyarsk_PN : PN;
+fun krefeld_PN : PN;
+fun kremlin_N : N;
+fun krivoi_rog_PN : PN;
+fun krona_N : N;
+fun krone_N : N;
+fun kudos_N : N;
+fun kumis_N : N;
+fun kummel_N : N;
+fun kung_fu_N : N;
+fun kunming_PN : PN;
+fun kuwait_PN : PN;
+fun kuwait_city_PN : PN;
+fun kuwaiti_A : A;
+fun kuwaiti_N : N;
+fun kuybyshev_PN : PN;
+fun kvass_N : N;
+fun kw_N : N;
+fun kwacha_N : N;
+fun kweiyang_PN : PN;
+fun kwela_N : N;
+fun kyoto_PN : PN;
+fun l_plate_N : N;
+fun la_N : N;
+fun la_PN : PN;
+fun la_di_da_A : A;
+fun la_habana_PN : PN;
+fun la_paz_PN : PN;
+fun la_plata_PN : PN;
+fun la_spezia_PN : PN;
+fun laager_N : N;
+fun lab_N : N;
+fun lab_PN : PN;
+fun label_N : N;
+fun label_V : V;
+fun label_V2 : V2;
+fun label_VS : VS;
+fun labial_A : A;
+fun labor_V : V;
+fun laboratory_N : N;
+fun laborious_A : A;
+fun labour_N : N;
+fun labour_V : V;
+fun labour_V2 : V2;
+fun labour_saving_A : A;
+fun laboured_A : A;
+fun labourer_N : N;
+fun labourite_N : N;
+fun labrador_PN : PN;
+fun laburnum_N : N;
+fun labyrinth_N : N;
+fun labyrinthine_A : A;
+fun lace_N : N;
+fun lace_V : V;
+fun lace_V2 : V2;
+fun lacerate_V2 : V2;
+fun laceration_N : N;
+fun lachrymal_A : A;
+fun lachrymose_A : A;
+fun lack_N : N;
+fun lack_V : V;
+fun lack_V2 : V2;
+fun lack_lustre_A : A;
+fun lackadaisical_A : A;
+fun lackey_N : N;
+fun laconic_A : A;
+fun laconically_Adv : Adv;
+fun laconicism_N : N;
+fun laconism_N : N;
+fun lacquer_N : N;
+fun lacquer_V2 : V2;
+fun lacrosse_N : N;
+fun lactic_A : A;
+fun lacuna_N : N;
+fun lacy_A : A;
+fun lad_N : N;
+fun ladder_N : N;
+fun ladder_V : V;
+fun ladder_proof_A : A;
+fun laddie_N : N;
+fun lade_V2 : V2;
+fun laden_A : A;
+fun lading_N : N;
+fun ladle_N : N;
+fun ladle_V2 : V2;
+fun lady's_maid_N : N;
+fun lady_N : N;
+fun lady_chapel_N : N;
+fun lady_in_waiting_N : N;
+fun lady_killer_N : N;
+fun ladybird_N : N;
+fun ladylike_A : A;
+fun ladyship_N : N;
+fun lag_N : N;
+fun lag_V : V;
+fun lag_V2 : V2;
+fun lager_N : N;
+fun laggard_N : N;
+fun lagging_N : N;
+fun lagoon_N : N;
+fun lagos_PN : PN;
+fun lahore_PN : PN;
+fun laic_A : A;
+fun laicize_V2 : V2;
+fun lair_N : N;
+fun laird_N : N;
+fun laissez_faire_N : N;
+fun laity_N : N;
+fun lake_N : N;
+fun lakenheath_PN : PN;
+fun lakh_N : N;
+fun lam_V : V;
+fun lam_V2 : V2;
+fun lama_N : N;
+fun lamasery_N : N;
+fun lamb_N : N;
+fun lamb_V : V;
+fun lambaste_V2 : V2;
+fun lambency_N : N;
+fun lambent_A : A;
+fun lambeth_PN : PN;
+fun lambkin_N : N;
+fun lambskin_N : N;
+fun lame_A : A;
+fun lame_N : N;
+fun lame_V2 : V2;
+fun lameness_N : N;
+fun lament_N : N;
+fun lament_V : V;
+fun lament_V2 : V2;
+fun lament_VS : VS;
+fun lamentable_A : A;
+fun lamentation_N : N;
+fun laminate_V : V;
+fun laminate_V2 : V2;
+fun lammas_N : N;
+fun lammas_PN : PN;
+fun lamp_N : N;
+fun lamp_black_N : N;
+fun lamplight_N : N;
+fun lamplighter_N : N;
+fun lamplit_A : A;
+fun lampoon_N : N;
+fun lampoon_V2 : V2;
+fun lamppost_N : N;
+fun lamprey_N : N;
+fun lampshade_N : N;
+fun lanark_PN : PN;
+fun lancashire_PN : PN;
+fun lancaster_PN : PN;
+fun lancastrian_A : A;
+fun lancastrian_N : N;
+fun lance_N : N;
+fun lance_V2 : V2;
+fun lance_corporal_N : N;
+fun lancer_N : N;
+fun lancet_N : N;
+fun lanchow_PN : PN;
+fun lancing_PN : PN;
+fun land_N : N;
+fun land_V : V;
+fun land_V2 : V2;
+fun land_agent_N : N;
+fun landau_N : N;
+fun landed_A : A;
+fun landfall_N : N;
+fun landgrave_N : N;
+fun landholder_N : N;
+fun landing_N : N;
+fun landing_craft_N : N;
+fun landing_field_N : N;
+fun landing_gear_N : N;
+fun landing_net_N : N;
+fun landing_party_N : N;
+fun landing_place_N : N;
+fun landing_stage_N : N;
+fun landing_strip_N : N;
+fun landlady_N : N;
+fun landless_A : A;
+fun landlocked_A : A;
+fun landlord_N : N;
+fun landlubber_N : N;
+fun landmark_N : N;
+fun landmine_N : N;
+fun landowner_N : N;
+fun landrover_N : N;
+fun landscape_N : N;
+fun landscape_V2 : V2;
+fun landslide_N : N;
+fun landslip_N : N;
+fun landsman_N : N;
+fun landward_Adv : Adv;
+fun lane_N : N;
+fun langsyne_Adv : Adv;
+fun langsyne_N : N;
+fun language_N : N;
+fun languid_A : A;
+fun languish_V : V;
+fun languor_N : N;
+fun languorous_A : A;
+fun langur_N : N;
+fun lank_A : A;
+fun lanky_A : A;
+fun lanolin_N : N;
+fun lantern_N : N;
+fun lantern_jawed_A : A;
+fun lanyard_N : N;
+fun lao_N : N;
+fun laos_PN : PN;
+fun laotian_A : A;
+fun laotian_N : N;
+fun lap_N : N;
+fun lap_V : V;
+fun lap_V2 : V2;
+fun lap_dog_N : N;
+fun lapel_N : N;
+fun lapidary_A : A;
+fun lapidary_N : N;
+fun lapis_lazuli_N : N;
+fun lapse_N : N;
+fun lapse_V : V;
+fun lapwing_N : N;
+fun larboard_A : A;
+fun larboard_N : N;
+fun larceny_N : N;
+fun larch_N : N;
+fun lard_N : N;
+fun lard_V2 : V2;
+fun larder_N : N;
+fun large_A : A;
+fun large_Adv : Adv;
+fun large_N : N;
+fun large_scale_A : A;
+fun largeness_N : N;
+fun largesse_N : N;
+fun largish_A : A;
+fun largo_N : N;
+fun largs_PN : PN;
+fun lariat_N : N;
+fun lark_N : N;
+fun lark_V : V;
+fun larkhall_PN : PN;
+fun larkspur_N : N;
+fun larn_V : V;
+fun larn_V2 : V2;
+fun larne_PN : PN;
+fun larry_PN : PN;
+fun larva_N : N;
+fun larval_A : A;
+fun laryngitis_N : N;
+fun larynx_N : N;
+fun las_palmas_PN : PN;
+fun lascar_N : N;
+fun lascivious_A : A;
+fun lasciviousness_N : N;
+fun laser_N : N;
+fun lash_N : N;
+fun lash_V : V;
+fun lash_V2 : V2;
+fun lash_up_N : N;
+fun lashing_N : N;
+fun lass_N : N;
+fun lassie_N : N;
+fun lassitude_N : N;
+fun lasso_N : N;
+fun lasso_V2 : V2;
+fun last_A : A;
+fun last_V : V;
+fun last_V2 : V2;
+fun lasting_A : A;
+fun lat_N : N;
+fun latch_N : N;
+fun latch_V : V;
+fun latch_V2 : V2;
+fun latchkey_N : N;
+fun late_A : A;
+fun late_Adv : Adv;
+fun lateen_A : A;
+fun latent_A : A;
+fun lateral_A : A;
+fun laterite_N : N;
+fun latex_N : N;
+fun lath_N : N;
+fun lathe_N : N;
+fun lather_N : N;
+fun lather_V : V;
+fun lather_V2 : V2;
+fun lathi_N : N;
+fun latin_A : A;
+fun latin_N : N;
+fun latinist_N : N;
+fun latinize_V2 : V2;
+fun latish_A : A;
+fun latitude_N : N;
+fun latitudes_N : N;
+fun latitudinal_A : A;
+fun latitudinarian_A : A;
+fun latitudinarian_N : N;
+fun latrine_N : N;
+fun latter_A : A;
+fun latter_day_A : A;
+fun lattice_N : N;
+fun latticed_A : A;
+fun laud_V2 : V2;
+fun laudable_A : A;
+fun laudanum_N : N;
+fun laudatory_A : A;
+fun laugh_N : N;
+fun laugh_V : V;
+fun laugh_V2 : V2;
+fun laugh_VS : VS;
+fun laughable_A : A;
+fun laughing_A : A;
+fun laughing_gas_N : N;
+fun laughing_stock_N : N;
+fun laughter_N : N;
+fun launch_N : N;
+fun launch_V : V;
+fun launch_V2 : V2;
+fun launcher_N : N;
+fun launching_pad_N : N;
+fun launching_site_N : N;
+fun launder_V : V;
+fun launder_V2 : V2;
+fun launderette_N : N;
+fun laundress_N : N;
+fun laundry_N : N;
+fun laundryman_N : N;
+fun laundrywoman_N : N;
+fun laura_PN : PN;
+fun laureate_A : A;
+fun laureate_N : N;
+fun laurel_N : N;
+fun laurelled_A : A;
+fun laurence_PN : PN;
+fun lausanne_PN : PN;
+fun lav_N : N;
+fun lava_N : N;
+fun lavatory_N : N;
+fun lave_V2 : V2;
+fun lavender_N : N;
+fun lavish_A : A;
+fun lavish_V2 : V2;
+fun law_N : N;
+fun law_abiding_A : A;
+fun law_officer_N : N;
+fun lawbreaker_N : N;
+fun lawful_A : A;
+fun lawgiver_N : N;
+fun lawless_A : A;
+fun lawlessness_N : N;
+fun lawmaker_N : N;
+fun lawmaking_N : N;
+fun lawn_N : N;
+fun lawn_mower_N : N;
+fun lawrence_PN : PN;
+fun lawyer_N : N;
+fun lax_A : A;
+fun laxative_A : A;
+fun laxative_N : N;
+fun laxity_N : N;
+fun lay_A : A;
+fun lay_N : N;
+fun lay_V : V;
+fun lay_V2 : V2;
+fun lay_VS : VS;
+fun lay_figure_N : N;
+fun lay_off_N : N;
+fun lay_out_N : N;
+fun layabout_N : N;
+fun layby_N : N;
+fun layer_N : N;
+fun layer_V2 : V2;
+fun layer_cake_N : N;
+fun layette_N : N;
+fun layman_N : N;
+fun layover_N : N;
+fun lazar_N : N;
+fun lazaret_N : N;
+fun lazarette_N : N;
+fun lazaretto_N : N;
+fun lazarus_N : N;
+fun lazarus_PN : PN;
+fun laze_V : V;
+fun laze_V2 : V2;
+fun lazily_Adv : Adv;
+fun laziness_N : N;
+fun lazy_A : A;
+fun lazybones_N : N;
+fun lb_N : N;
+fun lbw_PN : PN;
+fun le_havre_PN : PN;
+fun le_mans_PN : PN;
+fun lea_N : N;
+fun leach_V2 : V2;
+fun lead_N : N;
+fun lead_V : V;
+fun lead_V2 : V2;
+fun lead_V2V : V2V;
+fun lead_VS : VS;
+fun lead_in_N : N;
+fun lead_ore_N : N;
+fun leaded_A : A;
+fun leaden_A : A;
+fun leader_N : N;
+fun leaderless_A : A;
+fun leadership_N : N;
+fun leading_A : A;
+fun leading_N : N;
+fun leading_rein_N : N;
+fun leaf_N : N;
+fun leaf_V : V;
+fun leaf_bud_N : N;
+fun leaf_mould_N : N;
+fun leafless_A : A;
+fun leaflet_N : N;
+fun leafy_A : A;
+fun league_N : N;
+fun league_V : V;
+fun league_V2 : V2;
+fun leak_N : N;
+fun leak_V : V;
+fun leak_V2 : V2;
+fun leakage_N : N;
+fun leaky_A : A;
+fun leal_A : A;
+fun leamington_spa_PN : PN;
+fun lean_A : A;
+fun lean_N : N;
+fun lean_V : V;
+fun lean_V2 : V2;
+fun lean_to_N : N;
+fun leaning_N : N;
+fun leanness_N : N;
+fun leap_N : N;
+fun leap_V : V;
+fun leap_V2 : V2;
+fun leap_year_N : N;
+fun leapfrog_N : N;
+fun leapfrog_V2 : V2;
+fun learn_V : V;
+fun learn_V2 : V2;
+fun learn_VV : VV;
+fun learn_VS : VS;
+fun learned_A : A;
+fun learner_N : N;
+fun learning_N : N;
+fun lease_N : N;
+fun lease_V2 : V2;
+fun lease_lend_N : N;
+fun leasehold_A : A;
+fun leasehold_N : N;
+fun leaseholder_N : N;
+fun leash_N : N;
+fun least_A : A;
+fun least_Adv : Adv;
+fun least_N : N;
+fun leastways_Adv : Adv;
+fun leastwise_Adv : Adv;
+fun leather_N : N;
+fun leather_jacket_N : N;
+fun leatherette_N : N;
+fun leatherhead_PN : PN;
+fun leatherneck_N : N;
+fun leatherwork_N : N;
+fun leathery_A : A;
+fun leave_N : N;
+fun leave_V : V;
+fun leave_V2 : V2;
+fun leave_V2V : V2V;
+fun leave_VV : VV;
+fun leave_VS : VS;
+fun leave_taking_N : N;
+fun leaven_N : N;
+fun leaven_V2 : V2;
+fun lebanese_A : A;
+fun lebanese_N : N;
+fun lebanon_PN : PN;
+fun lecher_N : N;
+fun lecherous_A : A;
+fun lechery_N : N;
+fun lectern_N : N;
+fun lecture_N : N;
+fun lecture_V : V;
+fun lecture_V2 : V2;
+fun lecturer_N : N;
+fun lectureship_N : N;
+fun ledge_N : N;
+fun ledger_N : N;
+fun lee_N : N;
+fun leech_N : N;
+fun leeds_PN : PN;
+fun leek_N : N;
+fun leek_PN : PN;
+fun leer_N : N;
+fun leer_V : V;
+fun leeward_A : A;
+fun leeward_Adv : Adv;
+fun leeway_N : N;
+fun left_A : A;
+fun left_Adv : Adv;
+fun left_N : N;
+fun left_VS : VS;
+fun left_hand_A : A;
+fun left_handed_A : A;
+fun left_wing_N : N;
+fun left_winger_N : N;
+fun leftist_N : N;
+fun leg_N : N;
+fun leg_pull_N : N;
+fun leg_pulling_N : N;
+fun legacy_N : N;
+fun legal_A : A;
+fun legalism_N : N;
+fun legalistic_A : A;
+fun legality_N : N;
+fun legalization_N : N;
+fun legalize_V2 : V2;
+fun legate_N : N;
+fun legatee_N : N;
+fun legation_N : N;
+fun legato_A : A;
+fun legato_Adv : Adv;
+fun legend_N : N;
+fun legendary_A : A;
+fun leger_line_N : N;
+fun legerdemain_N : N;
+fun legged_A : A;
+fun legging_N : N;
+fun leggy_A : A;
+fun leghorn_N : N;
+fun legibility_N : N;
+fun legible_A : A;
+fun legion_N : N;
+fun legionary_N : N;
+fun legislate_V : V;
+fun legislation_N : N;
+fun legislative_A : A;
+fun legislator_N : N;
+fun legislature_N : N;
+fun legitimacy_N : N;
+fun legitimate_A : A;
+fun legitimatize_V2 : V2;
+fun legitimize_V2 : V2;
+fun legitimize_V2V : V2V;
+fun legless_A : A;
+fun leguminous_A : A;
+fun lei_N : N;
+fun leicester_PN : PN;
+fun leicestershire_PN : PN;
+fun leiden_PN : PN;
+fun leigh_PN : PN;
+fun leighton_linslade_PN : PN;
+fun leinster_PN : PN;
+fun leipzig_PN : PN;
+fun leisure_N : N;
+fun leisured_A : A;
+fun leisurely_A : A;
+fun leisurely_Adv : Adv;
+fun leitrim_PN : PN;
+fun leix_PN : PN;
+fun lemming_N : N;
+fun lemon_N : N;
+fun lemonade_N : N;
+fun lemur_N : N;
+fun len_PN : PN;
+fun lend_V : V;
+fun lend_V2 : V2;
+fun lender_N : N;
+fun lending_library_N : N;
+fun length_N : N;
+fun lengthen_V : V;
+fun lengthen_V2 : V2;
+fun lengthily_Adv : Adv;
+fun lengthways_A : A;
+fun lengthways_Adv : Adv;
+fun lengthwise_Adv : Adv;
+fun lengthy_A : A;
+fun lenience_N : N;
+fun leniency_N : N;
+fun lenient_A : A;
+fun leningrad_PN : PN;
+fun lenity_N : N;
+fun lenny_PN : PN;
+fun lens_N : N;
+fun lens_PN : PN;
+fun lent_N : N;
+fun lent_PN : PN;
+fun lenten_A : A;
+fun lentil_N : N;
+fun lento_A : A;
+fun lento_Adv : Adv;
+fun leo_PN : PN;
+fun leominster_PN : PN;
+fun leon_PN : PN;
+fun leonard_PN : PN;
+fun leonine_A : A;
+fun leopard_N : N;
+fun leopardess_N : N;
+fun leper_N : N;
+fun leprechaun_N : N;
+fun leprosy_N : N;
+fun leprous_A : A;
+fun lerwick_PN : PN;
+fun les_PN : PN;
+fun lesbian_N : N;
+fun lesbianism_N : N;
+fun lese_majesty_N : N;
+fun lesion_N : N;
+fun lesley_PN : PN;
+fun leslie_PN : PN;
+fun lesotho_PN : PN;
+fun less_A : A;
+fun less_Adv : Adv;
+fun less_N : N;
+fun lessee_N : N;
+fun lessen_V : V;
+fun lessen_V2 : V2;
+fun lesser_A : A;
+fun lesson_N : N;
+fun lessor_N : N;
+fun lest_Prep : Prep ;
+fun let_N : N;
+fun let_V : V;
+fun let_V2 : V2;
+fun let_V2V : V2V;
+fun let_VS : VS;
+fun let_down_N : N;
+fun let_up_N : N;
+fun letchworth_PN : PN;
+fun lethal_A : A;
+fun lethargic_A : A;
+fun lethargically_Adv : Adv;
+fun lethargy_N : N;
+fun lethe_PN : PN;
+fun letter_N : N;
+fun letter_box_N : N;
+fun letter_card_N : N;
+fun letter_case_N : N;
+fun lettered_A : A;
+fun letterhead_N : N;
+fun lettering_N : N;
+fun letterpress_N : N;
+fun letting_N : N;
+fun lettuce_N : N;
+fun leucocyte_N : N;
+fun leukaemia_N : N;
+fun levant_PN : PN;
+fun levant_V : V;
+fun levantine_A : A;
+fun levantine_N : N;
+fun levee_N : N;
+fun level_A : A;
+fun level_N : N;
+fun level_V : V;
+fun level_V2 : V2;
+fun level_headed_A : A;
+fun leveller_N : N;
+fun leven_PN : PN;
+fun lever_N : N;
+fun lever_V2 : V2;
+fun leverage_N : N;
+fun leveret_N : N;
+fun leverkusen_PN : PN;
+fun leviathan_N : N;
+fun levitate_V : V;
+fun levitate_V2 : V2;
+fun levitation_N : N;
+fun levity_N : N;
+fun levy_N : N;
+fun levy_V : V;
+fun levy_V2 : V2;
+fun lewd_A : A;
+fun lewdness_N : N;
+fun lewes_PN : PN;
+fun lewis_PN : PN;
+fun lewisham_PN : PN;
+fun lexical_A : A;
+fun lexicographer_N : N;
+fun lexicography_N : N;
+fun lexicon_N : N;
+fun lexis_N : N;
+fun ley_N : N;
+fun leyland_PN : PN;
+fun liability_N : N;
+fun liable_A : A;
+fun liaise_V : V;
+fun liaison_N : N;
+fun liana_N : N;
+fun liar_N : N;
+fun lib_N : N;
+fun lib_PN : PN;
+fun libation_N : N;
+fun libel_N : N;
+fun libel_V2 : V2;
+fun libellous_A : A;
+fun liberal_A : A;
+fun liberal_N : N;
+fun liberalism_N : N;
+fun liberality_N : N;
+fun liberalization_N : N;
+fun liberalize_V2 : V2;
+fun liberate_V2 : V2;
+fun liberation_N : N;
+fun liberator_N : N;
+fun liberia_PN : PN;
+fun liberian_A : A;
+fun liberian_N : N;
+fun libertine_N : N;
+fun liberty_N : N;
+fun libidinous_A : A;
+fun libido_N : N;
+fun libra_PN : PN;
+fun librarian_N : N;
+fun librarianship_N : N;
+fun library_N : N;
+fun librettist_N : N;
+fun libretto_N : N;
+fun libya_PN : PN;
+fun libyan_A : A;
+fun libyan_N : N;
+fun licence_N : N;
+fun licence_V2 : V2;
+fun license_V2 : V2;
+fun licensee_N : N;
+fun licentiate_N : N;
+fun licentious_A : A;
+fun licentiousness_N : N;
+fun lichee_N : N;
+fun lichen_N : N;
+fun lichfield_PN : PN;
+fun lichgate_N : N;
+fun lichi_N : N;
+fun licit_A : A;
+fun lick_N : N;
+fun lick_V : V;
+fun lick_V2 : V2;
+fun licking_N : N;
+fun lid_N : N;
+fun lidless_A : A;
+fun lido_N : N;
+fun lie_N : N;
+fun lie_V : V;
+fun lie_VS : VS;
+fun lie_abed_N : N;
+fun lie_detector_N : N;
+fun lie_in_N : N;
+fun liechtenstein_PN : PN;
+fun liechtensteiner_A : A;
+fun liechtensteiner_N : N;
+fun lied_N : N;
+fun lieder_singer_N : N;
+fun lief_Adv : Adv;
+fun liege_A : A;
+fun liege_N : N;
+fun liege_PN : PN;
+fun liegeman_N : N;
+fun lien_N : N;
+fun lieu_N : N;
+fun lieutenancy_N : N;
+fun lieutenant_N : N;
+fun life_N : N;
+fun life_buoy_N : N;
+fun life_giving_A : A;
+fun life_jacket_N : N;
+fun life_office_N : N;
+fun life_preserver_N : N;
+fun life_raft_N : N;
+fun life_saver_N : N;
+fun life_size_A : A;
+fun life_sized_A : A;
+fun life_span_N : N;
+fun life_work_N : N;
+fun lifebelt_N : N;
+fun lifeblood_N : N;
+fun lifeboat_N : N;
+fun lifebuoy_N : N;
+fun lifeguard_N : N;
+fun lifeless_A : A;
+fun lifelike_A : A;
+fun lifeline_N : N;
+fun lifelong_A : A;
+fun lifer_N : N;
+fun lifetime_N : N;
+fun lift_N : N;
+fun lift_V : V;
+fun lift_V2 : V2;
+fun lift_off_N : N;
+fun liftman_N : N;
+fun ligament_N : N;
+fun ligature_N : N;
+fun light_A : A;
+fun light_Adv : Adv;
+fun light_N : N;
+fun light_V : V;
+fun light_V2 : V2;
+fun light_armed_A : A;
+fun light_coloured_A : A;
+fun light_fingered_A : A;
+fun light_handed_A : A;
+fun light_headed_A : A;
+fun light_headedness_N : N;
+fun light_hearted_A : A;
+fun light_heartedness_N : N;
+fun light_heavyweight_N : N;
+fun light_minded_A : A;
+fun light_mindedness_N : N;
+fun light_o'_love_N : N;
+fun lighten_V : V;
+fun lighten_V2 : V2;
+fun lighter_N : N;
+fun lighter_V2 : V2;
+fun lighterage_N : N;
+fun lighthouse_N : N;
+fun lighting_up_A : A;
+fun lightness_N : N;
+fun lightning_N : N;
+fun lightning_conductor_N : N;
+fun lightning_rod_N : N;
+fun lightship_N : N;
+fun lightsome_A : A;
+fun lightsomeness_N : N;
+fun lightweight_A : A;
+fun lightweight_N : N;
+fun ligneous_A : A;
+fun lignite_N : N;
+fun likable_A : A;
+fun like_A : A;
+fun like_Adv : Adv;
+fun like_N : N;
+fun like_Prep : Prep ;
+fun like_V2 : V2;
+fun like_V2V : V2V;
+fun like_VV : VV;
+fun like_VS : VS;
+fun like_minded_A : A;
+fun likeable_A : A;
+fun likelihood_N : N;
+fun likely_A : A;
+fun liken_V2 : V2;
+fun likeness_N : N;
+fun likewise_Adv : Adv;
+fun liking_N : N;
+fun lilac_N : N;
+fun lilian_PN : PN;
+fun lille_PN : PN;
+fun lilliputian_A : A;
+fun lilliputian_N : N;
+fun lilt_N : N;
+fun lilt_V : V;
+fun lilt_V2 : V2;
+fun lily_N : N;
+fun lily_PN : PN;
+fun lily_livered_A : A;
+fun lily_white_A : A;
+fun lima_PN : PN;
+fun limb_N : N;
+fun limbed_A : A;
+fun limber_A : A;
+fun limber_V : V;
+fun limber_V2 : V2;
+fun limbless_A : A;
+fun limbo_N : N;
+fun lime_N : N;
+fun lime_V2 : V2;
+fun lime_tree_N : N;
+fun limejuice_N : N;
+fun limekiln_N : N;
+fun limelight_N : N;
+fun limerick_N : N;
+fun limerick_PN : PN;
+fun limestone_N : N;
+fun limey_N : N;
+fun limit_N : N;
+fun limit_V2 : V2;
+fun limitation_N : N;
+fun limitless_A : A;
+fun limn_V2 : V2;
+fun limoges_PN : PN;
+fun limousine_N : N;
+fun limp_A : A;
+fun limp_N : N;
+fun limp_V : V;
+fun limpet_N : N;
+fun limpid_A : A;
+fun limpidity_N : N;
+fun limpness_N : N;
+fun linchpin_N : N;
+fun lincoln_PN : PN;
+fun lincolnshire_PN : PN;
+fun linda_PN : PN;
+fun linden_N : N;
+fun linden_tree_N : N;
+fun line_N : N;
+fun line_V : V;
+fun line_V2 : V2;
+fun line_shooter_N : N;
+fun line_shooting_N : N;
+fun line_up_N : N;
+fun lineage_N : N;
+fun lineal_A : A;
+fun lineament_N : N;
+fun linear_A : A;
+fun lineman_N : N;
+fun linen_N : N;
+fun linen_draper_N : N;
+fun liner_N : N;
+fun liner_train_N : N;
+fun linesman_N : N;
+fun ling_N : N;
+fun lingam_N : N;
+fun linger_V : V;
+fun lingerer_N : N;
+fun lingerie_N : N;
+fun lingering_A : A;
+fun lingo_N : N;
+fun lingua_franca_N : N;
+fun lingual_A : A;
+fun linguist_N : N;
+fun linguistic_A : A;
+fun linguistically_Adv : Adv;
+fun linguistics_N : N;
+fun liniment_N : N;
+fun lining_N : N;
+fun link_N : N;
+fun link_V : V;
+fun link_V2 : V2;
+fun link_up_N : N;
+fun linkage_N : N;
+fun linkboy_N : N;
+fun linkman_N : N;
+fun links_N : N;
+fun linlithgow_PN : PN;
+fun linnet_N : N;
+fun lino_N : N;
+fun linocut_N : N;
+fun linoleum_N : N;
+fun linotype_N : N;
+fun linseed_N : N;
+fun linsey_woolsey_N : N;
+fun lint_N : N;
+fun lintel_N : N;
+fun linwood_PN : PN;
+fun linz_PN : PN;
+fun lion_N : N;
+fun lion_hearted_A : A;
+fun lion_hunter_N : N;
+fun lionel_PN : PN;
+fun lioness_N : N;
+fun lionize_V2 : V2;
+fun lip_N : N;
+fun lip_read_V2 : V2;
+fun lip_reading_N : N;
+fun lipped_A : A;
+fun lipstick_N : N;
+fun liquefaction_N : N;
+fun liquefy_V : V;
+fun liquefy_V2 : V2;
+fun liquescent_A : A;
+fun liqueur_N : N;
+fun liquid_A : A;
+fun liquid_N : N;
+fun liquidate_V : V;
+fun liquidate_V2 : V2;
+fun liquidation_N : N;
+fun liquidator_N : N;
+fun liquidity_N : N;
+fun liquidize_V2 : V2;
+fun liquidizer_N : N;
+fun liquor_N : N;
+fun liquorice_N : N;
+fun lira_N : N;
+fun lisa_PN : PN;
+fun lisbon_PN : PN;
+fun liskeard_PN : PN;
+fun lisle_N : N;
+fun lisp_N : N;
+fun lisp_V : V;
+fun lisp_V2 : V2;
+fun lispingly_Adv : Adv;
+fun lissom_A : A;
+fun lissome_A : A;
+fun lissomness_N : N;
+fun list_N : N;
+fun list_V : V;
+fun list_V2 : V2;
+fun list_V2V : V2V;
+fun list_price_N : N;
+fun listen_V : V;
+fun listener_N : N;
+fun listing_N : N;
+fun listless_A : A;
+fun listlessness_N : N;
+fun lit_V2 : V2;
+fun litany_N : N;
+fun litchee_N : N;
+fun litchi_N : N;
+fun literacy_N : N;
+fun literal_A : A;
+fun literal_N : N;
+fun literary_A : A;
+fun literate_A : A;
+fun literate_N : N;
+fun literature_N : N;
+fun lithe_A : A;
+fun lithograph_N : N;
+fun lithograph_V : V;
+fun lithograph_V2 : V2;
+fun lithographic_A : A;
+fun lithography_N : N;
+fun litigant_N : N;
+fun litigate_V : V;
+fun litigate_V2 : V2;
+fun litigation_N : N;
+fun litigious_A : A;
+fun litmus_N : N;
+fun litmus_paper_N : N;
+fun litotes_N : N;
+fun litre_N : N;
+fun litter_N : N;
+fun litter_V : V;
+fun litter_V2 : V2;
+fun litter_basket_N : N;
+fun litter_lout_N : N;
+fun litterbin_N : N;
+fun little_A : A;
+fun little_Adv : Adv;
+fun little_N : N;
+fun littlehampton_PN : PN;
+fun littleness_N : N;
+fun littoral_A : A;
+fun littoral_N : N;
+fun liturgical_A : A;
+fun liturgy_N : N;
+fun livable_A : A;
+fun live_A : A;
+fun live_Adv : Adv;
+fun live_V : V;
+fun live_V2 : V2;
+fun live_birth_N : N;
+fun liveable_A : A;
+fun livelihood_N : N;
+fun liveliness_N : N;
+fun livelong_A : A;
+fun lively_A : A;
+fun liven_V : V;
+fun liven_V2 : V2;
+fun liver_N : N;
+fun liveried_A : A;
+fun liverish_A : A;
+fun liverpool_PN : PN;
+fun liverpudlian_A : A;
+fun liverpudlian_N : N;
+fun liverwurst_N : N;
+fun livery_A : A;
+fun livery_N : N;
+fun liveryman_N : N;
+fun livestock_N : N;
+fun livid_A : A;
+fun living_A : A;
+fun living_N : N;
+fun living_room_N : N;
+fun living_space_N : N;
+fun livingston_PN : PN;
+fun livorno_PN : PN;
+fun liz_PN : PN;
+fun liza_PN : PN;
+fun lizard_N : N;
+fun lizzy_PN : PN;
+fun ljubljana_PN : PN;
+fun llama_N : N;
+fun llandudno_PN : PN;
+fun llanelli_PN : PN;
+fun llangollen_PN : PN;
+fun llantrisant_PN : PN;
+fun llantwit_major_PN : PN;
+fun llb_N : N;
+fun lloyd's_PN : PN;
+fun load_N : N;
+fun load_V : V;
+fun load_V2 : V2;
+fun load_line_N : N;
+fun load_shedding_N : N;
+fun loaded_A : A;
+fun loader_N : N;
+fun loading_N : N;
+fun loadstar_N : N;
+fun loadstone_N : N;
+fun loaf_N : N;
+fun loaf_V : V;
+fun loaf_V2 : V2;
+fun loaf_sugar_N : N;
+fun loafer_N : N;
+fun loam_N : N;
+fun loamy_A : A;
+fun loan_N : N;
+fun loan_V2 : V2;
+fun loan_collection_N : N;
+fun loan_office_N : N;
+fun loanhead_PN : PN;
+fun loanword_N : N;
+fun loath_A : A;
+fun loathe_V2 : V2;
+fun loathing_N : N;
+fun loathly_A : A;
+fun loathsome_A : A;
+fun lob_N : N;
+fun lob_V : V;
+fun lob_V2 : V2;
+fun lobby_N : N;
+fun lobby_V : V;
+fun lobby_V2 : V2;
+fun lobby_V2V : V2V;
+fun lobbyist_N : N;
+fun lobe_N : N;
+fun lobed_A : A;
+fun lobster_N : N;
+fun lobster_pot_N : N;
+fun loc_cit_PN : PN;
+fun local_A : A;
+fun local_N : N;
+fun locale_N : N;
+fun localism_N : N;
+fun locality_N : N;
+fun localization_N : N;
+fun localize_V2 : V2;
+fun locate_V : V;
+fun locate_V2 : V2;
+fun location_N : N;
+fun loch_N : N;
+fun lochgelly_PN : PN;
+fun lock_N : N;
+fun lock_V : V;
+fun lock_V2 : V2;
+fun lock_gate_N : N;
+fun lock_keeper_N : N;
+fun locker_N : N;
+fun locket_N : N;
+fun lockjaw_N : N;
+fun locknut_N : N;
+fun lockout_N : N;
+fun locksmith_N : N;
+fun lockstitch_N : N;
+fun lockup_A : A;
+fun lockup_N : N;
+fun loco_A : A;
+fun locomotion_N : N;
+fun locomotive_A : A;
+fun locomotive_N : N;
+fun locum_N : N;
+fun locum_tenens_N : N;
+fun locus_N : N;
+fun locus_classicus_N : N;
+fun locust_N : N;
+fun locust_tree_N : N;
+fun locution_N : N;
+fun lode_N : N;
+fun lodestar_N : N;
+fun lodestone_N : N;
+fun lodge_N : N;
+fun lodge_V : V;
+fun lodge_V2 : V2;
+fun lodgement_N : N;
+fun lodger_N : N;
+fun lodging_N : N;
+fun lodging_house_N : N;
+fun lodgment_N : N;
+fun lodz_PN : PN;
+fun loess_N : N;
+fun loft_N : N;
+fun loft_V2 : V2;
+fun loftily_Adv : Adv;
+fun loftiness_N : N;
+fun loftus_PN : PN;
+fun lofty_A : A;
+fun log_N : N;
+fun log_V2 : V2;
+fun log_cabin_N : N;
+fun log_jam_N : N;
+fun log_rolling_N : N;
+fun loganberry_N : N;
+fun logarithm_N : N;
+fun logarithmic_A : A;
+fun logarithmically_Adv : Adv;
+fun logbook_N : N;
+fun loggerheads_N : N;
+fun loggia_N : N;
+fun logging_N : N;
+fun logic_N : N;
+fun logical_A : A;
+fun logicality_N : N;
+fun logician_N : N;
+fun logistics_N : N;
+fun loin_N : N;
+fun loincloth_N : N;
+fun lois_PN : PN;
+fun loiter_V : V;
+fun loiter_V2 : V2;
+fun loiterer_N : N;
+fun loll_V : V;
+fun loll_V2 : V2;
+fun lollipop_N : N;
+fun lolly_N : N;
+fun london_PN : PN;
+fun londonderry_PN : PN;
+fun londoner_N : N;
+fun lone_A : A;
+fun loneliness_N : N;
+fun lonely_A : A;
+fun lonesome_A : A;
+fun long_A : A;
+fun long_Adv : Adv;
+fun long_N : N;
+fun long_V : V;
+fun long_distance_A : A;
+fun long_drawn_out_A : A;
+fun long_eaton_PN : PN;
+fun long_haired_A : A;
+fun long_headed_A : A;
+fun long_lived_A : A;
+fun long_play_A : A;
+fun long_playing_A : A;
+fun long_range_A : A;
+fun long_sighted_A : A;
+fun long_standing_A : A;
+fun long_suffering_A : A;
+fun long_term_A : A;
+fun long_time_A : A;
+fun long_winded_A : A;
+fun long_windedness_N : N;
+fun longboat_N : N;
+fun longbow_N : N;
+fun longer_Adv : Adv;
+fun longest_Adv : Adv;
+fun longevity_N : N;
+fun longhand_N : N;
+fun longing_A : A;
+fun longing_N : N;
+fun longish_A : A;
+fun longitude_N : N;
+fun longitudinal_A : A;
+fun longridge_PN : PN;
+fun longshoreman_N : N;
+fun longton_PN : PN;
+fun longways_Adv : Adv;
+fun longwise_Adv : Adv;
+fun loo_N : N;
+fun loofa_N : N;
+fun loofah_N : N;
+fun look_N : N;
+fun look_V : V;
+fun look_V2 : V2;
+fun look_V2V : V2V;
+fun look_VA : VA;
+fun look_over_N : N;
+fun looker_N : N;
+fun looker_on_N : N;
+fun looking_glass_N : N;
+fun lookout_N : N;
+fun loom_N : N;
+fun loom_V : V;
+fun loon_N : N;
+fun loony_A : A;
+fun loony_N : N;
+fun loonybin_N : N;
+fun loop_N : N;
+fun loop_V : V;
+fun loop_V2 : V2;
+fun loop_line_N : N;
+fun loophole_N : N;
+fun loopy_A : A;
+fun loose_A : A;
+fun loose_V2 : V2;
+fun loose_leaf_A : A;
+fun loosen_V : V;
+fun loosen_V2 : V2;
+fun loot_N : N;
+fun loot_V : V;
+fun loot_V2 : V2;
+fun looter_N : N;
+fun lop_V : V;
+fun lop_V2 : V2;
+fun lop_eared_A : A;
+fun lope_N : N;
+fun lope_V : V;
+fun lopsided_A : A;
+fun loquacious_A : A;
+fun loquaciousness_N : N;
+fun loquacity_N : N;
+fun loquat_N : N;
+fun lord_N : N;
+fun lord_V2 : V2;
+fun lordless_A : A;
+fun lordliness_N : N;
+fun lordly_A : A;
+fun lordship_N : N;
+fun lore_N : N;
+fun lorgnette_N : N;
+fun lorn_A : A;
+fun lorna_PN : PN;
+fun lorry_N : N;
+fun los_angeles_PN : PN;
+fun lose_V : V;
+fun lose_V2 : V2;
+fun loser_N : N;
+fun loss_N : N;
+fun loss_leader_N : N;
+fun lossiemouth_PN : PN;
+fun lot_N : N;
+fun loth_A : A;
+fun lothian_PN : PN;
+fun lotion_N : N;
+fun lottery_N : N;
+fun lotto_N : N;
+fun lotus_N : N;
+fun lotus_eater_N : N;
+fun loud_A : A;
+fun loud_Adv : Adv;
+fun loud_hailer_N : N;
+fun loudness_N : N;
+fun loudspeaker_N : N;
+fun lough_N : N;
+fun loughborough_PN : PN;
+fun louis_PN : PN;
+fun louise_PN : PN;
+fun louisiana_PN : PN;
+fun louisville_PN : PN;
+fun lounge_N : N;
+fun lounge_V : V;
+fun lounge_chair_N : N;
+fun lounge_lizard_N : N;
+fun lounge_suit_N : N;
+fun lounger_N : N;
+fun lour_V : V;
+fun louringly_Adv : Adv;
+fun louse_N : N;
+fun lousy_A : A;
+fun lout_N : N;
+fun louth_PN : PN;
+fun loutish_A : A;
+fun louvered_A : A;
+fun louvre_N : N;
+fun lovable_A : A;
+fun love_N : N;
+fun love_V2 : V2;
+fun love_V2V : V2V;
+fun love_affair_N : N;
+fun love_child_N : N;
+fun love_feast_N : N;
+fun love_knot_N : N;
+fun love_letter_N : N;
+fun love_match_N : N;
+fun love_philtre_N : N;
+fun love_potion_N : N;
+fun love_seat_N : N;
+fun love_song_N : N;
+fun love_story_N : N;
+fun love_token_N : N;
+fun lovebird_N : N;
+fun loveless_A : A;
+fun loveliness_N : N;
+fun lovelorn_A : A;
+fun lovely_A : A;
+fun lovemaking_N : N;
+fun lover_N : N;
+fun loverlike_A : A;
+fun lovesick_A : A;
+fun loving_A : A;
+fun loving_cup_N : N;
+fun loving_kindness_N : N;
+fun low_A : A;
+fun low_Adv : Adv;
+fun low_N : N;
+fun low_V : V;
+fun low_down_A : A;
+fun low_keyed_A : A;
+fun low_pitched_A : A;
+fun low_relief_N : N;
+fun low_spirited_A : A;
+fun lowborn_A : A;
+fun lowbred_A : A;
+fun lowbrow_A : A;
+fun lowbrow_N : N;
+fun lower_Adv : Adv;
+fun lower_V : V;
+fun lower_V2 : V2;
+fun lowermost_A : A;
+fun lowest_Adv : Adv;
+fun lowestoft_PN : PN;
+fun lowlander_N : N;
+fun lowliness_N : N;
+fun lowly_A : A;
+fun lowness_N : N;
+fun loyal_A : A;
+fun loyalist_N : N;
+fun loyalty_N : N;
+fun loyang_PN : PN;
+fun lozenge_N : N;
+fun lp_N : N;
+fun lsd_N : N;
+fun lt_PN : PN;
+fun ltd_PN : PN;
+fun lubber_N : N;
+fun lubberly_A : A;
+fun lubeck_PN : PN;
+fun lubricant_N : N;
+fun lubricate_V2 : V2;
+fun lubrication_N : N;
+fun lucent_A : A;
+fun lucerne_N : N;
+fun lucid_A : A;
+fun lucidity_N : N;
+fun lucifer_N : N;
+fun luck_N : N;
+fun luckily_Adv : Adv;
+fun luckless_A : A;
+fun lucknow_PN : PN;
+fun lucky_A : A;
+fun lucrative_A : A;
+fun lucre_N : N;
+fun lucy_PN : PN;
+fun luddite_N : N;
+fun ludicrous_A : A;
+fun ludlow_PN : PN;
+fun ludo_N : N;
+fun ludwigshafen_PN : PN;
+fun luff_V : V;
+fun luff_V2 : V2;
+fun lug_N : N;
+fun lug_V2 : V2;
+fun luge_N : N;
+fun luggage_N : N;
+fun luggage_carrier_N : N;
+fun luggage_rack_N : N;
+fun luggage_van_N : N;
+fun lugger_N : N;
+fun lugsail_N : N;
+fun lugubrious_A : A;
+fun lugubriousness_N : N;
+fun luke_PN : PN;
+fun lukewarm_A : A;
+fun lukewarmness_N : N;
+fun lull_N : N;
+fun lull_V : V;
+fun lull_V2 : V2;
+fun lullaby_N : N;
+fun lumbago_N : N;
+fun lumbar_A : A;
+fun lumber_N : N;
+fun lumber_V : V;
+fun lumber_V2 : V2;
+fun lumber_mill_N : N;
+fun lumberjack_N : N;
+fun lumberman_N : N;
+fun lumberroom_N : N;
+fun lumberyard_N : N;
+fun luminary_N : N;
+fun luminosity_N : N;
+fun luminous_A : A;
+fun lump_N : N;
+fun lump_V2 : V2;
+fun lumpish_A : A;
+fun lumpy_A : A;
+fun lunacy_N : N;
+fun lunar_A : A;
+fun lunatic_N : N;
+fun lunch_N : N;
+fun lunch_V : V;
+fun lunch_V2 : V2;
+fun luncheon_N : N;
+fun lunchtime_N : N;
+fun lung_N : N;
+fun lung_power_N : N;
+fun lunge_N : N;
+fun lunge_V : V;
+fun lupin_N : N;
+fun lurch_N : N;
+fun lurch_V : V;
+fun lurcher_N : N;
+fun lure_N : N;
+fun lure_V2 : V2;
+fun lurid_A : A;
+fun luridness_N : N;
+fun lurk_V : V;
+fun lurking_place_N : N;
+fun luscious_A : A;
+fun lusciousness_N : N;
+fun lush_A : A;
+fun lush_N : N;
+fun lust_N : N;
+fun lust_V : V;
+fun lustful_A : A;
+fun lustily_Adv : Adv;
+fun lustre_N : N;
+fun lustrous_A : A;
+fun lusty_A : A;
+fun luta_PN : PN;
+fun lutanist_N : N;
+fun lute_N : N;
+fun lutenist_N : N;
+fun lutheran_A : A;
+fun lutheran_N : N;
+fun luton_PN : PN;
+fun luxe_A : A;
+fun luxembourg_PN : PN;
+fun luxemburg_PN : PN;
+fun luxemburger_A : A;
+fun luxemburger_N : N;
+fun luxuriance_N : N;
+fun luxuriant_A : A;
+fun luxuriate_V : V;
+fun luxurious_A : A;
+fun luxury_N : N;
+fun lvov_PN : PN;
+fun lyallpur_PN : PN;
+fun lycee_N : N;
+fun lyceum_N : N;
+fun lychee_N : N;
+fun lychgate_N : N;
+fun lydia_PN : PN;
+fun lydney_PN : PN;
+fun lye_N : N;
+fun lying_in_A : A;
+fun lymington_PN : PN;
+fun lymm_PN : PN;
+fun lymph_N : N;
+fun lymphatic_A : A;
+fun lynch_N : N;
+fun lynch_V2 : V2;
+fun lynchpin_N : N;
+fun lynn_PN : PN;
+fun lynne_PN : PN;
+fun lynx_N : N;
+fun lynx_eyed_A : A;
+fun lyons_PN : PN;
+fun lyre_N : N;
+fun lyre_bird_N : N;
+fun lyric_A : A;
+fun lyric_N : N;
+fun lyrical_A : A;
+fun lyricism_N : N;
+fun lyricist_N : N;
+fun lysol_N : N;
+fun lytham_PN : PN;
+fun lytham_st_annes_PN : PN;
+fun ma'am_N : N;
+fun ma_N : N;
+fun maastricht_PN : PN;
+fun mabel_PN : PN;
+fun mac_N : N;
+fun macabre_A : A;
+fun macadam_N : N;
+fun macadamize_V2 : V2;
+fun macaroni_N : N;
+fun macaroon_N : N;
+fun macaw_N : N;
+fun macclesfield_PN : PN;
+fun mace_N : N;
+fun mace_bearer_N : N;
+fun macedonian_A : A;
+fun macedonian_N : N;
+fun macerate_V : V;
+fun macerate_V2 : V2;
+fun mach_PN : PN;
+fun machete_N : N;
+fun machiavellian_A : A;
+fun machination_N : N;
+fun machine_N : N;
+fun machine_V2 : V2;
+fun machine_gun_N : N;
+fun machine_made_A : A;
+fun machinery_N : N;
+fun machinist_N : N;
+fun machismo_N : N;
+fun mackerel_N : N;
+fun mackintosh_N : N;
+fun macrobiotic_A : A;
+fun macrocosm_N : N;
+fun mad_A : A;
+fun madagascan_A : A;
+fun madagascan_N : N;
+fun madagascar_PN : PN;
+fun madam_N : N;
+fun madame_N : N;
+fun madcap_N : N;
+fun madden_V2 : V2;
+fun madder_N : N;
+fun maddy_PN : PN;
+fun madeira_N : N;
+fun madeleine_PN : PN;
+fun mademoiselle_N : N;
+fun madge_PN : PN;
+fun madhouse_N : N;
+fun madman_N : N;
+fun madness_N : N;
+fun madonna_N : N;
+fun madras_PN : PN;
+fun madrid_PN : PN;
+fun madrigal_N : N;
+fun madurai_PN : PN;
+fun madwoman_N : N;
+fun maecenas_PN : PN;
+fun maelstrom_N : N;
+fun maenad_N : N;
+fun maesteg_PN : PN;
+fun maestro_N : N;
+fun maffick_V : V;
+fun mafia_N : N;
+fun mag_N : N;
+fun magazine_N : N;
+fun magdeburg_PN : PN;
+fun magenta_A : A;
+fun magenta_N : N;
+fun maggie_PN : PN;
+fun maggot_N : N;
+fun maggoty_A : A;
+fun maghull_PN : PN;
+fun magic_A : A;
+fun magic_N : N;
+fun magical_A : A;
+fun magician_N : N;
+fun magisterial_A : A;
+fun magistracy_N : N;
+fun magistrate_N : N;
+fun magnanimity_N : N;
+fun magnanimous_A : A;
+fun magnate_N : N;
+fun magnesia_N : N;
+fun magnesium_N : N;
+fun magnet_N : N;
+fun magnetic_A : A;
+fun magnetically_Adv : Adv;
+fun magnetism_N : N;
+fun magnetization_N : N;
+fun magnetize_V2 : V2;
+fun magneto_N : N;
+fun magnificat_N : N;
+fun magnification_N : N;
+fun magnificence_N : N;
+fun magnificent_A : A;
+fun magnifier_N : N;
+fun magnify_V2 : V2;
+fun magniloquence_N : N;
+fun magniloquent_A : A;
+fun magnitude_N : N;
+fun magnolia_N : N;
+fun magnum_N : N;
+fun magnum_opus_N : N;
+fun magpie_N : N;
+fun magyar_A : A;
+fun magyar_N : N;
+fun maharaja_N : N;
+fun maharajah_N : N;
+fun maharanee_N : N;
+fun mahatma_N : N;
+fun mahjong_N : N;
+fun mahogany_N : N;
+fun mahout_N : N;
+fun maid_N : N;
+fun maiden_A : A;
+fun maiden_N : N;
+fun maidenhair_N : N;
+fun maidenhead_N : N;
+fun maidenhead_PN : PN;
+fun maidenhood_N : N;
+fun maidenlike_A : A;
+fun maidenly_A : A;
+fun maidservant_N : N;
+fun maidstone_PN : PN;
+fun mail_N : N;
+fun mail_V2 : V2;
+fun mail_train_N : N;
+fun mailbag_N : N;
+fun mailboat_N : N;
+fun mailbox_N : N;
+fun mailed_A : A;
+fun mailing_card_N : N;
+fun mailing_list_N : N;
+fun mailman_N : N;
+fun maim_V2 : V2;
+fun main_A : A;
+fun main_N : N;
+fun maine_PN : PN;
+fun mainland_N : N;
+fun mainmast_N : N;
+fun mainspring_N : N;
+fun mainstay_N : N;
+fun mainstream_N : N;
+fun maintain_V : V;
+fun maintain_V2 : V2;
+fun maintain_VS : VS;
+fun maintainable_A : A;
+fun maintenance_N : N;
+fun mainz_PN : PN;
+fun maisonnette_N : N;
+fun maize_N : N;
+fun maj_PN : PN;
+fun majestic_A : A;
+fun majestically_Adv : Adv;
+fun majesty_N : N;
+fun majolica_N : N;
+fun major_A : A;
+fun major_N : N;
+fun major_V : V;
+fun major_domo_N : N;
+fun major_general_N : N;
+fun majority_N : N;
+fun make_N : N;
+fun make_V : V;
+fun make_V2 : V2;
+fun make_V2V : V2V;
+fun make_VA : VA;
+fun make_VV : VV;
+fun make_VS : VS;
+fun make_believe_N : N;
+fun make_up_N : N;
+fun maker_N : N;
+fun makeshift_N : N;
+fun makeweight_N : N;
+fun making_N : N;
+fun malacca_N : N;
+fun malachite_N : N;
+fun maladjusted_A : A;
+fun maladjustment_N : N;
+fun maladroit_A : A;
+fun maladroitness_N : N;
+fun malady_N : N;
+fun malaga_PN : PN;
+fun malaise_N : N;
+fun malapropism_N : N;
+fun malapropos_A : A;
+fun malapropos_Adv : Adv;
+fun malaria_N : N;
+fun malarial_A : A;
+fun malawi_PN : PN;
+fun malawian_A : A;
+fun malawian_N : N;
+fun malay_A : A;
+fun malay_N : N;
+fun malaya_PN : PN;
+fun malayan_A : A;
+fun malayan_N : N;
+fun malaysia_PN : PN;
+fun malaysian_A : A;
+fun malaysian_N : N;
+fun malcolm_PN : PN;
+fun malcontent_A : A;
+fun malcontent_N : N;
+fun maldon_PN : PN;
+fun male_A : A;
+fun male_N : N;
+fun malediction_N : N;
+fun malefactor_N : N;
+fun maleficent_A : A;
+fun malevolence_N : N;
+fun malevolent_A : A;
+fun malfeasance_N : N;
+fun malformation_N : N;
+fun malformed_A : A;
+fun malfunction_N : N;
+fun malfunction_V : V;
+fun mali_PN : PN;
+fun malian_A : A;
+fun malian_N : N;
+fun malice_N : N;
+fun malicious_A : A;
+fun malign_A : A;
+fun malign_V2 : V2;
+fun malignancy_N : N;
+fun malignant_A : A;
+fun malignity_N : N;
+fun malinger_V : V;
+fun malingerer_N : N;
+fun mallard_N : N;
+fun malleability_N : N;
+fun malleable_A : A;
+fun mallet_N : N;
+fun mallow_N : N;
+fun mallow_PN : PN;
+fun malmo_PN : PN;
+fun malmsey_N : N;
+fun malnutrition_N : N;
+fun malodorous_A : A;
+fun malpractice_N : N;
+fun malt_N : N;
+fun malt_V : V;
+fun malt_V2 : V2;
+fun malta_PN : PN;
+fun maltby_PN : PN;
+fun maltese_A : A;
+fun maltese_N : N;
+fun malthusian_A : A;
+fun maltreat_V2 : V2;
+fun maltreatment_N : N;
+fun maltster_N : N;
+fun malvern_PN : PN;
+fun malversation_N : N;
+fun mama_N : N;
+fun mamba_N : N;
+fun mamie_PN : PN;
+fun mamma_N : N;
+fun mammal_N : N;
+fun mammon_N : N;
+fun mammoth_N : N;
+fun mammy_N : N;
+fun man_N : N;
+fun man_V2 : V2;
+fun man_at_arms_N : N;
+fun man_eater_N : N;
+fun man_hour_N : N;
+fun man_of_war_N : N;
+fun man_sized_A : A;
+fun manacle_N : N;
+fun manacle_V2 : V2;
+fun manage_V : V;
+fun manage_V2 : V2;
+fun manage_VV : VV;
+fun manageability_N : N;
+fun manageable_A : A;
+fun management_N : N;
+fun manager_N : N;
+fun manageress_N : N;
+fun managerial_A : A;
+fun manatee_N : N;
+fun manchester_PN : PN;
+fun mancunian_A : A;
+fun mancunian_N : N;
+fun mandarin_N : N;
+fun mandatary_N : N;
+fun mandate_N : N;
+fun mandate_V2 : V2;
+fun mandate_VS : VS;
+fun mandatory_A : A;
+fun mandatory_N : N;
+fun mandible_N : N;
+fun mandolin_N : N;
+fun mandragora_N : N;
+fun mandrake_N : N;
+fun mandrill_N : N;
+fun mandy_PN : PN;
+fun mane_N : N;
+fun maneuver_V : V;
+fun maneuver_V2 : V2;
+fun manful_A : A;
+fun manganese_N : N;
+fun mange_N : N;
+fun mangel_wurzel_N : N;
+fun manger_N : N;
+fun mangily_Adv : Adv;
+fun mangle_N : N;
+fun mangle_V2 : V2;
+fun mango_N : N;
+fun mangosteen_N : N;
+fun mangrove_N : N;
+fun mangy_A : A;
+fun manhandle_V2 : V2;
+fun manhattan_N : N;
+fun manhole_N : N;
+fun manhood_N : N;
+fun mania_N : N;
+fun maniac_N : N;
+fun maniacal_A : A;
+fun manic_depressive_A : A;
+fun manic_depressive_N : N;
+fun manicure_N : N;
+fun manicure_V2 : V2;
+fun manicurist_N : N;
+fun manifest_A : A;
+fun manifest_N : N;
+fun manifest_V2 : V2;
+fun manifestation_N : N;
+fun manifesto_N : N;
+fun manifold_A : A;
+fun manifold_N : N;
+fun manifold_V2 : V2;
+fun manikin_N : N;
+fun manila_PN : PN;
+fun manilla_N : N;
+fun manipulate_V2 : V2;
+fun manipulation_N : N;
+fun manipulative_A : A;
+fun manitoba_PN : PN;
+fun mankind_N : N;
+fun manlike_A : A;
+fun manliness_N : N;
+fun manly_A : A;
+fun manna_N : N;
+fun mannequin_N : N;
+fun manner_N : N;
+fun mannered_A : A;
+fun mannerism_N : N;
+fun mannerly_A : A;
+fun mannheim_PN : PN;
+fun mannish_A : A;
+fun manoeuvrability_N : N;
+fun manoeuvrable_A : A;
+fun manoeuvre_N : N;
+fun manoeuvre_V : V;
+fun manoeuvre_V2 : V2;
+fun manoeuvrer_N : N;
+fun manor_N : N;
+fun manor_house_N : N;
+fun manorial_A : A;
+fun manpower_N : N;
+fun mansard_N : N;
+fun manse_N : N;
+fun manservant_N : N;
+fun mansfield_PN : PN;
+fun mansion_N : N;
+fun manslaughter_N : N;
+fun mantel_N : N;
+fun mantelpiece_N : N;
+fun mantilla_N : N;
+fun mantis_N : N;
+fun mantle_N : N;
+fun mantle_V : V;
+fun mantle_V2 : V2;
+fun mantrap_N : N;
+fun manual_A : A;
+fun manual_N : N;
+fun manufacture_N : N;
+fun manufacture_V2 : V2;
+fun manufacturer_N : N;
+fun manumission_N : N;
+fun manumit_V2 : V2;
+fun manure_N : N;
+fun manure_V2 : V2;
+fun manuscript_N : N;
+fun manx_A : A;
+fun manx_N : N;
+fun many_Det : Det;
+fun many_sided_A : A;
+fun maoism_N : N;
+fun maoist_N : N;
+fun maori_N : N;
+fun map_N : N;
+fun map_V2 : V2;
+fun map_reader_N : N;
+fun maple_N : N;
+fun maple_leaf_N : N;
+fun maquis_N : N;
+fun mar_PN : PN;
+fun mar_V2 : V2;
+fun marabou_N : N;
+fun maracaibo_PN : PN;
+fun maraschino_N : N;
+fun marathon_N : N;
+fun maraud_V : V;
+fun marauder_N : N;
+fun marble_N : N;
+fun marbled_A : A;
+fun marbling_N : N;
+fun march_N : N;
+fun march_PN : PN;
+fun march_V : V;
+fun march_V2 : V2;
+fun marcher_N : N;
+fun marchioness_N : N;
+fun mardi_gras_N : N;
+fun mare_N : N;
+fun margaret_PN : PN;
+fun margarine_N : N;
+fun margate_PN : PN;
+fun marge_N : N;
+fun marge_PN : PN;
+fun margery_PN : PN;
+fun margie_PN : PN;
+fun margin_N : N;
+fun marginal_A : A;
+fun marginalize_V2 : V2;
+fun margrave_N : N;
+fun marguerite_N : N;
+fun maria_PN : PN;
+fun marian_PN : PN;
+fun marie_PN : PN;
+fun marigold_N : N;
+fun marihuana_N : N;
+fun marijuana_N : N;
+fun marilyn_PN : PN;
+fun marimba_N : N;
+fun marina_N : N;
+fun marinade_N : N;
+fun marinade_V2 : V2;
+fun marinate_V2 : V2;
+fun marine_A : A;
+fun marine_N : N;
+fun mariner_N : N;
+fun marion_PN : PN;
+fun marionette_N : N;
+fun marital_A : A;
+fun maritime_A : A;
+fun marjoram_N : N;
+fun marjorie_PN : PN;
+fun mark_N : N;
+fun mark_PN : PN;
+fun mark_V2 : V2;
+fun mark_up_N : N;
+fun marke_VS : VS;
+fun marked_A : A;
+fun marker_N : N;
+fun market_N : N;
+fun market_V : V;
+fun market_V2 : V2;
+fun market_cross_N : N;
+fun market_day_N : N;
+fun market_drayton_PN : PN;
+fun market_garden_N : N;
+fun market_gardening_N : N;
+fun market_harborough_PN : PN;
+fun market_square_N : N;
+fun market_town_N : N;
+fun marketable_A : A;
+fun marketing_N : N;
+fun marketplace_N : N;
+fun marking_N : N;
+fun marking_ink_N : N;
+fun marking_inks_N : N;
+fun marksman_N : N;
+fun marksmanship_N : N;
+fun marl_N : N;
+fun marlborough_PN : PN;
+fun marlene_PN : PN;
+fun marlinespike_N : N;
+fun marlow_PN : PN;
+fun marmalade_N : N;
+fun marmoreal_A : A;
+fun marmoset_N : N;
+fun marmot_N : N;
+fun marocain_N : N;
+fun maroon_A : A;
+fun maroon_N : N;
+fun maroon_V2 : V2;
+fun marple_PN : PN;
+fun marque_N : N;
+fun marquee_N : N;
+fun marquess_N : N;
+fun marquetry_N : N;
+fun marquis_N : N;
+fun marriage_N : N;
+fun marriageability_N : N;
+fun marriageable_A : A;
+fun married_A : A;
+fun marrow_N : N;
+fun marrowbone_N : N;
+fun marry_V : V;
+fun marry_V2 : V2;
+fun mars_PN : PN;
+fun marsala_N : N;
+fun marseillaise_N : N;
+fun marseilles_PN : PN;
+fun marsh_N : N;
+fun marshal_N : N;
+fun marshal_V2 : V2;
+fun marshalling_yard_N : N;
+fun marshmallow_N : N;
+fun marshy_A : A;
+fun marske_PN : PN;
+fun marsupial_A : A;
+fun marsupial_N : N;
+fun mart_N : N;
+fun marten_N : N;
+fun martha_PN : PN;
+fun martial_A : A;
+fun martian_A : A;
+fun martian_N : N;
+fun martin_N : N;
+fun martin_PN : PN;
+fun martinet_N : N;
+fun martini_N : N;
+fun martyr_N : N;
+fun martyr_V2 : V2;
+fun martyrdom_N : N;
+fun marvel_N : N;
+fun marvel_V : V;
+fun marvel_VS : VS;
+fun marvellous_A : A;
+fun marvelous_A : A;
+fun marxism_N : N;
+fun marxist_N : N;
+fun mary_PN : PN;
+fun maryland_PN : PN;
+fun maryport_PN : PN;
+fun marzipan_N : N;
+fun masc_PN : PN;
+fun mascara_N : N;
+fun mascot_N : N;
+fun masculine_A : A;
+fun masculinity_N : N;
+fun maser_N : N;
+fun mash_N : N;
+fun mash_V2 : V2;
+fun masher_N : N;
+fun mask_N : N;
+fun mask_V2 : V2;
+fun masochism_N : N;
+fun masochist_N : N;
+fun masochistic_A : A;
+fun masochistically_Adv : Adv;
+fun mason_N : N;
+fun mason_dixon_PN : PN;
+fun masonic_A : A;
+fun masonry_N : N;
+fun masque_N : N;
+fun masquerade_N : N;
+fun masquerade_V : V;
+fun mass_N : N;
+fun mass_V : V;
+fun mass_V2 : V2;
+fun mass_produce_V2 : V2;
+fun massachusetts_PN : PN;
+fun massacre_N : N;
+fun massacre_V2 : V2;
+fun massage_N : N;
+fun massage_V2 : V2;
+fun masseur_N : N;
+fun masseuse_N : N;
+fun massif_N : N;
+fun massive_A : A;
+fun massiveness_N : N;
+fun massy_A : A;
+fun mast_N : N;
+fun master_N : N;
+fun master_V2 : V2;
+fun master_at_arms_N : N;
+fun master_key_N : N;
+fun masterful_A : A;
+fun masterless_A : A;
+fun masterly_A : A;
+fun mastermind_N : N;
+fun mastermind_V2 : V2;
+fun masterpiece_N : N;
+fun mastership_N : N;
+fun masterstroke_N : N;
+fun mastery_N : N;
+fun masthead_N : N;
+fun masticate_V2 : V2;
+fun mastication_N : N;
+fun mastiff_N : N;
+fun mastodon_N : N;
+fun mastoid_N : N;
+fun mastoiditis_N : N;
+fun masturbate_V : V;
+fun masturbate_V2 : V2;
+fun masturbation_N : N;
+fun mat_A : A;
+fun mat_N : N;
+fun mat_V : V;
+fun mat_V2 : V2;
+fun matador_N : N;
+fun match_N : N;
+fun match_V : V;
+fun match_V2 : V2;
+fun match_point_N : N;
+fun matchbox_N : N;
+fun matchet_N : N;
+fun matchless_A : A;
+fun matchlock_N : N;
+fun matchmaker_N : N;
+fun matchwood_N : N;
+fun mate_1_N : N;
+fun mate_2_N : N;
+fun mate_V : V;
+fun mate_V2 : V2;
+fun material_A : A;
+fun material_N : N;
+fun materialism_N : N;
+fun materialist_N : N;
+fun materialistic_A : A;
+fun materialistically_Adv : Adv;
+fun materialization_N : N;
+fun materialize_V : V;
+fun materialize_V2V : V2V;
+fun maternal_A : A;
+fun maternity_N : N;
+fun matey_A : A;
+fun mathematical_A : A;
+fun mathematician_N : N;
+fun mathematics_N : N;
+fun maths_N : N;
+fun matinee_N : N;
+fun matlock_PN : PN;
+fun matriarch_N : N;
+fun matriarchal_A : A;
+fun matriarchy_N : N;
+fun matric_N : N;
+fun matricide_N : N;
+fun matriculate_V : V;
+fun matriculate_V2 : V2;
+fun matriculation_N : N;
+fun matrimonial_A : A;
+fun matrimony_N : N;
+fun matrix_N : N;
+fun matron_N : N;
+fun matronly_A : A;
+fun matt_A : A;
+fun matt_PN : PN;
+fun matted_A : A;
+fun matter_N : N;
+fun matter_V : V;
+fun matter_of_course_A : A;
+fun matter_of_fact_A : A;
+fun matthew_PN : PN;
+fun matting_N : N;
+fun mattock_N : N;
+fun mattress_N : N;
+fun maturate_V : V;
+fun maturation_N : N;
+fun mature_A : A;
+fun mature_V : V;
+fun mature_V2 : V2;
+fun maturity_N : N;
+fun matutinal_A : A;
+fun maud_PN : PN;
+fun maudie_PN : PN;
+fun maudlin_A : A;
+fun maul_V2 : V2;
+fun maulstick_N : N;
+fun maunder_V : V;
+fun maundy_thursday_N : N;
+fun maundy_thursday_PN : PN;
+fun maureen_PN : PN;
+fun maurice_PN : PN;
+fun mauritania_PN : PN;
+fun mauritanian_A : A;
+fun mauritanian_N : N;
+fun mauritian_A : A;
+fun mauritian_N : N;
+fun mauritius_PN : PN;
+fun mausoleum_N : N;
+fun mauve_A : A;
+fun mauve_N : N;
+fun maverick_N : N;
+fun mavis_N : N;
+fun mavis_PN : PN;
+fun maw_N : N;
+fun mawkish_A : A;
+fun mawkishness_N : N;
+fun max_N : N;
+fun max_PN : PN;
+fun maxim_N : N;
+fun maximal_A : A;
+fun maximization_N : N;
+fun maximize_V2 : V2;
+fun maximum_A : A;
+fun maximum_N : N;
+fun maxine_PN : PN;
+fun may_N : N;
+fun may_PN : PN;
+fun may_VV : VV;
+fun may_beetle_N : N;
+fun may_bug_N : N;
+fun maybe_Adv : Adv;
+fun mayday_N : N;
+fun mayfair_PN : PN;
+fun mayfield_PN : PN;
+fun mayfly_N : N;
+fun mayhem_N : N;
+fun mayo_PN : PN;
+fun mayonnaise_N : N;
+fun mayor_N : N;
+fun mayoral_A : A;
+fun mayoralty_N : N;
+fun mayoress_N : N;
+fun maypole_N : N;
+fun maze_N : N;
+fun mazed_A : A;
+fun mazurka_N : N;
+fun mb_N : N;
+fun mc_N : N;
+fun mcc_N : N;
+fun mccarthyism_N : N;
+fun md_N : N;
+fun mead_N : N;
+fun meadow_N : N;
+fun meagre_A : A;
+fun meagreness_N : N;
+fun meal_N : N;
+fun mealie_N : N;
+fun mealtime_N : N;
+fun mealy_A : A;
+fun mealy_bug_N : N;
+fun mealy_mouthed_A : A;
+fun mean_A : A;
+fun mean_N : N;
+fun mean_V : V;
+fun mean_V2 : V2;
+fun mean_VA : VA;
+fun mean_VV : VV;
+fun mean_VS : VS;
+fun meander_V : V;
+fun meanderingly_Adv : Adv;
+fun meanie_N : N;
+fun meaning_A : A;
+fun meaning_N : N;
+fun meaningful_A : A;
+fun meaningless_A : A;
+fun meanness_N : N;
+fun meantime_Adv : Adv;
+fun meantime_N : N;
+fun meanwhile_Adv : Adv;
+fun meany_N : N;
+fun measles_N : N;
+fun measly_A : A;
+fun measurable_A : A;
+fun measure_N : N;
+fun measure_V : V;
+fun measure_V2 : V2;
+fun measured_A : A;
+fun measureless_A : A;
+fun measurement_N : N;
+fun meat_N : N;
+fun meat_safe_N : N;
+fun meatball_N : N;
+fun meath_PN : PN;
+fun meatless_A : A;
+fun meaty_A : A;
+fun mecca_PN : PN;
+fun mechanic_N : N;
+fun mechanical_A : A;
+fun mechanics_N : N;
+fun mechanism_N : N;
+fun mechanistic_A : A;
+fun mechanistically_Adv : Adv;
+fun mechanization_N : N;
+fun mechanize_V2 : V2;
+fun med_N : N;
+fun medal_N : N;
+fun medalist_N : N;
+fun medallion_N : N;
+fun medallist_N : N;
+fun medan_PN : PN;
+fun meddle_V : V;
+fun meddler_N : N;
+fun meddlesome_A : A;
+fun medellin_PN : PN;
+fun mediaeval_A : A;
+fun medial_A : A;
+fun median_A : A;
+fun median_N : N;
+fun mediate_V : V;
+fun mediate_V2 : V2;
+fun mediation_N : N;
+fun mediator_N : N;
+fun medic_N : N;
+fun medical_A : A;
+fun medical_N : N;
+fun medicament_N : N;
+fun medicare_N : N;
+fun medicate_V2 : V2;
+fun medication_N : N;
+fun medicinal_A : A;
+fun medicine_N : N;
+fun medicine_ball_N : N;
+fun medicine_chest_N : N;
+fun medicine_man_N : N;
+fun medico_N : N;
+fun medieval_A : A;
+fun mediocre_A : A;
+fun mediocrity_N : N;
+fun meditate_V : V;
+fun meditate_V2 : V2;
+fun meditation_N : N;
+fun meditative_A : A;
+fun mediterranean_A : A;
+fun medium_A : A;
+fun medium_N : N;
+fun medium_grade_A : A;
+fun medlar_N : N;
+fun medley_N : N;
+fun meed_N : N;
+fun meek_A : A;
+fun meekness_N : N;
+fun meerschaum_N : N;
+fun meet_A : A;
+fun meet_N : N;
+fun meet_V : V;
+fun meet_V2 : V2;
+fun meet_V2V : V2V;
+fun meeting_N : N;
+fun meeting_house_N : N;
+fun meeting_place_N : N;
+fun meg_PN : PN;
+fun megacycle_N : N;
+fun megadeath_N : N;
+fun megalith_N : N;
+fun megalithic_A : A;
+fun megalomania_N : N;
+fun megalomaniac_N : N;
+fun megaphone_N : N;
+fun megaton_N : N;
+fun megrim_N : N;
+fun meiosis_N : N;
+fun melancholia_N : N;
+fun melancholic_A : A;
+fun melancholy_A : A;
+fun melancholy_N : N;
+fun melange_N : N;
+fun melbourne_PN : PN;
+fun melcombe_PN : PN;
+fun melcombe_regis_PN : PN;
+fun meld_V2 : V2;
+fun melee_N : N;
+fun meliorate_V : V;
+fun meliorate_V2 : V2;
+fun melioration_N : N;
+fun meliorism_N : N;
+fun melksham_PN : PN;
+fun mellifluous_A : A;
+fun mellow_A : A;
+fun mellow_V : V;
+fun mellow_V2 : V2;
+fun mellowness_N : N;
+fun melodic_A : A;
+fun melodious_A : A;
+fun melodiousness_N : N;
+fun melodrama_N : N;
+fun melodramatic_A : A;
+fun melodramatically_Adv : Adv;
+fun melody_N : N;
+fun melon_N : N;
+fun melt_V : V;
+fun melt_V2 : V2;
+fun meltham_PN : PN;
+fun melting_A : A;
+fun melting_point_N : N;
+fun melting_pot_N : N;
+fun melton_mowbray_PN : PN;
+fun member_N : N;
+fun membership_N : N;
+fun membrane_N : N;
+fun membranous_A : A;
+fun memento_N : N;
+fun memo_N : N;
+fun memoir_N : N;
+fun memorable_A : A;
+fun memorandum_N : N;
+fun memorial_N : N;
+fun memorialize_V2 : V2;
+fun memorize_V2 : V2;
+fun memory_N : N;
+fun memphis_PN : PN;
+fun memsahib_N : N;
+fun menace_N : N;
+fun menace_V2 : V2;
+fun menacingly_Adv : Adv;
+fun menage_N : N;
+fun menagerie_N : N;
+fun mend_N : N;
+fun mend_V : V;
+fun mend_V2 : V2;
+fun mendacious_A : A;
+fun mendacity_N : N;
+fun mendelian_A : A;
+fun mender_N : N;
+fun mendicant_A : A;
+fun mendicant_N : N;
+fun mending_N : N;
+fun menial_A : A;
+fun menial_N : N;
+fun meningitis_N : N;
+fun menopause_N : N;
+fun menstrual_A : A;
+fun menstruate_V : V;
+fun menstruation_N : N;
+fun mensurable_A : A;
+fun mensuration_N : N;
+fun mental_A : A;
+fun mentality_N : N;
+fun menthol_N : N;
+fun mentholated_A : A;
+fun mention_N : N;
+fun mention_V : V;
+fun mention_V2 : V2;
+fun mention_VS : VS;
+fun mentioned_A : A;
+fun mentor_N : N;
+fun menu_N : N;
+fun meopham_PN : PN;
+fun mephistophelian_A : A;
+fun mercantile_A : A;
+fun mercator_PN : PN;
+fun mercenary_A : A;
+fun mercenary_N : N;
+fun mercer_N : N;
+fun mercerize_V2 : V2;
+fun merchandise_N : N;
+fun merchant_N : N;
+fun merchantman_N : N;
+fun merciful_A : A;
+fun merciless_A : A;
+fun mercurial_A : A;
+fun mercury_N : N;
+fun mercury_PN : PN;
+fun mercy_N : N;
+fun mere_A : A;
+fun mere_N : N;
+fun meretricious_A : A;
+fun meretriciousness_N : N;
+fun merge_V : V;
+fun merge_V2 : V2;
+fun merger_N : N;
+fun meridian_N : N;
+fun meridional_A : A;
+fun meringue_N : N;
+fun merino_N : N;
+fun merino_sheep_N : N;
+fun merit_N : N;
+fun merit_V2 : V2;
+fun meritocracy_N : N;
+fun meritocratic_A : A;
+fun meritorious_A : A;
+fun mermaid_N : N;
+fun merman_N : N;
+fun merrily_Adv : Adv;
+fun merriment_N : N;
+fun merry_A : A;
+fun merry_go_round_N : N;
+fun merrymaker_N : N;
+fun merrymaking_N : N;
+fun merthyr_tydfil_PN : PN;
+fun merton_PN : PN;
+fun mesalliance_N : N;
+fun mescal_N : N;
+fun mescaline_N : N;
+fun meseems_Adv : Adv;
+fun mesh_N : N;
+fun mesh_V : V;
+fun mesh_V2 : V2;
+fun mesmeric_A : A;
+fun mesmerism_N : N;
+fun mesmerist_N : N;
+fun mesmerize_V2 : V2;
+fun meson_N : N;
+fun mess_N : N;
+fun mess_V : V;
+fun mess_V2 : V2;
+fun mess_jacket_N : N;
+fun mess_up_N : N;
+fun message_N : N;
+fun messenger_N : N;
+fun messiah_N : N;
+fun messianic_A : A;
+fun messily_Adv : Adv;
+fun messina_PN : PN;
+fun messiness_N : N;
+fun messmate_N : N;
+fun messuage_N : N;
+fun messy_A : A;
+fun met_PN : PN;
+fun metabolic_A : A;
+fun metabolism_N : N;
+fun metabolize_V2 : V2;
+fun metacarpal_A : A;
+fun metacarpal_N : N;
+fun metal_N : N;
+fun metal_V2 : V2;
+fun metallic_A : A;
+fun metallurgical_A : A;
+fun metallurgist_N : N;
+fun metallurgy_N : N;
+fun metalwork_N : N;
+fun metalworker_N : N;
+fun metamorphose_V : V;
+fun metamorphose_V2 : V2;
+fun metamorphosis_N : N;
+fun metaphor_N : N;
+fun metaphorical_A : A;
+fun metaphysical_A : A;
+fun metaphysics_N : N;
+fun metatarsal_A : A;
+fun metatarsal_N : N;
+fun mete_V2 : V2;
+fun meteor_N : N;
+fun meteoric_A : A;
+fun meteorite_N : N;
+fun meteorological_A : A;
+fun meteorologist_N : N;
+fun meteorology_N : N;
+fun meter_N : N;
+fun methane_N : N;
+fun methinks_Adv : Adv;
+fun method_N : N;
+fun methodical_A : A;
+fun methodism_N : N;
+fun methodist_A : A;
+fun methodist_N : N;
+fun methodological_A : A;
+fun methodology_N : N;
+fun methought_Adv : Adv;
+fun methuselah_PN : PN;
+fun methyl_N : N;
+fun methylated_A : A;
+fun meticulous_A : A;
+fun meticulousness_N : N;
+fun metier_N : N;
+fun metre_N : N;
+fun metric_A : A;
+fun metrical_A : A;
+fun metrication_N : N;
+fun metricize_V2 : V2;
+fun metro_N : N;
+fun metronome_N : N;
+fun metropolis_N : N;
+fun metropolitan_A : A;
+fun metropolitan_N : N;
+fun mettle_N : N;
+fun mettlesome_A : A;
+fun metz_PN : PN;
+fun mew_N : N;
+fun mew_V : V;
+fun mews_N : N;
+fun mexican_A : A;
+fun mexican_N : N;
+fun mexico_PN : PN;
+fun mexico_city_PN : PN;
+fun mezzanine_A : A;
+fun mezzanine_N : N;
+fun mezzo_Adv : Adv;
+fun mezzo_soprano_N : N;
+fun mezzotint_N : N;
+fun mg_N : N;
+fun mgr_PN : PN;
+fun mi5_PN : PN;
+fun mi6_PN : PN;
+fun mi_N : N;
+fun miami_PN : PN;
+fun miaou_N : N;
+fun miaou_V : V;
+fun miaow_N : N;
+fun miaow_V : V;
+fun miasma_N : N;
+fun mica_N : N;
+fun michael_PN : PN;
+fun michaelmas_N : N;
+fun michaelmas_PN : PN;
+fun michelle_PN : PN;
+fun michigan_PN : PN;
+fun mick_PN : PN;
+fun mickey_N : N;
+fun mickey_PN : PN;
+fun mickle_N : N;
+fun micro_organism_N : N;
+fun microbe_N : N;
+fun microbiology_N : N;
+fun microcosm_N : N;
+fun microdot_N : N;
+fun microelectronics_N : N;
+fun microfiche_N : N;
+fun microfilm_N : N;
+fun microfilm_V2 : V2;
+fun micrometer_N : N;
+fun micron_N : N;
+fun microphone_N : N;
+fun microscope_N : N;
+fun microscopic_A : A;
+fun microscopical_A : A;
+fun microscopy_N : N;
+fun microwave_N : N;
+fun mid_A : A;
+fun mid_off_N : N;
+fun mid_on_N : N;
+fun midday_N : N;
+fun midden_N : N;
+fun middle_N : N;
+fun middle_aged_A : A;
+fun middle_class_A : A;
+fun middle_distance_A : A;
+fun middle_of_the_road_A : A;
+fun middleman_N : N;
+fun middlesex_PN : PN;
+fun middleton_PN : PN;
+fun middleweight_A : A;
+fun middleweight_N : N;
+fun middlewich_PN : PN;
+fun middling_A : A;
+fun middling_Adv : Adv;
+fun middling_N : N;
+fun middy_N : N;
+fun midfield_N : N;
+fun midge_N : N;
+fun midget_N : N;
+fun midinette_N : N;
+fun midland_N : N;
+fun midlands_PN : PN;
+fun midmost_A : A;
+fun midmost_Adv : Adv;
+fun midnight_N : N;
+fun midriff_N : N;
+fun midshipman_N : N;
+fun midships_Adv : Adv;
+fun midst_N : N;
+fun midstream_N : N;
+fun midsummer_N : N;
+fun midway_A : A;
+fun midway_Adv : Adv;
+fun midweek_A : A;
+fun midweek_Adv : Adv;
+fun midwest_PN : PN;
+fun midwestern_A : A;
+fun midwife_N : N;
+fun midwifery_N : N;
+fun mien_N : N;
+fun miff_V2 : V2;
+fun might_N : N;
+fun might_have_been_N : N;
+fun mightily_Adv : Adv;
+fun mighty_A : A;
+fun mighty_Adv : Adv;
+fun mignonette_N : N;
+fun migraine_N : N;
+fun migrant_N : N;
+fun migrate_V : V;
+fun migration_N : N;
+fun migratory_A : A;
+fun mikado_N : N;
+fun mike_N : N;
+fun mike_PN : PN;
+fun milady_N : N;
+fun milage_N : N;
+fun milan_PN : PN;
+fun milano_PN : PN;
+fun milch_A : A;
+fun mild_A : A;
+fun mildenhall_PN : PN;
+fun mildew_N : N;
+fun mildew_V : V;
+fun mildew_V2 : V2;
+fun mildness_N : N;
+fun mildred_PN : PN;
+fun mile_N : N;
+fun mileage_N : N;
+fun mileometer_N : N;
+fun miler_N : N;
+fun miles_PN : PN;
+fun milestone_N : N;
+fun milford_PN : PN;
+fun milford_haven_PN : PN;
+fun milieu_N : N;
+fun militancy_N : N;
+fun militant_A : A;
+fun militant_N : N;
+fun militarism_N : N;
+fun militarist_N : N;
+fun militaristic_A : A;
+fun military_A : A;
+fun military_N : N;
+fun militate_V : V;
+fun militia_N : N;
+fun militiaman_N : N;
+fun milk_N : N;
+fun milk_V : V;
+fun milk_V2 : V2;
+fun milk_churn_N : N;
+fun milk_powder_N : N;
+fun milk_shake_N : N;
+fun milk_tooth_N : N;
+fun milk_white_A : A;
+fun milkbar_N : N;
+fun milking_machine_N : N;
+fun milkmaid_N : N;
+fun milkman_N : N;
+fun milkshake_N : N;
+fun milksop_N : N;
+fun milkweed_N : N;
+fun milky_A : A;
+fun mill_N : N;
+fun mill_V : V;
+fun mill_V2 : V2;
+fun mill_dam_N : N;
+fun mill_girl_N : N;
+fun mill_hand_N : N;
+fun millboard_N : N;
+fun millenarian_N : N;
+fun millennial_A : A;
+fun millennium_N : N;
+fun millepede_N : N;
+fun miller_N : N;
+fun millet_N : N;
+fun milliard_N : N;
+fun millibar_N : N;
+fun millicent_PN : PN;
+fun millie_PN : PN;
+fun milligram_N : N;
+fun millimetre_N : N;
+fun milliner_N : N;
+fun millinery_N : N;
+fun millionaire_N : N;
+fun millionairess_N : N;
+fun millionfold_Adv : Adv;
+fun millionth_A : A;
+fun millionth_N : N;
+fun millipede_N : N;
+fun millom_PN : PN;
+fun millpond_N : N;
+fun millrace_N : N;
+fun millstone_N : N;
+fun millwheel_N : N;
+fun millwright_N : N;
+fun milly_PN : PN;
+fun milngavie_PN : PN;
+fun milnrow_PN : PN;
+fun milometer_N : N;
+fun milord_N : N;
+fun milt_N : N;
+fun milton_keynes_PN : PN;
+fun milwaukee_PN : PN;
+fun mime_N : N;
+fun mime_V : V;
+fun mime_V2 : V2;
+fun mimeograph_N : N;
+fun mimeograph_V2 : V2;
+fun mimetic_A : A;
+fun mimic_A : A;
+fun mimic_N : N;
+fun mimic_V2 : V2;
+fun mimicry_N : N;
+fun mimosa_N : N;
+fun min_N : N;
+fun minaret_N : N;
+fun minatory_A : A;
+fun mince_N : N;
+fun mince_V : V;
+fun mince_V2 : V2;
+fun mince_pie_N : N;
+fun mincemeat_N : N;
+fun mincer_N : N;
+fun mincing_A : A;
+fun mind_N : N;
+fun mind_V : V;
+fun mind_V2 : V2;
+fun mind_VS : VS;
+fun mind_bending_A : A;
+fun mind_blowing_A : A;
+fun mind_boggling_A : A;
+fun mind_reader_N : N;
+fun minded_A : A;
+fun minder_N : N;
+fun mindful_A : A;
+fun mindfulness_N : N;
+fun mindless_A : A;
+fun mindlessness_N : N;
+fun mine_A : A;
+fun mine_N : N;
+fun mine_V : V;
+fun mine_V2 : V2;
+fun mine_detector_N : N;
+fun mine_disposal_N : N;
+fun minefield_N : N;
+fun minehead_PN : PN;
+fun minelayer_N : N;
+fun minelaying_N : N;
+fun miner_N : N;
+fun mineral_A : A;
+fun mineral_N : N;
+fun mineralogist_N : N;
+fun mineralogy_N : N;
+fun minestrone_N : N;
+fun minesweeper_N : N;
+fun minesweeping_N : N;
+fun mineworker_N : N;
+fun mingle_V : V;
+fun mingle_V2 : V2;
+fun mingy_A : A;
+fun miniature_N : N;
+fun miniaturist_N : N;
+fun miniaturization_N : N;
+fun miniaturize_V2 : V2;
+fun minim_N : N;
+fun minimal_A : A;
+fun minimize_V2 : V2;
+fun minimum_A : A;
+fun minimum_N : N;
+fun mining_N : N;
+fun minion_N : N;
+fun minister_N : N;
+fun minister_V : V;
+fun ministerial_A : A;
+fun ministrant_A : A;
+fun ministrant_N : N;
+fun ministration_N : N;
+fun ministry_N : N;
+fun miniver_N : N;
+fun mink_N : N;
+fun minneapolis_PN : PN;
+fun minnesota_PN : PN;
+fun minnow_N : N;
+fun minor_A : A;
+fun minor_N : N;
+fun minority_N : N;
+fun minotaur_N : N;
+fun minsk_PN : PN;
+fun minster_N : N;
+fun minster_in_sheppey_PN : PN;
+fun minstrel_N : N;
+fun minstrelsy_N : N;
+fun mint_N : N;
+fun mint_V2 : V2;
+fun minuet_N : N;
+fun minus_A : A;
+fun minus_N : N;
+fun minus_Prep : Prep ;
+fun minuscule_A : A;
+fun minute_A : A;
+fun minute_N : N;
+fun minute_V2 : V2;
+fun minute_book_N : N;
+fun minute_gun_N : N;
+fun minute_hand_N : N;
+fun minuteman_N : N;
+fun minuteness_N : N;
+fun minx_N : N;
+fun miracle_N : N;
+fun miraculous_A : A;
+fun mirage_N : N;
+fun miranda_PN : PN;
+fun mire_N : N;
+fun mire_V : V;
+fun mire_V2 : V2;
+fun miriam_PN : PN;
+fun mirror_N : N;
+fun mirror_V2 : V2;
+fun mirth_N : N;
+fun mirthful_A : A;
+fun mirthless_A : A;
+fun miry_A : A;
+fun misadventure_N : N;
+fun misadvise_V2 : V2;
+fun misalliance_N : N;
+fun misanthrope_N : N;
+fun misanthropic_A : A;
+fun misanthropy_N : N;
+fun misapplication_N : N;
+fun misapply_V2 : V2;
+fun misapprehend_V2 : V2;
+fun misapprehension_N : N;
+fun misappropriate_V2 : V2;
+fun misappropriation_N : N;
+fun misbegotten_A : A;
+fun misbehave_V : V;
+fun misbehave_V2 : V2;
+fun misbehaviour_N : N;
+fun misc_PN : PN;
+fun miscalculate_V : V;
+fun miscalculate_V2 : V2;
+fun miscalculation_N : N;
+fun miscall_V2 : V2;
+fun miscarriage_N : N;
+fun miscarry_V2 : V2;
+fun miscast_V2 : V2;
+fun miscegenation_N : N;
+fun miscellaneous_A : A;
+fun miscellany_N : N;
+fun mischance_N : N;
+fun mischief_N : N;
+fun mischief_maker_N : N;
+fun mischief_making_N : N;
+fun mischievous_A : A;
+fun mischievousness_N : N;
+fun misconceive_V : V;
+fun misconceive_V2 : V2;
+fun misconception_N : N;
+fun misconduct_N : N;
+fun misconduct_V2 : V2;
+fun misconstruction_N : N;
+fun misconstrue_V2 : V2;
+fun miscount_N : N;
+fun miscount_V : V;
+fun miscount_V2 : V2;
+fun miscreant_N : N;
+fun misdate_V2 : V2;
+fun misdeal_N : N;
+fun misdeal_V : V;
+fun misdeal_V2 : V2;
+fun misdeed_N : N;
+fun misdemeanour_N : N;
+fun misdirect_V2 : V2;
+fun misdirection_N : N;
+fun misdoing_N : N;
+fun mise_en_scene_N : N;
+fun miser_N : N;
+fun miserable_A : A;
+fun miserliness_N : N;
+fun miserly_A : A;
+fun misery_N : N;
+fun misfire_N : N;
+fun misfire_V : V;
+fun misfit_N : N;
+fun misfortune_N : N;
+fun misgive_V2 : V2;
+fun misgiving_N : N;
+fun misgovern_V2 : V2;
+fun misgovernment_N : N;
+fun misguide_V2 : V2;
+fun misguided_A : A;
+fun mishandle_V2 : V2;
+fun mishap_N : N;
+fun mishmash_N : N;
+fun misinform_V2 : V2;
+fun misinformation_N : N;
+fun misinterpret_V2 : V2;
+fun misinterpretation_N : N;
+fun misjudge_V : V;
+fun misjudge_V2 : V2;
+fun mislay_V2 : V2;
+fun mislead_V2 : V2;
+fun mismanage_V2 : V2;
+fun mismanagement_N : N;
+fun misname_V2 : V2;
+fun misnomer_N : N;
+fun misogynist_N : N;
+fun misplace_V2 : V2;
+fun misprint_N : N;
+fun misprint_V2 : V2;
+fun mispronounce_V2 : V2;
+fun mispronunciation_N : N;
+fun misquotation_N : N;
+fun misquote_V2 : V2;
+fun misread_V2 : V2;
+fun misrepresent_V2 : V2;
+fun misrepresentation_N : N;
+fun misrule_N : N;
+fun miss_N : N;
+fun miss_V : V;
+fun miss_V2 : V2;
+fun missal_N : N;
+fun misshapen_A : A;
+fun missile_N : N;
+fun missing_A : A;
+fun mission_N : N;
+fun missionary_N : N;
+fun missis_N : N;
+fun mississippi_PN : PN;
+fun missive_N : N;
+fun missouri_PN : PN;
+fun misspell_V2 : V2;
+fun misspelling_N : N;
+fun misspend_V2 : V2;
+fun misstate_V2 : V2;
+fun misstatement_N : N;
+fun missus_N : N;
+fun missy_N : N;
+fun mist_N : N;
+fun mist_V : V;
+fun mist_V2 : V2;
+fun mistake_N : N;
+fun mistake_V : V;
+fun mistake_V2 : V2;
+fun mistaken_A : A;
+fun mister_N : N;
+fun mistily_Adv : Adv;
+fun mistime_V2 : V2;
+fun mistiness_N : N;
+fun mistletoe_N : N;
+fun mistral_N : N;
+fun mistranslate_V2 : V2;
+fun mistranslation_N : N;
+fun mistreat_V2 : V2;
+fun mistress_N : N;
+fun mistrial_N : N;
+fun mistrust_N : N;
+fun mistrust_V2 : V2;
+fun mistrustful_A : A;
+fun misty_A : A;
+fun misunderstand_V2 : V2;
+fun misunderstanding_N : N;
+fun misuse_N : N;
+fun misuse_V2 : V2;
+fun mite_N : N;
+fun mitigate_V2 : V2;
+fun mitigation_N : N;
+fun mitre_N : N;
+fun mitre_joint_N : N;
+fun mitt_N : N;
+fun mitten_N : N;
+fun mix_N : N;
+fun mix_V : V;
+fun mix_V2 : V2;
+fun mix_up_N : N;
+fun mixed_A : A;
+fun mixed_up_A : A;
+fun mixer_N : N;
+fun mixture_N : N;
+fun mizen_N : N;
+fun mizzen_N : N;
+fun mizzen_mast_N : N;
+fun mizzle_V : V;
+fun ml_N : N;
+fun mlle_PN : PN;
+fun mm_N : N;
+fun mme_PN : PN;
+fun mnemonic_A : A;
+fun mnemonics_N : N;
+fun mo_N : N;
+fun mo_PN : PN;
+fun moan_N : N;
+fun moan_V : V;
+fun moan_V2 : V2;
+fun moan_VS : VS;
+fun moat_N : N;
+fun moated_A : A;
+fun mob_N : N;
+fun mob_V2 : V2;
+fun mobcap_N : N;
+fun mobile_A : A;
+fun mobile_N : N;
+fun mobility_N : N;
+fun mobilization_N : N;
+fun mobilize_V : V;
+fun mobilize_V2 : V2;
+fun mobster_N : N;
+fun moccasin_N : N;
+fun mocha_N : N;
+fun mock_A : A;
+fun mock_N : N;
+fun mock_V : V;
+fun mock_V2 : V2;
+fun mock_up_N : N;
+fun mocker_N : N;
+fun mockery_N : N;
+fun mockingly_Adv : Adv;
+fun mod_A : A;
+fun mod_N : N;
+fun mod_cons_N : N;
+fun modal_A : A;
+fun modality_N : N;
+fun mode_N : N;
+fun model_N : N;
+fun model_V : V;
+fun model_V2 : V2;
+fun modeler_N : N;
+fun modeller_N : N;
+fun modelling_N : N;
+fun modena_PN : PN;
+fun moderate_A : A;
+fun moderate_N : N;
+fun moderate_V : V;
+fun moderate_V2 : V2;
+fun moderation_N : N;
+fun moderator_N : N;
+fun modern_A : A;
+fun modern_N : N;
+fun modernism_N : N;
+fun modernist_N : N;
+fun modernistic_A : A;
+fun modernity_N : N;
+fun modernization_N : N;
+fun modernize_V2 : V2;
+fun modest_A : A;
+fun modesty_N : N;
+fun modicum_N : N;
+fun modification_N : N;
+fun modifier_N : N;
+fun modify_V2 : V2;
+fun modish_A : A;
+fun modiste_N : N;
+fun modular_A : A;
+fun modulate_V : V;
+fun modulate_V2 : V2;
+fun modulation_N : N;
+fun module_N : N;
+fun modus_operandi_N : N;
+fun modus_vivendi_N : N;
+fun mogul_N : N;
+fun mohair_N : N;
+fun mohammedan_N : N;
+fun moiety_N : N;
+fun moil_V : V;
+fun moira_PN : PN;
+fun moist_A : A;
+fun moisten_V : V;
+fun moisten_V2 : V2;
+fun moisture_N : N;
+fun moke_N : N;
+fun molar_A : A;
+fun molar_N : N;
+fun molasses_N : N;
+fun mold_PN : PN;
+fun moldy_A : A;
+fun mole_N : N;
+fun molecular_A : A;
+fun molecule_N : N;
+fun molehill_N : N;
+fun moleskin_N : N;
+fun molest_V2 : V2;
+fun molestation_N : N;
+fun moll_N : N;
+fun mollification_N : N;
+fun mollify_V2 : V2;
+fun mollusc_N : N;
+fun molly_PN : PN;
+fun mollycoddle_N : N;
+fun mollycoddle_V2 : V2;
+fun moloch_PN : PN;
+fun molto_Adv : Adv;
+fun molybdenum_N : N;
+fun moment_N : N;
+fun momentary_A : A;
+fun momentous_A : A;
+fun momentousness_N : N;
+fun momentum_N : N;
+fun mon_PN : PN;
+fun monaco_PN : PN;
+fun monaghan_PN : PN;
+fun monarch_N : N;
+fun monarchic_A : A;
+fun monarchism_N : N;
+fun monarchist_N : N;
+fun monarchy_N : N;
+fun monastery_N : N;
+fun monastic_A : A;
+fun monasticism_N : N;
+fun monaural_A : A;
+fun monchengladbach_PN : PN;
+fun monday_N : N;
+fun monday_PN : PN;
+fun monegasque_A : A;
+fun monegasque_N : N;
+fun monetary_A : A;
+fun monetize_V2 : V2;
+fun money_N : N;
+fun money_grubber_N : N;
+fun money_order_N : N;
+fun money_spinner_N : N;
+fun moneybox_N : N;
+fun moneychanger_N : N;
+fun moneyed_A : A;
+fun moneylender_N : N;
+fun moneyless_A : A;
+fun monger_N : N;
+fun mongol_A : A;
+fun mongol_N : N;
+fun mongolia_PN : PN;
+fun mongolian_A : A;
+fun mongolian_N : N;
+fun mongolism_N : N;
+fun mongoose_N : N;
+fun mongrel_A : A;
+fun mongrel_N : N;
+fun monica_PN : PN;
+fun monifieth_PN : PN;
+fun monitor_N : N;
+fun monitor_V : V;
+fun monitor_V2 : V2;
+fun monk_N : N;
+fun monkey_N : N;
+fun monkey_V : V;
+fun monkey_jacket_N : N;
+fun monkey_nut_N : N;
+fun monkey_puzzle_N : N;
+fun monkey_wrench_N : N;
+fun monkish_A : A;
+fun monmouth_PN : PN;
+fun mono_A : A;
+fun monochrome_A : A;
+fun monochrome_N : N;
+fun monocle_N : N;
+fun monocled_A : A;
+fun monogamist_N : N;
+fun monogamous_A : A;
+fun monogamy_N : N;
+fun monogram_N : N;
+fun monograph_N : N;
+fun monolith_N : N;
+fun monolithic_A : A;
+fun monologue_N : N;
+fun monomania_N : N;
+fun monomaniac_N : N;
+fun monoplane_N : N;
+fun monopolist_N : N;
+fun monopolistic_A : A;
+fun monopolization_N : N;
+fun monopolize_V2 : V2;
+fun monopoly_N : N;
+fun monorail_N : N;
+fun monosyllabic_A : A;
+fun monosyllable_N : N;
+fun monotheism_N : N;
+fun monotheist_N : N;
+fun monotheistic_A : A;
+fun monotone_N : N;
+fun monotonous_A : A;
+fun monotony_N : N;
+fun monotype_N : N;
+fun monoxide_N : N;
+fun monsieur_N : N;
+fun monsignor_N : N;
+fun monsoon_N : N;
+fun monster_N : N;
+fun monstrance_N : N;
+fun monstrosity_N : N;
+fun monstrous_A : A;
+fun montage_N : N;
+fun montana_PN : PN;
+fun monterrey_PN : PN;
+fun montevideo_PN : PN;
+fun month_N : N;
+fun monthly_A : A;
+fun monthly_Adv : Adv;
+fun monthly_N : N;
+fun montreal_PN : PN;
+fun montrose_PN : PN;
+fun montserrat_PN : PN;
+fun montserratian_A : A;
+fun montserratian_N : N;
+fun monument_N : N;
+fun monumental_A : A;
+fun monza_PN : PN;
+fun moo_N : N;
+fun moo_V : V;
+fun moo_cow_N : N;
+fun mooch_V : V;
+fun mood_N : N;
+fun moodily_Adv : Adv;
+fun moodiness_N : N;
+fun moody_A : A;
+fun moon_N : N;
+fun moon_V : V;
+fun moon_V2 : V2;
+fun moonbeam_N : N;
+fun moonflower_N : N;
+fun moonless_A : A;
+fun moonlight_N : N;
+fun moonlit_A : A;
+fun moonshine_N : N;
+fun moonstone_N : N;
+fun moonstruck_A : A;
+fun moony_A : A;
+fun moor_N : N;
+fun moor_V2 : V2;
+fun moorcock_N : N;
+fun moorfowl_N : N;
+fun moorgame_N : N;
+fun moorhen_N : N;
+fun mooring_mast_N : N;
+fun moorish_A : A;
+fun moorland_N : N;
+fun moose_N : N;
+fun moot_A : A;
+fun moot_V2 : V2;
+fun mop_N : N;
+fun mop_V : V;
+fun mop_V2 : V2;
+fun mope_N : N;
+fun mope_V : V;
+fun moped_N : N;
+fun moquette_N : N;
+fun moraine_N : N;
+fun moral_A : A;
+fun moral_N : N;
+fun morale_N : N;
+fun moralist_N : N;
+fun moralistic_A : A;
+fun morality_N : N;
+fun moralize_V : V;
+fun moralize_V2 : V2;
+fun morass_N : N;
+fun moratorium_N : N;
+fun morbid_A : A;
+fun morbidity_N : N;
+fun morbidness_N : N;
+fun mordant_A : A;
+fun more_Adv : Adv;
+fun more_Det : Det;
+fun more_N : N;
+fun morecambe_PN : PN;
+fun morello_N : N;
+fun moreover_Adv : Adv;
+fun moresque_A : A;
+fun morganatic_A : A;
+fun morgue_N : N;
+fun moribund_A : A;
+fun morley_PN : PN;
+fun mormon_A : A;
+fun mormon_N : N;
+fun mormonism_N : N;
+fun morn_N : N;
+fun morning_N : N;
+fun morning_glory_N : N;
+fun morning_room_N : N;
+fun moroccan_A : A;
+fun moroccan_N : N;
+fun morocco_N : N;
+fun morocco_PN : PN;
+fun moron_N : N;
+fun moronic_A : A;
+fun morose_A : A;
+fun moroseness_N : N;
+fun morpeth_PN : PN;
+fun morpheme_N : N;
+fun morphemic_A : A;
+fun morpheus_PN : PN;
+fun morphia_N : N;
+fun morphine_N : N;
+fun morphological_A : A;
+fun morphology_N : N;
+fun morris_dance_N : N;
+fun morrow_N : N;
+fun morse_N : N;
+fun morsel_N : N;
+fun mortal_A : A;
+fun mortal_N : N;
+fun mortality_N : N;
+fun mortar_N : N;
+fun mortar_V2 : V2;
+fun mortarboard_N : N;
+fun mortgage_N : N;
+fun mortgage_V2 : V2;
+fun mortgagee_N : N;
+fun mortgagor_N : N;
+fun mortice_N : N;
+fun mortice_V2 : V2;
+fun mortician_N : N;
+fun mortification_N : N;
+fun mortify_V : V;
+fun mortify_V2 : V2;
+fun mortise_N : N;
+fun mortise_V2 : V2;
+fun mortuary_N : N;
+fun mosaic_A : A;
+fun mosaic_N : N;
+fun moscow_PN : PN;
+fun moselle_N : N;
+fun mosey_V : V;
+fun moslem_A : A;
+fun moslem_N : N;
+fun mosque_N : N;
+fun mosquito_N : N;
+fun mosquito_craft_N : N;
+fun mosquito_net_N : N;
+fun moss_N : N;
+fun moss_grown_A : A;
+fun mossley_PN : PN;
+fun mossy_A : A;
+fun mostly_Adv : Adv;
+fun mote_N : N;
+fun motel_N : N;
+fun moth_N : N;
+fun moth_eaten_A : A;
+fun mothball_N : N;
+fun mother_N : N;
+fun mother_V2 : V2;
+fun mother_in_law_N : N;
+fun mother_of_pearl_N : N;
+fun motherhood_N : N;
+fun motherland_N : N;
+fun motherless_A : A;
+fun motherlike_A : A;
+fun motherliness_N : N;
+fun motherly_A : A;
+fun motherwell_PN : PN;
+fun mothproof_A : A;
+fun mothproof_V2 : V2;
+fun motif_N : N;
+fun motion_N : N;
+fun motion_V : V;
+fun motion_V2 : V2;
+fun motionless_A : A;
+fun motivate_V2 : V2;
+fun motivate_V2V : V2V;
+fun motivation_N : N;
+fun motive_A : A;
+fun motive_N : N;
+fun motiveless_A : A;
+fun motley_A : A;
+fun motley_N : N;
+fun motor_N : N;
+fun motor_V : V;
+fun motor_assisted_A : A;
+fun motorbike_N : N;
+fun motorboat_N : N;
+fun motorcade_N : N;
+fun motorcar_N : N;
+fun motorcoach_N : N;
+fun motorcycle_N : N;
+fun motorist_N : N;
+fun motorize_V2 : V2;
+fun motorman_N : N;
+fun motorway_N : N;
+fun mottle_V2 : V2;
+fun motto_N : N;
+fun moujik_N : N;
+fun mould_N : N;
+fun mould_V : V;
+fun mould_V2 : V2;
+fun moulder_V : V;
+fun moulding_N : N;
+fun mouldy_A : A;
+fun moult_N : N;
+fun moult_V : V;
+fun moult_V2 : V2;
+fun mound_N : N;
+fun mount_N : N;
+fun mount_V : V;
+fun mount_V2 : V2;
+fun mount_VS : VS;
+fun mountain_N : N;
+fun mountain_ash_PN : PN;
+fun mountaineer_N : N;
+fun mountaineering_N : N;
+fun mountainous_A : A;
+fun mountebank_N : N;
+fun mountie_N : N;
+fun mourn_V : V;
+fun mourn_V2 : V2;
+fun mourner_N : N;
+fun mournful_A : A;
+fun mourning_N : N;
+fun mourning_band_N : N;
+fun mourning_ring_N : N;
+fun mouse_N : N;
+fun mouse_V : V;
+fun mouser_N : N;
+fun mousetrap_N : N;
+fun mousse_N : N;
+fun moustache_N : N;
+fun mousy_A : A;
+fun mouth_N : N;
+fun mouth_V : V;
+fun mouth_V2 : V2;
+fun mouth_organ_N : N;
+fun mouth_watering_A : A;
+fun mouthful_N : N;
+fun mouthpiece_N : N;
+fun movable_A : A;
+fun move_N : N;
+fun move_V : V;
+fun move_V2 : V2;
+fun move_V2V : V2V;
+fun movement_N : N;
+fun mover_N : N;
+fun movie_N : N;
+fun mow_N : N;
+fun mow_V : V;
+fun mow_V2 : V2;
+fun mower_N : N;
+fun mozambican_A : A;
+fun mozambican_N : N;
+fun mozambique_PN : PN;
+fun mp_N : N;
+fun mpg_N : N;
+fun mph_N : N;
+fun mr_PN : PN;
+fun mrs_PN : PN;
+fun ms_N : N;
+fun ms_PN : PN;
+fun msc_N : N;
+fun mt_PN : PN;
+fun much_Det : Det;
+fun much_N : N;
+fun muchness_N : N;
+fun mucilage_N : N;
+fun muck_N : N;
+fun muck_V : V;
+fun muck_V2 : V2;
+fun muck_heap_N : N;
+fun muckle_N : N;
+fun muckraker_N : N;
+fun muckraking_N : N;
+fun mucky_A : A;
+fun mucous_A : A;
+fun mucus_N : N;
+fun mud_N : N;
+fun mud_V2 : V2;
+fun mud_bath_N : N;
+fun muddle_N : N;
+fun muddle_V : V;
+fun muddle_V2 : V2;
+fun muddle_headed_A : A;
+fun muddy_A : A;
+fun muddy_V2 : V2;
+fun mudguard_N : N;
+fun mudslinger_N : N;
+fun muesli_N : N;
+fun muezzin_N : N;
+fun muff_N : N;
+fun muff_V2 : V2;
+fun muffin_N : N;
+fun muffin_man_N : N;
+fun muffle_V2 : V2;
+fun muffler_N : N;
+fun mufti_N : N;
+fun mug_N : N;
+fun mug_V2 : V2;
+fun mugger_N : N;
+fun mugginess_N : N;
+fun mugging_N : N;
+fun muggins_N : N;
+fun muggy_A : A;
+fun mugwump_N : N;
+fun muhammad_PN : PN;
+fun muhammadan_A : A;
+fun muhammadan_N : N;
+fun muhammadanism_N : N;
+fun mukden_PN : PN;
+fun mulatto_N : N;
+fun mulberry_N : N;
+fun mulch_N : N;
+fun mulch_V2 : V2;
+fun mulct_V2 : V2;
+fun mule_N : N;
+fun muleteer_N : N;
+fun mulheim_PN : PN;
+fun mulhouse_PN : PN;
+fun mulish_A : A;
+fun mulishness_N : N;
+fun mull_N : N;
+fun mull_V2 : V2;
+fun mullah_N : N;
+fun mullein_N : N;
+fun mullet_N : N;
+fun mulligatawny_N : N;
+fun mullion_N : N;
+fun mullioned_A : A;
+fun multan_PN : PN;
+fun multi_lingual_A : A;
+fun multifarious_A : A;
+fun multiform_A : A;
+fun multilateral_A : A;
+fun multiple_A : A;
+fun multiple_N : N;
+fun multiplex_A : A;
+fun multiplication_N : N;
+fun multiplicity_N : N;
+fun multiply_V : V;
+fun multiply_V2 : V2;
+fun multitude_N : N;
+fun multitudinous_A : A;
+fun multum_in_parvo_N : N;
+fun mum_A : A;
+fun mum_N : N;
+fun mumble_V : V;
+fun mumble_V2 : V2;
+fun mumbo_jumbo_N : N;
+fun mummer_N : N;
+fun mummery_N : N;
+fun mummification_N : N;
+fun mummify_V2 : V2;
+fun mummy_N : N;
+fun mumps_N : N;
+fun munch_V : V;
+fun munch_V2 : V2;
+fun mundane_A : A;
+fun munich_PN : PN;
+fun municipal_A : A;
+fun municipality_N : N;
+fun munificence_N : N;
+fun munificent_A : A;
+fun munition_N : N;
+fun munition_V2 : V2;
+fun munster_PN : PN;
+fun mural_A : A;
+fun mural_N : N;
+fun murder_N : N;
+fun murder_V2 : V2;
+fun murderer_N : N;
+fun murderess_N : N;
+fun murderous_A : A;
+fun muriel_PN : PN;
+fun murk_N : N;
+fun murkily_Adv : Adv;
+fun murky_A : A;
+fun murmur_N : N;
+fun murmur_V : V;
+fun murmur_V2 : V2;
+fun murphy_N : N;
+fun murrain_N : N;
+fun murton_PN : PN;
+fun muscatel_N : N;
+fun muscle_N : N;
+fun muscle_V : V;
+fun muscle_V2 : V2;
+fun muscle_bound_A : A;
+fun muscleman_N : N;
+fun muscovite_A : A;
+fun muscovite_N : N;
+fun muscovy_N : N;
+fun muscular_A : A;
+fun muse_N : N;
+fun muse_V : V;
+fun muse_VS : VS;
+fun museum_N : N;
+fun mush_N : N;
+fun mushroom_N : N;
+fun mushroom_V : V;
+fun mushy_A : A;
+fun music_N : N;
+fun music_box_N : N;
+fun music_hall_N : N;
+fun music_stand_N : N;
+fun music_stool_N : N;
+fun musical_A : A;
+fun musical_N : N;
+fun musical_box_N : N;
+fun musician_N : N;
+fun musicianship_N : N;
+fun musingly_Adv : Adv;
+fun musk_N : N;
+fun musk_deer_N : N;
+fun musk_rose_N : N;
+fun musket_N : N;
+fun musketeer_N : N;
+fun musketry_N : N;
+fun muskrat_N : N;
+fun musky_A : A;
+fun muslim_N : N;
+fun muslin_N : N;
+fun musquash_N : N;
+fun muss_N : N;
+fun muss_V2 : V2;
+fun mussel_N : N;
+fun musselburgh_PN : PN;
+fun must_N : N;
+fun must_VV : VV;
+fun mustachio_N : N;
+fun mustang_N : N;
+fun mustard_N : N;
+fun muster_N : N;
+fun muster_V : V;
+fun muster_V2 : V2;
+fun mustiness_N : N;
+fun musty_A : A;
+fun mutability_N : N;
+fun mutable_A : A;
+fun mutation_N : N;
+fun mutatis_mutandis_Adv : Adv;
+fun mute_A : A;
+fun mute_N : N;
+fun mute_V2 : V2;
+fun mutilate_V : V;
+fun mutilate_V2 : V2;
+fun mutilation_N : N;
+fun mutineer_N : N;
+fun mutinous_A : A;
+fun mutiny_N : N;
+fun mutiny_V : V;
+fun mutt_N : N;
+fun mutter_N : N;
+fun mutter_V : V;
+fun mutter_V2 : V2;
+fun mutterer_N : N;
+fun mutton_N : N;
+fun mutton_head_N : N;
+fun mutual_A : A;
+fun muzzle_N : N;
+fun muzzle_V2 : V2;
+fun muzzle_velocity_N : N;
+fun muzzy_A : A;
+fun mycology_N : N;
+fun myelitis_N : N;
+fun myna_N : N;
+fun mynah_N : N;
+fun myopia_N : N;
+fun myopic_A : A;
+fun myra_PN : PN;
+fun myriad_A : A;
+fun myriad_N : N;
+fun myrmidon_N : N;
+fun myrrh_N : N;
+fun myrtle_N : N;
+fun mysterious_A : A;
+fun mystery_N : N;
+fun mystic_A : A;
+fun mystic_N : N;
+fun mystical_A : A;
+fun mysticism_N : N;
+fun mystification_N : N;
+fun mystify_V2 : V2;
+fun mystique_N : N;
+fun myth_N : N;
+fun mythical_A : A;
+fun mythological_A : A;
+fun mythologist_N : N;
+fun mythology_N : N;
+fun myxomatosis_N : N;
+fun naafi_N : N;
+fun nab_V2 : V2;
+fun nabob_N : N;
+fun nacelle_N : N;
+fun nacre_N : N;
+fun nadir_N : N;
+fun nag_N : N;
+fun nag_V : V;
+fun nag_V2 : V2;
+fun nagger_N : N;
+fun nagoya_PN : PN;
+fun nagpur_PN : PN;
+fun naiad_N : N;
+fun nail_N : N;
+fun nail_V2 : V2;
+fun nail_polish_N : N;
+fun nail_varnish_N : N;
+fun nailbrush_N : N;
+fun nailfile_N : N;
+fun nailsea_PN : PN;
+fun nainsook_N : N;
+fun naira_N : N;
+fun nairn_PN : PN;
+fun nairobi_PN : PN;
+fun naive_1_A : A;
+fun naive_2_A : A;
+fun naivete_N : N;
+fun naivety_N : N;
+fun naked_A : A;
+fun nakedness_N : N;
+fun namby_pamby_A : A;
+fun namby_pamby_N : N;
+fun name_N : N;
+fun name_V2 : V2;
+fun name_V2V : V2V;
+fun name_VS : VS;
+fun name_day_N : N;
+fun name_drop_V : V;
+fun name_dropping_N : N;
+fun name_part_N : N;
+fun nameless_A : A;
+fun namely_Adv : Adv;
+fun nameplate_N : N;
+fun namesake_N : N;
+fun namibia_PN : PN;
+fun namibian_A : A;
+fun namibian_N : N;
+fun nanchang_PN : PN;
+fun nancy_PN : PN;
+fun nankeen_N : N;
+fun nanking_PN : PN;
+fun nanning_PN : PN;
+fun nanny_N : N;
+fun nanny_goat_N : N;
+fun nantwich_PN : PN;
+fun naomi_PN : PN;
+fun nap_N : N;
+fun nap_V : V;
+fun napalm_N : N;
+fun nape_N : N;
+fun napery_N : N;
+fun naphtha_N : N;
+fun naphthalene_N : N;
+fun napkin_N : N;
+fun napkin_ring_N : N;
+fun naples_PN : PN;
+fun napoleonic_A : A;
+fun napoli_PN : PN;
+fun nappy_N : N;
+fun narborough_PN : PN;
+fun narcissism_N : N;
+fun narcissus_N : N;
+fun narcotic_A : A;
+fun narcotic_N : N;
+fun nark_N : N;
+fun nark_V2 : V2;
+fun narrate_V2 : V2;
+fun narration_N : N;
+fun narrative_N : N;
+fun narrator_N : N;
+fun narrow_A : A;
+fun narrow_N : N;
+fun narrow_V : V;
+fun narrow_V2 : V2;
+fun narrow_minded_A : A;
+fun narrow_mindedness_N : N;
+fun narrowness_N : N;
+fun narwhal_N : N;
+fun nary_Predet : Predet;
+fun nasa_PN : PN;
+fun nasal_A : A;
+fun nasal_N : N;
+fun nasalize_V2 : V2;
+fun nascent_A : A;
+fun nastily_Adv : Adv;
+fun nastiness_N : N;
+fun nasturtium_N : N;
+fun nasty_A : A;
+fun nat_PN : PN;
+fun natal_A : A;
+fun natalie_PN : PN;
+fun nathaniel_PN : PN;
+fun nation_N : N;
+fun national_A : A;
+fun national_N : N;
+fun nationalism_N : N;
+fun nationalist_A : A;
+fun nationalist_N : N;
+fun nationalistic_A : A;
+fun nationality_N : N;
+fun nationalization_N : N;
+fun nationalize_V2 : V2;
+fun nationwide_A : A;
+fun nationwide_Adv : Adv;
+fun native_A : A;
+fun native_N : N;
+fun nativity_N : N;
+fun nato_PN : PN;
+fun natter_V : V;
+fun nattily_Adv : Adv;
+fun natty_A : A;
+fun natural_A : A;
+fun natural_N : N;
+fun naturalism_N : N;
+fun naturalist_N : N;
+fun naturalistic_A : A;
+fun naturalization_N : N;
+fun naturalize_V : V;
+fun naturalize_V2 : V2;
+fun naturalness_N : N;
+fun nature_N : N;
+fun naturism_N : N;
+fun naturist_N : N;
+fun naught_N : N;
+fun naughtily_Adv : Adv;
+fun naughtiness_N : N;
+fun naughty_A : A;
+fun nauru_PN : PN;
+fun nauruan_A : A;
+fun nauruan_N : N;
+fun nausea_N : N;
+fun nauseate_V2 : V2;
+fun nauseous_A : A;
+fun nautch_N : N;
+fun nautch_girl_N : N;
+fun nautical_A : A;
+fun nautilus_N : N;
+fun naval_A : A;
+fun nave_N : N;
+fun navel_N : N;
+fun navigability_N : N;
+fun navigable_A : A;
+fun navigate_V : V;
+fun navigate_V2 : V2;
+fun navigation_N : N;
+fun navigator_N : N;
+fun navvy_N : N;
+fun navy_N : N;
+fun nay_Adv : Adv;
+fun naysay_V2 : V2;
+fun nazi_A : A;
+fun nazi_N : N;
+fun nazism_N : N;
+fun nb_PN : PN;
+fun nco_N : N;
+fun ne'er_Adv : Adv;
+fun ne'er_do_well_N : N;
+fun ne_plus_ultra_N : N;
+fun neanderthal_A : A;
+fun neap_N : N;
+fun neap_tide_N : N;
+fun neapolitan_A : A;
+fun neapolitan_N : N;
+fun near_A : A;
+fun near_Adv : Adv;
+fun near_Prep : Prep ;
+fun near_V : V;
+fun near_V2 : V2;
+fun near_sighted_A : A;
+fun nearby_A : A;
+fun nearer_Adv : Adv;
+fun nearer_Prep : Prep ;
+fun nearest_Adv : Adv;
+fun nearest_Prep : Prep ;
+fun nearness_N : N;
+fun nearside_N : N;
+fun neat_A : A;
+fun neath_PN : PN;
+fun neatness_N : N;
+fun nebraska_PN : PN;
+fun nebula_N : N;
+fun nebular_A : A;
+fun nebulous_A : A;
+fun necessary_A : A;
+fun necessary_N : N;
+fun necessitate_V2 : V2;
+fun necessitous_A : A;
+fun necessity_N : N;
+fun neck_N : N;
+fun neck_V : V;
+fun neckband_N : N;
+fun neckcloth_N : N;
+fun neckerchief_N : N;
+fun necklace_N : N;
+fun necklet_N : N;
+fun neckline_N : N;
+fun necktie_N : N;
+fun neckwear_N : N;
+fun necromancer_N : N;
+fun necromancy_N : N;
+fun necropolis_N : N;
+fun nectar_N : N;
+fun nectarine_N : N;
+fun ned_PN : PN;
+fun neddy_PN : PN;
+fun nee_A : A;
+fun need_N : N;
+fun need_V : V;
+fun need_V2 : V2;
+fun need_V2V : V2V;
+fun need_VV : VV;
+fun need_VS : VS;
+fun needful_A : A;
+fun needle_N : N;
+fun needle_V2 : V2;
+fun needlecraft_N : N;
+fun needless_A : A;
+fun needlewoman_N : N;
+fun needlework_N : N;
+fun needs_Adv : Adv;
+fun needy_A : A;
+fun nefarious_A : A;
+fun nefariousness_N : N;
+fun negate_V2 : V2;
+fun negation_N : N;
+fun negative_A : A;
+fun negative_N : N;
+fun negative_V2 : V2;
+fun neglect_N : N;
+fun neglect_V2 : V2;
+fun neglectful_A : A;
+fun neglectfulness_N : N;
+fun neglige_N : N;
+fun negligee_N : N;
+fun negligence_N : N;
+fun negligent_A : A;
+fun negligible_A : A;
+fun negotiable_A : A;
+fun negotiate_V : V;
+fun negotiate_V2 : V2;
+fun negotiate_VV : VV;
+fun negotiation_N : N;
+fun negotiator_N : N;
+fun negress_N : N;
+fun negro_N : N;
+fun negroid_A : A;
+fun negroid_N : N;
+fun negus_N : N;
+fun neigh_N : N;
+fun neigh_V : V;
+fun neighbour_N : N;
+fun neighbour_V : V;
+fun neighbour_V2 : V2;
+fun neighbourhood_N : N;
+fun neighbourliness_N : N;
+fun neighbourly_A : A;
+fun neil_PN : PN;
+fun neither7nor_DConj : Conj;
+fun neither_A : A;
+fun neither_Adv : Adv;
+fun neither_Prep : Prep ;
+fun nell_PN : PN;
+fun nelly_N : N;
+fun nelly_PN : PN;
+fun nelson_PN : PN;
+fun nem_con_Adv : Adv;
+fun nemesis_N : N;
+fun neocolonialism_N : N;
+fun neolithic_A : A;
+fun neologism_N : N;
+fun neon_N : N;
+fun neophyte_N : N;
+fun neoplasm_N : N;
+fun nepal_PN : PN;
+fun nepalese_A : A;
+fun nepalese_N : N;
+fun nepali_A : A;
+fun nepali_N : N;
+fun nephew_N : N;
+fun nephritis_N : N;
+fun nepotism_N : N;
+fun neptune_PN : PN;
+fun nereid_N : N;
+fun nerve_N : N;
+fun nerve_V2 : V2;
+fun nerve_cell_N : N;
+fun nerve_centre_N : N;
+fun nerve_racking_A : A;
+fun nerveless_A : A;
+fun nervous_A : A;
+fun nervousness_N : N;
+fun nervy_A : A;
+fun nescience_N : N;
+fun nescient_A : A;
+fun ness_N : N;
+fun nest_N : N;
+fun nest_V : V;
+fun nest_egg_N : N;
+fun nestle_V : V;
+fun nestle_V2 : V2;
+fun nestling_N : N;
+fun neston_PN : PN;
+fun nestor_PN : PN;
+fun net_A : A;
+fun net_N : N;
+fun net_V2 : V2;
+fun netball_N : N;
+fun nether_A : A;
+fun netherlander_N : N;
+fun netherlands_PN : PN;
+fun nethermost_A : A;
+fun netley_PN : PN;
+fun nett_A : A;
+fun nett_V2 : V2;
+fun netting_N : N;
+fun nettle_N : N;
+fun nettle_V2 : V2;
+fun nettlerash_N : N;
+fun network_N : N;
+fun neural_A : A;
+fun neuralgia_N : N;
+fun neuralgic_A : A;
+fun neurasthenia_N : N;
+fun neurasthenic_A : A;
+fun neurasthenic_N : N;
+fun neuritis_N : N;
+fun neurologist_N : N;
+fun neurology_N : N;
+fun neurosis_N : N;
+fun neurotic_A : A;
+fun neurotic_N : N;
+fun neurotically_Adv : Adv;
+fun neuss_PN : PN;
+fun neuter_A : A;
+fun neuter_N : N;
+fun neuter_V2 : V2;
+fun neutral_A : A;
+fun neutral_N : N;
+fun neutrality_N : N;
+fun neutralization_N : N;
+fun neutralize_V2 : V2;
+fun neutron_N : N;
+fun nevada_PN : PN;
+fun never_AdV : AdV;
+fun nevermore_Adv : Adv;
+fun nevertheless_Adv : Adv;
+fun neville_PN : PN;
+fun new_A : A;
+fun new_Adv : Adv;
+fun new_cumnock_PN : PN;
+fun new_mills_PN : PN;
+fun new_orleans_PN : PN;
+fun new_tredegar_PN : PN;
+fun new_windsor_PN : PN;
+fun new_york_PN : PN;
+fun newark_PN : PN;
+fun newarthill_PN : PN;
+fun newbiggin_PN : PN;
+fun newbury_PN : PN;
+fun newcastle_PN : PN;
+fun newcastle_under_lyme_PN : PN;
+fun newcastle_upon_tyne_PN : PN;
+fun newcomer_N : N;
+fun newel_N : N;
+fun newfangled_A : A;
+fun newfoundland_PN : PN;
+fun newham_PN : PN;
+fun newhaven_PN : PN;
+fun newlywed_N : N;
+fun newmains_PN : PN;
+fun newmarket_N : N;
+fun newmarket_PN : PN;
+fun newness_N : N;
+fun newport_PN : PN;
+fun newport_pagnell_PN : PN;
+fun newquay_PN : PN;
+fun newry_PN : PN;
+fun news_N : N;
+fun newsagent_N : N;
+fun newsboy_N : N;
+fun newscast_N : N;
+fun newscaster_N : N;
+fun newsdealer_N : N;
+fun newsflash_N : N;
+fun newsless_A : A;
+fun newsletter_N : N;
+fun newsmonger_N : N;
+fun newspaper_N : N;
+fun newspaperman_N : N;
+fun newsprint_N : N;
+fun newsreel_N : N;
+fun newsroom_N : N;
+fun newssheet_N : N;
+fun newsstand_N : N;
+fun newsvendor_N : N;
+fun newsworthy_A : A;
+fun newsy_A : A;
+fun newt_N : N;
+fun newton_abbot_PN : PN;
+fun newton_aycliffe_PN : PN;
+fun newton_le_willows_PN : PN;
+fun newton_mearns_PN : PN;
+fun newtonian_A : A;
+fun newtonian_N : N;
+fun newtown_PN : PN;
+fun next_A : A;
+fun next_N : N;
+fun next_Prep : Prep ;
+fun nexus_N : N;
+fun nhs_N : N;
+fun nib_N : N;
+fun nibble_N : N;
+fun nibble_V : V;
+fun nibble_V2 : V2;
+fun nicaragua_PN : PN;
+fun nicaraguan_A : A;
+fun nicaraguan_N : N;
+fun nice_A : A;
+fun nice_PN : PN;
+fun niceness_N : N;
+fun nicety_N : N;
+fun niche_N : N;
+fun nicholas_PN : PN;
+fun nick_N : N;
+fun nick_PN : PN;
+fun nick_V2 : V2;
+fun nickel_N : N;
+fun nickel_V2 : V2;
+fun nicknack_N : N;
+fun nickname_N : N;
+fun nickname_V2 : V2;
+fun nickname_VS : VS;
+fun nicola_PN : PN;
+fun nicole_PN : PN;
+fun nicotine_N : N;
+fun niece_N : N;
+fun niff_N : N;
+fun niffy_A : A;
+fun nifty_A : A;
+fun nigel_PN : PN;
+fun niger_PN : PN;
+fun nigeria_PN : PN;
+fun nigerian_A : A;
+fun nigerian_N : N;
+fun nigerien_A : A;
+fun nigerien_N : N;
+fun niggard_N : N;
+fun niggardliness_N : N;
+fun niggardly_A : A;
+fun nigger_N : N;
+fun niggle_V : V;
+fun niggling_A : A;
+fun nigh_Adv : Adv;
+fun nigher_Adv : Adv;
+fun nighest_Adv : Adv;
+fun night_N : N;
+fun night_bell_N : N;
+fun night_bird_N : N;
+fun night_light_N : N;
+fun night_line_N : N;
+fun night_porter_N : N;
+fun night_soil_N : N;
+fun night_stop_N : N;
+fun night_time_N : N;
+fun night_watch_N : N;
+fun night_watchman_N : N;
+fun nightcap_N : N;
+fun nightclub_N : N;
+fun nightdress_N : N;
+fun nightfall_N : N;
+fun nightgown_N : N;
+fun nightie_N : N;
+fun nightingale_N : N;
+fun nightjar_N : N;
+fun nightlong_A : A;
+fun nightly_A : A;
+fun nightly_Adv : Adv;
+fun nightmare_N : N;
+fun nightmarish_A : A;
+fun nightshade_N : N;
+fun nightshirt_N : N;
+fun nightwork_N : N;
+fun nihilism_N : N;
+fun nihilist_N : N;
+fun nihilistic_A : A;
+fun nijmegen_PN : PN;
+fun nil_N : N;
+fun nilotic_A : A;
+fun nimble_A : A;
+fun nimbleness_N : N;
+fun nimbly_Adv : Adv;
+fun nimbus_N : N;
+fun niminy_piminy_A : A;
+fun nimrod_PN : PN;
+fun nincompoop_N : N;
+fun ninefold_A : A;
+fun ninefold_Adv : Adv;
+fun ninepence_N : N;
+fun ninepenny_A : A;
+fun ninepins_N : N;
+fun ninny_N : N;
+fun ninth_A : A;
+fun ninth_N : N;
+fun niobe_PN : PN;
+fun nip_N : N;
+fun nip_V : V;
+fun nip_V2 : V2;
+fun nipper_N : N;
+fun nipping_A : A;
+fun nipple_N : N;
+fun nipponese_A : A;
+fun nippy_A : A;
+fun nirvana_N : N;
+fun nisi_A : A;
+fun nissen_PN : PN;
+fun nit_N : N;
+fun nitrate_N : N;
+fun nitre_N : N;
+fun nitric_A : A;
+fun nitrochalk_N : N;
+fun nitrogen_N : N;
+fun nitroglycerin_N : N;
+fun nitroglycerine_N : N;
+fun nitrous_A : A;
+fun nitty_gritty_N : N;
+fun nitwit_N : N;
+fun nitwitted_A : A;
+fun nix_N : N;
+fun nix_V2 : V2;
+fun no_Quant : Quant;
+fun no_ball_N : N;
+fun no_go_A : A;
+fun no_man's_land_N : N;
+fun noah_PN : PN;
+fun nob_N : N;
+fun nobble_V2 : V2;
+fun nobel_PN : PN;
+fun nobility_N : N;
+fun noble_A : A;
+fun noble_N : N;
+fun noble_mindedness_N : N;
+fun nobleman_N : N;
+fun noblesse_N : N;
+fun noblesse_oblige_N : N;
+fun nobly_Adv : Adv;
+fun noctambulist_N : N;
+fun nocturnal_A : A;
+fun nocturne_N : N;
+fun nod_N : N;
+fun nod_V : V;
+fun nod_V2 : V2;
+fun noddle_N : N;
+fun node_N : N;
+fun nodular_A : A;
+fun nodulated_A : A;
+fun nodule_N : N;
+fun noel_N : N;
+fun noel_PN : PN;
+fun noggin_N : N;
+fun nohow_Adv : Adv;
+fun noise_N : N;
+fun noise_V2 : V2;
+fun noiseless_A : A;
+fun noiselessness_N : N;
+fun noisily_Adv : Adv;
+fun noisiness_N : N;
+fun noisome_A : A;
+fun noisy_A : A;
+fun nom_de_plume_N : N;
+fun nomad_N : N;
+fun nomadic_A : A;
+fun nomenclature_N : N;
+fun nominal_A : A;
+fun nominate_V2 : V2;
+fun nomination_N : N;
+fun nominative_A : A;
+fun nominative_N : N;
+fun nominee_N : N;
+fun non_compliance_N : N;
+fun non_compos_mentis_A : A;
+fun non_contentious_A : A;
+fun non_interference_N : N;
+fun non_sequitur_N : N;
+fun non_skid_A : A;
+fun non_u_A : A;
+fun nonage_N : N;
+fun nonagenarian_A : A;
+fun nonagenarian_N : N;
+fun nonaggression_N : N;
+fun nonalignment_N : N;
+fun nonce_N : N;
+fun nonce_word_N : N;
+fun nonchalance_N : N;
+fun nonchalant_A : A;
+fun noncombatant_N : N;
+fun noncommissioned_A : A;
+fun noncommittal_A : A;
+fun nonconductor_N : N;
+fun nonconformist_N : N;
+fun nonconformity_N : N;
+fun nondescript_A : A;
+fun nondescript_N : N;
+fun none_Adv : Adv;
+fun nonentity_N : N;
+fun nonesuch_N : N;
+fun nonevent_N : N;
+fun nonfiction_N : N;
+fun nonflammable_A : A;
+fun nonintervention_N : N;
+fun nonmoral_A : A;
+fun nonobservance_N : N;
+fun nonpareil_A : A;
+fun nonpareil_N : N;
+fun nonpayment_N : N;
+fun nonplus_V2 : V2;
+fun nonresident_A : A;
+fun nonsense_N : N;
+fun nonsensical_A : A;
+fun nonsmoker_N : N;
+fun nonstarter_N : N;
+fun nonstick_A : A;
+fun nonstop_A : A;
+fun nonstop_Adv : Adv;
+fun nonsuch_N : N;
+fun nonunion_A : A;
+fun nonviolence_N : N;
+fun noodle_N : N;
+fun nook_N : N;
+fun noon_N : N;
+fun noonday_A : A;
+fun noontide_N : N;
+fun noose_N : N;
+fun noose_V2 : V2;
+fun nor'_east_Adv : Adv;
+fun nor'_east_N : N;
+fun nor'_nor'_east_Adv : Adv;
+fun nor'_nor'_east_N : N;
+fun nor'_nor'_west_Adv : Adv;
+fun nor'_nor'_west_N : N;
+fun nor'_west_Adv : Adv;
+fun nor'_west_N : N;
+fun nor_Conj : Conj;
+fun nora_PN : PN;
+fun nordic_A : A;
+fun nordic_N : N;
+fun norfolk_PN : PN;
+fun norm_N : N;
+fun normal_A : A;
+fun normal_N : N;
+fun normalcy_N : N;
+fun normality_N : N;
+fun normalization_N : N;
+fun normalize_V2 : V2;
+fun norman_A : A;
+fun norman_N : N;
+fun norman_PN : PN;
+fun normanton_PN : PN;
+fun normantown_PN : PN;
+fun normative_A : A;
+fun norse_A : A;
+fun norse_N : N;
+fun north_A : A;
+fun north_Adv : Adv;
+fun north_N : N;
+fun north_northeast_Adv : Adv;
+fun north_northeast_N : N;
+fun north_northwest_Adv : Adv;
+fun north_northwest_N : N;
+fun north_walsham_PN : PN;
+fun northallerton_PN : PN;
+fun northam_PN : PN;
+fun northampton_PN : PN;
+fun northamptonshire_PN : PN;
+fun northeast_Adv : Adv;
+fun northeast_N : N;
+fun northeaster_N : N;
+fun northeasterly_A : A;
+fun northeastern_A : A;
+fun northerly_A : A;
+fun northerly_Adv : Adv;
+fun northern_A : A;
+fun northerner_N : N;
+fun northernmost_A : A;
+fun northman_N : N;
+fun northumberland_PN : PN;
+fun northwards_Adv : Adv;
+fun northwest_Adv : Adv;
+fun northwest_N : N;
+fun northwester_N : N;
+fun northwesterly_A : A;
+fun northwestern_A : A;
+fun northwich_PN : PN;
+fun norton_PN : PN;
+fun norway_PN : PN;
+fun norwegian_A : A;
+fun norwegian_N : N;
+fun norwich_PN : PN;
+fun nose_N : N;
+fun nose_V : V;
+fun nose_V2 : V2;
+fun nose_flute_N : N;
+fun nose_wheel_N : N;
+fun nosebag_N : N;
+fun nosebleed_N : N;
+fun nosecone_N : N;
+fun nosed_A : A;
+fun nosedive_N : N;
+fun nosedive_V : V;
+fun nosegay_N : N;
+fun nosering_N : N;
+fun nosey_A : A;
+fun nosh_N : N;
+fun nosh_V : V;
+fun nosh_up_N : N;
+fun nostalgia_N : N;
+fun nostalgic_A : A;
+fun nostalgically_Adv : Adv;
+fun nostril_N : N;
+fun nostrum_N : N;
+fun nosy_A : A;
+fun not_Adv : Adv;
+fun notability_N : N;
+fun notable_A : A;
+fun notable_N : N;
+fun notary_N : N;
+fun notation_N : N;
+fun notch_N : N;
+fun notch_V2 : V2;
+fun note_N : N;
+fun note_V : V;
+fun note_V2 : V2;
+fun note_VS : VS;
+fun notebook_N : N;
+fun notecase_N : N;
+fun noted_A : A;
+fun notepaper_N : N;
+fun noteworthy_A : A;
+fun nothing_Adv : Adv;
+fun nothingness_N : N;
+fun notice_N : N;
+fun notice_V : V;
+fun notice_V2 : V2;
+fun notice_VS : VS;
+fun notice_board_N : N;
+fun noticeable_A : A;
+fun notifiable_A : A;
+fun notification_N : N;
+fun notify_V2 : V2;
+fun notion_N : N;
+fun notional_A : A;
+fun notoriety_N : N;
+fun notorious_A : A;
+fun nottingham_PN : PN;
+fun nottinghamshire_PN : PN;
+fun notwithstanding_Adv : Adv;
+fun notwithstanding_Prep : Prep ;
+fun nougat_N : N;
+fun nought_N : N;
+fun noun_N : N;
+fun nourish_V2 : V2;
+fun nourishment_N : N;
+fun nous_N : N;
+fun nouveau_riche_N : N;
+fun nov_PN : PN;
+fun nova_N : N;
+fun nova_scotia_PN : PN;
+fun novara_PN : PN;
+fun novel_A : A;
+fun novel_N : N;
+fun novelette_N : N;
+fun novelist_N : N;
+fun novelty_N : N;
+fun november_N : N;
+fun november_PN : PN;
+fun novice_N : N;
+fun noviciate_N : N;
+fun novitiate_N : N;
+fun novokuznetsk_PN : PN;
+fun novosibirsk_PN : PN;
+fun now_Adv : Adv;
+fun nowadays_Adv : Adv;
+fun nowhere_Adv : Adv;
+fun nowise_Adv : Adv;
+fun noxious_A : A;
+fun noxiousness_N : N;
+fun nozzle_N : N;
+fun nr_PN : PN;
+fun nspcc_N : N;
+fun nt_N : N;
+fun nuance_N : N;
+fun nub_N : N;
+fun nubile_A : A;
+fun nuclear_A : A;
+fun nucleic_A : A;
+fun nucleus_N : N;
+fun nude_A : A;
+fun nude_N : N;
+fun nudge_N : N;
+fun nudge_V2 : V2;
+fun nudism_N : N;
+fun nudist_N : N;
+fun nudity_N : N;
+fun nugatory_A : A;
+fun nugget_N : N;
+fun nuisance_N : N;
+fun null_A : A;
+fun nullification_N : N;
+fun nullify_V2 : V2;
+fun nullity_N : N;
+fun numb_A : A;
+fun numb_V2 : V2;
+fun number_N : N;
+fun number_V2 : V2;
+fun numberless_A : A;
+fun numberplate_N : N;
+fun numbness_N : N;
+fun numerable_A : A;
+fun numeracy_N : N;
+fun numeral_A : A;
+fun numeral_N : N;
+fun numerate_A : A;
+fun numeration_N : N;
+fun numerator_N : N;
+fun numeric_A : A;
+fun numerical_A : A;
+fun numerous_A : A;
+fun numinous_A : A;
+fun numismatics_N : N;
+fun numismatist_N : N;
+fun numskull_N : N;
+fun nun_N : N;
+fun nuncio_N : N;
+fun nuneaton_PN : PN;
+fun nunnery_N : N;
+fun nuptial_A : A;
+fun nurenburg_PN : PN;
+fun nurse_N : N;
+fun nurse_V2 : V2;
+fun nurseling_N : N;
+fun nursemaid_N : N;
+fun nursery_N : N;
+fun nurseryman_N : N;
+fun nursing_home_N : N;
+fun nursling_N : N;
+fun nurture_N : N;
+fun nurture_V2 : V2;
+fun nut_N : N;
+fun nut_V : V;
+fun nut_brown_A : A;
+fun nut_butter_N : N;
+fun nuthouse_N : N;
+fun nutmeg_N : N;
+fun nutria_N : N;
+fun nutrient_A : A;
+fun nutrient_N : N;
+fun nutriment_N : N;
+fun nutrition_N : N;
+fun nutritional_A : A;
+fun nutritious_A : A;
+fun nutritive_A : A;
+fun nuts_A : A;
+fun nutshell_N : N;
+fun nutty_A : A;
+fun nuzzle_V : V;
+fun nuzzle_V2 : V2;
+fun nylon_N : N;
+fun nymph_N : N;
+fun nymphet_N : N;
+fun nympho_N : N;
+fun nymphomania_N : N;
+fun nymphomaniac_A : A;
+fun nymphomaniac_N : N;
+fun o'er_Adv : Adv;
+fun o_level_N : N;
+fun oaf_N : N;
+fun oafish_A : A;
+fun oak_N : N;
+fun oak_apple_N : N;
+fun oaken_A : A;
+fun oakengates_PN : PN;
+fun oakum_N : N;
+fun oap_N : N;
+fun oar_N : N;
+fun oarsman_N : N;
+fun oarsmanship_N : N;
+fun oarswoman_N : N;
+fun oasis_N : N;
+fun oast_N : N;
+fun oasthouse_N : N;
+fun oat_N : N;
+fun oatcake_N : N;
+fun oath_N : N;
+fun oatmeal_N : N;
+fun oau_N : N;
+fun ob_PN : PN;
+fun oban_PN : PN;
+fun obbligato_N : N;
+fun obduracy_N : N;
+fun obdurate_A : A;
+fun obedience_N : N;
+fun obedient_A : A;
+fun obeisance_N : N;
+fun obelisk_N : N;
+fun oberhausen_PN : PN;
+fun obese_A : A;
+fun obesity_N : N;
+fun obey_V : V;
+fun obey_V2 : V2;
+fun obfuscate_V2 : V2;
+fun obi_N : N;
+fun obiter_dictum_N : N;
+fun obituary_N : N;
+fun object_N : N;
+fun object_V : V;
+fun object_V2 : V2;
+fun objection_N : N;
+fun objectionable_A : A;
+fun objective_A : A;
+fun objective_N : N;
+fun objectivity_N : N;
+fun objector_N : N;
+fun objurgate_V2 : V2;
+fun objurgation_N : N;
+fun oblate_A : A;
+fun oblation_N : N;
+fun obligate_V2 : V2;
+fun obligate_V2V : V2V;
+fun obligation_N : N;
+fun obligatory_A : A;
+fun oblige_V2 : V2;
+fun obliging_A : A;
+fun oblique_A : A;
+fun obliquity_N : N;
+fun obliterate_V2 : V2;
+fun obliteration_N : N;
+fun oblivion_N : N;
+fun oblivious_A : A;
+fun oblong_A : A;
+fun oblong_N : N;
+fun obloquy_N : N;
+fun obnoxious_A : A;
+fun obnoxiousness_N : N;
+fun oboe_N : N;
+fun oboist_N : N;
+fun obscene_A : A;
+fun obscenity_N : N;
+fun obscurantism_N : N;
+fun obscurantist_N : N;
+fun obscure_A : A;
+fun obscure_V2 : V2;
+fun obscure_VA : VA;
+fun obscurity_N : N;
+fun obsequious_A : A;
+fun obsequiousness_N : N;
+fun observable_A : A;
+fun observance_N : N;
+fun observant_A : A;
+fun observation_N : N;
+fun observatory_N : N;
+fun observe_V : V;
+fun observe_V2 : V2;
+fun observe_VS : VS;
+fun observer_N : N;
+fun observing_A : A;
+fun obsess_V2 : V2;
+fun obsession_N : N;
+fun obsessional_A : A;
+fun obsessive_A : A;
+fun obsidian_N : N;
+fun obsolescence_N : N;
+fun obsolescent_A : A;
+fun obsolete_A : A;
+fun obstacle_N : N;
+fun obstetric_A : A;
+fun obstetrical_A : A;
+fun obstetrician_N : N;
+fun obstetrics_N : N;
+fun obstinacy_N : N;
+fun obstinate_A : A;
+fun obstreperous_A : A;
+fun obstreperousness_N : N;
+fun obstruct_V2 : V2;
+fun obstruction_N : N;
+fun obstructionism_N : N;
+fun obstructionist_N : N;
+fun obstructive_A : A;
+fun obtain_V : V;
+fun obtain_V2 : V2;
+fun obtainable_A : A;
+fun obtrude_V : V;
+fun obtrude_V2 : V2;
+fun obtrusive_A : A;
+fun obtuse_A : A;
+fun obtuseness_N : N;
+fun obverse_N : N;
+fun obviate_V2 : V2;
+fun obvious_A : A;
+fun obviousness_N : N;
+fun ocarina_N : N;
+fun occasion_N : N;
+fun occasion_V2 : V2;
+fun occasional_A : A;
+fun occident_PN : PN;
+fun occidental_A : A;
+fun occidental_N : N;
+fun occult_A : A;
+fun occult_N : N;
+fun occupancy_N : N;
+fun occupant_N : N;
+fun occupation_N : N;
+fun occupational_A : A;
+fun occupier_N : N;
+fun occupy_V : V;
+fun occupy_V2 : V2;
+fun occur_V : V;
+fun occurr_V2 : V2;
+fun occurrence_N : N;
+fun ocean_N : N;
+fun oceanic_A : A;
+fun ochre_N : N;
+fun ockbrook_PN : PN;
+fun ockendon_PN : PN;
+fun oct_PN : PN;
+fun octagon_N : N;
+fun octagonal_A : A;
+fun octane_N : N;
+fun octave_N : N;
+fun octavo_N : N;
+fun octet_N : N;
+fun octette_N : N;
+fun october_N : N;
+fun october_PN : PN;
+fun octogenarian_A : A;
+fun octogenarian_N : N;
+fun octopus_N : N;
+fun octroi_N : N;
+fun ocular_A : A;
+fun oculist_N : N;
+fun odalisque_N : N;
+fun odd_A : A;
+fun odd_job_A : A;
+fun oddity_N : N;
+fun oddment_N : N;
+fun odds_on_A : A;
+fun odds_on_Adv : Adv;
+fun ode_N : N;
+fun odessa_PN : PN;
+fun odious_A : A;
+fun odium_N : N;
+fun odoriferous_A : A;
+fun odorous_A : A;
+fun odour_N : N;
+fun odourless_A : A;
+fun odyssey_N : N;
+fun oecd_N : N;
+fun oecumenical_A : A;
+fun oed_N : N;
+fun oedipus_PN : PN;
+fun oesophagus_N : N;
+fun of_Prep : Prep ;
+fun off_A : A;
+fun off_Adv : Adv;
+fun off_Prep : Prep ;
+fun off_day_N : N;
+fun off_licence_N : N;
+fun off_peak_A : A;
+fun off_putting_A : A;
+fun off_street_A : A;
+fun off_white_A : A;
+fun offal_N : N;
+fun offaly_PN : PN;
+fun offbeat_A : A;
+fun offenbach_PN : PN;
+fun offence_N : N;
+fun offenceless_A : A;
+fun offend_V : V;
+fun offend_V2 : V2;
+fun offender_N : N;
+fun offensive_A : A;
+fun offensive_N : N;
+fun offensiveness_N : N;
+fun offer_N : N;
+fun offer_V : V;
+fun offer_V2 : V2;
+fun offer_VV : VV;
+fun offer_VS : VS;
+fun offering_N : N;
+fun offertory_N : N;
+fun offhand_A : A;
+fun offhand_Adv : Adv;
+fun offhanded_A : A;
+fun offhanded_Adv : Adv;
+fun offhandedly_A : A;
+fun office_N : N;
+fun office_bearer_N : N;
+fun office_block_N : N;
+fun office_boy_N : N;
+fun office_holder_N : N;
+fun officer_N : N;
+fun official_A : A;
+fun official_N : N;
+fun officialdom_N : N;
+fun officialese_N : N;
+fun officiate_V : V;
+fun officious_A : A;
+fun officiousness_N : N;
+fun offing_N : N;
+fun offish_A : A;
+fun offprint_N : N;
+fun offset_N : N;
+fun offset_V2 : V2;
+fun offshoot_N : N;
+fun offshore_A : A;
+fun offside_A : A;
+fun offside_Adv : Adv;
+fun offspring_N : N;
+fun offstage_A : A;
+fun offstage_Adv : Adv;
+fun oft_Adv : Adv;
+fun oft_times_Adv : Adv;
+fun often_Adv : Adv;
+fun oftener_Adv : Adv;
+fun ogle_V : V;
+fun ogle_V2 : V2;
+fun ogmore_valley_PN : PN;
+fun ogre_N : N;
+fun ogreish_A : A;
+fun ogress_N : N;
+fun ohio_PN : PN;
+fun ohm_N : N;
+fun oil_N : N;
+fun oil_V2 : V2;
+fun oil_bearing_A : A;
+fun oil_burner_N : N;
+fun oil_cake_N : N;
+fun oil_painting_N : N;
+fun oil_palm_N : N;
+fun oil_paper_N : N;
+fun oil_rig_N : N;
+fun oil_silk_N : N;
+fun oil_slick_N : N;
+fun oil_tanker_N : N;
+fun oil_well_N : N;
+fun oilcan_N : N;
+fun oilcloth_N : N;
+fun oiled_A : A;
+fun oiler_N : N;
+fun oilfield_N : N;
+fun oilfired_A : A;
+fun oiliness_N : N;
+fun oilskin_N : N;
+fun oily_A : A;
+fun ointment_N : N;
+fun okapi_N : N;
+fun okay_A : A;
+fun okay_Adv : Adv;
+fun okay_N : N;
+fun okay_V2 : V2;
+fun oklahoma_PN : PN;
+fun oklahoma_city_PN : PN;
+fun okra_N : N;
+fun old_A : A;
+fun old_N : N;
+fun old_fashioned_A : A;
+fun old_maidish_A : A;
+fun old_time_A : A;
+fun old_timer_N : N;
+fun old_windsor_PN : PN;
+fun old_womanish_A : A;
+fun old_world_A : A;
+fun olden_A : A;
+fun oldenburg_PN : PN;
+fun oldham_PN : PN;
+fun oldish_A : A;
+fun oldland_PN : PN;
+fun oldster_N : N;
+fun oleaginous_A : A;
+fun oleander_N : N;
+fun olfactory_A : A;
+fun oligarch_N : N;
+fun oligarchy_N : N;
+fun olive_A : A;
+fun olive_N : N;
+fun olive_PN : PN;
+fun olive_tree_N : N;
+fun oliver_PN : PN;
+fun olivia_PN : PN;
+fun ollerton_PN : PN;
+fun ollie_PN : PN;
+fun olympiad_N : N;
+fun olympian_A : A;
+fun olympian_N : N;
+fun olympic_A : A;
+fun olympics_PN : PN;
+fun oman_PN : PN;
+fun omani_A : A;
+fun omani_N : N;
+fun ombudsman_N : N;
+fun omega_N : N;
+fun omelet_N : N;
+fun omelette_N : N;
+fun omen_N : N;
+fun omen_V2 : V2;
+fun ominous_A : A;
+fun omission_N : N;
+fun omit_V2 : V2;
+fun omnibus_N : N;
+fun omnipotence_N : N;
+fun omnipotent_A : A;
+fun omniscience_N : N;
+fun omniscient_A : A;
+fun omnivorous_A : A;
+fun omsk_PN : PN;
+fun on_Adv : Adv;
+fun on_Prep : Prep ;
+fun on_licence_N : N;
+fun once_Adv : Adv;
+fun once_Prep : Prep ;
+fun oncoming_A : A;
+fun oncoming_N : N;
+fun one_armed_A : A;
+fun one_eyed_A : A;
+fun one_horse_A : A;
+fun one_idea'd_A : A;
+fun one_sided_A : A;
+fun one_step_N : N;
+fun one_time_A : A;
+fun one_upmanship_N : N;
+fun oneness_N : N;
+fun onerous_A : A;
+fun ongar_PN : PN;
+fun ongoing_A : A;
+fun onion_N : N;
+fun onlooker_N : N;
+fun only_Adv : Adv;
+fun only_Predet : Predet;
+fun onomatopoeia_N : N;
+fun onrush_N : N;
+fun onset_N : N;
+fun onshore_A : A;
+fun onshore_Adv : Adv;
+fun onslaught_N : N;
+fun ontario_PN : PN;
+fun onto_Prep : Prep ;
+fun ontology_N : N;
+fun onus_N : N;
+fun onward_A : A;
+fun onward_Adv : Adv;
+fun onwards_Adv : Adv;
+fun onyx_N : N;
+fun oomph_N : N;
+fun ooze_N : N;
+fun ooze_V : V;
+fun ooze_V2 : V2;
+fun oozy_A : A;
+fun op_PN : PN;
+fun op_art_N : N;
+fun op_cit_PN : PN;
+fun opacity_N : N;
+fun opal_N : N;
+fun opalescent_A : A;
+fun opaque_A : A;
+fun opaqueness_N : N;
+fun opec_PN : PN;
+fun open_A : A;
+fun open_N : N;
+fun open_V : V;
+fun open_V2 : V2;
+fun open_air_A : A;
+fun open_ended_A : A;
+fun open_eyed_A : A;
+fun open_handed_A : A;
+fun open_hearted_A : A;
+fun open_minded_A : A;
+fun open_mouthed_A : A;
+fun opencast_A : A;
+fun opener_N : N;
+fun opening_A : A;
+fun opening_N : N;
+fun openness_N : N;
+fun openwork_N : N;
+fun opera_N : N;
+fun opera_cloak_N : N;
+fun opera_hat_N : N;
+fun opera_house_N : N;
+fun operable_A : A;
+fun operate_V : V;
+fun operate_V2 : V2;
+fun operatic_A : A;
+fun operating_table_N : N;
+fun operating_theatre_N : N;
+fun operation_N : N;
+fun operational_A : A;
+fun operative_A : A;
+fun operative_N : N;
+fun operator_N : N;
+fun operetta_N : N;
+fun ophthalmia_N : N;
+fun ophthalmic_A : A;
+fun ophthalmoscope_N : N;
+fun opiate_N : N;
+fun opine_V2 : V2;
+fun opine_VS : VS;
+fun opinion_N : N;
+fun opinionated_A : A;
+fun opinionative_A : A;
+fun opium_N : N;
+fun opium_den_N : N;
+fun opossum_N : N;
+fun opp_PN : PN;
+fun opponent_N : N;
+fun opportune_A : A;
+fun opportunism_N : N;
+fun opportunist_N : N;
+fun opportunity_N : N;
+fun oppose_V : V;
+fun oppose_V2 : V2;
+fun oppose_VS : VS;
+fun opposite_A : A;
+fun opposite_N : N;
+fun opposite_Prep : Prep ;
+fun opposition_N : N;
+fun oppress_V2 : V2;
+fun oppression_N : N;
+fun oppressive_A : A;
+fun oppressor_N : N;
+fun opprobrious_A : A;
+fun opprobrium_N : N;
+fun oppugn_V2 : V2;
+fun opt_V : V;
+fun opt_V2V : V2V;
+fun opt_VS : VS;
+fun optative_A : A;
+fun optative_N : N;
+fun optic_A : A;
+fun optical_A : A;
+fun optician_N : N;
+fun optics_N : N;
+fun optimal_A : A;
+fun optimism_N : N;
+fun optimist_N : N;
+fun optimistic_A : A;
+fun optimistically_Adv : Adv;
+fun optimum_N : N;
+fun option_N : N;
+fun optional_A : A;
+fun opulence_N : N;
+fun opulent_A : A;
+fun opus_N : N;
+fun or_Conj : Conj;
+fun oracle_N : N;
+fun oracular_A : A;
+fun oral_A : A;
+fun oral_N : N;
+fun orang_outan_N : N;
+fun orang_outang_N : N;
+fun orang_utan_N : N;
+fun orange_A : A;
+fun orange_N : N;
+fun orangeade_N : N;
+fun orangeman_N : N;
+fun orate_V : V;
+fun oration_N : N;
+fun orator_N : N;
+fun oratorical_A : A;
+fun oratorio_N : N;
+fun oratory_N : N;
+fun orb_N : N;
+fun orbit_N : N;
+fun orbit_V : V;
+fun orbit_V2 : V2;
+fun orbital_A : A;
+fun orchard_N : N;
+fun orchestra_N : N;
+fun orchestral_A : A;
+fun orchestrate_V2 : V2;
+fun orchestration_N : N;
+fun orchid_N : N;
+fun orchis_N : N;
+fun ordain_V2 : V2;
+fun ordain_VS : VS;
+fun ordeal_N : N;
+fun order_N : N;
+fun order_V : V;
+fun order_V2 : V2;
+fun order_V2V : V2V;
+fun order_VS : VS;
+fun order_book_N : N;
+fun order_form_N : N;
+fun order_paper_N : N;
+fun ordering_N : N;
+fun orderliness_N : N;
+fun orderly_A : A;
+fun orderly_N : N;
+fun ordinal_A : A;
+fun ordinal_N : N;
+fun ordinance_N : N;
+fun ordinand_N : N;
+fun ordinary_A : A;
+fun ordination_N : N;
+fun ordnance_N : N;
+fun ordure_N : N;
+fun ore_N : N;
+fun oregon_PN : PN;
+fun organ_N : N;
+fun organ_blower_N : N;
+fun organ_grinder_N : N;
+fun organ_loft_N : N;
+fun organdie_N : N;
+fun organic_A : A;
+fun organically_Adv : Adv;
+fun organism_N : N;
+fun organist_N : N;
+fun organization_N : N;
+fun organizational_A : A;
+fun organize_V2 : V2;
+fun organize_V2V : V2V;
+fun organized_A : A;
+fun organizer_N : N;
+fun orgasm_N : N;
+fun orgiastic_A : A;
+fun orgy_N : N;
+fun oriel_N : N;
+fun orient_A : A;
+fun orient_N : N;
+fun orient_V2 : V2;
+fun oriental_A : A;
+fun oriental_N : N;
+fun orientalist_N : N;
+fun orientate_V2 : V2;
+fun orientation_N : N;
+fun orifice_N : N;
+fun origin_N : N;
+fun original_A : A;
+fun original_N : N;
+fun originality_N : N;
+fun originate_V : V;
+fun originate_V2 : V2;
+fun originator_N : N;
+fun oriole_N : N;
+fun orison_N : N;
+fun orkney_PN : PN;
+fun orleans_PN : PN;
+fun orlop_N : N;
+fun ormolu_N : N;
+fun ormskirk_PN : PN;
+fun ornament_N : N;
+fun ornament_V2 : V2;
+fun ornamental_A : A;
+fun ornamentation_N : N;
+fun ornate_A : A;
+fun ornateness_N : N;
+fun ornery_A : A;
+fun ornithological_A : A;
+fun ornithologist_N : N;
+fun ornithology_N : N;
+fun orotund_A : A;
+fun orphan_N : N;
+fun orphan_V2 : V2;
+fun orphanage_N : N;
+fun orrisroot_N : N;
+fun orthodontic_A : A;
+fun orthodontics_N : N;
+fun orthodontist_N : N;
+fun orthodox_A : A;
+fun orthodoxy_N : N;
+fun orthogonal_A : A;
+fun orthographic_A : A;
+fun orthography_N : N;
+fun orthopaedic_A : A;
+fun orthopaedics_N : N;
+fun orthopedic_A : A;
+fun orthopedics_N : N;
+fun ortolan_N : N;
+fun oryx_N : N;
+fun osaka_PN : PN;
+fun oscar_N : N;
+fun oscar_PN : PN;
+fun oscillate_V : V;
+fun oscillate_V2 : V2;
+fun oscillation_N : N;
+fun oscillator_N : N;
+fun oscillograph_N : N;
+fun oscilloscope_N : N;
+fun osier_N : N;
+fun oslo_PN : PN;
+fun osnabruck_PN : PN;
+fun osprey_N : N;
+fun osseous_A : A;
+fun ossett_PN : PN;
+fun ossification_N : N;
+fun ossify_V : V;
+fun ossify_V2 : V2;
+fun ostensible_A : A;
+fun ostentation_N : N;
+fun ostentatious_A : A;
+fun osteopath_N : N;
+fun osteopathy_N : N;
+fun ostler_N : N;
+fun ostracism_N : N;
+fun ostracize_V2 : V2;
+fun ostrich_N : N;
+fun oswald_PN : PN;
+fun oswestry_PN : PN;
+fun ot_N : N;
+fun otago_PN : PN;
+fun other_A : A;
+fun other_Adv : Adv;
+fun other_N : N;
+fun otherwise_Adv : Adv;
+fun otherworldly_A : A;
+fun otiose_A : A;
+fun otley_PN : PN;
+fun ottawa_PN : PN;
+fun otter_N : N;
+fun ottoman_N : N;
+fun oubliette_N : N;
+fun ouija_N : N;
+fun ouija_board_N : N;
+fun ounce_N : N;
+fun oust_V : V;
+fun oust_V2 : V2;
+fun out_Adv : Adv;
+fun out_Prep : Prep ;
+fun out_V2 : V2;
+fun out_herod_V2 : V2;
+fun out_of_date_A : A;
+fun out_of_door_A : A;
+fun out_of_doors_Adv : Adv;
+fun out_of_the_way_A : A;
+fun out_of_the_way_Adv : Adv;
+fun out_of_work_A : A;
+fun out_trade_V2 : V2;
+fun out_tray_N : N;
+fun outback_A : A;
+fun outback_N : N;
+fun outbalance_V2 : V2;
+fun outbid_V2 : V2;
+fun outboard_A : A;
+fun outbound_A : A;
+fun outbrave_V2 : V2;
+fun outbreak_N : N;
+fun outbuilding_N : N;
+fun outburst_N : N;
+fun outcast_A : A;
+fun outcast_N : N;
+fun outcaste_A : A;
+fun outcaste_N : N;
+fun outclass_V2 : V2;
+fun outcome_N : N;
+fun outcrop_N : N;
+fun outcry_N : N;
+fun outdated_A : A;
+fun outdistance_V2 : V2;
+fun outdo_V2 : V2;
+fun outdoor_A : A;
+fun outdoors_Adv : Adv;
+fun outer_A : A;
+fun outermost_A : A;
+fun outface_V2 : V2;
+fun outfall_N : N;
+fun outfield_N : N;
+fun outfielder_N : N;
+fun outfight_V2 : V2;
+fun outfit_N : N;
+fun outfit_V2 : V2;
+fun outfitter_N : N;
+fun outflank_V2 : V2;
+fun outflow_N : N;
+fun outfly_V2 : V2;
+fun outfox_V2 : V2;
+fun outgain_V2 : V2;
+fun outgo_N : N;
+fun outgo_V : V;
+fun outgoing_A : A;
+fun outgrow_V2 : V2;
+fun outgrowth_N : N;
+fun outhouse_N : N;
+fun outing_N : N;
+fun outlandish_A : A;
+fun outlandishness_N : N;
+fun outlast_V2 : V2;
+fun outlaw_N : N;
+fun outlaw_V2 : V2;
+fun outlawry_N : N;
+fun outlay_N : N;
+fun outleap_V2 : V2;
+fun outlet_N : N;
+fun outlier_N : N;
+fun outline_N : N;
+fun outline_V2 : V2;
+fun outlive_V2 : V2;
+fun outlook_N : N;
+fun outlying_A : A;
+fun outmanoeuvre_V2 : V2;
+fun outmarch_V2 : V2;
+fun outmatch_V2 : V2;
+fun outmoded_A : A;
+fun outmost_A : A;
+fun outnumber_V2 : V2;
+fun outpace_V2 : V2;
+fun outpatient_N : N;
+fun outperform_V2 : V2;
+fun outplay_V2 : V2;
+fun outpoint_V2 : V2;
+fun outport_N : N;
+fun outpost_N : N;
+fun outpouring_N : N;
+fun output_N : N;
+fun outrage_N : N;
+fun outrage_V2 : V2;
+fun outrageous_A : A;
+fun outrange_V2 : V2;
+fun outrank_V2 : V2;
+fun outre_A : A;
+fun outride_V2 : V2;
+fun outrider_N : N;
+fun outrigged_A : A;
+fun outrigger_N : N;
+fun outright_A : A;
+fun outright_Adv : Adv;
+fun outrival_V2 : V2;
+fun outrun_V2 : V2;
+fun outsail_V2 : V2;
+fun outsell_V2 : V2;
+fun outset_N : N;
+fun outshine_V2 : V2;
+fun outside_A : A;
+fun outside_Adv : Adv;
+fun outside_N : N;
+fun outside_Prep : Prep ;
+fun outsider_N : N;
+fun outsize_A : A;
+fun outsmart_V2 : V2;
+fun outspan_V : V;
+fun outspan_V2 : V2;
+fun outspoken_A : A;
+fun outspokenness_N : N;
+fun outspread_A : A;
+fun outstanding_A : A;
+fun outstation_N : N;
+fun outstay_V2 : V2;
+fun outstretched_A : A;
+fun outstrip_V2 : V2;
+fun outvie_V2 : V2;
+fun outvote_V2 : V2;
+fun outward_A : A;
+fun outward_Adv : Adv;
+fun outwards_Adv : Adv;
+fun outwear_V2 : V2;
+fun outweigh_V2 : V2;
+fun outwit_V2 : V2;
+fun outwork_N : N;
+fun ouzel_N : N;
+fun ouzo_N : N;
+fun oval_A : A;
+fun oval_N : N;
+fun ovary_N : N;
+fun ovation_N : N;
+fun oven_N : N;
+fun ovenware_N : N;
+fun over_Adv : Adv;
+fun over_N : N;
+fun over_Prep : Prep ;
+fun over_abundance_N : N;
+fun over_magazine_V2 : V2;
+fun over_ripe_A : A;
+fun overabundant_A : A;
+fun overact_V : V;
+fun overact_V2 : V2;
+fun overactive_A : A;
+fun overall_A : A;
+fun overall_N : N;
+fun overambitious_A : A;
+fun overanxiety_N : N;
+fun overanxious_A : A;
+fun overarch_V : V;
+fun overarch_V2 : V2;
+fun overarm_A : A;
+fun overarm_Adv : Adv;
+fun overawe_V2 : V2;
+fun overbalance_V : V;
+fun overbalance_V2 : V2;
+fun overbear_V2 : V2;
+fun overbearing_A : A;
+fun overbid_N : N;
+fun overbid_V : V;
+fun overbid_V2 : V2;
+fun overblown_A : A;
+fun overboard_Adv : Adv;
+fun overbold_A : A;
+fun overburden_N : N;
+fun overburden_V2 : V2;
+fun overbusy_A : A;
+fun overcall_V : V;
+fun overcall_V2 : V2;
+fun overcapitalization_N : N;
+fun overcapitalize_V2 : V2;
+fun overcareful_A : A;
+fun overcast_A : A;
+fun overcast_N : N;
+fun overcautious_A : A;
+fun overcharge_N : N;
+fun overcharge_V : V;
+fun overcharge_V2 : V2;
+fun overclothe_V2 : V2;
+fun overcloud_V : V;
+fun overcloud_V2 : V2;
+fun overcoat_N : N;
+fun overcome_V : V;
+fun overcome_V2 : V2;
+fun overcommit_V2 : V2;
+fun overconfidence_N : N;
+fun overconfident_A : A;
+fun overcook_V2 : V2;
+fun overcredulity_N : N;
+fun overcredulous_A : A;
+fun overcritical_A : A;
+fun overcrop_V2 : V2;
+fun overcrowd_V2 : V2;
+fun overcurious_A : A;
+fun overdelicate_A : A;
+fun overdo_V2 : V2;
+fun overdose_V : V;
+fun overdraft_N : N;
+fun overdraw_V : V;
+fun overdraw_V2 : V2;
+fun overdress_V : V;
+fun overdress_V2 : V2;
+fun overdrive_N : N;
+fun overdue_A : A;
+fun overeager_A : A;
+fun overeat_V : V;
+fun overemotional_A : A;
+fun overemphasis_N : N;
+fun overemphasize_V : V;
+fun overemphasize_V2 : V2;
+fun overenthusiastic_A : A;
+fun overestimate_V2 : V2;
+fun overexcited_A : A;
+fun overexert_V2 : V2;
+fun overexertion_N : N;
+fun overexpose_V2 : V2;
+fun overexposure_N : N;
+fun overfamiliar_A : A;
+fun overfeed_V : V;
+fun overfeed_V2 : V2;
+fun overfeeding_N : N;
+fun overflow_N : N;
+fun overflow_V : V;
+fun overflow_V2 : V2;
+fun overfly_V2 : V2;
+fun overfond_A : A;
+fun overfull_A : A;
+fun overgenerous_A : A;
+fun overgreedy_A : A;
+fun overgrown_A : A;
+fun overgrowth_N : N;
+fun overhand_A : A;
+fun overhang_N : N;
+fun overhang_V : V;
+fun overhang_V2 : V2;
+fun overhasty_A : A;
+fun overhaul_N : N;
+fun overhaul_V2 : V2;
+fun overhead_A : A;
+fun overhead_Adv : Adv;
+fun overhear_V2 : V2;
+fun overheat_V2 : V2;
+fun overindulge_V : V;
+fun overindulge_V2 : V2;
+fun overindulgence_N : N;
+fun overjealous_A : A;
+fun overjoyed_A : A;
+fun overkill_N : N;
+fun overladen_A : A;
+fun overland_A : A;
+fun overlap_N : N;
+fun overlap_V : V;
+fun overlap_V2 : V2;
+fun overlarge_A : A;
+fun overlay_N : N;
+fun overlay_V2 : V2;
+fun overleaf_Adv : Adv;
+fun overleap_V2 : V2;
+fun overlie_V : V;
+fun overload_V2 : V2;
+fun overlook_V2 : V2;
+fun overlord_N : N;
+fun overly_Adv : Adv;
+fun overmantel_N : N;
+fun overmaster_V2 : V2;
+fun overmodest_A : A;
+fun overmuch_A : A;
+fun overmuch_Adv : Adv;
+fun overnervous_A : A;
+fun overnight_A : A;
+fun overnight_Adv : Adv;
+fun overpass_N : N;
+fun overpay_V : V;
+fun overpay_V2 : V2;
+fun overpayment_N : N;
+fun overplant_V2 : V2;
+fun overplay_V2 : V2;
+fun overplus_N : N;
+fun overpopulation_N : N;
+fun overpower_V2 : V2;
+fun overpowering_A : A;
+fun overpraise_V2 : V2;
+fun overprice_V2 : V2;
+fun overprint_N : N;
+fun overprint_V2 : V2;
+fun overproduce_V : V;
+fun overproduce_V2 : V2;
+fun overproduction_N : N;
+fun overproud_A : A;
+fun overrate_V2 : V2;
+fun overreach_V2 : V2;
+fun overreact_V : V;
+fun override_V2 : V2;
+fun overripe_A : A;
+fun overrule_V2 : V2;
+fun overrun_V2 : V2;
+fun oversea_A : A;
+fun oversea_Adv : Adv;
+fun overseas_A : A;
+fun overseas_Adv : Adv;
+fun oversee_V2 : V2;
+fun overseer_N : N;
+fun oversell_V2 : V2;
+fun oversensitive_A : A;
+fun overserious_A : A;
+fun oversew_V2 : V2;
+fun oversewn_A : A;
+fun oversexed_A : A;
+fun overshadow_V2 : V2;
+fun overshoe_N : N;
+fun overshoot_V2 : V2;
+fun overshot_A : A;
+fun overside_Adv : Adv;
+fun oversight_N : N;
+fun oversimplify_V : V;
+fun oversimplify_V2 : V2;
+fun oversize_A : A;
+fun overskirt_N : N;
+fun oversleep_V : V;
+fun overspend_V : V;
+fun overspend_V2 : V2;
+fun overspill_N : N;
+fun overstate_V2 : V2;
+fun overstatement_N : N;
+fun overstay_V2 : V2;
+fun overstep_V2 : V2;
+fun overstock_V2 : V2;
+fun overstrain_N : N;
+fun overstrain_V2 : V2;
+fun overstrung_A : A;
+fun overstuffed_A : A;
+fun oversubscribe_V2 : V2;
+fun oversubscribed_A : A;
+fun oversuspicious_A : A;
+fun overt_A : A;
+fun overtake_V2 : V2;
+fun overtax_V2 : V2;
+fun overthrow_N : N;
+fun overthrow_V2 : V2;
+fun overtime_Adv : Adv;
+fun overtime_N : N;
+fun overtolerance_N : N;
+fun overtone_N : N;
+fun overtop_V2 : V2;
+fun overtrump_V2 : V2;
+fun overture_N : N;
+fun overturn_V : V;
+fun overturn_V2 : V2;
+fun overvalue_V2 : V2;
+fun overweening_A : A;
+fun overweight_A : A;
+fun overweight_N : N;
+fun overweighted_A : A;
+fun overwhelm_V2 : V2;
+fun overwhelmingly_Adv : Adv;
+fun overwork_N : N;
+fun overwork_V : V;
+fun overwork_V2 : V2;
+fun overwrought_A : A;
+fun overzealous_A : A;
+fun oviduct_N : N;
+fun oviedo_PN : PN;
+fun oviparous_A : A;
+fun ovoid_A : A;
+fun ovoid_N : N;
+fun ovum_N : N;
+fun owe_V : V;
+fun owe_V2 : V2;
+fun owing_A : A;
+fun owl_N : N;
+fun owlet_N : N;
+fun owlish_A : A;
+fun own_A : A;
+fun own_V : V;
+fun own_V2 : V2;
+fun owner_N : N;
+fun owner_driven_A : A;
+fun owner_driver_N : N;
+fun owner_occupied_A : A;
+fun owner_occupier_N : N;
+fun ownerless_A : A;
+fun ownership_N : N;
+fun ox_N : N;
+fun oxbridge_PN : PN;
+fun oxeye_N : N;
+fun oxeyed_A : A;
+fun oxford_PN : PN;
+fun oxfordshire_PN : PN;
+fun oxidation_N : N;
+fun oxide_N : N;
+fun oxidization_N : N;
+fun oxidize_V : V;
+fun oxidize_V2 : V2;
+fun oxon_PN : PN;
+fun oxonian_A : A;
+fun oxonian_N : N;
+fun oxtail_N : N;
+fun oxted_PN : PN;
+fun oxyacetylene_A : A;
+fun oxyacetylene_N : N;
+fun oxygen_N : N;
+fun oxygenate_V2 : V2;
+fun oxygenize_V2 : V2;
+fun oyster_N : N;
+fun oyster_bank_N : N;
+fun oyster_bar_N : N;
+fun oyster_bed_N : N;
+fun oyster_catcher_N : N;
+fun oz_N : N;
+fun ozone_N : N;
+fun ozzie_PN : PN;
+fun pa_N : N;
+fun pabulum_N : N;
+fun pace_N : N;
+fun pace_V : V;
+fun pace_V2 : V2;
+fun pacemaker_N : N;
+fun pacesetter_N : N;
+fun pachyderm_N : N;
+fun pacific_A : A;
+fun pacific_PN : PN;
+fun pacifically_Adv : Adv;
+fun pacification_N : N;
+fun pacifism_N : N;
+fun pacifist_N : N;
+fun pacify_V2 : V2;
+fun pack_N : N;
+fun pack_V : V;
+fun pack_V2 : V2;
+fun pack_animal_N : N;
+fun pack_saddle_N : N;
+fun pack_thread_N : N;
+fun package_N : N;
+fun package_V2 : V2;
+fun packer_N : N;
+fun packet_N : N;
+fun packet_boat_N : N;
+fun packhorse_N : N;
+fun packing_N : N;
+fun packing_case_N : N;
+fun packing_needle_N : N;
+fun pact_N : N;
+fun pad_N : N;
+fun pad_V : V;
+fun pad_V2 : V2;
+fun padding_N : N;
+fun paddle_N : N;
+fun paddle_V : V;
+fun paddle_V2 : V2;
+fun paddle_box_N : N;
+fun paddle_steamer_N : N;
+fun paddle_wheel_N : N;
+fun paddock_N : N;
+fun paddy_N : N;
+fun paddy_PN : PN;
+fun paddy_field_N : N;
+fun paddy_wagon_N : N;
+fun padlock_N : N;
+fun padlock_V2 : V2;
+fun padova_PN : PN;
+fun padre_N : N;
+fun padua_PN : PN;
+fun paean_N : N;
+fun paederasty_N : N;
+fun paediatrics_N : N;
+fun paeony_N : N;
+fun pagan_A : A;
+fun pagan_N : N;
+fun paganism_N : N;
+fun page_N : N;
+fun page_V2 : V2;
+fun pageant_N : N;
+fun pageantry_N : N;
+fun pagination_N : N;
+fun pagoda_N : N;
+fun pail_N : N;
+fun pailful_N : N;
+fun paillasse_N : N;
+fun pailliasse_N : N;
+fun pain_N : N;
+fun pain_V2 : V2;
+fun pained_A : A;
+fun painful_A : A;
+fun painkiller_N : N;
+fun painless_A : A;
+fun painstaking_A : A;
+fun paint_N : N;
+fun paint_V : V;
+fun paint_V2 : V2;
+fun paintbox_N : N;
+fun paintbrush_N : N;
+fun painter_N : N;
+fun painting_N : N;
+fun pair_N : N;
+fun pair_V : V;
+fun pair_V2 : V2;
+fun paisley_N : N;
+fun paisley_PN : PN;
+fun pakistan_PN : PN;
+fun pakistani_A : A;
+fun pakistani_N : N;
+fun pal_N : N;
+fun pal_V : V;
+fun palace_N : N;
+fun paladin_N : N;
+fun palaeolithic_A : A;
+fun palaeontologist_N : N;
+fun palaeontology_N : N;
+fun palankeen_N : N;
+fun palanquin_N : N;
+fun palatable_A : A;
+fun palatal_A : A;
+fun palatal_N : N;
+fun palate_N : N;
+fun palatial_A : A;
+fun palatinate_N : N;
+fun palaver_N : N;
+fun palaver_V : V;
+fun pale_A : A;
+fun pale_N : N;
+fun pale_V : V;
+fun paleface_N : N;
+fun palembang_PN : PN;
+fun paleness_N : N;
+fun paleolithic_A : A;
+fun paleontologist_N : N;
+fun paleontology_N : N;
+fun palermo_PN : PN;
+fun palestine_PN : PN;
+fun palestinian_A : A;
+fun palestinian_N : N;
+fun palette_N : N;
+fun palette_knife_N : N;
+fun palfrey_N : N;
+fun palimpsest_N : N;
+fun palindrome_N : N;
+fun paling_N : N;
+fun palisade_N : N;
+fun palisade_V2 : V2;
+fun palish_A : A;
+fun pall_N : N;
+fun pall_V : V;
+fun pallbearer_N : N;
+fun pallet_N : N;
+fun palliasse_N : N;
+fun palliate_V2 : V2;
+fun palliation_N : N;
+fun palliative_A : A;
+fun palliative_N : N;
+fun pallid_A : A;
+fun pallidness_N : N;
+fun pallor_N : N;
+fun pally_A : A;
+fun palm_N : N;
+fun palm_V2 : V2;
+fun palm_oil_N : N;
+fun palmer_N : N;
+fun palmetto_N : N;
+fun palmist_N : N;
+fun palmistry_N : N;
+fun palmy_A : A;
+fun palpable_A : A;
+fun palpitate_V : V;
+fun palpitation_N : N;
+fun palsy_N : N;
+fun palsy_V2 : V2;
+fun palter_V : V;
+fun paltry_A : A;
+fun pam_PN : PN;
+fun pamela_PN : PN;
+fun pampas_grass_N : N;
+fun pamper_V2 : V2;
+fun pamphlet_N : N;
+fun pamphleteer_N : N;
+fun pamplona_PN : PN;
+fun pan_N : N;
+fun pan_V : V;
+fun pan_V2 : V2;
+fun panacea_N : N;
+fun panache_N : N;
+fun panama_N : N;
+fun panama_PN : PN;
+fun panamanian_A : A;
+fun panamanian_N : N;
+fun panatella_N : N;
+fun pancake_N : N;
+fun panchromatic_A : A;
+fun pancreas_N : N;
+fun pancreatic_A : A;
+fun panda_N : N;
+fun pandemic_A : A;
+fun pandemic_N : N;
+fun pandemonium_N : N;
+fun pander_N : N;
+fun pander_V : V;
+fun pane_N : N;
+fun panegyric_N : N;
+fun panel_N : N;
+fun panel_V2 : V2;
+fun panelling_N : N;
+fun pang_N : N;
+fun panga_N : N;
+fun panhandle_N : N;
+fun panhandle_V : V;
+fun panic_N : N;
+fun panic_V : V;
+fun panic_V2 : V2;
+fun panic_stricken_A : A;
+fun panicky_A : A;
+fun panjandrum_N : N;
+fun pannier_N : N;
+fun pannikin_N : N;
+fun panoplied_A : A;
+fun panoply_N : N;
+fun panoptic_A : A;
+fun panorama_N : N;
+fun panoramic_A : A;
+fun pansy_N : N;
+fun pant_N : N;
+fun pant_V : V;
+fun pant_V2 : V2;
+fun pantaloon_N : N;
+fun pantechnicon_N : N;
+fun pantheism_N : N;
+fun pantheist_N : N;
+fun pantheistic_A : A;
+fun pantheon_N : N;
+fun panther_N : N;
+fun pantile_N : N;
+fun pantingly_Adv : Adv;
+fun panto_N : N;
+fun pantograph_N : N;
+fun pantomime_N : N;
+fun pantry_N : N;
+fun pantryman_N : N;
+fun panty_hose_N : N;
+fun panzer_A : A;
+fun paotow_PN : PN;
+fun pap_N : N;
+fun papa_N : N;
+fun papacy_N : N;
+fun papal_A : A;
+fun papaw_N : N;
+fun papaya_N : N;
+fun paper_N : N;
+fun paper_V2 : V2;
+fun paper_chase_N : N;
+fun paperback_N : N;
+fun paperbacked_A : A;
+fun paperclip_N : N;
+fun paperhanger_N : N;
+fun paperknife_N : N;
+fun paperless_A : A;
+fun papermill_N : N;
+fun paperweight_N : N;
+fun paperwork_N : N;
+fun papier_mache_N : N;
+fun papist_A : A;
+fun papist_N : N;
+fun papoose_N : N;
+fun paprika_N : N;
+fun papua_PN : PN;
+fun papuan_A : A;
+fun papuan_N : N;
+fun papyrus_N : N;
+fun par_N : N;
+fun par_excellence_Adv : Adv;
+fun para_N : N;
+fun parable_N : N;
+fun parabola_N : N;
+fun parabolic_A : A;
+fun parabolical_A : A;
+fun parachute_N : N;
+fun parachute_V : V;
+fun parachute_V2 : V2;
+fun parachutist_N : N;
+fun parade_N : N;
+fun parade_V : V;
+fun parade_V2 : V2;
+fun parade_ground_N : N;
+fun paradigm_N : N;
+fun paradise_N : N;
+fun paradisiac_A : A;
+fun paradisiacal_A : A;
+fun paradox_N : N;
+fun paradoxical_A : A;
+fun paraffin_N : N;
+fun paragon_N : N;
+fun paragraph_N : N;
+fun paragraph_V2 : V2;
+fun paraguay_PN : PN;
+fun paraguayan_A : A;
+fun paraguayan_N : N;
+fun parakeet_N : N;
+fun parallel_A : A;
+fun parallel_N : N;
+fun parallel_V2 : V2;
+fun parallelism_N : N;
+fun parallelogram_N : N;
+fun paralyse_V2 : V2;
+fun paralysis_N : N;
+fun paralytic_A : A;
+fun paralytic_N : N;
+fun paralyze_V2 : V2;
+fun parameter_N : N;
+fun paramilitary_A : A;
+fun paramount_A : A;
+fun paramountcy_N : N;
+fun paramour_N : N;
+fun paranoia_N : N;
+fun paranoiac_N : N;
+fun paranoid_A : A;
+fun paranoid_N : N;
+fun parapet_N : N;
+fun paraphernalia_N : N;
+fun paraphrase_V2 : V2;
+fun paraplegia_N : N;
+fun paraplegic_A : A;
+fun paraplegic_N : N;
+fun parasite_N : N;
+fun parasitic_A : A;
+fun parasitical_A : A;
+fun parasol_N : N;
+fun paratrooper_N : N;
+fun paratyphoid_N : N;
+fun parboil_V2 : V2;
+fun parcel_N : N;
+fun parcel_V2 : V2;
+fun parch_V2 : V2;
+fun parchment_N : N;
+fun pardon_N : N;
+fun pardon_V2 : V2;
+fun pardonable_A : A;
+fun pardoner_N : N;
+fun pare_V2 : V2;
+fun paregoric_N : N;
+fun parent_N : N;
+fun parentage_N : N;
+fun parental_A : A;
+fun parenthesis_N : N;
+fun parenthetic_A : A;
+fun parenthetical_A : A;
+fun pari_mutuel_N : N;
+fun pari_passu_Adv : Adv;
+fun pariah_N : N;
+fun pariah_dog_N : N;
+fun paris_PN : PN;
+fun parish_N : N;
+fun parishioner_N : N;
+fun parisian_A : A;
+fun parisian_N : N;
+fun parity_N : N;
+fun park_N : N;
+fun park_V : V;
+fun park_V2 : V2;
+fun parka_N : N;
+fun parking_N : N;
+fun parkinson's_A : A;
+fun parky_A : A;
+fun parlance_N : N;
+fun parley_N : N;
+fun parley_V : V;
+fun parliament_N : N;
+fun parliamentarian_N : N;
+fun parliamentary_A : A;
+fun parlour_N : N;
+fun parlour_car_N : N;
+fun parlous_A : A;
+fun parma_PN : PN;
+fun parmesan_N : N;
+fun parochial_A : A;
+fun parochialism_N : N;
+fun parodist_N : N;
+fun parody_N : N;
+fun parody_V2 : V2;
+fun parole_N : N;
+fun parole_V2 : V2;
+fun paroquet_N : N;
+fun paroxysm_N : N;
+fun parquet_N : N;
+fun parr_N : N;
+fun parricide_N : N;
+fun parrot_N : N;
+fun parry_N : N;
+fun parry_V2 : V2;
+fun parse_V2 : V2;
+fun parsee_N : N;
+fun parsimonious_A : A;
+fun parsimony_N : N;
+fun parsley_N : N;
+fun parsnip_N : N;
+fun parson_N : N;
+fun parsonage_N : N;
+fun part_Adv : Adv;
+fun part_N : N;
+fun part_V : V;
+fun part_V2 : V2;
+fun part_owner_N : N;
+fun part_singing_N : N;
+fun part_song_N : N;
+fun part_time_A : A;
+fun part_time_Adv : Adv;
+fun part_timer_N : N;
+fun partake_V : V;
+fun partake_V2 : V2;
+fun parterre_N : N;
+fun parthenogenesis_N : N;
+fun parthian_A : A;
+fun parti_coloured_A : A;
+fun partial_A : A;
+fun partiality_N : N;
+fun participant_N : N;
+fun participate_V : V;
+fun participate_V2 : V2;
+fun participation_N : N;
+fun participial_A : A;
+fun participle_N : N;
+fun particle_N : N;
+fun particular_A : A;
+fun particular_N : N;
+fun particularity_N : N;
+fun particularize_V : V;
+fun particularize_V2 : V2;
+fun parting_N : N;
+fun partisan_A : A;
+fun partisan_N : N;
+fun partisanship_N : N;
+fun partition_N : N;
+fun partition_V2 : V2;
+fun partitive_A : A;
+fun partitive_N : N;
+fun partly_Adv : Adv;
+fun partner_N : N;
+fun partner_V2 : V2;
+fun partnership_N : N;
+fun partridge_N : N;
+fun parturition_N : N;
+fun party_N : N;
+fun party_spirit_N : N;
+fun party_spirited_A : A;
+fun party_wall_N : N;
+fun parvenu_N : N;
+fun paschal_A : A;
+fun pasha_N : N;
+fun pashto_N : N;
+fun pass_N : N;
+fun pass_V : V;
+fun pass_V2 : V2;
+fun passable_A : A;
+fun passage_N : N;
+fun passageway_N : N;
+fun passbook_N : N;
+fun passe_A : A;
+fun passee_A : A;
+fun passenger_N : N;
+fun passepartout_N : N;
+fun passer_by_N : N;
+fun passim_Adv : Adv;
+fun passing_A : A;
+fun passing_Adv : Adv;
+fun passing_N : N;
+fun passing_out_A : A;
+fun passion_N : N;
+fun passion_flower_N : N;
+fun passionate_A : A;
+fun passionless_A : A;
+fun passive_A : A;
+fun passive_N : N;
+fun passiveness_N : N;
+fun passivity_N : N;
+fun passkey_N : N;
+fun passover_N : N;
+fun passport_N : N;
+fun password_N : N;
+fun past_A : A;
+fun past_Adv : Adv;
+fun past_N : N;
+fun past_Prep : Prep ;
+fun pasta_N : N;
+fun paste_N : N;
+fun paste_V2 : V2;
+fun paste_up_N : N;
+fun pasteboard_N : N;
+fun pastel_N : N;
+fun pastern_N : N;
+fun pasteurization_N : N;
+fun pasteurize_V2 : V2;
+fun pastiche_N : N;
+fun pastille_N : N;
+fun pastime_N : N;
+fun pasting_N : N;
+fun pastor_N : N;
+fun pastoral_A : A;
+fun pastoral_N : N;
+fun pastorate_N : N;
+fun pastry_N : N;
+fun pastry_cook_N : N;
+fun pasturage_N : N;
+fun pasture_N : N;
+fun pasture_V : V;
+fun pasture_V2 : V2;
+fun pasty_A : A;
+fun pasty_N : N;
+fun pat_Adv : Adv;
+fun pat_N : N;
+fun pat_PN : PN;
+fun pat_V : V;
+fun pat_V2 : V2;
+fun patch_N : N;
+fun patch_V2 : V2;
+fun patch_pocket_N : N;
+fun patchily_Adv : Adv;
+fun patchiness_N : N;
+fun patchouli_N : N;
+fun patchwork_N : N;
+fun patchy_A : A;
+fun pate_1_N : N;
+fun pate_2_N : N;
+fun pate_de_foie_gras_N : N;
+fun patella_N : N;
+fun patent_A : A;
+fun patent_N : N;
+fun patent_V2 : V2;
+fun patentee_N : N;
+fun paterfamilias_N : N;
+fun paternal_A : A;
+fun paternalism_N : N;
+fun paternity_N : N;
+fun paternoster_N : N;
+fun path_N : N;
+fun path_finder_N : N;
+fun pathetic_A : A;
+fun pathetically_Adv : Adv;
+fun pathless_A : A;
+fun pathogen_N : N;
+fun pathological_A : A;
+fun pathologist_N : N;
+fun pathology_N : N;
+fun pathos_N : N;
+fun pathway_N : N;
+fun patience_N : N;
+fun patience_PN : PN;
+fun patient_A : A;
+fun patient_N : N;
+fun patina_N : N;
+fun patio_N : N;
+fun patisserie_N : N;
+fun patois_N : N;
+fun patrai_PN : PN;
+fun patrial_N : N;
+fun patriarch_N : N;
+fun patriarchal_A : A;
+fun patriarchate_N : N;
+fun patriarchy_N : N;
+fun patricia_PN : PN;
+fun patrician_A : A;
+fun patrician_N : N;
+fun patricide_N : N;
+fun patrick_PN : PN;
+fun patrimonial_A : A;
+fun patrimony_N : N;
+fun patriot_N : N;
+fun patriotic_A : A;
+fun patriotically_Adv : Adv;
+fun patriotism_N : N;
+fun patrol_N : N;
+fun patrol_V : V;
+fun patrol_V2 : V2;
+fun patrolman_N : N;
+fun patron_N : N;
+fun patronage_N : N;
+fun patroness_N : N;
+fun patronize_V2 : V2;
+fun patronizing_A : A;
+fun patronymic_A : A;
+fun patronymic_N : N;
+fun patten_N : N;
+fun patter_N : N;
+fun patter_V : V;
+fun patter_V2 : V2;
+fun pattern_N : N;
+fun pattern_V2 : V2;
+fun patty_N : N;
+fun patty_PN : PN;
+fun patty_pan_N : N;
+fun paucity_N : N;
+fun paul_PN : PN;
+fun paula_PN : PN;
+fun pauline_PN : PN;
+fun paunch_N : N;
+fun paunchiness_N : N;
+fun paunchy_A : A;
+fun pauper_N : N;
+fun pauperism_N : N;
+fun pauperization_N : N;
+fun pauperize_V2 : V2;
+fun pause_N : N;
+fun pause_V : V;
+fun pause_V2V : V2V;
+fun pause_VS : VS;
+fun pave_V2 : V2;
+fun pavement_N : N;
+fun pavilion_N : N;
+fun paving_stone_N : N;
+fun paw_N : N;
+fun paw_V : V;
+fun paw_V2 : V2;
+fun pawky_A : A;
+fun pawl_N : N;
+fun pawn_N : N;
+fun pawn_V2 : V2;
+fun pawn_ticket_N : N;
+fun pawnbroker_N : N;
+fun pawnshop_N : N;
+fun pawpaw_N : N;
+fun pax_N : N;
+fun pax_romana_N : N;
+fun pay_N : N;
+fun pay_V : V;
+fun pay_V2 : V2;
+fun pay_V2V : V2V;
+fun pay_VS : VS;
+fun pay_as_you_earn_N : N;
+fun pay_claim_N : N;
+fun pay_packet_N : N;
+fun pay_station_N : N;
+fun payable_A : A;
+fun payday_N : N;
+fun paydirt_N : N;
+fun paye_PN : PN;
+fun payee_N : N;
+fun payer_N : N;
+fun payload_N : N;
+fun paymaster_N : N;
+fun payment_N : N;
+fun paynim_N : N;
+fun payoff_N : N;
+fun payphone_N : N;
+fun payroll_N : N;
+fun paysheet_N : N;
+fun payslip_N : N;
+fun pc_PN : PN;
+fun pdsa_N : N;
+fun pe_N : N;
+fun pea_N : N;
+fun pea_chick_N : N;
+fun pea_flour_N : N;
+fun pea_green_A : A;
+fun pea_green_N : N;
+fun pea_jacket_N : N;
+fun pea_soup_N : N;
+fun peace_N : N;
+fun peace_offering_N : N;
+fun peaceable_A : A;
+fun peaceful_A : A;
+fun peacefulness_N : N;
+fun peacehaven_PN : PN;
+fun peacemaker_N : N;
+fun peacetime_N : N;
+fun peach_N : N;
+fun peach_V : V;
+fun peach_V2 : V2;
+fun peacock_N : N;
+fun peacock_blue_A : A;
+fun peacock_blue_N : N;
+fun peafowl_N : N;
+fun peahen_N : N;
+fun peak_N : N;
+fun peak_V : V;
+fun peak_V2 : V2;
+fun peaked_A : A;
+fun peaky_A : A;
+fun peal_N : N;
+fun peal_V : V;
+fun peal_V2 : V2;
+fun peanut_N : N;
+fun pear_N : N;
+fun pearl_N : N;
+fun pearl_PN : PN;
+fun pearl_V : V;
+fun pearl_barley_N : N;
+fun pearl_diver_N : N;
+fun pearl_fishery_N : N;
+fun pearl_oyster_N : N;
+fun pearl_sago_N : N;
+fun pearly_A : A;
+fun pearmain_N : N;
+fun peasant_N : N;
+fun peasantry_N : N;
+fun pease_N : N;
+fun pease_pudding_N : N;
+fun peashooter_N : N;
+fun peasouper_N : N;
+fun peat_N : N;
+fun peaty_A : A;
+fun pebble_N : N;
+fun pebbly_A : A;
+fun pecan_N : N;
+fun peccable_A : A;
+fun peccadillo_N : N;
+fun peccary_N : N;
+fun peck_N : N;
+fun peck_V : V;
+fun peck_V2 : V2;
+fun pecker_N : N;
+fun peckish_A : A;
+fun pectic_A : A;
+fun pectin_N : N;
+fun pectoral_A : A;
+fun peculate_V : V;
+fun peculate_V2 : V2;
+fun peculation_N : N;
+fun peculiar_A : A;
+fun peculiarity_N : N;
+fun pecuniary_A : A;
+fun pedagogic_A : A;
+fun pedagogical_A : A;
+fun pedagogue_N : N;
+fun pedagogy_N : N;
+fun pedal_A : A;
+fun pedal_N : N;
+fun pedal_V : V;
+fun pedal_V2 : V2;
+fun pedant_N : N;
+fun pedantic_A : A;
+fun pedantically_Adv : Adv;
+fun pedantry_N : N;
+fun peddle_V : V;
+fun peddle_V2 : V2;
+fun peddler_N : N;
+fun peddling_A : A;
+fun pederast_N : N;
+fun pederasty_N : N;
+fun pedestal_N : N;
+fun pedestrian_A : A;
+fun pedestrian_N : N;
+fun pediatrician_N : N;
+fun pediatrics_N : N;
+fun pedicab_N : N;
+fun pedicure_N : N;
+fun pedigree_N : N;
+fun pediment_N : N;
+fun pedlar_N : N;
+fun pedometer_N : N;
+fun pee_N : N;
+fun pee_V : V;
+fun peebles_PN : PN;
+fun peek_N : N;
+fun peek_V : V;
+fun peek_a_boo_N : N;
+fun peel_N : N;
+fun peel_V : V;
+fun peel_V2 : V2;
+fun peeler_N : N;
+fun peep_N : N;
+fun peep_V : V;
+fun peeper_N : N;
+fun peephole_N : N;
+fun peepshow_N : N;
+fun peepul_N : N;
+fun peer_N : N;
+fun peer_V : V;
+fun peerage_N : N;
+fun peeress_N : N;
+fun peerless_A : A;
+fun peeve_V2 : V2;
+fun peeved_A : A;
+fun peevish_A : A;
+fun peevishness_N : N;
+fun peewit_N : N;
+fun peg_N : N;
+fun peg_PN : PN;
+fun peg_V : V;
+fun peg_V2 : V2;
+fun peggy_PN : PN;
+fun peignoir_N : N;
+fun pejorative_A : A;
+fun peke_N : N;
+fun pekinese_N : N;
+fun peking_PN : PN;
+fun pekoe_N : N;
+fun pelf_N : N;
+fun pelican_N : N;
+fun pelisse_N : N;
+fun pell_mell_Adv : Adv;
+fun pellet_N : N;
+fun pellucid_A : A;
+fun pelmet_N : N;
+fun pelota_N : N;
+fun pelt_N : N;
+fun pelt_V : V;
+fun pelt_V2 : V2;
+fun pelton_PN : PN;
+fun pelvic_A : A;
+fun pelvis_N : N;
+fun pembroke_PN : PN;
+fun pemmican_N : N;
+fun pen_N : N;
+fun pen_V2 : V2;
+fun pen_and_ink_N : N;
+fun pen_friend_N : N;
+fun pen_name_N : N;
+fun pen_pusher_N : N;
+fun penal_A : A;
+fun penalization_N : N;
+fun penalize_V2 : V2;
+fun penalty_N : N;
+fun penance_N : N;
+fun penarth_PN : PN;
+fun penchant_N : N;
+fun pencil_N : N;
+fun pencil_V2 : V2;
+fun pend_V : V;
+fun pend_V2 : V2;
+fun pendant_N : N;
+fun pendent_A : A;
+fun pending_A : A;
+fun pending_Prep : Prep ;
+fun pendlebury_PN : PN;
+fun pendulous_A : A;
+fun pendulum_N : N;
+fun penelope_PN : PN;
+fun penetrability_N : N;
+fun penetrable_A : A;
+fun penetrate_V : V;
+fun penetrate_V2 : V2;
+fun penetrating_A : A;
+fun penetration_N : N;
+fun penetrative_A : A;
+fun penguin_N : N;
+fun penicillin_N : N;
+fun penicuik_PN : PN;
+fun peninsula_N : N;
+fun peninsular_A : A;
+fun penis_N : N;
+fun penitence_N : N;
+fun penitent_A : A;
+fun penitent_N : N;
+fun penitential_A : A;
+fun penitentiary_A : A;
+fun penitentiary_N : N;
+fun penki_PN : PN;
+fun penknife_N : N;
+fun penmanship_N : N;
+fun penn'orth_N : N;
+fun pennant_N : N;
+fun penniless_A : A;
+fun pennon_N : N;
+fun pennsylvania_PN : PN;
+fun penny_N : N;
+fun penny_PN : PN;
+fun pennyweight_N : N;
+fun pennyworth_N : N;
+fun penology_N : N;
+fun penrhyn_PN : PN;
+fun penrith_PN : PN;
+fun penryn_PN : PN;
+fun pension_N : N;
+fun pension_V2 : V2;
+fun pensionable_A : A;
+fun pensioner_N : N;
+fun pensive_A : A;
+fun pensiveness_N : N;
+fun penstock_N : N;
+fun pent_up_A : A;
+fun pentagon_N : N;
+fun pentagonal_A : A;
+fun pentameter_N : N;
+fun pentateuch_N : N;
+fun pentathlon_N : N;
+fun pentecost_N : N;
+fun pentecostal_A : A;
+fun penthouse_N : N;
+fun penultimate_A : A;
+fun penultimate_N : N;
+fun penumbra_N : N;
+fun penurious_A : A;
+fun penuriousness_N : N;
+fun penury_N : N;
+fun penzance_PN : PN;
+fun peon_N : N;
+fun peonage_N : N;
+fun peony_N : N;
+fun people_N : N;
+fun people_V2 : V2;
+fun pep_N : N;
+fun pep_V2 : V2;
+fun pepper_N : N;
+fun pepper_V2 : V2;
+fun pepper_and_salt_N : N;
+fun pepper_mill_N : N;
+fun pepper_pot_N : N;
+fun peppercorn_N : N;
+fun peppermint_N : N;
+fun peppery_A : A;
+fun pepsin_N : N;
+fun peptic_A : A;
+fun per_Prep : Prep ;
+fun peradventure_Adv : Adv;
+fun perambulate_V : V;
+fun perambulate_V2 : V2;
+fun perambulation_N : N;
+fun perambulator_N : N;
+fun perceivable_A : A;
+fun perceive_V2 : V2;
+fun perceive_V2V : V2V;
+fun perceive_VS : VS;
+fun perceiver_N : N;
+fun percent_N : N;
+fun percentage_N : N;
+fun perceptibility_N : N;
+fun perceptible_A : A;
+fun perception_N : N;
+fun perceptive_A : A;
+fun perceptual_A : A;
+fun perch_N : N;
+fun perch_V : V;
+fun perch_V2 : V2;
+fun perchance_Adv : Adv;
+fun percipient_A : A;
+fun percolate_V : V;
+fun percolate_V2 : V2;
+fun percolator_N : N;
+fun percussion_N : N;
+fun percussionist_N : N;
+fun percy_PN : PN;
+fun perdition_N : N;
+fun peregrination_N : N;
+fun peremptory_A : A;
+fun perennial_A : A;
+fun perennial_N : N;
+fun perfect_A : A;
+fun perfect_V2 : V2;
+fun perfectibility_N : N;
+fun perfectible_A : A;
+fun perfection_N : N;
+fun perfectionist_N : N;
+fun perfervid_A : A;
+fun perfidious_A : A;
+fun perfidiousness_N : N;
+fun perfidy_N : N;
+fun perforate_V2 : V2;
+fun perforation_N : N;
+fun perforce_Adv : Adv;
+fun perform_V : V;
+fun perform_V2 : V2;
+fun performance_N : N;
+fun performer_N : N;
+fun perfume_N : N;
+fun perfume_V2 : V2;
+fun perfumer_N : N;
+fun perfunctory_A : A;
+fun pergola_N : N;
+fun perhaps_Adv : Adv;
+fun peri_N : N;
+fun perigee_N : N;
+fun perihelion_N : N;
+fun peril_N : N;
+fun peril_V2 : V2;
+fun perilous_A : A;
+fun perimeter_N : N;
+fun period_N : N;
+fun periodic_A : A;
+fun periodical_A : A;
+fun periodical_N : N;
+fun peripatetic_A : A;
+fun peripheral_A : A;
+fun periphery_N : N;
+fun periphrasis_N : N;
+fun periphrastic_A : A;
+fun periscope_N : N;
+fun perish_V : V;
+fun perish_V2 : V2;
+fun perishable_A : A;
+fun perisher_N : N;
+fun peristyle_N : N;
+fun peritonitis_N : N;
+fun periwig_N : N;
+fun periwinkle_N : N;
+fun perjure_V2 : V2;
+fun perjurer_N : N;
+fun perjury_N : N;
+fun perk_N : N;
+fun perk_V : V;
+fun perk_V2 : V2;
+fun perkily_Adv : Adv;
+fun perkiness_N : N;
+fun perky_A : A;
+fun perm_N : N;
+fun perm_PN : PN;
+fun perm_V2 : V2;
+fun permafrost_N : N;
+fun permanence_N : N;
+fun permanency_N : N;
+fun permanent_A : A;
+fun permanganate_N : N;
+fun permeability_N : N;
+fun permeable_A : A;
+fun permeate_V : V;
+fun permeate_V2 : V2;
+fun permeation_N : N;
+fun permissible_A : A;
+fun permission_N : N;
+fun permissive_A : A;
+fun permissiveness_N : N;
+fun permit_N : N;
+fun permit_V : V;
+fun permit_V2 : V2;
+fun permit_V2V : V2V;
+fun permutation_N : N;
+fun permute_V2 : V2;
+fun pernicious_A : A;
+fun perniciousness_N : N;
+fun pernickety_A : A;
+fun peroration_N : N;
+fun peroxide_N : N;
+fun perpendicular_A : A;
+fun perpendicular_N : N;
+fun perpetrate_V2 : V2;
+fun perpetration_N : N;
+fun perpetrator_N : N;
+fun perpetual_A : A;
+fun perpetuate_V2 : V2;
+fun perpetuation_N : N;
+fun perpetuity_N : N;
+fun perplex_V2 : V2;
+fun perplexed_A : A;
+fun perplexity_N : N;
+fun perquisite_N : N;
+fun perry_N : N;
+fun persecute_V2 : V2;
+fun persecution_N : N;
+fun persecutor_N : N;
+fun perseverance_N : N;
+fun persevere_V : V;
+fun persevering_A : A;
+fun pershore_PN : PN;
+fun persia_PN : PN;
+fun persian_A : A;
+fun persian_N : N;
+fun persiflage_N : N;
+fun persimmon_N : N;
+fun persist_V : V;
+fun persistence_N : N;
+fun persistent_A : A;
+fun person_N : N;
+fun persona_N : N;
+fun persona_grata_N : N;
+fun persona_non_grata_N : N;
+fun personable_A : A;
+fun personage_N : N;
+fun personal_A : A;
+fun personal_N : N;
+fun personality_N : N;
+fun personalize_V2 : V2;
+fun personalty_N : N;
+fun personate_V2 : V2;
+fun personation_N : N;
+fun personification_N : N;
+fun personify_V2 : V2;
+fun perspective_N : N;
+fun perspex_N : N;
+fun perspicacious_A : A;
+fun perspicacity_N : N;
+fun perspicuity_N : N;
+fun perspicuous_A : A;
+fun perspicuousness_N : N;
+fun perspiration_N : N;
+fun perspire_V : V;
+fun persuadable_A : A;
+fun persuade_V2 : V2;
+fun persuasion_N : N;
+fun persuasive_A : A;
+fun persuasiveness_N : N;
+fun pert_A : A;
+fun pertain_V : V;
+fun perth_PN : PN;
+fun pertinacious_A : A;
+fun pertinacity_N : N;
+fun pertinence_N : N;
+fun pertinent_A : A;
+fun pertness_N : N;
+fun perturb_V2 : V2;
+fun perturbation_N : N;
+fun peru_PN : PN;
+fun perugia_PN : PN;
+fun peruke_N : N;
+fun perusal_N : N;
+fun peruse_V2 : V2;
+fun peruvian_A : A;
+fun peruvian_N : N;
+fun pervade_V2 : V2;
+fun pervasion_N : N;
+fun pervasive_A : A;
+fun pervasiveness_N : N;
+fun perverse_A : A;
+fun perverseness_N : N;
+fun perversion_N : N;
+fun perversity_N : N;
+fun pervert_N : N;
+fun pervert_V2 : V2;
+fun pescara_PN : PN;
+fun peseta_N : N;
+fun pesky_A : A;
+fun peso_N : N;
+fun pessary_N : N;
+fun pessimism_N : N;
+fun pessimist_N : N;
+fun pessimistic_A : A;
+fun pessimistically_Adv : Adv;
+fun pest_N : N;
+fun pester_V2 : V2;
+fun pesticide_N : N;
+fun pestiferous_A : A;
+fun pestilence_N : N;
+fun pestilent_A : A;
+fun pestilential_A : A;
+fun pestle_N : N;
+fun pestle_V2 : V2;
+fun pet_N : N;
+fun pet_V2 : V2;
+fun petal_N : N;
+fun petaled_A : A;
+fun petalled_A : A;
+fun petard_N : N;
+fun pete_PN : PN;
+fun peter_PN : PN;
+fun peter_V : V;
+fun peterborough_PN : PN;
+fun peterhead_PN : PN;
+fun peterlee_PN : PN;
+fun petersfield_PN : PN;
+fun petit_bourgeois_N : N;
+fun petite_A : A;
+fun petition_N : N;
+fun petition_V : V;
+fun petition_V2 : V2;
+fun petitioner_N : N;
+fun petrel_N : N;
+fun petrifaction_N : N;
+fun petrify_V : V;
+fun petrify_V2 : V2;
+fun petro_chemical_N : N;
+fun petrol_N : N;
+fun petroleum_N : N;
+fun petrology_N : N;
+fun petticoat_N : N;
+fun pettifogging_A : A;
+fun pettily_Adv : Adv;
+fun pettiness_N : N;
+fun pettish_A : A;
+fun pettishness_N : N;
+fun petty_A : A;
+fun petulance_N : N;
+fun petulant_A : A;
+fun petunia_N : N;
+fun pew_N : N;
+fun pew_opener_N : N;
+fun pewit_N : N;
+fun pewter_N : N;
+fun peyote_N : N;
+fun pfennig_N : N;
+fun phaeton_N : N;
+fun phagocyte_N : N;
+fun phalanx_N : N;
+fun phallic_A : A;
+fun phallus_N : N;
+fun phantasm_N : N;
+fun phantasmagoria_N : N;
+fun phantasmal_A : A;
+fun phantasy_N : N;
+fun phantom_N : N;
+fun pharaoh_N : N;
+fun pharisaic_A : A;
+fun pharisaical_A : A;
+fun pharisee_N : N;
+fun pharmaceutical_A : A;
+fun pharmacist_N : N;
+fun pharmacological_A : A;
+fun pharmacologist_N : N;
+fun pharmacology_N : N;
+fun pharmacopoeia_N : N;
+fun pharmacy_N : N;
+fun pharos_N : N;
+fun pharyngitis_N : N;
+fun pharynx_N : N;
+fun phase_N : N;
+fun phase_V2 : V2;
+fun phd_N : N;
+fun pheasant_N : N;
+fun phenobarbitone_N : N;
+fun phenol_N : N;
+fun phenomenal_A : A;
+fun phenomenon_N : N;
+fun phial_N : N;
+fun phil_PN : PN;
+fun philadelphia_PN : PN;
+fun philander_V : V;
+fun philanderer_N : N;
+fun philanthropic_A : A;
+fun philanthropically_Adv : Adv;
+fun philanthropist_N : N;
+fun philanthropy_N : N;
+fun philatelic_A : A;
+fun philatelist_N : N;
+fun philately_N : N;
+fun philharmonic_A : A;
+fun philhellene_A : A;
+fun philhellene_N : N;
+fun philhellenic_A : A;
+fun philip_PN : PN;
+fun philippa_PN : PN;
+fun philippine_A : A;
+fun philippine_N : N;
+fun philippines_PN : PN;
+fun philistine_N : N;
+fun philistinism_N : N;
+fun philological_A : A;
+fun philologist_N : N;
+fun philology_N : N;
+fun philosopher_N : N;
+fun philosophic_A : A;
+fun philosophical_A : A;
+fun philosophize_V : V;
+fun philosophy_N : N;
+fun philtre_N : N;
+fun phlebitis_N : N;
+fun phlegm_N : N;
+fun phlegmatic_A : A;
+fun phlegmatically_Adv : Adv;
+fun phlox_N : N;
+fun phnom_penh_PN : PN;
+fun phobia_N : N;
+fun phoebe_PN : PN;
+fun phoenix_N : N;
+fun phoenix_PN : PN;
+fun phone_N : N;
+fun phone_V : V;
+fun phone_V2 : V2;
+fun phone_in_N : N;
+fun phonebooth_N : N;
+fun phonecall_N : N;
+fun phoneme_N : N;
+fun phonemic_A : A;
+fun phonemics_N : N;
+fun phonetic_A : A;
+fun phonetically_Adv : Adv;
+fun phonetician_N : N;
+fun phonetics_N : N;
+fun phoney_A : A;
+fun phoney_N : N;
+fun phonic_A : A;
+fun phonics_N : N;
+fun phonograph_N : N;
+fun phonological_A : A;
+fun phonology_N : N;
+fun phony_A : A;
+fun phony_N : N;
+fun phosgene_N : N;
+fun phosphate_N : N;
+fun phosphorescence_N : N;
+fun phosphorescent_A : A;
+fun phosphoric_A : A;
+fun phosphorous_A : A;
+fun phosphorus_N : N;
+fun photo_N : N;
+fun photocopier_N : N;
+fun photocopy_N : N;
+fun photocopy_V2 : V2;
+fun photoelectric_A : A;
+fun photoflash_N : N;
+fun photogenic_A : A;
+fun photograph_N : N;
+fun photograph_V2 : V2;
+fun photographer_N : N;
+fun photographic_A : A;
+fun photographically_Adv : Adv;
+fun photography_N : N;
+fun photogravure_N : N;
+fun photolithography_N : N;
+fun photometer_N : N;
+fun photon_N : N;
+fun photosensitize_V2 : V2;
+fun photostat_N : N;
+fun photostat_V2 : V2;
+fun photosynthesis_N : N;
+fun phrasal_A : A;
+fun phrase_N : N;
+fun phrase_V2 : V2;
+fun phrase_book_N : N;
+fun phraseology_N : N;
+fun phrenetic_A : A;
+fun phrenologist_N : N;
+fun phrenology_N : N;
+fun phthisis_N : N;
+fun phut_Adv : Adv;
+fun phyllis_PN : PN;
+fun phylum_N : N;
+fun physic_N : N;
+fun physical_A : A;
+fun physician_N : N;
+fun physicist_N : N;
+fun physics_N : N;
+fun physiognomy_N : N;
+fun physiological_A : A;
+fun physiologist_N : N;
+fun physiology_N : N;
+fun physiotherapist_N : N;
+fun physiotherapy_N : N;
+fun physique_N : N;
+fun pi_N : N;
+fun piacenza_PN : PN;
+fun pianissimo_A : A;
+fun pianissimo_Adv : Adv;
+fun pianist_N : N;
+fun piano_A : A;
+fun piano_Adv : Adv;
+fun piano_N : N;
+fun pianoforte_N : N;
+fun pianola_N : N;
+fun piastre_N : N;
+fun piazza_N : N;
+fun pibroch_N : N;
+fun pica_N : N;
+fun picador_N : N;
+fun picaresque_A : A;
+fun piccalilli_N : N;
+fun piccaninny_N : N;
+fun piccolo_N : N;
+fun pick_N : N;
+fun pick_V : V;
+fun pick_V2 : V2;
+fun pick_me_up_N : N;
+fun pick_up_N : N;
+fun pickaback_Adv : Adv;
+fun pickaxe_N : N;
+fun picker_N : N;
+fun pickerel_N : N;
+fun picket_N : N;
+fun picket_V : V;
+fun picket_V2 : V2;
+fun picking_N : N;
+fun pickle_N : N;
+fun pickle_V2 : V2;
+fun pickpocket_N : N;
+fun picnic_N : N;
+fun picnic_V : V;
+fun picnicker_N : N;
+fun picric_A : A;
+fun pictorial_A : A;
+fun pictorial_N : N;
+fun picture_N : N;
+fun picture_V2 : V2;
+fun picture_book_N : N;
+fun picture_card_N : N;
+fun picture_gallery_N : N;
+fun picturesque_A : A;
+fun picturesqueness_N : N;
+fun piddle_N : N;
+fun piddle_V : V;
+fun piddling_A : A;
+fun pidgin_N : N;
+fun pie_N : N;
+fun pie_crust_N : N;
+fun piebald_A : A;
+fun piece_N : N;
+fun piece_V2 : V2;
+fun piecemeal_A : A;
+fun piecemeal_Adv : Adv;
+fun piecework_N : N;
+fun pied_A : A;
+fun pied_a_terre_N : N;
+fun pier_N : N;
+fun pier_glass_N : N;
+fun pierce_V : V;
+fun pierce_V2 : V2;
+fun piercing_A : A;
+fun pierrot_N : N;
+fun pieta_N : N;
+fun piety_N : N;
+fun piffle_N : N;
+fun piffle_V : V;
+fun piffling_A : A;
+fun pig_N : N;
+fun pig_V : V;
+fun pig_headed_A : A;
+fun pig_headedness_N : N;
+fun pig_iron_N : N;
+fun pig_sticking_N : N;
+fun pigboat_N : N;
+fun pigeon_N : N;
+fun pigeon_breasted_A : A;
+fun pigeon_toed_A : A;
+fun pigeonhole_N : N;
+fun pigeonhole_V2 : V2;
+fun piggery_N : N;
+fun piggish_A : A;
+fun piggishness_N : N;
+fun piggy_A : A;
+fun piggy_N : N;
+fun piggyback_N : N;
+fun piggyback_V : V;
+fun piglet_N : N;
+fun pigment_N : N;
+fun pigmentation_N : N;
+fun pigmy_N : N;
+fun pigskin_N : N;
+fun pigsty_N : N;
+fun pigswill_N : N;
+fun pigtail_N : N;
+fun pigwash_N : N;
+fun pike_N : N;
+fun pikestaff_N : N;
+fun pilaf_N : N;
+fun pilaff_N : N;
+fun pilaster_N : N;
+fun pilau_N : N;
+fun pilchard_N : N;
+fun pile_N : N;
+fun pile_V : V;
+fun pile_V2 : V2;
+fun pile_driver_N : N;
+fun pile_dwelling_N : N;
+fun pile_up_N : N;
+fun piles_N : N;
+fun pilfer_V : V;
+fun pilfer_V2 : V2;
+fun pilferage_N : N;
+fun pilferer_N : N;
+fun pilgrim_N : N;
+fun pilgrimage_N : N;
+fun pill_N : N;
+fun pill_PN : PN;
+fun pillage_N : N;
+fun pillage_V2 : V2;
+fun pillager_N : N;
+fun pillar_N : N;
+fun pillar_box_N : N;
+fun pillared_A : A;
+fun pillbox_N : N;
+fun pillion_N : N;
+fun pillory_N : N;
+fun pillory_V2 : V2;
+fun pillow_N : N;
+fun pillow_V2 : V2;
+fun pillow_fight_N : N;
+fun pillowcase_N : N;
+fun pillowslip_N : N;
+fun pilot_N : N;
+fun pilot_V2 : V2;
+fun pilot_boat_N : N;
+fun pilot_burner_N : N;
+fun pilot_cloth_N : N;
+fun pilot_engine_N : N;
+fun pilot_fish_N : N;
+fun pilot_light_N : N;
+fun pimento_N : N;
+fun pimp_N : N;
+fun pimp_V : V;
+fun pimpernel_N : N;
+fun pimple_N : N;
+fun pimpled_A : A;
+fun pimply_A : A;
+fun pin_N : N;
+fun pin_V2 : V2;
+fun pin_money_N : N;
+fun pin_point_V2 : V2;
+fun pin_table_N : N;
+fun pin_up_N : N;
+fun pinafore_N : N;
+fun pinball_N : N;
+fun pince_nez_N : N;
+fun pincer_N : N;
+fun pinch_N : N;
+fun pinch_V : V;
+fun pinch_V2 : V2;
+fun pinchbeck_A : A;
+fun pinchbeck_N : N;
+fun pincushion_N : N;
+fun pine_N : N;
+fun pine_V : V;
+fun pineal_A : A;
+fun pineapple_N : N;
+fun ping_N : N;
+fun ping_V : V;
+fun pingpong_N : N;
+fun pinhead_N : N;
+fun pinion_N : N;
+fun pinion_V2 : V2;
+fun pink_A : A;
+fun pink_N : N;
+fun pink_V : V;
+fun pink_V2 : V2;
+fun pinkish_A : A;
+fun pinnace_N : N;
+fun pinnacle_N : N;
+fun pinnacle_V2 : V2;
+fun pinnate_A : A;
+fun pinny_N : N;
+fun pinpoint_N : N;
+fun pinpoint_V2 : V2;
+fun pinprick_N : N;
+fun pinstripe_A : A;
+fun pint_N : N;
+fun pioneer_N : N;
+fun pioneer_V : V;
+fun pioneer_V2 : V2;
+fun pious_A : A;
+fun pip_N : N;
+fun pip_V2 : V2;
+fun pipal_N : N;
+fun pipe_N : N;
+fun pipe_V : V;
+fun pipe_V2 : V2;
+fun pipe_organ_N : N;
+fun pipe_rack_N : N;
+fun pipeclay_N : N;
+fun pipedream_N : N;
+fun pipeful_N : N;
+fun pipeline_N : N;
+fun piper_N : N;
+fun pipette_N : N;
+fun pipework_N : N;
+fun piping_A : A;
+fun piping_Adv : Adv;
+fun piping_N : N;
+fun pippin_N : N;
+fun pipsqueak_N : N;
+fun piquancy_N : N;
+fun piquant_A : A;
+fun pique_N : N;
+fun pique_V2 : V2;
+fun piquet_N : N;
+fun piracy_N : N;
+fun piraeus_PN : PN;
+fun piranha_N : N;
+fun pirate_N : N;
+fun pirate_V2 : V2;
+fun piratical_A : A;
+fun pirouette_N : N;
+fun pirouette_V : V;
+fun pis_aller_N : N;
+fun pisa_PN : PN;
+fun piscatorial_A : A;
+fun pisces_PN : PN;
+fun piss_N : N;
+fun piss_V : V;
+fun piss_V2 : V2;
+fun pissed_A : A;
+fun pistachio_N : N;
+fun pistil_N : N;
+fun pistol_N : N;
+fun piston_N : N;
+fun pit_N : N;
+fun pit_V2 : V2;
+fun pit_a_pat_Adv : Adv;
+fun pit_prop_N : N;
+fun pitch_N : N;
+fun pitch_V : V;
+fun pitch_V2 : V2;
+fun pitch_black_A : A;
+fun pitch_dark_A : A;
+fun pitchblende_N : N;
+fun pitcher_N : N;
+fun pitchfork_N : N;
+fun pitchfork_V2 : V2;
+fun piteous_A : A;
+fun pitfall_N : N;
+fun pith_N : N;
+fun pithead_N : N;
+fun pithily_Adv : Adv;
+fun pithy_A : A;
+fun pitiable_A : A;
+fun pitiful_A : A;
+fun pitiless_A : A;
+fun pitman_N : N;
+fun piton_N : N;
+fun pitsaw_N : N;
+fun pittance_N : N;
+fun pitter_patter_N : N;
+fun pittsburgh_PN : PN;
+fun pituitary_A : A;
+fun pituitary_N : N;
+fun pity_N : N;
+fun pity_V2 : V2;
+fun pitying_A : A;
+fun pivot_N : N;
+fun pivot_V : V;
+fun pivot_V2 : V2;
+fun pivotal_A : A;
+fun pixie_N : N;
+fun pixilated_A : A;
+fun pixy_N : N;
+fun pizza_N : N;
+fun pizzicato_A : A;
+fun pizzicato_Adv : Adv;
+fun placard_N : N;
+fun placard_V2 : V2;
+fun placate_V2 : V2;
+fun placatingly_Adv : Adv;
+fun place_N : N;
+fun place_V2 : V2;
+fun place_bet_N : N;
+fun place_name_N : N;
+fun placebo_N : N;
+fun placeman_N : N;
+fun placement_N : N;
+fun placenta_N : N;
+fun placeseeker_N : N;
+fun placid_A : A;
+fun placidity_N : N;
+fun placing_N : N;
+fun placket_N : N;
+fun plage_N : N;
+fun plagiarism_N : N;
+fun plagiarist_N : N;
+fun plagiarize_V2 : V2;
+fun plague_N : N;
+fun plague_V2 : V2;
+fun plague_spot_N : N;
+fun plaguy_A : A;
+fun plaice_N : N;
+fun plaid_N : N;
+fun plain_A : A;
+fun plain_Adv : Adv;
+fun plain_N : N;
+fun plain_V : V;
+fun plain_V2 : V2;
+fun plain_spoken_A : A;
+fun plainness_N : N;
+fun plainsman_N : N;
+fun plaint_N : N;
+fun plaintiff_N : N;
+fun plaintive_A : A;
+fun plaintiveness_N : N;
+fun plait_N : N;
+fun plait_V2 : V2;
+fun plan_N : N;
+fun plan_V : V;
+fun plan_V2 : V2;
+fun plan_V2V : V2V;
+fun plan_VS : VS;
+fun plan_VV : VV;
+fun planchette_N : N;
+fun plane_N : N;
+fun plane_V : V;
+fun plane_V2 : V2;
+fun plane_tree_N : N;
+fun planet_N : N;
+fun planetarium_N : N;
+fun planetary_A : A;
+fun plangent_A : A;
+fun plank_N : N;
+fun plank_V2 : V2;
+fun plank_bed_N : N;
+fun planking_N : N;
+fun plankton_N : N;
+fun planless_A : A;
+fun planner_N : N;
+fun plant_N : N;
+fun plant_V2 : V2;
+fun plant_louse_N : N;
+fun plantain_N : N;
+fun plantation_N : N;
+fun planter_N : N;
+fun plaque_N : N;
+fun plash_N : N;
+fun plash_V : V;
+fun plash_V2 : V2;
+fun plasm_N : N;
+fun plasma_N : N;
+fun plaster_N : N;
+fun plaster_V2 : V2;
+fun plasterboard_N : N;
+fun plastered_A : A;
+fun plasterer_N : N;
+fun plastic_A : A;
+fun plastic_N : N;
+fun plastic_bomb_N : N;
+fun plasticine_N : N;
+fun plasticity_N : N;
+fun plastics_N : N;
+fun plate_N : N;
+fun plate_V2 : V2;
+fun plate_glass_N : N;
+fun plate_powder_N : N;
+fun plate_rack_N : N;
+fun plateau_N : N;
+fun plateful_N : N;
+fun platelayer_N : N;
+fun platform_N : N;
+fun plating_N : N;
+fun platinum_N : N;
+fun platitude_N : N;
+fun platitudinous_A : A;
+fun platonic_A : A;
+fun platoon_N : N;
+fun platter_N : N;
+fun platypus_N : N;
+fun plaudit_N : N;
+fun plausibility_N : N;
+fun plausible_A : A;
+fun play_N : N;
+fun play_V : V;
+fun play_V2 : V2;
+fun play_acting_N : N;
+fun play_actor_N : N;
+fun play_box_N : N;
+fun play_off_N : N;
+fun play_reading_N : N;
+fun playback_N : N;
+fun playbill_N : N;
+fun playboy_N : N;
+fun player_N : N;
+fun player_piano_N : N;
+fun playfellow_N : N;
+fun playful_A : A;
+fun playfulness_N : N;
+fun playgoer_N : N;
+fun playground_N : N;
+fun playgroup_N : N;
+fun playhouse_N : N;
+fun playing_N : N;
+fun playing_card_N : N;
+fun playing_field_N : N;
+fun playlet_N : N;
+fun playmate_N : N;
+fun playpen_N : N;
+fun playroom_N : N;
+fun playschool_N : N;
+fun playsuit_N : N;
+fun plaything_N : N;
+fun playtime_N : N;
+fun playwright_N : N;
+fun plaza_N : N;
+fun plc_PN : PN;
+fun plea_N : N;
+fun pleach_V2 : V2;
+fun plead_V : V;
+fun plead_V2 : V2;
+fun plead_VA : VA;
+fun plead_VS : VS;
+fun pleadingly_Adv : Adv;
+fun pleasance_N : N;
+fun pleasant_A : A;
+fun pleasantness_N : N;
+fun pleasantry_N : N;
+fun please_V : V;
+fun please_V2 : V2;
+fun pleased_A : A;
+fun pleasing_A : A;
+fun pleasurable_A : A;
+fun pleasure_N : N;
+fun pleasure_boat_N : N;
+fun pleasure_craft_N : N;
+fun pleasure_ground_N : N;
+fun pleat_N : N;
+fun pleat_V2 : V2;
+fun pleb_N : N;
+fun plebeian_A : A;
+fun plebeian_N : N;
+fun plebiscite_N : N;
+fun plectrum_N : N;
+fun pledge_N : N;
+fun pledge_V2 : V2;
+fun pledge_V2V : V2V;
+fun pledge_VS : VS;
+fun plenary_A : A;
+fun plenipotentiary_N : N;
+fun plenitude_N : N;
+fun plenteous_A : A;
+fun plentiful_A : A;
+fun plenty_Adv : Adv;
+fun plenty_N : N;
+fun pleonasm_N : N;
+fun plethora_N : N;
+fun pleurisy_N : N;
+fun plexus_N : N;
+fun pliability_N : N;
+fun pliable_A : A;
+fun pliancy_N : N;
+fun pliant_A : A;
+fun plight_N : N;
+fun plight_V2 : V2;
+fun plimsoll_N : N;
+fun plinth_N : N;
+fun plod_V : V;
+fun plod_V2 : V2;
+fun plodder_N : N;
+fun plodding_A : A;
+fun plonk_Adv : Adv;
+fun plonk_N : N;
+fun plonk_V : V;
+fun plop_Adv : Adv;
+fun plop_N : N;
+fun plop_V : V;
+fun plosive_A : A;
+fun plosive_N : N;
+fun plot_N : N;
+fun plot_V : V;
+fun plot_V2 : V2;
+fun plotter_N : N;
+fun plough_N : N;
+fun plough_V : V;
+fun plough_V2 : V2;
+fun ploughboy_N : N;
+fun ploughman_N : N;
+fun ploughshare_N : N;
+fun plover_N : N;
+fun plow_V : V;
+fun plow_V2 : V2;
+fun ploy_N : N;
+fun pluck_N : N;
+fun pluck_V : V;
+fun pluck_V2 : V2;
+fun pluckily_Adv : Adv;
+fun plucky_A : A;
+fun plug_N : N;
+fun plug_V : V;
+fun plug_V2 : V2;
+fun plughole_N : N;
+fun plum_N : N;
+fun plum_pudding_N : N;
+fun plumage_N : N;
+fun plumb_Adv : Adv;
+fun plumb_N : N;
+fun plumb_V2 : V2;
+fun plumbago_N : N;
+fun plumber_N : N;
+fun plumbing_N : N;
+fun plume_N : N;
+fun plume_V2 : V2;
+fun plummet_N : N;
+fun plummet_V : V;
+fun plummet_V2 : V2;
+fun plummy_A : A;
+fun plump_A : A;
+fun plump_Adv : Adv;
+fun plump_N : N;
+fun plump_V : V;
+fun plump_V2 : V2;
+fun plunder_N : N;
+fun plunder_V : V;
+fun plunder_V2 : V2;
+fun plunderer_N : N;
+fun plunge_N : N;
+fun plunge_V : V;
+fun plunge_V2 : V2;
+fun plunger_N : N;
+fun plunk_N : N;
+fun pluperfect_A : A;
+fun pluperfect_N : N;
+fun plural_A : A;
+fun plural_N : N;
+fun pluralism_N : N;
+fun pluralist_N : N;
+fun plurality_N : N;
+fun plus_A : A;
+fun plus_N : N;
+fun plus_Prep : Prep ;
+fun plush_A : A;
+fun plush_N : N;
+fun plushy_A : A;
+fun pluto_PN : PN;
+fun plutocracy_N : N;
+fun plutocrat_N : N;
+fun plutocratic_A : A;
+fun plutonium_N : N;
+fun ply_N : N;
+fun ply_V : V;
+fun ply_V2 : V2;
+fun ply_VS : VS;
+fun plymouth_PN : PN;
+fun plywood_N : N;
+fun pneumatic_A : A;
+fun pneumatically_Adv : Adv;
+fun pneumonia_N : N;
+fun po_N : N;
+fun poach_V : V;
+fun poach_V2 : V2;
+fun poacher_N : N;
+fun pock_N : N;
+fun pocked_A : A;
+fun pocket_N : N;
+fun pocket_V2 : V2;
+fun pocket_book_N : N;
+fun pocket_handkerchief_N : N;
+fun pocket_knife_N : N;
+fun pocket_money_N : N;
+fun pocketful_N : N;
+fun pockmarked_A : A;
+fun pod_N : N;
+fun pod_V : V;
+fun pod_V2 : V2;
+fun podgy_A : A;
+fun podiatry_N : N;
+fun podium_N : N;
+fun poem_N : N;
+fun poesy_N : N;
+fun poet_N : N;
+fun poetess_N : N;
+fun poetic_A : A;
+fun poetical_A : A;
+fun poetry_N : N;
+fun pogrom_N : N;
+fun poignancy_N : N;
+fun poignant_A : A;
+fun poinsettia_N : N;
+fun point_N : N;
+fun point_V : V;
+fun point_V2 : V2;
+fun point_blank_A : A;
+fun point_blank_Adv : Adv;
+fun point_duty_N : N;
+fun pointed_A : A;
+fun pointer_N : N;
+fun pointless_A : A;
+fun pointsman_N : N;
+fun poise_N : N;
+fun poise_V : V;
+fun poise_V2 : V2;
+fun poison_N : N;
+fun poison_V2 : V2;
+fun poison_gas_N : N;
+fun poison_ivy_N : N;
+fun poisoner_N : N;
+fun poisonous_A : A;
+fun poke_N : N;
+fun poke_V : V;
+fun poke_V2 : V2;
+fun poke_bonnet_N : N;
+fun poker_N : N;
+fun poker_face_N : N;
+fun poky_A : A;
+fun poland_PN : PN;
+fun polar_A : A;
+fun polaris_N : N;
+fun polarity_N : N;
+fun polarization_N : N;
+fun polarize_V2 : V2;
+fun polaroid_N : N;
+fun pole_N : N;
+fun pole_jumping_N : N;
+fun pole_star_N : N;
+fun pole_vault_N : N;
+fun poleax_N : N;
+fun poleax_V2 : V2;
+fun poleaxe_N : N;
+fun poleaxe_V2 : V2;
+fun polecat_N : N;
+fun polemic_A : A;
+fun polemic_N : N;
+fun polemically_Adv : Adv;
+fun police_V2 : V2;
+fun police_office_N : N;
+fun police_officer_N : N;
+fun police_station_N : N;
+fun policeman_N : N;
+fun policewoman_N : N;
+fun policy_N : N;
+fun polio_N : N;
+fun poliomyelitis_N : N;
+fun polish_A : A;
+fun polish_N : N;
+fun polish_V : V;
+fun polish_V2 : V2;
+fun polisher_N : N;
+fun politburo_N : N;
+fun polite_A : A;
+fun politeness_N : N;
+fun politic_A : A;
+fun political_A : A;
+fun politician_N : N;
+fun politicize_V : V;
+fun politicize_V2 : V2;
+fun politick_V : V;
+fun politics_N : N;
+fun polity_N : N;
+fun polka_N : N;
+fun poll_N : N;
+fun poll_V : V;
+fun poll_V2 : V2;
+fun poll_tax_N : N;
+fun pollard_N : N;
+fun pollard_V2 : V2;
+fun pollen_N : N;
+fun pollinate_V2 : V2;
+fun pollination_N : N;
+fun polling_booth_N : N;
+fun polling_day_N : N;
+fun polling_station_N : N;
+fun pollster_N : N;
+fun pollutant_N : N;
+fun pollute_V2 : V2;
+fun pollution_N : N;
+fun polly_PN : PN;
+fun polo_N : N;
+fun polo_neck_A : A;
+fun polonaise_N : N;
+fun polony_N : N;
+fun poltergeist_N : N;
+fun poltroon_N : N;
+fun poltroonery_N : N;
+fun poly_N : N;
+fun polyandrous_A : A;
+fun polyandry_N : N;
+fun polyanthus_N : N;
+fun polygamist_N : N;
+fun polygamous_A : A;
+fun polygamy_N : N;
+fun polyglot_A : A;
+fun polyglot_N : N;
+fun polygon_N : N;
+fun polygonal_A : A;
+fun polymorphic_A : A;
+fun polymorphous_A : A;
+fun polynomial_A : A;
+fun polynomial_N : N;
+fun polyp_N : N;
+fun polyphonic_A : A;
+fun polyphony_N : N;
+fun polypus_N : N;
+fun polysyllabic_A : A;
+fun polysyllable_N : N;
+fun polytechnic_N : N;
+fun polytheism_N : N;
+fun polytheistic_A : A;
+fun polythene_N : N;
+fun pom_N : N;
+fun pomade_N : N;
+fun pomade_V2 : V2;
+fun pomegranate_N : N;
+fun pomelo_N : N;
+fun pommel_N : N;
+fun pommel_V2 : V2;
+fun pommy_N : N;
+fun pomp_N : N;
+fun pompon_N : N;
+fun pomposity_N : N;
+fun pompous_A : A;
+fun ponce_N : N;
+fun poncho_N : N;
+fun pond_N : N;
+fun ponder_V : V;
+fun ponder_V2 : V2;
+fun ponder_VS : VS;
+fun ponderable_A : A;
+fun ponderous_A : A;
+fun pone_N : N;
+fun pongee_N : N;
+fun poniard_N : N;
+fun poniard_V2 : V2;
+fun pont_llan_fraith_PN : PN;
+fun pontardawe_PN : PN;
+fun pontardulais_PN : PN;
+fun pontefract_PN : PN;
+fun pontiff_N : N;
+fun pontifical_A : A;
+fun pontificate_N : N;
+fun pontificate_V : V;
+fun pontoon_N : N;
+fun pontycymmer_PN : PN;
+fun pontypool_PN : PN;
+fun pony_N : N;
+fun pony_trekking_N : N;
+fun ponytail_N : N;
+fun poodle_N : N;
+fun poof_N : N;
+fun pooh_pooh_V2 : V2;
+fun pool_N : N;
+fun pool_V2 : V2;
+fun poole_PN : PN;
+fun poolroom_N : N;
+fun poona_PN : PN;
+fun poop_N : N;
+fun poor_A : A;
+fun poor_box_N : N;
+fun poor_rate_N : N;
+fun poor_spirited_A : A;
+fun poorhouse_N : N;
+fun poorly_A : A;
+fun poorness_N : N;
+fun pop_A : A;
+fun pop_Adv : Adv;
+fun pop_N : N;
+fun pop_V : V;
+fun pop_V2 : V2;
+fun popcorn_N : N;
+fun pope_N : N;
+fun popery_N : N;
+fun popeyed_A : A;
+fun popgun_N : N;
+fun popinjay_N : N;
+fun popish_A : A;
+fun poplar_N : N;
+fun poplin_N : N;
+fun poppa_N : N;
+fun poppet_N : N;
+fun poppy_N : N;
+fun poppycock_N : N;
+fun populace_N : N;
+fun popular_A : A;
+fun popularity_N : N;
+fun popularization_N : N;
+fun popularize_V2 : V2;
+fun populate_V2 : V2;
+fun population_N : N;
+fun populism_N : N;
+fun populist_N : N;
+fun populous_A : A;
+fun porcelain_N : N;
+fun porch_N : N;
+fun porcine_A : A;
+fun porcupine_N : N;
+fun pore_N : N;
+fun pore_V : V;
+fun pork_N : N;
+fun pork_barrel_N : N;
+fun pork_butcher_N : N;
+fun porker_N : N;
+fun porn_N : N;
+fun pornographer_N : N;
+fun pornographic_A : A;
+fun pornography_N : N;
+fun porosity_N : N;
+fun porous_A : A;
+fun porousness_N : N;
+fun porphyry_N : N;
+fun porpoise_N : N;
+fun porridge_N : N;
+fun porringer_N : N;
+fun port_N : N;
+fun port_V2 : V2;
+fun port_glasgow_PN : PN;
+fun port_talbot_PN : PN;
+fun portability_N : N;
+fun portable_A : A;
+fun portage_N : N;
+fun portal_N : N;
+fun portcullis_N : N;
+fun porte_cochere_N : N;
+fun portend_V2 : V2;
+fun portent_N : N;
+fun portentous_A : A;
+fun porter_N : N;
+fun porterage_N : N;
+fun porterhouse_N : N;
+fun portfolio_N : N;
+fun porthcawl_PN : PN;
+fun porthmadog_PN : PN;
+fun porthole_N : N;
+fun portico_N : N;
+fun portiere_N : N;
+fun portion_N : N;
+fun portion_V2 : V2;
+fun portishead_PN : PN;
+fun portland_PN : PN;
+fun portly_A : A;
+fun portmanteau_N : N;
+fun porto_alegre_PN : PN;
+fun portrait_N : N;
+fun portraitist_N : N;
+fun portraiture_N : N;
+fun portray_V2 : V2;
+fun portrayal_N : N;
+fun portsmouth_PN : PN;
+fun portugal_PN : PN;
+fun portuguese_A : A;
+fun portuguese_N : N;
+fun pose_N : N;
+fun pose_V : V;
+fun pose_V2 : V2;
+fun poser_N : N;
+fun poseur_N : N;
+fun poseuse_N : N;
+fun posh_A : A;
+fun posh_V2 : V2;
+fun posit_V2 : V2;
+fun position_N : N;
+fun position_V2 : V2;
+fun position_V2V : V2V;
+fun positive_A : A;
+fun positive_N : N;
+fun positiveness_N : N;
+fun positivism_N : N;
+fun positivist_N : N;
+fun posse_N : N;
+fun possess_V2 : V2;
+fun possession_N : N;
+fun possessive_A : A;
+fun possessiveness_N : N;
+fun possessor_N : N;
+fun posset_N : N;
+fun possibility_N : N;
+fun possible_A : A;
+fun possible_N : N;
+fun possum_N : N;
+fun post_N : N;
+fun post_Prep : Prep ;
+fun post_V : V;
+fun post_V2 : V2;
+fun post_chaise_N : N;
+fun post_free_A : A;
+fun post_free_Adv : Adv;
+fun post_haste_Adv : Adv;
+fun post_horse_N : N;
+fun post_meridiem_Adv : Adv;
+fun post_mortem_A : A;
+fun post_mortem_N : N;
+fun post_paid_A : A;
+fun post_paid_Adv : Adv;
+fun postage_N : N;
+fun postage_stamp_N : N;
+fun postal_A : A;
+fun postbag_N : N;
+fun postbox_N : N;
+fun postcard_N : N;
+fun postcode_N : N;
+fun postdate_V2 : V2;
+fun poste_restante_N : N;
+fun poster_N : N;
+fun posterior_A : A;
+fun posterior_N : N;
+fun posterity_N : N;
+fun postern_N : N;
+fun postgraduate_A : A;
+fun postgraduate_N : N;
+fun posthumous_A : A;
+fun postilion_N : N;
+fun postillion_N : N;
+fun postman_N : N;
+fun postmark_N : N;
+fun postmark_V2 : V2;
+fun postmaster_N : N;
+fun postmistress_N : N;
+fun postpone_V2 : V2;
+fun postponement_N : N;
+fun postprandial_A : A;
+fun postscript_N : N;
+fun postulant_N : N;
+fun postulate_N : N;
+fun postulate_V2 : V2;
+fun postural_A : A;
+fun posture_N : N;
+fun posture_V : V;
+fun posture_V2 : V2;
+fun posturing_N : N;
+fun posy_N : N;
+fun pot_N : N;
+fun pot_V : V;
+fun pot_V2 : V2;
+fun pot_shot_N : N;
+fun pot_trained_A : A;
+fun potable_A : A;
+fun potash_N : N;
+fun potassium_N : N;
+fun potation_N : N;
+fun potato_N : N;
+fun potbellied_A : A;
+fun potbelly_N : N;
+fun potboiler_N : N;
+fun potbound_A : A;
+fun potboy_N : N;
+fun poteen_N : N;
+fun potency_N : N;
+fun potent_A : A;
+fun potentate_N : N;
+fun potential_A : A;
+fun potential_N : N;
+fun potentiality_N : N;
+fun pothead_N : N;
+fun pother_N : N;
+fun potherb_N : N;
+fun pothole_N : N;
+fun potholer_N : N;
+fun pothook_N : N;
+fun pothouse_N : N;
+fun pothunter_N : N;
+fun potion_N : N;
+fun potman_N : N;
+fun potpourri_N : N;
+fun potsdam_PN : PN;
+fun potsherd_N : N;
+fun pottage_N : N;
+fun potted_A : A;
+fun potter_N : N;
+fun potter_V : V;
+fun potterer_N : N;
+fun potters_bar_PN : PN;
+fun pottery_N : N;
+fun potty_A : A;
+fun potty_N : N;
+fun pouch_N : N;
+fun pouch_V2 : V2;
+fun pouf_N : N;
+fun pouffe_N : N;
+fun poulterer_N : N;
+fun poultice_N : N;
+fun poultice_V2 : V2;
+fun pounce_N : N;
+fun pounce_V : V;
+fun pound_N : N;
+fun pound_V : V;
+fun pound_V2 : V2;
+fun poundage_N : N;
+fun pounder_N : N;
+fun pour_V : V;
+fun pour_V2 : V2;
+fun pout_N : N;
+fun pout_V : V;
+fun pout_V2 : V2;
+fun poutingly_Adv : Adv;
+fun poverty_N : N;
+fun poverty_stricken_A : A;
+fun pow_N : N;
+fun powder_N : N;
+fun powder_V : V;
+fun powder_V2 : V2;
+fun powder_flask_N : N;
+fun powder_horn_N : N;
+fun powder_magazine_N : N;
+fun powder_puff_N : N;
+fun powder_room_N : N;
+fun powdered_A : A;
+fun powdery_A : A;
+fun power_N : N;
+fun power_V2 : V2;
+fun power_dive_N : N;
+fun power_dive_V2 : V2;
+fun power_point_N : N;
+fun power_station_N : N;
+fun powerboat_N : N;
+fun powered_A : A;
+fun powerful_A : A;
+fun powerhouse_N : N;
+fun powerless_A : A;
+fun powwow_N : N;
+fun powwow_V : V;
+fun powys_PN : PN;
+fun pox_N : N;
+fun poynton_PN : PN;
+fun poznan_PN : PN;
+fun pp_N : N;
+fun pr_N : N;
+fun practicability_N : N;
+fun practicable_A : A;
+fun practical_A : A;
+fun practicality_N : N;
+fun practice_N : N;
+fun practice_V : V;
+fun practice_V2 : V2;
+fun practician_N : N;
+fun practise_V : V;
+fun practise_V2 : V2;
+fun practised_A : A;
+fun practitioner_N : N;
+fun praesidium_N : N;
+fun praetor_N : N;
+fun praetorian_A : A;
+fun pragmatic_A : A;
+fun pragmatically_Adv : Adv;
+fun pragmatism_N : N;
+fun pragmatist_N : N;
+fun prague_PN : PN;
+fun prairie_N : N;
+fun praise_N : N;
+fun praise_V2 : V2;
+fun praiseworthiness_N : N;
+fun praiseworthy_A : A;
+fun pram_N : N;
+fun prance_N : N;
+fun prance_V : V;
+fun prank_N : N;
+fun prate_V : V;
+fun prato_PN : PN;
+fun prattle_N : N;
+fun prattle_V : V;
+fun prattler_N : N;
+fun prawn_N : N;
+fun prawn_V : V;
+fun pray_V : V;
+fun pray_V2 : V2;
+fun prayer_N : N;
+fun prayer_book_N : N;
+fun prayer_mat_N : N;
+fun prayer_meeting_N : N;
+fun prayer_rug_N : N;
+fun prayer_wheel_N : N;
+fun pre_approve_V2 : V2;
+fun pre_eminence_N : N;
+fun pre_eminent_A : A;
+fun pre_empt_V2 : V2;
+fun pre_emption_N : N;
+fun pre_emptive_A : A;
+fun pre_exist_V : V;
+fun pre_existence_N : N;
+fun pre_existent_A : A;
+fun pre_packaged_A : A;
+fun pre_raphaelite_A : A;
+fun pre_raphaelite_N : N;
+fun pre_register_V2 : V2;
+fun pre_sign_V2 : V2;
+fun pre_test_V2 : V2;
+fun preach_V : V;
+fun preach_V2 : V2;
+fun preacher_N : N;
+fun preachify_V : V;
+fun preamble_N : N;
+fun prearrange_V2 : V2;
+fun prearrangement_N : N;
+fun prebend_N : N;
+fun prebendary_N : N;
+fun precarious_A : A;
+fun precariousness_N : N;
+fun precast_A : A;
+fun precaution_N : N;
+fun precautionary_A : A;
+fun precede_V : V;
+fun precede_V2 : V2;
+fun precedence_N : N;
+fun precedent_N : N;
+fun precedented_A : A;
+fun preceding_A : A;
+fun precentor_N : N;
+fun precept_N : N;
+fun preceptor_N : N;
+fun precession_N : N;
+fun precinct_N : N;
+fun preciosity_N : N;
+fun precious_A : A;
+fun precious_Adv : Adv;
+fun preciousness_N : N;
+fun precipice_N : N;
+fun precipitate_A : A;
+fun precipitate_N : N;
+fun precipitate_V2 : V2;
+fun precipitation_N : N;
+fun precipitous_A : A;
+fun precis_N : N;
+fun precis_V2 : V2;
+fun precise_A : A;
+fun preciseness_N : N;
+fun precision_N : N;
+fun preclude_V2 : V2;
+fun preclusion_N : N;
+fun precocious_A : A;
+fun precociousness_N : N;
+fun precocity_N : N;
+fun precognition_N : N;
+fun preconceive_V2 : V2;
+fun preconception_N : N;
+fun preconcerted_A : A;
+fun precondition_N : N;
+fun preconditioned_A : A;
+fun precursor_N : N;
+fun precursory_A : A;
+fun predate_V2 : V2;
+fun predator_N : N;
+fun predatory_A : A;
+fun predecease_V2 : V2;
+fun predecessor_N : N;
+fun predestinate_A : A;
+fun predestinate_V2 : V2;
+fun predestination_N : N;
+fun predestine_V2 : V2;
+fun predetermination_N : N;
+fun predetermine_V2 : V2;
+fun predicament_N : N;
+fun predicate_N : N;
+fun predicate_V2 : V2;
+fun predicative_A : A;
+fun predict_V2 : V2;
+fun predict_VS : VS;
+fun predictability_N : N;
+fun predictable_A : A;
+fun prediction_N : N;
+fun predictor_N : N;
+fun predigest_V2 : V2;
+fun predilection_N : N;
+fun predispose_V2 : V2;
+fun predisposition_N : N;
+fun predominance_N : N;
+fun predominant_A : A;
+fun predominate_V : V;
+fun preen_V2 : V2;
+fun prefab_N : N;
+fun prefabricate_V2 : V2;
+fun prefabrication_N : N;
+fun preface_N : N;
+fun preface_V2 : V2;
+fun prefatory_A : A;
+fun prefect_N : N;
+fun prefectural_A : A;
+fun prefecture_N : N;
+fun prefer_V2 : V2;
+fun prefer_V2V : V2V;
+fun prefer_VV : VV;
+fun prefer_VS : VS;
+fun preferable_A : A;
+fun preference_N : N;
+fun preferential_A : A;
+fun preferment_N : N;
+fun prefigure_V2 : V2;
+fun prefix_N : N;
+fun prefix_V2 : V2;
+fun pregnancy_N : N;
+fun pregnant_A : A;
+fun preheat_V2 : V2;
+fun prehensile_A : A;
+fun prehistoric_A : A;
+fun prehistorical_A : A;
+fun prehistory_N : N;
+fun prejudge_V2 : V2;
+fun prejudgement_N : N;
+fun prejudice_N : N;
+fun prejudice_V2 : V2;
+fun prejudicial_A : A;
+fun prelacy_N : N;
+fun prelate_N : N;
+fun prelim_N : N;
+fun preliminary_A : A;
+fun preliminary_N : N;
+fun prelude_N : N;
+fun prelude_V2 : V2;
+fun premarital_A : A;
+fun premature_A : A;
+fun premeditate_V2 : V2;
+fun premeditation_N : N;
+fun premier_A : A;
+fun premier_N : N;
+fun premiere_N : N;
+fun premiere_V : V;
+fun premiere_V2 : V2;
+fun premiership_N : N;
+fun premise_N : N;
+fun premise_V2 : V2;
+fun premiss_N : N;
+fun premiss_V2 : V2;
+fun premium_N : N;
+fun premonition_N : N;
+fun premonitory_A : A;
+fun prenatal_A : A;
+fun prentice_N : N;
+fun preoccupation_N : N;
+fun preoccupy_V2 : V2;
+fun preordain_V2 : V2;
+fun prep_N : N;
+fun prepacked_A : A;
+fun preparation_N : N;
+fun preparatory_A : A;
+fun prepare_V : V;
+fun prepare_V2 : V2;
+fun prepare_V2V : V2V;
+fun prepare_VV : VV;
+fun prepare_VS : VS;
+fun preparedness_N : N;
+fun prepay_V2 : V2;
+fun preponderance_N : N;
+fun preponderant_A : A;
+fun preponderate_V : V;
+fun preposition_N : N;
+fun prepositional_A : A;
+fun prepossess_V2 : V2;
+fun prepossessing_A : A;
+fun prepossession_N : N;
+fun preposterous_A : A;
+fun prepuce_N : N;
+fun prerecord_V2 : V2;
+fun prerequisite_A : A;
+fun prerequisite_N : N;
+fun prerogative_N : N;
+fun pres_N : N;
+fun presage_N : N;
+fun presage_V2 : V2;
+fun presbyter_N : N;
+fun presbyterian_A : A;
+fun presbyterian_N : N;
+fun presbyterianism_N : N;
+fun presbytery_N : N;
+fun prescience_N : N;
+fun prescient_A : A;
+fun prescot_PN : PN;
+fun prescribe_V : V;
+fun prescribe_V2 : V2;
+fun prescript_N : N;
+fun prescription_N : N;
+fun prescriptive_A : A;
+fun presence_N : N;
+fun present_A : A;
+fun present_N : N;
+fun present_V2 : V2;
+fun present_day_A : A;
+fun presentable_A : A;
+fun presentation_N : N;
+fun presentiment_N : N;
+fun preservable_A : A;
+fun preservation_N : N;
+fun preservative_A : A;
+fun preservative_N : N;
+fun preserve_N : N;
+fun preserve_V2 : V2;
+fun preserver_N : N;
+fun preside_V : V;
+fun presidency_N : N;
+fun president_N : N;
+fun presidential_A : A;
+fun presidium_N : N;
+fun press_N : N;
+fun press_V : V;
+fun press_V2 : V2;
+fun press_V2V : V2V;
+fun press_agency_N : N;
+fun press_agent_N : N;
+fun press_box_N : N;
+fun press_clipping_N : N;
+fun press_cutting_N : N;
+fun press_gallery_N : N;
+fun press_gang_N : N;
+fun press_lord_N : N;
+fun press_photographer_N : N;
+fun press_stud_N : N;
+fun press_up_N : N;
+fun pressing_A : A;
+fun pressing_N : N;
+fun pressman_N : N;
+fun pressmark_N : N;
+fun pressure_N : N;
+fun pressure_V2 : V2;
+fun pressure_V2V : V2V;
+fun pressure_cooker_N : N;
+fun pressure_gauge_N : N;
+fun pressurized_A : A;
+fun prestatyn_PN : PN;
+fun prestidigitation_N : N;
+fun prestidigitator_N : N;
+fun prestige_N : N;
+fun prestigious_A : A;
+fun prestissimo_A : A;
+fun prestissimo_Adv : Adv;
+fun presto_A : A;
+fun presto_Adv : Adv;
+fun preston_PN : PN;
+fun prestonpans_PN : PN;
+fun prestressed_A : A;
+fun prestwich_PN : PN;
+fun prestwick_PN : PN;
+fun presumable_A : A;
+fun presume_V : V;
+fun presume_V2 : V2;
+fun presume_VS : VS;
+fun presuming_A : A;
+fun presumption_N : N;
+fun presumptive_A : A;
+fun presumptuous_A : A;
+fun presuppose_V2 : V2;
+fun presupposition_N : N;
+fun pretence_N : N;
+fun pretend_V : V;
+fun pretend_V2 : V2;
+fun pretend_VS : VS;
+fun pretendedly_Adv : Adv;
+fun pretender_N : N;
+fun pretension_N : N;
+fun pretentious_A : A;
+fun pretentiousness_N : N;
+fun preterit_A : A;
+fun preterit_N : N;
+fun preterite_A : A;
+fun preterite_N : N;
+fun preternatural_A : A;
+fun pretext_N : N;
+fun pretor_N : N;
+fun pretoria_PN : PN;
+fun prettify_V2 : V2;
+fun prettily_Adv : Adv;
+fun prettiness_N : N;
+fun pretty_A : A;
+fun pretty_Adv : Adv;
+fun pretty_N : N;
+fun pretty_pretty_A : A;
+fun pretzel_N : N;
+fun prevail_V : V;
+fun prevail_V2 : V2;
+fun prevailing_A : A;
+fun prevalence_N : N;
+fun prevalent_A : A;
+fun prevaricate_V : V;
+fun prevarication_N : N;
+fun prevent_V2 : V2;
+fun preventable_A : A;
+fun preventative_N : N;
+fun prevention_N : N;
+fun preventive_A : A;
+fun preview_N : N;
+fun preview_V2 : V2;
+fun previous_A : A;
+fun prevision_N : N;
+fun prey_N : N;
+fun prey_V : V;
+fun price_N : N;
+fun price_V : V;
+fun price_V2 : V2;
+fun price_V2V : V2V;
+fun price_control_N : N;
+fun price_controlled_A : A;
+fun priceless_A : A;
+fun pricelist_N : N;
+fun pricey_A : A;
+fun prick_N : N;
+fun prick_V : V;
+fun prick_V2 : V2;
+fun pricker_N : N;
+fun pricking_N : N;
+fun prickle_N : N;
+fun prickle_V : V;
+fun prickle_V2 : V2;
+fun prickly_A : A;
+fun pride_N : N;
+fun pride_V2 : V2;
+fun prie_dieu_N : N;
+fun priest_N : N;
+fun priest_ridden_A : A;
+fun priestcraft_N : N;
+fun priestess_N : N;
+fun priesthood_N : N;
+fun priestlike_A : A;
+fun priestly_A : A;
+fun prig_N : N;
+fun priggish_A : A;
+fun priggishness_N : N;
+fun prim_A : A;
+fun prim_V2 : V2;
+fun prima_A : A;
+fun prima_ballerina_N : N;
+fun prima_donna_N : N;
+fun prima_facie_A : A;
+fun prima_facie_Adv : Adv;
+fun primacy_N : N;
+fun primaeval_A : A;
+fun primal_A : A;
+fun primary_A : A;
+fun primary_N : N;
+fun primate_N : N;
+fun prime_A : A;
+fun prime_N : N;
+fun prime_V2 : V2;
+fun primer_N : N;
+fun primeval_A : A;
+fun priming_N : N;
+fun primitive_A : A;
+fun primitive_N : N;
+fun primitiveness_N : N;
+fun primness_N : N;
+fun primogeniture_N : N;
+fun primordial_A : A;
+fun primp_V2 : V2;
+fun primrose_N : N;
+fun primula_N : N;
+fun primus_N : N;
+fun prince_N : N;
+fun princedom_N : N;
+fun princely_A : A;
+fun princes_risborough_PN : PN;
+fun princess_N : N;
+fun principal_A : A;
+fun principal_N : N;
+fun principality_N : N;
+fun principle_N : N;
+fun principled_A : A;
+fun prink_V2 : V2;
+fun print_N : N;
+fun print_V : V;
+fun print_V2 : V2;
+fun print_seller_N : N;
+fun print_shop_N : N;
+fun printable_A : A;
+fun printer_N : N;
+fun printing_N : N;
+fun printing_ink_N : N;
+fun printing_press_N : N;
+fun printout_N : N;
+fun prior_A : A;
+fun prior_N : N;
+fun prioress_N : N;
+fun priority_N : N;
+fun priory_N : N;
+fun priscilla_PN : PN;
+fun prise_V2 : V2;
+fun prism_N : N;
+fun prismatic_A : A;
+fun prison_N : N;
+fun prison_breaking_N : N;
+fun prisoner_N : N;
+fun pristine_A : A;
+fun privacy_N : N;
+fun private_A : A;
+fun private_N : N;
+fun privateer_N : N;
+fun privation_N : N;
+fun privatize_V2 : V2;
+fun privet_N : N;
+fun privilege_N : N;
+fun privileged_A : A;
+fun privy_A : A;
+fun privy_N : N;
+fun prize_N : N;
+fun prize_V2 : V2;
+fun prize_fight_N : N;
+fun prize_money_N : N;
+fun prize_ring_N : N;
+fun pro_Adv : Adv;
+fun pro_N : N;
+fun pro_forma_A : A;
+fun pro_forma_Adv : Adv;
+fun pro_rata_Adv : Adv;
+fun pro_tem_Adv : Adv;
+fun pro_tempore_Adv : Adv;
+fun probabilistic_A : A;
+fun probabilistically_Adv : Adv;
+fun probability_N : N;
+fun probable_A : A;
+fun probable_N : N;
+fun probate_N : N;
+fun probate_V2 : V2;
+fun probation_N : N;
+fun probationary_A : A;
+fun probationer_N : N;
+fun probe_N : N;
+fun probe_V : V;
+fun probe_V2 : V2;
+fun probity_N : N;
+fun problem_N : N;
+fun problematic_A : A;
+fun problematically_Adv : Adv;
+fun proboscis_N : N;
+fun procedural_A : A;
+fun procedure_N : N;
+fun proceed_V : V;
+fun proceed_V2 : V2;
+fun proceed_V2V : V2V;
+fun proceeding_N : N;
+fun process_N : N;
+fun process_V : V;
+fun process_V2 : V2;
+fun process_server_N : N;
+fun procession_N : N;
+fun processional_A : A;
+fun processor_N : N;
+fun proclaim_V2 : V2;
+fun proclaim_VS : VS;
+fun proclamation_N : N;
+fun proclivity_N : N;
+fun proconsul_N : N;
+fun proconsular_A : A;
+fun proconsulate_N : N;
+fun procrastinate_V : V;
+fun procrastination_N : N;
+fun procreate_V2 : V2;
+fun procreation_N : N;
+fun proctor_N : N;
+fun procurable_A : A;
+fun procurator_N : N;
+fun procure_V2 : V2;
+fun procurement_N : N;
+fun procurer_N : N;
+fun procuress_N : N;
+fun prod_N : N;
+fun prod_V : V;
+fun prod_V2 : V2;
+fun prod_V2V : V2V;
+fun prodigal_A : A;
+fun prodigal_N : N;
+fun prodigality_N : N;
+fun prodigious_A : A;
+fun prodigy_N : N;
+fun produce_N : N;
+fun produce_V : V;
+fun produce_V2 : V2;
+fun producer_N : N;
+fun product_N : N;
+fun production_N : N;
+fun productive_A : A;
+fun productivity_N : N;
+fun prof_PN : PN;
+fun profanation_N : N;
+fun profane_A : A;
+fun profane_V2 : V2;
+fun profaneness_N : N;
+fun profanity_N : N;
+fun profess_V : V;
+fun profess_V2 : V2;
+fun profess_V2V : V2V;
+fun professed_A : A;
+fun profession_N : N;
+fun professional_A : A;
+fun professional_N : N;
+fun professionalism_N : N;
+fun professor_N : N;
+fun professorial_A : A;
+fun professorship_N : N;
+fun proffer_N : N;
+fun proffer_V2 : V2;
+fun proficiency_N : N;
+fun proficient_A : A;
+fun profile_N : N;
+fun profile_V2 : V2;
+fun profit_N : N;
+fun profit_V : V;
+fun profit_V2 : V2;
+fun profit_margin_N : N;
+fun profit_sharing_N : N;
+fun profitable_A : A;
+fun profiteer_N : N;
+fun profiteer_V : V;
+fun profitless_A : A;
+fun profligacy_N : N;
+fun profligate_A : A;
+fun profligate_N : N;
+fun profound_A : A;
+fun profundity_N : N;
+fun profuse_A : A;
+fun profuseness_N : N;
+fun profusion_N : N;
+fun progenitor_N : N;
+fun prognosis_N : N;
+fun prognostic_A : A;
+fun prognostic_N : N;
+fun prognosticate_V2 : V2;
+fun prognostication_N : N;
+fun program_N : N;
+fun program_V2 : V2;
+fun program_V2V : V2V;
+fun programme_N : N;
+fun programme_V2 : V2;
+fun programmer_N : N;
+fun progress_N : N;
+fun progress_V : V;
+fun progress_V2 : V2;
+fun progression_N : N;
+fun progressive_A : A;
+fun progressive_N : N;
+fun progressiveness_N : N;
+fun prohibit_V : V;
+fun prohibit_V2 : V2;
+fun prohibit_VS : VS;
+fun prohibition_N : N;
+fun prohibitionist_N : N;
+fun prohibitive_A : A;
+fun prohibitory_A : A;
+fun project_N : N;
+fun project_V : V;
+fun project_V2 : V2;
+fun project_V2V : V2V;
+fun project_VS : VS;
+fun projectile_A : A;
+fun projectile_N : N;
+fun projection_N : N;
+fun projectionist_N : N;
+fun projector_N : N;
+fun prolapse_N : N;
+fun prolapse_V : V;
+fun prole_N : N;
+fun proletarian_A : A;
+fun proletarian_N : N;
+fun proletariat_N : N;
+fun proliferate_V : V;
+fun proliferate_V2 : V2;
+fun proliferation_N : N;
+fun prolific_A : A;
+fun prolix_A : A;
+fun prolixity_N : N;
+fun prologue_N : N;
+fun prolong_V2 : V2;
+fun prolongation_N : N;
+fun prolonged_A : A;
+fun prom_N : N;
+fun promenade_N : N;
+fun promenade_V : V;
+fun promenade_V2 : V2;
+fun prominence_N : N;
+fun prominent_A : A;
+fun promiscuity_N : N;
+fun promiscuous_A : A;
+fun promise_N : N;
+fun promise_V : V;
+fun promise_V2 : V2;
+fun promise_VV : VV;
+fun promise_VS : VS;
+fun promising_A : A;
+fun promissory_A : A;
+fun promontory_N : N;
+fun promote_V : V;
+fun promote_V2 : V2;
+fun promoter_N : N;
+fun promotion_N : N;
+fun promotional_A : A;
+fun prompt_A : A;
+fun prompt_N : N;
+fun prompt_V2 : V2;
+fun prompt_V2V : V2V;
+fun prompt_box_N : N;
+fun prompt_copy_N : N;
+fun prompter_N : N;
+fun prompting_N : N;
+fun promptitude_N : N;
+fun promptness_N : N;
+fun promulgate_V2 : V2;
+fun promulgation_N : N;
+fun prone_A : A;
+fun proneness_N : N;
+fun prong_N : N;
+fun pronged_A : A;
+fun pronominal_A : A;
+fun pronoun_N : N;
+fun pronounce_V : V;
+fun pronounce_V2 : V2;
+fun pronounce_VS : VS;
+fun pronounceable_A : A;
+fun pronounced_A : A;
+fun pronouncement_N : N;
+fun pronto_Adv : Adv;
+fun pronunciamento_N : N;
+fun pronunciation_N : N;
+fun proof_A : A;
+fun proof_N : N;
+fun proof_V2 : V2;
+fun proofread_V : V;
+fun proofread_V2 : V2;
+fun proofreader_N : N;
+fun prop_N : N;
+fun prop_V2 : V2;
+fun propaganda_N : N;
+fun propagandist_N : N;
+fun propagandize_V : V;
+fun propagate_V : V;
+fun propagate_V2 : V2;
+fun propagation_N : N;
+fun propagator_N : N;
+fun propane_N : N;
+fun propel_V2 : V2;
+fun propellant_A : A;
+fun propellant_N : N;
+fun propellent_A : A;
+fun propellent_N : N;
+fun propeller_N : N;
+fun propensity_N : N;
+fun proper_A : A;
+fun propertied_A : A;
+fun property_N : N;
+fun property_man_N : N;
+fun property_master_N : N;
+fun prophecy_N : N;
+fun prophesy_V : V;
+fun prophesy_V2 : V2;
+fun prophet_N : N;
+fun prophetess_N : N;
+fun prophetic_A : A;
+fun prophetical_A : A;
+fun prophylactic_A : A;
+fun prophylactic_N : N;
+fun prophylaxis_N : N;
+fun propinquity_N : N;
+fun propitiate_V2 : V2;
+fun propitiation_N : N;
+fun propitiatory_A : A;
+fun propitious_A : A;
+fun proponent_N : N;
+fun proportion_N : N;
+fun proportion_V2 : V2;
+fun proportionable_A : A;
+fun proportional_A : A;
+fun proportionality_N : N;
+fun proportionate_A : A;
+fun proposal_N : N;
+fun propose_V : V;
+fun propose_V2 : V2;
+fun propose_VV : VV;
+fun propose_VS : VS;
+fun proposer_N : N;
+fun proposition_N : N;
+fun proposition_V2 : V2;
+fun propound_V2 : V2;
+fun proprietary_A : A;
+fun proprietor_N : N;
+fun proprietress_N : N;
+fun propriety_N : N;
+fun propulsion_N : N;
+fun propulsive_A : A;
+fun prorogation_N : N;
+fun prorogue_V2 : V2;
+fun prosaic_A : A;
+fun prosaically_Adv : Adv;
+fun proscenium_N : N;
+fun proscribe_V2 : V2;
+fun proscription_N : N;
+fun prose_N : N;
+fun prosecute_V2 : V2;
+fun prosecution_N : N;
+fun prosecutor_N : N;
+fun proselyte_N : N;
+fun proselytize_V : V;
+fun proselytize_V2 : V2;
+fun prosily_Adv : Adv;
+fun prosiness_N : N;
+fun prosody_N : N;
+fun prospect_N : N;
+fun prospect_V : V;
+fun prospective_A : A;
+fun prospector_N : N;
+fun prospectus_N : N;
+fun prosper_V : V;
+fun prosper_V2 : V2;
+fun prosperity_N : N;
+fun prosperous_A : A;
+fun prostate_N : N;
+fun prostitute_N : N;
+fun prostitute_V2 : V2;
+fun prostitution_N : N;
+fun prostrate_A : A;
+fun prostrate_V2 : V2;
+fun prostration_N : N;
+fun prosy_A : A;
+fun protagonist_N : N;
+fun protean_A : A;
+fun protect_V : V;
+fun protect_V2 : V2;
+fun protection_N : N;
+fun protectionism_N : N;
+fun protectionist_N : N;
+fun protective_A : A;
+fun protector_N : N;
+fun protectorate_N : N;
+fun protege_N : N;
+fun protegee_N : N;
+fun protein_N : N;
+fun protest_N : N;
+fun protest_V : V;
+fun protest_V2 : V2;
+fun protestant_A : A;
+fun protestant_N : N;
+fun protestantism_N : N;
+fun protestation_N : N;
+fun protester_N : N;
+fun protestingly_Adv : Adv;
+fun protocol_N : N;
+fun proton_N : N;
+fun protoplasm_N : N;
+fun prototype_N : N;
+fun protract_V2 : V2;
+fun protraction_N : N;
+fun protractor_N : N;
+fun protrude_V : V;
+fun protrude_V2 : V2;
+fun protrusion_N : N;
+fun protrusive_A : A;
+fun protuberance_N : N;
+fun protuberant_A : A;
+fun proud_A : A;
+fun provable_A : A;
+fun prove_V : V;
+fun prove_V2 : V2;
+fun prove_V2V : V2V;
+fun prove_VA : VA;
+fun prove_VS : VS;
+fun provenance_N : N;
+fun provender_N : N;
+fun proverb_N : N;
+fun proverbial_A : A;
+fun provide_V : V;
+fun provide_V2 : V2;
+fun provide_VS : VS;
+fun providence_N : N;
+fun providence_PN : PN;
+fun provident_A : A;
+fun providential_A : A;
+fun provider_N : N;
+fun province_N : N;
+fun provincial_A : A;
+fun provincial_N : N;
+fun provincialism_N : N;
+fun provision_N : N;
+fun provision_V2 : V2;
+fun provisional_A : A;
+fun proviso_N : N;
+fun provisory_A : A;
+fun provocation_N : N;
+fun provocative_A : A;
+fun provoke_V2 : V2;
+fun provoking_A : A;
+fun provost_N : N;
+fun prow_N : N;
+fun prowess_N : N;
+fun prowl_N : N;
+fun prowl_V : V;
+fun prowl_V2 : V2;
+fun prowler_N : N;
+fun prox_Adv : Adv;
+fun proximate_A : A;
+fun proximity_N : N;
+fun proximo_A : A;
+fun proxy_N : N;
+fun pru_PN : PN;
+fun prude_N : N;
+fun prudence_N : N;
+fun prudence_PN : PN;
+fun prudent_A : A;
+fun prudential_A : A;
+fun prudery_N : N;
+fun prudhoe_PN : PN;
+fun prudish_A : A;
+fun prune_N : N;
+fun prune_V2 : V2;
+fun pruning_N : N;
+fun pruning_hook_N : N;
+fun pruning_knife_N : N;
+fun pruning_saw_N : N;
+fun prurience_N : N;
+fun pruriency_N : N;
+fun prurient_A : A;
+fun prussian_A : A;
+fun prussian_N : N;
+fun prussic_A : A;
+fun pry_V : V;
+fun pry_V2 : V2;
+fun pryingly_Adv : Adv;
+fun psalm_N : N;
+fun psalmist_N : N;
+fun psalmody_N : N;
+fun psalter_N : N;
+fun psaltery_N : N;
+fun psephologist_N : N;
+fun psephology_N : N;
+fun pseud_N : N;
+fun pseudo_A : A;
+fun pseudo_N : N;
+fun pseudonym_N : N;
+fun pseudonymous_A : A;
+fun psittacosis_N : N;
+fun psyche_N : N;
+fun psychedelic_A : A;
+fun psychiatric_A : A;
+fun psychiatrist_N : N;
+fun psychiatry_N : N;
+fun psychic_A : A;
+fun psychic_N : N;
+fun psychical_A : A;
+fun psychoanalyse_V2 : V2;
+fun psychoanalysis_N : N;
+fun psychoanalyst_N : N;
+fun psychoanalytic_A : A;
+fun psychoanalytical_A : A;
+fun psychoanalyze_V2 : V2;
+fun psychological_A : A;
+fun psychologist_N : N;
+fun psychology_N : N;
+fun psychopath_N : N;
+fun psychopathic_A : A;
+fun psychosis_N : N;
+fun psychosomatic_A : A;
+fun psychotherapy_N : N;
+fun psychotic_N : N;
+fun pt_N : N;
+fun pta_N : N;
+fun ptarmigan_N : N;
+fun pte_PN : PN;
+fun pterodactyl_N : N;
+fun pto_PN : PN;
+fun ptomaine_N : N;
+fun pty_PN : PN;
+fun pub_N : N;
+fun pub_crawl_N : N;
+fun pub_crawl_V : V;
+fun puberty_N : N;
+fun pubic_A : A;
+fun public_A : A;
+fun public_N : N;
+fun public_spirited_A : A;
+fun publican_N : N;
+fun publication_N : N;
+fun publicist_N : N;
+fun publicity_N : N;
+fun publicize_V2 : V2;
+fun publish_V : V;
+fun publish_V2 : V2;
+fun publisher_N : N;
+fun puce_N : N;
+fun puck_N : N;
+fun pucker_N : N;
+fun pucker_V : V;
+fun pucker_V2 : V2;
+fun puckish_A : A;
+fun pud_N : N;
+fun pudden_N : N;
+fun pudden_head_N : N;
+fun pudding_N : N;
+fun pudding_face_N : N;
+fun puddle_N : N;
+fun puddle_V2 : V2;
+fun puddler_N : N;
+fun pudgy_A : A;
+fun pudsey_PN : PN;
+fun pueblo_N : N;
+fun puerile_A : A;
+fun puerility_N : N;
+fun puerperal_A : A;
+fun puff_N : N;
+fun puff_V : V;
+fun puff_V2 : V2;
+fun puffball_N : N;
+fun puffin_N : N;
+fun puffiness_N : N;
+fun puffy_A : A;
+fun pug_N : N;
+fun pug_dog_N : N;
+fun pug_nose_A : A;
+fun pug_nose_N : N;
+fun pug_nosed_A : A;
+fun pugilism_N : N;
+fun pugilist_N : N;
+fun pugilistic_A : A;
+fun pugnacious_A : A;
+fun pugnacity_N : N;
+fun puissance_N : N;
+fun puissant_A : A;
+fun puke_N : N;
+fun puke_V : V;
+fun puke_V2 : V2;
+fun pukka_A : A;
+fun pulchritude_N : N;
+fun pulchritudinous_A : A;
+fun pule_V : V;
+fun pull_N : N;
+fun pull_V : V;
+fun pull_V2 : V2;
+fun pull_in_N : N;
+fun pull_off_N : N;
+fun pull_out_N : N;
+fun pull_through_N : N;
+fun pull_up_N : N;
+fun pullet_N : N;
+fun pulley_N : N;
+fun pulley_block_N : N;
+fun pullman_N : N;
+fun pullover_N : N;
+fun pullulate_V : V;
+fun pulmonary_A : A;
+fun pulp_N : N;
+fun pulp_V : V;
+fun pulp_V2 : V2;
+fun pulpit_N : N;
+fun pulpy_A : A;
+fun pulque_N : N;
+fun pulsar_N : N;
+fun pulsate_V : V;
+fun pulsate_V2 : V2;
+fun pulsation_N : N;
+fun pulse_N : N;
+fun pulse_V : V;
+fun pulverize_V : V;
+fun pulverize_V2 : V2;
+fun puma_N : N;
+fun pumice_N : N;
+fun pumice_stone_N : N;
+fun pummel_V2 : V2;
+fun pump_N : N;
+fun pump_V : V;
+fun pump_V2 : V2;
+fun pump_room_N : N;
+fun pumpernickel_N : N;
+fun pumpkin_N : N;
+fun pun_N : N;
+fun pun_V : V;
+fun punch_N : N;
+fun punch_V2 : V2;
+fun punch_drunk_A : A;
+fun punch_up_N : N;
+fun punchball_N : N;
+fun punchbowl_N : N;
+fun punching_ball_N : N;
+fun punctilio_N : N;
+fun punctilious_A : A;
+fun punctiliousness_N : N;
+fun punctual_A : A;
+fun punctuality_N : N;
+fun punctuate_V2 : V2;
+fun punctuation_N : N;
+fun puncture_N : N;
+fun puncture_V : V;
+fun puncture_V2 : V2;
+fun pundit_N : N;
+fun pungency_N : N;
+fun pungent_A : A;
+fun punic_A : A;
+fun punily_Adv : Adv;
+fun punish_V2 : V2;
+fun punishable_A : A;
+fun punishment_N : N;
+fun punitive_A : A;
+fun punk_N : N;
+fun punkah_N : N;
+fun punnet_N : N;
+fun punster_N : N;
+fun punt_N : N;
+fun punt_V : V;
+fun punt_V2 : V2;
+fun punter_N : N;
+fun puny_A : A;
+fun pup_N : N;
+fun pupa_N : N;
+fun pupil_N : N;
+fun puppet_N : N;
+fun puppeteer_N : N;
+fun puppy_N : N;
+fun purblind_A : A;
+fun purchasable_A : A;
+fun purchase_N : N;
+fun purchase_V2 : V2;
+fun purchaser_N : N;
+fun purdah_N : N;
+fun pure_A : A;
+fun puree_N : N;
+fun pureness_N : N;
+fun purgation_N : N;
+fun purgative_A : A;
+fun purgative_N : N;
+fun purgatorial_A : A;
+fun purgatory_N : N;
+fun purge_N : N;
+fun purge_V2 : V2;
+fun purification_N : N;
+fun purifier_N : N;
+fun purify_V2 : V2;
+fun purist_N : N;
+fun puritan_A : A;
+fun puritan_N : N;
+fun puritanical_A : A;
+fun puritanism_N : N;
+fun purity_N : N;
+fun purl_N : N;
+fun purl_V : V;
+fun purl_V2 : V2;
+fun purloin_V2 : V2;
+fun purple_A : A;
+fun purple_N : N;
+fun purplish_A : A;
+fun purport_N : N;
+fun purport_V2 : V2;
+fun purport_V2V : V2V;
+fun purpose_N : N;
+fun purpose_V2 : V2;
+fun purpose_built_A : A;
+fun purposeful_A : A;
+fun purposeless_A : A;
+fun purposely_Adv : Adv;
+fun purposive_A : A;
+fun purr_N : N;
+fun purr_V : V;
+fun purr_V2 : V2;
+fun purr_VS : VS;
+fun purse_N : N;
+fun purse_V2 : V2;
+fun purse_proud_A : A;
+fun purser_N : N;
+fun pursuance_N : N;
+fun pursuant_A : A;
+fun pursue_V : V;
+fun pursue_V2 : V2;
+fun pursuer_N : N;
+fun pursuit_N : N;
+fun pursy_A : A;
+fun purulence_N : N;
+fun purulent_A : A;
+fun purvey_V : V;
+fun purvey_V2 : V2;
+fun purveyance_N : N;
+fun purveyor_N : N;
+fun purview_N : N;
+fun pus_N : N;
+fun pusan_PN : PN;
+fun push_N : N;
+fun push_V : V;
+fun push_V2 : V2;
+fun push_V2V : V2V;
+fun push_VS : VS;
+fun push_bike_N : N;
+fun pushcart_N : N;
+fun pushchair_N : N;
+fun pusher_N : N;
+fun pushful_A : A;
+fun pushing_A : A;
+fun pushover_N : N;
+fun pusillanimity_N : N;
+fun pusillanimous_A : A;
+fun puss_N : N;
+fun pussy_N : N;
+fun pussycat_N : N;
+fun pussyfoot_V : V;
+fun pustule_N : N;
+fun put_N : N;
+fun put_V : V;
+fun put_V2 : V2;
+fun put_V2V : V2V;
+fun put_VS : VS;
+fun put_down_N : N;
+fun put_on_N : N;
+fun putative_A : A;
+fun putrefaction_N : N;
+fun putrefy_V : V;
+fun putrefy_V2 : V2;
+fun putrescence_N : N;
+fun putrescent_A : A;
+fun putrid_A : A;
+fun putridity_N : N;
+fun putsch_N : N;
+fun putt_N : N;
+fun putt_V : V;
+fun putt_V2 : V2;
+fun puttee_N : N;
+fun putter_V : V;
+fun putter_V2 : V2;
+fun putting_green_N : N;
+fun putting_iron_N : N;
+fun putty_N : N;
+fun putty_V2 : V2;
+fun puzzle_N : N;
+fun puzzle_V : V;
+fun puzzle_V2 : V2;
+fun puzzlement_N : N;
+fun puzzler_N : N;
+fun pwllheli_PN : PN;
+fun pygmy_N : N;
+fun pyjama_A : A;
+fun pyle_PN : PN;
+fun pylon_N : N;
+fun pyongyang_PN : PN;
+fun pyorrhoea_N : N;
+fun pyramid_N : N;
+fun pyre_N : N;
+fun pyrites_N : N;
+fun pyrotechnic_A : A;
+fun pyrrhic_A : A;
+fun python_N : N;
+fun pyx_N : N;
+fun qatar_PN : PN;
+fun qatari_A : A;
+fun qatari_N : N;
+fun qc_N : N;
+fun qed_PN : PN;
+fun qt_N : N;
+fun quack_N : N;
+fun quack_V : V;
+fun quack_quack_N : N;
+fun quackery_N : N;
+fun quad_N : N;
+fun quadrangle_N : N;
+fun quadrangular_A : A;
+fun quadrant_N : N;
+fun quadratic_A : A;
+fun quadrilateral_A : A;
+fun quadrilateral_N : N;
+fun quadrille_N : N;
+fun quadrillion_N : N;
+fun quadrophonic_A : A;
+fun quadrophony_N : N;
+fun quadruped_N : N;
+fun quadruple_A : A;
+fun quadruple_N : N;
+fun quadruple_V : V;
+fun quadruple_V2 : V2;
+fun quadruplet_N : N;
+fun quadruplicate_A : A;
+fun quadruplicate_N : N;
+fun quadruplicate_V2 : V2;
+fun quaff_V : V;
+fun quaff_V2 : V2;
+fun quagga_N : N;
+fun quagmire_N : N;
+fun quai_d'orsay_N : N;
+fun quail_N : N;
+fun quail_V : V;
+fun quaint_A : A;
+fun quaintness_N : N;
+fun quake_N : N;
+fun quake_V : V;
+fun quaker_N : N;
+fun qualification_N : N;
+fun qualified_A : A;
+fun qualifier_N : N;
+fun qualify_V : V;
+fun qualify_V2 : V2;
+fun qualitative_A : A;
+fun quality_N : N;
+fun qualm_N : N;
+fun quandary_N : N;
+fun quango_N : N;
+fun quantify_V2 : V2;
+fun quantitative_A : A;
+fun quantity_N : N;
+fun quantum_N : N;
+fun quarantine_N : N;
+fun quarantine_V2 : V2;
+fun quark_N : N;
+fun quarrel_N : N;
+fun quarrel_V : V;
+fun quarrelsome_A : A;
+fun quarry_N : N;
+fun quarry_V : V;
+fun quarry_V2 : V2;
+fun quarryman_N : N;
+fun quart_N : N;
+fun quarter_N : N;
+fun quarter_V2 : V2;
+fun quarter_day_N : N;
+fun quarter_deck_N : N;
+fun quarter_plate_N : N;
+fun quarterfinal_N : N;
+fun quartering_N : N;
+fun quarterlight_N : N;
+fun quarterly_A : A;
+fun quarterly_Adv : Adv;
+fun quarterly_N : N;
+fun quartermaster_N : N;
+fun quartermaster_general_N : N;
+fun quarterstaff_N : N;
+fun quartet_N : N;
+fun quarto_N : N;
+fun quartz_N : N;
+fun quasar_N : N;
+fun quash_V2 : V2;
+fun quassia_N : N;
+fun quatercentenary_N : N;
+fun quatrain_N : N;
+fun quattrocento_N : N;
+fun quaver_N : N;
+fun quaver_V : V;
+fun quaver_V2 : V2;
+fun quay_N : N;
+fun queasily_Adv : Adv;
+fun queasiness_N : N;
+fun queasy_A : A;
+fun quebec_PN : PN;
+fun queen_N : N;
+fun queen_V2 : V2;
+fun queenborough_in_sheppey_PN : PN;
+fun queenly_A : A;
+fun queensbury_PN : PN;
+fun queensferry_PN : PN;
+fun queensland_PN : PN;
+fun queer_A : A;
+fun queer_N : N;
+fun queer_V2 : V2;
+fun queerness_N : N;
+fun quell_V2 : V2;
+fun quench_V2 : V2;
+fun quenchless_A : A;
+fun quentin_PN : PN;
+fun quern_N : N;
+fun querulous_A : A;
+fun querulousness_N : N;
+fun query_N : N;
+fun query_V2 : V2;
+fun quest_N : N;
+fun quest_V : V;
+fun question_N : N;
+fun question_V2 : V2;
+fun question_mark_N : N;
+fun question_master_N : N;
+fun questionable_A : A;
+fun questioner_N : N;
+fun questioningly_Adv : Adv;
+fun questionnaire_N : N;
+fun quetzal_N : N;
+fun queue_N : N;
+fun queue_V : V;
+fun qui_vive_N : N;
+fun quibble_N : N;
+fun quibble_V : V;
+fun quibbler_N : N;
+fun quibbling_A : A;
+fun quiche_N : N;
+fun quick_A : A;
+fun quick_Adv : Adv;
+fun quick_N : N;
+fun quick_change_A : A;
+fun quick_eared_A : A;
+fun quick_eyed_A : A;
+fun quick_freeze_V2 : V2;
+fun quick_sighted_A : A;
+fun quick_tempered_A : A;
+fun quick_witted_A : A;
+fun quicken_V : V;
+fun quicken_V2 : V2;
+fun quicker_Adv : Adv;
+fun quickest_Adv : Adv;
+fun quickie_N : N;
+fun quicklime_N : N;
+fun quickness_N : N;
+fun quicksand_N : N;
+fun quickset_A : A;
+fun quicksilver_N : N;
+fun quickstep_N : N;
+fun quid_N : N;
+fun quid_pro_quo_N : N;
+fun quiescence_N : N;
+fun quiescent_A : A;
+fun quiet_A : A;
+fun quiet_N : N;
+fun quiet_V : V;
+fun quiet_V2 : V2;
+fun quieten_V : V;
+fun quieten_V2 : V2;
+fun quietism_N : N;
+fun quietist_N : N;
+fun quietness_N : N;
+fun quietude_N : N;
+fun quietus_N : N;
+fun quiff_N : N;
+fun quill_N : N;
+fun quill_feather_N : N;
+fun quilt_N : N;
+fun quilt_V2 : V2;
+fun quin_N : N;
+fun quince_N : N;
+fun quincentenary_A : A;
+fun quincentenary_N : N;
+fun quinine_N : N;
+fun quinquagesima_N : N;
+fun quinquagesima_PN : PN;
+fun quinsy_N : N;
+fun quintal_N : N;
+fun quintessence_N : N;
+fun quintet_N : N;
+fun quintuplet_N : N;
+fun quip_N : N;
+fun quip_V : V;
+fun quip_VS : VS;
+fun quire_N : N;
+fun quirk_N : N;
+fun quisling_N : N;
+fun quit_A : A;
+fun quit_V : V;
+fun quit_V2 : V2;
+fun quite_Predet : Predet;
+fun quito_PN : PN;
+fun quits_A : A;
+fun quittance_N : N;
+fun quitter_N : N;
+fun quiver_N : N;
+fun quiver_V : V;
+fun quiver_V2 : V2;
+fun quixotic_A : A;
+fun quixotically_Adv : Adv;
+fun quiz_N : N;
+fun quiz_V2 : V2;
+fun quizmaster_N : N;
+fun quizzical_A : A;
+fun quoin_N : N;
+fun quoit_N : N;
+fun quonset_N : N;
+fun quorum_N : N;
+fun quot_V : V;
+fun quot_VS : VS;
+fun quota_N : N;
+fun quotability_N : N;
+fun quotable_A : A;
+fun quotation_N : N;
+fun quote_N : N;
+fun quote_V : V;
+fun quote_V2 : V2;
+fun quotidian_A : A;
+fun quotient_N : N;
+fun qv_PN : PN;
+fun ra_N : N;
+fun rabbi_N : N;
+fun rabbinical_A : A;
+fun rabbit_N : N;
+fun rabbit_V : V;
+fun rabbit_burrow_N : N;
+fun rabbit_hole_N : N;
+fun rabbit_hutch_N : N;
+fun rabbit_punch_N : N;
+fun rabbit_warren_N : N;
+fun rabble_N : N;
+fun rabble_rousing_A : A;
+fun rabelaisian_A : A;
+fun rabid_A : A;
+fun rabies_N : N;
+fun raccoon_N : N;
+fun race_N : N;
+fun race_V : V;
+fun race_V2 : V2;
+fun race_V2V : V2V;
+fun race_meeting_N : N;
+fun racecard_N : N;
+fun racecourse_N : N;
+fun racehorse_N : N;
+fun raceme_N : N;
+fun racer_N : N;
+fun rachel_PN : PN;
+fun racial_A : A;
+fun racialism_N : N;
+fun racialist_N : N;
+fun racily_Adv : Adv;
+fun raciness_N : N;
+fun racing_N : N;
+fun racism_N : N;
+fun racist_N : N;
+fun rack_N : N;
+fun rack_V2 : V2;
+fun rack_railway_N : N;
+fun rack_rent_N : N;
+fun racket_N : N;
+fun racket_V : V;
+fun racketeer_N : N;
+fun racketeering_N : N;
+fun raconteur_N : N;
+fun racoon_N : N;
+fun racquet_N : N;
+fun racy_A : A;
+fun rada_PN : PN;
+fun radar_N : N;
+fun radcliffe_PN : PN;
+fun radcliffe_on_trent_PN : PN;
+fun raddled_A : A;
+fun radial_A : A;
+fun radial_N : N;
+fun radiance_N : N;
+fun radiant_A : A;
+fun radiate_V : V;
+fun radiate_V2 : V2;
+fun radiation_N : N;
+fun radiator_N : N;
+fun radical_A : A;
+fun radical_N : N;
+fun radicalism_N : N;
+fun radicle_N : N;
+fun radio_N : N;
+fun radio_V2 : V2;
+fun radio_gramophone_N : N;
+fun radio_location_N : N;
+fun radio_set_N : N;
+fun radio_telescope_N : N;
+fun radioactive_A : A;
+fun radioactivity_N : N;
+fun radiogram_N : N;
+fun radiograph_N : N;
+fun radiographer_N : N;
+fun radiography_N : N;
+fun radioisotope_N : N;
+fun radiologist_N : N;
+fun radiology_N : N;
+fun radiotherapist_N : N;
+fun radiotherapy_N : N;
+fun radish_N : N;
+fun radium_N : N;
+fun radius_N : N;
+fun radlett_PN : PN;
+fun radstock_PN : PN;
+fun raf_N : N;
+fun raffia_N : N;
+fun raffish_A : A;
+fun raffle_N : N;
+fun raffle_V2 : V2;
+fun raft_N : N;
+fun raft_V : V;
+fun raft_V2 : V2;
+fun rafter_N : N;
+fun raftered_A : A;
+fun raftsman_N : N;
+fun rag_N : N;
+fun rag_V2 : V2;
+fun rag_day_N : N;
+fun ragamuffin_N : N;
+fun ragbag_N : N;
+fun rage_N : N;
+fun rage_V : V;
+fun ragged_A : A;
+fun raggedness_N : N;
+fun raglan_N : N;
+fun ragout_N : N;
+fun ragtag_N : N;
+fun ragtime_N : N;
+fun raid_N : N;
+fun raid_V : V;
+fun raid_V2 : V2;
+fun raider_N : N;
+fun rail_N : N;
+fun rail_V : V;
+fun rail_V2 : V2;
+fun railcar_N : N;
+fun railhead_N : N;
+fun railing_N : N;
+fun raillery_N : N;
+fun railroad_N : N;
+fun railroad_V2 : V2;
+fun railway_N : N;
+fun railwayman_N : N;
+fun raiment_N : N;
+fun rain_N : N;
+fun rain_V : V;
+fun rain_V2 : V2;
+fun rain_gauge_N : N;
+fun rainbow_N : N;
+fun raincoat_N : N;
+fun raindrop_N : N;
+fun rainfall_N : N;
+fun rainford_PN : PN;
+fun rainproof_A : A;
+fun rainwater_N : N;
+fun rainy_A : A;
+fun raise_N : N;
+fun raise_V2 : V2;
+fun raiser_N : N;
+fun raisin_N : N;
+fun raison_d'etre_N : N;
+fun raj_N : N;
+fun rajah_N : N;
+fun rake_N : N;
+fun rake_V : V;
+fun rake_V2 : V2;
+fun rake_off_N : N;
+fun rakish_A : A;
+fun rakishness_N : N;
+fun rallentando_A : A;
+fun rallentando_Adv : Adv;
+fun rally_N : N;
+fun rally_V : V;
+fun rally_V2 : V2;
+fun rally_V2V : V2V;
+fun ralph_PN : PN;
+fun ram_N : N;
+fun ram_V2 : V2;
+fun ramadan_N : N;
+fun ramadan_PN : PN;
+fun ramble_N : N;
+fun ramble_V : V;
+fun rambler_N : N;
+fun rambling_A : A;
+fun rambunctious_A : A;
+fun ramification_N : N;
+fun ramify_V : V;
+fun ramify_V2 : V2;
+fun ramjet_N : N;
+fun ramp_N : N;
+fun ramp_V2 : V2;
+fun rampage_N : N;
+fun rampage_V : V;
+fun rampageous_A : A;
+fun rampant_A : A;
+fun rampart_N : N;
+fun ramrod_N : N;
+fun ramsbottom_PN : PN;
+fun ramsgate_PN : PN;
+fun ramshackle_A : A;
+fun ranch_N : N;
+fun rancher_N : N;
+fun rancid_A : A;
+fun rancorous_A : A;
+fun rancour_N : N;
+fun rand_N : N;
+fun randolph_PN : PN;
+fun random_N : N;
+fun randomly_Adv : Adv;
+fun randomness_N : N;
+fun randy_A : A;
+fun ranee_N : N;
+fun range_N : N;
+fun range_V : V;
+fun range_V2 : V2;
+fun rangefinder_N : N;
+fun ranger_N : N;
+fun rangoon_PN : PN;
+fun rani_N : N;
+fun rank_A : A;
+fun rank_N : N;
+fun rank_V : V;
+fun rank_V2 : V2;
+fun rank_VS : VS;
+fun ranker_N : N;
+fun ranking_N : N;
+fun rankle_V : V;
+fun rankness_N : N;
+fun ransack_V2 : V2;
+fun ransom_N : N;
+fun ransom_V2 : V2;
+fun rant_N : N;
+fun rant_V : V;
+fun rant_V2 : V2;
+fun ranter_N : N;
+fun rap_N : N;
+fun rap_V : V;
+fun rap_V2 : V2;
+fun rapacious_A : A;
+fun rapacity_N : N;
+fun rape_N : N;
+fun rape_V2 : V2;
+fun rapid_A : A;
+fun rapid_N : N;
+fun rapidity_N : N;
+fun rapier_N : N;
+fun rapier_thrust_N : N;
+fun rapine_N : N;
+fun rapist_N : N;
+fun rapport_N : N;
+fun rapprochement_N : N;
+fun rapscallion_N : N;
+fun rapt_A : A;
+fun rapture_N : N;
+fun rapturous_A : A;
+fun rare_A : A;
+fun rarebit_N : N;
+fun rarefaction_N : N;
+fun rarefy_V : V;
+fun rarefy_V2 : V2;
+fun rareness_N : N;
+fun raring_A : A;
+fun rarity_N : N;
+fun rascal_N : N;
+fun rascally_A : A;
+fun rase_V2 : V2;
+fun rash_A : A;
+fun rash_N : N;
+fun rasher_N : N;
+fun rashness_N : N;
+fun rasp_N : N;
+fun rasp_V : V;
+fun rasp_V2 : V2;
+fun raspberry_N : N;
+fun raspingly_Adv : Adv;
+fun rat_N : N;
+fun rat_V : V;
+fun rat_V2 : V2;
+fun rat_a_tat_tat_N : N;
+fun rat_tat_N : N;
+fun ratability_N : N;
+fun ratable_A : A;
+fun ratan_N : N;
+fun ratch_N : N;
+fun ratchet_N : N;
+fun rate_N : N;
+fun rate_V : V;
+fun rate_V2 : V2;
+fun rate_VA : VA;
+fun rate_VS : VS;
+fun rateability_N : N;
+fun rateable_A : A;
+fun ratepayer_N : N;
+fun rather_Adv : Adv;
+fun ratification_N : N;
+fun ratify_V2 : V2;
+fun rating_N : N;
+fun ratio_N : N;
+fun ratiocination_N : N;
+fun ration_N : N;
+fun ration_V2 : V2;
+fun rational_A : A;
+fun rationale_N : N;
+fun rationalism_N : N;
+fun rationalist_N : N;
+fun rationalistic_A : A;
+fun rationality_N : N;
+fun rationalization_N : N;
+fun rationalize_V2 : V2;
+fun ratlin_N : N;
+fun ratline_N : N;
+fun rattan_N : N;
+fun ratter_N : N;
+fun rattle_N : N;
+fun rattle_V : V;
+fun rattle_V2 : V2;
+fun rattlebrained_A : A;
+fun rattlepated_A : A;
+fun rattler_N : N;
+fun rattlesnake_N : N;
+fun rattling_A : A;
+fun rattling_Adv : Adv;
+fun ratty_A : A;
+fun raucous_A : A;
+fun ravage_N : N;
+fun ravage_V : V;
+fun ravage_V2 : V2;
+fun rave_N : N;
+fun rave_V : V;
+fun rave_V2 : V2;
+fun rave_up_N : N;
+fun ravel_V : V;
+fun ravel_V2 : V2;
+fun raven_N : N;
+fun ravening_A : A;
+fun ravenna_PN : PN;
+fun ravenous_A : A;
+fun raver_N : N;
+fun ravine_N : N;
+fun raving_A : A;
+fun raving_Adv : Adv;
+fun ravioli_N : N;
+fun ravish_V2 : V2;
+fun ravishingly_Adv : Adv;
+fun ravishment_N : N;
+fun raw_A : A;
+fun raw_N : N;
+fun rawboned_A : A;
+fun rawhide_A : A;
+fun rawtenstall_PN : PN;
+fun ray_N : N;
+fun ray_PN : PN;
+fun ray_V : V;
+fun ray_V2 : V2;
+fun raymond_PN : PN;
+fun rayon_N : N;
+fun raze_V2 : V2;
+fun razor_N : N;
+fun razor_V2 : V2;
+fun razor_edge_N : N;
+fun razorback_N : N;
+fun razorbacked_A : A;
+fun razorblade_N : N;
+fun razzle_N : N;
+fun razzle_dazzle_N : N;
+fun rc_PN : PN;
+fun rd_PN : PN;
+fun re_N : N;
+fun re_address_V2 : V2;
+fun re_afforest_V2 : V2;
+fun re_afforestation_N : N;
+fun re_count_N : N;
+fun re_count_V2 : V2;
+fun re_cover_V2 : V2;
+fun re_create_V2 : V2;
+fun re_echo_N : N;
+fun re_echo_V : V;
+fun re_elect_V2 : V2;
+fun re_emerge_V : V;
+fun re_emphasize_V2 : V2;
+fun re_enter_V : V;
+fun re_enter_V2 : V2;
+fun re_entry_N : N;
+fun re_establish_V2 : V2;
+fun re_evaluate_V2 : V2;
+fun re_examine_V2 : V2;
+fun re_form_V : V;
+fun re_form_V2 : V2;
+fun re_formation_N : N;
+fun re_join_V2 : V2;
+fun re_supply_V2 : V2;
+fun reach_N : N;
+fun reach_V : V;
+fun reach_V2 : V2;
+fun reach_V2V : V2V;
+fun reach_VA : VA;
+fun react_V : V;
+fun reaction_N : N;
+fun reactionary_N : N;
+fun reactivate_V2 : V2;
+fun reactor_N : N;
+fun read_N : N;
+fun read_V : V;
+fun read_V2 : V2;
+fun read_VA : VA;
+fun read_VS : VS;
+fun readability_N : N;
+fun readable_A : A;
+fun reader_N : N;
+fun readership_N : N;
+fun readily_Adv : Adv;
+fun readiness_N : N;
+fun reading_N : N;
+fun reading_PN : PN;
+fun reading_lamp_N : N;
+fun reading_room_N : N;
+fun readjust_V2 : V2;
+fun readjustment_N : N;
+fun readmission_N : N;
+fun readmit_V2 : V2;
+fun ready_A : A;
+fun ready_N : N;
+fun ready_V2 : V2;
+fun ready_made_A : A;
+fun reaffiliation_N : N;
+fun reaffirm_V2 : V2;
+fun reagent_N : N;
+fun real_A : A;
+fun real_N : N;
+fun realign_V2 : V2;
+fun realism_N : N;
+fun realist_N : N;
+fun realistic_A : A;
+fun realistically_Adv : Adv;
+fun reality_N : N;
+fun realizable_A : A;
+fun realization_N : N;
+fun realize_V2 : V2;
+fun realize_VS : VS;
+fun reallocation_N : N;
+fun realm_N : N;
+fun realtor_N : N;
+fun realty_N : N;
+fun ream_N : N;
+fun reanimate_V2 : V2;
+fun reap_V : V;
+fun reap_V2 : V2;
+fun reaper_N : N;
+fun reaping_hook_N : N;
+fun reappear_V : V;
+fun reappearance_N : N;
+fun reappoint_V : V;
+fun reappoint_V2 : V2;
+fun reappraisal_N : N;
+fun reappraise_V2 : V2;
+fun rear_N : N;
+fun rear_V : V;
+fun rear_V2 : V2;
+fun rear_admiral_N : N;
+fun rearguard_N : N;
+fun rearm_V : V;
+fun rearm_V2 : V2;
+fun rearmament_N : N;
+fun rearmost_A : A;
+fun rearrange_V2 : V2;
+fun rearrangement_N : N;
+fun rearward_N : N;
+fun rearwards_Adv : Adv;
+fun reason_N : N;
+fun reason_V : V;
+fun reason_V2 : V2;
+fun reason_VS : VS;
+fun reasonable_A : A;
+fun reasonableness_N : N;
+fun reasoning_N : N;
+fun reasonless_A : A;
+fun reassemble_V : V;
+fun reassemble_V2 : V2;
+fun reassert_V2 : V2;
+fun reassess_V2 : V2;
+fun reassessment_N : N;
+fun reassign_V2 : V2;
+fun reassume_V2 : V2;
+fun reassurance_N : N;
+fun reassure_V2 : V2;
+fun reassure_VS : VS;
+fun reassuring_A : A;
+fun reattribute_V2 : V2;
+fun rebarbative_A : A;
+fun rebate_N : N;
+fun rebecca_PN : PN;
+fun rebel_N : N;
+fun rebel_V : V;
+fun rebellion_N : N;
+fun rebellious_A : A;
+fun rebelliousness_N : N;
+fun rebind_V2 : V2;
+fun rebirth_N : N;
+fun reborn_A : A;
+fun rebound_N : N;
+fun rebound_V : V;
+fun rebound_V2 : V2;
+fun rebound_V2V : V2V;
+fun rebuff_N : N;
+fun rebuff_V : V;
+fun rebuff_V2 : V2;
+fun rebuild_V2 : V2;
+fun rebuke_N : N;
+fun rebuke_V2 : V2;
+fun rebukingly_Adv : Adv;
+fun rebus_N : N;
+fun rebut_V2 : V2;
+fun rebuttal_N : N;
+fun rec_PN : PN;
+fun recalcitrance_N : N;
+fun recalcitrancy_N : N;
+fun recalcitrant_A : A;
+fun recalculate_V2 : V2;
+fun recall_N : N;
+fun recall_V2 : V2;
+fun recall_VS : VS;
+fun recant_V : V;
+fun recant_V2 : V2;
+fun recantation_N : N;
+fun recap_N : N;
+fun recap_V : V;
+fun recap_V2 : V2;
+fun recapitulate_V : V;
+fun recapitulate_V2 : V2;
+fun recapitulation_N : N;
+fun recapture_V2 : V2;
+fun recast_V2 : V2;
+fun recce_N : N;
+fun recd_PN : PN;
+fun recede_V : V;
+fun receipt_N : N;
+fun receipt_V2 : V2;
+fun receivable_A : A;
+fun receive_V : V;
+fun receive_V2 : V2;
+fun received_A : A;
+fun receiver_N : N;
+fun receivership_N : N;
+fun receiving_set_N : N;
+fun recent_A : A;
+fun recentralize_V2 : V2;
+fun receptacle_N : N;
+fun reception_N : N;
+fun reception_desk_N : N;
+fun receptionist_N : N;
+fun receptive_A : A;
+fun receptiveness_N : N;
+fun receptivity_N : N;
+fun recess_N : N;
+fun recess_V2 : V2;
+fun recession_N : N;
+fun recessional_A : A;
+fun recessional_N : N;
+fun recessive_A : A;
+fun rechauffe_N : N;
+fun recherche_A : A;
+fun recidivism_N : N;
+fun recidivist_N : N;
+fun recife_PN : PN;
+fun recipe_N : N;
+fun recipient_N : N;
+fun reciprocal_A : A;
+fun reciprocal_N : N;
+fun reciprocate_V : V;
+fun reciprocate_V2 : V2;
+fun reciprocation_N : N;
+fun reciprocity_N : N;
+fun recital_N : N;
+fun recitalist_N : N;
+fun recitation_N : N;
+fun recitative_N : N;
+fun recite_V : V;
+fun recite_V2 : V2;
+fun reckless_A : A;
+fun recklessness_N : N;
+fun recklinghausen_PN : PN;
+fun reckon_V : V;
+fun reckon_V2 : V2;
+fun reckon_VS : VS;
+fun reckoner_N : N;
+fun reckoning_N : N;
+fun reclaim_V2 : V2;
+fun reclamation_N : N;
+fun reclassify_V2 : V2;
+fun recline_V : V;
+fun recline_V2 : V2;
+fun recluse_N : N;
+fun recognition_N : N;
+fun recognizable_A : A;
+fun recognizance_N : N;
+fun recognize_V2 : V2;
+fun recognize_VS : VS;
+fun recoil_N : N;
+fun recoil_V : V;
+fun recollect_V : V;
+fun recollect_V2 : V2;
+fun recollection_N : N;
+fun recommend_V2 : V2;
+fun recommend_VS : VS;
+fun recommendation_N : N;
+fun recommit_V2 : V2;
+fun recompense_N : N;
+fun recompense_V2 : V2;
+fun reconcilable_A : A;
+fun reconcile_V2 : V2;
+fun reconciliation_N : N;
+fun recondite_A : A;
+fun recondition_V2 : V2;
+fun reconnaissance_N : N;
+fun reconnoitre_V : V;
+fun reconnoitre_V2 : V2;
+fun reconsecrate_V2 : V2;
+fun reconsider_V2 : V2;
+fun reconsider_VS : VS;
+fun reconstruct_V2 : V2;
+fun reconstruction_N : N;
+fun reconvict_V2 : V2;
+fun record_N : N;
+fun record_V2 : V2;
+fun record_breaking_A : A;
+fun record_player_N : N;
+fun recorder_N : N;
+fun recording_N : N;
+fun recount_V2 : V2;
+fun recount_VS : VS;
+fun recoup_V2 : V2;
+fun recourse_N : N;
+fun recover_V : V;
+fun recover_V2 : V2;
+fun recover_V2V : V2V;
+fun recoverable_A : A;
+fun recovery_N : N;
+fun recreant_A : A;
+fun recreant_N : N;
+fun recreate_V2 : V2;
+fun recreation_N : N;
+fun recreational_A : A;
+fun recriminate_V : V;
+fun recrimination_N : N;
+fun recriminatory_A : A;
+fun recrudescence_N : N;
+fun recruit_N : N;
+fun recruit_V : V;
+fun recruit_V2 : V2;
+fun recruitment_N : N;
+fun rectal_A : A;
+fun rectangle_N : N;
+fun rectangular_A : A;
+fun rectification_N : N;
+fun rectifier_N : N;
+fun rectify_V2 : V2;
+fun rectilinear_A : A;
+fun rectitude_N : N;
+fun recto_N : N;
+fun rector_N : N;
+fun rectory_N : N;
+fun rectum_N : N;
+fun recumbent_A : A;
+fun recuperate_V : V;
+fun recuperate_V2 : V2;
+fun recuperation_N : N;
+fun recuperative_A : A;
+fun recur_V : V;
+fun recurrence_N : N;
+fun recurrent_A : A;
+fun recurve_V : V;
+fun recurve_V2 : V2;
+fun recusancy_N : N;
+fun recusant_A : A;
+fun recusant_N : N;
+fun recycle_V2 : V2;
+fun red_A : A;
+fun red_N : N;
+fun red_hot_A : A;
+fun red_rimmed_A : A;
+fun redact_V2 : V2;
+fun redaction_N : N;
+fun redbreast_N : N;
+fun redbrick_A : A;
+fun redbridge_PN : PN;
+fun redcap_N : N;
+fun redcoat_N : N;
+fun redden_V : V;
+fun redden_V2 : V2;
+fun reddish_A : A;
+fun redditch_PN : PN;
+fun redecorate_V2 : V2;
+fun redeem_V2 : V2;
+fun redeemable_A : A;
+fun redeemer_N : N;
+fun redefine_V2 : V2;
+fun redemption_N : N;
+fun redemptive_A : A;
+fun redeploy_V2 : V2;
+fun redeployment_N : N;
+fun redesign_V2 : V2;
+fun redevelop_V2 : V2;
+fun redevelopment_N : N;
+fun redhead_N : N;
+fun rediffusion_N : N;
+fun rediscover_V2 : V2;
+fun rediscovery_N : N;
+fun redisposition_N : N;
+fun redistribute_V2 : V2;
+fun redistribution_N : N;
+fun redline_V2 : V2;
+fun redness_N : N;
+fun redo_V2 : V2;
+fun redolence_N : N;
+fun redolent_A : A;
+fun redouble_V : V;
+fun redouble_V2 : V2;
+fun redoubt_N : N;
+fun redoubtable_A : A;
+fun redound_V : V;
+fun redraw_V2 : V2;
+fun redress_N : N;
+fun redress_V2 : V2;
+fun redruth_PN : PN;
+fun redskin_N : N;
+fun reduce_V : V;
+fun reduce_V2 : V2;
+fun reducible_A : A;
+fun reductio_ad_absurdum_N : N;
+fun reduction_N : N;
+fun redundance_N : N;
+fun redundancy_N : N;
+fun redundant_A : A;
+fun reduplicate_V2 : V2;
+fun reduplication_N : N;
+fun redwing_N : N;
+fun redwood_N : N;
+fun reed_N : N;
+fun reedy_A : A;
+fun reef_N : N;
+fun reef_V2 : V2;
+fun reef_knot_N : N;
+fun reefer_N : N;
+fun reek_N : N;
+fun reek_V : V;
+fun reel_N : N;
+fun reel_V : V;
+fun reel_V2 : V2;
+fun reeve_N : N;
+fun reexamine_V : V;
+fun ref_N : N;
+fun reface_V2 : V2;
+fun refashion_N : N;
+fun refashion_V2 : V2;
+fun refection_N : N;
+fun refectory_N : N;
+fun refer_V : V;
+fun refer_V2 : V2;
+fun referable_A : A;
+fun referee_N : N;
+fun referee_V : V;
+fun referee_V2 : V2;
+fun reference_N : N;
+fun referendum_N : N;
+fun referential_A : A;
+fun refill_N : N;
+fun refill_V2 : V2;
+fun refinance_V : V;
+fun refinance_V2 : V2;
+fun refine_V : V;
+fun refine_V2 : V2;
+fun refinement_N : N;
+fun refiner_N : N;
+fun refinery_N : N;
+fun refit_N : N;
+fun refit_V : V;
+fun refit_V2 : V2;
+fun reflate_V2 : V2;
+fun reflation_N : N;
+fun reflect_V : V;
+fun reflect_V2 : V2;
+fun reflection_N : N;
+fun reflective_A : A;
+fun reflector_N : N;
+fun reflex_A : A;
+fun reflex_N : N;
+fun reflexion_N : N;
+fun reflexive_A : A;
+fun reflexive_N : N;
+fun refloat_V : V;
+fun refloat_V2 : V2;
+fun reflux_N : N;
+fun refocus_V : V;
+fun refocus_V2 : V2;
+fun refocus_V2V : V2V;
+fun reforest_V2 : V2;
+fun reforestation_N : N;
+fun reform_N : N;
+fun reform_V : V;
+fun reform_V2 : V2;
+fun reformation_N : N;
+fun reformatory_A : A;
+fun reformatory_N : N;
+fun reformer_N : N;
+fun reformulate_V2 : V2;
+fun refract_V2 : V2;
+fun refraction_N : N;
+fun refractory_A : A;
+fun refrain_N : N;
+fun refrain_V : V;
+fun refresh_V2 : V2;
+fun refresher_N : N;
+fun refreshing_A : A;
+fun refreshment_N : N;
+fun refrigerant_A : A;
+fun refrigerant_N : N;
+fun refrigerate_V2 : V2;
+fun refrigeration_N : N;
+fun refrigerator_N : N;
+fun refuel_V : V;
+fun refuel_V2 : V2;
+fun refuge_N : N;
+fun refugee_N : N;
+fun refulgence_N : N;
+fun refulgent_A : A;
+fun refund_N : N;
+fun refund_V2 : V2;
+fun refurbish_V2 : V2;
+fun refurnish_V2 : V2;
+fun refusal_N : N;
+fun refuse_N : N;
+fun refuse_V : V;
+fun refuse_V2 : V2;
+fun refuse_VV : VV;
+fun refuse_collector_N : N;
+fun refutable_A : A;
+fun refutation_N : N;
+fun refute_V2 : V2;
+fun reg_PN : PN;
+fun regain_V2 : V2;
+fun regal_A : A;
+fun regale_V2 : V2;
+fun regard_N : N;
+fun regard_V : V;
+fun regard_V2 : V2;
+fun regard_VS : VS;
+fun regardful_A : A;
+fun regardless_A : A;
+fun regatta_N : N;
+fun regency_N : N;
+fun regenerate_A : A;
+fun regenerate_V : V;
+fun regenerate_V2 : V2;
+fun regeneration_N : N;
+fun regensburg_PN : PN;
+fun regent_A : A;
+fun regent_N : N;
+fun reggae_N : N;
+fun regicide_N : N;
+fun regime_1_N : N;
+fun regime_2_N : N;
+fun regimen_N : N;
+fun regiment_N : N;
+fun regiment_V2 : V2;
+fun regimental_A : A;
+fun regimentation_N : N;
+fun regina_PN : PN;
+fun reginald_PN : PN;
+fun region_N : N;
+fun regional_A : A;
+fun register_N : N;
+fun register_V : V;
+fun register_V2 : V2;
+fun registrar_N : N;
+fun registration_N : N;
+fun registry_N : N;
+fun regnant_A : A;
+fun regress_V : V;
+fun regression_N : N;
+fun regressive_A : A;
+fun regret_N : N;
+fun regret_V2 : V2;
+fun regret_VS : VS;
+fun regretful_A : A;
+fun regrettable_A : A;
+fun regroup_V : V;
+fun regroup_V2 : V2;
+fun regular_A : A;
+fun regular_N : N;
+fun regularity_N : N;
+fun regularization_N : N;
+fun regularize_V2 : V2;
+fun regulate_V2 : V2;
+fun regulation_N : N;
+fun regulator_N : N;
+fun regum_V2 : V2;
+fun regurgitate_V : V;
+fun regurgitate_V2 : V2;
+fun rehabilitate_V2 : V2;
+fun rehabilitation_N : N;
+fun rehash_N : N;
+fun rehash_V2 : V2;
+fun rehear_V2 : V2;
+fun rehearing_N : N;
+fun rehearsal_N : N;
+fun rehearse_V : V;
+fun rehearse_V2 : V2;
+fun rehouse_V2 : V2;
+fun reich_N : N;
+fun reigate_PN : PN;
+fun reign_N : N;
+fun reign_V : V;
+fun reignite_V2 : V2;
+fun reimburse_V2 : V2;
+fun reimbursement_N : N;
+fun reimpose_V2 : V2;
+fun reimposition_N : N;
+fun rein_N : N;
+fun rein_V2 : V2;
+fun reincarnate_A : A;
+fun reincarnate_V2 : V2;
+fun reincarnation_N : N;
+fun reindeer_N : N;
+fun reindict_V2 : V2;
+fun reinforce_V2 : V2;
+fun reinforcement_N : N;
+fun reinstall_V2 : V2;
+fun reinstate_V2 : V2;
+fun reinstatement_N : N;
+fun reinstitute_V2 : V2;
+fun reinsurance_N : N;
+fun reinsure_V2 : V2;
+fun reintegrate_V2 : V2;
+fun reinterpret_V2 : V2;
+fun reinterpretation_N : N;
+fun reintroduce_V2 : V2;
+fun reinvent_V2 : V2;
+fun reinvest_V2 : V2;
+fun reinvigorate_V2 : V2;
+fun reissue_N : N;
+fun reissue_V2 : V2;
+fun reiterate_V2 : V2;
+fun reiterate_VS : VS;
+fun reiteration_N : N;
+fun reject_N : N;
+fun reject_V2 : V2;
+fun rejection_N : N;
+fun rejig_V2 : V2;
+fun rejoice_V : V;
+fun rejoice_V2 : V2;
+fun rejoicing_N : N;
+fun rejoin_V : V;
+fun rejoin_V2 : V2;
+fun rejoinder_N : N;
+fun rejuvenate_V : V;
+fun rejuvenate_V2 : V2;
+fun rejuvenation_N : N;
+fun rekindle_V : V;
+fun rekindle_V2 : V2;
+fun relapse_N : N;
+fun relapse_V : V;
+fun relate_V : V;
+fun relate_V2 : V2;
+fun relation_N : N;
+fun relationship_N : N;
+fun relative_A : A;
+fun relative_N : N;
+fun relativity_N : N;
+fun relax_V : V;
+fun relax_V2 : V2;
+fun relaxation_N : N;
+fun relay_N : N;
+fun relay_V2 : V2;
+fun release_N : N;
+fun release_V2 : V2;
+fun relegate_V2 : V2;
+fun relegation_N : N;
+fun relent_V : V;
+fun relentless_A : A;
+fun relevance_N : N;
+fun relevancy_N : N;
+fun relevant_A : A;
+fun reliability_N : N;
+fun reliable_A : A;
+fun reliance_N : N;
+fun reliant_A : A;
+fun relic_N : N;
+fun relict_N : N;
+fun relief_N : N;
+fun relieve_V2 : V2;
+fun religion_N : N;
+fun religious_A : A;
+fun religious_N : N;
+fun reline_V2 : V2;
+fun relinquish_V2 : V2;
+fun reliquary_N : N;
+fun relish_N : N;
+fun relish_V2 : V2;
+fun relish_VS : VS;
+fun relive_V2 : V2;
+fun relocate_V : V;
+fun relocate_V2 : V2;
+fun relocation_N : N;
+fun reluctance_N : N;
+fun reluctant_A : A;
+fun rely_V : V;
+fun remain_V : V;
+fun remain_V2 : V2;
+fun remain_VA : VA;
+fun remain_VV : VV;
+fun remain_VS : VS;
+fun remainder_N : N;
+fun remake_N : N;
+fun remake_V2 : V2;
+fun remand_N : N;
+fun remand_V2 : V2;
+fun remark_N : N;
+fun remark_V : V;
+fun remark_V2 : V2;
+fun remark_VS : VS;
+fun remarkable_A : A;
+fun remarriage_N : N;
+fun remarry_V : V;
+fun remarry_V2 : V2;
+fun remediable_A : A;
+fun remedial_A : A;
+fun remedy_N : N;
+fun remedy_V2 : V2;
+fun remember_V : V;
+fun remember_V2 : V2;
+fun remember_VS : VS;
+fun remembrance_N : N;
+fun remilitarization_N : N;
+fun remilitarize_V2 : V2;
+fun remind_V2 : V2;
+fun reminder_N : N;
+fun reminisce_V : V;
+fun reminiscence_N : N;
+fun reminiscent_A : A;
+fun remiss_A : A;
+fun remission_N : N;
+fun remissness_N : N;
+fun remit_V : V;
+fun remit_V2 : V2;
+fun remittance_N : N;
+fun remittent_A : A;
+fun remnant_N : N;
+fun remodel_V : V;
+fun remodel_V2 : V2;
+fun remonstrance_N : N;
+fun remonstrate_V : V;
+fun remorse_N : N;
+fun remorseful_A : A;
+fun remorseless_A : A;
+fun remote_A : A;
+fun remoteness_N : N;
+fun remould_V2 : V2;
+fun remount_N : N;
+fun remount_V : V;
+fun remount_V2 : V2;
+fun removable_A : A;
+fun removal_N : N;
+fun remove_N : N;
+fun remove_V : V;
+fun remove_V2 : V2;
+fun removed_A : A;
+fun remover_N : N;
+fun remscheid_PN : PN;
+fun remunerate_V2 : V2;
+fun remuneration_N : N;
+fun remunerative_A : A;
+fun renaissance_N : N;
+fun renal_A : A;
+fun rename_V2 : V2;
+fun rename_VS : VS;
+fun renascence_N : N;
+fun renascent_A : A;
+fun rend_V2 : V2;
+fun render_V2 : V2;
+fun render_VS : VS;
+fun rendering_N : N;
+fun rendezvous_N : N;
+fun rendezvous_V : V;
+fun rendezvouse_V : V;
+fun rendition_N : N;
+fun renegade_N : N;
+fun renegade_V : V;
+fun renege_V : V;
+fun renegotiate_V2 : V2;
+fun renegue_V : V;
+fun renew_V2 : V2;
+fun renewable_A : A;
+fun renewal_N : N;
+fun renfrew_PN : PN;
+fun rennes_PN : PN;
+fun rennet_N : N;
+fun renounce_V2 : V2;
+fun renovate_V2 : V2;
+fun renovation_N : N;
+fun renovator_N : N;
+fun renown_N : N;
+fun renowned_A : A;
+fun rent_N : N;
+fun rent_V : V;
+fun rent_V2 : V2;
+fun rent_collector_N : N;
+fun rent_free_A : A;
+fun rent_free_Adv : Adv;
+fun rent_rebate_N : N;
+fun rent_roll_N : N;
+fun rentable_A : A;
+fun rental_N : N;
+fun rentier_N : N;
+fun renunciation_N : N;
+fun reoffer_V2 : V2;
+fun reopen_V : V;
+fun reopen_V2 : V2;
+fun reorganization_N : N;
+fun reorganize_V : V;
+fun reorganize_V2 : V2;
+fun reorient_V : V;
+fun reorient_V2 : V2;
+fun reorientate_V : V;
+fun reorientate_V2 : V2;
+fun reorientation_N : N;
+fun rep_N : N;
+fun repackage_V2 : V2;
+fun repaint_V2 : V2;
+fun repair_N : N;
+fun repair_V : V;
+fun repair_V2 : V2;
+fun repairable_A : A;
+fun repairer_N : N;
+fun reparable_A : A;
+fun reparation_N : N;
+fun repartee_N : N;
+fun repass_V2 : V2;
+fun repast_N : N;
+fun repatriate_N : N;
+fun repatriate_V2 : V2;
+fun repatriation_N : N;
+fun repay_V : V;
+fun repay_V2 : V2;
+fun repayable_A : A;
+fun repayment_N : N;
+fun repeal_N : N;
+fun repeal_V2 : V2;
+fun repeat_N : N;
+fun repeat_V : V;
+fun repeat_V2 : V2;
+fun repeat_VS : VS;
+fun repeatable_A : A;
+fun repeater_N : N;
+fun repel_V2 : V2;
+fun repellent_A : A;
+fun repellent_N : N;
+fun repent_V : V;
+fun repent_V2 : V2;
+fun repentance_N : N;
+fun repentant_A : A;
+fun repercussion_N : N;
+fun repertoire_N : N;
+fun repertory_N : N;
+fun repetition_N : N;
+fun repetitious_A : A;
+fun repetitive_A : A;
+fun repine_V : V;
+fun replace_V2 : V2;
+fun replace_VV : VV;
+fun replaceable_A : A;
+fun replacement_N : N;
+fun replant_V2 : V2;
+fun replaster_V2 : V2;
+fun replay_N : N;
+fun replay_V2 : V2;
+fun replenish_V2 : V2;
+fun replenishment_N : N;
+fun replete_A : A;
+fun repletion_N : N;
+fun replica_N : N;
+fun replicate_V2 : V2;
+fun reply_N : N;
+fun reply_V : V;
+fun reply_V2 : V2;
+fun reply_VS : VS;
+fun reply_paid_A : A;
+fun repoint_V2 : V2;
+fun repond_V : V;
+fun report_N : N;
+fun report_V : V;
+fun report_V2 : V2;
+fun report_V2V : V2V;
+fun report_VS : VS;
+fun reportable_A : A;
+fun reportage_N : N;
+fun reportedly_Adv : Adv;
+fun reporter_N : N;
+fun repose_N : N;
+fun repose_V : V;
+fun repose_V2 : V2;
+fun reposeful_A : A;
+fun repossess_V2 : V2;
+fun reposition_V2 : V2;
+fun repository_N : N;
+fun repot_V2 : V2;
+fun repp_N : N;
+fun reprehend_V2 : V2;
+fun reprehensible_A : A;
+fun represent_V : V;
+fun represent_V2 : V2;
+fun representation_N : N;
+fun representative_A : A;
+fun representative_N : N;
+fun repress_V2 : V2;
+fun repressed_A : A;
+fun repression_N : N;
+fun repressive_A : A;
+fun reprieve_N : N;
+fun reprieve_V2 : V2;
+fun reprimand_N : N;
+fun reprimand_V2 : V2;
+fun reprint_N : N;
+fun reprint_V2 : V2;
+fun reprisal_N : N;
+fun reproach_N : N;
+fun reproach_V2 : V2;
+fun reproachful_A : A;
+fun reprobate_N : N;
+fun reprobate_V2 : V2;
+fun reprobation_N : N;
+fun reproduce_V : V;
+fun reproduce_V2 : V2;
+fun reproducer_N : N;
+fun reproducible_A : A;
+fun reproduction_N : N;
+fun reproductive_A : A;
+fun reproof_N : N;
+fun reproof_V2 : V2;
+fun reprove_V2 : V2;
+fun reprovingly_Adv : Adv;
+fun reps_N : N;
+fun reptile_N : N;
+fun reptilian_A : A;
+fun reptilian_N : N;
+fun republic_N : N;
+fun republican_A : A;
+fun republican_N : N;
+fun republicanism_N : N;
+fun repudiate_V2 : V2;
+fun repudiation_N : N;
+fun repugnance_N : N;
+fun repugnant_A : A;
+fun repulse_N : N;
+fun repulse_V2 : V2;
+fun repulsion_N : N;
+fun repulsive_A : A;
+fun repurchase_V2 : V2;
+fun reputable_A : A;
+fun reputation_N : N;
+fun repute_N : N;
+fun repute_V2 : V2;
+fun reputed_A : A;
+fun request_N : N;
+fun request_V2 : V2;
+fun request_VS : VS;
+fun requiem_N : N;
+fun require_V : V;
+fun require_V2 : V2;
+fun require_V2V : V2V;
+fun require_VV : VV;
+fun require_VS : VS;
+fun requirement_N : N;
+fun requisite_A : A;
+fun requisite_N : N;
+fun requisition_N : N;
+fun requisition_V2 : V2;
+fun requital_N : N;
+fun requite_V2 : V2;
+fun reread_V2 : V2;
+fun reredos_N : N;
+fun reroute_V2 : V2;
+fun rerun_N : N;
+fun rerun_V2 : V2;
+fun res_N : N;
+fun reschedule_V2 : V2;
+fun rescind_V2 : V2;
+fun rescript_N : N;
+fun rescue_N : N;
+fun rescue_V2 : V2;
+fun rescuer_N : N;
+fun research_N : N;
+fun research_V : V;
+fun research_V2 : V2;
+fun researcher_N : N;
+fun reseat_V2 : V2;
+fun reseed_V2 : V2;
+fun resell_V2 : V2;
+fun resemblance_N : N;
+fun resemble_V2 : V2;
+fun resent_V2 : V2;
+fun resentful_A : A;
+fun resentment_N : N;
+fun reservation_N : N;
+fun reserve_N : N;
+fun reserve_V : V;
+fun reserve_V2 : V2;
+fun reserved_A : A;
+fun reservist_N : N;
+fun reservoir_N : N;
+fun reset_V : V;
+fun reset_V2 : V2;
+fun resettle_V : V;
+fun resettle_V2 : V2;
+fun resettlement_N : N;
+fun reshape_V2 : V2;
+fun reshuffle_N : N;
+fun reshuffle_V2 : V2;
+fun reside_V : V;
+fun residence_N : N;
+fun residency_N : N;
+fun resident_A : A;
+fun resident_N : N;
+fun residential_A : A;
+fun residual_A : A;
+fun residuary_A : A;
+fun residue_N : N;
+fun resign_V : V;
+fun resign_V2 : V2;
+fun resign_V2V : V2V;
+fun resign_VS : VS;
+fun resignation_N : N;
+fun resigned_A : A;
+fun resilience_N : N;
+fun resiliency_N : N;
+fun resilient_A : A;
+fun resin_N : N;
+fun resinated_A : A;
+fun resinous_A : A;
+fun resist_V : V;
+fun resist_V2 : V2;
+fun resist_VS : VS;
+fun resistance_N : N;
+fun resistant_A : A;
+fun resister_N : N;
+fun resistive_A : A;
+fun resistivity_N : N;
+fun resistless_A : A;
+fun resistor_N : N;
+fun resold_V2 : V2;
+fun resole_V2 : V2;
+fun resolute_A : A;
+fun resoluteness_N : N;
+fun resolution_N : N;
+fun resolvable_A : A;
+fun resolve_N : N;
+fun resolve_V : V;
+fun resolve_V2 : V2;
+fun resonance_N : N;
+fun resonant_A : A;
+fun resonate_V : V;
+fun resonate_V2 : V2;
+fun resonator_N : N;
+fun resort_N : N;
+fun resort_V : V;
+fun resound_V : V;
+fun resound_V2 : V2;
+fun resoundingly_Adv : Adv;
+fun resource_N : N;
+fun resourceful_A : A;
+fun resourceless_A : A;
+fun respect_N : N;
+fun respect_V2 : V2;
+fun respectability_N : N;
+fun respectable_A : A;
+fun respecter_N : N;
+fun respectful_A : A;
+fun respective_A : A;
+fun respiration_N : N;
+fun respirator_N : N;
+fun respiratory_A : A;
+fun respire_V : V;
+fun respite_N : N;
+fun respite_V2 : V2;
+fun resplendence_N : N;
+fun resplendency_N : N;
+fun resplendent_A : A;
+fun respond_V : V;
+fun respond_V2 : V2;
+fun respond_VS : VS;
+fun respondent_N : N;
+fun response_N : N;
+fun responsibility_N : N;
+fun responsible_A : A;
+fun responsive_A : A;
+fun responsiveness_N : N;
+fun rest_N : N;
+fun rest_V : V;
+fun rest_V2 : V2;
+fun rest_VS : VS;
+fun rest_cure_N : N;
+fun rest_day_N : N;
+fun rest_home_N : N;
+fun rest_house_N : N;
+fun restart_V : V;
+fun restart_V2 : V2;
+fun restate_V2 : V2;
+fun restate_V2V : V2V;
+fun restatement_N : N;
+fun restaurant_N : N;
+fun restauranteur_N : N;
+fun restaurateur_N : N;
+fun restful_A : A;
+fun restfulness_N : N;
+fun restitution_N : N;
+fun restive_A : A;
+fun restiveness_N : N;
+fun restless_A : A;
+fun restlessness_N : N;
+fun restock_V2 : V2;
+fun restoration_N : N;
+fun restorative_A : A;
+fun restorative_N : N;
+fun restore_V2 : V2;
+fun restorer_N : N;
+fun restrain_V2 : V2;
+fun restrained_A : A;
+fun restraint_N : N;
+fun restrict_V : V;
+fun restrict_V2 : V2;
+fun restriction_N : N;
+fun restrictive_A : A;
+fun restrictiveness_N : N;
+fun restructure_V : V;
+fun restructure_V2 : V2;
+fun restructure_V2V : V2V;
+fun result_N : N;
+fun result_V : V;
+fun resultant_A : A;
+fun resume_N : N;
+fun resume_V : V;
+fun resume_V2 : V2;
+fun resume_VS : VS;
+fun resumption_N : N;
+fun resurface_V : V;
+fun resurface_V2 : V2;
+fun resurgence_N : N;
+fun resurgent_A : A;
+fun resurrect_V : V;
+fun resurrect_V2 : V2;
+fun resurrection_N : N;
+fun resuscitate_V : V;
+fun resuscitate_V2 : V2;
+fun resuscitation_N : N;
+fun ret_PN : PN;
+fun ret_V2 : V2;
+fun retail_Adv : Adv;
+fun retail_N : N;
+fun retail_V : V;
+fun retail_V2 : V2;
+fun retailer_N : N;
+fun retain_V2 : V2;
+fun retain_V2V : V2V;
+fun retainer_N : N;
+fun retake_N : N;
+fun retake_V2 : V2;
+fun retaliate_V : V;
+fun retaliation_N : N;
+fun retaliative_A : A;
+fun retaliatory_A : A;
+fun retard_V2 : V2;
+fun retardation_N : N;
+fun retch_V : V;
+fun retd_PN : PN;
+fun retell_V2 : V2;
+fun retention_N : N;
+fun retentive_A : A;
+fun retentiveness_N : N;
+fun retford_PN : PN;
+fun rethink_N : N;
+fun rethink_V : V;
+fun rethink_V2 : V2;
+fun reticence_N : N;
+fun reticent_A : A;
+fun reticulate_A : A;
+fun reticulate_V : V;
+fun reticulate_V2 : V2;
+fun reticulation_N : N;
+fun reticule_N : N;
+fun retina_N : N;
+fun retinal_A : A;
+fun retinue_N : N;
+fun retire_N : N;
+fun retire_V : V;
+fun retire_V2 : V2;
+fun retired_A : A;
+fun retirement_N : N;
+fun retiring_A : A;
+fun retool_V2 : V2;
+fun retort_N : N;
+fun retort_V : V;
+fun retort_V2 : V2;
+fun retouch_V2 : V2;
+fun retrace_V2 : V2;
+fun retract_V : V;
+fun retract_V2 : V2;
+fun retractable_A : A;
+fun retractile_A : A;
+fun retraction_N : N;
+fun retransmit_V2 : V2;
+fun retread_N : N;
+fun retread_V2 : V2;
+fun retreat_N : N;
+fun retreat_V : V;
+fun retreat_V2 : V2;
+fun retrench_V : V;
+fun retrench_V2 : V2;
+fun retrenchment_N : N;
+fun retrial_N : N;
+fun retribution_N : N;
+fun retributive_A : A;
+fun retrievable_A : A;
+fun retrieval_N : N;
+fun retrieve_V : V;
+fun retrieve_V2 : V2;
+fun retriever_N : N;
+fun retroactive_A : A;
+fun retrofit_V2 : V2;
+fun retrograde_A : A;
+fun retrograde_V : V;
+fun retrogress_V : V;
+fun retrogression_N : N;
+fun retrogressive_A : A;
+fun retrorocket_N : N;
+fun retrospect_N : N;
+fun retrospection_N : N;
+fun retrospective_A : A;
+fun retrousse_A : A;
+fun retroversion_N : N;
+fun retsina_N : N;
+fun return_N : N;
+fun return_V : V;
+fun return_V2 : V2;
+fun return_V2V : V2V;
+fun returnable_A : A;
+fun reunification_N : N;
+fun reunion_N : N;
+fun reunite_V : V;
+fun reunite_V2 : V2;
+fun rev_N : N;
+fun rev_PN : PN;
+fun rev_V : V;
+fun rev_V2 : V2;
+fun revaluation_N : N;
+fun revalue_V2 : V2;
+fun revamp_V2 : V2;
+fun revd_PN : PN;
+fun reveal_V2 : V2;
+fun reveal_VS : VS;
+fun reveille_N : N;
+fun revel_N : N;
+fun revel_V : V;
+fun revelation_N : N;
+fun reveller_N : N;
+fun revelry_N : N;
+fun revenge_N : N;
+fun revenge_V2 : V2;
+fun revengeful_A : A;
+fun revenue_N : N;
+fun reverberant_A : A;
+fun reverberate_V : V;
+fun reverberate_V2 : V2;
+fun reverberation_N : N;
+fun revere_V2 : V2;
+fun reverence_N : N;
+fun reverence_V2 : V2;
+fun reverend_A : A;
+fun reverend_N : N;
+fun reverent_A : A;
+fun reverential_A : A;
+fun reverie_N : N;
+fun revers_N : N;
+fun reversal_N : N;
+fun reverse_A : A;
+fun reverse_N : N;
+fun reverse_V : V;
+fun reverse_V2 : V2;
+fun reversibility_N : N;
+fun reversible_A : A;
+fun reversion_N : N;
+fun reversionary_A : A;
+fun revert_V : V;
+fun revertible_A : A;
+fun revetment_N : N;
+fun review_N : N;
+fun review_V : V;
+fun review_V2 : V2;
+fun reviewer_N : N;
+fun revile_V : V;
+fun revile_V2 : V2;
+fun revise_N : N;
+fun revise_V : V;
+fun revise_V2 : V2;
+fun reviser_N : N;
+fun revision_N : N;
+fun revisionism_N : N;
+fun revisionist_N : N;
+fun revisit_V2 : V2;
+fun revitalization_N : N;
+fun revitalize_V2 : V2;
+fun revival_N : N;
+fun revivalist_N : N;
+fun revive_V : V;
+fun revive_V2 : V2;
+fun revivify_V2 : V2;
+fun revocable_A : A;
+fun revocation_N : N;
+fun revoke_N : N;
+fun revoke_V : V;
+fun revoke_V2 : V2;
+fun revolt_N : N;
+fun revolt_V : V;
+fun revolt_V2 : V2;
+fun revolting_A : A;
+fun revolution_N : N;
+fun revolutionary_A : A;
+fun revolutionary_N : N;
+fun revolutionize_V2 : V2;
+fun revolve_V : V;
+fun revolve_V2 : V2;
+fun revolver_N : N;
+fun revue_N : N;
+fun revulsion_N : N;
+fun reward_N : N;
+fun reward_V2 : V2;
+fun rewire_V2 : V2;
+fun reword_V2 : V2;
+fun rework_V2 : V2;
+fun rewrite_N : N;
+fun rewrite_V2 : V2;
+fun rex_PN : PN;
+fun reykjavik_PN : PN;
+fun rhapsodize_V : V;
+fun rhapsody_N : N;
+fun rhea_N : N;
+fun rheims_PN : PN;
+fun rhenish_A : A;
+fun rheostat_N : N;
+fun rhesus_N : N;
+fun rhetoric_N : N;
+fun rhetorical_A : A;
+fun rhetorician_N : N;
+fun rheum_N : N;
+fun rheumatic_A : A;
+fun rheumatic_N : N;
+fun rheumatism_N : N;
+fun rheumatoid_A : A;
+fun rheydt_PN : PN;
+fun rhinal_A : A;
+fun rhine_PN : PN;
+fun rhinestone_N : N;
+fun rhino_N : N;
+fun rhinoceros_N : N;
+fun rhizome_N : N;
+fun rhode_PN : PN;
+fun rhododendron_N : N;
+fun rhomb_N : N;
+fun rhomboid_A : A;
+fun rhomboid_N : N;
+fun rhombus_N : N;
+fun rhondda_PN : PN;
+fun rhosllanerchrugog_PN : PN;
+fun rhubarb_N : N;
+fun rhyl_PN : PN;
+fun rhyme_N : N;
+fun rhyme_V : V;
+fun rhyme_V2 : V2;
+fun rhymed_A : A;
+fun rhymester_N : N;
+fun rhymney_PN : PN;
+fun rhythm_N : N;
+fun rhythmic_A : A;
+fun rhythmical_A : A;
+fun rib_N : N;
+fun rib_V2 : V2;
+fun ribald_A : A;
+fun ribald_N : N;
+fun ribaldry_N : N;
+fun riband_N : N;
+fun ribbon_N : N;
+fun riboflavin_N : N;
+fun rice_N : N;
+fun rice_paper_N : N;
+fun rich_A : A;
+fun richard_PN : PN;
+fun richmond_PN : PN;
+fun richmond_upon_thames_PN : PN;
+fun richness_N : N;
+fun rick_N : N;
+fun rick_PN : PN;
+fun rick_V2 : V2;
+fun rickets_N : N;
+fun rickety_A : A;
+fun rickmansworth_PN : PN;
+fun rickshaw_N : N;
+fun ricky_PN : PN;
+fun ricochet_N : N;
+fun ricochet_V : V;
+fun ricochet_V2 : V2;
+fun rid_V : V;
+fun rid_V2 : V2;
+fun riddance_N : N;
+fun riddle_N : N;
+fun riddle_V2 : V2;
+fun ride_N : N;
+fun ride_V : V;
+fun ride_V2 : V2;
+fun rider_N : N;
+fun riderless_A : A;
+fun ridge_N : N;
+fun ridge_V2 : V2;
+fun ridge_tile_N : N;
+fun ridgepole_N : N;
+fun ridicule_N : N;
+fun ridicule_V2 : V2;
+fun ridiculous_A : A;
+fun riding_N : N;
+fun riding_habit_N : N;
+fun riding_lamp_N : N;
+fun riding_light_N : N;
+fun riding_master_N : N;
+fun riding_school_N : N;
+fun riesling_N : N;
+fun rife_A : A;
+fun riff_N : N;
+fun riff_raff_N : N;
+fun riffle_V : V;
+fun riffle_V2 : V2;
+fun rifle_N : N;
+fun rifle_V2 : V2;
+fun rifle_range_N : N;
+fun rifle_shot_N : N;
+fun rifleman_N : N;
+fun rift_N : N;
+fun rift_valley_N : N;
+fun rig_N : N;
+fun rig_V : V;
+fun rig_V2 : V2;
+fun riga_PN : PN;
+fun rigger_N : N;
+fun rigging_N : N;
+fun right_A : A;
+fun right_Adv : Adv;
+fun right_N : N;
+fun right_V2 : V2;
+fun right_angled_A : A;
+fun right_down_A : A;
+fun right_down_Adv : Adv;
+fun right_hand_A : A;
+fun right_handed_A : A;
+fun right_hander_N : N;
+fun right_minded_A : A;
+fun right_turn_N : N;
+fun right_wing_N : N;
+fun right_winger_N : N;
+fun righteous_A : A;
+fun righteousness_N : N;
+fun rightful_A : A;
+fun rightfulness_N : N;
+fun rightist_A : A;
+fun rightist_N : N;
+fun rightness_N : N;
+fun rigid_A : A;
+fun rigidity_N : N;
+fun rigmarole_N : N;
+fun rigor_mortis_N : N;
+fun rigorous_A : A;
+fun rigour_N : N;
+fun rigout_N : N;
+fun rijeka_PN : PN;
+fun rile_V2 : V2;
+fun rill_N : N;
+fun rim_N : N;
+fun rim_V2 : V2;
+fun rime_N : N;
+fun rime_V2 : V2;
+fun rimini_PN : PN;
+fun rind_N : N;
+fun rinderpest_N : N;
+fun ring_N : N;
+fun ring_V : V;
+fun ring_V2 : V2;
+fun ring_armour_N : N;
+fun ring_finger_N : N;
+fun ring_mail_N : N;
+fun ring_road_N : N;
+fun ringer_N : N;
+fun ringleader_N : N;
+fun ringlet_N : N;
+fun ringmaster_N : N;
+fun ringside_N : N;
+fun ringwood_PN : PN;
+fun ringworm_N : N;
+fun rink_N : N;
+fun rinse_N : N;
+fun rinse_V2 : V2;
+fun rio_de_janeiro_PN : PN;
+fun riot_N : N;
+fun riot_V : V;
+fun rioter_N : N;
+fun riotous_A : A;
+fun rip_N : N;
+fun rip_PN : PN;
+fun rip_V : V;
+fun rip_V2 : V2;
+fun rip_off_N : N;
+fun rip_roaring_A : A;
+fun riparian_A : A;
+fun ripcord_N : N;
+fun ripe_A : A;
+fun ripen_V : V;
+fun ripen_V2 : V2;
+fun ripeness_N : N;
+fun ripley_PN : PN;
+fun ripon_PN : PN;
+fun riposte_N : N;
+fun riposte_V : V;
+fun ripple_N : N;
+fun ripple_V : V;
+fun ripple_V2 : V2;
+fun ripsaw_N : N;
+fun riptide_N : N;
+fun risborough_PN : PN;
+fun risca_PN : PN;
+fun rise_N : N;
+fun rise_V : V;
+fun rise_V2 : V2;
+fun rise_VA : VA;
+fun riser_N : N;
+fun rishton_PN : PN;
+fun risibility_N : N;
+fun risible_A : A;
+fun rising_N : N;
+fun risk_N : N;
+fun risk_V2 : V2;
+fun risk_VS : VS;
+fun riskily_Adv : Adv;
+fun riskiness_N : N;
+fun risky_A : A;
+fun risotto_N : N;
+fun risque_A : A;
+fun rissole_N : N;
+fun rita_PN : PN;
+fun rite_N : N;
+fun ritual_A : A;
+fun ritual_N : N;
+fun ritualism_N : N;
+fun ritualist_N : N;
+fun ritualistic_A : A;
+fun ritzy_A : A;
+fun rival_N : N;
+fun rival_V2 : V2;
+fun rivalry_N : N;
+fun rive_V : V;
+fun rive_V2 : V2;
+fun river_N : N;
+fun river_basin_N : N;
+fun river_bed_N : N;
+fun riverside_N : N;
+fun rivet_N : N;
+fun rivet_V : V;
+fun rivet_V2 : V2;
+fun riveter_N : N;
+fun riviera_PN : PN;
+fun rivulet_N : N;
+fun rly_N : N;
+fun rm_N : N;
+fun rn_N : N;
+fun roach_N : N;
+fun road_N : N;
+fun road_book_N : N;
+fun road_hog_N : N;
+fun road_metal_N : N;
+fun road_sense_N : N;
+fun roadbed_N : N;
+fun roadblock_N : N;
+fun roadhouse_N : N;
+fun roadless_A : A;
+fun roadman_N : N;
+fun roadmender_N : N;
+fun roadside_N : N;
+fun roadstead_N : N;
+fun roadster_N : N;
+fun roadway_N : N;
+fun roadworthy_A : A;
+fun roam_V : V;
+fun roam_V2 : V2;
+fun roan_A : A;
+fun roan_N : N;
+fun roar_N : N;
+fun roar_V : V;
+fun roar_V2 : V2;
+fun roaring_A : A;
+fun roaring_Adv : Adv;
+fun roast_A : A;
+fun roast_N : N;
+fun roast_V : V;
+fun roast_V2 : V2;
+fun roaster_N : N;
+fun roasting_N : N;
+fun rob_PN : PN;
+fun rob_V2 : V2;
+fun robber_N : N;
+fun robbery_N : N;
+fun robe_N : N;
+fun robe_V : V;
+fun robe_V2 : V2;
+fun robert_PN : PN;
+fun robin_N : N;
+fun robin_PN : PN;
+fun robot_N : N;
+fun robust_A : A;
+fun robustness_N : N;
+fun roc_N : N;
+fun rochdale_PN : PN;
+fun rochester_PN : PN;
+fun rock_'n_roll_N : N;
+fun rock_N : N;
+fun rock_V : V;
+fun rock_V2 : V2;
+fun rock_bottom_N : N;
+fun rock_cake_N : N;
+fun rock_climbing_N : N;
+fun rock_crystal_N : N;
+fun rock_garden_N : N;
+fun rock_plant_N : N;
+fun rock_salmon_N : N;
+fun rock_salt_N : N;
+fun rocker_N : N;
+fun rockery_N : N;
+fun rocket_N : N;
+fun rocket_V : V;
+fun rocket_base_N : N;
+fun rocket_range_N : N;
+fun rocketry_N : N;
+fun rocking_chair_N : N;
+fun rocking_horse_N : N;
+fun rocky_A : A;
+fun rococo_A : A;
+fun rod_N : N;
+fun rod_PN : PN;
+fun rodent_N : N;
+fun rodeo_N : N;
+fun rodney_PN : PN;
+fun rodomontade_N : N;
+fun roe_N : N;
+fun roebuck_N : N;
+fun roentgen_N : N;
+fun rogation_N : N;
+fun roger_PN : PN;
+fun rogue_N : N;
+fun rogue_elephant_N : N;
+fun roguery_N : N;
+fun roguish_A : A;
+fun roguishness_N : N;
+fun roil_V2 : V2;
+fun roisterer_N : N;
+fun role_1_N : N;
+fun role_2_N : N;
+fun roll_N : N;
+fun roll_V : V;
+fun roll_V2 : V2;
+fun roll_call_N : N;
+fun roll_on_N : N;
+fun roller_N : N;
+fun roller_skate_N : N;
+fun rollicking_A : A;
+fun rolling_N : N;
+fun rolling_mill_N : N;
+fun rolling_pin_N : N;
+fun rolling_stock_N : N;
+fun roly_poly_N : N;
+fun romaic_A : A;
+fun romaic_N : N;
+fun roman_A : A;
+fun roman_N : N;
+fun romance_A : A;
+fun romance_N : N;
+fun romance_V : V;
+fun romance_V2 : V2;
+fun romanesque_N : N;
+fun romania_PN : PN;
+fun romanian_A : A;
+fun romanian_N : N;
+fun romantic_A : A;
+fun romantic_N : N;
+fun romantically_Adv : Adv;
+fun romanticism_N : N;
+fun romanticist_N : N;
+fun romanticize_V : V;
+fun romanticize_V2 : V2;
+fun romany_A : A;
+fun romany_N : N;
+fun rome_PN : PN;
+fun romish_A : A;
+fun romp_N : N;
+fun romp_V : V;
+fun romper_N : N;
+fun romsey_PN : PN;
+fun ron_PN : PN;
+fun ronald_PN : PN;
+fun rondeau_N : N;
+fun rondel_N : N;
+fun rondo_N : N;
+fun roneo_N : N;
+fun roneo_V2 : V2;
+fun ronnie_PN : PN;
+fun rontgen_N : N;
+fun rood_N : N;
+fun rood_tree_N : N;
+fun roof_N : N;
+fun roof_V2 : V2;
+fun roof_garden_N : N;
+fun roof_tree_N : N;
+fun roofing_N : N;
+fun roofless_A : A;
+fun rook_N : N;
+fun rook_V2 : V2;
+fun rookery_N : N;
+fun rookie_N : N;
+fun room_N : N;
+fun room_V : V;
+fun room_mate_N : N;
+fun roomed_A : A;
+fun roomer_N : N;
+fun roomful_N : N;
+fun roomily_Adv : Adv;
+fun roomy_A : A;
+fun roost_N : N;
+fun roost_V : V;
+fun rooster_N : N;
+fun root_N : N;
+fun root_V : V;
+fun root_V2 : V2;
+fun rootle_V : V;
+fun rootless_A : A;
+fun rope_N : N;
+fun rope_V2 : V2;
+fun rope_dancer_N : N;
+fun rope_ladder_N : N;
+fun rope_yard_N : N;
+fun rope_yarn_N : N;
+fun ropewalk_N : N;
+fun ropewalker_N : N;
+fun ropeway_N : N;
+fun ropey_A : A;
+fun roquefort_N : N;
+fun rosalie_PN : PN;
+fun rosalind_PN : PN;
+fun rosamund_PN : PN;
+fun rosario_PN : PN;
+fun rosary_N : N;
+fun roscommon_PN : PN;
+fun rose_N : N;
+fun rose_PN : PN;
+fun rose_V : V;
+fun rose_V2 : V2;
+fun rose_bed_N : N;
+fun rose_leaf_N : N;
+fun rose_red_A : A;
+fun rose_water_N : N;
+fun roseate_A : A;
+fun rosebud_N : N;
+fun rosemary_N : N;
+fun rosemary_PN : PN;
+fun rosette_N : N;
+fun rosewood_N : N;
+fun rosie_PN : PN;
+fun rosin_N : N;
+fun rosin_V2 : V2;
+fun roslyn_PN : PN;
+fun ross_on_wye_PN : PN;
+fun rossington_PN : PN;
+fun rosslare_PN : PN;
+fun roster_N : N;
+fun rostock_PN : PN;
+fun rostov_na_donu_PN : PN;
+fun rostrum_N : N;
+fun rosy_A : A;
+fun rot_N : N;
+fun rot_V : V;
+fun rot_V2 : V2;
+fun rota_N : N;
+fun rotarian_N : N;
+fun rotary_A : A;
+fun rotary_N : N;
+fun rotate_V : V;
+fun rotate_V2 : V2;
+fun rotation_N : N;
+fun rotational_A : A;
+fun rotatory_A : A;
+fun rote_N : N;
+fun rotgut_N : N;
+fun rotherham_PN : PN;
+fun rothesay_PN : PN;
+fun rothwell_PN : PN;
+fun rotisserie_N : N;
+fun rotogravure_N : N;
+fun rotor_N : N;
+fun rotten_A : A;
+fun rottenness_N : N;
+fun rotter_N : N;
+fun rotterdam_PN : PN;
+fun rotund_A : A;
+fun rotunda_N : N;
+fun rotundity_N : N;
+fun roubaix_PN : PN;
+fun rouble_N : N;
+fun roue_N : N;
+fun rouen_PN : PN;
+fun rouge_N : N;
+fun rouge_V : V;
+fun rouge_V2 : V2;
+fun rough_A : A;
+fun rough_Adv : Adv;
+fun rough_N : N;
+fun rough_V2 : V2;
+fun rough_and_tumble_A : A;
+fun rough_and_tumble_N : N;
+fun rough_dry_V2 : V2;
+fun rough_hewn_A : A;
+fun rough_house_V : V;
+fun rough_house_V2 : V2;
+fun rough_spoken_A : A;
+fun roughage_N : N;
+fun roughcast_N : N;
+fun roughcast_V2 : V2;
+fun roughen_V : V;
+fun roughen_V2 : V2;
+fun roughish_A : A;
+fun roughneck_N : N;
+fun roughness_N : N;
+fun roughrider_N : N;
+fun roughshod_A : A;
+fun roulette_N : N;
+fun round_A : A;
+fun round_Adv : Adv;
+fun round_N : N;
+fun round_V : V;
+fun round_V2 : V2;
+fun round_arm_A : A;
+fun round_arm_Adv : Adv;
+fun round_backed_A : A;
+fun round_eyed_A : A;
+fun round_hand_N : N;
+fun round_shot_N : N;
+fun round_shouldered_A : A;
+fun round_the_clock_A : A;
+fun round_the_clock_Adv : Adv;
+fun roundabout_A : A;
+fun roundabout_N : N;
+fun roundel_N : N;
+fun roundelay_N : N;
+fun roundhead_N : N;
+fun roundhouse_N : N;
+fun roundish_A : A;
+fun roundness_N : N;
+fun roundsman_N : N;
+fun roundup_N : N;
+fun rouse_V : V;
+fun rouse_V2 : V2;
+fun rout_N : N;
+fun rout_V2 : V2;
+fun route_N : N;
+fun route_V2 : V2;
+fun routemarch_N : N;
+fun routine_A : A;
+fun routine_N : N;
+fun rove_V : V;
+fun rove_V2 : V2;
+fun rover_N : N;
+fun row_N : N;
+fun row_V : V;
+fun row_V2 : V2;
+fun rowan_N : N;
+fun rowan_berry_N : N;
+fun rowan_tree_N : N;
+fun rowboat_N : N;
+fun rowdily_Adv : Adv;
+fun rowdiness_N : N;
+fun rowdy_A : A;
+fun rowdy_N : N;
+fun rowdyism_N : N;
+fun rowel_N : N;
+fun rower_N : N;
+fun rowing_N : N;
+fun rowing_boat_N : N;
+fun rowing_club_N : N;
+fun rowlands_gill_PN : PN;
+fun rowlock_N : N;
+fun roy_PN : PN;
+fun royal_A : A;
+fun royalist_N : N;
+fun royalty_N : N;
+fun royston_PN : PN;
+fun rpm_N : N;
+fun rspca_N : N;
+fun rsvp_PN : PN;
+fun rt_hon_PN : PN;
+fun rub_N : N;
+fun rub_V : V;
+fun rub_V2 : V2;
+fun rub_a_dub_N : N;
+fun rub_down_N : N;
+fun rub_up_N : N;
+fun rubber_N : N;
+fun rubber_V2 : V2;
+fun rubber_necking_V : V;
+fun rubber_stamp_V2 : V2;
+fun rubberize_V2 : V2;
+fun rubberneck_N : N;
+fun rubberneck_V : V;
+fun rubbery_A : A;
+fun rubbing_N : N;
+fun rubbish_N : N;
+fun rubbish_V2 : V2;
+fun rubbishing_N : N;
+fun rubbishy_A : A;
+fun rubble_N : N;
+fun rubicon_N : N;
+fun rubicund_A : A;
+fun rubric_N : N;
+fun ruby_A : A;
+fun ruby_N : N;
+fun ruck_N : N;
+fun ruck_V : V;
+fun ruck_V2 : V2;
+fun rucksack_N : N;
+fun ruckus_N : N;
+fun rudder_N : N;
+fun rudderless_A : A;
+fun ruddiness_N : N;
+fun ruddington_PN : PN;
+fun ruddle_N : N;
+fun ruddle_V2 : V2;
+fun ruddy_A : A;
+fun rude_A : A;
+fun rudeness_N : N;
+fun rudiment_N : N;
+fun rudimentary_A : A;
+fun rudolf_PN : PN;
+fun rudy_PN : PN;
+fun rue_N : N;
+fun rue_V2 : V2;
+fun rueful_A : A;
+fun ruff_N : N;
+fun ruff_V : V;
+fun ruff_V2 : V2;
+fun ruffian_N : N;
+fun ruffianism_N : N;
+fun ruffianly_A : A;
+fun ruffle_N : N;
+fun ruffle_V : V;
+fun ruffle_V2 : V2;
+fun rug_N : N;
+fun rugby_N : N;
+fun rugby_PN : PN;
+fun rugeley_PN : PN;
+fun rugged_A : A;
+fun ruggedness_N : N;
+fun rugger_N : N;
+fun ruin_N : N;
+fun ruin_V2 : V2;
+fun ruin_VS : VS;
+fun ruination_N : N;
+fun ruinous_A : A;
+fun rule_N : N;
+fun rule_V : V;
+fun rule_V2 : V2;
+fun rule_VS : VS;
+fun ruler_N : N;
+fun ruling_A : A;
+fun ruling_N : N;
+fun rum_N : N;
+fun rum_runner_N : N;
+fun rumba_N : N;
+fun rumble_N : N;
+fun rumble_V : V;
+fun rumble_V2 : V2;
+fun rumbling_N : N;
+fun rumbustious_A : A;
+fun ruminant_A : A;
+fun ruminant_N : N;
+fun ruminate_V : V;
+fun rumination_N : N;
+fun ruminative_A : A;
+fun rummage_N : N;
+fun rummage_V : V;
+fun rummage_V2 : V2;
+fun rummy_A : A;
+fun rummy_N : N;
+fun rumor_V2 : V2;
+fun rumor_V2V : V2V;
+fun rumor_VS : VS;
+fun rumour_N : N;
+fun rumour_V2 : V2;
+fun rumour_monger_N : N;
+fun rump_N : N;
+fun rump_steak_N : N;
+fun rumple_V2 : V2;
+fun rumpus_N : N;
+fun run_N : N;
+fun run_V : V;
+fun run_V2 : V2;
+fun run_VS : VS;
+fun run_of_the_mill_A : A;
+fun run_off_N : N;
+fun run_through_N : N;
+fun run_up_N : N;
+fun runaway_A : A;
+fun runaway_N : N;
+fun runcorn_PN : PN;
+fun rundown_A : A;
+fun rundown_N : N;
+fun rune_N : N;
+fun rung_N : N;
+fun rung_V2V : V2V;
+fun runic_A : A;
+fun runnel_N : N;
+fun runner_N : N;
+fun runner_up_N : N;
+fun running_A : A;
+fun running_N : N;
+fun running_board_N : N;
+fun runny_A : A;
+fun runt_N : N;
+fun runway_N : N;
+fun rupee_N : N;
+fun rupert_PN : PN;
+fun rupiah_N : N;
+fun rupture_N : N;
+fun rupture_V : V;
+fun rupture_V2 : V2;
+fun rural_A : A;
+fun ruritanian_A : A;
+fun ruse_N : N;
+fun rush_N : N;
+fun rush_V : V;
+fun rush_V2 : V2;
+fun rush_V2V : V2V;
+fun rush_VS : VS;
+fun rushlight_N : N;
+fun rushy_A : A;
+fun rusk_N : N;
+fun russet_A : A;
+fun russet_N : N;
+fun russia_PN : PN;
+fun russian_A : A;
+fun russian_N : N;
+fun rust_N : N;
+fun rust_V : V;
+fun rust_V2 : V2;
+fun rustic_A : A;
+fun rustic_N : N;
+fun rusticate_V : V;
+fun rusticate_V2 : V2;
+fun rusticity_N : N;
+fun rustiness_N : N;
+fun rustle_N : N;
+fun rustle_V : V;
+fun rustle_V2 : V2;
+fun rustler_N : N;
+fun rustless_A : A;
+fun rustling_N : N;
+fun rusty_A : A;
+fun rut_N : N;
+fun rut_V2 : V2;
+fun ruth_PN : PN;
+fun rutherglen_PN : PN;
+fun ruthless_A : A;
+fun ruthlessness_N : N;
+fun rutland_PN : PN;
+fun rwanda_PN : PN;
+fun rwandan_A : A;
+fun rwandan_N : N;
+fun ryde_PN : PN;
+fun rye_N : N;
+fun rye_bread_N : N;
+fun ryehill_PN : PN;
+fun saarbrucken_PN : PN;
+fun sabadeli_PN : PN;
+fun sabah_PN : PN;
+fun sabahan_A : A;
+fun sabahan_N : N;
+fun sabbatarian_A : A;
+fun sabbatarian_N : N;
+fun sabbath_N : N;
+fun sabbatical_A : A;
+fun sabbatical_N : N;
+fun sable_A : A;
+fun sable_N : N;
+fun sabot_N : N;
+fun sabotage_N : N;
+fun sabotage_V2 : V2;
+fun saboteur_N : N;
+fun sabre_N : N;
+fun sabre_V2 : V2;
+fun sabre_rattling_N : N;
+fun sabre_toothed_A : A;
+fun sac_N : N;
+fun saccharin_N : N;
+fun saccharine_A : A;
+fun sacerdotal_A : A;
+fun sacerdotalism_N : N;
+fun sachet_N : N;
+fun sack_N : N;
+fun sack_V2 : V2;
+fun sack_race_N : N;
+fun sackbut_N : N;
+fun sackcloth_N : N;
+fun sacking_N : N;
+fun sacrament_N : N;
+fun sacramental_A : A;
+fun sacramento_PN : PN;
+fun sacred_A : A;
+fun sacredness_N : N;
+fun sacrifice_N : N;
+fun sacrifice_V : V;
+fun sacrifice_V2 : V2;
+fun sacrificial_A : A;
+fun sacrilege_N : N;
+fun sacrilegious_A : A;
+fun sacristan_N : N;
+fun sacristy_N : N;
+fun sacrosanct_A : A;
+fun sad_A : A;
+fun sadden_V : V;
+fun sadden_V2 : V2;
+fun saddle_N : N;
+fun saddle_V : V;
+fun saddle_V2 : V2;
+fun saddle_sore_A : A;
+fun saddlebag_N : N;
+fun saddler_N : N;
+fun saddlery_N : N;
+fun sadhu_N : N;
+fun sadism_N : N;
+fun sadist_N : N;
+fun sadistic_A : A;
+fun sadness_N : N;
+fun sado_masochist_N : N;
+fun sadomasochism_N : N;
+fun sae_N : N;
+fun safari_N : N;
+fun safe_A : A;
+fun safe_N : N;
+fun safe_conduct_N : N;
+fun safe_deposit_A : A;
+fun safe_deposit_N : N;
+fun safecracker_N : N;
+fun safeguard_N : N;
+fun safeguard_V2 : V2;
+fun safekeeping_N : N;
+fun safeness_N : N;
+fun safety_N : N;
+fun safety_belt_N : N;
+fun safety_bolt_N : N;
+fun safety_catch_N : N;
+fun safety_curtain_N : N;
+fun safety_factor_N : N;
+fun safety_lamp_N : N;
+fun safety_lock_N : N;
+fun safety_match_N : N;
+fun safety_pin_N : N;
+fun safety_razor_N : N;
+fun safety_valve_N : N;
+fun saffron_N : N;
+fun saffron_walden_PN : PN;
+fun sag_N : N;
+fun sag_V : V;
+fun saga_N : N;
+fun sagacious_A : A;
+fun sagacity_N : N;
+fun sage_A : A;
+fun sage_N : N;
+fun sage_green_A : A;
+fun sage_green_N : N;
+fun sagittarius_PN : PN;
+fun sago_N : N;
+fun sahib_N : N;
+fun said_A : A;
+fun saigon_PN : PN;
+fun sail_N : N;
+fun sail_V : V;
+fun sail_V2 : V2;
+fun sailcloth_N : N;
+fun sailing_N : N;
+fun sailing_boat_N : N;
+fun sailing_master_N : N;
+fun sailing_ship_N : N;
+fun sailing_vessel_N : N;
+fun sailor_N : N;
+fun saint's_day_N : N;
+fun saint_N : N;
+fun sainted_A : A;
+fun sainthood_N : N;
+fun saintlike_A : A;
+fun saintliness_N : N;
+fun saintly_A : A;
+fun sake_1_N : N;
+fun sake_2_N : N;
+fun sal_volatile_N : N;
+fun salaam_N : N;
+fun salaam_V : V;
+fun salable_A : A;
+fun salacious_A : A;
+fun salaciousness_N : N;
+fun salacity_N : N;
+fun salad_N : N;
+fun salad_dressing_N : N;
+fun salad_oil_N : N;
+fun salamanca_PN : PN;
+fun salamander_N : N;
+fun salami_N : N;
+fun salaried_A : A;
+fun salary_N : N;
+fun sale_N : N;
+fun sale_PN : PN;
+fun saleable_A : A;
+fun salerno_PN : PN;
+fun saleroom_N : N;
+fun salesman_N : N;
+fun salesmanship_N : N;
+fun saleswoman_N : N;
+fun salford_PN : PN;
+fun salience_N : N;
+fun salient_A : A;
+fun salient_N : N;
+fun saline_A : A;
+fun saline_N : N;
+fun salinity_N : N;
+fun salisbury_PN : PN;
+fun saliva_N : N;
+fun salivary_A : A;
+fun salivate_V : V;
+fun sallow_A : A;
+fun sallow_V : V;
+fun sallow_V2 : V2;
+fun sally_N : N;
+fun sally_PN : PN;
+fun sally_V : V;
+fun salmon_N : N;
+fun salon_N : N;
+fun saloon_N : N;
+fun salsify_N : N;
+fun salt_A : A;
+fun salt_N : N;
+fun salt_PN : PN;
+fun salt_V2 : V2;
+fun salt_cellar_N : N;
+fun salt_lick_N : N;
+fun saltash_PN : PN;
+fun saltburn_PN : PN;
+fun saltcoats_PN : PN;
+fun saltiness_N : N;
+fun saltpan_N : N;
+fun saltpetre_N : N;
+fun saltwater_N : N;
+fun saltworks_N : N;
+fun salty_A : A;
+fun salubrious_A : A;
+fun salubrity_N : N;
+fun salutary_A : A;
+fun salutation_N : N;
+fun salute_N : N;
+fun salute_V : V;
+fun salute_V2 : V2;
+fun salvador_PN : PN;
+fun salvadorean_A : A;
+fun salvadorean_N : N;
+fun salvage_N : N;
+fun salvage_V2 : V2;
+fun salvation_N : N;
+fun salve_N : N;
+fun salve_V2 : V2;
+fun salver_N : N;
+fun salvia_N : N;
+fun salvo_N : N;
+fun salzburg_PN : PN;
+fun sam_PN : PN;
+fun samantha_PN : PN;
+fun samaritan_N : N;
+fun samba_N : N;
+fun same_A : A;
+fun same_Adv : Adv;
+fun sameness_N : N;
+fun sammy_PN : PN;
+fun samoa_PN : PN;
+fun samoan_A : A;
+fun samoan_N : N;
+fun samovar_N : N;
+fun sampan_N : N;
+fun sample_N : N;
+fun sample_V2 : V2;
+fun sampler_N : N;
+fun samuel_PN : PN;
+fun samurai_N : N;
+fun san_antonio_PN : PN;
+fun san_bernardino_PN : PN;
+fun san_diego_PN : PN;
+fun san_francisco_PN : PN;
+fun san_jose_PN : PN;
+fun san_juan_PN : PN;
+fun san_marinese_A : A;
+fun san_marinese_N : N;
+fun san_marino_PN : PN;
+fun san_sebastian_PN : PN;
+fun sanatorium_N : N;
+fun sanctification_N : N;
+fun sanctify_V2 : V2;
+fun sanctimonious_A : A;
+fun sanction_N : N;
+fun sanction_V2 : V2;
+fun sanctity_N : N;
+fun sanctuary_N : N;
+fun sanctum_N : N;
+fun sand_N : N;
+fun sand_V2 : V2;
+fun sand_bar_N : N;
+fun sandal_N : N;
+fun sandalled_A : A;
+fun sandalwood_N : N;
+fun sandbach_PN : PN;
+fun sandbag_N : N;
+fun sandbank_N : N;
+fun sandblast_V2 : V2;
+fun sandboy_N : N;
+fun sandfly_N : N;
+fun sandglass_N : N;
+fun sandiness_N : N;
+fun sandown_PN : PN;
+fun sandpaper_N : N;
+fun sandpaper_V2 : V2;
+fun sandpiper_N : N;
+fun sandpit_N : N;
+fun sandra_PN : PN;
+fun sandstone_N : N;
+fun sandstorm_N : N;
+fun sandwich_N : N;
+fun sandwich_V : V;
+fun sandwich_V2 : V2;
+fun sandwich_board_N : N;
+fun sandwichman_N : N;
+fun sandy_A : A;
+fun sandy_PN : PN;
+fun sane_A : A;
+fun sang_froid_N : N;
+fun sango_N : N;
+fun sanguinary_A : A;
+fun sanguine_A : A;
+fun sanitary_A : A;
+fun sanitation_N : N;
+fun sanitize_V2 : V2;
+fun sanity_N : N;
+fun sanskrit_N : N;
+fun santa_claus_N : N;
+fun santa_claus_PN : PN;
+fun santander_PN : PN;
+fun santiago_PN : PN;
+fun santo_domingo_PN : PN;
+fun santos_PN : PN;
+fun sao_paolo_PN : PN;
+fun sap_N : N;
+fun sap_V : V;
+fun sap_V2 : V2;
+fun saphead_N : N;
+fun sapience_N : N;
+fun sapient_A : A;
+fun sapless_A : A;
+fun sapling_N : N;
+fun sapper_N : N;
+fun sapphic_A : A;
+fun sapphire_N : N;
+fun sapporo_PN : PN;
+fun sappy_A : A;
+fun sapwood_N : N;
+fun sara_PN : PN;
+fun saraband_N : N;
+fun saracen_N : N;
+fun sarah_PN : PN;
+fun sarajevo_PN : PN;
+fun saratov_PN : PN;
+fun sarawak_PN : PN;
+fun sarawakian_A : A;
+fun sarawakian_N : N;
+fun sarcasm_N : N;
+fun sarcastic_A : A;
+fun sarcastically_Adv : Adv;
+fun sarcophagus_N : N;
+fun sardine_N : N;
+fun sardonic_A : A;
+fun sardonically_Adv : Adv;
+fun sari_N : N;
+fun sarisbury_PN : PN;
+fun sarong_N : N;
+fun sarsaparilla_N : N;
+fun sartorial_A : A;
+fun sash_N : N;
+fun sash_cord_N : N;
+fun sash_line_N : N;
+fun saskatchewan_PN : PN;
+fun sassari_PN : PN;
+fun sassenach_N : N;
+fun sat_PN : PN;
+fun satan_N : N;
+fun satanic_A : A;
+fun satchel_N : N;
+fun sate_V2 : V2;
+fun sateen_N : N;
+fun satellite_N : N;
+fun satiable_A : A;
+fun satiate_V2 : V2;
+fun satiety_N : N;
+fun satin_A : A;
+fun satin_N : N;
+fun satinwood_N : N;
+fun satire_N : N;
+fun satirical_A : A;
+fun satirist_N : N;
+fun satirize_V2 : V2;
+fun satisfaction_N : N;
+fun satisfactory_A : A;
+fun satisfy_V : V;
+fun satisfy_V2 : V2;
+fun satisfying_A : A;
+fun satrap_N : N;
+fun satsuma_N : N;
+fun saturate_V2 : V2;
+fun saturation_N : N;
+fun saturday_N : N;
+fun saturday_PN : PN;
+fun saturn_PN : PN;
+fun saturnalia_N : N;
+fun saturnine_A : A;
+fun satyr_N : N;
+fun satyric_A : A;
+fun sauce_N : N;
+fun sauce_V2 : V2;
+fun sauce_boat_N : N;
+fun saucepan_N : N;
+fun saucer_N : N;
+fun saucer_eyed_A : A;
+fun sauchie_PN : PN;
+fun saucily_Adv : Adv;
+fun sauciness_N : N;
+fun saucy_A : A;
+fun saudi_arabia_PN : PN;
+fun saudi_arabian_A : A;
+fun saudi_arabian_N : N;
+fun sauerkraut_N : N;
+fun sauna_N : N;
+fun saunter_N : N;
+fun saunter_V : V;
+fun saunterer_N : N;
+fun saurian_A : A;
+fun saurian_N : N;
+fun sausage_N : N;
+fun sausage_dog_N : N;
+fun sausage_meat_N : N;
+fun sausage_roll_N : N;
+fun saute_A : A;
+fun saute_V2 : V2;
+fun savage_A : A;
+fun savage_N : N;
+fun savage_V2 : V2;
+fun savageness_N : N;
+fun savagery_N : N;
+fun savanna_N : N;
+fun savannah_N : N;
+fun savant_N : N;
+fun save_N : N;
+fun save_V : V;
+fun save_V2 : V2;
+fun saveloy_N : N;
+fun saver_N : N;
+fun saving_A : A;
+fun saving_N : N;
+fun savings_bank_N : N;
+fun saviour_N : N;
+fun savoir_faire_N : N;
+fun savore_V2 : V2;
+fun savory_N : N;
+fun savour_N : N;
+fun savour_V : V;
+fun savour_V2 : V2;
+fun savoury_A : A;
+fun savoury_N : N;
+fun savoy_N : N;
+fun savvy_N : N;
+fun savvy_V : V;
+fun saw_N : N;
+fun saw_V : V;
+fun saw_V2 : V2;
+fun saw_pit_N : N;
+fun sawbridgeworth_PN : PN;
+fun sawdust_N : N;
+fun sawhorse_N : N;
+fun sawmill_N : N;
+fun sawyer_N : N;
+fun sax_N : N;
+fun saxhorn_N : N;
+fun saxifrage_N : N;
+fun saxon_A : A;
+fun saxon_N : N;
+fun saxophone_N : N;
+fun saxophonist_N : N;
+fun say_N : N;
+fun say_V : V;
+fun say_V2 : V2;
+fun say_VA : VA;
+fun say_VV : VV;
+fun say_VS : VS;
+fun saying_N : N;
+fun scab_N : N;
+fun scabbard_N : N;
+fun scabby_A : A;
+fun scabies_N : N;
+fun scabious_N : N;
+fun scabrous_A : A;
+fun scaffold_N : N;
+fun scaffolding_N : N;
+fun scalawag_N : N;
+fun scald_N : N;
+fun scald_V2 : V2;
+fun scale_N : N;
+fun scale_V : V;
+fun scale_V2 : V2;
+fun scaling_ladder_N : N;
+fun scallop_N : N;
+fun scallop_V2 : V2;
+fun scallop_shell_N : N;
+fun scallywag_N : N;
+fun scalp_N : N;
+fun scalp_V2 : V2;
+fun scalpel_N : N;
+fun scaly_A : A;
+fun scam_V2 : V2;
+fun scamp_N : N;
+fun scamp_V2 : V2;
+fun scamper_N : N;
+fun scamper_V : V;
+fun scan_V : V;
+fun scan_V2 : V2;
+fun scandal_N : N;
+fun scandalize_V2 : V2;
+fun scandalmonger_N : N;
+fun scandalmongering_N : N;
+fun scandalous_A : A;
+fun scandinavian_A : A;
+fun scandinavian_N : N;
+fun scanner_N : N;
+fun scansion_N : N;
+fun scant_A : A;
+fun scant_V2 : V2;
+fun scantily_Adv : Adv;
+fun scantiness_N : N;
+fun scantling_N : N;
+fun scanty_A : A;
+fun scapegoat_N : N;
+fun scapegrace_N : N;
+fun scapula_N : N;
+fun scar_N : N;
+fun scar_V : V;
+fun scar_V2 : V2;
+fun scarab_N : N;
+fun scarborough_PN : PN;
+fun scarce_A : A;
+fun scarcity_N : N;
+fun scare_N : N;
+fun scare_V : V;
+fun scare_V2 : V2;
+fun scarecrow_N : N;
+fun scaremonger_N : N;
+fun scarf_N : N;
+fun scarf_pin_N : N;
+fun scarify_V2 : V2;
+fun scarlet_A : A;
+fun scarlet_N : N;
+fun scarp_N : N;
+fun scarper_V : V;
+fun scary_A : A;
+fun scathing_A : A;
+fun scatter_N : N;
+fun scatter_V : V;
+fun scatter_V2 : V2;
+fun scatterbrain_N : N;
+fun scatterbrained_A : A;
+fun scattered_A : A;
+fun scatty_A : A;
+fun scavenge_V : V;
+fun scavenger_N : N;
+fun scenario_N : N;
+fun scenarist_N : N;
+fun scene_N : N;
+fun scene_painter_N : N;
+fun scene_shifter_N : N;
+fun scenery_N : N;
+fun scenic_A : A;
+fun scenically_Adv : Adv;
+fun scent_N : N;
+fun scent_V2 : V2;
+fun scentless_A : A;
+fun sceptered_A : A;
+fun sceptic_N : N;
+fun sceptical_A : A;
+fun scepticism_N : N;
+fun sceptre_N : N;
+fun sceptred_A : A;
+fun schedule_N : N;
+fun schedule_V : V;
+fun schedule_V2 : V2;
+fun schedule_VV : VV;
+fun schema_N : N;
+fun schematic_A : A;
+fun schematically_Adv : Adv;
+fun scheme_N : N;
+fun scheme_V : V;
+fun scheme_V2 : V2;
+fun schemer_N : N;
+fun scherzo_N : N;
+fun schism_N : N;
+fun schismatic_A : A;
+fun schist_N : N;
+fun schizoid_A : A;
+fun schizophrenia_N : N;
+fun schizophrenic_A : A;
+fun schizophrenic_N : N;
+fun schmaltz_N : N;
+fun schmaltzy_A : A;
+fun schmalz_N : N;
+fun schmalzy_A : A;
+fun schnapps_N : N;
+fun schnitzel_N : N;
+fun schnorkel_N : N;
+fun scholar_N : N;
+fun scholarly_A : A;
+fun scholarship_N : N;
+fun scholastic_A : A;
+fun scholasticism_N : N;
+fun school_N : N;
+fun school_V2 : V2;
+fun school_board_N : N;
+fun schoolbook_N : N;
+fun schoolboy_N : N;
+fun schoolchild_N : N;
+fun schoolfellow_N : N;
+fun schoolfriend_N : N;
+fun schoolgirl_N : N;
+fun schoolhouse_N : N;
+fun schooling_N : N;
+fun schoolman_N : N;
+fun schoolmaster_N : N;
+fun schoolmate_N : N;
+fun schoolmistress_N : N;
+fun schoolroom_N : N;
+fun schoolteacher_N : N;
+fun schooltime_N : N;
+fun schooner_N : N;
+fun schottische_N : N;
+fun schwa_N : N;
+fun schwerin_PN : PN;
+fun sci_fi_N : N;
+fun sciatic_A : A;
+fun sciatica_N : N;
+fun science_N : N;
+fun scientific_A : A;
+fun scientifically_Adv : Adv;
+fun scientist_N : N;
+fun scimitar_N : N;
+fun scintilla_N : N;
+fun scintillate_V : V;
+fun scintillation_N : N;
+fun scion_N : N;
+fun sclerosis_N : N;
+fun scoff_N : N;
+fun scoff_V : V;
+fun scoff_V2 : V2;
+fun scoffer_N : N;
+fun scoffingly_Adv : Adv;
+fun scold_N : N;
+fun scold_V : V;
+fun scold_V2 : V2;
+fun scolding_N : N;
+fun scollop_N : N;
+fun scollop_V2 : V2;
+fun sconce_N : N;
+fun scone_N : N;
+fun scoop_N : N;
+fun scoop_V : V;
+fun scoop_V2 : V2;
+fun scoopful_N : N;
+fun scoot_V : V;
+fun scoot_V2 : V2;
+fun scooter_N : N;
+fun scope_N : N;
+fun scorbutic_A : A;
+fun scorch_N : N;
+fun scorch_V : V;
+fun scorch_V2 : V2;
+fun scorcher_N : N;
+fun scorching_A : A;
+fun scorching_Adv : Adv;
+fun score_N : N;
+fun score_V : V;
+fun score_V2 : V2;
+fun scoreboard_N : N;
+fun scorebook_N : N;
+fun scorecard_N : N;
+fun scorer_N : N;
+fun scorn_N : N;
+fun scorn_V2 : V2;
+fun scornful_A : A;
+fun scorpio_PN : PN;
+fun scorpion_N : N;
+fun scot_N : N;
+fun scot_free_Adv : Adv;
+fun scotch_A : A;
+fun scotch_N : N;
+fun scotch_V2 : V2;
+fun scotchman_N : N;
+fun scotchwoman_N : N;
+fun scotland_PN : PN;
+fun scotland_yard_PN : PN;
+fun scots_A : A;
+fun scotsman_N : N;
+fun scotswoman_N : N;
+fun scottish_A : A;
+fun scoundrel_N : N;
+fun scoundrelly_A : A;
+fun scour_N : N;
+fun scour_V : V;
+fun scour_V2 : V2;
+fun scourer_N : N;
+fun scourge_N : N;
+fun scourge_V2 : V2;
+fun scout_N : N;
+fun scout_V : V;
+fun scout_V2 : V2;
+fun scoutmaster_N : N;
+fun scow_N : N;
+fun scowl_N : N;
+fun scowl_V : V;
+fun scrabble_N : N;
+fun scrabble_V : V;
+fun scrag_N : N;
+fun scrag_V2 : V2;
+fun scrag_end_N : N;
+fun scraggy_A : A;
+fun scram_V : V;
+fun scramble_N : N;
+fun scramble_V : V;
+fun scramble_V2 : V2;
+fun scramble_V2V : V2V;
+fun scrambler_N : N;
+fun scrap_N : N;
+fun scrap_V : V;
+fun scrap_V2 : V2;
+fun scrap_iron_N : N;
+fun scrapbook_N : N;
+fun scrape_N : N;
+fun scrape_V : V;
+fun scrape_V2 : V2;
+fun scraper_N : N;
+fun scrapheap_N : N;
+fun scraping_N : N;
+fun scrappily_Adv : Adv;
+fun scrappiness_N : N;
+fun scrappy_A : A;
+fun scratch_N : N;
+fun scratch_V : V;
+fun scratch_V2 : V2;
+fun scratch_pad_N : N;
+fun scratch_race_N : N;
+fun scratchy_A : A;
+fun scrawl_N : N;
+fun scrawl_V : V;
+fun scrawl_V2 : V2;
+fun scrawny_A : A;
+fun scream_N : N;
+fun scream_V : V;
+fun scream_V2 : V2;
+fun scream_VS : VS;
+fun screamingly_Adv : Adv;
+fun scree_N : N;
+fun screech_N : N;
+fun screech_V : V;
+fun screech_V2 : V2;
+fun screech_owl_N : N;
+fun screed_N : N;
+fun screen_N : N;
+fun screen_V : V;
+fun screen_V2 : V2;
+fun screw_N : N;
+fun screw_V : V;
+fun screw_V2 : V2;
+fun screw_topped_A : A;
+fun screwball_A : A;
+fun screwball_N : N;
+fun screwdriver_N : N;
+fun screwy_A : A;
+fun scribble_N : N;
+fun scribble_V : V;
+fun scribble_V2 : V2;
+fun scribbler_N : N;
+fun scribbling_block_N : N;
+fun scribe_N : N;
+fun scrimmage_N : N;
+fun scrimmage_V : V;
+fun scrimmage_V2 : V2;
+fun scrimp_V : V;
+fun scrimp_V2 : V2;
+fun scrimshank_V : V;
+fun scrimshanker_N : N;
+fun scrip_N : N;
+fun script_N : N;
+fun scripted_A : A;
+fun scriptural_A : A;
+fun scripture_N : N;
+fun scriptwriter_N : N;
+fun scrivener_N : N;
+fun scrofula_N : N;
+fun scrofulous_A : A;
+fun scroll_N : N;
+fun scrooge_N : N;
+fun scrotum_N : N;
+fun scrounge_V : V;
+fun scrounge_V2 : V2;
+fun scrounger_N : N;
+fun scrub_N : N;
+fun scrub_V : V;
+fun scrub_V2 : V2;
+fun scrubbing_brush_N : N;
+fun scrubby_A : A;
+fun scruff_N : N;
+fun scruffy_A : A;
+fun scrum_N : N;
+fun scrummage_N : N;
+fun scrumptious_A : A;
+fun scrunch_N : N;
+fun scrunch_V2 : V2;
+fun scruple_N : N;
+fun scruple_V : V;
+fun scrupulous_A : A;
+fun scrutineer_N : N;
+fun scrutinize_V2 : V2;
+fun scrutiny_N : N;
+fun scud_N : N;
+fun scud_V : V;
+fun scuff_V : V;
+fun scuff_V2 : V2;
+fun scuffle_V : V;
+fun scull_N : N;
+fun scull_V : V;
+fun scull_V2 : V2;
+fun sculler_N : N;
+fun scullery_N : N;
+fun scullion_N : N;
+fun sculpt_V : V;
+fun sculpt_V2 : V2;
+fun sculptor_N : N;
+fun sculptress_N : N;
+fun sculptural_A : A;
+fun sculpture_N : N;
+fun sculpture_V : V;
+fun sculpture_V2 : V2;
+fun scum_N : N;
+fun scummy_A : A;
+fun scunthorpe_PN : PN;
+fun scupper_N : N;
+fun scupper_V2 : V2;
+fun scurf_N : N;
+fun scurfy_A : A;
+fun scurrility_N : N;
+fun scurrilous_A : A;
+fun scurry_N : N;
+fun scurry_V : V;
+fun scurvy_A : A;
+fun scurvy_N : N;
+fun scut_N : N;
+fun scutcheon_N : N;
+fun scuttle_N : N;
+fun scuttle_V : V;
+fun scuttle_V2 : V2;
+fun scylla_N : N;
+fun scythe_N : N;
+fun scythe_V2 : V2;
+fun sea_N : N;
+fun sea_anemone_N : N;
+fun sea_animal_N : N;
+fun sea_bathing_N : N;
+fun sea_boat_N : N;
+fun sea_bream_N : N;
+fun sea_breeze_N : N;
+fun sea_coal_N : N;
+fun sea_cow_N : N;
+fun sea_dog_N : N;
+fun sea_fish_N : N;
+fun sea_girt_A : A;
+fun sea_god_N : N;
+fun sea_green_A : A;
+fun sea_green_N : N;
+fun sea_horse_N : N;
+fun sea_level_N : N;
+fun sea_lion_N : N;
+fun sea_power_N : N;
+fun sea_rover_N : N;
+fun sea_snake_N : N;
+fun sea_urchin_N : N;
+fun sea_wall_N : N;
+fun sea_water_N : N;
+fun seabed_N : N;
+fun seabird_N : N;
+fun seaboard_N : N;
+fun seaborne_A : A;
+fun seafarer_N : N;
+fun seafaring_A : A;
+fun seafood_N : N;
+fun seaford_PN : PN;
+fun seafront_N : N;
+fun seagoing_A : A;
+fun seagull_N : N;
+fun seaham_PN : PN;
+fun seakale_N : N;
+fun seal_N : N;
+fun seal_V : V;
+fun seal_V2 : V2;
+fun seal_VS : VS;
+fun seal_ring_N : N;
+fun sealer_N : N;
+fun sealing_wax_N : N;
+fun sealskin_N : N;
+fun sealyham_N : N;
+fun seam_N : N;
+fun seam_V2 : V2;
+fun seaman_N : N;
+fun seamanlike_A : A;
+fun seamanship_N : N;
+fun seamless_A : A;
+fun seamstress_N : N;
+fun seamus_PN : PN;
+fun seamy_A : A;
+fun sean_PN : PN;
+fun seance_N : N;
+fun seaplane_N : N;
+fun seaport_N : N;
+fun sear_A : A;
+fun sear_V2 : V2;
+fun search_N : N;
+fun search_V : V;
+fun search_V2 : V2;
+fun search_party_N : N;
+fun search_warrant_N : N;
+fun searcher_N : N;
+fun searching_A : A;
+fun searchlight_N : N;
+fun searing_iron_N : N;
+fun seascape_N : N;
+fun seashell_N : N;
+fun seashore_N : N;
+fun seasick_A : A;
+fun seasickness_N : N;
+fun seaside_N : N;
+fun season_N : N;
+fun season_V : V;
+fun season_V2 : V2;
+fun season_ticket_N : N;
+fun seasonable_A : A;
+fun seasonal_A : A;
+fun seasoning_N : N;
+fun seat_N : N;
+fun seat_V2 : V2;
+fun seat_belt_N : N;
+fun seating_room_N : N;
+fun seaton_burn_PN : PN;
+fun seaton_delaval_PN : PN;
+fun seattle_PN : PN;
+fun seaward_A : A;
+fun seawards_Adv : Adv;
+fun seaway_N : N;
+fun seaweed_N : N;
+fun seaworthiness_N : N;
+fun seaworthy_A : A;
+fun sec_N : N;
+fun secede_V : V;
+fun secession_N : N;
+fun secessionist_N : N;
+fun seclude_V2 : V2;
+fun secluded_A : A;
+fun seclusion_N : N;
+fun second_N : N;
+fun second_V2 : V2;
+fun second_best_A : A;
+fun second_best_Adv : Adv;
+fun second_best_N : N;
+fun second_class_A : A;
+fun second_class_Adv : Adv;
+fun second_class_N : N;
+fun second_guess_V2 : V2;
+fun second_hand_A : A;
+fun second_hand_N : N;
+fun second_rate_A : A;
+fun second_rater_N : N;
+fun second_sighted_A : A;
+fun secondary_A : A;
+fun seconder_N : N;
+fun secondment_N : N;
+fun secrecy_N : N;
+fun secret_A : A;
+fun secret_N : N;
+fun secretarial_A : A;
+fun secretariat_N : N;
+fun secretary_N : N;
+fun secretary_general_N : N;
+fun secrete_V2 : V2;
+fun secretion_N : N;
+fun secretive_A : A;
+fun secretiveness_N : N;
+fun sect_N : N;
+fun sectarian_A : A;
+fun sectarian_N : N;
+fun sectarianism_N : N;
+fun section_N : N;
+fun sectional_A : A;
+fun sectionalism_N : N;
+fun sector_N : N;
+fun secular_A : A;
+fun secularism_N : N;
+fun secularist_N : N;
+fun secularize_V2 : V2;
+fun secure_A : A;
+fun secure_V2 : V2;
+fun securicor_PN : PN;
+fun security_N : N;
+fun sedan_N : N;
+fun sedan_chair_N : N;
+fun sedate_A : A;
+fun sedate_V2 : V2;
+fun sedateness_N : N;
+fun sedation_N : N;
+fun sedative_A : A;
+fun sedative_N : N;
+fun sedentary_A : A;
+fun sedge_N : N;
+fun sedgy_A : A;
+fun sediment_N : N;
+fun sedimentary_A : A;
+fun sedition_N : N;
+fun seditious_A : A;
+fun seduce_V2 : V2;
+fun seducer_N : N;
+fun seduction_N : N;
+fun seductive_A : A;
+fun sedulous_A : A;
+fun see_N : N;
+fun see_V : V;
+fun see_V2 : V2;
+fun see_V2V : V2V;
+fun see_VA : VA;
+fun see_VS : VS;
+fun see_through_A : A;
+fun seed_N : N;
+fun seed_V : V;
+fun seed_V2 : V2;
+fun seed_corn_N : N;
+fun seedbed_N : N;
+fun seedcake_N : N;
+fun seedily_Adv : Adv;
+fun seediness_N : N;
+fun seedless_A : A;
+fun seedling_N : N;
+fun seedsman_N : N;
+fun seedtime_N : N;
+fun seedy_A : A;
+fun seek_V2 : V2;
+fun seek_VV : VV;
+fun seek_VS : VS;
+fun seeker_N : N;
+fun seem_V : V;
+fun seem_V2 : V2;
+fun seem_VA : VA;
+fun seem_VV : VV;
+fun seem_VS : VS;
+fun seeming_A : A;
+fun seemliness_N : N;
+fun seemly_A : A;
+fun seep_V : V;
+fun seepage_N : N;
+fun seer_N : N;
+fun seersucker_N : N;
+fun seesaw_N : N;
+fun seesaw_V : V;
+fun seethe_V : V;
+fun seethe_V2 : V2;
+fun segment_N : N;
+fun segment_V : V;
+fun segment_V2 : V2;
+fun segmentation_N : N;
+fun segregate_V2 : V2;
+fun segregation_N : N;
+fun seignior_N : N;
+fun seine_N : N;
+fun seine_V : V;
+fun seine_V2 : V2;
+fun seismic_A : A;
+fun seismograph_N : N;
+fun seismologist_N : N;
+fun seismology_N : N;
+fun seize_V : V;
+fun seize_V2 : V2;
+fun seizure_N : N;
+fun selby_PN : PN;
+fun seldom_Adv : Adv;
+fun select_A : A;
+fun select_V : V;
+fun select_V2 : V2;
+fun select_V2V : V2V;
+fun select_VV : VV;
+fun selection_N : N;
+fun selective_A : A;
+fun selectivity_N : N;
+fun selector_N : N;
+fun selenium_N : N;
+fun self_N : N;
+fun self_abasement_N : N;
+fun self_abnegation_N : N;
+fun self_absorbed_A : A;
+fun self_acting_A : A;
+fun self_activating_A : A;
+fun self_addressed_A : A;
+fun self_appointed_A : A;
+fun self_assertion_N : N;
+fun self_assertive_A : A;
+fun self_assurance_N : N;
+fun self_assured_A : A;
+fun self_centred_A : A;
+fun self_collected_A : A;
+fun self_coloured_A : A;
+fun self_command_N : N;
+fun self_communion_N : N;
+fun self_complacency_N : N;
+fun self_confessed_A : A;
+fun self_confidence_N : N;
+fun self_confident_A : A;
+fun self_conscious_A : A;
+fun self_consciousness_N : N;
+fun self_contained_A : A;
+fun self_control_N : N;
+fun self_defence_N : N;
+fun self_denial_N : N;
+fun self_denying_A : A;
+fun self_destruct_V : V;
+fun self_determination_N : N;
+fun self_educated_A : A;
+fun self_effacing_A : A;
+fun self_employed_A : A;
+fun self_esteem_N : N;
+fun self_evident_A : A;
+fun self_examination_N : N;
+fun self_explanatory_A : A;
+fun self_help_N : N;
+fun self_importance_N : N;
+fun self_important_A : A;
+fun self_imposed_A : A;
+fun self_indulgence_N : N;
+fun self_indulgent_A : A;
+fun self_insure_V : V;
+fun self_interest_N : N;
+fun self_locking_A : A;
+fun self_made_A : A;
+fun self_opinionated_A : A;
+fun self_pity_N : N;
+fun self_possessed_A : A;
+fun self_possession_N : N;
+fun self_preservation_N : N;
+fun self_raising_A : A;
+fun self_reliance_N : N;
+fun self_reliant_A : A;
+fun self_respect_N : N;
+fun self_respecting_A : A;
+fun self_righteous_A : A;
+fun self_rule_N : N;
+fun self_sacrifice_N : N;
+fun self_sacrificing_A : A;
+fun self_same_A : A;
+fun self_sealing_A : A;
+fun self_seeker_N : N;
+fun self_seeking_A : A;
+fun self_seeking_N : N;
+fun self_service_N : N;
+fun self_sown_A : A;
+fun self_starter_N : N;
+fun self_styled_A : A;
+fun self_sufficiency_N : N;
+fun self_sufficient_A : A;
+fun self_sufficing_A : A;
+fun self_supporting_A : A;
+fun self_will_N : N;
+fun self_willed_A : A;
+fun self_winding_A : A;
+fun selfconsciously_Adv : Adv;
+fun selfish_A : A;
+fun selfishness_N : N;
+fun selkirk_PN : PN;
+fun sell_N : N;
+fun sell_V : V;
+fun sell_V2 : V2;
+fun sell_VA : VA;
+fun sell_VS : VS;
+fun seller_N : N;
+fun selling_N : N;
+fun sellout_N : N;
+fun selsey_PN : PN;
+fun selston_PN : PN;
+fun selvage_N : N;
+fun selvedge_N : N;
+fun semantic_A : A;
+fun semantics_N : N;
+fun semaphore_N : N;
+fun semaphore_V : V;
+fun semaphore_V2 : V2;
+fun semarang_PN : PN;
+fun semblance_N : N;
+fun semen_N : N;
+fun semester_N : N;
+fun semibreve_N : N;
+fun semicircle_N : N;
+fun semicircular_A : A;
+fun semicolon_N : N;
+fun semiconducting_A : A;
+fun semiconductor_N : N;
+fun semiconscious_A : A;
+fun semidetached_A : A;
+fun semifinal_N : N;
+fun semifinalist_N : N;
+fun seminal_A : A;
+fun seminar_N : N;
+fun seminarist_N : N;
+fun seminary_N : N;
+fun semiofficial_A : A;
+fun semiquaver_N : N;
+fun semirigid_A : A;
+fun semite_A : A;
+fun semite_N : N;
+fun semitic_A : A;
+fun semitone_N : N;
+fun semitropical_A : A;
+fun semivowel_N : N;
+fun semolina_N : N;
+fun sempstress_N : N;
+fun senate_N : N;
+fun senator_N : N;
+fun senatorial_A : A;
+fun send_V : V;
+fun send_V2 : V2;
+fun send_V2V : V2V;
+fun send_VS : VS;
+fun send_up_N : N;
+fun sender_N : N;
+fun sendoff_N : N;
+fun senegal_PN : PN;
+fun senegalese_A : A;
+fun senegalese_N : N;
+fun senescence_N : N;
+fun senescent_A : A;
+fun seneschal_N : N;
+fun senile_A : A;
+fun senility_N : N;
+fun senior_A : A;
+fun senior_N : N;
+fun seniority_N : N;
+fun senna_N : N;
+fun senor_N : N;
+fun senora_N : N;
+fun senorita_N : N;
+fun sensation_N : N;
+fun sensational_A : A;
+fun sensationalism_N : N;
+fun sensationalist_N : N;
+fun sense_N : N;
+fun sense_V2 : V2;
+fun sense_VS : VS;
+fun sense_organ_N : N;
+fun senseless_A : A;
+fun senselessness_N : N;
+fun sensibility_N : N;
+fun sensible_A : A;
+fun sensitive_A : A;
+fun sensitivity_N : N;
+fun sensitization_N : N;
+fun sensitize_V2 : V2;
+fun sensory_A : A;
+fun sensual_A : A;
+fun sensualism_N : N;
+fun sensualist_N : N;
+fun sensuality_N : N;
+fun sensuous_A : A;
+fun sensuousness_N : N;
+fun sentence_N : N;
+fun sentence_V : V;
+fun sentence_V2 : V2;
+fun sententious_A : A;
+fun sentient_A : A;
+fun sentiment_N : N;
+fun sentimental_A : A;
+fun sentimentalist_N : N;
+fun sentimentality_N : N;
+fun sentimentalize_V : V;
+fun sentimentalize_V2 : V2;
+fun sentinel_N : N;
+fun sentry_N : N;
+fun sentry_box_N : N;
+fun sentry_go_N : N;
+fun seoul_PN : PN;
+fun sepal_N : N;
+fun separability_N : N;
+fun separable_A : A;
+fun separate_A : A;
+fun separate_N : N;
+fun separate_V : V;
+fun separate_V2 : V2;
+fun separation_N : N;
+fun separatist_N : N;
+fun separator_N : N;
+fun sepia_N : N;
+fun sepsis_N : N;
+fun sept_PN : PN;
+fun september_N : N;
+fun september_PN : PN;
+fun septet_N : N;
+fun septic_A : A;
+fun septicaemia_N : N;
+fun septicemia_N : N;
+fun septuagenarian_N : N;
+fun septuagint_N : N;
+fun sepulchral_A : A;
+fun sepulchre_N : N;
+fun sepulture_N : N;
+fun sequel_N : N;
+fun sequence_N : N;
+fun sequent_A : A;
+fun sequential_A : A;
+fun sequester_V2 : V2;
+fun sequestered_A : A;
+fun sequestrate_V2 : V2;
+fun sequestration_N : N;
+fun sequin_N : N;
+fun sequoia_N : N;
+fun seraglio_N : N;
+fun seraph_N : N;
+fun seraphic_A : A;
+fun serbo_croat_N : N;
+fun sere_A : A;
+fun serenade_N : N;
+fun serenade_V2 : V2;
+fun serendipity_N : N;
+fun serene_A : A;
+fun serenity_N : N;
+fun serf_N : N;
+fun serfdom_N : N;
+fun serge_N : N;
+fun sergeant_N : N;
+fun sergeant_major_N : N;
+fun serial_A : A;
+fun serial_N : N;
+fun serialize_V2 : V2;
+fun seriatim_Adv : Adv;
+fun sericultural_A : A;
+fun sericulture_N : N;
+fun sericulturist_N : N;
+fun series_N : N;
+fun seriocomic_A : A;
+fun serious_A : A;
+fun seriousness_N : N;
+fun serjeant_N : N;
+fun serjeant_at_arms_N : N;
+fun sermon_N : N;
+fun sermonize_V : V;
+fun sermonize_V2 : V2;
+fun serous_A : A;
+fun serpent_N : N;
+fun serpentine_A : A;
+fun serrated_A : A;
+fun serried_A : A;
+fun serum_N : N;
+fun servant_N : N;
+fun serve_N : N;
+fun serve_V : V;
+fun serve_V2 : V2;
+fun serve_VV : VV;
+fun serve_VS : VS;
+fun server_N : N;
+fun service_N : N;
+fun service_V2 : V2;
+fun serviceable_A : A;
+fun serviceman_N : N;
+fun serviette_N : N;
+fun servile_A : A;
+fun servility_N : N;
+fun serving_N : N;
+fun servitor_N : N;
+fun servitude_N : N;
+fun sesame_N : N;
+fun sesotho_N : N;
+fun sesquipedalian_A : A;
+fun session_N : N;
+fun set_N : N;
+fun set_V : V;
+fun set_V2 : V2;
+fun set_VV : VV;
+fun set_VS : VS;
+fun set_square_N : N;
+fun set_to_N : N;
+fun set_up_N : N;
+fun setback_N : N;
+fun setswana_N : N;
+fun sett_N : N;
+fun settee_N : N;
+fun setter_N : N;
+fun setting_N : N;
+fun settle_N : N;
+fun settle_V : V;
+fun settle_V2 : V2;
+fun settle_VA : VA;
+fun settle_VS : VS;
+fun settled_A : A;
+fun settlement_N : N;
+fun settler_N : N;
+fun seven_sisters_PN : PN;
+fun sevenfold_A : A;
+fun sevenfold_Adv : Adv;
+fun sevenoaks_PN : PN;
+fun sever_V : V;
+fun sever_V2 : V2;
+fun several_A : A;
+fun severally_Adv : Adv;
+fun severance_N : N;
+fun severe_A : A;
+fun severity_N : N;
+fun sevilla_PN : PN;
+fun seville_PN : PN;
+fun sew_V : V;
+fun sew_V2 : V2;
+fun sewage_N : N;
+fun sewage_farm_N : N;
+fun sewage_works_N : N;
+fun sewer_N : N;
+fun sewer_gas_N : N;
+fun sewer_rat_N : N;
+fun sewerage_N : N;
+fun sewing_N : N;
+fun sewing_machine_N : N;
+fun sex_N : N;
+fun sex_V2 : V2;
+fun sex_starved_A : A;
+fun sexagenarian_A : A;
+fun sexagenarian_N : N;
+fun sexed_A : A;
+fun sexism_N : N;
+fun sexist_A : A;
+fun sexist_N : N;
+fun sexless_A : A;
+fun sextant_N : N;
+fun sextet_N : N;
+fun sextette_N : N;
+fun sexton_N : N;
+fun sexual_A : A;
+fun sexuality_N : N;
+fun sexy_A : A;
+fun seychelles_PN : PN;
+fun seychellois_A : A;
+fun seychellois_N : N;
+fun sgd_PN : PN;
+fun sgt_PN : PN;
+fun shabbily_Adv : Adv;
+fun shabbiness_N : N;
+fun shabby_A : A;
+fun shabby_genteel_A : A;
+fun shack_N : N;
+fun shack_V : V;
+fun shackle_N : N;
+fun shackle_V2 : V2;
+fun shad_N : N;
+fun shaddock_N : N;
+fun shade_N : N;
+fun shade_V : V;
+fun shade_V2 : V2;
+fun shade_tree_N : N;
+fun shading_N : N;
+fun shadow_N : N;
+fun shadow_V2 : V2;
+fun shadow_boxing_N : N;
+fun shadowy_A : A;
+fun shady_A : A;
+fun shaft_N : N;
+fun shag_N : N;
+fun shag_V : V;
+fun shag_V2 : V2;
+fun shaggily_Adv : Adv;
+fun shagginess_N : N;
+fun shagging_N : N;
+fun shaggy_A : A;
+fun shah_N : N;
+fun shake_N : N;
+fun shake_V : V;
+fun shake_V2 : V2;
+fun shake_up_N : N;
+fun shakedown_N : N;
+fun shakeout_N : N;
+fun shaker_N : N;
+fun shakespearian_A : A;
+fun shakily_Adv : Adv;
+fun shakiness_N : N;
+fun shaking_N : N;
+fun shaky_A : A;
+fun shale_N : N;
+fun shale_oil_N : N;
+fun shallot_N : N;
+fun shallow_A : A;
+fun shallow_N : N;
+fun shallow_V : V;
+fun sham_A : A;
+fun sham_N : N;
+fun sham_V : V;
+fun sham_V2 : V2;
+fun shamble_N : N;
+fun shamble_V : V;
+fun shambles_N : N;
+fun shame_N : N;
+fun shame_V2 : V2;
+fun shame_making_A : A;
+fun shamefaced_A : A;
+fun shameful_A : A;
+fun shameless_A : A;
+fun shamelessness_N : N;
+fun shammy_N : N;
+fun shampoo_N : N;
+fun shampoo_V2 : V2;
+fun shamrock_N : N;
+fun shandy_N : N;
+fun shanghai_PN : PN;
+fun shanghai_V2 : V2;
+fun shank_N : N;
+fun shanklin_PN : PN;
+fun shantung_N : N;
+fun shanty_N : N;
+fun shantytown_N : N;
+fun shape_N : N;
+fun shape_V : V;
+fun shape_V2 : V2;
+fun shape_VV : VV;
+fun shapeless_A : A;
+fun shapelessness_N : N;
+fun shapely_A : A;
+fun shard_N : N;
+fun share_N : N;
+fun share_V : V;
+fun share_V2 : V2;
+fun share_out_N : N;
+fun sharecropper_N : N;
+fun shareholder_N : N;
+fun shareholding_N : N;
+fun shark_N : N;
+fun sharkskin_N : N;
+fun sharon_PN : PN;
+fun sharp_A : A;
+fun sharp_Adv : Adv;
+fun sharp_N : N;
+fun sharp_eyed_A : A;
+fun sharp_set_A : A;
+fun sharp_sighted_A : A;
+fun sharp_witted_A : A;
+fun sharpen_V : V;
+fun sharpen_V2 : V2;
+fun sharpener_N : N;
+fun sharper_N : N;
+fun sharpness_N : N;
+fun sharpshooter_N : N;
+fun shatter_V : V;
+fun shatter_V2 : V2;
+fun shatterproof_A : A;
+fun shave_N : N;
+fun shave_V : V;
+fun shave_V2 : V2;
+fun shaver_N : N;
+fun shavian_A : A;
+fun shavian_N : N;
+fun shaving_brush_N : N;
+fun shawl_N : N;
+fun she_Pron : Pron;
+fun she_goat_N : N;
+fun sheaf_N : N;
+fun shear_V2 : V2;
+fun sheath_N : N;
+fun sheath_knife_N : N;
+fun sheathe_V2 : V2;
+fun sheathing_N : N;
+fun shebang_N : N;
+fun shebeen_N : N;
+fun shed_N : N;
+fun shed_V2 : V2;
+fun sheen_N : N;
+fun sheep_N : N;
+fun sheepdog_N : N;
+fun sheepfold_N : N;
+fun sheepish_A : A;
+fun sheepishness_N : N;
+fun sheeprun_N : N;
+fun sheepskin_N : N;
+fun sheer_A : A;
+fun sheer_Adv : Adv;
+fun sheer_V : V;
+fun sheerness_PN : PN;
+fun sheet_N : N;
+fun sheet_anchor_N : N;
+fun sheet_lightning_N : N;
+fun sheeting_N : N;
+fun sheffield_PN : PN;
+fun sheik_N : N;
+fun sheikdom_N : N;
+fun sheikh_N : N;
+fun sheikhdom_N : N;
+fun sheila_PN : PN;
+fun shekel_N : N;
+fun sheldrake_N : N;
+fun shelf_N : N;
+fun shelford_PN : PN;
+fun shell_N : N;
+fun shell_V : V;
+fun shell_V2 : V2;
+fun shell_shock_N : N;
+fun shellac_N : N;
+fun shellac_V2 : V2;
+fun shellfire_N : N;
+fun shellfish_N : N;
+fun shellproof_A : A;
+fun shelter_N : N;
+fun shelter_V : V;
+fun shelter_V2 : V2;
+fun shelve_V : V;
+fun shelve_V2 : V2;
+fun shepherd_N : N;
+fun shepherd_V2 : V2;
+fun shepherdess_N : N;
+fun shepshed_PN : PN;
+fun shepton_mallet_PN : PN;
+fun sheraton_N : N;
+fun sherbet_N : N;
+fun sherbourne_PN : PN;
+fun sheriff_N : N;
+fun sheringham_PN : PN;
+fun sherry_N : N;
+fun shetland_PN : PN;
+fun shevington_PN : PN;
+fun shew_V : V;
+fun shew_V2 : V2;
+fun shibboleth_N : N;
+fun shield_N : N;
+fun shield_V2 : V2;
+fun shift_N : N;
+fun shift_V : V;
+fun shift_V2 : V2;
+fun shiftily_Adv : Adv;
+fun shiftiness_N : N;
+fun shiftless_A : A;
+fun shifty_A : A;
+fun shihkiachwang_PN : PN;
+fun shildon_PN : PN;
+fun shillelagh_N : N;
+fun shilling_N : N;
+fun shillyshally_N : N;
+fun shillyshally_V : V;
+fun shimmer_N : N;
+fun shimmer_V : V;
+fun shin_N : N;
+fun shin_V : V;
+fun shinbone_N : N;
+fun shindig_N : N;
+fun shindy_N : N;
+fun shine_N : N;
+fun shine_V : V;
+fun shine_V2 : V2;
+fun shingle_N : N;
+fun shingle_V2 : V2;
+fun shingles_N : N;
+fun shingly_A : A;
+fun shinguard_N : N;
+fun shiny_A : A;
+fun ship's_chandler_N : N;
+fun ship_N : N;
+fun ship_V : V;
+fun ship_V2 : V2;
+fun ship_breaker_N : N;
+fun ship_canal_N : N;
+fun shipboard_A : A;
+fun shipbroker_N : N;
+fun shipbuilder_N : N;
+fun shipbuilding_N : N;
+fun shipload_N : N;
+fun shipmate_N : N;
+fun shipment_N : N;
+fun shipowner_N : N;
+fun shipper_N : N;
+fun shipping_N : N;
+fun shipping_agent_N : N;
+fun shipping_office_N : N;
+fun shipshape_A : A;
+fun shipshape_Adv : Adv;
+fun shipway_N : N;
+fun shipwreck_N : N;
+fun shipwreck_V : V;
+fun shipwright_N : N;
+fun shipyard_N : N;
+fun shire_N : N;
+fun shirebrook_PN : PN;
+fun shiremoor_PN : PN;
+fun shirk_V : V;
+fun shirk_V2 : V2;
+fun shirker_N : N;
+fun shirley_PN : PN;
+fun shirt_N : N;
+fun shirt_front_N : N;
+fun shirting_N : N;
+fun shirtwaist_N : N;
+fun shirtwaister_N : N;
+fun shirty_A : A;
+fun shish_kebab_N : N;
+fun shit_N : N;
+fun shit_V : V;
+fun shiver_N : N;
+fun shiver_V : V;
+fun shiver_V2 : V2;
+fun shivery_A : A;
+fun shoal_N : N;
+fun shoal_V : V;
+fun shock_Adv : Adv;
+fun shock_N : N;
+fun shock_V2 : V2;
+fun shock_brigade_N : N;
+fun shock_headed_A : A;
+fun shock_worker_N : N;
+fun shockable_A : A;
+fun shocker_N : N;
+fun shocking_A : A;
+fun shoddiness_N : N;
+fun shoddy_A : A;
+fun shoddy_N : N;
+fun shoe_N : N;
+fun shoe_V2 : V2;
+fun shoe_leather_N : N;
+fun shoeblack_N : N;
+fun shoehorn_N : N;
+fun shoehorn_V2 : V2;
+fun shoelace_N : N;
+fun shoemaker_N : N;
+fun shoemaking_N : N;
+fun shoestring_N : N;
+fun shoetree_N : N;
+fun shogun_N : N;
+fun shoo_V : V;
+fun shoo_V2 : V2;
+fun shoot_N : N;
+fun shoot_V : V;
+fun shoot_V2 : V2;
+fun shooter_N : N;
+fun shooting_N : N;
+fun shooting_box_N : N;
+fun shooting_brake_N : N;
+fun shooting_gallery_N : N;
+fun shooting_range_N : N;
+fun shooting_stick_N : N;
+fun shop_N : N;
+fun shop_V : V;
+fun shop_assistant_N : N;
+fun shop_bell_N : N;
+fun shop_boy_N : N;
+fun shop_front_N : N;
+fun shop_girl_N : N;
+fun shop_steward_N : N;
+fun shopkeeper_N : N;
+fun shoplift_V : V;
+fun shoplift_V2 : V2;
+fun shoplifter_N : N;
+fun shoplifting_N : N;
+fun shopper_N : N;
+fun shopping_N : N;
+fun shopsoiled_A : A;
+fun shopwalker_N : N;
+fun shopwindow_N : N;
+fun shopworn_A : A;
+fun shore_N : N;
+fun shore_V2 : V2;
+fun shorn_V2 : V2;
+fun short_A : A;
+fun short_Adv : Adv;
+fun short_N : N;
+fun short_V : V;
+fun short_V2 : V2;
+fun short_change_V2 : V2;
+fun short_circuit_N : N;
+fun short_circuit_V : V;
+fun short_circuit_V2 : V2;
+fun short_dated_A : A;
+fun short_handed_A : A;
+fun short_lived_A : A;
+fun short_range_A : A;
+fun short_sighted_A : A;
+fun short_tempered_A : A;
+fun short_term_A : A;
+fun short_winded_A : A;
+fun shortage_N : N;
+fun shortbread_N : N;
+fun shortcake_N : N;
+fun shortcoming_N : N;
+fun shorten_V : V;
+fun shorten_V2 : V2;
+fun shortening_N : N;
+fun shortfall_N : N;
+fun shorthand_N : N;
+fun shorthorn_N : N;
+fun shortish_A : A;
+fun shortlist_N : N;
+fun shortlist_V2 : V2;
+fun shortness_N : N;
+fun shot_N : N;
+fun shot_put_N : N;
+fun shot_tower_N : N;
+fun shotgun_N : N;
+fun shotton_PN : PN;
+fun shotts_PN : PN;
+fun should_VV : VV;
+fun shoulder_N : N;
+fun shoulder_V2 : V2;
+fun shoulder_blade_N : N;
+fun shoulder_flash_N : N;
+fun shoulder_strap_N : N;
+fun shout_N : N;
+fun shout_V : V;
+fun shout_V2 : V2;
+fun shouting_N : N;
+fun shove_N : N;
+fun shove_V : V;
+fun shove_V2 : V2;
+fun shove_ha'penny_N : N;
+fun shovel_N : N;
+fun shovel_V2 : V2;
+fun shovel_board_N : N;
+fun shovelful_N : N;
+fun show_N : N;
+fun show_V : V;
+fun show_V2 : V2;
+fun show_V2V : V2V;
+fun show_VS : VS;
+fun show_business_N : N;
+fun show_off_N : N;
+fun show_window_N : N;
+fun showbiz_N : N;
+fun showboat_N : N;
+fun showcase_N : N;
+fun showdown_N : N;
+fun shower_N : N;
+fun shower_V : V;
+fun shower_V2 : V2;
+fun shower_bath_N : N;
+fun showery_A : A;
+fun showgirl_N : N;
+fun showily_Adv : Adv;
+fun showiness_N : N;
+fun showing_N : N;
+fun showjumping_N : N;
+fun showman_N : N;
+fun showmanship_N : N;
+fun showplace_N : N;
+fun showroom_N : N;
+fun showy_A : A;
+fun shrapnel_N : N;
+fun shred_N : N;
+fun shred_V2 : V2;
+fun shrew_N : N;
+fun shrew_mouse_N : N;
+fun shrewd_A : A;
+fun shrewdness_N : N;
+fun shrewish_A : A;
+fun shrewishness_N : N;
+fun shrewsbury_PN : PN;
+fun shriek_N : N;
+fun shriek_V : V;
+fun shriek_V2 : V2;
+fun shrift_N : N;
+fun shrike_N : N;
+fun shrill_A : A;
+fun shrill_V : V;
+fun shrill_V2 : V2;
+fun shrillness_N : N;
+fun shrilly_Adv : Adv;
+fun shrimp_N : N;
+fun shrimp_V : V;
+fun shrine_N : N;
+fun shrine_V2 : V2;
+fun shrink_N : N;
+fun shrink_V : V;
+fun shrink_V2 : V2;
+fun shrinkable_A : A;
+fun shrinkage_N : N;
+fun shrive_V2 : V2;
+fun shrivel_V : V;
+fun shrivel_V2 : V2;
+fun shropshire_PN : PN;
+fun shroud_N : N;
+fun shroud_V2 : V2;
+fun shrove_tuesday_N : N;
+fun shrove_tuesday_PN : PN;
+fun shrub_N : N;
+fun shrubbery_N : N;
+fun shrug_N : N;
+fun shrug_V2 : V2;
+fun shrug_VS : VS;
+fun shuck_N : N;
+fun shuck_V2 : V2;
+fun shudder_N : N;
+fun shudder_V : V;
+fun shudderingly_Adv : Adv;
+fun shuffle_N : N;
+fun shuffle_V : V;
+fun shuffle_V2 : V2;
+fun shuffler_N : N;
+fun shun_V2 : V2;
+fun shunt_V : V;
+fun shunt_V2 : V2;
+fun shunter_N : N;
+fun shush_V : V;
+fun shush_V2 : V2;
+fun shut_V : V;
+fun shut_V2 : V2;
+fun shutdown_N : N;
+fun shuteye_N : N;
+fun shutter_N : N;
+fun shutter_V2 : V2;
+fun shuttle_N : N;
+fun shuttle_V : V;
+fun shuttle_V2 : V2;
+fun shuttlecock_N : N;
+fun shy_A : A;
+fun shy_N : N;
+fun shy_V : V;
+fun shy_V2 : V2;
+fun shyness_N : N;
+fun shyster_N : N;
+fun siam_PN : PN;
+fun siamese_A : A;
+fun siamese_N : N;
+fun sian_PN : PN;
+fun siberian_A : A;
+fun sibilant_A : A;
+fun sibilant_N : N;
+fun sibling_N : N;
+fun sibyl_N : N;
+fun sibylline_A : A;
+fun sic_Adv : Adv;
+fun sicilian_A : A;
+fun sicilian_N : N;
+fun sick_A : A;
+fun sick_V2 : V2;
+fun sick_benefit_N : N;
+fun sick_berth_N : N;
+fun sick_headache_N : N;
+fun sick_leave_N : N;
+fun sick_list_N : N;
+fun sick_parade_N : N;
+fun sick_pay_N : N;
+fun sick_room_N : N;
+fun sickbay_N : N;
+fun sickbed_N : N;
+fun sicken_V : V;
+fun sicken_V2 : V2;
+fun sickening_A : A;
+fun sickish_A : A;
+fun sickle_N : N;
+fun sickly_A : A;
+fun sickness_N : N;
+fun sid_PN : PN;
+fun side_N : N;
+fun side_V : V;
+fun side_chapel_N : N;
+fun side_dish_N : N;
+fun side_drum_N : N;
+fun side_face_Adv : Adv;
+fun side_glance_N : N;
+fun side_road_N : N;
+fun side_saddle_Adv : Adv;
+fun side_saddle_N : N;
+fun side_slip_N : N;
+fun side_slip_V : V;
+fun side_splitting_A : A;
+fun side_stroke_N : N;
+fun side_view_N : N;
+fun sideboard_N : N;
+fun sidecar_N : N;
+fun sided_A : A;
+fun sidelight_N : N;
+fun sideline_N : N;
+fun sideline_V : V;
+fun sideline_V2 : V2;
+fun sidelong_A : A;
+fun sidelong_Adv : Adv;
+fun sidereal_A : A;
+fun sideshow_N : N;
+fun sidesman_N : N;
+fun sidestep_N : N;
+fun sidestep_V : V;
+fun sidestep_V2 : V2;
+fun sidetrack_N : N;
+fun sidetrack_V2 : V2;
+fun sidewalk_N : N;
+fun sidewards_Adv : Adv;
+fun sideways_Adv : Adv;
+fun siding_N : N;
+fun sidle_V : V;
+fun sidmouth_PN : PN;
+fun sidney_PN : PN;
+fun siege_N : N;
+fun sienna_N : N;
+fun sierra_N : N;
+fun sierra_leone_PN : PN;
+fun sierra_leonian_A : A;
+fun sierra_leonian_N : N;
+fun siesta_N : N;
+fun sieve_N : N;
+fun sieve_V2 : V2;
+fun sift_V : V;
+fun sift_V2 : V2;
+fun sifter_N : N;
+fun sigh_N : N;
+fun sigh_V : V;
+fun sigh_V2 : V2;
+fun sigh_VS : VS;
+fun sight_N : N;
+fun sight_V2 : V2;
+fun sighted_A : A;
+fun sighting_N : N;
+fun sightless_A : A;
+fun sightseeing_N : N;
+fun sightseer_N : N;
+fun sign_N : N;
+fun sign_V : V;
+fun sign_V2 : V2;
+fun sign_V2V : V2V;
+fun sign_painter_N : N;
+fun sign_up_V : V;
+fun signal_A : A;
+fun signal_N : N;
+fun signal_V : V;
+fun signal_V2 : V2;
+fun signal_VS : VS;
+fun signal_box_N : N;
+fun signale_V2 : V2;
+fun signale_VS : VS;
+fun signalize_V2 : V2;
+fun signaller_N : N;
+fun signalman_N : N;
+fun signatory_N : N;
+fun signature_N : N;
+fun signet_N : N;
+fun signet_ring_N : N;
+fun significance_N : N;
+fun significant_A : A;
+fun signification_N : N;
+fun significative_A : A;
+fun signify_V : V;
+fun signify_V2 : V2;
+fun signor_N : N;
+fun signora_N : N;
+fun signorina_N : N;
+fun signpost_N : N;
+fun signpost_V2 : V2;
+fun sikh_N : N;
+fun silage_N : N;
+fun sileby_PN : PN;
+fun silence_N : N;
+fun silence_V2 : V2;
+fun silencer_N : N;
+fun silent_A : A;
+fun silhouette_N : N;
+fun silhouette_V2 : V2;
+fun silica_N : N;
+fun silicate_N : N;
+fun silicon_N : N;
+fun silicone_N : N;
+fun silicosis_N : N;
+fun silk_N : N;
+fun silken_A : A;
+fun silkily_Adv : Adv;
+fun silkiness_N : N;
+fun silkworm_N : N;
+fun silky_A : A;
+fun sill_N : N;
+fun sillabub_N : N;
+fun silliness_N : N;
+fun silly_A : A;
+fun silly_N : N;
+fun silo_N : N;
+fun silsden_PN : PN;
+fun silt_N : N;
+fun silt_V : V;
+fun silt_V2 : V2;
+fun silvan_A : A;
+fun silver_N : N;
+fun silver_V : V;
+fun silver_V2 : V2;
+fun silver_fish_N : N;
+fun silvern_A : A;
+fun silverside_N : N;
+fun silversmith_N : N;
+fun silvery_A : A;
+fun silvia_PN : PN;
+fun simian_A : A;
+fun simian_N : N;
+fun similar_A : A;
+fun similarity_N : N;
+fun simile_N : N;
+fun similitude_N : N;
+fun simmer_N : N;
+fun simmer_V : V;
+fun simmer_V2 : V2;
+fun simon_PN : PN;
+fun simony_N : N;
+fun simoom_N : N;
+fun simoon_N : N;
+fun simper_V : V;
+fun simperingly_Adv : Adv;
+fun simple_A : A;
+fun simple_N : N;
+fun simple_hearted_A : A;
+fun simple_minded_A : A;
+fun simpleton_N : N;
+fun simplicity_N : N;
+fun simplification_N : N;
+fun simplify_V : V;
+fun simplify_V2 : V2;
+fun simulacrum_N : N;
+fun simulate_V2 : V2;
+fun simulation_N : N;
+fun simulator_N : N;
+fun simultaneity_N : N;
+fun simultaneous_A : A;
+fun simultaneousness_N : N;
+fun sin_N : N;
+fun sin_V : V;
+fun since_Adv : Adv;
+fun since_Subj : Subj ;
+fun sincere_A : A;
+fun sincerity_N : N;
+fun sine_N : N;
+fun sine_die_Adv : Adv;
+fun sine_qua_non_N : N;
+fun sinecure_N : N;
+fun sinew_N : N;
+fun sinewy_A : A;
+fun sinful_A : A;
+fun sinfulness_N : N;
+fun sing_V : V;
+fun sing_V2 : V2;
+fun singable_A : A;
+fun singapore_PN : PN;
+fun singaporean_A : A;
+fun singaporean_N : N;
+fun singe_N : N;
+fun singe_V : V;
+fun singe_V2 : V2;
+fun singer_N : N;
+fun singhalese_A : A;
+fun singing_N : N;
+fun single_A : A;
+fun single_N : N;
+fun single_V2 : V2;
+fun single_breasted_A : A;
+fun single_handed_A : A;
+fun single_handed_Adv : Adv;
+fun single_minded_A : A;
+fun single_spacing_N : N;
+fun singleness_N : N;
+fun singlestick_N : N;
+fun singlet_N : N;
+fun singleton_N : N;
+fun singly_Adv : Adv;
+fun singsong_N : N;
+fun singular_A : A;
+fun singular_N : N;
+fun singularity_N : N;
+fun singularize_V2 : V2;
+fun sinhala_N : N;
+fun sinhalese_A : A;
+fun sinhalese_N : N;
+fun sining_PN : PN;
+fun sinister_A : A;
+fun sink_N : N;
+fun sink_V : V;
+fun sink_V2 : V2;
+fun sinkable_A : A;
+fun sinker_N : N;
+fun sinking_N : N;
+fun sinking_fund_N : N;
+fun sinless_A : A;
+fun sinlessness_N : N;
+fun sinn_fein_PN : PN;
+fun sinner_N : N;
+fun sinologist_N : N;
+fun sinology_N : N;
+fun sinuosity_N : N;
+fun sinuous_A : A;
+fun sinus_N : N;
+fun sinusitis_N : N;
+fun sioux_N : N;
+fun sip_N : N;
+fun sip_V : V;
+fun sip_V2 : V2;
+fun siphon_N : N;
+fun siphon_V : V;
+fun siphon_V2 : V2;
+fun sir_N : N;
+fun sir_roger_de_coverley_N : N;
+fun siracusa_PN : PN;
+fun sirdar_N : N;
+fun sire_N : N;
+fun sire_V2 : V2;
+fun siren_N : N;
+fun sirloin_N : N;
+fun sirocco_N : N;
+fun sirrah_N : N;
+fun sirup_N : N;
+fun sisal_N : N;
+fun sissified_A : A;
+fun sissy_N : N;
+fun sister_N : N;
+fun sister_in_law_N : N;
+fun sisterhood_N : N;
+fun sisterly_A : A;
+fun siswati_N : N;
+fun sit_V : V;
+fun sit_V2 : V2;
+fun sit_VA : VA;
+fun sit_in_N : N;
+fun sitar_N : N;
+fun site_N : N;
+fun site_V : V;
+fun sitter_N : N;
+fun sitting_N : N;
+fun sitting_room_N : N;
+fun sittingbourne_PN : PN;
+fun situate_V2 : V2;
+fun situated_A : A;
+fun situation_N : N;
+fun six_footer_N : N;
+fun six_shooter_N : N;
+fun sixfold_A : A;
+fun sixfold_Adv : Adv;
+fun sixpence_N : N;
+fun sixpenny_A : A;
+fun sixth_former_N : N;
+fun sizable_A : A;
+fun size_N : N;
+fun size_V2 : V2;
+fun sizeable_A : A;
+fun sized_A : A;
+fun sizzle_V : V;
+fun skate_N : N;
+fun skate_V : V;
+fun skateboard_N : N;
+fun skateboarder_N : N;
+fun skateboarding_N : N;
+fun skater_N : N;
+fun skating_N : N;
+fun skating_rink_N : N;
+fun skedaddle_V : V;
+fun skeet_N : N;
+fun skegness_PN : PN;
+fun skein_N : N;
+fun skeleton_N : N;
+fun skelmanthorpe_PN : PN;
+fun skelmersdale_PN : PN;
+fun skep_N : N;
+fun skeptical_A : A;
+fun skepticism_N : N;
+fun sketch_N : N;
+fun sketch_V : V;
+fun sketch_V2 : V2;
+fun sketch_block_N : N;
+fun sketch_book_N : N;
+fun sketch_map_N : N;
+fun sketcher_N : N;
+fun sketchily_Adv : Adv;
+fun sketchiness_N : N;
+fun sketchy_A : A;
+fun skew_A : A;
+fun skew_V2 : V2;
+fun skew_eyed_A : A;
+fun skewen_PN : PN;
+fun skewer_N : N;
+fun skewer_V2 : V2;
+fun ski_N : N;
+fun ski_V : V;
+fun ski_bob_N : N;
+fun ski_jump_N : N;
+fun ski_lift_N : N;
+fun ski_plane_N : N;
+fun skid_N : N;
+fun skid_V : V;
+fun skid_V2 : V2;
+fun skidpan_N : N;
+fun skier_N : N;
+fun skiff_N : N;
+fun skiffle_N : N;
+fun skiffle_group_N : N;
+fun skilful_A : A;
+fun skill_N : N;
+fun skilled_A : A;
+fun skillet_N : N;
+fun skilly_N : N;
+fun skim_V : V;
+fun skim_V2 : V2;
+fun skimmed_milk_N : N;
+fun skimmer_N : N;
+fun skimp_V : V;
+fun skimp_V2 : V2;
+fun skimpily_Adv : Adv;
+fun skimpy_A : A;
+fun skin_N : N;
+fun skin_V : V;
+fun skin_V2 : V2;
+fun skin_deep_A : A;
+fun skin_diving_N : N;
+fun skin_graft_N : N;
+fun skin_tight_A : A;
+fun skinflint_N : N;
+fun skinhead_N : N;
+fun skinny_A : A;
+fun skint_A : A;
+fun skip_N : N;
+fun skip_V : V;
+fun skip_V2 : V2;
+fun skipper_N : N;
+fun skipper_V2 : V2;
+fun skipping_rope_N : N;
+fun skipton_PN : PN;
+fun skirl_N : N;
+fun skirmish_N : N;
+fun skirmish_V : V;
+fun skirmisher_N : N;
+fun skirt_N : N;
+fun skirt_V : V;
+fun skirt_V2 : V2;
+fun skirting_board_N : N;
+fun skit_N : N;
+fun skitter_V : V;
+fun skittish_A : A;
+fun skittishness_N : N;
+fun skittle_N : N;
+fun skittle_V2 : V2;
+fun skittle_pin_N : N;
+fun skittles_N : N;
+fun skivvy_N : N;
+fun skopje_PN : PN;
+fun skua_N : N;
+fun skulk_V : V;
+fun skulker_N : N;
+fun skull_N : N;
+fun skullcap_N : N;
+fun skullduggery_N : N;
+fun skulled_A : A;
+fun skunk_N : N;
+fun sky_N : N;
+fun sky_V2 : V2;
+fun sky_blue_A : A;
+fun sky_blue_N : N;
+fun sky_high_Adv : Adv;
+fun skylark_N : N;
+fun skylark_V : V;
+fun skylight_N : N;
+fun skyline_N : N;
+fun skyrocket_V : V;
+fun skyrocket_V2 : V2;
+fun skyscraper_N : N;
+fun skyward_A : A;
+fun skyward_Adv : Adv;
+fun skywards_A : A;
+fun skywards_Adv : Adv;
+fun skywriting_N : N;
+fun slab_N : N;
+fun slack_A : A;
+fun slack_N : N;
+fun slack_V : V;
+fun slacken_V : V;
+fun slacken_V2 : V2;
+fun slacker_N : N;
+fun slackness_N : N;
+fun slag_N : N;
+fun slag_heap_N : N;
+fun slake_V2 : V2;
+fun slalom_N : N;
+fun slam_N : N;
+fun slam_V : V;
+fun slam_V2 : V2;
+fun slam_dunk_V2 : V2;
+fun slander_N : N;
+fun slander_V2 : V2;
+fun slanderer_N : N;
+fun slanderous_A : A;
+fun slang_N : N;
+fun slang_V2 : V2;
+fun slangily_Adv : Adv;
+fun slanginess_N : N;
+fun slangy_A : A;
+fun slant_N : N;
+fun slant_V : V;
+fun slant_V2 : V2;
+fun slantingly_Adv : Adv;
+fun slantwise_Adv : Adv;
+fun slap_Adv : Adv;
+fun slap_N : N;
+fun slap_V2 : V2;
+fun slap_bang_Adv : Adv;
+fun slap_happy_A : A;
+fun slap_up_A : A;
+fun slapdash_A : A;
+fun slapdash_Adv : Adv;
+fun slapstick_N : N;
+fun slash_N : N;
+fun slash_V : V;
+fun slash_V2 : V2;
+fun slat_N : N;
+fun slate_N : N;
+fun slate_V2 : V2;
+fun slate_V2V : V2V;
+fun slate_club_N : N;
+fun slate_pencil_N : N;
+fun slating_N : N;
+fun slatted_A : A;
+fun slattern_N : N;
+fun slatternliness_N : N;
+fun slatternly_A : A;
+fun slaty_A : A;
+fun slaughter_N : N;
+fun slaughter_V2 : V2;
+fun slaughterer_N : N;
+fun slaughterhouse_N : N;
+fun slav_A : A;
+fun slav_N : N;
+fun slave_N : N;
+fun slave_V : V;
+fun slave_driver_N : N;
+fun slave_trade_N : N;
+fun slave_traffic_N : N;
+fun slaver_N : N;
+fun slaver_V : V;
+fun slavery_N : N;
+fun slavey_N : N;
+fun slavish_A : A;
+fun slavonic_A : A;
+fun slaw_N : N;
+fun slay_V2 : V2;
+fun slayer_N : N;
+fun sleaford_PN : PN;
+fun sleazy_A : A;
+fun sled_N : N;
+fun sledge_N : N;
+fun sledge_V : V;
+fun sledge_V2 : V2;
+fun sledgehammer_N : N;
+fun sleek_A : A;
+fun sleek_V2 : V2;
+fun sleekness_N : N;
+fun sleep_N : N;
+fun sleep_V : V;
+fun sleep_V2 : V2;
+fun sleeper_N : N;
+fun sleepily_Adv : Adv;
+fun sleepiness_N : N;
+fun sleeping_N : N;
+fun sleeping_bag_N : N;
+fun sleeping_car_N : N;
+fun sleeping_draught_N : N;
+fun sleeping_pill_N : N;
+fun sleeping_sickness_N : N;
+fun sleepless_A : A;
+fun sleeplessness_N : N;
+fun sleepwalker_N : N;
+fun sleepy_A : A;
+fun sleepy_head_N : N;
+fun sleet_N : N;
+fun sleet_V : V;
+fun sleety_A : A;
+fun sleeve_N : N;
+fun sleeved_A : A;
+fun sleeveless_A : A;
+fun sleigh_N : N;
+fun sleigh_V : V;
+fun sleigh_V2 : V2;
+fun sleigh_bell_N : N;
+fun sleight_N : N;
+fun slender_A : A;
+fun slenderize_V : V;
+fun slenderize_V2 : V2;
+fun slenderness_N : N;
+fun sleuth_N : N;
+fun sleuth_hound_N : N;
+fun slew_V : V;
+fun slew_V2 : V2;
+fun slice_N : N;
+fun slice_V : V;
+fun slice_V2 : V2;
+fun slick_A : A;
+fun slick_Adv : Adv;
+fun slick_N : N;
+fun slicker_N : N;
+fun slide_N : N;
+fun slide_V : V;
+fun slide_V2 : V2;
+fun slide_rule_N : N;
+fun slight_A : A;
+fun slight_N : N;
+fun slight_V2 : V2;
+fun slightingly_Adv : Adv;
+fun slightness_N : N;
+fun sligo_PN : PN;
+fun slim_A : A;
+fun slim_V : V;
+fun slim_V2 : V2;
+fun slime_N : N;
+fun sliminess_N : N;
+fun slimness_N : N;
+fun slimy_A : A;
+fun sling_N : N;
+fun sling_V : V;
+fun sling_V2 : V2;
+fun slinger_N : N;
+fun slink_V : V;
+fun slip_N : N;
+fun slip_V : V;
+fun slip_V2 : V2;
+fun slip_carriage_N : N;
+fun slip_coach_N : N;
+fun slip_road_N : N;
+fun slip_up_N : N;
+fun slipcover_N : N;
+fun slipknot_N : N;
+fun slipon_N : N;
+fun slipover_N : N;
+fun slipper_N : N;
+fun slippered_A : A;
+fun slipperiness_N : N;
+fun slippery_A : A;
+fun slippy_A : A;
+fun slipshod_A : A;
+fun slipstream_N : N;
+fun slipway_N : N;
+fun slit_N : N;
+fun slit_V2 : V2;
+fun slither_V : V;
+fun slithery_A : A;
+fun sliver_N : N;
+fun sliver_V : V;
+fun sliver_V2 : V2;
+fun slob_N : N;
+fun slobber_N : N;
+fun slobber_V : V;
+fun slobber_V2 : V2;
+fun sloe_N : N;
+fun sloe_gin_N : N;
+fun slog_V : V;
+fun slog_V2 : V2;
+fun slogan_N : N;
+fun slogger_N : N;
+fun sloop_N : N;
+fun slop_N : N;
+fun slop_V : V;
+fun slop_V2 : V2;
+fun slop_basin_N : N;
+fun slop_pail_N : N;
+fun slop_shop_N : N;
+fun slope_N : N;
+fun slope_V : V;
+fun slope_V2 : V2;
+fun slopingly_Adv : Adv;
+fun sloppily_Adv : Adv;
+fun sloppiness_N : N;
+fun sloppy_A : A;
+fun slosh_V : V;
+fun slosh_V2 : V2;
+fun sloshed_A : A;
+fun slot_N : N;
+fun slot_V2 : V2;
+fun slot_machine_N : N;
+fun sloth_N : N;
+fun slothful_A : A;
+fun slouch_N : N;
+fun slouch_V : V;
+fun slouch_hat_N : N;
+fun slouchingly_Adv : Adv;
+fun slough_N : N;
+fun slough_PN : PN;
+fun slough_V : V;
+fun slough_V2 : V2;
+fun slovak_N : N;
+fun sloven_N : N;
+fun slovenian_A : A;
+fun slovenian_N : N;
+fun slovenliness_N : N;
+fun slovenly_A : A;
+fun slow_A : A;
+fun slow_Adv : Adv;
+fun slow_V : V;
+fun slow_V2 : V2;
+fun slow_worm_N : N;
+fun slowcoach_N : N;
+fun slowdown_N : N;
+fun slower_Adv : Adv;
+fun slowest_Adv : Adv;
+fun slowness_N : N;
+fun sludge_N : N;
+fun slug_N : N;
+fun slug_V : V;
+fun slug_V2 : V2;
+fun sluggard_N : N;
+fun sluggish_A : A;
+fun sluggishness_N : N;
+fun sluice_N : N;
+fun sluice_V : V;
+fun sluice_V2 : V2;
+fun sluice_valve_N : N;
+fun sluicegate_N : N;
+fun slum_N : N;
+fun slum_V : V;
+fun slumber_N : N;
+fun slumber_V : V;
+fun slumber_V2 : V2;
+fun slumberer_N : N;
+fun slumberous_A : A;
+fun slummy_A : A;
+fun slump_N : N;
+fun slump_V : V;
+fun slump_V2 : V2;
+fun slur_N : N;
+fun slur_V : V;
+fun slur_V2 : V2;
+fun slurry_N : N;
+fun slush_N : N;
+fun slushy_A : A;
+fun slut_N : N;
+fun sluttish_A : A;
+fun sly_A : A;
+fun slyness_N : N;
+fun smack_Adv : Adv;
+fun smack_N : N;
+fun smack_V : V;
+fun smack_V2 : V2;
+fun smacker_N : N;
+fun smacking_N : N;
+fun small_A : A;
+fun small_Adv : Adv;
+fun small_N : N;
+fun small_minded_A : A;
+fun smallholder_N : N;
+fun smallholding_N : N;
+fun smallness_N : N;
+fun smallpox_N : N;
+fun smalltime_A : A;
+fun smarmy_A : A;
+fun smart_A : A;
+fun smart_N : N;
+fun smart_V : V;
+fun smarten_V : V;
+fun smarten_V2 : V2;
+fun smartness_N : N;
+fun smash_Adv : Adv;
+fun smash_N : N;
+fun smash_V : V;
+fun smash_V2 : V2;
+fun smash_up_N : N;
+fun smasher_N : N;
+fun smashing_A : A;
+fun smattering_N : N;
+fun smear_N : N;
+fun smear_V : V;
+fun smear_V2 : V2;
+fun smear_word_N : N;
+fun smell_N : N;
+fun smell_V : V;
+fun smell_V2 : V2;
+fun smell_VA : VA;
+fun smelling_bottle_N : N;
+fun smelly_A : A;
+fun smelt_N : N;
+fun smelt_V2 : V2;
+fun smilax_N : N;
+fun smile_N : N;
+fun smile_V : V;
+fun smile_V2 : V2;
+fun smilingly_Adv : Adv;
+fun smirch_N : N;
+fun smirch_V2 : V2;
+fun smirk_N : N;
+fun smirk_V : V;
+fun smite_V : V;
+fun smite_V2 : V2;
+fun smith_N : N;
+fun smithy_N : N;
+fun smock_N : N;
+fun smocking_N : N;
+fun smog_N : N;
+fun smoke_N : N;
+fun smoke_V : V;
+fun smoke_V2 : V2;
+fun smoke_bomb_N : N;
+fun smoke_cured_A : A;
+fun smoke_dried_A : A;
+fun smoke_screen_N : N;
+fun smokeless_A : A;
+fun smoker_N : N;
+fun smokestack_N : N;
+fun smoking_N : N;
+fun smoking_car_N : N;
+fun smoking_carriage_N : N;
+fun smoking_compartment_N : N;
+fun smoking_mixture_N : N;
+fun smoking_room_N : N;
+fun smoky_A : A;
+fun smooth_A : A;
+fun smooth_N : N;
+fun smooth_V : V;
+fun smooth_V2 : V2;
+fun smooth_bore_A : A;
+fun smooth_faced_A : A;
+fun smooth_spoken_A : A;
+fun smooth_tongued_A : A;
+fun smoothing_iron_N : N;
+fun smoothing_plane_N : N;
+fun smoothness_N : N;
+fun smorgasbord_N : N;
+fun smother_N : N;
+fun smother_V2 : V2;
+fun smoulder_N : N;
+fun smoulder_V : V;
+fun smudge_N : N;
+fun smudge_V : V;
+fun smudge_V2 : V2;
+fun smudgy_A : A;
+fun smug_A : A;
+fun smuggle_V2 : V2;
+fun smuggler_N : N;
+fun smugness_N : N;
+fun smut_N : N;
+fun smut_V2 : V2;
+fun smuttily_Adv : Adv;
+fun smuttiness_N : N;
+fun smutty_A : A;
+fun snack_N : N;
+fun snack_bar_N : N;
+fun snack_counter_N : N;
+fun snaffle_N : N;
+fun snaffle_V2 : V2;
+fun snaffle_bit_N : N;
+fun snag_N : N;
+fun snag_V : V;
+fun snag_V2 : V2;
+fun snail_N : N;
+fun snake_N : N;
+fun snake_V : V;
+fun snake_charmer_N : N;
+fun snaky_A : A;
+fun snap_N : N;
+fun snap_V : V;
+fun snap_V2 : V2;
+fun snap_VS : VS;
+fun snap_fastener_N : N;
+fun snapdragon_N : N;
+fun snappish_A : A;
+fun snappishness_N : N;
+fun snappy_A : A;
+fun snapshot_N : N;
+fun snare_N : N;
+fun snare_V2 : V2;
+fun snare_drum_N : N;
+fun snarl_N : N;
+fun snarl_V : V;
+fun snarl_V2 : V2;
+fun snarl_up_N : N;
+fun snatch_N : N;
+fun snatch_V : V;
+fun snatch_V2 : V2;
+fun snatcher_N : N;
+fun snazzy_A : A;
+fun sneak_N : N;
+fun sneak_V : V;
+fun sneak_V2 : V2;
+fun sneak_thief_N : N;
+fun sneaking_A : A;
+fun sneaky_A : A;
+fun sneer_N : N;
+fun sneer_V : V;
+fun sneeringly_Adv : Adv;
+fun sneeze_N : N;
+fun sneeze_V : V;
+fun snick_N : N;
+fun snick_V : V;
+fun snick_V2 : V2;
+fun snicker_N : N;
+fun snicker_V : V;
+fun snide_A : A;
+fun sniff_N : N;
+fun sniff_V : V;
+fun sniff_V2 : V2;
+fun sniff_VS : VS;
+fun sniffle_V : V;
+fun sniffy_A : A;
+fun snifter_N : N;
+fun snigger_N : N;
+fun snigger_V : V;
+fun snip_N : N;
+fun snip_V : V;
+fun snip_V2 : V2;
+fun snipe_N : N;
+fun snipe_V : V;
+fun snipe_V2 : V2;
+fun sniper_N : N;
+fun snippet_N : N;
+fun snipping_N : N;
+fun snitch_V : V;
+fun snitch_V2 : V2;
+fun snivel_V : V;
+fun sniveller_N : N;
+fun snob_N : N;
+fun snobbery_N : N;
+fun snobbish_A : A;
+fun snobbishness_N : N;
+fun snog_V : V;
+fun snogging_N : N;
+fun snood_N : N;
+fun snook_N : N;
+fun snooker_N : N;
+fun snoop_V : V;
+fun snooper_N : N;
+fun snootily_Adv : Adv;
+fun snooty_A : A;
+fun snooze_N : N;
+fun snooze_V : V;
+fun snore_N : N;
+fun snore_V : V;
+fun snorer_N : N;
+fun snorkel_N : N;
+fun snort_N : N;
+fun snort_V : V;
+fun snort_V2 : V2;
+fun snort_VS : VS;
+fun snorter_N : N;
+fun snorty_A : A;
+fun snot_N : N;
+fun snot_nosed_A : A;
+fun snotty_A : A;
+fun snout_N : N;
+fun snow_N : N;
+fun snow_V : V;
+fun snow_V2 : V2;
+fun snow_clad_A : A;
+fun snow_covered_A : A;
+fun snow_line_N : N;
+fun snow_white_A : A;
+fun snowball_N : N;
+fun snowball_V : V;
+fun snowball_V2 : V2;
+fun snowberry_N : N;
+fun snowblind_A : A;
+fun snowblindness_N : N;
+fun snowbound_A : A;
+fun snowcapped_A : A;
+fun snowdrift_N : N;
+fun snowdrop_N : N;
+fun snowfall_N : N;
+fun snowfield_N : N;
+fun snowflake_N : N;
+fun snowman_N : N;
+fun snowplough_N : N;
+fun snowstorm_N : N;
+fun snowy_A : A;
+fun snr_PN : PN;
+fun snub_A : A;
+fun snub_N : N;
+fun snub_V2 : V2;
+fun snub_nosed_A : A;
+fun snuff_N : N;
+fun snuff_V : V;
+fun snuff_V2 : V2;
+fun snuff_colour_A : A;
+fun snuff_colour_N : N;
+fun snuff_coloured_A : A;
+fun snuffbox_N : N;
+fun snuffle_N : N;
+fun snuffle_V : V;
+fun snug_A : A;
+fun snug_N : N;
+fun snuggery_N : N;
+fun snuggle_V : V;
+fun snuggle_V2 : V2;
+fun snugness_N : N;
+fun so_AdA : AdA;
+fun so_N : N;
+fun so_Subj : Subj ;
+fun so_and_so_N : N;
+fun so_called_A : A;
+fun so_so_A : A;
+fun so_so_Adv : Adv;
+fun soak_N : N;
+fun soak_V : V;
+fun soak_V2 : V2;
+fun soaker_N : N;
+fun soap_N : N;
+fun soap_V2 : V2;
+fun soap_bubble_N : N;
+fun soap_opera_N : N;
+fun soapbox_N : N;
+fun soapy_A : A;
+fun soar_V : V;
+fun soar_V2 : V2;
+fun sob_N : N;
+fun sob_V : V;
+fun sob_V2 : V2;
+fun sob_stuff_N : N;
+fun sobbingly_Adv : Adv;
+fun sober_A : A;
+fun sober_V : V;
+fun sober_V2 : V2;
+fun sober_sides_N : N;
+fun sobriety_N : N;
+fun sobriquet_N : N;
+fun soc_N : N;
+fun soccer_N : N;
+fun sociability_N : N;
+fun sociable_A : A;
+fun social_A : A;
+fun social_N : N;
+fun social_work_N : N;
+fun socialism_N : N;
+fun socialist_A : A;
+fun socialist_N : N;
+fun socialite_N : N;
+fun socialization_N : N;
+fun socialize_V2 : V2;
+fun society_N : N;
+fun sociological_A : A;
+fun sociologist_N : N;
+fun sociology_N : N;
+fun sock_Adv : Adv;
+fun sock_N : N;
+fun sock_V2 : V2;
+fun socket_N : N;
+fun socratic_A : A;
+fun sod_N : N;
+fun sod_V : V;
+fun soda_N : N;
+fun soda_biscuit_N : N;
+fun soda_cracker_N : N;
+fun soda_fountain_N : N;
+fun soda_water_N : N;
+fun sodden_A : A;
+fun sodding_A : A;
+fun sodium_N : N;
+fun sodomite_N : N;
+fun sodomy_N : N;
+fun sofa_N : N;
+fun sofia_PN : PN;
+fun soft_A : A;
+fun soft_boiled_A : A;
+fun soft_footed_A : A;
+fun soft_headed_A : A;
+fun soft_hearted_A : A;
+fun soft_pedal_V : V;
+fun soft_pedal_V2 : V2;
+fun soft_soap_V2 : V2;
+fun soft_solder_N : N;
+fun soft_solder_V2 : V2;
+fun soft_spoken_A : A;
+fun soft_witted_A : A;
+fun soften_V : V;
+fun soften_V2 : V2;
+fun softener_N : N;
+fun softie_N : N;
+fun softish_A : A;
+fun softland_V : V;
+fun softness_N : N;
+fun software_N : N;
+fun softwood_N : N;
+fun softy_N : N;
+fun sogginess_N : N;
+fun soggy_A : A;
+fun soh_N : N;
+fun soho_PN : PN;
+fun soigne_A : A;
+fun soignee_A : A;
+fun soil_N : N;
+fun soil_V : V;
+fun soil_V2 : V2;
+fun soil_pipe_N : N;
+fun soiree_N : N;
+fun sojourn_N : N;
+fun sojourn_V : V;
+fun sojourner_N : N;
+fun sol_PN : PN;
+fun sol_fa_N : N;
+fun solace_N : N;
+fun solace_V2 : V2;
+fun solar_A : A;
+fun solar_plexus_N : N;
+fun solarium_N : N;
+fun solder_N : N;
+fun solder_V2 : V2;
+fun soldering_iron_N : N;
+fun soldier_N : N;
+fun soldier_V : V;
+fun soldiery_N : N;
+fun sole_A : A;
+fun sole_N : N;
+fun sole_V2 : V2;
+fun solecism_N : N;
+fun soled_A : A;
+fun solemn_A : A;
+fun solemnity_N : N;
+fun solemnization_N : N;
+fun solemnize_V2 : V2;
+fun solemnness_N : N;
+fun solicit_V : V;
+fun solicit_V2 : V2;
+fun solicitation_N : N;
+fun solicitor_N : N;
+fun solicitor_general_N : N;
+fun solicitous_A : A;
+fun solicitude_N : N;
+fun solid_A : A;
+fun solid_N : N;
+fun solid_state_A : A;
+fun solidarity_N : N;
+fun solidification_N : N;
+fun solidify_V : V;
+fun solidify_V2 : V2;
+fun solidity_N : N;
+fun solidness_N : N;
+fun solihull_PN : PN;
+fun soliloquize_V : V;
+fun soliloquy_N : N;
+fun solingen_PN : PN;
+fun solipsism_N : N;
+fun solitaire_N : N;
+fun solitary_A : A;
+fun solitude_N : N;
+fun solo_A : A;
+fun solo_N : N;
+fun soloist_N : N;
+fun solon_PN : PN;
+fun solstice_N : N;
+fun solubility_N : N;
+fun soluble_A : A;
+fun solution_N : N;
+fun solvable_A : A;
+fun solve_V2 : V2;
+fun solvency_N : N;
+fun solvent_A : A;
+fun solvent_N : N;
+fun somali_A : A;
+fun somali_N : N;
+fun somalia_PN : PN;
+fun somalian_A : A;
+fun somalian_N : N;
+fun somatic_A : A;
+fun sombre_A : A;
+fun sombreness_N : N;
+fun sombrero_N : N;
+fun some_Quant : Quant;
+fun somebody_NP : NP;
+fun someday_Adv : Adv;
+fun somehow_Adv : Adv;
+fun somehow_AdV : AdV;
+fun someone_NP : NP;
+fun someplace_Adv : Adv;
+fun somercotes_PN : PN;
+fun somersault_N : N;
+fun somersault_V : V;
+fun somerset_PN : PN;
+fun something_NP : NP;
+fun sometime_Adv : Adv;
+fun sometimes_Adv : Adv;
+fun someway_Adv : Adv;
+fun somewhat_Adv : Adv;
+fun somnambulism_N : N;
+fun somnambulist_N : N;
+fun somnolence_N : N;
+fun somnolent_A : A;
+fun son_N : N;
+fun son_in_law_N : N;
+fun sonar_N : N;
+fun sonata_N : N;
+fun song_N : N;
+fun songbird_N : N;
+fun songbook_N : N;
+fun songster_N : N;
+fun songstress_N : N;
+fun sonia_PN : PN;
+fun sonic_A : A;
+fun sonnet_N : N;
+fun sonneteer_N : N;
+fun sonny_N : N;
+fun sonority_N : N;
+fun sonorous_A : A;
+fun sonsy_A : A;
+fun soochow_PN : PN;
+fun soon_Adv : Adv;
+fun sooner_Adv : Adv;
+fun soonest_Adv : Adv;
+fun soot_N : N;
+fun soot_V2 : V2;
+fun sooth_N : N;
+fun soothe_V2 : V2;
+fun soothingly_Adv : Adv;
+fun soothsayer_N : N;
+fun sooty_A : A;
+fun sop_N : N;
+fun sop_V2 : V2;
+fun sophia_PN : PN;
+fun sophie_PN : PN;
+fun sophism_N : N;
+fun sophist_N : N;
+fun sophisticated_A : A;
+fun sophistication_N : N;
+fun sophistry_N : N;
+fun sophomore_N : N;
+fun soporific_A : A;
+fun soporific_N : N;
+fun sopping_A : A;
+fun sopping_Adv : Adv;
+fun soppy_A : A;
+fun soprano_N : N;
+fun sorbet_N : N;
+fun sorcerer_N : N;
+fun sorceress_N : N;
+fun sorcery_N : N;
+fun sordid_A : A;
+fun sordidness_N : N;
+fun sore_A : A;
+fun sore_N : N;
+fun soreness_N : N;
+fun sorghum_N : N;
+fun sorority_N : N;
+fun sorrel_A : A;
+fun sorrel_N : N;
+fun sorrow_N : N;
+fun sorrow_V : V;
+fun sorrowful_A : A;
+fun sorry_A : A;
+fun sort_N : N;
+fun sort_V : V;
+fun sort_V2 : V2;
+fun sorter_N : N;
+fun sortie_N : N;
+fun sos_N : N;
+fun sot_N : N;
+fun sotho_A : A;
+fun sotho_N : N;
+fun sottish_A : A;
+fun sottishness_N : N;
+fun sotto_voce_Adv : Adv;
+fun sou'_east_Adv : Adv;
+fun sou'_east_N : N;
+fun sou'_sou'_east_Adv : Adv;
+fun sou'_sou'_east_N : N;
+fun sou'_sou'_west_Adv : Adv;
+fun sou'_sou'_west_N : N;
+fun sou'_west_Adv : Adv;
+fun sou'_west_N : N;
+fun sou'_wester_N : N;
+fun sou_N : N;
+fun soubrette_N : N;
+fun soubriquet_N : N;
+fun souffle_N : N;
+fun sough_V : V;
+fun soul_N : N;
+fun soul_destroying_A : A;
+fun soul_stirring_A : A;
+fun soulful_A : A;
+fun soulless_A : A;
+fun sound_A : A;
+fun sound_Adv : Adv;
+fun sound_N : N;
+fun sound_V : V;
+fun sound_V2 : V2;
+fun sound_VA : VA;
+fun sound_VS : VS;
+fun sound_film_N : N;
+fun sound_recording_N : N;
+fun sound_wave_N : N;
+fun soundbox_N : N;
+fun sounding_board_N : N;
+fun soundless_A : A;
+fun soundness_N : N;
+fun soundproof_A : A;
+fun soundproof_V2 : V2;
+fun soundtrack_N : N;
+fun soup_N : N;
+fun soup_V2 : V2;
+fun soup_kitchen_N : N;
+fun soupcon_N : N;
+fun sour_A : A;
+fun sour_V : V;
+fun sour_V2 : V2;
+fun source_N : N;
+fun sourness_N : N;
+fun souse_V2 : V2;
+fun soused_A : A;
+fun soutane_N : N;
+fun south_A : A;
+fun south_Adv : Adv;
+fun south_N : N;
+fun south_kirkby_PN : PN;
+fun south_normantown_PN : PN;
+fun south_ockendon_PN : PN;
+fun south_shields_PN : PN;
+fun south_southeast_Adv : Adv;
+fun south_southeast_N : N;
+fun south_southwest_Adv : Adv;
+fun south_southwest_N : N;
+fun southampton_PN : PN;
+fun southeast_Adv : Adv;
+fun southeast_N : N;
+fun southeaster_N : N;
+fun southeasterly_A : A;
+fun southeastern_A : A;
+fun southend_on_sea_PN : PN;
+fun southerly_A : A;
+fun southerly_Adv : Adv;
+fun southern_A : A;
+fun southerner_N : N;
+fun southernmost_A : A;
+fun southpaw_N : N;
+fun southport_PN : PN;
+fun southward_Adv : Adv;
+fun southwards_Adv : Adv;
+fun southwark_PN : PN;
+fun southwest_Adv : Adv;
+fun southwest_N : N;
+fun southwester_N : N;
+fun southwesterly_A : A;
+fun southwestern_A : A;
+fun souvenir_N : N;
+fun sovereign_A : A;
+fun sovereign_N : N;
+fun sovereignty_N : N;
+fun soviet_A : A;
+fun soviet_N : N;
+fun sovietize_V2 : V2;
+fun sow_N : N;
+fun sow_V : V;
+fun sow_V2 : V2;
+fun sower_N : N;
+fun soy_N : N;
+fun soya_N : N;
+fun sozzled_A : A;
+fun spa_N : N;
+fun space_N : N;
+fun space_V2 : V2;
+fun space_bar_N : N;
+fun space_capsule_N : N;
+fun space_heater_N : N;
+fun space_helmet_N : N;
+fun space_rocket_N : N;
+fun space_time_N : N;
+fun space_vehicle_N : N;
+fun spacecraft_N : N;
+fun spaceship_N : N;
+fun spacesuit_N : N;
+fun spacing_N : N;
+fun spacious_A : A;
+fun spaciousness_N : N;
+fun spade_N : N;
+fun spade_V2 : V2;
+fun spadeful_N : N;
+fun spadework_N : N;
+fun spaghetti_N : N;
+fun spain_PN : PN;
+fun spalding_PN : PN;
+fun spam_N : N;
+fun span_N : N;
+fun span_V2 : V2;
+fun spangle_N : N;
+fun spangle_V2 : V2;
+fun spaniard_N : N;
+fun spaniel_N : N;
+fun spanish_A : A;
+fun spanish_N : N;
+fun spank_V : V;
+fun spank_V2 : V2;
+fun spanking_A : A;
+fun spanking_N : N;
+fun spanner_N : N;
+fun spar_N : N;
+fun spar_V : V;
+fun spare_A : A;
+fun spare_N : N;
+fun spare_V : V;
+fun spare_V2 : V2;
+fun spare_rib_N : N;
+fun spareness_N : N;
+fun sparing_A : A;
+fun spark_N : N;
+fun spark_V : V;
+fun spark_V2 : V2;
+fun spark_plug_N : N;
+fun sparking_plug_N : N;
+fun sparkle_N : N;
+fun sparkle_V : V;
+fun sparkler_N : N;
+fun sparkling_A : A;
+fun sparring_match_N : N;
+fun sparring_partner_N : N;
+fun sparrow_N : N;
+fun sparse_A : A;
+fun sparseness_N : N;
+fun sparsity_N : N;
+fun spartan_A : A;
+fun spartan_N : N;
+fun spasm_N : N;
+fun spasmodic_A : A;
+fun spasmodically_Adv : Adv;
+fun spastic_A : A;
+fun spastic_N : N;
+fun spat_N : N;
+fun spat_V : V;
+fun spat_V2 : V2;
+fun spatchcock_N : N;
+fun spatchcock_V2 : V2;
+fun spate_N : N;
+fun spatial_A : A;
+fun spatter_N : N;
+fun spatter_V : V;
+fun spatter_V2 : V2;
+fun spatula_N : N;
+fun spavin_N : N;
+fun spavined_A : A;
+fun spawn_N : N;
+fun spawn_V : V;
+fun spawn_V2 : V2;
+fun spay_V2 : V2;
+fun speak_V : V;
+fun speak_V2 : V2;
+fun speaker_N : N;
+fun speakership_N : N;
+fun speaking_trumpet_N : N;
+fun speaking_tube_N : N;
+fun spear_N : N;
+fun spear_V2 : V2;
+fun spearhead_N : N;
+fun spearhead_V2 : V2;
+fun spearmint_N : N;
+fun spec_N : N;
+fun special_A : A;
+fun special_N : N;
+fun specialism_N : N;
+fun specialist_N : N;
+fun speciality_N : N;
+fun specialization_N : N;
+fun specialize_V : V;
+fun specialize_V2 : V2;
+fun specialty_N : N;
+fun specie_N : N;
+fun species_N : N;
+fun specifiable_A : A;
+fun specific_A : A;
+fun specific_N : N;
+fun specifically_Adv : Adv;
+fun specification_N : N;
+fun specificity_N : N;
+fun specify_V : V;
+fun specify_V2 : V2;
+fun specify_VS : VS;
+fun specimen_N : N;
+fun specious_A : A;
+fun speciousness_N : N;
+fun speck_N : N;
+fun specked_A : A;
+fun speckle_N : N;
+fun speckled_A : A;
+fun speckless_A : A;
+fun spectacle_N : N;
+fun spectacled_A : A;
+fun spectacular_A : A;
+fun spectacular_N : N;
+fun spectator_N : N;
+fun spectral_A : A;
+fun spectre_N : N;
+fun spectroscope_N : N;
+fun spectroscopic_A : A;
+fun spectrum_N : N;
+fun speculate_V : V;
+fun speculate_VS : VS;
+fun speculation_N : N;
+fun speculative_A : A;
+fun speculator_N : N;
+fun speech_N : N;
+fun speech_day_N : N;
+fun speechify_V : V;
+fun speechless_A : A;
+fun speed_N : N;
+fun speed_V : V;
+fun speed_V2 : V2;
+fun speed_cop_N : N;
+fun speed_indicator_N : N;
+fun speed_limit_N : N;
+fun speed_up_N : N;
+fun speedboat_N : N;
+fun speedily_Adv : Adv;
+fun speeding_N : N;
+fun speedometer_N : N;
+fun speedway_N : N;
+fun speedwell_N : N;
+fun speedy_A : A;
+fun spelaeologist_N : N;
+fun spelaeology_N : N;
+fun speleologist_N : N;
+fun speleology_N : N;
+fun spell_N : N;
+fun spell_V : V;
+fun spell_V2 : V2;
+fun spellbinder_N : N;
+fun spellbound_A : A;
+fun speller_N : N;
+fun spelling_N : N;
+fun spelt_N : N;
+fun spenborough_PN : PN;
+fun spend_V : V;
+fun spend_V2 : V2;
+fun spend_V2V : V2V;
+fun spend_VS : VS;
+fun spender_N : N;
+fun spendthrift_N : N;
+fun spennymoor_PN : PN;
+fun spent_A : A;
+fun sperm_N : N;
+fun sperm_whale_N : N;
+fun spermaceti_N : N;
+fun spermatozoon_N : N;
+fun spermicide_N : N;
+fun spew_V : V;
+fun spew_V2 : V2;
+fun sphagnum_N : N;
+fun sphere_N : N;
+fun spherical_A : A;
+fun spheroid_N : N;
+fun sphinx_N : N;
+fun spice_N : N;
+fun spice_V2 : V2;
+fun spicily_Adv : Adv;
+fun spiciness_N : N;
+fun spick_A : A;
+fun spicy_A : A;
+fun spider_N : N;
+fun spidery_A : A;
+fun spiel_N : N;
+fun spiel_V : V;
+fun spiel_V2 : V2;
+fun spigot_N : N;
+fun spike_N : N;
+fun spike_V2 : V2;
+fun spikenard_N : N;
+fun spiky_A : A;
+fun spill_N : N;
+fun spill_V : V;
+fun spill_V2 : V2;
+fun spillage_N : N;
+fun spillover_N : N;
+fun spillway_N : N;
+fun spin_N : N;
+fun spin_V : V;
+fun spin_V2 : V2;
+fun spin_drier_N : N;
+fun spin_dry_V2 : V2;
+fun spin_off_N : N;
+fun spinach_N : N;
+fun spinal_A : A;
+fun spindle_N : N;
+fun spindle_berry_N : N;
+fun spindle_legged_A : A;
+fun spindle_shanked_A : A;
+fun spindle_shanks_N : N;
+fun spindle_tree_N : N;
+fun spindly_A : A;
+fun spindrift_N : N;
+fun spine_N : N;
+fun spineless_A : A;
+fun spinet_N : N;
+fun spinnaker_N : N;
+fun spinney_N : N;
+fun spinning_wheel_N : N;
+fun spinster_N : N;
+fun spinsterhood_N : N;
+fun spiny_A : A;
+fun spiral_A : A;
+fun spiral_N : N;
+fun spiral_V : V;
+fun spire_N : N;
+fun spirit_N : N;
+fun spirit_V2 : V2;
+fun spirit_lamp_N : N;
+fun spirit_level_N : N;
+fun spirit_rapper_N : N;
+fun spirit_stove_N : N;
+fun spirited_A : A;
+fun spiritless_A : A;
+fun spiritual_A : A;
+fun spiritual_N : N;
+fun spiritualism_N : N;
+fun spiritualist_N : N;
+fun spiritualistic_A : A;
+fun spirituality_N : N;
+fun spiritualization_N : N;
+fun spiritualize_V2 : V2;
+fun spirituous_A : A;
+fun spirt_N : N;
+fun spirt_V : V;
+fun spit_N : N;
+fun spit_V : V;
+fun spit_V2 : V2;
+fun spite_N : N;
+fun spite_V2 : V2;
+fun spiteful_A : A;
+fun spitefulness_N : N;
+fun spitfire_N : N;
+fun spitting_N : N;
+fun spittle_N : N;
+fun spittoon_N : N;
+fun spiv_N : N;
+fun splash_N : N;
+fun splash_V : V;
+fun splash_V2 : V2;
+fun splashdown_N : N;
+fun splay_A : A;
+fun splay_N : N;
+fun splay_V : V;
+fun splay_V2 : V2;
+fun splayfoot_N : N;
+fun splayfooted_A : A;
+fun spleen_N : N;
+fun splendid_A : A;
+fun splendiferous_A : A;
+fun splendour_N : N;
+fun splenetic_A : A;
+fun splice_N : N;
+fun splice_V2 : V2;
+fun splicer_N : N;
+fun splint_N : N;
+fun splinter_N : N;
+fun splinter_V : V;
+fun splinter_V2 : V2;
+fun splinter_proof_A : A;
+fun splintery_A : A;
+fun split_N : N;
+fun split_PN : PN;
+fun split_V : V;
+fun split_V2 : V2;
+fun splodge_N : N;
+fun splosh_V2 : V2;
+fun splotch_N : N;
+fun splurge_N : N;
+fun splurge_V : V;
+fun splutter_N : N;
+fun splutter_V : V;
+fun splutter_V2 : V2;
+fun spode_N : N;
+fun spoil_N : N;
+fun spoil_V : V;
+fun spoil_V2 : V2;
+fun spoilsport_N : N;
+fun spoke_N : N;
+fun spokesman_N : N;
+fun spoliation_N : N;
+fun spondaic_A : A;
+fun spondee_N : N;
+fun sponge_N : N;
+fun sponge_V : V;
+fun sponge_V2 : V2;
+fun sponge_cake_N : N;
+fun sponger_N : N;
+fun sponginess_N : N;
+fun spongy_A : A;
+fun sponsor_N : N;
+fun sponsor_V2 : V2;
+fun sponsorship_N : N;
+fun spontaneity_N : N;
+fun spontaneous_A : A;
+fun spontaneousness_N : N;
+fun spoof_N : N;
+fun spoof_V2 : V2;
+fun spook_N : N;
+fun spook_V2 : V2;
+fun spooky_A : A;
+fun spool_N : N;
+fun spoon_N : N;
+fun spoon_V : V;
+fun spoon_V2 : V2;
+fun spoonerism_N : N;
+fun spoonfeed_V2 : V2;
+fun spoonfeeding_N : N;
+fun spoonful_N : N;
+fun spoor_N : N;
+fun sporadic_A : A;
+fun sporadically_Adv : Adv;
+fun spore_N : N;
+fun sporran_N : N;
+fun sport_N : N;
+fun sport_V : V;
+fun sport_V2 : V2;
+fun sporting_A : A;
+fun sportive_A : A;
+fun sportiveness_N : N;
+fun sports_car_N : N;
+fun sports_coat_N : N;
+fun sports_editor_N : N;
+fun sports_jacket_N : N;
+fun sportsman_N : N;
+fun sportsmanlike_A : A;
+fun sportsmanship_N : N;
+fun spot_N : N;
+fun spot_V : V;
+fun spot_V2 : V2;
+fun spot_VS : VS;
+fun spotless_A : A;
+fun spotlight_N : N;
+fun spotlight_V2 : V2;
+fun spotted_A : A;
+fun spotter_N : N;
+fun spotty_A : A;
+fun spouse_N : N;
+fun spout_N : N;
+fun spout_V : V;
+fun spout_V2 : V2;
+fun sprain_N : N;
+fun sprain_V2 : V2;
+fun sprat_N : N;
+fun sprawl_N : N;
+fun sprawl_V : V;
+fun sprawl_V2 : V2;
+fun spray_N : N;
+fun spray_V2 : V2;
+fun spray_gun_N : N;
+fun sprayer_N : N;
+fun spread_N : N;
+fun spread_V : V;
+fun spread_V2 : V2;
+fun spread_V2V : V2V;
+fun spread_VS : VS;
+fun spread_over_N : N;
+fun spreadeagle_N : N;
+fun spreadeagle_V2 : V2;
+fun spreader_N : N;
+fun spree_N : N;
+fun sprig_N : N;
+fun sprigged_A : A;
+fun sprightliness_N : N;
+fun sprightly_A : A;
+fun spring_N : N;
+fun spring_V : V;
+fun spring_V2 : V2;
+fun spring_balance_N : N;
+fun spring_clean_N : N;
+fun spring_clean_V2 : V2;
+fun spring_cleaning_N : N;
+fun spring_gun_N : N;
+fun spring_mattress_N : N;
+fun springboard_N : N;
+fun springbok_N : N;
+fun springfield_PN : PN;
+fun springless_A : A;
+fun springlike_A : A;
+fun springtide_N : N;
+fun springtime_N : N;
+fun springy_A : A;
+fun sprinkle_V2 : V2;
+fun sprinkler_N : N;
+fun sprinkling_N : N;
+fun sprint_N : N;
+fun sprint_V : V;
+fun sprinter_N : N;
+fun sprit_N : N;
+fun sprite_N : N;
+fun spritsail_N : N;
+fun sprocket_N : N;
+fun sprocket_wheel_N : N;
+fun sprout_N : N;
+fun sprout_V : V;
+fun sprout_V2 : V2;
+fun spruce_A : A;
+fun spruce_N : N;
+fun spruce_V : V;
+fun spruce_V2 : V2;
+fun spruceness_N : N;
+fun spry_A : A;
+fun spud_N : N;
+fun spue_V : V;
+fun spue_V2 : V2;
+fun spume_N : N;
+fun spunk_N : N;
+fun spunky_A : A;
+fun spur_N : N;
+fun spur_V : V;
+fun spur_V2 : V2;
+fun spurious_A : A;
+fun spuriousness_N : N;
+fun spurn_V2 : V2;
+fun spurre_V2V : V2V;
+fun spurt_N : N;
+fun spurt_V : V;
+fun sputnik_N : N;
+fun sputter_V : V;
+fun sputter_V2 : V2;
+fun sputum_N : N;
+fun spy_N : N;
+fun spy_V : V;
+fun spy_V2 : V2;
+fun spy_hole_N : N;
+fun spyglass_N : N;
+fun sq_PN : PN;
+fun squab_N : N;
+fun squabble_N : N;
+fun squabble_V : V;
+fun squad_N : N;
+fun squadron_N : N;
+fun squalid_A : A;
+fun squall_N : N;
+fun squall_V : V;
+fun squally_A : A;
+fun squalor_N : N;
+fun squander_V2 : V2;
+fun squandermania_N : N;
+fun square_A : A;
+fun square_Adv : Adv;
+fun square_N : N;
+fun square_V : V;
+fun square_V2 : V2;
+fun square_bashing_N : N;
+fun square_built_A : A;
+fun square_rigged_A : A;
+fun square_shouldered_A : A;
+fun square_toed_A : A;
+fun square_toes_N : N;
+fun squareness_N : N;
+fun squash_N : N;
+fun squash_V : V;
+fun squash_V2 : V2;
+fun squashy_A : A;
+fun squat_A : A;
+fun squat_V : V;
+fun squatter_N : N;
+fun squaw_N : N;
+fun squawk_N : N;
+fun squawk_V : V;
+fun squawker_N : N;
+fun squeak_N : N;
+fun squeak_V : V;
+fun squeak_V2 : V2;
+fun squeaker_N : N;
+fun squeaky_A : A;
+fun squeal_N : N;
+fun squeal_V : V;
+fun squeal_V2 : V2;
+fun squealer_N : N;
+fun squeamish_A : A;
+fun squeamishness_N : N;
+fun squeegee_N : N;
+fun squeegee_V2 : V2;
+fun squeeze_N : N;
+fun squeeze_V : V;
+fun squeeze_V2 : V2;
+fun squeezer_N : N;
+fun squelch_N : N;
+fun squelch_V : V;
+fun squelch_V2 : V2;
+fun squib_N : N;
+fun squid_N : N;
+fun squiffy_A : A;
+fun squiggle_N : N;
+fun squiggly_A : A;
+fun squint_N : N;
+fun squint_V : V;
+fun squint_eyed_A : A;
+fun squire_N : N;
+fun squire_V2 : V2;
+fun squirearchy_N : N;
+fun squirm_N : N;
+fun squirm_V : V;
+fun squirrel_N : N;
+fun squirt_N : N;
+fun squirt_V : V;
+fun squirt_V2 : V2;
+fun sr_PN : PN;
+fun sri_lanka_PN : PN;
+fun sri_lankan_A : A;
+fun sri_lankan_N : N;
+fun srn_N : N;
+fun ss_N : N;
+fun st_PN : PN;
+fun st_albans_PN : PN;
+fun st_andrews_PN : PN;
+fun st_andrews_major_PN : PN;
+fun st_austell_PN : PN;
+fun st_blazey_PN : PN;
+fun st_helens_PN : PN;
+fun st_ives_PN : PN;
+fun st_louis_PN : PN;
+fun st_neots_PN : PN;
+fun st_paul_PN : PN;
+fun st_petersburg_PN : PN;
+fun st_stephen_PN : PN;
+fun sta_PN : PN;
+fun stab_N : N;
+fun stab_V : V;
+fun stab_V2 : V2;
+fun stabber_N : N;
+fun stability_N : N;
+fun stabilization_N : N;
+fun stabilize_V : V;
+fun stabilize_V2 : V2;
+fun stabilizer_N : N;
+fun stable_A : A;
+fun stable_N : N;
+fun stable_V2 : V2;
+fun stable_companion_N : N;
+fun stableboy_N : N;
+fun stableman_N : N;
+fun stablemate_N : N;
+fun stabling_N : N;
+fun staccato_A : A;
+fun staccato_Adv : Adv;
+fun stack_N : N;
+fun stack_V2 : V2;
+fun stadium_N : N;
+fun staff_N : N;
+fun staff_V2 : V2;
+fun staff_office_N : N;
+fun stafford_PN : PN;
+fun staffordshire_PN : PN;
+fun stag_N : N;
+fun stag_party_N : N;
+fun stage_N : N;
+fun stage_V : V;
+fun stage_V2 : V2;
+fun stage_struck_A : A;
+fun stage_whisper_N : N;
+fun stagecoach_N : N;
+fun stagecraft_N : N;
+fun stager_N : N;
+fun stagflation_N : N;
+fun stagger_N : N;
+fun stagger_V : V;
+fun stagger_V2 : V2;
+fun staggerer_N : N;
+fun staggeringly_Adv : Adv;
+fun staginess_N : N;
+fun staging_N : N;
+fun stagnancy_N : N;
+fun stagnant_A : A;
+fun stagnate_V : V;
+fun stagnation_N : N;
+fun stagy_A : A;
+fun staid_A : A;
+fun staidness_N : N;
+fun stain_N : N;
+fun stain_V : V;
+fun stain_V2 : V2;
+fun stainless_A : A;
+fun stair_N : N;
+fun stair_carpet_N : N;
+fun stair_rod_N : N;
+fun staircase_N : N;
+fun stairway_N : N;
+fun stake_N : N;
+fun stake_V2 : V2;
+fun stake_holder_N : N;
+fun stakeford_PN : PN;
+fun stalactite_N : N;
+fun stalagmite_N : N;
+fun stale_A : A;
+fun stale_V : V;
+fun stalemate_N : N;
+fun stalemate_V2 : V2;
+fun staleness_N : N;
+fun stalk_N : N;
+fun stalk_V : V;
+fun stalk_V2 : V2;
+fun stalker_N : N;
+fun stalking_horse_N : N;
+fun stall_N : N;
+fun stall_V : V;
+fun stall_V2 : V2;
+fun stall_fed_A : A;
+fun stallion_N : N;
+fun stalwart_A : A;
+fun stalwart_N : N;
+fun stalybridge_PN : PN;
+fun stamen_N : N;
+fun stamford_PN : PN;
+fun stamina_N : N;
+fun stammer_N : N;
+fun stammer_V : V;
+fun stammer_V2 : V2;
+fun stammerer_N : N;
+fun stammeringly_Adv : Adv;
+fun stamp_N : N;
+fun stamp_V : V;
+fun stamp_V2 : V2;
+fun stamp_album_N : N;
+fun stamp_collector_N : N;
+fun stamp_dealer_N : N;
+fun stamp_duty_N : N;
+fun stampede_N : N;
+fun stampede_V : V;
+fun stampede_V2 : V2;
+fun stamping_ground_N : N;
+fun stan_PN : PN;
+fun stance_N : N;
+fun stanch_V2 : V2;
+fun stanchion_N : N;
+fun stand_N : N;
+fun stand_V : V;
+fun stand_V2 : V2;
+fun stand_VV : VV;
+fun stand_VS : VS;
+fun stand_in_N : N;
+fun stand_to_N : N;
+fun stand_up_A : A;
+fun standard_A : A;
+fun standard_N : N;
+fun standard_bearer_N : N;
+fun standardization_N : N;
+fun standardize_V2 : V2;
+fun standby_N : N;
+fun standing_A : A;
+fun standing_N : N;
+fun standoffish_A : A;
+fun standoffishness_N : N;
+fun standpipe_N : N;
+fun standpoint_N : N;
+fun standstill_N : N;
+fun stanford_PN : PN;
+fun stanley_PN : PN;
+fun stanza_N : N;
+fun staple_N : N;
+fun staple_V2 : V2;
+fun stapler_N : N;
+fun stapling_machine_N : N;
+fun star_N : N;
+fun star_V : V;
+fun star_V2 : V2;
+fun starboard_N : N;
+fun starboard_V2 : V2;
+fun starch_N : N;
+fun starch_V2 : V2;
+fun starchy_A : A;
+fun stardom_N : N;
+fun stardust_N : N;
+fun stare_N : N;
+fun stare_V : V;
+fun stare_V2 : V2;
+fun starfish_N : N;
+fun stargazer_N : N;
+fun staring_A : A;
+fun staring_Adv : Adv;
+fun stark_A : A;
+fun stark_Adv : Adv;
+fun starkers_A : A;
+fun starless_A : A;
+fun starlet_N : N;
+fun starlight_N : N;
+fun starling_N : N;
+fun starlit_A : A;
+fun starry_A : A;
+fun starry_eyed_A : A;
+fun start_N : N;
+fun start_V : V;
+fun start_V2 : V2;
+fun start_VV : VV;
+fun start_VS : VS;
+fun starter_N : N;
+fun starting_gate_N : N;
+fun starting_point_N : N;
+fun starting_post_N : N;
+fun startle_V2 : V2;
+fun startlingly_Adv : Adv;
+fun starvation_N : N;
+fun starve_V : V;
+fun starve_V2 : V2;
+fun starveling_N : N;
+fun stash_V2 : V2;
+fun state_N : N;
+fun state_V2 : V2;
+fun state_VS : VS;
+fun statecraft_N : N;
+fun stated_A : A;
+fun statehouse_N : N;
+fun stateless_A : A;
+fun stateliness_N : N;
+fun stately_A : A;
+fun statement_N : N;
+fun statesman_N : N;
+fun statesmanlike_A : A;
+fun statesmanship_N : N;
+fun static_A : A;
+fun statically_Adv : Adv;
+fun statics_N : N;
+fun station_N : N;
+fun station_V2 : V2;
+fun station_waggon_N : N;
+fun stationary_A : A;
+fun stationer_N : N;
+fun stationery_N : N;
+fun stationmaster_N : N;
+fun statistic_N : N;
+fun statistical_A : A;
+fun statistician_N : N;
+fun statistics_N : N;
+fun statuary_A : A;
+fun statuary_N : N;
+fun statue_N : N;
+fun statuesque_A : A;
+fun statuette_N : N;
+fun stature_N : N;
+fun status_N : N;
+fun status_quo_N : N;
+fun statute_N : N;
+fun statute_book_N : N;
+fun statutory_A : A;
+fun staunch_A : A;
+fun staunch_V2 : V2;
+fun staunchness_N : N;
+fun stave_N : N;
+fun stave_V : V;
+fun stave_V2 : V2;
+fun stay_N : N;
+fun stay_V : V;
+fun stay_V2 : V2;
+fun stay_VA : VA;
+fun stay_VS : VS;
+fun stay_at_home_N : N;
+fun stayer_N : N;
+fun std_PN : PN;
+fun stead_N : N;
+fun steadfast_A : A;
+fun steadfastness_N : N;
+fun steadily_Adv : Adv;
+fun steadiness_N : N;
+fun steady_A : A;
+fun steady_Adv : Adv;
+fun steady_N : N;
+fun steady_V : V;
+fun steady_V2 : V2;
+fun steak_N : N;
+fun steal_V : V;
+fun steal_V2 : V2;
+fun stealth_N : N;
+fun stealthily_Adv : Adv;
+fun stealthy_A : A;
+fun steam_N : N;
+fun steam_V : V;
+fun steam_V2 : V2;
+fun steam_boiler_N : N;
+fun steam_coal_N : N;
+fun steam_engine_N : N;
+fun steam_heat_N : N;
+fun steam_heat_V2 : V2;
+fun steamboat_N : N;
+fun steamer_N : N;
+fun steamroller_N : N;
+fun steamroller_V2 : V2;
+fun steamship_N : N;
+fun steamy_A : A;
+fun steed_N : N;
+fun steel_N : N;
+fun steel_V2 : V2;
+fun steel_clad_A : A;
+fun steel_plated_A : A;
+fun steelworks_N : N;
+fun steely_A : A;
+fun steelyard_N : N;
+fun steenbok_N : N;
+fun steep_A : A;
+fun steep_V : V;
+fun steep_V2 : V2;
+fun steepen_V : V;
+fun steepen_V2 : V2;
+fun steepish_A : A;
+fun steeple_N : N;
+fun steeplechase_N : N;
+fun steeplechaser_N : N;
+fun steeplejack_N : N;
+fun steepness_N : N;
+fun steer_N : N;
+fun steer_V : V;
+fun steer_V2 : V2;
+fun steerage_N : N;
+fun steerageway_N : N;
+fun steering_gear_N : N;
+fun steering_wheel_N : N;
+fun steersman_N : N;
+fun stele_N : N;
+fun stella_PN : PN;
+fun stellar_A : A;
+fun stem_N : N;
+fun stem_V : V;
+fun stem_V2 : V2;
+fun stemmed_A : A;
+fun sten_PN : PN;
+fun stench_N : N;
+fun stencil_N : N;
+fun stencil_V2 : V2;
+fun stenographer_N : N;
+fun stenography_N : N;
+fun stentorian_A : A;
+fun step_N : N;
+fun step_V : V;
+fun step_V2 : V2;
+fun stepbrother_N : N;
+fun stepchild_N : N;
+fun stepdaughter_N : N;
+fun stepfather_N : N;
+fun stephanie_PN : PN;
+fun stephen_PN : PN;
+fun stepladder_N : N;
+fun stepmother_N : N;
+fun stepparent_N : N;
+fun steppe_N : N;
+fun stepping_stone_N : N;
+fun stepsister_N : N;
+fun stepson_N : N;
+fun stereo_N : N;
+fun stereophonic_A : A;
+fun stereoscope_N : N;
+fun stereoscopic_A : A;
+fun stereotype_N : N;
+fun stereotype_V2 : V2;
+fun sterile_A : A;
+fun sterility_N : N;
+fun sterilization_N : N;
+fun sterilize_V : V;
+fun sterilize_V2 : V2;
+fun sterling_A : A;
+fun sterling_N : N;
+fun stern_A : A;
+fun stern_N : N;
+fun sternness_N : N;
+fun sternum_N : N;
+fun sternwheeler_N : N;
+fun stertorous_A : A;
+fun stethoscope_N : N;
+fun stetson_N : N;
+fun steve_PN : PN;
+fun stevedore_N : N;
+fun steven_PN : PN;
+fun stevenage_PN : PN;
+fun stevenston_PN : PN;
+fun stew_N : N;
+fun stew_V : V;
+fun stew_V2 : V2;
+fun steward_N : N;
+fun stewardess_N : N;
+fun stewardship_N : N;
+fun stewart_PN : PN;
+fun stewed_A : A;
+fun steyning_PN : PN;
+fun stick_N : N;
+fun stick_V : V;
+fun stick_V2 : V2;
+fun stick_in_the_mud_A : A;
+fun stick_in_the_mud_N : N;
+fun stick_on_A : A;
+fun stick_up_N : N;
+fun sticker_N : N;
+fun stickily_Adv : Adv;
+fun stickiness_N : N;
+fun sticking_plaster_N : N;
+fun stickler_N : N;
+fun sticky_A : A;
+fun stiff_A : A;
+fun stiff_Adv : Adv;
+fun stiff_N : N;
+fun stiff_necked_A : A;
+fun stiffen_V : V;
+fun stiffen_V2 : V2;
+fun stiffener_N : N;
+fun stiffening_N : N;
+fun stiffness_N : N;
+fun stifle_V : V;
+fun stifle_V2 : V2;
+fun stigma_N : N;
+fun stigmatize_V2 : V2;
+fun stile_N : N;
+fun stiletto_N : N;
+fun still_A : A;
+fun still_Adv : Adv;
+fun still_N : N;
+fun still_V2 : V2;
+fun still_life_N : N;
+fun still_room_N : N;
+fun stillbirth_N : N;
+fun stillborn_A : A;
+fun stillness_N : N;
+fun stilly_A : A;
+fun stilt_N : N;
+fun stilted_A : A;
+fun stilton_N : N;
+fun stimulant_N : N;
+fun stimulate_V2 : V2;
+fun stimulating_A : A;
+fun stimulation_N : N;
+fun stimulus_N : N;
+fun sting_N : N;
+fun sting_V : V;
+fun sting_V2 : V2;
+fun stinger_N : N;
+fun stingily_Adv : Adv;
+fun stinginess_N : N;
+fun stingless_A : A;
+fun stingray_N : N;
+fun stingy_A : A;
+fun stink_N : N;
+fun stink_V : V;
+fun stink_V2 : V2;
+fun stinker_N : N;
+fun stint_N : N;
+fun stint_V : V;
+fun stint_V2 : V2;
+fun stipend_N : N;
+fun stipendiary_A : A;
+fun stipendiary_N : N;
+fun stipple_V2 : V2;
+fun stipulate_V : V;
+fun stipulate_V2 : V2;
+fun stipulate_VS : VS;
+fun stipulation_N : N;
+fun stir_N : N;
+fun stir_V : V;
+fun stir_V2 : V2;
+fun stirling_PN : PN;
+fun stirring_A : A;
+fun stirrup_N : N;
+fun stirrup_cup_N : N;
+fun stitch_N : N;
+fun stitch_V : V;
+fun stitch_V2 : V2;
+fun stoat_N : N;
+fun stochastic_A : A;
+fun stochastically_Adv : Adv;
+fun stock_N : N;
+fun stock_V2 : V2;
+fun stock_cube_N : N;
+fun stock_farmer_N : N;
+fun stock_in_trade_N : N;
+fun stock_list_N : N;
+fun stock_still_Adv : Adv;
+fun stockade_N : N;
+fun stockade_V2 : V2;
+fun stockbreeder_N : N;
+fun stockbroker_N : N;
+fun stockcar_N : N;
+fun stockfish_N : N;
+fun stockholder_N : N;
+fun stockholding_N : N;
+fun stockholm_PN : PN;
+fun stockily_Adv : Adv;
+fun stockinette_N : N;
+fun stocking_N : N;
+fun stockinged_A : A;
+fun stockist_N : N;
+fun stockjobber_N : N;
+fun stockpile_N : N;
+fun stockpile_V2 : V2;
+fun stockpiling_N : N;
+fun stockport_PN : PN;
+fun stockpot_N : N;
+fun stockroom_N : N;
+fun stocksbridge_PN : PN;
+fun stocktaking_N : N;
+fun stocky_A : A;
+fun stockyard_N : N;
+fun stodge_N : N;
+fun stodginess_N : N;
+fun stodgy_A : A;
+fun stoep_N : N;
+fun stoic_N : N;
+fun stoical_A : A;
+fun stoicism_N : N;
+fun stoke_V : V;
+fun stoke_V2 : V2;
+fun stoke_on_trent_PN : PN;
+fun stokehold_N : N;
+fun stokehole_N : N;
+fun stoker_N : N;
+fun stole_N : N;
+fun stolen_A : A;
+fun stolid_A : A;
+fun stolidity_N : N;
+fun stolidness_N : N;
+fun stomach_N : N;
+fun stomach_V2 : V2;
+fun stomach_ache_N : N;
+fun stomach_pump_N : N;
+fun stomp_N : N;
+fun stomp_V : V;
+fun stomp_V2 : V2;
+fun stone_N : N;
+fun stone_PN : PN;
+fun stone_V2 : V2;
+fun stone_blind_A : A;
+fun stone_cold_A : A;
+fun stone_dead_A : A;
+fun stone_deaf_A : A;
+fun stone_fruit_N : N;
+fun stone_pit_N : N;
+fun stone_sober_A : A;
+fun stonebreaker_N : N;
+fun stoned_A : A;
+fun stonehouse_PN : PN;
+fun stoneless_A : A;
+fun stonemason_N : N;
+fun stonewall_V2 : V2;
+fun stonewaller_N : N;
+fun stonewalling_N : N;
+fun stoneware_N : N;
+fun stonework_N : N;
+fun stonily_Adv : Adv;
+fun stony_A : A;
+fun stony_broke_A : A;
+fun stood_V2V : V2V;
+fun stooge_N : N;
+fun stooge_V : V;
+fun stool_N : N;
+fun stoop_N : N;
+fun stoop_V : V;
+fun stoop_V2 : V2;
+fun stop_N : N;
+fun stop_V : V;
+fun stop_V2 : V2;
+fun stop_VV : VV;
+fun stopcock_N : N;
+fun stopgap_N : N;
+fun stopover_N : N;
+fun stoppage_N : N;
+fun stopper_N : N;
+fun stopping_N : N;
+fun stopwatch_N : N;
+fun storage_N : N;
+fun store_N : N;
+fun store_V2 : V2;
+fun storehouse_N : N;
+fun storeroom_N : N;
+fun storey_N : N;
+fun storeyed_A : A;
+fun storied_A : A;
+fun stork_N : N;
+fun storm_N : N;
+fun storm_V : V;
+fun storm_V2 : V2;
+fun storm_beaten_A : A;
+fun storm_bound_A : A;
+fun storm_centre_N : N;
+fun storm_cloud_N : N;
+fun storm_cone_N : N;
+fun storm_lantern_N : N;
+fun storm_signal_N : N;
+fun storm_tossed_A : A;
+fun storm_trooper_N : N;
+fun stormily_Adv : Adv;
+fun stormproof_A : A;
+fun stormy_A : A;
+fun stornoway_PN : PN;
+fun story_N : N;
+fun storyteller_N : N;
+fun stotfold_PN : PN;
+fun stoup_N : N;
+fun stourbridge_PN : PN;
+fun stourport_on_severn_PN : PN;
+fun stout_A : A;
+fun stout_N : N;
+fun stouthearted_A : A;
+fun stoutness_N : N;
+fun stove_N : N;
+fun stovepipe_N : N;
+fun stow_V2 : V2;
+fun stowaway_N : N;
+fun stowmarket_PN : PN;
+fun straddle_V : V;
+fun straddle_V2 : V2;
+fun strafe_V2 : V2;
+fun straggle_V : V;
+fun straggler_N : N;
+fun straggly_A : A;
+fun straight_A : A;
+fun straight_Adv : Adv;
+fun straight_N : N;
+fun straighten_V : V;
+fun straighten_V2 : V2;
+fun straightforward_A : A;
+fun straightness_N : N;
+fun straightway_Adv : Adv;
+fun strain_N : N;
+fun strain_V : V;
+fun strain_V2 : V2;
+fun strained_A : A;
+fun strainer_N : N;
+fun strait_A : A;
+fun strait_N : N;
+fun strait_laced_A : A;
+fun straiten_V2 : V2;
+fun straitjacket_N : N;
+fun strand_N : N;
+fun strand_V : V;
+fun strand_V2 : V2;
+fun strange_A : A;
+fun strangeness_N : N;
+fun stranger_N : N;
+fun strangle_V2 : V2;
+fun stranglehold_N : N;
+fun strangulation_N : N;
+fun stranraer_PN : PN;
+fun strap_N : N;
+fun strap_V2 : V2;
+fun straphanger_N : N;
+fun strapping_A : A;
+fun strapping_N : N;
+fun strasbourg_PN : PN;
+fun stratagem_N : N;
+fun strategic_A : A;
+fun strategical_A : A;
+fun strategics_N : N;
+fun strategist_N : N;
+fun strategy_N : N;
+fun stratford_on_avon_PN : PN;
+fun strathaven_PN : PN;
+fun strathclyde_PN : PN;
+fun stratification_N : N;
+fun stratify_V : V;
+fun stratify_V2 : V2;
+fun stratosphere_N : N;
+fun stratum_N : N;
+fun straw_N : N;
+fun straw_V2 : V2;
+fun straw_coloured_A : A;
+fun strawberry_N : N;
+fun strawboard_N : N;
+fun stray_N : N;
+fun stray_V : V;
+fun streak_N : N;
+fun streak_V : V;
+fun streak_V2 : V2;
+fun streaky_A : A;
+fun stream_N : N;
+fun stream_V : V;
+fun streamer_N : N;
+fun streamlet_N : N;
+fun streamline_V : V;
+fun streamline_V2 : V2;
+fun streamlined_A : A;
+fun street_N : N;
+fun street_PN : PN;
+fun street_girl_N : N;
+fun street_urchin_N : N;
+fun streetcar_N : N;
+fun streetwalker_N : N;
+fun strength_N : N;
+fun strengthen_V : V;
+fun strengthen_V2 : V2;
+fun strenuous_A : A;
+fun strenuousness_N : N;
+fun streptococcus_N : N;
+fun streptomycin_N : N;
+fun stress_N : N;
+fun stress_V2 : V2;
+fun stress_VS : VS;
+fun stress_mark_N : N;
+fun stretch_N : N;
+fun stretch_V : V;
+fun stretch_V2 : V2;
+fun stretcher_N : N;
+fun stretcher_bearer_N : N;
+fun stretcher_party_N : N;
+fun stretford_PN : PN;
+fun strew_V2 : V2;
+fun striated_A : A;
+fun stricken_A : A;
+fun strict_A : A;
+fun strictness_N : N;
+fun stricture_N : N;
+fun stride_N : N;
+fun stride_V : V;
+fun stride_V2 : V2;
+fun strident_A : A;
+fun stridulate_V : V;
+fun stridulation_N : N;
+fun strife_N : N;
+fun strike_N : N;
+fun strike_V : V;
+fun strike_V2 : V2;
+fun strike_leader_N : N;
+fun strike_pay_N : N;
+fun strikebound_A : A;
+fun strikebreaker_N : N;
+fun striker_N : N;
+fun striking_A : A;
+fun string_N : N;
+fun string_V : V;
+fun string_V2 : V2;
+fun stringency_N : N;
+fun stringent_A : A;
+fun stringy_A : A;
+fun strip_N : N;
+fun strip_V : V;
+fun strip_V2 : V2;
+fun strip_lighting_N : N;
+fun strip_poker_N : N;
+fun strip_show_N : N;
+fun stripe_N : N;
+fun striped_A : A;
+fun stripling_N : N;
+fun stripper_N : N;
+fun striptease_N : N;
+fun stripy_A : A;
+fun strive_V : V;
+fun strive_VV : VV;
+fun striver_N : N;
+fun stroboscope_N : N;
+fun stroke_N : N;
+fun stroke_V2 : V2;
+fun stroll_N : N;
+fun stroll_V : V;
+fun stroller_N : N;
+fun strong_A : A;
+fun strong_arm_A : A;
+fun strong_boned_A : A;
+fun strong_minded_A : A;
+fun strongbox_N : N;
+fun stronghold_N : N;
+fun strongroom_N : N;
+fun strontium_N : N;
+fun strop_N : N;
+fun strop_V2 : V2;
+fun strophe_N : N;
+fun stroppy_A : A;
+fun stroud_PN : PN;
+fun struck_A : A;
+fun structural_A : A;
+fun structure_N : N;
+fun structure_V2 : V2;
+fun structured_A : A;
+fun strudel_N : N;
+fun struggle_N : N;
+fun struggle_V : V;
+fun struggle_VV : VV;
+fun struggle_VS : VS;
+fun strum_N : N;
+fun strum_V : V;
+fun strum_V2 : V2;
+fun strumpet_N : N;
+fun strut_N : N;
+fun strut_V : V;
+fun strychnine_N : N;
+fun stuart_PN : PN;
+fun stub_N : N;
+fun stub_V2 : V2;
+fun stubble_N : N;
+fun stubbly_A : A;
+fun stubborn_A : A;
+fun stubbornness_N : N;
+fun stubby_A : A;
+fun stucco_N : N;
+fun stucco_V2 : V2;
+fun stuck_V2 : V2;
+fun stuck_up_A : A;
+fun stud_N : N;
+fun stud_V2 : V2;
+fun stud_farm_N : N;
+fun stud_mare_N : N;
+fun studbook_N : N;
+fun student_N : N;
+fun studied_A : A;
+fun studio_N : N;
+fun studious_A : A;
+fun studiousness_N : N;
+fun studley_PN : PN;
+fun study_N : N;
+fun study_V : V;
+fun study_V2 : V2;
+fun stuff_N : N;
+fun stuff_V2 : V2;
+fun stuffily_Adv : Adv;
+fun stuffiness_N : N;
+fun stuffing_N : N;
+fun stuffy_A : A;
+fun stultification_N : N;
+fun stultify_V2 : V2;
+fun stumble_N : N;
+fun stumble_V : V;
+fun stumbling_block_N : N;
+fun stump_N : N;
+fun stump_V : V;
+fun stump_V2 : V2;
+fun stumper_N : N;
+fun stumpy_A : A;
+fun stun_V2 : V2;
+fun stunne_V2V : V2V;
+fun stunner_N : N;
+fun stunning_A : A;
+fun stunt_N : N;
+fun stunt_V2 : V2;
+fun stupefaction_N : N;
+fun stupefy_V2 : V2;
+fun stupendous_A : A;
+fun stupid_A : A;
+fun stupid_N : N;
+fun stupidity_N : N;
+fun stupify_V2 : V2;
+fun stupifying_A : A;
+fun stupor_N : N;
+fun sturdily_Adv : Adv;
+fun sturdiness_N : N;
+fun sturdy_A : A;
+fun sturgeon_N : N;
+fun stutter_N : N;
+fun stutter_V : V;
+fun stutter_V2 : V2;
+fun stutterer_N : N;
+fun stutteringly_Adv : Adv;
+fun stuttgart_PN : PN;
+fun sty_N : N;
+fun stye_N : N;
+fun stygian_A : A;
+fun style_N : N;
+fun style_V2 : V2;
+fun stylish_A : A;
+fun stylishness_N : N;
+fun stylist_N : N;
+fun stylistic_A : A;
+fun stylistically_Adv : Adv;
+fun stylization_N : N;
+fun stylize_V2 : V2;
+fun stylus_N : N;
+fun stymie_N : N;
+fun stymie_V2 : V2;
+fun stymy_V2 : V2;
+fun styptic_A : A;
+fun styptic_N : N;
+fun styx_PN : PN;
+fun suasion_N : N;
+fun suave_A : A;
+fun suavity_N : N;
+fun sub_N : N;
+fun sub_V : V;
+fun sub_V2 : V2;
+fun sub_judice_A : A;
+fun sub_rosa_Adv : Adv;
+fun sub_underwrite_V2 : V2;
+fun subaltern_N : N;
+fun subatomic_A : A;
+fun subcommittee_N : N;
+fun subconscious_A : A;
+fun subconscious_N : N;
+fun subconsciousness_N : N;
+fun subcontinent_N : N;
+fun subcontract_N : N;
+fun subcontract_V : V;
+fun subcontract_V2 : V2;
+fun subcontractor_N : N;
+fun subcutaneous_A : A;
+fun subdivide_V : V;
+fun subdivide_V2 : V2;
+fun subdivision_N : N;
+fun subdue_V2 : V2;
+fun subedit_V2 : V2;
+fun subeditor_N : N;
+fun subfusc_A : A;
+fun subgroup_N : N;
+fun subheading_N : N;
+fun subhuman_A : A;
+fun subject_A2 : A2;
+fun subject_N : N;
+fun subject_V2 : V2;
+fun subject_to_Prep : Prep;
+fun subjection_N : N;
+fun subjective_A : A;
+fun subjectivity_N : N;
+fun subjoin_V2 : V2;
+fun subjugate_V2 : V2;
+fun subjugation_N : N;
+fun subjunctive_A : A;
+fun subjunctive_N : N;
+fun sublease_N : N;
+fun sublease_V : V;
+fun sublease_V2 : V2;
+fun sublet_V : V;
+fun sublet_V2 : V2;
+fun sublieutenant_N : N;
+fun sublimate_A : A;
+fun sublimate_N : N;
+fun sublimate_V2 : V2;
+fun sublimation_N : N;
+fun sublime_A : A;
+fun sublime_N : N;
+fun subliminal_A : A;
+fun sublimity_N : N;
+fun submarine_A : A;
+fun submarine_N : N;
+fun submariner_N : N;
+fun submerge_V : V;
+fun submerge_V2 : V2;
+fun submerged_A : A;
+fun submergence_N : N;
+fun submersible_A : A;
+fun submersion_N : N;
+fun submission_N : N;
+fun submissive_A : A;
+fun submissiveness_N : N;
+fun submit_V : V;
+fun submit_V2 : V2;
+fun subnormal_A : A;
+fun subnormal_N : N;
+fun suborbital_A : A;
+fun subordinate_A : A;
+fun subordinate_N : N;
+fun subordinate_V2 : V2;
+fun subordination_N : N;
+fun subordinative_A : A;
+fun suborn_V2 : V2;
+fun subornation_N : N;
+fun subpoena_N : N;
+fun subpoena_V2 : V2;
+fun subscribe_V : V;
+fun subscribe_V2 : V2;
+fun subscriber_N : N;
+fun subscript_N : N;
+fun subscription_N : N;
+fun subsection_N : N;
+fun subsequent_A : A;
+fun subserve_V2 : V2;
+fun subservience_N : N;
+fun subservient_A : A;
+fun subside_V : V;
+fun subsidence_N : N;
+fun subsidiary_A : A;
+fun subsidiary_N : N;
+fun subsidization_N : N;
+fun subsidize_V2 : V2;
+fun subsidy_N : N;
+fun subsist_V : V;
+fun subsistence_N : N;
+fun subsoil_N : N;
+fun subsonic_A : A;
+fun substance_N : N;
+fun substandard_A : A;
+fun substantial_A : A;
+fun substantiate_V2 : V2;
+fun substantiation_N : N;
+fun substantival_A : A;
+fun substantive_A : A;
+fun substantive_N : N;
+fun substation_N : N;
+fun substitute_N : N;
+fun substitute_V : V;
+fun substitute_V2 : V2;
+fun substitution_N : N;
+fun substrate_N : N;
+fun substratum_N : N;
+fun substructure_N : N;
+fun subsume_V2 : V2;
+fun subtend_V2 : V2;
+fun subterfuge_N : N;
+fun subterranean_A : A;
+fun subtitle_N : N;
+fun subtitle_VS : VS;
+fun subtle_A : A;
+fun subtlety_N : N;
+fun subtly_Adv : Adv;
+fun subtopia_N : N;
+fun subtract_V2 : V2;
+fun subtraction_N : N;
+fun subtropical_A : A;
+fun suburb_N : N;
+fun suburban_A : A;
+fun suburbia_N : N;
+fun subvention_N : N;
+fun subversion_N : N;
+fun subversive_A : A;
+fun subversive_N : N;
+fun subvert_V2 : V2;
+fun subway_N : N;
+fun succeed_V : V;
+fun succeed_V2 : V2;
+fun success_N : N;
+fun successful_A : A;
+fun succession_N : N;
+fun successive_A : A;
+fun successor_N : N;
+fun succinct_A : A;
+fun succinctness_N : N;
+fun succour_N : N;
+fun succour_V2 : V2;
+fun succubus_N : N;
+fun succulence_N : N;
+fun succulent_A : A;
+fun succulent_N : N;
+fun succumb_V : V;
+fun such_Predet : Predet;
+fun such_as_Prep : Prep;
+fun suchlike_A : A;
+fun suchow_PN : PN;
+fun suck_N : N;
+fun suck_V : V;
+fun suck_V2 : V2;
+fun sucker_N : N;
+fun sucking_pig_N : N;
+fun suckle_V2 : V2;
+fun suckling_N : N;
+fun suction_N : N;
+fun sudan_PN : PN;
+fun sudanese_A : A;
+fun sudanese_N : N;
+fun sudbury_PN : PN;
+fun sudden_A : A;
+fun sudden_N : N;
+fun suddenness_N : N;
+fun sue_PN : PN;
+fun sue_V : V;
+fun sue_V2 : V2;
+fun sue_V2V : V2V;
+fun suede_N : N;
+fun suet_N : N;
+fun suety_A : A;
+fun suffer_V : V;
+fun suffer_V2 : V2;
+fun sufferable_A : A;
+fun sufferance_N : N;
+fun sufferer_N : N;
+fun suffering_N : N;
+fun suffice_V : V;
+fun suffice_V2 : V2;
+fun suffice_V2V : V2V;
+fun sufficiency_N : N;
+fun sufficient_A : A;
+fun suffix_N : N;
+fun suffocate_V : V;
+fun suffocate_V2 : V2;
+fun suffocation_N : N;
+fun suffolk_PN : PN;
+fun suffragan_N : N;
+fun suffrage_N : N;
+fun suffragette_N : N;
+fun suffuse_V2 : V2;
+fun suffusion_N : N;
+fun sugar_N : N;
+fun sugar_V2 : V2;
+fun sugar_beet_N : N;
+fun sugar_candy_N : N;
+fun sugar_cane_N : N;
+fun sugar_coated_A : A;
+fun sugar_daddy_N : N;
+fun sugar_loaf_N : N;
+fun sugar_refinery_N : N;
+fun sugarlump_N : N;
+fun sugary_A : A;
+fun suggest_V : V;
+fun suggest_V2 : V2;
+fun suggest_VS : VS;
+fun suggestibility_N : N;
+fun suggestible_A : A;
+fun suggestion_N : N;
+fun suggestive_A : A;
+fun suicidal_A : A;
+fun suicide_N : N;
+fun suit_N : N;
+fun suit_V : V;
+fun suit_V2 : V2;
+fun suitability_N : N;
+fun suitable_A : A;
+fun suitableness_N : N;
+fun suitcase_N : N;
+fun suite_N : N;
+fun suiting_N : N;
+fun suitor_N : N;
+fun sulk_N : N;
+fun sulk_V : V;
+fun sulkily_Adv : Adv;
+fun sulkiness_N : N;
+fun sulky_A : A;
+fun sulky_N : N;
+fun sullen_A : A;
+fun sullenness_N : N;
+fun sully_V2 : V2;
+fun sulpha_N : N;
+fun sulphate_N : N;
+fun sulphide_N : N;
+fun sulphur_N : N;
+fun sulphuretted_A : A;
+fun sulphuric_A : A;
+fun sulphurous_A : A;
+fun sultan_N : N;
+fun sultana_N : N;
+fun sultanate_N : N;
+fun sultrily_Adv : Adv;
+fun sultriness_N : N;
+fun sultry_A : A;
+fun sum_N : N;
+fun sum_V : V;
+fun sum_V2 : V2;
+fun sumac_N : N;
+fun sumach_N : N;
+fun sumatra_PN : PN;
+fun sumatran_A : A;
+fun sumatran_N : N;
+fun summarize_V2 : V2;
+fun summary_A : A;
+fun summary_N : N;
+fun summation_N : N;
+fun summer_N : N;
+fun summer_V : V;
+fun summerhouse_N : N;
+fun summertime_N : N;
+fun summery_A : A;
+fun summing_up_N : N;
+fun summit_N : N;
+fun summon_V2 : V2;
+fun summons_N : N;
+fun summons_V2 : V2;
+fun sump_N : N;
+fun sumpter_N : N;
+fun sumptuary_A : A;
+fun sumptuous_A : A;
+fun sumptuousness_N : N;
+fun sun_N : N;
+fun sun_PN : PN;
+fun sun_V2 : V2;
+fun sun_drenched_A : A;
+fun sun_dried_A : A;
+fun sun_god_N : N;
+fun sun_helmet_N : N;
+fun sun_lounge_N : N;
+fun sun_parlour_N : N;
+fun sun_porch_N : N;
+fun sun_up_N : N;
+fun sun_visor_N : N;
+fun sun_worship_N : N;
+fun sunbaked_A : A;
+fun sunbathe_N : N;
+fun sunbathe_V : V;
+fun sunbeam_N : N;
+fun sunblind_N : N;
+fun sunbonnet_N : N;
+fun sunburn_N : N;
+fun sunburned_A : A;
+fun sunburnt_A : A;
+fun sunburst_N : N;
+fun sundae_N : N;
+fun sunday_N : N;
+fun sunday_PN : PN;
+fun sunder_N : N;
+fun sunder_V2 : V2;
+fun sunderland_PN : PN;
+fun sundial_N : N;
+fun sundown_N : N;
+fun sundowner_N : N;
+fun sundry_A : A;
+fun sunfish_N : N;
+fun sunflower_N : N;
+fun sunhat_N : N;
+fun sunlamp_N : N;
+fun sunless_A : A;
+fun sunlight_N : N;
+fun sunlit_A : A;
+fun sunnily_Adv : Adv;
+fun sunny_A : A;
+fun sunray_A : A;
+fun sunrise_N : N;
+fun sunroof_N : N;
+fun sunset_N : N;
+fun sunshade_N : N;
+fun sunshine_N : N;
+fun sunshine_roof_N : N;
+fun sunspot_N : N;
+fun sunstroke_N : N;
+fun suntan_N : N;
+fun suntrap_N : N;
+fun sup_N : N;
+fun sup_V : V;
+fun sup_V2 : V2;
+fun super_A : A;
+fun super_N : N;
+fun superabundance_N : N;
+fun superabundant_A : A;
+fun superannuate_V2 : V2;
+fun superannuated_A : A;
+fun superannuation_N : N;
+fun superb_A : A;
+fun supercargo_N : N;
+fun supercede_V2 : V2;
+fun supercharged_A : A;
+fun supercharger_N : N;
+fun supercilious_A : A;
+fun superciliousness_N : N;
+fun superego_N : N;
+fun supererogation_N : N;
+fun superfatted_A : A;
+fun superficial_A : A;
+fun superficiality_N : N;
+fun superficies_N : N;
+fun superfine_A : A;
+fun superfluity_N : N;
+fun superfluous_A : A;
+fun superhuman_A : A;
+fun superimpose_V2 : V2;
+fun superintend_V : V;
+fun superintend_V2 : V2;
+fun superintendence_N : N;
+fun superintendent_N : N;
+fun superior_A : A;
+fun superior_N : N;
+fun superiority_N : N;
+fun superlative_A : A;
+fun superlative_N : N;
+fun superman_N : N;
+fun supermarket_N : N;
+fun supernal_A : A;
+fun supernatural_A : A;
+fun supernormal_A : A;
+fun supernumerary_N : N;
+fun superscription_N : N;
+fun supersede_V2 : V2;
+fun supersession_N : N;
+fun supersonic_A : A;
+fun superstition_N : N;
+fun superstitious_A : A;
+fun superstructure_N : N;
+fun supertax_N : N;
+fun supervene_V : V;
+fun supervise_V : V;
+fun supervise_V2 : V2;
+fun supervision_N : N;
+fun supervisor_N : N;
+fun supervisory_A : A;
+fun supine_A : A;
+fun supper_N : N;
+fun supperless_A : A;
+fun supplant_V2 : V2;
+fun supplanter_N : N;
+fun supple_A : A;
+fun supplement_N : N;
+fun supplement_V2 : V2;
+fun supplementary_A : A;
+fun suppleness_N : N;
+fun suppliant_A : A;
+fun suppliant_N : N;
+fun supplicant_N : N;
+fun supplicate_V : V;
+fun supplicate_V2 : V2;
+fun supplication_N : N;
+fun supplier_N : N;
+fun supply_N : N;
+fun supply_V2 : V2;
+fun support_N : N;
+fun support_V2 : V2;
+fun supportable_A : A;
+fun supporter_N : N;
+fun suppose_V2 : V2;
+fun suppose_VV : VV;
+fun suppose_VS : VS;
+fun supposed_A : A;
+fun supposition_N : N;
+fun suppository_N : N;
+fun suppress_V2 : V2;
+fun suppression_N : N;
+fun suppressive_A : A;
+fun suppressor_N : N;
+fun suppurate_V : V;
+fun suppuration_N : N;
+fun supra_Adv : Adv;
+fun supranational_A : A;
+fun supremacy_N : N;
+fun supreme_A : A;
+fun supt_PN : PN;
+fun surabaja_PN : PN;
+fun surcharge_N : N;
+fun surcharge_V2 : V2;
+fun surd_N : N;
+fun sure_A : A;
+fun sure_Adv : Adv;
+fun sure_footed_A : A;
+fun sureness_N : N;
+fun surety_N : N;
+fun surf_N : N;
+fun surface_N : N;
+fun surface_V : V;
+fun surface_V2 : V2;
+fun surface_V2V : V2V;
+fun surface_VS : VS;
+fun surface_to_air_A : A;
+fun surfboard_N : N;
+fun surfboat_N : N;
+fun surfeit_N : N;
+fun surfeit_V2 : V2;
+fun surfing_N : N;
+fun surfriding_N : N;
+fun surge_N : N;
+fun surge_V : V;
+fun surge_V2 : V2;
+fun surgeon_N : N;
+fun surgery_N : N;
+fun surgical_A : A;
+fun surlily_Adv : Adv;
+fun surliness_N : N;
+fun surly_A : A;
+fun surmise_N : N;
+fun surmise_V : V;
+fun surmise_V2 : V2;
+fun surmount_V2 : V2;
+fun surmountable_A : A;
+fun surname_N : N;
+fun surpass_V2 : V2;
+fun surpassing_A : A;
+fun surplice_N : N;
+fun surpliced_A : A;
+fun surplus_N : N;
+fun surprise_N : N;
+fun surprise_V2 : V2;
+fun surprise_V2V : V2V;
+fun surprised_A : A;
+fun surprising_A : A;
+fun surrealism_N : N;
+fun surrealist_N : N;
+fun surrealistic_A : A;
+fun surrender_N : N;
+fun surrender_V : V;
+fun surrender_V2 : V2;
+fun surreptitious_A : A;
+fun surrey_PN : PN;
+fun surrogate_A : A;
+fun surrogate_N : N;
+fun surround_N : N;
+fun surround_V2 : V2;
+fun surrounding_A : A;
+fun surtax_N : N;
+fun surtax_V2 : V2;
+fun surveillance_N : N;
+fun survey_N : N;
+fun survey_V2 : V2;
+fun surveying_N : N;
+fun surveyor_N : N;
+fun survival_N : N;
+fun survive_V : V;
+fun survive_V2 : V2;
+fun survive_VS : VS;
+fun survivor_N : N;
+fun susan_PN : PN;
+fun susanna_PN : PN;
+fun susceptibility_N : N;
+fun susceptible_A : A;
+fun susie_PN : PN;
+fun suspect_A : A;
+fun suspect_N : N;
+fun suspect_V2 : V2;
+fun suspect_VS : VS;
+fun suspend_V : V;
+fun suspend_V2 : V2;
+fun suspender_N : N;
+fun suspense_N : N;
+fun suspension_N : N;
+fun suspicion_N : N;
+fun suspicious_A : A;
+fun suss_V2 : V2;
+fun sussex_PN : PN;
+fun sustain_V2 : V2;
+fun sustenance_N : N;
+fun suttee_N : N;
+fun sutton_PN : PN;
+fun sutton_at_hone_PN : PN;
+fun sutton_coldfield_PN : PN;
+fun sutton_in_ashfield_PN : PN;
+fun suture_N : N;
+fun suzanne_PN : PN;
+fun suzerain_N : N;
+fun suzerainty_N : N;
+fun svelte_A : A;
+fun sverdlovsk_PN : PN;
+fun swab_N : N;
+fun swab_V2 : V2;
+fun swaddle_V2 : V2;
+fun swadlincote_PN : PN;
+fun swag_N : N;
+fun swagger_A : A;
+fun swagger_N : N;
+fun swagger_V : V;
+fun swaggerer_N : N;
+fun swahili_N : N;
+fun swain_N : N;
+fun swallow_N : N;
+fun swallow_V : V;
+fun swallow_V2 : V2;
+fun swallow_tailed_A : A;
+fun swami_N : N;
+fun swamp_N : N;
+fun swamp_V2 : V2;
+fun swampy_A : A;
+fun swan's_down_N : N;
+fun swan_N : N;
+fun swan_V : V;
+fun swan_song_N : N;
+fun swanage_PN : PN;
+fun swank_N : N;
+fun swank_V : V;
+fun swanky_A : A;
+fun swanley_PN : PN;
+fun swansea_PN : PN;
+fun swap_N : N;
+fun swap_V : V;
+fun swap_V2 : V2;
+fun sward_N : N;
+fun swarm_N : N;
+fun swarm_V : V;
+fun swarm_V2 : V2;
+fun swarthy_A : A;
+fun swashbuckler_N : N;
+fun swashbuckling_A : A;
+fun swashbuckling_N : N;
+fun swastika_N : N;
+fun swat_N : N;
+fun swat_V2 : V2;
+fun swath_N : N;
+fun swathe_N : N;
+fun swathe_V2 : V2;
+fun sway_N : N;
+fun sway_V : V;
+fun sway_V2 : V2;
+fun swazi_A : A;
+fun swazi_N : N;
+fun swaziland_PN : PN;
+fun swear_V : V;
+fun swear_V2 : V2;
+fun swearer_N : N;
+fun swearing_N : N;
+fun swearword_N : N;
+fun sweat_N : N;
+fun sweat_V : V;
+fun sweat_V2 : V2;
+fun sweatband_N : N;
+fun sweater_N : N;
+fun sweatshop_N : N;
+fun sweaty_A : A;
+fun swede_A : A;
+fun swede_N : N;
+fun sweden_PN : PN;
+fun swedish_A : A;
+fun swedish_N : N;
+fun sweep_N : N;
+fun sweep_V : V;
+fun sweep_V2 : V2;
+fun sweeper_N : N;
+fun sweeping_A : A;
+fun sweeping_N : N;
+fun sweet_A : A;
+fun sweet_N : N;
+fun sweet_scented_A : A;
+fun sweetbread_N : N;
+fun sweetbriar_N : N;
+fun sweetbrier_N : N;
+fun sweeten_V : V;
+fun sweeten_V2 : V2;
+fun sweetening_N : N;
+fun sweetheart_N : N;
+fun sweetie_N : N;
+fun sweetish_A : A;
+fun sweetmeat_N : N;
+fun sweetness_N : N;
+fun swell_A : A;
+fun swell_N : N;
+fun swell_V : V;
+fun swell_V2 : V2;
+fun swelling_N : N;
+fun swelter_V : V;
+fun sweptback_A : A;
+fun swerve_N : N;
+fun swerve_V : V;
+fun swerve_V2 : V2;
+fun swift_A : A;
+fun swift_N : N;
+fun swiftness_N : N;
+fun swig_N : N;
+fun swig_V : V;
+fun swig_V2 : V2;
+fun swill_N : N;
+fun swill_V : V;
+fun swill_V2 : V2;
+fun swim_N : N;
+fun swim_V : V;
+fun swim_V2 : V2;
+fun swimmer_N : N;
+fun swimming_N : N;
+fun swimming_bath_N : N;
+fun swimming_costume_N : N;
+fun swimming_pool_N : N;
+fun swimmingly_Adv : Adv;
+fun swimsuit_N : N;
+fun swindle_N : N;
+fun swindle_V : V;
+fun swindle_V2 : V2;
+fun swindler_N : N;
+fun swindon_PN : PN;
+fun swine_N : N;
+fun swineherd_N : N;
+fun swing_N : N;
+fun swing_V : V;
+fun swing_V2 : V2;
+fun swinge_V2 : V2;
+fun swingeing_A : A;
+fun swinging_A : A;
+fun swinish_A : A;
+fun swinton_PN : PN;
+fun swipe_N : N;
+fun swipe_V2 : V2;
+fun swirl_N : N;
+fun swirl_V : V;
+fun swirl_V2 : V2;
+fun swish_A : A;
+fun swish_N : N;
+fun swish_V : V;
+fun swish_V2 : V2;
+fun swiss_A : A;
+fun swiss_N : N;
+fun switch_N : N;
+fun switch_V : V;
+fun switch_V2 : V2;
+fun switchboard_N : N;
+fun switchman_N : N;
+fun switzerland_PN : PN;
+fun swivel_N : N;
+fun swivel_V : V;
+fun swivel_V2 : V2;
+fun swiz_N : N;
+fun swizzle_N : N;
+fun swizzle_stick_N : N;
+fun swob_N : N;
+fun swob_V2 : V2;
+fun swollen_headed_A : A;
+fun swoon_N : N;
+fun swoon_V : V;
+fun swoop_N : N;
+fun swoop_V : V;
+fun swoop_V2 : V2;
+fun swop_N : N;
+fun swop_V : V;
+fun swop_V2 : V2;
+fun sword_N : N;
+fun sword_cane_N : N;
+fun sword_cut_N : N;
+fun sword_dance_N : N;
+fun swordfish_N : N;
+fun swordplay_N : N;
+fun swordsman_N : N;
+fun swordsmanship_N : N;
+fun swordstick_N : N;
+fun swore_V2V : V2V;
+fun sworn_A : A;
+fun swot_N : N;
+fun swot_V : V;
+fun swot_V2 : V2;
+fun sybarite_N : N;
+fun sybaritic_A : A;
+fun sycamore_N : N;
+fun sycophancy_N : N;
+fun sycophant_N : N;
+fun sycophantic_A : A;
+fun sydney_PN : PN;
+fun syllabary_N : N;
+fun syllabic_A : A;
+fun syllabicate_V2 : V2;
+fun syllabication_N : N;
+fun syllabification_N : N;
+fun syllabify_V2 : V2;
+fun syllabize_V2 : V2;
+fun syllable_N : N;
+fun syllabled_A : A;
+fun syllabus_N : N;
+fun syllogism_N : N;
+fun syllogistic_A : A;
+fun sylph_N : N;
+fun sylph_like_A : A;
+fun sylvan_A : A;
+fun sylvia_PN : PN;
+fun symbiosis_N : N;
+fun symbol_N : N;
+fun symbolic_A : A;
+fun symbolical_A : A;
+fun symbolism_N : N;
+fun symbolization_N : N;
+fun symbolize_V2 : V2;
+fun symmetric_A : A;
+fun symmetrical_A : A;
+fun symmetry_N : N;
+fun sympathetic_A : A;
+fun sympathetically_Adv : Adv;
+fun sympathize_V : V;
+fun sympathizer_N : N;
+fun sympathy_N : N;
+fun symphonic_A : A;
+fun symphony_N : N;
+fun symposium_N : N;
+fun symptom_N : N;
+fun symptomatic_A : A;
+fun symptomatically_Adv : Adv;
+fun symptomless_A : A;
+fun synagogue_N : N;
+fun synchroflash_N : N;
+fun synchromesh_N : N;
+fun synchronization_N : N;
+fun synchronize_V : V;
+fun synchronize_V2 : V2;
+fun synchronous_A : A;
+fun synchrony_N : N;
+fun synchrotron_N : N;
+fun syncopate_V2 : V2;
+fun syncopation_N : N;
+fun syncope_N : N;
+fun syndciate_V2 : V2;
+fun syndic_N : N;
+fun syndicalism_N : N;
+fun syndicalist_N : N;
+fun syndicate_N : N;
+fun syndicate_V2 : V2;
+fun syndication_N : N;
+fun syndrome_N : N;
+fun synod_N : N;
+fun synonym_N : N;
+fun synonymous_A : A;
+fun synopsis_N : N;
+fun synoptic_A : A;
+fun synoptically_Adv : Adv;
+fun syntactic_A : A;
+fun syntactically_Adv : Adv;
+fun syntax_N : N;
+fun synthesis_N : N;
+fun synthesize_V2 : V2;
+fun synthetic_A : A;
+fun synthetic_N : N;
+fun synthetically_Adv : Adv;
+fun syphilis_N : N;
+fun syphilitic_A : A;
+fun syphilitic_N : N;
+fun syphon_N : N;
+fun syphon_V : V;
+fun syphon_V2 : V2;
+fun syracuse_PN : PN;
+fun syria_PN : PN;
+fun syrian_A : A;
+fun syrian_N : N;
+fun syringa_N : N;
+fun syringe_N : N;
+fun syringe_V2 : V2;
+fun syrup_N : N;
+fun syrupy_A : A;
+fun system_N : N;
+fun systematic_A : A;
+fun systematically_Adv : Adv;
+fun systematization_N : N;
+fun systematize_V2 : V2;
+fun syston_PN : PN;
+fun t_junction_N : N;
+fun t_shirt_N : N;
+fun t_square_N : N;
+fun tab_N : N;
+fun tabard_N : N;
+fun tabby_A : A;
+fun tabby_N : N;
+fun tabby_cat_N : N;
+fun tabernacle_N : N;
+fun table_N : N;
+fun table_V2 : V2;
+fun table_d'hote_A : A;
+fun table_d'hote_Adv : Adv;
+fun table_knife_N : N;
+fun table_lifting_N : N;
+fun table_linen_N : N;
+fun table_rapping_N : N;
+fun table_talk_N : N;
+fun table_turning_N : N;
+fun tableau_N : N;
+fun tableau_vivant_N : N;
+fun tablecloth_N : N;
+fun tablemat_N : N;
+fun tablespoon_N : N;
+fun tablespoonful_N : N;
+fun tablet_N : N;
+fun tableware_N : N;
+fun tabloid_N : N;
+fun taboo_A : A;
+fun taboo_N : N;
+fun taboo_V2 : V2;
+fun tabor_N : N;
+fun tabular_A : A;
+fun tabulate_V2 : V2;
+fun tabulation_N : N;
+fun tabulator_N : N;
+fun tachograph_N : N;
+fun tacit_A : A;
+fun taciturn_A : A;
+fun taciturnity_N : N;
+fun tack_N : N;
+fun tack_V : V;
+fun tack_V2 : V2;
+fun tackle_N : N;
+fun tackle_V : V;
+fun tackle_V2 : V2;
+fun tacky_A : A;
+fun tact_N : N;
+fun tactful_A : A;
+fun tactic_N : N;
+fun tactical_A : A;
+fun tactician_N : N;
+fun tactile_A : A;
+fun tactless_A : A;
+fun tactlessness_N : N;
+fun tactual_A : A;
+fun tadley_PN : PN;
+fun tadpole_N : N;
+fun taegu_PN : PN;
+fun taffeta_N : N;
+fun taffrail_N : N;
+fun taffy_N : N;
+fun tag_N : N;
+fun tag_V : V;
+fun tag_V2 : V2;
+fun tag_VS : VS;
+fun tahiti_PN : PN;
+fun tahitian_A : A;
+fun tahitian_N : N;
+fun tail_N : N;
+fun tail_V : V;
+fun tail_V2 : V2;
+fun tail_coat_N : N;
+fun tail_end_N : N;
+fun tail_light_N : N;
+fun tailboard_N : N;
+fun tailed_A : A;
+fun tailgate_N : N;
+fun tailless_A : A;
+fun tailor_N : N;
+fun tailor_V2 : V2;
+fun tailor_made_A : A;
+fun tailpiece_N : N;
+fun tailplane_N : N;
+fun tailspin_N : N;
+fun taint_N : N;
+fun taint_V : V;
+fun taint_V2 : V2;
+fun taintless_A : A;
+fun taipei_PN : PN;
+fun taiwan_PN : PN;
+fun taiwanese_A : A;
+fun taiwanese_N : N;
+fun taiyuan_PN : PN;
+fun take_N : N;
+fun take_V : V;
+fun take_V2 : V2;
+fun take_VA : VA;
+fun take_VS : VS;
+fun take_home_A : A;
+fun take_off_N : N;
+fun take_up_N : N;
+fun takeaway_A : A;
+fun takeover_N : N;
+fun taker_N : N;
+fun taking_A : A;
+fun talc_N : N;
+fun talcum_N : N;
+fun tale_N : N;
+fun tale_bearer_N : N;
+fun tale_teller_N : N;
+fun talent_N : N;
+fun talented_A : A;
+fun talisman_N : N;
+fun talk_N : N;
+fun talk_V : V;
+fun talk_V2 : V2;
+fun talk_VA : VA;
+fun talkative_A : A;
+fun talker_N : N;
+fun talkie_N : N;
+fun talking_point_N : N;
+fun talking_to_N : N;
+fun tall_A : A;
+fun tallboy_N : N;
+fun tallish_A : A;
+fun tallow_N : N;
+fun tally_N : N;
+fun tally_V : V;
+fun tally_V2 : V2;
+fun tally_clerk_N : N;
+fun tallyman_N : N;
+fun talmud_N : N;
+fun talon_N : N;
+fun talus_N : N;
+fun tam_o'_shanter_N : N;
+fun tamable_A : A;
+fun tamale_N : N;
+fun tamarind_N : N;
+fun tamarisk_N : N;
+fun tambour_N : N;
+fun tambourine_N : N;
+fun tame_A : A;
+fun tame_V2 : V2;
+fun tameness_N : N;
+fun tamer_N : N;
+fun tamil_A : A;
+fun tamil_N : N;
+fun tammany_N : N;
+fun tammy_N : N;
+fun tamp_V2 : V2;
+fun tamper_V : V;
+fun tampere_PN : PN;
+fun tamworth_PN : PN;
+fun tan_A : A;
+fun tan_N : N;
+fun tan_V : V;
+fun tan_V2 : V2;
+fun tandem_Adv : Adv;
+fun tandem_N : N;
+fun tang_N : N;
+fun tangent_N : N;
+fun tangerine_A : A;
+fun tangerine_N : N;
+fun tangibility_N : N;
+fun tangible_A : A;
+fun tangle_N : N;
+fun tangle_V : V;
+fun tangle_V2 : V2;
+fun tango_N : N;
+fun tango_V : V;
+fun tangshan_PN : PN;
+fun tangy_A : A;
+fun tank_N : N;
+fun tank_V : V;
+fun tank_car_N : N;
+fun tankard_N : N;
+fun tanker_N : N;
+fun tanner_N : N;
+fun tannery_N : N;
+fun tannic_A : A;
+fun tannin_N : N;
+fun tannoy_N : N;
+fun tansy_N : N;
+fun tantalize_V2 : V2;
+fun tantamount_A : A;
+fun tantrum_N : N;
+fun tanzania_PN : PN;
+fun tanzanian_A : A;
+fun tanzanian_N : N;
+fun tap_N : N;
+fun tap_V : V;
+fun tap_V2 : V2;
+fun tap_dancing_N : N;
+fun tape_N : N;
+fun tape_V : V;
+fun tape_V2 : V2;
+fun tape_measure_N : N;
+fun tape_recorder_N : N;
+fun taper_N : N;
+fun taper_V : V;
+fun taper_V2 : V2;
+fun tapestried_A : A;
+fun tapestry_N : N;
+fun tapeworm_N : N;
+fun tapioca_N : N;
+fun tapir_N : N;
+fun taproom_N : N;
+fun taproot_N : N;
+fun tapster_N : N;
+fun tar_N : N;
+fun tar_V2 : V2;
+fun tar_macadam_N : N;
+fun taradiddle_N : N;
+fun taranaki_PN : PN;
+fun tarantella_N : N;
+fun tarantelle_N : N;
+fun taranto_PN : PN;
+fun tarantula_N : N;
+fun tarboosh_N : N;
+fun tardily_Adv : Adv;
+fun tardiness_N : N;
+fun tardy_A : A;
+fun tare_N : N;
+fun target_N : N;
+fun target_V2 : V2;
+fun target_V2V : V2V;
+fun target_VS : VS;
+fun tariff_N : N;
+fun tarmac_N : N;
+fun tarmac_V2 : V2;
+fun tarn_N : N;
+fun tarnish_N : N;
+fun tarnish_V : V;
+fun tarnish_V2 : V2;
+fun taro_N : N;
+fun tarpaulin_N : N;
+fun tarpon_N : N;
+fun tarradiddle_N : N;
+fun tarragon_N : N;
+fun tarrasa_PN : PN;
+fun tarry_A : A;
+fun tarry_V : V;
+fun tarsal_A : A;
+fun tarsal_N : N;
+fun tarsus_N : N;
+fun tart_A : A;
+fun tart_N : N;
+fun tart_V2 : V2;
+fun tartan_N : N;
+fun tartar_N : N;
+fun tartaric_A : A;
+fun tartness_N : N;
+fun tashkent_PN : PN;
+fun task_N : N;
+fun task_V2 : V2;
+fun task_force_N : N;
+fun taskmaster_N : N;
+fun tasmania_PN : PN;
+fun tassel_N : N;
+fun tasseled_A : A;
+fun tasselled_A : A;
+fun taste_N : N;
+fun taste_V : V;
+fun taste_V2 : V2;
+fun tasteful_A : A;
+fun tasteless_A : A;
+fun taster_N : N;
+fun tastily_Adv : Adv;
+fun tasty_A : A;
+fun tat_N : N;
+fun tat_V : V;
+fun tat_V2 : V2;
+fun tatter_N : N;
+fun tatterdemalion_N : N;
+fun tattered_A : A;
+fun tattily_Adv : Adv;
+fun tatting_N : N;
+fun tattle_N : N;
+fun tattle_V : V;
+fun tattle_V2 : V2;
+fun tattler_N : N;
+fun tattoo_N : N;
+fun tattoo_V2 : V2;
+fun tatty_A : A;
+fun taunt_N : N;
+fun taunt_V2 : V2;
+fun tauntingly_Adv : Adv;
+fun taunton_PN : PN;
+fun taurus_PN : PN;
+fun taut_A : A;
+fun tautness_N : N;
+fun tautological_A : A;
+fun tautology_N : N;
+fun taverham_PN : PN;
+fun tavern_N : N;
+fun tavistock_PN : PN;
+fun tawdrily_Adv : Adv;
+fun tawdriness_N : N;
+fun tawdry_A : A;
+fun tawny_A : A;
+fun tawse_N : N;
+fun tax_N : N;
+fun tax_V2 : V2;
+fun tax_collector_N : N;
+fun tax_free_A : A;
+fun taxability_N : N;
+fun taxable_A : A;
+fun taxation_N : N;
+fun taxi_N : N;
+fun taxi_V : V;
+fun taxi_V2 : V2;
+fun taxicab_N : N;
+fun taxidermist_N : N;
+fun taxidermy_N : N;
+fun taximeter_N : N;
+fun taxonomy_N : N;
+fun taxpayer_N : N;
+fun tayside_PN : PN;
+fun tb_N : N;
+fun tbilisi_PN : PN;
+fun te_deum_N : N;
+fun tea_N : N;
+fun tea_bag_N : N;
+fun tea_break_N : N;
+fun tea_caddy_N : N;
+fun tea_chest_N : N;
+fun tea_cloth_N : N;
+fun tea_cosy_N : N;
+fun tea_garden_N : N;
+fun tea_kettle_N : N;
+fun tea_leaf_N : N;
+fun tea_party_N : N;
+fun tea_service_N : N;
+fun tea_set_N : N;
+fun tea_strainer_N : N;
+fun tea_table_N : N;
+fun tea_time_N : N;
+fun tea_towel_N : N;
+fun tea_tray_N : N;
+fun tea_trolley_N : N;
+fun tea_urn_N : N;
+fun tea_wagon_N : N;
+fun teacake_N : N;
+fun teach_V : V;
+fun teach_V2 : V2;
+fun teach_V2V : V2V;
+fun teach_VS : VS;
+fun teach_in_N : N;
+fun teachable_A : A;
+fun teacher_N : N;
+fun teaching_N : N;
+fun teacup_N : N;
+fun teahouse_N : N;
+fun teak_N : N;
+fun teal_N : N;
+fun team_N : N;
+fun team_V : V;
+fun teamster_N : N;
+fun teamwork_N : N;
+fun teapot_N : N;
+fun tear_N : N;
+fun tear_V : V;
+fun tear_V2 : V2;
+fun tear_drop_N : N;
+fun tear_gas_N : N;
+fun tearaway_A : A;
+fun tearaway_N : N;
+fun tearful_A : A;
+fun tearing_A : A;
+fun tearing_N : N;
+fun tearless_A : A;
+fun tearoom_N : N;
+fun tease_N : N;
+fun tease_V2 : V2;
+fun teasel_N : N;
+fun teaser_N : N;
+fun teashop_N : N;
+fun teasingly_Adv : Adv;
+fun teaspoon_N : N;
+fun teaspoonful_N : N;
+fun teat_N : N;
+fun teazel_N : N;
+fun teazle_N : N;
+fun tec_N : N;
+fun tech_N : N;
+fun technical_A : A;
+fun technicality_N : N;
+fun technician_N : N;
+fun technicolor_N : N;
+fun technique_N : N;
+fun technocracy_N : N;
+fun technocrat_N : N;
+fun technological_A : A;
+fun technologist_N : N;
+fun technology_N : N;
+fun techy_A : A;
+fun ted_N : N;
+fun ted_PN : PN;
+fun teddy_N : N;
+fun teddy_PN : PN;
+fun teddy_boy_N : N;
+fun tedious_A : A;
+fun tediousness_N : N;
+fun tedium_N : N;
+fun tee_N : N;
+fun tee_V : V;
+fun tee_V2 : V2;
+fun tee_shirt_N : N;
+fun teem_V : V;
+fun teenage_A : A;
+fun teenager_N : N;
+fun teeny_A : A;
+fun teesside_PN : PN;
+fun teeter_V : V;
+fun teethe_V : V;
+fun teetotal_A : A;
+fun teetotaller_N : N;
+fun teetotum_N : N;
+fun teg_N : N;
+fun tegument_N : N;
+fun teheran_PN : PN;
+fun teignmouth_PN : PN;
+fun tel_PN : PN;
+fun tel_aviv_PN : PN;
+fun telecast_N : N;
+fun telecast_V2 : V2;
+fun telecommunication_N : N;
+fun telegram_N : N;
+fun telegraph_N : N;
+fun telegraph_V : V;
+fun telegraph_V2 : V2;
+fun telegraph_line_N : N;
+fun telegraph_pole_N : N;
+fun telegraph_post_N : N;
+fun telegraph_wire_N : N;
+fun telegrapher_N : N;
+fun telegraphese_N : N;
+fun telegraphic_A : A;
+fun telegraphically_Adv : Adv;
+fun telegraphist_N : N;
+fun telegraphy_N : N;
+fun telemetry_N : N;
+fun teleological_A : A;
+fun teleologist_N : N;
+fun teleology_N : N;
+fun telepathic_A : A;
+fun telepathist_N : N;
+fun telepathy_N : N;
+fun telephone_N : N;
+fun telephone_V : V;
+fun telephone_V2 : V2;
+fun telephonic_A : A;
+fun telephonist_N : N;
+fun telephony_N : N;
+fun telephoto_N : N;
+fun telephotograph_N : N;
+fun telephotography_N : N;
+fun teleprinter_N : N;
+fun teleprompter_N : N;
+fun telescope_N : N;
+fun telescope_V : V;
+fun telescope_V2 : V2;
+fun telescopic_A : A;
+fun telescopically_Adv : Adv;
+fun teletypewriter_N : N;
+fun televise_V2 : V2;
+fun television_N : N;
+fun telex_N : N;
+fun telfer_N : N;
+fun telford_PN : PN;
+fun tell_V : V;
+fun tell_V2 : V2;
+fun tell_V2V : V2V;
+fun tell_VV : VV;
+fun tell_VS : VS;
+fun teller_N : N;
+fun telling_A : A;
+fun telltale_N : N;
+fun telly_N : N;
+fun telpher_N : N;
+fun telstar_PN : PN;
+fun temerity_N : N;
+fun temp_N : N;
+fun temper_N : N;
+fun temper_V : V;
+fun temper_V2 : V2;
+fun tempera_N : N;
+fun temperament_N : N;
+fun temperamental_A : A;
+fun temperance_N : N;
+fun temperate_A : A;
+fun temperateness_N : N;
+fun temperature_N : N;
+fun tempered_A : A;
+fun tempest_N : N;
+fun tempest_swept_A : A;
+fun tempest_tossed_A : A;
+fun tempestuous_A : A;
+fun template_N : N;
+fun temple_N : N;
+fun templet_N : N;
+fun tempo_N : N;
+fun temporal_A : A;
+fun temporality_N : N;
+fun temporalty_N : N;
+fun temporariness_N : N;
+fun temporary_A : A;
+fun temporize_V : V;
+fun tempt_V2 : V2;
+fun tempt_V2V : V2V;
+fun temptation_N : N;
+fun tempter_N : N;
+fun temptingly_Adv : Adv;
+fun temptress_N : N;
+fun tenability_N : N;
+fun tenable_A : A;
+fun tenacious_A : A;
+fun tenaciousness_N : N;
+fun tenacity_N : N;
+fun tenancy_N : N;
+fun tenant_N : N;
+fun tenant_V2 : V2;
+fun tenantry_N : N;
+fun tenby_PN : PN;
+fun tench_N : N;
+fun tend_V : V;
+fun tend_V2 : V2;
+fun tend_VV : VV;
+fun tendency_N : N;
+fun tendentious_A : A;
+fun tendentiousness_N : N;
+fun tender_A : A;
+fun tender_N : N;
+fun tender_V : V;
+fun tender_V2 : V2;
+fun tender_V2V : V2V;
+fun tenderfoot_N : N;
+fun tenderhearted_A : A;
+fun tenderloin_N : N;
+fun tenderness_N : N;
+fun tendon_N : N;
+fun tendril_N : N;
+fun tenement_N : N;
+fun tenement_house_N : N;
+fun tenet_N : N;
+fun tenfold_Adv : Adv;
+fun tenner_N : N;
+fun tennessee_PN : PN;
+fun tennis_N : N;
+fun tennis_court_N : N;
+fun tennis_elbow_N : N;
+fun tenon_N : N;
+fun tenor_N : N;
+fun tenpence_N : N;
+fun tenpin_N : N;
+fun tense_A : A;
+fun tense_N : N;
+fun tense_V : V;
+fun tense_V2 : V2;
+fun tenseness_N : N;
+fun tensile_A : A;
+fun tension_N : N;
+fun tensity_N : N;
+fun tent_N : N;
+fun tent_peg_N : N;
+fun tentacle_N : N;
+fun tentative_A : A;
+fun tenterden_PN : PN;
+fun tenth_A : A;
+fun tenth_N : N;
+fun tenuity_N : N;
+fun tenuous_A : A;
+fun tenure_N : N;
+fun tepee_N : N;
+fun tepid_A : A;
+fun tepidity_N : N;
+fun tepidness_N : N;
+fun tercentenary_N : N;
+fun tercentennial_N : N;
+fun terence_PN : PN;
+fun teresa_PN : PN;
+fun tergiversate_V : V;
+fun tergiversation_N : N;
+fun term_N : N;
+fun term_V2 : V2;
+fun term_VS : VS;
+fun termagant_N : N;
+fun termi_PN : PN;
+fun terminable_A : A;
+fun terminal_A : A;
+fun terminal_N : N;
+fun terminate_V : V;
+fun terminate_V2 : V2;
+fun termination_N : N;
+fun terminological_A : A;
+fun terminology_N : N;
+fun terminus_N : N;
+fun termite_N : N;
+fun tern_N : N;
+fun terpsichorean_A : A;
+fun terr_PN : PN;
+fun terra_cotta_N : N;
+fun terra_firma_N : N;
+fun terra_incognita_N : N;
+fun terrace_N : N;
+fun terrace_V2 : V2;
+fun terrain_N : N;
+fun terrapin_N : N;
+fun terrestrial_A : A;
+fun terrible_A : A;
+fun terrier_N : N;
+fun terrific_A : A;
+fun terrifically_Adv : Adv;
+fun terrify_V2 : V2;
+fun territorial_A : A;
+fun territorial_N : N;
+fun territory_N : N;
+fun terror_N : N;
+fun terror_stricken_A : A;
+fun terror_struck_A : A;
+fun terrorism_N : N;
+fun terrorist_N : N;
+fun terrorize_V2 : V2;
+fun terry_PN : PN;
+fun terse_A : A;
+fun terseness_N : N;
+fun tertian_A : A;
+fun tertiary_A : A;
+fun terylene_N : N;
+fun tess_PN : PN;
+fun tessa_PN : PN;
+fun tessellated_A : A;
+fun test_N : N;
+fun test_V2 : V2;
+fun test_drive_N : N;
+fun test_drive_V2 : V2;
+fun test_tube_N : N;
+fun testament_N : N;
+fun testamentary_A : A;
+fun testate_A : A;
+fun testate_N : N;
+fun testator_N : N;
+fun testatrix_N : N;
+fun testbed_N : N;
+fun testicle_N : N;
+fun testify_V : V;
+fun testify_V2 : V2;
+fun testify_VS : VS;
+fun testily_Adv : Adv;
+fun testimonial_N : N;
+fun testimony_N : N;
+fun testiness_N : N;
+fun testis_N : N;
+fun testy_A : A;
+fun tetanus_N : N;
+fun tetchily_Adv : Adv;
+fun tetchiness_N : N;
+fun tetchy_A : A;
+fun tete_a_tete_Adv : Adv;
+fun tete_a_tete_N : N;
+fun tether_N : N;
+fun tether_V2 : V2;
+fun teuton_N : N;
+fun teutonic_A : A;
+fun tewkesbury_PN : PN;
+fun texan_A : A;
+fun texan_N : N;
+fun texas_PN : PN;
+fun text_N : N;
+fun textbook_N : N;
+fun textile_A : A;
+fun textile_N : N;
+fun textual_A : A;
+fun texture_N : N;
+fun textured_A : A;
+fun thai_A : A;
+fun thai_N : N;
+fun thailand_PN : PN;
+fun thalidomide_N : N;
+fun thame_PN : PN;
+fun than_Prep : Prep ;
+fun thane_N : N;
+fun thank_V2 : V2;
+fun thank_offering_N : N;
+fun thankful_A : A;
+fun thankfulness_N : N;
+fun thankless_A : A;
+fun thanksgiving_N : N;
+fun that_Prep : Prep;
+fun that_Quant : Quant;
+fun thatch_N : N;
+fun thatch_V2 : V2;
+fun thatcham_PN : PN;
+fun thatcher_N : N;
+fun thaw_N : N;
+fun thaw_V : V;
+fun thaw_V2 : V2;
+fun theatre_N : N;
+fun theatregoer_N : N;
+fun theatrical_A : A;
+fun theatrical_N : N;
+fun theft_N : N;
+fun theism_N : N;
+fun theist_N : N;
+fun theistic_A : A;
+fun theistical_A : A;
+fun thematic_A : A;
+fun theme_N : N;
+fun then_Adv : Adv;
+fun then_Prep : Prep ;
+fun thence_Adv : Adv;
+fun thenceforth_Adv : Adv;
+fun thenceforward_Adv : Adv;
+fun theo_PN : PN;
+fun theocracy_N : N;
+fun theocratic_A : A;
+fun theodolite_N : N;
+fun theodore_PN : PN;
+fun theologian_N : N;
+fun theological_A : A;
+fun theology_N : N;
+fun theorem_N : N;
+fun theoretic_A : A;
+fun theoretical_A : A;
+fun theoretician_N : N;
+fun theorist_N : N;
+fun theorize_V : V;
+fun theorize_VS : VS;
+fun theory_N : N;
+fun theosophical_A : A;
+fun theosophist_N : N;
+fun theosophy_N : N;
+fun therapeutic_A : A;
+fun therapeutical_A : A;
+fun therapeutics_N : N;
+fun therapist_N : N;
+fun therapy_N : N;
+fun thereabout_Adv : Adv;
+fun thereabouts_Adv : Adv;
+fun thereafter_Adv : Adv;
+fun thereby_Adv : Adv;
+fun therefore_Adv : Adv;
+fun therefrom_Adv : Adv;
+fun therein_Adv : Adv;
+fun thereinafter_Adv : Adv;
+fun thereof_Adv : Adv;
+fun thereon_Adv : Adv;
+fun theresa_PN : PN;
+fun thereto_Adv : Adv;
+fun thereunder_Adv : Adv;
+fun thereupon_Adv : Adv;
+fun therewith_Adv : Adv;
+fun therewithal_Adv : Adv;
+fun therm_N : N;
+fun thermal_A : A;
+fun thermal_N : N;
+fun thermionic_A : A;
+fun thermodynamics_N : N;
+fun thermometer_N : N;
+fun thermonuclear_A : A;
+fun thermoplastic_A : A;
+fun thermoplastic_N : N;
+fun thermos_N : N;
+fun thermosetting_A : A;
+fun thermostat_N : N;
+fun thermostatic_A : A;
+fun thermostatically_Adv : Adv;
+fun thesaurus_N : N;
+fun thesis_N : N;
+fun thespian_A : A;
+fun thespian_N : N;
+fun thessaloniki_PN : PN;
+fun thetford_PN : PN;
+fun they_Pron : Pron;
+fun thick_A : A;
+fun thick_Adv : Adv;
+fun thick_N : N;
+fun thick_headed_A : A;
+fun thick_set_A : A;
+fun thick_skinned_A : A;
+fun thicken_V : V;
+fun thicken_V2 : V2;
+fun thickening_N : N;
+fun thicket_N : N;
+fun thickness_N : N;
+fun thief_N : N;
+fun thieve_V : V;
+fun thieve_V2 : V2;
+fun thievery_N : N;
+fun thievish_A : A;
+fun thigh_N : N;
+fun thighbone_N : N;
+fun thimble_N : N;
+fun thimbleful_N : N;
+fun thin_A : A;
+fun thin_Adv : Adv;
+fun thin_V : V;
+fun thin_V2 : V2;
+fun thin_skinned_A : A;
+fun thine_A : A;
+fun thing_N : N;
+fun thingmabob_N : N;
+fun thingmajig_N : N;
+fun thingumabob_N : N;
+fun thingumajig_N : N;
+fun thingummy_N : N;
+fun think_N : N;
+fun think_V : V;
+fun think_V2 : V2;
+fun think_VA : VA;
+fun think_VS : VS;
+fun think_tank_N : N;
+fun thinkable_A : A;
+fun thinker_N : N;
+fun thinking_A : A;
+fun thinking_N : N;
+fun thinness_N : N;
+fun thionville_PN : PN;
+fun third_rate_A : A;
+fun third_rater_N : N;
+fun thirsk_PN : PN;
+fun thirst_N : N;
+fun thirst_V2 : V2;
+fun thirstily_Adv : Adv;
+fun thirsty_A : A;
+fun this_Quant : Quant;
+fun thistle_N : N;
+fun thistledown_N : N;
+fun thither_Adv : Adv;
+fun tho'_Adv : Adv;
+fun thole_N : N;
+fun tholepin_N : N;
+fun thomas_PN : PN;
+fun thong_N : N;
+fun thorax_N : N;
+fun thorn_N : N;
+fun thornbury_PN : PN;
+fun thorne_PN : PN;
+fun thorny_A : A;
+fun thorough_A : A;
+fun thoroughbred_A : A;
+fun thoroughbred_N : N;
+fun thoroughfare_N : N;
+fun thoroughgoing_A : A;
+fun thoroughness_N : N;
+fun though_Adv : Adv;
+fun though_Prep : Prep ;
+fun thought_N : N;
+fun thought_reader_N : N;
+fun thoughtful_A : A;
+fun thoughtfulness_N : N;
+fun thoughtless_A : A;
+fun thoughtlessness_N : N;
+fun thousandfold_A : A;
+fun thousandfold_Adv : Adv;
+fun thousandth_A : A;
+fun thousandth_N : N;
+fun thraldom_N : N;
+fun thrall_N : N;
+fun thrash_V : V;
+fun thrash_V2 : V2;
+fun thrashing_N : N;
+fun thread_N : N;
+fun thread_V2 : V2;
+fun threadbare_A : A;
+fun threadlike_A : A;
+fun threat_N : N;
+fun threaten_V : V;
+fun threaten_V2 : V2;
+fun threaten_VV : VV;
+fun threaten_VS : VS;
+fun threateningly_Adv : Adv;
+fun three_cornered_A : A;
+fun three_d_A : A;
+fun three_d_N : N;
+fun three_decker_N : N;
+fun three_dimensional_A : A;
+fun three_figure_A : A;
+fun three_funnelled_A : A;
+fun three_lane_A : A;
+fun three_legged_A : A;
+fun three_piece_A : A;
+fun three_ply_A : A;
+fun three_quarter_A : A;
+fun three_quarter_N : N;
+fun three_score_A : A;
+fun three_score_N : N;
+fun three_storey_A : A;
+fun three_storeyed_A : A;
+fun three_wheeled_A : A;
+fun threefold_A : A;
+fun threefold_Adv : Adv;
+fun threepence_N : N;
+fun threepenny_A : A;
+fun threesome_N : N;
+fun threnody_N : N;
+fun thresh_V : V;
+fun thresh_V2 : V2;
+fun thresher_N : N;
+fun threshing_floor_N : N;
+fun threshing_machine_N : N;
+fun threshold_N : N;
+fun thrice_Adv : Adv;
+fun thrift_N : N;
+fun thriftily_Adv : Adv;
+fun thriftless_A : A;
+fun thriftlessness_N : N;
+fun thrifty_A : A;
+fun thrill_N : N;
+fun thrill_V : V;
+fun thrill_V2 : V2;
+fun thriller_N : N;
+fun thrive_V : V;
+fun throat_N : N;
+fun throated_A : A;
+fun throaty_A : A;
+fun throb_N : N;
+fun throb_V : V;
+fun throbbing_A : A;
+fun throe_N : N;
+fun thrombosis_N : N;
+fun throne_N : N;
+fun throng_N : N;
+fun throng_V : V;
+fun throng_V2 : V2;
+fun throstle_N : N;
+fun throttle_N : N;
+fun throttle_V : V;
+fun throttle_V2 : V2;
+fun throttle_valve_N : N;
+fun through_Adv : Adv;
+fun through_Prep : Prep ;
+fun throughout_Adv : Adv;
+fun throughout_Prep : Prep ;
+fun throughput_N : N;
+fun throughway_N : N;
+fun throw_N : N;
+fun throw_V : V;
+fun throw_V2 : V2;
+fun throw_VS : VS;
+fun throw_in_N : N;
+fun throwaway_N : N;
+fun throwback_N : N;
+fun thrum_V : V;
+fun thrum_V2 : V2;
+fun thrush_N : N;
+fun thrust_N : N;
+fun thrust_V : V;
+fun thrust_V2 : V2;
+fun thruster_N : N;
+fun thud_N : N;
+fun thud_V : V;
+fun thug_N : N;
+fun thuggery_N : N;
+fun thumb_N : N;
+fun thumb_V2 : V2;
+fun thumbnut_N : N;
+fun thumbscrew_N : N;
+fun thumbstall_N : N;
+fun thumbtack_N : N;
+fun thump_N : N;
+fun thump_V : V;
+fun thump_V2 : V2;
+fun thumping_A : A;
+fun thunder_N : N;
+fun thunder_V : V;
+fun thunder_V2 : V2;
+fun thunderbolt_N : N;
+fun thunderclap_N : N;
+fun thunderous_A : A;
+fun thunderstorm_N : N;
+fun thunderstruck_A : A;
+fun thundery_A : A;
+fun thurcroft_PN : PN;
+fun thurible_N : N;
+fun thurmaston_PN : PN;
+fun thurrock_PN : PN;
+fun thurs_PN : PN;
+fun thursday_N : N;
+fun thursday_PN : PN;
+fun thurso_PN : PN;
+fun thus_Adv : Adv;
+fun thwack_N : N;
+fun thwack_V2 : V2;
+fun thwart_N : N;
+fun thwart_V2 : V2;
+fun thy_A : A;
+fun thyme_N : N;
+fun thyroid_N : N;
+fun ti_N : N;
+fun tiara_N : N;
+fun tibet_PN : PN;
+fun tibetan_A : A;
+fun tibetan_N : N;
+fun tibia_N : N;
+fun tic_N : N;
+fun tick_N : N;
+fun tick_V : V;
+fun tick_V2 : V2;
+fun tick_tock_N : N;
+fun ticker_N : N;
+fun ticker_tape_N : N;
+fun ticket_N : N;
+fun ticket_V2 : V2;
+fun ticket_collector_N : N;
+fun ticking_N : N;
+fun tickle_V : V;
+fun tickle_V2 : V2;
+fun tickler_N : N;
+fun ticklish_A : A;
+fun tidal_A : A;
+fun tidbit_N : N;
+fun tiddler_N : N;
+fun tiddley_A : A;
+fun tiddlywinks_N : N;
+fun tide_N : N;
+fun tide_V2 : V2;
+fun tidemark_N : N;
+fun tideway_N : N;
+fun tidily_Adv : Adv;
+fun tidiness_N : N;
+fun tidworth_PN : PN;
+fun tidy_A : A;
+fun tidy_N : N;
+fun tidy_V : V;
+fun tidy_V2 : V2;
+fun tie_N : N;
+fun tie_V : V;
+fun tie_V2 : V2;
+fun tie_on_A : A;
+fun tie_up_N : N;
+fun tientsin_PN : PN;
+fun tier_N : N;
+fun tiff_N : N;
+fun tiger_N : N;
+fun tiger_lily_N : N;
+fun tigerish_A : A;
+fun tight_A : A;
+fun tight_Adv : Adv;
+fun tight_laced_A : A;
+fun tight_lipped_A : A;
+fun tight_wad_N : N;
+fun tighten_V : V;
+fun tighten_V2 : V2;
+fun tightness_N : N;
+fun tightrope_N : N;
+fun tigress_N : N;
+fun tike_N : N;
+fun til_Prep : Prep ;
+fun tilburg_PN : PN;
+fun tilbury_PN : PN;
+fun tilde_N : N;
+fun tile_N : N;
+fun tile_V2 : V2;
+fun till_N : N;
+fun till_Prep : Prep ;
+fun till_V2 : V2;
+fun tillage_N : N;
+fun tiller_N : N;
+fun tilt_N : N;
+fun tilt_V : V;
+fun tilt_V2 : V2;
+fun tilth_N : N;
+fun tiltyard_N : N;
+fun tim_PN : PN;
+fun timber_N : N;
+fun timbered_A : A;
+fun timbre_N : N;
+fun timbrel_N : N;
+fun time_N : N;
+fun time_V2 : V2;
+fun time_ball_N : N;
+fun time_bomb_N : N;
+fun time_expired_A : A;
+fun time_exposure_N : N;
+fun time_fuse_N : N;
+fun time_honoured_A : A;
+fun time_lag_N : N;
+fun time_limit_N : N;
+fun time_sheet_N : N;
+fun time_signal_N : N;
+fun time_switch_N : N;
+fun timecard_N : N;
+fun timekeeper_N : N;
+fun timekeeping_N : N;
+fun timeless_A : A;
+fun timeliness_N : N;
+fun timely_A : A;
+fun timepiece_N : N;
+fun timesaving_A : A;
+fun timeserver_N : N;
+fun timeserving_A : A;
+fun timetable_N : N;
+fun timework_N : N;
+fun timid_A : A;
+fun timidity_N : N;
+fun timidness_N : N;
+fun timing_N : N;
+fun timmy_PN : PN;
+fun timorous_A : A;
+fun timothy_N : N;
+fun timothy_PN : PN;
+fun timpanist_N : N;
+fun tin_N : N;
+fun tin_V2 : V2;
+fun tin_opener_N : N;
+fun tin_pan_alley_N : N;
+fun tin_plate_N : N;
+fun tina_PN : PN;
+fun tincture_N : N;
+fun tincture_V2 : V2;
+fun tinder_N : N;
+fun tinderbox_N : N;
+fun tine_N : N;
+fun tined_A : A;
+fun tinfoil_N : N;
+fun ting_N : N;
+fun ting_V : V;
+fun ting_V2 : V2;
+fun tinge_N : N;
+fun tinge_V2 : V2;
+fun tingle_N : N;
+fun tingle_V : V;
+fun tinker_N : N;
+fun tinker_V : V;
+fun tinkle_N : N;
+fun tinkle_V : V;
+fun tinkle_V2 : V2;
+fun tinny_A : A;
+fun tinsel_N : N;
+fun tinsel_V2 : V2;
+fun tinselly_A : A;
+fun tinsmith_N : N;
+fun tint_N : N;
+fun tint_V2 : V2;
+fun tintack_N : N;
+fun tintinnabulation_N : N;
+fun tiny_A : A;
+fun tip_N : N;
+fun tip_V : V;
+fun tip_V2 : V2;
+fun tip_and_run_A : A;
+fun tip_off_N : N;
+fun tip_top_A : A;
+fun tip_top_Adv : Adv;
+fun tip_up_A : A;
+fun tipperary_PN : PN;
+fun tippet_N : N;
+fun tipple_N : N;
+fun tipple_V : V;
+fun tipple_V2 : V2;
+fun tippler_N : N;
+fun tipstaff_N : N;
+fun tipster_N : N;
+fun tipsy_A : A;
+fun tiptoe_Adv : Adv;
+fun tiptoe_V : V;
+fun tirade_N : N;
+fun tire_N : N;
+fun tire_V : V;
+fun tire_V2 : V2;
+fun tired_A : A;
+fun tiredness_N : N;
+fun tireless_A : A;
+fun tiresome_A : A;
+fun tiring_Adv : Adv;
+fun tiro_N : N;
+fun tissue_N : N;
+fun tit_N : N;
+fun titan_N : N;
+fun titanic_A : A;
+fun titbit_N : N;
+fun tithe_N : N;
+fun tithe_barn_N : N;
+fun titillate_V2 : V2;
+fun titillation_N : N;
+fun titivate_V : V;
+fun titivate_V2 : V2;
+fun titlark_N : N;
+fun title_N : N;
+fun title_VS : VS;
+fun title_deed_N : N;
+fun title_page_N : N;
+fun title_role_N : N;
+fun titled_A : A;
+fun titmouse_N : N;
+fun titter_V : V;
+fun tittivate_V : V;
+fun tittivate_V2 : V2;
+fun tittle_N : N;
+fun tittle_tattle_N : N;
+fun tittle_tattle_V : V;
+fun titular_A : A;
+fun tiverton_PN : PN;
+fun tizzy_N : N;
+fun tnt_N : N;
+fun to_Adv : Adv;
+fun to_Prep : Prep;
+fun to_do_N : N;
+fun toad_N : N;
+fun toad_in_the_hole_N : N;
+fun toadstool_N : N;
+fun toady_N : N;
+fun toady_V : V;
+fun toast_N : N;
+fun toast_V : V;
+fun toast_V2 : V2;
+fun toaster_N : N;
+fun toasting_fork_N : N;
+fun toastmaster_N : N;
+fun toastrack_N : N;
+fun tobacco_N : N;
+fun tobacconist_N : N;
+fun tobago_PN : PN;
+fun tobagonian_A : A;
+fun tobagonian_N : N;
+fun toboggan_N : N;
+fun toboggan_V : V;
+fun toby_PN : PN;
+fun toby_jug_N : N;
+fun toccata_N : N;
+fun tocsin_N : N;
+fun today_Adv : Adv;
+fun today_N : N;
+fun toddle_V : V;
+fun toddler_N : N;
+fun toddy_N : N;
+fun todmorden_PN : PN;
+fun toe_N : N;
+fun toe_V2 : V2;
+fun toecap_N : N;
+fun toehold_N : N;
+fun toenail_N : N;
+fun toff_N : N;
+fun toffee_N : N;
+fun tog_V2 : V2;
+fun toga_N : N;
+fun together_Adv : Adv;
+fun togetherness_N : N;
+fun toggle_N : N;
+fun togo_PN : PN;
+fun togolese_A : A;
+fun togolese_N : N;
+fun toil_N : N;
+fun toil_V : V;
+fun toil_V2V : V2V;
+fun toiler_N : N;
+fun toilet_N : N;
+fun toilet_paper_N : N;
+fun toilet_powder_N : N;
+fun toilet_roll_N : N;
+fun toilet_table_N : N;
+fun toilsome_A : A;
+fun tokay_N : N;
+fun token_N : N;
+fun tokyo_PN : PN;
+fun tolerable_A : A;
+fun tolerance_N : N;
+fun tolerant_A : A;
+fun tolerate_V2 : V2;
+fun toleration_N : N;
+fun toll_N : N;
+fun toll_V : V;
+fun toll_V2 : V2;
+fun tollbar_N : N;
+fun tollbooth_N : N;
+fun tollgate_N : N;
+fun tollhouse_N : N;
+fun tom_PN : PN;
+fun tomahawk_N : N;
+fun tomahawk_V2 : V2;
+fun tomato_N : N;
+fun tomb_N : N;
+fun tombola_N : N;
+fun tomboy_N : N;
+fun tombstone_N : N;
+fun tomcat_N : N;
+fun tome_N : N;
+fun tomfool_N : N;
+fun tomfoolery_N : N;
+fun tommy_PN : PN;
+fun tommy_gun_N : N;
+fun tommy_rot_N : N;
+fun tomorrow_Adv : Adv;
+fun tomorrow_N : N;
+fun tomtit_N : N;
+fun tomtom_N : N;
+fun ton_N : N;
+fun ton_V : V;
+fun tonal_A : A;
+fun tonality_N : N;
+fun tonbridge_PN : PN;
+fun tone_N : N;
+fun tone_V : V;
+fun tone_V2 : V2;
+fun tone_deaf_A : A;
+fun tone_poem_N : N;
+fun toned_A : A;
+fun toneless_A : A;
+fun tonga_PN : PN;
+fun tongan_A : A;
+fun tongan_N : N;
+fun tongue_N : N;
+fun tongue_in_cheek_A : A;
+fun tongue_in_cheek_Adv : Adv;
+fun tongue_tied_A : A;
+fun tongue_twister_N : N;
+fun tongued_A : A;
+fun tonic_A : A;
+fun tonic_N : N;
+fun tonic_sol_fa_N : N;
+fun tonight_Adv : Adv;
+fun tonight_N : N;
+fun tonnage_N : N;
+fun tonne_N : N;
+fun tonsil_N : N;
+fun tonsillitis_N : N;
+fun tonsorial_A : A;
+fun tonsure_N : N;
+fun tonsure_V2 : V2;
+fun tontine_N : N;
+fun tony_PN : PN;
+fun tonyrefail_PN : PN;
+fun too_Adv : Adv;
+fun tool_N : N;
+fun tool_V2 : V2;
+fun toot_N : N;
+fun toot_V : V;
+fun toot_V2 : V2;
+fun tooth_N : N;
+fun toothache_N : N;
+fun toothbrush_N : N;
+fun toothed_A : A;
+fun toothless_A : A;
+fun toothpaste_N : N;
+fun toothpick_N : N;
+fun toothpowder_N : N;
+fun toothsome_A : A;
+fun tootle_N : N;
+fun tootle_V : V;
+fun top_N : N;
+fun top_V2 : V2;
+fun top_boot_N : N;
+fun top_dress_V2 : V2;
+fun top_dressing_N : N;
+fun top_flight_A : A;
+fun top_heavy_A : A;
+fun top_hole_A : A;
+fun top_ranking_A : A;
+fun topaz_N : N;
+fun topcoat_N : N;
+fun tope_V : V;
+fun tope_V2 : V2;
+fun toper_N : N;
+fun topgallant_A : A;
+fun topgallant_N : N;
+fun topi_N : N;
+fun topiary_N : N;
+fun topic_N : N;
+fun topical_A : A;
+fun topknot_N : N;
+fun topless_A : A;
+fun topmast_N : N;
+fun topmost_A : A;
+fun topnotch_A : A;
+fun topographical_A : A;
+fun topography_N : N;
+fun topper_N : N;
+fun topping_A : A;
+fun topple_V : V;
+fun topple_V2 : V2;
+fun topsail_N : N;
+fun topsy_turvy_A : A;
+fun topsy_turvy_Adv : Adv;
+fun topsy_turvydom_N : N;
+fun toque_N : N;
+fun tor_N : N;
+fun torbay_PN : PN;
+fun torch_N : N;
+fun torch_V2 : V2;
+fun torch_race_N : N;
+fun torch_singer_N : N;
+fun torchlight_N : N;
+fun toreador_N : N;
+fun torino_PN : PN;
+fun torment_N : N;
+fun torment_V2 : V2;
+fun tormentor_N : N;
+fun tornado_N : N;
+fun toronto_PN : PN;
+fun torpedo_N : N;
+fun torpedo_V2 : V2;
+fun torpedo_boat_N : N;
+fun torpedo_tube_N : N;
+fun torpid_A : A;
+fun torpidity_N : N;
+fun torpidness_N : N;
+fun torpor_N : N;
+fun torque_N : N;
+fun torrent_N : N;
+fun torrential_A : A;
+fun torrid_A : A;
+fun torridity_N : N;
+fun torsion_N : N;
+fun torso_N : N;
+fun tort_N : N;
+fun tortilla_N : N;
+fun tortoise_N : N;
+fun tortoiseshell_N : N;
+fun tortuous_A : A;
+fun torture_N : N;
+fun torture_V2 : V2;
+fun torturer_N : N;
+fun tory_N : N;
+fun tosh_N : N;
+fun toss_N : N;
+fun toss_V : V;
+fun toss_V2 : V2;
+fun toss_up_N : N;
+fun tot_N : N;
+fun tot_V : V;
+fun tot_V2 : V2;
+fun total_A : A;
+fun total_N : N;
+fun total_V : V;
+fun total_V2 : V2;
+fun totalitarian_A : A;
+fun totalitarianism_N : N;
+fun totality_N : N;
+fun totalizator_N : N;
+fun tote_N : N;
+fun tote_V2 : V2;
+fun totem_N : N;
+fun totem_pole_N : N;
+fun totnes_PN : PN;
+fun totter_V : V;
+fun tottery_A : A;
+fun toucan_N : N;
+fun touch_N : N;
+fun touch_V : V;
+fun touch_V2 : V2;
+fun touch_and_go_A : A;
+fun touch_type_V : V;
+fun touchable_A : A;
+fun touchdown_N : N;
+fun touched_A : A;
+fun touchily_Adv : Adv;
+fun touchiness_N : N;
+fun touching_A : A;
+fun touchline_N : N;
+fun touchstone_N : N;
+fun touchy_A : A;
+fun tough_A : A;
+fun tough_N : N;
+fun toughen_V : V;
+fun toughen_V2 : V2;
+fun toughie_N : N;
+fun toughness_N : N;
+fun toulon_PN : PN;
+fun toulouse_PN : PN;
+fun toupee_N : N;
+fun tour_N : N;
+fun tour_V : V;
+fun tour_V2 : V2;
+fun tour_de_force_N : N;
+fun touring_A : A;
+fun touring_N : N;
+fun tourism_N : N;
+fun tourist_N : N;
+fun tournament_N : N;
+fun tourney_N : N;
+fun tourniquet_N : N;
+fun tours_PN : PN;
+fun tousle_V2 : V2;
+fun tout_N : N;
+fun tout_V : V;
+fun tout_V2 : V2;
+fun tout_ensemble_Adv : Adv;
+fun tout_ensemble_N : N;
+fun tow_N : N;
+fun tow_V2 : V2;
+fun toward_Prep : Prep ;
+fun towards_Prep : Prep ;
+fun towel_N : N;
+fun towel_V2 : V2;
+fun towel_horse_N : N;
+fun towel_rack_N : N;
+fun towel_rail_N : N;
+fun towelling_N : N;
+fun tower_N : N;
+fun tower_V : V;
+fun tower_block_N : N;
+fun tower_hamlets_PN : PN;
+fun towering_A : A;
+fun towing_line_N : N;
+fun towing_path_N : N;
+fun towing_rope_N : N;
+fun towline_N : N;
+fun town_N : N;
+fun town_crier_N : N;
+fun town_gas_N : N;
+fun townee_N : N;
+fun township_N : N;
+fun townsman_N : N;
+fun towpath_N : N;
+fun towrope_N : N;
+fun toxaemia_N : N;
+fun toxic_A : A;
+fun toxicity_N : N;
+fun toxicologist_N : N;
+fun toxicology_N : N;
+fun toxin_N : N;
+fun toy_N : N;
+fun toy_V : V;
+fun toyshop_N : N;
+fun trace_N : N;
+fun trace_V : V;
+fun trace_V2 : V2;
+fun traceable_A : A;
+fun tracer_N : N;
+fun tracery_N : N;
+fun trachea_N : N;
+fun trachoma_N : N;
+fun tracing_N : N;
+fun tracing_paper_N : N;
+fun track_N : N;
+fun track_V : V;
+fun track_V2 : V2;
+fun tracked_A : A;
+fun tracker_N : N;
+fun trackless_A : A;
+fun tract_N : N;
+fun tractability_N : N;
+fun tractable_A : A;
+fun traction_N : N;
+fun traction_engine_N : N;
+fun tractor_N : N;
+fun tracy_PN : PN;
+fun trad_N : N;
+fun trade_N : N;
+fun trade_V : V;
+fun trade_V2 : V2;
+fun trade_in_N : N;
+fun trade_union_N : N;
+fun trade_unionism_N : N;
+fun trade_unionist_N : N;
+fun trade_wind_N : N;
+fun trademark_N : N;
+fun trader_N : N;
+fun trades_union_N : N;
+fun tradesman_N : N;
+fun tradition_N : N;
+fun traditional_A : A;
+fun traditionalism_N : N;
+fun traditionalist_N : N;
+fun traduce_V2 : V2;
+fun traducer_N : N;
+fun traffic_N : N;
+fun traffic_V : V;
+fun trafficator_N : N;
+fun trafficker_N : N;
+fun tragedian_N : N;
+fun tragedienne_N : N;
+fun tragedy_N : N;
+fun tragic_A : A;
+fun tragically_Adv : Adv;
+fun tragicomedy_N : N;
+fun tragicomic_A : A;
+fun trail_N : N;
+fun trail_V : V;
+fun trail_V2 : V2;
+fun trailer_N : N;
+fun train_N : N;
+fun train_V : V;
+fun train_V2 : V2;
+fun train_V2V : V2V;
+fun trainbearer_N : N;
+fun trainee_N : N;
+fun trainer_N : N;
+fun training_N : N;
+fun training_college_N : N;
+fun training_ship_N : N;
+fun trainload_N : N;
+fun trainman_N : N;
+fun traipse_V : V;
+fun trait_N : N;
+fun traitor_N : N;
+fun traitorous_A : A;
+fun traitress_N : N;
+fun trajectory_N : N;
+fun tralee_PN : PN;
+fun tram_N : N;
+fun tram_car_N : N;
+fun tramline_N : N;
+fun trammel_V2 : V2;
+fun tramp_N : N;
+fun tramp_V : V;
+fun tramp_V2 : V2;
+fun tramp_steamer_N : N;
+fun trample_N : N;
+fun trample_V : V;
+fun trample_V2 : V2;
+fun trampoline_N : N;
+fun tramway_N : N;
+fun trance_N : N;
+fun tranent_PN : PN;
+fun tranquil_A : A;
+fun tranquility_N : N;
+fun tranquilize_V2 : V2;
+fun tranquillity_N : N;
+fun tranquillize_V2 : V2;
+fun tranquillizer_N : N;
+fun trans_PN : PN;
+fun transact_V2 : V2;
+fun transaction_N : N;
+fun transalpine_A : A;
+fun transalpine_N : N;
+fun transatlantic_A : A;
+fun transcend_V2 : V2;
+fun transcendence_N : N;
+fun transcendency_N : N;
+fun transcendent_A : A;
+fun transcendental_A : A;
+fun transcendentalism_N : N;
+fun transcendentalist_N : N;
+fun transcontinental_A : A;
+fun transcribe_V2 : V2;
+fun transcript_N : N;
+fun transcription_N : N;
+fun transept_N : N;
+fun transfer_N : N;
+fun transfer_V : V;
+fun transfer_V2 : V2;
+fun transferability_N : N;
+fun transferable_A : A;
+fun transference_N : N;
+fun transfiguration_N : N;
+fun transfigure_V2 : V2;
+fun transfix_V2 : V2;
+fun transform_V2 : V2;
+fun transformable_A : A;
+fun transformation_N : N;
+fun transformer_N : N;
+fun transfuse_V2 : V2;
+fun transfusion_N : N;
+fun transgress_V : V;
+fun transgress_V2 : V2;
+fun transgression_N : N;
+fun transgressor_N : N;
+fun transience_N : N;
+fun transiency_N : N;
+fun transient_A : A;
+fun transient_N : N;
+fun transistor_N : N;
+fun transistorized_A : A;
+fun transit_N : N;
+fun transition_N : N;
+fun transitional_A : A;
+fun transitive_A : A;
+fun transitory_A : A;
+fun translatable_A : A;
+fun translate_V : V;
+fun translate_V2 : V2;
+fun translation_N : N;
+fun translator_N : N;
+fun transliterate_V2 : V2;
+fun transliteration_N : N;
+fun translucence_N : N;
+fun translucency_N : N;
+fun translucent_A : A;
+fun transmigration_N : N;
+fun transmission_N : N;
+fun transmit_V2 : V2;
+fun transmitter_N : N;
+fun transmogrification_N : N;
+fun transmogrify_V2 : V2;
+fun transmutable_A : A;
+fun transmutation_N : N;
+fun transmute_V2 : V2;
+fun transoceanic_A : A;
+fun transom_N : N;
+fun transom_window_N : N;
+fun transparence_N : N;
+fun transparency_N : N;
+fun transparent_A : A;
+fun transpiration_N : N;
+fun transpire_V : V;
+fun transpire_V2 : V2;
+fun transplant_N : N;
+fun transplant_V : V;
+fun transplant_V2 : V2;
+fun transplantation_N : N;
+fun transpolar_A : A;
+fun transport_N : N;
+fun transport_V2 : V2;
+fun transportable_A : A;
+fun transportation_N : N;
+fun transporter_N : N;
+fun transpose_V2 : V2;
+fun transposition_N : N;
+fun transsexual_N : N;
+fun transship_V2 : V2;
+fun transshipment_N : N;
+fun transubstantiation_N : N;
+fun transverse_A : A;
+fun transvestism_N : N;
+fun transvestite_N : N;
+fun trap_N : N;
+fun trap_V : V;
+fun trap_V2 : V2;
+fun trap_door_N : N;
+fun trap_shooting_N : N;
+fun trapeze_N : N;
+fun trapezium_N : N;
+fun trapezoid_N : N;
+fun trapper_N : N;
+fun trappist_N : N;
+fun trash_N : N;
+fun trash_V2 : V2;
+fun trashy_A : A;
+fun trauma_N : N;
+fun traumatic_A : A;
+fun travail_N : N;
+fun travel_N : N;
+fun travel_V : V;
+fun travel_V2 : V2;
+fun travel_soiled_A : A;
+fun travel_stained_A : A;
+fun travel_worn_A : A;
+fun traveled_A : A;
+fun travelled_A : A;
+fun traveller_N : N;
+fun travelling_N : N;
+fun travelogue_N : N;
+fun traverse_N : N;
+fun traverse_V2 : V2;
+fun travesty_N : N;
+fun travesty_V2 : V2;
+fun trawl_N : N;
+fun trawl_V : V;
+fun trawl_V2 : V2;
+fun trawl_net_N : N;
+fun trawler_N : N;
+fun tray_N : N;
+fun tray_cloth_N : N;
+fun treacherous_A : A;
+fun treachery_N : N;
+fun treacle_N : N;
+fun treacly_A : A;
+fun tread_N : N;
+fun tread_V : V;
+fun tread_V2 : V2;
+fun treadle_N : N;
+fun treadle_V : V;
+fun treadmill_N : N;
+fun treas_N : N;
+fun treason_N : N;
+fun treasonable_A : A;
+fun treasonous_A : A;
+fun treasure_N : N;
+fun treasure_V2 : V2;
+fun treasure_house_N : N;
+fun treasure_trove_N : N;
+fun treasurer_N : N;
+fun treasury_N : N;
+fun treat_N : N;
+fun treat_V : V;
+fun treat_V2 : V2;
+fun treatise_N : N;
+fun treatment_N : N;
+fun treaty_N : N;
+fun treble_A : A;
+fun treble_N : N;
+fun treble_V : V;
+fun treble_V2 : V2;
+fun tredegar_PN : PN;
+fun tree_N : N;
+fun tree_V2 : V2;
+fun tree_fern_N : N;
+fun treeless_A : A;
+fun trefoil_N : N;
+fun trek_N : N;
+fun trek_V : V;
+fun trellis_N : N;
+fun trellis_V2 : V2;
+fun tremble_N : N;
+fun tremble_V : V;
+fun tremendous_A : A;
+fun tremolo_N : N;
+fun tremor_N : N;
+fun tremulous_A : A;
+fun trench_N : N;
+fun trench_V2 : V2;
+fun trenchancy_N : N;
+fun trenchant_A : A;
+fun trencher_N : N;
+fun trencherman_N : N;
+fun trend_N : N;
+fun trend_V : V;
+fun trend_setter_N : N;
+fun trend_setting_N : N;
+fun trendy_A : A;
+fun trepan_V2 : V2;
+fun trephine_N : N;
+fun trephine_V2 : V2;
+fun trepidation_N : N;
+fun trespass_N : N;
+fun trespass_V : V;
+fun trespasser_N : N;
+fun tress_N : N;
+fun trestle_N : N;
+fun trestle_bridge_N : N;
+fun trestle_table_N : N;
+fun trevor_PN : PN;
+fun triad_N : N;
+fun trial_N : N;
+fun triangle_N : N;
+fun triangular_A : A;
+fun tribal_A : A;
+fun tribalism_N : N;
+fun tribe_N : N;
+fun tribesman_N : N;
+fun tribulation_N : N;
+fun tribunal_N : N;
+fun tribune_N : N;
+fun tributary_A : A;
+fun tributary_N : N;
+fun tribute_N : N;
+fun trice_N : N;
+fun trice_V2 : V2;
+fun trick_N : N;
+fun trick_V2 : V2;
+fun trickery_N : N;
+fun trickiness_N : N;
+fun trickle_N : N;
+fun trickle_V : V;
+fun trickle_V2 : V2;
+fun trickster_N : N;
+fun tricksy_A : A;
+fun tricky_A : A;
+fun tricolour_N : N;
+fun tricycle_N : N;
+fun trident_N : N;
+fun tried_A : A;
+fun triennial_A : A;
+fun triennial_N : N;
+fun trier_N : N;
+fun trieste_PN : PN;
+fun trifle_N : N;
+fun trifle_V : V;
+fun trifle_V2 : V2;
+fun trifler_N : N;
+fun trifling_A : A;
+fun trigger_N : N;
+fun trigger_V2 : V2;
+fun trigger_happy_A : A;
+fun trigonometry_N : N;
+fun trilateral_A : A;
+fun trilby_N : N;
+fun trill_N : N;
+fun trill_V : V;
+fun trill_V2 : V2;
+fun trillion_A : A;
+fun trillion_N : N;
+fun trillionth_A : A;
+fun trillionth_N : N;
+fun trilogy_N : N;
+fun trim_A : A;
+fun trim_N : N;
+fun trim_V : V;
+fun trim_V2 : V2;
+fun trimaran_N : N;
+fun trimmer_N : N;
+fun trimming_N : N;
+fun tring_PN : PN;
+fun trinidad_PN : PN;
+fun trinidadian_A : A;
+fun trinidadian_N : N;
+fun trinitrotoluene_N : N;
+fun trinity_N : N;
+fun trinket_N : N;
+fun trio_N : N;
+fun trip_N : N;
+fun trip_V : V;
+fun trip_V2 : V2;
+fun tripartite_A : A;
+fun tripe_N : N;
+fun triple_A : A;
+fun triple_V : V;
+fun triple_V2 : V2;
+fun triplet_N : N;
+fun triplex_A : A;
+fun triplicate_A : A;
+fun triplicate_N : N;
+fun triplicate_V2 : V2;
+fun tripod_N : N;
+fun tripos_N : N;
+fun tripper_N : N;
+fun tripping_A : A;
+fun triptych_N : N;
+fun trireme_N : N;
+fun trisect_V2 : V2;
+fun trite_A : A;
+fun triteness_N : N;
+fun triumph_N : N;
+fun triumph_V : V;
+fun triumphal_A : A;
+fun triumphant_A : A;
+fun triumvir_N : N;
+fun triumvirate_N : N;
+fun triune_A : A;
+fun trivet_N : N;
+fun trivial_A : A;
+fun triviality_N : N;
+fun trivialize_V2 : V2;
+fun trochaic_A : A;
+fun trochee_N : N;
+fun troglodyte_N : N;
+fun troika_N : N;
+fun trojan_A : A;
+fun trojan_N : N;
+fun troll_N : N;
+fun troll_V : V;
+fun troll_V2 : V2;
+fun trolley_N : N;
+fun trolley_car_N : N;
+fun trollop_N : N;
+fun trombone_N : N;
+fun trombonist_N : N;
+fun troon_PN : PN;
+fun troop_N : N;
+fun troop_V : V;
+fun troop_V2 : V2;
+fun troop_carrier_N : N;
+fun trooper_N : N;
+fun troopship_N : N;
+fun trope_N : N;
+fun trophy_N : N;
+fun tropic_N : N;
+fun tropical_A : A;
+fun trot_N : N;
+fun trot_V : V;
+fun trot_V2 : V2;
+fun troth_N : N;
+fun trotter_N : N;
+fun troubadour_N : N;
+fun trouble_N : N;
+fun trouble_V : V;
+fun trouble_V2 : V2;
+fun troublemaker_N : N;
+fun troubleshooter_N : N;
+fun troublesome_A : A;
+fun troublous_A : A;
+fun trough_N : N;
+fun trough_V : V;
+fun trounce_V2 : V2;
+fun trouncing_N : N;
+fun troupe_N : N;
+fun trouper_N : N;
+fun trouser_N : N;
+fun trousseau_N : N;
+fun trout_N : N;
+fun trove_N : N;
+fun trowbridge_PN : PN;
+fun trowel_N : N;
+fun troy_N : N;
+fun truancy_N : N;
+fun truant_N : N;
+fun truce_N : N;
+fun truck_N : N;
+fun truckle_N : N;
+fun truckle_V : V;
+fun truckle_bed_N : N;
+fun truculence_N : N;
+fun truculency_N : N;
+fun truculent_A : A;
+fun trudge_N : N;
+fun trudge_V : V;
+fun true_A : A;
+fun true_Adv : Adv;
+fun true_N : N;
+fun true_V2 : V2;
+fun true_blue_A : A;
+fun true_blue_N : N;
+fun true_hearted_A : A;
+fun truelove_N : N;
+fun truffle_N : N;
+fun truism_N : N;
+fun truly_Adv : Adv;
+fun trump_N : N;
+fun trump_V : V;
+fun trump_V2 : V2;
+fun trumpery_A : A;
+fun trumpet_N : N;
+fun trumpet_V : V;
+fun trumpet_V2 : V2;
+fun trumpeter_N : N;
+fun truncate_V2 : V2;
+fun truncheon_N : N;
+fun trundle_V : V;
+fun trundle_V2 : V2;
+fun trunk_N : N;
+fun trunk_call_N : N;
+fun trunk_line_N : N;
+fun trunk_road_N : N;
+fun trunking_N : N;
+fun truro_PN : PN;
+fun truss_N : N;
+fun truss_V2 : V2;
+fun trust_N : N;
+fun trust_V : V;
+fun trust_V2 : V2;
+fun trust_V2V : V2V;
+fun trust_VS : VS;
+fun trustee_N : N;
+fun trusteeship_N : N;
+fun trustful_A : A;
+fun trusting_A : A;
+fun trustworthiness_N : N;
+fun trustworthy_A : A;
+fun trusty_A : A;
+fun truth_N : N;
+fun truthful_A : A;
+fun truthfulness_N : N;
+fun try_N : N;
+fun try_V : V;
+fun try_V2 : V2;
+fun try_VV : VV;
+fun try_VS : VS;
+fun try_on_N : N;
+fun try_out_N : N;
+fun trying_A : A;
+fun tryst_N : N;
+fun tsar_N : N;
+fun tsarina_N : N;
+fun tsetse_N : N;
+fun tsetse_fly_N : N;
+fun tsinan_PN : PN;
+fun tsingtao_PN : PN;
+fun tsitsihar_PN : PN;
+fun tswana_A : A;
+fun tswana_N : N;
+fun tub_N : N;
+fun tub_thumper_N : N;
+fun tuba_N : N;
+fun tubby_A : A;
+fun tube_N : N;
+fun tube_well_N : N;
+fun tubeless_A : A;
+fun tuber_N : N;
+fun tubercular_A : A;
+fun tuberculosis_N : N;
+fun tuberculous_A : A;
+fun tubful_N : N;
+fun tubing_N : N;
+fun tubular_A : A;
+fun tuc_N : N;
+fun tuck_N : N;
+fun tuck_V : V;
+fun tuck_V2 : V2;
+fun tuck_in_N : N;
+fun tuck_shop_N : N;
+fun tucker_N : N;
+fun tues_PN : PN;
+fun tuesday_N : N;
+fun tuesday_PN : PN;
+fun tuft_N : N;
+fun tufted_A : A;
+fun tug_N : N;
+fun tug_V : V;
+fun tug_V2 : V2;
+fun tugboat_N : N;
+fun tuition_N : N;
+fun tulip_N : N;
+fun tulle_N : N;
+fun tullibody_PN : PN;
+fun tumble_N : N;
+fun tumble_V : V;
+fun tumble_V2 : V2;
+fun tumble_down_A : A;
+fun tumbler_N : N;
+fun tumbleweed_N : N;
+fun tumbrel_N : N;
+fun tumbril_N : N;
+fun tumescence_N : N;
+fun tumescent_A : A;
+fun tumid_A : A;
+fun tumidity_N : N;
+fun tummy_N : N;
+fun tumour_N : N;
+fun tumult_N : N;
+fun tumultuous_A : A;
+fun tumulus_N : N;
+fun tun_N : N;
+fun tuna_N : N;
+fun tunbridge_wells_PN : PN;
+fun tundra_N : N;
+fun tune_N : N;
+fun tune_V : V;
+fun tune_V2 : V2;
+fun tuneful_A : A;
+fun tunefulness_N : N;
+fun tuner_N : N;
+fun tung_oil_N : N;
+fun tungsten_N : N;
+fun tunic_N : N;
+fun tuning_fork_N : N;
+fun tunis_PN : PN;
+fun tunisia_PN : PN;
+fun tunisian_A : A;
+fun tunisian_N : N;
+fun tunnel_N : N;
+fun tunnel_V : V;
+fun tunnel_V2 : V2;
+fun tunny_N : N;
+fun tup_N : N;
+fun tuppence_N : N;
+fun tuppenny_A : A;
+fun turban_N : N;
+fun turbaned_A : A;
+fun turbid_A : A;
+fun turbidity_N : N;
+fun turbidness_N : N;
+fun turbine_N : N;
+fun turbojet_N : N;
+fun turboprop_N : N;
+fun turbot_N : N;
+fun turbulence_N : N;
+fun turbulent_A : A;
+fun turd_N : N;
+fun tureen_N : N;
+fun turf_N : N;
+fun turf_V2 : V2;
+fun turgid_A : A;
+fun turgidity_N : N;
+fun turin_PN : PN;
+fun turk_N : N;
+fun turkey_N : N;
+fun turkey_PN : PN;
+fun turkish_A : A;
+fun turkish_N : N;
+fun turku_PN : PN;
+fun turmeric_N : N;
+fun turmoil_N : N;
+fun turn_N : N;
+fun turn_V : V;
+fun turn_V2 : V2;
+fun turn_VA : VA;
+fun turn_VS : VS;
+fun turn_off_N : N;
+fun turn_on_N : N;
+fun turn_out_N : N;
+fun turn_round_N : N;
+fun turn_up_N : N;
+fun turncoat_N : N;
+fun turncock_N : N;
+fun turner_N : N;
+fun turning_N : N;
+fun turning_point_N : N;
+fun turnip_N : N;
+fun turnkey_N : N;
+fun turnover_N : N;
+fun turnpike_N : N;
+fun turnspit_N : N;
+fun turnstile_N : N;
+fun turntable_N : N;
+fun turpentine_N : N;
+fun turpitude_N : N;
+fun turps_N : N;
+fun turquoise_N : N;
+fun turret_N : N;
+fun turtle_N : N;
+fun turtledove_N : N;
+fun turtleneck_A : A;
+fun turtlenecked_A : A;
+fun tusk_N : N;
+fun tussle_N : N;
+fun tussle_V : V;
+fun tussock_N : N;
+fun tut_V2 : V2;
+fun tutelage_N : N;
+fun tutelary_A : A;
+fun tutor_N : N;
+fun tutor_V2 : V2;
+fun tutorial_A : A;
+fun tutorial_N : N;
+fun tutorship_N : N;
+fun tutti_frutti_N : N;
+fun tutu_N : N;
+fun tuxedo_N : N;
+fun tv_N : N;
+fun twaddle_N : N;
+fun twaddle_V : V;
+fun twain_N : N;
+fun twang_N : N;
+fun twang_V : V;
+fun twang_V2 : V2;
+fun tweak_N : N;
+fun tweak_V2 : V2;
+fun twee_A : A;
+fun tweed_N : N;
+fun tween_Adv : Adv;
+fun tween_decks_Adv : Adv;
+fun tweet_N : N;
+fun tweet_V : V;
+fun tweeter_N : N;
+fun twelfth_night_N : N;
+fun twelfth_night_PN : PN;
+fun twelvemonth_N : N;
+fun twerp_N : N;
+fun twice_Adv : Adv;
+fun twiddle_N : N;
+fun twiddle_V : V;
+fun twiddle_V2 : V2;
+fun twiddly_A : A;
+fun twig_N : N;
+fun twig_V : V;
+fun twig_V2 : V2;
+fun twiggy_A : A;
+fun twilight_N : N;
+fun twilit_A : A;
+fun twill_N : N;
+fun twilled_A : A;
+fun twin_N : N;
+fun twin_V2 : V2;
+fun twine_N : N;
+fun twine_V : V;
+fun twine_V2 : V2;
+fun twinge_N : N;
+fun twinkle_N : N;
+fun twinkle_V : V;
+fun twinkling_N : N;
+fun twinned_A : A;
+fun twirl_N : N;
+fun twirl_V : V;
+fun twirl_V2 : V2;
+fun twist_N : N;
+fun twist_V : V;
+fun twist_V2 : V2;
+fun twister_N : N;
+fun twisty_A : A;
+fun twit_N : N;
+fun twit_V2 : V2;
+fun twitch_N : N;
+fun twitch_V : V;
+fun twitch_V2 : V2;
+fun twitter_N : N;
+fun twitter_V : V;
+fun two_a_penny_A : A;
+fun two_edged_A : A;
+fun two_faced_A : A;
+fun two_funnelled_A : A;
+fun two_handed_A : A;
+fun two_piece_N : N;
+fun two_ply_A : A;
+fun two_seater_N : N;
+fun two_step_N : N;
+fun two_timing_A : A;
+fun two_way_A : A;
+fun twofold_A : A;
+fun twofold_Adv : Adv;
+fun twopence_N : N;
+fun twopenny_A : A;
+fun twopenny_halfpenny_A : A;
+fun tycoon_N : N;
+fun tyke_N : N;
+fun tympanum_N : N;
+fun tyne_PN : PN;
+fun tynemouth_PN : PN;
+fun type_N : N;
+fun type_V : V;
+fun type_V2 : V2;
+fun typecast_V2 : V2;
+fun typeface_N : N;
+fun typescript_N : N;
+fun typesetter_N : N;
+fun typewriter_N : N;
+fun typewritten_A : A;
+fun typhoid_N : N;
+fun typhoon_N : N;
+fun typhus_N : N;
+fun typical_A : A;
+fun typify_V2 : V2;
+fun typist_N : N;
+fun typographer_N : N;
+fun typographic_A : A;
+fun typographically_Adv : Adv;
+fun typography_N : N;
+fun tyrannical_A : A;
+fun tyrannize_V : V;
+fun tyrannize_V2 : V2;
+fun tyrannous_A : A;
+fun tyranny_N : N;
+fun tyrant_N : N;
+fun tyre_N : N;
+fun tyro_N : N;
+fun tyrone_PN : PN;
+fun tzar_N : N;
+fun tzarina_N : N;
+fun tzupo_PN : PN;
+fun u_boat_N : N;
+fun u_turn_N : N;
+fun ubiquitous_A : A;
+fun ubiquity_N : N;
+fun udder_N : N;
+fun uddingston_PN : PN;
+fun udi_PN : PN;
+fun udine_PN : PN;
+fun ufa_PN : PN;
+fun ufo_N : N;
+fun uganda_PN : PN;
+fun ugandan_A : A;
+fun ugandan_N : N;
+fun uglify_V2 : V2;
+fun ugliness_N : N;
+fun ugly_A : A;
+fun uk_PN : PN;
+fun ukase_N : N;
+fun ukulele_N : N;
+fun ulcer_N : N;
+fun ulcerate_V : V;
+fun ulcerate_V2 : V2;
+fun ulceration_N : N;
+fun ulcerous_A : A;
+fun ulna_N : N;
+fun ulster_N : N;
+fun ulster_PN : PN;
+fun ulterior_A : A;
+fun ultimate_A : A;
+fun ultimatum_N : N;
+fun ultimo_A : A;
+fun ultra_vires_A : A;
+fun ultra_vires_Adv : Adv;
+fun ultramarine_A : A;
+fun ultramarine_N : N;
+fun ultramontane_A : A;
+fun ultrasonic_A : A;
+fun ultraviolet_A : A;
+fun ululate_V : V;
+fun ululation_N : N;
+fun ulverston_PN : PN;
+fun umber_A : A;
+fun umber_N : N;
+fun umbilical_A : A;
+fun umbrage_N : N;
+fun umbrella_N : N;
+fun umlaut_N : N;
+fun umpire_N : N;
+fun umpire_V : V;
+fun umpire_V2 : V2;
+fun umpteen_A : A;
+fun umpteenth_A : A;
+fun un_N : N;
+fun un_come_at_able_A : A;
+fun un_get_at_able_A : A;
+fun unabashed_A : A;
+fun unabated_A : A;
+fun unable_A : A;
+fun unabridged_A : A;
+fun unacceptable_A : A;
+fun unaccommodating_A : A;
+fun unaccompanied_A : A;
+fun unaccountable_A : A;
+fun unaccounted_A : A;
+fun unaccustomed_A : A;
+fun unacknowledged_A : A;
+fun unacquainted_A : A;
+fun unadorned_A : A;
+fun unadulterated_A : A;
+fun unadventurous_A : A;
+fun unadvised_A : A;
+fun unaffected_A : A;
+fun unafraid_A : A;
+fun unaided_A : A;
+fun unalienable_A : A;
+fun unaligned_A : A;
+fun unalloyed_A : A;
+fun unalterable_A : A;
+fun unaltered_A : A;
+fun unambiguous_A : A;
+fun unamended_A : A;
+fun unanimity_N : N;
+fun unanimous_A : A;
+fun unannounced_A : A;
+fun unanswerable_A : A;
+fun unanswered_A : A;
+fun unanticipated_A : A;
+fun unappealing_A : A;
+fun unappetizing_A : A;
+fun unappreciated_A : A;
+fun unappreciative_A : A;
+fun unapproachable_A : A;
+fun unarguable_A : A;
+fun unarmed_A : A;
+fun unarticulated_A : A;
+fun unashamed_A : A;
+fun unasked_A : A;
+fun unassailable_A : A;
+fun unassisted_A : A;
+fun unassuming_A : A;
+fun unattached_A : A;
+fun unattainable_A : A;
+fun unattended_A : A;
+fun unattractive_A : A;
+fun unauthorized_A : A;
+fun unavailable_A : A;
+fun unavailing_A : A;
+fun unavoidable_A : A;
+fun unawakened_A : A;
+fun unaware_A : A;
+fun unawares_Adv : Adv;
+fun unbacked_A : A;
+fun unbalance_V2 : V2;
+fun unbalanced_A : A;
+fun unbar_V2 : V2;
+fun unbearable_A : A;
+fun unbeatable_A : A;
+fun unbeaten_A : A;
+fun unbecoming_A : A;
+fun unbeknown_A : A;
+fun unbeknown_Adv : Adv;
+fun unbeknownst_A : A;
+fun unbeknownst_Adv : Adv;
+fun unbelief_N : N;
+fun unbelievable_A : A;
+fun unbeliever_N : N;
+fun unbelieving_A : A;
+fun unbeloved_A : A;
+fun unbend_V : V;
+fun unbend_V2 : V2;
+fun unbending_A : A;
+fun unbiased_A : A;
+fun unbiassed_A : A;
+fun unbidden_A : A;
+fun unbind_V2 : V2;
+fun unblock_V2 : V2;
+fun unblushing_A : A;
+fun unbolt_V : V;
+fun unbolt_V2 : V2;
+fun unborn_A : A;
+fun unbosom_V2 : V2;
+fun unbounded_A : A;
+fun unbowed_A : A;
+fun unbreakable_A : A;
+fun unbridled_A : A;
+fun unbroken_A : A;
+fun unbuckle_V2 : V2;
+fun unburden_V2 : V2;
+fun unburied_A : A;
+fun unbutton_V2 : V2;
+fun unbuttoned_A : A;
+fun uncalled_for_A : A;
+fun uncanny_A : A;
+fun uncared_for_A : A;
+fun uncarpeted_A : A;
+fun unceasing_A : A;
+fun uncensored_A : A;
+fun unceremonious_A : A;
+fun unceremoniousness_N : N;
+fun uncertain_A : A;
+fun uncertainty_N : N;
+fun unchain_V2 : V2;
+fun unchallengeable_A : A;
+fun unchallenged_A : A;
+fun unchanged_A : A;
+fun unchanging_A : A;
+fun uncharacteristic_A : A;
+fun uncharacteristically_Adv : Adv;
+fun uncharitable_A : A;
+fun uncharted_A : A;
+fun unchecked_A : A;
+fun unchivalrously_Adv : Adv;
+fun unchristian_A : A;
+fun uncivil_A : A;
+fun uncivilized_A : A;
+fun unclaimed_A : A;
+fun unclassified_A : A;
+fun uncle_N : N;
+fun unclean_A : A;
+fun unclear_A : A;
+fun unclouded_A : A;
+fun uncluttered_A : A;
+fun unco_A : A;
+fun unco_Adv : Adv;
+fun unco_operative_A : A;
+fun unco_ordinated_A : A;
+fun uncoloured_A : A;
+fun uncomfortable_A : A;
+fun uncommercialized_A : A;
+fun uncommitted_A : A;
+fun uncommon_A : A;
+fun uncommunicative_A : A;
+fun uncompetitive_A : A;
+fun uncomplaining_A : A;
+fun uncompleted_A : A;
+fun uncomplicated_A : A;
+fun uncomplimentary_A : A;
+fun uncomprehending_A : A;
+fun uncompromising_A : A;
+fun unconcealed_A : A;
+fun unconcern_N : N;
+fun unconcerned_A : A;
+fun unconditional_A : A;
+fun unconditioned_A : A;
+fun unconfined_A : A;
+fun unconfirmed_A : A;
+fun unconformable_A : A;
+fun uncongenial_A : A;
+fun unconnected_A : A;
+fun unconquered_A : A;
+fun unconscionable_A : A;
+fun unconscious_A : A;
+fun unconscious_N : N;
+fun unconsciousness_N : N;
+fun unconsidered_A : A;
+fun unconstitutional_A : A;
+fun unconstrained_A : A;
+fun unconstructive_A : A;
+fun unconsummated_A : A;
+fun uncontaminated_A : A;
+fun uncontrollable_A : A;
+fun uncontrolled_A : A;
+fun uncontroversial_A : A;
+fun unconventional_A : A;
+fun unconventionality_N : N;
+fun unconverted_A : A;
+fun unconvinced_A : A;
+fun unconvincing_A : A;
+fun uncooked_A : A;
+fun uncork_V2 : V2;
+fun uncorrected_A : A;
+fun uncorrelated_A : A;
+fun uncorroborated_A : A;
+fun uncouple_V2 : V2;
+fun uncouth_A : A;
+fun uncouthness_N : N;
+fun uncover_V2 : V2;
+fun uncritical_A : A;
+fun uncross_V2 : V2;
+fun uncrossed_A : A;
+fun uncrowned_A : A;
+fun unction_N : N;
+fun unctuous_A : A;
+fun uncultivated_A : A;
+fun uncultured_A : A;
+fun uncurl_V : V;
+fun uncurl_V2 : V2;
+fun uncut_A : A;
+fun undamaged_A : A;
+fun undated_A : A;
+fun undaunted_A : A;
+fun undeceive_V2 : V2;
+fun undecided_A : A;
+fun undeclared_A : A;
+fun undefeated_A : A;
+fun undefended_A : A;
+fun undeferential_A : A;
+fun undefinable_A : A;
+fun undefined_A : A;
+fun undemanding_A : A;
+fun undemocratic_A : A;
+fun undemocratically_Adv : Adv;
+fun undemonstrative_A : A;
+fun undeniable_A : A;
+fun undenominational_A : A;
+fun under_Adv : Adv;
+fun under_Prep : Prep ;
+fun under_the_counter_A : A;
+fun underact_V : V;
+fun underact_V2 : V2;
+fun underarm_A : A;
+fun underarm_Adv : Adv;
+fun underbelly_N : N;
+fun underbid_V2 : V2;
+fun underbred_A : A;
+fun underbrush_N : N;
+fun undercarriage_N : N;
+fun undercharge_N : N;
+fun undercharge_V2 : V2;
+fun underclothing_N : N;
+fun undercoat_N : N;
+fun undercover_A : A;
+fun undercurrent_N : N;
+fun undercut_N : N;
+fun undercut_V2 : V2;
+fun underdeveloped_A : A;
+fun underdevelopment_N : N;
+fun underdog_N : N;
+fun underdone_A : A;
+fun underemployed_A : A;
+fun underestimate_N : N;
+fun underestimate_V2 : V2;
+fun underestimation_N : N;
+fun underexpose_V2 : V2;
+fun underexposure_N : N;
+fun underfed_A : A;
+fun underfelt_N : N;
+fun underfloor_A : A;
+fun underfoot_Adv : Adv;
+fun underfund_V2 : V2;
+fun undergarment_N : N;
+fun undergo_V2 : V2;
+fun undergraduate_N : N;
+fun underground_A : A;
+fun underground_Adv : Adv;
+fun underground_N : N;
+fun undergrowth_N : N;
+fun underhand_A : A;
+fun underhand_Adv : Adv;
+fun underhanded_A : A;
+fun underhung_A : A;
+fun underlay_N : N;
+fun underlie_V2 : V2;
+fun underline_N : N;
+fun underline_V2 : V2;
+fun underling_N : N;
+fun undermanned_A : A;
+fun undermentioned_A : A;
+fun undermine_V2 : V2;
+fun underneath_Adv : Adv;
+fun underneath_Prep : Prep ;
+fun undernourished_A : A;
+fun undernourishment_N : N;
+fun underpass_N : N;
+fun underpay_V2 : V2;
+fun underpayment_N : N;
+fun underperform_V2 : V2;
+fun underpin_V2 : V2;
+fun underpopulated_A : A;
+fun underprivileged_A : A;
+fun underproduction_N : N;
+fun underquote_V2 : V2;
+fun underrate_V2 : V2;
+fun underscore_V2 : V2;
+fun undersea_A : A;
+fun underseal_N : N;
+fun undersealed_A : A;
+fun undersecretary_N : N;
+fun undersell_V2 : V2;
+fun undersexed_A : A;
+fun undershoot_V2 : V2;
+fun underside_N : N;
+fun undersign_V2 : V2;
+fun undersized_A : A;
+fun underskirt_N : N;
+fun underslung_A : A;
+fun underspend_V : V;
+fun underspend_V2 : V2;
+fun underspent_A : A;
+fun understaffed_A : A;
+fun understand_V : V;
+fun understand_V2 : V2;
+fun understand_V2V : V2V;
+fun understand_VS : VS;
+fun understandable_A : A;
+fun understanding_A : A;
+fun understanding_N : N;
+fun understate_V2 : V2;
+fun understatement_N : N;
+fun understock_V2 : V2;
+fun understudy_N : N;
+fun understudy_V2 : V2;
+fun undersurface_N : N;
+fun undertake_V2 : V2;
+fun undertaker_N : N;
+fun undertaking_N : N;
+fun undertone_N : N;
+fun undertow_N : N;
+fun undervaluation_N : N;
+fun undervalue_V2 : V2;
+fun underwater_A : A;
+fun underwear_N : N;
+fun underweight_A : A;
+fun underwhelm_V2 : V2;
+fun underworld_N : N;
+fun underwrite_V : V;
+fun underwrite_V2 : V2;
+fun underwriter_N : N;
+fun undeserved_A : A;
+fun undeserving_A : A;
+fun undesigned_A : A;
+fun undesirable_A : A;
+fun undesirable_N : N;
+fun undetected_A : A;
+fun undetermined_A : A;
+fun undeterred_A : A;
+fun undeveloped_A : A;
+fun undiagnosed_A : A;
+fun undifferentiated_A : A;
+fun undigested_A : A;
+fun undignified_A : A;
+fun undiluted_A : A;
+fun undiminished_A : A;
+fun undimmed_A : A;
+fun undiplomatic_A : A;
+fun undiplomatically_Adv : Adv;
+fun undischarged_A : A;
+fun undisciplined_A : A;
+fun undisclosed_A : A;
+fun undiscovered_A : A;
+fun undiscriminating_A : A;
+fun undisguised_A : A;
+fun undismayed_A : A;
+fun undisputed_A : A;
+fun undissolved_A : A;
+fun undistinguishable_A : A;
+fun undistinguished_A : A;
+fun undistributed_A : A;
+fun undisturbed_A : A;
+fun undivided_A : A;
+fun undo_V2 : V2;
+fun undock_V : V;
+fun undock_V2 : V2;
+fun undocumented_A : A;
+fun undogmatic_A : A;
+fun undoing_N : N;
+fun undomesticated_A : A;
+fun undone_A : A;
+fun undoubted_A : A;
+fun undramatic_A : A;
+fun undramatically_Adv : Adv;
+fun undreamed_A : A;
+fun undreamed_of_A : A;
+fun undreamt_A : A;
+fun undress_N : N;
+fun undress_V : V;
+fun undress_V2 : V2;
+fun undrinkable_A : A;
+fun undue_A : A;
+fun undulate_V : V;
+fun undulation_N : N;
+fun unduly_Adv : Adv;
+fun undying_A : A;
+fun unearned_A : A;
+fun unearth_V2 : V2;
+fun unearthly_A : A;
+fun unease_N : N;
+fun uneasiness_N : N;
+fun uneasy_A : A;
+fun uneatable_A : A;
+fun uneaten_A : A;
+fun uneconomic_A : A;
+fun uneconomical_A : A;
+fun unedifying_A : A;
+fun unedited_A : A;
+fun uneducated_A : A;
+fun uneffective_A : A;
+fun unelaborated_A : A;
+fun unemotional_A : A;
+fun unemployable_A : A;
+fun unemployed_A : A;
+fun unemployment_N : N;
+fun unending_A : A;
+fun unendurable_A : A;
+fun unenlightened_A : A;
+fun unenterprising_A : A;
+fun unenthusiastic_A : A;
+fun unenthusiastically_Adv : Adv;
+fun unenviable_A : A;
+fun unequal_A : A;
+fun unequalled_A : A;
+fun unequipped_A : A;
+fun unequivocal_A : A;
+fun unerring_A : A;
+fun unesco_PN : PN;
+fun unethical_A : A;
+fun uneven_A : A;
+fun uneventful_A : A;
+fun unexampled_A : A;
+fun unexceeded_A : A;
+fun unexceptionable_A : A;
+fun unexceptional_A : A;
+fun unexciting_A : A;
+fun unexpected_A : A;
+fun unexpectedness_N : N;
+fun unexpired_A : A;
+fun unexplained_A : A;
+fun unexplored_A : A;
+fun unexposed_A : A;
+fun unexpressed_A : A;
+fun unexpurgated_A : A;
+fun unfailing_A : A;
+fun unfair_A : A;
+fun unfairness_N : N;
+fun unfaithful_A : A;
+fun unfaithfulness_N : N;
+fun unfaltering_A : A;
+fun unfamiliar_A : A;
+fun unfamiliarity_N : N;
+fun unfashionable_A : A;
+fun unfasten_V : V;
+fun unfasten_V2 : V2;
+fun unfathomable_A : A;
+fun unfathomed_A : A;
+fun unfavourable_A : A;
+fun unfaze_V2 : V2;
+fun unfed_A : A;
+fun unfeeling_A : A;
+fun unfeigned_A : A;
+fun unfermented_A : A;
+fun unfertilized_A : A;
+fun unfettered_A : A;
+fun unfinished_A : A;
+fun unfit_A : A;
+fun unfit_V2 : V2;
+fun unflagging_A : A;
+fun unflappable_A : A;
+fun unfledged_A : A;
+fun unflinching_A : A;
+fun unflurried_A : A;
+fun unfold_V : V;
+fun unfold_V2 : V2;
+fun unforeseeable_A : A;
+fun unforeseen_A : A;
+fun unforgettable_A : A;
+fun unforgivable_A : A;
+fun unforgiving_A : A;
+fun unformed_A : A;
+fun unforthcoming_A : A;
+fun unfortunate_A : A;
+fun unfortunate_N : N;
+fun unfounded_A : A;
+fun unframed_A : A;
+fun unfrequented_A : A;
+fun unfriendliness_N : N;
+fun unfriendly_A : A;
+fun unfrock_V2 : V2;
+fun unfruitful_A : A;
+fun unfulfilled_A : A;
+fun unfurl_V : V;
+fun unfurl_V2 : V2;
+fun unfurnished_A : A;
+fun ungainly_A : A;
+fun ungenerous_A : A;
+fun ungentle_A : A;
+fun ungentlemanly_A : A;
+fun unglazed_A : A;
+fun ungodly_A : A;
+fun ungovernable_A : A;
+fun ungraceful_A : A;
+fun ungracious_A : A;
+fun ungrammatical_A : A;
+fun ungrateful_A : A;
+fun ungratefulness_N : N;
+fun ungrudging_A : A;
+fun unguarded_A : A;
+fun unguent_N : N;
+fun unhallowed_A : A;
+fun unhampered_A : A;
+fun unhand_V2 : V2;
+fun unhappily_Adv : Adv;
+fun unhappiness_N : N;
+fun unhappy_A : A;
+fun unharmed_A : A;
+fun unhealed_A : A;
+fun unhealthy_A : A;
+fun unheard_A : A;
+fun unheard_of_A : A;
+fun unhearing_A : A;
+fun unheated_A : A;
+fun unheeded_A : A;
+fun unhelpful_A : A;
+fun unheralded_A : A;
+fun unhesitating_A : A;
+fun unhindered_A : A;
+fun unhinge_V2 : V2;
+fun unhitch_V : V;
+fun unhitch_V2 : V2;
+fun unholy_A : A;
+fun unhook_V2 : V2;
+fun unhoped_for_A : A;
+fun unhorse_V2 : V2;
+fun unhurried_A : A;
+fun unhurt_A : A;
+fun unhygienic_A : A;
+fun unhygienically_Adv : Adv;
+fun unicef_PN : PN;
+fun unicorn_N : N;
+fun unidentifiable_A : A;
+fun unidentified_A : A;
+fun unification_N : N;
+fun uniform_A : A;
+fun uniform_N : N;
+fun uniformed_A : A;
+fun uniformity_N : N;
+fun unify_V2 : V2;
+fun unilateral_A : A;
+fun unilateralism_N : N;
+fun unilateralist_A : A;
+fun unilateralist_N : N;
+fun unimaginable_A : A;
+fun unimaginative_A : A;
+fun unimpaired_A : A;
+fun unimpeachable_A : A;
+fun unimpeded_A : A;
+fun unimportant_A : A;
+fun unimpressed_A : A;
+fun unimpressive_A : A;
+fun uninfluenced_A : A;
+fun uninformative_A : A;
+fun uninformed_A : A;
+fun uninhabitable_A : A;
+fun uninhabited_A : A;
+fun uninhibited_A : A;
+fun uninitiated_A : A;
+fun uninjured_A : A;
+fun uninspired_A : A;
+fun uninspiring_A : A;
+fun uninsured_A : A;
+fun unintelligent_A : A;
+fun unintelligible_A : A;
+fun unintended_A : A;
+fun unintentional_A : A;
+fun uninterested_A : A;
+fun uninteresting_A : A;
+fun uninterrupted_A : A;
+fun uninvited_A : A;
+fun uninviting_A : A;
+fun union_N : N;
+fun unionist_N : N;
+fun unique_A : A;
+fun uniqueness_N : N;
+fun unisex_A : A;
+fun unison_N : N;
+fun unit_N : N;
+fun unit_V2V : V2V;
+fun unitarian_A : A;
+fun unitarian_N : N;
+fun unitarianism_N : N;
+fun unitary_A : A;
+fun unite_V : V;
+fun unite_V2 : V2;
+fun united_A : A;
+fun unity_N : N;
+fun univ_PN : PN;
+fun universal_A : A;
+fun universality_N : N;
+fun universe_N : N;
+fun university_N : N;
+fun unjust_A : A;
+fun unjustifiable_A : A;
+fun unjustified_A : A;
+fun unkempt_A : A;
+fun unkind_A : A;
+fun unkissed_A : A;
+fun unknowable_A : A;
+fun unknowing_A : A;
+fun unknown_A : A;
+fun unknown_N : N;
+fun unlabelled_A : A;
+fun unladylike_A : A;
+fun unlamented_A : A;
+fun unlatched_A : A;
+fun unlawful_A : A;
+fun unlearn_V2 : V2;
+fun unleash_V2 : V2;
+fun unleavened_A : A;
+fun unless_Prep : Prep ;
+fun unlettered_A : A;
+fun unlicensed_A : A;
+fun unlighted_A : A;
+fun unlikable_A : A;
+fun unlike_A : A;
+fun unlike_Prep : Prep ;
+fun unlikely_A : A;
+fun unlimited_A : A;
+fun unlined_A : A;
+fun unlisted_A : A;
+fun unlit_A : A;
+fun unliterary_A : A;
+fun unload_V : V;
+fun unload_V2 : V2;
+fun unlocated_A : A;
+fun unlock_V : V;
+fun unlock_V2 : V2;
+fun unlooked_for_A : A;
+fun unloose_V2 : V2;
+fun unlovable_A : A;
+fun unloved_A : A;
+fun unlovely_A : A;
+fun unlucky_A : A;
+fun unmade_A : A;
+fun unman_V2 : V2;
+fun unmanageable_A : A;
+fun unmanly_A : A;
+fun unmanned_A : A;
+fun unmannered_A : A;
+fun unmannerly_A : A;
+fun unmarked_A : A;
+fun unmarried_A : A;
+fun unmask_V : V;
+fun unmask_V2 : V2;
+fun unmatchable_A : A;
+fun unmatched_A : A;
+fun unmechanized_A : A;
+fun unmemorable_A : A;
+fun unmentionable_A : A;
+fun unmerciful_A : A;
+fun unmerited_A : A;
+fun unmindful_A : A;
+fun unmingled_A : A;
+fun unmistakable_A : A;
+fun unmitigated_A : A;
+fun unmixed_A : A;
+fun unmodernized_A : A;
+fun unmodified_A : A;
+fun unmolested_A : A;
+fun unmourned_A : A;
+fun unmovable_A : A;
+fun unmoved_A : A;
+fun unmoving_A : A;
+fun unmusical_A : A;
+fun unnamed_A : A;
+fun unnatural_A : A;
+fun unnecessary_A : A;
+fun unnerve_V2 : V2;
+fun unnoticeable_A : A;
+fun unnoticed_A : A;
+fun unnumbered_A : A;
+fun unobjectionable_A : A;
+fun unobservant_A : A;
+fun unobserved_A : A;
+fun unobtainable_A : A;
+fun unobtrusive_A : A;
+fun unobvious_A : A;
+fun unoccupied_A : A;
+fun unofficial_A : A;
+fun unopen_A : A;
+fun unopened_A : A;
+fun unopposed_A : A;
+fun unoriginal_A : A;
+fun unorthodox_A : A;
+fun unpack_V : V;
+fun unpack_V2 : V2;
+fun unpaid_A : A;
+fun unpainted_A : A;
+fun unpalatable_A : A;
+fun unparalleled_A : A;
+fun unpardonable_A : A;
+fun unparliamentary_A : A;
+fun unpatriotic_A : A;
+fun unpatriotically_Adv : Adv;
+fun unpaved_A : A;
+fun unpersuaded_A : A;
+fun unperturbed_A : A;
+fun unpick_V : V;
+fun unpick_V2 : V2;
+fun unplaced_A : A;
+fun unplanned_A : A;
+fun unplayable_A : A;
+fun unpleasant_A : A;
+fun unpleasantness_N : N;
+fun unplug_V : V;
+fun unplug_V2 : V2;
+fun unplumbed_A : A;
+fun unpolluted_A : A;
+fun unpompous_A : A;
+fun unpopular_A : A;
+fun unpopularity_N : N;
+fun unpractised_A : A;
+fun unprecedented_A : A;
+fun unpredictability_N : N;
+fun unpredictable_A : A;
+fun unpredicted_A : A;
+fun unprejudiced_A : A;
+fun unpremeditated_A : A;
+fun unprepared_A : A;
+fun unprepossessing_A : A;
+fun unpretentious_A : A;
+fun unprincipled_A : A;
+fun unprintable_A : A;
+fun unproductive_A : A;
+fun unprofessional_A : A;
+fun unprofitable_A : A;
+fun unpromising_A : A;
+fun unprompted_A : A;
+fun unpronounceable_A : A;
+fun unpropitious_A : A;
+fun unprotected_A : A;
+fun unproved_A : A;
+fun unproven_A : A;
+fun unprovided_A : A;
+fun unprovoked_A : A;
+fun unpublished_A : A;
+fun unpunished_A : A;
+fun unputdownable_A : A;
+fun unqualified_A : A;
+fun unquestionable_A : A;
+fun unquestioned_A : A;
+fun unquestioning_A : A;
+fun unquiet_A : A;
+fun unquotable_A : A;
+fun unquote_Adv : Adv;
+fun unravel_V : V;
+fun unravel_V2 : V2;
+fun unreached_A : A;
+fun unread_A : A;
+fun unreadable_A : A;
+fun unready_A : A;
+fun unreal_A : A;
+fun unrealistic_A : A;
+fun unrealistically_Adv : Adv;
+fun unreality_N : N;
+fun unrealized_A : A;
+fun unreasonable_A : A;
+fun unreasoning_A : A;
+fun unreceptive_A : A;
+fun unreciprocated_A : A;
+fun unrecognizable_A : A;
+fun unrecognized_A : A;
+fun unreconciled_A : A;
+fun unrecorded_A : A;
+fun unredeemable_A : A;
+fun unrefined_A : A;
+fun unreflective_A : A;
+fun unregenerate_A : A;
+fun unregistered_A : A;
+fun unrehearsed_A : A;
+fun unrelated_A : A;
+fun unrelaxed_A : A;
+fun unrelenting_A : A;
+fun unreliable_A : A;
+fun unrelieved_A : A;
+fun unremarkable_A : A;
+fun unremitting_A : A;
+fun unrepeatable_A : A;
+fun unrepentant_A : A;
+fun unrepresentative_A : A;
+fun unrequested_A : A;
+fun unrequited_A : A;
+fun unreserved_A : A;
+fun unresisting_A : A;
+fun unresolved_A : A;
+fun unrest_N : N;
+fun unrestrained_A : A;
+fun unrestricted_A : A;
+fun unrevised_A : A;
+fun unrewarded_A : A;
+fun unrewarding_A : A;
+fun unrhythmical_A : A;
+fun unrighteous_A : A;
+fun unripe_A : A;
+fun unripened_A : A;
+fun unrivalled_A : A;
+fun unroll_V : V;
+fun unroll_V2 : V2;
+fun unromantic_A : A;
+fun unromantically_Adv : Adv;
+fun unruffled_A : A;
+fun unruly_A : A;
+fun unsaddle_V2 : V2;
+fun unsaddled_A : A;
+fun unsafe_A : A;
+fun unsaid_A : A;
+fun unsaleable_A : A;
+fun unsalted_A : A;
+fun unsatisfactory_A : A;
+fun unsatisfied_A : A;
+fun unsatisfying_A : A;
+fun unsaturated_A : A;
+fun unsavoury_A : A;
+fun unsay_V2 : V2;
+fun unscathed_A : A;
+fun unscheduled_A : A;
+fun unscientific_A : A;
+fun unscientifically_Adv : Adv;
+fun unscramble_V2 : V2;
+fun unscrew_V : V;
+fun unscrew_V2 : V2;
+fun unscripted_A : A;
+fun unscrupulous_A : A;
+fun unsealed_A : A;
+fun unseasonable_A : A;
+fun unseasoned_A : A;
+fun unseat_V2 : V2;
+fun unseaworthy_A : A;
+fun unsecured_A : A;
+fun unseeded_A : A;
+fun unseeing_A : A;
+fun unseemly_A : A;
+fun unseen_A : A;
+fun unseen_N : N;
+fun unselected_A : A;
+fun unselective_A : A;
+fun unselfconscious_A : A;
+fun unselfish_A : A;
+fun unselfishness_N : N;
+fun unsettle_V2 : V2;
+fun unsex_V2 : V2;
+fun unsexed_A : A;
+fun unshakable_A : A;
+fun unshaved_A : A;
+fun unshaven_A : A;
+fun unsheathe_V2 : V2;
+fun unshielded_A : A;
+fun unshrinkable_A : A;
+fun unshrinking_A : A;
+fun unshuttered_A : A;
+fun unsighted_A : A;
+fun unsightliness_N : N;
+fun unsightly_A : A;
+fun unsigned_A : A;
+fun unsilenced_A : A;
+fun unsinkable_A : A;
+fun unskilled_A : A;
+fun unsmiling_A : A;
+fun unsociable_A : A;
+fun unsocial_A : A;
+fun unsold_A : A;
+fun unsolicited_A : A;
+fun unsolved_A : A;
+fun unsophisticated_A : A;
+fun unsound_A : A;
+fun unsparing_A : A;
+fun unspeakable_A : A;
+fun unspecialized_A : A;
+fun unspecific_A : A;
+fun unspecifically_Adv : Adv;
+fun unspecified_A : A;
+fun unspectacular_A : A;
+fun unspoiled_A : A;
+fun unspoilt_A : A;
+fun unspoken_A : A;
+fun unsporting_A : A;
+fun unsportsmanlike_A : A;
+fun unspotted_A : A;
+fun unstable_A : A;
+fun unstartling_A : A;
+fun unstated_A : A;
+fun unstatesmanlike_A : A;
+fun unsteady_A : A;
+fun unstoppable_A : A;
+fun unstrained_A : A;
+fun unstressed_A : A;
+fun unstructured_A : A;
+fun unstrung_A : A;
+fun unstuck_A : A;
+fun unstudied_A : A;
+fun unsubtle_A : A;
+fun unsuccessful_A : A;
+fun unsuitability_N : N;
+fun unsuitable_A : A;
+fun unsuited_A : A;
+fun unsullied_A : A;
+fun unsung_A : A;
+fun unsupervised_A : A;
+fun unsupported_A : A;
+fun unsure_A : A;
+fun unsurpassed_A : A;
+fun unsuspected_A : A;
+fun unsuspecting_A : A;
+fun unsuspicious_A : A;
+fun unswayed_A : A;
+fun unsweetened_A : A;
+fun unswept_A : A;
+fun unswerving_A : A;
+fun unsyllabic_A : A;
+fun unsympathetic_A : A;
+fun unsympathetically_Adv : Adv;
+fun unsystematic_A : A;
+fun unsystematically_Adv : Adv;
+fun untainted_A : A;
+fun untamed_A : A;
+fun untapped_A : A;
+fun untarnished_A : A;
+fun untaxed_A : A;
+fun untenable_A : A;
+fun untenanted_A : A;
+fun untended_A : A;
+fun untested_A : A;
+fun untethered_A : A;
+fun unthinkable_A : A;
+fun unthinking_A : A;
+fun unthought_of_A : A;
+fun untidily_Adv : Adv;
+fun untidiness_N : N;
+fun untidy_A : A;
+fun untie_V : V;
+fun untie_V2 : V2;
+fun until_Prep : Prep ;
+fun untimely_A : A;
+fun untiring_A : A;
+fun untitled_A : A;
+fun untold_A : A;
+fun untouchable_A : A;
+fun untouchable_N : N;
+fun untouched_A : A;
+fun untoward_A : A;
+fun untrained_A : A;
+fun untrammelled_A : A;
+fun untranslatable_A : A;
+fun untreated_A : A;
+fun untried_A : A;
+fun untroubled_A : A;
+fun untrue_A : A;
+fun untruly_Adv : Adv;
+fun untrustworthy_A : A;
+fun untruth_N : N;
+fun untruthful_A : A;
+fun untucked_A : A;
+fun unturned_A : A;
+fun untutored_A : A;
+fun untwisted_A : A;
+fun untypical_A : A;
+fun unused_A : A;
+fun unusual_A : A;
+fun unutterable_A : A;
+fun unvaried_A : A;
+fun unvarnished_A : A;
+fun unvarying_A : A;
+fun unveil_V : V;
+fun unveil_V2 : V2;
+fun unverified_A : A;
+fun unversed_A : A;
+fun unvigilant_A : A;
+fun unvoiced_A : A;
+fun unwanted_A : A;
+fun unwarrantably_Adv : Adv;
+fun unwarranted_A : A;
+fun unwary_A : A;
+fun unwashed_A : A;
+fun unwavering_A : A;
+fun unweaned_A : A;
+fun unwearied_A : A;
+fun unwed_A : A;
+fun unwelcome_A : A;
+fun unwell_A : A;
+fun unwholesome_A : A;
+fun unwieldiness_N : N;
+fun unwieldy_A : A;
+fun unwilling_A : A;
+fun unwillingness_N : N;
+fun unwind_V : V;
+fun unwind_V2 : V2;
+fun unwise_A : A;
+fun unwitnessed_A : A;
+fun unwitting_A : A;
+fun unwonted_A : A;
+fun unworkable_A : A;
+fun unworkmanlike_A : A;
+fun unworldly_A : A;
+fun unworn_A : A;
+fun unworried_A : A;
+fun unworthiness_N : N;
+fun unworthy_A : A;
+fun unwrap_V : V;
+fun unwrap_V2 : V2;
+fun unwritten_A : A;
+fun unyielding_A : A;
+fun unzip_V2 : V2;
+fun up_Adv : Adv;
+fun up_Prep : Prep ;
+fun up_V : V;
+fun up_V2 : V2;
+fun up_and_coming_A : A;
+fun up_beat_N : N;
+fun up_holland_PN : PN;
+fun up_market_A : A;
+fun up_to_date_A : A;
+fun up_to_the_minute_A : A;
+fun upbraid_V2 : V2;
+fun upbraiding_N : N;
+fun upbringing_N : N;
+fun upcountry_A : A;
+fun upcountry_Adv : Adv;
+fun update_V2 : V2;
+fun upgrade_N : N;
+fun upgrade_V2 : V2;
+fun upheaval_N : N;
+fun uphill_A : A;
+fun uphill_Adv : Adv;
+fun uphold_V2 : V2;
+fun upholster_V2 : V2;
+fun upholsterer_N : N;
+fun upholstery_N : N;
+fun upkeep_N : N;
+fun upland_N : N;
+fun uplift_N : N;
+fun uplift_V2 : V2;
+fun upmost_A : A;
+fun upon_Prep : Prep ;
+fun upper_A : A;
+fun upper_N : N;
+fun uppercut_N : N;
+fun uppermost_A : A;
+fun uppermost_Adv : Adv;
+fun uppish_A : A;
+fun uppishness_N : N;
+fun uppity_A : A;
+fun upright_A : A;
+fun upright_N : N;
+fun uprightness_N : N;
+fun uprising_N : N;
+fun uproar_N : N;
+fun uproarious_A : A;
+fun uproot_V2 : V2;
+fun upset_N : N;
+fun upset_V : V;
+fun upset_V2 : V2;
+fun upshot_N : N;
+fun upside_down_Adv : Adv;
+fun upstage_A : A;
+fun upstage_Adv : Adv;
+fun upstage_V2 : V2;
+fun upstairs_A : A;
+fun upstairs_Adv : Adv;
+fun upstanding_A : A;
+fun upstart_A : A;
+fun upstart_N : N;
+fun upstream_Adv : Adv;
+fun upsurge_N : N;
+fun uptake_N : N;
+fun uptight_A : A;
+fun upton_PN : PN;
+fun uptown_A : A;
+fun uptown_Adv : Adv;
+fun upturn_N : N;
+fun upturned_A : A;
+fun upward_A : A;
+fun upward_Adv : Adv;
+fun upwards_Adv : Adv;
+fun uranium_N : N;
+fun uranus_PN : PN;
+fun urban_A : A;
+fun urbane_A : A;
+fun urbanity_N : N;
+fun urbanization_N : N;
+fun urbanize_V2 : V2;
+fun urchin_N : N;
+fun urdu_A : A;
+fun urdu_N : N;
+fun urge_N : N;
+fun urge_V2 : V2;
+fun urge_V2V : V2V;
+fun urge_VS : VS;
+fun urgency_N : N;
+fun urgent_A : A;
+fun urging_N : N;
+fun uric_A : A;
+fun urinal_N : N;
+fun urinary_A : A;
+fun urinate_V : V;
+fun urine_N : N;
+fun urn_N : N;
+fun ursula_PN : PN;
+fun uruguay_PN : PN;
+fun uruguayan_A : A;
+fun uruguayan_N : N;
+fun urumchi_PN : PN;
+fun us_PN : PN;
+fun usa_PN : PN;
+fun usable_A : A;
+fun usaf_N : N;
+fun usage_N : N;
+fun use_N : N;
+fun use_V : V;
+fun use_V2 : V2;
+fun use_VV : VV;
+fun used_A : A;
+fun useful_A : A;
+fun usefulness_N : N;
+fun useless_A : A;
+fun uselessness_N : N;
+fun user_N : N;
+fun ushaw_moor_PN : PN;
+fun usher_N : N;
+fun usher_V2 : V2;
+fun usherette_N : N;
+fun usn_N : N;
+fun uss_N : N;
+fun ussr_N : N;
+fun usual_A : A;
+fun usurer_N : N;
+fun usurious_A : A;
+fun usurp_V2 : V2;
+fun usurpation_N : N;
+fun usurper_N : N;
+fun usury_N : N;
+fun utah_PN : PN;
+fun utensil_N : N;
+fun uterine_A : A;
+fun uterus_N : N;
+fun utilitarian_A : A;
+fun utilitarian_N : N;
+fun utilitarianism_N : N;
+fun utility_N : N;
+fun utilizable_A : A;
+fun utilization_N : N;
+fun utilize_V2 : V2;
+fun utmost_A : A;
+fun utmost_N : N;
+fun utopia_N : N;
+fun utopian_A : A;
+fun utrecht_PN : PN;
+fun utter_A : A;
+fun utter_V2 : V2;
+fun utterance_N : N;
+fun uttermost_A : A;
+fun uttermost_N : N;
+fun uttoxeter_PN : PN;
+fun uvula_N : N;
+fun uvular_A : A;
+fun uxorious_A : A;
+fun uxoriousness_N : N;
+fun v_and_a_N : N;
+fun vac_N : N;
+fun vacancy_N : N;
+fun vacant_A : A;
+fun vacate_V2 : V2;
+fun vacation_N : N;
+fun vacation_V : V;
+fun vacationist_N : N;
+fun vaccinate_V2 : V2;
+fun vaccination_N : N;
+fun vaccine_N : N;
+fun vacillate_V : V;
+fun vacillation_N : N;
+fun vacuity_N : N;
+fun vacuous_A : A;
+fun vacuum_N : N;
+fun vacuum_V2 : V2;
+fun vade_mecum_N : N;
+fun vagabond_A : A;
+fun vagabond_N : N;
+fun vagary_N : N;
+fun vagina_N : N;
+fun vaginal_A : A;
+fun vagrancy_N : N;
+fun vagrant_A : A;
+fun vagrant_N : N;
+fun vague_A : A;
+fun vagueness_N : N;
+fun vain_A : A;
+fun vainglorious_A : A;
+fun vainglory_N : N;
+fun valance_N : N;
+fun vale_N : N;
+fun valediction_N : N;
+fun valedictory_A : A;
+fun valence_N : N;
+fun valencia_PN : PN;
+fun valenciennes_PN : PN;
+fun valency_N : N;
+fun valentine_N : N;
+fun valerian_N : N;
+fun valet_N : N;
+fun valet_V2 : V2;
+fun valetudinarian_A : A;
+fun valetudinarian_N : N;
+fun valiant_A : A;
+fun valid_A : A;
+fun validate_V2 : V2;
+fun validity_N : N;
+fun valise_N : N;
+fun valladolid_PN : PN;
+fun valley_N : N;
+fun valorous_A : A;
+fun valour_N : N;
+fun valuable_A : A;
+fun valuable_N : N;
+fun valuation_N : N;
+fun value_N : N;
+fun value_V : V;
+fun value_V2 : V2;
+fun value_added_A : A;
+fun valueless_A : A;
+fun valuer_N : N;
+fun valve_N : N;
+fun valvular_A : A;
+fun vamoose_V : V;
+fun vamp_N : N;
+fun vamp_V : V;
+fun vamp_V2 : V2;
+fun vampire_N : N;
+fun van_N : N;
+fun vancouver_PN : PN;
+fun vandal_N : N;
+fun vandalism_N : N;
+fun vane_N : N;
+fun vanessa_PN : PN;
+fun vanguard_N : N;
+fun vanilla_N : N;
+fun vanish_V : V;
+fun vanity_N : N;
+fun vanquish_V2 : V2;
+fun vantage_N : N;
+fun vantage_point_N : N;
+fun vapid_A : A;
+fun vapidity_N : N;
+fun vapidness_N : N;
+fun vaporization_N : N;
+fun vaporize_V : V;
+fun vaporize_V2 : V2;
+fun vaporous_A : A;
+fun vapour_N : N;
+fun vapour_bath_N : N;
+fun varanasi_PN : PN;
+fun variability_N : N;
+fun variable_A : A;
+fun variable_N : N;
+fun variableness_N : N;
+fun variance_N : N;
+fun variant_A : A;
+fun variant_N : N;
+fun variation_N : N;
+fun varicoloured_A : A;
+fun varicose_A : A;
+fun varied_A : A;
+fun variegated_A : A;
+fun variegation_N : N;
+fun variety_N : N;
+fun variform_A : A;
+fun variorum_A : A;
+fun various_A : A;
+fun varlet_N : N;
+fun varnish_N : N;
+fun varnish_V2 : V2;
+fun varsity_N : N;
+fun vary_V : V;
+fun vary_V2 : V2;
+fun vascular_A : A;
+fun vase_N : N;
+fun vasectomy_N : N;
+fun vaseline_N : N;
+fun vassal_N : N;
+fun vassalage_N : N;
+fun vast_A : A;
+fun vasteras_PN : PN;
+fun vastness_N : N;
+fun vat_N : N;
+fun vatican_N : N;
+fun vaudeville_N : N;
+fun vault_N : N;
+fun vault_V : V;
+fun vault_V2 : V2;
+fun vaulted_A : A;
+fun vaulter_N : N;
+fun vaulting_horse_N : N;
+fun vaunt_N : N;
+fun vaunt_V : V;
+fun vaunt_V2 : V2;
+fun vaunter_N : N;
+fun vauntingly_Adv : Adv;
+fun vc_N : N;
+fun vd_N : N;
+fun veal_N : N;
+fun vector_N : N;
+fun veer_V : V;
+fun vegetable_A : A;
+fun vegetable_N : N;
+fun vegetarian_N : N;
+fun vegetate_V : V;
+fun vegetation_N : N;
+fun vehemence_N : N;
+fun vehement_A : A;
+fun vehicle_N : N;
+fun vehicular_A : A;
+fun veil_N : N;
+fun veil_V2 : V2;
+fun veiling_N : N;
+fun vein_N : N;
+fun veined_A : A;
+fun veld_N : N;
+fun vellum_N : N;
+fun velocipede_N : N;
+fun velocity_N : N;
+fun velour_N : N;
+fun velvet_N : N;
+fun velveteen_N : N;
+fun velvety_A : A;
+fun venal_A : A;
+fun venality_N : N;
+fun vend_V2 : V2;
+fun vendee_N : N;
+fun vender_N : N;
+fun vendetta_N : N;
+fun vendor_N : N;
+fun veneer_N : N;
+fun veneer_V2 : V2;
+fun venerable_A : A;
+fun venerate_V2 : V2;
+fun veneration_N : N;
+fun venereal_A : A;
+fun venetian_A : A;
+fun venezia_PN : PN;
+fun venezuela_PN : PN;
+fun venezuelan_A : A;
+fun venezuelan_N : N;
+fun vengeance_N : N;
+fun vengeful_A : A;
+fun venial_A : A;
+fun venice_PN : PN;
+fun venison_N : N;
+fun venom_N : N;
+fun venomed_A : A;
+fun venomous_A : A;
+fun venous_A : A;
+fun vent_N : N;
+fun vent_V2 : V2;
+fun vent_hole_N : N;
+fun ventilate_V2 : V2;
+fun ventilation_N : N;
+fun ventilator_N : N;
+fun ventnor_PN : PN;
+fun ventral_A : A;
+fun ventricle_N : N;
+fun ventricular_A : A;
+fun ventriloquism_N : N;
+fun ventriloquist_N : N;
+fun venture_N : N;
+fun venture_V : V;
+fun venture_V2 : V2;
+fun venture_VS : VS;
+fun venturesome_A : A;
+fun venturous_A : A;
+fun venue_N : N;
+fun venus_PN : PN;
+fun vera_PN : PN;
+fun veracious_A : A;
+fun veracity_N : N;
+fun veranda_N : N;
+fun verandah_N : N;
+fun verb_N : N;
+fun verbal_A : A;
+fun verbalize_V2 : V2;
+fun verbatim_A : A;
+fun verbatim_Adv : Adv;
+fun verbena_N : N;
+fun verbiage_N : N;
+fun verbose_A : A;
+fun verboseness_N : N;
+fun verbosity_N : N;
+fun verdancy_N : N;
+fun verdant_A : A;
+fun verdict_N : N;
+fun verdigris_N : N;
+fun verdure_N : N;
+fun verey_A : A;
+fun verge_N : N;
+fun verge_V : V;
+fun verger_N : N;
+fun verifiable_A : A;
+fun verification_N : N;
+fun verify_V2 : V2;
+fun verisimilitude_N : N;
+fun veritable_A : A;
+fun verity_N : N;
+fun vermicelli_N : N;
+fun vermiform_A : A;
+fun vermilion_A : A;
+fun vermilion_N : N;
+fun vermin_N : N;
+fun verminous_A : A;
+fun vermont_PN : PN;
+fun vermouth_N : N;
+fun vernacular_A : A;
+fun vernacular_N : N;
+fun vernal_A : A;
+fun vernon_PN : PN;
+fun verona_PN : PN;
+fun veronica_N : N;
+fun veronica_PN : PN;
+fun verruca_N : N;
+fun versatile_A : A;
+fun versatility_N : N;
+fun verse_N : N;
+fun versed_A : A;
+fun versification_N : N;
+fun versifier_N : N;
+fun versify_V : V;
+fun versify_V2 : V2;
+fun version_N : N;
+fun verso_N : N;
+fun versus_Prep : Prep ;
+fun vertebra_N : N;
+fun vertebrate_A : A;
+fun vertebrate_N : N;
+fun vertex_N : N;
+fun vertical_A : A;
+fun vertical_N : N;
+fun vertiginous_A : A;
+fun vertigo_N : N;
+fun verve_N : N;
+fun very_AdA : AdA;
+fun vesicle_N : N;
+fun vesicular_A : A;
+fun vessel_N : N;
+fun vest_N : N;
+fun vest_V : V;
+fun vest_V2 : V2;
+fun vestal_A : A;
+fun vestal_N : N;
+fun vestibule_N : N;
+fun vestige_N : N;
+fun vestigial_A : A;
+fun vestment_N : N;
+fun vestry_N : N;
+fun vestryman_N : N;
+fun vesture_N : N;
+fun vesture_V2 : V2;
+fun vet_N : N;
+fun vet_V2 : V2;
+fun vetch_N : N;
+fun veteran_N : N;
+fun veterinary_A : A;
+fun veto_N : N;
+fun veto_V : V;
+fun veto_V2 : V2;
+fun vex_V2 : V2;
+fun vex_V2V : V2V;
+fun vexation_N : N;
+fun vexatious_A : A;
+fun vhf_PN : PN;
+fun via_Prep : Prep ;
+fun via_media_N : N;
+fun viability_N : N;
+fun viable_A : A;
+fun viaduct_N : N;
+fun vial_N : N;
+fun vibrant_A : A;
+fun vibraphone_N : N;
+fun vibrate_V : V;
+fun vibrate_V2 : V2;
+fun vibration_N : N;
+fun vibrato_N : N;
+fun vibrator_N : N;
+fun vic_PN : PN;
+fun vicar_N : N;
+fun vicarage_N : N;
+fun vicarious_A : A;
+fun vice_N : N;
+fun vice_versa_Adv : Adv;
+fun vicenza_PN : PN;
+fun viceregal_A : A;
+fun vicereine_N : N;
+fun viceroy_N : N;
+fun vicinity_N : N;
+fun vicious_A : A;
+fun viciousness_N : N;
+fun vicissitude_N : N;
+fun vicky_PN : PN;
+fun victim_N : N;
+fun victimization_N : N;
+fun victimize_V2 : V2;
+fun victor_N : N;
+fun victor_PN : PN;
+fun victoria_N : N;
+fun victoria_PN : PN;
+fun victorian_A : A;
+fun victorian_N : N;
+fun victoriana_N : N;
+fun victorious_A : A;
+fun victory_N : N;
+fun victual_N : N;
+fun victual_V : V;
+fun victual_V2 : V2;
+fun victualler_N : N;
+fun vicuna_N : N;
+fun videlicet_Adv : Adv;
+fun video_N : N;
+fun videotape_N : N;
+fun videotape_V2 : V2;
+fun vie_V : V;
+fun vienna_PN : PN;
+fun vietnam_PN : PN;
+fun vietnamese_A : A;
+fun vietnamese_N : N;
+fun view_N : N;
+fun view_V2 : V2;
+fun viewer_N : N;
+fun viewfinder_N : N;
+fun viewless_A : A;
+fun viewpark_PN : PN;
+fun viewpoint_N : N;
+fun vigil_N : N;
+fun vigilance_N : N;
+fun vigilant_A : A;
+fun vigilante_N : N;
+fun vignette_N : N;
+fun vigo_PN : PN;
+fun vigorous_A : A;
+fun vigour_N : N;
+fun viking_N : N;
+fun vile_A : A;
+fun vileness_N : N;
+fun vilification_N : N;
+fun vilify_V2 : V2;
+fun villa_N : N;
+fun village_N : N;
+fun villager_N : N;
+fun villain_N : N;
+fun villainess_N : N;
+fun villainous_A : A;
+fun villainy_N : N;
+fun villein_N : N;
+fun villeinage_N : N;
+fun vim_N : N;
+fun vinaigrette_N : N;
+fun vince_PN : PN;
+fun vincent_PN : PN;
+fun vindicate_V2 : V2;
+fun vindication_N : N;
+fun vindictive_A : A;
+fun vindictiveness_N : N;
+fun vine_N : N;
+fun vinegar_N : N;
+fun vinegary_A : A;
+fun vinery_N : N;
+fun vineyard_N : N;
+fun vino_N : N;
+fun vinous_A : A;
+fun vintage_N : N;
+fun vintner_N : N;
+fun vinyl_N : N;
+fun viol_N : N;
+fun viola_N : N;
+fun viola_PN : PN;
+fun violate_V2 : V2;
+fun violation_N : N;
+fun violence_N : N;
+fun violent_A : A;
+fun violet_N : N;
+fun violet_PN : PN;
+fun violin_N : N;
+fun violinist_N : N;
+fun vip_N : N;
+fun viper_N : N;
+fun virago_N : N;
+fun virgin_A : A;
+fun virgin_N : N;
+fun virginal_A : A;
+fun virginal_N : N;
+fun virginia_N : N;
+fun virginia_PN : PN;
+fun virginia_water_PN : PN;
+fun virginity_N : N;
+fun virgo_PN : PN;
+fun virgule_N : N;
+fun virile_A : A;
+fun virility_N : N;
+fun virology_N : N;
+fun virtu_N : N;
+fun virtual_A : A;
+fun virtue_N : N;
+fun virtuosity_N : N;
+fun virtuoso_N : N;
+fun virtuous_A : A;
+fun virulence_N : N;
+fun virulent_A : A;
+fun virus_N : N;
+fun vis_a_vis_Adv : Adv;
+fun visa_N : N;
+fun visa_V2 : V2;
+fun visage_N : N;
+fun visaged_A : A;
+fun visceral_A : A;
+fun viscid_A : A;
+fun viscosity_N : N;
+fun viscount_N : N;
+fun viscountcy_N : N;
+fun viscountess_N : N;
+fun viscous_A : A;
+fun visibility_N : N;
+fun visible_A : A;
+fun vision_N : N;
+fun visionary_A : A;
+fun visionary_N : N;
+fun visit_N : N;
+fun visit_V : V;
+fun visit_V2 : V2;
+fun visitant_N : N;
+fun visitation_N : N;
+fun visiting_N : N;
+fun visitor_N : N;
+fun visor_N : N;
+fun vista_N : N;
+fun visual_A : A;
+fun visualization_N : N;
+fun visualize_V2 : V2;
+fun vital_A : A;
+fun vitalism_N : N;
+fun vitalist_N : N;
+fun vitality_N : N;
+fun vitalize_V2 : V2;
+fun vitamin_N : N;
+fun vitiate_V2 : V2;
+fun vitoria_PN : PN;
+fun vitreous_A : A;
+fun vitrify_V : V;
+fun vitrify_V2 : V2;
+fun vitriol_N : N;
+fun vitriolic_A : A;
+fun vituperate_V2 : V2;
+fun vituperation_N : N;
+fun vituperative_A : A;
+fun viv_PN : PN;
+fun viva_N : N;
+fun viva_voce_A : A;
+fun viva_voce_Adv : Adv;
+fun viva_voce_N : N;
+fun vivace_Adv : Adv;
+fun vivacious_A : A;
+fun vivacity_N : N;
+fun vivian_PN : PN;
+fun vivid_A : A;
+fun vividness_N : N;
+fun vivien_PN : PN;
+fun vivienne_PN : PN;
+fun viviparous_A : A;
+fun vivisect_V2 : V2;
+fun vivisection_N : N;
+fun vivisectionist_N : N;
+fun vixen_N : N;
+fun vixenish_A : A;
+fun viz_PN : PN;
+fun vizier_N : N;
+fun vocabulary_N : N;
+fun vocal_A : A;
+fun vocalist_N : N;
+fun vocalize_V2 : V2;
+fun vocation_N : N;
+fun vocational_A : A;
+fun vocative_A : A;
+fun vocative_N : N;
+fun vociferate_V : V;
+fun vociferate_V2 : V2;
+fun vociferation_N : N;
+fun vociferous_A : A;
+fun vodka_N : N;
+fun vogue_N : N;
+fun voice_N : N;
+fun voice_V2 : V2;
+fun voiced_A : A;
+fun voiceless_A : A;
+fun void_A : A;
+fun void_N : N;
+fun void_V2 : V2;
+fun voile_N : N;
+fun vol_N : N;
+fun volatile_A : A;
+fun volatility_N : N;
+fun volcanic_A : A;
+fun volcano_N : N;
+fun vole_N : N;
+fun volgograd_PN : PN;
+fun volition_N : N;
+fun volitional_A : A;
+fun volley_N : N;
+fun volley_V : V;
+fun volley_V2 : V2;
+fun volleyball_N : N;
+fun volt_N : N;
+fun voltage_N : N;
+fun volte_face_N : N;
+fun volubility_N : N;
+fun voluble_A : A;
+fun volume_N : N;
+fun voluminous_A : A;
+fun voluntary_A : A;
+fun voluntary_N : N;
+fun volunteer_N : N;
+fun volunteer_V : V;
+fun volunteer_V2 : V2;
+fun volunteer_V2V : V2V;
+fun volunteer_VS : VS;
+fun voluptuary_N : N;
+fun voluptuous_A : A;
+fun voluptuousness_N : N;
+fun volute_N : N;
+fun voluted_A : A;
+fun vomit_N : N;
+fun vomit_V : V;
+fun vomit_V2 : V2;
+fun voodoo_N : N;
+fun voodooism_N : N;
+fun voracious_A : A;
+fun voracity_N : N;
+fun voronezh_PN : PN;
+fun vortex_N : N;
+fun votary_N : N;
+fun vote_N : N;
+fun vote_V : V;
+fun vote_V2 : V2;
+fun vote_VV : VV;
+fun vote_VS : VS;
+fun voteless_A : A;
+fun voter_N : N;
+fun votive_A : A;
+fun vouch_V : V;
+fun voucher_N : N;
+fun vouchsafe_V2 : V2;
+fun vow_N : N;
+fun vow_V2 : V2;
+fun vow_VV : VV;
+fun vow_VS : VS;
+fun vowel_N : N;
+fun vox_N : N;
+fun vox_populi_N : N;
+fun voyage_N : N;
+fun voyage_V : V;
+fun voyager_N : N;
+fun voyeur_N : N;
+fun voyeurism_N : N;
+fun voyeuristic_A : A;
+fun voyeuristically_Adv : Adv;
+fun vp_N : N;
+fun vs_PN : PN;
+fun vs_Prep : Prep ;
+fun vso_PN : PN;
+fun vulcanite_N : N;
+fun vulcanization_N : N;
+fun vulcanize_V2 : V2;
+fun vulgar_A : A;
+fun vulgarian_N : N;
+fun vulgarism_N : N;
+fun vulgarity_N : N;
+fun vulgarization_N : N;
+fun vulgarize_V2 : V2;
+fun vulgate_N : N;
+fun vulnerability_N : N;
+fun vulnerable_A : A;
+fun vulpine_A : A;
+fun vulture_N : N;
+fun vulva_N : N;
+fun wad_N : N;
+fun wad_V2 : V2;
+fun wad_VS : VS;
+fun wadding_N : N;
+fun waddle_N : N;
+fun waddle_V : V;
+fun wade_V : V;
+fun wade_V2 : V2;
+fun wader_N : N;
+fun wadi_N : N;
+fun wafer_N : N;
+fun waffle_N : N;
+fun waffle_V : V;
+fun waffle_V2 : V2;
+fun waft_N : N;
+fun waft_V2 : V2;
+fun wag_N : N;
+fun wag_V : V;
+fun wag_V2 : V2;
+fun wage_N : N;
+fun wage_V2 : V2;
+fun wage_claim_N : N;
+fun wage_earner_N : N;
+fun wage_freeze_N : N;
+fun wager_N : N;
+fun wager_V : V;
+fun wager_V2 : V2;
+fun waggery_N : N;
+fun waggish_A : A;
+fun waggishness_N : N;
+fun waggle_V : V;
+fun waggle_V2 : V2;
+fun waggon_N : N;
+fun waggoner_N : N;
+fun wagon_lit_N : N;
+fun wagtail_N : N;
+fun waif_N : N;
+fun wail_N : N;
+fun wail_V : V;
+fun wail_V2 : V2;
+fun wain_N : N;
+fun wainscot_N : N;
+fun wainscoted_A : A;
+fun waist_N : N;
+fun waist_deep_A : A;
+fun waist_deep_Adv : Adv;
+fun waist_high_A : A;
+fun waist_high_Adv : Adv;
+fun waistband_N : N;
+fun waistcoat_N : N;
+fun waistline_N : N;
+fun wait_N : N;
+fun wait_V : V;
+fun wait_V2 : V2;
+fun wait_VV : VV;
+fun waiter_N : N;
+fun waiting_list_N : N;
+fun waiting_room_N : N;
+fun waitress_N : N;
+fun waive_V2 : V2;
+fun waiver_N : N;
+fun waiver_V : V;
+fun wake_N : N;
+fun wake_V : V;
+fun wake_V2 : V2;
+fun wakefield_PN : PN;
+fun wakeful_A : A;
+fun wakefulness_N : N;
+fun waken_V : V;
+fun waken_V2 : V2;
+fun waking_A : A;
+fun wale_N : N;
+fun wales_PN : PN;
+fun walk_N : N;
+fun walk_V : V;
+fun walk_V2 : V2;
+fun walkabout_N : N;
+fun walkaway_N : N;
+fun walker_N : N;
+fun walkie_talkie_N : N;
+fun walking_N : N;
+fun walkout_N : N;
+fun walkover_N : N;
+fun wall_N : N;
+fun wall_V2 : V2;
+fun wall_eyed_A : A;
+fun wall_painting_N : N;
+fun wall_street_PN : PN;
+fun wallaby_N : N;
+fun wallace_PN : PN;
+fun wallah_N : N;
+fun wallasey_PN : PN;
+fun wallet_N : N;
+fun wallflower_N : N;
+fun wallingford_PN : PN;
+fun wallop_N : N;
+fun wallop_V2 : V2;
+fun walloping_A : A;
+fun wallow_N : N;
+fun wallow_V : V;
+fun wallpaper_N : N;
+fun wallsend_PN : PN;
+fun wally_PN : PN;
+fun walnut_N : N;
+fun walrus_N : N;
+fun walsall_PN : PN;
+fun walsham_PN : PN;
+fun walter_PN : PN;
+fun waltham_forest_PN : PN;
+fun walton_PN : PN;
+fun waltz_N : N;
+fun waltz_V : V;
+fun waltz_V2 : V2;
+fun wampum_N : N;
+fun wan_A : A;
+fun wand_N : N;
+fun wander_V : V;
+fun wander_V2 : V2;
+fun wanderer_N : N;
+fun wanderlust_N : N;
+fun wandsworth_PN : PN;
+fun wane_N : N;
+fun wane_V : V;
+fun wangle_N : N;
+fun wangle_V2 : V2;
+fun wank_N : N;
+fun wank_V : V;
+fun wanness_N : N;
+fun want_N : N;
+fun want_V : V;
+fun want_V2 : V2;
+fun want_V2V : V2V;
+fun want_VS : VS;
+fun want_VV : VV;
+fun want_ad_N : N;
+fun wantage_PN : PN;
+fun wanton_A : A;
+fun wanton_N : N;
+fun wanton_V : V;
+fun wantonness_N : N;
+fun war_N : N;
+fun war_V : V;
+fun war_baby_N : N;
+fun war_bride_N : N;
+fun war_cloud_N : N;
+fun war_cry_N : N;
+fun war_dance_N : N;
+fun war_god_N : N;
+fun war_torn_A : A;
+fun war_widow_N : N;
+fun warble_N : N;
+fun warble_V : V;
+fun warble_V2 : V2;
+fun warbler_N : N;
+fun ward_N : N;
+fun ward_V2 : V2;
+fun warden_N : N;
+fun warder_N : N;
+fun wardress_N : N;
+fun wardrobe_N : N;
+fun wardroom_N : N;
+fun ware_N : N;
+fun ware_PN : PN;
+fun ware_V2 : V2;
+fun warehouse_N : N;
+fun warehousing_N : N;
+fun warfare_N : N;
+fun warhead_N : N;
+fun warhorse_N : N;
+fun warily_Adv : Adv;
+fun wariness_N : N;
+fun warley_PN : PN;
+fun warlike_A : A;
+fun warlord_N : N;
+fun warm_A : A;
+fun warm_V : V;
+fun warm_V2 : V2;
+fun warm_blooded_A : A;
+fun warm_hearted_A : A;
+fun warmer_N : N;
+fun warming_pan_N : N;
+fun warminster_PN : PN;
+fun warmonger_N : N;
+fun warmth_N : N;
+fun warn_V : V;
+fun warn_V2 : V2;
+fun warn_VS : VS;
+fun warning_A : A;
+fun warning_N : N;
+fun warp_N : N;
+fun warp_V : V;
+fun warp_V2 : V2;
+fun warpaint_N : N;
+fun warpath_N : N;
+fun warrant_N : N;
+fun warrant_V2 : V2;
+fun warrant_VS : VS;
+fun warrantee_N : N;
+fun warrantor_N : N;
+fun warranty_N : N;
+fun warren_N : N;
+fun warrington_PN : PN;
+fun warrior_N : N;
+fun warsaw_PN : PN;
+fun warship_N : N;
+fun warsop_PN : PN;
+fun wart_N : N;
+fun warthog_N : N;
+fun wartime_N : N;
+fun warwick_PN : PN;
+fun warwickshire_PN : PN;
+fun wary_A : A;
+fun wash_N : N;
+fun wash_V : V;
+fun wash_V2 : V2;
+fun wash_drawing_N : N;
+fun wash_hand_basin_N : N;
+fun wash_hand_stand_N : N;
+fun wash_house_N : N;
+fun wash_leather_N : N;
+fun washable_A : A;
+fun washbasin_N : N;
+fun washboard_N : N;
+fun washbowl_N : N;
+fun washcloth_N : N;
+fun washday_N : N;
+fun washer_N : N;
+fun washerwoman_N : N;
+fun washing_N : N;
+fun washing_day_N : N;
+fun washing_machine_N : N;
+fun washing_up_N : N;
+fun washington_PN : PN;
+fun washington_dc_PN : PN;
+fun washout_N : N;
+fun washroom_N : N;
+fun washstand_N : N;
+fun washtub_N : N;
+fun washy_A : A;
+fun wasp_N : N;
+fun wasp_waisted_A : A;
+fun waspish_A : A;
+fun wassail_N : N;
+fun wastage_N : N;
+fun waste_A : A;
+fun waste_N : N;
+fun waste_V : V;
+fun waste_V2 : V2;
+fun waste_paper_basket_N : N;
+fun waste_pipe_N : N;
+fun wastebasket_N : N;
+fun wastebin_N : N;
+fun wasteful_A : A;
+fun wasteland_N : N;
+fun waster_N : N;
+fun wastrel_N : N;
+fun watch_N : N;
+fun watch_V : V;
+fun watch_V2 : V2;
+fun watch_V2V : V2V;
+fun watch_VS : VS;
+fun watch_chain_N : N;
+fun watch_glass_N : N;
+fun watch_guard_N : N;
+fun watch_key_N : N;
+fun watchdog_N : N;
+fun watcher_N : N;
+fun watchful_A : A;
+fun watchfulness_N : N;
+fun watchmaker_N : N;
+fun watchman_N : N;
+fun watchtower_N : N;
+fun watchword_N : N;
+fun water_N : N;
+fun water_V : V;
+fun water_V2 : V2;
+fun water_biscuit_N : N;
+fun water_blister_N : N;
+fun water_bottle_N : N;
+fun water_buffalo_N : N;
+fun water_butt_N : N;
+fun water_cart_N : N;
+fun water_closet_N : N;
+fun water_finder_N : N;
+fun water_glass_N : N;
+fun water_hole_N : N;
+fun water_ice_N : N;
+fun water_jacket_N : N;
+fun water_level_N : N;
+fun water_lily_N : N;
+fun water_line_N : N;
+fun water_main_N : N;
+fun water_nymph_N : N;
+fun water_polo_N : N;
+fun water_power_N : N;
+fun water_rat_N : N;
+fun water_rate_N : N;
+fun water_skiing_N : N;
+fun water_skin_N : N;
+fun water_softener_N : N;
+fun water_spaniel_N : N;
+fun water_supply_N : N;
+fun water_tower_N : N;
+fun water_vole_N : N;
+fun water_waggon_N : N;
+fun water_wagon_N : N;
+fun water_wheel_N : N;
+fun water_worn_A : A;
+fun waterbird_N : N;
+fun waterborne_A : A;
+fun watercannon_N : N;
+fun waterchute_N : N;
+fun watercolour_N : N;
+fun watercolourist_N : N;
+fun watercourse_N : N;
+fun watercress_N : N;
+fun waterfall_N : N;
+fun waterford_PN : PN;
+fun waterfowl_N : N;
+fun waterfront_N : N;
+fun waterhen_N : N;
+fun waterhyacinth_N : N;
+fun watering_can_N : N;
+fun watering_cart_N : N;
+fun waterless_A : A;
+fun waterlogged_A : A;
+fun waterloo_PN : PN;
+fun waterman_N : N;
+fun watermark_N : N;
+fun watermelon_N : N;
+fun watermill_N : N;
+fun waterproof_A : A;
+fun waterproof_N : N;
+fun waterproof_V2 : V2;
+fun watershed_N : N;
+fun waterside_N : N;
+fun waterspout_N : N;
+fun watertable_N : N;
+fun watertight_A : A;
+fun waterway_N : N;
+fun waterworks_N : N;
+fun watery_A : A;
+fun watford_PN : PN;
+fun watt_N : N;
+fun wattage_N : N;
+fun wattle_N : N;
+fun wave_N : N;
+fun wave_V : V;
+fun wave_V2 : V2;
+fun wavelength_N : N;
+fun waver_V : V;
+fun waverer_N : N;
+fun wavy_A : A;
+fun wax_N : N;
+fun wax_V : V;
+fun wax_V2 : V2;
+fun wax_chandler_N : N;
+fun wax_paper_N : N;
+fun waxen_A : A;
+fun waxwork_N : N;
+fun waxy_A : A;
+fun way_Adv : Adv;
+fun way_N : N;
+fun way_out_A : A;
+fun waybill_N : N;
+fun wayfarer_N : N;
+fun wayfaring_A : A;
+fun waylay_V2 : V2;
+fun wayne_PN : PN;
+fun wayside_N : N;
+fun wayward_A : A;
+fun wc_N : N;
+fun we_Pron : Pron;
+fun weak_A : A;
+fun weak_kneed_A : A;
+fun weaken_V : V;
+fun weaken_V2 : V2;
+fun weakling_N : N;
+fun weakly_A : A;
+fun weakness_N : N;
+fun weal_N : N;
+fun weald_N : N;
+fun wealth_N : N;
+fun wealthily_Adv : Adv;
+fun wealthy_A : A;
+fun wean_V2 : V2;
+fun weapon_N : N;
+fun weaponless_A : A;
+fun wear_N : N;
+fun wear_PN : PN;
+fun wear_V : V;
+fun wear_V2 : V2;
+fun wearable_A : A;
+fun wearer_N : N;
+fun wearily_Adv : Adv;
+fun weariness_N : N;
+fun wearing_A : A;
+fun wearisome_A : A;
+fun weary_A : A;
+fun weary_V : V;
+fun weary_V2 : V2;
+fun weasel_N : N;
+fun weather_N : N;
+fun weather_V : V;
+fun weather_V2 : V2;
+fun weather_beaten_A : A;
+fun weather_bound_A : A;
+fun weather_bureau_N : N;
+fun weather_chart_N : N;
+fun weather_glass_N : N;
+fun weather_map_N : N;
+fun weather_ship_N : N;
+fun weather_station_N : N;
+fun weather_vane_N : N;
+fun weatherboarding_N : N;
+fun weathercock_N : N;
+fun weatherman_N : N;
+fun weatherproof_A : A;
+fun weave_N : N;
+fun weave_V : V;
+fun weave_V2 : V2;
+fun weaver_N : N;
+fun weaverbird_N : N;
+fun web_N : N;
+fun web_footed_A : A;
+fun web_toed_A : A;
+fun webbed_A : A;
+fun webbing_N : N;
+fun wed_PN : PN;
+fun wed_V : V;
+fun wed_V2 : V2;
+fun wedding_N : N;
+fun wedding_cake_N : N;
+fun wedding_ring_N : N;
+fun wedge_N : N;
+fun wedge_V : V;
+fun wedge_V2 : V2;
+fun wedlock_N : N;
+fun wednesday_N : N;
+fun wednesday_PN : PN;
+fun wee_A : A;
+fun wee_N : N;
+fun wee_V : V;
+fun wee_wee_N : N;
+fun weed_N : N;
+fun weed_V : V;
+fun weed_V2 : V2;
+fun weedkiller_N : N;
+fun weedy_A : A;
+fun week_N : N;
+fun weekday_N : N;
+fun weekend_N : N;
+fun weekend_V : V;
+fun weekender_N : N;
+fun weekly_A : A;
+fun weekly_Adv : Adv;
+fun weekly_N : N;
+fun weeny_A : A;
+fun weep_V : V;
+fun weep_V2 : V2;
+fun weeping_A : A;
+fun weevil_N : N;
+fun weft_N : N;
+fun weigh_V : V;
+fun weigh_V2 : V2;
+fun weighbridge_N : N;
+fun weighing_machine_N : N;
+fun weight_N : N;
+fun weight_V2 : V2;
+fun weightily_Adv : Adv;
+fun weightiness_N : N;
+fun weightless_A : A;
+fun weightlessness_N : N;
+fun weightlifting_N : N;
+fun weighty_A : A;
+fun weir_N : N;
+fun weird_A : A;
+fun weirdie_N : N;
+fun weirdness_N : N;
+fun welcome_A : A;
+fun welcome_N : N;
+fun welcome_V2 : V2;
+fun weld_N : N;
+fun weld_V : V;
+fun weld_V2 : V2;
+fun welder_N : N;
+fun welfare_N : N;
+fun welkin_N : N;
+fun well_A : A;
+fun well_Adv : Adv;
+fun well_N : N;
+fun well_V : V;
+fun well_adjusted_A : A;
+fun well_advised_A : A;
+fun well_appointed_A : A;
+fun well_balanced_A : A;
+fun well_behaved_A : A;
+fun well_being_N : N;
+fun well_born_A : A;
+fun well_bred_A : A;
+fun well_conducted_A : A;
+fun well_connected_A : A;
+fun well_disposed_A : A;
+fun well_doer_N : N;
+fun well_doing_N : N;
+fun well_favoured_A : A;
+fun well_found_A : A;
+fun well_founded_A : A;
+fun well_groomed_A : A;
+fun well_grounded_A : A;
+fun well_heeled_A : A;
+fun well_informed_A : A;
+fun well_intentioned_A : A;
+fun well_knit_A : A;
+fun well_known_A : A;
+fun well_lined_A : A;
+fun well_marked_A : A;
+fun well_meaning_A : A;
+fun well_meant_A : A;
+fun well_nigh_Adv : Adv;
+fun well_read_A : A;
+fun well_rounded_A : A;
+fun well_set_A : A;
+fun well_shaven_A : A;
+fun well_spoken_A : A;
+fun well_timed_A : A;
+fun well_to_do_A : A;
+fun well_tried_A : A;
+fun well_turned_A : A;
+fun well_water_N : N;
+fun well_wisher_N : N;
+fun well_worn_A : A;
+fun wellhead_N : N;
+fun wellingborough_PN : PN;
+fun wellington_N : N;
+fun wellington_PN : PN;
+fun wells_PN : PN;
+fun welsh_A : A;
+fun welsh_N : N;
+fun welsh_V : V;
+fun welsher_N : N;
+fun welshman_N : N;
+fun welshpool_PN : PN;
+fun welt_N : N;
+fun welter_A : A;
+fun welter_N : N;
+fun welter_V : V;
+fun welterweight_N : N;
+fun welwyn_PN : PN;
+fun welwyn_garden_city_PN : PN;
+fun wen_N : N;
+fun wench_N : N;
+fun wench_V : V;
+fun wend_V2 : V2;
+fun wendover_PN : PN;
+fun wendy_PN : PN;
+fun werewolf_N : N;
+fun wesleyan_A : A;
+fun wesleyan_N : N;
+fun west_A : A;
+fun west_Adv : Adv;
+fun west_N : N;
+fun west_bromwich_PN : PN;
+fun west_country_A : A;
+fun west_end_A : A;
+fun westbury_PN : PN;
+fun westerly_A : A;
+fun westerly_Adv : Adv;
+fun western_A : A;
+fun western_N : N;
+fun westerner_N : N;
+fun westernization_N : N;
+fun westernize_V2 : V2;
+fun westernmost_A : A;
+fun westhoughton_PN : PN;
+fun westmeath_PN : PN;
+fun westminster_PN : PN;
+fun westmoreland_PN : PN;
+fun weston_super_mare_PN : PN;
+fun westward_A : A;
+fun westward_Adv : Adv;
+fun westwards_Adv : Adv;
+fun wet_A : A;
+fun wet_N : N;
+fun wet_V2 : V2;
+fun wet_nurse_N : N;
+fun wether_N : N;
+fun wetherby_PN : PN;
+fun wetting_N : N;
+fun wexford_PN : PN;
+fun weymouth_PN : PN;
+fun whack_N : N;
+fun whack_V2 : V2;
+fun whacked_A : A;
+fun whacker_N : N;
+fun whacking_A : A;
+fun whacking_Adv : Adv;
+fun whacking_N : N;
+fun whale_N : N;
+fun whale_V : V;
+fun whalebone_N : N;
+fun whaler_N : N;
+fun whaley_bridge_PN : PN;
+fun whaling_gun_N : N;
+fun whang_Adv : Adv;
+fun whang_N : N;
+fun whang_V2 : V2;
+fun wharf_N : N;
+fun wharfage_N : N;
+fun what_A : A;
+fun what_for_N : N;
+fun whate'er_A : A;
+fun whatever_A : A;
+fun whatnot_N : N;
+fun whatsoe'er_A : A;
+fun whatsoever_A : A;
+fun wheat_N : N;
+fun wheaten_A : A;
+fun wheatley_hill_PN : PN;
+fun wheedle_V2 : V2;
+fun wheel_N : N;
+fun wheel_V : V;
+fun wheel_V2 : V2;
+fun wheelbarrow_N : N;
+fun wheelbase_N : N;
+fun wheelchair_N : N;
+fun wheelhouse_N : N;
+fun wheelwright_N : N;
+fun wheeze_N : N;
+fun wheeze_V : V;
+fun wheeze_V2 : V2;
+fun wheezily_Adv : Adv;
+fun wheeziness_N : N;
+fun wheezy_A : A;
+fun whelk_N : N;
+fun whelp_N : N;
+fun whelp_V : V;
+fun when_Adv : Adv;
+fun when_Subj : Subj;
+fun whence_Adv : Adv;
+fun whencesoever_A : A;
+fun whenever_Adv : Adv;
+fun where_Adv : Adv;
+fun whereabouts_Adv : Adv;
+fun whereas_Prep : Prep ;
+fun whereat_Adv : Adv;
+fun whereby_Adv : Adv;
+fun wherefore_Adv : Adv;
+fun wherein_Adv : Adv;
+fun whereof_Adv : Adv;
+fun whereon_Adv : Adv;
+fun wheresoever_Adv : Adv;
+fun whereto_Adv : Adv;
+fun whereunto_Adv : Adv;
+fun whereupon_Adv : Adv;
+fun wherever_Adv : Adv;
+fun wherewith_Adv : Adv;
+fun wherewithal_Adv : Adv;
+fun wherewithal_N : N;
+fun wherry_N : N;
+fun whet_V2 : V2;
+fun whether_Prep : Prep ;
+fun whetstone_N : N;
+fun whey_N : N;
+fun which_A : A;
+fun whichever_A : A;
+fun whichsoever_A : A;
+fun whiff_N : N;
+fun whig_N : N;
+fun while_N : N;
+fun while_Subj : Subj;
+fun while_V2 : V2;
+fun whim_N : N;
+fun whimper_N : N;
+fun whimper_V : V;
+fun whimper_V2 : V2;
+fun whimsey_N : N;
+fun whimsical_A : A;
+fun whimsicality_N : N;
+fun whimsy_N : N;
+fun whin_N : N;
+fun whine_N : N;
+fun whine_V : V;
+fun whine_V2 : V2;
+fun whiner_N : N;
+fun whinny_N : N;
+fun whinny_V : V;
+fun whip_N : N;
+fun whip_V : V;
+fun whip_V2 : V2;
+fun whip_round_N : N;
+fun whipcord_N : N;
+fun whipper_in_N : N;
+fun whippersnapper_N : N;
+fun whippet_N : N;
+fun whipping_N : N;
+fun whipping_boy_N : N;
+fun whipping_post_N : N;
+fun whipping_top_N : N;
+fun whippoorwill_N : N;
+fun whippy_A : A;
+fun whipsaw_V2 : V2;
+fun whir_N : N;
+fun whir_V : V;
+fun whirl_N : N;
+fun whirl_V : V;
+fun whirl_V2 : V2;
+fun whirligig_N : N;
+fun whirlpool_N : N;
+fun whirlwind_N : N;
+fun whirr_N : N;
+fun whirr_V : V;
+fun whisk_N : N;
+fun whisk_V : V;
+fun whisk_V2 : V2;
+fun whisker_N : N;
+fun whiskered_A : A;
+fun whiskey_N : N;
+fun whisky_N : N;
+fun whisper_N : N;
+fun whisper_V : V;
+fun whisper_V2 : V2;
+fun whisperer_N : N;
+fun whispering_N : N;
+fun whispering_gallery_N : N;
+fun whist_N : N;
+fun whist_drive_N : N;
+fun whistle_N : N;
+fun whistle_V : V;
+fun whistle_V2 : V2;
+fun whistle_stop_N : N;
+fun whit_N : N;
+fun whitburn_PN : PN;
+fun whitby_PN : PN;
+fun whitchurch_PN : PN;
+fun white_A : A;
+fun white_N : N;
+fun white_collar_A : A;
+fun white_hot_A : A;
+fun white_lipped_A : A;
+fun white_livered_A : A;
+fun whitebait_N : N;
+fun whitehall_PN : PN;
+fun whitehaven_PN : PN;
+fun whiten_V : V;
+fun whiten_V2 : V2;
+fun whiteness_N : N;
+fun whitening_N : N;
+fun whitethorn_N : N;
+fun whitewash_N : N;
+fun whitewash_V2 : V2;
+fun whither_Adv : Adv;
+fun whithersoever_Adv : Adv;
+fun whiting_N : N;
+fun whitish_A : A;
+fun whitley_bay_PN : PN;
+fun whitlow_N : N;
+fun whitstable_PN : PN;
+fun whitsun_N : N;
+fun whitsun_PN : PN;
+fun whitsuntide_N : N;
+fun whitsuntide_PN : PN;
+fun whittle_V : V;
+fun whittle_V2 : V2;
+fun whittle_le_woods_PN : PN;
+fun whittlesey_PN : PN;
+fun whitworth_PN : PN;
+fun whiz_N : N;
+fun whiz_V : V;
+fun whizz_kid_N : N;
+fun who_N : N;
+fun whodunit_N : N;
+fun whole_A : A;
+fun whole_N : N;
+fun whole_wheat_N : N;
+fun wholehearted_A : A;
+fun wholeheartedness_N : N;
+fun wholemeal_N : N;
+fun wholesale_A : A;
+fun wholesale_Adv : Adv;
+fun wholesale_N : N;
+fun wholesale_V2 : V2;
+fun wholesaler_N : N;
+fun wholesome_A : A;
+fun wholly_Adv : Adv;
+fun whoop_N : N;
+fun whoop_V : V;
+fun whoop_V2 : V2;
+fun whoopee_N : N;
+fun whooping_cough_N : N;
+fun whop_V2 : V2;
+fun whopper_N : N;
+fun whopping_A : A;
+fun whopping_Adv : Adv;
+fun whore_N : N;
+fun whoremonger_N : N;
+fun whorl_N : N;
+fun whorled_A : A;
+fun why_Adv : Adv;
+fun why_N : N;
+fun wi_N : N;
+fun wick_N : N;
+fun wick_PN : PN;
+fun wicked_A : A;
+fun wickedness_N : N;
+fun wicker_N : N;
+fun wickerwork_N : N;
+fun wicket_N : N;
+fun wicket_door_N : N;
+fun wicket_gate_N : N;
+fun wicket_keeper_N : N;
+fun wickford_PN : PN;
+fun wicklow_PN : PN;
+fun wide_A : A;
+fun wide_Adv : Adv;
+fun wide_awake_A : A;
+fun widen_V : V;
+fun widen_V2 : V2;
+fun widespread_A : A;
+fun widgeon_N : N;
+fun widnes_PN : PN;
+fun widow_N : N;
+fun widowed_A : A;
+fun widower_N : N;
+fun widowhood_N : N;
+fun width_N : N;
+fun wield_V2 : V2;
+fun wiesbaden_PN : PN;
+fun wife_N : N;
+fun wifelike_A : A;
+fun wifely_A : A;
+fun wig_N : N;
+fun wigan_PN : PN;
+fun wigged_A : A;
+fun wigging_N : N;
+fun wiggle_N : N;
+fun wiggle_V : V;
+fun wiggle_V2 : V2;
+fun wight_N : N;
+fun wight_PN : PN;
+fun wigwam_N : N;
+fun wild_A : A;
+fun wild_Adv : Adv;
+fun wildcat_A : A;
+fun wildebeest_N : N;
+fun wilderness_N : N;
+fun wildfire_N : N;
+fun wildness_N : N;
+fun wile_N : N;
+fun wilf_PN : PN;
+fun wilfrid_PN : PN;
+fun wilful_A : A;
+fun wilfulness_N : N;
+fun wilhelmshaven_PN : PN;
+fun will_N : N;
+fun will_PN : PN;
+fun will_V : V;
+fun will_V2 : V2;
+fun will_o'_the_wisp_N : N;
+fun willed_A : A;
+fun willful_A : A;
+fun william_PN : PN;
+fun willie_PN : PN;
+fun willing_A : A;
+fun willingness_N : N;
+fun willington_PN : PN;
+fun willow_N : N;
+fun willow_pattern_N : N;
+fun willow_tree_N : N;
+fun willowy_A : A;
+fun willpower_N : N;
+fun willy_PN : PN;
+fun willy_nilly_Adv : Adv;
+fun wilmslow_PN : PN;
+fun wilt_V : V;
+fun wilt_V2 : V2;
+fun wilton_N : N;
+fun wiltshire_PN : PN;
+fun wily_A : A;
+fun wimbourne_PN : PN;
+fun wimbourne_minster_PN : PN;
+fun wimple_N : N;
+fun win_N : N;
+fun win_V : V;
+fun win_V2 : V2;
+fun wince_N : N;
+fun wince_V2 : V2;
+fun winceyette_N : N;
+fun winch_N : N;
+fun winch_V2 : V2;
+fun winchester_PN : PN;
+fun wind_N : N;
+fun wind_V : V;
+fun wind_V2 : V2;
+fun wind_gauge_N : N;
+fun wind_tunnel_N : N;
+fun windbag_N : N;
+fun windblown_A : A;
+fun windbreak_N : N;
+fun windbreaker_N : N;
+fun windcheater_N : N;
+fun windermere_PN : PN;
+fun windfall_N : N;
+fun windflower_N : N;
+fun windily_Adv : Adv;
+fun windiness_N : N;
+fun winding_sheet_N : N;
+fun windjammer_N : N;
+fun windlass_N : N;
+fun windless_A : A;
+fun windmill_N : N;
+fun window_N : N;
+fun window_box_N : N;
+fun window_dressing_N : N;
+fun windowpane_N : N;
+fun windowsill_N : N;
+fun windpipe_N : N;
+fun windscreen_N : N;
+fun windscreen_wiper_N : N;
+fun windshield_N : N;
+fun windsock_N : N;
+fun windsor_PN : PN;
+fun windswept_A : A;
+fun windward_A : A;
+fun windward_N : N;
+fun windy_A : A;
+fun wine_N : N;
+fun wine_V2 : V2;
+fun wineglass_N : N;
+fun winepress_N : N;
+fun wineskin_N : N;
+fun wing_N : N;
+fun wing_V : V;
+fun wing_V2 : V2;
+fun wing_commander_N : N;
+fun wing_nut_N : N;
+fun wing_screw_N : N;
+fun wingate_PN : PN;
+fun winged_A : A;
+fun winger_N : N;
+fun wingless_A : A;
+fun wingspan_N : N;
+fun wingspread_N : N;
+fun winifred_PN : PN;
+fun wink_N : N;
+fun wink_V : V;
+fun wink_V2 : V2;
+fun winkle_N : N;
+fun winkle_V2 : V2;
+fun winner_N : N;
+fun winnie_PN : PN;
+fun winning_post_N : N;
+fun winnipeg_PN : PN;
+fun winnow_V2 : V2;
+fun winsford_PN : PN;
+fun winsome_A : A;
+fun winsomeness_N : N;
+fun winter_N : N;
+fun winter_V : V;
+fun wintery_A : A;
+fun wintry_A : A;
+fun wipe_N : N;
+fun wipe_V : V;
+fun wipe_V2 : V2;
+fun wiper_N : N;
+fun wire_N : N;
+fun wire_V : V;
+fun wire_V2 : V2;
+fun wire_haired_A : A;
+fun wireless_A : A;
+fun wireless_N : N;
+fun wirepuller_N : N;
+fun wireworm_N : N;
+fun wiring_N : N;
+fun wiry_A : A;
+fun wisbech_PN : PN;
+fun wisconsin_PN : PN;
+fun wisdom_N : N;
+fun wisdom_tooth_N : N;
+fun wise_A : A;
+fun wise_N : N;
+fun wiseacre_N : N;
+fun wisecrack_N : N;
+fun wisecrack_V : V;
+fun wish_N : N;
+fun wish_V : V;
+fun wish_V2 : V2;
+fun wish_V2V : V2V;
+fun wish_VV : VV;
+fun wish_VS : VS;
+fun wishbone_N : N;
+fun wishful_A : A;
+fun wishing_cap_N : N;
+fun wishy_washy_A : A;
+fun wisp_N : N;
+fun wispy_A : A;
+fun wisteria_N : N;
+fun wistful_A : A;
+fun wit_N : N;
+fun witch_N : N;
+fun witch_doctor_N : N;
+fun witch_elm_N : N;
+fun witch_hazel_N : N;
+fun witch_hunt_N : N;
+fun witchcraft_N : N;
+fun witchery_N : N;
+fun witching_A : A;
+fun with_Prep : Prep ;
+fun withal_Adv : Adv;
+fun witham_PN : PN;
+fun withdraw_V : V;
+fun withdraw_V2 : V2;
+fun withdrawal_N : N;
+fun withe_N : N;
+fun wither_V : V;
+fun wither_V2 : V2;
+fun witheringly_Adv : Adv;
+fun withernsea_PN : PN;
+fun withhold_V2 : V2;
+fun within_Prep : Prep;
+fun without_Prep : Prep ;
+fun withstand_V2 : V2;
+fun withy_N : N;
+fun witless_A : A;
+fun witness_N : N;
+fun witness_V : V;
+fun witness_V2 : V2;
+fun witness_box_N : N;
+fun witness_stand_N : N;
+fun witney_PN : PN;
+fun witticism_N : N;
+fun wittily_Adv : Adv;
+fun wittingly_Adv : Adv;
+fun witty_A : A;
+fun wive_V : V;
+fun wive_V2 : V2;
+fun wizard_A : A;
+fun wizard_N : N;
+fun wizardry_N : N;
+fun wizened_A : A;
+fun wk_N : N;
+fun woad_N : N;
+fun wobble_V : V;
+fun wobble_V2 : V2;
+fun wobbler_N : N;
+fun wobbly_A : A;
+fun woburn_PN : PN;
+fun woe_N : N;
+fun woebegone_A : A;
+fun woeful_A : A;
+fun wokingham_PN : PN;
+fun wold_N : N;
+fun wolf's_bane_N : N;
+fun wolf_N : N;
+fun wolf_V2 : V2;
+fun wolf_cub_N : N;
+fun wolfhound_N : N;
+fun wolfish_A : A;
+fun wolfram_N : N;
+fun wolverhampton_PN : PN;
+fun wolverton_PN : PN;
+fun woman_N : N;
+fun womanhood_N : N;
+fun womanish_A : A;
+fun womanize_V : V;
+fun womanizer_N : N;
+fun womankind_N : N;
+fun womanlike_A : A;
+fun womanly_A : A;
+fun womb_N : N;
+fun wombat_N : N;
+fun wombourne_PN : PN;
+fun wonder_N : N;
+fun wonder_V : V;
+fun wonder_V2 : V2;
+fun wonder_VS : VS;
+fun wonder_struck_A : A;
+fun wonderful_A : A;
+fun wonderingly_Adv : Adv;
+fun wonderland_N : N;
+fun wonderment_N : N;
+fun wondrous_A : A;
+fun wondrous_Adv : Adv;
+fun wonky_A : A;
+fun wont_A : A;
+fun wont_N : N;
+fun wonted_A : A;
+fun woo_V2 : V2;
+fun wood_N : N;
+fun wood_block_N : N;
+fun wood_pulp_N : N;
+fun woodbine_N : N;
+fun woodbridge_PN : PN;
+fun woodcock_N : N;
+fun woodcraft_N : N;
+fun woodcut_N : N;
+fun woodcutter_N : N;
+fun wooded_A : A;
+fun wooden_A : A;
+fun woodenheaded_A : A;
+fun woodland_N : N;
+fun woodlouse_N : N;
+fun woodman_N : N;
+fun woodpecker_N : N;
+fun woodpile_N : N;
+fun woodshed_N : N;
+fun woodsman_N : N;
+fun woodwind_N : N;
+fun woodwork_N : N;
+fun woodworm_N : N;
+fun woody_A : A;
+fun wooer_N : N;
+fun woof_N : N;
+fun woofer_N : N;
+fun wool_N : N;
+fun woolen_A : A;
+fun woolgathering_A : A;
+fun woolgathering_N : N;
+fun woollen_A : A;
+fun woolly_A : A;
+fun wooly_A : A;
+fun wooly_N : N;
+fun wootton_bassett_PN : PN;
+fun worcester_PN : PN;
+fun word_N : N;
+fun word_V2 : V2;
+fun word_division_N : N;
+fun word_painter_N : N;
+fun word_perfect_A : A;
+fun word_picture_N : N;
+fun word_splitting_N : N;
+fun wordbook_N : N;
+fun wordily_Adv : Adv;
+fun wordiness_N : N;
+fun wording_N : N;
+fun wordless_A : A;
+fun wordy_A : A;
+fun work_N : N;
+fun work_V : V;
+fun work_V2 : V2;
+fun work_VV : VV;
+fun work_in_N : N;
+fun work_out_N : N;
+fun work_study_N : N;
+fun workable_A : A;
+fun workaday_A : A;
+fun workbag_N : N;
+fun workbasket_N : N;
+fun workbench_N : N;
+fun workbook_N : N;
+fun workbox_N : N;
+fun workday_N : N;
+fun worker_N : N;
+fun workhouse_N : N;
+fun working_A : A;
+fun working_N : N;
+fun working_class_A : A;
+fun working_out_N : N;
+fun workington_PN : PN;
+fun workman_N : N;
+fun workmanlike_A : A;
+fun workmanship_N : N;
+fun workmate_N : N;
+fun workroom_N : N;
+fun workshop_N : N;
+fun workshy_A : A;
+fun worksop_PN : PN;
+fun worktable_N : N;
+fun world_N : N;
+fun world_weary_A : A;
+fun worldliness_N : N;
+fun worldly_A : A;
+fun worldwide_A : A;
+fun worm_N : N;
+fun worm_V2 : V2;
+fun worm_eaten_A : A;
+fun worm_gear_N : N;
+fun wormcast_N : N;
+fun wormhole_N : N;
+fun wormwood_N : N;
+fun wormy_A : A;
+fun worried_A : A;
+fun worrisome_A : A;
+fun worry_N : N;
+fun worry_V : V;
+fun worry_V2 : V2;
+fun worry_VS : VS;
+fun worrying_A : A;
+fun worse_Adv : Adv;
+fun worse_N : N;
+fun worsen_V : V;
+fun worsen_V2 : V2;
+fun worship_N : N;
+fun worship_V : V;
+fun worship_V2 : V2;
+fun worshipful_A : A;
+fun worshipper_N : N;
+fun worst_Adv : Adv;
+fun worst_N : N;
+fun worst_V2 : V2;
+fun worsted_N : N;
+fun worth_A : A;
+fun worth_N : N;
+fun worth_Prep : Prep ;
+fun worthily_Adv : Adv;
+fun worthiness_N : N;
+fun worthing_PN : PN;
+fun worthless_A : A;
+fun worthlessness_N : N;
+fun worthwhile_A : A;
+fun worthy_A : A;
+fun worthy_N : N;
+fun would_be_A : A;
+fun wound_N : N;
+fun wound_V2 : V2;
+fun wow_N : N;
+fun wpb_N : N;
+fun wpm_N : N;
+fun wrac_N : N;
+fun wrack_N : N;
+fun wrack_V2 : V2;
+fun wraf_N : N;
+fun wraith_N : N;
+fun wrangle_N : N;
+fun wrangle_V : V;
+fun wrap_N : N;
+fun wrap_V : V;
+fun wrap_V2 : V2;
+fun wrapper_N : N;
+fun wrapping_N : N;
+fun wrath_N : N;
+fun wrathful_A : A;
+fun wreak_V2 : V2;
+fun wreath_N : N;
+fun wreathe_V : V;
+fun wreathe_V2 : V2;
+fun wreck_N : N;
+fun wreck_V2 : V2;
+fun wreckage_N : N;
+fun wrecker_N : N;
+fun wren_N : N;
+fun wrench_N : N;
+fun wrench_V2 : V2;
+fun wrest_V2 : V2;
+fun wrestle_N : N;
+fun wrestle_V : V;
+fun wrestle_V2 : V2;
+fun wrestler_N : N;
+fun wretch_N : N;
+fun wretched_A : A;
+fun wretchedness_N : N;
+fun wrexham_PN : PN;
+fun wrick_N : N;
+fun wrick_V2 : V2;
+fun wriggle_N : N;
+fun wriggle_V : V;
+fun wriggle_V2 : V2;
+fun wriggler_N : N;
+fun wright_N : N;
+fun wring_N : N;
+fun wring_V2 : V2;
+fun wringer_N : N;
+fun wrinkle_N : N;
+fun wrinkle_V : V;
+fun wrinkle_V2 : V2;
+fun wrinkly_A : A;
+fun wrist_N : N;
+fun wristband_N : N;
+fun wristlet_N : N;
+fun wristwatch_N : N;
+fun writ_N : N;
+fun writ_large_A : A;
+fun write_V : V;
+fun write_V2 : V2;
+fun write_VV : VV;
+fun write_VS : VS;
+fun write_off_N : N;
+fun write_up_N : N;
+fun writer_N : N;
+fun writhe_V : V;
+fun writing_N : N;
+fun writing_desk_N : N;
+fun writing_ink_N : N;
+fun writing_paper_N : N;
+fun writtle_PN : PN;
+fun wrns_N : N;
+fun wroclaw_PN : PN;
+fun wrong_A : A;
+fun wrong_Adv : Adv;
+fun wrong_N : N;
+fun wrong_V2 : V2;
+fun wrong_headed_A : A;
+fun wrongdoer_N : N;
+fun wrongdoing_N : N;
+fun wrongful_A : A;
+fun wroth_A : A;
+fun wroughton_PN : PN;
+fun wry_A : A;
+fun wt_N : N;
+fun wuhan_PN : PN;
+fun wuppertal_PN : PN;
+fun wurzburg_PN : PN;
+fun wusih_PN : PN;
+fun wycombe_PN : PN;
+fun wymondham_PN : PN;
+fun wyoming_PN : PN;
+fun wythall_PN : PN;
+fun x_ray_N : N;
+fun x_ray_V2 : V2;
+fun xenophobia_N : N;
+fun xerox_N : N;
+fun xerox_V2 : V2;
+fun xmas_N : N;
+fun xmas_PN : PN;
+fun xylophone_N : N;
+fun yacht_N : N;
+fun yacht_V : V;
+fun yacht_club_N : N;
+fun yachting_N : N;
+fun yachtsman_N : N;
+fun yahoo_N : N;
+fun yak_N : N;
+fun yam_N : N;
+fun yammer_V : V;
+fun yank_N : N;
+fun yank_V2 : V2;
+fun yankee_N : N;
+fun yap_N : N;
+fun yap_V : V;
+fun yard_N : N;
+fun yard_measure_N : N;
+fun yardarm_N : N;
+fun yardstick_N : N;
+fun yarmouth_PN : PN;
+fun yarn_N : N;
+fun yarn_V : V;
+fun yaroslavi_PN : PN;
+fun yarrow_N : N;
+fun yashmak_N : N;
+fun yate_PN : PN;
+fun yateley_PN : PN;
+fun yaw_N : N;
+fun yaw_V : V;
+fun yawl_N : N;
+fun yawn_N : N;
+fun yawn_V : V;
+fun yea_Adv : Adv;
+fun yea_N : N;
+fun yeah_Adv : Adv;
+fun year_N : N;
+fun yearbook_N : N;
+fun yearling_N : N;
+fun yearlong_A : A;
+fun yearly_A : A;
+fun yearly_Adv : Adv;
+fun yearn_V : V;
+fun yearning_N : N;
+fun yearningly_Adv : Adv;
+fun yeast_N : N;
+fun yeasty_A : A;
+fun yell_N : N;
+fun yell_V : V;
+fun yell_V2 : V2;
+fun yellow_A : A;
+fun yellow_N : N;
+fun yellow_V : V;
+fun yellow_V2 : V2;
+fun yellow_bellied_A : A;
+fun yellow_flag_N : N;
+fun yellowish_A : A;
+fun yellowness_N : N;
+fun yelp_V : V;
+fun yemen_PN : PN;
+fun yemeni_A : A;
+fun yemeni_N : N;
+fun yen_N : N;
+fun yen_V : V;
+fun yeoman_N : N;
+fun yeomanry_N : N;
+fun yeovil_PN : PN;
+fun yerevan_PN : PN;
+fun yes_N : N;
+fun yesterday_Adv : Adv;
+fun yesterday_N : N;
+fun yet_Adv : Adv;
+fun yeti_N : N;
+fun yew_N : N;
+fun yew_tree_N : N;
+fun yha_N : N;
+fun yiddish_N : N;
+fun yield_N : N;
+fun yield_V : V;
+fun yield_V2 : V2;
+fun yield_VA : VA;
+fun yielding_A : A;
+fun ymca_N : N;
+fun yo_yo_N : N;
+fun yob_N : N;
+fun yobo_N : N;
+fun yodel_N : N;
+fun yodel_V : V;
+fun yodel_V2 : V2;
+fun yodeller_N : N;
+fun yoga_N : N;
+fun yoghourt_N : N;
+fun yoghurt_N : N;
+fun yogi_N : N;
+fun yogurt_N : N;
+fun yoke_N : N;
+fun yoke_V : V;
+fun yoke_V2 : V2;
+fun yokel_N : N;
+fun yokohama_PN : PN;
+fun yolk_N : N;
+fun yon_A : A;
+fun yon_Adv : Adv;
+fun yonder_A : A;
+fun yonder_Adv : Adv;
+fun yore_N : N;
+fun york_PN : PN;
+fun yorkley_PN : PN;
+fun yorkshire_PN : PN;
+fun youPl_Pron : Pron;
+fun youSg_Pron : Pron;
+fun young_A : A;
+fun young_N : N;
+fun youngish_A : A;
+fun youngster_N : N;
+fun youth_N : N;
+fun youthful_A : A;
+fun youthfulness_N : N;
+fun yowl_V : V;
+fun yr_N : N;
+fun ystradgynlais_PN : PN;
+fun yugoslav_A : A;
+fun yugoslav_N : N;
+fun yugoslavia_PN : PN;
+fun yugoslavian_A : A;
+fun yugoslavian_N : N;
+fun yukon_PN : PN;
+fun yule_N : N;
+fun yule_log_N : N;
+fun yuletide_N : N;
+fun yvonne_PN : PN;
+fun ywca_N : N;
+fun zagreb_PN : PN;
+fun zaire_PN : PN;
+fun zairean_A : A;
+fun zairean_N : N;
+fun zambia_PN : PN;
+fun zambian_A : A;
+fun zambian_N : N;
+fun zany_A : A;
+fun zany_N : N;
+fun zap_V2 : V2;
+fun zaporozhye_PN : PN;
+fun zaragoza_PN : PN;
+fun zeal_N : N;
+fun zealand_PN : PN;
+fun zealander_A : A;
+fun zealander_N : N;
+fun zealot_N : N;
+fun zealotry_N : N;
+fun zealous_A : A;
+fun zebra_N : N;
+fun zebu_N : N;
+fun zee_N : N;
+fun zen_N : N;
+fun zenith_N : N;
+fun zenithal_A : A;
+fun zephyr_N : N;
+fun zeppelin_N : N;
+fun zero_N : N;
+fun zero_V : V;
+fun zest_N : N;
+fun zestful_A : A;
+fun zigzag_Adv : Adv;
+fun zigzag_N : N;
+fun zigzag_V : V;
+fun zimbabwe_PN : PN;
+fun zimbabwean_A : A;
+fun zimbabwean_N : N;
+fun zinc_N : N;
+fun zing_N : N;
+fun zinnia_N : N;
+fun zion_N : N;
+fun zionism_N : N;
+fun zionist_A : A;
+fun zionist_N : N;
+fun zip_N : N;
+fun zip_V2 : V2;
+fun zip_code_N : N;
+fun zip_fastener_N : N;
+fun zipper_N : N;
+fun zither_N : N;
+fun zloty_N : N;
+fun zodiac_N : N;
+fun zoe_PN : PN;
+fun zombie_N : N;
+fun zonal_A : A;
+fun zone_N : N;
+fun zone_V2 : V2;
+fun zoning_N : N;
+fun zoo_N : N;
+fun zoological_A : A;
+fun zoologist_N : N;
+fun zoology_N : N;
+fun zoom_N : N;
+fun zoom_V : V;
+fun zoophyte_N : N;
+fun zoot_suit_N : N;
+fun zucchini_N : N;
+fun zurich_PN : PN;
+
 }
diff --git a/lib/src/english/ExtraEng.gf b/lib/src/english/ExtraEng.gf
--- a/lib/src/english/ExtraEng.gf
+++ b/lib/src/english/ExtraEng.gf
@@ -1,23 +1,33 @@
 concrete ExtraEng of ExtraEngAbs = CatEng ** 
-  open ResEng, Coordination, Prelude, MorphoEng in {
+  open ResEng, Coordination, Prelude, MorphoEng, ParadigmsEng in {
 
   lin
-    GenNP np = {s = \\_,_ => np.s ! Gen ; sp = \\_,_,_ => np.s ! Gen} ;
+    GenNP np = {s = \\_,_ => np.s ! npGen ; sp = \\_,_,_ => np.s ! npGen} ;
+    GenIP ip = {s = \\_ => ip.s ! NCase Gen} ;
+    GenRP nu cn = {
+      s = \\c => "whose" ++ nu.s ! Nom ++ 
+                 case c of {
+                   RC _ (NCase Gen) => cn.s ! nu.n ! Gen ;
+                   _ => cn.s ! nu.n ! Nom
+                   } ;
+      a = RAg (agrP3 Sg)
+      } ;
+
     ComplBareVS v s  = insertObj (\\_ => s.s) (predV v) ;
 
     StrandRelSlash rp slash = {
       s = \\t,a,p,ag => 
-        rp.s ! RC (fromAgr ag).g Acc ++ slash.s ! t ! a ! p ! ODir ++ slash.c2 ;
-      c = Acc
+        rp.s ! RC (fromAgr ag).g NPAcc ++ slash.s ! t ! a ! p ! ODir ++ slash.c2 ;
+      c = NPAcc
       } ;
     EmptyRelSlash slash = {
       s = \\t,a,p,_ => slash.s ! t ! a ! p ! ODir ++ slash.c2 ;
-      c = Acc
+      c = NPAcc
       } ;
 
     StrandQuestSlash ip slash = 
       {s = \\t,a,b,q => 
-         (mkQuestion (ss (ip.s ! Acc)) slash).s ! t ! a ! b ! q ++ slash.c2
+         (mkQuestion (ss (ip.s ! NPAcc)) slash).s ! t ! a ! b ! q ++ slash.c2
       };
 
   lincat
@@ -37,30 +47,10 @@
       let isAux = case vv.typ of {VVAux => True ; _ => False} in 
       insertObj (\\a => (if_then_Str isAux [] "to") ++ vpi.s ! VPIInf ! a) (predVV vv) ;
 
-    UncNegCl t p cl = {
-      s = t.s ++ p.s ++ cl.s ! t.t ! t.a ! unc p.p ! ODir
-    } ;
-    UncNegQCl t p cl = {
-      s = \\q => t.s ++ p.s ++ cl.s ! t.t ! t.a ! unc p.p ! q
-    } ;
-    UncNegRCl t p cl = {
-      s = \\r => t.s ++ p.s ++ cl.s ! t.t ! t.a ! unc p.p ! r ;
-      c = cl.c
-    } ;
-
-    UncNegImpSg p imp = {s = p.s ++ imp.s ! unc p.p ! ImpF Sg False} ;
-    UncNegImpPl p imp = {s = p.s ++ imp.s ! unc p.p ! ImpF Pl False} ;
-
-    CompoundCN a b = {s = \\n,c => a.s ! Sg ! Nom ++ b.s ! n ! c ; g = b.g} ;
-
-  oper
-    unc = contrNeg False ; 
-
-
   lin
     that_RP = 
     { s = table {
-        RC _ Gen    => "whose" ; 
+        RC _ (NCase Gen)    => "whose" ; 
         RC _ _      => "that" ;
         _           => "that"   ---- "in that" ?
 --        RPrep Neutr => "which" ;
@@ -70,6 +60,7 @@
       } ;
 
     each_Det = mkDeterminer Sg "each" ;
+    any_Quant = mkQuant "any" "any" ;
 
 -- for VP conjunction
 
@@ -84,12 +75,12 @@
     BaseVPS = twoTable Agr ;
     ConsVPS = consrTable Agr comma ;
 
-    PredVPS np vpi = {s = np.s ! Nom ++ vpi.s ! np.a} ;
+    PredVPS np vpi = {s = np.s ! npNom ++ vpi.s ! np.a} ;
 
     MkVPS t p vp = {
       s = \\a => 
             let 
-              verb = vp.s ! t.t ! t.a ! contrNeg True p.p ! ODir ! a ;
+              verb = vp.s ! t.t ! t.a ! p.p ! ODir ! a ;
               verbf = verb.aux ++ verb.adv ++ verb.fin ++ verb.inf ;
             in t.s ++ p.s ++ vp.ad ++ verbf ++ vp.s2 ! a
       } ;
@@ -108,4 +99,62 @@
     EmbedPresPart vp = {s = infVP VVPresPart vp (agrP3 Sg)} ; --- agr
 
     UttVPShort vp = {s = infVP VVAux vp (agrP3 Sg)} ;
+
+  do_VV = {
+    s = table {
+      VVF VInf => ["do"] ;
+      VVF VPres => "does" ;
+      VVF VPPart => ["done"] ; ----
+      VVF VPresPart => ["doing"] ;
+      VVF VPast => ["did"] ;      --# notpresent
+      VVPastNeg => ["didn't"] ;      --# notpresent
+      VVPresNeg => "doesn't"
+      } ;
+    typ = VVAux
+    } ;
+
+
+lin
+  UncNeg = {s = [] ; p = CNeg False} ; 
+
+  PassVPSlash vps = 
+    let 
+      be = predAux auxBe ;
+      ppt = vps.ptp
+    in {
+    s = be.s ;
+    prp = be.prp ;
+    ptp = be.ptp ;
+    inf = be.inf ;
+    ad = vps.ad ;
+    s2 = \\a => ppt ++ vps.s2 ! a ---- order
+    } ;
+
+------------
+--- obsolete: use UncNeg : Pol
+
+    UncNegCl t p cl = {
+      s = t.s ++ p.s ++ cl.s ! t.t ! t.a ! unc p.p ! ODir
+    } ;
+    UncNegQCl t p cl = {
+      s = \\q => t.s ++ p.s ++ cl.s ! t.t ! t.a ! unc p.p ! q
+    } ;
+    UncNegRCl t p cl = {
+      s = \\r => t.s ++ p.s ++ cl.s ! t.t ! t.a ! unc p.p ! r ;
+      c = cl.c
+    } ;
+
+    UncNegImpSg p imp = {s = p.s ++ imp.s ! unc p.p ! ImpF Sg False} ;
+    UncNegImpPl p imp = {s = p.s ++ imp.s ! unc p.p ! ImpF Pl False} ;
+
+    CompoundCN a b = {s = \\n,c => a.s ! Sg ! Nom ++ b.s ! n ! c ; g = b.g} ;
+
+  oper
+    unc : CPolarity -> CPolarity = \x -> case x of {
+      CNeg _ => CNeg False ; 
+      _ => x
+      } ;
+-------
+
+
 } 
diff --git a/lib/src/english/ExtraEngAbs.gf b/lib/src/english/ExtraEngAbs.gf
--- a/lib/src/english/ExtraEngAbs.gf
+++ b/lib/src/english/ExtraEngAbs.gf
@@ -1,13 +1,8 @@
 abstract ExtraEngAbs = Extra - [ProDrop] ** {
 
--- uncontracted negations; contracted are the default
-  fun
-    UncNegCl  : Temp -> Pol -> Cl  -> S ;
-    UncNegQCl : Temp -> Pol -> QCl -> QS ;
-    UncNegRCl : Temp -> Pol -> RCl -> RS ;
-
-    UncNegImpSg : Pol -> Imp -> Utt;           -- do not help yourself
-    UncNegImpPl : Pol -> Imp -> Utt;           -- do not help yourselves
+-- uncontracted negative polarity; contracted is the default for PNeg
+  fun 
+    UncNeg : Pol ;
 
 -- freely compounded nouns
 
@@ -16,9 +11,26 @@
     that_RP : RP ; -- "that" as a relational pronoun (IdRP is "which" / "who")
 
     each_Det : Det ;
+    any_Quant : Quant ;
 
 -- infinitive without to
 
     UttVPShort : VP -> Utt ;
+
+-- emphasizing "do", e.g. "John does walk"
+
+   do_VV : VV ;
+
+
+--- these are obsolete: use UncNeg : Pol instead
+
+  fun
+    UncNegCl  : Temp -> Pol -> Cl  -> S ;
+    UncNegQCl : Temp -> Pol -> QCl -> QS ;
+    UncNegRCl : Temp -> Pol -> RCl -> RS ;
+
+    UncNegImpSg : Pol -> Imp -> Utt;           -- do not help yourself
+    UncNegImpPl : Pol -> Imp -> Utt;           -- do not help yourselves
+
 
 }
diff --git a/lib/src/english/GrammarEng.gf b/lib/src/english/GrammarEng.gf
--- a/lib/src/english/GrammarEng.gf
+++ b/lib/src/english/GrammarEng.gf
@@ -11,12 +11,17 @@
   RelativeEng,
   ConjunctionEng,
   PhraseEng,
-  TextX,
+  TextX - [Pol,PPos,PNeg],
   StructuralEng,
   IdiomEng,
-  TenseX
-  ** {
+  TenseX - [Pol,PPos,PNeg]
+  ** open ResEng, Prelude in {
 
 flags startcat = Phr ; unlexer = text ; lexer = text ;
+
+lin
+  PPos = {s = [] ; p = CPos} ;
+  PNeg = {s = [] ; p = CNeg True} ; -- contracted: don't
+
 
 } ;
diff --git a/lib/src/english/IdiomEng.gf b/lib/src/english/IdiomEng.gf
--- a/lib/src/english/IdiomEng.gf
+++ b/lib/src/english/IdiomEng.gf
@@ -16,17 +16,17 @@
 
     ExistNP np = 
       mkClause "there" (agrP3 (fromAgr np.a).n) 
-        (insertObj (\\_ => np.s ! Acc) (predAux auxBe)) ;
+        (insertObj (\\_ => np.s ! NPAcc) (predAux auxBe)) ;
 
     ExistIP ip = 
-      mkQuestion (ss (ip.s ! Nom)) 
+      mkQuestion (ss (ip.s ! npNom)) 
         (mkClause "there" (agrP3 ip.n) (predAux auxBe)) ;
 
     ProgrVP vp = insertObj (\\a => vp.ad ++ vp.prp ++ vp.s2 ! a) (predAux auxBe) ;
 
     ImpPl1 vp = {s = "let's" ++ infVP VVAux vp (AgP1 Pl)} ;
 
-    ImpP3 np vp = {s = "let" ++ np.s ! Acc ++ infVP VVAux vp np.a} ;
+    ImpP3 np vp = {s = "let" ++ np.s ! NPAcc ++ infVP VVAux vp np.a} ;
 
 }
 
diff --git a/lib/src/english/LexiconEng.gf b/lib/src/english/LexiconEng.gf
--- a/lib/src/english/LexiconEng.gf
+++ b/lib/src/english/LexiconEng.gf
@@ -21,6 +21,8 @@
   become_VA = mkVA (irregV "become" "became" "become") ;
   beer_N = regN "beer" ;
   beg_V2V = mkV2V (regDuplV "beg") noPrep toP ;
+  -- prevent_V2V = ingV2V (mkV "prevent") noPrep (mkPrep "from") ;
+  -- make_V2V = mkV2V make_V noPrep noPrep ;
   big_A = duplADeg "big" ;
   bike_N = regN "bike" ;
   bird_N = regN "bird" ;
diff --git a/lib/src/english/MorphoEng.gf b/lib/src/english/MorphoEng.gf
--- a/lib/src/english/MorphoEng.gf
+++ b/lib/src/english/MorphoEng.gf
@@ -17,9 +17,9 @@
   oper 
 
   mkDeterminer : Number -> Str -> 
-    {s : Str ; sp : Case => Str; n : Number ; hasNum : Bool} = \n,s ->
+    {s : Str ; sp : NPCase => Str; n : Number ; hasNum : Bool} = \n,s ->
     {s = s; 
-     sp = regGenitiveS s ;
+     sp = \\c => regGenitiveS s ! npcase2case c ;
      n = n ;
      hasNum = True ; -- doesn't matter since s = sp
      } ;
@@ -28,12 +28,12 @@
 
 
   mkPron : (i,me,my,mine : Str) -> Number -> Person -> Gender -> 
-    {s : Case => Str ; sp : Case => Str ; a : Agr} =
+    {s : NPCase => Str ; sp : Case => Str ; a : Agr} =
      \i,me,my,mine,n,p,g -> {
      s = table {
-       Nom => i ;
-       Acc => me ;
-       Gen => my
+       NCase Nom => i ;
+       NPAcc => me ;
+       NCase Gen => my
        } ;
      a = toAgr n p g ;
      sp = regGenitiveS mine
diff --git a/lib/src/english/NounEng.gf b/lib/src/english/NounEng.gf
--- a/lib/src/english/NounEng.gf
+++ b/lib/src/english/NounEng.gf
@@ -4,11 +4,11 @@
 
   lin
     DetCN det cn = {
-      s = \\c => det.s ++ cn.s ! det.n ! c ; 
+      s = \\c => det.s ++ cn.s ! det.n ! npcase2case c ; 
       a = agrgP3 det.n cn.g
       } ;
 
-    UsePN pn = pn ** {a = agrgP3 Sg pn.g} ;
+    UsePN pn = {s = \\c => pn.s ! npcase2case c ; a = agrgP3 Sg pn.g} ;
     UsePron p = p ;
 
     PredetNP pred np = {
@@ -35,7 +35,7 @@
       s  = quant.s ! num.hasCard ! num.n ++ num.s ! Nom;
       sp = \\c => case num.hasCard of {
                      False => quant.sp ! num.hasCard ! num.n ! c ++ num.s ! Nom ;
-                     True  => quant.sp ! num.hasCard ! num.n ! Nom ++ num.s ! c
+                     True  => quant.sp ! num.hasCard ! num.n ! npNom ++ num.s ! npcase2case c
                   } ;
       n  = num.n ;
       hasNum = num.hasCard
@@ -43,19 +43,19 @@
 
     DetQuantOrd quant num ord = {
       s  = quant.s ! num.hasCard ! num.n ++ num.s ! Nom ++ ord.s ! Nom; 
-      sp = \\c => quant.sp ! num.hasCard ! num.n ! Nom ++ num.s ! Nom ++ ord.s ! c ; 
+      sp = \\c => quant.sp ! num.hasCard ! num.n ! npNom ++ num.s ! Nom ++ ord.s ! npcase2case c ; 
       n  = num.n ;
       hasNum = True
       } ;
 
     DetNP det = {
-      s = case det.hasNum of {True => \\_ => det.s ; _ => det.sp} ;
+      s = case det.hasNum of {True => \\_ => det.s ; _ => \\c => det.sp ! c} ;
       a = agrP3 det.n
       } ;
 
     PossPron p = {
-      s = \\_,_ => p.s ! Gen ;
-      sp = \\_,_ => p.sp 
+      s = \\_,_ => p.s ! NCase Gen ;
+      sp = \\_,_,c => p.sp ! npcase2case c 
       } ;
 
     NumSg = {s = \\c => []; n = Sg ; hasCard = False} ;
@@ -77,8 +77,8 @@
     DefArt = {
       s  = \\hasCard,n => artDef ;
       sp = \\hasCard,n => case <n,hasCard> of {
-        <Sg,False> => table { Gen => "its"; _ => "it" } ;
-        <Pl,False> => table { Nom => "they"; Acc => "them"; Gen => "theirs" } ;
+        <Sg,False> => table { NCase Gen => "its"; _ => "it" } ;
+        <Pl,False> => table { NCase Nom => "they"; NPAcc => "them"; NCase Gen => "theirs" } ;
         _          => \\c => artDef
         }
       } ;
@@ -89,14 +89,14 @@
         _          => []
         } ;
       sp = \\hasCard,n => case <n,hasCard> of {
-        <Sg,False> => table { Gen => "one's"; _ => "one" };
-        <Pl,False> => table { Gen => "ones'"; _ => "ones" } ;
+        <Sg,False> => table {NCase Gen => "one's"; _ => "one" };
+        <Pl,False> => table {NCase Gen => "ones'"; _ => "ones" } ;
         _          => \\c => []
         }
       } ;
 
     MassNP cn = {
-      s = cn.s ! Sg ;
+      s = \\c => cn.s ! Sg ! npcase2case c ;
       a = agrP3 Sg
       } ;
 
@@ -116,9 +116,9 @@
       c2 = f.c3
       } ;
 
-    ComplN2 f x = {s = \\n,c => f.s ! n ! Nom ++ f.c2 ++ x.s ! c ; g = f.g} ;
+    ComplN2 f x = {s = \\n,c => f.s ! n ! Nom ++ f.c2 ++ x.s ! NPAcc ; g = f.g} ;
     ComplN3 f x = {
-      s = \\n,c => f.s ! n ! Nom ++ f.c2 ++ x.s ! c ;
+      s = \\n,c => f.s ! n ! Nom ++ f.c2 ++ x.s ! NPAcc ;
       g = f.g ;
       c2 = f.c3
       } ;
@@ -135,6 +135,6 @@
 
     SentCN cn sc = {s = \\n,c => cn.s ! n ! c ++ sc.s ; g = cn.g} ;
 
-    ApposCN cn np = {s = \\n,c => cn.s ! n ! Nom ++ np.s ! c ; g = cn.g} ;
+    ApposCN cn np = {s = \\n,c => cn.s ! n ! Nom ++ np.s ! NCase c ; g = cn.g} ;
 
 }
diff --git a/lib/src/english/ParadigmsEng.gf b/lib/src/english/ParadigmsEng.gf
--- a/lib/src/english/ParadigmsEng.gf
+++ b/lib/src/english/ParadigmsEng.gf
@@ -307,7 +307,8 @@
   mkV2S : V -> Prep -> V2S ; -- e.g. tell (NP) (that S)
   mkVV  : V -> VV ; -- e.g. want (to VP)
   ingVV : V -> VV ; -- e.g. start (VPing)
-  mkV2V : V -> Prep -> Prep -> V2V ; -- e.g. want (NP) (to VP)
+  mkV2V : V -> Prep -> Prep -> V2V ;  -- e.g. want (noPrep NP) (to VP)
+  ingV2V : V -> Prep -> Prep -> V2V ; -- e.g. prevent (noPrep NP) (from VP-ing)
   mkVA  : V -> VA ; -- e.g. become (AP)
   mkV2A : V -> Prep -> V2A ; -- e.g. paint (NP) (AP)
   mkVQ  : V -> VQ ; -- e.g. wonder (QS)
@@ -336,15 +337,15 @@
 
   Gender = ResEng.Gender ; 
   Number = ResEng.Number ;
-  Case = ResEng.Case ;
+  Case = ResEng.NPCase ;
   human = Masc ; 
   nonhuman = Neutr ;
   masculine = Masc ;
   feminine = Fem ;
   singular = Sg ;
   plural = Pl ;
-  nominative = Nom ;
-  genitive = Gen ;
+  nominative = npNom ;
+  genitive = npGen ;
 
   npNumber np = (fromAgr np.a).n ;
 
@@ -428,7 +429,8 @@
   mkQuantifier : Str -> Str -> Str -> Str -> Quant = 
    \sg,pl,sg',pl' -> lin Quant {
     s = \\_  => table { Sg => sg ; Pl => pl } ;
-    sp = \\_ => table { Sg => regGenitiveS sg' ; Pl => regGenitiveS pl'}
+    sp = \\_ => table { 
+      Sg => \\c => regGenitiveS sg' ! npcase2case c ; Pl => \\c => regGenitiveS pl' ! npcase2case c}
     } ;
 
   mkOrd : Str -> Ord = \x -> lin Ord { s = regGenitiveS x};
@@ -555,7 +557,8 @@
 
   mkV0  v = v ;
   mkV2S v p = lin V2S (prepV2 v p) ;
-  mkV2V v p t = lin V2V (prepV2 v p ** {typ = VVInf}) ;
+  mkV2V v p t = lin V2V (prepV2 v p ** {c3 = t.s ; typ = VVAux}) ;
+  ingV2V v p t = lin V2V (prepV2 v p ** {c3 = t.s ; typ = VVPresPart}) ;
   mkVA  v = lin VA v ;
   mkV2A v p = lin V2A (prepV2 v p) ;
   mkV2Q v p = lin V2Q (prepV2 v p) ;
diff --git a/lib/src/english/PhraseEng.gf b/lib/src/english/PhraseEng.gf
--- a/lib/src/english/PhraseEng.gf
+++ b/lib/src/english/PhraseEng.gf
@@ -5,13 +5,13 @@
 
     UttS s = s ;
     UttQS qs = {s = qs.s ! QDir} ;
-    UttImpSg pol imp = {s = pol.s ++ imp.s ! contrNeg True pol.p ! ImpF Sg False} ;
-    UttImpPl pol imp = {s = pol.s ++ imp.s ! contrNeg True pol.p ! ImpF Pl False} ;
-    UttImpPol pol imp = {s = pol.s ++ imp.s ! contrNeg True pol.p ! ImpF Sg True} ;
+    UttImpSg pol imp = {s = pol.s ++ imp.s ! pol.p ! ImpF Sg False} ;
+    UttImpPl pol imp = {s = pol.s ++ imp.s ! pol.p ! ImpF Pl False} ;
+    UttImpPol pol imp = {s = pol.s ++ imp.s ! pol.p ! ImpF Sg True} ;
 
-    UttIP ip = {s = ip.s ! Nom} ; --- Acc also
+    UttIP ip = {s = ip.s ! npNom} ; --- Acc also
     UttIAdv iadv = iadv ;
-    UttNP np = {s = np.s ! Nom} ;
+    UttNP np = {s = np.s ! npNom} ;
     UttVP vp = {s = infVP VVInf vp (agrP3 Sg)} ;
     UttAdv adv = adv ;
     UttCN n = {s = n.s ! Sg ! Nom} ;
@@ -23,6 +23,6 @@
     PConjConj conj = {s = conj.s2} ; ---
 
     NoVoc = {s = []} ;
-    VocNP np = {s = "," ++ np.s ! Nom} ;
+    VocNP np = {s = "," ++ np.s ! npNom} ;
 
 }
diff --git a/lib/src/english/QuestionEng.gf b/lib/src/english/QuestionEng.gf
--- a/lib/src/english/QuestionEng.gf
+++ b/lib/src/english/QuestionEng.gf
@@ -14,20 +14,20 @@
       } ;
 
     QuestVP qp vp = 
-      let cl = mkClause (qp.s ! Nom) (agrP3 qp.n) vp
+      let cl = mkClause (qp.s ! npNom) (agrP3 qp.n) vp
       in {s = \\t,a,b,_ => cl.s ! t ! a ! b ! ODir} ;
 
     QuestSlash ip slash = 
-      mkQuestion (ss (slash.c2 ++ ip.s ! Acc)) slash ;
+      mkQuestion (ss (slash.c2 ++ ip.s ! NPAcc)) slash ;
       --- stranding in ExratEng 
 
     QuestIAdv iadv cl = mkQuestion iadv cl ;
 
     QuestIComp icomp np = 
-      mkQuestion icomp (mkClause (np.s ! Nom) np.a (predAux auxBe)) ;
+      mkQuestion icomp (mkClause (np.s ! npNom) np.a (predAux auxBe)) ;
 
 
-    PrepIP p ip = {s = p.s ++ ip.s ! Acc} ;
+    PrepIP p ip = {s = p.s ++ ip.s ! NPAcc} ;
 
     AdvIP ip adv = {
       s = \\c => ip.s ! c ++ adv.s ;
@@ -35,7 +35,7 @@
       } ;
  
     IdetCN idet cn = {
-      s = \\c => idet.s ++ cn.s ! idet.n ! c ; 
+      s = \\c => idet.s ++ cn.s ! idet.n ! npcase2case c ; 
       n = idet.n
       } ;
 
@@ -52,17 +52,17 @@
     AdvIAdv i a = ss (i.s ++ a.s) ;
 
     CompIAdv a = a ;
-    CompIP p = ss (p.s ! Nom) ;
+    CompIP p = ss (p.s ! npNom) ;
 
   lincat 
     QVP = ResEng.VP ;
   lin
-    ComplSlashIP vp np = insertObjPre (\\_ => vp.c2 ++ np.s ! Acc) vp ;
+    ComplSlashIP vp np = insertObjPre (\\_ => vp.c2 ++ np.s ! NPAcc) vp ;
     AdvQVP vp adv = insertObj (\\_ => adv.s) vp ;
     AddAdvQVP vp adv = insertObj (\\_ => adv.s) vp ;
 
     QuestQVP qp vp = 
-      let cl = mkClause (qp.s ! Nom) (agrP3 qp.n) vp
+      let cl = mkClause (qp.s ! npNom) (agrP3 qp.n) vp
       in {s = \\t,a,b,_ => cl.s ! t ! a ! b ! ODir} ;
 
 
diff --git a/lib/src/english/RelativeEng.gf b/lib/src/english/RelativeEng.gf
--- a/lib/src/english/RelativeEng.gf
+++ b/lib/src/english/RelativeEng.gf
@@ -6,7 +6,7 @@
 
     RelCl cl = {
       s = \\t,a,p,_ => "such" ++ "that" ++ cl.s ! t ! a ! p ! ODir ; 
-      c = Nom
+      c = npNom
       } ;
 
     RelVP rp vp = {
@@ -16,10 +16,10 @@
             RNoAg => ag ;
             RAg a => a
             } ;
-          cl = mkClause (rp.s ! RC (fromAgr agr).g Nom) agr vp
+          cl = mkClause (rp.s ! RC (fromAgr agr).g npNom) agr vp
         in
         cl.s ! t ! ant ! b ! ODir ;
-      c = Nom
+      c = npNom
       } ;
 
 -- Pied piping: "at which we are looking". Stranding and empty
@@ -29,20 +29,20 @@
     RelSlash rp slash = {
       s = \\t,a,p,agr => 
           slash.c2 ++ rp.s ! RPrep (fromAgr agr).g ++ slash.s ! t ! a ! p ! ODir ;
-      c = Acc
+      c = NPAcc
       } ;
 
     FunRP p np rp = {
-      s = \\c => np.s ! Acc ++ p.s ++ rp.s ! RPrep (fromAgr np.a).g ;
+      s = \\c => np.s ! NPAcc ++ p.s ++ rp.s ! RPrep (fromAgr np.a).g ;
       a = RAg np.a
       } ;
 
     IdRP = 
      { s = table {
-        RC _ Gen => "whose" ; 
+        RC _ (NCase Gen) => "whose" ; 
         RC Neutr _  => "which" ;
-        RC _ Acc    => "whom" ;
-        RC _ Nom    => "who" ;
+        RC _ NPAcc    => "whom" ;
+        RC _ (NCase Nom)    => "who" ;
         RPrep Neutr => "which" ;
         RPrep _     => "whom"
         } ;
diff --git a/lib/src/english/ResEng.gf b/lib/src/english/ResEng.gf
--- a/lib/src/english/ResEng.gf
+++ b/lib/src/english/ResEng.gf
@@ -16,11 +16,23 @@
 
 --2 For $Noun$
 
--- This is the worst-case $Case$ needed for pronouns.
+-- This is case as needed when inflecting nouns.
 
   param
-    Case = Nom | Acc | Gen ;
+    Case = Nom | Gen ;
 
+-- This is the worst-case $Case$ needed for pronouns.
+
+    NPCase = NCase Case | NPAcc ;
+
+-- Useful macros and conversions:
+
+  oper
+    npNom : NPCase = NCase Nom ;
+    npGen : NPCase = NCase Gen ;
+
+    npcase2case : NPCase -> Case = \nc -> case nc of {NCase c => c ; _ => Nom} ;
+
 -- Agreement of $NP$ has 8 values. $Gender$ is needed for "who"/"which" and
 -- for "himself"/"herself"/"itself".
 
@@ -67,7 +79,7 @@
 --2 For $Relative$
  
     RAgr = RNoAg | RAg Agr ;
-    RCase = RPrep Gender | RC Gender Case ;
+    RCase = RPrep Gender | RC Gender NPCase ;
 
 --2 For $Numeral$
 
@@ -145,23 +157,23 @@
       isRefl = False
       } ;
 
-    mkIP : (i,me,my : Str) -> Number -> {s : Case => Str ; n : Number} =
+    mkIP : (i,me,my : Str) -> Number -> {s : NPCase => Str ; n : Number} =
      \i,me,my,n -> let who = mkNP i me my n P3 Neutr in {
         s = who.s ; 
         n = n
         } ;
 
     mkNP : (i,me,my : Str) -> Number -> Person -> Gender -> 
-     {s : Case => Str ; a : Agr} = \i,me,my,n,p,g -> 
+     {s : NPCase => Str ; a : Agr} = \i,me,my,n,p,g -> 
    { s = table {
-       Nom => i ;
-       Acc => me ;
-       Gen => my
+       NCase Nom => i ;
+       NPAcc => me ;
+       NCase Gen => my
        } ;
      a = toAgr n p g ;
    };
 
-    regNP : Str -> Number -> {s : Case => Str ; a : Agr} = \that,n ->
+    regNP : Str -> Number -> {s : NPCase => Str ; a : Agr} = \that,n ->
       mkNP that that (that + "'s") n P3 Neutr ;
 
     regGenitiveS : Str -> Case => Str = \s -> 
@@ -212,6 +224,7 @@
   VP : Type = {
     s   : VerbForms ;
     prp : Str ;   -- present participle 
+    ptp : Str ;   -- past participle
     inf : Str ;   -- the infinitive form ; VerbForms would be the logical place
     ad  : Str ;   -- sentence adverb
     s2  : Agr => Str -- complement
@@ -251,6 +264,7 @@
         <Pres,Simul,CNeg c,_>    => vfn c (does agr) (doesnt agr) inf
         } ;
     prp  = verb.s ! VPresPart ;
+    ptp  = verb.s ! VPPart ;
     inf  = verb.s ! VInf ;
     ad   = [] ;
     s2 = \\a => if_then_Str verb.isRefl (reflPron ! a) []
@@ -287,6 +301,7 @@
         <Pres,Simul,CNeg c,  _>  => vfn c finp fin          [] 
         } ;
     prp = verb.prpart ;
+    ptp = verb.ppart ;
     inf = verb.inf ;
     ad = [] ;
     s2 = \\_ => []
@@ -307,6 +322,7 @@
   insertObj : (Agr => Str) -> VP -> VP = \obj,vp -> {
     s = vp.s ;
     prp = vp.prp ;
+    ptp = vp.ptp ;
     inf = vp.inf ;
     ad = vp.ad ;
     s2 = \\a => vp.s2 ! a ++ obj ! a
@@ -315,6 +331,7 @@
   insertObjPre : (Agr => Str) -> VP -> VP = \obj,vp -> {
     s = vp.s ;
     prp = vp.prp ;
+    ptp = vp.ptp ;
     inf = vp.inf ;
     ad = vp.ad ;
     s2 = \\a => obj ! a ++ vp.s2 ! a 
@@ -328,6 +345,7 @@
   insertAdV : Str -> VP -> VP = \ad,vp -> {
     s = vp.s ;
     prp = vp.prp ;
+    ptp = vp.ptp ;
     inf = vp.inf ;
     ad  = vp.ad ++ ad ;
     s2 = \\a => vp.s2 ! a
diff --git a/lib/src/english/SentenceEng.gf b/lib/src/english/SentenceEng.gf
--- a/lib/src/english/SentenceEng.gf
+++ b/lib/src/english/SentenceEng.gf
@@ -4,7 +4,7 @@
 
   lin
 
-    PredVP np vp = mkClause (np.s ! Nom) np.a vp ;
+    PredVP np vp = mkClause (np.s ! npNom) np.a vp ;
 
     PredSCVP sc vp = mkClause sc.s (agrP3 Sg) vp ;
 
@@ -23,7 +23,7 @@
     } ;
 
     SlashVP np vp = 
-      mkClause (np.s ! Nom) np.a vp ** {c2 = vp.c2} ;
+      mkClause (np.s ! npNom) np.a vp ** {c2 = vp.c2} ;
 
     AdvSlash slash adv = {
       s  = \\t,a,b,o => slash.s ! t ! a ! b ! o ++ adv.s ;
@@ -33,7 +33,7 @@
     SlashPrep cl prep = cl ** {c2 = prep.s} ;
 
     SlashVS np vs slash = 
-      mkClause (np.s ! Nom) np.a 
+      mkClause (np.s ! npNom) np.a 
         (insertObj (\\_ => conjThat ++ slash.s) (predV vs))  **
         {c2 = slash.c2} ;
 
@@ -56,14 +56,16 @@
       c2 = cl.c2
     } ;
 
-    AdvS a s = {s = a.s ++ "," ++ s.s} ;
+    AdvS a s = {s = a.s ++ s.s} ;
+    ExtAdvS a s = {s = a.s ++ "," ++ s.s} ;
 
     SSubjS a s b = {s = a.s ++ s.s ++ b.s} ;
 
     RelS s r = {s = s.s ++ "," ++ r.s ! agrP3 Sg} ;
 
   oper
-    ctr = contrNeg True ;  -- contracted negations
+    ctr : CPolarity -> CPolarity = \x -> x ;
+---    ctr = contrNeg True ;  -- contracted negations
 
 }
 
diff --git a/lib/src/english/SymbolEng.gf b/lib/src/english/SymbolEng.gf
--- a/lib/src/english/SymbolEng.gf
+++ b/lib/src/english/SymbolEng.gf
@@ -8,15 +8,15 @@
   FloatPN i = {s = addGenitiveS i.s ; g = Neutr} ;
   NumPN i = {s = i.s ; g = Neutr} ;
   CNIntNP cn i = {
-    s = \\c => cn.s ! Sg ! Nom ++ (addGenitiveS i.s) ! c ;
+    s = \\c => cn.s ! Sg ! Nom ++ (addGenitiveS i.s) ! npcase2case c ;
     a = agrgP3 Sg cn.g
     } ;
   CNSymbNP det cn xs = {
-    s = \\c => det.s ++ cn.s ! det.n ! Nom ++ (addGenitiveS xs.s) ! c ; 
+    s = \\c => det.s ++ cn.s ! det.n ! Nom ++ (addGenitiveS xs.s) ! npcase2case c ; 
     a = agrgP3 det.n cn.g
     } ;
   CNNumNP cn i = {
-    s = \\c => cn.s ! Sg ! Nom ++ i.s ! c ;
+    s = \\c => cn.s ! Sg ! Nom ++ i.s ! npcase2case c ;
     a = agrgP3 Sg cn.g
     } ;
 
diff --git a/lib/src/english/VerbEng.gf b/lib/src/english/VerbEng.gf
--- a/lib/src/english/VerbEng.gf
+++ b/lib/src/english/VerbEng.gf
@@ -7,36 +7,38 @@
 
     SlashV2a v = predVc v ;
     Slash2V3 v np = 
-      insertObjc (\\_ => v.c2 ++ np.s ! Acc) (predV v ** {c2 = v.c3}) ;
+      insertObjc (\\_ => v.c2 ++ np.s ! NPAcc) (predV v ** {c2 = v.c3}) ;
     Slash3V3 v np = 
-      insertObjc (\\_ => v.c3 ++ np.s ! Acc) (predVc v) ; ----
+      insertObjc (\\_ => v.c3 ++ np.s ! NPAcc) (predVc v) ; ----
 
     ComplVV v vp = insertObj (\\a => infVP v.typ vp a) (predVV v) ;
     ComplVS v s  = insertObj (\\_ => conjThat ++ s.s) (predV v) ;
     ComplVQ v q  = insertObj (\\_ => q.s ! QIndir) (predV v) ;
     ComplVA v ap = insertObj (ap.s) (predV v) ;
 
-    SlashV2V v vp = insertObjc (\\a => infVP v.typ vp a) (predVc v) ;
+    SlashV2V v vp = insertObjc (\\a => v.c3 ++ infVP v.typ vp a) (predVc v) ;
     SlashV2S v s  = insertObjc (\\_ => conjThat ++ s.s) (predVc v) ;
     SlashV2Q v q  = insertObjc (\\_ => q.s ! QIndir) (predVc v) ;
     SlashV2A v ap = insertObjc (\\a => ap.s ! a) (predVc v) ; ----
 
-    ComplSlash vp np = insertObjPre (\\_ => vp.c2 ++ np.s ! Acc) vp ;
+    ComplSlash vp np = insertObjPre (\\_ => vp.c2 ++ np.s ! NPAcc) vp ;
 
     SlashVV vv vp = 
       insertObj (\\a => infVP vv.typ vp a) (predVV vv) **
         {c2 = vp.c2} ;
     SlashV2VNP vv np vp = 
-      insertObjPre (\\_ => vv.c2 ++ np.s ! Acc)
-        (insertObjc (\\a => infVP vv.typ vp a) (predVc vv)) **
+      insertObjPre (\\_ => vv.c2 ++ np.s ! NPAcc)
+        (insertObjc (\\a => vv.c3 ++ infVP vv.typ vp a) (predVc vv)) **
           {c2 = vp.c2} ;
 
     UseComp comp = insertObj comp.s (predAux auxBe) ;
 
     AdvVP vp adv = insertObj (\\_ => adv.s) vp ;
-
     AdVVP adv vp = insertAdV adv.s vp ;
 
+    AdvVPSlash vp adv = insertObj (\\_ => adv.s) vp ** {c2 = vp.c2} ;
+    AdVVPSlash adv vp = insertAdV adv.s vp ** {c2 = vp.c2} ;
+
     ReflVP v = insertObjPre (\\a => v.c2 ++ reflPron ! a) v ;
 
     PassV2 v = insertObj (\\_ => v.s ! VPPart) (predAux auxBe) ;
@@ -44,7 +46,7 @@
 ---b    UseVS, UseVQ = \vv -> {s = vv.s ; c2 = [] ; isRefl = vv.isRefl} ; -- no "to"
 
     CompAP ap = ap ;
-    CompNP np = {s = \\_ => np.s ! Acc} ;
+    CompNP np = {s = \\_ => np.s ! NPAcc} ;
     CompAdv a = {s = \\_ => a.s} ;
     CompCN cn = {s = \\a => case (fromAgr a).n of { 
       Sg => artIndef ++ cn.s ! Sg ! Nom ;
diff --git a/lib/src/finnish/AllFin.gf b/lib/src/finnish/AllFin.gf
--- a/lib/src/finnish/AllFin.gf
+++ b/lib/src/finnish/AllFin.gf
@@ -1,6 +1,6 @@
 --# -path=.:../abstract:../common:prelude
 
 concrete AllFin of AllFinAbs = 
-  LangFin,
-  ExtraFin
+  LangFin - [SlashV2VNP,SlashVV, TFut], ---- to speed up linking; to remove spurious parses
+  ExtraFin - [ProDrop, ProDropPoss, S_OSV, S_VSO, S_ASV] -- to exclude spurious parses
   ** {} ;
diff --git a/lib/src/finnish/CatFin.gf b/lib/src/finnish/CatFin.gf
--- a/lib/src/finnish/CatFin.gf
+++ b/lib/src/finnish/CatFin.gf
@@ -95,6 +95,6 @@
     N3 = {s : NForm => Str} ** {c2,c3 : Compl ; isPre,isPre2 : Bool} ;
     PN = {s : Case  => Str} ;
 
-oper Verb1 = {s : VForm => Str ; sc : NPForm ; qp : Str} ;
+oper Verb1 = {s : VForm => Str ; sc : NPForm ; qp : Bool} ;
 
 }
diff --git a/lib/src/finnish/DictCompFin.gf b/lib/src/finnish/DictCompFin.gf
new file mode 100644
# file too large to diff: lib/src/finnish/DictCompFin.gf
diff --git a/lib/src/finnish/DictCompFinAbs.gf b/lib/src/finnish/DictCompFinAbs.gf
new file mode 100644
--- /dev/null
+++ b/lib/src/finnish/DictCompFinAbs.gf
@@ -0,0 +1,35305 @@
+abstract DictCompFinAbs = DictFinAbs ** {
+
+fun aaltoallas_NK : NK ;
+fun aaltoalue_NK : NK ;
+fun aaltoenergia_NK : NK ;
+fun aaltolevy_NK : NK ;
+fun aaltoliike_NK : NK ;
+fun aaltopahvi_NK : NK ;
+fun aaltopelti_NK : NK ;
+fun aaltopituus_NK : NK ;
+fun aaltosulje_NK : NK ;
+fun aaltosulku_NK : NK ;
+fun aaltosulkumerkki_NK : NK ;
+fun aaltoviiva_NK : NK ;
+fun aaltovoimala_NK : NK ;
+fun aamuaskare_NK : NK ;
+fun aamuateria_NK : NK ;
+fun aamuhartaus_NK : NK ;
+fun aamuha'ma'ra'_NK : NK ;
+fun aamujuna_NK : NK ;
+fun aamukahdeksan_NK : NK ;
+fun aamukahvi_NK : NK ;
+fun aamukampa_NK : NK ;
+fun aamukaste_NK : NK ;
+fun aamukylma'_NK : NK ;
+fun aamulehti_NK : NK ;
+fun aamulenkki_NK : NK ;
+fun aamulypsy_NK : NK ;
+fun aamula'hetys_NK : NK ;
+fun aamula'mpo'_NK : NK ;
+fun aamupala_NK : NK ;
+fun aamupesu_NK : NK ;
+fun aamupuoli_NK : NK ;
+fun aamupa'iva'_NK : NK ;
+fun aamurusko_NK : NK ;
+fun aamuruuhka_NK : NK ;
+fun aamutakki_NK : NK ;
+fun aamutohveli_NK : NK ;
+fun aamutorkku_NK : NK ;
+fun aamutossu_NK : NK ;
+fun aamuta'hti_NK : NK ;
+fun aamuvarhainen_NK : NK ;
+fun aamuvartio_NK : NK ;
+fun aamuvirkku_NK : NK ;
+fun aamuvoimistelu_NK : NK ;
+fun aamuvuoro_NK : NK ;
+fun aapasuo_NK : NK ;
+fun aarniohauta_NK : NK ;
+fun aarniometsa'_NK : NK ;
+fun aarreaitta_NK : NK ;
+fun aarrehauta_NK : NK ;
+fun aarrekammio_NK : NK ;
+fun aarreka'tko'_NK : NK ;
+fun aarrelo'yto'_NK : NK ;
+fun aarretuli_NK : NK ;
+fun aarrevalkea_NK : NK ;
+fun aasialainen_NK : NK ;
+fun aasialaisuus_NK : NK ;
+fun aasimainen_AK : AK ;
+fun aatehistoria_NK : NK ;
+fun aatekilpailu_NK : NK ;
+fun aatemaailma_NK : NK ;
+fun aaterakennelma_NK : NK ;
+fun aatesisar_NK : NK ;
+fun aatesuunta_NK : NK ;
+fun aatetoveri_NK : NK ;
+fun aateveli_NK : NK ;
+fun aatevirtaus_NK : NK ;
+fun aattoilta_NK : NK ;
+fun aavejuna_NK : NK ;
+fun aavekipu_NK : NK ;
+fun aavelaiva_NK : NK ;
+fun aavemainen_AK : AK ;
+fun aavistusla'hto'_NK : NK ;
+fun aborttipilleri_NK : NK ;
+fun aborttitabletti_NK : NK ;
+fun abstinenssioire_NK : NK ;
+fun adoptiolapsi_NK : NK ;
+fun adventtikalenteri_NK : NK ;
+fun adventtikirkko_NK : NK ;
+fun adventtisunnuntai_NK : NK ;
+fun affektiha'irio'_NK : NK ;
+fun aforismikokoelma_NK : NK ;
+fun afrokampaus_NK : NK ;
+fun afrokommunismi_NK : NK ;
+fun agenttifilmi_NK : NK ;
+fun agenttiromaani_NK : NK ;
+fun agentuuriliike_NK : NK ;
+fun ahdashenkinen_NK : NK ;
+fun ahdashenkisyys_NK : NK ;
+fun ahdaskatseinen_NK : NK ;
+fun ahdasmielisyys_NK : NK ;
+fun ahdasna'ko'inen_AK : AK ;
+fun ahdasna'ko'isyys_NK : NK ;
+fun ahdasrajainen_AK : AK ;
+fun ahdekaunokki_NK : NK ;
+fun ahdelauha_NK : NK ;
+fun ahdinkotila_NK : NK ;
+fun ahdistuneisuusha'irio'_NK : NK ;
+fun ahdistusneuroosi_NK : NK ;
+fun ahdistustila_NK : NK ;
+fun ahomansikka_NK : NK ;
+fun ahoniitty_NK : NK ;
+fun ahtausliike_NK : NK ;
+fun ahtaustyo'_NK : NK ;
+fun ahtisaarna_NK : NK ;
+fun ahvenheina'_NK : NK ;
+fun ahvenruoho_NK : NK ;
+fun ahvenvita_NK : NK ;
+fun aidaska'a'pa'_NK : NK ;
+fun aiesopimus_NK : NK ;
+fun aihepiiri_NK : NK ;
+fun aihetodiste_NK : NK ;
+fun aikaero_NK : NK ;
+fun aikaerorasitus_NK : NK ;
+fun aikaihminen_NK : NK ;
+fun aikajakso_NK : NK ;
+fun aikaja'rjestys_NK : NK ;
+fun aikakauppa_NK : NK ;
+fun aikakausi_NK : NK ;
+fun aikakirja_NK : NK ;
+fun aikakone_NK : NK ;
+fun aikakysymys_NK : NK ;
+fun aikakytkin_NK : NK ;
+fun aikalainen_NK : NK ;
+fun aikalaukaisin_NK : NK ;
+fun aikalisa'_NK : NK ;
+fun aikalukko_NK : NK ;
+fun aikaluokka_NK : NK ;
+fun aikamatka_NK : NK ;
+fun aikamatkailu_NK : NK ;
+fun aikamatkustus_NK : NK ;
+fun aikamerkki_NK : NK ;
+fun aikamies_NK : NK ;
+fun aikamiespoika_NK : NK ;
+fun aikamiina_NK : NK ;
+fun aikamitta_NK : NK ;
+fun aikamoinen_NK : NK ;
+fun aikamuoto_NK : NK ;
+fun aikama'a'ra'_NK : NK ;
+fun aikapalkka_NK : NK ;
+fun aikapalkkainen_NK : NK ;
+fun aikapalkkaus_NK : NK ;
+fun aikapeli_NK : NK ;
+fun aikapommi_NK : NK ;
+fun aikapula_NK : NK ;
+fun aikarahtaus_NK : NK ;
+fun aikarajoitus_NK : NK ;
+fun aikasytytin_NK : NK ;
+fun aikasytytys_NK : NK ;
+fun aikataulu_NK : NK ;
+fun aikatiedotus_NK : NK ;
+fun aikaurakka_NK : NK ;
+fun aikavalotus_NK : NK ;
+fun aikavaraus_NK : NK ;
+fun aikaveloitus_NK : NK ;
+fun aikavyo'hyke_NK : NK ;
+fun aikava'li_NK : NK ;
+fun aikayksikko'_NK : NK ;
+fun ainavihanta_NK : NK ;
+fun aineenvaihduntaha'irio'_NK : NK ;
+fun ainehiukkanen_NK : NK ;
+fun aineistokoe_NK : NK ;
+fun ainejakoinen_NK : NK ;
+fun aineja'rjesto'_NK : NK ;
+fun ainekirjoitus_NK : NK ;
+fun ainekoostumus_NK : NK ;
+fun aineluokka_NK : NK ;
+fun ainema'a'ra'_NK : NK ;
+--? fun aineopinnot_NK : NK ;
+fun aineosa_NK : NK ;
+fun ainesana_NK : NK ;
+fun aineseos_NK : NK ;
+fun aineskokoelma_NK : NK ;
+fun ainesosa_NK : NK ;
+fun ainespuu_NK : NK ;
+fun aineyhdistelma'_NK : NK ;
+fun ainoalaatuinen_NK : NK ;
+fun ainoalaatuisuus_NK : NK ;
+fun ainutkertainen_NK : NK ;
+fun ainutlaatuinen_NK : NK ;
+fun ainutlaatuisuus_NK : NK ;
+fun airopari_NK : NK ;
+fun aisakello_NK : NK ;
+fun aisapari_NK : NK ;
+fun aistiharha_NK : NK ;
+fun aistihavainto_NK : NK ;
+fun aistimaailma_NK : NK ;
+fun aistinelin_NK : NK ;
+fun aistinsolu_NK : NK ;
+fun aistivaikutelma_NK : NK ;
+fun aistivammainen_NK : NK ;
+fun aitajuoksija_NK : NK ;
+fun aitajuoksu_NK : NK ;
+fun aitapensas_NK : NK ;
+fun aitiopaikka_NK : NK ;
+fun aitopera'inen_NK : NK ;
+fun aitovieri_NK : NK ;
+fun aivoaine_NK : NK ;
+fun aivofilmi_NK : NK ;
+fun aivohalvaus_NK : NK ;
+fun aivohermo_NK : NK ;
+fun aivoinvalidi_NK : NK ;
+fun aivokalvo_NK : NK ;
+fun aivokammio_NK : NK ;
+fun aivokasvain_NK : NK ;
+fun aivokirurgi_NK : NK ;
+fun aivokuolema_NK : NK ;
+--? fun aivokuollut_NK : NK ;
+fun aivokuori_NK : NK ;
+fun aivokuume_NK : NK ;
+fun aivokuva_NK : NK ;
+fun aivokuvaus_NK : NK ;
+fun aivoka'yra'_NK : NK ;
+fun aivoleikkaus_NK : NK ;
+fun aivolisa'ke_NK : NK ;
+fun aivopaine_NK : NK ;
+fun aivopesu_NK : NK ;
+fun aivopuolisko_NK : NK ;
+fun aivoriihi_NK : NK ;
+fun aivorunko_NK : NK ;
+fun aivosairaus_NK : NK ;
+fun aivosolu_NK : NK ;
+fun aivosyntyinen_NK : NK ;
+fun aivotoiminta_NK : NK ;
+fun aivotrusti_NK : NK ;
+fun aivotulehdus_NK : NK ;
+fun aivotyo'_NK : NK ;
+fun aivota'ra'hdys_NK : NK ;
+fun aivovamma_NK : NK ;
+fun aivovammainen_NK : NK ;
+fun aivovaurio_NK : NK ;
+fun aivovauriolapsi_NK : NK ;
+fun aivovienti_NK : NK ;
+fun aivovoimistelu_NK : NK ;
+fun aivovuoto_NK : NK ;
+fun ajanvieteautomaatti_NK : NK ;
+fun ajanvietekirja_NK : NK ;
+fun ajanvietelehti_NK : NK ;
+fun ajanvieteohjelma_NK : NK ;
+fun ajanvietepeli_NK : NK ;
+fun ajattelukyky_NK : NK ;
+fun ajattelukykyinen_NK : NK ;
+fun ajattelutapa_NK : NK ;
+fun ajattelutyo'_NK : NK ;
+fun ajatusharha_NK : NK ;
+fun ajatuskatko_NK : NK ;
+fun ajatusketju_NK : NK ;
+fun ajatuskoe_NK : NK ;
+fun ajatuskupla_NK : NK ;
+fun ajatusmaailma_NK : NK ;
+fun ajatusrakennelma_NK : NK ;
+fun ajatussisa'llys_NK : NK ;
+fun ajatussisa'lto'_NK : NK ;
+fun ajatussuunta_NK : NK ;
+fun ajatustapa_NK : NK ;
+fun ajatustoiminta_NK : NK ;
+fun ajatustyo'_NK : NK ;
+fun ajatusviiva_NK : NK ;
+fun ajatusvirhe_NK : NK ;
+fun ajatusvoimistelu_NK : NK ;
+fun ajatusyhteys_NK : NK ;
+fun ajoankkuri_NK : NK ;
+fun ajoharjoittelurata_NK : NK ;
+fun ajojahti_NK : NK ;
+fun ajoja'a'_NK : NK ;
+fun ajokaista_NK : NK ;
+fun ajokeli_NK : NK ;
+fun ajokelpoinen_NK : NK ;
+fun ajokielto_NK : NK ;
+fun ajokoe_NK : NK ;
+fun ajokoira_NK : NK ;
+fun ajokoirametsa'stys_NK : NK ;
+fun ajokortti_NK : NK ;
+fun ajokunto_NK : NK ;
+fun ajokuntoinen_NK : NK ;
+fun ajolinja_NK : NK ;
+fun ajola'hto'_NK : NK ;
+fun ajomatka_NK : NK ;
+fun ajomestari_NK : NK ;
+fun ajometsa'stys_NK : NK ;
+fun ajomies_NK : NK ;
+fun ajomiina_NK : NK ;
+fun ajoneuvo_NK : NK ;
+fun ajoneuvoyhdistelma'_NK : NK ;
+fun ajonopeus_NK : NK ;
+fun ajopeli_NK : NK ;
+fun ajopiirturi_NK : NK ;
+fun ajoporo_NK : NK ;
+fun ajopuu_NK : NK ;
+fun ajopuuteoria_NK : NK ;
+fun ajopyynti_NK : NK ;
+fun ajorata_NK : NK ;
+fun ajosuunta_NK : NK ;
+fun ajotaito_NK : NK ;
+fun ajotekniikka_NK : NK ;
+fun ajotie_NK : NK ;
+fun ajotilanne_NK : NK ;
+fun ajoura_NK : NK ;
+fun ajoverkko_NK : NK ;
+fun ajoviima_NK : NK ;
+fun akkamainen_AK : AK ;
+fun akkavalta_NK : NK ;
+fun akkommodaatiokyky_NK : NK ;
+fun akkuka'ytto'inen_NK : NK ;
+fun akkulaturi_NK : NK ;
+fun akkutoiminen_NK : NK ;
+fun akselikuormitus_NK : NK ;
+fun akselipaino_NK : NK ;
+fun akseliteho_NK : NK ;
+fun akseliva'li_NK : NK ;
+fun aksenttimerkki_NK : NK ;
+fun aktiivihiili_NK : NK ;
+fun aktiivihiilisuodatin_NK : NK ;
+fun aktiivijousitus_NK : NK ;
+fun aktiiviloma_NK : NK ;
+fun aktiivimuoto_NK : NK ;
+fun aktiivipalvelus_NK : NK ;
+fun aktiiviupseeri_NK : NK ;
+fun aktiiviurheilija_NK : NK ;
+fun aktiiviva'esto'_NK : NK ;
+fun aktivisti_NK : NK ;
+fun aktivointi_NK : NK ;
+fun akupunktuurineula_NK : NK ;
+fun akupunktuuripiste_NK : NK ;
+fun akustiikkalevy_NK : NK ;
+fun akvaariokala_NK : NK ;
+fun akvaariokasvi_NK : NK ;
+fun akvarelliliitu_NK : NK ;
+fun akvarelliva'ri_NK : NK ;
+fun ala_arvoinen_AK : AK ;
+fun ala_arvoisuus_NK : NK ;
+fun ala_aste_NK : NK ;
+fun alakierrelyo'nti_NK : NK ;
+fun alakoululainen_NK : NK ;
+fun alaleukaluu_NK : NK ;
+fun alaluokkalainen_NK : NK ;
+fun alamaailma_NK : NK ;
+fun alankomaalainen_NK : NK ;
+fun alanurkkalaukaus_NK : NK ;
+fun alasajo_NK : NK ;
+fun alaspa'inen_NK : NK ;
+fun alaspa'inmeno_NK : NK ;
+fun alastomuuskulttuuri_NK : NK ;
+fun alastonkuva_NK : NK ;
+fun alastonmalli_NK : NK ;
+fun alastontutkielma_NK : NK ;
+fun alastulo_NK : NK ;
+fun alastulorinne_NK : NK ;
+fun albanialainen_NK : NK ;
+fun alehalli_NK : NK ;
+fun alehinta_NK : NK ;
+fun alemmuuskompleksi_NK : NK ;
+fun alempiarvoinen_NK : NK ;
+fun aleneva_NK : NK ;
+fun alennushalli_NK : NK ;
+fun alennushinta_NK : NK ;
+fun alennuskuponki_NK : NK ;
+fun alennuslippu_NK : NK ;
+fun alennusmerkki_NK : NK ;
+fun alennusmyynti_NK : NK ;
+fun alennustila_NK : NK ;
+fun alennusvaihde_NK : NK ;
+fun alfahiukkanen_NK : NK ;
+fun alfanumeerinen_NK : NK ;
+fun alfasa'teily_NK : NK ;
+fun aliarviointi_NK : NK ;
+fun aliarvostus_NK : NK ;
+fun aliedustus_NK : NK ;
+fun alihallinto_NK : NK ;
+fun alihankinta_NK : NK ;
+fun alihankkija_NK : NK ;
+fun alihinta_NK : NK ;
+fun alijohtaja_NK : NK ;
+fun alija'a'ma'_NK : NK ;
+--? fun alikehittynyt_NK : NK ;
+fun alikersantti_NK : NK ;
+fun alikriittinen_NK : NK ;
+fun alikulku_NK : NK ;
+fun alikulkutunneli_NK : NK ;
+fun alika'yta'va'_NK : NK ;
+fun aliluutnantti_NK : NK ;
+fun alinomainen_NK : NK ;
+fun alioikeus_NK : NK ;
+fun alipaine_NK : NK ;
+fun alipaineinen_NK : NK ;
+fun alipaino_NK : NK ;
+fun alipainoinen_NK : NK ;
+fun alipainoisuus_NK : NK ;
+fun alipalkkainen_NK : NK ;
+fun alipalkkaus_NK : NK ;
+fun alipa'a'llikko'_NK : NK ;
+fun alipa'a'llysto'_NK : NK ;
+fun aliravitsemus_NK : NK ;
+fun alistuskonjunktio_NK : NK ;
+fun alistussuhde_NK : NK ;
+fun alitajuinen_NK : NK ;
+fun alitajunta_NK : NK ;
+fun alitehoinen_NK : NK ;
+fun alituotanto_NK : NK ;
+fun alityo'llisyys_NK : NK ;
+fun aliupseeri_NK : NK ;
+fun aliupseerikoulu_NK : NK ;
+fun aliupseeristo_NK : NK ;
+fun aliurakka_NK : NK ;
+fun aliurakointi_NK : NK ;
+fun alivakuutus_NK : NK ;
+fun alivalotus_NK : NK ;
+fun alivoima_NK : NK ;
+fun alivoimainen_NK : NK ;
+fun alivoimaisuus_NK : NK ;
+fun alivoimapeli_NK : NK ;
+fun alkalimetalli_NK : NK ;
+fun alkaliparisto_NK : NK ;
+fun alkalisuola_NK : NK ;
+fun alkiokalvo_NK : NK ;
+fun alkiolainen_NK : NK ;
+fun alkoholihumala_NK : NK ;
+fun alkoholijuoma_NK : NK ;
+fun alkoholika'yminen_NK : NK ;
+fun alkoholimyrkytys_NK : NK ;
+fun alkoholimyyma'la'_NK : NK ;
+fun alkoholiongelma_NK : NK ;
+fun alkoholipitoinen_NK : NK ;
+fun alkoholipitoisuus_NK : NK ;
+fun alkoholipolitiikka_NK : NK ;
+fun alkoholiprosentti_NK : NK ;
+fun alkoholiriippuvuus_NK : NK ;
+fun alkoholistihuolto_NK : NK ;
+fun alkuaine_NK : NK ;
+fun alkuaste_NK : NK ;
+fun alkuasukas_NK : NK ;
+fun alkuasukasheimo_NK : NK ;
+fun alkucocktail_NK : NK ;
+fun alkudrinkki_NK : NK ;
+fun alkuelio'_NK : NK ;
+fun alkuela'in_NK : NK ;
+fun alkuera'_NK : NK ;
+fun alkuha'rka'_NK : NK ;
+fun alkuihminen_NK : NK ;
+fun alkuilta_NK : NK ;
+fun alkujakso_NK : NK ;
+fun alkujuoma_NK : NK ;
+fun alkukankeus_NK : NK ;
+fun alkukantainen_AK : AK ;
+fun alkukantaisuus_NK : NK ;
+fun alkukarsinta_NK : NK ;
+fun alkukehto_NK : NK ;
+fun alkukesa'_NK : NK ;
+--? fun alkukeva't_NK : NK ;
+fun alkukieli_NK : NK ;
+fun alkukielinen_NK : NK ;
+fun alkukilpailu_NK : NK ;
+fun alkukirjain_NK : NK ;
+fun alkukirkko_NK : NK ;
+fun alkukoktaili_NK : NK ;
+fun alkukoti_NK : NK ;
+fun alkukoulutus_NK : NK ;
+fun alkukuu_NK : NK ;
+fun alkukuukausi_NK : NK ;
+fun alkukuva_NK : NK ;
+fun alkukymmen_NK : NK ;
+fun alkulause_NK : NK ;
+fun alkulima_NK : NK ;
+fun alkuliturgia_NK : NK ;
+fun alkuluku_NK : NK ;
+fun alkula'hde_NK : NK ;
+fun alkumatka_NK : NK ;
+fun alkumerkki_NK : NK ;
+fun alkuminuutti_NK : NK ;
+fun alkumuoto_NK : NK ;
+fun alkuopetus_NK : NK ;
+--? fun alkuopinnot_NK : NK ;
+fun alkuosa_NK : NK ;
+fun alkupala_NK : NK ;
+fun alkupalkka_NK : NK ;
+fun alkuperusta_NK : NK ;
+fun alkuperuste_NK : NK ;
+fun alkupera'_NK : NK ;
+fun alkupera'inen_AK : AK ;
+fun alkupera'isyys_NK : NK ;
+fun alkupera'maa_NK : NK ;
+fun alkupera'merkinta'_NK : NK ;
+fun alkupera'todistus_NK : NK ;
+fun alkupiste_NK : NK ;
+fun alkupotku_NK : NK ;
+fun alkupuoli_NK : NK ;
+fun alkupuolisko_NK : NK ;
+fun alkupa'iva'_NK : NK ;
+fun alkupa'a'_NK : NK ;
+fun alkupa'a'oma_NK : NK ;
+fun alkuruoka_NK : NK ;
+fun alkura'ja'hdys_NK : NK ;
+fun alkusivu_NK : NK ;
+fun alkusointu_NK : NK ;
+fun alkusoitto_NK : NK ;
+fun alkusyksy_NK : NK ;
+fun alkusynty_NK : NK ;
+fun alkusysa'ys_NK : NK ;
+fun alkusyy_NK : NK ;
+fun alkutahti_NK : NK ;
+fun alkutaipale_NK : NK ;
+fun alkutaival_NK : NK ;
+fun alkutalvi_NK : NK ;
+fun alkutekija'_NK : NK ;
+fun alkuteksti_NK : NK ;
+fun alkuteos_NK : NK ;
+fun alkutilanne_NK : NK ;
+fun alkutuotanto_NK : NK ;
+fun alkutyo'tto'myys_NK : NK ;
+fun alkuunla'hto'_NK : NK ;
+fun alkuunpanija_NK : NK ;
+fun alkuunpano_NK : NK ;
+fun alkuunpa'a'sy_NK : NK ;
+fun alkuvaihe_NK : NK ;
+fun alkuvalmistelu_NK : NK ;
+fun alkuvauhti_NK : NK ;
+fun alkuviikko_NK : NK ;
+fun alkuvoima_NK : NK ;
+fun alkuvoimainen_NK : NK ;
+fun alkuvoimaisuus_NK : NK ;
+fun alkuvuosi_NK : NK ;
+fun alkuvuosikymmen_NK : NK ;
+fun alkuva'esto'_NK : NK ;
+fun alkydimaali_NK : NK ;
+fun allaskaappi_NK : NK ;
+fun allaskatto_NK : NK ;
+fun allastelakka_NK : NK ;
+fun allekirjoitus_NK : NK ;
+fun allergiareaktio_NK : NK ;
+fun allergiasaneeraus_NK : NK ;
+fun alleviivaus_NK : NK ;
+fun aloitekyky_NK : NK ;
+fun aloitekykyinen_NK : NK ;
+fun aloitekyvyto'n_NK : NK ;
+fun aloiteoikeus_NK : NK ;
+fun aloituskorkeus_NK : NK ;
+fun aloitusmerkki_NK : NK ;
+fun aloituspaikka_NK : NK ;
+fun aloitussyo'tto'_NK : NK ;
+fun aloitusviisikko_NK : NK ;
+fun alokasaste_NK : NK ;
+fun alokasmainen_NK : NK ;
+fun alpakkalusikka_NK : NK ;
+fun alpinisti_NK : NK ;
+fun alppihiihto_NK : NK ;
+fun alppihiihta'ja'_NK : NK ;
+fun alppija'rvi_NK : NK ;
+fun alppikiipeily_NK : NK ;
+fun alppilaakso_NK : NK ;
+fun alppilaji_NK : NK ;
+fun alppimaisema_NK : NK ;
+fun alppimaja_NK : NK ;
+fun alppiruusu_NK : NK ;
+fun alppiseutu_NK : NK ;
+fun alppita'hti_NK : NK ;
+fun alppiyhdistetty_NK : NK ;
+fun altavastaaja_NK : NK ;
+fun altistuskoe_NK : NK ;
+fun alttarikaide_NK : NK ;
+fun alttarikeha'_NK : NK ;
+fun alttariliina_NK : NK ;
+fun alttaripalvelus_NK : NK ;
+fun alttaripo'yta'_NK : NK ;
+fun alttaritaulu_NK : NK ;
+fun alttariteos_NK : NK ;
+fun alttaritoimitus_NK : NK ;
+fun alttarivaate_NK : NK ;
+fun alttolaulajatar_NK : NK ;
+fun alttosaksofoni_NK : NK ;
+fun alttoviulu_NK : NK ;
+fun alttoa'a'ni_NK : NK ;
+fun aluehallinto_NK : NK ;
+fun aluejako_NK : NK ;
+fun alueja'rjesto'_NK : NK ;
+fun aluekeskus_NK : NK ;
+fun aluelaajennus_NK : NK ;
+fun aluelehti_NK : NK ;
+fun alueliitos_NK : NK ;
+fun alueloukkaus_NK : NK ;
+fun alueluovutus_NK : NK ;
+fun aluemenetys_NK : NK ;
+fun aluemeri_NK : NK ;
+fun alueministeri_NK : NK ;
+fun alueohjelma_NK : NK ;
+fun alueorkesteri_NK : NK ;
+fun aluepolitiikka_NK : NK ;
+fun aluepa'a'llikko'_NK : NK ;
+fun alueradio_NK : NK ;
+fun alueraja_NK : NK ;
+fun aluesairaala_NK : NK ;
+fun alueteatteri_NK : NK ;
+fun aluetoimittaja_NK : NK ;
+fun aluetoimitus_NK : NK ;
+fun aluevaatimus_NK : NK ;
+fun aluevaltaus_NK : NK ;
+fun aluevaltuusto_NK : NK ;
+fun aluevalvoja_NK : NK ;
+fun aluevesi_NK : NK ;
+fun aluevesiraja_NK : NK ;
+fun alumiinifolio_NK : NK ;
+fun alumiinikattila_NK : NK ;
+fun alumiinioksidi_NK : NK ;
+fun alumiinipaperi_NK : NK ;
+fun alumiiniseos_NK : NK ;
+fun alumiinivene_NK : NK ;
+fun alumiinivuoka_NK : NK ;
+fun alunaliuos_NK : NK ;
+fun alusastia_NK : NK ;
+fun alusasu_NK : NK ;
+fun alushame_NK : NK ;
+--? fun alushousut_NK : NK ;
+fun aluslaatta_NK : NK ;
+fun aluslakana_NK : NK ;
+fun aluslanka_NK : NK ;
+fun aluslautanen_NK : NK ;
+fun aluslehti_NK : NK ;
+fun alusmaa_NK : NK ;
+fun aluspaita_NK : NK ;
+fun aluspiima'_NK : NK ;
+fun alusrimoitus_NK : NK ;
+fun alustalainen_NK : NK ;
+fun alusvaate_NK : NK ;
+fun alusvaatekerta_NK : NK ;
+fun alusvesi_NK : NK ;
+fun alusviikko_NK : NK ;
+fun alusvoide_NK : NK ;
+fun amalgaamipaikka_NK : NK ;
+fun amato'o'rina'yttelija'_NK : NK ;
+fun amato'o'riorkesteri_NK : NK ;
+fun amato'o'riottelu_NK : NK ;
+fun amato'o'riurheilija_NK : NK ;
+fun amato'o'riurheilu_NK : NK ;
+fun ambitiokysymys_NK : NK ;
+fun ammattiaine_NK : NK ;
+fun ammattiapu_NK : NK ;
+fun ammattiautoilija_NK : NK ;
+fun ammattiauttaja_NK : NK ;
+fun ammattietiikka_NK : NK ;
+fun ammattihaureus_NK : NK ;
+fun ammatti_ihminen_NK : NK ;
+fun ammattijulkaisu_NK : NK ;
+fun ammattija'rjesto'_NK : NK ;
+fun ammattikalastaja_NK : NK ;
+fun ammattikasvatus_NK : NK ;
+fun ammattikateus_NK : NK ;
+fun ammattikieli_NK : NK ;
+fun ammattikirjailija_NK : NK ;
+fun ammattikokemus_NK : NK ;
+fun ammattikoulu_NK : NK ;
+fun ammattikoululainen_NK : NK ;
+fun ammattikoulutus_NK : NK ;
+fun ammattikunnia_NK : NK ;
+fun ammattikunta_NK : NK ;
+fun ammattikuntalaitos_NK : NK ;
+fun ammattikurssi_NK : NK ;
+fun ammattikurssikeskus_NK : NK ;
+fun ammattikuva_NK : NK ;
+fun ammattilainen_NK : NK ;
+fun ammattilehti_NK : NK ;
+fun ammattiliikenne_NK : NK ;
+fun ammattiliitto_NK : NK ;
+fun ammattimainen_AK : AK ;
+fun ammattimies_NK : NK ;
+fun ammattiministeri_NK : NK ;
+fun ammattimuusikko_NK : NK ;
+fun ammattinimike_NK : NK ;
+fun ammattinyrkkeily_NK : NK ;
+fun ammattiopetus_NK : NK ;
+--? fun ammattiopinnot_NK : NK ;
+fun ammattioppilas_NK : NK ;
+fun ammattiosasto_NK : NK ;
+fun ammattipoliitikko_NK : NK ;
+fun ammattipa'tevyys_NK : NK ;
+fun ammattirikollinen_NK : NK ;
+fun ammattisalaisuus_NK : NK ;
+fun ammattisana_NK : NK ;
+fun ammattisanasto_NK : NK ;
+fun ammattislangi_NK : NK ;
+fun ammattisotilas_NK : NK ;
+fun ammattisuoja_NK : NK ;
+fun ammattitaidoton_NK : NK ;
+fun ammattitaito_NK : NK ;
+fun ammattitaitoinen_NK : NK ;
+fun ammattitappaja_NK : NK ;
+fun ammattitauti_NK : NK ;
+fun ammattitermi_NK : NK ;
+fun ammattitoveri_NK : NK ;
+fun ammattitulo_NK : NK ;
+fun ammattitutkinto_NK : NK ;
+fun ammattityo'_NK : NK ;
+fun ammattityo'va'ki_NK : NK ;
+fun ammattiurheilija_NK : NK ;
+fun ammattiurheilu_NK : NK ;
+fun ammattiyhdistys_NK : NK ;
+fun ammattiyhdistysliike_NK : NK ;
+fun ammattiyhdistystoiminta_NK : NK ;
+fun ammattiylpeys_NK : NK ;
+fun ammekylpy_NK : NK ;
+fun ammematto_NK : NK ;
+fun ammusta'ydennys_NK : NK ;
+fun ammusvarasto_NK : NK ;
+fun amokjuoksija_NK : NK ;
+fun amokjuoksu_NK : NK ;
+fun ampeerimittari_NK : NK ;
+fun amplitudimodulaatio_NK : NK ;
+fun amppelikasvi_NK : NK ;
+fun ampuhaukka_NK : NK ;
+fun ampumatarviketa'ydennys_NK : NK ;
+fun analogialaite_NK : NK ;
+fun analogiana'ytto'_NK : NK ;
+fun analogiana'ytto'inen_NK : NK ;
+fun analogiatekniikka_NK : NK ;
+fun ananaskasvi_NK : NK ;
+fun ananaskirsikka_NK : NK ;
+fun ananasmurska_NK : NK ;
+fun ananasrengas_NK : NK ;
+fun anekauppa_NK : NK ;
+fun anestesiala'a'ka'ri_NK : NK ;
+fun angiinamyrkytys_NK : NK ;
+fun angorakaniini_NK : NK ;
+fun angorakissa_NK : NK ;
+fun angoralanka_NK : NK ;
+fun angorapusero_NK : NK ;
+fun angoravilla_NK : NK ;
+fun angoravuohi_NK : NK ;
+fun aniliiniva'ri_NK : NK ;
+fun animaalinen_NK : NK ;
+fun aniskaramelli_NK : NK ;
+fun anisliko'o'ri_NK : NK ;
+fun anispastilli_NK : NK ;
+fun ankarasanainen_NK : NK ;
+fun ankkalammikko_NK : NK ;
+fun ankkurihissi_NK : NK ;
+fun ankkuriketju_NK : NK ;
+fun ankkuriko'ysi_NK : NK ;
+fun ankkurimiina_NK : NK ;
+fun ankkuriosuus_NK : NK ;
+fun ankkuripaikka_NK : NK ;
+fun ankkurivalo_NK : NK ;
+fun anniskelukahvila_NK : NK ;
+fun anniskeluoikeus_NK : NK ;
+fun anniskeluravintola_NK : NK ;
+fun annosmittari_NK : NK ;
+fun annospala_NK : NK ;
+fun annostelulokerikko_NK : NK ;
+fun annostelupumppu_NK : NK ;
+fun annostusohje_NK : NK ;
+fun annuiteettilaina_NK : NK ;
+fun anomuskirjelma'_NK : NK ;
+fun anoppimuori_NK : NK ;
+fun ansaintateoria_NK : NK ;
+fun ansaintatulo_NK : NK ;
+fun ansarikukka_NK : NK ;
+fun ansaripetopunkki_NK : NK ;
+fun ansioela'ke_NK : NK ;
+fun ansiokehitys_NK : NK ;
+fun ansiokehitystakuu_NK : NK ;
+fun ansiolenta'ja'_NK : NK ;
+fun ansioluettelo_NK : NK ;
+fun ansiola'hde_NK : NK ;
+fun ansiomerkki_NK : NK ;
+fun ansiomitali_NK : NK ;
+fun ansioristi_NK : NK ;
+fun ansiotakuu_NK : NK ;
+fun ansiotaso_NK : NK ;
+fun ansiotulo_NK : NK ;
+fun ansiotyo'_NK : NK ;
+fun ansioa'iti_NK : NK ;
+fun anteeksianto_NK : NK ;
+fun anteeksipyynto'_NK : NK ;
+fun antennimasto_NK : NK ;
+fun antennivahvistin_NK : NK ;
+fun antiaine_NK : NK ;
+fun antibioottihoito_NK : NK ;
+fun antigeeni_NK : NK ;
+fun antihistamiini_NK : NK ;
+fun antihiukkanen_NK : NK ;
+fun antiikkiesine_NK : NK ;
+fun antiikkikynttila'_NK : NK ;
+fun antiikkiliike_NK : NK ;
+fun antiikkinahka_NK : NK ;
+fun antilooppirotta_NK : NK ;
+fun antimateria_NK : NK ;
+fun antimoni_NK : NK ;
+fun antipartikkeli_NK : NK ;
+fun antisankari_NK : NK ;
+fun antiseptinen_NK : NK ;
+fun antistaattinen_NK : NK ;
+fun antiteesi_NK : NK ;
+fun antolainaus_NK : NK ;
+fun antolainauskorko_NK : NK ;
+fun anturamaa_NK : NK ;
+fun anturanahka_NK : NK ;
+fun apajapaikka_NK : NK ;
+fun apartheidpolitiikka_NK : NK ;
+fun apilaheina'_NK : NK ;
+fun apilaniitty_NK : NK ;
+fun apilanurmi_NK : NK ;
+fun apilapelto_NK : NK ;
+fun apinaihminen_NK : NK ;
+fun apinalaatikko_NK : NK ;
+fun apokryfikirja_NK : NK ;
+fun appelsiinimarmeladi_NK : NK ;
+fun appelsiinimehu_NK : NK ;
+fun appelsiinipuu_NK : NK ;
+fun appenzellerjuusto_NK : NK ;
+fun appiukko_NK : NK ;
+fun approbaturtentti_NK : NK ;
+fun aprikoosipuu_NK : NK ;
+fun aprillipila_NK : NK ;
+fun aprillipa'iva'_NK : NK ;
+fun apteekkilaitos_NK : NK ;
+fun apteekkiliike_NK : NK ;
+fun apteekkineuvos_NK : NK ;
+fun apteekkioikeus_NK : NK ;
+fun apteekkitavara_NK : NK ;
+fun apuharvennus_NK : NK ;
+fun apuhoitaja_NK : NK ;
+fun apujoukko_NK : NK ;
+fun apukeino_NK : NK ;
+fun apukeittio'_NK : NK ;
+fun apukoulu_NK : NK ;
+fun apulainen_NK : NK ;
+fun apulannoite_NK : NK ;
+fun apulanta_NK : NK ;
+fun apumies_NK : NK ;
+fun apumoottori_NK : NK ;
+fun apuneuvo_NK : NK ;
+fun apupisto_NK : NK ;
+fun apuraha_NK : NK ;
+fun apurahasto_NK : NK ;
+fun apusana_NK : NK ;
+fun aputaso_NK : NK ;
+fun apuverbi_NK : NK ;
+fun apuviiva_NK : NK ;
+fun apuvoima_NK : NK ;
+fun apuva'line_NK : NK ;
+fun arabialainen_NK : NK ;
+fun arabikumi_NK : NK ;
+fun arabimaa_NK : NK ;
+fun arabivaltio_NK : NK ;
+fun aravahuoneisto_NK : NK ;
+fun aravalaina_NK : NK ;
+fun aravalainoitus_NK : NK ;
+fun aravatalo_NK : NK ;
+fun arestirangaistus_NK : NK ;
+fun arkaismi_NK : NK ;
+fun arkajalka_NK : NK ;
+fun arkakatseinen_NK : NK ;
+fun arkaluonteinen_NK : NK ;
+fun arkaluontoinen_NK : NK ;
+fun arkanahkainen_NK : NK ;
+fun arkiajattelu_NK : NK ;
+fun arkiaskare_NK : NK ;
+fun arkiateria_NK : NK ;
+fun arkiela'ma'_NK : NK ;
+fun arkihuoli_NK : NK ;
+fun arkikieli_NK : NK ;
+fun arkikielinen_NK : NK ;
+fun arkika'ytto'_NK : NK ;
+fun arkiliikunta_NK : NK ;
+fun arkipuku_NK : NK ;
+fun arkipyha'_NK : NK ;
+fun arkipa'iva'_NK : NK ;
+fun arkipa'iva'inen_NK : NK ;
+fun arkipa'iva'isyys_NK : NK ;
+fun arkirealismi_NK : NK ;
+fun arkiruoka_NK : NK ;
+fun arkirutiini_NK : NK ;
+fun arkistoaines_NK : NK ;
+fun arkistokappale_NK : NK ;
+fun arkistokelpoinen_NK : NK ;
+fun arkistopaperi_NK : NK ;
+fun arkistotutkimus_NK : NK ;
+fun arkitunnelma_NK : NK ;
+fun arkityyli_NK : NK ;
+fun arkiuupumus_NK : NK ;
+fun arkivaate_NK : NK ;
+fun arkiviikko_NK : NK ;
+fun arkkienkeli_NK : NK ;
+fun arkkikonna_NK : NK ;
+fun arkkipiispa_NK : NK ;
+fun arkkitehtitoimisto_NK : NK ;
+fun arkkityyppi_NK : NK ;
+fun arkkiveisu_NK : NK ;
+fun arkkivihollinen_NK : NK ;
+fun arkkuhauta_NK : NK ;
+fun arkkuhautaus_NK : NK ;
+fun arkkupakastin_NK : NK ;
+fun armahdusanomus_NK : NK ;
+fun armeijakunta_NK : NK ;
+fun armeijaryhma'_NK : NK ;
+fun armolahja_NK : NK ;
+fun armoleipa'_NK : NK ;
+fun armomurha_NK : NK ;
+fun armopala_NK : NK ;
+fun aroela'in_NK : NK ;
+fun arokasvi_NK : NK ;
+fun aromilasi_NK : NK ;
+fun aromisuola_NK : NK ;
+fun arovyo'hyke_NK : NK ;
+fun arpakuutio_NK : NK ;
+fun arpalippu_NK : NK ;
+fun arpanoppa_NK : NK ;
+fun arpaonni_NK : NK ;
+fun arpapeli_NK : NK ;
+fun arpaseteli_NK : NK ;
+fun arpikudos_NK : NK ;
+fun arrakkipunssi_NK : NK ;
+fun arrowjuurijauho_NK : NK ;
+fun arseenihappo_NK : NK ;
+fun arsenikkimyrkytys_NK : NK ;
+fun artikkelisarja_NK : NK ;
+fun artikkelitoimittaja_NK : NK ;
+fun arvauskilpailu_NK : NK ;
+fun arvausleikki_NK : NK ;
+fun arviohinta_NK : NK ;
+fun arvioluku_NK : NK ;
+fun arvioperuste_NK : NK ;
+fun arviosumma_NK : NK ;
+fun arvioverotus_NK : NK ;
+fun arvoarvostelma_NK : NK ;
+fun arvoaste_NK : NK ;
+fun arvoasteikko_NK : NK ;
+fun arvoesine_NK : NK ;
+fun arvohenkilo'_NK : NK ;
+fun arvoja'rjestys_NK : NK ;
+fun arvokala_NK : NK ;
+fun arvokasvu_NK : NK ;
+fun arvokilpailu_NK : NK ;
+fun arvokilpi_NK : NK ;
+fun arvokisa_NK : NK ;
+fun arvoluokitus_NK : NK ;
+fun arvomaailma_NK : NK ;
+fun arvomerkinta'_NK : NK ;
+fun arvomerkki_NK : NK ;
+fun arvonimi_NK : NK ;
+fun arvonlisa'vero_NK : NK ;
+fun arvonlisa'verollinen_NK : NK ;
+fun arvonnousuvero_NK : NK ;
+fun arvopaperi_NK : NK ;
+fun arvopaperikauppa_NK : NK ;
+--? fun arvopaperimarkkinat_NK : NK ;
+fun arvopaperipo'rssi_NK : NK ;
+fun arvopaperisalkku_NK : NK ;
+fun arvopohja_NK : NK ;
+fun arvoposti_NK : NK ;
+fun arvopuu_NK : NK ;
+fun arvopa'iva'_NK : NK ;
+fun arvosana_NK : NK ;
+fun arvosija_NK : NK ;
+fun arvosteluasteikko_NK : NK ;
+fun arvostelukyky_NK : NK ;
+fun arvostelukykyinen_NK : NK ;
+fun arvostelukyvyto'n_NK : NK ;
+fun arvostelumenestys_NK : NK ;
+fun arvostelunormi_NK : NK ;
+fun arvosteluperuste_NK : NK ;
+fun arvostelupiste_NK : NK ;
+fun arvostelutuomari_NK : NK ;
+fun arvotavara_NK : NK ;
+fun arvoteos_NK : NK ;
+fun arvotulli_NK : NK ;
+fun arvovalinta_NK : NK ;
+fun arvovalta_NK : NK ;
+fun arvovaltainen_AK : AK ;
+fun arvovaltaisuus_NK : NK ;
+fun arvovaltakysymys_NK : NK ;
+fun arvovaraus_NK : NK ;
+fun arvova'ritys_NK : NK ;
+fun asbestikangas_NK : NK ;
+fun asbestikuitu_NK : NK ;
+fun asbestilevy_NK : NK ;
+fun aseapu_NK : NK ;
+fun aseenkantolupa_NK : NK ;
+fun asehuone_NK : NK ;
+fun aseidenriisuntaneuvottelu_NK : NK ;
+fun asekauppa_NK : NK ;
+fun asekumppani_NK : NK ;
+fun asekuntoinen_NK : NK ;
+fun asekuntoisuus_NK : NK ;
+fun aselaji_NK : NK ;
+fun aselepo_NK : NK ;
+fun aseleponeuvottelu_NK : NK ;
+fun aseleposopimus_NK : NK ;
+fun asemaenergia_NK : NK ;
+fun asemakaava_NK : NK ;
+fun asemakaavaoppi_NK : NK ;
+fun asemakaavoitus_NK : NK ;
+fun asemalaituri_NK : NK ;
+fun asemamaa_NK : NK ;
+fun asemapaikka_NK : NK ;
+fun asemapiirros_NK : NK ;
+fun asemapa'a'llikko'_NK : NK ;
+fun asemarakennus_NK : NK ;
+fun asemaravintola_NK : NK ;
+fun asemasota_NK : NK ;
+fun asemosana_NK : NK ;
+fun asennekasvatus_NK : NK ;
+fun asennemittaus_NK : NK ;
+fun asentoaisti_NK : NK ;
+fun asentovirhe_NK : NK ;
+fun asepaja_NK : NK ;
+fun asepalvelus_NK : NK ;
+fun asepuku_NK : NK ;
+fun aseriisunta_NK : NK ;
+fun aseseppa'_NK : NK ;
+fun asetaattikuitu_NK : NK ;
+fun asetakki_NK : NK ;
+fun asetehdas_NK : NK ;
+fun asetekniikka_NK : NK ;
+fun asetekninen_NK : NK ;
+fun asetelmamaalaus_NK : NK ;
+fun aseteollisuus_NK : NK ;
+fun asetie_NK : NK ;
+fun asetinlaite_NK : NK ;
+fun asetonitauti_NK : NK ;
+fun asetoveri_NK : NK ;
+fun asetoveruus_NK : NK ;
+fun asetuonti_NK : NK ;
+fun asetuskokoelma_NK : NK ;
+fun asetussa'a'teinen_NK : NK ;
+fun asetyleenihitsaus_NK : NK ;
+fun asetyleeniliekki_NK : NK ;
+fun asevarikko_NK : NK ;
+fun asevarustelu_NK : NK ;
+fun asevarustus_NK : NK ;
+fun aseveli_NK : NK ;
+fun asevelihenki_NK : NK ;
+fun asevelihinta_NK : NK ;
+fun aseveljeys_NK : NK ;
+fun asevienti_NK : NK ;
+fun asevoima_NK : NK ;
+fun asfalttiasema_NK : NK ;
+fun asfalttipa'a'llyste_NK : NK ;
+fun asfalttitie_NK : NK ;
+fun asfalttiviidakko_NK : NK ;
+fun asiahakemisto_NK : NK ;
+fun asiakaskontakti_NK : NK ;
+fun asiakaskunta_NK : NK ;
+fun asiakaska'ynti_NK : NK ;
+fun asiakaslehti_NK : NK ;
+fun asiakasla'hto'isyys_NK : NK ;
+fun asiakaspalvelu_NK : NK ;
+fun asiakaspiiri_NK : NK ;
+fun asiakassuhde_NK : NK ;
+fun asiakirja_NK : NK ;
+fun asiakirjasalkku_NK : NK ;
+fun asiakirjatieto_NK : NK ;
+fun asialinja_NK : NK ;
+fun asialista_NK : NK ;
+fun asiamies_NK : NK ;
+fun asianajopalkkio_NK : NK ;
+fun asianajotoimi_NK : NK ;
+fun asianajotoimisto_NK : NK ;
+fun asianomistajarikos_NK : NK ;
+fun asiaohjelma_NK : NK ;
+fun asiapaperi_NK : NK ;
+fun asiapitoinen_NK : NK ;
+fun asiapitoisuus_NK : NK ;
+fun asiaproosa_NK : NK ;
+fun asiasana_NK : NK ;
+fun asiasisa'llys_NK : NK ;
+fun asiasisa'lto'_NK : NK ;
+fun asiasuomi_NK : NK ;
+fun asiateksti_NK : NK ;
+fun asiatieto_NK : NK ;
+fun asiatyyli_NK : NK ;
+fun asiatyylinen_NK : NK ;
+fun asiavirhe_NK : NK ;
+fun asiayhteys_NK : NK ;
+fun askarteluhoito_NK : NK ;
+fun askarteluhuone_NK : NK ;
+fun askartelukerho_NK : NK ;
+fun askarteluterapeutti_NK : NK ;
+fun askarteluterapia_NK : NK ;
+fun askellaji_NK : NK ;
+fun askelluslaite_NK : NK ;
+fun askelmerkki_NK : NK ;
+fun askelmitta_NK : NK ;
+fun askelrytmi_NK : NK ;
+fun askelvirhe_NK : NK ;
+fun askelva'li_NK : NK ;
+fun assosiaatiolaki_NK : NK ;
+fun astejako_NK : NK ;
+fun astejaotus_NK : NK ;
+fun astelevy_NK : NK ;
+fun asteriski_NK : NK ;
+fun astevaihtelu_NK : NK ;
+fun astiahylly_NK : NK ;
+fun astiakaappi_NK : NK ;
+fun astiakori_NK : NK ;
+fun astianpesuaine_NK : NK ;
+fun astianpesuharja_NK : NK ;
+fun astianpesukone_NK : NK ;
+fun astianpesupo'yta'_NK : NK ;
+fun astiapyyhe_NK : NK ;
+fun astiataimi_NK : NK ;
+fun astinlauta_NK : NK ;
+fun astmakohtaus_NK : NK ;
+fun astrakaaniturkki_NK : NK ;
+fun asuinpaikkakunta_NK : NK ;
+fun asukasluettelo_NK : NK ;
+fun asukasluku_NK : NK ;
+fun asukasma'a'ra'_NK : NK ;
+fun asukaspysa'ko'inti_NK : NK ;
+fun asukastiheys_NK : NK ;
+fun asukasyhdistys_NK : NK ;
+fun asumala'hio'_NK : NK ;
+fun asumisoikeusasunto_NK : NK ;
+fun asumisoikeusmaksu_NK : NK ;
+fun asumisoikeusyhdistys_NK : NK ;
+fun asumusero_NK : NK ;
+fun asuntoalue_NK : NK ;
+fun asuntoauto_NK : NK ;
+fun asuntoetu_NK : NK ;
+fun asuntohotelli_NK : NK ;
+fun asuntokanta_NK : NK ;
+fun asuntokunta_NK : NK ;
+fun asuntolaina_NK : NK ;
+fun asuntolaiva_NK : NK ;
+fun asuntoluotto_NK : NK ;
+fun asuntomurto_NK : NK ;
+fun asuntopolitiikka_NK : NK ;
+fun asuntopula_NK : NK ;
+fun asuntosa'a'sta'ja'_NK : NK ;
+fun asuntotontti_NK : NK ;
+fun asuntotuotanto_NK : NK ;
+fun asuntovaunu_NK : NK ;
+fun asusteliike_NK : NK ;
+fun asutusalue_NK : NK ;
+fun asutushistoria_NK : NK ;
+fun asutuskeskus_NK : NK ;
+fun asutustila_NK : NK ;
+fun asutustilallinen_NK : NK ;
+fun asutustoiminta_NK : NK ;
+fun atariyksikko'_NK : NK ;
+fun ateljeetyo'_NK : NK ;
+fun ateriapalvelu_NK : NK ;
+fun atlasnikama_NK : NK ;
+fun atomiase_NK : NK ;
+fun atomienergia_NK : NK ;
+fun atomifysiikka_NK : NK ;
+fun atomikello_NK : NK ;
+fun atomimalli_NK : NK ;
+fun atomioppi_NK : NK ;
+fun atomipaino_NK : NK ;
+fun atomipommi_NK : NK ;
+fun atomireaktori_NK : NK ;
+fun atomiteoria_NK : NK ;
+fun atomivoima_NK : NK ;
+fun atomivoimala_NK : NK ;
+fun atomivoimalaitos_NK : NK ;
+fun atomiydin_NK : NK ;
+fun atriumtalo_NK : NK ;
+fun attasealaukku_NK : NK ;
+fun attaseasalkku_NK : NK ;
+fun aukinainen_NK : NK ;
+fun aukiokammo_NK : NK ;
+fun aukiolo_NK : NK ;
+fun aukioloaika_NK : NK ;
+fun aukkohakkuu_NK : NK ;
+fun auktoriteettiusko_NK : NK ;
+fun aurakulma_NK : NK ;
+fun auraka'a'nno's_NK : NK ;
+fun aurauskalusto_NK : NK ;
+fun aurauskulma_NK : NK ;
+fun aurausmerkki_NK : NK ;
+fun auringonkukkao'ljy_NK : NK ;
+fun aurinkoela'in_NK : NK ;
+fun aurinkoenergia_NK : NK ;
+fun aurinkokansi_NK : NK ;
+fun aurinkokatos_NK : NK ;
+fun aurinkokello_NK : NK ;
+fun aurinkokenno_NK : NK ;
+fun aurinkokennosto_NK : NK ;
+fun aurinkokera'a'ja'_NK : NK ;
+fun aurinkokeskinen_NK : NK ;
+fun aurinkokunta_NK : NK ;
+fun aurinkokylpy_NK : NK ;
+fun aurinkola'mmitys_NK : NK ;
+fun aurinkopaneeli_NK : NK ;
+fun aurinkopari_NK : NK ;
+fun aurinkoparisto_NK : NK ;
+fun aurinkosuoja_NK : NK ;
+fun aurinkosa'hko'_NK : NK ;
+fun aurinkotalo_NK : NK ;
+fun aurinkotuoli_NK : NK ;
+fun aurinkotuuli_NK : NK ;
+fun aurinkovoide_NK : NK ;
+fun aurinkovoimala_NK : NK ;
+fun aurinkovuosi_NK : NK ;
+fun aurinkoo'ljy_NK : NK ;
+fun autiomaa_NK : NK ;
+fun autiomaja_NK : NK ;
+fun autiotalo_NK : NK ;
+fun autiotila_NK : NK ;
+fun autiotupa_NK : NK ;
+fun autoajelu_NK : NK ;
+fun autoasema_NK : NK ;
+fun autoasentaja_NK : NK ;
+fun autobiografia_NK : NK ;
+fun autoetu_NK : NK ;
+fun autogangsteri_NK : NK ;
+fun autohajottamo_NK : NK ;
+fun autohuoltamo_NK : NK ;
+fun autohurjastelu_NK : NK ;
+fun autojono_NK : NK ;
+fun autokansi_NK : NK ;
+fun autokanta_NK : NK ;
+fun autokatos_NK : NK ;
+fun autokatsastus_NK : NK ;
+fun autokauppa_NK : NK ;
+fun autokauppias_NK : NK ;
+fun autoklinikka_NK : NK ;
+fun autokolari_NK : NK ;
+fun autokorjaamo_NK : NK ;
+fun autokoulu_NK : NK ;
+fun autokuljetus_NK : NK ;
+fun autokuorma_NK : NK ;
+fun autokyyti_NK : NK ;
+fun autolautta_NK : NK ;
+fun autoletka_NK : NK ;
+fun autoliike_NK : NK ;
+fun autoliikenne_NK : NK ;
+fun autola'hto'_NK : NK ;
+fun automaalaamo_NK : NK ;
+fun automaattiase_NK : NK ;
+fun automaattikamera_NK : NK ;
+fun automaattikirjoitus_NK : NK ;
+fun automaattikytkin_NK : NK ;
+fun automaattiohjaus_NK : NK ;
+fun automaattiovi_NK : NK ;
+fun automaattiportti_NK : NK ;
+fun automaattisulake_NK : NK ;
+fun automaattivaihteisto_NK : NK ;
+fun automaattivalotus_NK : NK ;
+fun automarketti_NK : NK ;
+fun automatka_NK : NK ;
+fun automatkailu_NK : NK ;
+fun automerkki_NK : NK ;
+fun automyyja'_NK : NK ;
+fun autopaikka_NK : NK ;
+fun autopankki_NK : NK ;
+fun autopilotti_NK : NK ;
+fun autopommi_NK : NK ;
+fun autopuhelin_NK : NK ;
+fun autopurkamo_NK : NK ;
+fun autoradio_NK : NK ;
+fun autoretki_NK : NK ;
+fun autosampoo_NK : NK ;
+fun autotalli_NK : NK ;
+fun autotehdas_NK : NK ;
+fun autoteollisuus_NK : NK ;
+fun autotermiitti_NK : NK ;
+fun autoturma_NK : NK ;
+fun autourheilu_NK : NK ;
+fun autovaha_NK : NK ;
+fun autovakuutus_NK : NK ;
+fun autovaras_NK : NK ;
+fun autovarkaus_NK : NK ;
+fun autovero_NK : NK ;
+fun autovuokraamo_NK : NK ;
+fun avainasema_NK : NK ;
+fun avainhenkilo'_NK : NK ;
+fun avainketju_NK : NK ;
+fun avainkilpi_NK : NK ;
+fun avainkimppu_NK : NK ;
+fun avainkortti_NK : NK ;
+fun avainkotelo_NK : NK ;
+fun avainkysymys_NK : NK ;
+fun avainlapsi_NK : NK ;
+fun avainnippu_NK : NK ;
+fun avainpelaaja_NK : NK ;
+fun avainrengas_NK : NK ;
+fun avainromaani_NK : NK ;
+fun avainsana_NK : NK ;
+fun avaintekija'_NK : NK ;
+fun avaintodistaja_NK : NK ;
+fun avantouimari_NK : NK ;
+fun avantouinti_NK : NK ;
+fun avarakatseinen_AK : AK ;
+fun avarakatseisuus_NK : NK ;
+fun avaramielisyys_NK : NK ;
+fun avarruskone_NK : NK ;
+fun avaruusalus_NK : NK ;
+fun avaruusase_NK : NK ;
+fun avaruusasema_NK : NK ;
+fun avaruusesine_NK : NK ;
+fun avaruusgeometria_NK : NK ;
+fun avaruushila_NK : NK ;
+fun avaruuskeskus_NK : NK ;
+fun avaruuskoe_NK : NK ;
+fun avaruuskulma_NK : NK ;
+fun avaruuskuvio_NK : NK ;
+fun avaruuska'vely_NK : NK ;
+fun avaruuslaiva_NK : NK ;
+fun avaruuslento_NK : NK ;
+fun avaruuslenta'ja'_NK : NK ;
+fun avaruusluotain_NK : NK ;
+fun avaruusmatka_NK : NK ;
+fun avaruusmatkailu_NK : NK ;
+fun avaruusohjelma_NK : NK ;
+fun avaruusoikeus_NK : NK ;
+fun avaruusolento_NK : NK ;
+fun avaruuspuku_NK : NK ;
+fun avaruuspuolustus_NK : NK ;
+fun avaruusrakenne_NK : NK ;
+fun avaruusraketti_NK : NK ;
+fun avaruusromu_NK : NK ;
+fun avaruussukkula_NK : NK ;
+fun avaruussa'teily_NK : NK ;
+fun avaruustekniikka_NK : NK ;
+fun avaruustutkimus_NK : NK ;
+fun avausmaali_NK : NK ;
+fun avausottelu_NK : NK ;
+fun avauspuhe_NK : NK ;
+fun avaussiirto_NK : NK ;
+fun avioehto_NK : NK ;
+fun avioehtosopimus_NK : NK ;
+fun avioela'ma'_NK : NK ;
+fun avioero_NK : NK ;
+fun avioerokanne_NK : NK ;
+fun avioerolapsi_NK : NK ;
+fun avioeroperhe_NK : NK ;
+fun avioerotuomio_NK : NK ;
+fun avioeste_NK : NK ;
+fun avioliitto_NK : NK ;
+fun avioliittokuulutus_NK : NK ;
+fun avioliittolupaus_NK : NK ;
+--? fun avioliittomarkkinat_NK : NK ;
+fun avioliittoneuvola_NK : NK ;
+fun avioliittoneuvonta_NK : NK ;
+fun avioliittopalatsi_NK : NK ;
+fun aviomies_NK : NK ;
+fun aviopari_NK : NK ;
+fun aviopetos_NK : NK ;
+fun aviopuoliso_NK : NK ;
+fun aviorikos_NK : NK ;
+fun aviosiippa_NK : NK ;
+fun aviosuhde_NK : NK ;
+fun aviosa'a'ty_NK : NK ;
+fun aviovaimo_NK : NK ;
+fun avoauto_NK : NK ;
+fun avoero_NK : NK ;
+fun avohakkuu_NK : NK ;
+fun avohoito_NK : NK ;
+fun avohuolto_NK : NK ;
+fun avojalkainen_NK : NK ;
+fun avojohto_NK : NK ;
+fun avojono_NK : NK ;
+fun avokallio_NK : NK ;
+fun avokatseinen_NK : NK ;
+fun avokatseisuus_NK : NK ;
+fun avokaulainen_NK : NK ;
+fun avokonttori_NK : NK ;
+fun avokuisti_NK : NK ;
+fun avoka'tinen_NK : NK ;
+fun avoka'tisyys_NK : NK ;
+fun avolaitos_NK : NK ;
+fun avolava_NK : NK ;
+fun avolavainen_NK : NK ;
+fun avoleski_NK : NK ;
+fun avoliitto_NK : NK ;
+fun avolouhos_NK : NK ;
+fun avomaa_NK : NK ;
+fun avomaasto_NK : NK ;
+fun avomeri_NK : NK ;
+fun avomielisyys_NK : NK ;
+fun avomies_NK : NK ;
+fun avomuoto_NK : NK ;
+fun avomurtuma_NK : NK ;
+fun avonainen_NK : NK ;
+fun avonaisuus_NK : NK ;
+fun avopalvelu_NK : NK ;
+fun avopari_NK : NK ;
+fun avopuoliso_NK : NK ;
+fun avopa'inen_NK : NK ;
+fun avorahastus_NK : NK ;
+fun avorauhanen_NK : NK ;
+fun avorivi_NK : NK ;
+fun avoselka'inen_NK : NK ;
+fun avosetti_NK : NK ;
+fun avosyda'minen_AK : AK ;
+fun avosyda'misyys_NK : NK ;
+fun avotakka_NK : NK ;
+fun avotavu_NK : NK ;
+fun avotuli_NK : NK ;
+fun avotuuli_NK : NK ;
+fun avovaimo_NK : NK ;
+fun avovesi_NK : NK ;
+fun avoviema'ri_NK : NK ;
+fun avoa'a'nestys_NK : NK ;
+fun avunantosopimus_NK : NK ;
+fun avustajakunta_NK : NK ;
+fun avustushakemus_NK : NK ;
+fun avustusrahasto_NK : NK ;
+fun avustustili_NK : NK ;
+fun avuttomuuslisa'_NK : NK ;
+fun azerbaid_anilainen_NK : NK ;
+fun baariapulainen_NK : NK ;
+fun baarijakkara_NK : NK ;
+fun baarikaappi_NK : NK ;
+fun baarikeittio'_NK : NK ;
+fun baarimestari_NK : NK ;
+fun baarimikko_NK : NK ;
+fun baaritiski_NK : NK ;
+fun baarituoli_NK : NK ;
+fun bagatellisointi_NK : NK ;
+fun bakteerikanta_NK : NK ;
+fun bakteerikasvusto_NK : NK ;
+fun bakteerimyrkky_NK : NK ;
+fun bakteeritauti_NK : NK ;
+fun balettikoulu_NK : NK ;
+fun balettikuoro_NK : NK ;
+fun balettimestari_NK : NK ;
+fun balettimusiikki_NK : NK ;
+fun balettitanssi_NK : NK ;
+fun balettitanssija_NK : NK ;
+fun balettitossu_NK : NK ;
+fun balladirunous_NK : NK ;
+fun ballerinakenka'_NK : NK ;
+fun ballerinatossu_NK : NK ;
+fun balsapuu_NK : NK ;
+fun balttilainen_NK : NK ;
+fun bambukeppi_NK : NK ;
+fun bamburuoko_NK : NK ;
+fun bambuvapa_NK : NK ;
+fun banaanika'rpa'nen_NK : NK ;
+fun banaanipistoke_NK : NK ;
+fun banaanipotku_NK : NK ;
+fun banaanivaltio_NK : NK ;
+fun bantukieli_NK : NK ;
+fun baptistisaarnaaja_NK : NK ;
+fun barbaarimainen_AK : AK ;
+fun baritonilaulaja_NK : NK ;
+fun baritonisaksofoni_NK : NK ;
+fun bariumpuuro_NK : NK ;
+fun barokkikaappi_NK : NK ;
+fun barokkityyli_NK : NK ;
+fun barokkityylinen_NK : NK ;
+fun baskilainen_NK : NK ;
+fun bassoalue_NK : NK ;
+fun bassoavain_NK : NK ;
+fun bassokitara_NK : NK ;
+fun bassolaulaja_NK : NK ;
+fun bassorumpu_NK : NK ;
+fun bassosa'a'din_NK : NK ;
+fun bassoviulu_NK : NK ;
+fun bassoa'a'ni_NK : NK ;
+fun beatmusiikki_NK : NK ;
+fun beduiiniheimo_NK : NK ;
+fun beetahiukkanen_NK : NK ;
+fun beetasalpaaja_NK : NK ;
+fun beetasa'teily_NK : NK ;
+fun benediktiiniliko'o'ri_NK : NK ;
+fun benediktiiniluostari_NK : NK ;
+fun benediktiinimunkki_NK : NK ;
+fun benediktiininunna_NK : NK ;
+fun bensiiniasema_NK : NK ;
+fun bensiinika'ytto'inen_NK : NK ;
+fun bensiinimittari_NK : NK ;
+fun bensiinimoottori_NK : NK ;
+fun bensiinisa'ilio'_NK : NK ;
+fun bensiinitankki_NK : NK ;
+fun betonielementti_NK : NK ;
+fun betonihiekka_NK : NK ;
+fun betonilaatta_NK : NK ;
+fun betonilattia_NK : NK ;
+fun betonimassa_NK : NK ;
+fun betonimylly_NK : NK ;
+fun betoniporsas_NK : NK ;
+fun betonipa'a'llyste_NK : NK ;
+fun betonirakenne_NK : NK ;
+fun betonirakennus_NK : NK ;
+fun betonirengas_NK : NK ;
+fun betonitera's_NK : NK ;
+fun betonitiili_NK : NK ;
+fun biedermeierkalusto_NK : NK ;
+fun biisoniha'rka'_NK : NK ;
+fun biljardikeppi_NK : NK ;
+fun biljardipallo_NK : NK ;
+fun biljardipo'yta'_NK : NK ;
+fun biljardisali_NK : NK ;
+fun bioja'teastia_NK : NK ;
+fun biokaasulaitos_NK : NK ;
+fun biopsiana'yte_NK : NK ;
+fun biopsiatutkimus_NK : NK ;
+fun bisnesenkeli_NK : NK ;
+fun bittinikkari_NK : NK ;
+fun bitumihuopa_NK : NK ;
+fun bitumilakka_NK : NK ;
+fun bitumisora_NK : NK ;
+fun blueslaulaja_NK : NK ;
+fun boaka'a'rme_NK : NK ;
+fun boheemiela'ma'_NK : NK ;
+fun bokserimoottori_NK : NK ;
+fun boksinahka_NK : NK ;
+fun bongorumpu_NK : NK ;
+fun boolimalja_NK : NK ;
+fun boordinauha_NK : NK ;
+fun boorihappo_NK : NK ;
+fun boorisalva_NK : NK ;
+fun boorivesi_NK : NK ;
+fun bordeauxviini_NK : NK ;
+fun borssikeitto_NK : NK ;
+fun bourbonviski_NK : NK ;
+fun bourgogneviini_NK : NK ;
+fun brahmalainen_NK : NK ;
+fun bravuurinumero_NK : NK ;
+fun breikkitanssi_NK : NK ;
+fun briejuusto_NK : NK ;
+fun briljanttisormus_NK : NK ;
+fun brodyyrikangas_NK : NK ;
+fun brodyyrinauha_NK : NK ;
+fun broilerileike_NK : NK ;
+fun broileripoliitikko_NK : NK ;
+fun broileripyo'rykka'_NK : NK ;
+fun bruttohinta_NK : NK ;
+fun bruttopaino_NK : NK ;
+fun bruttopalkka_NK : NK ;
+fun bruttotulo_NK : NK ;
+fun budjettiesitys_NK : NK ;
+fun budjettikehys_NK : NK ;
+fun budjettikeskustelu_NK : NK ;
+fun budjettiraami_NK : NK ;
+fun budjettiriihi_NK : NK ;
+fun budolaji_NK : NK ;
+fun bufettipo'yta'_NK : NK ;
+fun bufettitarjoilu_NK : NK ;
+fun buffettarjoilu_NK : NK ;
+fun bukleelanka_NK : NK ;
+fun bulevardilehdisto'_NK : NK ;
+fun bulevardilehti_NK : NK ;
+fun bulevardisportti_NK : NK ;
+fun bulkkitavara_NK : NK ;
+fun cheddarjuusto_NK : NK ;
+fun chilikastike_NK : NK ;
+fun chilipippuri_NK : NK ;
+fun chippendalekalusto_NK : NK ;
+fun chippendaletyyli_NK : NK ;
+fun chippendaletyylinen_NK : NK ;
+fun cirruspilvi_NK : NK ;
+fun citykulttuuri_NK : NK ;
+fun clearingkurssi_NK : NK ;
+fun cocktailkirsikka_NK : NK ;
+fun cocktaillasi_NK : NK ;
+fun cocktailleipa'_NK : NK ;
+fun cocktailpala_NK : NK ;
+fun cocktailtikku_NK : NK ;
+fun cocktailtilaisuus_NK : NK ;
+fun collegepusero_NK : NK ;
+fun contrasissi_NK : NK ;
+fun countrymusiikki_NK : NK ;
+fun cowboyhattu_NK : NK ;
+fun cumuluspilvi_NK : NK ;
+fun cupvoittaja_NK : NK ;
+fun currykana_NK : NK ;
+fun currykastike_NK : NK ;
+fun damastiliina_NK : NK ;
+fun datansiirtoverkko_NK : NK ;
+fun dataverkko_NK : NK ;
+fun debentuurilaina_NK : NK ;
+fun debetpuoli_NK : NK ;
+fun dekantterilasi_NK : NK ;
+fun dekkarikirjailija_NK : NK ;
+fun deltalihas_NK : NK ;
+fun deltasiipi_NK : NK ;
+fun deodoranttisaippua_NK : NK ;
+fun depressiokausi_NK : NK ;
+fun depressiola'a'ke_NK : NK ;
+fun depressiotila_NK : NK ;
+fun designtuote_NK : NK ;
+fun desigramma_NK : NK ;
+fun desilitra_NK : NK ;
+fun desimaali_NK : NK ;
+fun desimaaliluku_NK : NK ;
+fun desimaalinen_NK : NK ;
+fun desimaalipilkku_NK : NK ;
+fun desimetri_NK : NK ;
+fun desinfiointiaine_NK : NK ;
+fun desinfiointilaite_NK : NK ;
+fun detaljipiirustus_NK : NK ;
+fun detaljitieto_NK : NK ;
+fun diaarinumero_NK : NK ;
+fun diagonaalihiihto_NK : NK ;
+fun diagonaalityyli_NK : NK ;
+fun diaheitin_NK : NK ;
+fun diakehys_NK : NK ;
+fun diakoni_NK : NK ;
+fun diakuva_NK : NK ;
+fun dialyysihoito_NK : NK ;
+fun dialyysilaite_NK : NK ;
+fun diapositiivi_NK : NK ;
+fun diaprojektori_NK : NK ;
+fun diasarja_NK : NK ;
+fun diaspora_NK : NK ;
+fun dieettihoito_NK : NK ;
+fun dieettikeittio'_NK : NK ;
+fun dieettiruoka_NK : NK ;
+fun dieselauto_NK : NK ;
+fun dieselmoottori_NK : NK ;
+fun dieselvero_NK : NK ;
+fun dieselveturi_NK : NK ;
+fun dieselo'ljy_NK : NK ;
+fun differentiaalilaskenta_NK : NK ;
+fun differentiaalipsykologia_NK : NK ;
+fun differentiaaliyhta'lo'_NK : NK ;
+fun diktatuurivaltio_NK : NK ;
+fun diplomaattiedustus_NK : NK ;
+fun diplomaattikunta_NK : NK ;
+fun diplomaattipassi_NK : NK ;
+fun diplomaattiposti_NK : NK ;
+fun diplomiekonomi_NK : NK ;
+fun diplomikauppias_NK : NK ;
+fun diplomilaulaja_NK : NK ;
+fun diplomipianisti_NK : NK ;
+fun diplomitutkinto_NK : NK ;
+fun diplomityo'_NK : NK ;
+fun diplomiurkuri_NK : NK ;
+fun dipoliantenni_NK : NK ;
+fun dippauskastike_NK : NK ;
+fun dippikastike_NK : NK ;
+fun diskanttialue_NK : NK ;
+fun diskanttiavain_NK : NK ;
+fun diskanttisa'a'din_NK : NK ;
+fun diskojyta'_NK : NK ;
+fun diskomusiikki_NK : NK ;
+fun diskonttokorko_NK : NK ;
+fun dokumenttiohjelma_NK : NK ;
+fun dollarihymy_NK : NK ;
+fun dolomiittikivi_NK : NK ;
+fun dominikaaniluostari_NK : NK ;
+fun dominikaanimunkki_NK : NK ;
+fun dominikaaninunna_NK : NK ;
+fun dominikaanisisar_NK : NK ;
+fun dopingaine_NK : NK ;
+fun dopingtesti_NK : NK ;
+fun drillipora_NK : NK ;
+fun drinkkilasi_NK : NK ;
+fun duffelitakki_NK : NK ;
+fun duuriasteikko_NK : NK ;
+fun duurisointu_NK : NK ;
+fun dynamiittipanos_NK : NK ;
+fun dynamometri_NK : NK ;
+fun edamjuusto_NK : NK ;
+fun edelleenkuljetus_NK : NK ;
+fun edelleenvuokraus_NK : NK ;
+fun edella'ka'vija'_NK : NK ;
+fun edella'ka'ypa'_NK : NK ;
+fun edella'ka'yva'_NK : NK ;
+fun edeska'ypa'_NK : NK ;
+--? fun edesmennyt_NK : NK ;
+fun edestakainen_NK : NK ;
+fun edesvastuu_NK : NK ;
+fun edesvastuuton_NK : NK ;
+fun edistysaskel_NK : NK ;
+fun edistysmielisyys_NK : NK ;
+fun eduskunta_NK : NK ;
+fun eduskuntakeskustelu_NK : NK ;
+fun eduskuntaka'sittely_NK : NK ;
+fun eduskuntaryhma'_NK : NK ;
+fun eduskuntasihteeri_NK : NK ;
+fun eduskuntatalo_NK : NK ;
+fun eduskuntatoimittaja_NK : NK ;
+fun eduskuntatyo'_NK : NK ;
+fun edusmies_NK : NK ;
+fun edustajakokous_NK : NK ;
+fun edustajakunta_NK : NK ;
+fun edusteinen_NK : NK ;
+fun edustusasu_NK : NK ;
+fun edustusasunto_NK : NK ;
+fun edustusauto_NK : NK ;
+fun edustuselin_NK : NK ;
+fun edustusjoukkue_NK : NK ;
+fun edustuskelpoinen_NK : NK ;
+fun edustuskelpoisuus_NK : NK ;
+fun edustuskyky_NK : NK ;
+fun edustuskykyinen_NK : NK ;
+fun edustuslaitos_NK : NK ;
+fun edustusoikeus_NK : NK ;
+fun edustustehta'va'_NK : NK ;
+fun edustustilaisuus_NK : NK ;
+fun edustustili_NK : NK ;
+fun eetterimedia_NK : NK ;
+fun eetterinarkoosi_NK : NK ;
+fun eetterinukutus_NK : NK ;
+fun egoismi_NK : NK ;
+fun ehdokasasettelu_NK : NK ;
+fun ehdokaslista_NK : NK ;
+fun ehea'laitainen_NK : NK ;
+fun ehka'isyaine_NK : NK ;
+fun ehka'isykapseli_NK : NK ;
+fun ehka'isykeino_NK : NK ;
+fun ehka'isykierukka_NK : NK ;
+fun ehka'isymenetelma'_NK : NK ;
+fun ehka'isyneuvonta_NK : NK ;
+fun ehka'isypilleri_NK : NK ;
+fun ehka'isytabletti_NK : NK ;
+fun ehka'isytoimi_NK : NK ;
+fun ehka'isytulli_NK : NK ;
+fun ehka'isyvaahto_NK : NK ;
+fun ehka'isyva'line_NK : NK ;
+fun ehtolainen_NK : NK ;
+fun ehtolause_NK : NK ;
+fun ehtoopuoli_NK : NK ;
+fun ehtotapa_NK : NK ;
+fun ehytlaitainen_NK : NK ;
+fun eineskeittio'_NK : NK ;
+fun eksponenttifunktio_NK : NK ;
+fun eksponenttika'yra'_NK : NK ;
+fun elatusaine_NK : NK ;
+fun elatusapu_NK : NK ;
+fun elatusmaksu_NK : NK ;
+fun elatustuki_NK : NK ;
+fun elefanttitauti_NK : NK ;
+fun eleisyys_NK : NK ;
+fun elekieli_NK : NK ;
+fun elektroluminesenssina'ytto'_NK : NK ;
+fun elektroniikkainsino'o'ri_NK : NK ;
+fun elektroniikkateollisuus_NK : NK ;
+fun elektronikeha'_NK : NK ;
+fun elektronikuori_NK : NK ;
+fun elektronimusiikki_NK : NK ;
+fun elektronioptiikka_NK : NK ;
+fun elektroniputki_NK : NK ;
+fun elektronisuihku_NK : NK ;
+fun elementtitalo_NK : NK ;
+fun elementtitehdas_NK : NK ;
+fun eliittikulttuuri_NK : NK ;
+fun eliittiryhma'_NK : NK ;
+fun eliittiurheilu_NK : NK ;
+fun elinaikainen_NK : NK ;
+fun elinaikaisuus_NK : NK ;
+fun elinalue_NK : NK ;
+fun elinehto_NK : NK ;
+fun elinhermo_NK : NK ;
+fun elinika'_NK : NK ;
+fun elinika'inen_NK : NK ;
+fun elinkaari_NK : NK ;
+fun elinkausi_NK : NK ;
+fun elinkautinen_NK : NK ;
+fun elinkeino_NK : NK ;
+fun elinkeinoela'ma'_NK : NK ;
+fun elinkeinoilmoitus_NK : NK ;
+fun elinkeinolupa_NK : NK ;
+fun elinkeinorakenne_NK : NK ;
+fun elinkeinovapaus_NK : NK ;
+fun elinkeinovero_NK : NK ;
+fun elinkelpoinen_NK : NK ;
+fun elinkelpoisuus_NK : NK ;
+fun elinkelvoton_NK : NK ;
+fun elinkorko_NK : NK ;
+fun elinkyky_NK : NK ;
+fun elinkykyinen_NK : NK ;
+fun elinkykyisyys_NK : NK ;
+fun elinkysymys_NK : NK ;
+fun elinpankki_NK : NK ;
+fun elinpiiri_NK : NK ;
+fun elinpa'iva'_NK : NK ;
+fun elinsiirto_NK : NK ;
+fun elinsiirtokirurgia_NK : NK ;
+fun elintarvike_NK : NK ;
+fun elintarvikehuolto_NK : NK ;
+fun elintarvikehygienia_NK : NK ;
+fun elintarvikeinsino'o'ri_NK : NK ;
+fun elintarvikekauppa_NK : NK ;
+fun elintarvikekemia_NK : NK ;
+fun elintarvikekioski_NK : NK ;
+fun elintarvikemuovi_NK : NK ;
+fun elintarviketeknologia_NK : NK ;
+fun elintarviketeollisuus_NK : NK ;
+fun elintarviketiede_NK : NK ;
+fun elintarvikeva'ri_NK : NK ;
+fun elintaso_NK : NK ;
+fun elintasokilpa_NK : NK ;
+fun elintasokilpailu_NK : NK ;
+fun elintasokoti_NK : NK ;
+fun elintasokuilu_NK : NK ;
+fun elintasopakolainen_NK : NK ;
+fun elintasosairaus_NK : NK ;
+fun elintasosiipi_NK : NK ;
+fun elintila_NK : NK ;
+fun elintoiminta_NK : NK ;
+fun elintoiminto_NK : NK ;
+fun elinta'rkeys_NK : NK ;
+fun elinta'rkea'_NK : NK ;
+fun elinvoima_NK : NK ;
+fun elinvoimainen_NK : NK ;
+fun elinvoimaisuus_NK : NK ;
+fun elinvuosi_NK : NK ;
+fun elinympa'risto'_NK : NK ;
+fun elio'keha'_NK : NK ;
+fun elio'kunta_NK : NK ;
+fun elio'yhteiso'_NK : NK ;
+fun elohiiri_NK : NK ;
+fun elohopea_NK : NK ;
+fun elohopealamppu_NK : NK ;
+fun elohopeamyrkytys_NK : NK ;
+fun elohopeapatsas_NK : NK ;
+fun elohopeaseos_NK : NK ;
+fun elohopeayhdiste_NK : NK ;
+fun elojuhla_NK : NK ;
+fun elokuinen_NK : NK ;
+fun elokuu_NK : NK ;
+fun elokuva_NK : NK ;
+fun elokuvaaja_NK : NK ;
+fun elokuvakamera_NK : NK ;
+fun elokuvakerho_NK : NK ;
+fun elokuvakone_NK : NK ;
+fun elokuvalippu_NK : NK ;
+fun elokuvamusiikki_NK : NK ;
+fun elokuvana'yttelija'_NK : NK ;
+fun elokuvaohjaaja_NK : NK ;
+fun elokuvaprojektori_NK : NK ;
+fun elokuvasankari_NK : NK ;
+fun elokuvastudio_NK : NK ;
+fun elokuvasa'velta'ja'_NK : NK ;
+fun elokuvataide_NK : NK ;
+fun elokuvatarkastamo_NK : NK ;
+fun elokuvateatteri_NK : NK ;
+fun elokuvatuottaja_NK : NK ;
+fun elokuvata'hti_NK : NK ;
+fun elokuvaus_NK : NK ;
+fun elokuvayleiso'_NK : NK ;
+fun elonkorjuujuhla_NK : NK ;
+fun elopaino_NK : NK ;
+fun elopelto_NK : NK ;
+fun elopera'inen_NK : NK ;
+fun elopera'isyys_NK : NK ;
+fun elosalama_NK : NK ;
+fun elotuli_NK : NK ;
+fun elovalkea_NK : NK ;
+fun ela'inkanta_NK : NK ;
+fun ela'inkoe_NK : NK ;
+fun ela'inkunta_NK : NK ;
+fun ela'inlaji_NK : NK ;
+fun ela'inlajisto_NK : NK ;
+fun ela'inla'a'ke_NK : NK ;
+fun ela'inla'a'ketiede_NK : NK ;
+fun ela'inla'a'kinta'_NK : NK ;
+fun ela'inla'a'ka'ri_NK : NK ;
+fun ela'inmaailma_NK : NK ;
+fun ela'inmuseo_NK : NK ;
+fun ela'inna'yttely_NK : NK ;
+fun ela'inopillinen_NK : NK ;
+fun ela'inoppi_NK : NK ;
+fun ela'inpera'inen_NK : NK ;
+fun ela'inpsykologia_NK : NK ;
+fun ela'inpuisto_NK : NK ;
+fun ela'inpo'ly_NK : NK ;
+fun ela'inrakas_NK : NK ;
+fun ela'inrasva_NK : NK ;
+fun ela'inrata_NK : NK ;
+fun ela'inravinto_NK : NK ;
+fun ela'inrehu_NK : NK ;
+fun ela'inra'a'kka'ys_NK : NK ;
+fun ela'insairaala_NK : NK ;
+fun ela'insatu_NK : NK ;
+fun ela'insuoja_NK : NK ;
+fun ela'insuojelija_NK : NK ;
+fun ela'insuojelu_NK : NK ;
+fun ela'intarha_NK : NK ;
+fun ela'intauti_NK : NK ;
+fun ela'intiede_NK : NK ;
+fun ela'intieteilija'_NK : NK ;
+fun ela'keika'_NK : NK ;
+fun ela'keika'inen_NK : NK ;
+fun ela'kemaksu_NK : NK ;
+fun ela'keoikeus_NK : NK ;
+fun ela'kerahasto_NK : NK ;
+fun ela'kesa'a'tio'_NK : NK ;
+fun ela'keturva_NK : NK ;
+fun ela'kevakuutus_NK : NK ;
+fun ela'mysmaailma_NK : NK ;
+fun ela'myspohja_NK : NK ;
+fun ela'ma'kerta_NK : NK ;
+fun ela'ma'kertateos_NK : NK ;
+fun ela'ma'nkatsomustieto_NK : NK ;
+fun ela'ma'ntapasairaus_NK : NK ;
+fun ela'ttivaris_NK : NK ;
+fun emalikattila_NK : NK ;
+fun emalimaalaus_NK : NK ;
+fun emalimaali_NK : NK ;
+fun emalimuki_NK : NK ;
+fun emalipinta_NK : NK ;
+fun emalipa'a'llyste_NK : NK ;
+fun emalitaide_NK : NK ;
+fun emaliva'ri_NK : NK ;
+fun emeritaprofessori_NK : NK ;
+fun emeritusprofessori_NK : NK ;
+fun emikasvi_NK : NK ;
+fun emikukinto_NK : NK ;
+fun emikukka_NK : NK ;
+fun emilehti_NK : NK ;
+fun eminorkko_NK : NK ;
+fun emissiokurssi_NK : NK ;
+fun emmentaljuusto_NK : NK ;
+fun emoela'in_NK : NK ;
+fun emokasvi_NK : NK ;
+fun emokissa_NK : NK ;
+fun emolehma'_NK : NK ;
+fun emolevy_NK : NK ;
+fun emosolu_NK : NK ;
+fun emoyhtio'_NK : NK ;
+fun empiirityyli_NK : NK ;
+fun empiirityylinen_NK : NK ;
+fun emulsiomaali_NK : NK ;
+fun emulsiovoide_NK : NK ;
+fun ema'alus_NK : NK ;
+fun ema'kallio_NK : NK ;
+fun ema'karhu_NK : NK ;
+fun ema'kaupunki_NK : NK ;
+fun ema'kkikasvi_NK : NK ;
+fun ema'laiva_NK : NK ;
+fun ema'maa_NK : NK ;
+fun ema'nta'va'ki_NK : NK ;
+fun ema'pita'ja'_NK : NK ;
+fun ema'puu_NK : NK ;
+fun ema'sika_NK : NK ;
+fun ema'tila_NK : NK ;
+fun ema'tinhuuhtelu_NK : NK ;
+fun ema'tinpuikko_NK : NK ;
+fun ema'tintulehdus_NK : NK ;
+fun ema'valhe_NK : NK ;
+fun ema'yhtio'_NK : NK ;
+fun enemmisto'hallitus_NK : NK ;
+fun enemmisto'pa'a'to's_NK : NK ;
+fun enemmisto'vaali_NK : NK ;
+fun enemmisto'valta_NK : NK ;
+fun energiahuolto_NK : NK ;
+fun energiaha'vio'_NK : NK ;
+fun energiakriisi_NK : NK ;
+fun energialaji_NK : NK ;
+fun energiala'hde_NK : NK ;
+fun energiametsa'_NK : NK ;
+fun energiapakkaus_NK : NK ;
+fun energiapitoinen_NK : NK ;
+fun energiapitoisuus_NK : NK ;
+fun energiapolitiikka_NK : NK ;
+fun energiapula_NK : NK ;
+fun energiapuu_NK : NK ;
+fun energiasisa'lto'_NK : NK ;
+fun energiatalous_NK : NK ;
+fun energiataso_NK : NK ;
+fun energiatila_NK : NK ;
+fun energiatuotanto_NK : NK ;
+fun energiavarasto_NK : NK ;
+fun englantilainen_NK : NK ;
+fun enkelikuoro_NK : NK ;
+fun ennakkoaavistus_NK : NK ;
+fun ennakkoarvelu_NK : NK ;
+fun ennakkoarvio_NK : NK ;
+fun ennakkoasenne_NK : NK ;
+fun ennakkoehka'isy_NK : NK ;
+fun ennakkoesitys_NK : NK ;
+fun ennakkoilmoitus_NK : NK ;
+fun ennakkokorko_NK : NK ;
+fun ennakkoka'sitys_NK : NK ;
+fun ennakkolaskelma_NK : NK ;
+fun ennakkoluulo_NK : NK ;
+fun ennakkoluuloinen_AK : AK ;
+fun ennakkoluuloisuus_NK : NK ;
+fun ennakkomaine_NK : NK ;
+fun ennakkomainonta_NK : NK ;
+fun ennakkomainostus_NK : NK ;
+fun ennakkomaksu_NK : NK ;
+fun ennakkomerkinta'_NK : NK ;
+fun ennakkomyynti_NK : NK ;
+fun ennakko_otaksuma_NK : NK ;
+fun ennakkoperinta'_NK : NK ;
+fun ennakkoperinto'_NK : NK ;
+fun ennakkopiste_NK : NK ;
+fun ennakkopa'a'telma'_NK : NK ;
+fun ennakkopa'a'to's_NK : NK ;
+fun ennakkosensuuri_NK : NK ;
+fun ennakkosuoritus_NK : NK ;
+fun ennakkosuosikki_NK : NK ;
+fun ennakkotapaus_NK : NK ;
+fun ennakkotarkastus_NK : NK ;
+fun ennakkotieto_NK : NK ;
+fun ennakkotilaaja_NK : NK ;
+fun ennakkotilaus_NK : NK ;
+fun ennakkotoimi_NK : NK ;
+fun ennakkotorjunta_NK : NK ;
+fun ennakkouutinen_NK : NK ;
+fun ennakkovaraus_NK : NK ;
+fun ennakkovero_NK : NK ;
+fun ennakkoverolippu_NK : NK ;
+fun ennakkoa'a'nestys_NK : NK ;
+fun ennakkoa'a'nesta'ja'_NK : NK ;
+fun ennakkoa'a'ni_NK : NK ;
+fun ennakonpida'tystodistus_NK : NK ;
+fun ennaltaehka'isy_NK : NK ;
+fun ennenaikainen_NK : NK ;
+fun ennenkuulumaton_NK : NK ;
+fun ennenna'kema'to'n_NK : NK ;
+fun ennustajaeukko_NK : NK ;
+fun enna'tysjuoksu_NK : NK ;
+fun enna'tyskorkeus_NK : NK ;
+fun enna'tysmies_NK : NK ;
+fun enna'tysma'a'ra'_NK : NK ;
+fun enna'tysnainen_NK : NK ;
+fun enna'tysnopeus_NK : NK ;
+fun enna'tyssato_NK : NK ;
+fun enna'tystulos_NK : NK ;
+fun ensiapu_NK : NK ;
+fun ensiapukurssi_NK : NK ;
+fun ensiapulaukku_NK : NK ;
+fun ensiarvoinen_NK : NK ;
+fun ensiarvoisuus_NK : NK ;
+fun ensiasunto_NK : NK ;
+fun ensiesiintyma'_NK : NK ;
+fun ensiesitys_NK : NK ;
+fun ensihoitaja_NK : NK ;
+fun ensihoito_NK : NK ;
+fun ensikertainen_NK : NK ;
+fun ensikesa'inen_NK : NK ;
+fun ensikonsertti_NK : NK ;
+fun ensikoti_NK : NK ;
+fun ensika'ytto'_NK : NK ;
+fun ensilumi_NK : NK ;
+fun ensiluokkainen_AK : AK ;
+fun ensioire_NK : NK ;
+fun ensipainos_NK : NK ;
+fun ensirakastaja_NK : NK ;
+fun ensirakkaus_NK : NK ;
+fun ensisijainen_AK : AK ;
+fun ensisijaisuus_NK : NK ;
+fun ensisuoja_NK : NK ;
+fun ensisynnytta'ja'_NK : NK ;
+fun ensitalvinen_NK : NK ;
+fun ensitanssija_NK : NK ;
+fun ensivaikutelma_NK : NK ;
+fun ensivierailu_NK : NK ;
+fun ensiviulu_NK : NK ;
+fun epilepsiakohtaus_NK : NK ;
+fun epistolateksti_NK : NK ;
+fun epiteelikudos_NK : NK ;
+fun epa'ileva'isyys_NK : NK ;
+fun epa'ka'slihas_NK : NK ;
+fun epa'luottamuslause_NK : NK ;
+fun erakkoela'ma'_NK : NK ;
+fun erakkoluonne_NK : NK ;
+fun erakkorapu_NK : NK ;
+fun eriaikainen_AK : AK ;
+fun eriaikaisuus_NK : NK ;
+fun eriarvoinen_NK : NK ;
+fun eriarvoisuus_NK : NK ;
+fun eriasteinen_AK : AK ;
+fun erihintainen_NK : NK ;
+fun eri_ika'inen_NK : NK ;
+fun eri_ika'isyys_NK : NK ;
+fun erikielinen_NK : NK ;
+fun erikokoinen_NK : NK ;
+fun erikorkuinen_NK : NK ;
+fun erilainen_NK : NK ;
+fun erilla'a'nolo_NK : NK ;
+fun eriluonteinen_NK : NK ;
+fun erimallinen_NK : NK ;
+fun erimerkkinen_NK : NK ;
+fun erimielisyys_NK : NK ;
+fun erimunainen_NK : NK ;
+fun erimuotoinen_AK : AK ;
+fun erimuotoisuus_NK : NK ;
+fun eriniminen_NK : NK ;
+fun erina'ko'inen_NK : NK ;
+fun erina'ko'isyys_NK : NK ;
+fun erioikeus_NK : NK ;
+fun eripainos_NK : NK ;
+fun eriparinen_NK : NK ;
+fun eripituinen_NK : NK ;
+fun erisivuinen_NK : NK ;
+fun eristeisyys_NK : NK ;
+fun eristekerros_NK : NK ;
+fun eristysaine_NK : NK ;
+fun eristyshuone_NK : NK ;
+fun eristyshuopa_NK : NK ;
+fun eristyslaitos_NK : NK ;
+fun eristysmassa_NK : NK ;
+fun eristysnauha_NK : NK ;
+fun eristysselli_NK : NK ;
+fun erisuuntainen_NK : NK ;
+fun erisuuruinen_NK : NK ;
+fun erisuuruus_NK : NK ;
+fun erisa'a'tyinen_NK : NK ;
+fun eritasoinen_AK : AK ;
+fun erityishuoltolaitos_NK : NK ;
+fun erityylinen_NK : NK ;
+fun erityyppinen_AK : AK ;
+fun erivapaus_NK : NK ;
+fun erivapausanomus_NK : NK ;
+fun eriva'rinen_NK : NK ;
+fun eriva'risyys_NK : NK ;
+fun eroahdistus_NK : NK ;
+fun eroanomus_NK : NK ;
+fun erohakemus_NK : NK ;
+fun erokirja_NK : NK ;
+fun eroosio_NK : NK ;
+fun eroraha_NK : NK ;
+fun erosija_NK : NK ;
+fun erossaolo_NK : NK ;
+fun erotodistus_NK : NK ;
+fun erotuomari_NK : NK ;
+fun erotuskyky_NK : NK ;
+fun erotuskynnys_NK : NK ;
+fun erovuoro_NK : NK ;
+fun erovuoroinen_NK : NK ;
+fun era'ajo_NK : NK ;
+fun era'alue_NK : NK ;
+fun era'kulttuuri_NK : NK ;
+fun era'ka'sittely_NK : NK ;
+fun era'luku_NK : NK ;
+fun era'maa_NK : NK ;
+fun era'maapuhelin_NK : NK ;
+fun era'maataival_NK : NK ;
+fun era'mainen_NK : NK ;
+fun era'mies_NK : NK ;
+fun era'opas_NK : NK ;
+fun era'pallo_NK : NK ;
+fun era'poliisi_NK : NK ;
+fun era'pa'iva'_NK : NK ;
+fun era'reitti_NK : NK ;
+fun era'retkeily_NK : NK ;
+fun era'retki_NK : NK ;
+fun era'taito_NK : NK ;
+fun era'talous_NK : NK ;
+fun era'tauko_NK : NK ;
+fun era'vartija_NK : NK ;
+fun era'voitto_NK : NK ;
+fun esiinluiskahdus_NK : NK ;
+fun esiinmarssi_NK : NK ;
+fun esi_isa'_NK : NK ;
+fun esikouluika'inen_NK : NK ;
+fun esikoululainen_NK : NK ;
+fun esikuntakomppania_NK : NK ;
+fun esikuntapa'a'llikko'_NK : NK ;
+fun esikuntaupseeri_NK : NK ;
+fun esilletulo_NK : NK ;
+fun esilla'olo_NK : NK ;
+fun esimerkkilause_NK : NK ;
+fun esitelma'matka_NK : NK ;
+fun esitelma'sarja_NK : NK ;
+fun esittelylehtinen_NK : NK ;
+fun esityskausi_NK : NK ;
+fun esityskeino_NK : NK ;
+fun esityskerta_NK : NK ;
+fun esityskielto_NK : NK ;
+fun esityslista_NK : NK ;
+fun esitysmerkinta'_NK : NK ;
+fun esitystaito_NK : NK ;
+fun esitystapa_NK : NK ;
+fun eskimokajakki_NK : NK ;
+fun eskimokoira_NK : NK ;
+fun eskimopyo'ra'hdys_NK : NK ;
+fun espanjalainen_NK : NK ;
+fun espressokeitin_NK : NK ;
+fun esseekokoelma_NK : NK ;
+fun essumekko_NK : NK ;
+fun estejuoksija_NK : NK ;
+fun estejuoksu_NK : NK ;
+fun esteratsastus_NK : NK ;
+fun estola'a'kitys_NK : NK ;
+fun estraditaide_NK : NK ;
+fun estraditaiteilija_NK : NK ;
+fun etappiajo_NK : NK ;
+fun eteenpa'inen_NK : NK ;
+fun eteenpa'inmeno_NK : NK ;
+fun eteentaivutus_NK : NK ;
+fun etela'kaakko_NK : NK ;
+fun etela'kaakkoinen_NK : NK ;
+fun etela'ka'rki_NK : NK ;
+fun etela'lounainen_NK : NK ;
+fun etela'maa_NK : NK ;
+fun etela'maalainen_NK : NK ;
+fun etela'mainen_NK : NK ;
+fun etela'myrsky_NK : NK ;
+fun etela'napa_NK : NK ;
+fun etela'osa_NK : NK ;
+fun etela'puoli_NK : NK ;
+fun etela'puolinen_NK : NK ;
+fun etela'raja_NK : NK ;
+fun etela'rannikko_NK : NK ;
+fun etela'reimari_NK : NK ;
+fun etela'rinne_NK : NK ;
+fun etela'slaavi_NK : NK ;
+fun etela'slaavilainen_NK : NK ;
+fun etela'suunta_NK : NK ;
+fun etela'tuuli_NK : NK ;
+fun etela'valtio_NK : NK ;
+fun etela'viitta_NK : NK ;
+fun etikkahappo_NK : NK ;
+fun etikkakurkku_NK : NK ;
+fun etikkaliemi_NK : NK ;
+fun etikkapunajuuri_NK : NK ;
+fun etsinkuva_NK : NK ;
+fun etsinta'kuulutus_NK : NK ;
+fun etsiva'toimisto_NK : NK ;
+fun etuakseli_NK : NK ;
+fun etuanti_NK : NK ;
+fun etuhalkio_NK : NK ;
+fun etuhammas_NK : NK ;
+fun etuheilahdus_NK : NK ;
+fun etuhele_NK : NK ;
+fun etuhuone_NK : NK ;
+fun etuistuin_NK : NK ;
+fun etujalka_NK : NK ;
+fun etujoukko_NK : NK ;
+fun etujousi_NK : NK ;
+fun etuja'rjesto'_NK : NK ;
+fun etukammio_NK : NK ;
+fun etukansi_NK : NK ;
+fun etukappale_NK : NK ;
+fun etukuormain_NK : NK ;
+fun etukysymys_NK : NK ;
+fun etuka'pa'la'_NK : NK ;
+fun etuka'teinen_NK : NK ;
+fun etuliite_NK : NK ;
+fun etulinja_NK : NK ;
+fun etulyo'nti_NK : NK ;
+fun etulyo'ntiasema_NK : NK ;
+fun etumaasto_NK : NK ;
+fun etumainen_NK : NK ;
+fun etumaksu_NK : NK ;
+fun etumatka_NK : NK ;
+fun etumerkinta'_NK : NK ;
+fun etumerkki_NK : NK ;
+fun etumies_NK : NK ;
+fun etunimi_NK : NK ;
+fun etunoja_NK : NK ;
+fun etuna'ko'kohta_NK : NK ;
+fun etuoikeus_NK : NK ;
+fun etuoikeusja'rjestys_NK : NK ;
+fun etuoikeutettu_NK : NK ;
+fun etuosa_NK : NK ;
+fun etuovi_NK : NK ;
+fun etupainoinen_NK : NK ;
+fun etupainoisuus_NK : NK ;
+fun etupenkki_NK : NK ;
+fun etupermanto_NK : NK ;
+fun etupiiri_NK : NK ;
+fun etupisto_NK : NK ;
+fun etupuoli_NK : NK ;
+fun etupuskuri_NK : NK ;
+fun etupyo'ra'_NK : NK ;
+fun etupyo'ra'veto_NK : NK ;
+fun etupyo'ra'vetoinen_NK : NK ;
+fun etupa'a'_NK : NK ;
+fun eturauhanen_NK : NK ;
+fun eturengas_NK : NK ;
+fun etureuna_NK : NK ;
+fun eturiita_NK : NK ;
+fun eturintama_NK : NK ;
+fun eturivi_NK : NK ;
+fun eturuoka_NK : NK ;
+fun eturuumis_NK : NK ;
+fun eturyhma'_NK : NK ;
+fun etuselka'_NK : NK ;
+fun etuseteli_NK : NK ;
+fun etusija_NK : NK ;
+fun etusijainen_NK : NK ;
+fun etusijaisuus_NK : NK ;
+fun etusivu_NK : NK ;
+fun etusormi_NK : NK ;
+fun etusuora_NK : NK ;
+fun etusuunta_NK : NK ;
+fun etuvaaka_NK : NK ;
+fun etuvahvistin_NK : NK ;
+fun etuvalo_NK : NK ;
+fun etuvartio_NK : NK ;
+fun etuvartioasema_NK : NK ;
+fun etuvarustus_NK : NK ;
+fun etuvastakohta_NK : NK ;
+fun etuveto_NK : NK ;
+fun etuvetoinen_NK : NK ;
+fun eta'isyysmittari_NK : NK ;
+fun eta'isyystaulu_NK : NK ;
+fun eukalyptuskaramelli_NK : NK ;
+fun eukalyptuspastilli_NK : NK ;
+fun eukalyptuso'ljy_NK : NK ;
+fun evankeliumikirja_NK : NK ;
+fun evankeliumiteksti_NK : NK ;
+fun everstiluutnantti_NK : NK ;
+fun evoluutioteoria_NK : NK ;
+fun eva'jalkainen_NK : NK ;
+fun eva'skori_NK : NK ;
+fun eva'sleipa'_NK : NK ;
+fun eva'sreppu_NK : NK ;
+fun eva'sruoka_NK : NK ;
+fun factoringyhtio'_NK : NK ;
+fun fajanssiastia_NK : NK ;
+fun faksimileja'ljenno's_NK : NK ;
+fun faktorianalyysi_NK : NK ;
+fun fallossymboli_NK : NK ;
+fun falsettia'a'ni_NK : NK ;
+fun fanklubi_NK : NK ;
+fun faraokoira_NK : NK ;
+fun farmariauto_NK : NK ;
+fun farmarihame_NK : NK ;
+--? fun farmarihousut_NK : NK ;
+fun farmarikangas_NK : NK ;
+fun farmarikankainen_NK : NK ;
+fun farmaripusero_NK : NK ;
+fun farmaritakki_NK : NK ;
+fun farmarivaate_NK : NK ;
+fun fasaanikukko_NK : NK ;
+fun fasistipuolue_NK : NK ;
+fun feminiinimuoto_NK : NK ;
+fun feminiinisuku_NK : NK ;
+fun feminiinisukuinen_NK : NK ;
+fun fenolihartsi_NK : NK ;
+fun fenolimuovi_NK : NK ;
+fun ferriittiantenni_NK : NK ;
+fun fetajuusto_NK : NK ;
+fun filamenttilanka_NK : NK ;
+fun fileerausveitsi_NK : NK ;
+fun fileointiveitsi_NK : NK ;
+fun filigraanityo'_NK : NK ;
+fun filmihullu_NK : NK ;
+fun filmikamera_NK : NK ;
+fun filminauha_NK : NK ;
+fun filmina'yttelija'_NK : NK ;
+fun filmiprojektori_NK : NK ;
+fun filmirulla_NK : NK ;
+fun filmita'hti_NK : NK ;
+fun filtterisavuke_NK : NK ;
+fun finaalijoukkue_NK : NK ;
+fun finaalilause_NK : NK ;
+fun finaaliottelu_NK : NK ;
+fun finaalirakenne_NK : NK ;
+fun finninaamainen_NK : NK ;
+fun finnitauti_NK : NK ;
+fun firaabelityo'_NK : NK ;
+fun fissiopommi_NK : NK ;
+fun fissioreaktio_NK : NK ;
+fun fissioreaktori_NK : NK ;
+fun flaamilainen_NK : NK ;
+fun flamingokukka_NK : NK ;
+fun flanellipaita_NK : NK ;
+fun floppityyli_NK : NK ;
+fun florettimiekkailu_NK : NK ;
+fun flunssala'a'ke_NK : NK ;
+fun fluorihoito_NK : NK ;
+fun fluoriloiste_NK : NK ;
+fun fluoripitoinen_NK : NK ;
+fun fluoritabletti_NK : NK ;
+fun fluoriyhdiste_NK : NK ;
+fun flyygelitorvi_NK : NK ;
+fun fokkamasto_NK : NK ;
+fun folklaulaja_NK : NK ;
+fun folkmusiikki_NK : NK ;
+fun fondyyhaarukka_NK : NK ;
+fun fondyypata_NK : NK ;
+fun fortepiano_NK : NK ;
+fun fortunapeli_NK : NK ;
+fun fosfaattilannoite_NK : NK ;
+fun fosforilannoite_NK : NK ;
+fun fosforiloiste_NK : NK ;
+fun fosforimyrkytys_NK : NK ;
+fun fotomontaasi_NK : NK ;
+fun fotorealismi_NK : NK ;
+fun fotosynteesi_NK : NK ;
+fun frakkipaita_NK : NK ;
+fun fraktaalikuvio_NK : NK ;
+fun frankeerauskone_NK : NK ;
+fun frankeerausleima_NK : NK ;
+fun fransiskaanimunkki_NK : NK ;
+fun freelancena'yttelija'_NK : NK ;
+fun freelancetoimittaja_NK : NK ;
+fun freelancetyo'_NK : NK ;
+fun frekvenssimodulaatio_NK : NK ;
+fun froteekangas_NK : NK ;
+fun froteepyyhe_NK : NK ;
+fun funktiolaskin_NK : NK ;
+fun funktionaali_NK : NK ;
+fun futismatsi_NK : NK ;
+fun futuurikauppa_NK : NK ;
+fun futuuripo'rssi_NK : NK ;
+fun fuusiopommi_NK : NK ;
+fun fuusioreaktio_NK : NK ;
+fun fuusioreaktori_NK : NK ;
+fun gaalailta_NK : NK ;
+fun gallupkysely_NK : NK ;
+fun galluptutkimus_NK : NK ;
+fun gammasa'de_NK : NK ;
+fun gammasa'teily_NK : NK ;
+fun gammayo'kko'nen_NK : NK ;
+fun gangsteriliiga_NK : NK ;
+fun geenikartta_NK : NK ;
+fun geenimutaatio_NK : NK ;
+fun geenipankki_NK : NK ;
+fun geeniperinto'_NK : NK ;
+fun geeniruoka_NK : NK ;
+fun geenitekniikka_NK : NK ;
+fun geenivirhe_NK : NK ;
+fun gentlemannisopimus_NK : NK ;
+fun glo'gijuhla_NK : NK ;
+fun glo'gitilaisuus_NK : NK ;
+fun gneissigraniitti_NK : NK ;
+--? fun golfhousut_NK : NK ;
+fun golfmaila_NK : NK ;
+fun golfpallo_NK : NK ;
+fun goottilainen_NK : NK ;
+fun gorgonzolajuusto_NK : NK ;
+fun gospelmusiikki_NK : NK ;
+fun goudajuusto_NK : NK ;
+fun gourmetravintola_NK : NK ;
+fun gourmetruoka_NK : NK ;
+fun gradutyo'_NK : NK ;
+fun granaattiomena_NK : NK ;
+fun granaattiomenapuu_NK : NK ;
+fun graniittigneissi_NK : NK ;
+fun graniittipatsas_NK : NK ;
+fun gratiinikastike_NK : NK ;
+fun gratinointikastike_NK : NK ;
+fun gravisaksentti_NK : NK ;
+fun gravitaatiokentta'_NK : NK ;
+fun gravitaatiovoima_NK : NK ;
+fun greippimehu_NK : NK ;
+fun grillauskastike_NK : NK ;
+fun grillausmauste_NK : NK ;
+--? fun grillauspihdit_NK : NK ;
+fun grillihiili_NK : NK ;
+fun grillikastike_NK : NK ;
+fun grillikyljys_NK : NK ;
+fun grillikylki_NK : NK ;
+fun grillimakkara_NK : NK ;
+fun grillimauste_NK : NK ;
+--? fun grillipihdit_NK : NK ;
+fun grillipihvi_NK : NK ;
+fun grilliravintola_NK : NK ;
+fun grilliruoka_NK : NK ;
+fun grilliuuni_NK : NK ;
+fun grogilasi_NK : NK ;
+fun gruy_rejuusto_NK : NK ;
+fun grynderitoiminta_NK : NK ;
+fun guassiva'ri_NK : NK ;
+fun gurmeeravintola_NK : NK ;
+fun gurmeeruoka_NK : NK ;
+fun haaksirikko_NK : NK ;
+fun haalari_NK : NK ;
+fun haamuasiakas_NK : NK ;
+fun haamukuva_NK : NK ;
+fun haamumaileri_NK : NK ;
+fun haamumaili_NK : NK ;
+fun haamunelio'_NK : NK ;
+fun haamupelastus_NK : NK ;
+fun haamupotilas_NK : NK ;
+fun haamuraja_NK : NK ;
+fun haamusa'rky_NK : NK ;
+fun haamutorjunta_NK : NK ;
+fun haapalastu_NK : NK ;
+fun haaparousku_NK : NK ;
+fun haapasieni_NK : NK ;
+fun haara_asento_NK : NK ;
+fun haarahyppy_NK : NK ;
+fun haaraistunta_NK : NK ;
+fun haaraisuus_NK : NK ;
+fun haarakas_NK : NK ;
+fun haarakiila_NK : NK ;
+fun haarakonttori_NK : NK ;
+fun haaraka'ynti_NK : NK ;
+fun haaraliike_NK : NK ;
+fun haaramyyma'la'_NK : NK ;
+fun haaranasta_NK : NK ;
+fun haaraniitti_NK : NK ;
+fun haaranousu_NK : NK ;
+fun haaraosasto_NK : NK ;
+fun haarapa'a'sky_NK : NK ;
+fun haaraseisonta_NK : NK ;
+fun haarasuoninen_NK : NK ;
+--? fun haaremihousut_NK : NK ;
+fun haarikka_NK : NK ;
+fun haarikko_NK : NK ;
+fun haarukka_NK : NK ;
+fun haarukkapala_NK : NK ;
+fun haarukkapurje_NK : NK ;
+fun haarukkaristi_NK : NK ;
+fun haarukkatrukki_NK : NK ;
+fun haarukkavaunu_NK : NK ;
+fun haaskaela'in_NK : NK ;
+fun haaskalintu_NK : NK ;
+fun haastattelulausunto_NK : NK ;
+fun haastattelututkimus_NK : NK ;
+fun haastehakemus_NK : NK ;
+fun haastemies_NK : NK ;
+fun haasteottelu_NK : NK ;
+fun haastetodistus_NK : NK ;
+fun haavakuume_NK : NK ;
+fun haavalaastari_NK : NK ;
+fun haavamuodostuma_NK : NK ;
+fun haavaside_NK : NK ;
+fun haavatartunta_NK : NK ;
+fun haavatulehdus_NK : NK ;
+fun haavatyyny_NK : NK ;
+fun haavekuva_NK : NK ;
+fun haavemaailma_NK : NK ;
+fun haaveri_NK : NK ;
+fun haavikalastus_NK : NK ;
+fun hahmoinen_NK : NK ;
+fun hahmopsykologia_NK : NK ;
+fun hahtuvapilvi_NK : NK ;
+fun haikala_NK : NK ;
+fun haikara_NK : NK ;
+fun hailakka_NK : NK ;
+fun hailiverkko_NK : NK ;
+fun haimaneste_NK : NK ;
+fun haimasyo'pa'_NK : NK ;
+fun haimatulehdus_NK : NK ;
+fun haipakka_NK : NK ;
+fun haisukalkki_NK : NK ;
+fun haisunoki_NK : NK ;
+fun haisuna'a'ta'_NK : NK ;
+fun haitariliike_NK : NK ;
+fun haitariovi_NK : NK ;
+fun haittapuoli_NK : NK ;
+fun haittatekija'_NK : NK ;
+fun haittavaikutus_NK : NK ;
+fun haittavero_NK : NK ;
+fun haivene_NK : NK ;
+fun hajaannustila_NK : NK ;
+fun haja_asutus_NK : NK ;
+fun hajariviveikkaus_NK : NK ;
+fun hajuaine_NK : NK ;
+fun hajuaisti_NK : NK ;
+fun hajuaistimus_NK : NK ;
+fun hajuhaitta_NK : NK ;
+fun hajuheina'_NK : NK ;
+fun hajuhermo_NK : NK ;
+fun hajuherne_NK : NK ;
+fun hajulukko_NK : NK ;
+fun hajupihka_NK : NK ;
+fun hajupommi_NK : NK ;
+fun hajurako_NK : NK ;
+fun hajusaippua_NK : NK ;
+fun hajusuola_NK : NK ;
+fun hajuvesi_NK : NK ;
+fun hajuvesipullo_NK : NK ;
+fun hajuvirhe_NK : NK ;
+fun hakaliitos_NK : NK ;
+fun hakalukko_NK : NK ;
+fun hakamaa_NK : NK ;
+fun hakamies_NK : NK ;
+fun hakaneula_NK : NK ;
+fun hakarauta_NK : NK ;
+fun hakaristi_NK : NK ;
+fun hakaristilippu_NK : NK ;
+fun hakasauma_NK : NK ;
+fun hakasulje_NK : NK ;
+fun hakasulku_NK : NK ;
+fun hakasulkumerkki_NK : NK ;
+fun hakaviivain_NK : NK ;
+fun hakaviivoitin_NK : NK ;
+fun hakela'mmitys_NK : NK ;
+fun hakepuu_NK : NK ;
+fun hakkuualue_NK : NK ;
+fun hakkuuarvo_NK : NK ;
+fun hakkuuika'_NK : NK ;
+fun hakkuuja'te_NK : NK ;
+fun hakkuukausi_NK : NK ;
+fun hakkuukertyma'_NK : NK ;
+fun hakkuukielto_NK : NK ;
+fun hakkuukone_NK : NK ;
+fun hakkuukypsyys_NK : NK ;
+fun hakkuukypsa'_NK : NK ;
+fun hakkuupo'lkky_NK : NK ;
+fun hakkuusuunnite_NK : NK ;
+fun hakkuuta'hde_NK : NK ;
+fun hakokirves_NK : NK ;
+fun hakuammunta_NK : NK ;
+fun hakukelpoinen_NK : NK ;
+fun hakukelpoisuus_NK : NK ;
+fun hakukielto_NK : NK ;
+fun hakulaite_NK : NK ;
+fun hakuohjelma_NK : NK ;
+fun hakusaarto_NK : NK ;
+fun hakusana_NK : NK ;
+fun hakuteos_NK : NK ;
+fun hakuvalo_NK : NK ;
+fun haljasmokka_NK : NK ;
+fun haljasnahka_NK : NK ;
+fun halkaisukirves_NK : NK ;
+fun halkaisusaha_NK : NK ;
+fun halkileikkaus_NK : NK ;
+fun halkinainen_NK : NK ;
+fun halkokuorma_NK : NK ;
+fun halkokuutio_NK : NK ;
+fun halkokuutiometri_NK : NK ;
+fun halkometsa'_NK : NK ;
+fun halkomotti_NK : NK ;
+fun halkopino_NK : NK ;
+fun halkosaha_NK : NK ;
+fun halkotarha_NK : NK ;
+fun halkovaja_NK : NK ;
+fun hallamittari_NK : NK ;
+fun hallavahinko_NK : NK ;
+fun hallavuosi_NK : NK ;
+fun hallienna'tys_NK : NK ;
+fun hallikauppa_NK : NK ;
+fun hallikauppias_NK : NK ;
+fun hallikausi_NK : NK ;
+fun hallikilpailu_NK : NK ;
+fun hallikisa_NK : NK ;
+fun hallimestaruus_NK : NK ;
+fun hallimestaruuskilpailu_NK : NK ;
+fun hallintalaite_NK : NK ;
+fun hallintaoikeus_NK : NK ;
+fun hallintoalamainen_NK : NK ;
+fun hallintoalue_NK : NK ;
+fun hallintoasia_NK : NK ;
+fun hallintoelin_NK : NK ;
+fun hallintojohtaja_NK : NK ;
+fun hallintokieli_NK : NK ;
+fun hallintokoneisto_NK : NK ;
+fun hallintokunta_NK : NK ;
+fun hallintomenettely_NK : NK ;
+fun hallintoneuvos_NK : NK ;
+fun hallintoneuvosto_NK : NK ;
+fun hallintoporras_NK : NK ;
+fun hallintopa'a'to's_NK : NK ;
+fun hallintorakennus_NK : NK ;
+fun hallintosihteeri_NK : NK ;
+fun hallintotiede_NK : NK ;
+fun hallintotoimi_NK : NK ;
+fun hallintovalitus_NK : NK ;
+fun hallintovalta_NK : NK ;
+fun hallintovirasto_NK : NK ;
+fun hallitsijahuone_NK : NK ;
+fun hallitsijanimi_NK : NK ;
+fun hallitsijapari_NK : NK ;
+fun hallitsijasuku_NK : NK ;
+fun hallitsijavalta_NK : NK ;
+fun hallitsijavaltainen_NK : NK ;
+fun hallituskaupunki_NK : NK ;
+fun hallituskausi_NK : NK ;
+fun hallituskokoomus_NK : NK ;
+fun hallituskriisi_NK : NK ;
+fun hallituskumppani_NK : NK ;
+fun hallituskysymys_NK : NK ;
+fun hallitusmuoto_NK : NK ;
+fun hallitusneuvos_NK : NK ;
+fun hallitusohjelma_NK : NK ;
+fun hallituspaikka_NK : NK ;
+fun hallituspohja_NK : NK ;
+fun hallituspula_NK : NK ;
+fun hallituspuolue_NK : NK ;
+fun hallitussihteeri_NK : NK ;
+fun hallitustapa_NK : NK ;
+fun hallitusvalta_NK : NK ;
+fun hallitusvastuu_NK : NK ;
+fun hallussapito_NK : NK ;
+fun hallussapitolupa_NK : NK ;
+fun halogeenilamppu_NK : NK ;
+fun halogeenivalo_NK : NK ;
+fun halpahalli_NK : NK ;
+fun halpahintainen_NK : NK ;
+fun halpakorkoinen_NK : NK ;
+fun halpamainen_AK : AK ;
+fun halpamyynti_NK : NK ;
+fun halpatuonti_NK : NK ;
+fun haltijakortti_NK : NK ;
+fun haltijaosake_NK : NK ;
+fun haltijapaperi_NK : NK ;
+fun haltuunotto_NK : NK ;
+fun halvauskohtaus_NK : NK ;
+fun hamekangas_NK : NK ;
+fun hamevalta_NK : NK ;
+fun hameva'ki_NK : NK ;
+fun hammasaihe_NK : NK ;
+fun hammasemali_NK : NK ;
+fun hammaseroosio_NK : NK ;
+fun hammasharja_NK : NK ;
+fun hammashermo_NK : NK ;
+fun hammashoitaja_NK : NK ;
+fun hammashoito_NK : NK ;
+fun hammashoitola_NK : NK ;
+fun hammashuoltaja_NK : NK ;
+fun hammashuolto_NK : NK ;
+fun hammasjako_NK : NK ;
+fun hammaskiille_NK : NK ;
+fun hammaskipu_NK : NK ;
+fun hammaskirurgi_NK : NK ;
+fun hammaskirurgia_NK : NK ;
+fun hammaskivi_NK : NK ;
+fun hammasklinikka_NK : NK ;
+fun hammaskulta_NK : NK ;
+fun hammaskuoppa_NK : NK ;
+fun hammaslaitainen_NK : NK ;
+fun hammaslanka_NK : NK ;
+fun hammasliitos_NK : NK ;
+fun hammasloma_NK : NK ;
+fun hammasluu_NK : NK ;
+fun hammasla'a'ka'ri_NK : NK ;
+fun hammasma'ta'_NK : NK ;
+fun hammaspeikko_NK : NK ;
+fun hammaspeite_NK : NK ;
+--? fun hammaspihdit_NK : NK ;
+fun hammaspora_NK : NK ;
+fun hammasproteesi_NK : NK ;
+fun hammaspuhdiste_NK : NK ;
+fun hammaspyo'ra'_NK : NK ;
+fun hammaspyo'ra'sto'_NK : NK ;
+fun hammasrata_NK : NK ;
+fun hammasratas_NK : NK ;
+fun hammasrivi_NK : NK ;
+fun hammassairaus_NK : NK ;
+fun hammassementti_NK : NK ;
+fun hammassuojus_NK : NK ;
+fun hammassa'rky_NK : NK ;
+fun hammastahna_NK : NK ;
+fun hammastahnaputki_NK : NK ;
+fun hammastanko_NK : NK ;
+fun hammastarha_NK : NK ;
+fun hammasteinen_NK : NK ;
+fun hammasteknikko_NK : NK ;
+fun hammastikku_NK : NK ;
+fun hammasvalas_NK : NK ;
+fun hammasvalli_NK : NK ;
+fun hammasva'li_NK : NK ;
+fun hamppuko'ysi_NK : NK ;
+fun hamppuo'ljy_NK : NK ;
+--? fun hanaolut_NK : NK ;
+fun hanhenmaksapasteija_NK : NK ;
+fun hanhikukko_NK : NK ;
+fun hanhipaisti_NK : NK ;
+fun hankahaarainen_NK : NK ;
+fun hankalakulkuinen_NK : NK ;
+fun hankalaka'ytto'inen_NK : NK ;
+fun hankalato'inen_NK : NK ;
+fun hankapari_NK : NK ;
+fun hankasilmu_NK : NK ;
+fun hankatappi_NK : NK ;
+fun hankatuuli_NK : NK ;
+fun hankausjauhe_NK : NK ;
+fun hankausneste_NK : NK ;
+fun hankauspinta_NK : NK ;
+fun hankaussa'hko'_NK : NK ;
+fun hankavastainen_NK : NK ;
+fun hankevienti_NK : NK ;
+fun hankikanto_NK : NK ;
+fun hankikeli_NK : NK ;
+fun hankikylvo'_NK : NK ;
+fun hankintahakkuu_NK : NK ;
+fun hankintahinta_NK : NK ;
+fun hankintakauppa_NK : NK ;
+fun hankintaluettelo_NK : NK ;
+fun hankintasopimus_NK : NK ;
+fun hankoaura_NK : NK ;
+fun hansakauppias_NK : NK ;
+fun hansakaupunki_NK : NK ;
+fun hansaliitto_NK : NK ;
+fun hansikaslokero_NK : NK ;
+fun hanttihomma_NK : NK ;
+fun hanttikortti_NK : NK ;
+fun hanttimies_NK : NK ;
+fun hanttityo'_NK : NK ;
+fun hapanleipa'taikina_NK : NK ;
+fun hapetusluku_NK : NK ;
+fun happihoito_NK : NK ;
+fun happihyppy_NK : NK ;
+fun happiko'yha'_NK : NK ;
+fun happilaite_NK : NK ;
+fun happinaamari_NK : NK ;
+fun happipakoinen_NK : NK ;
+fun happipitoinen_NK : NK ;
+fun happipitoisuus_NK : NK ;
+fun happipullo_NK : NK ;
+fun happiradikaali_NK : NK ;
+fun happirikas_NK : NK ;
+fun happiteltta_NK : NK ;
+fun happivajaus_NK : NK ;
+fun happivelka_NK : NK ;
+fun happivesi_NK : NK ;
+fun happohyo'kka'ys_NK : NK ;
+fun happomarja_NK : NK ;
+fun happopitoinen_NK : NK ;
+fun happopitoisuus_NK : NK ;
+fun happosade_NK : NK ;
+fun happoveikko_NK : NK ;
+fun harakiri_NK : NK ;
+fun harakkamylly_NK : NK ;
+fun haravakone_NK : NK ;
+fun haravakuljetin_NK : NK ;
+fun haravapo'yhin_NK : NK ;
+fun haravointi_NK : NK ;
+fun harhaanjohtava_NK : NK ;
+fun harhahavainto_NK : NK ;
+fun harhaheitto_NK : NK ;
+fun harhaisku_NK : NK ;
+fun harhakuva_NK : NK ;
+fun harhakuvitelma_NK : NK ;
+fun harhaka'sitys_NK : NK ;
+fun harhalaukaus_NK : NK ;
+fun harhaluoti_NK : NK ;
+fun harhaluulo_NK : NK ;
+fun harhamielisyys_NK : NK ;
+fun harhana'ky_NK : NK ;
+fun harhaoppi_NK : NK ;
+fun harhaoppinen_NK : NK ;
+fun harhapolku_NK : NK ;
+fun harhapa'a'telma'_NK : NK ;
+fun harharetki_NK : NK ;
+fun harhasoitto_NK : NK ;
+fun harhasyo'tto'_NK : NK ;
+fun harjahirsi_NK : NK ;
+fun harjakatto_NK : NK ;
+fun harjakattoinen_NK : NK ;
+fun harjakiharrin_NK : NK ;
+fun harjakorkeus_NK : NK ;
+fun harjakuusi_NK : NK ;
+fun harjalauta_NK : NK ;
+fun harjalintu_NK : NK ;
+fun harjalista_NK : NK ;
+fun harjaneilikka_NK : NK ;
+fun harjasivellin_NK : NK ;
+fun harjastukka_NK : NK ;
+fun harjastukkainen_NK : NK ;
+fun harjatalo_NK : NK ;
+fun harjateltta_NK : NK ;
+fun harjatera's_NK : NK ;
+fun harjatiili_NK : NK ;
+fun harjoittelijavaihto_NK : NK ;
+fun harjoittelukoulu_NK : NK ;
+fun harjoittelupaikka_NK : NK ;
+fun harjoittelutila_NK : NK ;
+fun harjoitusaine_NK : NK ;
+fun harjoitusajo_NK : NK ;
+fun harjoituskausi_NK : NK ;
+fun harjoituskirja_NK : NK ;
+fun harjoituskurssi_NK : NK ;
+fun harjoitusleiri_NK : NK ;
+fun harjoituslenkki_NK : NK ;
+fun harjoitusmatka_NK : NK ;
+fun harjoitusohjelma_NK : NK ;
+fun harjoitusottelu_NK : NK ;
+fun harjoituspatruuna_NK : NK ;
+fun harjoitustehta'va'_NK : NK ;
+fun harjoitustunti_NK : NK ;
+fun harjoitustyo'_NK : NK ;
+fun harjukuoppa_NK : NK ;
+fun harjuslauta_NK : NK ;
+fun harjusora_NK : NK ;
+fun harkintakyky_NK : NK ;
+fun harkintavalta_NK : NK ;
+fun harkintaverotus_NK : NK ;
+fun harkkoperustus_NK : NK ;
+fun harkkorauta_NK : NK ;
+fun harkkotalo_NK : NK ;
+fun harlekiinikuvioinen_NK : NK ;
+fun harmaahiuksinen_NK : NK ;
+fun harmaakivikirkko_NK : NK ;
+fun harmaapartainen_NK : NK ;
+fun harmaapa'inen_NK : NK ;
+fun harmaapa'a'tikka_NK : NK ;
+fun harmaasilma'inen_NK : NK ;
+fun harmaatukkainen_NK : NK ;
+fun harmonikkamusiikki_NK : NK ;
+fun harmonisointi_NK : NK ;
+fun harppauskerros_NK : NK ;
+fun harppuunatykki_NK : NK ;
+fun harppuunavene_NK : NK ;
+fun harrashenkinen_NK : NK ;
+fun harrastajapiiri_NK : NK ;
+fun harrastajataiteilija_NK : NK ;
+fun harrastajateatteri_NK : NK ;
+fun harrastelehti_NK : NK ;
+fun harrastelijamainen_NK : NK ;
+fun harrastuspiiri_NK : NK ;
+fun harrastustyo'_NK : NK ;
+fun harsintahakkuu_NK : NK ;
+fun harsokangas_NK : NK ;
+fun harsokate_NK : NK ;
+fun harsokorento_NK : NK ;
+fun harsokukka_NK : NK ;
+fun harsopilvi_NK : NK ;
+fun hartaustilaisuus_NK : NK ;
+fun hartiahuivi_NK : NK ;
+fun hartiakappale_NK : NK ;
+fun hartialihas_NK : NK ;
+fun hartialiina_NK : NK ;
+fun hartiapankki_NK : NK ;
+fun hartiapankkirakentaja_NK : NK ;
+fun hartiapunos_NK : NK ;
+fun hartiasuojus_NK : NK ;
+fun hartiaviitta_NK : NK ;
+fun hartiavoima_NK : NK ;
+fun hartsihappo_NK : NK ;
+fun hartsilakka_NK : NK ;
+fun hartsiliima_NK : NK ;
+fun hartsisaippua_NK : NK ;
+fun hartsio'ljy_NK : NK ;
+fun harusko'ysi_NK : NK ;
+fun haruspurje_NK : NK ;
+fun harvahampainen_NK : NK ;
+fun harvalukuinen_NK : NK ;
+fun harvaoksainen_NK : NK ;
+fun harvapuheinen_NK : NK ;
+fun harvasanainen_NK : NK ;
+fun harvasyinen_NK : NK ;
+fun harvennushakkuu_NK : NK ;
+fun hattuhylly_NK : NK ;
+fun hattupa'inen_NK : NK ;
+fun hatturasia_NK : NK ;
+fun hattureuhka_NK : NK ;
+fun hattutemppu_NK : NK ;
+fun haudehoito_NK : NK ;
+fun haudekattila_NK : NK ;
+fun haudeliuos_NK : NK ;
+fun haudeneste_NK : NK ;
+fun hauderehu_NK : NK ;
+fun haudesidos_NK : NK ;
+fun haudevesi_NK : NK ;
+fun hauislihas_NK : NK ;
+fun haukkametsa'stys_NK : NK ;
+fun haukkapala_NK : NK ;
+fun haukunta_NK : NK ;
+fun haulikkoammunta_NK : NK ;
+fun haulikkokilpailu_NK : NK ;
+fun haulikkorihla_NK : NK ;
+fun haulipanos_NK : NK ;
+fun haulipatruuna_NK : NK ;
+fun haulipiippu_NK : NK ;
+fun haupitsi_NK : NK ;
+fun hautaholvi_NK : NK ;
+fun hautakammio_NK : NK ;
+fun hautakappeli_NK : NK ;
+fun hautakirjoitus_NK : NK ;
+fun hautakivi_NK : NK ;
+fun hautakumpu_NK : NK ;
+fun hautakynttila'_NK : NK ;
+fun hautalaatta_NK : NK ;
+fun hautalo'ydo's_NK : NK ;
+fun hautalo'yto'_NK : NK ;
+fun hautapaikka_NK : NK ;
+fun hautarauha_NK : NK ;
+fun hautaristi_NK : NK ;
+fun hautaus_NK : NK ;
+fun hautausapu_NK : NK ;
+fun hautausavustus_NK : NK ;
+fun hautausmaa_NK : NK ;
+fun hautaustoimisto_NK : NK ;
+fun hautauurna_NK : NK ;
+fun hautavajoama_NK : NK ;
+fun hautaveistos_NK : NK ;
+fun hautuma_NK : NK ;
+fun havaintoasema_NK : NK ;
+fun havaintoesitys_NK : NK ;
+fun havaintoharha_NK : NK ;
+fun havaintokyky_NK : NK ;
+fun havaintokynnys_NK : NK ;
+fun havaintomenetelma'_NK : NK ;
+fun havaintopsykologia_NK : NK ;
+fun havaintovirhe_NK : NK ;
+fun havaintova'line_NK : NK ;
+fun havuko'ynno's_NK : NK ;
+fun havulaavu_NK : NK ;
+fun havumaja_NK : NK ;
+fun havumetsa'_NK : NK ;
+fun havumetsa'vyo'hyke_NK : NK ;
+fun havupuinen_NK : NK ;
+fun havupuu_NK : NK ;
+fun havupuuvaltainen_NK : NK ;
+fun havusammal_NK : NK ;
+fun havuseppele_NK : NK ;
+fun heavyrock_NK : NK ;
+fun hedekasvi_NK : NK ;
+fun hedekukka_NK : NK ;
+fun hedelehti_NK : NK ;
+fun hedelma'happo_NK : NK ;
+fun hedelma'kakku_NK : NK ;
+fun hedelma'kasvi_NK : NK ;
+fun hedelma'laji_NK : NK ;
+fun hedelma'liha_NK : NK ;
+fun hedelma'llisyysika'_NK : NK ;
+fun hedelma'llisyyskultti_NK : NK ;
+fun hedelma'malto_NK : NK ;
+fun hedelma'marmeladi_NK : NK ;
+fun hedelma'mehu_NK : NK ;
+fun hedelma'puu_NK : NK ;
+fun hedelma'puutarha_NK : NK ;
+fun hedelma'salaatti_NK : NK ;
+fun hedelma'sato_NK : NK ;
+fun hedelma'sokeri_NK : NK ;
+fun hedelma'suola_NK : NK ;
+fun hedelma'sa'ilyke_NK : NK ;
+fun hedelma'tarha_NK : NK ;
+fun hedelma'tee_NK : NK ;
+fun hedelma'veitsi_NK : NK ;
+fun hedelma'viina_NK : NK ;
+fun hedelma'viini_NK : NK ;
+fun hedelma'viljelma'_NK : NK ;
+fun hedelma'viljelys_NK : NK ;
+fun hedelmo'ityskykyinen_NK : NK ;
+fun hedenorkko_NK : NK ;
+fun hedeta'hka'_NK : NK ;
+fun hehkudiodi_NK : NK ;
+fun hehkulamppu_NK : NK ;
+fun hehkulanka_NK : NK ;
+fun hehkusytytys_NK : NK ;
+fun hehkutulppa_NK : NK ;
+fun hehkuviini_NK : NK ;
+fun hehtaarihalli_NK : NK ;
+fun hehtaarisato_NK : NK ;
+fun hehtolitra_NK : NK ;
+fun heijastekipu_NK : NK ;
+fun heijastinkalvo_NK : NK ;
+fun heijastinnauha_NK : NK ;
+fun heijastintarra_NK : NK ;
+fun heijastuskulma_NK : NK ;
+fun heijastuskyky_NK : NK ;
+fun heijastuspinta_NK : NK ;
+fun heijastusvaikutus_NK : NK ;
+fun heikkohermoinen_NK : NK ;
+fun heikkohermoisuus_NK : NK ;
+fun heikkokasvuinen_NK : NK ;
+fun heikkokuuloinen_NK : NK ;
+fun heikkolaatuinen_NK : NK ;
+fun heikkolaatuisuus_NK : NK ;
+fun heikkolahjainen_NK : NK ;
+fun heikkolahjaisuus_NK : NK ;
+fun heikkoluonteinen_NK : NK ;
+fun heikkomielisyys_NK : NK ;
+fun heikkona'ko'inen_NK : NK ;
+fun heikkona'ko'isyys_NK : NK ;
+fun heikkopa'inen_NK : NK ;
+fun heikkotahtoinen_NK : NK ;
+fun heikkotasoinen_NK : NK ;
+fun heikkotehoinen_NK : NK ;
+fun heikkouskoinen_NK : NK ;
+fun heilahduskulma_NK : NK ;
+fun heilahduslaajuus_NK : NK ;
+fun heilahduslyo'nti_NK : NK ;
+fun heilakka_NK : NK ;
+fun heilurikello_NK : NK ;
+fun heiluriliike_NK : NK ;
+fun heiluriliikenne_NK : NK ;
+fun heiluriovi_NK : NK ;
+fun heimoaate_NK : NK ;
+fun heimoinen_NK : NK ;
+fun heimojuhla_NK : NK ;
+fun heimolainen_NK : NK ;
+fun heimopa'a'llikko'_NK : NK ;
+fun heimoside_NK : NK ;
+fun heimosota_NK : NK ;
+fun heimosoturi_NK : NK ;
+fun heimoveli_NK : NK ;
+fun heina'aro_NK : NK ;
+fun heina'hanko_NK : NK ;
+fun heina'harava_NK : NK ;
+fun heina'hattu_NK : NK ;
+fun heina'ha'kki_NK : NK ;
+fun heina'ha'nta'_NK : NK ;
+fun heina'kasvi_NK : NK ;
+fun heina'kenka'_NK : NK ;
+fun heina'kuinen_NK : NK ;
+fun heina'kuorma_NK : NK ;
+fun heina'kuu_NK : NK ;
+fun heina'laji_NK : NK ;
+fun heina'lato_NK : NK ;
+fun heina'maa_NK : NK ;
+fun heina'mies_NK : NK ;
+fun heina'niitty_NK : NK ;
+fun heina'nkorjuukone_NK : NK ;
+fun heina'nuha_NK : NK ;
+fun heina'paali_NK : NK ;
+fun heina'pelto_NK : NK ;
+fun heina'pouta_NK : NK ;
+fun heina'sato_NK : NK ;
+fun heina'seiva's_NK : NK ;
+fun heina'sirkka_NK : NK ;
+fun heina'sorsa_NK : NK ;
+fun heina'suova_NK : NK ;
+fun heina'tyo'_NK : NK ;
+fun heina'vuosi_NK : NK ;
+fun heina'va'ki_NK : NK ;
+fun heisimato_NK : NK ;
+fun heitteilleja'tto'_NK : NK ;
+fun heitteillepano_NK : NK ;
+fun heittoase_NK : NK ;
+fun heittoasento_NK : NK ;
+fun heittoistuin_NK : NK ;
+fun heittokalastus_NK : NK ;
+fun heittokeha'_NK : NK ;
+fun heittoka'si_NK : NK ;
+fun heittolaji_NK : NK ;
+fun heittolaukaus_NK : NK ;
+fun heittoliike_NK : NK ;
+fun heittoliina_NK : NK ;
+fun heittomerkki_NK : NK ;
+fun heittopeli_NK : NK ;
+fun heittopussi_NK : NK ;
+fun heittouistelu_NK : NK ;
+fun heittouistin_NK : NK ;
+fun heittouistinkalastus_NK : NK ;
+fun heittovapa_NK : NK ;
+fun heittovuoro_NK : NK ;
+fun heittoympyra'_NK : NK ;
+fun helapa'inen_NK : NK ;
+fun helapa'a'_NK : NK ;
+fun helatorstai_NK : NK ;
+fun helavalkea_NK : NK ;
+fun helea'ihoinen_NK : NK ;
+fun helea'sointinen_NK : NK ;
+fun heliborkorko_NK : NK ;
+fun helikopterikentta'_NK : NK ;
+fun helikopterikuljetus_NK : NK ;
+fun helikopterilenta'ja'_NK : NK ;
+fun hellahuone_NK : NK ;
+fun hellakoukku_NK : NK ;
+fun hellapoliisi_NK : NK ;
+fun hellapuu_NK : NK ;
+fun helleaalto_NK : NK ;
+fun helleasu_NK : NK ;
+fun hellehattu_NK : NK ;
+fun hellekausi_NK : NK ;
+fun hellekypa'ra'_NK : NK ;
+fun hellelukema_NK : NK ;
+fun hellemekko_NK : NK ;
+fun hellenisti_NK : NK ;
+fun hellepa'iva'_NK : NK ;
+fun hellesa'a'_NK : NK ;
+fun hellevaate_NK : NK ;
+fun helluntailainen_NK : NK ;
+fun helluntailiike_NK : NK ;
+fun helluntaipa'iva'_NK : NK ;
+fun helluntaiysta'va'_NK : NK ;
+fun hella'ka'tinen_AK : AK ;
+fun hella'ka'tisyys_NK : NK ;
+fun hella'luonteinen_NK : NK ;
+fun hella'luontoinen_NK : NK ;
+fun hella'syda'minen_NK : NK ;
+fun hella'varainen_AK : AK ;
+fun helmapelti_NK : NK ;
+fun helmasynti_NK : NK ;
+fun helmihyasintti_NK : NK ;
+fun helmikirjonta_NK : NK ;
+fun helmikoriste_NK : NK ;
+fun helmikuinen_NK : NK ;
+fun helmikuu_NK : NK ;
+fun helmilanka_NK : NK ;
+fun helmililja_NK : NK ;
+fun helminauha_NK : NK ;
+fun helmineule_NK : NK ;
+fun helmipensas_NK : NK ;
+fun helmipisto_NK : NK ;
+fun helmipo'llo'_NK : NK ;
+fun helmisimpukka_NK : NK ;
+fun helmitaulu_NK : NK ;
+fun helokkio'ljy_NK : NK ;
+fun helokkio'ljykapseli_NK : NK ;
+fun helppohintainen_NK : NK ;
+fun helppohoitoinen_NK : NK ;
+fun helppohoitoisuus_NK : NK ;
+fun helppokulkuinen_NK : NK ;
+fun helppoka'ytto'inen_NK : NK ;
+fun helppoliukoinen_NK : NK ;
+fun helppolukuinen_NK : NK ;
+fun helppotajuinen_NK : NK ;
+fun helppotajuisuus_NK : NK ;
+fun helppoto'inen_NK : NK ;
+fun helttasieni_NK : NK ;
+fun hengenpelastusmitali_NK : NK ;
+fun hengityshalvaus_NK : NK ;
+fun hengitysharjoitus_NK : NK ;
+fun hengitysilma_NK : NK ;
+fun hengityskatkos_NK : NK ;
+fun hengityskeskus_NK : NK ;
+fun hengityskone_NK : NK ;
+fun hengityslaite_NK : NK ;
+fun hengityslihas_NK : NK ;
+fun hengitysliike_NK : NK ;
+fun hengityssuojain_NK : NK ;
+fun hengitystaajuus_NK : NK ;
+fun hengitystie_NK : NK ;
+fun hengitystieallergia_NK : NK ;
+fun hengitysvaikeus_NK : NK ;
+fun hengitysa'a'ni_NK : NK ;
+fun henga'hdystauko_NK : NK ;
+fun henkikaarti_NK : NK ;
+fun henkikaste_NK : NK ;
+fun henkikirjoitus_NK : NK ;
+fun henkikulta_NK : NK ;
+fun henkila'a'ka'ri_NK : NK ;
+fun henkilo'auto_NK : NK ;
+fun henkilo'autoliikenne_NK : NK ;
+fun henkilo'hahmo_NK : NK ;
+fun henkilo'hakemisto_NK : NK ;
+fun henkilo'haku_NK : NK ;
+fun henkilo'hakulaite_NK : NK ;
+fun henkilo'hissi_NK : NK ;
+fun henkilo'historia_NK : NK ;
+fun henkilo'juna_NK : NK ;
+fun henkilo'ja'sen_NK : NK ;
+fun henkilo'kemia_NK : NK ;
+fun henkilo'kohtainen_AK : AK ;
+fun henkilo'kohtaisuus_NK : NK ;
+fun henkilo'kortti_NK : NK ;
+fun henkilo'kuljetus_NK : NK ;
+fun henkilo'kultti_NK : NK ;
+fun henkilo'kunta_NK : NK ;
+fun henkilo'kuntaetu_NK : NK ;
+fun henkilo'kuntalehti_NK : NK ;
+fun henkilo'kuva_NK : NK ;
+fun henkilo'kuvaus_NK : NK ;
+fun henkilo'kysymys_NK : NK ;
+fun henkilo'liikenne_NK : NK ;
+fun henkilo'llisyystodistus_NK : NK ;
+fun henkilo'luotto_NK : NK ;
+fun henkilo'nostin_NK : NK ;
+fun henkilo'oikeus_NK : NK ;
+fun henkilo'palvonta_NK : NK ;
+fun henkilo'puhelu_NK : NK ;
+fun henkilo'rekisteri_NK : NK ;
+fun henkilo'sto'anti_NK : NK ;
+fun henkilo'sto'hallinto_NK : NK ;
+fun henkilo'sto'koulutus_NK : NK ;
+fun henkilo'sto'politiikka_NK : NK ;
+fun henkilo'sto'pa'a'llikko'_NK : NK ;
+fun henkilo'sto'rahasto_NK : NK ;
+fun henkilo'sto'ravintola_NK : NK ;
+fun henkilo'sto'ruokala_NK : NK ;
+fun henkilo'sto'yritta'ja'_NK : NK ;
+fun henkilo'sto'yritys_NK : NK ;
+fun henkilo'suhde_NK : NK ;
+fun henkilo'takaus_NK : NK ;
+fun henkilo'todistus_NK : NK ;
+fun henkilo'tunniste_NK : NK ;
+fun henkilo'tunnus_NK : NK ;
+fun henkilo'tyyppi_NK : NK ;
+fun henkilo'vaaka_NK : NK ;
+fun henkilo'vahinko_NK : NK ;
+fun henkilo'vaihdos_NK : NK ;
+fun henkilo'vakuus_NK : NK ;
+fun henkilo'vakuutus_NK : NK ;
+fun henkilo'valinta_NK : NK ;
+fun henkilo'vaunu_NK : NK ;
+fun henkimaailma_NK : NK ;
+fun henkiolento_NK : NK ;
+fun henkiparannus_NK : NK ;
+fun henkiparantaja_NK : NK ;
+fun henkireika'_NK : NK ;
+fun henkiriepu_NK : NK ;
+fun henkirikollinen_NK : NK ;
+fun henkirikos_NK : NK ;
+fun henkitiede_NK : NK ;
+fun henkitorvi_NK : NK ;
+fun henkivakuutus_NK : NK ;
+fun henkivakuutuskirja_NK : NK ;
+fun henkivakuutusmaksu_NK : NK ;
+fun henkivartija_NK : NK ;
+fun henkivartiosto_NK : NK ;
+fun henkiysta'va'_NK : NK ;
+fun hennapensas_NK : NK ;
+fun hentoja'seninen_NK : NK ;
+fun hentokasvuinen_NK : NK ;
+fun hentomielisyys_NK : NK ;
+fun hepokatti_NK : NK ;
+fun heprealainen_NK : NK ;
+fun herajuusto_NK : NK ;
+fun herakalvo_NK : NK ;
+fun herefordrotu_NK : NK ;
+fun herjakirjoitus_NK : NK ;
+fun herjasana_NK : NK ;
+fun herkkukauppa_NK : NK ;
+fun herkkupala_NK : NK ;
+fun herkkuperuna_NK : NK ;
+fun herkkuruoka_NK : NK ;
+fun herkkusieni_NK : NK ;
+fun herkkusienikastike_NK : NK ;
+fun herkkusienikeitto_NK : NK ;
+fun herkkusuu_NK : NK ;
+fun herkkutatti_NK : NK ;
+fun herkka'hermoinen_NK : NK ;
+fun herkka'hermoisuus_NK : NK ;
+fun herkka'hipia'inen_NK : NK ;
+fun herkka'ihoinen_NK : NK ;
+fun herkka'ilmeinen_NK : NK ;
+fun herkka'kuuloinen_NK : NK ;
+fun herkka'liikkeinen_NK : NK ;
+fun herkka'nahkaisuus_NK : NK ;
+fun herkka'tunteinen_NK : NK ;
+fun herkka'tunteisuus_NK : NK ;
+fun herkka'tuntoinen_NK : NK ;
+fun herkka'uninen_NK : NK ;
+fun herkka'uskoinen_NK : NK ;
+fun herkka'vireinen_NK : NK ;
+fun hermoheikko_NK : NK ;
+fun hermoherkka'_NK : NK ;
+fun hermoimpulssi_NK : NK ;
+fun hermoja'nnitys_NK : NK ;
+fun hermokaasu_NK : NK ;
+fun hermokeskus_NK : NK ;
+fun hermokimppu_NK : NK ;
+fun hermokirurgia_NK : NK ;
+fun hermokoe_NK : NK ;
+fun hermokudos_NK : NK ;
+fun hermolepo_NK : NK ;
+fun hermoliitos_NK : NK ;
+fun hermomyrkky_NK : NK ;
+fun hermopaine_NK : NK ;
+fun hermopunos_NK : NK ;
+fun hermorasitus_NK : NK ;
+fun hermorata_NK : NK ;
+fun hermoratahieronta_NK : NK ;
+fun hermoraunio_NK : NK ;
+fun hermoromahdus_NK : NK ;
+fun hermosairaus_NK : NK ;
+fun hermosolmu_NK : NK ;
+fun hermosolu_NK : NK ;
+fun hermosota_NK : NK ;
+fun hermosyy_NK : NK ;
+fun hermosa'rky_NK : NK ;
+fun hermotauti_NK : NK ;
+fun hermotautioppi_NK : NK ;
+fun hermotulehdus_NK : NK ;
+fun hermotuppi_NK : NK ;
+fun hermoa'rsyke_NK : NK ;
+fun hernekasvi_NK : NK ;
+fun hernekeitto_NK : NK ;
+fun hernekeppi_NK : NK ;
+fun hernepelto_NK : NK ;
+fun hernepenkki_NK : NK ;
+fun hernepensas_NK : NK ;
+fun hernerokka_NK : NK ;
+fun hernesimpukka_NK : NK ;
+fun hernesoppa_NK : NK ;
+fun herneviljelma'_NK : NK ;
+fun hidasjuoksuinen_NK : NK ;
+fun hidasja'rkinen_NK : NK ;
+fun hidaskasvuinen_NK : NK ;
+fun hidaskulkuinen_NK : NK ;
+fun hidaska'yntinen_NK : NK ;
+fun hidasliikkeinen_NK : NK ;
+fun hidaslukuinen_NK : NK ;
+fun hidaspuheinen_NK : NK ;
+fun hidasteinen_NK : NK ;
+fun hidastempoinen_NK : NK ;
+fun hidastuskaista_NK : NK ;
+fun hidastuslakko_NK : NK ;
+fun hidasa'lyinen_NK : NK ;
+fun hiekkaharju_NK : NK ;
+fun hiekkajyva'_NK : NK ;
+fun hiekkajyva'nen_NK : NK ;
+fun hiekkakakku_NK : NK ;
+fun hiekkakasa_NK : NK ;
+fun hiekkakello_NK : NK ;
+fun hiekkakerros_NK : NK ;
+fun hiekkakerrostuma_NK : NK ;
+fun hiekkakinos_NK : NK ;
+fun hiekkakivi_NK : NK ;
+fun hiekkakuoppa_NK : NK ;
+fun hiekkaka'yta'va'_NK : NK ;
+fun hiekkalaatikko_NK : NK ;
+fun hiekkamaa_NK : NK ;
+fun hiekkamulta_NK : NK ;
+fun hiekkamyrsky_NK : NK ;
+fun hiekkanummi_NK : NK ;
+fun hiekkanurmi_NK : NK ;
+fun hiekkapaperi_NK : NK ;
+fun hiekkapera'inen_NK : NK ;
+fun hiekkapesu_NK : NK ;
+fun hiekkapitoinen_NK : NK ;
+fun hiekkapohja_NK : NK ;
+fun hiekkapohjainen_NK : NK ;
+fun hiekkapuhallin_NK : NK ;
+fun hiekkapuhallus_NK : NK ;
+fun hiekkarae_NK : NK ;
+fun hiekkaranta_NK : NK ;
+fun hiekkarantainen_NK : NK ;
+fun hiekkasa'kki_NK : NK ;
+fun hiekkasa'rkka'_NK : NK ;
+fun hiekkato'rma'_NK : NK ;
+fun hiekoitus_NK : NK ;
+fun hienohipia'inen_NK : NK ;
+fun hienojakoinen_NK : NK ;
+fun hienojyva'inen_NK : NK ;
+fun hienolaatuinen_NK : NK ;
+fun hienoluonteinen_NK : NK ;
+fun hienomekaaninen_NK : NK ;
+fun hienopesuaine_NK : NK ;
+fun hienopiirteinen_NK : NK ;
+fun hienorakeinen_NK : NK ;
+fun hienostelu_NK : NK ;
+fun hienosto_NK : NK ;
+fun hienostonainen_NK : NK ;
+fun hienosyinen_NK : NK ;
+fun hienosa'ikeinen_NK : NK ;
+fun hienotekoinen_NK : NK ;
+fun hienotunteinen_AK : AK ;
+fun hienotunteisuus_NK : NK ;
+fun hienovarainen_AK : AK ;
+fun hienovaraisuus_NK : NK ;
+fun hienovireinen_NK : NK ;
+fun hierakka_NK : NK ;
+fun hieroglyfikirjoitus_NK : NK ;
+fun hierontahoito_NK : NK ;
+fun hiesumaa_NK : NK ;
+fun hiesusavi_NK : NK ;
+fun hietamaa_NK : NK ;
+fun hietapistia'inen_NK : NK ;
+fun hietasavi_NK : NK ;
+fun hifilaite_NK : NK ;
+fun hihalauta_NK : NK ;
+fun hihalyo'nti_NK : NK ;
+fun hihamerkki_NK : NK ;
+fun hihnakenka'_NK : NK ;
+fun hihnakuljetin_NK : NK ;
+fun hihnapyo'ra'_NK : NK ;
+fun hihnava'litys_NK : NK ;
+fun hiihtoasu_NK : NK ;
+fun hiihtohissi_NK : NK ;
+--? fun hiihtohousut_NK : NK ;
+fun hiihtojoukkue_NK : NK ;
+fun hiihtokausi_NK : NK ;
+fun hiihtokeli_NK : NK ;
+fun hiihtokenka'_NK : NK ;
+fun hiihtokeskus_NK : NK ;
+fun hiihtokilpailu_NK : NK ;
+fun hiihtokisa_NK : NK ;
+fun hiihtokoulu_NK : NK ;
+fun hiihtokuningas_NK : NK ;
+fun hiihtoka'sine_NK : NK ;
+fun hiihtolatu_NK : NK ;
+fun hiihtoleiri_NK : NK ;
+fun hiihtolenkki_NK : NK ;
+fun hiihtoloma_NK : NK ;
+fun hiihtomaasto_NK : NK ;
+fun hiihtomaja_NK : NK ;
+fun hiihtopartio_NK : NK ;
+fun hiihtopuku_NK : NK ;
+fun hiihtoretki_NK : NK ;
+fun hiihtostadion_NK : NK ;
+fun hiihtosuunnistus_NK : NK ;
+fun hiihtourheilu_NK : NK ;
+fun hiihtovaellus_NK : NK ;
+fun hiiletyskarkaisu_NK : NK ;
+fun hiiliatomi_NK : NK ;
+fun hiilihanko_NK : NK ;
+fun hiilihappo_NK : NK ;
+fun hiilihappoinen_NK : NK ;
+fun hiilihappoja'a'_NK : NK ;
+fun hiilihappolannoitus_NK : NK ;
+fun hiilihapposammutin_NK : NK ;
+fun hiilihydraatti_NK : NK ;
+fun hiilikaivos_NK : NK ;
+fun hiilikala_NK : NK ;
+fun hiilikausi_NK : NK ;
+fun hiiliketju_NK : NK ;
+fun hiilikoukku_NK : NK ;
+fun hiilikuitu_NK : NK ;
+fun hiilikuituinen_NK : NK ;
+fun hiilikuitumaila_NK : NK ;
+fun hiilikuitusauva_NK : NK ;
+fun hiilikuituvapa_NK : NK ;
+fun hiililaiva_NK : NK ;
+fun hiilila'mmitys_NK : NK ;
+fun hiilimurska_NK : NK ;
+fun hiilimurskarata_NK : NK ;
+fun hiilimusta_NK : NK ;
+fun hiilipaperi_NK : NK ;
+fun hiilipiirros_NK : NK ;
+fun hiilipiirustus_NK : NK ;
+fun hiilipitoinen_NK : NK ;
+fun hiilipitoisuus_NK : NK ;
+fun hiilipo'ly_NK : NK ;
+fun hiilisatama_NK : NK ;
+fun hiilisilakka_NK : NK ;
+fun hiilitabletti_NK : NK ;
+fun hiilitera's_NK : NK ;
+fun hiilivety_NK : NK ;
+fun hiilivoimala_NK : NK ;
+fun hiilloskala_NK : NK ;
+fun hiippakunta_NK : NK ;
+fun hiippakuntakokous_NK : NK ;
+fun hiippalakki_NK : NK ;
+fun hiippala'ppa'_NK : NK ;
+fun hiirihaukka_NK : NK ;
+fun hiiripo'llo'_NK : NK ;
+fun hiivaleipa'_NK : NK ;
+fun hiivaleipa'jauho_NK : NK ;
+fun hiivasieni_NK : NK ;
+fun hiivasienitulehdus_NK : NK ;
+fun hikihelmi_NK : NK ;
+fun hikihuokonen_NK : NK ;
+fun hikijumppa_NK : NK ;
+fun hikikarpalo_NK : NK ;
+fun hikilappu_NK : NK ;
+fun hikiliina_NK : NK ;
+fun hikinauha_NK : NK ;
+fun hikipinko_NK : NK ;
+fun hikipisara_NK : NK ;
+fun hikirauhanen_NK : NK ;
+fun hikitahra_NK : NK ;
+fun hillomarja_NK : NK ;
+fun hillomunkki_NK : NK ;
+fun hillopurkki_NK : NK ;
+fun hillosipuli_NK : NK ;
+fun hillota'ytteinen_NK : NK ;
+fun hilloto'lkki_NK : NK ;
+fun hilsesampoo_NK : NK ;
+fun himmea'kiiltoinen_NK : NK ;
+fun himmea'pintainen_NK : NK ;
+fun himomurha_NK : NK ;
+fun himomurhaaja_NK : NK ;
+fun himopolttaja_NK : NK ;
+fun himoruoka_NK : NK ;
+fun himourheilija_NK : NK ;
+fun hinausauto_NK : NK ;
+fun hinausko'ysi_NK : NK ;
+fun hinausvaijeri_NK : NK ;
+fun hinduismi_NK : NK ;
+fun hindulainen_NK : NK ;
+fun hinkuyska'_NK : NK ;
+fun hinnanalennuskorvaus_NK : NK ;
+fun hintaero_NK : NK ;
+fun hintahaarukka_NK : NK ;
+fun hintahaitari_NK : NK ;
+fun hintaindeksi_NK : NK ;
+fun hintajousto_NK : NK ;
+fun hintakartelli_NK : NK ;
+fun hintakehitys_NK : NK ;
+fun hintakilpailu_NK : NK ;
+fun hintalappu_NK : NK ;
+fun hintaluettelo_NK : NK ;
+fun hintaluokka_NK : NK ;
+fun hintapolitiikka_NK : NK ;
+fun hintapyynto'_NK : NK ;
+fun hintasota_NK : NK ;
+fun hintasulku_NK : NK ;
+fun hintatakuu_NK : NK ;
+fun hintatarkastaja_NK : NK ;
+fun hintataso_NK : NK ;
+fun hintatieto_NK : NK ;
+fun hintatietoinen_NK : NK ;
+fun hintatietoisuus_NK : NK ;
+fun hintatuki_NK : NK ;
+fun hintavaihtelu_NK : NK ;
+fun hintavalvonta_NK : NK ;
+fun hintavertailu_NK : NK ;
+fun hintavyo'ry_NK : NK ;
+fun hintela'kasvuinen_NK : NK ;
+fun hiontamuoto_NK : NK ;
+fun hipaisukytkin_NK : NK ;
+fun hipaisuna'ppa'in_NK : NK ;
+fun hiphoppari_NK : NK ;
+fun hipia'inen_NK : NK ;
+fun hippaleikki_NK : NK ;
+fun hippiliike_NK : NK ;
+fun hippimuoti_NK : NK ;
+fun hiprakka_NK : NK ;
+fun hirmuhallitsija_NK : NK ;
+fun hirmuhallitus_NK : NK ;
+fun hirmuhauska_NK : NK ;
+fun hirmukunto_NK : NK ;
+fun hirmulisko_NK : NK ;
+fun hirmumyrsky_NK : NK ;
+fun hirmusuuri_NK : NK ;
+fun hirmuteko_NK : NK ;
+fun hirmutulos_NK : NK ;
+fun hirmutyo'_NK : NK ;
+fun hirmuvalta_NK : NK ;
+fun hirmuvaltainen_NK : NK ;
+fun hirmuvaltias_NK : NK ;
+fun hirsiaitta_NK : NK ;
+fun hirsihuvila_NK : NK ;
+fun hirsikehikko_NK : NK ;
+fun hirsikerros_NK : NK ;
+fun hirsikerta_NK : NK ;
+fun hirsimo'kki_NK : NK ;
+fun hirsipaneeli_NK : NK ;
+fun hirsipuu_NK : NK ;
+fun hirsirakennus_NK : NK ;
+fun hirsisalvos_NK : NK ;
+fun hirttokuolema_NK : NK ;
+fun hirttoko'ysi_NK : NK ;
+fun hirttonuora_NK : NK ;
+fun hirttosilmukka_NK : NK ;
+fun hirvenkaatolupa_NK : NK ;
+fun hirvensarvisaniainen_NK : NK ;
+fun hirvensarvisuola_NK : NK ;
+fun hirvestyskausi_NK : NK ;
+fun hirviaita_NK : NK ;
+fun hirviammunta_NK : NK ;
+fun hirviela'in_NK : NK ;
+fun hirviha'rka'_NK : NK ;
+fun hirvijahti_NK : NK ;
+fun hirvikanta_NK : NK ;
+fun hirvikiva'a'ri_NK : NK ;
+fun hirvikoira_NK : NK ;
+fun hirvikolari_NK : NK ;
+fun hirvika'rpa'nen_NK : NK ;
+fun hirvilehma'_NK : NK ;
+fun hirvilupa_NK : NK ;
+fun hirvipaisti_NK : NK ;
+fun hirvipassi_NK : NK ;
+fun hirvipeili_NK : NK ;
+fun hirviporukka_NK : NK ;
+fun hirvivaara_NK : NK ;
+fun hirvivahinko_NK : NK ;
+fun hirvivahinkovakuutus_NK : NK ;
+fun hissikoneisto_NK : NK ;
+fun hissikori_NK : NK ;
+fun hissikortti_NK : NK ;
+fun hissikuilu_NK : NK ;
+fun hissivalaisin_NK : NK ;
+fun historiakirja_NK : NK ;
+fun historiamaalaus_NK : NK ;
+fun historiateos_NK : NK ;
+fun historiatiede_NK : NK ;
+fun hitsauskipina'_NK : NK ;
+fun hitsauskypa'ra'_NK : NK ;
+fun hitsausliekki_NK : NK ;
+fun hitsausmaski_NK : NK ;
+fun hitsauspilli_NK : NK ;
+fun hitsauspoltin_NK : NK ;
+fun hitsauspuikko_NK : NK ;
+fun hitsaussauma_NK : NK ;
+fun hitsaussuojain_NK : NK ;
+fun hittolainen_NK : NK ;
+fun hitulautanen_NK : NK ;
+fun hiuesavi_NK : NK ;
+fun hiukapala_NK : NK ;
+fun hiushalkeama_NK : NK ;
+fun hiusharja_NK : NK ;
+fun hiushoide_NK : NK ;
+fun hiushuokoinen_NK : NK ;
+fun hiushuokoisuus_NK : NK ;
+fun hiushygrometri_NK : NK ;
+fun hiuskarva_NK : NK ;
+fun hiuskiehkura_NK : NK ;
+fun hiuskiinne_NK : NK ;
+fun hiuskuontalo_NK : NK ;
+fun hiuslaite_NK : NK ;
+fun hiuslakka_NK : NK ;
+fun hiuslaskos_NK : NK ;
+fun hiuslisa'ke_NK : NK ;
+fun hiusmarto_NK : NK ;
+fun hiusmuoti_NK : NK ;
+fun hiusmuotoilija_NK : NK ;
+fun hiusmuotoilu_NK : NK ;
+fun hiusnauha_NK : NK ;
+fun hiusneula_NK : NK ;
+fun hiuspalmikko_NK : NK ;
+fun hiuspilli_NK : NK ;
+fun hiuspinni_NK : NK ;
+fun hiuspohja_NK : NK ;
+fun hiusputki_NK : NK ;
+fun hiusraja_NK : NK ;
+fun hiusravinne_NK : NK ;
+fun hiusristikko_NK : NK ;
+fun hiussairaus_NK : NK ;
+fun hiussaniainen_NK : NK ;
+fun hiussolki_NK : NK ;
+fun hiussuoni_NK : NK ;
+fun hiussuonisto_NK : NK ;
+fun hiussuortuva_NK : NK ;
+fun hiussykero'_NK : NK ;
+fun hiustukko_NK : NK ;
+fun hiustukku_NK : NK ;
+fun hiustupsu_NK : NK ;
+fun hiusto'yhto'_NK : NK ;
+fun hiusverkko_NK : NK ;
+fun hiusvesi_NK : NK ;
+fun hiusviiva_NK : NK ;
+fun hiusvoide_NK : NK ;
+fun hiusva'ri_NK : NK ;
+fun hiuso'ljy_NK : NK ;
+fun hohkakivi_NK : NK ;
+fun hohtodiodi_NK : NK ;
+fun hoikkarunkoinen_NK : NK ;
+fun hoikkasa'a'rinen_NK : NK ;
+fun hoikkavartinen_NK : NK ;
+fun hoitoaine_NK : NK ;
+fun hoitohenkilo'sto'_NK : NK ;
+fun hoitoinen_NK : NK ;
+fun hoitokoti_NK : NK ;
+fun hoitokunta_NK : NK ;
+fun hoitola_NK : NK ;
+fun hoitolaitos_NK : NK ;
+fun hoitolapsi_NK : NK ;
+fun hoitolisa'_NK : NK ;
+fun hoitomaksu_NK : NK ;
+fun hoitomenetelma'_NK : NK ;
+fun hoitomyo'ntyvyys_NK : NK ;
+fun hoitopaikka_NK : NK ;
+fun hoitopa'iva'_NK : NK ;
+fun hoitopo'yta'_NK : NK ;
+fun hoitorengas_NK : NK ;
+fun hoitotiede_NK : NK ;
+fun hoitotoimenpide_NK : NK ;
+fun hoitotuki_NK : NK ;
+fun hoitotutkimus_NK : NK ;
+fun hoitotyo'_NK : NK ;
+fun hoitovahinko_NK : NK ;
+fun hoitovapaa_NK : NK ;
+fun hoitovaste_NK : NK ;
+fun hoitovastike_NK : NK ;
+fun hoitovirhe_NK : NK ;
+fun hoitovoide_NK : NK ;
+fun hoivakieli_NK : NK ;
+fun hoivakoti_NK : NK ;
+fun hoivapotilas_NK : NK ;
+fun hoivatyo'_NK : NK ;
+fun hoivayritys_NK : NK ;
+fun hokkuspokkustemppu_NK : NK ;
+fun holhoojahallitus_NK : NK ;
+fun holhousvaltio_NK : NK ;
+fun holkkihiha_NK : NK ;
+fun holkkinasta_NK : NK ;
+fun hollantilainen_NK : NK ;
+fun hollitupa_NK : NK ;
+fun holvikaari_NK : NK ;
+fun holvikaarinen_NK : NK ;
+fun holvikatto_NK : NK ;
+fun holvikattoinen_NK : NK ;
+fun holvika'yta'va'_NK : NK ;
+fun holvimaalaus_NK : NK ;
+fun holvirakenne_NK : NK ;
+fun homejuusto_NK : NK ;
+fun homekoira_NK : NK ;
+fun homekorva_NK : NK ;
+fun homepilkku_NK : NK ;
+fun homepo'ly_NK : NK ;
+fun homepo'lykeuhko_NK : NK ;
+fun homerihmasto_NK : NK ;
+fun homesieni_NK : NK ;
+fun hometahra_NK : NK ;
+fun hometalo_NK : NK ;
+fun homevaurio_NK : NK ;
+fun hommamies_NK : NK ;
+fun homoeroottinen_NK : NK ;
+fun homofobia_NK : NK ;
+fun homoliitto_NK : NK ;
+fun homopari_NK : NK ;
+fun honkalauta_NK : NK ;
+fun honkapuu_NK : NK ;
+fun hopeaesine_NK : NK ;
+fun hopeaharkko_NK : NK ;
+fun hopeahelainen_NK : NK ;
+fun hopeahiuksinen_NK : NK ;
+fun hopeahohde_NK : NK ;
+--? fun hopeaha'a't_NK : NK ;
+fun hopeajoukkue_NK : NK ;
+fun hopeakaivos_NK : NK ;
+fun hopeaketju_NK : NK ;
+fun hopeakettu_NK : NK ;
+fun hopeakoru_NK : NK ;
+fun hopeakuorinen_NK : NK ;
+fun hopeakuusi_NK : NK ;
+fun hopealanka_NK : NK ;
+fun hopealautanen_NK : NK ;
+fun hopealejeerinki_NK : NK ;
+fun hopealusikka_NK : NK ;
+fun hopeamaali_NK : NK ;
+fun hopeamalja_NK : NK ;
+fun hopeamalmi_NK : NK ;
+fun hopeamarkka_NK : NK ;
+fun hopeamitali_NK : NK ;
+fun hopeamitalimies_NK : NK ;
+fun hopeamitalinainen_NK : NK ;
+fun hopeamitalisti_NK : NK ;
+fun hopeaottelu_NK : NK ;
+fun hopeapaju_NK : NK ;
+fun hopeapaperi_NK : NK ;
+fun hopeapensas_NK : NK ;
+fun hopeapitoinen_NK : NK ;
+fun hopeapitoisuus_NK : NK ;
+fun hopeapokaali_NK : NK ;
+fun hopearaha_NK : NK ;
+fun hopeaseos_NK : NK ;
+fun hopeaseppa'_NK : NK ;
+fun hopeasolki_NK : NK ;
+fun hopeatee_NK : NK ;
+fun hopeateos_NK : NK ;
+fun hopeatera's_NK : NK ;
+fun hopeatyo'_NK : NK ;
+fun hopeavalmiste_NK : NK ;
+fun hopeayrtti_NK : NK ;
+fun horisontaalitaso_NK : NK ;
+fun horkkahyttynen_NK : NK ;
+fun horkkasa'a'ski_NK : NK ;
+fun hormiaukko_NK : NK ;
+fun hormonieritys_NK : NK ;
+fun hormonihoito_NK : NK ;
+fun hormoniha'irio'_NK : NK ;
+fun hormonikierukka_NK : NK ;
+fun hormonitesti_NK : NK ;
+fun hormonitoiminta_NK : NK ;
+fun hormonituotanto_NK : NK ;
+fun hormonivalmiste_NK : NK ;
+fun horoskooppimerkki_NK : NK ;
+fun horrostila_NK : NK ;
+fun horsmakasvi_NK : NK ;
+fun horsmakiita'ja'_NK : NK ;
+fun hotellihuone_NK : NK ;
+fun hotelliketju_NK : NK ;
+fun hotellikuolema_NK : NK ;
+fun hotellilasku_NK : NK ;
+fun hotellimajoitus_NK : NK ;
+fun hotellipoika_NK : NK ;
+fun hotelliravintola_NK : NK ;
+fun hotellisekki_NK : NK ;
+fun hotellivaraus_NK : NK ;
+fun houkkamainen_NK : NK ;
+fun houkutuskeino_NK : NK ;
+fun houkutuslintu_NK : NK ;
+fun houkutusa'a'ni_NK : NK ;
+fun hourekuva_NK : NK ;
+fun houretila_NK : NK ;
+fun hovietiketti_NK : NK ;
+fun hovihankkija_NK : NK ;
+fun hovikelpoinen_NK : NK ;
+fun hovimaalari_NK : NK ;
+fun hovimarsalkka_NK : NK ;
+fun hovimestari_NK : NK ;
+fun hovimies_NK : NK ;
+fun hovinainen_NK : NK ;
+fun hovinarri_NK : NK ;
+fun hovineiti_NK : NK ;
+fun hoviniiaus_NK : NK ;
+fun hovioikeus_NK : NK ;
+fun hoviva'ki_NK : NK ;
+fun huhtasieni_NK : NK ;
+fun huhukampanja_NK : NK ;
+fun huhumylly_NK : NK ;
+fun huhupuhe_NK : NK ;
+fun huijausyritys_NK : NK ;
+fun huilumainen_NK : NK ;
+fun huilua'a'ni_NK : NK ;
+fun huilua'a'nikerta_NK : NK ;
+fun huimapa'inen_AK : AK ;
+fun huimauskohtaus_NK : NK ;
+fun huippuarvo_NK : NK ;
+fun huippuedullinen_NK : NK ;
+fun huippuhyva'_NK : NK ;
+fun huippuimuri_NK : NK ;
+fun huippuja'nnite_NK : NK ;
+fun huippuja'nnitta'va'_NK : NK ;
+fun huippukausi_NK : NK ;
+fun huippukokous_NK : NK ;
+fun huippukulma_NK : NK ;
+fun huippukunto_NK : NK ;
+fun huippukuormitus_NK : NK ;
+fun huippukurssi_NK : NK ;
+fun huippukyky_NK : NK ;
+fun huippulukema_NK : NK ;
+fun huippuluku_NK : NK ;
+fun huippuluokka_NK : NK ;
+fun huippumies_NK : NK ;
+fun huippumuodikas_NK : NK ;
+fun huippunimi_NK : NK ;
+fun huippunopeus_NK : NK ;
+fun huippupelaaja_NK : NK ;
+fun huippusaavutus_NK : NK ;
+fun huippusalainen_NK : NK ;
+fun huippusuoritus_NK : NK ;
+fun huippusa'vel_NK : NK ;
+fun huipputapaaminen_NK : NK ;
+fun huipputapaus_NK : NK ;
+fun huipputaso_NK : NK ;
+fun huipputeho_NK : NK ;
+fun huipputehokas_NK : NK ;
+fun huipputekija'_NK : NK ;
+fun huipputekniikka_NK : NK ;
+fun huipputulos_NK : NK ;
+fun huippututkimus_NK : NK ;
+fun huipputylsa'_NK : NK ;
+fun huippu_urheilija_NK : NK ;
+fun huippu_urheilu_NK : NK ;
+fun huippua'lyka's_NK : NK ;
+fun huitukka_NK : NK ;
+fun huivikaulus_NK : NK ;
+fun huivipa'inen_NK : NK ;
+fun hukkakaura_NK : NK ;
+fun hukkaka'ytto'_NK : NK ;
+fun hukkala'mpo'_NK : NK ;
+fun hukkanelio'_NK : NK ;
+fun hukkapala_NK : NK ;
+fun hukkaprosentti_NK : NK ;
+fun hukkapuu_NK : NK ;
+fun hukkareissu_NK : NK ;
+fun hukkatila_NK : NK ;
+fun hukkaa'a'ni_NK : NK ;
+fun hulatanssija_NK : NK ;
+fun hulatytto'_NK : NK ;
+fun hulivilipoika_NK : NK ;
+fun hulivilitytto'_NK : NK ;
+fun hulpioreuna_NK : NK ;
+fun hulttiomainen_NK : NK ;
+fun humalahakuinen_NK : NK ;
+fun humalajuominen_NK : NK ;
+fun humalasalko_NK : NK ;
+fun humalatila_NK : NK ;
+fun humuskerros_NK : NK ;
+fun humuspitoinen_NK : NK ;
+fun hunajakakku_NK : NK ;
+fun hunajakenno_NK : NK ;
+fun hunajalinko_NK : NK ;
+fun hunajameloni_NK : NK ;
+fun hunajapupu_NK : NK ;
+fun hunajapurkki_NK : NK ;
+fun hunajato'lkki_NK : NK ;
+fun hunajavesi_NK : NK ;
+fun huntupa'inen_NK : NK ;
+fun huokeahintainen_NK : NK ;
+fun huolimattomuusvirhe_NK : NK ;
+fun huolintaliike_NK : NK ;
+fun huoltoajo_NK : NK ;
+fun huoltoapu_NK : NK ;
+fun huoltoasema_NK : NK ;
+fun huoltoauto_NK : NK ;
+fun huoltohenkilo'sto'_NK : NK ;
+fun huoltokirja_NK : NK ;
+fun huoltokuljetus_NK : NK ;
+fun huoltoka'yta'va'_NK : NK ;
+fun huoltolaitos_NK : NK ;
+fun huoltoliike_NK : NK ;
+fun huoltomies_NK : NK ;
+fun huoltomoduuli_NK : NK ;
+fun huoltopa'a'llikko'_NK : NK ;
+fun huoltotila_NK : NK ;
+fun huoltotyo'_NK : NK ;
+fun huoltoupseeri_NK : NK ;
+fun huoltovapaa_NK : NK ;
+fun huoltova'li_NK : NK ;
+fun huoltoyhteys_NK : NK ;
+fun huomenaamu_NK : NK ;
+fun huomenilta_NK : NK ;
+fun huomeniltainen_NK : NK ;
+fun huomenlahja_NK : NK ;
+fun huomiokyky_NK : NK ;
+fun huomiokykyinen_NK : NK ;
+fun huoneakustiikka_NK : NK ;
+fun huonearalia_NK : NK ;
+fun huoneilma_NK : NK ;
+fun huoneistohotelli_NK : NK ;
+fun huoneja'rjestys_NK : NK ;
+fun huonekalu_NK : NK ;
+fun huonekalukangas_NK : NK ;
+fun huonekalukauppa_NK : NK ;
+fun huonekaluliike_NK : NK ;
+fun huonekalutehdas_NK : NK ;
+fun huonekaluteollisuus_NK : NK ;
+fun huonekalutyyli_NK : NK ;
+fun huonekasvi_NK : NK ;
+fun huonekorkeus_NK : NK ;
+fun huoneka'rpa'nen_NK : NK ;
+fun huonepalvelu_NK : NK ;
+fun huonepo'ly_NK : NK ;
+fun huoneteatteri_NK : NK ;
+fun huonetoveri_NK : NK ;
+fun huonokasvuinen_NK : NK ;
+fun huonokuntoinen_NK : NK ;
+fun huonokuuloinen_NK : NK ;
+fun huonolaatuinen_NK : NK ;
+fun huonomaineinen_NK : NK ;
+fun huonomuistinen_NK : NK ;
+fun huonomuistisuus_NK : NK ;
+fun huonona'ko'inen_NK : NK ;
+fun huonopalkkainen_NK : NK ;
+fun huonoryhtinen_NK : NK ;
+fun huonosatoinen_NK : NK ;
+fun huonotapainen_NK : NK ;
+fun huonotapaisuus_NK : NK ;
+fun huonotuloinen_NK : NK ;
+fun huonotuottoinen_NK : NK ;
+fun huonotuulinen_NK : NK ;
+fun huonotuulisuus_NK : NK ;
+fun huopahattu_NK : NK ;
+fun huopakangas_NK : NK ;
+fun huopakatto_NK : NK ;
+fun huopakyna'_NK : NK ;
+fun huopanaula_NK : NK ;
+fun huopasaapas_NK : NK ;
+fun huopatossu_NK : NK ;
+fun huopatossutehdas_NK : NK ;
+fun huopato'ppo'nen_NK : NK ;
+fun huorintekija'_NK : NK ;
+fun huorinteko_NK : NK ;
+fun huostaanotto_NK : NK ;
+fun hupijuttu_NK : NK ;
+fun hupimieli_NK : NK ;
+fun hupiohjelma_NK : NK ;
+fun hupiveikko_NK : NK ;
+fun hupputakki_NK : NK ;
+fun hurjaluonteinen_NK : NK ;
+fun hurjaluontoinen_NK : NK ;
+fun hurjapa'inen_NK : NK ;
+fun hurmahenki_NK : NK ;
+fun hurmahenkinen_NK : NK ;
+fun hurmahenkisyys_NK : NK ;
+fun hurmiotila_NK : NK ;
+fun hurmosliike_NK : NK ;
+fun hurmostila_NK : NK ;
+fun husaari_NK : NK ;
+fun huudahdussana_NK : NK ;
+fun huuhdevesi_NK : NK ;
+fun huuhteluaine_NK : NK ;
+fun huuhtelukirkaste_NK : NK ;
+fun huuhteluvesi_NK : NK ;
+fun huulihalkio_NK : NK ;
+fun huuliharppu_NK : NK ;
+fun huulikala_NK : NK ;
+fun huulikiille_NK : NK ;
+fun huulikukkainen_NK : NK ;
+fun huulipilli_NK : NK ;
+fun huulipuikko_NK : NK ;
+fun huulipuna_NK : NK ;
+fun huulirasva_NK : NK ;
+fun huulisyo'pa'_NK : NK ;
+fun huuliveikko_NK : NK ;
+fun huulivoide_NK : NK ;
+fun huumausaine_NK : NK ;
+fun huumaustila_NK : NK ;
+fun huumejengi_NK : NK ;
+fun huumekasvi_NK : NK ;
+fun huumekauppa_NK : NK ;
+fun huumekauppias_NK : NK ;
+fun huumeklinikka_NK : NK ;
+fun huumekoira_NK : NK ;
+fun huumekuriiri_NK : NK ;
+fun huumenuori_NK : NK ;
+fun huumepoliisi_NK : NK ;
+fun huumepotilas_NK : NK ;
+fun huumeriippuvuus_NK : NK ;
+fun huumerikos_NK : NK ;
+fun huumetesti_NK : NK ;
+fun huumorimies_NK : NK ;
+fun huurrelasta_NK : NK ;
+fun huurrepo'yta'_NK : NK ;
+fun huutoeta'isyys_NK : NK ;
+fun huutokauppa_NK : NK ;
+fun huutokauppakamari_NK : NK ;
+fun huutokauppakorko_NK : NK ;
+fun huutokauppatilaisuus_NK : NK ;
+fun huutokuoro_NK : NK ;
+fun huutolainen_NK : NK ;
+fun huutomatka_NK : NK ;
+fun huutomeri_NK : NK ;
+fun huutomerkki_NK : NK ;
+fun huutomyrsky_NK : NK ;
+fun huutosakki_NK : NK ;
+fun huutoa'a'nestys_NK : NK ;
+fun huviajelu_NK : NK ;
+fun huvialus_NK : NK ;
+fun huviela'ma'_NK : NK ;
+fun huvilamurto_NK : NK ;
+fun huvilapalsta_NK : NK ;
+fun huvilateltta_NK : NK ;
+fun huvilatontti_NK : NK ;
+fun huvilavakuutus_NK : NK ;
+fun huvimaja_NK : NK ;
+fun huvimatka_NK : NK ;
+fun huvimestari_NK : NK ;
+fun huvina'ytelma'_NK : NK ;
+fun huvipuisto_NK : NK ;
+fun huvipursi_NK : NK ;
+fun huviretki_NK : NK ;
+fun huviristeilija'_NK : NK ;
+fun huviristeily_NK : NK ;
+fun huviteollisuus_NK : NK ;
+fun huvitilaisuus_NK : NK ;
+fun huvittelupaikka_NK : NK ;
+fun huvitutti_NK : NK ;
+fun huvivene_NK : NK ;
+fun huviveneilija'_NK : NK ;
+fun huviveneily_NK : NK ;
+fun huvivero_NK : NK ;
+fun hydroksyyliryhma'_NK : NK ;
+fun hylkyaine_NK : NK ;
+fun hylkyaukko_NK : NK ;
+fun hylkyauto_NK : NK ;
+fun hylkytavara_NK : NK ;
+fun hylka'yspa'a'to's_NK : NK ;
+fun hylka'ystuomio_NK : NK ;
+fun hyllymetri_NK : NK ;
+fun hyllyopaste_NK : NK ;
+fun hyllypaperi_NK : NK ;
+fun hylsyavain_NK : NK ;
+fun hymykuoppa_NK : NK ;
+fun hymypoika_NK : NK ;
+fun hymypoikapatsas_NK : NK ;
+fun hymytytto'_NK : NK ;
+fun hymytytto'patsas_NK : NK ;
+fun hypoteekkilaina_NK : NK ;
+fun hypoteekkipankki_NK : NK ;
+fun hyppyasento_NK : NK ;
+fun hyppyaskel_NK : NK ;
+fun hyppyhaalari_NK : NK ;
+fun hyppyheitto_NK : NK ;
+fun hyppyha'nta'inen_NK : NK ;
+fun hyppyjalka_NK : NK ;
+fun hyppylaji_NK : NK ;
+fun hyppylauta_NK : NK ;
+fun hyppymatto_NK : NK ;
+fun hyppymyyra'_NK : NK ;
+fun hyppynaru_NK : NK ;
+fun hyppynuora_NK : NK ;
+fun hyppypaikka_NK : NK ;
+fun hyppyrima_NK : NK ;
+fun hyppyrima'ki_NK : NK ;
+fun hyppyrotta_NK : NK ;
+fun hyppyteline_NK : NK ;
+fun hyppytorni_NK : NK ;
+fun hyppytunti_NK : NK ;
+fun hyppytuomari_NK : NK ;
+fun hyppytyyny_NK : NK ;
+fun hyrra'kompassi_NK : NK ;
+fun hyrra'laite_NK : NK ;
+fun hyrra'liike_NK : NK ;
+fun hyttimatkustaja_NK : NK ;
+fun hyttipaikka_NK : NK ;
+fun hyvinvointi_NK : NK ;
+fun hyvinvointipalvelu_NK : NK ;
+fun hyvinvointivaltio_NK : NK ;
+fun hyvinvoipa_NK : NK ;
+fun hyvityslasku_NK : NK ;
+fun hyva'enteinen_NK : NK ;
+fun hyva'hermoinen_NK : NK ;
+fun hyva'kasvuinen_NK : NK ;
+fun hyva'kuntoinen_NK : NK ;
+fun hyva'kuuloinen_NK : NK ;
+fun hyva'laatuinen_NK : NK ;
+fun hyva'luonteinen_NK : NK ;
+fun hyva'luontoinen_NK : NK ;
+fun hyva'maineinen_NK : NK ;
+fun hyva'muistinen_NK : NK ;
+fun hyva'nahkainen_NK : NK ;
+fun hyva'nahkaisuus_NK : NK ;
+fun hyva'ntekeva'isyysjuhla_NK : NK ;
+fun hyva'ntekeva'isyyskonsertti_NK : NK ;
+fun hyva'na'ko'inen_NK : NK ;
+fun hyva'onninen_NK : NK ;
+fun hyva'oppinen_NK : NK ;
+fun hyva'osainen_NK : NK ;
+fun hyva'palkkainen_NK : NK ;
+fun hyva'pa'inen_NK : NK ;
+fun hyva'ryhtinen_NK : NK ;
+fun hyva'stija'tto'_NK : NK ;
+fun hyva'syda'minen_AK : AK ;
+fun hyva'syda'misyys_NK : NK ;
+fun hyva'tapainen_NK : NK ;
+fun hyva'tasoinen_NK : NK ;
+fun hyva'tuloinen_NK : NK ;
+fun hyva'tuoksuinen_NK : NK ;
+fun hyva'tuottoinen_NK : NK ;
+fun hyva'uskoinen_AK : AK ;
+fun hyva'uskoisuus_NK : NK ;
+fun hyydepato_NK : NK ;
+fun hyydytysaine_NK : NK ;
+fun hyo'dykevero_NK : NK ;
+fun hyo'dyllisyysmalli_NK : NK ;
+fun hyo'kka'ysalue_NK : NK ;
+fun hyo'kka'ysase_NK : NK ;
+fun hyo'kka'ysketju_NK : NK ;
+fun hyo'kka'yska'sky_NK : NK ;
+fun hyo'kka'ysohjus_NK : NK ;
+fun hyo'kka'yspeli_NK : NK ;
+fun hyo'kka'yssota_NK : NK ;
+fun hyo'kka'ysuhka_NK : NK ;
+fun hyo'kka'ysvaunu_NK : NK ;
+fun hyo'kka'a'ja'pelaaja_NK : NK ;
+fun hyo'kyaalto_NK : NK ;
+fun hyo'tyela'in_NK : NK ;
+fun hyo'tyisa'_NK : NK ;
+fun hyo'tykasvi_NK : NK ;
+fun hyo'tykasvuinen_NK : NK ;
+fun hyo'tykuorma_NK : NK ;
+fun hyo'tyka'ytto'_NK : NK ;
+fun hyo'tyliikenne_NK : NK ;
+fun hyo'tyliikunta_NK : NK ;
+fun hyo'tymansikka_NK : NK ;
+fun hyo'tyna'ko'kohta_NK : NK ;
+fun hyo'tyosuus_NK : NK ;
+fun hyo'typisto_NK : NK ;
+fun hyo'tysuhde_NK : NK ;
+fun hyo'tyteho_NK : NK ;
+fun hyo'to'reaktori_NK : NK ;
+fun ha'ika'isysuoja_NK : NK ;
+fun ha'ilyva'isyys_NK : NK ;
+fun ha'irinta'tuli_NK : NK ;
+fun ha'irio'tekija'_NK : NK ;
+fun ha'irio'tila_NK : NK ;
+fun ha'kkikanala_NK : NK ;
+fun ha'kkilintu_NK : NK ;
+fun ha'ka'kaasu_NK : NK ;
+fun ha'ka'lo'yly_NK : NK ;
+fun ha'ka'myrkytys_NK : NK ;
+fun ha'ka'po'ntto'_NK : NK ;
+fun ha'lytysajo_NK : NK ;
+fun ha'lytysajoneuvo_NK : NK ;
+fun ha'lytysalue_NK : NK ;
+fun ha'lytyskello_NK : NK ;
+fun ha'lytyskeskus_NK : NK ;
+fun ha'lytyslaite_NK : NK ;
+fun ha'lytysmerkki_NK : NK ;
+fun ha'lytysnumero_NK : NK ;
+fun ha'lytyssireeni_NK : NK ;
+fun ha'lytystila_NK : NK ;
+fun ha'lytysvalmis_NK : NK ;
+fun ha'lytysvalmius_NK : NK ;
+fun ha'lytysa'a'ni_NK : NK ;
+fun ha'lya'a'ni_NK : NK ;
+fun ha'ma'ha'kkiela'in_NK : NK ;
+fun ha'ma'ra'pera'inen_NK : NK ;
+fun ha'nnystakki_NK : NK ;
+fun ha'nta'hihna_NK : NK ;
+fun ha'nta'jouhi_NK : NK ;
+fun ha'nta'ka'rpa'nen_NK : NK ;
+fun ha'nta'luu_NK : NK ;
+fun ha'nta'nikama_NK : NK ;
+fun ha'nta'puoli_NK : NK ;
+fun ha'nta'pa'a'_NK : NK ;
+fun ha'nta'vyo'_NK : NK ;
+fun ha'pea'merkki_NK : NK ;
+fun ha'pea'paalu_NK : NK ;
+fun ha'pea'penkki_NK : NK ;
+fun ha'pea'pilkku_NK : NK ;
+fun ha'pea'rangaistus_NK : NK ;
+fun ha'pea'tahra_NK : NK ;
+fun ha'pyhuuli_NK : NK ;
+fun ha'pykannus_NK : NK ;
+fun ha'pykarvoitus_NK : NK ;
+fun ha'pykieli_NK : NK ;
+fun ha'pykukkula_NK : NK ;
+fun ha'pyluu_NK : NK ;
+fun ha'rka'lintu_NK : NK ;
+fun ha'rka'mulli_NK : NK ;
+fun ha'rka'mullikka_NK : NK ;
+fun ha'rka'papu_NK : NK ;
+fun ha'rka'pari_NK : NK ;
+fun ha'rka'pa'inen_AK : AK ;
+fun ha'rka'pa'a'_NK : NK ;
+fun ha'rka'simppu_NK : NK ;
+fun ha'rka'taistelija_NK : NK ;
+fun ha'rka'taistelu_NK : NK ;
+fun ha'rka'valjakko_NK : NK ;
+fun ha'rka'vaunu_NK : NK ;
+fun ha'rka'viikko_NK : NK ;
+fun ha'rma'malikka_NK : NK ;
+fun ha'rma'sieni_NK : NK ;
+fun ha'rma'tauti_NK : NK ;
+fun ha'ra'nha'nta'keitto_NK : NK ;
+fun ha'ra'nha'nta'liemi_NK : NK ;
+fun ha'ta'apu_NK : NK ;
+fun ha'ta'aputyo'_NK : NK ;
+fun ha'ta'huuto_NK : NK ;
+fun ha'ta'ilmoitus_NK : NK ;
+fun ha'ta'istunto_NK : NK ;
+fun ha'ta'jarru_NK : NK ;
+fun ha'ta'jarrutus_NK : NK ;
+fun ha'ta'kaste_NK : NK ;
+fun ha'ta'katkaisin_NK : NK ;
+fun ha'ta'keino_NK : NK ;
+fun ha'ta'kello_NK : NK ;
+fun ha'ta'keskus_NK : NK ;
+fun ha'ta'kokous_NK : NK ;
+fun ha'ta'lasku_NK : NK ;
+fun ha'ta'leipa'_NK : NK ;
+fun ha'ta'merkki_NK : NK ;
+fun ha'ta'numero_NK : NK ;
+fun ha'ta'paikka_NK : NK ;
+fun ha'ta'puhelin_NK : NK ;
+fun ha'ta'puhelu_NK : NK ;
+fun ha'ta'pysa'ytin_NK : NK ;
+fun ha'ta'pa'iva'_NK : NK ;
+fun ha'ta'raketti_NK : NK ;
+fun ha'ta'ratkaisu_NK : NK ;
+fun ha'ta'reitti_NK : NK ;
+fun ha'ta'sanoma_NK : NK ;
+fun ha'ta'satama_NK : NK ;
+fun ha'ta'tapaus_NK : NK ;
+fun ha'ta'tarve_NK : NK ;
+fun ha'ta'teurastus_NK : NK ;
+--? fun ha'ta'tikkaat_NK : NK ;
+fun ha'ta'tila_NK : NK ;
+fun ha'ta'tilanne_NK : NK ;
+fun ha'ta'tyo'_NK : NK ;
+fun ha'ta'valhe_NK : NK ;
+fun ha'ta'vara_NK : NK ;
+fun ha'ta'varjelu_NK : NK ;
+fun ha'vitta'ja'alus_NK : NK ;
+fun ha'vitta'ja'kone_NK : NK ;
+fun ha'vitta'ja'laivue_NK : NK ;
+fun ha'vitta'ja'lenta'ja'_NK : NK ;
+fun ha'vitta'ja'pommittaja_NK : NK ;
+fun ha'vitysaine_NK : NK ;
+fun ha'vitystyo'_NK : NK ;
+fun ha'va'istysjuttu_NK : NK ;
+fun ha'va'istyskirjoitus_NK : NK ;
+fun ha'a'to'ma'a'ra'ys_NK : NK ;
+fun ho'kkelikaupunki_NK : NK ;
+fun ho'kkelikyla'_NK : NK ;
+fun ho'lkka'askel_NK : NK ;
+fun ho'lkka'juoksu_NK : NK ;
+fun ho'lla'ka'tinen_AK : AK ;
+fun ho'lla'ka'tisyys_NK : NK ;
+fun ho'lla'luonteinen_NK : NK ;
+fun ho'lo'suu_NK : NK ;
+fun ho'mppa'sivu_NK : NK ;
+fun ho'po'puhe_NK : NK ;
+fun ho'yhenheina'_NK : NK ;
+fun ho'yhenkoriste_NK : NK ;
+fun ho'yhenpatja_NK : NK ;
+fun ho'yhenpeite_NK : NK ;
+fun ho'yhenpuku_NK : NK ;
+fun ho'yhensarja_NK : NK ;
+fun ho'yhensarjalainen_NK : NK ;
+fun ho'yhensato_NK : NK ;
+fun ho'yhentyyny_NK : NK ;
+fun ho'yhenta'yte_NK : NK ;
+fun ho'yhenta'ytteinen_NK : NK ;
+fun ho'yla'hirsi_NK : NK ;
+fun ho'yla'hirsitalo_NK : NK ;
+fun ho'yla'kone_NK : NK ;
+fun ho'yla'latu_NK : NK ;
+fun ho'yla'penkki_NK : NK ;
+fun ho'yla'tavara_NK : NK ;
+fun ho'yryalus_NK : NK ;
+fun ho'yryauto_NK : NK ;
+fun ho'yrykattila_NK : NK ;
+fun ho'yrykiharrin_NK : NK ;
+fun ho'yrykone_NK : NK ;
+fun ho'yrykylpy_NK : NK ;
+fun ho'yrykypsennys_NK : NK ;
+fun ho'yrylaiva_NK : NK ;
+fun ho'yryla'mmitys_NK : NK ;
+fun ho'yrymehustin_NK : NK ;
+fun ho'yrymylly_NK : NK ;
+fun ho'yrypilvi_NK : NK ;
+fun ho'yrypa'inen_NK : NK ;
+fun ho'yrypa'a'_NK : NK ;
+fun ho'yryradio_NK : NK ;
+fun ho'yryrauta_NK : NK ;
+fun ho'yrysulku_NK : NK ;
+fun ho'yryturbiini_NK : NK ;
+fun ho'yryturbiinivoimala_NK : NK ;
+fun ho'yryuuni_NK : NK ;
+fun ho'yryveturi_NK : NK ;
+fun ho'yryvoima_NK : NK ;
+fun ho'yryvoimala_NK : NK ;
+fun ho'yryvoimalaitos_NK : NK ;
+fun ho'ytylumi_NK : NK ;
+fun ideaalinen_NK : NK ;
+fun ideaaliside_NK : NK ;
+fun ideaalitapaus_NK : NK ;
+fun ideakilpailu_NK : NK ;
+fun ideariihi_NK : NK ;
+fun identiteettikriisi_NK : NK ;
+fun idioottimainen_AK : AK ;
+fun idioottivarma_NK : NK ;
+fun ida'tyskoe_NK : NK ;
+fun ida'tyslaite_NK : NK ;
+fun ientasku_NK : NK ;
+fun ientulehdus_NK : NK ;
+fun ihailijakerho_NK : NK ;
+fun ihailijaposti_NK : NK ;
+fun ihannekuva_NK : NK ;
+fun ihannemaa_NK : NK ;
+fun ihannemaailma_NK : NK ;
+fun ihannemies_NK : NK ;
+fun ihannenainen_NK : NK ;
+fun ihannepaino_NK : NK ;
+fun ihanneratkaisu_NK : NK ;
+fun ihannetapaus_NK : NK ;
+fun ihannetytto'_NK : NK ;
+fun ihmeaine_NK : NK ;
+fun ihme_ela'va'_NK : NK ;
+fun ihmeko'ynno's_NK : NK ;
+fun ihmelapsi_NK : NK ;
+fun ihmela'a'ke_NK : NK ;
+fun ihmemaa_NK : NK ;
+fun ihmemaailma_NK : NK ;
+fun ihmeolento_NK : NK ;
+fun ihmeparannus_NK : NK ;
+fun ihmeparantaja_NK : NK ;
+fun ihmepensas_NK : NK ;
+fun ihmeteko_NK : NK ;
+fun ihmetyo'_NK : NK ;
+fun ihmissuhdekasvatus_NK : NK ;
+fun ihmissuhdepalsta_NK : NK ;
+fun ihmistyo'voima_NK : NK ;
+fun ihohengitys_NK : NK ;
+fun ihohuokonen_NK : NK ;
+fun ihokarva_NK : NK ;
+fun ihokasvain_NK : NK ;
+fun ihokoe_NK : NK ;
+fun ihokudos_NK : NK ;
+fun iholihaksisto_NK : NK ;
+fun ihomaali_NK : NK ;
+fun ihomato_NK : NK ;
+fun ihonhoitoaine_NK : NK ;
+fun ihonkuorintavoide_NK : NK ;
+fun ihonpuhdistusaine_NK : NK ;
+fun ihonpuhdistusmaito_NK : NK ;
+fun ihopaita_NK : NK ;
+fun ihopoimu_NK : NK ;
+fun ihosairaus_NK : NK ;
+fun ihosyo'pa'_NK : NK ;
+fun ihotauti_NK : NK ;
+fun ihotautila'a'ka'ri_NK : NK ;
+fun ihotautioppi_NK : NK ;
+fun ihotulehdus_NK : NK ;
+fun ihovoide_NK : NK ;
+fun ihrakuoriainen_NK : NK ;
+fun ihramaha_NK : NK ;
+fun ihramahainen_NK : NK ;
+fun iibislintu_NK : NK ;
+fun iirishimmennin_NK : NK ;
+fun iirispainanta_NK : NK ;
+fun iirispainatus_NK : NK ;
+fun iki_ihana_NK : NK ;
+fun ikkunakirjekuori_NK : NK ;
+fun ikkunakitti_NK : NK ;
+fun ikkunakuori_NK : NK ;
+fun ikkunalasi_NK : NK ;
+fun ikkunalasta_NK : NK ;
+fun ikkunalauta_NK : NK ;
+fun ikkunaliina_NK : NK ;
+fun ikkunaluukku_NK : NK ;
+fun ikkunamainonta_NK : NK ;
+fun ikkunamainos_NK : NK ;
+fun ikkunana'yttely_NK : NK ;
+fun ikkunaostos_NK : NK ;
+fun ikkunaovi_NK : NK ;
+fun ikkunapaikka_NK : NK ;
+fun ikkunapinta_NK : NK ;
+fun ikkunapo'yta'_NK : NK ;
+fun ikkunaristikko_NK : NK ;
+fun ikkunarivi_NK : NK ;
+fun ikkunaruutu_NK : NK ;
+fun ikkunasomistus_NK : NK ;
+fun ikkunasyvennys_NK : NK ;
+fun ikkunatiiviste_NK : NK ;
+fun ikkunatuuletus_NK : NK ;
+fun ikkunaverho_NK : NK ;
+fun ikonimaalari_NK : NK ;
+fun ikonimaalaus_NK : NK ;
+fun ikonitaide_NK : NK ;
+fun ikuisuuskysymys_NK : NK ;
+fun ikuisuusongelma_NK : NK ;
+fun ika'ero_NK : NK ;
+fun ika'hyvitys_NK : NK ;
+fun ika'ihminen_NK : NK ;
+fun ika'isyys_NK : NK ;
+fun ika'jakauma_NK : NK ;
+fun ika'jakautuma_NK : NK ;
+fun ika'ja'rjestys_NK : NK ;
+fun ika'kausi_NK : NK ;
+fun ika'kausiurheilija_NK : NK ;
+fun ika'kausiurheilu_NK : NK ;
+fun ika'kulu_NK : NK ;
+fun ika'kuulo_NK : NK ;
+fun ika'lisa'_NK : NK ;
+fun ika'loppu_NK : NK ;
+fun ika'luokitus_NK : NK ;
+fun ika'luokka_NK : NK ;
+fun ika'mies_NK : NK ;
+fun ika'miesmestaruus_NK : NK ;
+fun ika'miessarja_NK : NK ;
+fun ika'neito_NK : NK ;
+fun ika'na'ko'_NK : NK ;
+fun ika'na'ko'inen_NK : NK ;
+fun ika'na'ko'isyys_NK : NK ;
+fun ika'polvi_NK : NK ;
+fun ika'raja_NK : NK ;
+fun ika'rakenne_NK : NK ;
+fun ika'ryhma'_NK : NK ;
+fun ika'ryhma'tarkastus_NK : NK ;
+fun ika'syrjinta'_NK : NK ;
+fun ika'toveri_NK : NK ;
+fun ika'vuosi_NK : NK ;
+fun ilkea'luonteinen_NK : NK ;
+fun ilkea'mielisyys_NK : NK ;
+fun ilkialaston_NK : NK ;
+fun ilkityo'_NK : NK ;
+fun ilkivalta_NK : NK ;
+fun ilkivaltainen_AK : AK ;
+fun ilkivaltaisuus_NK : NK ;
+fun ilmahoito_NK : NK ;
+fun ilmahuokonen_NK : NK ;
+fun ilmahyo'kka'ys_NK : NK ;
+fun ilmaha'lytys_NK : NK ;
+fun ilmailukartta_NK : NK ;
+fun ilmailukerho_NK : NK ;
+fun ilmaisjakelulehti_NK : NK ;
+fun ilmaisku_NK : NK ;
+fun ilmaisukeino_NK : NK ;
+fun ilmaisukyky_NK : NK ;
+fun ilmaisukykyinen_NK : NK ;
+fun ilmaisuleikki_NK : NK ;
+fun ilmaisuliike_NK : NK ;
+fun ilmaisumuoto_NK : NK ;
+fun ilmaisupakko_NK : NK ;
+fun ilmaisutaito_NK : NK ;
+fun ilmaisutapa_NK : NK ;
+fun ilmaisutarve_NK : NK ;
+fun ilmaisuvala_NK : NK ;
+fun ilmaisuvoima_NK : NK ;
+fun ilmaisuvoimainen_NK : NK ;
+fun ilmaisuva'line_NK : NK ;
+fun ilmajarru_NK : NK ;
+fun ilmajohto_NK : NK ;
+fun ilmajousi_NK : NK ;
+fun ilmajousitus_NK : NK ;
+fun ilmajuoppo_NK : NK ;
+fun ilmaja'a'hdytin_NK : NK ;
+fun ilmaja'a'hdytys_NK : NK ;
+fun ilmakaapeli_NK : NK ;
+fun ilmakartoitus_NK : NK ;
+fun ilmakeha'_NK : NK ;
+fun ilmakerros_NK : NK ;
+fun ilmakiharrin_NK : NK ;
+fun ilmakirje_NK : NK ;
+fun ilmakiva'a'ri_NK : NK ;
+fun ilmakuiva_NK : NK ;
+fun ilmakuivatus_NK : NK ;
+fun ilmakuivaus_NK : NK ;
+fun ilmakuljetus_NK : NK ;
+fun ilmakuoppa_NK : NK ;
+fun ilmakupla_NK : NK ;
+fun ilmakuva_NK : NK ;
+fun ilmakuvakartoitus_NK : NK ;
+fun ilmakuvakartta_NK : NK ;
+fun ilmakuvaus_NK : NK ;
+fun ilmakylpy_NK : NK ;
+fun ilmaka'yta'va'_NK : NK ;
+fun ilmalaiva_NK : NK ;
+fun ilmalasta_NK : NK ;
+fun ilmalento_NK : NK ;
+fun ilmaliikenne_NK : NK ;
+fun ilmala'mmitys_NK : NK ;
+fun ilmamaali_NK : NK ;
+fun ilmamassa_NK : NK ;
+fun ilmanhenki_NK : NK ;
+fun ilmankansi_NK : NK ;
+fun ilmankostutin_NK : NK ;
+fun ilmanohjain_NK : NK ;
+fun ilmanpaine_NK : NK ;
+fun ilmanpaineka'yra'_NK : NK ;
+fun ilmanpita'va'_AK : AK ;
+fun ilmanpoisto_NK : NK ;
+fun ilmanpuhallin_NK : NK ;
+fun ilmanpuhdistin_NK : NK ;
+fun ilmanraikaste_NK : NK ;
+fun ilmansaaste_NK : NK ;
+fun ilmansuodatin_NK : NK ;
+fun ilmansuojelu_NK : NK ;
+fun ilmansuunta_NK : NK ;
+fun ilmanvaihto_NK : NK ;
+fun ilmanvaihtokanava_NK : NK ;
+fun ilmanvastus_NK : NK ;
+fun ilmaontelo_NK : NK ;
+fun ilmapakoinen_NK : NK ;
+fun ilmapallo_NK : NK ;
+fun ilmapatja_NK : NK ;
+fun ilmapiiri_NK : NK ;
+fun ilmapistooli_NK : NK ;
+fun ilmapistooliammunta_NK : NK ;
+fun ilmapumppu_NK : NK ;
+fun ilmapuntari_NK : NK ;
+fun ilmapuolustus_NK : NK ;
+fun ilmapurjehdus_NK : NK ;
+fun ilmaputki_NK : NK ;
+fun ilmapyo'rre_NK : NK ;
+fun ilmarako_NK : NK ;
+fun ilmarata_NK : NK ;
+fun ilmarengas_NK : NK ;
+fun ilmarinta_NK : NK ;
+fun ilmarosvo_NK : NK ;
+fun ilmarosvous_NK : NK ;
+fun ilmasilta_NK : NK ;
+fun ilmasipuli_NK : NK ;
+fun ilmasota_NK : NK ;
+fun ilmastohoito_NK : NK ;
+fun ilmastointikanava_NK : NK ;
+fun ilmastointilaite_NK : NK ;
+fun ilmastointilaitteisto_NK : NK ;
+fun ilmastointiteippi_NK : NK ;
+fun ilmastotiede_NK : NK ;
+fun ilmastovyo'hyke_NK : NK ;
+fun ilmastusallas_NK : NK ;
+fun ilmasulku_NK : NK ;
+fun ilmasuoja_NK : NK ;
+fun ilmasuojelu_NK : NK ;
+fun ilmataistelu_NK : NK ;
+fun ilmatankkaus_NK : NK ;
+fun ilmatasku_NK : NK ;
+fun ilmatiede_NK : NK ;
+--? fun ilmatiehyt_NK : NK ;
+fun ilmatieteilija'_NK : NK ;
+fun ilmatiivis_NK : NK ;
+fun ilmatila_NK : NK ;
+fun ilmatoiminta_NK : NK ;
+fun ilmatorjunta_NK : NK ;
+fun ilmatorjuntaohjus_NK : NK ;
+fun ilmatorjuntapatteri_NK : NK ;
+fun ilmatorjuntapatteristo_NK : NK ;
+fun ilmatorjuntatuli_NK : NK ;
+fun ilmatorjuntatykisto'_NK : NK ;
+fun ilmatorjuntatykki_NK : NK ;
+fun ilmatorvi_NK : NK ;
+fun ilmatyhjio'_NK : NK ;
+fun ilmatyyny_NK : NK ;
+fun ilmatyynyalus_NK : NK ;
+fun ilmata'hystys_NK : NK ;
+fun ilmata'ytteinen_NK : NK ;
+fun ilmavaara_NK : NK ;
+fun ilmavalvonta_NK : NK ;
+fun ilmavasara_NK : NK ;
+fun ilmaverho_NK : NK ;
+fun ilmaverso_NK : NK ;
+fun ilmavirta_NK : NK ;
+fun ilmavirtaus_NK : NK ;
+fun ilmavoitto_NK : NK ;
+fun ilmelihas_NK : NK ;
+fun ilmestyskirja_NK : NK ;
+fun ilmiantaja_NK : NK ;
+fun ilmianto_NK : NK ;
+fun ilmiasu_NK : NK ;
+fun ilmiela'va'_NK : NK ;
+fun ilmiliekki_NK : NK ;
+fun ilmiriita_NK : NK ;
+fun ilmiselva'_NK : NK ;
+fun ilmisota_NK : NK ;
+fun ilmitulo_NK : NK ;
+fun ilmoitusasia_NK : NK ;
+fun ilmoitushinta_NK : NK ;
+fun ilmoituskaappi_NK : NK ;
+fun ilmoituslehti_NK : NK ;
+fun ilmoitusmenettely_NK : NK ;
+fun ilmoitusmyynti_NK : NK ;
+fun ilmoitusosasto_NK : NK ;
+fun ilmoituspalsta_NK : NK ;
+fun ilmoitussivu_NK : NK ;
+fun ilmoitustaulu_NK : NK ;
+fun ilmoitusvala_NK : NK ;
+fun ilmoitusva'line_NK : NK ;
+fun ilohuuto_NK : NK ;
+fun ilojuhla_NK : NK ;
+fun ilokaasu_NK : NK ;
+fun iloliemi_NK : NK ;
+fun ilolintu_NK : NK ;
+fun iloluontoinen_NK : NK ;
+fun ilomieli_NK : NK ;
+fun ilomielisyys_NK : NK ;
+fun ilopilleri_NK : NK ;
+fun ilosanoma_NK : NK ;
+fun ilotalo_NK : NK ;
+fun ilotulite_NK : NK ;
+fun ilotulitus_NK : NK ;
+fun ilotulitusaine_NK : NK ;
+fun ilotulitusraketti_NK : NK ;
+fun ilotulitusva'line_NK : NK ;
+fun ilotytto'_NK : NK ;
+fun ilouutinen_NK : NK ;
+fun iltahartaus_NK : NK ;
+fun iltahuuto_NK : NK ;
+fun iltahuvi_NK : NK ;
+fun iltaha'ma'ra'_NK : NK ;
+fun iltaistunto_NK : NK ;
+fun iltajuhla_NK : NK ;
+fun iltajuna_NK : NK ;
+fun iltakahvi_NK : NK ;
+fun iltakausi_NK : NK ;
+fun iltakello_NK : NK ;
+fun iltakilpailu_NK : NK ;
+fun iltakirkko_NK : NK ;
+fun iltakoulu_NK : NK ;
+fun iltakurssi_NK : NK ;
+fun iltakuusi_NK : NK ;
+fun iltakymmenen_NK : NK ;
+fun iltaka'vely_NK : NK ;
+fun iltalaukku_NK : NK ;
+fun iltalehti_NK : NK ;
+fun iltalinja_NK : NK ;
+fun iltaloma_NK : NK ;
+fun iltalukio_NK : NK ;
+fun iltalypsy_NK : NK ;
+fun iltamessu_NK : NK ;
+fun iltamyo'ha'_NK : NK ;
+fun iltamyo'ha'inen_NK : NK ;
+fun iltanuotio_NK : NK ;
+fun iltana'yta'nto'_NK : NK ;
+fun iltaopetus_NK : NK ;
+fun iltaopiskelija_NK : NK ;
+fun iltaopiskelu_NK : NK ;
+fun iltapala_NK : NK ;
+fun iltapesu_NK : NK ;
+fun iltapimea'_NK : NK ;
+fun iltapuhde_NK : NK ;
+fun iltapuku_NK : NK ;
+fun iltapukuinen_NK : NK ;
+fun iltapuoli_NK : NK ;
+fun iltapa'iva'_NK : NK ;
+fun iltapa'iva'kahvi_NK : NK ;
+fun iltapa'iva'lehti_NK : NK ;
+fun iltapa'iva'ohjelma_NK : NK ;
+fun iltapa'iva'ruuhka_NK : NK ;
+fun iltarukous_NK : NK ;
+fun iltarusko_NK : NK ;
+fun iltataivas_NK : NK ;
+fun iltatee_NK : NK ;
+fun iltatilaisuus_NK : NK ;
+fun iltatoimi_NK : NK ;
+fun iltatori_NK : NK ;
+fun iltatorkku_NK : NK ;
+fun iltatyo'_NK : NK ;
+fun iltata'hti_NK : NK ;
+fun iltauninen_NK : NK ;
+fun iltavalaistus_NK : NK ;
+fun iltavapaa_NK : NK ;
+fun iltavirkku_NK : NK ;
+fun iltavoimistelu_NK : NK ;
+fun iltavuoro_NK : NK ;
+fun ilvekukka_NK : NK ;
+fun imellysaine_NK : NK ;
+fun imeytyskentta'_NK : NK ;
+fun immuunikato_NK : NK ;
+fun immuunivaste_NK : NK ;
+fun impulssiosto_NK : NK ;
+fun imukera'ily_NK : NK ;
+fun imukudos_NK : NK ;
+fun imukuppi_NK : NK ;
+fun imukuppisynnytys_NK : NK ;
+fun imuka'rsa'_NK : NK ;
+fun imuneste_NK : NK ;
+fun imupaperi_NK : NK ;
+fun imupilli_NK : NK ;
+fun imupumppu_NK : NK ;
+fun imurauhanen_NK : NK ;
+fun imusolmuke_NK : NK ;
+fun imusolu_NK : NK ;
+fun imusuoni_NK : NK ;
+fun imusuonipunos_NK : NK ;
+fun imusuonisto_NK : NK ;
+fun imutahti_NK : NK ;
+fun imuventtiili_NK : NK ;
+fun indeksiehto_NK : NK ;
+fun indeksikorotus_NK : NK ;
+fun indeksiluku_NK : NK ;
+fun indigosini_NK : NK ;
+fun induktiokela_NK : NK ;
+fun induktiolevy_NK : NK ;
+fun induktioliesi_NK : NK ;
+fun induktiouuni_NK : NK ;
+fun induktiovirta_NK : NK ;
+fun inertiaohjaus_NK : NK ;
+fun infektiotauti_NK : NK ;
+fun inflaatiokierre_NK : NK ;
+fun inflaatiopaine_NK : NK ;
+fun inflaatiotarkistus_NK : NK ;
+fun influenssaepidemia_NK : NK ;
+fun influenssapotilas_NK : NK ;
+fun influenssarokote_NK : NK ;
+fun influenssarokotus_NK : NK ;
+fun influenssavirus_NK : NK ;
+fun informaatiopalvelu_NK : NK ;
+fun informaatiosota_NK : NK ;
+fun informaatioteknologia_NK : NK ;
+fun informaatioteoria_NK : NK ;
+fun informaatiotilaisuus_NK : NK ;
+fun inhorealismi_NK : NK ;
+fun injektioruisku_NK : NK ;
+fun inkakulttuuri_NK : NK ;
+fun inkiva'a'rijuoma_NK : NK ;
+fun inkiva'a'rikasvi_NK : NK ;
+--? fun inkiva'a'riolut_NK : NK ;
+fun insino'o'riajo_NK : NK ;
+fun insino'o'ritaito_NK : NK ;
+fun insino'o'ritoimisto_NK : NK ;
+fun insino'o'riupseeri_NK : NK ;
+fun inssiajo_NK : NK ;
+fun insuliinihoito_NK : NK ;
+fun insuliinihoitoinen_NK : NK ;
+fun insuliinipistos_NK : NK ;
+fun insuliiniruiske_NK : NK ;
+fun integraalilaskenta_NK : NK ;
+fun intervalliharjoitus_NK : NK ;
+fun intiaaniheimo_NK : NK ;
+fun intiaanikanootti_NK : NK ;
+fun intiaanikesa'_NK : NK ;
+fun intiaanikieli_NK : NK ;
+fun intiaanileikki_NK : NK ;
+fun intiaanipa'a'hine_NK : NK ;
+fun intiaanipa'a'llikko'_NK : NK ;
+fun intiaaniriisi_NK : NK ;
+fun intiaanitanssi_NK : NK ;
+fun intiaaniteltta_NK : NK ;
+fun intimiteettisuoja_NK : NK ;
+fun intohimo_NK : NK ;
+fun intohimoinen_AK : AK ;
+fun intomieli_NK : NK ;
+fun intomielisyys_NK : NK ;
+fun intressipiiri_NK : NK ;
+fun intressiryhma'_NK : NK ;
+fun invalidihissi_NK : NK ;
+fun invalidihuolto_NK : NK ;
+fun invalidika'yma'la'_NK : NK ;
+fun invalidimopo_NK : NK ;
+fun invalidipaikka_NK : NK ;
+fun invaliditaksi_NK : NK ;
+fun investointipankki_NK : NK ;
+fun investointirahasto_NK : NK ;
+fun investointitalletus_NK : NK ;
+fun investointivaraus_NK : NK ;
+fun ionisointi_NK : NK ;
+fun irokeesikampaus_NK : NK ;
+fun irrationaaliluku_NK : NK ;
+fun irtaimistokiinnitys_NK : NK ;
+fun irtikytkenta'_NK : NK ;
+fun irtiotto_NK : NK ;
+fun irtipa'a'sy_NK : NK ;
+fun irtolastialus_NK : NK ;
+fun irtolehtipainos_NK : NK ;
+fun iskelma'laulaja_NK : NK ;
+fun iskelma'lyriikka_NK : NK ;
+fun iskelma'musiikki_NK : NK ;
+fun iskelma'sovitus_NK : NK ;
+fun iskelma'teksti_NK : NK ;
+fun iskiashermo_NK : NK ;
+fun iskujoukko_NK : NK ;
+fun iskukoukku_NK : NK ;
+fun iskukuumennus_NK : NK ;
+fun iskukyky_NK : NK ;
+fun iskukykyinen_NK : NK ;
+fun iskulause_NK : NK ;
+fun iskulyo'nti_NK : NK ;
+fun iskupa'a'_NK : NK ;
+fun iskurepliikki_NK : NK ;
+fun iskuryhma'_NK : NK ;
+fun iskusana_NK : NK ;
+fun iskusarja_NK : NK ;
+fun iskusitkeys_NK : NK ;
+fun iskusa'vel_NK : NK ;
+fun iskuteho_NK : NK ;
+fun iskutilavuus_NK : NK ;
+fun iskuvalmis_NK : NK ;
+fun iskuvalmius_NK : NK ;
+fun iskuvoima_NK : NK ;
+fun iskuvoimainen_NK : NK ;
+fun islamismi_NK : NK ;
+fun islantilainen_NK : NK ;
+fun isobaari_NK : NK ;
+fun isokasvuinen_NK : NK ;
+fun isokenka'inen_NK : NK ;
+fun isokokoinen_NK : NK ;
+fun isokukkainen_NK : NK ;
+fun isokuvioinen_NK : NK ;
+fun isolehtinen_NK : NK ;
+fun isoleukainen_NK : NK ;
+fun isomahainen_NK : NK ;
+fun isometrinen_NK : NK ;
+fun isopistooliammunta_NK : NK ;
+fun isorakeinen_NK : NK ;
+fun isorokkorokotus_NK : NK ;
+fun isoruutuinen_NK : NK ;
+fun isotermi_NK : NK ;
+fun isotooppikartoitus_NK : NK ;
+fun isotooppikello_NK : NK ;
+fun isoto'inen_NK : NK ;
+fun istuinkaukalo_NK : NK ;
+fun istuinkyhmy_NK : NK ;
+fun istuinlaatikko_NK : NK ;
+fun istuinlauta_NK : NK ;
+fun istuinluu_NK : NK ;
+fun istuinosa_NK : NK ;
+fun istuinpaikka_NK : NK ;
+fun istuinpenkki_NK : NK ;
+fun istuinrivi_NK : NK ;
+fun istuintyyny_NK : NK ;
+fun istukassipuli_NK : NK ;
+fun istumajalka_NK : NK ;
+fun istumakylpy_NK : NK ;
+fun istumalakko_NK : NK ;
+fun istumalihas_NK : NK ;
+fun istumapaikka_NK : NK ;
+fun istumatyo'_NK : NK ;
+fun istuntokausi_NK : NK ;
+fun istuntosali_NK : NK ;
+fun istutuskone_NK : NK ;
+fun istutuskuoppa_NK : NK ;
+fun istutuskuusikko_NK : NK ;
+fun istutuslapio_NK : NK ;
+fun istutussyvyys_NK : NK ;
+fun istutusva'li_NK : NK ;
+fun isyysloma_NK : NK ;
+fun isyyspakkaus_NK : NK ;
+fun isyysraha_NK : NK ;
+fun isyystutkimus_NK : NK ;
+fun isa'hahmo_NK : NK ;
+fun isa'meida'nrukous_NK : NK ;
+fun isa'nisa'_NK : NK ;
+fun isa'nno'itsija'toimisto_NK : NK ;
+fun isa'nta'elio'_NK : NK ;
+fun isa'nta'ela'in_NK : NK ;
+fun isa'nta'joukkue_NK : NK ;
+fun isa'nta'kasvi_NK : NK ;
+fun isa'nta'maa_NK : NK ;
+fun isa'nta'mies_NK : NK ;
+fun isa'nta'perhe_NK : NK ;
+fun isa'nta'renki_NK : NK ;
+fun isa'nta'seura_NK : NK ;
+fun isa'nta'va'ki_NK : NK ;
+fun isa'pappa_NK : NK ;
+fun isa'puoli_NK : NK ;
+fun isa'ukko_NK : NK ;
+fun isa'vainaja_NK : NK ;
+fun italialainen_NK : NK ;
+fun italianisti_NK : NK ;
+fun itio'ela'in_NK : NK ;
+fun itio'ema'_NK : NK ;
+fun itio'kasvi_NK : NK ;
+fun itio'pesa'ke_NK : NK ;
+fun itio'polvi_NK : NK ;
+fun itio'po'ly_NK : NK ;
+fun itkija'nainen_NK : NK ;
+fun itkukohtaus_NK : NK ;
+fun itkumuuri_NK : NK ;
+fun itkupilli_NK : NK ;
+fun itkuvirsi_NK : NK ;
+fun itsearvostus_NK : NK ;
+fun itsehallinto_NK : NK ;
+fun itsehallintoalue_NK : NK ;
+fun itsehillinta'_NK : NK ;
+fun itsehoito_NK : NK ;
+fun itsehoitola'a'ke_NK : NK ;
+fun itseihailu_NK : NK ;
+fun itseilmaisu_NK : NK ;
+fun itseinduktio_NK : NK ;
+fun itseinho_NK : NK ;
+fun itseironia_NK : NK ;
+fun itseiva_NK : NK ;
+fun itsekannattava_NK : NK ;
+fun itsekasvatus_NK : NK ;
+fun itsekehu_NK : NK ;
+fun itsekeskeinen_NK : NK ;
+fun itsekeskeisyys_NK : NK ;
+fun itsekidutus_NK : NK ;
+fun itsekontrolli_NK : NK ;
+fun itsekorostus_NK : NK ;
+fun itsekriittinen_NK : NK ;
+fun itsekritiikki_NK : NK ;
+fun itsekunnioitus_NK : NK ;
+fun itsekuri_NK : NK ;
+fun itselaukaisin_NK : NK ;
+fun itseluottamus_NK : NK ;
+fun itsemurha_NK : NK ;
+fun itsemurhaaja_NK : NK ;
+fun itsemurhaisku_NK : NK ;
+fun itsemurhalenta'ja'_NK : NK ;
+fun itsemurhaterrorismi_NK : NK ;
+fun itsemurhaterroristi_NK : NK ;
+fun itsemurhayritys_NK : NK ;
+fun itsena'isyysjuhla_NK : NK ;
+fun itsena'isyysjulistus_NK : NK ;
+fun itsena'isyysliike_NK : NK ;
+fun itsena'isyyspolitiikka_NK : NK ;
+fun itsena'isyyspa'iva'_NK : NK ;
+fun itsena'isyystaistelu_NK : NK ;
+fun itseoikaisu_NK : NK ;
+fun itseoikeutettu_NK : NK ;
+fun itseopiskelija_NK : NK ;
+fun itseopiskelu_NK : NK ;
+--? fun itseoppinut_NK : NK ;
+fun itsepalvelu_NK : NK ;
+fun itsepalveluhuoltamo_NK : NK ;
+fun itsepalvelukahvila_NK : NK ;
+fun itsepalvelumyyma'la'_NK : NK ;
+fun itsepalvelupesula_NK : NK ;
+fun itsepalveluravintola_NK : NK ;
+fun itsepalvelutankkaus_NK : NK ;
+fun itsepetos_NK : NK ;
+fun itsepintainen_AK : AK ;
+fun itsepintaisuus_NK : NK ;
+fun itsepoiminta_NK : NK ;
+fun itsepuolustus_NK : NK ;
+fun itsepa'inen_AK : AK ;
+fun itsepo'lytys_NK : NK ;
+fun itserahoitus_NK : NK ;
+fun itserakas_AK : AK ;
+fun itserakkaus_NK : NK ;
+fun itsesensuuri_NK : NK ;
+fun itsesiitos_NK : NK ;
+fun itsesiittoinen_NK : NK ;
+fun itsesoimaus_NK : NK ;
+fun itsesta'a'nselvyys_NK : NK ;
+fun itsesuggestio_NK : NK ;
+fun itsesuojelu_NK : NK ;
+fun itsesuojeluvaisto_NK : NK ;
+fun itsesa'ilytys_NK : NK ;
+fun itsesa'ilytysvaisto_NK : NK ;
+fun itsesa'ilytysvietti_NK : NK ;
+fun itsesa'a'li_NK : NK ;
+fun itsesa'a'tely_NK : NK ;
+fun itsesa'a'to'inen_NK : NK ;
+fun itsetarkkailu_NK : NK ;
+fun itsetarkoitus_NK : NK ;
+fun itsetehostus_NK : NK ;
+fun itsetiedoton_NK : NK ;
+fun itsetietoinen_NK : NK ;
+fun itsetietoisuus_NK : NK ;
+fun itsetilitys_NK : NK ;
+fun itsetoimiva_NK : NK ;
+fun itsetuho_NK : NK ;
+fun itsetuntemus_NK : NK ;
+fun itsetunto_NK : NK ;
+fun itsetutkistelu_NK : NK ;
+fun itsetyydytys_NK : NK ;
+fun itsevalta_NK : NK ;
+fun itsevaltainen_AK : AK ;
+fun itsevaltaisuus_NK : NK ;
+fun itsevaltias_AK : AK ;
+fun itsevaltius_NK : NK ;
+fun itsevarma_NK : NK ;
+fun itsevarmuus_NK : NK ;
+fun itujyva'nen_NK : NK ;
+fun iturata_NK : NK ;
+fun itusalaatti_NK : NK ;
+fun itusilmu_NK : NK ;
+fun ita'auto_NK : NK ;
+fun ita'blokki_NK : NK ;
+fun ita'gootti_NK : NK ;
+fun ita'kaakko_NK : NK ;
+fun ita'kaakkoinen_NK : NK ;
+fun ita'kauppa_NK : NK ;
+fun ita'koillinen_NK : NK ;
+fun ita'maalainen_NK : NK ;
+fun ita'mainen_NK : NK ;
+fun ita'murre_NK : NK ;
+fun ita'murteinen_NK : NK ;
+fun ita'myrsky_NK : NK ;
+fun ita'osa_NK : NK ;
+fun ita'puoli_NK : NK ;
+fun ita'puolinen_NK : NK ;
+fun ita'raja_NK : NK ;
+fun ita'rannikko_NK : NK ;
+fun ita'ranta_NK : NK ;
+fun ita'reimari_NK : NK ;
+fun ita'rinne_NK : NK ;
+fun ita'rintama_NK : NK ;
+fun ita'ryhma'_NK : NK ;
+fun ita'taivas_NK : NK ;
+fun ita'tuonti_NK : NK ;
+fun ita'turisti_NK : NK ;
+fun ita'tuuli_NK : NK ;
+fun ita'vienti_NK : NK ;
+fun ita'viitta_NK : NK ;
+fun ita'vyysprosentti_NK : NK ;
+fun ivahymy_NK : NK ;
+fun ivamukaelma_NK : NK ;
+fun ivanauru_NK : NK ;
+fun ia'isyysajatus_NK : NK ;
+fun ia'isyysarvo_NK : NK ;
+fun ia'isyyskaipuu_NK : NK ;
+fun ia'isyyskutsu_NK : NK ;
+fun ia'isyystoivo_NK : NK ;
+fun jahtimakkara_NK : NK ;
+fun jakardikangas_NK : NK ;
+fun jakeluasema_NK : NK ;
+fun jakeluauto_NK : NK ;
+fun jakelukeittio'_NK : NK ;
+fun jakeluosoite_NK : NK ;
+fun jakelupaikka_NK : NK ;
+fun jakeluporras_NK : NK ;
+fun jakelutie_NK : NK ;
+fun jakeluverkko_NK : NK ;
+fun jakkiha'rka'_NK : NK ;
+fun jakkipuu_NK : NK ;
+fun jakkupuku_NK : NK ;
+fun jakkupukuinen_NK : NK ;
+fun jakoavain_NK : NK ;
+fun jakoja'a'nno's_NK : NK ;
+fun jakokaappi_NK : NK ;
+fun jakokeskus_NK : NK ;
+fun jakokirja_NK : NK ;
+fun jakolasku_NK : NK ;
+fun jakomerkki_NK : NK ;
+fun jakomielisyys_NK : NK ;
+fun jakopyo'ra'sto'_NK : NK ;
+fun jakopa'a'_NK : NK ;
+fun jakorasia_NK : NK ;
+fun jakosumma_NK : NK ;
+fun jakosuodatin_NK : NK ;
+fun jakotislaus_NK : NK ;
+fun jakotisle_NK : NK ;
+fun jakoviiva_NK : NK ;
+fun jakova'li_NK : NK ;
+fun jaksoluku_NK : NK ;
+fun jaksopeli_NK : NK ;
+fun jaksovoitto_NK : NK ;
+fun jalanja'lki_NK : NK ;
+fun jalankulkija_NK : NK ;
+fun jalannousu_NK : NK ;
+fun jalanrinta_NK : NK ;
+fun jalansija_NK : NK ;
+fun jalantie_NK : NK ;
+fun jalasmo'kki_NK : NK ;
+fun jalavakasvi_NK : NK ;
+fun jalkaharppi_NK : NK ;
+fun jalkahiki_NK : NK ;
+fun jalkahoitaja_NK : NK ;
+fun jalkahoito_NK : NK ;
+fun jalkahoitola_NK : NK ;
+fun jalkaholvi_NK : NK ;
+fun jalkainvalidi_NK : NK ;
+fun jalkajakkara_NK : NK ;
+fun jalkajarru_NK : NK ;
+fun jalkakamppi_NK : NK ;
+fun jalkakylpy_NK : NK ;
+fun jalkakyykky_NK : NK ;
+fun jalkaka'yta'va'_NK : NK ;
+fun jalkalamppu_NK : NK ;
+fun jalkaliike_NK : NK ;
+fun jalkalista_NK : NK ;
+fun jalkalukko_NK : NK ;
+fun jalkamaa_NK : NK ;
+fun jalkamarssi_NK : NK ;
+fun jalkamies_NK : NK ;
+fun jalkamylly_NK : NK ;
+fun jalkapallo_NK : NK ;
+fun jalkapalloilija_NK : NK ;
+fun jalkapalloilu_NK : NK ;
+fun jalkapallojoukkue_NK : NK ;
+fun jalkapallokentta'_NK : NK ;
+fun jalkapallopeli_NK : NK ;
+fun jalkapallostadion_NK : NK ;
+fun jalkapari_NK : NK ;
+fun jalkapeli_NK : NK ;
+fun jalkapohja_NK : NK ;
+fun jalkapumppu_NK : NK ;
+fun jalkapuoli_NK : NK ;
+fun jalkapuu_NK : NK ;
+fun jalkapo'yta'_NK : NK ;
+fun jalkaraspi_NK : NK ;
+fun jalkarengas_NK : NK ;
+fun jalkara'tti_NK : NK ;
+fun jalkasieni_NK : NK ;
+fun jalkasilsa_NK : NK ;
+fun jalkaspray_NK : NK ;
+fun jalkastartti_NK : NK ;
+fun jalkatera'_NK : NK ;
+fun jalkatila_NK : NK ;
+fun jalkatuki_NK : NK ;
+fun jalkatyo'_NK : NK ;
+fun jalkavaihde_NK : NK ;
+fun jalkavaihteisto_NK : NK ;
+fun jalkavaimo_NK : NK ;
+fun jalkavaiva_NK : NK ;
+fun jalkavaivainen_NK : NK ;
+fun jalkavika_NK : NK ;
+fun jalkava'ki_NK : NK ;
+fun jalkava'kidivisioona_NK : NK ;
+fun jalkava'kiosasto_NK : NK ;
+fun jalkinekorjaamo_NK : NK ;
+fun jalkineliike_NK : NK ;
+fun jalkineteollisuus_NK : NK ;
+fun jaloitteluaitaus_NK : NK ;
+fun jalokivihiomo_NK : NK ;
+fun jalokivikoru_NK : NK ;
+fun jalokivioppi_NK : NK ;
+fun jalokiviseppa'_NK : NK ;
+fun jalokuusi_NK : NK ;
+fun jaloluonteinen_NK : NK ;
+fun jaloluontoinen_NK : NK ;
+fun jalomielisyys_NK : NK ;
+fun jalomuotoinen_NK : NK ;
+fun jalonnusoksa_NK : NK ;
+fun jalopiirteinen_NK : NK ;
+fun jalopuinen_NK : NK ;
+fun jalorotuinen_NK : NK ;
+fun jalostusaste_NK : NK ;
+fun jalostuslaitos_NK : NK ;
+fun jalostustehdas_NK : NK ;
+fun jalostustuote_NK : NK ;
+fun jalosukuinen_NK : NK ;
+fun jalosukuisuus_NK : NK ;
+fun jalosyda'minen_NK : NK ;
+fun jalosyda'misyys_NK : NK ;
+fun jalusko'ysi_NK : NK ;
+fun jalussolmu_NK : NK ;
+fun jalustinhihna_NK : NK ;
+fun jankkoaura_NK : NK ;
+fun janojuoma_NK : NK ;
+fun jaostopa'a'llikko'_NK : NK ;
+fun japanilainen_NK : NK ;
+fun jarrukenka'_NK : NK ;
+fun jarrumies_NK : NK ;
+fun jarrupoljin_NK : NK ;
+fun jarruraketti_NK : NK ;
+fun jarrurumpu_NK : NK ;
+fun jarrusiiveke_NK : NK ;
+fun jarrusukka_NK : NK ;
+fun jarrutehostin_NK : NK ;
+fun jarrutusalue_NK : NK ;
+fun jarrutusja'lki_NK : NK ;
+fun jarrutuslakko_NK : NK ;
+fun jarrutusmatka_NK : NK ;
+fun jarrutuspolitiikka_NK : NK ;
+fun jarrutuspuhe_NK : NK ;
+fun jarruvalo_NK : NK ;
+fun jarruvarjo_NK : NK ;
+fun jasmiiniriisi_NK : NK ;
+fun jatkohoito_NK : NK ;
+fun jatkojalostus_NK : NK ;
+fun jatkojohto_NK : NK ;
+fun jatkokertomus_NK : NK ;
+fun jatkokoulutus_NK : NK ;
+fun jatkokurssi_NK : NK ;
+fun jatkoka'sittely_NK : NK ;
+fun jatkolevy_NK : NK ;
+fun jatkopaikka_NK : NK ;
+fun jatkoromaani_NK : NK ;
+fun jatkosota_NK : NK ;
+fun jatkotutkinto_NK : NK ;
+fun jatkoyhteys_NK : NK ;
+fun jatkuvatoiminen_NK : NK ;
+fun jauheliha_NK : NK ;
+fun jauhelihapihvi_NK : NK ;
+fun jauhemaalaus_NK : NK ;
+fun jauhemainen_NK : NK ;
+fun jauhesammutin_NK : NK ;
+fun jauhinkivi_NK : NK ;
+fun jauhokoisa_NK : NK ;
+fun jauhomainen_NK : NK ;
+fun jauhomato_NK : NK ;
+fun jauhopeukalo_NK : NK ;
+fun jauhopukki_NK : NK ;
+fun jauhopunkki_NK : NK ;
+fun jauhopussi_NK : NK ;
+fun jauhosavikka_NK : NK ;
+fun jauhosieni_NK : NK ;
+fun jauhosa'kki_NK : NK ;
+fun jazzfestivaali_NK : NK ;
+fun jazzklubi_NK : NK ;
+fun jazzlaulaja_NK : NK ;
+fun jazzmessu_NK : NK ;
+fun jazzmusiikki_NK : NK ;
+fun jazzmuusikko_NK : NK ;
+fun jazzorkesteri_NK : NK ;
+fun jazztanssi_NK : NK ;
+fun jenginuori_NK : NK ;
+fun jengityo'_NK : NK ;
+fun jenkkifutis_NK : NK ;
+fun jenkkikaappi_NK : NK ;
+fun jenkkikassi_NK : NK ;
+fun jenkkirassi_NK : NK ;
+fun jenkkirauta_NK : NK ;
+fun jenkkitukka_NK : NK ;
+fun jerseyrotu_NK : NK ;
+fun jesuiittaluostari_NK : NK ;
+fun jesuiittamainen_NK : NK ;
+fun jesuiittamunkki_NK : NK ;
+fun jesuiittaveljesto'_NK : NK ;
+fun jodipitoinen_NK : NK ;
+fun jodisprii_NK : NK ;
+fun jodisuola_NK : NK ;
+fun jogurttija'a'telo'_NK : NK ;
+fun johanneksenleipa'puu_NK : NK ;
+fun johdantokappale_NK : NK ;
+fun johdantokurssi_NK : NK ;
+fun johdantoluku_NK : NK ;
+fun johdeaita_NK : NK ;
+fun johdinauto_NK : NK ;
+fun johtajala'a'ka'ri_NK : NK ;
+fun johtajavaltainen_NK : NK ;
+fun johtoaihe_NK : NK ;
+fun johtoajatus_NK : NK ;
+fun johtoasema_NK : NK ;
+fun johtoelin_NK : NK ;
+fun johtohahmo_NK : NK ;
+fun johtohenkilo'_NK : NK ;
+fun johtoja'nne_NK : NK ;
+fun johtokunta_NK : NK ;
+fun johtokyky_NK : NK ;
+fun johtolanka_NK : NK ;
+fun johtolause_NK : NK ;
+fun johtoloisto_NK : NK ;
+fun johtomaali_NK : NK ;
+fun johtomies_NK : NK ;
+fun johtomotiivi_NK : NK ;
+fun johtopaikka_NK : NK ;
+fun johtopiste_NK : NK ;
+fun johtoporras_NK : NK ;
+fun johtoputki_NK : NK ;
+fun johtopuudutus_NK : NK ;
+fun johtopa'a'te_NK : NK ;
+fun johtopa'a'to's_NK : NK ;
+fun johtosa'a'nto'_NK : NK ;
+fun johtoteema_NK : NK ;
+fun johtotroikka_NK : NK ;
+fun johtota'hti_NK : NK ;
+fun jonotuslappu_NK : NK ;
+fun jonotuslippu_NK : NK ;
+fun jonotuslista_NK : NK ;
+fun jonotusnumero_NK : NK ;
+fun jonotuspuhelin_NK : NK ;
+fun jonotusa'a'ni_NK : NK ;
+fun jonovuoristo_NK : NK ;
+fun jouhikangas_NK : NK ;
+fun jouhikannel_NK : NK ;
+fun jouhikantele_NK : NK ;
+fun jouhimato_NK : NK ;
+fun jouhipatja_NK : NK ;
+fun jouhisorsa_NK : NK ;
+fun jouhivihvila'_NK : NK ;
+fun joukkoanomus_NK : NK ;
+fun joukkoero_NK : NK ;
+fun joukkohauta_NK : NK ;
+fun joukkohautaus_NK : NK ;
+fun joukkohenki_NK : NK ;
+fun joukkohysteria_NK : NK ;
+fun joukkoilmio'_NK : NK ;
+fun joukkojakelu_NK : NK ;
+fun joukkokirje_NK : NK ;
+fun joukkokohtaus_NK : NK ;
+fun joukkokuolema_NK : NK ;
+fun joukkokysely_NK : NK ;
+fun joukkolaina_NK : NK ;
+fun joukkoliike_NK : NK ;
+fun joukkoliikenne_NK : NK ;
+fun joukkoliikennekaista_NK : NK ;
+fun joukkoliikenneva'line_NK : NK ;
+fun joukkola'hetys_NK : NK ;
+fun joukkomajoitus_NK : NK ;
+fun joukkomurha_NK : NK ;
+fun joukkomurhaaja_NK : NK ;
+fun joukkomuutto_NK : NK ;
+fun joukkopida'tys_NK : NK ;
+fun joukkopsykologia_NK : NK ;
+fun joukkopsykoosi_NK : NK ;
+fun joukkoruokailu_NK : NK ;
+fun joukkosielu_NK : NK ;
+fun joukkosiirto_NK : NK ;
+fun joukkosuggestio_NK : NK ;
+fun joukkotarkastus_NK : NK ;
+fun joukkotavara_NK : NK ;
+fun joukkotiedotus_NK : NK ;
+fun joukkotiedotusva'line_NK : NK ;
+fun joukkotoiminta_NK : NK ;
+fun joukkotuho_NK : NK ;
+fun joukkotuhoase_NK : NK ;
+fun joukkotuotanto_NK : NK ;
+fun joukkotuote_NK : NK ;
+fun joukkotyo'tto'myys_NK : NK ;
+fun joukkovelkakirjalaina_NK : NK ;
+fun joukkoviestin_NK : NK ;
+fun joukkoviestinta'_NK : NK ;
+fun joukkoviihde_NK : NK ;
+fun joukkovoima_NK : NK ;
+fun joukkoyksikko'_NK : NK ;
+fun joukkuehenki_NK : NK ;
+fun joukkuekilpailu_NK : NK ;
+fun joukkueluistelija_NK : NK ;
+fun joukkuemitali_NK : NK ;
+fun joukkuema'ki_NK : NK ;
+fun joukkuepeli_NK : NK ;
+fun joukkuerangaistus_NK : NK ;
+fun joukkueurheilu_NK : NK ;
+fun joukkueurheilulaji_NK : NK ;
+fun jouluaamu_NK : NK ;
+fun jouluaatto_NK : NK ;
+fun jouluaattoilta_NK : NK ;
+fun jouluapulainen_NK : NK ;
+fun jouluateria_NK : NK ;
+fun jouluglo'gi_NK : NK ;
+fun jouluikkuna_NK : NK ;
+fun jouluilta_NK : NK ;
+fun joulujuhla_NK : NK ;
+fun joulukaktus_NK : NK ;
+fun joulukala_NK : NK ;
+fun joulukalenteri_NK : NK ;
+fun joulukalkkuna_NK : NK ;
+fun joulukataja_NK : NK ;
+fun joulukatu_NK : NK ;
+fun joulukello_NK : NK ;
+fun joulukiire_NK : NK ;
+fun joulukinkku_NK : NK ;
+fun joulukirja_NK : NK ;
+fun joulukirkko_NK : NK ;
+fun joulukoriste_NK : NK ;
+fun joulukortti_NK : NK ;
+fun joulukuinen_NK : NK ;
+fun joulukukka_NK : NK ;
+fun joulukuu_NK : NK ;
+fun joulukuusi_NK : NK ;
+fun joulukynttila'_NK : NK ;
+fun joululahja_NK : NK ;
+fun joululahjapaketti_NK : NK ;
+fun joululaulu_NK : NK ;
+fun joululehti_NK : NK ;
+fun joululeikki_NK : NK ;
+fun joululiina_NK : NK ;
+fun joululoma_NK : NK ;
+fun joululyhde_NK : NK ;
+--? fun joulumarkkinat_NK : NK ;
+fun joulumerkki_NK : NK ;
+fun joulumyynti_NK : NK ;
+fun joulunumero_NK : NK ;
+fun jouluna'ytelma'_NK : NK ;
+fun jouluostos_NK : NK ;
+fun joulupaketti_NK : NK ;
+fun joulupaperi_NK : NK ;
+fun joulupata_NK : NK ;
+fun jouluporsas_NK : NK ;
+fun jouluposti_NK : NK ;
+fun joulupukki_NK : NK ;
+fun joulupuu_NK : NK ;
+fun joulupuuro_NK : NK ;
+fun joulupa'iva'_NK : NK ;
+fun joulupo'yta'_NK : NK ;
+fun jouluraha_NK : NK ;
+fun joulurauha_NK : NK ;
+fun jouluruno_NK : NK ;
+fun jouluruoka_NK : NK ;
+fun jouluruuhka_NK : NK ;
+fun jouluruusu_NK : NK ;
+fun joulusauna_NK : NK ;
+fun joulusesonki_NK : NK ;
+fun joulusiivous_NK : NK ;
+fun joulutodistus_NK : NK ;
+fun joulutonttu_NK : NK ;
+fun joulutorttu_NK : NK ;
+fun joulutunnelma_NK : NK ;
+fun jouluta'hti_NK : NK ;
+fun jouluviikko_NK : NK ;
+fun jouluvirsi_NK : NK ;
+fun jousiammunta_NK : NK ;
+fun jousiampuja_NK : NK ;
+fun jousikoneisto_NK : NK ;
+fun jousikvartetti_NK : NK ;
+fun jousikvartetto_NK : NK ;
+fun jousikvintetti_NK : NK ;
+fun jousikvintetto_NK : NK ;
+fun jousimies_NK : NK ;
+fun jousiorkesteri_NK : NK ;
+fun jousipatja_NK : NK ;
+fun jousipyssy_NK : NK ;
+fun jousisoitin_NK : NK ;
+fun jousisoittaja_NK : NK ;
+fun jousitrio_NK : NK ;
+fun jousivaaka_NK : NK ;
+fun jousiyhtye_NK : NK ;
+fun jousia'es_NK : NK ;
+fun joustinneule_NK : NK ;
+fun joustinneulos_NK : NK ;
+fun joustinpatja_NK : NK ;
+fun joustofrotee_NK : NK ;
+fun joustokangas_NK : NK ;
+fun joustokankainen_NK : NK ;
+fun joustolanka_NK : NK ;
+fun joustoliike_NK : NK ;
+fun joustopuskuri_NK : NK ;
+fun joustotunti_NK : NK ;
+fun joustotyo'_NK : NK ;
+fun joustovara_NK : NK ;
+fun joutenolo_NK : NK ;
+fun joutsenlaulu_NK : NK ;
+fun joutsenlisko_NK : NK ;
+fun jugendtalo_NK : NK ;
+fun jugendtyyli_NK : NK ;
+fun jugendtyylinen_NK : NK ;
+fun juhannusaatto_NK : NK ;
+fun juhannusilta_NK : NK ;
+fun juhannusjuhla_NK : NK ;
+fun juhannuskoivu_NK : NK ;
+fun juhannuskokko_NK : NK ;
+fun juhannuspyha'_NK : NK ;
+fun juhannuspa'iva'_NK : NK ;
+fun juhannusruis_NK : NK ;
+fun juhannusruusu_NK : NK ;
+fun juhannussalko_NK : NK ;
+fun juhannustaika_NK : NK ;
+fun juhannustuli_NK : NK ;
+fun juhannusviikko_NK : NK ;
+fun juhlaesitelma'_NK : NK ;
+fun juhlahumu_NK : NK ;
+fun juhlahuoneisto_NK : NK ;
+fun juhlaillallinen_NK : NK ;
+fun juhlajulkaisu_NK : NK ;
+fun juhlakalu_NK : NK ;
+fun juhlakenka'_NK : NK ;
+fun juhlakirja_NK : NK ;
+fun juhlakonsertti_NK : NK ;
+fun juhlakulkue_NK : NK ;
+fun juhlaliputus_NK : NK ;
+fun juhlamerkki_NK : NK ;
+fun juhlamieli_NK : NK ;
+fun juhlanumero_NK : NK ;
+fun juhlana'yta'nto'_NK : NK ;
+fun juhlapalvelu_NK : NK ;
+fun juhlapuhe_NK : NK ;
+fun juhlapuku_NK : NK ;
+fun juhlapukuinen_NK : NK ;
+fun juhlapyha'_NK : NK ;
+fun juhlapa'iva'_NK : NK ;
+fun juhlaraha_NK : NK ;
+fun juhlasaatto_NK : NK ;
+fun juhlasali_NK : NK ;
+fun juhlatilaisuus_NK : NK ;
+fun juhlatunnelma_NK : NK ;
+fun juhlatuuli_NK : NK ;
+fun juhlavalaistus_NK : NK ;
+fun juhlavieras_NK : NK ;
+fun juhlaviikko_NK : NK ;
+fun juhlavuosi_NK : NK ;
+fun juhlava'ki_NK : NK ;
+fun juhlayleiso'_NK : NK ;
+fun julistegraafikko_NK : NK ;
+fun julistekangas_NK : NK ;
+fun julistemainonta_NK : NK ;
+fun julistenauha_NK : NK ;
+fun julistetaide_NK : NK ;
+fun julistetaiteilija_NK : NK ;
+fun julistuskirja_NK : NK ;
+fun julkaisukelpoinen_NK : NK ;
+fun julkaisukielto_NK : NK ;
+fun julkaisukunto_NK : NK ;
+fun julkaisukynnys_NK : NK ;
+fun julkaisulupa_NK : NK ;
+fun julkaisuoikeus_NK : NK ;
+fun julkaisusarja_NK : NK ;
+fun julkaisutoiminta_NK : NK ;
+fun julkaisuvapaa_NK : NK ;
+fun julkaisuvuosi_NK : NK ;
+fun julkihuuto_NK : NK ;
+fun julkijumalaton_NK : NK ;
+fun julkilausuma_NK : NK ;
+fun julkipano_NK : NK ;
+fun julkipuhunta_NK : NK ;
+fun julkisivu_NK : NK ;
+fun julkisivuelementti_NK : NK ;
+fun julkisivutiili_NK : NK ;
+fun julkisoikeus_NK : NK ;
+fun julkisuusmylly_NK : NK ;
+fun julkitulo_NK : NK ;
+fun jumalakeskeinen_NK : NK ;
+fun jumalakuva_NK : NK ;
+fun jumalanpalvelusja'rjestys_NK : NK ;
+fun jumalasuhde_NK : NK ;
+fun jumaluusopillinen_NK : NK ;
+fun jumaluusoppi_NK : NK ;
+fun jumbofinaali_NK : NK ;
+fun jumbojetti_NK : NK ;
+fun jumbosija_NK : NK ;
+fun jumppavideo_NK : NK ;
+fun junaema'nta'_NK : NK ;
+fun junahenkilo'sto'_NK : NK ;
+fun junalautta_NK : NK ;
+fun junaliikenne_NK : NK ;
+fun junalippu_NK : NK ;
+fun junamatka_NK : NK ;
+fun junamies_NK : NK ;
+fun junarata_NK : NK ;
+fun junasuorittaja_NK : NK ;
+fun junaturma_NK : NK ;
+fun junavaunu_NK : NK ;
+fun junavuoro_NK : NK ;
+fun junayhteys_NK : NK ;
+fun juniorijoukkue_NK : NK ;
+fun junioritoiminta_NK : NK ;
+fun junioriurheilu_NK : NK ;
+fun junttapulla_NK : NK ;
+fun juoksuaskel_NK : NK ;
+fun juoksuhauta_NK : NK ;
+fun juoksuhiekka_NK : NK ;
+fun juoksujalka_NK : NK ;
+fun juoksujalkainen_NK : NK ;
+fun juoksukilpailu_NK : NK ;
+fun juoksuko'ysi_NK : NK ;
+fun juoksulanka_NK : NK ;
+fun juoksulankku_NK : NK ;
+fun juoksuleikki_NK : NK ;
+fun juoksulenkki_NK : NK ;
+fun juoksulista_NK : NK ;
+fun juoksumatto_NK : NK ;
+fun juoksumetri_NK : NK ;
+fun juoksunumero_NK : NK ;
+fun juoksupoika_NK : NK ;
+fun juoksupyo'ra'_NK : NK ;
+fun juoksurata_NK : NK ;
+fun juoksusilmukka_NK : NK ;
+fun juoksusolmu_NK : NK ;
+fun juoksutarha_NK : NK ;
+fun juoksutulos_NK : NK ;
+fun juoksutunti_NK : NK ;
+fun juoksutusmaha_NK : NK ;
+fun juoksutytto'_NK : NK ;
+fun juoksutyyli_NK : NK ;
+fun juomahimo_NK : NK ;
+fun juomakausi_NK : NK ;
+fun juomakierre_NK : NK ;
+fun juomalasi_NK : NK ;
+fun juomalaulu_NK : NK ;
+fun juomaraha_NK : NK ;
+fun juomaseura_NK : NK ;
+fun juomasuihku_NK : NK ;
+fun juomatapa_NK : NK ;
+fun juomavesi_NK : NK ;
+fun juomavesisa'ilio'_NK : NK ;
+fun juomukondomi_NK : NK ;
+fun juonimalmi_NK : NK ;
+fun juonina'ytelma'_NK : NK ;
+fun juoniseloste_NK : NK ;
+fun juontoreki_NK : NK ;
+--? fun juontosakset_NK : NK ;
+fun juontovintturi_NK : NK ;
+fun juoppohullu_NK : NK ;
+fun juoppohulluus_NK : NK ;
+fun juoppojuna_NK : NK ;
+fun juopporatti_NK : NK ;
+fun juopporenttu_NK : NK ;
+fun juopumuspida'tys_NK : NK ;
+fun juoruakka_NK : NK ;
+fun juorukalenteri_NK : NK ;
+fun juorukello_NK : NK ;
+fun juorupalsta_NK : NK ;
+fun juorutoimittaja_NK : NK ;
+fun juorua'mma'_NK : NK ;
+fun juotemetalli_NK : NK ;
+fun juotoskolvi_NK : NK ;
+fun juotossauma_NK : NK ;
+fun juotostina_NK : NK ;
+fun juottoallas_NK : NK ;
+fun juottorehu_NK : NK ;
+fun juottotina_NK : NK ;
+fun juottovasikka_NK : NK ;
+fun juovakoodi_NK : NK ;
+fun juovaspektri_NK : NK ;
+fun juppikulttuuri_NK : NK ;
+fun jussipaita_NK : NK ;
+fun juttutuuli_NK : NK ;
+fun juukeli_NK : NK ;
+fun juupeli_NK : NK ;
+fun juurakko_NK : NK ;
+fun juurakkoinen_NK : NK ;
+fun juurakkopuhdistamo_NK : NK ;
+fun juurakkopuhdistus_NK : NK ;
+fun juuresharja_NK : NK ;
+fun juuresveitsi_NK : NK ;
+fun juuriartisokka_NK : NK ;
+fun juuriela'in_NK : NK ;
+fun juuriharja_NK : NK ;
+fun juurihoito_NK : NK ;
+fun juurihuntu_NK : NK ;
+fun juurijalkainen_NK : NK ;
+fun juurikalvo_NK : NK ;
+fun juurikanava_NK : NK ;
+fun juurikarva_NK : NK ;
+fun juurikas_NK : NK ;
+fun juurikassokeri_NK : NK ;
+fun juurikasvi_NK : NK ;
+fun juurikori_NK : NK ;
+fun juurika'a'pa'_NK : NK ;
+fun juurilaho_NK : NK ;
+fun juurilauseke_NK : NK ;
+fun juurimato_NK : NK ;
+fun juurimatto_NK : NK ;
+fun juurimerkki_NK : NK ;
+fun juurimukula_NK : NK ;
+fun juurinystyra'_NK : NK ;
+fun juuriosa_NK : NK ;
+fun juuripaakku_NK : NK ;
+fun juuripaikka_NK : NK ;
+fun juuripuu_NK : NK ;
+fun juuriselleri_NK : NK ;
+fun juurita'yte_NK : NK ;
+fun juuriverso_NK : NK ;
+fun juurivesa_NK : NK ;
+fun juustoaine_NK : NK ;
+fun juustofondue_NK : NK ;
+fun juustofondyy_NK : NK ;
+fun juustoho'yla'_NK : NK ;
+fun juustoho'yla'menetelma'_NK : NK ;
+fun juustokakku_NK : NK ;
+fun juustokeha'_NK : NK ;
+fun juustokeitto_NK : NK ;
+fun juustokohokas_NK : NK ;
+fun juustokupu_NK : NK ;
+fun juustoleipa'_NK : NK ;
+fun juustomaito_NK : NK ;
+fun juustomeijeri_NK : NK ;
+fun juustomestari_NK : NK ;
+fun juustomunakas_NK : NK ;
+fun juustonappi_NK : NK ;
+fun juustopala_NK : NK ;
+fun juustopunkki_NK : NK ;
+fun juustoraaste_NK : NK ;
+fun juustosa'mpyla'_NK : NK ;
+fun juustotahko_NK : NK ;
+fun juustotanko_NK : NK ;
+fun juustotarjotin_NK : NK ;
+fun juustotorttu_NK : NK ;
+fun juustoveitsi_NK : NK ;
+fun juustoviipale_NK : NK ;
+fun juuttikangas_NK : NK ;
+fun juuttimatto_NK : NK ;
+fun juuttisa'kki_NK : NK ;
+fun jykeva'leukainen_NK : NK ;
+fun jykeva'tekoinen_NK : NK ;
+fun jymyjuttu_NK : NK ;
+fun jymymenestys_NK : NK ;
+fun jymypaukku_NK : NK ;
+fun jymyuutinen_NK : NK ;
+fun jymy_ylla'tys_NK : NK ;
+fun jyrkka'kaarteinen_NK : NK ;
+fun jyrkka'kattoinen_NK : NK ;
+fun jyrkka'luonteinen_NK : NK ;
+fun jyrkka'nousuinen_NK : NK ;
+fun jyrkka'otteinen_NK : NK ;
+fun jyrkka'piirteinen_NK : NK ;
+fun jyrkka'rantainen_NK : NK ;
+fun jyrkka'rinteinen_NK : NK ;
+fun jyrkka'sanainen_NK : NK ;
+fun jyrkka'sa'vyinen_NK : NK ;
+fun jyrsinkone_NK : NK ;
+fun jyrsintera'_NK : NK ;
+fun jyrsinturve_NK : NK ;
+fun jyta'jumppa_NK : NK ;
+fun jyta'musa_NK : NK ;
+fun jyta'musiikki_NK : NK ;
+fun jyvitysarvo_NK : NK ;
+fun jyva'luku_NK : NK ;
+fun ja'ka'la'kangas_NK : NK ;
+fun ja'ka'la'muru_NK : NK ;
+fun ja'ka'la'peite_NK : NK ;
+fun ja'ka'la'tyyppi_NK : NK ;
+fun ja'ljenno'skappale_NK : NK ;
+fun ja'lkiartikkeli_NK : NK ;
+fun ja'lkiehka'isy_NK : NK ;
+fun ja'lkihakkuu_NK : NK ;
+fun ja'lkihoito_NK : NK ;
+fun ja'lkihuolto_NK : NK ;
+fun ja'lkihuomautus_NK : NK ;
+fun ja'lkihypnoosi_NK : NK ;
+fun ja'lkijakso_NK : NK ;
+fun ja'lkijoukko_NK : NK ;
+fun ja'lkijuna_NK : NK ;
+fun ja'lkija'ristys_NK : NK ;
+fun ja'lkikaiku_NK : NK ;
+fun ja'lkikaiunta_NK : NK ;
+fun ja'lkikanto_NK : NK ;
+fun ja'lkikasvi_NK : NK ;
+fun ja'lkikasvu_NK : NK ;
+fun ja'lkikesa'_NK : NK ;
+fun ja'lkikirjoitus_NK : NK ;
+fun ja'lkikoira_NK : NK ;
+fun ja'lkikuva_NK : NK ;
+fun ja'lkikypsytys_NK : NK ;
+fun ja'lkika'sittely_NK : NK ;
+fun ja'lkika'teinen_NK : NK ;
+fun ja'lkika'ynti_NK : NK ;
+fun ja'lkilaskelma_NK : NK ;
+fun ja'lkilasku_NK : NK ;
+fun ja'lkilause_NK : NK ;
+fun ja'lkiliite_NK : NK ;
+fun ja'lkilypsy_NK : NK ;
+fun ja'lkila'mpo'_NK : NK ;
+fun ja'lkilo'yly_NK : NK ;
+fun ja'lkimaailma_NK : NK ;
+fun ja'lkimaine_NK : NK ;
+fun ja'lkimaininki_NK : NK ;
+fun ja'lkimaku_NK : NK ;
+--? fun ja'lkimarkkinat_NK : NK ;
+fun ja'lkimehu_NK : NK ;
+fun ja'lkina'yto's_NK : NK ;
+fun ja'lkiosa_NK : NK ;
+fun ja'lkipainos_NK : NK ;
+fun ja'lkipanttaus_NK : NK ;
+fun ja'lkipeli_NK : NK ;
+fun ja'lkipisto_NK : NK ;
+fun ja'lkipoltin_NK : NK ;
+fun ja'lkipoltto_NK : NK ;
+fun ja'lkipolvi_NK : NK ;
+fun ja'lkipuhe_NK : NK ;
+fun ja'lkipuinti_NK : NK ;
+fun ja'lkipuoli_NK : NK ;
+fun ja'lkipuolisko_NK : NK ;
+fun ja'lkipyykki_NK : NK ;
+fun ja'lkipa'a'_NK : NK ;
+fun ja'lkiruoka_NK : NK ;
+fun ja'lkiruokakastike_NK : NK ;
+fun ja'lkiruokakulho_NK : NK ;
+fun ja'lkiruokalautanen_NK : NK ;
+fun ja'lkiruokalusikka_NK : NK ;
+fun ja'lkiruokamalja_NK : NK ;
+fun ja'lkiruokaviini_NK : NK ;
+fun ja'lkisammutus_NK : NK ;
+fun ja'lkisato_NK : NK ;
+fun ja'lkiselostus_NK : NK ;
+fun ja'lkiselvittely_NK : NK ;
+fun ja'lkiseuraus_NK : NK ;
+fun ja'lkisuggestio_NK : NK ;
+fun ja'lkisupistus_NK : NK ;
+fun ja'lkisa'teily_NK : NK ;
+fun ja'lkisa'a'do's_NK : NK ;
+fun ja'lkitarkastus_NK : NK ;
+fun ja'lkitauti_NK : NK ;
+fun ja'lkiteollinen_NK : NK ;
+fun ja'lkitila_NK : NK ;
+fun ja'lkiuuni_NK : NK ;
+fun ja'lkiuunileipa'_NK : NK ;
+fun ja'lkivaatimus_NK : NK ;
+fun ja'lkivaatimusla'hetys_NK : NK ;
+fun ja'lkivaikutelma_NK : NK ;
+fun ja'lkivaikutus_NK : NK ;
+fun ja'lkivarmistus_NK : NK ;
+fun ja'lkiveloitus_NK : NK ;
+fun ja'lkiverotus_NK : NK ;
+fun ja'lkiviisas_NK : NK ;
+fun ja'lkiviisastelu_NK : NK ;
+fun ja'lkiviisaus_NK : NK ;
+fun ja'lkivuoto_NK : NK ;
+fun ja'lkia'a'nitys_NK : NK ;
+fun ja'lleenka'sittely_NK : NK ;
+fun ja'lleenka'ytto'_NK : NK ;
+fun ja'lleenmyyja'_NK : NK ;
+fun ja'lleenmyynti_NK : NK ;
+fun ja'lleenmyyntiarvo_NK : NK ;
+fun ja'lleenmyyntihinta_NK : NK ;
+fun ja'lleenrakennus_NK : NK ;
+fun ja'lleenvakuutus_NK : NK ;
+fun ja'lleenvieja'_NK : NK ;
+fun ja'lleenvienti_NK : NK ;
+fun ja'lsikerros_NK : NK ;
+fun ja'lsisolukko_NK : NK ;
+fun ja'nisela'in_NK : NK ;
+fun ja'nisemo_NK : NK ;
+fun ja'nisjahti_NK : NK ;
+fun ja'niskoira_NK : NK ;
+fun ja'niska'a'nno's_NK : NK ;
+fun ja'nismetsa'_NK : NK ;
+fun ja'nispaisti_NK : NK ;
+fun ja'nisrutto_NK : NK ;
+fun ja'nisra'ikka'_NK : NK ;
+fun ja'nnebetoni_NK : NK ;
+fun ja'nneheijaste_NK : NK ;
+fun ja'nnerefleksi_NK : NK ;
+fun ja'nnerepea'ma'_NK : NK ;
+fun ja'nnesaha_NK : NK ;
+fun ja'nnetulehdus_NK : NK ;
+fun ja'nnetuppi_NK : NK ;
+fun ja'nneva'li_NK : NK ;
+fun ja'nniteha'vio'_NK : NK ;
+fun ja'nnitemittari_NK : NK ;
+fun ja'nnitta'ja'tyyppi_NK : NK ;
+fun ja'nnitysfilmi_NK : NK ;
+fun ja'nnityskertomus_NK : NK ;
+fun ja'nnityskirja_NK : NK ;
+fun ja'nnitysmomentti_NK : NK ;
+fun ja'nnitysna'ytelma'_NK : NK ;
+fun ja'nnitysromaani_NK : NK ;
+fun ja'nnityssarja_NK : NK ;
+fun ja'nnitystila_NK : NK ;
+fun ja'no'jussi_NK : NK ;
+fun ja'no'pupu_NK : NK ;
+fun ja'rjestelma'kamera_NK : NK ;
+fun ja'rjestelma'lotto_NK : NK ;
+fun ja'rjestelma'veikkaus_NK : NK ;
+fun ja'rjestelyjuna_NK : NK ;
+fun ja'rjestelykoneisto_NK : NK ;
+fun ja'rjestelykyky_NK : NK ;
+fun ja'rjestelykykyinen_NK : NK ;
+fun ja'rjestelytaito_NK : NK ;
+fun ja'rjestelyvara_NK : NK ;
+fun ja'rjestysasia_NK : NK ;
+fun ja'rjestysha'irio'_NK : NK ;
+fun ja'rjestysluku_NK : NK ;
+fun ja'rjestyslukusana_NK : NK ;
+fun ja'rjestysmies_NK : NK ;
+fun ja'rjestysnumero_NK : NK ;
+fun ja'rjestyspartio_NK : NK ;
+fun ja'rjestyspoliisi_NK : NK ;
+fun ja'rjestyssa'a'nto'_NK : NK ;
+fun ja'rjestysvalta_NK : NK ;
+fun ja'rjesto'demokratia_NK : NK ;
+fun ja'rjesto'ela'ma'_NK : NK ;
+fun ja'rjesto'ho'yla'_NK : NK ;
+fun ja'rjesto'ihminen_NK : NK ;
+fun ja'rjesto'jyra'_NK : NK ;
+fun ja'rjesto'lakko_NK : NK ;
+fun ja'rjesto'lehti_NK : NK ;
+fun ja'rjesto'sihteeri_NK : NK ;
+fun ja'rjesto'toiminta_NK : NK ;
+fun ja'rkikulta_NK : NK ;
+fun ja'rkimies_NK : NK ;
+fun ja'rkiperuste_NK : NK ;
+fun ja'rkipera'inen_AK : AK ;
+fun ja'rkipera'isyys_NK : NK ;
+fun ja'rkipuhe_NK : NK ;
+fun ja'rkisyy_NK : NK ;
+fun ja'rviallas_NK : NK ;
+fun ja'rvialue_NK : NK ;
+fun ja'rvikaisla_NK : NK ;
+fun ja'rvikala_NK : NK ;
+fun ja'rvikalastus_NK : NK ;
+fun ja'rvikorte_NK : NK ;
+fun ja'rviliikenne_NK : NK ;
+fun ja'rvilohi_NK : NK ;
+fun ja'rvimaisema_NK : NK ;
+fun ja'rvimalmi_NK : NK ;
+fun ja'rvimatkailu_NK : NK ;
+fun ja'rvireitti_NK : NK ;
+fun ja'rvirikas_NK : NK ;
+fun ja'rviruoko_NK : NK ;
+fun ja'rviseutu_NK : NK ;
+fun ja'rvisieni_NK : NK ;
+fun ja'rvisimpukka_NK : NK ;
+fun ja'rvisa'tkin_NK : NK ;
+fun ja'rvitaimen_NK : NK ;
+fun ja'rvivene_NK : NK ;
+fun ja'rvivesi_NK : NK ;
+fun ja'senalennus_NK : NK ;
+fun ja'senetu_NK : NK ;
+fun ja'senhankinta_NK : NK ;
+fun ja'senhinta_NK : NK ;
+fun ja'senja'rjesto'_NK : NK ;
+fun ja'senkirja_NK : NK ;
+fun ja'senkortti_NK : NK ;
+fun ja'senkunta_NK : NK ;
+fun ja'senlehti_NK : NK ;
+fun ja'senluettelo_NK : NK ;
+fun ja'senmaa_NK : NK ;
+fun ja'senmaksu_NK : NK ;
+fun ja'senmerkki_NK : NK ;
+fun ja'senma'a'ra'_NK : NK ;
+fun ja'senruoho_NK : NK ;
+fun ja'senseura_NK : NK ;
+fun ja'sentarjous_NK : NK ;
+fun ja'senvaltio_NK : NK ;
+fun ja'senyhdistys_NK : NK ;
+fun ja'sena'a'nestys_NK : NK ;
+fun ja'teaine_NK : NK ;
+fun ja'teasema_NK : NK ;
+fun ja'teastia_NK : NK ;
+fun ja'teauto_NK : NK ;
+fun ja'tehuolto_NK : NK ;
+fun ja'tehuoltorikkomus_NK : NK ;
+fun ja'tehuoltorikos_NK : NK ;
+fun ja'tekuilu_NK : NK ;
+fun ja'tekuormitus_NK : NK ;
+fun ja'telaitos_NK : NK ;
+fun ja'telasi_NK : NK ;
+fun ja'telauta_NK : NK ;
+fun ja'telipea'_NK : NK ;
+fun ja'teliuos_NK : NK ;
+fun ja'tela'mpo'_NK : NK ;
+fun ja'temylly_NK : NK ;
+fun ja'tema'ki_NK : NK ;
+fun ja'tepaperi_NK : NK ;
+fun ja'tepuristin_NK : NK ;
+fun ja'tepuu_NK : NK ;
+fun ja'tesanko_NK : NK ;
+fun ja'tesa'ilio'_NK : NK ;
+fun ja'tesa'kki_NK : NK ;
+fun ja'tevarasto_NK : NK ;
+fun ja'tevaunu_NK : NK ;
+fun ja'tevaunukaappi_NK : NK ;
+fun ja'tevesi_NK : NK ;
+fun ja'tevesikuormitus_NK : NK ;
+fun ja'tevesimaksu_NK : NK ;
+fun ja'teo'ljy_NK : NK ;
+fun ja'ttikasvu_NK : NK ;
+fun ja'ttimenestys_NK : NK ;
+fun ja'ttipotti_NK : NK ;
+fun ja'ttiputki_NK : NK ;
+fun ja'ttisipuli_NK : NK ;
+fun ja'ttisolu_NK : NK ;
+fun ja'ttitankkeri_NK : NK ;
+fun ja'ttivatukka_NK : NK ;
+fun ja'tto'puu_NK : NK ;
+fun ja'tto'pa'iva'_NK : NK ;
+fun ja'tto'reuna_NK : NK ;
+fun ja'ykistysleikkaus_NK : NK ;
+fun ja'ykka'kouristus_NK : NK ;
+fun ja'ykka'kouristusbakteeri_NK : NK ;
+fun ja'ykka'kouristusrokotus_NK : NK ;
+fun ja'ykka'liikkeinen_NK : NK ;
+fun ja'ykka'luonteinen_NK : NK ;
+fun ja'ykka'niska_NK : NK ;
+fun ja'ykka'niskainen_NK : NK ;
+fun ja'a'aavikko_NK : NK ;
+fun ja'a'baletti_NK : NK ;
+fun ja'a'este_NK : NK ;
+fun ja'a'etikka_NK : NK ;
+fun ja'a'halli_NK : NK ;
+fun ja'a'hdytysilma_NK : NK ;
+fun ja'a'hdytyskone_NK : NK ;
+fun ja'a'hdytyskoneisto_NK : NK ;
+fun ja'a'hdytyslaite_NK : NK ;
+fun ja'a'hdytysneste_NK : NK ;
+fun ja'a'hdytysvaunu_NK : NK ;
+fun ja'a'helmi_NK : NK ;
+fun ja'a'hile_NK : NK ;
+fun ja'a'hyaitio_NK : NK ;
+fun ja'a'hypenkki_NK : NK ;
+fun ja'a'hyrangaistus_NK : NK ;
+fun ja'a'kaappi_NK : NK ;
+fun ja'a'kaappikylma'_NK : NK ;
+fun ja'a'kaappimargariini_NK : NK ;
+fun ja'a'kahvi_NK : NK ;
+fun ja'a'kaira_NK : NK ;
+fun ja'a'kalikka_NK : NK ;
+fun ja'a'karhu_NK : NK ;
+fun ja'a'kausi_NK : NK ;
+fun ja'a'kautinen_NK : NK ;
+fun ja'a'keli_NK : NK ;
+fun ja'a'kentta'_NK : NK ;
+fun ja'a'kide_NK : NK ;
+fun ja'a'kiekko_NK : NK ;
+fun ja'a'kiekkojoukkue_NK : NK ;
+fun ja'a'kiekkokaukalo_NK : NK ;
+fun ja'a'kiekkokentta'_NK : NK ;
+fun ja'a'kiekkomaila_NK : NK ;
+fun ja'a'kiekkopeli_NK : NK ;
+fun ja'a'kiita'ja'_NK : NK ;
+fun ja'a'kukka_NK : NK ;
+fun ja'a'kuutio_NK : NK ;
+fun ja'a'kylma'_NK : NK ;
+fun ja'a'ka'riliike_NK : NK ;
+fun ja'a'ka'ripataljoona_NK : NK ;
+fun ja'a'ka'riupseeri_NK : NK ;
+fun ja'a'lasi_NK : NK ;
+fun ja'a'lauta_NK : NK ;
+fun ja'a'lautailu_NK : NK ;
+fun ja'a'lautta_NK : NK ;
+fun ja'a'lohkare_NK : NK ;
+fun ja'a'maksu_NK : NK ;
+fun ja'a'maksuluokka_NK : NK ;
+fun ja'a'meri_NK : NK ;
+fun ja'a'murska_NK : NK ;
+fun ja'a'ma'maksu_NK : NK ;
+fun ja'a'naskali_NK : NK ;
+fun ja'a'nno'sera'_NK : NK ;
+fun ja'a'nno'skappale_NK : NK ;
+fun ja'a'nno'slopuke_NK : NK ;
+fun ja'a'nno'spala_NK : NK ;
+fun ja'a'nno'spari_NK : NK ;
+fun ja'a'nno'svero_NK : NK ;
+fun ja'a'pala_NK : NK ;
+fun ja'a'palalokerikko_NK : NK ;
+--? fun ja'a'palapihdit_NK : NK ;
+fun ja'a'palapussi_NK : NK ;
+fun ja'a'pallo_NK : NK ;
+fun ja'a'palloilija_NK : NK ;
+fun ja'a'palloilu_NK : NK ;
+fun ja'a'pallojoukkue_NK : NK ;
+fun ja'a'pallokentta'_NK : NK ;
+fun ja'a'pallomaila_NK : NK ;
+fun ja'a'pato_NK : NK ;
+fun ja'a'peite_NK : NK ;
+fun ja'a'polte_NK : NK ;
+fun ja'a'puikko_NK : NK ;
+fun ja'a'purjehdus_NK : NK ;
+fun ja'a'pussi_NK : NK ;
+fun ja'a'pyynti_NK : NK ;
+fun ja'a'raappa_NK : NK ;
+fun ja'a'rata_NK : NK ;
+fun ja'a'riite_NK : NK ;
+fun ja'a'ra'pa'inen_AK : AK ;
+fun ja'a'ra'pa'a'_NK : NK ;
+fun ja'a'ro'ykkio'_NK : NK ;
+fun ja'a'salaatti_NK : NK ;
+fun ja'a'show_NK : NK ;
+fun ja'a'sohjo_NK : NK ;
+fun ja'a'stadion_NK : NK ;
+fun ja'a'sumu_NK : NK ;
+fun ja'a'surfaus_NK : NK ;
+fun ja'a'tanssi_NK : NK ;
+fun ja'a'tee_NK : NK ;
+fun ja'a'telo'annos_NK : NK ;
+fun ja'a'telo'baari_NK : NK ;
+fun ja'a'telo'kakku_NK : NK ;
+fun ja'a'telo'kauha_NK : NK ;
+fun ja'a'telo'kioski_NK : NK ;
+fun ja'a'telo'koju_NK : NK ;
+fun ja'a'telo'leivos_NK : NK ;
+fun ja'a'telo'puikko_NK : NK ;
+fun ja'a'telo'sooda_NK : NK ;
+fun ja'a'telo'tikku_NK : NK ;
+fun ja'a'telo'torttu_NK : NK ;
+fun ja'a'telo'tuutti_NK : NK ;
+fun ja'a'telo'to'ttero'_NK : NK ;
+fun ja'a'tie_NK : NK ;
+fun ja'a'tiedotus_NK : NK ;
+fun ja'a'tilanne_NK : NK ;
+fun ja'a'tuura_NK : NK ;
+fun ja'a'urheilu_NK : NK ;
+fun ja'a'vahvistus_NK : NK ;
+fun ja'a'vesi_NK : NK ;
+fun ja'a'virta_NK : NK ;
+fun ja'a'vuori_NK : NK ;
+fun ja'a'vuorisalaatti_NK : NK ;
+fun jo'ro'jukka_NK : NK ;
+fun kaaderipuolue_NK : NK ;
+fun kaakaojauhe_NK : NK ;
+fun kaakaojuoma_NK : NK ;
+fun kaakaoliko'o'ri_NK : NK ;
+fun kaakaopapu_NK : NK ;
+fun kaakaopuu_NK : NK ;
+fun kaakaorasva_NK : NK ;
+fun kaakelilaatta_NK : NK ;
+fun kaakelisavi_NK : NK ;
+fun kaakeliuuni_NK : NK ;
+fun kaalikeitto_NK : NK ;
+fun kaalika'rpa'nen_NK : NK ;
+fun kaalika'a'ryle_NK : NK ;
+fun kaalilaatikko_NK : NK ;
+fun kaalimaa_NK : NK ;
+fun kaalimato_NK : NK ;
+fun kaalipiirakka_NK : NK ;
+fun kaamosmasennus_NK : NK ;
+fun kaaosmainen_NK : NK ;
+fun kaaosteoria_NK : NK ;
+fun kaaostila_NK : NK ;
+fun kaaostutkimus_NK : NK ;
+fun kaapelialus_NK : NK ;
+fun kaapelikanava_NK : NK ;
+fun kaapelikela_NK : NK ;
+fun kaapelikenka'_NK : NK ;
+fun kaapelila'hetys_NK : NK ;
+fun kaapelitelevisio_NK : NK ;
+fun kaapeliverkko_NK : NK ;
+fun kaapparikapteeni_NK : NK ;
+fun kaapparilaiva_NK : NK ;
+fun kaappausdraama_NK : NK ;
+fun kaappaushanke_NK : NK ;
+fun kaappausyritys_NK : NK ;
+fun kaappijuoppo_NK : NK ;
+fun kaappikello_NK : NK ;
+fun kaappipakastin_NK : NK ;
+fun kaappisa'nky_NK : NK ;
+fun kaappitarkastus_NK : NK ;
+fun kaarevatera'inen_NK : NK ;
+fun kaarevuussa'de_NK : NK ;
+fun kaariaste_NK : NK ;
+fun kaarihitsaus_NK : NK ;
+fun kaariholvi_NK : NK ;
+fun kaarika'yta'va'_NK : NK ;
+fun kaarilamppu_NK : NK ;
+fun kaarilaukaus_NK : NK ;
+fun kaarimalja_NK : NK ;
+fun kaariminuutti_NK : NK ;
+fun kaaripallo_NK : NK ;
+fun kaaripuu_NK : NK ;
+fun kaaripyssy_NK : NK ;
+fun kaarisaha_NK : NK ;
+fun kaarisekunti_NK : NK ;
+fun kaarisilta_NK : NK ;
+fun kaarisulje_NK : NK ;
+fun kaarisulku_NK : NK ;
+fun kaarisulkumerkki_NK : NK ;
+fun kaarituki_NK : NK ;
+fun kaarituli_NK : NK ;
+fun kaariviiva_NK : NK ;
+fun kaarnakuoriainen_NK : NK ;
+fun kaarnalaiva_NK : NK ;
+fun kaarnavene_NK : NK ;
+fun kaarresa'de_NK : NK ;
+fun kaartilainen_NK : NK ;
+fun kaartoliike_NK : NK ;
+fun kaasuammus_NK : NK ;
+fun kaasuase_NK : NK ;
+fun kaasubetoni_NK : NK ;
+fun kaasuhana_NK : NK ;
+fun kaasuhella_NK : NK ;
+fun kaasuhitsaus_NK : NK ;
+fun kaasujalka_NK : NK ;
+fun kaasujohto_NK : NK ;
+fun kaasukammio_NK : NK ;
+fun kaasukeha'_NK : NK ;
+fun kaasukeitin_NK : NK ;
+fun kaasukello_NK : NK ;
+fun kaasukuolio_NK : NK ;
+fun kaasulaitos_NK : NK ;
+fun kaasulamppu_NK : NK ;
+fun kaasuleikkaus_NK : NK ;
+fun kaasuliekki_NK : NK ;
+fun kaasuliesi_NK : NK ;
+fun kaasumainen_NK : NK ;
+fun kaasumittari_NK : NK ;
+fun kaasumoottori_NK : NK ;
+fun kaasumyrkytys_NK : NK ;
+fun kaasunaamari_NK : NK ;
+fun kaasupistooli_NK : NK ;
+fun kaasupoljin_NK : NK ;
+fun kaasupullo_NK : NK ;
+fun kaasupurkaus_NK : NK ;
+fun kaasuputki_NK : NK ;
+fun kaasuseos_NK : NK ;
+fun kaasusota_NK : NK ;
+fun kaasusa'ilio'_NK : NK ;
+fun kaasutinmoottori_NK : NK ;
+fun kaasuturbiini_NK : NK ;
+fun kaasuvalo_NK : NK ;
+fun kaasuo'ljy_NK : NK ;
+fun kaatoallas_NK : NK ;
+fun kaatoka'nni_NK : NK ;
+fun kaatolava_NK : NK ;
+fun kaatolupa_NK : NK ;
+fun kaatopaikka_NK : NK ;
+fun kaatopaikkakaasu_NK : NK ;
+fun kaatoreuna_NK : NK ;
+fun kaatoryhma'_NK : NK ;
+fun kaatosade_NK : NK ;
+fun kaavakuva_NK : NK ;
+fun kaavamainen_AK : AK ;
+fun kaavamuutos_NK : NK ;
+fun kaavanimi_NK : NK ;
+fun kaavanimisto'_NK : NK ;
+fun kaavapaperi_NK : NK ;
+fun kaavinlevy_NK : NK ;
+fun kaavinrauta_NK : NK ;
+fun kaaviokuva_NK : NK ;
+fun kaaviopiirros_NK : NK ;
+fun kaavoitusalue_NK : NK ;
+fun kabareeohjelma_NK : NK ;
+fun kabinettihallitus_NK : NK ;
+fun kabinettikysymys_NK : NK ;
+fun kabinettipolitiikka_NK : NK ;
+fun kabotaasiliikenne_NK : NK ;
+fun kademieli_NK : NK ;
+fun kadettikoulu_NK : NK ;
+fun kadettikunta_NK : NK ;
+fun kadettiupseeri_NK : NK ;
+fun kadmiumkelta_NK : NK ;
+fun kadmiumkeltainen_NK : NK ;
+fun kahdeksankertainen_NK : NK ;
+fun kahdeksankulmio_NK : NK ;
+fun kahdeksankymmenta'luku_NK : NK ;
+fun kahdeksankymmenta'vuotias_NK : NK ;
+fun kahdeksantoistavuotias_NK : NK ;
+fun kahdeksantuntinen_NK : NK ;
+fun kahdeksanvuotias_NK : NK ;
+fun kahdeksanvuotinen_NK : NK ;
+fun kahdeksaskymmenes_NK : NK ;
+fun kahdeksasosa_NK : NK ;
+fun kahdeksasosanuotti_NK : NK ;
+fun kahdeksassadas_NK : NK ;
+fun kahdenarvoinen_NK : NK ;
+fun kahdenkertainen_NK : NK ;
+fun kahdenkeskinen_AK : AK ;
+fun kahdenlaatuinen_NK : NK ;
+fun kahdenlainen_NK : NK ;
+fun kahdentuma_NK : NK ;
+fun kahdenva'linen_NK : NK ;
+fun kahdeskymmenes_NK : NK ;
+fun kahdeskymmeneskahdes_NK : NK ;
+fun kahdeskymmenestoinen_NK : NK ;
+fun kahdeskymmenesyhdes_NK : NK ;
+fun kahdesosa_NK : NK ;
+fun kahdessadas_NK : NK ;
+fun kahlauspaikka_NK : NK ;
+fun kahlekoira_NK : NK ;
+fun kahlekuningas_NK : NK ;
+fun kahluuallas_NK : NK ;
+--? fun kahluuhousut_NK : NK ;
+fun kahluujalka_NK : NK ;
+fun kahluupaikka_NK : NK ;
+fun kahluusaapas_NK : NK ;
+fun kahtalainen_NK : NK ;
+fun kahtiajako_NK : NK ;
+fun kahvelipurje_NK : NK ;
+fun kahviaamiainen_NK : NK ;
+fun kahviastiasto_NK : NK ;
+fun kahviautomaatti_NK : NK ;
+fun kahvibaari_NK : NK ;
+fun kahvihammas_NK : NK ;
+fun kahviherne_NK : NK ;
+fun kahvijauhe_NK : NK ;
+fun kahvijauho_NK : NK ;
+fun kahvikakku_NK : NK ;
+fun kahvikalusto_NK : NK ;
+fun kahvikannu_NK : NK ;
+fun kahvikerma_NK : NK ;
+fun kahvikoju_NK : NK ;
+fun kahvikonsertti_NK : NK ;
+fun kahvikulta_NK : NK ;
+fun kahvikupillinen_NK : NK ;
+fun kahvikuppi_NK : NK ;
+fun kahvikuppineuroosi_NK : NK ;
+fun kahvikuppipari_NK : NK ;
+fun kahvikupponen_NK : NK ;
+fun kahvilaatu_NK : NK ;
+fun kahvileipa'_NK : NK ;
+fun kahvilusikka_NK : NK ;
+fun kahvimuki_NK : NK ;
+fun kahvimylly_NK : NK ;
+fun kahvipaketti_NK : NK ;
+fun kahvipannu_NK : NK ;
+fun kahvipapu_NK : NK ;
+fun kahvipensas_NK : NK ;
+fun kahviplantaasi_NK : NK ;
+fun kahvipuu_NK : NK ;
+fun kahvipo'yta'_NK : NK ;
+fun kahvisato_NK : NK ;
+fun kahvisekoitus_NK : NK ;
+fun kahvitarjoilu_NK : NK ;
+fun kahvitauko_NK : NK ;
+fun kahvitilaisuus_NK : NK ;
+fun kahvitilkka_NK : NK ;
+fun kahvitunti_NK : NK ;
+fun kahvivesi_NK : NK ;
+fun kahviviljelma'_NK : NK ;
+fun kahvio'ljy_NK : NK ;
+fun kaidekoukku_NK : NK ;
+fun kaidepuu_NK : NK ;
+fun kaihileikkaus_NK : NK ;
+fun kaihomieli_NK : NK ;
+fun kaikinpuolinen_NK : NK ;
+fun kaikkinainen_NK : NK ;
+fun kaikkina'keva'_NK : NK ;
+fun kaikkiruokainen_NK : NK ;
+fun kaikkiruokaisuus_NK : NK ;
+fun kaikkitieta'va'_NK : NK ;
+fun kaikkivaltias_NK : NK ;
+fun kaikkivaltius_NK : NK ;
+fun kaikkivoipa_NK : NK ;
+fun kaikuinen_NK : NK ;
+fun kaikukartoitus_NK : NK ;
+fun kaikukoppa_NK : NK ;
+fun kaikukuvaus_NK : NK ;
+fun kaikulaite_NK : NK ;
+fun kaikuluotain_NK : NK ;
+fun kaikuluotaus_NK : NK ;
+fun kaikupohja_NK : NK ;
+fun kaikusuppilo_NK : NK ;
+fun kaikutausta_NK : NK ;
+fun kaikututkimus_NK : NK ;
+fun kaikuva_AK : AK ;
+fun kainalohiki_NK : NK ;
+fun kainalokotelo_NK : NK ;
+fun kainalokuoppa_NK : NK ;
+fun kainalola'mpo'_NK : NK ;
+fun kainalosauva_NK : NK ;
+fun kainostelu_NK : NK ;
+fun kaipuu_NK : NK ;
+fun kairausna'yte_NK : NK ;
+fun kairausputki_NK : NK ;
+fun kaislamatto_NK : NK ;
+fun kaistalehakkuu_NK : NK ;
+fun kaistapa'inen_NK : NK ;
+fun kaistapa'a'_NK : NK ;
+fun kaistaviiva_NK : NK ;
+fun kaitafilmaaja_NK : NK ;
+fun kaitafilmaus_NK : NK ;
+fun kaitafilmi_NK : NK ;
+fun kaitafilmikamera_NK : NK ;
+fun kaitakasvoinen_NK : NK ;
+fun kaitale_NK : NK ;
+fun kaitaliina_NK : NK ;
+fun kaitaluinen_NK : NK ;
+fun kaitsija_NK : NK ;
+fun kaiutinauto_NK : NK ;
+fun kaiutinpuhelin_NK : NK ;
+fun kaivaja_NK : NK ;
+fun kaiverrusneula_NK : NK ;
+fun kaiverrustyo'_NK : NK ;
+fun kaivinkone_NK : NK ;
+fun kaivosaukko_NK : NK ;
+fun kaivosjuna_NK : NK ;
+fun kaivoskaasu_NK : NK ;
+fun kaivoskuilu_NK : NK ;
+fun kaivoskuormain_NK : NK ;
+fun kaivoska'yta'va'_NK : NK ;
+fun kaivosmies_NK : NK ;
+fun kaivospo'lkky_NK : NK ;
+fun kaivosteollisuus_NK : NK ;
+fun kaivostyo'la'inen_NK : NK ;
+fun kaivosyhtio'_NK : NK ;
+fun kaivovesi_NK : NK ;
+fun kaivukone_NK : NK ;
+fun kaivutyo'_NK : NK ;
+fun kajaalikyna'_NK : NK ;
+fun kajakkikaksikko_NK : NK ;
+fun kajakkiyksikko'_NK : NK ;
+fun kajeontelo_NK : NK ;
+fun kakaramainen_NK : NK ;
+fun kakiluumu_NK : NK ;
+fun kakkaha'ta'_NK : NK ;
+fun kakkukahvi_NK : NK ;
+fun kakkulapio_NK : NK ;
+fun kakkumaskara_NK : NK ;
+fun kakkuotin_NK : NK ;
+fun kakkupala_NK : NK ;
+fun kakkupaperi_NK : NK ;
+fun kakkupohja_NK : NK ;
+fun kakkupuuteri_NK : NK ;
+fun kakkutaikina_NK : NK ;
+fun kakkuvuoka_NK : NK ;
+fun kaksiarvoinen_NK : NK ;
+fun kaksiavioinen_NK : NK ;
+fun kaksiavioisuus_NK : NK ;
+fun kaksihenkinen_NK : NK ;
+fun kaksijakoinen_NK : NK ;
+fun kaksikaistainen_NK : NK ;
+fun kaksikamarinen_NK : NK ;
+fun kaksikasvoinen_NK : NK ;
+fun kaksikielinen_NK : NK ;
+fun kaksikielisyys_NK : NK ;
+fun kaksikylkinen_NK : NK ;
+fun kaksikymmenta'luku_NK : NK ;
+fun kaksikymmenta'vuotias_NK : NK ;
+fun kaksikymmenta'yksi_NK : NK ;
+fun kaksikymppinen_NK : NK ;
+fun kaksilahkeinen_NK : NK ;
+fun kaksilapainen_NK : NK ;
+fun kaksilevyinen_NK : NK ;
+fun kaksimielisyys_NK : NK ;
+fun kaksinaamainen_NK : NK ;
+fun kaksinainen_NK : NK ;
+fun kaksinapainen_AK : AK ;
+fun kaksinapaisuus_NK : NK ;
+fun kaksineuvoinen_NK : NK ;
+fun kaksiniitinen_NK : NK ;
+fun kaksinkamppailu_NK : NK ;
+fun kaksinkertainen_AK : AK ;
+fun kaksinlaulu_NK : NK ;
+fun kaksinna'ko'_NK : NK ;
+fun kaksinpeli_NK : NK ;
+fun kaksinpuhelu_NK : NK ;
+fun kaksintaistelija_NK : NK ;
+fun kaksintaistelu_NK : NK ;
+fun kaksintaisteluhaaste_NK : NK ;
+fun kaksiosainen_NK : NK ;
+fun kaksipiippuinen_NK : NK ;
+fun kaksipuolinen_NK : NK ;
+fun kaksipyo'ra'inen_NK : NK ;
+fun kaksirivinen_NK : NK ;
+fun kaksirunkoinen_NK : NK ;
+fun kaksisataavuotinen_NK : NK ;
+fun kaksisiipinen_NK : NK ;
+fun kaksisirkkainen_NK : NK ;
+fun kaksisuuntainen_NK : NK ;
+fun kaksitahoinen_NK : NK ;
+fun kaksitahtinen_NK : NK ;
+fun kaksitaso_NK : NK ;
+fun kaksitehoinen_NK : NK ;
+fun kaksitera'inen_NK : NK ;
+fun kaksitoiminen_NK : NK ;
+fun kaksituhattaluku_NK : NK ;
+fun kaksituntinen_NK : NK ;
+fun kaksiulotteinen_NK : NK ;
+fun kaksivaiheinen_NK : NK ;
+fun kaksivartinen_NK : NK ;
+fun kaksiviivainen_NK : NK ;
+fun kaksivuoroinen_NK : NK ;
+fun kaksivuotias_NK : NK ;
+fun kaksivuotinen_NK : NK ;
+fun kaksiva'rinen_NK : NK ;
+fun kaksia'a'ninen_NK : NK ;
+fun kaktusviikuna_NK : NK ;
+fun kalafilee_NK : NK ;
+fun kalahaarukka_NK : NK ;
+fun kalahaavi_NK : NK ;
+fun kalahalli_NK : NK ;
+fun kalaharava_NK : NK ;
+fun kalahauta_NK : NK ;
+fun kalahissi_NK : NK ;
+fun kalahyppy_NK : NK ;
+fun kalahyytelo'_NK : NK ;
+fun kalailma_NK : NK ;
+fun kalajalostamo_NK : NK ;
+fun kalajaloste_NK : NK ;
+fun kalajauho_NK : NK ;
+fun kalajuttu_NK : NK ;
+fun kalakanta_NK : NK ;
+fun kalakauppa_NK : NK ;
+fun kalakauppias_NK : NK ;
+fun kalakeitto_NK : NK ;
+fun kalakoukku_NK : NK ;
+fun kalakouru_NK : NK ;
+fun kalakukko_NK : NK ;
+fun kalakuolema_NK : NK ;
+fun kalalaatikko_NK : NK ;
+fun kalalaji_NK : NK ;
+fun kalalammikko_NK : NK ;
+fun kalalanka_NK : NK ;
+fun kalalauta_NK : NK ;
+fun kalaliemi_NK : NK ;
+fun kalalisko_NK : NK ;
+fun kalalokki_NK : NK ;
+fun kalamaja_NK : NK ;
+fun kalamauste_NK : NK ;
+fun kalamies_NK : NK ;
+fun kalamuhennos_NK : NK ;
+fun kalamureke_NK : NK ;
+fun kalanruotokangas_NK : NK ;
+fun kalanruotokuvio_NK : NK ;
+fun kalansilma'objektiivi_NK : NK ;
+fun kalansuomutauti_NK : NK ;
+fun kalanviljelylaitos_NK : NK ;
+fun kalaonni_NK : NK ;
+fun kalapaikka_NK : NK ;
+fun kalapakaste_NK : NK ;
+fun kalaparvi_NK : NK ;
+fun kalaporras_NK : NK ;
+fun kalapuikko_NK : NK ;
+fun kalapulla_NK : NK ;
+fun kalapyo'rykka'_NK : NK ;
+fun kalaravintola_NK : NK ;
+fun kalarehu_NK : NK ;
+fun kalaretki_NK : NK ;
+fun kalarikas_NK : NK ;
+fun kalaruoka_NK : NK ;
+fun kalasaalis_NK : NK ;
+--? fun kalasakset_NK : NK ;
+fun kalasalaatti_NK : NK ;
+fun kalasatama_NK : NK ;
+fun kalasoppa_NK : NK ;
+fun kalastajakyla'_NK : NK ;
+fun kalastajalanka_NK : NK ;
+fun kalastajava'esto'_NK : NK ;
+fun kalastusalue_NK : NK ;
+fun kalastusalus_NK : NK ;
+fun kalastuskortti_NK : NK ;
+fun kalastuskunta_NK : NK ;
+fun kalastuslaiva_NK : NK ;
+fun kalastusmatkailu_NK : NK ;
+fun kalastusoikeus_NK : NK ;
+fun kalastusraja_NK : NK ;
+fun kalastusretki_NK : NK ;
+fun kalastusurheilu_NK : NK ;
+fun kalastusvene_NK : NK ;
+fun kalastusvyo'hyke_NK : NK ;
+fun kalasumppu_NK : NK ;
+fun kalasyo'tti_NK : NK ;
+fun kalasa'ilyke_NK : NK ;
+fun kalasa'a'ksi_NK : NK ;
+fun kalasa'a'ski_NK : NK ;
+fun kalatalous_NK : NK ;
+fun kalatie_NK : NK ;
+fun kalatiira_NK : NK ;
+fun kalatiski_NK : NK ;
+fun kalatori_NK : NK ;
+fun kalatuote_NK : NK ;
+fun kalata'i_NK : NK ;
+fun kalaveitsi_NK : NK ;
+fun kalavelka_NK : NK ;
+fun kalaverkko_NK : NK ;
+fun kalavesi_NK : NK ;
+fun kaleeriorja_NK : NK ;
+fun kaleerivanki_NK : NK ;
+fun kalenterikuukausi_NK : NK ;
+fun kalenterivuosi_NK : NK ;
+fun kalifikunta_NK : NK ;
+fun kalilannoite_NK : NK ;
+fun kalilipea'_NK : NK ;
+fun kalisuola_NK : NK ;
+fun kaliumhydroksidi_NK : NK ;
+fun kaliumoksidi_NK : NK ;
+fun kaliumsyanidi_NK : NK ;
+fun kaljabasso_NK : NK ;
+fun kaljakori_NK : NK ;
+fun kaljamaha_NK : NK ;
+fun kaljapullo_NK : NK ;
+fun kaljasaavi_NK : NK ;
+fun kaljupa'inen_NK : NK ;
+fun kalkkijauhe_NK : NK ;
+fun kalkkikaivos_NK : NK ;
+fun kalkkikivi_NK : NK ;
+fun kalkkikivilouhos_NK : NK ;
+fun kalkkilaasti_NK : NK ;
+fun kalkkilaiva_NK : NK ;
+fun kalkkilouhos_NK : NK ;
+fun kalkkimaa_NK : NK ;
+fun kalkkimaalaus_NK : NK ;
+fun kalkkimaali_NK : NK ;
+fun kalkkimaito_NK : NK ;
+fun kalkkipitoinen_NK : NK ;
+fun kalkkipitoisuus_NK : NK ;
+fun kalkkisa'lpa'_NK : NK ;
+fun kalkkitiili_NK : NK ;
+fun kalkkityppi_NK : NK ;
+fun kalkkiuuni_NK : NK ;
+fun kalkkivesi_NK : NK ;
+fun kalkkiviiva_NK : NK ;
+fun kalkkunakukko_NK : NK ;
+fun kalkkunapaisti_NK : NK ;
+fun kalleusluokitus_NK : NK ;
+fun kalleusluokka_NK : NK ;
+fun kallioimarre_NK : NK ;
+fun kalliojyrka'nne_NK : NK ;
+fun kalliokasvi_NK : NK ;
+fun kalliokielo_NK : NK ;
+fun kalliokiipeily_NK : NK ;
+fun kallioleikkaus_NK : NK ;
+fun kalliolohkare_NK : NK ;
+fun kallioluola_NK : NK ;
+fun kallioluoto_NK : NK ;
+fun kalliomaalaus_NK : NK ;
+fun kalliomaasto_NK : NK ;
+fun kalliopaasi_NK : NK ;
+fun kallioperusta_NK : NK ;
+fun kalliopera'_NK : NK ;
+fun kalliopiirros_NK : NK ;
+fun kalliopohja_NK : NK ;
+fun kallioranta_NK : NK ;
+fun kalliosaari_NK : NK ;
+fun kalliosuoja_NK : NK ;
+fun kallisarvoinen_NK : NK ;
+fun kallispalkkainen_NK : NK ;
+fun kallistuma_NK : NK ;
+fun kallistuskulma_NK : NK ;
+fun kallokuva_NK : NK ;
+fun kallovamma_NK : NK ;
+fun kalmistolo'yto'_NK : NK ;
+fun kalorimetri_NK : NK ;
+fun kalottialue_NK : NK ;
+fun kalottimaa_NK : NK ;
+fun kalpamiekkailu_NK : NK ;
+fun kalparitari_NK : NK ;
+fun kalparitaristo_NK : NK ;
+fun kalpeaihoinen_NK : NK ;
+fun kalpeakasvoinen_NK : NK ;
+fun kalsiumfosfaatti_NK : NK ;
+fun kalsiumhydroksidi_NK : NK ;
+fun kalsiumkarbidi_NK : NK ;
+fun kaltevuuskulma_NK : NK ;
+fun kaltevuusmittari_NK : NK ;
+fun kalukukkaro_NK : NK ;
+fun kalupakki_NK : NK ;
+fun kalustohankinta_NK : NK ;
+fun kalustoluettelo_NK : NK ;
+fun kalustopula_NK : NK ;
+fun kalustotappio_NK : NK ;
+fun kalustovaja_NK : NK ;
+fun kalvinismi_NK : NK ;
+fun kalvinpora_NK : NK ;
+fun kalvopeite_NK : NK ;
+fun kalvopeitteinen_NK : NK ;
+fun kalvopumppu_NK : NK ;
+fun kalvosinnappi_NK : NK ;
+fun kalvosokkelo_NK : NK ;
+fun kamarifilosofia_NK : NK ;
+fun kamarikuoro_NK : NK ;
+fun kamarimusiikki_NK : NK ;
+fun kamarimusiikkiyhtye_NK : NK ;
+fun kamarimuusikko_NK : NK ;
+fun kamarineiti_NK : NK ;
+fun kamarineuvos_NK : NK ;
+fun kamarina'ytelma'_NK : NK ;
+fun kamariooppera_NK : NK ;
+--? fun kamarioppinut_NK : NK ;
+fun kamariorkesteri_NK : NK ;
+fun kamaripalvelija_NK : NK ;
+fun kamariteoria_NK : NK ;
+fun kamariviisaus_NK : NK ;
+fun kamariyhtye_NK : NK ;
+fun kambrikausi_NK : NK ;
+fun kameekoru_NK : NK ;
+fun kamelikaravaani_NK : NK ;
+fun kamelikurki_NK : NK ;
+fun kamelinkarvahuopa_NK : NK ;
+fun kamelinkarvaulsteri_NK : NK ;
+fun kameraalinen_NK : NK ;
+fun kamerakulma_NK : NK ;
+fun kameramies_NK : NK ;
+fun kameranauhuri_NK : NK ;
+fun kamerapylva's_NK : NK ;
+fun kamerataide_NK : NK ;
+fun kameratarkkailu_NK : NK ;
+fun kameravalvonta_NK : NK ;
+fun kammiovesi_NK : NK ;
+fun kammiova'rina'_NK : NK ;
+fun kamomillasaunio_NK : NK ;
+fun kamomillatee_NK : NK ;
+fun kampaajaoppilas_NK : NK ;
+fun kampakeraaminen_NK : NK ;
+fun kampakeramiikka_NK : NK ;
+fun kampalanka_NK : NK ;
+fun kampalankakangas_NK : NK ;
+fun kampamaneetti_NK : NK ;
+fun kampasimpukka_NK : NK ;
+fun kampausgeeli_NK : NK ;
+fun kampaushyytelo'_NK : NK ;
+fun kampausneste_NK : NK ;
+fun kampauspo'yta'_NK : NK ;
+fun kampausvaahto_NK : NK ;
+fun kampaviineri_NK : NK ;
+fun kampavilla_NK : NK ;
+fun kampiakseli_NK : NK ;
+fun kampikammio_NK : NK ;
+fun kamppailulaji_NK : NK ;
+fun kampurajalka_NK : NK ;
+fun kampurajalkainen_NK : NK ;
+fun kampusalue_NK : NK ;
+fun kanaemo_NK : NK ;
+fun kanahaukka_NK : NK ;
+fun kanaha'kki_NK : NK ;
+fun kanakeitto_NK : NK ;
+fun kanakoira_NK : NK ;
+fun kanalauma_NK : NK ;
+fun kanalintu_NK : NK ;
+fun kanamainen_AK : AK ;
+fun kanaparvi_NK : NK ;
+fun kanapee_NK : NK ;
+fun kanarotu_NK : NK ;
+fun kanasalaatti_NK : NK ;
+fun kanatalous_NK : NK ;
+fun kanatarha_NK : NK ;
+fun kanavakangas_NK : NK ;
+fun kanavakirjonta_NK : NK ;
+fun kanavaliikenne_NK : NK ;
+fun kanavamaksu_NK : NK ;
+fun kanavaneula_NK : NK ;
+fun kanavapujottelu_NK : NK ;
+fun kanavasulku_NK : NK ;
+fun kanavasurffaus_NK : NK ;
+fun kanavaverkko_NK : NK ;
+fun kanaverkko_NK : NK ;
+fun kanaviillokki_NK : NK ;
+fun kanaviilokki_NK : NK ;
+fun kanavointi_NK : NK ;
+fun kanelikorppu_NK : NK ;
+fun kanelipuu_NK : NK ;
+fun kanelitanko_NK : NK ;
+fun kanelio'ljy_NK : NK ;
+fun kanervakasvi_NK : NK ;
+fun kanervaka'a'rme_NK : NK ;
+fun kanervanummi_NK : NK ;
+fun kanervatyyppi_NK : NK ;
+fun kangashapero_NK : NK ;
+fun kangashumus_NK : NK ;
+fun kangaskansi_NK : NK ;
+fun kangaskantinen_NK : NK ;
+fun kangaskauppa_NK : NK ;
+fun kangaskenka'_NK : NK ;
+fun kangaskorpi_NK : NK ;
+fun kangaska'a'rme_NK : NK ;
+fun kangaslaji_NK : NK ;
+fun kangasliima_NK : NK ;
+fun kangasmaa_NK : NK ;
+fun kangasmetsa'_NK : NK ;
+fun kangasmyyma'la'_NK : NK ;
+fun kangaspaino_NK : NK ;
+fun kangaspakka_NK : NK ;
+fun kangaspala_NK : NK ;
+fun kangaspa'a'llys_NK : NK ;
+fun kangaspa'a'llysteinen_NK : NK ;
+fun kangasrousku_NK : NK ;
+fun kangasra'me_NK : NK ;
+fun kangastapetti_NK : NK ;
+fun kangastatti_NK : NK ;
+fun kangasteollisuus_NK : NK ;
+fun kangastilkku_NK : NK ;
+fun kangastukki_NK : NK ;
+fun kangasturve_NK : NK ;
+fun kangasvuokko_NK : NK ;
+fun kaniinirotu_NK : NK ;
+fun kaniturkki_NK : NK ;
+fun kankaremaa_NK : NK ;
+fun kankeajalkainen_NK : NK ;
+fun kankealiikkeinen_NK : NK ;
+--? fun kankikuolaimet_NK : NK ;
+fun kankipalmikko_NK : NK ;
+fun kankitera's_NK : NK ;
+fun kannatinpalkki_NK : NK ;
+fun kannatinpylva's_NK : NK ;
+fun kannattajaja'sen_NK : NK ;
+fun kannattajakortti_NK : NK ;
+fun kannattajanikama_NK : NK ;
+fun kannattavuuslaskelma_NK : NK ;
+fun kannatusmaksu_NK : NK ;
+fun kannatusyhdistys_NK : NK ;
+fun kannekirjelma'_NK : NK ;
+fun kanneviskaali_NK : NK ;
+fun kannurusto_NK : NK ;
+fun kannuspyo'ra'_NK : NK ;
+fun kannusruoho_NK : NK ;
+fun kannustinloukku_NK : NK ;
+fun kannustuslisa'_NK : NK ;
+fun kanoottiretkeily_NK : NK ;
+fun kanoottiurheilu_NK : NK ;
+fun kansainva'lisyyskasvatus_NK : NK ;
+fun kansakoulu_NK : NK ;
+fun kansakoululainen_NK : NK ;
+fun kansakoululaitos_NK : NK ;
+fun kansakunta_NK : NK ;
+fun kansalainen_NK : NK ;
+fun kansalaiskoululainen_NK : NK ;
+fun kansallisuusaate_NK : NK ;
+fun kansallisuusliike_NK : NK ;
+fun kansallisuuslippu_NK : NK ;
+fun kansallisuustodistus_NK : NK ;
+fun kansallisuustunnus_NK : NK ;
+fun kansanedustajaehdokas_NK : NK ;
+fun kansanela'kemaksu_NK : NK ;
+fun kansanmusiikkijuhla_NK : NK ;
+fun kansanmusiikkiyhtye_NK : NK ;
+fun kansanrintamahallitus_NK : NK ;
+fun kansantaloustiede_NK : NK ;
+fun kansantaloustieteilija'_NK : NK ;
+fun kansanterveystiede_NK : NK ;
+fun kansanterveystyo'_NK : NK ;
+fun kansatiede_NK : NK ;
+fun kansatieteilija'_NK : NK ;
+fun kansikuva_NK : NK ;
+fun kansikuvatytto'_NK : NK ;
+fun kansilasti_NK : NK ;
+fun kansilehti_NK : NK ;
+fun kansimatkustaja_NK : NK ;
+fun kansimiehisto'_NK : NK ;
+fun kansimies_NK : NK ;
+fun kansipaikka_NK : NK ;
+fun kansipa'a'llysto'_NK : NK ;
+fun kansituoli_NK : NK ;
+fun kansiventtiili_NK : NK ;
+fun kansiventtiilimoottori_NK : NK ;
+fun kansliahenkilo'sto'_NK : NK ;
+fun kansliakieli_NK : NK ;
+fun kansliaministeri_NK : NK ;
+fun kanslianeuvos_NK : NK ;
+fun kansliapa'a'llikko'_NK : NK ;
+fun kansliatyyli_NK : NK ;
+fun kanssaela'ja'_NK : NK ;
+fun kanssaihminen_NK : NK ;
+fun kanssaka'yminen_NK : NK ;
+fun kanssamatkustaja_NK : NK ;
+fun kanssarikollinen_NK : NK ;
+fun kanssasisar_NK : NK ;
+fun kantaesitys_NK : NK ;
+fun kantahenkilo'sto'_NK : NK ;
+fun kantaisa'_NK : NK ;
+fun kantajoukko_NK : NK ;
+fun kantaja'sen_NK : NK ;
+fun kantakahvila_NK : NK ;
+fun kantakappi_NK : NK ;
+fun kantakaupunki_NK : NK ;
+fun kantakieli_NK : NK ;
+fun kantakirja_NK : NK ;
+fun kantakirjalehma'_NK : NK ;
+fun kantakirjaori_NK : NK ;
+fun kantakulma_NK : NK ;
+fun kantalappu_NK : NK ;
+fun kantalinnoite_NK : NK ;
+fun kantalinnoitus_NK : NK ;
+fun kantalippu_NK : NK ;
+fun kantaluku_NK : NK ;
+fun kantaluu_NK : NK ;
+fun kantaohjelmisto_NK : NK ;
+fun kantaosa_NK : NK ;
+fun kantapaikka_NK : NK ;
+fun kantapala_NK : NK ;
+fun kantapeikko_NK : NK ;
+fun kantapa'a'_NK : NK ;
+fun kantaravintola_NK : NK ;
+fun kantasana_NK : NK ;
+fun kantaside_NK : NK ;
+fun kantasieni_NK : NK ;
+fun kantasolu_NK : NK ;
+fun kantasormus_NK : NK ;
+fun kantasuomi_NK : NK ;
+fun kantatie_NK : NK ;
+fun kantatila_NK : NK ;
+fun kantavartalo_NK : NK ;
+fun kantavierre_NK : NK ;
+fun kantavierreva'kevyys_NK : NK ;
+fun kantava'esto'_NK : NK ;
+fun kantaa'iti_NK : NK ;
+fun kantelukirjelma'_NK : NK ;
+fun kantelupukki_NK : NK ;
+fun kantoaalto_NK : NK ;
+fun kantohihna_NK : NK ;
+fun kantohinta_NK : NK ;
+fun kantojuhta_NK : NK ;
+fun kantokotelo_NK : NK ;
+fun kantokyky_NK : NK ;
+fun kantokykyluokitus_NK : NK ;
+fun kantokykyluokka_NK : NK ;
+fun kantolaukku_NK : NK ;
+fun kantoliina_NK : NK ;
+fun kantomatka_NK : NK ;
+fun kantopiiri_NK : NK ;
+fun kantopommi_NK : NK ;
+fun kantoraha_NK : NK ;
+fun kantoraketti_NK : NK ;
+fun kantosieni_NK : NK ;
+fun kantosiipi_NK : NK ;
+fun kantosiipialus_NK : NK ;
+fun kantotaso_NK : NK ;
+fun kantotasoalus_NK : NK ;
+fun kantotuoli_NK : NK ;
+fun kantrimusiikki_NK : NK ;
+fun kanttinauha_NK : NK ;
+fun kanuunalaukaus_NK : NK ;
+fun kanuunasyo'tto'_NK : NK ;
+fun kapaloaste_NK : NK ;
+fun kapalolapsi_NK : NK ;
+fun kapalovaippa_NK : NK ;
+fun kapalovauva_NK : NK ;
+fun kapeaharteinen_NK : NK ;
+fun kapeahartiainen_NK : NK ;
+fun kapeakasvoinen_NK : NK ;
+fun kapealahkeinen_NK : NK ;
+fun kapealanteinen_NK : NK ;
+fun kapeapohjainen_NK : NK ;
+fun kapearaitainen_NK : NK ;
+fun kapearaiteinen_NK : NK ;
+fun kapillaaripilli_NK : NK ;
+fun kapillaariputki_NK : NK ;
+fun kapinahenki_NK : NK ;
+fun kapinahenkinen_NK : NK ;
+fun kapinaliike_NK : NK ;
+fun kapinalippu_NK : NK ;
+fun kapinamieli_NK : NK ;
+fun kapinayritys_NK : NK ;
+fun kapiteelikirjain_NK : NK ;
+fun kapiteelinauha_NK : NK ;
+fun kapituli_NK : NK ;
+fun kapokkipuu_NK : NK ;
+fun kappalainen_NK : NK ;
+fun kappalehinta_NK : NK ;
+fun kappalejako_NK : NK ;
+fun kappalekauppa_NK : NK ;
+fun kappaleluku_NK : NK ;
+fun kappalema'a'ra'_NK : NK ;
+fun kappelikirkko_NK : NK ;
+fun kappelineuvosto_NK : NK ;
+fun kaprispensas_NK : NK ;
+fun kapteeniluutnantti_NK : NK ;
+fun kapulahissi_NK : NK ;
+fun kapulakieli_NK : NK ;
+fun kapulasilta_NK : NK ;
+fun kapulatie_NK : NK ;
+fun kapustarinta_NK : NK ;
+fun karahviviini_NK : NK ;
+fun karamellipaperi_NK : NK ;
+fun karamellipussi_NK : NK ;
+fun karamellirasia_NK : NK ;
+fun karamelliva'ri_NK : NK ;
+fun karanteenimaksu_NK : NK ;
+fun karaokebaari_NK : NK ;
+fun karaokelaitteisto_NK : NK ;
+fun karateisku_NK : NK ;
+fun karatepotku_NK : NK ;
+fun karavaanimatkailu_NK : NK ;
+fun karavaanitie_NK : NK ;
+fun karbiinihaka_NK : NK ;
+fun kardaaniakseli_NK : NK ;
+fun kardaaninivel_NK : NK ;
+fun kardaaniripustus_NK : NK ;
+fun kardaanitunneli_NK : NK ;
+fun kardaaniveto_NK : NK ;
+fun kardinaalikala_NK : NK ;
+fun kardinaalikollegio_NK : NK ;
+fun kardinaaliluku_NK : NK ;
+fun kardinaalilukusana_NK : NK ;
+fun kardinaalimunaus_NK : NK ;
+fun kardinaalivirhe_NK : NK ;
+fun karenssipa'iva'_NK : NK ;
+fun karheapintainen_NK : NK ;
+fun karhujahti_NK : NK ;
+fun karhukirje_NK : NK ;
+fun karhukoira_NK : NK ;
+fun karhulanka_NK : NK ;
+fun karhumainen_NK : NK ;
+fun karikekerros_NK : NK ;
+fun karikkoranta_NK : NK ;
+fun karikukko_NK : NK ;
+fun karistesieni_NK : NK ;
+fun karistetauti_NK : NK ;
+fun karjafarmi_NK : NK ;
+fun karjakartano_NK : NK ;
+fun karjakeittio'_NK : NK ;
+fun karjalainen_NK : NK ;
+fun karjalauma_NK : NK ;
+fun karjamaja_NK : NK ;
+fun karjanostaja_NK : NK ;
+fun karjana'yttely_NK : NK ;
+fun karjapaimen_NK : NK ;
+fun karjapiha_NK : NK ;
+fun karjapolku_NK : NK ;
+fun karjarotu_NK : NK ;
+fun karjarutto_NK : NK ;
+fun karjasuoja_NK : NK ;
+fun karjatalous_NK : NK ;
+fun karjatalouskone_NK : NK ;
+fun karjataloustuote_NK : NK ;
+fun karjatarha_NK : NK ;
+fun karjatila_NK : NK ;
+fun karjatilallinen_NK : NK ;
+fun karjavaras_NK : NK ;
+fun karkaisuallas_NK : NK ;
+fun karkaisukovuus_NK : NK ;
+fun karkaisukylpy_NK : NK ;
+fun karkauspa'iva'_NK : NK ;
+fun karkaussekunti_NK : NK ;
+fun karkausvuosi_NK : NK ;
+fun karkausyritys_NK : NK ;
+fun karkeakarvainen_NK : NK ;
+fun karkeakiteinen_NK : NK ;
+fun karkealuonteinen_NK : NK ;
+fun karkeapiirteinen_NK : NK ;
+fun karkeapintainen_NK : NK ;
+fun karkeapuheinen_NK : NK ;
+fun karkearakeinen_NK : NK ;
+fun karkeasanainen_NK : NK ;
+fun karkeasyinen_NK : NK ;
+fun karkeatekoinen_NK : NK ;
+fun karkkikauppa_NK : NK ;
+fun karkkipussi_NK : NK ;
+fun karkkipa'iva'_NK : NK ;
+fun karkotusma'a'ra'ys_NK : NK ;
+fun karkotusrangaistus_NK : NK ;
+fun karkotustuomio_NK : NK ;
+fun karkulainen_NK : NK ;
+fun karkumatka_NK : NK ;
+fun karkuretki_NK : NK ;
+fun karmeliittaluostari_NK : NK ;
+fun karmeliittamunkki_NK : NK ;
+fun karmeliittasisar_NK : NK ;
+fun karnevaalihumu_NK : NK ;
+fun karnevaalikulkue_NK : NK ;
+fun karnevaalitunnelma_NK : NK ;
+fun karpalohyydyke_NK : NK ;
+fun karpalohyytelo'_NK : NK ;
+fun karpaloliko'o'ri_NK : NK ;
+fun karpalomehu_NK : NK ;
+fun karpalosuo_NK : NK ;
+fun karrieerinainen_NK : NK ;
+fun karrikana_NK : NK ;
+fun karrikastike_NK : NK ;
+fun karria'a'ri_NK : NK ;
+fun karsimalmi_NK : NK ;
+fun karsimineraali_NK : NK ;
+fun karsintakilpailu_NK : NK ;
+fun karsintakurssi_NK : NK ;
+fun karsintaottelu_NK : NK ;
+fun karsintapeli_NK : NK ;
+fun karsintaraja_NK : NK ;
+fun karsintasarja_NK : NK ;
+fun karstakone_NK : NK ;
+fun karstalanka_NK : NK ;
+fun karstalankakangas_NK : NK ;
+fun karstasammal_NK : NK ;
+fun karstauskone_NK : NK ;
+fun karstavilla_NK : NK ;
+fun karstimaa_NK : NK ;
+fun karstimuodostuma_NK : NK ;
+fun kartanohotelli_NK : NK ;
+fun kartanorakennus_NK : NK ;
+fun kartellihinta_NK : NK ;
+fun kartellisopimus_NK : NK ;
+fun kartiokulma_NK : NK ;
+fun kartioleikkaus_NK : NK ;
+fun kartiolisa'ke_NK : NK ;
+fun kartiopinta_NK : NK ;
+fun kartioprojektio_NK : NK ;
+fun karttaharjoitus_NK : NK ;
+fun karttaja'ka'la'_NK : NK ;
+fun karttakeppi_NK : NK ;
+fun karttakirja_NK : NK ;
+fun karttalaukku_NK : NK ;
+fun karttalehti_NK : NK ;
+fun karttaliite_NK : NK ;
+fun karttaluonnos_NK : NK ;
+fun karttamerkki_NK : NK ;
+fun karttaoppi_NK : NK ;
+fun karttapallo_NK : NK ;
+fun karttapiirros_NK : NK ;
+fun karttapohjoinen_NK : NK ;
+fun karttapoikkeama_NK : NK ;
+fun karttaprojektio_NK : NK ;
+fun karttaselitys_NK : NK ;
+fun karttatasku_NK : NK ;
+fun karttateline_NK : NK ;
+fun karttupiilo_NK : NK ;
+fun karttupiilosilla_NK : NK ;
+fun kartusiaaniluostari_NK : NK ;
+fun kartusiaanimunkki_NK : NK ;
+fun karukkokangas_NK : NK ;
+fun karuselli_NK : NK ;
+fun karusellisorvi_NK : NK ;
+fun karvahattu_NK : NK ;
+fun karvakato_NK : NK ;
+fun karvakaulus_NK : NK ;
+fun karvakehra'a'ja'_NK : NK ;
+fun karvalakki_NK : NK ;
+fun karvalakkila'hetysto'_NK : NK ;
+fun karvalakkipuoli_NK : NK ;
+fun karvalanka_NK : NK ;
+fun karvalankamatto_NK : NK ;
+fun karvalaukku_NK : NK ;
+fun karvalehti_NK : NK ;
+fun karvamerkki_NK : NK ;
+fun karvanaama_NK : NK ;
+fun karvanaamainen_NK : NK ;
+fun karvanpoistoaine_NK : NK ;
+fun karvanysty_NK : NK ;
+fun karvapeite_NK : NK ;
+fun karvapeitteinen_NK : NK ;
+fun karvapintainen_NK : NK ;
+fun karvareuhka_NK : NK ;
+fun karvarintainen_NK : NK ;
+fun karvarousku_NK : NK ;
+fun karvasipuli_NK : NK ;
+fun karvasivellin_NK : NK ;
+fun karvasmanteli_NK : NK ;
+fun karvasmantelio'ljy_NK : NK ;
+fun karvasputki_NK : NK ;
+fun karvassuola_NK : NK ;
+fun karvatukko_NK : NK ;
+fun karvatuppi_NK : NK ;
+fun karvaturri_NK : NK ;
+fun karviaismarjahillo_NK : NK ;
+fun karviaismarjapensas_NK : NK ;
+fun kasakka_NK : NK ;
+fun kasakkahyppy_NK : NK ;
+fun kasakkajoukko_NK : NK ;
+fun kasakkalakki_NK : NK ;
+fun kasakkapaita_NK : NK ;
+fun kasakkapa'a'llikko'_NK : NK ;
+fun kasakkatanssi_NK : NK ;
+fun kasapanos_NK : NK ;
+fun kasarmialue_NK : NK ;
+fun kasarmimajoitus_NK : NK ;
+fun kasarmirakennus_NK : NK ;
+fun kasettidekki_NK : NK ;
+fun kasettifilmi_NK : NK ;
+fun kasettikirja_NK : NK ;
+fun kasettikirjasto_NK : NK ;
+fun kasettilevy_NK : NK ;
+fun kasettinauha_NK : NK ;
+fun kasettinauhuri_NK : NK ;
+fun kasinotalous_NK : NK ;
+fun kaskikulttuuri_NK : NK ;
+fun kaskimaa_NK : NK ;
+fun kaskinauris_NK : NK ;
+fun kaskiviljely_NK : NK ;
+fun kaskovakuutus_NK : NK ;
+fun kassakaappisopimus_NK : NK ;
+fun kassara_NK : NK ;
+fun kasteallas_NK : NK ;
+fun kastehelmi_NK : NK ;
+fun kasteinen_NK : NK ;
+fun kastejuhla_NK : NK ;
+fun kastekaava_NK : NK ;
+fun kasteluauto_NK : NK ;
+fun kastelukanava_NK : NK ;
+fun kastelukannu_NK : NK ;
+fun kastelulaite_NK : NK ;
+fun kasteluletku_NK : NK ;
+fun kasteluviljelma'_NK : NK ;
+fun kasteluviljelys_NK : NK ;
+fun kastemalja_NK : NK ;
+fun kastemato_NK : NK ;
+fun kastemekko_NK : NK ;
+fun kastepisara_NK : NK ;
+fun kastepiste_NK : NK ;
+fun kastetilaisuus_NK : NK ;
+fun kastetodistus_NK : NK ;
+fun kastetoimitus_NK : NK ;
+fun kastevesi_NK : NK ;
+fun kastijako_NK : NK ;
+fun kastikekauha_NK : NK ;
+fun kastikekulho_NK : NK ;
+fun kastikelusikka_NK : NK ;
+fun kastikka_NK : NK ;
+fun kastilaitos_NK : NK ;
+fun kastimerkki_NK : NK ;
+fun kasuuni_NK : NK ;
+fun kasvainoppi_NK : NK ;
+fun kasvantava'a'ra'_NK : NK ;
+fun kasvattajaseura_NK : NK ;
+fun kasvatti_NK : NK ;
+fun kasvattilapsi_NK : NK ;
+fun kasvattipoika_NK : NK ;
+fun kasvattisisar_NK : NK ;
+fun kasvattityta'r_NK : NK ;
+fun kasvattiveli_NK : NK ;
+fun kasvatushakkuu_NK : NK ;
+fun kasvatusisa'_NK : NK ;
+fun kasvatuskoti_NK : NK ;
+fun kasvatuslaitos_NK : NK ;
+fun kasvatuslammikko_NK : NK ;
+fun kasvatusmenetelma'_NK : NK ;
+fun kasvatusmetsikko'_NK : NK ;
+fun kasvatusmetsa'_NK : NK ;
+fun kasvatusneuvola_NK : NK ;
+fun kasvatusopillinen_NK : NK ;
+fun kasvatusoppi_NK : NK ;
+fun kasvatuspsykologia_NK : NK ;
+fun kasvatustehta'va'_NK : NK ;
+fun kasvatustiede_NK : NK ;
+fun kasvatustieteilija'_NK : NK ;
+fun kasvatustyo'_NK : NK ;
+fun kasvatusa'iti_NK : NK ;
+fun kasvianatomia_NK : NK ;
+fun kasvibiologia_NK : NK ;
+fun kasviekologia_NK : NK ;
+fun kasvifysiologia_NK : NK ;
+fun kasviheimo_NK : NK ;
+fun kasvihormoni_NK : NK ;
+fun kasvihuone_NK : NK ;
+fun kasvihuoneilmio'_NK : NK ;
+fun kasvihuonekaasu_NK : NK ;
+fun kasvihuonekurkku_NK : NK ;
+fun kasvihuoneviljely_NK : NK ;
+fun kasvija'te_NK : NK ;
+fun kasvikokoelma_NK : NK ;
+fun kasvikuitu_NK : NK ;
+fun kasvikuivain_NK : NK ;
+fun kasvikunta_NK : NK ;
+fun kasvilaji_NK : NK ;
+fun kasvilajike_NK : NK ;
+fun kasvilajisto_NK : NK ;
+fun kasvilamppu_NK : NK ;
+fun kasvilava_NK : NK ;
+fun kasviliima_NK : NK ;
+fun kasvillisuusalue_NK : NK ;
+fun kasvillisuusvyo'hyke_NK : NK ;
+fun kasvimaa_NK : NK ;
+fun kasvimaailma_NK : NK ;
+fun kasvimargariini_NK : NK ;
+fun kasvimyrkky_NK : NK ;
+fun kasvineste_NK : NK ;
+fun kasvinsuojeluaine_NK : NK ;
+fun kasviopillinen_NK : NK ;
+fun kasvioppi_NK : NK ;
+fun kasviornamentti_NK : NK ;
+fun kasvipatologia_NK : NK ;
+fun kasvipeite_NK : NK ;
+fun kasvipigmentti_NK : NK ;
+fun kasvipuristin_NK : NK ;
+fun kasvirasva_NK : NK ;
+fun kasvirasvaja'a'telo'_NK : NK ;
+fun kasviravinto_NK : NK ;
+fun kasvishyytelo'_NK : NK ;
+fun kasviskeitto_NK : NK ;
+fun kasvislautanen_NK : NK ;
+fun kasvismuhennos_NK : NK ;
+fun kasvispihvi_NK : NK ;
+fun kasvispiirakka_NK : NK ;
+fun kasvisrasva_NK : NK ;
+fun kasvisravinto_NK : NK ;
+fun kasvisravintola_NK : NK ;
+fun kasvisruoka_NK : NK ;
+fun kasvisruokavalio_NK : NK ;
+fun kasvissyo'ja'_NK : NK ;
+fun kasviso'ljy_NK : NK ;
+fun kasvitarha_NK : NK ;
+fun kasvitauti_NK : NK ;
+fun kasvitautioppi_NK : NK ;
+fun kasvitiede_NK : NK ;
+fun kasvitieteilija'_NK : NK ;
+fun kasvituholainen_NK : NK ;
+fun kasvituote_NK : NK ;
+fun kasviuute_NK : NK ;
+fun kasvivalaisin_NK : NK ;
+fun kasvivalkuainen_NK : NK ;
+fun kasvivuorottelu_NK : NK ;
+fun kasviva'ri_NK : NK ;
+fun kasvio'ljy_NK : NK ;
+fun kasvohalvaus_NK : NK ;
+fun kasvohermo_NK : NK ;
+fun kasvohieronta_NK : NK ;
+fun kasvohoito_NK : NK ;
+fun kasvoinen_NK : NK ;
+fun kasvokuva_NK : NK ;
+fun kasvolihas_NK : NK ;
+fun kasvonaamio_NK : NK ;
+fun kasvopaperi_NK : NK ;
+fun kasvopyyhe_NK : NK ;
+fun kasvosaippua_NK : NK ;
+fun kasvosuojus_NK : NK ;
+fun kasvosa'rky_NK : NK ;
+fun kasvovesi_NK : NK ;
+fun kasvovoide_NK : NK ;
+fun kasvualusta_NK : NK ;
+fun kasvuhakuinen_NK : NK ;
+fun kasvuharso_NK : NK ;
+fun kasvuhormoni_NK : NK ;
+fun kasvuha'irio'_NK : NK ;
+fun kasvuika'_NK : NK ;
+fun kasvuika'inen_NK : NK ;
+fun kasvukausi_NK : NK ;
+fun kasvukeskus_NK : NK ;
+fun kasvukipu_NK : NK ;
+fun kasvukyky_NK : NK ;
+fun kasvukykyinen_NK : NK ;
+fun kasvuka'yra'_NK : NK ;
+fun kasvulehti_NK : NK ;
+fun kasvunopeus_NK : NK ;
+fun kasvupaikka_NK : NK ;
+fun kasvupaketti_NK : NK ;
+fun kasvupiste_NK : NK ;
+fun kasvupohja_NK : NK ;
+fun kasvupolitiikka_NK : NK ;
+fun kasvusolukko_NK : NK ;
+fun kasvutekija'_NK : NK ;
+fun kasvutiheys_NK : NK ;
+fun kasvuturve_NK : NK ;
+fun kasvuvauhti_NK : NK ;
+fun kasvuvoima_NK : NK ;
+fun kasvuympa'risto'_NK : NK ;
+fun katajahaarikka_NK : NK ;
+fun katajanmarjaviina_NK : NK ;
+fun katajanmarjao'ljy_NK : NK ;
+fun katajapensas_NK : NK ;
+fun katajatuoppi_NK : NK ;
+fun katajao'ljy_NK : NK ;
+fun katalysaattoriauto_NK : NK ;
+fun katalyyttiauto_NK : NK ;
+fun katalyyttikiharrin_NK : NK ;
+fun katalyyttipuhdistin_NK : NK ;
+fun katastrofiapu_NK : NK ;
+fun katastrofirahasto_NK : NK ;
+fun katastrofivalmius_NK : NK ;
+fun kateaine_NK : NK ;
+fun katedraalikoulu_NK : NK ;
+fun kateenkorvamuhennos_NK : NK ;
+fun katelautanen_NK : NK ;
+fun kateleipa'_NK : NK ;
+fun kateliina_NK : NK ;
+fun katepisto_NK : NK ;
+fun katesauma_NK : NK ;
+fun katetuotto_NK : NK ;
+fun kateviljely_NK : NK ;
+fun katkaisuasema_NK : NK ;
+fun katkaisuhoito_NK : NK ;
+fun katkaisuhoitola_NK : NK ;
+fun katkaisupeli_NK : NK ;
+--? fun katkaisupihdit_NK : NK ;
+fun katkarapu_NK : NK ;
+fun katkarapusalaatti_NK : NK ;
+fun katkoka'vely_NK : NK ;
+fun katkoka'ynti_NK : NK ;
+fun katkonainen_AK : AK ;
+fun katkonaisuus_NK : NK ;
+fun katkoviiva_NK : NK ;
+fun katoalue_NK : NK ;
+fun katodisa'de_NK : NK ;
+fun katodisa'deputki_NK : NK ;
+fun katossa'nky_NK : NK ;
+fun katovuosi_NK : NK ;
+fun katsantokanta_NK : NK ;
+fun katsantotapa_NK : NK ;
+fun katsastusinsino'o'ri_NK : NK ;
+fun katsastuskilpailu_NK : NK ;
+fun katsastusmies_NK : NK ;
+fun katsastusottelu_NK : NK ;
+fun katsekontakti_NK : NK ;
+fun katselijajoukko_NK : NK ;
+fun katselukirja_NK : NK ;
+fun katselulaite_NK : NK ;
+fun katseyhteys_NK : NK ;
+fun katsojajoukko_NK : NK ;
+fun katsomapaikka_NK : NK ;
+fun katsomustapa_NK : NK ;
+fun kattilahuone_NK : NK ;
+fun kattilakivi_NK : NK ;
+fun kattilalaakso_NK : NK ;
+fun kattohaikara_NK : NK ;
+fun kattohuopa_NK : NK ;
+fun kattoikkuna_NK : NK ;
+fun kattoja'rjesto'_NK : NK ;
+fun kattokruunu_NK : NK ;
+fun kattolamppu_NK : NK ;
+fun kattolaudoitus_NK : NK ;
+fun kattolista_NK : NK ;
+fun kattoluukku_NK : NK ;
+fun kattola'mmitys_NK : NK ;
+fun kattomaalaus_NK : NK ;
+fun kattonopeus_NK : NK ;
+fun kattopaanu_NK : NK ;
+fun kattopahvi_NK : NK ;
+fun kattopalkki_NK : NK ;
+fun kattoparru_NK : NK ;
+fun kattopelti_NK : NK ;
+fun kattopa're_NK : NK ;
+fun kattorakenne_NK : NK ;
+fun kattoteline_NK : NK ;
+fun kattotiili_NK : NK ;
+fun kattotuoli_NK : NK ;
+fun kattovalaisin_NK : NK ;
+fun kattovalo_NK : NK ;
+fun katuela'ma'_NK : NK ;
+fun katugallup_NK : NK ;
+fun katujuoksu_NK : NK ;
+fun katujyra'_NK : NK ;
+fun katukahvila_NK : NK ;
+fun katukaluste_NK : NK ;
+fun katukauppa_NK : NK ;
+fun katukauppias_NK : NK ;
+fun katukaupustelu_NK : NK ;
+fun katukeittio'_NK : NK ;
+fun katukilpi_NK : NK ;
+fun katukivetys_NK : NK ;
+fun katukiveys_NK : NK ;
+fun katukivi_NK : NK ;
+fun katukoroke_NK : NK ;
+fun katukuva_NK : NK ;
+fun katuka'yta'va'_NK : NK ;
+fun katulamppu_NK : NK ;
+fun katulapsi_NK : NK ;
+fun katuliikenne_NK : NK ;
+fun katulyhty_NK : NK ;
+fun katula'hetys_NK : NK ;
+fun katula'hetystyo'_NK : NK ;
+fun katumuoti_NK : NK ;
+fun katumuspilleri_NK : NK ;
+fun katumuspa'iva'_NK : NK ;
+fun katumyynti_NK : NK ;
+fun katunainen_NK : NK ;
+fun katuna'kyma'_NK : NK ;
+fun katuoja_NK : NK ;
+fun katuosoite_NK : NK ;
+fun katuosuus_NK : NK ;
+fun katuovi_NK : NK ;
+fun katupeili_NK : NK ;
+fun katupoika_NK : NK ;
+fun katuralli_NK : NK ;
+fun katurata_NK : NK ;
+fun katusoittaja_NK : NK ;
+fun katusulku_NK : NK ;
+fun katutaistelu_NK : NK ;
+fun katutappelu_NK : NK ;
+fun katutaso_NK : NK ;
+fun katuteatteri_NK : NK ;
+fun katutytto'_NK : NK ;
+fun katutyo'_NK : NK ;
+fun katuvalaistus_NK : NK ;
+fun katuvalo_NK : NK ;
+fun katuverkko_NK : NK ;
+fun katuvieri_NK : NK ;
+fun katuyleiso'_NK : NK ;
+fun katvealue_NK : NK ;
+fun kauaskantoinen_NK : NK ;
+fun kauaskantoisuus_NK : NK ;
+fun kauhaketju_NK : NK ;
+fun kauhakuljetin_NK : NK ;
+fun kauhakuormain_NK : NK ;
+fun kauhujuttu_NK : NK ;
+fun kauhukahva_NK : NK ;
+fun kauhukakara_NK : NK ;
+fun kauhukertomus_NK : NK ;
+fun kauhukuva_NK : NK ;
+fun kauhukuvaus_NK : NK ;
+fun kauhuna'ky_NK : NK ;
+fun kauhupropaganda_NK : NK ;
+fun kauhuromaani_NK : NK ;
+fun kauhuskenaario_NK : NK ;
+fun kauhutarina_NK : NK ;
+fun kauhuviihde_NK : NK ;
+fun kaukalopallo_NK : NK ;
+fun kauko_objektiivi_NK : NK ;
+fun kauko_ohjain_NK : NK ;
+fun kauko_ohjattava_NK : NK ;
+fun kauko_ohjaus_NK : NK ;
+fun kauko_ohjus_NK : NK ;
+fun kauko_opetus_NK : NK ;
+fun kaukosa'a'to'laite_NK : NK ;
+fun kaulahermo_NK : NK ;
+fun kaulahihna_NK : NK ;
+fun kaulahuivi_NK : NK ;
+fun kaulakello_NK : NK ;
+fun kaulaketju_NK : NK ;
+fun kaulakoru_NK : NK ;
+fun kaulaliina_NK : NK ;
+fun kaulamikrofoni_NK : NK ;
+fun kaulanauha_NK : NK ;
+fun kaulanikama_NK : NK ;
+fun kaulapanta_NK : NK ;
+fun kaularanka_NK : NK ;
+fun kaularauhanen_NK : NK ;
+fun kaularauta_NK : NK ;
+fun kaulariipus_NK : NK ;
+fun kaulasuoni_NK : NK ;
+fun kaulushaikara_NK : NK ;
+fun kaulusho'yhen_NK : NK ;
+fun kauluska'a'nne_NK : NK ;
+fun kaulusko'yha'listo'_NK : NK ;
+fun kauluslaatta_NK : NK ;
+fun kaulussaapas_NK : NK ;
+fun kauneudenhoitoaine_NK : NK ;
+fun kauneudenhoitosarja_NK : NK ;
+fun kauneudenhoitova'line_NK : NK ;
+fun kauneusaisti_NK : NK ;
+fun kauneusarvo_NK : NK ;
+fun kauneushoitola_NK : NK ;
+fun kauneusihanne_NK : NK ;
+fun kauneuskilpailu_NK : NK ;
+fun kauneuskuningatar_NK : NK ;
+fun kauneusleikkaus_NK : NK ;
+fun kauneusnaamio_NK : NK ;
+fun kauneuspilkku_NK : NK ;
+fun kauneussalonki_NK : NK ;
+fun kauneusuni_NK : NK ;
+fun kauneusvirhe_NK : NK ;
+fun kauniskasvoinen_NK : NK ;
+fun kaunismuotoinen_NK : NK ;
+fun kaunispiirteinen_NK : NK ;
+fun kaunissointinen_NK : NK ;
+fun kaunisva'rinen_NK : NK ;
+fun kaunisa'a'ninen_NK : NK ;
+fun kauppaedustaja_NK : NK ;
+fun kauppaehto_NK : NK ;
+fun kauppaetu_NK : NK ;
+fun kauppagalleria_NK : NK ;
+fun kauppahalli_NK : NK ;
+fun kauppahinta_NK : NK ;
+fun kauppahuone_NK : NK ;
+fun kauppakaari_NK : NK ;
+fun kauppakamari_NK : NK ;
+fun kauppakassi_NK : NK ;
+fun kauppakatu_NK : NK ;
+fun kauppakeskus_NK : NK ;
+fun kauppaketju_NK : NK ;
+fun kauppakirja_NK : NK ;
+fun kauppakomppania_NK : NK ;
+fun kauppakuja_NK : NK ;
+fun kauppakumppani_NK : NK ;
+fun kauppakuolema_NK : NK ;
+fun kauppalaiva_NK : NK ;
+fun kauppalaivasto_NK : NK ;
+fun kauppalippu_NK : NK ;
+fun kauppamatka_NK : NK ;
+fun kauppamatkustaja_NK : NK ;
+fun kauppamies_NK : NK ;
+fun kauppaministeri_NK : NK ;
+fun kauppaministerio'_NK : NK ;
+fun kauppaneuvos_NK : NK ;
+fun kauppaneuvottelu_NK : NK ;
+fun kauppanimi_NK : NK ;
+fun kauppaoikeus_NK : NK ;
+fun kauppaopetus_NK : NK ;
+fun kauppaopisto_NK : NK ;
+fun kauppapaikka_NK : NK ;
+fun kauppapolitiikka_NK : NK ;
+fun kauppapuutarhuri_NK : NK ;
+fun kaupparatsu_NK : NK ;
+fun kaupparekisteri_NK : NK ;
+fun kauppasaarto_NK : NK ;
+fun kauppasatama_NK : NK ;
+fun kauppasieni_NK : NK ;
+fun kauppasopimus_NK : NK ;
+fun kauppasota_NK : NK ;
+fun kauppasulku_NK : NK ;
+fun kauppatapa_NK : NK ;
+fun kauppatase_NK : NK ;
+fun kauppatavara_NK : NK ;
+fun kauppateknikko_NK : NK ;
+fun kauppatie_NK : NK ;
+fun kauppatori_NK : NK ;
+fun kauppatuttava_NK : NK ;
+fun kauppavaihto_NK : NK ;
+fun kauppavaje_NK : NK ;
+fun kauppiaskunta_NK : NK ;
+fun kaupunginosalehti_NK : NK ;
+fun kaupunginosayhdistys_NK : NK ;
+fun kaupunkiajo_NK : NK ;
+fun kaupunkialue_NK : NK ;
+fun kaupunkiasunto_NK : NK ;
+fun kaupunkiauto_NK : NK ;
+fun kaupunkikaasu_NK : NK ;
+fun kaupunkikierros_NK : NK ;
+fun kaupunkikunta_NK : NK ;
+fun kaupunkikuva_NK : NK ;
+fun kaupunkilainen_AK : AK ;
+fun kaupunkilehti_NK : NK ;
+fun kaupunkiliikenne_NK : NK ;
+fun kaupunkilinja_NK : NK ;
+fun kaupunkiloma_NK : NK ;
+fun kaupunkila'hetys_NK : NK ;
+fun kaupunkimainen_NK : NK ;
+fun kaupunkineuvos_NK : NK ;
+fun kaupunkina'kyma'_NK : NK ;
+fun kaupunkiseutu_NK : NK ;
+fun kaupunkisissi_NK : NK ;
+fun kaupunkisota_NK : NK ;
+fun kaupunkisuunnitteluvirasto_NK : NK ;
+fun kaupunkitarina_NK : NK ;
+fun kaupunkivaltio_NK : NK ;
+fun kaupunkiva'esto'_NK : NK ;
+fun kaurahattu_NK : NK ;
+fun kaurajauho_NK : NK ;
+fun kauraleipa'_NK : NK ;
+fun kauralese_NK : NK ;
+fun kauraliemi_NK : NK ;
+fun kaurapelto_NK : NK ;
+fun kaurapuuro_NK : NK ;
+fun kauraryyni_NK : NK ;
+fun kaurasuurimo_NK : NK ;
+fun kausialennus_NK : NK ;
+fun kausialennusmyynti_NK : NK ;
+fun kausiapulainen_NK : NK ;
+fun kausijulkaisu_NK : NK ;
+fun kausijuoppo_NK : NK ;
+fun kausijuoppous_NK : NK ;
+fun kausikortti_NK : NK ;
+fun kausilippu_NK : NK ;
+fun kausiluonteinen_NK : NK ;
+fun kausimyyja'_NK : NK ;
+--? fun kausiolut_NK : NK ;
+fun kausityo'_NK : NK ;
+fun kausityo'tto'myys_NK : NK ;
+fun kausivaihtelu_NK : NK ;
+fun kautsukasvi_NK : NK ;
+fun kauttakuljetus_NK : NK ;
+fun kauttakulku_NK : NK ;
+fun kauttakulkuasema_NK : NK ;
+fun kauttakulkukauppa_NK : NK ;
+fun kauttakulkuliikenne_NK : NK ;
+fun kauttakulkulupa_NK : NK ;
+fun kauttakulkumaksu_NK : NK ;
+fun kauttakulkusopimus_NK : NK ;
+fun kauttakulkuviisumi_NK : NK ;
+fun kauttarantainen_NK : NK ;
+fun kauttaviiva_NK : NK ;
+fun kavennusmaali_NK : NK ;
+fun kavennuspiste_NK : NK ;
+fun kavioela'in_NK : NK ;
+fun kaviojalkainen_NK : NK ;
+fun kaviokuume_NK : NK ;
+fun kavioura_NK : NK ;
+fun kehitysalue_NK : NK ;
+fun kehitysaluepolitiikka_NK : NK ;
+fun kehitysapu_NK : NK ;
+fun kehitysaste_NK : NK ;
+fun kehityshistoria_NK : NK ;
+fun kehitysha'irio'_NK : NK ;
+fun kehitysika'_NK : NK ;
+fun kehitysjoukko_NK : NK ;
+fun kehityskaari_NK : NK ;
+fun kehityskausi_NK : NK ;
+fun kehityskulku_NK : NK ;
+fun kehityskykyinen_NK : NK ;
+fun kehitysluotto_NK : NK ;
+fun kehitysmaa_NK : NK ;
+fun kehitysmaakauppa_NK : NK ;
+fun kehitysna'kyma'_NK : NK ;
+fun kehitysopillinen_NK : NK ;
+fun kehitysoppi_NK : NK ;
+fun kehityspsykologia_NK : NK ;
+fun kehitysromaani_NK : NK ;
+fun kehityssuunta_NK : NK ;
+fun kehitystaso_NK : NK ;
+fun kehitystyo'_NK : NK ;
+fun kehitysvaihe_NK : NK ;
+fun kehitysvammainen_NK : NK ;
+fun kehitysvammaisuus_NK : NK ;
+fun kehitysvika_NK : NK ;
+fun kehitysvirhe_NK : NK ;
+fun kehitysyhteistyo'ministeri_NK : NK ;
+fun kehitysyhtio'_NK : NK ;
+fun kehna'sieni_NK : NK ;
+fun kehotushuuto_NK : NK ;
+fun kehruukone_NK : NK ;
+fun kehruuneste_NK : NK ;
+fun kehruurauhanen_NK : NK ;
+fun kehra'kukka_NK : NK ;
+fun kehra'luu_NK : NK ;
+fun kehra'sluu_NK : NK ;
+fun kehra'a'ja'koi_NK : NK ;
+fun kehra'a'ja'lintu_NK : NK ;
+fun kehra'a'ja'punkki_NK : NK ;
+fun kehtokuolema_NK : NK ;
+fun kehtolaulu_NK : NK ;
+fun kehtoluokka_NK : NK ;
+fun kehtoluokkatyo'_NK : NK ;
+fun kehtosuomu_NK : NK ;
+fun kehyskartonki_NK : NK ;
+fun kehyskertomus_NK : NK ;
+fun kehyskunta_NK : NK ;
+fun kehysliike_NK : NK ;
+fun kehyslista_NK : NK ;
+fun kehyspahvi_NK : NK ;
+fun kehysryijy_NK : NK ;
+fun kehyssaha_NK : NK ;
+fun kehysteinen_NK : NK ;
+fun keha'juusto_NK : NK ;
+fun keha'katu_NK : NK ;
+fun keha'kettu_NK : NK ;
+fun keha'kukka_NK : NK ;
+fun keha'kulma_NK : NK ;
+fun keha'kuolema_NK : NK ;
+fun keha'lehti_NK : NK ;
+fun keha'lihas_NK : NK ;
+fun keha'muuri_NK : NK ;
+fun keha'nopeus_NK : NK ;
+fun keha'pesa'_NK : NK ;
+fun keha'pa'a'telma'_NK : NK ;
+fun keha'raakki_NK : NK ;
+fun keha'riutta_NK : NK ;
+fun keha'saha_NK : NK ;
+fun keha'tie_NK : NK ;
+fun keha'tuomari_NK : NK ;
+fun keidassuo_NK : NK ;
+fun keiha'santilooppi_NK : NK ;
+fun keiha'skaari_NK : NK ;
+fun keiha'skilpailu_NK : NK ;
+fun keiha'stulos_NK : NK ;
+fun keiha'a'nheittoenna'tys_NK : NK ;
+fun keiha'a'nheittotulos_NK : NK ;
+fun keijukorento_NK : NK ;
+fun keikauskakku_NK : NK ;
+fun keikkalaulaja_NK : NK ;
+fun keikkamatka_NK : NK ;
+fun keikkamuusikko_NK : NK ;
+fun keikkatyo'_NK : NK ;
+fun keilahalli_NK : NK ;
+fun keilailukilpailu_NK : NK ;
+fun keilailurata_NK : NK ;
+fun keilakilpailu_NK : NK ;
+fun keilapallo_NK : NK ;
+fun keilapatteri_NK : NK ;
+fun keilapeli_NK : NK ;
+fun keilarata_NK : NK ;
+fun keinoalkuinen_NK : NK ;
+fun keinoemo_NK : NK ;
+fun keinohorisontti_NK : NK ;
+fun keinokastelu_NK : NK ;
+fun keinokuitu_NK : NK ;
+fun keinomunuainen_NK : NK ;
+fun keinonahka_NK : NK ;
+fun keinopa'a'_NK : NK ;
+fun keinoruokinta_NK : NK ;
+fun keinosiemennys_NK : NK ;
+fun keinosiementa'ja'_NK : NK ;
+fun keinosiitos_NK : NK ;
+fun keinosilkki_NK : NK ;
+fun keinotekoinen_AK : AK ;
+fun keinotekoisuus_NK : NK ;
+fun keinovalaistus_NK : NK ;
+fun keinovalo_NK : NK ;
+fun keinukytkin_NK : NK ;
+fun keinulauta_NK : NK ;
+fun keinutuoli_NK : NK ;
+fun keisarihovi_NK : NK ;
+fun keisarihuone_NK : NK ;
+fun keisarikausi_NK : NK ;
+fun keisarikunta_NK : NK ;
+fun keisarileikkaus_NK : NK ;
+fun keisaripari_NK : NK ;
+fun keisariperhe_NK : NK ;
+fun keisarisuku_NK : NK ;
+fun keisarityyli_NK : NK ;
+fun keisarivalta_NK : NK ;
+fun keitinlasi_NK : NK ;
+fun keitinliemi_NK : NK ;
+fun keitinpiirakka_NK : NK ;
+fun keitinpiiras_NK : NK ;
+fun keitinrasva_NK : NK ;
+fun keitinvesi_NK : NK ;
+fun keittio'apulainen_NK : NK ;
+fun keittio'henkilo'sto'_NK : NK ;
+fun keittio'ja'te_NK : NK ;
+fun keittio'kaappi_NK : NK ;
+fun keittio'kaluste_NK : NK ;
+fun keittio'kasvi_NK : NK ;
+fun keittio'mestari_NK : NK ;
+--? fun keittio'sakset_NK : NK ;
+fun keittio'tuoli_NK : NK ;
+fun keittio'veitsi_NK : NK ;
+fun keittoalue_NK : NK ;
+fun keittoastia_NK : NK ;
+fun keittohappo_NK : NK ;
+fun keittokatos_NK : NK ;
+fun keittokinkku_NK : NK ;
+fun keittokirja_NK : NK ;
+fun keittokomero_NK : NK ;
+fun keittolevy_NK : NK ;
+fun keittoliha_NK : NK ;
+fun keittolipea'_NK : NK ;
+fun keittomakkara_NK : NK ;
+fun keittometvursti_NK : NK ;
+fun keittopullo_NK : NK ;
+fun keittoruoka_NK : NK ;
+fun keittosuklaa_NK : NK ;
+fun keittosuola_NK : NK ;
+fun keittosuolaliuos_NK : NK ;
+fun keittotaito_NK : NK ;
+fun keittotaitoinen_NK : NK ;
+fun keittotaso_NK : NK ;
+fun keksija'nero_NK : NK ;
+fun kelanauhuri_NK : NK ;
+fun kelirikko_NK : NK ;
+fun kelirikkoalus_NK : NK ;
+fun keljumainen_NK : NK ;
+fun kelkkailurata_NK : NK ;
+fun kelkkama'ki_NK : NK ;
+fun kellariholvi_NK : NK ;
+fun kellarikerros_NK : NK ;
+fun kellarikomero_NK : NK ;
+fun kellarikypsytys_NK : NK ;
+fun kellariravintola_NK : NK ;
+fun kellarisa'ilytys_NK : NK ;
+fun kellaritila_NK : NK ;
+fun kellohame_NK : NK ;
+fun kellohattu_NK : NK ;
+fun kellohelma_NK : NK ;
+fun kellohelmainen_NK : NK ;
+fun kellokalle_NK : NK ;
+fun kellokanerva_NK : NK ;
+fun kellokasvi_NK : NK ;
+fun kellokoneisto_NK : NK ;
+fun kellokortti_NK : NK ;
+fun kellokukka_NK : NK ;
+fun kellokukkainen_NK : NK ;
+fun kellokytkin_NK : NK ;
+fun kelloka'yra'_NK : NK ;
+fun kelloko'ynno's_NK : NK ;
+fun kellolaite_NK : NK ;
+fun kelloliike_NK : NK ;
+fun kellomainen_NK : NK ;
+fun kellometalli_NK : NK ;
+fun kellomies_NK : NK ;
+fun kellopeli_NK : NK ;
+fun kellopronssi_NK : NK ;
+fun kelloradio_NK : NK ;
+fun kelloseppa'_NK : NK ;
+fun kellotaajuus_NK : NK ;
+fun kellotapuli_NK : NK ;
+fun kellotaulu_NK : NK ;
+fun kellotorni_NK : NK ;
+fun kelluntaliivi_NK : NK ;
+fun kelluntapukine_NK : NK ;
+fun kelluntatakki_NK : NK ;
+fun kelohonka_NK : NK ;
+fun kelohonkainen_NK : NK ;
+fun kelopuu_NK : NK ;
+fun kelpoisuusehto_NK : NK ;
+fun kelpoisuusvaatimus_NK : NK ;
+fun keltahaarakas_NK : NK ;
+fun keltahampainen_NK : NK ;
+fun keltaihoinen_NK : NK ;
+fun keltaja'ka'la'_NK : NK ;
+fun keltakulta_NK : NK ;
+fun keltakuume_NK : NK ;
+fun keltamulta_NK : NK ;
+fun keltanarsissi_NK : NK ;
+fun keltanokka_NK : NK ;
+fun keltaraitainen_NK : NK ;
+fun keltarauhanen_NK : NK ;
+fun keltarousku_NK : NK ;
+fun keltasieni_NK : NK ;
+fun keltasipuli_NK : NK ;
+fun keltasirkku_NK : NK ;
+fun keltatauti_NK : NK ;
+fun keltata'pla'_NK : NK ;
+fun keltavahvero_NK : NK ;
+fun keltavuokko_NK : NK ;
+fun keltava'ri_NK : NK ;
+fun keltava'sta'ra'kki_NK : NK ;
+fun kemikaalikauppa_NK : NK ;
+fun kemikaaliliike_NK : NK ;
+fun kengitysnaula_NK : NK ;
+fun kenguru_NK : NK ;
+fun kenguruhoito_NK : NK ;
+fun kengurutasku_NK : NK ;
+fun kenkkumainen_NK : NK ;
+fun kenka'harja_NK : NK ;
+fun kenka'heina'_NK : NK ;
+fun kenka'kauppa_NK : NK ;
+fun kenka'laatikko_NK : NK ;
+fun kenka'lusikka_NK : NK ;
+fun kenka'muoti_NK : NK ;
+fun kenka'pari_NK : NK ;
+fun kenka'puhelin_NK : NK ;
+fun kenka'raja_NK : NK ;
+fun kenka'rasva_NK : NK ;
+fun kenka'risa_NK : NK ;
+fun kenka'teollisuus_NK : NK ;
+fun kenka'voide_NK : NK ;
+fun kenneltoiminta_NK : NK ;
+fun kenneltyo'_NK : NK ;
+fun kennelva'ki_NK : NK ;
+fun kennelyska'_NK : NK ;
+fun kennokakku_NK : NK ;
+fun kennomainen_NK : NK ;
+fun kennosto_NK : NK ;
+fun kenraalibasso_NK : NK ;
+fun kenraaliharjoitus_NK : NK ;
+fun kenraalikunta_NK : NK ;
+fun kenraalikuverno'o'ri_NK : NK ;
+fun kenraaliluutnantti_NK : NK ;
+fun kenraalimajuri_NK : NK ;
+fun kentta'armeija_NK : NK ;
+fun kentta'ema'nta'_NK : NK ;
+fun kentta'harmaa_NK : NK ;
+fun kentta'kanuuna_NK : NK ;
+fun kentta'keitin_NK : NK ;
+fun kentta'keittio'_NK : NK ;
+fun kentta'kelpoinen_NK : NK ;
+fun kentta'kelpoisuus_NK : NK ;
+fun kentta'ka'yma'la'_NK : NK ;
+fun kentta'laji_NK : NK ;
+fun kentta'lapio_NK : NK ;
+fun kentta'linnoite_NK : NK ;
+fun kentta'linnoitus_NK : NK ;
+fun kentta'magneetti_NK : NK ;
+fun kentta'mies_NK : NK ;
+fun kentta'mittari_NK : NK ;
+fun kentta'myynti_NK : NK ;
+fun kentta'myyra'_NK : NK ;
+fun kentta'oikeus_NK : NK ;
+fun kentta'pakki_NK : NK ;
+fun kentta'pelaaja_NK : NK ;
+fun kentta'pesa'_NK : NK ;
+fun kentta'piispa_NK : NK ;
+fun kentta'posti_NK : NK ;
+fun kentta'postikirje_NK : NK ;
+fun kentta'postila'hetys_NK : NK ;
+fun kentta'puhelin_NK : NK ;
+fun kentta'pullo_NK : NK ;
+fun kentta'puolisko_NK : NK ;
+fun kentta'radio_NK : NK ;
+fun kentta'sairaala_NK : NK ;
+fun kentta'tutkimus_NK : NK ;
+fun kentta'tykisto'_NK : NK ;
+fun kentta'tykki_NK : NK ;
+fun kentta'tyo'_NK : NK ;
+fun kentta'urheilija_NK : NK ;
+fun kentta'urheilu_NK : NK ;
+fun kentta'viiva_NK : NK ;
+fun kentta'voimakkuus_NK : NK ;
+fun kentta'va'ki_NK : NK ;
+fun kepulikonsti_NK : NK ;
+fun keramiikka_NK : NK ;
+fun keramiikkaesine_NK : NK ;
+fun keramiikkamaljakko_NK : NK ;
+fun keramiikkataide_NK : NK ;
+fun keramiikkataiteilija_NK : NK ;
+fun keramiikkateollisuus_NK : NK ;
+fun kerhohuone_NK : NK ;
+fun kerholainen_NK : NK ;
+fun kerhotoiminta_NK : NK ;
+fun kerjuukirje_NK : NK ;
+fun kerjuusauva_NK : NK ;
+fun kerkea'kielinen_NK : NK ;
+fun kermajauhe_NK : NK ;
+fun kermajuusto_NK : NK ;
+fun kermaja'a'telo'_NK : NK ;
+fun kermakahvi_NK : NK ;
+fun kermakakku_NK : NK ;
+fun kermakannu_NK : NK ;
+fun kermakaramelli_NK : NK ;
+fun kermakastike_NK : NK ;
+fun kermakerros_NK : NK ;
+fun kermaleivos_NK : NK ;
+fun kermamaito_NK : NK ;
+fun kermavaahto_NK : NK ;
+fun kermaviili_NK : NK ;
+fun kerniliina_NK : NK ;
+fun kerrannainen_NK : NK ;
+fun kerrontatyyli_NK : NK ;
+fun kerroshoitaja_NK : NK ;
+fun kerroshyppy_NK : NK ;
+fun kerroshyppykilpailu_NK : NK ;
+fun kerroskattila_NK : NK ;
+fun kerroskuvaus_NK : NK ;
+fun kerroslasi_NK : NK ;
+fun kerrossavi_NK : NK ;
+fun kerrossiivooja_NK : NK ;
+fun kerrossa'nky_NK : NK ;
+fun kerrostalo_NK : NK ;
+fun kerrostaloasunto_NK : NK ;
+fun kerrostasanne_NK : NK ;
+fun kerrosteinen_NK : NK ;
+fun kerrostuma_NK : NK ;
+fun kerskakulutus_NK : NK ;
+fun kertahyo'dyke_NK : NK ;
+fun kertaka'ytto'_NK : NK ;
+fun kertaka'ytto'astia_NK : NK ;
+fun kertaka'ytto'hyo'dyke_NK : NK ;
+fun kertaka'ytto'inen_NK : NK ;
+fun kertaka'ytto'kamera_NK : NK ;
+fun kertaka'ytto'lakana_NK : NK ;
+fun kertaka'ytto'lautanen_NK : NK ;
+fun kertaka'ytto'pakkaus_NK : NK ;
+fun kertaka'ytto'pullo_NK : NK ;
+fun kertaka'ytto'tavara_NK : NK ;
+fun kertaka'ytto'vaippa_NK : NK ;
+fun kertalippu_NK : NK ;
+fun kertaluku_NK : NK ;
+fun kertaluonteinen_NK : NK ;
+fun kertamaksu_NK : NK ;
+fun kertamaksulaina_NK : NK ;
+fun kertamuovi_NK : NK ;
+fun kertapakkaus_NK : NK ;
+fun kertarysa'ys_NK : NK ;
+fun kertasinko_NK : NK ;
+fun kertatuli_NK : NK ;
+fun kertausharjoitus_NK : NK ;
+fun kertauskurssi_NK : NK ;
+fun kertauskuulustelu_NK : NK ;
+fun kertausmerkki_NK : NK ;
+fun kertavaippa_NK : NK ;
+fun kertavuotinen_NK : NK ;
+fun kertolasku_NK : NK ;
+fun kertomataide_NK : NK ;
+fun kertomerkki_NK : NK ;
+fun kertosa'e_NK : NK ;
+fun kertotaulu_NK : NK ;
+fun kera'ilyera'_NK : NK ;
+fun kera'ilyesine_NK : NK ;
+fun kera'ilyharrastus_NK : NK ;
+fun kera'kaali_NK : NK ;
+fun kera'salaatti_NK : NK ;
+fun kera'yskuitu_NK : NK ;
+fun kera'yslasi_NK : NK ;
+fun kera'yslista_NK : NK ;
+fun kera'yspaperi_NK : NK ;
+fun kera'yspiste_NK : NK ;
+fun kesantomaa_NK : NK ;
+fun kesantopelto_NK : NK ;
+fun keskenkasvuinen_NK : NK ;
+fun keskenkuntoinen_NK : NK ;
+fun keskenmeno_NK : NK ;
+fun keskentekoinen_NK : NK ;
+fun keskeytyshuuhde_NK : NK ;
+fun keskeytysvakuutus_NK : NK ;
+fun keski_ika'_NK : NK ;
+fun keski_ika'inen_NK : NK ;
+fun keskikentta'mies_NK : NK ;
+fun keskikentta'pelaaja_NK : NK ;
+fun keskikoululainen_NK : NK ;
+fun keskikoulupohjainen_NK : NK ;
+fun keskikoulutodistus_NK : NK ;
+fun keskiluokkalainen_NK : NK ;
+fun keskitysleiri_NK : NK ;
+fun keskivertoihminen_NK : NK ;
+fun keskio'pora_NK : NK ;
+fun keskusantenni_NK : NK ;
+fun keskusarkisto_NK : NK ;
+fun keskushallinto_NK : NK ;
+fun keskushermosto_NK : NK ;
+fun keskushyo'kka'a'ja'_NK : NK ;
+fun keskusimuri_NK : NK ;
+fun keskusjohto_NK : NK ;
+fun keskusjohtoinen_NK : NK ;
+fun keskusja'rjesto'_NK : NK ;
+fun keskusja'rvi_NK : NK ;
+fun keskuskeittio'_NK : NK ;
+fun keskuskirjasto_NK : NK ;
+fun keskuskomitea_NK : NK ;
+fun keskuskulma_NK : NK ;
+fun keskusliike_NK : NK ;
+fun keskusliitto_NK : NK ;
+fun keskuslukitus_NK : NK ;
+fun keskuslyriikka_NK : NK ;
+fun keskusla'mmitys_NK : NK ;
+fun keskusla'mmitysilma_NK : NK ;
+fun keskusla'mmityskattila_NK : NK ;
+fun keskusmuisti_NK : NK ;
+fun keskusohjaus_NK : NK ;
+fun keskuspankki_NK : NK ;
+fun keskuspuolustaja_NK : NK ;
+fun keskussairaala_NK : NK ;
+fun keskussairaalapiiri_NK : NK ;
+fun keskussuljin_NK : NK ;
+fun keskussuoritin_NK : NK ;
+fun keskustaajama_NK : NK ;
+fun keskustalainen_NK : NK ;
+fun keskustapolitiikka_NK : NK ;
+fun keskustapuolue_NK : NK ;
+fun keskustaryhma'_NK : NK ;
+fun keskustelufoorumi_NK : NK ;
+fun keskusteluharjoitus_NK : NK ;
+fun keskustelukumppani_NK : NK ;
+fun keskustelupuhelin_NK : NK ;
+fun keskusteluryhma'_NK : NK ;
+fun keskustelutaito_NK : NK ;
+fun keskustelutilaisuus_NK : NK ;
+fun keskustelutoveri_NK : NK ;
+fun keskustelutunti_NK : NK ;
+fun keskusteluyhteys_NK : NK ;
+fun keskusvalta_NK : NK ;
+fun keskusvalvomo_NK : NK ;
+fun keskusvarasto_NK : NK ;
+fun keskusvirasto_NK : NK ;
+fun keskusyksikko'_NK : NK ;
+fun kestikievari_NK : NK ;
+fun kestikievarilaitos_NK : NK ;
+fun kestiysta'vyys_NK : NK ;
+fun kestohymy_NK : NK ;
+fun kestohyo'dyke_NK : NK ;
+fun kestokerma_NK : NK ;
+fun kestokyky_NK : NK ;
+fun kestolotto_NK : NK ;
+fun kestomagneetti_NK : NK ;
+fun kestomaito_NK : NK ;
+fun kestomakkara_NK : NK ;
+fun kestomuovi_NK : NK ;
+fun kestopuu_NK : NK ;
+fun kestopa'a'llyste_NK : NK ;
+fun kestotilaaja_NK : NK ;
+fun kestotilaus_NK : NK ;
+fun kestovaippa_NK : NK ;
+fun kestoviestin_NK : NK ;
+fun kestoviestinta'_NK : NK ;
+fun kestova'ri_NK : NK ;
+fun kestova'rja'ys_NK : NK ;
+fun kesta'vyysjuoksija_NK : NK ;
+fun kesta'vyysjuoksu_NK : NK ;
+fun kesta'vyyskilpailu_NK : NK ;
+fun kesta'vyyskoe_NK : NK ;
+fun kesta'vyyslaji_NK : NK ;
+fun kesa'aamu_NK : NK ;
+fun kesa'apulainen_NK : NK ;
+fun kesa'asukas_NK : NK ;
+fun kesa'asunto_NK : NK ;
+fun kesa'heila_NK : NK ;
+fun kesa'helle_NK : NK ;
+fun kesa'hotelli_NK : NK ;
+fun kesa'huvila_NK : NK ;
+fun kesa'huvilatontti_NK : NK ;
+fun kesa'ilta_NK : NK ;
+fun kesa'itio'_NK : NK ;
+fun kesa'juhla_NK : NK ;
+fun kesa'kangas_NK : NK ;
+fun kesa'kausi_NK : NK ;
+fun kesa'keitto_NK : NK ;
+fun kesa'keli_NK : NK ;
+fun kesa'kenka'_NK : NK ;
+fun kesa'kiertue_NK : NK ;
+fun kesa'kissa_NK : NK ;
+fun kesa'koti_NK : NK ;
+fun kesa'kuinen_NK : NK ;
+fun kesa'kuiva_NK : NK ;
+fun kesa'kukka_NK : NK ;
+fun kesa'kurpitsa_NK : NK ;
+fun kesa'kurssi_NK : NK ;
+fun kesa'kuu_NK : NK ;
+fun kesa'kuuma_NK : NK ;
+fun kesa'ka'ytto'_NK : NK ;
+fun kesa'laidun_NK : NK ;
+fun kesa'leiri_NK : NK ;
+fun kesa'leskeys_NK : NK ;
+fun kesa'leski_NK : NK ;
+fun kesa'loma_NK : NK ;
+fun kesa'lomalainen_NK : NK ;
+fun kesa'lomasijainen_NK : NK ;
+fun kesa'lukio_NK : NK ;
+fun kesa'mekko_NK : NK ;
+fun kesa'mo'kki_NK : NK ;
+fun kesa'mo'kkitontti_NK : NK ;
+fun kesa'nviettopaikka_NK : NK ;
+fun kesa'osoite_NK : NK ;
+fun kesa'paikka_NK : NK ;
+fun kesa'puku_NK : NK ;
+fun kesa'puu_NK : NK ;
+fun kesa'pa'iva'_NK : NK ;
+fun kesa'ravintola_NK : NK ;
+fun kesa'rengas_NK : NK ;
+fun kesa'retki_NK : NK ;
+fun kesa'sesonki_NK : NK ;
+fun kesa'syda'n_NK : NK ;
+fun kesa'sa'ilo'_NK : NK ;
+fun kesa'sa'a'_NK : NK ;
+fun kesa'tapahtuma_NK : NK ;
+fun kesa'teatteri_NK : NK ;
+fun kesa'tera'_NK : NK ;
+fun kesa'toimittaja_NK : NK ;
+fun kesa'tori_NK : NK ;
+fun kesa'turkki_NK : NK ;
+fun kesa'tyo'_NK : NK ;
+fun kesa'tyo'paikka_NK : NK ;
+fun kesa'urheilu_NK : NK ;
+fun kesa'urheilulaji_NK : NK ;
+fun kesa'vaate_NK : NK ;
+fun kesa'vieras_NK : NK ;
+fun kesa'vihanta_NK : NK ;
+fun kesa'villa_NK : NK ;
+fun kesa'o'inen_NK : NK ;
+fun kesa'o'ljy_NK : NK ;
+fun ketjukirje_NK : NK ;
+fun ketjukolari_NK : NK ;
+fun ketjukuljetin_NK : NK ;
+fun ketjulaulu_NK : NK ;
+fun ketjulomake_NK : NK ;
+fun ketjulukko_NK : NK ;
+fun ketjuommel_NK : NK ;
+fun ketjupisto_NK : NK ;
+fun ketjupolttaja_NK : NK ;
+fun ketjupumppu_NK : NK ;
+fun ketjupyo'ra'_NK : NK ;
+fun ketjuratas_NK : NK ;
+fun ketjureaktio_NK : NK ;
+fun ketjuruoppaaja_NK : NK ;
+fun ketjusieppo_NK : NK ;
+fun ketjusilmukka_NK : NK ;
+fun ketjutalo_NK : NK ;
+fun ketjuveto_NK : NK ;
+fun ketjuvetoinen_NK : NK ;
+fun ketjuva'litys_NK : NK ;
+fun ketoneilikka_NK : NK ;
+fun kettera'liikkeinen_NK : NK ;
+fun kettufarmi_NK : NK ;
+fun kettujahti_NK : NK ;
+fun kettumainen_NK : NK ;
+fun kettutarha_NK : NK ;
+fun kettutarhaus_NK : NK ;
+fun kettuterrieri_NK : NK ;
+fun kettuturkki_NK : NK ;
+fun keuhkoinfarkti_NK : NK ;
+fun keuhkoja'ka'la'_NK : NK ;
+fun keuhkokasvain_NK : NK ;
+fun keuhkokatarri_NK : NK ;
+fun keuhkokotilo_NK : NK ;
+fun keuhkokudos_NK : NK ;
+fun keuhkokuume_NK : NK ;
+fun keuhkokuva_NK : NK ;
+fun keuhkolaajentuma_NK : NK ;
+fun keuhkolaskimo_NK : NK ;
+fun keuhkopussi_NK : NK ;
+fun keuhkoputki_NK : NK ;
+fun keuhkorakkula_NK : NK ;
+fun keuhkosairaus_NK : NK ;
+fun keuhkosammal_NK : NK ;
+fun keuhkosyo'pa'_NK : NK ;
+fun keuhkotauti_NK : NK ;
+fun keuhkotulehdus_NK : NK ;
+fun keuhkovaltimo_NK : NK ;
+fun keulahahmo_NK : NK ;
+fun keulahytti_NK : NK ;
+fun keulakansi_NK : NK ;
+fun keulakoroke_NK : NK ;
+fun keulakuva_NK : NK ;
+fun keulako'ysi_NK : NK ;
+fun keulamasto_NK : NK ;
+fun keulamies_NK : NK ;
+fun keulaportti_NK : NK ;
+fun keulapurje_NK : NK ;
+fun keularuuma_NK : NK ;
+fun keulavisiiri_NK : NK ;
+fun kevea'liikkeinen_NK : NK ;
+fun kevytbetoninen_NK : NK ;
+fun kevytkenka'inen_NK : NK ;
+fun kevytkulkuinen_NK : NK ;
+fun kevytliikkeinen_NK : NK ;
+fun kevytmetallinen_NK : NK ;
+fun kevytmielisyys_NK : NK ;
+fun kevytsinkoryhma'_NK : NK ;
+fun kevyttekoinen_NK : NK ;
+fun keva'taamu_NK : NK ;
+fun keva'tasu_NK : NK ;
+fun keva'taurinko_NK : NK ;
+fun keva'tesikko_NK : NK ;
+fun keva'thanki_NK : NK ;
+fun keva'tilma_NK : NK ;
+fun keva'tilta_NK : NK ;
+fun keva'tistutus_NK : NK ;
+fun keva'tjuhla_NK : NK ;
+fun keva'tja'a'_NK : NK ;
+fun keva'tkausi_NK : NK ;
+fun keva'tkello_NK : NK ;
+fun keva'tkesa'_NK : NK ;
+fun keva'tkuukausi_NK : NK ;
+fun keva'tkylma'_NK : NK ;
+fun keva'tkylvo'_NK : NK ;
+fun keva'tkynsimo'_NK : NK ;
+fun keva'tkynto'_NK : NK ;
+fun keva'tka'a'ryle_NK : NK ;
+fun keva'tmuoti_NK : NK ;
+fun keva'tpuku_NK : NK ;
+fun keva'tpuu_NK : NK ;
+fun keva'tpa'iva'_NK : NK ;
+fun keva'truis_NK : NK ;
+fun keva'trulla_NK : NK ;
+fun keva'tsa'a'_NK : NK ;
+fun keva'ttalvi_NK : NK ;
+fun keva'ttulva_NK : NK ;
+fun keva'tvilja_NK : NK ;
+fun keva'tva'symys_NK : NK ;
+--? fun khakihousut_NK : NK ;
+fun khakipuku_NK : NK ;
+fun khakipukuinen_NK : NK ;
+fun kidehila_NK : NK ;
+fun kidejauhe_NK : NK ;
+fun kidekemia_NK : NK ;
+fun kidemuoto_NK : NK ;
+fun kideoppi_NK : NK ;
+fun kideoptiikka_NK : NK ;
+fun kidepinta_NK : NK ;
+fun kiderakenne_NK : NK ;
+fun kideryhma'_NK : NK ;
+fun kidesokeri_NK : NK ;
+fun kidetiede_NK : NK ;
+fun kidevesi_NK : NK ;
+fun kidutuskammio_NK : NK ;
+fun kidutuskeino_NK : NK ;
+fun kidutusva'line_NK : NK ;
+fun kiehutusreaktori_NK : NK ;
+fun kiekkojoukkue_NK : NK ;
+fun kiekkokaukalo_NK : NK ;
+fun kiekkokilpailu_NK : NK ;
+fun kiekkorinki_NK : NK ;
+fun kiekkotulos_NK : NK ;
+fun kiekonheittokilpailu_NK : NK ;
+fun kiekonheittotulos_NK : NK ;
+fun kielialue_NK : NK ;
+fun kieliasu_NK : NK ;
+fun kielifilosofia_NK : NK ;
+fun kielifysiologia_NK : NK ;
+fun kielihistoria_NK : NK ;
+fun kieliha'irio'_NK : NK ;
+fun kielija'nne_NK : NK ;
+fun kielikampela_NK : NK ;
+fun kielikello_NK : NK ;
+fun kielikoe_NK : NK ;
+fun kielikorva_NK : NK ;
+fun kielikukkanen_NK : NK ;
+fun kielikunta_NK : NK ;
+fun kielikurssi_NK : NK ;
+fun kielikuva_NK : NK ;
+fun kielikylpy_NK : NK ;
+fun kieliluu_NK : NK ;
+fun kielimakkara_NK : NK ;
+fun kielimies_NK : NK ;
+fun kielimuoto_NK : NK ;
+fun kielimuuri_NK : NK ;
+fun kielinero_NK : NK ;
+fun kieliopas_NK : NK ;
+fun kieliopillinen_NK : NK ;
+--? fun kieliopinnot_NK : NK ;
+fun kieliopisto_NK : NK ;
+fun kielioppi_NK : NK ;
+fun kielipesa'_NK : NK ;
+fun kielipolitiikka_NK : NK ;
+fun kielipsykologia_NK : NK ;
+fun kielipa'a'_NK : NK ;
+fun kieliside_NK : NK ;
+fun kielisoitin_NK : NK ;
+fun kielisosiologia_NK : NK ;
+fun kielistudio_NK : NK ;
+fun kielisukulainen_NK : NK ;
+fun kielitaidoton_NK : NK ;
+fun kielitaistelu_NK : NK ;
+fun kielitaito_NK : NK ;
+fun kielitaitoinen_NK : NK ;
+fun kielitaju_NK : NK ;
+fun kielitiede_NK : NK ;
+fun kielitieteilija'_NK : NK ;
+fun kielitunne_NK : NK ;
+fun kielitutkinto_NK : NK ;
+fun kielivirhe_NK : NK ;
+fun kieliyhteiso'_NK : NK ;
+fun kieltolaki_NK : NK ;
+fun kieltolause_NK : NK ;
+fun kieltomuoto_NK : NK ;
+fun kieltosana_NK : NK ;
+fun kieltotaulu_NK : NK ;
+fun kieltoverbi_NK : NK ;
+fun kieroluonteinen_NK : NK ;
+fun kieroselka'isyys_NK : NK ;
+fun kierosilma'inen_NK : NK ;
+fun kierosilma'isyys_NK : NK ;
+fun kierreharja_NK : NK ;
+fun kierrehyppy_NK : NK ;
+fun kierrejousi_NK : NK ;
+fun kierrekaira_NK : NK ;
+fun kierrekansi_NK : NK ;
+fun kierrekansio_NK : NK ;
+fun kierrekantinen_NK : NK ;
+fun kierrekiinnitys_NK : NK ;
+fun kierrekorkki_NK : NK ;
+fun kierrelaukaus_NK : NK ;
+fun kierrelehtio'_NK : NK ;
+fun kierreleuka_NK : NK ;
+fun kierrelyo'nti_NK : NK ;
+fun kierremutteri_NK : NK ;
+fun kierrepora_NK : NK ;
+fun kierrepultti_NK : NK ;
+fun kierrepa'a'_NK : NK ;
+fun kierretappi_NK : NK ;
+fun kierretulkki_NK : NK ;
+fun kierretulppa_NK : NK ;
+fun kierreura_NK : NK ;
+fun kierrevatkain_NK : NK ;
+fun kierroslaskija_NK : NK ;
+fun kierroslaskuri_NK : NK ;
+fun kierrosluku_NK : NK ;
+fun kierroslukumittari_NK : NK ;
+fun kierrostaajuus_NK : NK ;
+fun kierra'tyskeskus_NK : NK ;
+fun kierra'tyskuitu_NK : NK ;
+fun kierra'tystuote_NK : NK ;
+fun kiertoajelu_NK : NK ;
+fun kiertoasento_NK : NK ;
+fun kiertohaka_NK : NK ;
+fun kiertoilmaus_NK : NK ;
+fun kiertojako_NK : NK ;
+fun kiertokanki_NK : NK ;
+fun kiertokasvi_NK : NK ;
+fun kiertokirje_NK : NK ;
+fun kiertokoulu_NK : NK ;
+fun kiertokulku_NK : NK ;
+fun kiertokysely_NK : NK ;
+fun kiertoka'ynti_NK : NK ;
+fun kiertolainen_NK : NK ;
+fun kiertoliike_NK : NK ;
+fun kiertoliittyma'_NK : NK ;
+fun kiertolintu_NK : NK ;
+fun kiertomatka_NK : NK ;
+fun kiertonivel_NK : NK ;
+fun kiertonopeus_NK : NK ;
+fun kiertona'yttely_NK : NK ;
+fun kiertopalkinto_NK : NK ;
+fun kiertopoikkeama_NK : NK ;
+fun kiertopokaali_NK : NK ;
+fun kiertoprosessi_NK : NK ;
+fun kiertopumppu_NK : NK ;
+fun kiertorata_NK : NK ;
+fun kiertosuunta_NK : NK ;
+fun kiertotie_NK : NK ;
+fun kiertota'hti_NK : NK ;
+fun kiertoviljely_NK : NK ;
+fun kiertuelainen_NK : NK ;
+fun kiertuemuusikko_NK : NK ;
+fun kiertueteatteri_NK : NK ;
+fun kierukkajousi_NK : NK ;
+fun kierukkakuljetin_NK : NK ;
+fun kierukkanauha_NK : NK ;
+fun kierukkapyo'ra'_NK : NK ;
+fun kierukkavaihde_NK : NK ;
+fun kierukkava'litys_NK : NK ;
+fun kiera'hdystyyli_NK : NK ;
+fun kietaisuhame_NK : NK ;
+fun kietaisutakki_NK : NK ;
+fun kiharakarvainen_NK : NK ;
+fun kiharapa'inen_NK : NK ;
+fun kiharatukkainen_NK : NK ;
+fun kiharaturkkinen_NK : NK ;
+fun kiharavillainen_NK : NK ;
+fun kihlausilmoitus_NK : NK ;
+fun kihomato_NK : NK ;
+fun kihtikohtaus_NK : NK ;
+fun kiihdytysajo_NK : NK ;
+fun kiihdytyskaista_NK : NK ;
+fun kiihdytyskilpailu_NK : NK ;
+fun kiihkea'luonteinen_NK : NK ;
+fun kiihkea'sanainen_NK : NK ;
+fun kiihkomieli_NK : NK ;
+fun kiihkomielisyys_NK : NK ;
+fun kiihkopa'inen_NK : NK ;
+fun kiihotusaine_NK : NK ;
+fun kiihotustila_NK : NK ;
+fun kiihotustoiminta_NK : NK ;
+fun kiihtymystila_NK : NK ;
+fun kiikari_NK : NK ;
+fun kiikarikiva'a'ri_NK : NK ;
+fun kiikarita'hta'in_NK : NK ;
+fun kiikkulauta_NK : NK ;
+fun kiikkutuoli_NK : NK ;
+fun kiikunta_NK : NK ;
+fun kiilahihna_NK : NK ;
+fun kiilakivi_NK : NK ;
+fun kiilakorko_NK : NK ;
+fun kiilalause_NK : NK ;
+fun kiilaliitos_NK : NK ;
+fun kiillegneissi_NK : NK ;
+fun kiilleliuske_NK : NK ;
+fun kiillotusaine_NK : NK ;
+fun kiillotusharja_NK : NK ;
+fun kiillotusjauhe_NK : NK ;
+fun kiillotuskone_NK : NK ;
+fun kiillotusvaha_NK : NK ;
+fun kiiltokuoriainen_NK : NK ;
+fun kiiltokuva_NK : NK ;
+fun kiiltokuvapoika_NK : NK ;
+fun kiiltoka'rpa'nen_NK : NK ;
+fun kiiltomaali_NK : NK ;
+fun kiiltomato_NK : NK ;
+fun kiiltonahka_NK : NK ;
+fun kiiltonahkainen_NK : NK ;
+fun kiiltonahkakenka'_NK : NK ;
+fun kiiltopaperi_NK : NK ;
+fun kiiltopensas_NK : NK ;
+fun kiiltopinta_NK : NK ;
+fun kiiltopintainen_NK : NK ;
+fun kiiltosametti_NK : NK ;
+fun kiiltova'ri_NK : NK ;
+fun kiilta'va'karvainen_NK : NK ;
+fun kiilta'va'lehtinen_NK : NK ;
+fun kiilta'va'pintainen_NK : NK ;
+fun kiilupistia'inen_NK : NK ;
+fun kiilusilma'_NK : NK ;
+fun kiilusilma'inen_NK : NK ;
+fun kiimainen_NK : NK ;
+fun kiinailmio'_NK : NK ;
+fun kiinakuori_NK : NK ;
+fun kiinalainen_NK : NK ;
+fun kiinapuu_NK : NK ;
+fun kiinaviini_NK : NK ;
+fun kiinnelaastari_NK : NK ;
+fun kiinnelaina_NK : NK ;
+fun kiinnikasvettuma_NK : NK ;
+fun kiinniolo_NK : NK ;
+fun kiinniotto_NK : NK ;
+fun kiinniottokortti_NK : NK ;
+fun kiinniottopakko_NK : NK ;
+fun kiinnipano_NK : NK ;
+fun kiinnipidin_NK : NK ;
+fun kiinnipito_NK : NK ;
+fun kiinnisaanti_NK : NK ;
+fun kiinnitysaine_NK : NK ;
+fun kiinnityshakemus_NK : NK ;
+fun kiinnityskelpoinen_NK : NK ;
+fun kiinnityskirja_NK : NK ;
+fun kiinnitysko'ysi_NK : NK ;
+fun kiinnityslaina_NK : NK ;
+fun kiinnitysluotto_NK : NK ;
+fun kiinnitysluottolaitos_NK : NK ;
+fun kiinnitysluottopankki_NK : NK ;
+fun kiinnitysoikeus_NK : NK ;
+fun kiinnityspiste_NK : NK ;
+fun kiinnitysrekisteri_NK : NK ;
+fun kiinnityssuola_NK : NK ;
+fun kiinnitystodistus_NK : NK ;
+fun kiinnitysvakuus_NK : NK ;
+fun kiinnitysvelka_NK : NK ;
+fun kiinteisto'ela'ke_NK : NK ;
+fun kiinteisto'ja'te_NK : NK ;
+fun kiinteisto'kauppa_NK : NK ;
+fun kiinteisto'laina_NK : NK ;
+fun kiinteisto'luettelo_NK : NK ;
+fun kiinteisto'luotto_NK : NK ;
+fun kiinteisto'neuvos_NK : NK ;
+fun kiinteisto'rasite_NK : NK ;
+fun kiinteisto'rasitus_NK : NK ;
+fun kiinteisto'rekisteri_NK : NK ;
+fun kiinteisto'tuomari_NK : NK ;
+fun kiintea'korkoinen_NK : NK ;
+fun kiintio'pakolainen_NK : NK ;
+fun kiintio'sopimus_NK : NK ;
+fun kiintolevyasema_NK : NK ;
+fun kiintopisteverkko_NK : NK ;
+fun kiipeilyteline_NK : NK ;
+fun kiipeli_NK : NK ;
+fun kiipija'kasvi_NK : NK ;
+fun kiireapulainen_NK : NK ;
+fun kiireellisyysja'rjestys_NK : NK ;
+fun kiireisyys_NK : NK ;
+fun kiirekausi_NK : NK ;
+fun kiireysja'rjestys_NK : NK ;
+fun kiistakapula_NK : NK ;
+fun kiistakirja_NK : NK ;
+fun kiistakirjoitus_NK : NK ;
+fun kiistakysymys_NK : NK ;
+fun kiistapallo_NK : NK ;
+fun kiitolaukka_NK : NK ;
+fun kiitonopeus_NK : NK ;
+fun kiitorata_NK : NK ;
+fun kiitoskauppa_NK : NK ;
+fun kiitoskirje_NK : NK ;
+fun kiitoskortti_NK : NK ;
+fun kiitosmaininta_NK : NK ;
+fun kiitospuhe_NK : NK ;
+fun kiitospa'iva'_NK : NK ;
+fun kiitosrukous_NK : NK ;
+fun kiitosuhri_NK : NK ;
+fun kiitosvirsi_NK : NK ;
+fun kiitotavara_NK : NK ;
+fun kiitotie_NK : NK ;
+fun kiivasluonteinen_NK : NK ;
+fun kiivasluontoinen_NK : NK ;
+fun kiivastahtinen_NK : NK ;
+fun kiivastus_NK : NK ;
+fun kiivasvauhtinen_NK : NK ;
+fun kilikello_NK : NK ;
+fun kilipukki_NK : NK ;
+fun kiljuhanhi_NK : NK ;
+fun kiljukotka_NK : NK ;
+fun kilogramma_NK : NK ;
+fun kilohaili_NK : NK ;
+fun kilohinta_NK : NK ;
+fun kilojoule_NK : NK ;
+fun kilokakku_NK : NK ;
+fun kilokalori_NK : NK ;
+fun kilometri_NK : NK ;
+fun kilometrikorvaus_NK : NK ;
+fun kilometrinen_NK : NK ;
+fun kilometripylva's_NK : NK ;
+fun kilometritehdas_NK : NK ;
+fun kilometritehtailija_NK : NK ;
+fun kilopondi_NK : NK ;
+fun kilopondimetri_NK : NK ;
+fun kilopulla_NK : NK ;
+fun kilotavu_NK : NK ;
+fun kilotonni_NK : NK ;
+fun kilowattitunti_NK : NK ;
+fun kilowattituntimittari_NK : NK ;
+fun kilpahakija_NK : NK ;
+fun kilpahiihto_NK : NK ;
+fun kilpahiihta'ja'_NK : NK ;
+fun kilpailuhenki_NK : NK ;
+fun kilpailukalenteri_NK : NK ;
+fun kilpailukanslia_NK : NK ;
+fun kilpailukausi_NK : NK ;
+fun kilpailukielto_NK : NK ;
+fun kilpailukokemus_NK : NK ;
+fun kilpailukuponki_NK : NK ;
+fun kilpailukyky_NK : NK ;
+fun kilpailukykyinen_NK : NK ;
+fun kilpailukyvyto'n_NK : NK ;
+fun kilpailulaji_NK : NK ;
+fun kilpailumieli_NK : NK ;
+fun kilpailuneuvosto_NK : NK ;
+fun kilpailunumero_NK : NK ;
+fun kilpailuohjelma_NK : NK ;
+fun kilpailupa'iva'_NK : NK ;
+fun kilpailusuoritus_NK : NK ;
+fun kilpailutalous_NK : NK ;
+fun kilpailutilanne_NK : NK ;
+fun kilpailutoiminta_NK : NK ;
+fun kilpajuoksija_NK : NK ;
+fun kilpajuoksu_NK : NK ;
+fun kilpakentta'_NK : NK ;
+fun kilpakone_NK : NK ;
+fun kilpakosija_NK : NK ;
+fun kilpakumppani_NK : NK ;
+fun kilpaka'vely_NK : NK ;
+fun kilpalatu_NK : NK ;
+fun kilpapurjehdus_NK : NK ;
+fun kilpapyo'ra'_NK : NK ;
+fun kilpapyo'ra'ilija'_NK : NK ;
+fun kilpapyo'ra'ily_NK : NK ;
+fun kilparata_NK : NK ;
+fun kilparatsastaja_NK : NK ;
+fun kilparatsastus_NK : NK ;
+fun kilparatsu_NK : NK ;
+fun kilpasoutu_NK : NK ;
+fun kilpasuksi_NK : NK ;
+fun kilpatanssi_NK : NK ;
+fun kilpatehta'va'_NK : NK ;
+fun kilpatoveri_NK : NK ;
+fun kilpauimari_NK : NK ;
+fun kilpauinti_NK : NK ;
+fun kilpaurheilija_NK : NK ;
+fun kilpaurheilu_NK : NK ;
+fun kilpavarustelu_NK : NK ;
+fun kilpaveikko_NK : NK ;
+fun kilpavene_NK : NK ;
+fun kilpiarvo_NK : NK ;
+fun kilpija'ka'la'_NK : NK ;
+fun kilpikaarna_NK : NK ;
+fun kilpikirva_NK : NK ;
+fun kilpikonna_NK : NK ;
+fun kilpikonnakaulus_NK : NK ;
+fun kilpikonnaliemi_NK : NK ;
+fun kilpikonnapuolustus_NK : NK ;
+fun kilpikonnasuojaus_NK : NK ;
+fun kilpikukka_NK : NK ;
+fun kilpikuoriainen_NK : NK ;
+fun kilpirauhanen_NK : NK ;
+fun kilpiruoho_NK : NK ;
+fun kilpirusto_NK : NK ;
+fun kilpisammal_NK : NK ;
+fun kiltalainen_NK : NK ;
+fun kiltalaitos_NK : NK ;
+fun kimakkaa'a'ninen_NK : NK ;
+fun kimonohiha_NK : NK ;
+fun kimonohihainen_NK : NK ;
+fun kimpilauta_NK : NK ;
+fun kimpilevy_NK : NK ;
+fun kimppakyyti_NK : NK ;
+fun kinkkufilee_NK : NK ;
+fun kinkkukiusaus_NK : NK ;
+fun kinkkuleike_NK : NK ;
+fun kinkkumakkara_NK : NK ;
+fun kinkkumunakas_NK : NK ;
+fun kinkkupala_NK : NK ;
+fun kinkkusalaatti_NK : NK ;
+fun kinkkusa'mpyla'_NK : NK ;
+fun kinkkuviipale_NK : NK ;
+fun kinnaspari_NK : NK ;
+fun kinnerja'nne_NK : NK ;
+fun kinnernivel_NK : NK ;
+fun kinofilmi_NK : NK ;
+fun kinofilmikamera_NK : NK ;
+fun kinostuma_NK : NK ;
+fun kinttupolku_NK : NK ;
+fun kinuskikakku_NK : NK ;
+fun kinuskikaramelli_NK : NK ;
+fun kinuskikastike_NK : NK ;
+fun kioskikauppa_NK : NK ;
+fun kioskikauppias_NK : NK ;
+fun kioskikirja_NK : NK ;
+fun kioskiruoka_NK : NK ;
+fun kioskiviihde_NK : NK ;
+fun kipina'mikko_NK : NK ;
+fun kipina'purkaus_NK : NK ;
+fun kipina'suoja_NK : NK ;
+fun kipina'tyo'sto'_NK : NK ;
+fun kipina'verkko_NK : NK ;
+fun kipparipaita_NK : NK ;
+fun kipparitakki_NK : NK ;
+fun kippiauto_NK : NK ;
+fun kippikattila_NK : NK ;
+fun kippilava_NK : NK ;
+fun kippiovi_NK : NK ;
+fun kippivaunu_NK : NK ;
+fun kippuraha'nta'inen_NK : NK ;
+fun kippuraka'rkinen_NK : NK ;
+fun kippuranena'inen_NK : NK ;
+fun kippuranokkainen_NK : NK ;
+fun kippurasarvinen_NK : NK ;
+fun kipsijauhe_NK : NK ;
+fun kipsija'ljenno's_NK : NK ;
+fun kipsikoriste_NK : NK ;
+fun kipsikuva_NK : NK ;
+fun kipsilevy_NK : NK ;
+fun kipsiside_NK : NK ;
+fun kipsisidos_NK : NK ;
+fun kipsivalos_NK : NK ;
+fun kipsiveistos_NK : NK ;
+fun kipuaisti_NK : NK ;
+fun kipuaistimus_NK : NK ;
+fun kipukohtaus_NK : NK ;
+fun kipukynnys_NK : NK ;
+fun kipula'a'ke_NK : NK ;
+fun kipula'a'kitys_NK : NK ;
+fun kipupiste_NK : NK ;
+fun kipupumppu_NK : NK ;
+fun kipuraha_NK : NK ;
+fun kipusisko_NK : NK ;
+fun kirea'ilmeinen_NK : NK ;
+fun kiriherkkyys_NK : NK ;
+fun kiriherkka'_NK : NK ;
+fun kirikierros_NK : NK ;
+fun kirikyky_NK : NK ;
+fun kirikykyinen_NK : NK ;
+fun kiristyskirje_NK : NK ;
+fun kiristyspolitiikka_NK : NK ;
+fun kiristyspultti_NK : NK ;
+fun kiristysruuvi_NK : NK ;
+fun kiristysside_NK : NK ;
+fun kirjaesittely_NK : NK ;
+fun kirjahylly_NK : NK ;
+fun kirjailijanimi_NK : NK ;
+fun kirjainkirjoitus_NK : NK ;
+fun kirjainlaji_NK : NK ;
+fun kirjainmerkki_NK : NK ;
+fun kirjainsana_NK : NK ;
+fun kirjaintyyli_NK : NK ;
+fun kirjaintyyppi_NK : NK ;
+fun kirjakaappi_NK : NK ;
+fun kirjakasetti_NK : NK ;
+fun kirjakauppa_NK : NK ;
+fun kirjakauppias_NK : NK ;
+fun kirjakemetalli_NK : NK ;
+fun kirjakerho_NK : NK ;
+fun kirjakieli_NK : NK ;
+fun kirjakielinen_NK : NK ;
+fun kirjakokoelma_NK : NK ;
+fun kirjaka'a'ro'_NK : NK ;
+fun kirjallisuusarvostelu_NK : NK ;
+fun kirjallisuushistoria_NK : NK ;
+fun kirjallisuuskatsaus_NK : NK ;
+fun kirjallisuuskriitikko_NK : NK ;
+fun kirjallisuuskritiikki_NK : NK ;
+fun kirjallisuuspalkinto_NK : NK ;
+fun kirjallisuuspiiri_NK : NK ;
+fun kirjallisuustiede_NK : NK ;
+fun kirjallisuusviite_NK : NK ;
+fun kirjanpitoarvo_NK : NK ;
+fun kirjanpitokausi_NK : NK ;
+fun kirjanpitokirja_NK : NK ;
+fun kirjanpitotila_NK : NK ;
+fun kirjanpitovihko_NK : NK ;
+fun kirjanpitovuosi_NK : NK ;
+fun kirjana'yttely_NK : NK ;
+fun kirjapaino_NK : NK ;
+fun kirjapainotaito_NK : NK ;
+fun kirjapainotekniikka_NK : NK ;
+fun kirjasarja_NK : NK ;
+fun kirjasato_NK : NK ;
+fun kirjasinkeha'_NK : NK ;
+fun kirjasinkiekko_NK : NK ;
+fun kirjasinlaji_NK : NK ;
+fun kirjasinmetalli_NK : NK ;
+fun kirjasintyyli_NK : NK ;
+fun kirjasivistys_NK : NK ;
+fun kirjaskorpioni_NK : NK ;
+fun kirjasota_NK : NK ;
+fun kirjastoamanuenssi_NK : NK ;
+fun kirjastoapulainen_NK : NK ;
+fun kirjastoauto_NK : NK ;
+fun kirjastokortti_NK : NK ;
+fun kirjastoneuvos_NK : NK ;
+fun kirjastopalvelu_NK : NK ;
+fun kirjastotalo_NK : NK ;
+fun kirjastotiede_NK : NK ;
+fun kirjastotutkinto_NK : NK ;
+fun kirjastovirkailija_NK : NK ;
+fun kirjasuomi_NK : NK ;
+fun kirjataide_NK : NK ;
+fun kirjateline_NK : NK ;
+fun kirjatieto_NK : NK ;
+fun kirjatietous_NK : NK ;
+fun kirjatoukka_NK : NK ;
+fun kirjatuki_NK : NK ;
+fun kirjata'i_NK : NK ;
+fun kirjauutuus_NK : NK ;
+fun kirjavakuvioinen_NK : NK ;
+fun kirjaviisas_NK : NK ;
+fun kirjaviisaus_NK : NK ;
+fun kirjeensuljinmerkki_NK : NK ;
+fun kirjeenvaihtajaja'sen_NK : NK ;
+fun kirjeenvaihtajapankki_NK : NK ;
+fun kirjeenvaihtoilmoitus_NK : NK ;
+fun kirjeenvaihtotoveri_NK : NK ;
+fun kirjekuori_NK : NK ;
+fun kirjekuorilaukku_NK : NK ;
+fun kirjekurssi_NK : NK ;
+fun kirjekyyhky_NK : NK ;
+fun kirjelaatikko_NK : NK ;
+fun kirjelakka_NK : NK ;
+fun kirjelappu_NK : NK ;
+fun kirjelappunen_NK : NK ;
+fun kirjeluukku_NK : NK ;
+fun kirjemaksu_NK : NK ;
+fun kirjeopiskelu_NK : NK ;
+fun kirjeopisto_NK : NK ;
+fun kirjepaperi_NK : NK ;
+fun kirjepaperilehtio'_NK : NK ;
+fun kirjepommi_NK : NK ;
+fun kirjeposti_NK : NK ;
+fun kirjepussi_NK : NK ;
+fun kirjeromaani_NK : NK ;
+fun kirjesalaisuus_NK : NK ;
+fun kirjesensuuri_NK : NK ;
+fun kirjeshakki_NK : NK ;
+fun kirjevaaka_NK : NK ;
+fun kirjevelka_NK : NK ;
+fun kirjeyhteys_NK : NK ;
+fun kirjeysta'va'_NK : NK ;
+fun kirjoahven_NK : NK ;
+fun kirjograniitti_NK : NK ;
+fun kirjohylje_NK : NK ;
+fun kirjoitusalusta_NK : NK ;
+fun kirjoitusasu_NK : NK ;
+fun kirjoitusharjoitus_NK : NK ;
+fun kirjoitusha'irio'_NK : NK ;
+fun kirjoituskilpailu_NK : NK ;
+fun kirjoituskirjain_NK : NK ;
+fun kirjoituskoe_NK : NK ;
+fun kirjoituskone_NK : NK ;
+fun kirjoituslehtio'_NK : NK ;
+fun kirjoituslipasto_NK : NK ;
+fun kirjoitusmerkki_NK : NK ;
+fun kirjoituspalkkio_NK : NK ;
+fun kirjoituspaperi_NK : NK ;
+fun kirjoituspulpetti_NK : NK ;
+fun kirjoituspa'a'_NK : NK ;
+fun kirjoituspa'a'te_NK : NK ;
+fun kirjoituspo'yta'_NK : NK ;
+fun kirjoitussarja_NK : NK ;
+fun kirjoitustaidoton_NK : NK ;
+fun kirjoitustaito_NK : NK ;
+fun kirjoitustaitoinen_NK : NK ;
+fun kirjoitustapa_NK : NK ;
+fun kirjoitustyyli_NK : NK ;
+fun kirjoitusvihko_NK : NK ;
+fun kirjoitusvirhe_NK : NK ;
+fun kirjoitusva'line_NK : NK ;
+fun kirjolehti_NK : NK ;
+fun kirjolohi_NK : NK ;
+fun kirjoneule_NK : NK ;
+fun kirjopeippi_NK : NK ;
+fun kirjopesu_NK : NK ;
+fun kirjopyykki_NK : NK ;
+fun kirjosieppo_NK : NK ;
+fun kirjota'hti_NK : NK ;
+fun kirkaskatseinen_NK : NK ;
+fun kirkasotsainen_NK : NK ;
+fun kirkassilma'inen_NK : NK ;
+fun kirkassointinen_NK : NK ;
+fun kirkastusaine_NK : NK ;
+fun kirkastussunnuntai_NK : NK ;
+fun kirkasvetinen_NK : NK ;
+fun kirkasva'rinen_NK : NK ;
+fun kirkasa'a'ninen_NK : NK ;
+fun kirkkaussa'a'din_NK : NK ;
+fun kirkkoaaria_NK : NK ;
+fun kirkkohallinto_NK : NK ;
+fun kirkkohistoria_NK : NK ;
+--? fun kirkkoha'a't_NK : NK ;
+fun kirkkoisa'_NK : NK ;
+fun kirkkojuhla_NK : NK ;
+fun kirkkokansa_NK : NK ;
+fun kirkkokantaatti_NK : NK ;
+fun kirkkokolehti_NK : NK ;
+fun kirkkokonsertti_NK : NK ;
+fun kirkkokunta_NK : NK ;
+fun kirkkokuoro_NK : NK ;
+fun kirkkolatina_NK : NK ;
+fun kirkkolaulu_NK : NK ;
+fun kirkkomaa_NK : NK ;
+fun kirkkomaalari_NK : NK ;
+fun kirkkomaalaus_NK : NK ;
+fun kirkkomatka_NK : NK ;
+fun kirkkomusiikki_NK : NK ;
+fun kirkkomusiikkiteos_NK : NK ;
+fun kirkkomuusikko_NK : NK ;
+fun kirkkoneuvos_NK : NK ;
+fun kirkkoneuvosto_NK : NK ;
+fun kirkkona'ytelma'_NK : NK ;
+fun kirkkopolitiikka_NK : NK ;
+fun kirkkopuisto_NK : NK ;
+fun kirkkopyha'_NK : NK ;
+fun kirkkorakennus_NK : NK ;
+fun kirkkorauha_NK : NK ;
+fun kirkkoruhtinas_NK : NK ;
+fun kirkkoslaavi_NK : NK ;
+fun kirkkososiologia_NK : NK ;
+fun kirkkotaide_NK : NK ;
+fun kirkkotekstiili_NK : NK ;
+fun kirkkovaltuusto_NK : NK ;
+fun kirkkovene_NK : NK ;
+fun kirkkoviini_NK : NK ;
+fun kirkkovuosi_NK : NK ;
+fun kirkkova'ki_NK : NK ;
+fun kirkkova'a'rti_NK : NK ;
+fun kirnupiima'_NK : NK ;
+fun kiropraktiikka_NK : NK ;
+fun kiropraktikko_NK : NK ;
+fun kirosana_NK : NK ;
+fun kirpea'sanainen_NK : NK ;
+fun kirppupeli_NK : NK ;
+fun kirppusirkus_NK : NK ;
+fun kirpputori_NK : NK ;
+fun kirsikkahillo_NK : NK ;
+fun kirsikkaliko'o'ri_NK : NK ;
+fun kirsikkamehu_NK : NK ;
+fun kirsikkapuu_NK : NK ;
+fun kirsikkatomaatti_NK : NK ;
+fun kirsikkaviini_NK : NK ;
+fun kirvakorento_NK : NK ;
+fun kirvasa'a'ski_NK : NK ;
+fun kirvesmies_NK : NK ;
+fun kirvespohja_NK : NK ;
+fun kirvesvarsi_NK : NK ;
+fun kisaisa'nnyys_NK : NK ;
+fun kisajoukkue_NK : NK ;
+fun kisakaupunki_NK : NK ;
+fun kisakyla'_NK : NK ;
+fun kisatytto'_NK : NK ;
+fun kiskoauto_NK : NK ;
+fun kiskoliikenne_NK : NK ;
+fun kiskonaula_NK : NK ;
+fun kiskopari_NK : NK ;
+fun kiskovalaisin_NK : NK ;
+fun kiskuri_NK : NK ;
+fun kiskurihinta_NK : NK ;
+fun kissaela'in_NK : NK ;
+fun kissamainen_NK : NK ;
+fun kissansilma'ilmio'_NK : NK ;
+fun kissana'yttely_NK : NK ;
+fun kissapeto_NK : NK ;
+fun kissarotu_NK : NK ;
+fun kissarutto_NK : NK ;
+fun kisa'lli_NK : NK ;
+fun kisa'llilaulu_NK : NK ;
+fun kisa'llina'yte_NK : NK ;
+fun kitakieleke_NK : NK ;
+fun kitalaki_NK : NK ;
+fun kitapurje_NK : NK ;
+fun kitarakuoro_NK : NK ;
+fun kitaramusiikki_NK : NK ;
+fun kitarasa'vellys_NK : NK ;
+fun kitarisa_NK : NK ;
+fun kitarisatulehdus_NK : NK ;
+fun kitaristi_NK : NK ;
+fun kitiinikuori_NK : NK ;
+fun kitiinipanssari_NK : NK ;
+fun kitkaha'vio'_NK : NK ;
+fun kitkajarru_NK : NK ;
+fun kitkaketju_NK : NK ;
+fun kitkakytkin_NK : NK ;
+fun kitkapyo'ra'_NK : NK ;
+fun kitkarengas_NK : NK ;
+fun kitkasa'hko'_NK : NK ;
+fun kitkatekija'_NK : NK ;
+fun kitkatyo'tto'myys_NK : NK ;
+fun kittijuusto_NK : NK ;
+fun kittiveitsi_NK : NK ;
+fun kiuaskivi_NK : NK ;
+fun kiukkupussi_NK : NK ;
+fun kivera'ka'rkinen_NK : NK ;
+fun kivespussi_NK : NK ;
+fun kivestulehdus_NK : NK ;
+fun kiviaine_NK : NK ;
+fun kiviaines_NK : NK ;
+fun kiviaita_NK : NK ;
+fun kiviastia_NK : NK ;
+fun kivibetoni_NK : NK ;
+fun kiviesine_NK : NK ;
+fun kivihiili_NK : NK ;
+fun kivihiomo_NK : NK ;
+fun kivijalka_NK : NK ;
+fun kivijalusta_NK : NK ;
+fun kivija'rka'le_NK : NK ;
+fun kivikasarmi_NK : NK ;
+fun kivikasvo_NK : NK ;
+fun kivikasvoinen_NK : NK ;
+fun kivikausi_NK : NK ;
+fun kivikautinen_NK : NK ;
+fun kivikirjoitus_NK : NK ;
+fun kivikirkko_NK : NK ;
+fun kivikirves_NK : NK ;
+fun kivikova_NK : NK ;
+fun kivikunta_NK : NK ;
+fun kivikyla'_NK : NK ;
+fun kivilaakeri_NK : NK ;
+fun kivilaatta_NK : NK ;
+fun kivilaituri_NK : NK ;
+fun kivilaji_NK : NK ;
+fun kivilattia_NK : NK ;
+fun kivilohkare_NK : NK ;
+fun kivilouhimo_NK : NK ;
+fun kivilouhos_NK : NK ;
+fun kivimineraali_NK : NK ;
+fun kivimuodostuma_NK : NK ;
+fun kivimurska_NK : NK ;
+fun kivimurskaamo_NK : NK ;
+fun kivimuuri_NK : NK ;
+fun kivimo'hka'le_NK : NK ;
+fun kivinavetta_NK : NK ;
+fun kivinilkka_NK : NK ;
+fun kivipaasi_NK : NK ;
+fun kivipainanta_NK : NK ;
+fun kivipainate_NK : NK ;
+fun kivipaino_NK : NK ;
+fun kivipainokuva_NK : NK ;
+fun kivipatsas_NK : NK ;
+fun kivipelto_NK : NK ;
+fun kiviperusta_NK : NK ;
+fun kiviperustus_NK : NK ;
+fun kivipera'inen_NK : NK ;
+fun kivipesu_NK : NK ;
+fun kivipiirros_NK : NK ;
+fun kivipilari_NK : NK ;
+fun kivipora_NK : NK ;
+fun kivipuuteri_NK : NK ;
+fun kivipylva's_NK : NK ;
+fun kivipyykki_NK : NK ;
+fun kivipa'a'llyste_NK : NK ;
+fun kivipo'ly_NK : NK ;
+fun kivipo'lykeuhko_NK : NK ;
+fun kivirae_NK : NK ;
+fun kivirakennus_NK : NK ;
+fun kivirakka_NK : NK ;
+fun kiviraunio_NK : NK ;
+fun kivireki_NK : NK ;
+fun kiviriippa_NK : NK ;
+fun kivirikko_NK : NK ;
+fun kiviruukku_NK : NK ;
+fun kiviro'ykkio'_NK : NK ;
+fun kivisammal_NK : NK ;
+fun kiviseina'naula_NK : NK ;
+fun kiviseppa'_NK : NK ;
+fun kivisilta_NK : NK ;
+fun kivisimppu_NK : NK ;
+fun kivisormus_NK : NK ;
+fun kivisuola_NK : NK ;
+fun kivitalo_NK : NK ;
+fun kivitaltta_NK : NK ;
+fun kivitasku_NK : NK ;
+fun kivitatti_NK : NK ;
+fun kivitavara_NK : NK ;
+fun kiviteollisuus_NK : NK ;
+fun kiviteos_NK : NK ;
+fun kivitiede_NK : NK ;
+fun kivityo'_NK : NK ;
+fun kivityo'kalu_NK : NK ;
+fun kivityo'la'inen_NK : NK ;
+fun kivivalli_NK : NK ;
+fun kivivati_NK : NK ;
+fun kiviveistos_NK : NK ;
+fun kiviveista'mo'_NK : NK ;
+fun kivivilla_NK : NK ;
+fun kiviyrtti_NK : NK ;
+fun kiva'a'riammunta_NK : NK ;
+fun kiva'a'riampuja_NK : NK ;
+fun kiva'a'rijoukkue_NK : NK ;
+fun kiva'a'rikomppania_NK : NK ;
+fun kiva'a'rikranaatti_NK : NK ;
+fun kiva'a'rilaji_NK : NK ;
+fun kiva'a'rimies_NK : NK ;
+fun kiva'a'riote_NK : NK ;
+fun kiva'a'riryhma'_NK : NK ;
+fun kiva'a'rituli_NK : NK ;
+fun klaffituoli_NK : NK ;
+fun klahvipiironki_NK : NK ;
+fun klahvituoli_NK : NK ;
+fun klamydiatartunta_NK : NK ;
+fun klamydiatulehdus_NK : NK ;
+fun klanipa'inen_NK : NK ;
+fun klimppisoppa_NK : NK ;
+fun klinikkaluokka_NK : NK ;
+fun klinikkaopetus_NK : NK ;
+fun klinkkerilattia_NK : NK ;
+fun kloorivety_NK : NK ;
+fun kloottikantinen_NK : NK ;
+fun klubitakki_NK : NK ;
+fun koalitiohallitus_NK : NK ;
+fun kobolttikanuuna_NK : NK ;
+fun kobolttipommi_NK : NK ;
+fun kobolttisini_NK : NK ;
+fun kobolttisininen_NK : NK ;
+fun kobolttiva'ri_NK : NK ;
+fun kodinhoitoapu_NK : NK ;
+fun kodinhoitohuone_NK : NK ;
+fun koeaamiainen_NK : NK ;
+fun koeajaja_NK : NK ;
+fun koeajo_NK : NK ;
+fun koeateria_NK : NK ;
+fun koefilmaus_NK : NK ;
+fun koehenkilo'_NK : NK ;
+fun koehyppy_NK : NK ;
+fun koehyppa'a'ja'_NK : NK ;
+fun koekakku_NK : NK ;
+fun koekaniini_NK : NK ;
+fun koekappale_NK : NK ;
+fun koekeittio'_NK : NK ;
+fun koekilpi_NK : NK ;
+fun koekuormitus_NK : NK ;
+fun koekuvaus_NK : NK ;
+fun koeka'ytto'_NK : NK ;
+fun koelento_NK : NK ;
+fun koelenta'ja'_NK : NK ;
+fun koenumero_NK : NK ;
+fun koenumerokilpi_NK : NK ;
+fun koepala_NK : NK ;
+fun koepallo_NK : NK ;
+fun koepaperi_NK : NK ;
+fun koeporaus_NK : NK ;
+fun koeputki_NK : NK ;
+fun koeputkilapsi_NK : NK ;
+fun koeryhma'_NK : NK ;
+fun koesarja_NK : NK ;
+fun koetehta'va'_NK : NK ;
+fun koetinkivi_NK : NK ;
+fun koetulos_NK : NK ;
+fun koeviljelma'_NK : NK ;
+fun koeviljely_NK : NK ;
+fun koea'a'nestys_NK : NK ;
+fun kognitiotiede_NK : NK ;
+fun kohdekieli_NK : NK ;
+fun kohderyhma'_NK : NK ;
+fun kohdevalaisin_NK : NK ;
+fun kohdeviestinta'_NK : NK ;
+fun kohinasalpa_NK : NK ;
+fun kohokammio_NK : NK ;
+fun kohokartta_NK : NK ;
+fun kohokirjain_NK : NK ;
+fun kohokirjoitin_NK : NK ;
+fun kohokirjoitus_NK : NK ;
+fun kohokkikasvi_NK : NK ;
+fun kohokuva_NK : NK ;
+fun kohokuvio_NK : NK ;
+fun koholyo'nti_NK : NK ;
+fun kohopaino_NK : NK ;
+fun kohopainokone_NK : NK ;
+fun kohopallo_NK : NK ;
+fun kohosuo_NK : NK ;
+fun kohotahti_NK : NK ;
+fun kohottajalihas_NK : NK ;
+fun kohotusaine_NK : NK ;
+fun kohoventtiili_NK : NK ;
+fun kohtalainen_AK : AK ;
+fun kohtalotoveri_NK : NK ;
+fun kohtalousko_NK : NK ;
+fun kohtauspaikka_NK : NK ;
+fun kohteliaisuuska'ynti_NK : NK ;
+fun kohteliaisuussa'a'nto'_NK : NK ;
+fun kohtisuora_NK : NK ;
+fun kohtusyo'pa'_NK : NK ;
+fun kohvaja'a'_NK : NK ;
+fun koipussi_NK : NK ;
+fun koiraela'in_NK : NK ;
+fun koiraemo_NK : NK ;
+fun koirakilpailu_NK : NK ;
+fun koirakoulu_NK : NK ;
+fun koiralauma_NK : NK ;
+fun koirana'yttely_NK : NK ;
+fun koirapoliisi_NK : NK ;
+fun koirapuisto_NK : NK ;
+fun koirarotu_NK : NK ;
+fun koirasela'in_NK : NK ;
+fun koiraspontti_NK : NK ;
+fun koiraspuolinen_NK : NK ;
+fun koirasusi_NK : NK ;
+fun koiratarha_NK : NK ;
+fun koiravahti_NK : NK ;
+fun koiravaljakko_NK : NK ;
+fun koiravero_NK : NK ;
+fun koiruoho_NK : NK ;
+fun koisokasvi_NK : NK ;
+fun koivistolainen_NK : NK ;
+fun koivufiikus_NK : NK ;
+fun koivuhalko_NK : NK ;
+fun koivukuja_NK : NK ;
+fun koivulauta_NK : NK ;
+fun koivumetsikko'_NK : NK ;
+fun koivumetsa'_NK : NK ;
+fun koivuniemi_NK : NK ;
+fun koivupuinen_NK : NK ;
+fun koivupuu_NK : NK ;
+fun koivusokeri_NK : NK ;
+fun koivuvaltainen_NK : NK ;
+fun koivuvaneri_NK : NK ;
+fun koivuvitsa_NK : NK ;
+fun koivuvyo'hyke_NK : NK ;
+fun kojelauta_NK : NK ;
+fun kojepistoke_NK : NK ;
+fun kojetaulu_NK : NK ;
+fun kojevastake_NK : NK ;
+fun kokeiluaste_NK : NK ;
+fun kokeiluhalu_NK : NK ;
+fun kokemusmaailma_NK : NK ;
+fun kokemuspera'inen_AK : AK ;
+fun kokemuspiiri_NK : NK ;
+fun kokkapuhe_NK : NK ;
+fun kokkapuu_NK : NK ;
+fun kokkatuhto_NK : NK ;
+fun kokkelipiima'_NK : NK ;
+fun kokkojuhla_NK : NK ;
+fun kokkotuli_NK : NK ;
+fun kokkovalkea_NK : NK ;
+fun kokoaskel_NK : NK ;
+fun kokoilta_NK : NK ;
+fun kokokierteinen_NK : NK ;
+fun kokoliha_NK : NK ;
+fun kokolihavalmiste_NK : NK ;
+fun kokomaito_NK : NK ;
+fun kokomusta_NK : NK ;
+fun kokonainen_NK : NK ;
+fun kokonaisuus_NK : NK ;
+fun kokonelson_NK : NK ;
+fun kokonumero_NK : NK ;
+fun kokonumerointi_NK : NK ;
+fun kokonuotti_NK : NK ;
+fun kokooja_NK : NK ;
+fun kokoojakaivo_NK : NK ;
+fun kokoojakatu_NK : NK ;
+fun kokoojatie_NK : NK ;
+fun kokoomushallitus_NK : NK ;
+fun kokoomuslainen_NK : NK ;
+fun kokoomuspuolue_NK : NK ;
+fun kokoonkutsuja_NK : NK ;
+fun kokoonpanija_NK : NK ;
+fun kokoonpano_NK : NK ;
+fun kokoontuma_NK : NK ;
+fun kokoparta_NK : NK ;
+fun kokopitka'_NK : NK ;
+fun kokopuku_NK : NK ;
+fun kokopullo_NK : NK ;
+fun kokopa'iva'inen_NK : NK ;
+fun kokosivu_NK : NK ;
+fun kokotalvinen_NK : NK ;
+fun kokotauko_NK : NK ;
+fun kokoushuone_NK : NK ;
+fun kokoushuoneisto_NK : NK ;
+fun kokousilmoitus_NK : NK ;
+fun kokouskutsu_NK : NK ;
+fun kokouspalkkio_NK : NK ;
+fun kokoussali_NK : NK ;
+fun kokoustekniikka_NK : NK ;
+fun kokovalkoinen_NK : NK ;
+fun kokoveri_NK : NK ;
+fun kokovuotinen_NK : NK ;
+fun kokoo'inen_NK : NK ;
+fun koksiuuni_NK : NK ;
+fun kolajuoma_NK : NK ;
+fun kolapuu_NK : NK ;
+fun kolapa'hkina'_NK : NK ;
+fun kolariauto_NK : NK ;
+fun kolarivaurio_NK : NK ;
+fun kolehtihaavi_NK : NK ;
+fun kolerabakteeri_NK : NK ;
+fun kolesteroliarvo_NK : NK ;
+fun kolesterolipitoisuus_NK : NK ;
+fun kolikkoautomaatti_NK : NK ;
+fun kolikkokukkaro_NK : NK ;
+fun kolikkopuhelin_NK : NK ;
+fun kolkkakala_NK : NK ;
+fun kolkkapoika_NK : NK ;
+fun kollaasitekniikka_NK : NK ;
+fun kollektiivitalous_NK : NK ;
+fun kollektiivitila_NK : NK ;
+fun kollikissa_NK : NK ;
+fun kolloidiliuos_NK : NK ;
+fun kolmaskymmenes_NK : NK ;
+fun kolmasosa_NK : NK ;
+fun kolmassadas_NK : NK ;
+fun kolmekymmenta'luku_NK : NK ;
+fun kolmekymmenta'vuotias_NK : NK ;
+fun kolmekymppinen_NK : NK ;
+fun kolmetoistavuotias_NK : NK ;
+fun kolmiapila_NK : NK ;
+fun kolmijakoviljely_NK : NK ;
+fun kolminaisuusoppi_NK : NK ;
+fun kolmiodraama_NK : NK ;
+fun kolmioliina_NK : NK ;
+fun kolmiomittaus_NK : NK ;
+fun kolmiomittaustorni_NK : NK ;
+fun kolmiopiste_NK : NK ;
+fun kolmoishermosa'rky_NK : NK ;
+fun kololintu_NK : NK ;
+fun kolopesija'_NK : NK ;
+fun kolopuu_NK : NK ;
+fun koloratuuriaaria_NK : NK ;
+fun koloratuurilaulaja_NK : NK ;
+fun koloratuurilaulu_NK : NK ;
+fun koloratuurisopraano_NK : NK ;
+fun koloristi_NK : NK ;
+fun koltansaamelainen_NK : NK ;
+fun kolttakyla'_NK : NK ;
+fun komeakukkainen_NK : NK ;
+fun komeaa'a'ninen_NK : NK ;
+fun komediahahmo_NK : NK ;
+fun komennuskunta_NK : NK ;
+fun komennusmies_NK : NK ;
+fun komennusraha_NK : NK ;
+fun komennustodistus_NK : NK ;
+fun komennustyo'_NK : NK ;
+fun komentajakapteeni_NK : NK ;
+fun komentajamerkki_NK : NK ;
+fun komentoalus_NK : NK ;
+fun komentohihna_NK : NK ;
+fun komentomoduuli_NK : NK ;
+fun komentopaikka_NK : NK ;
+fun komentoporras_NK : NK ;
+fun komentosilta_NK : NK ;
+fun komentosuhde_NK : NK ;
+fun komentotalous_NK : NK ;
+fun komentotie_NK : NK ;
+fun komentoa'a'ni_NK : NK ;
+fun komissiokauppa_NK : NK ;
+fun komitentti_NK : NK ;
+fun kommunikaatiokanava_NK : NK ;
+fun kommunikaatiova'line_NK : NK ;
+fun kommunistipuolue_NK : NK ;
+fun kommutaatiolaki_NK : NK ;
+fun kompaktikamera_NK : NK ;
+fun kompakysymys_NK : NK ;
+fun kompassikasvi_NK : NK ;
+fun kompassikukka_NK : NK ;
+fun kompassilukema_NK : NK ;
+fun kompassineula_NK : NK ;
+fun kompassiruusu_NK : NK ;
+fun kompassisuunta_NK : NK ;
+fun kompastuskivi_NK : NK ;
+fun kompensaatiokauppa_NK : NK ;
+fun kompleksiluku_NK : NK ;
+fun komplementtikulma_NK : NK ;
+fun komplementtiva'ri_NK : NK ;
+fun kompostikasa_NK : NK ;
+fun kompostikentta'_NK : NK ;
+fun kompostika'yma'la'_NK : NK ;
+fun kompostimulta_NK : NK ;
+fun kompostiviljely_NK : NK ;
+fun kompromissiehdotus_NK : NK ;
+fun kondorikotka_NK : NK ;
+fun konealus_NK : NK ;
+fun konehalli_NK : NK ;
+fun konehuone_NK : NK ;
+fun koneinsino'o'ri_NK : NK ;
+fun konekieli_NK : NK ;
+fun konekielinen_NK : NK ;
+fun konekirjoite_NK : NK ;
+fun konekirjoitus_NK : NK ;
+fun konekiva'a'ri_NK : NK ;
+fun konekiva'a'riampuja_NK : NK ;
+fun konekiva'a'ripesa'ke_NK : NK ;
+fun konekiva'a'risuihku_NK : NK ;
+fun konekiva'a'rituli_NK : NK ;
+fun koneka'sky_NK : NK ;
+fun koneka'ytto'inen_NK : NK ;
+fun koneka'a'nno's_NK : NK ;
+fun konelukuinen_NK : NK ;
+fun konelypsy_NK : NK ;
+fun konemainen_AK : AK ;
+fun konemestari_NK : NK ;
+fun konemiehisto'_NK : NK ;
+fun konena'ko'_NK : NK ;
+fun koneompelija_NK : NK ;
+fun koneompelu_NK : NK ;
+fun konepaja_NK : NK ;
+fun konepelti_NK : NK ;
+fun konepesu_NK : NK ;
+fun konepiirta'ja'_NK : NK ;
+fun konepiirustus_NK : NK ;
+fun konepistooli_NK : NK ;
+fun konepistoolisuihku_NK : NK ;
+fun konepora_NK : NK ;
+fun konepa'a'llysto'_NK : NK ;
+fun konerikko_NK : NK ;
+fun koneruuvi_NK : NK ;
+fun konesaha_NK : NK ;
+fun konesali_NK : NK ;
+fun konetahtinen_NK : NK ;
+--? fun konetikkaat_NK : NK ;
+fun konetykki_NK : NK ;
+fun konetyo'_NK : NK ;
+fun konevika_NK : NK ;
+fun konevoima_NK : NK ;
+fun konevoimainen_NK : NK ;
+fun koneo'ljy_NK : NK ;
+fun konferenssitulkki_NK : NK ;
+fun konfliktitilanne_NK : NK ;
+fun kongressiedustaja_NK : NK ;
+fun kongressihotelli_NK : NK ;
+fun konitohtori_NK : NK ;
+fun konjakkilasi_NK : NK ;
+fun konkelopuu_NK : NK ;
+fun konkurssihakemus_NK : NK ;
+fun konkurssihallinto_NK : NK ;
+fun konkurssikypsa'_NK : NK ;
+fun konkurssimenettely_NK : NK ;
+fun konkurssipesa'_NK : NK ;
+fun konkurssirikos_NK : NK ;
+fun konkurssitila_NK : NK ;
+fun konkurssituomio_NK : NK ;
+fun konkurssivalvonta_NK : NK ;
+fun konkurssivelallinen_NK : NK ;
+fun konkurssivelkoja_NK : NK ;
+fun konnamainen_NK : NK ;
+fun konsensuspolitiikka_NK : NK ;
+fun konseptiarkki_NK : NK ;
+fun konseptipaperi_NK : NK ;
+fun konserttiarvostelu_NK : NK ;
+fun konserttikiertue_NK : NK ;
+fun konserttilava_NK : NK ;
+fun konserttilippu_NK : NK ;
+fun konserttimatka_NK : NK ;
+fun konserttimestari_NK : NK ;
+fun konserttimusiikki_NK : NK ;
+fun konserttiohjelma_NK : NK ;
+fun konserttipianisti_NK : NK ;
+fun konserttisali_NK : NK ;
+fun konserttitalo_NK : NK ;
+fun konserttiyleiso'_NK : NK ;
+fun konsolipeli_NK : NK ;
+fun konsonanttivartalo_NK : NK ;
+fun konsulikyyti_NK : NK ;
+fun konsulttitoimisto_NK : NK ;
+fun kontaktiliima_NK : NK ;
+fun kontaktimuovi_NK : NK ;
+fun kontaktipeli_NK : NK ;
+fun kontaktipinta_NK : NK ;
+fun kontaktipuhelin_NK : NK ;
+fun kontrastivaikutus_NK : NK ;
+fun konttialus_NK : NK ;
+fun konttilaiva_NK : NK ;
+fun konttiliikenne_NK : NK ;
+fun konttinosturi_NK : NK ;
+fun konttisatama_NK : NK ;
+fun konttorihotelli_NK : NK ;
+fun konttorikone_NK : NK ;
+fun konttoripa'a'llikko'_NK : NK ;
+fun konttorirotta_NK : NK ;
+fun konttoristi_NK : NK ;
+fun konttoriverkko_NK : NK ;
+fun koodinumero_NK : NK ;
+fun koodisanoma_NK : NK ;
+fun kookaskasvuinen_NK : NK ;
+fun koollekutsuja_NK : NK ;
+fun koontikuori_NK : NK ;
+fun koontilaite_NK : NK ;
+fun koontilomake_NK : NK ;
+fun koossapito_NK : NK ;
+fun koossapita'va'_NK : NK ;
+fun koossapysyva'_NK : NK ;
+fun kopiokone_NK : NK ;
+fun kopiopaperi_NK : NK ;
+fun koppakuoriainen_NK : NK ;
+fun koppalakki_NK : NK ;
+fun koppari_NK : NK ;
+fun koppilyo'nti_NK : NK ;
+fun koppisiemeninen_NK : NK ;
+fun koprao'ljy_NK : NK ;
+fun koptilainen_NK : NK ;
+fun koputusa'a'ni_NK : NK ;
+fun koraalikirja_NK : NK ;
+fun koraalisa'velma'_NK : NK ;
+fun koralliela'in_NK : NK ;
+fun korallihiekka_NK : NK ;
+fun korallija'ka'la'_NK : NK ;
+fun korallikaktus_NK : NK ;
+fun koralliko'ynno's_NK : NK ;
+fun korallima'ta's_NK : NK ;
+fun koralliriutta_NK : NK ;
+fun korallisaari_NK : NK ;
+fun korallisammal_NK : NK ;
+fun korealainen_NK : NK ;
+fun korinttikakku_NK : NK ;
+fun korinttilainen_NK : NK ;
+fun koripaju_NK : NK ;
+fun koripallo_NK : NK ;
+fun koripalloilija_NK : NK ;
+fun koripalloilu_NK : NK ;
+fun koripallojoukkue_NK : NK ;
+fun koripallokentta'_NK : NK ;
+fun koripullo_NK : NK ;
+fun korirakenne_NK : NK ;
+fun korirengas_NK : NK ;
+fun koristeaihe_NK : NK ;
+fun koristeinen_NK : NK ;
+fun koristekaali_NK : NK ;
+fun koristekampa_NK : NK ;
+fun koristekasvi_NK : NK ;
+fun koristekrassi_NK : NK ;
+fun koristekuvio_NK : NK ;
+fun koristelanka_NK : NK ;
+fun koristemaalari_NK : NK ;
+fun koristemaalaus_NK : NK ;
+fun koristenappi_NK : NK ;
+fun koristeommel_NK : NK ;
+fun koristeompelu_NK : NK ;
+fun koristepensas_NK : NK ;
+fun koristepilli_NK : NK ;
+fun koristepisto_NK : NK ;
+fun koristetaide_NK : NK ;
+fun koritehdas_NK : NK ;
+fun korituoli_NK : NK ;
+fun korityo'_NK : NK ;
+fun korjausehdotus_NK : NK ;
+fun korjauslakka_NK : NK ;
+fun korjausleikkaus_NK : NK ;
+fun korjausliuska_NK : NK ;
+fun korjauslukija_NK : NK ;
+fun korjausluku_NK : NK ;
+fun korjausmerkinta'_NK : NK ;
+fun korjausmerkki_NK : NK ;
+fun korjausnauha_NK : NK ;
+fun korjaustyo'_NK : NK ;
+fun korjuukypsa'_NK : NK ;
+fun korjuusa'a'_NK : NK ;
+fun korjuutappio_NK : NK ;
+fun korjuutyo'_NK : NK ;
+fun korkeakantainen_NK : NK ;
+fun korkeakiiltoinen_NK : NK ;
+fun korkeakorkoinen_NK : NK ;
+fun korkeakouluaste_NK : NK ;
+fun korkeakouludemokratia_NK : NK ;
+fun korkeakouluneuvosto_NK : NK ;
+fun korkeakouluopetus_NK : NK ;
+--? fun korkeakouluopinnot_NK : NK ;
+fun korkeakouluopiskelija_NK : NK ;
+fun korkeakoulusivistys_NK : NK ;
+fun korkeakoulututkinto_NK : NK ;
+fun korkealaatuinen_NK : NK ;
+fun korkealaitainen_NK : NK ;
+fun korkealentoinen_NK : NK ;
+fun korkealuokkainen_NK : NK ;
+fun korkeaoktaaninen_NK : NK ;
+fun korkeapaineinen_NK : NK ;
+fun korkeapalkkainen_NK : NK ;
+fun korkeapovinen_NK : NK ;
+fun korkeaselka'inen_NK : NK ;
+fun korkeataajuinen_NK : NK ;
+fun korkeatasoinen_NK : NK ;
+fun korkeatehoinen_NK : NK ;
+fun korkeaa'a'ninen_NK : NK ;
+fun korkeusenna'tys_NK : NK ;
+fun korkeusero_NK : NK ;
+fun korkeushyppy_NK : NK ;
+fun korkeushyppa'a'ja'_NK : NK ;
+fun korkeusjana_NK : NK ;
+fun korkeuskartta_NK : NK ;
+fun korkeuskulma_NK : NK ;
+fun korkeuska'yra'_NK : NK ;
+fun korkeusmittari_NK : NK ;
+fun korkeusmittaus_NK : NK ;
+fun korkeuspera'sin_NK : NK ;
+fun korkeusvaihtelu_NK : NK ;
+fun korkeusvakain_NK : NK ;
+fun korkituskone_NK : NK ;
+fun korkkilevy_NK : NK ;
+fun korkkimatto_NK : NK ;
+fun korkkipohja_NK : NK ;
+fun korkkipuu_NK : NK ;
+fun korkkipyssy_NK : NK ;
+fun korkkiruuvi_NK : NK ;
+fun korkkitammi_NK : NK ;
+fun korkoehto_NK : NK ;
+fun korkoerotus_NK : NK ;
+fun korkoera'_NK : NK ;
+fun korkokanta_NK : NK ;
+fun korkokartta_NK : NK ;
+fun korkokenka'_NK : NK ;
+fun korkokuukausi_NK : NK ;
+fun korkokuva_NK : NK ;
+fun korkolappu_NK : NK ;
+fun korkolasku_NK : NK ;
+fun korkolippu_NK : NK ;
+fun korkomarginaali_NK : NK ;
+fun korkomerkki_NK : NK ;
+fun korkopainanta_NK : NK ;
+fun korkopolitiikka_NK : NK ;
+fun korkoprosentti_NK : NK ;
+fun korkorauta_NK : NK ;
+fun korkotaso_NK : NK ;
+fun korkotuki_NK : NK ;
+fun korkotukilaina_NK : NK ;
+fun korkotulo_NK : NK ;
+fun korkotuotto_NK : NK ;
+fun korkovoitto_NK : NK ;
+fun korokepohja_NK : NK ;
+fun korokepohjainen_NK : NK ;
+fun koronapeli_NK : NK ;
+fun koronapurkaus_NK : NK ;
+fun koronmaksupa'iva'_NK : NK ;
+fun korostekyna'_NK : NK ;
+fun korostusmerkki_NK : NK ;
+fun korotuskuulustelu_NK : NK ;
+fun korotusmerkki_NK : NK ;
+fun korpihotelli_NK : NK ;
+fun korpikuusi_NK : NK ;
+fun korpilaki_NK : NK ;
+fun korpilakko_NK : NK ;
+fun korpilakkoilu_NK : NK ;
+fun korpimaa_NK : NK ;
+fun korpimaisema_NK : NK ;
+fun korpimetso_NK : NK ;
+fun korpimetsa'_NK : NK ;
+fun korpiniitty_NK : NK ;
+fun korpipaatsama_NK : NK ;
+fun korpiroju_NK : NK ;
+fun korpisoturi_NK : NK ;
+fun korpisuo_NK : NK ;
+fun korpisa'rki_NK : NK ;
+fun korpitaipale_NK : NK ;
+fun korpitaival_NK : NK ;
+fun korpivaellus_NK : NK ;
+fun korppikotka_NK : NK ;
+fun korppujauhe_NK : NK ;
+fun korppujauho_NK : NK ;
+fun korrehtuurimerkki_NK : NK ;
+fun korrelaatiosuhde_NK : NK ;
+fun korsivilja_NK : NK ;
+fun kortistokortti_NK : NK ;
+fun kortistolaatikko_NK : NK ;
+fun kortteliajo_NK : NK ;
+fun korttelikapakka_NK : NK ;
+fun korttelikauppa_NK : NK ;
+fun korttelipoliisi_NK : NK ;
+fun kortteliralli_NK : NK ;
+fun kortteliravintola_NK : NK ;
+fun korttelisuunnistus_NK : NK ;
+fun korttiannos_NK : NK ;
+fun korttiautomaatti_NK : NK ;
+fun korttiavain_NK : NK ;
+fun korttihai_NK : NK ;
+fun korttihuijari_NK : NK ;
+fun korttikello_NK : NK ;
+fun korttikotelo_NK : NK ;
+fun korttilaatikko_NK : NK ;
+fun korttilukko_NK : NK ;
+fun korttiluotto_NK : NK ;
+fun korttipakka_NK : NK ;
+fun korttipeli_NK : NK ;
+fun korttipinkka_NK : NK ;
+fun korttipuhelin_NK : NK ;
+fun korttisakki_NK : NK ;
+fun korttitalo_NK : NK ;
+fun korttitemppu_NK : NK ;
+fun koruesine_NK : NK ;
+fun korukantinen_NK : NK ;
+fun korukieli_NK : NK ;
+fun korukirjain_NK : NK ;
+fun korukivi_NK : NK ;
+fun korukuvio_NK : NK ;
+fun korulause_NK : NK ;
+fun korulipas_NK : NK ;
+fun koruommel_NK : NK ;
+fun koruompelu_NK : NK ;
+fun korusana_NK : NK ;
+fun korusanainen_NK : NK ;
+fun korusa'hke_NK : NK ;
+fun korusa'hkelomake_NK : NK ;
+fun korusa'vel_NK : NK ;
+fun koruteollisuus_NK : NK ;
+fun korvahylje_NK : NK ;
+fun korvakipu_NK : NK ;
+fun korvaklinikka_NK : NK ;
+fun korvakoru_NK : NK ;
+fun korvakuulo_NK : NK ;
+fun korvaka'yta'va'_NK : NK ;
+fun korvalehti_NK : NK ;
+fun korvala'ppa'_NK : NK ;
+fun korvala'a'ka'ri_NK : NK ;
+fun korvamerkki_NK : NK ;
+fun korvanipukka_NK : NK ;
+fun korvarengas_NK : NK ;
+fun korvaruisku_NK : NK ;
+fun korvasairaus_NK : NK ;
+fun korvasieni_NK : NK ;
+fun korvasienikeitto_NK : NK ;
+fun korvasienimuhennos_NK : NK ;
+fun korvasokkelo_NK : NK ;
+fun korvasa'rky_NK : NK ;
+fun korvatauti_NK : NK ;
+fun korvatautioppi_NK : NK ;
+fun korvatorvi_NK : NK ;
+fun korvatulehdus_NK : NK ;
+fun korvatulppa_NK : NK ;
+fun korvatyyny_NK : NK ;
+fun korvausanomus_NK : NK ;
+fun korvaushakemus_NK : NK ;
+fun korvaushoito_NK : NK ;
+fun korvauskanne_NK : NK ;
+fun korvausperuste_NK : NK ;
+fun korvaussumma_NK : NK ;
+fun korvausvaatimus_NK : NK ;
+fun korvavaha_NK : NK ;
+fun korvayo'kko'_NK : NK ;
+fun korvenraivaajahenki_NK : NK ;
+fun korvikeaine_NK : NK ;
+fun korviketavara_NK : NK ;
+fun kosintamatka_NK : NK ;
+fun kosintaretki_NK : NK ;
+fun kosketinrivi_NK : NK ;
+fun kosketinsoitin_NK : NK ;
+fun koskettelukirja_NK : NK ;
+fun kosketusaisti_NK : NK ;
+fun kosketusherkkyys_NK : NK ;
+fun kosketusla'mpo'_NK : NK ;
+fun kosketusmiina_NK : NK ;
+fun kosketusna'ytto'_NK : NK ;
+fun kosketuspinta_NK : NK ;
+fun kosketustartunta_NK : NK ;
+fun koskikara_NK : NK ;
+fun koskikorento_NK : NK ;
+fun koskimelonta_NK : NK ;
+fun koskiosuus_NK : NK ;
+fun koskivene_NK : NK ;
+fun koskivoima_NK : NK ;
+fun kosmetiikkamyyma'la'_NK : NK ;
+fun kosmetiikkaosasto_NK : NK ;
+fun kosmoskukka_NK : NK ;
+fun kosteikkokasvi_NK : NK ;
+fun kosteuseriste_NK : NK ;
+fun kosteuseristys_NK : NK ;
+fun kosteusmittari_NK : NK ;
+fun kosteuspyyhe_NK : NK ;
+fun kosteusvaihtelu_NK : NK ;
+fun kosteusvaurio_NK : NK ;
+fun kosteusvoide_NK : NK ;
+fun kostoisku_NK : NK ;
+fun kostomurha_NK : NK ;
+fun kostopolitiikka_NK : NK ;
+fun kostotoimi_NK : NK ;
+fun kotahedelma'_NK : NK ;
+fun kotakuusama_NK : NK ;
+fun koteloaste_NK : NK ;
+fun kotelokoppa_NK : NK ;
+fun kotelosieni_NK : NK ;
+fun kotiaine_NK : NK ;
+fun kotialue_NK : NK ;
+fun kotiapteekki_NK : NK ;
+fun kotiapu_NK : NK ;
+fun kotiapulainen_NK : NK ;
+fun kotiaresti_NK : NK ;
+fun kotiaskare_NK : NK ;
+fun kotiasu_NK : NK ;
+fun kotiavustaja_NK : NK ;
+fun kotiela'in_NK : NK ;
+fun kotietsinta'_NK : NK ;
+fun kotihengeta'r_NK : NK ;
+fun kotihiiri_NK : NK ;
+--? fun kotihipat_NK : NK ;
+fun kotihoito_NK : NK ;
+fun kotiinkuljetus_NK : NK ;
+fun kotiinkutsu_NK : NK ;
+fun kotiinla'hto'_NK : NK ;
+fun kotiinpaluu_NK : NK ;
+fun kotiintulo_NK : NK ;
+fun kotijoukko_NK : NK ;
+fun kotijoukkue_NK : NK ;
+fun kotijuusto_NK : NK ;
+fun kotikalja_NK : NK ;
+fun kotikasvatus_NK : NK ;
+fun kotikatsomo_NK : NK ;
+fun kotikaupunki_NK : NK ;
+fun kotikentta'_NK : NK ;
+fun kotikentta'etu_NK : NK ;
+fun kotikieli_NK : NK ;
+fun kotikirjasto_NK : NK ;
+fun kotikissa_NK : NK ;
+fun kotikommunisti_NK : NK ;
+fun kotikontu_NK : NK ;
+fun kotikulma_NK : NK ;
+fun kotikunta_NK : NK ;
+fun kotikuri_NK : NK ;
+fun kotikutoinen_NK : NK ;
+fun kotikutomo_NK : NK ;
+fun kotikyla'_NK : NK ;
+fun kotika'ynti_NK : NK ;
+fun kotika'ytto'_NK : NK ;
+fun kotilaina_NK : NK ;
+fun kotilasku_NK : NK ;
+fun kotileipomo_NK : NK ;
+fun kotiliesi_NK : NK ;
+fun kotiloma_NK : NK ;
+fun kotila'ksy_NK : NK ;
+fun kotimaa_NK : NK ;
+fun kotimaakunta_NK : NK ;
+fun kotimainen_NK : NK ;
+fun kotimaisuusaste_NK : NK ;
+--? fun kotimarkkinat_NK : NK ;
+fun kotimatka_NK : NK ;
+fun kotimies_NK : NK ;
+fun kotimikro_NK : NK ;
+fun kotimurre_NK : NK ;
+fun kotimyynti_NK : NK ;
+fun kotimo'kki_NK : NK ;
+fun kotinumero_NK : NK ;
+fun kotinurkka_NK : NK ;
+fun kotiompelija_NK : NK ;
+fun kotiopettaja_NK : NK ;
+fun kotiopetus_NK : NK ;
+fun kotiorkesteri_NK : NK ;
+fun kotiosoite_NK : NK ;
+fun kotiottelu_NK : NK ;
+fun kotiovi_NK : NK ;
+fun kotipaikka_NK : NK ;
+fun kotipaikkakunta_NK : NK ;
+fun kotipaikkaoikeus_NK : NK ;
+fun kotipalvelu_NK : NK ;
+fun kotipalveluauto_NK : NK ;
+fun kotipesa'_NK : NK ;
+fun kotipiha_NK : NK ;
+fun kotipihlaja_NK : NK ;
+fun kotipiiri_NK : NK ;
+fun kotipita'ja'_NK : NK ;
+fun kotipolku_NK : NK ;
+fun kotipoltto_NK : NK ;
+fun kotipuoli_NK : NK ;
+fun kotirauha_NK : NK ;
+fun kotirintama_NK : NK ;
+fun kotirouva_NK : NK ;
+fun kotiruoka_NK : NK ;
+fun kotiryssa'_NK : NK ;
+fun kotisatama_NK : NK ;
+fun kotiseutu_NK : NK ;
+fun kotiseutuharrastus_NK : NK ;
+fun kotiseutujuhla_NK : NK ;
+fun kotiseutumuseo_NK : NK ;
+fun kotiseutuneuvos_NK : NK ;
+fun kotiseututyo'_NK : NK ;
+fun kotiseutuyhdistys_NK : NK ;
+fun kotisima_NK : NK ;
+fun kotisirkka_NK : NK ;
+fun kotisisar_NK : NK ;
+fun kotisivu_NK : NK ;
+fun kotisynnytys_NK : NK ;
+fun kotitakki_NK : NK ;
+fun kotitalo_NK : NK ;
+fun kotitalous_NK : NK ;
+fun kotitalousneuvoja_NK : NK ;
+fun kotitalousneuvonta_NK : NK ;
+fun kotitalousopettaja_NK : NK ;
+fun kotitalousopetus_NK : NK ;
+fun kotitalousteknikko_NK : NK ;
+fun kotitarkastus_NK : NK ;
+fun kotitarve_NK : NK ;
+fun kotitarvekalastus_NK : NK ;
+fun kotitarveka'ytto'_NK : NK ;
+fun kotitarveviljely_NK : NK ;
+fun kotitehta'va'_NK : NK ;
+fun kotitekoinen_NK : NK ;
+fun kotiteollisuus_NK : NK ;
+fun kotiteollisuusneuvos_NK : NK ;
+fun kotiteollisuustuote_NK : NK ;
+fun kotitie_NK : NK ;
+fun kotitienoo_NK : NK ;
+fun kotitila_NK : NK ;
+fun kotitonttu_NK : NK ;
+fun kotityranni_NK : NK ;
+fun kotityo'_NK : NK ;
+fun kotivakuutus_NK : NK ;
+fun kotivalmistus_NK : NK ;
+fun kotivaltio_NK : NK ;
+fun kotiviini_NK : NK ;
+fun kotiva'ki_NK : NK ;
+fun kotiva'vy_NK : NK ;
+fun kotiyleiso'_NK : NK ;
+fun kotiympa'risto'_NK : NK ;
+fun kotia'iti_NK : NK ;
+fun kotia'a'nestys_NK : NK ;
+fun kotomaa_NK : NK ;
+fun kotonaolo_NK : NK ;
+fun kotopera'inen_NK : NK ;
+fun koukistusliike_NK : NK ;
+fun koukkukalastus_NK : NK ;
+fun koukkuleuka_NK : NK ;
+fun koukkuleukainen_NK : NK ;
+fun koukkulyo'nti_NK : NK ;
+fun koukkunokka_NK : NK ;
+fun koukkunokkainen_NK : NK ;
+fun koukkupyynti_NK : NK ;
+fun koukkupa'inen_NK : NK ;
+fun koukkuselka'_NK : NK ;
+fun koukkuselka'inen_NK : NK ;
+fun kouluaikainen_NK : NK ;
+fun kouluaine_NK : NK ;
+fun koulualus_NK : NK ;
+fun kouluaste_NK : NK ;
+fun kouluateria_NK : NK ;
+fun kouluauto_NK : NK ;
+fun kouluavustaja_NK : NK ;
+fun kouludemokratia_NK : NK ;
+fun kouluela'ma'_NK : NK ;
+fun kouluhallinto_NK : NK ;
+fun kouluhoitaja_NK : NK ;
+fun kouluika'_NK : NK ;
+fun kouluika'inen_NK : NK ;
+fun koulujuhla_NK : NK ;
+fun koulukalusto_NK : NK ;
+fun koulukartasto_NK : NK ;
+fun koulukasvatus_NK : NK ;
+fun koulukeittio'_NK : NK ;
+fun koulukeittola_NK : NK ;
+fun koulukirja_NK : NK ;
+fun koulukiusaaja_NK : NK ;
+fun koulukone_NK : NK ;
+fun koulukoti_NK : NK ;
+fun koulukuljetus_NK : NK ;
+fun koulukunta_NK : NK ;
+fun koulukuraattori_NK : NK ;
+fun koulukuri_NK : NK ;
+fun koulukurssi_NK : NK ;
+fun koulukypsyys_NK : NK ;
+fun koulukypsa'_NK : NK ;
+fun koululainen_NK : NK ;
+fun koululaitos_NK : NK ;
+fun koululaiva_NK : NK ;
+fun koululakko_NK : NK ;
+fun koululapsi_NK : NK ;
+fun koululaukku_NK : NK ;
+fun koululento_NK : NK ;
+fun koululiikunta_NK : NK ;
+fun koulula'a'ka'ri_NK : NK ;
+fun koulumaailma_NK : NK ;
+fun koulumainen_NK : NK ;
+fun koulumatka_NK : NK ;
+fun koulumenestys_NK : NK ;
+fun koulumestari_NK : NK ;
+fun koulumestarimainen_NK : NK ;
+fun koulumies_NK : NK ;
+fun koulunero_NK : NK ;
+fun kouluneuvos_NK : NK ;
+fun koulunka'yntiavustaja_NK : NK ;
+fun koulunuoriso_NK : NK ;
+fun kouluna'ytelma'_NK : NK ;
+fun kouluopetus_NK : NK ;
+--? fun kouluopinnot_NK : NK ;
+fun koulupainos_NK : NK ;
+fun koulupakko_NK : NK ;
+fun koulupelko_NK : NK ;
+fun koulupiiri_NK : NK ;
+fun koulupinnari_NK : NK ;
+fun koulupinnaus_NK : NK ;
+fun koulupoika_NK : NK ;
+fun koulupolitiikka_NK : NK ;
+fun koulupsykologi_NK : NK ;
+fun koulupsykologia_NK : NK ;
+fun koulupa'iva'_NK : NK ;
+fun koulurakennus_NK : NK ;
+fun kouluratsastus_NK : NK ;
+fun koulurauha_NK : NK ;
+fun kouluretkeily_NK : NK ;
+fun kouluretki_NK : NK ;
+fun kouluruokailu_NK : NK ;
+fun koulusaavutus_NK : NK ;
+fun koulusihteeri_NK : NK ;
+fun koulusivistys_NK : NK ;
+fun koulutalo_NK : NK ;
+fun koulutaulu_NK : NK ;
+fun koulutehta'va'_NK : NK ;
+fun koulutie_NK : NK ;
+fun koulutieto_NK : NK ;
+fun koulutodistus_NK : NK ;
+fun koulutoimi_NK : NK ;
+fun koulutoiminta_NK : NK ;
+fun koulutoveri_NK : NK ;
+fun koulutulokas_NK : NK ;
+fun koulutunti_NK : NK ;
+fun koulutusammatti_NK : NK ;
+fun koulutusohjelma_NK : NK ;
+fun koulutuspolitiikka_NK : NK ;
+fun koulutuspa'iva'_NK : NK ;
+fun koulutuspa'a'llikko'_NK : NK ;
+fun koulutussihteeri_NK : NK ;
+fun koulutusupseeri_NK : NK ;
+fun koulutytto'_NK : NK ;
+fun koulutyo'_NK : NK ;
+fun kouluvaikeus_NK : NK ;
+fun kouluvalmius_NK : NK ;
+fun kouluviihtyvyys_NK : NK ;
+fun kouluviikko_NK : NK ;
+fun kouluvuosi_NK : NK ;
+fun kouluva'ki_NK : NK ;
+fun kouluva'kivalta_NK : NK ;
+fun kourakuormain_NK : NK ;
+fun kourasuoninen_NK : NK ;
+fun kouristuskohtaus_NK : NK ;
+fun kouristusmainen_NK : NK ;
+fun kouristustila_NK : NK ;
+fun kourutaltta_NK : NK ;
+fun kourutera'inen_NK : NK ;
+fun kourutiili_NK : NK ;
+fun kovaiskuinen_NK : NK ;
+fun kovakalloinen_NK : NK ;
+fun kovakantinen_NK : NK ;
+fun kovakorvainen_NK : NK ;
+fun kovakourainen_AK : AK ;
+fun kovakuntoinen_NK : NK ;
+fun kovakuorinen_NK : NK ;
+fun kovaka'tinen_AK : AK ;
+fun kovalevyasema_NK : NK ;
+fun kovaluonteinen_NK : NK ;
+fun kovaluontoinen_NK : NK ;
+fun kovanaamainen_NK : NK ;
+fun kovaonninen_NK : NK ;
+fun kovaosainen_NK : NK ;
+fun kovaotteinen_NK : NK ;
+fun kovapintainen_NK : NK ;
+fun kovapohjainen_NK : NK ;
+fun kovapa'inen_NK : NK ;
+fun kovasyda'minen_AK : AK ;
+fun kovasyda'misyys_NK : NK ;
+fun kovaa'a'ninen_AK : AK ;
+fun kovaa'a'nisyys_NK : NK ;
+fun kovikekangas_NK : NK ;
+fun kovikenauha_NK : NK ;
+fun kraatterija'rvi_NK : NK ;
+fun kranaatinheitintuli_NK : NK ;
+fun kranaattikuoppa_NK : NK ;
+fun kranaattituli_NK : NK ;
+fun krappilakka_NK : NK ;
+fun krapulainen_NK : NK ;
+fun krapularyyppy_NK : NK ;
+fun kreikkalainen_NK : NK ;
+fun kreppikangas_NK : NK ;
+fun kreppikiharrin_NK : NK ;
+fun kreppinailon_NK : NK ;
+fun kreppipaperi_NK : NK ;
+fun kriikunapuu_NK : NK ;
+fun kriisiapu_NK : NK ;
+fun kriisikausi_NK : NK ;
+fun kriisipesa'ke_NK : NK ;
+fun kriisipuhelin_NK : NK ;
+fun kriisitilanne_NK : NK ;
+fun krillia'yria'inen_NK : NK ;
+fun krimikaulus_NK : NK ;
+fun krimilakki_NK : NK ;
+fun kriminaali_NK : NK ;
+fun kriminaalipolitiikka_NK : NK ;
+fun kriminaalipotilas_NK : NK ;
+fun kriminaalipsykologia_NK : NK ;
+fun kriminkoipiturkki_NK : NK ;
+fun kriminnahkakaulus_NK : NK ;
+fun kriminnahkalakki_NK : NK ;
+fun kriminnahkaturkki_NK : NK ;
+fun krimiturkki_NK : NK ;
+fun kristallikruunu_NK : NK ;
+fun kristallilasi_NK : NK ;
+fun kristallimalja_NK : NK ;
+fun kristallimaljakko_NK : NK ;
+fun kristallisokeri_NK : NK ;
+fun kritiikkipalaveri_NK : NK ;
+fun krokettinuija_NK : NK ;
+fun krokettipallo_NK : NK ;
+fun krokotiilikuvioinen_NK : NK ;
+fun kromihappo_NK : NK ;
+fun kromikelta_NK : NK ;
+fun kromikeltainen_NK : NK ;
+fun kromimalmi_NK : NK ;
+fun kromisuola_NK : NK ;
+fun kromitera's_NK : NK ;
+fun kromiva'ri_NK : NK ;
+fun kromiyhdiste_NK : NK ;
+fun kromosomiluku_NK : NK ;
+fun kromosomimutaatio_NK : NK ;
+fun kromosomipari_NK : NK ;
+fun kromosomitutkimus_NK : NK ;
+fun krossipyo'ra'_NK : NK ;
+fun kruunukorkki_NK : NK ;
+fun kruunukynttila'_NK : NK ;
+fun kruunupa'inen_NK : NK ;
+fun kruunupa'a'_NK : NK ;
+fun kudelanka_NK : NK ;
+fun kudeneulos_NK : NK ;
+fun kudevaltainen_NK : NK ;
+fun kudinpuikko_NK : NK ;
+fun kudontaohje_NK : NK ;
+fun kudontatyo'_NK : NK ;
+fun kudosneste_NK : NK ;
+fun kudosna'yte_NK : NK ;
+fun kudosopillinen_NK : NK ;
+fun kudosoppi_NK : NK ;
+fun kudospankki_NK : NK ;
+fun kudosvaurio_NK : NK ;
+fun kudosviljelma'_NK : NK ;
+fun kuhaverkko_NK : NK ;
+fun kuherruskuukausi_NK : NK ;
+fun kuittausmerkinta'_NK : NK ;
+fun kuittausoikeus_NK : NK ;
+fun kuittilomake_NK : NK ;
+fun kuittivihko_NK : NK ;
+fun kuituaine_NK : NK ;
+fun kuitukangas_NK : NK ;
+fun kuitukasvi_NK : NK ;
+fun kuitukimppu_NK : NK ;
+fun kuitukyna'_NK : NK ;
+fun kuitulevy_NK : NK ;
+fun kuitumainen_NK : NK ;
+fun kuituoptiikka_NK : NK ;
+fun kuitupitoisuus_NK : NK ;
+fun kuitupuu_NK : NK ;
+fun kuiva_ainepitoisuus_NK : NK ;
+fun kuivakiskoinen_AK : AK ;
+fun kuivatusaine_NK : NK ;
+fun kuivatuskaappi_NK : NK ;
+fun kuivatusoja_NK : NK ;
+fun kuivatustyo'_NK : NK ;
+fun kuivatusviema'ri_NK : NK ;
+fun kuivaushuone_NK : NK ;
+fun kuivauskaappi_NK : NK ;
+fun kuivauskone_NK : NK ;
+fun kuivauslinko_NK : NK ;
+fun kuivausrumpu_NK : NK ;
+fun kuivausteline_NK : NK ;
+fun kuivausuuni_NK : NK ;
+fun kukintoinen_NK : NK ;
+fun kukkaistutus_NK : NK ;
+fun kukkakaali_NK : NK ;
+fun kukkakaalikorva_NK : NK ;
+fun kukkakaalivuoka_NK : NK ;
+fun kukkakasvi_NK : NK ;
+fun kukkakauppa_NK : NK ;
+fun kukkakauppias_NK : NK ;
+fun kukkakeppi_NK : NK ;
+fun kukkaketo_NK : NK ;
+fun kukkakimppu_NK : NK ;
+fun kukkakioski_NK : NK ;
+fun kukkakori_NK : NK ;
+fun kukkakoriste_NK : NK ;
+fun kukkakuvio_NK : NK ;
+fun kukkakuvioinen_NK : NK ;
+fun kukkaka'rpa'nen_NK : NK ;
+fun kukkako'ynno's_NK : NK ;
+fun kukkalaatikko_NK : NK ;
+fun kukkalaite_NK : NK ;
+fun kukkalapakko_NK : NK ;
+fun kukkaloisto_NK : NK ;
+fun kukkala'hetys_NK : NK ;
+fun kukkamaa_NK : NK ;
+fun kukkamaalaus_NK : NK ;
+fun kukkamaljakko_NK : NK ;
+fun kukkamekko_NK : NK ;
+fun kukkameri_NK : NK ;
+fun kukkamulta_NK : NK ;
+fun kukkaornamentti_NK : NK ;
+fun kukkapenkki_NK : NK ;
+fun kukkapera'_NK : NK ;
+fun kukkapohjus_NK : NK ;
+fun kukkapuketti_NK : NK ;
+fun kukkapurkki_NK : NK ;
+fun kukkapuska_NK : NK ;
+fun kukkapylva's_NK : NK ;
+fun kukkapo'yta'_NK : NK ;
+fun kukkaruukku_NK : NK ;
+fun kukkaryhma'_NK : NK ;
+fun kukkaseppele_NK : NK ;
+fun kukkasilmu_NK : NK ;
+fun kukkasipuli_NK : NK ;
+fun kukkasommitelma_NK : NK ;
+fun kukkatapetti_NK : NK ;
+fun kukkataulu_NK : NK ;
+fun kukkatee_NK : NK ;
+fun kukkateline_NK : NK ;
+fun kukkaterttu_NK : NK ;
+fun kukkatervehdys_NK : NK ;
+fun kukkavaasi_NK : NK ;
+fun kukkavihko_NK : NK ;
+fun kukkaviljelma'_NK : NK ;
+fun kukkava'litys_NK : NK ;
+fun kukkopilli_NK : NK ;
+fun kukkopoika_NK : NK ;
+fun kukkopoikanen_NK : NK ;
+fun kukkotappelu_NK : NK ;
+fun kukkulainen_NK : NK ;
+fun kukkuramitta_NK : NK ;
+fun kukkurapa'inen_NK : NK ;
+fun kukkurapa'a'_NK : NK ;
+fun kukoistuskausi_NK : NK ;
+fun kukonaskelkuvio_NK : NK ;
+fun kukonaskelkuvioinen_NK : NK ;
+fun kuljettajarahastus_NK : NK ;
+fun kuljetusalus_NK : NK ;
+fun kuljetusastia_NK : NK ;
+fun kuljetushihna_NK : NK ;
+fun kuljetusketju_NK : NK ;
+fun kuljetuskone_NK : NK ;
+fun kuljetuslaatikko_NK : NK ;
+fun kuljetuslaite_NK : NK ;
+fun kuljetusliike_NK : NK ;
+fun kuljetusmaksu_NK : NK ;
+fun kuljetusneuvo_NK : NK ;
+fun kuljetuspalvelu_NK : NK ;
+fun kuljetusvakuutus_NK : NK ;
+fun kuljetusvaunu_NK : NK ;
+fun kuljetusva'line_NK : NK ;
+fun kulkukauppa_NK : NK ;
+fun kulkukauppias_NK : NK ;
+fun kulkukelpoinen_NK : NK ;
+fun kulkukelpoisuus_NK : NK ;
+fun kulkukelvoton_NK : NK ;
+fun kulkukissa_NK : NK ;
+fun kulkukoira_NK : NK ;
+fun kulkulupa_NK : NK ;
+fun kulkumies_NK : NK ;
+fun kulkuneuvo_NK : NK ;
+fun kulkunopeus_NK : NK ;
+fun kulkuoikeus_NK : NK ;
+fun kulkupuhe_NK : NK ;
+fun kulkureitti_NK : NK ;
+fun kulkuriela'ma'_NK : NK ;
+fun kulkuripoika_NK : NK ;
+fun kulkusaari_NK : NK ;
+fun kulkusirkka_NK : NK ;
+fun kulkusuunta_NK : NK ;
+fun kulkusyvyys_NK : NK ;
+fun kulkutauti_NK : NK ;
+fun kulkutie_NK : NK ;
+fun kulkuvalo_NK : NK ;
+fun kulkuvuoro_NK : NK ;
+fun kulkuva'line_NK : NK ;
+fun kulmaeta'isyys_NK : NK ;
+fun kulmahammas_NK : NK ;
+fun kulmaheitto_NK : NK ;
+fun kulmahuone_NK : NK ;
+fun kulmahuoneisto_NK : NK ;
+fun kulmaikkuna_NK : NK ;
+fun kulmakaappi_NK : NK ;
+fun kulmakarva_NK : NK ;
+fun kulmakiihtyvyys_NK : NK ;
+fun kulmakivi_NK : NK ;
+fun kulmakunta_NK : NK ;
+fun kulmakyna'_NK : NK ;
+fun kulmaliitos_NK : NK ;
+fun kulmalippu_NK : NK ;
+fun kulmalyo'nti_NK : NK ;
+fun kulmaminuutti_NK : NK ;
+fun kulmamitta_NK : NK ;
+fun kulmamittari_NK : NK ;
+fun kulmamittaus_NK : NK ;
+fun kulmanoja_NK : NK ;
+fun kulmanopeus_NK : NK ;
+fun kulmapaisti_NK : NK ;
+fun kulmaperuutus_NK : NK ;
+fun kulmapiste_NK : NK ;
+fun kulmapotku_NK : NK ;
+fun kulmarauta_NK : NK ;
+fun kulmariipunta_NK : NK ;
+fun kulmasekunti_NK : NK ;
+fun kulmasohva_NK : NK ;
+fun kulmatalo_NK : NK ;
+fun kulmatera's_NK : NK ;
+fun kulmatontti_NK : NK ;
+fun kulmaviivain_NK : NK ;
+fun kulmaviivoitin_NK : NK ;
+fun kulmayksikko'_NK : NK ;
+fun kuloalue_NK : NK ;
+fun kuloheina'_NK : NK ;
+fun kulorastas_NK : NK ;
+fun kuloruoho_NK : NK ;
+fun kulosammal_NK : NK ;
+fun kulovahinko_NK : NK ;
+fun kulovalkea_NK : NK ;
+fun kultadublee_NK : NK ;
+fun kultaesine_NK : NK ;
+fun kultahammas_NK : NK ;
+fun kultahamsteri_NK : NK ;
+fun kultaharkko_NK : NK ;
+fun kultahiekka_NK : NK ;
+fun kultahiukkanen_NK : NK ;
+fun kultahoito_NK : NK ;
+--? fun kultaha'a't_NK : NK ;
+fun kultajoukkue_NK : NK ;
+fun kultajyva'_NK : NK ;
+fun kultajyva'nen_NK : NK ;
+fun kultakaivos_NK : NK ;
+fun kultakala_NK : NK ;
+fun kultakanta_NK : NK ;
+fun kultakantainen_NK : NK ;
+fun kultakate_NK : NK ;
+fun kultakausi_NK : NK ;
+fun kultakello_NK : NK ;
+fun kultakentta'_NK : NK ;
+fun kultaketju_NK : NK ;
+fun kultakimpale_NK : NK ;
+fun kultakirjain_NK : NK ;
+fun kultakoru_NK : NK ;
+fun kultakruunu_NK : NK ;
+fun kultakuoriainen_NK : NK ;
+fun kultakutrinen_NK : NK ;
+fun kultakuume_NK : NK ;
+fun kultako'ynno's_NK : NK ;
+fun kultalakka_NK : NK ;
+fun kultalammas_NK : NK ;
+fun kultalanka_NK : NK ;
+fun kultalevy_NK : NK ;
+fun kultamaa_NK : NK ;
+fun kultamalmi_NK : NK ;
+fun kultamitali_NK : NK ;
+fun kultamitalimies_NK : NK ;
+fun kultamitalinainen_NK : NK ;
+fun kultamitalisti_NK : NK ;
+fun kultamuna_NK : NK ;
+fun kultanahka_NK : NK ;
+fun kultanauha_NK : NK ;
+fun kultaottelu_NK : NK ;
+fun kultapallo_NK : NK ;
+fun kultapaperi_NK : NK ;
+fun kultapiisku_NK : NK ;
+fun kultapistia'inen_NK : NK ;
+fun kultapitoinen_NK : NK ;
+fun kultapitoisuus_NK : NK ;
+fun kultapronssi_NK : NK ;
+fun kultaraha_NK : NK ;
+fun kultareservi_NK : NK ;
+fun kultareunainen_NK : NK ;
+fun kultarinta_NK : NK ;
+fun kultaruoste_NK : NK ;
+fun kultasade_NK : NK ;
+fun kultaseppa'_NK : NK ;
+fun kultasiipi_NK : NK ;
+fun kultasormus_NK : NK ;
+fun kultasuola_NK : NK ;
+fun kultasuoni_NK : NK ;
+fun kultateos_NK : NK ;
+fun kultatuoli_NK : NK ;
+fun kultatyo'_NK : NK ;
+fun kultavaaka_NK : NK ;
+fun kultavaranto_NK : NK ;
+fun kultavihma_NK : NK ;
+fun kultava'ri_NK : NK ;
+fun kultayhdiste_NK : NK ;
+fun kulttikirja_NK : NK ;
+fun kulttuuriela'ma'_NK : NK ;
+fun kulttuuriesine_NK : NK ;
+fun kulttuuriharrastus_NK : NK ;
+fun kulttuurihenkilo'_NK : NK ;
+fun kulttuurihistoria_NK : NK ;
+fun kulttuurikansa_NK : NK ;
+fun kulttuurikaupunki_NK : NK ;
+fun kulttuurikeskus_NK : NK ;
+fun kulttuurikieli_NK : NK ;
+fun kulttuurikosketus_NK : NK ;
+fun kulttuurikoti_NK : NK ;
+fun kulttuurikriisi_NK : NK ;
+fun kulttuurikriitikko_NK : NK ;
+fun kulttuurila'hettila's_NK : NK ;
+fun kulttuurimaa_NK : NK ;
+fun kulttuurimaisema_NK : NK ;
+fun kulttuuriministeri_NK : NK ;
+fun kulttuurinihilismi_NK : NK ;
+fun kulttuuriosasto_NK : NK ;
+fun kulttuuriperinto'_NK : NK ;
+fun kulttuuripersoona_NK : NK ;
+fun kulttuuripolitiikka_NK : NK ;
+fun kulttuuriradikaali_NK : NK ;
+fun kulttuuriseutu_NK : NK ;
+fun kulttuurisihteeri_NK : NK ;
+fun kulttuurisokki_NK : NK ;
+fun kulttuuritapahtuma_NK : NK ;
+fun kulttuuritaso_NK : NK ;
+fun kulttuuritoimittaja_NK : NK ;
+fun kulttuuritoimitus_NK : NK ;
+fun kulttuuriturismi_NK : NK ;
+fun kulttuurivaihto_NK : NK ;
+fun kulttuurivaikutus_NK : NK ;
+fun kulttuurivirtaus_NK : NK ;
+fun kulttuuriyhteys_NK : NK ;
+fun kulukorvaus_NK : NK ;
+fun kulumapinta_NK : NK ;
+fun kulunkitili_NK : NK ;
+fun kulunvalvontakamera_NK : NK ;
+fun kuluttajahinta_NK : NK ;
+fun kuluttajahintaindeksi_NK : NK ;
+fun kuluttajakunta_NK : NK ;
+fun kuluttajaneuvoja_NK : NK ;
+fun kuluttajaneuvonta_NK : NK ;
+fun kuluttajaneuvosto_NK : NK ;
+fun kuluttajapolitiikka_NK : NK ;
+fun kuluttajavalistus_NK : NK ;
+fun kuluttajava'esto'_NK : NK ;
+fun kulutushyo'dyke_NK : NK ;
+fun kulutusjuhla_NK : NK ;
+fun kulutuskesta'vyys_NK : NK ;
+fun kulutusluotto_NK : NK ;
+fun kulutusmaito_NK : NK ;
+fun kulutuspinta_NK : NK ;
+fun kulutustavara_NK : NK ;
+fun kulutustottumus_NK : NK ;
+fun kulutusvero_NK : NK ;
+fun kulutusyksikko'_NK : NK ;
+fun kumaraharteinen_NK : NK ;
+fun kumarahartiainen_NK : NK ;
+fun kumaraselka'inen_NK : NK ;
+fun kumarrusmatka_NK : NK ;
+fun kumiasfaltti_NK : NK ;
+fun kumieriste_NK : NK ;
+fun kumieristeinen_NK : NK ;
+fun kumihartsi_NK : NK ;
+fun kumihihna_NK : NK ;
+fun kumijalka_NK : NK ;
+fun kumijalkine_NK : NK ;
+fun kumikangas_NK : NK ;
+fun kumikasvi_NK : NK ;
+fun kumika'sine_NK : NK ;
+fun kumilanka_NK : NK ;
+fun kumilautta_NK : NK ;
+fun kumileimasin_NK : NK ;
+fun kumilenkki_NK : NK ;
+fun kumiletku_NK : NK ;
+fun kumiliima_NK : NK ;
+fun kumiluoti_NK : NK ;
+fun kumimatto_NK : NK ;
+fun kuminauha_NK : NK ;
+--? fun kuminauhatwist_NK : NK ;
+fun kuminao'ljy_NK : NK ;
+fun kumipallo_NK : NK ;
+fun kumipohja_NK : NK ;
+fun kumipohjainen_NK : NK ;
+fun kumipuku_NK : NK ;
+fun kumipuu_NK : NK ;
+fun kumipyo'ra'_NK : NK ;
+fun kumipyo'ra'inen_NK : NK ;
+fun kumipa'a'llyste_NK : NK ;
+fun kumirengas_NK : NK ;
+fun kumisaapas_NK : NK ;
+fun kumisieni_NK : NK ;
+fun kumisukka_NK : NK ;
+fun kumitehdas_NK : NK ;
+fun kumiteollisuus_NK : NK ;
+fun kumitiiviste_NK : NK ;
+fun kumitossu_NK : NK ;
+fun kumitulppa_NK : NK ;
+fun kumivene_NK : NK ;
+fun kumiviljelma'_NK : NK ;
+fun kummilahja_NK : NK ;
+fun kummilapsi_NK : NK ;
+fun kummilusikka_NK : NK ;
+fun kummiperhe_NK : NK ;
+fun kummipoika_NK : NK ;
+fun kummiseta'_NK : NK ;
+fun kummitusjuttu_NK : NK ;
+fun kummitustalo_NK : NK ;
+fun kummitytto'_NK : NK ;
+fun kummityta'r_NK : NK ;
+fun kummita'ti_NK : NK ;
+fun kumoonajo_NK : NK ;
+fun kumoonmeno_NK : NK ;
+fun kumoushanke_NK : NK ;
+fun kumousliike_NK : NK ;
+fun kumouspuolue_NK : NK ;
+fun kumparelasku_NK : NK ;
+fun kumpupilvi_NK : NK ;
+fun kumpusuo_NK : NK ;
+fun kundikaveri_NK : NK ;
+fun kuningasajatus_NK : NK ;
+fun kuningashuone_NK : NK ;
+fun kuningaskalastaja_NK : NK ;
+fun kuningaskobra_NK : NK ;
+fun kuningaskruunu_NK : NK ;
+fun kuningaskunta_NK : NK ;
+fun kuningasla'hetti_NK : NK ;
+fun kuningasmielisyys_NK : NK ;
+fun kuningaspari_NK : NK ;
+fun kuningasperhe_NK : NK ;
+fun kuningassotilas_NK : NK ;
+fun kuningassuku_NK : NK ;
+fun kuningasvalta_NK : NK ;
+fun kuningasvesi_NK : NK ;
+fun kuningasvierailu_NK : NK ;
+fun kuningatarla'hetti_NK : NK ;
+fun kuningatarsotilas_NK : NK ;
+fun kuningatartoukka_NK : NK ;
+fun kuningatara'iti_NK : NK ;
+fun kuninkuusajo_NK : NK ;
+fun kuninkuuskilpailu_NK : NK ;
+fun kunnallisneuvosmies_NK : NK ;
+fun kunniajuoksu_NK : NK ;
+fun kunniaja'sen_NK : NK ;
+fun kunniaja'senyys_NK : NK ;
+fun kunniakierros_NK : NK ;
+fun kunniakirja_NK : NK ;
+fun kunniakomppania_NK : NK ;
+fun kunniakonsuli_NK : NK ;
+fun kunniakuja_NK : NK ;
+fun kunniaka'ynti_NK : NK ;
+fun kunnialaukaus_NK : NK ;
+fun kunniamaininta_NK : NK ;
+fun kunniamarssi_NK : NK ;
+fun kunniamerkki_NK : NK ;
+fun kunnianimi_NK : NK ;
+fun kunnianimitys_NK : NK ;
+fun kunniapaikka_NK : NK ;
+fun kunniapalkinto_NK : NK ;
+fun kunniaportti_NK : NK ;
+fun kunniasana_NK : NK ;
+fun kunniasija_NK : NK ;
+fun kunniatohtori_NK : NK ;
+fun kunniavahti_NK : NK ;
+fun kunniavartija_NK : NK ;
+fun kunniavartio_NK : NK ;
+fun kunniavartiomies_NK : NK ;
+fun kunniavelka_NK : NK ;
+fun kunniavieras_NK : NK ;
+fun kunniavirka_NK : NK ;
+fun kunnossapito_NK : NK ;
+fun kuntajako_NK : NK ;
+fun kuntakeskus_NK : NK ;
+fun kuntalainen_NK : NK ;
+fun kuntaliitos_NK : NK ;
+fun kuntamuoto_NK : NK ;
+fun kuntauudistus_NK : NK ;
+fun kuntayhtyma'_NK : NK ;
+fun kuntoarvio_NK : NK ;
+fun kuntoharjoitus_NK : NK ;
+fun kuntohoitaja_NK : NK ;
+fun kuntoinen_NK : NK ;
+fun kuntoisuusloma_NK : NK ;
+fun kuntojumppa_NK : NK ;
+fun kuntokeskus_NK : NK ;
+fun kuntokoulu_NK : NK ;
+fun kuntoka'vely_NK : NK ;
+fun kuntoka'yra'_NK : NK ;
+fun kuntolenkki_NK : NK ;
+fun kuntoliikunta_NK : NK ;
+fun kuntonyrkkeily_NK : NK ;
+fun kuntoonpano_NK : NK ;
+fun kuntopiiri_NK : NK ;
+fun kuntopolku_NK : NK ;
+fun kuntopyo'ra'_NK : NK ;
+fun kuntorekki_NK : NK ;
+fun kuntosali_NK : NK ;
+fun kuntotesti_NK : NK ;
+fun kuntourheilija_NK : NK ;
+fun kuntourheilu_NK : NK ;
+fun kuntoutusallas_NK : NK ;
+fun kuntoutuskeskus_NK : NK ;
+fun kuntoutuslaitos_NK : NK ;
+fun kuntovoimistelu_NK : NK ;
+fun kuohukerma_NK : NK ;
+fun kuohupa'inen_NK : NK ;
+fun kuohupa'a'_NK : NK ;
+fun kuohuviini_NK : NK ;
+fun kuokkamies_NK : NK ;
+fun kuokkavieras_NK : NK ;
+fun kuokkaviljely_NK : NK ;
+fun kuolalappu_NK : NK ;
+fun kuolemanvaaraluku_NK : NK ;
+fun kuolemanvaaravakuutus_NK : NK ;
+fun kuoletusera'_NK : NK ;
+fun kuolleisuustilasto_NK : NK ;
+fun kuonabetoni_NK : NK ;
+fun kuonokoppa_NK : NK ;
+fun kuoppaistutus_NK : NK ;
+fun kuoppakorotus_NK : NK ;
+fun kuoriaita_NK : NK ;
+fun kuoriaitaus_NK : NK ;
+fun kuorihumus_NK : NK ;
+fun kuorikerros_NK : NK ;
+fun kuorilaatta_NK : NK ;
+fun kuorilevy_NK : NK ;
+fun kuorintavoide_NK : NK ;
+fun kuoriperuna_NK : NK ;
+fun kuoripoika_NK : NK ;
+fun kuoririutta_NK : NK ;
+fun kuorisora_NK : NK ;
+fun kuoria'yria'inen_NK : NK ;
+fun kuorma_autolasti_NK : NK ;
+fun kuorma_autoliikenne_NK : NK ;
+fun kuormaela'in_NK : NK ;
+fun kuormajuhta_NK : NK ;
+fun kuormakirja_NK : NK ;
+fun kuormalava_NK : NK ;
+fun kuormitushuippu_NK : NK ;
+fun kuormituskoe_NK : NK ;
+fun kuoroesitys_NK : NK ;
+fun kuorokohtaus_NK : NK ;
+fun kuorolainen_NK : NK ;
+fun kuorolaulu_NK : NK ;
+fun kuorolausunta_NK : NK ;
+fun kuoromusiikki_NK : NK ;
+fun kuorosovitus_NK : NK ;
+fun kuorosa'vellys_NK : NK ;
+fun kuorosa'velta'ja'_NK : NK ;
+fun kuoroteos_NK : NK ;
+fun kuparihohde_NK : NK ;
+fun kuparihome_NK : NK ;
+fun kuparijohdin_NK : NK ;
+fun kuparijohto_NK : NK ;
+fun kuparikaiverros_NK : NK ;
+fun kuparikaivos_NK : NK ;
+fun kuparikiisu_NK : NK ;
+fun kuparilanka_NK : NK ;
+fun kuparimalmi_NK : NK ;
+fun kuparimyrkytys_NK : NK ;
+fun kuparipelti_NK : NK ;
+fun kuparipiirros_NK : NK ;
+fun kuparipitoinen_NK : NK ;
+fun kupariputki_NK : NK ;
+fun kupariruoste_NK : NK ;
+fun kupariseos_NK : NK ;
+fun kupariseppa'_NK : NK ;
+fun kuparisulatto_NK : NK ;
+fun kuparisulfaatti_NK : NK ;
+fun kuparisuola_NK : NK ;
+fun kuparivihtrilli_NK : NK ;
+fun kupariva'ri_NK : NK ;
+fun kuplahalli_NK : NK ;
+fun kuplakammio_NK : NK ;
+fun kuplamuisti_NK : NK ;
+fun kuplapakkaus_NK : NK ;
+fun kuplettilaulaja_NK : NK ;
+fun kupolikatto_NK : NK ;
+fun kupolikattoinen_NK : NK ;
+fun kupoliteltta_NK : NK ;
+fun kuponkikangas_NK : NK ;
+fun kuponkivihko_NK : NK ;
+fun kuppapahkura_NK : NK ;
+fun kuppatauti_NK : NK ;
+fun kuppatautinen_NK : NK ;
+fun kuppaussarvi_NK : NK ;
+fun kuppikunta_NK : NK ;
+fun kuppipari_NK : NK ;
+fun kuprokuitu_NK : NK ;
+fun kupuholvi_NK : NK ;
+fun kupuikkuna_NK : NK ;
+fun kupukaali_NK : NK ;
+fun kupukanta_NK : NK ;
+fun kupukatto_NK : NK ;
+fun kupusieni_NK : NK ;
+fun kupusuojain_NK : NK ;
+--? fun kurahousut_NK : NK ;
+fun kurakeli_NK : NK ;
+fun kuralammikko_NK : NK ;
+fun kurala'ta'kko'_NK : NK ;
+fun kuramatto_NK : NK ;
+fun kuravesi_NK : NK ;
+fun kurelanka_NK : NK ;
+fun kureliivi_NK : NK ;
+fun kurenauha_NK : NK ;
+fun kurenuora_NK : NK ;
+fun kuriiriposti_NK : NK ;
+fun kurinalainen_NK : NK ;
+fun kurinalaisuus_NK : NK ;
+fun kurinpalautus_NK : NK ;
+fun kurinpito_NK : NK ;
+fun kurinpitoasia_NK : NK ;
+fun kurinpitokeino_NK : NK ;
+fun kurinpitomenettely_NK : NK ;
+fun kurinpitorangaistus_NK : NK ;
+fun kurinpitotoimi_NK : NK ;
+fun kurinpitovaikeus_NK : NK ;
+fun kurinpitovalta_NK : NK ;
+fun kurinpita'ja'_NK : NK ;
+fun kuristuslaippa_NK : NK ;
+fun kuristusla'ppa'_NK : NK ;
+fun kuristusote_NK : NK ;
+fun kuristusventtiili_NK : NK ;
+fun kuritushuone_NK : NK ;
+fun kuritushuonerangaistus_NK : NK ;
+fun kuritushuonetuomio_NK : NK ;
+fun kuritushuonevanki_NK : NK ;
+fun kurkiaura_NK : NK ;
+fun kurkihirsi_NK : NK ;
+fun kurkistusneuvottelu_NK : NK ;
+fun kurkkukaramelli_NK : NK ;
+fun kurkkukasvi_NK : NK ;
+fun kurkkukipu_NK : NK ;
+fun kurkkulava_NK : NK ;
+fun kurkkumikrofoni_NK : NK ;
+fun kurkkuma'ta'_NK : NK ;
+fun kurkkuma'ta'rokote_NK : NK ;
+fun kurkkuma'ta'rokotus_NK : NK ;
+fun kurkkupastilli_NK : NK ;
+fun kurkkupeili_NK : NK ;
+fun kurkkusalaatti_NK : NK ;
+fun kurkkutabletti_NK : NK ;
+fun kurkkutauti_NK : NK ;
+fun kurkkutorvi_NK : NK ;
+fun kurkkutulehdus_NK : NK ;
+fun kurkkuviipale_NK : NK ;
+fun kurkkua'a'ni_NK : NK ;
+fun kurpitsapikkelssi_NK : NK ;
+fun kurpitsapullo_NK : NK ;
+fun kurpitsasose_NK : NK ;
+fun kursiivikirjain_NK : NK ;
+fun kurssiarvo_NK : NK ;
+fun kurssiero_NK : NK ;
+fun kurssijulkaisu_NK : NK ;
+fun kurssikeinottelu_NK : NK ;
+fun kurssikeskus_NK : NK ;
+fun kurssikirja_NK : NK ;
+fun kurssikirjasto_NK : NK ;
+fun kurssilainen_NK : NK ;
+fun kurssilista_NK : NK ;
+fun kurssimaksu_NK : NK ;
+fun kurssimuotoinen_NK : NK ;
+fun kurssinoteeraus_NK : NK ;
+fun kurssitappio_NK : NK ;
+fun kurssivaatimus_NK : NK ;
+fun kurssivoitto_NK : NK ;
+fun kurttukaali_NK : NK ;
+fun kurttunaama_NK : NK ;
+fun kurttunaamainen_NK : NK ;
+fun kurttusieni_NK : NK ;
+fun kurvikuningatar_NK : NK ;
+fun kusiha'ta'_NK : NK ;
+fun kusiluistin_NK : NK ;
+fun kusiputka_NK : NK ;
+fun kusipa'inen_NK : NK ;
+fun kusipa'a'_NK : NK ;
+fun kuskipukki_NK : NK ;
+fun kustannusarvio_NK : NK ;
+fun kustannusera'_NK : NK ;
+fun kustannuslaskelma_NK : NK ;
+fun kustannuslaskenta_NK : NK ;
+fun kustannusliike_NK : NK ;
+fun kustannusoikeus_NK : NK ;
+fun kustannuspaine_NK : NK ;
+fun kustannussopimus_NK : NK ;
+fun kustannustaso_NK : NK ;
+fun kustannustoimi_NK : NK ;
+fun kustannustoiminta_NK : NK ;
+fun kustannustoimittaja_NK : NK ;
+fun kustannustuote_NK : NK ;
+fun kutistekalvopakkaus_NK : NK ;
+fun kutojalintu_NK : NK ;
+fun kutsuhuuto_NK : NK ;
+fun kutsukilpailu_NK : NK ;
+fun kutsukirje_NK : NK ;
+fun kutsukortti_NK : NK ;
+fun kutsumerkki_NK : NK ;
+fun kutsumusammatti_NK : NK ;
+fun kutsumustehta'va'_NK : NK ;
+fun kutsumustyo'_NK : NK ;
+fun kutsuntaika'_NK : NK ;
+fun kutsuntaika'inen_NK : NK ;
+fun kutsuntakuulutus_NK : NK ;
+fun kutsuntatilaisuus_NK : NK ;
+fun kutsuna'yttely_NK : NK ;
+fun kutsuohjaus_NK : NK ;
+fun kutsuvieras_NK : NK ;
+fun kutsua'a'ni_NK : NK ;
+fun kutukala_NK : NK ;
+fun kutukalastus_NK : NK ;
+fun kutukypsa'_NK : NK ;
+fun kutulahna_NK : NK ;
+fun kutupuku_NK : NK ;
+fun kutupukuinen_NK : NK ;
+fun kutupyynti_NK : NK ;
+fun kuturauhoitus_NK : NK ;
+fun kuualus_NK : NK ;
+fun kuuauto_NK : NK ;
+fun kuudeskymmenes_NK : NK ;
+fun kuudesosa_NK : NK ;
+fun kuudessadas_NK : NK ;
+fun kuuhullu_NK : NK ;
+fun kuuhulluus_NK : NK ;
+--? fun kuukasvot_NK : NK ;
+fun kuukausi_NK : NK ;
+fun kuukausiansio_NK : NK ;
+fun kuukausiera'_NK : NK ;
+fun kuukausijulkaisu_NK : NK ;
+fun kuukausiliite_NK : NK ;
+fun kuukausilippu_NK : NK ;
+fun kuukausimansikka_NK : NK ;
+fun kuukausipalkka_NK : NK ;
+fun kuukausipalkkainen_NK : NK ;
+fun kuukausipalkkalainen_NK : NK ;
+fun kuukausiraportti_NK : NK ;
+fun kuukausitase_NK : NK ;
+fun kuukausitilitys_NK : NK ;
+fun kuukausitulo_NK : NK ;
+fun kuukausituotanto_NK : NK ;
+fun kuukausivaihto_NK : NK ;
+fun kuukausivuokra_NK : NK ;
+fun kuukautinen_NK : NK ;
+fun kuukivi_NK : NK ;
+fun kuukulkija_NK : NK ;
+fun kuukvartsi_NK : NK ;
+fun kuuka'vely_NK : NK ;
+fun kuulakilpailu_NK : NK ;
+fun kuulakka_NK : NK ;
+fun kuulakyna'_NK : NK ;
+fun kuulalaakeri_NK : NK ;
+fun kuulamo'rssa'ri_NK : NK ;
+fun kuulantyo'nto'kilpailu_NK : NK ;
+fun kuulento_NK : NK ;
+fun kuulijakunta_NK : NK ;
+fun kuuloaisti_NK : NK ;
+fun kuuloaistimus_NK : NK ;
+fun kuuloalue_NK : NK ;
+fun kuuloeta'isyys_NK : NK ;
+fun kuuloharha_NK : NK ;
+fun kuulohavainto_NK : NK ;
+fun kuulohermo_NK : NK ;
+fun kuuloinen_NK : NK ;
+fun kuulokeskus_NK : NK ;
+fun kuulokoira_NK : NK ;
+fun kuulokoje_NK : NK ;
+fun kuulokyky_NK : NK ;
+fun kuulokynnys_NK : NK ;
+fun kuulolaite_NK : NK ;
+fun kuuloluu_NK : NK ;
+fun kuulomatka_NK : NK ;
+fun kuulomuisti_NK : NK ;
+fun kuulopuhe_NK : NK ;
+fun kuuloraja_NK : NK ;
+fun kuuloseula_NK : NK ;
+fun kuulosuojain_NK : NK ;
+fun kuulotorvi_NK : NK ;
+fun kuulovamma_NK : NK ;
+fun kuulovammainen_NK : NK ;
+fun kuulovammaisuus_NK : NK ;
+fun kuulovartija_NK : NK ;
+fun kuulovartio_NK : NK ;
+fun kuulovika_NK : NK ;
+fun kuulovirhe_NK : NK ;
+fun kuultokudos_NK : NK ;
+fun kuultokuva_NK : NK ;
+fun kuultomaali_NK : NK ;
+fun kuultova'ri_NK : NK ;
+fun kuuluotain_NK : NK ;
+fun kuumaisema_NK : NK ;
+fun kuumapa'inen_NK : NK ;
+fun kuumatka_NK : NK ;
+fun kuumavalssaus_NK : NK ;
+fun kuumaverinen_NK : NK ;
+fun kuumaverisyys_NK : NK ;
+fun kuumehoure_NK : NK ;
+fun kuumekohtaus_NK : NK ;
+fun kuumekouristus_NK : NK ;
+fun kuumeka'yra'_NK : NK ;
+fun kuumela'a'ke_NK : NK ;
+fun kuumemittari_NK : NK ;
+fun kuumennuslaite_NK : NK ;
+fun kuumennusuuni_NK : NK ;
+fun kuumennusvastus_NK : NK ;
+fun kuumepotilas_NK : NK ;
+fun kuumepuikko_NK : NK ;
+fun kuumereuma_NK : NK ;
+fun kuumesairas_NK : NK ;
+fun kuumesairaus_NK : NK ;
+fun kuumetauti_NK : NK ;
+fun kuumetautinen_NK : NK ;
+fun kuumoduuli_NK : NK ;
+fun kuunaama_NK : NK ;
+fun kuunaamainen_NK : NK ;
+fun kuunteluoppilas_NK : NK ;
+fun kuuntelutiedustelu_NK : NK ;
+fun kuupera'_NK : NK ;
+fun kuuraketti_NK : NK ;
+fun kuuraparta_NK : NK ;
+fun kuurapartainen_NK : NK ;
+fun kuurata_1_NK : NK ;
+fun kuurata_2_VK : VK ;
+fun kuurilainen_NK : NK ;
+fun kuuromykkyys_NK : NK ;
+fun kuuropilvi_NK : NK ;
+fun kuurosade_NK : NK ;
+fun kuurosateinen_NK : NK ;
+fun kuuruoho_NK : NK ;
+fun kuurupiilosilla_NK : NK ;
+fun kuusama_NK : NK ;
+fun kuusanka_NK : NK ;
+fun kuusenka'pynahikas_NK : NK ;
+fun kuusiaita_NK : NK ;
+fun kuusihalko_NK : NK ;
+fun kuusihenkinen_NK : NK ;
+fun kuusijuhla_NK : NK ;
+fun kuusikanta_NK : NK ;
+fun kuusikuinen_NK : NK ;
+fun kuusikulmainen_NK : NK ;
+fun kuusikulmio_NK : NK ;
+fun kuusikymmenta'luku_NK : NK ;
+fun kuusikymmenta'vuotias_NK : NK ;
+fun kuusilauta_NK : NK ;
+fun kuusimetsa'_NK : NK ;
+fun kuusimitta_NK : NK ;
+fun kuusinumeroinen_NK : NK ;
+fun kuusiokanta_NK : NK ;
+fun kuusiokantainen_NK : NK ;
+fun kuusiokolo_NK : NK ;
+fun kuusiokoloavain_NK : NK ;
+fun kuusiokoloruuvi_NK : NK ;
+fun kuusiomutteri_NK : NK ;
+fun kuusioruuvi_NK : NK ;
+fun kuusiotera's_NK : NK ;
+fun kuusipeura_NK : NK ;
+fun kuusipuinen_NK : NK ;
+fun kuusipuu_NK : NK ;
+fun kuusipa'iva'inen_NK : NK ;
+fun kuusitahkoinen_NK : NK ;
+fun kuusitahoinen_NK : NK ;
+fun kuusitahokas_NK : NK ;
+fun kuusitiainen_NK : NK ;
+fun kuusitoistavuotias_NK : NK ;
+fun kuusituntinen_NK : NK ;
+fun kuusituumainen_NK : NK ;
+fun kuusivaltainen_NK : NK ;
+fun kuusiviikkoinen_NK : NK ;
+fun kuusivuotias_NK : NK ;
+fun kuusivuotinen_NK : NK ;
+fun kuutamoka'vely_NK : NK ;
+fun kuutamourakka_NK : NK ;
+fun kuutamourakointi_NK : NK ;
+fun kuutiohinta_NK : NK ;
+fun kuutiojalka_NK : NK ;
+fun kuutiokauppa_NK : NK ;
+fun kuutiomainen_AK : AK ;
+fun kuutiometri_NK : NK ;
+fun kuutiometripaino_NK : NK ;
+fun kuutiomitta_NK : NK ;
+fun kuutiopaino_NK : NK ;
+fun kuutiosentti_NK : NK ;
+fun kuutiosenttimetri_NK : NK ;
+fun kuutiosisa'llys_NK : NK ;
+fun kuutiotilavuus_NK : NK ;
+fun kuutiotuuma_NK : NK ;
+fun kuvailmaus_NK : NK ;
+fun kuvakerronta_NK : NK ;
+fun kuvakertomus_NK : NK ;
+fun kuvakieli_NK : NK ;
+fun kuvakirja_NK : NK ;
+fun kuvakirjoitus_NK : NK ;
+fun kuvakooste_NK : NK ;
+fun kuvakortti_NK : NK ;
+fun kuvakudos_NK : NK ;
+fun kuvakulma_NK : NK ;
+fun kuvalaatta_NK : NK ;
+fun kuvalehti_NK : NK ;
+fun kuvalevy_NK : NK ;
+fun kuvalevysoitin_NK : NK ;
+fun kuvala'hetin_NK : NK ;
+fun kuvamittaus_NK : NK ;
+fun kuvanauha_NK : NK ;
+fun kuvanauhoite_NK : NK ;
+fun kuvanauhoitus_NK : NK ;
+fun kuvanauhuri_NK : NK ;
+fun kuvantoistokyky_NK : NK ;
+fun kuvanveistotaide_NK : NK ;
+fun kuvapatsas_NK : NK ;
+fun kuvapinta_NK : NK ;
+fun kuvapuhelin_NK : NK ;
+fun kuvaputki_NK : NK ;
+fun kuvaristikko_NK : NK ;
+fun kuvaruutu_NK : NK ;
+fun kuvasanonta_NK : NK ;
+fun kuvasarja_NK : NK ;
+fun kuvasignaali_NK : NK ;
+fun kuvasuhde_NK : NK ;
+fun kuvataide_NK : NK ;
+fun kuvataidekoulu_NK : NK ;
+fun kuvataideterapia_NK : NK ;
+fun kuvataiteilija_NK : NK ;
+fun kuvatallenne_NK : NK ;
+fun kuvataso_NK : NK ;
+fun kuvateksti_NK : NK ;
+fun kuvateos_NK : NK ;
+fun kuvatulkinta_NK : NK ;
+fun kuvaussihteeri_NK : NK ;
+fun kuvaustapa_NK : NK ;
+fun kuvausvirhe_NK : NK ;
+fun kuverttileipa'_NK : NK ;
+fun kuvioaihe_NK : NK ;
+fun kuvioammunta_NK : NK ;
+fun kuviokangas_NK : NK ;
+fun kuviokude_NK : NK ;
+fun kuviokudonta_NK : NK ;
+fun kuviokynto'_NK : NK ;
+fun kuviolaulu_NK : NK ;
+fun kuvioneule_NK : NK ;
+fun kuviosaha_NK : NK ;
+fun kuviotaulu_NK : NK ;
+fun kuvittelukyky_NK : NK ;
+fun kuvitustaide_NK : NK ;
+fun kvanttifysiikka_NK : NK ;
+fun kvanttikemia_NK : NK ;
+fun kvanttimekaniikka_NK : NK ;
+fun kvanttiteoria_NK : NK ;
+fun kvartettilaulu_NK : NK ;
+fun kvartsihiekka_NK : NK ;
+fun kvartsikello_NK : NK ;
+fun kvartsikide_NK : NK ;
+fun kvartsilamppu_NK : NK ;
+fun kvartsilasi_NK : NK ;
+fun kvartsipitoinen_NK : NK ;
+fun kvarta'a'rigeologia_NK : NK ;
+fun kvarta'a'rigeologinen_NK : NK ;
+fun kvarta'a'rikausi_NK : NK ;
+fun kvarta'a'rikautinen_NK : NK ;
+fun kyhmyjoutsen_NK : NK ;
+fun kyhmyruusu_NK : NK ;
+fun kykyisyys_NK : NK ;
+fun kylkiasento_NK : NK ;
+fun kylkiluu_NK : NK ;
+fun kylkiluuva'li_NK : NK ;
+fun kylkimiina_NK : NK ;
+fun kylkipaisti_NK : NK ;
+fun kylkipala_NK : NK ;
+fun kylkiruoto_NK : NK ;
+fun kylkirusto_NK : NK ;
+fun kylkisilava_NK : NK ;
+fun kylkiviiva_NK : NK ;
+fun kylla'isyys_NK : NK ;
+fun kylla'stysaine_NK : NK ;
+fun kylma'hermoinen_NK : NK ;
+fun kylma'hermoisuus_NK : NK ;
+fun kylma'ja'rkinen_NK : NK ;
+fun kylma'kiskoinen_AK : AK ;
+fun kylma'kuljetusauto_NK : NK ;
+fun kylma'liivi_NK : NK ;
+fun kylma'pa'inen_AK : AK ;
+fun kylma'syda'minen_AK : AK ;
+fun kylma'syda'misyys_NK : NK ;
+fun kylma'valssaus_NK : NK ;
+fun kylma'verinen_NK : NK ;
+fun kylma'verisyys_NK : NK ;
+fun kylma'vetinen_NK : NK ;
+fun kylpyamme_NK : NK ;
+fun kylpyharja_NK : NK ;
+fun kylpyhuone_NK : NK ;
+fun kylpylaitos_NK : NK ;
+fun kylpyla'hotelli_NK : NK ;
+fun kylpyla'kaupunki_NK : NK ;
+fun kylpypyyhe_NK : NK ;
+fun kylpysaippua_NK : NK ;
+fun kylpysuola_NK : NK ;
+fun kylpytakki_NK : NK ;
+fun kylvo'kone_NK : NK ;
+fun kylvo'lannoitin_NK : NK ;
+fun kylvo'metsa'_NK : NK ;
+fun kylvo'muokkaus_NK : NK ;
+fun kylvo'nurmi_NK : NK ;
+fun kylvo'siemen_NK : NK ;
+fun kylvo'syvyys_NK : NK ;
+fun kylvo'tiheys_NK : NK ;
+fun kylvo'tyo'_NK : NK ;
+fun kylvo'vakka_NK : NK ;
+fun kyla'asutus_NK : NK ;
+fun kyla'hullu_NK : NK ;
+fun kyla'kauppa_NK : NK ;
+fun kyla'keskus_NK : NK ;
+fun kyla'kokous_NK : NK ;
+fun kyla'koulu_NK : NK ;
+fun kyla'kunta_NK : NK ;
+fun kyla'kutsu_NK : NK ;
+fun kyla'luuta_NK : NK ;
+fun kyla'maisema_NK : NK ;
+fun kyla'nurmikka_NK : NK ;
+fun kyla'paikka_NK : NK ;
+fun kyla'seppa'_NK : NK ;
+fun kyla'ssa'ka'ynti_NK : NK ;
+fun kyla'tappelu_NK : NK ;
+fun kyla'tie_NK : NK ;
+fun kyla'yhteiso'_NK : NK ;
+fun kymmenesosa_NK : NK ;
+fun kymmenesosasekunti_NK : NK ;
+fun kymmenhenkinen_NK : NK ;
+fun kymmenjalkainen_NK : NK ;
+fun kymmenkertainen_NK : NK ;
+fun kymmenkunta_NK : NK ;
+fun kymmenluku_NK : NK ;
+fun kymmenlukuinen_NK : NK ;
+fun kymmenmarkkanen_NK : NK ;
+fun kymmenmiehinen_NK : NK ;
+fun kymmenottelija_NK : NK ;
+fun kymmenottelu_NK : NK ;
+fun kymmenpenninen_NK : NK ;
+fun kymmenpa'inen_NK : NK ;
+fun kymmentuhantinen_NK : NK ;
+fun kymmentuntinen_NK : NK ;
+fun kymmenvuotias_NK : NK ;
+fun kymmenvuotinen_NK : NK ;
+fun kymmenyspilkku_NK : NK ;
+fun kymmenysvaaka_NK : NK ;
+fun kymnaasilainen_NK : NK ;
+fun kymppiluokka_NK : NK ;
+fun kymppiluokkalainen_NK : NK ;
+fun kymppitonni_NK : NK ;
+fun kynnyskysymys_NK : NK ;
+fun kynnysmatto_NK : NK ;
+fun kynnyspuu_NK : NK ;
+fun kynnysraha_NK : NK ;
+fun kynno'spelto_NK : NK ;
+fun kynsiharja_NK : NK ;
+fun kynsilakka_NK : NK ;
+fun kynsilaukka_NK : NK ;
+fun kynsileikkuri_NK : NK ;
+fun kynsilevy_NK : NK ;
+fun kynsinauha_NK : NK ;
+--? fun kynsisakset_NK : NK ;
+fun kynsisammal_NK : NK ;
+fun kynsisieni_NK : NK ;
+fun kynsisilsa_NK : NK ;
+fun kynsitikku_NK : NK ;
+fun kynsivalli_NK : NK ;
+fun kynsiviila_NK : NK ;
+fun kynttila'kirkko_NK : NK ;
+fun kynttila'kruunu_NK : NK ;
+fun kynttila'lamppu_NK : NK ;
+fun kynttila'lyhty_NK : NK ;
+fun kynto'kilpailu_NK : NK ;
+fun kynto'pelto_NK : NK ;
+fun kynto'syvyys_NK : NK ;
+fun kynto'vako_NK : NK ;
+fun kynto'viilu_NK : NK ;
+fun kyna'jalava_NK : NK ;
+fun kyna'kotelo_NK : NK ;
+fun kyna'lamppu_NK : NK ;
+fun kyna'mies_NK : NK ;
+fun kyna'niekka_NK : NK ;
+fun kyna'piirros_NK : NK ;
+fun kyna'sota_NK : NK ;
+fun kyna'teline_NK : NK ;
+fun kypsyyskoe_NK : NK ;
+fun kypa'ra'lamppu_NK : NK ;
+fun kypa'ra'naamio_NK : NK ;
+fun kypa'ra'pa'inen_NK : NK ;
+fun kypa'ra'temppu_NK : NK ;
+fun kyselyika'_NK : NK ;
+fun kyselyika'inen_NK : NK ;
+fun kyselykaavake_NK : NK ;
+fun kyselykausi_NK : NK ;
+fun kyselylomake_NK : NK ;
+fun kyselytunti_NK : NK ;
+fun kyselytutkimus_NK : NK ;
+fun kyssa'kaali_NK : NK ;
+fun kyssa'selka'_NK : NK ;
+fun kyssa'selka'inen_NK : NK ;
+fun kysymyslause_NK : NK ;
+fun kysymysmerkki_NK : NK ;
+fun kysymyssarja_NK : NK ;
+fun kytkenta'kaavio_NK : NK ;
+fun kytkinpoljin_NK : NK ;
+fun kytkykauppa_NK : NK ;
+fun kyttyra'selka'_NK : NK ;
+fun kyttyra'selka'inen_NK : NK ;
+fun kyykkyasento_NK : NK ;
+fun kyykkyhyppely_NK : NK ;
+fun kyykkyhyppy_NK : NK ;
+fun kyykkyka'ynti_NK : NK ;
+fun kyykkynoja_NK : NK ;
+fun kyyka'a'rme_NK : NK ;
+fun kyynelhelmi_NK : NK ;
+fun kyynelkaasu_NK : NK ;
+fun kyynelkaasupistooli_NK : NK ;
+fun kyynelkaasupommi_NK : NK ;
+fun kyynelkaasusumutin_NK : NK ;
+fun kyynelkarpalo_NK : NK ;
+fun kyynelneste_NK : NK ;
+fun kyynelpisara_NK : NK ;
+fun kyynelrauhanen_NK : NK ;
+fun kyynelsilma'_NK : NK ;
+fun kyynelsumu_NK : NK ;
+fun kyyneltulva_NK : NK ;
+fun kyynelvirta_NK : NK ;
+fun kyynelvuoto_NK : NK ;
+fun kyyna'rpa'a'taklaus_NK : NK ;
+fun kyyna'rpa'a'taktiikka_NK : NK ;
+fun kyyna'ra'_NK : NK ;
+fun kyyna'ra'keppi_NK : NK ;
+fun kyyryasento_NK : NK ;
+fun kyyryla'hto'_NK : NK ;
+fun kyyryselka'inen_NK : NK ;
+fun kyytilaitos_NK : NK ;
+fun kyytimaksu_NK : NK ;
+fun kyytimies_NK : NK ;
+fun kyytipoika_NK : NK ;
+fun kyytto'karja_NK : NK ;
+fun kyo'kkiruotsi_NK : NK ;
+fun kyo'kkisuomi_NK : NK ;
+fun kyo'mynena'inen_NK : NK ;
+fun ka'dennostoa'a'nestys_NK : NK ;
+fun ka'ha'ra'pa'inen_NK : NK ;
+fun ka'ha'ra'tukkainen_NK : NK ;
+fun ka'kikello_NK : NK ;
+fun ka'mmekka'kasvi_NK : NK ;
+fun ka'mmenluu_NK : NK ;
+fun ka'mmenlyo'nti_NK : NK ;
+fun ka'mmenpohja_NK : NK ;
+fun ka'mmenpuoli_NK : NK ;
+fun ka'mmenselka'_NK : NK ;
+fun ka'mmensyrja'_NK : NK ;
+fun ka'mmensyrja'isku_NK : NK ;
+fun ka'mmensyrja'lyo'nti_NK : NK ;
+fun ka'mmenveto_NK : NK ;
+fun ka'mppa'ema'nta'_NK : NK ;
+fun ka'mppa'kaveri_NK : NK ;
+fun ka'nnikala_NK : NK ;
+fun ka'nsa'isyys_NK : NK ;
+fun ka'nsa'koura_NK : NK ;
+fun ka'nsa'kourainen_NK : NK ;
+fun ka'pyhius_NK : NK ;
+fun ka'pykaarti_NK : NK ;
+fun ka'pykaartilainen_NK : NK ;
+fun ka'pykakku_NK : NK ;
+fun ka'pylintu_NK : NK ;
+fun ka'pylisa'ke_NK : NK ;
+fun ka'pypalmu_NK : NK ;
+fun ka'pyrauhanen_NK : NK ;
+fun ka'pysato_NK : NK ;
+fun ka'pysuomu_NK : NK ;
+fun ka'pytikka_NK : NK ;
+fun ka'pa'la'lauta_NK : NK ;
+fun ka'pa'la'ma'ki_NK : NK ;
+fun ka'rkeva'kielinen_NK : NK ;
+fun ka'rkeva'sanainen_NK : NK ;
+fun ka'rkiastuja_NK : NK ;
+fun ka'rkiaura_NK : NK ;
+fun ka'rkijoukko_NK : NK ;
+fun ka'rkijoukkue_NK : NK ;
+fun ka'rkijuoksija_NK : NK ;
+fun ka'rkija'sen_NK : NK ;
+fun ka'rkikaarti_NK : NK ;
+fun ka'rkikappale_NK : NK ;
+fun ka'rkikolmikko_NK : NK ;
+fun ka'rkikolmio_NK : NK ;
+fun ka'rkilaakeri_NK : NK ;
+fun ka'rkiluokka_NK : NK ;
+fun ka'rkimaa_NK : NK ;
+fun ka'rkimies_NK : NK ;
+fun ka'rkinimi_NK : NK ;
+fun ka'rkinivel_NK : NK ;
+fun ka'rkiosa_NK : NK ;
+fun ka'rkipaikka_NK : NK ;
+fun ka'rkipartio_NK : NK ;
+fun ka'rkipelaaja_NK : NK ;
+fun ka'rkipiste_NK : NK ;
+fun ka'rkipora_NK : NK ;
+fun ka'rkipotku_NK : NK ;
+fun ka'rkipurkaus_NK : NK ;
+fun ka'rkipa'a'_NK : NK ;
+fun ka'rkiryhma'_NK : NK ;
+fun ka'rkiside_NK : NK ;
+fun ka'rkisija_NK : NK ;
+fun ka'rkisolukko_NK : NK ;
+fun ka'rkisorvi_NK : NK ;
+fun ka'rkitila_NK : NK ;
+fun ka'rkitulos_NK : NK ;
+fun ka'rkituote_NK : NK ;
+fun ka'rkiva'li_NK : NK ;
+fun ka'rpa'ssarjalainen_NK : NK ;
+fun ka'rrylaukku_NK : NK ;
+fun ka'rrytie_NK : NK ;
+fun ka'rsimyshedelma'_NK : NK ;
+fun ka'rsimyshistoria_NK : NK ;
+fun ka'rsimyskukka_NK : NK ;
+fun ka'rsimysna'ytelma'_NK : NK ;
+fun ka'rsimystie_NK : NK ;
+fun ka'rsimysviikko_NK : NK ;
+fun ka'sialana'yte_NK : NK ;
+fun ka'siase_NK : NK ;
+fun ka'sijarru_NK : NK ;
+fun ka'sijohde_NK : NK ;
+fun ka'sijousi_NK : NK ;
+fun ka'sikaasu_NK : NK ;
+fun ka'sikassara_NK : NK ;
+fun ka'sikauppa_NK : NK ;
+fun ka'sikauppala'a'ke_NK : NK ;
+fun ka'sikirja_NK : NK ;
+fun ka'sikirjasto_NK : NK ;
+fun ka'sikirjoite_NK : NK ;
+fun ka'sikirjoitus_NK : NK ;
+fun ka'sikivi_NK : NK ;
+fun ka'sikoukku_NK : NK ;
+fun ka'sikranaatti_NK : NK ;
+fun ka'sika'ynnistys_NK : NK ;
+fun ka'sika'ytto'inen_NK : NK ;
+fun ka'silaukku_NK : NK ;
+fun ka'sileimasin_NK : NK ;
+fun ka'siliike_NK : NK ;
+fun ka'silla'ka'vely_NK : NK ;
+fun ka'silla'seisonta_NK : NK ;
+fun ka'silukko_NK : NK ;
+fun ka'simerkki_NK : NK ;
+fun ka'simoniste_NK : NK ;
+fun ka'sinepari_NK : NK ;
+fun ka'sinkylvo'_NK : NK ;
+fun ka'sinka'ynti_NK : NK ;
+fun ka'sinladonta_NK : NK ;
+fun ka'sinlajittelu_NK : NK ;
+fun ka'sinlatoja_NK : NK ;
+fun ka'sinlypsy_NK : NK ;
+fun ka'sinohjaus_NK : NK ;
+fun ka'sinoja_NK : NK ;
+fun ka'sinpesu_NK : NK ;
+fun ka'sinseisonta_NK : NK ;
+fun ka'sinukke_NK : NK ;
+fun ka'siohjelma_NK : NK ;
+fun ka'siote_NK : NK ;
+fun ka'sipakaasi_NK : NK ;
+fun ka'sipakka_NK : NK ;
+fun ka'sipallo_NK : NK ;
+fun ka'sipalloilija_NK : NK ;
+fun ka'sipalloilu_NK : NK ;
+fun ka'sipallojoukkue_NK : NK ;
+fun ka'sipari_NK : NK ;
+fun ka'sipeili_NK : NK ;
+fun ka'sipeli_NK : NK ;
+fun ka'sipuhelin_NK : NK ;
+fun ka'sipumppu_NK : NK ;
+fun ka'sipuoli_NK : NK ;
+fun ka'sipuu_NK : NK ;
+fun ka'sipuuhka_NK : NK ;
+fun ka'sipyyhe_NK : NK ;
+fun ka'sipyykki_NK : NK ;
+fun ka'sipyo'ra'_NK : NK ;
+fun ka'siraha_NK : NK ;
+--? fun ka'sirattaat_NK : NK ;
+fun ka'sirysy_NK : NK ;
+fun ka'sisaha_NK : NK ;
+fun ka'sisaippua_NK : NK ;
+fun ka'sisammutin_NK : NK ;
+fun ka'sisuihku_NK : NK ;
+fun ka'sisuudelma_NK : NK ;
+fun ka'sisa'a'to'_NK : NK ;
+fun ka'sisa'a'to'inen_NK : NK ;
+fun ka'siteanalyysi_NK : NK ;
+fun ka'sitekartta_NK : NK ;
+fun ka'siteollinen_NK : NK ;
+fun ka'siteollisuus_NK : NK ;
+fun ka'siteollisuustuote_NK : NK ;
+fun ka'sitera'_NK : NK ;
+fun ka'sitetaide_NK : NK ;
+fun ka'sittelyja'rjestys_NK : NK ;
+fun ka'sittelytapa_NK : NK ;
+fun ka'sittelyvaihe_NK : NK ;
+fun ka'situki_NK : NK ;
+fun ka'sityskanta_NK : NK ;
+fun ka'sityskyky_NK : NK ;
+fun ka'sitystapa_NK : NK ;
+fun ka'sityo'_NK : NK ;
+fun ka'sityo'ammatti_NK : NK ;
+fun ka'sityo'kalu_NK : NK ;
+fun ka'sityo'liike_NK : NK ;
+fun ka'sityo'la'inen_NK : NK ;
+fun ka'sityo'taito_NK : NK ;
+fun ka'sivaaka_NK : NK ;
+fun ka'sivaivainen_NK : NK ;
+fun ka'sivalaisin_NK : NK ;
+fun ka'sivamma_NK : NK ;
+fun ka'sivammainen_NK : NK ;
+fun ka'sivara_NK : NK ;
+fun ka'sivarainen_AK : AK ;
+fun ka'sivarapiirustus_NK : NK ;
+fun ka'sivarasto_NK : NK ;
+fun ka'sivarsi_NK : NK ;
+fun ka'sivarsiheitto_NK : NK ;
+fun ka'sivarsilihas_NK : NK ;
+fun ka'sivarsilukko_NK : NK ;
+fun ka'sivarsinauha_NK : NK ;
+fun ka'sivarsituntuma_NK : NK ;
+fun ka'sivika_NK : NK ;
+fun ka'sivirhe_NK : NK ;
+fun ka'sivoide_NK : NK ;
+fun ka'sivoima_NK : NK ;
+fun ka'siva'litys_NK : NK ;
+fun ka'skytapa_NK : NK ;
+fun ka'skyvalta_NK : NK ;
+fun ka'skyvaltasuhde_NK : NK ;
+fun ka'sna'jalkainen_NK : NK ;
+fun ka'tkytkuolema_NK : NK ;
+fun ka'tko'lo'yto'_NK : NK ;
+fun ka'tko'noki_NK : NK ;
+fun ka'tko'paikka_NK : NK ;
+fun ka'velyaskel_NK : NK ;
+fun ka'velyeta'isyys_NK : NK ;
+fun ka'velykansi_NK : NK ;
+fun ka'velykatu_NK : NK ;
+fun ka'velykenka'_NK : NK ;
+fun ka'velykeppi_NK : NK ;
+fun ka'velykilpailu_NK : NK ;
+fun ka'velykonsertti_NK : NK ;
+fun ka'velylenkki_NK : NK ;
+fun ka'velymatka_NK : NK ;
+fun ka'velypiha_NK : NK ;
+fun ka'velypuku_NK : NK ;
+fun ka'velyreitti_NK : NK ;
+fun ka'velyretki_NK : NK ;
+fun ka'velysilta_NK : NK ;
+fun ka'velytesti_NK : NK ;
+fun ka'velytie_NK : NK ;
+fun ka'velytyyli_NK : NK ;
+fun ka'velyvauhti_NK : NK ;
+fun ka'ymisla'mpo'tila_NK : NK ;
+fun ka'ynnistyskaapeli_NK : NK ;
+fun ka'ynnistyskytkin_NK : NK ;
+fun ka'ynnistysmoottori_NK : NK ;
+fun ka'ynnistysmuuntaja_NK : NK ;
+fun ka'yntiha'irio'_NK : NK ;
+fun ka'yntikerta_NK : NK ;
+fun ka'yntikortti_NK : NK ;
+fun ka'yntila'mpo'inen_NK : NK ;
+fun ka'yntinopeus_NK : NK ;
+fun ka'yntinopeusmittari_NK : NK ;
+fun ka'yntiosoite_NK : NK ;
+fun ka'yntipaikka_NK : NK ;
+fun ka'yntisuunta_NK : NK ;
+fun ka'yntitarkkuus_NK : NK ;
+fun ka'yntivarmuus_NK : NK ;
+fun ka'yntivirhe_NK : NK ;
+fun ka'yntia'a'ni_NK : NK ;
+fun ka'yra'diagrammi_NK : NK ;
+fun ka'yra'nokkainen_NK : NK ;
+fun ka'yra'vartinen_NK : NK ;
+fun ka'yra'viivain_NK : NK ;
+fun ka'yteaine_NK : NK ;
+fun ka'ytta'ja'kunta_NK : NK ;
+fun ka'ytta'ja'piiri_NK : NK ;
+fun ka'ytta'ja'tunnus_NK : NK ;
+fun ka'ytto'akseli_NK : NK ;
+fun ka'ytto'arvo_NK : NK ;
+fun ka'ytto'aste_NK : NK ;
+fun ka'ytto'esine_NK : NK ;
+fun ka'ytto'graafikko_NK : NK ;
+fun ka'ytto'grafiikka_NK : NK ;
+fun ka'ytto'ha'irio'_NK : NK ;
+fun ka'ytto'ika'_NK : NK ;
+fun ka'ytto'insino'o'ri_NK : NK ;
+fun ka'ytto'jarru_NK : NK ;
+fun ka'ytto'ja'nnite_NK : NK ;
+fun ka'ytto'kate_NK : NK ;
+fun ka'ytto'kelpoinen_NK : NK ;
+fun ka'ytto'kelpoisuus_NK : NK ;
+fun ka'ytto'kelvoton_NK : NK ;
+fun ka'ytto'koira_NK : NK ;
+fun ka'ytto'koneisto_NK : NK ;
+fun ka'ytto'kunto_NK : NK ;
+fun ka'ytto'kuntoinen_NK : NK ;
+fun ka'ytto'liittyma'_NK : NK ;
+fun ka'ytto'lyriikka_NK : NK ;
+fun ka'ytto'la'mmin_NK : NK ;
+fun ka'ytto'muisti_NK : NK ;
+fun ka'ytto'musiikki_NK : NK ;
+fun ka'ytto'ohje_NK : NK ;
+fun ka'ytto'oikeus_NK : NK ;
+fun ka'ytto'omaisuus_NK : NK ;
+fun ka'ytto'pa'a'llikko'_NK : NK ;
+fun ka'ytto'rahasto_NK : NK ;
+fun ka'ytto'sarja_NK : NK ;
+fun ka'ytto'sekki_NK : NK ;
+fun ka'ytto'taide_NK : NK ;
+fun ka'ytto'tapa_NK : NK ;
+fun ka'ytto'tarkoitus_NK : NK ;
+fun ka'ytto'tavara_NK : NK ;
+fun ka'ytto'tili_NK : NK ;
+fun ka'ytto'tunti_NK : NK ;
+fun ka'ytto'valio_NK : NK ;
+fun ka'ytto'valmis_NK : NK ;
+fun ka'ytto'valmius_NK : NK ;
+fun ka'ytto'varkaus_NK : NK ;
+fun ka'ytto'varma_NK : NK ;
+fun ka'ytto'varmuus_NK : NK ;
+fun ka'ytto'voima_NK : NK ;
+fun ka'yta'va'keskustelu_NK : NK ;
+fun ka'yta'va'laatta_NK : NK ;
+fun ka'yta'va'matto_NK : NK ;
+fun ka'yta'va'politiikka_NK : NK ;
+fun ka'yto'snumero_NK : NK ;
+fun ka'yto'stapa_NK : NK ;
+fun ka'a'mityskone_NK : NK ;
+fun ka'a'nnepiste_NK : NK ;
+fun ka'a'nnytystyo'_NK : NK ;
+fun ka'a'nno'sharjoitus_NK : NK ;
+fun ka'a'nno'skieli_NK : NK ;
+fun ka'a'nno'skirja_NK : NK ;
+fun ka'a'nno'skoe_NK : NK ;
+fun ka'a'nno'slaina_NK : NK ;
+fun ka'a'nno'spalkkio_NK : NK ;
+fun ka'a'nno'sromaani_NK : NK ;
+fun ka'a'nno'stehta'va'_NK : NK ;
+fun ka'a'nno'steksti_NK : NK ;
+fun ka'a'nno'stiede_NK : NK ;
+fun ka'a'nno'styo'_NK : NK ;
+fun ka'a'nno'svirhe_NK : NK ;
+fun ka'a'nta'ja'koulutus_NK : NK ;
+fun ka'a'nto'filmi_NK : NK ;
+fun ka'a'nto'kippi_NK : NK ;
+fun ka'a'nto'kulmio_NK : NK ;
+fun ka'a'nto'laukaus_NK : NK ;
+fun ka'a'nto'lava_NK : NK ;
+fun ka'a'nto'piiri_NK : NK ;
+fun ka'a'nto'puoli_NK : NK ;
+fun ka'a'nto'po'yta'_NK : NK ;
+fun ka'a'nto'silta_NK : NK ;
+fun ka'a'nto'sa'de_NK : NK ;
+fun ka'a'nto'takki_NK : NK ;
+fun ka'a'nto'turkki_NK : NK ;
+fun ka'a'nto'varsi_NK : NK ;
+fun ka'a'nto'veitsi_NK : NK ;
+fun ka'a'nto'ympyra'_NK : NK ;
+fun ka'a'pio'kansa_NK : NK ;
+fun ka'a'pio'kasvu_NK : NK ;
+fun ka'a'pio'kasvuinen_NK : NK ;
+fun ka'a'pio'koira_NK : NK ;
+fun ka'a'pio'ka'ynti_NK : NK ;
+fun ka'a'pio'palmu_NK : NK ;
+fun ka'a'pio'pinseri_NK : NK ;
+fun ka'a'pio'puu_NK : NK ;
+fun ka'a'pio'sarja_NK : NK ;
+fun ka'a'pio'sarjalainen_NK : NK ;
+fun ka'a'pio'ta'hti_NK : NK ;
+fun ka'a'pio'valtio_NK : NK ;
+fun ka'a'pa'sieni_NK : NK ;
+fun ka'a'rehoito_NK : NK ;
+fun ka'a'repaperi_NK : NK ;
+fun ka'a'resyltty_NK : NK ;
+fun ka'a'retorttu_NK : NK ;
+fun ka'a'rmeihminen_NK : NK ;
+fun ka'a'rmeja'ljitelma'_NK : NK ;
+fun ka'a'rmekaktus_NK : NK ;
+fun ka'a'rmekeitto_NK : NK ;
+fun ka'a'rmekuusi_NK : NK ;
+fun ka'a'rmenainen_NK : NK ;
+fun ka'a'rmeseerumi_NK : NK ;
+fun ka'a'rmeta'hti_NK : NK ;
+fun ka'a'ro'ka'rsa'ka's_NK : NK ;
+fun ko'livene_NK : NK ;
+fun ko'livesi_NK : NK ;
+fun ko'llinimi_NK : NK ;
+fun ko'mpelo'ka'tinen_NK : NK ;
+fun ko'mpelo'liikkeinen_NK : NK ;
+fun ko'mpelo'tekoinen_NK : NK ;
+fun ko'nttisumma_NK : NK ;
+fun ko'ntta'summa_NK : NK ;
+fun ko'yhyysloukku_NK : NK ;
+fun ko'yha'listo'kortteli_NK : NK ;
+fun ko'ynno'saihe_NK : NK ;
+fun ko'ynno'skasvi_NK : NK ;
+fun ko'ynno'skoriste_NK : NK ;
+fun ko'ynno'skuusama_NK : NK ;
+fun ko'ynno'sruusu_NK : NK ;
+fun ko'yryniskainen_NK : NK ;
+fun ko'yryselka'inen_NK : NK ;
+fun ko'ysiaita_NK : NK ;
+fun ko'ysiaitaus_NK : NK ;
+fun ko'ysinippu_NK : NK ;
+fun ko'ysipyo'ra'_NK : NK ;
+fun ko'ysirata_NK : NK ;
+fun ko'ysisilmukka_NK : NK ;
+fun ko'ysisilta_NK : NK ;
+--? fun ko'ysitikkaat_NK : NK ;
+fun ko'ysivyyhti_NK : NK ;
+fun laahauskauha_NK : NK ;
+fun laahusankkuri_NK : NK ;
+fun laahusjuonto_NK : NK ;
+fun laahusloki_NK : NK ;
+fun laahusnuotta_NK : NK ;
+fun laajakaistainen_NK : NK ;
+fun laajakangas_NK : NK ;
+fun laajakantoinen_NK : NK ;
+fun laajakantoisuus_NK : NK ;
+fun laajakatseinen_NK : NK ;
+fun laajakirjoinen_NK : NK ;
+fun laajakulmaobjektiivi_NK : NK ;
+fun laajalevikkinen_NK : NK ;
+fun laajamittainen_NK : NK ;
+fun laajapohjainen_NK : NK ;
+fun laajarunkoinen_NK : NK ;
+fun laajasyda'minen_NK : NK ;
+fun laajaulotteinen_NK : NK ;
+fun laajennustyo'_NK : NK ;
+fun laakafilmi_NK : NK ;
+fun laakafilmikamera_NK : NK ;
+fun laakafilmikasetti_NK : NK ;
+fun laakaja'ka'la'_NK : NK ;
+fun laakakaulus_NK : NK ;
+fun laakalyo'nti_NK : NK ;
+fun laakamato_NK : NK ;
+fun laakanauha_NK : NK ;
+fun laakaovi_NK : NK ;
+fun laakapainanta_NK : NK ;
+fun laakapaino_NK : NK ;
+fun laakapainomenetelma'_NK : NK ;
+fun laakapallo_NK : NK ;
+--? fun laakapihdit_NK : NK ;
+fun laakapisto_NK : NK ;
+fun laakasammal_NK : NK ;
+fun laakasauma_NK : NK ;
+fun laakasiilo_NK : NK ;
+fun laakasa'ilo'_NK : NK ;
+fun laakatuli_NK : NK ;
+fun laakeriholkki_NK : NK ;
+fun laakerikasvi_NK : NK ;
+fun laakerikitka_NK : NK ;
+fun laakerikivi_NK : NK ;
+fun laakerimetalli_NK : NK ;
+fun laakerinmarjao'ljy_NK : NK ;
+fun laakeripesa'_NK : NK ;
+fun laakeripinta_NK : NK ;
+fun laakeripuu_NK : NK ;
+fun laakeriseppele_NK : NK ;
+fun laakerio'ljy_NK : NK ;
+fun laakiomaa_NK : NK ;
+fun laaksopenger_NK : NK ;
+fun laamannikunta_NK : NK ;
+fun laamapaita_NK : NK ;
+fun laapiskivi_NK : NK ;
+fun laapiskyna'_NK : NK ;
+fun laapispuikko_NK : NK ;
+fun laastarilappu_NK : NK ;
+fun laastikauha_NK : NK ;
+fun laastipinta_NK : NK ;
+fun laatikkokamera_NK : NK ;
+fun laatikkomyyma'la'_NK : NK ;
+fun laatikkoruoka_NK : NK ;
+fun laattakiveys_NK : NK ;
+fun laattalattia_NK : NK ;
+fun laattapalkki_NK : NK ;
+fun laatuero_NK : NK ;
+fun laatukasvu_NK : NK ;
+fun laatukilpailu_NK : NK ;
+fun laatukuva_NK : NK ;
+fun laatukuvamaalaus_NK : NK ;
+fun laatuluku_NK : NK ;
+fun laatuluokittelu_NK : NK ;
+fun laatuluokitus_NK : NK ;
+fun laatuluokka_NK : NK ;
+fun laatumerkinta'_NK : NK ;
+fun laatumerkki_NK : NK ;
+fun laatupiiri_NK : NK ;
+fun laatusana_NK : NK ;
+fun laatutaso_NK : NK ;
+fun laatutavara_NK : NK ;
+fun laatutietoinen_NK : NK ;
+fun laatutietoisuus_NK : NK ;
+fun laatutuki_NK : NK ;
+fun laatutuote_NK : NK ;
+fun laatutyo'_NK : NK ;
+fun laatuvaatimus_NK : NK ;
+fun laatuvika_NK : NK ;
+fun laavaja'rvi_NK : NK ;
+fun laavakivi_NK : NK ;
+fun laavakivilaji_NK : NK ;
+fun laavavirta_NK : NK ;
+fun laboratorioapulainen_NK : NK ;
+fun laboratoriohoitaja_NK : NK ;
+fun laboratoriokoe_NK : NK ;
+fun laboratoriokoje_NK : NK ;
+fun laboratoriotutkimus_NK : NK ;
+fun ladontavirhe_NK : NK ;
+fun lahjaesine_NK : NK ;
+fun lahjakirja_NK : NK ;
+fun lahjakkuusreservi_NK : NK ;
+fun lahjakortti_NK : NK ;
+fun lahjapaketti_NK : NK ;
+fun lahjapakkaus_NK : NK ;
+fun lahjapo'yta'_NK : NK ;
+fun lahjaraha_NK : NK ;
+fun lahjasekki_NK : NK ;
+fun lahjatavara_NK : NK ;
+fun lahjateos_NK : NK ;
+fun lahjavero_NK : NK ;
+fun lahjoitusrahasto_NK : NK ;
+fun lahjusskandaali_NK : NK ;
+fun lahkolainen_NK : NK ;
+fun lahokanto_NK : NK ;
+fun lahokoira_NK : NK ;
+fun lahokuoriainen_NK : NK ;
+fun lahonestoaine_NK : NK ;
+fun lahopuu_NK : NK ;
+fun lahorusokas_NK : NK ;
+fun lahosammal_NK : NK ;
+fun lahosuoja_NK : NK ;
+fun lahosuojaus_NK : NK ;
+fun lahottajabakteeri_NK : NK ;
+fun lahottajasieni_NK : NK ;
+fun lahovika_NK : NK ;
+fun lahovikainen_NK : NK ;
+fun lahovikaisuus_NK : NK ;
+fun lahtipenkki_NK : NK ;
+fun lahtivalas_NK : NK ;
+fun laidunhalvaus_NK : NK ;
+fun laidunkausi_NK : NK ;
+fun laidunkouristus_NK : NK ;
+fun laidunkuume_NK : NK ;
+fun laidunmaa_NK : NK ;
+fun laidunnurmi_NK : NK ;
+fun laidunrehu_NK : NK ;
+fun laidunruoho_NK : NK ;
+fun laidunruokinta_NK : NK ;
+fun laihdutusdieetti_NK : NK ;
+fun laihdutuskuuri_NK : NK ;
+fun laihdutusla'a'ke_NK : NK ;
+fun laihdutusvalmiste_NK : NK ;
+fun laikkupintainen_NK : NK ;
+fun laikkutauti_NK : NK ;
+fun laillisuusmies_NK : NK ;
+fun laimennusaine_NK : NK ;
+fun laimennusaste_NK : NK ;
+fun laimennussuhde_NK : NK ;
+fun laiminlyo'nti_NK : NK ;
+fun laiminlyo'ntirikos_NK : NK ;
+fun lainaehto_NK : NK ;
+fun lainaesine_NK : NK ;
+fun lainahakemus_NK : NK ;
+fun lainakirja_NK : NK ;
+fun lainakirjasto_NK : NK ;
+fun lainakorko_NK : NK ;
+fun lainalainen_NK : NK ;
+fun lainalaisuus_NK : NK ;
+--? fun lainamarkkinat_NK : NK ;
+fun lainaraha_NK : NK ;
+fun lainasana_NK : NK ;
+fun lainasopimus_NK : NK ;
+fun lainatavara_NK : NK ;
+fun lainausmerkki_NK : NK ;
+fun lainekreppi_NK : NK ;
+fun lainelauta_NK : NK ;
+fun lainelautailija_NK : NK ;
+fun lainelautailu_NK : NK ;
+fun lainhaku_NK : NK ;
+fun lainhuuto_NK : NK ;
+fun lainkuuliainen_NK : NK ;
+fun lainka'ytto'_NK : NK ;
+fun lainlaatija_NK : NK ;
+fun lainmukainen_NK : NK ;
+fun lainmukaisuus_NK : NK ;
+fun lainmuutos_NK : NK ;
+fun lainomainen_NK : NK ;
+fun lainomaisuus_NK : NK ;
+fun lainopillinen_NK : NK ;
+fun lainoppi_NK : NK ;
+--? fun lainoppinut_NK : NK ;
+fun lainrikkoja_NK : NK ;
+fun lainrikkomus_NK : NK ;
+fun lainselitys_NK : NK ;
+fun lainsuoja_NK : NK ;
+fun lainsuojaton_NK : NK ;
+fun lainsa'a'da'nta'_NK : NK ;
+fun lainsa'a'da'nta'elin_NK : NK ;
+fun lainsa'a'da'nto'_NK : NK ;
+fun lainsa'a'da'nto'neuvos_NK : NK ;
+fun lainsa'a'da'nto'valta_NK : NK ;
+fun lainsa'a'nno's_NK : NK ;
+fun lainsa'a'ta'ja'_NK : NK ;
+fun laintaulu_NK : NK ;
+fun laintulkinta_NK : NK ;
+fun lainvartija_NK : NK ;
+fun lainvastainen_NK : NK ;
+fun lainvastaisuus_NK : NK ;
+fun lainvoima_NK : NK ;
+fun lainvoimainen_NK : NK ;
+fun lainvoimaisuus_NK : NK ;
+fun laippakytkin_NK : NK ;
+fun laippaliitos_NK : NK ;
+fun laipparengas_NK : NK ;
+fun laiskalainen_NK : NK ;
+fun laitaesto_NK : NK ;
+fun laitahyo'kka'a'ja'_NK : NK ;
+fun laitakatu_NK : NK ;
+fun laitakaupunki_NK : NK ;
+fun laitakukka_NK : NK ;
+fun laitamies_NK : NK ;
+fun laitamyo'ta'inen_NK : NK ;
+fun laitapuoli_NK : NK ;
+fun laitapuolustaja_NK : NK ;
+fun laitataklaus_NK : NK ;
+fun laitatuuli_NK : NK ;
+fun laitavastainen_NK : NK ;
+fun laitosapulainen_NK : NK ;
+fun laitosema'nta'_NK : NK ;
+fun laitoshoito_NK : NK ;
+fun laitoshuolto_NK : NK ;
+fun laitoskasvatus_NK : NK ;
+fun laitoskeittio'_NK : NK ;
+fun laitoskeitta'ja'_NK : NK ;
+fun laitosmies_NK : NK ;
+fun laitosneuvosto_NK : NK ;
+fun laitospotilas_NK : NK ;
+fun laitossiivooja_NK : NK ;
+fun laitostalous_NK : NK ;
+fun laitosteatteri_NK : NK ;
+fun laituripaikka_NK : NK ;
+--? fun laituritikkaat_NK : NK ;
+fun laivaema'nta'_NK : NK ;
+fun laivahylky_NK : NK ;
+fun laivajuna_NK : NK ;
+fun laivakissa_NK : NK ;
+fun laivakoira_NK : NK ;
+fun laivakokki_NK : NK ;
+fun laivakompassi_NK : NK ;
+fun laivakorppu_NK : NK ;
+fun laivakuljetus_NK : NK ;
+fun laivalaituri_NK : NK ;
+fun laivalasti_NK : NK ;
+fun laivaliikenne_NK : NK ;
+fun laivalinja_NK : NK ;
+fun laivalippu_NK : NK ;
+fun laivalo'yto'_NK : NK ;
+fun laivamaksu_NK : NK ;
+fun laivamatka_NK : NK ;
+fun laivamatkailu_NK : NK ;
+fun laivameklari_NK : NK ;
+fun laivamies_NK : NK ;
+fun laivamuonitus_NK : NK ;
+fun laivanisa'nnisto'yhtio'_NK : NK ;
+fun laivanrakennusinsino'o'ri_NK : NK ;
+fun laivanrakennustekniikka_NK : NK ;
+fun laivapalvelus_NK : NK ;
+fun laivapoika_NK : NK ;
+fun laivarahti_NK : NK ;
+fun laivaranta_NK : NK ;
+fun laivareitti_NK : NK ;
+fun laivasaattue_NK : NK ;
+fun laivasatama_NK : NK ;
+fun laivaseminaari_NK : NK ;
+fun laivasilta_NK : NK ;
+fun laivastoasema_NK : NK ;
+fun laivastosaarto_NK : NK ;
+fun laivastotukikohta_NK : NK ;
+fun laivastovierailu_NK : NK ;
+fun laivatokka_NK : NK ;
+fun laivatykisto'_NK : NK ;
+fun laivatykki_NK : NK ;
+fun laivatytto'_NK : NK ;
+fun laivatyyppi_NK : NK ;
+fun laivavene_NK : NK ;
+fun laivavuoro_NK : NK ;
+fun laivava'ki_NK : NK ;
+fun laivava'yla'_NK : NK ;
+fun laivayhteys_NK : NK ;
+fun laivayhtio'_NK : NK ;
+fun lajikumppani_NK : NK ;
+fun lajiko'yha'_NK : NK ;
+fun lajinimi_NK : NK ;
+fun lajiominaisuus_NK : NK ;
+fun lajirikas_NK : NK ;
+fun lajiristeyma'_NK : NK ;
+fun lajirunsaus_NK : NK ;
+fun lajitoveri_NK : NK ;
+fun lajittelukone_NK : NK ;
+fun lajittelulaite_NK : NK ;
+fun lajitteluosasto_NK : NK ;
+fun lajivalmentaja_NK : NK ;
+fun lakaisukone_NK : NK ;
+fun lakaisulaukaus_NK : NK ;
+fun lakanakangas_NK : NK ;
+fun lakanapitsi_NK : NK ;
+fun lakeerinahka_NK : NK ;
+fun lakialoite_NK : NK ;
+fun lakiasia_NK : NK ;
+fun lakiaukile_NK : NK ;
+fun lakiehdotus_NK : NK ;
+fun lakiesitys_NK : NK ;
+fun lakija'a'tikko'_NK : NK ;
+fun lakikieli_NK : NK ;
+fun lakikirja_NK : NK ;
+fun lakikokoelma_NK : NK ;
+fun lakikorkeus_NK : NK ;
+fun lakimies_NK : NK ;
+fun lakimuutos_NK : NK ;
+fun lakima'a'ra'inen_NK : NK ;
+fun lakinainen_NK : NK ;
+fun lakiosa_NK : NK ;
+fun lakipiste_NK : NK ;
+fun lakipyka'la'_NK : NK ;
+fun lakisa'a'teinen_NK : NK ;
+fun lakiteksti_NK : NK ;
+fun lakitermi_NK : NK ;
+fun lakitiede_NK : NK ;
+fun lakitupa_NK : NK ;
+fun lakkabensiini_NK : NK ;
+fun lakkahillo_NK : NK ;
+fun lakkakerros_NK : NK ;
+fun lakkaliko'o'ri_NK : NK ;
+fun lakkamaali_NK : NK ;
+fun lakkanailon_NK : NK ;
+fun lakkapinta_NK : NK ;
+fun lakkapa'inen_NK : NK ;
+fun lakkapa'a'_NK : NK ;
+fun lakkasinetti_NK : NK ;
+fun lakkatyo'_NK : NK ;
+fun lakkautuspalkka_NK : NK ;
+fun lakkireuhka_NK : NK ;
+fun lakkisieni_NK : NK ;
+fun lakkoaalto_NK : NK ;
+fun lakkoavustus_NK : NK ;
+fun lakkoehto_NK : NK ;
+fun lakkojohtaja_NK : NK ;
+fun lakkojohto_NK : NK ;
+fun lakkokenraali_NK : NK ;
+fun lakkoklausuuli_NK : NK ;
+fun lakkokokous_NK : NK ;
+fun lakkolainen_NK : NK ;
+fun lakkolupa_NK : NK ;
+fun lakkorahasto_NK : NK ;
+fun lakkoraja_NK : NK ;
+fun lakkorintama_NK : NK ;
+fun lakkovahti_NK : NK ;
+fun lakkovaroitus_NK : NK ;
+fun lakkovartio_NK : NK ;
+fun lakmuskoe_NK : NK ;
+fun lakmuspaperi_NK : NK ;
+fun lakovilja_NK : NK ;
+fun lakritsija'a'telo'_NK : NK ;
+fun lakritsikaramelli_NK : NK ;
+fun lakritsikasvi_NK : NK ;
+fun lakritsimakeinen_NK : NK ;
+fun lakritsipatukka_NK : NK ;
+fun lakritsipo'tko'_NK : NK ;
+fun laktaasientsyymi_NK : NK ;
+fun lamaannustila_NK : NK ;
+fun lamaismi_NK : NK ;
+fun lamakausi_NK : NK ;
+fun lamalainen_NK : NK ;
+fun lamatila_NK : NK ;
+fun lamellikuljetin_NK : NK ;
+fun lamellitalo_NK : NK ;
+fun lamelliverho_NK : NK ;
+fun laminaattilasi_NK : NK ;
+fun laminaattilevy_NK : NK ;
+fun lammaskaali_NK : NK ;
+fun lammaskarsina_NK : NK ;
+fun lammaskatras_NK : NK ;
+fun lammaslaidun_NK : NK ;
+fun lammaslauma_NK : NK ;
+fun lammasmainen_AK : AK ;
+fun lammasnavetta_NK : NK ;
+fun lammaspaimen_NK : NK ;
+fun lammaspaisti_NK : NK ;
+fun lammasrotu_NK : NK ;
+fun lammassuoja_NK : NK ;
+fun lammastarha_NK : NK ;
+fun lammasturkki_NK : NK ;
+fun lammikkokasvatus_NK : NK ;
+fun lammikkoviljely_NK : NK ;
+fun lampaanlapahiha_NK : NK ;
+fun lamppuharja_NK : NK ;
+fun lamppuo'ljy_NK : NK ;
+fun lampuotitila_NK : NK ;
+fun lankajuoksu_NK : NK ;
+fun lankakera'_NK : NK ;
+fun lankakori_NK : NK ;
+fun lankalasi_NK : NK ;
+fun lankalaukaisin_NK : NK ;
+fun lankamalli_NK : NK ;
+fun lankanaula_NK : NK ;
+--? fun lankapihdit_NK : NK ;
+fun lankarulla_NK : NK ;
+--? fun lankasakset_NK : NK ;
+fun lankasilmukka_NK : NK ;
+fun lankasuora_NK : NK ;
+fun lankatupsu_NK : NK ;
+fun lankavastus_NK : NK ;
+fun lankavatkain_NK : NK ;
+fun lankavyyhti_NK : NK ;
+fun lankkipoika_NK : NK ;
+fun lankkuaita_NK : NK ;
+fun lankkulattia_NK : NK ;
+fun lankkumaalari_NK : NK ;
+fun lankkupihvi_NK : NK ;
+fun lankomies_NK : NK ;
+fun lankoussuhde_NK : NK ;
+fun lannelaukku_NK : NK ;
+fun lannenikama_NK : NK ;
+fun lannepisto_NK : NK ;
+fun lannevaate_NK : NK ;
+fun lannevanne_NK : NK ;
+fun lannevyo'_NK : NK ;
+fun lannoitusaine_NK : NK ;
+fun lannoituskone_NK : NK ;
+fun lanoliinipitoinen_NK : NK ;
+fun lanoliinisaippua_NK : NK ;
+fun lantakasa_NK : NK ;
+fun lantakouru_NK : NK ;
+fun lantakuoriainen_NK : NK ;
+fun lantalainen_NK : NK ;
+fun lantamulta_NK : NK ;
+fun lantapatteri_NK : NK ;
+fun lantatalikko_NK : NK ;
+fun lantatunkio_NK : NK ;
+fun lantavesi_NK : NK ;
+fun lantavesikaivo_NK : NK ;
+fun lantiomalli_NK : NK ;
+fun lantiopituinen_NK : NK ;
+fun lantiovyo'_NK : NK ;
+fun lanttoka'rkinen_NK : NK ;
+fun lanttopa'inen_NK : NK ;
+fun lanttukukko_NK : NK ;
+fun lanttukuutio_NK : NK ;
+fun lanttulaatikko_NK : NK ;
+fun lanttumaa_NK : NK ;
+fun lantturaaste_NK : NK ;
+fun lapaka'a'nto'_NK : NK ;
+fun lapaluu_NK : NK ;
+fun lapamato_NK : NK ;
+fun laparoskopialeikkaus_NK : NK ;
+--? fun lapetikkaat_NK : NK ;
+fun lappilainen_NK : NK ;
+fun lappuhaalari_NK : NK ;
+fun lapsenhoitotuki_NK : NK ;
+fun lapsialennus_NK : NK ;
+fun lapsihalvaus_NK : NK ;
+fun lapsikaste_NK : NK ;
+fun lapsikatras_NK : NK ;
+fun lapsikauppa_NK : NK ;
+fun lapsikulta_NK : NK ;
+fun lapsikuoro_NK : NK ;
+fun lapsikuvaus_NK : NK ;
+fun lapsilauma_NK : NK ;
+fun lapsilisa'_NK : NK ;
+fun lapsilisa'maksu_NK : NK ;
+fun lapsilukko_NK : NK ;
+fun lapsiluku_NK : NK ;
+fun lapsima'a'ra'_NK : NK ;
+fun lapsina'yttelija'_NK : NK ;
+fun lapsiparka_NK : NK ;
+fun lapsiparkki_NK : NK ;
+fun lapsiperhe_NK : NK ;
+fun lapsipolitiikka_NK : NK ;
+fun lapsiporno_NK : NK ;
+fun lapsiportti_NK : NK ;
+fun lapsipotilas_NK : NK ;
+fun lapsipsykologi_NK : NK ;
+fun lapsipsykologia_NK : NK ;
+fun lapsipuoli_NK : NK ;
+fun lapsirajoitus_NK : NK ;
+fun lapsirakas_NK : NK ;
+fun lapsiraukka_NK : NK ;
+fun lapsirikas_NK : NK ;
+fun lapsirikollinen_NK : NK ;
+fun lapsirukka_NK : NK ;
+fun lapsiteatteri_NK : NK ;
+fun lapsityo'_NK : NK ;
+fun lapsityo'la'inen_NK : NK ;
+fun lapsityo'voima_NK : NK ;
+fun lapsivesi_NK : NK ;
+fun lapsivesitutkimus_NK : NK ;
+fun lapsivuodekuume_NK : NK ;
+fun lapsuusika'_NK : NK ;
+fun lapsuusmuisto_NK : NK ;
+fun lapsuusvuosi_NK : NK ;
+fun lasagnelevy_NK : NK ;
+fun laserase_NK : NK ;
+fun laserhoito_NK : NK ;
+fun laserkirjoitin_NK : NK ;
+fun laserleikkaus_NK : NK ;
+fun lasersa'de_NK : NK ;
+fun lasertekniikka_NK : NK ;
+fun lasertulostin_NK : NK ;
+fun laservalo_NK : NK ;
+fun lasiahven_NK : NK ;
+fun lasiastia_NK : NK ;
+fun lasibatisti_NK : NK ;
+fun lasiesine_NK : NK ;
+fun lasihelmi_NK : NK ;
+fun lasihiomo_NK : NK ;
+fun lasikaappi_NK : NK ;
+fun lasikannu_NK : NK ;
+fun lasikansi_NK : NK ;
+fun lasikantinen_NK : NK ;
+fun lasikarahvi_NK : NK ;
+fun lasikatto_NK : NK ;
+fun lasikeraami_NK : NK ;
+fun lasikuisti_NK : NK ;
+fun lasikuitu_NK : NK ;
+fun lasikuituinen_NK : NK ;
+fun lasikuitumuovi_NK : NK ;
+fun lasikuitumuovinen_NK : NK ;
+fun lasikuituoptiikka_NK : NK ;
+fun lasikuitusauva_NK : NK ;
+fun lasikuituseiva's_NK : NK ;
+fun lasikuitusuksi_NK : NK ;
+fun lasikuitutapetti_NK : NK ;
+fun lasikuituvapa_NK : NK ;
+fun lasikuituvene_NK : NK ;
+fun lasikulho_NK : NK ;
+fun lasikupu_NK : NK ;
+fun lasilevy_NK : NK ;
+fun lasiliike_NK : NK ;
+fun lasimaalaus_NK : NK ;
+fun lasimaalaustaide_NK : NK ;
+fun lasimainen_NK : NK ;
+fun lasimalja_NK : NK ;
+fun lasimaljakko_NK : NK ;
+fun lasimassa_NK : NK ;
+fun lasimestari_NK : NK ;
+fun lasinpuhallusputki_NK : NK ;
+fun lasiosasto_NK : NK ;
+fun lasiovi_NK : NK ;
+fun lasipaperi_NK : NK ;
+fun lasipinta_NK : NK ;
+fun lasipullo_NK : NK ;
+fun lasipurkki_NK : NK ;
+fun lasiputki_NK : NK ;
+fun lasiruutu_NK : NK ;
+fun lasisiipi_NK : NK ;
+fun lasisilma'_NK : NK ;
+fun lasisirpale_NK : NK ;
+fun lasisiru_NK : NK ;
+fun lasitaide_NK : NK ;
+fun lasitaideteos_NK : NK ;
+fun lasitaiteilija_NK : NK ;
+fun lasitehdas_NK : NK ;
+fun lasiteollisuus_NK : NK ;
+fun lasitiili_NK : NK ;
+fun lasitusliike_NK : NK ;
+fun lasito'lkki_NK : NK ;
+fun lasiuuni_NK : NK ;
+fun lasivakuutus_NK : NK ;
+fun lasivati_NK : NK ;
+fun lasiveistos_NK : NK ;
+fun lasiveitsi_NK : NK ;
+fun lasiveranta_NK : NK ;
+fun lasivilla_NK : NK ;
+fun laskentatoimi_NK : NK ;
+fun lasketteluhaalari_NK : NK ;
+fun laskettelukenka'_NK : NK ;
+fun laskettelukeskus_NK : NK ;
+fun laskettelumono_NK : NK ;
+fun laskettelurinne_NK : NK ;
+fun laskettelusuksi_NK : NK ;
+fun lasketteluva'line_NK : NK ;
+fun laskimopunos_NK : NK ;
+fun laskimotukos_NK : NK ;
+fun laskimotulehdus_NK : NK ;
+fun laskimoveri_NK : NK ;
+fun laskoshame_NK : NK ;
+fun laskossauma_NK : NK ;
+fun laskuautomaatti_NK : NK ;
+fun laskuhumala_NK : NK ;
+fun laskukansi_NK : NK ;
+fun laskukausi_NK : NK ;
+fun laskukiito_NK : NK ;
+fun laskukone_NK : NK ;
+fun laskukulma_NK : NK ;
+fun laskukunto_NK : NK ;
+fun laskulomake_NK : NK ;
+fun laskuoppi_NK : NK ;
+fun laskuperuste_NK : NK ;
+fun laskuputki_NK : NK ;
+fun laskupa'a'_NK : NK ;
+fun laskusilta_NK : NK ;
+fun laskusuhdanne_NK : NK ;
+fun laskusuunta_NK : NK ;
+fun laskusa'a'nto'_NK : NK ;
+fun laskutapa_NK : NK ;
+fun laskutehta'va'_NK : NK ;
+fun laskuteline_NK : NK ;
+fun laskutikku_NK : NK ;
+fun laskutila_NK : NK ;
+fun laskutoimitus_NK : NK ;
+fun laskutoimitusmerkki_NK : NK ;
+fun laskutuspa'iva'_NK : NK ;
+fun laskuvarjo_NK : NK ;
+fun laskuvarjohyppy_NK : NK ;
+fun laskuvarjohyppa'a'ja'_NK : NK ;
+fun laskuvarjoja'a'ka'ri_NK : NK ;
+fun laskuvarjourheilija_NK : NK ;
+fun laskuvarjourheilu_NK : NK ;
+fun laskuvesi_NK : NK ;
+fun laskuviivain_NK : NK ;
+fun laskuvirhe_NK : NK ;
+fun lastasidos_NK : NK ;
+fun lastauslaituri_NK : NK ;
+fun lastauspaikka_NK : NK ;
+fun lastentautioppi_NK : NK ;
+fun lastialus_NK : NK ;
+fun lastiproomu_NK : NK ;
+fun lastiruuma_NK : NK ;
+fun lastuaukko_NK : NK ;
+fun lastukori_NK : NK ;
+fun lastulevy_NK : NK ;
+fun lastuvakka_NK : NK ;
+fun lastuvilla_NK : NK ;
+fun latausja'nnite_NK : NK ;
+fun latausvirta_NK : NK ;
+fun lateksimaali_NK : NK ;
+fun latenssivaihe_NK : NK ;
+fun latinainen_NK : NK ;
+fun latinalainen_NK : NK ;
+fun latinisti_NK : NK ;
+fun latinomusiikki_NK : NK ;
+fun latomeri_NK : NK ;
+fun lattajalka_NK : NK ;
+fun lattajalkainen_NK : NK ;
+fun lattiaharja_NK : NK ;
+fun lattiakaivo_NK : NK ;
+fun lattiakanala_NK : NK ;
+fun lattialaatta_NK : NK ;
+fun lattialamppu_NK : NK ;
+fun lattialankku_NK : NK ;
+fun lattialauta_NK : NK ;
+fun lattialuukku_NK : NK ;
+fun lattialuuttu_NK : NK ;
+fun lattiala'mmitys_NK : NK ;
+fun lattiamatto_NK : NK ;
+fun lattianpesuriepu_NK : NK ;
+fun lattianpesura'tti_NK : NK ;
+fun lattiapinta_NK : NK ;
+fun lattiariepu_NK : NK ;
+fun lattiara'tti_NK : NK ;
+fun lattiasieni_NK : NK ;
+fun lattiasuutin_NK : NK ;
+fun lattiataso_NK : NK ;
+fun lattiatila_NK : NK ;
+fun lattiatyyny_NK : NK ;
+fun lattiata'yte_NK : NK ;
+fun lattiavaha_NK : NK ;
+fun lattiavaihde_NK : NK ;
+fun lattiavalaisin_NK : NK ;
+fun lattiavasa_NK : NK ;
+fun latuhiihto_NK : NK ;
+fun latuho'yla'_NK : NK ;
+fun latukartta_NK : NK ;
+fun latukone_NK : NK ;
+fun latupartio_NK : NK ;
+fun latuprofiili_NK : NK ;
+fun laturetki_NK : NK ;
+fun latuskajalka_NK : NK ;
+fun latuskajalkainen_NK : NK ;
+fun latutyyli_NK : NK ;
+fun latvakasvain_NK : NK ;
+fun latvalaho_NK : NK ;
+fun latvamitta_NK : NK ;
+fun latvama'ta'_NK : NK ;
+fun latvaoksa_NK : NK ;
+fun latvavesi_NK : NK ;
+fun latvialainen_NK : NK ;
+fun lauantaiaamu_NK : NK ;
+fun lauantaimakkara_NK : NK ;
+fun lauantaipa'iva'_NK : NK ;
+fun lauantaisauna_NK : NK ;
+fun lauantaisiivous_NK : NK ;
+fun laudaturtentti_NK : NK ;
+fun laudaturtutkielma_NK : NK ;
+fun laudaturtyo'_NK : NK ;
+fun laudeliina_NK : NK ;
+fun lauhdevesi_NK : NK ;
+fun lauhdutusvoimala_NK : NK ;
+fun lauhkealuonteinen_NK : NK ;
+fun laukaisualusta_NK : NK ;
+fun laukaisuikkuna_NK : NK ;
+fun laukaisukoneisto_NK : NK ;
+fun laukaisulaite_NK : NK ;
+fun laukaisuteline_NK : NK ;
+fun laukaisuvalmis_NK : NK ;
+fun laukaussarja_NK : NK ;
+fun laukkahyppy_NK : NK ;
+fun laukkakilpailu_NK : NK ;
+fun laukkaneilikka_NK : NK ;
+fun laukkaurheilu_NK : NK ;
+fun laukkukauppa_NK : NK ;
+fun laukkuliike_NK : NK ;
+fun laukkuryssa'_NK : NK ;
+fun lauluesitys_NK : NK ;
+fun lauluharjoitus_NK : NK ;
+fun lauluilta_NK : NK ;
+fun laulujoutsen_NK : NK ;
+fun laulujuhla_NK : NK ;
+fun laulukaskas_NK : NK ;
+fun laulukilpailu_NK : NK ;
+fun laulukirja_NK : NK ;
+fun laulukonsertti_NK : NK ;
+fun laulukuoro_NK : NK ;
+fun laululava_NK : NK ;
+fun laululeikki_NK : NK ;
+fun laululintu_NK : NK ;
+fun laululyriikka_NK : NK ;
+fun laulumies_NK : NK ;
+fun laulumusiikki_NK : NK ;
+fun lauluna'ytelma'_NK : NK ;
+fun lauluna'ytta'mo'_NK : NK ;
+--? fun lauluopinnot_NK : NK ;
+fun lauluoppilas_NK : NK ;
+fun lauluosa_NK : NK ;
+fun laulurastas_NK : NK ;
+fun laulurunous_NK : NK ;
+fun laulusarja_NK : NK ;
+fun laulusolisti_NK : NK ;
+fun laulusoolo_NK : NK ;
+fun laulusa'vellys_NK : NK ;
+fun laulusa'velma'_NK : NK ;
+fun laulusa'velta'ja'_NK : NK ;
+fun laulutaide_NK : NK ;
+fun laulutaiteilija_NK : NK ;
+fun laulutaito_NK : NK ;
+fun laulutapa_NK : NK ;
+fun laulutervehdys_NK : NK ;
+fun laulutunti_NK : NK ;
+fun lauluta'hti_NK : NK ;
+fun lauluyhtye_NK : NK ;
+fun laulua'a'ni_NK : NK ;
+fun laumaela'in_NK : NK ;
+fun laumahenki_NK : NK ;
+fun laumahenkinen_NK : NK ;
+fun laumaihminen_NK : NK ;
+fun laumasielu_NK : NK ;
+fun laumavaisto_NK : NK ;
+fun lauseopillinen_NK : NK ;
+fun lauseoppi_NK : NK ;
+fun lausepaino_NK : NK ;
+fun lauseparsi_NK : NK ;
+fun lauserakenne_NK : NK ;
+fun lauseyhteys_NK : NK ;
+fun lausuntaesitys_NK : NK ;
+fun lausuntailta_NK : NK ;
+fun lausuntakuoro_NK : NK ;
+fun lausuntamatinea_NK : NK ;
+fun lausuntataide_NK : NK ;
+fun lausuntataiteilija_NK : NK ;
+fun lausuntokierros_NK : NK ;
+fun lausuntopyynto'_NK : NK ;
+fun lautakatto_NK : NK ;
+fun lautakunta_NK : NK ;
+fun lautalaskos_NK : NK ;
+fun lautalattia_NK : NK ;
+fun lautamiehisto'_NK : NK ;
+fun lautamies_NK : NK ;
+fun lautapeli_NK : NK ;
+fun lautapoika_NK : NK ;
+fun lautasliinarengas_NK : NK ;
+fun lautatapuli_NK : NK ;
+fun lautatarha_NK : NK ;
+fun lautaverhous_NK : NK ;
+fun lautavuoraus_NK : NK ;
+fun lauttaja'a'_NK : NK ;
+fun lauttaliikenne_NK : NK ;
+fun lauttasatama_NK : NK ;
+fun lauttasilta_NK : NK ;
+fun lauttava'yla'_NK : NK ;
+fun lauttayhteys_NK : NK ;
+fun lavakomedia_NK : NK ;
+fun lavakoomikko_NK : NK ;
+fun lavakurkku_NK : NK ;
+fun lavantautibakteeri_NK : NK ;
+fun lavantautiepidemia_NK : NK ;
+fun lavantautipotilas_NK : NK ;
+fun lavantautirokotus_NK : NK ;
+fun lavantautitartunta_NK : NK ;
+fun lavashow_NK : NK ;
+fun lavastustaide_NK : NK ;
+fun lavasa'nky_NK : NK ;
+fun lavasa'teily_NK : NK ;
+fun lavatanssi_NK : NK ;
+fun lavaviljely_NK : NK ;
+fun laveasanainen_AK : AK ;
+fun leffateatteri_NK : NK ;
+fun leghornkana_NK : NK ;
+fun legioonalainen_NK : NK ;
+fun lehdisto'attasea_NK : NK ;
+fun lehdisto'avustaja_NK : NK ;
+fun lehdisto'kortti_NK : NK ;
+fun lehdisto'neuvos_NK : NK ;
+fun lehdisto'oppi_NK : NK ;
+fun lehdisto'sihteeri_NK : NK ;
+fun lehdisto'tiedote_NK : NK ;
+fun lehdisto'tilaisuus_NK : NK ;
+fun lehdisto'tuki_NK : NK ;
+fun lehmuskasvi_NK : NK ;
+fun lehmuskuja_NK : NK ;
+fun lehma'kauppa_NK : NK ;
+fun lehma'luku_NK : NK ;
+fun lehma'rotu_NK : NK ;
+fun lehma'vasikka_NK : NK ;
+fun lehtialumiini_NK : NK ;
+fun lehtiarvostelu_NK : NK ;
+fun lehtiasento_NK : NK ;
+fun lehtihanka_NK : NK ;
+fun lehtiharava_NK : NK ;
+fun lehtijousi_NK : NK ;
+fun lehtijousipakka_NK : NK ;
+fun lehtijuurikas_NK : NK ;
+fun lehtikaali_NK : NK ;
+fun lehtikaktus_NK : NK ;
+fun lehtikala_NK : NK ;
+fun lehtikanta_NK : NK ;
+fun lehtikeisari_NK : NK ;
+fun lehtikeli_NK : NK ;
+fun lehtikioski_NK : NK ;
+fun lehtikirjoitus_NK : NK ;
+fun lehtikirva_NK : NK ;
+fun lehtikoju_NK : NK ;
+fun lehtikuitu_NK : NK ;
+fun lehtikulta_NK : NK ;
+fun lehtikuolema_NK : NK ;
+fun lehtikuoriainen_NK : NK ;
+fun lehtikustantamo_NK : NK ;
+fun lehtikuusi_NK : NK ;
+fun lehtikuva_NK : NK ;
+fun lehtikuvaaja_NK : NK ;
+fun lehtilannoitus_NK : NK ;
+fun lehtilapa_NK : NK ;
+fun lehtileike_NK : NK ;
+fun lehtimaja_NK : NK ;
+fun lehtimangoldi_NK : NK ;
+fun lehtimato_NK : NK ;
+fun lehtimetalli_NK : NK ;
+fun lehtimetsa'_NK : NK ;
+fun lehtimetsa'vyo'hyke_NK : NK ;
+fun lehtimies_NK : NK ;
+fun lehtimulta_NK : NK ;
+fun lehtinainen_NK : NK ;
+fun lehtipihvi_NK : NK ;
+fun lehtipistia'inen_NK : NK ;
+fun lehtipolemiikki_NK : NK ;
+fun lehtipuu_NK : NK ;
+fun lehtipuuvaltainen_NK : NK ;
+fun lehtiruoti_NK : NK ;
+fun lehtiruusuke_NK : NK ;
+fun lehtisaha_NK : NK ;
+fun lehtisalaatti_NK : NK ;
+fun lehtisammal_NK : NK ;
+fun lehtisarvinen_NK : NK ;
+fun lehtiselleri_NK : NK ;
+fun lehtiselostus_NK : NK ;
+fun lehtisensuuri_NK : NK ;
+fun lehtisikuri_NK : NK ;
+fun lehtisilmu_NK : NK ;
+fun lehtisuoni_NK : NK ;
+fun lehtitaikina_NK : NK ;
+fun lehtitalo_NK : NK ;
+fun lehtitapa_NK : NK ;
+fun lehtitieto_NK : NK ;
+fun lehtitilaus_NK : NK ;
+fun lehtitina_NK : NK ;
+fun lehtituppi_NK : NK ;
+fun lehtiuutinen_NK : NK ;
+fun lehtivihrea'_NK : NK ;
+fun lehtivihrea'hiukkanen_NK : NK ;
+fun lehtio'taulu_NK : NK ;
+fun lehtoarho_NK : NK ;
+fun lehtokasvi_NK : NK ;
+fun lehtokerttu_NK : NK ;
+fun lehtokorpi_NK : NK ;
+fun lehtokotilo_NK : NK ;
+fun lehtokurppa_NK : NK ;
+fun lehtokuusama_NK : NK ;
+fun lehtolapsi_NK : NK ;
+fun lehtomaa_NK : NK ;
+fun lehtometsa'_NK : NK ;
+fun lehtoniitty_NK : NK ;
+fun lehtonurmikka_NK : NK ;
+fun lehtopo'llo'_NK : NK ;
+fun leijonaha'kki_NK : NK ;
+fun leijonalippu_NK : NK ;
+fun leijonanharjakampaus_NK : NK ;
+fun leijonapaita_NK : NK ;
+fun leijonapaitainen_NK : NK ;
+fun leijonavaakuna_NK : NK ;
+fun leikari_NK : NK ;
+fun leikekirja_NK : NK ;
+fun leikekirjonta_NK : NK ;
+fun leikemakkara_NK : NK ;
+fun leikkausarpi_NK : NK ;
+fun leikkaushoito_NK : NK ;
+fun leikkausjono_NK : NK ;
+fun leikkauskoriste_NK : NK ;
+fun leikkauskulma_NK : NK ;
+fun leikkauspiirustus_NK : NK ;
+fun leikkauspinta_NK : NK ;
+fun leikkauspiste_NK : NK ;
+fun leikkauspotilas_NK : NK ;
+fun leikkauspo'yta'_NK : NK ;
+fun leikkaussali_NK : NK ;
+fun leikkausveitsi_NK : NK ;
+fun leikkausviilto_NK : NK ;
+fun leikkausviiva_NK : NK ;
+fun leikkelehaarukka_NK : NK ;
+fun leikkelelautanen_NK : NK ;
+fun leikkelemakkara_NK : NK ;
+fun leikkelepo'yta'_NK : NK ;
+fun leikkiauto_NK : NK ;
+fun leikkiela'in_NK : NK ;
+fun leikkihuone_NK : NK ;
+fun leikki_ika'_NK : NK ;
+fun leikki_ika'inen_NK : NK ;
+fun leikkijuna_NK : NK ;
+fun leikkikalu_NK : NK ;
+fun leikkikalukauppa_NK : NK ;
+fun leikkikaluteollisuus_NK : NK ;
+fun leikkikaveri_NK : NK ;
+fun leikkikeha'_NK : NK ;
+fun leikkikentta'_NK : NK ;
+fun leikkikoulu_NK : NK ;
+fun leikkilaiva_NK : NK ;
+fun leikkilaulu_NK : NK ;
+fun leikkimieli_NK : NK ;
+fun leikkimo'kki_NK : NK ;
+fun leikkipaikka_NK : NK ;
+fun leikkipeli_NK : NK ;
+fun leikkiperinne_NK : NK ;
+fun leikkipuhe_NK : NK ;
+fun leikkipuisto_NK : NK ;
+fun leikkipyssy_NK : NK ;
+fun leikkisota_NK : NK ;
+fun leikkiterapia_NK : NK ;
+fun leikkitoveri_NK : NK ;
+fun leikkiva'line_NK : NK ;
+fun leikkuuhakkuri_NK : NK ;
+fun leikkuulauta_NK : NK ;
+fun leikkuuleveys_NK : NK ;
+fun leikkuupuimuri_NK : NK ;
+fun leikkuupuinti_NK : NK ;
+fun leikkuupo'yta'_NK : NK ;
+fun leikkuuveitsi_NK : NK ;
+fun leimahduspiste_NK : NK ;
+fun leimainen_NK : NK ;
+fun leimakirves_NK : NK ;
+fun leimallinen_NK : NK ;
+fun leimamerkki_NK : NK ;
+fun leimasintyyny_NK : NK ;
+fun leimasinva'ri_NK : NK ;
+fun leimavero_NK : NK ;
+fun leimikko_NK : NK ;
+fun leimukukka_NK : NK ;
+fun leinikkikasvi_NK : NK ;
+fun leipomo_NK : NK ;
+fun leipomohiiva_NK : NK ;
+fun leipomoliike_NK : NK ;
+fun leipomoteollisuus_NK : NK ;
+fun leipurimestari_NK : NK ;
+fun leipa'jauho_NK : NK ;
+fun leipa'jono_NK : NK ;
+fun leipa'juusto_NK : NK ;
+fun leipa'kone_NK : NK ;
+fun leipa'kori_NK : NK ;
+fun leipa'kuoriainen_NK : NK ;
+fun leipa'kuutio_NK : NK ;
+fun leipa'laatikko_NK : NK ;
+fun leipa'laji_NK : NK ;
+fun leipa'lapio_NK : NK ;
+fun leipa'lauta_NK : NK ;
+fun leipa'lautanen_NK : NK ;
+fun leipa'la'pi_NK : NK ;
+fun leipa'pala_NK : NK ;
+fun leipa'palanen_NK : NK ;
+fun leipa'pappi_NK : NK ;
+fun leipa'puu_NK : NK ;
+fun leipa'ressu_NK : NK ;
+fun leipa'susi_NK : NK ;
+fun leipa'taikina_NK : NK ;
+fun leipa'tehdas_NK : NK ;
+fun leipa'teksti_NK : NK ;
+fun leipa'tyo'_NK : NK ;
+fun leipa'vanukas_NK : NK ;
+fun leipa'varras_NK : NK ;
+fun leipa'vati_NK : NK ;
+fun leipa'veitsi_NK : NK ;
+fun leipa'viipale_NK : NK ;
+fun leipa'vilja_NK : NK ;
+fun leirialue_NK : NK ;
+fun leiriela'ma'_NK : NK ;
+fun leirikeskus_NK : NK ;
+fun leirikoulu_NK : NK ;
+fun leirinta'alue_NK : NK ;
+fun leirinta'matkailu_NK : NK ;
+fun leirinuotio_NK : NK ;
+fun leiripaikka_NK : NK ;
+fun leirisauna_NK : NK ;
+fun leirituli_NK : NK ;
+fun leivoskahvi_NK : NK ;
+fun leivoslapio_NK : NK ;
+fun leivosvuoka_NK : NK ;
+fun lekkeripeli_NK : NK ;
+fun lellikkipoika_NK : NK ;
+fun lellipoika_NK : NK ;
+fun lelukauppa_NK : NK ;
+fun leluosasto_NK : NK ;
+fun leluteollisuus_NK : NK ;
+fun lemmikkiela'in_NK : NK ;
+fun lemmikkikasvi_NK : NK ;
+fun lempea'luonteinen_NK : NK ;
+fun lempiharrastus_NK : NK ;
+fun lempijuoma_NK : NK ;
+fun lempikirja_NK : NK ;
+fun lempikirjailija_NK : NK ;
+fun lempilaji_NK : NK ;
+fun lempilapsi_NK : NK ;
+fun lempinimi_NK : NK ;
+fun lempipaikka_NK : NK ;
+fun lempipuuha_NK : NK ;
+fun lempiruoka_NK : NK ;
+fun lempisa'velma'_NK : NK ;
+fun lempityo'_NK : NK ;
+fun lempiva'ri_NK : NK ;
+fun leninkikangas_NK : NK ;
+fun leninkiliike_NK : NK ;
+fun lenkkeilyasu_NK : NK ;
+fun lenkkeilyjalkine_NK : NK ;
+fun lenkkeilymaasto_NK : NK ;
+fun lenkkeilypolku_NK : NK ;
+fun lenkkiavain_NK : NK ;
+fun lenkkikenka'_NK : NK ;
+fun lenkkimakkara_NK : NK ;
+fun lenkkipolku_NK : NK ;
+fun lenkkipuku_NK : NK ;
+fun lenkkitossu_NK : NK ;
+fun lenkosa'a'ri_NK : NK ;
+fun lenkosa'a'rinen_NK : NK ;
+fun lenninra'pyla'_NK : NK ;
+fun lenninsiipi_NK : NK ;
+fun lennokkiliima_NK : NK ;
+fun lennonjohtotorni_NK : NK ;
+fun lennonjohtotutka_NK : NK ;
+fun lennonvarmistuskeskus_NK : NK ;
+fun lentoambulanssi_NK : NK ;
+fun lentoase_NK : NK ;
+fun lentoasema_NK : NK ;
+fun lentobensiini_NK : NK ;
+fun lentoemo_NK : NK ;
+fun lentoema'nta'_NK : NK ;
+fun lentohenkilo'sto'_NK : NK ;
+fun lentohiekka_NK : NK ;
+fun lentohyo'kka'ys_NK : NK ;
+fun lentokala_NK : NK ;
+fun lentokalusto_NK : NK ;
+fun lentokansi_NK : NK ;
+fun lentokapteeni_NK : NK ;
+fun lentokeli_NK : NK ;
+fun lentokentta'_NK : NK ;
+fun lentokentta'vero_NK : NK ;
+fun lentokirje_NK : NK ;
+fun lentokone_NK : NK ;
+fun lentokonealumiini_NK : NK ;
+fun lentokonehalli_NK : NK ;
+fun lentokoneinsino'o'ri_NK : NK ;
+fun lentokonekaappaaja_NK : NK ;
+fun lentokonekaappari_NK : NK ;
+fun lentokonekaappaus_NK : NK ;
+fun lentokonemekaanikko_NK : NK ;
+fun lentokonemoottori_NK : NK ;
+fun lentokonetehdas_NK : NK ;
+fun lentokonetekniikka_NK : NK ;
+fun lentokonevaneri_NK : NK ;
+fun lentokorkeus_NK : NK ;
+fun lentokoulutus_NK : NK ;
+fun lentokuljetus_NK : NK ;
+fun lentokuva_NK : NK ;
+fun lentokyky_NK : NK ;
+fun lentokykyinen_NK : NK ;
+fun lentokyvyto'n_NK : NK ;
+fun lentolaivue_NK : NK ;
+fun lentolannoitus_NK : NK ;
+fun lentolaskenta_NK : NK ;
+fun lentolaukku_NK : NK ;
+fun lentolehtinen_NK : NK ;
+fun lentolevitys_NK : NK ;
+fun lentoliikenne_NK : NK ;
+fun lentolinja_NK : NK ;
+fun lentolippu_NK : NK ;
+fun lentolisko_NK : NK ;
+fun lentolyo'nti_NK : NK ;
+fun lentomajakka_NK : NK ;
+fun lentomatka_NK : NK ;
+fun lentomatkustaja_NK : NK ;
+fun lentomekaanikko_NK : NK ;
+fun lentomelu_NK : NK ;
+fun lentomyrkytys_NK : NK ;
+fun lentoma'ki_NK : NK ;
+fun lentonoki_NK : NK ;
+fun lentonopeus_NK : NK ;
+fun lentona'yto's_NK : NK ;
+fun lentopallo_NK : NK ;
+fun lentopalloilija_NK : NK ;
+fun lentopalloilu_NK : NK ;
+fun lentopallojoukkue_NK : NK ;
+fun lentopelastus_NK : NK ;
+fun lentopelko_NK : NK ;
+fun lentopetroli_NK : NK ;
+fun lentopommi_NK : NK ;
+fun lentoposti_NK : NK ;
+fun lentorahti_NK : NK ;
+fun lentorata_NK : NK ;
+fun lentoreitti_NK : NK ;
+fun lentoruiskutus_NK : NK ;
+fun lentosatama_NK : NK ;
+fun lentosuukko_NK : NK ;
+fun lentosuunnistus_NK : NK ;
+fun lentosuunta_NK : NK ;
+fun lentosa'a'_NK : NK ;
+fun lentosa'a'palvelu_NK : NK ;
+fun lentotaito_NK : NK ;
+fun lentotaitoinen_NK : NK ;
+fun lentotaksi_NK : NK ;
+fun lentotekniikka_NK : NK ;
+fun lentotekninen_NK : NK ;
+fun lentoterminaali_NK : NK ;
+fun lentotiedustelu_NK : NK ;
+fun lentotoiminta_NK : NK ;
+fun lentotoimisto_NK : NK ;
+fun lentotukikohta_NK : NK ;
+fun lentotunti_NK : NK ;
+fun lentoturma_NK : NK ;
+fun lentourheilu_NK : NK ;
+fun lentovakuutus_NK : NK ;
+fun lentovaneri_NK : NK ;
+fun lentovene_NK : NK ;
+fun lentovuoro_NK : NK ;
+fun lentova'yla'_NK : NK ;
+fun lentoyhteys_NK : NK ;
+fun lentoyhtio'_NK : NK ;
+fun lepakkotuoli_NK : NK ;
+fun lepoasento_NK : NK ;
+fun lepoaste_NK : NK ;
+fun lepokausi_NK : NK ;
+fun lepokitka_NK : NK ;
+fun lepokoti_NK : NK ;
+fun lepolesti_NK : NK ;
+fun lepopaikka_NK : NK ;
+fun lepopa'iva'_NK : NK ;
+fun leposija_NK : NK ;
+fun leposa'vel_NK : NK ;
+fun lepotauko_NK : NK ;
+fun lepotila_NK : NK ;
+fun lepotuoli_NK : NK ;
+fun lepovirta_NK : NK ;
+fun lepovuoro_NK : NK ;
+fun leppa'halko_NK : NK ;
+fun leppa'keiha's_NK : NK ;
+fun leppa'kerttu_NK : NK ;
+fun leppa'lintu_NK : NK ;
+fun leppa'pensas_NK : NK ;
+fun lepytysuhri_NK : NK ;
+fun lesbolainen_NK : NK ;
+fun lesboliitto_NK : NK ;
+fun lesbopari_NK : NK ;
+fun lesemuro_NK : NK ;
+fun leskikuningatar_NK : NK ;
+fun leskimies_NK : NK ;
+fun leskirouva_NK : NK ;
+fun leskia'iti_NK : NK ;
+fun letkajenkka_NK : NK ;
+fun letkuruokinta_NK : NK ;
+fun lettinauha_NK : NK ;
+fun lettipa'inen_NK : NK ;
+fun lettipa'a'_NK : NK ;
+fun lettokorpi_NK : NK ;
+fun lettupannu_NK : NK ;
+fun lettutaikina_NK : NK ;
+fun leukahihna_NK : NK ;
+fun leukakuoppa_NK : NK ;
+fun leukalappu_NK : NK ;
+fun leukalukko_NK : NK ;
+fun leukaluu_NK : NK ;
+fun leukanivel_NK : NK ;
+fun leukaparta_NK : NK ;
+fun leukapieli_NK : NK ;
+fun leukarihma_NK : NK ;
+fun leveysaste_NK : NK ;
+fun leveyspiiri_NK : NK ;
+fun leveyssuunta_NK : NK ;
+fun levea'harteinen_NK : NK ;
+fun levea'hartiainen_NK : NK ;
+fun levea'lahkeinen_NK : NK ;
+fun levea'lanteinen_NK : NK ;
+fun levea'lierinen_NK : NK ;
+fun levea'raitainen_NK : NK ;
+fun levea'tera'inen_NK : NK ;
+fun levikkialue_NK : NK ;
+fun levyalbumi_NK : NK ;
+fun levyasema_NK : NK ;
+fun levyautomaatti_NK : NK ;
+fun levyjarru_NK : NK ;
+fun levyjuontaja_NK : NK ;
+fun levykansio_NK : NK ;
+fun levykauppa_NK : NK ;
+fun levykeasema_NK : NK ;
+fun levylautanen_NK : NK ;
+fun levymuisti_NK : NK ;
+fun levymusiikki_NK : NK ;
+fun levypallo_NK : NK ;
+fun levypyo'ra'_NK : NK ;
+--? fun levysakset_NK : NK ;
+fun levyseppa'_NK : NK ;
+fun levysoitin_NK : NK ;
+fun levytanko_NK : NK ;
+fun levytulkki_NK : NK ;
+fun levytuottaja_NK : NK ;
+fun levyuutuus_NK : NK ;
+fun leva'hdysalue_NK : NK ;
+fun leva'hdyspaikka_NK : NK ;
+fun leva'pera'inen_AK : AK ;
+fun leva'pera'isyys_NK : NK ;
+fun leva'sieni_NK : NK ;
+fun liedkonsertti_NK : NK ;
+fun liedlaulaja_NK : NK ;
+fun liejukana_NK : NK ;
+fun liejukerrostuma_NK : NK ;
+fun liejupohja_NK : NK ;
+fun liejupohjainen_NK : NK ;
+fun liejusavi_NK : NK ;
+fun liekkimeri_NK : NK ;
+fun liekkisulatus_NK : NK ;
+fun liekkiviina_NK : NK ;
+fun liekokasvi_NK : NK ;
+fun liekosammal_NK : NK ;
+fun liemijuures_NK : NK ;
+fun liemikauha_NK : NK ;
+fun liemikulho_NK : NK ;
+fun liemikuppi_NK : NK ;
+fun liemikuutio_NK : NK ;
+fun liemilautanen_NK : NK ;
+fun liemilusikka_NK : NK ;
+fun liemiruoka_NK : NK ;
+fun liemitiiviste_NK : NK ;
+fun liennytyspolitiikka_NK : NK ;
+fun lierihattu_NK : NK ;
+fun lierikko_NK : NK ;
+fun lierio'pinta_NK : NK ;
+fun lierio'projektio_NK : NK ;
+fun liesikello_NK : NK ;
+fun liesikupu_NK : NK ;
+fun liesitaso_NK : NK ;
+fun liesituuletin_NK : NK ;
+fun lieskauuni_NK : NK ;
+fun lietekerros_NK : NK ;
+fun lietekerrostuma_NK : NK ;
+fun lietekomposti_NK : NK ;
+fun lietelanta_NK : NK ;
+fun lietelantala_NK : NK ;
+fun lietemaa_NK : NK ;
+fun lieterappaus_NK : NK ;
+fun liettualainen_NK : NK ;
+fun lievealue_NK : NK ;
+fun lieveilmio'_NK : NK ;
+fun lihaeines_NK : NK ;
+fun lihahyytelo'_NK : NK ;
+fun lihajaloste_NK : NK ;
+fun lihajauho_NK : NK ;
+fun lihakarja_NK : NK ;
+fun lihakauppa_NK : NK ;
+fun lihakeitto_NK : NK ;
+fun lihakirves_NK : NK ;
+fun lihakuutio_NK : NK ;
+fun lihaka'rpa'nen_NK : NK ;
+fun lihaka'a'ryle_NK : NK ;
+fun lihalehma'_NK : NK ;
+fun lihaliemi_NK : NK ;
+fun lihaliemikuutio_NK : NK ;
+fun lihamehu_NK : NK ;
+fun lihamestari_NK : NK ;
+fun lihamittari_NK : NK ;
+fun lihamuhennos_NK : NK ;
+fun lihamureke_NK : NK ;
+fun lihamylly_NK : NK ;
+fun lihamyyma'la'_NK : NK ;
+fun lihaneste_NK : NK ;
+fun lihansyo'ja'kasvi_NK : NK ;
+fun lihanuija_NK : NK ;
+fun lihaosasto_NK : NK ;
+fun lihapala_NK : NK ;
+fun lihapalanen_NK : NK ;
+fun lihapasteija_NK : NK ;
+fun lihapata_NK : NK ;
+fun lihapiikki_NK : NK ;
+fun lihapiirakka_NK : NK ;
+fun lihapulla_NK : NK ;
+fun lihapuoli_NK : NK ;
+fun lihapyo'rykka'_NK : NK ;
+fun liharotu_NK : NK ;
+fun lihasaisti_NK : NK ;
+fun lihasheikkous_NK : NK ;
+fun lihasika_NK : NK ;
+fun lihasja'nnitys_NK : NK ;
+fun lihasja'ykkyys_NK : NK ;
+fun lihaskasvain_NK : NK ;
+fun lihaskimppu_NK : NK ;
+fun lihaskipu_NK : NK ;
+fun lihaskouristus_NK : NK ;
+fun lihaskramppi_NK : NK ;
+fun lihaskudos_NK : NK ;
+fun lihasmaha_NK : NK ;
+fun lihasoppa_NK : NK ;
+fun lihasponnistus_NK : NK ;
+fun lihasrappeuma_NK : NK ;
+fun lihasrasitus_NK : NK ;
+fun lihasreuma_NK : NK ;
+fun lihasreva'htyma'_NK : NK ;
+fun lihassolu_NK : NK ;
+fun lihassupistus_NK : NK ;
+fun lihassurkastuma_NK : NK ;
+fun lihassyy_NK : NK ;
+fun lihassa'rky_NK : NK ;
+fun lihasvamma_NK : NK ;
+fun lihasvoima_NK : NK ;
+fun lihasa'ilyke_NK : NK ;
+fun lihatikku_NK : NK ;
+fun lihatiski_NK : NK ;
+fun lihatuote_NK : NK ;
+fun lihavalmiste_NK : NK ;
+fun lihaveitsi_NK : NK ;
+fun lihaviipale_NK : NK ;
+fun lihavointi_NK : NK ;
+fun lihotuskuuri_NK : NK ;
+fun liigajoukkue_NK : NK ;
+fun liigaottelu_NK : NK ;
+fun liikaedustus_NK : NK ;
+fun liikahakkuu_NK : NK ;
+fun liikahappoisuus_NK : NK ;
+fun liikaherkkyys_NK : NK ;
+fun liikaherkka'_NK : NK ;
+fun liikaja'nnitys_NK : NK ;
+fun liikakasvu_NK : NK ;
+fun liikakuormitus_NK : NK ;
+fun liikakysynta'_NK : NK ;
+fun liikaka'ytto'_NK : NK ;
+fun liikalihava_NK : NK ;
+fun liikalihavuus_NK : NK ;
+fun liikama'a'ra'_NK : NK ;
+fun liikanainen_NK : NK ;
+fun liikanimi_NK : NK ;
+fun liikapaine_NK : NK ;
+fun liikapaino_NK : NK ;
+fun liikapainoinen_NK : NK ;
+fun liikapyynti_NK : NK ;
+fun liikarasitus_NK : NK ;
+fun liikasanaisuus_NK : NK ;
+fun liikatarjonta_NK : NK ;
+fun liikatoiminta_NK : NK ;
+fun liikatuotanto_NK : NK ;
+fun liikavarvas_NK : NK ;
+fun liikeaisti_NK : NK ;
+fun liikeapulainen_NK : NK ;
+fun liikeasia_NK : NK ;
+fun liikehoito_NK : NK ;
+fun liikehuoneisto_NK : NK ;
+fun liikeidea_NK : NK ;
+fun liikekannallepano_NK : NK ;
+fun liikekatu_NK : NK ;
+fun liikekeskus_NK : NK ;
+fun liikeketju_NK : NK ;
+fun liikekiinteisto'_NK : NK ;
+fun liikekilpi_NK : NK ;
+fun liikekirje_NK : NK ;
+fun liikekitka_NK : NK ;
+fun liikekumppani_NK : NK ;
+fun liikelahja_NK : NK ;
+fun liikelaitos_NK : NK ;
+fun liikelaskenta_NK : NK ;
+fun liikemaailma_NK : NK ;
+fun liikematka_NK : NK ;
+fun liikematkustaja_NK : NK ;
+fun liikemerkki_NK : NK ;
+fun liikemies_NK : NK ;
+fun liikemiesluokka_NK : NK ;
+fun liikenainen_NK : NK ;
+fun liikeneuvottelu_NK : NK ;
+fun liikenimi_NK : NK ;
+fun liikenneha'irio'_NK : NK ;
+fun liikenneilmailu_NK : NK ;
+fun liikenneinsino'o'ri_NK : NK ;
+fun liikennejuopumus_NK : NK ;
+fun liikenneja'rjestely_NK : NK ;
+fun liikennekaaos_NK : NK ;
+fun liikennekasvatus_NK : NK ;
+fun liikennekaupunki_NK : NK ;
+fun liikennekelpoinen_NK : NK ;
+fun liikennekone_NK : NK ;
+fun liikennekoulu_NK : NK ;
+fun liikennekulttuuri_NK : NK ;
+fun liikennekuntoinen_NK : NK ;
+fun liikennekuolema_NK : NK ;
+fun liikennelaitos_NK : NK ;
+fun liikennelaskenta_NK : NK ;
+fun liikennelento_NK : NK ;
+fun liikennelentokone_NK : NK ;
+fun liikennelenta'ja'_NK : NK ;
+fun liikennelupa_NK : NK ;
+fun liikennemaksu_NK : NK ;
+fun liikennemelu_NK : NK ;
+fun liikennemerkki_NK : NK ;
+fun liikenneministeri_NK : NK ;
+fun liikenneministerio'_NK : NK ;
+fun liikenneneuvos_NK : NK ;
+fun liikenneopettaja_NK : NK ;
+fun liikenneopetus_NK : NK ;
+fun liikennepaikka_NK : NK ;
+fun liikennepako_NK : NK ;
+fun liikennepeili_NK : NK ;
+fun liikennepoliisi_NK : NK ;
+fun liikennepolitiikka_NK : NK ;
+fun liikennepuisto_NK : NK ;
+fun liikenneratsia_NK : NK ;
+fun liikennerikkomus_NK : NK ;
+fun liikennerikos_NK : NK ;
+fun liikenneruuhka_NK : NK ;
+fun liikennesaareke_NK : NK ;
+fun liikennesa'a'nto'_NK : NK ;
+fun liikennetekniikka_NK : NK ;
+fun liikennetiheys_NK : NK ;
+fun liikennetukos_NK : NK ;
+fun liikenneturma_NK : NK ;
+fun liikennetutka_NK : NK ;
+fun liikennevahinko_NK : NK ;
+fun liikennevakuutus_NK : NK ;
+fun liikennevalistus_NK : NK ;
+fun liikennevalo_NK : NK ;
+fun liikennevirta_NK : NK ;
+fun liikenneva'line_NK : NK ;
+fun liikenneva'yla'_NK : NK ;
+fun liikenneyhteys_NK : NK ;
+fun liikenneympyra'_NK : NK ;
+fun liikeoppi_NK : NK ;
+fun liikepaikka_NK : NK ;
+fun liikepankki_NK : NK ;
+fun liikerakennus_NK : NK ;
+fun liikerata_NK : NK ;
+fun liikeriski_NK : NK ;
+fun liikesalaisuus_NK : NK ;
+fun liikesarja_NK : NK ;
+fun liikesuhde_NK : NK ;
+fun liikesuunta_NK : NK ;
+fun liiketalo_NK : NK ;
+fun liiketalous_NK : NK ;
+fun liiketaloustiede_NK : NK ;
+fun liiketapa_NK : NK ;
+fun liiketapahtuma_NK : NK ;
+fun liiketappio_NK : NK ;
+fun liiketerapia_NK : NK ;
+fun liiketila_NK : NK ;
+fun liiketoimi_NK : NK ;
+fun liiketoiminta_NK : NK ;
+fun liiketulos_NK : NK ;
+fun liiketunnus_NK : NK ;
+fun liiketuttava_NK : NK ;
+fun liiketuttavuus_NK : NK ;
+fun liikevaihto_NK : NK ;
+fun liikevaihtovero_NK : NK ;
+fun liikevoitto_NK : NK ;
+fun liikeyritys_NK : NK ;
+fun liikkeellelasku_NK : NK ;
+fun liikkeellela'hto'_NK : NK ;
+fun liikkeella'olo_NK : NK ;
+fun liikkeessa'olo_NK : NK ;
+fun liikuntaelin_NK : NK ;
+fun liikuntaeste_NK : NK ;
+fun liikuntaesteinen_NK : NK ;
+fun liikuntaharrastus_NK : NK ;
+fun liikuntahoito_NK : NK ;
+fun liikuntakasvatus_NK : NK ;
+fun liikuntakyky_NK : NK ;
+fun liikuntakykyinen_NK : NK ;
+fun liikuntakyvyto'n_NK : NK ;
+fun liikuntaleikki_NK : NK ;
+fun liikuntasauma_NK : NK ;
+fun liikuntasota_NK : NK ;
+fun liikuntaterapia_NK : NK ;
+fun liikuntatiede_NK : NK ;
+fun liikuntatunti_NK : NK ;
+fun liikuntavamma_NK : NK ;
+fun liikuntavammainen_NK : NK ;
+fun liimakangas_NK : NK ;
+fun liimakorva_NK : NK ;
+fun liimakyna'_NK : NK ;
+fun liimaliitos_NK : NK ;
+fun liimamaali_NK : NK ;
+fun liimapaperi_NK : NK ;
+fun liimapinta_NK : NK ;
+fun liimapintainen_NK : NK ;
+fun liimapuikko_NK : NK ;
+fun liimapullo_NK : NK ;
+fun liimapurkki_NK : NK ;
+fun liimapuu_NK : NK ;
+fun liimapuupalkki_NK : NK ;
+fun liimasivellin_NK : NK ;
+fun liimatahra_NK : NK ;
+fun liimataitto_NK : NK ;
+fun liimauspuristin_NK : NK ;
+fun liinaharja_NK : NK ;
+fun liinaharjainen_NK : NK ;
+fun liinatukka_NK : NK ;
+fun liinatukkainen_NK : NK ;
+fun liisaussopimus_NK : NK ;
+fun liisausyhtio'_NK : NK ;
+fun liitepartikkeli_NK : NK ;
+fun liitokala_NK : NK ;
+fun liitokiekko_NK : NK ;
+fun liitokone_NK : NK ;
+fun liitolento_NK : NK ;
+fun liitosalue_NK : NK ;
+fun liitosjohto_NK : NK ;
+fun liitoskappale_NK : NK ;
+fun liitossauma_NK : NK ;
+fun liitostappi_NK : NK ;
+fun liitovarjo_NK : NK ;
+fun liittohallitus_NK : NK ;
+fun liittokansleri_NK : NK ;
+fun liittokohtainen_NK : NK ;
+fun liittokokous_NK : NK ;
+fun liittolainen_NK : NK ;
+fun liittomuoto_NK : NK ;
+fun liittoneuvosto_NK : NK ;
+fun liittotempus_NK : NK ;
+fun liittovaltio_NK : NK ;
+fun liittovaltuusto_NK : NK ;
+fun liitujauhe_NK : NK ;
+fun liitukausi_NK : NK ;
+fun liitukautinen_NK : NK ;
+fun liituraita_NK : NK ;
+fun liituraitainen_NK : NK ;
+fun liituraitapuku_NK : NK ;
+fun liitynta'liikenne_NK : NK ;
+fun liita'nta'johto_NK : NK ;
+fun liivatejauhe_NK : NK ;
+fun liivatelehti_NK : NK ;
+fun liivihame_NK : NK ;
+fun liivipuku_NK : NK ;
+fun likakaivo_NK : NK ;
+fun likakerros_NK : NK ;
+fun likapilkku_NK : NK ;
+fun likapyykki_NK : NK ;
+fun likapyykkikori_NK : NK ;
+fun likasanko_NK : NK ;
+fun likavesi_NK : NK ;
+fun likaviema'ri_NK : NK ;
+fun likaa'mpa'ri_NK : NK ;
+fun likiarvo_NK : NK ;
+fun likilaskuinen_NK : NK ;
+fun likima'a'ra'inen_NK : NK ;
+fun likina'ko'inen_NK : NK ;
+fun likina'ko'isyys_NK : NK ;
+fun likitaitteinen_NK : NK ;
+fun likitaittoinen_NK : NK ;
+fun liko'o'rikonvehti_NK : NK ;
+fun liko'o'rilasi_NK : NK ;
+fun liljakasvi_NK : NK ;
+fun limaerite_NK : NK ;
+fun limakalvo_NK : NK ;
+fun limanuljaska_NK : NK ;
+fun limapussi_NK : NK ;
+fun limarauhanen_NK : NK ;
+fun limasieni_NK : NK ;
+fun limaskakasvi_NK : NK ;
+fun lingvistijuristi_NK : NK ;
+fun linja_autoasema_NK : NK ;
+fun linja_autoliikenne_NK : NK ;
+fun linja_autopysa'kki_NK : NK ;
+fun linja_autovuoro_NK : NK ;
+fun linjajako_NK : NK ;
+fun linjakilpi_NK : NK ;
+fun linjalanka_NK : NK ;
+fun linjaliikenne_NK : NK ;
+fun linjaloisto_NK : NK ;
+fun linjaluotsi_NK : NK ;
+fun linjamerkki_NK : NK ;
+--? fun linjapihdit_NK : NK ;
+fun linjapuhe_NK : NK ;
+fun linjapuolustus_NK : NK ;
+fun linjariita_NK : NK ;
+fun linjataksi_NK : NK ;
+fun linjatuomari_NK : NK ;
+fun linjavika_NK : NK ;
+fun linkkimies_NK : NK ;
+fun linkkitorni_NK : NK ;
+fun linkkiyhteys_NK : NK ;
+fun linkkuveitsi_NK : NK ;
+fun linnala'a'ni_NK : NK ;
+fun linnarauha_NK : NK ;
+fun linnareissu_NK : NK ;
+fun linnavuori_NK : NK ;
+fun linnoituslaite_NK : NK ;
+fun linoleikkaus_NK : NK ;
+fun linoleumilattia_NK : NK ;
+fun linoleumileikkaus_NK : NK ;
+fun linoleumipainanta_NK : NK ;
+fun linoleumipiirros_NK : NK ;
+fun linolihappo_NK : NK ;
+fun linotyyppi_NK : NK ;
+fun linssikeitto_NK : NK ;
+fun linssilude_NK : NK ;
+fun lintuasema_NK : NK ;
+fun lintuemo_NK : NK ;
+fun lintuharrastaja_NK : NK ;
+fun lintuha'kki_NK : NK ;
+fun lintuha'ma'ha'kki_NK : NK ;
+fun lintuja'rvi_NK : NK ;
+fun lintukanta_NK : NK ;
+fun lintukoira_NK : NK ;
+fun lintukosteikko_NK : NK ;
+fun lintukoto_NK : NK ;
+fun lintulahti_NK : NK ;
+fun lintulaji_NK : NK ;
+fun lintulammikko_NK : NK ;
+fun lintulauta_NK : NK ;
+fun lintuluoto_NK : NK ;
+fun lintupaisti_NK : NK ;
+fun linturetki_NK : NK ;
+fun linturuoka_NK : NK ;
+--? fun lintusakset_NK : NK ;
+fun lintutiede_NK : NK ;
+fun lintutieteilija'_NK : NK ;
+fun lintutorni_NK : NK ;
+fun lintuvuori_NK : NK ;
+fun liotusaine_NK : NK ;
+fun lipeva'kielinen_NK : NK ;
+fun lipea'kala_NK : NK ;
+fun lipea'kivi_NK : NK ;
+fun lipea'myrkytys_NK : NK ;
+fun lippalakki_NK : NK ;
+fun lippauistin_NK : NK ;
+fun lippuautomaatti_NK : NK ;
+fun lippueamiraali_NK : NK ;
+fun lippukunta_NK : NK ;
+fun lippulaiva_NK : NK ;
+fun lippulinna_NK : NK ;
+fun lippuluukku_NK : NK ;
+fun lippumyyma'la'_NK : NK ;
+fun lippusaattue_NK : NK ;
+fun lippusalko_NK : NK ;
+fun lippusiima_NK : NK ;
+fun lippusolmu_NK : NK ;
+fun lipputanko_NK : NK ;
+fun lipputervehdys_NK : NK ;
+fun lipputilaus_NK : NK ;
+fun lippuvala_NK : NK ;
+fun lippuvartio_NK : NK ;
+fun lippua'a'nestys_NK : NK ;
+fun liputuspa'iva'_NK : NK ;
+fun lisenssimaksu_NK : NK ;
+fun lisenssipakko_NK : NK ;
+fun lisenssisopimus_NK : NK ;
+fun liskolintu_NK : NK ;
+fun listahinta_NK : NK ;
+fun listahitti_NK : NK ;
+fun listakehys_NK : NK ;
+fun listakera'ys_NK : NK ;
+fun listavaali_NK : NK ;
+fun listaykko'nen_NK : NK ;
+fun lisa'aine_NK : NK ;
+fun lisa'ansio_NK : NK ;
+fun lisa'arvo_NK : NK ;
+fun lisa'budjetti_NK : NK ;
+fun lisa'ehto_NK : NK ;
+fun lisa'etu_NK : NK ;
+fun lisa'hinta_NK : NK ;
+fun lisa'istuin_NK : NK ;
+fun lisa'juna_NK : NK ;
+fun lisa'kives_NK : NK ;
+fun lisa'kokemus_NK : NK ;
+fun lisa'kustannus_NK : NK ;
+fun lisa'laite_NK : NK ;
+fun lisa'lehti_NK : NK ;
+fun lisa'lyo'nti_NK : NK ;
+fun lisa'maksu_NK : NK ;
+fun lisa'meno_NK : NK ;
+fun lisa'menoarvio_NK : NK ;
+fun lisa'munuainen_NK : NK ;
+fun lisa'nimi_NK : NK ;
+fun lisa'rakennus_NK : NK ;
+fun lisa'ravinto_NK : NK ;
+fun lisa'selvitys_NK : NK ;
+fun lisa'tieto_NK : NK ;
+fun lisa'tila_NK : NK ;
+fun lisa'todiste_NK : NK ;
+fun lisa'tulo_NK : NK ;
+fun lisa'tyo'_NK : NK ;
+fun lisa'vakuutus_NK : NK ;
+fun lisa'varuste_NK : NK ;
+fun lisa'vauhti_NK : NK ;
+fun lisa'vero_NK : NK ;
+fun lisa'voima_NK : NK ;
+fun lisa'va'ri_NK : NK ;
+fun litima'rka'_NK : NK ;
+fun litosfa'a'ri_NK : NK ;
+fun litrahinta_NK : NK ;
+fun litsiliitos_NK : NK ;
+fun litsiluumu_NK : NK ;
+fun littea'rintainen_NK : NK ;
+fun littea'ruumiinen_NK : NK ;
+fun litulaukka_NK : NK ;
+fun lituruoho_NK : NK ;
+fun liukaskielinen_NK : NK ;
+fun liukasliikkeinen_NK : NK ;
+fun liukaspintainen_NK : NK ;
+fun liukastusaine_NK : NK ;
+fun liukualusta_NK : NK ;
+fun liukueste_NK : NK ;
+fun liukuesterengas_NK : NK ;
+fun liukuhihna_NK : NK ;
+fun liukuhihnatyo'_NK : NK ;
+fun liukuhylly_NK : NK ;
+fun liukuhyllysto'_NK : NK ;
+fun liukuikkuna_NK : NK ;
+fun liukukisko_NK : NK ;
+fun liukukitka_NK : NK ;
+fun liukukosketin_NK : NK ;
+fun liukuka'yta'va'_NK : NK ;
+fun liukulaakeri_NK : NK ;
+fun liukulento_NK : NK ;
+fun liukumapinta_NK : NK ;
+fun liukumiina_NK : NK ;
+fun liukumuotti_NK : NK ;
+fun liukuma'ki_NK : NK ;
+fun liukuobjektiivi_NK : NK ;
+fun liukuovi_NK : NK ;
+fun liukupinta_NK : NK ;
+fun liukurata_NK : NK ;
+fun liukusa'a'din_NK : NK ;
+fun liukuteksti_NK : NK ;
+fun liukutyo'_NK : NK ;
+fun liukuvalu_NK : NK ;
+fun liukuvalumuotti_NK : NK ;
+fun liukuvene_NK : NK ;
+fun liuotusaine_NK : NK ;
+fun liuotushoito_NK : NK ;
+fun liuotusneste_NK : NK ;
+fun liuskalehtinen_NK : NK ;
+fun livekala_NK : NK ;
+fun lobbybaari_NK : NK ;
+fun lodentakki_NK : NK ;
+fun logaritmitaulu_NK : NK ;
+fun logaritmitaulukko_NK : NK ;
+fun logotyyppi_NK : NK ;
+fun lohdutusmaali_NK : NK ;
+fun lohdutuspalkinto_NK : NK ;
+fun lohiallas_NK : NK ;
+fun lohikala_NK : NK ;
+fun lohikeitto_NK : NK ;
+fun lohikiusaus_NK : NK ;
+fun lohika'a'rme_NK : NK ;
+fun lohika'a'rmepuu_NK : NK ;
+fun lohilaatikko_NK : NK ;
+fun lohilammikko_NK : NK ;
+fun lohimedaljonki_NK : NK ;
+fun lohionki_NK : NK ;
+fun lohipato_NK : NK ;
+fun lohiperho_NK : NK ;
+fun lohipiirakka_NK : NK ;
+fun lohiporras_NK : NK ;
+fun lohirysa'_NK : NK ;
+fun lohisieni_NK : NK ;
+fun lohisiima_NK : NK ;
+fun lohiverkko_NK : NK ;
+fun lohkaresavi_NK : NK ;
+fun lohkohedelma'_NK : NK ;
+fun lohkokaavio_NK : NK ;
+fun lohkola'mmitin_NK : NK ;
+fun lohkopinta_NK : NK ;
+fun lohkotiili_NK : NK ;
+fun lohkotila_NK : NK ;
+fun lohkovuoristo_NK : NK ;
+fun loimilanka_NK : NK ;
+fun loimineulos_NK : NK ;
+fun loimitukki_NK : NK ;
+fun loimukoivu_NK : NK ;
+fun loimulamppu_NK : NK ;
+fun loimulohi_NK : NK ;
+fun loisteaine_NK : NK ;
+fun loistelamppu_NK : NK ;
+fun loistepinta_NK : NK ;
+fun loisteputki_NK : NK ;
+fun loistevalaisin_NK : NK ;
+fun loistevalo_NK : NK ;
+fun loisteva'ri_NK : NK ;
+fun loistoauto_NK : NK ;
+fun loistohotelli_NK : NK ;
+fun loistohuvila_NK : NK ;
+fun loistokausi_NK : NK ;
+fun loistokunto_NK : NK ;
+fun loistokuntoinen_NK : NK ;
+fun loistoristeilija'_NK : NK ;
+fun loistoristeily_NK : NK ;
+fun loistosaavutus_NK : NK ;
+fun loistosuoritus_NK : NK ;
+fun loistotorni_NK : NK ;
+fun loistotulos_NK : NK ;
+fun loistotuuli_NK : NK ;
+fun loistovire_NK : NK ;
+fun loitsuruno_NK : NK ;
+fun loivakaarteinen_NK : NK ;
+fun loivanousuinen_NK : NK ;
+fun lokaalinen_AK : AK ;
+fun lokakuinen_NK : NK ;
+fun lokakuu_NK : NK ;
+fun lokasuoja_NK : NK ;
+fun lokikirja_NK : NK ;
+fun lokitiedosto_NK : NK ;
+fun lokkilintu_NK : NK ;
+fun lokkiparvi_NK : NK ;
+fun lomahotelli_NK : NK ;
+fun lomakausi_NK : NK ;
+fun lomakeskus_NK : NK ;
+fun lomakielto_NK : NK ;
+fun lomakohde_NK : NK ;
+fun lomakorvaus_NK : NK ;
+fun lomakoti_NK : NK ;
+fun lomakyla'_NK : NK ;
+fun lomalainen_NK : NK ;
+fun lomaliitos_NK : NK ;
+fun lomamatka_NK : NK ;
+fun lomamo'kki_NK : NK ;
+fun lomanviettopaikka_NK : NK ;
+fun lomaoikeus_NK : NK ;
+fun lomaosake_NK : NK ;
+fun lomaosakeasunto_NK : NK ;
+fun lomaosakehuoneisto_NK : NK ;
+fun lomaosakemo'kki_NK : NK ;
+fun lomaosoite_NK : NK ;
+fun lomapaketti_NK : NK ;
+fun lomapa'iva'_NK : NK ;
+fun lomaraha_NK : NK ;
+fun lomasijainen_NK : NK ;
+fun lomasijaisuus_NK : NK ;
+fun lomasa'vel_NK : NK ;
+fun lomatodistus_NK : NK ;
+fun lonkerojalkainen_NK : NK ;
+fun lonkkaheitto_NK : NK ;
+fun lonkkahermo_NK : NK ;
+fun lonkkahermosa'rky_NK : NK ;
+fun lonkkaluu_NK : NK ;
+fun lonkkanivel_NK : NK ;
+fun lonkkasa'rky_NK : NK ;
+fun lonkkavika_NK : NK ;
+fun lootusasento_NK : NK ;
+fun loppuera'_NK : NK ;
+fun loppuheitto_NK : NK ;
+fun loppuhuipennus_NK : NK ;
+fun loppuika'_NK : NK ;
+fun loppuilta_NK : NK ;
+fun loppujakso_NK : NK ;
+fun loppukahdennus_NK : NK ;
+fun loppukatselmus_NK : NK ;
+fun loppukesa'_NK : NK ;
+--? fun loppukeva't_NK : NK ;
+fun loppukilpailu_NK : NK ;
+fun loppukiri_NK : NK ;
+fun loppukoe_NK : NK ;
+fun loppukohtaus_NK : NK ;
+fun loppukuu_NK : NK ;
+fun loppukuukausi_NK : NK ;
+fun loppukymmen_NK : NK ;
+fun loppuka'ytta'ja'_NK : NK ;
+fun loppulause_NK : NK ;
+fun loppulausunto_NK : NK ;
+fun loppuliite_NK : NK ;
+fun loppuliturgia_NK : NK ;
+fun loppumatka_NK : NK ;
+fun loppumerkinta'_NK : NK ;
+fun loppumerkki_NK : NK ;
+fun loppumetri_NK : NK ;
+fun loppuminuutti_NK : NK ;
+fun loppunousu_NK : NK ;
+fun loppunumero_NK : NK ;
+fun loppuna'yto's_NK : NK ;
+fun loppuosa_NK : NK ;
+fun loppuottelu_NK : NK ;
+fun loppupalkka_NK : NK ;
+fun loppupeli_NK : NK ;
+fun loppupiste_NK : NK ;
+fun loppuponsi_NK : NK ;
+fun loppupuoli_NK : NK ;
+fun loppupuolisko_NK : NK ;
+fun loppupa'iva'_NK : NK ;
+fun loppupa'a'_NK : NK ;
+fun loppupa'a'telma'_NK : NK ;
+fun loppuraportti_NK : NK ;
+fun loppuratkaisu_NK : NK ;
+fun loppuriuhtaisu_NK : NK ;
+fun loppurutistus_NK : NK ;
+fun loppurynnistys_NK : NK ;
+fun loppuselvittely_NK : NK ;
+fun loppusijoitus_NK : NK ;
+fun loppusilaus_NK : NK ;
+fun loppusilea'_NK : NK ;
+fun loppusivu_NK : NK ;
+fun loppusoinnuton_NK : NK ;
+fun loppusointu_NK : NK ;
+fun loppusointupari_NK : NK ;
+fun loppusoitto_NK : NK ;
+fun loppusumma_NK : NK ;
+fun loppusuora_NK : NK ;
+fun loppusyksy_NK : NK ;
+fun loppusysa'ys_NK : NK ;
+fun lopputaipale_NK : NK ;
+fun lopputaival_NK : NK ;
+fun lopputalvi_NK : NK ;
+fun lopputarkastus_NK : NK ;
+fun lopputavu_NK : NK ;
+fun lopputeksti_NK : NK ;
+fun lopputentti_NK : NK ;
+fun lopputilanne_NK : NK ;
+fun lopputili_NK : NK ;
+fun lopputulos_NK : NK ;
+fun lopputuote_NK : NK ;
+fun loppututkinto_NK : NK ;
+fun lopputyo'_NK : NK ;
+fun loppuunmyynti_NK : NK ;
+fun loppuvaihe_NK : NK ;
+fun loppuvaikutelma_NK : NK ;
+fun loppuveto_NK : NK ;
+fun loppuvihellys_NK : NK ;
+fun loppuviikko_NK : NK ;
+fun loppuvuosi_NK : NK ;
+fun loppuvuosikymmen_NK : NK ;
+fun loskakeli_NK : NK ;
+fun lossiliikenne_NK : NK ;
+fun lossimaksu_NK : NK ;
+fun lossiyhteys_NK : NK ;
+fun lottaja'rjesto'_NK : NK ;
+fun lottapuku_NK : NK ;
+fun lottokierros_NK : NK ;
+fun lottokuponki_NK : NK ;
+fun lottonumero_NK : NK ;
+fun lottopotti_NK : NK ;
+fun lottovoittaja_NK : NK ;
+fun lottovoitto_NK : NK ;
+fun louhoskivi_NK : NK ;
+fun luentokalvo_NK : NK ;
+fun luentokurssi_NK : NK ;
+fun luentolehtio'_NK : NK ;
+fun luentomoniste_NK : NK ;
+fun luentopa'iva'_NK : NK ;
+fun luentosali_NK : NK ;
+fun luentosarja_NK : NK ;
+fun luentotunti_NK : NK ;
+fun luetelmaviiva_NK : NK ;
+fun luettavuustutkimus_NK : NK ;
+fun luhtakana_NK : NK ;
+fun luhtakerttunen_NK : NK ;
+fun luhtaniitty_NK : NK ;
+fun luhtiaitta_NK : NK ;
+fun luhtika'yta'va'_NK : NK ;
+fun luhtitalo_NK : NK ;
+fun luiskapinta_NK : NK ;
+fun luisteluhiihto_NK : NK ;
+fun luistelukilpailu_NK : NK ;
+fun luistelurata_NK : NK ;
+fun luistelusauva_NK : NK ;
+fun luistelusuksi_NK : NK ;
+fun luistikaappi_NK : NK ;
+fun luistinrata_NK : NK ;
+fun luistovoide_NK : NK ;
+fun luisuka'a'nno's_NK : NK ;
+fun lujahermoinen_NK : NK ;
+fun lujaka'tinen_AK : AK ;
+fun lujaluonteinen_NK : NK ;
+fun lujaluontoinen_NK : NK ;
+fun lujaotteinen_NK : NK ;
+fun lujatahtoinen_NK : NK ;
+fun lujatekoinen_NK : NK ;
+fun lujavauhtinen_NK : NK ;
+fun lujitemuovi_NK : NK ;
+fun lujuuslaskelma_NK : NK ;
+fun lujuusoppi_NK : NK ;
+fun lukijakirje_NK : NK ;
+fun lukijakunta_NK : NK ;
+fun lukijamatka_NK : NK ;
+fun lukijatutkimus_NK : NK ;
+fun lukiokynnys_NK : NK ;
+fun lukiolainen_NK : NK ;
+fun lukioluokka_NK : NK ;
+fun lukitusjousi_NK : NK ;
+fun lukituslaite_NK : NK ;
+fun lukitussalpa_NK : NK ;
+fun lukkinosturi_NK : NK ;
+fun lukkolaite_NK : NK ;
+fun lukkoliitos_NK : NK ;
+fun lukkoneula_NK : NK ;
+--? fun lukkopihdit_NK : NK ;
+fun lukkoseppa'_NK : NK ;
+fun lukkosula_NK : NK ;
+fun luksusasunto_NK : NK ;
+fun luksusauto_NK : NK ;
+fun luksusluokka_NK : NK ;
+fun luksusristeilija'_NK : NK ;
+fun lukuaine_NK : NK ;
+fun lukuarvo_NK : NK ;
+fun lukudraama_NK : NK ;
+fun lukuhalu_NK : NK ;
+fun lukuharrastus_NK : NK ;
+fun lukuha'irio'_NK : NK ;
+fun lukuja'rjestys_NK : NK ;
+fun lukukappale_NK : NK ;
+fun lukukausi_NK : NK ;
+fun lukukausiarvostelu_NK : NK ;
+fun lukukausimaksu_NK : NK ;
+fun lukukausitodistus_NK : NK ;
+--? fun lukukinkerit_NK : NK ;
+fun lukukirja_NK : NK ;
+fun lukukone_NK : NK ;
+fun lukukyna'_NK : NK ;
+fun lukulaite_NK : NK ;
+fun lukulamppu_NK : NK ;
+fun lukumies_NK : NK ;
+fun lukumuisti_NK : NK ;
+fun lukuma'a'ra'_NK : NK ;
+fun lukuma'a'ra'inen_NK : NK ;
+fun lukunopeus_NK : NK ;
+fun lukunuttu_NK : NK ;
+fun lukuna'ytelma'_NK : NK ;
+fun lukupiiri_NK : NK ;
+fun lukuromaani_NK : NK ;
+fun lukusali_NK : NK ;
+fun lukusana_NK : NK ;
+fun lukusuora_NK : NK ;
+fun lukutaidoton_NK : NK ;
+fun lukutaito_NK : NK ;
+fun lukutapa_NK : NK ;
+fun lukutottumus_NK : NK ;
+fun lukutoukka_NK : NK ;
+fun lukuvalaisin_NK : NK ;
+fun lukuvalo_NK : NK ;
+fun lukuvirhe_NK : NK ;
+fun lukuvuosi_NK : NK ;
+fun lukuyksikko'_NK : NK ;
+fun lullukkava'ki_NK : NK ;
+fun lumela'a'ke_NK : NK ;
+fun lumemaailma_NK : NK ;
+fun lumenajo_NK : NK ;
+fun lumenla'hto'_NK : NK ;
+fun lumenmurto_NK : NK ;
+fun lumensyvyys_NK : NK ;
+fun lumentulo_NK : NK ;
+fun lumevaikutus_NK : NK ;
+fun lumiaita_NK : NK ;
+fun lumiaura_NK : NK ;
+fun lumiera'_NK : NK ;
+fun lumihanki_NK : NK ;
+fun lumihome_NK : NK ;
+fun lumihuippu_NK : NK ;
+fun lumihuippuinen_NK : NK ;
+fun lumikeli_NK : NK ;
+fun lumikello_NK : NK ;
+fun lumikenka'_NK : NK ;
+fun lumikentta'_NK : NK ;
+fun lumikerros_NK : NK ;
+fun lumiketju_NK : NK ;
+fun lumikide_NK : NK ;
+fun lumikinkku_NK : NK ;
+fun lumikinos_NK : NK ;
+fun lumikola_NK : NK ;
+fun lumikuuro_NK : NK ;
+fun lumilapio_NK : NK ;
+fun lumilauta_NK : NK ;
+fun lumilautailija_NK : NK ;
+fun lumilautailu_NK : NK ;
+fun lumileiri_NK : NK ;
+fun lumilinko_NK : NK ;
+fun lumilinna_NK : NK ;
+fun lumiluola_NK : NK ;
+fun lumilyhty_NK : NK ;
+fun lumimaja_NK : NK ;
+fun lumimarja_NK : NK ;
+fun lumimarjapensas_NK : NK ;
+fun lumimassa_NK : NK ;
+fun lumimies_NK : NK ;
+fun lumimittari_NK : NK ;
+fun lumimyrsky_NK : NK ;
+fun luminesenssina'ytto'_NK : NK ;
+fun lumipaakku_NK : NK ;
+fun lumipallo_NK : NK ;
+fun lumipalloheisi_NK : NK ;
+fun lumipeite_NK : NK ;
+fun lumipeitteinen_NK : NK ;
+fun lumipisara_NK : NK ;
+fun lumipuku_NK : NK ;
+fun lumipyry_NK : NK ;
+fun lumirae_NK : NK ;
+fun lumiraja_NK : NK ;
+fun lumiryo'ppy_NK : NK ;
+fun lumira'nta'_NK : NK ;
+fun lumisade_NK : NK ;
+fun lumisohjo_NK : NK ;
+fun lumisokeus_NK : NK ;
+fun lumisota_NK : NK ;
+fun lumisotasilla_NK : NK ;
+fun lumituho_NK : NK ;
+fun lumituisku_NK : NK ;
+fun lumitykki_NK : NK ;
+fun lumityo'_NK : NK ;
+fun lumita'hti_NK : NK ;
+fun lumiukko_NK : NK ;
+fun lumivaippa_NK : NK ;
+fun lumivalkoinen_NK : NK ;
+fun lumivalli_NK : NK ;
+fun lumiveistos_NK : NK ;
+fun lumivyo'ry_NK : NK ;
+fun lummekasvi_NK : NK ;
+fun lumooja_NK : NK ;
+fun lumppukuitu_NK : NK ;
+fun lumppupaperi_NK : NK ;
+fun lumppusellu_NK : NK ;
+fun lumppuvilla_NK : NK ;
+fun lunastusmaksu_NK : NK ;
+fun lunastusoikeus_NK : NK ;
+fun lunastusoppi_NK : NK ;
+fun lunastussumma_NK : NK ;
+fun lunastustyo'_NK : NK ;
+fun lunttilappu_NK : NK ;
+fun luodevesi_NK : NK ;
+fun luodevirtaus_NK : NK ;
+fun luokitteluasteikko_NK : NK ;
+fun luokitteluperuste_NK : NK ;
+fun luokitusperuste_NK : NK ;
+fun luokkaero_NK : NK ;
+fun luokkahenki_NK : NK ;
+fun luokkahuone_NK : NK ;
+fun luokkajako_NK : NK ;
+fun luokkajakoinen_NK : NK ;
+fun luokkakantainen_NK : NK ;
+fun luokkakantaisuus_NK : NK ;
+fun luokkakokous_NK : NK ;
+fun luokkakuva_NK : NK ;
+fun luokkalainen_NK : NK ;
+fun luokkaopetus_NK : NK ;
+fun luokkaraja_NK : NK ;
+fun luokkaretki_NK : NK ;
+fun luokkasormus_NK : NK ;
+fun luokkasota_NK : NK ;
+fun luokkataistelu_NK : NK ;
+fun luokkatietoinen_NK : NK ;
+fun luokkatietoisuus_NK : NK ;
+fun luokkatoveri_NK : NK ;
+fun luokkavastakohta_NK : NK ;
+fun luokkaviha_NK : NK ;
+fun luokkavihollinen_NK : NK ;
+fun luokkavoitto_NK : NK ;
+--? fun luokkivaljaat_NK : NK ;
+fun luokokuivatus_NK : NK ;
+fun luoksepa'a'sema'to'n_NK : NK ;
+fun luolaihminen_NK : NK ;
+fun luolakoira_NK : NK ;
+fun luolamaalaus_NK : NK ;
+fun luomakunta_NK : NK ;
+fun luomipuuteri_NK : NK ;
+fun luomisoppi_NK : NK ;
+fun luomitulehdus_NK : NK ;
+fun luomivako_NK : NK ;
+fun luomiva'ri_NK : NK ;
+fun luonneha'irio'_NK : NK ;
+fun luonneha'irio'inen_NK : NK ;
+fun luonnekomedia_NK : NK ;
+fun luonnekomiikka_NK : NK ;
+fun luonnekuva_NK : NK ;
+fun luonneneuroosi_NK : NK ;
+fun luonnena'ytelma'_NK : NK ;
+fun luonnena'yttelija'_NK : NK ;
+fun luonneosa_NK : NK ;
+fun luonnerooli_NK : NK ;
+fun luonnetutkielma_NK : NK ;
+fun luonnetyyppi_NK : NK ;
+fun luonnevikainen_NK : NK ;
+fun luonnonsilkkihuivi_NK : NK ;
+fun luonnonsuojelualue_NK : NK ;
+fun luonnonva'riaine_NK : NK ;
+fun luonnosaste_NK : NK ;
+fun luonnoslehtio'_NK : NK ;
+fun luonnospiirustus_NK : NK ;
+fun luonnosteluvaihe_NK : NK ;
+fun luonnosvaihe_NK : NK ;
+fun luontaiselinkeinotila_NK : NK ;
+fun luontaistuotekauppa_NK : NK ;
+fun luontoaktivisti_NK : NK ;
+fun luontoemo_NK : NK ;
+fun luontofilmi_NK : NK ;
+fun luontokappale_NK : NK ;
+fun luontokerho_NK : NK ;
+fun luontokuva_NK : NK ;
+fun luontokuvaaja_NK : NK ;
+fun luontokuvaus_NK : NK ;
+fun luontomatkailija_NK : NK ;
+fun luontomatkailu_NK : NK ;
+fun luontopera'inen_NK : NK ;
+fun luontopolku_NK : NK ;
+fun luontoretki_NK : NK ;
+fun luontoa'iti_NK : NK ;
+fun luostariela'ma'_NK : NK ;
+fun luostarija'rjesto'_NK : NK ;
+fun luostarikirkko_NK : NK ;
+fun luostarikoulu_NK : NK ;
+fun luostarilaitos_NK : NK ;
+fun luostarilupaus_NK : NK ;
+fun luostarirakennus_NK : NK ;
+fun luostarisisar_NK : NK ;
+fun luostarisa'a'nto'_NK : NK ;
+fun luostariveli_NK : NK ;
+fun luostariyhteiso'_NK : NK ;
+fun luotain_NK : NK ;
+fun luotaus_NK : NK ;
+fun luoteinen_NK : NK ;
+fun luotettavuusajo_NK : NK ;
+fun luotijuna_NK : NK ;
+fun luotilanka_NK : NK ;
+fun luotisade_NK : NK ;
+fun luotisuihku_NK : NK ;
+fun luotisuora_NK : NK ;
+fun luotiviiva_NK : NK ;
+fun luotoinen_NK : NK ;
+fun luotsialus_NK : NK ;
+fun luotsiasema_NK : NK ;
+fun luotsivene_NK : NK ;
+fun luottamushenkilo'_NK : NK ;
+fun luottamuskysymys_NK : NK ;
+fun luottamuslause_NK : NK ;
+fun luottamuslausea'a'nestys_NK : NK ;
+fun luottamusmies_NK : NK ;
+fun luottamusoppilas_NK : NK ;
+fun luottamuspula_NK : NK ;
+fun luottamustehta'va'_NK : NK ;
+fun luottamustoimi_NK : NK ;
+fun luottavaisuus_NK : NK ;
+fun luottoehto_NK : NK ;
+fun luottohana_NK : NK ;
+fun luottokauppa_NK : NK ;
+fun luottokelpoinen_NK : NK ;
+fun luottokelpoisuus_NK : NK ;
+fun luottokortti_NK : NK ;
+fun luottokorttilompakko_NK : NK ;
+fun luottokorttipuhelin_NK : NK ;
+fun luottolaitos_NK : NK ;
+--? fun luottomarkkinat_NK : NK ;
+fun luottomies_NK : NK ;
+fun luottoraja_NK : NK ;
+fun luottoriski_NK : NK ;
+fun luottotappio_NK : NK ;
+fun luottovanki_NK : NK ;
+fun luottovaraus_NK : NK ;
+fun luottovarausprovisio_NK : NK ;
+fun luovutussopimus_NK : NK ;
+fun luovutusvoitto_NK : NK ;
+fun lupahakemus_NK : NK ;
+fun lupakirja_NK : NK ;
+fun lupalappu_NK : NK ;
+fun lupamaksu_NK : NK ;
+fun lupapa'iva'_NK : NK ;
+fun lupapa'a'to's_NK : NK ;
+fun lupatarkastaja_NK : NK ;
+fun luppoja'ka'la'_NK : NK ;
+fun lurjusmainen_AK : AK ;
+fun lusikkaleipa'_NK : NK ;
+fun lusikkaruoka_NK : NK ;
+fun lusikkauistin_NK : NK ;
+fun lustokuoriainen_NK : NK ;
+fun lustosavi_NK : NK ;
+fun luujauho_NK : NK ;
+fun luukala_NK : NK ;
+fun luukalvo_NK : NK ;
+fun luukampa_NK : NK ;
+fun luukasvain_NK : NK ;
+fun luukato_NK : NK ;
+fun luukeitto_NK : NK ;
+fun luukudos_NK : NK ;
+fun luukyhmy_NK : NK ;
+fun luuloinen_NK : NK ;
+fun luulosairas_NK : NK ;
+fun luulosairaus_NK : NK ;
+fun luulotauti_NK : NK ;
+fun luulotautinen_NK : NK ;
+fun luumarja_NK : NK ;
+fun luumuhillo_NK : NK ;
+fun luumukiisseli_NK : NK ;
+fun luumupuu_NK : NK ;
+fun luumutorttu_NK : NK ;
+fun luumuvanukas_NK : NK ;
+fun luumuviina_NK : NK ;
+fun luuma'ta'_NK : NK ;
+fun luunappi_NK : NK ;
+fun luunaula_NK : NK ;
+fun luunsiirtoleikkaus_NK : NK ;
+fun luupiikki_NK : NK ;
+fun luuposliini_NK : NK ;
+fun luupa'inen_NK : NK ;
+fun luupa'a'_NK : NK ;
+fun luuranko_NK : NK ;
+fun luusolu_NK : NK ;
+fun luusolukko_NK : NK ;
+fun luustolihas_NK : NK ;
+fun luusyo'pa'_NK : NK ;
+fun luusa'lo'_NK : NK ;
+fun luutuma_NK : NK ;
+fun luuvalo_NK : NK ;
+fun luuvitonen_NK : NK ;
+fun luuviulu_NK : NK ;
+fun luuydin_NK : NK ;
+fun lyhenneluettelo_NK : NK ;
+fun lyhennesana_NK : NK ;
+fun lyhennysera'_NK : NK ;
+fun lyhtykoiso_NK : NK ;
+fun lyhtykukka_NK : NK ;
+fun lyhtypylva's_NK : NK ;
+fun lyhytaaltoinen_NK : NK ;
+fun lyhytaikainen_NK : NK ;
+fun lyhytaikaisuus_NK : NK ;
+fun lyhythihainen_NK : NK ;
+fun lyhythiuksinen_NK : NK ;
+fun lyhytika'inen_NK : NK ;
+fun lyhytjalkainen_NK : NK ;
+fun lyhytja'nteinen_AK : AK ;
+fun lyhytja'nteisyys_NK : NK ;
+fun lyhytkarvainen_NK : NK ;
+fun lyhytkasvuinen_NK : NK ;
+fun lyhytkestoinen_NK : NK ;
+fun lyhytna'ko'inen_AK : AK ;
+fun lyhytna'ko'isyys_NK : NK ;
+fun lyhytraajainen_NK : NK ;
+fun lyhytsanainen_AK : AK ;
+fun lyhytsanaisuus_NK : NK ;
+fun lyhytsiipinen_NK : NK ;
+fun lyhytsulku_NK : NK ;
+fun lyhyttukkainen_NK : NK ;
+fun lyhytvartinen_NK : NK ;
+fun lyijyakku_NK : NK ;
+fun lyijyhohde_NK : NK ;
+fun lyijykaivos_NK : NK ;
+fun lyijykukka_NK : NK ;
+fun lyijykyna'_NK : NK ;
+fun lyijykyna'merkinta'_NK : NK ;
+fun lyijykyna'piirros_NK : NK ;
+fun lyijykyna'piirustus_NK : NK ;
+fun lyijylasi_NK : NK ;
+fun lyijylasite_NK : NK ;
+fun lyijylevy_NK : NK ;
+fun lyijyluoti_NK : NK ;
+fun lyijymyrkytys_NK : NK ;
+fun lyijymo'nja'_NK : NK ;
+fun lyijyoksidi_NK : NK ;
+fun lyijypaino_NK : NK ;
+fun lyijypitoinen_NK : NK ;
+fun lyijypitoisuus_NK : NK ;
+fun lyijypa'a'llyste_NK : NK ;
+fun lyijysaaste_NK : NK ;
+fun lyijysaastelaskeuma_NK : NK ;
+fun lyijysinetti_NK : NK ;
+fun lymfahieroja_NK : NK ;
+fun lymfahieronta_NK : NK ;
+fun lymfakierto_NK : NK ;
+fun lypsyasema_NK : NK ;
+fun lypsyjakkara_NK : NK ;
+fun lypsykarja_NK : NK ;
+fun lypsykausi_NK : NK ;
+fun lypsykone_NK : NK ;
+fun lypsylehma'_NK : NK ;
+fun lypsyla'mmin_NK : NK ;
+fun lypsysanko_NK : NK ;
+fun lypsyvoide_NK : NK ;
+fun lypsya'mpa'ri_NK : NK ;
+fun lyo'ja'kuningas_NK : NK ;
+fun lyo'ntilaukaus_NK : NK ;
+fun lyo'ntipeli_NK : NK ;
+fun lyo'ntitiheys_NK : NK ;
+fun lyo'ntivirhe_NK : NK ;
+fun lyo'ntivuoro_NK : NK ;
+fun la'hdeaineisto_NK : NK ;
+fun la'hdeaines_NK : NK ;
+fun la'hdeja'rvi_NK : NK ;
+fun la'hdekieli_NK : NK ;
+fun la'hdekirja_NK : NK ;
+fun la'hdekriittinen_NK : NK ;
+fun la'hdekritiikki_NK : NK ;
+fun la'hdeluettelo_NK : NK ;
+fun la'hdesuoja_NK : NK ;
+fun la'hdeteos_NK : NK ;
+fun la'hdetieto_NK : NK ;
+fun la'hdevero_NK : NK ;
+fun la'hdeverotus_NK : NK ;
+fun la'hdevesi_NK : NK ;
+fun la'hdeviite_NK : NK ;
+fun la'hdeviittaus_NK : NK ;
+fun la'henta'ja'lihas_NK : NK ;
+fun la'hetekeskustelu_NK : NK ;
+fun la'hetekirje_NK : NK ;
+fun la'hetinasema_NK : NK ;
+fun la'hettipoika_NK : NK ;
+fun la'hettitytto'_NK : NK ;
+fun la'hettiyhteys_NK : NK ;
+fun la'hetysalue_NK : NK ;
+fun la'hetysasema_NK : NK ;
+fun la'hetyskentta'_NK : NK ;
+fun la'hetyskirkko_NK : NK ;
+fun la'hetyskoulu_NK : NK ;
+fun la'hetyska'sky_NK : NK ;
+fun la'hetyslista_NK : NK ;
+fun la'hetysluettelo_NK : NK ;
+fun la'hetysla'a'ka'ri_NK : NK ;
+fun la'hetyspappi_NK : NK ;
+fun la'hetyssaarnaaja_NK : NK ;
+fun la'hetysseura_NK : NK ;
+fun la'hetyssihteeri_NK : NK ;
+fun la'hetystiede_NK : NK ;
+fun la'hetystyo'_NK : NK ;
+fun la'hetysto'avustaja_NK : NK ;
+fun la'hetysto'neuvos_NK : NK ;
+fun la'hetysto'sihteeri_NK : NK ;
+fun la'hetysto'virkailija_NK : NK ;
+fun la'hiseutuvilla_NK : NK ;
+fun la'hitaisteluase_NK : NK ;
+fun la'hio'asukas_NK : NK ;
+fun la'hio'kirjasto_NK : NK ;
+fun la'hio'ravintola_NK : NK ;
+fun la'hto'aine_NK : NK ;
+fun la'hto'arvo_NK : NK ;
+fun la'hto'asema_NK : NK ;
+fun la'hto'asento_NK : NK ;
+fun la'hto'hinta_NK : NK ;
+fun la'hto'isyys_NK : NK ;
+fun la'hto'ja'nnite_NK : NK ;
+fun la'hto'ja'rjestys_NK : NK ;
+fun la'hto'kieli_NK : NK ;
+fun la'hto'kiire_NK : NK ;
+fun la'hto'koroke_NK : NK ;
+fun la'hto'kynnys_NK : NK ;
+fun la'hto'laskenta_NK : NK ;
+fun la'hto'laukaus_NK : NK ;
+fun la'hto'lava_NK : NK ;
+fun la'hto'liita'nta'_NK : NK ;
+fun la'hto'linja_NK : NK ;
+fun la'hto'lippu_NK : NK ;
+fun la'hto'lupa_NK : NK ;
+fun la'hto'merkki_NK : NK ;
+fun la'hto'muoto_NK : NK ;
+fun la'hto'nopeus_NK : NK ;
+fun la'hto'paikka_NK : NK ;
+fun la'hto'palkka_NK : NK ;
+fun la'hto'piste_NK : NK ;
+fun la'hto'puomi_NK : NK ;
+fun la'hto'pa'iva'_NK : NK ;
+fun la'hto'ruutu_NK : NK ;
+fun la'hto'satama_NK : NK ;
+fun la'hto'selvitys_NK : NK ;
+fun la'hto'taso_NK : NK ;
+fun la'hto'teho_NK : NK ;
+fun la'hto'teline_NK : NK ;
+fun la'hto'valmis_NK : NK ;
+fun la'hto'valmius_NK : NK ;
+fun la'hto'viiva_NK : NK ;
+fun la'hto'vuoro_NK : NK ;
+fun la'kkipelti_NK : NK ;
+fun la'kkiseppa'_NK : NK ;
+fun la'ksykirja_NK : NK ;
+fun la'lla'rikama_NK : NK ;
+fun la'mminhenkinen_NK : NK ;
+fun la'mminsyda'minen_NK : NK ;
+fun la'mminverinen_NK : NK ;
+fun la'mmityselementti_NK : NK ;
+fun la'mmityskausi_NK : NK ;
+fun la'mmityslaite_NK : NK ;
+fun la'mmityssa'hko'_NK : NK ;
+fun la'mmitysteho_NK : NK ;
+fun la'mmitysuuni_NK : NK ;
+fun la'mmitysvastus_NK : NK ;
+fun la'mmitysvoimala_NK : NK ;
+fun la'mmo'nsa'a'telykeskus_NK : NK ;
+fun la'mpo'aalto_NK : NK ;
+fun la'mpo'aisti_NK : NK ;
+fun la'mpo'aistimus_NK : NK ;
+fun la'mpo'alusta_NK : NK ;
+fun la'mpo'arvo_NK : NK ;
+fun la'mpo'aste_NK : NK ;
+fun la'mpo'energia_NK : NK ;
+fun la'mpo'enna'tys_NK : NK ;
+fun la'mpo'eriste_NK : NK ;
+fun la'mpo'eristeinen_NK : NK ;
+fun la'mpo'eristys_NK : NK ;
+fun la'mpo'ero_NK : NK ;
+fun la'mpo'haalari_NK : NK ;
+fun la'mpo'halvaus_NK : NK ;
+fun la'mpo'herkka'_NK : NK ;
+fun la'mpo'hoito_NK : NK ;
+fun la'mpo'istuin_NK : NK ;
+fun la'mpo'johto_NK : NK ;
+fun la'mpo'ja'nnitys_NK : NK ;
+fun la'mpo'kamera_NK : NK ;
+fun la'mpo'kemia_NK : NK ;
+fun la'mpo'kerrasto_NK : NK ;
+fun la'mpo'keskus_NK : NK ;
+fun la'mpo'kiharrin_NK : NK ;
+fun la'mpo'kuvaus_NK : NK ;
+fun la'mpo'kynttila'_NK : NK ;
+fun la'mpo'ka'sittely_NK : NK ;
+fun la'mpo'ka'yra'_NK : NK ;
+fun la'mpo'lamppu_NK : NK ;
+fun la'mpo'lasi_NK : NK ;
+fun la'mpo'lava_NK : NK ;
+fun la'mpo'levy_NK : NK ;
+fun la'mpo'liike_NK : NK ;
+fun la'mpo'mittari_NK : NK ;
+fun la'mpo'ma'a'ra'_NK : NK ;
+fun la'mpo'oppi_NK : NK ;
+fun la'mpo'pakkaus_NK : NK ;
+fun la'mpo'paperi_NK : NK ;
+fun la'mpo'pari_NK : NK ;
+fun la'mpo'patteri_NK : NK ;
+fun la'mpo'puhallin_NK : NK ;
+fun la'mpo'puku_NK : NK ;
+fun la'mpo'pumppu_NK : NK ;
+fun la'mpo'putki_NK : NK ;
+fun la'mpo'sa'de_NK : NK ;
+fun la'mpo'sa'hko'pari_NK : NK ;
+fun la'mpo'sa'teily_NK : NK ;
+fun la'mpo'talous_NK : NK ;
+fun la'mpo'tila_NK : NK ;
+fun la'mpo'tyyny_NK : NK ;
+fun la'mpo'valli_NK : NK ;
+fun la'mpo'voima_NK : NK ;
+fun la'mpo'voimakone_NK : NK ;
+fun la'mpo'voimala_NK : NK ;
+fun la'mpo'vuori_NK : NK ;
+fun la'nsiauto_NK : NK ;
+fun la'nsiblokki_NK : NK ;
+fun la'nsikauppa_NK : NK ;
+fun la'nsiliitto_NK : NK ;
+fun la'nsilounainen_NK : NK ;
+fun la'nsiluode_NK : NK ;
+fun la'nsiluoteinen_NK : NK ;
+fun la'nsimaa_NK : NK ;
+fun la'nsimaailma_NK : NK ;
+fun la'nsimaalainen_NK : NK ;
+fun la'nsimainen_AK : AK ;
+fun la'nsimurre_NK : NK ;
+fun la'nsimurteinen_NK : NK ;
+fun la'nsimyrsky_NK : NK ;
+fun la'nsiosa_NK : NK ;
+fun la'nsipuoli_NK : NK ;
+fun la'nsipuolinen_NK : NK ;
+fun la'nsiraja_NK : NK ;
+fun la'nsirannikko_NK : NK ;
+fun la'nsiranta_NK : NK ;
+fun la'nsireimari_NK : NK ;
+fun la'nsirinne_NK : NK ;
+fun la'nsirintama_NK : NK ;
+fun la'nsiryhma'_NK : NK ;
+fun la'nsitaivas_NK : NK ;
+fun la'nsituonti_NK : NK ;
+fun la'nsituuli_NK : NK ;
+fun la'nsivienti_NK : NK ;
+fun la'nsiviitta_NK : NK ;
+fun la'piajo_NK : NK ;
+fun la'pikulku_NK : NK ;
+fun la'pikulkuliikenne_NK : NK ;
+fun la'pikulkumatka_NK : NK ;
+fun la'pikulkutie_NK : NK ;
+fun la'pikuultava_NK : NK ;
+fun la'pikuultavuus_NK : NK ;
+fun la'pikypsa'_NK : NK ;
+fun la'pika'ynti_NK : NK ;
+fun la'pika'yva'_NK : NK ;
+fun la'pileikkaus_NK : NK ;
+fun la'pilyo'nti_NK : NK ;
+fun la'pimeno_NK : NK ;
+fun la'pimitta_NK : NK ;
+fun la'pimittainen_NK : NK ;
+fun la'pimurto_NK : NK ;
+fun la'pimurtoteos_NK : NK ;
+fun la'pima'rka'_NK : NK ;
+fun la'pina'kyma'to'n_NK : NK ;
+fun la'pina'kyvyys_NK : NK ;
+fun la'pina'kyva'_NK : NK ;
+fun la'pipa'a'sema'to'n_NK : NK ;
+fun la'pipa'a'sy_NK : NK ;
+fun la'pisyo'tto'_NK : NK ;
+fun la'pivalaisu_NK : NK ;
+fun la'piveto_NK : NK ;
+fun la'pivienti_NK : NK ;
+fun la'pivientiaukko_NK : NK ;
+fun la'pivientieristin_NK : NK ;
+fun la'ppa'silta_NK : NK ;
+fun la'ppa'venttiili_NK : NK ;
+fun la'ppa'vika_NK : NK ;
+fun la'ppa'vikainen_NK : NK ;
+fun la'pa'isyaihe_NK : NK ;
+fun la'pa'isykyky_NK : NK ;
+fun la'skimaha_NK : NK ;
+fun la'skisoosi_NK : NK ;
+fun la'sna'olija_NK : NK ;
+fun la'sna'olo_NK : NK ;
+fun la'tka'maila_NK : NK ;
+fun la'tka'matsi_NK : NK ;
+fun la'a'keaddikti_NK : NK ;
+fun la'a'keaine_NK : NK ;
+fun la'a'keaineihottuma_NK : NK ;
+fun la'a'keainemyrkytys_NK : NK ;
+fun la'a'keaineoppi_NK : NK ;
+fun la'a'keannos_NK : NK ;
+fun la'a'kehiili_NK : NK ;
+fun la'a'kehoito_NK : NK ;
+fun la'a'kehumala_NK : NK ;
+fun la'a'kekaappi_NK : NK ;
+fun la'a'kekasvi_NK : NK ;
+fun la'a'kekemia_NK : NK ;
+fun la'a'kekuuri_NK : NK ;
+fun la'a'kelaastari_NK : NK ;
+fun la'a'kemuoto_NK : NK ;
+fun la'a'kema'a'ra'ys_NK : NK ;
+fun la'a'kepakkaus_NK : NK ;
+fun la'a'kepullo_NK : NK ;
+fun la'a'keriippuvuus_NK : NK ;
+fun la'a'kesaippua_NK : NK ;
+fun la'a'kesampoo_NK : NK ;
+fun la'a'keseos_NK : NK ;
+fun la'a'kesumutin_NK : NK ;
+fun la'a'ketaksa_NK : NK ;
+fun la'a'keteollisuus_NK : NK ;
+fun la'a'ketiede_NK : NK ;
+fun la'a'ketoleranssi_NK : NK ;
+fun la'a'kevalmiste_NK : NK ;
+fun la'a'keviini_NK : NK ;
+fun la'a'keyrtti_NK : NK ;
+fun la'a'kinta'henkilo'sto'_NK : NK ;
+fun la'a'kinta'huolto_NK : NK ;
+fun la'a'kinta'upseeri_NK : NK ;
+fun la'a'kinta'voimistelu_NK : NK ;
+fun la'a'ka'riambulanssi_NK : NK ;
+fun la'a'ka'riasema_NK : NK ;
+fun la'a'ka'rikeskus_NK : NK ;
+fun la'a'ka'rikirja_NK : NK ;
+fun la'a'ka'rikoulutus_NK : NK ;
+fun la'a'ka'rikunta_NK : NK ;
+fun la'a'ka'ripalsta_NK : NK ;
+fun la'a'ka'ripalvelu_NK : NK ;
+fun la'a'ka'ripa'ivystys_NK : NK ;
+fun la'a'nijako_NK : NK ;
+fun la'a'nityslaitos_NK : NK ;
+fun la'a'nitysmies_NK : NK ;
+fun lo'yha'ka'tinen_NK : NK ;
+fun lo'yha'pa'inen_NK : NK ;
+fun lo'ylyhuone_NK : NK ;
+fun lo'ylykauha_NK : NK ;
+fun lo'ylymies_NK : NK ;
+fun lo'ylyvesi_NK : NK ;
+fun lo'ysa'pa'inen_NK : NK ;
+fun lo'yto'lapsi_NK : NK ;
+fun lo'yto'paikka_NK : NK ;
+fun lo'yto'palkkio_NK : NK ;
+fun lo'yto'retkeilija'_NK : NK ;
+fun lo'yto'retki_NK : NK ;
+fun lo'yto'tavara_NK : NK ;
+fun lo'yto'tavaratoimisto_NK : NK ;
+fun maadoitusjohdin_NK : NK ;
+fun maadoitusjohto_NK : NK ;
+fun maaela'in_NK : NK ;
+fun maaemo_NK : NK ;
+fun maahantulokielto_NK : NK ;
+fun maahantulolupa_NK : NK ;
+fun maahantuontikielto_NK : NK ;
+fun maahantuontilupa_NK : NK ;
+fun maahengitys_NK : NK ;
+fun maahenki_NK : NK ;
+fun maahenkinen_NK : NK ;
+fun maahumala_NK : NK ;
+fun maailma_NK : NK ;
+fun maailmanenna'tysjuoksu_NK : NK ;
+fun maailmanenna'tysmies_NK : NK ;
+fun maailmanenna'tysnainen_NK : NK ;
+fun maailmanenna'tystulos_NK : NK ;
+fun maailmanmestaruusjoukkue_NK : NK ;
+fun maailmanmestaruuskilpailu_NK : NK ;
+fun maailmanmestaruuskisa_NK : NK ;
+fun maailmanmestaruusottelu_NK : NK ;
+fun maailmanperinto'luettelo_NK : NK ;
+fun maajauhe_NK : NK ;
+fun maajohto_NK : NK ;
+fun maajoukkue_NK : NK ;
+fun maajoukkuepaita_NK : NK ;
+fun maajoukkuepelaaja_NK : NK ;
+fun maajussi_NK : NK ;
+fun maakaapeli_NK : NK ;
+fun maakaari_NK : NK ;
+fun maakaasu_NK : NK ;
+fun maakaasujohto_NK : NK ;
+fun maakaasuputki_NK : NK ;
+fun maakaasuvoimala_NK : NK ;
+fun maakaira_NK : NK ;
+fun maakairaus_NK : NK ;
+fun maakaistale_NK : NK ;
+fun maakarhu_NK : NK ;
+fun maakari_NK : NK ;
+fun maakauppa_NK : NK ;
+fun maakellari_NK : NK ;
+fun maakerros_NK : NK ;
+fun maakerrostuma_NK : NK ;
+fun maakeskinen_NK : NK ;
+fun maakiintio'_NK : NK ;
+fun maakotka_NK : NK ;
+fun maakrapu_NK : NK ;
+fun maakuljetus_NK : NK ;
+fun maakunta_NK : NK ;
+fun maakuntahenki_NK : NK ;
+fun maakuntahistoria_NK : NK ;
+fun maakuntajako_NK : NK ;
+fun maakuntajuhla_NK : NK ;
+fun maakuntakaava_NK : NK ;
+fun maakuntakasvi_NK : NK ;
+fun maakuntakirjasto_NK : NK ;
+fun maakuntakivi_NK : NK ;
+fun maakuntakokous_NK : NK ;
+fun maakuntakukka_NK : NK ;
+--? fun maakuntaka'ra'ja't_NK : NK ;
+fun maakuntalainen_NK : NK ;
+fun maakuntalaki_NK : NK ;
+fun maakuntalaulu_NK : NK ;
+fun maakuntalehti_NK : NK ;
+fun maakuntaliitto_NK : NK ;
+fun maakuntalintu_NK : NK ;
+fun maakuntamuseo_NK : NK ;
+fun maakuntaneuvos_NK : NK ;
+fun maakuntaviesti_NK : NK ;
+--? fun maaka'ra'ja't_NK : NK ;
+fun maalaaja_NK : NK ;
+fun maalainen_AK : AK ;
+fun maalaisliittolainen_NK : NK ;
+fun maalaji_NK : NK ;
+fun maalajite_NK : NK ;
+fun maalari_1_NK : NK ;
+fun maalari_2_NK : NK ;
+fun maalausjalusta_NK : NK ;
+fun maalausliike_NK : NK ;
+fun maalausruisku_NK : NK ;
+fun maalausrulla_NK : NK ;
+fun maalaustaide_NK : NK ;
+fun maalaustekniikka_NK : NK ;
+fun maalaustela_NK : NK ;
+fun maalausteline_NK : NK ;
+fun maalaustyyli_NK : NK ;
+fun maalaustyo'_NK : NK ;
+fun maaleikkaus_NK : NK ;
+fun maaliahne_NK : NK ;
+fun maaliaine_NK : NK ;
+fun maalialue_NK : NK ;
+fun maaliaukko_NK : NK ;
+fun maaliero_NK : NK ;
+fun maaliikenne_NK : NK ;
+fun maalijauhe_NK : NK ;
+fun maalijuhla_NK : NK ;
+fun maalikamera_NK : NK ;
+fun maalikehikko_NK : NK ;
+fun maalikerros_NK : NK ;
+fun maalikyla'_NK : NK ;
+fun maalilaukaus_NK : NK ;
+fun maalilinja_NK : NK ;
+fun maalinauha_NK : NK ;
+fun maalipensseli_NK : NK ;
+fun maalipinta_1_NK : NK ;
+fun maalipinta_2_NK : NK ;
+fun maalipotku_NK : NK ;
+fun maalipurkki_NK : NK ;
+fun maalipylva's_NK : NK ;
+fun maaliraja_NK : NK ;
+fun maaliruisku_NK : NK ;
+fun maalisivellin_NK : NK ;
+fun maalisuhde_NK : NK ;
+fun maalisuora_NK : NK ;
+fun maalisyo'tto'_NK : NK ;
+fun maalitaulu_NK : NK ;
+fun maalitehtailija_NK : NK ;
+fun maalitehtailu_NK : NK ;
+fun maalitilanne_NK : NK ;
+fun maalitili_NK : NK ;
+fun maalitolppa_NK : NK ;
+fun maalituomari_NK : NK ;
+fun maalitykki_NK : NK ;
+fun maalito'lkki_NK : NK ;
+fun maalivahti_NK : NK ;
+fun maaliverkko_NK : NK ;
+fun maaliviiva_1_NK : NK ;
+fun maaliviiva_2_NK : NK ;
+fun maaliva'ri_NK : NK ;
+fun maalio'ljy_NK : NK ;
+fun maallikkoedustaja_NK : NK ;
+fun maallikkoja'sen_NK : NK ;
+fun maallikkonimi_NK : NK ;
+fun maallikkosaarnaaja_NK : NK ;
+fun maallikkotuomari_NK : NK ;
+fun maallikkoveli_NK : NK ;
+fun maalyo'nti_NK : NK ;
+fun maala'mmitys_NK : NK ;
+fun maala'mpo'_NK : NK ;
+fun maamagnetismi_NK : NK ;
+fun maamerkki_NK : NK ;
+fun maametalli_NK : NK ;
+fun maamies_NK : NK ;
+fun maamiesseura_NK : NK ;
+fun maamikrobi_NK : NK ;
+fun maamuna_NK : NK ;
+fun maamyyra'_NK : NK ;
+fun maanantaikappale_NK : NK ;
+fun maaneuvos_NK : NK ;
+fun maanisa'_NK : NK ;
+fun maanja'ristysaalto_NK : NK ;
+fun maanja'ristysmittari_NK : NK ;
+fun maanja'ristysoppi_NK : NK ;
+fun maanmittausinsino'o'ri_NK : NK ;
+fun maanmittausneuvos_NK : NK ;
+fun maanmittausoppi_NK : NK ;
+fun maanmittaustoimitus_NK : NK ;
+fun maannousemasieni_NK : NK ;
+fun maanomistusoikeus_NK : NK ;
+fun maanopeus_NK : NK ;
+fun maanpakolainen_NK : NK ;
+fun maanparannusaine_NK : NK ;
+fun maanpuolustusja'rjesto'_NK : NK ;
+fun maanpuolustuskoulutus_NK : NK ;
+fun maanpuolustuskurssi_NK : NK ;
+fun maanpuolustustyo'_NK : NK ;
+fun maansiirtoauto_NK : NK ;
+fun maansiirtokone_NK : NK ;
+fun maansiirtoliike_NK : NK ;
+fun maansiirtotyo'_NK : NK ;
+fun maantieajo_NK : NK ;
+fun maantiegangsteri_NK : NK ;
+fun maantiekilpailu_NK : NK ;
+fun maantiekuljetus_NK : NK ;
+fun maantienoja_NK : NK ;
+fun maantiepyo'ra'ily_NK : NK ;
+fun maantierosvo_NK : NK ;
+fun maantiesilta_NK : NK ;
+fun maanuoliainen_NK : NK ;
+fun maanviljelija'va'esto'_NK : NK ;
+fun maanviljelykulttuuri_NK : NK ;
+fun maanviljelymaa_NK : NK ;
+fun maanviljelysfysiikka_NK : NK ;
+fun maanviljelyskalusto_NK : NK ;
+fun maanviljelyskemia_NK : NK ;
+fun maanviljelyskone_NK : NK ;
+fun maanviljelysneuvos_NK : NK ;
+fun maanviljelystalous_NK : NK ;
+fun maanviljelystila_NK : NK ;
+fun maanviljelystyo'_NK : NK ;
+fun maanviljelytiede_NK : NK ;
+fun maanvuokrasopimus_NK : NK ;
+fun maana'kyvyys_NK : NK ;
+fun maaoikeus_NK : NK ;
+fun maaomaisuus_NK : NK ;
+fun maaomistus_NK : NK ;
+fun maaorja_NK : NK ;
+fun maaorjuus_NK : NK ;
+fun maaottelu_NK : NK ;
+fun maaotteluedustaja_NK : NK ;
+fun maaottelujoukkue_NK : NK ;
+fun maaottelukarsinta_NK : NK ;
+fun maaottelupelaaja_NK : NK ;
+fun maaotteluvoitto_NK : NK ;
+fun maapaikka_NK : NK ;
+fun maapaketti_NK : NK ;
+fun maapala_NK : NK ;
+fun maapallo_NK : NK ;
+fun maapalsta_NK : NK ;
+fun maapato_NK : NK ;
+fun maapeite_NK : NK ;
+fun maapera'_NK : NK ;
+fun maapera'biologi_NK : NK ;
+fun maapera'biologia_NK : NK ;
+fun maapera'geologi_NK : NK ;
+fun maapera'geologia_NK : NK ;
+fun maapera'kartta_NK : NK ;
+fun maapohja_NK : NK ;
+fun maapohjainen_NK : NK ;
+fun maapolitiikka_NK : NK ;
+fun maapuuteri_NK : NK ;
+fun maapa'hkina'_NK : NK ;
+fun maapa'hkina'kakku_NK : NK ;
+fun maapa'hkina'rouhe_NK : NK ;
+fun maapa'hkina'o'ljy_NK : NK ;
+fun maaraja_NK : NK ;
+fun maarakennus_NK : NK ;
+fun maarakennuskangas_NK : NK ;
+fun maarakennuskone_NK : NK ;
+fun maarakennusliike_NK : NK ;
+fun maarakennusmekaniikka_NK : NK ;
+fun maarakennustekstiili_NK : NK ;
+fun maarakennustyo'_NK : NK ;
+fun maarata_NK : NK ;
+fun maareformi_NK : NK ;
+fun maarekisteri_NK : NK ;
+fun maaseutu_NK : NK ;
+fun maaseutukaupunki_NK : NK ;
+fun maaseutukeskus_NK : NK ;
+fun maaseutukiertue_NK : NK ;
+fun maaseutukunta_NK : NK ;
+fun maaseutulehdisto'_NK : NK ;
+fun maaseutulehti_NK : NK ;
+fun maaseutumainen_NK : NK ;
+fun maaseutupita'ja'_NK : NK ;
+fun maaseutuva'esto'_NK : NK ;
+fun maasiira_NK : NK ;
+fun maasilta_NK : NK ;
+fun maasota_NK : NK ;
+fun maasotatoimi_NK : NK ;
+fun maastoajo_NK : NK ;
+fun maastoajoneuvo_NK : NK ;
+fun maastoauto_NK : NK ;
+fun maastoeste_NK : NK ;
+fun maastoharjoitus_NK : NK ;
+fun maastohiihto_NK : NK ;
+fun maastojuoksu_NK : NK ;
+fun maastokelpoinen_NK : NK ;
+fun maastokelpoisuus_NK : NK ;
+fun maastokuvioinen_NK : NK ;
+fun maastokuviointi_NK : NK ;
+fun maastolaatikko_NK : NK ;
+fun maastoliikenne_NK : NK ;
+fun maastomarssi_NK : NK ;
+fun maastopalo_NK : NK ;
+fun maastopuku_NK : NK ;
+fun maastopyo'ra'_NK : NK ;
+fun maastopyo'ra'ily_NK : NK ;
+fun maastoratsastus_NK : NK ;
+fun maastovaihde_NK : NK ;
+fun maasulku_NK : NK ;
+fun maasa'lpa'_NK : NK ;
+fun maasa'teily_NK : NK ;
+fun maataide_NK : NK ;
+fun maataideteos_NK : NK ;
+fun maataistelu_NK : NK ;
+fun maataistelukone_NK : NK ;
+fun maataiteilija_NK : NK ;
+fun maatalo_NK : NK ;
+fun maatalous_NK : NK ;
+fun maatalousekonomia_NK : NK ;
+fun maatalouskauppa_NK : NK ;
+fun maatalouskone_NK : NK ;
+fun maatalouskoneasentaja_NK : NK ;
+fun maatalouslomittaja_NK : NK ;
+fun maatalousmaa_NK : NK ;
+fun maatalousministeri_NK : NK ;
+fun maatalousministerio'_NK : NK ;
+fun maatalousneuvoja_NK : NK ;
+fun maatalousneuvonta_NK : NK ;
+fun maatalousna'yttely_NK : NK ;
+fun maatalouspolitiikka_NK : NK ;
+fun maatalousseura_NK : NK ;
+fun maatalousseutu_NK : NK ;
+fun maataloustarvike_NK : NK ;
+fun maatalousteknologia_NK : NK ;
+fun maataloustiede_NK : NK ;
+fun maataloustraktori_NK : NK ;
+fun maataloustuki_NK : NK ;
+fun maataloustuotanto_NK : NK ;
+fun maataloustuote_NK : NK ;
+fun maataloustuottaja_NK : NK ;
+fun maataloustyo'_NK : NK ;
+fun maatalousyritta'ja'_NK : NK ;
+fun maatalousyritys_NK : NK ;
+fun maatameno_NK : NK ;
+fun maatapano_NK : NK ;
+fun maateitse_NK : NK ;
+fun maatiainen_NK : NK ;
+fun maatila_NK : NK ;
+fun maatilalomailu_NK : NK ;
+fun maatilamajoitus_NK : NK ;
+fun maatilamatkailu_NK : NK ;
+fun maatilamyyma'la'_NK : NK ;
+fun maatilatalous_NK : NK ;
+fun maatilkku_NK : NK ;
+fun maattojohdin_NK : NK ;
+fun maattojohto_NK : NK ;
+fun maatuma_NK : NK ;
+fun maatuska_NK : NK ;
+fun maatuskanukke_NK : NK ;
+fun maatuuli_NK : NK ;
+fun maatyo'_NK : NK ;
+fun maatyo'la'inen_NK : NK ;
+fun maatyo'mies_NK : NK ;
+fun maata'hti_NK : NK ;
+fun maauimala_NK : NK ;
+fun maavara_NK : NK ;
+fun maavarsi_NK : NK ;
+fun maaverso_NK : NK ;
+fun maavesi_NK : NK ;
+fun maavuoto_NK : NK ;
+fun maava'ri_NK : NK ;
+fun maayhteys_NK : NK ;
+fun maayo'kko'nen_NK : NK ;
+fun maaa'iti_NK : NK ;
+fun maao'ljy_NK : NK ;
+fun machomies_NK : NK ;
+fun madamemalli_NK : NK ;
+fun madeiraviini_NK : NK ;
+fun madekeitto_NK : NK ;
+fun mademuhennos_NK : NK ;
+fun madonnamainen_NK : NK ;
+fun madonnatyyppi_NK : NK ;
+fun madrasruutuinen_NK : NK ;
+fun magneettikentta'_NK : NK ;
+fun magneettikiisu_NK : NK ;
+fun magneettikompassi_NK : NK ;
+fun magneettikortti_NK : NK ;
+fun magneettikorttimuisti_NK : NK ;
+fun magneettikuvaus_NK : NK ;
+fun magneettika'a'mi_NK : NK ;
+fun magneettika'a'mitys_NK : NK ;
+fun magneettilevy_NK : NK ;
+fun magneettimiina_NK : NK ;
+fun magneettimuisti_NK : NK ;
+fun magneettimuste_NK : NK ;
+fun magneettinapa_NK : NK ;
+fun magneettinauha_NK : NK ;
+fun magneettineula_NK : NK ;
+fun magneettiraita_NK : NK ;
+fun magneettisalpa_NK : NK ;
+fun magneettitarra_NK : NK ;
+fun magneettivoima_NK : NK ;
+fun magneettivoimaviiva_NK : NK ;
+fun magneettia'a'ni_NK : NK ;
+fun magneettosytytys_NK : NK ;
+fun mahahappo_NK : NK ;
+fun mahahuuhtelu_NK : NK ;
+fun mahakatarri_NK : NK ;
+fun mahakelkka_NK : NK ;
+fun mahakipu_NK : NK ;
+fun mahalasku_NK : NK ;
+fun mahalaukku_NK : NK ;
+fun mahaletku_NK : NK ;
+fun mahaneste_NK : NK ;
+fun mahanesterauhanen_NK : NK ;
+fun mahapalkka_NK : NK ;
+fun mahapiironki_NK : NK ;
+fun mahapuoli_NK : NK ;
+fun maharad_a_NK : NK ;
+fun maharauhanen_NK : NK ;
+fun mahasyo'pa'_NK : NK ;
+fun mahatauti_NK : NK ;
+fun mahavaiva_NK : NK ;
+fun mahonkikasvi_NK : NK ;
+fun mahonkipuu_NK : NK ;
+fun mahonkivene_NK : NK ;
+fun mahonkiviilu_NK : NK ;
+fun mahtiasema_NK : NK ;
+fun mahtika'sky_NK : NK ;
+fun mahtimies_NK : NK ;
+fun mahtisana_NK : NK ;
+fun mahtitekija'_NK : NK ;
+fun maihinmeno_NK : NK ;
+fun maihinnousu_NK : NK ;
+fun maihinnousualus_NK : NK ;
+fun maihinnousujoukko_NK : NK ;
+fun maihinnousukenka'_NK : NK ;
+fun maihinnousukortti_NK : NK ;
+fun maihinnoususilta_NK : NK ;
+fun maihinnousutakki_NK : NK ;
+fun mailakamppi_NK : NK ;
+fun mailapoika_NK : NK ;
+fun mailasarja_NK : NK ;
+fun mainesana_NK : NK ;
+fun maineteko_NK : NK ;
+fun mainosarvo_NK : NK ;
+fun mainosfilmi_NK : NK ;
+fun mainosgraafikko_NK : NK ;
+fun mainosgrafiikka_NK : NK ;
+fun mainoshoitaja_NK : NK ;
+fun mainosjuliste_NK : NK ;
+fun mainosjulkaisu_NK : NK ;
+fun mainoskampanja_NK : NK ;
+fun mainoskatko_NK : NK ;
+fun mainoskieli_NK : NK ;
+fun mainoskilpi_NK : NK ;
+fun mainoslahja_NK : NK ;
+fun mainoslause_NK : NK ;
+fun mainoslehtinen_NK : NK ;
+fun mainoslippu_NK : NK ;
+fun mainosmies_NK : NK ;
+fun mainosnukke_NK : NK ;
+fun mainospala_NK : NK ;
+fun mainospiirta'ja'_NK : NK ;
+fun mainospilari_NK : NK ;
+fun mainospa'a'llikko'_NK : NK ;
+fun mainosradio_NK : NK ;
+fun mainosrumpu_NK : NK ;
+fun mainossihteeri_NK : NK ;
+fun mainosspotti_NK : NK ;
+fun mainostaja_NK : NK ;
+fun mainostaulu_NK : NK ;
+fun mainosteksti_NK : NK ;
+fun mainostelevisio_NK : NK ;
+fun mainosteline_NK : NK ;
+fun mainostemppu_NK : NK ;
+fun mainostoimisto_NK : NK ;
+fun mainostoimittaja_NK : NK ;
+fun mainosvalo_NK : NK ;
+fun mainosva'line_NK : NK ;
+fun maisemahakkuu_NK : NK ;
+fun maisemakonttori_NK : NK ;
+fun maisemakortti_NK : NK ;
+fun maisemakuva_NK : NK ;
+fun maisemamaalari_NK : NK ;
+fun maisemamaalaus_NK : NK ;
+fun maisematapetti_NK : NK ;
+fun maisemataulu_NK : NK ;
+fun maisemavaurio_NK : NK ;
+fun maissijauho_NK : NK ;
+fun maissikakku_NK : NK ;
+fun maissimatto_NK : NK ;
+fun maissimuro_NK : NK ;
+fun maissipelto_NK : NK ;
+fun maissita'rkkelys_NK : NK ;
+fun maissio'ljy_NK : NK ;
+fun maitoallergia_NK : NK ;
+fun maitoastia_NK : NK ;
+fun maitoauto_NK : NK ;
+fun maitohammas_NK : NK ;
+fun maitohampaisto_NK : NK ;
+fun maitohappo_NK : NK ;
+fun maitohappobakteeri_NK : NK ;
+fun maitohappoka'yminen_NK : NK ;
+fun maitohome_NK : NK ;
+fun maitohorsma_NK : NK ;
+fun maitohuone_NK : NK ;
+fun maitojauhe_NK : NK ;
+fun maitojuna_NK : NK ;
+fun maitojuoma_NK : NK ;
+fun maitoja'a'telo'_NK : NK ;
+fun maitokaakao_NK : NK ;
+fun maitokaali_NK : NK ;
+fun maitokahvi_NK : NK ;
+fun maitokannu_NK : NK ;
+fun maitokauppa_NK : NK ;
+fun maitokuume_NK : NK ;
+fun maitokvartsi_NK : NK ;
+fun maitolasi_NK : NK ;
+fun maitolava_NK : NK ;
+fun maitolitra_NK : NK ;
+fun maitomainen_NK : NK ;
+fun maitoparta_NK : NK ;
+fun maitopisara_NK : NK ;
+fun maitopullo_NK : NK ;
+fun maitopurkki_NK : NK ;
+fun maitopysto'_NK : NK ;
+fun maitorahka_NK : NK ;
+fun maitorakkula_NK : NK ;
+fun maitorasva_NK : NK ;
+fun maitorauhanen_NK : NK ;
+fun maitoravinto_NK : NK ;
+fun maitoruoka_NK : NK ;
+fun maitoruokinta_NK : NK ;
+fun maitorupi_NK : NK ;
+fun maitosokeri_NK : NK ;
+fun maitosokeriha'irio'_NK : NK ;
+fun maitosuklaa_NK : NK ;
+fun maitotalous_NK : NK ;
+fun maitotaloustuote_NK : NK ;
+--? fun maitotiehyt_NK : NK ;
+fun maitotiiviste_NK : NK ;
+fun maitotili_NK : NK ;
+fun maitotilkka_NK : NK ;
+fun maitotonkka_NK : NK ;
+fun maitotuote_NK : NK ;
+fun maitoto'lkki_NK : NK ;
+fun maitovalmiste_NK : NK ;
+fun majakkalaiva_NK : NK ;
+fun majapaikka_NK : NK ;
+fun majatalo_NK : NK ;
+fun majavaturkki_NK : NK ;
+fun majesteettirikos_NK : NK ;
+fun majoitusalue_NK : NK ;
+fun majoitusliike_NK : NK ;
+fun majoneesikastike_NK : NK ;
+fun makaronilaatikko_NK : NK ;
+fun makasiinihaulikko_NK : NK ;
+fun makeavetinen_NK : NK ;
+fun makeutusaine_NK : NK ;
+fun makkarakastike_NK : NK ;
+fun makkarakeitto_NK : NK ;
+fun makkarakioski_NK : NK ;
+fun makkaramainen_NK : NK ;
+fun makkaramassa_NK : NK ;
+fun makkarapala_NK : NK ;
+fun makkarapo'tko'_NK : NK ;
+fun makkarasoppa_NK : NK ;
+fun makkaratikku_NK : NK ;
+fun makkaraviipale_NK : NK ;
+fun makkilanta_NK : NK ;
+fun makrohistoria_NK : NK ;
+fun makrokieli_NK : NK ;
+fun makrokosmos_NK : NK ;
+fun makrokuvaus_NK : NK ;
+fun makroka'sky_NK : NK ;
+fun makromolekyyli_NK : NK ;
+fun makromolekyylikemia_NK : NK ;
+fun makro_objektiivi_NK : NK ;
+fun makroravinne_NK : NK ;
+fun maksakirroosi_NK : NK ;
+fun maksalaatikko_NK : NK ;
+fun maksala'ikka'_NK : NK ;
+fun maksala'iska'_NK : NK ;
+fun maksamakkara_NK : NK ;
+fun maksapasteija_NK : NK ;
+fun maksapatee_NK : NK ;
+fun maksapihvi_NK : NK ;
+fun maksaruoho_NK : NK ;
+fun maksasairaus_NK : NK ;
+fun maksasammal_NK : NK ;
+fun maksasyo'pa'_NK : NK ;
+fun maksatulehdus_NK : NK ;
+fun maksata'pla'_NK : NK ;
+fun maksavuoka_NK : NK ;
+fun maksihame_NK : NK ;
+fun maksimaalinen_NK : NK ;
+fun maksimiannos_NK : NK ;
+fun maksimiarvo_NK : NK ;
+fun maksimikorkeus_NK : NK ;
+fun maksimikortti_NK : NK ;
+fun maksimima'a'ra'_NK : NK ;
+fun maksiminopeus_NK : NK ;
+fun maksimuoti_NK : NK ;
+fun maksipituinen_NK : NK ;
+fun maksivene_NK : NK ;
+fun maksuehto_NK : NK ;
+fun maksuera'_NK : NK ;
+fun maksuha'irio'_NK : NK ;
+fun maksuja'rjestely_NK : NK ;
+fun maksukausi_NK : NK ;
+fun maksukehotus_NK : NK ;
+fun maksukielto_NK : NK ;
+fun maksukortti_NK : NK ;
+fun maksukyky_NK : NK ;
+fun maksukykyinen_NK : NK ;
+fun maksukyvyto'n_NK : NK ;
+fun maksuliike_NK : NK ;
+fun maksuliikenne_NK : NK ;
+fun maksulomake_NK : NK ;
+fun maksumies_NK : NK ;
+fun maksuma'a'ra'ys_NK : NK ;
+fun maksuosoitus_NK : NK ;
+fun maksupalvelu_NK : NK ;
+fun maksupalvelusopimus_NK : NK ;
+fun maksuperuste_NK : NK ;
+fun maksupuoli_NK : NK ;
+fun maksupa'a'te_NK : NK ;
+fun maksusitoumus_NK : NK ;
+fun maksusopimus_NK : NK ;
+fun maksusyka'ys_NK : NK ;
+fun maksutase_NK : NK ;
+fun maksutosite_NK : NK ;
+fun maksuunpanoluettelo_NK : NK ;
+fun maksuvaikeus_NK : NK ;
+fun maksuvalmius_NK : NK ;
+fun maksuva'line_NK : NK ;
+fun makuaine_NK : NK ;
+fun makuaisti_NK : NK ;
+fun makuaistimus_NK : NK ;
+fun makuasia_NK : NK ;
+fun makuhaitta_NK : NK ;
+fun makuhermo_NK : NK ;
+fun makulatuuripaperi_NK : NK ;
+fun makunystyra'_NK : NK ;
+fun makupala_NK : NK ;
+fun makureseptori_NK : NK ;
+fun makusilmu_NK : NK ;
+fun makusuunta_NK : NK ;
+fun makutottumus_NK : NK ;
+fun makutuomari_NK : NK ;
+fun makuualkovi_NK : NK ;
+fun makuualusta_NK : NK ;
+fun makuuasento_NK : NK ;
+fun makuuhuone_NK : NK ;
+fun makuukamari_NK : NK ;
+fun makuulava_NK : NK ;
+fun makuupaikka_NK : NK ;
+fun makuupaikkalippu_NK : NK ;
+fun makuuparvi_NK : NK ;
+fun makuupussi_NK : NK ;
+fun makuusija_NK : NK ;
+fun makuusa'kki_NK : NK ;
+fun makuuvaunu_NK : NK ;
+fun makuuvaunuosasto_NK : NK ;
+fun makuuvaunupaikka_NK : NK ;
+fun makuvirhe_NK : NK ;
+fun makuvivahde_NK : NK ;
+fun malagaviini_NK : NK ;
+fun malaijilainen_NK : NK ;
+fun malariasa'a'ski_NK : NK ;
+fun maljakkokukka_NK : NK ;
+fun maljakkomaalaus_NK : NK ;
+fun maljamainen_NK : NK ;
+fun maljapuhe_NK : NK ;
+fun maljasieni_NK : NK ;
+fun malkakatto_NK : NK ;
+fun mallasjuoma_NK : NK ;
+fun mallasohra_NK : NK ;
+fun mallassokeri_NK : NK ;
+fun mallasuute_NK : NK ;
+fun mallasviski_NK : NK ;
+fun mallikappale_NK : NK ;
+fun mallikelpoinen_AK : AK ;
+fun mallikelpoisuus_NK : NK ;
+fun mallikoe_NK : NK ;
+fun mallineule_NK : NK ;
+fun mallinukke_NK : NK ;
+fun mallina'yte_NK : NK ;
+fun mallioikeus_NK : NK ;
+fun mallioppilas_NK : NK ;
+fun mallipiirros_NK : NK ;
+fun mallipiirustus_NK : NK ;
+fun mallipukine_NK : NK ;
+fun mallirekisteri_NK : NK ;
+fun mallisuoja_NK : NK ;
+fun malliteoria_NK : NK ;
+fun mallitilkku_NK : NK ;
+fun mallitoimisto_NK : NK ;
+fun mallivaimo_NK : NK ;
+fun mallivalikoima_NK : NK ;
+fun malmiesiintyma'_NK : NK ;
+fun malmigeologia_NK : NK ;
+fun malmijuoni_NK : NK ;
+fun malmikaivos_NK : NK ;
+fun malmikentta'_NK : NK ;
+fun malmikerros_NK : NK ;
+fun malmikerrostuma_NK : NK ;
+fun malmikoira_NK : NK ;
+fun malmilo'ydo's_NK : NK ;
+fun malmimineraali_NK : NK ;
+fun malmimuodostuma_NK : NK ;
+fun malmina'yte_NK : NK ;
+fun malmipitoinen_NK : NK ;
+fun malmipitoisuus_NK : NK ;
+fun malmirikas_NK : NK ;
+fun malmirikaste_NK : NK ;
+fun malmisuoni_NK : NK ;
+fun malvakasvi_NK : NK ;
+fun mammamekko_NK : NK ;
+fun mammuttimainen_NK : NK ;
+fun mammuttipeta'ja'_NK : NK ;
+fun mammuttitauti_NK : NK ;
+fun mandaattialue_NK : NK ;
+fun mandariinikiina_NK : NK ;
+fun maneerimainen_AK : AK ;
+fun mangaanitera's_NK : NK ;
+fun mangrovemetsikko'_NK : NK ;
+fun mangrovemetsa'_NK : NK ;
+fun mangrovepuu_NK : NK ;
+fun mangrovepuukasvi_NK : NK ;
+fun manilahamppu_NK : NK ;
+fun manilako'ysi_NK : NK ;
+fun mannapuuro_NK : NK ;
+fun mannaryyni_NK : NK ;
+fun mannaryynipuuro_NK : NK ;
+fun mannasuurimo_NK : NK ;
+fun mannekiinikoulu_NK : NK ;
+fun mannekiinikurssi_NK : NK ;
+fun mannerilmasto_NK : NK ;
+fun mannerjalusta_NK : NK ;
+fun mannerja'a'_NK : NK ;
+fun mannerja'a'tikko'_NK : NK ;
+fun mannerlaatta_NK : NK ;
+fun mannermaa_NK : NK ;
+fun mannermaajalusta_NK : NK ;
+fun mannermaalainen_NK : NK ;
+fun mannermainen_AK : AK ;
+fun mannerrinne_NK : NK ;
+fun mannervaltio_NK : NK ;
+fun mansikkahillo_NK : NK ;
+fun mansikkaja'a'telo'_NK : NK ;
+fun mansikkakakku_NK : NK ;
+fun mansikkamaa_NK : NK ;
+fun mansikkamaito_NK : NK ;
+fun mansikkamehu_NK : NK ;
+fun mansikkapaikka_NK : NK ;
+fun mansikkapelto_NK : NK ;
+fun mansikkaviljelys_NK : NK ;
+fun mantelilastu_NK : NK ;
+fun mantelimassa_NK : NK ;
+fun mantelipuu_NK : NK ;
+fun mantelirouhe_NK : NK ;
+fun mantelisilma'_NK : NK ;
+fun mantelisilma'inen_NK : NK ;
+fun mantelio'ljy_NK : NK ;
+fun mantopuu_NK : NK ;
+fun maratonjuoksija_NK : NK ;
+fun maratonjuoksu_NK : NK ;
+fun maratonkeskustelu_NK : NK ;
+fun maratonkilpailu_NK : NK ;
+fun maratonkonsertti_NK : NK ;
+fun maratonpuhuja_NK : NK ;
+fun maratonvoittaja_NK : NK ;
+fun marenkikakku_NK : NK ;
+fun marenkikuorrute_NK : NK ;
+fun marenkikuorrutus_NK : NK ;
+fun marenkileivos_NK : NK ;
+fun margariinipaketti_NK : NK ;
+fun margariinirasia_NK : NK ;
+fun margariiniteollisuus_NK : NK ;
+fun marginaalivero_NK : NK ;
+fun marionettihallitus_NK : NK ;
+fun marionettiteatteri_NK : NK ;
+fun marisija_NK : NK ;
+fun marjahillo_NK : NK ;
+fun marjakasvi_NK : NK ;
+fun marjakiisseli_NK : NK ;
+fun marjakuusi_NK : NK ;
+fun marjamaito_NK : NK ;
+fun marjamehu_NK : NK ;
+fun marjapaikka_NK : NK ;
+fun marjapensas_NK : NK ;
+fun marjapussi_NK : NK ;
+fun marjapuuro_NK : NK ;
+fun marjasato_NK : NK ;
+fun marjasose_NK : NK ;
+fun marjasa'ilyke_NK : NK ;
+fun marjaterttu_NK : NK ;
+fun marjatila_NK : NK ;
+fun marjatomaatti_NK : NK ;
+fun marjatuokkonen_NK : NK ;
+fun marjaviini_NK : NK ;
+fun marjavuosi_NK : NK ;
+fun markiisikangas_NK : NK ;
+fun markkama'a'ra'_NK : NK ;
+fun markkama'a'ra'inen_NK : NK ;
+fun markkinahakkuu_NK : NK ;
+fun markkinahinta_NK : NK ;
+fun markkinajohtaja_NK : NK ;
+fun markkinajohtajuus_NK : NK ;
+fun markkinakauppa_NK : NK ;
+fun markkinakausi_NK : NK ;
+fun markkinakoju_NK : NK ;
+fun markkinakorko_NK : NK ;
+fun markkinamekanismi_NK : NK ;
+fun markkinaosuus_NK : NK ;
+fun markkinapaikka_NK : NK ;
+fun markkinaraha_NK : NK ;
+fun markkinarako_NK : NK ;
+fun markkinatalous_NK : NK ;
+fun markkinatalousmaa_NK : NK ;
+fun markkinatunnelma_NK : NK ;
+fun markkinatutkimus_NK : NK ;
+fun markkinointijohtaja_NK : NK ;
+fun markkinointimies_NK : NK ;
+fun markkinointipa'a'llikko'_NK : NK ;
+fun markkinointisihteeri_NK : NK ;
+fun marmeladimakeinen_NK : NK ;
+fun marmeladirasia_NK : NK ;
+fun marmorikivi_NK : NK ;
+fun marmorilaatta_NK : NK ;
+fun marmorilattia_NK : NK ;
+fun marmorilouhos_NK : NK ;
+fun marmoripaperi_NK : NK ;
+fun marmoripatsas_NK : NK ;
+fun marmoripylva's_NK : NK ;
+fun marmorireliefi_NK : NK ;
+fun marmorisementti_NK : NK ;
+fun marmoriveistos_NK : NK ;
+fun marraskasvi_NK : NK ;
+fun marraskuinen_NK : NK ;
+fun marraskuu_NK : NK ;
+fun marsala_NK : NK ;
+fun marsalaviini_NK : NK ;
+fun marskimaa_NK : NK ;
+fun marssija_NK : NK ;
+fun marssija'rjestys_NK : NK ;
+fun marssilaulu_NK : NK ;
+fun marssimurtuma_NK : NK ;
+fun marssimusiikki_NK : NK ;
+fun marssinopeus_NK : NK ;
+fun marssiosasto_NK : NK ;
+fun marssirivisto'_NK : NK ;
+fun martiopuoli_NK : NK ;
+fun marttayhdistys_NK : NK ;
+fun marttyyrikuolema_NK : NK ;
+fun masennuskausi_NK : NK ;
+fun masennusla'a'ke_NK : NK ;
+fun masennustila_NK : NK ;
+fun maskuliinimuoto_NK : NK ;
+fun maskuliinisuku_NK : NK ;
+fun maskuliinisukuinen_NK : NK ;
+fun massahyo'kka'ys_NK : NK ;
+fun massakentta'_NK : NK ;
+fun massakulttuuri_NK : NK ;
+fun massaluku_NK : NK ;
+fun massamuisti_NK : NK ;
+fun massamuoti_NK : NK ;
+fun massamurha_NK : NK ;
+fun massapsykologia_NK : NK ;
+fun massapsykoosi_NK : NK ;
+fun massatavara_NK : NK ;
+fun massatiedotus_NK : NK ;
+fun massatiedotusva'line_NK : NK ;
+fun massatuotanto_NK : NK ;
+fun massatuote_NK : NK ;
+fun massaturismi_NK : NK ;
+fun massatyo'tto'myys_NK : NK ;
+fun massaurheilu_NK : NK ;
+fun massavaikutus_NK : NK ;
+fun massavajaus_NK : NK ;
+fun massavalmiste_NK : NK ;
+fun massavalmistus_NK : NK ;
+fun massaviihde_NK : NK ;
+fun massiivipuu_NK : NK ;
+fun masuuni_NK : NK ;
+fun masuunikuona_NK : NK ;
+fun matalajaksoinen_NK : NK ;
+fun matalajalkainen_NK : NK ;
+fun matalakantainen_NK : NK ;
+fun matalakasvuinen_NK : NK ;
+fun matalakorkoinen_NK : NK ;
+fun matalalento_NK : NK ;
+fun matalaoktaaninen_NK : NK ;
+fun matalaotsainen_NK : NK ;
+fun matalapaineinen_NK : NK ;
+fun matalapalkkainen_NK : NK ;
+fun matalarantainen_NK : NK ;
+fun matalareunainen_NK : NK ;
+fun matalatasoinen_NK : NK ;
+fun matalatehoinen_NK : NK ;
+fun matalavaahtoinen_NK : NK ;
+fun matalaa'a'ninen_NK : NK ;
+fun matelukaista_NK : NK ;
+fun mateluvaihde_NK : NK ;
+fun mateluvauhti_NK : NK ;
+fun matematiikkakone_NK : NK ;
+fun materiaalihallinto_NK : NK ;
+fun materiaalinen_NK : NK ;
+fun materiaalitaistelu_NK : NK ;
+fun materiaalitappio_NK : NK ;
+fun matineana'yta'nto'_NK : NK ;
+fun matkaeva's_NK : NK ;
+fun matkahuopa_NK : NK ;
+fun matkailuauto_NK : NK ;
+fun matkailuesite_NK : NK ;
+fun matkailukausi_NK : NK ;
+fun matkailukeskus_NK : NK ;
+fun matkailukohde_NK : NK ;
+fun matkailuliikenne_NK : NK ;
+fun matkailumaa_NK : NK ;
+fun matkailumainonta_NK : NK ;
+fun matkailumainos_NK : NK ;
+fun matkailuneuvos_NK : NK ;
+fun matkailutase_NK : NK ;
+fun matkailuteollisuus_NK : NK ;
+fun matkailuvaunu_NK : NK ;
+fun matkailuyhdistys_NK : NK ;
+fun matkakertomus_NK : NK ;
+fun matkakirja_NK : NK ;
+fun matkakirjailija_NK : NK ;
+fun matkakirje_NK : NK ;
+fun matkakorvaus_NK : NK ;
+fun matkakoti_NK : NK ;
+fun matkakulu_NK : NK ;
+fun matkakumppani_NK : NK ;
+fun matkakunto_NK : NK ;
+fun matkakustannus_NK : NK ;
+fun matkakuume_NK : NK ;
+fun matkakuva_NK : NK ;
+fun matkakuvaus_NK : NK ;
+fun matkalainen_NK : NK ;
+fun matkalasku_NK : NK ;
+fun matkalaukku_NK : NK ;
+fun matkalaukkuela'ma'_NK : NK ;
+fun matkalaukkulapsi_NK : NK ;
+fun matkalento_NK : NK ;
+fun matkalentonopeus_NK : NK ;
+fun matkalippu_NK : NK ;
+fun matkalukeminen_NK : NK ;
+fun matkaluokka_NK : NK ;
+fun matkamies_NK : NK ;
+fun matkamittari_NK : NK ;
+fun matkamuisto_NK : NK ;
+fun matkama'a'ra'ys_NK : NK ;
+fun matkanopeus_NK : NK ;
+fun matkaohjelma_NK : NK ;
+fun matkaopas_NK : NK ;
+fun matkaosuus_NK : NK ;
+fun matkapapisto_NK : NK ;
+fun matkapappi_NK : NK ;
+fun matkapassi_NK : NK ;
+fun matkapuhelin_NK : NK ;
+fun matkapuhelinverkko_NK : NK ;
+fun matkapuhelu_NK : NK ;
+fun matkapurjehdus_NK : NK ;
+fun matkapursi_NK : NK ;
+fun matkaradio_NK : NK ;
+fun matkaraha_NK : NK ;
+fun matkareitti_NK : NK ;
+fun matkasaarnaaja_NK : NK ;
+fun matkasauva_NK : NK ;
+fun matkasekki_NK : NK ;
+fun matkaseura_NK : NK ;
+fun matkaseuralainen_NK : NK ;
+fun matkaseurue_NK : NK ;
+fun matkastipendi_NK : NK ;
+fun matkatavara_NK : NK ;
+fun matkatavarasa'ilo'_NK : NK ;
+fun matkatavaratoimisto_NK : NK ;
+fun matkatavaravakuutus_NK : NK ;
+fun matkatelevisio_NK : NK ;
+fun matkatoimisto_NK : NK ;
+fun matkatoveri_NK : NK ;
+fun matkavakuutus_NK : NK ;
+fun matkavalmis_NK : NK ;
+fun matkavalmistelu_NK : NK ;
+fun matkavaluutta_NK : NK ;
+fun matkavaruste_NK : NK ;
+fun matkavene_NK : NK ;
+fun matkava'symys_NK : NK ;
+fun matkustajajuna_NK : NK ;
+fun matkustajakone_NK : NK ;
+fun matkustajakoti_NK : NK ;
+fun matkustajalaiva_NK : NK ;
+fun matkustajaliikenne_NK : NK ;
+fun matkustajatila_NK : NK ;
+fun matkustajavaunu_NK : NK ;
+fun matkustusluokka_NK : NK ;
+fun matkustusva'line_NK : NK ;
+fun matokomposti_NK : NK ;
+fun matokompostori_NK : NK ;
+fun matokuuri_NK : NK ;
+fun matola'a'ke_NK : NK ;
+fun matosyo'tti_NK : NK ;
+fun matriisikirjoitin_NK : NK ;
+fun matrikkelitieto_NK : NK ;
+fun mattamusta_NK : NK ;
+fun mattapintainen_NK : NK ;
+fun mattava'ri_NK : NK ;
+fun mattiasema_NK : NK ;
+fun mattimyo'ha'inen_NK : NK ;
+fun mattisiirto_NK : NK ;
+fun mattoharja_NK : NK ;
+fun mattokauppa_NK : NK ;
+fun mattokutomo_NK : NK ;
+fun mattoliike_NK : NK ;
+fun mattopaini_NK : NK ;
+fun mattopiiska_NK : NK ;
+fun mattosuutin_NK : NK ;
+fun mattotuomari_NK : NK ;
+fun mattoveitsi_NK : NK ;
+fun maturiteettikoe_NK : NK ;
+fun maurilainen_NK : NK ;
+fun mausteastia_NK : NK ;
+fun maustefenkoli_NK : NK ;
+fun maustehylly_NK : NK ;
+fun maustehyllykko'_NK : NK ;
+fun maustekakku_NK : NK ;
+fun maustekala_NK : NK ;
+fun maustekastike_NK : NK ;
+fun maustekasvi_NK : NK ;
+fun maustekimppu_NK : NK ;
+fun maustekirveli_NK : NK ;
+fun maustekurkku_NK : NK ;
+fun mausteleikkuri_NK : NK ;
+fun mausteliemi_NK : NK ;
+fun maustemeirami_NK : NK ;
+fun maustemylly_NK : NK ;
+fun mausteneilikka_NK : NK ;
+fun maustepaprika_NK : NK ;
+fun maustepippuri_NK : NK ;
+fun maustepurkki_NK : NK ;
+fun mausteseos_NK : NK ;
+fun maustesilakka_NK : NK ;
+fun maustesilli_NK : NK ;
+fun maustesuola_NK : NK ;
+fun maustevihannes_NK : NK ;
+fun mausteyrtti_NK : NK ;
+fun mayaintiaani_NK : NK ;
+fun mayakulttuuri_NK : NK ;
+fun mediasirkus_NK : NK ;
+fun mediatapahtuma_NK : NK ;
+fun mediatutkimus_NK : NK ;
+fun meheva'lehtinen_NK : NK ;
+fun mehujuoma_NK : NK ;
+fun mehuja'a'_NK : NK ;
+fun mehuja'a'telo'_NK : NK ;
+fun mehukastike_NK : NK ;
+fun mehukeitto_NK : NK ;
+fun mehukiisseli_NK : NK ;
+fun mehulasi_NK : NK ;
+fun mehulinko_NK : NK ;
+fun mehupullo_NK : NK ;
+fun mehutiiviste_NK : NK ;
+fun meijeritalous_NK : NK ;
+fun meijeriteknikko_NK : NK ;
+fun meijeritili_NK : NK ;
+fun meijerituote_NK : NK ;
+fun meikkikyna'_NK : NK ;
+fun meikkilaukku_NK : NK ;
+fun meikkipussi_NK : NK ;
+fun meikkisivellin_NK : NK ;
+fun meikkivoide_NK : NK ;
+fun meika'manne_NK : NK ;
+fun meika'poika_NK : NK ;
+fun meika'tytto'_NK : NK ;
+fun meklarilista_NK : NK ;
+fun melaniini_NK : NK ;
+fun mellakkapoliisi_NK : NK ;
+fun mellotusuuni_NK : NK ;
+fun melontakilpailu_NK : NK ;
+fun meluaita_NK : NK ;
+fun melueste_NK : NK ;
+fun meluhaitta_NK : NK ;
+fun melukaide_NK : NK ;
+fun melula'hde_NK : NK ;
+fun melusaaste_NK : NK ;
+fun melusuoja_NK : NK ;
+fun meluvalli_NK : NK ;
+fun meluvamma_NK : NK ;
+fun menestysartikkeli_NK : NK ;
+fun menestysiskelma'_NK : NK ;
+fun menestysromaani_NK : NK ;
+fun menestystarina_NK : NK ;
+fun menestysteos_NK : NK ;
+fun menetelma'oppi_NK : NK ;
+fun menetelma'tiede_NK : NK ;
+fun menettelytapa_NK : NK ;
+fun menoarvio_NK : NK ;
+fun menoera'_NK : NK ;
+fun menoliikenne_NK : NK ;
+fun menolippu_NK : NK ;
+fun menomatka_NK : NK ;
+fun menopaussi_NK : NK ;
+fun menopuoli_NK : NK ;
+fun menosuunta_NK : NK ;
+fun menotili_NK : NK ;
+fun menotosite_NK : NK ;
+fun menotuuli_NK : NK ;
+fun menovesi_NK : NK ;
+fun mentolipastilli_NK : NK ;
+fun merenkulkulippu_NK : NK ;
+fun merenkulkumaksu_NK : NK ;
+fun merenkulkuneuvos_NK : NK ;
+fun merenkulkutaito_NK : NK ;
+fun merenrantakasvi_NK : NK ;
+fun merenrantakaupunki_NK : NK ;
+fun merenrantaniitty_NK : NK ;
+fun merentutkimusalus_NK : NK ;
+fun merenvahapiippu_NK : NK ;
+fun meriahven_NK : NK ;
+fun merialue_NK : NK ;
+fun merialus_NK : NK ;
+fun meriantura_NK : NK ;
+fun meriarkeologia_NK : NK ;
+fun meribiologia_NK : NK ;
+fun meriela'in_NK : NK ;
+fun meriela'ma'_NK : NK ;
+fun merihanhi_NK : NK ;
+fun meriharakka_NK : NK ;
+fun merihauki_NK : NK ;
+fun merihenkinen_NK : NK ;
+fun merihiekka_NK : NK ;
+fun merihirvio'_NK : NK ;
+fun meriha'ta'_NK : NK ;
+fun merikaali_NK : NK ;
+fun merikaapeli_NK : NK ;
+fun merikadetti_NK : NK ;
+fun merikaisla_NK : NK ;
+fun merikalastus_NK : NK ;
+fun merikapteeni_NK : NK ;
+fun merikarhu_NK : NK ;
+fun merikartta_NK : NK ;
+fun merikasvi_NK : NK ;
+fun merikasvisto_NK : NK ;
+fun merikelpoinen_NK : NK ;
+fun merikelpoisuus_NK : NK ;
+fun merikerrostuma_NK : NK ;
+fun merikipea'_NK : NK ;
+fun merikortti_NK : NK ;
+fun merikotka_NK : NK ;
+fun merikuljetus_NK : NK ;
+fun merika'a'rme_NK : NK ;
+fun merileijona_NK : NK ;
+fun merileva'_NK : NK ;
+fun meriliikenne_NK : NK ;
+fun merilintu_NK : NK ;
+fun merilohi_NK : NK ;
+fun merilokki_NK : NK ;
+fun merimaali_NK : NK ;
+fun merimahti_NK : NK ;
+fun merimaisema_NK : NK ;
+fun merimatka_NK : NK ;
+fun merimerkki_NK : NK ;
+fun merimies_NK : NK ;
+fun merimieskapakka_NK : NK ;
+fun merimieskaulus_NK : NK ;
+fun merimieskirkko_NK : NK ;
+fun merimieslaulu_NK : NK ;
+fun merimiesla'hetys_NK : NK ;
+fun merimiespappi_NK : NK ;
+fun merimiespihvi_NK : NK ;
+fun merimiespuku_NK : NK ;
+fun merimiessolmu_NK : NK ;
+fun merimiessa'kki_NK : NK ;
+fun merimiestapa_NK : NK ;
+fun merimiina_NK : NK ;
+fun merinolammas_NK : NK ;
+fun merinolanka_NK : NK ;
+fun merinovilla_NK : NK ;
+fun merioikeus_NK : NK ;
+fun meripalvelus_NK : NK ;
+fun meripelastus_NK : NK ;
+fun meripelastusalus_NK : NK ;
+fun meripeto_NK : NK ;
+fun meripihka_NK : NK ;
+fun meripoika_NK : NK ;
+fun meripuolustus_NK : NK ;
+fun meripyynti_NK : NK ;
+fun meriraja_NK : NK ;
+fun merirosvo_NK : NK ;
+fun merirosvolaiva_NK : NK ;
+fun merirosvolippu_NK : NK ;
+fun merirosvoradio_NK : NK ;
+fun merirosvous_NK : NK ;
+fun merisaarto_NK : NK ;
+fun merisairas_NK : NK ;
+fun merisairaus_NK : NK ;
+fun merisavu_NK : NK ;
+fun meriselitys_NK : NK ;
+fun merisota_NK : NK ;
+fun merisotilas_NK : NK ;
+fun meristrategia_NK : NK ;
+fun merisumu_NK : NK ;
+fun merisuola_NK : NK ;
+fun merisa'a'_NK : NK ;
+fun meritaimen_NK : NK ;
+fun meritaistelu_NK : NK ;
+fun meritekniikka_NK : NK ;
+fun meritekninen_NK : NK ;
+fun meritie_NK : NK ;
+fun meritiede_NK : NK ;
+fun meriturma_NK : NK ;
+fun merituuli_NK : NK ;
+fun merita'hti_NK : NK ;
+fun meriupseeri_NK : NK ;
+fun merivahinko_NK : NK ;
+fun merivakuutus_NK : NK ;
+fun merivakuutusyhtio'_NK : NK ;
+fun merivalta_NK : NK ;
+fun merivaltio_NK : NK ;
+fun merivalvonta_NK : NK ;
+fun merivartija_NK : NK ;
+fun merivartio_NK : NK ;
+fun merivartioalus_NK : NK ;
+fun merivartioasema_NK : NK ;
+fun merivartiointi_NK : NK ;
+fun merivartiosto_NK : NK ;
+fun merivartiovene_NK : NK ;
+fun merivene_NK : NK ;
+fun merivesi_NK : NK ;
+fun meriviitta_NK : NK ;
+fun merivirta_NK : NK ;
+fun merivuokko_NK : NK ;
+fun meriva'ki_NK : NK ;
+fun meriyhteys_NK : NK ;
+fun merkelikivi_NK : NK ;
+fun merkinantolaite_NK : NK ;
+fun merkinantolippu_NK : NK ;
+fun merkinta'hinta_NK : NK ;
+fun merkinta'oikeus_NK : NK ;
+fun merkinta'tapa_NK : NK ;
+fun merkitsevyystaso_NK : NK ;
+fun merkityslaina_NK : NK ;
+fun merkitysopillinen_NK : NK ;
+fun merkitysoppi_NK : NK ;
+fun merkitysvivahde_NK : NK ;
+fun merkkauslanka_NK : NK ;
+fun merkkiaine_NK : NK ;
+--? fun merkkifarkut_NK : NK ;
+fun merkkihenkilo'_NK : NK ;
+fun merkkihuolto_NK : NK ;
+fun merkkikieli_NK : NK ;
+fun merkkikorjaamo_NK : NK ;
+fun merkkimies_NK : NK ;
+fun merkkioppi_NK : NK ;
+fun merkkipaalu_NK : NK ;
+fun merkkipeli_NK : NK ;
+fun merkkipa'iva'_NK : NK ;
+fun merkkisuoritus_NK : NK ;
+fun merkkitapahtuma_NK : NK ;
+fun merkkitapaus_NK : NK ;
+fun merkkitavara_NK : NK ;
+fun merkkiteos_NK : NK ;
+fun merkkitietoinen_NK : NK ;
+fun merkkituli_NK : NK ;
+fun merkkituote_NK : NK ;
+fun merkkiuskollinen_NK : NK ;
+fun merkkivaate_NK : NK ;
+fun merkkivalo_NK : NK ;
+fun merkkiviiva_NK : NK ;
+fun merkkivuosi_NK : NK ;
+fun merkkia'a'ni_NK : NK ;
+fun mesiangervo_NK : NK ;
+fun mesikaste_NK : NK ;
+fun mesika'mmen_NK : NK ;
+fun mesimarja_NK : NK ;
+fun mesimarjaliko'o'ri_NK : NK ;
+fun mesipistia'inen_NK : NK ;
+fun mesisieni_NK : NK ;
+fun mesivadelma_NK : NK ;
+fun messiasusko_NK : NK ;
+fun messikalle_NK : NK ;
+fun messinkijuote_NK : NK ;
+fun messinkilevy_NK : NK ;
+fun messinkipuhallin_NK : NK ;
+fun messinkiruuvi_NK : NK ;
+fun messipoika_NK : NK ;
+fun messitytto'_NK : NK ;
+fun messuema'nta'_NK : NK ;
+fun messuhalli_NK : NK ;
+fun messukasukka_NK : NK ;
+fun messuosasto_NK : NK ;
+fun messutavara_NK : NK ;
+fun messuvieras_NK : NK ;
+fun mestariampuja_NK : NK ;
+fun mestariehdokas_NK : NK ;
+fun mestarijoukkue_NK : NK ;
+fun mestarikertoja_NK : NK ;
+fun mestarikokki_NK : NK ;
+fun mestariluokka_NK : NK ;
+fun mestariluomus_NK : NK ;
+fun mestarina'yte_NK : NK ;
+fun mestarisuoritus_NK : NK ;
+fun mestarisa'vellys_NK : NK ;
+fun mestariteos_NK : NK ;
+fun mestariurheilija_NK : NK ;
+fun mestaruuskilpailu_NK : NK ;
+fun mestaruuskisa_NK : NK ;
+fun mestaruusmitali_NK : NK ;
+fun mestaruusottelu_NK : NK ;
+fun mestaruussarja_NK : NK ;
+fun mestaruusturnaus_NK : NK ;
+fun mestauskirves_NK : NK ;
+fun mestauslava_NK : NK ;
+fun mestauspo'lkky_NK : NK ;
+fun metaanikaasu_NK : NK ;
+fun metalliarvo_NK : NK ;
+fun metalliastia_NK : NK ;
+fun metalliesine_NK : NK ;
+fun metallifolio_NK : NK ;
+fun metalliharkko_NK : NK ;
+fun metallihiukkanen_NK : NK ;
+fun metallihohde_NK : NK ;
+fun metallihohto_NK : NK ;
+fun metallijauhe_NK : NK ;
+fun metallikalvo_NK : NK ;
+fun metallikangas_NK : NK ;
+fun metallikappale_NK : NK ;
+fun metallikiilto_NK : NK ;
+fun metallikiiltoinen_NK : NK ;
+fun metallikoru_NK : NK ;
+fun metallikudos_NK : NK ;
+fun metallikuitu_NK : NK ;
+fun metallilakka_NK : NK ;
+fun metallilanka_NK : NK ;
+fun metallilastu_NK : NK ;
+fun metalliletku_NK : NK ;
+fun metallilevy_NK : NK ;
+fun metallimainen_NK : NK ;
+fun metallimies_NK : NK ;
+fun metallinhohtova'ri_NK : NK ;
+fun metallintyo'sto'kone_NK : NK ;
+fun metallioppi_NK : NK ;
+fun metallipinta_NK : NK ;
+fun metallipitoinen_NK : NK ;
+fun metallipitoisuus_NK : NK ;
+fun metallipora_NK : NK ;
+fun metalliputki_NK : NK ;
+fun metallipa'a'llyste_NK : NK ;
+fun metalliraha_NK : NK ;
+fun metallirikas_NK : NK ;
+fun metalliseos_NK : NK ;
+fun metallisulatto_NK : NK ;
+fun metallisuola_NK : NK ;
+fun metalliteollisuus_NK : NK ;
+fun metallituote_NK : NK ;
+fun metallityo'la'inen_NK : NK ;
+fun metallivalimo_NK : NK ;
+fun metallivalos_NK : NK ;
+fun metalliverkko_NK : NK ;
+fun metalliva'ri_NK : NK ;
+fun metelivesi_NK : NK ;
+fun metodioppi_NK : NK ;
+fun metodistikirkko_NK : NK ;
+fun metriluku_NK : NK ;
+fun metrimitta_NK : NK ;
+fun metritavara_NK : NK ;
+fun metroasema_NK : NK ;
+fun metrojuna_NK : NK ;
+fun metroliikenne_NK : NK ;
+fun metropoli_NK : NK ;
+fun metrorata_NK : NK ;
+fun metrotunneli_NK : NK ;
+fun metrovaunu_NK : NK ;
+fun metsokukko_NK : NK ;
+fun metsa'ajo_NK : NK ;
+fun metsa'alue_NK : NK ;
+fun metsa'biologia_NK : NK ;
+fun metsa'ekologia_NK : NK ;
+fun metsa'ekonomia_NK : NK ;
+fun metsa'hanhi_NK : NK ;
+fun metsa'hiiri_NK : NK ;
+fun metsa'imarre_NK : NK ;
+fun metsa'isyys_NK : NK ;
+fun metsa'jasmiini_NK : NK ;
+fun metsa'ja'nis_NK : NK ;
+fun metsa'kaarti_NK : NK ;
+fun metsa'kaartilainen_NK : NK ;
+fun metsa'kana_NK : NK ;
+fun metsa'kastikka_NK : NK ;
+fun metsa'kasvi_NK : NK ;
+fun metsa'kauppa_NK : NK ;
+fun metsa'kauris_NK : NK ;
+fun metsa'keskus_NK : NK ;
+fun metsa'kone_NK : NK ;
+fun metsa'koneasentaja_NK : NK ;
+fun metsa'kukka_NK : NK ;
+fun metsa'kuolema_NK : NK ;
+fun metsa'ka'mppa'_NK : NK ;
+fun metsa'ko'ynno's_NK : NK ;
+fun metsa'lampi_NK : NK ;
+fun metsa'lauha_NK : NK ;
+fun metsa'lehmus_NK : NK ;
+fun metsa'lintu_NK : NK ;
+fun metsa'luonto_NK : NK ;
+fun metsa'maa_NK : NK ;
+fun metsa'maasto_NK : NK ;
+fun metsa'maisema_NK : NK ;
+fun metsa'marja_NK : NK ;
+fun metsa'mies_NK : NK ;
+fun metsa'ma'nty_NK : NK ;
+fun metsa'mo'kki_NK : NK ;
+fun metsa'neuvos_NK : NK ;
+fun metsa'nhakkuuoikeus_NK : NK ;
+fun metsa'nhoitoyhdistys_NK : NK ;
+fun metsa'niitty_NK : NK ;
+fun metsa'oja_NK : NK ;
+fun metsa'ojitus_NK : NK ;
+fun metsa'opetus_NK : NK ;
+fun metsa'palo_NK : NK ;
+fun metsa'palovaroitus_NK : NK ;
+fun metsa'palsta_NK : NK ;
+fun metsa'peitteinen_NK : NK ;
+fun metsa'politiikka_NK : NK ;
+fun metsa'polku_NK : NK ;
+fun metsa'puu_NK : NK ;
+fun metsa'raja_NK : NK ;
+fun metsa'rikas_NK : NK ;
+fun metsa'ruusu_NK : NK ;
+fun metsa'saareke_NK : NK ;
+fun metsa'sika_NK : NK ;
+fun metsa'stysase_NK : NK ;
+fun metsa'styshaukka_NK : NK ;
+fun metsa'styskausi_NK : NK ;
+fun metsa'styskiva'a'ri_NK : NK ;
+fun metsa'styskoira_NK : NK ;
+fun metsa'styskortti_NK : NK ;
+fun metsa'styslippu_NK : NK ;
+fun metsa'stysmaa_NK : NK ;
+fun metsa'stysoikeus_NK : NK ;
+fun metsa'stysonni_NK : NK ;
+fun metsa'stysseurue_NK : NK ;
+fun metsa'sta'ja'kansa_NK : NK ;
+fun metsa'taival_NK : NK ;
+fun metsa'talous_NK : NK ;
+fun metsa'talousinsino'o'ri_NK : NK ;
+fun metsa'talousministerio'_NK : NK ;
+fun metsa'talousteknikko_NK : NK ;
+fun metsa'taloustiede_NK : NK ;
+fun metsa'teknikko_NK : NK ;
+fun metsa'teknologia_NK : NK ;
+fun metsa'teollisuus_NK : NK ;
+fun metsa'tie_NK : NK ;
+fun metsa'tiede_NK : NK ;
+fun metsa'tieteilija'_NK : NK ;
+fun metsa'tila_NK : NK ;
+fun metsa'traktori_NK : NK ;
+fun metsa'tuho_NK : NK ;
+fun metsa'tyyppi_NK : NK ;
+fun metsa'tyo'_NK : NK ;
+fun metsa'tyo'kone_NK : NK ;
+fun metsa'tyo'maa_NK : NK ;
+fun metsa'ta'hti_NK : NK ;
+fun metsa'vaahtera_NK : NK ;
+fun metsa'yhtio'_NK : NK ;
+fun metsa'ympa'risto'_NK : NK ;
+fun midihame_NK : NK ;
+fun midiliita'nta'_NK : NK ;
+fun midimuoti_NK : NK ;
+fun midipituinen_NK : NK ;
+fun miehisto'tappio_NK : NK ;
+fun miehitysarmeija_NK : NK ;
+fun miehitysjoukko_NK : NK ;
+fun miehitysvyo'hyke_NK : NK ;
+fun miehuusika'_NK : NK ;
+fun miehuuskoe_NK : NK ;
+fun miekkailuottelu_NK : NK ;
+fun miekkakala_NK : NK ;
+fun miekkalilja_NK : NK ;
+fun miekkala'hetys_NK : NK ;
+fun miekkapyrsto'_NK : NK ;
+fun miekkavalas_NK : NK ;
+fun mielenosoituskulkue_NK : NK ;
+fun mielenosoituslakko_NK : NK ;
+fun mielenosoitusmarssi_NK : NK ;
+fun mielenterveyshoitaja_NK : NK ;
+fun mielenterveysha'irio'_NK : NK ;
+fun mielenterveysongelma_NK : NK ;
+fun mielenterveystoimisto_NK : NK ;
+fun mielenterveystyo'_NK : NK ;
+fun mielentilatutkimus_NK : NK ;
+fun mieliaihe_NK : NK ;
+fun mielialaha'irio'_NK : NK ;
+fun mielihalu_NK : NK ;
+fun mieliharmi_NK : NK ;
+fun mieliharrastus_NK : NK ;
+fun mielihyva'_NK : NK ;
+fun mielijohde_NK : NK ;
+fun mielikirja_NK : NK ;
+fun mielikirjailija_NK : NK ;
+fun mielikuva_NK : NK ;
+fun mielikuvamaailma_NK : NK ;
+fun mielikuvamainonta_NK : NK ;
+fun mielikuvitus_NK : NK ;
+fun mielikuvitusmaailma_NK : NK ;
+fun mielipaha_NK : NK ;
+fun mielipideilmasto_NK : NK ;
+fun mielipidejohtaja_NK : NK ;
+fun mielipidekirja_NK : NK ;
+fun mielipidekirjoitus_NK : NK ;
+fun mielipidelehti_NK : NK ;
+fun mielipidemittaus_NK : NK ;
+fun mielipideosasto_NK : NK ;
+fun mielipidesivu_NK : NK ;
+fun mielipidesuunta_NK : NK ;
+fun mielipidetiedustelu_NK : NK ;
+fun mielipidetutkimus_NK : NK ;
+fun mielipidevanki_NK : NK ;
+fun mielipuoli_NK : NK ;
+fun mielipuolinen_AK : AK ;
+fun mieliruoka_NK : NK ;
+fun mielisairaala_NK : NK ;
+fun mielisairaalahoito_NK : NK ;
+fun mielisairas_NK : NK ;
+fun mielisairaus_NK : NK ;
+fun mielisuosio_NK : NK ;
+fun mielitauti_NK : NK ;
+fun mielitautinen_NK : NK ;
+fun mieliteko_NK : NK ;
+fun mielitietty_NK : NK ;
+fun mielityo'_NK : NK ;
+fun mielivalta_NK : NK ;
+fun mielivaltainen_AK : AK ;
+fun mielivaltaisuus_NK : NK ;
+fun miellesisa'lto'_NK : NK ;
+fun mielleyhtyma'_NK : NK ;
+fun mierolainen_NK : NK ;
+fun mieshenkilo'_NK : NK ;
+fun mieshukka_NK : NK ;
+fun miesihanne_NK : NK ;
+fun miesjoukko_NK : NK ;
+fun miesjoukkue_NK : NK ;
+fun mieskiintio'_NK : NK ;
+fun mieskohtainen_AK : AK ;
+fun mieskunto_NK : NK ;
+fun mieskuntoinen_NK : NK ;
+fun mieskuntoisuus_NK : NK ;
+fun mieskuoro_NK : NK ;
+fun mieskuorolaulu_NK : NK ;
+fun mieskuva_NK : NK ;
+fun mieskvartetti_NK : NK ;
+fun miesleski_NK : NK ;
+fun miesluku_NK : NK ;
+fun mieslukuinen_AK : AK ;
+fun miesmurha_NK : NK ;
+fun miesopettaja_NK : NK ;
+fun miesopiskelija_NK : NK ;
+fun miespaikka_NK : NK ;
+fun miespalvelija_NK : NK ;
+fun miespappi_NK : NK ;
+fun miesparka_NK : NK ;
+fun miespolvi_NK : NK ;
+fun miespuolinen_NK : NK ;
+fun miesraukka_NK : NK ;
+fun miesseura_NK : NK ;
+fun miessuhde_NK : NK ;
+fun miessuku_NK : NK ;
+fun miessukupuoli_NK : NK ;
+fun miestappio_NK : NK ;
+fun miestappo_NK : NK ;
+fun miestentautioppi_NK : NK ;
+fun miestoveri_NK : NK ;
+fun miestutkimus_NK : NK ;
+fun miestuttava_NK : NK ;
+fun miesvahvuus_NK : NK ;
+fun miesvaltainen_NK : NK ;
+fun miesvaltaisuus_NK : NK ;
+fun miesvanki_NK : NK ;
+fun miesvartiointi_NK : NK ;
+fun miesvieras_NK : NK ;
+fun miesviha_NK : NK ;
+fun miesvoima_NK : NK ;
+fun miesvoittoinen_NK : NK ;
+fun miesva'esto'_NK : NK ;
+fun miesva'ki_NK : NK ;
+fun miesysta'va'_NK : NK ;
+fun miesa'a'ni_NK : NK ;
+fun mietekirja_NK : NK ;
+fun mietekokoelma_NK : NK ;
+fun mietelause_NK : NK ;
+fun mietelyriikka_NK : NK ;
+fun mieteruno_NK : NK ;
+fun mieterunous_NK : NK ;
+fun mietinta'myssy_NK : NK ;
+fun miinaharava_NK : NK ;
+fun miinakentta'_NK : NK ;
+fun miinalaiva_NK : NK ;
+fun miinusaste_NK : NK ;
+fun miinusmerkki_NK : NK ;
+fun miinusmerkkinen_NK : NK ;
+fun miinusnapa_NK : NK ;
+fun miinuspiste_NK : NK ;
+fun miinuspuoli_NK : NK ;
+fun mikroampeeri_NK : NK ;
+fun mikroanalyysi_NK : NK ;
+fun mikroauto_NK : NK ;
+fun mikrobila'a'ke_NK : NK ;
+fun mikrobiologi_NK : NK ;
+fun mikrobiologia_NK : NK ;
+fun mikrofilmaus_NK : NK ;
+fun mikrofilmi_NK : NK ;
+fun mikrogramma_NK : NK ;
+fun mikrohistoria_NK : NK ;
+fun mikroilmasto_NK : NK ;
+fun mikrokemia_NK : NK ;
+fun mikrokirurgia_NK : NK ;
+fun mikrokortti_NK : NK ;
+fun mikrokosmos_NK : NK ;
+fun mikrokuitu_NK : NK ;
+fun mikrokuitukangas_NK : NK ;
+fun mikrometri_NK : NK ;
+fun mikro_organismi_NK : NK ;
+fun mikropiiri_NK : NK ;
+fun mikroprosessori_NK : NK ;
+fun mikroravinne_NK : NK ;
+fun mikroruoka_NK : NK ;
+fun mikrosekunti_NK : NK ;
+fun mikrosiru_NK : NK ;
+fun mikroskooppitutkimus_NK : NK ;
+--? fun mikrosortsit_NK : NK ;
+fun mikrostruktuuri_NK : NK ;
+fun mikrosuoritin_NK : NK ;
+fun mikrotekniikka_NK : NK ;
+fun mikrotekninen_NK : NK ;
+fun mikrouuni_NK : NK ;
+fun mikrovaaka_NK : NK ;
+fun miljoonakala_NK : NK ;
+fun miljoonakauppa_NK : NK ;
+fun miljoonakaupunki_NK : NK ;
+fun miljoonakertainen_NK : NK ;
+fun miljoonalahjoitus_NK : NK ;
+fun miljoonaomaisuus_NK : NK ;
+fun miljoonapainos_NK : NK ;
+fun miljoonapalo_NK : NK ;
+fun miljoonasosa_NK : NK ;
+fun miljoonatalo_NK : NK ;
+fun miljoonavahinko_NK : NK ;
+fun miljo'o'kuvaus_NK : NK ;
+fun milliampeeri_NK : NK ;
+fun millibaari_NK : NK ;
+fun milligramma_NK : NK ;
+fun millilitra_NK : NK ;
+fun millimetri_NK : NK ;
+fun millimetriasteikko_NK : NK ;
+fun millimetrimitta_NK : NK ;
+fun millimetripaperi_NK : NK ;
+fun millisekunti_NK : NK ;
+fun mimmiliiga_NK : NK ;
+fun mimoosamainen_NK : NK ;
+fun mineraaliesiintyma'_NK : NK ;
+fun mineraalikuitu_NK : NK ;
+fun mineraalimaa_NK : NK ;
+fun mineraalipitoinen_NK : NK ;
+fun mineraalipitoisuus_NK : NK ;
+fun mineraalisuola_NK : NK ;
+fun mineraalita'rpa'tti_NK : NK ;
+fun mineraalivesi_NK : NK ;
+fun mineraalivilla_NK : NK ;
+fun minestronekeitto_NK : NK ;
+fun miniatyyrikokoinen_NK : NK ;
+fun miniatyyrikuva_NK : NK ;
+fun miniatyyrimaalari_NK : NK ;
+fun miniatyyrimaalaus_NK : NK ;
+fun miniatyyripatsas_NK : NK ;
+fun miniatyyritaide_NK : NK ;
+fun minibaari_NK : NK ;
+fun minigolf_NK : NK ;
+fun minihame_NK : NK ;
+fun minikokoinen_NK : NK ;
+fun minimaalinen_NK : NK ;
+fun minimiarvo_NK : NK ;
+fun minimiehto_NK : NK ;
+fun minimikorkeus_NK : NK ;
+fun minimima'a'ra'_NK : NK ;
+fun miniminopeus_NK : NK ;
+fun minimipalkka_NK : NK ;
+fun minimivaatimus_NK : NK ;
+fun minimuoti_NK : NK ;
+fun minipilleri_NK : NK ;
+fun minipituinen_NK : NK ;
+fun ministerikausi_NK : NK ;
+fun ministerikierros_NK : NK ;
+fun ministerikokous_NK : NK ;
+fun ministerilista_NK : NK ;
+fun ministerineuvos_NK : NK ;
+fun ministerineuvosto_NK : NK ;
+fun ministerivierailu_NK : NK ;
+fun minkkihattu_NK : NK ;
+fun minkkitarha_NK : NK ;
+fun minkkitarhaaja_NK : NK ;
+fun minkkiturkki_NK : NK ;
+fun minnelaulaja_NK : NK ;
+fun minnelaulu_NK : NK ;
+fun minttuja'a'telo'_NK : NK ;
+fun minttuliko'o'ri_NK : NK ;
+fun minttupastilli_NK : NK ;
+fun minttutee_NK : NK ;
+fun minuuttiosoitin_NK : NK ;
+fun minuuttiviisari_NK : NK ;
+fun mina'keskeinen_NK : NK ;
+fun mina'keskeisyys_NK : NK ;
+fun mina'kuva_NK : NK ;
+fun mina'ka'sitys_NK : NK ;
+fun mina'muoto_NK : NK ;
+fun mina'muotoinen_NK : NK ;
+fun mina'tietoisuus_NK : NK ;
+fun missikilpailu_NK : NK ;
+fun missikisa_NK : NK ;
+fun missivuosi_NK : NK ;
+fun mitalimies_NK : NK ;
+fun mitalinainen_NK : NK ;
+fun mitalisaalis_NK : NK ;
+fun mitalisarja_NK : NK ;
+fun mitalisija_NK : NK ;
+fun mitalitaide_NK : NK ;
+fun mitalitaiteilija_NK : NK ;
+fun mitalitili_NK : NK ;
+fun mittaha'vikki_NK : NK ;
+fun mittakaava_NK : NK ;
+fun mittakaulain_NK : NK ;
+fun mittakeppi_NK : NK ;
+fun mittalasi_NK : NK ;
+fun mittaluku_NK : NK ;
+fun mittalusikka_NK : NK ;
+fun mittamies_NK : NK ;
+fun mittanauha_NK : NK ;
+fun mittapuku_NK : NK ;
+fun mittapuu_NK : NK ;
+fun mittariauto_NK : NK ;
+fun mittarilento_NK : NK ;
+fun mittarilukema_NK : NK ;
+fun mittarimato_NK : NK ;
+fun mittaritaulu_NK : NK ;
+--? fun mittasakset_NK : NK ;
+fun mittatappio_NK : NK ;
+fun mittatarkka_NK : NK ;
+fun mittatikku_NK : NK ;
+fun mittatyo'_NK : NK ;
+fun mittauslaite_NK : NK ;
+fun mittausmenetelma'_NK : NK ;
+fun mittausoppi_NK : NK ;
+fun mittaustarkkuus_NK : NK ;
+fun mittaustekniikka_NK : NK ;
+fun mittausteknikko_NK : NK ;
+fun mittaustulos_NK : NK ;
+fun mittausvirhe_NK : NK ;
+fun mittausva'line_NK : NK ;
+fun mittavajaus_NK : NK ;
+fun mittayksikko'_NK : NK ;
+fun modaalikuitu_NK : NK ;
+fun modernisointi_NK : NK ;
+fun moduulimitoitus_NK : NK ;
+fun moduulirakenne_NK : NK ;
+fun moduulirekka_NK : NK ;
+fun mohairlanka_NK : NK ;
+fun mohairpusero_NK : NK ;
+fun moikina_NK : NK ;
+fun moitekanne_NK : NK ;
+fun mokkaharja_NK : NK ;
+fun mokkakahvi_NK : NK ;
+fun mokkakakku_NK : NK ;
+fun mokkakangas_NK : NK ;
+fun mokkakenka'_NK : NK ;
+fun mokkakuppi_NK : NK ;
+fun mokkalusikka_NK : NK ;
+fun mokkanahka_NK : NK ;
+fun mokkanahkainen_NK : NK ;
+fun mokkatakki_NK : NK ;
+fun mokkaturkis_NK : NK ;
+fun mokkaturkki_NK : NK ;
+fun molekyylibiologia_NK : NK ;
+fun molekyylikaava_NK : NK ;
+fun molekyylipaino_NK : NK ;
+fun molekyylirakenne_NK : NK ;
+fun molekyylivoima_NK : NK ;
+fun molliasteikko_NK : NK ;
+fun mollisointu_NK : NK ;
+fun momenttiavain_NK : NK ;
+fun moneusoppi_NK : NK ;
+fun mongolilainen_NK : NK ;
+fun moniarvoinen_NK : NK ;
+fun moniarvoisuus_NK : NK ;
+fun moniasteinen_NK : NK ;
+fun moniavioinen_NK : NK ;
+fun moniavioisuus_NK : NK ;
+fun monihaarainen_NK : NK ;
+fun monihenkinen_NK : NK ;
+fun monijumalainen_NK : NK ;
+fun monija'seninen_NK : NK ;
+fun monikasvoinen_NK : NK ;
+fun monikerta_NK : NK ;
+fun monikertainen_NK : NK ;
+fun monikielinen_NK : NK ;
+fun monikielisyys_NK : NK ;
+fun monikkomuoto_NK : NK ;
+fun monikkomuotoinen_NK : NK ;
+fun monikulmio_NK : NK ;
+fun monikulmiomittaus_NK : NK ;
+fun monikymmeninen_NK : NK ;
+fun monika'ytto'_NK : NK ;
+fun monika'ytto'auto_NK : NK ;
+fun monika'ytto'halli_NK : NK ;
+fun monika'ytto'inen_NK : NK ;
+fun monilapsinen_NK : NK ;
+fun monilukuinen_AK : AK ;
+fun monila'hto'inen_NK : NK ;
+fun monimiehinen_NK : NK ;
+fun monimiehisyys_NK : NK ;
+fun monimielisyys_NK : NK ;
+fun monimiljona'a'ri_NK : NK ;
+fun monimuotoinen_NK : NK ;
+fun monimuotoisuus_NK : NK ;
+fun monimutkainen_NK : NK ;
+fun moninainen_NK : NK ;
+fun moninaisuus_NK : NK ;
+fun monioireinen_NK : NK ;
+fun moniosainen_NK : NK ;
+fun moniottelija_NK : NK ;
+fun moniottelu_NK : NK ;
+fun monipiippuinen_NK : NK ;
+fun monipolvinen_NK : NK ;
+fun moniportainen_NK : NK ;
+fun monipuolinen_AK : AK ;
+fun monipuolueinen_NK : NK ;
+fun monipa'inen_NK : NK ;
+fun monipa'iva'inen_NK : NK ;
+fun monisanainen_AK : AK ;
+fun monisanaisuus_NK : NK ;
+fun monisatainen_NK : NK ;
+fun monisoluinen_NK : NK ;
+fun monistuskone_NK : NK ;
+fun monistuspaperi_NK : NK ;
+fun monisyinen_NK : NK ;
+fun monisynnytta'ja'_NK : NK ;
+fun monisa'ikeinen_NK : NK ;
+fun monisa'ikeisyys_NK : NK ;
+fun monisa'rma'inen_NK : NK ;
+fun monitahoinen_NK : NK ;
+fun monitahokas_NK : NK ;
+fun monitaitoinen_NK : NK ;
+fun monitaituri_NK : NK ;
+fun monitasoinen_NK : NK ;
+fun monitekija'inen_NK : NK ;
+fun monitieteinen_NK : NK ;
+fun monitoiminen_NK : NK ;
+fun monitori_NK : NK ;
+fun monituhantinen_NK : NK ;
+fun monituntinen_NK : NK ;
+fun moniulotteinen_NK : NK ;
+fun monivaiheinen_NK : NK ;
+fun monivammainen_NK : NK ;
+fun monivuotinen_NK : NK ;
+fun moniva'rinen_NK : NK ;
+fun monia'a'ninen_NK : NK ;
+fun monolevy_NK : NK ;
+fun monopoli_NK : NK ;
+fun monopoliasema_NK : NK ;
+fun monopolisointi_NK : NK ;
+fun monopoliyhtio'_NK : NK ;
+fun monoteismi_NK : NK ;
+fun monoteisti_NK : NK ;
+fun monoteistinen_NK : NK ;
+fun monotoisto_NK : NK ;
+fun monsuunimetsa'_NK : NK ;
+fun monsuunisade_NK : NK ;
+fun monsuunituuli_NK : NK ;
+fun moottoriajoneuvoliikenne_NK : NK ;
+fun moottorialus_NK : NK ;
+fun moottorijarrutus_NK : NK ;
+fun moottorikatu_NK : NK ;
+fun moottorikelkka_NK : NK ;
+fun moottorikelkkailu_NK : NK ;
+fun moottorika'ytto'inen_NK : NK ;
+fun moottorilaiva_NK : NK ;
+fun moottorilento_NK : NK ;
+fun moottorilentourheilu_NK : NK ;
+fun moottoripera'_NK : NK ;
+fun moottoripetroli_NK : NK ;
+fun moottoripumppu_NK : NK ;
+fun moottoripurjehtija_NK : NK ;
+fun moottoripyo'ra'_NK : NK ;
+fun moottoripyo'ra'ilija'_NK : NK ;
+fun moottoripyo'ra'ily_NK : NK ;
+fun moottoripyo'ra'jengi_NK : NK ;
+fun moottoripyo'ra'kerho_NK : NK ;
+fun moottoripyo'ra'poliisi_NK : NK ;
+fun moottoripyo'ra'urheilu_NK : NK ;
+fun moottoriruisku_NK : NK ;
+fun moottorisaha_NK : NK ;
+fun moottoristadion_NK : NK ;
+fun moottoriteho_NK : NK ;
+fun moottoritie_NK : NK ;
+fun moottoriurheilija_NK : NK ;
+fun moottoriurheilu_NK : NK ;
+fun moottorivene_NK : NK ;
+fun moottoriveneilija'_NK : NK ;
+fun moottoriveneily_NK : NK ;
+fun moottoriveneurheilu_NK : NK ;
+fun moottoriveto_NK : NK ;
+fun moottorivetoinen_NK : NK ;
+fun moottorivika_NK : NK ;
+fun moottorivoima_NK : NK ;
+fun moottorio'ljy_NK : NK ;
+fun moraalika'sitys_NK : NK ;
+fun moraalisaarna_NK : NK ;
+fun moraalisa'a'nto'_NK : NK ;
+fun mordvalainen_NK : NK ;
+fun moreenikerros_NK : NK ;
+fun moreenikerrostuma_NK : NK ;
+fun moreenimaa_NK : NK ;
+fun mormyskaonki_NK : NK ;
+fun mosaiikkikuva_NK : NK ;
+fun mosaiikkilaatta_NK : NK ;
+fun mosaiikkitaide_NK : NK ;
+fun mosaiikkityo'_NK : NK ;
+fun moselviini_NK : NK ;
+fun moskiittoverkko_NK : NK ;
+fun motettikuoro_NK : NK ;
+fun motocrosskilpailu_NK : NK ;
+fun motoristi_NK : NK ;
+fun mottimetsa'_NK : NK ;
+fun mottitaistelu_NK : NK ;
+fun moukarikaari_NK : NK ;
+fun moukarikilpailu_NK : NK ;
+fun moukarinheittotulos_NK : NK ;
+fun moukaritulos_NK : NK ;
+fun moukkamainen_AK : AK ;
+fun muhviliitos_NK : NK ;
+fun muikkukukko_NK : NK ;
+fun muistelmakirja_NK : NK ;
+fun muistelmakirjailija_NK : NK ;
+fun muistelmateos_NK : NK ;
+fun muistiaukko_NK : NK ;
+fun muistiharha_NK : NK ;
+fun muistiha'irio'_NK : NK ;
+fun muistiha'irio'inen_NK : NK ;
+fun muistiinpanova'line_NK : NK ;
+fun muistija'lki_NK : NK ;
+fun muistikatkos_NK : NK ;
+fun muistikirja_NK : NK ;
+fun muistikuva_NK : NK ;
+fun muistilehtio'_NK : NK ;
+fun muistilista_NK : NK ;
+fun muistilokero_NK : NK ;
+fun muistinumero_NK : NK ;
+fun muistipaikka_NK : NK ;
+fun muistisa'a'nto'_NK : NK ;
+fun muistitieto_NK : NK ;
+fun muistivihko_NK : NK ;
+fun muistivirhe_NK : NK ;
+fun muistoesine_NK : NK ;
+fun muistojuhla_NK : NK ;
+fun muistojulkaisu_NK : NK ;
+fun muistokirja_NK : NK ;
+fun muistokirjoitus_NK : NK ;
+fun muistokynttila'_NK : NK ;
+fun muistolaatta_NK : NK ;
+fun muistolahja_NK : NK ;
+fun muistolause_NK : NK ;
+fun muistolehto_NK : NK ;
+fun muistomerkki_NK : NK ;
+fun muistomitali_NK : NK ;
+fun muistomuuri_NK : NK ;
+fun muistopatsas_NK : NK ;
+fun muistopuhe_NK : NK ;
+fun muistopa'iva'_NK : NK ;
+fun muistoraha_NK : NK ;
+fun muistorikas_NK : NK ;
+fun muistoruno_NK : NK ;
+fun muistosa'e_NK : NK ;
+fun muistotilaisuus_NK : NK ;
+fun muistova'rssy_NK : NK ;
+fun mukaanotto_NK : NK ;
+fun mukaantulo_NK : NK ;
+fun mukanaolija_NK : NK ;
+fun mukanaolo_NK : NK ;
+fun mukavuuslaitos_NK : NK ;
+fun mukavuuslippu_NK : NK ;
+fun mukavuuslippulaiva_NK : NK ;
+fun mukiinmeneva'_AK : AK ;
+fun mukulakasvi_NK : NK ;
+fun mukulakiveys_NK : NK ;
+fun mukulakivi_NK : NK ;
+fun mukulakivikatu_NK : NK ;
+fun mukulakivinen_NK : NK ;
+fun mukulaleinikki_NK : NK ;
+fun mukulaselleri_NK : NK ;
+fun mukulavarsi_NK : NK ;
+fun multakerros_NK : NK ;
+fun multakokkare_NK : NK ;
+fun multamaa_NK : NK ;
+fun multapaakku_NK : NK ;
+fun multapitoinen_NK : NK ;
+fun multapitoisuus_NK : NK ;
+fun multaseos_NK : NK ;
+fun multasieni_NK : NK ;
+fun multausaura_NK : NK ;
+fun multippeliskleroosi_NK : NK ;
+fun munahedelma'_NK : NK ;
+fun munajuusto_NK : NK ;
+fun munakastike_NK : NK ;
+fun munakello_NK : NK ;
+fun munakoiso_NK : NK ;
+fun munakokkeli_NK : NK ;
+fun munakotelo_NK : NK ;
+fun munakuppi_NK : NK ;
+fun munaleikkuri_NK : NK ;
+fun munaliko'o'ri_NK : NK ;
+fun munalukko_NK : NK ;
+fun munamaito_NK : NK ;
+fun munamakaroni_NK : NK ;
+fun munankuoriposliini_NK : NK ;
+fun munarakkula_NK : NK ;
+fun munasampoo_NK : NK ;
+fun munasarja_NK : NK ;
+fun munasarjasyo'pa'_NK : NK ;
+fun munasiitos_NK : NK ;
+fun munasolu_NK : NK ;
+fun munatorvi_NK : NK ;
+fun munavaahto_NK : NK ;
+fun munkkikammio_NK : NK ;
+fun munkkikunta_NK : NK ;
+fun munkkilatina_NK : NK ;
+fun munkkiliko'o'ri_NK : NK ;
+fun munkkiluostari_NK : NK ;
+fun munkkilupaus_NK : NK ;
+fun munkkipossu_NK : NK ;
+fun munkkirinkila'_NK : NK ;
+fun munkkisa'a'nto'_NK : NK ;
+fun munkkitaikina_NK : NK ;
+fun munuaiskivitauti_NK : NK ;
+fun muodostelmalento_NK : NK ;
+fun muodostelmaluistelu_NK : NK ;
+fun muokkausjyrsin_NK : NK ;
+fun muokkauskausi_NK : NK ;
+fun muokkaussyvyys_NK : NK ;
+fun muokkaustyo'_NK : NK ;
+fun muonamies_NK : NK ;
+fun muonavahvuus_NK : NK ;
+fun muonituspalvelu_NK : NK ;
+fun muonitusvahvuus_NK : NK ;
+fun muotiasu_NK : NK ;
+fun muotiharrastus_NK : NK ;
+fun muotihuone_NK : NK ;
+fun muoti_ilmio'_NK : NK ;
+fun muoti_iskelma'_NK : NK ;
+fun muotikeskus_NK : NK ;
+fun muotikirjailija_NK : NK ;
+fun muotilehti_NK : NK ;
+fun muotileijona_NK : NK ;
+fun muotiliike_NK : NK ;
+fun muotinukke_NK : NK ;
+fun muotina'yto's_NK : NK ;
+fun muotipiirta'ja'_NK : NK ;
+fun muotisalonki_NK : NK ;
+fun muotisana_NK : NK ;
+fun muotishow_NK : NK ;
+fun muotisuunta_NK : NK ;
+fun muotitalo_NK : NK ;
+fun muotitietoinen_NK : NK ;
+fun muotivaate_NK : NK ;
+fun muotivillitys_NK : NK ;
+fun muotivirtaus_NK : NK ;
+fun muotiva'ri_NK : NK ;
+fun muotoaisti_NK : NK ;
+fun muotoilugeeli_NK : NK ;
+fun muotokappale_NK : NK ;
+fun muotokaunis_NK : NK ;
+fun muotokieli_NK : NK ;
+fun muotokuva_NK : NK ;
+fun muotokuvaaja_NK : NK ;
+fun muotokuvamaalari_NK : NK ;
+fun muotokuvamaalaus_NK : NK ;
+fun muotokuvanpaljastustilaisuus_NK : NK ;
+fun muotokuvataide_NK : NK ;
+fun muotolaskos_NK : NK ;
+fun muotolista_NK : NK ;
+fun muotopuhdas_NK : NK ;
+fun muotopuoli_NK : NK ;
+fun muotorakenne_NK : NK ;
+fun muotorikas_NK : NK ;
+fun muotosarja_NK : NK ;
+fun muotoseikka_NK : NK ;
+fun muototaju_NK : NK ;
+fun muototera's_NK : NK ;
+fun muototiili_NK : NK ;
+fun muotovaahto_NK : NK ;
+fun muotovalio_NK : NK ;
+fun muotovirhe_NK : NK ;
+fun muottilaudoitus_NK : NK ;
+fun muottipuristus_NK : NK ;
+fun muottitaonta_NK : NK ;
+fun muovailusavi_NK : NK ;
+fun muovailuvaha_NK : NK ;
+fun muovausleikkaus_NK : NK ;
+fun muoviastia_NK : NK ;
+fun muovieriste_NK : NK ;
+fun muovieristeinen_NK : NK ;
+fun muovikalvo_NK : NK ;
+fun muovikassi_NK : NK ;
+fun muovikelmu_NK : NK ;
+fun muovika'sine_NK : NK ;
+fun muovilaminaatti_NK : NK ;
+fun muovilasi_NK : NK ;
+fun muovilautanen_NK : NK ;
+fun muovilelu_NK : NK ;
+fun muoviletku_NK : NK ;
+fun muoviliima_NK : NK ;
+fun muovilinssi_NK : NK ;
+fun muovilusikka_NK : NK ;
+fun muovimatto_NK : NK ;
+fun muovimuki_NK : NK ;
+fun muovima'ki_NK : NK ;
+fun muovipinnoite_NK : NK ;
+fun muovipinta_NK : NK ;
+fun muovipintainen_NK : NK ;
+fun muovipullo_NK : NK ;
+fun muovipussi_NK : NK ;
+fun muovipuu_NK : NK ;
+fun muovipa'a'llyste_NK : NK ;
+fun muoviraha_NK : NK ;
+fun muovirouhe_NK : NK ;
+fun muovisanko_NK : NK ;
+fun muovisuksi_NK : NK ;
+fun muovisa'kki_NK : NK ;
+fun muovitapetti_NK : NK ;
+fun muovitasku_NK : NK ;
+fun muoviteollisuus_NK : NK ;
+fun muovituote_NK : NK ;
+fun muovia'mpa'ri_NK : NK ;
+fun murattiaralia_NK : NK ;
+fun murekekyljys_NK : NK ;
+fun murekeka'a'ryle_NK : NK ;
+fun murekepihvi_NK : NK ;
+fun murekeseos_NK : NK ;
+fun mureketaikina_NK : NK ;
+fun murhajuttu_NK : NK ;
+fun murhamies_NK : NK ;
+fun murhapaikka_NK : NK ;
+fun murhapolttaja_NK : NK ;
+fun murhapoltto_NK : NK ;
+fun murhayritys_NK : NK ;
+fun murhena'ytelma'_NK : NK ;
+fun murkkuika'inen_NK : NK ;
+fun murokakku_NK : NK ;
+fun muroleivos_NK : NK ;
+fun murotaikina_NK : NK ;
+fun murrealue_NK : NK ;
+fun murrekirjailija_NK : NK ;
+fun murrepakina_NK : NK ;
+fun murreraja_NK : NK ;
+fun murresana_NK : NK ;
+fun murresanakirja_NK : NK ;
+fun murretutkimus_NK : NK ;
+fun murrosika'_NK : NK ;
+fun murrosika'inen_NK : NK ;
+fun murroskausi_NK : NK ;
+fun murrosnivel_NK : NK ;
+fun murrospinta_NK : NK ;
+fun murrostila_NK : NK ;
+fun murrosvaihe_NK : NK ;
+fun murskaluku_NK : NK ;
+fun murskanumero_NK : NK ;
+fun murskatappio_NK : NK ;
+fun murskatuomio_NK : NK ;
+fun murskauskone_NK : NK ;
+fun murskavoitto_NK : NK ;
+fun murtoha'lytin_NK : NK ;
+fun murtokuormitus_NK : NK ;
+fun murtolauseke_NK : NK ;
+fun murtolujuus_NK : NK ;
+fun murtoluku_NK : NK ;
+fun murtomaa_NK : NK ;
+fun murtomaahiihto_NK : NK ;
+fun murtomies_NK : NK ;
+fun murtopinta_NK : NK ;
+fun murtosointu_NK : NK ;
+fun murtovaras_NK : NK ;
+fun murtovarkaus_NK : NK ;
+fun murtovenyma'_NK : NK ;
+fun murtovesi_NK : NK ;
+fun murtoviiva_NK : NK ;
+fun murtoviivamittaus_NK : NK ;
+fun murtumapinta_NK : NK ;
+fun murukahvi_NK : NK ;
+fun murukoloinen_NK : NK ;
+fun museoarvo_NK : NK ;
+fun museoesine_NK : NK ;
+fun museojuna_NK : NK ;
+fun museokokoelma_NK : NK ;
+fun museoneuvos_NK : NK ;
+fun museorata_NK : NK ;
+fun museotavara_NK : NK ;
+fun museotie_NK : NK ;
+fun museovirkailija_NK : NK ;
+fun musiikkiarvostelu_NK : NK ;
+fun musiikkiautomaatti_NK : NK ;
+fun musiikkidraama_NK : NK ;
+fun musiikkiela'ma'_NK : NK ;
+fun musiikkiesitys_NK : NK ;
+fun musiikkijuhla_NK : NK ;
+fun musiikkikasetti_NK : NK ;
+fun musiikkikasvatus_NK : NK ;
+fun musiikkikauppa_NK : NK ;
+fun musiikkikirjasto_NK : NK ;
+fun musiikkikoulu_NK : NK ;
+fun musiikkikustantamo_NK : NK ;
+fun musiikkilehti_NK : NK ;
+fun musiikkiliikunta_NK : NK ;
+fun musiikkilukio_NK : NK ;
+fun musiikkiluokka_NK : NK ;
+fun musiikkiluokkalainen_NK : NK ;
+fun musiikkineuvos_NK : NK ;
+fun musiikkina'ytelma'_NK : NK ;
+--? fun musiikkiopinnot_NK : NK ;
+fun musiikkiopisto_NK : NK ;
+fun musiikkitapahtuma_NK : NK ;
+fun musiikkiteatteri_NK : NK ;
+fun musiikkiteos_NK : NK ;
+fun musiikkiterapeutti_NK : NK ;
+fun musiikkiterapia_NK : NK ;
+fun musiikkitiede_NK : NK ;
+fun musiikkitoimittaja_NK : NK ;
+fun musiikkivideo_NK : NK ;
+fun musiikkia'a'nite_NK : NK ;
+fun muskatelliviini_NK : NK ;
+fun muskattiviini_NK : NK ;
+fun muskelimies_NK : NK ;
+fun muskelivene_NK : NK ;
+fun muskettimies_NK : NK ;
+fun muskettisotilas_NK : NK ;
+fun muskettisoturi_NK : NK ;
+fun muskottikukka_NK : NK ;
+fun muskottipuu_NK : NK ;
+fun muskottipa'hkina'_NK : NK ;
+fun mustaherukkamehu_NK : NK ;
+fun mustaherukkaviini_NK : NK ;
+fun mustaihoinen_NK : NK ;
+fun mustalainen_NK : NK ;
+fun mustaleimainen_NK : NK ;
+fun mustamaalaus_NK : NK ;
+fun mustapaitainen_NK : NK ;
+fun mustapartainen_NK : NK ;
+fun mustapukuinen_NK : NK ;
+fun mustapa'inen_NK : NK ;
+fun mustapa'a'_NK : NK ;
+fun mustasilma'inen_NK : NK ;
+fun mustasukkaisuusharha_NK : NK ;
+fun mustavalkea_NK : NK ;
+fun mustavalkoinen_NK : NK ;
+fun mustaviinimarjamehu_NK : NK ;
+fun mustekala_NK : NK ;
+fun mustekyna'_NK : NK ;
+fun mustepullo_NK : NK ;
+fun mustesieni_NK : NK ;
+fun mustetahra_NK : NK ;
+fun mustikkahillo_NK : NK ;
+fun mustikkakeitto_NK : NK ;
+fun mustikkakiisseli_NK : NK ;
+fun mustikkamaito_NK : NK ;
+fun mustikkamehu_NK : NK ;
+fun mustikkapiirakka_NK : NK ;
+fun mustikkasoppa_NK : NK ;
+fun mustikkasose_NK : NK ;
+fun mustikkatyyppi_NK : NK ;
+fun mutageeni_NK : NK ;
+fun mutakerros_NK : NK ;
+fun mutakerrostuma_NK : NK ;
+fun mutakuono_NK : NK ;
+fun mutakylpy_NK : NK ;
+fun mutapaini_NK : NK ;
+fun mutkama'ki_NK : NK ;
+fun mutumenetelma'_NK : NK ;
+fun mutututkimus_NK : NK ;
+fun muukalainen_NK : NK ;
+fun muukalaisuus_NK : NK ;
+fun muuliaasi_NK : NK ;
+fun muumiotauti_NK : NK ;
+fun muunnelmasarja_NK : NK ;
+fun muuntamorakennus_NK : NK ;
+fun muuntelukyky_NK : NK ;
+fun muuntelukykyinen_NK : NK ;
+fun muuntoasema_NK : NK ;
+fun muuntokuitu_NK : NK ;
+fun muuntorangaistus_NK : NK ;
+fun muurainaste_NK : NK ;
+fun muuraushiekka_NK : NK ;
+fun muurauskauha_NK : NK ;
+fun muurauslaasti_NK : NK ;
+fun muurihammastus_NK : NK ;
+fun muurilaasti_NK : NK ;
+fun muuripata_NK : NK ;
+fun muutamasivuinen_NK : NK ;
+fun muutoksenhakuoikeus_NK : NK ;
+fun muutosehdotus_NK : NK ;
+fun muutosilmoitus_NK : NK ;
+fun muutosla'mpo'_NK : NK ;
+fun muutosla'mpo'tila_NK : NK ;
+fun muutospaine_NK : NK ;
+fun muutostila_NK : NK ;
+fun muutostyo'_NK : NK ;
+fun muutosvaatimus_NK : NK ;
+fun muuttoauto_NK : NK ;
+fun muuttohaukka_NK : NK ;
+fun muuttoilmoitus_NK : NK ;
+fun muuttokuorma_NK : NK ;
+fun muuttoliike_NK : NK ;
+fun muuttolintu_NK : NK ;
+fun muuttomatka_NK : NK ;
+fun muuttomies_NK : NK ;
+fun muuttopa'iva'_NK : NK ;
+fun muuttoreitti_NK : NK ;
+fun muuttotappio_NK : NK ;
+fun muuttovoitto_NK : NK ;
+fun mykero'artisokka_NK : NK ;
+fun mykero'kukinto_NK : NK ;
+fun mykero'kukkainen_NK : NK ;
+fun myllyhoito_NK : NK ;
+fun myllykirje_NK : NK ;
+fun myllynkivikaulus_NK : NK ;
+fun myllypeli_NK : NK ;
+fun myrkkyaine_NK : NK ;
+fun myrkkyannos_NK : NK ;
+fun myrkkyase_NK : NK ;
+fun myrkkyhammas_NK : NK ;
+fun myrkkykaappi_NK : NK ;
+fun myrkkykaasu_NK : NK ;
+fun myrkkykasvi_NK : NK ;
+fun myrkkykeiso_NK : NK ;
+fun myrkkyka'a'rme_NK : NK ;
+fun myrkkylilja_NK : NK ;
+fun myrkkynuoli_NK : NK ;
+fun myrkkypistin_NK : NK ;
+fun myrkkypistia'inen_NK : NK ;
+fun myrkkypa'a'sto'_NK : NK ;
+fun myrkkyrauhanen_NK : NK ;
+fun myrkkysieni_NK : NK ;
+fun myrkkystruuma_NK : NK ;
+fun myrkkysyo'tti_NK : NK ;
+fun myrkkyvaikutus_NK : NK ;
+fun myrkytyskuolema_NK : NK ;
+fun myrkytysmurha_NK : NK ;
+fun myrkytysoire_NK : NK ;
+fun myrkytystila_NK : NK ;
+fun myrskyaalto_NK : NK ;
+fun myrskyalue_NK : NK ;
+fun myrskyilma_NK : NK ;
+fun myrskyisyys_NK : NK ;
+fun myrskyisa'_AK : AK ;
+fun myrskykeskus_NK : NK ;
+fun myrskylintu_NK : NK ;
+fun myrskylyhty_NK : NK ;
+fun myrskypilvi_NK : NK ;
+fun myrskysa'a'_NK : NK ;
+fun myrskytuuli_NK : NK ;
+fun myrskyvahinko_NK : NK ;
+fun myrskyvaroitus_NK : NK ;
+fun myrttiseppele_NK : NK ;
+fun myskihirvi_NK : NK ;
+fun myskiha'rka'_NK : NK ;
+fun myssypa'inen_NK : NK ;
+fun mysteerina'ytelma'_NK : NK ;
+fun myyma'la'apulainen_NK : NK ;
+fun myyma'la'auto_NK : NK ;
+fun myyma'la'ema'nta'_NK : NK ;
+fun myyma'la'etsiva'_NK : NK ;
+fun myyma'la'kaluste_NK : NK ;
+fun myyma'la'ketju_NK : NK ;
+fun myyma'la'po'yta'_NK : NK ;
+fun myyma'la'rakennus_NK : NK ;
+fun myyma'la'varas_NK : NK ;
+fun myyma'la'varkaus_NK : NK ;
+fun myyma'la'vene_NK : NK ;
+fun myyma'la'verkko_NK : NK ;
+fun myyntiagentti_NK : NK ;
+fun myyntialue_NK : NK ;
+fun myyntiartikkeli_NK : NK ;
+fun myyntiarvo_NK : NK ;
+fun myyntiautomaatti_NK : NK ;
+fun myyntiedustaja_NK : NK ;
+fun myyntiedustus_NK : NK ;
+fun myyntiehto_NK : NK ;
+fun myyntihenkinen_NK : NK ;
+fun myyntihinta_NK : NK ;
+fun myyntijohtaja_NK : NK ;
+fun myyntikate_NK : NK ;
+fun myyntikausi_NK : NK ;
+fun myyntikirje_NK : NK ;
+fun myyntikoju_NK : NK ;
+fun myyntikurssi_NK : NK ;
+fun myyntilista_NK : NK ;
+fun myyntimenestys_NK : NK ;
+fun myyntimies_NK : NK ;
+fun myyntina'yttely_NK : NK ;
+fun myyntipaikka_NK : NK ;
+fun myyntipakkaus_NK : NK ;
+fun myyntipalkkio_NK : NK ;
+fun myyntipiste_NK : NK ;
+fun myyntiprovisio_NK : NK ;
+fun myyntipa'iva'_NK : NK ;
+fun myyntipa'iva'ys_NK : NK ;
+fun myyntipa'a'llikko'_NK : NK ;
+fun myyntipo'yta'_NK : NK ;
+fun myyntitarjous_NK : NK ;
+fun myyntitykki_NK : NK ;
+fun myyntityo'_NK : NK ;
+fun myyntivaltti_NK : NK ;
+fun myyntivoitto_NK : NK ;
+fun myyntiyhtio'_NK : NK ;
+fun myyntiyhtyma'_NK : NK ;
+fun myyra'kuume_NK : NK ;
+fun myyttikritiikki_NK : NK ;
+fun myo'ha'syntyinen_NK : NK ;
+fun myo'ntyvyyspolitiikka_NK : NK ;
+fun myo'ntyva'isyys_NK : NK ;
+fun myo'nto'lause_NK : NK ;
+fun myo'nto'muoto_NK : NK ;
+fun myo'ta'aallokko_NK : NK ;
+fun myo'ta'aurinko_NK : NK ;
+fun myo'ta'ela'ja'_NK : NK ;
+fun myo'ta'isyys_NK : NK ;
+fun myo'ta'juoksija_NK : NK ;
+fun myo'ta'karva_NK : NK ;
+fun myo'ta'ka'yminen_NK : NK ;
+fun myo'ta'laskos_NK : NK ;
+fun myo'ta'maa_NK : NK ;
+fun myo'ta'mieli_NK : NK ;
+fun myo'ta'mielisyys_NK : NK ;
+fun myo'ta'ma'ki_NK : NK ;
+fun myo'ta'ote_NK : NK ;
+fun myo'ta'pa'iva'inen_NK : NK ;
+fun myo'ta'sukainen_NK : NK ;
+fun myo'ta'syntyinen_NK : NK ;
+fun myo'ta'tunto_NK : NK ;
+fun myo'ta'tuntoinen_AK : AK ;
+fun myo'ta'tuntoisuus_NK : NK ;
+fun myo'ta'tuntolakko_NK : NK ;
+fun myo'ta'tuuli_NK : NK ;
+fun myo'ta'vaikutus_NK : NK ;
+fun myo'ta'valo_NK : NK ;
+fun myo'ta'virta_NK : NK ;
+fun ma'enlaskukilpailu_NK : NK ;
+fun ma'kiauto_NK : NK ;
+fun ma'kienna'tys_NK : NK ;
+fun ma'kihyppy_NK : NK ;
+fun ma'kihyppa'a'ja'_NK : NK ;
+fun ma'kikilpailu_NK : NK ;
+fun ma'kikotka_NK : NK ;
+fun ma'kikuisma_NK : NK ;
+fun ma'kila'hto'_NK : NK ;
+fun ma'kimaa_NK : NK ;
+fun ma'kimaasto_NK : NK ;
+fun ma'kimaisema_NK : NK ;
+fun ma'kimeirami_NK : NK ;
+fun ma'kimies_NK : NK ;
+fun ma'kistartti_NK : NK ;
+fun ma'kitervakko_NK : NK ;
+fun ma'kitupa_NK : NK ;
+fun ma'kitupalainen_NK : NK ;
+fun ma'kiviikko_NK : NK ;
+fun ma'mmikoura_NK : NK ;
+fun ma'mmirove_NK : NK ;
+fun ma'mmituokkonen_NK : NK ;
+fun ma'nnynhavuo'ljy_NK : NK ;
+fun ma'nttipa'a'_NK : NK ;
+fun ma'ntyhalko_NK : NK ;
+fun ma'ntyhirsi_NK : NK ;
+fun ma'ntykangas_NK : NK ;
+fun ma'ntykehra'a'ja'_NK : NK ;
+fun ma'ntykiita'ja'_NK : NK ;
+fun ma'ntykukka_NK : NK ;
+fun ma'ntylauta_NK : NK ;
+fun ma'ntymetsikko'_NK : NK ;
+fun ma'ntymetsa'_NK : NK ;
+fun ma'ntymittari_NK : NK ;
+fun ma'ntypaneeli_NK : NK ;
+fun ma'ntypistia'inen_NK : NK ;
+fun ma'ntypuinen_NK : NK ;
+fun ma'ntypuu_NK : NK ;
+fun ma'ntysaippua_NK : NK ;
+fun ma'ntysuopa_NK : NK ;
+fun ma'ntyvaltainen_NK : NK ;
+fun ma'ntyo'ljy_NK : NK ;
+fun ma'nta'moottori_NK : NK ;
+fun ma'nta'moottorikone_NK : NK ;
+fun ma'rka'na'ppy_NK : NK ;
+fun ma'rka'na'ppyla'_NK : NK ;
+fun ma'rka'pesa'ke_NK : NK ;
+fun ma'rka'rakkula_NK : NK ;
+fun ma'rka'rupi_NK : NK ;
+fun ma'rssykori_NK : NK ;
+fun ma'tikala_NK : NK ;
+fun ma'timuna_NK : NK ;
+fun ma'titahna_NK : NK ;
+fun ma'ta'kuu_NK : NK ;
+fun ma'ta'na'ppyla'_NK : NK ;
+fun ma'ta'paise_NK : NK ;
+fun ma'yra'koira_NK : NK ;
+fun ma'a'riteosa_NK : NK ;
+fun ma'a'ra'aikainen_NK : NK ;
+fun ma'a'ra'aikaisuus_NK : NK ;
+fun ma'a'ra'asema_NK : NK ;
+fun ma'a'ra'ehto_NK : NK ;
+fun ma'a'ra'enemmisto'_NK : NK ;
+fun ma'a'ra'isyys_NK : NK ;
+fun ma'a'ra'kokoinen_NK : NK ;
+fun ma'a'ra'mitta_NK : NK ;
+fun ma'a'ra'mittainen_NK : NK ;
+fun ma'a'ra'muoto_NK : NK ;
+fun ma'a'ra'muotoinen_NK : NK ;
+fun ma'a'ra'osuus_NK : NK ;
+fun ma'a'ra'pa'iva'_NK : NK ;
+fun ma'a'ra'raha_NK : NK ;
+fun ma'a'ra'satama_NK : NK ;
+fun ma'a'ra'tarkoitus_NK : NK ;
+fun ma'a'ra'tietoinen_NK : NK ;
+fun ma'a'ra'tietoisuus_NK : NK ;
+fun ma'a'ra'vahvuus_NK : NK ;
+fun ma'a'ra'va'hemmisto'_NK : NK ;
+fun ma'a'ra'yskirja_NK : NK ;
+fun ma'a'ra'ysvalta_NK : NK ;
+fun mo'kkiho'pero'_NK : NK ;
+fun mo'kkikyla'_NK : NK ;
+fun mo'lyapina_NK : NK ;
+fun naamahermo_NK : NK ;
+fun naamahermohalvaus_NK : NK ;
+fun naamakukkainen_NK : NK ;
+fun naamalihas_NK : NK ;
+fun naamataulu_NK : NK ;
+fun naamava'rkki_NK : NK ;
+fun naamioverkko_NK : NK ;
+fun naapurialue_NK : NK ;
+fun naapuriapu_NK : NK ;
+fun naapuriasunto_NK : NK ;
+fun naapurihuoneisto_NK : NK ;
+fun naapurikansa_NK : NK ;
+fun naapurikateus_NK : NK ;
+fun naapurikaupunki_NK : NK ;
+fun naapurikunta_NK : NK ;
+fun naapurikyla'_NK : NK ;
+fun naapurila'hio'_NK : NK ;
+fun naapurimaa_NK : NK ;
+fun naapuriperhe_NK : NK ;
+fun naapuripita'ja'_NK : NK ;
+fun naapuripo'yta'_NK : NK ;
+fun naapurisopu_NK : NK ;
+fun naapuritalo_NK : NK ;
+fun naapurivaltio_NK : NK ;
+fun naapuruussuhde_NK : NK ;
+fun naarasela'in_NK : NK ;
+fun naarashirvi_NK : NK ;
+fun naaraskissa_NK : NK ;
+fun naarasleijona_NK : NK ;
+fun naaraspontti_NK : NK ;
+fun naaraspuolinen_NK : NK ;
+fun naarastiikeri_NK : NK ;
+fun naarauskoukku_NK : NK ;
+fun naattinauris_NK : NK ;
+fun naavaja'ka'la'_NK : NK ;
+fun naavaparta_NK : NK ;
+fun naavapartainen_NK : NK ;
+fun nahkahame_NK : NK ;
+fun nahkahansikas_NK : NK ;
+fun nahkahihna_NK : NK ;
+--? fun nahkahousut_NK : NK ;
+fun nahkajakku_NK : NK ;
+fun nahkajalkine_NK : NK ;
+fun nahkaja'ka'la'_NK : NK ;
+fun nahkaja'ljitelma'_NK : NK ;
+fun nahkakalusto_NK : NK ;
+fun nahkakansi_NK : NK ;
+fun nahkakantinen_NK : NK ;
+fun nahkakenka'_NK : NK ;
+fun nahkakinnas_NK : NK ;
+fun nahkakuula_NK : NK ;
+fun nahkaka'sine_NK : NK ;
+fun nahkalaukku_NK : NK ;
+fun nahkalompakko_NK : NK ;
+fun nahkamuna_NK : NK ;
+fun nahkaneula_NK : NK ;
+fun nahkapohja_NK : NK ;
+fun nahkapohjainen_NK : NK ;
+fun nahkapuku_NK : NK ;
+fun nahkapusakka_NK : NK ;
+fun nahkapusero_NK : NK ;
+fun nahkapa'a'_NK : NK ;
+fun nahkapa'a'llys_NK : NK ;
+fun nahkapa'a'llysteinen_NK : NK ;
+fun nahkapa'a'to's_NK : NK ;
+fun nahkaremmi_NK : NK ;
+fun nahkarotsi_NK : NK ;
+fun nahkarukkanen_NK : NK ;
+fun nahkasaapas_NK : NK ;
+fun nahkasalkku_NK : NK ;
+fun nahkaselka'_NK : NK ;
+fun nahkaselka'inen_NK : NK ;
+fun nahkasohva_NK : NK ;
+fun nahkatakki_NK : NK ;
+fun nahkateollisuus_NK : NK ;
+fun nahkatukka_NK : NK ;
+fun nahkatyo'_NK : NK ;
+fun nahkavyo'_NK : NK ;
+fun nahkava'ri_NK : NK ;
+fun nahkealehtinen_NK : NK ;
+fun nailonkangas_NK : NK ;
+fun nailonkuitu_NK : NK ;
+fun nailonko'ysi_NK : NK ;
+fun nailonlanka_NK : NK ;
+fun nailonsiima_NK : NK ;
+fun nailonsukka_NK : NK ;
+fun nailontrikoo_NK : NK ;
+fun nailonverkko_NK : NK ;
+fun naimisiinmeno_NK : NK ;
+fun naisasialiike_NK : NK ;
+fun naiskuorolaulu_NK : NK ;
+fun naissukupuoli_NK : NK ;
+fun naistentautila'a'ka'ri_NK : NK ;
+fun naistentautiopillinen_NK : NK ;
+fun naistentautioppi_NK : NK ;
+fun nakkikastike_NK : NK ;
+fun nakkikioski_NK : NK ;
+fun nakkimakkara_NK : NK ;
+fun nakkisa'mpyla'_NK : NK ;
+fun nakupelle_NK : NK ;
+fun nakuranta_NK : NK ;
+fun nakutuskesta'vyys_NK : NK ;
+fun nakutytto'_NK : NK ;
+fun nallekarhu_NK : NK ;
+fun nallipyssy_NK : NK ;
+fun namupala_NK : NK ;
+fun namuseta'_NK : NK ;
+fun napaja'ka'la'_NK : NK ;
+fun napaja'nnite_NK : NK ;
+fun napaja'a'_NK : NK ;
+fun napaja'a'tikko'_NK : NK ;
+fun napakelkka_NK : NK ;
+fun napakenka'_NK : NK ;
+fun napakettu_NK : NK ;
+fun napakymppi_NK : NK ;
+fun napalakki_NK : NK ;
+fun napalanko_NK : NK ;
+fun napalaskimo_NK : NK ;
+fun napalmpommi_NK : NK ;
+fun napamies_NK : NK ;
+fun napanuora_NK : NK ;
+fun napapiiri_NK : NK ;
+fun napapohjoinen_NK : NK ;
+fun naparetkeilija'_NK : NK ;
+fun naparetki_NK : NK ;
+fun naparetkikunta_NK : NK ;
+fun napaseutu_NK : NK ;
+fun napasika_NK : NK ;
+fun napatanssi_NK : NK ;
+fun napatanssija_NK : NK ;
+fun napatyra'_NK : NK ;
+fun napavaltimo_NK : NK ;
+fun napavirta_NK : NK ;
+fun napinla'pipisto_NK : NK ;
+fun napinla'pisilkki_NK : NK ;
+fun napituslista_NK : NK ;
+fun nappanahka_NK : NK ;
+fun nappanahkainen_NK : NK ;
+fun nappikauppa_NK : NK ;
+fun nappilenkki_NK : NK ;
+fun nappilista_NK : NK ;
+fun nappiparisto_NK : NK ;
+fun nappirivi_NK : NK ;
+fun nappisilma'_NK : NK ;
+fun nappisilma'inen_NK : NK ;
+fun nappisuoritus_NK : NK ;
+fun nappulajoukkue_NK : NK ;
+fun nappulakenka'_NK : NK ;
+fun nappulakerho_NK : NK ;
+fun nappulaliiga_NK : NK ;
+fun nappulasarja_NK : NK ;
+fun nappulaurheilija_NK : NK ;
+fun nappulaurheilu_NK : NK ;
+fun nappulaverho_NK : NK ;
+fun narikkalappu_NK : NK ;
+fun narkoosihumala_NK : NK ;
+fun narrimainen_AK : AK ;
+fun narsissikasvi_NK : NK ;
+fun naruhyppely_NK : NK ;
+fun naruhyppy_NK : NK ;
+fun narukeinu_NK : NK ;
+fun nastahammas_NK : NK ;
+fun nastarengas_NK : NK ;
+fun natriumhydroksidi_NK : NK ;
+fun natriumlamppu_NK : NK ;
+fun natriumnitraatti_NK : NK ;
+fun natriumsilikaatti_NK : NK ;
+fun natriumsulfaatti_NK : NK ;
+fun natriumsuola_NK : NK ;
+fun natsilainen_NK : NK ;
+fun natsitervehdys_NK : NK ;
+fun nauhajohto_NK : NK ;
+fun nauhakasetti_NK : NK ;
+fun nauhakaupunki_NK : NK ;
+fun nauhakenka'_NK : NK ;
+fun nauhakeraaminen_NK : NK ;
+fun nauhakeramiikka_NK : NK ;
+fun nauhakoriste_NK : NK ;
+fun nauhakuja_NK : NK ;
+fun nauhalaskuri_NK : NK ;
+fun nauhamakaroni_NK : NK ;
+fun nauhamusiikki_NK : NK ;
+fun nauhanopeus_NK : NK ;
+fun nauhaornamentti_NK : NK ;
+fun naulauskone_NK : NK ;
+fun naulauspistooli_NK : NK ;
+fun nauriso'ljy_NK : NK ;
+fun nauruhermo_NK : NK ;
+fun naurukohtaus_NK : NK ;
+fun naurulokki_NK : NK ;
+fun naurupommi_NK : NK ;
+fun nautaela'in_NK : NK ;
+fun nautakarja_NK : NK ;
+fun nautakiilia'inen_NK : NK ;
+fun nautamainen_NK : NK ;
+fun nautapaarma_NK : NK ;
+fun nautarotu_NK : NK ;
+fun nautintaoikeus_NK : NK ;
+fun nautintoaine_NK : NK ;
+fun navettarakennus_NK : NK ;
+fun navettaruokinta_NK : NK ;
+fun neekeriorja_NK : NK ;
+fun neekeriorjuus_NK : NK ;
+fun negatiivifilmi_NK : NK ;
+fun negatiivikuva_NK : NK ;
+fun neilikkao'ljy_NK : NK ;
+fun neitoika'inen_NK : NK ;
+fun neitsytkammio_NK : NK ;
+fun neitsytmatka_NK : NK ;
+fun neitsytpuhe_NK : NK ;
+fun neitsyto'ljy_NK : NK ;
+fun neliapila_NK : NK ;
+fun nelihenkinen_NK : NK ;
+fun nelijakoinen_NK : NK ;
+fun nelijalkainen_NK : NK ;
+fun nelijono_NK : NK ;
+fun nelikaistainen_NK : NK ;
+fun nelikulmainen_NK : NK ;
+fun nelikulmio_NK : NK ;
+fun nelikymppinen_NK : NK ;
+fun nelika'tinen_AK : AK ;
+fun nelimauste_NK : NK ;
+fun neliniitinen_NK : NK ;
+fun neliosainen_NK : NK ;
+fun nelirivi_NK : NK ;
+fun nelisahaus_NK : NK ;
+fun nelisointu_NK : NK ;
+fun nelisa'e_NK : NK ;
+fun nelitahokas_NK : NK ;
+fun nelitahtinen_NK : NK ;
+fun neliulotteinen_NK : NK ;
+fun nelivaljakko_NK : NK ;
+fun nelivartinen_NK : NK ;
+fun neliveto_NK : NK ;
+fun nelivetoinen_NK : NK ;
+fun neliviivainen_NK : NK ;
+fun nelivuotias_NK : NK ;
+fun nelivuotinen_NK : NK ;
+fun nelia'a'ninen_AK : AK ;
+fun nelio'hinta_NK : NK ;
+fun nelio'metri_NK : NK ;
+fun nelio'metrihinta_NK : NK ;
+fun nelio'metrivuokra_NK : NK ;
+fun nelio'milli_NK : NK ;
+fun nelio'millimetri_NK : NK ;
+fun nelio'mitta_NK : NK ;
+fun nelio'sentti_NK : NK ;
+fun nelio'senttimetri_NK : NK ;
+fun nelio'vuokra_NK : NK ;
+fun nelja'nneskilo_NK : NK ;
+fun nelja'nneslitra_NK : NK ;
+fun nelja'nnesmaileri_NK : NK ;
+fun nelja'nnesmaili_NK : NK ;
+fun nelja'nnesmiljoona_NK : NK ;
+fun nelja'nnestunti_NK : NK ;
+fun nelja'skymmenes_NK : NK ;
+fun nelja'sosa_NK : NK ;
+fun nelja'sosanuotti_NK : NK ;
+fun nelja'sosatauko_NK : NK ;
+fun nelja'ssadas_NK : NK ;
+fun nelja'toistavuotias_NK : NK ;
+fun nena'hengitys_NK : NK ;
+fun nena'kuorikko_NK : NK ;
+fun nena'ka'yta'va'_NK : NK ;
+fun nena'liina_NK : NK ;
+fun nena'luu_NK : NK ;
+fun nena'nielu_NK : NK ;
+fun nena'ontelo_NK : NK ;
+fun nena'polyyppi_NK : NK ;
+fun nena'rengas_NK : NK ;
+fun nena'rusto_NK : NK ;
+fun nena'saivartaja_NK : NK ;
+fun nena'tauti_NK : NK ;
+fun neonputki_NK : NK ;
+fun neonvalo_NK : NK ;
+fun neonva'ri_NK : NK ;
+fun neonva'rinen_NK : NK ;
+fun neppiauto_NK : NK ;
+fun neropatti_NK : NK ;
+fun nestehukka_NK : NK ;
+fun nesteja'nnitys_NK : NK ;
+fun nesteja'a'hdytys_NK : NK ;
+fun nestekaasu_NK : NK ;
+fun nestekaasukeitin_NK : NK ;
+fun nestekaasuka'ytto'inen_NK : NK ;
+fun nestekaasuliesi_NK : NK ;
+fun nestekaasupullo_NK : NK ;
+fun nestekide_NK : NK ;
+fun nestekidena'ytto'_NK : NK ;
+fun nestekompassi_NK : NK ;
+fun nestekytkin_NK : NK ;
+fun nestelukko_NK : NK ;
+fun nestemoottori_NK : NK ;
+fun nestema'a'ra'_NK : NK ;
+fun nestepatsas_NK : NK ;
+fun nestepitoinen_NK : NK ;
+fun nestepitoisuus_NK : NK ;
+fun nestepumppu_NK : NK ;
+fun nestesaippua_NK : NK ;
+fun nestesa'ilio'_NK : NK ;
+fun nestevirtaus_NK : NK ;
+fun nettoarvo_NK : NK ;
+fun nettohinta_NK : NK ;
+fun nettopaino_NK : NK ;
+fun nettopalkka_NK : NK ;
+fun nettotilavuus_NK : NK ;
+fun nettotulo_NK : NK ;
+fun nettotuotto_NK : NK ;
+fun nettovetoisuus_NK : NK ;
+fun neulahoito_NK : NK ;
+fun neulalaakeri_NK : NK ;
+fun neulanpistopolitiikka_NK : NK ;
+fun neulansilma'kaarre_NK : NK ;
+fun neulapaino_NK : NK ;
+fun neulapohjoinen_NK : NK ;
+fun neulatyyny_NK : NK ;
+fun neulaventtiili_NK : NK ;
+fun neuleasu_NK : NK ;
+fun neulekangas_NK : NK ;
+fun neulekone_NK : NK ;
+fun neulelanka_NK : NK ;
+fun neulemalli_NK : NK ;
+fun neulepuikko_NK : NK ;
+fun neulepuku_NK : NK ;
+fun neulepusero_NK : NK ;
+fun neuletakki_NK : NK ;
+fun neuletiheys_NK : NK ;
+fun neuletyo'_NK : NK ;
+fun neutronipommi_NK : NK ;
+fun neutronita'hti_NK : NK ;
+fun neuvolakortti_NK : NK ;
+fun neuvolaka'ynti_NK : NK ;
+fun neuvontanumero_NK : NK ;
+fun neuvosmies_NK : NK ;
+fun neuvostoarmeija_NK : NK ;
+fun neuvostohallitus_NK : NK ;
+fun neuvostojohtaja_NK : NK ;
+fun neuvostojohto_NK : NK ;
+fun neuvostovaltio_NK : NK ;
+fun neuvostovastainen_NK : NK ;
+fun neuvostovastaisuus_NK : NK ;
+fun neuvottelukierros_NK : NK ;
+fun neuvottelukosketus_NK : NK ;
+fun neuvottelukunta_NK : NK ;
+fun neuvottelupo'yta'_NK : NK ;
+fun neuvotteluratkaisu_NK : NK ;
+fun neuvottelutilaisuus_NK : NK ;
+fun neuvottelutulos_NK : NK ;
+fun nevakorpi_NK : NK ;
+fun nevaniitty_NK : NK ;
+fun nevara'me_NK : NK ;
+fun nidosluku_NK : NK ;
+fun nielurisa_NK : NK ;
+fun nielurisatulehdus_NK : NK ;
+fun nielutulehdus_NK : NK ;
+fun niemimaa_NK : NK ;
+fun niinikori_NK : NK ;
+fun niinikuitu_NK : NK ;
+fun niinipuu_NK : NK ;
+fun niinisolu_NK : NK ;
+fun niinisyy_NK : NK ;
+fun niinisa'ie_NK : NK ;
+fun niisivarsi_NK : NK ;
+fun niittauskone_NK : NK ;
+fun niittausvasara_NK : NK ;
+fun niittiliitos_NK : NK ;
+fun niittirivi_NK : NK ;
+fun niittisauma_NK : NK ;
+fun niittokone_NK : NK ;
+fun niittomurskain_NK : NK ;
+fun niittosilppuri_NK : NK ;
+fun niittyhumala_NK : NK ;
+fun niittykasvi_NK : NK ;
+fun niittykellukka_NK : NK ;
+fun niittykirvinen_NK : NK ;
+fun niittykukka_NK : NK ;
+fun niittykullero_NK : NK ;
+fun niittyleinikki_NK : NK ;
+fun niittynurmikka_NK : NK ;
+fun niittyna'tkelma'_NK : NK ;
+fun niittyvilla_NK : NK ;
+fun nikkeliallergia_NK : NK ;
+fun nikkeliallergikko_NK : NK ;
+fun nikkelikaivos_NK : NK ;
+fun nikkelimyrkytys_NK : NK ;
+fun nikotiinilaastari_NK : NK ;
+fun nikotiinimyrkytys_NK : NK ;
+fun nilakerros_NK : NK ;
+fun nilkkakenka'_NK : NK ;
+fun nilkkaketju_NK : NK ;
+fun nilkkanivel_NK : NK ;
+fun nilkkapituinen_NK : NK ;
+fun nilkkaremmi_NK : NK ;
+fun nilkkaremmikenka'_NK : NK ;
+fun nilkkarengas_NK : NK ;
+fun nilkkasukka_NK : NK ;
+fun nilkkataive_NK : NK ;
+fun nimihakemisto_NK : NK ;
+fun nimihenkilo'_NK : NK ;
+fun nimikilpi_NK : NK ;
+fun nimikirja_NK : NK ;
+fun nimikirjoitus_NK : NK ;
+fun nimikkokuppi_NK : NK ;
+fun nimikkola'hetti_NK : NK ;
+fun nimikkotuoli_NK : NK ;
+fun nimikortti_NK : NK ;
+fun nimikristitty_NK : NK ;
+fun nimilappu_NK : NK ;
+fun nimilehti_NK : NK ;
+fun nimileima_NK : NK ;
+fun nimilippu_NK : NK ;
+fun nimilista_NK : NK ;
+fun nimiluettelo_NK : NK ;
+fun nimimerkki_NK : NK ;
+fun nimimies_NK : NK ;
+fun nimimuisti_NK : NK ;
+fun nimineula_NK : NK ;
+fun niminovelli_NK : NK ;
+fun nimiosa_NK : NK ;
+fun nimiosake_NK : NK ;
+fun nimipa'iva'_NK : NK ;
+fun nimipa'iva'lahja_NK : NK ;
+fun nimipa'iva'onnittelu_NK : NK ;
+fun nimipa'iva'sankari_NK : NK ;
+fun nimiruno_NK : NK ;
+fun nimisana_NK : NK ;
+fun nimisiirto_NK : NK ;
+fun nimisivu_NK : NK ;
+fun nimitaulu_NK : NK ;
+fun nimityskierros_NK : NK ;
+fun nimityskirja_NK : NK ;
+fun nimitysoikeus_NK : NK ;
+fun nimivakuus_NK : NK ;
+fun nimio'lehti_NK : NK ;
+fun nimio'sivu_NK : NK ;
+fun nippelihullu_NK : NK ;
+fun nippelitieto_NK : NK ;
+fun nippulautta_NK : NK ;
+fun nippulauttaus_NK : NK ;
+fun nippunosturi_NK : NK ;
+fun nippuratkaisu_NK : NK ;
+fun niskaharjas_NK : NK ;
+fun niskaheitto_NK : NK ;
+fun niskahirsi_NK : NK ;
+fun niskahius_NK : NK ;
+fun niskakarva_NK : NK ;
+fun niskakoulu_NK : NK ;
+fun niskakuoppa_NK : NK ;
+fun niskalenkki_NK : NK ;
+fun niskanahka_NK : NK ;
+fun niskanikama_NK : NK ;
+fun niskaoja_NK : NK ;
+fun niskaote_NK : NK ;
+fun niskapalkki_NK : NK ;
+fun niskapuu_NK : NK ;
+fun niskasuojus_NK : NK ;
+fun niskasa'rky_NK : NK ;
+fun niskatuki_NK : NK ;
+fun niskatukka_NK : NK ;
+fun niskatyyny_NK : NK ;
+fun nitrodisko_NK : NK ;
+fun nitroglyseriini_NK : NK ;
+fun nitroglyseroli_NK : NK ;
+fun niukkaeleinen_NK : NK ;
+fun niukkalajinen_NK : NK ;
+fun niukkaluminen_NK : NK ;
+fun niukkasanainen_AK : AK ;
+fun nivelakseli_NK : NK ;
+fun niveljalkainen_NK : NK ;
+fun nivelja'ykistyma'_NK : NK ;
+fun nivelja'ykkyys_NK : NK ;
+fun nivelketju_NK : NK ;
+fun nivelkierukka_NK : NK ;
+fun nivelkipu_NK : NK ;
+fun nivelkuoppa_NK : NK ;
+fun nivelkytkin_NK : NK ;
+fun nivellevy_NK : NK ;
+fun nivelliitos_NK : NK ;
+fun nivelmato_NK : NK ;
+fun nivelnasta_NK : NK ;
+fun nivelneste_NK : NK ;
+fun nivelpinta_NK : NK ;
+fun nivelpussi_NK : NK ;
+fun nivelreuma_NK : NK ;
+fun nivelrikko_NK : NK ;
+fun nivelrusto_NK : NK ;
+fun nivelsairaus_NK : NK ;
+fun nivelside_NK : NK ;
+fun nivelsa'rky_NK : NK ;
+fun niveltappi_NK : NK ;
+fun niveltauti_NK : NK ;
+fun niveltulehdus_NK : NK ;
+fun nivelvoide_NK : NK ;
+fun nivelva'li_NK : NK ;
+fun noitakonsti_NK : NK ;
+fun noitarovio_NK : NK ;
+fun noitarumpu_NK : NK ;
+fun noitausko_NK : NK ;
+fun noitavaino_NK : NK ;
+fun nojatuoli_NK : NK ;
+fun nojatuolimatka_NK : NK ;
+fun nokiha'rma'_NK : NK ;
+fun nokikana_NK : NK ;
+fun nokikolari_NK : NK ;
+fun nokiluukku_NK : NK ;
+fun nokimusta_NK : NK ;
+fun nokipoika_NK : NK ;
+fun nokisieni_NK : NK ;
+fun nokivalkea_NK : NK ;
+fun nokkahuilu_NK : NK ;
+fun nokkakolari_NK : NK ;
+fun nokkamies_NK : NK ;
+fun nokkapokka_NK : NK ;
+fun nokkapyo'ra'_NK : NK ;
+fun nollajohdin_NK : NK ;
+fun nollakasvu_NK : NK ;
+fun nollakeli_NK : NK ;
+fun nollakerho_NK : NK ;
+fun nollakulma_NK : NK ;
+fun nollalinja_NK : NK ;
+fun nollaluokka_NK : NK ;
+fun nollamaadoitus_NK : NK ;
+fun nollamaatto_NK : NK ;
+fun nollameridiaani_NK : NK ;
+fun nollapiste_NK : NK ;
+fun nollasarja_NK : NK ;
+fun nollatulos_NK : NK ;
+fun nollatutkimus_NK : NK ;
+fun nominatiivimuoto_NK : NK ;
+fun noottikriisi_NK : NK ;
+fun nopeajalkainen_NK : NK ;
+fun nopeakasvuinen_NK : NK ;
+fun nopeakulkuinen_NK : NK ;
+fun nopeaka'yntinen_NK : NK ;
+fun nopealiikkeinen_NK : NK ;
+fun nopealukuinen_NK : NK ;
+fun nopearytminen_NK : NK ;
+fun nopeatahtinen_NK : NK ;
+fun nopeatehoinen_NK : NK ;
+fun nopeatekoinen_NK : NK ;
+fun nopeatempoinen_NK : NK ;
+fun nopeaa'lyinen_NK : NK ;
+fun nopeusajo_NK : NK ;
+fun nopeusenna'tys_NK : NK ;
+fun nopeuslaskija_NK : NK ;
+fun nopeuslasku_NK : NK ;
+fun nopeusmittari_NK : NK ;
+fun nopeusrajoitus_NK : NK ;
+fun nopeusvalvonta_NK : NK ;
+fun noppakiveys_NK : NK ;
+fun noppakivi_NK : NK ;
+fun noppapeli_NK : NK ;
+fun nopsajalkainen_NK : NK ;
+fun norjalainen_NK : NK ;
+fun norkkokasvi_NK : NK ;
+fun normaalihintainen_NK : NK ;
+fun normaalikokoinen_NK : NK ;
+fun normaalina'ko'inen_NK : NK ;
+fun normaalipainoinen_NK : NK ;
+fun normaalipituinen_NK : NK ;
+fun normaalia'lyinen_NK : NK ;
+fun normipaine_NK : NK ;
+fun normipalkka_NK : NK ;
+fun norsunluutorni_NK : NK ;
+fun norsunluuveistos_NK : NK ;
+fun norsutauti_NK : NK ;
+fun nostokauha_NK : NK ;
+fun nostokorkeus_NK : NK ;
+fun nostokoukku_NK : NK ;
+fun nostokurki_NK : NK ;
+fun nostoko'li_NK : NK ;
+fun nostoko'livene_NK : NK ;
+fun nostolaite_NK : NK ;
+fun nostolava_NK : NK ;
+fun nostomies_NK : NK ;
+fun nostoruuvi_NK : NK ;
+fun nostosilta_NK : NK ;
+fun nostovoima_NK : NK ;
+fun nostova'ki_NK : NK ;
+fun nosturiauto_NK : NK ;
+fun notariaattiosasto_NK : NK ;
+fun notariaattitoiminta_NK : NK ;
+fun notkealiikkeinen_NK : NK ;
+fun notkopaikka_NK : NK ;
+fun notkoselka'_NK : NK ;
+fun notkoselka'inen_NK : NK ;
+fun notkoselka'isyys_NK : NK ;
+fun nousuhumala_NK : NK ;
+fun nousujohteinen_NK : NK ;
+fun nousujohto_NK : NK ;
+fun nousukala_NK : NK ;
+fun nousukasmainen_AK : AK ;
+fun nousukausi_NK : NK ;
+fun nousukulma_NK : NK ;
+fun nousukunto_NK : NK ;
+fun nousunopeus_NK : NK ;
+fun nousupaine_NK : NK ;
+fun noususuhdanne_NK : NK ;
+fun noususuunta_NK : NK ;
+fun nousutavu_NK : NK ;
+fun nousuvesi_NK : NK ;
+fun noutoannos_NK : NK ;
+fun noutoposti_NK : NK ;
+fun noutopo'yta'_NK : NK ;
+fun noutotukku_NK : NK ;
+fun novellikirjailija_NK : NK ;
+fun novellikokoelma_NK : NK ;
+fun novellitaide_NK : NK ;
+fun novellivalikoima_NK : NK ;
+fun nudistileiri_NK : NK ;
+fun nudistiranta_NK : NK ;
+fun nugaaja'a'telo'_NK : NK ;
+fun nugaakakku_NK : NK ;
+fun nuhakuume_NK : NK ;
+fun nuhala'a'ke_NK : NK ;
+fun nuhanena'_NK : NK ;
+fun nuhasumutin_NK : NK ;
+fun nuhatartunta_NK : NK ;
+fun nuhdesaarna_NK : NK ;
+fun nuijamies_NK : NK ;
+fun nuijanukutus_NK : NK ;
+fun nuijapa'a'_NK : NK ;
+fun nuijasota_NK : NK ;
+fun nukkakangas_NK : NK ;
+fun nukkalanka_NK : NK ;
+fun nukkamatto_NK : NK ;
+fun nukkapinta_NK : NK ;
+fun nukkapintainen_NK : NK ;
+fun nukkasammal_NK : NK ;
+fun nukkasihti_NK : NK ;
+fun nukkasolmu_NK : NK ;
+fun nukkeanimaatio_NK : NK ;
+fun nukkefilmi_NK : NK ;
+fun nukkehallitsija_NK : NK ;
+fun nukkehallitus_NK : NK ;
+fun nukkekoti_NK : NK ;
+fun nukkeleikki_NK : NK ;
+fun nukkemainen_NK : NK ;
+fun nukkena'ytelma'_NK : NK ;
+fun nukkena'yttelija'_NK : NK ;
+fun nukketaiteilija_NK : NK ;
+fun nukketeatteri_NK : NK ;
+fun nukutusaine_NK : NK ;
+fun nukutusla'a'ka'ri_NK : NK ;
+fun nukutuspiikki_NK : NK ;
+fun nulikkamainen_NK : NK ;
+fun numeroarvo_NK : NK ;
+fun numeroasteikko_NK : NK ;
+fun numeroja'rjestys_NK : NK ;
+fun numerolukko_NK : NK ;
+fun numeromerkinta'_NK : NK ;
+fun numeromerkki_NK : NK ;
+fun numeromuisti_NK : NK ;
+fun numerona'ytto'_NK : NK ;
+fun numerona'ytto'inen_NK : NK ;
+fun numerosarja_NK : NK ;
+fun numerotarkastaja_NK : NK ;
+fun numerotarkastus_NK : NK ;
+fun numerotaulu_NK : NK ;
+fun numerotiedotus_NK : NK ;
+fun numerotieto_NK : NK ;
+fun numerovirhe_NK : NK ;
+fun numeroyhdistelma'_NK : NK ;
+fun nummimaa_NK : NK ;
+fun nummitatti_NK : NK ;
+fun nunnakunta_NK : NK ;
+fun nunnaluostari_NK : NK ;
+fun nunnalupaus_NK : NK ;
+fun nuohousharja_NK : NK ;
+fun nuohouskauha_NK : NK ;
+fun nuohouskola_NK : NK ;
+fun nuohouskuula_NK : NK ;
+fun nuohousluukku_NK : NK ;
+fun nuolenpa'a'kirjoitus_NK : NK ;
+fun nuolihaukka_NK : NK ;
+fun nuolijuna_NK : NK ;
+fun nuolijuurijauho_NK : NK ;
+fun nuolikotelo_NK : NK ;
+fun nuolilamppu_NK : NK ;
+fun nuolimainen_NK : NK ;
+fun nuolimyrkky_NK : NK ;
+fun nuolipyssy_NK : NK ;
+fun nuolukivi_NK : NK ;
+fun nuorakeinu_NK : NK ;
+fun nuorakeraaminen_NK : NK ;
+fun nuorakeramiikka_NK : NK ;
+fun nuorennusleikkaus_NK : NK ;
+fun nuorikko_NK : NK ;
+fun nuoripari_NK : NK ;
+fun nuorisoasema_NK : NK ;
+fun nuorisohotelli_NK : NK ;
+fun nuorisojengi_NK : NK ;
+fun nuorisojoukko_NK : NK ;
+fun nuorisoja'rjesto'_NK : NK ;
+fun nuorisokerho_NK : NK ;
+fun nuorisokirja_NK : NK ;
+fun nuorisokirjailija_NK : NK ;
+fun nuorisokoti_NK : NK ;
+fun nuorisokulttuuri_NK : NK ;
+fun nuorisoleiri_NK : NK ;
+fun nuorisomuoti_NK : NK ;
+fun nuorisomusiikki_NK : NK ;
+fun nuorisopappi_NK : NK ;
+fun nuorisopastori_NK : NK ;
+fun nuorisopoliisi_NK : NK ;
+fun nuorisopsykiatria_NK : NK ;
+fun nuorisoseura_NK : NK ;
+fun nuorisoseuralainen_NK : NK ;
+fun nuorisoseuraliike_NK : NK ;
+fun nuorisosihteeri_NK : NK ;
+fun nuorisotalo_NK : NK ;
+fun nuorisotyo'_NK : NK ;
+fun nuorisotyo'tto'myys_NK : NK ;
+fun nuoruusaikainen_NK : NK ;
+fun nuoruusika'_NK : NK ;
+fun nuoruuskausi_NK : NK ;
+fun nuoruusmuisto_NK : NK ;
+fun nuoruusvuosi_NK : NK ;
+fun nuotinlukutaito_NK : NK ;
+fun nuotiokala_NK : NK ;
+fun nuotiopaikka_NK : NK ;
+fun nuotiopuu_NK : NK ;
+fun nuotiosammal_NK : NK ;
+fun nuotiotuli_NK : NK ;
+fun nuottakalastus_NK : NK ;
+fun nuottakota_NK : NK ;
+fun nuottakunta_NK : NK ;
+fun nuottaruoho_NK : NK ;
+fun nuottaruohokasvi_NK : NK ;
+fun nuottiarvo_NK : NK ;
+fun nuottiavain_NK : NK ;
+fun nuottikirjoitus_NK : NK ;
+fun nuottilehti_NK : NK ;
+fun nuottimerkki_NK : NK ;
+fun nuottipainos_NK : NK ;
+fun nuottipaperi_NK : NK ;
+fun nuottiteline_NK : NK ;
+fun nuottivihko_NK : NK ;
+fun nuottiviiva_NK : NK ;
+fun nuottiviivasto_NK : NK ;
+fun nupinaula_NK : NK ;
+fun nupopa'inen_NK : NK ;
+fun nupopa'a'_NK : NK ;
+fun nuppineula_NK : NK ;
+fun nuppipa'inen_NK : NK ;
+fun nupukiveys_NK : NK ;
+fun nupukivi_NK : NK ;
+fun nupukivikatu_NK : NK ;
+fun nupukkinahka_NK : NK ;
+fun nurinajo_NK : NK ;
+fun nurinmeno_NK : NK ;
+fun nurinpa'inen_NK : NK ;
+fun nurjamielisyys_NK : NK ;
+fun nurkkahylly_NK : NK ;
+fun nurkkakaappi_NK : NK ;
+fun nurkkakivi_NK : NK ;
+fun nurkkakunta_NK : NK ;
+fun nurkkalauta_NK : NK ;
+fun nurkkaliitos_NK : NK ;
+fun nurkkapatriootti_NK : NK ;
+fun nurkkapo'yta'_NK : NK ;
+fun nurkkasalvos_NK : NK ;
+fun nurmiheina'_NK : NK ;
+fun nurmikasvi_NK : NK ;
+fun nurmikentta'_NK : NK ;
+fun nurmikkokasvi_NK : NK ;
+fun nurmilauha_NK : NK ;
+fun nurmimatto_NK : NK ;
+fun nurminahikas_NK : NK ;
+fun nurminata_NK : NK ;
+fun nurmipallo_NK : NK ;
+fun nurmirehu_NK : NK ;
+fun nurmiro'lli_NK : NK ;
+fun nurmitatar_NK : NK ;
+fun nurmita'dyke_NK : NK ;
+fun nurmiviljelys_NK : NK ;
+fun nutipa'inen_NK : NK ;
+fun nutipa'a'_NK : NK ;
+fun nutriaturkki_NK : NK ;
+fun nutturakampaus_NK : NK ;
+fun nutturasolki_NK : NK ;
+fun nuuskarasia_NK : NK ;
+fun nuuskatupakka_NK : NK ;
+fun nykero'nena'_NK : NK ;
+fun nykero'nena'inen_NK : NK ;
+fun nylkyhinta_NK : NK ;
+fun nypla'ystyyny_NK : NK ;
+fun nyrkkeilyhansikas_NK : NK ;
+fun nyrkkeilyhanska_NK : NK ;
+fun nyrkkeilykeha'_NK : NK ;
+fun nyrkkeilykinnas_NK : NK ;
+fun nyrkkeilyka'sine_NK : NK ;
+fun nyrkkeilyottelu_NK : NK ;
+fun nyrkkeilysa'kki_NK : NK ;
+fun nyrkkipaja_NK : NK ;
+fun nyrkkiposti_NK : NK ;
+fun nyrkkipyykki_NK : NK ;
+fun nyrkkirauta_NK : NK ;
+fun nyrkkisankari_NK : NK ;
+fun nyrkkisa'a'nto'_NK : NK ;
+fun nyrkkitappelu_NK : NK ;
+fun nyrkkivalta_NK : NK ;
+fun nystyra'bakteeri_NK : NK ;
+fun nyyhkyleffa_NK : NK ;
+fun nyyhkytarina_NK : NK ;
+fun na'ivetystauti_NK : NK ;
+fun na'kemysero_NK : NK ;
+fun na'kkileipa'_NK : NK ;
+fun na'kyleipa'_NK : NK ;
+fun na'kyvyysalue_NK : NK ;
+fun na'kyva'isyys_NK : NK ;
+fun na'ko'aisti_NK : NK ;
+fun na'ko'aistimus_NK : NK ;
+fun na'ko'alahissi_NK : NK ;
+fun na'ko'alakahvila_NK : NK ;
+fun na'ko'alapaikka_NK : NK ;
+fun na'ko'alaravintola_NK : NK ;
+fun na'ko'alatasanne_NK : NK ;
+fun na'ko'elin_NK : NK ;
+fun na'ko'este_NK : NK ;
+fun na'ko'eta'isyys_NK : NK ;
+fun na'ko'harha_NK : NK ;
+fun na'ko'havainto_NK : NK ;
+fun na'ko'hermo_NK : NK ;
+fun na'ko'ha'irio'_NK : NK ;
+fun na'ko'isyys_NK : NK ;
+fun na'ko'kanta_NK : NK ;
+fun na'ko'kentta'_NK : NK ;
+fun na'ko'keskus_NK : NK ;
+fun na'ko'kulma_NK : NK ;
+fun na'ko'kyky_NK : NK ;
+fun na'ko'muisti_NK : NK ;
+fun na'ko'piiri_NK : NK ;
+fun na'ko'puhelin_NK : NK ;
+fun na'ko'radio_NK : NK ;
+fun na'ko'suoja_NK : NK ;
+fun na'ko'tarkkuus_NK : NK ;
+fun na'ko'torni_NK : NK ;
+fun na'ko'vamma_NK : NK ;
+fun na'ko'vammainen_NK : NK ;
+fun na'ko'vammaisuus_NK : NK ;
+fun na'ko'vinkkeli_NK : NK ;
+fun na'ko'yhteys_NK : NK ;
+fun na'lka'kuolema_NK : NK ;
+fun na'lka'kurki_NK : NK ;
+fun na'lka'kuuri_NK : NK ;
+fun na'lka'lakko_NK : NK ;
+fun na'lka'maa_NK : NK ;
+fun na'lka'pakolainen_NK : NK ;
+fun na'lka'palkka_NK : NK ;
+fun na'lka'po'ho'_NK : NK ;
+fun na'lka'raja_NK : NK ;
+fun na'lka'taiteilija_NK : NK ;
+fun na'lka'vuosi_NK : NK ;
+fun na'lka'vyo'_NK : NK ;
+fun na'ppituntuma_NK : NK ;
+fun na'ppyla'hansikas_NK : NK ;
+fun na'ppa'ilysoitin_NK : NK ;
+fun na'ppa'inharmonikka_NK : NK ;
+fun na'ppa'inpuhelin_NK : NK ;
+fun na'pa'ytyslyo'nti_NK : NK ;
+fun na'sia'pensas_NK : NK ;
+fun na'yteikkuna_NK : NK ;
+fun na'yteikkunaostos_NK : NK ;
+fun na'ytekappale_NK : NK ;
+fun na'ytelma'harjoitus_NK : NK ;
+fun na'ytelma'kerho_NK : NK ;
+fun na'ytelma'kilpailu_NK : NK ;
+fun na'ytelma'kirjailija_NK : NK ;
+fun na'ytelma'musiikki_NK : NK ;
+fun na'ytelma'sovitus_NK : NK ;
+fun na'ytenumero_NK : NK ;
+fun na'ytepakkaus_NK : NK ;
+fun na'ytepala_NK : NK ;
+fun na'ytetunti_NK : NK ;
+fun na'ytteilleasettaja_NK : NK ;
+fun na'ytteillepanija_NK : NK ;
+fun na'ytteillepano_NK : NK ;
+fun na'yttelija'kunta_NK : NK ;
+fun na'yttelija'seurue_NK : NK ;
+fun na'yttelija'suoritus_NK : NK ;
+fun na'yttelyalue_NK : NK ;
+fun na'yttelyesine_NK : NK ;
+fun na'yttelyhalli_NK : NK ;
+fun na'yttelyluettelo_NK : NK ;
+fun na'yttelytila_NK : NK ;
+fun na'yttelyvieras_NK : NK ;
+fun na'ytta'mo'esitys_NK : NK ;
+fun na'ytta'mo'hahmo_NK : NK ;
+fun na'ytta'mo'kirja_NK : NK ;
+fun na'ytta'mo'koneisto_NK : NK ;
+fun na'ytta'mo'kuva_NK : NK ;
+fun na'ytta'mo'mestari_NK : NK ;
+fun na'ytta'mo'mies_NK : NK ;
+fun na'ytta'mo'miljo'o'_NK : NK ;
+fun na'ytta'mo'pa'a'llikko'_NK : NK ;
+fun na'ytta'mo'sovitus_NK : NK ;
+fun na'ytta'mo'taide_NK : NK ;
+fun na'ytta'mo'tarpeisto_NK : NK ;
+fun na'ytta'mo'tekniikka_NK : NK ;
+fun na'ytto'laite_NK : NK ;
+fun na'ytto'levy_NK : NK ;
+fun na'ytto'lippu_NK : NK ;
+fun na'ytto'pa'a'te_NK : NK ;
+fun na'ytto'ruutu_NK : NK ;
+fun na'ytto'suoja_NK : NK ;
+fun na'ytto'taulu_NK : NK ;
+fun na'ytto'vekseli_NK : NK ;
+fun na'yta'nto'kausi_NK : NK ;
+fun na'yta'nto'vuosi_NK : NK ;
+fun na'yto'skappale_NK : NK ;
+fun na'yto'slaji_NK : NK ;
+fun na'yto'sottelu_NK : NK ;
+fun na'a'ta'ela'in_NK : NK ;
+fun no'yra'selka'inen_NK : NK ;
+fun no'yra'selka'isyys_NK : NK ;
+fun obligaatiolaina_NK : NK ;
+fun odotusarvo_NK : NK ;
+fun odotushuone_NK : NK ;
+fun odotuslista_NK : NK ;
+fun odotuspa'iva'_NK : NK ;
+fun odotussali_NK : NK ;
+fun offsetmenetelma'_NK : NK ;
+fun offsetpainate_NK : NK ;
+fun offsetpaino_NK : NK ;
+fun ohennusaine_NK : NK ;
+fun ohiheitto_NK : NK ;
+fun ohikulkija_NK : NK ;
+fun ohikulku_NK : NK ;
+fun ohikulkumatka_NK : NK ;
+fun ohikulkutie_NK : NK ;
+fun ohilaukaus_NK : NK ;
+fun ohilyo'nti_NK : NK ;
+fun ohimarssi_NK : NK ;
+fun ohimeneva'_AK : AK ;
+fun ohimeno_NK : NK ;
+fun ohimoinen_NK : NK ;
+fun ohimolihas_NK : NK ;
+fun ohimolohko_NK : NK ;
+fun ohimoluu_NK : NK ;
+fun ohituskaista_NK : NK ;
+fun ohituskielto_NK : NK ;
+fun ohituskirurgia_NK : NK ;
+fun ohituskolari_NK : NK ;
+fun ohitusleikkaus_NK : NK ;
+fun ohitusna'kema'_NK : NK ;
+fun ohituspyynto'_NK : NK ;
+fun ohitustie_NK : NK ;
+fun ohitustilanne_NK : NK ;
+fun ohivalinta_NK : NK ;
+fun ohivalintanumero_NK : NK ;
+fun ohjaajavierailu_NK : NK ;
+fun ohjaskelkka_NK : NK ;
+fun ohjaskelkkailu_NK : NK ;
+fun ohjausakseli_NK : NK ;
+fun ohjauskorko_NK : NK ;
+fun ohjauskyvyto'n_NK : NK ;
+fun ohjauslaite_NK : NK ;
+fun ohjauslukko_NK : NK ;
+fun ohjausmekanismi_NK : NK ;
+fun ohjauspaneeli_NK : NK ;
+fun ohjauspotkuri_NK : NK ;
+fun ohjauspylva's_NK : NK ;
+fun ohjauspyo'ra'_NK : NK ;
+fun ohjauspo'yta'_NK : NK ;
+fun ohjaussauva_NK : NK ;
+fun ohjaustanko_NK : NK ;
+fun ohjaustaulu_NK : NK ;
+fun ohjaustehostin_NK : NK ;
+fun ohjausvaihde_NK : NK ;
+fun ohjehinta_NK : NK ;
+fun ohjekirja_NK : NK ;
+fun ohjekirjanen_NK : NK ;
+fun ohjelmajulistus_NK : NK ;
+fun ohjelmakirjasto_NK : NK ;
+fun ohjelmalehtinen_NK : NK ;
+fun ohjelmamusiikki_NK : NK ;
+fun ohjelmansiirtoketju_NK : NK ;
+fun ohjelmansiirtoverkko_NK : NK ;
+fun ohjelmanumero_NK : NK ;
+fun ohjelmapalvelu_NK : NK ;
+fun ohjelmasarja_NK : NK ;
+fun ohjelmatoimisto_NK : NK ;
+fun ohjelmatuotanto_NK : NK ;
+fun ohjelmavihkonen_NK : NK ;
+fun ohjelmointikieli_NK : NK ;
+fun ohjemerkki_NK : NK ;
+fun ohjenopeus_NK : NK ;
+fun ohjenuora_NK : NK ;
+fun ohjepalkka_NK : NK ;
+fun ohjesa'a'nto'_NK : NK ;
+fun ohjusase_NK : NK ;
+fun ohjusristeilija'_NK : NK ;
+fun ohjussiilo_NK : NK ;
+fun ohjustukikohta_NK : NK ;
+fun ohjusvene_NK : NK ;
+fun ohrahiutalepuuro_NK : NK ;
+fun ohrajauho_NK : NK ;
+fun ohraleipa'_NK : NK ;
+fun ohrapelto_NK : NK ;
+fun ohrapirtelo'_NK : NK ;
+fun ohrapuuro_NK : NK ;
+fun ohrarieska_NK : NK ;
+fun ohraryyni_NK : NK ;
+fun ohraryynipuuro_NK : NK ;
+fun ohrasuurimo_NK : NK ;
+fun ohuthuulinen_NK : NK ;
+fun ohutkalvotekniikka_NK : NK ;
+fun ohutkaulainen_NK : NK ;
+fun ohutkuorinen_NK : NK ;
+fun ohutpohjainen_NK : NK ;
+fun ohutrunkoinen_NK : NK ;
+fun ohuttukkainen_NK : NK ;
+fun oikaisulukija_NK : NK ;
+fun oikaisuluku_NK : NK ;
+fun oikeakielinen_NK : NK ;
+fun oikeakielisyys_NK : NK ;
+fun oikeakielisyysohje_NK : NK ;
+fun oikeakierteinen_NK : NK ;
+fun oikeaka'tinen_NK : NK ;
+fun oikeaka'tisyys_NK : NK ;
+fun oikeamielisyys_NK : NK ;
+fun oikeaoppinen_AK : AK ;
+fun oikeaoppisuus_NK : NK ;
+fun oikeauskoinen_NK : NK ;
+fun oikeinkirjoitus_NK : NK ;
+fun oikeinkirjoitussa'a'nto'_NK : NK ;
+fun oikeistodiktatuuri_NK : NK ;
+fun oikeistoenemmisto'_NK : NK ;
+fun oikeistohallitus_NK : NK ;
+fun oikeistolainen_NK : NK ;
+fun oikeistolehdisto'_NK : NK ;
+fun oikeistolehti_NK : NK ;
+fun oikeistopiiri_NK : NK ;
+fun oikeistopoliitikko_NK : NK ;
+fun oikeistopolitiikka_NK : NK ;
+fun oikeistopuolue_NK : NK ;
+fun oikeistosiipi_NK : NK ;
+fun oikeudenka'yntiavustaja_NK : NK ;
+fun oikeusapu_NK : NK ;
+fun oikeusaputoimisto_NK : NK ;
+fun oikeusasema_NK : NK ;
+fun oikeusasia_NK : NK ;
+fun oikeusasiamies_NK : NK ;
+fun oikeusaste_NK : NK ;
+fun oikeusavustaja_NK : NK ;
+fun oikeushallinto_NK : NK ;
+fun oikeushenkilo'_NK : NK ;
+fun oikeushistoria_NK : NK ;
+fun oikeushyva'_NK : NK ;
+fun oikeusistuin_NK : NK ;
+fun oikeusjuttu_NK : NK ;
+fun oikeusja'rjestys_NK : NK ;
+fun oikeuskansleri_NK : NK ;
+fun oikeuskelpoinen_NK : NK ;
+fun oikeuskelpoisuus_NK : NK ;
+fun oikeuska'sittely_NK : NK ;
+fun oikeuska'sitys_NK : NK ;
+fun oikeuska'yta'nto'_NK : NK ;
+fun oikeuslaitos_NK : NK ;
+fun oikeusla'a'ka'ri_NK : NK ;
+fun oikeusministeri_NK : NK ;
+fun oikeusministerio'_NK : NK ;
+fun oikeusmurha_NK : NK ;
+fun oikeusneuvos_NK : NK ;
+fun oikeusneuvosmies_NK : NK ;
+fun oikeusnormi_NK : NK ;
+fun oikeusnotaari_NK : NK ;
+fun oikeusohje_NK : NK ;
+--? fun oikeusoppinut_NK : NK ;
+fun oikeuspormestari_NK : NK ;
+fun oikeuspsykiatria_NK : NK ;
+fun oikeussali_NK : NK ;
+fun oikeusseuraamus_NK : NK ;
+fun oikeusseuraus_NK : NK ;
+fun oikeussuoja_NK : NK ;
+fun oikeussa'a'nno's_NK : NK ;
+fun oikeustaistelu_NK : NK ;
+fun oikeustaju_NK : NK ;
+fun oikeustalo_NK : NK ;
+fun oikeustapahtuma_NK : NK ;
+fun oikeustapaus_NK : NK ;
+fun oikeusteko_NK : NK ;
+fun oikeustie_NK : NK ;
+fun oikeustiede_NK : NK ;
+fun oikeustieteilija'_NK : NK ;
+fun oikeustoimenpide_NK : NK ;
+fun oikeustoimi_NK : NK ;
+fun oikeustoimikelpoinen_NK : NK ;
+fun oikeustoimikelpoisuus_NK : NK ;
+fun oikeusturva_NK : NK ;
+fun oikeustutkinto_NK : NK ;
+fun oikeusupseeri_NK : NK ;
+fun oikeusvaikutus_NK : NK ;
+fun oikeusvaltio_NK : NK ;
+fun oikeusvoima_NK : NK ;
+fun oikeusvoimainen_NK : NK ;
+fun oikosulkuvirta_NK : NK ;
+fun oirearvo_NK : NK ;
+fun oireyhtyma'_NK : NK ;
+fun oivalluskyky_NK : NK ;
+fun ojajyrsin_NK : NK ;
+fun ojakellukka_NK : NK ;
+fun ojaka'rsa'mo'_NK : NK ;
+fun ojalapio_NK : NK ;
+fun ojavalo_NK : NK ;
+fun ojennusliike_NK : NK ;
+fun ojentajalihas_NK : NK ;
+fun okahaarake_NK : NK ;
+fun okakuusi_NK : NK ;
+fun okasolu_NK : NK ;
+fun oksahanka_NK : NK ;
+fun oksakiehkura_NK : NK ;
+fun oksalakka_NK : NK ;
+fun oksapahvi_NK : NK ;
+fun oksapaperi_NK : NK ;
+fun oksasaha_NK : NK ;
+--? fun oksasakset_NK : NK ;
+fun oksasilppuri_NK : NK ;
+fun oksennuspallo_NK : NK ;
+fun oksetusaine_NK : NK ;
+fun oktaaniluku_NK : NK ;
+fun oleskelulupa_NK : NK ;
+fun oleskelunurkkaus_NK : NK ;
+fun oleskelupaikka_NK : NK ;
+fun oleskeluryhma'_NK : NK ;
+fun oleskelutila_NK : NK ;
+fun oletusarvo_NK : NK ;
+fun oliivipuu_NK : NK ;
+fun oliivio'ljy_NK : NK ;
+fun olkahihna_NK : NK ;
+fun olkalaukku_NK : NK ;
+fun olkalihas_NK : NK ;
+fun olkalinja_NK : NK ;
+fun olkaluu_NK : NK ;
+fun olkanauha_NK : NK ;
+fun olkanivel_NK : NK ;
+fun olkapa'a'_NK : NK ;
+fun olkatappi_NK : NK ;
+fun olkatoppaus_NK : NK ;
+fun olkavarsi_NK : NK ;
+fun olkihattu_NK : NK ;
+fun olkihimmeli_NK : NK ;
+fun olkikatto_NK : NK ;
+fun olkikattoinen_NK : NK ;
+fun olkikukka_NK : NK ;
+fun olkileipa'_NK : NK ;
+fun olkipaali_NK : NK ;
+fun olkipelletti_NK : NK ;
+fun olkipuriste_NK : NK ;
+fun olkityo'_NK : NK ;
+fun oloasu_NK : NK ;
+fun olohuone_NK : NK ;
+fun olomuoto_NK : NK ;
+fun oloneuvos_NK : NK ;
+fun olonurkka_NK : NK ;
+fun olonurkkaus_NK : NK ;
+fun olosija_NK : NK ;
+fun olotila_NK : NK ;
+fun oluthana_NK : NK ;
+fun oluthiiva_NK : NK ;
+fun oluthumala_NK : NK ;
+fun olutjuoppo_NK : NK ;
+fun olutkapakka_NK : NK ;
+fun olutkolpakko_NK : NK ;
+fun olutkori_NK : NK ;
+fun olutlasi_NK : NK ;
+fun olutmakkara_NK : NK ;
+fun olutpanimo_NK : NK ;
+fun olutpullo_NK : NK ;
+fun olutravintola_NK : NK ;
+fun oluttankki_NK : NK ;
+fun olutteltta_NK : NK ;
+fun oluttuoppi_NK : NK ;
+fun oluttupa_NK : NK ;
+fun oluttynnyri_NK : NK ;
+fun olutto'lkki_NK : NK ;
+fun omaehtoinen_AK : AK ;
+fun omaehtoisuus_NK : NK ;
+fun omailmeinen_NK : NK ;
+fun omaisuusluettelo_NK : NK ;
+fun omaisuusrikos_NK : NK ;
+fun omaisuustulo_NK : NK ;
+fun omaisuusvahinko_NK : NK ;
+fun omaisuusvero_NK : NK ;
+fun omakielinen_NK : NK ;
+fun omakohtainen_AK : AK ;
+fun omakohtaisuus_NK : NK ;
+fun omaka'tinen_AK : AK ;
+fun omalaatuinen_AK : AK ;
+fun omalaatuisuus_NK : NK ;
+fun omaleimainen_NK : NK ;
+fun omapera'inen_AK : AK ;
+fun omapera'isyys_NK : NK ;
+fun omapohjainen_NK : NK ;
+fun omapa'inen_AK : AK ;
+fun omarahoitusosuus_NK : NK ;
+fun omatahtoinen_NK : NK ;
+fun omatekoinen_NK : NK ;
+fun omatoiminen_AK : AK ;
+fun omavaltainen_AK : AK ;
+fun omavaltaisuus_NK : NK ;
+fun omavarainen_NK : NK ;
+fun omavaraisuus_NK : NK ;
+fun omavastuinen_AK : AK ;
+fun omavastuuosuus_NK : NK ;
+fun omavelkainen_NK : NK ;
+fun omenahappo_NK : NK ;
+fun omenahillo_NK : NK ;
+fun omenahyve_NK : NK ;
+fun omenakaira_NK : NK ;
+fun omenakakku_NK : NK ;
+fun omenakirva_NK : NK ;
+fun omenaka'a'ria'inen_NK : NK ;
+fun omenalajike_NK : NK ;
+fun omenaleivos_NK : NK ;
+fun omenalihavuus_NK : NK ;
+fun omenalohko_NK : NK ;
+fun omenamehu_NK : NK ;
+fun omenapiirakka_NK : NK ;
+fun omenapora_NK : NK ;
+fun omenapuu_NK : NK ;
+fun omenarupi_NK : NK ;
+fun omenasato_NK : NK ;
+fun omenasose_NK : NK ;
+fun omenatarha_NK : NK ;
+fun omenatorttu_NK : NK ;
+fun omenavaras_NK : NK ;
+fun omenavartalo_NK : NK ;
+fun omenaviina_NK : NK ;
+fun omenaviini_NK : NK ;
+fun omenaviipale_NK : NK ;
+fun omistajajohtaja_NK : NK ;
+fun omistajaohjaus_NK : NK ;
+fun omistusasunto_NK : NK ;
+fun omistushalu_NK : NK ;
+fun omistushaluinen_AK : AK ;
+fun omistuskirjoitus_NK : NK ;
+fun omistusliite_NK : NK ;
+fun omistusoikeus_NK : NK ;
+fun omistuspohja_NK : NK ;
+fun omistussuhde_NK : NK ;
+fun ommelkangas_NK : NK ;
+fun ompelukehys_NK : NK ;
+fun ompelukone_NK : NK ;
+fun ompelukoneo'ljy_NK : NK ;
+fun ompelukori_NK : NK ;
+fun ompelulanka_NK : NK ;
+fun ompeluseura_NK : NK ;
+fun ompelusilkki_NK : NK ;
+fun ompelutyo'_NK : NK ;
+fun ongelmaiho_NK : NK ;
+fun ongelmaja'te_NK : NK ;
+fun ongelmaja'teauto_NK : NK ;
+fun ongelmaja'telaitos_NK : NK ;
+fun ongelmakimppu_NK : NK ;
+fun ongelmaka'ytta'ja'_NK : NK ;
+fun ongelmaka'ytto'_NK : NK ;
+fun ongelmalapsi_NK : NK ;
+fun ongelmala'hto'inen_NK : NK ;
+fun ongelmanuori_NK : NK ;
+fun ongelmasyo'ja'_NK : NK ;
+fun ongelmavyyhti_NK : NK ;
+fun onkiliero_NK : NK ;
+fun onkimato_NK : NK ;
+fun onkimies_NK : NK ;
+fun onkivapa_NK : NK ;
+fun onnellisuuspilleri_NK : NK ;
+fun onnettomuusalue_NK : NK ;
+fun onnettomuusauto_NK : NK ;
+fun onnettomuuspaikka_NK : NK ;
+fun onnettomuustapaus_NK : NK ;
+fun onnittelukortti_NK : NK ;
+fun onnitteluka'ynti_NK : NK ;
+fun onnittelusa'hke_NK : NK ;
+fun onteloammus_NK : NK ;
+fun onteloela'in_NK : NK ;
+fun ontelokangas_NK : NK ;
+fun ontelolaatta_NK : NK ;
+fun ontelosyyla'_NK : NK ;
+fun onttolaskimo_NK : NK ;
+fun onttosarvinen_NK : NK ;
+fun oopiumihumala_NK : NK ;
+fun oopiumiluola_NK : NK ;
+fun oopiumipiippu_NK : NK ;
+fun oopiumiunikko_NK : NK ;
+fun oopperakuoro_NK : NK ;
+fun oopperalaulaja_NK : NK ;
+fun oopperalaulajatar_NK : NK ;
+fun oopperamusiikki_NK : NK ;
+fun oopperana'yta'nto'_NK : NK ;
+fun oopperaorkesteri_NK : NK ;
+fun oopperasa'vellys_NK : NK ;
+fun oopperasa'velta'ja'_NK : NK ;
+fun oopperataide_NK : NK ;
+fun oopperatalo_NK : NK ;
+fun opaalilasi_NK : NK ;
+fun opaskartta_NK : NK ;
+fun opaskirja_NK : NK ;
+fun opaskirjanen_NK : NK ;
+fun opaskoira_NK : NK ;
+fun opastusmerkki_NK : NK ;
+fun opasvahti_NK : NK ;
+fun opasvartija_NK : NK ;
+fun opasvihko_NK : NK ;
+fun opasvihkonen_NK : NK ;
+fun operaatioanalyysi_NK : NK ;
+fun operettimusiikki_NK : NK ;
+fun operettisa'velta'ja'_NK : NK ;
+fun opettajakoulutus_NK : NK ;
+fun opettajakunta_NK : NK ;
+fun opettajankoulutuslaitos_NK : NK ;
+fun opetusaine_NK : NK ;
+fun opetusaineisto_NK : NK ;
+fun opetusfilmi_NK : NK ;
+fun opetusjakso_NK : NK ;
+fun opetuskeittio'_NK : NK ;
+fun opetuskieli_NK : NK ;
+fun opetuslapsi_NK : NK ;
+fun opetuslupa_NK : NK ;
+fun opetusmateriaali_NK : NK ;
+fun opetusmenetelma'_NK : NK ;
+fun opetusmetodi_NK : NK ;
+fun opetusministeri_NK : NK ;
+fun opetusministerio'_NK : NK ;
+fun opetusmoniste_NK : NK ;
+fun opetusneuvos_NK : NK ;
+fun opetusohjelma_NK : NK ;
+fun opetusopillinen_NK : NK ;
+fun opetusoppi_NK : NK ;
+fun opetuspaketti_NK : NK ;
+fun opetusrunous_NK : NK ;
+fun opetusryhma'_NK : NK ;
+fun opetussairaala_NK : NK ;
+fun opetustila_NK : NK ;
+fun opetustoimi_NK : NK ;
+fun opetustoiminta_NK : NK ;
+fun opetustunti_NK : NK ;
+fun opetustuokio_NK : NK ;
+fun opetustyo'_NK : NK ;
+fun opetusvideo_NK : NK ;
+fun opetusva'line_NK : NK ;
+fun opetusva'lineisto'_NK : NK ;
+fun opintokerholainen_NK : NK ;
+fun opiskelijaboksi_NK : NK ;
+fun opiskelijakortti_NK : NK ;
+fun opiskelijapaikka_NK : NK ;
+fun opiskelijavaihto_NK : NK ;
+fun opiskelijayhdistys_NK : NK ;
+fun opiskelukaveri_NK : NK ;
+fun opiskeluoikeus_NK : NK ;
+fun opiskelupaikka_NK : NK ;
+fun opiskelupaikkakunta_NK : NK ;
+fun opiskelutoveri_NK : NK ;
+--? fun opiskelutoverukset_NK : NK ;
+fun opiskeluvuosi_NK : NK ;
+fun opistoaste_NK : NK ;
+fun opistoasteinen_NK : NK ;
+fun opistoinsino'o'ri_NK : NK ;
+fun opistolainen_NK : NK ;
+fun opistoupseeri_NK : NK ;
+fun oppiaine_NK : NK ;
+fun oppiarvo_NK : NK ;
+fun oppihistoria_NK : NK ;
+fun oppijakso_NK : NK ;
+fun oppikirja_NK : NK ;
+fun oppikoulu_NK : NK ;
+fun oppikurssi_NK : NK ;
+fun oppilaitos_NK : NK ;
+fun oppilasaines_NK : NK ;
+fun oppilasarvostelu_NK : NK ;
+fun oppilashuolto_NK : NK ;
+fun oppilaskirjasto_NK : NK ;
+fun oppilaskoti_NK : NK ;
+fun oppilaskunta_NK : NK ;
+fun oppilasmatrikkeli_NK : NK ;
+fun oppilasma'a'ra'_NK : NK ;
+fun oppilasna'yte_NK : NK ;
+fun oppilastyo'_NK : NK ;
+fun oppilasvaihto_NK : NK ;
+fun oppilasvalinta_NK : NK ;
+fun oppilause_NK : NK ;
+fun oppimateriaali_NK : NK ;
+fun oppimestari_NK : NK ;
+fun oppimispeli_NK : NK ;
+fun oppima'a'ra'_NK : NK ;
+fun oppipoika_NK : NK ;
+fun oppirakennelma_NK : NK ;
+fun oppiriita_NK : NK ;
+fun oppisopimus_NK : NK ;
+fun oppisopimussuhde_NK : NK ;
+fun oppisuunta_NK : NK ;
+fun oppitekoinen_NK : NK ;
+fun oppitodistus_NK : NK ;
+fun oppitunti_NK : NK ;
+fun oppituoli_NK : NK ;
+fun oppivelvollisuusika'_NK : NK ;
+fun oppivelvollisuuskoulu_NK : NK ;
+fun oppivuosi_NK : NK ;
+fun optimiarvo_NK : NK ;
+fun optimistijolla_NK : NK ;
+fun optiokauppa_NK : NK ;
+fun optiolaina_NK : NK ;
+--? fun optiomarkkinat_NK : NK ;
+fun optiopo'rssi_NK : NK ;
+fun optiotodistus_NK : NK ;
+fun oraakkelimainen_AK : AK ;
+fun oraalinen_NK : NK ;
+fun oralehti_NK : NK ;
+fun orapaatsama_NK : NK ;
+fun orapihlaja_NK : NK ;
+fun oraspelto_NK : NK ;
+fun orastoukka_NK : NK ;
+fun orasyo'kko'nen_NK : NK ;
+fun ordinaalilukusana_NK : NK ;
+fun ordoviikkikausi_NK : NK ;
+fun organisaatiokaavio_NK : NK ;
+fun organisaatioviestinta'_NK : NK ;
+fun organisointikyky_NK : NK ;
+fun organisointikykyinen_NK : NK ;
+fun orjakauppa_NK : NK ;
+fun orjamainen_AK : AK ;
+fun orjantappurakruunu_NK : NK ;
+fun orjapiiskuri_NK : NK ;
+fun orkesterimusiikki_NK : NK ;
+fun orkesterimuusikko_NK : NK ;
+fun orkesterisarja_NK : NK ;
+fun orkesterisovitus_NK : NK ;
+fun orkesterisyvennys_NK : NK ;
+fun orkesterisa'estys_NK : NK ;
+fun orkesterisa'vellys_NK : NK ;
+fun orkesteritausta_NK : NK ;
+fun orkesteriteos_NK : NK ;
+fun orpokoti_NK : NK ;
+fun orpolapsi_NK : NK ;
+fun orpopoika_NK : NK ;
+fun orpotytto'_NK : NK ;
+fun osaela'ke_NK : NK ;
+fun osajako_NK : NK ;
+fun osajoukko_NK : NK ;
+fun osakasluettelo_NK : NK ;
+fun osakeanti_NK : NK ;
+fun osakeasunto_NK : NK ;
+fun osakehuoneisto_NK : NK ;
+fun osakeindeksi_NK : NK ;
+fun osakekanta_NK : NK ;
+fun osakekauppa_NK : NK ;
+fun osakekirja_NK : NK ;
+fun osakeluettelo_NK : NK ;
+--? fun osakemarkkinat_NK : NK ;
+fun osakemerkinta'_NK : NK ;
+fun osakeoptio_NK : NK ;
+fun osakesalkku_NK : NK ;
+fun osakesa'a'sta'ja'_NK : NK ;
+fun osaketalo_NK : NK ;
+fun osakeyhtio'_NK : NK ;
+fun osakulttuuri_NK : NK ;
+fun osakunta_NK : NK ;
+fun osakuntaela'ma'_NK : NK ;
+fun osakuntalainen_NK : NK ;
+fun osakuntanauha_NK : NK ;
+fun osakuntatalo_NK : NK ;
+fun osamaksu_NK : NK ;
+fun osamaksuera'_NK : NK ;
+fun osamaksuhinta_NK : NK ;
+fun osamaksukauppa_NK : NK ;
+fun osamaksukorko_NK : NK ;
+fun osamaksuluotto_NK : NK ;
+fun osamaksusopimus_NK : NK ;
+fun osamietinto'_NK : NK ;
+fun osama'a'ra'_NK : NK ;
+fun osanottajamaa_NK : NK ;
+fun osanottomaksu_NK : NK ;
+fun osanottotodistus_NK : NK ;
+fun osaobjekti_NK : NK ;
+fun osapalkka_NK : NK ;
+fun osapalkkio_NK : NK ;
+fun osapuoli_NK : NK ;
+fun osapa'iva'inen_NK : NK ;
+fun osastopa'a'llikko'_NK : NK ;
+fun osastosihteeri_NK : NK ;
+fun osasubjekti_NK : NK ;
+fun osasuoritus_NK : NK ;
+fun osasyy_NK : NK ;
+fun osasyyllinen_NK : NK ;
+fun osasa'vel_NK : NK ;
+fun osatavoite_NK : NK ;
+fun osatekija'_NK : NK ;
+fun osatotuus_NK : NK ;
+fun osavaltio_NK : NK ;
+fun osavastuu_NK : NK ;
+fun osinkolippu_NK : NK ;
+fun osinkotulo_NK : NK ;
+fun osinkovero_NK : NK ;
+fun osituska'ytto'_NK : NK ;
+fun osituslasku_NK : NK ;
+fun osoitekortti_NK : NK ;
+fun osoitelappu_NK : NK ;
+fun osoitetarra_NK : NK ;
+fun osoitetoimisto_NK : NK ;
+fun ostajamaa_NK : NK ;
+fun osterivinokas_NK : NK ;
+fun ostohalu_NK : NK ;
+fun ostohalukkuus_NK : NK ;
+fun ostohinta_NK : NK ;
+fun ostohyvitys_NK : NK ;
+fun ostokeskus_NK : NK ;
+fun ostokortti_NK : NK ;
+fun ostokurssi_NK : NK ;
+fun ostokyky_NK : NK ;
+fun ostokykyinen_NK : NK ;
+fun ostoliike_NK : NK ;
+fun ostopalautus_NK : NK ;
+fun ostopalvelu_NK : NK ;
+fun ostoparatiisi_NK : NK ;
+fun ostopa'a'to's_NK : NK ;
+fun ostorynta'ys_NK : NK ;
+fun ostoskanava_NK : NK ;
+fun ostoskassi_NK : NK ;
+fun ostoskeskus_NK : NK ;
+fun ostoskori_NK : NK ;
+fun ostoska'rry_NK : NK ;
+fun ostoslaukku_NK : NK ;
+fun ostoslista_NK : NK ;
+fun ostosmatka_NK : NK ;
+fun ostosopimus_NK : NK ;
+fun ostotottumus_NK : NK ;
+fun ostovoima_NK : NK ;
+fun ostovoimainen_NK : NK ;
+fun osumatarkkuus_NK : NK ;
+fun osuuskauppa_NK : NK ;
+fun osuuskauppava'ki_NK : NK ;
+fun osuuskirja_NK : NK ;
+fun osuuskunta_NK : NK ;
+fun osuusliike_NK : NK ;
+fun osuusmaksu_NK : NK ;
+fun osuusmeijeri_NK : NK ;
+fun osuuspankki_NK : NK ;
+fun osuusteurastamo_NK : NK ;
+fun osuustodistus_NK : NK ;
+fun osuustoiminta_NK : NK ;
+fun osuustoimintaja'rjesto'_NK : NK ;
+fun otantatutkimus_NK : NK ;
+fun otelauta_NK : NK ;
+fun otea'a'ni_NK : NK ;
+fun otsaharja_NK : NK ;
+fun otsahius_NK : NK ;
+fun otsakihara_NK : NK ;
+fun otsalamppu_NK : NK ;
+fun otsalohko_NK : NK ;
+fun otsaluu_NK : NK ;
+fun otsanahka_NK : NK ;
+fun otsanauha_NK : NK ;
+fun otsaontelo_NK : NK ;
+fun otsapeili_NK : NK ;
+fun otsaripa_NK : NK ;
+fun otsaryppy_NK : NK ;
+fun otsasuoni_NK : NK ;
+fun otsatukka_NK : NK ;
+fun otsato'yhto'_NK : NK ;
+fun otsavanne_NK : NK ;
+fun otsikkoaine_NK : NK ;
+fun otsikkojuliste_NK : NK ;
+fun otsikkokoe_NK : NK ;
+fun otsoniaukko_NK : NK ;
+fun otsonikato_NK : NK ;
+fun otsonikerros_NK : NK ;
+fun otsonisointi_NK : NK ;
+fun ottelupallo_NK : NK ;
+fun ottelurangaistus_NK : NK ;
+fun ottelutulos_NK : NK ;
+fun ottolainaus_NK : NK ;
+fun ottolapsi_NK : NK ;
+fun ottomoottori_NK : NK ;
+fun ottopoika_NK : NK ;
+fun ottotytto'_NK : NK ;
+fun ottotyta'r_NK : NK ;
+fun ottovanhempi_NK : NK ;
+fun ovensuukysely_NK : NK ;
+fun oviaukko_NK : NK ;
+fun ovikello_NK : NK ;
+fun ovikilpi_NK : NK ;
+fun ovilevy_NK : NK ;
+fun ovilokero_NK : NK ;
+fun ovimaksu_NK : NK ;
+fun ovimatto_NK : NK ;
+fun ovimies_NK : NK ;
+fun ovimikko_NK : NK ;
+fun ovinaapuri_NK : NK ;
+fun ovipieli_NK : NK ;
+fun ovipuhelin_NK : NK ;
+fun ovipumppu_NK : NK ;
+fun ovisilma'_NK : NK ;
+fun ovisummeri_NK : NK ;
+fun ovisuu_NK : NK ;
+fun ovivalo_NK : NK ;
+fun oviverho_NK : NK ;
+fun paahtoaste_NK : NK ;
+fun paahtofilee_NK : NK ;
+fun paahtokiisseli_NK : NK ;
+fun paahtokylki_NK : NK ;
+fun paahtoleipa'_NK : NK ;
+fun paahtopaisti_NK : NK ;
+fun paahtotuore_NK : NK ;
+fun paahtovanukas_NK : NK ;
+fun paakkutaimi_NK : NK ;
+fun paalauskone_NK : NK ;
+fun paalituskone_NK : NK ;
+fun paaluaita_NK : NK ;
+fun paalujuntta_NK : NK ;
+fun paalukyla'_NK : NK ;
+fun paalupaikka_NK : NK ;
+fun paalurakennus_NK : NK ;
+fun paalusolmu_NK : NK ;
+fun paaluvarustus_NK : NK ;
+fun paanneja'a'_NK : NK ;
+fun paanukatto_NK : NK ;
+fun paarialuokka_NK : NK ;
+fun pahaenteinen_NK : NK ;
+fun pahakaikuinen_NK : NK ;
+fun pahalainen_NK : NK ;
+fun pahaluontoinen_NK : NK ;
+fun pahamaineinen_NK : NK ;
+fun pahatapainen_NK : NK ;
+fun pahaa'a'ninen_NK : NK ;
+fun pahkakuppi_NK : NK ;
+fun pahkasieni_NK : NK ;
+fun pahkasika_NK : NK ;
+fun pahoinpitely_NK : NK ;
+fun pahoinvointi_NK : NK ;
+fun pahoinvointikohtaus_NK : NK ;
+fun pahoinvointinen_NK : NK ;
+fun pahoinvointisuus_NK : NK ;
+fun pahvikotelo_NK : NK ;
+fun pahvilaatikko_NK : NK ;
+fun pahvilautanen_NK : NK ;
+fun pahvimuki_NK : NK ;
+fun pahvinaula_NK : NK ;
+fun pahvirasia_NK : NK ;
+fun pahvito'lkki_NK : NK ;
+fun pahviveitsi_NK : NK ;
+fun paikallaanolo_NK : NK ;
+fun paikallahyppely_NK : NK ;
+fun paikallajuoksu_NK : NK ;
+fun paikallaka'ynti_NK : NK ;
+fun paikallavalu_NK : NK ;
+fun paikannus_NK : NK ;
+fun paikkajako_NK : NK ;
+fun paikkakortti_NK : NK ;
+fun paikkakunta_NK : NK ;
+fun paikkakuntalainen_NK : NK ;
+fun paikkalainen_NK : NK ;
+fun paikkalappu_NK : NK ;
+fun paikkalintu_NK : NK ;
+fun paikkalippu_NK : NK ;
+fun paikkaluku_NK : NK ;
+fun paikkamaalaus_NK : NK ;
+fun paikkapuolustus_NK : NK ;
+fun paikkatasku_NK : NK ;
+fun paikkatieto_NK : NK ;
+fun paikkatietokartta_NK : NK ;
+fun paikkatilkku_NK : NK ;
+fun paikkavaraamo_NK : NK ;
+fun paikkavaraus_NK : NK ;
+fun paikkoheitto_NK : NK ;
+fun paikoillaanolo_NK : NK ;
+fun paikoitus_NK : NK ;
+fun paikoitusalue_NK : NK ;
+fun paikoitushalli_NK : NK ;
+fun paikoitustalo_NK : NK ;
+fun paikoitustila_NK : NK ;
+fun paimenhuilu_NK : NK ;
+fun paimenkirje_NK : NK ;
+fun paimenkoira_NK : NK ;
+fun paimenmatto_NK : NK ;
+fun paimenna'ytelma'_NK : NK ;
+fun paimenpoika_NK : NK ;
+fun paimenruno_NK : NK ;
+fun paimenrunous_NK : NK ;
+fun paimensauva_NK : NK ;
+fun paimentorvi_NK : NK ;
+fun paimentytto'_NK : NK ;
+fun painatustyo'_NK : NK ;
+fun paineaalto_NK : NK ;
+fun paineastia_NK : NK ;
+fun paineilma_NK : NK ;
+fun paineilmajarru_NK : NK ;
+fun paineilmaka'ytto'inen_NK : NK ;
+fun paineilmalaite_NK : NK ;
+fun paineilmanaulain_NK : NK ;
+fun paineilmapora_NK : NK ;
+fun paineilmasa'ilio'_NK : NK ;
+fun painekammio_NK : NK ;
+fun painekattila_NK : NK ;
+fun painekeitin_NK : NK ;
+fun painekylla'stys_NK : NK ;
+fun paineluelvytys_NK : NK ;
+fun painemittari_NK : NK ;
+fun painepakkaus_NK : NK ;
+fun painepesuri_NK : NK ;
+fun paineside_NK : NK ;
+fun painesyltty_NK : NK ;
+fun painesa'ilio'_NK : NK ;
+fun painevaikutus_NK : NK ;
+fun painevalu_NK : NK ;
+fun painevesi_NK : NK ;
+fun painijoukkue_NK : NK ;
+fun painikilpailu_NK : NK ;
+fun painimatto_NK : NK ;
+fun paininjalka_NK : NK ;
+fun painiote_NK : NK ;
+fun painiottelu_NK : NK ;
+fun painoalue_NK : NK ;
+fun painoarkki_NK : NK ;
+fun painoarkuus_NK : NK ;
+fun painoarvo_NK : NK ;
+fun painoasu_NK : NK ;
+fun painoha'vikki_NK : NK ;
+fun painoha'vio'_NK : NK ;
+fun painoja'lki_NK : NK ;
+fun painokangas_NK : NK ;
+fun painokanne_NK : NK ;
+fun painokelpoinen_NK : NK ;
+fun painokelpoisuus_NK : NK ;
+fun painokilo_NK : NK ;
+fun painokirjain_NK : NK ;
+fun painokirjoitus_NK : NK ;
+fun painokone_NK : NK ;
+fun painokoukku_NK : NK ;
+fun painokunto_NK : NK ;
+fun painokuntoinen_NK : NK ;
+fun painokuva_NK : NK ;
+fun painokytkin_NK : NK ;
+fun painolasti_NK : NK ;
+fun painolevy_NK : NK ;
+fun painoluokka_NK : NK ;
+fun painomenetelma'_NK : NK ;
+fun painomerkki_NK : NK ;
+fun painomitta_NK : NK ;
+fun painomuste_NK : NK ;
+fun painonappi_NK : NK ;
+fun painopaikka_NK : NK ;
+fun painopaperi_NK : NK ;
+fun painopiste_NK : NK ;
+fun painopistealue_NK : NK ;
+fun painoprosentti_NK : NK ;
+fun painorajoitus_NK : NK ;
+fun painorehu_NK : NK ;
+fun painosivu_NK : NK ;
+fun painosma'a'ra'_NK : NK ;
+fun painostuskeino_NK : NK ;
+fun painostuspolitiikka_NK : NK ;
+fun painostusryhma'_NK : NK ;
+fun painosyltty_NK : NK ;
+fun painotekniikka_NK : NK ;
+fun painotekninen_NK : NK ;
+fun painoteksti_NK : NK ;
+fun painotuore_NK : NK ;
+fun painotuote_NK : NK ;
+fun painotyo'_NK : NK ;
+fun painovaikeus_NK : NK ;
+fun painovalmis_NK : NK ;
+fun painovapaus_NK : NK ;
+fun painoviestinta'_NK : NK ;
+fun painovirhe_NK : NK ;
+fun painovirhepaholainen_NK : NK ;
+fun painovoima_NK : NK ;
+fun painovuosi_NK : NK ;
+fun painova'ri_NK : NK ;
+fun paistihaarukka_NK : NK ;
+fun paistikastike_NK : NK ;
+fun paistivati_NK : NK ;
+fun paistiveitsi_NK : NK ;
+fun paistokasari_NK : NK ;
+fun paistokelmu_NK : NK ;
+fun paistoliemi_NK : NK ;
+fun paistopussi_NK : NK ;
+fun paistorasva_NK : NK ;
+fun paistovalmis_NK : NK ;
+fun paisuma_NK : NK ;
+fun paitakaulus_NK : NK ;
+fun paitapuku_NK : NK ;
+fun paitapusero_NK : NK ;
+fun paitaressu_NK : NK ;
+fun paitsiomaali_NK : NK ;
+fun paitsiotilanne_NK : NK ;
+fun paituli_NK : NK ;
+fun pajukasvi_NK : NK ;
+fun pajukoppa_NK : NK ;
+fun pajukori_NK : NK ;
+fun pajuko'ysi_NK : NK ;
+fun pajulintu_NK : NK ;
+fun pajupensaikko_NK : NK ;
+fun pajupensas_NK : NK ;
+fun pajupilli_NK : NK ;
+fun pajusirkku_NK : NK ;
+fun pajuvitsa_NK : NK ;
+fun pakanakristitty_NK : NK ;
+fun pakanamaa_NK : NK ;
+fun pakanauskonto_NK : NK ;
+fun pakaralihas_NK : NK ;
+fun pakasteallas_NK : NK ;
+fun pakastearkku_NK : NK ;
+fun pakastekaappi_NK : NK ;
+fun pakastekala_NK : NK ;
+fun pakastekuivatus_NK : NK ;
+fun pakastelokero_NK : NK ;
+fun pakastemarja_NK : NK ;
+fun pakasteteippi_NK : NK ;
+fun pakastevihannes_NK : NK ;
+fun pakastevirka_NK : NK ;
+fun pakastuskelmu_NK : NK ;
+fun pakastuspussi_NK : NK ;
+fun pakettiauto_NK : NK ;
+fun pakettihinta_NK : NK ;
+fun pakettikortti_NK : NK ;
+fun pakettimallinen_NK : NK ;
+fun pakettimatka_NK : NK ;
+fun pakettinaru_NK : NK ;
+fun pakettipelto_NK : NK ;
+fun pakettipommi_NK : NK ;
+fun pakettiratkaisu_NK : NK ;
+fun pakinakokoelma_NK : NK ;
+fun pakinatyyli_NK : NK ;
+fun pakinatyylinen_NK : NK ;
+fun pakkausja'te_NK : NK ;
+fun pakkauskenno_NK : NK ;
+fun pakkausmateriaali_NK : NK ;
+fun pakkausmerkinta'_NK : NK ;
+fun pakkilaatikko_NK : NK ;
+fun pakkoajatus_NK : NK ;
+fun pakkohoito_NK : NK ;
+fun pakkoja'senyys_NK : NK ;
+fun pakkokeino_NK : NK ;
+--? fun pakkokuolaimet_NK : NK ;
+fun pakkolaina_NK : NK ;
+fun pakkolaitos_NK : NK ;
+fun pakkolasku_NK : NK ;
+fun pakkoliike_NK : NK ;
+fun pakkoliitos_NK : NK ;
+fun pakkoloma_NK : NK ;
+fun pakkolomautus_NK : NK ;
+fun pakkolunastus_NK : NK ;
+fun pakkoluovutus_NK : NK ;
+fun pakkomielle_NK : NK ;
+fun pakkomyynti_NK : NK ;
+fun pakkoneuroosi_NK : NK ;
+fun pakkopaita_NK : NK ;
+fun pakkopeli_NK : NK ;
+fun pakkoperinta'_NK : NK ;
+fun pakkopulla_NK : NK ;
+fun pakkorako_NK : NK ;
+fun pakkoruokinta_NK : NK ;
+fun pakkoruotsi_NK : NK ;
+fun pakkosyo'tto'_NK : NK ;
+fun pakkotahtinen_NK : NK ;
+fun pakkotila_NK : NK ;
+fun pakkotilanne_NK : NK ;
+fun pakkotoimi_NK : NK ;
+fun pakkotoiminen_NK : NK ;
+fun pakkotoiminto_NK : NK ;
+fun pakkotyo'_NK : NK ;
+fun pakkotyo'leiri_NK : NK ;
+fun pakkotyo'vanki_NK : NK ;
+fun pakkovalta_NK : NK ;
+fun pakokaasu_NK : NK ;
+fun pakokauhu_NK : NK ;
+fun pakolainen_NK : NK ;
+fun pakomatka_NK : NK ;
+fun pakonopeus_NK : NK ;
+fun pakopaikka_NK : NK ;
+fun pakopiste_NK : NK ;
+fun pakoputki_NK : NK ;
+fun pakoreitti_NK : NK ;
+fun pakosarja_NK : NK ;
+fun pakotie_NK : NK ;
+fun pakovesi_NK : NK ;
+fun paksukalloinen_NK : NK ;
+fun paksukuorinen_NK : NK ;
+fun paksunahkainen_NK : NK ;
+fun paksupohjainen_NK : NK ;
+fun paksupa'inen_NK : NK ;
+fun paksurunkoinen_NK : NK ;
+fun paksuuskasvu_NK : NK ;
+fun palapaisti_NK : NK ;
+fun palapeli_NK : NK ;
+fun palasaippua_NK : NK ;
+fun palasokeri_NK : NK ;
+fun palautusmerkki_NK : NK ;
+fun palautusoikeus_NK : NK ;
+fun palautuspullo_NK : NK ;
+fun palavahenkinen_NK : NK ;
+fun palavasieluinen_NK : NK ;
+fun palaveri_NK : NK ;
+fun palettiveitsi_NK : NK ;
+fun palikkatesti_NK : NK ;
+fun paljasjalkainen_NK : NK ;
+fun paljasjuurinen_NK : NK ;
+fun paljassiemeninen_NK : NK ;
+fun paljassa'a'rinen_NK : NK ;
+fun paljastuma_NK : NK ;
+fun paljastuspuhe_NK : NK ;
+fun paljastustilaisuus_NK : NK ;
+fun paljekamera_NK : NK ;
+fun paljeovi_NK : NK ;
+fun paljonpuhuva_NK : NK ;
+fun paljoto'inen_NK : NK ;
+fun paljousalennus_NK : NK ;
+fun paljoustulli_NK : NK ;
+fun palkankorotusvaatimus_NK : NK ;
+fun palkanmaksukausi_NK : NK ;
+fun palkanmaksupa'iva'_NK : NK ;
+fun palkansaajaja'rjesto'_NK : NK ;
+fun palkintojenjakotilaisuus_NK : NK ;
+fun palkintoja'rjestys_NK : NK ;
+fun palkintokaappi_NK : NK ;
+fun palkintokoroke_NK : NK ;
+fun palkintolusikka_NK : NK ;
+fun palkintopalli_NK : NK ;
+fun palkintosija_NK : NK ;
+fun palkintosumma_NK : NK ;
+fun palkintotuomari_NK : NK ;
+fun palkkaetu_NK : NK ;
+fun palkkahaitari_NK : NK ;
+fun palkkaindeksi_NK : NK ;
+fun palkkajoukko_NK : NK ;
+fun palkkakehitys_NK : NK ;
+fun palkkakuoppa_NK : NK ;
+fun palkkalainen_NK : NK ;
+fun palkkalaskelma_NK : NK ;
+fun palkkalaskenta_NK : NK ;
+fun palkkaliite_NK : NK ;
+fun palkkalista_NK : NK ;
+fun palkkaliukuma_NK : NK ;
+fun palkkaluokka_NK : NK ;
+fun palkkamurhaaja_NK : NK ;
+fun palkkanauha_NK : NK ;
+fun palkkaneuvottelu_NK : NK ;
+fun palkkaperuste_NK : NK ;
+fun palkkapolitiikka_NK : NK ;
+fun palkkapussi_NK : NK ;
+fun palkkapa'iva'_NK : NK ;
+fun palkkaraha_NK : NK ;
+fun palkkarakenne_NK : NK ;
+fun palkkarenki_NK : NK ;
+fun palkkasaatava_NK : NK ;
+fun palkkasoturi_NK : NK ;
+fun palkkasulku_NK : NK ;
+fun palkkatarjous_NK : NK ;
+fun palkkataso_NK : NK ;
+fun palkkataulukko_NK : NK ;
+fun palkkatili_NK : NK ;
+fun palkkatulo_NK : NK ;
+fun palkkaturva_NK : NK ;
+fun palkkatyo'_NK : NK ;
+fun palkkatyo'la'inen_NK : NK ;
+fun palkkausluokka_NK : NK ;
+fun palkkavaatimus_NK : NK ;
+fun palkkikatto_NK : NK ;
+fun palkohedelma'_NK : NK ;
+fun palkokasvi_NK : NK ;
+fun palleahengitys_NK : NK ;
+fun palleaisku_NK : NK ;
+fun palleropilvi_NK : NK ;
+fun pallinaama_NK : NK ;
+fun pallobakteeri_NK : NK ;
+fun pallograniitti_NK : NK ;
+fun pallojuusto_NK : NK ;
+fun pallokaktus_NK : NK ;
+fun pallokartta_NK : NK ;
+fun pallokentta'_NK : NK ;
+fun pallolaajennus_NK : NK ;
+fun pallolaajennushoito_NK : NK ;
+fun palloleikki_NK : NK ;
+fun pallomeri_NK : NK ;
+fun pallonivel_NK : NK ;
+fun pallopeli_NK : NK ;
+fun palloperuna_NK : NK ;
+fun pallopinta_NK : NK ;
+fun pallopintainen_NK : NK ;
+fun pallopoika_NK : NK ;
+fun pallopullo_NK : NK ;
+fun pallorauta_NK : NK ;
+fun pallosalama_NK : NK ;
+fun pallosegmentti_NK : NK ;
+fun pallotuoli_NK : NK ;
+fun pallotytto'_NK : NK ;
+fun palmikkonauha_NK : NK ;
+fun palmikkoneule_NK : NK ;
+fun palmikkopunos_NK : NK ;
+fun palmikkopa'inen_NK : NK ;
+fun palmikkopa'a'_NK : NK ;
+fun palmulilja_NK : NK ;
+fun palmupuu_NK : NK ;
+fun palmusunnuntai_NK : NK ;
+fun palmuviini_NK : NK ;
+fun palmuo'ljy_NK : NK ;
+fun paloasema_NK : NK ;
+fun paloauto_NK : NK ;
+fun paloha'lytin_NK : NK ;
+fun paloha'lytys_NK : NK ;
+fun paloilmaisin_NK : NK ;
+fun paloilmoitus_NK : NK ;
+fun paloilmoituslaitteisto_NK : NK ;
+fun palokaasu_NK : NK ;
+fun palokaivo_NK : NK ;
+fun palokalusto_NK : NK ;
+fun palokatu_NK : NK ;
+fun palokello_NK : NK ;
+fun palokirves_NK : NK ;
+fun palokuja_NK : NK ;
+fun palokunta_NK : NK ;
+fun palokuntalainen_NK : NK ;
+fun palokypa'ra'_NK : NK ;
+fun paloka'rki_NK : NK ;
+fun palolaitos_NK : NK ;
+fun paloletku_NK : NK ;
+fun palolinja_NK : NK ;
+fun paloluukku_NK : NK ;
+fun palomestari_NK : NK ;
+fun palomiehisto'_NK : NK ;
+fun palomies_NK : NK ;
+fun palomuuri_NK : NK ;
+fun palopaikka_NK : NK ;
+fun palopesa'ke_NK : NK ;
+fun palopommi_NK : NK ;
+fun paloposti_NK : NK ;
+fun palopuhe_NK : NK ;
+fun palopuhuja_NK : NK ;
+fun palopurje_NK : NK ;
+fun palopa'a'llikko'_NK : NK ;
+fun palopa'a'llysto'_NK : NK ;
+fun palorakko_NK : NK ;
+fun palorakkula_NK : NK ;
+fun paloruisku_NK : NK ;
+fun palosanko_NK : NK ;
+fun palosireeni_NK : NK ;
+fun palosirkka_NK : NK ;
+fun palosotilas_NK : NK ;
+fun palosuojaus_NK : NK ;
+fun palosuojelu_NK : NK ;
+fun palotarkastaja_NK : NK ;
+fun palotarkastus_NK : NK ;
+--? fun palotikkaat_NK : NK ;
+fun palotila_NK : NK ;
+fun palotoimi_NK : NK ;
+fun palotorni_NK : NK ;
+fun palovaara_NK : NK ;
+fun palovahinko_NK : NK ;
+fun palovakuutus_NK : NK ;
+fun palovamma_NK : NK ;
+fun palovaroitin_NK : NK ;
+fun paloviina_NK : NK ;
+fun paloo'ljy_NK : NK ;
+fun palsasuo_NK : NK ;
+fun palstala'a'ka'ri_NK : NK ;
+fun palstatila_NK : NK ;
+fun palttinasidoksinen_NK : NK ;
+fun palttinasidos_NK : NK ;
+fun paluukiekko_NK : NK ;
+fun paluulento_NK : NK ;
+fun paluuliikenne_NK : NK ;
+fun paluulippu_NK : NK ;
+fun paluumatka_NK : NK ;
+fun paluumuuttaja_NK : NK ;
+fun paluumuutto_NK : NK ;
+fun paluupallo_NK : NK ;
+fun paluuposti_NK : NK ;
+fun paluupa'iva'_NK : NK ;
+fun paluureitti_NK : NK ;
+fun palvelualtis_NK : NK ;
+fun palveluammatti_NK : NK ;
+fun palveluasunto_NK : NK ;
+fun palveluhalu_NK : NK ;
+fun palveluhaluinen_NK : NK ;
+fun palveluhenkinen_NK : NK ;
+fun palvelukeskus_NK : NK ;
+fun palvelumaksu_NK : NK ;
+fun palvelumuoto_NK : NK ;
+fun palvelumyyma'la'_NK : NK ;
+fun palvelunumero_NK : NK ;
+fun palvelupalkkio_NK : NK ;
+fun palvelupiste_NK : NK ;
+fun palvelupuhelin_NK : NK ;
+fun palveluraha_NK : NK ;
+fun palveluseteli_NK : NK ;
+fun palveluskelpoisuus_NK : NK ;
+fun palveluskelpoisuusluokka_NK : NK ;
+fun palveluskoira_NK : NK ;
+fun palveluskunta_NK : NK ;
+fun palveluspaikka_NK : NK ;
+fun palvelussuhde_NK : NK ;
+fun palvelusvuosi_NK : NK ;
+fun palvelusvuosilisa'_NK : NK ;
+fun palvelusva'ki_NK : NK ;
+fun palvelutalo_NK : NK ;
+fun palvelutaso_NK : NK ;
+fun palvelutiski_NK : NK ;
+fun palvelutuotanto_NK : NK ;
+fun palveluvalmis_NK : NK ;
+fun palveluvalmius_NK : NK ;
+fun palveluyritys_NK : NK ;
+fun palvikinkku_NK : NK ;
+fun palvikylki_NK : NK ;
+fun palviliha_NK : NK ;
+fun palvontapaikka_NK : NK ;
+fun panamahattu_NK : NK ;
+fun panamasidos_NK : NK ;
+fun paneelikeskustelu_NK : NK ;
+fun paneelilaudoitus_NK : NK ;
+fun paneelilauta_NK : NK ;
+fun paniikkiha'irio'_NK : NK ;
+fun paniikkijarrutus_NK : NK ;
+fun paniikkikohtaus_NK : NK ;
+fun paniikkitunnelma_NK : NK ;
+fun panimoravintola_NK : NK ;
+fun panimoteollisuus_NK : NK ;
+fun pankkiasia_NK : NK ;
+fun pankkiauto_NK : NK ;
+fun pankkiautomaatti_NK : NK ;
+fun pankkiautomaattikortti_NK : NK ;
+fun pankkiholvi_NK : NK ;
+fun pankkiiriliike_NK : NK ;
+fun pankkikirja_NK : NK ;
+fun pankkikortti_NK : NK ;
+fun pankkilaina_NK : NK ;
+fun pankkilokero_NK : NK ;
+fun pankkimaailma_NK : NK ;
+fun pankkineiti_NK : NK ;
+fun pankkipalvelu_NK : NK ;
+fun pankkirosvo_NK : NK ;
+fun pankkiryo'sta'ja'_NK : NK ;
+fun pankkiryo'sto'_NK : NK ;
+fun pankkisalaisuus_NK : NK ;
+fun pankkisali_NK : NK ;
+fun pankkisiirto_NK : NK ;
+fun pankkisiirtolomake_NK : NK ;
+fun pankkisuhde_NK : NK ;
+fun pankkitakaus_NK : NK ;
+fun pankkitalletus_NK : NK ;
+fun pankkitili_NK : NK ;
+fun pankkitoiminta_NK : NK ;
+fun pankkituki_NK : NK ;
+fun pankkivekseli_NK : NK ;
+fun pankkivelka_NK : NK ;
+fun pankkivirkailija_NK : NK ;
+fun pankkiyhteys_NK : NK ;
+fun pannajulistus_NK : NK ;
+fun pannuhuone_NK : NK ;
+fun pannujauhatus_NK : NK ;
+fun pannukahvi_NK : NK ;
+fun pannukakku_NK : NK ;
+fun pannukarkea_NK : NK ;
+fun pannukarkeus_NK : NK ;
+fun pannulappu_NK : NK ;
+fun pannumyssy_NK : NK ;
+fun pannupihvi_NK : NK ;
+fun pannupitsa_NK : NK ;
+fun panoraamateatteri_NK : NK ;
+fun panssariammus_NK : NK ;
+fun panssariase_NK : NK ;
+fun panssariauto_NK : NK ;
+fun panssarijuna_NK : NK ;
+fun panssarikauhu_NK : NK ;
+fun panssarikranaatti_NK : NK ;
+fun panssarilaiva_NK : NK ;
+fun panssarilasi_NK : NK ;
+fun panssarileva'_NK : NK ;
+fun panssariliivi_NK : NK ;
+fun panssariluoti_NK : NK ;
+fun panssarimaali_NK : NK ;
+fun panssarimiina_NK : NK ;
+fun panssarintorjuntajoukkue_NK : NK ;
+fun panssarintorjuntakomppania_NK : NK ;
+fun panssarintorjuntaohjus_NK : NK ;
+fun panssarintorjuntatykki_NK : NK ;
+fun panssariovi_NK : NK ;
+fun panssariputki_NK : NK ;
+fun panssarivaunu_NK : NK ;
+fun panssariverkko_NK : NK ;
+fun panssariverkkoaita_NK : NK ;
+fun pantomiimiesitys_NK : NK ;
+fun pantomiimina'yttelija'_NK : NK ;
+fun panttaussopimus_NK : NK ;
+fun panttikuitti_NK : NK ;
+fun panttilainaus_NK : NK ;
+fun panttilainauslaitos_NK : NK ;
+fun panttileikki_NK : NK ;
+fun panttioikeus_NK : NK ;
+fun panttitodistus_NK : NK ;
+fun panttivanki_NK : NK ;
+fun paperiarkki_NK : NK ;
+fun paperija'sen_NK : NK ;
+fun paperikanta_NK : NK ;
+fun paperikassi_NK : NK ;
+fun paperikauppa_NK : NK ;
+fun paperikieli_NK : NK ;
+fun paperikielinen_NK : NK ;
+fun paperikone_NK : NK ;
+fun paperikopio_NK : NK ;
+fun paperikori_NK : NK ;
+fun paperikukka_NK : NK ;
+fun paperika'a'ro'_NK : NK ;
+fun paperilaji_NK : NK ;
+fun paperilakana_NK : NK ;
+fun paperilappu_NK : NK ;
+fun paperilappunen_NK : NK ;
+fun paperileikkuri_NK : NK ;
+fun paperiliima_NK : NK ;
+fun paperilippu_NK : NK ;
+fun paperiliuska_NK : NK ;
+fun paperilyhty_NK : NK ;
+fun paperimassa_NK : NK ;
+fun paperinaru_NK : NK ;
+fun paperinippu_NK : NK ;
+fun paperinukke_NK : NK ;
+fun paperiosasto_NK : NK ;
+fun paperipaino_NK : NK ;
+fun paperipala_NK : NK ;
+fun paperipalanen_NK : NK ;
+fun paperipinkka_NK : NK ;
+fun paperipino_NK : NK ;
+fun paperipussi_NK : NK ;
+fun paperipuu_NK : NK ;
+fun paperipyyhe_NK : NK ;
+fun paperipa'a'llys_NK : NK ;
+fun paperipa'a'llyste_NK : NK ;
+fun paperiraha_NK : NK ;
+fun paperirahakanta_NK : NK ;
+fun paperirulla_NK : NK ;
+--? fun paperisakset_NK : NK ;
+fun paperisilppuri_NK : NK ;
+fun paperisota_NK : NK ;
+fun paperisa'kki_NK : NK ;
+fun paperitavara_NK : NK ;
+fun paperitehdas_NK : NK ;
+fun paperiteollisuus_NK : NK ;
+fun paperitiikeri_NK : NK ;
+fun paperityyli_NK : NK ;
+fun paperityo'_NK : NK ;
+fun paperiveitsi_NK : NK ;
+fun paperivuoka_NK : NK ;
+fun papilloomavirus_NK : NK ;
+fun pappeuskirja_NK : NK ;
+fun paprikajauhe_NK : NK ;
+fun papukeitto_NK : NK ;
+fun papupata_NK : NK ;
+fun papurikko_NK : NK ;
+fun papurokka_NK : NK ;
+fun papusoppa_NK : NK ;
+fun papyruskaisla_NK : NK ;
+fun papyruska'a'ro'_NK : NK ;
+fun paraatikatselmus_NK : NK ;
+fun paraatikunto_NK : NK ;
+fun paraatilaji_NK : NK ;
+fun paraatimarssi_NK : NK ;
+fun paraatimatka_NK : NK ;
+fun paraatiovi_NK : NK ;
+fun paraatipelastus_NK : NK ;
+fun paraatitorjunta_NK : NK ;
+fun parafiini_NK : NK ;
+fun parafiinio'ljy_NK : NK ;
+fun parakkikyla'_NK : NK ;
+fun parallaksivirhe_NK : NK ;
+fun paralleeli_NK : NK ;
+fun paralleeliaksiooma_NK : NK ;
+fun paralleelioppi_NK : NK ;
+fun parametri_NK : NK ;
+fun parannusehdotus_NK : NK ;
+fun parannuskeino_NK : NK ;
+fun parannusmenetelma'_NK : NK ;
+fun parannussaarna_NK : NK ;
+fun parannustyo'_NK : NK ;
+fun paranormaali_NK : NK ;
+fun parantaja_NK : NK ;
+fun parapsykologia_NK : NK ;
+fun parapa'hkina'_NK : NK ;
+fun parataksi_NK : NK ;
+fun parataktinen_NK : NK ;
+fun paratiisiomena_NK : NK ;
+fun paremmuusja'rjestys_NK : NK ;
+fun parempiosainen_NK : NK ;
+fun pariarvo_NK : NK ;
+fun parihalkoinen_NK : NK ;
+fun parijakoinen_NK : NK ;
+fun parijono_NK : NK ;
+fun parikiloinen_NK : NK ;
+fun parikuinen_NK : NK ;
+fun parikurssi_NK : NK ;
+fun pariliuskainen_NK : NK ;
+fun pariluistelu_NK : NK ;
+fun pariosainen_NK : NK ;
+fun pariovi_NK : NK ;
+fun paripyo'ra'_NK : NK ;
+fun parireki_NK : NK ;
+fun paririvi_NK : NK ;
+fun parisataavuotinen_NK : NK ;
+fun parisatainen_NK : NK ;
+fun paristoka'ytto'inen_NK : NK ;
+fun paristonauhuri_NK : NK ;
+fun paristoradio_NK : NK ;
+fun parisuhde_NK : NK ;
+fun parisa'nky_NK : NK ;
+fun paritalo_NK : NK ;
+fun pariterapia_NK : NK ;
+fun paritteluelin_NK : NK ;
+fun parituhantinen_NK : NK ;
+fun parivaljakko_NK : NK ;
+fun parivartio_NK : NK ;
+fun pariviikkoinen_NK : NK ;
+fun parivuotias_NK : NK ;
+fun parivuotinen_NK : NK ;
+fun parkitusaine_NK : NK ;
+fun parkkeerausalue_NK : NK ;
+fun parkkiaine_NK : NK ;
+fun parkkihalli_NK : NK ;
+fun parkkihappo_NK : NK ;
+fun parkkimaksu_NK : NK ;
+fun parkkimittari_NK : NK ;
+fun parkkipaikka_NK : NK ;
+fun parkkipankki_NK : NK ;
+fun parkkitalo_NK : NK ;
+fun parkkivalo_NK : NK ;
+fun parkkiyhtio'_NK : NK ;
+fun parlamenttitalo_NK : NK ;
+fun parmesaanijuusto_NK : NK ;
+fun parrakas_NK : NK ;
+fun parranajokone_NK : NK ;
+fun parsakaali_NK : NK ;
+fun parsakaalikeitto_NK : NK ;
+fun parsakeitto_NK : NK ;
+fun parsasalaatti_NK : NK ;
+fun parsinavetta_NK : NK ;
+fun partahaiven_NK : NK ;
+fun partajeesus_NK : NK ;
+fun partakarva_NK : NK ;
+fun partakone_NK : NK ;
+fun partaniekka_NK : NK ;
+fun partaradikaali_NK : NK ;
+fun partasieni_NK : NK ;
+fun partasuti_NK : NK ;
+fun partasuu_NK : NK ;
+fun partatera'_NK : NK ;
+fun partavaahto_NK : NK ;
+fun partaveitsi_NK : NK ;
+fun partavesi_NK : NK ;
+fun partiaalinen_NK : NK ;
+fun partiojohtaja_NK : NK ;
+fun partioja'rjesto'_NK : NK ;
+fun partiolainen_NK : NK ;
+fun partioleiri_NK : NK ;
+fun partioliike_NK : NK ;
+fun partiolilja_NK : NK ;
+fun partiolupaus_NK : NK ;
+fun partiopoika_NK : NK ;
+fun partiopuku_NK : NK ;
+fun partiopusero_NK : NK ;
+fun partiotervehdys_NK : NK ;
+fun partiotytto'_NK : NK ;
+fun partisiippirakenne_NK : NK ;
+fun parturiliike_NK : NK ;
+fun parveiluitio'_NK : NK ;
+fun parveilulento_NK : NK ;
+fun parvekekaluste_NK : NK ;
+fun parvekekasvi_NK : NK ;
+fun parvekekukka_NK : NK ;
+fun parvekelaatikko_NK : NK ;
+fun parvekelasi_NK : NK ;
+fun parvekeviljelma'_NK : NK ;
+fun parvekeviljely_NK : NK ;
+fun parvikala_NK : NK ;
+fun parvisa'nky_NK : NK ;
+fun pasaasi_NK : NK ;
+fun pasaatituuli_NK : NK ;
+fun pasaativyo'hyke_NK : NK ;
+fun paskamainen_NK : NK ;
+fun paskapuhe_NK : NK ;
+fun paskapa'a'_NK : NK ;
+fun pasmalanka_NK : NK ;
+fun passaaja_NK : NK ;
+fun passari_NK : NK ;
+fun passiivimuoto_NK : NK ;
+fun passiiviva'esto'_NK : NK ;
+fun passikuva_NK : NK ;
+fun passiohedelma'_NK : NK ;
+fun passiona'ytelma'_NK : NK ;
+fun passipeli_NK : NK ;
+fun passipoliisi_NK : NK ;
+fun passivapaus_NK : NK ;
+fun pastakone_NK : NK ;
+fun pastelliliitu_NK : NK ;
+fun pastellimaalaus_NK : NK ;
+fun pastellityo'_NK : NK ;
+fun pastelliva'ri_NK : NK ;
+fun pastilli_NK : NK ;
+fun pastillipussi_NK : NK ;
+fun pastillirasia_NK : NK ;
+fun pastissi_NK : NK ;
+fun pastoraalitutkinto_NK : NK ;
+fun pastori_NK : NK ;
+fun pasutusuuni_NK : NK ;
+fun patakinnas_NK : NK ;
+fun patakukko_NK : NK ;
+fun patakuningas_NK : NK ;
+fun patalaiska_NK : NK ;
+fun patalakki_NK : NK ;
+fun patalappu_NK : NK ;
+fun patapaisti_NK : NK ;
+fun patarouva_NK : NK ;
+fun patarumpu_NK : NK ;
+fun pataruoka_NK : NK ;
+fun patasuti_NK : NK ;
+fun patavalmis_NK : NK ;
+fun pataa'ssa'_NK : NK ;
+fun patjakasvi_NK : NK ;
+fun patjavarjo_NK : NK ;
+fun patoallas_NK : NK ;
+fun patoaukko_NK : NK ;
+fun patruunalipas_NK : NK ;
+fun patruunapesa'_NK : NK ;
+fun patruunatehdas_NK : NK ;
+fun patruunavyo'_NK : NK ;
+fun patsasaitta_NK : NK ;
+fun pattijalka_NK : NK ;
+fun pattijalkainen_NK : NK ;
+fun pattipolvi_NK : NK ;
+fun pattipolvinen_NK : NK ;
+fun pattitilanne_NK : NK ;
+fun paukkumaissi_NK : NK ;
+fun paukkupakkanen_NK : NK ;
+fun paukkupanos_NK : NK ;
+fun paukkupatruuna_NK : NK ;
+fun paukkupommi_NK : NK ;
+fun paukkurauta_NK : NK ;
+fun paussimerkki_NK : NK ;
+fun peeveli_AK : AK ;
+fun peffama'ki_NK : NK ;
+fun pehmea'kantinen_NK : NK ;
+fun pehmea'karvainen_NK : NK ;
+fun pehmea'kuorinen_NK : NK ;
+fun pehmea'liikkeinen_NK : NK ;
+fun pehmea'luontoinen_NK : NK ;
+fun pehmea'piirteinen_NK : NK ;
+fun pehmea'pohjainen_NK : NK ;
+fun pehmea'sointinen_NK : NK ;
+fun pehmea'sa'vyinen_NK : NK ;
+fun pehmea'turkkinen_NK : NK ;
+fun pehmitysaine_NK : NK ;
+fun pehmoisa'_NK : NK ;
+fun pehmoja'a'telo'_NK : NK ;
+fun pehmolelu_NK : NK ;
+fun pehmomies_NK : NK ;
+fun pehmopaperi_NK : NK ;
+fun pehmytkudosreuma_NK : NK ;
+fun peilikaappi_NK : NK ;
+fun peilikamera_NK : NK ;
+fun peilikirkas_NK : NK ;
+fun peilikuva_NK : NK ;
+fun peililasi_NK : NK ;
+fun peiliovi_NK : NK ;
+fun peilipinta_NK : NK ;
+fun peilipo'yta'_NK : NK ;
+fun peilisali_NK : NK ;
+fun peilityven_NK : NK ;
+fun peilityyni_NK : NK ;
+fun peiteja'rjesto'_NK : NK ;
+fun peitenimi_NK : NK ;
+fun peitepuikko_NK : NK ;
+fun peitetarina_NK : NK ;
+fun peiteva'ri_NK : NK ;
+fun peittausaine_NK : NK ;
+fun peittava'ri_NK : NK ;
+fun peittokyky_NK : NK ;
+fun pekonimakkara_NK : NK ;
+fun pelaajavalmentaja_NK : NK ;
+fun pelastusalus_NK : NK ;
+fun pelastuskalusto_NK : NK ;
+fun pelastuskoira_NK : NK ;
+fun pelastuskokous_NK : NK ;
+fun pelastuslautta_NK : NK ;
+fun pelastusliivi_NK : NK ;
+fun pelastusluiska_NK : NK ;
+fun pelastuspalvelu_NK : NK ;
+fun pelastuspartio_NK : NK ;
+fun pelastuspuku_NK : NK ;
+fun pelastuspurje_NK : NK ;
+fun pelastusrengas_NK : NK ;
+fun pelastussukeltaja_NK : NK ;
+fun pelastussukka_NK : NK ;
+fun pelastustyo'_NK : NK ;
+fun pelastusvene_NK : NK ;
+fun pelastusva'line_NK : NK ;
+fun peliasu_NK : NK ;
+fun peliautomaatti_NK : NK ;
+fun peliharjoitus_NK : NK ;
+fun pelihelvetti_NK : NK ;
+fun pelihimo_NK : NK ;
+--? fun pelihousut_NK : NK ;
+fun pelihuone_NK : NK ;
+fun pelihuoneisto_NK : NK ;
+fun pelihuumori_NK : NK ;
+fun pelikatko_NK : NK ;
+fun pelikausi_NK : NK ;
+fun pelikello_NK : NK ;
+fun pelikentta'_NK : NK ;
+fun pelikielto_NK : NK ;
+fun pelikortti_NK : NK ;
+fun pelika'sine_NK : NK ;
+fun pelilauta_NK : NK ;
+fun peliluola_NK : NK ;
+fun pelimannimusiikki_NK : NK ;
+fun pelimanniyhtye_NK : NK ;
+fun pelimerkki_NK : NK ;
+fun pelimoraali_NK : NK ;
+fun pelinappula_NK : NK ;
+fun pelinarkomaani_NK : NK ;
+fun peliohjain_NK : NK ;
+fun peliosake_NK : NK ;
+fun peliote_NK : NK ;
+fun pelipaita_NK : NK ;
+fun pelipallo_NK : NK ;
+fun pelipo'yta'_NK : NK ;
+fun peliraha_NK : NK ;
+fun pelisali_NK : NK ;
+fun pelisilma'_NK : NK ;
+fun pelisa'a'nto'_NK : NK ;
+fun pelitaktiikka_NK : NK ;
+fun peliteoria_NK : NK ;
+fun pelitilanne_NK : NK ;
+fun pelitoveri_NK : NK ;
+fun pelituomari_NK : NK ;
+fun pelityyli_NK : NK ;
+fun pelivara_NK : NK ;
+fun pelivaruste_NK : NK ;
+fun pelivelka_NK : NK ;
+fun peliva'line_NK : NK ;
+fun pelia'ly_NK : NK ;
+fun pelkistysaine_NK : NK ;
+fun pelkkasahaus_NK : NK ;
+fun pelkotila_NK : NK ;
+fun pelkurimainen_AK : AK ;
+fun pellavahame_NK : NK ;
+fun pellavakangas_NK : NK ;
+fun pellavakuitu_NK : NK ;
+fun pellavalanka_NK : NK ;
+fun pellavaliina_NK : NK ;
+fun pellavansiemeno'ljy_NK : NK ;
+fun pellavapuku_NK : NK ;
+fun pellavapyyhe_NK : NK ;
+fun pellavapa'inen_NK : NK ;
+fun pellavapa'a'_NK : NK ;
+fun pellavatukka_NK : NK ;
+fun pellavatukkainen_NK : NK ;
+fun pellavao'ljy_NK : NK ;
+fun pellavao'ljyhappo_NK : NK ;
+fun pellehyppy_NK : NK ;
+fun pellehyppa'a'ja'_NK : NK ;
+fun pellonvarauskorvaus_NK : NK ;
+fun pelotuskeino_NK : NK ;
+fun peltiastia_NK : NK ;
+fun peltikanisteri_NK : NK ;
+fun peltikatto_NK : NK ;
+fun peltikattoinen_NK : NK ;
+fun peltikolari_NK : NK ;
+fun peltilehma'_NK : NK ;
+fun peltilevy_NK : NK ;
+fun peltimuki_NK : NK ;
+fun peltipakki_NK : NK ;
+fun peltipurkki_NK : NK ;
+fun peltirasia_NK : NK ;
+fun peltiromu_NK : NK ;
+--? fun peltisakset_NK : NK ;
+fun peltiseppa'_NK : NK ;
+fun peltitynnyri_NK : NK ;
+fun peltito'lkki_NK : NK ;
+fun peltivaurio_NK : NK ;
+fun peltoaukea_NK : NK ;
+fun peltoaukeama_NK : NK ;
+fun peltoema'kki_NK : NK ;
+fun peltoetana_NK : NK ;
+fun peltohatikka_NK : NK ;
+fun peltohehtaari_NK : NK ;
+fun peltoherne_NK : NK ;
+fun peltohiiri_NK : NK ;
+fun peltokaali_NK : NK ;
+fun peltokierto_NK : NK ;
+fun peltokorte_NK : NK ;
+fun peltolaidun_NK : NK ;
+fun peltolemmikki_NK : NK ;
+fun peltomaa_NK : NK ;
+fun peltomies_NK : NK ;
+fun peltomyyra'_NK : NK ;
+fun peltopyy_NK : NK ;
+fun peltoretikka_NK : NK ;
+fun peltosarka_NK : NK ;
+fun peltosaunio_NK : NK ;
+fun peltosirkku_NK : NK ;
+fun peltotie_NK : NK ;
+fun peltotilkku_NK : NK ;
+fun peltotyo'_NK : NK ;
+fun peltovalvatti_NK : NK ;
+fun peltoviljely_NK : NK ;
+fun peltoviljelys_NK : NK ;
+fun peltovilla_NK : NK ;
+fun peluriluonne_NK : NK ;
+fun pengeristutus_NK : NK ;
+fun pengerluiska_NK : NK ;
+fun pengertie_NK : NK ;
+fun pengerviljelma'_NK : NK ;
+fun pengerviljely_NK : NK ;
+fun pengerviljelys_NK : NK ;
+fun penikkamainen_AK : AK ;
+fun penikkatauti_NK : NK ;
+fun penisilliinihoito_NK : NK ;
+fun penisilliinikuuri_NK : NK ;
+fun penisilliiniruiske_NK : NK ;
+fun peniskateus_NK : NK ;
+fun penkereisyys_NK : NK ;
+fun penkkipunnerrus_NK : NK ;
+fun penkkirivi_NK : NK ;
+fun penkkiurheilija_NK : NK ;
+fun penkkiurheilu_NK : NK ;
+fun pennikorotus_NK : NK ;
+fun pennilinja_NK : NK ;
+fun pennima'a'ra'inen_NK : NK ;
+fun pensasaita_NK : NK ;
+fun pensasangervo_NK : NK ;
+fun pensaskasvi_NK : NK ;
+fun pensaskerttu_NK : NK ;
+fun pensasmainen_AK : AK ;
+fun pensasmustikka_NK : NK ;
+fun pensaspapu_NK : NK ;
+--? fun pensassakset_NK : NK ;
+fun pensastasku_NK : NK ;
+fun pensastoinen_NK : NK ;
+fun pensastomaatti_NK : NK ;
+fun pentukoira_NK : NK ;
+fun pentumainen_AK : AK ;
+fun pergamenttika'a'ro'_NK : NK ;
+fun pergamenttipaperi_NK : NK ;
+fun pergamiinipaperi_NK : NK ;
+fun perhana_AK : AK ;
+fun perhealbumi_NK : NK ;
+fun perheasia_NK : NK ;
+fun perheasunto_NK : NK ;
+fun perheauto_NK : NK ;
+fun perhedemokratia_NK : NK ;
+fun perhehauta_NK : NK ;
+fun perhehelvetti_NK : NK ;
+fun perhehoitaja_NK : NK ;
+fun perhehoito_NK : NK ;
+fun perhehotelli_NK : NK ;
+fun perheidylli_NK : NK ;
+fun perhejuhla_NK : NK ;
+fun perhekalleus_NK : NK ;
+fun perhekasvatus_NK : NK ;
+fun perhekeskeinen_NK : NK ;
+fun perhekirkko_NK : NK ;
+fun perhekoti_NK : NK ;
+fun perhekunta_NK : NK ;
+fun perhekuva_NK : NK ;
+fun perheka'ytto'_NK : NK ;
+fun perhela'a'ka'ri_NK : NK ;
+fun perhemajoitus_NK : NK ;
+fun perheneuvoja_NK : NK ;
+fun perheneuvola_NK : NK ;
+fun perheneuvonta_NK : NK ;
+fun perheneuvottelu_NK : NK ;
+fun perheohjelma_NK : NK ;
+fun perheoikeus_NK : NK ;
+fun perheonni_NK : NK ;
+fun perhepakkaus_NK : NK ;
+fun perhepiiri_NK : NK ;
+fun perhepinnari_NK : NK ;
+fun perhepolitiikka_NK : NK ;
+fun perheriita_NK : NK ;
+fun perhesarja_NK : NK ;
+fun perhesivu_NK : NK ;
+fun perhesynnytys_NK : NK ;
+fun perhetapahtuma_NK : NK ;
+fun perhetapaus_NK : NK ;
+fun perheterapia_NK : NK ;
+fun perhetilaisuus_NK : NK ;
+fun perhetraditio_NK : NK ;
+fun perhetragedia_NK : NK ;
+fun perhetunne_NK : NK ;
+fun perhetuttava_NK : NK ;
+fun perhetuttu_NK : NK ;
+fun perhetytto'_NK : NK ;
+fun perhetyo'_NK : NK ;
+fun perheuutinen_NK : NK ;
+fun perhevalmennus_NK : NK ;
+fun perhevene_NK : NK ;
+fun perheviljelma'_NK : NK ;
+fun perheyhtio'_NK : NK ;
+fun perheyhtyma'_NK : NK ;
+fun perheyritys_NK : NK ;
+fun perheysta'va'_NK : NK ;
+fun perhokalastus_NK : NK ;
+fun perhokela_NK : NK ;
+fun perholiivi_NK : NK ;
+fun perhomainen_NK : NK ;
+fun perhosiima_NK : NK ;
+fun perhovapa_NK : NK ;
+fun periaatekysymys_NK : NK ;
+fun periaateohjelma_NK : NK ;
+fun periaatepa'a'to's_NK : NK ;
+fun perillemeno_NK : NK ;
+fun perillepa'a'sy_NK : NK ;
+fun perilletulo_NK : NK ;
+fun perimysja'rjestys_NK : NK ;
+fun perimyssota_NK : NK ;
+fun perima'tapa_NK : NK ;
+fun perima'tieto_NK : NK ;
+fun perinjuurinen_NK : NK ;
+fun perinnemaisema_NK : NK ;
+fun perinneruoka_NK : NK ;
+fun perinnetiede_NK : NK ;
+fun perinno'llisyysneuvonta_NK : NK ;
+fun perinno'llisyyspsykologia_NK : NK ;
+fun perinno'llisyystiede_NK : NK ;
+fun perinno'njakokirja_NK : NK ;
+fun perinno'njakotilaisuus_NK : NK ;
+fun perinpohjainen_AK : AK ;
+fun perinpohjaisuus_NK : NK ;
+fun perinteinen_AK : AK ;
+fun perinto'kaari_NK : NK ;
+fun perinto'kalleus_NK : NK ;
+fun perinto'oikeus_NK : NK ;
+fun perinto'omaisuus_NK : NK ;
+fun perinto'osa_NK : NK ;
+fun perinto'osuus_NK : NK ;
+fun perinto'prinsessa_NK : NK ;
+fun perinto'prinssi_NK : NK ;
+fun perinto'ruhtinas_NK : NK ;
+fun perinto'sopimus_NK : NK ;
+fun perinto'tekija'_NK : NK ;
+fun perinto'tila_NK : NK ;
+fun perinto'vero_NK : NK ;
+fun periodiopetus_NK : NK ;
+fun periodityo'_NK : NK ;
+fun perjantaipullo_NK : NK ;
+fun perkausja'te_NK : NK ;
+fun perkausrauta_NK : NK ;
+fun perkussionisti_NK : NK ;
+fun perkuu_NK : NK ;
+fun permanto_NK : NK ;
+fun permantoliike_NK : NK ;
+fun permantopaikka_NK : NK ;
+fun permantovoimistelu_NK : NK ;
+fun permutaatio_NK : NK ;
+fun pernaruoho_NK : NK ;
+fun pernarutto_NK : NK ;
+fun peroksidi_NK : NK ;
+fun persialainen_NK : NK ;
+fun persikkaiho_NK : NK ;
+fun persiljanippu_NK : NK ;
+fun persoonallisuustesti_NK : NK ;
+fun persoonallisuustyyppi_NK : NK ;
+fun persoonamuoto_NK : NK ;
+fun persoonapronomini_NK : NK ;
+fun persoonapa'a'te_NK : NK ;
+fun perspektiivikuva_NK : NK ;
+fun perspektiivimaalaus_NK : NK ;
+fun perspektiivipiirustus_NK : NK ;
+fun perukirja_NK : NK ;
+fun perunajauho_NK : NK ;
+fun perunakappa_NK : NK ;
+fun perunakattila_NK : NK ;
+fun perunakeitto_NK : NK ;
+fun perunakellari_NK : NK ;
+fun perunakuokka_NK : NK ;
+fun perunakuoppa_NK : NK ;
+fun perunakuoriainen_NK : NK ;
+fun perunakuutio_NK : NK ;
+fun perunalaari_NK : NK ;
+fun perunalaatikko_NK : NK ;
+fun perunalajike_NK : NK ;
+fun perunalastu_NK : NK ;
+fun perunaleivos_NK : NK ;
+fun perunalettu_NK : NK ;
+fun perunalimppu_NK : NK ;
+fun perunalohko_NK : NK ;
+fun perunalumi_NK : NK ;
+fun perunamaa_NK : NK ;
+fun perunamuhennos_NK : NK ;
+fun perunamuusi_NK : NK ;
+fun perunanena'_NK : NK ;
+fun perunanistutuskone_NK : NK ;
+fun perunannostokone_NK : NK ;
+fun perunanuija_NK : NK ;
+fun perunaohukainen_NK : NK ;
+fun perunapelto_NK : NK ;
+fun perunapenkki_NK : NK ;
+fun perunapiirakka_NK : NK ;
+fun perunapuuro_NK : NK ;
+fun perunarieska_NK : NK ;
+fun perunarupi_NK : NK ;
+fun perunarutto_NK : NK ;
+fun perunasalaatti_NK : NK ;
+fun perunasarka_NK : NK ;
+fun perunasato_NK : NK ;
+fun perunasoppa_NK : NK ;
+fun perunasose_NK : NK ;
+fun perunasurvin_NK : NK ;
+fun perunasyo'pa'_NK : NK ;
+fun perunasa'kki_NK : NK ;
+fun perunateatteri_NK : NK ;
+fun perunata'rkkelys_NK : NK ;
+fun perunavako_NK : NK ;
+fun perunavesi_NK : NK ;
+fun perunaviipale_NK : NK ;
+fun perunaviljelys_NK : NK ;
+fun perunkirjoitusarvo_NK : NK ;
+fun perusaate_NK : NK ;
+fun perusaihe_NK : NK ;
+fun perusaineisto_NK : NK ;
+fun perusaines_NK : NK ;
+fun perusajatus_NK : NK ;
+fun perusarvo_NK : NK ;
+fun perusasenne_NK : NK ;
+fun perusasento_NK : NK ;
+fun perusasia_NK : NK ;
+fun perusaste_NK : NK ;
+fun perusedellytys_NK : NK ;
+fun perushinta_NK : NK ;
+fun perushoitaja_NK : NK ;
+fun perushoito_NK : NK ;
+fun perusjoukko_NK : NK ;
+fun peruskallio_NK : NK ;
+fun peruskartoitus_NK : NK ;
+fun peruskartta_NK : NK ;
+fun peruskastike_NK : NK ;
+fun peruskilpailu_NK : NK ;
+fun peruskirja_NK : NK ;
+fun peruskivi_NK : NK ;
+fun peruskorjaus_NK : NK ;
+fun peruskorko_NK : NK ;
+fun peruskoulu_NK : NK ;
+fun peruskouluaste_NK : NK ;
+fun peruskouluika'inen_NK : NK ;
+fun peruskoululainen_NK : NK ;
+fun peruskoulutus_NK : NK ;
+fun peruskunto_NK : NK ;
+fun peruskurssi_NK : NK ;
+fun peruskysymys_NK : NK ;
+fun peruska'site_NK : NK ;
+fun peruska'ytta'ja'_NK : NK ;
+fun peruslaki_NK : NK ;
+fun peruslause_NK : NK ;
+fun peruslinja_NK : NK ;
+fun peruslukema_NK : NK ;
+fun perusluku_NK : NK ;
+fun perusluonne_NK : NK ;
+fun perusluonteinen_NK : NK ;
+fun perusmaksu_NK : NK ;
+fun perusmerkitys_NK : NK ;
+fun perusmuoto_NK : NK ;
+fun perusmuotoinen_NK : NK ;
+fun perusmuuri_NK : NK ;
+fun perusoikeus_NK : NK ;
+fun perusolemus_NK : NK ;
+fun perusolettamus_NK : NK ;
+fun perusominaisuus_NK : NK ;
+fun perusopetus_NK : NK ;
+fun perusopetusryhma'_NK : NK ;
+fun perusoppi_NK : NK ;
+fun perusosa_NK : NK ;
+fun peruspaalu_NK : NK ;
+fun peruspaalutus_NK : NK ;
+fun peruspalkka_NK : NK ;
+fun peruspalkkainen_NK : NK ;
+fun perusparannus_NK : NK ;
+fun peruspiirre_NK : NK ;
+fun peruspilari_NK : NK ;
+fun peruspuku_NK : NK ;
+fun perusrakenne_NK : NK ;
+fun perusrunko_NK : NK ;
+fun perussairaus_NK : NK ;
+fun perussana_NK : NK ;
+fun perussidos_NK : NK ;
+fun perussointu_NK : NK ;
+fun perussuunta_NK : NK ;
+fun perussa'vel_NK : NK ;
+fun perussa'vy_NK : NK ;
+fun perustajaja'sen_NK : NK ;
+fun perustajavaltio_NK : NK ;
+fun perustarve_NK : NK ;
+fun perustase_NK : NK ;
+fun perustaso_NK : NK ;
+fun perustauti_NK : NK ;
+fun perusteinen_NK : NK ;
+fun perustekija'_NK : NK ;
+fun perusteos_NK : NK ;
+fun perustuotanto_NK : NK ;
+fun perusturva_NK : NK ;
+fun perustuslaillinen_NK : NK ;
+fun perustuslaillisuus_NK : NK ;
+fun perustuslaki_NK : NK ;
+fun perustustyo'_NK : NK ;
+fun perustutkimus_NK : NK ;
+fun perustutkinto_NK : NK ;
+fun perustyyppi_NK : NK ;
+fun perusviiva_NK : NK ;
+fun perusvoide_NK : NK ;
+fun perusvuosi_NK : NK ;
+fun perusyhtyma'_NK : NK ;
+fun perusyksikko'_NK : NK ;
+fun peruukki_NK : NK ;
+fun peruutusmatka_NK : NK ;
+fun peruutuspaikka_NK : NK ;
+fun peruutuspeili_NK : NK ;
+fun peruutusvaihde_NK : NK ;
+fun peruutusvalo_NK : NK ;
+fun perversio_NK : NK ;
+fun pera'aallokko_NK : NK ;
+fun pera'aukko_NK : NK ;
+fun pera'eva'_NK : NK ;
+fun pera'hytti_NK : NK ;
+fun pera'isyys_NK : NK ;
+fun pera'kamari_NK : NK ;
+fun pera'kansi_NK : NK ;
+fun pera'koroke_NK : NK ;
+fun pera'kulma_NK : NK ;
+fun pera'kyla'_NK : NK ;
+fun pera'ka'rry_NK : NK ;
+fun pera'ko'ysi_NK : NK ;
+fun pera'laita_NK : NK ;
+fun pera'lauta_NK : NK ;
+fun pera'masto_NK : NK ;
+fun pera'mela_NK : NK ;
+fun pera'mies_NK : NK ;
+fun pera'moottori_NK : NK ;
+fun pera'moottorivene_NK : NK ;
+fun pera'nurkka_NK : NK ;
+fun pera'osa_NK : NK ;
+fun pera'painoinen_NK : NK ;
+fun pera'painoisuus_NK : NK ;
+fun pera'parras_NK : NK ;
+fun pera'peili_NK : NK ;
+fun pera'penkki_NK : NK ;
+fun pera'portti_NK : NK ;
+fun pera'porttialus_NK : NK ;
+fun pera'puikko_NK : NK ;
+fun pera'puoli_NK : NK ;
+fun pera'pa'a'_NK : NK ;
+fun pera'ruiske_NK : NK ;
+fun pera'ruisku_NK : NK ;
+fun pera'sinkone_NK : NK ;
+fun pera'sinlapa_NK : NK ;
+fun pera'sintanko_NK : NK ;
+fun pera'sinvarsi_NK : NK ;
+fun pera'ssa'hiihta'ja'_NK : NK ;
+fun pera'ssa'tulija_NK : NK ;
+fun pera'suoli_NK : NK ;
+fun pera'suolila'mpo'_NK : NK ;
+fun pera'suolipolyyppi_NK : NK ;
+fun pera'suolisyo'pa'_NK : NK ;
+fun pera'teljo_NK : NK ;
+fun pera'tila_NK : NK ;
+fun pera'tuhto_NK : NK ;
+fun pera'valo_NK : NK ;
+fun pera'vaunu_NK : NK ;
+fun pera'a'najo_NK : NK ;
+fun pesinta'paikka_NK : NK ;
+fun pestausraha_NK : NK ;
+--? fun pestimarkkinat_NK : NK ;
+fun pestiraha_NK : NK ;
+--? fun pestuumarkkinat_NK : NK ;
+fun pesuaine_NK : NK ;
+fun pesuallas_NK : NK ;
+fun pesubetoni_NK : NK ;
+fun pesuhuone_NK : NK ;
+fun pesuistuin_NK : NK ;
+fun pesujauhe_NK : NK ;
+fun pesukarhu_NK : NK ;
+fun pesukinnas_NK : NK ;
+fun pesukone_NK : NK ;
+fun pesuliuos_NK : NK ;
+fun pesumerkinta'_NK : NK ;
+fun pesumokka_NK : NK ;
+fun pesuneste_NK : NK ;
+fun pesuohje_NK : NK ;
+fun pesuohjelma_NK : NK ;
+fun pesupalju_NK : NK ;
+fun pesupulveri_NK : NK ;
+fun pesupussi_NK : NK ;
+fun pesuriepu_NK : NK ;
+fun pesura'tti_NK : NK ;
+fun pesusieni_NK : NK ;
+fun pesusoikko_NK : NK ;
+fun pesuteho_NK : NK ;
+fun pesutupa_NK : NK ;
+fun pesuvati_NK : NK ;
+fun pesuvesi_NK : NK ;
+fun pesuva'line_NK : NK ;
+fun pesa'ero_NK : NK ;
+fun pesa'kolo_NK : NK ;
+fun pesa'kunta_NK : NK ;
+fun pesa'luettelo_NK : NK ;
+fun pesa'muna_NK : NK ;
+fun pesa'paikka_NK : NK ;
+fun pesa'pallo_NK : NK ;
+fun pesa'palloilija_NK : NK ;
+fun pesa'palloilu_NK : NK ;
+fun pesa'pallojoukkue_NK : NK ;
+fun pesa'pallokentta'_NK : NK ;
+fun pesa'pallomaila_NK : NK ;
+fun pesa'pallopeli_NK : NK ;
+fun pesa'puu_NK : NK ;
+fun pesa'po'ntto'_NK : NK ;
+fun pesa'tuomari_NK : NK ;
+fun pesa'vahti_NK : NK ;
+fun pesa'valkea_NK : NK ;
+fun petauspatja_NK : NK ;
+fun petiittikirjain_NK : NK ;
+fun petikaveri_NK : NK ;
+fun petoela'in_NK : NK ;
+fun petohyo'nteinen_NK : NK ;
+fun petokala_NK : NK ;
+fun petokuoriainen_NK : NK ;
+fun petolintu_NK : NK ;
+fun petomainen_AK : AK ;
+fun petonisa'ka's_NK : NK ;
+fun petopistia'inen_NK : NK ;
+fun petopunkki_NK : NK ;
+fun petsiva'ri_NK : NK ;
+fun pettujauho_NK : NK ;
+fun pettuleipa'_NK : NK ;
+fun peukalohanka_NK : NK ;
+fun peukalokiila_NK : NK ;
+fun peukalokyyti_NK : NK ;
+fun peukaloruuvi_NK : NK ;
+fun peukalosa'a'nto'_NK : NK ;
+fun pianismi_NK : NK ;
+fun pianohaitari_NK : NK ;
+fun pianoharmonikka_NK : NK ;
+fun pianokappale_NK : NK ;
+fun pianokonsertti_NK : NK ;
+fun pianokonsertto_NK : NK ;
+fun pianokoulu_NK : NK ;
+fun pianokvartetti_NK : NK ;
+fun pianokvartetto_NK : NK ;
+fun pianokvintetti_NK : NK ;
+fun pianokvintetto_NK : NK ;
+fun pianomusiikki_NK : NK ;
+fun pianosolisti_NK : NK ;
+fun pianosonaatti_NK : NK ;
+fun pianosoolo_NK : NK ;
+fun pianosovitus_NK : NK ;
+fun pianosa'vellys_NK : NK ;
+fun pianotaide_NK : NK ;
+fun pianotaiteilija_NK : NK ;
+fun pianoteos_NK : NK ;
+fun pianotrio_NK : NK ;
+fun pianotunti_NK : NK ;
+fun pianotuoli_NK : NK ;
+fun pida'ttyva'isyys_NK : NK ;
+fun pida'tyskyky_NK : NK ;
+fun pida'tysma'a'ra'ys_NK : NK ;
+fun pida'tysoikeus_NK : NK ;
+fun pida'tysprosentti_NK : NK ;
+fun pida'tystodistus_NK : NK ;
+fun pielikukka_NK : NK ;
+fun pienialainen_NK : NK ;
+fun pienikasvuinen_NK : NK ;
+fun pienikokoinen_NK : NK ;
+fun pienikuvioinen_NK : NK ;
+fun pienilevikkinen_NK : NK ;
+fun pieniluinen_NK : NK ;
+fun pienimuotoinen_NK : NK ;
+fun pienipalkkainen_NK : NK ;
+fun pieniruokainen_NK : NK ;
+fun pienitehoinen_NK : NK ;
+fun pienituloinen_NK : NK ;
+fun pienryhma'opetus_NK : NK ;
+fun pientaloalue_NK : NK ;
+fun pientaloasunto_NK : NK ;
+fun pienvenesatama_NK : NK ;
+fun pienviljelija'va'esto'_NK : NK ;
+fun pigmenttisolu_NK : NK ;
+fun pihakamari_NK : NK ;
+fun pihakatu_NK : NK ;
+fun pihakeinu_NK : NK ;
+fun pihakoivu_NK : NK ;
+fun pihamaa_NK : NK ;
+fun pihamo'kki_NK : NK ;
+fun pihanurmikko_NK : NK ;
+fun pihapiiri_NK : NK ;
+fun pihapuu_NK : NK ;
+fun piharakennus_NK : NK ;
+fun piharatamo_NK : NK ;
+fun pihasyreeni_NK : NK ;
+fun pihkamaito_NK : NK ;
+fun pihkaniska_NK : NK ;
+fun pihlajanmarjahillo_NK : NK ;
+fun pihlajanmarjahyytelo'_NK : NK ;
+fun pihlajanmarjakoi_NK : NK ;
+fun pihlajanmarjaliko'o'ri_NK : NK ;
+fun pihlajanmarjaterttu_NK : NK ;
+fun pihvikarja_NK : NK ;
+fun pihviliha_NK : NK ;
+fun pihvitomaatti_NK : NK ;
+fun piiesine_NK : NK ;
+fun piikivi_NK : NK ;
+fun piikiviase_NK : NK ;
+fun piikkihuume_NK : NK ;
+fun piikkikorko_NK : NK ;
+fun piikkikorkoinen_NK : NK ;
+fun piikkikruunu_NK : NK ;
+fun piikkika'rki_NK : NK ;
+fun piikkika'rkinen_NK : NK ;
+fun piikkilanka_NK : NK ;
+fun piikkilankaeste_NK : NK ;
+fun piikkimatto_NK : NK ;
+fun piikkinahkainen_NK : NK ;
+fun piikkisika_NK : NK ;
+fun piikkisuora_NK : NK ;
+fun piikkia'es_NK : NK ;
+fun piileva'_1_NK : NK ;
+fun piileva'_2_NK : NK ;
+fun piileva'maa_NK : NK ;
+fun piilofarmari_NK : NK ;
+fun piilokamera_NK : NK ;
+fun piilokarsastus_NK : NK ;
+fun piilokives_NK : NK ;
+fun piilokonttori_NK : NK ;
+fun piilokuva_NK : NK ;
+fun piiloka'rki_NK : NK ;
+fun piilolinssi_NK : NK ;
+fun piilomainonta_NK : NK ;
+fun piilonapitus_NK : NK ;
+fun piilonappi_NK : NK ;
+fun piilopaikka_NK : NK ;
+fun piilopirtti_NK : NK ;
+fun piilopisto_NK : NK ;
+fun piilorasva_NK : NK ;
+fun piilosarana_NK : NK ;
+fun piiloseksi_NK : NK ;
+fun piilosilmukka_NK : NK ;
+fun piilotajuinen_NK : NK ;
+fun piilotajuisuus_NK : NK ;
+fun piilotajunta_NK : NK ;
+fun piilotyo'tto'myys_NK : NK ;
+fun piilotyo'to'n_NK : NK ;
+fun piilovaikuttaja_NK : NK ;
+fun piilovaikutus_NK : NK ;
+fun piiloviesti_NK : NK ;
+fun piilukirves_NK : NK ;
+fun piimaa_NK : NK ;
+fun piima'kakku_NK : NK ;
+fun piima'limppu_NK : NK ;
+fun piinapenkki_NK : NK ;
+fun piinaviikko_NK : NK ;
+fun piippolakki_NK : NK ;
+fun piippuhylly_NK : NK ;
+fun piippuinen_NK : NK ;
+fun piippuko'ynno's_NK : NK ;
+fun piippumies_NK : NK ;
+fun piippunysa'_NK : NK ;
+fun piipputupakka_NK : NK ;
+fun piirakka_NK : NK ;
+fun piirakkakaulin_NK : NK ;
+fun piirakkapulikka_NK : NK ;
+fun piirijako_NK : NK ;
+fun piirija'rjesto'_NK : NK ;
+fun piirikokous_NK : NK ;
+fun piirikokousedustaja_NK : NK ;
+fun piirileikki_NK : NK ;
+fun piirileikkilaulu_NK : NK ;
+fun piirimyyja'_NK : NK ;
+fun piirioja_NK : NK ;
+fun piiripa'a'llikko'_NK : NK ;
+fun piirisihteeri_NK : NK ;
+fun piiritoimisto_NK : NK ;
+fun piirrosanimaatio_NK : NK ;
+fun piirrosfilmi_NK : NK ;
+fun piirroskuvitus_NK : NK ;
+fun piirrostaide_NK : NK ;
+fun piirtoheitin_NK : NK ;
+fun piirtoheitinkalvo_NK : NK ;
+fun piirtokirjoitus_NK : NK ;
+fun piirtokyky_NK : NK ;
+fun piirustuskoje_NK : NK ;
+fun piirustuslauta_NK : NK ;
+fun piirustuslehtio'_NK : NK ;
+fun piirustusnasta_NK : NK ;
+fun piirustuspaperi_NK : NK ;
+fun piirustuspo'yta'_NK : NK ;
+fun piirustustaito_NK : NK ;
+fun piirustustunti_NK : NK ;
+fun piisamiturkki_NK : NK ;
+fun piisiru_NK : NK ;
+fun piiskaraha_NK : NK ;
+fun piiskaryyppy_NK : NK ;
+fun piiskatykki_NK : NK ;
+fun pika_arpa_NK : NK ;
+--? fun pika_arpajaiset_NK : NK ;
+fun pika_asutus_NK : NK ;
+fun pika_asutustila_NK : NK ;
+fun pika_ateria_NK : NK ;
+fun pikakirjoitustaitoinen_NK : NK ;
+fun pikaluistelukilpailu_NK : NK ;
+fun pikariisi_NK : NK ;
+fun pikarililja_NK : NK ;
+fun pikaruokapaikka_NK : NK ;
+fun pikavalintakytkin_NK : NK ;
+fun pikeekaulus_NK : NK ;
+fun pikieriste_NK : NK ;
+fun pikika'rsa'ka's_NK : NK ;
+fun pikimusta_NK : NK ;
+fun pikinokka_NK : NK ;
+fun pikinokkainen_NK : NK ;
+fun pikisilma'_NK : NK ;
+fun pikisilma'inen_NK : NK ;
+fun pikitie_NK : NK ;
+fun pikiva'lke_NK : NK ;
+fun pikio'ljy_NK : NK ;
+fun pikkolohuilu_NK : NK ;
+fun pikkolopullo_NK : NK ;
+--? fun pikkuaivot_NK : NK ;
+fun pikkuasia_NK : NK ;
+fun pikkuauto_NK : NK ;
+fun pikkuesine_NK : NK ;
+--? fun pikkuhousut_NK : NK ;
+fun pikkuhuilu_NK : NK ;
+fun pikkuilmoitus_NK : NK ;
+fun pikkujoulu_NK : NK ;
+fun pikkujoulujuhla_NK : NK ;
+fun pikkujuttu_NK : NK ;
+fun pikkukajava_NK : NK ;
+fun pikkukala_NK : NK ;
+fun pikkukauppa_NK : NK ;
+fun pikkukauppias_NK : NK ;
+fun pikkukaupunki_NK : NK ;
+fun pikkukaupunkilainen_NK : NK ;
+fun pikkukieli_NK : NK ;
+fun pikkukoskelo_NK : NK ;
+fun pikkukundi_NK : NK ;
+fun pikkukuovi_NK : NK ;
+fun pikkulantio_NK : NK ;
+fun pikkulapsi_NK : NK ;
+fun pikkulehti_NK : NK ;
+fun pikkuleipa'_NK : NK ;
+fun pikkuliike_NK : NK ;
+fun pikkulikka_NK : NK ;
+fun pikkulintu_NK : NK ;
+fun pikkulusikka_NK : NK ;
+fun pikkula'mmin_NK : NK ;
+fun pikkumainen_AK : AK ;
+fun pikkumies_NK : NK ;
+fun pikkumusta_NK : NK ;
+fun pikkuma'ki_NK : NK ;
+fun pikkuneiti_NK : NK ;
+fun pikkunokkela_NK : NK ;
+fun pikkuna'ppa'ra'_NK : NK ;
+fun pikkuosa_NK : NK ;
+fun pikkupakkanen_NK : NK ;
+fun pikkupappila_NK : NK ;
+fun pikkupiirre_NK : NK ;
+fun pikkuplaneetta_NK : NK ;
+fun pikkupoika_NK : NK ;
+fun pikkupoikamainen_NK : NK ;
+fun pikkuporvari_NK : NK ;
+fun pikkuporvaristo_NK : NK ;
+fun pikkupuku_NK : NK ;
+fun pikkupulla_NK : NK ;
+fun pikkupullo_NK : NK ;
+fun pikkupyykki_NK : NK ;
+--? fun pikkupo'ksyt_NK : NK ;
+fun pikkupo'yta'_NK : NK ;
+fun pikkuraha_NK : NK ;
+fun pikkuravintola_NK : NK ;
+fun pikkurihkama_NK : NK ;
+fun pikkurike_NK : NK ;
+fun pikkurikkomus_NK : NK ;
+fun pikkurikollinen_NK : NK ;
+fun pikkurikos_NK : NK ;
+fun pikkurokko_NK : NK ;
+fun pikkurouva_NK : NK ;
+fun pikkurumpu_NK : NK ;
+fun pikkuruutuinen_NK : NK ;
+fun pikkuryssa'_NK : NK ;
+fun pikkuseikka_NK : NK ;
+fun pikkuserkku_NK : NK ;
+fun pikkusielu_NK : NK ;
+fun pikkusieluinen_NK : NK ;
+fun pikkusieva'_NK : NK ;
+fun pikkusiipi_NK : NK ;
+fun pikkusikari_NK : NK ;
+fun pikkusisar_NK : NK ;
+fun pikkusisko_NK : NK ;
+fun pikkusormi_NK : NK ;
+fun pikkusuolainen_NK : NK ;
+fun pikkutakki_NK : NK ;
+fun pikkutalvikki_NK : NK ;
+fun pikkutapaus_NK : NK ;
+fun pikkutarkka_NK : NK ;
+fun pikkutavara_NK : NK ;
+fun pikkutekija'_NK : NK ;
+fun pikkutikka_NK : NK ;
+fun pikkutuhma_NK : NK ;
+fun pikkutylli_NK : NK ;
+fun pikkutytto'_NK : NK ;
+fun pikkuta'rkeys_NK : NK ;
+fun pikkuta'rkea'_NK : NK ;
+fun pikku_ukko_NK : NK ;
+fun pikku_uutinen_NK : NK ;
+fun pikkuvaltio_NK : NK ;
+fun pikkuvanha_AK : AK ;
+fun pikkuvarakas_NK : NK ;
+fun pikkuvarvas_NK : NK ;
+fun pikkuvasikka_NK : NK ;
+fun pikkuvauva_NK : NK ;
+fun pikkuveli_NK : NK ;
+fun pikkuviha_NK : NK ;
+fun pikkuviisari_NK : NK ;
+fun pikkuvika_NK : NK ;
+fun pikkuva'ki_NK : NK ;
+fun pilahviriisi_NK : NK ;
+fun pilailuva'line_NK : NK ;
+fun pilajuttu_NK : NK ;
+fun pilakuva_NK : NK ;
+fun pilalehti_NK : NK ;
+fun pilapiirros_NK : NK ;
+fun pilapiirta'ja'_NK : NK ;
+fun pilapuhe_NK : NK ;
+fun pilkkahinta_NK : NK ;
+fun pilkkahuuto_NK : NK ;
+fun pilkkakirjoitus_NK : NK ;
+fun pilkkakirves_NK : NK ;
+fun pilkkalaulu_NK : NK ;
+fun pilkkaruno_NK : NK ;
+fun pilkkasiipi_NK : NK ;
+fun pilkkikilpailu_NK : NK ;
+fun pilkkimies_NK : NK ;
+fun pilkkionginta_NK : NK ;
+fun pilkkionki_NK : NK ;
+fun pilkkukuume_NK : NK ;
+fun pilkkusa'a'nto'_NK : NK ;
+fun pilkkuvirhe_NK : NK ;
+fun pillerihattu_NK : NK ;
+fun pillerihumala_NK : NK ;
+fun pillerirasia_NK : NK ;
+--? fun pillifarkut_NK : NK ;
+fun pillikinttu_NK : NK ;
+fun pillikinttuinen_NK : NK ;
+fun pillimies_NK : NK ;
+fun pillisieni_NK : NK ;
+fun pillitupakka_NK : NK ;
+--? fun pilliurut_NK : NK ;
+fun pilottijakso_NK : NK ;
+fun pilottiohjelma_NK : NK ;
+fun pilottitutkimus_NK : NK ;
+fun pilsneripullo_NK : NK ;
+fun pilssivesi_NK : NK ;
+fun pilvikerros_NK : NK ;
+fun pilvilinna_NK : NK ;
+fun pilvipeite_NK : NK ;
+fun pilvipouta_NK : NK ;
+fun pilvipyo'rre_NK : NK ;
+fun pilviverho_NK : NK ;
+fun pimennysverho_NK : NK ;
+fun pinaattikaali_NK : NK ;
+fun pinaattikastike_NK : NK ;
+fun pinaattikeitto_NK : NK ;
+fun pinaattimuhennos_NK : NK ;
+fun pinaattiohukainen_NK : NK ;
+fun pinnasa'nky_NK : NK ;
+fun pinnatuoli_NK : NK ;
+fun pinta_alalisa'_NK : NK ;
+fun pinta_alamitta_NK : NK ;
+fun pintahiiva_NK : NK ;
+--? fun pintahiivaolut_NK : NK ;
+fun pintailmio'_NK : NK ;
+fun pintajengi_NK : NK ;
+fun pintaja'nnitys_NK : NK ;
+fun pintakarkaisu_NK : NK ;
+fun pintakelmu_NK : NK ;
+fun pintakerros_NK : NK ;
+fun pintakiilto_NK : NK ;
+fun pintakoreus_NK : NK ;
+fun pintakoristelu_NK : NK ;
+fun pintakudos_NK : NK ;
+fun pintakuljetus_NK : NK ;
+fun pintakulttuuri_NK : NK ;
+fun pintakuohu_NK : NK ;
+fun pintakuvio_NK : NK ;
+fun pintakuviointi_NK : NK ;
+fun pintaka'sittely_NK : NK ;
+fun pintalauta_NK : NK ;
+fun pintaliidin_NK : NK ;
+fun pintamitta_NK : NK ;
+fun pintamuokkaus_NK : NK ;
+fun pintamuoti_NK : NK ;
+fun pintanaarmu_NK : NK ;
+fun pintanahka_NK : NK ;
+fun pintapelastaja_NK : NK ;
+fun pintapuoli_NK : NK ;
+fun pintapuolinen_AK : AK ;
+fun pintapuu_NK : NK ;
+fun pintapyo'rio'_NK : NK ;
+fun pintarakenne_NK : NK ;
+fun pintaremontti_NK : NK ;
+fun pintarouta_NK : NK ;
+fun pintasilaus_NK : NK ;
+fun pintasolukko_NK : NK ;
+fun pintatieto_NK : NK ;
+fun pintavesi_NK : NK ;
+fun pintavika_NK : NK ;
+fun pintavirta_NK : NK ;
+fun pintava're_NK : NK ;
+fun pioneerihenki_NK : NK ;
+fun pioneerikomppania_NK : NK ;
+fun pioneerityo'_NK : NK ;
+fun piparjuurikastike_NK : NK ;
+fun piparjuuriliha_NK : NK ;
+fun piparkakkumuotti_NK : NK ;
+fun piparkakkutaikina_NK : NK ;
+fun piparkakkutalo_NK : NK ;
+fun piparminttukaramelli_NK : NK ;
+fun piparminttupastilli_NK : NK ;
+fun piparminttutee_NK : NK ;
+fun piparminttuo'ljy_NK : NK ;
+fun pipolakki_NK : NK ;
+fun pippurijuusto_NK : NK ;
+fun pippurikasvi_NK : NK ;
+fun pippurimylly_NK : NK ;
+fun pippuripihvi_NK : NK ;
+fun piraattikasetti_NK : NK ;
+fun piraattilevy_NK : NK ;
+fun piraattiobjektiivi_NK : NK ;
+fun piraattipainos_NK : NK ;
+fun piraattia'a'nite_NK : NK ;
+fun piristysaine_NK : NK ;
+fun piristyspilleri_NK : NK ;
+fun piristysruiske_NK : NK ;
+fun pirssiauto_NK : NK ;
+fun pirttihirmu_NK : NK ;
+fun pirttikalusto_NK : NK ;
+fun pirttiviljelys_NK : NK ;
+fun pirtukanisteri_NK : NK ;
+fun pirtupullo_NK : NK ;
+fun pirturesepti_NK : NK ;
+fun pirtutrokari_NK : NK ;
+fun pirulainen_NK : NK ;
+fun pirulauta_NK : NK ;
+fun piruparka_NK : NK ;
+fun pisamakasvoinen_NK : NK ;
+fun pisamanaama_NK : NK ;
+fun pisaratartunta_NK : NK ;
+fun pisiha'ta'_NK : NK ;
+fun pissaha'ta'_NK : NK ;
+fun pissapoika_NK : NK ;
+fun pistaasimanteli_NK : NK ;
+fun pistaasipa'hkina'_NK : NK ;
+fun pisteajo_NK : NK ;
+fun pistearvo_NK : NK ;
+fun pistehitsaus_NK : NK ;
+fun pisteha'vio'_NK : NK ;
+fun pistekirja_NK : NK ;
+fun pistekirjoitus_NK : NK ;
+fun pistekirjoituskone_NK : NK ;
+fun pistelakko_NK : NK ;
+fun pistelasku_NK : NK ;
+fun pisteluku_NK : NK ;
+fun pistemaalaus_NK : NK ;
+fun pistemies_NK : NK ;
+fun pistemusiikki_NK : NK ;
+fun pistemutaatio_NK : NK ;
+fun pistema'a'ra'_NK : NK ;
+fun pistepuikko_NK : NK ;
+fun pistepo'rssi_NK : NK ;
+fun pistesaalis_NK : NK ;
+fun pistesija_NK : NK ;
+fun pistesilma'_NK : NK ;
+fun pistetalo_NK : NK ;
+fun pistetaulukko_NK : NK ;
+fun pistetila_NK : NK ;
+fun pistetilanne_NK : NK ;
+fun pistetili_NK : NK ;
+fun pistetuomari_NK : NK ;
+fun pisteviiva_NK : NK ;
+fun pistevoitto_NK : NK ;
+fun pistohyo'kka'ys_NK : NK ;
+fun pistokoe_NK : NK ;
+fun pistokytkin_NK : NK ;
+fun pistoliekki_NK : NK ;
+fun pistooliammunta_NK : NK ;
+fun pistoolikotelo_NK : NK ;
+fun pistoolitutka_NK : NK ;
+fun pistopuhe_NK : NK ;
+fun pistoraide_NK : NK ;
+fun pistorasia_NK : NK ;
+fun pistosaha_NK : NK ;
+fun pistosyo'tto'_NK : NK ;
+fun pistotulppa_NK : NK ;
+fun pitka'aaltoinen_NK : NK ;
+fun pitka'aikainen_NK : NK ;
+fun pitka'aikaisuus_NK : NK ;
+fun pitka'hihainen_NK : NK ;
+fun pitka'hiuksinen_NK : NK ;
+fun pitka'ika'inen_NK : NK ;
+fun pitka'ika'isyys_NK : NK ;
+fun pitka'jalkainen_NK : NK ;
+fun pitka'jyva'inen_NK : NK ;
+fun pitka'ja'nteinen_AK : AK ;
+fun pitka'ja'nteisyys_NK : NK ;
+fun pitka'karvainen_NK : NK ;
+fun pitka'kasvoinen_NK : NK ;
+fun pitka'kasvuinen_NK : NK ;
+fun pitka'kaulainen_NK : NK ;
+fun pitka'kestoinen_NK : NK ;
+fun pitka'kyntinen_NK : NK ;
+fun pitka'matkainen_NK : NK ;
+fun pitka'mielisyys_NK : NK ;
+fun pitka'nokkainen_NK : NK ;
+fun pitka'na'ko'inen_NK : NK ;
+fun pitka'na'ko'isyys_NK : NK ;
+fun pitka'partainen_NK : NK ;
+fun pitka'piima'inen_AK : AK ;
+fun pitka'piima'isyys_NK : NK ;
+fun pitka'sa'a'rinen_NK : NK ;
+fun pitka'tukkainen_NK : NK ;
+fun pitka'vartinen_NK : NK ;
+fun pitka'vihainen_NK : NK ;
+fun pitokokki_NK : NK ;
+fun pitokytkin_NK : NK ;
+fun pitopaikka_NK : NK ;
+fun pitopalvelu_NK : NK ;
+fun pitopohja_NK : NK ;
+fun pitopo'yta'_NK : NK ;
+fun pitoruoka_NK : NK ;
+fun pitoteippi_NK : NK ;
+fun pitovaikeus_NK : NK ;
+fun pitovoide_NK : NK ;
+fun pitsamauste_NK : NK ;
+fun pitsamyyma'la'_NK : NK ;
+fun pitsapaikka_NK : NK ;
+fun pitsaravintola_NK : NK ;
+fun pitsataksi_NK : NK ;
+fun pitsihuivi_NK : NK ;
+fun pitsihuvila_NK : NK ;
+fun pitsikaulus_NK : NK ;
+fun pitsikoriste_NK : NK ;
+fun pitsikuvio_NK : NK ;
+fun pitsikuvioinen_NK : NK ;
+fun pitsilehti_NK : NK ;
+fun pitsiliina_NK : NK ;
+fun pitsimyssy_NK : NK ;
+fun pitsineule_NK : NK ;
+fun pitsipeite_NK : NK ;
+fun pitsipeitto_NK : NK ;
+fun pitsireunainen_NK : NK ;
+fun pitsiro'yhelo'_NK : NK ;
+fun pitsiverho_NK : NK ;
+fun pituusaste_NK : NK ;
+fun pituusero_NK : NK ;
+fun pituushyppy_NK : NK ;
+fun pituushyppykilpailu_NK : NK ;
+fun pituushyppa'a'ja'_NK : NK ;
+fun pituuskasvu_NK : NK ;
+fun pituusleikkaus_NK : NK ;
+fun pituusmitta_NK : NK ;
+fun pituuspiiri_NK : NK ;
+fun pituussuunta_NK : NK ;
+fun pituussuuntainen_NK : NK ;
+fun pituusyksikko'_NK : NK ;
+fun pita'ja'ruoka_NK : NK ;
+fun planeettapyo'ra'sto'_NK : NK ;
+fun plasebovaikutus_NK : NK ;
+fun plasmafysiikka_NK : NK ;
+fun plasmasolu_NK : NK ;
+fun plastiikkakirurgia_NK : NK ;
+fun platinakettu_NK : NK ;
+fun platinakoru_NK : NK ;
+fun platinalevy_NK : NK ;
+fun pleenumiesitelma'_NK : NK ;
+fun plusaste_NK : NK ;
+fun plusmerkki_NK : NK ;
+fun plusmerkkinen_NK : NK ;
+fun plusnapa_NK : NK ;
+fun pluspiste_NK : NK ;
+fun pluspuoli_NK : NK ;
+fun pluspuu_NK : NK ;
+fun plyysikangas_NK : NK ;
+fun plyysimatto_NK : NK ;
+fun plyysisohva_NK : NK ;
+fun pohjaela'in_NK : NK ;
+fun pohjahiekka_NK : NK ;
+fun pohjahiiva_NK : NK ;
+--? fun pohjahiivaolut_NK : NK ;
+fun pohjahinta_NK : NK ;
+fun pohjaja'a'_NK : NK ;
+fun pohjakala_NK : NK ;
+fun pohjakerros_NK : NK ;
+fun pohjakosketus_NK : NK ;
+fun pohjakoulutus_NK : NK ;
+fun pohjakudos_NK : NK ;
+fun pohjakunto_NK : NK ;
+fun pohjalainen_NK : NK ;
+fun pohjalasti_NK : NK ;
+fun pohjalauta_NK : NK ;
+fun pohjalevy_NK : NK ;
+fun pohjalieju_NK : NK ;
+fun pohjalukema_NK : NK ;
+fun pohjamaa_NK : NK ;
+fun pohjamaalaus_NK : NK ;
+fun pohjamaali_NK : NK ;
+fun pohjamuta_NK : NK ;
+fun pohjanoteeraus_NK : NK ;
+fun pohjanuotta_NK : NK ;
+fun pohjaompelu_NK : NK ;
+fun pohjaonginta_NK : NK ;
+fun pohjaonki_NK : NK ;
+fun pohjapaine_NK : NK ;
+fun pohjapalkka_NK : NK ;
+fun pohjapaperi_NK : NK ;
+fun pohjapiima'_NK : NK ;
+fun pohjapiirros_NK : NK ;
+fun pohjapiirustus_NK : NK ;
+fun pohjarakenne_NK : NK ;
+fun pohjaratkaisu_NK : NK ;
+fun pohjasakka_NK : NK ;
+fun pohjasa'vel_NK : NK ;
+fun pohjasa'vy_NK : NK ;
+fun pohjatuuli_NK : NK ;
+fun pohjaverkko_NK : NK ;
+fun pohjavesi_NK : NK ;
+fun pohjavilla_NK : NK ;
+fun pohjavire_NK : NK ;
+fun pohjavirta_NK : NK ;
+fun pohjavirtaus_NK : NK ;
+fun pohjavoide_NK : NK ;
+fun pohjava'ri_NK : NK ;
+fun pohjeapu_NK : NK ;
+fun pohjelihas_NK : NK ;
+fun pohjepituinen_NK : NK ;
+fun pohjoismaalainen_NK : NK ;
+fun pohjushedelma'_NK : NK ;
+fun pohjusmarja_NK : NK ;
+fun poikaika'_NK : NK ;
+fun poikajoukko_NK : NK ;
+fun poikakalenteri_NK : NK ;
+fun poikakaveri_NK : NK ;
+fun poikakerho_NK : NK ;
+fun poikakerholainen_NK : NK ;
+fun poikakirja_NK : NK ;
+fun poikakissa_NK : NK ;
+fun poikakoira_NK : NK ;
+fun poikakoti_NK : NK ;
+fun poikakoulu_NK : NK ;
+fun poikakuoro_NK : NK ;
+fun poikalapsi_NK : NK ;
+fun poikaluokka_NK : NK ;
+fun poikamainen_AK : AK ;
+fun poikamies_NK : NK ;
+fun poikamiesasunto_NK : NK ;
+fun poikamiesela'ma'_NK : NK ;
+fun poikamiestytto'_NK : NK ;
+fun poikanukke_NK : NK ;
+fun poikanulikka_NK : NK ;
+fun poikaoppilas_NK : NK ;
+fun poikaparka_NK : NK ;
+fun poikapuoli_NK : NK ;
+fun poikarakkaus_NK : NK ;
+fun poikaraukka_NK : NK ;
+fun poikasakki_NK : NK ;
+fun poikaseura_NK : NK ;
+fun poikatukka_NK : NK ;
+fun poikatytto'_NK : NK ;
+fun poikavauva_NK : NK ;
+fun poikaviikari_NK : NK ;
+fun poikavuosi_NK : NK ;
+fun poikaysta'va'_NK : NK ;
+fun poikaa'a'ni_NK : NK ;
+fun poikkeusasema_NK : NK ;
+fun poikkeusihminen_NK : NK ;
+fun poikkeusilmio'_NK : NK ;
+fun poikkeusja'rjestely_NK : NK ;
+fun poikkeuslaki_NK : NK ;
+fun poikkeuslupa_NK : NK ;
+fun poikkeustapaus_NK : NK ;
+fun poikkeustila_NK : NK ;
+fun poikkeustoimi_NK : NK ;
+fun poikkeusyksilo'_NK : NK ;
+fun poikkihirsi_NK : NK ;
+fun poikkihuilu_NK : NK ;
+fun poikkijuova_NK : NK ;
+fun poikkijuovainen_NK : NK ;
+fun poikkikatu_NK : NK ;
+fun poikkika'yta'va'_NK : NK ;
+fun poikkilaiva_NK : NK ;
+fun poikkilakana_NK : NK ;
+fun poikkilankku_NK : NK ;
+fun poikkileikkaus_NK : NK ;
+fun poikkileikkauspinta_NK : NK ;
+fun poikkiliikenne_NK : NK ;
+fun poikkinainen_NK : NK ;
+fun poikkipiena_NK : NK ;
+fun poikkipuola_NK : NK ;
+fun poikkipuolinen_NK : NK ;
+fun poikkipuu_NK : NK ;
+fun poikkiraita_NK : NK ;
+fun poikkiraitainen_NK : NK ;
+fun poikkirata_NK : NK ;
+fun poikkisuunta_NK : NK ;
+fun poikkisyy_NK : NK ;
+fun poikkiviiva_NK : NK ;
+fun poikuusaikainen_NK : NK ;
+fun poimintamuisti_NK : NK ;
+fun poimulanka_NK : NK ;
+fun poimulehti_NK : NK ;
+fun poimutuspisto_NK : NK ;
+fun poimuvuori_NK : NK ;
+fun poimuvuoristo_NK : NK ;
+fun poisja'a'nti_NK : NK ;
+fun poiskuljetus_NK : NK ;
+fun poisla'hto'_NK : NK ;
+fun poismennyt_NK : NK ;
+fun poismeno_NK : NK ;
+fun poispano_NK : NK ;
+fun poispa'a'sy_NK : NK ;
+fun poissaoleva_NK : NK ;
+fun poissaolo_NK : NK ;
+fun poissaoloaika_NK : NK ;
+fun poissaolovihko_NK : NK ;
+fun poistoilma_NK : NK ;
+fun poistoputki_NK : NK ;
+fun poistotahti_NK : NK ;
+fun poistovoima_NK : NK ;
+fun poistuma_NK : NK ;
+fun pokasaha_NK : NK ;
+fun pokerinaama_NK : NK ;
+fun pokerinaamainen_NK : NK ;
+fun polakoukku_NK : NK ;
+fun polarisaatiosuodatin_NK : NK ;
+fun poliisi_NK : NK ;
+fun poliisiasema_NK : NK ;
+fun poliisiasia_NK : NK ;
+fun poliisiauto_NK : NK ;
+fun poliisihallinto_NK : NK ;
+fun poliisija'rjestys_NK : NK ;
+fun poliisikamari_NK : NK ;
+fun poliisiketju_NK : NK ;
+fun poliisikoira_NK : NK ;
+fun poliisikunta_NK : NK ;
+fun poliisikuulustelu_NK : NK ;
+fun poliisilaitos_NK : NK ;
+fun poliisimerkki_NK : NK ;
+fun poliisimestari_NK : NK ;
+fun poliisimies_NK : NK ;
+fun poliisineuvos_NK : NK ;
+fun poliisipartio_NK : NK ;
+fun poliisipiiri_NK : NK ;
+fun poliisitarkastaja_NK : NK ;
+fun poliisitiedotus_NK : NK ;
+fun poliisitoimi_NK : NK ;
+fun poliisitutkinta_NK : NK ;
+fun poliisivaltio_NK : NK ;
+fun poliisivalvonta_NK : NK ;
+fun poliisivankila_NK : NK ;
+fun poliisivartio_NK : NK ;
+fun poliisivoima_NK : NK ;
+fun polikliininen_AK : AK ;
+fun poliklinikka_NK : NK ;
+fun poliorokote_NK : NK ;
+fun poliorokotus_NK : NK ;
+fun poliovirus_NK : NK ;
+fun politrukki_NK : NK ;
+fun polkkatukka_NK : NK ;
+fun polkkatukkainen_NK : NK ;
+fun polkuantura_NK : NK ;
+fun polkuauto_NK : NK ;
+fun polkuhinta_NK : NK ;
+fun polkumiina_NK : NK ;
+fun polkumyynti_NK : NK ;
+fun polkupyo'ra'_NK : NK ;
+fun polkupyo'ra'ilija'_NK : NK ;
+fun polkupyo'ra'ily_NK : NK ;
+fun polkupyo'ra'korjaamo_NK : NK ;
+fun polkuvene_NK : NK ;
+fun poltinkarva_NK : NK ;
+fun poltinmerkki_NK : NK ;
+fun poltinrauta_NK : NK ;
+fun polttoaine_NK : NK ;
+fun polttoainemittari_NK : NK ;
+fun polttoainesa'ilio'_NK : NK ;
+fun polttohautaus_NK : NK ;
+fun polttoja'te_NK : NK ;
+fun polttokaasu_NK : NK ;
+fun polttokenno_NK : NK ;
+fun polttokivi_NK : NK ;
+fun polttolakka_NK : NK ;
+fun polttolakkaus_NK : NK ;
+fun polttolasi_NK : NK ;
+fun polttoleikkaus_NK : NK ;
+fun polttolinja_NK : NK ;
+fun polttomaalaus_NK : NK ;
+fun polttomaali_NK : NK ;
+fun polttomerkki_NK : NK ;
+fun polttomoottori_NK : NK ;
+fun polttoneste_NK : NK ;
+fun polttopiste_NK : NK ;
+fun polttopullo_NK : NK ;
+fun polttopuu_NK : NK ;
+fun polttorauta_NK : NK ;
+fun polttorovio_NK : NK ;
+fun polttoturve_NK : NK ;
+fun polttouhri_NK : NK ;
+fun polttouuni_NK : NK ;
+fun polttova'li_NK : NK ;
+fun polttoo'ljy_NK : NK ;
+fun polvekepisto_NK : NK ;
+fun polviasento_NK : NK ;
+fun polviheijaste_NK : NK ;
+--? fun polvihousut_NK : NK ;
+fun polvija'nne_NK : NK ;
+fun polvija'nneheijaste_NK : NK ;
+fun polvilumpio_NK : NK ;
+fun polvinivel_NK : NK ;
+fun polvipituinen_NK : NK ;
+fun polvipituus_NK : NK ;
+fun polvipussi_NK : NK ;
+fun polvirefleksi_NK : NK ;
+fun polviriipunta_NK : NK ;
+fun polvirukous_NK : NK ;
+fun polviseisonta_NK : NK ;
+fun polvisukka_NK : NK ;
+fun polvisuojus_NK : NK ;
+fun polvitaive_NK : NK ;
+fun polvitila_NK : NK ;
+fun polvivamma_NK : NK ;
+fun polyamidikuitu_NK : NK ;
+fun polyesterikuitu_NK : NK ;
+fun polyesterimuovi_NK : NK ;
+fun pomeranssipuu_NK : NK ;
+fun pomeranssiviina_NK : NK ;
+fun pommihyo'kka'ys_NK : NK ;
+fun pommikoira_NK : NK ;
+fun pommikone_NK : NK ;
+fun pommira'ja'hdys_NK : NK ;
+fun pommisuoja_NK : NK ;
+fun pommituskone_NK : NK ;
+fun pommituslento_NK : NK ;
+fun pomomies_NK : NK ;
+fun pomppulyo'nti_NK : NK ;
+fun pomsisidos_NK : NK ;
+fun poninha'nta'kampaus_NK : NK ;
+fun ponnahduslauta_NK : NK ;
+fun ponnahduslautahyppy_NK : NK ;
+fun ponnistuslankku_NK : NK ;
+fun ponnistuslauta_NK : NK ;
+fun ponnistusvaihe_NK : NK ;
+fun ponnistusvoima_NK : NK ;
+fun ponsiehdotus_NK : NK ;
+fun ponsilause_NK : NK ;
+fun ponsilauselma_NK : NK ;
+fun pontikkapullo_NK : NK ;
+fun pontikkatehdas_NK : NK ;
+fun ponttilauta_NK : NK ;
+fun ponttiliitos_NK : NK ;
+fun ponttonisilta_NK : NK ;
+fun poolokaulus_NK : NK ;
+fun poolopaita_NK : NK ;
+fun poolopusero_NK : NK ;
+fun popidoli_NK : NK ;
+fun popkulttuuri_NK : NK ;
+fun poplari_NK : NK ;
+fun poplevy_NK : NK ;
+fun popliinitakki_NK : NK ;
+fun popmusiikki_NK : NK ;
+fun popmuusikko_NK : NK ;
+fun poppakonsti_NK : NK ;
+fun poppamies_NK : NK ;
+fun poppari_NK : NK ;
+fun poppeli_NK : NK ;
+fun poppelikuja_NK : NK ;
+fun poptaide_NK : NK ;
+fun poptaiteilija_NK : NK ;
+fun popula_NK : NK ;
+fun populaarikulttuuri_NK : NK ;
+fun populaarimusiikki_NK : NK ;
+fun popyhtye_NK : NK ;
+fun porakaivo_NK : NK ;
+fun porakone_NK : NK ;
+fun porapistia'inen_NK : NK ;
+fun porausaukko_NK : NK ;
+fun porauslautta_NK : NK ;
+fun porausreika'_NK : NK ;
+fun poraustorni_NK : NK ;
+fun poreallas_NK : NK ;
+fun poreamme_NK : NK ;
+fun porekylpy_NK : NK ;
+fun poretabletti_NK : NK ;
+fun porinaryhma'_NK : NK ;
+fun porkkanakemppi_NK : NK ;
+fun porkkanaka'rpa'nen_NK : NK ;
+fun porkkanalaatikko_NK : NK ;
+fun porkkanamaa_NK : NK ;
+fun porkkanamuhennos_NK : NK ;
+fun porkkanaraaste_NK : NK ;
+fun pornofilmi_NK : NK ;
+fun pornokauppa_NK : NK ;
+fun pornokirja_NK : NK ;
+fun pornolehti_NK : NK ;
+fun pornoluola_NK : NK ;
+fun pornota'hti_NK : NK ;
+fun pornovideo_NK : NK ;
+fun poroaita_NK : NK ;
+fun poroaitaus_NK : NK ;
+fun poroelo_NK : NK ;
+fun poroerotus_NK : NK ;
+fun poroha'rka'_NK : NK ;
+fun poroisa'nta'_NK : NK ;
+fun porokanta_NK : NK ;
+fun porokarja_NK : NK ;
+fun porokoira_NK : NK ;
+fun porokolari_NK : NK ;
+fun porolauma_NK : NK ;
+fun poromerkki_NK : NK ;
+fun poromies_NK : NK ;
+fun poronhoitoalue_NK : NK ;
+fun poronhoitopiiri_NK : NK ;
+fun poropeukalo_NK : NK ;
+fun poroporvari_NK : NK ;
+fun pororaito_NK : NK ;
+fun pororeki_NK : NK ;
+fun porotalous_NK : NK ;
+fun porotila_NK : NK ;
+fun porotokka_NK : NK ;
+fun porovahinko_NK : NK ;
+fun porovaljakko_NK : NK ;
+fun porrasaskelma_NK : NK ;
+fun porraselementti_NK : NK ;
+fun porrashissi_NK : NK ;
+fun porrashuone_NK : NK ;
+fun porraskaide_NK : NK ;
+fun porraskivi_NK : NK ;
+fun porraska'yta'va'_NK : NK ;
+fun porraspera'_NK : NK ;
+fun porraspera'inen_NK : NK ;
+fun porraspa'a'ty_NK : NK ;
+fun porrassyo'ksy_NK : NK ;
+fun porrastasanne_NK : NK ;
+fun porrasteinen_AK : AK ;
+fun porrasvalo_NK : NK ;
+fun porsaskarsina_NK : NK ;
+fun porsasmainen_AK : AK ;
+fun portaalinosturi_NK : NK ;
+fun portsariraha_NK : NK ;
+fun porttiholvi_NK : NK ;
+fun porttikielto_NK : NK ;
+fun porttikonki_NK : NK ;
+fun porttika'yta'va'_NK : NK ;
+fun porttilaskimo_NK : NK ;
+fun porttivahti_NK : NK ;
+fun portugalilainen_NK : NK ;
+fun porvaripuolue_NK : NK ;
+fun positiivikuva_NK : NK ;
+fun poskihammas_NK : NK ;
+fun poskilihas_NK : NK ;
+fun poskiluu_NK : NK ;
+fun poskiontelo_NK : NK ;
+fun poskiparta_NK : NK ;
+fun poskipuna_NK : NK ;
+fun poskipa'a'_NK : NK ;
+fun poskisolisti_NK : NK ;
+fun poskisuudelma_NK : NK ;
+fun poskivalssi_NK : NK ;
+fun posliiniastia_NK : NK ;
+fun posliiniastiasto_NK : NK ;
+fun posliinikauppa_NK : NK ;
+fun posliinikukka_NK : NK ;
+fun posliinikuppi_NK : NK ;
+fun posliinilaatta_NK : NK ;
+fun posliinilautanen_NK : NK ;
+fun posliinimaalaus_NK : NK ;
+fun posliininukke_NK : NK ;
+fun posliinisavi_NK : NK ;
+fun posliinitehdas_NK : NK ;
+fun posteriesitelma'_NK : NK ;
+fun postiauto_NK : NK ;
+fun postiennakko_NK : NK ;
+fun postiennakkola'hetys_NK : NK ;
+fun postikeskus_NK : NK ;
+fun postikirje_NK : NK ;
+fun postikonttori_NK : NK ;
+fun postikortti_NK : NK ;
+fun postikysely_NK : NK ;
+fun postilaatikko_NK : NK ;
+fun postilaatikkoyhtio'_NK : NK ;
+fun postilaitos_NK : NK ;
+fun postileima_NK : NK ;
+fun postilento_NK : NK ;
+fun postiliikenne_NK : NK ;
+fun postilokerikko_NK : NK ;
+fun postilokero_NK : NK ;
+fun postiluukku_NK : NK ;
+fun postila'hetys_NK : NK ;
+fun postimainonta_NK : NK ;
+fun postimaksu_NK : NK ;
+fun postimaksuautomaatti_NK : NK ;
+fun postimaksukone_NK : NK ;
+fun postimaksuleima_NK : NK ;
+fun postimaksulipuke_NK : NK ;
+fun postimerkki_NK : NK ;
+fun postimerkkiautomaatti_NK : NK ;
+fun postimerkkikansio_NK : NK ;
+fun postimerkkikokoelma_NK : NK ;
+fun postimerkkina'yttely_NK : NK ;
+fun postimestari_NK : NK ;
+fun postimies_NK : NK ;
+fun postimyynti_NK : NK ;
+fun postimyyntiliike_NK : NK ;
+fun postimyyntiluettelo_NK : NK ;
+fun postinjakeluverkko_NK : NK ;
+fun postinumero_NK : NK ;
+fun postiosoite_NK : NK ;
+fun postiosoitus_NK : NK ;
+fun postipaketti_NK : NK ;
+fun postipalvelu_NK : NK ;
+fun postipalveluauto_NK : NK ;
+fun postipalveluvene_NK : NK ;
+fun postiryo'sto'_NK : NK ;
+fun postisiirto_NK : NK ;
+fun postitoimi_NK : NK ;
+fun postitoimipaikka_NK : NK ;
+fun postitoimisto_NK : NK ;
+fun postituslista_NK : NK ;
+fun postivaunu_NK : NK ;
+fun postivirkailija_NK : NK ;
+fun postia'a'nestys_NK : NK ;
+fun postia'a'ni_NK : NK ;
+fun potenssila'a'ke_NK : NK ;
+fun potentiaalienergia_NK : NK ;
+fun potentiaaliero_NK : NK ;
+fun potilashuone_NK : NK ;
+fun potilaspaikka_NK : NK ;
+fun potilasvahinko_NK : NK ;
+--? fun potkuhousut_NK : NK ;
+fun potkukelkka_NK : NK ;
+fun potkulauta_NK : NK ;
+fun potkupallo_NK : NK ;
+fun potkupuku_NK : NK ;
+fun potkurikone_NK : NK ;
+fun potkuriturbiini_NK : NK ;
+fun potkuriturbiinikone_NK : NK ;
+fun pottatuoli_NK : NK ;
+fun pottitaimi_NK : NK ;
+fun pottumainen_AK : AK ;
+fun pottunokka_NK : NK ;
+fun poutailma_NK : NK ;
+fun poutajakso_NK : NK ;
+fun poutapilvi_NK : NK ;
+fun poutapa'iva'_NK : NK ;
+fun poutasa'a'_NK : NK ;
+fun poutataivas_NK : NK ;
+fun povikuningatar_NK : NK ;
+fun povitasku_NK : NK ;
+fun predikaattiosa_NK : NK ;
+fun preeriasusi_NK : NK ;
+fun prelimina'a'rikoe_NK : NK ;
+fun presidenttiehdokas_NK : NK ;
+fun presidenttikausi_NK : NK ;
+fun presidenttipari_NK : NK ;
+fun presidenttipeli_NK : NK ;
+fun pressikeskus_NK : NK ;
+fun pressikortti_NK : NK ;
+fun preussilainen_NK : NK ;
+fun priimakunto_NK : NK ;
+fun priimalaatu_NK : NK ;
+fun priimatavara_NK : NK ;
+fun priimusmaisteri_NK : NK ;
+fun priimustohtori_NK : NK ;
+fun prikaatikenraali_NK : NK ;
+fun primaariaineisto_NK : NK ;
+fun primaarikasvain_NK : NK ;
+fun primaarika'a'mi_NK : NK ;
+fun primaarila'hde_NK : NK ;
+fun prinsessalinja_NK : NK ;
+fun prinsessalinjainen_NK : NK ;
+fun prinssimakkara_NK : NK ;
+fun prinssipuoliso_NK : NK ;
+fun printtiliuska_NK : NK ;
+fun prismakiikari_NK : NK ;
+fun profiilikuva_NK : NK ;
+fun profiililista_NK : NK ;
+fun profiilitera's_NK : NK ;
+fun projektimenetelma'_NK : NK ;
+fun projektiokuva_NK : NK ;
+fun projektiopetus_NK : NK ;
+fun projektiopinta_NK : NK ;
+fun projektiotaso_NK : NK ;
+fun projektipa'a'llikko'_NK : NK ;
+fun projektiryhma'_NK : NK ;
+fun projektisihteeri_NK : NK ;
+fun projektivienti_NK : NK ;
+fun prokuraattori_NK : NK ;
+fun prokuura_NK : NK ;
+fun prokuuravaltuutus_NK : NK ;
+fun promenadikonsertti_NK : NK ;
+fun promillemittari_NK : NK ;
+fun promoottori_NK : NK ;
+fun pronomini_NK : NK ;
+fun pronssijauhe_NK : NK ;
+fun pronssijoukkue_NK : NK ;
+fun pronssikausi_NK : NK ;
+fun pronssikautinen_NK : NK ;
+fun pronssikirves_NK : NK ;
+fun pronssikoru_NK : NK ;
+fun pronssikulttuuri_NK : NK ;
+fun pronssilakka_NK : NK ;
+fun pronssimaali_NK : NK ;
+fun pronssimies_NK : NK ;
+fun pronssimitali_NK : NK ;
+fun pronssimitalimies_NK : NK ;
+fun pronssimitalisti_NK : NK ;
+fun pronssiottelu_NK : NK ;
+fun pronssipatsas_NK : NK ;
+fun pronssisolki_NK : NK ;
+fun pronssivalimo_NK : NK ;
+fun pronssivalos_NK : NK ;
+fun pronssiveistos_NK : NK ;
+fun pronssiva'ri_NK : NK ;
+fun proosa_NK : NK ;
+fun proosaeepos_NK : NK ;
+fun proosakertomus_NK : NK ;
+fun proosakirjailija_NK : NK ;
+fun proosaka'a'nno's_NK : NK ;
+fun proosallinen_AK : AK ;
+fun proosallisuus_NK : NK ;
+fun proosamuoto_NK : NK ;
+fun proosamuotoinen_NK : NK ;
+fun proosaruno_NK : NK ;
+fun proosateos_NK : NK ;
+fun propagandakirjoitus_NK : NK ;
+fun propagandakuva_NK : NK ;
+fun propagandalehti_NK : NK ;
+fun propagandalehtinen_NK : NK ;
+fun propagandapuhe_NK : NK ;
+fun propagandasota_NK : NK ;
+fun propositio_NK : NK ;
+fun propsipino_NK : NK ;
+fun propsipuu_NK : NK ;
+fun proseminaari_NK : NK ;
+fun prosentti_NK : NK ;
+fun prosenttikorotus_NK : NK ;
+fun prosenttilasku_NK : NK ;
+fun prosenttiliike_NK : NK ;
+fun prosenttilinja_NK : NK ;
+fun prosenttiluku_NK : NK ;
+fun prosenttimerkki_NK : NK ;
+fun prosenttima'a'ra'inen_NK : NK ;
+fun prosenttinen_AK : AK ;
+fun prosenttipalkka_NK : NK ;
+fun prosenttipalkkio_NK : NK ;
+fun prosenttiyksikko'_NK : NK ;
+fun prosessioikeus_NK : NK ;
+fun prosessiteollisuus_NK : NK ;
+fun proteesi_NK : NK ;
+fun proteiini_NK : NK ;
+fun protesti_NK : NK ;
+fun protestilaulaja_NK : NK ;
+fun protestilaulu_NK : NK ;
+fun protestiliike_NK : NK ;
+fun protestilista_NK : NK ;
+fun protestipuolue_NK : NK ;
+fun protestitodistus_NK : NK ;
+fun protoplasma_NK : NK ;
+fun prototyyppi_NK : NK ;
+fun provinssi_NK : NK ;
+fun provisio_NK : NK ;
+fun provisiopalkka_NK : NK ;
+fun provisiopalkkio_NK : NK ;
+fun provitamiini_NK : NK ;
+--? fun pra'ssihousut_NK : NK ;
+fun pra'ssipuolustus_NK : NK ;
+fun pra'ssa'yslaite_NK : NK ;
+fun psalmilaulu_NK : NK ;
+fun psoriaasi_NK : NK ;
+fun psykologisointi_NK : NK ;
+fun psyykepotilas_NK : NK ;
+fun puberteettikoe_NK : NK ;
+fun pudotuskilpailu_NK : NK ;
+fun pudotuspeli_NK : NK ;
+fun pudotusvasara_NK : NK ;
+fun puhallinkvintetti_NK : NK ;
+fun puhallinorkesteri_NK : NK ;
+fun puhallinyhtye_NK : NK ;
+fun puhalluselvytys_NK : NK ;
+fun puhallusilma_NK : NK ;
+fun puhalluslamppu_NK : NK ;
+fun puhallusputki_NK : NK ;
+fun puhallussoitin_NK : NK ;
+fun puhallustauti_NK : NK ;
+fun puhallusvilla_NK : NK ;
+fun puhdashenkinen_NK : NK ;
+fun puhdaskielinen_NK : NK ;
+fun puhdaskielisyys_NK : NK ;
+fun puhdasmaineinen_NK : NK ;
+fun puhdasmuotoinen_NK : NK ;
+fun puhdasoppinen_NK : NK ;
+fun puhdasoppisuus_NK : NK ;
+fun puhdaspiirteinen_NK : NK ;
+fun puhdasrotuinen_NK : NK ;
+fun puhdassointinen_NK : NK ;
+fun puhdassyda'minen_NK : NK ;
+fun puhdastyylinen_NK : NK ;
+fun puhdasverinen_NK : NK ;
+fun puhdasvetinen_NK : NK ;
+fun puhdetyo'_NK : NK ;
+fun puhdistusaine_NK : NK ;
+fun puhdistusemulsio_NK : NK ;
+fun puhdistushakkuu_NK : NK ;
+fun puhdistusharja_NK : NK ;
+fun puhdistusjauhe_NK : NK ;
+fun puhdistuskaivo_NK : NK ;
+fun puhdistuskasetti_NK : NK ;
+fun puhdistuslaitos_NK : NK ;
+fun puhdistusmaito_NK : NK ;
+fun puhdistusnauha_NK : NK ;
+fun puhdistusneste_NK : NK ;
+fun puhdistuspuikko_NK : NK ;
+fun puhdistusteho_NK : NK ;
+fun puhdistusvoide_NK : NK ;
+fun puheha'irio'_NK : NK ;
+fun puheha'irio'inen_NK : NK ;
+fun puheillepa'a'sy_NK : NK ;
+fun puheilmaisu_NK : NK ;
+fun puhekaveri_NK : NK ;
+fun puhekeskus_NK : NK ;
+fun puhekieli_NK : NK ;
+fun puhekielinen_NK : NK ;
+fun puhekokoelma_NK : NK ;
+fun puhekone_NK : NK ;
+fun puhekumppani_NK : NK ;
+fun puhekuoro_NK : NK ;
+fun puhekupla_NK : NK ;
+fun puhekyky_NK : NK ;
+fun puhekykyinen_NK : NK ;
+fun puhekyvyto'n_NK : NK ;
+fun puhelahja_NK : NK ;
+fun puhelaulu_NK : NK ;
+fun puhelinasentaja_NK : NK ;
+fun puhelinautomaatti_NK : NK ;
+fun puhelingallup_NK : NK ;
+fun puhelinjohto_NK : NK ;
+fun puhelinkaapeli_NK : NK ;
+fun puhelinkeskus_NK : NK ;
+fun puhelinkeskustelu_NK : NK ;
+fun puhelinkioski_NK : NK ;
+fun puhelinkoje_NK : NK ;
+fun puhelinkokous_NK : NK ;
+fun puhelinkone_NK : NK ;
+fun puhelinkoppi_NK : NK ;
+fun puhelinkortti_NK : NK ;
+fun puhelinkuuntelu_NK : NK ;
+fun puhelinkysely_NK : NK ;
+fun puhelinlaitos_NK : NK ;
+fun puhelinlanka_NK : NK ;
+fun puhelinlasku_NK : NK ;
+fun puhelinliikenne_NK : NK ;
+fun puhelinliittyma'_NK : NK ;
+fun puhelinlinja_NK : NK ;
+fun puhelinluettelo_NK : NK ;
+fun puhelinmaksu_NK : NK ;
+fun puhelinmuistio_NK : NK ;
+fun puhelinmyyja'_NK : NK ;
+fun puhelinmyynti_NK : NK ;
+fun puhelinma'a'ra'ys_NK : NK ;
+fun puhelinneuvottelu_NK : NK ;
+fun puhelinnumero_NK : NK ;
+fun puhelinosake_NK : NK ;
+fun puhelinpalvelu_NK : NK ;
+fun puhelinpylva's_NK : NK ;
+fun puhelinpa'ivystys_NK : NK ;
+fun puhelinsalaisuus_NK : NK ;
+fun puhelinsanoma_NK : NK ;
+fun puhelinseksi_NK : NK ;
+fun puhelinsoitto_NK : NK ;
+fun puhelinsuoja_NK : NK ;
+fun puhelintariffi_NK : NK ;
+fun puhelinteknikko_NK : NK ;
+fun puhelinterrori_NK : NK ;
+fun puhelintiedustelu_NK : NK ;
+fun puhelintilaaja_NK : NK ;
+fun puhelintilaus_NK : NK ;
+fun puhelintorvi_NK : NK ;
+fun puhelintytto'_NK : NK ;
+fun puhelinvaihde_NK : NK ;
+fun puhelinvastaaja_NK : NK ;
+fun puhelinverkko_NK : NK ;
+fun puhelinyhdistys_NK : NK ;
+fun puhelinyhteys_NK : NK ;
+fun puhelinyhtio'_NK : NK ;
+fun puhelukortti_NK : NK ;
+fun puhelumaksu_NK : NK ;
+fun puhemelodia_NK : NK ;
+fun puhemiehisto'_NK : NK ;
+fun puhemiehyys_NK : NK ;
+fun puhemies_NK : NK ;
+fun puhemiesneuvosto_NK : NK ;
+fun puhemylly_NK : NK ;
+fun puhenopeus_NK : NK ;
+fun puhenuotti_NK : NK ;
+fun puhena'ytta'mo'_NK : NK ;
+fun puheohjelma_NK : NK ;
+fun puheoikeus_NK : NK ;
+fun puheopettaja_NK : NK ;
+fun puheopetus_NK : NK ;
+fun puheoppi_NK : NK ;
+fun puheposti_NK : NK ;
+fun puheputki_NK : NK ;
+fun puheripuli_NK : NK ;
+fun puherytmi_NK : NK ;
+fun puhetaito_NK : NK ;
+fun puhetapa_NK : NK ;
+fun puhetekniikka_NK : NK ;
+fun puheterapeutti_NK : NK ;
+fun puheterapia_NK : NK ;
+fun puhetilaisuus_NK : NK ;
+fun puhetorvi_NK : NK ;
+fun puhetoveri_NK : NK ;
+fun puhetulva_NK : NK ;
+fun puhetuuli_NK : NK ;
+fun puhetyyli_NK : NK ;
+fun puhetyo'la'inen_NK : NK ;
+fun puhevalta_NK : NK ;
+fun puhevapaus_NK : NK ;
+fun puheviesti_NK : NK ;
+fun puheviestinta'_NK : NK ;
+fun puhevika_NK : NK ;
+fun puhevikainen_NK : NK ;
+fun puheyhteys_NK : NK ;
+fun puhea'a'ni_NK : NK ;
+fun puhkinainen_NK : NK ;
+fun puhtaanapitolaitos_NK : NK ;
+fun puhtausaste_NK : NK ;
+fun puhujakoroke_NK : NK ;
+fun puhujalava_NK : NK ;
+fun puhujapo'ntto'_NK : NK ;
+fun puhuttelusana_NK : NK ;
+fun puhuttelutapa_NK : NK ;
+fun puhveliheina'_NK : NK ;
+fun puhveliha'rka'_NK : NK ;
+fun puhvelilauma_NK : NK ;
+fun puhvelilehma'_NK : NK ;
+fun puhvihiha_NK : NK ;
+fun puhviverho_NK : NK ;
+fun puikkohitsaus_NK : NK ;
+fun puistoalue_NK : NK ;
+fun puistoaukio_NK : NK ;
+fun puistohiihto_NK : NK ;
+fun puistoistutus_NK : NK ;
+fun puistokatu_NK : NK ;
+fun puistokemisti_NK : NK ;
+fun puistokonsertti_NK : NK ;
+fun puistokuja_NK : NK ;
+fun puistoka'yta'va'_NK : NK ;
+fun puistometsa'_NK : NK ;
+fun puistopuu_NK : NK ;
+fun puistopuutarhuri_NK : NK ;
+fun puistotie_NK : NK ;
+fun puistota'ti_NK : NK ;
+fun puistovyo'hyke_NK : NK ;
+fun puitelaki_NK : NK ;
+fun puitesopimus_NK : NK ;
+fun puitetalous_NK : NK ;
+fun pujoliivi_NK : NK ;
+fun pujoparta_NK : NK ;
+fun pujopartainen_NK : NK ;
+fun pujottelurata_NK : NK ;
+fun pujottelusuksi_NK : NK ;
+fun pujotuskippi_NK : NK ;
+fun pukkihyppy_NK : NK ;
+fun pukkimokka_NK : NK ;
+fun pukkinosturi_NK : NK ;
+fun pukuharjoitus_NK : NK ;
+fun pukuhuone_NK : NK ;
+fun pukujuhla_NK : NK ;
+fun pukukaappi_NK : NK ;
+fun pukukangas_NK : NK ;
+fun pukukoppi_NK : NK ;
+fun pukukoru_NK : NK ;
+fun pukulaukku_NK : NK ;
+fun pukuna'ytelma'_NK : NK ;
+fun pukuompelija_NK : NK ;
+fun pukuompelu_NK : NK ;
+fun pukupaita_NK : NK ;
+fun pukupussi_NK : NK ;
+fun pukuraha_NK : NK ;
+fun pukusuoja_NK : NK ;
+fun pukuvuokraamo_NK : NK ;
+fun pulipa'inen_NK : NK ;
+fun pulipa'a'_NK : NK ;
+fun pulituuri_NK : NK ;
+fun puliukko_NK : NK ;
+fun pulkkama'ki_NK : NK ;
+fun pullahiiri_NK : NK ;
+fun pullajalka_NK : NK ;
+fun pullakahvi_NK : NK ;
+fun pullamo'sso'_NK : NK ;
+fun pullapitko_NK : NK ;
+fun pullasorsa_NK : NK ;
+fun pullasuti_NK : NK ;
+fun pullataikina_NK : NK ;
+fun pulleakasvoinen_NK : NK ;
+fun pulleamahainen_NK : NK ;
+fun pulleaposkinen_NK : NK ;
+fun pulleavatsainen_NK : NK ;
+fun pulloharja_NK : NK ;
+fun pullokori_NK : NK ;
+fun pullokurpitsa_NK : NK ;
+fun pullolapsi_NK : NK ;
+fun pullolasi_NK : NK ;
+fun pullola'a'ke_NK : NK ;
+fun pullomaito_NK : NK ;
+fun pulloposki_NK : NK ;
+fun pulloposkinen_NK : NK ;
+fun pulloposti_NK : NK ;
+fun pulloruokinta_NK : NK ;
+fun pullotalo_NK : NK ;
+fun pulloveri_NK : NK ;
+fun pulmakysymys_NK : NK ;
+fun pulmalelu_NK : NK ;
+fun pulmatilanne_NK : NK ;
+fun pulpettikatto_NK : NK ;
+fun pulpettirivi_NK : NK ;
+fun pulttikiinnitys_NK : NK ;
+fun pulttipistooli_NK : NK ;
+fun pumppuasema_NK : NK ;
+fun pumppuhaulikko_NK : NK ;
+fun pumppukaivo_NK : NK ;
+fun pumppukannu_NK : NK ;
+fun pumppupullo_NK : NK ;
+fun pumpulikangas_NK : NK ;
+fun pumpulilanka_NK : NK ;
+fun pumpulimekko_NK : NK ;
+fun pumpulitrikoo_NK : NK ;
+fun pumpulitukko_NK : NK ;
+fun pumpulituppo_NK : NK ;
+fun punaharmaa_NK : NK ;
+fun punahehku_NK : NK ;
+fun punaheltta_NK : NK ;
+fun punaherukkamehu_NK : NK ;
+fun punahohteinen_NK : NK ;
+fun punahohtoinen_NK : NK ;
+fun punahome_NK : NK ;
+fun punahonka_NK : NK ;
+fun punahukka_NK : NK ;
+fun punahuuli_NK : NK ;
+fun punahuulinen_NK : NK ;
+fun punaihoinen_NK : NK ;
+fun punajuurikas_NK : NK ;
+fun punajuurikeitto_NK : NK ;
+fun punajuuripihvi_NK : NK ;
+fun punajuurisalaatti_NK : NK ;
+fun punaja'ka'la'_NK : NK ;
+fun punakaali_NK : NK ;
+fun punakaarti_NK : NK ;
+fun punakaartilainen_NK : NK ;
+fun punakampela_NK : NK ;
+fun punakapina_NK : NK ;
+fun punakasvoinen_NK : NK ;
+fun punakellerta'va'_NK : NK ;
+fun punakellerva'_NK : NK ;
+fun punakeltainen_NK : NK ;
+fun punakettu_NK : NK ;
+fun punakirjava_NK : NK ;
+fun punakkaihoinen_NK : NK ;
+fun punakkakasvoinen_NK : NK ;
+fun punakoiso_NK : NK ;
+fun punakoralli_NK : NK ;
+fun punakuiri_NK : NK ;
+fun punakukkainen_NK : NK ;
+fun punakuorinen_NK : NK ;
+fun punakuvioinen_NK : NK ;
+fun punakylkinen_NK : NK ;
+fun punakyna'_NK : NK ;
+fun punaka'a'pa'_NK : NK ;
+fun punalakkinen_NK : NK ;
+fun punalehti_NK : NK ;
+fun punalehtinen_NK : NK ;
+fun punaleimainen_NK : NK ;
+fun punaleva'_NK : NK ;
+fun punalihainen_NK : NK ;
+fun punalippu_NK : NK ;
+fun punamulta_NK : NK ;
+fun punamultahallitus_NK : NK ;
+fun punamyyra'_NK : NK ;
+fun punanahka_NK : NK ;
+fun punanena'inen_NK : NK ;
+fun punapaita_NK : NK ;
+fun punapaitainen_NK : NK ;
+fun punapeippi_NK : NK ;
+fun punapippuri_NK : NK ;
+fun punaposkinen_NK : NK ;
+fun punapuu_NK : NK ;
+fun punapyo'kki_NK : NK ;
+fun punapa'inen_NK : NK ;
+fun punapa'a'_NK : NK ;
+fun punaraitainen_NK : NK ;
+fun punarinta_NK : NK ;
+fun punaruskea_NK : NK ;
+fun punaruutuinen_NK : NK ;
+fun punasarja_NK : NK ;
+fun punasiirtyma'_NK : NK ;
+fun punasikuri_NK : NK ;
+fun punasilma'inen_NK : NK ;
+fun punasimppu_NK : NK ;
+fun punasipuli_NK : NK ;
+fun punasolu_NK : NK ;
+fun punasolutiiviste_NK : NK ;
+fun punasotka_NK : NK ;
+fun punatakki_NK : NK ;
+fun punatakkinen_NK : NK ;
+fun punatauti_NK : NK ;
+fun punatautinen_NK : NK ;
+fun punatiili_NK : NK ;
+fun punatiilinen_NK : NK ;
+fun punatukka_NK : NK ;
+fun punatukkainen_NK : NK ;
+fun punata'hka'_NK : NK ;
+fun punata'hti_NK : NK ;
+fun punavalkea_NK : NK ;
+fun punavalkoinen_NK : NK ;
+fun punavarpunen_NK : NK ;
+fun punavihrea'_NK : NK ;
+fun punaviini_NK : NK ;
+fun punaviinilasi_NK : NK ;
+fun punaviiva_NK : NK ;
+fun punertavaihoinen_NK : NK ;
+fun punertavatukkainen_NK : NK ;
+fun punkero_NK : NK ;
+fun punkkari_NK : NK ;
+fun punkmusiikki_NK : NK ;
+fun punktioneula_NK : NK ;
+fun punnerrusliike_NK : NK ;
+fun punnitustarkkuus_NK : NK ;
+fun punnitustulos_NK : NK ;
+fun punontatyo'_NK : NK ;
+fun punospisto_NK : NK ;
+fun puntama'a'ra'inen_NK : NK ;
+fun punttisali_NK : NK ;
+fun puolalainen_NK : NK ;
+fun puolapuu_NK : NK ;
+fun puolapuuliike_NK : NK ;
+fun puolestapuhuja_NK : NK ;
+fun puoliaalto_NK : NK ;
+fun puolialaston_NK : NK ;
+fun puoliaskel_NK : NK ;
+fun puoliautomaatti_NK : NK ;
+fun puolihame_NK : NK ;
+fun puolihullu_NK : NK ;
+fun puolihuolimaton_NK : NK ;
+fun puoliho'pero'_NK : NK ;
+fun puolijaloste_NK : NK ;
+fun puolijohde_NK : NK ;
+fun puolijohdetekniikka_NK : NK ;
+fun puolijoukkue_NK : NK ;
+fun puolijulkinen_NK : NK ;
+fun puolijumala_NK : NK ;
+fun puolikaari_NK : NK ;
+fun puolikansi_NK : NK ;
+fun puolikarhu_NK : NK ;
+fun puolikarkea_NK : NK ;
+fun puolikasvuinen_NK : NK ;
+fun puolikenka'_NK : NK ;
+fun puolikerros_NK : NK ;
+fun puolikielinen_NK : NK ;
+fun puolikielisyys_NK : NK ;
+fun puolikiilta'va'_NK : NK ;
+fun puolikiintea'_NK : NK ;
+fun puolikiloinen_NK : NK ;
+fun puolikova_NK : NK ;
+fun puolikuinen_NK : NK ;
+fun puolikuiva_NK : NK ;
+fun puolikuntoinen_NK : NK ;
+fun puolikuntoisuus_NK : NK ;
+--? fun puolikuollut_NK : NK ;
+fun puolikuuro_NK : NK ;
+fun puolikypsa'_NK : NK ;
+fun puolilihava_NK : NK ;
+fun puoliloinen_NK : NK ;
+fun puolimaileri_NK : NK ;
+fun puolimakea_NK : NK ;
+fun puolimatruusi_NK : NK ;
+fun puolimetalli_NK : NK ;
+fun puolima'ta'_NK : NK ;
+fun puolinainen_AK : AK ;
+fun puolinaisuus_NK : NK ;
+fun puolinelson_NK : NK ;
+fun puolinuotti_NK : NK ;
+fun puoliorpo_NK : NK ;
+fun puolipallo_NK : NK ;
+fun puolipeite_NK : NK ;
+fun puolipellava_NK : NK ;
+fun puolipilvinen_NK : NK ;
+fun puolipimea'_NK : NK ;
+fun puolipiste_NK : NK ;
+fun puolipitka'_NK : NK ;
+fun puolipitoinen_NK : NK ;
+fun puolipohja_NK : NK ;
+fun puolipohjaus_NK : NK ;
+fun puolipullo_NK : NK ;
+fun puolipuomi_NK : NK ;
+fun puolipylva's_NK : NK ;
+fun puolipyo'rea'_NK : NK ;
+fun puolipa'iva'apulainen_NK : NK ;
+fun puolipa'iva'inen_NK : NK ;
+fun puolipa'iva'osasto_NK : NK ;
+fun puolipa'iva'piiri_NK : NK ;
+fun puolipa'iva'toimi_NK : NK ;
+fun puolipa'iva'toiminen_NK : NK ;
+fun puolipa'iva'tyo'_NK : NK ;
+fun puoliraaka_NK : NK ;
+fun puoliryhma'_NK : NK ;
+fun puolisalainen_NK : NK ;
+fun puolisatainen_NK : NK ;
+fun puolisokea_NK : NK ;
+fun puolisormikas_NK : NK ;
+fun puolisukeltaja_NK : NK ;
+fun puolisukka_NK : NK ;
+fun puolisukulainen_NK : NK ;
+fun puolisuora_NK : NK ;
+fun puolisuppea_NK : NK ;
+fun puolisuunnikas_NK : NK ;
+fun puolisa'de_NK : NK ;
+fun puolisa'ilyke_NK : NK ;
+fun puolitakki_NK : NK ;
+fun puolitauko_NK : NK ;
+fun puolitekoinen_NK : NK ;
+fun puolitoistavuotias_NK : NK ;
+fun puolitoistavuotinen_NK : NK ;
+fun puolitotuus_NK : NK ;
+fun puolituhantinen_NK : NK ;
+fun puolituhma_NK : NK ;
+fun puolitunti_NK : NK ;
+fun puolituntinen_NK : NK ;
+fun puoliturkki_NK : NK ;
+fun puolituttu_NK : NK ;
+fun puolituumainen_NK : NK ;
+fun puolityhja'_NK : NK ;
+fun puolivalmis_NK : NK ;
+fun puolivalmiste_NK : NK ;
+fun puolivalo_NK : NK ;
+fun puolivarjo_NK : NK ;
+fun puolivarjoisa_NK : NK ;
+fun puoliverho_NK : NK ;
+fun puoliverinen_NK : NK ;
+fun puolivillainen_AK : AK ;
+fun puolivirallinen_NK : NK ;
+fun puolivuotias_NK : NK ;
+fun puolivuotinen_NK : NK ;
+fun puoliva'liera'_NK : NK ;
+fun puoliympyra'_NK : NK ;
+fun puoltolause_NK : NK ;
+fun puolueaktiivi_NK : NK ;
+fun puoluediktatuuri_NK : NK ;
+fun puolueettomuusjulistus_NK : NK ;
+fun puolueettomuuspolitiikka_NK : NK ;
+fun puoluehallinto_NK : NK ;
+fun puoluehallitus_NK : NK ;
+fun puoluejako_NK : NK ;
+fun puoluejohtaja_NK : NK ;
+fun puoluejohto_NK : NK ;
+fun puoluejyra'_NK : NK ;
+fun puoluekanta_NK : NK ;
+fun puoluekantainen_NK : NK ;
+fun puoluekantaisuus_NK : NK ;
+fun puoluekartta_NK : NK ;
+fun puoluekokous_NK : NK ;
+fun puoluekoneisto_NK : NK ;
+fun puoluekuri_NK : NK ;
+fun puoluelainen_NK : NK ;
+fun puoluelaitos_NK : NK ;
+fun puoluelehdisto'_NK : NK ;
+fun puoluelehti_NK : NK ;
+fun puoluemies_NK : NK ;
+fun puolueohjelma_NK : NK ;
+fun puolueosasto_NK : NK ;
+fun puoluepamppu_NK : NK ;
+fun puoluepeli_NK : NK ;
+fun puoluepoliitikko_NK : NK ;
+fun puoluepolitiikka_NK : NK ;
+fun puoluepomo_NK : NK ;
+fun puolueraja_NK : NK ;
+fun puoluerekisteri_NK : NK ;
+fun puolueriita_NK : NK ;
+fun puoluesihteeri_NK : NK ;
+fun puoluetaktiikka_NK : NK ;
+fun puoluetaktinen_NK : NK ;
+fun puoluetausta_NK : NK ;
+fun puoluetoimisto_NK : NK ;
+fun puoluetoimitsija_NK : NK ;
+fun puoluetoveri_NK : NK ;
+fun puoluetuki_NK : NK ;
+fun puolueva'ri_NK : NK ;
+fun puolukkahillo_NK : NK ;
+fun puolukkakiisseli_NK : NK ;
+fun puolukkamehu_NK : NK ;
+fun puolukkametsa'_NK : NK ;
+fun puolukkapuuro_NK : NK ;
+fun puolukkasurvos_NK : NK ;
+fun puolukkatyyppi_NK : NK ;
+fun puolustajapari_NK : NK ;
+fun puolustusalue_NK : NK ;
+fun puolustusase_NK : NK ;
+fun puolustusasema_NK : NK ;
+fun puolustusasenne_NK : NK ;
+fun puolustusbudjetti_NK : NK ;
+fun puolustuskeino_NK : NK ;
+fun puolustusketju_NK : NK ;
+fun puolustuskirjoitus_NK : NK ;
+fun puolustuskyky_NK : NK ;
+fun puolustuskykyinen_NK : NK ;
+fun puolustuskyvyto'n_NK : NK ;
+fun puolustuslaite_NK : NK ;
+fun puolustuslaitos_NK : NK ;
+fun puolustusliitto_NK : NK ;
+fun puolustuslinja_NK : NK ;
+fun puolustusmekanismi_NK : NK ;
+fun puolustusministeri_NK : NK ;
+fun puolustusministerio'_NK : NK ;
+fun puolustusneuvosto_NK : NK ;
+fun puolustusnihilismi_NK : NK ;
+fun puolustusohjus_NK : NK ;
+fun puolustuspeli_NK : NK ;
+fun puolustuspolitiikka_NK : NK ;
+fun puolustuspuhe_NK : NK ;
+fun puolustussota_NK : NK ;
+fun puolustustahto_NK : NK ;
+fun puolustustahtoinen_NK : NK ;
+fun puolustustaistelu_NK : NK ;
+fun puolustustaktiikka_NK : NK ;
+fun puolustusteollisuus_NK : NK ;
+fun puolustustila_NK : NK ;
+fun puolustusvalmis_NK : NK ;
+fun puolustusvalmius_NK : NK ;
+fun puomiliike_NK : NK ;
+fun puominosturi_NK : NK ;
+fun puomivoimistelu_NK : NK ;
+fun pupujussi_NK : NK ;
+fun puputytto'_NK : NK ;
+fun puremalihas_NK : NK ;
+fun purentavika_NK : NK ;
+fun purentavirhe_NK : NK ;
+fun puristelasi_NK : NK ;
+fun puristinkansio_NK : NK ;
+fun puristushitsaus_NK : NK ;
+fun puristuskesta'vyys_NK : NK ;
+fun puristuslujuus_NK : NK ;
+fun puristusmuotti_NK : NK ;
+fun puristuspaine_NK : NK ;
+fun puristusside_NK : NK ;
+fun puristussuhde_NK : NK ;
+fun puristusvoima_NK : NK ;
+fun purjealus_NK : NK ;
+fun purjehduskausi_NK : NK ;
+fun purjehduskelpoinen_NK : NK ;
+fun purjehduskelpoisuus_NK : NK ;
+fun purjehduskenka'_NK : NK ;
+fun purjehduskilpailu_NK : NK ;
+fun purjehduskunto_NK : NK ;
+fun purjehduskuntoinen_NK : NK ;
+fun purjehdusmatka_NK : NK ;
+fun purjehdusreitti_NK : NK ;
+fun purjehdusseura_NK : NK ;
+fun purjehdussa'a'_NK : NK ;
+fun purjekangas_NK : NK ;
+fun purjekankainen_NK : NK ;
+fun purjekelkka_NK : NK ;
+fun purjekelkkailu_NK : NK ;
+fun purjekerta_NK : NK ;
+fun purjekone_NK : NK ;
+fun purjelaiva_NK : NK ;
+fun purjelaivasto_NK : NK ;
+fun purjelauta_NK : NK ;
+fun purjelautailija_NK : NK ;
+fun purjelautailu_NK : NK ;
+fun purjelento_NK : NK ;
+fun purjelentokone_NK : NK ;
+fun purjelenta'ja'_NK : NK ;
+fun purjepinta_NK : NK ;
+fun purjepussi_NK : NK ;
+fun purjevene_NK : NK ;
+fun purjolaukka_NK : NK ;
+fun purjosipuli_NK : NK ;
+fun purkausaukko_NK : NK ;
+fun purkauslamppu_NK : NK ;
+fun purkaustyo'_NK : NK ;
+fun purkkiruoka_NK : NK ;
+fun purkulanka_NK : NK ;
+fun purkuoja_NK : NK ;
+fun purkutalo_NK : NK ;
+fun purkutuomio_NK : NK ;
+fun purkutyo'_NK : NK ;
+fun purokorento_NK : NK ;
+fun purotaimen_NK : NK ;
+fun purovesi_NK : NK ;
+fun purppurahohde_NK : NK ;
+fun purppurahohteinen_NK : NK ;
+fun purppurahohtoinen_NK : NK ;
+fun purppurapilvi_NK : NK ;
+fun purppuraviitta_NK : NK ;
+fun pursimies_NK : NK ;
+fun pursiseura_NK : NK ;
+fun purukasa_NK : NK ;
+fun purukumi_NK : NK ;
+fun purulelu_NK : NK ;
+fun puruluu_NK : NK ;
+fun purupinta_NK : NK ;
+fun pururata_NK : NK ;
+fun purutabletti_NK : NK ;
+fun purutupakka_NK : NK ;
+fun pusakka_NK : NK ;
+fun pusero_NK : NK ;
+fun puseromallinen_NK : NK ;
+fun puserrusja'te_NK : NK ;
+fun puskaradio_NK : NK ;
+fun puskuliitos_NK : NK ;
+fun puskuri_NK : NK ;
+fun puskuriliuos_NK : NK ;
+fun puskurivaikutus_NK : NK ;
+fun puskurivaltio_NK : NK ;
+fun puskurivyo'hyke_NK : NK ;
+fun puskutraktori_NK : NK ;
+fun pussiela'in_NK : NK ;
+fun pussihiha_NK : NK ;
+--? fun pussihousut_NK : NK ;
+fun pussijuoksu_NK : NK ;
+fun pussikarhu_NK : NK ;
+fun pussikatu_NK : NK ;
+fun pussikehra'a'ja'_NK : NK ;
+fun pussikeitto_NK : NK ;
+fun pussikoi_NK : NK ;
+fun pussilakana_NK : NK ;
+fun pussipeto_NK : NK ;
+fun pussirotta_NK : NK ;
+fun pussitee_NK : NK ;
+fun pussia'yria'inen_NK : NK ;
+fun pusteli_NK : NK ;
+fun putkakuolema_NK : NK ;
+fun putkarangaistus_NK : NK ;
+fun putkiasentaja_NK : NK ;
+fun putkijalka_NK : NK ;
+fun putkikassi_NK : NK ;
+fun putkilamppu_NK : NK ;
+fun putkimies_NK : NK ;
+--? fun putkipihdit_NK : NK ;
+fun putkipora_NK : NK ;
+fun putkiposti_NK : NK ;
+fun putkisolu_NK : NK ;
+fun putkisukka_NK : NK ;
+fun putkisyda'minen_NK : NK ;
+--? fun putkitongit_NK : NK ;
+fun putkityo'_NK : NK ;
+fun putkivaroke_NK : NK ;
+fun putouskorkeus_NK : NK ;
+fun puttausmaila_NK : NK ;
+fun puuaine_NK : NK ;
+fun puuastia_NK : NK ;
+fun puudutusaine_NK : NK ;
+fun puuesine_NK : NK ;
+fun puuetikka_NK : NK ;
+fun puuhaarukka_NK : NK ;
+fun puuhake_NK : NK ;
+fun puuhamies_NK : NK ;
+fun puuhanainen_NK : NK ;
+fun puuhella_NK : NK ;
+fun puuhelmi_NK : NK ;
+fun puuhiili_NK : NK ;
+fun puuhioke_NK : NK ;
+fun puuhkalakki_NK : NK ;
+fun puuhuvila_NK : NK ;
+fun puuistutus_NK : NK ;
+fun puujalka_NK : NK ;
+fun puujalkainen_NK : NK ;
+fun puujalkavitsi_NK : NK ;
+fun puujaloste_NK : NK ;
+fun puujumala_NK : NK ;
+fun puuja'te_NK : NK ;
+fun puukaasu_NK : NK ;
+fun puukaasutin_NK : NK ;
+fun puukaiverrus_NK : NK ;
+fun puukalikka_NK : NK ;
+fun puukappale_NK : NK ;
+fun puukapula_NK : NK ;
+fun puukasa_NK : NK ;
+fun puukauha_NK : NK ;
+fun puukauppa_NK : NK ;
+fun puukellari_NK : NK ;
+fun puukemia_NK : NK ;
+fun puukenka'_NK : NK ;
+fun puukiipija'_NK : NK ;
+fun puukirkko_NK : NK ;
+fun puukkojunkkari_NK : NK ;
+fun puukkosaha_NK : NK ;
+fun puukkoseppa'_NK : NK ;
+fun puukori_NK : NK ;
+fun puukuitu_NK : NK ;
+fun puukuitulevy_NK : NK ;
+fun puukuja_NK : NK ;
+fun puukuorma_NK : NK ;
+fun puulaaki_NK : NK ;
+fun puulaakijoukkue_NK : NK ;
+fun puulaakiottelu_NK : NK ;
+fun puulaakiurheilu_NK : NK ;
+fun puulaatikko_NK : NK ;
+fun puulaatu_NK : NK ;
+fun puulaji_NK : NK ;
+fun puulastu_NK : NK ;
+fun puulattia_NK : NK ;
+fun puulautanen_NK : NK ;
+fun puuleikkaus_NK : NK ;
+fun puuliesi_NK : NK ;
+fun puuliiteri_NK : NK ;
+fun puuliitos_NK : NK ;
+fun puulista_NK : NK ;
+fun puulusikka_NK : NK ;
+fun puula'mmitys_NK : NK ;
+fun puumassa_NK : NK ;
+fun puumerkki_NK : NK ;
+fun puunjalostusteollisuus_NK : NK ;
+fun puunjalostustuote_NK : NK ;
+fun puunkylla'stysaine_NK : NK ;
+fun puunuija_NK : NK ;
+fun puupala_NK : NK ;
+fun puupalanen_NK : NK ;
+fun puupalikka_NK : NK ;
+fun puupalttoo_NK : NK ;
+fun puupaneeli_NK : NK ;
+fun puupenkki_NK : NK ;
+fun puupiirros_NK : NK ;
+fun puupino_NK : NK ;
+fun puupinta_NK : NK ;
+fun puupistia'inen_NK : NK ;
+fun puupohja_NK : NK ;
+fun puupuhallin_NK : NK ;
+fun puupuola_NK : NK ;
+fun puupyo'ra'_NK : NK ;
+fun puupa'a'_NK : NK ;
+fun puupo'kkelo'_NK : NK ;
+fun puupo'lkky_NK : NK ;
+fun puuraja_NK : NK ;
+fun puurakenne_NK : NK ;
+fun puurakennus_NK : NK ;
+fun puuristi_NK : NK ;
+fun puuritila'_NK : NK ;
+fun puuroaamiainen_NK : NK ;
+fun puurojauho_NK : NK ;
+fun puurokauha_NK : NK ;
+fun puurolusikka_NK : NK ;
+fun puuromainen_NK : NK ;
+fun puuropata_NK : NK ;
+fun puurunko_NK : NK ;
+fun puurunkoinen_NK : NK ;
+fun puuruuvi_NK : NK ;
+fun puuseppa'_NK : NK ;
+fun puusilta_NK : NK ;
+fun puusohva_NK : NK ;
+fun puusolu_NK : NK ;
+fun puusprii_NK : NK ;
+fun puusylys_NK : NK ;
+fun puusyy_NK : NK ;
+fun puusa'le_NK : NK ;
+fun puusa'leikko'_NK : NK ;
+fun puutalo_NK : NK ;
+fun puutaloalue_NK : NK ;
+fun puutalotehdas_NK : NK ;
+fun puutaloteollisuus_NK : NK ;
+fun puutappi_NK : NK ;
+fun puutarha_NK : NK ;
+fun puutarhajuhla_NK : NK ;
+fun puutarhakaluste_NK : NK ;
+fun puutarhakalusto_NK : NK ;
+fun puutarhakasvi_NK : NK ;
+fun puutarhakaupunki_NK : NK ;
+fun puutarhakeinu_NK : NK ;
+fun puutarhalapio_NK : NK ;
+fun puutarhaletku_NK : NK ;
+fun puutarhamaa_NK : NK ;
+fun puutarhamaja_NK : NK ;
+fun puutarhamansikka_NK : NK ;
+fun puutarhamarja_NK : NK ;
+fun puutarhamulta_NK : NK ;
+fun puutarhaneuvos_NK : NK ;
+fun puutarhapalsta_NK : NK ;
+fun puutarhapenkki_NK : NK ;
+fun puutarhapo'yta'_NK : NK ;
+--? fun puutarhasakset_NK : NK ;
+fun puutarhatalous_NK : NK ;
+fun puutarhatraktori_NK : NK ;
+fun puutarhatuoli_NK : NK ;
+fun puutarhatyo'_NK : NK ;
+fun puutarhatyo'kalu_NK : NK ;
+fun puutarhavadelma_NK : NK ;
+fun puutarhavattu_NK : NK ;
+fun puutarhaviljelma'_NK : NK ;
+fun puutarhuri_NK : NK ;
+fun puutavara_NK : NK ;
+fun puutavarakauppa_NK : NK ;
+fun puutavaralaji_NK : NK ;
+fun puutavaraliike_NK : NK ;
+--? fun puutavaramarkkinat_NK : NK ;
+fun puuteknologia_NK : NK ;
+fun puuteollisuus_NK : NK ;
+fun puuterihuisku_NK : NK ;
+fun puuterilumi_NK : NK ;
+fun puuterirasia_NK : NK ;
+fun puuterisokeri_NK : NK ;
+fun puuterivippa_NK : NK ;
+fun puuteriva'ri_NK : NK ;
+fun puuterva_NK : NK ;
+fun puutiainen_NK : NK ;
+fun puutikku_NK : NK ;
+fun puutomaatti_NK : NK ;
+fun puutostauti_NK : NK ;
+fun puutuoli_NK : NK ;
+fun puututka_NK : NK ;
+fun puutyo'_NK : NK ;
+fun puutyo'kalu_NK : NK ;
+fun puuvaja_NK : NK ;
+fun puuvapaa_NK : NK ;
+fun puuvartinen_NK : NK ;
+fun puuveistos_NK : NK ;
+fun puuveitsi_NK : NK ;
+fun puuviilu_NK : NK ;
+fun puuvilla_NK : NK ;
+fun puuvillainen_NK : NK ;
+fun puuvillakangas_NK : NK ;
+fun puuvillakuitu_NK : NK ;
+fun puuvillalanka_NK : NK ;
+fun puuvillamatto_NK : NK ;
+fun puuvillamekko_NK : NK ;
+fun puuvillapensas_NK : NK ;
+fun puuvillaplantaasi_NK : NK ;
+fun puuvillapuku_NK : NK ;
+fun puuvillasukka_NK : NK ;
+fun puuvillatrikoo_NK : NK ;
+fun puuvillaviljelma'_NK : NK ;
+fun puzzlepeli_NK : NK ;
+fun pyhiinvaellusmatka_NK : NK ;
+fun pyhiinvaelluspaikka_NK : NK ;
+fun pyhimyskeha'_NK : NK ;
+fun pyhimystarina_NK : NK ;
+fun pyhimystaru_NK : NK ;
+fun pyha'aamu_NK : NK ;
+fun pyha'aatto_NK : NK ;
+fun pyha'ilta_NK : NK ;
+fun pyha'iltainen_NK : NK ;
+fun pyha'koulu_NK : NK ;
+fun pyha'koululainen_NK : NK ;
+fun pyha'koululapsi_NK : NK ;
+fun pyha'puku_NK : NK ;
+fun pyha'pa'iva'_NK : NK ;
+fun pyha'tyo'_NK : NK ;
+fun pyka'la'merkki_NK : NK ;
+fun pyka'la'viidakko_NK : NK ;
+fun pyka'pisto_NK : NK ;
+fun pyka'reuna_NK : NK ;
+fun pylva'sdiagrammi_NK : NK ;
+fun pylva'skaktus_NK : NK ;
+fun pylva'skenka'_NK : NK ;
+fun pylva'ska'yta'va'_NK : NK ;
+fun pylva'smuuntamo_NK : NK ;
+fun pylva'spyhimys_NK : NK ;
+fun pylva'ssali_NK : NK ;
+fun pylva'ssa'nky_NK : NK ;
+fun pylva'styra'kki_NK : NK ;
+fun pylva'svyo'_NK : NK ;
+fun pylva'sva'li_NK : NK ;
+fun pyramidikatto_NK : NK ;
+fun pyrsto'eva'_NK : NK ;
+fun pyrsto'painoinen_NK : NK ;
+fun pyrsto'sammakko_NK : NK ;
+fun pyrsto'sulka_NK : NK ;
+fun pyrsto'tiainen_NK : NK ;
+fun pyrsto'ta'hti_NK : NK ;
+fun pyryharakka_NK : NK ;
+fun pyryilma_NK : NK ;
+fun pyrylumi_NK : NK ;
+fun pyssymies_NK : NK ;
+fun pystyakseli_NK : NK ;
+fun pystyammunta_NK : NK ;
+fun pystyasento_NK : NK ;
+fun pystybaari_NK : NK ;
+fun pystyeta'isyys_NK : NK ;
+fun pystyhirsi_NK : NK ;
+fun pystyjuova_NK : NK ;
+fun pystyjuovainen_NK : NK ;
+fun pystykarsinta_NK : NK ;
+fun pystykaulus_NK : NK ;
+fun pystykauppa_NK : NK ;
+fun pystykorva_NK : NK ;
+fun pystykorvainen_NK : NK ;
+fun pystykorvarotu_NK : NK ;
+fun pystylaudoitus_NK : NK ;
+fun pystyleikkaus_NK : NK ;
+fun pystymetsa'_NK : NK ;
+fun pystymitta_NK : NK ;
+fun pystymyynti_NK : NK ;
+fun pystynena'_NK : NK ;
+fun pystynena'inen_NK : NK ;
+fun pystynokka_NK : NK ;
+fun pystyoksainen_NK : NK ;
+fun pystypaini_NK : NK ;
+fun pystypuu_NK : NK ;
+fun pystypa'inen_NK : NK ;
+fun pystyraita_NK : NK ;
+fun pystyraitainen_NK : NK ;
+fun pystysarake_NK : NK ;
+fun pystysauma_NK : NK ;
+fun pystysorvi_NK : NK ;
+fun pystysuora_NK : NK ;
+fun pystysuunta_NK : NK ;
+fun pystysuuntainen_NK : NK ;
+fun pystysyo'tto'_NK : NK ;
+fun pystytahdistus_NK : NK ;
+fun pystytaso_NK : NK ;
+fun pystytuki_NK : NK ;
+fun pystytukka_NK : NK ;
+fun pystyvatsainen_NK : NK ;
+fun pystyviiva_NK : NK ;
+fun pystyviivoitus_NK : NK ;
+fun pystyviljely_NK : NK ;
+fun pystyvirtaus_NK : NK ;
+fun pystyvuoraus_NK : NK ;
+fun pystyynmyynti_NK : NK ;
+fun pystyynpano_NK : NK ;
+fun pysa'hdyspaikka_NK : NK ;
+fun pysa'kkikatos_NK : NK ;
+fun pysa'ko'intialue_NK : NK ;
+fun pysa'ko'intihalli_NK : NK ;
+fun pysa'ko'intikiekko_NK : NK ;
+fun pysa'ko'intikielto_NK : NK ;
+fun pysa'ko'intiluola_NK : NK ;
+fun pysa'ko'intimaksu_NK : NK ;
+fun pysa'ko'intimittari_NK : NK ;
+fun pysa'ko'intipaikka_NK : NK ;
+fun pysa'ko'intitalo_NK : NK ;
+fun pysa'ko'intitila_NK : NK ;
+fun pysa'ytyskuva_NK : NK ;
+fun pysa'ytyslyo'nti_NK : NK ;
+fun pytonka'a'rme_NK : NK ;
+fun pyttytuomio_NK : NK ;
+fun pyyhekangas_NK : NK ;
+fun pyyhekuiva_NK : NK ;
+fun pyyhekumi_NK : NK ;
+fun pyyheliina_NK : NK ;
+fun pyyheliinakangas_NK : NK ;
+fun pyykinpesuaine_NK : NK ;
+fun pyykinpesukone_NK : NK ;
+fun pyykkikori_NK : NK ;
+fun pyykkilauta_NK : NK ;
+fun pyykkinaru_NK : NK ;
+fun pyykkinuora_NK : NK ;
+fun pyykkipoika_NK : NK ;
+fun pyykkipulveri_NK : NK ;
+fun pyykkipussi_NK : NK ;
+fun pyykkisoikko_NK : NK ;
+fun pyykkitupa_NK : NK ;
+fun pyyleva'_NK : NK ;
+fun pyyntihinta_NK : NK ;
+fun pyyntikala_NK : NK ;
+fun pyyntikausi_NK : NK ;
+fun pyyntikulttuuri_NK : NK ;
+fun pyyntikunta_NK : NK ;
+fun pyyntimatka_NK : NK ;
+fun pyyntimenetelma'_NK : NK ;
+fun pyyntiva'line_NK : NK ;
+fun pyo'kkimetsa'_NK : NK ;
+fun pyo'rea'kaarinen_NK : NK ;
+fun pyo'rea'kasvoinen_NK : NK ;
+fun pyo'rea'ka'rkinen_NK : NK ;
+fun pyo'rea'naamainen_NK : NK ;
+fun pyo'rea'pohjainen_NK : NK ;
+fun pyo'rea'poskinen_NK : NK ;
+fun pyo'rea'povinen_NK : NK ;
+fun pyo'rea'silma'inen_NK : NK ;
+fun pyo'rinta'nopeus_NK : NK ;
+fun pyo'rremyrsky_NK : NK ;
+fun pyo'rrepatsas_NK : NK ;
+fun pyo'rretuuli_NK : NK ;
+fun pyo'rrevirta_NK : NK ;
+fun pyo'rrevirtaha'vio'_NK : NK ;
+fun pyo'rrevirtajarru_NK : NK ;
+fun pyo'ra'hdyskappale_NK : NK ;
+fun pyo'ra'hdysliike_NK : NK ;
+fun pyo'ra'hdyspinta_NK : NK ;
+fun pyo'ra'ilykilpailu_NK : NK ;
+fun pyo'ra'ilykypa'ra'_NK : NK ;
+fun pyo'ra'ilyrata_NK : NK ;
+fun pyo'ra'ilyretki_NK : NK ;
+--? fun pyo'ra'ilysortsit_NK : NK ;
+fun pyo'ra'ilystadion_NK : NK ;
+fun pyo'ra'kelkka_NK : NK ;
+fun pyo'ra'kuormain_NK : NK ;
+fun pyo'ra'laukku_NK : NK ;
+fun pyo'ra'pari_NK : NK ;
+fun pyo'ra'poliisi_NK : NK ;
+fun pyo'ra'retki_NK : NK ;
+fun pyo'ra'rikko_NK : NK ;
+fun pyo'ra'teline_NK : NK ;
+fun pyo'ra'tie_NK : NK ;
+fun pyo'ra'traktori_NK : NK ;
+fun pyo'ra'tuoli_NK : NK ;
+fun pyo'ra'tuolipotilas_NK : NK ;
+fun pyo'ra'varkaus_NK : NK ;
+fun pyo'ro'harja_NK : NK ;
+fun pyo'ro'hirsi_NK : NK ;
+fun pyo'ro'hirsitalo_NK : NK ;
+fun pyo'ro'ikkuna_NK : NK ;
+fun pyo'ro'kaari_NK : NK ;
+fun pyo'ro'kaarinen_NK : NK ;
+fun pyo'ro'kaarityyli_NK : NK ;
+fun pyo'ro'katsomo_NK : NK ;
+fun pyo'ro'kone_NK : NK ;
+fun pyo'ro'na'ytta'mo'_NK : NK ;
+fun pyo'ro'ovi_NK : NK ;
+fun pyo'ro'paalain_NK : NK ;
+fun pyo'ro'paalaus_NK : NK ;
+fun pyo'ro'paali_NK : NK ;
+fun pyo'ro'puikko_NK : NK ;
+fun pyo'ro'saha_NK : NK ;
+fun pa'hkina'kakku_NK : NK ;
+fun pa'hkina'lehto_NK : NK ;
+fun pa'hkina'pensas_NK : NK ;
+fun pa'hkina'puinen_NK : NK ;
+fun pa'hkina'puu_NK : NK ;
+fun pa'hkina'rouhe_NK : NK ;
+--? fun pa'hkina'sakset_NK : NK ;
+fun pa'hkina'suklaa_NK : NK ;
+fun pa'hkina'o'ljy_NK : NK ;
+fun pa'ihdehuolto_NK : NK ;
+fun pa'ihderiippuvuus_NK : NK ;
+fun pa'ihtymystila_NK : NK ;
+fun pa'inmakuu_NK : NK ;
+fun pa'invastainen_NK : NK ;
+fun pa'ivitta'istavarakauppa_NK : NK ;
+fun pa'ivyrikello_NK : NK ;
+fun pa'ivystyshuone_NK : NK ;
+fun pa'ivystysleikkaus_NK : NK ;
+fun pa'ivystyspotilas_NK : NK ;
+fun pa'ivystystapaus_NK : NK ;
+fun pa'ivystystoimenpide_NK : NK ;
+fun pa'ivystysvuoro_NK : NK ;
+fun pa'iva'aikainen_NK : NK ;
+fun pa'iva'annos_NK : NK ;
+fun pa'iva'ansio_NK : NK ;
+fun pa'iva'apulainen_NK : NK ;
+fun pa'iva'ela'in_NK : NK ;
+fun pa'iva'hoitaja_NK : NK ;
+fun pa'iva'hoito_NK : NK ;
+fun pa'iva'hoitolaitos_NK : NK ;
+fun pa'iva'hoitolapsi_NK : NK ;
+fun pa'iva'hoitomaksu_NK : NK ;
+fun pa'iva'hoitopaikka_NK : NK ;
+fun pa'iva'huone_NK : NK ;
+fun pa'iva'juna_NK : NK ;
+fun pa'iva'ja'rjestys_NK : NK ;
+fun pa'iva'kahvi_NK : NK ;
+fun pa'iva'kausi_NK : NK ;
+fun pa'iva'kerho_NK : NK ;
+fun pa'iva'kirja_NK : NK ;
+fun pa'iva'kirjamerkinta'_NK : NK ;
+fun pa'iva'kirurgia_NK : NK ;
+fun pa'iva'koti_NK : NK ;
+fun pa'iva'kotipaikka_NK : NK ;
+fun pa'iva'ka'sky_NK : NK ;
+fun pa'iva'lehdisto'_NK : NK ;
+fun pa'iva'lehti_NK : NK ;
+fun pa'iva'lepo_NK : NK ;
+fun pa'iva'luotto_NK : NK ;
+fun pa'iva'luottokorko_NK : NK ;
+fun pa'iva'la'hetys_NK : NK ;
+fun pa'iva'marssi_NK : NK ;
+fun pa'iva'matka_NK : NK ;
+fun pa'iva'ma'a'ra'_NK : NK ;
+fun pa'iva'ma'a'ra'leima_NK : NK ;
+fun pa'iva'ma'a'ra'raja_NK : NK ;
+fun pa'iva'nopeus_NK : NK ;
+fun pa'iva'nseisauspiste_NK : NK ;
+fun pa'iva'ntasaajavirta_NK : NK ;
+fun pa'iva'nvalolamppu_NK : NK ;
+fun pa'iva'na'yta'nto'_NK : NK ;
+fun pa'iva'ohjelma_NK : NK ;
+fun pa'iva'osasto_NK : NK ;
+fun pa'iva'palkka_NK : NK ;
+fun pa'iva'palkkio_NK : NK ;
+fun pa'iva'peite_NK : NK ;
+fun pa'iva'peitto_NK : NK ;
+fun pa'iva'perho_NK : NK ;
+fun pa'iva'puoli_NK : NK ;
+fun pa'iva'raha_NK : NK ;
+fun pa'iva'ruokinta_NK : NK ;
+fun pa'iva'sairaala_NK : NK ;
+fun pa'iva'sokeus_NK : NK ;
+fun pa'iva'sa'hko'_NK : NK ;
+fun pa'iva'talletus_NK : NK ;
+fun pa'iva'tyo'_NK : NK ;
+fun pa'iva'tyo'kera'ys_NK : NK ;
+fun pa'iva'unelma_NK : NK ;
+fun pa'iva'uni_NK : NK ;
+fun pa'iva'urakka_NK : NK ;
+fun pa'iva'vaate_NK : NK ;
+fun pa'iva'vaihto_NK : NK ;
+fun pa'iva'vaunu_NK : NK ;
+fun pa'iva'voide_NK : NK ;
+fun pa'iva'vuoro_NK : NK ;
+fun pa'iva'vuorolainen_NK : NK ;
+fun pa'lvisilsa_NK : NK ;
+fun pa'lvisokeus_NK : NK ;
+fun pa'rekatto_NK : NK ;
+fun pa'rekattoinen_NK : NK ;
+fun pa'rekoppa_NK : NK ;
+fun pa'rekori_NK : NK ;
+fun pa'retuli_NK : NK ;
+fun pa'revalkea_NK : NK ;
+fun pa'rina'poika_NK : NK ;
+fun pa'tevyysvaatimus_NK : NK ;
+fun pa'a'aine_NK : NK ;
+fun pa'a'aines_NK : NK ;
+fun pa'a'ajatus_NK : NK ;
+fun pa'a'arkkitehti_NK : NK ;
+fun pa'a'asia_NK : NK ;
+fun pa'a'asiallinen_NK : NK ;
+fun pa'a'ateria_NK : NK ;
+fun pa'a'edustaja_NK : NK ;
+fun pa'a'ema'nta'_NK : NK ;
+fun pa'a'haara_NK : NK ;
+fun pa'a'henkilo'_NK : NK ;
+fun pa'a'huivi_NK : NK ;
+fun pa'a'ha'npiintyma'_NK : NK ;
+fun pa'a'ha'npisto_NK : NK ;
+fun pa'a'ideologi_NK : NK ;
+fun pa'a'isku_NK : NK ;
+fun pa'a'jakso_NK : NK ;
+fun pa'a'jalkainen_NK : NK ;
+fun pa'a'jehu_NK : NK ;
+fun pa'a'johtaja_NK : NK ;
+fun pa'a'johtajuus_NK : NK ;
+fun pa'a'joukko_NK : NK ;
+fun pa'a'ja'sen_NK : NK ;
+fun pa'a'kallo_NK : NK ;
+fun pa'a'kallokeli_NK : NK ;
+fun pa'a'kallokiita'ja'_NK : NK ;
+fun pa'a'kampa_NK : NK ;
+fun pa'a'kappale_NK : NK ;
+fun pa'a'katsomo_NK : NK ;
+fun pa'a'katu_NK : NK ;
+fun pa'a'kaupunki_NK : NK ;
+fun pa'a'kaupunkilainen_NK : NK ;
+fun pa'a'kaupunkiseutu_NK : NK ;
+fun pa'a'keskus_NK : NK ;
+fun pa'a'kipu_NK : NK ;
+fun pa'a'kirja_NK : NK ;
+fun pa'a'kirjasto_NK : NK ;
+fun pa'a'kirjoitus_NK : NK ;
+fun pa'a'konsuli_NK : NK ;
+fun pa'a'konttori_NK : NK ;
+fun pa'a'koppa_NK : NK ;
+fun pa'a'kytkin_NK : NK ;
+fun pa'a'laki_NK : NK ;
+fun pa'a'lause_NK : NK ;
+fun pa'a'liike_NK : NK ;
+fun pa'a'liina_NK : NK ;
+fun pa'a'linja_NK : NK ;
+fun pa'a'llekarkaus_NK : NK ;
+fun pa'a'llekirjoitus_NK : NK ;
+fun pa'a'lleka'yva'_NK : NK ;
+fun pa'a'llepano_NK : NK ;
+fun pa'a'llikko'virasto_NK : NK ;
+fun pa'a'llyskasvi_NK : NK ;
+fun pa'a'llyskenka'_NK : NK ;
+fun pa'a'llysketto_NK : NK ;
+fun pa'a'llyskumi_NK : NK ;
+fun pa'a'llyslakana_NK : NK ;
+fun pa'a'llyslehti_NK : NK ;
+fun pa'a'llysmetsa'_NK : NK ;
+fun pa'a'llysmies_NK : NK ;
+fun pa'a'llyspaperi_NK : NK ;
+fun pa'a'llyspuoli_NK : NK ;
+fun pa'a'llyspuusto_NK : NK ;
+fun pa'a'llysrakenne_NK : NK ;
+fun pa'a'llystakki_NK : NK ;
+fun pa'a'llysteinen_NK : NK ;
+fun pa'a'llysvaate_NK : NK ;
+fun pa'a'llysvesi_NK : NK ;
+fun pa'a'llysvieras_NK : NK ;
+fun pa'a'lla'seisonta_NK : NK ;
+fun pa'a'luku_NK : NK ;
+fun pa'a'luokka_NK : NK ;
+fun pa'a'luu_NK : NK ;
+fun pa'a'maja_NK : NK ;
+fun pa'a'mies_NK : NK ;
+fun pa'a'ministeri_NK : NK ;
+fun pa'a'ministerikausi_NK : NK ;
+fun pa'a'ma'a'ra'_NK : NK ;
+fun pa'a'ma'a'ra'hakuinen_NK : NK ;
+fun pa'a'ma'a'ra'tietoinen_NK : NK ;
+fun pa'a'ma'a'ra'to'n_NK : NK ;
+fun pa'a'nahka_NK : NK ;
+fun pa'a'nauha_NK : NK ;
+fun pa'a'noja_NK : NK ;
+fun pa'a'nsa'rkyla'a'ke_NK : NK ;
+fun pa'a'nsa'rkypulveri_NK : NK ;
+fun pa'a'nsa'rkytabletti_NK : NK ;
+fun pa'a'nuppi_NK : NK ;
+fun pa'a'na'ytta'mo'_NK : NK ;
+fun pa'a'oma_NK : NK ;
+fun pa'a'omakustannus_NK : NK ;
+fun pa'a'omako'yha'_NK : NK ;
+--? fun pa'a'omamarkkinat_NK : NK ;
+fun pa'a'omameno_NK : NK ;
+fun pa'a'omatulo_NK : NK ;
+fun pa'a'omavalta_NK : NK ;
+fun pa'a'omavaltainen_NK : NK ;
+fun pa'a'omavaltaisuus_NK : NK ;
+fun pa'a'omavastike_NK : NK ;
+fun pa'a'omavirta_NK : NK ;
+fun pa'a'omavoitto_NK : NK ;
+fun pa'a'osa_NK : NK ;
+fun pa'a'osakas_NK : NK ;
+fun pa'a'otsikko_NK : NK ;
+fun pa'a'ovi_NK : NK ;
+fun pa'a'paino_NK : NK ;
+fun pa'a'palkinto_NK : NK ;
+fun pa'a'pelaaja_NK : NK ;
+fun pa'a'peli_NK : NK ;
+fun pa'a'piirre_NK : NK ;
+fun pa'a'piirteinen_AK : AK ;
+fun pa'a'piru_NK : NK ;
+fun pa'a'puoli_NK : NK ;
+fun pa'a'raide_NK : NK ;
+fun pa'a'rakennus_NK : NK ;
+fun pa'a'rata_NK : NK ;
+fun pa'a'rmepisto_NK : NK ;
+fun pa'a'rooli_NK : NK ;
+fun pa'a'ruoka_NK : NK ;
+fun pa'a'ruokalaji_NK : NK ;
+fun pa'a'ryna'lihavuus_NK : NK ;
+fun pa'a'ryna'pallo_NK : NK ;
+fun pa'a'ryna'puu_NK : NK ;
+fun pa'a'ryna'vartalo_NK : NK ;
+fun pa'a'sana_NK : NK ;
+fun pa'a'sihteeri_NK : NK ;
+fun pa'a'sisa'llys_NK : NK ;
+fun pa'a'sisa'lto'_NK : NK ;
+fun pa'a'ssa'lasku_NK : NK ;
+fun pa'a'sto'rajoitus_NK : NK ;
+fun pa'a'sto'todistus_NK : NK ;
+fun pa'a'suunta_NK : NK ;
+fun pa'a'syinen_NK : NK ;
+fun pa'a'sykiintio'_NK : NK ;
+fun pa'a'sykoe_NK : NK ;
+fun pa'a'sylippu_NK : NK ;
+fun pa'a'symaksu_NK : NK ;
+fun pa'a'sytie_NK : NK ;
+fun pa'a'sytutkinto_NK : NK ;
+fun pa'a'syvaatimus_NK : NK ;
+fun pa'a'sa'a'nto'_NK : NK ;
+fun pa'a'tapahtuma_NK : NK ;
+fun pa'a'tavoite_NK : NK ;
+fun pa'a'teasema_NK : NK ;
+fun pa'a'teema_NK : NK ;
+fun pa'a'tehakkuu_NK : NK ;
+fun pa'a'tehta'va'_NK : NK ;
+fun pa'a'tekija'_NK : NK ;
+fun pa'a'telaite_NK : NK ;
+fun pa'a'teos_NK : NK ;
+fun pa'a'tepiste_NK : NK ;
+fun pa'a'tepuskuri_NK : NK ;
+fun pa'a'tepysa'kki_NK : NK ;
+fun pa'a'tetyo'_NK : NK ;
+fun pa'a'tevahvistin_NK : NK ;
+fun pa'a'tie_NK : NK ;
+fun pa'a'tilaisuus_NK : NK ;
+fun pa'a'toimi_NK : NK ;
+fun pa'a'toiminen_NK : NK ;
+fun pa'a'toimittaja_NK : NK ;
+fun pa'a'ttelykyky_NK : NK ;
+fun pa'a'tta'va'isyys_NK : NK ;
+fun pa'a'tuki_NK : NK ;
+fun pa'a'tulo_NK : NK ;
+fun pa'a'tuomari_NK : NK ;
+fun pa'a'tuote_NK : NK ;
+fun pa'a'tyhuone_NK : NK ;
+fun pa'a'tyhuoneisto_NK : NK ;
+fun pa'a'tyikkuna_NK : NK ;
+fun pa'a'tykolmio_NK : NK ;
+fun pa'a'tyraja_NK : NK ;
+fun pa'a'tyyppi_NK : NK ;
+fun pa'a'tyo'_NK : NK ;
+fun pa'a'ta'hti_NK : NK ;
+fun pa'a'ta'i_NK : NK ;
+fun pa'a'ta'nta'elin_NK : NK ;
+fun pa'a'ta'nta'oikeus_NK : NK ;
+fun pa'a'ta'nta'valta_NK : NK ;
+fun pa'a'to'sehdotus_NK : NK ;
+fun pa'a'to'sjuhla_NK : NK ;
+fun pa'a'to'slasku_NK : NK ;
+fun pa'a'to'slauselma_NK : NK ;
+fun pa'a'to'sluettelo_NK : NK ;
+fun pa'a'to'snumero_NK : NK ;
+fun pa'a'to'soikeus_NK : NK ;
+fun pa'a'to'sosa_NK : NK ;
+fun pa'a'to'spa'iva'_NK : NK ;
+fun pa'a'to'steoria_NK : NK ;
+fun pa'a'to'stilaisuus_NK : NK ;
+fun pa'a'to'svallaton_NK : NK ;
+fun pa'a'to'svalta_NK : NK ;
+fun pa'a'to'svaltainen_NK : NK ;
+fun pa'a'to'svaltaisuus_NK : NK ;
+fun pa'a'valmentaja_NK : NK ;
+fun pa'a'vartio_NK : NK ;
+fun pa'a'vastustaja_NK : NK ;
+fun pa'a'vastuu_NK : NK ;
+fun pa'a'velallinen_NK : NK ;
+fun pa'a'verbi_NK : NK ;
+fun pa'a'verso_NK : NK ;
+fun pa'a'voitto_NK : NK ;
+fun pa'a'va'esto'_NK : NK ;
+fun pa'a'va'ri_NK : NK ;
+fun pa'a'va'yla'_NK : NK ;
+fun po'kkelo'ka'a'pa'_NK : NK ;
+fun po'lkkypa'inen_NK : NK ;
+fun po'lkkypa'a'_NK : NK ;
+fun po'lkkyruoho_NK : NK ;
+fun po'lyharja_NK : NK ;
+fun po'lyhiukkanen_NK : NK ;
+fun po'lyhuisku_NK : NK ;
+fun po'lyisyys_NK : NK ;
+fun po'lykansi_NK : NK ;
+fun po'lykapseli_NK : NK ;
+fun po'lykasetti_NK : NK ;
+fun po'lykerros_NK : NK ;
+fun po'lykeuhko_NK : NK ;
+fun po'lymoppi_NK : NK ;
+fun po'lypatsas_NK : NK ;
+fun po'lypilvi_NK : NK ;
+fun po'lypunkki_NK : NK ;
+fun po'lypussi_NK : NK ;
+fun po'lyriepu_NK : NK ;
+fun po'lyra'tti_NK : NK ;
+fun po'lysokeri_NK : NK ;
+fun po'lytiivis_NK : NK ;
+fun po'nkka'hame_NK : NK ;
+fun po'ntto'kiuas_NK : NK ;
+fun po'rro'ha'nta'_NK : NK ;
+fun po'rro'ha'nta'inen_NK : NK ;
+fun po'rro'karvainen_NK : NK ;
+fun po'rro'pa'inen_NK : NK ;
+fun po'rro'pa'a'_NK : NK ;
+fun po'rro'tukka_NK : NK ;
+fun po'rro'tukkainen_NK : NK ;
+fun po'rssiarvo_NK : NK ;
+fun po'rssihai_NK : NK ;
+fun po'rssihuijari_NK : NK ;
+fun po'rssikauppa_NK : NK ;
+fun po'rssikeinottelu_NK : NK ;
+fun po'rssikurssi_NK : NK ;
+fun po'rssilista_NK : NK ;
+fun po'rssimeklari_NK : NK ;
+fun po'rssinoteeraus_NK : NK ;
+fun po'rssipa'iva'_NK : NK ;
+fun po'rssiromahdus_NK : NK ;
+fun po'rssiva'litta'ja'_NK : NK ;
+fun po'rssiyhtio'_NK : NK ;
+fun po'typuhe_NK : NK ;
+fun po'yta'astia_NK : NK ;
+fun po'yta'astiasto_NK : NK ;
+fun po'yta'daami_NK : NK ;
+fun po'yta'etikka_NK : NK ;
+fun po'yta'juoma_NK : NK ;
+fun po'yta'ja'rjestys_NK : NK ;
+fun po'yta'kalenteri_NK : NK ;
+fun po'yta'kartta_NK : NK ;
+fun po'yta'kavaljeeri_NK : NK ;
+fun po'yta'kello_NK : NK ;
+fun po'yta'keskustelu_NK : NK ;
+fun po'yta'kirja_NK : NK ;
+fun po'yta'kirjamerkinta'_NK : NK ;
+fun po'yta'kirjamerkinto'_NK : NK ;
+fun po'yta'kirjuri_NK : NK ;
+fun po'yta'kumppani_NK : NK ;
+fun po'yta'kunta_NK : NK ;
+fun po'yta'kynttila'_NK : NK ;
+fun po'yta'laatikko_NK : NK ;
+fun po'yta'laatikkokirjailija_NK : NK ;
+fun po'yta'laatikkoyritys_NK : NK ;
+fun po'yta'lamppu_NK : NK ;
+fun po'yta'levy_NK : NK ;
+fun po'yta'liina_NK : NK ;
+fun po'yta'lippu_NK : NK ;
+fun po'yta'mikro_NK : NK ;
+fun po'yta'naapuri_NK : NK ;
+fun po'yta'pakkaus_NK : NK ;
+fun po'yta'puhe_NK : NK ;
+fun po'yta'puhelin_NK : NK ;
+fun po'yta'pa'ivyri_NK : NK ;
+fun po'yta'rasia_NK : NK ;
+fun po'yta'rukous_NK : NK ;
+fun po'yta'seurue_NK : NK ;
+fun po'yta'suola_NK : NK ;
+fun po'yta'tapa_NK : NK ;
+fun po'yta'teatteri_NK : NK ;
+fun po'yta'tennis_NK : NK ;
+fun po'yta'tennismaila_NK : NK ;
+fun po'yta'tennisottelu_NK : NK ;
+fun po'yta'tennispallo_NK : NK ;
+fun po'yta'tilaus_NK : NK ;
+fun po'yta'toveri_NK : NK ;
+fun po'yta'valaisin_NK : NK ;
+fun po'yta'varaus_NK : NK ;
+fun po'yta'vesi_NK : NK ;
+fun po'yta'vieras_NK : NK ;
+fun po'yta'viini_NK : NK ;
+fun po'yta'vuori_NK : NK ;
+fun raajaliike_NK : NK ;
+fun raajapari_NK : NK ;
+fun raajarikko_NK : NK ;
+fun raajavammainen_NK : NK ;
+fun raaka_ainela'hde_NK : NK ;
+fun raaka_ainepula_NK : NK ;
+fun raakalainen_NK : NK ;
+fun raakaluonteinen_NK : NK ;
+fun raakapurje_NK : NK ;
+fun raakapuu_1_VK : VK ;
+fun raakapuu_2_NK : NK ;
+fun raakasilkkinen_NK : NK ;
+fun raakilemainen_NK : NK ;
+fun raakkua'yria'inen_NK : NK ;
+fun raamatunselitysoppi_NK : NK ;
+fun raamisaha_NK : NK ;
+fun raamisopimus_NK : NK ;
+fun raapaisupinta_NK : NK ;
+fun raapekumi_NK : NK ;
+fun raappakuljetin_NK : NK ;
+fun raaputusarpa_NK : NK ;
+fun raastemylly_NK : NK ;
+fun raastesalaatti_NK : NK ;
+fun raastinrauta_NK : NK ;
+fun raastintera'_NK : NK ;
+fun raateluhammas_NK : NK ;
+fun raatelujalka_NK : NK ;
+fun raatelunokka_NK : NK ;
+fun raatihuone_NK : NK ;
+fun raatilainen_NK : NK ;
+fun raatokuoriainen_NK : NK ;
+fun raatoka'rpa'nen_NK : NK ;
+fun radioaktiivinen_NK : NK ;
+fun radioamato'o'ri_NK : NK ;
+fun radioamato'o'ritoiminta_NK : NK ;
+fun radioantenni_NK : NK ;
+fun radioasema_NK : NK ;
+fun radioastronomia_NK : NK ;
+fun radiodokumentti_NK : NK ;
+fun radiodraama_NK : NK ;
+fun radioesitelma'_NK : NK ;
+fun radioesitys_NK : NK ;
+fun radiohartaus_NK : NK ;
+fun radiohiili_NK : NK ;
+fun radiohiiliajoitus_NK : NK ;
+fun radiohiljaisuus_NK : NK ;
+fun radioha'irinta'_NK : NK ;
+fun radioha'irio'_NK : NK ;
+fun radioisotooppi_NK : NK ;
+fun radiojodi_NK : NK ;
+fun radiokemia_NK : NK ;
+fun radiokeskustelu_NK : NK ;
+fun radiokuuluttaja_NK : NK ;
+fun radiokuunnelma_NK : NK ;
+fun radiokuuntelija_NK : NK ;
+fun radiolaite_NK : NK ;
+fun radioliike_NK : NK ;
+fun radioliikenne_NK : NK ;
+fun radiolinkki_NK : NK ;
+fun radioluotain_NK : NK ;
+fun radiola'hetin_NK : NK ;
+fun radiola'hetys_NK : NK ;
+fun radiomainonta_NK : NK ;
+fun radiomainos_NK : NK ;
+fun radiomajakka_NK : NK ;
+fun radiomasto_NK : NK ;
+fun radionauhuri_NK : NK ;
+fun radiopaikannus_NK : NK ;
+fun radiopeilaus_NK : NK ;
+fun radiopuhe_NK : NK ;
+fun radiopuhelin_NK : NK ;
+fun radiopuhelu_NK : NK ;
+fun radioputki_NK : NK ;
+fun radioreportaasi_NK : NK ;
+fun radiosanoma_NK : NK ;
+fun radioselostaja_NK : NK ;
+fun radioselostus_NK : NK ;
+fun radiosignaali_NK : NK ;
+fun radiosondi_NK : NK ;
+fun radiosovitus_NK : NK ;
+fun radiosuunnin_NK : NK ;
+fun radiosuuntima_NK : NK ;
+fun radiosa'hko'tta'ja'_NK : NK ;
+fun radiosa'hko'tys_NK : NK ;
+fun radiosa'teily_NK : NK ;
+fun radioteatteri_NK : NK ;
+fun radiotekniikka_NK : NK ;
+fun radiotiedotus_NK : NK ;
+fun radiotoimittaja_NK : NK ;
+fun radiota'hti_NK : NK ;
+fun radiota'htitiede_NK : NK ;
+fun radioviestinta'_NK : NK ;
+fun radioyhteys_NK : NK ;
+fun radioyhtio'_NK : NK ;
+fun radioa'a'ni_NK : NK ;
+fun radonmittari_NK : NK ;
+fun radonmittaus_NK : NK ;
+fun radonpitoisuus_NK : NK ;
+fun raejuusto_NK : NK ;
+fun raekuuro_NK : NK ;
+fun raesokeri_NK : NK ;
+fun rahahuoli_NK : NK ;
+fun rahakanta_NK : NK ;
+fun rahakirstu_NK : NK ;
+fun rahakokoelma_NK : NK ;
+fun rahakortti_NK : NK ;
+fun rahakukkaro_NK : NK ;
+fun rahalahja_NK : NK ;
+fun rahalahjoitus_NK : NK ;
+fun rahalaina_NK : NK ;
+fun rahalaitos_NK : NK ;
+fun rahaliike_NK : NK ;
+fun rahaliikenne_NK : NK ;
+fun rahaliitto_NK : NK ;
+fun rahalipas_NK : NK ;
+fun rahaluotto_NK : NK ;
+fun rahala'hde_NK : NK ;
+fun rahala'hetys_NK : NK ;
+fun rahalo'yto'_NK : NK ;
+fun rahamaailma_NK : NK ;
+fun rahamalmi_NK : NK ;
+--? fun rahamarkkinat_NK : NK ;
+fun rahametalli_NK : NK ;
+fun rahamies_NK : NK ;
+fun rahaministeri_NK : NK ;
+fun rahamylly_NK : NK ;
+fun rahama'a'ra'_NK : NK ;
+fun rahama'a'ra'inen_NK : NK ;
+fun rahapaja_NK : NK ;
+fun rahapalkinto_NK : NK ;
+fun rahapalkka_NK : NK ;
+fun rahapalkkio_NK : NK ;
+fun rahapanos_NK : NK ;
+fun rahapeli_NK : NK ;
+fun rahapolitiikka_NK : NK ;
+fun rahapuhelin_NK : NK ;
+fun rahapula_NK : NK ;
+fun rahapussi_NK : NK ;
+fun rahapuu_NK : NK ;
+fun rahareformi_NK : NK ;
+fun rahareika'_NK : NK ;
+fun raharikas_NK : NK ;
+fun raharuhtinas_NK : NK ;
+fun rahasampo_NK : NK ;
+fun rahastoanti_NK : NK ;
+fun rahasumma_NK : NK ;
+fun rahasuoritus_NK : NK ;
+fun rahatalletus_NK : NK ;
+fun rahatalous_NK : NK ;
+fun rahatilanne_NK : NK ;
+fun rahatoimi_NK : NK ;
+fun rahatulo_NK : NK ;
+fun rahauudistus_NK : NK ;
+fun rahavaikeus_NK : NK ;
+fun rahavalta_NK : NK ;
+fun rahavaltainen_NK : NK ;
+fun rahavaltaisuus_NK : NK ;
+fun rahavirta_NK : NK ;
+fun rahayksikko'_NK : NK ;
+fun rahkamatto_NK : NK ;
+fun rahkaneva_NK : NK ;
+fun rahkapiirakka_NK : NK ;
+fun rahkara'me_NK : NK ;
+fun rahkasammal_NK : NK ;
+fun rahkasuo_NK : NK ;
+fun rahkaturve_NK : NK ;
+fun rahoituslaitos_NK : NK ;
+fun rahoituslaskelma_NK : NK ;
+fun rahoitusomaisuus_NK : NK ;
+fun rahoitusosuus_NK : NK ;
+fun rahoitusyhtio'_NK : NK ;
+fun rahtausliike_NK : NK ;
+fun rahtialus_NK : NK ;
+fun rahtiennakko_NK : NK ;
+fun rahtikirja_NK : NK ;
+fun rahtikone_NK : NK ;
+fun rahtilaiva_NK : NK ;
+fun rahtilaivaliikenne_NK : NK ;
+fun rahtiliikenne_NK : NK ;
+fun rahtimaksu_NK : NK ;
+fun rahtitariffi_NK : NK ;
+fun rahtitavara_NK : NK ;
+fun rahtitavaratoimisto_NK : NK ;
+fun rahtitonni_NK : NK ;
+fun rahtityo'_NK : NK ;
+fun raidejuoppo_NK : NK ;
+fun raidejuoppous_NK : NK ;
+fun raideleveys_NK : NK ;
+fun raideliikenne_NK : NK ;
+fun raideliikennejuopumus_NK : NK ;
+fun raidepari_NK : NK ;
+fun raideva'li_NK : NK ;
+fun raikashenkinen_NK : NK ;
+fun raikulipoika_NK : NK ;
+fun raikulitytto'_NK : NK ;
+fun railakasotteinen_NK : NK ;
+fun railolossi_NK : NK ;
+fun railosilta_NK : NK ;
+fun raipparangaistus_NK : NK ;
+fun raitakehra'a'ja'_NK : NK ;
+fun raitiotiekisko_NK : NK ;
+fun raitiotieliikenne_NK : NK ;
+fun raitiotievaunu_NK : NK ;
+fun raitiovaunukaista_NK : NK ;
+fun raitiovaunuliikenne_NK : NK ;
+fun raitiovaunulinja_NK : NK ;
+fun raitiovaunupysa'kki_NK : NK ;
+fun raitishenkinen_NK : NK ;
+fun raitisilmasuodatin_NK : NK ;
+fun raitisilmaventtiili_NK : NK ;
+fun raittiusaate_NK : NK ;
+fun raittiusja'rjesto'_NK : NK ;
+fun raittiuskasvatus_NK : NK ;
+fun raittiusliike_NK : NK ;
+fun raittiuslupaus_NK : NK ;
+fun raittiusseura_NK : NK ;
+fun raittiustyo'_NK : NK ;
+fun raittiusvalistus_NK : NK ;
+fun raittiusyhdistys_NK : NK ;
+fun raivauskalusto_NK : NK ;
+fun raivaussaha_NK : NK ;
+fun raivaustraktori_NK : NK ;
+fun raivohullu_NK : NK ;
+fun raivohulluus_NK : NK ;
+fun raivokohtaus_NK : NK ;
+fun raivopa'inen_NK : NK ;
+fun raivopa'a'_NK : NK ;
+fun raivoraitis_NK : NK ;
+fun raivotarjonta_NK : NK ;
+fun raivotauti_NK : NK ;
+fun raivotautinen_NK : NK ;
+fun raivotila_1_NK : NK ;
+fun raivotila_2_NK : NK ;
+fun rajaheitto_NK : NK ;
+fun rajahinta_NK : NK ;
+fun rajaja'a'ka'ri_NK : NK ;
+fun rajakahakka_NK : NK ;
+fun rajakauppa_NK : NK ;
+fun rajakaupunki_NK : NK ;
+fun rajakivi_NK : NK ;
+fun rajakustannus_NK : NK ;
+fun rajakyla'_NK : NK ;
+fun rajaliikenne_NK : NK ;
+fun rajalinja_NK : NK ;
+fun rajaloukkaus_NK : NK ;
+fun rajalyo'nti_NK : NK ;
+fun rajamaa_NK : NK ;
+fun rajamerkki_NK : NK ;
+fun rajamies_NK : NK ;
+fun rajanaapuri_NK : NK ;
+fun rajanaapuruus_NK : NK ;
+fun rajanopeus_NK : NK ;
+fun rajanylityspaikka_NK : NK ;
+fun rajapaalu_NK : NK ;
+fun rajapuomi_NK : NK ;
+fun rajapyykki_NK : NK ;
+fun rajarauha_NK : NK ;
+fun rajariita_NK : NK ;
+fun rajarikko_NK : NK ;
+fun rajaselkkaus_NK : NK ;
+fun rajaseutu_NK : NK ;
+fun rajasopimus_NK : NK ;
+fun rajasuoja_NK : NK ;
+fun rajataistelu_NK : NK ;
+fun rajatapaus_NK : NK ;
+fun rajatiede_NK : NK ;
+fun rajatieto_NK : NK ;
+fun rajatila_NK : NK ;
+fun rajatilaha'irio'_NK : NK ;
+fun rajatulkki_NK : NK ;
+fun rajatulo_NK : NK ;
+fun rajatuotto_NK : NK ;
+fun rajauskyna'_NK : NK ;
+fun rajausviiva_NK : NK ;
+fun rajausva'ri_NK : NK ;
+fun rajavartija_NK : NK ;
+fun rajavartiosto_NK : NK ;
+fun rajavero_NK : NK ;
+fun rajaviiva_NK : NK ;
+fun rajavyo'hyke_NK : NK ;
+fun rajuluonteinen_NK : NK ;
+fun rajuotteinen_NK : NK ;
+fun rakennekaava_NK : NK ;
+fun rakennekehitys_NK : NK ;
+fun rakennemuutos_NK : NK ;
+fun rakenneosa_NK : NK ;
+fun rakennepiirustus_NK : NK ;
+fun rakennetera's_NK : NK ;
+fun rakennetyo'tto'myys_NK : NK ;
+fun rakennevika_NK : NK ;
+fun rakennusaine_NK : NK ;
+fun rakennusaineteollisuus_NK : NK ;
+fun rakennusakustiikka_NK : NK ;
+fun rakennusarkkitehti_NK : NK ;
+fun rakennuselementti_NK : NK ;
+fun rakennushanke_NK : NK ;
+fun rakennushomma_NK : NK ;
+fun rakennusinsino'o'ri_NK : NK ;
+fun rakennusja'rjestys_NK : NK ;
+fun rakennusja'te_NK : NK ;
+fun rakennuskanta_NK : NK ;
+fun rakennuskelpoinen_NK : NK ;
+fun rakennuskeramiikka_NK : NK ;
+fun rakennuskielto_NK : NK ;
+fun rakennuskivi_NK : NK ;
+fun rakennuskompleksi_NK : NK ;
+fun rakennuskone_NK : NK ;
+fun rakennuskorkeus_NK : NK ;
+fun rakennuslasi_NK : NK ;
+fun rakennuslevy_NK : NK ;
+fun rakennusliike_NK : NK ;
+fun rakennuslupa_NK : NK ;
+fun rakennusmaa_NK : NK ;
+fun rakennusmaalari_NK : NK ;
+fun rakennusmateriaali_NK : NK ;
+fun rakennusmestari_NK : NK ;
+fun rakennusmies_NK : NK ;
+fun rakennusmuovi_NK : NK ;
+fun rakennusneuvos_NK : NK ;
+fun rakennusoikeus_NK : NK ;
+fun rakennusosa_NK : NK ;
+fun rakennuspalikka_NK : NK ;
+fun rakennuspiirta'ja'_NK : NK ;
+fun rakennuspiirustus_NK : NK ;
+fun rakennuspohja_NK : NK ;
+fun rakennuspuu_NK : NK ;
+fun rakennuspuuseppa'_NK : NK ;
+fun rakennusrasite_NK : NK ;
+fun rakennusryhma'_NK : NK ;
+fun rakennussarja_NK : NK ;
+fun rakennusselitys_NK : NK ;
+fun rakennussuojelu_NK : NK ;
+fun rakennustaide_NK : NK ;
+fun rakennustarkastaja_NK : NK ;
+fun rakennustarkastus_NK : NK ;
+fun rakennustarvike_NK : NK ;
+fun rakennustekniikka_NK : NK ;
+fun rakennustekninen_NK : NK ;
+fun rakennusteline_NK : NK ;
+fun rakennustera's_NK : NK ;
+fun rakennustoiminta_NK : NK ;
+fun rakennustuotanto_NK : NK ;
+fun rakennustyyli_NK : NK ;
+fun rakennustyo'_NK : NK ;
+fun rakennustyo'la'inen_NK : NK ;
+fun rakennustyo'maa_NK : NK ;
+fun rakennustyo'mies_NK : NK ;
+fun rakennusurakka_NK : NK ;
+fun rakennusurakointi_NK : NK ;
+fun rakennusvalvonta_NK : NK ;
+fun rakennusvienti_NK : NK ;
+fun rakennusyhtio'_NK : NK ;
+fun rakennuttajakonsultti_NK : NK ;
+fun rakettiammus_NK : NK ;
+fun rakettiase_NK : NK ;
+fun rakettimainen_NK : NK ;
+fun rakettimoottori_NK : NK ;
+fun rakkamaa_NK : NK ;
+fun rakkausaiheinen_NK : NK ;
+fun rakkausdraama_NK : NK ;
+fun rakkausela'ma'_NK : NK ;
+fun rakkausjuttu_NK : NK ;
+fun rakkauskertomus_NK : NK ;
+fun rakkauskirje_NK : NK ;
+fun rakkauskohtaus_NK : NK ;
+fun rakkauslaulu_NK : NK ;
+fun rakkauslyriikka_NK : NK ;
+fun rakkausromaani_NK : NK ;
+fun rakkausruno_NK : NK ;
+fun rakkausseikkailu_NK : NK ;
+fun rakkaussuhde_NK : NK ;
+fun rakkaustarina_NK : NK ;
+fun rakkikoira_NK : NK ;
+fun rakkokasvain_NK : NK ;
+fun rakkokivi_NK : NK ;
+fun rakkolasi_NK : NK ;
+fun rakkoleva'_NK : NK ;
+fun rakkotulehdus_NK : NK ;
+fun rakkulaihottuma_NK : NK ;
+fun rakkulamainen_NK : NK ;
+fun raklettigrilli_NK : NK ;
+fun raklettijuusto_NK : NK ;
+fun rakolista_NK : NK ;
+fun rakosuutin_NK : NK ;
+fun rakotuli_NK : NK ;
+fun rakotulkki_NK : NK ;
+fun rakovalkea_NK : NK ;
+fun ralliajaja_NK : NK ;
+fun ralliajo_NK : NK ;
+fun ralliauto_NK : NK ;
+fun ralliautoilija_NK : NK ;
+fun ralliautoilu_NK : NK ;
+fun rallikilpailu_NK : NK ;
+fun rallireitti_NK : NK ;
+fun ralliurheilu_NK : NK ;
+fun ramppikuume_NK : NK ;
+fun rangaistusaitio_NK : NK ;
+fun rangaistusalue_NK : NK ;
+fun rangaistusasteikko_NK : NK ;
+fun rangaistusheitto_NK : NK ;
+fun rangaistuskeino_NK : NK ;
+fun rangaistuskoppi_NK : NK ;
+fun rangaistuslaitos_NK : NK ;
+fun rangaistuslaukaus_NK : NK ;
+fun rangaistuslyo'nti_NK : NK ;
+fun rangaistusmerkinta'_NK : NK ;
+fun rangaistusperuste_NK : NK ;
+fun rangaistuspotku_NK : NK ;
+fun rangaistuspotkukilpailu_NK : NK ;
+fun rangaistusseuraamus_NK : NK ;
+fun rangaistusvaatimus_NK : NK ;
+fun rangaistusvanki_NK : NK ;
+fun rankahake_NK : NK ;
+fun rankaisukeino_NK : NK ;
+fun rankaisutapa_NK : NK ;
+fun rankaisutoimi_NK : NK ;
+fun rankaisuvalta_NK : NK ;
+fun rankkitynnyri_NK : NK ;
+fun rannehihna_NK : NK ;
+fun ranneha'lytin_NK : NK ;
+fun rannekello_NK : NK ;
+fun ranneketju_NK : NK ;
+fun rannekompassi_NK : NK ;
+fun rannekoru_NK : NK ;
+fun rannelaukaus_NK : NK ;
+fun rannelaukku_NK : NK ;
+fun ranneliike_NK : NK ;
+fun ranneluu_NK : NK ;
+fun rannenivel_NK : NK ;
+fun ranneote_NK : NK ;
+fun rannepaino_NK : NK ;
+fun rannerengas_NK : NK ;
+fun rannetuki_NK : NK ;
+fun rannikkoalue_NK : NK ;
+fun rannikkoalus_NK : NK ;
+fun rannikkoasema_NK : NK ;
+fun rannikkoja'a'ka'ri_NK : NK ;
+fun rannikkokalastus_NK : NK ;
+fun rannikkokanava_NK : NK ;
+fun rannikkokaupunki_NK : NK ;
+fun rannikkolaivasto_NK : NK ;
+fun rannikkolaivuri_NK : NK ;
+fun rannikkoliikenne_NK : NK ;
+fun rannikkopatteri_NK : NK ;
+fun rannikkopuolustus_NK : NK ;
+fun rannikkoseutu_NK : NK ;
+fun rannikkotykisto'_NK : NK ;
+fun rannikkotykki_NK : NK ;
+fun rannikkovaltio_NK : NK ;
+fun rannikkovesi_NK : NK ;
+fun rannikkova'esto'_NK : NK ;
+fun rannikkova'yla'_NK : NK ;
+fun ranskalainen_NK : NK ;
+fun rantaela'ma'_NK : NK ;
+fun rantahiekka_NK : NK ;
+fun rantahietikko_NK : NK ;
+fun rantahotelli_NK : NK ;
+fun rantakaava_NK : NK ;
+fun rantakahvila_NK : NK ;
+fun rantakaislikko_NK : NK ;
+fun rantakala_NK : NK ;
+fun rantakallio_NK : NK ;
+fun rantakana_NK : NK ;
+fun rantakasvi_NK : NK ;
+fun rantakatu_NK : NK ;
+fun rantakirppu_NK : NK ;
+fun rantakivi_NK : NK ;
+fun rantakoivikko_NK : NK ;
+fun rantakoivu_NK : NK ;
+fun rantakukka_NK : NK ;
+fun rantaka'a'rme_NK : NK ;
+fun rantaleijona_NK : NK ;
+fun rantaleikki_NK : NK ;
+fun rantaloma_NK : NK ;
+fun rantamaisema_NK : NK ;
+fun rantamatalikko_NK : NK ;
+fun rantamerkki_NK : NK ;
+fun rantamuodostuma_NK : NK ;
+fun rantamuoti_NK : NK ;
+fun rantamo'kki_NK : NK ;
+fun rantaniitty_NK : NK ;
+fun rantaoikeus_NK : NK ;
+fun rantapalle_NK : NK ;
+fun rantapallo_NK : NK ;
+fun rantapalsta_NK : NK ;
+fun rantapatja_NK : NK ;
+fun rantapenger_NK : NK ;
+fun rantapuku_NK : NK ;
+fun rantaremmi_NK : NK ;
+fun rantarosvo_NK : NK ;
+fun rantasappi_NK : NK ;
+fun rantasauna_NK : NK ;
+fun rantatie_NK : NK ;
+fun rantatontti_NK : NK ;
+fun rantatuoli_NK : NK ;
+fun rantato'rma'_NK : NK ;
+fun rantato'yra's_NK : NK ;
+fun rantavahti_NK : NK ;
+fun rantavalli_NK : NK ;
+fun rantavaltio_NK : NK ;
+fun rantavesi_NK : NK ;
+fun rantaviiva_NK : NK ;
+fun rantavyo'hyke_NK : NK ;
+fun rantayrtti_NK : NK ;
+fun rapajuoppo_NK : NK ;
+fun rapakalja_NK : NK ;
+fun rapakeli_NK : NK ;
+fun rapakivi_NK : NK ;
+fun rapakunto_NK : NK ;
+fun rapakuntoinen_NK : NK ;
+fun raparperihillo_NK : NK ;
+fun raparperikeitto_NK : NK ;
+fun raparperikiisseli_NK : NK ;
+fun raparperimehu_NK : NK ;
+fun raparperipiirakka_NK : NK ;
+fun rapeakuorinen_NK : NK ;
+fun rapmusiikki_NK : NK ;
+fun rappari_NK : NK ;
+fun rappauslaasti_NK : NK ;
+fun rappauspinta_NK : NK ;
+fun rappausverkko_NK : NK ;
+fun rappiotila_NK : NK ;
+fun rappuka'yta'va'_NK : NK ;
+fun rapsakka_NK : NK ;
+fun rapsikakku_NK : NK ;
+fun rapsikuoriainen_NK : NK ;
+fun rapsipelto_NK : NK ;
+fun rapsipistia'inen_NK : NK ;
+fun rapsio'ljy_NK : NK ;
+fun rapukastike_NK : NK ;
+fun rapukauluri_NK : NK ;
+fun rapukausi_NK : NK ;
+fun rapukeitto_NK : NK ;
+fun rapumerta_NK : NK ;
+fun rapurutto_NK : NK ;
+fun rapuveitsi_NK : NK ;
+fun rasiteoikeus_NK : NK ;
+fun rasitesopimus_NK : NK ;
+fun rasitusastma_NK : NK ;
+fun rasituskoe_NK : NK ;
+fun rasitusmurtuma_NK : NK ;
+fun rasitussairaus_NK : NK ;
+fun rasitustodistus_NK : NK ;
+fun rasitusvamma_NK : NK ;
+fun raskaskulkuinen_NK : NK ;
+fun raskasliikkeinen_NK : NK ;
+fun raskaslukuinen_NK : NK ;
+fun raskasmielisyys_NK : NK ;
+fun raskassoutuinen_NK : NK ;
+fun raskastekoinen_NK : NK ;
+fun raskausarpi_NK : NK ;
+fun raskausjuova_NK : NK ;
+fun raskauskoe_NK : NK ;
+fun raskauskuukausi_NK : NK ;
+fun raskausmyrkytys_NK : NK ;
+fun raskaustesti_NK : NK ;
+fun raskausviikko_NK : NK ;
+fun raspikurkku_NK : NK ;
+fun rastaletti_NK : NK ;
+fun rastasverkko_NK : NK ;
+fun rastatukka_NK : NK ;
+fun rasterilevy_NK : NK ;
+fun rasteripiste_NK : NK ;
+fun rasvaeva'_NK : NK ;
+fun rasvahappo_NK : NK ;
+fun rasvaimu_NK : NK ;
+fun rasvakattila_NK : NK ;
+fun rasvakeitin_NK : NK ;
+fun rasvakerros_NK : NK ;
+fun rasvakera'yma'_NK : NK ;
+fun rasvakudos_NK : NK ;
+fun rasvakyna'_NK : NK ;
+fun rasvaletti_NK : NK ;
+fun rasvaliitu_NK : NK ;
+fun rasvaliitupiirros_NK : NK ;
+fun rasvaliukoinen_NK : NK ;
+fun rasvaliukoisuus_NK : NK ;
+fun rasvamaksa_NK : NK ;
+fun rasvanahkainen_NK : NK ;
+fun rasvapallo_NK : NK ;
+fun rasvapitoinen_NK : NK ;
+fun rasvapitoisuus_NK : NK ;
+fun rasvapoimu_NK : NK ;
+fun rasvaprosentti_NK : NK ;
+fun rasvasekoite_NK : NK ;
+fun rasvasilli_NK : NK ;
+fun rasvasolu_NK : NK ;
+fun rasvasolukko_NK : NK ;
+fun rasvatahra_NK : NK ;
+fun rasvatyyni_NK : NK ;
+fun rasvavilla_NK : NK ;
+fun rataenna'tys_NK : NK ;
+fun ratagolf_NK : NK ;
+fun rataharjoitus_NK : NK ;
+fun ratajuoksu_NK : NK ;
+fun rataja'rjestys_NK : NK ;
+fun ratakierros_NK : NK ;
+fun ratakisko_NK : NK ;
+fun rataliikenne_NK : NK ;
+fun ratamestari_NK : NK ;
+fun rataosa_NK : NK ;
+fun ratapiha_NK : NK ;
+fun ratapyo'ra'_NK : NK ;
+fun ratapyo'ra'ily_NK : NK ;
+fun ratapo'lkky_NK : NK ;
+fun ratapo'lkkysieni_NK : NK ;
+fun ratasela'in_NK : NK ;
+fun ratasmylly_NK : NK ;
+fun ratatuomari_NK : NK ;
+fun ratkaisukeino_NK : NK ;
+fun ratkaisumaali_NK : NK ;
+fun ratkaisumalli_NK : NK ;
+fun ratkaisuottelu_NK : NK ;
+fun ratkaisutaistelu_NK : NK ;
+fun ratkaisutapa_NK : NK ;
+fun ratkaisuvaihe_NK : NK ;
+fun ratkaisuvalta_NK : NK ;
+fun ratkiriemukas_NK : NK ;
+fun ratsastajapatsas_NK : NK ;
+fun ratsastushalli_NK : NK ;
+--? fun ratsastushousut_NK : NK ;
+fun ratsastuskentta'_NK : NK ;
+fun ratsastuskilpailu_NK : NK ;
+fun ratsastuskoulu_NK : NK ;
+fun ratsastuskurssi_NK : NK ;
+fun ratsastuskypa'ra'_NK : NK ;
+fun ratsastusleiri_NK : NK ;
+fun ratsastuspuku_NK : NK ;
+fun ratsastusrata_NK : NK ;
+fun ratsastussaapas_NK : NK ;
+fun ratsastustalli_NK : NK ;
+fun ratsastustunti_NK : NK ;
+fun ratsastusurheilu_NK : NK ;
+fun ratsumestari_NK : NK ;
+fun ratsumies_NK : NK ;
+fun ratsupiiska_NK : NK ;
+fun ratsupoliisi_NK : NK ;
+fun ratsutila_NK : NK ;
+fun ratsutilallinen_NK : NK ;
+fun ratsuva'ki_NK : NK ;
+fun ratsuva'kiosasto_NK : NK ;
+fun rattijuoppo_NK : NK ;
+fun rattijuoppous_NK : NK ;
+fun rattijuopumus_NK : NK ;
+fun rattikelkka_NK : NK ;
+fun rattilukko_NK : NK ;
+fun rattivaihde_NK : NK ;
+fun rattopoika_NK : NK ;
+fun rattotytto'_NK : NK ;
+fun raudanpuuteanemia_NK : NK ;
+fun rauhanenkeli_NK : NK ;
+fun rauhoitusalue_NK : NK ;
+fun rauhoitusla'a'ke_NK : NK ;
+fun raukkamainen_AK : AK ;
+fun rauniokasa_NK : NK ;
+fun rauniokaupunki_NK : NK ;
+fun rauniokoira_NK : NK ;
+fun rauniolinna_NK : NK ;
+fun raunioyrtti_NK : NK ;
+fun rautaesine_NK : NK ;
+fun rautaesirippu_NK : NK ;
+fun rautahammas_NK : NK ;
+fun rautaja'a'_NK : NK ;
+fun rautakaivos_NK : NK ;
+fun rautakanki_NK : NK ;
+fun rautakarbidi_NK : NK ;
+fun rautakauppa_NK : NK ;
+fun rautakausi_NK : NK ;
+fun rautakautinen_NK : NK ;
+fun rautakorko_NK : NK ;
+fun rautakorkoinen_NK : NK ;
+fun rautakoura_NK : NK ;
+fun rautalanka_NK : NK ;
+fun rautalankamusiikki_NK : NK ;
+fun rautalankayhtye_NK : NK ;
+fun rautalehti_NK : NK ;
+fun rautala'a'ke_NK : NK ;
+fun rautamalmi_NK : NK ;
+fun rautametalli_NK : NK ;
+fun rautanaula_NK : NK ;
+fun rautanokkonen_NK : NK ;
+fun rautaoksidi_NK : NK ;
+fun rautaosasto_NK : NK ;
+fun rautapannu_NK : NK ;
+fun rautapata_NK : NK ;
+fun rautapitoinen_NK : NK ;
+fun rautapuu_NK : NK ;
+fun rautapyynti_NK : NK ;
+fun rautaristi_NK : NK ;
+fun rautaromu_NK : NK ;
+fun rautarouva_NK : NK ;
+fun rautaruukki_NK : NK ;
+fun rautasaha_NK : NK ;
+fun rautasaostuma_NK : NK ;
+fun rautaseos_NK : NK ;
+fun rautasulatto_NK : NK ;
+fun rautasulfaatti_NK : NK ;
+fun rautasa'lpa'_NK : NK ;
+fun rautasa'nky_NK : NK ;
+fun rautatie_NK : NK ;
+fun rautatieasema_NK : NK ;
+fun rautatiekalusto_NK : NK ;
+fun rautatiekuljetus_NK : NK ;
+fun rautatielaitos_NK : NK ;
+fun rautatieliikenne_NK : NK ;
+fun rautatielinja_NK : NK ;
+fun rautatierahti_NK : NK ;
+fun rautatierakennus_NK : NK ;
+fun rautatieristeys_NK : NK ;
+fun rautatiesilta_NK : NK ;
+fun rautatiesolmu_NK : NK ;
+fun rautatiesto'_NK : NK ;
+fun rautatietariffi_NK : NK ;
+fun rautatietunneli_NK : NK ;
+fun rautatievaunu_NK : NK ;
+fun rautatieverkko_NK : NK ;
+fun rautatievirkailija_NK : NK ;
+fun rautatieyhteys_NK : NK ;
+fun rautavalimo_NK : NK ;
+fun rautavalmiste_NK : NK ;
+fun rautavihtrilli_NK : NK ;
+fun ravikuningas_NK : NK ;
+fun ravikuningatar_NK : NK ;
+fun ravinnekuormitus_NK : NK ;
+fun ravinneko'yha'_NK : NK ;
+fun ravinneliuos_NK : NK ;
+fun ravinnepitoinen_NK : NK ;
+fun ravinnepitoisuus_NK : NK ;
+fun ravinnerikas_NK : NK ;
+fun ravinnesuola_NK : NK ;
+fun ravintoaine_NK : NK ;
+fun ravintoaineympyra'_NK : NK ;
+fun ravintoalusta_NK : NK ;
+fun ravintoarvo_NK : NK ;
+fun ravintokasvi_NK : NK ;
+fun ravintoketju_NK : NK ;
+fun ravintokuitu_NK : NK ;
+fun ravintoko'yha'_NK : NK ;
+fun ravintolailta_NK : NK ;
+fun ravintolakeikka_NK : NK ;
+fun ravintolaketju_NK : NK ;
+fun ravintolakokki_NK : NK ;
+fun ravintolalaiva_NK : NK ;
+fun ravintolalasku_NK : NK ;
+fun ravintolalaulaja_NK : NK ;
+fun ravintolamuusikko_NK : NK ;
+fun ravintolaorkesteri_NK : NK ;
+fun ravintolapanimo_NK : NK ;
+fun ravintolapianisti_NK : NK ;
+fun ravintolapo'yta'_NK : NK ;
+fun ravintolaruoka_NK : NK ;
+fun ravintolasali_NK : NK ;
+fun ravintolashow_NK : NK ;
+fun ravintolavaunu_NK : NK ;
+fun ravintolayhtye_NK : NK ;
+fun ravintolayleiso'_NK : NK ;
+fun ravintoliuos_NK : NK ;
+fun ravintola'hde_NK : NK ;
+fun ravintopyramidi_NK : NK ;
+fun ravintorasva_NK : NK ;
+fun ravintorikas_NK : NK ;
+fun ravintosuola_NK : NK ;
+fun ravintotalous_NK : NK ;
+fun ravintovalmiste_NK : NK ;
+fun ravintoverkko_NK : NK ;
+fun ravirata_NK : NK ;
+fun ravitsemushoito_NK : NK ;
+fun ravitsemusha'irio'_NK : NK ;
+fun ravitsemusliike_NK : NK ;
+fun ravitsemusneuvoja_NK : NK ;
+fun ravitsemusneuvonta_NK : NK ;
+fun ravitsemusterapeutti_NK : NK ;
+fun ravitsemusterapia_NK : NK ;
+fun ravitsemustiede_NK : NK ;
+fun ravitsemustila_NK : NK ;
+fun raviurheilu_NK : NK ;
+fun raviveikkaus_NK : NK ;
+fun ravustuskausi_NK : NK ;
+fun reagenssipaperi_NK : NK ;
+fun reaktiokaava_NK : NK ;
+fun reaktiokyky_NK : NK ;
+fun reaktiola'mpo'_NK : NK ;
+fun reaktionopeus_NK : NK ;
+fun reaktiotapa_NK : NK ;
+fun reaktiovoima_NK : NK ;
+fun reaktioyhta'lo'_NK : NK ;
+fun realisointikeskus_NK : NK ;
+fun reesuslapsi_NK : NK ;
+fun reesustekija'_NK : NK ;
+fun reformipuolue_NK : NK ;
+fun reggaeyhtye_NK : NK ;
+fun reheva'kasvuinen_NK : NK ;
+fun reheva'puheinen_NK : NK ;
+fun reheva'sanainen_NK : NK ;
+fun rehtorikausi_NK : NK ;
+fun rehuarvo_NK : NK ;
+fun rehuhiiva_NK : NK ;
+fun rehujauho_NK : NK ;
+fun rehujuurikas_NK : NK ;
+fun rehukakku_NK : NK ;
+fun rehukala_NK : NK ;
+fun rehukasvi_NK : NK ;
+fun rehukaura_NK : NK ;
+fun rehumailanen_NK : NK ;
+fun rehumyrkytys_NK : NK ;
+fun rehunauris_NK : NK ;
+fun rehuohra_NK : NK ;
+fun rehuperuna_NK : NK ;
+fun rehusekoitus_NK : NK ;
+fun rehusiilo_NK : NK ;
+fun rehusilakka_NK : NK ;
+fun rehusilppuri_NK : NK ;
+fun rehuvilja_NK : NK ;
+fun rehuyksikko'_NK : NK ;
+fun reika'kauha_NK : NK ;
+fun reika'kirves_NK : NK ;
+fun reika'kortti_NK : NK ;
+fun reika'korttikone_NK : NK ;
+fun reika'leipa'_NK : NK ;
+fun reika'levy_NK : NK ;
+fun reika'meisti_NK : NK ;
+fun reika'nauha_NK : NK ;
+fun reika'ommel_NK : NK ;
+fun reika'ompelu_NK : NK ;
+fun reika'peli_NK : NK ;
+fun reika'rauta_NK : NK ;
+fun reika'saha_NK : NK ;
+fun reika'tiili_NK : NK ;
+fun reika'ta'hta'in_NK : NK ;
+fun reipashenkinen_NK : NK ;
+fun reipasotteinen_NK : NK ;
+fun reisilihas_NK : NK ;
+fun reisiluu_NK : NK ;
+fun reisitasku_NK : NK ;
+fun reisivaltimo_NK : NK ;
+fun reissumies_NK : NK ;
+fun reissuvihko_NK : NK ;
+fun reittikartta_NK : NK ;
+fun reittikone_NK : NK ;
+fun reittilento_NK : NK ;
+fun reittiliikenne_NK : NK ;
+fun reittisuunnistus_NK : NK ;
+fun rekiajelu_NK : NK ;
+fun rekikeli_NK : NK ;
+fun rekilaulu_NK : NK ;
+fun rekiretki_NK : NK ;
+fun rekisterikilpi_NK : NK ;
+fun rekisterinappula_NK : NK ;
+fun rekisterinumero_NK : NK ;
+fun rekisteriote_NK : NK ;
+fun rekisteritunnus_NK : NK ;
+fun rekistero'intikoje_NK : NK ;
+fun rekiviisu_NK : NK ;
+fun rekkakuski_NK : NK ;
+fun rekkiliike_NK : NK ;
+fun rekkivoimistelu_NK : NK ;
+fun rekyyliase_NK : NK ;
+fun rekyylienergia_NK : NK ;
+fun relevantti_NK : NK ;
+fun remmikenka'_NK : NK ;
+fun remonttimies_NK : NK ;
+fun remujuhla_NK : NK ;
+fun renessanssikausi_NK : NK ;
+fun renessanssikulttuuri_NK : NK ;
+fun renessanssiruhtinas_NK : NK ;
+fun renessanssitaide_NK : NK ;
+fun renessanssitaiteilija_NK : NK ;
+fun renessanssityyli_NK : NK ;
+fun renessanssityylinen_NK : NK ;
+fun rengasavain_NK : NK ;
+fun rengaskansio_NK : NK ;
+fun rengaslaho_NK : NK ;
+fun rengaslehtio'_NK : NK ;
+fun rengaslihas_NK : NK ;
+fun rengasliike_NK : NK ;
+fun rengasmatka_NK : NK ;
+fun rengaspaine_NK : NK ;
+fun rengasrakenne_NK : NK ;
+fun rengasrikko_NK : NK ;
+fun rengasrusto_NK : NK ;
+fun rengassivellin_NK : NK ;
+fun rengassumu_NK : NK ;
+fun rengastaulu_NK : NK ;
+fun rengasvoimistelu_NK : NK ;
+fun rengasvuoka_NK : NK ;
+fun renkitupa_NK : NK ;
+fun rentoutusharjoitus_NK : NK ;
+fun rentoutuskasetti_NK : NK ;
+fun rentovartinen_NK : NK ;
+fun repolainen_NK : NK ;
+fun reppufirma_NK : NK ;
+fun reppumies_NK : NK ;
+fun reppuruisku_NK : NK ;
+fun reppuryssa'_NK : NK ;
+fun reppuselka'inen_NK : NK ;
+fun reproduktiokamera_NK : NK ;
+fun reproduktiokuvaus_NK : NK ;
+fun reprokamera_NK : NK ;
+fun reprokuvaus_NK : NK ;
+fun repa'isykorkki_NK : NK ;
+fun repa'isynauha_NK : NK ;
+fun repa'isyreuna_NK : NK ;
+fun repa'isyviiva_NK : NK ;
+fun reseptila'a'ke_NK : NK ;
+fun reseptionisti_NK : NK ;
+fun reseptivapaa_NK : NK ;
+fun reservijoukko_NK : NK ;
+fun reserviupseeri_NK : NK ;
+fun resonanssiontelo_NK : NK ;
+fun resoripatja_NK : NK ;
+fun resupekka_NK : NK ;
+fun retiisi_NK : NK ;
+fun retkeilyalue_NK : NK ;
+fun retkeilyasu_NK : NK ;
+fun retkeilykartta_NK : NK ;
+fun retkeilymaja_NK : NK ;
+fun retkieva's_NK : NK ;
+fun retkihiihto_NK : NK ;
+fun retkikeitin_NK : NK ;
+fun retkikunta_NK : NK ;
+fun retkikuntalainen_NK : NK ;
+fun retkiluistelu_NK : NK ;
+fun retkiluistin_NK : NK ;
+fun retkimuona_NK : NK ;
+fun retkipeite_NK : NK ;
+fun retkipolku_NK : NK ;
+fun retkipyo'ra'_NK : NK ;
+fun retkiruoka_NK : NK ;
+fun reumakerrasto_NK : NK ;
+fun reumakuume_NK : NK ;
+fun reumapotilas_NK : NK ;
+fun reumasairaus_NK : NK ;
+fun reumatauti_NK : NK ;
+fun reunaehto_NK : NK ;
+fun reunahuomautus_NK : NK ;
+fun reunakepa'a'rme_NK : NK ;
+fun reunakoriste_NK : NK ;
+fun reunalauta_NK : NK ;
+fun reunalista_NK : NK ;
+fun reunameri_NK : NK ;
+fun reunamerkinta'_NK : NK ;
+fun reunamoreeni_NK : NK ;
+fun reunamuodostuma_NK : NK ;
+fun reunanauha_NK : NK ;
+fun reunaommel_NK : NK ;
+fun reunapitsi_NK : NK ;
+fun reunavaltio_NK : NK ;
+fun reunaviiva_NK : NK ;
+fun reunuskasvi_NK : NK ;
+fun reunuskivi_NK : NK ;
+fun reunuslista_NK : NK ;
+fun reunusnauha_NK : NK ;
+fun revanssiottelu_NK : NK ;
+fun revisioneuvos_NK : NK ;
+fun revisionisti_NK : NK ;
+fun revolverikotelo_NK : NK ;
+fun revolverisankari_NK : NK ;
+fun revolverisorvi_NK : NK ;
+fun revyyna'ytta'mo'_NK : NK ;
+fun revyyteatteri_NK : NK ;
+fun revyytytto'_NK : NK ;
+fun riekkokana_NK : NK ;
+fun riekkokukko_NK : NK ;
+fun riemuhuuto_NK : NK ;
+fun riemujuhla_NK : NK ;
+fun riemukaari_NK : NK ;
+fun riemukulku_NK : NK ;
+fun riemukulkue_NK : NK ;
+fun riemulaulu_NK : NK ;
+fun riemumaisteri_NK : NK ;
+fun riemumieli_NK : NK ;
+fun riemusaatto_NK : NK ;
+fun riemutohtori_NK : NK ;
+fun riemuvoitto_NK : NK ;
+fun riepumatto_NK : NK ;
+fun riepunukke_NK : NK ;
+fun rihkamakauppa_NK : NK ;
+fun rihkamakoru_NK : NK ;
+fun rihmakala_NK : NK ;
+fun riihikuiva_NK : NK ;
+fun riihipaita_NK : NK ;
+fun riihitonttu_NK : NK ;
+fun riikinkukkokehra'a'ja'_NK : NK ;
+fun riimiha'rka'_NK : NK ;
+fun riimiruno_NK : NK ;
+fun riimisana_NK : NK ;
+fun riimisuolaus_NK : NK ;
+fun riimukalenteri_NK : NK ;
+fun riimukirjain_NK : NK ;
+fun riimukirjoitus_NK : NK ;
+fun riimukivi_NK : NK ;
+fun riimusauva_NK : NK ;
+fun riimuverkko_NK : NK ;
+fun riippakivi_NK : NK ;
+fun riippakoivu_NK : NK ;
+fun riippuvarintainen_NK : NK ;
+fun riippuvuussuhde_NK : NK ;
+fun riipuskoru_NK : NK ;
+fun riisijauho_NK : NK ;
+fun riisikulho_NK : NK ;
+fun riisikuppi_NK : NK ;
+fun riisimuro_NK : NK ;
+fun riisipelto_NK : NK ;
+fun riisipeti_NK : NK ;
+fun riisipiirakka_NK : NK ;
+fun riisiposliini_NK : NK ;
+fun riisipussi_NK : NK ;
+fun riisipuuro_NK : NK ;
+fun riisiryyni_NK : NK ;
+fun riisiryynipuuro_NK : NK ;
+fun riisisato_NK : NK ;
+fun riisisuurimo_NK : NK ;
+fun riisitauti_NK : NK ;
+fun riisitautinen_NK : NK ;
+fun riisita'rkkelys_NK : NK ;
+fun riisivanukas_NK : NK ;
+fun riisiviina_NK : NK ;
+fun riisiviini_NK : NK ;
+fun riistaela'in_NK : NK ;
+fun riistakanta_NK : NK ;
+fun riistakolari_NK : NK ;
+fun riistalaidun_NK : NK ;
+fun riistalaji_NK : NK ;
+fun riistalinnusto_NK : NK ;
+fun riistalintu_NK : NK ;
+fun riistamaa_NK : NK ;
+fun riistanhoitomaksu_NK : NK ;
+fun riistanhoitoyhdistys_NK : NK ;
+fun riistapelto_NK : NK ;
+fun riistapoliisi_NK : NK ;
+fun riistatalous_NK : NK ;
+fun riistavahinko_NK : NK ;
+fun riistokalastus_NK : NK ;
+fun riistoka'ytto'_NK : NK ;
+fun riistopolitiikka_NK : NK ;
+fun riistoviljely_NK : NK ;
+fun riitajuttu_NK : NK ;
+fun riitakapula_NK : NK ;
+fun riitakumppani_NK : NK ;
+fun riitakysymys_NK : NK ;
+fun riitapukari_NK : NK ;
+fun riitapuoli_NK : NK ;
+fun riitasointu_NK : NK ;
+fun riitasointuinen_NK : NK ;
+fun rikasilmeinen_NK : NK ;
+fun rikaspiirteinen_NK : NK ;
+fun rikemaksu_NK : NK ;
+fun rikkaimuri_NK : NK ;
+fun rikkakasa_NK : NK ;
+fun rikkakasvi_NK : NK ;
+fun rikkakasviha'vite_NK : NK ;
+fun rikkakihveli_NK : NK ;
+fun rikkalapio_NK : NK ;
+fun rikkaruoho_NK : NK ;
+fun rikkaruohoinen_NK : NK ;
+fun rikkatunkio_NK : NK ;
+fun rikkibakteeri_NK : NK ;
+fun rikkihappo_NK : NK ;
+fun rikkikiisu_NK : NK ;
+fun rikkioksidi_NK : NK ;
+fun rikkipa'a'sto'_NK : NK ;
+fun rikkirauta_NK : NK ;
+fun rikkivety_NK : NK ;
+fun rikkiviisas_NK : NK ;
+fun rikkiviisaus_NK : NK ;
+fun rikkonainen_NK : NK ;
+fun rikosasia_NK : NK ;
+fun rikosdraama_NK : NK ;
+fun rikosetsiva'_NK : NK ;
+fun rikosfilmi_NK : NK ;
+fun rikosilmoitus_NK : NK ;
+fun rikosjuttu_NK : NK ;
+fun rikoskanne_NK : NK ;
+fun rikoskertomus_NK : NK ;
+fun rikoskomisario_NK : NK ;
+fun rikoskumppani_NK : NK ;
+fun rikoskumppanuus_NK : NK ;
+fun rikosluettelo_NK : NK ;
+fun rikosluonteinen_NK : NK ;
+fun rikosoikeus_NK : NK ;
+fun rikospaikka_NK : NK ;
+fun rikospoliisi_NK : NK ;
+fun rikosprosessi_NK : NK ;
+fun rikospsykologia_NK : NK ;
+fun rikosrekisteri_NK : NK ;
+fun rikosromaani_NK : NK ;
+fun rikossarja_NK : NK ;
+fun rikossyyte_NK : NK ;
+fun rikostilasto_NK : NK ;
+fun rikostoveri_NK : NK ;
+fun rikostutkija_NK : NK ;
+fun rikostutkimus_NK : NK ;
+fun rikostutkimusoppi_NK : NK ;
+fun rikostutkinta_NK : NK ;
+fun rikosuutinen_NK : NK ;
+fun rimakauhu_NK : NK ;
+fun rimalauta_NK : NK ;
+fun rimalevy_NK : NK ;
+fun rimpiletto_NK : NK ;
+fun rimpineva_NK : NK ;
+fun rimpisuo_NK : NK ;
+fun rimpsuhame_NK : NK ;
+fun rimpsuhelma_NK : NK ;
+fun rimpsuhelmainen_NK : NK ;
+fun rimpsureuna_NK : NK ;
+fun rimpsureunainen_NK : NK ;
+fun rinnakkainelo_NK : NK ;
+fun rinnakkainkytkenta'_NK : NK ;
+fun rinnankytkenta'_NK : NK ;
+fun rinnanmitta_NK : NK ;
+fun rinnanpa'a'_NK : NK ;
+fun rinnanympa'rys_NK : NK ;
+fun rinnanympa'rysmitta_NK : NK ;
+fun rinnastuskonjunktio_NK : NK ;
+fun rinnastussuhde_NK : NK ;
+fun rinneniitty_NK : NK ;
+fun rinnepelto_NK : NK ;
+fun rinneravintola_NK : NK ;
+fun rinnetalo_NK : NK ;
+fun rinnusmikrofoni_NK : NK ;
+fun rintaelin_NK : NK ;
+fun rintaelinkirurgia_NK : NK ;
+fun rintaeva'_NK : NK ;
+fun rintakappale_NK : NK ;
+fun rintakeha'_NK : NK ;
+fun rintakipu_NK : NK ;
+fun rintakirurgia_NK : NK ;
+fun rintakoru_NK : NK ;
+fun rintakuppi_NK : NK ;
+fun rintakuva_NK : NK ;
+fun rintaka'a'nne_NK : NK ;
+fun rintalappu_NK : NK ;
+fun rintalapsi_NK : NK ;
+fun rintalaskos_NK : NK ;
+fun rintalasta_NK : NK ;
+fun rintaliha_NK : NK ;
+fun rintalihas_NK : NK ;
+fun rintamaa_NK : NK ;
+fun rintamahyo'kka'ys_NK : NK ;
+fun rintamaito_NK : NK ;
+fun rintamakarkuri_NK : NK ;
+fun rintamakarkuruus_NK : NK ;
+fun rintamalinja_NK : NK ;
+fun rintamamies_NK : NK ;
+fun rintamamiesja'rjesto'_NK : NK ;
+fun rintamapalvelus_NK : NK ;
+fun rintamasotilas_NK : NK ;
+fun rintamasuunta_NK : NK ;
+fun rintamaukkonen_NK : NK ;
+fun rintamaupseeri_NK : NK ;
+fun rintamaveteraani_NK : NK ;
+fun rintamerkki_NK : NK ;
+fun rintanappi_NK : NK ;
+fun rintaneula_NK : NK ;
+fun rintanikama_NK : NK ;
+fun rintaontelo_NK : NK ;
+fun rintaosa_NK : NK ;
+fun rintapala_NK : NK ;
+fun rintapelti_NK : NK ;
+fun rintaperillinen_NK : NK ;
+fun rintaperinto'_NK : NK ;
+fun rintapieli_NK : NK ;
+fun rintapistos_NK : NK ;
+fun rintaproteesi_NK : NK ;
+fun rintapumppu_NK : NK ;
+fun rintarauhanen_NK : NK ;
+fun rintaresonanssi_NK : NK ;
+fun rintaruokinta_NK : NK ;
+fun rintasolki_NK : NK ;
+fun rintasuojus_NK : NK ;
+fun rintasyo'pa'_NK : NK ;
+fun rintatasku_NK : NK ;
+fun rintatulehdus_NK : NK ;
+fun rintata'hti_NK : NK ;
+fun rintauinti_NK : NK ;
+fun rintavarustus_NK : NK ;
+fun rintaa'a'ni_NK : NK ;
+fun ripakinttu_NK : NK ;
+fun ripea'liikkeinen_NK : NK ;
+fun ripea'otteinen_NK : NK ;
+fun rippijuhla_NK : NK ;
+fun rippikehotus_NK : NK ;
+fun rippikoulu_NK : NK ;
+fun rippikouluika'_NK : NK ;
+fun rippikouluika'inen_NK : NK ;
+fun rippikoululainen_NK : NK ;
+fun rippikoululeiri_NK : NK ;
+fun rippikoulupoika_NK : NK ;
+fun rippikoulutodistus_NK : NK ;
+fun rippikoulutytto'_NK : NK ;
+fun rippikuva_NK : NK ;
+fun rippilahja_NK : NK ;
+fun rippilapsi_NK : NK ;
+fun rippileiri_NK : NK ;
+fun rippipappi_NK : NK ;
+fun rippipuhe_NK : NK ;
+fun rippipuku_NK : NK ;
+fun rippisaarna_NK : NK ;
+fun rippisalaisuus_NK : NK ;
+fun rippituoli_NK : NK ;
+fun ripsiela'in_NK : NK ;
+fun ripsiharja_NK : NK ;
+fun ripsinauha_NK : NK ;
+fun ripsisidos_NK : NK ;
+fun ripsiva'ri_NK : NK ;
+fun ripsureuna_NK : NK ;
+fun ripsureunainen_NK : NK ;
+fun ripulipotilas_NK : NK ;
+fun ripustuskoukku_NK : NK ;
+fun risalakki_NK : NK ;
+fun risiinikasvi_NK : NK ;
+fun risiinio'ljy_NK : NK ;
+fun riskialtis_NK : NK ;
+fun riskiluokitus_NK : NK ;
+fun riskiluokka_NK : NK ;
+fun riskiraha_NK : NK ;
+fun riskirahoitus_NK : NK ;
+fun riskiraskaus_NK : NK ;
+fun riskiryhma'_NK : NK ;
+fun riskiseksi_NK : NK ;
+fun riskisijoitus_NK : NK ;
+fun riskisynnytta'ja'_NK : NK ;
+fun riskitekija'_NK : NK ;
+fun risteilyalus_NK : NK ;
+fun risteilyohjus_NK : NK ;
+fun risteysajo_NK : NK ;
+fun risteysalue_NK : NK ;
+fun risteysasema_NK : NK ;
+fun risteyskolari_NK : NK ;
+fun risteysmerkki_NK : NK ;
+fun risteyspaikka_NK : NK ;
+fun risteytysjalostus_NK : NK ;
+fun risteytyskoe_NK : NK ;
+fun risteytystulos_NK : NK ;
+fun ristiaallokko_NK : NK ;
+fun ristiallergia_NK : NK ;
+fun ristiaskel_NK : NK ;
+fun ristihuuli_NK : NK ;
+fun ristihyppely_NK : NK ;
+fun ristiha'ma'ha'kki_NK : NK ;
+fun ristijousto_NK : NK ;
+fun ristikappale_NK : NK ;
+fun ristikirkko_NK : NK ;
+fun ristikkoikkuna_NK : NK ;
+fun ristikkorakenne_NK : NK ;
+fun ristikkorunko_NK : NK ;
+fun ristikkosilta_NK : NK ;
+fun ristikukkainen_NK : NK ;
+fun ristikulma_NK : NK ;
+fun ristikuningas_NK : NK ;
+fun ristikuulustelu_NK : NK ;
+fun ristikuva_NK : NK ;
+fun ristikuvaus_NK : NK ;
+fun ristilaukka_NK : NK ;
+fun ristilukki_NK : NK ;
+fun ristiluu_NK : NK ;
+fun ristinikama_NK : NK ;
+fun ristinivel_NK : NK ;
+fun ristiote_NK : NK ;
+fun ristipaine_NK : NK ;
+fun ristipisto_NK : NK ;
+fun ristipistokirjonta_NK : NK ;
+fun ristipurenta_NK : NK ;
+fun ristipo'lytys_NK : NK ;
+fun ristiretki_NK : NK ;
+fun ristiriidaton_NK : NK ;
+fun ristiriipunta_NK : NK ;
+fun ristiriita_NK : NK ;
+fun ristiriitainen_NK : NK ;
+fun ristiriitaisuus_NK : NK ;
+fun ristiriitatilanne_NK : NK ;
+fun ristiritari_NK : NK ;
+fun ristirouva_NK : NK ;
+fun ristiselka'_NK : NK ;
+fun ristiside_NK : NK ;
+fun ristisidonta_NK : NK ;
+fun ristisiitos_NK : NK ;
+fun ristisiittoinen_NK : NK ;
+fun ristisyo'tto'_NK : NK ;
+fun ristitaulukko_NK : NK ;
+fun ristiteritys_NK : NK ;
+fun ristituli_NK : NK ;
+fun ristiturpa_NK : NK ;
+fun ristiura_NK : NK ;
+fun ristiuraruuvi_NK : NK ;
+fun ristivaneri_NK : NK ;
+fun ristiverinen_NK : NK ;
+fun ristiveto_NK : NK ;
+fun ristivyo'_NK : NK ;
+fun ristivyo'heitto_NK : NK ;
+fun ristivyo'ote_NK : NK ;
+fun ristia'ssa'_NK : NK ;
+fun risuaita_NK : NK ;
+fun risukasa_NK : NK ;
+fun risuparta_NK : NK ;
+fun risupartainen_NK : NK ;
+fun risusavotta_NK : NK ;
+fun ritariballadi_NK : NK ;
+fun ritarihuone_NK : NK ;
+fun ritarihyve_NK : NK ;
+fun ritarikannus_NK : NK ;
+fun ritarikunta_NK : NK ;
+fun ritarilaitos_NK : NK ;
+fun ritarilaulu_NK : NK ;
+fun ritarilinna_NK : NK ;
+fun ritarimerkki_NK : NK ;
+fun ritariromaani_NK : NK ;
+fun ritarirunous_NK : NK ;
+fun ritarisa'a'ty_NK : NK ;
+fun ritila'hylly_NK : NK ;
+fun ritila'matto_NK : NK ;
+fun rituaalimurha_NK : NK ;
+fun rituaaliteurastus_NK : NK ;
+fun ritvakoivu_NK : NK ;
+fun riuskaotteinen_NK : NK ;
+fun rivakkaotteinen_NK : NK ;
+fun rivija'sen_NK : NK ;
+fun rivikirjoitin_NK : NK ;
+fun rivikylvo'_NK : NK ;
+fun rivikylvo'kone_NK : NK ;
+fun rivimies_NK : NK ;
+fun rivimoottori_NK : NK ;
+fun rivitalo_NK : NK ;
+fun rivitaloalue_NK : NK ;
+fun rivitalohuoneisto_NK : NK ;
+fun rivitekniikka_NK : NK ;
+fun riviva'li_NK : NK ;
+fun rivopuheinen_NK : NK ;
+fun robottimainen_NK : NK ;
+fun robottitekniikka_NK : NK ;
+fun rockmusiikki_NK : NK ;
+fun rockooppera_NK : NK ;
+fun rockta'hti_NK : NK ;
+fun rockvideo_NK : NK ;
+fun rockyhtye_NK : NK ;
+fun rohdinkangas_NK : NK ;
+fun rohdoskasvi_NK : NK ;
+fun rohkaisuryyppy_NK : NK ;
+fun rohkeaotteinen_NK : NK ;
+fun rohkeapuheinen_NK : NK ;
+fun rohmukuoriainen_NK : NK ;
+fun rohtoema'kki_NK : NK ;
+fun roikkosopimus_NK : NK ;
+fun roikkulaukaus_NK : NK ;
+fun roikkupallo_NK : NK ;
+fun roiskela'ppa'_NK : NK ;
+fun roiskerappaus_NK : NK ;
+fun roiskevesi_NK : NK ;
+fun roistomainen_AK : AK ;
+fun rokkapata_NK : NK ;
+fun rokkimusiikki_NK : NK ;
+fun rokkivideo_NK : NK ;
+fun rokkiyhtye_NK : NK ;
+fun rokkoepidemia_NK : NK ;
+fun rokkotauti_NK : NK ;
+fun rokkovirus_NK : NK ;
+fun rokokoolipasto_NK : NK ;
+fun rokokootuoli_NK : NK ;
+fun rokokootyyli_NK : NK ;
+fun rokokootyylinen_NK : NK ;
+fun rokotusaine_NK : NK ;
+fun rokotusarpi_NK : NK ;
+fun rokotusneula_NK : NK ;
+fun rokotuspiikki_NK : NK ;
+fun rokotussuoja_NK : NK ;
+fun rokotustodistus_NK : NK ;
+fun rokulipa'iva'_NK : NK ;
+fun romaanihenkilo'_NK : NK ;
+fun romaanikirjailija_NK : NK ;
+fun romaanika'a'nno's_NK : NK ;
+fun romaanisankari_NK : NK ;
+fun romaanisarja_NK : NK ;
+fun romaanitaide_NK : NK ;
+fun romaanitrilogia_NK : NK ;
+fun romaanituotanto_NK : NK ;
+fun romadurjuusto_NK : NK ;
+fun romahdusmainen_AK : AK ;
+fun romanialainen_NK : NK ;
+fun romanikulttuuri_NK : NK ;
+fun romanimies_NK : NK ;
+fun romaninainen_NK : NK ;
+fun romaniva'esto'_NK : NK ;
+fun romaniyhteiso'_NK : NK ;
+fun rommipullo_NK : NK ;
+fun rommitoti_NK : NK ;
+fun rommiviina_NK : NK ;
+fun romuarvo_NK : NK ;
+fun romuauto_NK : NK ;
+fun romukasa_NK : NK ;
+fun romukauppa_NK : NK ;
+fun romukoppa_NK : NK ;
+fun romuliike_NK : NK ;
+fun romuluinen_NK : NK ;
+fun romumetalli_NK : NK ;
+fun romuralli_NK : NK ;
+fun romurauta_NK : NK ;
+fun romuvarasto_NK : NK ;
+fun rooliajattelu_NK : NK ;
+fun rooliasenne_NK : NK ;
+fun roolihahmo_NK : NK ;
+fun roolijako_NK : NK ;
+fun roolileikki_NK : NK ;
+fun roolimeikki_NK : NK ;
+fun roolimiehitys_NK : NK ;
+fun rooliodotus_NK : NK ;
+fun roolipeli_NK : NK ;
+fun rooliruno_NK : NK ;
+fun roolisuoritus_NK : NK ;
+fun roolivaatimus_NK : NK ;
+fun roquefortjuusto_NK : NK ;
+fun rosettirauta_NK : NK ;
+fun rosmariinio'ljy_NK : NK ;
+fun rosvojoukko_NK : NK ;
+fun rosvokopla_NK : NK ;
+fun rosvopaisti_NK : NK ;
+fun rosvopa'a'llikko'_NK : NK ;
+fun rotaatiokone_NK : NK ;
+fun rotaatiopaino_NK : NK ;
+fun rotaatiopainokone_NK : NK ;
+fun rotevatekoinen_NK : NK ;
+fun rottamainen_NK : NK ;
+fun rottasota_NK : NK ;
+fun rottinkikori_NK : NK ;
+fun rottinkituoli_NK : NK ;
+fun rotuerottelu_NK : NK ;
+fun rotuhygienia_NK : NK ;
+fun rotukissa_NK : NK ;
+fun rotukoira_NK : NK ;
+fun rotumellakka_NK : NK ;
+fun rotumerkki_NK : NK ;
+fun rotunainen_NK : NK ;
+fun rotuominaisuus_NK : NK ;
+fun rotuoppi_NK : NK ;
+fun rotupuhdas_NK : NK ;
+fun rotupuhtaus_NK : NK ;
+fun rotusorto_NK : NK ;
+fun rotusyrjinta'_NK : NK ;
+fun rotuviha_NK : NK ;
+fun rotuylpeys_NK : NK ;
+fun rouhelimppu_NK : NK ;
+fun rouhemylly_NK : NK ;
+fun rouhesa'mpyla'_NK : NK ;
+fun routakerros_NK : NK ;
+fun routaraja_NK : NK ;
+fun routavahinko_NK : NK ;
+fun routavaurio_NK : NK ;
+fun rouvamainen_NK : NK ;
+fun rouvamalli_NK : NK ;
+fun rovastikunta_NK : NK ;
+fun rovastikuntakokous_NK : NK ;
+fun rubiinisormus_NK : NK ;
+fun rugbyjoukkue_NK : NK ;
+fun rugbyottelu_NK : NK ;
+fun ruhjevamma_NK : NK ;
+fun ruhjevyo'hyke_NK : NK ;
+fun ruhtinashuone_NK : NK ;
+fun ruhtinaskunta_NK : NK ;
+fun ruhtinaspari_NK : NK ;
+fun ruhtinassuku_NK : NK ;
+fun ruisjauho_NK : NK ;
+fun ruiskaunokki_NK : NK ;
+fun ruiskeliuos_NK : NK ;
+fun ruiskorppu_NK : NK ;
+fun ruiskukka_NK : NK ;
+fun ruiskulakkaus_NK : NK ;
+fun ruiskumaalaus_NK : NK ;
+fun ruiskupistooli_NK : NK ;
+fun ruiskusuolaus_NK : NK ;
+fun ruiskutusmoottori_NK : NK ;
+fun ruiskutuspumppu_NK : NK ;
+fun ruislajike_NK : NK ;
+fun ruisleipa'_NK : NK ;
+fun ruisleipa'viipale_NK : NK ;
+fun ruislimppu_NK : NK ;
+fun ruislintu_NK : NK ;
+--? fun ruismaltaat_NK : NK ;
+fun ruispelto_NK : NK ;
+fun ruispuuro_NK : NK ;
+fun ruissato_NK : NK ;
+fun rukoilijasirkka_NK : NK ;
+fun rukousasento_NK : NK ;
+fun rukoushuone_NK : NK ;
+fun rukouskammio_NK : NK ;
+fun rukouskirja_NK : NK ;
+fun rukousmatto_NK : NK ;
+fun rukousmylly_NK : NK ;
+fun rukousnauha_NK : NK ;
+fun rukouspa'iva'_NK : NK ;
+fun rukoussunnuntai_NK : NK ;
+fun rukoustilaisuus_NK : NK ;
+fun rulettipo'yta'_NK : NK ;
+fun rullafilmi_NK : NK ;
+fun rullahiihto_NK : NK ;
+fun rullakaihdin_NK : NK ;
+fun rullalaakeri_NK : NK ;
+fun rullalanka_NK : NK ;
+fun rullalauta_NK : NK ;
+fun rullalautailija_NK : NK ;
+fun rullalautailu_NK : NK ;
+fun rullalautaramppi_NK : NK ;
+fun rullalava_NK : NK ;
+fun rullaluistelu_NK : NK ;
+fun rullaluistin_NK : NK ;
+fun rullamitta_NK : NK ;
+fun rullaovi_NK : NK ;
+fun rullapaali_NK : NK ;
+fun rullarata_NK : NK ;
+fun rullasuksi_NK : NK ;
+fun rullasyltty_NK : NK ;
+fun rullatuoli_NK : NK ;
+fun rullaverho_NK : NK ;
+fun rullavyo'_NK : NK ;
+fun rumapiirteinen_NK : NK ;
+fun rumasointinen_NK : NK ;
+fun rumasointuinen_NK : NK ;
+fun rumaa'a'ninen_NK : NK ;
+fun rumpalipoika_NK : NK ;
+fun rumpujarru_NK : NK ;
+fun rumpukalvo_NK : NK ;
+fun rumpukapula_NK : NK ;
+fun rumpukone_NK : NK ;
+fun rumpukuivuri_NK : NK ;
+fun rumpulipas_NK : NK ;
+fun rumpupalikka_NK : NK ;
+fun rumpusatsi_NK : NK ;
+fun rumpusetti_NK : NK ;
+fun rumpusoolo_NK : NK ;
+fun rumputuli_NK : NK ;
+fun runkohinta_NK : NK ;
+fun runkokauppa_NK : NK ;
+fun runkokunta_NK : NK ;
+fun runkoluku_NK : NK ;
+fun runkopalkki_NK : NK ;
+fun runkopatja_NK : NK ;
+fun runkopuu_NK : NK ;
+fun runkorakenne_NK : NK ;
+fun runkosarja_NK : NK ;
+fun runkosopimus_NK : NK ;
+fun runkotie_NK : NK ;
+fun runkoa'a'ni_NK : NK ;
+fun runoantologia_NK : NK ;
+fun runoasu_NK : NK ;
+fun runodraama_NK : NK ;
+fun runoeepos_NK : NK ;
+fun runoilijanimi_NK : NK ;
+fun runojalka_NK : NK ;
+fun runokieli_NK : NK ;
+fun runokirja_NK : NK ;
+fun runokokoelma_NK : NK ;
+fun runokuva_NK : NK ;
+fun runoka'a'nno's_NK : NK ;
+fun runolaulu_NK : NK ;
+fun runomitallinen_NK : NK ;
+fun runomitta_NK : NK ;
+fun runomittainen_NK : NK ;
+fun runomittaoppi_NK : NK ;
+fun runomuoto_NK : NK ;
+fun runomuotoinen_NK : NK ;
+fun runona'ytelma'_NK : NK ;
+fun runopolvi_NK : NK ;
+fun runoratsu_NK : NK ;
+fun runorytmi_NK : NK ;
+fun runosarja_NK : NK ;
+fun runosatu_NK : NK ;
+fun runoseppo_NK : NK ;
+fun runoseppa'_NK : NK ;
+fun runosikerma'_NK : NK ;
+fun runosuomennos_NK : NK ;
+fun runosuoni_NK : NK ;
+fun runosa'e_NK : NK ;
+fun runosa'keisto'_NK : NK ;
+fun runosa'velma'_NK : NK ;
+fun runotaide_NK : NK ;
+fun runoteos_NK : NK ;
+fun runotoisinto_NK : NK ;
+fun runotuotanto_NK : NK ;
+fun runousopillinen_NK : NK ;
+fun runousoppi_NK : NK ;
+fun runovalikoima_NK : NK ;
+fun runsasaktiivinen_NK : NK ;
+fun runsashiilinen_NK : NK ;
+fun runsasja'rvinen_NK : NK ;
+fun runsaska'tinen_AK : AK ;
+fun runsaslajinen_NK : NK ;
+fun runsaslukuinen_AK : AK ;
+fun runsasluminen_NK : NK ;
+fun runsasmuotoinen_NK : NK ;
+fun runsassanainen_NK : NK ;
+fun runsassateinen_NK : NK ;
+fun runsassatoinen_NK : NK ;
+fun runsastuloinen_NK : NK ;
+fun runsastuottoinen_NK : NK ;
+fun runsasto'inen_NK : NK ;
+fun ruoanlaittotaito_NK : NK ;
+fun ruoanlaittotaitoinen_NK : NK ;
+fun ruoansulatuselimisto'_NK : NK ;
+fun ruoansulatusentsyymi_NK : NK ;
+fun ruoansulatusha'irio'_NK : NK ;
+fun ruoansulatuskanava_NK : NK ;
+fun ruoansulatusneste_NK : NK ;
+fun ruoansulatusrauhanen_NK : NK ;
+fun ruoanvalmistusohje_NK : NK ;
+fun ruodelaudoitus_NK : NK ;
+fun ruodelauta_NK : NK ;
+fun ruohokasvi_NK : NK ;
+fun ruohokentta'_NK : NK ;
+fun ruohokorpi_NK : NK ;
+fun ruoholaukka_NK : NK ;
+fun ruohomatto_NK : NK ;
+fun ruohoma'ta's_NK : NK ;
+fun ruohosipuli_NK : NK ;
+fun ruohotukko_NK : NK ;
+fun ruohovarsi_NK : NK ;
+fun ruohovartinen_NK : NK ;
+fun ruoka_aineallergia_NK : NK ;
+fun ruoka_aineympyra'_NK : NK ;
+fun ruokaetikka_NK : NK ;
+fun ruokahalu_NK : NK ;
+fun ruokahaluton_NK : NK ;
+fun ruokahuolto_NK : NK ;
+fun ruokailuhuone_NK : NK ;
+fun ruokailunurkkaus_NK : NK ;
+fun ruokailuryhma'_NK : NK ;
+fun ruokailusyvennys_NK : NK ;
+fun ruokailutauko_NK : NK ;
+fun ruokailutila_NK : NK ;
+fun ruokailutottumus_NK : NK ;
+fun ruokailuva'line_NK : NK ;
+fun ruokajono_NK : NK ;
+fun ruokajuoma_NK : NK ;
+fun ruokakaappi_NK : NK ;
+fun ruokakauppa_NK : NK ;
+fun ruokakellari_NK : NK ;
+fun ruokakello_NK : NK ;
+fun ruokakomero_NK : NK ;
+fun ruokakori_NK : NK ;
+fun ruokakulttuuri_NK : NK ;
+fun ruokakunta_NK : NK ;
+fun ruokakuppi_NK : NK ;
+fun ruokalaji_NK : NK ;
+fun ruokalappu_NK : NK ;
+fun ruokalasku_NK : NK ;
+fun ruokaleipa'_NK : NK ;
+fun ruokalepo_NK : NK ;
+fun ruokaliina_NK : NK ;
+fun ruokalippu_NK : NK ;
+fun ruokalista_NK : NK ;
+fun ruokalusikka_NK : NK ;
+fun ruokamakkara_NK : NK ;
+fun ruokamulta_NK : NK ;
+fun ruokamyrkytys_NK : NK ;
+fun ruokaohje_NK : NK ;
+fun ruokaomena_NK : NK ;
+fun ruokaostos_NK : NK ;
+fun ruokapaikka_NK : NK ;
+fun ruokapalkka_NK : NK ;
+fun ruokapaprika_NK : NK ;
+fun ruokaparsa_NK : NK ;
+fun ruokaperinne_NK : NK ;
+fun ruokaperuna_NK : NK ;
+--? fun ruokapidot_NK : NK ;
+fun ruokapiiri_NK : NK ;
+fun ruokapo'yta'_NK : NK ;
+fun ruokaraha_NK : NK ;
+fun ruokarauha_NK : NK ;
+fun ruokaresepti_NK : NK ;
+fun ruokarukous_NK : NK ;
+fun ruokaryyppy_NK : NK ;
+fun ruokasalaatti_NK : NK ;
+fun ruokasali_NK : NK ;
+fun ruokasieni_NK : NK ;
+fun ruokasipuli_NK : NK ;
+fun ruokasooda_NK : NK ;
+fun ruokasula_NK : NK ;
+fun ruokasuola_NK : NK ;
+fun ruokatalous_NK : NK ;
+fun ruokatarjoilu_NK : NK ;
+fun ruokatarvike_NK : NK ;
+fun ruokatauko_NK : NK ;
+fun ruokatavara_NK : NK ;
+fun ruokatavarakauppa_NK : NK ;
+fun ruokatermos_NK : NK ;
+fun ruokatorvi_NK : NK ;
+fun ruokatottumus_NK : NK ;
+fun ruokatunti_NK : NK ;
+fun ruokavalio_NK : NK ;
+fun ruokavaliohoito_NK : NK ;
+fun ruokavieras_NK : NK ;
+fun ruokaviini_NK : NK ;
+fun ruokao'ljy_NK : NK ;
+fun ruokintakatos_NK : NK ;
+fun ruokintapo'yta'_NK : NK ;
+fun ruokokasvi_NK : NK ;
+fun ruokokerttunen_NK : NK ;
+fun ruokomatto_NK : NK ;
+fun ruokopilli_NK : NK ;
+fun ruokosokeri_NK : NK ;
+fun ruoppauskauha_NK : NK ;
+fun ruorijuoppo_NK : NK ;
+fun ruorijuoppous_NK : NK ;
+fun ruorimies_NK : NK ;
+fun ruoriratas_NK : NK ;
+fun ruosteenestoaine_NK : NK ;
+fun ruosteenestomaali_NK : NK ;
+fun ruostekerros_NK : NK ;
+fun ruostekerrostuma_NK : NK ;
+fun ruostepilkku_NK : NK ;
+fun ruostesieni_NK : NK ;
+fun ruostesuojaus_NK : NK ;
+fun ruosteta'pla'_NK : NK ;
+fun ruostevapaa_NK : NK ;
+fun ruotujako_NK : NK ;
+fun ruotujakolaitos_NK : NK ;
+fun ruotukaveri_NK : NK ;
+fun ruotutila_NK : NK ;
+fun ruotuva'ki_NK : NK ;
+fun rupikonna_NK : NK ;
+fun rupisammakko_NK : NK ;
+fun rusettiluistelu_NK : NK ;
+fun rusettinauha_NK : NK ;
+fun rusettisolmu_NK : NK ;
+fun rusinakakku_NK : NK ;
+fun rusinakeitto_NK : NK ;
+fun rusinapulla_NK : NK ;
+fun ruskeaihoinen_NK : NK ;
+fun ruskeakielinen_NK : NK ;
+fun ruskeasilma'inen_NK : NK ;
+fun ruskeatukkainen_NK : NK ;
+fun ruskeavetinen_NK : NK ;
+fun ruskistusvastus_NK : NK ;
+fun ruskohiili_NK : NK ;
+fun ruskoleva'_NK : NK ;
+fun ruskolilja_NK : NK ;
+fun ruskomaa_NK : NK ;
+fun ruskosammal_NK : NK ;
+fun rusohiukkanen_NK : NK ;
+fun rusohuuli_NK : NK ;
+fun rusohuulinen_NK : NK ;
+fun rusoposki_NK : NK ;
+fun rusoposkinen_NK : NK ;
+fun rustiikkatiili_NK : NK ;
+fun rustokala_NK : NK ;
+fun rustokudos_NK : NK ;
+fun rutiiniluonteinen_NK : NK ;
+fun rutiinimainen_AK : AK ;
+fun rutiinitehta'va'_NK : NK ;
+fun rutiinityo'_NK : NK ;
+fun ruttotauti_NK : NK ;
+fun ruttotautinen_NK : NK ;
+fun ruuhkahuippu_NK : NK ;
+fun ruuhkaliikenne_NK : NK ;
+fun ruuhkalinja_NK : NK ;
+fun ruuhkatunti_NK : NK ;
+fun ruuhkavuoro_NK : NK ;
+fun ruukkukasvi_NK : NK ;
+fun ruukkukukka_NK : NK ;
+fun ruukkurusina_NK : NK ;
+fun ruukkusalaatti_NK : NK ;
+fun ruukkutaimi_NK : NK ;
+fun ruukkuviljely_NK : NK ;
+fun ruumisarkku_NK : NK ;
+fun ruumisarkkuliike_NK : NK ;
+fun ruumisauto_NK : NK ;
+fun ruumishuone_NK : NK ;
+fun ruumiskellari_NK : NK ;
+fun ruumiskirstu_NK : NK ;
+fun ruumiskylmio'_NK : NK ;
+fun ruumismyrkky_NK : NK ;
+fun ruumissaatto_NK : NK ;
+fun ruumistuma_NK : NK ;
+fun ruusuikkuna_NK : NK ;
+fun ruusukaali_NK : NK ;
+fun ruusukasvi_NK : NK ;
+fun ruusukenauha_NK : NK ;
+fun ruusukimppu_NK : NK ;
+fun ruusukivi_NK : NK ;
+fun ruusukuvio_NK : NK ;
+fun ruusukvartsi_NK : NK ;
+fun ruusukvitteni_NK : NK ;
+fun ruusuko'ynno's_NK : NK ;
+fun ruusulajike_NK : NK ;
+fun ruusuleinikki_NK : NK ;
+fun ruusumainen_NK : NK ;
+fun ruusunmarjakeitto_NK : NK ;
+fun ruusunmarjasose_NK : NK ;
+fun ruusunmarjatee_NK : NK ;
+fun ruusupapu_NK : NK ;
+fun ruusupenkki_NK : NK ;
+fun ruusupensas_NK : NK ;
+fun ruusupippuri_NK : NK ;
+fun ruusupuu_NK : NK ;
+fun ruusupuuo'ljy_NK : NK ;
+fun ruusuruoho_NK : NK ;
+fun ruususeppele_NK : NK ;
+fun ruusutarha_NK : NK ;
+fun ruusuvesi_NK : NK ;
+fun ruusuo'ljy_NK : NK ;
+fun ruutikuiva_NK : NK ;
+fun ruutipanos_NK : NK ;
+fun ruutitynnyri_NK : NK ;
+fun ruutuhyppely_NK : NK ;
+fun ruutukaava_NK : NK ;
+fun ruutukuningas_NK : NK ;
+fun ruutukylvo'_NK : NK ;
+fun ruutulippu_NK : NK ;
+fun ruutupaperi_NK : NK ;
+fun ruuturouva_NK : NK ;
+fun ruutua'ssa'_NK : NK ;
+fun ruuviavain_NK : NK ;
+fun ruuvikierre_NK : NK ;
+fun ruuvikierteinen_NK : NK ;
+fun ruuvikiinnitys_NK : NK ;
+fun ruuvikoukku_NK : NK ;
+fun ruuvikuljetin_NK : NK ;
+fun ruuviliike_NK : NK ;
+fun ruuviliitos_NK : NK ;
+fun ruuvimainen_NK : NK ;
+fun ruuvimeisseli_NK : NK ;
+fun ruuvipenkki_NK : NK ;
+fun ruuvipinta_NK : NK ;
+fun ruuvipumppu_NK : NK ;
+fun ruuvipuristin_NK : NK ;
+fun ruuvipyo'ra'_NK : NK ;
+fun ruuvitaltta_NK : NK ;
+fun ruuvitunkki_NK : NK ;
+fun ruuviura_NK : NK ;
+fun ruuviviiva_NK : NK ;
+fun ryhmitysalue_NK : NK ;
+fun ryhmysauva_NK : NK ;
+fun ryhma'ajo_NK : NK ;
+fun ryhma'alennus_NK : NK ;
+fun ryhma'ase_NK : NK ;
+fun ryhma'jako_NK : NK ;
+fun ryhma'johto_NK : NK ;
+fun ryhma'kasvi_NK : NK ;
+fun ryhma'keskus_NK : NK ;
+fun ryhma'keskustelu_NK : NK ;
+fun ryhma'kirje_NK : NK ;
+fun ryhma'kokous_NK : NK ;
+fun ryhma'koti_NK : NK ;
+fun ryhma'kunta_NK : NK ;
+fun ryhma'kuri_NK : NK ;
+fun ryhma'kuva_NK : NK ;
+fun ryhma'lippu_NK : NK ;
+fun ryhma'la'hto'_NK : NK ;
+fun ryhma'matka_NK : NK ;
+fun ryhma'matkailu_NK : NK ;
+fun ryhma'opetus_NK : NK ;
+fun ryhma'pa'a'to's_NK : NK ;
+fun ryhma'ruusu_NK : NK ;
+fun ryhma'sana_NK : NK ;
+fun ryhma'seksi_NK : NK ;
+fun ryhma'sihteeri_NK : NK ;
+fun ryhma'terapia_NK : NK ;
+fun ryhma'tuki_NK : NK ;
+fun ryhma'tyo'_NK : NK ;
+fun ryhma'tyo'huone_NK : NK ;
+fun ryhma'vakuutus_NK : NK ;
+fun ryhma'voimistelu_NK : NK ;
+fun ryhtiliike_NK : NK ;
+fun ryhtivika_NK : NK ;
+fun ryhtivirhe_NK : NK ;
+fun ryijymatto_NK : NK ;
+fun rymyjuhla_NK : NK ;
+fun rynkkyhame_NK : NK ;
+fun rynna'kko'ha'vitta'ja'_NK : NK ;
+fun rynna'kko'kiva'a'ri_NK : NK ;
+fun rynna'kko'kone_NK : NK ;
+fun rynna'kko'tykki_NK : NK ;
+fun rynna'kko'vaunu_NK : NK ;
+fun ryppyisyys_NK : NK ;
+fun ryppynauha_NK : NK ;
+fun ryppyotsainen_AK : AK ;
+fun ryppyvoide_NK : NK ;
+fun rypsipelto_NK : NK ;
+fun rypsio'ljy_NK : NK ;
+fun rypa'lemehu_NK : NK ;
+fun rypa'lepommi_NK : NK ;
+fun rypa'leraskaus_NK : NK ;
+fun rypa'lesokeri_NK : NK ;
+fun rypa'leterttu_NK : NK ;
+fun rypa'leviini_NK : NK ;
+fun rystylaukaus_NK : NK ;
+fun rystylyo'nti_NK : NK ;
+fun rystypuoli_NK : NK ;
+fun rystyveto_NK : NK ;
+fun rysa'kalastus_NK : NK ;
+fun rytikerttunen_NK : NK ;
+fun rytmiha'irio'_NK : NK ;
+fun rytmikaava_NK : NK ;
+fun rytmikone_NK : NK ;
+fun rytmikorva_NK : NK ;
+fun rytmikuvio_NK : NK ;
+fun rytmimenetelma'_NK : NK ;
+fun rytmimusiikki_NK : NK ;
+fun rytmioppi_NK : NK ;
+fun rytmiryhma'_NK : NK ;
+fun rytmisoitin_NK : NK ;
+fun rytmitaju_NK : NK ;
+fun ryva'ssipuli_NK : NK ;
+fun ryynimakkara_NK : NK ;
+fun ryyppykaveri_NK : NK ;
+fun ryyppykierre_NK : NK ;
+fun ryyppymies_NK : NK ;
+fun ryyppyreissu_NK : NK ;
+fun ryyppyseura_NK : NK ;
+fun ryyppyveikko_NK : NK ;
+fun ryytijuusto_NK : NK ;
+fun ryytimaa_NK : NK ;
+fun ryo'minta'vaihde_NK : NK ;
+fun ryo'sto'hakkuu_NK : NK ;
+fun ryo'sto'kalastus_NK : NK ;
+fun ryo'sto'metsa'stys_NK : NK ;
+fun ryo'sto'murha_NK : NK ;
+fun ryo'sto'retki_NK : NK ;
+fun ryo'sto'saalis_NK : NK ;
+fun ryo'sto'talous_NK : NK ;
+fun ryo'sto'viljely_NK : NK ;
+fun ra'hina'remmi_NK : NK ;
+fun ra'ikea'va'rinen_NK : NK ;
+fun ra'ikka'va'a'nnin_NK : NK ;
+fun ra'ja'hdysaine_NK : NK ;
+fun ra'ja'hdysainelataus_NK : NK ;
+fun ra'ja'hdysherkkyys_NK : NK ;
+fun ra'ja'hdysherkka'_NK : NK ;
+fun ra'ja'hdyskaasu_NK : NK ;
+fun ra'ja'hdysnopeus_NK : NK ;
+fun ra'ja'hdyspanos_NK : NK ;
+fun ra'ja'hdyspiste_NK : NK ;
+fun ra'ja'hdysvaara_NK : NK ;
+fun ra'ja'hdysvoima_NK : NK ;
+fun ra'ja'hdysvoimakkuus_NK : NK ;
+fun ra'ka'ka'nni_NK : NK ;
+fun ra'ka'nena'_NK : NK ;
+fun ra'ka'nena'inen_NK : NK ;
+fun ra'ka'nokka_NK : NK ;
+fun ra'ka'nokkainen_NK : NK ;
+fun ra'ka'tauti_NK : NK ;
+fun ra'ka'ttirastas_NK : NK ;
+fun ra'lssimaa_NK : NK ;
+fun ra'lssitila_NK : NK ;
+fun ra'meletto_NK : NK ;
+fun ra'memajava_NK : NK ;
+fun ra'memetsa'_NK : NK ;
+fun ra'mesuo_NK : NK ;
+fun ra'ma'pa'inen_AK : AK ;
+fun ra'ma'pa'a'_NK : NK ;
+fun ra'nta'kuuro_NK : NK ;
+fun ra'nta'lumi_NK : NK ;
+fun ra'nta'sade_NK : NK ;
+fun ra'ppimusiikki_NK : NK ;
+fun ra'pyla'jalka_NK : NK ;
+fun ra'stikanto_NK : NK ;
+fun ra'stimaksu_NK : NK ;
+fun ra'stiottelu_NK : NK ;
+fun ra'symatto_NK : NK ;
+fun ra'synukke_NK : NK ;
+fun ra'sypokka_NK : NK ;
+fun ra'ttikatto_NK : NK ;
+fun ra'ttikauppa_NK : NK ;
+fun ra'ttimikko_NK : NK ;
+fun ra'ttipa'a'_NK : NK ;
+--? fun ra'ttiva'synyt_NK : NK ;
+fun ra'ysta'skorkeus_NK : NK ;
+fun ra'ysta'skouru_NK : NK ;
+fun ra'ysta'slista_NK : NK ;
+fun ra'ysta'spa'a'sky_NK : NK ;
+fun ra'ysta'storjunta_NK : NK ;
+fun ro'nsyleinikki_NK : NK ;
+fun ro'nsylilja_NK : NK ;
+fun ro'nsytaimi_NK : NK ;
+fun ro'nsyvarsi_NK : NK ;
+fun ro'ntgenfilmi_NK : NK ;
+fun ro'ntgenhoitaja_NK : NK ;
+fun ro'ntgenhoito_NK : NK ;
+fun ro'ntgenkone_NK : NK ;
+fun ro'ntgenkuva_NK : NK ;
+fun ro'ntgenkuvaus_NK : NK ;
+fun ro'ntgenlaite_NK : NK ;
+fun ro'ntgenla'hde_NK : NK ;
+fun ro'ntgenla'a'ka'ri_NK : NK ;
+fun ro'ntgenosasto_NK : NK ;
+fun ro'ntgenputki_NK : NK ;
+fun ro'ntgensa'de_NK : NK ;
+fun ro'ntgensa'teily_NK : NK ;
+fun ro'ntgentarkastus_NK : NK ;
+fun ro'ntgentutkimus_NK : NK ;
+fun ro'yhelo'kaulus_NK : NK ;
+fun ro'yhelo'paita_NK : NK ;
+fun ro'yhelo'pusero_NK : NK ;
+fun ro'yhykukinto_NK : NK ;
+fun ro'yhyvihvila'_NK : NK ;
+fun saagopalmu_NK : NK ;
+fun saalikaulus_NK : NK ;
+fun saalisela'in_NK : NK ;
+fun saalistusretki_NK : NK ;
+fun saamelainen_NK : NK ;
+fun saantokelpoinen_NK : NK ;
+fun saantokelpoisuus_NK : NK ;
+fun saantokirja_NK : NK ;
+--? fun saapashousut_NK : NK ;
+fun saapasjalkainen_NK : NK ;
+fun saapasmaa_NK : NK ;
+fun saapaspari_NK : NK ;
+fun saapasrasva_NK : NK ;
+fun saapasrenki_NK : NK ;
+fun saapasvarsi_NK : NK ;
+fun saaririkas_NK : NK ;
+fun saariryhma'_NK : NK ;
+fun saaristoalus_NK : NK ;
+fun saaristolainen_NK : NK ;
+fun saaristolaiva_NK : NK ;
+fun saaristolaivuri_NK : NK ;
+fun saaristoliikenne_NK : NK ;
+fun saaristopuhelin_NK : NK ;
+fun saaristoristeily_NK : NK ;
+fun saarivaltio_NK : NK ;
+fun saarnaajaveli_NK : NK ;
+fun saarnakirja_NK : NK ;
+fun saarnalupa_NK : NK ;
+fun saarnalupatutkinto_NK : NK ;
+fun saarnamatka_NK : NK ;
+fun saarnamies_NK : NK ;
+fun saarnanuotti_NK : NK ;
+fun saarnapo'ntto'_NK : NK ;
+fun saarnateksti_NK : NK ;
+fun saarnatuoli_NK : NK ;
+fun saarnavirsi_NK : NK ;
+fun saarrostushyo'kka'ys_NK : NK ;
+fun saarrostustaistelu_NK : NK ;
+fun saartoketju_NK : NK ;
+fun saartoliike_NK : NK ;
+fun saartorengas_NK : NK ;
+fun saastealue_NK : NK ;
+fun saastekertyma'_NK : NK ;
+fun saastekuormitus_NK : NK ;
+fun saastelaskeuma_NK : NK ;
+fun saasteongelma_NK : NK ;
+fun saastepilvi_NK : NK ;
+fun saastepa'a'sto'_NK : NK ;
+fun saatekirje_NK : NK ;
+fun saattohartaus_NK : NK ;
+fun saattohoitaja_NK : NK ;
+fun saattohoito_NK : NK ;
+fun saattohuone_NK : NK ;
+fun saattojoukko_NK : NK ;
+fun saattokoti_NK : NK ;
+fun saattoliike_NK : NK ;
+fun saattova'ki_NK : NK ;
+fun sabotaasiteko_NK : NK ;
+fun sabotaasitoiminta_NK : NK ;
+fun sadasosa_NK : NK ;
+fun sadasosasekunti_NK : NK ;
+fun sadealue_NK : NK ;
+fun sadeasu_NK : NK ;
+fun sadehattu_NK : NK ;
+fun sadehuppu_NK : NK ;
+fun sadeilma_NK : NK ;
+fun sadejakso_NK : NK ;
+fun sadekatos_NK : NK ;
+fun sadekaulus_NK : NK ;
+fun sadekausi_NK : NK ;
+fun sadekuuro_NK : NK ;
+fun sademetsa'_NK : NK ;
+fun sademittari_NK : NK ;
+fun sadema'a'ra'_NK : NK ;
+fun sadepilvi_NK : NK ;
+fun sadepisara_NK : NK ;
+fun sadepa'iva'_NK : NK ;
+fun saderyo'ppy_NK : NK ;
+fun sadesa'a'_NK : NK ;
+fun sadetakki_NK : NK ;
+fun sadetuskastelu_NK : NK ;
+fun sadetuslaite_NK : NK ;
+fun sadevaate_NK : NK ;
+fun sadevesi_NK : NK ;
+fun sadevesikaivo_NK : NK ;
+fun sadevesikouru_NK : NK ;
+fun sadevesisa'ilio'_NK : NK ;
+fun sadeviitta_NK : NK ;
+fun sadonkorjuutyo'_NK : NK ;
+fun safarijakku_NK : NK ;
+fun safaripuisto_NK : NK ;
+fun safaripuku_NK : NK ;
+fun safaripusero_NK : NK ;
+fun safarituoli_NK : NK ;
+fun safiirisormus_NK : NK ;
+fun saflorio'ljy_NK : NK ;
+fun sahajauho_NK : NK ;
+fun sahalaitainen_NK : NK ;
+fun sahalaitos_NK : NK ;
+fun sahamainen_NK : NK ;
+fun sahantera'kuvio_NK : NK ;
+fun sahapintainen_NK : NK ;
+fun sahapistia'inen_NK : NK ;
+fun sahapukki_NK : NK ;
+fun sahapuu_NK : NK ;
+fun sahatavara_NK : NK ;
+fun sahateollisuus_NK : NK ;
+fun sahatera'inen_NK : NK ;
+fun sahatukki_NK : NK ;
+fun sahausja'te_NK : NK ;
+fun saippuakotelo_NK : NK ;
+fun saippuakupla_NK : NK ;
+fun saippualiuos_NK : NK ;
+fun saippuaooppera_NK : NK ;
+fun saippuapala_NK : NK ;
+fun saippuapesu_NK : NK ;
+fun saippuapohjainen_NK : NK ;
+fun saippuasarja_NK : NK ;
+fun saippuavaahto_NK : NK ;
+fun saippuavesi_NK : NK ;
+fun sairaalafyysikko_NK : NK ;
+fun sairaalahartaus_NK : NK ;
+fun sairaalahenkilo'sto'_NK : NK ;
+fun sairaalahoito_NK : NK ;
+fun sairaalainfektio_NK : NK ;
+fun sairaalaja'te_NK : NK ;
+fun sairaalakemisti_NK : NK ;
+fun sairaalala'a'ka'ri_NK : NK ;
+fun sairaalamaksu_NK : NK ;
+fun sairaalapaikka_NK : NK ;
+fun sairaalapappi_NK : NK ;
+fun sairaalapotilas_NK : NK ;
+fun sairaalapo'po'_NK : NK ;
+fun sairaalarakennus_NK : NK ;
+fun sairaalaruoka_NK : NK ;
+fun sairaalateologi_NK : NK ;
+fun sairaankuljetusauto_NK : NK ;
+fun sairaankuljetuslento_NK : NK ;
+fun sairaankuljetuslentokone_NK : NK ;
+fun sairasauto_NK : NK ;
+fun sairasela'ke_NK : NK ;
+fun sairaskertomus_NK : NK ;
+fun sairaskohtaus_NK : NK ;
+fun sairaska'ynti_NK : NK ;
+fun sairaslista_NK : NK ;
+fun sairasloma_NK : NK ;
+fun sairasosasto_NK : NK ;
+fun sairastapaus_NK : NK ;
+fun sairasvakuutus_NK : NK ;
+fun sairausela'ke_NK : NK ;
+fun sairauskertomus_NK : NK ;
+fun sairauskohtaus_NK : NK ;
+fun sairausloma_NK : NK ;
+fun sairauspa'iva'_NK : NK ;
+fun sairauspa'iva'raha_NK : NK ;
+fun sairaustapaus_NK : NK ;
+fun sairaustila_NK : NK ;
+fun sairausvakuutus_NK : NK ;
+fun sairausvakuutuskortti_NK : NK ;
+fun sairausvakuutuskorvaus_NK : NK ;
+fun sairausvakuutusmaksu_NK : NK ;
+fun sairausvakuutustoimisto_NK : NK ;
+fun sala_ampuja_NK : NK ;
+fun salaattiannos_NK : NK ;
+fun salaattifenkoli_NK : NK ;
+fun salaattikaali_NK : NK ;
+fun salaattikastike_NK : NK ;
+fun salaattikasvi_NK : NK ;
+fun salaattikulho_NK : NK ;
+fun salaattilautanen_NK : NK ;
+fun salaattilinko_NK : NK ;
+fun salaattimauste_NK : NK ;
+fun salaattisikuri_NK : NK ;
+fun salahanke_NK : NK ;
+fun salaiva_NK : NK ;
+fun salajuoni_NK : NK ;
+fun salajuoppo_NK : NK ;
+fun salaja'rjesto'_NK : NK ;
+fun salakaato_NK : NK ;
+fun salakalastus_NK : NK ;
+fun salakari_NK : NK ;
+fun salakatselu_NK : NK ;
+fun salakatsoja_NK : NK ;
+fun salakauppa_NK : NK ;
+fun salakavala_NK : NK ;
+fun salakavaluus_NK : NK ;
+fun salakieli_NK : NK ;
+fun salakielinen_NK : NK ;
+fun salakielisanoma_NK : NK ;
+fun salakihlaus_NK : NK ;
+fun salakirjoitus_NK : NK ;
+fun salakirjoitusavain_NK : NK ;
+fun salakirjoitussanoma_NK : NK ;
+fun salakuljettaja_NK : NK ;
+fun salakuljetus_NK : NK ;
+fun salakuljetustavara_NK : NK ;
+fun salakuoppa_NK : NK ;
+fun salakuuntelija_NK : NK ;
+fun salakuuntelu_NK : NK ;
+fun salakytta'_NK : NK ;
+fun salaka'tko'_NK : NK ;
+fun salaka'yta'va'_NK : NK ;
+fun salaliitto_NK : NK ;
+fun salaliittolainen_NK : NK ;
+fun salalokero_NK : NK ;
+fun salaluukku_NK : NK ;
+fun salamahyo'kka'ys_NK : NK ;
+fun salamalaite_NK : NK ;
+fun salamalevy_NK : NK ;
+fun salamapallo_NK : NK ;
+fun salamasota_NK : NK ;
+fun salamatkustaja_NK : NK ;
+fun salamavalo_NK : NK ;
+fun salamavalolaite_NK : NK ;
+fun salamavauhti_NK : NK ;
+fun salametsa'stys_NK : NK ;
+fun salametsa'sta'ja'_NK : NK ;
+fun salamurha_NK : NK ;
+fun salamurhaaja_NK : NK ;
+fun salanimi_NK : NK ;
+fun salaoja_NK : NK ;
+fun salaojaputki_NK : NK ;
+fun salaojitus_NK : NK ;
+fun salaoppi_NK : NK ;
+fun salaovi_NK : NK ;
+fun salapera'inen_AK : AK ;
+fun salapera'isyys_NK : NK ;
+fun salapoliisi_NK : NK ;
+fun salapoliisiromaani_NK : NK ;
+fun salapolttaja_NK : NK ;
+fun salapolttimo_NK : NK ;
+fun salapoltto_NK : NK ;
+fun salasana_NK : NK ;
+fun salasanoma_NK : NK ;
+fun salaseura_NK : NK ;
+fun salassapito_NK : NK ;
+fun salatiede_NK : NK ;
+fun salikokki_NK : NK ;
+fun saliuskottava_NK : NK ;
+fun salivalvoja_NK : NK ;
+fun salkkujako_NK : NK ;
+fun salkkumikro_NK : NK ;
+fun salkopallo_NK : NK ;
+fun salkopapu_NK : NK ;
+fun salkoruusu_NK : NK ;
+fun salkotennis_NK : NK ;
+fun sallimususko_NK : NK ;
+fun salmiakkilakritsi_NK : NK ;
+fun salmiakkimakeinen_NK : NK ;
+fun salmiakkipastilli_NK : NK ;
+fun salmonellabakteeri_NK : NK ;
+fun salmonellaepidemia_NK : NK ;
+fun salokyla'_NK : NK ;
+fun salomaa_NK : NK ;
+fun salonkikelpoinen_AK : AK ;
+fun salonkikelpoisuus_NK : NK ;
+fun salonkileijona_NK : NK ;
+fun salonkimusiikki_NK : NK ;
+fun salonkiorkesteri_NK : NK ;
+fun salonkivaunu_NK : NK ;
+fun salonkiyhtye_NK : NK ;
+fun saloseutu_NK : NK ;
+fun salpahaka_NK : NK ;
+fun salpalaite_NK : NK ;
+fun salparauta_NK : NK ;
+fun samakantainen_NK : NK ;
+fun samakeskinen_NK : NK ;
+fun samala'hto'inen_NK : NK ;
+fun samamunainen_NK : NK ;
+fun samasanainen_NK : NK ;
+fun samasyntyinen_NK : NK ;
+fun sambakarnevaali_NK : NK ;
+fun sameavetinen_NK : NK ;
+--? fun samettifarkut_NK : NK ;
+--? fun samettihousut_NK : NK ;
+fun samettikukka_NK : NK ;
+fun samettiminkki_NK : NK ;
+fun samettinukka_NK : NK ;
+fun samettipiisami_NK : NK ;
+fun samettipuku_NK : NK ;
+fun samettisilma'_NK : NK ;
+fun samettisilma'inen_NK : NK ;
+fun samettitatti_NK : NK ;
+fun samettityyny_NK : NK ;
+fun sammakkoela'in_NK : NK ;
+fun sammakkomies_NK : NK ;
+fun sammalela'in_NK : NK ;
+fun sammalkasvi_NK : NK ;
+fun sammalmatto_NK : NK ;
+fun sammalma'ta's_NK : NK ;
+fun sammalpeite_NK : NK ;
+fun sammalpeitteinen_NK : NK ;
+fun sammalturve_NK : NK ;
+fun sammutusjauhe_NK : NK ;
+fun sammutuskalusto_NK : NK ;
+fun sammutuspeite_NK : NK ;
+fun sammutustyo'_NK : NK ;
+fun sammutusvaahto_NK : NK ;
+fun sammutusvesi_NK : NK ;
+fun samojedikieli_NK : NK ;
+fun sampikala_NK : NK ;
+fun samppanjalasi_NK : NK ;
+fun samppanjapullo_NK : NK ;
+fun samppanjavispila'_NK : NK ;
+fun samumtuuli_NK : NK ;
+fun sanahakemisto_NK : NK ;
+fun sanahelina'_NK : NK ;
+fun sanahirvio'_NK : NK ;
+fun sanaja'rjestys_NK : NK ;
+fun sanakirja_NK : NK ;
+fun sanakirjatyo'_NK : NK ;
+fun sanaka'a'nne_NK : NK ;
+fun sanaleikki_NK : NK ;
+fun sanaliitto_NK : NK ;
+fun sanaluettelo_NK : NK ;
+fun sanaluokka_NK : NK ;
+fun sanamuoto_NK : NK ;
+fun sananiekka_NK : NK ;
+fun sanaoppi_NK : NK ;
+fun sanapaino_NK : NK ;
+fun sanaraja_NK : NK ;
+fun sanaristikko_NK : NK ;
+fun sanaryo'ppy_NK : NK ;
+fun sanasanainen_NK : NK ;
+fun sanaseppo_NK : NK ;
+fun sanaseppa'_NK : NK ;
+fun sanasokeus_NK : NK ;
+fun sanasota_NK : NK ;
+fun sanasutkaus_NK : NK ;
+fun sanatabu_NK : NK ;
+fun sanataide_NK : NK ;
+fun sanataituri_NK : NK ;
+fun sanataituruus_NK : NK ;
+fun sanatarkka_NK : NK ;
+fun sanatulva_NK : NK ;
+fun sanavalmis_NK : NK ;
+fun sanavalmius_NK : NK ;
+fun sanavarasto_NK : NK ;
+fun sanavuolaus_NK : NK ;
+fun sanava'li_NK : NK ;
+fun sanelukone_NK : NK ;
+fun sanelulaite_NK : NK ;
+fun sanelupolitiikka_NK : NK ;
+fun saneluratkaisu_NK : NK ;
+fun sankarieepos_NK : NK ;
+fun sankarihahmo_NK : NK ;
+fun sankarihauta_NK : NK ;
+fun sankarikuolema_NK : NK ;
+fun sankarimaine_NK : NK ;
+fun sankaripalvonta_NK : NK ;
+fun sankaripatsas_NK : NK ;
+fun sankariruno_NK : NK ;
+fun sankarirunous_NK : NK ;
+fun sankaritarina_NK : NK ;
+fun sankariteko_NK : NK ;
+fun sankaritenori_NK : NK ;
+fun sankarivainaja_NK : NK ;
+fun sankoruisku_NK : NK ;
+fun sanomalehdisto'_NK : NK ;
+fun sanomalehti_NK : NK ;
+fun sanomalehtikatsaus_NK : NK ;
+fun sanomalehtimies_NK : NK ;
+fun sanomalehtipaperi_NK : NK ;
+fun sanontatapa_NK : NK ;
+fun santarmiupseeri_NK : NK ;
+fun saostuma_NK : NK ;
+fun saostusaine_NK : NK ;
+fun saostusallas_NK : NK ;
+fun saostuskaivo_NK : NK ;
+fun sapattivapaa_NK : NK ;
+fun sapattivuosi_NK : NK ;
+fun sappihappo_NK : NK ;
+fun sappikivi_NK : NK ;
+fun sappikivikohtaus_NK : NK ;
+fun sappikivitauti_NK : NK ;
+fun sappineste_NK : NK ;
+fun sappirakko_NK : NK ;
+fun sappitatti_NK : NK ;
+fun sappitie_NK : NK ;
+--? fun sappitiehyt_NK : NK ;
+fun saranapuoli_NK : NK ;
+fun sardiinipurkki_NK : NK ;
+fun sardiinirasia_NK : NK ;
+fun sardiinisa'ilyke_NK : NK ;
+fun sardiinio'ljy_NK : NK ;
+fun sarjafilmi_NK : NK ;
+fun sarjajako_NK : NK ;
+fun sarjajoukkue_NK : NK ;
+fun sarjajulkaisu_NK : NK ;
+fun sarjakamera_NK : NK ;
+fun sarjakausi_NK : NK ;
+fun sarjakierros_NK : NK ;
+fun sarjakukinto_NK : NK ;
+fun sarjakukkainen_NK : NK ;
+fun sarjakuva_NK : NK ;
+fun sarjakuvakirja_NK : NK ;
+fun sarjakuvalehti_NK : NK ;
+fun sarjakuvanovelli_NK : NK ;
+fun sarjakuvapiirta'ja'_NK : NK ;
+fun sarjakuvasankari_NK : NK ;
+fun sarjakuvataiteilija_NK : NK ;
+fun sarjakuvaus_NK : NK ;
+fun sarjakytkenta'_NK : NK ;
+fun sarjalainen_NK : NK ;
+fun sarjalippu_NK : NK ;
+fun sarjamurha_NK : NK ;
+fun sarjanousija_NK : NK ;
+fun sarjanumero_NK : NK ;
+fun sarjana'ytelma'_NK : NK ;
+fun sarjaohjelma_NK : NK ;
+fun sarjaottelu_NK : NK ;
+fun sarjapaikka_NK : NK ;
+fun sarjapelaaja_NK : NK ;
+fun sarjapeli_NK : NK ;
+fun sarjapiste_NK : NK ;
+fun sarjapo'yta'_NK : NK ;
+fun sarjarimpi_NK : NK ;
+fun sarjataulukko_NK : NK ;
+fun sarjatuli_NK : NK ;
+fun sarjatulokas_NK : NK ;
+fun sarjatuotanto_NK : NK ;
+fun sarjatuote_NK : NK ;
+fun sarjatyo'_NK : NK ;
+fun sarjavalmiste_NK : NK ;
+fun sarjavalmistus_NK : NK ;
+--? fun sarkahousut_NK : NK ;
+fun sarkainna'ppa'in_NK : NK ;
+fun sarkajako_NK : NK ;
+fun sarkaoja_NK : NK ;
+fun sarkatakki_NK : NK ;
+fun sarvija'a'ra'_NK : NK ;
+fun sarvikruunu_NK : NK ;
+fun sarvikuono_NK : NK ;
+fun sarvimiina_NK : NK ;
+fun sarviniekka_NK : NK ;
+fun sarviorvokki_NK : NK ;
+fun sarvipa'inen_NK : NK ;
+fun sarvipa'a'_NK : NK ;
+fun sarvipo'llo'_NK : NK ;
+fun sarvisankainen_NK : NK ;
+fun sarvivalas_NK : NK ;
+fun sarviva'lke_NK : NK ;
+fun saslikkipuikko_NK : NK ;
+fun satakerta_NK : NK ;
+fun satakertainen_AK : AK ;
+fun satakieli_NK : NK ;
+fun satakiloinen_NK : NK ;
+fun satakunta_NK : NK ;
+fun satakuntalainen_NK : NK ;
+fun satalappunen_NK : NK ;
+fun sataluku_NK : NK ;
+fun satalukuinen_NK : NK ;
+fun satamaja'tka'_NK : NK ;
+fun satamakapteeni_NK : NK ;
+fun satamakaupunki_NK : NK ;
+fun satamalaitos_NK : NK ;
+fun satamalaituri_NK : NK ;
+fun satamaluotsi_NK : NK ;
+fun satamanosturi_NK : NK ;
+fun satamapa'a'llikko'_NK : NK ;
+fun satamarkkanen_NK : NK ;
+fun satamaterminaali_NK : NK ;
+fun satamatyo'la'inen_NK : NK ;
+fun satanisti_NK : NK ;
+fun satapiikkinen_NK : NK ;
+fun satapa'inen_NK : NK ;
+fun satatuhantinen_NK : NK ;
+fun satavuotias_NK : NK ;
+fun satavuotinen_NK : NK ;
+fun sateenkaarikala_NK : NK ;
+fun sateenkaaripainatus_NK : NK ;
+fun sateenkaariperhe_NK : NK ;
+fun sateenkaarirautu_NK : NK ;
+--? fun sateenvarjorattaat_NK : NK ;
+fun satelliittiantenni_NK : NK ;
+fun satelliittikanava_NK : NK ;
+fun satelliittikaupunki_NK : NK ;
+fun satelliittikuva_NK : NK ;
+fun satelliittikuvaus_NK : NK ;
+fun satelliittila'hetys_NK : NK ;
+fun satelliittimaa_NK : NK ;
+fun satelliittimittaus_NK : NK ;
+fun satelliittinavigointi_NK : NK ;
+fun satelliittiohjelma_NK : NK ;
+fun satelliittipaikannus_NK : NK ;
+fun satelliittipuhelu_NK : NK ;
+fun satelliittirata_NK : NK ;
+fun satelliittitehdas_NK : NK ;
+fun satelliittitelevisio_NK : NK ;
+fun satelliittivaltio_NK : NK ;
+fun satelliittiviestinta'_NK : NK ;
+fun satelliittiyhteys_NK : NK ;
+fun satiinisidoksinen_NK : NK ;
+fun satiinisidos_NK : NK ;
+fun satokausi_NK : NK ;
+fun satotappio_NK : NK ;
+fun satovahinko_NK : NK ;
+fun satovahinkokorvaus_NK : NK ;
+fun satubaletti_NK : NK ;
+fun satuhahmo_NK : NK ;
+fun satuika'_NK : NK ;
+fun satuika'inen_NK : NK ;
+fun satujumppa_NK : NK ;
+fun satukasetti_NK : NK ;
+fun satukirja_NK : NK ;
+fun satukirjailija_NK : NK ;
+fun satukuvitus_NK : NK ;
+fun satulakatto_NK : NK ;
+fun satulalaukku_NK : NK ;
+fun satulanena'_NK : NK ;
+fun satulareppu_NK : NK ;
+fun satulaseppa'_NK : NK ;
+fun satulavyo'_NK : NK ;
+fun satumaa_NK : NK ;
+fun satumaailma_NK : NK ;
+fun satumainen_NK : NK ;
+fun satuna'ytelma'_NK : NK ;
+fun satuolento_NK : NK ;
+fun satuooppera_NK : NK ;
+fun satuprinsessa_NK : NK ;
+fun satuprinssi_NK : NK ;
+fun satuseta'_NK : NK ;
+fun satutunti_NK : NK ;
+fun satuta'ti_NK : NK ;
+fun satuvoimistelu_NK : NK ;
+fun saumalaasti_NK : NK ;
+fun saumalista_NK : NK ;
+fun saumasukka_NK : NK ;
+fun saumauskone_NK : NK ;
+fun saumauslaasti_NK : NK ;
+fun saumausmassa_NK : NK ;
+fun saumauspistooli_NK : NK ;
+fun saumavara_NK : NK ;
+fun saunaharja_NK : NK ;
+fun saunailta_NK : NK ;
+fun saunakahvi_NK : NK ;
+fun saunakalja_NK : NK ;
+fun saunakamari_NK : NK ;
+fun saunakukka_NK : NK ;
+fun saunalenkki_NK : NK ;
+fun saunalyhty_NK : NK ;
+fun saunamaija_NK : NK ;
+fun saunamakkara_NK : NK ;
+fun saunamatka_NK : NK ;
+fun saunamo'kki_NK : NK ;
+fun saunaosasto_NK : NK ;
+fun saunapalvi_NK : NK ;
+fun saunapata_NK : NK ;
+fun saunapolku_NK : NK ;
+fun saunapuhdas_NK : NK ;
+fun saunapyyhe_NK : NK ;
+fun saunapa'iva'_NK : NK ;
+fun saunaranta_NK : NK ;
+fun saunasieni_NK : NK ;
+fun saunatakki_NK : NK ;
+fun saunavesi_NK : NK ;
+fun saunavieras_NK : NK ;
+fun saunavihta_NK : NK ;
+fun saunavuoro_NK : NK ;
+fun sauvabakteeri_NK : NK ;
+fun sauvaka'vely_NK : NK ;
+fun sauvaohjain_NK : NK ;
+fun sauvaparisto_NK : NK ;
+fun sauvasekoitin_NK : NK ;
+fun sauvasolu_NK : NK ;
+fun sauvata'rytin_NK : NK ;
+fun saviastia_NK : NK ;
+fun saviesine_NK : NK ;
+fun saviharkko_NK : NK ;
+fun savihoito_NK : NK ;
+fun savijalka_NK : NK ;
+fun savikakku_NK : NK ;
+fun savikerros_NK : NK ;
+fun savikerrostuma_NK : NK ;
+fun savikiekko_NK : NK ;
+fun savikimpale_NK : NK ;
+fun savikivi_NK : NK ;
+fun savikkakasvi_NK : NK ;
+fun savikokkare_NK : NK ;
+fun savikukko_NK : NK ;
+fun savikuppi_NK : NK ;
+fun savikylpy_NK : NK ;
+fun savilieju_NK : NK ;
+fun saviliuske_NK : NK ;
+fun savimaa_NK : NK ;
+fun savimineraali_NK : NK ;
+fun savipaakku_NK : NK ;
+fun savipera'inen_NK : NK ;
+fun savipitoinen_NK : NK ;
+fun savipohja_NK : NK ;
+fun savipuoli_NK : NK ;
+fun saviruukku_NK : NK ;
+fun savitavara_NK : NK ;
+fun saviteollisuus_NK : NK ;
+fun savitiili_NK : NK ;
+fun savituote_NK : NK ;
+fun savolainen_NK : NK ;
+fun savottaka'mppa'_NK : NK ;
+fun savottamies_NK : NK ;
+fun savuaine_NK : NK ;
+fun savuammus_NK : NK ;
+fun savuankerias_NK : NK ;
+fun savuaukko_NK : NK ;
+fun savuhattu_NK : NK ;
+fun savuheite_NK : NK ;
+fun savuhormi_NK : NK ;
+fun savuhyppa'a'ja'_NK : NK ;
+fun savuilmaisin_NK : NK ;
+fun savukaasu_NK : NK ;
+fun savukala_NK : NK ;
+fun savukalasalaatti_NK : NK ;
+fun savukanava_NK : NK ;
+fun savukeaski_NK : NK ;
+fun savukekartonki_NK : NK ;
+fun savukekotelo_NK : NK ;
+fun savukepakkaus_NK : NK ;
+fun savukepaperi_NK : NK ;
+fun savukerasia_NK : NK ;
+fun savukiehkura_NK : NK ;
+fun savukinkku_NK : NK ;
+fun savukranaatti_NK : NK ;
+fun savukupu_NK : NK ;
+fun savukvartsi_NK : NK ;
+fun savukylki_NK : NK ;
+fun savulaite_NK : NK ;
+fun savulammas_NK : NK ;
+fun savulasi_NK : NK ;
+fun savuliha_NK : NK ;
+fun savulohi_NK : NK ;
+fun savumerkki_NK : NK ;
+fun savumyrkytys_NK : NK ;
+fun savunaamari_NK : NK ;
+fun savupatsas_NK : NK ;
+fun savupelti_NK : NK ;
+fun savupiippu_NK : NK ;
+fun savupiippukaulus_NK : NK ;
+fun savupiipputeollisuus_NK : NK ;
+fun savupilvi_NK : NK ;
+fun savupirtti_NK : NK ;
+fun savupommi_NK : NK ;
+fun savuporo_NK : NK ;
+fun savurengas_NK : NK ;
+fun savusauna_NK : NK ;
+fun savusilakka_NK : NK ;
+fun savusivu_NK : NK ;
+fun savustuslaatikko_NK : NK ;
+fun savustuspuru_NK : NK ;
+fun savustuspo'ntto'_NK : NK ;
+fun savustusuuni_NK : NK ;
+fun savusukeltaja_NK : NK ;
+fun savusumu_NK : NK ;
+fun savutopaasi_NK : NK ;
+fun savutorvi_NK : NK ;
+fun savuvahinko_NK : NK ;
+fun savuverho_NK : NK ;
+fun sedimenttikivi_NK : NK ;
+fun sedimenttikivilaji_NK : NK ;
+fun seeprakala_NK : NK ;
+fun seeprapeippo_NK : NK ;
+fun seepraraidoitus_NK : NK ;
+fun seepraraita_NK : NK ;
+fun seerumihoito_NK : NK ;
+fun seerumiruiske_NK : NK ;
+fun seerumitauti_NK : NK ;
+fun seesamijauho_NK : NK ;
+fun seesamio'ljy_NK : NK ;
+fun seesteinen_NK : NK ;
+fun seikkailufilmi_NK : NK ;
+fun seikkailukertomus_NK : NK ;
+fun seikkailukirja_NK : NK ;
+fun seikkailumatkailu_NK : NK ;
+fun seikkailupeli_NK : NK ;
+fun seikkailupolitiikka_NK : NK ;
+fun seikkailurikas_NK : NK ;
+fun seikkailuromaani_NK : NK ;
+fun seikkailusarja_NK : NK ;
+fun seikkapera'inen_AK : AK ;
+fun seikkapera'isyys_NK : NK ;
+fun seisauspaikka_NK : NK ;
+fun seisokki_NK : NK ;
+fun seisoma_NK : NK ;
+fun seisomakatsomo_NK : NK ;
+fun seisomapaikka_NK : NK ;
+fun seisomapo'yta'_NK : NK ;
+fun seisomatyo'_NK : NK ;
+fun seisonta_NK : NK ;
+fun seisontajarru_NK : NK ;
+fun seisontatuki_NK : NK ;
+fun seisontavalo_NK : NK ;
+fun seitikki_NK : NK ;
+fun seitsema'nkymmenta'luku_NK : NK ;
+fun seitsema'nkymmenta'vuotias_NK : NK ;
+fun seitsema'nlainen_NK : NK ;
+fun seitsema'ntoistavuotias_NK : NK ;
+fun seitsema'nvuotias_NK : NK ;
+fun seitsema'skymmenes_NK : NK ;
+fun seitsema'sosa_NK : NK ;
+fun seitsema'ssadas_NK : NK ;
+fun seiva'shyppy_NK : NK ;
+fun seiva'shyppykilpailu_NK : NK ;
+fun seiva'shyppa'a'ja'_NK : NK ;
+fun sekaantuma_NK : NK ;
+fun sekatavarakauppa_NK : NK ;
+fun sekauintiviesti_NK : NK ;
+fun sekavuustila_NK : NK ;
+fun sekkilomake_NK : NK ;
+fun sekkirikos_NK : NK ;
+fun sekkitili_NK : NK ;
+fun sekkivihko_NK : NK ;
+fun sekoitekangas_NK : NK ;
+fun sekoitelanka_NK : NK ;
+fun sekoitevilla_NK : NK ;
+fun sekoitushana_NK : NK ;
+fun sekoitussuhde_NK : NK ;
+fun seksiaddikti_NK : NK ;
+fun seksiaddiktio_NK : NK ;
+fun seksibaari_NK : NK ;
+fun seksibisnes_NK : NK ;
+fun seksiela'ma'_NK : NK ;
+fun seksifilmi_NK : NK ;
+fun seksihurjastelu_NK : NK ;
+fun seksikauppa_NK : NK ;
+fun seksikielteinen_NK : NK ;
+fun seksikokemus_NK : NK ;
+fun seksikumppani_NK : NK ;
+fun seksileffa_NK : NK ;
+fun seksilehti_NK : NK ;
+fun seksiobjekti_NK : NK ;
+fun seksiongelma_NK : NK ;
+fun seksipalvelu_NK : NK ;
+fun seksipartneri_NK : NK ;
+fun seksipitoinen_NK : NK ;
+fun seksipommi_NK : NK ;
+fun seksipuhelin_NK : NK ;
+fun seksiravintola_NK : NK ;
+fun seksisymboli_NK : NK ;
+fun seksitauti_NK : NK ;
+fun seksiteollisuus_NK : NK ;
+fun seksiterapia_NK : NK ;
+fun seksiturismi_NK : NK ;
+fun seksituristi_NK : NK ;
+fun seksivalistus_NK : NK ;
+fun seksivideo_NK : NK ;
+fun seksiva'line_NK : NK ;
+fun sekundaarika'a'mi_NK : NK ;
+fun sekundaarivaihe_NK : NK ;
+fun sekundalaatu_NK : NK ;
+fun sekundatavara_NK : NK ;
+fun sekuntikello_NK : NK ;
+fun sekuntimetri_NK : NK ;
+fun sekuntinopeus_NK : NK ;
+fun sekuntiosoitin_NK : NK ;
+fun sekuntipeli_NK : NK ;
+fun sekuntiviisari_NK : NK ;
+fun selailukalvo_NK : NK ;
+fun selailukirja_NK : NK ;
+fun selailukuva_NK : NK ;
+fun selinmakuu_NK : NK ;
+fun selitysteos_NK : NK ;
+fun selkeytysallas_NK : NK ;
+fun selkea'piirteinen_NK : NK ;
+fun selkokieli_NK : NK ;
+fun selkokielinen_NK : NK ;
+fun selkokirja_NK : NK ;
+fun selkolehti_NK : NK ;
+fun selkopainos_NK : NK ;
+fun selkoteksti_NK : NK ;
+fun selka'eva'_NK : NK ;
+fun selka'harja_NK : NK ;
+fun selka'ha'vio'_NK : NK ;
+fun selka'isyys_NK : NK ;
+fun selka'ja'nteinen_NK : NK ;
+fun selka'kappale_NK : NK ;
+fun selka'kipu_NK : NK ;
+fun selka'koulu_NK : NK ;
+fun selka'lanka_NK : NK ;
+fun selka'lauta_NK : NK ;
+fun selka'lento_NK : NK ;
+fun selka'lihas_NK : NK ;
+fun selka'lokki_NK : NK ;
+fun selka'nahka_NK : NK ;
+fun selka'nikama_NK : NK ;
+fun selka'noja_NK : NK ;
+fun selka'panssari_NK : NK ;
+fun selka'penkki_NK : NK ;
+fun selka'perillinen_NK : NK ;
+fun selka'perinto'_NK : NK ;
+fun selka'pii_NK : NK ;
+fun selka'puoli_NK : NK ;
+fun selka'puolinen_NK : NK ;
+fun selka'puu_NK : NK ;
+fun selka'ranka_NK : NK ;
+fun selka'rankareuma_NK : NK ;
+fun selka'reppu_NK : NK ;
+fun selka'ruoto_NK : NK ;
+fun selka'saha_NK : NK ;
+fun selka'sairas_NK : NK ;
+fun selka'sairaus_NK : NK ;
+fun selka'sauna_NK : NK ;
+fun selka'siima_NK : NK ;
+fun selka'suoni_NK : NK ;
+fun selka'sa'rky_NK : NK ;
+fun selka'uinti_NK : NK ;
+fun selka'vaiva_NK : NK ;
+fun selka'vaivainen_NK : NK ;
+fun selka'vamma_NK : NK ;
+fun selka'vammainen_NK : NK ;
+fun selka'vesi_NK : NK ;
+fun selka'vika_NK : NK ;
+fun selka'vikainen_NK : NK ;
+fun selka'voitto_NK : NK ;
+fun selka'ydin_NK : NK ;
+fun selka'ydinhermo_NK : NK ;
+fun selka'ydinkalvo_NK : NK ;
+fun selka'ydinkanava_NK : NK ;
+fun selka'ydinneste_NK : NK ;
+fun selka'ydinpunktio_NK : NK ;
+fun selka'ydinpuudutus_NK : NK ;
+fun selka'ydinvamma_NK : NK ;
+fun selka'ydinvammainen_NK : NK ;
+fun sellerikaali_NK : NK ;
+fun selleripihvi_NK : NK ;
+fun sellerisuola_NK : NK ;
+fun sellitoveri_NK : NK ;
+fun sellokappale_NK : NK ;
+fun sellokonsertti_NK : NK ;
+fun sellokonsertto_NK : NK ;
+fun sellosonaatti_NK : NK ;
+fun sellosa'vellys_NK : NK ;
+fun sellotaiteilija_NK : NK ;
+fun sellukattila_NK : NK ;
+fun selluloosakalvo_NK : NK ;
+fun selluloosakelmu_NK : NK ;
+fun selluloosakuitu_NK : NK ;
+fun selluloosalakka_NK : NK ;
+fun selluloosamuovi_NK : NK ;
+fun selluloosavanu_NK : NK ;
+fun sellupaperi_NK : NK ;
+fun sellutehdas_NK : NK ;
+fun selluteollisuus_NK : NK ;
+fun selluvanu_NK : NK ;
+fun selluvilla_NK : NK ;
+fun selustatuki_NK : NK ;
+fun selustayhteys_NK : NK ;
+fun selvilleotto_NK : NK ;
+fun selvillesaanti_NK : NK ;
+fun selvitysmies_NK : NK ;
+fun selvitystila_NK : NK ;
+fun selva'ja'rkinen_NK : NK ;
+fun selva'kielinen_AK : AK ;
+fun selva'na'ko'inen_AK : AK ;
+fun selva'na'ko'isyys_NK : NK ;
+fun selva'piirteinen_AK : AK ;
+fun selva'puheinen_NK : NK ;
+fun selva'pa'inen_NK : NK ;
+fun selva'rajainen_NK : NK ;
+fun selva'sanainen_AK : AK ;
+fun sembrama'nty_NK : NK ;
+fun sementtilaasti_NK : NK ;
+fun sementtilattia_NK : NK ;
+fun sementtisa'kki_NK : NK ;
+fun sementtitehdas_NK : NK ;
+fun sementtivalimo_NK : NK ;
+fun semifinaali_NK : NK ;
+fun semifinaaliottelu_NK : NK ;
+fun semifinalisti_NK : NK ;
+fun seminaariesitelma'_NK : NK ;
+fun seminaariharjoitus_NK : NK ;
+fun seminaarilainen_NK : NK ;
+fun seminaarityo'_NK : NK ;
+fun senaikainen_NK : NK ;
+fun senaikuinen_NK : NK ;
+fun senkaltainen_NK : NK ;
+fun senlaatuinen_NK : NK ;
+fun senluonteinen_NK : NK ;
+fun senniminen_NK : NK ;
+fun senpa'iva'inen_NK : NK ;
+fun sensaatioartikkeli_NK : NK ;
+fun sensaatiohakuinen_NK : NK ;
+fun sensaatiojuttu_NK : NK ;
+fun sensaatiokirja_NK : NK ;
+fun sensaatiolehti_NK : NK ;
+fun sensaatiomainen_NK : NK ;
+fun sensaatiouutinen_NK : NK ;
+fun sensuuri_NK : NK ;
+fun sentapainen_NK : NK ;
+fun senttilitra_NK : NK ;
+fun senttimetri_NK : NK ;
+fun senttimetrimitoitus_NK : NK ;
+fun senvertainen_NK : NK ;
+fun seoslannoite_NK : NK ;
+fun seossuhde_NK : NK ;
+fun seosteinen_NK : NK ;
+fun seostera's_NK : NK ;
+fun seosvilja_NK : NK ;
+fun sepelialusta_NK : NK ;
+fun sepelikerros_NK : NK ;
+fun sepelikivi_NK : NK ;
+fun sepelimurska_NK : NK ;
+fun sepelimylly_NK : NK ;
+fun sepelipa'a'llyste_NK : NK ;
+fun sepelitie_NK : NK ;
+fun sepelvaltimotauti_NK : NK ;
+fun sepelvaltimotukos_NK : NK ;
+fun seppelenauha_NK : NK ;
+fun seppelepa'inen_NK : NK ;
+fun serbialainen_NK : NK ;
+fun seremoniaalinen_NK : NK ;
+fun seremoniamestari_NK : NK ;
+fun serkkupoika_NK : NK ;
+fun serkkutytto'_NK : NK ;
+fun serpentiinitie_NK : NK ;
+fun servomoottori_NK : NK ;
+fun servotekniikka_NK : NK ;
+fun sesonkiluonteinen_NK : NK ;
+fun sesonkimyynti_NK : NK ;
+fun sesonkitavara_NK : NK ;
+fun sesonkivaihtelu_NK : NK ;
+fun seteliautomaatti_NK : NK ;
+fun setelikurssi_NK : NK ;
+fun setelinippu_NK : NK ;
+fun setelipaino_NK : NK ;
+fun setelipankki_NK : NK ;
+fun setelipaperi_NK : NK ;
+fun seteliraha_NK : NK ;
+fun setelirahoitus_NK : NK ;
+fun setlementtiliike_NK : NK ;
+fun setlementtityo'_NK : NK ;
+fun setripuu_NK : NK ;
+fun setrio'ljy_NK : NK ;
+fun seulaluu_NK : NK ;
+fun seulontatutkimus_NK : NK ;
+fun seuraanto_NK : NK ;
+fun seuraela'ma'_NK : NK ;
+fun seuraihminen_NK : NK ;
+fun seurajoukkue_NK : NK ;
+fun seurakoira_NK : NK ;
+fun seurakunta_NK : NK ;
+fun seurakuntaela'ma'_NK : NK ;
+fun seurakuntakeskus_NK : NK ;
+fun seurakuntakoti_NK : NK ;
+fun seurakuntakoulu_NK : NK ;
+fun seurakuntakummi_NK : NK ;
+fun seurakuntakuraattori_NK : NK ;
+fun seurakuntalehtori_NK : NK ;
+fun seurakuntamestari_NK : NK ;
+fun seurakuntaneuvos_NK : NK ;
+fun seurakuntaneuvosto_NK : NK ;
+fun seurakuntanuori_NK : NK ;
+fun seurakuntapapisto_NK : NK ;
+fun seurakuntapappi_NK : NK ;
+fun seurakuntapastori_NK : NK ;
+fun seurakuntapiiri_NK : NK ;
+fun seurakuntasali_NK : NK ;
+fun seurakuntasisar_NK : NK ;
+fun seurakuntatalo_NK : NK ;
+fun seurakuntatyo'_NK : NK ;
+fun seurakuntavirasto_NK : NK ;
+fun seurakuntava'ki_NK : NK ;
+fun seurakuntayhteys_NK : NK ;
+fun seurakuntayhtyma'_NK : NK ;
+fun seuralainen_NK : NK ;
+fun seuraleikki_NK : NK ;
+fun seuramatka_NK : NK ;
+fun seuramatkalainen_NK : NK ;
+fun seuramies_NK : NK ;
+fun seuranainen_NK : NK ;
+fun seuraneiti_NK : NK ;
+fun seurantakaiutin_NK : NK ;
+fun seurantakokous_NK : NK ;
+fun seurantalaite_NK : NK ;
+fun seurantatutkimus_NK : NK ;
+fun seurana'ytelma'_NK : NK ;
+fun seurana'ytta'mo'_NK : NK ;
+fun seuraottelu_NK : NK ;
+fun seurapeli_NK : NK ;
+fun seurapiiri_NK : NK ;
+fun seurapiirijuoru_NK : NK ;
+fun seurapiirikaunotar_NK : NK ;
+fun seurapiiripalsta_NK : NK ;
+fun seurapiiriskandaali_NK : NK ;
+fun seurapiiritoimittaja_NK : NK ;
+fun seurapiiriuutinen_NK : NK ;
+fun seuratalo_NK : NK ;
+fun seuratanssi_NK : NK ;
+fun seuratapa_NK : NK ;
+fun seuratoiminta_NK : NK ;
+fun seuratoveri_NK : NK ;
+fun seurausilmio'_NK : NK ;
+fun seurausvaikutus_NK : NK ;
+fun seuravalmentaja_NK : NK ;
+fun seuruelippu_NK : NK ;
+fun seuruematka_NK : NK ;
+fun seuruepassi_NK : NK ;
+fun seurusteluhuone_NK : NK ;
+fun seurustelujuoma_NK : NK ;
+fun seurustelukumppani_NK : NK ;
+fun seurustelusuhde_NK : NK ;
+fun seutukaava_NK : NK ;
+fun seutukunta_NK : NK ;
+fun seutuliikenne_NK : NK ;
+fun seutulippu_NK : NK ;
+fun sianlihakastike_NK : NK ;
+fun sideaine_NK : NK ;
+fun sideaines_NK : NK ;
+fun sideharso_NK : NK ;
+fun sideharsorulla_NK : NK ;
+fun sideharsovaippa_NK : NK ;
+fun sidekalvo_NK : NK ;
+fun sidekudos_NK : NK ;
+fun sidekudoskasvain_NK : NK ;
+fun sidepisto_NK : NK ;
+fun sidesalaatti_NK : NK ;
+fun sidesana_NK : NK ;
+fun sidetaitos_NK : NK ;
+fun sidetarvike_NK : NK ;
+fun sidontapaikka_NK : NK ;
+fun sidosaine_NK : NK ;
+fun sidosenergia_NK : NK ;
+fun sidosryhma'_NK : NK ;
+fun sielumessu_NK : NK ;
+fun sielunhoitotyo'_NK : NK ;
+fun sielutiede_NK : NK ;
+fun siemenaihe_NK : NK ;
+fun siemenheitto_NK : NK ;
+fun siemenistukas_NK : NK ;
+fun siemenjohdin_NK : NK ;
+fun siemenjyva'_NK : NK ;
+fun siemenkakku_NK : NK ;
+fun siemenkasvi_NK : NK ;
+fun siemenkauppa_NK : NK ;
+fun siemenkaura_NK : NK ;
+fun siemenkota_NK : NK ;
+fun siemenkuori_NK : NK ;
+fun siemenneste_NK : NK ;
+fun siemenohra_NK : NK ;
+fun siemenperuna_NK : NK ;
+fun siemenpuu_NK : NK ;
+fun siemenpuuhakkuu_NK : NK ;
+fun siemenpuusto_NK : NK ;
+fun siemenruis_NK : NK ;
+fun siemensato_NK : NK ;
+fun siemensolu_NK : NK ;
+fun siemensyntyinen_NK : NK ;
+fun siemensyo'ksy_NK : NK ;
+fun siementarkastus_NK : NK ;
+fun siementuotanto_NK : NK ;
+fun siemenvaippa_NK : NK ;
+fun siemenvalkuainen_NK : NK ;
+fun siemenvilja_NK : NK ;
+fun siemenviljelma'_NK : NK ;
+fun siemenviljely_NK : NK ;
+fun siemenviljelys_NK : NK ;
+fun siemenvuosi_NK : NK ;
+fun sieniasema_NK : NK ;
+fun sieniela'in_NK : NK ;
+fun sienikartta_NK : NK ;
+fun sienikastike_NK : NK ;
+fun sienikeitto_NK : NK ;
+fun sienila'a'ke_NK : NK ;
+fun sienimetsa'_NK : NK ;
+fun sienimuhennos_NK : NK ;
+fun sienimyrkky_NK : NK ;
+fun sienimyrkytys_NK : NK ;
+fun sienineuvoja_NK : NK ;
+fun sienipesin_NK : NK ;
+fun sienipiirakka_NK : NK ;
+fun sieniretki_NK : NK ;
+fun sienirihma_NK : NK ;
+fun sienirihmasto_NK : NK ;
+fun sieniruoka_NK : NK ;
+fun sienisalaatti_NK : NK ;
+fun sienisato_NK : NK ;
+fun sienitauti_NK : NK ;
+fun sienitiede_NK : NK ;
+fun sieniviljelma'_NK : NK ;
+fun sierainaukko_NK : NK ;
+fun sietoalue_NK : NK ;
+fun sietokyky_NK : NK ;
+fun sietoraja_NK : NK ;
+fun sifonkihuivi_NK : NK ;
+fun sigmasuoli_NK : NK ;
+fun signaalitorvi_NK : NK ;
+fun sihteerilintu_NK : NK ;
+fun siiliasema_NK : NK ;
+fun siilikaktus_NK : NK ;
+fun siilikehra'a'ja'_NK : NK ;
+fun siilipuolustus_NK : NK ;
+fun siilitukka_NK : NK ;
+fun siimaelio'_NK : NK ;
+fun siimaela'in_NK : NK ;
+fun siimaha'nta'_NK : NK ;
+fun siimaha'nta'inen_NK : NK ;
+fun siimajalkainen_NK : NK ;
+fun siimaleikkuri_NK : NK ;
+fun siipialttari_NK : NK ;
+fun siipikarja_NK : NK ;
+fun siipikarjatalous_NK : NK ;
+fun siipimies_NK : NK ;
+fun siipimutteri_NK : NK ;
+fun siipiopastin_NK : NK ;
+fun siipipalle_NK : NK ;
+fun siipipari_NK : NK ;
+fun siipipeili_NK : NK ;
+fun siipipyo'ra'_NK : NK ;
+fun siipirakennus_NK : NK ;
+fun siipiratas_NK : NK ;
+fun siipiratasalus_NK : NK ;
+fun siipirataslaiva_NK : NK ;
+fun siipirikko_NK : NK ;
+fun siipiruuvi_NK : NK ;
+fun siipisulka_NK : NK ;
+fun siipisuoni_NK : NK ;
+fun siipiveikko_NK : NK ;
+fun siipiva'li_NK : NK ;
+fun siirroslaakso_NK : NK ;
+fun siirtoheitin_NK : NK ;
+fun siirtoha'vio'_NK : NK ;
+fun siirtoistutus_NK : NK ;
+fun siirtojohto_NK : NK ;
+fun siirtoja'nnite_NK : NK ;
+fun siirtokirjain_NK : NK ;
+fun siirtokirjoitus_NK : NK ;
+fun siirtokunta_NK : NK ;
+fun siirtokuva_NK : NK ;
+fun siirtolainen_NK : NK ;
+fun siirtolaite_NK : NK ;
+fun siirtolava_NK : NK ;
+fun siirtoleikkaus_NK : NK ;
+fun siirtolista_NK : NK ;
+fun siirtolohkare_NK : NK ;
+fun siirtomaa_NK : NK ;
+fun siirtomaasota_NK : NK ;
+fun siirtomaatavara_NK : NK ;
+fun siirtomaatavarakauppa_NK : NK ;
+fun siirtomaatyyli_NK : NK ;
+fun siirtomaavalta_NK : NK ;
+fun siirtomerkinta'_NK : NK ;
+fun siirtoma'a'ra'ys_NK : NK ;
+fun siirtonopeus_NK : NK ;
+fun siirtonurmi_NK : NK ;
+fun siirtonurmikko_NK : NK ;
+fun siirtopakko_NK : NK ;
+fun siirtosumma_NK : NK ;
+fun siirtotie_NK : NK ;
+fun siirtotuoli_NK : NK ;
+fun siirtotyo'la'inen_NK : NK ;
+fun siirtovaikutus_NK : NK ;
+fun siirtovuoro_NK : NK ;
+fun siirtova'ki_NK : NK ;
+fun siirtyma'kausi_NK : NK ;
+fun siirtyma'riitti_NK : NK ;
+fun siirtyma'taival_NK : NK ;
+fun siirtyma'talous_NK : NK ;
+fun siirtyma'vaihe_NK : NK ;
+fun siistaus_NK : NK ;
+fun siistauslaitos_NK : NK ;
+fun siisteyskasvatus_NK : NK ;
+fun siitepo'lyallergia_NK : NK ;
+fun siitepo'lyanalyysi_NK : NK ;
+fun siitepo'lyhiukkanen_NK : NK ;
+fun siitepo'lytiedote_NK : NK ;
+fun siitosela'in_NK : NK ;
+fun siitoskanala_NK : NK ;
+fun siitoskarja_NK : NK ;
+fun siitoskyky_NK : NK ;
+fun siitoskykyinen_NK : NK ;
+fun siitoskyvyto'n_NK : NK ;
+fun siitosori_NK : NK ;
+fun siitostamma_NK : NK ;
+fun siittio'pesa'ke_NK : NK ;
+fun siivila'kangas_NK : NK ;
+fun siivoluonteinen_NK : NK ;
+fun siivoluontoinen_NK : NK ;
+fun siivooja_NK : NK ;
+fun siivouskaappi_NK : NK ;
+fun siivouskomero_NK : NK ;
+fun siivouskone_NK : NK ;
+fun siivousliike_NK : NK ;
+fun siivouspalvelu_NK : NK ;
+fun siivousparveke_NK : NK ;
+fun siivouspa'iva'_NK : NK ;
+--? fun siivoustalkoot_NK : NK ;
+fun siivoustarvike_NK : NK ;
+fun siivousteknikko_NK : NK ;
+fun siivousvaunu_NK : NK ;
+fun siivousva'line_NK : NK ;
+fun sijaintipaikka_NK : NK ;
+fun sijaluku_NK : NK ;
+fun sijapa'a'te_NK : NK ;
+fun sijauspatja_NK : NK ;
+fun sijoiltaanmeno_NK : NK ;
+fun sijoituskohde_NK : NK ;
+fun sijoitusneuvoja_NK : NK ;
+fun sijoituspaikka_NK : NK ;
+fun sijoituspankki_NK : NK ;
+fun sijoituspentu_NK : NK ;
+fun sijoitusrahasto_NK : NK ;
+fun sijoitustili_NK : NK ;
+fun sijoitustodistus_NK : NK ;
+fun sijoitustoiminta_NK : NK ;
+fun sijoitusyhtio'_NK : NK ;
+fun sikaela'in_NK : NK ;
+fun sikahalpa_NK : NK ;
+fun sikahumala_NK : NK ;
+fun sikainfluenssa_NK : NK ;
+fun sikalauma_NK : NK ;
+fun sikamainen_AK : AK ;
+fun sikamokka_NK : NK ;
+fun sikanauta_NK : NK ;
+fun sikapossu_NK : NK ;
+fun sikarilaatikko_NK : NK ;
+fun sikarileikkuri_NK : NK ;
+fun sikariporras_NK : NK ;
+fun sikarotu_NK : NK ;
+fun sikasiisti_NK : NK ;
+fun sikatalous_NK : NK ;
+fun sikatarha_NK : NK ;
+fun sikio'aikainen_NK : NK ;
+fun sikio'asento_NK : NK ;
+fun sikio'ika'_NK : NK ;
+fun sikio'kalvo_NK : NK ;
+fun sikio'kausi_NK : NK ;
+fun sikio'kautinen_NK : NK ;
+fun sikio'kehitys_NK : NK ;
+fun sikio'kuolema_NK : NK ;
+fun sikio'vaurio_NK : NK ;
+fun siksakkiommel_NK : NK ;
+fun siksakkiviiva_NK : NK ;
+fun sikunao'ljy_NK : NK ;
+fun sikurisalaatti_NK : NK ;
+fun silakkafilee_NK : NK ;
+fun silakkalaatikko_NK : NK ;
+--? fun silakkamarkkinat_NK : NK ;
+fun silakkaparvi_NK : NK ;
+fun silakkapihvi_NK : NK ;
+fun silakkaverkko_NK : NK ;
+fun silavakerros_NK : NK ;
+fun silea'karvainen_NK : NK ;
+fun silea'kuorinen_NK : NK ;
+fun silea'otsainen_NK : NK ;
+fun silea'pohjainen_NK : NK ;
+fun silea'poskinen_NK : NK ;
+fun silikaattimineraali_NK : NK ;
+fun silikonihartsi_NK : NK ;
+fun silikonikumi_NK : NK ;
+fun silikonimuovi_NK : NK ;
+fun silikonirinta_NK : NK ;
+fun silikonio'ljy_NK : NK ;
+fun silinterihattu_NK : NK ;
+fun silitysalusta_NK : NK ;
+fun silityskone_NK : NK ;
+fun silityskuiva_NK : NK ;
+fun silityslauta_NK : NK ;
+fun silitysrauta_NK : NK ;
+fun silitysvaate_NK : NK ;
+fun silia'vyyska'sittely_NK : NK ;
+fun silkkihansikas_NK : NK ;
+fun silkkihuivi_NK : NK ;
+fun silkkikangas_NK : NK ;
+fun silkkikenka'_NK : NK ;
+fun silkkikuitu_NK : NK ;
+fun silkkikukka_NK : NK ;
+fun silkkilanka_NK : NK ;
+fun silkkinauha_NK : NK ;
+fun silkkipaino_NK : NK ;
+fun silkkipainokuva_NK : NK ;
+fun silkkipaita_NK : NK ;
+fun silkkipaperi_NK : NK ;
+fun silkkipusero_NK : NK ;
+fun silkkisametti_NK : NK ;
+fun silkkisukka_NK : NK ;
+fun silkkitehdas_NK : NK ;
+fun silkkiteollisuus_NK : NK ;
+fun silkkitie_NK : NK ;
+fun silkkiuikku_NK : NK ;
+fun silkkivuori_NK : NK ;
+fun sillanpa'a'asema_NK : NK ;
+fun sillifilee_NK : NK ;
+fun sillikala_NK : NK ;
+fun sillipurkki_NK : NK ;
+fun sillisalaatti_NK : NK ;
+fun sillivalas_NK : NK ;
+fun silmukkalanka_NK : NK ;
+fun silmukkaruuvi_NK : NK ;
+fun silmusuomu_NK : NK ;
+fun silma'aukko_NK : NK ;
+fun silma'hermo_NK : NK ;
+fun silma'isyys_NK : NK ;
+fun silma'jumppa_NK : NK ;
+fun silma'klinikka_NK : NK ;
+fun silma'kulma_NK : NK ;
+fun silma'kuoppa_NK : NK ;
+fun silma'lappu_NK : NK ;
+fun silma'leikkaus_NK : NK ;
+fun silma'leva'_NK : NK ;
+fun silma'lihas_NK : NK ;
+fun silma'luku_NK : NK ;
+fun silma'luomi_NK : NK ;
+fun silma'la'a'ka'ri_NK : NK ;
+fun silma'meikki_NK : NK ;
+fun silma'mitta_NK : NK ;
+fun silma'muna_NK : NK ;
+fun silma'ma'a'ra'_NK : NK ;
+fun silma'ma'a'ra'inen_NK : NK ;
+fun silma'ma'a'ra'isyys_NK : NK ;
+fun silma'neula_NK : NK ;
+fun silma'npainetauti_NK : NK ;
+fun silma'nrajauskyna'_NK : NK ;
+fun silma'nrajausva'ri_NK : NK ;
+fun silma'nurkka_NK : NK ;
+fun silma'nympa'rysvoide_NK : NK ;
+fun silma'pako_NK : NK ;
+fun silma'pankki_NK : NK ;
+fun silma'pari_NK : NK ;
+fun silma'peili_NK : NK ;
+fun silma'peli_NK : NK ;
+fun silma'proteesi_NK : NK ;
+fun silma'puoli_NK : NK ;
+fun silma'ripsi_NK : NK ;
+fun silma'ruoho_NK : NK ;
+fun silma'sairaus_NK : NK ;
+fun silma'tauti_NK : NK ;
+fun silma'tera'_NK : NK ;
+fun silma'tikku_NK : NK ;
+fun silma'tulehdus_NK : NK ;
+fun silma'ta'pla'_NK : NK ;
+fun silma'vamma_NK : NK ;
+fun silma'varainen_NK : NK ;
+fun silma'voimistelu_NK : NK ;
+fun silma'va'rve_NK : NK ;
+fun siltamaksu_NK : NK ;
+fun siltanosturi_NK : NK ;
+fun siltapalkki_NK : NK ;
+fun siltarakenne_NK : NK ;
+fun siltarakennus_NK : NK ;
+fun siluettikuva_NK : NK ;
+fun siluettitaiteilija_NK : NK ;
+fun siluurikausi_NK : NK ;
+fun simapullo_NK : NK ;
+fun simpukkamaa_NK : NK ;
+fun simulaattorikoulutus_NK : NK ;
+fun simultaanika'a'nno's_NK : NK ;
+fun simultaanina'ytta'mo'_NK : NK ;
+fun simultaaniottelu_NK : NK ;
+fun simultaanipeli_NK : NK ;
+fun simultaanitulkkaus_NK : NK ;
+fun simultaanitulkki_NK : NK ;
+fun sinappijauhe_NK : NK ;
+fun sinappikaasu_NK : NK ;
+fun sinappikastike_NK : NK ;
+fun sinappikuoriainen_NK : NK ;
+fun sinappisilli_NK : NK ;
+fun sinappio'ljy_NK : NK ;
+fun sinettilakka_NK : NK ;
+fun sinettisormus_NK : NK ;
+fun sinfoniakonsertti_NK : NK ;
+fun sinfoniaorkesteri_NK : NK ;
+fun singlelevy_NK : NK ;
+fun siniaalto_NK : NK ;
+fun sinibaretti_NK : NK ;
+fun sinihappo_NK : NK ;
+fun siniharmaa_NK : NK ;
+fun siniheina'_NK : NK ;
+fun sinihohteinen_NK : NK ;
+fun sinihohtoinen_NK : NK ;
+fun sinikantinen_NK : NK ;
+fun sinikello_NK : NK ;
+fun sinikeltainen_NK : NK ;
+fun sinikettu_NK : NK ;
+fun sinikopio_NK : NK ;
+fun sinikuusama_NK : NK ;
+fun sinikyna'_NK : NK ;
+fun sinika'yra'_NK : NK ;
+fun sinileimainen_NK : NK ;
+fun sinileva'_NK : NK ;
+fun sinililja_NK : NK ;
+fun sinimailanen_NK : NK ;
+fun sinimuotoinen_NK : NK ;
+fun sinimusta_NK : NK ;
+fun sinina'rhi_NK : NK ;
+fun sinipaita_NK : NK ;
+fun sinipaitainen_NK : NK ;
+fun sinipiika_NK : NK ;
+fun sinipilkkuinen_NK : NK ;
+fun sinipuna_NK : NK ;
+fun sinipunahallitus_NK : NK ;
+fun sinipunainen_NK : NK ;
+fun sinipunertava_NK : NK ;
+fun sinipunerva_NK : NK ;
+fun sinirinta_NK : NK ;
+fun siniruutuinen_NK : NK ;
+fun sinisarja_NK : NK ;
+fun sinisiipi_NK : NK ;
+fun sinisiipinen_NK : NK ;
+fun sinisilma'_NK : NK ;
+fun sinisilma'inen_AK : AK ;
+fun sinisilma'isyys_NK : NK ;
+fun sinisimpukka_NK : NK ;
+fun sinisorsa_NK : NK ;
+fun sinisukka_NK : NK ;
+fun sinitaivas_NK : NK ;
+fun sinitiainen_NK : NK ;
+fun sinita'hto'nen_NK : NK ;
+fun sinivalas_NK : NK ;
+fun sinivalkea_NK : NK ;
+fun sinivalkoinen_NK : NK ;
+fun sinivalmuska_NK : NK ;
+fun sinivalvatti_NK : NK ;
+fun siniverinen_NK : NK ;
+fun sinivihrea'_NK : NK ;
+fun siniviiva_NK : NK ;
+fun sinivioletti_NK : NK ;
+fun sinivuokko_NK : NK ;
+fun siniva'ri_NK : NK ;
+fun siniva'ra'htely_NK : NK ;
+fun sinia'a'ni_NK : NK ;
+fun sinkila'naulain_NK : NK ;
+fun sinkila'pistooli_NK : NK ;
+fun sinkkausliitos_NK : NK ;
+fun sinkkioksidi_NK : NK ;
+fun sinkkipelti_NK : NK ;
+fun sinkkisulfaatti_NK : NK ;
+fun sinkkiva'lke_NK : NK ;
+fun sinkojoukkue_NK : NK ;
+fun sinkoryhma'_NK : NK ;
+fun sinooperipuna_NK : NK ;
+fun sinooperipunainen_NK : NK ;
+fun sipulihakkuri_NK : NK ;
+fun sipulijauhe_NK : NK ;
+fun sipulikastike_NK : NK ;
+fun sipulikasvi_NK : NK ;
+fun sipulikeitto_NK : NK ;
+fun sipulikirkko_NK : NK ;
+fun sipulikupoli_NK : NK ;
+fun sipulika'rpa'nen_NK : NK ;
+fun sipulilehti_NK : NK ;
+fun sipulileikkuri_NK : NK ;
+fun sipulimaito_NK : NK ;
+fun sipulipihvi_NK : NK ;
+fun sipulipiirakka_NK : NK ;
+fun sipulirengas_NK : NK ;
+fun sipulisuola_NK : NK ;
+fun sipuliviipale_NK : NK ;
+fun sirkea'silma'inen_NK : NK ;
+fun sirkkalehti_NK : NK ;
+fun sirkkasilmu_NK : NK ;
+fun sirkkataimi_NK : NK ;
+fun sirkkavarsi_NK : NK ;
+fun sirkusareena_NK : NK ;
+fun sirkusela'in_NK : NK ;
+fun sirkushuvi_NK : NK ;
+fun sirkuslainen_NK : NK ;
+fun sirkuspelle_NK : NK ;
+fun sirkustaiteilija_NK : NK ;
+fun sirkusteltta_NK : NK ;
+fun sirkustemppu_NK : NK ;
+fun siroliikkeinen_NK : NK ;
+fun siromuotoinen_NK : NK ;
+fun sirontakeskus_NK : NK ;
+fun siropiirteinen_NK : NK ;
+fun sirotepinnoite_NK : NK ;
+fun sirotepinnoitus_NK : NK ;
+fun sirotesokeri_NK : NK ;
+fun sirpalekranaatti_NK : NK ;
+fun sirpalepommi_NK : NK ;
+fun sirpalesuoja_NK : NK ;
+fun sirpaletieto_NK : NK ;
+fun sirpalevaikutus_NK : NK ;
+fun sisalkuitu_NK : NK ;
+fun sisalmatto_NK : NK ;
+fun sisaralus_NK : NK ;
+fun sisarilmio'_NK : NK ;
+fun sisarja'rjesto'_NK : NK ;
+fun sisarkateus_NK : NK ;
+fun sisarkunta_NK : NK ;
+fun sisarlaiva_NK : NK ;
+fun sisarosuus_NK : NK ;
+fun sisarosuuslaina_NK : NK ;
+fun sisarpuoli_NK : NK ;
+fun sisarusalennus_NK : NK ;
+fun sisaruskateus_NK : NK ;
+fun sisaruspari_NK : NK ;
+fun sisarusparvi_NK : NK ;
+fun sisarussarja_NK : NK ;
+fun sisaryhtio'_NK : NK ;
+fun siskonmakkarakeitto_NK : NK ;
+fun sissihyo'kka'ys_NK : NK ;
+fun sissija'rjesto'_NK : NK ;
+fun sissikomppania_NK : NK ;
+fun sissiliike_NK : NK ;
+fun sissimuona_NK : NK ;
+fun sissipartio_NK : NK ;
+fun sissisota_NK : NK ;
+fun sissitoiminta_NK : NK ;
+fun sisukimppu_NK : NK ;
+fun sisupartio_NK : NK ;
+fun sisupartiolainen_NK : NK ;
+fun sisupussi_NK : NK ;
+fun sisuskumi_NK : NK ;
+fun sisuskunta_NK : NK ;
+fun sisusteinen_NK : NK ;
+fun sisustusarkkitehti_NK : NK ;
+fun sisustuskangas_NK : NK ;
+fun sisustuslehti_NK : NK ;
+fun sisustusliike_NK : NK ;
+fun sisustusneuvoja_NK : NK ;
+fun sisustuspeili_NK : NK ;
+fun sisustustaide_NK : NK ;
+fun sisustustekstiili_NK : NK ;
+fun sisustustoimittaja_NK : NK ;
+fun sisustustyo'_NK : NK ;
+fun sisustusvalaisin_NK : NK ;
+fun sisusvaltimo_NK : NK ;
+fun sisa'eritysrauhanen_NK : NK ;
+fun sisa'laitamoottori_NK : NK ;
+fun sisa'llysluettelo_NK : NK ;
+fun sisa'lto'rikas_NK : NK ;
+fun sisa'lukutaito_NK : NK ;
+fun sisa'piirikauppa_NK : NK ;
+fun sisa'rataenna'tys_NK : NK ;
+fun sisa'ratakilpailu_NK : NK ;
+fun sisa'ruokintakausi_NK : NK ;
+fun sisa'vesialus_NK : NK ;
+fun sisa'vesilaiva_NK : NK ;
+fun sisa'vesiliikenne_NK : NK ;
+fun sisa'vesireitti_NK : NK ;
+fun sisa'vesisatama_NK : NK ;
+fun sisa'vesitie_NK : NK ;
+fun sisa'vesiva'yla'_NK : NK ;
+fun sisa'a'najo_NK : NK ;
+fun sisa'a'najotie_NK : NK ;
+fun sisa'a'nhengitys_NK : NK ;
+fun sisa'a'nja'tto'_NK : NK ;
+fun sisa'a'nkirjoitus_NK : NK ;
+fun sisa'a'nka'ynti_NK : NK ;
+fun sisa'a'nka'yta'va'_NK : NK ;
+fun sisa'a'nmarssi_NK : NK ;
+fun sisa'a'nmeno_NK : NK ;
+fun sisa'a'nostaja_NK : NK ;
+fun sisa'a'notto_NK : NK ;
+fun sisa'a'npa'a'sy_NK : NK ;
+fun sisa'a'npa'a'symaksu_NK : NK ;
+fun sisa'a'npa'a'sytutkinto_NK : NK ;
+fun sisa'a'ntulija_NK : NK ;
+fun sisa'a'ntulo_NK : NK ;
+fun sisa'a'ntuloliikenne_NK : NK ;
+fun sisa'a'ntulotie_NK : NK ;
+fun sisa'a'ntulova'yla'_NK : NK ;
+fun sisa'a'nveto_NK : NK ;
+fun sisa'a'nvienti_NK : NK ;
+fun sitaattilaina_NK : NK ;
+fun sitkea'henkinen_NK : NK ;
+fun sitkea'kuorinen_NK : NK ;
+fun sitkea'vetoinen_NK : NK ;
+fun sitkoaine_NK : NK ;
+fun sitoumusbridge_NK : NK ;
+fun sitruunahappo_NK : NK ;
+fun sitruunajuoma_NK : NK ;
+fun sitruunakastike_NK : NK ;
+fun sitruunamehu_NK : NK ;
+fun sitruunapippuri_NK : NK ;
+fun sitruunasooda_NK : NK ;
+fun sitruunatee_NK : NK ;
+fun sitruunaviipale_NK : NK ;
+fun sitruunao'ljy_NK : NK ;
+fun siunauskappeli_NK : NK ;
+fun siunaustilaisuus_NK : NK ;
+fun siveellisyysrikos_NK : NK ;
+fun sivellinpiirustus_NK : NK ;
+fun sivellintekniikka_NK : NK ;
+fun siveyska'sitys_NK : NK ;
+fun siveysoppi_NK : NK ;
+fun siveyspoliisi_NK : NK ;
+fun siveysvyo'_NK : NK ;
+fun siviiliammatti_NK : NK ;
+fun siviiliasia_NK : NK ;
+fun siviiliela'ma'_NK : NK ;
+fun siviilihallinto_NK : NK ;
+fun siviilihallitus_NK : NK ;
+fun siviilihenkilo'_NK : NK ;
+fun siviili_ilmailu_NK : NK ;
+fun siviilijuttu_NK : NK ;
+fun siviilikanne_NK : NK ;
+fun siviilikohde_NK : NK ;
+fun siviilioikeus_NK : NK ;
+fun siviilipalvelus_NK : NK ;
+fun siviilipalvelusmies_NK : NK ;
+fun siviiliprosessi_NK : NK ;
+fun siviilipuku_NK : NK ;
+fun siviilipukuinen_NK : NK ;
+fun siviilipuolustus_NK : NK ;
+fun siviilirekisteri_NK : NK ;
+fun siviilirohkeus_NK : NK ;
+fun siviilisa'a'ty_NK : NK ;
+fun siviiliuhri_NK : NK ;
+fun siviilivaate_NK : NK ;
+fun siviiliva'esto'_NK : NK ;
+fun sivistyskansa_NK : NK ;
+fun sivistyskieli_NK : NK ;
+fun sivistyslaitos_NK : NK ;
+fun sivistysmaa_NK : NK ;
+fun sivistyssana_NK : NK ;
+fun sivistyssanakirja_NK : NK ;
+fun sivistystaso_NK : NK ;
+fun sivistysvaltio_NK : NK ;
+fun sivuaallokko_NK : NK ;
+fun sivuaine_NK : NK ;
+fun sivuajatus_NK : NK ;
+fun sivualttari_NK : NK ;
+fun sivuammatti_NK : NK ;
+fun sivuansio_NK : NK ;
+fun sivuapteekki_NK : NK ;
+fun sivuasia_NK : NK ;
+fun sivuaskel_NK : NK ;
+fun sivuaurinko_NK : NK ;
+fun sivuhaara_NK : NK ;
+fun sivuhalkio_NK : NK ;
+fun sivuhenkilo'_NK : NK ;
+fun sivuhomma_NK : NK ;
+fun sivuhuomautus_NK : NK ;
+fun sivuhuone_NK : NK ;
+fun sivuhyppy_NK : NK ;
+fun sivuikkuna_NK : NK ;
+fun sivuilmio'_NK : NK ;
+fun sivujuoni_NK : NK ;
+fun sivujuonne_NK : NK ;
+fun sivukaltevuus_NK : NK ;
+fun sivukappale_NK : NK ;
+fun sivukatu_NK : NK ;
+fun sivukirjasto_NK : NK ;
+fun sivukonttori_NK : NK ;
+fun sivukulu_NK : NK ;
+fun sivukuva_NK : NK ;
+fun sivulaiva_NK : NK ;
+fun sivulaukku_NK : NK ;
+fun sivulause_NK : NK ;
+fun sivuleikkuri_NK : NK ;
+fun sivuliike_NK : NK ;
+fun sivulletaivutus_NK : NK ;
+fun sivuluisu_NK : NK ;
+fun sivuluku_NK : NK ;
+fun sivumaku_NK : NK ;
+fun sivumeri_NK : NK ;
+fun sivumerkitys_NK : NK ;
+fun sivumyyma'la'_NK : NK ;
+fun sivumyo'ta'inen_NK : NK ;
+fun sivuma'a'ra'_NK : NK ;
+fun sivunumero_NK : NK ;
+fun sivunumerointi_NK : NK ;
+fun sivuontelo_NK : NK ;
+fun sivuosa_NK : NK ;
+fun sivuotsikko_NK : NK ;
+fun sivuovi_NK : NK ;
+fun sivupaino_NK : NK ;
+fun sivuperillinen_NK : NK ;
+fun sivuperinto'_NK : NK ;
+fun sivupersoona_NK : NK ;
+fun sivupera'sin_NK : NK ;
+fun sivupinta_NK : NK ;
+fun sivupolku_NK : NK ;
+fun sivupo'yta'_NK : NK ;
+fun sivuraide_NK : NK ;
+fun sivuraja_NK : NK ;
+fun sivurajaheitto_NK : NK ;
+fun sivurakennus_NK : NK ;
+fun sivusaatava_NK : NK ;
+fun sivusauma_NK : NK ;
+fun sivuseikka_NK : NK ;
+fun sivustahyo'kka'ys_NK : NK ;
+fun sivustakatsoja_NK : NK ;
+fun sivustasuoja_NK : NK ;
+fun sivustatuki_NK : NK ;
+fun sivustavarmistus_NK : NK ;
+fun sivusuunta_NK : NK ;
+fun sivusuuntainen_NK : NK ;
+fun sivutaivutus_NK : NK ;
+fun sivutasku_NK : NK ;
+fun sivuteema_NK : NK ;
+fun sivutie_NK : NK ;
+fun sivutoimi_NK : NK ;
+fun sivutoiminen_NK : NK ;
+fun sivutulo_NK : NK ;
+fun sivutuote_NK : NK ;
+fun sivutuuli_NK : NK ;
+fun sivutyo'_NK : NK ;
+fun sivuvaaka_NK : NK ;
+fun sivuvaikutus_NK : NK ;
+fun sivuvaimo_NK : NK ;
+fun sivuvakain_NK : NK ;
+fun sivuvalo_NK : NK ;
+fun sivuvastainen_NK : NK ;
+fun sivuvaunu_NK : NK ;
+fun sivuverho_NK : NK ;
+fun sivuvirka_NK : NK ;
+fun sivuvivahde_NK : NK ;
+fun sivua'a'ni_NK : NK ;
+fun skandaalijuttu_NK : NK ;
+fun skandaalilehti_NK : NK ;
+fun skandaalimainen_NK : NK ;
+fun skeittiramppi_NK : NK ;
+fun skottihame_NK : NK ;
+fun skottilainen_NK : NK ;
+fun skottiruutuinen_NK : NK ;
+fun slaavilainen_NK : NK ;
+fun slapstickkomedia_NK : NK ;
+fun slummialue_NK : NK ;
+fun smaragdisormus_NK : NK ;
+fun smirgelikangas_NK : NK ;
+fun smirgelipaperi_NK : NK ;
+fun smokkipaita_NK : NK ;
+fun smokkipukuinen_NK : NK ;
+fun snapsilasi_NK : NK ;
+fun sohjokeli_NK : NK ;
+fun sohjoliirto_NK : NK ;
+fun sohjolumi_NK : NK ;
+fun sohvakalusto_NK : NK ;
+fun sohvanurkka_NK : NK ;
+fun sohvanurkkaus_NK : NK ;
+fun sohvapo'yta'_NK : NK ;
+fun sohvaryhma'_NK : NK ;
+fun sohvatyyny_NK : NK ;
+fun soidensuojelualue_NK : NK ;
+fun soidinlento_NK : NK ;
+fun soidinpaikka_NK : NK ;
+fun soidinpuku_NK : NK ;
+fun soidina'a'ni_NK : NK ;
+fun soihtukulkue_NK : NK ;
+fun soihtukynttila'_NK : NK ;
+fun soihtuko'ynno's_NK : NK ;
+fun soijajauho_NK : NK ;
+fun soijajuusto_NK : NK ;
+fun soijakakku_NK : NK ;
+fun soijakastike_NK : NK ;
+fun soijamaito_NK : NK ;
+fun soijapapu_NK : NK ;
+fun soijao'ljy_NK : NK ;
+fun soikeakasvoinen_NK : NK ;
+fun sointiva'ri_NK : NK ;
+fun sointuanalyysi_NK : NK ;
+fun sointukulku_NK : NK ;
+fun sointumerkinta'_NK : NK ;
+fun sointumerkki_NK : NK ;
+fun sointuoppi_NK : NK ;
+fun sointurakenne_NK : NK ;
+fun soitinmusiikki_NK : NK ;
+fun soitinsoolo_NK : NK ;
+fun soitinsa'vellys_NK : NK ;
+fun soitinyhtye_NK : NK ;
+fun soitina'a'ni_NK : NK ;
+fun soittoharrastus_NK : NK ;
+fun soittokello_NK : NK ;
+fun soittokone_NK : NK ;
+fun soittokunta_NK : NK ;
+fun soittolava_NK : NK ;
+fun soittola'ksy_NK : NK ;
+fun soittonappi_NK : NK ;
+fun soittonappula_NK : NK ;
+fun soittoniekka_NK : NK ;
+fun soittopeli_NK : NK ;
+fun soittopyynto'_NK : NK ;
+fun soittorasia_NK : NK ;
+fun soittoruokala_NK : NK ;
+fun soittotaito_NK : NK ;
+fun soittotekniikka_NK : NK ;
+fun soittotunti_NK : NK ;
+fun sokeriastia_NK : NK ;
+fun sokeriherne_NK : NK ;
+fun sokerihumala_NK : NK ;
+fun sokerijuurikas_NK : NK ;
+fun sokerikakku_NK : NK ;
+fun sokerikasvi_NK : NK ;
+fun sokerikorppu_NK : NK ;
+fun sokerikuorrute_NK : NK ;
+fun sokerikuorrutus_NK : NK ;
+fun sokerileipomo_NK : NK ;
+fun sokerileipuri_NK : NK ;
+fun sokeriliemi_NK : NK ;
+fun sokerilusikka_NK : NK ;
+fun sokerimaissi_NK : NK ;
+fun sokeripala_NK : NK ;
+fun sokeripalanen_NK : NK ;
+--? fun sokeripihdit_NK : NK ;
+fun sokeripitoinen_NK : NK ;
+fun sokeripitoisuus_NK : NK ;
+fun sokeriruoko_NK : NK ;
+fun sokeriruokoviljelma'_NK : NK ;
+fun sokerisirotin_NK : NK ;
+fun sokerisuolaus_NK : NK ;
+fun sokeritauti_NK : NK ;
+fun sokeritautinen_NK : NK ;
+fun sokeritautipotilas_NK : NK ;
+fun sokeritehdas_NK : NK ;
+fun sokeriteollisuus_NK : NK ;
+fun sokeritoppa_NK : NK ;
+fun sokeritoukka_NK : NK ;
+fun sokerivaahtera_NK : NK ;
+fun sokerivesi_NK : NK ;
+fun sokerivesikuorrute_NK : NK ;
+fun sokerivesikuorrutus_NK : NK ;
+fun sokkanaula_NK : NK ;
+fun sokkapultti_NK : NK ;
+fun sokkelisa'nky_NK : NK ;
+fun sokkiaalto_NK : NK ;
+fun sokkihoito_NK : NK ;
+fun sokkitila_NK : NK ;
+fun sokkokoe_NK : NK ;
+fun sokkoleikki_NK : NK ;
+fun sokkolento_NK : NK ;
+fun sokkopeli_NK : NK ;
+fun sokkosyo'tto'_NK : NK ;
+fun sokkotesti_NK : NK ;
+--? fun sokkotreffit_NK : NK ;
+fun sokkotutkimus_NK : NK ;
+fun sokkovaihto_NK : NK ;
+fun solakkarunkoinen_NK : NK ;
+fun solaniini_NK : NK ;
+fun solisluuhengitys_NK : NK ;
+fun solistikonsertti_NK : NK ;
+fun solkikenka'_NK : NK ;
+fun solkivyo'_NK : NK ;
+fun solmeilutyo'_NK : NK ;
+fun solmioneula_NK : NK ;
+fun solmiopakko_NK : NK ;
+fun solmupisto_NK : NK ;
+fun solmuva'li_NK : NK ;
+fun solttupoika_NK : NK ;
+fun soluasunto_NK : NK ;
+fun solubetoni_NK : NK ;
+fun solubiologia_NK : NK ;
+fun soluelin_NK : NK ;
+fun soluhengitys_NK : NK ;
+fun solukalvo_NK : NK ;
+fun solukarva_NK : NK ;
+fun solukelmu_NK : NK ;
+fun solukumi_NK : NK ;
+fun solulima_NK : NK ;
+fun solumuovi_NK : NK ;
+fun solumyrkky_NK : NK ;
+fun soluneste_NK : NK ;
+fun solunesteontelo_NK : NK ;
+fun solunsalpaajahoito_NK : NK ;
+fun soluoppi_NK : NK ;
+fun solutuho_NK : NK ;
+fun solutuotanto_NK : NK ;
+fun solutustyo'_NK : NK ;
+fun solutyo'_NK : NK ;
+fun soluva'li_NK : NK ;
+fun soluva'liaine_NK : NK ;
+fun solvauskirjoitus_NK : NK ;
+fun somalialainen_NK : NK ;
+fun sompahissi_NK : NK ;
+fun sonaattimuoto_NK : NK ;
+fun sonnimulli_NK : NK ;
+fun sonnimullikka_NK : NK ;
+fun sonnivasikka_NK : NK ;
+fun sontakuorma_NK : NK ;
+fun soodaliuos_NK : NK ;
+fun soodavesi_NK : NK ;
+fun sooloalbumi_NK : NK ;
+fun sooloartisti_NK : NK ;
+fun sooloesitys_NK : NK ;
+fun soolohyo'kka'ys_NK : NK ;
+fun soolojuoksu_NK : NK ;
+fun soolokitara_NK : NK ;
+fun soolokitaristi_NK : NK ;
+fun soolokvartetti_NK : NK ;
+fun soololaulaja_NK : NK ;
+fun soololaulu_NK : NK ;
+fun soololevy_NK : NK ;
+fun soolosoitin_NK : NK ;
+fun soolosoittaja_NK : NK ;
+fun soolosa'vellys_NK : NK ;
+fun soolotanssi_NK : NK ;
+fun sooloura_NK : NK ;
+fun soopeliturkki_NK : NK ;
+fun sopimusehdotus_NK : NK ;
+fun sopimushinta_NK : NK ;
+fun sopimuskausi_NK : NK ;
+fun sopimuskierros_NK : NK ;
+fun sopimuskirja_NK : NK ;
+fun sopimuskumppani_NK : NK ;
+fun sopimuslomake_NK : NK ;
+fun sopimusluonnos_NK : NK ;
+fun sopimusneuvottelu_NK : NK ;
+fun sopimusoikeus_NK : NK ;
+fun sopimuspakko_NK : NK ;
+fun sopimuspalkka_NK : NK ;
+fun sopimuspalkkainen_NK : NK ;
+fun sopimuspohjainen_NK : NK ;
+fun sopimuspuoli_NK : NK ;
+fun sopimusrikkomus_NK : NK ;
+fun sopimussuhde_NK : NK ;
+fun sopimusteksti_NK : NK ;
+fun sopimustie_NK : NK ;
+fun sopimusvaltio_NK : NK ;
+fun sopimusvapaus_NK : NK ;
+fun sopimusviljelija'_NK : NK ;
+fun sopimusviljelma'_NK : NK ;
+fun sopimusviljely_NK : NK ;
+fun sopimusvuosi_NK : NK ;
+fun sopivaisuussa'a'nto'_NK : NK ;
+fun soppajono_NK : NK ;
+fun soppakala_NK : NK ;
+fun soppakanuuna_NK : NK ;
+fun soppakauha_NK : NK ;
+fun soppaliha_NK : NK ;
+fun soppatykki_NK : NK ;
+fun sopraanoaaria_NK : NK ;
+fun sopraanoa'a'ni_NK : NK ;
+fun sopuhinta_NK : NK ;
+fun sopuhintainen_NK : NK ;
+fun sopujuoksu_NK : NK ;
+fun sopulilauma_NK : NK ;
+fun sopulivuosi_NK : NK ;
+fun sopuottelu_NK : NK ;
+fun sopupeli_NK : NK ;
+fun sopuratkaisu_NK : NK ;
+fun sopusointu_NK : NK ;
+fun sopusointuinen_AK : AK ;
+fun sopusuhta_NK : NK ;
+fun sopusuhtainen_AK : AK ;
+fun sopusuhtaisuus_NK : NK ;
+fun soraharju_NK : NK ;
+fun sorahiekka_NK : NK ;
+fun sorakerrostuma_NK : NK ;
+fun sorakielinen_NK : NK ;
+fun sorakielisyys_NK : NK ;
+fun sorakuoppa_NK : NK ;
+fun soramonttu_NK : NK ;
+fun soranottopaikka_NK : NK ;
+fun sorapa'a'llyste_NK : NK ;
+fun soratie_NK : NK ;
+fun soraa'a'ni_NK : NK ;
+fun sorjavartinen_NK : NK ;
+fun sorkkaela'in_NK : NK ;
+fun sorkkarauta_NK : NK ;
+fun sorkkatauti_NK : NK ;
+fun sorkkavasara_NK : NK ;
+fun sorkkao'ljy_NK : NK ;
+fun sormenja'lkikuvio_NK : NK ;
+fun sormenja'lkitutkimus_NK : NK ;
+fun sormenpa'a'tuntuma_NK : NK ;
+fun sormiaakkonen_NK : NK ;
+fun sormihalkoinen_NK : NK ;
+fun sormiharjoitus_NK : NK ;
+fun sormijakoinen_NK : NK ;
+fun sormijatkos_NK : NK ;
+fun sormija'rjestys_NK : NK ;
+fun sormikihara_NK : NK ;
+fun sormikoukku_NK : NK ;
+fun sormiliuskainen_NK : NK ;
+fun sormiluu_NK : NK ;
+fun sormimerkki_NK : NK ;
+fun sorminivel_NK : NK ;
+fun sormina'ppa'ryys_NK : NK ;
+fun sormiosainen_NK : NK ;
+fun sormisuojain_NK : NK ;
+fun sormituntuma_NK : NK ;
+fun sormiva'li_NK : NK ;
+fun sormiva'ri_NK : NK ;
+fun sormustinkukka_NK : NK ;
+fun sorsaemo_NK : NK ;
+fun sorsajahti_NK : NK ;
+fun sorsalintu_NK : NK ;
+fun sorsapaisti_NK : NK ;
+fun sorsapoikue_NK : NK ;
+fun sortohallitus_NK : NK ;
+fun sortokausi_NK : NK ;
+fun sortokulma_NK : NK ;
+fun sortotoimi_NK : NK ;
+fun sortovalta_NK : NK ;
+fun sorvipenkki_NK : NK ;
+fun sorvitaltta_NK : NK ;
+fun sosekeitto_NK : NK ;
+fun sosemylly_NK : NK ;
+fun sosiaaliturvamaksu_NK : NK ;
+fun sosiaaliturvatunnus_NK : NK ;
+fun sosialistijohtaja_NK : NK ;
+fun sosialistimaa_NK : NK ;
+fun sosialistipoliitikko_NK : NK ;
+fun sosialistipuolue_NK : NK ;
+fun sotaharjoitus_NK : NK ;
+fun sotahistoria_NK : NK ;
+fun sotahullu_NK : NK ;
+fun sotahuuto_NK : NK ;
+fun sotahysteria_NK : NK ;
+fun sotainvalidi_NK : NK ;
+fun sotajoukko_NK : NK ;
+fun sotajuoni_NK : NK ;
+fun sotajuttu_NK : NK ;
+fun sotakalusto_NK : NK ;
+fun sotakirja_NK : NK ;
+fun sotakirjailija_NK : NK ;
+fun sotakirves_NK : NK ;
+fun sotakoira_NK : NK ;
+fun sotakone_NK : NK ;
+fun sotakoneisto_NK : NK ;
+fun sotakorvaus_NK : NK ;
+fun sotalaitos_NK : NK ;
+fun sotalaiva_NK : NK ;
+fun sotalaivasto_NK : NK ;
+fun sotalapsi_NK : NK ;
+fun sotaleikki_NK : NK ;
+fun sotalelu_NK : NK ;
+fun sotaleski_NK : NK ;
+fun sotaliike_NK : NK ;
+fun sotalippu_NK : NK ;
+fun sotamaalaus_NK : NK ;
+fun sotamarsalkka_NK : NK ;
+fun sotamateriaali_NK : NK ;
+fun sotamies_NK : NK ;
+fun sotamuisto_NK : NK ;
+fun sotana'ytta'mo'_NK : NK ;
+fun sotaoikeus_NK : NK ;
+fun sotaonni_NK : NK ;
+fun sotaorpo_NK : NK ;
+fun sotapakolainen_NK : NK ;
+fun sotapalvelus_NK : NK ;
+fun sotapeli_NK : NK ;
+fun sotapoika_NK : NK ;
+fun sotapoliisi_NK : NK ;
+fun sotapolitiikka_NK : NK ;
+fun sotapropaganda_NK : NK ;
+fun sotapsykoosi_NK : NK ;
+fun sotapa'a'llikko'_NK : NK ;
+fun sotarasitus_NK : NK ;
+fun sotaratsu_NK : NK ;
+fun sotaretki_NK : NK ;
+fun sotarikollinen_NK : NK ;
+fun sotarikos_NK : NK ;
+fun sotaromaani_NK : NK ;
+fun sotaruno_NK : NK ;
+fun sotasaalis_NK : NK ;
+fun sotasairaala_NK : NK ;
+fun sotasalaisuus_NK : NK ;
+fun sotasankari_NK : NK ;
+fun sotasatama_NK : NK ;
+fun sotaseikkailu_NK : NK ;
+fun sotasensuuri_NK : NK ;
+fun sotasokea_NK : NK ;
+fun sotasyyllinen_NK : NK ;
+fun sotasyyllisyys_NK : NK ;
+fun sotataito_NK : NK ;
+fun sotatanner_NK : NK ;
+fun sotatanssi_NK : NK ;
+fun sotatantere_NK : NK ;
+fun sotatapahtuma_NK : NK ;
+fun sotatarvike_NK : NK ;
+fun sotatarviketeollisuus_NK : NK ;
+fun sotatekniikka_NK : NK ;
+fun sotatekninen_NK : NK ;
+fun sotateollisuus_NK : NK ;
+fun sotatiede_NK : NK ;
+fun sotatila_NK : NK ;
+fun sotatoimi_NK : NK ;
+fun sotatoimialue_NK : NK ;
+fun sotatoimiyhtyma'_NK : NK ;
+fun sotatoimiyksikko'_NK : NK ;
+fun sotatuomari_NK : NK ;
+fun sotauutinen_NK : NK ;
+fun sotavahinko_NK : NK ;
+fun sotavahvuinen_NK : NK ;
+fun sotavahvuus_NK : NK ;
+fun sotavalmius_NK : NK ;
+fun sotavamma_NK : NK ;
+fun sotavammainen_NK : NK ;
+fun sotavanki_NK : NK ;
+fun sotavankileiri_NK : NK ;
+fun sotavarustelu_NK : NK ;
+fun sotavarustus_NK : NK ;
+fun sotaveteraani_NK : NK ;
+fun sotavuosi_NK : NK ;
+fun sotava'ki_NK : NK ;
+fun sotava'symys_NK : NK ;
+fun sotilasammatti_NK : NK ;
+fun sotilasansio_NK : NK ;
+fun sotilasarvo_NK : NK ;
+fun sotilasase_NK : NK ;
+fun sotilasattasea_NK : NK ;
+fun sotilasavustus_NK : NK ;
+fun sotilasdiktatuuri_NK : NK ;
+fun sotilasela'ma'_NK : NK ;
+fun sotilasfarssi_NK : NK ;
+fun sotilashallinto_NK : NK ;
+fun sotilashallitus_NK : NK ;
+fun sotilashenkilo'_NK : NK ;
+fun sotilashuumori_NK : NK ;
+fun sotilasilmailu_NK : NK ;
+fun sotilasjohtaja_NK : NK ;
+fun sotilasjohto_NK : NK ;
+fun sotilasjuntta_NK : NK ;
+fun sotilaskarkuri_NK : NK ;
+fun sotilaskentta'_NK : NK ;
+fun sotilaskieli_NK : NK ;
+fun sotilaskiva'a'ri_NK : NK ;
+fun sotilaskohde_NK : NK ;
+fun sotilaskone_NK : NK ;
+fun sotilaskoti_NK : NK ;
+fun sotilaskotisisar_NK : NK ;
+fun sotilaskoulutus_NK : NK ;
+fun sotilaskunnia_NK : NK ;
+fun sotilaskuri_NK : NK ;
+fun sotilaskyla'_NK : NK ;
+fun sotilaskypa'ra'_NK : NK ;
+fun sotilaska'ytto'_NK : NK ;
+fun sotilasleiri_NK : NK ;
+fun sotilaslenta'ja'_NK : NK ;
+fun sotilasliitto_NK : NK ;
+fun sotilasliittouma_NK : NK ;
+fun sotilaslippu_NK : NK ;
+fun sotilasla'hde_NK : NK ;
+fun sotilasla'a'ka'ri_NK : NK ;
+fun sotilasla'a'ni_NK : NK ;
+fun sotilasmahti_NK : NK ;
+fun sotilasmaine_NK : NK ;
+fun sotilasmalli_NK : NK ;
+fun sotilasmallinen_NK : NK ;
+fun sotilasmarssi_NK : NK ;
+fun sotilasmestari_NK : NK ;
+fun sotilasmusiikki_NK : NK ;
+fun sotilasopetus_NK : NK ;
+fun sotilasorkesteri_NK : NK ;
+fun sotilasosasto_NK : NK ;
+fun sotilaspappi_NK : NK ;
+fun sotilasparaati_NK : NK ;
+fun sotilaspassi_NK : NK ;
+fun sotilaspastori_NK : NK ;
+fun sotilaspistooli_NK : NK ;
+fun sotilaspoliisi_NK : NK ;
+fun sotilaspolitiikka_NK : NK ;
+fun sotilaspuhelin_NK : NK ;
+fun sotilaspuku_NK : NK ;
+fun sotilaspukuinen_NK : NK ;
+fun sotilasrikos_NK : NK ;
+fun sotilassaapas_NK : NK ;
+fun sotilassairaala_NK : NK ;
+fun sotilassalaisuus_NK : NK ;
+fun sotilasslangi_NK : NK ;
+fun sotilassoittaja_NK : NK ;
+fun sotilasteltta_NK : NK ;
+fun sotilastukikohta_NK : NK ;
+fun sotilasunivormu_NK : NK ;
+fun sotilasura_NK : NK ;
+fun sotilasurheilu_NK : NK ;
+fun sotilasurheilulaji_NK : NK ;
+fun sotilasvakoilu_NK : NK ;
+fun sotilasvala_NK : NK ;
+fun sotilasvalta_NK : NK ;
+fun sotilasvaltio_NK : NK ;
+fun sotilasvirka_NK : NK ;
+fun sotilasvirkamies_NK : NK ;
+fun sotilasvirkapuku_NK : NK ;
+fun sotumaksu_NK : NK ;
+fun soukkalehtinen_NK : NK ;
+fun soutukilpailu_NK : NK ;
+fun soutulaite_NK : NK ;
+fun soutuliike_NK : NK ;
+fun soutumatka_NK : NK ;
+fun soutupenkki_NK : NK ;
+fun soutustadion_NK : NK ;
+fun soututeljo_NK : NK ;
+fun soututuhto_NK : NK ;
+fun soutuvene_NK : NK ;
+fun sovellusharjoitus_NK : NK ;
+fun sovelluskehitin_NK : NK ;
+fun sovellusohjelma_NK : NK ;
+fun soveltuvuuskoe_NK : NK ;
+fun soveltuvuustesti_NK : NK ;
+fun soveltuvuustutkimus_NK : NK ;
+fun sovinistisika_NK : NK ;
+fun sovintoesitys_NK : NK ;
+fun sovintokuolema_NK : NK ;
+fun sovintomenettely_NK : NK ;
+fun sovintoneuvottelu_NK : NK ;
+fun sovintopolitiikka_NK : NK ;
+fun sovintoveri_NK : NK ;
+fun sovitteluehdotus_NK : NK ;
+fun sovitteluesitys_NK : NK ;
+fun sovittelukyky_NK : NK ;
+fun sovittelupolitiikka_NK : NK ;
+fun sovitteluratkaisu_NK : NK ;
+fun sovitteluyritys_NK : NK ;
+fun sovitushuone_NK : NK ;
+fun sovituskoppi_NK : NK ;
+fun sovituskuolema_NK : NK ;
+fun sovitusnukke_NK : NK ;
+fun sovitusoppi_NK : NK ;
+fun sovitusuhri_NK : NK ;
+fun spektrianalyysi_NK : NK ;
+fun spermapankki_NK : NK ;
+fun sporttihenkinen_NK : NK ;
+fun sporttimalli_NK : NK ;
+fun sporttimallinen_NK : NK ;
+fun spraymaali_NK : NK ;
+fun spraypullo_NK : NK ;
+fun sprayto'lkki_NK : NK ;
+fun spriikeitin_NK : NK ;
+fun spriiliukoinen_NK : NK ;
+fun sprinklerilaitteisto_NK : NK ;
+fun stadionyleiso'_NK : NK ;
+fun standardikiva'a'ri_NK : NK ;
+fun standardikokoinen_NK : NK ;
+fun standardimalli_NK : NK ;
+fun standardimitoitus_NK : NK ;
+fun standardimittainen_NK : NK ;
+fun standardipoikkeama_NK : NK ;
+fun standardisointi_NK : NK ;
+fun standardituote_NK : NK ;
+fun standardointielin_NK : NK ;
+fun standardointityo'_NK : NK ;
+fun starttipistooli_NK : NK ;
+fun starttiraha_NK : NK ;
+fun statussymboli_NK : NK ;
+fun steariinikynttila'_NK : NK ;
+fun stemmaharjoitus_NK : NK ;
+fun stereokamera_NK : NK ;
+fun stereokartoitus_NK : NK ;
+fun stereokuva_NK : NK ;
+fun stereokuvaus_NK : NK ;
+fun stereola'hetys_NK : NK ;
+fun stereona'ko'_NK : NK ;
+fun stereoradio_NK : NK ;
+fun stereoskooppikuva_NK : NK ;
+fun stereotelevisio_NK : NK ;
+fun stereotoisto_NK : NK ;
+fun stereotyyppi_NK : NK ;
+fun stereotyyppinen_AK : AK ;
+fun stereoa'a'ni_NK : NK ;
+fun stereoa'a'nite_NK : NK ;
+fun stipendimatka_NK : NK ;
+fun stipendirahasto_NK : NK ;
+fun stoppari_NK : NK ;
+fun strassikoru_NK : NK ;
+fun stressihormoni_NK : NK ;
+fun stressilelu_NK : NK ;
+fun stressiloma_NK : NK ;
+fun stressioire_NK : NK ;
+fun stressisairaus_NK : NK ;
+fun stressitekija'_NK : NK ;
+fun stressitilanne_NK : NK ;
+fun studioyhtye_NK : NK ;
+fun studioyleiso'_NK : NK ;
+fun studioa'a'nitys_NK : NK ;
+fun stukkotyo'_NK : NK ;
+fun subjektiosa_NK : NK ;
+fun subjektivisti_NK : NK ;
+fun substanssiarvo_NK : NK ;
+fun substantiivitauti_NK : NK ;
+fun substantiivityyli_NK : NK ;
+fun sudennahkaturkki_NK : NK ;
+fun suhdannebarometri_NK : NK ;
+fun suhdanneherkkyys_NK : NK ;
+fun suhdanneherkka'_NK : NK ;
+fun suhdannehuippu_NK : NK ;
+fun suhdannekehitys_NK : NK ;
+fun suhdannena'kyma'_NK : NK ;
+fun suhdannepolitiikka_NK : NK ;
+fun suhdannerahasto_NK : NK ;
+fun suhdannetaantuma_NK : NK ;
+fun suhdannetalletus_NK : NK ;
+fun suhdannetasaus_NK : NK ;
+fun suhdannetyo'tto'myys_NK : NK ;
+fun suhdannevaihtelu_NK : NK ;
+fun suhdannevaraus_NK : NK ;
+fun suhdeluku_NK : NK ;
+fun suhdetoiminta_NK : NK ;
+fun suhdetoimintahenkilo'_NK : NK ;
+fun suhdetoimintamies_NK : NK ;
+fun suhdetoimintanainen_NK : NK ;
+fun suhdetoimintasihteeri_NK : NK ;
+fun suhteellisuusteoria_NK : NK ;
+fun suihkelaastari_NK : NK ;
+fun suihkepullo_NK : NK ;
+fun suihkuallas_NK : NK ;
+fun suihkualus_NK : NK ;
+fun suihkugeeli_NK : NK ;
+fun suihkuhieronta_NK : NK ;
+fun suihkuhuone_NK : NK ;
+fun suihkuha'vitta'ja'_NK : NK ;
+fun suihkukaappi_NK : NK ;
+fun suihkukaivo_NK : NK ;
+fun suihkukomennus_NK : NK ;
+fun suihkukone_NK : NK ;
+fun suihkulaite_NK : NK ;
+fun suihkula'hde_NK : NK ;
+fun suihkumoottori_NK : NK ;
+fun suihkumyssy_NK : NK ;
+fun suihkupullo_NK : NK ;
+fun suihkusuutin_NK : NK ;
+fun suihkutila_NK : NK ;
+fun suihkuturbiini_NK : NK ;
+fun suihkutusmoottori_NK : NK ;
+fun suihkutuspumppu_NK : NK ;
+fun suihkuverho_NK : NK ;
+fun suihkuvirtaus_NK : NK ;
+fun suikaleliha_NK : NK ;
+fun suikalepaisti_NK : NK ;
+fun suikalepata_NK : NK ;
+fun suippokaarinen_NK : NK ;
+fun suippokuonoinen_NK : NK ;
+fun suippoka'rkinen_NK : NK ;
+fun suippolatvainen_NK : NK ;
+fun suippopa'inen_NK : NK ;
+fun suistomaa_NK : NK ;
+fun suistorannikko_NK : NK ;
+fun suitsutusaine_NK : NK ;
+fun suitsutuspuikko_NK : NK ;
+fun suitsutussavu_NK : NK ;
+fun sujuvakyna'inen_NK : NK ;
+fun sujuvasanainen_NK : NK ;
+fun sukaattisitruuna_NK : NK ;
+fun sukakarva_NK : NK ;
+fun sukellusalus_NK : NK ;
+fun sukelluskalastus_NK : NK ;
+fun sukelluskello_NK : NK ;
+fun sukelluskypa'ra'_NK : NK ;
+fun sukellusnaamari_NK : NK ;
+fun sukelluspuku_NK : NK ;
+fun sukellusrobotti_NK : NK ;
+fun sukellussuunnistus_NK : NK ;
+fun sukellusvaruste_NK : NK ;
+fun sukellusvene_NK : NK ;
+fun sukellusvenesota_NK : NK ;
+fun sukellusveneverkko_NK : NK ;
+--? fun sukkahousut_NK : NK ;
+fun sukkalanka_NK : NK ;
+fun sukkamehu_NK : NK ;
+fun sukkamekko_NK : NK ;
+fun sukkanauha_NK : NK ;
+fun sukkanauhavyo'_NK : NK ;
+fun sukkapari_NK : NK ;
+fun sukkapuikko_NK : NK ;
+fun sukkapuku_NK : NK ;
+fun sukkelajalkainen_NK : NK ;
+fun sukkelaliikkeinen_NK : NK ;
+fun sukkelasanainen_NK : NK ;
+fun sukkuladiplomatia_NK : NK ;
+fun sukkulalento_NK : NK ;
+fun sukkulaliikenne_NK : NK ;
+fun sukkulamato_NK : NK ;
+fun sukkulaviesti_NK : NK ;
+fun sukkulava'esto'_NK : NK ;
+fun suklaaja'a'telo'_NK : NK ;
+fun suklaakakku_NK : NK ;
+fun suklaakastike_NK : NK ;
+fun suklaakiisseli_NK : NK ;
+fun suklaakonvehti_NK : NK ;
+fun suklaakuorrute_NK : NK ;
+fun suklaakuorrutus_NK : NK ;
+fun suklaaleivos_NK : NK ;
+fun suklaalevy_NK : NK ;
+fun suklaamakeinen_NK : NK ;
+fun suklaamousse_NK : NK ;
+fun suklaamuna_NK : NK ;
+fun suklaanappi_NK : NK ;
+fun suklaapatukka_NK : NK ;
+fun suklaapa'a'llyste_NK : NK ;
+fun suklaarasia_NK : NK ;
+fun suklaata'yte_NK : NK ;
+fun suklaata'ytteinen_NK : NK ;
+fun suklaavanukas_NK : NK ;
+fun suksiboksi_NK : NK ;
+fun suksikeli_NK : NK ;
+fun suksikelkka_NK : NK ;
+fun suksikotelo_NK : NK ;
+fun suksipari_NK : NK ;
+fun suksipussi_NK : NK ;
+fun suksirasva_NK : NK ;
+fun suksirikko_NK : NK ;
+fun suksisauva_NK : NK ;
+fun suksiside_NK : NK ;
+fun suksiteline_NK : NK ;
+fun suksivoide_NK : NK ;
+fun sukuelin_NK : NK ;
+fun sukuhaara_NK : NK ;
+fun sukuhauta_NK : NK ;
+fun sukuhistoria_NK : NK ;
+fun sukuhormoni_NK : NK ;
+fun sukujuhla_NK : NK ;
+fun sukukalleus_NK : NK ;
+fun sukukansa_NK : NK ;
+fun sukukartano_NK : NK ;
+fun sukukieli_NK : NK ;
+fun sukukirja_NK : NK ;
+fun sukukokous_NK : NK ;
+fun sukukunta_NK : NK ;
+fun sukukypsyys_NK : NK ;
+fun sukukypsa'_NK : NK ;
+fun sukulainen_NK : NK ;
+fun sukulaisuusaste_NK : NK ;
+fun sukulaisuusside_NK : NK ;
+fun sukulaisuussuhde_NK : NK ;
+fun sukuluettelo_NK : NK ;
+fun sukunimi_NK : NK ;
+fun sukuna'ko'_NK : NK ;
+fun sukuoikeus_NK : NK ;
+fun sukupera'_NK : NK ;
+fun sukupolvenvaihdosela'ke_NK : NK ;
+fun sukupolvi_NK : NK ;
+fun sukupuoli_NK : NK ;
+fun sukupuoliakti_NK : NK ;
+fun sukupuolielin_NK : NK ;
+fun sukupuoliela'ma'_NK : NK ;
+fun sukupuoliero_NK : NK ;
+fun sukupuolifantasia_NK : NK ;
+fun sukupuolihormoni_NK : NK ;
+fun sukupuolihurjastelu_NK : NK ;
+fun sukupuolijakauma_NK : NK ;
+fun sukupuolikasvatus_NK : NK ;
+fun sukupuolikiintio'_NK : NK ;
+fun sukupuolikromosomi_NK : NK ;
+fun sukupuolikumppani_NK : NK ;
+fun sukupuolikuri_NK : NK ;
+fun sukupuolikypsyys_NK : NK ;
+fun sukupuolikypsa'_NK : NK ;
+fun sukupuolileikki_NK : NK ;
+fun sukupuolimoraali_NK : NK ;
+fun sukupuolinen_AK : AK ;
+fun sukupuolineutraali_NK : NK ;
+fun sukupuolineuvonta_NK : NK ;
+fun sukupuoliobjekti_NK : NK ;
+fun sukupuoliominaisuus_NK : NK ;
+fun sukupuoliopetus_NK : NK ;
+fun sukupuolirauhanen_NK : NK ;
+fun sukupuolirooli_NK : NK ;
+fun sukupuolisolu_NK : NK ;
+fun sukupuolisuhde_NK : NK ;
+fun sukupuolisyrjinta'_NK : NK ;
+fun sukupuolitauti_NK : NK ;
+fun sukupuolitesti_NK : NK ;
+fun sukupuolitoiminto_NK : NK ;
+fun sukupuolivalistus_NK : NK ;
+fun sukupuolivietti_NK : NK ;
+fun sukupuoliyhdynta'_NK : NK ;
+fun sukupuoliyhteys_NK : NK ;
+fun sukupuu_NK : NK ;
+fun sukurakas_NK : NK ;
+fun sukurakkaus_NK : NK ;
+fun sukurasitus_NK : NK ;
+fun sukuromaani_NK : NK ;
+fun sukuselvitys_NK : NK ;
+fun sukusiitos_NK : NK ;
+fun sukusolu_NK : NK ;
+fun sukutalo_NK : NK ;
+fun sukutaulu_NK : NK ;
+fun sukutila_NK : NK ;
+fun sukututkija_NK : NK ;
+fun sukututkimus_NK : NK ;
+fun sukuvaakuna_NK : NK ;
+fun sukuvietti_NK : NK ;
+fun sukuvika_NK : NK ;
+fun sukuylpeys_NK : NK ;
+fun sulakeautomaatti_NK : NK ;
+fun sulamisla'mpo'tila_NK : NK ;
+fun sulatejuusto_NK : NK ;
+fun sulateva'ri_NK : NK ;
+fun sulatusaine_NK : NK ;
+fun sulatusuuni_NK : NK ;
+fun sulavaliikkeinen_NK : NK ;
+fun sulfaattimenetelma'_NK : NK ;
+fun sulfaattisellu_NK : NK ;
+fun sulfaattiselluloosa_NK : NK ;
+fun sulfaattisellutehdas_NK : NK ;
+fun sulfakuuri_NK : NK ;
+fun sulfala'a'ke_NK : NK ;
+fun sulfavalmiste_NK : NK ;
+fun sulfiittimenetelma'_NK : NK ;
+fun sulfiittisellu_NK : NK ;
+fun sulfiittiselluloosa_NK : NK ;
+fun sulfiittisellutehdas_NK : NK ;
+fun sulkakyna'_NK : NK ;
+fun sulkapallo_NK : NK ;
+fun sulkapallomaila_NK : NK ;
+fun sulkapalmu_NK : NK ;
+fun sulkasaniainen_NK : NK ;
+fun sulkasato_NK : NK ;
+fun sulkasuoninen_NK : NK ;
+fun sulkavene_NK : NK ;
+fun sulkijalihas_NK : NK ;
+fun sulkualue_NK : NK ;
+fun sulkuasento_NK : NK ;
+fun sulkuhana_NK : NK ;
+fun sulkukammio_NK : NK ;
+fun sulkukanava_NK : NK ;
+fun sulkulaite_NK : NK ;
+fun sulkulauseke_NK : NK ;
+fun sulkulista_NK : NK ;
+fun sulkumerkki_NK : NK ;
+fun sulkuportti_NK : NK ;
+fun sulkupyydys_NK : NK ;
+fun sulkutili_NK : NK ;
+fun sulkutuli_NK : NK ;
+fun sulkuventtiili_NK : NK ;
+fun sulkuviiva_NK : NK ;
+fun sulosointuinen_NK : NK ;
+fun sumerilainen_NK : NK ;
+fun sumopaini_NK : NK ;
+fun sumopainija_NK : NK ;
+fun sumppupuolustus_NK : NK ;
+fun sumuaine_NK : NK ;
+fun sumuharso_NK : NK ;
+fun sumukammio_NK : NK ;
+fun sumumainen_NK : NK ;
+fun sumumerkki_NK : NK ;
+fun sumupaalu_NK : NK ;
+fun sumupeite_NK : NK ;
+fun sumupilvi_NK : NK ;
+fun sumupisara_NK : NK ;
+fun sumusireeni_NK : NK ;
+fun sumusuihku_NK : NK ;
+fun sumutorvi_NK : NK ;
+fun sumuvaippa_NK : NK ;
+fun sumuvalo_NK : NK ;
+fun sumuverho_NK : NK ;
+fun sunnalainen_NK : NK ;
+fun sunnamuslimi_NK : NK ;
+fun sunniitti_NK : NK ;
+fun sunnimuslimi_NK : NK ;
+fun sunnuntaiaamu_NK : NK ;
+fun sunnuntaiautoilija_NK : NK ;
+fun sunnuntaihiihta'ja'_NK : NK ;
+fun sunnuntaikalastaja_NK : NK ;
+fun sunnuntaikorvaus_NK : NK ;
+fun sunnuntaika'vely_NK : NK ;
+fun sunnuntailapsi_NK : NK ;
+fun sunnuntailepo_NK : NK ;
+fun sunnuntailiikenne_NK : NK ;
+fun sunnuntaimaalari_NK : NK ;
+fun sunnuntainumero_NK : NK ;
+fun sunnuntaitunnelma_NK : NK ;
+fun sunnuntaityo'_NK : NK ;
+fun sunnuntaivuoro_NK : NK ;
+fun suoaukea_NK : NK ;
+fun suoaukeama_NK : NK ;
+fun suodatinjauhatus_NK : NK ;
+fun suodatinkahvi_NK : NK ;
+fun suodatinkangas_NK : NK ;
+fun suodatinkarkea_NK : NK ;
+fun suodatinkarkeus_NK : NK ;
+fun suodatinpaperi_NK : NK ;
+fun suodatinpussi_NK : NK ;
+fun suodatinsavuke_NK : NK ;
+fun suodatinsuppilo_NK : NK ;
+fun suohaukka_NK : NK ;
+fun suojaeristeinen_NK : NK ;
+fun suojaeristys_NK : NK ;
+fun suojaika'_NK : NK ;
+fun suojailma_NK : NK ;
+fun suojaistutus_NK : NK ;
+fun suojaja'nnite_NK : NK ;
+fun suojaja'nnitemuuntaja_NK : NK ;
+fun suojakaasu_NK : NK ;
+fun suojakaasuhitsaus_NK : NK ;
+fun suojakaide_NK : NK ;
+fun suojakasvi_NK : NK ;
+fun suojakatos_NK : NK ;
+fun suojakeino_NK : NK ;
+fun suojakeli_NK : NK ;
+fun suojakerros_NK : NK ;
+fun suojakoroke_NK : NK ;
+fun suojakotelo_NK : NK ;
+fun suojakypa'ra'_NK : NK ;
+fun suojaka'sine_NK : NK ;
+fun suojalakka_NK : NK ;
+fun suojalasi_NK : NK ;
+fun suojaliivi_NK : NK ;
+fun suojamaadoitus_NK : NK ;
+fun suojamaali_NK : NK ;
+fun suojamaatto_NK : NK ;
+fun suojamekanismi_NK : NK ;
+fun suojametsa'_NK : NK ;
+fun suojametsa'alue_NK : NK ;
+fun suojametsa'vyo'hyke_NK : NK ;
+fun suojamiinoite_NK : NK ;
+fun suojamuuri_NK : NK ;
+fun suojanaamari_NK : NK ;
+fun suojanimio'_NK : NK ;
+fun suojapanssari_NK : NK ;
+fun suojapeite_NK : NK ;
+fun suojapelti_NK : NK ;
+fun suojapenger_NK : NK ;
+fun suojapuku_NK : NK ;
+fun suojarakennus_NK : NK ;
+fun suojaruukku_NK : NK ;
+fun suojasa'a'_NK : NK ;
+fun suojatakki_NK : NK ;
+fun suojatie_NK : NK ;
+fun suojatulli_NK : NK ;
+fun suojatyo'_NK : NK ;
+fun suojatyo'keskus_NK : NK ;
+fun suojatyo'paikka_NK : NK ;
+fun suojavaate_NK : NK ;
+fun suojavaatetus_NK : NK ;
+fun suojavaruste_NK : NK ;
+fun suojavarustus_NK : NK ;
+fun suojaverho_NK : NK ;
+fun suojaverkko_NK : NK ;
+fun suojavilja_NK : NK ;
+fun suojavoide_NK : NK ;
+fun suojavyo'hyke_NK : NK ;
+fun suojava'isto'_NK : NK ;
+fun suojava'ri_NK : NK ;
+fun suojelualue_NK : NK ;
+fun suojelukohde_NK : NK ;
+fun suojelumaksu_NK : NK ;
+fun suojelupoliisi_NK : NK ;
+fun suojeluraha_NK : NK ;
+fun suojelusenkeli_NK : NK ;
+fun suojeluskunta_NK : NK ;
+fun suojeluskuntaja'rjesto'_NK : NK ;
+fun suojeluskuntalainen_NK : NK ;
+fun suojeluspyhimys_NK : NK ;
+fun suojelutulli_NK : NK ;
+fun suojelutyo'_NK : NK ;
+fun suojusmetsa'_NK : NK ;
+fun suojuspuu_NK : NK ;
+fun suojuspuusto_NK : NK ;
+fun suokaasu_NK : NK ;
+fun suokasvi_NK : NK ;
+fun suokorte_NK : NK ;
+fun suokukka_NK : NK ;
+fun suokukko_NK : NK ;
+fun suolahappo_NK : NK ;
+fun suolaheina'_NK : NK ;
+fun suolainen_NK : NK ;
+fun suolaja'rvi_NK : NK ;
+fun suolakaivos_NK : NK ;
+fun suolakala_NK : NK ;
+fun suolakeksi_NK : NK ;
+fun suolakivi_NK : NK ;
+fun suolakivilaji_NK : NK ;
+fun suolakko_NK : NK ;
+fun suolakkokasvi_NK : NK ;
+fun suolakurkku_NK : NK ;
+fun suolaliha_NK : NK ;
+fun suolaliuos_NK : NK ;
+fun suolalohi_NK : NK ;
+fun suolampi_NK : NK ;
+fun suolamuikku_NK : NK ;
+fun suolapala_NK : NK ;
+fun suolapatsas_NK : NK ;
+fun suolapitoinen_NK : NK ;
+fun suolapulssi_NK : NK ;
+fun suolapa'hkina'_NK : NK ;
+fun suolarae_NK : NK ;
+fun suolaraha_NK : NK ;
+fun suolasieni_NK : NK ;
+fun suolasilakka_NK : NK ;
+fun suolasilli_NK : NK ;
+fun suolasirotin_NK : NK ;
+fun suolatikku_NK : NK ;
+fun suolavesi_NK : NK ;
+fun suoliavanne_NK : NK ;
+fun suolikaasu_NK : NK ;
+fun suolikasvain_NK : NK ;
+fun suolilieve_NK : NK ;
+fun suoliluu_NK : NK ;
+fun suolineste_NK : NK ;
+fun suolinukka_NK : NK ;
+fun suolirauhanen_NK : NK ;
+fun suolisaivartaja_NK : NK ;
+fun suolisolmu_NK : NK ;
+fun suolistobakteeri_NK : NK ;
+fun suolistoloinen_NK : NK ;
+fun suolistosairaus_NK : NK ;
+fun suolistotauti_NK : NK ;
+fun suolitukos_NK : NK ;
+fun suolitulehdus_NK : NK ;
+fun suolo'yto'_NK : NK ;
+fun suomalaisuusaate_NK : NK ;
+fun suomalaisuusliike_NK : NK ;
+fun suomalmi_NK : NK ;
+fun suomennostyo'_NK : NK ;
+fun suometsa'_NK : NK ;
+fun suomimakkara_NK : NK ;
+fun suomipoika_NK : NK ;
+fun suomisyo'ja'_NK : NK ;
+fun suomukala_NK : NK ;
+fun suomuorakas_NK : NK ;
+fun suomupeite_NK : NK ;
+fun suomustusrauta_NK : NK ;
+fun suomuurain_NK : NK ;
+fun suomyrtti_NK : NK ;
+fun suonenvetokohtaus_NK : NK ;
+fun suoniitty_NK : NK ;
+fun suonikalvo_NK : NK ;
+fun suopayrtti_NK : NK ;
+fun suopelto_NK : NK ;
+fun suopera'inen_NK : NK ;
+fun suopursu_NK : NK ;
+fun suoputki_NK : NK ;
+fun suopo'llo'_NK : NK ;
+fun suorahampainen_NK : NK ;
+fun suorahiuksinen_NK : NK ;
+fun suorakulmainen_NK : NK ;
+fun suoraluonteinen_NK : NK ;
+fun suoraluontoinen_NK : NK ;
+fun suoranainen_AK : AK ;
+fun suoraommelkone_NK : NK ;
+fun suorapuheinen_NK : NK ;
+fun suorarunkoinen_NK : NK ;
+fun suoraryhtinen_NK : NK ;
+fun suorasanainen_NK : NK ;
+fun suoraselka'inen_NK : NK ;
+fun suoraselka'isyys_NK : NK ;
+fun suorasiipinen_NK : NK ;
+fun suorasuihkutusmoottori_NK : NK ;
+fun suorasukainen_AK : AK ;
+fun suorasuuntaustykki_NK : NK ;
+fun suorasa'a'rinen_NK : NK ;
+fun suoratukkainen_NK : NK ;
+fun suoravartinen_NK : NK ;
+fun suoraviivainen_AK : AK ;
+fun suoraviivaisuus_NK : NK ;
+fun suoritusarvo_NK : NK ;
+fun suorituskyky_NK : NK ;
+fun suorituskykyinen_NK : NK ;
+fun suoritusmerkinta'_NK : NK ;
+fun suoritusnopeus_NK : NK ;
+fun suoritusohje_NK : NK ;
+fun suorituspaikka_NK : NK ;
+fun suorituspaine_NK : NK ;
+fun suorituspalkka_NK : NK ;
+fun suorituspiste_NK : NK ;
+fun suoritusporras_NK : NK ;
+fun suoritustapa_NK : NK ;
+fun suoritustila_NK : NK ;
+fun suoruumis_NK : NK ;
+fun suosaareke_NK : NK ;
+fun suosija_NK : NK ;
+fun suosikkiasema_NK : NK ;
+fun suosikkijoukkue_NK : NK ;
+fun suosikkikirja_NK : NK ;
+fun suosikkikirjailija_NK : NK ;
+fun suosirri_NK : NK ;
+fun suosittuusja'rjestys_NK : NK ;
+fun suosituimmuusasema_NK : NK ;
+fun suosituimmuusehto_NK : NK ;
+fun suosituimmuuslauseke_NK : NK ;
+fun suosituskirje_NK : NK ;
+fun suotyyppi_NK : NK ;
+fun suoviljely_NK : NK ;
+fun suovilla_NK : NK ;
+fun suoyhdistyma'_NK : NK ;
+fun suoyhdistyma'tyyppi_NK : NK ;
+fun supikoira_NK : NK ;
+fun supistajalihas_NK : NK ;
+fun supiturkki_NK : NK ;
+fun suplementtikulma_NK : NK ;
+fun suppeasanainen_NK : NK ;
+fun suppilokukka_NK : NK ;
+fun suppilovahvero_NK : NK ;
+fun surkuhupainen_NK : NK ;
+fun surkuhupaisa_NK : NK ;
+fun surmatyo'_NK : NK ;
+fun suruharso_NK : NK ;
+fun surujuhla_NK : NK ;
+fun suruliputus_NK : NK ;
+fun surumarssi_NK : NK ;
+fun surumielisyys_NK : NK ;
+fun surunappi_NK : NK ;
+fun surunauha_NK : NK ;
+fun surunvalitteluadressi_NK : NK ;
+fun surunvalittelukirja_NK : NK ;
+fun surunvalitteluka'ynti_NK : NK ;
+fun surunvalittelusa'hke_NK : NK ;
+fun surupuku_NK : NK ;
+fun surupukuinen_NK : NK ;
+fun surureuna_NK : NK ;
+fun surureunainen_NK : NK ;
+fun surureunus_NK : NK ;
+fun surusaatto_NK : NK ;
+fun surusaattue_NK : NK ;
+fun surusanoma_NK : NK ;
+fun surusilma'inen_NK : NK ;
+fun surutalo_NK : NK ;
+fun surutyo'_NK : NK ;
+fun suruvaippa_NK : NK ;
+fun suruviesti_NK : NK ;
+fun survinastia_NK : NK ;
+fun susihukka_NK : NK ;
+fun susijahti_NK : NK ;
+fun susikoira_NK : NK ;
+fun susilauma_NK : NK ;
+fun susipari_NK : NK ;
+fun susipuu_NK : NK ;
+fun susiraja_NK : NK ;
+fun susitarha_NK : NK ;
+fun susiturkki_NK : NK ;
+fun suttupaperi_NK : NK ;
+fun suttupytty_NK : NK ;
+fun suualue_NK : NK ;
+fun suuaukko_NK : NK ;
+fun suuhaara_NK : NK ;
+fun suukappale_NK : NK ;
+fun suukapula_NK : NK ;
+fun suukirurgia_NK : NK ;
+fun suukkosuu_NK : NK ;
+fun suulaki_NK : NK ;
+fun suulakihalkio_NK : NK ;
+fun suuliekki_NK : NK ;
+fun suuluukku_NK : NK ;
+fun suunnanvaihtokytkin_NK : NK ;
+fun suunnistuskartta_NK : NK ;
+fun suunnistuskilpailu_NK : NK ;
+fun suunnistustaulu_NK : NK ;
+fun suunnitelmatalous_NK : NK ;
+fun suunnitteluinsino'o'ri_NK : NK ;
+fun suunnittelupa'a'llikko'_NK : NK ;
+fun suunnittelutyo'_NK : NK ;
+fun suunnitteluvaihe_NK : NK ;
+fun suuntakeha'_NK : NK ;
+fun suuntakiista_NK : NK ;
+fun suuntakuvio_NK : NK ;
+fun suuntamerkki_NK : NK ;
+fun suuntamikrofoni_NK : NK ;
+fun suuntanumero_NK : NK ;
+fun suuntanuoli_NK : NK ;
+fun suuntapiirrin_NK : NK ;
+fun suuntataju_NK : NK ;
+fun suuntausantenni_NK : NK ;
+fun suuntauslaite_NK : NK ;
+fun suuntavaikutelma_NK : NK ;
+fun suuntavaisto_NK : NK ;
+fun suuntavakaa_NK : NK ;
+fun suuntavakavuus_NK : NK ;
+fun suuntaviitta_NK : NK ;
+fun suuntaviiva_NK : NK ;
+fun suuntavilkku_NK : NK ;
+fun suuontelo_NK : NK ;
+fun suuosa_NK : NK ;
+fun suupala_NK : NK ;
+fun suupalanen_NK : NK ;
+fun suupieli_NK : NK ;
+fun suupuhe_NK : NK ;
+fun suupuoli_NK : NK ;
+fun suurennuskone_NK : NK ;
+fun suurennuskyky_NK : NK ;
+fun suurennuslasi_NK : NK ;
+fun suurherttuakunta_NK : NK ;
+fun suuriarvoinen_NK : NK ;
+fun suurieleinen_AK : AK ;
+fun suurieleisyys_NK : NK ;
+fun suurikasvuinen_NK : NK ;
+fun suurikokoinen_NK : NK ;
+fun suurilehtinen_NK : NK ;
+fun suurilevikkinen_NK : NK ;
+fun suurima_NK : NK ;
+fun suurimittainen_NK : NK ;
+fun suurimuotoinen_NK : NK ;
+fun suurinumeroinen_NK : NK ;
+fun suuripalkkainen_NK : NK ;
+fun suuriruhtinaskunta_NK : NK ;
+fun suuriruokainen_NK : NK ;
+fun suuriruutuinen_NK : NK ;
+fun suurisanainen_AK : AK ;
+fun suurisanaisuus_NK : NK ;
+fun suurisilma'inen_NK : NK ;
+fun suurisuuntainen_NK : NK ;
+fun suuritehoinen_NK : NK ;
+fun suurituloinen_NK : NK ;
+fun suurito'inen_NK : NK ;
+fun suuria'a'ninen_AK : AK ;
+fun suuria'a'nisyys_NK : NK ;
+fun suurja'nnitejohto_NK : NK ;
+fun suurja'nnitekaapeli_NK : NK ;
+fun suurja'nnitelinja_NK : NK ;
+fun suurtaajuustekniikka_NK : NK ;
+fun suuruusharha_NK : NK ;
+fun suuruusja'rjestys_NK : NK ;
+fun suuruusluokka_NK : NK ;
+fun suurvaltapolitiikka_NK : NK ;
+fun suurvaltaryhmitys_NK : NK ;
+fun suusanallinen_NK : NK ;
+fun suuseksi_NK : NK ;
+fun suusola_NK : NK ;
+fun suusuihke_NK : NK ;
+fun suusuihkute_NK : NK ;
+fun suusumute_NK : NK ;
+fun suutauti_NK : NK ;
+fun suuvesi_NK : NK ;
+fun suuva'rkki_NK : NK ;
+fun suuva'yla'_NK : NK ;
+fun suvantovaihe_NK : NK ;
+fun suvijuhla_NK : NK ;
+fun suvipa'iva'_NK : NK ;
+fun suvituuli_NK : NK ;
+fun suvivirsi_NK : NK ;
+fun syaanivety_NK : NK ;
+fun syaanivetyhappo_NK : NK ;
+fun syaaniyhdiste_NK : NK ;
+fun syda'mensiirtoleikkaus_NK : NK ;
+fun syda'mensiirtopotilas_NK : NK ;
+fun syda'nalue_NK : NK ;
+fun syda'nambulanssi_NK : NK ;
+fun syda'neteinen_NK : NK ;
+fun syda'nfilmi_NK : NK ;
+fun syda'nhalkeama_NK : NK ;
+fun syda'nhalvaus_NK : NK ;
+fun syda'nhermo_NK : NK ;
+fun syda'nhieronta_NK : NK ;
+fun syda'nha'irio'_NK : NK ;
+fun syda'ninfarkti_NK : NK ;
+fun syda'ninvalidi_NK : NK ;
+fun syda'nkammio_NK : NK ;
+fun syda'nkesa'_NK : NK ;
+fun syda'nkipu_NK : NK ;
+fun syda'nkirurgi_NK : NK ;
+fun syda'nkirurgia_NK : NK ;
+fun syda'nkohtaus_NK : NK ;
+fun syda'nkuolema_NK : NK ;
+fun syda'nka'py_NK : NK ;
+fun syda'nka'yra'_NK : NK ;
+fun syda'nlaho_NK : NK ;
+fun syda'nlanka_NK : NK ;
+fun syda'nleikkaus_NK : NK ;
+fun syda'nlihas_NK : NK ;
+fun syda'nlihaskudos_NK : NK ;
+fun syda'nlihastulehdus_NK : NK ;
+fun syda'nlihasvaurio_NK : NK ;
+fun syda'nla'ppa'_NK : NK ;
+fun syda'nla'a'ke_NK : NK ;
+fun syda'nmaa_NK : NK ;
+fun syda'nmuuri_NK : NK ;
+fun syda'nosa_NK : NK ;
+fun syda'npotilas_NK : NK ;
+fun syda'npuolisko_NK : NK ;
+fun syda'npussi_NK : NK ;
+fun syda'npuu_NK : NK ;
+fun syda'npysa'hdys_NK : NK ;
+fun syda'npa'iva'_NK : NK ;
+fun syda'nsairas_NK : NK ;
+fun syda'nsairaus_NK : NK ;
+fun syda'nsiirto_NK : NK ;
+fun syda'nsuru_NK : NK ;
+fun syda'nsuvi_NK : NK ;
+fun syda'ntalvi_NK : NK ;
+fun syda'ntauti_NK : NK ;
+fun syda'ntautila'a'ka'ri_NK : NK ;
+fun syda'ntautinen_NK : NK ;
+fun syda'ntautioppi_NK : NK ;
+fun syda'ntoiminta_NK : NK ;
+fun syda'ntulehdus_NK : NK ;
+fun syda'ntutkimus_NK : NK ;
+fun syda'nvaiva_NK : NK ;
+fun syda'nvalvuri_NK : NK ;
+fun syda'nvarjo_NK : NK ;
+fun syda'nvaurio_NK : NK ;
+fun syda'nveri_NK : NK ;
+fun syda'nveritulppa_NK : NK ;
+fun syda'nvika_NK : NK ;
+fun syda'nvikainen_NK : NK ;
+fun syda'nysta'va'_NK : NK ;
+fun syda'na'a'ni_NK : NK ;
+fun sykemittari_NK : NK ;
+fun syketaajuus_NK : NK ;
+fun sykkyra'suoli_NK : NK ;
+fun syksykylma'_NK : NK ;
+fun syksypuoli_NK : NK ;
+fun syka'yslaskuri_NK : NK ;
+fun sylihoito_NK : NK ;
+fun sylikoira_NK : NK ;
+fun sylikummi_NK : NK ;
+fun sylilapsi_NK : NK ;
+fun sylimikro_NK : NK ;
+fun sylinteriryhma'_NK : NK ;
+fun sylinteritilavuus_NK : NK ;
+fun sylipaini_NK : NK ;
+fun sylivauva_NK : NK ;
+fun sylkikaskas_NK : NK ;
+fun sylkikuoriainen_NK : NK ;
+fun sylkirauhanen_NK : NK ;
+fun sylkykuppi_NK : NK ;
+fun sylttytehdas_NK : NK ;
+fun symboliarvo_NK : NK ;
+fun symbolifunktio_NK : NK ;
+fun symmetriakeskus_NK : NK ;
+fun symmetriataso_NK : NK ;
+fun synkka'mielisyys_NK : NK ;
+fun synnytyshuone_NK : NK ;
+fun synnytysha'irio'_NK : NK ;
+fun synnytysika'_NK : NK ;
+fun synnytyskanava_NK : NK ;
+fun synnytyskipu_NK : NK ;
+fun synnytyslaitos_NK : NK ;
+fun synnytysla'a'ka'ri_NK : NK ;
+fun synnytysoppi_NK : NK ;
+fun synnytysosasto_NK : NK ;
+fun synnytyspahka_NK : NK ;
+--? fun synnytyspihdit_NK : NK ;
+fun synnytyspoltto_NK : NK ;
+fun synnytyssairaala_NK : NK ;
+fun synnytyssupistus_NK : NK ;
+fun synnytystuska_NK : NK ;
+fun synnytysvalmennus_NK : NK ;
+fun synnytysvalmennuskurssi_NK : NK ;
+fun synnytysvaurio_NK : NK ;
+fun syntikuorma_NK : NK ;
+fun syntilista_NK : NK ;
+fun syntipukki_NK : NK ;
+fun syntisa'kki_NK : NK ;
+fun syntitaakka_NK : NK ;
+fun syntiuhri_NK : NK ;
+fun syntivelka_NK : NK ;
+fun syntyhistoria_NK : NK ;
+fun syntyisyys_NK : NK ;
+fun syntymekanismi_NK : NK ;
+fun syntyma'juhla_NK : NK ;
+fun syntyma'koti_NK : NK ;
+fun syntyma'kotikunta_NK : NK ;
+fun syntyma'lahja_NK : NK ;
+fun syntyma'merkki_NK : NK ;
+fun syntyma'paikka_NK : NK ;
+fun syntyma'paino_NK : NK ;
+fun syntyma'pituus_NK : NK ;
+fun syntyma'pa'iva'_NK : NK ;
+fun syntyma'pa'iva'lahja_NK : NK ;
+fun syntyma'pa'iva'onnittelu_NK : NK ;
+fun syntyma'pa'iva'sankari_NK : NK ;
+fun syntyma'pa'iva'tervehdys_NK : NK ;
+fun syntyma'sokea_NK : NK ;
+fun syntyma'todistus_NK : NK ;
+fun syntyma'tukka_NK : NK ;
+fun syntyma'vika_NK : NK ;
+fun syntyma'vuosi_NK : NK ;
+fun syntypaikka_NK : NK ;
+fun syntypera'_NK : NK ;
+fun syntypera'inen_NK : NK ;
+fun syntysija_NK : NK ;
+fun syntyvaihe_NK : NK ;
+fun syntyvuosi_NK : NK ;
+fun sypressikasvi_NK : NK ;
+fun syreenihortensia_NK : NK ;
+fun syrja'hyppy_NK : NK ;
+fun syrja'isyys_NK : NK ;
+fun syrja'katu_NK : NK ;
+fun syrja'kulma_NK : NK ;
+fun syrja'kyla'_NK : NK ;
+fun syrja'kyla'la'inen_NK : NK ;
+fun syrja'polku_NK : NK ;
+fun syrja'seutu_NK : NK ;
+fun syrja'silma'ys_NK : NK ;
+fun syrja'sta'katsoja_NK : NK ;
+fun syrja'tie_NK : NK ;
+fun sysimusta_NK : NK ;
+fun sysipimea'_NK : NK ;
+fun systeemiteoria_NK : NK ;
+fun sytytysaine_NK : NK ;
+fun sytytysha'irio'_NK : NK ;
+fun sytytysja'rjestys_NK : NK ;
+fun sytytyskela_NK : NK ;
+fun sytytyskipina'_NK : NK ;
+fun sytytyslaite_NK : NK ;
+fun sytytyslanka_NK : NK ;
+fun sytytysneste_NK : NK ;
+fun sytytyspuola_NK : NK ;
+fun sytytystulppa_NK : NK ;
+fun sytytysvirta_NK : NK ;
+fun syvyyskartta_NK : NK ;
+fun syvyyska'yra'_NK : NK ;
+fun syvyysluotain_NK : NK ;
+fun syvyysmittari_NK : NK ;
+fun syvyysmittaus_NK : NK ;
+fun syvyysna'ko'_NK : NK ;
+fun syvyyspommi_NK : NK ;
+fun syvyysporrastus_NK : NK ;
+fun syvyyspsykologia_NK : NK ;
+fun syvyyssukellus_NK : NK ;
+fun syvyyssuunta_NK : NK ;
+fun syvyysvaikutelma_NK : NK ;
+fun syva'henkinen_NK : NK ;
+fun syva'ja'a'dytys_NK : NK ;
+fun syva'lleka'ypa'_NK : NK ;
+fun syva'lleka'yva'_NK : NK ;
+fun syva'mietteinen_NK : NK ;
+fun syva'painomenetelma'_NK : NK ;
+fun syva'sointinen_NK : NK ;
+fun syyhyinen_NK : NK ;
+fun syyhypunkki_NK : NK ;
+fun syyhytauti_NK : NK ;
+fun syyla'virus_NK : NK ;
+fun syypa'a'_NK : NK ;
+fun syysaamu_NK : NK ;
+fun syysasteri_NK : NK ;
+fun syysaurinko_NK : NK ;
+fun syyshalla_NK : NK ;
+fun syyshehku_NK : NK ;
+fun syysilma_NK : NK ;
+fun syysistutus_NK : NK ;
+fun syysja'a'_NK : NK ;
+fun syyskausi_NK : NK ;
+fun syyskesa'_NK : NK ;
+fun syyskierros_NK : NK ;
+fun syyskuinen_NK : NK ;
+fun syyskukka_NK : NK ;
+fun syyskuu_NK : NK ;
+fun syyskylma'_NK : NK ;
+fun syyskylvo'_NK : NK ;
+fun syyskynto'_NK : NK ;
+fun syyslajike_NK : NK ;
+fun syysleimu_NK : NK ;
+fun syysleimukukka_NK : NK ;
+fun syysmyrsky_NK : NK ;
+fun syysomena_NK : NK ;
+fun syyspimea'_NK : NK ;
+fun syyspa'iva'_NK : NK ;
+fun syysruis_NK : NK ;
+fun syyssade_NK : NK ;
+fun syyssiivous_NK : NK ;
+fun syyssilakka_NK : NK ;
+fun syystalvi_NK : NK ;
+fun syysuhde_NK : NK ;
+fun syysuhteinen_NK : NK ;
+fun syysvilja_NK : NK ;
+fun syyteaineisto_NK : NK ;
+fun syyteharkinta_NK : NK ;
+fun syytekirjelma'_NK : NK ;
+fun syyteoikeus_NK : NK ;
+fun syyteperuste_NK : NK ;
+fun syytevaatimus_NK : NK ;
+fun syytevalta_NK : NK ;
+fun syytinki_NK : NK ;
+fun syytta'ja'laitos_NK : NK ;
+fun syo'ja'solu_NK : NK ;
+fun syo'ksyhammas_NK : NK ;
+fun syo'ksykaivo_NK : NK ;
+fun syo'ksykierre_NK : NK ;
+fun syo'ksylaskija_NK : NK ;
+fun syo'ksylasku_NK : NK ;
+fun syo'ksylaskurata_NK : NK ;
+fun syo'ksypommittaja_NK : NK ;
+fun syo'ksypommitus_NK : NK ;
+fun syo'ksypommituskone_NK : NK ;
+fun syo'ksyputki_NK : NK ;
+fun syo'ksysynnytys_NK : NK ;
+fun syo'ksytorvi_NK : NK ;
+fun syo'ksyvene_NK : NK ;
+fun syo'ma'lakkolainen_NK : NK ;
+fun syo'nno'svahinko_NK : NK ;
+fun syo'ntikelpoinen_NK : NK ;
+fun syo'pa'geeni_NK : NK ;
+fun syo'pa'kasvain_NK : NK ;
+fun syo'pa'kudos_NK : NK ;
+fun syo'pa'lapsi_NK : NK ;
+fun syo'pa'la'a'ke_NK : NK ;
+fun syo'pa'potilas_NK : NK ;
+fun syo'pa'sairaus_NK : NK ;
+fun syo'pa'solu_NK : NK ;
+fun syo'pa'solukko_NK : NK ;
+fun syo'pa'tauti_NK : NK ;
+fun syo'pa'tutkimus_NK : NK ;
+fun syo'pa'vaara_NK : NK ;
+fun syo'pa'virus_NK : NK ;
+fun syo'ttikala_NK : NK ;
+fun syo'ttikoukku_NK : NK ;
+fun syo'ttipyydys_NK : NK ;
+fun syo'ttirokotus_NK : NK ;
+fun syo'tto'hanhi_NK : NK ;
+fun syo'tto'johto_NK : NK ;
+fun syo'tto'koneisto_NK : NK ;
+fun syo'tto'laite_NK : NK ;
+fun syo'tto'lautanen_NK : NK ;
+fun syo'tto'liikenne_NK : NK ;
+fun syo'tto'linja_NK : NK ;
+fun syo'tto'pallo_NK : NK ;
+fun syo'tto'peli_NK : NK ;
+fun syo'tto'piste_NK : NK ;
+fun syo'tto'porsas_NK : NK ;
+fun syo'tto'pumppu_NK : NK ;
+fun syo'tto'raja_NK : NK ;
+fun syo'tto'ruutu_NK : NK ;
+fun syo'tto'tieto_NK : NK ;
+fun syo'tto'tuoli_NK : NK ;
+fun syo'tto'vasikka_NK : NK ;
+fun syo'tto'virhe_NK : NK ;
+fun syo'tto'vuoro_NK : NK ;
+fun syo'vytyskuva_NK : NK ;
+fun sa'deannos_NK : NK ;
+fun sa'dease_NK : NK ;
+fun sa'dehoito_NK : NK ;
+fun sa'dejalkainen_NK : NK ;
+fun sa'dekaisla_NK : NK ;
+fun sa'dekeha'_NK : NK ;
+fun sa'dekukka_NK : NK ;
+fun sa'delatva_NK : NK ;
+fun sa'delihas_NK : NK ;
+fun sa'deloma_NK : NK ;
+fun sa'depistooli_NK : NK ;
+fun sa'desieni_NK : NK ;
+fun sa'desienitauti_NK : NK ;
+fun sa'devamma_NK : NK ;
+fun sa'estyssoitin_NK : NK ;
+fun sa'hkeosoite_NK : NK ;
+fun sa'hketyyli_NK : NK ;
+fun sa'hko'aita_NK : NK ;
+fun sa'hko'akustiikka_NK : NK ;
+fun sa'hko'ankerias_NK : NK ;
+fun sa'hko'asennus_NK : NK ;
+fun sa'hko'asentaja_NK : NK ;
+fun sa'hko'auto_NK : NK ;
+fun sa'hko'basso_NK : NK ;
+fun sa'hko'dynaaminen_NK : NK ;
+fun sa'hko'dynamiikka_NK : NK ;
+fun sa'hko'elin_NK : NK ;
+fun sa'hko'energia_NK : NK ;
+fun sa'hko'energiatalous_NK : NK ;
+fun sa'hko'eriste_NK : NK ;
+fun sa'hko'eristin_NK : NK ;
+fun sa'hko'eristys_NK : NK ;
+fun sa'hko'fortuna_NK : NK ;
+fun sa'hko'grilli_NK : NK ;
+fun sa'hko'hitsaus_NK : NK ;
+fun sa'hko'hoito_NK : NK ;
+fun sa'hko'ilmio'_NK : NK ;
+fun sa'hko'insino'o'ri_NK : NK ;
+fun sa'hko'isku_NK : NK ;
+fun sa'hko'istysurakka_NK : NK ;
+fun sa'hko'johde_NK : NK ;
+fun sa'hko'johdin_NK : NK ;
+fun sa'hko'johto_NK : NK ;
+fun sa'hko'juna_NK : NK ;
+fun sa'hko'ja'nnite_NK : NK ;
+fun sa'hko'kaapeli_NK : NK ;
+fun sa'hko'kaappi_NK : NK ;
+fun sa'hko'katko_NK : NK ;
+fun sa'hko'katkos_NK : NK ;
+fun sa'hko'keitin_NK : NK ;
+fun sa'hko'kello_NK : NK ;
+fun sa'hko'kemia_NK : NK ;
+fun sa'hko'kentta'_NK : NK ;
+fun sa'hko'kipina'_NK : NK ;
+fun sa'hko'kirja_NK : NK ;
+fun sa'hko'kitara_NK : NK ;
+fun sa'hko'kiuas_NK : NK ;
+fun sa'hko'koje_NK : NK ;
+fun sa'hko'kone_NK : NK ;
+fun sa'hko'kynttila'_NK : NK ;
+fun sa'hko'kytkin_NK : NK ;
+fun sa'hko'ka'yma'la'_NK : NK ;
+fun sa'hko'ka'ynnistin_NK : NK ;
+fun sa'hko'ka'ynnistys_NK : NK ;
+fun sa'hko'ka'ytto'_NK : NK ;
+fun sa'hko'ka'ytto'inen_NK : NK ;
+fun sa'hko'laite_NK : NK ;
+fun sa'hko'laitos_NK : NK ;
+fun sa'hko'lamppu_NK : NK ;
+fun sa'hko'lanka_NK : NK ;
+fun sa'hko'lasku_NK : NK ;
+fun sa'hko'levy_NK : NK ;
+fun sa'hko'liesi_NK : NK ;
+fun sa'hko'liike_NK : NK ;
+fun sa'hko'linja_NK : NK ;
+fun sa'hko'lukitus_NK : NK ;
+fun sa'hko'lukko_NK : NK ;
+fun sa'hko'la'hde_NK : NK ;
+fun sa'hko'la'mmitin_NK : NK ;
+fun sa'hko'la'mmitys_NK : NK ;
+fun sa'hko'la'mpo'_NK : NK ;
+fun sa'hko'la'mpo'mittari_NK : NK ;
+fun sa'hko'magneetti_NK : NK ;
+fun sa'hko'magnetismi_NK : NK ;
+fun sa'hko'mankeli_NK : NK ;
+fun sa'hko'mekaanikko_NK : NK ;
+fun sa'hko'mekaaninen_NK : NK ;
+fun sa'hko'mies_NK : NK ;
+fun sa'hko'mittari_NK : NK ;
+fun sa'hko'moottori_NK : NK ;
+fun sa'hko'motorinen_NK : NK ;
+fun sa'hko'ohjaus_NK : NK ;
+fun sa'hko'opillinen_NK : NK ;
+fun sa'hko'oppi_NK : NK ;
+fun sa'hko'paimen_NK : NK ;
+fun sa'hko'pari_NK : NK ;
+fun sa'hko'paristo_NK : NK ;
+fun sa'hko'patteri_NK : NK ;
+fun sa'hko'piano_NK : NK ;
+fun sa'hko'piirustus_NK : NK ;
+fun sa'hko'posti_NK : NK ;
+fun sa'hko'postilaatikko_NK : NK ;
+fun sa'hko'pumppu_NK : NK ;
+fun sa'hko'purkaus_NK : NK ;
+fun sa'hko'putkitus_NK : NK ;
+fun sa'hko'pylva's_NK : NK ;
+fun sa'hko'rata_NK : NK ;
+fun sa'hko'saha_NK : NK ;
+fun sa'hko'sanoma_NK : NK ;
+fun sa'hko'silma'_NK : NK ;
+fun sa'hko'soitin_NK : NK ;
+fun sa'hko'sokki_NK : NK ;
+fun sa'hko'sokkihoito_NK : NK ;
+fun sa'hko'staattinen_NK : NK ;
+fun sa'hko'startti_NK : NK ;
+fun sa'hko'statiikka_NK : NK ;
+fun sa'hko'talous_NK : NK ;
+fun sa'hko'tariffi_NK : NK ;
+fun sa'hko'teho_NK : NK ;
+fun sa'hko'tekniikka_NK : NK ;
+fun sa'hko'teknikko_NK : NK ;
+fun sa'hko'tekninen_NK : NK ;
+fun sa'hko'toiminen_NK : NK ;
+fun sa'hko'tolppa_NK : NK ;
+fun sa'hko'trukki_NK : NK ;
+fun sa'hko'tuoli_NK : NK ;
+fun sa'hko'tyyny_NK : NK ;
+fun sa'hko'tyo'_NK : NK ;
+fun sa'hko'urakka_NK : NK ;
+fun sa'hko'urakointi_NK : NK ;
+--? fun sa'hko'urut_NK : NK ;
+fun sa'hko'uuni_NK : NK ;
+fun sa'hko'valaisin_NK : NK ;
+fun sa'hko'valaistus_NK : NK ;
+fun sa'hko'valo_NK : NK ;
+fun sa'hko'varaus_NK : NK ;
+fun sa'hko'vastus_NK : NK ;
+fun sa'hko'vatkain_NK : NK ;
+fun sa'hko'verkko_NK : NK ;
+fun sa'hko'veturi_NK : NK ;
+fun sa'hko'viestin_NK : NK ;
+fun sa'hko'viestinta'_NK : NK ;
+fun sa'hko'vika_NK : NK ;
+fun sa'hko'virta_NK : NK ;
+fun sa'hko'viulu_NK : NK ;
+fun sa'hko'voima_NK : NK ;
+fun sa'hko'voimajohto_NK : NK ;
+fun sa'hko'voimatalous_NK : NK ;
+fun sa'hko'voimatekniikka_NK : NK ;
+fun sa'hko'yhtio'_NK : NK ;
+fun sa'iekimppu_NK : NK ;
+fun sa'ilio'alus_NK : NK ;
+fun sa'ilio'auto_NK : NK ;
+fun sa'ilio'laiva_NK : NK ;
+fun sa'ilio'pakastin_NK : NK ;
+fun sa'ilio'puimuri_NK : NK ;
+fun sa'ilio'vaunu_NK : NK ;
+fun sa'ilykehedelma'_NK : NK ;
+fun sa'ilykekala_NK : NK ;
+fun sa'ilykeliha_NK : NK ;
+fun sa'ilykepurkki_NK : NK ;
+fun sa'ilyketo'lkki_NK : NK ;
+fun sa'ilytystila_NK : NK ;
+fun sa'ila'miekkailu_NK : NK ;
+fun sa'ilo'nta'aine_NK : NK ;
+fun sa'ilo'rehu_NK : NK ;
+fun sa'ilo'rehunurmi_NK : NK ;
+fun sa'ilo'rehutorni_NK : NK ;
+fun sa'keisto'jako_NK : NK ;
+fun sa'kkikangas_NK : NK ;
+fun sa'kkipilli_NK : NK ;
+fun sa'kkipilliorkesteri_NK : NK ;
+fun sa'kkipimea'_NK : NK ;
+fun sa'kkituoli_NK : NK ;
+fun sa'ka'korkeus_NK : NK ;
+fun sa'lekaihdin_NK : NK ;
+fun sa'leverho_NK : NK ;
+fun sa'mpyla'jauho_NK : NK ;
+fun sa'nkipelto_NK : NK ;
+fun sa'nkykamari_NK : NK ;
+fun sa'nkykohtaus_NK : NK ;
+fun sa'nkypeite_NK : NK ;
+fun sa'nkypeitto_NK : NK ;
+fun sa'rkikala_NK : NK ;
+fun sa'rkiparvi_NK : NK ;
+fun sa'rkyla'a'ke_NK : NK ;
+fun sa'rma'kartio_NK : NK ;
+fun sa'ro'isyys_NK : NK ;
+fun sa'teilyannos_NK : NK ;
+fun sa'teilybiologia_NK : NK ;
+fun sa'teilyenergia_NK : NK ;
+fun sa'teilyfysiikka_NK : NK ;
+fun sa'teilyhiukkanen_NK : NK ;
+fun sa'teilyha'lytys_NK : NK ;
+fun sa'teilykvantti_NK : NK ;
+fun sa'teilyloma_NK : NK ;
+fun sa'teilyla'hde_NK : NK ;
+fun sa'teilyla'mmitin_NK : NK ;
+fun sa'teilyla'mpo'_NK : NK ;
+fun sa'teilymittari_NK : NK ;
+fun sa'teilypaine_NK : NK ;
+fun sa'teilysaaste_NK : NK ;
+fun sa'teilysairaus_NK : NK ;
+fun sa'teilysuoja_NK : NK ;
+fun sa'teilysuojain_NK : NK ;
+fun sa'teilysuojaus_NK : NK ;
+fun sa'teilysuojelu_NK : NK ;
+fun sa'teilyteho_NK : NK ;
+fun sa'teilytysannos_NK : NK ;
+fun sa'teilyvaara_NK : NK ;
+fun sa'teilyvamma_NK : NK ;
+fun sa'teilyvaroitus_NK : NK ;
+fun sa'teilyvaurio_NK : NK ;
+fun sa'teilyvuoto_NK : NK ;
+fun sa'teilyvyo'hyke_NK : NK ;
+fun sa'teritila_NK : NK ;
+fun sa'terivapaus_NK : NK ;
+fun sa'tkynukke_NK : NK ;
+fun sa'tka'kone_NK : NK ;
+fun sa'velaihe_NK : NK ;
+fun sa'velaskel_NK : NK ;
+fun sa'velasteikko_NK : NK ;
+fun sa'velhartaus_NK : NK ;
+fun sa'velkieli_NK : NK ;
+fun sa'velkorkeus_NK : NK ;
+fun sa'velkorva_NK : NK ;
+fun sa'velkulku_NK : NK ;
+fun sa'vellaji_NK : NK ;
+fun sa'vellajimerkinta'_NK : NK ;
+fun sa'vellystyyli_NK : NK ;
+fun sa'velmaalailu_NK : NK ;
+fun sa'velnimi_NK : NK ;
+fun sa'velpuhtaus_NK : NK ;
+fun sa'velradio_NK : NK ;
+fun sa'velrauta_NK : NK ;
+fun sa'velruno_NK : NK ;
+fun sa'velrunoelma_NK : NK ;
+fun sa'veltaide_NK : NK ;
+fun sa'veltapailu_NK : NK ;
+fun sa'veltaso_NK : NK ;
+fun sa'velteos_NK : NK ;
+fun sa'velta'ja'mestari_NK : NK ;
+fun sa'vyasteikko_NK : NK ;
+fun sa'vyisyys_NK : NK ;
+fun sa'vyisa'_AK : AK ;
+fun sa'vylasi_NK : NK ;
+fun sa'vyposliini_NK : NK ;
+fun sa'vytepesu_NK : NK ;
+fun sa'vytesampoo_NK : NK ;
+fun sa'vytyskone_NK : NK ;
+fun sa'a'asema_NK : NK ;
+fun sa'a'ennuste_NK : NK ;
+fun sa'a'ennustus_NK : NK ;
+fun sa'a'havainto_NK : NK ;
+fun sa'a'havaintoalus_NK : NK ;
+fun sa'a'havaintoasema_NK : NK ;
+fun sa'a'havaintopallo_NK : NK ;
+fun sa'a'ilmio'_NK : NK ;
+fun sa'a'kartta_NK : NK ;
+fun sa'a'luotain_NK : NK ;
+fun sa'a'miska'hansikas_NK : NK ;
+fun sa'a'nno'stelyallas_NK : NK ;
+fun sa'a'nno'stelyma'a'ra'ys_NK : NK ;
+fun sa'a'nno'stelypato_NK : NK ;
+fun sa'a'nno'stelypolitiikka_NK : NK ;
+fun sa'a'nno'stelyrikos_NK : NK ;
+fun sa'a'nno'stelytalous_NK : NK ;
+fun sa'a'nno'stelytoimi_NK : NK ;
+fun sa'a'nto'kokoelma_NK : NK ;
+fun sa'a'nto'kunta_NK : NK ;
+fun sa'a'nto'ma'a'ra'inen_NK : NK ;
+fun sa'a'palvelu_NK : NK ;
+fun sa'a'profeetta_NK : NK ;
+fun sa'a'riluu_NK : NK ;
+fun sa'a'rintama_NK : NK ;
+fun sa'a'ripari_NK : NK ;
+fun sa'a'risuojus_NK : NK ;
+fun sa'a'skiparvi_NK : NK ;
+fun sa'a'skiverkko_NK : NK ;
+fun sa'a'sto'budjetti_NK : NK ;
+fun sa'a'sto'liekki_NK : NK ;
+fun sa'a'sto'linja_NK : NK ;
+fun sa'a'sto'lipas_NK : NK ;
+fun sa'a'sto'luokka_NK : NK ;
+fun sa'a'sto'ohjelma_NK : NK ;
+fun sa'a'sto'pakkaus_NK : NK ;
+fun sa'a'sto'pankki_NK : NK ;
+fun sa'a'sto'pankkiryhma'_NK : NK ;
+fun sa'a'sto'porsas_NK : NK ;
+fun sa'a'sto'possu_NK : NK ;
+fun sa'a'sto'raha_NK : NK ;
+--? fun sa'a'sto'talkoot_NK : NK ;
+fun sa'a'sto'tili_NK : NK ;
+fun sa'a'sto'vapaa_NK : NK ;
+fun sa'a'teinen_NK : NK ;
+fun sa'a'tekija'_NK : NK ;
+fun sa'a'tiedotus_NK : NK ;
+fun sa'a'tieteilija'_NK : NK ;
+fun sa'a'tila_NK : NK ;
+fun sa'a'tutka_NK : NK ;
+fun sa'a'tyjako_NK : NK ;
+fun sa'a'tyjakoinen_NK : NK ;
+fun sa'a'tykierto_NK : NK ;
+fun sa'a'tyraja_NK : NK ;
+fun sa'a'to'inen_AK : AK ;
+fun sa'a'to'laite_NK : NK ;
+fun sa'a'to'nuppi_NK : NK ;
+fun sa'a'to'tekniikka_NK : NK ;
+fun sa'a'to'vastus_NK : NK ;
+fun sa'a'to'venttiili_NK : NK ;
+fun taajamamerkki_NK : NK ;
+fun taajamametsa'_NK : NK ;
+fun taajamanopeus_NK : NK ;
+fun taajava'kinen_NK : NK ;
+fun taajuusalue_NK : NK ;
+fun taajuuskaista_NK : NK ;
+fun taajuuskorjain_NK : NK ;
+fun taajuusmodulaatio_NK : NK ;
+fun taajuussanasto_NK : NK ;
+fun taajuusvaste_NK : NK ;
+fun taakkateline_NK : NK ;
+fun taaksepa'inen_NK : NK ;
+fun taaksetaivutus_NK : NK ;
+fun taalari_NK : NK ;
+fun taateli_NK : NK ;
+fun taatelipalmu_NK : NK ;
+fun tabloidikokoinen_NK : NK ;
+fun tabulointina'ppa'in_NK : NK ;
+fun tahdistinhoito_NK : NK ;
+fun tahdistuslaite_NK : NK ;
+fun tahkojuusto_NK : NK ;
+fun tahkokivi_NK : NK ;
+fun tahmatassu_NK : NK ;
+fun tahtilaji_NK : NK ;
+fun tahtimarssi_NK : NK ;
+fun tahtimittari_NK : NK ;
+fun tahtiosa_NK : NK ;
+fun tahtiosoitus_NK : NK ;
+fun tahtipuikko_NK : NK ;
+fun tahtiviiva_NK : NK ;
+fun tahtoihminen_NK : NK ;
+fun taideaarre_NK : NK ;
+fun taideaine_NK : NK ;
+fun taideakatemia_NK : NK ;
+fun taidearvo_NK : NK ;
+fun taidearvostelu_NK : NK ;
+fun taidefilmi_NK : NK ;
+fun taidegalleria_NK : NK ;
+fun taidegraafikko_NK : NK ;
+fun taidegrafiikka_NK : NK ;
+fun taidehalli_NK : NK ;
+fun taideharrastus_NK : NK ;
+fun taidehistoria_NK : NK ;
+fun taidejulkaisu_NK : NK ;
+fun taideja'ljenne_NK : NK ;
+fun taideja'ljenno's_NK : NK ;
+fun taidekasvatus_NK : NK ;
+fun taidekauppa_NK : NK ;
+fun taidekauppias_NK : NK ;
+fun taidekeramiikka_NK : NK ;
+fun taidekirja_NK : NK ;
+fun taidekokoelma_NK : NK ;
+fun taidekriitikko_NK : NK ;
+fun taidekritiikki_NK : NK ;
+fun taidekudonta_NK : NK ;
+fun taidekutoja_NK : NK ;
+fun taidekutomo_NK : NK ;
+fun taidekuva_NK : NK ;
+fun taidelaitos_NK : NK ;
+fun taidelaji_NK : NK ;
+fun taidelasi_NK : NK ;
+fun taidelautanen_NK : NK ;
+fun taidelukio_NK : NK ;
+fun taideluomus_NK : NK ;
+fun taidelyriikka_NK : NK ;
+fun taidemaalari_NK : NK ;
+fun taidemuseo_NK : NK ;
+fun taidemusiikki_NK : NK ;
+fun taidenautinto_NK : NK ;
+fun taidena'yttely_NK : NK ;
+fun taideompelu_NK : NK ;
+fun taideopetus_NK : NK ;
+fun taideopiskelija_NK : NK ;
+fun taidepainate_NK : NK ;
+fun taidepainatus_NK : NK ;
+fun taideparsinta_NK : NK ;
+fun taidepaussi_NK : NK ;
+fun taideproosa_NK : NK ;
+fun taidepuisto_NK : NK ;
+fun taiderunous_NK : NK ;
+fun taidesalonki_NK : NK ;
+fun taidesuunta_NK : NK ;
+fun taidetakoja_NK : NK ;
+fun taidetakomo_NK : NK ;
+fun taidetanssi_NK : NK ;
+fun taidetaonta_NK : NK ;
+fun taidetapahtuma_NK : NK ;
+fun taidetekstiili_NK : NK ;
+fun taideteollinen_NK : NK ;
+fun taideteollisuus_NK : NK ;
+fun taideteoria_NK : NK ;
+fun taideteos_NK : NK ;
+fun taideterapeutti_NK : NK ;
+fun taideterapia_NK : NK ;
+fun taidevalaja_NK : NK ;
+fun taidevalimo_NK : NK ;
+fun taidevalu_NK : NK ;
+fun taikaesine_NK : NK ;
+fun taikaisku_NK : NK ;
+fun taikajuoma_NK : NK ;
+fun taikakalu_NK : NK ;
+fun taikakeino_NK : NK ;
+fun taikalamppu_NK : NK ;
+fun taikanelio'_NK : NK ;
+fun taikapiiri_NK : NK ;
+fun taikasana_NK : NK ;
+fun taikasauva_NK : NK ;
+fun taikatemppu_NK : NK ;
+fun taikausko_NK : NK ;
+fun taikauskoinen_AK : AK ;
+fun taikauskoisuus_NK : NK ;
+fun taikavarpu_NK : NK ;
+fun taikavoima_NK : NK ;
+fun taikavoimainen_NK : NK ;
+fun taikaympyra'_NK : NK ;
+fun taikina_NK : NK ;
+fun taikinakoukku_NK : NK ;
+fun taikinakuori_NK : NK ;
+fun taikinamainen_NK : NK ;
+fun taikinamarja_NK : NK ;
+fun taikinapyo'ra'_NK : NK ;
+fun taikuri_NK : NK ;
+fun taimikko_NK : NK ;
+fun taimilava_NK : NK ;
+fun taimipolte_NK : NK ;
+fun taimitarha_NK : NK ;
+fun taistelijaluonne_NK : NK ;
+fun taisteluaine_NK : NK ;
+fun taisteluainesuojelu_NK : NK ;
+fun taistelualue_NK : NK ;
+fun taistelualus_NK : NK ;
+fun taisteluasema_NK : NK ;
+fun taisteluhaaste_NK : NK ;
+fun taisteluhalu_NK : NK ;
+fun taisteluhaluinen_NK : NK ;
+fun taisteluharjoitus_NK : NK ;
+fun taisteluhauta_NK : NK ;
+fun taisteluhenki_NK : NK ;
+fun taisteluhuuto_NK : NK ;
+fun taistelukaasu_NK : NK ;
+fun taistelukentta'_NK : NK ;
+fun taistelukosketus_NK : NK ;
+fun taistelukoulutus_NK : NK ;
+fun taistelukumppani_NK : NK ;
+fun taistelukuvaus_NK : NK ;
+fun taisteluka'rki_NK : NK ;
+fun taistelulaiva_NK : NK ;
+fun taistelulaulu_NK : NK ;
+fun taistelulenta'ja'_NK : NK ;
+fun taistelulippu_NK : NK ;
+fun taistelula'hetti_NK : NK ;
+fun taistelupari_NK : NK ;
+fun taistelupeli_NK : NK ;
+fun taistelusukeltaja_NK : NK ;
+fun taistelutahto_NK : NK ;
+fun taistelutahtoinen_NK : NK ;
+fun taistelutaito_NK : NK ;
+fun taistelutanner_NK : NK ;
+fun taistelutehta'va'_NK : NK ;
+fun taistelutoiminta_NK : NK ;
+fun taistelutoveri_NK : NK ;
+fun taisteluvahvuus_NK : NK ;
+fun taisteluvalmis_NK : NK ;
+fun taisteluvalmius_NK : NK ;
+fun taisteluvaruste_NK : NK ;
+fun taisteluvarustus_NK : NK ;
+fun taisteluvyo'_NK : NK ;
+fun taisteluva'line_NK : NK ;
+fun taisteluva'linehuolto_NK : NK ;
+fun taisteluva'symys_NK : NK ;
+fun taisteluyksikko'_NK : NK ;
+fun taistolainen_NK : NK ;
+fun taiteilijaela'ke_NK : NK ;
+fun taiteilijaela'ma'_NK : NK ;
+fun taiteilijajuhla_NK : NK ;
+fun taiteilijakirja_NK : NK ;
+fun taiteilijakoti_NK : NK ;
+fun taiteilijaluonne_NK : NK ;
+fun taiteilijanero_NK : NK ;
+fun taiteilijanimi_NK : NK ;
+fun taiteilijaprofessori_NK : NK ;
+fun taiteilijava'ri_NK : NK ;
+fun taitekatto_NK : NK ;
+fun taitekulma_NK : NK ;
+fun taiteovi_NK : NK ;
+fun taitepapu_NK : NK ;
+fun taitoaine_NK : NK ;
+fun taitoinen_NK : NK ;
+fun taitolaji_NK : NK ;
+fun taitolento_NK : NK ;
+fun taitolentoliike_NK : NK ;
+fun taitolentona'yto's_NK : NK ;
+fun taitolentoryhma'_NK : NK ;
+fun taitolenta'ja'_NK : NK ;
+fun taitoluistelija_NK : NK ;
+fun taitoluistelu_NK : NK ;
+fun taitoluistin_NK : NK ;
+fun taitotemppu_NK : NK ;
+fun taitotieto_NK : NK ;
+fun taitouinti_NK : NK ;
+fun taitovirhe_NK : NK ;
+fun taitovoimistelu_NK : NK ;
+fun taittokone_NK : NK ;
+fun taittokyky_NK : NK ;
+fun taittovirhe_NK : NK ;
+fun taittovoima_NK : NK ;
+fun taiturimainen_AK : AK ;
+fun taivasika'va'_NK : NK ;
+fun taivaskanava_NK : NK ;
+fun taivasosa_NK : NK ;
+fun taivasosuus_NK : NK ;
+fun taiveihottuma_NK : NK ;
+fun taivutuskaava_NK : NK ;
+fun taivutuslujuus_NK : NK ;
+fun taivutusmuoto_NK : NK ;
+fun taivutusopillinen_NK : NK ;
+fun taivutusoppi_NK : NK ;
+fun taivutuspa'a'te_NK : NK ;
+fun taivutustyyppi_NK : NK ;
+fun tajunnanvirtaromaani_NK : NK ;
+fun tajunnanvirtatekniikka_NK : NK ;
+fun tajuntateollisuus_NK : NK ;
+fun tajuttomuustila_NK : NK ;
+fun taka_ajatus_NK : NK ;
+fun taka_akseli_NK : NK ;
+fun taka_askel_NK : NK ;
+fun takahalkio_NK : NK ;
+fun takahammas_NK : NK ;
+fun takaheijastin_NK : NK ;
+fun takaheilahdus_NK : NK ;
+fun takahuone_NK : NK ;
+fun takaikkuna_NK : NK ;
+fun takaisinkytkenta'_NK : NK ;
+fun takaisinmaksu_NK : NK ;
+fun takaisinosto_NK : NK ;
+fun takaisinpa'a'sy_NK : NK ;
+fun takaisinsaanti_NK : NK ;
+fun takaisinvaltaus_NK : NK ;
+fun takaisku_NK : NK ;
+fun takaiskuventtiili_NK : NK ;
+fun takaistuin_NK : NK ;
+fun takajalka_NK : NK ;
+fun takajousi_NK : NK ;
+fun takakammio_NK : NK ;
+fun takakansi_NK : NK ;
+fun takakentta'_NK : NK ;
+fun takakentta'lyo'nti_NK : NK ;
+fun takakireys_NK : NK ;
+fun takakirea'_NK : NK ;
+fun takakontti_NK : NK ;
+fun takaka'pa'la'_NK : NK ;
+fun takalaita_NK : NK ;
+fun takalaitanosturi_NK : NK ;
+fun takalieve_NK : NK ;
+fun takalinja_NK : NK ;
+fun takalukitus_NK : NK ;
+fun takamaa_NK : NK ;
+fun takamaasto_NK : NK ;
+fun takamatka_NK : NK ;
+fun takametsa'_NK : NK ;
+fun takamies_NK : NK ;
+fun takamoottori_NK : NK ;
+fun takaniitty_NK : NK ;
+fun takanoja_NK : NK ;
+fun takanurkka_NK : NK ;
+fun takaosa_NK : NK ;
+fun takaovi_NK : NK ;
+fun takapainoinen_NK : NK ;
+fun takapaju_NK : NK ;
+fun takapakki_NK : NK ;
+fun takapeili_NK : NK ;
+fun takapenkki_NK : NK ;
+fun takapermanto_NK : NK ;
+fun takapesa'_NK : NK ;
+fun takapiha_NK : NK ;
+fun takapiru_NK : NK ;
+fun takaportti_NK : NK ;
+fun takapotku_NK : NK ;
+fun takapuoli_NK : NK ;
+fun takapuolinen_NK : NK ;
+fun takapuskuri_NK : NK ;
+fun takapyo'ra'_NK : NK ;
+fun takapyo'ra'veto_NK : NK ;
+fun takapyo'ra'vetoinen_NK : NK ;
+fun takapa'ivystys_NK : NK ;
+fun takapa'a'_NK : NK ;
+fun takaraaja_NK : NK ;
+fun takaraivo_NK : NK ;
+fun takaraja_NK : NK ;
+fun takarengas_NK : NK ;
+fun takareuna_NK : NK ;
+fun takarivi_NK : NK ;
+fun takaruumis_NK : NK ;
+fun takasauma_NK : NK ;
+fun takasilta_NK : NK ;
+fun takasivu_NK : NK ;
+fun takasuora_NK : NK ;
+fun takasa'a'ri_NK : NK ;
+fun takatalvi_NK : NK ;
+fun takatasku_NK : NK ;
+fun takatassu_NK : NK ;
+fun takatie_NK : NK ;
+fun takatuhto_NK : NK ;
+fun takausrengas_NK : NK ;
+fun takaussitoumus_NK : NK ;
+fun takavaaka_NK : NK ;
+fun takavalo_NK : NK ;
+fun takavara_NK : NK ;
+fun takavarikko_NK : NK ;
+fun takaveto_NK : NK ;
+fun takavetoinen_NK : NK ;
+fun takavuosi_NK : NK ;
+fun takavuotinen_NK : NK ;
+fun takavyo'_NK : NK ;
+fun takavyo'heitto_NK : NK ;
+fun takkahuone_NK : NK ;
+fun takkasyda'n_NK : NK ;
+fun takkatikku_NK : NK ;
+fun takkatuli_NK : NK ;
+fun takkatupa_NK : NK ;
+fun takkauuni_NK : NK ;
+fun takkavalkea_NK : NK ;
+fun takkavitsa_NK : NK ;
+fun takkileninki_NK : NK ;
+fun takkirauta_NK : NK ;
+fun takkutukka_NK : NK ;
+fun takkutukkainen_NK : NK ;
+fun taklauspeli_NK : NK ;
+fun taksamittari_NK : NK ;
+fun taksiasema_NK : NK ;
+fun taksiauto_NK : NK ;
+fun taksiautoilija_NK : NK ;
+fun taksijono_NK : NK ;
+fun taksikeskus_NK : NK ;
+fun taksikuski_NK : NK ;
+fun taksikyyti_NK : NK ;
+fun taksilento_NK : NK ;
+fun taksilentokone_NK : NK ;
+fun taksiliikenne_NK : NK ;
+fun taksilupa_NK : NK ;
+fun taksimies_NK : NK ;
+fun taksirenki_NK : NK ;
+fun taksiryo'sto'_NK : NK ;
+fun taksiseteli_NK : NK ;
+fun taksisuhari_NK : NK ;
+fun taksitolppa_NK : NK ;
+fun taksivene_NK : NK ;
+fun taksva'rkkikera'ys_NK : NK ;
+fun taksva'rkkipa'iva'_NK : NK ;
+fun taktiikkajuoksu_NK : NK ;
+fun taktiikkakilpailu_NK : NK ;
+fun takuuhinta_NK : NK ;
+fun takuuhuolto_NK : NK ;
+fun takuukorjaus_NK : NK ;
+fun takuumies_NK : NK ;
+fun takuusitoumus_NK : NK ;
+fun takuutodistus_NK : NK ;
+fun takuutyo'_NK : NK ;
+fun talidomidilapsi_NK : NK ;
+fun talikynttila'_NK : NK ;
+fun talirauhanen_NK : NK ;
+fun talitiainen_NK : NK ;
+fun talitintti_NK : NK ;
+fun taljajousi_NK : NK ;
+fun talkkiliuske_NK : NK ;
+fun talkkunajauho_NK : NK ;
+fun talkooapu_NK : NK ;
+fun talkoohenki_NK : NK ;
+fun talkoohenkinen_NK : NK ;
+fun talkoomies_NK : NK ;
+fun talkootyo'_NK : NK ;
+fun talkoovoima_NK : NK ;
+fun talkoova'ki_NK : NK ;
+fun talletuskanta_NK : NK ;
+fun talletuskorko_NK : NK ;
+fun talletusmakasiini_NK : NK ;
+fun talletuspankki_NK : NK ;
+fun talletustili_NK : NK ;
+fun talletustodistus_NK : NK ;
+fun talletusvarasto_NK : NK ;
+fun talliajaja_NK : NK ;
+fun tallimestari_NK : NK ;
+fun tallima'a'ra'ys_NK : NK ;
+fun tallipa'a'llikko'_NK : NK ;
+fun talojohto_NK : NK ;
+fun talokauppa_NK : NK ;
+fun talopaketti_NK : NK ;
+fun talopesula_NK : NK ;
+fun taloryhma'_NK : NK ;
+fun talora'hja'_NK : NK ;
+fun taloro'ttelo'_NK : NK ;
+fun talotehdas_NK : NK ;
+fun talotyyppi_NK : NK ;
+fun taloudellisuusajo_NK : NK ;
+fun talousalue_NK : NK ;
+fun talousapulainen_NK : NK ;
+fun talousarvio_NK : NK ;
+fun talousarvioesitys_NK : NK ;
+fun talousasia_NK : NK ;
+fun talousaskare_NK : NK ;
+fun talousela'ma'_NK : NK ;
+fun talousesine_NK : NK ;
+fun taloushenkilo'sto'_NK : NK ;
+fun taloushistoria_NK : NK ;
+fun taloushuolto_NK : NK ;
+fun talousihme_NK : NK ;
+fun talousihminen_NK : NK ;
+fun talousjaosto_NK : NK ;
+fun talousjohtaja_NK : NK ;
+fun talousjohto_NK : NK ;
+fun talousja'rjestys_NK : NK ;
+fun talousja'rjesto'_NK : NK ;
+fun talousja'te_NK : NK ;
+fun talouskala_NK : NK ;
+fun talouskalja_NK : NK ;
+fun talouskeskus_NK : NK ;
+fun talouskoulu_NK : NK ;
+fun talouskriisi_NK : NK ;
+fun talouskyljys_NK : NK ;
+fun talouska'sine_NK : NK ;
+fun talouska'ytto'_NK : NK ;
+fun talouslama_NK : NK ;
+fun talousliitto_NK : NK ;
+fun talousmahti_NK : NK ;
+fun talousmetsa'_NK : NK ;
+fun talousmies_NK : NK ;
+fun talousmuoto_NK : NK ;
+fun talousmuovi_NK : NK ;
+fun talousnero_NK : NK ;
+fun talousneuvos_NK : NK ;
+fun talousneuvosto_NK : NK ;
+fun talousohjelma_NK : NK ;
+fun talousopettaja_NK : NK ;
+fun talousopetus_NK : NK ;
+fun talousosasto_NK : NK ;
+fun talouspakkaus_NK : NK ;
+fun talouspakote_NK : NK ;
+fun talouspaperi_NK : NK ;
+fun talouspoliitikko_NK : NK ;
+fun talouspolitiikka_NK : NK ;
+fun talouspula_NK : NK ;
+fun talouspyyhe_NK : NK ;
+fun talouspa'a'llikko'_NK : NK ;
+fun talousraha_NK : NK ;
+fun talousrakennus_NK : NK ;
+fun talousrikos_NK : NK ;
+fun taloussaarto_NK : NK ;
+fun taloussiirappi_NK : NK ;
+fun taloussopimus_NK : NK ;
+fun taloussprii_NK : NK ;
+fun taloussuhde_NK : NK ;
+fun taloussuklaa_NK : NK ;
+fun taloustarvike_NK : NK ;
+fun taloustavara_NK : NK ;
+fun talousteoria_NK : NK ;
+fun taloustiede_NK : NK ;
+fun taloustieteilija'_NK : NK ;
+fun taloustieto_NK : NK ;
+fun taloustoimittaja_NK : NK ;
+fun taloustutkija_NK : NK ;
+fun taloustutkimus_NK : NK ;
+fun taloustyo'_NK : NK ;
+fun talousvaaka_NK : NK ;
+fun talousvesi_NK : NK ;
+fun talousveturi_NK : NK ;
+fun talousvuosi_NK : NK ;
+fun talousvyo'hyke_NK : NK ;
+fun talousyhteiso'_NK : NK ;
+fun talousyksikko'_NK : NK ;
+fun taloyhtio'_NK : NK ;
+fun talteenottaja_NK : NK ;
+fun talteenotto_NK : NK ;
+fun talttavasara_NK : NK ;
+fun talviajo_NK : NK ;
+--? fun talvifarkut_NK : NK ;
+fun talvihorros_NK : NK ;
+fun talvikala_NK : NK ;
+fun talvikalastus_NK : NK ;
+fun talvikausi_NK : NK ;
+fun talvikeli_NK : NK ;
+fun talvilaji_NK : NK ;
+fun talvilampare_NK : NK ;
+fun talvilenkkari_NK : NK ;
+fun talviloma_NK : NK ;
+fun talvilomailija_NK : NK ;
+fun talvila'mmin_NK : NK ;
+fun talvimatkailu_NK : NK ;
+fun talvinuotta_NK : NK ;
+fun talvinuottaus_NK : NK ;
+fun talviomena_NK : NK ;
+fun talvipakkanen_NK : NK ;
+fun talvipesa'_NK : NK ;
+fun talvipoplari_NK : NK ;
+fun talvipopliini_NK : NK ;
+fun talvipuku_NK : NK ;
+fun talvipuuvilla_NK : NK ;
+fun talvipyynti_NK : NK ;
+fun talvipa'iva'_NK : NK ;
+fun talvipa'a'hine_NK : NK ;
+fun talvirengas_NK : NK ;
+fun talviruokinta_NK : NK ;
+fun talvisaapas_NK : NK ;
+fun talvisatama_NK : NK ;
+fun talvisesonki_NK : NK ;
+fun talvisota_NK : NK ;
+fun talvisyda'n_NK : NK ;
+fun talvisa'ilytys_NK : NK ;
+fun talvisa'ilo'_NK : NK ;
+fun talvisa'a'_NK : NK ;
+fun talvitakki_NK : NK ;
+fun talvitie_NK : NK ;
+fun talviturkki_NK : NK ;
+fun talviulsteri_NK : NK ;
+fun talviuni_NK : NK ;
+fun talviurheilu_NK : NK ;
+fun talviurheilulaji_NK : NK ;
+fun talvivaate_NK : NK ;
+fun talvivilla_NK : NK ;
+fun talvio'ljy_NK : NK ;
+fun tammenlehtisalaatti_NK : NK ;
+fun tammihiiri_NK : NK ;
+fun tammikehra'a'ja'_NK : NK ;
+fun tammikuinen_NK : NK ;
+fun tammikuu_NK : NK ;
+fun tammilauta_1_NK : NK ;
+fun tammilauta_2_NK : NK ;
+fun tammilehto_NK : NK ;
+fun tammimetsikko'_NK : NK ;
+fun tammimetsa'_NK : NK ;
+fun tammipeli_NK : NK ;
+fun tammipuinen_NK : NK ;
+fun tammipuu_NK : NK ;
+fun tammipo'yta'_NK : NK ;
+fun tammitynnyri_NK : NK ;
+fun tammiviilu_NK : NK ;
+fun tammivyo'hyke_NK : NK ;
+fun tampuurimajuri_NK : NK ;
+fun tanakkatekoinen_NK : NK ;
+fun tanakkavartinen_NK : NK ;
+fun tangeerauspiste_NK : NK ;
+fun tangolaulaja_NK : NK ;
+fun tanhuryhma'_NK : NK ;
+fun tankkialus_NK : NK ;
+fun tankkilaiva_NK : NK ;
+fun tankojuoppo_NK : NK ;
+fun tankojuoppous_NK : NK ;
+fun tankotera's_NK : NK ;
+fun tanskalainen_NK : NK ;
+fun tanssiaskel_NK : NK ;
+fun tanssiesitys_NK : NK ;
+fun tanssihaalari_NK : NK ;
+--? fun tanssiha'a't_NK : NK ;
+fun tanssikappale_NK : NK ;
+fun tanssikoulu_NK : NK ;
+fun tanssikurssi_NK : NK ;
+fun tanssilattia_NK : NK ;
+fun tanssilaulu_NK : NK ;
+fun tanssilava_NK : NK ;
+fun tanssimusiikki_NK : NK ;
+fun tanssimuusikko_NK : NK ;
+fun tanssiorkesteri_NK : NK ;
+fun tanssiote_NK : NK ;
+fun tanssipaikka_NK : NK ;
+fun tanssipari_NK : NK ;
+fun tanssiravintola_NK : NK ;
+fun tanssiryhma'_NK : NK ;
+fun tanssisali_NK : NK ;
+fun tanssisa'velma'_NK : NK ;
+fun tanssitaide_NK : NK ;
+fun tanssitaidoton_NK : NK ;
+fun tanssitaiteilija_NK : NK ;
+fun tanssitaitoinen_NK : NK ;
+fun tanssitauti_NK : NK ;
+fun tanssiteatteri_NK : NK ;
+fun tanssiurheilu_NK : NK ;
+fun tanttamainen_AK : AK ;
+fun taontataide_NK : NK ;
+fun tapahtumakalenteri_NK : NK ;
+fun tapahtumaketju_NK : NK ;
+fun tapahtumakysely_NK : NK ;
+fun tapahtumako'yha'_NK : NK ;
+fun tapahtumapaikka_NK : NK ;
+fun tapahtumarikas_NK : NK ;
+fun tapahtumasarja_NK : NK ;
+fun tapailunimi_NK : NK ;
+fun tapakasvatus_NK : NK ;
+fun tapakristitty_NK : NK ;
+fun tapakulttuuri_NK : NK ;
+fun tapaluokka_NK : NK ;
+fun tapaoikeus_NK : NK ;
+fun taparikollinen_NK : NK ;
+fun tapatieto_NK : NK ;
+fun tapaturma_NK : NK ;
+fun tapaturmavakuutus_NK : NK ;
+fun tapauskohtainen_NK : NK ;
+fun tapauskovainen_NK : NK ;
+fun tapausrikas_NK : NK ;
+fun tapausselostus_NK : NK ;
+fun tapaustutkimus_NK : NK ;
+fun tapettiliisteri_NK : NK ;
+fun tapettipaperi_NK : NK ;
+fun tapettirulla_NK : NK ;
+fun tappajasolu_NK : NK ;
+fun tapparakeiha's_NK : NK ;
+fun tappeluhalu_NK : NK ;
+fun tappeluhaluinen_NK : NK ;
+fun tappelukukko_NK : NK ;
+fun tappelupukari_NK : NK ;
+fun tappiliitos_NK : NK ;
+fun tappinivel_NK : NK ;
+fun tappioputki_NK : NK ;
+fun tappisarana_NK : NK ;
+fun tappisolu_NK : NK ;
+fun tappoase_NK : NK ;
+fun tappolista_NK : NK ;
+fun tapporaha_NK : NK ;
+fun tappotahti_NK : NK ;
+fun tappotuomio_NK : NK ;
+fun tapulikaupunki_NK : NK ;
+fun tapulioikeus_NK : NK ;
+fun tarhaherne_NK : NK ;
+fun tarhakalmisto_NK : NK ;
+fun tarhakettu_NK : NK ;
+fun tarhakotilo_NK : NK ;
+fun tarhaka'a'rme_NK : NK ;
+fun tarhametsa'stys_NK : NK ;
+fun tarhapapu_NK : NK ;
+fun tarjoiluastia_NK : NK ;
+fun tarjoiluhenkilo'sto'_NK : NK ;
+fun tarjoilupalkkio_NK : NK ;
+fun tarjoilupo'yta'_NK : NK ;
+fun tarjoiluvalmis_NK : NK ;
+fun tarjoiluvati_NK : NK ;
+fun tarjoiluvaunu_NK : NK ;
+fun tarjoiluva'line_NK : NK ;
+fun tarjousanti_NK : NK ;
+fun tarjoushinta_NK : NK ;
+fun tarjouskilpailu_NK : NK ;
+fun tarjouskirje_NK : NK ;
+fun tarjouskuponki_NK : NK ;
+fun tarjouskuvasto_NK : NK ;
+fun tarjouspyynto'_NK : NK ;
+fun tarjoustavara_NK : NK ;
+fun tarkastuskello_NK : NK ;
+fun tarkastuskertomus_NK : NK ;
+fun tarkastuskierros_NK : NK ;
+fun tarkastusleima_NK : NK ;
+fun tarkastusleimaus_NK : NK ;
+fun tarkastusmaksu_NK : NK ;
+fun tarkekirjoitus_NK : NK ;
+fun tarkistusammunta_NK : NK ;
+fun tarkistuslaskenta_NK : NK ;
+fun tarkistusluku_NK : NK ;
+fun tarkistusneuvottelu_NK : NK ;
+fun tarkistusnumero_NK : NK ;
+fun tarkkailijaja'sen_NK : NK ;
+fun tarkkailijaja'senyys_NK : NK ;
+fun tarkkailuasema_NK : NK ;
+fun tarkkailukilpailu_NK : NK ;
+fun tarkkailulaite_NK : NK ;
+fun tarkkailuluokka_NK : NK ;
+fun tarkkakatseinen_NK : NK ;
+fun tarkkakorvainen_NK : NK ;
+fun tarkkakuuloinen_NK : NK ;
+fun tarkkaka'tinen_AK : AK ;
+fun tarkkaka'tisyys_NK : NK ;
+fun tarkkaka'yntinen_NK : NK ;
+fun tarkkamittainen_NK : NK ;
+fun tarkkamuistinen_NK : NK ;
+fun tarkkana'ko'inen_AK : AK ;
+fun tarkkana'ko'isyys_NK : NK ;
+fun tarkkarajainen_NK : NK ;
+fun tarkkasilma'inen_AK : AK ;
+fun tarkkasilma'isyys_NK : NK ;
+fun tarkkavainuinen_NK : NK ;
+fun tarkkuusammunta_NK : NK ;
+fun tarkkuushyppy_NK : NK ;
+fun tarkkuuskello_NK : NK ;
+fun tarkkuuskiva'a'ri_NK : NK ;
+fun tarkkuustyo'_NK : NK ;
+fun tarkoitushakuinen_AK : AK ;
+fun tarkoitushakuisuus_NK : NK ;
+fun tarkoituspera'_NK : NK ;
+fun tarkoituspera'inen_NK : NK ;
+fun tarkoituspera'isyys_NK : NK ;
+fun tarokkikortti_NK : NK ;
+fun tarpeenmukainen_NK : NK ;
+fun tarpeenteko_NK : NK ;
+fun tarpeistoesine_NK : NK ;
+fun tarrakiinnitys_NK : NK ;
+fun tarrakuva_NK : NK ;
+fun tarralenkkari_NK : NK ;
+fun tarramerkki_NK : NK ;
+fun tarranauha_NK : NK ;
+fun tarranauhakiinnitys_NK : NK ;
+fun tarrapapiljotti_NK : NK ;
+fun tarttumaelin_NK : NK ;
+fun tarttumajalka_NK : NK ;
+fun tarttumalaite_NK : NK ;
+fun tarttumapinta_NK : NK ;
+fun tartuntala'hde_NK : NK ;
+fun tartuntatauti_NK : NK ;
+fun tartuntatera's_NK : NK ;
+fun tartuntavaara_NK : NK ;
+fun tartuntavaihe_NK : NK ;
+fun tartuntavoima_NK : NK ;
+fun taruaihe_NK : NK ;
+fun taruaiheinen_NK : NK ;
+fun taruela'in_NK : NK ;
+fun taruhenkilo'_NK : NK ;
+fun tarumainen_NK : NK ;
+fun taruolento_NK : NK ;
+fun tarveaine_NK : NK ;
+fun tarveaines_NK : NK ;
+fun tarvearvio_NK : NK ;
+fun tarveharkinta_NK : NK ;
+fun tarvekalu_NK : NK ;
+fun tarvepainatus_NK : NK ;
+fun tarvepuu_NK : NK ;
+fun tarvikepuu_NK : NK ;
+fun tasaera'laina_NK : NK ;
+fun tasamaahiihto_NK : NK ;
+fun tasankomaa_NK : NK ;
+fun tasapainoaisti_NK : NK ;
+fun tasapainoaistimus_NK : NK ;
+fun tasapainoelin_NK : NK ;
+fun tasapainoha'irio'_NK : NK ;
+fun tasapainokivi_NK : NK ;
+fun tasapainopolitiikka_NK : NK ;
+fun tasapainotaiteilija_NK : NK ;
+fun tasapainotaiteilu_NK : NK ;
+fun tasapainotila_NK : NK ;
+fun tasapainotuskone_NK : NK ;
+fun tasauspyo'ra'sto'_NK : NK ;
+fun tasauspa'tka'_NK : NK ;
+fun tasausvara_NK : NK ;
+fun tasavaltalainen_NK : NK ;
+fun tasavirtakoje_NK : NK ;
+fun tasavirtala'hde_NK : NK ;
+fun tasavirtamoottori_NK : NK ;
+fun taskualmanakka_NK : NK ;
+fun taskuase_NK : NK ;
+fun taskuhuuli_NK : NK ;
+fun taskukamera_NK : NK ;
+fun taskukampa_NK : NK ;
+fun taskukello_NK : NK ;
+fun taskukirja_NK : NK ;
+fun taskukokoinen_NK : NK ;
+fun taskulamppu_NK : NK ;
+fun taskulaskin_NK : NK ;
+fun taskuleipa'_NK : NK ;
+fun taskuliina_NK : NK ;
+fun taskumatti_NK : NK ;
+fun taskupuhelin_NK : NK ;
+fun taskupysa'ko'inti_NK : NK ;
+fun taskuradio_NK : NK ;
+fun taskuraha_NK : NK ;
+fun taskurapu_NK : NK ;
+fun taskuruoho_NK : NK ;
+fun taskusanelin_NK : NK ;
+fun taskuvaras_NK : NK ;
+fun taskuvarkaus_NK : NK ;
+fun taskuveitsi_NK : NK ;
+fun tasoero_NK : NK ;
+fun tasogeometria_NK : NK ;
+fun tasoitusajo_NK : NK ;
+fun tasoituskilpailu_NK : NK ;
+fun tasoituslasku_NK : NK ;
+fun tasoitusmaalaus_NK : NK ;
+fun tasoitusmaali_NK : NK ;
+fun tasoitusmerkki_NK : NK ;
+fun tasokoe_NK : NK ;
+fun tasokone_NK : NK ;
+fun tasokorotus_NK : NK ;
+fun tasokuvio_NK : NK ;
+fun tasoka'yra'_NK : NK ;
+fun tasolasi_NK : NK ;
+fun tasoleikkaus_NK : NK ;
+fun tasoliittyma'_NK : NK ;
+fun tasopeili_NK : NK ;
+fun tasopinta_NK : NK ;
+fun tasopintainen_NK : NK ;
+fun tasoristeys_NK : NK ;
+fun tasoryhmitys_NK : NK ;
+fun tasoryhma'_NK : NK ;
+fun tataarilainen_NK : NK ;
+fun tatarkasvi_NK : NK ;
+fun tattarijauho_NK : NK ;
+fun tattaripuuro_NK : NK ;
+fun tattariryyni_NK : NK ;
+fun tattarisuurimo_NK : NK ;
+fun taudinma'a'ritysoppi_NK : NK ;
+fun taukojohto_NK : NK ;
+fun taukojumppa_NK : NK ;
+fun taukoliikunta_NK : NK ;
+fun taukomerkki_NK : NK ;
+fun taukopaikka_NK : NK ;
+fun taukotupa_NK : NK ;
+fun taukovaunu_NK : NK ;
+fun taukovoimistelu_NK : NK ;
+fun taulaka'a'pa'_NK : NK ;
+fun taulapa'a'_NK : NK ;
+fun tauluammunta_NK : NK ;
+fun taulukko_NK : NK ;
+fun taulukkolaskenta_NK : NK ;
+fun taulukkopalkka_NK : NK ;
+fun taulukokoelma_NK : NK ;
+fun taulutelevisio_NK : NK ;
+fun tauotus_NK : NK ;
+fun taustahahmo_NK : NK ;
+fun taustahenkilo'_NK : NK ;
+fun taustakangas_NK : NK ;
+fun taustakerronta_NK : NK ;
+fun taustakohina_NK : NK ;
+fun taustakuvaus_NK : NK ;
+fun taustamusiikki_NK : NK ;
+fun taustanauru_NK : NK ;
+fun taustapeili_NK : NK ;
+fun taustapeli_NK : NK ;
+fun taustaryhma'_NK : NK ;
+fun taustaselostus_NK : NK ;
+fun taustasyy_NK : NK ;
+fun taustasa'teily_NK : NK ;
+fun taustatekija'_NK : NK ;
+fun taustatieto_NK : NK ;
+fun taustatuki_NK : NK ;
+fun taustavalo_NK : NK ;
+fun taustaverho_NK : NK ;
+fun taustavoima_NK : NK ;
+fun tautiluokitus_NK : NK ;
+fun tautimuoto_NK : NK ;
+fun tautiopillinen_NK : NK ;
+fun tautioppi_NK : NK ;
+fun tautipesa'ke_NK : NK ;
+fun tautitapaus_NK : NK ;
+fun tavarahissi_NK : NK ;
+fun tavarajuna_NK : NK ;
+fun tavarakauppa_NK : NK ;
+fun tavarakoodi_NK : NK ;
+fun tavaralaji_NK : NK ;
+fun tavaralasti_NK : NK ;
+fun tavaraliikenne_NK : NK ;
+fun tavaraluotto_NK : NK ;
+fun tavarala'hetys_NK : NK ;
+fun tavaramerkki_NK : NK ;
+fun tavaranvaihtosopimus_NK : NK ;
+fun tavarana'yte_NK : NK ;
+fun tavaraoppi_NK : NK ;
+fun tavarapula_NK : NK ;
+fun tavarapo'rssi_NK : NK ;
+fun tavaraseloste_NK : NK ;
+fun tavarasa'ilo'_NK : NK ;
+fun tavaratalo_NK : NK ;
+fun tavarateline_NK : NK ;
+fun tavaratila_NK : NK ;
+fun tavaratoimitus_NK : NK ;
+fun tavaravaaka_NK : NK ;
+fun tavaravalikoima_NK : NK ;
+fun tavaravaunu_NK : NK ;
+fun tavaravekseli_NK : NK ;
+fun tavoiteasettelu_NK : NK ;
+fun tavoitehinta_NK : NK ;
+fun tavoiteohjelma_NK : NK ;
+fun tavoitesa'a'sta'ja'_NK : NK ;
+fun tavujako_NK : NK ;
+fun tavukirjoitus_NK : NK ;
+fun tavuraja_NK : NK ;
+fun tavutusohjelma_NK : NK ;
+fun tavuviiva_NK : NK ;
+fun teatteriarvostelu_NK : NK ;
+fun teatteriesitys_NK : NK ;
+fun teatteriharrastus_NK : NK ;
+fun teatterikappale_NK : NK ;
+fun teatterikausi_NK : NK ;
+fun teatterikiertue_NK : NK ;
+fun teatterikiikari_NK : NK ;
+fun teatterikriitikko_NK : NK ;
+fun teatterikritiikki_NK : NK ;
+fun teatterika'rpa'nen_NK : NK ;
+fun teatterika'ynti_NK : NK ;
+fun teatterilainen_NK : NK ;
+fun teatterilaitos_NK : NK ;
+fun teatterilava_NK : NK ;
+fun teatterilippu_NK : NK ;
+fun teatterimusiikki_NK : NK ;
+fun teatterineuvos_NK : NK ;
+fun teatteriohjaaja_NK : NK ;
+fun teatteriohjelma_NK : NK ;
+fun teatteriohjelmisto_NK : NK ;
+fun teatteriorkesteri_NK : NK ;
+fun teatterirakennus_NK : NK ;
+fun teatteriryhma'_NK : NK ;
+fun teatteriseurue_NK : NK ;
+fun teatteritaide_NK : NK ;
+fun teatteritalo_NK : NK ;
+fun teatteritekniikka_NK : NK ;
+fun teatteriura_NK : NK ;
+fun teatterivierailu_NK : NK ;
+fun teatteriva'ki_NK : NK ;
+fun teatteriyleiso'_NK : NK ;
+fun teddykangas_NK : NK ;
+fun teddykarhu_NK : NK ;
+fun teeastiasto_NK : NK ;
+fun teehuone_NK : NK ;
+fun teejuoma_NK : NK ;
+fun teekalusto_NK : NK ;
+fun teekannu_NK : NK ;
+fun teekkarilakki_NK : NK ;
+fun teekuppi_NK : NK ;
+fun teekuppipari_NK : NK ;
+fun teelaatu_NK : NK ;
+fun teelasi_NK : NK ;
+fun teelehti_NK : NK ;
+fun teeleipa'_NK : NK ;
+fun teelusikka_NK : NK ;
+fun teemailta_NK : NK ;
+fun teemakkara_NK : NK ;
+fun teemallinen_NK : NK ;
+fun teemanumero_NK : NK ;
+fun teemana'yttely_NK : NK ;
+fun teemapuisto_NK : NK ;
+fun teemapa'iva'_NK : NK ;
+fun teemasto_NK : NK ;
+fun teemaviikko_NK : NK ;
+fun teemavuosi_NK : NK ;
+fun teepannu_NK : NK ;
+fun teepensas_NK : NK ;
+fun teepussi_NK : NK ;
+fun teepo'yta'_NK : NK ;
+fun teerikana_NK : NK ;
+fun teerikukko_NK : NK ;
+fun teeriparvi_NK : NK ;
+fun teesekoitus_NK : NK ;
+fun teeseremonia_NK : NK ;
+fun teesieni_NK : NK ;
+fun teesiivila'_NK : NK ;
+fun teetarjoilu_NK : NK ;
+fun teetarjotin_NK : NK ;
+fun teevati_NK : NK ;
+fun teevesi_NK : NK ;
+fun tehdasajaja_NK : NK ;
+fun tehdasalue_NK : NK ;
+fun tehdashalli_NK : NK ;
+fun tehdashuoneisto_NK : NK ;
+fun tehdasja'te_NK : NK ;
+fun tehdaskaupunki_NK : NK ;
+fun tehdaskiinteisto'_NK : NK ;
+fun tehdaskuljettaja_NK : NK ;
+fun tehdaskuski_NK : NK ;
+fun tehdaslaitos_NK : NK ;
+fun tehdasmainen_AK : AK ;
+fun tehdaspakkaus_NK : NK ;
+fun tehdasrakennus_NK : NK ;
+fun tehdassali_NK : NK ;
+fun tehdastekoinen_NK : NK ;
+fun tehdasteollisuus_NK : NK ;
+fun tehdastuotanto_NK : NK ;
+fun tehdastuote_NK : NK ;
+fun tehdastyo'_NK : NK ;
+fun tehdastyo'la'inen_NK : NK ;
+fun tehdastyo'va'ki_NK : NK ;
+fun tehoaine_NK : NK ;
+fun tehohoito_NK : NK ;
+fun tehohoitoyksikko'_NK : NK ;
+fun tehoisku_NK : NK ;
+fun tehokalastus_NK : NK ;
+fun tehokeino_NK : NK ;
+fun tehokkuusluku_NK : NK ;
+fun teholuku_NK : NK ;
+fun tehomyynti_NK : NK ;
+fun tehopiste_NK : NK ;
+fun tehosekoitin_NK : NK ;
+fun tehostelanka_NK : NK ;
+fun tehosterokotus_NK : NK ;
+fun tehostuskeino_NK : NK ;
+fun tehotoimi_NK : NK ;
+fun tehovahvistin_NK : NK ;
+fun tehoviljely_NK : NK ;
+fun tehta'va'alue_NK : NK ;
+fun tehta'va'kentta'_NK : NK ;
+fun tehta'va'piiri_NK : NK ;
+fun teilipuu_NK : NK ;
+fun teinikunta_NK : NK ;
+fun teininuori_NK : NK ;
+fun teininuoriso_NK : NK ;
+fun teinipoliitikko_NK : NK ;
+fun teinipolitiikka_NK : NK ;
+fun teinitytto'_NK : NK ;
+fun tekija'mies_NK : NK ;
+fun tekniikkakyla'_NK : NK ;
+fun tekniikkalaji_NK : NK ;
+fun tekniikkalukio_NK : NK ;
+--? fun teknobileet_NK : NK ;
+fun teknokulttuuri_NK : NK ;
+fun teknomusiikki_NK : NK ;
+fun tekoaine_NK : NK ;
+fun tekoaineinen_NK : NK ;
+fun tekoallas_NK : NK ;
+fun tekoelin_NK : NK ;
+fun tekoela'ma'_NK : NK ;
+fun tekohammas_NK : NK ;
+fun tekohengitys_NK : NK ;
+fun tekohilpea'_NK : NK ;
+fun tekohius_NK : NK ;
+fun tekohurskas_NK : NK ;
+fun tekohurskaus_NK : NK ;
+fun tekoitku_NK : NK ;
+fun tekojalka_NK : NK ;
+fun tekoja'rvi_NK : NK ;
+fun tekoja'sen_NK : NK ;
+fun tekoja'a'_NK : NK ;
+fun tekoja'a'rata_NK : NK ;
+fun tekokuitu_NK : NK ;
+fun tekokukka_NK : NK ;
+fun tekokukkanen_NK : NK ;
+fun tekokumi_NK : NK ;
+fun tekokuu_NK : NK ;
+fun tekokynsi_NK : NK ;
+fun tekoka'si_NK : NK ;
+fun tekolammikko_NK : NK ;
+fun tekolampi_NK : NK ;
+fun tekolumetus_NK : NK ;
+fun tekolumi_NK : NK ;
+fun tekola'ppa'_NK : NK ;
+fun tekomokka_NK : NK ;
+fun tekonahka_NK : NK ;
+fun tekonahkainen_NK : NK ;
+fun tekonauru_NK : NK ;
+fun tekonena'_NK : NK ;
+fun teko_ohje_NK : NK ;
+fun tekopaikka_NK : NK ;
+fun tekopalkka_NK : NK ;
+fun tekoparta_NK : NK ;
+fun tekopyhyys_NK : NK ;
+fun tekopyha'_NK : NK ;
+fun tekoraaja_NK : NK ;
+fun tekosade_NK : NK ;
+fun tekosilkki_NK : NK ;
+fun tekosilkkinen_NK : NK ;
+fun tekosilma'_NK : NK ;
+fun tekosivea'_NK : NK ;
+fun tekosuoli_NK : NK ;
+fun tekosyda'n_NK : NK ;
+fun tekosynti_NK : NK ;
+fun tekosyy_NK : NK ;
+fun tekotapa_NK : NK ;
+fun tekotukka_NK : NK ;
+fun tekoturkis_NK : NK ;
+fun tekoturkki_NK : NK ;
+fun tekovika_NK : NK ;
+fun tekoyska'_NK : NK ;
+fun tekoa'ly_NK : NK ;
+fun tekstauskirjain_NK : NK ;
+fun tekstiasu_NK : NK ;
+fun tekstiilikeraaminen_NK : NK ;
+fun tekstiilikeramiikka_NK : NK ;
+fun tekstiilikuitu_NK : NK ;
+fun tekstiililanka_NK : NK ;
+fun tekstiililiike_NK : NK ;
+fun tekstiilimatto_NK : NK ;
+fun tekstiiliopettaja_NK : NK ;
+fun tekstiilisuutin_NK : NK ;
+fun tekstiilitaide_NK : NK ;
+fun tekstiilitaideteos_NK : NK ;
+fun tekstiilitaiteilija_NK : NK ;
+fun tekstiilitapetti_NK : NK ;
+fun tekstiiliteollisuus_NK : NK ;
+fun tekstiiliteos_NK : NK ;
+fun tekstiilituote_NK : NK ;
+fun tekstiilityo'_NK : NK ;
+fun tekstiiliurheilija_NK : NK ;
+fun tekstiiliva'ri_NK : NK ;
+fun tekstijulkaisu_NK : NK ;
+fun tekstikriittinen_NK : NK ;
+fun tekstikritiikki_NK : NK ;
+fun tekstiladelma_NK : NK ;
+fun tekstimainonta_NK : NK ;
+fun tekstinka'sittelyohjelma_NK : NK ;
+fun tekstipuhelin_NK : NK ;
+fun tekstitelevisio_NK : NK ;
+fun tekstitoimittaja_NK : NK ;
+fun tekstiyhteys_NK : NK ;
+fun telaketju_NK : NK ;
+fun telaketjutraktori_NK : NK ;
+fun telakkateollisuus_NK : NK ;
+fun telakkatyo'la'inen_NK : NK ;
+fun telaluu_NK : NK ;
+fun telamaasturi_NK : NK ;
+fun telamatto_NK : NK ;
+fun telapuu_NK : NK ;
+fun telatie_NK : NK ;
+fun teleasentaja_NK : NK ;
+fun telefoto_NK : NK ;
+fun teleinsino'o'ri_NK : NK ;
+fun telejatke_NK : NK ;
+fun telekokous_NK : NK ;
+fun telekopio_NK : NK ;
+fun telekopiointi_NK : NK ;
+fun telekopiolaite_NK : NK ;
+fun telekopionumero_NK : NK ;
+fun telelaitos_NK : NK ;
+fun teleliikenne_NK : NK ;
+fun teleneuvottelu_NK : NK ;
+fun teleobjektiivi_NK : NK ;
+fun teleopetus_NK : NK ;
+fun telepalvelu_NK : NK ;
+fun teleprintteri_NK : NK ;
+fun teleskooppiliitos_NK : NK ;
+fun teleskooppivapa_NK : NK ;
+fun teletekniikka_NK : NK ;
+fun teletekninen_NK : NK ;
+fun televerkko_NK : NK ;
+fun televiestinta'_NK : NK ;
+fun televisio_NK : NK ;
+fun televisioantenni_NK : NK ;
+fun televisioasema_NK : NK ;
+fun televisioesiintyja'_NK : NK ;
+fun televisiofilmi_NK : NK ;
+fun televisiointi_NK : NK ;
+fun televisiokamera_NK : NK ;
+fun televisiokanava_NK : NK ;
+fun televisiokasvo_NK : NK ;
+fun televisiokurssi_NK : NK ;
+fun televisiokuuluttaja_NK : NK ;
+fun televisiokuvaaja_NK : NK ;
+fun televisiolupa_NK : NK ;
+fun televisiola'hetys_NK : NK ;
+fun televisiomainonta_NK : NK ;
+fun televisiomainos_NK : NK ;
+fun televisiona'ytelma'_NK : NK ;
+fun televisiona'yttelija'_NK : NK ;
+fun televisioruutu_NK : NK ;
+fun televisiosarja_NK : NK ;
+fun televisioshow_NK : NK ;
+fun televisiosota_NK : NK ;
+fun televisiostudio_NK : NK ;
+fun televisiotallennus_NK : NK ;
+fun televisioteatteri_NK : NK ;
+fun televisiotekniikka_NK : NK ;
+fun televisiotoimittaja_NK : NK ;
+fun televisiota'hti_NK : NK ;
+fun televisiovalvonta_NK : NK ;
+fun televisioverkko_NK : NK ;
+fun televisioyhtio'_NK : NK ;
+fun teleyhteys_NK : NK ;
+fun telea'a'nestys_NK : NK ;
+fun telineliike_NK : NK ;
+fun telinevoimistelu_NK : NK ;
+fun teloituspaikka_NK : NK ;
+fun telttakangas_NK : NK ;
+fun telttakatos_NK : NK ;
+fun telttakatto_NK : NK ;
+fun telttakyla'_NK : NK ;
+fun telttaleiri_NK : NK ;
+fun telttamajoitus_NK : NK ;
+fun telttaretkeilija'_NK : NK ;
+fun telttaretkeily_NK : NK ;
+fun telttaretki_NK : NK ;
+fun telttasauna_NK : NK ;
+fun telttatuoli_NK : NK ;
+fun temmellyskentta'_NK : NK ;
+fun temperamaalaus_NK : NK ;
+fun temperatuuri_NK : NK ;
+fun temperava'ri_NK : NK ;
+fun tempomerkinta'_NK : NK ;
+fun tendenssina'ytelma'_NK : NK ;
+fun tenhovoima_NK : NK ;
+fun tennisasu_NK : NK ;
+fun tennishalli_NK : NK ;
+fun tenniskenka'_NK : NK ;
+fun tenniskentta'_NK : NK ;
+fun tennismaila_NK : NK ;
+fun tennisottelu_NK : NK ;
+fun tennispaita_NK : NK ;
+fun tennispallo_NK : NK ;
+fun tennistossu_NK : NK ;
+fun tennistunti_NK : NK ;
+fun tennisturnaus_NK : NK ;
+fun tenoriaaria_NK : NK ;
+fun tenorilaulaja_NK : NK ;
+fun tenorisaksofoni_NK : NK ;
+fun tenoria'a'ni_NK : NK ;
+fun tenttikausi_NK : NK ;
+fun tenttikirja_NK : NK ;
+fun tenttikysymys_NK : NK ;
+fun teollisuusalue_NK : NK ;
+fun teollisuusammatti_NK : NK ;
+fun teollisuusautomaatio_NK : NK ;
+fun teollisuushalli_NK : NK ;
+fun teollisuusilmasto_NK : NK ;
+fun teollisuusjohtaja_NK : NK ;
+fun teollisuusja'te_NK : NK ;
+fun teollisuuskasvi_NK : NK ;
+fun teollisuuskaupunki_NK : NK ;
+fun teollisuuskeskus_NK : NK ;
+fun teollisuuskyla'_NK : NK ;
+fun teollisuuska'ytto'_NK : NK ;
+fun teollisuuslaina_NK : NK ;
+fun teollisuuslaitos_NK : NK ;
+fun teollisuusmaa_NK : NK ;
+fun teollisuusmies_NK : NK ;
+fun teollisuusministeri_NK : NK ;
+fun teollisuusministerio'_NK : NK ;
+fun teollisuusmyrkky_NK : NK ;
+fun teollisuusneuvos_NK : NK ;
+fun teollisuusna'yttely_NK : NK ;
+fun teollisuusosake_NK : NK ;
+fun teollisuuspamppu_NK : NK ;
+fun teollisuuspiiri_NK : NK ;
+fun teollisuuspolitiikka_NK : NK ;
+fun teollisuuspuu_NK : NK ;
+fun teollisuuspa'a'sto'_NK : NK ;
+fun teollisuusrakennus_NK : NK ;
+fun teollisuusrata_NK : NK ;
+fun teollisuusrobotti_NK : NK ;
+fun teollisuussaaste_NK : NK ;
+fun teollisuusseutu_NK : NK ;
+fun teollisuussprii_NK : NK ;
+fun teollisuustimantti_NK : NK ;
+fun teollisuustontti_NK : NK ;
+fun teollisuustuotanto_NK : NK ;
+fun teollisuustuote_NK : NK ;
+fun teollisuustyo'_NK : NK ;
+fun teollisuustyo'la'inen_NK : NK ;
+fun teollisuustyo'paikka_NK : NK ;
+fun teollisuustyo'va'esto'_NK : NK ;
+fun teollisuustyo'va'ki_NK : NK ;
+fun teollisuusvakoilija_NK : NK ;
+fun teollisuusvakoilu_NK : NK ;
+fun teollisuusvaltio_NK : NK ;
+fun teollisuusvartija_NK : NK ;
+fun teollisuusyritta'ja'_NK : NK ;
+fun teollisuusyritys_NK : NK ;
+fun teoriaopetus_NK : NK ;
+fun teossarja_NK : NK ;
+fun terapiaryhma'_NK : NK ;
+fun terassiravintola_NK : NK ;
+fun terassitalo_NK : NK ;
+fun terio'muoto_NK : NK ;
+fun termiinikauppa_NK : NK ;
+fun termiinikurssi_NK : NK ;
+--? fun termiinimarkkinat_NK : NK ;
+fun termiinisopimus_NK : NK ;
+fun terminaali_NK : NK ;
+fun terminaalihoito_NK : NK ;
+fun terminaalikipu_NK : NK ;
+fun terminaalivaihe_NK : NK ;
+fun termosastia_NK : NK ;
+fun termoskaadin_NK : NK ;
+fun termoskannu_NK : NK ;
+fun termospullo_NK : NK ;
+fun termostaattihana_NK : NK ;
+fun termostaattilevy_NK : NK ;
+fun termostaattisa'a'to'inen_NK : NK ;
+fun terraarioela'in_NK : NK ;
+fun terrakottaveistos_NK : NK ;
+fun terrastirappaus_NK : NK ;
+fun terroristihyo'kka'ys_NK : NK ;
+fun terroristija'rjesto'_NK : NK ;
+fun terroriteko_NK : NK ;
+fun tertia'a'rikausi_NK : NK ;
+fun tertia'a'rikautinen_NK : NK ;
+fun terttualpi_NK : NK ;
+fun terttuselja_NK : NK ;
+fun tervahauta_NK : NK ;
+fun tervahovi_NK : NK ;
+fun tervahuopa_NK : NK ;
+fun tervaho'yry_NK : NK ;
+fun tervakaupunki_NK : NK ;
+fun tervaleppa'_NK : NK ;
+fun tervaliha_NK : NK ;
+fun tervapahvi_NK : NK ;
+fun tervapastilli_NK : NK ;
+fun tervapata_NK : NK ;
+fun tervaporvari_NK : NK ;
+fun tervapa'a'sky_NK : NK ;
+fun tervaskanto_NK : NK ;
+fun tervasoihtu_NK : NK ;
+fun tervasroso_NK : NK ;
+fun tervasrosoinen_NK : NK ;
+fun tervatynnyri_NK : NK ;
+fun tervehdysasento_NK : NK ;
+fun tervehdyska'ynti_NK : NK ;
+fun tervehdyspuhe_NK : NK ;
+fun tervehenkinen_NK : NK ;
+fun tervehenkisyys_NK : NK ;
+fun terveja'rkinen_NK : NK ;
+fun terveydenhoitohenkilo'sto'_NK : NK ;
+fun terveydenhoitokeino_NK : NK ;
+fun terveydenhuoltoneuvos_NK : NK ;
+fun terveydenhuoltopalvelu_NK : NK ;
+fun terveysasema_NK : NK ;
+fun terveyshaitta_NK : NK ;
+fun terveysintoilija_NK : NK ;
+fun terveysintoilu_NK : NK ;
+fun terveyskasvatus_NK : NK ;
+fun terveyskenka'_NK : NK ;
+fun terveyskeskus_NK : NK ;
+fun terveyskeskusavustaja_NK : NK ;
+fun terveyskeskusla'a'ka'ri_NK : NK ;
+fun terveyskeskusmaksu_NK : NK ;
+fun terveyskortti_NK : NK ;
+fun terveyskylpy_NK : NK ;
+fun terveyskylpyla'_NK : NK ;
+fun terveysloma_NK : NK ;
+fun terveysmatka_NK : NK ;
+fun terveysmatkailu_NK : NK ;
+fun terveysministeri_NK : NK ;
+fun terveysministerio'_NK : NK ;
+fun terveysneuvonta_NK : NK ;
+fun terveysoppi_NK : NK ;
+fun terveyspalvelu_NK : NK ;
+fun terveysriski_NK : NK ;
+fun terveyssandaali_NK : NK ;
+fun terveysside_NK : NK ;
+fun terveyssisar_NK : NK ;
+fun terveyssyy_NK : NK ;
+fun terveystarkastaja_NK : NK ;
+fun terveystarkastus_NK : NK ;
+fun terveysterroristi_NK : NK ;
+fun terveystodistus_NK : NK ;
+fun terveysvaara_NK : NK ;
+fun terveysvaikutus_NK : NK ;
+fun terveysvalistus_NK : NK ;
+fun terveysvirasto_NK : NK ;
+fun tera'ase_NK : NK ;
+fun tera'ketju_NK : NK ;
+fun tera'kiekko_NK : NK ;
+fun tera'kunto_NK : NK ;
+fun tera'lehti_NK : NK ;
+fun tera'metalli_NK : NK ;
+fun tera'sastia_NK : NK ;
+fun tera'sbetoni_NK : NK ;
+fun tera'sbetonielementti_NK : NK ;
+fun tera'sbetonipalkki_NK : NK ;
+fun tera'sbetonirakenne_NK : NK ;
+fun tera'sbetonirunko_NK : NK ;
+fun tera'sharja_NK : NK ;
+fun tera'shermoinen_NK : NK ;
+fun tera'sja'a'_NK : NK ;
+fun tera'skattila_NK : NK ;
+fun tera'skisko_NK : NK ;
+fun tera'skuori_NK : NK ;
+fun tera'sko'ysi_NK : NK ;
+fun tera'slanka_NK : NK ;
+fun tera'slankaverkko_NK : NK ;
+fun tera'slevy_NK : NK ;
+fun tera'smies_NK : NK ;
+fun tera'smieskilpailu_NK : NK ;
+fun tera'smieskisa_NK : NK ;
+fun tera'snainen_NK : NK ;
+fun tera'sovi_NK : NK ;
+fun tera'spalkki_NK : NK ;
+fun tera'spelti_NK : NK ;
+fun tera'srakenne_NK : NK ;
+fun tera'srunko_NK : NK ;
+fun tera'srunkoinen_NK : NK ;
+fun tera'stehdas_NK : NK ;
+fun tera'steollisuus_NK : NK ;
+fun tera'svaijeri_NK : NK ;
+fun tera'svalimo_NK : NK ;
+fun tera'svalu_NK : NK ;
+fun tera'sverkko_NK : NK ;
+fun tera'svilla_NK : NK ;
+fun tera'vyysalue_NK : NK ;
+fun tera'va'hampainen_NK : NK ;
+fun tera'va'harjainen_NK : NK ;
+fun tera'va'huippuinen_NK : NK ;
+fun tera'va'ja'rkinen_NK : NK ;
+fun tera'va'katseinen_NK : NK ;
+fun tera'va'katseisuus_NK : NK ;
+fun tera'va'kielinen_NK : NK ;
+fun tera'va'kielisyys_NK : NK ;
+fun tera'va'kulmainen_NK : NK ;
+fun tera'va'kyntinen_NK : NK ;
+fun tera'va'kyna'inen_NK : NK ;
+fun tera'va'ka'rkinen_NK : NK ;
+fun tera'va'muistinen_NK : NK ;
+fun tera'va'nena'inen_NK : NK ;
+fun tera'va'na'ko'inen_NK : NK ;
+fun tera'va'na'ko'isyys_NK : NK ;
+fun tera'va'piikkinen_NK : NK ;
+fun tera'va'piirteinen_NK : NK ;
+fun tera'va'pa'inen_NK : NK ;
+fun tera'va'reunainen_NK : NK ;
+fun tera'va'sanainen_NK : NK ;
+fun tera'va'sanaisuus_NK : NK ;
+fun tera'va'silma'inen_NK : NK ;
+fun tera'va'silma'isyys_NK : NK ;
+fun tera'va'sa'rma'inen_NK : NK ;
+fun tesmayrtti_NK : NK ;
+fun testamenttilahjoitus_NK : NK ;
+fun testamenttiperija'_NK : NK ;
+fun testamenttiperimys_NK : NK ;
+fun testamenttiperinto'_NK : NK ;
+fun testamenttirahasto_NK : NK ;
+fun testamenttiriita_NK : NK ;
+fun testausajo_NK : NK ;
+fun testausmenetelma'_NK : NK ;
+fun testaustulos_NK : NK ;
+fun testikuva_NK : NK ;
+fun testisarja_NK : NK ;
+fun testitulos_NK : NK ;
+fun tetrapakkaus_NK : NK ;
+fun teurasela'in_NK : NK ;
+fun teurasja'te_NK : NK ;
+fun teuraskala_NK : NK ;
+fun teuraskarja_NK : NK ;
+fun teuraskunto_NK : NK ;
+fun teuraskuntoinen_NK : NK ;
+fun teuraslehma'_NK : NK ;
+fun teuraspaino_NK : NK ;
+fun teuraspenkki_NK : NK ;
+fun teurasporo_NK : NK ;
+fun teurassika_NK : NK ;
+fun teurastuore_NK : NK ;
+fun teurastusja'te_NK : NK ;
+fun teurastuspalkkio_NK : NK ;
+fun teurastuspenkki_NK : NK ;
+fun teurasuhri_NK : NK ;
+fun teurasvasikka_NK : NK ;
+fun teurasveri_NK : NK ;
+fun thaimaalainen_NK : NK ;
+fun thaisilkki_NK : NK ;
+fun tiedehallinto_NK : NK ;
+fun tiedekeskus_NK : NK ;
+fun tiedekirja_NK : NK ;
+fun tiedekunta_NK : NK ;
+fun tiedelehti_NK : NK ;
+fun tiedemies_NK : NK ;
+fun tiedenainen_NK : NK ;
+fun tiedeneuvosto_NK : NK ;
+fun tiedepolitiikka_NK : NK ;
+fun tiedetoimittaja_NK : NK ;
+fun tiedeyhteiso'_NK : NK ;
+fun tiedonsiirtoverkko_NK : NK ;
+fun tiedotuskampanja_NK : NK ;
+fun tiedotuslehti_NK : NK ;
+fun tiedotusoppi_NK : NK ;
+fun tiedotussihteeri_NK : NK ;
+fun tiedotustilaisuus_NK : NK ;
+fun tiedotustoiminta_NK : NK ;
+fun tiedotusupseeri_NK : NK ;
+fun tiedotusva'line_NK : NK ;
+fun tiedustelualus_NK : NK ;
+fun tiedusteluelin_NK : NK ;
+fun tiedustelukohde_NK : NK ;
+fun tiedustelukone_NK : NK ;
+fun tiedustelulento_NK : NK ;
+fun tiedustelupalvelu_NK : NK ;
+fun tiedustelupartio_NK : NK ;
+fun tiedustelutoiminta_NK : NK ;
+fun tiedusteluverkko_NK : NK ;
+fun tieho'yla'_NK : NK ;
+fun tiejyra'_NK : NK ;
+fun tiekartta_NK : NK ;
+fun tiekohtainen_NK : NK ;
+fun tiekone_NK : NK ;
+fun tiekuljetus_NK : NK ;
+fun tiekunta_NK : NK ;
+fun tieliikenne_NK : NK ;
+fun tielinja_NK : NK ;
+fun tiemaksu_NK : NK ;
+fun tiemerkinta'_NK : NK ;
+fun tiemestari_NK : NK ;
+fun tienka'ytto'maksu_NK : NK ;
+fun tienparannustyo'_NK : NK ;
+fun tienrakennustekniikka_NK : NK ;
+fun tienrakennustyo'_NK : NK ;
+fun tienvarsiasutus_NK : NK ;
+fun tienvarsimainonta_NK : NK ;
+fun tienvarsimainos_NK : NK ;
+fun tieoikeus_NK : NK ;
+fun tieosa_NK : NK ;
+fun tieosakas_NK : NK ;
+fun tieosuus_NK : NK ;
+fun tiepalvelu_NK : NK ;
+fun tiepalveluauto_NK : NK ;
+fun tiepalvelumies_NK : NK ;
+fun tiepartio_NK : NK ;
+fun tiepenger_NK : NK ;
+fun tiepiiri_NK : NK ;
+fun tiepistia'inen_NK : NK ;
+fun tiesulku_NK : NK ;
+fun tiesuola_NK : NK ;
+fun tieteinen_NK : NK ;
+fun tietoaine_NK : NK ;
+fun tietoaines_NK : NK ;
+fun tietohuolto_NK : NK ;
+fun tietoinen_AK : AK ;
+fun tietoisku_NK : NK ;
+fun tietojenka'sittelylaite_NK : NK ;
+fun tietojenka'sittelyoppi_NK : NK ;
+fun tietokanava_NK : NK ;
+fun tietokanta_NK : NK ;
+fun tietokantaohjelma_NK : NK ;
+fun tietokentta'_NK : NK ;
+fun tietokilpailu_NK : NK ;
+fun tietokirja_NK : NK ;
+fun tietokirjailija_NK : NK ;
+fun tietokone_NK : NK ;
+fun tietokoneajo_NK : NK ;
+fun tietokoneanimaatio_NK : NK ;
+fun tietokoneavusteinen_AK : AK ;
+fun tietokonegrafiikka_NK : NK ;
+fun tietokonehaku_NK : NK ;
+fun tietokoneistus_NK : NK ;
+fun tietokoneka'sittely_NK : NK ;
+fun tietokoneladonta_NK : NK ;
+fun tietokonemusiikki_NK : NK ;
+fun tietokoneohjaus_NK : NK ;
+fun tietokoneohjelma_NK : NK ;
+fun tietokoneohjelmoija_NK : NK ;
+fun tietokonepeli_NK : NK ;
+fun tietokonepa'a'te_NK : NK ;
+fun tietokonerikos_NK : NK ;
+fun tietokonesimulointi_NK : NK ;
+fun tietokonetaide_NK : NK ;
+fun tietokonetekniikka_NK : NK ;
+fun tietokoneteknikko_NK : NK ;
+fun tietokonetomografia_NK : NK ;
+fun tietokonevirus_NK : NK ;
+fun tietokortti_NK : NK ;
+fun tietolevy_NK : NK ;
+fun tietoliikenne_NK : NK ;
+fun tietola'hde_NK : NK ;
+fun tietomurto_NK : NK ;
+fun tietoma'a'ra'_NK : NK ;
+fun tietopaketti_NK : NK ;
+fun tietopalvelu_NK : NK ;
+fun tietopalveluyksikko'_NK : NK ;
+fun tietopankki_NK : NK ;
+fun tietopohja_NK : NK ;
+fun tietopuolinen_AK : AK ;
+fun tietorikas_NK : NK ;
+fun tietosuoja_NK : NK ;
+fun tietosuojarikos_NK : NK ;
+fun tietosysteemi_NK : NK ;
+fun tietotaito_NK : NK ;
+fun tietotekniikka_NK : NK ;
+fun tietotekninen_NK : NK ;
+fun tietoteollisuus_NK : NK ;
+fun tietoteoria_NK : NK ;
+fun tietoteos_NK : NK ;
+fun tietotoimisto_NK : NK ;
+fun tietotupa_NK : NK ;
+fun tietotyo'_NK : NK ;
+fun tietotyo'la'inen_NK : NK ;
+fun tietoverkko_NK : NK ;
+fun tietoviisas_NK : NK ;
+fun tietoviisaus_NK : NK ;
+fun tietovisa_NK : NK ;
+fun tietovisailu_NK : NK ;
+fun tietovuoto_NK : NK ;
+fun tietova'line_NK : NK ;
+fun tietoyhteys_NK : NK ;
+fun tietulli_NK : NK ;
+fun tietyo'_NK : NK ;
+fun tietyo'maa_NK : NK ;
+fun tieverkko_NK : NK ;
+fun tieyhteys_NK : NK ;
+fun tihea'hampainen_NK : NK ;
+fun tihea'kasvuinen_NK : NK ;
+fun tihea'nukkainen_NK : NK ;
+fun tihea'silma'inen_NK : NK ;
+fun tihea'syinen_NK : NK ;
+fun tihkusade_NK : NK ;
+fun tihkusateinen_NK : NK ;
+fun tihutyo'_NK : NK ;
+fun tiikerihai_NK : NK ;
+fun tiikerikakku_NK : NK ;
+fun tiikerililja_NK : NK ;
+fun tiilielementti_NK : NK ;
+fun tiiliholvi_NK : NK ;
+fun tiilikasarmi_NK : NK ;
+fun tiilikatto_NK : NK ;
+fun tiilikattoinen_NK : NK ;
+fun tiilikivi_NK : NK ;
+fun tiilimurska_NK : NK ;
+fun tiilimurskarata_NK : NK ;
+fun tiilimuuraus_NK : NK ;
+fun tiilimuuri_NK : NK ;
+fun tiilipiippu_NK : NK ;
+fun tiiliputki_NK : NK ;
+fun tiilirakenne_NK : NK ;
+fun tiilirakennus_NK : NK ;
+fun tiiliskiviromaani_NK : NK ;
+fun tiilitalo_NK : NK ;
+fun tiilitehdas_NK : NK ;
+fun tiiliteollisuus_NK : NK ;
+fun tiiliuuni_NK : NK ;
+fun tiiliverhous_NK : NK ;
+fun tiimalasi_NK : NK ;
+fun tiimityo'_NK : NK ;
+fun tiipii_NK : NK ;
+fun tiirikka_NK : NK ;
+fun tiiviskantinen_NK : NK ;
+fun tiiviskorkkinen_NK : NK ;
+fun tiivisteinen_NK : NK ;
+fun tiivistekumi_NK : NK ;
+fun tiivistemassa_NK : NK ;
+fun tiivistemehu_NK : NK ;
+fun tiivistenauha_NK : NK ;
+fun tiivisterengas_NK : NK ;
+fun tiivistysaine_NK : NK ;
+fun tiivistyskitti_NK : NK ;
+fun tiivistysnauha_NK : NK ;
+fun tikkataulu_NK : NK ;
+fun tikkikangas_NK : NK ;
+fun tikkipisto_NK : NK ;
+fun tikkitakki_NK : NK ;
+fun tikkivuori_NK : NK ;
+fun tikkukaramelli_NK : NK ;
+fun tikkukirjain_NK : NK ;
+fun tikkulaatikko_NK : NK ;
+fun tikkupulla_NK : NK ;
+fun tikkurasia_NK : NK ;
+fun tikkusuora_NK : NK ;
+fun tikkuviina_NK : NK ;
+fun tilaajakunta_NK : NK ;
+fun tilaajama'a'ra'_NK : NK ;
+fun tilaelementti_NK : NK ;
+fun tilannearvio_NK : NK ;
+fun tilannekartta_NK : NK ;
+fun tilannekatsaus_NK : NK ;
+fun tilannekomedia_NK : NK ;
+fun tilannekomiikka_NK : NK ;
+fun tilannekuva_NK : NK ;
+fun tilannekuvaus_NK : NK ;
+fun tilannenopeus_NK : NK ;
+fun tilanneraitis_NK : NK ;
+fun tilanneraittius_NK : NK ;
+fun tilanneselostus_NK : NK ;
+fun tilannetaju_NK : NK ;
+fun tilannetiedotus_NK : NK ;
+fun tilapa'inen_AK : AK ;
+fun tilaratkaisu_NK : NK ;
+fun tilastoaineisto_NK : NK ;
+fun tilastolaskelma_NK : NK ;
+fun tilastonumero_NK : NK ;
+fun tilastotappio_NK : NK ;
+fun tilastotaulukko_NK : NK ;
+fun tilastotiede_NK : NK ;
+fun tilastotieteilija'_NK : NK ;
+fun tilastotieto_NK : NK ;
+fun tilastotulos_NK : NK ;
+fun tilastovuosi_NK : NK ;
+fun tilasa'ilio'_NK : NK ;
+fun tilataide_NK : NK ;
+fun tilatankki_NK : NK ;
+fun tilateos_NK : NK ;
+fun tilausajo_NK : NK ;
+fun tilausehto_NK : NK ;
+fun tilaushinta_NK : NK ;
+fun tilauskanta_NK : NK ;
+fun tilauskausi_NK : NK ;
+fun tilauskirje_NK : NK ;
+fun tilauslasku_NK : NK ;
+fun tilauslento_NK : NK ;
+fun tilauslentoliikenne_NK : NK ;
+fun tilausliikenne_NK : NK ;
+fun tilauslista_NK : NK ;
+fun tilauslomake_NK : NK ;
+fun tilausmaksu_NK : NK ;
+fun tilausmyyja'_NK : NK ;
+fun tilausmyynti_NK : NK ;
+fun tilausnumero_NK : NK ;
+fun tilausna'yta'nto'_NK : NK ;
+fun tilaussopimus_NK : NK ;
+fun tilaustutkimus_NK : NK ;
+fun tilaustyo'_NK : NK ;
+fun tilausvahvistus_NK : NK ;
+fun tilaviini_NK : NK ;
+fun tilavuusmitta_NK : NK ;
+fun tilavuuspaino_NK : NK ;
+fun tilavuusprosentti_NK : NK ;
+fun tilavuusyksikko'_NK : NK ;
+fun tiliasiakas_NK : NK ;
+fun tilikausi_NK : NK ;
+fun tilikirja_NK : NK ;
+fun tilillepanokortti_NK : NK ;
+fun tilinauha_NK : NK ;
+fun tilintarkastuskertomus_NK : NK ;
+fun tilinumero_NK : NK ;
+fun tiliote_NK : NK ;
+fun tilipussi_NK : NK ;
+fun tilipa'iva'_NK : NK ;
+fun tilisaatava_NK : NK ;
+fun tilisiirto_NK : NK ;
+fun tilitapahtuma_NK : NK ;
+fun tilitoimisto_NK : NK ;
+fun tilitosite_NK : NK ;
+fun tilitysromaani_NK : NK ;
+fun tilivajaus_NK : NK ;
+fun tilivapaus_NK : NK ;
+fun tilivelka_NK : NK ;
+fun tilivuosi_NK : NK ;
+fun tiliva'li_NK : NK ;
+fun tilkesana_NK : NK ;
+fun tilkkupeitto_NK : NK ;
+fun tilkkuta'kki_NK : NK ;
+fun tilkkuvakka_NK : NK ;
+fun tillikastike_NK : NK ;
+fun tilliliha_NK : NK ;
+fun tilsitjuusto_NK : NK ;
+fun tilusraja_NK : NK ;
+fun tilusrauhoitus_NK : NK ;
+fun tilustie_NK : NK ;
+fun timanttiananas_NK : NK ;
+--? fun timanttiha'a't_NK : NK ;
+fun timanttikaivos_NK : NK ;
+fun timanttikentta'_NK : NK ;
+fun timanttikoru_NK : NK ;
+fun timanttika'rki_NK : NK ;
+fun timanttika'rkinen_NK : NK ;
+fun timanttineula_NK : NK ;
+fun timanttipora_NK : NK ;
+fun timanttiporaus_NK : NK ;
+fun timanttisormus_NK : NK ;
+fun timanttiveitsi_NK : NK ;
+fun tinaesine_NK : NK ;
+fun tinaharkko_NK : NK ;
+fun tinajuote_NK : NK ;
+fun tinajuotos_NK : NK ;
+fun tinaja'ka'la'_NK : NK ;
+fun tinakannu_NK : NK ;
+fun tinakauha_NK : NK ;
+fun tinalasite_NK : NK ;
+fun tinalasitus_NK : NK ;
+fun tinalautanen_NK : NK ;
+fun tinamalmi_NK : NK ;
+fun tinanappi_NK : NK ;
+fun tinapaperi_NK : NK ;
+fun tinasotilas_NK : NK ;
+fun tinatuoppi_NK : NK ;
+fun tinayhdiste_NK : NK ;
+fun tinkimaito_NK : NK ;
+fun tinnerihumala_NK : NK ;
+fun tippaleipa'_NK : NK ;
+fun tippapullo_NK : NK ;
+fun tippukiviluola_NK : NK ;
+fun tippukivipuikko_NK : NK ;
+fun tippukivipylva's_NK : NK ;
+fun tirkistelyha'irio'_NK : NK ;
+fun tirkistysluukku_NK : NK ;
+fun tirripaisti_NK : NK ;
+fun tiskiaine_NK : NK ;
+fun tiskiallas_NK : NK ;
+fun tiskiharja_NK : NK ;
+fun tiskijukka_NK : NK ;
+fun tiskikone_NK : NK ;
+fun tiskipyyhe_NK : NK ;
+fun tiskipo'yta'_NK : NK ;
+fun tiskira'tti_NK : NK ;
+fun tiskivesi_NK : NK ;
+fun tislausastia_NK : NK ;
+fun tislausja'te_NK : NK ;
+fun tislauslaitos_NK : NK ;
+fun tislauspullo_NK : NK ;
+fun tiukkailmeinen_NK : NK ;
+fun tiukkakantinen_NK : NK ;
+fun tiukkakatseinen_NK : NK ;
+fun tiukkasanainen_NK : NK ;
+fun tiukkasa'vyinen_NK : NK ;
+fun toalettilaukku_NK : NK ;
+fun toalettipaperi_NK : NK ;
+fun todellisuuspakoinen_NK : NK ;
+fun todellisuuspohja_NK : NK ;
+fun todellisuustaju_NK : NK ;
+fun todellisuusvastine_NK : NK ;
+fun todenna'ko'isyyslaskelma_NK : NK ;
+fun todenna'ko'isyyslaskenta_NK : NK ;
+fun todistusaineisto_NK : NK ;
+fun todistusarvo_NK : NK ;
+fun todistusja'ljenno's_NK : NK ;
+fun todistuskappale_NK : NK ;
+fun todistusketju_NK : NK ;
+fun todistustaakka_NK : NK ;
+fun todistusvoima_NK : NK ;
+fun todistusvoimainen_NK : NK ;
+fun tohtorinva'ito'skirja_NK : NK ;
+fun tohtorinva'ito'stilaisuus_NK : NK ;
+fun tohtoripromootio_NK : NK ;
+fun tohveliela'in_NK : NK ;
+fun tohvelikukka_NK : NK ;
+fun tohvelisankari_NK : NK ;
+fun toiletti_NK : NK ;
+fun toimeenpanovalta_NK : NK ;
+fun toimeentulominimi_NK : NK ;
+fun toimeentulotuki_NK : NK ;
+fun toimeentuloturva_NK : NK ;
+fun toimenpidehuone_NK : NK ;
+fun toimenpidekielto_NK : NK ;
+fun toimialajohtaja_NK : NK ;
+fun toimialaja'rjesto'_NK : NK ;
+fun toimialue_NK : NK ;
+fun toimielin_NK : NK ;
+fun toimihenkilo'_NK : NK ;
+fun toimikassidoksinen_NK : NK ;
+fun toimikassidos_NK : NK ;
+fun toimikausi_NK : NK ;
+fun toimikelpoinen_NK : NK ;
+fun toimikelpoisuus_NK : NK ;
+fun toimikortti_NK : NK ;
+fun toimikunta_NK : NK ;
+fun toimilupa_NK : NK ;
+fun toiminimi_NK : NK ;
+fun toimintaedellytys_NK : NK ;
+fun toimintaha'irio'_NK : NK ;
+fun toimintakausi_NK : NK ;
+fun toimintakertomus_NK : NK ;
+fun toimintakeskus_NK : NK ;
+fun toimintakohde_NK : NK ;
+fun toimintakunto_NK : NK ;
+fun toimintakuntoinen_NK : NK ;
+fun toimintakyky_NK : NK ;
+fun toimintakykyinen_NK : NK ;
+fun toimintakyvyto'n_NK : NK ;
+fun toimintaka'sky_NK : NK ;
+fun toimintamuoto_NK : NK ;
+fun toimintaohje_NK : NK ;
+fun toimintasa'de_NK : NK ;
+fun toimintatapa_NK : NK ;
+fun toimintatarmo_NK : NK ;
+fun toimintatarmoinen_NK : NK ;
+fun toimintaterapeutti_NK : NK ;
+fun toimintaterapia_NK : NK ;
+fun toimintavalmis_NK : NK ;
+fun toimintavalmius_NK : NK ;
+fun toimintavapaus_NK : NK ;
+fun toimintavarma_NK : NK ;
+fun toimintavuosi_NK : NK ;
+fun toimintayksikko'_NK : NK ;
+fun toimintona'ppa'in_NK : NK ;
+fun toimipaikka_NK : NK ;
+fun toimipaikkaruokala_NK : NK ;
+fun toimipiiri_NK : NK ;
+fun toimistoapulainen_NK : NK ;
+fun toimistoautomaatio_NK : NK ;
+fun toimistohenkilo'sto'_NK : NK ;
+fun toimistohotelli_NK : NK ;
+fun toimistopa'a'llikko'_NK : NK ;
+fun toimistosihteeri_NK : NK ;
+fun toimistotyo'_NK : NK ;
+fun toimistoupseeri_NK : NK ;
+fun toimistovirkailija_NK : NK ;
+fun toimitalo_NK : NK ;
+fun toimitila_NK : NK ;
+fun toimitsijamies_NK : NK ;
+fun toimittajakunta_NK : NK ;
+fun toimitusehto_NK : NK ;
+fun toimitusera'_NK : NK ;
+fun toimitushenkilo'sto'_NK : NK ;
+fun toimitusinsino'o'ri_NK : NK ;
+fun toimitusjohtaja_NK : NK ;
+fun toimituskappeli_NK : NK ;
+fun toimituskartta_NK : NK ;
+fun toimituskirja_NK : NK ;
+fun toimituskunta_NK : NK ;
+fun toimitusluotto_NK : NK ;
+fun toimitusmaksu_NK : NK ;
+fun toimitusmerkki_NK : NK ;
+fun toimitusmies_NK : NK ;
+fun toimitusneuvosto_NK : NK ;
+fun toimituspaikka_NK : NK ;
+fun toimituspalkkio_NK : NK ;
+fun toimituspa'a'llikko'_NK : NK ;
+fun toimitussihteeri_NK : NK ;
+fun toimitustekniikka_NK : NK ;
+fun toimitustyo'_NK : NK ;
+fun toimiupseeri_NK : NK ;
+fun toimivalta_NK : NK ;
+fun toimivaltainen_NK : NK ;
+fun toimivaltuus_NK : NK ;
+fun toimivuosi_NK : NK ;
+fun toisinajattelija_NK : NK ;
+fun toissailtainen_NK : NK ;
+fun toissakesa'inen_NK : NK ;
+fun toissapa'iva'inen_NK : NK ;
+fun toissavuotinen_NK : NK ;
+fun toistoalennus_NK : NK ;
+fun toistoalue_NK : NK ;
+fun toistotyo'_NK : NK ;
+fun toiveajattelija_NK : NK ;
+fun toiveajattelu_NK : NK ;
+fun toiveammatti_NK : NK ;
+fun toivekonsertti_NK : NK ;
+fun toivelevy_NK : NK ;
+fun toiveuni_NK : NK ;
+fun toiviomatkalainen_NK : NK ;
+fun toivomusaloite_NK : NK ;
+fun toivorikas_NK : NK ;
+fun toleranssialue_NK : NK ;
+fun toleranssiraja_NK : NK ;
+fun tolppalaukaus_NK : NK ;
+fun tomaattikastike_NK : NK ;
+fun tomaattikeitto_NK : NK ;
+fun tomaattimehu_NK : NK ;
+fun tomaattimurska_NK : NK ;
+fun tomaattimurske_NK : NK ;
+fun tomaattipyree_NK : NK ;
+fun tomaattisalaatti_NK : NK ;
+fun tomaattisose_NK : NK ;
+fun tomuhiukkanen_NK : NK ;
+fun tomukerros_NK : NK ;
+fun tomumaja_NK : NK ;
+fun tomupilvi_NK : NK ;
+fun tomuriepu_NK : NK ;
+fun tomura'tti_NK : NK ;
+fun tomusokeri_NK : NK ;
+fun tonnikala_NK : NK ;
+fun tonttiarvo_NK : NK ;
+fun tonttijako_NK : NK ;
+fun tonttikartta_NK : NK ;
+fun tonttikeinottelu_NK : NK ;
+fun tonttimaa_NK : NK ;
+fun tonttipolitiikka_NK : NK ;
+fun tonttulakki_NK : NK ;
+fun tonttuleikki_NK : NK ;
+fun tonttupoika_NK : NK ;
+fun tonttupuku_NK : NK ;
+fun tonttutytto'_NK : NK ;
+fun topaasi_NK : NK ;
+fun topakka_NK : NK ;
+fun topografikartta_NK : NK ;
+fun toppahaalari_NK : NK ;
+--? fun toppahousut_NK : NK ;
+fun toppakangas_NK : NK ;
+fun toppapusakka_NK : NK ;
+fun toppapusero_NK : NK ;
+fun toppari_NK : NK ;
+fun topparoikka_NK : NK ;
+fun toppasokeri_NK : NK ;
+fun toppatakki_NK : NK ;
+fun toppata'kki_NK : NK ;
+fun torahammas_NK : NK ;
+fun torajyva'_NK : NK ;
+fun toriaukio_NK : NK ;
+fun torihinta_NK : NK ;
+fun torikammo_NK : NK ;
+fun torikassi_NK : NK ;
+fun torikauhu_NK : NK ;
+fun torikauppa_NK : NK ;
+fun torikauppias_NK : NK ;
+fun torikokous_NK : NK ;
+fun torimyynti_NK : NK ;
+fun toripa'iva'_NK : NK ;
+fun toritaide_NK : NK ;
+fun toritapahtuma_NK : NK ;
+fun torjuntaelio'_NK : NK ;
+fun torjuntaha'vitta'ja'_NK : NK ;
+fun torjuntaohjus_NK : NK ;
+fun torjuntaprosentti_NK : NK ;
+fun torjuntataistelu_NK : NK ;
+fun torjuntavoitto_NK : NK ;
+fun tornikello_NK : NK ;
+fun torninosturi_NK : NK ;
+fun tornitalo_NK : NK ;
+fun torpedohyo'kka'ys_NK : NK ;
+fun torpedoputki_NK : NK ;
+fun torpedovene_NK : NK ;
+fun torpparilaitos_NK : NK ;
+fun torppariluokka_NK : NK ;
+fun torppariva'esto'_NK : NK ;
+fun torsiovoima_NK : NK ;
+fun torvija'ka'la'_NK : NK ;
+fun torvikukka_NK : NK ;
+fun torvimusiikki_NK : NK ;
+fun torviseitsikko_NK : NK ;
+fun torvisieni_NK : NK ;
+fun torvisoitto_NK : NK ;
+fun torvisoittokunta_NK : NK ;
+fun tosiaikainen_NK : NK ;
+fun tosiasia_NK : NK ;
+fun tosiasiallinen_NK : NK ;
+fun tosiela'ma'_NK : NK ;
+fun tosijuttu_NK : NK ;
+fun tosikertomus_NK : NK ;
+fun tosikkomainen_AK : AK ;
+fun tosioleva_NK : NK ;
+fun tosiolevainen_NK : NK ;
+fun tosioloinen_NK : NK ;
+fun tosipaikka_NK : NK ;
+fun tosipohja_NK : NK ;
+fun tosipohjainen_NK : NK ;
+fun tosiseikka_NK : NK ;
+fun tositapa_NK : NK ;
+fun tositapaus_NK : NK ;
+fun tositarina_NK : NK ;
+fun tositarkoitus_NK : NK ;
+fun tositoimi_NK : NK ;
+fun toteemiela'in_NK : NK ;
+fun toteemipaalu_NK : NK ;
+fun toteemipatsas_NK : NK ;
+fun toteenna'ytto'_NK : NK ;
+fun totolippu_NK : NK ;
+fun totovihje_NK : NK ;
+fun tottelevaisuuskoe_NK : NK ;
+fun totuusarvo_NK : NK ;
+fun totuusvaatimus_NK : NK ;
+fun totuusvakuutus_NK : NK ;
+fun toukkavaihe_NK : NK ;
+fun toukoha'rka'_NK : NK ;
+fun toukokuinen_NK : NK ;
+fun toukokuu_NK : NK ;
+fun toukopelto_NK : NK ;
+fun toveriasunto_NK : NK ;
+fun toverihenki_NK : NK ;
+fun toverijoukko_NK : NK ;
+fun toverikuri_NK : NK ;
+fun toveripiiri_NK : NK ;
+fun toveruussuhde_NK : NK ;
+fun traktorikaivuri_NK : NK ;
+fun traktorimarssi_NK : NK ;
+fun transistoriradio_NK : NK ;
+fun transistorivahvistin_NK : NK ;
+fun transitokauppa_NK : NK ;
+fun transitoliikenne_NK : NK ;
+fun transitotavara_NK : NK ;
+fun transitotulli_NK : NK ;
+fun trapetsitaiteilija_NK : NK ;
+fun trasselitukko_NK : NK ;
+fun treenaussali_NK : NK ;
+fun treenisali_NK : NK ;
+fun triangelidraama_NK : NK ;
+fun triatlonkilpailu_NK : NK ;
+fun trikkikuva_NK : NK ;
+fun trikkikuvaus_NK : NK ;
+fun trikoosametti_NK : NK ;
+fun trippimittari_NK : NK ;
+fun troolikalastus_NK : NK ;
+fun troolipyynti_NK : NK ;
+fun trubaduurirunous_NK : NK ;
+fun trumpettihame_NK : NK ;
+fun trumpettisoolo_NK : NK ;
+fun trustivapaa_NK : NK ;
+fun tsaarivalta_NK : NK ;
+fun tuhannesosa_NK : NK ;
+fun tuhatjalkainen_NK : NK ;
+fun tuhatkertainen_AK : AK ;
+fun tuhatkunta_NK : NK ;
+fun tuhatlappunen_NK : NK ;
+fun tuhatluku_NK : NK ;
+fun tuhatlukuinen_NK : NK ;
+fun tuhatmarkkanen_NK : NK ;
+fun tuhatpa'inen_NK : NK ;
+fun tuhattaituri_NK : NK ;
+fun tuhatvuotinen_NK : NK ;
+fun tuhkakuppi_NK : NK ;
+fun tuhkaluukku_NK : NK ;
+fun tuhkapensas_NK : NK ;
+fun tuhkapesa'_NK : NK ;
+fun tuhkarokko_NK : NK ;
+fun tuhkarokkoinen_NK : NK ;
+fun tuhkarokkovirus_NK : NK ;
+fun tuhkauurna_NK : NK ;
+fun tuhkimotarina_NK : NK ;
+fun tuhlaajapoika_NK : NK ;
+fun tuhoalue_NK : NK ;
+fun tuhoela'in_NK : NK ;
+fun tuhohyo'nteinen_NK : NK ;
+fun tuholainen_NK : NK ;
+fun tuhooja_NK : NK ;
+fun tuhopolttaja_NK : NK ;
+fun tuhopoltto_NK : NK ;
+fun tuhosieni_NK : NK ;
+fun tuhovaikutus_NK : NK ;
+fun tuhovoima_NK : NK ;
+fun tuikkukynttila'_NK : NK ;
+fun tuiskutuuli_NK : NK ;
+fun tukevatekoinen_NK : NK ;
+fun tukialue_NK : NK ;
+fun tukialus_NK : NK ;
+fun tukiasema_NK : NK ;
+fun tukiasunto_NK : NK ;
+fun tukihenkilo'_NK : NK ;
+fun tukihoito_NK : NK ;
+fun tukijalka_NK : NK ;
+fun tukija'rjesto'_NK : NK ;
+fun tukikaari_NK : NK ;
+fun tukikangas_NK : NK ;
+fun tukikaulus_NK : NK ;
+fun tukikenka'_NK : NK ;
+fun tukikeppi_NK : NK ;
+fun tukikoti_NK : NK ;
+fun tukikudos_NK : NK ;
+fun tukikudossyo'pa'_NK : NK ;
+fun tukilakko_NK : NK ;
+fun tukiliivi_NK : NK ;
+fun tukilinja_NK : NK ;
+fun tukimies_NK : NK ;
+fun tukimiesketju_NK : NK ;
+fun tukiopettaja_NK : NK ;
+fun tukiopetus_NK : NK ;
+fun tukioppilas_NK : NK ;
+fun tukiosto_NK : NK ;
+fun tukipaketti_NK : NK ;
+fun tukipalkki_NK : NK ;
+fun tukipalkkio_NK : NK ;
+fun tukipalvelu_NK : NK ;
+fun tukipilari_NK : NK ;
+fun tukipiste_NK : NK ;
+fun tukipohja_NK : NK ;
+fun tukipuu_NK : NK ;
+fun tukipylva's_NK : NK ;
+fun tukipyo'ra'_NK : NK ;
+fun tukirakenne_NK : NK ;
+fun tukiranka_NK : NK ;
+fun tukiranko_NK : NK ;
+fun tukirauta_NK : NK ;
+fun tukiryhma'_NK : NK ;
+fun tukiseiva's_NK : NK ;
+fun tukisidos_NK : NK ;
+fun tukisolu_NK : NK ;
+fun tukisolukko_NK : NK ;
+fun tukisukka_NK : NK ;
+fun tukitalletus_NK : NK ;
+fun tukitoimi_NK : NK ;
+fun tukityo'_NK : NK ;
+fun tukivarsi_NK : NK ;
+fun tukkakoskelo_NK : NK ;
+fun tukkalaite_NK : NK ;
+fun tukkamuoti_NK : NK ;
+fun tukkanuotta_NK : NK ;
+fun tukkapo'lly_NK : NK ;
+fun tukkasotka_NK : NK ;
+fun tukkiallas_NK : NK ;
+fun tukkihumala_NK : NK ;
+fun tukkija'tka'_NK : NK ;
+fun tukkikuorma_NK : NK ;
+fun tukkika'mppa'_NK : NK ;
+fun tukkika'rsa'ka's_NK : NK ;
+fun tukkilainen_NK : NK ;
+fun tukkilanssi_NK : NK ;
+fun tukkilautta_NK : NK ;
+fun tukkimetsa'_NK : NK ;
+fun tukkimies_NK : NK ;
+fun tukkinippu_NK : NK ;
+--? fun tukkipihdit_NK : NK ;
+fun tukkipuu_NK : NK ;
+--? fun tukkisakset_NK : NK ;
+fun tukkisavotta_NK : NK ;
+fun tukkisuma_NK : NK ;
+fun tukkityo'_NK : NK ;
+fun tukkualennus_NK : NK ;
+fun tukkuhinta_NK : NK ;
+fun tukkukauppa_NK : NK ;
+fun tukkukauppias_NK : NK ;
+fun tukkuliike_NK : NK ;
+fun tukkumyyja'_NK : NK ;
+fun tukkumyynti_NK : NK ;
+fun tukkuostaja_NK : NK ;
+fun tukkutori_NK : NK ;
+fun tulehduserite_NK : NK ;
+fun tulehdusneste_NK : NK ;
+fun tulenjohtoelin_NK : NK ;
+fun tulenjohtopaikka_NK : NK ;
+fun tuliannos_NK : NK ;
+fun tuliase_NK : NK ;
+fun tuliasema_NK : NK ;
+fun tulikaste_NK : NK ;
+fun tulikirjain_NK : NK ;
+fun tulikivi_NK : NK ;
+fun tulikoe_NK : NK ;
+fun tulikomento_NK : NK ;
+fun tulikukka_NK : NK ;
+fun tulikuuma_NK : NK ;
+fun tulika'rpa'nen_NK : NK ;
+fun tulilanka_NK : NK ;
+fun tulilatva_NK : NK ;
+fun tuliliemi_NK : NK ;
+fun tulilinja_NK : NK ;
+fun tulimeri_NK : NK ;
+fun tulimyrsky_NK : NK ;
+fun tulinopeus_NK : NK ;
+fun tulipallo_NK : NK ;
+fun tulipalo_NK : NK ;
+fun tulipalokiire_NK : NK ;
+fun tulipalopakkanen_NK : NK ;
+fun tulipatteri_NK : NK ;
+fun tulipera'inen_NK : NK ;
+fun tulipesa'_NK : NK ;
+fun tulipesa'ke_NK : NK ;
+fun tulipunainen_NK : NK ;
+fun tulirokko_NK : NK ;
+fun tulirokkoinen_NK : NK ;
+fun tulisija_NK : NK ;
+fun tulisilma'inen_NK : NK ;
+fun tulisoihtu_NK : NK ;
+fun tulitaistelu_NK : NK ;
+fun tulitauko_NK : NK ;
+fun tulitera'_NK : NK ;
+fun tulitiili_NK : NK ;
+fun tulitikku_NK : NK ;
+fun tulitikkuaski_NK : NK ;
+fun tulitikkuetiketti_NK : NK ;
+fun tulitikkulaatikko_NK : NK ;
+fun tulitikkupuntti_NK : NK ;
+fun tulitikkurasia_NK : NK ;
+fun tulitikkutehdas_NK : NK ;
+fun tulitoiminta_NK : NK ;
+fun tulituki_NK : NK ;
+fun tulivaikutus_NK : NK ;
+fun tulivalmistelu_NK : NK ;
+fun tulivoima_NK : NK ;
+fun tulivoimainen_NK : NK ;
+fun tulivuori_NK : NK ;
+fun tuliylla'kko'_NK : NK ;
+fun tulkintakysymys_NK : NK ;
+fun tulkintatapa_NK : NK ;
+fun tulkintavaikeus_NK : NK ;
+fun tullausarvo_NK : NK ;
+fun tullialue_NK : NK ;
+fun tulliasema_NK : NK ;
+fun tullihelpotus_NK : NK ;
+fun tullikamari_NK : NK ;
+fun tullika'sittely_NK : NK ;
+fun tullilaitos_NK : NK ;
+fun tulliliitto_NK : NK ;
+fun tullimaksu_NK : NK ;
+fun tullimies_NK : NK ;
+fun tullimuuri_NK : NK ;
+fun tullinimike_NK : NK ;
+fun tullipolitiikka_NK : NK ;
+fun tulliraja_NK : NK ;
+fun tullirikos_NK : NK ;
+fun tulliselvitys_NK : NK ;
+fun tullisopimus_NK : NK ;
+fun tullisuoja_NK : NK ;
+fun tullitaksa_NK : NK ;
+fun tullitariffi_NK : NK ;
+fun tullitarkastus_NK : NK ;
+fun tulliterminaali_NK : NK ;
+fun tullitie_NK : NK ;
+fun tulliunioni_NK : NK ;
+fun tullivalvonta_NK : NK ;
+fun tullivapaa_NK : NK ;
+fun tullivarasto_NK : NK ;
+fun tullivene_NK : NK ;
+fun tullivirkailija_NK : NK ;
+fun tuloarvio_NK : NK ;
+fun tuloero_NK : NK ;
+fun tuloera'_NK : NK ;
+fun tuloilma_NK : NK ;
+fun tulokehitys_NK : NK ;
+fun tulokertyma'_NK : NK ;
+fun tuloloukku_NK : NK ;
+fun tulola'hde_NK : NK ;
+fun tulomatka_NK : NK ;
+fun tuloneuvottelu_NK : NK ;
+fun tulopolitiikka_NK : NK ;
+fun tulopa'iva'_NK : NK ;
+fun tulorahoitus_NK : NK ;
+fun tuloratkaisu_NK : NK ;
+fun tulosija_NK : NK ;
+fun tuloslaskelma_NK : NK ;
+fun tulosluettelo_NK : NK ;
+fun tulosopimus_NK : NK ;
+fun tulospalkkaus_NK : NK ;
+fun tulospalkkio_NK : NK ;
+fun tulospalvelu_NK : NK ;
+fun tulostaulu_NK : NK ;
+fun tulostaulukko_NK : NK ;
+fun tulostavoite_NK : NK ;
+fun tulostehtailija_NK : NK ;
+fun tulostehtailu_NK : NK ;
+fun tulostilasto_NK : NK ;
+fun tulosuunta_NK : NK ;
+fun tulosvaroitus_NK : NK ;
+fun tulosvastuinen_NK : NK ;
+fun tulosvastuu_NK : NK ;
+fun tulosyksikko'_NK : NK ;
+fun tulotaso_NK : NK ;
+fun tulovero_NK : NK ;
+fun tulvaja'rvi_NK : NK ;
+fun tulvakausi_NK : NK ;
+fun tulvakerrostuma_NK : NK ;
+--? fun tulvakeva't_NK : NK ;
+fun tulvakorkeus_NK : NK ;
+fun tulvamaa_NK : NK ;
+fun tulvaniitty_NK : NK ;
+fun tulvaraja_NK : NK ;
+fun tulvavesi_NK : NK ;
+fun tumakotelo_NK : NK ;
+fun tummaihoinen_NK : NK ;
+fun tummakulmainen_NK : NK ;
+fun tummapintainen_NK : NK ;
+fun tummapukuinen_NK : NK ;
+fun tummasilma'inen_NK : NK ;
+fun tummasa'vyinen_NK : NK ;
+fun tummatukkainen_NK : NK ;
+fun tummaverinen_NK : NK ;
+fun tummavetinen_NK : NK ;
+fun tundrakasvi_NK : NK ;
+fun tundrakurmitsa_NK : NK ;
+fun tundravyo'hyke_NK : NK ;
+fun tunnearvo_NK : NK ;
+fun tunneasia_NK : NK ;
+fun tunneherkkyys_NK : NK ;
+fun tunneherkka'_NK : NK ;
+fun tunneihminen_NK : NK ;
+fun tunneilmaisu_NK : NK ;
+fun tunneilmasto_NK : NK ;
+fun tunneilmaus_NK : NK ;
+fun tunnekuohu_NK : NK ;
+fun tunneko'yhyys_NK : NK ;
+fun tunneko'yha'_NK : NK ;
+fun tunnelataus_NK : NK ;
+fun tunneliteltta_NK : NK ;
+fun tunnelivarjo_NK : NK ;
+fun tunnelmakuva_NK : NK ;
+fun tunnelmakuvaus_NK : NK ;
+fun tunnelmamusiikki_NK : NK ;
+fun tunnelmaruno_NK : NK ;
+fun tunnelmarunous_NK : NK ;
+fun tunnelmavalaistus_NK : NK ;
+fun tunnepatouma_NK : NK ;
+fun tunnepatoutuma_NK : NK ;
+fun tunnepera'inen_AK : AK ;
+fun tunnepera'isyys_NK : NK ;
+fun tunnepitoinen_NK : NK ;
+fun tunnepohjainen_NK : NK ;
+fun tunnerekisteri_NK : NK ;
+fun tunneside_NK : NK ;
+fun tunnesisa'lto'_NK : NK ;
+fun tunnesuhde_NK : NK ;
+fun tunnetila_NK : NK ;
+fun tunnevaltainen_NK : NK ;
+fun tunnevamma_NK : NK ;
+fun tunnevammainen_NK : NK ;
+fun tunnevoimainen_NK : NK ;
+fun tunnea'ly_NK : NK ;
+fun tunnistetieto_NK : NK ;
+fun tunnuskirjain_NK : NK ;
+fun tunnuskuva_NK : NK ;
+fun tunnuskuvio_NK : NK ;
+fun tunnuslause_NK : NK ;
+fun tunnuslevy_NK : NK ;
+fun tunnusluku_NK : NK ;
+fun tunnusmajakka_NK : NK ;
+fun tunnusmerkisto'_NK : NK ;
+fun tunnusmerkki_NK : NK ;
+fun tunnusomainen_NK : NK ;
+fun tunnussana_NK : NK ;
+fun tunnussa'vel_NK : NK ;
+fun tunnussa'velma'_NK : NK ;
+fun tunnusteko_NK : NK ;
+fun tunnustuskirja_NK : NK ;
+fun tunnustuspalkinto_NK : NK ;
+fun tunnusvalo_NK : NK ;
+fun tunnusva'ri_NK : NK ;
+fun tunnutusruokinta_NK : NK ;
+fun tuntiansio_NK : NK ;
+fun tuntihotelli_NK : NK ;
+fun tuntijako_NK : NK ;
+fun tuntikehys_NK : NK ;
+fun tuntilasi_NK : NK ;
+fun tuntimaksu_NK : NK ;
+fun tuntima'a'ra'_NK : NK ;
+fun tuntinopeus_NK : NK ;
+fun tuntiopettaja_NK : NK ;
+fun tuntiosoitin_NK : NK ;
+fun tuntipalkka_NK : NK ;
+fun tuntipalkkainen_NK : NK ;
+fun tuntipalkkalainen_NK : NK ;
+fun tuntipalkkio_NK : NK ;
+fun tuntivauhti_NK : NK ;
+fun tuntiviisari_NK : NK ;
+fun tuntoaisti_NK : NK ;
+fun tuntoaistimus_NK : NK ;
+fun tuntoelin_NK : NK ;
+fun tuntohermo_NK : NK ;
+fun tuntokasvi_NK : NK ;
+fun tuntolevy_NK : NK ;
+fun tuntomatto_NK : NK ;
+fun tuntomerkki_NK : NK ;
+fun tuntosarvi_NK : NK ;
+fun tunturialue_NK : NK ;
+fun tunturihaukka_NK : NK ;
+fun tunturihiihto_NK : NK ;
+fun tunturihotelli_NK : NK ;
+fun tunturihuippu_NK : NK ;
+fun tunturijono_NK : NK ;
+fun tunturija'rvi_NK : NK ;
+fun tunturikasvi_NK : NK ;
+fun tunturikihu_NK : NK ;
+fun tunturikiuru_NK : NK ;
+fun tunturikoivu_NK : NK ;
+fun tunturikuru_NK : NK ;
+fun tunturilampi_NK : NK ;
+fun tunturimaisema_NK : NK ;
+fun tunturimaja_NK : NK ;
+fun tunturiopas_NK : NK ;
+fun tunturipaljakka_NK : NK ;
+fun tunturiporo_NK : NK ;
+fun tunturipuro_NK : NK ;
+fun tunturipo'llo'_NK : NK ;
+fun tunturiretkeily_NK : NK ;
+fun tunturiretki_NK : NK ;
+fun tunturisela'nne_NK : NK ;
+fun tunturiseutu_NK : NK ;
+fun tunturisopuli_NK : NK ;
+fun tunturitupa_NK : NK ;
+fun tunturivaellus_NK : NK ;
+fun tunturivyo'hyke_NK : NK ;
+fun tuohikontti_NK : NK ;
+fun tuohikulttuuri_NK : NK ;
+fun tuohika'ppyra'_NK : NK ;
+fun tuohilippi_NK : NK ;
+fun tuohirasia_NK : NK ;
+fun tuohirove_NK : NK ;
+fun tuohitorvi_NK : NK ;
+fun tuohityo'_NK : NK ;
+fun tuohivirsu_NK : NK ;
+fun tuokiokuva_NK : NK ;
+fun tuoksuaine_NK : NK ;
+fun tuoksuherne_NK : NK ;
+fun tuoksukynttila'_NK : NK ;
+fun tuoksuko'ynno's_NK : NK ;
+fun tuoksuorvokki_NK : NK ;
+fun tuoksusaunio_NK : NK ;
+fun tuoksuvatukka_NK : NK ;
+fun tuolihissi_NK : NK ;
+fun tuolirivi_NK : NK ;
+fun tuomari_NK : NK ;
+fun tuomariha'vio'_NK : NK ;
+fun tuomaripallo_NK : NK ;
+fun tuomaripeli_NK : NK ;
+fun tuomaripiste_NK : NK ;
+fun tuomaritappio_NK : NK ;
+fun tuomaritorni_NK : NK ;
+fun tuomarivirhe_NK : NK ;
+fun tuomaria'a'ni_NK : NK ;
+fun tuomikirva_NK : NK ;
+fun tuomioistuin_NK : NK ;
+fun tuomioistuinasia_NK : NK ;
+fun tuomioistuinlaitos_NK : NK ;
+fun tuomioistuinmenettely_NK : NK ;
+fun tuomiokapituli_NK : NK ;
+fun tuomiokirkko_NK : NK ;
+fun tuomiopiiri_NK : NK ;
+fun tuomiopa'iva'_NK : NK ;
+fun tuomiorovasti_NK : NK ;
+fun tuomiosunnuntai_NK : NK ;
+fun tuomiovalta_NK : NK ;
+fun tuomiovirhe_NK : NK ;
+fun tuomipihlaja_NK : NK ;
+fun tuontiartikkeli_NK : NK ;
+fun tuontihinta_NK : NK ;
+fun tuontikauppa_NK : NK ;
+fun tuontikielto_NK : NK ;
+fun tuontikiintio'_NK : NK ;
+fun tuontiliha_NK : NK ;
+fun tuontiliike_NK : NK ;
+fun tuontilisenssi_NK : NK ;
+fun tuontilupa_NK : NK ;
+fun tuontimaksu_NK : NK ;
+fun tuontirajoitus_NK : NK ;
+fun tuontitavara_NK : NK ;
+fun tuontivero_NK : NK ;
+fun tuontivilja_NK : NK ;
+fun tuontivoittoinen_NK : NK ;
+fun tuoremehuasema_NK : NK ;
+fun tuotantohaara_NK : NK ;
+fun tuotantohinta_NK : NK ;
+fun tuotantohuippu_NK : NK ;
+fun tuotantohyo'dyke_NK : NK ;
+fun tuotantojalostus_NK : NK ;
+fun tuotantokatto_NK : NK ;
+fun tuotantokausi_NK : NK ;
+fun tuotantoketju_NK : NK ;
+fun tuotantokoneisto_NK : NK ;
+fun tuotantokustannus_NK : NK ;
+fun tuotantokustannushinta_NK : NK ;
+fun tuotantokyky_NK : NK ;
+fun tuotantokykyinen_NK : NK ;
+fun tuotantokyvyto'n_NK : NK ;
+fun tuotantolaitos_NK : NK ;
+fun tuotantolinja_NK : NK ;
+fun tuotantopalkkio_NK : NK ;
+fun tuotantoprosessi_NK : NK ;
+fun tuotantopa'a'llikko'_NK : NK ;
+fun tuotantorajoitus_NK : NK ;
+fun tuotantorakennus_NK : NK ;
+fun tuotantosuunta_NK : NK ;
+fun tuotantotavoite_NK : NK ;
+fun tuotantoteho_NK : NK ;
+fun tuotantotekniikka_NK : NK ;
+fun tuotantova'line_NK : NK ;
+fun tuoteidea_NK : NK ;
+fun tuotekehittely_NK : NK ;
+fun tuotekehitys_NK : NK ;
+fun tuotekehitystyo'_NK : NK ;
+fun tuotekuva_NK : NK ;
+fun tuotemerkki_NK : NK ;
+fun tuotenimi_NK : NK ;
+fun tuotepakkaus_NK : NK ;
+fun tuoteperhe_NK : NK ;
+fun tuoteseloste_NK : NK ;
+fun tuotetieto_NK : NK ;
+fun tuotevahinko_NK : NK ;
+fun tuotevalikoima_NK : NK ;
+fun tuotevastuu_NK : NK ;
+fun tuottajahinta_NK : NK ;
+fun tuottoarvo_NK : NK ;
+fun tuottokyky_NK : NK ;
+fun tupajumi_NK : NK ;
+fun tupaja'a'ra'_NK : NK ;
+fun tupakeittio'_NK : NK ;
+fun tupakkahuone_NK : NK ;
+fun tupakkakauppa_NK : NK ;
+fun tupakkakukkaro_NK : NK ;
+fun tupakkalakko_NK : NK ;
+fun tupakkamassi_NK : NK ;
+fun tupakkamies_NK : NK ;
+fun tupakkaosasto_NK : NK ;
+fun tupakkapuoli_NK : NK ;
+fun tupakkapo'yta'_NK : NK ;
+fun tupakkarasia_NK : NK ;
+fun tupakkatauko_NK : NK ;
+fun tupakkatauti_NK : NK ;
+fun tupakkatehdas_NK : NK ;
+fun tupakkateollisuus_NK : NK ;
+fun tupakkavalmiste_NK : NK ;
+fun tupakkavaunu_NK : NK ;
+fun tupakkaviljelys_NK : NK ;
+fun tupakkayska'_NK : NK ;
+fun tupapalvelija_NK : NK ;
+fun tupapalvelus_NK : NK ;
+fun tupasluikka_NK : NK ;
+fun tupasvilla_NK : NK ;
+fun tupasvillakuitu_NK : NK ;
+fun tupatarkastus_NK : NK ;
+fun tuplahinta_NK : NK ;
+fun tuplapeite_NK : NK ;
+fun tuplavahinko_NK : NK ;
+fun tuponeuvottelu_NK : NK ;
+fun tuporatkaisu_NK : NK ;
+fun tuppilohame_NK : NK ;
+fun tuppipuukko_NK : NK ;
+fun tuppisieni_NK : NK ;
+fun tuppisuu_NK : NK ;
+fun tupsukorva_NK : NK ;
+fun tupsukorvainen_NK : NK ;
+fun tupsulakki_NK : NK ;
+fun tupsulakkinen_NK : NK ;
+fun tupsupa'inen_NK : NK ;
+fun tupsupa'a'_NK : NK ;
+fun turbaanipa'inen_NK : NK ;
+fun turbiiniakseli_NK : NK ;
+fun turbiinialus_NK : NK ;
+fun turbiinika'ytto'inen_NK : NK ;
+fun turboahdin_NK : NK ;
+fun turbomoottori_NK : NK ;
+fun turhamainen_AK : AK ;
+fun turistihotelli_NK : NK ;
+fun turisti_informaatiotaulu_NK : NK ;
+fun turistikausi_NK : NK ;
+fun turistikeskus_NK : NK ;
+fun turistikohde_NK : NK ;
+fun turistilauma_NK : NK ;
+fun turistiluokka_NK : NK ;
+fun turistimatka_NK : NK ;
+fun turistimatkailu_NK : NK ;
+fun turistiopas_NK : NK ;
+fun turistipappi_NK : NK ;
+fun turistipyydys_NK : NK ;
+fun turistiripuli_NK : NK ;
+fun turistirysa'_NK : NK ;
+fun turistiviisumi_NK : NK ;
+fun turkisela'in_NK : NK ;
+fun turkishattu_NK : NK ;
+fun turkishylje_NK : NK ;
+fun turkisjakku_NK : NK ;
+fun turkisja'ljitelma'_NK : NK ;
+fun turkiskuoriainen_NK : NK ;
+fun turkislakki_NK : NK ;
+fun turkisliike_NK : NK ;
+fun turkisliivi_NK : NK ;
+fun turkismetsa'sta'ja'_NK : NK ;
+fun turkistalous_NK : NK ;
+fun turkistarha_NK : NK ;
+fun turkistarhaaja_NK : NK ;
+fun turkistarhaus_NK : NK ;
+fun turkistarhuri_NK : NK ;
+fun turkistuote_NK : NK ;
+fun turkistuottaja_NK : NK ;
+fun turkkilainen_NK : NK ;
+fun turkkiliivi_NK : NK ;
+fun turmakone_NK : NK ;
+fun turmapaikka_NK : NK ;
+fun turmariipunta_NK : NK ;
+fun turnipsipelto_NK : NK ;
+fun turpaho'yla'_NK : NK ;
+fun turpajouhi_NK : NK ;
+fun turpakarva_NK : NK ;
+--? fun turpaka'ra'ja't_NK : NK ;
+fun turparengas_NK : NK ;
+fun turpava'rkki_NK : NK ;
+fun turskakala_NK : NK ;
+fun turvaistuin_NK : NK ;
+fun turvajoukko_NK : NK ;
+fun turvakaari_NK : NK ;
+fun turvakehys_NK : NK ;
+fun turvakenka'_NK : NK ;
+fun turvakokous_NK : NK ;
+fun turvakorkki_NK : NK ;
+fun turvakoti_NK : NK ;
+fun turvaka'sine_NK : NK ;
+fun turvalaite_NK : NK ;
+fun turvaliivi_NK : NK ;
+fun turvallisuuskokous_NK : NK ;
+fun turvallisuusmies_NK : NK ;
+fun turvallisuusma'a'ra'ys_NK : NK ;
+fun turvallisuusneuvosto_NK : NK ;
+fun turvallisuuspalvelu_NK : NK ;
+fun turvallisuuspoliisi_NK : NK ;
+fun turvallisuuspolitiikka_NK : NK ;
+fun turvallisuusriski_NK : NK ;
+fun turvallisuustyo'_NK : NK ;
+fun turvallisuusva'li_NK : NK ;
+fun turvalukko_NK : NK ;
+fun turvamerkinta'_NK : NK ;
+fun turvamies_NK : NK ;
+fun turvaneuvosto_NK : NK ;
+fun turvaohjaamo_NK : NK ;
+fun turvapaikka_NK : NK ;
+fun turvapaikkaoikeus_NK : NK ;
+fun turvapalvelu_NK : NK ;
+fun turvaportti_NK : NK ;
+fun turvapuhelin_NK : NK ;
+fun turvariski_NK : NK ;
+fun turvaseksi_NK : NK ;
+fun turvasa'ilo'_NK : NK ;
+fun turvatarkastus_NK : NK ;
+fun turvatekniikka_NK : NK ;
+fun turvatoimi_NK : NK ;
+fun turvatyyny_NK : NK ;
+--? fun turvavaljaat_NK : NK ;
+fun turvavarasto_NK : NK ;
+fun turvaverkko_NK : NK ;
+fun turvaviiri_NK : NK ;
+fun turvavyo'_NK : NK ;
+fun turvavyo'pakko_NK : NK ;
+fun turvava'li_NK : NK ;
+fun turvealusta_NK : NK ;
+fun turvebriketti_NK : NK ;
+fun turvekangas_NK : NK ;
+fun turvekatto_NK : NK ;
+fun turvekattoinen_NK : NK ;
+fun turvekerros_NK : NK ;
+fun turvekerrostuma_NK : NK ;
+fun turvekoksi_NK : NK ;
+fun turvekuitu_NK : NK ;
+fun turvekylpy_NK : NK ;
+fun turvelaji_NK : NK ;
+fun turvelevy_NK : NK ;
+fun turvela'mmitys_NK : NK ;
+fun turvenuija_NK : NK ;
+fun turvepehku_NK : NK ;
+fun turvepelletti_NK : NK ;
+fun turveruukku_NK : NK ;
+fun turvesuo_NK : NK ;
+fun turveteollisuus_NK : NK ;
+fun turveviljely_NK : NK ;
+fun turvevoimala_NK : NK ;
+fun tusinakirjailija_NK : NK ;
+fun tusinataiteilija_NK : NK ;
+fun tusinatavara_NK : NK ;
+fun tusinatuote_NK : NK ;
+fun tusinatyo'_NK : NK ;
+fun tuskaneuroosi_NK : NK ;
+fun tuskatila_NK : NK ;
+fun tussikyna'_NK : NK ;
+fun tussipiirrin_NK : NK ;
+fun tussipiirros_NK : NK ;
+fun tussipiirustus_NK : NK ;
+fun tussitaulu_NK : NK ;
+fun tussityo'_NK : NK ;
+fun tutkaheijastin_NK : NK ;
+fun tutkakatve_NK : NK ;
+fun tutkakuva_NK : NK ;
+fun tutkasa'de_NK : NK ;
+fun tutkavalvonta_NK : NK ;
+fun tutkaverkko_NK : NK ;
+fun tutkijakoulutus_NK : NK ;
+fun tutkijaryhma'_NK : NK ;
+fun tutkijatohtori_NK : NK ;
+fun tutkimusaihe_NK : NK ;
+fun tutkimusaineisto_NK : NK ;
+fun tutkimusalue_NK : NK ;
+fun tutkimusapulainen_NK : NK ;
+fun tutkimusasema_NK : NK ;
+fun tutkimusavustaja_NK : NK ;
+fun tutkimuskentta'_NK : NK ;
+fun tutkimuskeskus_NK : NK ;
+fun tutkimuskohde_NK : NK ;
+fun tutkimuslaitos_NK : NK ;
+fun tutkimusmateriaali_NK : NK ;
+fun tutkimusmatka_NK : NK ;
+fun tutkimusmatkailija_NK : NK ;
+fun tutkimusmenetelma'_NK : NK ;
+fun tutkimusmetodi_NK : NK ;
+fun tutkimusmetodiikka_NK : NK ;
+fun tutkimusohjelma_NK : NK ;
+fun tutkimusosasto_NK : NK ;
+fun tutkimuspo'yta'_NK : NK ;
+fun tutkimuspo'yta'kirja_NK : NK ;
+fun tutkimusraportti_NK : NK ;
+fun tutkimusretki_NK : NK ;
+fun tutkimusretkikunta_NK : NK ;
+fun tutkimusryhma'_NK : NK ;
+fun tutkimussarja_NK : NK ;
+fun tutkimusselostus_NK : NK ;
+fun tutkimustulos_NK : NK ;
+fun tutkimustyo'_NK : NK ;
+fun tutkimusva'line_NK : NK ;
+fun tutkintamenettely_NK : NK ;
+fun tutkintavanki_NK : NK ;
+fun tutkintotodistus_NK : NK ;
+fun tutkintovaatimus_NK : NK ;
+fun tuttavaperhe_NK : NK ;
+fun tuttavapiiri_NK : NK ;
+fun tuttavuussuhde_NK : NK ;
+fun tuttipullo_NK : NK ;
+fun tuubiva'ri_NK : NK ;
+fun tuuheakulmainen_NK : NK ;
+fun tuuhealatvainen_NK : NK ;
+fun tuuhealehtinen_NK : NK ;
+fun tuuhealehva'inen_NK : NK ;
+fun tuuheapartainen_NK : NK ;
+fun tuuheatukkainen_NK : NK ;
+fun tuuheaturkkinen_NK : NK ;
+fun tuuheavillainen_NK : NK ;
+fun tuulastuli_NK : NK ;
+fun tuulensulkulevy_NK : NK ;
+fun tuulensulkupaperi_NK : NK ;
+fun tuuletusaukko_NK : NK ;
+fun tuuletusikkuna_NK : NK ;
+fun tuuletusluukku_NK : NK ;
+fun tuuletusparveke_NK : NK ;
+fun tuulienergia_NK : NK ;
+fun tuulihaka_NK : NK ;
+fun tuulihattu_NK : NK ;
+fun tuulihaukka_NK : NK ;
+fun tuulikaappi_NK : NK ;
+fun tuulikangas_NK : NK ;
+fun tuulikankainen_NK : NK ;
+fun tuulikannel_NK : NK ;
+fun tuulikantele_NK : NK ;
+fun tuulikartta_NK : NK ;
+fun tuulikorjaus_NK : NK ;
+fun tuulikuorma_NK : NK ;
+fun tuulikuormitus_NK : NK ;
+fun tuulilasi_NK : NK ;
+fun tuulilauta_NK : NK ;
+fun tuulimittari_NK : NK ;
+fun tuulimoottori_NK : NK ;
+fun tuulimuna_NK : NK ;
+fun tuulimylly_NK : NK ;
+fun tuulipoikkeama_NK : NK ;
+fun tuulipuku_NK : NK ;
+fun tuulipusero_NK : NK ;
+fun tuulipussi_NK : NK ;
+fun tuulipo'lytys_NK : NK ;
+fun tuuliruusu_NK : NK ;
+fun tuulisa'hko'_NK : NK ;
+fun tuulitakki_NK : NK ;
+fun tuulitunneli_NK : NK ;
+fun tuulitunnelikoe_NK : NK ;
+fun tuuliviiri_NK : NK ;
+fun tuulivoima_NK : NK ;
+fun tuulivoimala_NK : NK ;
+fun tuulivyo'hyke_NK : NK ;
+fun tuumamitoitus_NK : NK ;
+fun tuumamitta_NK : NK ;
+fun tuumaustauko_NK : NK ;
+fun tuurijuoppo_NK : NK ;
+fun tuurijuoppous_NK : NK ;
+fun tuurityo'_NK : NK ;
+fun tuuttaus_NK : NK ;
+fun tweedhame_NK : NK ;
+fun tweedkangas_NK : NK ;
+fun tweedkankainen_NK : NK ;
+fun tweedtakki_NK : NK ;
+fun twistnaru_NK : NK ;
+fun tyhjennysharjoitus_NK : NK ;
+fun tyhjennysmyynti_NK : NK ;
+fun tyhjennyspumppu_NK : NK ;
+fun tyhjennysventtiili_NK : NK ;
+fun tyhjio'kuivaus_NK : NK ;
+fun tyhjio'kypsennys_NK : NK ;
+fun tyhjio'pakkaus_NK : NK ;
+fun tyhjio'pumppu_NK : NK ;
+fun tyhja'pa'inen_NK : NK ;
+fun tykisto'ammunta_NK : NK ;
+fun tykisto'asema_NK : NK ;
+fun tykisto'keskitys_NK : NK ;
+fun tykisto'patteri_NK : NK ;
+fun tykisto'tuli_NK : NK ;
+fun tykisto'upseeri_NK : NK ;
+fun tykisto'valmistelu_NK : NK ;
+fun tykkilumi_NK : NK ;
+fun tykkimies_NK : NK ;
+fun tykkimyssy_NK : NK ;
+fun tykkipatteri_NK : NK ;
+fun tykkitorni_NK : NK ;
+fun tykkituli_NK : NK ;
+fun tykkivene_NK : NK ;
+fun tykkivenediplomatia_NK : NK ;
+fun tykkylumi_NK : NK ;
+fun tylliharso_NK : NK ;
+fun tyllihuntu_NK : NK ;
+fun tyllipitsi_NK : NK ;
+fun tylliunelma_NK : NK ;
+fun tylppa'kulmainen_NK : NK ;
+fun tylppa'kuonoinen_NK : NK ;
+fun tylppa'ka'rkinen_NK : NK ;
+fun tylppa'pa'inen_NK : NK ;
+fun tylsa'ja'rkinen_NK : NK ;
+fun tylsa'ka'rkinen_NK : NK ;
+fun tylsa'mielisyys_NK : NK ;
+fun tynka'kokous_NK : NK ;
+fun tynnyriholvi_NK : NK ;
+fun tynnyrilauta_NK : NK ;
+--? fun tynnyriolut_NK : NK ;
+fun tynnyrisauna_NK : NK ;
+fun typensitojabakteeri_NK : NK ;
+fun typpibakteeri_NK : NK ;
+fun typpihappo_NK : NK ;
+fun typpilannoite_NK : NK ;
+fun typpilannoitus_NK : NK ;
+fun typpipitoinen_NK : NK ;
+fun typpiyhdiste_NK : NK ;
+fun typa'ska'a'pa'_NK : NK ;
+fun typo'tyhja'_NK : NK ;
+fun tyrannilisko_NK : NK ;
+fun tyrannimainen_AK : AK ;
+fun tyrma'ysha'vio'_NK : NK ;
+fun tyrma'ysisku_NK : NK ;
+fun tyrma'ystippa_NK : NK ;
+fun tyrma'ysvoitto_NK : NK ;
+fun tyrnimarja_NK : NK ;
+fun tyrnimehu_NK : NK ;
+fun tyrnipensas_NK : NK ;
+fun tyrskyaallokko_NK : NK ;
+fun tyrskyaalto_NK : NK ;
+fun tyrskykalastus_NK : NK ;
+fun tytto'aikainen_NK : NK ;
+fun tytto'energia_NK : NK ;
+fun tytto'hupakko_NK : NK ;
+fun tytto'ihminen_NK : NK ;
+fun tytto'ika'_NK : NK ;
+fun tytto'joukko_NK : NK ;
+fun tytto'joukkue_NK : NK ;
+fun tytto'kalenteri_NK : NK ;
+fun tytto'kerho_NK : NK ;
+fun tytto'kerholainen_NK : NK ;
+fun tytto'kirja_NK : NK ;
+fun tytto'kissa_NK : NK ;
+fun tytto'koira_NK : NK ;
+fun tytto'koti_NK : NK ;
+fun tytto'koulu_NK : NK ;
+fun tytto'koululainen_NK : NK ;
+fun tytto'kuoro_NK : NK ;
+fun tytto'lapsi_NK : NK ;
+fun tytto'lukio_NK : NK ;
+fun tytto'luokka_NK : NK ;
+fun tytto'lyseo_NK : NK ;
+fun tytto'nimi_NK : NK ;
+fun tytto'oppilas_NK : NK ;
+fun tytto'paikka_NK : NK ;
+fun tytto'parka_NK : NK ;
+fun tytto'romaani_NK : NK ;
+fun tytto'seura_NK : NK ;
+fun tytto'vauva_NK : NK ;
+fun tytto'ysta'va'_NK : NK ;
+fun tyta'rkieli_NK : NK ;
+fun tyta'rpuoli_NK : NK ;
+fun tyta'rsolu_NK : NK ;
+fun tyta'ryhtio'_NK : NK ;
+fun tyta'ryritys_NK : NK ;
+fun tyvipuoli_NK : NK ;
+fun tyvipa'a'_NK : NK ;
+fun tyvisolu_NK : NK ;
+fun tyvisolukerros_NK : NK ;
+fun tyvisolusyo'pa'_NK : NK ;
+fun tyvitauti_NK : NK ;
+fun tyvivesa_NK : NK ;
+fun tyylianalyysi_NK : NK ;
+fun tyylikaluste_NK : NK ;
+fun tyylikalusto_NK : NK ;
+fun tyylikausi_NK : NK ;
+fun tyylikeino_NK : NK ;
+fun tyylilaji_NK : NK ;
+fun tyylina'yte_NK : NK ;
+fun tyyliopillinen_NK : NK ;
+fun tyylioppi_NK : NK ;
+fun tyylipiste_NK : NK ;
+fun tyylipuhdas_NK : NK ;
+fun tyylirikko_NK : NK ;
+fun tyyliseikka_NK : NK ;
+fun tyylisuunta_NK : NK ;
+fun tyylitaju_NK : NK ;
+fun tyylivirhe_NK : NK ;
+fun tyynyliina_NK : NK ;
+fun tyyppiarvo_NK : NK ;
+fun tyyppihyva'ksynta'_NK : NK ;
+fun tyyppikatsastus_NK : NK ;
+fun tyyppioppi_NK : NK ;
+fun tyyppitalo_NK : NK ;
+fun tyo'aikakello_NK : NK ;
+fun tyo'ansio_NK : NK ;
+fun tyo'apu_NK : NK ;
+fun tyo'ase_NK : NK ;
+fun tyo'asema_NK : NK ;
+fun tyo'asento_NK : NK ;
+fun tyo'asia_NK : NK ;
+fun tyo'asiamies_NK : NK ;
+fun tyo'asu_NK : NK ;
+fun tyo'ehto_NK : NK ;
+fun tyo'ehtosopimus_NK : NK ;
+fun tyo'ela'ke_NK : NK ;
+fun tyo'ela'ma'_NK : NK ;
+fun tyo'este_NK : NK ;
+fun tyo'haalari_NK : NK ;
+fun tyo'hakemus_NK : NK ;
+fun tyo'historia_NK : NK ;
+fun tyo'hullu_NK : NK ;
+fun tyo'huone_NK : NK ;
+fun tyo'huonekunta_NK : NK ;
+fun tyo'hygienia_NK : NK ;
+fun tyo'hypoteesi_NK : NK ;
+fun tyo'ha'vio'_NK : NK ;
+fun tyo'ihminen_NK : NK ;
+fun tyo'ika'_NK : NK ;
+fun tyo'ika'inen_NK : NK ;
+fun tyo'ilmasto_NK : NK ;
+fun tyo'into_NK : NK ;
+fun tyo'jakso_NK : NK ;
+fun tyo'juhta_NK : NK ;
+fun tyo'ja'rjestys_NK : NK ;
+fun tyo'ja'rjesto'_NK : NK ;
+fun tyo'kalu_NK : NK ;
+fun tyo'kalukaappi_NK : NK ;
+fun tyo'kalulaatikko_NK : NK ;
+fun tyo'kalulaukku_NK : NK ;
+fun tyo'kalupakki_NK : NK ;
+fun tyo'kalusarja_NK : NK ;
+fun tyo'kalutera's_NK : NK ;
+fun tyo'kaluvaja_NK : NK ;
+fun tyo'kansa_NK : NK ;
+fun tyo'kappale_NK : NK ;
+fun tyo'kausi_NK : NK ;
+fun tyo'kaveri_NK : NK ;
+fun tyo'kentta'_NK : NK ;
+fun tyo'keskus_NK : NK ;
+fun tyo'keskusliike_NK : NK ;
+fun tyo'kieli_NK : NK ;
+fun tyo'kierto_NK : NK ;
+fun tyo'kiire_NK : NK ;
+fun tyo'kimalainen_NK : NK ;
+fun tyo'kirja_NK : NK ;
+fun tyo'kohde_NK : NK ;
+fun tyo'kohtainen_NK : NK ;
+fun tyo'kokemus_NK : NK ;
+fun tyo'kokous_NK : NK ;
+fun tyo'komennus_NK : NK ;
+fun tyo'komennuskunta_NK : NK ;
+fun tyo'kone_NK : NK ;
+fun tyo'kunta_NK : NK ;
+fun tyo'kunto_NK : NK ;
+fun tyo'kuntoinen_NK : NK ;
+fun tyo'kustannus_NK : NK ;
+fun tyo'kyky_NK : NK ;
+fun tyo'kykyinen_NK : NK ;
+fun tyo'kykyisyys_NK : NK ;
+fun tyo'kyvytto'myysaste_NK : NK ;
+fun tyo'kyvytto'myysela'ke_NK : NK ;
+fun tyo'kyvytto'myyspa'iva'_NK : NK ;
+fun tyo'kyvyto'n_NK : NK ;
+fun tyo'ka'sine_NK : NK ;
+fun tyo'laulu_NK : NK ;
+fun tyo'leiri_NK : NK ;
+fun tyo'leveys_NK : NK ;
+fun tyo'liike_NK : NK ;
+fun tyo'lista_NK : NK ;
+fun tyo'llisyysaste_NK : NK ;
+fun tyo'llisyyskoulutus_NK : NK ;
+fun tyo'llisyyskurssi_NK : NK ;
+fun tyo'llisyyslaina_NK : NK ;
+fun tyo'llisyyspolitiikka_NK : NK ;
+fun tyo'llisyystilanne_NK : NK ;
+fun tyo'llisyystyo'_NK : NK ;
+fun tyo'lupa_NK : NK ;
+fun tyo'maa_NK : NK ;
+fun tyo'maajuopottelu_NK : NK ;
+fun tyo'maakokous_NK : NK ;
+fun tyo'maakoppi_NK : NK ;
+fun tyo'maaparakki_NK : NK ;
+fun tyo'maaruokala_NK : NK ;
+fun tyo'maaterrori_NK : NK ;
+fun tyo'maatulkki_NK : NK ;
+--? fun tyo'markkinat_NK : NK ;
+fun tyo'matka_NK : NK ;
+fun tyo'matkalainen_NK : NK ;
+fun tyo'mehila'inen_NK : NK ;
+fun tyo'menetelma'_NK : NK ;
+fun tyo'mies_NK : NK ;
+fun tyo'ministeri_NK : NK ;
+fun tyo'ministerio'_NK : NK ;
+fun tyo'moraali_NK : NK ;
+fun tyo'myyra'_NK : NK ;
+fun tyo'ma'a'ra'_NK : NK ;
+fun tyo'ma'a'ra'raha_NK : NK ;
+fun tyo'ma'a'ra'ys_NK : NK ;
+fun tyo'nantajaja'rjesto'_NK : NK ;
+fun tyo'nantajapuoli_NK : NK ;
+fun tyo'narkomaani_NK : NK ;
+fun tyo'nimi_NK : NK ;
+fun tyo'normi_NK : NK ;
+fun tyo'ntekija'ja'rjesto'_NK : NK ;
+fun tyo'nto'alus_NK : NK ;
+fun tyo'nto'mitta_NK : NK ;
+fun tyo'nto'saha_NK : NK ;
+fun tyo'nto'salpa_NK : NK ;
+fun tyo'nto'tulkki_NK : NK ;
+fun tyo'nto'voima_NK : NK ;
+fun tyo'nva'litystoimisto_NK : NK ;
+fun tyo'na'ky_NK : NK ;
+fun tyo'na'yte_NK : NK ;
+fun tyo'ohje_NK : NK ;
+fun tyo'ohjelma_NK : NK ;
+fun tyo'oikeus_NK : NK ;
+fun tyo'osuus_NK : NK ;
+fun tyo'paikka_NK : NK ;
+fun tyo'paikkademokratia_NK : NK ;
+fun tyo'paikkahenki_NK : NK ;
+fun tyo'paikkailmoitus_NK : NK ;
+fun tyo'paikkakiusaaja_NK : NK ;
+fun tyo'paikkakoulutus_NK : NK ;
+fun tyo'paikkaliikunta_NK : NK ;
+fun tyo'paikkala'a'ka'ri_NK : NK ;
+fun tyo'paikkamusiikki_NK : NK ;
+fun tyo'paikkarakkaus_NK : NK ;
+fun tyo'paikkaruokailu_NK : NK ;
+fun tyo'paikkaruokala_NK : NK ;
+fun tyo'paikkasyrjinta'_NK : NK ;
+fun tyo'paikkatupakointi_NK : NK ;
+fun tyo'paine_NK : NK ;
+fun tyo'paja_NK : NK ;
+fun tyo'pakko_NK : NK ;
+fun tyo'palkka_NK : NK ;
+fun tyo'palvelu_NK : NK ;
+fun tyo'palvelus_NK : NK ;
+fun tyo'panos_NK : NK ;
+fun tyo'pera'inen_NK : NK ;
+fun tyo'pera'isyys_NK : NK ;
+fun tyo'piirustus_NK : NK ;
+fun tyo'pinta_NK : NK ;
+fun tyo'piste_NK : NK ;
+fun tyo'pituus_NK : NK ;
+fun tyo'prosessi_NK : NK ;
+fun tyo'psykologia_NK : NK ;
+fun tyo'puku_NK : NK ;
+fun tyo'pusero_NK : NK ;
+fun tyo'putki_NK : NK ;
+fun tyo'pa'iva'_NK : NK ;
+fun tyo'pa'a'llikko'_NK : NK ;
+fun tyo'po'yta'_NK : NK ;
+fun tyo'rasitus_NK : NK ;
+fun tyo'rauha_NK : NK ;
+fun tyo'rauhavelvoite_NK : NK ;
+fun tyo'riita_NK : NK ;
+fun tyo'rikos_NK : NK ;
+fun tyo'rukkanen_NK : NK ;
+fun tyo'rupeama_NK : NK ;
+fun tyo'ruuhka_NK : NK ;
+fun tyo'ryhma'_NK : NK ;
+fun tyo'rytmi_NK : NK ;
+fun tyo'saavutus_NK : NK ;
+fun tyo'sarka_NK : NK ;
+fun tyo'selite_NK : NK ;
+fun tyo'selitys_NK : NK ;
+fun tyo'selkkaus_NK : NK ;
+fun tyo'siirtola_NK : NK ;
+fun tyo'skentelykorkeus_NK : NK ;
+fun tyo'skentelypaikka_NK : NK ;
+fun tyo'skentelytapa_NK : NK ;
+fun tyo'skentelytila_NK : NK ;
+fun tyo'sopimus_NK : NK ;
+fun tyo'sopimussuhde_NK : NK ;
+fun tyo'sopimussuhteinen_NK : NK ;
+fun tyo'sto'kone_NK : NK ;
+fun tyo'sto'pinta_NK : NK ;
+fun tyo'suhde_NK : NK ;
+fun tyo'suhdeasunto_NK : NK ;
+fun tyo'suhdeauto_NK : NK ;
+fun tyo'suhdekeksinto'_NK : NK ;
+fun tyo'suhdeturva_NK : NK ;
+fun tyo'suhteinen_NK : NK ;
+fun tyo'sulku_NK : NK ;
+fun tyo'suojelu_NK : NK ;
+fun tyo'suojelupa'a'llikko'_NK : NK ;
+fun tyo'suoritus_NK : NK ;
+fun tyo'syvyys_NK : NK ;
+fun tyo'taakka_NK : NK ;
+fun tyo'tahti_NK : NK ;
+fun tyo'taistelu_NK : NK ;
+fun tyo'taistelurahasto_NK : NK ;
+fun tyo'taistelutoimi_NK : NK ;
+fun tyo'takki_NK : NK ;
+fun tyo'tapa_NK : NK ;
+fun tyo'tapaturma_NK : NK ;
+fun tyo'tarmo_NK : NK ;
+fun tyo'tarvike_NK : NK ;
+fun tyo'taso_NK : NK ;
+fun tyo'tauko_NK : NK ;
+fun tyo'teho_NK : NK ;
+fun tyo'tehta'va'_NK : NK ;
+fun tyo'tempo_NK : NK ;
+fun tyo'terapeutti_NK : NK ;
+fun tyo'terapia_NK : NK ;
+fun tyo'terveys_NK : NK ;
+fun tyo'terveysasema_NK : NK ;
+fun tyo'terveyshoitaja_NK : NK ;
+fun tyo'terveyshuolto_NK : NK ;
+fun tyo'terveysla'a'ka'ri_NK : NK ;
+fun tyo'tila_NK : NK ;
+fun tyo'tilaisuus_NK : NK ;
+fun tyo'tilanne_NK : NK ;
+fun tyo'todistus_NK : NK ;
+fun tyo'toveri_NK : NK ;
+--? fun tyo'toverukset_NK : NK ;
+fun tyo'toveruus_NK : NK ;
+fun tyo'tto'myysaste_NK : NK ;
+fun tyo'tto'myysavustus_NK : NK ;
+fun tyo'tto'myysela'ke_NK : NK ;
+fun tyo'tto'myyskausi_NK : NK ;
+fun tyo'tto'myyskortisto_NK : NK ;
+fun tyo'tto'myyskorvaus_NK : NK ;
+fun tyo'tto'myyspa'iva'_NK : NK ;
+fun tyo'tto'myyspa'iva'raha_NK : NK ;
+fun tyo'tto'myystilasto_NK : NK ;
+fun tyo'tto'myysturva_NK : NK ;
+fun tyo'tto'myystyo'_NK : NK ;
+fun tyo'tto'myysvakuutus_NK : NK ;
+fun tyo'tulo_NK : NK ;
+fun tyo'tulos_NK : NK ;
+fun tyo'tunti_NK : NK ;
+fun tyo'tuoli_NK : NK ;
+fun tyo'tupa_NK : NK ;
+fun tyo'turma_NK : NK ;
+fun tyo'ura_NK : NK ;
+fun tyo'urakka_NK : NK ;
+fun tyo'uupumus_NK : NK ;
+fun tyo'vaate_NK : NK ;
+fun tyo'vaihe_NK : NK ;
+fun tyo'valaisin_NK : NK ;
+fun tyo'valaistus_NK : NK ;
+fun tyo'valtainen_NK : NK ;
+fun tyo'vara_NK : NK ;
+fun tyo'vauhti_NK : NK ;
+fun tyo'vierailu_NK : NK ;
+fun tyo'viihtyvyys_NK : NK ;
+fun tyo'viikko_NK : NK ;
+fun tyo'vire_NK : NK ;
+fun tyo'voima_NK : NK ;
+fun tyo'voimakeskus_NK : NK ;
+fun tyo'voimakustannus_NK : NK ;
+fun tyo'voimaministeri_NK : NK ;
+fun tyo'voimaministerio'_NK : NK ;
+fun tyo'voimapolitiikka_NK : NK ;
+fun tyo'voimareservi_NK : NK ;
+fun tyo'voimatoimisto_NK : NK ;
+fun tyo'voimavaltainen_NK : NK ;
+fun tyo'voitto_NK : NK ;
+fun tyo'vuoro_NK : NK ;
+fun tyo'vuosi_NK : NK ;
+fun tyo'va'esto'_NK : NK ;
+fun tyo'va'ki_NK : NK ;
+fun tyo'va'line_NK : NK ;
+fun tyo'va'symys_NK : NK ;
+fun tyo'yhteiso'_NK : NK ;
+fun tyo'yksikko'_NK : NK ;
+fun tyo'ympa'risto'_NK : NK ;
+fun ta'hdenlento_NK : NK ;
+fun ta'hdenva'li_NK : NK ;
+fun ta'hka'pa'inen_NK : NK ;
+fun ta'hka'pa'a'_NK : NK ;
+fun ta'htihedelma'_NK : NK ;
+fun ta'htiholvi_NK : NK ;
+fun ta'htijoukko_NK : NK ;
+fun ta'htikartta_NK : NK ;
+fun ta'htikirkas_NK : NK ;
+fun ta'htikultti_NK : NK ;
+fun ta'htikuvio_NK : NK ;
+fun ta'htilippu_NK : NK ;
+fun ta'htiluettelo_NK : NK ;
+fun ta'htiluokka_NK : NK ;
+fun ta'htimannekiini_NK : NK ;
+fun ta'htimerkki_NK : NK ;
+fun ta'htimoottori_NK : NK ;
+fun ta'htiparvi_NK : NK ;
+fun ta'htipelaaja_NK : NK ;
+fun ta'htipoika_NK : NK ;
+fun ta'htisade_NK : NK ;
+fun ta'htisadetikku_NK : NK ;
+fun ta'htisikerma'_NK : NK ;
+fun ta'htisilma'_NK : NK ;
+fun ta'htisilma'inen_NK : NK ;
+fun ta'htisipuli_NK : NK ;
+fun ta'htisumu_NK : NK ;
+fun ta'htitaivas_NK : NK ;
+fun ta'htitalvikki_NK : NK ;
+fun ta'htitarha_NK : NK ;
+fun ta'htitiede_NK : NK ;
+fun ta'htitieteilija'_NK : NK ;
+fun ta'htitorni_NK : NK ;
+fun ta'htivuosi_NK : NK ;
+fun ta'htivyo'_NK : NK ;
+fun ta'hta'inkiikari_NK : NK ;
+fun ta'hta'ysasento_NK : NK ;
+fun ta'hta'yspiste_NK : NK ;
+fun ta'hystinkirurgia_NK : NK ;
+fun ta'hystysleikkaus_NK : NK ;
+fun ta'hystyspaikka_NK : NK ;
+fun ta'hystystorni_NK : NK ;
+fun ta'ikampa_NK : NK ;
+fun ta'ika'rpa'nen_NK : NK ;
+fun ta'kykala_NK : NK ;
+fun ta'kyuistin_NK : NK ;
+fun ta'pla'isyys_NK : NK ;
+fun ta'pla'maalaus_NK : NK ;
+fun ta'pla'rapu_NK : NK ;
+fun ta'pla'silli_NK : NK ;
+fun ta'po'ta'ysi_NK : NK ;
+fun ta'rina'raita_NK : NK ;
+fun ta'rkeysja'rjestys_NK : NK ;
+fun ta'rkkelysjauho_NK : NK ;
+fun ta'rkkelyskasvi_NK : NK ;
+fun ta'rkkelyssiirappi_NK : NK ;
+fun ta'rkkelysyksikko'_NK : NK ;
+fun ta'rpa'ttio'ljy_NK : NK ;
+fun ta'ryjyra'_NK : NK ;
+fun ta'rykaiverrin_NK : NK ;
+fun ta'rykalvo_NK : NK ;
+fun ta'rykuljetin_NK : NK ;
+fun ta'ryontelo_NK : NK ;
+fun ta'ryseula_NK : NK ;
+fun ta'timalli_NK : NK ;
+fun ta'ydennysera'_NK : NK ;
+fun ta'ydennyskoulutus_NK : NK ;
+fun ta'ydennysmies_NK : NK ;
+fun ta'ydennysopetus_NK : NK ;
+fun ta'ydennysosa_NK : NK ;
+fun ta'ydennystehta'va'_NK : NK ;
+fun ta'ydennysvaali_NK : NK ;
+fun ta'ydennysva'ri_NK : NK ;
+fun ta'ysiaikainen_NK : NK ;
+fun ta'ysiarvoinen_NK : NK ;
+fun ta'ysihoitola_NK : NK ;
+fun ta'ysihoitolainen_NK : NK ;
+fun ta'ysija'rkinen_NK : NK ;
+fun ta'ysikasvuinen_NK : NK ;
+fun ta'ysikasvuisuus_NK : NK ;
+fun ta'ysikelpoinen_NK : NK ;
+fun ta'ysikokoinen_NK : NK ;
+fun ta'ysikuntoinen_NK : NK ;
+fun ta'ysilukuinen_AK : AK ;
+fun ta'ysimittainen_AK : AK ;
+fun ta'ysima'a'ra'inen_NK : NK ;
+fun ta'ysima'a'ra'isyys_NK : NK ;
+--? fun ta'ysinoppinut_NK : NK ;
+fun ta'ysipainoinen_AK : AK ;
+fun ta'ysipainoisuus_NK : NK ;
+fun ta'ysipa'iva'inen_AK : AK ;
+fun ta'ysistuntoasia_NK : NK ;
+fun ta'ysisa'rma'inen_NK : NK ;
+fun ta'ysitehoinen_AK : AK ;
+fun ta'ysivahvuinen_NK : NK ;
+fun ta'ysivaltainen_AK : AK ;
+fun ta'ysivaltaisuus_NK : NK ;
+fun ta'ysivarainen_NK : NK ;
+fun ta'ysiverinen_NK : NK ;
+fun ta'ysivillainen_NK : NK ;
+fun ta'ysivoimainen_AK : AK ;
+fun ta'yteaine_NK : NK ;
+fun ta'ytekakku_NK : NK ;
+fun ta'ytekaramelli_NK : NK ;
+fun ta'ytekeksi_NK : NK ;
+fun ta'ytekyna'_NK : NK ;
+fun ta'ytemaa_NK : NK ;
+fun ta'ytenumero_NK : NK ;
+fun ta'ytetakaus_NK : NK ;
+fun ta'ytevaali_NK : NK ;
+fun ta'ytto'aukko_NK : NK ;
+fun ta'ytto'maa_NK : NK ;
+fun ta'ytto'ma'ki_NK : NK ;
+fun ta'ytto'ma'a'ra'_NK : NK ;
+fun ta'ytto'pullo_NK : NK ;
+fun ta'ytto'venttiili_NK : NK ;
+fun ta'yta'nto'o'npano_NK : NK ;
+fun ta'yta'nto'o'npanosa'a'nno's_NK : NK ;
+fun ta'yta'nto'o'npanovalta_NK : NK ;
+fun ta'a'lla'olo_NK : NK ;
+--? fun to'lkkiolut_NK : NK ;
+fun to'pselinena'_NK : NK ;
+fun to'po'ha'nta'_NK : NK ;
+fun to'po'ha'nta'inen_NK : NK ;
+fun to'rkyisyys_NK : NK ;
+fun to'rma'pa'a'sky_NK : NK ;
+fun to'rma'yskurssi_NK : NK ;
+fun to'rma'ysvoima_NK : NK ;
+fun to'ro'suu_NK : NK ;
+fun to'yhto'angervo_NK : NK ;
+fun to'yhto'pa'inen_NK : NK ;
+fun to'yhto'tiainen_NK : NK ;
+fun ufohavainto_NK : NK ;
+fun uhkakuva_NK : NK ;
+fun uhkapeli_NK : NK ;
+fun uhkapeluri_NK : NK ;
+fun uhkarohkea_NK : NK ;
+fun uhkarohkeus_NK : NK ;
+fun uhkauskirje_NK : NK ;
+fun uhkavaatimus_NK : NK ;
+fun uhkayritys_NK : NK ;
+fun uhkeapovinen_NK : NK ;
+fun uhkearintainen_NK : NK ;
+fun uhkuavanto_NK : NK ;
+fun uhmaika'_NK : NK ;
+fun uhmaika'inen_NK : NK ;
+fun uhmakausi_NK : NK ;
+fun uhmamieli_NK : NK ;
+fun uhmamielisyys_NK : NK ;
+fun uhmapa'inen_AK : AK ;
+fun uhrialttari_NK : NK ;
+fun uhriela'in_NK : NK ;
+fun uhrikaritsa_NK : NK ;
+fun uhrikivi_NK : NK ;
+fun uhrikuolema_NK : NK ;
+fun uhrilahja_NK : NK ;
+fun uhrilammas_NK : NK ;
+fun uhrilehto_NK : NK ;
+fun uhrila'hde_NK : NK ;
+fun uhrimieli_NK : NK ;
+fun uhripaikka_NK : NK ;
+fun uhripappi_NK : NK ;
+fun uhripuu_NK : NK ;
+fun uhrisavu_NK : NK ;
+fun uhritoimitus_NK : NK ;
+fun uhrivalmius_NK : NK ;
+fun uima_allas_NK : NK ;
+fun uimurikammio_NK : NK ;
+fun uimuriventtiili_NK : NK ;
+fun uintikausi_NK : NK ;
+fun uintikelpoinen_NK : NK ;
+fun uintikelvoton_NK : NK ;
+fun uintikielto_NK : NK ;
+fun uintikilpailu_NK : NK ;
+fun uintilaji_NK : NK ;
+fun uintimatka_NK : NK ;
+fun uintiretki_NK : NK ;
+fun uintiurheilu_NK : NK ;
+fun uittohaka_NK : NK ;
+fun uittohukka_NK : NK ;
+fun uittoha'vio'_NK : NK ;
+fun uittokanava_NK : NK ;
+fun uittokouru_NK : NK ;
+fun uittomies_NK : NK ;
+fun uittopuu_NK : NK ;
+fun uittoruuhi_NK : NK ;
+fun uittora'nni_NK : NK ;
+fun uittotavara_NK : NK ;
+fun uittotyo'_NK : NK ;
+fun uittotyo'maa_NK : NK ;
+fun uittotyo'mies_NK : NK ;
+fun uittova'yla'_NK : NK ;
+fun uittoyhdistys_NK : NK ;
+fun ukkoetana_NK : NK ;
+--? fun ukkohousut_NK : NK ;
+fun ukkoika'_NK : NK ;
+fun ukkometso_NK : NK ;
+fun ukkomies_NK : NK ;
+fun ukkoteeri_NK : NK ;
+fun ukkovarvas_NK : NK ;
+fun ukrainalainen_NK : NK ;
+fun ulakeskus_NK : NK ;
+fun ulapuhelin_NK : NK ;
+fun ularadio_NK : NK ;
+fun uljasryhtinen_NK : NK ;
+fun ulkohankavene_NK : NK ;
+fun ulkoilmaela'ma'_NK : NK ;
+fun ulkoilmaihminen_NK : NK ;
+fun ulkoilmajuhla_NK : NK ;
+fun ulkoilmakahvila_NK : NK ;
+fun ulkoilmakonsertti_NK : NK ;
+fun ulkoilmaravintola_NK : NK ;
+fun ulkoilmateatteri_NK : NK ;
+fun ulkoilualue_NK : NK ;
+fun ulkoiluasu_NK : NK ;
+fun ulkoilujalkine_NK : NK ;
+fun ulkoilukartta_NK : NK ;
+fun ulkoilukeskus_NK : NK ;
+fun ulkoilumaasto_NK : NK ;
+fun ulkoilumaja_NK : NK ;
+fun ulkoilumuoto_NK : NK ;
+fun ulkoilupuisto_NK : NK ;
+fun ulkoilupusero_NK : NK ;
+fun ulkoilupa'iva'_NK : NK ;
+fun ulkoilureitti_NK : NK ;
+fun ulkoilutakki_NK : NK ;
+fun ulkoiluvaate_NK : NK ;
+fun ulkoiluvoide_NK : NK ;
+fun ulkoiluva'line_NK : NK ;
+fun ulkolaitamoottori_NK : NK ;
+fun ulkola'hetysauto_NK : NK ;
+fun ulkomaailma_NK : NK ;
+fun ulkomaalainen_NK : NK ;
+fun ulkomaankauppaministeri_NK : NK ;
+fun ulkomaankauppapolitiikka_NK : NK ;
+fun ulko_osa_NK : NK ;
+fun ulko_ovi_NK : NK ;
+fun ulkorataenna'tys_NK : NK ;
+fun ulkoruokintakausi_NK : NK ;
+fun ullakkohuone_NK : NK ;
+fun ullakkokamari_NK : NK ;
+fun ullakkokerros_NK : NK ;
+fun ullakkokomero_NK : NK ;
+fun ulosajo_NK : NK ;
+fun ulosanti_NK : NK ;
+fun ulosheitta'ja'_NK : NK ;
+fun uloshengitys_NK : NK ;
+fun uloska'ynti_NK : NK ;
+fun uloska'yta'va'_NK : NK ;
+fun ulosliputus_NK : NK ;
+fun uloslyo'nti_NK : NK ;
+fun ulosla'hto'_NK : NK ;
+fun ulosmarssi_NK : NK ;
+fun ulosmeno_NK : NK ;
+fun ulosmenoliikenne_NK : NK ;
+fun ulosmenotie_NK : NK ;
+fun ulosmenova'yla'_NK : NK ;
+fun ulosmittaus_NK : NK ;
+fun ulosotto_NK : NK ;
+fun ulosottomies_NK : NK ;
+fun ulospa'a'sy_NK : NK ;
+fun ulospa'a'sytie_NK : NK ;
+fun ulostena'yte_NK : NK ;
+fun ulostulo_NK : NK ;
+fun ulostuloteho_NK : NK ;
+fun ulostusaine_NK : NK ;
+fun ulostusla'a'ke_NK : NK ;
+fun ultraa'a'nikuva_NK : NK ;
+fun ultraa'a'nitutkimus_NK : NK ;
+fun umpeenmeno_NK : NK ;
+fun umpiauto_NK : NK ;
+fun umpierite_NK : NK ;
+fun umpieritys_NK : NK ;
+fun umpihanki_NK : NK ;
+fun umpihankihiihto_NK : NK ;
+fun umpihumala_NK : NK ;
+fun umpija'a'_NK : NK ;
+fun umpikatu_NK : NK ;
+fun umpikela_NK : NK ;
+fun umpikiero_NK : NK ;
+fun umpikuja_NK : NK ;
+fun umpikuuro_NK : NK ;
+fun umpika'nninen_NK : NK ;
+fun umpilippu_NK : NK ;
+fun umpilisa'ke_NK : NK ;
+fun umpiluu_NK : NK ;
+fun umpimielisyys_NK : NK ;
+fun umpimurtuma_NK : NK ;
+fun umpinainen_AK : AK ;
+fun umpinaisuus_NK : NK ;
+fun umpiolasi_NK : NK ;
+fun umpioto'lkki_NK : NK ;
+fun umpipera'_NK : NK ;
+fun umpipera'inen_NK : NK ;
+fun umpipuinen_NK : NK ;
+fun umpipussi_NK : NK ;
+fun umpipuu_NK : NK ;
+fun umpirauhanen_NK : NK ;
+fun umpisilma'inen_NK : NK ;
+fun umpisokea_NK : NK ;
+fun umpisolmu_NK : NK ;
+fun umpisuoli_NK : NK ;
+fun umpitavu_NK : NK ;
+fun umpitunneli_NK : NK ;
+fun undergroundkulttuuri_NK : NK ;
+fun unelmaloma_NK : NK ;
+fun unelmamaailma_NK : NK ;
+fun unelmamaali_NK : NK ;
+fun uniapnea_NK : NK ;
+fun uniasu_NK : NK ;
+fun unihiekka_NK : NK ;
+fun uniha'irio'_NK : NK ;
+fun unijukka_NK : NK ;
+fun unikeko_NK : NK ;
+fun unikuva_NK : NK ;
+fun unilelu_NK : NK ;
+fun uniliike_NK : NK ;
+fun unilukkari_NK : NK ;
+fun unila'a'ke_NK : NK ;
+fun unimaito_NK : NK ;
+fun uniohjaus_NK : NK ;
+fun uniseksi_NK : NK ;
+fun uniseksiasu_NK : NK ;
+fun unitabletti_NK : NK ;
+fun unitauti_NK : NK ;
+fun unitila_NK : NK ;
+fun unitutkimus_NK : NK ;
+fun univelka_NK : NK ;
+fun universaali_NK : NK ;
+fun univormupukuinen_NK : NK ;
+fun unkarilainen_NK : NK ;
+fun untuvakangas_NK : NK ;
+fun untuvapallo_NK : NK ;
+fun untuvapeite_NK : NK ;
+fun untuvapeitto_NK : NK ;
+fun untuvapilvi_NK : NK ;
+fun untuvapusero_NK : NK ;
+fun untuvapussi_NK : NK ;
+fun untuvatakki_NK : NK ;
+fun untuvatyyny_NK : NK ;
+fun untuvata'ytteinen_NK : NK ;
+fun upotuskaste_NK : NK ;
+fun upotuskoristelu_NK : NK ;
+fun upotuspora_NK : NK ;
+fun upotussuolaus_NK : NK ;
+fun uppokantaruuvi_NK : NK ;
+fun upseeriaines_NK : NK ;
+fun upseerikerho_NK : NK ;
+fun upseerikokelas_NK : NK ;
+fun upseerikunta_NK : NK ;
+fun uraaniatomi_NK : NK ;
+fun uraaniesiintyma'_NK : NK ;
+fun uraanikaivos_NK : NK ;
+fun uraanimalmi_NK : NK ;
+fun uraho'yla'_NK : NK ;
+fun urakehitys_NK : NK ;
+fun urakierto_NK : NK ;
+fun urakkapalkka_NK : NK ;
+fun urakkasopimus_NK : NK ;
+fun urakkasumma_NK : NK ;
+fun urakkatyo'_NK : NK ;
+fun urakointiliike_NK : NK ;
+fun uranainen_NK : NK ;
+fun uranauha_NK : NK ;
+fun urapaikkaus_NK : NK ;
+fun uraputki_NK : NK ;
+fun uraruuvi_NK : NK ;
+fun urheiluammunta_NK : NK ;
+fun urheiluauto_NK : NK ;
+fun urheiluautoilija_NK : NK ;
+fun urheiluenna'tys_NK : NK ;
+fun urheiluhalli_NK : NK ;
+fun urheiluhenkinen_NK : NK ;
+fun urheiluhieroja_NK : NK ;
+--? fun urheiluhousut_NK : NK ;
+fun urheiluhullu_NK : NK ;
+fun urheiluilmailu_NK : NK ;
+fun urheilujohtaja_NK : NK ;
+fun urheilujuhla_NK : NK ;
+fun urheiluja'rjesto'_NK : NK ;
+fun urheilukalastaja_NK : NK ;
+fun urheilukalastus_NK : NK ;
+fun urheilukentta'_NK : NK ;
+fun urheilukieli_NK : NK ;
+fun urheilukilpailu_NK : NK ;
+fun urheilukomppania_NK : NK ;
+fun urheilukuvaaja_NK : NK ;
+fun urheilulaji_NK : NK ;
+fun urheilulanka_NK : NK ;
+fun urheiluliike_NK : NK ;
+fun urheiluloma_NK : NK ;
+fun urheilulukio_NK : NK ;
+fun urheiluluokka_NK : NK ;
+fun urheilula'a'ka'ri_NK : NK ;
+fun urheilumalli_NK : NK ;
+fun urheilumallinen_NK : NK ;
+fun urheilumetsa'stys_NK : NK ;
+fun urheilumieli_NK : NK ;
+fun urheilumuoti_NK : NK ;
+fun urheilumuoto_NK : NK ;
+fun urheiluopisto_NK : NK ;
+fun urheiluosasto_NK : NK ;
+fun urheilupaita_NK : NK ;
+fun urheilupistooli_NK : NK ;
+fun urheilupsykologi_NK : NK ;
+fun urheilupsykologia_NK : NK ;
+fun urheilupuisto_NK : NK ;
+fun urheilupa'iva'_NK : NK ;
+fun urheilusali_NK : NK ;
+fun urheiluselostaja_NK : NK ;
+fun urheiluselostus_NK : NK ;
+fun urheiluseura_NK : NK ;
+fun urheilusivu_NK : NK ;
+fun urheilusukellus_NK : NK ;
+fun urheilusukeltaja_NK : NK ;
+fun urheilusukka_NK : NK ;
+fun urheilusuoritus_NK : NK ;
+fun urheilutalo_NK : NK ;
+fun urheilutoimittaja_NK : NK ;
+fun urheilutoimitus_NK : NK ;
+fun urheiluvalmennus_NK : NK ;
+fun urheiluvamma_NK : NK ;
+fun urheiluva'ki_NK : NK ;
+fun urheiluva'line_NK : NK ;
+fun urheiluva'linekauppa_NK : NK ;
+fun uroshirvi_NK : NK ;
+fun uroskissa_NK : NK ;
+fun uroskoira_NK : NK ;
+fun urosmetso_NK : NK ;
+fun urospuolinen_NK : NK ;
+fun uskomusla'a'kinta'_NK : NK ;
+fun uskomusolento_NK : NK ;
+fun uskontokunta_NK : NK ;
+fun uskontorikos_NK : NK ;
+fun uskontotiede_NK : NK ;
+fun uskontotunti_NK : NK ;
+fun uskovaisuus_NK : NK ;
+fun utareliivi_NK : NK ;
+fun utaretulehdus_NK : NK ;
+fun utupilvi_NK : NK ;
+fun uudelleenarviointi_NK : NK ;
+fun uudelleenja'rjestely_NK : NK ;
+fun uudelleenkoulutus_NK : NK ;
+fun uudelleenka'ytto'_NK : NK ;
+fun uudelleenvalinta_NK : NK ;
+fun uudistushakkuu_NK : NK ;
+fun uudistusliike_NK : NK ;
+fun uudistusohjelma_NK : NK ;
+fun uudistustyo'_NK : NK ;
+fun uunijuusto_NK : NK ;
+fun uunikala_NK : NK ;
+fun uunikuiva_NK : NK ;
+fun uunikuivaus_NK : NK ;
+fun uunilintu_NK : NK ;
+fun uuniluuta_NK : NK ;
+fun uunila'mmin_NK : NK ;
+fun uunila'mmitys_NK : NK ;
+fun uunimakkara_NK : NK ;
+fun uunimunakas_NK : NK ;
+fun uuniomena_NK : NK ;
+fun uunipaisti_NK : NK ;
+fun uunipannu_NK : NK ;
+fun uunipelti_NK : NK ;
+fun uuniperuna_NK : NK ;
+fun uunipuu_NK : NK ;
+fun uunipuuro_NK : NK ;
+fun uuniruoka_NK : NK ;
+fun uunituore_NK : NK ;
+fun uunivaunu_NK : NK ;
+fun uunivuoka_NK : NK ;
+fun uurnahauta_NK : NK ;
+fun uurnaholvi_NK : NK ;
+fun uurnalehto_NK : NK ;
+fun uurreho'yla'_NK : NK ;
+fun uusimuotoinen_NK : NK ;
+fun uusintaesitys_NK : NK ;
+fun uusintakilpailu_NK : NK ;
+fun uusintakuulustelu_NK : NK ;
+fun uusintaka'sittely_NK : NK ;
+fun uusintala'hetys_NK : NK ;
+fun uusintaottelu_NK : NK ;
+fun uusintapainos_NK : NK ;
+fun uusintavaali_NK : NK ;
+fun uuttukyyhky_NK : NK ;
+fun uutuusarvo_NK : NK ;
+fun uutuusesittely_NK : NK ;
+fun uutuusluettelo_NK : NK ;
+fun uuvutustaistelu_NK : NK ;
+fun uuvutustaktiikka_NK : NK ;
+fun vaa_ankieliasema_NK : NK ;
+fun vaahterasiirappi_NK : NK ;
+fun vaahterasokeri_NK : NK ;
+fun vaahtokaramelli_NK : NK ;
+fun vaahtokumi_NK : NK ;
+fun vaahtokumipatja_NK : NK ;
+fun vaahtokupla_NK : NK ;
+fun vaahtokylpy_NK : NK ;
+fun vaahtokylpyaine_NK : NK ;
+fun vaahtolasi_NK : NK ;
+fun vaahtomuovi_NK : NK ;
+fun vaahtomuovipatja_NK : NK ;
+fun vaahtomuovirouhe_NK : NK ;
+fun vaahtopesu_NK : NK ;
+fun vaahtopesuaine_NK : NK ;
+fun vaahtopa'inen_NK : NK ;
+fun vaahtopa'a'_NK : NK ;
+fun vaahtosammutin_NK : NK ;
+fun vaahtosammutus_NK : NK ;
+fun vaaituskoje_NK : NK ;
+fun vaakaeta'isyys_NK : NK ;
+fun vaakajuova_NK : NK ;
+fun vaakajuovainen_NK : NK ;
+fun vaakakierre_NK : NK ;
+fun vaakakuppi_NK : NK ;
+fun vaakalaudoitus_NK : NK ;
+fun vaakalauta_NK : NK ;
+fun vaakalento_NK : NK ;
+fun vaakalintu_NK : NK ;
+fun vaakapommitus_NK : NK ;
+fun vaakaraita_NK : NK ;
+fun vaakaraitainen_NK : NK ;
+fun vaakarivi_NK : NK ;
+fun vaakaseisonta_NK : NK ;
+fun vaakasuora_NK : NK ;
+fun vaakasuunta_NK : NK ;
+fun vaakasuuntainen_NK : NK ;
+fun vaakatahdistus_NK : NK ;
+fun vaakataso_NK : NK ;
+fun vaakaviiva_NK : NK ;
+fun vaakaviivoitus_NK : NK ;
+fun vaakavuoraus_NK : NK ;
+fun vaakunakilpi_NK : NK ;
+fun vaakunalippu_NK : NK ;
+fun vaakunaoppi_NK : NK ;
+fun vaaleahiuksinen_NK : NK ;
+fun vaaleaihoinen_NK : NK ;
+fun vaaleapohjainen_NK : NK ;
+fun vaaleatukkainen_NK : NK ;
+fun vaaleaverinen_NK : NK ;
+fun vaaliavustaja_NK : NK ;
+fun vaaliehdokas_NK : NK ;
+fun vaalihuoneisto_NK : NK ;
+fun vaalijuliste_NK : NK ;
+fun vaalikampanja_NK : NK ;
+fun vaalikaranteeni_NK : NK ;
+fun vaalikarja_NK : NK ;
+fun vaalikausi_NK : NK ;
+fun vaalikelpoinen_NK : NK ;
+fun vaalikelpoisuus_NK : NK ;
+fun vaalikeskustelu_NK : NK ;
+fun vaalikirja_NK : NK ;
+fun vaalikortti_NK : NK ;
+fun vaalikuningas_NK : NK ;
+fun vaaliliitto_NK : NK ;
+fun vaalilippu_NK : NK ;
+fun vaaliluettelo_NK : NK ;
+fun vaalimainos_NK : NK ;
+fun vaalimo'kki_NK : NK ;
+fun vaaliohjelma_NK : NK ;
+fun vaalioikeus_NK : NK ;
+fun vaalioikeutettu_NK : NK ;
+fun vaalipetos_NK : NK ;
+fun vaalipiiri_NK : NK ;
+fun vaalipropaganda_NK : NK ;
+fun vaalipuhe_NK : NK ;
+fun vaalipuhuja_NK : NK ;
+fun vaalipa'iva'_NK : NK ;
+fun vaalirikos_NK : NK ;
+fun vaalisaarna_NK : NK ;
+fun vaalisalaisuus_NK : NK ;
+fun vaalisija_NK : NK ;
+fun vaalitaistelu_NK : NK ;
+fun vaalitapa_NK : NK ;
+fun vaalitappio_NK : NK ;
+fun vaaliteema_NK : NK ;
+fun vaalitentti_NK : NK ;
+fun vaalitilaisuus_NK : NK ;
+fun vaalitoimisto_NK : NK ;
+fun vaalitoimitus_NK : NK ;
+fun vaalitulos_NK : NK ;
+fun vaalitulospalvelu_NK : NK ;
+fun vaaliuurna_NK : NK ;
+fun vaalivaltti_NK : NK ;
+fun vaalivapaus_NK : NK ;
+fun vaalivilppi_NK : NK ;
+fun vaalivoitto_NK : NK ;
+fun vaalivuosi_NK : NK ;
+fun vaarajono_NK : NK ;
+fun vaarapaikka_NK : NK ;
+fun vaaratekija'_NK : NK ;
+fun vaaratilanne_NK : NK ;
+fun vaaravyo'hyke_NK : NK ;
+fun vaarnaliitos_NK : NK ;
+fun vaarnapultti_NK : NK ;
+fun vaarnaruuvi_NK : NK ;
+fun vaateapu_NK : NK ;
+fun vaateavustus_NK : NK ;
+fun vaatehankinta_NK : NK ;
+fun vaateharja_NK : NK ;
+fun vaatehuolto_NK : NK ;
+fun vaatehuoltohuone_NK : NK ;
+fun vaatehuone_NK : NK ;
+fun vaatekaappi_NK : NK ;
+fun vaatekappale_NK : NK ;
+fun vaatekauppa_NK : NK ;
+fun vaatekauppias_NK : NK ;
+fun vaatekerta_NK : NK ;
+fun vaatekoi_NK : NK ;
+fun vaatekomero_NK : NK ;
+fun vaatekoukku_NK : NK ;
+fun vaatelappu_NK : NK ;
+fun vaatemytty_NK : NK ;
+fun vaatenaulakko_NK : NK ;
+fun vaatenyytti_NK : NK ;
+fun vaateosasto_NK : NK ;
+fun vaateparsi_NK : NK ;
+fun vaatepuu_NK : NK ;
+fun vaateraha_NK : NK ;
+fun vaateripustin_NK : NK ;
+fun vaatesa'ilo'_NK : NK ;
+fun vaatetanko_NK : NK ;
+fun vaateteollisuus_NK : NK ;
+fun vaatetusapu_NK : NK ;
+fun vaatetusliike_NK : NK ;
+fun vaatetusmeno_NK : NK ;
+fun vaatetusteollisuus_NK : NK ;
+fun vaateta'i_NK : NK ;
+fun vaatimustaso_NK : NK ;
+fun vadelmahillo_NK : NK ;
+fun vadelmamehu_NK : NK ;
+fun vadelmapensaikko_NK : NK ;
+fun vadelmapensas_NK : NK ;
+fun vadelmatee_NK : NK ;
+fun vaelluskala_NK : NK ;
+fun vaelluskenka'_NK : NK ;
+fun vaellusmatka_NK : NK ;
+fun vaellusreitti_NK : NK ;
+fun vaellusretki_NK : NK ;
+fun vaellusteltta_NK : NK ;
+fun vaellusvietti_NK : NK ;
+fun vaginaalinen_NK : NK ;
+fun vahakabinetti_NK : NK ;
+fun vahakakku_NK : NK ;
+fun vahakangas_NK : NK ;
+fun vahakoisa_NK : NK ;
+fun vahakuva_NK : NK ;
+fun vahakynttila'_NK : NK ;
+fun vahaliitu_NK : NK ;
+fun vahanukke_NK : NK ;
+fun vahapaperi_NK : NK ;
+fun vahapapu_NK : NK ;
+fun vahaplastiikka_NK : NK ;
+fun vahaveistos_NK : NK ;
+fun vahingonkorvausvaatimus_NK : NK ;
+fun vahinkoela'in_NK : NK ;
+fun vahinkovakuutus_NK : NK ;
+fun vahtikoira_NK : NK ;
+fun vahtimestari_NK : NK ;
+fun vahtiparaati_NK : NK ;
+fun vahtisotilas_NK : NK ;
+fun vahtivuoro_NK : NK ;
+fun vahvahermoinen_NK : NK ;
+fun vahvahermoisuus_NK : NK ;
+fun vahvakasvuinen_NK : NK ;
+fun vahvalihaksinen_NK : NK ;
+fun vahvaluonteinen_NK : NK ;
+fun vahvaoksainen_NK : NK ;
+fun vahvarunkoinen_NK : NK ;
+fun vahvatahtoinen_NK : NK ;
+fun vahvikerauta_NK : NK ;
+fun vahvistusjoukko_NK : NK ;
+fun vahvistussana_NK : NK ;
+fun vaihdantatalous_NK : NK ;
+fun vaihdekeppi_NK : NK ;
+fun vaihdelaatikko_NK : NK ;
+fun vaihdepyo'ra'_NK : NK ;
+fun vaihdetanko_NK : NK ;
+fun vaihdevipu_NK : NK ;
+fun vaihejohdin_NK : NK ;
+fun vaiheja'nnite_NK : NK ;
+fun vaiherikas_NK : NK ;
+fun vaihetyo'_NK : NK ;
+fun vaihteistoo'ljy_NK : NK ;
+fun vaihtelualue_NK : NK ;
+fun vaihteluraja_NK : NK ;
+fun vaihteluva'li_NK : NK ;
+fun vaihtoaitio_NK : NK ;
+fun vaihtoalue_NK : NK ;
+fun vaihtoarvo_NK : NK ;
+fun vaihtoaskel_NK : NK ;
+fun vaihtoauto_NK : NK ;
+fun vaihtoautohalli_NK : NK ;
+fun vaihtoehto_NK : NK ;
+fun vaihtoehtoinen_AK : AK ;
+fun vaihtoehtoisuus_NK : NK ;
+fun vaihtoehtoliike_NK : NK ;
+fun vaihtoehtola'a'kinta'_NK : NK ;
+fun vaihtoja'nnite_NK : NK ;
+fun vaihtokauppa_NK : NK ;
+fun vaihtokurssi_NK : NK ;
+fun vaihtolava_NK : NK ;
+fun vaihtolyo'ja'_NK : NK ;
+fun vaihtolyo'nti_NK : NK ;
+fun vaihtola'mpo'inen_NK : NK ;
+fun vaihtomies_NK : NK ;
+fun vaihtopelaaja_NK : NK ;
+fun vaihtopenkki_NK : NK ;
+fun vaihtopullo_NK : NK ;
+fun vaihtoraha_NK : NK ;
+fun vaihtoreaktio_NK : NK ;
+fun vaihtosuhde_NK : NK ;
+fun vaihtosa'hko'_NK : NK ;
+fun vaihtosa'hko'vastus_NK : NK ;
+fun vaihtotalous_NK : NK ;
+fun vaihtotase_NK : NK ;
+fun vaihtotavara_NK : NK ;
+fun vaihtotori_NK : NK ;
+fun vaihtovaate_NK : NK ;
+fun vaihtovelkakirjalaina_NK : NK ;
+fun vaihtovirta_NK : NK ;
+fun vaihtovirtakoje_NK : NK ;
+fun vaihtovirtamoottori_NK : NK ;
+fun vaihtova'line_NK : NK ;
+fun vaikeahoitoinen_NK : NK ;
+fun vaikeakulkuinen_NK : NK ;
+fun vaikeaka'ytto'inen_NK : NK ;
+fun vaikealukuinen_NK : NK ;
+fun vaikealuonteinen_NK : NK ;
+fun vaikeamaastoinen_NK : NK ;
+fun vaikeapa'a'syinen_NK : NK ;
+fun vaikeaselkoinen_AK : AK ;
+fun vaikeatajuinen_NK : NK ;
+fun vaikeatajuisuus_NK : NK ;
+fun vaikeavammainen_NK : NK ;
+fun vaikeusaste_NK : NK ;
+fun vaikuttajayksilo'_NK : NK ;
+fun vaikutusalue_NK : NK ;
+fun vaikutuskanava_NK : NK ;
+fun vaikutuskeino_NK : NK ;
+fun vaikutusmekanismi_NK : NK ;
+fun vaikutuspiiri_NK : NK ;
+fun vaikutuspiste_NK : NK ;
+fun vaikutussuhde_NK : NK ;
+fun vaikutussuora_NK : NK ;
+fun vaikutussuunta_NK : NK ;
+fun vaikutusvalta_NK : NK ;
+fun vaikutusvaltainen_NK : NK ;
+fun vaikutusvoima_NK : NK ;
+fun vaimoihminen_NK : NK ;
+fun vainoharha_NK : NK ;
+fun vainoharhainen_NK : NK ;
+fun vainohullu_NK : NK ;
+fun vainohulluus_NK : NK ;
+fun vainolainen_NK : NK ;
+fun vainooja_NK : NK ;
+fun vainovalkea_NK : NK ;
+fun vainukoira_NK : NK ;
+fun vaippaela'in_NK : NK ;
+--? fun vaippahousut_NK : NK ;
+fun vaippaihottuma_NK : NK ;
+fun vaippaika'inen_NK : NK ;
+fun vaippaluoti_NK : NK ;
+fun vaippapinta_NK : NK ;
+fun vaistoammunta_NK : NK ;
+fun vaistomainen_AK : AK ;
+fun vaistotoiminta_NK : NK ;
+fun vaitiolo_NK : NK ;
+fun vaitiololupaus_NK : NK ;
+fun vaivaisuus_NK : NK ;
+fun vaivero_NK : NK ;
+fun vajaahampainen_NK : NK ;
+fun vajaakuntoinen_NK : NK ;
+fun vajaakuntoisuus_NK : NK ;
+fun vajaakykyinen_NK : NK ;
+fun vajaaka'ytto'inen_NK : NK ;
+fun vajaaka'ytto'isyys_NK : NK ;
+fun vajaalaatuinen_NK : NK ;
+fun vajaalaatuisuus_NK : NK ;
+fun vajaalukuinen_NK : NK ;
+fun vajaamielisyys_NK : NK ;
+fun vajaamittainen_NK : NK ;
+fun vajaasa'rma'inen_NK : NK ;
+fun vajaatehoinen_AK : AK ;
+fun vajaatuottoinen_NK : NK ;
+fun vajaavaltainen_NK : NK ;
+fun vajaaa'lyinen_NK : NK ;
+fun vajaaa'lyisyys_NK : NK ;
+fun vajanainen_AK : AK ;
+fun vajanaisuus_NK : NK ;
+fun vajarakennus_NK : NK ;
+fun vajavaisuus_NK : NK ;
+fun vakakuva_NK : NK ;
+fun vakaumussyy_NK : NK ;
+fun vakausleima_NK : NK ;
+fun vakautussopimus_NK : NK ;
+fun vakavahenkinen_NK : NK ;
+fun vakavailmeinen_NK : NK ;
+fun vakavakasvoinen_NK : NK ;
+fun vakavakatseinen_NK : NK ;
+fun vakavalaatuinen_NK : NK ;
+fun vakavaluonteinen_NK : NK ;
+fun vakavarainen_NK : NK ;
+fun vakavaraisuus_NK : NK ;
+fun vakavasa'vyinen_NK : NK ;
+fun vakioarvo_NK : NK ;
+fun vakioauto_NK : NK ;
+fun vakiohinta_NK : NK ;
+fun vakiokalusto_NK : NK ;
+fun vakiokokoinen_NK : NK ;
+fun vakiokoostumus_NK : NK ;
+fun vakiolaatu_NK : NK ;
+fun vakiolaatuinen_NK : NK ;
+fun vakiomaito_NK : NK ;
+fun vakiomalli_NK : NK ;
+fun vakiomallinen_NK : NK ;
+fun vakiomitta_NK : NK ;
+fun vakiomittainen_NK : NK ;
+fun vakionopeus_NK : NK ;
+fun vakionopeussa'a'din_NK : NK ;
+fun vakiopituus_NK : NK ;
+fun vakioselitys_NK : NK ;
+fun vakiosopimus_NK : NK ;
+fun vakiosuhde_NK : NK ;
+fun vakiosuure_NK : NK ;
+fun vakiosuuruinen_NK : NK ;
+fun vakiotanssi_NK : NK ;
+fun vakiotyyppi_NK : NK ;
+fun vakiotyyppinen_NK : NK ;
+fun vakiovaruste_NK : NK ;
+fun vakioveikkaus_NK : NK ;
+fun vakiovuoro_NK : NK ;
+fun vakoaura_NK : NK ;
+fun vakoilujuttu_NK : NK ;
+fun vakoiluja'rjesto'_NK : NK ;
+fun vakoilutoiminta_NK : NK ;
+fun vakoiluverkko_NK : NK ;
+fun vakokylvo'_NK : NK ;
+fun vakolaakso_NK : NK ;
+fun vakooja_NK : NK ;
+fun vakosametti_NK : NK ;
+fun vakova'li_NK : NK ;
+fun vakuumipakkaus_NK : NK ;
+fun vakuusmuoto_NK : NK ;
+fun vakuusrahasto_NK : NK ;
+fun vakuussitoumus_NK : NK ;
+fun vakuustodistus_NK : NK ;
+fun vakuutusarvo_NK : NK ;
+fun vakuutusehto_NK : NK ;
+fun vakuutushakemus_NK : NK ;
+fun vakuutuskausi_NK : NK ;
+fun vakuutuskilpi_NK : NK ;
+fun vakuutuskirja_NK : NK ;
+fun vakuutuskohde_NK : NK ;
+fun vakuutuskorvaus_NK : NK ;
+fun vakuutuslaitos_NK : NK ;
+fun vakuutusla'a'ka'ri_NK : NK ;
+fun vakuutusmaksu_NK : NK ;
+fun vakuutusmaksuera'_NK : NK ;
+fun vakuutusma'a'ra'_NK : NK ;
+fun vakuutusneuvos_NK : NK ;
+fun vakuutusoikeus_NK : NK ;
+fun vakuutuspetos_NK : NK ;
+fun vakuutussopimus_NK : NK ;
+fun vakuutussumma_NK : NK ;
+fun vakuutustapahtuma_NK : NK ;
+fun vakuutusturva_NK : NK ;
+fun vakuutusyhdistelma'_NK : NK ;
+fun vakuutusyhtio'_NK : NK ;
+fun valaanpyyntialus_NK : NK ;
+fun valaehtoinen_AK : AK ;
+fun valaehtoisuus_NK : NK ;
+fun valaisinparisto_NK : NK ;
+fun valaisinpylva's_NK : NK ;
+fun valaistuslaite_NK : NK ;
+fun valaistusmestari_NK : NK ;
+fun valaistustekniikka_NK : NK ;
+fun valaistusvoimakkuus_NK : NK ;
+fun valaisuammus_NK : NK ;
+fun valaliitto_NK : NK ;
+fun valamiehisto'_NK : NK ;
+fun valamies_NK : NK ;
+fun valamiesoikeus_NK : NK ;
+fun valantekotilaisuus_NK : NK ;
+fun valaskala_NK : NK ;
+fun valinkauha_NK : NK ;
+fun valinnainen_AK : AK ;
+fun valinnaisuus_NK : NK ;
+fun valintakoe_NK : NK ;
+fun valintalevy_NK : NK ;
+fun valintamyyma'la'_NK : NK ;
+fun valintaoikeus_NK : NK ;
+fun valintaperuste_NK : NK ;
+fun valintaa'a'ni_NK : NK ;
+fun valioampuja_NK : NK ;
+fun valiojoukko_NK : NK ;
+fun valiokunta_NK : NK ;
+fun valiokuntaka'sittely_NK : NK ;
+fun valiokuntaneuvos_NK : NK ;
+fun valioluokka_NK : NK ;
+fun valiourheilija_NK : NK ;
+fun valioyksilo'_NK : NK ;
+fun valistusaate_NK : NK ;
+fun valistusfilosofi_NK : NK ;
+fun valistusfilosofia_NK : NK ;
+fun valistuskampanja_NK : NK ;
+fun valistuskirjailija_NK : NK ;
+fun valitsijajoukko_NK : NK ;
+fun valitsijakunta_NK : NK ;
+fun valitsijamies_NK : NK ;
+fun valitsijamiesehdokas_NK : NK ;
+fun valitsijamiesvaali_NK : NK ;
+fun valitsijayhdistys_NK : NK ;
+fun valitsinluuri_NK : NK ;
+fun valitushuuto_NK : NK ;
+fun valituskirjelma'_NK : NK ;
+fun valituslupa_NK : NK ;
+fun valitusmenettely_NK : NK ;
+fun valitusohje_NK : NK ;
+fun valitusoikeus_NK : NK ;
+fun valitusosoitus_NK : NK ;
+fun valitustie_NK : NK ;
+fun valitusvirsi_NK : NK ;
+fun valkaisuaine_NK : NK ;
+fun valkokaartilainen_NK : NK ;
+fun valkosipulijauhe_NK : NK ;
+fun valkosipuliletti_NK : NK ;
+fun valkosipulisuola_NK : NK ;
+fun valkoviinilasi_NK : NK ;
+fun valkuaisainepitoinen_NK : NK ;
+fun valkuaisainepitoisuus_NK : NK ;
+fun vallanhalu_NK : NK ;
+fun vallanhaluinen_NK : NK ;
+fun vallanhimo_NK : NK ;
+fun vallanhimoinen_NK : NK ;
+fun vallanjako_NK : NK ;
+fun vallankaappaaja_NK : NK ;
+fun vallankaappaus_NK : NK ;
+fun vallankeikaus_NK : NK ;
+fun vallankeskitys_NK : NK ;
+fun vallankumous_NK : NK ;
+fun vallankumousaate_NK : NK ;
+fun vallankumousarmeija_NK : NK ;
+fun vallankumousjohtaja_NK : NK ;
+fun vallanka'ytta'ja'_NK : NK ;
+fun vallanka'ytto'_NK : NK ;
+fun vallanperija'_NK : NK ;
+fun vallanperimys_NK : NK ;
+fun vallanperimysja'rjestys_NK : NK ;
+fun vallanpito_NK : NK ;
+fun vallanpita'ja'_NK : NK ;
+fun vallansiirto_NK : NK ;
+fun vallassaolija_NK : NK ;
+fun vallassaolo_NK : NK ;
+fun vallihauta_NK : NK ;
+fun valliriutta_NK : NK ;
+fun valloitusretki_NK : NK ;
+fun valloitussota_NK : NK ;
+fun vallonilainen_NK : NK ;
+fun valmennuskurssi_NK : NK ;
+fun valmennusleiri_NK : NK ;
+fun valmennusohjelma_NK : NK ;
+fun valmennusrengas_NK : NK ;
+fun valmisteinen_NK : NK ;
+fun valmisteluelin_NK : NK ;
+fun valmisteluvaihe_NK : NK ;
+fun valmistenumero_NK : NK ;
+fun valmistevero_NK : NK ;
+fun valmistusaine_NK : NK ;
+fun valmistusera'_NK : NK ;
+fun valmistushakkuu_NK : NK ;
+fun valmistuslisenssi_NK : NK ;
+fun valmistusmaa_NK : NK ;
+fun valmistusmenetelma'_NK : NK ;
+fun valmistusohje_NK : NK ;
+fun valmistuspaikka_NK : NK ;
+fun valmistusprosessi_NK : NK ;
+fun valmistuspa'iva'_NK : NK ;
+fun valmistustekniikka_NK : NK ;
+fun valmistusvaihe_NK : NK ;
+fun valmistusvika_NK : NK ;
+fun valmistusvirhe_NK : NK ;
+fun valmistusvuosi_NK : NK ;
+fun valmisvaateteollisuus_NK : NK ;
+fun valmiusasento_NK : NK ;
+fun valmiusaste_NK : NK ;
+fun valmiusjoukko_NK : NK ;
+fun valmiuslaukku_NK : NK ;
+fun valmiusohjelma_NK : NK ;
+fun valmiusryhma'_NK : NK ;
+fun valmiustila_NK : NK ;
+fun valoammus_NK : NK ;
+fun valodiodi_NK : NK ;
+fun valoefekti_NK : NK ;
+fun valoelin_NK : NK ;
+fun valohakuinen_NK : NK ;
+fun valohakuisuus_NK : NK ;
+fun valoherkkyys_NK : NK ;
+fun valoherkka'_NK : NK ;
+fun valohoito_NK : NK ;
+fun valohoitolaite_NK : NK ;
+fun valoha'my_NK : NK ;
+fun valoihottuma_NK : NK ;
+fun valoilmio'_NK : NK ;
+fun valojuova_NK : NK ;
+fun valojuovaluoti_NK : NK ;
+fun valoja'ljenno's_NK : NK ;
+fun valokaapeli_NK : NK ;
+fun valokaari_NK : NK ;
+fun valokatkaisin_NK : NK ;
+fun valokeha'_NK : NK ;
+fun valokeila_NK : NK ;
+fun valokenno_NK : NK ;
+fun valokiila_NK : NK ;
+fun valokirjain_NK : NK ;
+fun valokopio_NK : NK ;
+fun valokopiointi_NK : NK ;
+fun valokopiokone_NK : NK ;
+fun valokopiopaperi_NK : NK ;
+fun valokuitu_NK : NK ;
+fun valokuitukaapeli_NK : NK ;
+fun valokuva_NK : NK ;
+fun valokuvaaja_NK : NK ;
+fun valokuvaamo_NK : NK ;
+fun valokuvakansio_NK : NK ;
+fun valokuvamainen_NK : NK ;
+fun valokuvamalli_NK : NK ;
+fun valokuvamontaasi_NK : NK ;
+fun valokuvana'yttely_NK : NK ;
+fun valokuvapaperi_NK : NK ;
+fun valokuvasuurennos_NK : NK ;
+fun valokuvataide_NK : NK ;
+fun valokuvaus_NK : NK ;
+fun valokuvauskamera_NK : NK ;
+fun valokuvauskilpailu_NK : NK ;
+fun valokuvausliike_NK : NK ;
+fun valokuvaussafari_NK : NK ;
+fun valokuvaustarvike_NK : NK ;
+fun valokuvaustekniikka_NK : NK ;
+fun valokvantti_NK : NK ;
+fun valokyna'_NK : NK ;
+fun valokytkin_NK : NK ;
+fun valoladonta_NK : NK ;
+fun valolatoja_NK : NK ;
+fun valola'hde_NK : NK ;
+fun valola'ikka'_NK : NK ;
+fun valola'iska'_NK : NK ;
+fun valomainos_NK : NK ;
+fun valomajakka_NK : NK ;
+fun valomeri_NK : NK ;
+fun valomerkki_NK : NK ;
+fun valomuisti_NK : NK ;
+fun valonappula_NK : NK ;
+fun valopakoinen_NK : NK ;
+fun valopatruuna_NK : NK ;
+fun valopetroli_NK : NK ;
+fun valopiha_NK : NK ;
+fun valopilkku_NK : NK ;
+fun valopiste_NK : NK ;
+fun valopistooli_NK : NK ;
+fun valopoiju_NK : NK ;
+fun valopo'yta'_NK : NK ;
+fun valoraketti_NK : NK ;
+fun valoreaktio_NK : NK ;
+fun valoshow_NK : NK ;
+fun valosa'hko'_NK : NK ;
+fun valosa'hko'inen_NK : NK ;
+fun valosa'hko'tys_NK : NK ;
+fun valotaide_NK : NK ;
+fun valotaulu_NK : NK ;
+fun valotehoste_NK : NK ;
+fun valoteksti_NK : NK ;
+fun valotiheys_NK : NK ;
+fun valotusarvo_NK : NK ;
+fun valotusmittari_NK : NK ;
+fun valotusvirhe_NK : NK ;
+--? fun valourut_NK : NK ;
+fun valoverho_NK : NK ;
+fun valovirta_NK : NK ;
+fun valovoima_NK : NK ;
+fun valovoimainen_NK : NK ;
+fun valovuosi_NK : NK ;
+fun valoa'rsyke_NK : NK ;
+fun valssauskone_NK : NK ;
+fun valssauslaitos_NK : NK ;
+fun valssikone_NK : NK ;
+fun valssilaitos_NK : NK ;
+fun valtaannousu_NK : NK ;
+fun valtaanpa'a'sy_NK : NK ;
+fun valtaantulo_NK : NK ;
+fun valta_asema_NK : NK ;
+fun valtaenemmisto'_NK : NK ;
+fun valtaistuin_NK : NK ;
+fun valtaistuinpuhe_NK : NK ;
+fun valtakamppailu_NK : NK ;
+fun valtakausi_NK : NK ;
+fun valtakieli_NK : NK ;
+fun valtakirja_NK : NK ;
+fun valtakulttuuri_NK : NK ;
+fun valtakunta_NK : NK ;
+fun valtalaji_NK : NK ;
+fun valtalehti_NK : NK ;
+fun valtameri_NK : NK ;
+fun valtamerialus_NK : NK ;
+fun valtameripurjehdus_NK : NK ;
+fun valtameriristeily_NK : NK ;
+fun valtaoikeus_NK : NK ;
+fun valtaoja_NK : NK ;
+fun valtaosa_NK : NK ;
+fun valtapeli_NK : NK ;
+fun valtapiiri_NK : NK ;
+fun valtapolitiikka_NK : NK ;
+fun valtapuolue_NK : NK ;
+fun valtapuu_NK : NK ;
+fun valtapyrkimys_NK : NK ;
+fun valtarakenne_NK : NK ;
+fun valtaryhmittyma'_NK : NK ;
+fun valtasuoni_NK : NK ;
+fun valtataistelu_NK : NK ;
+fun valtatie_NK : NK ;
+fun valtatieverkko_NK : NK ;
+fun valtatyhjio'_NK : NK ;
+fun valtavirta_NK : NK ;
+fun valtavirtaus_NK : NK ;
+fun valtava'ri_NK : NK ;
+fun valtava'yla'_NK : NK ;
+fun valtimopunos_NK : NK ;
+fun valtimotulehdus_NK : NK ;
+fun valtimoveri_NK : NK ;
+fun valtioelin_NK : NK ;
+fun valtiojohtoinen_NK : NK ;
+fun valtioja'rjestys_NK : NK ;
+fun valtiokoneisto_NK : NK ;
+fun valtiolaiva_NK : NK ;
+fun valtioliitto_NK : NK ;
+fun valtiolippu_NK : NK ;
+fun valtiomahti_NK : NK ;
+fun valtiomies_NK : NK ;
+fun valtiomiestaito_NK : NK ;
+fun valtiomiesteko_NK : NK ;
+fun valtiomuoto_NK : NK ;
+fun valtioneuvos_NK : NK ;
+fun valtioneuvosto_NK : NK ;
+fun valtionhoitajapuolue_NK : NK ;
+fun valtiopetos_NK : NK ;
+fun valtiorikos_NK : NK ;
+fun valtiosalaisuus_NK : NK ;
+fun valtiosihteeri_NK : NK ;
+fun valtiosopimus_NK : NK ;
+fun valtiososialismi_NK : NK ;
+fun valtiosa'a'nto'_NK : NK ;
+fun valtiosa'a'nto'oikeus_NK : NK ;
+fun valtiotiede_NK : NK ;
+fun valtiovalta_NK : NK ;
+fun valtiovierailu_NK : NK ;
+fun valtioviisas_NK : NK ;
+fun valtioviisaus_NK : NK ;
+fun valttikortti_NK : NK ;
+fun valttia'ssa'_NK : NK ;
+fun valtuuskirja_NK : NK ;
+fun valtuuskirje_NK : NK ;
+fun valtuuskunta_NK : NK ;
+fun valtuuslaki_NK : NK ;
+fun valtuustoryhma'_NK : NK ;
+fun valubetoni_NK : NK ;
+fun valumassa_NK : NK ;
+fun valumavesi_NK : NK ;
+fun valumetalli_NK : NK ;
+fun valumuotti_NK : NK ;
+fun valurauta_NK : NK ;
+fun valurautainen_NK : NK ;
+fun valurautapata_NK : NK ;
+fun valutera's_NK : NK ;
+fun valutuote_NK : NK ;
+fun valuuttabaari_NK : NK ;
+fun valuuttadiileri_NK : NK ;
+fun valuuttaindeksi_NK : NK ;
+fun valuuttakauppa_NK : NK ;
+fun valuuttakeinottelu_NK : NK ;
+fun valuuttakori_NK : NK ;
+fun valuuttakurssi_NK : NK ;
+fun valuuttaka'a'rme_NK : NK ;
+fun valuuttaluotto_NK : NK ;
+--? fun valuuttamarkkinat_NK : NK ;
+fun valuuttamyyma'la'_NK : NK ;
+fun valuuttanoteeraus_NK : NK ;
+fun valuuttaosasto_NK : NK ;
+fun valuuttapako_NK : NK ;
+fun valuuttapolitiikka_NK : NK ;
+fun valuuttaputki_NK : NK ;
+fun valuuttarahasto_NK : NK ;
+fun valuuttatappio_NK : NK ;
+fun valuuttatili_NK : NK ;
+fun valuuttavaranto_NK : NK ;
+fun valuvika_NK : NK ;
+fun valveillaoloaika_NK : NK ;
+fun valvetila_NK : NK ;
+fun valveuni_NK : NK ;
+fun valvontajoukko_NK : NK ;
+fun valvontakamera_NK : NK ;
+fun valvontakeskus_NK : NK ;
+fun valvontakomissio_NK : NK ;
+fun valvontapeili_NK : NK ;
+fun valvontapo'yta'_NK : NK ;
+fun valvontataulu_NK : NK ;
+fun valvontatelevisio_NK : NK ;
+fun vammaisuusaste_NK : NK ;
+fun vanavesi_NK : NK ;
+fun vanerikoivu_NK : NK ;
+fun vanerilevy_NK : NK ;
+fun vaneriteollisuus_NK : NK ;
+fun vanhakantainen_NK : NK ;
+fun vanhatyylinen_NK : NK ;
+fun vanhustyo'_NK : NK ;
+fun vanhuusela'ke_NK : NK ;
+fun vanhuusika'_NK : NK ;
+fun vaniljaja'a'telo'_NK : NK ;
+fun vaniljakastike_NK : NK ;
+fun vaniljasokeri_NK : NK ;
+fun vaniljatanko_NK : NK ;
+fun vanilliinisokeri_NK : NK ;
+fun vankikarkuri_NK : NK ;
+fun vankikoppi_NK : NK ;
+fun vankilakapina_NK : NK ;
+fun vankilakundi_NK : NK ;
+fun vankilaoikeus_NK : NK ;
+fun vankilapappi_NK : NK ;
+fun vankilapsykiatri_NK : NK ;
+fun vankilapsykiatria_NK : NK ;
+fun vankileiri_NK : NK ;
+fun vankiselli_NK : NK ;
+fun vankityrma'_NK : NK ;
+fun vankityo'_NK : NK ;
+fun vankkaharteinen_NK : NK ;
+fun vankkalihaksinen_NK : NK ;
+fun vankkaoksainen_NK : NK ;
+fun vannehame_NK : NK ;
+fun vannesaha_NK : NK ;
+fun vannetera's_NK : NK ;
+fun vanukirjonta_NK : NK ;
+fun vanupuikko_NK : NK ;
+fun vanutukko_NK : NK ;
+fun vanutuppo_NK : NK ;
+fun vanuta'yte_NK : NK ;
+fun vanuta'ytteinen_NK : NK ;
+fun vapaaehtoinen_AK : AK ;
+fun vapaaehtoisuus_NK : NK ;
+fun vapaaheittoviiva_NK : NK ;
+fun vapaakauppasopimus_NK : NK ;
+fun vapaakiva'a'riammunta_NK : NK ;
+fun vapaalippulainen_NK : NK ;
+fun vapaamielisyys_NK : NK ;
+fun vapaamittainen_NK : NK ;
+fun vapaamuotoinen_AK : AK ;
+fun vapaamuotoisuus_NK : NK ;
+fun vapaamuurarija'rjesto'_NK : NK ;
+fun vapaamuurariloosi_NK : NK ;
+fun vapaapalokuntalainen_NK : NK ;
+fun vapaapistooliammunta_NK : NK ;
+fun vapaapotku_NK : NK ;
+fun vapaarytminen_NK : NK ;
+fun vapaarytmisyys_NK : NK ;
+fun vapaavarsikone_NK : NK ;
+fun vapausrangaistus_NK : NK ;
+fun vapaussota_NK : NK ;
+fun vapaussoturi_NK : NK ;
+fun vapaustaistelija_NK : NK ;
+fun vapaustaistelu_NK : NK ;
+fun vapautusarmeija_NK : NK ;
+fun vapautusja'rjesto'_NK : NK ;
+fun vapautusliike_NK : NK ;
+fun vapautusrintama_NK : NK ;
+fun vappuaatto_NK : NK ;
+fun vappuhattu_NK : NK ;
+fun vappuheila_NK : NK ;
+fun vappuhuiska_NK : NK ;
+fun vappuhumu_NK : NK ;
+fun vappujuhla_NK : NK ;
+fun vappukulkue_NK : NK ;
+fun vappumarssi_NK : NK ;
+fun vappunaamari_NK : NK ;
+fun vappupallo_NK : NK ;
+fun vappusima_NK : NK ;
+fun vappuviuhka_NK : NK ;
+fun vara_amiraali_NK : NK ;
+fun vara_avain_NK : NK ;
+fun varahenkilo'_NK : NK ;
+fun varainhoitokausi_NK : NK ;
+fun varainhoitovuosi_NK : NK ;
+fun varajohtaja_NK : NK ;
+fun varaja'sen_NK : NK ;
+fun varallaolo_NK : NK ;
+fun varallaoloaika_NK : NK ;
+fun varallisuusasema_NK : NK ;
+fun varallisuusoikeus_NK : NK ;
+fun varallisuusrikos_NK : NK ;
+fun varallisuusvero_NK : NK ;
+fun varamiehinen_NK : NK ;
+fun varamiehisto'_NK : NK ;
+fun varamiehitys_NK : NK ;
+fun varamies_NK : NK ;
+fun varanotaari_NK : NK ;
+fun varaosa_NK : NK ;
+fun varaosamyyja'_NK : NK ;
+fun varaosamyyma'la'_NK : NK ;
+fun varapyo'ra'_NK : NK ;
+fun vararahasto_NK : NK ;
+fun vararavinto_NK : NK ;
+fun vararehtori_NK : NK ;
+fun varareitti_NK : NK ;
+fun vararengas_NK : NK ;
+fun vararikko_NK : NK ;
+fun varasha'lytin_NK : NK ;
+fun varasjoukkio_NK : NK ;
+fun varaskopla_NK : NK ;
+fun varasliiga_NK : NK ;
+fun varasla'hto'_NK : NK ;
+fun varastoalue_NK : NK ;
+fun varastohotelli_NK : NK ;
+fun varastohuone_NK : NK ;
+fun varastohylly_NK : NK ;
+fun varastokuiva_NK : NK ;
+fun varastoluettelo_NK : NK ;
+fun varastomies_NK : NK ;
+fun varastomyyma'la'_NK : NK ;
+fun varastomyynti_NK : NK ;
+fun varastopaikka_NK : NK ;
+fun varastopa'a'llikko'_NK : NK ;
+fun varastorakennus_NK : NK ;
+fun varastoravinto_NK : NK ;
+fun varastosiilo_NK : NK ;
+fun varastosolukko_NK : NK ;
+fun varastotappio_NK : NK ;
+fun varastotauti_NK : NK ;
+fun varastotavara_NK : NK ;
+fun varastotila_NK : NK ;
+fun varastotuholainen_NK : NK ;
+fun varatie_NK : NK ;
+fun varattomuustodistus_NK : NK ;
+fun varatuomari_NK : NK ;
+fun varauskyky_NK : NK ;
+fun varausmetsa'_NK : NK ;
+fun varaustila_NK : NK ;
+fun varaustupa_NK : NK ;
+fun varavarjo_NK : NK ;
+fun varaventtiili_NK : NK ;
+fun varavoimala_NK : NK ;
+fun varhoho'yla'_NK : NK ;
+fun variaatiolaskenta_NK : NK ;
+fun varieteelaulaja_NK : NK ;
+fun varieteetaiteilija_NK : NK ;
+fun varieteeteatteri_NK : NK ;
+fun varislintu_NK : NK ;
+fun varistori_NK : NK ;
+fun varjoaine_NK : NK ;
+fun varjoainetutkimus_NK : NK ;
+fun varjoela'ma'_NK : NK ;
+fun varjohallitus_NK : NK ;
+fun varjokokous_NK : NK ;
+fun varjokuva_NK : NK ;
+fun varjoko'ynno's_NK : NK ;
+fun varjoliito_NK : NK ;
+fun varjolista_NK : NK ;
+fun varjonyrkkeily_NK : NK ;
+fun varjopaikka_NK : NK ;
+fun varjopuoli_NK : NK ;
+fun varjoteatteri_NK : NK ;
+fun varkausjuttu_NK : NK ;
+fun varkausvakuutus_NK : NK ;
+fun varmaka'tinen_NK : NK ;
+fun varmaotteinen_NK : NK ;
+fun varmatoiminen_NK : NK ;
+fun varmuuseta'isyys_NK : NK ;
+fun varmuusketju_NK : NK ;
+fun varmuuskopio_NK : NK ;
+fun varmuuskopiointi_NK : NK ;
+fun varmuuslanka_NK : NK ;
+fun varmuuslasi_NK : NK ;
+fun varmuuslukko_NK : NK ;
+fun varmuusvarasto_NK : NK ;
+fun varmuusva'line_NK : NK ;
+fun varoitushuuto_NK : NK ;
+fun varoituskolmio_NK : NK ;
+fun varoituslaukaus_NK : NK ;
+fun varoitusmerkki_NK : NK ;
+fun varoitustaulu_NK : NK ;
+fun varoitusvalo_NK : NK ;
+fun varoitusvilkku_NK : NK ;
+fun varoitusva'ri_NK : NK ;
+fun varoitusa'a'ni_NK : NK ;
+fun varoketaulu_NK : NK ;
+fun varovaisuustoimenpide_NK : NK ;
+fun varpaillaka'ynti_NK : NK ;
+fun varpaillaseisonta_NK : NK ;
+fun varpaillenousu_NK : NK ;
+fun varpuluuta_NK : NK ;
+fun varrasgrilli_NK : NK ;
+fun varsijousi_NK : NK ;
+fun varsikenka'_NK : NK ;
+fun varsiluuta_NK : NK ;
+fun varsimukula_NK : NK ;
+fun varsinainen_AK : AK ;
+fun varsipisto_NK : NK ;
+fun varsiselleri_NK : NK ;
+fun varsiyo'kko'nen_NK : NK ;
+fun vartalotyyppi_NK : NK ;
+fun vartalovoide_NK : NK ;
+fun varteenotto_NK : NK ;
+fun vartioalus_NK : NK ;
+fun vartioasema_NK : NK ;
+fun vartiointiliike_NK : NK ;
+fun vartiokierros_NK : NK ;
+fun vartiokoira_NK : NK ;
+fun vartiokoju_NK : NK ;
+fun vartiolaiva_NK : NK ;
+fun vartiomies_NK : NK ;
+fun vartiopaikka_NK : NK ;
+fun vartiopalvelus_NK : NK ;
+fun vartioparaati_NK : NK ;
+fun vartiopa'a'llikko'_NK : NK ;
+fun vartiosotilas_NK : NK ;
+fun vartiotehta'va'_NK : NK ;
+fun vartiotorni_NK : NK ;
+fun vartiotupa_NK : NK ;
+fun vartiovene_NK : NK ;
+fun vartiovuoro_NK : NK ;
+fun varttikilo_NK : NK ;
+fun varttitunti_NK : NK ;
+fun varuillaanolo_NK : NK ;
+fun varusesine_NK : NK ;
+fun varuskunta_NK : NK ;
+fun varuskuntakaupunki_NK : NK ;
+fun varuskuntasairaala_NK : NK ;
+fun varusmies_NK : NK ;
+fun varusmiespalvelus_NK : NK ;
+fun varusnainen_NK : NK ;
+fun varusohjelma_NK : NK ;
+fun varusohjelmisto_NK : NK ;
+fun varustelukierre_NK : NK ;
+fun varustelukilpa_NK : NK ;
+fun varustelukilpailu_NK : NK ;
+fun varustetaso_NK : NK ;
+fun varusvarasto_NK : NK ;
+fun varvasaskel_NK : NK ;
+fun varvasastuja_NK : NK ;
+fun varvaskenka'_NK : NK ;
+fun varvaslauta_NK : NK ;
+fun varvasluu_NK : NK ;
+fun varvasnivel_NK : NK ;
+fun varvassandaali_NK : NK ;
+fun varvasseisonta_NK : NK ;
+fun varvastanssi_NK : NK ;
+fun varvastossu_NK : NK ;
+fun varvasva'li_NK : NK ;
+fun vasallimaa_NK : NK ;
+fun vasallivaltio_NK : NK ;
+fun vasarajuotin_NK : NK ;
+fun vasarakirves_NK : NK ;
+fun vasarakirveskulttuuri_NK : NK ;
+fun vasaramies_NK : NK ;
+fun vasemmistodiktatuuri_NK : NK ;
+fun vasemmistoenemmisto'_NK : NK ;
+fun vasemmistohallitus_NK : NK ;
+fun vasemmistolainen_AK : AK ;
+fun vasemmistolehdisto'_NK : NK ;
+fun vasemmistolehti_NK : NK ;
+fun vasemmistopiiri_NK : NK ;
+fun vasemmistopoliitikko_NK : NK ;
+fun vasemmistopolitiikka_NK : NK ;
+fun vasemmistopuolue_NK : NK ;
+fun vasemmistosiipi_NK : NK ;
+fun vasenkierteinen_NK : NK ;
+fun vasenka'tinen_AK : AK ;
+fun vasenka'tisyys_NK : NK ;
+fun vasikkahaka_NK : NK ;
+fun vasikkahyytelo'_NK : NK ;
+fun vasikkakarsina_NK : NK ;
+fun vasikkamainen_NK : NK ;
+fun vasikkaturkki_NK : NK ;
+fun vaskikala_NK : NK ;
+fun vaskika'a'rme_NK : NK ;
+fun vaskipasuuna_NK : NK ;
+fun vaskipuhallin_NK : NK ;
+fun vaskiyhtye_NK : NK ;
+fun vasta_aallokko_NK : NK ;
+fun vasta_aihe_NK : NK ;
+fun vasta_aiheinen_NK : NK ;
+fun vasta_aine_NK : NK ;
+fun vastaajapuoli_NK : NK ;
+fun vasta_alkaja_NK : NK ;
+fun vastaanotin_NK : NK ;
+fun vastaanottaja_NK : NK ;
+fun vastaanottava_AK : AK ;
+fun vastaanotto_NK : NK ;
+fun vastaanottoapulainen_NK : NK ;
+fun vastaanottoavustaja_NK : NK ;
+fun vastaanottohuone_NK : NK ;
+fun vastaanottokomitea_NK : NK ;
+fun vastaanottokyky_NK : NK ;
+fun vastaanottokykyinen_NK : NK ;
+fun vastaanottoseremonia_NK : NK ;
+fun vastaanottotarkastus_NK : NK ;
+fun vastaanottotodistus_NK : NK ;
+fun vastaanottovirkailija_NK : NK ;
+fun vastaanpano_NK : NK ;
+fun vastaansanomaton_NK : NK ;
+fun vastaantulija_NK : NK ;
+fun vastaantulo_NK : NK ;
+fun vastaantulolaina_NK : NK ;
+fun vasta_aurinko_NK : NK ;
+fun vastaehdokas_NK : NK ;
+fun vastaehdotus_NK : NK ;
+fun vastahanka_NK : NK ;
+fun vastahankainen_NK : NK ;
+fun vastahiukkanen_NK : NK ;
+fun vastahuomautus_NK : NK ;
+fun vastahyo'kka'ys_NK : NK ;
+fun vastaisku_NK : NK ;
+fun vastaiskukyky_NK : NK ;
+fun vastaiskumoottori_NK : NK ;
+fun vastajoukkue_NK : NK ;
+fun vastakaiku_NK : NK ;
+fun vastakappale_NK : NK ;
+fun vastakarva_NK : NK ;
+fun vastakauppa_NK : NK ;
+fun vastakirja_NK : NK ;
+fun vastakkainasettelu_NK : NK ;
+fun vastakohtainen_NK : NK ;
+fun vastakohtaisuus_NK : NK ;
+fun vastakulttuuri_NK : NK ;
+fun vastakysymys_NK : NK ;
+fun vastalahja_NK : NK ;
+fun vastalaskos_NK : NK ;
+fun vastalause_NK : NK ;
+fun vastalauselakko_NK : NK ;
+fun vastaleiri_NK : NK ;
+fun vastalevy_NK : NK ;
+fun vastaluku_NK : NK ;
+fun vastala'a'ke_NK : NK ;
+fun vastamaa_NK : NK ;
+fun vastamerkki_NK : NK ;
+fun vastamyrkky_NK : NK ;
+fun vastama'ki_NK : NK ;
+--? fun vastanainut_NK : NK ;
+fun vastana'yttelija'_NK : NK ;
+fun vastaosto_NK : NK ;
+fun vastaote_NK : NK ;
+fun vastapaine_NK : NK ;
+fun vastapaineturbiini_NK : NK ;
+fun vastapainevoimala_NK : NK ;
+fun vastapaino_NK : NK ;
+fun vastapallo_NK : NK ;
+fun vastapalvelus_NK : NK ;
+fun vastapelaaja_NK : NK ;
+fun vastapeluri_NK : NK ;
+fun vastapooli_NK : NK ;
+fun vastapuhelu_NK : NK ;
+fun vastapuikea_NK : NK ;
+fun vastapuoli_NK : NK ;
+fun vastapa'inen_NK : NK ;
+fun vastapa'iva'inen_NK : NK ;
+fun vastarakkaus_NK : NK ;
+fun vastaranta_NK : NK ;
+fun vastareaktio_NK : NK ;
+fun vastarinne_NK : NK ;
+fun vastarinta_NK : NK ;
+fun vastarintaliike_NK : NK ;
+fun vastarintamies_NK : NK ;
+fun vastarintapesa'ke_NK : NK ;
+fun vastasiirto_NK : NK ;
+fun vastaskoivu_NK : NK ;
+fun vastasukainen_NK : NK ;
+fun vastasuunta_NK : NK ;
+fun vastasuuntainen_NK : NK ;
+fun vastatakaus_NK : NK ;
+fun vastatarjous_NK : NK ;
+fun vastatervehdys_NK : NK ;
+fun vastatoimenpide_NK : NK ;
+fun vastatoimi_NK : NK ;
+fun vastatuuli_NK : NK ;
+fun vastauskirje_NK : NK ;
+fun vastauskortti_NK : NK ;
+fun vastauskuponki_NK : NK ;
+fun vastauslomake_NK : NK ;
+fun vastausla'hetys_NK : NK ;
+fun vastausnootti_NK : NK ;
+fun vastauspuhe_NK : NK ;
+fun vastaussignaali_NK : NK ;
+fun vastaussa'hke_NK : NK ;
+fun vastavaikutus_NK : NK ;
+fun vastavaikutusvoima_NK : NK ;
+fun vastavakoilu_NK : NK ;
+fun vastavalo_NK : NK ;
+fun vastavalosuoja_NK : NK ;
+fun vastaveto_NK : NK ;
+fun vastavierailu_NK : NK ;
+fun vastavirta_NK : NK ;
+fun vastavirtaus_NK : NK ;
+fun vastavoima_NK : NK ;
+fun vastavuoroinen_AK : AK ;
+fun vastava'ite_NK : NK ;
+fun vastaa'a'ni_NK : NK ;
+fun vastenmielisyys_NK : NK ;
+fun vastentahtoinen_AK : AK ;
+fun vastentahtoisuus_NK : NK ;
+fun vastikekauppa_NK : NK ;
+fun vastingeeni_NK : NK ;
+fun vastinkromosomi_NK : NK ;
+fun vastinkulma_NK : NK ;
+fun vastinlevy_NK : NK ;
+fun vastinpari_NK : NK ;
+fun vastinpiste_NK : NK ;
+fun vastoinka'yminen_NK : NK ;
+fun vastuslanka_NK : NK ;
+fun vastustushalu_NK : NK ;
+fun vastustushaluinen_AK : AK ;
+fun vastustuskyky_NK : NK ;
+fun vastustuskykyinen_NK : NK ;
+fun vastustuskyvyto'n_NK : NK ;
+fun vastustusmieli_NK : NK ;
+fun vastuualue_NK : NK ;
+fun vastuuhenkilo'_NK : NK ;
+fun vastuuvakuutus_NK : NK ;
+fun vastuuvapaus_NK : NK ;
+fun vatjalainen_NK : NK ;
+fun vatsaeva'_NK : NK ;
+fun vatsaflunssa_NK : NK ;
+fun vatsahappo_NK : NK ;
+fun vatsakalvo_NK : NK ;
+fun vatsakatarri_NK : NK ;
+fun vatsakipu_NK : NK ;
+fun vatsalaukku_NK : NK ;
+fun vatsalauta_NK : NK ;
+fun vatsalihas_NK : NK ;
+fun vatsanahka_NK : NK ;
+fun vatsaontelo_NK : NK ;
+fun vatsapaita_NK : NK ;
+fun vatsapuoli_NK : NK ;
+fun vatsasairaus_NK : NK ;
+fun vatsatanssi_NK : NK ;
+fun vatsatanssija_NK : NK ;
+fun vatsatauti_NK : NK ;
+fun vatsatautinen_NK : NK ;
+fun vatsavaiva_NK : NK ;
+fun vatsavaivainen_NK : NK ;
+fun vattuhillo_NK : NK ;
+fun vattukuoriainen_NK : NK ;
+fun vattuka'rsa'ka's_NK : NK ;
+fun vattumato_NK : NK ;
+fun vattupensas_NK : NK ;
+fun vauhdinottopaikka_NK : NK ;
+fun vauhdinottorata_NK : NK ;
+fun vauhdituslakko_NK : NK ;
+fun vauhtiaskel_NK : NK ;
+fun vauhtihirvio'_NK : NK ;
+fun vauhtihurjastelu_NK : NK ;
+fun vauhtihyppy_NK : NK ;
+fun vauhtika'vely_NK : NK ;
+fun vauhtima'ki_NK : NK ;
+fun vauhtipyo'ra'_NK : NK ;
+fun vauhtiraita_NK : NK ;
+fun vauhtirata_NK : NK ;
+fun vauhtisokea_NK : NK ;
+fun vauhtisokeus_NK : NK ;
+fun vaunujono_NK : NK ;
+fun vaunukaappi_NK : NK ;
+fun vaunulasti_NK : NK ;
+fun vauvaika'_NK : NK ;
+fun vauvaika'inen_NK : NK ;
+fun vauvakirja_NK : NK ;
+fun vauvakuume_NK : NK ;
+fun vauvala_NK : NK ;
+fun vauvalanka_NK : NK ;
+fun vauvasaippua_NK : NK ;
+fun vauvasampoo_NK : NK ;
+fun vauvauinti_NK : NK ;
+fun vauvavoide_NK : NK ;
+fun vauveli_NK : NK ;
+fun vehna'norasmehu_NK : NK ;
+fun veijariromaani_NK : NK ;
+fun veikkauskierros_NK : NK ;
+fun veikkauskuponki_NK : NK ;
+fun veikkauskysymys_NK : NK ;
+fun veikkausrivi_NK : NK ;
+fun veikkausvoitto_NK : NK ;
+fun veistosryhma'_NK : NK ;
+fun veistotaide_NK : NK ;
+fun veitikkamainen_AK : AK ;
+fun veitsikytkin_NK : NK ;
+fun veitsitukki_NK : NK ;
+fun vekkari_1_NK : NK ;
+fun vekkari_2_NK : NK ;
+fun vekkihame_NK : NK ;
+fun vekkuli_NK : NK ;
+fun vekotin_NK : NK ;
+fun vekselikierre_NK : NK ;
+fun vekselilomake_NK : NK ;
+fun vekselipetos_NK : NK ;
+fun vekseliprotesti_NK : NK ;
+fun vekselisaaminen_NK : NK ;
+fun vekselisaatava_NK : NK ;
+fun vekselisumma_NK : NK ;
+fun vekselitakaus_NK : NK ;
+fun vekselitunnuste_NK : NK ;
+fun vekselivelallinen_NK : NK ;
+fun vekselivetoinen_NK : NK ;
+fun vekselivetoisuus_NK : NK ;
+fun vektori_NK : NK ;
+fun vektorianalyysi_NK : NK ;
+fun vektorilaskenta_NK : NK ;
+fun velholehti_NK : NK ;
+fun velikulta_NK : NK ;
+fun velimies_NK : NK ;
+fun velipekka_NK : NK ;
+fun velipoika_NK : NK ;
+fun velipuoli_NK : NK ;
+fun veljesja'rjesto'_NK : NK ;
+fun veljeskansa_NK : NK ;
+fun veljeskunta_NK : NK ;
+fun veljesliitto_NK : NK ;
+fun veljespuolue_NK : NK ;
+fun veljessarja_NK : NK ;
+fun veljessota_NK : NK ;
+fun velkaja'rjestely_NK : NK ;
+fun velkaja'rjestelyhakemus_NK : NK ;
+fun velkakierre_NK : NK ;
+fun velkakiinnitys_NK : NK ;
+fun velkakirja_NK : NK ;
+fun velkakuorma_NK : NK ;
+fun velkaloukku_NK : NK ;
+fun velkaneuvoja_NK : NK ;
+fun velkaneuvonta_NK : NK ;
+fun velkaorja_NK : NK ;
+fun velkaorjuus_NK : NK ;
+fun velkasaneeraus_NK : NK ;
+fun velkasitoumus_NK : NK ;
+fun velkasuhde_NK : NK ;
+fun velkasumma_NK : NK ;
+fun velkataakka_NK : NK ;
+fun velkavanki_NK : NK ;
+fun veloitushinta_NK : NK ;
+fun veloitusma'a'ra'_NK : NK ;
+fun veloitussumma_NK : NK ;
+fun veloitusyksikko'_NK : NK ;
+fun velvoiteoikeus_NK : NK ;
+fun velvollisuusvierailu_NK : NK ;
+fun vemmelsuoli_NK : NK ;
+fun vemmelsa'a'ri_NK : NK ;
+fun veneaukko_NK : NK ;
+fun veneilykausi_NK : NK ;
+fun veneilyliivi_NK : NK ;
+fun venekansa_NK : NK ;
+fun venekansi_NK : NK ;
+fun venekuljetus_NK : NK ;
+fun venekunta_NK : NK ;
+fun venekyyti_NK : NK ;
+fun venelaituri_NK : NK ;
+fun venelasti_NK : NK ;
+fun venemalli_NK : NK ;
+fun venemoottori_NK : NK ;
+fun venena'yttely_NK : NK ;
+fun venepaikka_NK : NK ;
+fun venepakolainen_NK : NK ;
+fun venepoliisi_NK : NK ;
+fun veneranta_NK : NK ;
+fun venesatama_NK : NK ;
+fun venesuoja_NK : NK ;
+fun venetyyppi_NK : NK ;
+fun venevaja_NK : NK ;
+fun venevalkama_NK : NK ;
+fun veneveista'mo'_NK : NK ;
+fun veneva'yla'_NK : NK ;
+fun venttiilikoneisto_NK : NK ;
+fun venytyslujuus_NK : NK ;
+fun verenkiertoelimisto'_NK : NK ;
+fun verenkiertoelin_NK : NK ;
+fun verenkiertoha'irio'_NK : NK ;
+fun verenpainela'a'ke_NK : NK ;
+fun verenpainemittari_NK : NK ;
+fun verenpainetauti_NK : NK ;
+fun verenvuototauti_NK : NK ;
+fun verhoilukangas_NK : NK ;
+fun verhokangas_NK : NK ;
+fun verholauta_NK : NK ;
+fun verholehti_NK : NK ;
+fun verhopilvi_NK : NK ;
+fun verhopuu_NK : NK ;
+fun verhopuusto_NK : NK ;
+fun verhorengas_NK : NK ;
+fun verhotanko_NK : NK ;
+fun veriappelsiini_NK : NK ;
+fun veriarvo_NK : NK ;
+fun veridoping_NK : NK ;
+fun verigreippi_NK : NK ;
+fun verihera_NK : NK ;
+fun verihyytyma'_NK : NK ;
+fun verijauho_NK : NK ;
+fun verijuotikas_NK : NK ;
+fun verikivi_NK : NK ;
+fun verikoe_NK : NK ;
+fun verikoira_NK : NK ;
+fun verikosto_NK : NK ;
+fun verileipa'_NK : NK ;
+fun verilo'yly_NK : NK ;
+fun verimakkara_NK : NK ;
+fun verinaarmu_NK : NK ;
+fun verinahka_NK : NK ;
+fun verina'yte_NK : NK ;
+fun veriohukainen_NK : NK ;
+fun veriohukas_NK : NK ;
+fun verioksennus_NK : NK ;
+fun veripahka_NK : NK ;
+fun veripalttu_NK : NK ;
+fun veripankki_NK : NK ;
+fun veripisara_NK : NK ;
+fun veriplasma_NK : NK ;
+fun veripunainen_NK : NK ;
+fun veripussi_NK : NK ;
+fun veriryhma'_NK : NK ;
+fun veriseerumi_NK : NK ;
+fun veriside_NK : NK ;
+fun verisolu_NK : NK ;
+fun verisukulainen_NK : NK ;
+fun verisuoni_NK : NK ;
+fun verisuonipunos_NK : NK ;
+fun verisuonisairaus_NK : NK ;
+fun verisuonisto_NK : NK ;
+fun verisuonitauti_NK : NK ;
+fun verisuonitukkeuma_NK : NK ;
+fun verisuonitulehdus_NK : NK ;
+fun verisuonitus_NK : NK ;
+fun verisyo'pa'_NK : NK ;
+fun veritahra_NK : NK ;
+fun veritankkaus_NK : NK ;
+fun veritartunta_NK : NK ;
+fun veritauti_NK : NK ;
+fun veriteko_NK : NK ;
+fun veritesti_NK : NK ;
+fun veritukko_NK : NK ;
+fun veritukos_NK : NK ;
+fun veritulppa_NK : NK ;
+fun verityo'_NK : NK ;
+fun veriuhri_NK : NK ;
+fun veriura_NK : NK ;
+fun verivaahtera_NK : NK ;
+fun veriveli_NK : NK ;
+fun veriveljeys_NK : NK ;
+fun veriviema'ri_NK : NK ;
+fun verivihollinen_NK : NK ;
+fun verivirta_NK : NK ;
+fun veriyska'_NK : NK ;
+fun veriysko's_NK : NK ;
+fun verkkoaita_NK : NK ;
+fun verkkoallas_NK : NK ;
+fun verkkoallaskasvatus_NK : NK ;
+fun verkkoha'kki_NK : NK ;
+fun verkkojata_NK : NK ;
+fun verkkoja'nnite_NK : NK ;
+fun verkkokalastus_NK : NK ;
+fun verkkokalvo_NK : NK ;
+fun verkkokangas_NK : NK ;
+fun verkkokassi_NK : NK ;
+fun verkkokudos_NK : NK ;
+fun verkkolaite_NK : NK ;
+fun verkkolaturi_NK : NK ;
+fun verkkomaha_NK : NK ;
+fun verkkomainonta_NK : NK ;
+fun verkkomeloni_NK : NK ;
+fun verkkomerkki_NK : NK ;
+fun verkkomuuntaja_NK : NK ;
+fun verkkoneulos_NK : NK ;
+fun verkkopaita_NK : NK ;
+fun verkkopallo_NK : NK ;
+fun verkkopeli_NK : NK ;
+fun verkkopitsi_NK : NK ;
+fun verkkopyynti_NK : NK ;
+fun verkkoraudoitus_NK : NK ;
+fun verkkoryhma'_NK : NK ;
+fun verkkoryhma'puhelu_NK : NK ;
+fun verkkosiipinen_NK : NK ;
+fun verkkosilma'_NK : NK ;
+fun verkkosolmu_NK : NK ;
+fun verkkosukka_NK : NK ;
+fun verkkosuoninen_NK : NK ;
+fun verkkovirhe_NK : NK ;
+fun verkkovirta_NK : NK ;
+fun veroaste_NK : NK ;
+fun veroasteikko_NK : NK ;
+fun veroennakko_NK : NK ;
+fun verohallinto_NK : NK ;
+fun verohelpotus_NK : NK ;
+fun verohelvetti_NK : NK ;
+fun verohuojennus_NK : NK ;
+fun veroilmoitus_NK : NK ;
+fun veroilmoituslomake_NK : NK ;
+fun verojohtaja_NK : NK ;
+fun veroja'a'ma'_NK : NK ;
+fun verokarhu_NK : NK ;
+fun verokeidas_NK : NK ;
+fun verokortti_NK : NK ;
+fun veroleikkuri_NK : NK ;
+fun verolippu_NK : NK ;
+fun veroluettelo_NK : NK ;
+fun veroluokka_NK : NK ;
+fun veromerkki_NK : NK ;
+fun veroministeri_NK : NK ;
+fun veromuistutus_NK : NK ;
+fun veronmaksukyky_NK : NK ;
+fun veronmaksukykyinen_NK : NK ;
+fun veronmaksukyvyto'n_NK : NK ;
+fun verona'yttely_NK : NK ;
+fun veropakolainen_NK : NK ;
+fun veroparatiisi_NK : NK ;
+fun veroperuste_NK : NK ;
+fun veropetos_NK : NK ;
+fun veropiiri_NK : NK ;
+fun veropohja_NK : NK ;
+fun veropolitiikka_NK : NK ;
+fun veroprosentti_NK : NK ;
+fun veroraha_NK : NK ;
+fun verorasitus_NK : NK ;
+fun verorikos_NK : NK ;
+fun veroruuvi_NK : NK ;
+fun verora'sti_NK : NK ;
+fun verosaatava_NK : NK ;
+fun veroselvitys_NK : NK ;
+fun verosopimus_NK : NK ;
+fun verotaakka_NK : NK ;
+fun verotalous_NK : NK ;
+fun verotarkastus_NK : NK ;
+fun verotoimisto_NK : NK ;
+fun verotulo_NK : NK ;
+fun verotusarvo_NK : NK ;
+fun verotuskohde_NK : NK ;
+fun verotusoikeus_NK : NK ;
+fun verotusperuste_NK : NK ;
+fun verotustodistus_NK : NK ;
+fun verotusvuosi_NK : NK ;
+fun verouudistus_NK : NK ;
+fun verovalitus_NK : NK ;
+fun verovalmistelu_NK : NK ;
+fun verovapaa_NK : NK ;
+fun verovapaus_NK : NK ;
+fun verovilppi_NK : NK ;
+fun verovirasto_NK : NK ;
+fun verovuosi_NK : NK ;
+fun verova'hennys_NK : NK ;
+fun veroa'yri_NK : NK ;
+fun verrokkiela'in_NK : NK ;
+fun verrokkipotilas_NK : NK ;
+fun verryttelyheitto_NK : NK ;
+--? fun verryttelyhousut_NK : NK ;
+fun verryttelyjuoksu_NK : NK ;
+fun verryttelyliike_NK : NK ;
+fun verryttelypuku_NK : NK ;
+fun verryttelypusero_NK : NK ;
+fun verryttelyvauhti_NK : NK ;
+fun versokasvi_NK : NK ;
+fun versosyo'pa'_NK : NK ;
+fun vertailuaineisto_NK : NK ;
+fun vertailuanalyysi_NK : NK ;
+fun vertailuaste_NK : NK ;
+fun vertailukelpoinen_NK : NK ;
+fun vertailukelpoisuus_NK : NK ;
+fun vertailukohde_NK : NK ;
+fun vertailuluku_NK : NK ;
+fun vertailumenetelma'_NK : NK ;
+fun vertailupohja_NK : NK ;
+fun vertailuryhma'_NK : NK ;
+fun vertauskohde_NK : NK ;
+fun vertauskuva_NK : NK ;
+fun vertauskuvallinen_NK : NK ;
+fun vertausluku_NK : NK ;
+fun vertausperuste_NK : NK ;
+fun vertikaalitaso_NK : NK ;
+fun vera'ja'puu_NK : NK ;
+fun vesakkomyrkky_NK : NK ;
+fun vesametsa'_NK : NK ;
+fun vesiallas_NK : NK ;
+fun vesialue_NK : NK ;
+fun vesiarvo_NK : NK ;
+fun vesiastia_NK : NK ;
+fun vesielio'_NK : NK ;
+fun vesiela'imisto'_NK : NK ;
+fun vesiela'in_NK : NK ;
+fun vesiela'ma'_NK : NK ;
+fun vesieriste_NK : NK ;
+fun vesieste_NK : NK ;
+fun vesihana_NK : NK ;
+fun vesihaude_NK : NK ;
+fun vesihauta_NK : NK ;
+fun vesiheina'_NK : NK ;
+fun vesihelmi_NK : NK ;
+fun vesiherne_NK : NK ;
+fun vesihieronta_NK : NK ;
+fun vesihiihto_NK : NK ;
+fun vesihiihta'ja'_NK : NK ;
+fun vesihiisi_NK : NK ;
+fun vesihionta_NK : NK ;
+fun vesihiukkanen_NK : NK ;
+fun vesihuolto_NK : NK ;
+fun vesihuuhtelu_NK : NK ;
+fun vesihyo'nteinen_NK : NK ;
+fun vesiha'ma'ha'kki_NK : NK ;
+fun vesiho'yry_NK : NK ;
+fun vesijohto_NK : NK ;
+fun vesijohtoliike_NK : NK ;
+fun vesijohtoputki_NK : NK ;
+fun vesijohtoverkko_NK : NK ;
+fun vesijohtovesi_NK : NK ;
+fun vesijumppa_NK : NK ;
+fun vesija'tto'_NK : NK ;
+fun vesija'tto'maa_NK : NK ;
+fun vesija'a'hdytys_NK : NK ;
+fun vesikaapeli_NK : NK ;
+fun vesikaasu_NK : NK ;
+fun vesikaluste_NK : NK ;
+fun vesikalvo_NK : NK ;
+fun vesikampaus_NK : NK ;
+fun vesikannu_NK : NK ;
+fun vesikarahvi_NK : NK ;
+fun vesikaste_NK : NK ;
+fun vesikasvi_NK : NK ;
+fun vesikasvisto_NK : NK ;
+fun vesikattila_NK : NK ;
+fun vesikatto_NK : NK ;
+fun vesikauha_NK : NK ;
+fun vesikauhu_NK : NK ;
+fun vesikeha'_NK : NK ;
+fun vesikeli_NK : NK ;
+fun vesikelkka_NK : NK ;
+fun vesikello_NK : NK ;
+fun vesikerros_NK : NK ;
+fun vesiketju_NK : NK ;
+fun vesikirppu_NK : NK ;
+fun vesikivi_NK : NK ;
+fun vesiklosetti_NK : NK ;
+fun vesikoe_NK : NK ;
+fun vesikouru_NK : NK ;
+fun vesikrassi_NK : NK ;
+fun vesikuppi_NK : NK ;
+fun vesikuuntelu_NK : NK ;
+fun vesika'a'rme_NK : NK ;
+fun vesilaitos_NK : NK ;
+fun vesilammikko_NK : NK ;
+fun vesilasi_NK : NK ;
+fun vesilasillinen_NK : NK ;
+fun vesilasku_NK : NK ;
+fun vesilasti_NK : NK ;
+fun vesileima_NK : NK ;
+fun vesiletku_NK : NK ;
+fun vesilevinta'_NK : NK ;
+fun vesiliikenne_NK : NK ;
+fun vesiliikennejuopumus_NK : NK ;
+fun vesiliikunta_NK : NK ;
+fun vesiliirto_NK : NK ;
+fun vesilinja_NK : NK ;
+fun vesilinnusto_NK : NK ;
+fun vesilintu_NK : NK ;
+fun vesilisko_NK : NK ;
+fun vesilitra_NK : NK ;
+fun vesiliukoinen_NK : NK ;
+fun vesiliukoisuus_NK : NK ;
+fun vesiliuos_NK : NK ;
+fun vesillelaskutilaisuus_NK : NK ;
+fun vesilukko_NK : NK ;
+fun vesila'ta'kko'_NK : NK ;
+fun vesimaksu_NK : NK ;
+fun vesimassa_NK : NK ;
+fun vesimatka_NK : NK ;
+fun vesimeloni_NK : NK ;
+fun vesimies_NK : NK ;
+fun vesimikrobi_NK : NK ;
+fun vesimittari_NK : NK ;
+fun vesimolekyyli_NK : NK ;
+fun vesimylly_NK : NK ;
+fun vesimyyra'_NK : NK ;
+fun vesinokka_NK : NK ;
+fun vesinoro_NK : NK ;
+fun vesina'yte_NK : NK ;
+fun vesiohenteinen_NK : NK ;
+fun vesioikeus_NK : NK ;
+fun vesipallo_NK : NK ;
+fun vesipalloilija_NK : NK ;
+fun vesipalloilu_NK : NK ;
+fun vesipallojoukkue_NK : NK ;
+fun vesipata_NK : NK ;
+fun vesipatja_NK : NK ;
+fun vesipatsas_NK : NK ;
+fun vesipeite_NK : NK ;
+fun vesipera'_NK : NK ;
+fun vesipesu_NK : NK ;
+fun vesipeto_NK : NK ;
+fun vesipiippu_NK : NK ;
+fun vesipinta_NK : NK ;
+fun vesipisara_NK : NK ;
+fun vesipiste_NK : NK ;
+fun vesipitoinen_NK : NK ;
+fun vesipitoisuus_NK : NK ;
+fun vesipohjainen_NK : NK ;
+fun vesiposti_NK : NK ;
+fun vesipuhveli_NK : NK ;
+fun vesipula_NK : NK ;
+fun vesipumppu_NK : NK ;
+fun vesiputki_NK : NK ;
+fun vesiputous_NK : NK ;
+fun vesipyo'rre_NK : NK ;
+fun vesipyo'ra'_NK : NK ;
+fun vesipa'hkina'_NK : NK ;
+fun vesipa'a'_NK : NK ;
+fun vesipa'a'sky_NK : NK ;
+fun vesipo'ho'_NK : NK ;
+fun vesiraja_NK : NK ;
+fun vesirakennus_NK : NK ;
+fun vesirakennustekniikka_NK : NK ;
+fun vesirakennustyo'_NK : NK ;
+fun vesirakko_NK : NK ;
+fun vesirakkula_NK : NK ;
+fun vesiratas_NK : NK ;
+fun vesireaktori_NK : NK ;
+fun vesireitti_NK : NK ;
+fun vesiretkeily_NK : NK ;
+fun vesirikko_NK : NK ;
+fun vesirinkeli_NK : NK ;
+fun vesirinkila'_NK : NK ;
+fun vesirokko_NK : NK ;
+fun vesirokkoinen_NK : NK ;
+fun vesirokkovirus_NK : NK ;
+fun vesirutto_NK : NK ;
+fun vesiruukku_NK : NK ;
+fun vesiryo'ppy_NK : NK ;
+fun vesira'nni_NK : NK ;
+fun vesisaavi_NK : NK ;
+fun vesisade_NK : NK ;
+fun vesisammio_NK : NK ;
+fun vesisanko_NK : NK ;
+fun vesiselva'_NK : NK ;
+fun vesisiippa_NK : NK ;
+fun vesisiira_NK : NK ;
+fun vesiskootteri_NK : NK ;
+fun vesiskorpioni_NK : NK ;
+fun vesisto'alue_NK : NK ;
+fun vesisto'este_NK : NK ;
+fun vesisto'reitti_NK : NK ;
+fun vesisto'tiede_NK : NK ;
+fun vesisto'tutkimus_NK : NK ;
+fun vesisuihku_NK : NK ;
+fun vesisuihkumoottori_NK : NK ;
+fun vesisuksi_NK : NK ;
+fun vesisuoni_NK : NK ;
+fun vesisynnytys_NK : NK ;
+fun vesisa'ilio'_NK : NK ;
+fun vesisa'nky_NK : NK ;
+fun vesitaksi_NK : NK ;
+fun vesitalous_NK : NK ;
+fun vesitankki_NK : NK ;
+fun vesitaso_NK : NK ;
+fun vesitatar_NK : NK ;
+fun vesitie_NK : NK ;
+fun vesitiivis_NK : NK ;
+fun vesitilkka_NK : NK ;
+fun vesitilkkanen_NK : NK ;
+fun vesitilus_NK : NK ;
+fun vesitippa_NK : NK ;
+fun vesitorni_NK : NK ;
+fun vesiturbiini_NK : NK ;
+fun vesitykki_NK : NK ;
+fun vesitynnyri_NK : NK ;
+fun vesitystauti_NK : NK ;
+fun vesita'hti_NK : NK ;
+fun vesita'yte_NK : NK ;
+fun vesita'ytteinen_NK : NK ;
+fun vesiurheilu_NK : NK ;
+fun vesiurheilulaji_NK : NK ;
+--? fun vesiurut_NK : NK ;
+fun vesivaaka_NK : NK ;
+fun vesivahinko_NK : NK ;
+fun vesivaippa_NK : NK ;
+fun vesivaippatakka_NK : NK ;
+fun vesivako_NK : NK ;
+fun vesivaneri_NK : NK ;
+fun vesivarasto_NK : NK ;
+fun vesiviiva_NK : NK ;
+fun vesiviljely_NK : NK ;
+fun vesivirta_NK : NK ;
+fun vesivoima_NK : NK ;
+fun vesivoimakone_NK : NK ;
+fun vesivoimala_NK : NK ;
+fun vesivoimistelu_NK : NK ;
+fun vesiva'ri_NK : NK ;
+fun vesiva'rimaalaus_NK : NK ;
+fun vesiva'rinappi_NK : NK ;
+fun vesiva'rityo'_NK : NK ;
+fun vesiva'yla'_NK : NK ;
+fun vesia'mpa'ri_NK : NK ;
+fun vessapaperi_NK : NK ;
+fun veteraanipoliitikko_NK : NK ;
+fun vetoaisa_NK : NK ;
+fun vetoakseli_NK : NK ;
+fun vetoakselisto_NK : NK ;
+fun vetoapu_NK : NK ;
+fun vetoaura_NK : NK ;
+fun vetoauto_NK : NK ;
+fun vetoha'rka'_NK : NK ;
+fun vetojuhta_NK : NK ;
+fun vetokaappi_NK : NK ;
+fun vetokalusto_NK : NK ;
+fun vetoketju_NK : NK ;
+fun vetokoira_NK : NK ;
+fun vetokone_NK : NK ;
+fun vetokoukku_NK : NK ;
+fun vetoko'ysi_NK : NK ;
+fun vetolaatikko_NK : NK ;
+fun vetoliike_NK : NK ;
+fun vetolujuus_NK : NK ;
+fun vetoluukku_NK : NK ;
+fun vetomitta_NK : NK ;
+fun vetonaru_NK : NK ;
+fun vetonaula_NK : NK ;
+fun vetoniitti_NK : NK ;
+--? fun vetoniittipihdit_NK : NK ;
+fun vetonumero_NK : NK ;
+fun vetonuppi_NK : NK ;
+fun vetooja_NK : NK ;
+fun vetopasuuna_NK : NK ;
+fun vetoporo_NK : NK ;
+fun vetopyo'ra'sto'_NK : NK ;
+fun vetosolmu_NK : NK ;
+fun vetosuunta_NK : NK ;
+fun vetoteline_NK : NK ;
+fun vetouistelu_NK : NK ;
+fun vetouistin_NK : NK ;
+fun vetovaijeri_NK : NK ;
+fun vetovaunu_NK : NK ;
+fun vetovoima_NK : NK ;
+fun vetovoimainen_NK : NK ;
+fun veturihalli_NK : NK ;
+fun veturimiehisto'_NK : NK ;
+fun veturimies_NK : NK ;
+fun veturitalli_NK : NK ;
+fun vetykaasu_NK : NK ;
+fun vetyperoksidi_NK : NK ;
+fun vetypommi_NK : NK ;
+fun vetysidos_NK : NK ;
+fun vichyvesi_NK : NK ;
+fun videofilmi_NK : NK ;
+fun videokamera_NK : NK ;
+fun videokasetti_NK : NK ;
+fun videokirjasto_NK : NK ;
+fun videokuva_NK : NK ;
+fun videolaite_NK : NK ;
+fun videolevy_NK : NK ;
+fun videonauha_NK : NK ;
+fun videonauhoite_NK : NK ;
+fun videonauhoitus_NK : NK ;
+fun videonauhuri_NK : NK ;
+fun videoneuvottelu_NK : NK ;
+fun video_ohjelma_NK : NK ;
+fun videopaja_NK : NK ;
+fun videopeli_NK : NK ;
+fun videosignaali_NK : NK ;
+fun videotaide_NK : NK ;
+fun videotallenne_NK : NK ;
+fun videotekniikka_NK : NK ;
+fun videotykki_NK : NK ;
+fun videoviihde_NK : NK ;
+fun videovuokraamo_NK : NK ;
+fun vieha'tysvoima_NK : NK ;
+fun vieha'tysvoimainen_NK : NK ;
+fun vieja'maa_NK : NK ;
+fun viema'riaukko_NK : NK ;
+fun viema'rikaasu_NK : NK ;
+fun viema'rikaivo_NK : NK ;
+fun viema'rilaitos_NK : NK ;
+fun viema'riputki_NK : NK ;
+fun viema'riputkisto_NK : NK ;
+fun viema'risuoli_NK : NK ;
+fun viema'riverkko_NK : NK ;
+fun vientiartikkeli_NK : NK ;
+fun vientihinta_NK : NK ;
+fun vientikauppa_NK : NK ;
+fun vientikielto_NK : NK ;
+fun vientikiintio'_NK : NK ;
+fun vientikoulutus_NK : NK ;
+fun vientikysynta'_NK : NK ;
+fun vientiliike_NK : NK ;
+fun vientilisenssi_NK : NK ;
+fun vientiluotto_NK : NK ;
+fun vientilupa_NK : NK ;
+fun vientimaa_NK : NK ;
+fun vientimaksu_NK : NK ;
+fun vientimalli_NK : NK ;
+fun vientimallisto_NK : NK ;
+--? fun vientimarkkinat_NK : NK ;
+fun vientima'a'ra'_NK : NK ;
+fun vientina'yttely_NK : NK ;
+fun vientipalkinto_NK : NK ;
+fun vientipalkkio_NK : NK ;
+fun vientipolitiikka_NK : NK ;
+fun vientirajoitus_NK : NK ;
+fun vientisatama_NK : NK ;
+fun vientisopimus_NK : NK ;
+fun vientitakuu_NK : NK ;
+fun vientitavara_NK : NK ;
+fun vientiteollisuus_NK : NK ;
+fun vientituki_NK : NK ;
+fun vientituote_NK : NK ;
+fun vientivoittoinen_NK : NK ;
+fun vierailuasu_NK : NK ;
+fun vierailukutsu_NK : NK ;
+fun vierailuka'ynti_NK : NK ;
+fun vierailuna'yta'nto'_NK : NK ;
+fun vierashuone_NK : NK ;
+fun vierasjoukko_NK : NK ;
+fun vierasjoukkue_NK : NK ;
+fun vieraskielinen_NK : NK ;
+fun vieraskirja_NK : NK ;
+fun vieraskorea_NK : NK ;
+fun vieraskoreus_NK : NK ;
+fun vieraska'ynti_NK : NK ;
+fun vierasmaalainen_NK : NK ;
+fun vierasmaja_NK : NK ;
+fun vierasottelu_NK : NK ;
+fun vieraspaikkainen_NK : NK ;
+fun vieraspera'inen_NK : NK ;
+fun vieraspera'isyys_NK : NK ;
+fun vieraspo'yta'_NK : NK ;
+fun vierasrotuinen_NK : NK ;
+fun vierassatama_NK : NK ;
+fun vierassyntyinen_NK : NK ;
+fun vierassa'nky_NK : NK ;
+fun vierastalo_NK : NK ;
+fun vierastulva_NK : NK ;
+fun vierastunti_NK : NK ;
+fun vierasuskoinen_NK : NK ;
+fun vierasvara_NK : NK ;
+fun vierasvoitto_NK : NK ;
+fun vierasvoittoinen_NK : NK ;
+fun vierialue_NK : NK ;
+fun vierihoito_NK : NK ;
+fun vieroitushoito_NK : NK ;
+fun vieroitusoire_NK : NK ;
+fun vieroitusryhma'_NK : NK ;
+fun vieruskulma_NK : NK ;
+fun vierustoveri_NK : NK ;
+fun viestihiihto_NK : NK ;
+fun viestijoukkue_NK : NK ;
+fun viestijuoksu_NK : NK ;
+fun viestikalusto_NK : NK ;
+fun viestikapula_NK : NK ;
+fun viestikilpailu_NK : NK ;
+fun viestikomppania_NK : NK ;
+fun viestilappu_NK : NK ;
+fun viestimestaruus_NK : NK ;
+fun viestimestaruuskilpailu_NK : NK ;
+fun viestimiehisto'_NK : NK ;
+fun viestimies_NK : NK ;
+fun viestinhiihto_NK : NK ;
+fun viestinjuoksu_NK : NK ;
+fun viestinjuoksujoukkue_NK : NK ;
+fun viestintuoja_NK : NK ;
+fun viestinta'kanava_NK : NK ;
+fun viestinta'tekniikka_NK : NK ;
+fun viestinta'tiede_NK : NK ;
+fun viestinta'va'line_NK : NK ;
+fun viestinta'yhteys_NK : NK ;
+fun viestinuinti_NK : NK ;
+fun viestinvaihto_NK : NK ;
+fun viestinvieja'_NK : NK ;
+fun viestiosuus_NK : NK ;
+fun viestisuunnistus_NK : NK ;
+fun viestiuinti_NK : NK ;
+fun viestivoitto_NK : NK ;
+fun viestiva'line_NK : NK ;
+fun viestiyhteys_NK : NK ;
+fun viettienergia_NK : NK ;
+fun vihamielisyys_NK : NK ;
+fun vihamies_NK : NK ;
+fun vihanneskasvi_NK : NK ;
+fun vihanneskauppias_NK : NK ;
+fun vihanneskeitto_NK : NK ;
+fun vihanneskrassi_NK : NK ;
+fun vihanneslaji_NK : NK ;
+fun vihanneslajike_NK : NK ;
+fun vihannesleikkuri_NK : NK ;
+fun vihannesmaa_NK : NK ;
+fun vihannespalsta_NK : NK ;
+fun vihannespunkki_NK : NK ;
+fun vihannesruoka_NK : NK ;
+fun vihannessato_NK : NK ;
+fun vihannessa'ilyke_NK : NK ;
+fun vihannestarha_NK : NK ;
+fun vihannestori_NK : NK ;
+fun vihannesveitsi_NK : NK ;
+fun vihannesviljelma'_NK : NK ;
+fun vihannesviljely_NK : NK ;
+fun vihannesviljelys_NK : NK ;
+fun vihdaskoivu_NK : NK ;
+fun vihellyskonsertti_NK : NK ;
+fun vihellyspilli_NK : NK ;
+fun vihikoira_NK : NK ;
+fun vihivaunu_NK : NK ;
+fun vihkivesiastia_NK : NK ;
+fun vihrea'lehtinen_NK : NK ;
+fun vihrea'pukuinen_NK : NK ;
+fun vihrea'silma'inen_NK : NK ;
+fun vihurirokko_NK : NK ;
+fun vihurirokkoinen_NK : NK ;
+fun vihurirokkovirus_NK : NK ;
+fun viidakkolenna'tin_NK : NK ;
+fun viidakkopuhelin_NK : NK ;
+fun viidakkorumpu_NK : NK ;
+fun viidakkosota_NK : NK ;
+fun viidakkoveitsi_NK : NK ;
+fun viideskymmenes_NK : NK ;
+fun viidesosa_NK : NK ;
+fun viidessadas_NK : NK ;
+fun viihdekirja_NK : NK ;
+fun viihdekonsertti_NK : NK ;
+fun viihdekulttuuri_NK : NK ;
+fun viihdekuoro_NK : NK ;
+fun viihdelukemisto_NK : NK ;
+fun viihdemusiikki_NK : NK ;
+fun viihdeohjelma_NK : NK ;
+fun viihdeorkesteri_NK : NK ;
+fun viihdesovitus_NK : NK ;
+fun viihdetaiteilija_NK : NK ;
+fun viihdeteollisuus_NK : NK ;
+fun viihdytyskiertue_NK : NK ;
+fun viikatemies_NK : NK ;
+fun viikinkiaikainen_NK : NK ;
+fun viikinkialus_NK : NK ;
+fun viikinkihauta_NK : NK ;
+fun viikinkikulttuuri_NK : NK ;
+fun viikinkilaiva_NK : NK ;
+fun viikinkipa'a'llikko'_NK : NK ;
+fun viikinkiretki_NK : NK ;
+fun viikkoansio_NK : NK ;
+fun viikkojulkaisu_NK : NK ;
+fun viikkokatsaus_NK : NK ;
+fun viikkokausi_NK : NK ;
+fun viikkolehti_NK : NK ;
+fun viikkolepo_NK : NK ;
+fun viikkoliite_NK : NK ;
+fun viikkopalkka_NK : NK ;
+fun viikkopalkkainen_NK : NK ;
+fun viikkopa'ivyri_NK : NK ;
+fun viikkoraha_NK : NK ;
+fun viikkosiivous_NK : NK ;
+fun viikkotunti_NK : NK ;
+fun viikkovuokra_NK : NK ;
+fun viikonloppuisa'_NK : NK ;
+fun viikonloppumatka_NK : NK ;
+fun viikonloppuruuhka_NK : NK ;
+fun viiksikarva_NK : NK ;
+fun viiksiniekka_NK : NK ;
+fun viiksisiippa_NK : NK ;
+fun viiksisa'ie_NK : NK ;
+fun viikunapuu_NK : NK ;
+fun viilajauhe_NK : NK ;
+fun viilapenkki_NK : NK ;
+fun viiliastia_NK : NK ;
+fun viilikulho_NK : NK ;
+fun viilipytty_NK : NK ;
+fun viilupuu_NK : NK ;
+fun viimeaikainen_NK : NK ;
+fun viimeistelyharjoitus_NK : NK ;
+fun viimeistelyleiri_NK : NK ;
+fun viimeistelytyo'_NK : NK ;
+fun viimeistelyvaihe_NK : NK ;
+fun viimejouluinen_NK : NK ;
+fun viimekertainen_NK : NK ;
+fun viimekesa'inen_NK : NK ;
+fun viimekeva'inen_NK : NK ;
+fun viimekuinen_NK : NK ;
+fun viimepyha'inen_NK : NK ;
+fun viimesyksyinen_NK : NK ;
+fun viimetalvinen_NK : NK ;
+fun viimeviikkoinen_NK : NK ;
+fun viimevuotinen_NK : NK ;
+fun viimeo'inen_NK : NK ;
+fun viinabasso_NK : NK ;
+fun viinaho'yry_NK : NK ;
+fun viinakauppa_NK : NK ;
+fun viinalesti_NK : NK ;
+fun viinama'ki_NK : NK ;
+fun viinapannu_NK : NK ;
+fun viinapikari_NK : NK ;
+fun viinapullo_NK : NK ;
+fun viinapa'a'_NK : NK ;
+fun viinaryyppy_NK : NK ;
+fun viinatehdas_NK : NK ;
+fun viinatrokari_NK : NK ;
+fun viinialue_NK : NK ;
+fun viinietikka_NK : NK ;
+fun viinihappo_NK : NK ;
+fun viinihiiva_NK : NK ;
+fun viinikaappi_NK : NK ;
+fun viinikarahvi_NK : NK ;
+fun viinikellari_NK : NK ;
+fun viinikulttuuri_NK : NK ;
+fun viiniko'ynno's_NK : NK ;
+fun viinilaji_NK : NK ;
+fun viinilasi_NK : NK ;
+fun viinilista_NK : NK ;
+fun viinimaa_NK : NK ;
+fun viinimarja_NK : NK ;
+fun viinimarjamehu_NK : NK ;
+fun viinimarjapensas_NK : NK ;
+fun viininviljelyalue_NK : NK ;
+fun viinipullo_NK : NK ;
+fun viiniravintola_NK : NK ;
+fun viiniruukku_NK : NK ;
+fun viinirypa'le_NK : NK ;
+fun viinirypa'lemehu_NK : NK ;
+fun viinirypa'leterttu_NK : NK ;
+fun viinisato_NK : NK ;
+fun viinitarha_NK : NK ;
+fun viinitarhuri_NK : NK ;
+fun viinitila_NK : NK ;
+fun viinitilkka_NK : NK ;
+fun viinitynnyri_NK : NK ;
+fun viinivaahto_NK : NK ;
+fun viinivaahtokastike_NK : NK ;
+fun viiniviljelma'_NK : NK ;
+fun viiniviljelys_NK : NK ;
+fun viinivuosi_NK : NK ;
+fun viipalekoulu_NK : NK ;
+fun viipaleparakki_NK : NK ;
+fun viirisalko_NK : NK ;
+fun viiritanko_NK : NK ;
+fun viirupo'llo'_NK : NK ;
+fun viirusilma'_NK : NK ;
+fun viirusilma'inen_NK : NK ;
+fun viisastelu_NK : NK ;
+fun viisihenkinen_NK : NK ;
+fun viisijakoinen_NK : NK ;
+fun viisikanta_NK : NK ;
+fun viisikielinen_NK : NK ;
+fun viisikiloinen_NK : NK ;
+fun viisikulmio_NK : NK ;
+fun viisikymmenta'vuotias_NK : NK ;
+fun viisikymppinen_NK : NK ;
+fun viisimarkkanen_NK : NK ;
+fun viisimiehinen_NK : NK ;
+fun viisiottelija_NK : NK ;
+fun viisiottelu_NK : NK ;
+fun viisipenninen_NK : NK ;
+fun viisipiikkinen_NK : NK ;
+fun viisipa'iva'inen_NK : NK ;
+fun viisirivinen_NK : NK ;
+fun viisisakarainen_NK : NK ;
+fun viisisatanen_NK : NK ;
+fun viisitahokas_NK : NK ;
+fun viisitoistavuotias_NK : NK ;
+fun viisiviikkoinen_NK : NK ;
+fun viisivuotias_NK : NK ;
+fun viisivuotinen_NK : NK ;
+fun viistohampainen_NK : NK ;
+fun viistopera'inen_NK : NK ;
+fun viisumipakko_NK : NK ;
+fun viisumivapaus_NK : NK ;
+fun viitakerttunen_NK : NK ;
+fun viitekehys_NK : NK ;
+fun viitekorko_NK : NK ;
+fun viitenumero_NK : NK ;
+fun viiteryhma'_NK : NK ;
+fun viitetausta_NK : NK ;
+fun viittomakieli_NK : NK ;
+fun viittomakielinen_NK : NK ;
+fun viivakoodaus_NK : NK ;
+fun viivakoodi_NK : NK ;
+fun viivapiirustus_NK : NK ;
+fun viivaspektri_NK : NK ;
+fun viivasuora_NK : NK ;
+fun viivasyo'vytys_NK : NK ;
+fun viivavarjostus_NK : NK ;
+fun viivytystaistelu_NK : NK ;
+fun viiva'styskorko_NK : NK ;
+fun vikailmoitus_NK : NK ;
+fun vikapaikka_NK : NK ;
+fun vikapisto_NK : NK ;
+fun vikapa'a'_NK : NK ;
+fun vikasoitto_NK : NK ;
+fun vikatikki_NK : NK ;
+fun viljakaskas_NK : NK ;
+fun viljakasvi_NK : NK ;
+fun viljakauppa_NK : NK ;
+fun viljakirva_NK : NK ;
+fun viljalaari_NK : NK ;
+fun viljalaiva_NK : NK ;
+fun viljalaji_NK : NK ;
+fun viljalajike_NK : NK ;
+fun viljalyhde_NK : NK ;
+fun viljankylvo'kone_NK : NK ;
+fun viljapelto_NK : NK ;
+fun viljasato_NK : NK ;
+fun viljaseppa'_NK : NK ;
+fun viljasiilo_NK : NK ;
+fun viljasa'ilio'_NK : NK ;
+fun viljasa'kki_NK : NK ;
+fun viljatila_NK : NK ;
+fun viljatuote_NK : NK ;
+fun viljavainio_NK : NK ;
+fun viljavalmiste_NK : NK ;
+fun viljavarasto_NK : NK ;
+fun viljaviina_NK : NK ;
+fun viljavuori_NK : NK ;
+fun viljavuosi_NK : NK ;
+fun viljavuustutkimus_NK : NK ;
+fun viljelija'perhe_NK : NK ;
+fun viljelija'va'esto'_NK : NK ;
+fun viljelyalue_NK : NK ;
+fun viljelykala_NK : NK ;
+fun viljelykasvi_NK : NK ;
+fun viljelykausi_NK : NK ;
+fun viljelykelpoinen_NK : NK ;
+fun viljelykierto_NK : NK ;
+fun viljelykukka_NK : NK ;
+fun viljelylaitos_NK : NK ;
+fun viljelylajike_NK : NK ;
+fun viljelylohi_NK : NK ;
+fun viljelymaa_NK : NK ;
+fun viljelymenetelma'_NK : NK ;
+fun viljelymetsa'_NK : NK ;
+fun viljelymuoto_NK : NK ;
+fun viljelyraja_NK : NK ;
+fun viljelysalue_NK : NK ;
+fun viljelyslaidun_NK : NK ;
+fun viljelysmaa_NK : NK ;
+fun viljelysmetsikko'_NK : NK ;
+fun viljelysmetsa'_NK : NK ;
+fun viljelystie_NK : NK ;
+fun viljelytapa_NK : NK ;
+fun viljelytekniikka_NK : NK ;
+fun viljelyvyo'hyke_NK : NK ;
+fun vilkasliikkeinen_NK : NK ;
+fun vilkasrytminen_NK : NK ;
+fun vilkeuni_NK : NK ;
+fun vilkkukalvo_NK : NK ;
+fun vilkkuluomi_NK : NK ;
+fun vilkkuvalo_NK : NK ;
+fun vilkkuvihrea'_NK : NK ;
+fun villahiki_NK : NK ;
+--? fun villahousut_NK : NK ;
+fun villahuivi_NK : NK ;
+fun villahuopa_NK : NK ;
+fun villakangas_NK : NK ;
+fun villakankainen_NK : NK ;
+fun villakehra'a'ja'_NK : NK ;
+fun villakoira_NK : NK ;
+fun villakuitu_NK : NK ;
+fun villaka'sine_NK : NK ;
+fun villalanka_NK : NK ;
+fun villalapanen_NK : NK ;
+fun villalumppu_NK : NK ;
+fun villamatto_NK : NK ;
+fun villamusliini_NK : NK ;
+fun villamyssy_NK : NK ;
+fun villamyssymissi_NK : NK ;
+fun villaneule_NK : NK ;
+fun villanuttu_NK : NK ;
+fun villapaita_NK : NK ;
+fun villapipo_NK : NK ;
+fun villapusero_NK : NK ;
+fun villarasva_NK : NK ;
+fun villasukka_NK : NK ;
+fun villatakki_NK : NK ;
+fun villatrikoinen_NK : NK ;
+fun villatrikoo_NK : NK ;
+fun villavaate_NK : NK ;
+fun villavaha_NK : NK ;
+fun villikarjuammunta_NK : NK ;
+fun villiomenapuu_NK : NK ;
+fun villiviini_NK : NK ;
+fun vilppila'hto'_NK : NK ;
+fun vilttihattu_NK : NK ;
+fun vilttiketju_NK : NK ;
+fun vilttitossu_NK : NK ;
+fun vilutauti_NK : NK ;
+fun vilutautinen_NK : NK ;
+fun vinohampainen_NK : NK ;
+fun vinokattoinen_NK : NK ;
+fun vinokulmainen_NK : NK ;
+fun vinoraitainen_NK : NK ;
+fun vinoruutuinen_NK : NK ;
+fun vinosilma'inen_NK : NK ;
+fun vinttikaivo_NK : NK ;
+fun vinttikamari_NK : NK ;
+fun vinttikoira_NK : NK ;
+fun vinyylikatto_NK : NK ;
+fun vinyylilevy_NK : NK ;
+fun vinyylimuovi_NK : NK ;
+fun vinyyliyhdiste_NK : NK ;
+fun vipuhana_NK : NK ;
+fun vipukelkka_NK : NK ;
+fun vipukytkin_NK : NK ;
+fun vipuvarsi_NK : NK ;
+fun viraapelityo'_NK : NK ;
+fun viranhakupaperi_NK : NK ;
+fun virastoavustaja_NK : NK ;
+fun virastokankeus_NK : NK ;
+fun virastoka'sittely_NK : NK ;
+fun virastomestari_NK : NK ;
+fun virastorakennus_NK : NK ;
+fun virastotalo_NK : NK ;
+fun vireillepano_NK : NK ;
+fun vireisyys_NK : NK ;
+fun vireystila_NK : NK ;
+fun virhearvio_NK : NK ;
+fun virhearviointi_NK : NK ;
+fun virheasento_NK : NK ;
+fun virheilmoitus_NK : NK ;
+fun virhelaskelma_NK : NK ;
+fun virheliike_NK : NK ;
+fun virheluettelo_NK : NK ;
+fun virhelyo'nti_NK : NK ;
+fun virhela'hde_NK : NK ;
+fun virhemaksu_NK : NK ;
+fun virhemerkinta'_NK : NK ;
+fun virhemerkki_NK : NK ;
+fun virhepainama_NK : NK ;
+fun virhepiste_NK : NK ;
+fun virheprosentti_NK : NK ;
+fun virhepa'a'telma'_NK : NK ;
+fun virheraja_NK : NK ;
+fun virheratkaisu_NK : NK ;
+fun virhesijoitus_NK : NK ;
+fun virhesoitto_NK : NK ;
+fun virhetikki_NK : NK ;
+fun virhetili_NK : NK ;
+fun virhetulkinta_NK : NK ;
+fun virhevalinta_NK : NK ;
+fun virikekirja_NK : NK ;
+fun virikeko'yha'_NK : NK ;
+fun virikerikas_NK : NK ;
+fun virikeympa'risto'_NK : NK ;
+fun virilaine_NK : NK ;
+fun virityskorkeus_NK : NK ;
+fun virityskuva_NK : NK ;
+fun viritysnappula_NK : NK ;
+fun viritysnuppi_NK : NK ;
+fun viritystaso_NK : NK ;
+fun viritystila_NK : NK ;
+fun virkaehto_NK : NK ;
+fun virkaehtosopimus_NK : NK ;
+fun virkaela'ke_NK : NK ;
+fun virkaero_NK : NK ;
+fun virkaheitto_NK : NK ;
+fun virkahuone_NK : NK ;
+fun virkaika'_NK : NK ;
+fun virkainto_NK : NK ;
+fun virkaintoinen_AK : AK ;
+fun virkakausi_NK : NK ;
+fun virkakieli_NK : NK ;
+fun virkakielto_NK : NK ;
+fun virkakoneisto_NK : NK ;
+fun virkalakki_NK : NK ;
+fun virkaleima_NK : NK ;
+fun virkamatka_NK : NK ;
+fun virkamerkki_NK : NK ;
+fun virkamiehisto'_NK : NK ;
+fun virkamies_NK : NK ;
+fun virkamieshallitus_NK : NK ;
+fun virkamiesja'rjesto'_NK : NK ;
+fun virkamieskunta_NK : NK ;
+fun virkamieslakko_NK : NK ;
+fun virkamiesma'inen_NK : NK ;
+fun virkanainen_NK : NK ;
+fun virkanimike_NK : NK ;
+fun virkanimitys_NK : NK ;
+fun virkapuhelu_NK : NK ;
+fun virkapuku_NK : NK ;
+fun virkapukuinen_NK : NK ;
+fun virkarikos_NK : NK ;
+fun virkasalaisuus_NK : NK ;
+fun virkasisar_NK : NK ;
+fun virkasuhde_NK : NK ;
+fun virkasuhteinen_NK : NK ;
+fun virkasa'a'nto'_NK : NK ;
+fun virkatalo_NK : NK ;
+fun virkatehta'va'_NK : NK ;
+fun virkatie_NK : NK ;
+fun virkatodistus_NK : NK ;
+fun virkatoimenpide_NK : NK ;
+fun virkatoimi_NK : NK ;
+fun virkatoveri_NK : NK ;
+fun virkatutkinto_NK : NK ;
+fun virkatyo'_NK : NK ;
+fun virkaura_NK : NK ;
+fun virkavala_NK : NK ;
+fun virkavalta_NK : NK ;
+fun virkavaltainen_AK : AK ;
+fun virkavaltaisuus_NK : NK ;
+fun virkavapaa_NK : NK ;
+fun virkavapaus_NK : NK ;
+fun virkavastuu_NK : NK ;
+fun virkaveli_NK : NK ;
+fun virkavirhe_NK : NK ;
+fun virkavuosi_NK : NK ;
+fun virkaylennys_NK : NK ;
+fun virkerakenne_NK : NK ;
+fun virkistysaine_NK : NK ;
+fun virkistysalue_NK : NK ;
+fun virkistyskalastus_NK : NK ;
+fun virkistyska'ytto'_NK : NK ;
+fun virkistystauko_NK : NK ;
+fun virkkauskoukku_NK : NK ;
+fun virkkauslanka_NK : NK ;
+fun virkkaustyo'_NK : NK ;
+fun virkkuukoukku_NK : NK ;
+fun virkkuulanka_NK : NK ;
+fun virkkuutyo'_NK : NK ;
+fun virolainen_NK : NK ;
+fun virsikannel_NK : NK ;
+fun virsikantele_NK : NK ;
+fun virsikirja_NK : NK ;
+fun virsikokoelma_NK : NK ;
+fun virsilaulu_NK : NK ;
+fun virsirunoilija_NK : NK ;
+fun virsirunous_NK : NK ;
+fun virsisa'velma'_NK : NK ;
+fun virsitaulu_NK : NK ;
+fun virtahepo_NK : NK ;
+fun virtajohdin_NK : NK ;
+fun virtakytkin_NK : NK ;
+fun virtalukko_NK : NK ;
+fun virtala'hde_NK : NK ;
+fun virtamittari_NK : NK ;
+fun virtapaikka_NK : NK ;
+fun virtapiiri_NK : NK ;
+fun virtausnopeus_NK : NK ;
+fun virtaviivainen_NK : NK ;
+fun virtsaelin_NK : NK ;
+fun virtsahappo_NK : NK ;
+fun virtsakaivo_NK : NK ;
+fun virtsamyrkytys_NK : NK ;
+fun virtsanpida'tyskyky_NK : NK ;
+fun virtsana'yte_NK : NK ;
+fun virtsaputki_NK : NK ;
+fun virtsarakko_NK : NK ;
+fun virtsasuihku_NK : NK ;
+fun virtsatie_NK : NK ;
+fun virtsatieinfektio_NK : NK ;
+fun virtsaumpi_NK : NK ;
+fun virtuoosimainen_NK : NK ;
+fun virusopillinen_NK : NK ;
+fun virusoppi_NK : NK ;
+fun virustauti_NK : NK ;
+fun virvoitusjuoma_NK : NK ;
+fun virvoitusjuomapullo_NK : NK ;
+fun virvoitusjuomatehdas_NK : NK ;
+fun virvoitusjuomateollisuus_NK : NK ;
+fun virvokeautomaatti_NK : NK ;
+fun visakoivu_NK : NK ;
+fun visakoivuinen_NK : NK ;
+fun visapuu_NK : NK ;
+fun visasolu_NK : NK ;
+fun visiittikortti_NK : NK ;
+fun viskigrogi_NK : NK ;
+fun viskiliko'o'ri_NK : NK ;
+fun viskipullo_NK : NK ;
+fun viskisieppo_NK : NK ;
+fun viskoosikuitu_NK : NK ;
+fun viskoosiliuos_NK : NK ;
+fun visvasyyla'_NK : NK ;
+fun vitaalinen_AK : AK ;
+fun vitakasvi_NK : NK ;
+fun vitamiiniko'yha'_NK : NK ;
+fun vitamiinila'hde_NK : NK ;
+fun vitamiinipilleri_NK : NK ;
+fun vitamiinipitoinen_NK : NK ;
+fun vitamiinirikas_NK : NK ;
+fun vitamiinitabletti_NK : NK ;
+fun vitamiinivalmiste_NK : NK ;
+fun vitilumi_NK : NK ;
+fun vitivalkea_NK : NK ;
+fun vitivalkoinen_NK : NK ;
+fun vitkalaite_NK : NK ;
+fun vitkalaukaisin_NK : NK ;
+fun vitkalaukaisu_NK : NK ;
+fun vitkalipas_NK : NK ;
+fun vitsaslenkki_NK : NK ;
+fun vitsikirja_NK : NK ;
+fun vitsinikkari_NK : NK ;
+fun vittumainen_AK : AK ;
+fun viuhkamainen_AK : AK ;
+fun viuluduo_NK : NK ;
+fun viulukappale_NK : NK ;
+fun viulukilpailu_NK : NK ;
+fun viulukonsertti_NK : NK ;
+fun viulukonsertto_NK : NK ;
+fun viulukotelo_NK : NK ;
+fun viulukoulu_NK : NK ;
+fun viulumusiikki_NK : NK ;
+fun viuluniekka_NK : NK ;
+fun viuluoppilas_NK : NK ;
+fun viulusolisti_NK : NK ;
+fun viulusoolo_NK : NK ;
+fun viulusa'vellys_NK : NK ;
+fun viulutaide_NK : NK ;
+fun viulutaiteilija_NK : NK ;
+fun viuluteos_NK : NK ;
+fun viulutunti_NK : NK ;
+fun vivahderikas_NK : NK ;
+fun vohvelikangas_NK : NK ;
+fun vohvelikeksi_NK : NK ;
+fun vohvelipannu_NK : NK ;
+fun vohvelirauta_NK : NK ;
+fun voidenippa_NK : NK ;
+fun voidepuristin_NK : NK ;
+fun voidepurkki_NK : NK ;
+fun voideputki_NK : NK ;
+fun voidetuubi_NK : NK ;
+fun voihappo_NK : NK ;
+fun voikastike_NK : NK ;
+fun voikukka_NK : NK ;
+fun voilautanen_NK : NK ;
+fun voileipa'_NK : NK ;
+fun voileipa'kakku_NK : NK ;
+fun voileipa'keksi_NK : NK ;
+fun voileipa'po'yta'_NK : NK ;
+fun voileipa'tahna_NK : NK ;
+fun voilokki_NK : NK ;
+fun voimahahmo_NK : NK ;
+fun voimaharjoitus_NK : NK ;
+fun voimailulaji_NK : NK ;
+fun voimainen_AK : AK ;
+fun voimajohto_NK : NK ;
+fun voimakaksikko_NK : NK ;
+fun voimakasarominen_NK : NK ;
+fun voimakaslihaksinen_NK : NK ;
+fun voimakasluonteinen_NK : NK ;
+fun voimakasotteinen_NK : NK ;
+fun voimakaspiirteinen_NK : NK ;
+fun voimakassanainen_NK : NK ;
+fun voimakastahtoinen_NK : NK ;
+fun voimakastuoksuinen_NK : NK ;
+fun voimakasa'a'ninen_NK : NK ;
+fun voimakeino_NK : NK ;
+fun voimakentta'_NK : NK ;
+fun voimakkuusero_NK : NK ;
+fun voimakone_NK : NK ;
+fun voimalaitos_NK : NK ;
+fun voimalaji_NK : NK ;
+fun voimalinja_NK : NK ;
+fun voimallinen_AK : AK ;
+fun voimamies_NK : NK ;
+fun voimanainen_NK : NK ;
+fun voimanosto_NK : NK ;
+fun voimansiirtoakseli_NK : NK ;
+fun voimansiirtolaite_NK : NK ;
+fun voimansiirtolaitteisto_NK : NK ;
+fun voimansiirtolinja_NK : NK ;
+fun voimansiirtoverkko_NK : NK ;
+fun voimapaperi_NK : NK ;
+fun voimapera'inen_AK : AK ;
+fun voimapera'isyys_NK : NK ;
+fun voimapolitiikka_NK : NK ;
+fun voimasana_NK : NK ;
+fun voimasuhde_NK : NK ;
+fun voimatalous_NK : NK ;
+fun voimatekija'_NK : NK ;
+fun voimatoimenpide_NK : NK ;
+fun voimatoimi_NK : NK ;
+fun voimaverkko_NK : NK ;
+fun voimaviiva_NK : NK ;
+fun voimayhtio'_NK : NK ;
+fun voimisteluasu_NK : NK ;
+fun voimistelukilpailu_NK : NK ;
+fun voimisteluliike_NK : NK ;
+fun voimistelumatto_NK : NK ;
+fun voimistelupallo_NK : NK ;
+fun voimistelupuku_NK : NK ;
+fun voimistelusali_NK : NK ;
+fun voimisteluseura_NK : NK ;
+fun voimistelutanko_NK : NK ;
+fun voimisteluteline_NK : NK ;
+fun voimistelutossu_NK : NK ;
+fun voimistelutunti_NK : NK ;
+fun voimisteluvanne_NK : NK ;
+fun voimisteluva'line_NK : NK ;
+fun voinappi_NK : NK ;
+fun voinokare_NK : NK ;
+fun voipaketti_NK : NK ;
+fun voipaperi_NK : NK ;
+fun voipulla_NK : NK ;
+fun voirasia_NK : NK ;
+fun voisarvi_NK : NK ;
+fun voisilma'_NK : NK ;
+fun voisilma'pulla_NK : NK ;
+fun voisula_NK : NK ;
+fun voitaikina_NK : NK ;
+fun voitatti_NK : NK ;
+fun voiteluaine_NK : NK ;
+fun voitelunippa_NK : NK ;
+fun voitelupuristin_NK : NK ;
+fun voiteluteho_NK : NK ;
+fun voiteluvirhe_NK : NK ;
+fun voiteluo'ljy_NK : NK ;
+fun voittajaehdokas_NK : NK ;
+fun voittajajoukkue_NK : NK ;
+fun voittajasuosikki_NK : NK ;
+fun voittajavaltio_NK : NK ;
+fun voittoarpa_NK : NK ;
+fun voittoheitto_NK : NK ;
+fun voittohyppy_NK : NK ;
+fun voittokulku_NK : NK ;
+fun voittoluettelo_NK : NK ;
+fun voittoluokka_NK : NK ;
+fun voittomaali_NK : NK ;
+fun voittomarginaali_NK : NK ;
+fun voittonumero_NK : NK ;
+fun voittopeli_NK : NK ;
+fun voittopiste_NK : NK ;
+fun voittoprosentti_NK : NK ;
+fun voittopuoli_NK : NK ;
+fun voittoputki_NK : NK ;
+fun voittosumma_NK : NK ;
+fun voittotulos_NK : NK ;
+fun voivaahto_NK : NK ;
+fun voiveitsi_NK : NK ;
+fun voivuori_NK : NK ;
+fun vuodevaatelaatikko_NK : NK ;
+fun vuohilauma_NK : NK ;
+fun vuohipukki_NK : NK ;
+fun vuokaavio_NK : NK ;
+fun vuokaleipa'_NK : NK ;
+fun vuokaleivos_NK : NK ;
+fun vuokaruoka_NK : NK ;
+fun vuokraehto_NK : NK ;
+fun vuokraema'nta'_NK : NK ;
+fun vuokraennakko_NK : NK ;
+fun vuokrahuone_NK : NK ;
+fun vuokrahuoneisto_NK : NK ;
+fun vuokraisa'nta'_NK : NK ;
+fun vuokrakasarmi_NK : NK ;
+fun vuokralainen_NK : NK ;
+fun vuokramaa_NK : NK ;
+fun vuokramies_NK : NK ;
+fun vuokraoikeus_NK : NK ;
+fun vuokrapelaaja_NK : NK ;
+fun vuokrapuhelin_NK : NK ;
+fun vuokrapuku_NK : NK ;
+fun vuokraraha_NK : NK ;
+fun vuokrasopimus_NK : NK ;
+fun vuokrasuhde_NK : NK ;
+fun vuokratakuu_NK : NK ;
+fun vuokratalo_NK : NK ;
+fun vuokrataso_NK : NK ;
+fun vuokratila_NK : NK ;
+fun vuokratilallinen_NK : NK ;
+fun vuokratontti_NK : NK ;
+fun vuokraviljelija'_NK : NK ;
+fun vuokraviljelma'_NK : NK ;
+fun vuokrayksio'_NK : NK ;
+fun vuoksiaalto_NK : NK ;
+fun vuolassanainen_AK : AK ;
+fun vuolassanaisuus_NK : NK ;
+fun vuolukerma_NK : NK ;
+fun vuolukivi_NK : NK ;
+fun vuolukivinen_NK : NK ;
+fun vuolupuukko_NK : NK ;
+fun vuorauslauta_NK : NK ;
+fun vuorauslevy_NK : NK ;
+fun vuorijono_NK : NK ;
+fun vuorikangas_NK : NK ;
+fun vuorikide_NK : NK ;
+fun vuorikiipeilija'_NK : NK ;
+fun vuorikiipeily_NK : NK ;
+fun vuorikristalli_NK : NK ;
+fun vuorilaudoitus_NK : NK ;
+fun vuorilauta_NK : NK ;
+fun vuorilista_NK : NK ;
+fun vuorima'nty_NK : NK ;
+fun vuorineuvos_NK : NK ;
+fun vuoripalmu_NK : NK ;
+fun vuoripuro_NK : NK ;
+fun vuoriryhma'_NK : NK ;
+fun vuorisaarna_NK : NK ;
+fun vuorisilkki_NK : NK ;
+fun vuoristoalue_NK : NK ;
+fun vuoristoilma_NK : NK ;
+fun vuoristokasvi_NK : NK ;
+fun vuoristokiipeilija'_NK : NK ;
+fun vuoristokiipeily_NK : NK ;
+fun vuoristokyla'_NK : NK ;
+fun vuoristolainen_NK : NK ;
+fun vuoristoleiri_NK : NK ;
+fun vuoristomaja_NK : NK ;
+fun vuoristopolku_NK : NK ;
+fun vuoristopuro_NK : NK ;
+fun vuoristorata_NK : NK ;
+fun vuoristoseutu_NK : NK ;
+fun vuoristotauti_NK : NK ;
+fun vuoristotie_NK : NK ;
+fun vuoristoyla'nko'_NK : NK ;
+fun vuorisuola_NK : NK ;
+fun vuoritekniikka_NK : NK ;
+fun vuoriteollisuus_NK : NK ;
+fun vuorivaahtera_NK : NK ;
+fun vuorivanu_NK : NK ;
+fun vuorivilla_NK : NK ;
+fun vuoroja'rjestys_NK : NK ;
+fun vuorokausi_NK : NK ;
+fun vuorokausimaksu_NK : NK ;
+fun vuorokausirytmi_NK : NK ;
+fun vuorokausivaihtelu_NK : NK ;
+fun vuorokautinen_NK : NK ;
+fun vuorokeskustelu_NK : NK ;
+fun vuorokone_NK : NK ;
+fun vuorolainen_NK : NK ;
+fun vuorolaulu_NK : NK ;
+fun vuoroluku_NK : NK ;
+fun vuoropaikoitus_NK : NK ;
+fun vuoropari_NK : NK ;
+fun vuoropuhelu_NK : NK ;
+fun vuoropysa'ko'inti_NK : NK ;
+fun vuoropa'iva'_NK : NK ;
+fun vuorosana_NK : NK ;
+fun vuorotahti_NK : NK ;
+fun vuorotahtinen_NK : NK ;
+fun vuorotervehdys_NK : NK ;
+fun vuorotyo'_NK : NK ;
+fun vuorotyo'la'inen_NK : NK ;
+fun vuorovaikutus_NK : NK ;
+fun vuorovaikutussuhde_NK : NK ;
+fun vuorovesi_NK : NK ;
+fun vuorovesiaalto_NK : NK ;
+fun vuorovesienergia_NK : NK ;
+fun vuorovesivoimala_NK : NK ;
+fun vuoroveto_NK : NK ;
+fun vuoroviikko_NK : NK ;
+fun vuorovuosi_NK : NK ;
+fun vuosiansio_NK : NK ;
+fun vuosibudjetti_NK : NK ;
+fun vuosihuolto_NK : NK ;
+fun vuosijuhla_NK : NK ;
+fun vuosijulkaisu_NK : NK ;
+fun vuosikalenteri_NK : NK ;
+fun vuosikasvain_NK : NK ;
+fun vuosikasvu_NK : NK ;
+fun vuosikatsaus_NK : NK ;
+fun vuosikausi_NK : NK ;
+fun vuosikerta_NK : NK ;
+fun vuosikertaviini_NK : NK ;
+fun vuosikertomus_NK : NK ;
+fun vuosikirja_NK : NK ;
+fun vuosikokous_NK : NK ;
+fun vuosikorjaus_NK : NK ;
+fun vuosikortti_NK : NK ;
+fun vuosikulutus_NK : NK ;
+fun vuosikurssi_NK : NK ;
+fun vuosikustannus_NK : NK ;
+fun vuosikymmen_NK : NK ;
+fun vuosikymmeninen_NK : NK ;
+fun vuosilippu_NK : NK ;
+fun vuosiloma_NK : NK ;
+fun vuosiluku_NK : NK ;
+fun vuosiluokka_NK : NK ;
+fun vuosilusto_NK : NK ;
+fun vuosimaksu_NK : NK ;
+fun vuosimalli_NK : NK ;
+fun vuosimiljoona_NK : NK ;
+fun vuosimyynti_NK : NK ;
+fun vuosinelja'nnes_NK : NK ;
+fun vuosipalkka_NK : NK ;
+fun vuosipalkkio_NK : NK ;
+fun vuosipuolisko_NK : NK ;
+fun vuosipa'iva'_NK : NK ;
+fun vuosiraportti_NK : NK ;
+fun vuosirengas_NK : NK ;
+fun vuosisata_NK : NK ;
+fun vuosisatainen_NK : NK ;
+fun vuosisopimus_NK : NK ;
+fun vuositarkastus_NK : NK ;
+fun vuositase_NK : NK ;
+fun vuositilaaja_NK : NK ;
+fun vuositilasto_NK : NK ;
+fun vuositilaus_NK : NK ;
+fun vuosituhantinen_NK : NK ;
+--? fun vuosituhat_NK : NK ;
+fun vuositulo_NK : NK ;
+fun vuosituonti_NK : NK ;
+fun vuosituotanto_NK : NK ;
+fun vuosituotto_NK : NK ;
+fun vuosivaihtelu_NK : NK ;
+fun vuosivaihto_NK : NK ;
+fun vuosivauhti_NK : NK ;
+fun vuosiverso_NK : NK ;
+fun vuosivienti_NK : NK ;
+fun vuosivoitto_NK : NK ;
+fun vuosivuokra_NK : NK ;
+fun vyo'hihna_NK : NK ;
+fun vyo'hykehakkuu_NK : NK ;
+fun vyo'hykejako_NK : NK ;
+fun vyo'hykeraja_NK : NK ;
+fun vyo'hyketerapia_NK : NK ;
+fun vyo'koe_NK : NK ;
+fun vyo'laukku_NK : NK ;
+fun vyo'rengas_NK : NK ;
+fun vyo'ruusu_NK : NK ;
+fun vyo'spektri_NK : NK ;
+fun vyo'ta'ro'hame_NK : NK ;
+fun vyo'ta'ro'kaitale_NK : NK ;
+fun vyo'ta'ro'linja_NK : NK ;
+fun vyo'ta'ro'nauha_NK : NK ;
+fun vyo'ta'ro'pituinen_NK : NK ;
+fun vyo'ta'ro'sauma_NK : NK ;
+fun va'esto'ennuste_NK : NK ;
+fun va'esto'kato_NK : NK ;
+fun va'esto'keskus_NK : NK ;
+fun va'esto'kirja_NK : NK ;
+fun va'esto'laskenta_NK : NK ;
+fun va'esto'liike_NK : NK ;
+fun va'esto'luettelo_NK : NK ;
+fun va'esto'ma'a'ra'_NK : NK ;
+fun va'esto'politiikka_NK : NK ;
+fun va'esto'pyramidi_NK : NK ;
+fun va'esto'rakenne_NK : NK ;
+fun va'esto'rekisteri_NK : NK ;
+fun va'esto'ryhma'_NK : NK ;
+fun va'esto'ra'ja'hdys_NK : NK ;
+fun va'esto'suoja_NK : NK ;
+fun va'esto'suunnite_NK : NK ;
+fun va'esto'tiede_NK : NK ;
+fun va'esto'tieteilija'_NK : NK ;
+fun va'esto'tiheys_NK : NK ;
+fun va'esto'tilasto_NK : NK ;
+fun va'esto'tutkimus_NK : NK ;
+fun va'esto'vastuinen_NK : NK ;
+fun va'esto'vastuu_NK : NK ;
+fun va'hemmisto'hallitus_NK : NK ;
+fun va'hemmisto'kieli_NK : NK ;
+fun va'hemmisto'ryhma'_NK : NK ;
+fun va'hennyskelpoinen_NK : NK ;
+fun va'hennyskelpoisuus_NK : NK ;
+fun va'hennyslasku_NK : NK ;
+fun va'hennysmerkki_NK : NK ;
+fun va'hitta'iskauppahinta_NK : NK ;
+fun va'ha'aktiivinen_NK : NK ;
+fun va'ha'arvoinen_NK : NK ;
+fun va'ha'eleinen_AK : AK ;
+fun va'ha'eleisyys_NK : NK ;
+fun va'ha'ilmeinen_NK : NK ;
+fun va'ha'ja'rkinen_NK : NK ;
+fun va'ha'kuituinen_NK : NK ;
+fun va'ha'lahjainen_NK : NK ;
+fun va'ha'lapsinen_NK : NK ;
+fun va'ha'lukuinen_AK : AK ;
+fun va'ha'luminen_NK : NK ;
+fun va'ha'mielisyys_NK : NK ;
+fun va'ha'osainen_NK : NK ;
+fun va'ha'puheinen_NK : NK ;
+fun va'ha'rasvainen_NK : NK ;
+fun va'ha'ruokainen_NK : NK ;
+fun va'ha'sanainen_NK : NK ;
+fun va'ha'sateinen_NK : NK ;
+fun va'ha'suolainen_NK : NK ;
+fun va'ha'tuloinen_NK : NK ;
+fun va'ha'tuottoinen_NK : NK ;
+fun va'ha'to'inen_NK : NK ;
+fun va'ha'uskoinen_NK : NK ;
+fun va'ha'varainen_NK : NK ;
+fun va'ha'verinen_NK : NK ;
+fun va'ha'verisyys_NK : NK ;
+fun va'ha'va'kinen_NK : NK ;
+fun va'ijytysasema_NK : NK ;
+fun va'isto'liike_NK : NK ;
+fun va'ittelytaito_NK : NK ;
+fun va'ito'skirja_NK : NK ;
+fun va'ito'stilaisuus_NK : NK ;
+fun va'ito'stutkimus_NK : NK ;
+fun va'keva'tehoinen_NK : NK ;
+fun va'keva'tuoksuinen_NK : NK ;
+fun va'kijoukko_NK : NK ;
+fun va'kijuoma_NK : NK ;
+fun va'kikapula_NK : NK ;
+fun va'kikarttu_NK : NK ;
+fun va'kilannoite_NK : NK ;
+fun va'kiluku_NK : NK ;
+fun va'kipakko_NK : NK ;
+fun va'kipyo'ra'_NK : NK ;
+fun va'kipyo'ra'sto'_NK : NK ;
+fun va'kirehu_NK : NK ;
+fun va'kirikas_NK : NK ;
+fun va'kirynna'kko'_NK : NK ;
+fun va'kivahva_NK : NK ;
+fun va'kivallaton_NK : NK ;
+fun va'kivalta_NK : NK ;
+fun va'kivaltafilmi_NK : NK ;
+fun va'kivaltainen_AK : AK ;
+fun va'kivaltaisuus_NK : NK ;
+fun va'kivaltakoneisto_NK : NK ;
+fun va'kivaltapolitiikka_NK : NK ;
+fun va'kivaltarikollinen_NK : NK ;
+fun va'kivaltarikos_NK : NK ;
+fun va'kivaltavideo_NK : NK ;
+fun va'kivaltaviihde_NK : NK ;
+fun va'kiviina_NK : NK ;
+fun va'ka'leuka_NK : NK ;
+fun va'ka'leukainen_NK : NK ;
+fun va'ka'pa'inen_NK : NK ;
+fun va'liaikainen_AK : AK ;
+fun va'liaikaisuus_NK : NK ;
+fun va'liaikamerkki_NK : NK ;
+fun va'liaikamusiikki_NK : NK ;
+fun va'liaikatieto_NK : NK ;
+fun va'liaine_NK : NK ;
+--? fun va'liaivot_NK : NK ;
+fun va'lialue_NK : NK ;
+fun va'liasema_NK : NK ;
+fun va'liaste_NK : NK ;
+fun va'libosoni_NK : NK ;
+fun va'liera'_NK : NK ;
+fun va'lietappi_NK : NK ;
+--? fun va'lihousut_NK : NK ;
+fun va'lihuomautus_NK : NK ;
+fun va'lihuuto_NK : NK ;
+fun va'lihyo'kka'a'ja'_NK : NK ;
+fun va'lijohto_NK : NK ;
+fun va'likappale_NK : NK ;
+fun va'likarsina_NK : NK ;
+fun va'likatto_NK : NK ;
+fun va'likausi_NK : NK ;
+fun va'likausitakki_NK : NK ;
+fun va'likerros_NK : NK ;
+fun va'likohtaus_NK : NK ;
+fun va'likorva_NK : NK ;
+fun va'likorvaontelo_NK : NK ;
+fun va'likyljys_NK : NK ;
+fun va'likysymys_NK : NK ;
+fun va'likysymyskeskustelu_NK : NK ;
+fun va'lika'si_NK : NK ;
+fun va'lilasku_NK : NK ;
+fun va'lilaskupaikka_NK : NK ;
+fun va'lilehti_NK : NK ;
+fun va'lilevy_NK : NK ;
+fun va'liliha_NK : NK ;
+fun va'liliina_NK : NK ;
+fun va'lilyo'nti_NK : NK ;
+fun va'lilyo'ntina'ppa'in_NK : NK ;
+fun va'limaasto_NK : NK ;
+fun va'limatka_NK : NK ;
+fun va'limatkataulukko_NK : NK ;
+fun va'limerkki_NK : NK ;
+fun va'limies_NK : NK ;
+fun va'limiesmenettely_NK : NK ;
+fun va'limiesoikeus_NK : NK ;
+fun va'limuoto_NK : NK ;
+fun va'limuotoinen_NK : NK ;
+fun va'limuuri_NK : NK ;
+fun va'lineaine_NK : NK ;
+fun va'linearvo_NK : NK ;
+fun va'linelaji_NK : NK ;
+fun va'lineurheilija_NK : NK ;
+fun va'linevoimistelu_NK : NK ;
+fun va'liotsikko_NK : NK ;
+fun va'liovi_NK : NK ;
+fun va'lipala_NK : NK ;
+fun va'lipitsi_NK : NK ;
+fun va'lipohja_NK : NK ;
+fun va'liporras_NK : NK ;
+fun va'lipuhe_NK : NK ;
+fun va'lipuhelu_NK : NK ;
+fun va'lipa'iva'_NK : NK ;
+fun va'lipa'a'to's_NK : NK ;
+fun va'liraha_NK : NK ;
+fun va'lirauha_NK : NK ;
+fun va'lirikko_NK : NK ;
+fun va'lisarja_NK : NK ;
+fun va'lisoitto_NK : NK ;
+fun va'lista'veto_NK : NK ;
+fun va'litavoite_NK : NK ;
+fun va'litila_NK : NK ;
+fun va'litunti_NK : NK ;
+fun va'lituote_NK : NK ;
+fun va'litutkinto_NK : NK ;
+fun va'litysehdotus_NK : NK ;
+fun va'lityskauppa_NK : NK ;
+fun va'litysoikeus_NK : NK ;
+fun va'lityspalkkio_NK : NK ;
+fun va'lityssuhde_NK : NK ;
+fun va'litystoiminta_NK : NK ;
+fun va'litystuomio_NK : NK ;
+fun va'litystuomioistuin_NK : NK ;
+fun va'lityo'_NK : NK ;
+fun va'livaihe_NK : NK ;
+fun va'livarasto_NK : NK ;
+fun va'liverho_NK : NK ;
+fun va'liviiva_NK : NK ;
+fun va'livuori_NK : NK ;
+fun va'livuosi_NK : NK ;
+fun va'ljennyshakkuu_NK : NK ;
+fun va'lja'hihainen_NK : NK ;
+fun va'rekarva_NK : NK ;
+fun va'riaine_NK : NK ;
+fun va'riaineteollisuus_NK : NK ;
+fun va'riaisti_NK : NK ;
+fun va'riaistimus_NK : NK ;
+fun va'rianalyysi_NK : NK ;
+fun va'riasteikko_NK : NK ;
+fun va'rifilmi_NK : NK ;
+fun va'rigrafiikka_NK : NK ;
+fun va'rihehku_NK : NK ;
+fun va'rihuuhtelu_NK : NK ;
+fun va'rijauhe_NK : NK ;
+fun va'rija'ljenno's_NK : NK ;
+fun va'rikalvo_NK : NK ;
+fun va'rikartta_NK : NK ;
+fun va'rikasvi_NK : NK ;
+fun va'rikauppa_NK : NK ;
+fun va'rikontrasti_NK : NK ;
+fun va'rikopio_NK : NK ;
+fun va'rikopiointi_NK : NK ;
+fun va'rikopiokone_NK : NK ;
+fun va'rikuva_NK : NK ;
+fun va'rikuvaputki_NK : NK ;
+fun va'rikuvaus_NK : NK ;
+fun va'rikylpy_NK : NK ;
+fun va'rikyna'_NK : NK ;
+fun va'rileikki_NK : NK ;
+fun va'riliitu_NK : NK ;
+fun va'rilitografia_NK : NK ;
+fun va'riliuos_NK : NK ;
+fun va'riloisto_NK : NK ;
+fun va'rila'hetys_NK : NK ;
+fun va'rila'ikka'_NK : NK ;
+fun va'rila'iska'_NK : NK ;
+fun va'rimalli_NK : NK ;
+fun va'rimetalli_NK : NK ;
+fun va'rimuunnos_NK : NK ;
+fun va'rinauha_NK : NK ;
+fun va'rinauhakasetti_NK : NK ;
+fun va'rinegatiivi_NK : NK ;
+fun va'rinegatiivifilmi_NK : NK ;
+fun va'rinokkonen_NK : NK ;
+fun va'rina'ko'_NK : NK ;
+fun va'rina'yte_NK : NK ;
+fun va'rina'ytto'_NK : NK ;
+fun va'rioppi_NK : NK ;
+fun va'ripainatus_NK : NK ;
+fun va'ripaletti_NK : NK ;
+fun va'ripigmentti_NK : NK ;
+fun va'ripiirros_NK : NK ;
+fun va'ripinta_NK : NK ;
+fun va'ripistooli_NK : NK ;
+fun va'riraita_NK : NK ;
+fun va'risekoite_NK : NK ;
+fun va'risekoitus_NK : NK ;
+fun va'risilma'_NK : NK ;
+fun va'riskaala_NK : NK ;
+fun va'risokea_NK : NK ;
+fun va'risokeus_NK : NK ;
+fun va'risuora_NK : NK ;
+fun va'risa'vy_NK : NK ;
+fun va'ritehdas_NK : NK ;
+fun va'ritelevisio_NK : NK ;
+fun va'riteollisuus_NK : NK ;
+fun va'rityskirja_NK : NK ;
+fun va'rityyny_NK : NK ;
+fun va'rita'pla'_NK : NK ;
+fun va'rivaihtelu_NK : NK ;
+fun va'rivalikoima_NK : NK ;
+fun va'rivalo_NK : NK ;
+fun va'rivalokuva_NK : NK ;
+fun va'rivalokuvaus_NK : NK ;
+fun va'rivammainen_NK : NK ;
+fun va'rivastakohta_NK : NK ;
+fun va'rivika_NK : NK ;
+fun va'rivirhe_NK : NK ;
+fun va'rivivahde_NK : NK ;
+fun va'rivivahdus_NK : NK ;
+fun va'rivoide_NK : NK ;
+fun va'riyhdistelma'_NK : NK ;
+fun va'rttina'hermo_NK : NK ;
+fun va'rttina'luu_NK : NK ;
+fun va'rttina'valtimo_NK : NK ;
+fun va'ra'hdysliike_NK : NK ;
+fun va'ra'hdystaajuus_NK : NK ;
+fun va'ra'htelyliike_NK : NK ;
+fun va'ra'htelypiiri_NK : NK ;
+fun va'ra'htelytaajuus_NK : NK ;
+fun va'symyskohtaus_NK : NK ;
+fun va'sytyskoe_NK : NK ;
+fun va'vypoika_NK : NK ;
+fun va'yla'merkki_NK : NK ;
+fun va'a'nto'kampi_NK : NK ;
+fun va'a'nto'kanki_NK : NK ;
+fun va'a'nto'liike_NK : NK ;
+fun va'a'nto'momentti_NK : NK ;
+fun va'a'rinka'sitys_NK : NK ;
+fun va'a'rinka'ytta'ja'_NK : NK ;
+fun va'a'rinka'ytto'_NK : NK ;
+fun va'a'rinka'yto's_NK : NK ;
+fun va'a'rintekija'_NK : NK ;
+fun va'a'rintulkinta_NK : NK ;
+fun va'a'rinymma'rrys_NK : NK ;
+fun va'a'ra'leukainen_NK : NK ;
+fun va'a'ra'mielisyys_NK : NK ;
+fun va'a'ra'oppinen_NK : NK ;
+fun va'a'ra'oppisuus_NK : NK ;
+fun va'a'ra'sa'a'rinen_NK : NK ;
+fun va'a'ra'uskoinen_NK : NK ;
+fun va'a'ra'vartinen_NK : NK ;
+fun ydinaine_NK : NK ;
+fun ydinaines_NK : NK ;
+fun ydinajatus_NK : NK ;
+fun ydinalue_NK : NK ;
+fun ydinalus_NK : NK ;
+fun ydinammus_NK : NK ;
+fun ydinase_NK : NK ;
+fun ydinasearsenaali_NK : NK ;
+fun ydinaseeton_NK : NK ;
+fun ydinaseistus_NK : NK ;
+fun ydinasevalta_NK : NK ;
+fun ydinasevaltio_NK : NK ;
+fun ydinasevarustelu_NK : NK ;
+fun ydinasevarustus_NK : NK ;
+fun ydinenergia_NK : NK ;
+fun ydinenergiaka'ytto'inen_NK : NK ;
+fun ydinfysiikka_NK : NK ;
+fun ydinfyysikko_NK : NK ;
+fun ydinherne_NK : NK ;
+fun ydinhiukkanen_NK : NK ;
+fun ydinisku_NK : NK ;
+fun ydinjatke_NK : NK ;
+fun ydinjauho_NK : NK ;
+fun ydinjoukko_NK : NK ;
+fun ydinja'te_NK : NK ;
+fun ydinja'tevarasto_NK : NK ;
+fun ydinkemia_NK : NK ;
+fun ydinkeskus_NK : NK ;
+fun ydinkeskusta_NK : NK ;
+fun ydinkoe_NK : NK ;
+fun ydinkoekielto_NK : NK ;
+fun ydinkysymys_NK : NK ;
+fun ydinka'rki_NK : NK ;
+fun ydinka'ytto'inen_NK : NK ;
+fun ydinlaitos_NK : NK ;
+fun ydinlaji_NK : NK ;
+fun ydinlanka_NK : NK ;
+fun ydinlataus_NK : NK ;
+fun ydinluu_NK : NK ;
+fun ydinmalli_NK : NK ;
+fun ydinmiina_NK : NK ;
+fun ydinohjus_NK : NK ;
+fun ydinolemus_NK : NK ;
+fun ydinontelo_NK : NK ;
+fun ydinosa_NK : NK ;
+fun ydinpelote_NK : NK ;
+fun ydinperhe_NK : NK ;
+fun ydinpommi_NK : NK ;
+fun ydinpommittaja_NK : NK ;
+fun ydinpuu_NK : NK ;
+fun ydinreaktio_NK : NK ;
+fun ydinreaktori_NK : NK ;
+fun ydinra'ja'hde_NK : NK ;
+fun ydinra'ja'hdelataus_NK : NK ;
+fun ydinra'ja'hdys_NK : NK ;
+fun ydinra'ja'ytys_NK : NK ;
+fun ydinsaaste_NK : NK ;
+fun ydinsisa'llys_NK : NK ;
+fun ydinsisa'lto'_NK : NK ;
+fun ydinsolu_NK : NK ;
+fun ydinsolukko_NK : NK ;
+fun ydinsota_NK : NK ;
+fun ydinsa'hko'_NK : NK ;
+fun ydintalvi_NK : NK ;
+fun ydintekniikka_NK : NK ;
+fun ydintekninen_NK : NK ;
+fun ydintutkimus_NK : NK ;
+fun ydinvalta_NK : NK ;
+fun ydinvaltio_NK : NK ;
+fun ydinvaraus_NK : NK ;
+fun ydinvarustelu_NK : NK ;
+fun ydinvoima_NK : NK ;
+fun ydinvoimala_NK : NK ;
+fun yhdeksa'nkertainen_NK : NK ;
+fun yhdeksa'nkymmenta'luku_NK : NK ;
+fun yhdeksa'nkymmenta'vuotias_NK : NK ;
+fun yhdeksa'nluokkainen_NK : NK ;
+fun yhdeksa'ntoistavuotias_NK : NK ;
+fun yhdeksa'nvuotias_NK : NK ;
+fun yhdeksa'nvuotinen_NK : NK ;
+fun yhdeksa'skymmenes_NK : NK ;
+fun yhdeksa'sosa_NK : NK ;
+fun yhdeksa'ssadas_NK : NK ;
+fun yhdessa'olo_NK : NK ;
+fun yhdistelma'hoito_NK : NK ;
+fun yhdistelma'kaappi_NK : NK ;
+fun yhdistelma'puku_NK : NK ;
+fun yhdistelma'takki_NK : NK ;
+fun yhdistelma'vakuutus_NK : NK ;
+fun yhdistysrekisteri_NK : NK ;
+fun yhdistystoiminta_NK : NK ;
+fun yhdyskuntahyo'nteinen_NK : NK ;
+fun yhdyskuntaja'te_NK : NK ;
+fun yhdyskuntalintu_NK : NK ;
+fun yhdyskuntapalvelu_NK : NK ;
+fun yhdyskuntatyo'_NK : NK ;
+fun yhteenajo_NK : NK ;
+fun yhteenkasvettuma_NK : NK ;
+fun yhteenkuuluvuus_NK : NK ;
+fun yhteenlasku_NK : NK ;
+fun yhteenliittyma'_NK : NK ;
+fun yhteenotto_NK : NK ;
+fun yhteensattuma_NK : NK ;
+fun yhteensopiva_NK : NK ;
+fun yhteensopivuus_NK : NK ;
+fun yhteento'rma'ys_NK : NK ;
+fun yhteenveto_NK : NK ;
+fun yhteiskuntaela'in_NK : NK ;
+fun yhteiskuntaela'ma'_NK : NK ;
+fun yhteiskuntafilosofia_NK : NK ;
+fun yhteiskuntahyo'nteinen_NK : NK ;
+fun yhteiskuntaja'rjestys_NK : NK ;
+fun yhteiskuntakelpoinen_NK : NK ;
+fun yhteiskuntakelpoisuus_NK : NK ;
+fun yhteiskuntakerros_NK : NK ;
+fun yhteiskuntakriitikko_NK : NK ;
+fun yhteiskuntakriittinen_NK : NK ;
+fun yhteiskuntakritiikki_NK : NK ;
+fun yhteiskuntaluokka_NK : NK ;
+fun yhteiskuntaoppi_NK : NK ;
+fun yhteiskuntapolitiikka_NK : NK ;
+fun yhteiskuntarakenne_NK : NK ;
+fun yhteiskuntaromaani_NK : NK ;
+fun yhteiskuntasatiiri_NK : NK ;
+fun yhteiskuntasuhde_NK : NK ;
+fun yhteiskuntatiede_NK : NK ;
+fun yhteistoimintamenettely_NK : NK ;
+fun yhteistyo'elin_NK : NK ;
+fun yhteistyo'sopimus_NK : NK ;
+fun yhteiso'talous_NK : NK ;
+fun yhteyshauta_NK : NK ;
+fun yhteyshenkilo'_NK : NK ;
+fun yhteyssihteeri_NK : NK ;
+fun yhteysupseeri_NK : NK ;
+fun yhteysva'line_NK : NK ;
+fun yhtio'ja'rjestys_NK : NK ;
+fun yhtio'kokous_NK : NK ;
+fun yhtio'kumppani_NK : NK ;
+fun yhtio'kumppanuus_NK : NK ;
+fun yhtio'mies_NK : NK ;
+fun yhtio'muoto_NK : NK ;
+fun yhtio'sopimus_NK : NK ;
+fun yhtio'vastike_NK : NK ;
+fun yhta'aikainen_AK : AK ;
+fun yhta'aikaisuus_NK : NK ;
+fun yhta'jaksoinen_AK : AK ;
+fun yhta'la'isyysmerkki_NK : NK ;
+fun yhta'lo'ryhma'_NK : NK ;
+fun yhta'mittainen_AK : AK ;
+fun yhta'pita'vyys_NK : NK ;
+fun yhta'pita'va'_NK : NK ;
+fun yhta'suuruus_NK : NK ;
+fun yhta'suuruusmerkki_NK : NK ;
+fun yksiavioinen_NK : NK ;
+fun yksiavioisuus_NK : NK ;
+fun yksihenkinen_NK : NK ;
+fun yksijumalainen_NK : NK ;
+fun yksikamarinen_NK : NK ;
+fun yksikielinen_NK : NK ;
+fun yksikielisyys_NK : NK ;
+fun yksikko'hinta_NK : NK ;
+fun yksikko'luku_NK : NK ;
+fun yksikko'muoto_NK : NK ;
+fun yksikko'muotoinen_NK : NK ;
+fun yksikko'upseeri_NK : NK ;
+fun yksika'tinen_NK : NK ;
+fun yksilapsinen_NK : NK ;
+fun yksilevyinen_1_NK : NK ;
+fun yksilevyinen_2_NK : NK ;
+fun yksilo'keskeinen_NK : NK ;
+fun yksilo'keskeisyys_NK : NK ;
+fun yksilo'kohtainen_AK : AK ;
+fun yksilo'kohtaisuus_NK : NK ;
+fun yksilo'ka'site_NK : NK ;
+fun yksilo'numero_NK : NK ;
+fun yksilo'psykologia_NK : NK ;
+fun yksilo'taso_NK : NK ;
+fun yksilo'terapia_NK : NK ;
+fun yksimielisyys_NK : NK ;
+fun yksinedustaja_NK : NK ;
+fun yksinedustus_NK : NK ;
+fun yksinela'ja'_NK : NK ;
+fun yksineuvoinen_NK : NK ;
+fun yksinhuoltaja_NK : NK ;
+fun yksinhuoltajaisa'_NK : NK ;
+fun yksinhuoltajaperhe_NK : NK ;
+fun yksinhuoltajaa'iti_NK : NK ;
+fun yksiniitinen_NK : NK ;
+fun yksinkertainen_AK : AK ;
+fun yksinlaulu_NK : NK ;
+fun yksinlento_NK : NK ;
+fun yksinmyyja'_NK : NK ;
+fun yksinmyynti_NK : NK ;
+fun yksinmyyntioikeus_NK : NK ;
+fun yksinoikeus_NK : NK ;
+fun yksinoikeutettu_NK : NK ;
+fun yksinolo_NK : NK ;
+fun yksinomainen_AK : AK ;
+fun yksinpeli_NK : NK ;
+fun yksinpuhelu_NK : NK ;
+fun yksinpurjehdus_NK : NK ;
+fun yksinpurjehtija_NK : NK ;
+fun yksintanssi_NK : NK ;
+fun yksinvalta_NK : NK ;
+fun yksinvaltainen_AK : AK ;
+fun yksinvaltaisuus_NK : NK ;
+fun yksinvaltias_AK : AK ;
+fun yksinvaltius_NK : NK ;
+fun yksioikoinen_AK : AK ;
+fun yksiosainen_NK : NK ;
+fun yksipaikkainen_NK : NK ;
+fun yksipiippuinen_NK : NK ;
+fun yksipuinen_NK : NK ;
+fun yksipuolinen_AK : AK ;
+fun yksiraiteinen_NK : NK ;
+fun yksirivinen_NK : NK ;
+fun yksisarvinen_NK : NK ;
+fun yksisilma'inen_AK : AK ;
+fun yksisilma'isyys_NK : NK ;
+fun yksisirkkainen_NK : NK ;
+fun yksisoluinen_NK : NK ;
+fun yksisuuntainen_NK : NK ;
+fun yksisa'ikeinen_NK : NK ;
+fun yksitalvinen_NK : NK ;
+fun yksitaso_NK : NK ;
+fun yksitasoinen_NK : NK ;
+fun yksitera'inen_NK : NK ;
+fun yksitotinen_NK : NK ;
+fun yksitotisuus_NK : NK ;
+fun yksituumainen_AK : AK ;
+fun yksityisetsiva'toimisto_NK : NK ;
+fun yksityismetsa'talous_NK : NK ;
+fun yksiulotteinen_NK : NK ;
+fun yksivaiheinen_NK : NK ;
+fun yksivakaa_NK : NK ;
+fun yksivakainen_AK : AK ;
+fun yksivartinen_NK : NK ;
+fun yksiviivainen_AK : AK ;
+fun yksiviivaisuus_NK : NK ;
+fun yksivuotias_NK : NK ;
+fun yksivuotinen_NK : NK ;
+fun yksiva'rinen_NK : NK ;
+fun yksia'a'ninen_NK : NK ;
+fun yksio'inen_NK : NK ;
+fun yleisesikuntaupseeri_NK : NK ;
+fun yleisradioasema_NK : NK ;
+fun yleisradiotoiminta_NK : NK ;
+fun yleisradioyhtio'_NK : NK ;
+fun yleisurheilukilpailu_NK : NK ;
+fun yleisurheilukisa_NK : NK ;
+fun yleisurheilulaji_NK : NK ;
+fun yleiso'enna'tys_NK : NK ;
+fun yleiso'esitys_NK : NK ;
+fun yleiso'kato_NK : NK ;
+fun yleiso'kilpailu_NK : NK ;
+fun yleiso'kirje_NK : NK ;
+fun yleiso'kirjoitus_NK : NK ;
+fun yleiso'kysymys_NK : NK ;
+fun yleiso'laji_NK : NK ;
+fun yleiso'lehteri_NK : NK ;
+fun yleiso'lenna'tys_NK : NK ;
+fun yleiso'luistelu_NK : NK ;
+fun yleiso'massa_NK : NK ;
+fun yleiso'menestys_NK : NK ;
+fun yleiso'muuri_NK : NK ;
+fun yleiso'ma'a'ra'_NK : NK ;
+fun yleiso'nosastokirjoitus_NK : NK ;
+fun yleiso'puhelin_NK : NK ;
+fun yleiso'tilaisuus_NK : NK ;
+fun yleiso'vihje_NK : NK ;
+fun yleiso'virta_NK : NK ;
+fun yleiso'a'a'nestys_NK : NK ;
+fun ylellisyysesine_NK : NK ;
+fun ylellisyystavara_NK : NK ;
+fun ylempiarvoinen_NK : NK ;
+fun ylenkatse_NK : NK ;
+fun ylenma'a'ra'inen_NK : NK ;
+fun ylennysmerkki_NK : NK ;
+fun ylensyo'nti_NK : NK ;
+fun yleva'henkinen_NK : NK ;
+fun yleva'ryhtinen_NK : NK ;
+fun yleva'tyylinen_NK : NK ;
+fun yliaikainen_NK : NK ;
+fun yliaikaisuus_NK : NK ;
+fun yliajaja_NK : NK ;
+fun yliajo_NK : NK ;
+fun yliannos_NK : NK ;
+fun yliannostus_NK : NK ;
+fun yliarkkitehti_NK : NK ;
+fun yliarviointi_NK : NK ;
+fun yliarvostus_NK : NK ;
+fun yliedustus_NK : NK ;
+fun ylienkeli_NK : NK ;
+fun yliherkkyys_NK : NK ;
+fun yliherkka'_NK : NK ;
+fun ylihinta_NK : NK ;
+fun ylihoitaja_NK : NK ;
+fun ylihuomen_NK : NK ;
+fun ylihuominen_NK : NK ;
+fun yli_ihminen_NK : NK ;
+fun yli_ika'inen_NK : NK ;
+fun yli_ika'isyys_NK : NK ;
+fun yli_insino'o'ri_NK : NK ;
+fun ylijohtaja_NK : NK ;
+fun ylijohto_NK : NK ;
+fun ylijumala_NK : NK ;
+fun ylijuoksu_NK : NK ;
+fun ylija'nnite_NK : NK ;
+fun ylija'nnitesuoja_NK : NK ;
+fun ylija'a'ma'_NK : NK ;
+fun ylija'a'ma'varasto_NK : NK ;
+fun ylikersantti_NK : NK ;
+fun ylikierros_NK : NK ;
+fun ylikoulutus_NK : NK ;
+fun ylikulku_NK : NK ;
+fun ylikulkusilta_NK : NK ;
+fun ylikunto_NK : NK ;
+fun ylikuntoinen_NK : NK ;
+fun ylikuorma_NK : NK ;
+fun ylikuormamaksu_NK : NK ;
+fun ylikuormitus_NK : NK ;
+fun ylikuormitussuoja_NK : NK ;
+fun ylikypsa'_NK : NK ;
+fun ylika'yta'va'_NK : NK ;
+fun ylilataus_NK : NK ;
+fun ylilento_NK : NK ;
+fun ylilevea'_NK : NK ;
+fun yliloikkari_NK : NK ;
+fun yliluutnantti_NK : NK ;
+fun ylilyo'nti_NK : NK ;
+fun ylila'a'ka'ri_NK : NK ;
+fun ylimaallinen_AK : AK ;
+fun ylimaallisuus_NK : NK ;
+fun ylimatruusi_NK : NK ;
+fun ylimeno_NK : NK ;
+fun ylimenohyo'kka'ys_NK : NK ;
+fun ylimenokausi_NK : NK ;
+fun ylimerkinta'_NK : NK ;
+fun ylimielisyys_NK : NK ;
+fun ylimittainen_NK : NK ;
+fun ylimuistoinen_AK : AK ;
+fun ylimysnainen_NK : NK ;
+fun ylimysvalta_NK : NK ;
+fun ylima'a'ra'_NK : NK ;
+fun ylima'a'ra'inen_NK : NK ;
+fun ylinopeus_NK : NK ;
+fun ylioikeus_NK : NK ;
+fun yliopisto_NK : NK ;
+fun yliopistokaupunki_NK : NK ;
+fun yliopistorakennus_NK : NK ;
+fun yliopistotasoinen_NK : NK ;
+fun yliopistovirka_NK : NK ;
+fun ylioppilas_NK : NK ;
+fun ylioppilasaine_NK : NK ;
+fun ylioppilasjuhla_NK : NK ;
+fun ylioppilasja'rjesto'_NK : NK ;
+fun ylioppilaskokelas_NK : NK ;
+fun ylioppilaskunta_NK : NK ;
+fun ylioppilaskuva_NK : NK ;
+fun ylioppilaslakki_NK : NK ;
+fun ylioppilaslaulu_NK : NK ;
+fun ylioppilaslehti_NK : NK ;
+fun ylioppilasluokka_NK : NK ;
+fun ylioppilaslyyra_NK : NK ;
+fun ylioppilasmerkonomi_NK : NK ;
+fun ylioppilaspohjainen_NK : NK ;
+fun ylioppilasruusu_NK : NK ;
+fun ylioppilastalo_NK : NK ;
+fun ylioppilasteatteri_NK : NK ;
+fun ylioppilastodistus_NK : NK ;
+fun ylioppilastutkinto_NK : NK ;
+fun ylioppilastutkintotodistus_NK : NK ;
+fun yliote_NK : NK ;
+fun ylipaine_NK : NK ;
+fun ylipainehalli_NK : NK ;
+fun ylipaineinen_NK : NK ;
+fun ylipaino_NK : NK ;
+fun ylipainoinen_NK : NK ;
+fun ylipalvelus_NK : NK ;
+fun ylipapitar_NK : NK ;
+fun ylipappi_NK : NK ;
+fun ylipitka'_NK : NK ;
+fun ylipituus_NK : NK ;
+fun ylipormestari_NK : NK ;
+fun ylipa'a'llikko'_NK : NK ;
+fun ylipa'a'sema'to'n_NK : NK ;
+fun ylipa'a'sy_NK : NK ;
+fun ylirasitus_NK : NK ;
+fun ylisana_NK : NK ;
+fun ylistyslaulu_NK : NK ;
+fun ylistyspuhe_NK : NK ;
+fun ylistysvirsi_NK : NK ;
+fun ylisuuri_NK : NK ;
+fun ylitalvinen_NK : NK ;
+fun ylitarjonta_NK : NK ;
+fun ylitarkastaja_NK : NK ;
+fun ylitunti_NK : NK ;
+fun ylituomari_NK : NK ;
+fun ylituotanto_NK : NK ;
+fun ylityshyo'kka'ys_NK : NK ;
+fun ylityo'_NK : NK ;
+fun ylityo'korvaus_NK : NK ;
+fun ylityo'llisyys_NK : NK ;
+fun ylityo'palkka_NK : NK ;
+fun ylityo'tunti_NK : NK ;
+fun ylivaihde_NK : NK ;
+fun ylivakuutus_NK : NK ;
+fun ylivalotus_NK : NK ;
+fun ylivalta_NK : NK ;
+fun ylivelkainen_NK : NK ;
+fun ylivertainen_NK : NK ;
+fun yliveto_NK : NK ;
+fun yliviivaus_NK : NK ;
+fun ylivirtaus_NK : NK ;
+fun ylivoima_NK : NK ;
+fun ylivoimainen_AK : AK ;
+fun ylivoimaisuus_NK : NK ;
+fun ylivoimamaali_NK : NK ;
+fun ylivoimapeli_NK : NK ;
+fun ylivuotinen_NK : NK ;
+fun ylivuoto_NK : NK ;
+fun ylivuotoaukko_NK : NK ;
+fun ylivuotoputki_NK : NK ;
+fun yliva'a'peli_NK : NK ;
+fun ylia'lyka's_NK : NK ;
+fun ylka'mies_NK : NK ;
+fun yllytyshullu_NK : NK ;
+fun ylla'kko'hyo'kka'ys_NK : NK ;
+fun ylla'pito_NK : NK ;
+fun ylla'pita'ja'_NK : NK ;
+fun ylla'tyshyo'kka'ys_NK : NK ;
+fun ylla'tyslahja_NK : NK ;
+fun ylla'tysmomentti_NK : NK ;
+fun ylla'tystarkastus_NK : NK ;
+fun ylla'tystulos_NK : NK ;
+fun ylla'tysuutinen_NK : NK ;
+fun ylla'tysvieras_NK : NK ;
+fun ylla'tysvoittaja_NK : NK ;
+fun ylla'tysvoitto_NK : NK ;
+fun ylva'sryhtinen_NK : NK ;
+fun yla'astelainen_NK : NK ;
+fun yla'kierrelyo'nti_NK : NK ;
+fun yla'koululainen_NK : NK ;
+fun yla'leukaluu_NK : NK ;
+fun yla'luokkalainen_NK : NK ;
+fun yla'maalainen_NK : NK ;
+fun yla'nurkkalaukaus_NK : NK ;
+fun yla'_a'a'ni_NK : NK ;
+fun ylo'salainen_NK : NK ;
+fun ylo'snousemususko_NK : NK ;
+fun ylo'snousu_NK : NK ;
+fun ylo'spito_NK : NK ;
+fun ylo'spa'inen_NK : NK ;
+fun ymma'rta'va'isyys_NK : NK ;
+fun ympyra'kartio_NK : NK ;
+fun ympyra'lierio'_NK : NK ;
+fun ympyra'liike_NK : NK ;
+fun ympyra'rata_NK : NK ;
+fun ympyra'sylinteri_NK : NK ;
+fun ympyra'viiva_NK : NK ;
+fun ympa'riajo_NK : NK ;
+fun ympa'rileikkaus_NK : NK ;
+fun ympa'ripyo'rea'_NK : NK ;
+fun ympa'risto'aktiivi_NK : NK ;
+fun ympa'risto'aktivisti_NK : NK ;
+fun ympa'risto'alue_NK : NK ;
+fun ympa'risto'asia_NK : NK ;
+fun ympa'risto'haitta_NK : NK ;
+fun ympa'risto'hygienia_NK : NK ;
+fun ympa'risto'ja'rjesto'_NK : NK ;
+fun ympa'risto'kasvatus_NK : NK ;
+fun ympa'risto'katastrofi_NK : NK ;
+fun ympa'risto'keskus_NK : NK ;
+fun ympa'risto'kunta_NK : NK ;
+fun ympa'risto'liike_NK : NK ;
+fun ympa'risto'lupa_NK : NK ;
+fun ympa'risto'melu_NK : NK ;
+fun ympa'risto'merkki_NK : NK ;
+fun ympa'risto'ministeri_NK : NK ;
+fun ympa'risto'ministerio'_NK : NK ;
+fun ympa'risto'myrkky_NK : NK ;
+fun ympa'risto'oikeus_NK : NK ;
+fun ympa'risto'oppi_NK : NK ;
+fun ympa'risto'pakolainen_NK : NK ;
+fun ympa'risto'pera'inen_NK : NK ;
+fun ympa'risto'politiikka_NK : NK ;
+fun ympa'risto'psykologia_NK : NK ;
+fun ympa'risto'rikos_NK : NK ;
+fun ympa'risto'sihteeri_NK : NK ;
+fun ympa'risto'taide_NK : NK ;
+fun ympa'risto'tekija'_NK : NK ;
+fun ympa'risto'tekniikka_NK : NK ;
+fun ympa'risto'tuho_NK : NK ;
+fun ympa'risto'vahinko_NK : NK ;
+fun ympa'risto'vaikutus_NK : NK ;
+fun ympa'risto'vero_NK : NK ;
+fun ympa'rivuotinen_NK : NK ;
+fun ympa'rysmaa_NK : NK ;
+fun ympa'rysmitta_NK : NK ;
+fun ympa'rysmittainen_NK : NK ;
+fun ympa'rysmuuri_NK : NK ;
+fun ympa'rysvalta_NK : NK ;
+fun ynna'lasku_NK : NK ;
+fun yritta'ja'ela'ke_NK : NK ;
+fun yritysasiakas_NK : NK ;
+fun yritysauto_NK : NK ;
+fun yritysdemokratia_NK : NK ;
+fun yritysjohtaja_NK : NK ;
+fun yritysjohto_NK : NK ;
+fun yrityskauppa_NK : NK ;
+fun yrityskulttuuri_NK : NK ;
+fun yrityskuolema_NK : NK ;
+fun yrityskuva_NK : NK ;
+fun yritysmuoto_NK : NK ;
+fun yritysosto_NK : NK ;
+fun yrityspankki_NK : NK ;
+fun yritysriski_NK : NK ;
+fun yrityssaneeraus_NK : NK ;
+fun yritystalous_NK : NK ;
+fun yritystoiminta_NK : NK ;
+fun yritystutkija_NK : NK ;
+fun yritystutkimus_NK : NK ;
+fun yritysvaltaus_NK : NK ;
+fun yrttiliko'o'ri_NK : NK ;
+fun yrttila'a'ke_NK : NK ;
+fun yrttila'a'kinta'_NK : NK ;
+fun yrttimauste_NK : NK ;
+fun yrttisampoo_NK : NK ;
+fun yrttisuola_NK : NK ;
+fun yrttitarha_NK : NK ;
+fun yrttitee_NK : NK ;
+fun yrttiuute_NK : NK ;
+fun yska'kohtaus_NK : NK ;
+fun ysta'vyyskaupunki_NK : NK ;
+fun ysta'vyyskunta_NK : NK ;
+fun ysta'vyysliitto_NK : NK ;
+fun ysta'vyysottelu_NK : NK ;
+fun ysta'vyysseura_NK : NK ;
+fun ysta'vyysside_NK : NK ;
+fun ysta'vyyssopimus_NK : NK ;
+fun ysta'vyyssuhde_NK : NK ;
+fun ysta'vyysvierailu_NK : NK ;
+fun ysta'va'palvelu_NK : NK ;
+fun ysta'va'piiri_NK : NK ;
+fun yo'kaste_NK : NK ;
+fun yo'kastelu_NK : NK ;
+fun yo'sa'hko'la'mmitys_NK : NK ;
+fun a'idinmaitokeskus_NK : NK ;
+fun a'ima'neula_NK : NK ;
+fun a'ima'ruoho_NK : NK ;
+fun a'itienpa'iva'kortti_NK : NK ;
+fun a'itienpa'iva'ruusu_NK : NK ;
+fun a'itihahmo_NK : NK ;
+fun a'itijumala_NK : NK ;
+fun a'itijumalatar_NK : NK ;
+fun a'itikulta_NK : NK ;
+fun a'itimuori_NK : NK ;
+fun a'itimyytti_NK : NK ;
+fun a'itipuoli_NK : NK ;
+fun a'itivainaja_NK : NK ;
+fun a'itiysavustus_NK : NK ;
+fun a'itiysavustuspakkaus_NK : NK ;
+fun a'itiyshuolto_NK : NK ;
+fun a'itiyshuoltotyo'_NK : NK ;
+fun a'itiysjumppa_NK : NK ;
+fun a'itiysloma_NK : NK ;
+fun a'itiysmekko_NK : NK ;
+fun a'itiysneuvola_NK : NK ;
+fun a'itiyspakkaus_NK : NK ;
+fun a'itiysraha_NK : NK ;
+fun a'itiysvaate_NK : NK ;
+fun a'itiysvapaa_NK : NK ;
+fun a'itiysvoimistelu_NK : NK ;
+fun a'ka'ma'bakteeri_NK : NK ;
+fun a'ka'ma'pistia'inen_NK : NK ;
+fun a'ka'ma'punkki_NK : NK ;
+fun a'ka'ma'sa'a'ski_NK : NK ;
+fun a'lyisyys_NK : NK ;
+fun a'lykkyysika'_NK : NK ;
+fun a'lykkyystaso_NK : NK ;
+fun a'lykkyystesti_NK : NK ;
+fun a'lykortti_NK : NK ;
+fun a'lyka'a'pio'_NK : NK ;
+fun a'lynystyra'_NK : NK ;
+fun a'lypeli_NK : NK ;
+fun a'lypera'inen_AK : AK ;
+fun a'lypera'isyys_NK : NK ;
+fun a'lypa'a'_NK : NK ;
+fun a'lyvapaa_NK : NK ;
+fun a'nkyra'ka'nni_NK : NK ;
+fun a'rsykekentta'_NK : NK ;
+fun a'rsyketulva_NK : NK ;
+fun a'rsytyskynnys_NK : NK ;
+fun a'ssa'vika_NK : NK ;
+fun a'a'nenmuokkauslaite_NK : NK ;
+fun a'a'nenmuokkaustekniikka_NK : NK ;
+fun a'a'nentallennustekniikka_NK : NK ;
+fun a'a'nentoistolaite_NK : NK ;
+fun a'a'nentoistolaitteisto_NK : NK ;
+fun a'a'nentoistotekniikka_NK : NK ;
+fun a'a'nestysalue_NK : NK ;
+fun a'a'nestysesitys_NK : NK ;
+fun a'a'nestyskelpoinen_NK : NK ;
+fun a'a'nestyskone_NK : NK ;
+fun a'a'nestyslippu_NK : NK ;
+fun a'a'nestysoikeus_NK : NK ;
+fun a'a'nestyspaikka_NK : NK ;
+fun a'a'nestysprosentti_NK : NK ;
+fun a'a'nestyspa'iva'_NK : NK ;
+fun a'a'nestystulos_NK : NK ;
+fun a'a'niaalto_NK : NK ;
+fun a'a'niaines_NK : NK ;
+fun a'a'nialue_NK : NK ;
+fun a'a'niaukko_NK : NK ;
+fun a'a'niefekti_NK : NK ;
+fun a'a'nielin_NK : NK ;
+fun a'a'nieriste_NK : NK ;
+fun a'a'nieristys_NK : NK ;
+fun a'a'nifilmi_NK : NK ;
+fun a'a'niharava_NK : NK ;
+fun a'a'nihuuli_NK : NK ;
+fun a'a'nihuulikyhmy_NK : NK ;
+fun a'a'niha'irio'_NK : NK ;
+fun a'a'nija'nne_NK : NK ;
+fun a'a'nikentta'_NK : NK ;
+fun a'a'nikerta_NK : NK ;
+fun a'a'nikirja_NK : NK ;
+fun a'a'nikirje_NK : NK ;
+fun a'a'nikortti_NK : NK ;
+fun a'a'nikulissi_NK : NK ;
+fun a'a'nikyhmy_NK : NK ;
+fun a'a'nikynnys_NK : NK ;
+fun a'a'nilaji_NK : NK ;
+fun a'a'nilevy_NK : NK ;
+fun a'a'nilevykonsertti_NK : NK ;
+fun a'a'nilevymusiikki_NK : NK ;
+fun a'a'nilevysto'_NK : NK ;
+fun a'a'nilevyteollisuus_NK : NK ;
+fun a'a'nimaisema_NK : NK ;
+fun a'a'nimateriaali_NK : NK ;
+fun a'a'nimerkki_NK : NK ;
+fun a'a'nimerkkilaite_NK : NK ;
+fun a'a'nima'a'ra'_NK : NK ;
+fun a'a'ninauha_NK : NK ;
+fun a'a'ninauhuri_NK : NK ;
+fun a'a'nioikeudeton_NK : NK ;
+fun a'a'nioikeus_NK : NK ;
+fun a'a'nioikeusika'raja_NK : NK ;
+fun a'a'nioikeutettu_NK : NK ;
+fun a'a'niopaste_NK : NK ;
+fun a'a'niopillinen_NK : NK ;
+fun a'a'nioppi_NK : NK ;
+fun a'a'nipa'a'_NK : NK ;
+fun a'a'niraita_NK : NK ;
+fun a'a'nirako_NK : NK ;
+fun a'a'nirasia_NK : NK ;
+fun a'a'nirauta_NK : NK ;
+fun a'a'nisignaali_NK : NK ;
+fun a'a'nitaajuinen_NK : NK ;
+fun a'a'nitallenne_NK : NK ;
+fun a'a'nitaso_NK : NK ;
+fun a'a'nitearkisto_NK : NK ;
+fun a'a'nitehoste_NK : NK ;
+fun a'a'nitekniikka_NK : NK ;
+fun a'a'nitorvi_NK : NK ;
+fun a'a'nitysstudio_NK : NK ;
+fun a'a'nitystekniikka_NK : NK ;
+fun a'a'nivallaton_NK : NK ;
+fun a'a'nivalli_NK : NK ;
+fun a'a'nivalta_NK : NK ;
+fun a'a'nivaltainen_NK : NK ;
+fun a'a'nivarsi_NK : NK ;
+fun a'a'nivyo'ry_NK : NK ;
+fun a'a'nneasu_NK : NK ;
+fun a'a'nnehistoria_NK : NK ;
+fun a'a'nnelaillinen_NK : NK ;
+fun a'a'nnelaki_NK : NK ;
+fun a'a'nnemaalailu_NK : NK ;
+fun a'a'nneopillinen_NK : NK ;
+fun a'a'nneoppi_NK : NK ;
+fun a'a'nnevaihtelu_NK : NK ;
+fun a'a'nto'elimisto'_NK : NK ;
+fun a'a'nto'elin_NK : NK ;
+fun a'a'riaines_NK : NK ;
+fun a'a'rialue_NK : NK ;
+fun a'a'riarvo_NK : NK ;
+fun a'a'riasema_NK : NK ;
+fun a'a'riasento_NK : NK ;
+fun a'a'ri_ilmio'_NK : NK ;
+fun a'a'rilaita_NK : NK ;
+fun a'a'riliike_NK : NK ;
+fun a'a'rimma'isyysaines_NK : NK ;
+fun a'a'rimma'isyysryhma'_NK : NK ;
+fun a'a'rimuslimi_NK : NK ;
+fun a'a'rioikeisto_NK : NK ;
+fun a'a'rioikeistolainen_NK : NK ;
+fun a'a'riosa_NK : NK ;
+fun a'a'ripiste_NK : NK ;
+fun a'a'ripa'a'_NK : NK ;
+fun a'a'riraja_NK : NK ;
+fun a'a'riryhma'_NK : NK ;
+fun a'a'risuunta_NK : NK ;
+fun a'a'ritapaus_NK : NK ;
+fun a'a'rivasemmisto_NK : NK ;
+fun a'a'rivasemmistolainen_NK : NK ;
+fun a'a'riviiva_NK : NK ;
+fun a'a'riviivapiirros_NK : NK ;
+fun a'a'riviivapiirustus_NK : NK ;
+fun a'a'riva'li_NK : NK ;
+fun o'kytalo_NK : NK ;
+fun o'ljyalue_NK : NK ;
+fun o'ljyesiintyma'_NK : NK ;
+fun o'ljyhappo_NK : NK ;
+fun o'ljyhiekka_NK : NK ;
+fun o'ljyhoito_NK : NK ;
+fun o'ljyjohto_NK : NK ;
+fun o'ljykakku_NK : NK ;
+fun o'ljykalvo_NK : NK ;
+fun o'ljykamiina_NK : NK ;
+fun o'ljykangas_NK : NK ;
+fun o'ljykangastakki_NK : NK ;
+fun o'ljykanisteri_NK : NK ;
+fun o'ljykankainen_NK : NK ;
+fun o'ljykannu_NK : NK ;
+fun o'ljykastike_NK : NK ;
+fun o'ljykasvi_NK : NK ;
+fun o'ljykatastrofi_NK : NK ;
+fun o'ljykentta'_NK : NK ;
+fun o'ljykerrostuma_NK : NK ;
+fun o'ljylamppu_NK : NK ;
+fun o'ljylautta_NK : NK ;
+fun o'ljyliuske_NK : NK ;
+fun o'ljyla'hde_NK : NK ;
+fun o'ljyla'ikka'_NK : NK ;
+fun o'ljyla'iska'_NK : NK ;
+fun o'ljyla'mmitys_NK : NK ;
+fun o'ljylo'yto'_NK : NK ;
+fun o'ljymaa_NK : NK ;
+fun o'ljymaalaus_NK : NK ;
+fun o'ljymaali_NK : NK ;
+fun o'ljynjalostusteollisuus_NK : NK ;
+fun o'ljynpainemittari_NK : NK ;
+fun o'ljynporauslautta_NK : NK ;
+fun o'ljyntuottajamaa_NK : NK ;
+fun o'ljynvieja'maa_NK : NK ;
+fun o'ljypalmu_NK : NK ;
+fun o'ljypastelli_NK : NK ;
+fun o'ljypisara_NK : NK ;
+fun o'ljypitoinen_NK : NK ;
+fun o'ljypohatta_NK : NK ;
+fun o'ljypohja_NK : NK ;
+fun o'ljypohjainen_NK : NK ;
+fun o'ljypolitiikka_NK : NK ;
+fun o'ljypoltin_NK : NK ;
+fun o'ljypumppu_NK : NK ;
+fun o'ljypuomi_NK : NK ;
+fun o'ljypuu_NK : NK ;
+fun o'ljysampoo_NK : NK ;
+fun o'ljysatama_NK : NK ;
+fun o'ljysora_NK : NK ;
+fun o'ljysorastus_NK : NK ;
+fun o'ljysuoni_NK : NK ;
+fun o'ljysa'ilio'_NK : NK ;
+fun o'ljytahra_NK : NK ;
+fun o'ljytakki_NK : NK ;
+fun o'ljytankkeri_NK : NK ;
+fun o'ljytankki_NK : NK ;
+fun o'ljyteollisuus_NK : NK ;
+fun o'ljytila_NK : NK ;
+fun o'ljytuho_NK : NK ;
+fun o'ljytuikku_NK : NK ;
+fun o'ljytuote_NK : NK ;
+fun o'ljytynnyri_NK : NK ;
+fun o'ljyvahinko_NK : NK ;
+fun o'ljyvalaistus_NK : NK ;
+fun o'ljyvalo_NK : NK ;
+fun o'ljyvaranto_NK : NK ;
+fun o'ljyvarasto_NK : NK ;
+fun o'ljyva'ri_NK : NK ;
+}
diff --git a/lib/src/finnish/DictFin.gf b/lib/src/finnish/DictFin.gf
new file mode 100644
--- /dev/null
+++ b/lib/src/finnish/DictFin.gf
@@ -0,0 +1,42057 @@
+--# -path=.:alltenses
+
+concrete DictFin of DictFinAbs = open MorphoFin, Kotus, Prelude in {
+
+-- extracted from http://kaino.kotus.fi/sanat/nykysuomi/, licensed under LGPL
+-- compounds in DictCompFin
+
+flags coding = utf8 ;
+
+lincat NK = {s : NForms} ; AK = {s : NForms} ; VK = {s : VForms} ; AdvK = {s : Str} ;
+
+lin aakkonen_NK = {s = d38 "aakkonen"} ;
+lin aakkosellinen_AK = {s = d38 "aakkosellinen"} ;
+--+ lin aakkosellisesti_AdvK = {s = c99 "aakkosellisesti"} ;
+lin aakkosellisuus_NK = {s = d40 "aakkosellisuus"} ;
+lin aakkosittain_AdvK = {s = c99 "aakkosittain"} ;
+lin aakkostaa_VK = {s = c53 "aakkostaa"} ;
+lin aakkosto_NK = {s = d02 "aakkosto"} ;
+lin aakkostus_NK = {s = d39 "aakkostus"} ;
+lin aalloittain_AdvK = {s = c99 "aalloittain"} ;
+lin aalloittainen_NK = {s = d38 "aalloittainen"} ;
+lin aalloittaisuus_NK = {s = d40 "aalloittaisuus"} ;
+lin aallokas_NK = {s = d41A "aallokas"} ;
+lin aallokko_NK = {s = d04A "aallokko"} ;
+lin aallota_VK = {s = c75A "aallota"} ;
+lin aallotar_NK = {s = d32A "aallotar"} ;
+lin aallottaa_VK = {s = c53A "aallottaa"} ;
+lin aallotus_NK = {s = d39 "aallotus"} ;
+lin aaloe_NK = {s = d03 "aaloe"} ;
+lin aalto_NK = {s = d01A "aalto"} ;
+lin aaltoilla_VK = {s = c67 "aaltoilla"} ;
+lin aaltoilu_NK = {s = d02 "aaltoilu"} ;
+lin aaltoinen_NK = {s = d38 "aaltoinen"} ;
+lin aamen_NK = {s = d32 "aamen"} ;
+lin aamiainen_NK = {s = d38 "aamiainen"} ;
+lin aamu_NK = {s = d01 "aamu"} ;
+lin aamuinen_NK = {s = d38 "aamuinen"} ;
+lin aamuisin_AdvK = {s = c99 "aamuisin"} ;
+lin aamullinen_NK = {s = d38 "aamullinen"} ;
+lin aamusella_AdvK = {s = c99 "aamusella"} ;
+lin aamutuimaan_AdvK = {s = c99 "aamutuimaan"} ;
+lin aapa_NK = {s = d09A "aapa"} ;
+lin aapinen_NK = {s = d38 "aapinen"} ;
+lin aaprotti_NK = {s = d05A "aaprotti"} ;
+lin aari_NK = {s = d05 "aari"} ;
+lin aaria_NK = {s = d12 "aaria"} ;
+lin aarnio_1_NK = {s = d03 "aarnio"} ;
+lin aarnio_2_NK = {s = d03 "aarnio"} ;
+lin aarpora_NK = {s = d10 "aarpora"} ;
+lin aarre_NK = {s = d48A "aarre"} ;
+lin aarteisto_NK = {s = d02 "aarteisto"} ;
+lin aasi_NK = {s = d05 "aasi"} ;
+--+ lin aasimaisesti_AdvK = {s = c99 "aasimaisesti"} ;
+lin aasimaisuus_NK = {s = d40 "aasimaisuus"} ;
+lin aasinpotku_NK = {s = d01 "aasinpotku"} ;
+lin aatami_NK = {s = d05 "aatami"} ;
+lin aate_NK = {s = d48A "aate"} ;
+lin aateli_NK = {s = d06 "aateli"} ;
+lin aatelinen_NK = {s = d38 "aatelinen"} ;
+lin aatelisto_NK = {s = d01 "aatelisto"} ;
+lin aatelisuus_NK = {s = d40 "aatelisuus"} ;
+lin aateliton_NK = {s = d34A "aateliton"} ;
+lin aateloida_VK = {s = c62 "aateloida"} ;
+lin aatelointi_NK = {s = d05A "aatelointi"} ;
+lin aateluus_NK = {s = d40 "aateluus"} ;
+lin aatos_NK = {s = d39 "aatos"} ;
+lin aatra_NK = {s = d09 "aatra"} ;
+lin aatteellinen_AK = {s = d38 "aatteellinen"} ;
+--+ lin aatteellisesti_AdvK = {s = c99 "aatteellisesti"} ;
+lin aatteellisuus_NK = {s = d40 "aatteellisuus"} ;
+lin aatteinen_NK = {s = d38 "aatteinen"} ;
+lin aatto_NK = {s = d01A "aatto"} ;
+lin aava_NK = {s = d09 "aava"} ;
+lin aave_NK = {s = d48 "aave"} ;
+--+ lin aavemaisesti_AdvK = {s = c99 "aavemaisesti"} ;
+lin aavemaisuus_NK = {s = d40 "aavemaisuus"} ;
+lin aavikko_NK = {s = d04A "aavikko"} ;
+lin aavikoitua_VK = {s = c52A "aavikoitua"} ;
+lin aavistaa_VK = {s = c53 "aavistaa"} ;
+lin aavistamaton_NK = {s = d34A "aavistamaton"} ;
+lin aavistella_VK = {s = c67 "aavistella"} ;
+lin aavistus_NK = {s = d39 "aavistus"} ;
+lin abatsi_NK = {s = d05 "abatsi"} ;
+lin abbedissa_NK = {s = d09 "abbedissa"} ;
+lin abessiivi_NK = {s = d05 "abessiivi"} ;
+lin abi_NK = {s = d05 "abi"} ;
+lin abiturientti_NK = {s = d05A "abiturientti"} ;
+lin ablatiivi_NK = {s = d05 "ablatiivi"} ;
+lin abnormi_NK = {s = d05 "abnormi"} ;
+lin abnormius_NK = {s = d40 "abnormius"} ;
+lin abo_NK = {s = d01 "abo"} ;
+lin aboriginaali_NK = {s = d05 "aboriginaali"} ;
+lin abortoida_VK = {s = c62 "abortoida"} ;
+lin abortointi_NK = {s = d05A "abortointi"} ;
+lin abortti_NK = {s = d05A "abortti"} ;
+lin abrakadabra_NK = {s = d09 "abrakadabra"} ;
+lin absessi_NK = {s = d05 "absessi"} ;
+lin absintti_NK = {s = d05A "absintti"} ;
+lin abskissa_NK = {s = d09 "abskissa"} ;
+lin absolutismi_NK = {s = d05 "absolutismi"} ;
+lin absolutisti_NK = {s = d05 "absolutisti"} ;
+lin absoluutti_NK = {s = d05A "absoluutti"} ;
+lin absoluuttinen_AK = {s = d38 "absoluuttinen"} ;
+--+ lin absoluuttisesti_AdvK = {s = c99 "absoluuttisesti"} ;
+lin absoluuttisuus_NK = {s = d40 "absoluuttisuus"} ;
+lin absorboida_VK = {s = c62 "absorboida"} ;
+lin absorbointi_NK = {s = d05A "absorbointi"} ;
+lin absorboitua_VK = {s = c52A "absorboitua"} ;
+lin absorptio_NK = {s = d03 "absorptio"} ;
+lin abstinenssi_NK = {s = d05 "abstinenssi"} ;
+lin abstrahoida_VK = {s = c62 "abstrahoida"} ;
+lin abstrahointi_NK = {s = d05A "abstrahointi"} ;
+lin abstrahoitua_VK = {s = c52A "abstrahoitua"} ;
+lin abstrakti_AK = {s = d05 "abstrakti"} ;
+lin abstraktinen_AK = {s = d38 "abstraktinen"} ;
+lin abstraktio_NK = {s = d03 "abstraktio"} ;
+--+ lin abstraktisesti_AdvK = {s = c99 "abstraktisesti"} ;
+lin abstraktistaa_VK = {s = c53 "abstraktistaa"} ;
+--+ lin abstraktisti_AdvK = {s = c99 "abstraktisti"} ;
+lin abstraktistua_VK = {s = c52 "abstraktistua"} ;
+lin abstraktisuus_NK = {s = d40 "abstraktisuus"} ;
+lin abstraktius_NK = {s = d40 "abstraktius"} ;
+lin absurdi_AK = {s = d05 "absurdi"} ;
+--+ lin absurdisti_AdvK = {s = c99 "absurdisti"} ;
+lin absurdius_NK = {s = d40 "absurdius"} ;
+lin adagio_NK = {s = d01 "adagio"} ;
+lin adaptaatio_NK = {s = d03 "adaptaatio"} ;
+lin adapteri_NK = {s = d06 "adapteri"} ;
+lin adaptoida_VK = {s = c62 "adaptoida"} ;
+lin adaptointi_NK = {s = d05A "adaptointi"} ;
+lin adaptoitua_VK = {s = c52A "adaptoitua"} ;
+lin addikti_NK = {s = d05 "addikti"} ;
+lin addiktio_NK = {s = d03 "addiktio"} ;
+lin adekvaatisti_AdvK = {s = c99 "adekvaatisti"} ;
+lin adekvaatti_NK = {s = d05A "adekvaatti"} ;
+lin adekvaattius_NK = {s = d40 "adekvaattius"} ;
+lin adenooma_NK = {s = d10 "adenooma"} ;
+lin adessiivi_NK = {s = d05 "adessiivi"} ;
+lin adheesio_NK = {s = d03 "adheesio"} ;
+lin adjektiivi_NK = {s = d05 "adjektiivi"} ;
+lin adjektiivinen_AK = {s = d38 "adjektiivinen"} ;
+--+ lin adjektiivisesti_AdvK = {s = c99 "adjektiivisesti"} ;
+lin adjektiivisuus_NK = {s = d40 "adjektiivisuus"} ;
+lin adjutantti_NK = {s = d05A "adjutantti"} ;
+lin adonis_NK = {s = d39 "adonis"} ;
+lin adoptio_NK = {s = d03 "adoptio"} ;
+lin adoptoida_VK = {s = c62 "adoptoida"} ;
+lin adoptointi_NK = {s = d05A "adoptointi"} ;
+lin adrenaliini_NK = {s = d05 "adrenaliini"} ;
+lin adressi_NK = {s = d05 "adressi"} ;
+lin adsorboida_VK = {s = c62 "adsorboida"} ;
+lin adsorbointi_NK = {s = d05A "adsorbointi"} ;
+lin adsorboitua_VK = {s = c52A "adsorboitua"} ;
+lin adsorptio_NK = {s = d03 "adsorptio"} ;
+lin adventismi_NK = {s = d05 "adventismi"} ;
+lin adventisti_NK = {s = d05 "adventisti"} ;
+lin adventti_NK = {s = d05A "adventti"} ;
+lin adventtiaika_NK = {s = d09A "adventtiaika"} ;
+lin adverbi_NK = {s = d05 "adverbi"} ;
+lin adverbiaali_NK = {s = d05 "adverbiaali"} ;
+lin adverbiaalinen_AK = {s = d38 "adverbiaalinen"} ;
+--+ lin adverbiaalisesti_AdvK = {s = c99 "adverbiaalisesti"} ;
+lin adverbiaalisuus_NK = {s = d40 "adverbiaalisuus"} ;
+lin adverbinen_AK = {s = d38 "adverbinen"} ;
+--+ lin adverbisesti_AdvK = {s = c99 "adverbisesti"} ;
+lin adverbisuus_NK = {s = d40 "adverbisuus"} ;
+lin adversatiivinen_AK = {s = d38 "adversatiivinen"} ;
+--+ lin adversatiivisesti_AdvK = {s = c99 "adversatiivisesti"} ;
+lin adversatiivisuus_NK = {s = d40 "adversatiivisuus"} ;
+lin aerobic_NK = {s = d05 "aerobic"} ;
+lin aerobikata_VK = {s = c73A "aerobikata"} ;
+lin aerobikkaaja_NK = {s = d10 "aerobikkaaja"} ;
+lin aerobikkaus_NK = {s = d39 "aerobikkaus"} ;
+lin aerobikki_NK = {s = d05A "aerobikki"} ;
+lin aerobinen_NK = {s = d38 "aerobinen"} ;
+lin aerobiologia_NK = {s = d12 "aerobiologia"} ;
+lin aerobiologinen_NK = {s = d38 "aerobiologinen"} ;
+lin aerodynaaminen_NK = {s = d38 "aerodynaaminen"} ;
+lin aerodynamiikka_NK = {s = d09A "aerodynamiikka"} ;
+lin aerosoli_NK = {s = d05 "aerosoli"} ;
+lin afaatikko_NK = {s = d04A "afaatikko"} ;
+lin afaattinen_NK = {s = d38 "afaattinen"} ;
+lin afasia_NK = {s = d12 "afasia"} ;
+lin affekti_NK = {s = d05 "affekti"} ;
+lin affektiivinen_AK = {s = d38 "affektiivinen"} ;
+--+ lin affektiivisesti_AdvK = {s = c99 "affektiivisesti"} ;
+lin affektiivisuus_NK = {s = d40 "affektiivisuus"} ;
+lin affektinen_AK = {s = d38 "affektinen"} ;
+--+ lin affektisesti_AdvK = {s = c99 "affektisesti"} ;
+lin affektisuus_NK = {s = d40 "affektisuus"} ;
+lin affisio_NK = {s = d03 "affisio"} ;
+lin affisioida_VK = {s = c62 "affisioida"} ;
+lin afgaani_NK = {s = d05 "afgaani"} ;
+lin aforismi_NK = {s = d05 "aforismi"} ;
+lin aforistinen_NK = {s = d38 "aforistinen"} ;
+lin afrikaans_NK = {s = d05 "afrikaans"} ;
+lin afrikandi_NK = {s = d05 "afrikandi"} ;
+lin afrikkalainen_NK = {s = d38 "afrikkalainen"} ;
+lin afrikkalaisuus_NK = {s = d40 "afrikkalaisuus"} ;
+lin afro_NK = {s = d01 "afro"} ;
+lin afta_NK = {s = d09 "afta"} ;
+lin afa'a'ri_NK = {s = d05 "afääri"} ;
+lin agaatti_NK = {s = d05A "agaatti"} ;
+lin agaave_NK = {s = d08 "agaave"} ;
+lin agar_NK = {s = d06 "agar"} ;
+lin agar_agar_NK = {s = d06 "agar-agar"} ;
+lin agenda_NK = {s = d09 "agenda"} ;
+lin agentti_NK = {s = d05A "agentti"} ;
+lin agentuuri_NK = {s = d05 "agentuuri"} ;
+lin aggregaatti_NK = {s = d05A "aggregaatti"} ;
+lin aggressiivinen_AK = {s = d38 "aggressiivinen"} ;
+--+ lin aggressiivisesti_AdvK = {s = c99 "aggressiivisesti"} ;
+lin aggressiivisuus_NK = {s = d40 "aggressiivisuus"} ;
+lin aggressio_NK = {s = d03 "aggressio"} ;
+lin agitaatio_NK = {s = d03 "agitaatio"} ;
+lin agitaattori_NK = {s = d06 "agitaattori"} ;
+lin agitatorinen_NK = {s = d38 "agitatorinen"} ;
+lin agitoida_VK = {s = c62 "agitoida"} ;
+lin agitointi_NK = {s = d05A "agitointi"} ;
+lin agnostikko_NK = {s = d04A "agnostikko"} ;
+lin agnostinen_AK = {s = d38 "agnostinen"} ;
+--+ lin agnostisesti_AdvK = {s = c99 "agnostisesti"} ;
+lin agnostisismi_NK = {s = d05 "agnostisismi"} ;
+lin agnostisuus_NK = {s = d40 "agnostisuus"} ;
+lin agorafobia_NK = {s = d12 "agorafobia"} ;
+lin agraarinen_NK = {s = d38 "agraarinen"} ;
+lin agraarisuus_NK = {s = d40 "agraarisuus"} ;
+lin agrologi_NK = {s = d05 "agrologi"} ;
+lin agronomi_NK = {s = d05 "agronomi"} ;
+lin agronomia_NK = {s = d12 "agronomia"} ;
+lin ah_AdvK = {s = c99 "ah"} ;
+lin ahaa_AdvK = {s = c99 "ahaa"} ;
+lin ahava_NK = {s = d11 "ahava"} ;
+lin ahavoittaa_VK = {s = c53A "ahavoittaa"} ;
+lin ahavoitua_VK = {s = c52A "ahavoitua"} ;
+lin ahdas_NK = {s = d41A "ahdas"} ;
+--+ lin ahdasmielisesti_AdvK = {s = c99 "ahdasmielisesti"} ;
+--+ lin ahdasna'ko'isesti_AdvK = {s = c99 "ahdasnäköisesti"} ;
+--+ lin ahdasrajaisesti_AdvK = {s = c99 "ahdasrajaisesti"} ;
+lin ahdasrajaisuus_NK = {s = d40 "ahdasrajaisuus"} ;
+lin ahdata_VK = {s = c73A "ahdata"} ;
+lin ahde_NK = {s = d48A "ahde"} ;
+lin ahdin_NK = {s = d33A "ahdin"} ;
+lin ahdinko_NK = {s = d01A "ahdinko"} ;
+lin ahdistaa_VK = {s = c53 "ahdistaa"} ;
+lin ahdistaja_NK = {s = d10 "ahdistaja"} ;
+lin ahdistelija_NK = {s = d12 "ahdistelija"} ;
+lin ahdistella_VK = {s = c67 "ahdistella"} ;
+lin ahdistelu_NK = {s = d02 "ahdistelu"} ;
+lin ahdistua_VK = {s = c52 "ahdistua"} ;
+--+ lin ahdistuneesti_AdvK = {s = c99 "ahdistuneesti"} ;
+lin ahdistuneisuus_NK = {s = d40 "ahdistuneisuus"} ;
+lin ahdistunut_AK = {s = d47 "ahdistunut"} ;
+lin ahdistus_NK = {s = d39 "ahdistus"} ;
+lin aherrus_NK = {s = d39 "aherrus"} ;
+lin ahertaa_VK = {s = c54A "ahertaa"} ;
+lin ahertaja_NK = {s = d10 "ahertaja"} ;
+lin ahjo_NK = {s = d01 "ahjo"} ;
+lin ahkera_AK = {s = d10 "ahkera"} ;
+lin ahkeraan_AdvK = {s = c99 "ahkeraan"} ;
+lin ahkeraliisa_NK = {s = d09 "ahkeraliisa"} ;
+--+ lin ahkerasti_AdvK = {s = c99 "ahkerasti"} ;
+lin ahkeroida_VK = {s = c68 "ahkeroida"} ;
+lin ahkerointi_NK = {s = d05A "ahkerointi"} ;
+lin ahkeruus_NK = {s = d40 "ahkeruus"} ;
+lin ahkio_NK = {s = d03 "ahkio"} ;
+lin ahma_NK = {s = d09 "ahma"} ;
+lin ahmaista_VK = {s = c66 "ahmaista"} ;
+lin ahmaisu_NK = {s = d02 "ahmaisu"} ;
+lin ahmatti_NK = {s = d05A "ahmatti"} ;
+lin ahmia_VK = {s = c61 "ahmia"} ;
+lin ahminta_NK = {s = d09A "ahminta"} ;
+--+ lin ahnaasti_AdvK = {s = c99 "ahnaasti"} ;
+lin ahnas_AK = {s = d41 "ahnas"} ;
+lin ahnaus_NK = {s = d40 "ahnaus"} ;
+lin ahne_AK = {s = d48 "ahne"} ;
+--+ lin ahneesti_AdvK = {s = c99 "ahneesti"} ;
+lin ahnehdinta_NK = {s = d09A "ahnehdinta"} ;
+lin ahnehtia_VK = {s = c61A "ahnehtia"} ;
+lin ahnehtija_NK = {s = d12 "ahnehtija"} ;
+lin ahneus_NK = {s = d40 "ahneus"} ;
+lin aho_NK = {s = d01 "aho"} ;
+lin ahrain_NK = {s = d33 "ahrain"} ;
+lin ahtaa_VK = {s = c56A "ahtaa"} ;
+lin ahtaaja_NK = {s = d10 "ahtaaja"} ;
+lin ahtaalla_AdvK = {s = c99 "ahtaalla"} ;
+lin ahtaalle_AdvK = {s = c99 "ahtaalle"} ;
+lin ahtaasti_AdvK = {s = c99 "ahtaasti"} ;
+lin ahtauma_NK = {s = d10 "ahtauma"} ;
+lin ahtaus_1_NK = {s = d40 "ahtaus"} ;
+lin ahtaus_2_NK = {s = d39 "ahtaus"} ;
+lin ahtauttaa_1_VK = {s = c53A "ahtauttaa"} ;
+lin ahtauttaa_2_VK = {s = c53A "ahtauttaa"} ;
+lin ahtautua_VK = {s = c52A "ahtautua"} ;
+lin ahtautuma_NK = {s = d10 "ahtautuma"} ;
+lin ahteri_NK = {s = d06 "ahteri"} ;
+lin Ahti_NK = {s = d05A "Ahti"} ;
+lin ahti_NK = {s = d05A "ahti"} ;
+lin ahtoutua_VK = {s = c52A "ahtoutua"} ;
+lin ahven_NK = {s = d32 "ahven"} ;
+lin ai_AdvK = {s = c99 "ai"} ;
+lin aidanne_NK = {s = d48A "aidanne"} ;
+lin aidas_NK = {s = d39 "aidas"} ;
+lin aidata_VK = {s = c73A "aidata"} ;
+lin aidoittaa_VK = {s = c53A "aidoittaa"} ;
+lin aidosti_AdvK = {s = c99 "aidosti"} ;
+lin AIDS_NK = {s = d05 "AIDS"} ;
+lin aie_NK = {s = d48A "aie"} ;
+lin aiemmin_AdvK = {s = c99 "aiemmin"} ;
+lin aiempi_NK = {s = d16A "aiempi"} ;
+lin aiennus_NK = {s = d39 "aiennus"} ;
+lin aientaa_VK = {s = c54A "aientaa"} ;
+lin aihe_NK = {s = d48 "aihe"} ;
+lin aiheellinen_AK = {s = d38 "aiheellinen"} ;
+--+ lin aiheellisesti_AdvK = {s = c99 "aiheellisesti"} ;
+lin aiheellistaa_VK = {s = c53 "aiheellistaa"} ;
+lin aiheellistua_VK = {s = c52 "aiheellistua"} ;
+lin aiheellisuus_NK = {s = d40 "aiheellisuus"} ;
+lin aiheeton_NK = {s = d34A "aiheeton"} ;
+lin aiheettomasti_AdvK = {s = c99 "aiheettomasti"} ;
+lin aiheettomuus_NK = {s = d40 "aiheettomuus"} ;
+lin aiheinen_NK = {s = d38 "aiheinen"} ;
+lin aihelma_NK = {s = d10 "aihelma"} ;
+lin aiheuttaa_VK = {s = c53A "aiheuttaa"} ;
+lin aiheuttaja_NK = {s = d10 "aiheuttaja"} ;
+lin aiheutua_VK = {s = c52A "aiheutua"} ;
+lin aiheutus_NK = {s = d39 "aiheutus"} ;
+lin aihio_NK = {s = d03 "aihio"} ;
+lin aijai_AdvK = {s = c99 "aijai"} ;
+lin aika_1_NK = {s = d09A "aika"} ;
+lin aika_2_AdvK = {s = c99 "aika"} ;
+lin aikaansaannos_NK = {s = d39 "aikaansaannos"} ;
+lin aikaansaapa_NK = {s = d10A "aikaansaapa"} ;
+lin aikaansaava_NK = {s = d10 "aikaansaava"} ;
+lin aikailla_VK = {s = c67 "aikailla"} ;
+lin aikailu_NK = {s = d02 "aikailu"} ;
+lin aikainen_NK = {s = d38 "aikainen"} ;
+lin aikaisemmin_AdvK = {s = c99 "aikaisemmin"} ;
+lin aikaisin_AdvK = {s = c99 "aikaisin"} ;
+lin aikaisintaan_AdvK = {s = c99 "aikaisintaan"} ;
+lin aikaistaa_VK = {s = c53 "aikaistaa"} ;
+lin aikaistua_VK = {s = c52 "aikaistua"} ;
+lin aikaistus_NK = {s = d39 "aikaistus"} ;
+lin aikaisuus_NK = {s = d40 "aikaisuus"} ;
+lin aikanaan_AdvK = {s = c99 "aikanaan"} ;
+lin aikansa_AdvK = {s = c99 "aikansa"} ;
+lin aikatauluttaa_VK = {s = c53A "aikatauluttaa"} ;
+lin aikauttaa_VK = {s = c53A "aikauttaa"} ;
+lin aikautus_NK = {s = d39 "aikautus"} ;
+lin aikido_NK = {s = d02 "aikido"} ;
+lin aikoa_VK = {s = c52A "aikoa"} ;
+lin aikoinaan_AdvK = {s = c99 "aikoinaan"} ;
+lin aikojaan_AdvK = {s = c99 "aikojaan"} ;
+lin aikomus_NK = {s = d39 "aikomus"} ;
+lin aikuinen_NK = {s = d38 "aikuinen"} ;
+lin aikuistua_VK = {s = c52 "aikuistua"} ;
+lin aikuisuus_NK = {s = d40 "aikuisuus"} ;
+lin ailahdella_VK = {s = c67A "ailahdella"} ;
+lin ailahdus_NK = {s = d39 "ailahdus"} ;
+lin ailahtaa_VK = {s = c53A "ailahtaa"} ;
+lin ailahtelu_NK = {s = d02 "ailahtelu"} ;
+lin ailakki_NK = {s = d05A "ailakki"} ;
+lin aimo_AdvK = {s = c99 "aimo"} ;
+lin aina_1_AdvK = {s = c99 "aina"} ;
+lin aina_2_NK = {s = d09 "aina"} ;
+lin ainainen_NK = {s = d38 "ainainen"} ;
+lin ainaiseksi_AdvK = {s = c99 "ainaiseksi"} ;
+lin ainakaan_AdvK = {s = c99 "ainakaan"} ;
+lin ainakin_AdvK = {s = c99 "ainakin"} ;
+lin aine_NK = {s = d48 "aine"} ;
+lin aineellinen_NK = {s = d38 "aineellinen"} ;
+lin aineellistaa_VK = {s = c53 "aineellistaa"} ;
+lin aineellistua_VK = {s = c52 "aineellistua"} ;
+lin aineellistuma_NK = {s = d10 "aineellistuma"} ;
+lin aineellisuus_NK = {s = d40 "aineellisuus"} ;
+lin aineeton_NK = {s = d34A "aineeton"} ;
+lin aineettomuus_NK = {s = d40 "aineettomuus"} ;
+lin aineinen_NK = {s = d38 "aineinen"} ;
+lin aineistaa_VK = {s = c53 "aineistaa"} ;
+lin aineisto_NK = {s = d02 "aineisto"} ;
+lin aineistua_VK = {s = c52 "aineistua"} ;
+lin aineistuma_NK = {s = d10 "aineistuma"} ;
+lin aineksinen_NK = {s = d38 "aineksinen"} ;
+lin aines_NK = {s = d39 "aines"} ;
+lin ainiaaksi_AdvK = {s = c99 "ainiaaksi"} ;
+lin ainiaan_AdvK = {s = c99 "ainiaan"} ;
+lin ainiaksi_AdvK = {s = c99 "ainiaksi"} ;
+lin ainian_AdvK = {s = c99 "ainian"} ;
+lin aino_NK = {s = d01 "aino"} ;
+lin ainoa_NK = {s = d15 "ainoa"} ;
+lin ainoastaan_AdvK = {s = c99 "ainoastaan"} ;
+lin ainokainen_NK = {s = d38 "ainokainen"} ;
+lin ainu_NK = {s = d01 "ainu"} ;
+lin ainut_AdvK = {s = c99 "ainut"} ;
+lin ainutkertaisuus_NK = {s = d40 "ainutkertaisuus"} ;
+lin aioli_NK = {s = d06 "aioli"} ;
+lin airo_NK = {s = d01 "airo"} ;
+lin aironveto_NK = {s = d01A "aironveto"} ;
+lin airut_NK = {s = d43 "airut"} ;
+lin aisa_NK = {s = d09 "aisa"} ;
+lin aisata_VK = {s = c73 "aisata"} ;
+lin aisaus_NK = {s = d39 "aisaus"} ;
+lin aisti_NK = {s = d05 "aisti"} ;
+lin aistia_VK = {s = c61 "aistia"} ;
+lin aistikas_AK = {s = d41A "aistikas"} ;
+--+ lin aistikkaasti_AdvK = {s = c99 "aistikkaasti"} ;
+lin aistikkuus_NK = {s = d40 "aistikkuus"} ;
+lin aistillinen_AK = {s = d38 "aistillinen"} ;
+--+ lin aistillisesti_AdvK = {s = c99 "aistillisesti"} ;
+lin aistillisuus_NK = {s = d40 "aistillisuus"} ;
+lin aistimus_NK = {s = d39 "aistimus"} ;
+lin aistin_NK = {s = d33 "aistin"} ;
+lin aistinen_NK = {s = d38 "aistinen"} ;
+lin aita_NK = {s = d09A "aita"} ;
+lin aitaus_NK = {s = d39 "aitaus"} ;
+lin aitio_NK = {s = d03 "aitio"} ;
+lin aito_NK = {s = d01A "aito"} ;
+lin aitoa_VK = {s = c52A "aitoa"} ;
+lin aitous_NK = {s = d40 "aitous"} ;
+lin aitta_NK = {s = d09A "aitta"} ;
+lin aituri_NK = {s = d06 "aituri"} ;
+lin aivan_AdvK = {s = c99 "aivan"} ;
+lin aivastaa_VK = {s = c53 "aivastaa"} ;
+lin aivastella_VK = {s = c67 "aivastella"} ;
+lin aivastus_NK = {s = d39 "aivastus"} ;
+lin aivastuttaa_VK = {s = c53A "aivastuttaa"} ;
+lin aivina_NK = {s = d13 "aivina"} ;
+lin aivo_NK = {s = d01 "aivo"} ;
+lin aivoitus_NK = {s = d39 "aivoitus"} ;
+lin aivokurkiainen_NK = {s = d38 "aivokurkiainen"} ;
+lin aivosto_NK = {s = d02 "aivosto"} ;
+--? lin aivot_NK = {s = d01 "aivot"} ;
+lin ajaa_VK = {s = c56 "ajaa"} ;
+lin ajaantua_VK = {s = c52A "ajaantua"} ;
+lin ajaja_NK = {s = d10 "ajaja"} ;
+lin ajallaan_AdvK = {s = c99 "ajallaan"} ;
+lin ajallinen_AK = {s = d38 "ajallinen"} ;
+--+ lin ajallisesti_AdvK = {s = c99 "ajallisesti"} ;
+lin ajallisuus_NK = {s = d40 "ajallisuus"} ;
+lin ajankohta_NK = {s = d10A "ajankohta"} ;
+lin ajankohtaistaa_VK = {s = c53 "ajankohtaistaa"} ;
+lin ajankohtaistua_VK = {s = c52 "ajankohtaistua"} ;
+lin ajankuluke_NK = {s = d48A "ajankuluke"} ;
+lin ajan_mittaan_AdvK = {s = c99 "ajan mittaan"} ;
+lin ajanmukaistaa_VK = {s = c53 "ajanmukaistaa"} ;
+lin ajanmukaistua_VK = {s = c52 "ajanmukaistua"} ;
+lin ajanmukaisuus_NK = {s = d40 "ajanmukaisuus"} ;
+lin ajantasaistaa_VK = {s = c53 "ajantasaistaa"} ;
+lin ajantasaistus_NK = {s = d39 "ajantasaistus"} ;
+lin ajantasaisuus_NK = {s = d40 "ajantasaisuus"} ;
+lin ajanviete_NK = {s = d48A "ajanviete"} ;
+lin ajanvietteellinen_NK = {s = d38 "ajanvietteellinen"} ;
+lin ajassa_AdvK = {s = c99 "ajassa"} ;
+lin ajassaan_AdvK = {s = c99 "ajassaan"} ;
+lin ajastaa_VK = {s = c53 "ajastaa"} ;
+lin ajastaika_NK = {s = d09A "ajastaika"} ;
+lin ajastin_NK = {s = d33 "ajastin"} ;
+lin ajastus_NK = {s = d39 "ajastus"} ;
+lin ajatella_VK = {s = c67A "ajatella"} ;
+lin ajatelma_NK = {s = d10 "ajatelma"} ;
+lin ajatollah_NK = {s = d05 "ajatollah"} ;
+lin ajaton_NK = {s = d34A "ajaton"} ;
+lin ajattaa_VK = {s = c53A "ajattaa"} ;
+lin ajattelematon_NK = {s = d34A "ajattelematon"} ;
+lin ajattelemattomasti_AdvK = {s = c99 "ajattelemattomasti"} ;
+lin ajattelemattomuus_NK = {s = d40 "ajattelemattomuus"} ;
+lin ajattelija_NK = {s = d12 "ajattelija"} ;
+lin ajattelu_NK = {s = d02 "ajattelu"} ;
+lin ajatteluttaa_VK = {s = c53A "ajatteluttaa"} ;
+lin ajattomasti_AdvK = {s = c99 "ajattomasti"} ;
+lin ajattomuus_NK = {s = d40 "ajattomuus"} ;
+lin ajatuksekas_NK = {s = d41A "ajatuksekas"} ;
+lin ajatuksellinen_AK = {s = d38 "ajatuksellinen"} ;
+--+ lin ajatuksellisesti_AdvK = {s = c99 "ajatuksellisesti"} ;
+lin ajatukseton_NK = {s = d34A "ajatukseton"} ;
+lin ajatuksettomasti_AdvK = {s = c99 "ajatuksettomasti"} ;
+lin ajatuksettomuus_NK = {s = d40 "ajatuksettomuus"} ;
+lin ajatuksinen_NK = {s = d38 "ajatuksinen"} ;
+lin ajatus_NK = {s = d39 "ajatus"} ;
+lin ajautua_VK = {s = c52A "ajautua"} ;
+lin ajelehtia_VK = {s = c61A "ajelehtia"} ;
+lin ajella_VK = {s = c67 "ajella"} ;
+lin ajelu_NK = {s = d02 "ajelu"} ;
+lin ajeluttaa_VK = {s = c53A "ajeluttaa"} ;
+lin ajettavuus_NK = {s = d40 "ajettavuus"} ;
+lin ajettua_VK = {s = c52A "ajettua"} ;
+lin ajettuma_NK = {s = d10 "ajettuma"} ;
+lin ajetuksissa_AdvK = {s = c99 "ajetuksissa"} ;
+lin ajo_NK = {s = d01 "ajo"} ;
+lin ajoaika_NK = {s = d09A "ajoaika"} ;
+lin ajoissa_AdvK = {s = c99 "ajoissa"} ;
+lin ajoittaa_VK = {s = c53A "ajoittaa"} ;
+lin ajoittain_AdvK = {s = c99 "ajoittain"} ;
+lin ajoittainen_NK = {s = d38 "ajoittainen"} ;
+lin ajoittaisuus_NK = {s = d40 "ajoittaisuus"} ;
+lin ajoittua_VK = {s = c52A "ajoittua"} ;
+lin ajoitus_NK = {s = d39 "ajoitus"} ;
+lin ajokas_1_NK = {s = d41A "ajokas"} ;
+lin ajokki_NK = {s = d05A "ajokki"} ;
+lin ajos_NK = {s = d39 "ajos"} ;
+lin ajuri_NK = {s = d06 "ajuri"} ;
+lin akaatti_NK = {s = d05A "akaatti"} ;
+lin akallinen_NK = {s = d38 "akallinen"} ;
+lin akana_NK = {s = d12 "akana"} ;
+lin akantti_NK = {s = d05A "akantti"} ;
+lin akasia_NK = {s = d12 "akasia"} ;
+lin akateemikko_NK = {s = d04A "akateemikko"} ;
+lin akateeminen_AK = {s = d38 "akateeminen"} ;
+--+ lin akateemisesti_AdvK = {s = c99 "akateemisesti"} ;
+lin akateemisuus_NK = {s = d40 "akateemisuus"} ;
+lin akatemia_NK = {s = d12 "akatemia"} ;
+lin akileija_NK = {s = d09 "akileija"} ;
+lin akka_NK = {s = d09A "akka"} ;
+--+ lin akkamaisesti_AdvK = {s = c99 "akkamaisesti"} ;
+lin akkamaisuus_NK = {s = d40 "akkamaisuus"} ;
+lin akkautua_VK = {s = c52A "akkautua"} ;
+lin akklimatisaatio_NK = {s = d03 "akklimatisaatio"} ;
+lin akklimatisoida_VK = {s = c62 "akklimatisoida"} ;
+lin akklimatisointi_NK = {s = d05A "akklimatisointi"} ;
+lin akklimatisoitua_VK = {s = c52A "akklimatisoitua"} ;
+lin akkommodaatio_NK = {s = d03 "akkommodaatio"} ;
+lin akkreditoida_VK = {s = c62 "akkreditoida"} ;
+lin akkreditointi_NK = {s = d05A "akkreditointi"} ;
+lin akku_NK = {s = d01A "akku"} ;
+lin akkumulaattori_NK = {s = d06 "akkumulaattori"} ;
+lin akkuna_NK = {s = d12 "akkuna"} ;
+lin akkusatiivi_NK = {s = d05 "akkusatiivi"} ;
+lin akne_NK = {s = d08 "akne"} ;
+lin akoittua_VK = {s = c52A "akoittua"} ;
+lin akordi_NK = {s = d05 "akordi"} ;
+lin akrobaatti_NK = {s = d05A "akrobaatti"} ;
+lin akrobatia_NK = {s = d12 "akrobatia"} ;
+lin akronyymi_NK = {s = d05 "akronyymi"} ;
+lin akryylimaalaus_NK = {s = d39 "akryylimaalaus"} ;
+lin akseli_NK = {s = d06 "akseli"} ;
+lin akselinen_NK = {s = d38 "akselinen"} ;
+lin akselisto_NK = {s = d01 "akselisto"} ;
+lin aksentti_NK = {s = d05A "aksentti"} ;
+lin akseptantti_NK = {s = d05A "akseptantti"} ;
+lin akseptata_VK = {s = c73 "akseptata"} ;
+lin akseptaus_NK = {s = d39 "akseptaus"} ;
+lin aksepti_NK = {s = d05 "aksepti"} ;
+lin akseptoida_VK = {s = c62 "akseptoida"} ;
+lin akseptointi_NK = {s = d05A "akseptointi"} ;
+lin aksiaalinen_AK = {s = d38 "aksiaalinen"} ;
+--+ lin aksiaalisesti_AdvK = {s = c99 "aksiaalisesti"} ;
+lin aksiaalisuus_NK = {s = d40 "aksiaalisuus"} ;
+lin aksiomaattinen_AK = {s = d38 "aksiomaattinen"} ;
+--+ lin aksiomaattisesti_AdvK = {s = c99 "aksiomaattisesti"} ;
+lin aksiomaattisuus_NK = {s = d40 "aksiomaattisuus"} ;
+lin aksiomi_NK = {s = d05 "aksiomi"} ;
+lin aksiooma_NK = {s = d10 "aksiooma"} ;
+lin akti_NK = {s = d05 "akti"} ;
+--? lin aktiivat_NK = {s = d13 "aktiivat"} ;
+lin aktiivi_NK = {s = d05 "aktiivi"} ;
+lin aktiivinen_AK = {s = d38 "aktiivinen"} ;
+--+ lin aktiivisesti_AdvK = {s = c99 "aktiivisesti"} ;
+lin aktiivistaa_VK = {s = c53 "aktiivistaa"} ;
+lin aktiivistua_VK = {s = c52 "aktiivistua"} ;
+lin aktiivisuus_NK = {s = d40 "aktiivisuus"} ;
+lin aktio_NK = {s = d03 "aktio"} ;
+lin aktivismi_NK = {s = d05 "aktivismi"} ;
+lin aktiviteetti_NK = {s = d05A "aktiviteetti"} ;
+lin aktivoida_VK = {s = c62 "aktivoida"} ;
+lin aktivoitua_VK = {s = c52A "aktivoitua"} ;
+lin aktuaalinen_AK = {s = d38 "aktuaalinen"} ;
+--+ lin aktuaalisesti_AdvK = {s = c99 "aktuaalisesti"} ;
+lin aktuaalistaa_VK = {s = c53 "aktuaalistaa"} ;
+lin aktuaalistua_VK = {s = c52 "aktuaalistua"} ;
+lin aktuaalisuus_NK = {s = d40 "aktuaalisuus"} ;
+lin aktuaari_NK = {s = d05 "aktuaari"} ;
+lin aktualisoida_VK = {s = c62 "aktualisoida"} ;
+lin aktualisointi_NK = {s = d05A "aktualisointi"} ;
+lin aktualisoitua_VK = {s = c52A "aktualisoitua"} ;
+lin aktuelli_NK = {s = d05 "aktuelli"} ;
+lin akupunktuuri_NK = {s = d06 "akupunktuuri"} ;
+lin akustiikka_NK = {s = d09A "akustiikka"} ;
+lin akustinen_AK = {s = d38 "akustinen"} ;
+--+ lin akustisesti_AdvK = {s = c99 "akustisesti"} ;
+lin akusto_NK = {s = d02 "akusto"} ;
+lin akuutisti_AdvK = {s = c99 "akuutisti"} ;
+lin akuutti_NK = {s = d05A "akuutti"} ;
+lin akuuttinen_NK = {s = d38 "akuuttinen"} ;
+lin akvaario_NK = {s = d03 "akvaario"} ;
+lin akvamariini_NK = {s = d05 "akvamariini"} ;
+lin akvarelli_NK = {s = d05 "akvarelli"} ;
+lin akvatinta_NK = {s = d09 "akvatinta"} ;
+lin akvaviitti_NK = {s = d05A "akvaviitti"} ;
+lin a''_la_AdvK = {s = c99 "à la"} ;
+lin ala_NK = {s = d09 "ala"} ;
+--+ lin ala_arvoisesti_AdvK = {s = c99 "ala-arvoisesti"} ;
+lin alabasteri_NK = {s = d06 "alabasteri"} ;
+lin a''_la_carte_NK = {s = d08 "à la carte"} ;
+lin aladobi_NK = {s = d05 "aladobi"} ;
+lin alaika'raja_NK = {s = d09 "alaikäraja"} ;
+lin alainen_NK = {s = d38 "alainen"} ;
+lin alaisuus_NK = {s = d40 "alaisuus"} ;
+lin alakantissa_AdvK = {s = c99 "alakantissa"} ;
+lin alakanttiin_AdvK = {s = c99 "alakanttiin"} ;
+lin alakkain_AdvK = {s = c99 "alakkain"} ;
+lin alakkainen_NK = {s = d38 "alakkainen"} ;
+lin alakohta_NK = {s = d10A "alakohta"} ;
+lin alakulo_NK = {s = d01 "alakulo"} ;
+lin alakuloinen_AK = {s = d38 "alakuloinen"} ;
+--+ lin alakuloisesti_AdvK = {s = c99 "alakuloisesti"} ;
+lin alakuloisuus_NK = {s = d40 "alakuloisuus"} ;
+lin alakynnessa'_AdvK = {s = c99 "alakynnessä"} ;
+lin alakynteen_AdvK = {s = c99 "alakynteen"} ;
+lin alallaan_AdvK = {s = c99 "alallaan"} ;
+lin alalleen_AdvK = {s = c99 "alalleen"} ;
+lin alamainen_AK = {s = d38 "alamainen"} ;
+--+ lin alamaisesti_AdvK = {s = c99 "alamaisesti"} ;
+lin alamaisuus_NK = {s = d40 "alamaisuus"} ;
+lin alanko_NK = {s = d01A "alanko"} ;
+lin alanne_NK = {s = d48A "alanne"} ;
+lin alaraja_NK = {s = d09 "alaraja"} ;
+lin alas_AdvK = {s = c99 "alas"} ;
+lin alasin_NK = {s = d33 "alasin"} ;
+lin alaslaskettava_NK = {s = d10 "alaslaskettava"} ;
+lin alassuin_AdvK = {s = c99 "alassuin"} ;
+lin alasti_AdvK = {s = c99 "alasti"} ;
+lin alastomuus_NK = {s = d40 "alastomuus"} ;
+lin alaston_NK = {s = d34 "alaston"} ;
+lin alati_AdvK = {s = c99 "alati"} ;
+lin alatusten_AdvK = {s = c99 "alatusten"} ;
+lin alatuuleen_AdvK = {s = c99 "alatuuleen"} ;
+lin alatuulessa_AdvK = {s = c99 "alatuulessa"} ;
+lin alava_NK = {s = d10 "alava"} ;
+lin alavuus_NK = {s = d40 "alavuus"} ;
+lin alba_NK = {s = d09 "alba"} ;
+lin albaani_NK = {s = d06 "albaani"} ;
+lin albania_NK = {s = d12 "albania"} ;
+lin albatrossi_NK = {s = d05 "albatrossi"} ;
+lin albiino_NK = {s = d02 "albiino"} ;
+lin albinismi_NK = {s = d05 "albinismi"} ;
+lin albumi_NK = {s = d06 "albumi"} ;
+lin ale_1_NK = {s = d08 "ale"} ;
+lin ale_2_NK = {s = d08 "ale"} ;
+lin alekkain_AdvK = {s = c99 "alekkain"} ;
+lin aleksityymikko_NK = {s = d04A "aleksityymikko"} ;
+lin aleksityyminen_NK = {s = d38 "aleksityyminen"} ;
+lin alemma_AdvK = {s = c99 "alemma"} ;
+lin alemmaksi_AdvK = {s = c99 "alemmaksi"} ;
+lin alemmas_AdvK = {s = c99 "alemmas"} ;
+lin alemmuus_NK = {s = d40 "alemmuus"} ;
+lin alempaa_AdvK = {s = c99 "alempaa"} ;
+lin alempana_AdvK = {s = c99 "alempana"} ;
+lin alempi_NK = {s = d16A "alempi"} ;
+lin alenema_NK = {s = d10 "alenema"} ;
+lin alennus_NK = {s = d39 "alennus"} ;
+lin alentaa_VK = {s = c54A "alentaa"} ;
+lin alentava_NK = {s = d10 "alentava"} ;
+lin alentua_VK = {s = c52A "alentua"} ;
+lin alentuva_AK = {s = d10 "alentuva"} ;
+lin alentuvainen_AK = {s = d38 "alentuvainen"} ;
+--+ lin alentuvaisesti_AdvK = {s = c99 "alentuvaisesti"} ;
+lin alentuvaisuus_NK = {s = d40 "alentuvaisuus"} ;
+--+ lin alentuvasti_AdvK = {s = c99 "alentuvasti"} ;
+lin alentuvuus_NK = {s = d40 "alentuvuus"} ;
+lin aleta_VK = {s = c72 "aleta"} ;
+lin aletusten_AdvK = {s = c99 "aletusten"} ;
+lin alfa_NK = {s = d09 "alfa"} ;
+lin alfalfa_NK = {s = d09 "alfalfa"} ;
+lin algebra_NK = {s = d11 "algebra"} ;
+lin algebrallinen_NK = {s = d38 "algebrallinen"} ;
+lin algoritmi_NK = {s = d05 "algoritmi"} ;
+lin alhaalla_AdvK = {s = c99 "alhaalla"} ;
+lin alhaalle_AdvK = {s = c99 "alhaalle"} ;
+lin alhaalta_AdvK = {s = c99 "alhaalta"} ;
+lin alhainen_AK = {s = d38 "alhainen"} ;
+--+ lin alhaisesti_AdvK = {s = c99 "alhaisesti"} ;
+lin alhaiso_NK = {s = d02 "alhaiso"} ;
+lin alhaisuus_NK = {s = d40 "alhaisuus"} ;
+lin alho_NK = {s = d01 "alho"} ;
+lin ali_AdvK = {s = c99 "ali"} ;
+lin alias_AdvK = {s = c99 "alias"} ;
+lin alibi_NK = {s = d05 "alibi"} ;
+lin aliedustettu_NK = {s = d01A "aliedustettu"} ;
+lin alija'a'ma'inen_NK = {s = d38 "alijäämäinen"} ;
+lin alikasvos_NK = {s = d39 "alikasvos"} ;
+lin alimma_AdvK = {s = c99 "alimma"} ;
+lin alimmainen_NK = {s = d38 "alimmainen"} ;
+lin alimmaksi_AdvK = {s = c99 "alimmaksi"} ;
+lin alimmas_AdvK = {s = c99 "alimmas"} ;
+lin alimpana_AdvK = {s = c99 "alimpana"} ;
+lin alin_NK = {s = d36 "alin"} ;
+lin alinen_NK = {s = d38 "alinen"} ;
+lin alinomaa_AdvK = {s = c99 "alinomaa"} ;
+lin aliohjautuva_NK = {s = d10 "aliohjautuva"} ;
+lin alipalkattu_NK = {s = d01A "alipalkattu"} ;
+lin aliravittu_NK = {s = d01A "aliravittu"} ;
+lin alistaa_VK = {s = c53 "alistaa"} ;
+lin alisteinen_NK = {s = d38 "alisteinen"} ;
+lin alisteisuus_NK = {s = d40 "alisteisuus"} ;
+lin alistua_VK = {s = c52 "alistua"} ;
+lin alistus_NK = {s = d39 "alistus"} ;
+lin alistuva_NK = {s = d10 "alistuva"} ;
+lin alistuvainen_NK = {s = d38 "alistuvainen"} ;
+lin alistuvaisuus_NK = {s = d40 "alistuvaisuus"} ;
+lin alistuvuus_NK = {s = d40 "alistuvuus"} ;
+lin alitse_AdvK = {s = c99 "alitse"} ;
+lin alittaa_VK = {s = c53A "alittaa"} ;
+lin alittua_VK = {s = c52A "alittua"} ;
+lin alituinen_AK = {s = d38 "alituinen"} ;
+lin alituiseen_AdvK = {s = c99 "alituiseen"} ;
+--+ lin alituisesti_AdvK = {s = c99 "alituisesti"} ;
+lin alitus_NK = {s = d39 "alitus"} ;
+lin alitusten_AdvK = {s = c99 "alitusten"} ;
+lin alkaa_VK = {s = c56A "alkaa"} ;
+lin alkaen_AdvK = {s = c99 "alkaen"} ;
+lin alkaja_NK = {s = d10 "alkaja"} ;
+--? lin alkajaiset_NK = {s = d38 "alkajaiset"} ;
+lin alkali_NK = {s = d06 "alkali"} ;
+lin alkalinen_NK = {s = d38 "alkalinen"} ;
+lin alkalisuus_NK = {s = d40 "alkalisuus"} ;
+lin alkaloidi_NK = {s = d05 "alkaloidi"} ;
+lin alkamisaika_NK = {s = d09A "alkamisaika"} ;
+lin alkeellinen_AK = {s = d38 "alkeellinen"} ;
+--+ lin alkeellisesti_AdvK = {s = c99 "alkeellisesti"} ;
+lin alkeellisuus_NK = {s = d40 "alkeellisuus"} ;
+--? lin alkeet_NK = {s = d48 "alkeet"} ;
+lin alkeisjuuri_NK = {s = d26 "alkeisjuuri"} ;
+lin alkemia_NK = {s = d12 "alkemia"} ;
+lin alkemisti_NK = {s = d05 "alkemisti"} ;
+lin alkio_NK = {s = d03 "alkio"} ;
+lin alkiolaisuus_NK = {s = d40 "alkiolaisuus"} ;
+lin alkoholi_NK = {s = d05 "alkoholi"} ;
+lin alkoholismi_NK = {s = d05 "alkoholismi"} ;
+lin alkoholisoitua_VK = {s = c52A "alkoholisoitua"} ;
+lin alkoholisti_NK = {s = d05 "alkoholisti"} ;
+lin alkoholiton_NK = {s = d34A "alkoholiton"} ;
+lin alkometri_NK = {s = d05 "alkometri"} ;
+lin alkovi_NK = {s = d05 "alkovi"} ;
+lin alku_NK = {s = d01A "alku"} ;
+lin alkuaan_AdvK = {s = c99 "alkuaan"} ;
+lin alkuaika_NK = {s = d09A "alkuaika"} ;
+lin alkuinen_NK = {s = d38 "alkuinen"} ;
+lin alkuisin_AdvK = {s = c99 "alkuisin"} ;
+lin alkujaan_AdvK = {s = c99 "alkujaan"} ;
+lin alkujuuri_NK = {s = d26 "alkujuuri"} ;
+--+ lin alkukantaisesti_AdvK = {s = c99 "alkukantaisesti"} ;
+lin alkukohta_NK = {s = d10A "alkukohta"} ;
+--+ lin alkupera'isesti_AdvK = {s = c99 "alkuperäisesti"} ;
+lin alkuun_AdvK = {s = c99 "alkuun"} ;
+lin alkuunkaan_AdvK = {s = c99 "alkuunkaan"} ;
+lin alkydi_NK = {s = d05 "alkydi"} ;
+lin alla_AdvK = {s = c99 "alla"} ;
+lin allakka_NK = {s = d14A "allakka"} ;
+lin alla_mainittu_NK = {s = d01A "alla mainittu"} ;
+lin allas_NK = {s = d41A "allas"} ;
+lin allastaa_VK = {s = c53 "allastaa"} ;
+lin allatiivi_NK = {s = d05 "allatiivi"} ;
+lin alle_AdvK = {s = c99 "alle"} ;
+lin alleeli_NK = {s = d05 "alleeli"} ;
+lin allegoria_NK = {s = d12 "allegoria"} ;
+lin allegorinen_AK = {s = d38 "allegorinen"} ;
+--+ lin allegorisesti_AdvK = {s = c99 "allegorisesti"} ;
+lin allegorisuus_NK = {s = d40 "allegorisuus"} ;
+lin allegretto_NK = {s = d01 "allegretto"} ;
+lin allegro_NK = {s = d01 "allegro"} ;
+lin allekirjoittanut_NK = {s = d47 "allekirjoittanut"} ;
+lin allekkain_AdvK = {s = c99 "allekkain"} ;
+lin allekkainen_NK = {s = d38 "allekkainen"} ;
+lin allergeeni_NK = {s = d05 "allergeeni"} ;
+lin allergeeninen_NK = {s = d38 "allergeeninen"} ;
+lin allergeenisuus_NK = {s = d40 "allergeenisuus"} ;
+lin allergia_NK = {s = d12 "allergia"} ;
+lin allergikko_NK = {s = d04A "allergikko"} ;
+lin allerginen_NK = {s = d38 "allerginen"} ;
+lin allergisoida_VK = {s = c62 "allergisoida"} ;
+lin allergisoitua_VK = {s = c52A "allergisoitua"} ;
+lin allergistaa_VK = {s = c53 "allergistaa"} ;
+lin allergistua_VK = {s = c52 "allergistua"} ;
+lin allergisuus_NK = {s = d40 "allergisuus"} ;
+lin alletusten_AdvK = {s = c99 "alletusten"} ;
+lin alli_1_NK = {s = d05 "alli"} ;
+lin alli_2_NK = {s = d05 "alli"} ;
+lin allianssi_NK = {s = d05 "allianssi"} ;
+lin alligaattori_NK = {s = d06 "alligaattori"} ;
+lin allikko_NK = {s = d04A "allikko"} ;
+lin allitteraatio_NK = {s = d03 "allitteraatio"} ;
+lin allokaatio_NK = {s = d03 "allokaatio"} ;
+lin allokoida_VK = {s = c62 "allokoida"} ;
+lin allokointi_NK = {s = d05A "allokointi"} ;
+lin almanakka_NK = {s = d09A "almanakka"} ;
+lin almu_NK = {s = d01 "almu"} ;
+lin aloillaan_AdvK = {s = c99 "aloillaan"} ;
+lin aloilleen_AdvK = {s = c99 "aloilleen"} ;
+lin aloite_NK = {s = d48A "aloite"} ;
+lin aloitella_VK = {s = c67A "aloitella"} ;
+lin aloittaa_VK = {s = c53A "aloittaa"} ;
+lin aloittain_AdvK = {s = c99 "aloittain"} ;
+lin aloittainen_NK = {s = d38 "aloittainen"} ;
+lin aloittaja_NK = {s = d10 "aloittaja"} ;
+lin aloittamaton_NK = {s = d34A "aloittamaton"} ;
+lin aloitteellinen_NK = {s = d38 "aloitteellinen"} ;
+lin aloitteellisuus_NK = {s = d40 "aloitteellisuus"} ;
+lin aloitteikas_NK = {s = d41A "aloitteikas"} ;
+lin aloitteinen_NK = {s = d38 "aloitteinen"} ;
+lin aloittelija_NK = {s = d12 "aloittelija"} ;
+lin aloitus_NK = {s = d39 "aloitus"} ;
+lin alokas_NK = {s = d41A "alokas"} ;
+lin alokasaika_NK = {s = d09A "alokasaika"} ;
+lin aloke_NK = {s = d48A "aloke"} ;
+lin alpakka_1_NK = {s = d14A "alpakka"} ;
+lin alpakka_2_NK = {s = d14A "alpakka"} ;
+lin alpakkainen_1_NK = {s = d38 "alpakkainen"} ;
+lin alpakkainen_2_NK = {s = d38 "alpakkainen"} ;
+lin alpi_NK = {s = d07A "alpi"} ;
+lin alpiininen_NK = {s = d38 "alpiininen"} ;
+lin alpinismi_NK = {s = d05 "alpinismi"} ;
+lin alppi_NK = {s = d05A "alppi"} ;
+lin alta_AdvK = {s = c99 "alta"} ;
+lin altis_NK = {s = d41A "altis"} ;
+lin altistaa_VK = {s = c53 "altistaa"} ;
+lin altiste_NK = {s = d48 "altiste"} ;
+lin altisti_NK = {s = d05 "altisti"} ;
+lin altistua_VK = {s = c52 "altistua"} ;
+lin altistus_NK = {s = d39 "altistus"} ;
+lin altistusaika_NK = {s = d09A "altistusaika"} ;
+lin altruismi_NK = {s = d05 "altruismi"} ;
+lin altruisti_NK = {s = d05 "altruisti"} ;
+lin altruistinen_AK = {s = d38 "altruistinen"} ;
+--+ lin altruistisesti_AdvK = {s = c99 "altruistisesti"} ;
+lin alttari_NK = {s = d06 "alttari"} ;
+lin alttiisti_AdvK = {s = c99 "alttiisti"} ;
+lin alttius_NK = {s = d40 "alttius"} ;
+lin altto_NK = {s = d01A "altto"} ;
+lin alue_NK = {s = d48 "alue"} ;
+lin alueellinen_AK = {s = d38 "alueellinen"} ;
+--+ lin alueellisesti_AdvK = {s = c99 "alueellisesti"} ;
+lin alueinen_NK = {s = d38 "alueinen"} ;
+lin alueittain_AdvK = {s = c99 "alueittain"} ;
+lin alueittainen_NK = {s = d38 "alueittainen"} ;
+lin aluke_NK = {s = d48A "aluke"} ;
+lin aluksi_AdvK = {s = c99 "aluksi"} ;
+lin alulla_AdvK = {s = c99 "alulla"} ;
+lin alullaan_AdvK = {s = c99 "alullaan"} ;
+lin alumiini_NK = {s = d05 "alumiini"} ;
+lin alumiininen_NK = {s = d38 "alumiininen"} ;
+lin aluminoida_VK = {s = c62 "aluminoida"} ;
+lin aluminointi_NK = {s = d05A "aluminointi"} ;
+lin alumpana_AdvK = {s = c99 "alumpana"} ;
+lin alun_AdvK = {s = c99 "alun"} ;
+lin aluna_NK = {s = d13 "aluna"} ;
+lin alun_alkaen_AdvK = {s = c99 "alun alkaen"} ;
+lin alunen_NK = {s = d38 "alunen"} ;
+lin alun_perin_AdvK = {s = c99 "alun perin"} ;
+lin alun_pita'en_AdvK = {s = c99 "alun pitäen"} ;
+lin alus_NK = {s = d39 "alus"} ;
+lin alussa_mainittu_NK = {s = d01A "alussa mainittu"} ;
+lin alusta_NK = {s = d13 "alusta"} ;
+lin alustaa_VK = {s = c53 "alustaa"} ;
+lin alustaja_NK = {s = d10 "alustaja"} ;
+lin alustava_AK = {s = d10 "alustava"} ;
+--+ lin alustavasti_AdvK = {s = c99 "alustavasti"} ;
+lin alustus_NK = {s = d39 "alustus"} ;
+lin alusvaatteisillaan_AdvK = {s = c99 "alusvaatteisillaan"} ;
+lin alusvaatteisilleen_AdvK = {s = c99 "alusvaatteisilleen"} ;
+lin alvariinsa_AdvK = {s = c99 "alvariinsa"} ;
+lin alvejuuri_NK = {s = d26 "alvejuuri"} ;
+lin amalgaami_NK = {s = d05 "amalgaami"} ;
+lin amanuenssi_NK = {s = d05 "amanuenssi"} ;
+lin amaryllis_NK = {s = d39 "amaryllis"} ;
+lin amatsoni_NK = {s = d05 "amatsoni"} ;
+lin amato'o'ri_NK = {s = d05 "amatööri"} ;
+lin amato'o'riys_NK = {s = d40 "amatööriys"} ;
+lin ambiofonia_NK = {s = d12 "ambiofonia"} ;
+lin ambiofoninen_NK = {s = d38 "ambiofoninen"} ;
+lin ambitio_NK = {s = d03 "ambitio"} ;
+lin ambivalenssi_NK = {s = d05 "ambivalenssi"} ;
+lin ambivalentti_NK = {s = d05A "ambivalentti"} ;
+lin ambivalenttinen_NK = {s = d38 "ambivalenttinen"} ;
+lin ambra_NK = {s = d09 "ambra"} ;
+lin ambrosia_NK = {s = d12 "ambrosia"} ;
+lin ambulanssi_NK = {s = d05 "ambulanssi"} ;
+lin ameba_NK = {s = d09 "ameba"} ;
+lin amenorrea_NK = {s = d12 "amenorrea"} ;
+lin amerikkalainen_NK = {s = d38 "amerikkalainen"} ;
+lin amerikkalaistua_VK = {s = c52 "amerikkalaistua"} ;
+lin amerikkalaisuus_NK = {s = d40 "amerikkalaisuus"} ;
+lin ametisti_NK = {s = d05 "ametisti"} ;
+lin amfetamiini_NK = {s = d05 "amfetamiini"} ;
+lin amfora_NK = {s = d10 "amfora"} ;
+lin amiraali_NK = {s = d05 "amiraali"} ;
+lin ammateittain_AdvK = {s = c99 "ammateittain"} ;
+lin ammateittainen_NK = {s = d38 "ammateittainen"} ;
+lin ammatillinen_AK = {s = d38 "ammatillinen"} ;
+--+ lin ammatillisesti_AdvK = {s = c99 "ammatillisesti"} ;
+lin ammatillistaa_VK = {s = c53 "ammatillistaa"} ;
+lin ammatillistua_VK = {s = c52 "ammatillistua"} ;
+lin ammatillisuus_NK = {s = d40 "ammatillisuus"} ;
+lin ammatti_NK = {s = d05A "ammatti"} ;
+lin ammattilaistaa_VK = {s = c53 "ammattilaistaa"} ;
+lin ammattilaistua_VK = {s = c52 "ammattilaistua"} ;
+lin ammattilaisuus_NK = {s = d40 "ammattilaisuus"} ;
+--+ lin ammattimaisesti_AdvK = {s = c99 "ammattimaisesti"} ;
+lin ammattimaisuus_NK = {s = d40 "ammattimaisuus"} ;
+lin amme_NK = {s = d48 "amme"} ;
+lin ammennus_NK = {s = d39 "ammennus"} ;
+lin ammentaa_VK = {s = c54A "ammentaa"} ;
+lin ammis_NK = {s = d39 "ammis"} ;
+lin ammoin_AdvK = {s = c99 "ammoin"} ;
+lin ammoinen_NK = {s = d38 "ammoinen"} ;
+lin ammolla_AdvK = {s = c99 "ammolla"} ;
+lin ammollaan_AdvK = {s = c99 "ammollaan"} ;
+lin ammolle_AdvK = {s = c99 "ammolle"} ;
+lin ammolleen_AdvK = {s = c99 "ammolleen"} ;
+lin ammoniakki_NK = {s = d05A "ammoniakki"} ;
+lin ammoniumkloridi_NK = {s = d05 "ammoniumkloridi"} ;
+lin ammottaa_VK = {s = c53A "ammottaa"} ;
+lin ammu_NK = {s = d01 "ammu"} ;
+lin ammua_VK = {s = c52 "ammua"} ;
+lin ammunta_1_NK = {s = d09A "ammunta"} ;
+lin ammunta_2_NK = {s = d09A "ammunta"} ;
+lin ammus_NK = {s = d39 "ammus"} ;
+lin ammuskelija_NK = {s = d12 "ammuskelija"} ;
+lin ammuskella_VK = {s = c67 "ammuskella"} ;
+lin ammuskelu_NK = {s = d02 "ammuskelu"} ;
+lin ammuttaa_VK = {s = c53A "ammuttaa"} ;
+lin ammuu_AdvK = {s = c99 "ammuu"} ;
+lin amnesia_NK = {s = d12 "amnesia"} ;
+lin amnestia_NK = {s = d12 "amnestia"} ;
+lin amok_NK = {s = d05 "amok"} ;
+lin amorfinen_NK = {s = d38 "amorfinen"} ;
+lin amorfisuus_NK = {s = d40 "amorfisuus"} ;
+lin amoriini_NK = {s = d05 "amoriini"} ;
+lin ampaista_VK = {s = c66 "ampaista"} ;
+lin ampeeri_NK = {s = d06 "ampeeri"} ;
+lin ampiainen_NK = {s = d38 "ampiainen"} ;
+lin amplitudi_NK = {s = d05 "amplitudi"} ;
+lin amppeli_NK = {s = d06 "amppeli"} ;
+lin ampu_NK = {s = d01 "ampu"} ;
+lin ampua_VK = {s = c52A "ampua"} ;
+lin ampuilla_VK = {s = c67 "ampuilla"} ;
+lin ampuja_NK = {s = d10 "ampuja"} ;
+lin ampulli_NK = {s = d05 "ampulli"} ;
+lin ampumahaava_NK = {s = d09 "ampumahaava"} ;
+lin amputaatio_NK = {s = d03 "amputaatio"} ;
+lin amputoida_VK = {s = c62 "amputoida"} ;
+lin amputointi_NK = {s = d05A "amputointi"} ;
+lin amuletti_NK = {s = d05A "amuletti"} ;
+lin anaalinen_NK = {s = d38 "anaalinen"} ;
+lin anaboli_NK = {s = d05 "anaboli"} ;
+lin anabolinen_NK = {s = d38 "anabolinen"} ;
+lin anaerobinen_NK = {s = d38 "anaerobinen"} ;
+lin anagrammi_NK = {s = d05 "anagrammi"} ;
+lin anakoluutti_NK = {s = d05A "anakoluutti"} ;
+lin anakoluuttinen_NK = {s = d38 "anakoluuttinen"} ;
+lin anakonda_NK = {s = d10 "anakonda"} ;
+lin anakronismi_NK = {s = d05 "anakronismi"} ;
+lin anakronistinen_AK = {s = d38 "anakronistinen"} ;
+--+ lin anakronistisesti_AdvK = {s = c99 "anakronistisesti"} ;
+lin anakronistisuus_NK = {s = d40 "anakronistisuus"} ;
+lin analfabeetti_NK = {s = d05A "analfabeetti"} ;
+lin analgeetti_NK = {s = d05A "analgeetti"} ;
+lin analgeettinen_AK = {s = d38 "analgeettinen"} ;
+--+ lin analgeettisesti_AdvK = {s = c99 "analgeettisesti"} ;
+lin analgeettisuus_NK = {s = d40 "analgeettisuus"} ;
+lin analgesia_NK = {s = d12 "analgesia"} ;
+lin analogia_NK = {s = d12 "analogia"} ;
+lin analoginen_AK = {s = d38 "analoginen"} ;
+--+ lin analogisesti_AdvK = {s = c99 "analogisesti"} ;
+lin analogisuus_NK = {s = d40 "analogisuus"} ;
+lin analysaattori_NK = {s = d06 "analysaattori"} ;
+lin analysoida_VK = {s = c62 "analysoida"} ;
+lin analysointi_NK = {s = d05A "analysointi"} ;
+lin analytiikka_NK = {s = d09A "analytiikka"} ;
+lin analyysi_NK = {s = d05 "analyysi"} ;
+lin analyytikko_NK = {s = d04A "analyytikko"} ;
+lin analyyttinen_AK = {s = d38 "analyyttinen"} ;
+--+ lin analyyttisesti_AdvK = {s = c99 "analyyttisesti"} ;
+lin analyyttisuus_NK = {s = d40 "analyyttisuus"} ;
+lin analyyttisyys_NK = {s = d40 "analyyttisyys"} ;
+lin anamneesi_NK = {s = d05 "anamneesi"} ;
+lin anamnestinen_NK = {s = d38 "anamnestinen"} ;
+lin ananas_NK = {s = d39 "ananas"} ;
+lin anarkia_NK = {s = d12 "anarkia"} ;
+lin anarkismi_NK = {s = d05 "anarkismi"} ;
+lin anarkisti_NK = {s = d05 "anarkisti"} ;
+lin anarkistinen_AK = {s = d38 "anarkistinen"} ;
+--+ lin anarkistisesti_AdvK = {s = c99 "anarkistisesti"} ;
+lin anarkistisuus_NK = {s = d40 "anarkistisuus"} ;
+lin anastaa_VK = {s = c53 "anastaa"} ;
+lin anastaja_NK = {s = d10 "anastaja"} ;
+lin anastus_NK = {s = d39 "anastus"} ;
+lin anatomi_NK = {s = d05 "anatomi"} ;
+lin anatomia_NK = {s = d12 "anatomia"} ;
+lin anatominen_AK = {s = d38 "anatominen"} ;
+--+ lin anatomisesti_AdvK = {s = c99 "anatomisesti"} ;
+lin andante_NK = {s = d08 "andante"} ;
+lin andantino_NK = {s = d01 "andantino"} ;
+lin androgeeni_NK = {s = d05 "androgeeni"} ;
+lin androgeeninen_NK = {s = d38 "androgeeninen"} ;
+lin androgynia_NK = {s = d12 "androgynia"} ;
+lin androgyyni_NK = {s = d05 "androgyyni"} ;
+lin androgyyninen_NK = {s = d38 "androgyyninen"} ;
+lin andrologi_NK = {s = d05 "andrologi"} ;
+lin andrologia_NK = {s = d12 "andrologia"} ;
+lin androloginen_AK = {s = d38 "androloginen"} ;
+--+ lin andrologisesti_AdvK = {s = c99 "andrologisesti"} ;
+lin ane_NK = {s = d48 "ane"} ;
+lin aneeminen_AK = {s = d38 "aneeminen"} ;
+--+ lin aneemisesti_AdvK = {s = c99 "aneemisesti"} ;
+lin aneemisuus_NK = {s = d40 "aneemisuus"} ;
+lin anekdootti_NK = {s = d05A "anekdootti"} ;
+lin anella_VK = {s = c67 "anella"} ;
+lin anemia_NK = {s = d12 "anemia"} ;
+lin anesteetti_NK = {s = d05A "anesteetti"} ;
+lin anestesia_NK = {s = d12 "anestesia"} ;
+lin anestesiologi_NK = {s = d05 "anestesiologi"} ;
+lin anestesiologia_NK = {s = d12 "anestesiologia"} ;
+lin anestesiologinen_AK = {s = d38 "anestesiologinen"} ;
+--+ lin anestesiologisesti_AdvK = {s = c99 "anestesiologisesti"} ;
+lin aneurysma_NK = {s = d09 "aneurysma"} ;
+lin angervo_NK = {s = d02 "angervo"} ;
+lin angiina_NK = {s = d13 "angiina"} ;
+lin angina_pectoris_NK = {s = d39 "angina pectoris"} ;
+lin angiografia_NK = {s = d12 "angiografia"} ;
+lin anglikaaninen_NK = {s = d38 "anglikaaninen"} ;
+lin anglismi_NK = {s = d05 "anglismi"} ;
+lin anglisti_NK = {s = d05 "anglisti"} ;
+lin anglistiikka_NK = {s = d09A "anglistiikka"} ;
+lin anglosaksi_NK = {s = d05 "anglosaksi"} ;
+lin anglosaksinen_NK = {s = d38 "anglosaksinen"} ;
+lin angora_NK = {s = d12 "angora"} ;
+lin ani_AdvK = {s = c99 "ani"} ;
+lin aniitti_NK = {s = d05A "aniitti"} ;
+lin aniliini_NK = {s = d05 "aniliini"} ;
+lin animaalisuus_NK = {s = d40 "animaalisuus"} ;
+lin animaatio_NK = {s = d03 "animaatio"} ;
+lin animismi_NK = {s = d05 "animismi"} ;
+lin animistinen_NK = {s = d38 "animistinen"} ;
+lin anioni_NK = {s = d05 "anioni"} ;
+lin anis_NK = {s = d39 "anis"} ;
+lin anjovis_NK = {s = d39 "anjovis"} ;
+lin ankara_AK = {s = d10 "ankara"} ;
+--+ lin ankarasti_AdvK = {s = c99 "ankarasti"} ;
+lin ankaruus_NK = {s = d40 "ankaruus"} ;
+lin ankea_AK = {s = d15 "ankea"} ;
+--+ lin ankeasti_AdvK = {s = c99 "ankeasti"} ;
+lin ankerias_NK = {s = d41 "ankerias"} ;
+lin ankeroinen_NK = {s = d38 "ankeroinen"} ;
+lin ankeus_NK = {s = d40 "ankeus"} ;
+lin ankka_NK = {s = d09A "ankka"} ;
+lin ankkuri_NK = {s = d06 "ankkuri"} ;
+lin ankkuroida_VK = {s = c62 "ankkuroida"} ;
+lin ankkurointi_NK = {s = d05A "ankkurointi"} ;
+lin ankkuroitua_VK = {s = c52A "ankkuroitua"} ;
+lin annella_VK = {s = c67A "annella"} ;
+lin anniskella_VK = {s = c67 "anniskella"} ;
+lin anniskelu_NK = {s = d02 "anniskelu"} ;
+lin annoksinen_NK = {s = d38 "annoksinen"} ;
+lin annoksittain_AdvK = {s = c99 "annoksittain"} ;
+lin annoona_NK = {s = d10 "annoona"} ;
+lin annos_NK = {s = d39 "annos"} ;
+lin annostaa_VK = {s = c53 "annostaa"} ;
+lin annostella_VK = {s = c67 "annostella"} ;
+lin annostelu_NK = {s = d02 "annostelu"} ;
+lin annostus_NK = {s = d39 "annostus"} ;
+lin annuiteetti_NK = {s = d05A "annuiteetti"} ;
+lin anoa_VK = {s = c52 "anoa"} ;
+lin anodi_NK = {s = d05 "anodi"} ;
+lin anoja_NK = {s = d10 "anoja"} ;
+lin anomaalinen_AK = {s = d38 "anomaalinen"} ;
+--+ lin anomaalisesti_AdvK = {s = c99 "anomaalisesti"} ;
+lin anomaalisuus_NK = {s = d40 "anomaalisuus"} ;
+lin anomalia_NK = {s = d12 "anomalia"} ;
+lin anomus_NK = {s = d39 "anomus"} ;
+lin anonymiteetti_NK = {s = d05A "anonymiteetti"} ;
+lin anonyymi_NK = {s = d05 "anonyymi"} ;
+lin anonyymius_NK = {s = d40 "anonyymius"} ;
+lin anonyymiys_NK = {s = d40 "anonyymiys"} ;
+--? lin anopikset_NK = {s = d39 "anopikset"} ;
+lin anoppi_NK = {s = d05A "anoppi"} ;
+lin anoppila_NK = {s = d12 "anoppila"} ;
+lin anorakki_NK = {s = d05A "anorakki"} ;
+lin anoreksia_NK = {s = d12 "anoreksia"} ;
+lin anorektikko_NK = {s = d04A "anorektikko"} ;
+lin ansa_NK = {s = d09 "ansa"} ;
+lin ansainta_NK = {s = d09A "ansainta"} ;
+lin ansaita_VK = {s = c69 "ansaita"} ;
+lin ansaitsematon_NK = {s = d34A "ansaitsematon"} ;
+lin ansaitusti_AdvK = {s = c99 "ansaitusti"} ;
+lin ansari_NK = {s = d06 "ansari"} ;
+lin ansas_NK = {s = d41 "ansas"} ;
+lin ansatsi_NK = {s = d05 "ansatsi"} ;
+lin ansio_NK = {s = d03 "ansio"} ;
+lin ansioitua_VK = {s = c52A "ansioitua"} ;
+lin ansiokas_AK = {s = d41A "ansiokas"} ;
+--+ lin ansiokkaasti_AdvK = {s = c99 "ansiokkaasti"} ;
+lin ansiokkuus_NK = {s = d40 "ansiokkuus"} ;
+lin ansiosta_AdvK = {s = c99 "ansiosta"} ;
+lin ansioton_NK = {s = d34A "ansioton"} ;
+lin ansiottomasti_AdvK = {s = c99 "ansiottomasti"} ;
+lin ansiottomuus_NK = {s = d40 "ansiottomuus"} ;
+lin ansoittaa_VK = {s = c53A "ansoittaa"} ;
+lin ansoitus_NK = {s = d39 "ansoitus"} ;
+lin antaa_VK = {s = c56A "antaa"} ;
+lin antagonismi_NK = {s = d05 "antagonismi"} ;
+lin antagonisti_NK = {s = d05 "antagonisti"} ;
+lin antagonistinen_NK = {s = d38 "antagonistinen"} ;
+lin antaja_NK = {s = d10 "antaja"} ;
+lin antarktinen_NK = {s = d38 "antarktinen"} ;
+lin antasidi_NK = {s = d05 "antasidi"} ;
+lin antaumuksellinen_AK = {s = d38 "antaumuksellinen"} ;
+--+ lin antaumuksellisesti_AdvK = {s = c99 "antaumuksellisesti"} ;
+lin antaumuksellisuus_NK = {s = d40 "antaumuksellisuus"} ;
+lin antaumus_NK = {s = d39 "antaumus"} ;
+lin antautua_VK = {s = c52A "antautua"} ;
+lin anteeksi_AdvK = {s = c99 "anteeksi"} ;
+lin anteeksiannettava_NK = {s = d10 "anteeksiannettava"} ;
+lin anteeksiantamaton_NK = {s = d34A "anteeksiantamaton"} ;
+lin anteeksiantamattomasti_AdvK = {s = c99 "anteeksiantamattomasti"} ;
+lin anteeksiantamattomuus_NK = {s = d40 "anteeksiantamattomuus"} ;
+lin anteeksiantamus_NK = {s = d39 "anteeksiantamus"} ;
+lin anteeksiantava_NK = {s = d10 "anteeksiantava"} ;
+--+ lin anteliaasti_AdvK = {s = c99 "anteliaasti"} ;
+lin anteliaisuus_NK = {s = d40 "anteliaisuus"} ;
+lin antelias_AK = {s = d41 "antelias"} ;
+lin antenni_NK = {s = d06 "antenni"} ;
+lin anti_1_NK = {s = d05A "anti"} ;
+lin antibiootti_NK = {s = d05A "antibiootti"} ;
+lin antibioottinen_NK = {s = d38 "antibioottinen"} ;
+lin antidepressiivi_NK = {s = d05 "antidepressiivi"} ;
+lin antiikki_NK = {s = d05A "antiikki"} ;
+lin antiikkinen_NK = {s = d38 "antiikkinen"} ;
+lin antiikva_NK = {s = d09 "antiikva"} ;
+lin anti_inflammatorinen_NK = {s = d38 "anti-inflammatorinen"} ;
+lin antikristus_NK = {s = d39 "antikristus"} ;
+lin antikvaarinen_NK = {s = d38 "antikvaarinen"} ;
+lin antikvariaatti_NK = {s = d05A "antikvariaatti"} ;
+lin antilooppi_NK = {s = d05A "antilooppi"} ;
+--? lin antimet_NK = {s = d33A "antimet"} ;
+lin antioksidantti_NK = {s = d05A "antioksidantti"} ;
+lin antipasto_NK = {s = d01 "antipasto"} ;
+lin antipatia_NK = {s = d12 "antipatia"} ;
+lin antiperspirantti_NK = {s = d05A "antiperspirantti"} ;
+lin antisemiitti_NK = {s = d05A "antisemiitti"} ;
+lin antisemiittinen_AK = {s = d38 "antisemiittinen"} ;
+--+ lin antisemiittisesti_AdvK = {s = c99 "antisemiittisesti"} ;
+lin antisemitismi_NK = {s = d05 "antisemitismi"} ;
+lin antisepti_NK = {s = d05 "antisepti"} ;
+lin anto_NK = {s = d01A "anto"} ;
+lin antoisa_AK = {s = d10 "antoisa"} ;
+--+ lin antoisasti_AdvK = {s = c99 "antoisasti"} ;
+lin antoisuus_NK = {s = d40 "antoisuus"} ;
+lin antologia_NK = {s = d12 "antologia"} ;
+lin antrasiitti_NK = {s = d05A "antrasiitti"} ;
+lin antropologi_NK = {s = d05 "antropologi"} ;
+lin antropologia_NK = {s = d12 "antropologia"} ;
+lin antropologinen_AK = {s = d38 "antropologinen"} ;
+--+ lin antropologisesti_AdvK = {s = c99 "antropologisesti"} ;
+lin antroposofi_NK = {s = d05 "antroposofi"} ;
+lin antroposofia_NK = {s = d12 "antroposofia"} ;
+lin antura_NK = {s = d12 "antura"} ;
+lin anturi_NK = {s = d06 "anturi"} ;
+lin aortta_NK = {s = d09A "aortta"} ;
+lin apaattinen_AK = {s = d38 "apaattinen"} ;
+--+ lin apaattisesti_AdvK = {s = c99 "apaattisesti"} ;
+lin apaattisuus_NK = {s = d40 "apaattisuus"} ;
+lin apaja_NK = {s = d11 "apaja"} ;
+lin aparaatti_NK = {s = d05A "aparaatti"} ;
+lin apartamento_NK = {s = d01 "apartamento"} ;
+lin apartheid_NK = {s = d05 "apartheid"} ;
+lin apassi_NK = {s = d05 "apassi"} ;
+lin apatia_NK = {s = d12 "apatia"} ;
+lin apatiitti_NK = {s = d05A "apatiitti"} ;
+lin ape_NK = {s = d48A "ape"} ;
+lin apea_AK = {s = d15 "apea"} ;
+--+ lin apeasti_AdvK = {s = c99 "apeasti"} ;
+lin apeissaan_AdvK = {s = c99 "apeissaan"} ;
+lin aperitiivi_NK = {s = d05 "aperitiivi"} ;
+lin apeus_NK = {s = d40 "apeus"} ;
+lin apeutua_VK = {s = c52A "apeutua"} ;
+lin apila_NK = {s = d13 "apila"} ;
+lin apina_NK = {s = d12 "apina"} ;
+lin apinoida_VK = {s = c62 "apinoida"} ;
+lin apinointi_NK = {s = d05A "apinointi"} ;
+lin aplodeerata_VK = {s = c73 "aplodeerata"} ;
+lin aplodeeraus_NK = {s = d39 "aplodeeraus"} ;
+lin aplodi_NK = {s = d05 "aplodi"} ;
+lin apnea_NK = {s = d12 "apnea"} ;
+lin apokalypsi_NK = {s = d05 "apokalypsi"} ;
+lin apokalyptinen_NK = {s = d38 "apokalyptinen"} ;
+lin apokryfi_NK = {s = d05 "apokryfi"} ;
+lin apokryfinen_AK = {s = d38 "apokryfinen"} ;
+--+ lin apokryfisesti_AdvK = {s = c99 "apokryfisesti"} ;
+lin apokryfisuus_NK = {s = d40 "apokryfisuus"} ;
+lin apokryfisyys_NK = {s = d40 "apokryfisyys"} ;
+lin apologeetta_NK = {s = d09A "apologeetta"} ;
+lin apologeettinen_NK = {s = d38 "apologeettinen"} ;
+lin apologia_NK = {s = d12 "apologia"} ;
+lin apoptoosi_NK = {s = d05 "apoptoosi"} ;
+lin apostoli_NK = {s = d05 "apostoli"} ;
+lin apostolinen_NK = {s = d38 "apostolinen"} ;
+lin apotti_NK = {s = d05A "apotti"} ;
+lin appaa_VK = {s = c56A "appaa"} ;
+lin apparaatti_NK = {s = d05A "apparaatti"} ;
+lin appela_NK = {s = d12 "appela"} ;
+lin appellatiivi_NK = {s = d05 "appellatiivi"} ;
+lin appelsiini_NK = {s = d05 "appelsiini"} ;
+lin appelsiininkuori_NK = {s = d26 "appelsiininkuori"} ;
+lin appenzeller_NK = {s = d06 "appenzeller"} ;
+lin appi_NK = {s = d07A "appi"} ;
+lin applikaatio_NK = {s = d03 "applikaatio"} ;
+lin applikoida_VK = {s = c62 "applikoida"} ;
+lin applikointi_NK = {s = d05A "applikointi"} ;
+lin apposen_AdvK = {s = c99 "apposen"} ;
+--? lin apposet_NK = {s = d38 "apposet"} ;
+lin appositio_NK = {s = d03 "appositio"} ;
+lin approbatur_NK = {s = d06 "approbatur"} ;
+lin aprikoida_VK = {s = c68 "aprikoida"} ;
+lin aprikointi_NK = {s = d05A "aprikointi"} ;
+lin aprikoosi_NK = {s = d05 "aprikoosi"} ;
+lin aprillata_VK = {s = c73 "aprillata"} ;
+lin aprillaus_NK = {s = d39 "aprillaus"} ;
+lin aprilli_NK = {s = d05 "aprilli"} ;
+lin a_priori_AdvK = {s = c99 "a priori"} ;
+lin apriorinen_AK = {s = d38 "apriorinen"} ;
+--+ lin apriorisesti_AdvK = {s = c99 "apriorisesti"} ;
+lin apriorisuus_NK = {s = d40 "apriorisuus"} ;
+lin apro_NK = {s = d01 "apro"} ;
+lin apropoo_AdvK = {s = c99 "apropoo"} ;
+lin apteekkari_NK = {s = d06 "apteekkari"} ;
+lin apteekki_NK = {s = d05A "apteekki"} ;
+lin apu_NK = {s = d01A "apu"} ;
+lin apuri_NK = {s = d06 "apuri"} ;
+lin arabeski_NK = {s = d05 "arabeski"} ;
+lin arabi_NK = {s = d05 "arabi"} ;
+lin arabia_NK = {s = d12 "arabia"} ;
+lin arabisti_NK = {s = d05 "arabisti"} ;
+lin arabistiikka_NK = {s = d09A "arabistiikka"} ;
+lin aralia_NK = {s = d12 "aralia"} ;
+lin aramea_NK = {s = d12 "aramea"} ;
+lin arastaa_VK = {s = c53 "arastaa"} ;
+lin arastella_VK = {s = c67 "arastella"} ;
+lin arastelu_NK = {s = d02 "arastelu"} ;
+lin arasti_AdvK = {s = c99 "arasti"} ;
+lin araukaria_NK = {s = d12 "araukaria"} ;
+lin arava_NK = {s = d10 "arava"} ;
+lin arboretum_NK = {s = d05 "arboretum"} ;
+lin arboristi_NK = {s = d05 "arboristi"} ;
+lin arbuusi_NK = {s = d05 "arbuusi"} ;
+lin areena_NK = {s = d13 "areena"} ;
+lin arenti_NK = {s = d05A "arenti"} ;
+lin aresti_NK = {s = d05 "aresti"} ;
+lin argon_NK = {s = d05 "argon"} ;
+lin argumentaatio_NK = {s = d03 "argumentaatio"} ;
+lin argumentoida_VK = {s = c62 "argumentoida"} ;
+lin argumentointi_NK = {s = d05A "argumentointi"} ;
+lin argumentti_NK = {s = d05A "argumentti"} ;
+lin arho_NK = {s = d01 "arho"} ;
+lin arina_NK = {s = d13 "arina"} ;
+lin aristaa_VK = {s = c53 "aristaa"} ;
+lin aristella_VK = {s = c67 "aristella"} ;
+lin aristokraatti_NK = {s = d05A "aristokraatti"} ;
+lin aristokraattinen_AK = {s = d38 "aristokraattinen"} ;
+--+ lin aristokraattisesti_AdvK = {s = c99 "aristokraattisesti"} ;
+lin aristokraattisuus_NK = {s = d40 "aristokraattisuus"} ;
+lin aristokratia_NK = {s = d12 "aristokratia"} ;
+lin aristua_VK = {s = c52 "aristua"} ;
+lin aristus_NK = {s = d39 "aristus"} ;
+lin aritmeettinen_NK = {s = d38 "aritmeettinen"} ;
+lin aritmetiikka_NK = {s = d09A "aritmetiikka"} ;
+lin arjalainen_NK = {s = d38 "arjalainen"} ;
+lin arka_NK = {s = d09A "arka"} ;
+lin arkaainen_NK = {s = d38 "arkaainen"} ;
+lin arkailla_VK = {s = c67 "arkailla"} ;
+lin arkaistinen_AK = {s = d38 "arkaistinen"} ;
+--+ lin arkaistisesti_AdvK = {s = c99 "arkaistisesti"} ;
+lin arkaistisuus_NK = {s = d40 "arkaistisuus"} ;
+lin arkala_NK = {s = d12 "arkala"} ;
+lin arkeittain_AdvK = {s = c99 "arkeittain"} ;
+lin arkeologi_NK = {s = d05 "arkeologi"} ;
+lin arkeologia_NK = {s = d12 "arkeologia"} ;
+lin arkeologinen_AK = {s = d38 "arkeologinen"} ;
+--+ lin arkeologisesti_AdvK = {s = c99 "arkeologisesti"} ;
+lin arki_NK = {s = d07A "arki"} ;
+lin arkinen_AK = {s = d38 "arkinen"} ;
+lin arkipa'iva'istya'_VK = {s = c52 "arkipäiväistyä"} ;
+lin arkipa'iva'ista'a'_VK = {s = c53 "arkipäiväistää"} ;
+--+ lin arkisesti_AdvK = {s = c99 "arkisesti"} ;
+lin arkisin_AdvK = {s = c99 "arkisin"} ;
+lin arkisto_NK = {s = d02 "arkisto"} ;
+lin arkistoida_VK = {s = c62 "arkistoida"} ;
+lin arkistointi_NK = {s = d05A "arkistointi"} ;
+lin arkistua_VK = {s = c52 "arkistua"} ;
+lin arkisuus_NK = {s = d40 "arkisuus"} ;
+lin arkittain_AdvK = {s = c99 "arkittain"} ;
+lin arkki_1_NK = {s = d05A "arkki"} ;
+lin arkki_2_NK = {s = d05A "arkki"} ;
+lin arkkiatri_NK = {s = d05 "arkkiatri"} ;
+lin arkkimandriitta_NK = {s = d09A "arkkimandriitta"} ;
+lin arkkitehti_NK = {s = d05A "arkkitehti"} ;
+lin arkkitehtoninen_AK = {s = d38 "arkkitehtoninen"} ;
+--+ lin arkkitehtonisesti_AdvK = {s = c99 "arkkitehtonisesti"} ;
+lin arkkitehtuuri_NK = {s = d05 "arkkitehtuuri"} ;
+lin arkku_NK = {s = d01A "arkku"} ;
+lin arktinen_NK = {s = d38 "arktinen"} ;
+lin arkullinen_NK = {s = d38 "arkullinen"} ;
+lin arkuus_NK = {s = d40 "arkuus"} ;
+lin armada_NK = {s = d09 "armada"} ;
+lin armagnac_NK = {s = d05 "armagnac"} ;
+lin armahainen_NK = {s = d38 "armahainen"} ;
+lin armahdus_NK = {s = d39 "armahdus"} ;
+lin armahtaa_VK = {s = c53A "armahtaa"} ;
+lin armahtava_NK = {s = d10 "armahtava"} ;
+lin armahtavainen_NK = {s = d38 "armahtavainen"} ;
+lin armainen_NK = {s = d38 "armainen"} ;
+lin armanjakki_NK = {s = d05A "armanjakki"} ;
+lin armas_NK = {s = d41 "armas"} ;
+lin armastella_VK = {s = c67 "armastella"} ;
+lin armeija_NK = {s = d12 "armeija"} ;
+--+ lin armeliaasti_AdvK = {s = c99 "armeliaasti"} ;
+lin armeliaisuus_NK = {s = d40 "armeliaisuus"} ;
+lin armelias_AK = {s = d41 "armelias"} ;
+lin armias_NK = {s = d41 "armias"} ;
+lin armo_NK = {s = d01 "armo"} ;
+lin armoinen_NK = {s = d38 "armoinen"} ;
+lin armoitettu_NK = {s = d01A "armoitettu"} ;
+lin armollinen_AK = {s = d38 "armollinen"} ;
+--+ lin armollisesti_AdvK = {s = c99 "armollisesti"} ;
+lin armollisuus_NK = {s = d40 "armollisuus"} ;
+lin armonaika_NK = {s = d09A "armonaika"} ;
+lin armoton_NK = {s = d34A "armoton"} ;
+lin armottomasti_AdvK = {s = c99 "armottomasti"} ;
+lin armottomuus_NK = {s = d40 "armottomuus"} ;
+lin aro_NK = {s = d01 "aro"} ;
+lin aromaattinen_NK = {s = d38 "aromaattinen"} ;
+lin aromi_NK = {s = d05 "aromi"} ;
+lin aromikas_NK = {s = d41A "aromikas"} ;
+lin aromikkuus_NK = {s = d40 "aromikkuus"} ;
+lin arominen_NK = {s = d38 "arominen"} ;
+lin aronia_NK = {s = d12 "aronia"} ;
+lin arpa_NK = {s = d09A "arpa"} ;
+--? lin arpajaiset_NK = {s = d38 "arpajaiset"} ;
+lin arpeuma_NK = {s = d10 "arpeuma"} ;
+lin arpeuttaa_VK = {s = c53A "arpeuttaa"} ;
+lin arpeutua_VK = {s = c52A "arpeutua"} ;
+lin arpeutuma_NK = {s = d10 "arpeutuma"} ;
+lin arpi_NK = {s = d07A "arpi"} ;
+lin arpinen_NK = {s = d38 "arpinen"} ;
+lin arpisuus_NK = {s = d40 "arpisuus"} ;
+lin arpoa_VK = {s = c52A "arpoa"} ;
+lin arrakki_NK = {s = d05A "arrakki"} ;
+lin arroganssi_NK = {s = d05 "arroganssi"} ;
+lin arrogantisti_AdvK = {s = c99 "arrogantisti"} ;
+lin arrogantti_NK = {s = d05A "arrogantti"} ;
+lin arrowjuuri_NK = {s = d26 "arrowjuuri"} ;
+lin arseeni_NK = {s = d06 "arseeni"} ;
+lin arsenaali_NK = {s = d05 "arsenaali"} ;
+lin arsenikki_NK = {s = d05A "arsenikki"} ;
+lin art_director_NK = {s = d06 "art director"} ;
+lin arteesinen_NK = {s = d38 "arteesinen"} ;
+lin artefakti_NK = {s = d05 "artefakti"} ;
+lin artenomi_NK = {s = d05 "artenomi"} ;
+lin arteria_NK = {s = d12 "arteria"} ;
+lin arterioskleroosi_NK = {s = d05 "arterioskleroosi"} ;
+lin artesaani_NK = {s = d05 "artesaani"} ;
+lin artikkeli_NK = {s = d06 "artikkeli"} ;
+lin artikla_NK = {s = d13 "artikla"} ;
+lin artikulaatio_NK = {s = d03 "artikulaatio"} ;
+lin artikuloida_VK = {s = c62 "artikuloida"} ;
+lin artikulointi_NK = {s = d05A "artikulointi"} ;
+lin artisokka_NK = {s = d10A "artisokka"} ;
+lin artisti_NK = {s = d05 "artisti"} ;
+lin artistinen_NK = {s = d38 "artistinen"} ;
+lin artistisuus_NK = {s = d40 "artistisuus"} ;
+lin artoteekki_NK = {s = d05A "artoteekki"} ;
+lin artriitti_NK = {s = d05A "artriitti"} ;
+lin artroosi_NK = {s = d05 "artroosi"} ;
+lin arvaamaton_NK = {s = d34A "arvaamaton"} ;
+lin arvaamattomasti_AdvK = {s = c99 "arvaamattomasti"} ;
+lin arvaamattomuus_NK = {s = d40 "arvaamattomuus"} ;
+lin arvailla_VK = {s = c67 "arvailla"} ;
+lin arvailu_NK = {s = d02 "arvailu"} ;
+lin arvata_VK = {s = c73 "arvata"} ;
+lin arvatenkaan_AdvK = {s = c99 "arvatenkaan"} ;
+lin arvatenkin_AdvK = {s = c99 "arvatenkin"} ;
+lin arvattavasti_AdvK = {s = c99 "arvattavasti"} ;
+lin arvaus_NK = {s = d39 "arvaus"} ;
+lin arvauttaa_VK = {s = c53A "arvauttaa"} ;
+lin arveleva_AK = {s = d10 "arveleva"} ;
+lin arvelevainen_NK = {s = d38 "arvelevainen"} ;
+--+ lin arvelevasti_AdvK = {s = c99 "arvelevasti"} ;
+lin arvella_VK = {s = c67 "arvella"} ;
+lin arvelu_NK = {s = d02 "arvelu"} ;
+lin arveluttaa_VK = {s = c53A "arveluttaa"} ;
+lin arveluttava_AK = {s = d10 "arveluttava"} ;
+--+ lin arveluttavasti_AdvK = {s = c99 "arveluttavasti"} ;
+lin arveluttavuus_NK = {s = d40 "arveluttavuus"} ;
+lin arvettua_VK = {s = c52A "arvettua"} ;
+lin arvio_NK = {s = d03 "arvio"} ;
+lin arvioida_VK = {s = c62 "arvioida"} ;
+lin arvioija_NK = {s = d10 "arvioija"} ;
+lin arviointi_NK = {s = d05A "arviointi"} ;
+lin arvioitsija_NK = {s = d12 "arvioitsija"} ;
+lin arvioittaa_VK = {s = c53A "arvioittaa"} ;
+lin arviolta_AdvK = {s = c99 "arviolta"} ;
+lin arvo_NK = {s = d01 "arvo"} ;
+lin arvoinen_NK = {s = d38 "arvoinen"} ;
+lin arvoisa_NK = {s = d10 "arvoisa"} ;
+lin arvoisuus_NK = {s = d40 "arvoisuus"} ;
+lin arvoituksellinen_AK = {s = d38 "arvoituksellinen"} ;
+--+ lin arvoituksellisesti_AdvK = {s = c99 "arvoituksellisesti"} ;
+lin arvoituksellisuus_NK = {s = d40 "arvoituksellisuus"} ;
+lin arvoitus_NK = {s = d39 "arvoitus"} ;
+lin arvokas_AK = {s = d41A "arvokas"} ;
+--+ lin arvokkaasti_AdvK = {s = c99 "arvokkaasti"} ;
+lin arvokkuus_NK = {s = d40 "arvokkuus"} ;
+lin arvollinen_NK = {s = d38 "arvollinen"} ;
+lin arvomerkinta'inen_NK = {s = d38 "arvomerkintäinen"} ;
+lin arvonta_NK = {s = d09A "arvonta"} ;
+lin arvopaperistaa_VK = {s = c53 "arvopaperistaa"} ;
+lin arvopaperistua_VK = {s = c52 "arvopaperistua"} ;
+lin arvostaa_VK = {s = c53 "arvostaa"} ;
+lin arvosteleva_AK = {s = d10 "arvosteleva"} ;
+--+ lin arvostelevasti_AdvK = {s = c99 "arvostelevasti"} ;
+lin arvostelija_NK = {s = d12 "arvostelija"} ;
+lin arvostella_VK = {s = c67 "arvostella"} ;
+lin arvostelma_NK = {s = d10 "arvostelma"} ;
+lin arvostelu_NK = {s = d02 "arvostelu"} ;
+lin arvostelukyvytto'ma'sti_AdvK = {s = c99 "arvostelukyvyttömästi"} ;
+lin arvostus_NK = {s = d39 "arvostus"} ;
+lin arvoton_NK = {s = d34A "arvoton"} ;
+lin arvottaa_VK = {s = c53A "arvottaa"} ;
+lin arvottomasti_AdvK = {s = c99 "arvottomasti"} ;
+lin arvottomuus_NK = {s = d40 "arvottomuus"} ;
+--+ lin arvovaltaisesti_AdvK = {s = c99 "arvovaltaisesti"} ;
+--+ lin arvova'ritteisesti_AdvK = {s = c99 "arvoväritteisesti"} ;
+lin arvova'ritteisyys_NK = {s = d40 "arvoväritteisyys"} ;
+lin arvuuttaa_VK = {s = c53A "arvuuttaa"} ;
+lin asbesti_NK = {s = d05 "asbesti"} ;
+lin asbestoosi_NK = {s = d05 "asbestoosi"} ;
+lin ase_NK = {s = d48 "ase"} ;
+lin aseellinen_NK = {s = d38 "aseellinen"} ;
+lin aseenkanto_NK = {s = d01A "aseenkanto"} ;
+lin aseeton_NK = {s = d34A "aseeton"} ;
+lin aseettomuus_NK = {s = d40 "aseettomuus"} ;
+lin aseinen_NK = {s = d38 "aseinen"} ;
+lin aseistaa_VK = {s = c53 "aseistaa"} ;
+lin aseistakielta'ytyminen_NK = {s = d38 "aseistakieltäytyminen"} ;
+lin aseistautua_VK = {s = c52A "aseistautua"} ;
+lin aseistus_NK = {s = d39 "aseistus"} ;
+lin asema_NK = {s = d10 "asema"} ;
+lin asemasta_AdvK = {s = c99 "asemasta"} ;
+lin asemesta_AdvK = {s = c99 "asemesta"} ;
+lin asemo_NK = {s = d02 "asemo"} ;
+lin asemoida_VK = {s = c62 "asemoida"} ;
+lin asemointi_NK = {s = d05A "asemointi"} ;
+lin asenne_NK = {s = d48A "asenne"} ;
+lin asennoitua_VK = {s = c52A "asennoitua"} ;
+lin asennus_NK = {s = d39 "asennus"} ;
+lin asentaa_VK = {s = c54A "asentaa"} ;
+lin asentaja_NK = {s = d10 "asentaja"} ;
+lin asenteellinen_AK = {s = d38 "asenteellinen"} ;
+--+ lin asenteellisesti_AdvK = {s = c99 "asenteellisesti"} ;
+lin asenteellisuus_NK = {s = d40 "asenteellisuus"} ;
+lin asenteinen_NK = {s = d38 "asenteinen"} ;
+lin asento_NK = {s = d01A "asento"} ;
+lin asentoinen_NK = {s = d38 "asentoinen"} ;
+lin aseptiikka_NK = {s = d09A "aseptiikka"} ;
+lin aseptinen_AK = {s = d38 "aseptinen"} ;
+--+ lin aseptisesti_AdvK = {s = c99 "aseptisesti"} ;
+lin aseptisuus_NK = {s = d40 "aseptisuus"} ;
+lin asessori_NK = {s = d06 "asessori"} ;
+lin asetaatti_NK = {s = d05A "asetaatti"} ;
+lin asetanta_NK = {s = d09A "asetanta"} ;
+lin asete_NK = {s = d48A "asete"} ;
+lin asetella_VK = {s = c67A "asetella"} ;
+lin asetelma_NK = {s = d10 "asetelma"} ;
+lin asetin_NK = {s = d33A "asetin"} ;
+lin asetoni_NK = {s = d05 "asetoni"} ;
+lin asettaa_VK = {s = c53A "asettaa"} ;
+lin asettaja_NK = {s = d10 "asettaja"} ;
+lin asettautua_VK = {s = c52A "asettautua"} ;
+lin asettelu_NK = {s = d02 "asettelu"} ;
+lin asetti_NK = {s = d05A "asetti"} ;
+lin asettua_VK = {s = c52A "asettua"} ;
+lin asetus_NK = {s = d39 "asetus"} ;
+lin asetyleeni_NK = {s = d05 "asetyleeni"} ;
+lin asevelvollisuusaika_NK = {s = d09A "asevelvollisuusaika"} ;
+lin asfaltoida_VK = {s = c62 "asfaltoida"} ;
+lin asfaltointi_NK = {s = d05A "asfaltointi"} ;
+lin asfaltti_NK = {s = d05A "asfaltti"} ;
+lin asfalttinen_NK = {s = d38 "asfalttinen"} ;
+lin asia_NK = {s = d12 "asia"} ;
+lin asiakas_NK = {s = d41A "asiakas"} ;
+lin asiakkuus_NK = {s = d40 "asiakkuus"} ;
+lin asiallinen_AK = {s = d38 "asiallinen"} ;
+--+ lin asiallisesti_AdvK = {s = c99 "asiallisesti"} ;
+lin asiallisuus_NK = {s = d40 "asiallisuus"} ;
+lin asiantunteva_AK = {s = d10 "asiantunteva"} ;
+--+ lin asiantuntevasti_AdvK = {s = c99 "asiantuntevasti"} ;
+lin asiapainotteisuus_NK = {s = d40 "asiapainotteisuus"} ;
+lin asiaton_NK = {s = d34A "asiaton"} ;
+lin asiattomasti_AdvK = {s = c99 "asiattomasti"} ;
+lin asiattomuus_NK = {s = d40 "asiattomuus"} ;
+lin asioida_VK = {s = c62 "asioida"} ;
+lin asiointi_NK = {s = d05A "asiointi"} ;
+lin askar_NK = {s = d49 "askar"} ;
+lin askare_NK = {s = d49 "askare"} ;
+lin askaroida_VK = {s = c62 "askaroida"} ;
+lin askarointi_NK = {s = d05A "askarointi"} ;
+lin askarrella_VK = {s = c67A "askarrella"} ;
+lin askarruttaa_VK = {s = c53A "askarruttaa"} ;
+lin askartelija_NK = {s = d12 "askartelija"} ;
+lin askartelu_NK = {s = d02 "askartelu"} ;
+lin askarteluttaa_VK = {s = c53A "askarteluttaa"} ;
+lin askeesi_NK = {s = d05 "askeesi"} ;
+lin askeetti_NK = {s = d05A "askeetti"} ;
+lin askeettinen_AK = {s = d38 "askeettinen"} ;
+--+ lin askeettisesti_AdvK = {s = c99 "askeettisesti"} ;
+lin askeettisuus_NK = {s = d40 "askeettisuus"} ;
+lin askel_NK = {s = d49 "askel"} ;
+lin askele_NK = {s = d49 "askele"} ;
+lin askelinen_NK = {s = d38 "askelinen"} ;
+lin askelittain_AdvK = {s = c99 "askelittain"} ;
+lin askelittainen_NK = {s = d38 "askelittainen"} ;
+lin askellin_NK = {s = d33A "askellin"} ;
+lin askellus_NK = {s = d39 "askellus"} ;
+lin askelma_NK = {s = d10 "askelma"} ;
+lin askelmittain_AdvK = {s = c99 "askelmittain"} ;
+lin askeltaa_VK = {s = c54A "askeltaa"} ;
+lin asketismi_NK = {s = d05 "asketismi"} ;
+lin aski_NK = {s = d05 "aski"} ;
+lin askites_NK = {s = d39 "askites"} ;
+lin asosiaalinen_NK = {s = d38 "asosiaalinen"} ;
+lin asosiaalisuus_NK = {s = d40 "asosiaalisuus"} ;
+lin aspartaami_NK = {s = d05 "aspartaami"} ;
+lin aspekti_NK = {s = d05 "aspekti"} ;
+lin aspi_NK = {s = d05 "aspi"} ;
+lin assimilaatio_NK = {s = d03 "assimilaatio"} ;
+lin assimiloida_VK = {s = c62 "assimiloida"} ;
+lin assimilointi_NK = {s = d05A "assimilointi"} ;
+lin assimiloitua_VK = {s = c52A "assimiloitua"} ;
+lin assistentti_NK = {s = d05A "assistentti"} ;
+lin assistentuuri_NK = {s = d05 "assistentuuri"} ;
+lin assosiaatio_NK = {s = d03 "assosiaatio"} ;
+lin assosiatiivinen_NK = {s = d38 "assosiatiivinen"} ;
+lin assosioida_VK = {s = c62 "assosioida"} ;
+lin assosiointi_NK = {s = d05A "assosiointi"} ;
+lin assosioitua_VK = {s = c52A "assosioitua"} ;
+lin assyrialainen_NK = {s = d38 "assyrialainen"} ;
+lin assyriologi_NK = {s = d05 "assyriologi"} ;
+lin assyriologia_NK = {s = d12 "assyriologia"} ;
+lin astaatti_NK = {s = d05A "astaatti"} ;
+lin astahtaa_VK = {s = c53A "astahtaa"} ;
+lin astalo_NK = {s = d02 "astalo"} ;
+lin astatiini_NK = {s = d05 "astatiini"} ;
+lin aste_NK = {s = d48 "aste"} ;
+lin asteelainen_NK = {s = d38 "asteelainen"} ;
+lin asteenikko_NK = {s = d04A "asteenikko"} ;
+lin asteeninen_NK = {s = d38 "asteeninen"} ;
+lin asteikko_NK = {s = d04A "asteikko"} ;
+lin asteikkoinen_NK = {s = d38 "asteikkoinen"} ;
+lin asteikollinen_NK = {s = d38 "asteikollinen"} ;
+lin asteinen_NK = {s = d38 "asteinen"} ;
+lin asteittain_AdvK = {s = c99 "asteittain"} ;
+lin asteittainen_NK = {s = d38 "asteittainen"} ;
+lin asteittaisuus_NK = {s = d40 "asteittaisuus"} ;
+lin astella_VK = {s = c67 "astella"} ;
+lin astelu_NK = {s = d02 "astelu"} ;
+lin astenia_NK = {s = d12 "astenia"} ;
+lin asteri_NK = {s = d06 "asteri"} ;
+lin asteroidi_NK = {s = d05 "asteroidi"} ;
+lin asti_AdvK = {s = c99 "asti"} ;
+lin astia_NK = {s = d12 "astia"} ;
+lin astiallinen_NK = {s = d38 "astiallinen"} ;
+lin astianpesija'_NK = {s = d12 "astianpesijä"} ;
+lin astiasto_NK = {s = d01 "astiasto"} ;
+lin astin_NK = {s = d33 "astin"} ;
+lin astioittain_AdvK = {s = c99 "astioittain"} ;
+lin astma_NK = {s = d09 "astma"} ;
+lin astmaatikko_NK = {s = d04A "astmaatikko"} ;
+lin astmaattinen_NK = {s = d38 "astmaattinen"} ;
+lin astmainen_NK = {s = d38 "astmainen"} ;
+lin astraalinen_NK = {s = d38 "astraalinen"} ;
+lin astrakaani_NK = {s = d05 "astrakaani"} ;
+lin astrologi_NK = {s = d05 "astrologi"} ;
+lin astrologia_NK = {s = d12 "astrologia"} ;
+lin astrologinen_AK = {s = d38 "astrologinen"} ;
+--+ lin astrologisesti_AdvK = {s = c99 "astrologisesti"} ;
+lin astronautiikka_NK = {s = d09A "astronautiikka"} ;
+lin astronautti_NK = {s = d05A "astronautti"} ;
+lin astronomi_NK = {s = d05 "astronomi"} ;
+lin astronomia_NK = {s = d12 "astronomia"} ;
+lin astronominen_AK = {s = d38 "astronominen"} ;
+--+ lin astronomisesti_AdvK = {s = c99 "astronomisesti"} ;
+lin astua_VK = {s = c52 "astua"} ;
+lin astuja_NK = {s = d10 "astuja"} ;
+lin astunta_NK = {s = d09A "astunta"} ;
+lin astuttaa_VK = {s = c53A "astuttaa"} ;
+lin astutus_NK = {s = d39 "astutus"} ;
+lin asu_NK = {s = d01 "asu"} ;
+lin asua_VK = {s = c52 "asua"} ;
+lin asuinen_NK = {s = d38 "asuinen"} ;
+lin asuja_NK = {s = d10 "asuja"} ;
+lin asujaimisto_NK = {s = d01 "asujaimisto"} ;
+lin asujain_NK = {s = d33 "asujain"} ;
+lin asukas_NK = {s = d41A "asukas"} ;
+lin asukki_NK = {s = d05A "asukki"} ;
+lin asuma_NK = {s = d10 "asuma"} ;
+lin asumaton_NK = {s = d34A "asumaton"} ;
+lin asumus_NK = {s = d39 "asumus"} ;
+lin asunnoton_NK = {s = d34A "asunnoton"} ;
+lin asunnottomuus_NK = {s = d40 "asunnottomuus"} ;
+lin asunto_NK = {s = d01A "asunto"} ;
+lin asuntola_NK = {s = d12 "asuntola"} ;
+lin asuntosa'a'sta'minen_NK = {s = d38 "asuntosäästäminen"} ;
+lin asustaa_VK = {s = c53 "asustaa"} ;
+lin asuste_NK = {s = d48 "asuste"} ;
+lin asustella_VK = {s = c67 "asustella"} ;
+lin asuttaa_VK = {s = c53A "asuttaa"} ;
+lin asuttaja_NK = {s = d10 "asuttaja"} ;
+lin asutus_NK = {s = d39 "asutus"} ;
+lin asuuri_NK = {s = d06 "asuuri"} ;
+lin asvaltoida_VK = {s = c62 "asvaltoida"} ;
+lin asvaltointi_NK = {s = d05A "asvaltointi"} ;
+lin asvaltti_NK = {s = d05A "asvaltti"} ;
+lin asvalttinen_NK = {s = d38 "asvalttinen"} ;
+lin asymmetria_NK = {s = d12 "asymmetria"} ;
+lin asymmetrinen_NK = {s = d38 "asymmetrinen"} ;
+lin asymmetrisyys_NK = {s = d40 "asymmetrisyys"} ;
+lin atari_NK = {s = d06 "atari"} ;
+lin atavismi_NK = {s = d05 "atavismi"} ;
+lin atavistinen_AK = {s = d38 "atavistinen"} ;
+--+ lin atavistisesti_AdvK = {s = c99 "atavistisesti"} ;
+lin atavistisuus_NK = {s = d40 "atavistisuus"} ;
+lin ateismi_NK = {s = d05 "ateismi"} ;
+lin ateisti_NK = {s = d05 "ateisti"} ;
+lin ateistinen_AK = {s = d38 "ateistinen"} ;
+--+ lin ateistisesti_AdvK = {s = c99 "ateistisesti"} ;
+lin ateistisuus_NK = {s = d40 "ateistisuus"} ;
+lin ateljee_NK = {s = d20 "ateljee"} ;
+lin ateria_NK = {s = d12 "ateria"} ;
+--? lin aterimet_NK = {s = d33 "aterimet"} ;
+lin aterioida_VK = {s = c68 "aterioida"} ;
+lin ateriointi_NK = {s = d05A "ateriointi"} ;
+lin atk_AdvK = {s = c99 "atk"} ;
+lin atlanttinen_NK = {s = d38 "atlanttinen"} ;
+lin atlas_NK = {s = d39 "atlas"} ;
+lin atleetikko_NK = {s = d04A "atleetikko"} ;
+lin atleetti_NK = {s = d05A "atleetti"} ;
+lin atleettinen_NK = {s = d38 "atleettinen"} ;
+lin atleettisuus_NK = {s = d40 "atleettisuus"} ;
+lin atmosfa'a'ri_NK = {s = d05 "atmosfääri"} ;
+lin atolli_NK = {s = d06 "atolli"} ;
+lin atomaarinen_NK = {s = d38 "atomaarinen"} ;
+lin atomi_NK = {s = d06 "atomi"} ;
+lin atomiaika_NK = {s = d09A "atomiaika"} ;
+lin atomismi_NK = {s = d05 "atomismi"} ;
+lin atomistinen_NK = {s = d38 "atomistinen"} ;
+lin atomistisuus_NK = {s = d40 "atomistisuus"} ;
+lin atonaalinen_NK = {s = d38 "atonaalinen"} ;
+lin atonaalisuus_NK = {s = d40 "atonaalisuus"} ;
+lin atoopikko_NK = {s = d04A "atoopikko"} ;
+lin atooppinen_NK = {s = d38 "atooppinen"} ;
+lin atopia_NK = {s = d12 "atopia"} ;
+lin atrain_NK = {s = d33 "atrain"} ;
+lin atrium_NK = {s = d05 "atrium"} ;
+lin atropia_NK = {s = d12 "atropia"} ;
+lin atsalea_NK = {s = d13 "atsalea"} ;
+lin atsteekki_NK = {s = d05A "atsteekki"} ;
+lin attasea_NK = {s = d13 "attasea"} ;
+lin attentaatti_NK = {s = d05A "attentaatti"} ;
+lin attraktiivinen_AK = {s = d38 "attraktiivinen"} ;
+--+ lin attraktiivisesti_AdvK = {s = c99 "attraktiivisesti"} ;
+lin attraktiivisuus_NK = {s = d40 "attraktiivisuus"} ;
+lin attraktio_NK = {s = d03 "attraktio"} ;
+lin attribuutti_NK = {s = d05A "attribuutti"} ;
+--? lin atulat_NK = {s = d12 "atulat"} ;
+lin aubergiini_NK = {s = d05 "aubergiini"} ;
+lin audienssi_NK = {s = d05 "audienssi"} ;
+lin audiofiili_NK = {s = d05 "audiofiili"} ;
+lin auditiivinen_NK = {s = d38 "auditiivinen"} ;
+lin auditoida_VK = {s = c62 "auditoida"} ;
+lin auditoija_NK = {s = d10 "auditoija"} ;
+lin auditointi_NK = {s = d05A "auditointi"} ;
+lin auditorio_NK = {s = d03 "auditorio"} ;
+lin auer_NK = {s = d49 "auer"} ;
+lin aueta_VK = {s = c72A "aueta"} ;
+lin aukaisija_NK = {s = d12 "aukaisija"} ;
+lin aukaisin_NK = {s = d33 "aukaisin"} ;
+lin aukaista_VK = {s = c66 "aukaista"} ;
+lin aukaisu_NK = {s = d02 "aukaisu"} ;
+lin aukea_NK = {s = d15 "aukea"} ;
+lin aukeama_NK = {s = d10 "aukeama"} ;
+lin auki_AdvK = {s = c99 "auki"} ;
+lin aukile_NK = {s = d48 "aukile"} ;
+lin aukio_NK = {s = d03 "aukio"} ;
+lin aukko_NK = {s = d01A "aukko"} ;
+lin aukkoinen_NK = {s = d38 "aukkoinen"} ;
+lin aukkokohta_NK = {s = d10A "aukkokohta"} ;
+lin aukoa_VK = {s = c52A "aukoa"} ;
+lin aukoton_NK = {s = d34A "aukoton"} ;
+lin aukottaa_VK = {s = c53A "aukottaa"} ;
+lin aukotus_NK = {s = d39 "aukotus"} ;
+lin auktorisoida_VK = {s = c62 "auktorisoida"} ;
+lin auktorisointi_NK = {s = d05A "auktorisointi"} ;
+lin auktoritaarinen_NK = {s = d38 "auktoritaarinen"} ;
+lin auktoritatiivinen_AK = {s = d38 "auktoritatiivinen"} ;
+--+ lin auktoritatiivisesti_AdvK = {s = c99 "auktoritatiivisesti"} ;
+lin auktoritatiivisuus_NK = {s = d40 "auktoritatiivisuus"} ;
+lin auktoriteetti_NK = {s = d05A "auktoriteetti"} ;
+lin auktoroida_VK = {s = c62 "auktoroida"} ;
+lin auktorointi_NK = {s = d05A "auktorointi"} ;
+lin aula_NK = {s = d09 "aula"} ;
+lin auliisti_AdvK = {s = c99 "auliisti"} ;
+lin aulio_NK = {s = d03 "aulio"} ;
+lin aulis_NK = {s = d41 "aulis"} ;
+lin aulius_NK = {s = d40 "aulius"} ;
+lin auma_NK = {s = d09 "auma"} ;
+lin aunus_NK = {s = d39 "aunus"} ;
+lin aura_1_NK = {s = d09 "aura"} ;
+lin aura_2_NK = {s = d09 "aura"} ;
+lin aurata_VK = {s = c73 "aurata"} ;
+lin auraus_NK = {s = d39 "auraus"} ;
+lin auringonkilo_NK = {s = d01 "auringonkilo"} ;
+lin auringoton_NK = {s = d34A "auringoton"} ;
+lin aurinko_NK = {s = d01A "aurinko"} ;
+lin aurinkoaika_NK = {s = d09A "aurinkoaika"} ;
+lin aurinkoinen_AK = {s = d38 "aurinkoinen"} ;
+--+ lin aurinkoisesti_AdvK = {s = c99 "aurinkoisesti"} ;
+lin aurinkoisuus_NK = {s = d40 "aurinkoisuus"} ;
+lin aurinkokaha_NK = {s = d09 "aurinkokaha"} ;
+lin auskultaatio_NK = {s = d03 "auskultaatio"} ;
+lin auskultantti_NK = {s = d05A "auskultantti"} ;
+lin auskultoida_VK = {s = c62 "auskultoida"} ;
+lin auskultointi_NK = {s = d05A "auskultointi"} ;
+lin aussi_NK = {s = d05 "aussi"} ;
+lin australialainen_NK = {s = d38 "australialainen"} ;
+lin autella_VK = {s = c67A "autella"} ;
+lin autenttinen_NK = {s = d38 "autenttinen"} ;
+lin autenttisuus_NK = {s = d40 "autenttisuus"} ;
+lin autere_NK = {s = d49 "autere"} ;
+lin autereinen_NK = {s = d38 "autereinen"} ;
+lin autio_NK = {s = d03 "autio"} ;
+lin autioittaa_VK = {s = c53A "autioittaa"} ;
+lin autioitua_VK = {s = c52A "autioitua"} ;
+lin autismi_NK = {s = d05 "autismi"} ;
+lin autistinen_NK = {s = d38 "autistinen"} ;
+lin autius_NK = {s = d40 "autius"} ;
+lin auto_NK = {s = d01 "auto"} ;
+lin autogiro_NK = {s = d01 "autogiro"} ;
+lin autoilija_NK = {s = d12 "autoilija"} ;
+lin autoilla_VK = {s = c67 "autoilla"} ;
+lin autoilu_NK = {s = d02 "autoilu"} ;
+lin autoistua_VK = {s = c52 "autoistua"} ;
+lin autokefaalinen_NK = {s = d38 "autokefaalinen"} ;
+lin automaatio_NK = {s = d03 "automaatio"} ;
+lin automaatti_NK = {s = d05A "automaatti"} ;
+lin automaattinen_AK = {s = d38 "automaattinen"} ;
+--+ lin automaattisesti_AdvK = {s = c99 "automaattisesti"} ;
+lin automaattistaa_VK = {s = c53 "automaattistaa"} ;
+lin automaattistua_VK = {s = c52 "automaattistua"} ;
+lin automaattisuus_NK = {s = d40 "automaattisuus"} ;
+lin automatiikka_NK = {s = d09A "automatiikka"} ;
+lin automatisoida_VK = {s = c62 "automatisoida"} ;
+lin automatisointi_NK = {s = d05A "automatisointi"} ;
+lin automatisoitua_VK = {s = c52A "automatisoitua"} ;
+lin autonomia_NK = {s = d12 "autonomia"} ;
+lin autonominen_NK = {s = d38 "autonominen"} ;
+lin autoritaarinen_AK = {s = d38 "autoritaarinen"} ;
+--+ lin autoritaarisesti_AdvK = {s = c99 "autoritaarisesti"} ;
+lin autoritaarisuus_NK = {s = d40 "autoritaarisuus"} ;
+lin autorita'a'rinen_AK = {s = d38 "autoritäärinen"} ;
+--+ lin autorita'a'risesti_AdvK = {s = c99 "autoritäärisesti"} ;
+lin autorita'a'risyys_NK = {s = d40 "autoritäärisyys"} ;
+lin autosomi_NK = {s = d05 "autosomi"} ;
+lin autotypia_NK = {s = d12 "autotypia"} ;
+lin auttaa_VK = {s = c56A "auttaa"} ;
+lin auttaja_NK = {s = d10 "auttaja"} ;
+lin auttamaton_NK = {s = d34A "auttamaton"} ;
+lin auttamatta_AdvK = {s = c99 "auttamatta"} ;
+lin auttamattomasti_AdvK = {s = c99 "auttamattomasti"} ;
+lin auttava_AK = {s = d10 "auttava"} ;
+lin auttavainen_NK = {s = d38 "auttavainen"} ;
+lin auttavaisuus_NK = {s = d40 "auttavaisuus"} ;
+--+ lin auttavasti_AdvK = {s = c99 "auttavasti"} ;
+lin autuaallinen_AK = {s = d38 "autuaallinen"} ;
+--+ lin autuaallisesti_AdvK = {s = c99 "autuaallisesti"} ;
+lin autuaallisuus_NK = {s = d40 "autuaallisuus"} ;
+--+ lin autuaasti_AdvK = {s = c99 "autuaasti"} ;
+lin autuas_AK = {s = d41 "autuas"} ;
+lin autuus_NK = {s = d40 "autuus"} ;
+lin autuuttaa_VK = {s = c53A "autuuttaa"} ;
+lin auvo_NK = {s = d01 "auvo"} ;
+lin auvoinen_NK = {s = d38 "auvoinen"} ;
+lin auvoisa_NK = {s = d10 "auvoisa"} ;
+lin avaaja_NK = {s = d10 "avaaja"} ;
+lin avain_NK = {s = d33 "avain"} ;
+--? lin avajaiset_NK = {s = d38 "avajaiset"} ;
+lin avanne_NK = {s = d48A "avanne"} ;
+lin avantgardismi_NK = {s = d05 "avantgardismi"} ;
+lin avantgardisti_NK = {s = d05 "avantgardisti"} ;
+lin avantgardistinen_NK = {s = d38 "avantgardistinen"} ;
+lin avanto_NK = {s = d01A "avanto"} ;
+lin avara_NK = {s = d10 "avara"} ;
+--+ lin avarakatseisesti_AdvK = {s = c99 "avarakatseisesti"} ;
+--+ lin avaramielisesti_AdvK = {s = c99 "avaramielisesti"} ;
+lin avarrin_NK = {s = d33A "avarrin"} ;
+lin avarrus_NK = {s = d39 "avarrus"} ;
+lin avartaa_VK = {s = c54A "avartaa"} ;
+lin avartua_VK = {s = c52A "avartua"} ;
+lin avaruudellinen_NK = {s = d38 "avaruudellinen"} ;
+lin avaruus_NK = {s = d40 "avaruus"} ;
+lin avaruusaika_NK = {s = d09A "avaruusaika"} ;
+lin avata_VK = {s = c73 "avata"} ;
+lin avauma_NK = {s = d10 "avauma"} ;
+lin avaus_NK = {s = d39 "avaus"} ;
+lin avautua_VK = {s = c52A "avautua"} ;
+lin avautuma_NK = {s = d10 "avautuma"} ;
+lin avec_NK = {s = d05 "avec"} ;
+lin aviisi_NK = {s = d05 "aviisi"} ;
+lin avio_NK = {s = d03 "avio"} ;
+lin avioinen_NK = {s = d38 "avioinen"} ;
+lin avioisuus_NK = {s = d40 "avioisuus"} ;
+lin avioitua_VK = {s = c52A "avioitua"} ;
+lin aviollinen_NK = {s = d38 "aviollinen"} ;
+lin avioniikka_NK = {s = d09A "avioniikka"} ;
+lin avioton_NK = {s = d34A "avioton"} ;
+lin avittaa_VK = {s = c53A "avittaa"} ;
+lin avitus_NK = {s = d39 "avitus"} ;
+lin avo_AdvK = {s = c99 "avo"} ;
+lin avohaava_NK = {s = d09 "avohaava"} ;
+lin avoimesti_AdvK = {s = c99 "avoimesti"} ;
+lin avoimuus_NK = {s = d40 "avoimuus"} ;
+lin avoin_NK = {s = d33 "avoin"} ;
+lin avojaloin_AdvK = {s = c99 "avojaloin"} ;
+lin avokado_NK = {s = d01 "avokado"} ;
+lin avokas_NK = {s = d41A "avokas"} ;
+lin avokatseisesti_AdvK = {s = c99 "avokatseisesti"} ;
+lin avoka'tisesti_AdvK = {s = c99 "avokätisesti"} ;
+lin avomaankurkku_NK = {s = d01A "avomaankurkku"} ;
+lin avomielisesti_AdvK = {s = c99 "avomielisesti"} ;
+lin avonaisesti_AdvK = {s = c99 "avonaisesti"} ;
+lin avorioriisi_NK = {s = d05 "avorioriisi"} ;
+lin avosilmin_AdvK = {s = c99 "avosilmin"} ;
+lin avosuin_AdvK = {s = c99 "avosuin"} ;
+--+ lin avosyda'misesti_AdvK = {s = c99 "avosydämisesti"} ;
+lin avosylin_AdvK = {s = c99 "avosylin"} ;
+lin avu_NK = {s = d01 "avu"} ;
+--+ lin avuliaasti_AdvK = {s = c99 "avuliaasti"} ;
+lin avuliaisuus_NK = {s = d40 "avuliaisuus"} ;
+lin avulias_AK = {s = d41 "avulias"} ;
+lin avustaa_VK = {s = c53 "avustaa"} ;
+lin avustaja_NK = {s = d10 "avustaja"} ;
+lin avustajisto_NK = {s = d01 "avustajisto"} ;
+lin avuste_NK = {s = d48 "avuste"} ;
+lin avusteinen_NK = {s = d38 "avusteinen"} ;
+lin avustus_NK = {s = d39 "avustus"} ;
+lin avuton_NK = {s = d34A "avuton"} ;
+lin avuttomasti_AdvK = {s = c99 "avuttomasti"} ;
+lin avuttomuus_NK = {s = d40 "avuttomuus"} ;
+lin azerbaid_ani_NK = {s = d06 "azerbaidžani"} ;
+lin azeri_NK = {s = d06 "azeri"} ;
+lin baana_NK = {s = d09 "baana"} ;
+lin baari_1_NK = {s = d05 "baari"} ;
+lin baari_2_NK = {s = d05 "baari"} ;
+lin baba_NK = {s = d09 "baba"} ;
+lin baby_NK = {s = d01 "baby"} ;
+lin babylonialainen_NK = {s = d38 "babylonialainen"} ;
+lin babysitter_NK = {s = d06 "babysitter"} ;
+lin backgammon_NK = {s = d06 "backgammon"} ;
+lin bagatelli_NK = {s = d05 "bagatelli"} ;
+lin bagatellisoida_VK = {s = c62 "bagatellisoida"} ;
+lin bailata_VK = {s = c73 "bailata"} ;
+lin bailaus_NK = {s = d39 "bailaus"} ;
+--? lin bailut_NK = {s = d01 "bailut"} ;
+lin bakkanaali_NK = {s = d05 "bakkanaali"} ;
+lin bakteeri_NK = {s = d06 "bakteeri"} ;
+lin bakteeriton_NK = {s = d34A "bakteeriton"} ;
+lin bakteerittomuus_NK = {s = d40 "bakteerittomuus"} ;
+lin bakteriologia_NK = {s = d12 "bakteriologia"} ;
+lin bakteriologinen_AK = {s = d38 "bakteriologinen"} ;
+--+ lin bakteriologisesti_AdvK = {s = c99 "bakteriologisesti"} ;
+lin balalaikka_NK = {s = d09A "balalaikka"} ;
+lin balansoida_VK = {s = c62 "balansoida"} ;
+lin balansointi_NK = {s = d05A "balansointi"} ;
+lin balanssi_NK = {s = d05 "balanssi"} ;
+lin baletti_NK = {s = d05A "baletti"} ;
+lin balladi_NK = {s = d05 "balladi"} ;
+lin ballerina_NK = {s = d09 "ballerina"} ;
+lin ballistiikka_NK = {s = d09A "ballistiikka"} ;
+lin ballistinen_NK = {s = d38 "ballistinen"} ;
+lin balsa_NK = {s = d09 "balsa"} ;
+lin balsami_NK = {s = d06 "balsami"} ;
+lin balsamoida_VK = {s = c62 "balsamoida"} ;
+lin balsamointi_NK = {s = d05A "balsamointi"} ;
+lin baltti_NK = {s = d05A "baltti"} ;
+lin balttilaisuus_NK = {s = d40 "balttilaisuus"} ;
+lin bambu_NK = {s = d01 "bambu"} ;
+lin banaali_AK = {s = d06 "banaali"} ;
+lin banaalistaa_VK = {s = c53 "banaalistaa"} ;
+--+ lin banaalisti_AdvK = {s = c99 "banaalisti"} ;
+lin banaalistua_VK = {s = c52 "banaalistua"} ;
+lin banaalius_NK = {s = d40 "banaalius"} ;
+lin banaani_NK = {s = d06 "banaani"} ;
+lin banalisoida_VK = {s = c62 "banalisoida"} ;
+lin banalisointi_NK = {s = d05A "banalisointi"} ;
+lin banalisoitua_VK = {s = c52A "banalisoitua"} ;
+lin banaliteetti_NK = {s = d05A "banaliteetti"} ;
+lin banderolli_NK = {s = d05 "banderolli"} ;
+lin bandiitti_NK = {s = d05A "bandiitti"} ;
+lin banjo_NK = {s = d01 "banjo"} ;
+lin banketti_1_NK = {s = d05A "banketti"} ;
+lin banketti_2_NK = {s = d05A "banketti"} ;
+lin bantu_NK = {s = d01 "bantu"} ;
+lin bantustan_NK = {s = d05 "bantustan"} ;
+lin baptismi_NK = {s = d05 "baptismi"} ;
+lin baptisti_NK = {s = d05 "baptisti"} ;
+lin barbaari_NK = {s = d06 "barbaari"} ;
+--+ lin barbaarimaisesti_AdvK = {s = c99 "barbaarimaisesti"} ;
+lin barbaarimaisuus_NK = {s = d40 "barbaarimaisuus"} ;
+lin barbaarinen_AK = {s = d38 "barbaarinen"} ;
+--+ lin barbaarisesti_AdvK = {s = c99 "barbaarisesti"} ;
+lin barbaarisuus_NK = {s = d40 "barbaarisuus"} ;
+lin barbarismi_NK = {s = d05 "barbarismi"} ;
+lin barbi_NK = {s = d05 "barbi"} ;
+lin barbituraatti_NK = {s = d05A "barbituraatti"} ;
+lin bardi_NK = {s = d05 "bardi"} ;
+lin baretti_NK = {s = d05A "baretti"} ;
+lin baritoni_NK = {s = d05 "baritoni"} ;
+lin barium_NK = {s = d05 "barium"} ;
+lin barokki_NK = {s = d05A "barokki"} ;
+lin barokkiaika_NK = {s = d09A "barokkiaika"} ;
+lin barometri_NK = {s = d05 "barometri"} ;
+lin barrakuda_NK = {s = d10 "barrakuda"} ;
+lin barreli_NK = {s = d06 "barreli"} ;
+lin barrikadi_NK = {s = d05 "barrikadi"} ;
+lin barytoni_NK = {s = d05 "barytoni"} ;
+lin basaari_NK = {s = d06 "basaari"} ;
+lin basaltti_NK = {s = d05A "basaltti"} ;
+lin baseball_NK = {s = d05 "baseball"} ;
+lin basenji_NK = {s = d06 "basenji"} ;
+lin basilika_1_NK = {s = d09 "basilika"} ;
+lin basilika_2_NK = {s = d09 "basilika"} ;
+lin basilli_NK = {s = d06 "basilli"} ;
+lin basisti_NK = {s = d05 "basisti"} ;
+lin baskeri_NK = {s = d06 "baskeri"} ;
+lin baski_NK = {s = d05 "baski"} ;
+lin baskilaisuus_NK = {s = d40 "baskilaisuus"} ;
+lin basmatiriisi_NK = {s = d05 "basmatiriisi"} ;
+lin bassetti_NK = {s = d05A "bassetti"} ;
+lin basso_NK = {s = d01 "basso"} ;
+lin bastardi_NK = {s = d05 "bastardi"} ;
+lin bastioni_NK = {s = d05 "bastioni"} ;
+lin bataatti_NK = {s = d05A "bataatti"} ;
+lin batikki_NK = {s = d05A "batikki"} ;
+lin batisti_NK = {s = d05 "batisti"} ;
+lin batistinen_NK = {s = d38 "batistinen"} ;
+lin batonki_NK = {s = d05A "batonki"} ;
+lin baudi_NK = {s = d05 "baudi"} ;
+lin bauksiitti_NK = {s = d05A "bauksiitti"} ;
+lin bavaroise_NK = {s = d08 "bavaroise"} ;
+lin beagle_NK = {s = d08 "beagle"} ;
+lin beat_NK = {s = d05 "beat"} ;
+lin beaujolaisviini_NK = {s = d05 "beaujolaisviini"} ;
+lin beauty_box_NK = {s = d05 "beauty box"} ;
+lin b_b__NK = {s = d21 "bébé"} ;
+lin bebee_NK = {s = d20 "bebee"} ;
+lin bebop_NK = {s = d05 "bebop"} ;
+lin becquerel_NK = {s = d05 "becquerel"} ;
+lin bed_and_breakfast_AdvK = {s = c99 "bed and breakfast"} ;
+lin beduiini_NK = {s = d05 "beduiini"} ;
+lin beesi_NK = {s = d05 "beesi"} ;
+lin beeta_NK = {s = d09 "beeta"} ;
+lin begonia_NK = {s = d12 "begonia"} ;
+lin beguine_NK = {s = d08 "beguine"} ;
+lin behaviorismi_NK = {s = d05 "behaviorismi"} ;
+lin behavioristi_NK = {s = d05 "behavioristi"} ;
+lin behavioristinen_NK = {s = d38 "behavioristinen"} ;
+lin beibi_NK = {s = d05 "beibi"} ;
+lin beige_NK = {s = d08 "beige"} ;
+--? lin beignet_NK = {s = d22 "beignet"} ;
+lin belladonna_NK = {s = d10 "belladonna"} ;
+lin benediktiini_NK = {s = d05 "benediktiini"} ;
+lin benigni_NK = {s = d05 "benigni"} ;
+lin bensa_NK = {s = d09 "bensa"} ;
+lin bensiini_NK = {s = d06 "bensiini"} ;
+lin berberi_1_NK = {s = d06 "berberi"} ;
+lin berberi_2_NK = {s = d06 "berberi"} ;
+--? lin bermudat_NK = {s = d09 "bermudat"} ;
+lin bernhardilainen_NK = {s = d38 "bernhardilainen"} ;
+lin berylli_NK = {s = d05 "berylli"} ;
+lin beryllium_NK = {s = d05 "beryllium"} ;
+lin besserwisser_NK = {s = d06 "besserwisser"} ;
+lin best_man_NK = {s = d05 "best man"} ;
+lin bestseller_NK = {s = d06 "bestseller"} ;
+lin betoni_NK = {s = d06 "betoni"} ;
+lin betoninen_NK = {s = d38 "betoninen"} ;
+lin betonoida_VK = {s = c62 "betonoida"} ;
+lin betonointi_NK = {s = d05A "betonointi"} ;
+lin biblia_NK = {s = d12 "biblia"} ;
+lin bibliofiili_NK = {s = d05 "bibliofiili"} ;
+lin bibliofilia_NK = {s = d12 "bibliofilia"} ;
+lin bibliografi_NK = {s = d05 "bibliografi"} ;
+lin bibliografia_NK = {s = d12 "bibliografia"} ;
+lin bibliografinen_NK = {s = d38 "bibliografinen"} ;
+lin bidee_NK = {s = d20 "bidee"} ;
+lin biedermeier_NK = {s = d06 "biedermeier"} ;
+lin biennaali_NK = {s = d05 "biennaali"} ;
+lin bigaaminen_NK = {s = d38 "bigaaminen"} ;
+lin bigamia_NK = {s = d12 "bigamia"} ;
+lin big_band_NK = {s = d05 "big band"} ;
+lin biisami_NK = {s = d06 "biisami"} ;
+lin biisi_NK = {s = d05 "biisi"} ;
+lin biisoni_NK = {s = d06 "biisoni"} ;
+lin biitti_NK = {s = d05A "biitti"} ;
+lin bikarbonaatti_NK = {s = d05A "bikarbonaatti"} ;
+--? lin bikinit_NK = {s = d06 "bikinit"} ;
+lin bilanssi_NK = {s = d05 "bilanssi"} ;
+lin bilateraalinen_AK = {s = d38 "bilateraalinen"} ;
+--+ lin bilateraalisesti_AdvK = {s = c99 "bilateraalisesti"} ;
+lin bilateraalisuus_NK = {s = d40 "bilateraalisuus"} ;
+--? lin bileet_NK = {s = d20 "bileet"} ;
+lin biljardi_NK = {s = d06 "biljardi"} ;
+lin biljoona_NK = {s = d10 "biljoona"} ;
+lin bilsa_NK = {s = d09 "bilsa"} ;
+lin bimetallismi_NK = {s = d05 "bimetallismi"} ;
+lin binaarinen_NK = {s = d38 "binaarinen"} ;
+lin bingo_NK = {s = d01 "bingo"} ;
+lin bingota_VK = {s = c75 "bingota"} ;
+lin binomi_NK = {s = d05 "binomi"} ;
+lin bina'a'rinen_NK = {s = d38 "binäärinen"} ;
+lin biodiversiteetti_NK = {s = d05A "biodiversiteetti"} ;
+lin biodynaaminen_NK = {s = d38 "biodynaaminen"} ;
+lin biodynaamisuus_NK = {s = d40 "biodynaamisuus"} ;
+lin biogeeninen_NK = {s = d38 "biogeeninen"} ;
+lin biogeenisuus_NK = {s = d40 "biogeenisuus"} ;
+lin biografi_NK = {s = d05 "biografi"} ;
+lin biografia_NK = {s = d12 "biografia"} ;
+lin biografinen_NK = {s = d38 "biografinen"} ;
+lin biokenoosi_NK = {s = d05 "biokenoosi"} ;
+lin biologi_NK = {s = d05 "biologi"} ;
+lin biologia_NK = {s = d12 "biologia"} ;
+lin biologinen_AK = {s = d38 "biologinen"} ;
+--+ lin biologisesti_AdvK = {s = c99 "biologisesti"} ;
+lin biometrinen_NK = {s = d38 "biometrinen"} ;
+lin biopsia_NK = {s = d12 "biopsia"} ;
+lin biosfa'a'ri_NK = {s = d05 "biosfääri"} ;
+lin biotooppi_NK = {s = d05A "biotooppi"} ;
+lin bisarri_AK = {s = d06 "bisarri"} ;
+--+ lin bisarristi_AdvK = {s = c99 "bisarristi"} ;
+lin biseksuaalisuus_NK = {s = d40 "biseksuaalisuus"} ;
+lin bismarck_NK = {s = d05 "bismarck"} ;
+lin bisnes_NK = {s = d39 "bisnes"} ;
+lin bistro_NK = {s = d01 "bistro"} ;
+lin bitter_NK = {s = d06 "bitter"} ;
+lin bitti_NK = {s = d05A "bitti"} ;
+lin bitumi_NK = {s = d06 "bitumi"} ;
+lin bitumoida_VK = {s = c62 "bitumoida"} ;
+lin blandata_VK = {s = c73 "blandata"} ;
+lin blandaus_NK = {s = d39 "blandaus"} ;
+lin blandinki_NK = {s = d05A "blandinki"} ;
+lin blandis_NK = {s = d39 "blandis"} ;
+lin blanketti_NK = {s = d05A "blanketti"} ;
+lin blanseerata_VK = {s = c73 "blanseerata"} ;
+lin blastula_NK = {s = d12 "blastula"} ;
+lin blazer_NK = {s = d06 "blazer"} ;
+lin bleiseri_NK = {s = d06 "bleiseri"} ;
+lin blini_NK = {s = d05 "blini"} ;
+lin blokata_VK = {s = c73A "blokata"} ;
+lin blokkaus_NK = {s = d39 "blokkaus"} ;
+lin blokki_NK = {s = d05A "blokki"} ;
+lin blokkiintua_VK = {s = c52A "blokkiintua"} ;
+lin blokkiutua_VK = {s = c52A "blokkiutua"} ;
+lin blondata_VK = {s = c73 "blondata"} ;
+lin blondi_NK = {s = d05 "blondi"} ;
+lin blondiini_NK = {s = d06 "blondiini"} ;
+lin blues_NK = {s = d05 "blues"} ;
+lin bluffata_VK = {s = c73 "bluffata"} ;
+lin bluffaus_NK = {s = d39 "bluffaus"} ;
+lin bluffi_NK = {s = d05 "bluffi"} ;
+lin boa_NK = {s = d10 "boa"} ;
+lin bodaaja_NK = {s = d10 "bodaaja"} ;
+lin bodari_NK = {s = d06 "bodari"} ;
+lin bodata_VK = {s = c73 "bodata"} ;
+lin bodaus_NK = {s = d39 "bodaus"} ;
+lin bodi_NK = {s = d05 "bodi"} ;
+lin bodybuilding_NK = {s = d05 "bodybuilding"} ;
+lin body_stocking_NK = {s = d05 "body stocking"} ;
+lin bofori_NK = {s = d06 "bofori"} ;
+lin boheemi_NK = {s = d05 "boheemi"} ;
+lin boikotoida_VK = {s = c62 "boikotoida"} ;
+lin boikotointi_NK = {s = d05A "boikotointi"} ;
+lin boikotti_NK = {s = d05A "boikotti"} ;
+lin boileri_NK = {s = d06 "boileri"} ;
+lin bokseri_NK = {s = d06 "bokseri"} ;
+lin boksi_1_NK = {s = d05 "boksi"} ;
+lin boksi_2_NK = {s = d05 "boksi"} ;
+lin bolero_NK = {s = d02 "bolero"} ;
+lin bolsevikki_NK = {s = d05A "bolsevikki"} ;
+lin bol_evikki_NK = {s = d05A "bolševikki"} ;
+lin bolsevismi_NK = {s = d05 "bolsevismi"} ;
+lin bol_evismi_NK = {s = d05 "bolševismi"} ;
+lin bolsevistinen_NK = {s = d38 "bolsevistinen"} ;
+lin bol_evistinen_NK = {s = d38 "bolševistinen"} ;
+lin bongari_NK = {s = d06 "bongari"} ;
+lin bongata_VK = {s = c73 "bongata"} ;
+lin bongaus_NK = {s = d39 "bongaus"} ;
+lin bongo_NK = {s = d01 "bongo"} ;
+lin bonus_NK = {s = d39 "bonus"} ;
+lin booli_NK = {s = d05 "booli"} ;
+lin boomi_NK = {s = d05 "boomi"} ;
+lin boordi_NK = {s = d05 "boordi"} ;
+lin boori_NK = {s = d05 "boori"} ;
+lin boosteri_NK = {s = d06 "boosteri"} ;
+lin bootsi_NK = {s = d05 "bootsi"} ;
+lin bordeaux_NK = {s = d22 "bordeaux"} ;
+lin bordelli_NK = {s = d05 "bordelli"} ;
+lin bordyyri_NK = {s = d05 "bordyyri"} ;
+lin borrelioosi_NK = {s = d05 "borrelioosi"} ;
+lin borssi_NK = {s = d05 "borssi"} ;
+lin bor_t__NK = {s = d05 "borštš"} ;
+lin bosniahertsegovinalainen_NK = {s = d38 "bosniahertsegovinalainen"} ;
+lin bosoni_NK = {s = d06 "bosoni"} ;
+lin bossa_nova_NK = {s = d10 "bossa nova"} ;
+lin botaanikko_NK = {s = d04A "botaanikko"} ;
+lin botaaninen_AK = {s = d38 "botaaninen"} ;
+--+ lin botaanisesti_AdvK = {s = c99 "botaanisesti"} ;
+lin botaniikka_NK = {s = d09A "botaniikka"} ;
+lin botanisti_NK = {s = d05 "botanisti"} ;
+lin botuliini_NK = {s = d05 "botuliini"} ;
+lin botulismi_NK = {s = d05 "botulismi"} ;
+lin bougainvillea_NK = {s = d12 "bougainvillea"} ;
+lin bouillabaisse_NK = {s = d08 "bouillabaisse"} ;
+--? lin bouquet_NK = {s = d22 "bouquet"} ;
+lin bourbon_NK = {s = d06 "bourbon"} ;
+lin bourette_NK = {s = d08 "bourette"} ;
+lin bourgogne_NK = {s = d08 "bourgogne"} ;
+lin boutique_NK = {s = d08 "boutique"} ;
+lin boyfriend_NK = {s = d05 "boyfriend"} ;
+lin braatvursti_NK = {s = d05 "braatvursti"} ;
+lin brahma_NK = {s = d09 "brahma"} ;
+lin brahmaani_NK = {s = d06 "brahmaani"} ;
+lin brahmalaisuus_NK = {s = d40 "brahmalaisuus"} ;
+lin brahmanismi_NK = {s = d05 "brahmanismi"} ;
+lin bramaani_NK = {s = d06 "bramaani"} ;
+lin bramiini_NK = {s = d06 "bramiini"} ;
+lin brandy_NK = {s = d01 "brandy"} ;
+lin brasserie_NK = {s = d21 "brasserie"} ;
+lin brassi_NK = {s = d05 "brassi"} ;
+lin bravo_AdvK = {s = c99 "bravo"} ;
+lin bravuuri_NK = {s = d06 "bravuuri"} ;
+lin breikata_VK = {s = c73A "breikata"} ;
+lin breikkaus_NK = {s = d39 "breikkaus"} ;
+lin breikki_NK = {s = d05A "breikki"} ;
+lin brenkku_NK = {s = d01A "brenkku"} ;
+lin breseerata_VK = {s = c73 "breseerata"} ;
+lin bre_nevila'inen_AK = {s = d38 "brežneviläinen"} ;
+--+ lin bre_nevila'isesti_AdvK = {s = c99 "brežneviläisesti"} ;
+lin bre_nevila'isyys_NK = {s = d40 "brežneviläisyys"} ;
+lin bridge_NK = {s = d08 "bridge"} ;
+lin brie_NK = {s = d21 "brie"} ;
+lin brigado'o'ri_NK = {s = d05 "brigadööri"} ;
+lin briiffaus_NK = {s = d39 "briiffaus"} ;
+lin briketti_NK = {s = d05A "briketti"} ;
+lin briljantti_NK = {s = d05A "briljantti"} ;
+lin briljeerata_VK = {s = c73 "briljeerata"} ;
+lin briljeeraus_NK = {s = d39 "briljeeraus"} ;
+lin briossi_NK = {s = d05 "briossi"} ;
+lin britti_NK = {s = d05A "britti"} ;
+lin brittila'inen_NK = {s = d38 "brittiläinen"} ;
+lin brittila'isyys_NK = {s = d40 "brittiläisyys"} ;
+lin brodeerata_VK = {s = c73 "brodeerata"} ;
+lin brodeeraus_NK = {s = d39 "brodeeraus"} ;
+lin brodyyri_NK = {s = d05 "brodyyri"} ;
+lin broidi_NK = {s = d05 "broidi"} ;
+lin broileri_NK = {s = d06 "broileri"} ;
+lin brokadi_NK = {s = d05 "brokadi"} ;
+lin brokkoli_NK = {s = d06 "brokkoli"} ;
+lin bromi_NK = {s = d05 "bromi"} ;
+lin bronkiitti_NK = {s = d05A "bronkiitti"} ;
+lin brontosaurus_NK = {s = d39 "brontosaurus"} ;
+lin brosyyri_NK = {s = d05 "brosyyri"} ;
+lin brovninki_NK = {s = d05A "brovninki"} ;
+lin brunch_NK = {s = d05 "brunch"} ;
+lin brunssi_NK = {s = d05 "brunssi"} ;
+lin brutaali_NK = {s = d06 "brutaali"} ;
+lin brutaalius_NK = {s = d40 "brutaalius"} ;
+lin brutto_NK = {s = d01A "brutto"} ;
+lin bryssa'_NK = {s = d10 "bryssä"} ;
+lin bra'ndi_NK = {s = d05 "brändi"} ;
+lin buddhalainen_NK = {s = d38 "buddhalainen"} ;
+lin buddhalaisuus_NK = {s = d40 "buddhalaisuus"} ;
+lin buddhismi_NK = {s = d05 "buddhismi"} ;
+lin budjetoida_VK = {s = c62 "budjetoida"} ;
+lin budjetointi_NK = {s = d05A "budjetointi"} ;
+lin budjetti_NK = {s = d05A "budjetti"} ;
+lin budo_NK = {s = d01 "budo"} ;
+lin bufetti_NK = {s = d05A "bufetti"} ;
+--? lin buffet_NK = {s = d22 "buffet"} ;
+lin bugi_NK = {s = d05 "bugi"} ;
+lin bukee_NK = {s = d20 "bukee"} ;
+lin buklee_NK = {s = d20 "buklee"} ;
+lin bulevardi_NK = {s = d05 "bulevardi"} ;
+lin bulgaari_NK = {s = d06 "bulgaari"} ;
+lin bulgarialainen_NK = {s = d38 "bulgarialainen"} ;
+lin buliimikko_NK = {s = d04A "buliimikko"} ;
+lin bulimia_NK = {s = d12 "bulimia"} ;
+lin bulkki_NK = {s = d05A "bulkki"} ;
+lin bulla_NK = {s = d10 "bulla"} ;
+lin bulldoggi_NK = {s = d05 "bulldoggi"} ;
+lin bulvaani_NK = {s = d06 "bulvaani"} ;
+lin bumerangi_NK = {s = d05 "bumerangi"} ;
+lin bungalow_NK = {s = d05 "bungalow"} ;
+lin bunkkeri_NK = {s = d06 "bunkkeri"} ;
+lin burnout_NK = {s = d05 "burnout"} ;
+lin business_NK = {s = d05 "business"} ;
+lin busmanni_NK = {s = d05 "busmanni"} ;
+lin bu_manni_NK = {s = d05 "bušmanni"} ;
+lin bussi_NK = {s = d05 "bussi"} ;
+lin butaani_NK = {s = d05 "butaani"} ;
+lin buuata_VK = {s = c73 "buuata"} ;
+lin buuaus_NK = {s = d39 "buuaus"} ;
+lin buukata_VK = {s = c73A "buukata"} ;
+lin buukkaus_NK = {s = d39 "buukkaus"} ;
+lin buumi_NK = {s = d05 "buumi"} ;
+lin buuri_NK = {s = d05 "buuri"} ;
+lin buzuki_NK = {s = d06 "buzuki"} ;
+lin bygga_NK = {s = d10 "bygga"} ;
+lin byrokraatti_NK = {s = d05A "byrokraatti"} ;
+lin byrokraattinen_NK = {s = d38 "byrokraattinen"} ;
+lin byrokraattisesti_AdvK = {s = c99 "byrokraattisesti"} ;
+lin byrokraattistaa_VK = {s = c53 "byrokraattistaa"} ;
+lin byrokraattistua_VK = {s = c52 "byrokraattistua"} ;
+lin byrokraattisuus_NK = {s = d40 "byrokraattisuus"} ;
+lin byrokratia_NK = {s = d12 "byrokratia"} ;
+lin byrokratisoida_VK = {s = c62 "byrokratisoida"} ;
+lin byrokratisointi_NK = {s = d05A "byrokratisointi"} ;
+lin byrokratisoitua_VK = {s = c52A "byrokratisoitua"} ;
+lin bysanttilainen_NK = {s = d38 "bysanttilainen"} ;
+lin bysanttilaisuus_NK = {s = d40 "bysanttilaisuus"} ;
+lin byte_NK = {s = d08 "byte"} ;
+lin ba'ndi_NK = {s = d05 "bändi"} ;
+--? lin ba'net_NK = {s = d08 "bänet"} ;
+lin ba'nks_NK = {s = d05 "bänks"} ;
+lin caddie_NK = {s = d08 "caddie"} ;
+lin cafeteria_NK = {s = d12 "cafeteria"} ;
+lin calvados_NK = {s = d05 "calvados"} ;
+lin calypso_NK = {s = d02 "calypso"} ;
+lin camembert_NK = {s = d05 "camembert"} ;
+lin camping_NK = {s = d05 "camping"} ;
+lin campus_NK = {s = d39 "campus"} ;
+lin canasta_NK = {s = d09 "canasta"} ;
+lin cancan_NK = {s = d05 "cancan"} ;
+lin cannelloni_NK = {s = d05 "cannelloni"} ;
+lin cappuccino_NK = {s = d01 "cappuccino"} ;
+lin casanova_NK = {s = d10 "casanova"} ;
+lin catering_NK = {s = d05 "catering"} ;
+lin CD_AdvK = {s = c99 "CD"} ;
+lin CD_ROM_NK = {s = d05 "CD-ROM"} ;
+lin cembalo_NK = {s = d02 "cembalo"} ;
+lin cesium_NK = {s = d05 "cesium"} ;
+lin cha_cha_cha_NK = {s = d21 "cha-cha-cha"} ;
+lin chanson_NK = {s = d06 "chanson"} ;
+lin charleston_NK = {s = d05 "charleston"} ;
+lin charlotte_russe_NK = {s = d08 "charlotte russe"} ;
+lin charmantti_NK = {s = d05A "charmantti"} ;
+lin charmi_NK = {s = d05 "charmi"} ;
+lin charmikas_NK = {s = d41A "charmikas"} ;
+lin charterlento_NK = {s = d01A "charterlento"} ;
+lin chatata_VK = {s = c73A "chatata"} ;
+lin chateaubriand_NK = {s = d05 "chateaubriand"} ;
+lin ch_teauviini_NK = {s = d05 "châteauviini"} ;
+lin chatti_NK = {s = d05A "chatti"} ;
+lin cheddar_NK = {s = d05 "cheddar"} ;
+lin cheerleader_NK = {s = d05 "cheerleader"} ;
+lin chenille_NK = {s = d08 "chenille"} ;
+lin chic_NK = {s = d05 "chic"} ;
+lin chili_NK = {s = d05 "chili"} ;
+lin chinchilla_NK = {s = d09 "chinchilla"} ;
+lin chippendale_NK = {s = d08 "chippendale"} ;
+lin chips_NK = {s = d05 "chips"} ;
+lin cicero_NK = {s = d02 "cicero"} ;
+lin cirrus_NK = {s = d39 "cirrus"} ;
+lin city_NK = {s = d01 "city"} ;
+lin civis_NK = {s = d39 "civis"} ;
+lin clearing_NK = {s = d05 "clearing"} ;
+lin clou_NK = {s = d21 "clou"} ;
+lin cocktail_NK = {s = d05 "cocktail"} ;
+lin college_NK = {s = d08 "college"} ;
+lin collie_NK = {s = d03 "collie"} ;
+lin come_back_NK = {s = d05 "come-back"} ;
+lin contra_NK = {s = d10 "contra"} ;
+lin copy_NK = {s = d01 "copy"} ;
+lin copyright_NK = {s = d05 "copyright"} ;
+lin copywriter_NK = {s = d06 "copywriter"} ;
+lin coulombi_NK = {s = d05 "coulombi"} ;
+lin country_NK = {s = d01 "country"} ;
+lin coup__NK = {s = d21 "coupé"} ;
+lin couscous_NK = {s = d05 "couscous"} ;
+lin cowboy_NK = {s = d21 "cowboy"} ;
+lin crack_NK = {s = d05 "crack"} ;
+lin cr_me_fra_che_NK = {s = d08 "crème fraîche"} ;
+lin cr_pe_NK = {s = d08 "crêpe"} ;
+lin crescendo_NK = {s = d01 "crescendo"} ;
+lin croissant_NK = {s = d05 "croissant"} ;
+lin cs_rd_s_NK = {s = d05 "csárdás"} ;
+lin cum_laude_NK = {s = d08 "cum laude"} ;
+lin cumulus_NK = {s = d39 "cumulus"} ;
+lin cup_NK = {s = d05 "cup"} ;
+lin curry_NK = {s = d01 "curry"} ;
+lin daalia_NK = {s = d12 "daalia"} ;
+lin daami_NK = {s = d05 "daami"} ;
+lin dadaismi_NK = {s = d05 "dadaismi"} ;
+lin dadaisti_NK = {s = d05 "dadaisti"} ;
+lin dadaistinen_NK = {s = d38 "dadaistinen"} ;
+lin daktyyli_NK = {s = d06 "daktyyli"} ;
+lin dalai_lama_NK = {s = d09 "dalai-lama"} ;
+lin damaski_NK = {s = d05 "damaski"} ;
+lin damasti_NK = {s = d05 "damasti"} ;
+lin dandy_NK = {s = d01 "dandy"} ;
+lin darvinismi_NK = {s = d05 "darvinismi"} ;
+lin darvinisti_NK = {s = d05 "darvinisti"} ;
+lin darvinistinen_NK = {s = d38 "darvinistinen"} ;
+lin data_NK = {s = d09 "data"} ;
+lin datanomi_NK = {s = d05 "datanomi"} ;
+lin dateerata_VK = {s = c73 "dateerata"} ;
+lin dateeraus_NK = {s = d39 "dateeraus"} ;
+lin datiivi_NK = {s = d05 "datiivi"} ;
+lin dat_a_NK = {s = d09 "datša"} ;
+lin deadline_NK = {s = d08 "deadline"} ;
+lin dealer_NK = {s = d06 "dealer"} ;
+lin debatti_NK = {s = d05A "debatti"} ;
+lin debentuuri_NK = {s = d05 "debentuuri"} ;
+lin debet_NK = {s = d05 "debet"} ;
+lin debiili_NK = {s = d06 "debiili"} ;
+lin debytantti_NK = {s = d05A "debytantti"} ;
+lin debytoida_VK = {s = c62 "debytoida"} ;
+lin debyytti_NK = {s = d05A "debyytti"} ;
+lin deduktiivinen_AK = {s = d38 "deduktiivinen"} ;
+--+ lin deduktiivisesti_AdvK = {s = c99 "deduktiivisesti"} ;
+lin deduktiivisuus_NK = {s = d40 "deduktiivisuus"} ;
+lin deduktio_NK = {s = d03 "deduktio"} ;
+lin deekikselle_AdvK = {s = c99 "deekikselle"} ;
+lin deekiksella'_AdvK = {s = c99 "deekiksellä"} ;
+lin deeku_NK = {s = d01 "deeku"} ;
+lin defekti_NK = {s = d05 "defekti"} ;
+lin defensiivinen_AK = {s = d38 "defensiivinen"} ;
+--+ lin defensiivisesti_AdvK = {s = c99 "defensiivisesti"} ;
+lin defensiivisyys_NK = {s = d40 "defensiivisyys"} ;
+lin definiittinen_AK = {s = d38 "definiittinen"} ;
+--+ lin definiittisesti_AdvK = {s = c99 "definiittisesti"} ;
+lin definiittisyys_NK = {s = d40 "definiittisyys"} ;
+lin definioida_VK = {s = c62 "definioida"} ;
+lin definitiivinen_AK = {s = d38 "definitiivinen"} ;
+--+ lin definitiivisesti_AdvK = {s = c99 "definitiivisesti"} ;
+lin definitiivisyys_NK = {s = d40 "definitiivisyys"} ;
+lin definitio_NK = {s = d03 "definitio"} ;
+lin deflaatio_NK = {s = d03 "deflaatio"} ;
+lin deformaatio_NK = {s = d03 "deformaatio"} ;
+lin degeneraatio_NK = {s = d03 "degeneraatio"} ;
+lin degeneroitua_VK = {s = c52A "degeneroitua"} ;
+lin deismi_NK = {s = d05 "deismi"} ;
+lin deisti_NK = {s = d05 "deisti"} ;
+lin deistinen_NK = {s = d38 "deistinen"} ;
+lin dekaani_1_NK = {s = d06 "dekaani"} ;
+lin dekaani_2_NK = {s = d06 "dekaani"} ;
+lin dekadenssi_NK = {s = d05 "dekadenssi"} ;
+lin dekadentisti_AdvK = {s = c99 "dekadentisti"} ;
+lin dekadentti_NK = {s = d05A "dekadentti"} ;
+lin dekantoida_VK = {s = c62 "dekantoida"} ;
+lin dekantointi_NK = {s = d05A "dekantointi"} ;
+lin dekantteri_NK = {s = d06 "dekantteri"} ;
+lin dekkari_NK = {s = d06 "dekkari"} ;
+lin dekki_NK = {s = d05A "dekki"} ;
+lin deklinaatio_NK = {s = d03 "deklinaatio"} ;
+lin dekoltee_NK = {s = d20 "dekoltee"} ;
+lin dekoodata_VK = {s = c73 "dekoodata"} ;
+lin dekoodaus_NK = {s = d39 "dekoodaus"} ;
+lin dekooderi_NK = {s = d06 "dekooderi"} ;
+lin dekoraatio_NK = {s = d03 "dekoraatio"} ;
+lin dekoratiivinen_AK = {s = d38 "dekoratiivinen"} ;
+--+ lin dekoratiivisesti_AdvK = {s = c99 "dekoratiivisesti"} ;
+lin dekoratiivisuus_NK = {s = d40 "dekoratiivisuus"} ;
+lin delata_VK = {s = c73 "delata"} ;
+lin delegaatio_NK = {s = d03 "delegaatio"} ;
+lin delegaatti_NK = {s = d05A "delegaatti"} ;
+lin delegoida_VK = {s = c62 "delegoida"} ;
+lin delegointi_NK = {s = d05A "delegointi"} ;
+lin delfiini_NK = {s = d06 "delfiini"} ;
+lin delfinaario_NK = {s = d03 "delfinaario"} ;
+lin delta_NK = {s = d09 "delta"} ;
+lin demagnetoida_VK = {s = c62 "demagnetoida"} ;
+lin demagnetointi_NK = {s = d05A "demagnetointi"} ;
+lin demagogi_NK = {s = d05 "demagogi"} ;
+lin demagogia_NK = {s = d12 "demagogia"} ;
+lin demagoginen_AK = {s = d38 "demagoginen"} ;
+--+ lin demagogisesti_AdvK = {s = c99 "demagogisesti"} ;
+lin demagogisuus_NK = {s = d40 "demagogisuus"} ;
+lin demari_NK = {s = d06 "demari"} ;
+lin dementia_NK = {s = d12 "dementia"} ;
+lin dementikko_NK = {s = d04A "dementikko"} ;
+lin dementoida_VK = {s = c62 "dementoida"} ;
+lin dementointi_NK = {s = d05A "dementointi"} ;
+lin dementoitua_VK = {s = c52A "dementoitua"} ;
+lin dementti_NK = {s = d05A "dementti"} ;
+lin demilitarisoida_VK = {s = c62 "demilitarisoida"} ;
+lin demilitarisointi_NK = {s = d05A "demilitarisointi"} ;
+lin deminutiivi_NK = {s = d05 "deminutiivi"} ;
+lin deminutiivinen_NK = {s = d38 "deminutiivinen"} ;
+lin demo_NK = {s = d01 "demo"} ;
+lin demobilisaatio_NK = {s = d03 "demobilisaatio"} ;
+lin demobilisoida_VK = {s = c62 "demobilisoida"} ;
+lin demobilisointi_NK = {s = d05A "demobilisointi"} ;
+lin demografi_NK = {s = d05 "demografi"} ;
+lin demografia_NK = {s = d12 "demografia"} ;
+lin demografinen_AK = {s = d38 "demografinen"} ;
+--+ lin demografisesti_AdvK = {s = c99 "demografisesti"} ;
+lin demokraatti_NK = {s = d05A "demokraatti"} ;
+lin demokraattinen_AK = {s = d38 "demokraattinen"} ;
+--+ lin demokraattisesti_AdvK = {s = c99 "demokraattisesti"} ;
+lin demokraattistaa_VK = {s = c53 "demokraattistaa"} ;
+lin demokraattistua_VK = {s = c52 "demokraattistua"} ;
+lin demokraattisuus_NK = {s = d40 "demokraattisuus"} ;
+lin demokratia_NK = {s = d12 "demokratia"} ;
+lin demokratisoida_VK = {s = c62 "demokratisoida"} ;
+lin demokratisointi_NK = {s = d05A "demokratisointi"} ;
+lin demokratisoitua_VK = {s = c52A "demokratisoitua"} ;
+lin demoni_NK = {s = d05 "demoni"} ;
+lin demoninen_AK = {s = d38 "demoninen"} ;
+--+ lin demonisesti_AdvK = {s = c99 "demonisesti"} ;
+lin demonisuus_NK = {s = d40 "demonisuus"} ;
+lin demonstraatio_NK = {s = d03 "demonstraatio"} ;
+lin demonstratiivinen_AK = {s = d38 "demonstratiivinen"} ;
+--+ lin demonstratiivisesti_AdvK = {s = c99 "demonstratiivisesti"} ;
+lin demonstratiivisuus_NK = {s = d40 "demonstratiivisuus"} ;
+lin demonstroida_VK = {s = c62 "demonstroida"} ;
+lin demonstrointi_NK = {s = d05A "demonstrointi"} ;
+lin demoralisoida_VK = {s = c62 "demoralisoida"} ;
+lin demoralisointi_NK = {s = d05A "demoralisointi"} ;
+lin demoralisoitua_VK = {s = c52A "demoralisoitua"} ;
+lin denaturoida_VK = {s = c62 "denaturoida"} ;
+lin denaturointi_NK = {s = d05A "denaturointi"} ;
+lin denier_NK = {s = d05 "denier"} ;
+lin denimi_NK = {s = d05 "denimi"} ;
+lin deodorantti_NK = {s = d05A "deodorantti"} ;
+lin depis_NK = {s = d39 "depis"} ;
+lin deponoida_VK = {s = c62 "deponoida"} ;
+lin deponointi_NK = {s = d05A "deponointi"} ;
+lin depressiivinen_AK = {s = d38 "depressiivinen"} ;
+--+ lin depressiivisesti_AdvK = {s = c99 "depressiivisesti"} ;
+lin depressiivisyys_NK = {s = d40 "depressiivisyys"} ;
+lin depressio_NK = {s = d03 "depressio"} ;
+lin derivaatta_NK = {s = d09A "derivaatta"} ;
+lin derivoida_VK = {s = c62 "derivoida"} ;
+lin derivointi_NK = {s = d05A "derivointi"} ;
+lin dermatologi_NK = {s = d05 "dermatologi"} ;
+lin dermatologia_NK = {s = d12 "dermatologia"} ;
+lin dermatologinen_AK = {s = d38 "dermatologinen"} ;
+--+ lin dermatologisesti_AdvK = {s = c99 "dermatologisesti"} ;
+lin desantti_NK = {s = d05A "desantti"} ;
+lin desentralisaatio_NK = {s = d03 "desentralisaatio"} ;
+lin desentralisoida_VK = {s = c62 "desentralisoida"} ;
+lin desentralisointi_NK = {s = d05A "desentralisointi"} ;
+lin desi_NK = {s = d05 "desi"} ;
+lin desibeli_NK = {s = d05 "desibeli"} ;
+lin design_NK = {s = d05 "design"} ;
+lin designer_NK = {s = d05 "designer"} ;
+lin desinfektio_NK = {s = d03 "desinfektio"} ;
+lin desinfektoida_VK = {s = c62 "desinfektoida"} ;
+lin desinfektointi_NK = {s = d05A "desinfektointi"} ;
+lin desinfioida_VK = {s = c62 "desinfioida"} ;
+lin desinfiointi_NK = {s = d05A "desinfiointi"} ;
+lin deskriptiivinen_AK = {s = d38 "deskriptiivinen"} ;
+--+ lin deskriptiivisesti_AdvK = {s = c99 "deskriptiivisesti"} ;
+lin deskriptiivisyys_NK = {s = d40 "deskriptiivisyys"} ;
+lin deskriptio_NK = {s = d03 "deskriptio"} ;
+lin desktop_publishing_NK = {s = d05 "desktop publishing"} ;
+lin despootti_NK = {s = d05A "despootti"} ;
+lin despoottinen_AK = {s = d38 "despoottinen"} ;
+--+ lin despoottisesti_AdvK = {s = c99 "despoottisesti"} ;
+lin despoottisuus_NK = {s = d40 "despoottisuus"} ;
+lin despotia_NK = {s = d12 "despotia"} ;
+lin despotismi_NK = {s = d05 "despotismi"} ;
+lin detalji_NK = {s = d06 "detalji"} ;
+lin detektori_NK = {s = d06 "detektori"} ;
+lin determinismi_NK = {s = d05 "determinismi"} ;
+lin deterministinen_AK = {s = d38 "deterministinen"} ;
+--+ lin deterministisesti_AdvK = {s = c99 "deterministisesti"} ;
+lin deuterium_NK = {s = d05 "deuterium"} ;
+lin devalvaatio_NK = {s = d03 "devalvaatio"} ;
+lin devalvoida_VK = {s = c62 "devalvoida"} ;
+lin devalvointi_NK = {s = d05A "devalvointi"} ;
+lin devalvoitua_VK = {s = c52A "devalvoitua"} ;
+lin deviaatio_NK = {s = d03 "deviaatio"} ;
+lin dia_NK = {s = d09 "dia"} ;
+lin diaari_NK = {s = d06 "diaari"} ;
+lin diaario_NK = {s = d03 "diaario"} ;
+lin diabeetikko_NK = {s = d04A "diabeetikko"} ;
+lin diabetes_NK = {s = d39 "diabetes"} ;
+lin diadeemi_NK = {s = d05 "diadeemi"} ;
+lin diagnoosi_NK = {s = d05 "diagnoosi"} ;
+lin diagnosoida_VK = {s = c62 "diagnosoida"} ;
+lin diagnosointi_NK = {s = d05A "diagnosointi"} ;
+lin diagnostiikka_NK = {s = d09A "diagnostiikka"} ;
+lin diagnostinen_AK = {s = d38 "diagnostinen"} ;
+--+ lin diagnostisesti_AdvK = {s = c99 "diagnostisesti"} ;
+lin diagnostisuus_NK = {s = d40 "diagnostisuus"} ;
+lin diagonaali_NK = {s = d05 "diagonaali"} ;
+lin diagrammi_NK = {s = d05 "diagrammi"} ;
+lin diakonia_NK = {s = d12 "diakonia"} ;
+lin diakoninen_NK = {s = d38 "diakoninen"} ;
+lin diakonissa_NK = {s = d09 "diakonissa"} ;
+lin dialektiikka_NK = {s = d09A "dialektiikka"} ;
+lin dialektinen_AK = {s = d38 "dialektinen"} ;
+--+ lin dialektisesti_AdvK = {s = c99 "dialektisesti"} ;
+lin dialogi_NK = {s = d05 "dialogi"} ;
+lin dialyysi_NK = {s = d05 "dialyysi"} ;
+lin diarioida_VK = {s = c62 "diarioida"} ;
+lin diariointi_NK = {s = d05A "diariointi"} ;
+lin diastolinen_NK = {s = d38 "diastolinen"} ;
+lin diatoninen_NK = {s = d38 "diatoninen"} ;
+lin diatsepaami_NK = {s = d05 "diatsepaami"} ;
+lin didaktiikka_NK = {s = d09A "didaktiikka"} ;
+lin didaktinen_AK = {s = d38 "didaktinen"} ;
+--+ lin didaktisesti_AdvK = {s = c99 "didaktisesti"} ;
+lin dieetti_NK = {s = d05A "dieetti"} ;
+lin diesel_NK = {s = d06 "diesel"} ;
+lin dieselo'ida'_VK = {s = c62 "dieselöidä"} ;
+lin dieselo'inti_NK = {s = d05A "dieselöinti"} ;
+lin dieteetikko_NK = {s = d04A "dieteetikko"} ;
+lin dietetiikka_NK = {s = d09A "dietetiikka"} ;
+lin differentiaali_NK = {s = d05 "differentiaali"} ;
+lin differentioida_VK = {s = c62 "differentioida"} ;
+lin differentiointi_NK = {s = d05A "differentiointi"} ;
+lin differentioitua_VK = {s = c52A "differentioitua"} ;
+lin diffraktio_NK = {s = d03 "diffraktio"} ;
+lin diffuusi_NK = {s = d05 "diffuusi"} ;
+lin diffuusio_NK = {s = d03 "diffuusio"} ;
+lin diftongi_NK = {s = d05 "diftongi"} ;
+lin digata_VK = {s = c73 "digata"} ;
+lin digitaalinen_AK = {s = d38 "digitaalinen"} ;
+--+ lin digitaalisesti_AdvK = {s = c99 "digitaalisesti"} ;
+lin digitaalistaa_VK = {s = c53 "digitaalistaa"} ;
+lin digitaalistua_VK = {s = c52 "digitaalistua"} ;
+lin digitaalisuus_NK = {s = d40 "digitaalisuus"} ;
+lin digitalis_NK = {s = d39 "digitalis"} ;
+lin digitalisoida_VK = {s = c62 "digitalisoida"} ;
+lin digitalisointi_NK = {s = d05A "digitalisointi"} ;
+lin digitoida_VK = {s = c62 "digitoida"} ;
+lin diileri_NK = {s = d06 "diileri"} ;
+lin diiva_NK = {s = d09 "diiva"} ;
+lin diivailla_VK = {s = c67 "diivailla"} ;
+lin diivailu_NK = {s = d02 "diivailu"} ;
+lin diivata_VK = {s = c73 "diivata"} ;
+lin diktaattori_NK = {s = d06 "diktaattori"} ;
+lin diktatorinen_AK = {s = d38 "diktatorinen"} ;
+--+ lin diktatorisesti_AdvK = {s = c99 "diktatorisesti"} ;
+lin diktatorisuus_NK = {s = d40 "diktatorisuus"} ;
+lin diktatuuri_NK = {s = d05 "diktatuuri"} ;
+lin dilemma_NK = {s = d09 "dilemma"} ;
+lin diletantismi_NK = {s = d05 "diletantismi"} ;
+lin diletantti_NK = {s = d05A "diletantti"} ;
+lin dimensio_NK = {s = d03 "dimensio"} ;
+lin diminuendo_NK = {s = d01 "diminuendo"} ;
+lin diminutiivi_NK = {s = d05 "diminutiivi"} ;
+lin diminutiivinen_NK = {s = d38 "diminutiivinen"} ;
+lin dinosaurus_NK = {s = d39 "dinosaurus"} ;
+lin diodi_NK = {s = d05 "diodi"} ;
+lin dioksiini_NK = {s = d05 "dioksiini"} ;
+lin diopteri_NK = {s = d06 "diopteri"} ;
+lin dioptria_NK = {s = d12 "dioptria"} ;
+lin dipata_VK = {s = c73A "dipata"} ;
+lin diploidi_NK = {s = d05 "diploidi"} ;
+lin diploidinen_NK = {s = d38 "diploidinen"} ;
+lin diplomaatti_NK = {s = d05A "diplomaatti"} ;
+lin diplomaattinen_NK = {s = d38 "diplomaattinen"} ;
+lin diplomaattisuus_NK = {s = d40 "diplomaattisuus"} ;
+lin diplomatia_NK = {s = d12 "diplomatia"} ;
+lin diplomi_NK = {s = d05 "diplomi"} ;
+lin dipoli_NK = {s = d05 "dipoli"} ;
+lin dippaus_NK = {s = d39 "dippaus"} ;
+lin dippi_NK = {s = d05A "dippi"} ;
+lin director_cantus_NK = {s = d39 "director cantus"} ;
+lin director_musices_NK = {s = d05 "director musices"} ;
+lin direktiivi_NK = {s = d05 "direktiivi"} ;
+lin direktoraatti_NK = {s = d05A "direktoraatti"} ;
+lin dirhami_NK = {s = d06 "dirhami"} ;
+lin disinformaatio_NK = {s = d03 "disinformaatio"} ;
+lin disjunktiivinen_NK = {s = d38 "disjunktiivinen"} ;
+lin diskantti_NK = {s = d05A "diskantti"} ;
+lin diskata_VK = {s = c73 "diskata"} ;
+lin diskaus_NK = {s = d39 "diskaus"} ;
+lin disketti_NK = {s = d05A "disketti"} ;
+lin disko_NK = {s = d01 "disko"} ;
+lin diskografia_NK = {s = d12 "diskografia"} ;
+lin diskontata_VK = {s = c73A "diskontata"} ;
+lin diskonttaus_NK = {s = d39 "diskonttaus"} ;
+lin diskontto_NK = {s = d01A "diskontto"} ;
+lin diskota_VK = {s = c75 "diskota"} ;
+lin diskoteekki_NK = {s = d05A "diskoteekki"} ;
+lin diskriminaatio_NK = {s = d03 "diskriminaatio"} ;
+lin diskriminoida_VK = {s = c62 "diskriminoida"} ;
+lin diskriminointi_NK = {s = d05A "diskriminointi"} ;
+lin diskurssi_NK = {s = d05 "diskurssi"} ;
+lin diskvalifioida_VK = {s = c62 "diskvalifioida"} ;
+lin diskvalifiointi_NK = {s = d05A "diskvalifiointi"} ;
+lin disponibiliteetti_NK = {s = d05A "disponibiliteetti"} ;
+lin dispositio_NK = {s = d03 "dispositio"} ;
+lin dissidentti_NK = {s = d05A "dissidentti"} ;
+lin dissonanssi_NK = {s = d05 "dissonanssi"} ;
+lin dissonoida_VK = {s = c62 "dissonoida"} ;
+lin distikon_NK = {s = d05 "distikon"} ;
+lin distribuutio_NK = {s = d03 "distribuutio"} ;
+lin diureetti_NK = {s = d05A "diureetti"} ;
+lin diureettinen_NK = {s = d38 "diureettinen"} ;
+lin divaani_NK = {s = d06 "divaani"} ;
+lin divari_NK = {s = d06 "divari"} ;
+lin divisioona_NK = {s = d10 "divisioona"} ;
+lin dixieland_NK = {s = d05 "dixieland"} ;
+lin DNA_AdvK = {s = c99 "DNA"} ;
+lin dobermanni_NK = {s = d05 "dobermanni"} ;
+lin dogmaatikko_NK = {s = d04A "dogmaatikko"} ;
+lin dogmaattinen_AK = {s = d38 "dogmaattinen"} ;
+--+ lin dogmaattisesti_AdvK = {s = c99 "dogmaattisesti"} ;
+lin dogmaattisuus_NK = {s = d40 "dogmaattisuus"} ;
+lin dogmatiikka_NK = {s = d09A "dogmatiikka"} ;
+lin dogmi_NK = {s = d05 "dogmi"} ;
+lin dokata_VK = {s = c73 "dokata"} ;
+lin dokaus_NK = {s = d39 "dokaus"} ;
+lin doktriini_NK = {s = d05 "doktriini"} ;
+lin doku_NK = {s = d01 "doku"} ;
+lin dokumentaarinen_NK = {s = d38 "dokumentaarinen"} ;
+lin dokumentaatio_NK = {s = d03 "dokumentaatio"} ;
+lin dokumentoida_VK = {s = c62 "dokumentoida"} ;
+lin dokumentointi_NK = {s = d05A "dokumentointi"} ;
+lin dokumentti_NK = {s = d05A "dokumentti"} ;
+lin dollari_NK = {s = d06 "dollari"} ;
+lin dolomiitti_NK = {s = d05A "dolomiitti"} ;
+lin dominanssi_NK = {s = d05 "dominanssi"} ;
+lin dominantisti_AdvK = {s = c99 "dominantisti"} ;
+lin dominantti_NK = {s = d05A "dominantti"} ;
+lin dominikaani_NK = {s = d05 "dominikaani"} ;
+lin dominio_NK = {s = d03 "dominio"} ;
+lin domino_NK = {s = d02 "domino"} ;
+lin dominoida_VK = {s = c62 "dominoida"} ;
+lin dominointi_NK = {s = d05A "dominointi"} ;
+--? lin dongarit_NK = {s = d06 "dongarit"} ;
+lin donitsi_NK = {s = d05 "donitsi"} ;
+lin donjuan_NK = {s = d06 "donjuan"} ;
+lin donkata_VK = {s = c73A "donkata"} ;
+lin donkkaus_NK = {s = d39 "donkkaus"} ;
+lin donna_NK = {s = d10 "donna"} ;
+lin doorilainen_NK = {s = d38 "doorilainen"} ;
+lin doping_NK = {s = d05 "doping"} ;
+lin dorka_AK = {s = d10 "dorka"} ;
+--+ lin dorkasti_AdvK = {s = c99 "dorkasti"} ;
+lin dosentti_NK = {s = d05A "dosentti"} ;
+lin dosentuuri_NK = {s = d05 "dosentuuri"} ;
+lin dosetti_NK = {s = d05A "dosetti"} ;
+lin dosimetri_NK = {s = d05 "dosimetri"} ;
+lin doula_NK = {s = d10 "doula"} ;
+lin doupata_VK = {s = c73A "doupata"} ;
+lin draama_NK = {s = d09 "draama"} ;
+lin draamallinen_AK = {s = d38 "draamallinen"} ;
+--+ lin draamallisesti_AdvK = {s = c99 "draamallisesti"} ;
+lin draamallisuus_NK = {s = d40 "draamallisuus"} ;
+lin drag_racing_NK = {s = d05 "drag racing"} ;
+lin dragsteri_NK = {s = d06 "dragsteri"} ;
+lin drakma_NK = {s = d09 "drakma"} ;
+lin dralon_NK = {s = d05 "dralon"} ;
+lin dramaatikko_NK = {s = d04A "dramaatikko"} ;
+lin dramaattinen_AK = {s = d38 "dramaattinen"} ;
+--+ lin dramaattisesti_AdvK = {s = c99 "dramaattisesti"} ;
+lin dramaattisuus_NK = {s = d40 "dramaattisuus"} ;
+lin dramatiikka_NK = {s = d09A "dramatiikka"} ;
+lin dramatisoida_VK = {s = c62 "dramatisoida"} ;
+lin dramatisointi_NK = {s = d05A "dramatisointi"} ;
+lin dramaturgi_NK = {s = d05 "dramaturgi"} ;
+lin dramaturgia_NK = {s = d12 "dramaturgia"} ;
+lin drapeerata_VK = {s = c73 "drapeerata"} ;
+lin drapeeraus_NK = {s = d39 "drapeeraus"} ;
+lin drastinen_AK = {s = d38 "drastinen"} ;
+--+ lin drastisesti_AdvK = {s = c99 "drastisesti"} ;
+lin drastisuus_NK = {s = d40 "drastisuus"} ;
+lin dreeveri_NK = {s = d06 "dreeveri"} ;
+lin dreija_NK = {s = d09 "dreija"} ;
+lin dreijata_VK = {s = c73 "dreijata"} ;
+lin dreijaus_NK = {s = d39 "dreijaus"} ;
+lin drilli_NK = {s = d05 "drilli"} ;
+lin drinkki_NK = {s = d05A "drinkki"} ;
+lin drive_in_NK = {s = d05 "drive-in"} ;
+lin dromedaari_NK = {s = d05 "dromedaari"} ;
+lin druidi_NK = {s = d05 "druidi"} ;
+lin druusi_NK = {s = d05 "druusi"} ;
+lin dualismi_NK = {s = d05 "dualismi"} ;
+lin dualistinen_AK = {s = d38 "dualistinen"} ;
+--+ lin dualistisesti_AdvK = {s = c99 "dualistisesti"} ;
+lin dualistisuus_NK = {s = d40 "dualistisuus"} ;
+lin dubata_VK = {s = c73 "dubata"} ;
+lin dubbata_VK = {s = c73 "dubbata"} ;
+lin dubbaus_NK = {s = d39 "dubbaus"} ;
+lin dublee_NK = {s = d20 "dublee"} ;
+lin dubletti_NK = {s = d05A "dubletti"} ;
+lin duchesse_NK = {s = d08 "duchesse"} ;
+lin duetto_NK = {s = d01A "duetto"} ;
+lin duffeli_NK = {s = d06 "duffeli"} ;
+lin dumpata_VK = {s = c73A "dumpata"} ;
+lin dumping_NK = {s = d05 "dumping"} ;
+lin dumppaus_NK = {s = d39 "dumppaus"} ;
+lin duo_NK = {s = d01 "duo"} ;
+lin dupletti_NK = {s = d05A "dupletti"} ;
+lin duplikaatti_NK = {s = d05A "duplikaatti"} ;
+lin duralumiini_NK = {s = d05 "duralumiini"} ;
+lin durra_NK = {s = d10 "durra"} ;
+lin duuma_NK = {s = d10 "duuma"} ;
+lin duunari_NK = {s = d06 "duunari"} ;
+lin duunata_VK = {s = c73 "duunata"} ;
+lin duunaus_NK = {s = d39 "duunaus"} ;
+lin duuni_NK = {s = d05 "duuni"} ;
+lin duuri_NK = {s = d05 "duuri"} ;
+lin dynaaminen_AK = {s = d38 "dynaaminen"} ;
+--+ lin dynaamisesti_AdvK = {s = c99 "dynaamisesti"} ;
+lin dynaamisuus_NK = {s = d40 "dynaamisuus"} ;
+lin dynamiikka_NK = {s = d09A "dynamiikka"} ;
+lin dynamiitti_NK = {s = d05A "dynamiitti"} ;
+lin dynamo_NK = {s = d02 "dynamo"} ;
+lin dynastia_NK = {s = d12 "dynastia"} ;
+lin dysfasia_NK = {s = d12 "dysfasia"} ;
+lin dyyni_NK = {s = d05 "dyyni"} ;
+lin d_onkki_NK = {s = d05A "džonkki"} ;
+lin do'do'_NK = {s = d01 "dödö"} ;
+lin do'sa'_NK = {s = d10 "dösä"} ;
+lin eau_de_Cologne_NK = {s = d08 "eau de Cologne"} ;
+lin eboniitti_NK = {s = d05A "eboniitti"} ;
+lin ecu_NK = {s = d01 "ecu"} ;
+lin edam_NK = {s = d06 "edam"} ;
+lin edelle_AdvK = {s = c99 "edelle"} ;
+lin edelleen_AdvK = {s = c99 "edelleen"} ;
+lin edellinen_NK = {s = d38 "edellinen"} ;
+lin edellytta'a'_VK = {s = c53A "edellyttää"} ;
+lin edellytys_NK = {s = d39 "edellytys"} ;
+lin edella'_AdvK = {s = c99 "edellä"} ;
+lin edella'_esitetty_NK = {s = d01A "edellä esitetty"} ;
+lin edella'_mainittu_NK = {s = d01A "edellä mainittu"} ;
+lin edelta'_AdvK = {s = c99 "edeltä"} ;
+lin edelta'ja'_NK = {s = d10 "edeltäjä"} ;
+lin edelta'a'_VK = {s = c54A "edeltää"} ;
+lin edelweiss_NK = {s = d05 "edelweiss"} ;
+lin edemma'_AdvK = {s = c99 "edemmä"} ;
+lin edemma'ksi_AdvK = {s = c99 "edemmäksi"} ;
+lin edemma's_AdvK = {s = c99 "edemmäs"} ;
+lin edempa'na'_AdvK = {s = c99 "edempänä"} ;
+lin edempa'a'_AdvK = {s = c99 "edempää"} ;
+lin edes_AdvK = {s = c99 "edes"} ;
+lin edesottamus_NK = {s = d39 "edesottamus"} ;
+lin edessa'_AdvK = {s = c99 "edessä"} ;
+lin edesta'_AdvK = {s = c99 "edestä"} ;
+lin edeta'_VK = {s = c72A "edetä"} ;
+lin edikti_NK = {s = d05 "edikti"} ;
+lin edistyksellinen_AK = {s = d38 "edistyksellinen"} ;
+--+ lin edistyksellisesti_AdvK = {s = c99 "edistyksellisesti"} ;
+lin edistyksellisyys_NK = {s = d40 "edistyksellisyys"} ;
+lin edistyneisyys_NK = {s = d40 "edistyneisyys"} ;
+lin edistys_NK = {s = d39 "edistys"} ;
+lin edistya'_VK = {s = c52 "edistyä"} ;
+lin edista'ja'_NK = {s = d10 "edistäjä"} ;
+lin edista'a'_VK = {s = c53 "edistää"} ;
+lin editio_NK = {s = d03 "editio"} ;
+lin editoida_VK = {s = c62 "editoida"} ;
+lin editointi_NK = {s = d05A "editointi"} ;
+lin editori_NK = {s = d05 "editori"} ;
+lin editse_AdvK = {s = c99 "editse"} ;
+lin edukas_NK = {s = d41A "edukas"} ;
+lin edullinen_AK = {s = d38 "edullinen"} ;
+--+ lin edullisesti_AdvK = {s = c99 "edullisesti"} ;
+lin edullisuus_NK = {s = d40 "edullisuus"} ;
+lin edus_NK = {s = d39 "edus"} ;
+lin edusta_NK = {s = d13 "edusta"} ;
+lin edustaa_VK = {s = c53 "edustaa"} ;
+lin edustaja_NK = {s = d10 "edustaja"} ;
+lin edustajisto_NK = {s = d01 "edustajisto"} ;
+lin edustajuus_NK = {s = d40 "edustajuus"} ;
+lin edustava_AK = {s = d10 "edustava"} ;
+--+ lin edustavasti_AdvK = {s = c99 "edustavasti"} ;
+lin edustavuus_NK = {s = d40 "edustavuus"} ;
+lin edusteilla_AdvK = {s = c99 "edusteilla"} ;
+lin edustua_VK = {s = c52 "edustua"} ;
+lin edustuksellinen_NK = {s = d38 "edustuksellinen"} ;
+lin edustus_NK = {s = d39 "edustus"} ;
+lin edustusto_NK = {s = d01 "edustusto"} ;
+lin eebenholtsi_NK = {s = d05 "eebenholtsi"} ;
+lin eeden_NK = {s = d05 "eeden"} ;
+lin eekkeri_NK = {s = d06 "eekkeri"} ;
+lin eepikko_NK = {s = d04A "eepikko"} ;
+lin eepos_NK = {s = d39 "eepos"} ;
+lin eeppinen_NK = {s = d38 "eeppinen"} ;
+lin eesti_NK = {s = d05 "eesti"} ;
+lin eestila'inen_NK = {s = d38 "eestiläinen"} ;
+lin eetteri_NK = {s = d06 "eetteri"} ;
+lin eettinen_AK = {s = d38 "eettinen"} ;
+--+ lin eettisesti_AdvK = {s = c99 "eettisesti"} ;
+lin eettisyys_NK = {s = d40 "eettisyys"} ;
+lin eetvartti_NK = {s = d05A "eetvartti"} ;
+lin eeva_NK = {s = d09 "eeva"} ;
+lin efekti_NK = {s = d05 "efekti"} ;
+lin efektiivinen_AK = {s = d38 "efektiivinen"} ;
+--+ lin efektiivisesti_AdvK = {s = c99 "efektiivisesti"} ;
+lin efektiivisyys_NK = {s = d40 "efektiivisyys"} ;
+lin ego_NK = {s = d01 "ego"} ;
+lin egoisti_NK = {s = d05 "egoisti"} ;
+lin egoistinen_AK = {s = d38 "egoistinen"} ;
+--+ lin egoistisesti_AdvK = {s = c99 "egoistisesti"} ;
+lin egoistisuus_NK = {s = d40 "egoistisuus"} ;
+lin egosentrinen_AK = {s = d38 "egosentrinen"} ;
+--+ lin egosentrisesti_AdvK = {s = c99 "egosentrisesti"} ;
+lin egosentrisyys_NK = {s = d40 "egosentrisyys"} ;
+lin egyptila'inen_NK = {s = d38 "egyptiläinen"} ;
+lin egyptologi_NK = {s = d05 "egyptologi"} ;
+lin egyptologia_NK = {s = d12 "egyptologia"} ;
+lin egyptologinen_NK = {s = d38 "egyptologinen"} ;
+lin ehdoin_tahdoin_AdvK = {s = c99 "ehdoin tahdoin"} ;
+lin ehdokas_NK = {s = d41A "ehdokas"} ;
+lin ehdokkuus_NK = {s = d40 "ehdokkuus"} ;
+lin ehdollinen_AK = {s = d38 "ehdollinen"} ;
+--+ lin ehdollisesti_AdvK = {s = c99 "ehdollisesti"} ;
+lin ehdollistaa_VK = {s = c53 "ehdollistaa"} ;
+lin ehdollistua_VK = {s = c52 "ehdollistua"} ;
+lin ehdollisuus_NK = {s = d40 "ehdollisuus"} ;
+lin ehdotella_VK = {s = c67A "ehdotella"} ;
+lin ehdotelma_NK = {s = d10 "ehdotelma"} ;
+lin ehdoton_NK = {s = d34A "ehdoton"} ;
+lin ehdottaa_VK = {s = c53A "ehdottaa"} ;
+lin ehdottaja_NK = {s = d10 "ehdottaja"} ;
+lin ehdottomasti_AdvK = {s = c99 "ehdottomasti"} ;
+lin ehdottomuus_NK = {s = d40 "ehdottomuus"} ;
+lin ehdotus_NK = {s = d39 "ehdotus"} ;
+lin ehdyksiin_AdvK = {s = c99 "ehdyksiin"} ;
+lin ehdyksissa'_AdvK = {s = c99 "ehdyksissä"} ;
+lin ehdytta'a'_VK = {s = c53A "ehdyttää"} ;
+lin ehei_AdvK = {s = c99 "ehei"} ;
+lin eheys_NK = {s = d40 "eheys"} ;
+lin eheytta'a'_VK = {s = c53A "eheyttää"} ;
+lin eheytys_NK = {s = d39 "eheytys"} ;
+lin eheytya'_VK = {s = c52A "eheytyä"} ;
+lin ehea'_AK = {s = d15 "eheä"} ;
+--+ lin ehea'sti_AdvK = {s = c99 "eheästi"} ;
+lin ehio'_NK = {s = d03 "ehiö"} ;
+lin ehjyys_NK = {s = d40 "ehjyys"} ;
+lin ehja'_AK = {s = d10 "ehjä"} ;
+--+ lin ehja'sti_AdvK = {s = c99 "ehjästi"} ;
+lin ehken_AdvK = {s = c99 "ehken"} ;
+lin ehka'_AdvK = {s = c99 "ehkä"} ;
+lin ehka'isija'_NK = {s = d12 "ehkäisijä"} ;
+lin ehka'isin_NK = {s = d33 "ehkäisin"} ;
+lin ehka'istya'_VK = {s = c52 "ehkäistyä"} ;
+lin ehka'ista'_VK = {s = c66 "ehkäistä"} ;
+lin ehka'isy_NK = {s = d02 "ehkäisy"} ;
+lin ehommin_AdvK = {s = c99 "ehommin"} ;
+lin ehompi_NK = {s = d16A "ehompi"} ;
+lin ehostaa_VK = {s = c53 "ehostaa"} ;
+lin ehoste_NK = {s = d48 "ehoste"} ;
+lin ehostus_NK = {s = d39 "ehostus"} ;
+lin ehta_NK = {s = d09A "ehta"} ;
+lin ehtimiseen_AdvK = {s = c99 "ehtimiseen"} ;
+lin ehtia'_VK = {s = c61A "ehtiä"} ;
+lin ehto_NK = {s = d01A "ehto"} ;
+lin ehtoinen_AK = {s = d38 "ehtoinen"} ;
+lin ehtoisa_NK = {s = d10 "ehtoisa"} ;
+--+ lin ehtoisesti_AdvK = {s = c99 "ehtoisesti"} ;
+lin ehtoisuus_NK = {s = d40 "ehtoisuus"} ;
+lin ehtoo_NK = {s = d17 "ehtoo"} ;
+lin ehtoollinen_NK = {s = d38 "ehtoollinen"} ;
+lin ehtoolliskalkki_NK = {s = d05A "ehtoolliskalkki"} ;
+lin ehtoollisviini_NK = {s = d05 "ehtoollisviini"} ;
+lin ehtyma'to'n_NK = {s = d34A "ehtymätön"} ;
+lin ehtya'_VK = {s = c52A "ehtyä"} ;
+lin ehyt_NK = {s = d43 "ehyt"} ;
+lin eha'tta'a'_VK = {s = c53A "ehättää"} ;
+lin ei_AdvK = {s = c99 "ei"} ;
+lin eideetikko_NK = {s = d04A "eideetikko"} ;
+lin eideettinen_NK = {s = d38 "eideettinen"} ;
+lin ei_kenenka'a'n_maa_NK = {s = d18 "ei-kenenkään-maa"} ;
+lin eilen_AdvK = {s = c99 "eilen"} ;
+lin eilinen_NK = {s = d38 "eilinen"} ;
+lin eine_NK = {s = d48 "eine"} ;
+lin eines_NK = {s = d39 "eines"} ;
+lin eioo_AdvK = {s = c99 "eioo"} ;
+lin eitta'ma'tta'_AdvK = {s = c99 "eittämättä"} ;
+lin eitta'ma'to'n_NK = {s = d34A "eittämätön"} ;
+lin ejakulaatio_NK = {s = d03 "ejakulaatio"} ;
+lin eka_NK = {s = d09 "eka"} ;
+lin ekliptika_NK = {s = d12 "ekliptika"} ;
+lin ekologi_NK = {s = d05 "ekologi"} ;
+lin ekologia_NK = {s = d12 "ekologia"} ;
+lin ekologinen_AK = {s = d38 "ekologinen"} ;
+--+ lin ekologisesti_AdvK = {s = c99 "ekologisesti"} ;
+lin ekonometria_NK = {s = d12 "ekonometria"} ;
+lin ekonometrinen_AK = {s = d38 "ekonometrinen"} ;
+--+ lin ekonometrisesti_AdvK = {s = c99 "ekonometrisesti"} ;
+lin ekonomi_NK = {s = d05 "ekonomi"} ;
+lin ekonomia_NK = {s = d12 "ekonomia"} ;
+lin ekonominen_AK = {s = d38 "ekonominen"} ;
+--+ lin ekonomisesti_AdvK = {s = c99 "ekonomisesti"} ;
+lin ekonomisti_NK = {s = d05 "ekonomisti"} ;
+lin ekonomisuus_NK = {s = d40 "ekonomisuus"} ;
+lin eksakti_AK = {s = d05 "eksakti"} ;
+--+ lin eksaktisti_AdvK = {s = c99 "eksaktisti"} ;
+lin eksaktius_NK = {s = d40 "eksaktius"} ;
+lin ekseema_NK = {s = d09 "ekseema"} ;
+lin eksegetiikka_NK = {s = d09A "eksegetiikka"} ;
+lin eksemplaari_NK = {s = d05 "eksemplaari"} ;
+lin eksentrinen_AK = {s = d38 "eksentrinen"} ;
+--+ lin eksentrisesti_AdvK = {s = c99 "eksentrisesti"} ;
+lin eksentrisyys_NK = {s = d40 "eksentrisyys"} ;
+lin ekshibitionismi_NK = {s = d05 "ekshibitionismi"} ;
+lin ekshibitionisti_NK = {s = d05 "ekshibitionisti"} ;
+lin ekshibitionistinen_NK = {s = d38 "ekshibitionistinen"} ;
+lin eksisteerata_VK = {s = c73 "eksisteerata"} ;
+lin eksistenssi_NK = {s = d05 "eksistenssi"} ;
+lin eksistentiaalinen_NK = {s = d38 "eksistentiaalinen"} ;
+lin eksistentialismi_NK = {s = d05 "eksistentialismi"} ;
+lin eksistentialisti_NK = {s = d05 "eksistentialisti"} ;
+lin eksistentialistinen_NK = {s = d38 "eksistentialistinen"} ;
+lin eksistoida_VK = {s = c62 "eksistoida"} ;
+lin eksklusiivinen_NK = {s = d38 "eksklusiivinen"} ;
+lin eksklusiivisuus_NK = {s = d40 "eksklusiivisuus"} ;
+lin ekskursio_NK = {s = d03 "ekskursio"} ;
+lin ekskurssi_NK = {s = d05 "ekskurssi"} ;
+lin eksogeeninen_NK = {s = d38 "eksogeeninen"} ;
+lin eksogeenisuus_NK = {s = d40 "eksogeenisuus"} ;
+lin eksoottinen_AK = {s = d38 "eksoottinen"} ;
+--+ lin eksoottisesti_AdvK = {s = c99 "eksoottisesti"} ;
+lin eksoottisuus_NK = {s = d40 "eksoottisuus"} ;
+lin eksotiikka_NK = {s = d09A "eksotiikka"} ;
+lin ekspansiivinen_AK = {s = d38 "ekspansiivinen"} ;
+--+ lin ekspansiivisesti_AdvK = {s = c99 "ekspansiivisesti"} ;
+lin ekspansiivisuus_NK = {s = d40 "ekspansiivisuus"} ;
+lin ekspansio_NK = {s = d03 "ekspansio"} ;
+lin ekspatriaatti_NK = {s = d05A "ekspatriaatti"} ;
+lin eksperimentaalinen_NK = {s = d38 "eksperimentaalinen"} ;
+lin ekspertti_NK = {s = d05A "ekspertti"} ;
+lin eksplisiittinen_AK = {s = d38 "eksplisiittinen"} ;
+--+ lin eksplisiittisesti_AdvK = {s = c99 "eksplisiittisesti"} ;
+lin eksplisiittisyys_NK = {s = d40 "eksplisiittisyys"} ;
+lin eksponentiaalinen_AK = {s = d38 "eksponentiaalinen"} ;
+--+ lin eksponentiaalisesti_AdvK = {s = c99 "eksponentiaalisesti"} ;
+lin eksponentiaalisuus_NK = {s = d40 "eksponentiaalisuus"} ;
+lin eksponentti_NK = {s = d05A "eksponentti"} ;
+lin ekspressiivinen_AK = {s = d38 "ekspressiivinen"} ;
+--+ lin ekspressiivisesti_AdvK = {s = c99 "ekspressiivisesti"} ;
+lin ekspressiivisyys_NK = {s = d40 "ekspressiivisyys"} ;
+lin ekspressionismi_NK = {s = d05 "ekspressionismi"} ;
+lin ekspressionisti_NK = {s = d05 "ekspressionisti"} ;
+lin ekspressionistinen_NK = {s = d38 "ekspressionistinen"} ;
+lin ekstaasi_NK = {s = d05 "ekstaasi"} ;
+lin ekstaattinen_AK = {s = d38 "ekstaattinen"} ;
+--+ lin ekstaattisesti_AdvK = {s = c99 "ekstaattisesti"} ;
+lin ekstaattisuus_NK = {s = d40 "ekstaattisuus"} ;
+lin ekstra_NK = {s = d09 "ekstra"} ;
+lin ekstrakti_NK = {s = d05 "ekstrakti"} ;
+lin ekstranet_NK = {s = d05 "ekstranet"} ;
+lin ekstrovertti_NK = {s = d05A "ekstrovertti"} ;
+lin eksykki_NK = {s = d05A "eksykki"} ;
+lin eksyksiin_AdvK = {s = c99 "eksyksiin"} ;
+lin eksyksissa'_AdvK = {s = c99 "eksyksissä"} ;
+lin eksyksista'_AdvK = {s = c99 "eksyksistä"} ;
+lin eksymys_NK = {s = d39 "eksymys"} ;
+lin eksyma'_NK = {s = d10 "eksymä"} ;
+lin eksytta'a'_VK = {s = c53A "eksyttää"} ;
+lin eksytys_NK = {s = d39 "eksytys"} ;
+lin eksya'_VK = {s = c52 "eksyä"} ;
+lin ekumeeninen_AK = {s = d38 "ekumeeninen"} ;
+--+ lin ekumeenisesti_AdvK = {s = c99 "ekumeenisesti"} ;
+lin ekumeenisuus_NK = {s = d40 "ekumeenisuus"} ;
+lin ekumenia_NK = {s = d12 "ekumenia"} ;
+lin ekvaattori_NK = {s = d06 "ekvaattori"} ;
+lin ekvivalenssi_NK = {s = d05 "ekvivalenssi"} ;
+lin ekvivalentti_NK = {s = d05A "ekvivalentti"} ;
+lin ekvivalenttinen_NK = {s = d38 "ekvivalenttinen"} ;
+lin elanto_NK = {s = d01A "elanto"} ;
+lin elastinen_AK = {s = d38 "elastinen"} ;
+--+ lin elastisesti_AdvK = {s = c99 "elastisesti"} ;
+lin elastisuus_NK = {s = d40 "elastisuus"} ;
+lin elatiivi_NK = {s = d05 "elatiivi"} ;
+lin elatus_NK = {s = d39 "elatus"} ;
+lin eldorado_NK = {s = d01 "eldorado"} ;
+lin ele_NK = {s = d48 "ele"} ;
+lin eleetto'myys_NK = {s = d40 "eleettömyys"} ;
+lin eleetto'ma'sti_AdvK = {s = c99 "eleettömästi"} ;
+lin eleeto'n_NK = {s = d34A "eleetön"} ;
+lin elefantti_NK = {s = d05A "elefantti"} ;
+lin eleganssi_NK = {s = d05 "eleganssi"} ;
+lin elegantisti_AdvK = {s = c99 "elegantisti"} ;
+lin elegantti_NK = {s = d05A "elegantti"} ;
+lin eleganttius_NK = {s = d40 "eleganttius"} ;
+lin elegia_NK = {s = d12 "elegia"} ;
+lin eleginen_AK = {s = d38 "eleginen"} ;
+--+ lin elegisesti_AdvK = {s = c99 "elegisesti"} ;
+lin elegisyys_NK = {s = d40 "elegisyys"} ;
+lin elehdinta'_NK = {s = d09A "elehdintä"} ;
+lin elehtia'_VK = {s = c61A "elehtiä"} ;
+lin eleinen_AK = {s = d38 "eleinen"} ;
+--+ lin eleisesti_AdvK = {s = c99 "eleisesti"} ;
+lin elektrodi_NK = {s = d05 "elektrodi"} ;
+lin elektroenkefalogrammi_NK = {s = d05 "elektroenkefalogrammi"} ;
+lin elektrokardiogrammi_NK = {s = d05 "elektrokardiogrammi"} ;
+lin elektrolyysi_NK = {s = d05 "elektrolyysi"} ;
+lin elektrolyytti_NK = {s = d05A "elektrolyytti"} ;
+lin elektrolyyttinen_AK = {s = d38 "elektrolyyttinen"} ;
+--+ lin elektrolyyttisesti_AdvK = {s = c99 "elektrolyyttisesti"} ;
+lin elektroni_NK = {s = d05 "elektroni"} ;
+lin elektroniikka_NK = {s = d09A "elektroniikka"} ;
+lin elektroninen_AK = {s = d38 "elektroninen"} ;
+--+ lin elektronisesti_AdvK = {s = c99 "elektronisesti"} ;
+lin elektronivoltti_NK = {s = d05A "elektronivoltti"} ;
+lin elella'_VK = {s = c67 "elellä"} ;
+lin elementaarinen_AK = {s = d38 "elementaarinen"} ;
+--+ lin elementaarisesti_AdvK = {s = c99 "elementaarisesti"} ;
+lin elementaarisuus_NK = {s = d40 "elementaarisuus"} ;
+lin elementti_NK = {s = d05A "elementti"} ;
+lin elevaattori_NK = {s = d06 "elevaattori"} ;
+lin eli_AdvK = {s = c99 "eli"} ;
+lin eliitti_NK = {s = d05A "eliitti"} ;
+lin elikko_NK = {s = d04A "elikko"} ;
+lin elikka'_AdvK = {s = c99 "elikkä"} ;
+lin eliksiiri_NK = {s = d05 "eliksiiri"} ;
+lin elimellinen_AK = {s = d38 "elimellinen"} ;
+--+ lin elimellisesti_AdvK = {s = c99 "elimellisesti"} ;
+lin elimellisyys_NK = {s = d40 "elimellisyys"} ;
+lin eliminaatio_NK = {s = d03 "eliminaatio"} ;
+lin eliminoida_VK = {s = c62 "eliminoida"} ;
+lin eliminointi_NK = {s = d05A "eliminointi"} ;
+lin eliminoitua_VK = {s = c52A "eliminoitua"} ;
+lin elimisto'_NK = {s = d01 "elimistö"} ;
+lin elin_NK = {s = d33 "elin"} ;
+lin elinaika_NK = {s = d09A "elinaika"} ;
+lin elinkelpoistaa_VK = {s = c53 "elinkelpoistaa"} ;
+lin elinkelvottomuus_NK = {s = d40 "elinkelvottomuus"} ;
+lin elitismi_NK = {s = d05 "elitismi"} ;
+lin elitistinen_NK = {s = d38 "elitistinen"} ;
+lin elitistisyys_NK = {s = d40 "elitistisyys"} ;
+lin elio'_NK = {s = d03 "eliö"} ;
+lin elio'sto'_NK = {s = d01 "eliöstö"} ;
+lin elje_NK = {s = d48A "elje"} ;
+lin ellei_AdvK = {s = c99 "ellei"} ;
+lin ellipsi_NK = {s = d05 "ellipsi"} ;
+lin elliptinen_NK = {s = d38 "elliptinen"} ;
+lin elliptisyys_NK = {s = d40 "elliptisyys"} ;
+lin ellottaa_VK = {s = c53A "ellottaa"} ;
+lin ellotus_NK = {s = d39 "ellotus"} ;
+lin elo_NK = {s = d01 "elo"} ;
+lin eloisa_AK = {s = d10 "eloisa"} ;
+--+ lin eloisasti_AdvK = {s = c99 "eloisasti"} ;
+lin eloisuus_NK = {s = d40 "eloisuus"} ;
+lin eloksoida_VK = {s = c62 "eloksoida"} ;
+lin eloksointi_NK = {s = d05A "eloksointi"} ;
+lin elollinen_NK = {s = d38 "elollinen"} ;
+lin elollistaa_VK = {s = c53 "elollistaa"} ;
+lin elollisuus_NK = {s = d40 "elollisuus"} ;
+lin eloon_AdvK = {s = c99 "eloon"} ;
+lin elossa_AdvK = {s = c99 "elossa"} ;
+lin elostelija_NK = {s = d12 "elostelija"} ;
+lin elostella_VK = {s = c67 "elostella"} ;
+lin elostelu_NK = {s = d01 "elostelu"} ;
+lin elostua_VK = {s = c52 "elostua"} ;
+lin elostuttaa_VK = {s = c53A "elostuttaa"} ;
+lin eloton_NK = {s = d34A "eloton"} ;
+lin elottomasti_AdvK = {s = c99 "elottomasti"} ;
+lin elottomuus_NK = {s = d40 "elottomuus"} ;
+lin elpya'_VK = {s = c52A "elpyä"} ;
+lin eltaantua_VK = {s = c52A "eltaantua"} ;
+lin elukka_NK = {s = d14A "elukka"} ;
+lin elvistella'_VK = {s = c67 "elvistellä"} ;
+lin elvistely_NK = {s = d02 "elvistely"} ;
+lin elvyke_NK = {s = d48A "elvyke"} ;
+lin elvytta'a'_VK = {s = c53A "elvyttää"} ;
+lin elvytys_NK = {s = d39 "elvytys"} ;
+lin ela'hdytta'a'_VK = {s = c53A "elähdyttää"} ;
+lin ela'hta'nyt_NK = {s = d47 "elähtänyt"} ;
+lin ela'imellinen_AK = {s = d38 "eläimellinen"} ;
+--+ lin ela'imellisesti_AdvK = {s = c99 "eläimellisesti"} ;
+lin ela'imellisyys_NK = {s = d40 "eläimellisyys"} ;
+lin ela'imisto'_NK = {s = d01 "eläimistö"} ;
+lin ela'in_NK = {s = d33 "eläin"} ;
+lin ela'ja'_NK = {s = d10 "eläjä"} ;
+lin ela'ke_NK = {s = d48A "eläke"} ;
+lin ela'kela'inen_NK = {s = d38 "eläkeläinen"} ;
+lin ela'ko'itya'_VK = {s = c52A "eläköityä"} ;
+lin ela'ko'o'n_AdvK = {s = c99 "eläköön"} ;
+lin ela'mykseka's_NK = {s = d41A "elämyksekäs"} ;
+lin ela'myksellinen_AK = {s = d38 "elämyksellinen"} ;
+--+ lin ela'myksellisesti_AdvK = {s = c99 "elämyksellisesti"} ;
+lin ela'myksellisyys_NK = {s = d40 "elämyksellisyys"} ;
+lin ela'mys_NK = {s = d39 "elämys"} ;
+lin ela'ma'_NK = {s = d10 "elämä"} ;
+lin ela'ma'kerturi_NK = {s = d06 "elämäkerturi"} ;
+lin ela'ma'naika_NK = {s = d09A "elämänaika"} ;
+lin ela'ma'nkatsomuksellinen_AK = {s = d38 "elämänkatsomuksellinen"} ;
+--+ lin ela'ma'nkatsomuksellisesti_AdvK = {s = c99 "elämänkatsomuksellisesti"} ;
+lin ela'mo'ida'_VK = {s = c62 "elämöidä"} ;
+lin ela'mo'inti_NK = {s = d05A "elämöinti"} ;
+lin ela'tella'_VK = {s = c67A "elätellä"} ;
+lin ela'tti_NK = {s = d05A "elätti"} ;
+lin ela'tta'ja'_NK = {s = d10 "elättäjä"} ;
+lin ela'tta'a'_VK = {s = c53A "elättää"} ;
+lin ela'vyys_NK = {s = d40 "elävyys"} ;
+lin ela'va'_AK = {s = d10 "elävä"} ;
+lin ela'va'lta'_AdvK = {s = c99 "elävältä"} ;
+--+ lin ela'va'sti_AdvK = {s = c99 "elävästi"} ;
+lin ela'vo'itta'a'_VK = {s = c53A "elävöittää"} ;
+lin ela'vo'itya'_VK = {s = c52A "elävöityä"} ;
+lin ela'ymys_NK = {s = d39 "eläymys"} ;
+lin ela'ytya'_VK = {s = c52A "eläytyä"} ;
+lin ela'a'_VK = {s = c53 "elää"} ;
+lin emakko_NK = {s = d04A "emakko"} ;
+lin emali_NK = {s = d06 "emali"} ;
+lin emaloida_VK = {s = c62 "emaloida"} ;
+lin emalointi_NK = {s = d05A "emalointi"} ;
+lin emansipaatio_NK = {s = d03 "emansipaatio"} ;
+lin emansipoida_VK = {s = c62 "emansipoida"} ;
+lin emansipoitua_VK = {s = c52A "emansipoitua"} ;
+lin embargo_NK = {s = d01 "embargo"} ;
+lin embleemi_NK = {s = d05 "embleemi"} ;
+lin embryo_NK = {s = d03 "embryo"} ;
+lin embryologi_NK = {s = d05 "embryologi"} ;
+lin embryologia_NK = {s = d12 "embryologia"} ;
+lin embryologinen_AK = {s = d38 "embryologinen"} ;
+--+ lin embryologisesti_AdvK = {s = c99 "embryologisesti"} ;
+lin emerita_NK = {s = d09 "emerita"} ;
+lin emeritus_NK = {s = d39 "emeritus"} ;
+lin emi_NK = {s = d05 "emi"} ;
+lin emigrantti_NK = {s = d05A "emigrantti"} ;
+lin emigroitua_VK = {s = c52A "emigroitua"} ;
+lin emiiri_NK = {s = d06 "emiiri"} ;
+lin eminenssi_NK = {s = d05 "eminenssi"} ;
+lin emintima'_NK = {s = d10 "emintimä"} ;
+lin emissio_NK = {s = d03 "emissio"} ;
+lin emittoida_VK = {s = c62 "emittoida"} ;
+lin emittointi_NK = {s = d05A "emittointi"} ;
+lin emio'_NK = {s = d03 "emiö"} ;
+lin emmentaali_NK = {s = d05 "emmentaali"} ;
+lin emmental_NK = {s = d05 "emmental"} ;
+lin emo_NK = {s = d01 "emo"} ;
+lin emootio_NK = {s = d03 "emootio"} ;
+lin emotionaalinen_AK = {s = d38 "emotionaalinen"} ;
+--+ lin emotionaalisesti_AdvK = {s = c99 "emotionaalisesti"} ;
+lin emotionaalisuus_NK = {s = d40 "emotionaalisuus"} ;
+lin empaattinen_AK = {s = d38 "empaattinen"} ;
+--+ lin empaattisesti_AdvK = {s = c99 "empaattisesti"} ;
+lin empaattisuus_NK = {s = d40 "empaattisuus"} ;
+lin empatia_NK = {s = d12 "empatia"} ;
+lin empiiri_NK = {s = d06 "empiiri"} ;
+lin empiirikko_NK = {s = d04A "empiirikko"} ;
+lin empiirinen_AK = {s = d38 "empiirinen"} ;
+--+ lin empiirisesti_AdvK = {s = c99 "empiirisesti"} ;
+lin empiirisyys_NK = {s = d40 "empiirisyys"} ;
+lin empire_NK = {s = d08 "empire"} ;
+lin empiria_NK = {s = d12 "empiria"} ;
+lin empirismi_NK = {s = d05 "empirismi"} ;
+lin empiristi_NK = {s = d05 "empiristi"} ;
+lin empiristinen_NK = {s = d38 "empiristinen"} ;
+lin empia'_VK = {s = c61A "empiä"} ;
+lin emu_NK = {s = d01 "emu"} ;
+lin emulaattori_NK = {s = d06 "emulaattori"} ;
+lin emuloida_VK = {s = c62 "emuloida"} ;
+lin emulointi_NK = {s = d05A "emulointi"} ;
+lin emulsio_NK = {s = d03 "emulsio"} ;
+lin ema'_NK = {s = d10 "emä"} ;
+lin ema'kki_NK = {s = d05A "emäkki"} ;
+lin ema'ksinen_AK = {s = d38 "emäksinen"} ;
+--+ lin ema'ksisesti_AdvK = {s = c99 "emäksisesti"} ;
+lin ema'ksisyys_NK = {s = d40 "emäksisyys"} ;
+lin ema'nnyys_NK = {s = d40 "emännyys"} ;
+lin ema'nno'ida'_VK = {s = c68 "emännöidä"} ;
+lin ema'nno'inti_NK = {s = d05A "emännöinti"} ;
+lin ema'nno'itsija'_NK = {s = d12 "emännöitsijä"} ;
+lin ema'nta'_NK = {s = d10A "emäntä"} ;
+lin ema's_NK = {s = d39 "emäs"} ;
+lin ema'tin_NK = {s = d33A "emätin"} ;
+lin enchilada_NK = {s = d09 "enchilada"} ;
+lin endeeminen_AK = {s = d38 "endeeminen"} ;
+--+ lin endeemisesti_AdvK = {s = c99 "endeemisesti"} ;
+lin endeemisyys_NK = {s = d40 "endeemisyys"} ;
+lin endiivi_NK = {s = d05 "endiivi"} ;
+lin endogeeninen_NK = {s = d38 "endogeeninen"} ;
+lin endogeenisuus_NK = {s = d40 "endogeenisuus"} ;
+lin endokriininen_NK = {s = d38 "endokriininen"} ;
+lin endokrinologia_NK = {s = d12 "endokrinologia"} ;
+lin endokrinologinen_AK = {s = d38 "endokrinologinen"} ;
+--+ lin endokrinologisesti_AdvK = {s = c99 "endokrinologisesti"} ;
+lin endometrioosi_NK = {s = d05 "endometrioosi"} ;
+lin endorfiini_NK = {s = d05 "endorfiini"} ;
+lin endoskooppi_NK = {s = d05A "endoskooppi"} ;
+lin endoskopia_NK = {s = d12 "endoskopia"} ;
+lin enemmisto'_NK = {s = d01 "enemmistö"} ;
+lin enemmisto'inen_NK = {s = d38 "enemmistöinen"} ;
+lin enemmisto'la'inen_NK = {s = d38 "enemmistöläinen"} ;
+lin enemmyys_NK = {s = d40 "enemmyys"} ;
+lin enemma'lti_AdvK = {s = c99 "enemmälti"} ;
+lin enemma'n_AdvK = {s = c99 "enemmän"} ;
+lin enempi_NK = {s = d16A "enempi"} ;
+lin enempa'a'_AdvK = {s = c99 "enempää"} ;
+lin eneneva'_AK = {s = d10 "enenevä"} ;
+--+ lin eneneva'sti_AdvK = {s = c99 "enenevästi"} ;
+lin enennys_NK = {s = d39 "enennys"} ;
+lin enentya'_VK = {s = c52A "enentyä"} ;
+lin enenta'a'_VK = {s = c54A "enentää"} ;
+lin energia_NK = {s = d12 "energia"} ;
+lin energiainen_NK = {s = d38 "energiainen"} ;
+lin energinen_AK = {s = d38 "energinen"} ;
+--+ lin energisesti_AdvK = {s = c99 "energisesti"} ;
+lin energisyys_NK = {s = d40 "energisyys"} ;
+lin eneta'_VK = {s = c72 "enetä"} ;
+lin engelsmanni_NK = {s = d05 "engelsmanni"} ;
+lin englanninnos_NK = {s = d39 "englanninnos"} ;
+lin englannintaa_VK = {s = c54A "englannintaa"} ;
+lin englanti_NK = {s = d05A "englanti"} ;
+lin englantilaisuus_NK = {s = d40 "englantilaisuus"} ;
+lin engrammi_NK = {s = d05 "engrammi"} ;
+lin enimmin_AdvK = {s = c99 "enimmin"} ;
+lin enimmiten_AdvK = {s = c99 "enimmiten"} ;
+lin enimma'isaika_NK = {s = d09A "enimmäisaika"} ;
+lin enimma'israja_NK = {s = d09 "enimmäisraja"} ;
+lin enimma'ista'a'_VK = {s = c53 "enimmäistää"} ;
+lin enimma'kseen_AdvK = {s = c99 "enimmäkseen"} ;
+lin enimma'lti_AdvK = {s = c99 "enimmälti"} ;
+lin enimma'lta'a'n_AdvK = {s = c99 "enimmältään"} ;
+lin enimma'n_AdvK = {s = c99 "enimmän"} ;
+lin enin_NK = {s = d36 "enin"} ;
+lin eninta'a'n_AdvK = {s = c99 "enintään"} ;
+lin eniten_AdvK = {s = c99 "eniten"} ;
+lin enkeli_NK = {s = d06 "enkeli"} ;
+lin ennakko_NK = {s = d04A "ennakko"} ;
+lin ennakkoilmoittautuminen_NK = {s = d38 "ennakkoilmoittautuminen"} ;
+--+ lin ennakkoluuloisesti_AdvK = {s = c99 "ennakkoluuloisesti"} ;
+lin ennakkoluuloton_NK = {s = d34A "ennakkoluuloton"} ;
+lin ennakkoluulottomasti_AdvK = {s = c99 "ennakkoluulottomasti"} ;
+lin ennakkoluulottomuus_NK = {s = d40 "ennakkoluulottomuus"} ;
+lin ennakkoon_AdvK = {s = c99 "ennakkoon"} ;
+lin ennakkosa'a'sta'minen_NK = {s = d38 "ennakkosäästäminen"} ;
+lin ennakoida_VK = {s = c62 "ennakoida"} ;
+lin ennakoimaton_NK = {s = d34A "ennakoimaton"} ;
+lin ennakointi_NK = {s = d05A "ennakointi"} ;
+lin ennakolta_AdvK = {s = c99 "ennakolta"} ;
+lin ennakonkanto_NK = {s = d01A "ennakonkanto"} ;
+lin ennallaan_AdvK = {s = c99 "ennallaan"} ;
+lin ennalleen_AdvK = {s = c99 "ennalleen"} ;
+lin ennallistaa_VK = {s = c53 "ennallistaa"} ;
+lin ennallistus_NK = {s = d39 "ennallistus"} ;
+lin ennalta_AdvK = {s = c99 "ennalta"} ;
+lin ennalta_arvattavuus_NK = {s = d40 "ennalta-arvattavuus"} ;
+lin ennalta_ehka'iseva'_NK = {s = d10 "ennalta ehkäisevä"} ;
+lin enne_NK = {s = d48A "enne"} ;
+lin ennemmin_AdvK = {s = c99 "ennemmin"} ;
+lin ennen_AdvK = {s = c99 "ennen"} ;
+lin ennen_aikaan_AdvK = {s = c99 "ennen aikaan"} ;
+lin ennenaikaisesti_AdvK = {s = c99 "ennenaikaisesti"} ;
+lin ennen_kaikkea_AdvK = {s = c99 "ennen kaikkea"} ;
+lin ennen_kuin_AdvK = {s = c99 "ennen kuin"} ;
+lin ennen_muinoin_AdvK = {s = c99 "ennen muinoin"} ;
+lin ennenna'kema'tto'ma'sti_AdvK = {s = c99 "ennennäkemättömästi"} ;
+lin ennen_pitka'a'_AdvK = {s = c99 "ennen pitkää"} ;
+lin ennen_vanhaan_AdvK = {s = c99 "ennen vanhaan"} ;
+lin ennesta'a'n_AdvK = {s = c99 "ennestään"} ;
+lin ennustaa_VK = {s = c53 "ennustaa"} ;
+lin ennustaja_NK = {s = d10 "ennustaja"} ;
+lin ennustavuus_NK = {s = d40 "ennustavuus"} ;
+lin ennuste_NK = {s = d48 "ennuste"} ;
+lin ennusteellinen_NK = {s = d38 "ennusteellinen"} ;
+lin ennustella_VK = {s = c67 "ennustella"} ;
+lin ennustus_NK = {s = d39 "ennustus"} ;
+lin enna'tta'a'_VK = {s = c53A "ennättää"} ;
+lin enna'tyksellinen_AK = {s = d38 "ennätyksellinen"} ;
+--+ lin enna'tyksellisesti_AdvK = {s = c99 "ennätyksellisesti"} ;
+lin enna'tyksellisyys_NK = {s = d40 "ennätyksellisyys"} ;
+lin enna'tys_NK = {s = d39 "ennätys"} ;
+lin enna'tysaika_NK = {s = d09A "ennätysaika"} ;
+lin enna'tysma'inen_AK = {s = d38 "ennätysmäinen"} ;
+--+ lin enna'tysma'isesti_AdvK = {s = c99 "ennätysmäisesti"} ;
+lin eno_1_NK = {s = d01 "eno"} ;
+lin eno_2_NK = {s = d01 "eno"} ;
+lin ensemble_NK = {s = d08 "ensemble"} ;
+lin ensi_AdvK = {s = c99 "ensi"} ;
+lin ensiesiintyminen_NK = {s = d38 "ensiesiintyminen"} ;
+lin ensikertalainen_NK = {s = d38 "ensikertalainen"} ;
+lin ensiksi_AdvK = {s = c99 "ensiksi"} ;
+lin ensi_ka'dessa'_AdvK = {s = c99 "ensi kädessä"} ;
+--+ lin ensiluokkaisesti_AdvK = {s = c99 "ensiluokkaisesti"} ;
+lin ensimma'inen_NK = {s = d38 "ensimmäinen"} ;
+lin ensimma'iseksi_AdvK = {s = c99 "ensimmäiseksi"} ;
+lin ensimma'lta'_AdvK = {s = c99 "ensimmältä"} ;
+lin ensin_AdvK = {s = c99 "ensin"} ;
+lin ensinka'a'n_AdvK = {s = c99 "ensinkään"} ;
+lin ensin_mainittu_NK = {s = d01A "ensin mainittu"} ;
+lin ensinna'_AdvK = {s = c99 "ensinnä"} ;
+lin ensipa'iva'nkuori_NK = {s = d26 "ensipäivänkuori"} ;
+--+ lin ensisijaisesti_AdvK = {s = c99 "ensisijaisesti"} ;
+lin ensisijaistaa_VK = {s = c53 "ensisijaistaa"} ;
+lin ensi_sijassa_AdvK = {s = c99 "ensi sijassa"} ;
+lin ensyklopedia_NK = {s = d12 "ensyklopedia"} ;
+lin enteellinen_AK = {s = d38 "enteellinen"} ;
+--+ lin enteellisesti_AdvK = {s = c99 "enteellisesti"} ;
+lin enteellisyys_NK = {s = d40 "enteellisyys"} ;
+lin enteilla'_VK = {s = c67 "enteillä"} ;
+lin enteily_NK = {s = d02 "enteily"} ;
+lin enteinen_NK = {s = d38 "enteinen"} ;
+lin entinen_NK = {s = d38 "entinen"} ;
+lin entisaika_NK = {s = d09A "entisaika"} ;
+lin entiselleen_AdvK = {s = c99 "entiselleen"} ;
+lin entisella'a'n_AdvK = {s = c99 "entisellään"} ;
+lin entisenlainen_NK = {s = d38 "entisenlainen"} ;
+lin entisensa'_AdvK = {s = c99 "entisensä"} ;
+lin entisesta'a'n_AdvK = {s = c99 "entisestään"} ;
+lin entistys_NK = {s = d39 "entistys"} ;
+lin entista'a'_VK = {s = c53 "entistää"} ;
+lin entisyys_NK = {s = d40 "entisyys"} ;
+lin entiso'ida'_VK = {s = c62 "entisöidä"} ;
+lin entiteetti_NK = {s = d05A "entiteetti"} ;
+lin entrata_1_VK = {s = c73 "entrata"} ;
+lin entrata_2_VK = {s = c73 "entrata"} ;
+lin entraus_1_NK = {s = d39 "entraus"} ;
+lin entraus_2_NK = {s = d39 "entraus"} ;
+lin entrec_te_NK = {s = d08 "entrecôte"} ;
+lin entropia_NK = {s = d12 "entropia"} ;
+lin entsyymi_NK = {s = d06 "entsyymi"} ;
+lin entusiasmi_NK = {s = d05 "entusiasmi"} ;
+lin entusiasti_NK = {s = d05 "entusiasti"} ;
+lin entusiastinen_NK = {s = d38 "entusiastinen"} ;
+lin entuudestaan_AdvK = {s = c99 "entuudestaan"} ;
+lin enta'_AdvK = {s = c99 "entä"} ;
+lin enta'pa'_AdvK = {s = c99 "entäpä"} ;
+lin enta'pa's_AdvK = {s = c99 "entäpäs"} ;
+lin enta's_AdvK = {s = c99 "entäs"} ;
+lin enta'a'_VK = {s = c55A "entää"} ;
+lin ena'a'_AdvK = {s = c99 "enää"} ;
+lin epeli_NK = {s = d06 "epeli"} ;
+lin epideeminen_NK = {s = d38 "epideeminen"} ;
+lin epidemia_NK = {s = d12 "epidemia"} ;
+lin epidemiologi_NK = {s = d05 "epidemiologi"} ;
+lin epidemiologia_NK = {s = d12 "epidemiologia"} ;
+lin epidemiologinen_AK = {s = d38 "epidemiologinen"} ;
+--+ lin epidemiologisesti_AdvK = {s = c99 "epidemiologisesti"} ;
+lin epidermi_NK = {s = d05 "epidermi"} ;
+lin epigrammi_NK = {s = d05 "epigrammi"} ;
+lin epiikka_NK = {s = d14A "epiikka"} ;
+lin epikriisi_NK = {s = d05 "epikriisi"} ;
+lin epikurolainen_NK = {s = d38 "epikurolainen"} ;
+lin epikurolaisuus_NK = {s = d40 "epikurolaisuus"} ;
+lin epilepsia_NK = {s = d12 "epilepsia"} ;
+lin epileptikko_NK = {s = d04A "epileptikko"} ;
+lin epileptinen_NK = {s = d38 "epileptinen"} ;
+lin epilogi_NK = {s = d05 "epilogi"} ;
+lin episkopaalinen_NK = {s = d38 "episkopaalinen"} ;
+lin episodi_NK = {s = d05 "episodi"} ;
+lin epistola_NK = {s = d12 "epistola"} ;
+lin epiteeli_NK = {s = d05 "epiteeli"} ;
+lin epiteetti_NK = {s = d05A "epiteetti"} ;
+lin epoksimaali_NK = {s = d05 "epoksimaali"} ;
+lin epoletti_NK = {s = d05A "epoletti"} ;
+lin epookki_NK = {s = d05A "epookki"} ;
+lin epuu_NK = {s = d17 "epuu"} ;
+lin epuuttaa_VK = {s = c53A "epuuttaa"} ;
+--+ lin epa'historiallisesti_AdvK = {s = c99 "epähistoriallisesti"} ;
+lin epa'historiallisuus_NK = {s = d40 "epähistoriallisuus"} ;
+lin epa'huomiossa_AdvK = {s = c99 "epähuomiossa"} ;
+lin epa'ilema'tta'_AdvK = {s = c99 "epäilemättä"} ;
+lin epa'ilevyys_NK = {s = d40 "epäilevyys"} ;
+lin epa'ileva'_AK = {s = d10 "epäilevä"} ;
+lin epa'ileva'inen_NK = {s = d38 "epäileväinen"} ;
+--+ lin epa'ileva'sti_AdvK = {s = c99 "epäilevästi"} ;
+lin epa'ilija'_NK = {s = d12 "epäilijä"} ;
+lin epa'illa'_VK = {s = c67 "epäillä"} ;
+lin epa'ilta'va'_NK = {s = d10 "epäiltävä"} ;
+lin epa'ily_NK = {s = d02 "epäily"} ;
+lin epa'ilys_NK = {s = d39 "epäilys"} ;
+lin epa'ilytta'vyys_NK = {s = d40 "epäilyttävyys"} ;
+lin epa'ilytta'va'_AK = {s = d10 "epäilyttävä"} ;
+--+ lin epa'ilytta'va'sti_AdvK = {s = c99 "epäilyttävästi"} ;
+lin epa'ilytta'a'_VK = {s = c53A "epäilyttää"} ;
+lin epa'kelpo_NK = {s = d01A "epäkelpo"} ;
+--+ lin epa'keskisesti_AdvK = {s = c99 "epäkeskisesti"} ;
+lin epa'keskisyys_NK = {s = d40 "epäkeskisyys"} ;
+lin epa'kesko_NK = {s = d01 "epäkesko"} ;
+--+ lin epa'kiitollisesti_AdvK = {s = c99 "epäkiitollisesti"} ;
+lin epa'kohta_NK = {s = d10A "epäkohta"} ;
+lin epa'ka's_NK = {s = d41A "epäkäs"} ;
+--+ lin epa'luuloisesti_AdvK = {s = c99 "epäluuloisesti"} ;
+lin epa'ma'a'ra'istya'_VK = {s = c52 "epämääräistyä"} ;
+lin epa'onnistuja_NK = {s = d10 "epäonnistuja"} ;
+--+ lin epa'ortodoksisesti_AdvK = {s = c99 "epäortodoksisesti"} ;
+--+ lin epa'pa'teva'sti_AdvK = {s = c99 "epäpätevästi"} ;
+lin epa'ro'ida'_VK = {s = c62 "epäröidä"} ;
+lin epa'ro'inti_NK = {s = d05A "epäröinti"} ;
+--+ lin epa'sointuisesti_AdvK = {s = c99 "epäsointuisesti"} ;
+lin epa'sointuisuus_NK = {s = d40 "epäsointuisuus"} ;
+lin epa'sopuinen_AK = {s = d38 "epäsopuinen"} ;
+--+ lin epa'sopuisesti_AdvK = {s = c99 "epäsopuisesti"} ;
+--+ lin epa'suhtaisesti_AdvK = {s = c99 "epäsuhtaisesti"} ;
+lin epa'sa'a'tyisyys_NK = {s = d40 "epäsäätyisyys"} ;
+--+ lin epa'todenna'ko'isesti_AdvK = {s = c99 "epätodennäköisesti"} ;
+lin epa'toivoinen_AK = {s = d38 "epätoivoinen"} ;
+--+ lin epa'toivoisesti_AdvK = {s = c99 "epätoivoisesti"} ;
+lin epa'toivoissaan_AdvK = {s = c99 "epätoivoissaan"} ;
+lin epa'toivoisuus_NK = {s = d40 "epätoivoisuus"} ;
+lin epa'tyydytta'vyys_NK = {s = d40 "epätyydyttävyys"} ;
+lin epa'urheilijamainen_AK = {s = d38 "epäurheilijamainen"} ;
+--+ lin epa'urheilijamaisesti_AdvK = {s = c99 "epäurheilijamaisesti"} ;
+lin epa'urheilijamaisuus_NK = {s = d40 "epäurheilijamaisuus"} ;
+--+ lin epa'uskoisesti_AdvK = {s = c99 "epäuskoisesti"} ;
+lin epa'vakainen_AK = {s = d38 "epävakainen"} ;
+--+ lin epa'vakaisesti_AdvK = {s = c99 "epävakaisesti"} ;
+lin epa'vakaisuus_NK = {s = d40 "epävakaisuus"} ;
+lin epa'vakaus_NK = {s = d40 "epävakaus"} ;
+lin epa'vireeseen_AdvK = {s = c99 "epävireeseen"} ;
+lin epa'vireessa'_AdvK = {s = c99 "epävireessä"} ;
+--+ lin epa'vireisesti_AdvK = {s = c99 "epävireisesti"} ;
+lin epa'ys_NK = {s = d39 "epäys"} ;
+lin epa'a'ma'tto'myys_NK = {s = d40 "epäämättömyys"} ;
+lin epa'a'ma'tto'ma'sti_AdvK = {s = c99 "epäämättömästi"} ;
+lin epa'a'ma'to'n_NK = {s = d34A "epäämätön"} ;
+lin erakko_NK = {s = d04A "erakko"} ;
+lin erakoitua_VK = {s = c52A "erakoitua"} ;
+lin eranto_NK = {s = d01A "eranto"} ;
+lin erehdys_NK = {s = d39 "erehdys"} ;
+lin erehdytta'a'_VK = {s = c53A "erehdyttää"} ;
+lin erehtyma'tto'myys_NK = {s = d40 "erehtymättömyys"} ;
+lin erehtyma'to'n_NK = {s = d34A "erehtymätön"} ;
+lin erehtyva'inen_NK = {s = d38 "erehtyväinen"} ;
+lin erehtyva'isyys_NK = {s = d40 "erehtyväisyys"} ;
+lin erehtya'_VK = {s = c52A "erehtyä"} ;
+lin erektio_NK = {s = d03 "erektio"} ;
+lin ergometri_NK = {s = d05 "ergometri"} ;
+lin ergonomia_NK = {s = d12 "ergonomia"} ;
+lin ergonominen_AK = {s = d38 "ergonominen"} ;
+--+ lin ergonomisesti_AdvK = {s = c99 "ergonomisesti"} ;
+lin ergonomisuus_NK = {s = d40 "ergonomisuus"} ;
+lin erhe_NK = {s = d48 "erhe"} ;
+lin erheellinen_AK = {s = d38 "erheellinen"} ;
+--+ lin erheellisesti_AdvK = {s = c99 "erheellisesti"} ;
+lin erheellisyys_NK = {s = d40 "erheellisyys"} ;
+lin eri_AdvK = {s = c99 "eri"} ;
+--+ lin eriaikaisesti_AdvK = {s = c99 "eriaikaisesti"} ;
+lin eriarvoistaa_VK = {s = c53 "eriarvoistaa"} ;
+lin eriarvoistua_VK = {s = c52 "eriarvoistua"} ;
+--+ lin eriasteisesti_AdvK = {s = c99 "eriasteisesti"} ;
+lin erikoinen_AK = {s = d38 "erikoinen"} ;
+--+ lin erikoisesti_AdvK = {s = c99 "erikoisesti"} ;
+--+ lin erikoislaatuisesti_AdvK = {s = c99 "erikoislaatuisesti"} ;
+lin erikoistaa_VK = {s = c53 "erikoistaa"} ;
+lin erikoistua_VK = {s = c52 "erikoistua"} ;
+lin erikoisuus_NK = {s = d40 "erikoisuus"} ;
+lin erikokoisuus_NK = {s = d40 "erikokoisuus"} ;
+lin erikorkuisuus_NK = {s = d40 "erikorkuisuus"} ;
+lin erikseen_AdvK = {s = c99 "erikseen"} ;
+lin erilaistaa_VK = {s = c53 "erilaistaa"} ;
+lin erilaistua_VK = {s = c52 "erilaistua"} ;
+lin erilaisuus_NK = {s = d40 "erilaisuus"} ;
+lin erilleen_AdvK = {s = c99 "erilleen"} ;
+lin erillinen_NK = {s = d38 "erillinen"} ;
+lin erillisyys_NK = {s = d40 "erillisyys"} ;
+lin erilla'a'n_AdvK = {s = c99 "erillään"} ;
+lin eriluonteisuus_NK = {s = d40 "eriluonteisuus"} ;
+--+ lin erimielisesti_AdvK = {s = c99 "erimielisesti"} ;
+lin erimunaisuus_NK = {s = d40 "erimunaisuus"} ;
+--+ lin erimuotoisesti_AdvK = {s = c99 "erimuotoisesti"} ;
+lin erinimisyys_NK = {s = d40 "erinimisyys"} ;
+lin erinomainen_AK = {s = d38 "erinomainen"} ;
+--+ lin erinomaisesti_AdvK = {s = c99 "erinomaisesti"} ;
+lin erinomaisuus_NK = {s = d40 "erinomaisuus"} ;
+lin erina'inen_NK = {s = d38 "erinäinen"} ;
+lin eriparisuus_NK = {s = d40 "eriparisuus"} ;
+lin eriperinta'inen_NK = {s = d38 "eriperintäinen"} ;
+lin eripituisuus_NK = {s = d40 "eripituisuus"} ;
+lin eripura_NK = {s = d10 "eripura"} ;
+lin eripurainen_AK = {s = d38 "eripurainen"} ;
+--+ lin eripuraisesti_AdvK = {s = c99 "eripuraisesti"} ;
+lin eripuraisuus_NK = {s = d40 "eripuraisuus"} ;
+lin eriseurainen_NK = {s = d38 "eriseurainen"} ;
+lin eriseuraisuus_NK = {s = d40 "eriseuraisuus"} ;
+lin erisivuisuus_NK = {s = d40 "erisivuisuus"} ;
+lin eriskummainen_NK = {s = d38 "eriskummainen"} ;
+lin eriste_NK = {s = d48 "eriste"} ;
+lin eristeinen_NK = {s = d38 "eristeinen"} ;
+lin eristin_NK = {s = d33 "eristin"} ;
+lin eristyneisyys_NK = {s = d40 "eristyneisyys"} ;
+lin eristys_NK = {s = d39 "eristys"} ;
+lin eristya'_VK = {s = c52 "eristyä"} ;
+lin erista'ja'_NK = {s = d10 "eristäjä"} ;
+lin erista'ytya'_VK = {s = c52A "eristäytyä"} ;
+lin erista'a'_VK = {s = c53 "eristää"} ;
+lin erisuuruisuus_NK = {s = d40 "erisuuruisuus"} ;
+lin erisa'a'tyisyys_NK = {s = d40 "erisäätyisyys"} ;
+--+ lin eritasoisesti_AdvK = {s = c99 "eritasoisesti"} ;
+lin eritasoisuus_NK = {s = d40 "eritasoisuus"} ;
+lin erite_NK = {s = d48A "erite"} ;
+lin eritella'_VK = {s = c67A "eritellä"} ;
+lin eritelma'_NK = {s = d10 "eritelmä"} ;
+lin eritoten_AdvK = {s = c99 "eritoten"} ;
+lin erittelija'_NK = {s = d12 "erittelijä"} ;
+lin erittely_NK = {s = d02 "erittely"} ;
+lin erittya'_VK = {s = c52A "erittyä"} ;
+lin eritta'in_1_AdvK = {s = c99 "erittäin"} ;
+lin eritta'in_2_AdvK = {s = c99 "erittäin"} ;
+lin eritta'inkin_AdvK = {s = c99 "erittäinkin"} ;
+lin eritta'a'_VK = {s = c53A "erittää"} ;
+lin erityinen_AK = {s = d38 "erityinen"} ;
+--+ lin erityisesti_AdvK = {s = c99 "erityisesti"} ;
+lin erityiskorvattava_NK = {s = d10 "erityiskorvattava"} ;
+lin eritys_NK = {s = d39 "eritys"} ;
+--+ lin erityyppisesti_AdvK = {s = c99 "erityyppisesti"} ;
+lin erityyppisyys_NK = {s = d40 "erityyppisyys"} ;
+lin erita'_VK = {s = c75 "eritä"} ;
+lin eriytta'a'_VK = {s = c53A "eriyttää"} ;
+lin eriytys_NK = {s = d39 "eriytys"} ;
+lin eriytya'_VK = {s = c52A "eriytyä"} ;
+lin eria'va'_NK = {s = d10 "eriävä"} ;
+lin erio'_NK = {s = d03 "eriö"} ;
+lin erkaantua_VK = {s = c52A "erkaantua"} ;
+lin erkanee_VK = {s = c72 "erkanee"} ;
+lin erkautua_VK = {s = c52A "erkautua"} ;
+lin erkkeri_NK = {s = d06 "erkkeri"} ;
+lin ero_NK = {s = d01 "ero"} ;
+lin eroavaisuus_NK = {s = d40 "eroavaisuus"} ;
+lin eroavuus_NK = {s = d40 "eroavuus"} ;
+lin erogeeninen_NK = {s = d38 "erogeeninen"} ;
+--? lin erojaiset_NK = {s = d38 "erojaiset"} ;
+lin eroon_AdvK = {s = c99 "eroon"} ;
+lin eroottinen_AK = {s = d38 "eroottinen"} ;
+--+ lin eroottisesti_AdvK = {s = c99 "eroottisesti"} ;
+lin eroottistaa_VK = {s = c53 "eroottistaa"} ;
+lin eroottistua_VK = {s = c52 "eroottistua"} ;
+lin eroottisuus_NK = {s = d40 "eroottisuus"} ;
+lin erossa_AdvK = {s = c99 "erossa"} ;
+lin erota_VK = {s = c74 "erota"} ;
+lin erotella_VK = {s = c67A "erotella"} ;
+lin erotiikka_NK = {s = d09A "erotiikka"} ;
+lin erotin_NK = {s = d33A "erotin"} ;
+lin erotisoida_VK = {s = c62 "erotisoida"} ;
+lin erotisointi_NK = {s = d05A "erotisointi"} ;
+lin erotisoitua_VK = {s = c52A "erotisoitua"} ;
+lin erotomaani_NK = {s = d05 "erotomaani"} ;
+lin erotomania_NK = {s = d12 "erotomania"} ;
+lin erottaa_VK = {s = c53A "erottaa"} ;
+lin erottamaton_NK = {s = d34A "erottamaton"} ;
+lin erottamattomasti_AdvK = {s = c99 "erottamattomasti"} ;
+lin erottautua_VK = {s = c52A "erottautua"} ;
+lin erottelu_NK = {s = d02 "erottelu"} ;
+lin erottua_VK = {s = c52A "erottua"} ;
+lin erotus_NK = {s = d39 "erotus"} ;
+lin ersa'_NK = {s = d10 "ersä"} ;
+lin eruptiivinen_NK = {s = d38 "eruptiivinen"} ;
+lin erytropoietiini_NK = {s = d05 "erytropoietiini"} ;
+lin era'_NK = {s = d10 "erä"} ;
+lin era's_NK = {s = d41 "eräs"} ;
+lin era'a'nlainen_NK = {s = d38 "eräänlainen"} ;
+lin era'a'ntya'_VK = {s = c52A "erääntyä"} ;
+lin esanssi_NK = {s = d05 "esanssi"} ;
+lin esiin_AdvK = {s = c99 "esiin"} ;
+lin esiintyja'_NK = {s = d10 "esiintyjä"} ;
+lin esiintyma'_NK = {s = d10 "esiintymä"} ;
+lin esiintyvyys_NK = {s = d40 "esiintyvyys"} ;
+lin esiintya'_VK = {s = c52A "esiintyä"} ;
+lin esikko_NK = {s = d04A "esikko"} ;
+lin esikoinen_NK = {s = d38 "esikoinen"} ;
+lin esille_AdvK = {s = c99 "esille"} ;
+lin esilla'_AdvK = {s = c99 "esillä"} ;
+lin esine_NK = {s = d48 "esine"} ;
+lin esineellinen_NK = {s = d38 "esineellinen"} ;
+lin esineellistya'_VK = {s = c52 "esineellistyä"} ;
+lin esineellista'a'_VK = {s = c53 "esineellistää"} ;
+lin esineellisyys_NK = {s = d40 "esineellisyys"} ;
+lin esineistya'_VK = {s = c52 "esineistyä"} ;
+lin esineista'a'_VK = {s = c53 "esineistää"} ;
+lin esineisto'_NK = {s = d01 "esineistö"} ;
+lin esirippu_NK = {s = d01A "esirippu"} ;
+lin esite_NK = {s = d48A "esite"} ;
+lin esitella'_VK = {s = c67A "esitellä"} ;
+lin esitelma'_NK = {s = d10 "esitelmä"} ;
+lin esitelmo'ida'_VK = {s = c62 "esitelmöidä"} ;
+lin esitelmo'ija'_NK = {s = d10 "esitelmöijä"} ;
+lin esitelmo'inti_NK = {s = d05A "esitelmöinti"} ;
+lin esitelmo'itsija'_NK = {s = d12 "esitelmöitsijä"} ;
+lin esitteille_AdvK = {s = c99 "esitteille"} ;
+lin esitteilla'_AdvK = {s = c99 "esitteillä"} ;
+lin esittelija'_NK = {s = d12 "esittelijä"} ;
+lin esittely_NK = {s = d02 "esittely"} ;
+lin esitta'ja'_NK = {s = d10 "esittäjä"} ;
+lin esitta'ytya'_VK = {s = c52A "esittäytyä"} ;
+lin esitta'a'_VK = {s = c53A "esittää"} ;
+lin esityksellinen_NK = {s = d38 "esityksellinen"} ;
+lin esitys_NK = {s = d39 "esitys"} ;
+lin esita'ytetty_NK = {s = d01A "esitäytetty"} ;
+lin eskaaderi_NK = {s = d06 "eskaaderi"} ;
+lin eskadroona_NK = {s = d10 "eskadroona"} ;
+lin eskalaatio_NK = {s = d03 "eskalaatio"} ;
+lin eskaloida_VK = {s = c62 "eskaloida"} ;
+lin eskalointi_NK = {s = d05A "eskalointi"} ;
+lin eskaloitua_VK = {s = c52A "eskaloitua"} ;
+lin eskapismi_NK = {s = d05 "eskapismi"} ;
+lin eskapisti_NK = {s = d05 "eskapisti"} ;
+lin eskapistinen_NK = {s = d38 "eskapistinen"} ;
+lin eskarilainen_NK = {s = d38 "eskarilainen"} ;
+lin eskatologia_NK = {s = d12 "eskatologia"} ;
+lin eskatologinen_NK = {s = d38 "eskatologinen"} ;
+lin eskimo_NK = {s = d02 "eskimo"} ;
+lin esoteerinen_NK = {s = d38 "esoteerinen"} ;
+lin espanja_NK = {s = d12 "espanja"} ;
+lin espanjalaisuus_NK = {s = d40 "espanjalaisuus"} ;
+lin espanjatar_NK = {s = d32A "espanjatar"} ;
+lin esperantisti_NK = {s = d05 "esperantisti"} ;
+lin esperanto_NK = {s = d01 "esperanto"} ;
+lin esplanadi_NK = {s = d05 "esplanadi"} ;
+lin espresso_NK = {s = d02 "espresso"} ;
+lin essee_NK = {s = d20 "essee"} ;
+lin esseisti_NK = {s = d05 "esseisti"} ;
+lin esseistiikka_NK = {s = d09A "esseistiikka"} ;
+lin essentiaalinen_NK = {s = d38 "essentiaalinen"} ;
+lin essiivi_NK = {s = d05 "essiivi"} ;
+lin essu_NK = {s = d01 "essu"} ;
+lin establishment_NK = {s = d05 "establishment"} ;
+lin este_NK = {s = d48 "este"} ;
+lin esteellinen_NK = {s = d38 "esteellinen"} ;
+lin esteellisyys_NK = {s = d40 "esteellisyys"} ;
+lin esteetikko_NK = {s = d04A "esteetikko"} ;
+lin esteettinen_AK = {s = d38 "esteettinen"} ;
+--+ lin esteettisesti_AdvK = {s = c99 "esteettisesti"} ;
+lin esteettisyys_NK = {s = d40 "esteettisyys"} ;
+lin esteetto'myys_NK = {s = d40 "esteettömyys"} ;
+lin esteeto'n_NK = {s = d34A "esteetön"} ;
+lin esteinen_NK = {s = d38 "esteinen"} ;
+lin estella'_VK = {s = c67 "estellä"} ;
+lin estely_NK = {s = d02 "estely"} ;
+lin esteri_NK = {s = d06 "esteri"} ;
+lin estetiikka_NK = {s = d14A "estetiikka"} ;
+lin estimaatti_NK = {s = d05A "estimaatti"} ;
+lin estimaattori_NK = {s = d06 "estimaattori"} ;
+lin estimoida_VK = {s = c62 "estimoida"} ;
+lin estimointi_NK = {s = d05A "estimointi"} ;
+lin estin_NK = {s = d33 "estin"} ;
+lin esto_NK = {s = d01 "esto"} ;
+lin estoinen_NK = {s = d38 "estoinen"} ;
+lin estoisuus_NK = {s = d40 "estoisuus"} ;
+lin estoton_NK = {s = d34A "estoton"} ;
+lin estottomasti_AdvK = {s = c99 "estottomasti"} ;
+lin estottomuus_NK = {s = d40 "estottomuus"} ;
+lin estradi_NK = {s = d05 "estradi"} ;
+lin estrogeeni_NK = {s = d05 "estrogeeni"} ;
+lin estyma'_NK = {s = d10 "estymä"} ;
+lin estyneisyys_NK = {s = d40 "estyneisyys"} ;
+lin estya'_VK = {s = c52 "estyä"} ;
+lin esta'ja'_NK = {s = d10 "estäjä"} ;
+lin esta'a'_VK = {s = c53 "estää"} ;
+lin etaani_NK = {s = d05 "etaani"} ;
+lin etabloitua_VK = {s = c52A "etabloitua"} ;
+lin etana_NK = {s = d12 "etana"} ;
+lin etanoli_NK = {s = d05 "etanoli"} ;
+lin etappi_NK = {s = d05A "etappi"} ;
+lin eteen_AdvK = {s = c99 "eteen"} ;
+lin eteeni_NK = {s = d05 "eteeni"} ;
+lin eteerinen_AK = {s = d38 "eteerinen"} ;
+--+ lin eteerisesti_AdvK = {s = c99 "eteerisesti"} ;
+lin eteerisyys_NK = {s = d40 "eteerisyys"} ;
+lin eteinen_NK = {s = d38 "eteinen"} ;
+lin eteishalli_NK = {s = d05 "eteishalli"} ;
+lin etela'_NK = {s = d10 "etelä"} ;
+lin etela'inen_NK = {s = d38 "eteläinen"} ;
+lin etela'mma'ksi_AdvK = {s = c99 "etelämmäksi"} ;
+lin etela'mma's_AdvK = {s = c99 "etelämmäs"} ;
+lin etela'mpa'na'_AdvK = {s = c99 "etelämpänä"} ;
+lin etela'mpa'a'_AdvK = {s = c99 "etelämpää"} ;
+lin etela'valtalainen_NK = {s = d38 "etelävaltalainen"} ;
+lin etemma'_AdvK = {s = c99 "etemmä"} ;
+lin etemma'ksi_AdvK = {s = c99 "etemmäksi"} ;
+lin etemma's_AdvK = {s = c99 "etemmäs"} ;
+lin etempa'na'_AdvK = {s = c99 "etempänä"} ;
+lin etempa'a'_AdvK = {s = c99 "etempää"} ;
+lin etenema'_NK = {s = d10 "etenemä"} ;
+lin etenija'_NK = {s = d12 "etenijä"} ;
+lin etenkin_AdvK = {s = c99 "etenkin"} ;
+lin etenka'a'n_AdvK = {s = c99 "etenkään"} ;
+lin etevyys_NK = {s = d40 "etevyys"} ;
+lin eteva'_AK = {s = d10 "etevä"} ;
+lin eteva'mmyys_NK = {s = d40 "etevämmyys"} ;
+--+ lin eteva'sti_AdvK = {s = c99 "etevästi"} ;
+lin etiikka_NK = {s = d14A "etiikka"} ;
+lin etiketti_NK = {s = d05A "etiketti"} ;
+lin etiketo'ida'_VK = {s = c62 "etiketöidä"} ;
+lin etiketo'inti_NK = {s = d05A "etiketöinti"} ;
+lin etikka_NK = {s = d14A "etikka"} ;
+lin etinen_NK = {s = d38 "etinen"} ;
+lin etiologia_NK = {s = d12 "etiologia"} ;
+lin etiologinen_AK = {s = d38 "etiologinen"} ;
+--+ lin etiologisesti_AdvK = {s = c99 "etiologisesti"} ;
+lin etia'inen_NK = {s = d38 "etiäinen"} ;
+lin etninen_AK = {s = d38 "etninen"} ;
+--+ lin etnisesti_AdvK = {s = c99 "etnisesti"} ;
+lin etnografi_NK = {s = d05 "etnografi"} ;
+lin etnografia_NK = {s = d12 "etnografia"} ;
+lin etnografinen_AK = {s = d38 "etnografinen"} ;
+--+ lin etnografisesti_AdvK = {s = c99 "etnografisesti"} ;
+lin etnologi_NK = {s = d05 "etnologi"} ;
+lin etnologia_NK = {s = d12 "etnologia"} ;
+lin etnologinen_AK = {s = d38 "etnologinen"} ;
+--+ lin etnologisesti_AdvK = {s = c99 "etnologisesti"} ;
+lin etoa_VK = {s = c52A "etoa"} ;
+lin etruski_NK = {s = d05 "etruski"} ;
+lin etsaaja_NK = {s = d10 "etsaaja"} ;
+lin etsata_VK = {s = c73 "etsata"} ;
+lin etsaus_NK = {s = d39 "etsaus"} ;
+lin etsija'_NK = {s = d12 "etsijä"} ;
+lin etsikko_NK = {s = d04A "etsikko"} ;
+lin etsikkoaika_NK = {s = d09A "etsikkoaika"} ;
+lin etsin_NK = {s = d33 "etsin"} ;
+lin etsinta'_NK = {s = d09A "etsintä"} ;
+lin etsiskella'_VK = {s = c67 "etsiskellä"} ;
+lin etsiskely_NK = {s = d02 "etsiskely"} ;
+lin etsiva'_NK = {s = d10 "etsivä"} ;
+lin etsiytya'_VK = {s = c52A "etsiytyä"} ;
+lin etsia'_VK = {s = c61 "etsiä"} ;
+lin etteiko'_AdvK = {s = c99 "etteikö"} ;
+lin etta'_AdvK = {s = c99 "että"} ;
+lin etu_NK = {s = d01A "etu"} ;
+lin etuilija_NK = {s = d12 "etuilija"} ;
+lin etuilla_VK = {s = c67 "etuilla"} ;
+lin etuilu_NK = {s = d02 "etuilu"} ;
+lin etuisuus_NK = {s = d40 "etuisuus"} ;
+lin etukenoinen_NK = {s = d38 "etukenoinen"} ;
+lin etuka'teen_AdvK = {s = c99 "etukäteen"} ;
+lin etummainen_NK = {s = d38 "etummainen"} ;
+lin etumus_NK = {s = d39 "etumus"} ;
+lin etunena'ssa'_AdvK = {s = c99 "etunenässä"} ;
+lin etuoikeuksinen_NK = {s = d38 "etuoikeuksinen"} ;
+--+ lin etupainotteisesti_AdvK = {s = c99 "etupainotteisesti"} ;
+lin etupainotteisuus_NK = {s = d40 "etupainotteisuus"} ;
+lin etuperin_AdvK = {s = c99 "etuperin"} ;
+lin etusijaistaa_VK = {s = c53 "etusijaistaa"} ;
+lin etuus_NK = {s = d40 "etuus"} ;
+lin etydi_NK = {s = d05 "etydi"} ;
+lin etyleeni_NK = {s = d05 "etyleeni"} ;
+lin etymologia_NK = {s = d12 "etymologia"} ;
+lin etymologinen_AK = {s = d38 "etymologinen"} ;
+--+ lin etymologisesti_AdvK = {s = c99 "etymologisesti"} ;
+lin eta'inen_AK = {s = d38 "etäinen"} ;
+--+ lin eta'isesti_AdvK = {s = c99 "etäisesti"} ;
+lin eta'isyys_NK = {s = d40 "etäisyys"} ;
+lin eta'ytta'a'_VK = {s = c53A "etäyttää"} ;
+lin eta'a'lle_AdvK = {s = c99 "etäälle"} ;
+lin eta'a'lla'_AdvK = {s = c99 "etäällä"} ;
+lin eta'a'lta'_AdvK = {s = c99 "etäältä"} ;
+lin eta'a'mma'ksi_AdvK = {s = c99 "etäämmäksi"} ;
+lin eta'a'mma's_AdvK = {s = c99 "etäämmäs"} ;
+lin eta'a'mpa'na'_AdvK = {s = c99 "etäämpänä"} ;
+lin eta'a'mpa'a'_AdvK = {s = c99 "etäämpää"} ;
+lin eta'a'nnytta'a'_VK = {s = c53A "etäännyttää"} ;
+lin eta'a'ntya'_VK = {s = c52A "etääntyä"} ;
+lin EU_AdvK = {s = c99 "EU"} ;
+lin eufemismi_NK = {s = d05 "eufemismi"} ;
+lin eufemistinen_AK = {s = d38 "eufemistinen"} ;
+--+ lin eufemistisesti_AdvK = {s = c99 "eufemistisesti"} ;
+lin euforia_NK = {s = d12 "euforia"} ;
+lin euforinen_AK = {s = d38 "euforinen"} ;
+--+ lin euforisesti_AdvK = {s = c99 "euforisesti"} ;
+lin eukalyptus_NK = {s = d39 "eukalyptus"} ;
+lin eukko_NK = {s = d01A "eukko"} ;
+lin eukkonen_AdvK = {s = c99 "eukkonen"} ;
+lin euklidinen_NK = {s = d38 "euklidinen"} ;
+lin eunukki_NK = {s = d05A "eunukki"} ;
+lin euraasialainen_NK = {s = d38 "euraasialainen"} ;
+lin euroaika_NK = {s = d09A "euroaika"} ;
+lin euroatlanttinen_NK = {s = d38 "euroatlanttinen"} ;
+lin eurokraatti_NK = {s = d05A "eurokraatti"} ;
+lin eurooppalainen_NK = {s = d38 "eurooppalainen"} ;
+lin eurooppalaistua_VK = {s = c52 "eurooppalaistua"} ;
+lin eurooppalaisuus_NK = {s = d40 "eurooppalaisuus"} ;
+lin europidinen_NK = {s = d38 "europidinen"} ;
+lin eurosentrismi_NK = {s = d05 "eurosentrismi"} ;
+lin eurytmia_NK = {s = d12 "eurytmia"} ;
+lin eutanasia_NK = {s = d12 "eutanasia"} ;
+lin evakko_NK = {s = d04A "evakko"} ;
+lin evakkous_NK = {s = d40 "evakkous"} ;
+lin evakuoida_VK = {s = c62 "evakuoida"} ;
+lin evakuointi_NK = {s = d05A "evakuointi"} ;
+lin evaluoida_VK = {s = c62 "evaluoida"} ;
+lin evaluointi_NK = {s = d05A "evaluointi"} ;
+lin evankelinen_NK = {s = d38 "evankelinen"} ;
+lin evankelioida_VK = {s = c62 "evankelioida"} ;
+lin evankeliointi_NK = {s = d05A "evankeliointi"} ;
+lin evankelista_NK = {s = d09 "evankelista"} ;
+lin evankeliumi_NK = {s = d05 "evankeliumi"} ;
+lin evergreen_NK = {s = d05 "evergreen"} ;
+lin eversti_NK = {s = d05 "eversti"} ;
+lin evidenssi_NK = {s = d05 "evidenssi"} ;
+lin evidentti_NK = {s = d05A "evidentti"} ;
+lin evoluutio_NK = {s = d03 "evoluutio"} ;
+lin eva'_NK = {s = d10 "evä"} ;
+lin eva's_NK = {s = d41 "eväs"} ;
+lin eva'stella'_VK = {s = c67 "evästellä"} ;
+lin eva'stys_NK = {s = d39 "evästys"} ;
+lin eva'sta'a'_VK = {s = c53 "evästää"} ;
+lin eva'ta'_VK = {s = c73A "evätä"} ;
+lin exlibris_NK = {s = d39 "exlibris"} ;
+lin ex_tempore_AdvK = {s = c99 "ex tempore"} ;
+lin faabeli_NK = {s = d06 "faabeli"} ;
+lin faarao_NK = {s = d03 "faarao"} ;
+lin faasi_NK = {s = d05 "faasi"} ;
+lin fabuloida_VK = {s = c62 "fabuloida"} ;
+lin fabulointi_NK = {s = d05A "fabulointi"} ;
+lin factoring_NK = {s = d05 "factoring"} ;
+lin fagosyytti_NK = {s = d05A "fagosyytti"} ;
+lin fagotisti_NK = {s = d05 "fagotisti"} ;
+lin fagotti_NK = {s = d05A "fagotti"} ;
+lin faija_NK = {s = d09 "faija"} ;
+lin fajanssi_NK = {s = d05 "fajanssi"} ;
+lin fakiiri_NK = {s = d06 "fakiiri"} ;
+lin fakki_NK = {s = d05A "fakki"} ;
+lin fakkiintua_VK = {s = c52A "fakkiintua"} ;
+lin fakkiutua_VK = {s = c52A "fakkiutua"} ;
+lin faksata_VK = {s = c73 "faksata"} ;
+lin faksi_NK = {s = d05 "faksi"} ;
+lin faksimile_NK = {s = d08 "faksimile"} ;
+lin fakta_NK = {s = d09 "fakta"} ;
+lin faktinen_AK = {s = d38 "faktinen"} ;
+--+ lin faktisesti_AdvK = {s = c99 "faktisesti"} ;
+lin faktori_NK = {s = d06 "faktori"} ;
+lin faktuura_NK = {s = d13 "faktuura"} ;
+lin fakultatiivinen_AK = {s = d38 "fakultatiivinen"} ;
+--+ lin fakultatiivisesti_AdvK = {s = c99 "fakultatiivisesti"} ;
+lin fakultatiivisuus_NK = {s = d40 "fakultatiivisuus"} ;
+lin falangi_NK = {s = d05 "falangi"} ;
+lin falangisti_NK = {s = d05 "falangisti"} ;
+lin fallinen_NK = {s = d38 "fallinen"} ;
+lin fallos_NK = {s = d39 "fallos"} ;
+lin falsetti_NK = {s = d05A "falsetti"} ;
+lin falsifioida_VK = {s = c62 "falsifioida"} ;
+lin falsifiointi_NK = {s = d05A "falsifiointi"} ;
+lin falskata_VK = {s = c73 "falskata"} ;
+lin falski_AK = {s = d05 "falski"} ;
+--+ lin falskisti_AdvK = {s = c99 "falskisti"} ;
+lin falskius_NK = {s = d40 "falskius"} ;
+lin fan_NK = {s = d05 "fan"} ;
+lin fanaatikko_NK = {s = d04A "fanaatikko"} ;
+lin fanaattinen_AK = {s = d38 "fanaattinen"} ;
+--+ lin fanaattisesti_AdvK = {s = c99 "fanaattisesti"} ;
+lin fanaattisuus_NK = {s = d40 "fanaattisuus"} ;
+lin fanatismi_NK = {s = d05 "fanatismi"} ;
+lin fan_club_NK = {s = d05 "fan club"} ;
+lin faneeri_NK = {s = d06 "faneeri"} ;
+lin fanfaari_NK = {s = d06 "fanfaari"} ;
+lin fani_NK = {s = d05 "fani"} ;
+lin fantasia_NK = {s = d12 "fantasia"} ;
+lin fantastinen_AK = {s = d38 "fantastinen"} ;
+--+ lin fantastisesti_AdvK = {s = c99 "fantastisesti"} ;
+lin fantastisuus_NK = {s = d40 "fantastisuus"} ;
+lin fantisoida_VK = {s = c62 "fantisoida"} ;
+lin fantisointi_NK = {s = d05A "fantisointi"} ;
+lin faradi_NK = {s = d05 "faradi"} ;
+lin farao_NK = {s = d03 "farao"} ;
+lin farisealainen_NK = {s = d38 "farisealainen"} ;
+lin farisealaisuus_NK = {s = d40 "farisealaisuus"} ;
+lin fariseus_NK = {s = d39 "fariseus"} ;
+lin farkkukangas_NK = {s = d41A "farkkukangas"} ;
+--? lin farkut_NK = {s = d01A "farkut"} ;
+lin farmakologia_NK = {s = d12 "farmakologia"} ;
+lin farmakologinen_AK = {s = d38 "farmakologinen"} ;
+--+ lin farmakologisesti_AdvK = {s = c99 "farmakologisesti"} ;
+lin farmanomi_NK = {s = d05 "farmanomi"} ;
+lin farmari_NK = {s = d06 "farmari"} ;
+lin farmaseutti_NK = {s = d05A "farmaseutti"} ;
+lin farmasia_NK = {s = d12 "farmasia"} ;
+lin farmi_NK = {s = d05 "farmi"} ;
+lin farssi_NK = {s = d05 "farssi"} ;
+lin fasaani_NK = {s = d06 "fasaani"} ;
+lin fasadi_NK = {s = d05 "fasadi"} ;
+lin fasismi_NK = {s = d05 "fasismi"} ;
+lin fasisti_NK = {s = d05 "fasisti"} ;
+lin fasistinen_NK = {s = d38 "fasistinen"} ;
+lin fast_food_NK = {s = d05 "fast food"} ;
+lin fataali_AK = {s = d06 "fataali"} ;
+lin fataalinen_AK = {s = d38 "fataalinen"} ;
+--+ lin fataalisesti_AdvK = {s = c99 "fataalisesti"} ;
+--+ lin fataalisti_AdvK = {s = c99 "fataalisti"} ;
+lin fataalisuus_NK = {s = d40 "fataalisuus"} ;
+lin fataalius_NK = {s = d40 "fataalius"} ;
+lin fatalismi_NK = {s = d05 "fatalismi"} ;
+lin fatalisti_NK = {s = d05 "fatalisti"} ;
+lin fatalistinen_AK = {s = d38 "fatalistinen"} ;
+--+ lin fatalistisesti_AdvK = {s = c99 "fatalistisesti"} ;
+lin fatalistisuus_NK = {s = d40 "fatalistisuus"} ;
+lin fatsi_NK = {s = d05 "fatsi"} ;
+lin fauna_NK = {s = d09 "fauna"} ;
+lin fauni_NK = {s = d05 "fauni"} ;
+lin federaatio_NK = {s = d03 "federaatio"} ;
+lin federalismi_NK = {s = d05 "federalismi"} ;
+lin federalistinen_NK = {s = d38 "federalistinen"} ;
+lin federatiivinen_NK = {s = d38 "federatiivinen"} ;
+lin feedback_NK = {s = d05 "feedback"} ;
+lin feeniks_NK = {s = d05 "feeniks"} ;
+lin feijoa_NK = {s = d10 "feijoa"} ;
+lin femakko_NK = {s = d04A "femakko"} ;
+lin feminiini_NK = {s = d05 "feminiini"} ;
+lin feminiininen_AK = {s = d38 "feminiininen"} ;
+--+ lin feminiinisesti_AdvK = {s = c99 "feminiinisesti"} ;
+lin feminiinisyys_NK = {s = d40 "feminiinisyys"} ;
+lin feminismi_NK = {s = d05 "feminismi"} ;
+lin feministi_NK = {s = d05 "feministi"} ;
+lin feministinen_AK = {s = d38 "feministinen"} ;
+--+ lin feministisesti_AdvK = {s = c99 "feministisesti"} ;
+lin fenkoli_1_NK = {s = d05 "fenkoli"} ;
+lin fenkoli_2_NK = {s = d05 "fenkoli"} ;
+lin fennismi_NK = {s = d05 "fennismi"} ;
+lin fennisti_NK = {s = d05 "fennisti"} ;
+lin fennistiikka_NK = {s = d09A "fennistiikka"} ;
+lin fennistinen_AK = {s = d38 "fennistinen"} ;
+--+ lin fennistisesti_AdvK = {s = c99 "fennistisesti"} ;
+lin fennistisyys_NK = {s = d40 "fennistisyys"} ;
+lin fennofiili_NK = {s = d05 "fennofiili"} ;
+lin fennomaani_NK = {s = d05 "fennomaani"} ;
+lin fennomania_NK = {s = d12 "fennomania"} ;
+lin fennougristi_NK = {s = d05 "fennougristi"} ;
+lin fennougristiikka_NK = {s = d09A "fennougristiikka"} ;
+lin fenoli_NK = {s = d05 "fenoli"} ;
+lin fenomenaalinen_AK = {s = d38 "fenomenaalinen"} ;
+--+ lin fenomenaalisesti_AdvK = {s = c99 "fenomenaalisesti"} ;
+lin fenomenaalisuus_NK = {s = d40 "fenomenaalisuus"} ;
+lin fenomenologia_NK = {s = d12 "fenomenologia"} ;
+lin fenomenologinen_AK = {s = d38 "fenomenologinen"} ;
+--+ lin fenomenologisesti_AdvK = {s = c99 "fenomenologisesti"} ;
+lin feodaalinen_AK = {s = d38 "feodaalinen"} ;
+--+ lin feodaalisesti_AdvK = {s = c99 "feodaalisesti"} ;
+lin feodaalisuus_NK = {s = d40 "feodaalisuus"} ;
+lin feodalismi_NK = {s = d05 "feodalismi"} ;
+lin feodalistinen_AK = {s = d38 "feodalistinen"} ;
+--+ lin feodalistisesti_AdvK = {s = c99 "feodalistisesti"} ;
+lin feodalistisuus_NK = {s = d40 "feodalistisuus"} ;
+lin fermaatti_NK = {s = d05A "fermaatti"} ;
+lin ferriitti_NK = {s = d05A "ferriitti"} ;
+lin ferrioksidi_NK = {s = d05 "ferrioksidi"} ;
+lin ferrokloridi_NK = {s = d05 "ferrokloridi"} ;
+lin fertiili_NK = {s = d05 "fertiili"} ;
+lin fertiiliys_NK = {s = d40 "fertiiliys"} ;
+lin fertiliteetti_NK = {s = d05A "fertiliteetti"} ;
+lin festari_NK = {s = d06 "festari"} ;
+lin festivaali_NK = {s = d05 "festivaali"} ;
+lin feta_NK = {s = d09 "feta"} ;
+lin fetisismi_NK = {s = d05 "fetisismi"} ;
+lin fetisisti_NK = {s = d05 "fetisisti"} ;
+lin fetisistinen_NK = {s = d38 "fetisistinen"} ;
+lin fetissi_NK = {s = d05 "fetissi"} ;
+lin fiasko_NK = {s = d02 "fiasko"} ;
+lin fiba_NK = {s = d09 "fiba"} ;
+lin fibata_VK = {s = c73 "fibata"} ;
+lin fibaus_NK = {s = d39 "fibaus"} ;
+lin fibriini_NK = {s = d05 "fibriini"} ;
+lin fiesta_NK = {s = d09 "fiesta"} ;
+lin fifty_fifty_AdvK = {s = c99 "fifty-fifty"} ;
+lin figuratiivinen_AK = {s = d38 "figuratiivinen"} ;
+--+ lin figuratiivisesti_AdvK = {s = c99 "figuratiivisesti"} ;
+lin figuratiivisuus_NK = {s = d40 "figuratiivisuus"} ;
+lin figuuri_NK = {s = d06 "figuuri"} ;
+lin fiiberi_NK = {s = d06 "fiiberi"} ;
+lin fiikus_NK = {s = d39 "fiikus"} ;
+lin fiilinki_NK = {s = d05A "fiilinki"} ;
+lin fiilis_NK = {s = d39 "fiilis"} ;
+lin fiini_NK = {s = d05 "fiini"} ;
+lin fikka_NK = {s = d09A "fikka"} ;
+lin fikkari_NK = {s = d06 "fikkari"} ;
+lin fiksaatio_NK = {s = d03 "fiksaatio"} ;
+lin fiksatiivi_NK = {s = d05 "fiksatiivi"} ;
+lin fikseerata_VK = {s = c73 "fikseerata"} ;
+lin fikseeraus_NK = {s = d39 "fikseeraus"} ;
+lin fiksoida_VK = {s = c62 "fiksoida"} ;
+lin fiksointi_NK = {s = d05A "fiksointi"} ;
+lin fiksoitua_VK = {s = c52A "fiksoitua"} ;
+lin fiksu_AK = {s = d01 "fiksu"} ;
+--+ lin fiksusti_AdvK = {s = c99 "fiksusti"} ;
+lin fiksuus_NK = {s = d40 "fiksuus"} ;
+lin fiktiivinen_AK = {s = d38 "fiktiivinen"} ;
+--+ lin fiktiivisesti_AdvK = {s = c99 "fiktiivisesti"} ;
+lin fiktiivisyys_NK = {s = d40 "fiktiivisyys"} ;
+lin fiktio_NK = {s = d03 "fiktio"} ;
+lin filamentti_NK = {s = d05A "filamentti"} ;
+lin filantrooppi_NK = {s = d05A "filantrooppi"} ;
+lin filantrooppinen_AK = {s = d38 "filantrooppinen"} ;
+--+ lin filantrooppisesti_AdvK = {s = c99 "filantrooppisesti"} ;
+lin filantropia_NK = {s = d12 "filantropia"} ;
+lin filateelinen_NK = {s = d38 "filateelinen"} ;
+lin filatelia_NK = {s = d12 "filatelia"} ;
+lin filatelisti_NK = {s = d05 "filatelisti"} ;
+lin filee_NK = {s = d20 "filee"} ;
+lin fileerata_VK = {s = c73 "fileerata"} ;
+lin fileeraus_NK = {s = d39 "fileeraus"} ;
+lin fileoida_VK = {s = c62 "fileoida"} ;
+lin fileointi_NK = {s = d05A "fileointi"} ;
+lin filharmonikko_NK = {s = d04A "filharmonikko"} ;
+lin filharmoninen_NK = {s = d38 "filharmoninen"} ;
+lin filigraani_NK = {s = d05 "filigraani"} ;
+lin filistealainen_NK = {s = d38 "filistealainen"} ;
+lin fillari_NK = {s = d06 "fillari"} ;
+lin fillaroida_VK = {s = c62 "fillaroida"} ;
+lin fillarointi_NK = {s = d05A "fillarointi"} ;
+lin filmaaja_NK = {s = d10 "filmaaja"} ;
+lin filmaattinen_AK = {s = d38 "filmaattinen"} ;
+--+ lin filmaattisesti_AdvK = {s = c99 "filmaattisesti"} ;
+lin filmaattisuus_NK = {s = d40 "filmaattisuus"} ;
+lin filmata_VK = {s = c73 "filmata"} ;
+lin filmatisoida_VK = {s = c62 "filmatisoida"} ;
+lin filmatisointi_NK = {s = d05A "filmatisointi"} ;
+lin filmaus_NK = {s = d39 "filmaus"} ;
+lin filmi_NK = {s = d05 "filmi"} ;
+lin filminno's_NK = {s = d39 "filminnös"} ;
+lin filminta'a'_VK = {s = c54A "filmintää"} ;
+lin filmografia_NK = {s = d12 "filmografia"} ;
+lin filologi_NK = {s = d05 "filologi"} ;
+lin filologia_NK = {s = d12 "filologia"} ;
+lin filologinen_AK = {s = d38 "filologinen"} ;
+--+ lin filologisesti_AdvK = {s = c99 "filologisesti"} ;
+lin filosofi_NK = {s = d05 "filosofi"} ;
+lin filosofia_NK = {s = d12 "filosofia"} ;
+lin filosofinen_AK = {s = d38 "filosofinen"} ;
+--+ lin filosofisesti_AdvK = {s = c99 "filosofisesti"} ;
+lin filosofoida_VK = {s = c62 "filosofoida"} ;
+lin filosofointi_NK = {s = d05A "filosofointi"} ;
+lin filtrata_VK = {s = c73 "filtrata"} ;
+lin filtraus_NK = {s = d39 "filtraus"} ;
+lin filtteri_NK = {s = d06 "filtteri"} ;
+lin filtti_NK = {s = d05A "filtti"} ;
+lin filunki_NK = {s = d05A "filunki"} ;
+lin filuri_NK = {s = d06 "filuri"} ;
+lin finaali_NK = {s = d06 "finaali"} ;
+lin finaalinen_AK = {s = d38 "finaalinen"} ;
+--+ lin finaalisesti_AdvK = {s = c99 "finaalisesti"} ;
+lin finaalisuus_NK = {s = d40 "finaalisuus"} ;
+lin finalisti_NK = {s = d05 "finalisti"} ;
+lin finansioida_VK = {s = c62 "finansioida"} ;
+lin finansiointi_NK = {s = d05A "finansiointi"} ;
+lin finanssit_NK = {s = d05 "finanssit"} ;
+lin finessi_NK = {s = d05 "finessi"} ;
+lin fingelska_NK = {s = d13 "fingelska"} ;
+lin fingerpori_NK = {s = d05 "fingerpori"} ;
+lin fingerporillinen_NK = {s = d38 "fingerporillinen"} ;
+lin fingliska_NK = {s = d13 "fingliska"} ;
+lin finiittinen_NK = {s = d38 "finiittinen"} ;
+lin finiittisyys_NK = {s = d40 "finiittisyys"} ;
+lin finis_AdvK = {s = c99 "finis"} ;
+lin finito_AdvK = {s = c99 "finito"} ;
+lin finni_NK = {s = d05 "finni"} ;
+lin finninen_NK = {s = d38 "finninen"} ;
+lin firaabeli_NK = {s = d06 "firaabeli"} ;
+lin firma_NK = {s = d09 "firma"} ;
+lin fissio_NK = {s = d03 "fissio"} ;
+lin fisteli_NK = {s = d06 "fisteli"} ;
+lin flaami_NK = {s = d05 "flaami"} ;
+lin flaksi_NK = {s = d05 "flaksi"} ;
+lin flambeerata_VK = {s = c73 "flambeerata"} ;
+lin flambeeraus_NK = {s = d39 "flambeeraus"} ;
+lin flamenco_NK = {s = d01 "flamenco"} ;
+lin flamingo_NK = {s = d01 "flamingo"} ;
+lin flanelli_NK = {s = d06 "flanelli"} ;
+lin flanellinen_NK = {s = d38 "flanellinen"} ;
+lin flegmaatikko_NK = {s = d04A "flegmaatikko"} ;
+lin flegmaattinen_AK = {s = d38 "flegmaattinen"} ;
+--+ lin flegmaattisesti_AdvK = {s = c99 "flegmaattisesti"} ;
+lin flegmaattisuus_NK = {s = d40 "flegmaattisuus"} ;
+lin flikka_NK = {s = d09A "flikka"} ;
+lin flipperi_NK = {s = d06 "flipperi"} ;
+lin flirtata_VK = {s = c73A "flirtata"} ;
+lin flirttailla_VK = {s = c67 "flirttailla"} ;
+lin flirttailu_NK = {s = d02 "flirttailu"} ;
+lin flirttaus_NK = {s = d39 "flirttaus"} ;
+lin flirtti_NK = {s = d05A "flirtti"} ;
+lin flokki_NK = {s = d05A "flokki"} ;
+lin floksi_NK = {s = d05 "floksi"} ;
+lin floora_NK = {s = d10 "floora"} ;
+lin flopata_VK = {s = c73A "flopata"} ;
+lin floppi_NK = {s = d05A "floppi"} ;
+lin floretti_NK = {s = d05A "floretti"} ;
+lin floriini_NK = {s = d06 "floriini"} ;
+lin floristi_NK = {s = d05 "floristi"} ;
+lin flunssa_NK = {s = d10 "flunssa"} ;
+lin flunssainen_NK = {s = d38 "flunssainen"} ;
+lin fluorata_VK = {s = c73 "fluorata"} ;
+lin fluoraus_NK = {s = d39 "fluoraus"} ;
+lin fluoresenssi_NK = {s = d05 "fluoresenssi"} ;
+lin fluoresoida_VK = {s = c62 "fluoresoida"} ;
+lin fluori_NK = {s = d05 "fluori"} ;
+lin fluorittaa_VK = {s = c53A "fluorittaa"} ;
+lin fluoritus_NK = {s = d39 "fluoritus"} ;
+lin fluoroida_VK = {s = c62 "fluoroida"} ;
+lin fluorointi_NK = {s = d05A "fluorointi"} ;
+lin flyygeli_NK = {s = d06 "flyygeli"} ;
+lin fobia_NK = {s = d12 "fobia"} ;
+lin foinikialainen_NK = {s = d38 "foinikialainen"} ;
+lin fokka_NK = {s = d10A "fokka"} ;
+lin foksi_NK = {s = d05 "foksi"} ;
+lin fokstrotti_NK = {s = d05A "fokstrotti"} ;
+lin fokus_NK = {s = d39 "fokus"} ;
+lin fokusoida_VK = {s = c62 "fokusoida"} ;
+lin fokusointi_NK = {s = d05A "fokusointi"} ;
+lin folio_NK = {s = d03 "folio"} ;
+lin folioida_VK = {s = c62 "folioida"} ;
+lin foliointi_NK = {s = d05A "foliointi"} ;
+lin foliokoko_NK = {s = d01A "foliokoko"} ;
+lin folk_NK = {s = d05 "folk"} ;
+lin folklore_NK = {s = d08 "folklore"} ;
+lin folkloristi_NK = {s = d05 "folkloristi"} ;
+lin folkloristiikka_NK = {s = d09A "folkloristiikka"} ;
+lin follikkeli_NK = {s = d05 "follikkeli"} ;
+lin fondue_NK = {s = d21 "fondue"} ;
+lin fondyy_NK = {s = d20 "fondyy"} ;
+lin foneemi_NK = {s = d06 "foneemi"} ;
+lin foneetikko_NK = {s = d04A "foneetikko"} ;
+lin foneettinen_AK = {s = d38 "foneettinen"} ;
+--+ lin foneettisesti_AdvK = {s = c99 "foneettisesti"} ;
+lin fonetiikka_NK = {s = d09A "fonetiikka"} ;
+lin foniatri_NK = {s = d05 "foniatri"} ;
+lin foniatria_NK = {s = d12 "foniatria"} ;
+lin foniatrinen_AK = {s = d38 "foniatrinen"} ;
+--+ lin foniatrisesti_AdvK = {s = c99 "foniatrisesti"} ;
+lin fonologia_NK = {s = d12 "fonologia"} ;
+lin fonologinen_AK = {s = d38 "fonologinen"} ;
+--+ lin fonologisesti_AdvK = {s = c99 "fonologisesti"} ;
+lin fontanelli_NK = {s = d05 "fontanelli"} ;
+lin foorumi_NK = {s = d06 "foorumi"} ;
+lin force_majeure_NK = {s = d08 "force majeure"} ;
+lin forelli_NK = {s = d05 "forelli"} ;
+lin formaali_AK = {s = d06 "formaali"} ;
+lin formaalinen_AK = {s = d38 "formaalinen"} ;
+--+ lin formaalisesti_AdvK = {s = c99 "formaalisesti"} ;
+lin formaalistaa_VK = {s = c53 "formaalistaa"} ;
+--+ lin formaalisti_AdvK = {s = c99 "formaalisti"} ;
+lin formaalistus_NK = {s = d39 "formaalistus"} ;
+lin formaalisuus_NK = {s = d40 "formaalisuus"} ;
+lin formaalius_NK = {s = d40 "formaalius"} ;
+lin formaatio_NK = {s = d03 "formaatio"} ;
+lin formaatti_NK = {s = d05A "formaatti"} ;
+lin formaldehydi_NK = {s = d05 "formaldehydi"} ;
+lin formaliini_NK = {s = d05 "formaliini"} ;
+lin formalismi_NK = {s = d05 "formalismi"} ;
+lin formalisoida_VK = {s = c62 "formalisoida"} ;
+lin formalisointi_NK = {s = d05A "formalisointi"} ;
+lin formalisti_NK = {s = d05 "formalisti"} ;
+lin formalistinen_AK = {s = d38 "formalistinen"} ;
+--+ lin formalistisesti_AdvK = {s = c99 "formalistisesti"} ;
+lin formalistisuus_NK = {s = d40 "formalistisuus"} ;
+lin formatiivinen_NK = {s = d38 "formatiivinen"} ;
+lin formatoida_VK = {s = c62 "formatoida"} ;
+lin formatointi_NK = {s = d05A "formatointi"} ;
+lin formu_NK = {s = d01 "formu"} ;
+lin formula_NK = {s = d12 "formula"} ;
+lin formuloida_VK = {s = c62 "formuloida"} ;
+lin formulointi_NK = {s = d05A "formulointi"} ;
+lin forte_NK = {s = d08 "forte"} ;
+lin fortissimo_NK = {s = d02 "fortissimo"} ;
+lin fortuna_NK = {s = d12 "fortuna"} ;
+lin fosfaatti_NK = {s = d05A "fosfaatti"} ;
+lin fosfaattinen_NK = {s = d38 "fosfaattinen"} ;
+lin fosforesenssi_NK = {s = d05 "fosforesenssi"} ;
+lin fosforesoida_VK = {s = c62 "fosforesoida"} ;
+lin fosfori_NK = {s = d05 "fosfori"} ;
+lin fosforoida_VK = {s = c62 "fosforoida"} ;
+lin fosforointi_NK = {s = d05A "fosforointi"} ;
+lin fossiili_NK = {s = d06 "fossiili"} ;
+lin fossiilinen_NK = {s = d38 "fossiilinen"} ;
+lin fossiilistua_VK = {s = c52 "fossiilistua"} ;
+lin fossilisoitua_VK = {s = c52A "fossilisoitua"} ;
+lin foto_NK = {s = d01 "foto"} ;
+lin fotoni_NK = {s = d06 "fotoni"} ;
+lin fototypia_NK = {s = d12 "fototypia"} ;
+lin fraasi_NK = {s = d05 "fraasi"} ;
+lin fragmentaarinen_AK = {s = d38 "fragmentaarinen"} ;
+--+ lin fragmentaarisesti_AdvK = {s = c99 "fragmentaarisesti"} ;
+lin fragmentaarisuus_NK = {s = d40 "fragmentaarisuus"} ;
+lin fragmentti_NK = {s = d05A "fragmentti"} ;
+lin frakki_NK = {s = d05A "frakki"} ;
+lin fraktaali_NK = {s = d06 "fraktaali"} ;
+lin fraktio_NK = {s = d03 "fraktio"} ;
+lin fraktioida_VK = {s = c62 "fraktioida"} ;
+lin fraktiointi_NK = {s = d05A "fraktiointi"} ;
+lin fraktuura_NK = {s = d13 "fraktuura"} ;
+lin framilla_AdvK = {s = c99 "framilla"} ;
+lin framille_AdvK = {s = c99 "framille"} ;
+lin franchising_NK = {s = d05 "franchising"} ;
+lin frangi_NK = {s = d05 "frangi"} ;
+lin frankeerata_VK = {s = c73 "frankeerata"} ;
+lin frankeeraus_NK = {s = d39 "frankeeraus"} ;
+lin frankki_NK = {s = d05A "frankki"} ;
+lin franseesi_NK = {s = d05 "franseesi"} ;
+lin fransiskaani_NK = {s = d05 "fransiskaani"} ;
+lin fraseerata_VK = {s = c73 "fraseerata"} ;
+lin fraseeraus_NK = {s = d39 "fraseeraus"} ;
+lin fraseologia_NK = {s = d12 "fraseologia"} ;
+lin fraseologinen_NK = {s = d38 "fraseologinen"} ;
+lin freelance_NK = {s = d08 "freelance"} ;
+lin freelancer_NK = {s = d06 "freelancer"} ;
+lin freesia_NK = {s = d12 "freesia"} ;
+lin freestyle_NK = {s = d08 "freestyle"} ;
+lin fregatti_NK = {s = d05A "fregatti"} ;
+lin frekvenssi_NK = {s = d05 "frekvenssi"} ;
+lin frekvenssinen_NK = {s = d38 "frekvenssinen"} ;
+lin frekventti_NK = {s = d05A "frekventti"} ;
+lin freoni_NK = {s = d05 "freoni"} ;
+lin fresko_NK = {s = d01 "fresko"} ;
+lin freudilainen_NK = {s = d38 "freudilainen"} ;
+lin freudilaisuus_NK = {s = d40 "freudilaisuus"} ;
+lin frigidi_NK = {s = d05 "frigidi"} ;
+lin frigiditeetti_NK = {s = d05A "frigiditeetti"} ;
+lin frigidiys_NK = {s = d40 "frigidiys"} ;
+lin friikki_NK = {s = d05A "friikki"} ;
+lin friisi_1_NK = {s = d05 "friisi"} ;
+lin friisi_2_NK = {s = d05 "friisi"} ;
+lin friisila'inen_NK = {s = d38 "friisiläinen"} ;
+lin frikadelli_NK = {s = d05 "frikadelli"} ;
+lin frisbee_NK = {s = d18 "frisbee"} ;
+lin frisyyri_NK = {s = d06 "frisyyri"} ;
+lin friteerata_VK = {s = c73 "friteerata"} ;
+lin friteeraus_NK = {s = d39 "friteeraus"} ;
+lin fritsu_NK = {s = d01 "fritsu"} ;
+lin frontaalinen_AK = {s = d38 "frontaalinen"} ;
+--+ lin frontaalisesti_AdvK = {s = c99 "frontaalisesti"} ;
+lin frotee_NK = {s = d20 "frotee"} ;
+lin froteinen_NK = {s = d38 "froteinen"} ;
+lin fruktoosi_NK = {s = d05 "fruktoosi"} ;
+lin frustraatio_NK = {s = d03 "frustraatio"} ;
+lin frustroida_VK = {s = c62 "frustroida"} ;
+lin frustroitua_VK = {s = c52A "frustroitua"} ;
+lin fudata_VK = {s = c73 "fudata"} ;
+lin fudia_VK = {s = c61 "fudia"} ;
+lin fudis_NK = {s = d39 "fudis"} ;
+--? lin fudut_NK = {s = d01 "fudut"} ;
+lin fuksi_NK = {s = d05 "fuksi"} ;
+lin fundamentaalinen_AK = {s = d38 "fundamentaalinen"} ;
+--+ lin fundamentaalisesti_AdvK = {s = c99 "fundamentaalisesti"} ;
+lin fundamentaalisuus_NK = {s = d40 "fundamentaalisuus"} ;
+lin fundamentalismi_NK = {s = d05 "fundamentalismi"} ;
+lin fundamentalisti_NK = {s = d05 "fundamentalisti"} ;
+lin fundamentalistinen_AK = {s = d38 "fundamentalistinen"} ;
+--+ lin fundamentalistisesti_AdvK = {s = c99 "fundamentalistisesti"} ;
+lin funkis_NK = {s = d39 "funkis"} ;
+lin funkkis_NK = {s = d39 "funkkis"} ;
+lin funktio_NK = {s = d03 "funktio"} ;
+lin funktionaalinen_AK = {s = d38 "funktionaalinen"} ;
+--+ lin funktionaalisesti_AdvK = {s = c99 "funktionaalisesti"} ;
+lin funktionaalisuus_NK = {s = d40 "funktionaalisuus"} ;
+lin funktionalismi_NK = {s = d05 "funktionalismi"} ;
+lin funktionalistinen_AK = {s = d38 "funktionalistinen"} ;
+--+ lin funktionalistisesti_AdvK = {s = c99 "funktionalistisesti"} ;
+lin funktionalistisuus_NK = {s = d40 "funktionalistisuus"} ;
+lin funtsata_VK = {s = c73 "funtsata"} ;
+lin funtsaus_NK = {s = d39 "funtsaus"} ;
+lin funtsia_VK = {s = c61 "funtsia"} ;
+lin fuskata_VK = {s = c73 "fuskata"} ;
+lin fuskaus_NK = {s = d39 "fuskaus"} ;
+lin fusku_NK = {s = d01 "fusku"} ;
+lin futaaja_NK = {s = d10 "futaaja"} ;
+lin futata_VK = {s = c73 "futata"} ;
+lin futia_VK = {s = c61 "futia"} ;
+lin futis_NK = {s = d39 "futis"} ;
+lin futurismi_NK = {s = d05 "futurismi"} ;
+lin futuristinen_NK = {s = d38 "futuristinen"} ;
+lin futuristisuus_NK = {s = d40 "futuristisuus"} ;
+lin futurologi_NK = {s = d05 "futurologi"} ;
+lin futurologia_NK = {s = d12 "futurologia"} ;
+lin futurologinen_AK = {s = d38 "futurologinen"} ;
+--+ lin futurologisesti_AdvK = {s = c99 "futurologisesti"} ;
+lin futuuri_NK = {s = d06 "futuuri"} ;
+lin fuuga_NK = {s = d10 "fuuga"} ;
+lin fuusio_NK = {s = d03 "fuusio"} ;
+lin fuusioida_VK = {s = c62 "fuusioida"} ;
+lin fuusiointi_NK = {s = d05A "fuusiointi"} ;
+lin fuusioitua_VK = {s = c52A "fuusioitua"} ;
+lin fylli_NK = {s = d05 "fylli"} ;
+lin fylogeneesi_NK = {s = d05 "fylogeneesi"} ;
+--+ lin fylogeneettisesti_AdvK = {s = c99 "fylogeneettisesti"} ;
+lin fyrkka_NK = {s = d10A "fyrkka"} ;
+lin fysiatri_NK = {s = d05 "fysiatri"} ;
+lin fysiatria_NK = {s = d12 "fysiatria"} ;
+lin fysiatrinen_AK = {s = d38 "fysiatrinen"} ;
+--+ lin fysiatrisesti_AdvK = {s = c99 "fysiatrisesti"} ;
+lin fysiikka_NK = {s = d14A "fysiikka"} ;
+lin fysikaalinen_AK = {s = d38 "fysikaalinen"} ;
+--+ lin fysikaalisesti_AdvK = {s = c99 "fysikaalisesti"} ;
+lin fysiologi_NK = {s = d05 "fysiologi"} ;
+lin fysiologia_NK = {s = d12 "fysiologia"} ;
+lin fysiologinen_AK = {s = d38 "fysiologinen"} ;
+--+ lin fysiologisesti_AdvK = {s = c99 "fysiologisesti"} ;
+lin fysiologisuus_NK = {s = d40 "fysiologisuus"} ;
+lin fytonomi_NK = {s = d05 "fytonomi"} ;
+lin fyysikko_NK = {s = d04A "fyysikko"} ;
+lin fyysinen_AK = {s = d38 "fyysinen"} ;
+--+ lin fyysisesti_AdvK = {s = c99 "fyysisesti"} ;
+lin fyysisyys_NK = {s = d40 "fyysisyys"} ;
+lin fa'a'ri_NK = {s = d05 "fääri"} ;
+lin fo'rskotti_NK = {s = d05A "förskotti"} ;
+lin fo'o'nata_VK = {s = c73 "föönata"} ;
+lin fo'o'naus_NK = {s = d39 "föönaus"} ;
+lin fo'o'ni_NK = {s = d05 "fööni"} ;
+lin gaala_NK = {s = d09 "gaala"} ;
+lin gabardiini_NK = {s = d05 "gabardiini"} ;
+lin gabro_NK = {s = d01 "gabro"} ;
+lin gaeli_NK = {s = d05 "gaeli"} ;
+lin galaksi_NK = {s = d05 "galaksi"} ;
+lin galleria_NK = {s = d12 "galleria"} ;
+lin galleristi_NK = {s = d05 "galleristi"} ;
+lin gallialainen_NK = {s = d38 "gallialainen"} ;
+lin gallialaisuus_NK = {s = d40 "gallialaisuus"} ;
+lin gallona_NK = {s = d10 "gallona"} ;
+lin gallup_NK = {s = d06 "gallup"} ;
+lin gallupoida_VK = {s = c62 "gallupoida"} ;
+lin gallupointi_NK = {s = d05A "gallupointi"} ;
+lin galvaaninen_AK = {s = d38 "galvaaninen"} ;
+--+ lin galvaanisesti_AdvK = {s = c99 "galvaanisesti"} ;
+lin galvanoida_VK = {s = c62 "galvanoida"} ;
+lin galvanointi_NK = {s = d05A "galvanointi"} ;
+lin gambiitti_NK = {s = d05A "gambiitti"} ;
+lin gameetti_NK = {s = d05A "gameetti"} ;
+lin gamma_NK = {s = d09 "gamma"} ;
+lin gammaglobuliini_NK = {s = d05 "gammaglobuliini"} ;
+lin ganglio_NK = {s = d03 "ganglio"} ;
+lin gangsteri_NK = {s = d06 "gangsteri"} ;
+lin gangsterismi_NK = {s = d05 "gangsterismi"} ;
+lin gardenia_NK = {s = d12 "gardenia"} ;
+lin garderobi_NK = {s = d05 "garderobi"} ;
+lin gaselli_NK = {s = d06 "gaselli"} ;
+lin gasti_NK = {s = d05 "gasti"} ;
+lin gastronomi_NK = {s = d05 "gastronomi"} ;
+lin gastronomia_NK = {s = d12 "gastronomia"} ;
+lin gastronominen_AK = {s = d38 "gastronominen"} ;
+--+ lin gastronomisesti_AdvK = {s = c99 "gastronomisesti"} ;
+lin gastrula_NK = {s = d12 "gastrula"} ;
+lin gaucho_NK = {s = d01 "gaucho"} ;
+lin gaullelainen_NK = {s = d38 "gaullelainen"} ;
+lin gaullismi_NK = {s = d05 "gaullismi"} ;
+lin gaullisti_NK = {s = d05 "gaullisti"} ;
+lin gaullistinen_NK = {s = d38 "gaullistinen"} ;
+lin gay_NK = {s = d21 "gay"} ;
+lin geeli_NK = {s = d05 "geeli"} ;
+lin geeni_NK = {s = d05 "geeni"} ;
+lin geenimuokattu_NK = {s = d01A "geenimuokattu"} ;
+lin geenisto'_NK = {s = d02 "geenistö"} ;
+lin geimit_NK = {s = d05 "geimit"} ;
+lin gei_a_NK = {s = d09 "geiša"} ;
+lin geisir_NK = {s = d05 "geisir"} ;
+lin gelatiini_NK = {s = d05 "gelatiini"} ;
+lin geminaatta_NK = {s = d09A "geminaatta"} ;
+lin gemmologi_NK = {s = d05 "gemmologi"} ;
+lin gemmologia_NK = {s = d12 "gemmologia"} ;
+lin gemmologinen_AK = {s = d38 "gemmologinen"} ;
+--+ lin gemmologisesti_AdvK = {s = c99 "gemmologisesti"} ;
+lin genealogia_NK = {s = d12 "genealogia"} ;
+lin geneetikko_NK = {s = d04A "geneetikko"} ;
+lin geneettinen_AK = {s = d38 "geneettinen"} ;
+--+ lin geneettisesti_AdvK = {s = c99 "geneettisesti"} ;
+lin generaattori_NK = {s = d06 "generaattori"} ;
+lin generalissimus_NK = {s = d39 "generalissimus"} ;
+lin generoida_VK = {s = c62 "generoida"} ;
+lin generointi_NK = {s = d05A "generointi"} ;
+lin genetiikka_NK = {s = d09A "genetiikka"} ;
+lin genetiivi_NK = {s = d05 "genetiivi"} ;
+lin genever_NK = {s = d05 "genever"} ;
+lin genitaalinen_NK = {s = d38 "genitaalinen"} ;
+lin genitaalit_NK = {s = d05 "genitaalit"} ;
+lin genomi_NK = {s = d05 "genomi"} ;
+lin genre_NK = {s = d08 "genre"} ;
+lin gentlemanni_NK = {s = d05 "gentlemanni"} ;
+lin geodeetti_NK = {s = d05A "geodeetti"} ;
+lin geodeettinen_AK = {s = d38 "geodeettinen"} ;
+--+ lin geodeettisesti_AdvK = {s = c99 "geodeettisesti"} ;
+lin geodesia_NK = {s = d12 "geodesia"} ;
+lin geografia_NK = {s = d12 "geografia"} ;
+lin geologi_NK = {s = d05 "geologi"} ;
+lin geologia_NK = {s = d12 "geologia"} ;
+lin geologinen_AK = {s = d38 "geologinen"} ;
+--+ lin geologisesti_AdvK = {s = c99 "geologisesti"} ;
+lin geometria_NK = {s = d12 "geometria"} ;
+lin geometrinen_AK = {s = d38 "geometrinen"} ;
+--+ lin geometrisesti_AdvK = {s = c99 "geometrisesti"} ;
+lin geometrisuus_NK = {s = d40 "geometrisuus"} ;
+--+ lin geomorfologisesti_AdvK = {s = c99 "geomorfologisesti"} ;
+lin geosentrinen_NK = {s = d38 "geosentrinen"} ;
+lin gepardi_NK = {s = d05 "gepardi"} ;
+lin gerbera_NK = {s = d13 "gerbera"} ;
+lin gerbiili_NK = {s = d05 "gerbiili"} ;
+lin gerbilli_NK = {s = d05 "gerbilli"} ;
+lin geriatria_NK = {s = d12 "geriatria"} ;
+lin geriatrinen_AK = {s = d38 "geriatrinen"} ;
+--+ lin geriatrisesti_AdvK = {s = c99 "geriatrisesti"} ;
+lin germaani_NK = {s = d06 "germaani"} ;
+lin germaaninen_NK = {s = d38 "germaaninen"} ;
+lin germanisti_NK = {s = d05 "germanisti"} ;
+lin germanistiikka_NK = {s = d09A "germanistiikka"} ;
+lin gerontologia_NK = {s = d12 "gerontologia"} ;
+lin gerontologinen_NK = {s = d38 "gerontologinen"} ;
+lin getto_NK = {s = d01A "getto"} ;
+lin gettoistua_VK = {s = c52 "gettoistua"} ;
+lin gettoutua_VK = {s = c52A "gettoutua"} ;
+lin geysir_NK = {s = d05 "geysir"} ;
+lin ghetto_NK = {s = d01A "ghetto"} ;
+lin ghettoutua_VK = {s = c52A "ghettoutua"} ;
+lin gibboni_NK = {s = d06 "gibboni"} ;
+lin giganttinen_AK = {s = d38 "giganttinen"} ;
+--+ lin giganttisesti_AdvK = {s = c99 "giganttisesti"} ;
+lin giganttisuus_NK = {s = d40 "giganttisuus"} ;
+lin gigolo_NK = {s = d02 "gigolo"} ;
+lin giljotiini_NK = {s = d05 "giljotiini"} ;
+lin gimma_NK = {s = d09 "gimma"} ;
+lin ginger_ale_NK = {s = d08 "ginger ale"} ;
+lin gini_NK = {s = d05 "gini"} ;
+lin ginsengjuuri_NK = {s = d26 "ginsengjuuri"} ;
+lin gladiaattori_NK = {s = d06 "gladiaattori"} ;
+lin gladiolus_NK = {s = d39 "gladiolus"} ;
+lin glamour_NK = {s = d05 "glamour"} ;
+lin glaseerata_VK = {s = c73 "glaseerata"} ;
+lin glaseeraus_NK = {s = d39 "glaseeraus"} ;
+lin glasiaalinen_NK = {s = d38 "glasiaalinen"} ;
+lin glasnost_NK = {s = d05 "glasnost"} ;
+lin glaukooma_NK = {s = d10 "glaukooma"} ;
+lin glencheck_NK = {s = d05 "glencheck"} ;
+lin globaali_AK = {s = d06 "globaali"} ;
+lin globaalinen_AK = {s = d38 "globaalinen"} ;
+--+ lin globaalisesti_AdvK = {s = c99 "globaalisesti"} ;
+lin globaalistaa_VK = {s = c53 "globaalistaa"} ;
+--+ lin globaalisti_AdvK = {s = c99 "globaalisti"} ;
+lin globaalistua_VK = {s = c52 "globaalistua"} ;
+lin globaalisuus_NK = {s = d40 "globaalisuus"} ;
+lin globalisoitua_VK = {s = c52A "globalisoitua"} ;
+lin gloksinia_NK = {s = d12 "gloksinia"} ;
+lin glooria_NK = {s = d12 "glooria"} ;
+lin gloria_NK = {s = d12 "gloria"} ;
+lin glukoosi_NK = {s = d06 "glukoosi"} ;
+lin gluteeni_NK = {s = d05 "gluteeni"} ;
+lin gluteeniton_NK = {s = d34A "gluteeniton"} ;
+lin glyseriini_NK = {s = d05 "glyseriini"} ;
+lin glyseroli_NK = {s = d05 "glyseroli"} ;
+lin glo'gi_NK = {s = d05 "glögi"} ;
+lin gneissi_NK = {s = d05 "gneissi"} ;
+lin gnostikko_NK = {s = d04A "gnostikko"} ;
+lin gnostilainen_NK = {s = d38 "gnostilainen"} ;
+lin gnostilaisuus_NK = {s = d40 "gnostilaisuus"} ;
+lin gnostisismi_NK = {s = d05 "gnostisismi"} ;
+lin gnostisistinen_AK = {s = d38 "gnostisistinen"} ;
+--+ lin gnostisistisesti_AdvK = {s = c99 "gnostisistisesti"} ;
+lin gnuu_NK = {s = d18 "gnuu"} ;
+lin gobeliini_NK = {s = d05 "gobeliini"} ;
+lin go_go_NK = {s = d18 "go-go"} ;
+lin golf_NK = {s = d05 "golf"} ;
+lin golfaaja_NK = {s = d10 "golfaaja"} ;
+lin golfata_VK = {s = c73 "golfata"} ;
+lin golffari_NK = {s = d06 "golffari"} ;
+lin goljatti_NK = {s = d05A "goljatti"} ;
+lin gondoli_NK = {s = d06 "gondoli"} ;
+lin gondolieeri_NK = {s = d05 "gondolieeri"} ;
+lin gonggongi_NK = {s = d05 "gonggongi"} ;
+lin gongi_NK = {s = d05 "gongi"} ;
+lin gonokokki_NK = {s = d05A "gonokokki"} ;
+lin gonorrea_NK = {s = d12 "gonorrea"} ;
+lin goodwill_NK = {s = d05 "goodwill"} ;
+lin gootti_NK = {s = d05A "gootti"} ;
+lin goottilaisuus_NK = {s = d40 "goottilaisuus"} ;
+lin gorgonzola_NK = {s = d10 "gorgonzola"} ;
+lin gorilla_NK = {s = d13 "gorilla"} ;
+lin gospel_NK = {s = d05 "gospel"} ;
+lin gotiikka_NK = {s = d14A "gotiikka"} ;
+lin gouda_NK = {s = d10 "gouda"} ;
+--? lin gourmet_NK = {s = d22 "gourmet"} ;
+lin graafikko_NK = {s = d04A "graafikko"} ;
+lin graafinen_AK = {s = d38 "graafinen"} ;
+--+ lin graafisesti_AdvK = {s = c99 "graafisesti"} ;
+lin graavata_VK = {s = c73 "graavata"} ;
+lin graavi_NK = {s = d05 "graavi"} ;
+lin gradu_NK = {s = d01 "gradu"} ;
+lin graffiti_NK = {s = d05 "graffiti"} ;
+lin grafiikka_NK = {s = d14A "grafiikka"} ;
+lin grafiitti_NK = {s = d05A "grafiitti"} ;
+lin grafologi_NK = {s = d05 "grafologi"} ;
+lin grafologia_NK = {s = d12 "grafologia"} ;
+lin grafologinen_AK = {s = d38 "grafologinen"} ;
+--+ lin grafologisesti_AdvK = {s = c99 "grafologisesti"} ;
+lin grahamkeksi_NK = {s = d05 "grahamkeksi"} ;
+lin gramma_NK = {s = d09 "gramma"} ;
+lin grammaattinen_AK = {s = d38 "grammaattinen"} ;
+--+ lin grammaattisesti_AdvK = {s = c99 "grammaattisesti"} ;
+lin grammari_NK = {s = d06 "grammari"} ;
+lin gramofoni_NK = {s = d05 "gramofoni"} ;
+lin granaatti_NK = {s = d05A "granaatti"} ;
+lin granadilla_NK = {s = d09 "granadilla"} ;
+lin graniitti_NK = {s = d05A "graniitti"} ;
+lin graniittinen_NK = {s = d38 "graniittinen"} ;
+lin grape_NK = {s = d08 "grape"} ;
+lin gratiini_NK = {s = d06 "gratiini"} ;
+lin gratinoida_VK = {s = c62 "gratinoida"} ;
+lin gratinointi_NK = {s = d05A "gratinointi"} ;
+lin gratisti_NK = {s = d05 "gratisti"} ;
+lin gravidi_NK = {s = d05 "gravidi"} ;
+lin graviditeetti_NK = {s = d05A "graviditeetti"} ;
+lin gravis_NK = {s = d39 "gravis"} ;
+lin gravitaatio_NK = {s = d03 "gravitaatio"} ;
+lin gray_NK = {s = d21 "gray"} ;
+lin gregoriaaninen_NK = {s = d38 "gregoriaaninen"} ;
+lin greippi_NK = {s = d05A "greippi"} ;
+lin griljeerata_VK = {s = c73 "griljeerata"} ;
+lin grillata_VK = {s = c73 "grillata"} ;
+lin grillaus_NK = {s = d39 "grillaus"} ;
+lin grilli_NK = {s = d05 "grilli"} ;
+lin grogi_NK = {s = d05 "grogi"} ;
+lin groteski_NK = {s = d05 "groteski"} ;
+lin gruy_re_NK = {s = d08 "gruyère"} ;
+lin gryndata_VK = {s = c73 "gryndata"} ;
+lin gryndaus_NK = {s = d39 "gryndaus"} ;
+lin grynderi_NK = {s = d06 "grynderi"} ;
+lin gro'nlanti_NK = {s = d05A "grönlanti"} ;
+lin guano_NK = {s = d01 "guano"} ;
+lin guassi_NK = {s = d05 "guassi"} ;
+lin guava_NK = {s = d09 "guava"} ;
+lin gulassi_NK = {s = d05 "gulassi"} ;
+lin guldeni_NK = {s = d05 "guldeni"} ;
+lin gurmee_NK = {s = d20 "gurmee"} ;
+lin guru_NK = {s = d01 "guru"} ;
+lin guttaperkka_NK = {s = d09A "guttaperkka"} ;
+lin gynekologi_NK = {s = d05 "gynekologi"} ;
+lin gynekologia_NK = {s = d12 "gynekologia"} ;
+lin gynekologinen_NK = {s = d38 "gynekologinen"} ;
+lin gyrokopteri_NK = {s = d06 "gyrokopteri"} ;
+lin gyroskooppi_NK = {s = d05A "gyroskooppi"} ;
+lin ga'ngi_NK = {s = d05 "gängi"} ;
+lin ha_AdvK = {s = c99 "ha"} ;
+lin haa_AdvK = {s = c99 "haa"} ;
+lin haahka_NK = {s = d09 "haahka"} ;
+lin haahti_NK = {s = d07A "haahti"} ;
+lin haahuilla_VK = {s = c67 "haahuilla"} ;
+lin haaksi_NK = {s = d31 "haaksi"} ;
+lin haaksirikkoinen_NK = {s = d38 "haaksirikkoinen"} ;
+lin haaksirikkoutua_VK = {s = c52A "haaksirikkoutua"} ;
+lin haalata_VK = {s = c73 "haalata"} ;
+lin haalea_NK = {s = d15 "haalea"} ;
+lin haalentaa_VK = {s = c54A "haalentaa"} ;
+lin haalentua_VK = {s = c52A "haalentua"} ;
+lin haaleta_VK = {s = c72 "haaleta"} ;
+lin haaleus_NK = {s = d40 "haaleus"} ;
+lin haalia_VK = {s = c61 "haalia"} ;
+lin haalistaa_VK = {s = c53 "haalistaa"} ;
+lin haalistua_VK = {s = c52 "haalistua"} ;
+lin haaltua_VK = {s = c52A "haaltua"} ;
+lin haamilainen_NK = {s = d38 "haamilainen"} ;
+lin haamu_NK = {s = d01 "haamu"} ;
+lin haapa_NK = {s = d09A "haapa"} ;
+lin haapainen_NK = {s = d38 "haapainen"} ;
+lin haapana_NK = {s = d12 "haapana"} ;
+lin haara_NK = {s = d09 "haara"} ;
+lin haaraantua_VK = {s = c52A "haaraantua"} ;
+lin haarainen_NK = {s = d38 "haarainen"} ;
+lin haarake_NK = {s = d48A "haarake"} ;
+lin haarakkeinen_NK = {s = d38 "haarakkeinen"} ;
+lin haarallaan_AdvK = {s = c99 "haarallaan"} ;
+lin haarauma_NK = {s = d10 "haarauma"} ;
+lin haarautua_VK = {s = c52A "haarautua"} ;
+lin haarautuma_NK = {s = d10 "haarautuma"} ;
+lin haarautumiskohta_NK = {s = d10A "haarautumiskohta"} ;
+lin haaremi_NK = {s = d06 "haaremi"} ;
+lin haarniska_NK = {s = d13 "haarniska"} ;
+lin haarniskoida_VK = {s = c62 "haarniskoida"} ;
+lin haaroa_VK = {s = c52 "haaroa"} ;
+lin haaroittaa_VK = {s = c53A "haaroittaa"} ;
+lin haaroittua_VK = {s = c52A "haaroittua"} ;
+lin haaroitus_NK = {s = d39 "haaroitus"} ;
+lin haarottaa_VK = {s = c53A "haarottaa"} ;
+lin haarukoida_VK = {s = c62 "haarukoida"} ;
+lin haarukointi_NK = {s = d05A "haarukointi"} ;
+lin haasia_NK = {s = d12 "haasia"} ;
+lin haasioida_VK = {s = c62 "haasioida"} ;
+lin haaska_NK = {s = d09 "haaska"} ;
+lin haaskaantua_VK = {s = c52A "haaskaantua"} ;
+lin haaskata_VK = {s = c73 "haaskata"} ;
+lin haaskaus_NK = {s = d39 "haaskaus"} ;
+lin haaskautua_VK = {s = c52A "haaskautua"} ;
+lin haaskio_NK = {s = d03 "haaskio"} ;
+lin haaskuu_NK = {s = d17 "haaskuu"} ;
+lin haastaa_VK = {s = c56 "haastaa"} ;
+lin haastaja_NK = {s = d10 "haastaja"} ;
+lin haastatella_VK = {s = c67A "haastatella"} ;
+lin haastateltava_NK = {s = d10 "haastateltava"} ;
+lin haastattaa_VK = {s = c53A "haastattaa"} ;
+lin haastattelija_NK = {s = d12 "haastattelija"} ;
+lin haastattelu_NK = {s = d02 "haastattelu"} ;
+lin haastava_NK = {s = d10 "haastava"} ;
+lin haastavuus_NK = {s = d40 "haastavuus"} ;
+lin haaste_NK = {s = d48 "haaste"} ;
+lin haasteaika_NK = {s = d09A "haasteaika"} ;
+lin haasteellinen_NK = {s = d38 "haasteellinen"} ;
+lin haastella_VK = {s = c67 "haastella"} ;
+lin haava_1_NK = {s = d09 "haava"} ;
+lin haava_2_AdvK = {s = c99 "haava"} ;
+lin haavainen_NK = {s = d38 "haavainen"} ;
+lin haavakko_NK = {s = d04A "haavakko"} ;
+lin haavauma_NK = {s = d10 "haavauma"} ;
+lin haavautua_VK = {s = c52A "haavautua"} ;
+lin haavautuma_NK = {s = d10 "haavautuma"} ;
+lin haave_NK = {s = d48 "haave"} ;
+lin haaveellinen_AK = {s = d38 "haaveellinen"} ;
+--+ lin haaveellisesti_AdvK = {s = c99 "haaveellisesti"} ;
+lin haaveellisuus_NK = {s = d40 "haaveellisuus"} ;
+lin haaveilija_NK = {s = d12 "haaveilija"} ;
+lin haaveilla_VK = {s = c67 "haaveilla"} ;
+lin haaveilu_NK = {s = d02 "haaveilu"} ;
+lin haaveksia_VK = {s = c61 "haaveksia"} ;
+lin haaveksija_NK = {s = d12 "haaveksija"} ;
+lin haavi_NK = {s = d05 "haavi"} ;
+lin haavia_VK = {s = c61 "haavia"} ;
+lin haavikko_NK = {s = d04A "haavikko"} ;
+lin haavisto_NK = {s = d02 "haavisto"} ;
+lin haavoittaa_VK = {s = c53A "haavoittaa"} ;
+lin haavoittua_VK = {s = c52A "haavoittua"} ;
+lin haavoittuva_NK = {s = d10 "haavoittuva"} ;
+lin haavoittuvuus_NK = {s = d40 "haavoittuvuus"} ;
+lin haavuri_NK = {s = d06 "haavuri"} ;
+lin habitaatti_NK = {s = d05A "habitaatti"} ;
+lin habitus_NK = {s = d39 "habitus"} ;
+lin hadroni_NK = {s = d05 "hadroni"} ;
+lin haennainen_NK = {s = d38 "haennainen"} ;
+lin haenta_NK = {s = d09A "haenta"} ;
+lin haeskella_VK = {s = c67 "haeskella"} ;
+lin haeskelu_NK = {s = d02 "haeskelu"} ;
+lin haettaa_VK = {s = c53A "haettaa"} ;
+lin haetuttaa_VK = {s = c53A "haetuttaa"} ;
+lin hah_AdvK = {s = c99 "hah"} ;
+lin hahattaa_VK = {s = c53A "hahattaa"} ;
+lin hahlo_NK = {s = d01 "hahlo"} ;
+lin hahmo_NK = {s = d01 "hahmo"} ;
+lin hahmotella_VK = {s = c67A "hahmotella"} ;
+lin hahmotelma_NK = {s = d10 "hahmotelma"} ;
+lin hahmottaa_VK = {s = c53A "hahmottaa"} ;
+lin hahmotteilla_AdvK = {s = c99 "hahmotteilla"} ;
+lin hahmotteinen_NK = {s = d38 "hahmotteinen"} ;
+lin hahmottelu_NK = {s = d02 "hahmottelu"} ;
+lin hahmottua_VK = {s = c52A "hahmottua"} ;
+lin hahmotus_NK = {s = d39 "hahmotus"} ;
+lin hahmoutua_VK = {s = c52A "hahmoutua"} ;
+lin hahtuva_NK = {s = d10 "hahtuva"} ;
+lin hai_NK = {s = d18 "hai"} ;
+lin haihatella_VK = {s = c67A "haihatella"} ;
+lin haihattelija_NK = {s = d12 "haihattelija"} ;
+lin haihattelu_NK = {s = d02 "haihattelu"} ;
+lin haihdutin_NK = {s = d33A "haihdutin"} ;
+lin haihduttaa_VK = {s = c53A "haihduttaa"} ;
+lin haihduttamo_NK = {s = d02 "haihduttamo"} ;
+lin haihdutus_NK = {s = d39 "haihdutus"} ;
+lin haihtua_VK = {s = c52A "haihtua"} ;
+lin haikailla_VK = {s = c67 "haikailla"} ;
+lin haikailu_NK = {s = d02 "haikailu"} ;
+lin haikea_AK = {s = d15 "haikea"} ;
+--+ lin haikeasti_AdvK = {s = c99 "haikeasti"} ;
+lin haikeus_NK = {s = d40 "haikeus"} ;
+lin haiku_1_NK = {s = d01A "haiku"} ;
+lin haiku_2_NK = {s = d01 "haiku"} ;
+lin hailakkuus_NK = {s = d40 "hailakkuus"} ;
+lin hailea_NK = {s = d15 "hailea"} ;
+lin haili_NK = {s = d05 "haili"} ;
+lin haima_NK = {s = d09 "haima"} ;
+lin haipua_VK = {s = c52A "haipua"} ;
+lin hairahdus_NK = {s = d39 "hairahdus"} ;
+lin hairahtaa_VK = {s = c53A "hairahtaa"} ;
+lin hairahtua_VK = {s = c52A "hairahtua"} ;
+lin hairahtuvainen_NK = {s = d38 "hairahtuvainen"} ;
+lin haiskahtaa_VK = {s = c53A "haiskahtaa"} ;
+lin haista_VK = {s = c66 "haista"} ;
+lin haistaa_VK = {s = c56 "haistaa"} ;
+lin haistatella_VK = {s = c67A "haistatella"} ;
+lin haistattaa_VK = {s = c53A "haistattaa"} ;
+lin haistattelu_NK = {s = d02 "haistattelu"} ;
+lin haistella_VK = {s = c67 "haistella"} ;
+lin haistelu_NK = {s = d02 "haistelu"} ;
+lin haisti_NK = {s = d05 "haisti"} ;
+lin haisu_NK = {s = d01 "haisu"} ;
+lin haisuliini_NK = {s = d05 "haisuliini"} ;
+lin haitallinen_AK = {s = d38 "haitallinen"} ;
+--+ lin haitallisesti_AdvK = {s = c99 "haitallisesti"} ;
+lin haitallisuus_NK = {s = d40 "haitallisuus"} ;
+lin haitari_NK = {s = d06 "haitari"} ;
+lin haitata_VK = {s = c73A "haitata"} ;
+lin haitattomasti_AdvK = {s = c99 "haitattomasti"} ;
+lin haitattomuus_NK = {s = d40 "haitattomuus"} ;
+lin haite_NK = {s = d48A "haite"} ;
+lin haitek_NK = {s = d05 "haitek"} ;
+lin haitekki_NK = {s = d05A "haitekki"} ;
+lin haitta_NK = {s = d09A "haitta"} ;
+lin haituva_NK = {s = d10 "haituva"} ;
+lin haiven_NK = {s = d32 "haiven"} ;
+lin haiveninen_NK = {s = d38 "haiveninen"} ;
+lin hajaannus_NK = {s = d39 "hajaannus"} ;
+lin hajaannuttaa_VK = {s = c53A "hajaannuttaa"} ;
+lin hajaantua_VK = {s = c52A "hajaantua"} ;
+lin hajahtaa_VK = {s = c53A "hajahtaa"} ;
+lin hajakoko_NK = {s = d01A "hajakoko"} ;
+lin hajalla_AdvK = {s = c99 "hajalla"} ;
+lin hajallaan_AdvK = {s = c99 "hajallaan"} ;
+lin hajalle_AdvK = {s = c99 "hajalle"} ;
+lin hajalleen_AdvK = {s = c99 "hajalleen"} ;
+lin hajallinen_NK = {s = d38 "hajallinen"} ;
+--+ lin hajamielisesti_AdvK = {s = c99 "hajamielisesti"} ;
+lin hajanainen_AK = {s = d38 "hajanainen"} ;
+--+ lin hajanaisesti_AdvK = {s = c99 "hajanaisesti"} ;
+lin hajanaisuus_NK = {s = d40 "hajanaisuus"} ;
+lin hajareisin_AdvK = {s = c99 "hajareisin"} ;
+lin hajasa'a'rin_AdvK = {s = c99 "hajasäärin"} ;
+lin hajauma_NK = {s = d10 "hajauma"} ;
+lin hajauttaa_VK = {s = c53A "hajauttaa"} ;
+lin hajautua_VK = {s = c52A "hajautua"} ;
+lin hajautuma_NK = {s = d10 "hajautuma"} ;
+lin hajautus_NK = {s = d39 "hajautus"} ;
+lin haje_NK = {s = d48 "haje"} ;
+lin hajonta_NK = {s = d09A "hajonta"} ;
+lin hajota_VK = {s = c74 "hajota"} ;
+lin hajottaa_VK = {s = c53A "hajottaa"} ;
+lin hajottaja_NK = {s = d10 "hajottaja"} ;
+lin hajottamo_NK = {s = d02 "hajottamo"} ;
+lin hajotus_NK = {s = d39 "hajotus"} ;
+lin haju_NK = {s = d01 "haju"} ;
+lin hajuinen_NK = {s = d38 "hajuinen"} ;
+lin hajustaa_VK = {s = c53 "hajustaa"} ;
+lin hajuste_NK = {s = d48 "hajuste"} ;
+lin hajuton_NK = {s = d34A "hajuton"} ;
+lin hajuttomasti_AdvK = {s = c99 "hajuttomasti"} ;
+lin hajuttomuus_NK = {s = d40 "hajuttomuus"} ;
+lin haka_1_NK = {s = d09A "haka"} ;
+lin haka_2_NK = {s = d09A "haka"} ;
+lin hakanen_NK = {s = d38 "hakanen"} ;
+lin hakata_VK = {s = c73A "hakata"} ;
+lin hakaus_NK = {s = d39 "hakaus"} ;
+lin hakautua_VK = {s = c52A "hakautua"} ;
+lin hake_NK = {s = d48A "hake"} ;
+lin hakea_VK = {s = c58A "hakea"} ;
+lin hakemisto_NK = {s = d01 "hakemisto"} ;
+lin hakemus_NK = {s = d39 "hakemus"} ;
+lin haketin_NK = {s = d33A "haketin"} ;
+lin hakettaa_VK = {s = c53A "hakettaa"} ;
+lin hakettamo_NK = {s = d02 "hakettamo"} ;
+lin haketus_NK = {s = d39 "haketus"} ;
+lin hakeutua_VK = {s = c52A "hakeutua"} ;
+lin hakija_NK = {s = d12 "hakija"} ;
+lin hakkaaja_NK = {s = d10 "hakkaaja"} ;
+lin hakkaantua_VK = {s = c52A "hakkaantua"} ;
+lin hakkailla_VK = {s = c67 "hakkailla"} ;
+lin hakkailu_NK = {s = d02 "hakkailu"} ;
+lin hakkapeliitta_NK = {s = d09A "hakkapeliitta"} ;
+lin hakkaus_NK = {s = d39 "hakkaus"} ;
+lin hakkauttaa_VK = {s = c53A "hakkauttaa"} ;
+lin hakkautua_VK = {s = c52A "hakkautua"} ;
+lin hakkelus_NK = {s = d39 "hakkelus"} ;
+lin hakkeri_NK = {s = d06 "hakkeri"} ;
+lin hakkeroida_VK = {s = c62 "hakkeroida"} ;
+lin hakkerointi_NK = {s = d05A "hakkerointi"} ;
+lin hakku_NK = {s = d01A "hakku"} ;
+lin hakkuri_NK = {s = d06 "hakkuri"} ;
+lin hakkuu_NK = {s = d17 "hakkuu"} ;
+lin hakkuuttaa_VK = {s = c53A "hakkuuttaa"} ;
+lin hako_NK = {s = d01A "hako"} ;
+lin hakoteille_AdvK = {s = c99 "hakoteille"} ;
+lin hakoteilla'_AdvK = {s = c99 "hakoteillä"} ;
+lin haksahdus_NK = {s = d39 "haksahdus"} ;
+lin haksahtaa_VK = {s = c53A "haksahtaa"} ;
+lin haku_NK = {s = d01A "haku"} ;
+lin hakuaika_NK = {s = d09A "hakuaika"} ;
+lin hakuinen_AK = {s = d38 "hakuinen"} ;
+--+ lin hakuisesti_AdvK = {s = c99 "hakuisesti"} ;
+lin hakuisuus_NK = {s = d40 "hakuisuus"} ;
+lin hakusassa_AdvK = {s = c99 "hakusassa"} ;
+lin halailla_VK = {s = c67 "halailla"} ;
+lin halailu_NK = {s = d02 "halailu"} ;
+lin halaista_VK = {s = c66 "halaista"} ;
+lin halata_1_VK = {s = c73 "halata"} ;
+lin halata_2_VK = {s = c73 "halata"} ;
+lin halatti_NK = {s = d05A "halatti"} ;
+lin halaus_NK = {s = d39 "halaus"} ;
+lin halava_NK = {s = d10 "halava"} ;
+lin halia_VK = {s = c61 "halia"} ;
+lin halikkain_AdvK = {s = c99 "halikkain"} ;
+lin haljakka_NK = {s = d14A "haljakka"} ;
+lin haljas_NK = {s = d39 "haljas"} ;
+lin haljeta_VK = {s = c74A "haljeta"} ;
+lin halju_NK = {s = d01 "halju"} ;
+lin halkaisija_NK = {s = d12 "halkaisija"} ;
+lin halkaista_VK = {s = c66 "halkaista"} ;
+lin halkaisu_NK = {s = d02 "halkaisu"} ;
+lin halkeama_NK = {s = d10 "halkeama"} ;
+lin halkeaminen_NK = {s = d38 "halkeaminen"} ;
+lin halkeilla_VK = {s = c67 "halkeilla"} ;
+lin halkeilu_NK = {s = d02 "halkeilu"} ;
+lin halki_AdvK = {s = c99 "halki"} ;
+lin halkio_NK = {s = d03 "halkio"} ;
+lin halkioinen_NK = {s = d38 "halkioinen"} ;
+lin halko_NK = {s = d01A "halko"} ;
+lin halkoa_VK = {s = c52A "halkoa"} ;
+lin halkoinen_NK = {s = d38 "halkoinen"} ;
+lin halla_NK = {s = d09 "halla"} ;
+lin hallainen_NK = {s = d38 "hallainen"} ;
+lin hallanvaara_NK = {s = d09 "hallanvaara"} ;
+lin hallava_NK = {s = d10 "hallava"} ;
+lin halleluja_AdvK = {s = c99 "halleluja"} ;
+lin halli_1_NK = {s = d05 "halli"} ;
+lin halli_2_NK = {s = d05 "halli"} ;
+lin hallinnoida_VK = {s = c62 "hallinnoida"} ;
+lin hallinnollinen_AK = {s = d38 "hallinnollinen"} ;
+--+ lin hallinnollisesti_AdvK = {s = c99 "hallinnollisesti"} ;
+lin hallinta_NK = {s = d09A "hallinta"} ;
+lin hallinto_NK = {s = d01A "hallinto"} ;
+lin hallita_VK = {s = c69 "hallita"} ;
+lin hallitseva_NK = {s = d10 "hallitseva"} ;
+lin hallitsevuus_NK = {s = d40 "hallitsevuus"} ;
+lin hallitsija_NK = {s = d12 "hallitsija"} ;
+lin hallittavuus_NK = {s = d40 "hallittavuus"} ;
+lin hallittu_NK = {s = d01A "hallittu"} ;
+lin hallitus_NK = {s = d39 "hallitus"} ;
+lin hallitusaika_NK = {s = d09A "hallitusaika"} ;
+lin hallitusti_AdvK = {s = c99 "hallitusti"} ;
+lin hallusinaatio_NK = {s = d03 "hallusinaatio"} ;
+lin hallusinatorinen_NK = {s = d38 "hallusinatorinen"} ;
+lin hallusinogeeni_NK = {s = d05 "hallusinogeeni"} ;
+lin hallussa_AdvK = {s = c99 "hallussa"} ;
+lin hallusta_AdvK = {s = c99 "hallusta"} ;
+lin halma_NK = {s = d09 "halma"} ;
+lin halme_NK = {s = d48 "halme"} ;
+lin halogeeni_NK = {s = d05 "halogeeni"} ;
+lin haloo_NK = {s = d17 "haloo"} ;
+lin halpa_NK = {s = d09A "halpa"} ;
+--+ lin halpamaisesti_AdvK = {s = c99 "halpamaisesti"} ;
+lin halpamaisuus_NK = {s = d40 "halpamaisuus"} ;
+lin halpuus_NK = {s = d40 "halpuus"} ;
+lin halssi_NK = {s = d05 "halssi"} ;
+lin halstari_NK = {s = d06 "halstari"} ;
+lin halstaroida_VK = {s = c62 "halstaroida"} ;
+lin halsteri_NK = {s = d06 "halsteri"} ;
+lin halsteroida_VK = {s = c62 "halsteroida"} ;
+lin halstrata_VK = {s = c73 "halstrata"} ;
+lin haltija_NK = {s = d12 "haltija"} ;
+lin haltijatar_NK = {s = d32A "haltijatar"} ;
+lin haltioihinsa_AdvK = {s = c99 "haltioihinsa"} ;
+lin haltioissaan_AdvK = {s = c99 "haltioissaan"} ;
+lin haltioitua_VK = {s = c52A "haltioitua"} ;
+lin haltuun_AdvK = {s = c99 "haltuun"} ;
+lin halu_NK = {s = d01 "halu"} ;
+lin haluinen_NK = {s = d38 "haluinen"} ;
+lin halukas_AK = {s = d41A "halukas"} ;
+--+ lin halukkaasti_AdvK = {s = c99 "halukkaasti"} ;
+lin halukkuus_NK = {s = d40 "halukkuus"} ;
+lin halullinen_NK = {s = d38 "halullinen"} ;
+lin haluta_VK = {s = c75 "haluta"} ;
+lin haluton_NK = {s = d34A "haluton"} ;
+lin haluttaa_VK = {s = c53A "haluttaa"} ;
+lin haluttava_NK = {s = d10 "haluttava"} ;
+lin haluttomasti_AdvK = {s = c99 "haluttomasti"} ;
+lin haluttomuus_NK = {s = d40 "haluttomuus"} ;
+lin haluttu_NK = {s = d01A "haluttu"} ;
+lin halva_NK = {s = d09 "halva"} ;
+lin halvaannuttaa_VK = {s = c53A "halvaannuttaa"} ;
+lin halvaantua_VK = {s = c52A "halvaantua"} ;
+lin halvata_VK = {s = c73 "halvata"} ;
+lin halvattu_NK = {s = d01A "halvattu"} ;
+lin halvaus_NK = {s = d39 "halvaus"} ;
+lin halvauttaa_VK = {s = c53A "halvauttaa"} ;
+lin halvautua_VK = {s = c52A "halvautua"} ;
+lin halveerata_VK = {s = c73 "halveerata"} ;
+lin halveksia_VK = {s = c61 "halveksia"} ;
+lin halveksinta_NK = {s = d09A "halveksinta"} ;
+lin halveksua_VK = {s = c52 "halveksua"} ;
+lin halveksunta_NK = {s = d10A "halveksunta"} ;
+lin halvennus_NK = {s = d39 "halvennus"} ;
+lin halventaa_VK = {s = c54A "halventaa"} ;
+lin halventavasti_AdvK = {s = c99 "halventavasti"} ;
+lin halventua_VK = {s = c52A "halventua"} ;
+lin halveta_VK = {s = c72A "halveta"} ;
+lin hamaan_AdvK = {s = c99 "hamaan"} ;
+lin hamara_NK = {s = d12 "hamara"} ;
+lin hamassa_AdvK = {s = c99 "hamassa"} ;
+lin hamasta_AdvK = {s = c99 "hamasta"} ;
+lin hame_NK = {s = d48 "hame"} ;
+lin hameinen_NK = {s = d38 "hameinen"} ;
+lin hammas_NK = {s = d41A "hammas"} ;
+lin hammastaa_VK = {s = c53 "hammastaa"} ;
+lin hammaste_NK = {s = d48 "hammaste"} ;
+lin hammastella_VK = {s = c67 "hammastella"} ;
+lin hammastua_VK = {s = c52 "hammastua"} ;
+lin hammastuksinen_NK = {s = d38 "hammastuksinen"} ;
+lin hammastus_NK = {s = d39 "hammastus"} ;
+lin hampaallinen_NK = {s = d38 "hampaallinen"} ;
+lin hampaanjuuri_NK = {s = d26 "hampaanjuuri"} ;
+lin hampaaton_NK = {s = d34A "hampaaton"} ;
+lin hampaattomasti_AdvK = {s = c99 "hampaattomasti"} ;
+lin hampaattomuus_NK = {s = d40 "hampaattomuus"} ;
+lin hampainen_NK = {s = d38 "hampainen"} ;
+lin hampaisto_NK = {s = d01 "hampaisto"} ;
+lin hamppari_NK = {s = d06 "hamppari"} ;
+lin hampparoida_VK = {s = c62 "hampparoida"} ;
+lin hamppu_NK = {s = d01A "hamppu"} ;
+lin hampsia_VK = {s = c61 "hampsia"} ;
+lin hampurilainen_NK = {s = d38 "hampurilainen"} ;
+lin hampurilaisbaari_NK = {s = d05 "hampurilaisbaari"} ;
+lin hampuusi_NK = {s = d06 "hampuusi"} ;
+lin hamsteri_NK = {s = d06 "hamsteri"} ;
+lin hamstraaja_NK = {s = d10 "hamstraaja"} ;
+lin hamstrata_VK = {s = c73 "hamstrata"} ;
+lin hamuilla_VK = {s = c67 "hamuilla"} ;
+lin hamuta_VK = {s = c75 "hamuta"} ;
+lin hana_NK = {s = d09 "hana"} ;
+lin hanakasti_AdvK = {s = c99 "hanakasti"} ;
+lin hanakka_NK = {s = d14A "hanakka"} ;
+lin hanakkuus_NK = {s = d40 "hanakkuus"} ;
+lin handicap_NK = {s = d05 "handicap"} ;
+lin handu_NK = {s = d01 "handu"} ;
+lin hangata_VK = {s = c73A "hangata"} ;
+lin hangoitella_VK = {s = c67A "hangoitella"} ;
+lin hangollinen_NK = {s = d38 "hangollinen"} ;
+lin hangota_VK = {s = c74A "hangota"} ;
+lin hanhi_NK = {s = d07 "hanhi"} ;
+lin hanhikki_NK = {s = d05A "hanhikki"} ;
+lin hanikka_NK = {s = d14A "hanikka"} ;
+lin hanka_NK = {s = d09A "hanka"} ;
+lin hankaantua_VK = {s = c52A "hankaantua"} ;
+lin hankaiminen_NK = {s = d38 "hankaiminen"} ;
+lin hankain_NK = {s = d33 "hankain"} ;
+lin hankainen_NK = {s = d38 "hankainen"} ;
+lin hankala_NK = {s = d10 "hankala"} ;
+lin hankaloittaa_VK = {s = c53A "hankaloittaa"} ;
+lin hankaloitua_VK = {s = c52A "hankaloitua"} ;
+lin hankaluus_NK = {s = d40 "hankaluus"} ;
+lin hankauma_NK = {s = d10 "hankauma"} ;
+lin hankaus_NK = {s = d39 "hankaus"} ;
+lin hankauskohta_NK = {s = d10A "hankauskohta"} ;
+lin hankautua_VK = {s = c52A "hankautua"} ;
+lin hankautuma_NK = {s = d10 "hankautuma"} ;
+lin hanke_NK = {s = d48A "hanke"} ;
+lin hanki_NK = {s = d07A "hanki"} ;
+lin hankiainen_NK = {s = d38 "hankiainen"} ;
+lin hankinnainen_NK = {s = d38 "hankinnainen"} ;
+lin hankinta_NK = {s = d09A "hankinta"} ;
+lin hankinta_aika_NK = {s = d09A "hankinta-aika"} ;
+lin hankkia_VK = {s = c61A "hankkia"} ;
+lin hankkija_NK = {s = d12 "hankkija"} ;
+lin hankkiutua_VK = {s = c52A "hankkiutua"} ;
+lin hanko_NK = {s = d01A "hanko"} ;
+lin hansa_NK = {s = d09 "hansa"} ;
+lin hansikas_NK = {s = d41A "hansikas"} ;
+lin hanska_NK = {s = d09 "hanska"} ;
+lin hanslankari_NK = {s = d06 "hanslankari"} ;
+lin hanti_NK = {s = d05 "hanti"} ;
+lin hantlankari_NK = {s = d06 "hantlankari"} ;
+lin hanttapuli_NK = {s = d05 "hanttapuli"} ;
+lin hantti_NK = {s = d05A "hantti"} ;
+lin hanttiin_AdvK = {s = c99 "hanttiin"} ;
+lin hanuri_NK = {s = d06 "hanuri"} ;
+lin hanuristi_NK = {s = d05 "hanuristi"} ;
+lin hapan_NK = {s = d33A "hapan"} ;
+lin hapanjuuri_NK = {s = d26 "hapanjuuri"} ;
+lin hapannuttaa_VK = {s = c53A "hapannuttaa"} ;
+lin hapantua_VK = {s = c52A "hapantua"} ;
+lin haparoida_VK = {s = c62 "haparoida"} ;
+lin haparointi_NK = {s = d05A "haparointi"} ;
+lin hapata_VK = {s = c72A "hapata"} ;
+lin hapate_NK = {s = d48A "hapate"} ;
+lin hapatin_NK = {s = d33A "hapatin"} ;
+lin hapattaa_VK = {s = c53A "hapattaa"} ;
+lin hapattamaton_NK = {s = d34A "hapattamaton"} ;
+lin hapatus_NK = {s = d39 "hapatus"} ;
+lin hapekas_NK = {s = d41A "hapekas"} ;
+lin hapera_NK = {s = d11 "hapera"} ;
+lin hapero_NK = {s = d02 "hapero"} ;
+lin hapertua_VK = {s = c52A "hapertua"} ;
+lin hapete_NK = {s = d48A "hapete"} ;
+lin hapetin_NK = {s = d33A "hapetin"} ;
+lin hapettaa_VK = {s = c53A "hapettaa"} ;
+lin hapettua_VK = {s = c52A "hapettua"} ;
+lin hapettuma_NK = {s = d10 "hapettuma"} ;
+lin hapetus_NK = {s = d39 "hapetus"} ;
+lin haploidi_NK = {s = d05 "haploidi"} ;
+lin haploidinen_NK = {s = d38 "haploidinen"} ;
+lin hapokas_NK = {s = d41A "hapokas"} ;
+lin hapoke_NK = {s = d48A "hapoke"} ;
+lin hapokkuus_NK = {s = d40 "hapokkuus"} ;
+lin hapottaa_VK = {s = c53A "hapottaa"} ;
+lin hapottua_VK = {s = c52A "hapottua"} ;
+lin happamasti_AdvK = {s = c99 "happamasti"} ;
+lin happamaton_NK = {s = d34A "happamaton"} ;
+lin happamesti_AdvK = {s = c99 "happamesti"} ;
+lin happamoittaa_VK = {s = c53A "happamoittaa"} ;
+lin happamoitua_VK = {s = c52A "happamoitua"} ;
+lin happamuus_NK = {s = d40 "happamuus"} ;
+lin happening_NK = {s = d05 "happening"} ;
+lin happi_NK = {s = d07A "happi"} ;
+lin happo_NK = {s = d01A "happo"} ;
+lin happoinen_NK = {s = d38 "happoinen"} ;
+lin happoisuus_NK = {s = d40 "happoisuus"} ;
+lin happy_hour_AdvK = {s = c99 "happy hour"} ;
+lin hapro_NK = {s = d01 "hapro"} ;
+lin hapsenkakkiainen_NK = {s = d38 "hapsenkakkiainen"} ;
+lin hapsi_NK = {s = d07 "hapsi"} ;
+lin hapsikka_NK = {s = d14A "hapsikka"} ;
+lin hapsottaa_VK = {s = c53A "hapsottaa"} ;
+lin hapsu_NK = {s = d01 "hapsu"} ;
+lin hapsuinen_NK = {s = d38 "hapsuinen"} ;
+lin hapsullinen_NK = {s = d38 "hapsullinen"} ;
+lin hapsuttaa_VK = {s = c53A "hapsuttaa"} ;
+lin hapuilla_VK = {s = c67 "hapuilla"} ;
+lin hara_NK = {s = d09 "hara"} ;
+lin harajuuri_NK = {s = d26 "harajuuri"} ;
+lin harakka_NK = {s = d14A "harakka"} ;
+lin haralla_AdvK = {s = c99 "haralla"} ;
+lin harallaan_AdvK = {s = c99 "harallaan"} ;
+lin haralle_AdvK = {s = c99 "haralle"} ;
+lin haralleen_AdvK = {s = c99 "haralleen"} ;
+lin harata_VK = {s = c73 "harata"} ;
+lin haraus_NK = {s = d39 "haraus"} ;
+lin harava_NK = {s = d11 "harava"} ;
+lin haravoida_VK = {s = c68 "haravoida"} ;
+lin hardware_NK = {s = d08 "hardware"} ;
+lin harha_NK = {s = d09 "harha"} ;
+lin harhaan_AdvK = {s = c99 "harhaan"} ;
+lin harhaannuttaa_VK = {s = c53A "harhaannuttaa"} ;
+lin harhaantua_VK = {s = c52A "harhaantua"} ;
+lin harhaanvieva'_NK = {s = d10 "harhaanvievä"} ;
+lin harhailla_VK = {s = c67 "harhailla"} ;
+lin harhailu_NK = {s = d02 "harhailu"} ;
+lin harhainen_NK = {s = d38 "harhainen"} ;
+lin harhama_NK = {s = d10 "harhama"} ;
+lin harhassa_AdvK = {s = c99 "harhassa"} ;
+lin harhateille_AdvK = {s = c99 "harhateille"} ;
+lin harhateilla'_AdvK = {s = c99 "harhateillä"} ;
+lin harhateilta'_AdvK = {s = c99 "harhateiltä"} ;
+lin harhauma_NK = {s = d10 "harhauma"} ;
+lin harhauttaa_VK = {s = c53A "harhauttaa"} ;
+lin harhautua_VK = {s = c52A "harhautua"} ;
+lin harhautuma_NK = {s = d10 "harhautuma"} ;
+lin harhautus_NK = {s = d39 "harhautus"} ;
+lin harilla_AdvK = {s = c99 "harilla"} ;
+lin harillaan_AdvK = {s = c99 "harillaan"} ;
+lin harille_AdvK = {s = c99 "harille"} ;
+lin harilleen_AdvK = {s = c99 "harilleen"} ;
+lin harittaa_VK = {s = c53A "harittaa"} ;
+lin haritus_NK = {s = d39 "haritus"} ;
+lin harja_NK = {s = d09 "harja"} ;
+lin harjaannus_NK = {s = d39 "harjaannus"} ;
+lin harjaannuttaa_VK = {s = c53A "harjaannuttaa"} ;
+lin harjaantua_VK = {s = c52A "harjaantua"} ;
+lin harjaantumaton_NK = {s = d34A "harjaantumaton"} ;
+lin harjaantuneisuus_NK = {s = d40 "harjaantuneisuus"} ;
+lin harjainen_NK = {s = d38 "harjainen"} ;
+--? lin harjakaiset_NK = {s = d38 "harjakaiset"} ;
+lin harjake_NK = {s = d48A "harjake"} ;
+lin harjaksinen_NK = {s = d38 "harjaksinen"} ;
+lin harjanne_NK = {s = d48A "harjanne"} ;
+--? lin harjannostajaiset_NK = {s = d38 "harjannostajaiset"} ;
+lin harjanteinen_NK = {s = d38 "harjanteinen"} ;
+lin harjas_NK = {s = d39 "harjas"} ;
+lin harjata_VK = {s = c73 "harjata"} ;
+lin harjaus_NK = {s = d39 "harjaus"} ;
+lin harjava_NK = {s = d10 "harjava"} ;
+lin harjoite_NK = {s = d48A "harjoite"} ;
+lin harjoitella_VK = {s = c67A "harjoitella"} ;
+lin harjoitelma_NK = {s = d10 "harjoitelma"} ;
+lin harjoittaa_VK = {s = c53A "harjoittaa"} ;
+lin harjoittaja_NK = {s = d10 "harjoittaja"} ;
+lin harjoittelija_NK = {s = d12 "harjoittelija"} ;
+lin harjoittelu_NK = {s = d02 "harjoittelu"} ;
+lin harjoitteluaika_NK = {s = d09A "harjoitteluaika"} ;
+lin harjoitus_NK = {s = d39 "harjoitus"} ;
+lin harjoituttaa_VK = {s = c53A "harjoituttaa"} ;
+lin harju_NK = {s = d01 "harju"} ;
+lin harjus_NK = {s = d39 "harjus"} ;
+lin harkinta_NK = {s = d09A "harkinta"} ;
+lin harkinta_aika_NK = {s = d09A "harkinta-aika"} ;
+lin harkita_VK = {s = c69 "harkita"} ;
+lin harkitsematon_NK = {s = d34A "harkitsematon"} ;
+lin harkitsemattomasti_AdvK = {s = c99 "harkitsemattomasti"} ;
+lin harkitsemattomuus_NK = {s = d40 "harkitsemattomuus"} ;
+lin harkitseva_NK = {s = d10 "harkitseva"} ;
+lin harkitsevainen_NK = {s = d38 "harkitsevainen"} ;
+lin harkitsevaisuus_NK = {s = d40 "harkitsevaisuus"} ;
+lin harkitsevuus_NK = {s = d40 "harkitsevuus"} ;
+lin harkittu_NK = {s = d01A "harkittu"} ;
+lin harkitusti_AdvK = {s = c99 "harkitusti"} ;
+lin harkko_NK = {s = d01A "harkko"} ;
+lin harlekiini_NK = {s = d05 "harlekiini"} ;
+lin harmaa_NK = {s = d17 "harmaa"} ;
+lin harmaahapsinen_NK = {s = d38 "harmaahapsinen"} ;
+lin harmaannuttaa_VK = {s = c53A "harmaannuttaa"} ;
+lin harmaantua_VK = {s = c52A "harmaantua"} ;
+lin harmahtaa_VK = {s = c53A "harmahtaa"} ;
+lin harmahtava_NK = {s = d10 "harmahtava"} ;
+lin harmaus_NK = {s = d40 "harmaus"} ;
+lin harme_NK = {s = d48 "harme"} ;
+lin harmentaa_VK = {s = c54A "harmentaa"} ;
+lin harmentua_VK = {s = c52A "harmentua"} ;
+lin harmeta_VK = {s = c72 "harmeta"} ;
+lin harmi_NK = {s = d05 "harmi"} ;
+lin harmillinen_NK = {s = d38 "harmillinen"} ;
+lin harmio_NK = {s = d03 "harmio"} ;
+lin harmissaan_AdvK = {s = c99 "harmissaan"} ;
+lin harmistua_VK = {s = c52 "harmistua"} ;
+lin harmistuksissaan_AdvK = {s = c99 "harmistuksissaan"} ;
+lin harmitella_VK = {s = c67A "harmitella"} ;
+lin harmiton_NK = {s = d34A "harmiton"} ;
+lin harmittaa_VK = {s = c53A "harmittaa"} ;
+lin harmoni_NK = {s = d05 "harmoni"} ;
+lin harmonia_NK = {s = d12 "harmonia"} ;
+lin harmonikka_NK = {s = d09A "harmonikka"} ;
+lin harmoninen_NK = {s = d38 "harmoninen"} ;
+lin harmonioida_VK = {s = c62 "harmonioida"} ;
+lin harmonisoida_VK = {s = c62 "harmonisoida"} ;
+lin harmonisoitua_VK = {s = c52A "harmonisoitua"} ;
+lin harmonistaa_VK = {s = c53 "harmonistaa"} ;
+lin harmonistua_VK = {s = c52 "harmonistua"} ;
+lin haroa_VK = {s = c52 "haroa"} ;
+lin harottaa_VK = {s = c53A "harottaa"} ;
+lin harpata_VK = {s = c73A "harpata"} ;
+lin harpikko_NK = {s = d04A "harpikko"} ;
+lin harpisti_NK = {s = d05 "harpisti"} ;
+lin harppailla_VK = {s = c67 "harppailla"} ;
+lin harppaus_NK = {s = d39 "harppaus"} ;
+lin harppi_NK = {s = d05A "harppi"} ;
+lin harppia_VK = {s = c61A "harppia"} ;
+lin harppoa_VK = {s = c52A "harppoa"} ;
+lin harppu_NK = {s = d01A "harppu"} ;
+lin harppunoida_VK = {s = c62 "harppunoida"} ;
+lin harppuuna_NK = {s = d12 "harppuuna"} ;
+lin harras_NK = {s = d41A "harras"} ;
+lin harrastaa_VK = {s = c53 "harrastaa"} ;
+lin harrastaja_NK = {s = d10 "harrastaja"} ;
+lin harraste_NK = {s = d48 "harraste"} ;
+lin harrastelija_NK = {s = d12 "harrastelija"} ;
+lin harrastella_VK = {s = c67 "harrastella"} ;
+lin harrastelu_NK = {s = d02 "harrastelu"} ;
+lin harrastua_VK = {s = c52 "harrastua"} ;
+lin harrastuneisuus_NK = {s = d40 "harrastuneisuus"} ;
+lin harrastus_NK = {s = d39 "harrastus"} ;
+lin harri_NK = {s = d05 "harri"} ;
+lin harsia_VK = {s = c61 "harsia"} ;
+lin harsinta_NK = {s = d09A "harsinta"} ;
+lin harso_NK = {s = d01 "harso"} ;
+lin harsu_NK = {s = d01 "harsu"} ;
+lin harsuuntua_VK = {s = c52A "harsuuntua"} ;
+lin hartaasti_AdvK = {s = c99 "hartaasti"} ;
+lin hartaus_NK = {s = d40 "hartaus"} ;
+--? lin harteet_NK = {s = d48 "harteet"} ;
+lin harteikas_NK = {s = d41A "harteikas"} ;
+lin harteinen_NK = {s = d38 "harteinen"} ;
+lin harteva_NK = {s = d10 "harteva"} ;
+lin hartia_NK = {s = d12 "hartia"} ;
+lin hartiainen_NK = {s = d38 "hartiainen"} ;
+lin hartiakas_NK = {s = d41A "hartiakas"} ;
+lin hartsaantua_VK = {s = c52A "hartsaantua"} ;
+lin hartsata_VK = {s = c73 "hartsata"} ;
+lin hartsi_NK = {s = d05 "hartsi"} ;
+lin hartsiintua_VK = {s = c52A "hartsiintua"} ;
+lin hartsittaa_VK = {s = c53A "hartsittaa"} ;
+lin harus_NK = {s = d39 "harus"} ;
+lin harustaa_VK = {s = c53 "harustaa"} ;
+lin harva_NK = {s = d09 "harva"} ;
+lin harvaan_AdvK = {s = c99 "harvaan"} ;
+lin harvakseen_AdvK = {s = c99 "harvakseen"} ;
+lin harvakseltaan_AdvK = {s = c99 "harvakseltaan"} ;
+lin harvassa_AdvK = {s = c99 "harvassa"} ;
+lin harvemmin_AdvK = {s = c99 "harvemmin"} ;
+lin harvempaan_AdvK = {s = c99 "harvempaan"} ;
+lin harvennin_NK = {s = d33A "harvennin"} ;
+lin harvennus_NK = {s = d39 "harvennus"} ;
+lin harventaa_VK = {s = c54A "harventaa"} ;
+lin harventaja_NK = {s = d10 "harventaja"} ;
+lin harventamaton_NK = {s = d34A "harventamaton"} ;
+lin harventua_VK = {s = c52A "harventua"} ;
+lin harventuma_NK = {s = d10 "harventuma"} ;
+lin harvesteri_NK = {s = d06 "harvesteri"} ;
+lin harveta_VK = {s = c72 "harveta"} ;
+lin harvinainen_NK = {s = d38 "harvinainen"} ;
+lin harvinaistua_VK = {s = c52 "harvinaistua"} ;
+lin harvinaisuus_NK = {s = d40 "harvinaisuus"} ;
+lin harvoin_AdvK = {s = c99 "harvoin"} ;
+lin harvuinen_NK = {s = d38 "harvuinen"} ;
+lin harvuus_NK = {s = d40 "harvuus"} ;
+lin hasardi_NK = {s = d05 "hasardi"} ;
+lin hasis_NK = {s = d39 "hasis"} ;
+lin hassahtanut_NK = {s = d47 "hassahtanut"} ;
+lin hassahtava_NK = {s = d10 "hassahtava"} ;
+lin hassata_VK = {s = c73 "hassata"} ;
+lin hassi_NK = {s = d05 "hassi"} ;
+lin hassu_AK = {s = d01 "hassu"} ;
+lin hassunkurinen_NK = {s = d38 "hassunkurinen"} ;
+--+ lin hassusti_AdvK = {s = c99 "hassusti"} ;
+lin hassutella_VK = {s = c67A "hassutella"} ;
+lin hassuttaa_VK = {s = c53A "hassuttaa"} ;
+lin hassuttelu_NK = {s = d02 "hassuttelu"} ;
+lin hassutus_NK = {s = d39 "hassutus"} ;
+lin hatara_AK = {s = d11 "hatara"} ;
+--+ lin hatarasti_AdvK = {s = c99 "hatarasti"} ;
+lin hataruus_NK = {s = d40 "hataruus"} ;
+lin hatikka_NK = {s = d14A "hatikka"} ;
+--? lin hatkat_NK = {s = d09 "hatkat"} ;
+lin hattara_NK = {s = d11 "hattara"} ;
+lin hattu_NK = {s = d01A "hattu"} ;
+lin hattuuntua_VK = {s = c52A "hattuuntua"} ;
+lin hatuttaa_VK = {s = c53A "hatuttaa"} ;
+lin hau_AdvK = {s = c99 "hau"} ;
+lin haudata_VK = {s = c73A "haudata"} ;
+lin haude_NK = {s = d48A "haude"} ;
+lin haudikas_NK = {s = d41A "haudikas"} ;
+lin haudonta_NK = {s = d09A "haudonta"} ;
+lin haudonta_aika_NK = {s = d09A "haudonta-aika"} ;
+lin hauduttaa_VK = {s = c53A "hauduttaa"} ;
+lin haudutus_NK = {s = d39 "haudutus"} ;
+lin hauis_NK = {s = d39 "hauis"} ;
+lin haukahdus_NK = {s = d39 "haukahdus"} ;
+lin haukahtaa_VK = {s = c53A "haukahtaa"} ;
+lin haukata_VK = {s = c73A "haukata"} ;
+lin haukattava_NK = {s = d10 "haukattava"} ;
+lin hauki_NK = {s = d07A "hauki"} ;
+lin haukka_NK = {s = d09A "haukka"} ;
+lin haukkaus_NK = {s = d39 "haukkaus"} ;
+lin haukkoa_VK = {s = c52A "haukkoa"} ;
+lin haukku_1_NK = {s = d01A "haukku"} ;
+lin haukku_2_NK = {s = d01A "haukku"} ;
+lin haukkua_VK = {s = c52A "haukkua"} ;
+lin haukotella_VK = {s = c67A "haukotella"} ;
+lin haukottaa_VK = {s = c53A "haukottaa"} ;
+lin haukottelu_NK = {s = d02 "haukottelu"} ;
+lin haukotus_NK = {s = d39 "haukotus"} ;
+lin haukotuttaa_VK = {s = c53A "haukotuttaa"} ;
+lin haukuskella_VK = {s = c67 "haukuskella"} ;
+lin hauli_NK = {s = d05 "hauli"} ;
+lin haulikko_NK = {s = d04A "haulikko"} ;
+lin haura_NK = {s = d09 "haura"} ;
+lin hauras_NK = {s = d41 "hauras"} ;
+lin haurastua_VK = {s = c52 "haurastua"} ;
+lin haurastuttaa_VK = {s = c53A "haurastuttaa"} ;
+lin hauraus_NK = {s = d40 "hauraus"} ;
+lin haureellinen_NK = {s = d38 "haureellinen"} ;
+lin haureellisuus_NK = {s = d40 "haureellisuus"} ;
+lin haureus_NK = {s = d40 "haureus"} ;
+lin hauska_AK = {s = d09 "hauska"} ;
+--+ lin hauskasti_AdvK = {s = c99 "hauskasti"} ;
+lin hauskuttaa_VK = {s = c53A "hauskuttaa"} ;
+lin hauskutus_NK = {s = d39 "hauskutus"} ;
+lin hauskuus_NK = {s = d40 "hauskuus"} ;
+lin hauskuuttaa_VK = {s = c53A "hauskuuttaa"} ;
+lin hauskuutus_NK = {s = d39 "hauskuutus"} ;
+lin hauta_NK = {s = d09A "hauta"} ;
+lin hautaantua_VK = {s = c52A "hautaantua"} ;
+--? lin hautajaiset_NK = {s = d38 "hautajaiset"} ;
+lin hautautua_VK = {s = c52A "hautautua"} ;
+lin hautoa_VK = {s = c52A "hautoa"} ;
+lin hautomo_NK = {s = d02 "hautomo"} ;
+lin hautoutua_VK = {s = c52A "hautoutua"} ;
+lin hautua_VK = {s = c52A "hautua"} ;
+lin hauva_NK = {s = d09 "hauva"} ;
+lin havahduttaa_VK = {s = c53A "havahduttaa"} ;
+lin havahtua_VK = {s = c52A "havahtua"} ;
+lin havainnoida_VK = {s = c62 "havainnoida"} ;
+lin havainnoija_NK = {s = d10 "havainnoija"} ;
+lin havainnointi_NK = {s = d05A "havainnointi"} ;
+lin havainnoitsija_NK = {s = d12 "havainnoitsija"} ;
+lin havainnollinen_AK = {s = d38 "havainnollinen"} ;
+--+ lin havainnollisesti_AdvK = {s = c99 "havainnollisesti"} ;
+lin havainnollistaa_VK = {s = c53 "havainnollistaa"} ;
+lin havainnollistua_VK = {s = c52 "havainnollistua"} ;
+lin havainnollisuus_NK = {s = d40 "havainnollisuus"} ;
+lin havainto_NK = {s = d01A "havainto"} ;
+lin havaita_VK = {s = c69 "havaita"} ;
+lin havaittavasti_AdvK = {s = c99 "havaittavasti"} ;
+lin havaittavuus_NK = {s = d40 "havaittavuus"} ;
+lin havas_NK = {s = d41A "havas"} ;
+lin haveri_NK = {s = d06 "haveri"} ;
+lin havina_NK = {s = d12 "havina"} ;
+lin havista_VK = {s = c66 "havista"} ;
+lin havisuttaa_VK = {s = c53A "havisuttaa"} ;
+lin havitella_VK = {s = c67A "havitella"} ;
+lin havittelija_NK = {s = d12 "havittelija"} ;
+lin havittelu_NK = {s = d02 "havittelu"} ;
+lin havu_NK = {s = d01 "havu"} ;
+lin havuttaa_VK = {s = c53A "havuttaa"} ;
+lin he_2_AdvK = {s = c99 "he"} ;
+lin heavy_NK = {s = d01 "heavy"} ;
+lin hebrea_NK = {s = d12 "hebrea"} ;
+lin hede_NK = {s = d48A "hede"} ;
+lin hedelmisto'_NK = {s = d01 "hedelmistö"} ;
+lin hedelmys_NK = {s = d39 "hedelmys"} ;
+lin hedelma'_NK = {s = d10 "hedelmä"} ;
+lin hedelma'inen_NK = {s = d38 "hedelmäinen"} ;
+lin hedelma'llinen_AK = {s = d38 "hedelmällinen"} ;
+--+ lin hedelma'llisesti_AdvK = {s = c99 "hedelmällisesti"} ;
+lin hedelma'llisyys_NK = {s = d40 "hedelmällisyys"} ;
+lin hedelma'tto'myys_NK = {s = d40 "hedelmättömyys"} ;
+lin hedelma'to'n_NK = {s = d34A "hedelmätön"} ;
+lin hedelmo'ida'_VK = {s = c62 "hedelmöidä"} ;
+lin hedelmo'inti_NK = {s = d05A "hedelmöinti"} ;
+lin hedelmo'ittya'_VK = {s = c52A "hedelmöittyä"} ;
+lin hedelmo'itta'a'_VK = {s = c53A "hedelmöittää"} ;
+lin hedelmo'itys_NK = {s = d39 "hedelmöitys"} ;
+lin hedelmo'itya'_VK = {s = c52A "hedelmöityä"} ;
+lin hedoninen_NK = {s = d38 "hedoninen"} ;
+lin hedonismi_NK = {s = d05 "hedonismi"} ;
+lin hedonisti_NK = {s = d05 "hedonisti"} ;
+lin hedonistinen_NK = {s = d38 "hedonistinen"} ;
+lin heeros_NK = {s = d39 "heeros"} ;
+lin hefta_NK = {s = d09 "hefta"} ;
+lin hegemonia_NK = {s = d12 "hegemonia"} ;
+lin heh_AdvK = {s = c99 "heh"} ;
+lin hehkeys_NK = {s = d40 "hehkeys"} ;
+lin hehkea'_NK = {s = d15 "hehkeä"} ;
+lin hehku_NK = {s = d01 "hehku"} ;
+lin hehkua_VK = {s = c52 "hehkua"} ;
+lin hehkuttaa_VK = {s = c53A "hehkuttaa"} ;
+lin hehkuttaja_NK = {s = d10 "hehkuttaja"} ;
+lin hehkutus_NK = {s = d39 "hehkutus"} ;
+lin hehtaari_NK = {s = d06 "hehtaari"} ;
+lin hehto_NK = {s = d01A "hehto"} ;
+lin hei_AdvK = {s = c99 "hei"} ;
+lin heijari_NK = {s = d06 "heijari"} ;
+lin heijastaa_VK = {s = c53 "heijastaa"} ;
+lin heijaste_NK = {s = d48 "heijaste"} ;
+lin heijasteinen_NK = {s = d38 "heijasteinen"} ;
+lin heijastella_VK = {s = c67 "heijastella"} ;
+lin heijastelu_NK = {s = d02 "heijastelu"} ;
+lin heijastin_NK = {s = d33 "heijastin"} ;
+lin heijastua_VK = {s = c52 "heijastua"} ;
+lin heijastuma_NK = {s = d10 "heijastuma"} ;
+lin heijastus_NK = {s = d39 "heijastus"} ;
+lin heijata_VK = {s = c73 "heijata"} ;
+lin heikenne_NK = {s = d48A "heikenne"} ;
+lin heikennys_NK = {s = d39 "heikennys"} ;
+lin heikentyma'_NK = {s = d10 "heikentymä"} ;
+lin heikentya'_VK = {s = c52A "heikentyä"} ;
+lin heikenta'a'_VK = {s = c54A "heikentää"} ;
+lin heiketa'_VK = {s = c72A "heiketä"} ;
+lin heikko_NK = {s = d01A "heikko"} ;
+lin heikkous_NK = {s = d40 "heikkous"} ;
+lin heikkovaloinen_NK = {s = d38 "heikkovaloinen"} ;
+lin heikontaa_VK = {s = c54A "heikontaa"} ;
+lin heikontua_VK = {s = c52A "heikontua"} ;
+lin heikosti_AdvK = {s = c99 "heikosti"} ;
+lin heikota_VK = {s = c72A "heikota"} ;
+lin heikottaa_VK = {s = c53A "heikottaa"} ;
+lin heikun_keikun_AdvK = {s = c99 "heikun keikun"} ;
+lin heika'la'inen_NK = {s = d38 "heikäläinen"} ;
+lin heila_NK = {s = d09 "heila"} ;
+lin heilahdella_VK = {s = c67A "heilahdella"} ;
+lin heilahdus_NK = {s = d39 "heilahdus"} ;
+lin heilahdusaika_NK = {s = d09A "heilahdusaika"} ;
+lin heilahduttaa_VK = {s = c53A "heilahduttaa"} ;
+lin heilahtaa_VK = {s = c53A "heilahtaa"} ;
+lin heilahtelu_NK = {s = d02 "heilahtelu"} ;
+lin heilastella_VK = {s = c67 "heilastella"} ;
+lin heilaus_NK = {s = d39 "heilaus"} ;
+lin heilautella_VK = {s = c67A "heilautella"} ;
+lin heilauttaa_VK = {s = c53A "heilauttaa"} ;
+lin heilautus_NK = {s = d39 "heilautus"} ;
+lin heili_NK = {s = d05 "heili"} ;
+lin heilimo'ida'_VK = {s = c68 "heilimöidä"} ;
+lin heilua_VK = {s = c52 "heilua"} ;
+lin heilunta_NK = {s = d09A "heilunta"} ;
+lin heiluri_NK = {s = d06 "heiluri"} ;
+lin heilutella_VK = {s = c67A "heilutella"} ;
+lin heiluttaa_VK = {s = c53A "heiluttaa"} ;
+lin heilutus_NK = {s = d39 "heilutus"} ;
+lin heimo_NK = {s = d01 "heimo"} ;
+lin heimolaisuus_NK = {s = d40 "heimolaisuus"} ;
+lin heimous_NK = {s = d40 "heimous"} ;
+lin heinikko_NK = {s = d04A "heinikko"} ;
+lin heinikkoinen_NK = {s = d38 "heinikkoinen"} ;
+lin heinikko'_NK = {s = d04A "heinikkö"} ;
+lin heinittya'_VK = {s = c52A "heinittyä"} ;
+lin heinitta'a'_VK = {s = c53A "heinittää"} ;
+lin heina'_NK = {s = d10 "heinä"} ;
+lin heina'aika_NK = {s = d09A "heinäaika"} ;
+lin heina'inen_NK = {s = d38 "heinäinen"} ;
+lin heippa_AdvK = {s = c99 "heippa"} ;
+lin heisi_NK = {s = d27 "heisi"} ;
+lin heite_NK = {s = d48A "heite"} ;
+lin heitella'_VK = {s = c67A "heitellä"} ;
+lin heitin_NK = {s = d33A "heitin"} ;
+lin heitteille_AdvK = {s = c99 "heitteille"} ;
+lin heitteilla'_AdvK = {s = c99 "heitteillä"} ;
+lin heitteilta'_AdvK = {s = c99 "heitteiltä"} ;
+lin heittelehtia'_VK = {s = c61A "heittelehtiä"} ;
+lin heittely_NK = {s = d02 "heittely"} ;
+lin heittio'_NK = {s = d03 "heittiö"} ;
+lin heitto_NK = {s = d01A "heitto"} ;
+lin heittoinen_NK = {s = d38 "heittoinen"} ;
+lin heittya'_VK = {s = c52A "heittyä"} ;
+lin heitta'ja'_NK = {s = d10 "heittäjä"} ;
+lin heitta'ytya'_VK = {s = c52A "heittäytyä"} ;
+lin heitta'a'_VK = {s = c53A "heittää"} ;
+lin heita'tta'a'_VK = {s = c53A "heitättää"} ;
+lin heivata_VK = {s = c73 "heivata"} ;
+lin heivero'inen_NK = {s = d38 "heiveröinen"} ;
+lin hekotella_VK = {s = c67A "hekotella"} ;
+lin hekottaa_VK = {s = c53A "hekottaa"} ;
+lin hekotus_NK = {s = d39 "hekotus"} ;
+lin heksaedri_NK = {s = d05 "heksaedri"} ;
+lin heksagoni_NK = {s = d05 "heksagoni"} ;
+lin heksagoninen_NK = {s = d38 "heksagoninen"} ;
+lin heksaklorofeeni_NK = {s = d05 "heksaklorofeeni"} ;
+lin heksametri_NK = {s = d05 "heksametri"} ;
+lin hektinen_AK = {s = d38 "hektinen"} ;
+--+ lin hektisesti_AdvK = {s = c99 "hektisesti"} ;
+lin hektisyys_NK = {s = d40 "hektisyys"} ;
+lin hekuma_NK = {s = d11 "hekuma"} ;
+lin hekumallinen_AK = {s = d38 "hekumallinen"} ;
+--+ lin hekumallisesti_AdvK = {s = c99 "hekumallisesti"} ;
+lin hekumallisuus_NK = {s = d40 "hekumallisuus"} ;
+lin hekumoida_VK = {s = c68 "hekumoida"} ;
+lin hela_1_NK = {s = d09 "hela"} ;
+lin hela_2_AdvK = {s = c99 "hela"} ;
+lin helainen_NK = {s = d38 "helainen"} ;
+lin helakasti_AdvK = {s = c99 "helakasti"} ;
+lin helakka_NK = {s = d14A "helakka"} ;
+lin helakkuus_NK = {s = d40 "helakkuus"} ;
+lin hele_NK = {s = d48 "hele"} ;
+lin heleys_NK = {s = d40 "heleys"} ;
+lin helea'_AK = {s = d15 "heleä"} ;
+--+ lin helea'sti_AdvK = {s = c99 "heleästi"} ;
+lin helibor_NK = {s = d05 "helibor"} ;
+lin helikopteri_NK = {s = d06 "helikopteri"} ;
+lin helina'_NK = {s = d12 "helinä"} ;
+lin heliosentrinen_NK = {s = d38 "heliosentrinen"} ;
+lin heliotrooppi_NK = {s = d05A "heliotrooppi"} ;
+lin heliotrooppinen_NK = {s = d38 "heliotrooppinen"} ;
+lin helistella'_VK = {s = c67 "helistellä"} ;
+lin helistin_NK = {s = d33 "helistin"} ;
+lin helista'_VK = {s = c66 "helistä"} ;
+lin helista'a'_VK = {s = c53 "helistää"} ;
+lin helisytta'a'_VK = {s = c53A "helisyttää"} ;
+lin helium_NK = {s = d05 "helium"} ;
+lin helkatti_NK = {s = d05A "helkatti"} ;
+lin helke_NK = {s = d48A "helke"} ;
+lin helkkari_AK = {s = d06 "helkkari"} ;
+lin helkkarinmoinen_NK = {s = d38 "helkkarinmoinen"} ;
+--+ lin helkkaristi_AdvK = {s = c99 "helkkaristi"} ;
+lin helkkya'_VK = {s = c52A "helkkyä"} ;
+lin helkutti_NK = {s = d05A "helkutti"} ;
+lin helkynta'_NK = {s = d09A "helkyntä"} ;
+lin helkytella'_VK = {s = c67A "helkytellä"} ;
+lin helkytta'a'_VK = {s = c53A "helkyttää"} ;
+lin helkytys_NK = {s = d39 "helkytys"} ;
+lin hella_NK = {s = d09 "hella"} ;
+lin hellanlettas_AdvK = {s = c99 "hellanlettas"} ;
+lin helle_NK = {s = d48A "helle"} ;
+lin helleeni_NK = {s = d06 "helleeni"} ;
+lin helleeninen_NK = {s = d38 "helleeninen"} ;
+lin hellenismi_NK = {s = d05 "hellenismi"} ;
+lin hellenistinen_NK = {s = d38 "hellenistinen"} ;
+lin hellitella'_VK = {s = c67A "hellitellä"} ;
+lin hellitta'ma'tto'myys_NK = {s = d40 "hellittämättömyys"} ;
+lin hellitta'ma'tto'ma'sti_AdvK = {s = c99 "hellittämättömästi"} ;
+lin hellitta'ma'to'n_NK = {s = d34A "hellittämätön"} ;
+lin hellitta'a'_VK = {s = c53A "hellittää"} ;
+lin hellita'_VK = {s = c75A "hellitä"} ;
+lin hellia'_VK = {s = c61 "helliä"} ;
+lin helluntai_NK = {s = d18 "helluntai"} ;
+lin helluntailaisuus_NK = {s = d40 "helluntailaisuus"} ;
+lin hellurei_AdvK = {s = c99 "hellurei"} ;
+lin hellytta'a'_VK = {s = c53A "hellyttää"} ;
+lin hellyys_NK = {s = d40 "hellyys"} ;
+lin hella'_AK = {s = d10 "hellä"} ;
+--+ lin hella'ka'tisesti_AdvK = {s = c99 "helläkätisesti"} ;
+--+ lin hella'sti_AdvK = {s = c99 "hellästi"} ;
+lin hella'ta'_VK = {s = c73 "hellätä"} ;
+--+ lin hella'varaisesti_AdvK = {s = c99 "hellävaraisesti"} ;
+lin hella'varoen_AdvK = {s = c99 "hellävaroen"} ;
+lin hella'varoin_AdvK = {s = c99 "hellävaroin"} ;
+lin helma_NK = {s = d09 "helma"} ;
+lin helmainen_NK = {s = d38 "helmainen"} ;
+lin helmeilla'_VK = {s = c67 "helmeillä"} ;
+lin helmestys_NK = {s = d39 "helmestys"} ;
+lin helmesta'a'_VK = {s = c53 "helmestää"} ;
+lin helmi_NK = {s = d07 "helmi"} ;
+lin helmikka'_NK = {s = d14A "helmikkä"} ;
+lin helmia'inen_NK = {s = d38 "helmiäinen"} ;
+lin helmus_NK = {s = d39 "helmus"} ;
+lin helmusta_NK = {s = d13 "helmusta"} ;
+lin helo_NK = {s = d01 "helo"} ;
+lin heloittaa_VK = {s = c53A "heloittaa"} ;
+lin heloitus_NK = {s = d39 "heloitus"} ;
+lin helokki_NK = {s = d05A "helokki"} ;
+lin helottaa_VK = {s = c53A "helottaa"} ;
+lin helotus_NK = {s = d39 "helotus"} ;
+lin helpi_NK = {s = d07A "helpi"} ;
+lin helpontaa_VK = {s = c54A "helpontaa"} ;
+lin helpontua_VK = {s = c52A "helpontua"} ;
+lin helposti_AdvK = {s = c99 "helposti"} ;
+lin helpota_VK = {s = c72A "helpota"} ;
+lin helpottaa_VK = {s = c53A "helpottaa"} ;
+lin helpottua_VK = {s = c52A "helpottua"} ;
+--+ lin helpottuneesti_AdvK = {s = c99 "helpottuneesti"} ;
+lin helpottunut_AK = {s = d47 "helpottunut"} ;
+lin helpotus_NK = {s = d39 "helpotus"} ;
+lin helppo_NK = {s = d01A "helppo"} ;
+lin helppoheikki_NK = {s = d05A "helppoheikki"} ;
+lin helppolukuisuus_NK = {s = d40 "helppolukuisuus"} ;
+lin helppotajuistaa_VK = {s = c53 "helppotajuistaa"} ;
+lin helppoto'isyys_NK = {s = d40 "helppotöisyys"} ;
+lin helppous_NK = {s = d40 "helppous"} ;
+lin helske_NK = {s = d48 "helske"} ;
+lin helskutti_NK = {s = d05A "helskutti"} ;
+lin helskytella'_VK = {s = c67A "helskytellä"} ;
+lin helskytta'a'_VK = {s = c53A "helskyttää"} ;
+lin helskytys_NK = {s = d39 "helskytys"} ;
+lin helskya'_VK = {s = c52 "helskyä"} ;
+lin helska'hta'a'_VK = {s = c53A "helskähtää"} ;
+lin helska'a'_VK = {s = c78 "helskää"} ;
+lin helteinen_AK = {s = d38 "helteinen"} ;
+--+ lin helteisesti_AdvK = {s = c99 "helteisesti"} ;
+lin helteisyys_NK = {s = d40 "helteisyys"} ;
+lin heltta_NK = {s = d09A "heltta"} ;
+lin heltyma'to'n_NK = {s = d34A "heltymätön"} ;
+lin heltya'_VK = {s = c52A "heltyä"} ;
+lin helve_NK = {s = d48A "helve"} ;
+lin helvetillinen_NK = {s = d38 "helvetillinen"} ;
+lin helvetinmoinen_NK = {s = d38 "helvetinmoinen"} ;
+lin helvetisti_AdvK = {s = c99 "helvetisti"} ;
+lin helvetti_NK = {s = d05A "helvetti"} ;
+lin hely_NK = {s = d01 "hely"} ;
+lin hela'hdella'_VK = {s = c67A "helähdellä"} ;
+lin hela'hdys_NK = {s = d39 "helähdys"} ;
+lin hela'hdytta'a'_VK = {s = c53A "helähdyttää"} ;
+lin hela'hta'a'_VK = {s = c53A "helähtää"} ;
+lin hela'ja'a'_VK = {s = c77 "heläjää"} ;
+lin hela'ytta'a'_VK = {s = c53A "heläyttää"} ;
+lin hemaiseva_AK = {s = d10 "hemaiseva"} ;
+--+ lin hemaisevasti_AdvK = {s = c99 "hemaisevasti"} ;
+lin hematiitti_NK = {s = d05A "hematiitti"} ;
+lin hematologia_NK = {s = d12 "hematologia"} ;
+lin hemisfa'a'ri_NK = {s = d05 "hemisfääri"} ;
+lin hemmetinmoinen_NK = {s = d38 "hemmetinmoinen"} ;
+lin hemmetisti_AdvK = {s = c99 "hemmetisti"} ;
+lin hemmetti_NK = {s = d05A "hemmetti"} ;
+lin hemmo_NK = {s = d01 "hemmo"} ;
+lin hemmotella_VK = {s = c67A "hemmotella"} ;
+lin hemmottelu_NK = {s = d02 "hemmottelu"} ;
+lin hemofilia_NK = {s = d12 "hemofilia"} ;
+lin hemoglobiini_NK = {s = d05 "hemoglobiini"} ;
+lin hemorroidi_NK = {s = d05 "hemorroidi"} ;
+lin hempeilla'_VK = {s = c67 "hempeillä"} ;
+lin hempeily_NK = {s = d02 "hempeily"} ;
+lin hempeys_NK = {s = d40 "hempeys"} ;
+lin hempea'_AK = {s = d15 "hempeä"} ;
+--+ lin hempea'sti_AdvK = {s = c99 "hempeästi"} ;
+lin hemppo_NK = {s = d01A "hemppo"} ;
+lin hempukka_NK = {s = d14A "hempukka"} ;
+lin hengata_VK = {s = c73 "hengata"} ;
+lin hengellinen_NK = {s = d38 "hengellinen"} ;
+lin hengellisyys_NK = {s = d40 "hengellisyys"} ;
+lin hengenvaara_NK = {s = d09 "hengenvaara"} ;
+lin hengenveto_NK = {s = d01A "hengenveto"} ;
+lin hengetto'myys_NK = {s = d40 "hengettömyys"} ;
+lin hengetto'ma'sti_AdvK = {s = c99 "hengettömästi"} ;
+lin hengeta'r_NK = {s = d32A "hengetär"} ;
+lin hengeto'n_NK = {s = d34A "hengetön"} ;
+lin hengissa'_AdvK = {s = c99 "hengissä"} ;
+lin hengitta'a'_VK = {s = c53A "hengittää"} ;
+lin hengitys_NK = {s = d39 "hengitys"} ;
+lin henga'hdys_NK = {s = d39 "hengähdys"} ;
+lin henga'hdysaika_NK = {s = d09A "hengähdysaika"} ;
+lin henga'hta'a'_VK = {s = c53A "hengähtää"} ;
+lin henga'stys_NK = {s = d39 "hengästys"} ;
+lin henga'stytta'a'_VK = {s = c53A "hengästyttää"} ;
+lin henga'stya'_VK = {s = c52 "hengästyä"} ;
+lin henkari_NK = {s = d06 "henkari"} ;
+lin henkevyys_NK = {s = d40 "henkevyys"} ;
+lin henkeva'_AK = {s = d10 "henkevä"} ;
+--+ lin henkeva'sti_AdvK = {s = c99 "henkevästi"} ;
+lin henkevo'ida'_VK = {s = c62 "henkevöidä"} ;
+lin henkevo'itta'a'_VK = {s = c53A "henkevöittää"} ;
+lin henkevo'itya'_VK = {s = c52A "henkevöityä"} ;
+lin henkea'salpaava_NK = {s = d10 "henkeäsalpaava"} ;
+lin henki_NK = {s = d07A "henki"} ;
+lin henkihieveriin_AdvK = {s = c99 "henkihieveriin"} ;
+lin henkihieverissa'_AdvK = {s = c99 "henkihieverissä"} ;
+lin henkiin_AdvK = {s = c99 "henkiin"} ;
+lin henkilo'_NK = {s = d02 "henkilö"} ;
+lin henkilo'ida'_VK = {s = c62 "henkilöidä"} ;
+lin henkilo'inti_NK = {s = d05A "henkilöinti"} ;
+lin henkilo'ityma'_NK = {s = d10 "henkilöitymä"} ;
+lin henkilo'itya'_VK = {s = c52A "henkilöityä"} ;
+--+ lin henkilo'kohtaisesti_AdvK = {s = c99 "henkilökohtaisesti"} ;
+lin henkilo'llisyys_NK = {s = d40 "henkilöllisyys"} ;
+lin henkilo'sto'_NK = {s = d01 "henkilöstö"} ;
+lin henkilo'ys_NK = {s = d40 "henkilöys"} ;
+lin henkinen_AK = {s = d38 "henkinen"} ;
+lin henkipatto_NK = {s = d01A "henkipatto"} ;
+--+ lin henkisesti_AdvK = {s = c99 "henkisesti"} ;
+lin henkistya'_VK = {s = c52 "henkistyä"} ;
+lin henkista'a'_VK = {s = c53 "henkistää"} ;
+lin henkisyys_NK = {s = d40 "henkisyys"} ;
+lin henkitoreihin_AdvK = {s = c99 "henkitoreihin"} ;
+lin henkitoreihinsa_AdvK = {s = c99 "henkitoreihinsa"} ;
+lin henkitoreisiin_AdvK = {s = c99 "henkitoreisiin"} ;
+lin henkitoreisiinsa_AdvK = {s = c99 "henkitoreisiinsa"} ;
+lin henkitoreissa_AdvK = {s = c99 "henkitoreissa"} ;
+lin henkitoreissaan_AdvK = {s = c99 "henkitoreissaan"} ;
+lin henkia'_VK = {s = c61A "henkiä"} ;
+lin henkonen_NK = {s = d38 "henkonen"} ;
+--? lin henkselit_NK = {s = d06 "henkselit"} ;
+lin henka'illa'_VK = {s = c67 "henkäillä"} ;
+lin henka'ista'_VK = {s = c66 "henkäistä"} ;
+lin henka'isy_NK = {s = d02 "henkäisy"} ;
+lin henka'ys_NK = {s = d39 "henkäys"} ;
+lin henna_NK = {s = d09 "henna"} ;
+lin hennata_VK = {s = c73 "hennata"} ;
+lin hennoa_VK = {s = c52 "hennoa"} ;
+lin henry_NK = {s = d01 "henry"} ;
+lin hento_NK = {s = d01A "hento"} ;
+lin hentoilla_VK = {s = c67 "hentoilla"} ;
+lin hentoilu_NK = {s = d02 "hentoilu"} ;
+lin hentoinen_NK = {s = d38 "hentoinen"} ;
+lin hentous_NK = {s = d40 "hentous"} ;
+lin hep_AdvK = {s = c99 "hep"} ;
+lin hepariini_NK = {s = d05 "hepariini"} ;
+lin hepatiitti_NK = {s = d05A "hepatiitti"} ;
+lin hepene_NK = {s = d49 "hepene"} ;
+lin hepo_NK = {s = d01A "hepo"} ;
+lin heppa_NK = {s = d09A "heppa"} ;
+lin heppoinen_AK = {s = d38 "heppoinen"} ;
+--+ lin heppoisesti_AdvK = {s = c99 "heppoisesti"} ;
+lin heppoisuus_NK = {s = d40 "heppoisuus"} ;
+lin heppu_NK = {s = d01A "heppu"} ;
+lin heprea_NK = {s = d12 "heprea"} ;
+lin hepsankeikka_NK = {s = d09A "hepsankeikka"} ;
+lin hepuli_NK = {s = d06 "hepuli"} ;
+lin hera_NK = {s = d09 "hera"} ;
+lin herahdella_VK = {s = c67A "herahdella"} ;
+lin herahtaa_VK = {s = c53A "herahtaa"} ;
+lin heraldiikka_NK = {s = d09A "heraldiikka"} ;
+lin heraldikko_NK = {s = d04A "heraldikko"} ;
+lin heraldinen_NK = {s = d38 "heraldinen"} ;
+lin herauttaa_VK = {s = c53A "herauttaa"} ;
+lin herbaario_NK = {s = d03 "herbaario"} ;
+lin hereford_NK = {s = d05 "hereford"} ;
+lin hereille_AdvK = {s = c99 "hereille"} ;
+lin hereilla'_AdvK = {s = c99 "hereillä"} ;
+lin hereys_NK = {s = d40 "hereys"} ;
+lin herea'_AK = {s = d15 "hereä"} ;
+--+ lin herea'sti_AdvK = {s = c99 "hereästi"} ;
+lin herhila'inen_NK = {s = d38 "herhiläinen"} ;
+lin heristella'_VK = {s = c67 "heristellä"} ;
+lin heristys_NK = {s = d39 "heristys"} ;
+lin heristya'_VK = {s = c52 "heristyä"} ;
+lin herista'a'_VK = {s = c53 "heristää"} ;
+lin herja_NK = {s = d09 "herja"} ;
+lin herjaaja_NK = {s = d10 "herjaaja"} ;
+lin herjata_VK = {s = c73 "herjata"} ;
+lin herjaus_NK = {s = d39 "herjaus"} ;
+lin herjeta'_VK = {s = c74A "herjetä"} ;
+lin herkentya'_VK = {s = c52A "herkentyä"} ;
+lin herkenta'a'_VK = {s = c54A "herkentää"} ;
+lin herketa'_VK = {s = c72A "herketä"} ;
+lin herkea'ma'tta'_AdvK = {s = c99 "herkeämättä"} ;
+lin herkea'ma'tto'myys_NK = {s = d40 "herkeämättömyys"} ;
+lin herkea'ma'tto'ma'sti_AdvK = {s = c99 "herkeämättömästi"} ;
+lin herkea'ma'to'n_NK = {s = d34A "herkeämätön"} ;
+lin herkiste_NK = {s = d48 "herkiste"} ;
+lin herkistella'_VK = {s = c67 "herkistellä"} ;
+lin herkistely_NK = {s = d02 "herkistely"} ;
+lin herkistyma'_NK = {s = d10 "herkistymä"} ;
+lin herkistya'_VK = {s = c52 "herkistyä"} ;
+lin herkista'a'_VK = {s = c53 "herkistää"} ;
+lin herkku_NK = {s = d01A "herkku"} ;
+lin herkkyys_NK = {s = d40 "herkkyys"} ;
+lin herkka'_NK = {s = d10A "herkkä"} ;
+lin herkullinen_AK = {s = d38 "herkullinen"} ;
+--+ lin herkullisesti_AdvK = {s = c99 "herkullisesti"} ;
+lin herkullisuus_NK = {s = d40 "herkullisuus"} ;
+lin herkutella_VK = {s = c67A "herkutella"} ;
+lin herkuttelija_NK = {s = d12 "herkuttelija"} ;
+lin herkuttelu_NK = {s = d02 "herkuttelu"} ;
+lin herka'sti_AdvK = {s = c99 "herkästi"} ;
+lin hermafrodiitti_NK = {s = d05A "hermafrodiitti"} ;
+lin hermafrodiittinen_NK = {s = d38 "hermafrodiittinen"} ;
+lin hermeettinen_AK = {s = d38 "hermeettinen"} ;
+--+ lin hermeettisesti_AdvK = {s = c99 "hermeettisesti"} ;
+lin hermeneutiikka_NK = {s = d09A "hermeneutiikka"} ;
+lin hermeneuttinen_NK = {s = d38 "hermeneuttinen"} ;
+lin hermo_NK = {s = d01 "hermo"} ;
+lin hermoilla_VK = {s = c67 "hermoilla"} ;
+lin hermoinen_NK = {s = d38 "hermoinen"} ;
+lin hermoisuus_NK = {s = d40 "hermoisuus"} ;
+lin hermosto_NK = {s = d02 "hermosto"} ;
+lin hermostollinen_NK = {s = d38 "hermostollinen"} ;
+lin hermostua_VK = {s = c52 "hermostua"} ;
+lin hermostuksissaan_AdvK = {s = c99 "hermostuksissaan"} ;
+--+ lin hermostuneesti_AdvK = {s = c99 "hermostuneesti"} ;
+lin hermostuneisuus_NK = {s = d40 "hermostuneisuus"} ;
+lin hermostunut_AK = {s = d47 "hermostunut"} ;
+lin hermostus_NK = {s = d39 "hermostus"} ;
+lin hermostuttaa_VK = {s = c53A "hermostuttaa"} ;
+lin hermoton_NK = {s = d34A "hermoton"} ;
+lin hermottaa_VK = {s = c53A "hermottaa"} ;
+lin hermottua_VK = {s = c52A "hermottua"} ;
+lin hermotus_NK = {s = d39 "hermotus"} ;
+lin herne_NK = {s = d48 "herne"} ;
+lin heroiini_NK = {s = d05 "heroiini"} ;
+lin heroinisti_NK = {s = d05 "heroinisti"} ;
+lin heroismi_NK = {s = d05 "heroismi"} ;
+lin herooinen_NK = {s = d38 "herooinen"} ;
+lin herpaannus_NK = {s = d39 "herpaannus"} ;
+lin herpaannuttaa_VK = {s = c53A "herpaannuttaa"} ;
+lin herpaantua_VK = {s = c52A "herpaantua"} ;
+lin herpauttaa_VK = {s = c53A "herpauttaa"} ;
+lin herpautua_VK = {s = c52A "herpautua"} ;
+lin herpes_NK = {s = d39 "herpes"} ;
+lin herra_NK = {s = d09 "herra"} ;
+lin herrajesta_AdvK = {s = c99 "herrajesta"} ;
+lin herranen_NK = {s = d38 "herranen"} ;
+lin herranjesta_AdvK = {s = c99 "herranjesta"} ;
+lin herraskainen_NK = {s = d38 "herraskainen"} ;
+lin herraskaisesti_AdvK = {s = c99 "herraskaisesti"} ;
+lin herrastella_VK = {s = c67 "herrastella"} ;
+lin herrastelu_NK = {s = d02 "herrastelu"} ;
+lin herraus_NK = {s = d40 "herraus"} ;
+lin herrnhutilainen_NK = {s = d38 "herrnhutilainen"} ;
+lin herrnhutilaisuus_NK = {s = d40 "herrnhutilaisuus"} ;
+lin herroitella_VK = {s = c67A "herroitella"} ;
+lin herroittelu_NK = {s = d02 "herroittelu"} ;
+lin herruus_NK = {s = d40 "herruus"} ;
+lin hersya'_VK = {s = c52 "hersyä"} ;
+lin hertsi_NK = {s = d05 "hertsi"} ;
+lin hertta_NK = {s = d09A "hertta"} ;
+lin herttainen_NK = {s = d38 "herttainen"} ;
+lin herttaisesti_AdvK = {s = c99 "herttaisesti"} ;
+lin herttaisuus_NK = {s = d40 "herttaisuus"} ;
+lin herttamainen_NK = {s = d38 "herttamainen"} ;
+lin herttaa'ssa'_NK = {s = d10 "herttaässä"} ;
+lin herttua_NK = {s = d12 "herttua"} ;
+lin herttuatar_NK = {s = d32A "herttuatar"} ;
+lin herua_VK = {s = c52 "herua"} ;
+lin herukka_NK = {s = d14A "herukka"} ;
+lin heruttaa_VK = {s = c53A "heruttaa"} ;
+lin herutus_NK = {s = d39 "herutus"} ;
+lin hervahtaa_VK = {s = c53A "hervahtaa"} ;
+lin hervota_VK = {s = c74A "hervota"} ;
+lin hervoton_NK = {s = d34A "hervoton"} ;
+lin hervottomasti_AdvK = {s = c99 "hervottomasti"} ;
+lin hervottomuus_NK = {s = d40 "hervottomuus"} ;
+lin hera'illa'_VK = {s = c67 "heräillä"} ;
+lin hera'nnyt_NK = {s = d47 "herännyt"} ;
+lin hera'nna'inen_NK = {s = d38 "herännäinen"} ;
+lin hera'nna'isyys_NK = {s = d40 "herännäisyys"} ;
+lin hera'te_NK = {s = d48A "heräte"} ;
+lin hera'tella'_VK = {s = c67A "herätellä"} ;
+lin hera'tta'ja'_NK = {s = d10 "herättäjä"} ;
+lin hera'tta'a'_VK = {s = c53A "herättää"} ;
+lin hera'tys_NK = {s = d39 "herätys"} ;
+lin hera'ta'_VK = {s = c73 "herätä"} ;
+lin hera'a'mo'_NK = {s = d02 "heräämö"} ;
+lin hetaira_NK = {s = d13 "hetaira"} ;
+lin hetale_NK = {s = d48 "hetale"} ;
+lin hete_NK = {s = d48A "hete"} ;
+lin heteinen_NK = {s = d38 "heteinen"} ;
+lin heteka_NK = {s = d13 "heteka"} ;
+lin hetero_NK = {s = d02 "hetero"} ;
+lin heterogamia_NK = {s = d12 "heterogamia"} ;
+lin heterogeeninen_NK = {s = d38 "heterogeeninen"} ;
+lin heterogeenisuus_NK = {s = d40 "heterogeenisuus"} ;
+lin heteroseksuaali_NK = {s = d05 "heteroseksuaali"} ;
+lin heterotsygootti_NK = {s = d05A "heterotsygootti"} ;
+lin heterotsygoottinen_NK = {s = d38 "heterotsygoottinen"} ;
+lin heti_AdvK = {s = c99 "heti"} ;
+lin hetimmiten_AdvK = {s = c99 "hetimmiten"} ;
+lin hetio'_NK = {s = d03 "hetiö"} ;
+lin hetkahtaa_VK = {s = c53A "hetkahtaa"} ;
+lin hetkauttaa_VK = {s = c53A "hetkauttaa"} ;
+lin hetkellinen_NK = {s = d38 "hetkellinen"} ;
+lin hetkellisesti_AdvK = {s = c99 "hetkellisesti"} ;
+lin hetki_NK = {s = d07 "hetki"} ;
+lin hetkinen_NK = {s = d38 "hetkinen"} ;
+lin hetkinen_NK = {s = d38 "hetkinen"} ;
+lin hetkitta'in_AdvK = {s = c99 "hetkittäin"} ;
+lin hetkitta'inen_NK = {s = d38 "hetkittäinen"} ;
+lin hetkua_VK = {s = c52 "hetkua"} ;
+lin hetkutella_VK = {s = c67A "hetkutella"} ;
+lin hetkuttaa_VK = {s = c53A "hetkuttaa"} ;
+lin hetkutus_NK = {s = d39 "hetkutus"} ;
+lin hetteikko'_NK = {s = d04A "hetteikkö"} ;
+lin hetteinen_NK = {s = d38 "hetteinen"} ;
+lin hetula_NK = {s = d12 "hetula"} ;
+lin hevi_NK = {s = d05 "hevi"} ;
+lin hevilla'_AdvK = {s = c99 "hevillä"} ;
+lin hevin_AdvK = {s = c99 "hevin"} ;
+lin hevonen_NK = {s = d38 "hevonen"} ;
+lin hevoskuuri_NK = {s = d05 "hevoskuuri"} ;
+lin hevospari_NK = {s = d05 "hevospari"} ;
+lin hevostella_VK = {s = c67 "hevostella"} ;
+lin hi_AdvK = {s = c99 "hi"} ;
+lin hibiskus_NK = {s = d39 "hibiskus"} ;
+lin hidalgo_NK = {s = d02 "hidalgo"} ;
+lin hidas_NK = {s = d41A "hidas"} ;
+lin hidastaa_VK = {s = c53 "hidastaa"} ;
+lin hidaste_NK = {s = d48 "hidaste"} ;
+lin hidastella_VK = {s = c67 "hidastella"} ;
+lin hidastelu_NK = {s = d02 "hidastelu"} ;
+lin hidastin_NK = {s = d33 "hidastin"} ;
+lin hidastua_VK = {s = c52 "hidastua"} ;
+lin hidastus_NK = {s = d39 "hidastus"} ;
+lin hidastuttaa_VK = {s = c53A "hidastuttaa"} ;
+lin hidastuvuus_NK = {s = d40 "hidastuvuus"} ;
+lin hie_NK = {s = d48 "hie"} ;
+lin hieho_NK = {s = d01 "hieho"} ;
+lin hiekka_NK = {s = d09A "hiekka"} ;
+lin hiekkahentunen_NK = {s = d38 "hiekkahentunen"} ;
+lin hiekkainen_NK = {s = d38 "hiekkainen"} ;
+lin hiekoitin_NK = {s = d33A "hiekoitin"} ;
+lin hiekoittaa_VK = {s = c53A "hiekoittaa"} ;
+lin hieman_AdvK = {s = c99 "hieman"} ;
+lin hieno_AK = {s = d01 "hieno"} ;
+lin hienoinen_AK = {s = d38 "hienoinen"} ;
+--+ lin hienoisesti_AdvK = {s = c99 "hienoisesti"} ;
+lin hienokseltaan_AdvK = {s = c99 "hienokseltaan"} ;
+lin hienonnin_NK = {s = d33A "hienonnin"} ;
+lin hienonnus_NK = {s = d39 "hienonnus"} ;
+lin hienontaa_VK = {s = c54A "hienontaa"} ;
+lin hienontua_VK = {s = c52A "hienontua"} ;
+lin hienostelija_NK = {s = d12 "hienostelija"} ;
+lin hienostella_VK = {s = c67 "hienostella"} ;
+--+ lin hienosti_AdvK = {s = c99 "hienosti"} ;
+lin hienostua_VK = {s = c52 "hienostua"} ;
+--+ lin hienostuneesti_AdvK = {s = c99 "hienostuneesti"} ;
+lin hienostuneisuus_NK = {s = d40 "hienostuneisuus"} ;
+lin hienostunut_AK = {s = d47 "hienostunut"} ;
+lin hienota_VK = {s = c72 "hienota"} ;
+--+ lin hienotunteisesti_AdvK = {s = c99 "hienotunteisesti"} ;
+lin hienous_NK = {s = d40 "hienous"} ;
+--+ lin hienovaraisesti_AdvK = {s = c99 "hienovaraisesti"} ;
+lin hieraista_VK = {s = c66 "hieraista"} ;
+lin hierarkia_NK = {s = d12 "hierarkia"} ;
+lin hierarkkinen_NK = {s = d38 "hierarkkinen"} ;
+lin hieroa_VK = {s = c52 "hieroa"} ;
+lin hieroglyfi_NK = {s = d05 "hieroglyfi"} ;
+lin hieroja_NK = {s = d10 "hieroja"} ;
+lin hieronta_NK = {s = d09A "hieronta"} ;
+lin hieroskella_VK = {s = c67 "hieroskella"} ;
+lin hierottaa_VK = {s = c53A "hierottaa"} ;
+lin hieroutua_VK = {s = c52A "hieroutua"} ;
+lin hieroutuma_NK = {s = d10 "hieroutuma"} ;
+lin hierre_NK = {s = d48A "hierre"} ;
+lin hierrin_NK = {s = d33A "hierrin"} ;
+lin hierto_NK = {s = d01A "hierto"} ;
+lin hiertyma'_NK = {s = d10 "hiertymä"} ;
+lin hiertya'_VK = {s = c52A "hiertyä"} ;
+lin hierta'mo'_NK = {s = d02 "hiertämö"} ;
+lin hierta'a'_VK = {s = c54A "hiertää"} ;
+lin hiestya'_VK = {s = c52 "hiestyä"} ;
+lin hiesta'a'_VK = {s = c53 "hiestää"} ;
+lin hiesu_NK = {s = d01 "hiesu"} ;
+lin hieta_NK = {s = d09A "hieta"} ;
+lin hietainen_NK = {s = d38 "hietainen"} ;
+lin hietikko_NK = {s = d04A "hietikko"} ;
+lin hietikkoinen_NK = {s = d38 "hietikkoinen"} ;
+lin hievahdus_NK = {s = d39 "hievahdus"} ;
+lin hievahtaa_VK = {s = c53A "hievahtaa"} ;
+lin hievauttaa_VK = {s = c53A "hievauttaa"} ;
+lin hiffata_VK = {s = c73 "hiffata"} ;
+lin hifi_NK = {s = d05 "hifi"} ;
+lin high_tech_NK = {s = d05 "high tech"} ;
+lin hiha_NK = {s = d09 "hiha"} ;
+lin hihainen_NK = {s = d38 "hihainen"} ;
+lin hihallinen_NK = {s = d38 "hihallinen"} ;
+lin hihastin_NK = {s = d33 "hihastin"} ;
+lin hi_hat_NK = {s = d05 "hi-hat"} ;
+lin hihaton_NK = {s = d34A "hihaton"} ;
+lin hihhuli_NK = {s = d06 "hihhuli"} ;
+lin hihhuloida_VK = {s = c68 "hihhuloida"} ;
+lin hihitella'_VK = {s = c67A "hihitellä"} ;
+lin hihitta'a'_VK = {s = c53A "hihittää"} ;
+lin hihitys_NK = {s = d39 "hihitys"} ;
+lin hihkaista_VK = {s = c66 "hihkaista"} ;
+lin hihkaisu_NK = {s = d02 "hihkaisu"} ;
+lin hihkua_VK = {s = c52 "hihkua"} ;
+lin hihkunta_NK = {s = d09A "hihkunta"} ;
+lin hihna_NK = {s = d09 "hihna"} ;
+lin hihnoittaa_VK = {s = c53A "hihnoittaa"} ;
+lin hihnoitus_NK = {s = d39 "hihnoitus"} ;
+lin hiihdella'_VK = {s = c67A "hiihdellä"} ;
+lin hiihdin_NK = {s = d33A "hiihdin"} ;
+lin hiihda'nta'_NK = {s = d09A "hiihdäntä"} ;
+--? lin hiihtarit_NK = {s = d06 "hiihtarit"} ;
+lin hiihtely_NK = {s = d02 "hiihtely"} ;
+lin hiihto_NK = {s = d01A "hiihto"} ;
+lin hiihta'ja'_NK = {s = d10 "hiihtäjä"} ;
+lin hiihta'a'_VK = {s = c53A "hiihtää"} ;
+lin hiilettya'_VK = {s = c52A "hiilettyä"} ;
+lin hiiletta'a'_VK = {s = c53A "hiilettää"} ;
+lin hiiletys_NK = {s = d39 "hiiletys"} ;
+lin hiili_NK = {s = d24 "hiili"} ;
+lin hiilidioksidi_NK = {s = d05 "hiilidioksidi"} ;
+lin hiilimonoksidi_NK = {s = d05 "hiilimonoksidi"} ;
+lin hiilinen_NK = {s = d38 "hiilinen"} ;
+lin hiilisto'_NK = {s = d02 "hiilistö"} ;
+lin hiilitetrakloridi_NK = {s = d05 "hiilitetrakloridi"} ;
+lin hiillos_NK = {s = d39 "hiillos"} ;
+lin hiillostaa_VK = {s = c53 "hiillostaa"} ;
+lin hiillostua_VK = {s = c52 "hiillostua"} ;
+lin hiillytta'a'_VK = {s = c53A "hiillyttää"} ;
+lin hiilto_NK = {s = d01A "hiilto"} ;
+lin hiiltya'_VK = {s = c52A "hiiltyä"} ;
+lin hiilta'a'_VK = {s = c54A "hiiltää"} ;
+lin hiilusta_NK = {s = d13 "hiilusta"} ;
+lin hiiop_AdvK = {s = c99 "hiiop"} ;
+lin hiipata_VK = {s = c73A "hiipata"} ;
+lin hiipiva'_AK = {s = d10 "hiipivä"} ;
+--+ lin hiipiva'sti_AdvK = {s = c99 "hiipivästi"} ;
+lin hiipia'_VK = {s = c61A "hiipiä"} ;
+lin hiippa_NK = {s = d09A "hiippa"} ;
+lin hiippailija_NK = {s = d12 "hiippailija"} ;
+lin hiippailla_VK = {s = c67 "hiippailla"} ;
+lin hiippailu_NK = {s = d02 "hiippailu"} ;
+lin hiippari_NK = {s = d06 "hiippari"} ;
+lin hiipua_VK = {s = c52A "hiipua"} ;
+lin hiirakko_NK = {s = d04A "hiirakko"} ;
+lin hiiri_NK = {s = d24 "hiiri"} ;
+lin hiirulainen_NK = {s = d38 "hiirulainen"} ;
+lin hiisi_NK = {s = d27 "hiisi"} ;
+lin hiiskahdus_NK = {s = d39 "hiiskahdus"} ;
+lin hiiskahtaa_VK = {s = c53A "hiiskahtaa"} ;
+lin hiiskaus_NK = {s = d39 "hiiskaus"} ;
+lin hiiskua_VK = {s = c52 "hiiskua"} ;
+lin hiiskumaton_NK = {s = d34A "hiiskumaton"} ;
+lin hiitata_VK = {s = c73A "hiitata"} ;
+lin hiitti_NK = {s = d05A "hiitti"} ;
+lin hiiva_NK = {s = d09 "hiiva"} ;
+lin hiivata_VK = {s = c73 "hiivata"} ;
+lin hiivatinmoinen_NK = {s = d38 "hiivatinmoinen"} ;
+lin hiivatisti_AdvK = {s = c99 "hiivatisti"} ;
+lin hiivatti_NK = {s = d05A "hiivatti"} ;
+lin hiivinta'_NK = {s = d09A "hiivintä"} ;
+lin hiiviskella'_VK = {s = c67 "hiiviskellä"} ;
+lin hiiviskely_NK = {s = d02 "hiiviskely"} ;
+lin hikeentya'_VK = {s = c52A "hikeentyä"} ;
+lin hikevyys_NK = {s = d40 "hikevyys"} ;
+lin hikeva'_NK = {s = d10 "hikevä"} ;
+lin hikeytya'_VK = {s = c52A "hikeytyä"} ;
+lin hiki_NK = {s = d07A "hiki"} ;
+lin hikinen_NK = {s = d38 "hikinen"} ;
+lin hikipa'issa'_AdvK = {s = c99 "hikipäissä"} ;
+lin hikisyys_NK = {s = d40 "hikisyys"} ;
+lin hikka_NK = {s = d09A "hikka"} ;
+lin hikkori_NK = {s = d06 "hikkori"} ;
+lin hikoilla_VK = {s = c67 "hikoilla"} ;
+lin hikoilu_NK = {s = d02 "hikoilu"} ;
+lin hikoiluttaa_VK = {s = c53A "hikoiluttaa"} ;
+lin hila_NK = {s = d09 "hila"} ;
+lin hilata_VK = {s = c73 "hilata"} ;
+lin hilaus_NK = {s = d39 "hilaus"} ;
+lin hilautua_VK = {s = c52A "hilautua"} ;
+lin hilavitkutin_NK = {s = d33A "hilavitkutin"} ;
+lin hile_NK = {s = d48 "hile"} ;
+lin hiljaa_AdvK = {s = c99 "hiljaa"} ;
+lin hiljainen_AK = {s = d38 "hiljainen"} ;
+--+ lin hiljaisesti_AdvK = {s = c99 "hiljaisesti"} ;
+lin hiljaisuus_NK = {s = d40 "hiljaisuus"} ;
+lin hiljakkoin_AdvK = {s = c99 "hiljakkoin"} ;
+lin hiljakseen_AdvK = {s = c99 "hiljakseen"} ;
+lin hiljalleen_AdvK = {s = c99 "hiljalleen"} ;
+lin hiljan_AdvK = {s = c99 "hiljan"} ;
+lin hiljattain_AdvK = {s = c99 "hiljattain"} ;
+lin hiljennys_NK = {s = d39 "hiljennys"} ;
+lin hiljentya'_VK = {s = c52A "hiljentyä"} ;
+lin hiljenta'a'_VK = {s = c54A "hiljentää"} ;
+lin hiljeta'_VK = {s = c72 "hiljetä"} ;
+lin hilkka_NK = {s = d09A "hilkka"} ;
+lin hilkulla_AdvK = {s = c99 "hilkulla"} ;
+lin hilla_NK = {s = d09 "hilla"} ;
+lin hilleri_NK = {s = d06 "hilleri"} ;
+lin hillinta'_NK = {s = d09A "hillintä"} ;
+lin hillitty_NK = {s = d01A "hillitty"} ;
+lin hillitto'ma'sti_AdvK = {s = c99 "hillittömästi"} ;
+lin hillitysti_AdvK = {s = c99 "hillitysti"} ;
+lin hillita'_VK = {s = c69 "hillitä"} ;
+lin hillito'n_NK = {s = d34A "hillitön"} ;
+lin hillo_NK = {s = d01 "hillo"} ;
+lin hilloke_NK = {s = d48A "hilloke"} ;
+lin hillota_VK = {s = c74 "hillota"} ;
+lin hilloutua_VK = {s = c52A "hilloutua"} ;
+lin hillua_VK = {s = c52 "hillua"} ;
+lin hilpaista_VK = {s = c66 "hilpaista"} ;
+lin hilpari_NK = {s = d06 "hilpari"} ;
+lin hilpeys_NK = {s = d40 "hilpeys"} ;
+lin hilpea'_AK = {s = d15 "hilpeä"} ;
+--+ lin hilpea'sti_AdvK = {s = c99 "hilpeästi"} ;
+lin hilse_NK = {s = d48 "hilse"} ;
+lin hilsehtia'_VK = {s = c52A "hilsehtiä"} ;
+lin hilseilla'_VK = {s = c67 "hilseillä"} ;
+lin hilseily_NK = {s = d02 "hilseily"} ;
+lin hilseinen_NK = {s = d38 "hilseinen"} ;
+lin hilsettya'_VK = {s = c52A "hilsettyä"} ;
+--? lin hilut_NK = {s = d01 "hilut"} ;
+lin hima_NK = {s = d09 "hima"} ;
+lin himmeli_NK = {s = d06 "himmeli"} ;
+lin himmennin_NK = {s = d33A "himmennin"} ;
+lin himmennys_NK = {s = d39 "himmennys"} ;
+lin himmentya'_VK = {s = c52A "himmentyä"} ;
+lin himmenta'a'_VK = {s = c54A "himmentää"} ;
+lin himmeta'_VK = {s = c72 "himmetä"} ;
+lin himmeys_NK = {s = d40 "himmeys"} ;
+lin himmea'_AK = {s = d15 "himmeä"} ;
+--+ lin himmea'sti_AdvK = {s = c99 "himmeästi"} ;
+lin himo_NK = {s = d01 "himo"} ;
+lin himoinen_NK = {s = d38 "himoinen"} ;
+lin himoita_VK = {s = c69 "himoita"} ;
+lin himokas_AK = {s = d41A "himokas"} ;
+--+ lin himokkaasti_AdvK = {s = c99 "himokkaasti"} ;
+lin himokkuus_NK = {s = d40 "himokkuus"} ;
+lin himota_VK = {s = c74 "himota"} ;
+lin himottaa_VK = {s = c53A "himottaa"} ;
+lin himphamppu_NK = {s = d01A "himphamppu"} ;
+lin himpun_AdvK = {s = c99 "himpun"} ;
+lin hinaaja_NK = {s = d10 "hinaaja"} ;
+lin hinata_VK = {s = c73 "hinata"} ;
+lin hinaus_NK = {s = d39 "hinaus"} ;
+lin hinauttaa_VK = {s = c53A "hinauttaa"} ;
+lin hinautua_VK = {s = c52A "hinautua"} ;
+lin hindi_NK = {s = d05 "hindi"} ;
+lin hindu_NK = {s = d01 "hindu"} ;
+lin hindulaisuus_NK = {s = d40 "hindulaisuus"} ;
+lin hindustani_NK = {s = d05 "hindustani"} ;
+lin hinkalo_NK = {s = d02 "hinkalo"} ;
+lin hinkata_VK = {s = c73A "hinkata"} ;
+lin hinkki_NK = {s = d05A "hinkki"} ;
+lin hinku_NK = {s = d01A "hinku"} ;
+lin hinkua_VK = {s = c52A "hinkua"} ;
+lin hinnakas_NK = {s = d41A "hinnakas"} ;
+lin hinnasto_NK = {s = d02 "hinnasto"} ;
+lin hinnoitella_VK = {s = c67A "hinnoitella"} ;
+lin hinnoittaa_VK = {s = c53A "hinnoittaa"} ;
+lin hinnoittelu_NK = {s = d02 "hinnoittelu"} ;
+lin hinnoitus_NK = {s = d39 "hinnoitus"} ;
+lin hinta_NK = {s = d09A "hinta"} ;
+lin hintainen_NK = {s = d38 "hintainen"} ;
+lin hintava_NK = {s = d10 "hintava"} ;
+lin hintelyys_NK = {s = d40 "hintelyys"} ;
+lin hintela'_NK = {s = d10 "hintelä"} ;
+lin hinttari_NK = {s = d06 "hinttari"} ;
+lin hintti_NK = {s = d05A "hintti"} ;
+lin hinttiys_NK = {s = d40 "hinttiys"} ;
+lin hioa_VK = {s = c52 "hioa"} ;
+lin hioke_NK = {s = d48A "hioke"} ;
+lin hiomakangas_NK = {s = d41A "hiomakangas"} ;
+lin hiomaton_NK = {s = d34A "hiomaton"} ;
+lin hiomo_NK = {s = d02 "hiomo"} ;
+lin hionta_NK = {s = d09A "hionta"} ;
+lin hiostaa_VK = {s = c53 "hiostaa"} ;
+lin hiostua_VK = {s = c52 "hiostua"} ;
+lin hiostus_NK = {s = d39 "hiostus"} ;
+lin hiostuttaa_VK = {s = c53A "hiostuttaa"} ;
+lin hiota_VK = {s = c74A "hiota"} ;
+lin hiottaa_1_VK = {s = c53A "hiottaa"} ;
+lin hiottaa_2_VK = {s = c53A "hiottaa"} ;
+lin hioutua_VK = {s = c52A "hioutua"} ;
+lin hip_AdvK = {s = c99 "hip"} ;
+lin hipaista_VK = {s = c66 "hipaista"} ;
+lin hipaisu_NK = {s = d02 "hipaisu"} ;
+--? lin hipat_NK = {s = d09A "hipat"} ;
+lin hipelo'ida'_VK = {s = c62 "hipelöidä"} ;
+lin hiphop_NK = {s = d05 "hiphop"} ;
+lin hipia'_NK = {s = d12 "hipiä"} ;
+lin hipoa_VK = {s = c52A "hipoa"} ;
+lin hippa_NK = {s = d09A "hippa"} ;
+lin hippasilla_AdvK = {s = c99 "hippasilla"} ;
+lin hippasille_AdvK = {s = c99 "hippasille"} ;
+lin hippi_NK = {s = d05A "hippi"} ;
+lin hippia'inen_NK = {s = d38 "hippiäinen"} ;
+lin hippodromi_NK = {s = d05 "hippodromi"} ;
+lin hippu_NK = {s = d01A "hippu"} ;
+--? lin hippulat_NK = {s = d12 "hippulat"} ;
+lin hipsia'_VK = {s = c61 "hipsiä"} ;
+lin hipsutella_VK = {s = c67A "hipsutella"} ;
+lin hipsuttaa_VK = {s = c53A "hipsuttaa"} ;
+lin hipsuttelu_NK = {s = d02 "hipsuttelu"} ;
+lin hipsutus_NK = {s = d39 "hipsutus"} ;
+lin hirmu_NK = {s = d01 "hirmu"} ;
+lin hirmuaika_NK = {s = d09A "hirmuaika"} ;
+lin hirmuinen_AK = {s = d38 "hirmuinen"} ;
+--+ lin hirmuisesti_AdvK = {s = c99 "hirmuisesti"} ;
+lin hirmuisuus_NK = {s = d40 "hirmuisuus"} ;
+lin hirmustua_VK = {s = c52 "hirmustua"} ;
+lin hirnahdella_VK = {s = c67A "hirnahdella"} ;
+lin hirnahdus_NK = {s = d39 "hirnahdus"} ;
+lin hirnahtaa_VK = {s = c53A "hirnahtaa"} ;
+lin hirnua_VK = {s = c52 "hirnua"} ;
+lin hirnunta_NK = {s = d09A "hirnunta"} ;
+lin hirsi_NK = {s = d28 "hirsi"} ;
+lin hirsinen_NK = {s = d38 "hirsinen"} ;
+lin hirssi_NK = {s = d05 "hirssi"} ;
+lin hirtehinen_NK = {s = d38 "hirtehinen"} ;
+lin hirtto_NK = {s = d01A "hirtto"} ;
+lin hirttya'_VK = {s = c52A "hirttyä"} ;
+lin hirtta'ma'to'n_NK = {s = d34A "hirttämätön"} ;
+lin hirtta'ytya'_VK = {s = c52A "hirttäytyä"} ;
+lin hirtta'a'_VK = {s = c53A "hirttää"} ;
+lin hirta'tta'a'_VK = {s = c53A "hirtättää"} ;
+lin hirvas_NK = {s = d41 "hirvas"} ;
+lin hirvenjuuri_NK = {s = d26 "hirvenjuuri"} ;
+lin hirventalja_NK = {s = d09 "hirventalja"} ;
+lin hirvenvasa_NK = {s = d09 "hirvenvasa"} ;
+lin hirvestys_NK = {s = d39 "hirvestys"} ;
+lin hirvesta'a'_VK = {s = c53 "hirvestää"} ;
+lin hirveta'_VK = {s = c74 "hirvetä"} ;
+lin hirveys_NK = {s = d40 "hirveys"} ;
+lin hirvea'_AK = {s = d15 "hirveä"} ;
+--+ lin hirvea'sti_AdvK = {s = c99 "hirveästi"} ;
+lin hirvi_NK = {s = d07 "hirvi"} ;
+lin hirvitella'_VK = {s = c67A "hirvitellä"} ;
+lin hirvitta'vyys_NK = {s = d40 "hirvittävyys"} ;
+lin hirvitta'va'_AK = {s = d10 "hirvittävä"} ;
+--+ lin hirvitta'va'sti_AdvK = {s = c99 "hirvittävästi"} ;
+lin hirvitta'a'_VK = {s = c53A "hirvittää"} ;
+lin hirvita'_VK = {s = c75 "hirvitä"} ;
+lin hirvio'_NK = {s = d03 "hirviö"} ;
+lin hisahdus_NK = {s = d39 "hisahdus"} ;
+lin hisahtaa_VK = {s = c53A "hisahtaa"} ;
+lin hisaus_NK = {s = d39 "hisaus"} ;
+lin hissa_NK = {s = d09 "hissa"} ;
+lin hissata_VK = {s = c73 "hissata"} ;
+lin hissi_NK = {s = d05 "hissi"} ;
+lin hissukka_NK = {s = d14A "hissukka"} ;
+lin hissukseen_AdvK = {s = c99 "hissukseen"} ;
+lin hissuksiin_AdvK = {s = c99 "hissuksiin"} ;
+lin hissun_kissun_AdvK = {s = c99 "hissun kissun"} ;
+lin hissutella_VK = {s = c67A "hissutella"} ;
+lin hissuttaa_VK = {s = c53A "hissuttaa"} ;
+lin hissuttelu_NK = {s = d02 "hissuttelu"} ;
+lin histamiini_NK = {s = d05 "histamiini"} ;
+lin histogrammi_NK = {s = d05 "histogrammi"} ;
+lin histologi_NK = {s = d05 "histologi"} ;
+lin histologia_NK = {s = d12 "histologia"} ;
+lin histologinen_NK = {s = d38 "histologinen"} ;
+lin historia_NK = {s = d12 "historia"} ;
+lin historiallinen_NK = {s = d38 "historiallinen"} ;
+lin historiikki_NK = {s = d05A "historiikki"} ;
+lin historioida_VK = {s = c62 "historioida"} ;
+lin historioitsija_NK = {s = d12 "historioitsija"} ;
+lin hitaasti_AdvK = {s = c99 "hitaasti"} ;
+lin hitaus_NK = {s = d40 "hitaus"} ;
+lin hi_tec_NK = {s = d05 "hi-tec"} ;
+lin hi_tech_NK = {s = d05 "hi-tech"} ;
+lin hitonmoinen_NK = {s = d38 "hitonmoinen"} ;
+lin hitosti_AdvK = {s = c99 "hitosti"} ;
+lin hitsaaja_NK = {s = d10 "hitsaaja"} ;
+lin hitsaamo_NK = {s = d02 "hitsaamo"} ;
+lin hitsaantua_VK = {s = c52A "hitsaantua"} ;
+lin hitsari_NK = {s = d06 "hitsari"} ;
+lin hitsata_VK = {s = c73 "hitsata"} ;
+lin hitsaus_NK = {s = d39 "hitsaus"} ;
+lin hitsautua_VK = {s = c52A "hitsautua"} ;
+lin hitsi_1_NK = {s = d05 "hitsi"} ;
+lin hitsi_2_NK = {s = d05 "hitsi"} ;
+lin hitti_NK = {s = d05A "hitti"} ;
+lin hitto_NK = {s = d01A "hitto"} ;
+lin hitu_NK = {s = d01A "hitu"} ;
+lin hitunen_NK = {s = d38 "hitunen"} ;
+lin hiuduttaa_VK = {s = c53A "hiuduttaa"} ;
+lin hiue_NK = {s = d48A "hiue"} ;
+lin hiuka_NK = {s = d09A "hiuka"} ;
+lin hiukaista_VK = {s = c66 "hiukaista"} ;
+lin hiukan_AdvK = {s = c99 "hiukan"} ;
+lin hiukka_NK = {s = d09A "hiukka"} ;
+lin hiukkanen_NK = {s = d38 "hiukkanen"} ;
+lin hiukoa_VK = {s = c52A "hiukoa"} ;
+lin hiuksenhalkominen_NK = {s = d38 "hiuksenhalkominen"} ;
+lin hiuksinen_NK = {s = d38 "hiuksinen"} ;
+lin hius_NK = {s = d39 "hius"} ;
+lin hiusjuuri_NK = {s = d26 "hiusjuuri"} ;
+lin hiustenhalkoja_NK = {s = d10 "hiustenhalkoja"} ;
+lin hiustenhalkominen_NK = {s = d38 "hiustenhalkominen"} ;
+lin hiutale_NK = {s = d48 "hiutale"} ;
+lin hiutaleinen_NK = {s = d38 "hiutaleinen"} ;
+lin hiutua_VK = {s = c52A "hiutua"} ;
+lin hiutuma_NK = {s = d10 "hiutuma"} ;
+lin HIV_AdvK = {s = c99 "HIV"} ;
+lin hivauttaa_VK = {s = c53A "hivauttaa"} ;
+lin hivella'_VK = {s = c67 "hivellä"} ;
+lin hivelta'a'_VK = {s = c54A "hiveltää"} ;
+lin hiven_NK = {s = d32 "hiven"} ;
+lin hivuttaa_VK = {s = c53A "hivuttaa"} ;
+lin hivuttautua_VK = {s = c52A "hivuttautua"} ;
+lin hivutus_NK = {s = d39 "hivutus"} ;
+lin hobby_NK = {s = d01 "hobby"} ;
+lin hodari_NK = {s = d06 "hodari"} ;
+lin hoennainen_NK = {s = d38 "hoennainen"} ;
+lin hoenta_NK = {s = d09A "hoenta"} ;
+lin hohde_NK = {s = d48A "hohde"} ;
+lin hohdella_VK = {s = c67A "hohdella"} ;
+lin hohdokas_AK = {s = d41A "hohdokas"} ;
+--+ lin hohdokkaasti_AdvK = {s = c99 "hohdokkaasti"} ;
+lin hohdokkuus_NK = {s = d40 "hohdokkuus"} ;
+lin hohhoijaa_AdvK = {s = c99 "hohhoijaa"} ;
+lin hohka_NK = {s = d10 "hohka"} ;
+lin hohkaa_VK = {s = c78 "hohkaa"} ;
+lin hohkainen_NK = {s = d38 "hohkainen"} ;
+lin hohkata_VK = {s = c73 "hohkata"} ;
+lin hohkua_VK = {s = c52 "hohkua"} ;
+lin hohottaa_VK = {s = c53A "hohottaa"} ;
+lin hohotus_NK = {s = d39 "hohotus"} ;
+lin hohtaa_VK = {s = c53A "hohtaa"} ;
+lin hohteinen_NK = {s = d38 "hohteinen"} ;
+--? lin hohtimet_NK = {s = d33A "hohtimet"} ;
+lin hohto_NK = {s = d01A "hohto"} ;
+lin hohtoinen_NK = {s = d38 "hohtoinen"} ;
+lin hoi_AdvK = {s = c99 "hoi"} ;
+lin hoidattaa_VK = {s = c53A "hoidattaa"} ;
+lin hoide_NK = {s = d48A "hoide"} ;
+lin hoidella_VK = {s = c67A "hoidella"} ;
+lin hoidokki_NK = {s = d05A "hoidokki"} ;
+lin hoidollinen_NK = {s = d38 "hoidollinen"} ;
+lin hoikentaa_VK = {s = c54A "hoikentaa"} ;
+lin hoikentua_VK = {s = c52A "hoikentua"} ;
+lin hoiketa_VK = {s = c72A "hoiketa"} ;
+lin hoikistaa_VK = {s = c53 "hoikistaa"} ;
+lin hoikistua_VK = {s = c52 "hoikistua"} ;
+lin hoikka_NK = {s = d10A "hoikka"} ;
+lin hoikkuus_NK = {s = d40 "hoikkuus"} ;
+lin hoilata_VK = {s = c73 "hoilata"} ;
+lin hoilottaa_VK = {s = c53A "hoilottaa"} ;
+lin hoilotus_NK = {s = d39 "hoilotus"} ;
+lin hoiperrella_VK = {s = c67A "hoiperrella"} ;
+lin hoipertelu_NK = {s = d02 "hoipertelu"} ;
+lin hoippua_VK = {s = c52A "hoippua"} ;
+lin hoippuroida_VK = {s = c62 "hoippuroida"} ;
+lin hoippurointi_NK = {s = d05A "hoippurointi"} ;
+lin hoitaa_VK = {s = c53A "hoitaa"} ;
+lin hoitaja_NK = {s = d10 "hoitaja"} ;
+lin hoitajatar_NK = {s = d32A "hoitajatar"} ;
+lin hoitelu_NK = {s = d02 "hoitelu"} ;
+lin hoito_NK = {s = d01A "hoito"} ;
+lin hoitoisuus_NK = {s = d40 "hoitoisuus"} ;
+lin hoitua_VK = {s = c52A "hoitua"} ;
+lin hoituri_NK = {s = d06 "hoituri"} ;
+lin hoiva_NK = {s = d10 "hoiva"} ;
+lin hoivailla_VK = {s = c67 "hoivailla"} ;
+lin hoivata_VK = {s = c73 "hoivata"} ;
+lin hoivaus_NK = {s = d39 "hoivaus"} ;
+lin hokea_VK = {s = c58A "hokea"} ;
+lin hokema_NK = {s = d10 "hokema"} ;
+lin hokkari_NK = {s = d06 "hokkari"} ;
+lin hokkuspokkus_NK = {s = d39 "hokkuspokkus"} ;
+lin hoksaavainen_NK = {s = d38 "hoksaavainen"} ;
+lin hoksata_VK = {s = c73 "hoksata"} ;
+--? lin hoksottimet_NK = {s = d33A "hoksottimet"} ;
+lin hoku_NK = {s = d01A "hoku"} ;
+lin holahtaa_VK = {s = c53A "holahtaa"} ;
+lin holauttaa_VK = {s = c53A "holauttaa"} ;
+lin holhokki_NK = {s = d05A "holhokki"} ;
+lin holhonta_NK = {s = d09A "holhonta"} ;
+lin holhooja_NK = {s = d10 "holhooja"} ;
+lin holhota_VK = {s = c74 "holhota"} ;
+lin holhotti_NK = {s = d05A "holhotti"} ;
+lin holhous_NK = {s = d39 "holhous"} ;
+lin holismi_NK = {s = d05 "holismi"} ;
+lin holisti_NK = {s = d05 "holisti"} ;
+lin holistinen_NK = {s = d38 "holistinen"} ;
+lin holkeri_NK = {s = d06 "holkeri"} ;
+lin holkki_NK = {s = d05A "holkki"} ;
+lin hollannikas_NK = {s = d41A "hollannikas"} ;
+lin hollanti_NK = {s = d05A "hollanti"} ;
+lin holli_NK = {s = d05 "holli"} ;
+lin holografia_NK = {s = d12 "holografia"} ;
+lin hologrammi_NK = {s = d05 "hologrammi"} ;
+lin holokausti_NK = {s = d05 "holokausti"} ;
+lin holtiton_NK = {s = d34A "holtiton"} ;
+lin holtittomasti_AdvK = {s = c99 "holtittomasti"} ;
+lin holtittomuus_NK = {s = d40 "holtittomuus"} ;
+lin holtti_NK = {s = d05A "holtti"} ;
+lin holvata_1_VK = {s = c73 "holvata"} ;
+lin holvata_2_VK = {s = c73 "holvata"} ;
+lin holvaus_1_NK = {s = d39 "holvaus"} ;
+lin holvaus_2_NK = {s = d39 "holvaus"} ;
+lin holvi_NK = {s = d05 "holvi"} ;
+lin holvinen_NK = {s = d38 "holvinen"} ;
+lin holvisto_NK = {s = d02 "holvisto"} ;
+lin holvittaa_VK = {s = c53A "holvittaa"} ;
+lin home_NK = {s = d48 "home"} ;
+lin homeerinen_NK = {s = d38 "homeerinen"} ;
+lin homehduttaa_VK = {s = c53A "homehduttaa"} ;
+lin homehtua_VK = {s = c52A "homehtua"} ;
+lin homeinen_NK = {s = d38 "homeinen"} ;
+lin homeopaattinen_NK = {s = d38 "homeopaattinen"} ;
+lin homeopatia_NK = {s = d12 "homeopatia"} ;
+lin homeostaasi_NK = {s = d05 "homeostaasi"} ;
+lin homeostaattinen_NK = {s = d38 "homeostaattinen"} ;
+lin hominidi_NK = {s = d05 "hominidi"} ;
+lin homma_NK = {s = d10 "homma"} ;
+lin hommailla_VK = {s = c67 "hommailla"} ;
+lin hommata_VK = {s = c73 "hommata"} ;
+lin hommautua_VK = {s = c52A "hommautua"} ;
+lin hommeli_NK = {s = d06 "hommeli"} ;
+lin homo_NK = {s = d01 "homo"} ;
+lin homofiili_NK = {s = d05 "homofiili"} ;
+lin homofiilinen_NK = {s = d38 "homofiilinen"} ;
+lin homofiilisuus_NK = {s = d40 "homofiilisuus"} ;
+lin homofiilius_NK = {s = d40 "homofiilius"} ;
+lin homogeeninen_NK = {s = d38 "homogeeninen"} ;
+lin homogeenistaa_VK = {s = c53 "homogeenistaa"} ;
+lin homogeenisuus_NK = {s = d40 "homogeenisuus"} ;
+lin homogenisoida_VK = {s = c62 "homogenisoida"} ;
+lin homogenisointi_NK = {s = d05A "homogenisointi"} ;
+lin homogenoida_VK = {s = c62 "homogenoida"} ;
+lin homogenointi_NK = {s = d05A "homogenointi"} ;
+lin homonyymi_NK = {s = d05 "homonyymi"} ;
+lin homoseksuaali_NK = {s = d05 "homoseksuaali"} ;
+lin homoseksualismi_NK = {s = d05 "homoseksualismi"} ;
+lin homoseksualisti_NK = {s = d05 "homoseksualisti"} ;
+lin homotsygootti_NK = {s = d05A "homotsygootti"} ;
+lin homotsygoottinen_NK = {s = d38 "homotsygoottinen"} ;
+lin homous_NK = {s = d40 "homous"} ;
+lin hompsottaa_VK = {s = c53A "hompsottaa"} ;
+lin homssantuu_NK = {s = d18 "homssantuu"} ;
+lin homssu_NK = {s = d01 "homssu"} ;
+lin homssuinen_NK = {s = d38 "homssuinen"} ;
+lin hongankolistaja_NK = {s = d10 "hongankolistaja"} ;
+lin hongikko_NK = {s = d04A "hongikko"} ;
+lin hongisto_NK = {s = d02 "hongisto"} ;
+lin honka_NK = {s = d10A "honka"} ;
+lin honkainen_NK = {s = d38 "honkainen"} ;
+lin honkkeli_NK = {s = d06 "honkkeli"} ;
+lin honoris_causa_AdvK = {s = c99 "honoris causa"} ;
+lin honottaa_VK = {s = c53A "honottaa"} ;
+lin honotus_NK = {s = d39 "honotus"} ;
+lin hontelo_NK = {s = d02 "hontelo"} ;
+lin hoonata_VK = {s = c73 "hoonata"} ;
+lin hoonaus_NK = {s = d39 "hoonaus"} ;
+lin hoopo_NK = {s = d01 "hoopo"} ;
+lin hoopoilla_VK = {s = c67 "hoopoilla"} ;
+lin hoosata_VK = {s = c73 "hoosata"} ;
+lin hoosianna_NK = {s = d09 "hoosianna"} ;
+lin hopea_NK = {s = d15 "hopea"} ;
+lin hopeahapsinen_NK = {s = d38 "hopeahapsinen"} ;
+lin hopeahela_NK = {s = d09 "hopeahela"} ;
+lin hopeainen_NK = {s = d38 "hopeainen"} ;
+lin hopeinen_NK = {s = d38 "hopeinen"} ;
+lin hopeoida_VK = {s = c62 "hopeoida"} ;
+lin hopeointi_NK = {s = d05A "hopeointi"} ;
+lin hopeoitua_VK = {s = c52A "hopeoitua"} ;
+lin hoppu_NK = {s = d01A "hoppu"} ;
+lin hoppuilla_VK = {s = c67 "hoppuilla"} ;
+lin hoppuilu_NK = {s = d02 "hoppuilu"} ;
+lin hoputtaa_VK = {s = c53A "hoputtaa"} ;
+lin horina_NK = {s = d12 "horina"} ;
+lin horisko_NK = {s = d02 "horisko"} ;
+lin horisontaali_NK = {s = d05 "horisontaali"} ;
+lin horisontaalinen_NK = {s = d38 "horisontaalinen"} ;
+lin horisontti_NK = {s = d05A "horisontti"} ;
+lin horista_VK = {s = c66 "horista"} ;
+lin horjahdella_VK = {s = c67A "horjahdella"} ;
+lin horjahdus_NK = {s = d39 "horjahdus"} ;
+lin horjahtaa_VK = {s = c53A "horjahtaa"} ;
+lin horjahtelu_NK = {s = d02 "horjahtelu"} ;
+lin horjua_VK = {s = c52 "horjua"} ;
+lin horjumaton_NK = {s = d34A "horjumaton"} ;
+lin horjunta_NK = {s = d09A "horjunta"} ;
+lin horjuttaa_VK = {s = c53A "horjuttaa"} ;
+lin horjuva_NK = {s = d10 "horjuva"} ;
+lin horjuvainen_NK = {s = d38 "horjuvainen"} ;
+lin horjuvaisuus_NK = {s = d40 "horjuvaisuus"} ;
+lin horjuvuus_NK = {s = d40 "horjuvuus"} ;
+lin horkka_NK = {s = d10A "horkka"} ;
+lin hormi_NK = {s = d05 "hormi"} ;
+lin hormonaalinen_NK = {s = d38 "hormonaalinen"} ;
+lin hormoni_NK = {s = d05 "hormoni"} ;
+lin horna_NK = {s = d10 "horna"} ;
+lin horoskooppi_NK = {s = d05A "horoskooppi"} ;
+lin horre_NK = {s = d48A "horre"} ;
+lin horros_NK = {s = d39 "horros"} ;
+lin horrostaa_VK = {s = c53 "horrostaa"} ;
+lin horsma_NK = {s = d10 "horsma"} ;
+lin horsti_NK = {s = d05 "horsti"} ;
+lin horteessa_AdvK = {s = c99 "horteessa"} ;
+lin horteinen_NK = {s = d38 "horteinen"} ;
+lin hortensia_NK = {s = d12 "hortensia"} ;
+lin hortoilla_VK = {s = c67 "hortoilla"} ;
+lin hortoilu_NK = {s = d02 "hortoilu"} ;
+lin hortonomi_NK = {s = d05 "hortonomi"} ;
+lin hospitsi_NK = {s = d05 "hospitsi"} ;
+lin hosua_VK = {s = c52 "hosua"} ;
+lin hotaista_VK = {s = c66 "hotaista"} ;
+lin hotaisu_NK = {s = d02 "hotaisu"} ;
+lin hot_dog_NK = {s = d05 "hot dog"} ;
+lin hoteisiin_AdvK = {s = c99 "hoteisiin"} ;
+lin hoteissa_AdvK = {s = c99 "hoteissa"} ;
+lin hoteista_AdvK = {s = c99 "hoteista"} ;
+lin hotelli_NK = {s = d06 "hotelli"} ;
+lin hotkaista_VK = {s = c66 "hotkaista"} ;
+lin hotkaisu_NK = {s = d02 "hotkaisu"} ;
+lin hotkia_VK = {s = c61 "hotkia"} ;
+lin hotsittaa_VK = {s = c53A "hotsittaa"} ;
+lin hottentotti_NK = {s = d05A "hottentotti"} ;
+lin houkka_NK = {s = d10A "houkka"} ;
+lin houkkio_NK = {s = d03 "houkkio"} ;
+lin houkute_NK = {s = d48A "houkute"} ;
+lin houkutella_VK = {s = c67A "houkutella"} ;
+lin houkutin_NK = {s = d33A "houkutin"} ;
+lin houkuttaa_VK = {s = c53A "houkuttaa"} ;
+lin houkuttelu_NK = {s = d02 "houkuttelu"} ;
+lin houkuttua_VK = {s = c52A "houkuttua"} ;
+lin houkutus_NK = {s = d39 "houkutus"} ;
+lin hourailla_VK = {s = c67 "hourailla"} ;
+lin hourailu_NK = {s = d02 "hourailu"} ;
+lin houre_NK = {s = d48 "houre"} ;
+lin houreinen_NK = {s = d38 "houreinen"} ;
+lin houria_VK = {s = c61 "houria"} ;
+lin hourula_NK = {s = d12 "hourula"} ;
+lin house_NK = {s = d08 "house"} ;
+lin housuinen_NK = {s = d38 "housuinen"} ;
+lin housukangas_NK = {s = d41A "housukangas"} ;
+lin housuliivi_NK = {s = d05 "housuliivi"} ;
+lin housunpuntti_NK = {s = d05A "housunpuntti"} ;
+lin housupari_NK = {s = d05 "housupari"} ;
+lin housusillaan_AdvK = {s = c99 "housusillaan"} ;
+lin housusilleen_AdvK = {s = c99 "housusilleen"} ;
+--? lin housut_NK = {s = d01 "housut"} ;
+lin hovi_NK = {s = d05 "hovi"} ;
+lin hugenotti_NK = {s = d05A "hugenotti"} ;
+lin huh_AdvK = {s = c99 "huh"} ;
+lin huhkia_VK = {s = c61 "huhkia"} ;
+lin huhmar_NK = {s = d49 "huhmar"} ;
+lin huhmare_NK = {s = d49 "huhmare"} ;
+lin huhta_NK = {s = d10A "huhta"} ;
+lin huhtoa_VK = {s = c52A "huhtoa"} ;
+lin huhu_NK = {s = d01 "huhu"} ;
+lin huhuilla_VK = {s = c67 "huhuilla"} ;
+lin huhuilu_NK = {s = d02 "huhuilu"} ;
+lin huhuta_VK = {s = c74 "huhuta"} ;
+lin hui_AdvK = {s = c99 "hui"} ;
+lin huidella_VK = {s = c67A "huidella"} ;
+lin hui_hai_AdvK = {s = c99 "hui hai"} ;
+lin huijari_NK = {s = d06 "huijari"} ;
+lin huijata_VK = {s = c73 "huijata"} ;
+lin huijaus_NK = {s = d39 "huijaus"} ;
+lin huikaista_VK = {s = c66 "huikaista"} ;
+lin huikaistua_VK = {s = c52 "huikaistua"} ;
+lin huikata_VK = {s = c73A "huikata"} ;
+lin huikea_AK = {s = d15 "huikea"} ;
+--+ lin huikeasti_AdvK = {s = c99 "huikeasti"} ;
+lin huikennella_VK = {s = c67A "huikennella"} ;
+lin huikenteleva_AK = {s = d10 "huikenteleva"} ;
+lin huikentelevainen_AK = {s = d38 "huikentelevainen"} ;
+--+ lin huikentelevaisesti_AdvK = {s = c99 "huikentelevaisesti"} ;
+lin huikentelevaisuus_NK = {s = d40 "huikentelevaisuus"} ;
+--+ lin huikentelevasti_AdvK = {s = c99 "huikentelevasti"} ;
+lin huikentelevuus_NK = {s = d40 "huikentelevuus"} ;
+lin huikentelu_NK = {s = d02 "huikentelu"} ;
+lin huikka_NK = {s = d10A "huikka"} ;
+lin huikkaus_NK = {s = d39 "huikkaus"} ;
+lin huilata_VK = {s = c73 "huilata"} ;
+lin huilia_VK = {s = c61 "huilia"} ;
+lin huilisti_NK = {s = d05 "huilisti"} ;
+lin huilu_NK = {s = d01 "huilu"} ;
+lin huima_AK = {s = d10 "huima"} ;
+lin huimaava_AK = {s = d10 "huimaava"} ;
+--+ lin huimaavasti_AdvK = {s = c99 "huimaavasti"} ;
+lin huimaavuus_NK = {s = d40 "huimaavuus"} ;
+--+ lin huimapa'isesti_AdvK = {s = c99 "huimapäisesti"} ;
+lin huimapa'isyys_NK = {s = d40 "huimapäisyys"} ;
+--+ lin huimasti_AdvK = {s = c99 "huimasti"} ;
+lin huimata_VK = {s = c73 "huimata"} ;
+lin huimaus_NK = {s = d39 "huimaus"} ;
+lin huimeta_VK = {s = c72 "huimeta"} ;
+lin huimia_VK = {s = c61 "huimia"} ;
+lin huipata_VK = {s = c73A "huipata"} ;
+lin huipennus_NK = {s = d39 "huipennus"} ;
+lin huipentaa_VK = {s = c54A "huipentaa"} ;
+lin huipentua_VK = {s = c52A "huipentua"} ;
+lin huipentuma_NK = {s = d10 "huipentuma"} ;
+lin huipeta_VK = {s = c72A "huipeta"} ;
+lin huipistaa_VK = {s = c53 "huipistaa"} ;
+lin huipistua_VK = {s = c52 "huipistua"} ;
+lin huippu_NK = {s = d01A "huippu"} ;
+lin huippuinen_NK = {s = d38 "huippuinen"} ;
+lin huippukohta_NK = {s = d10A "huippukohta"} ;
+lin huiputtaa_VK = {s = c53A "huiputtaa"} ;
+lin huiputus_NK = {s = d39 "huiputus"} ;
+lin huiska_NK = {s = d10 "huiska"} ;
+lin huiskaa_VK = {s = c78 "huiskaa"} ;
+lin huiskahtaa_VK = {s = c53A "huiskahtaa"} ;
+lin huiskaista_VK = {s = c66 "huiskaista"} ;
+lin huiskale_NK = {s = d48 "huiskale"} ;
+lin huiskaus_NK = {s = d39 "huiskaus"} ;
+lin huiskauttaa_VK = {s = c53A "huiskauttaa"} ;
+lin huiske_NK = {s = d48 "huiske"} ;
+lin huiskea_NK = {s = d15 "huiskea"} ;
+lin huiskia_VK = {s = c61 "huiskia"} ;
+lin huiskilo_NK = {s = d02 "huiskilo"} ;
+lin huiskina_NK = {s = d12 "huiskina"} ;
+lin huiskin_haiskin_AdvK = {s = c99 "huiskin haiskin"} ;
+lin huiskinta_NK = {s = d09A "huiskinta"} ;
+lin huiskis_AdvK = {s = c99 "huiskis"} ;
+lin huisku_NK = {s = d01 "huisku"} ;
+lin huiskuttaa_VK = {s = c53A "huiskuttaa"} ;
+lin huiskutus_NK = {s = d39 "huiskutus"} ;
+lin huit_AdvK = {s = c99 "huit"} ;
+lin huitaista_VK = {s = c66 "huitaista"} ;
+lin huitaisu_NK = {s = d01 "huitaisu"} ;
+lin huithapeli_NK = {s = d06 "huithapeli"} ;
+lin huitoa_VK = {s = c52A "huitoa"} ;
+lin huitsin_AdvK = {s = c99 "huitsin"} ;
+lin huivi_NK = {s = d05 "huivi"} ;
+lin hujahdus_NK = {s = d39 "hujahdus"} ;
+lin hujahtaa_VK = {s = c53A "hujahtaa"} ;
+lin hujakoilla_AdvK = {s = c99 "hujakoilla"} ;
+lin hujan_hajan_AdvK = {s = c99 "hujan hajan"} ;
+lin hujaus_NK = {s = d39 "hujaus"} ;
+lin hujauttaa_VK = {s = c53A "hujauttaa"} ;
+lin hujellus_NK = {s = d39 "hujellus"} ;
+lin hujeltaa_VK = {s = c54A "hujeltaa"} ;
+lin hujoppi_NK = {s = d05A "hujoppi"} ;
+lin hukassa_AdvK = {s = c99 "hukassa"} ;
+lin hukata_VK = {s = c73A "hukata"} ;
+lin huki_NK = {s = d05 "huki"} ;
+lin hukka_NK = {s = d10A "hukka"} ;
+lin hukka_aika_NK = {s = d09A "hukka-aika"} ;
+lin hukkaan_AdvK = {s = c99 "hukkaan"} ;
+lin hukkaantua_VK = {s = c52A "hukkaantua"} ;
+lin hukkateille_AdvK = {s = c99 "hukkateille"} ;
+lin hukkateilla'_AdvK = {s = c99 "hukkateillä"} ;
+lin hukkautua_VK = {s = c52A "hukkautua"} ;
+lin hukkua_VK = {s = c52A "hukkua"} ;
+lin hukuksiin_AdvK = {s = c99 "hukuksiin"} ;
+lin hukuksissa_AdvK = {s = c99 "hukuksissa"} ;
+lin hukuttaa_VK = {s = c53A "hukuttaa"} ;
+lin hukuttautua_VK = {s = c52A "hukuttautua"} ;
+lin hula_NK = {s = d10 "hula"} ;
+lin hulahtaa_VK = {s = c53A "hulahtaa"} ;
+lin hulauttaa_VK = {s = c53A "hulauttaa"} ;
+lin huligaani_NK = {s = d05 "huligaani"} ;
+lin huliganismi_NK = {s = d05 "huliganismi"} ;
+lin hulina_NK = {s = d12 "hulina"} ;
+lin hulinoida_VK = {s = c62 "hulinoida"} ;
+lin hulinointi_NK = {s = d05A "hulinointi"} ;
+lin hulinoitsija_NK = {s = d12 "hulinoitsija"} ;
+lin hulivili_NK = {s = d05 "hulivili"} ;
+lin huljahtaa_VK = {s = c53A "huljahtaa"} ;
+lin huljauttaa_VK = {s = c53A "huljauttaa"} ;
+lin huljua_VK = {s = c52 "huljua"} ;
+lin huljutella_VK = {s = c67A "huljutella"} ;
+lin huljuttaa_VK = {s = c53A "huljuttaa"} ;
+lin huljuttelu_NK = {s = d02 "huljuttelu"} ;
+lin huljutus_NK = {s = d39 "huljutus"} ;
+lin hullaannuttaa_VK = {s = c53A "hullaannuttaa"} ;
+lin hullaantua_VK = {s = c52A "hullaantua"} ;
+lin hullu_AK = {s = d01 "hullu"} ;
+lin hullunkurinen_AK = {s = d38 "hullunkurinen"} ;
+--+ lin hullunkurisesti_AdvK = {s = c99 "hullunkurisesti"} ;
+lin hullunkurisuus_NK = {s = d40 "hullunkurisuus"} ;
+--+ lin hullusti_AdvK = {s = c99 "hullusti"} ;
+lin hullutella_VK = {s = c67A "hullutella"} ;
+lin hulluttelu_NK = {s = d02 "hulluttelu"} ;
+lin hullutus_NK = {s = d39 "hullutus"} ;
+lin hulluus_NK = {s = d40 "hulluus"} ;
+lin hulmahdella_VK = {s = c67A "hulmahdella"} ;
+lin hulmahdus_NK = {s = d39 "hulmahdus"} ;
+lin hulmahtaa_VK = {s = c53A "hulmahtaa"} ;
+lin hulmahtelu_NK = {s = d02 "hulmahtelu"} ;
+lin hulmauttaa_VK = {s = c53A "hulmauttaa"} ;
+lin hulmuta_VK = {s = c75 "hulmuta"} ;
+lin hulpilo_NK = {s = d02 "hulpilo"} ;
+lin hulpio_NK = {s = d03 "hulpio"} ;
+lin hulppea_NK = {s = d15 "hulppea"} ;
+lin hulttio_NK = {s = d03 "hulttio"} ;
+lin hulvahdus_NK = {s = d39 "hulvahdus"} ;
+lin hulvahtaa_VK = {s = c53A "hulvahtaa"} ;
+lin hulvaton_NK = {s = d34A "hulvaton"} ;
+lin humaani_NK = {s = d05 "humaani"} ;
+lin humaaninen_NK = {s = d38 "humaaninen"} ;
+lin humaanistaa_VK = {s = c53 "humaanistaa"} ;
+lin humaanistua_VK = {s = c52 "humaanistua"} ;
+lin humaanisuus_NK = {s = d40 "humaanisuus"} ;
+lin humaanius_NK = {s = d40 "humaanius"} ;
+lin humahdella_VK = {s = c67A "humahdella"} ;
+lin humahdus_NK = {s = d39 "humahdus"} ;
+lin humahtaa_VK = {s = c53A "humahtaa"} ;
+lin humala_NK = {s = d10 "humala"} ;
+lin humalainen_NK = {s = d38 "humalainen"} ;
+lin humalapa'issa'_AdvK = {s = c99 "humalapäissä"} ;
+lin humalikas_NK = {s = d41A "humalikas"} ;
+lin humalikko_NK = {s = d04A "humalikko"} ;
+lin humalisto_NK = {s = d01 "humalisto"} ;
+lin humalluttaa_VK = {s = c53A "humalluttaa"} ;
+lin humaltua_VK = {s = c52A "humaltua"} ;
+lin humanismi_NK = {s = d05 "humanismi"} ;
+lin humanisoida_VK = {s = c62 "humanisoida"} ;
+lin humanisoitua_VK = {s = c52A "humanisoitua"} ;
+lin humanisti_NK = {s = d05 "humanisti"} ;
+lin humanistinen_NK = {s = d38 "humanistinen"} ;
+lin humanitaarinen_NK = {s = d38 "humanitaarinen"} ;
+lin humanita'a'rinen_NK = {s = d38 "humanitäärinen"} ;
+lin humanoidi_NK = {s = d05 "humanoidi"} ;
+lin humaus_NK = {s = d39 "humaus"} ;
+lin humauttaa_VK = {s = c53A "humauttaa"} ;
+lin humina_NK = {s = d12 "humina"} ;
+lin huminoida_VK = {s = c62 "huminoida"} ;
+lin humista_VK = {s = c66 "humista"} ;
+lin humma_NK = {s = d10 "humma"} ;
+lin hummailla_VK = {s = c67 "hummailla"} ;
+lin hummailu_NK = {s = d02 "hummailu"} ;
+lin hummata_VK = {s = c73 "hummata"} ;
+lin hummaus_NK = {s = d39 "hummaus"} ;
+lin hummeri_NK = {s = d06 "hummeri"} ;
+lin humoreski_NK = {s = d05 "humoreski"} ;
+lin humoristi_NK = {s = d05 "humoristi"} ;
+lin humoristinen_AK = {s = d38 "humoristinen"} ;
+--+ lin humoristisesti_AdvK = {s = c99 "humoristisesti"} ;
+lin humoristisuus_NK = {s = d40 "humoristisuus"} ;
+lin humpata_VK = {s = c73A "humpata"} ;
+lin humppa_NK = {s = d10A "humppa"} ;
+lin humpsahtaa_VK = {s = c53A "humpsahtaa"} ;
+lin humputella_VK = {s = c67A "humputella"} ;
+lin humpuuki_NK = {s = d05 "humpuuki"} ;
+lin humu_NK = {s = d01 "humu"} ;
+lin humus_NK = {s = d39 "humus"} ;
+lin hunaja_NK = {s = d10 "hunaja"} ;
+lin hunajainen_AK = {s = d38 "hunajainen"} ;
+--+ lin hunajaisesti_AdvK = {s = c99 "hunajaisesti"} ;
+lin hunni_NK = {s = d05 "hunni"} ;
+lin hunningolla_AdvK = {s = c99 "hunningolla"} ;
+lin hunningolle_AdvK = {s = c99 "hunningolle"} ;
+lin hunnuttaa_VK = {s = c53A "hunnuttaa"} ;
+lin hunsvotti_NK = {s = d05A "hunsvotti"} ;
+lin huntti_NK = {s = d05A "huntti"} ;
+lin huntu_NK = {s = d01A "huntu"} ;
+lin huoahdella_VK = {s = c67A "huoahdella"} ;
+lin huoahdus_NK = {s = d39 "huoahdus"} ;
+lin huoahtaa_VK = {s = c53A "huoahtaa"} ;
+lin huoahtelu_NK = {s = d02 "huoahtelu"} ;
+lin huoata_VK = {s = c73A "huoata"} ;
+lin huohottaa_VK = {s = c53A "huohottaa"} ;
+lin huohotus_NK = {s = d39 "huohotus"} ;
+lin huoistaa_VK = {s = c53 "huoistaa"} ;
+lin huoistua_VK = {s = c52 "huoistua"} ;
+lin huojahdella_VK = {s = c67A "huojahdella"} ;
+lin huojahtaa_VK = {s = c53A "huojahtaa"} ;
+lin huojahtelu_NK = {s = d02 "huojahtelu"} ;
+lin huojennus_NK = {s = d39 "huojennus"} ;
+lin huojentaa_VK = {s = c54A "huojentaa"} ;
+lin huojentua_VK = {s = c52A "huojentua"} ;
+lin huojeta_VK = {s = c72 "huojeta"} ;
+lin huojistaa_VK = {s = c53 "huojistaa"} ;
+lin huojistua_VK = {s = c52 "huojistua"} ;
+lin huojua_VK = {s = c52 "huojua"} ;
+lin huojunta_NK = {s = d09A "huojunta"} ;
+lin huojutella_VK = {s = c67A "huojutella"} ;
+lin huojuttaa_VK = {s = c53A "huojuttaa"} ;
+lin huokailla_VK = {s = c67 "huokailla"} ;
+lin huokailu_NK = {s = d02 "huokailu"} ;
+lin huokaista_VK = {s = c66 "huokaista"} ;
+lin huokaus_NK = {s = d39 "huokaus"} ;
+lin huokea_NK = {s = d15 "huokea"} ;
+lin huokeus_NK = {s = d40 "huokeus"} ;
+lin huokoinen_NK = {s = d38 "huokoinen"} ;
+lin huokoistua_VK = {s = c52 "huokoistua"} ;
+lin huokoisuus_NK = {s = d40 "huokoisuus"} ;
+lin huokonen_NK = {s = d38 "huokonen"} ;
+lin huoku_NK = {s = d01A "huoku"} ;
+lin huokua_VK = {s = c52A "huokua"} ;
+lin huolehdinta_NK = {s = d09A "huolehdinta"} ;
+lin huolehtia_VK = {s = c61A "huolehtia"} ;
+lin huolehtivainen_AK = {s = d38 "huolehtivainen"} ;
+--+ lin huolehtivaisesti_AdvK = {s = c99 "huolehtivaisesti"} ;
+lin huolehtivaisuus_NK = {s = d40 "huolehtivaisuus"} ;
+lin huolekas_NK = {s = d41A "huolekas"} ;
+lin huolellinen_AK = {s = d38 "huolellinen"} ;
+--+ lin huolellisesti_AdvK = {s = c99 "huolellisesti"} ;
+lin huolellisuus_NK = {s = d40 "huolellisuus"} ;
+lin huolestua_VK = {s = c52 "huolestua"} ;
+lin huolestuneisuus_NK = {s = d40 "huolestuneisuus"} ;
+lin huolestus_NK = {s = d39 "huolestus"} ;
+lin huolestuttaa_VK = {s = c53A "huolestuttaa"} ;
+lin huoleti_AdvK = {s = c99 "huoleti"} ;
+lin huoleton_NK = {s = d34A "huoleton"} ;
+lin huoletta_AdvK = {s = c99 "huoletta"} ;
+lin huolettaa_VK = {s = c53A "huolettaa"} ;
+lin huolettomasti_AdvK = {s = c99 "huolettomasti"} ;
+lin huolettomuus_NK = {s = d40 "huolettomuus"} ;
+lin huoli_NK = {s = d26 "huoli"} ;
+lin huolia_VK = {s = c61 "huolia"} ;
+lin huolimaton_NK = {s = d34A "huolimaton"} ;
+lin huolimatta_AdvK = {s = c99 "huolimatta"} ;
+lin huolimattomasti_AdvK = {s = c99 "huolimattomasti"} ;
+lin huolimattomuus_NK = {s = d40 "huolimattomuus"} ;
+lin huolinta_NK = {s = d09A "huolinta"} ;
+lin huolissaan_AdvK = {s = c99 "huolissaan"} ;
+lin huolita_VK = {s = c69 "huolita"} ;
+lin huolitella_VK = {s = c67A "huolitella"} ;
+lin huolitsija_NK = {s = d12 "huolitsija"} ;
+lin huolittelu_NK = {s = d02 "huolittelu"} ;
+lin huollattaa_VK = {s = c53A "huollattaa"} ;
+lin huoltaa_VK = {s = c54A "huoltaa"} ;
+lin huoltaja_NK = {s = d10 "huoltaja"} ;
+lin huoltamo_NK = {s = d02 "huoltamo"} ;
+lin huolto_NK = {s = d01A "huolto"} ;
+lin huoltola_NK = {s = d12 "huoltola"} ;
+lin huomaamaton_NK = {s = d34A "huomaamaton"} ;
+lin huomaamattomasti_AdvK = {s = c99 "huomaamattomasti"} ;
+lin huomaamattomuus_NK = {s = d40 "huomaamattomuus"} ;
+lin huomaan_AdvK = {s = c99 "huomaan"} ;
+lin huomaavainen_AK = {s = d38 "huomaavainen"} ;
+--+ lin huomaavaisesti_AdvK = {s = c99 "huomaavaisesti"} ;
+lin huomaavaisuus_NK = {s = d40 "huomaavaisuus"} ;
+lin huomassa_AdvK = {s = c99 "huomassa"} ;
+lin huomata_VK = {s = c73 "huomata"} ;
+lin huomattava_AK = {s = d10 "huomattava"} ;
+--+ lin huomattavasti_AdvK = {s = c99 "huomattavasti"} ;
+lin huomautella_VK = {s = c67A "huomautella"} ;
+lin huomauttaa_VK = {s = c53A "huomauttaa"} ;
+lin huomautus_NK = {s = d39 "huomautus"} ;
+lin huomen_NK = {s = d32 "huomen"} ;
+lin huomenissa_AdvK = {s = c99 "huomenissa"} ;
+lin huomenna_AdvK = {s = c99 "huomenna"} ;
+lin huominen_NK = {s = d38 "huominen"} ;
+lin huomio_NK = {s = d03 "huomio"} ;
+lin huomioida_VK = {s = c62 "huomioida"} ;
+lin huomioija_NK = {s = d10 "huomioija"} ;
+lin huomiointi_NK = {s = d05A "huomiointi"} ;
+lin huomioitsija_NK = {s = d12 "huomioitsija"} ;
+lin huomioon_ottaen_AdvK = {s = c99 "huomioon ottaen"} ;
+lin huone_NK = {s = d48 "huone"} ;
+lin huoneinen_NK = {s = d38 "huoneinen"} ;
+lin huoneisto_NK = {s = d02 "huoneisto"} ;
+lin huoneke_NK = {s = d48A "huoneke"} ;
+lin huono_AK = {s = d01 "huono"} ;
+lin huonokuuloisuus_NK = {s = d40 "huonokuuloisuus"} ;
+lin huonommuus_NK = {s = d40 "huonommuus"} ;
+lin huononnus_NK = {s = d39 "huononnus"} ;
+lin huonontaa_VK = {s = c54A "huonontaa"} ;
+lin huonontua_VK = {s = c52A "huonontua"} ;
+--+ lin huonosti_AdvK = {s = c99 "huonosti"} ;
+lin huonota_VK = {s = c72 "huonota"} ;
+lin huonous_NK = {s = d40 "huonous"} ;
+lin huopa_NK = {s = d10A "huopa"} ;
+lin huopainen_NK = {s = d38 "huopainen"} ;
+lin huopaus_NK = {s = d39 "huopaus"} ;
+lin huopauttaa_VK = {s = c53A "huopauttaa"} ;
+lin huopikas_NK = {s = d41A "huopikas"} ;
+lin huopua_VK = {s = c52A "huopua"} ;
+lin huora_NK = {s = d10 "huora"} ;
+lin huorahtava_NK = {s = d10 "huorahtava"} ;
+lin huorata_VK = {s = c73 "huorata"} ;
+lin huorin_AdvK = {s = c99 "huorin"} ;
+lin huoruus_NK = {s = d40 "huoruus"} ;
+lin huostaan_AdvK = {s = c99 "huostaan"} ;
+lin huostassa_AdvK = {s = c99 "huostassa"} ;
+lin huostasta_AdvK = {s = c99 "huostasta"} ;
+lin huotra_NK = {s = d10 "huotra"} ;
+lin huounta_NK = {s = d09A "huounta"} ;
+lin huovata_VK = {s = c73A "huovata"} ;
+lin huovi_NK = {s = d05 "huovi"} ;
+lin huovikas_NK = {s = d41A "huovikas"} ;
+lin huovuttaa_VK = {s = c53A "huovuttaa"} ;
+lin huovutus_NK = {s = d39 "huovutus"} ;
+lin hupa_NK = {s = d10A "hupa"} ;
+lin hupailu_NK = {s = d02 "hupailu"} ;
+lin hupainen_NK = {s = d38 "hupainen"} ;
+lin hupaisa_AK = {s = d10 "hupaisa"} ;
+--+ lin hupaisasti_AdvK = {s = c99 "hupaisasti"} ;
+lin hupakko_NK = {s = d04A "hupakko"} ;
+lin hupi_NK = {s = d05A "hupi"} ;
+lin huppari_NK = {s = d06 "huppari"} ;
+lin huppeli_NK = {s = d06 "huppeli"} ;
+lin huppu_NK = {s = d01A "huppu"} ;
+lin hupsahtaa_VK = {s = c53A "hupsahtaa"} ;
+lin hupsia_VK = {s = c61 "hupsia"} ;
+lin hupsis_AdvK = {s = c99 "hupsis"} ;
+lin hupsista_AdvK = {s = c99 "hupsista"} ;
+lin hupsu_AK = {s = d01 "hupsu"} ;
+--+ lin hupsusti_AdvK = {s = c99 "hupsusti"} ;
+lin hupsutella_VK = {s = c67A "hupsutella"} ;
+lin hupsuttelu_NK = {s = d02 "hupsuttelu"} ;
+lin hupsutus_NK = {s = d39 "hupsutus"} ;
+lin hupsuus_NK = {s = d40 "hupsuus"} ;
+lin hupullinen_NK = {s = d38 "hupullinen"} ;
+lin huputus_NK = {s = d39 "huputus"} ;
+lin hurahdella_VK = {s = c67A "hurahdella"} ;
+lin hurahdus_NK = {s = d39 "hurahdus"} ;
+lin hurahtaa_VK = {s = c53A "hurahtaa"} ;
+lin huraus_NK = {s = d39 "huraus"} ;
+lin hurauttaa_VK = {s = c53A "hurauttaa"} ;
+lin hurina_NK = {s = d12 "hurina"} ;
+lin hurista_VK = {s = c66 "hurista"} ;
+lin huristaa_VK = {s = c53 "huristaa"} ;
+lin huristella_VK = {s = c67 "huristella"} ;
+lin hurja_AK = {s = d10 "hurja"} ;
+lin hurjapa'isyys_NK = {s = d40 "hurjapäisyys"} ;
+lin hurjastelija_NK = {s = d12 "hurjastelija"} ;
+lin hurjastella_VK = {s = c67 "hurjastella"} ;
+lin hurjastelu_NK = {s = d02 "hurjastelu"} ;
+--+ lin hurjasti_AdvK = {s = c99 "hurjasti"} ;
+lin hurjeta_VK = {s = c72 "hurjeta"} ;
+lin hurjimus_NK = {s = d39 "hurjimus"} ;
+lin hurjistaa_VK = {s = c53 "hurjistaa"} ;
+lin hurjistua_VK = {s = c52 "hurjistua"} ;
+lin hurjistuttaa_VK = {s = c53A "hurjistuttaa"} ;
+lin hurjuus_NK = {s = d40 "hurjuus"} ;
+lin hurlumhei_NK = {s = d18 "hurlumhei"} ;
+lin hurma_NK = {s = d10 "hurma"} ;
+lin hurmaaja_NK = {s = d10 "hurmaaja"} ;
+lin hurmaantua_VK = {s = c52A "hurmaantua"} ;
+lin hurmaava_AK = {s = d10 "hurmaava"} ;
+--+ lin hurmaavasti_AdvK = {s = c99 "hurmaavasti"} ;
+lin hurmata_VK = {s = c73 "hurmata"} ;
+lin hurmaus_NK = {s = d39 "hurmaus"} ;
+lin hurmautua_VK = {s = c52A "hurmautua"} ;
+lin hurme_NK = {s = d48 "hurme"} ;
+lin hurmeinen_NK = {s = d38 "hurmeinen"} ;
+lin hurmio_NK = {s = d03 "hurmio"} ;
+lin hurmioitua_VK = {s = c52A "hurmioitua"} ;
+lin hurmos_NK = {s = d39 "hurmos"} ;
+lin hurmuri_NK = {s = d06 "hurmuri"} ;
+lin hurraa_NK = {s = d17 "hurraa"} ;
+lin hurrata_VK = {s = c73 "hurrata"} ;
+lin hurri_NK = {s = d05 "hurri"} ;
+lin hurrikaani_NK = {s = d05 "hurrikaani"} ;
+--+ lin hurskaasti_AdvK = {s = c99 "hurskaasti"} ;
+lin hurskas_AK = {s = d41 "hurskas"} ;
+lin hurskastelija_NK = {s = d12 "hurskastelija"} ;
+lin hurskastella_VK = {s = c67 "hurskastella"} ;
+lin hurskastelu_NK = {s = d02 "hurskastelu"} ;
+lin hurskaus_NK = {s = d40 "hurskaus"} ;
+lin hursti_NK = {s = d05 "hursti"} ;
+lin hurtta_NK = {s = d10A "hurtta"} ;
+lin hurtti_NK = {s = d05A "hurtti"} ;
+lin hurvitella_VK = {s = c67A "hurvitella"} ;
+lin hurvittelu_NK = {s = d02 "hurvittelu"} ;
+lin hus_AdvK = {s = c99 "hus"} ;
+lin huseerata_VK = {s = c73 "huseerata"} ;
+lin hutaista_VK = {s = c66 "hutaista"} ;
+lin hutera_NK = {s = d11 "hutera"} ;
+lin huti_NK = {s = d05 "huti"} ;
+lin hutikka_NK = {s = d14A "hutikka"} ;
+lin hutiloida_VK = {s = c62 "hutiloida"} ;
+lin hutiloija_NK = {s = d10 "hutiloija"} ;
+lin hutilointi_NK = {s = d05A "hutilointi"} ;
+lin hutilus_NK = {s = d39 "hutilus"} ;
+lin hutkia_VK = {s = c61 "hutkia"} ;
+lin hutsu_NK = {s = d01 "hutsu"} ;
+lin huttu_NK = {s = d01A "huttu"} ;
+lin hutu_NK = {s = d01 "hutu"} ;
+lin huudahdella_VK = {s = c67A "huudahdella"} ;
+lin huudahdus_NK = {s = d39 "huudahdus"} ;
+lin huudahtaa_VK = {s = c53A "huudahtaa"} ;
+lin huudattaa_VK = {s = c53A "huudattaa"} ;
+lin huudella_VK = {s = c67A "huudella"} ;
+lin huuhaa_NK = {s = d18 "huuhaa"} ;
+lin huuhde_NK = {s = d48A "huuhde"} ;
+lin huuhdella_VK = {s = c67A "huuhdella"} ;
+lin huuhdonta_NK = {s = d10A "huuhdonta"} ;
+lin huuhkaja_NK = {s = d10 "huuhkaja"} ;
+lin huuhtaista_VK = {s = c66 "huuhtaista"} ;
+lin huuhtaisu_NK = {s = d02 "huuhtaisu"} ;
+lin huuhtelu_NK = {s = d02 "huuhtelu"} ;
+lin huuhtoa_VK = {s = c52A "huuhtoa"} ;
+lin huuhtoja_NK = {s = d10 "huuhtoja"} ;
+lin huuhtoutua_VK = {s = c52A "huuhtoutua"} ;
+lin huuleilla_VK = {s = c67 "huuleilla"} ;
+lin huuleilu_NK = {s = d02 "huuleilu"} ;
+lin huulenheitta'ja'_NK = {s = d10 "huulenheittäjä"} ;
+lin huuli_NK = {s = d24 "huuli"} ;
+lin huulinen_NK = {s = d38 "huulinen"} ;
+lin huulio_NK = {s = d03 "huulio"} ;
+lin huullos_NK = {s = d39 "huullos"} ;
+lin huultaa_VK = {s = c54A "huultaa"} ;
+lin huuma_NK = {s = d10 "huuma"} ;
+lin huumaannuttaa_VK = {s = c53A "huumaannuttaa"} ;
+lin huumaantua_VK = {s = c52A "huumaantua"} ;
+lin huumata_VK = {s = c73 "huumata"} ;
+lin huumaus_NK = {s = d39 "huumaus"} ;
+lin huumautua_VK = {s = c52A "huumautua"} ;
+lin huume_NK = {s = d48 "huume"} ;
+lin huumori_NK = {s = d06 "huumori"} ;
+lin huuri_NK = {s = d05 "huuri"} ;
+lin huurre_NK = {s = d48A "huurre"} ;
+lin huurruttaa_VK = {s = c53A "huurruttaa"} ;
+lin huurtaa_VK = {s = c54A "huurtaa"} ;
+lin huurteinen_NK = {s = d38 "huurteinen"} ;
+lin huurtua_VK = {s = c52A "huurtua"} ;
+lin huuru_NK = {s = d01 "huuru"} ;
+lin huuruinen_NK = {s = d38 "huuruinen"} ;
+lin huuruta_VK = {s = c74 "huuruta"} ;
+lin huuruuntua_VK = {s = c52A "huuruuntua"} ;
+lin huushollata_VK = {s = c73 "huushollata"} ;
+lin huusholli_NK = {s = d05 "huusholli"} ;
+lin huusi_NK = {s = d05 "huusi"} ;
+lin huussi_NK = {s = d05 "huussi"} ;
+lin huut_AdvK = {s = c99 "huut"} ;
+lin huutaa_VK = {s = c54A "huutaa"} ;
+lin huutaja_NK = {s = d10 "huutaja"} ;
+lin huutava_NK = {s = d10 "huutava"} ;
+lin huutelu_NK = {s = d02 "huutelu"} ;
+lin huuti_AdvK = {s = c99 "huuti"} ;
+lin huuto_NK = {s = d01A "huuto"} ;
+lin huventaa_VK = {s = c54A "huventaa"} ;
+lin huveta_VK = {s = c72A "huveta"} ;
+lin huvi_NK = {s = d05 "huvi"} ;
+lin huvikseen_AdvK = {s = c99 "huvikseen"} ;
+lin huvila_NK = {s = d12 "huvila"} ;
+lin huvitella_VK = {s = c67A "huvitella"} ;
+lin huvittaa_VK = {s = c53A "huvittaa"} ;
+lin huvittava_NK = {s = d10 "huvittava"} ;
+lin huvittavuus_NK = {s = d40 "huvittavuus"} ;
+lin huvittelu_NK = {s = d02 "huvittelu"} ;
+lin huvittua_VK = {s = c52A "huvittua"} ;
+lin huvitus_NK = {s = d39 "huvitus"} ;
+lin hyasintti_NK = {s = d05A "hyasintti"} ;
+lin hybridi_NK = {s = d05 "hybridi"} ;
+lin hybris_NK = {s = d39 "hybris"} ;
+lin hydraatti_NK = {s = d05A "hydraatti"} ;
+lin hydrauliikka_NK = {s = d09A "hydrauliikka"} ;
+lin hydraulinen_AK = {s = d38 "hydraulinen"} ;
+--+ lin hydraulisesti_AdvK = {s = c99 "hydraulisesti"} ;
+lin hydrokopteri_NK = {s = d06 "hydrokopteri"} ;
+lin hydroksidi_NK = {s = d05 "hydroksidi"} ;
+lin hydroksyyli_NK = {s = d05 "hydroksyyli"} ;
+lin hydrologia_NK = {s = d12 "hydrologia"} ;
+lin hydrologinen_NK = {s = d38 "hydrologinen"} ;
+lin hyeena_NK = {s = d13 "hyeena"} ;
+lin hygieenikko_NK = {s = d04A "hygieenikko"} ;
+lin hygieeninen_AK = {s = d38 "hygieeninen"} ;
+--+ lin hygieenisesti_AdvK = {s = c99 "hygieenisesti"} ;
+lin hygieenisyys_NK = {s = d40 "hygieenisyys"} ;
+lin hygienia_NK = {s = d12 "hygienia"} ;
+lin hygrometri_NK = {s = d05 "hygrometri"} ;
+lin hyh_AdvK = {s = c99 "hyh"} ;
+lin hyhmettya'_VK = {s = c52A "hyhmettyä"} ;
+lin hyhma'_NK = {s = d10 "hyhmä"} ;
+lin hyhma'inen_NK = {s = d38 "hyhmäinen"} ;
+lin hyi_AdvK = {s = c99 "hyi"} ;
+lin hyinen_AK = {s = d38 "hyinen"} ;
+--+ lin hyisesti_AdvK = {s = c99 "hyisesti"} ;
+lin hykerrella'_VK = {s = c67A "hykerrellä"} ;
+lin hykerrys_NK = {s = d39 "hykerrys"} ;
+lin hykerrytta'a'_VK = {s = c53A "hykerryttää"} ;
+lin hykerta'a'_VK = {s = c54A "hykertää"} ;
+lin hylje_NK = {s = d48A "hylje"} ;
+lin hyljeksia'_VK = {s = c61 "hyljeksiä"} ;
+lin hyljinta'_NK = {s = d09A "hyljintä"} ;
+lin hylja'ta'_VK = {s = c73A "hyljätä"} ;
+lin hylkia'_VK = {s = c61A "hylkiä"} ;
+lin hylkio'_NK = {s = d03 "hylkiö"} ;
+lin hylky_NK = {s = d01A "hylky"} ;
+lin hylka'ys_NK = {s = d39 "hylkäys"} ;
+lin hylly_NK = {s = d01 "hylly"} ;
+lin hyllykko'_NK = {s = d04A "hyllykkö"} ;
+lin hyllyllinen_NK = {s = d38 "hyllyllinen"} ;
+lin hyllysto'_NK = {s = d01 "hyllystö"} ;
+lin hyllytta'a'_1_VK = {s = c53A "hyllyttää"} ;
+lin hyllytta'a'_2_VK = {s = c53A "hyllyttää"} ;
+lin hyllya'_VK = {s = c52 "hyllyä"} ;
+lin hylsy_NK = {s = d01 "hylsy"} ;
+lin hyla'ta'_VK = {s = c73A "hylätä"} ;
+lin hymen_NK = {s = d05 "hymen"} ;
+lin hymina'_NK = {s = d12 "hyminä"} ;
+lin hymistella'_VK = {s = c67 "hymistellä"} ;
+lin hymistely_NK = {s = d02 "hymistely"} ;
+lin hymistys_NK = {s = d39 "hymistys"} ;
+lin hymista'_VK = {s = c66 "hymistä"} ;
+lin hymio'_NK = {s = d03 "hymiö"} ;
+lin hymni_NK = {s = d05 "hymni"} ;
+lin hymy_NK = {s = d01 "hymy"} ;
+lin hymyhuulin_AdvK = {s = c99 "hymyhuulin"} ;
+lin hymyilla'_VK = {s = c67 "hymyillä"} ;
+lin hymyily_NK = {s = d02 "hymyily"} ;
+lin hymyilytta'a'_VK = {s = c53A "hymyilyttää"} ;
+lin hymysuin_AdvK = {s = c99 "hymysuin"} ;
+lin hymyta'_VK = {s = c74 "hymytä"} ;
+lin hyma'hdella'_VK = {s = c67A "hymähdellä"} ;
+lin hyma'hdys_NK = {s = d39 "hymähdys"} ;
+lin hyma'hta'a'_VK = {s = c53A "hymähtää"} ;
+--? lin hyntteet_NK = {s = d48 "hyntteet"} ;
+--? lin hynttyyt_NK = {s = d17 "hynttyyt"} ;
+lin hyna'_NK = {s = d10 "hynä"} ;
+lin hypella'_VK = {s = c67A "hypellä"} ;
+lin hyperbeli_NK = {s = d05 "hyperbeli"} ;
+lin hyperbola_NK = {s = d10 "hyperbola"} ;
+lin hyperbolinen_NK = {s = d38 "hyperbolinen"} ;
+lin hypertensio_NK = {s = d03 "hypertensio"} ;
+lin hypertonia_NK = {s = d12 "hypertonia"} ;
+lin hyperventilaatio_NK = {s = d03 "hyperventilaatio"} ;
+lin hypistella'_VK = {s = c67 "hypistellä"} ;
+lin hypistely_NK = {s = d02 "hypistely"} ;
+lin hypitta'a'_VK = {s = c53A "hypittää"} ;
+lin hypnologi_NK = {s = d05 "hypnologi"} ;
+lin hypnoosi_NK = {s = d05 "hypnoosi"} ;
+lin hypnoottinen_AK = {s = d38 "hypnoottinen"} ;
+--+ lin hypnoottisesti_AdvK = {s = c99 "hypnoottisesti"} ;
+lin hypnotisoida_VK = {s = c62 "hypnotisoida"} ;
+lin hypnotisointi_NK = {s = d05A "hypnotisointi"} ;
+lin hypnotisoitua_VK = {s = c52A "hypnotisoitua"} ;
+lin hypotaksi_NK = {s = d05 "hypotaksi"} ;
+lin hypotaktinen_NK = {s = d38 "hypotaktinen"} ;
+lin hypotalamus_NK = {s = d39 "hypotalamus"} ;
+lin hypoteekki_NK = {s = d05A "hypoteekki"} ;
+lin hypoteesi_NK = {s = d05 "hypoteesi"} ;
+lin hypoteettinen_NK = {s = d38 "hypoteettinen"} ;
+lin hypotenuusa_NK = {s = d10 "hypotenuusa"} ;
+lin hypotermia_NK = {s = d12 "hypotermia"} ;
+lin hyppelehtia'_VK = {s = c61A "hyppelehtiä"} ;
+lin hyppely_NK = {s = d02 "hyppely"} ;
+lin hyppia'_VK = {s = c61A "hyppiä"} ;
+lin hyppy_NK = {s = d01A "hyppy"} ;
+lin hyppyri_NK = {s = d06 "hyppyri"} ;
+lin hyppysellinen_NK = {s = d38 "hyppysellinen"} ;
+--? lin hyppyset_NK = {s = d38 "hyppyset"} ;
+lin hyppyytta'a'_VK = {s = c53A "hyppyyttää"} ;
+lin hyppa'yksellinen_NK = {s = d38 "hyppäyksellinen"} ;
+lin hyppa'yksitta'in_AdvK = {s = c99 "hyppäyksittäin"} ;
+lin hyppa'yksitta'inen_NK = {s = d38 "hyppäyksittäinen"} ;
+lin hyppa'ys_NK = {s = d39 "hyppäys"} ;
+lin hyppa'ytta'a'_VK = {s = c53A "hyppäyttää"} ;
+lin hyppa'a'ja'_NK = {s = d10 "hyppääjä"} ;
+lin hypa'hdella'_VK = {s = c67A "hypähdellä"} ;
+lin hypa'hdys_NK = {s = d39 "hypähdys"} ;
+lin hypa'hta'a'_VK = {s = c53A "hypähtää"} ;
+lin hypa'ta'_VK = {s = c73A "hypätä"} ;
+lin hyrina'_NK = {s = d12 "hyrinä"} ;
+lin hyrista'_VK = {s = c66 "hyristä"} ;
+lin hyrra'_NK = {s = d10 "hyrrä"} ;
+lin hyrra'ta'_VK = {s = c73 "hyrrätä"} ;
+lin hyrske_NK = {s = d48 "hyrske"} ;
+lin hyrskia'_VK = {s = c61 "hyrskiä"} ;
+lin hyrsky_NK = {s = d01 "hyrsky"} ;
+lin hyrskyinen_NK = {s = d38 "hyrskyinen"} ;
+lin hyrskyta'_VK = {s = c74 "hyrskytä"} ;
+lin hyrska'hta'a'_VK = {s = c53A "hyrskähtää"} ;
+lin hyra'hdys_NK = {s = d39 "hyrähdys"} ;
+lin hyra'hta'a'_VK = {s = c53A "hyrähtää"} ;
+lin hyra'illa'_VK = {s = c67 "hyräillä"} ;
+lin hyra'ily_NK = {s = d02 "hyräily"} ;
+lin hyra'ys_NK = {s = d39 "hyräys"} ;
+lin hys_AdvK = {s = c99 "hys"} ;
+lin hyssytella'_VK = {s = c67A "hyssytellä"} ;
+lin hyssyttely_NK = {s = d02 "hyssyttely"} ;
+lin hyssytta'a'_VK = {s = c53A "hyssyttää"} ;
+lin hyssytys_NK = {s = d39 "hyssytys"} ;
+lin hysteerikko_NK = {s = d04A "hysteerikko"} ;
+lin hysteerinen_AK = {s = d38 "hysteerinen"} ;
+--+ lin hysteerisesti_AdvK = {s = c99 "hysteerisesti"} ;
+lin hystereesi_NK = {s = d05 "hystereesi"} ;
+lin hysteria_NK = {s = d12 "hysteria"} ;
+lin hytina'_NK = {s = d12 "hytinä"} ;
+lin hytista'_VK = {s = c66 "hytistä"} ;
+lin hytisytta'a'_VK = {s = c53A "hytisyttää"} ;
+lin hytkytella'_VK = {s = c67A "hytkytellä"} ;
+lin hytkytta'a'_VK = {s = c53A "hytkyttää"} ;
+lin hytkya'_VK = {s = c52 "hytkyä"} ;
+lin hytka'hdella'_VK = {s = c67A "hytkähdellä"} ;
+lin hytka'hdytta'a'_VK = {s = c53A "hytkähdyttää"} ;
+lin hytka'hta'a'_VK = {s = c53A "hytkähtää"} ;
+lin hytka'ytta'a'_VK = {s = c53A "hytkäyttää"} ;
+lin hytti_NK = {s = d05A "hytti"} ;
+lin hyttynen_NK = {s = d38 "hyttynen"} ;
+lin hyttysparvi_NK = {s = d07 "hyttysparvi"} ;
+lin hyve_NK = {s = d48 "hyve"} ;
+lin hyveellinen_AK = {s = d38 "hyveellinen"} ;
+--+ lin hyveellisesti_AdvK = {s = c99 "hyveellisesti"} ;
+lin hyveellisyys_NK = {s = d40 "hyveellisyys"} ;
+lin hyvike_NK = {s = d48A "hyvike"} ;
+lin hyvilleen_AdvK = {s = c99 "hyvilleen"} ;
+lin hyvilla'a'n_AdvK = {s = c99 "hyvillään"} ;
+lin hyvin_AdvK = {s = c99 "hyvin"} ;
+lin hyvinvoiva_NK = {s = d10 "hyvinvoiva"} ;
+lin hyvite_NK = {s = d48A "hyvite"} ;
+lin hyvitella'_VK = {s = c67A "hyvitellä"} ;
+lin hyvittely_NK = {s = d02 "hyvittely"} ;
+lin hyvitta'a'_VK = {s = c53A "hyvittää"} ;
+lin hyvitys_NK = {s = d39 "hyvitys"} ;
+lin hyvyys_NK = {s = d40 "hyvyys"} ;
+lin hyva'_NK = {s = d10 "hyvä"} ;
+lin hyva'illa'_VK = {s = c67 "hyväillä"} ;
+lin hyva'ily_NK = {s = d02 "hyväily"} ;
+lin hyva'ksyja'_NK = {s = d10 "hyväksyjä"} ;
+lin hyva'ksymys_NK = {s = d39 "hyväksymys"} ;
+lin hyva'ksynta'_NK = {s = d10A "hyväksyntä"} ;
+lin hyva'ksytta'vyys_NK = {s = d40 "hyväksyttävyys"} ;
+lin hyva'ksytta'va'_AK = {s = d10 "hyväksyttävä"} ;
+--+ lin hyva'ksytta'va'sti_AdvK = {s = c99 "hyväksyttävästi"} ;
+lin hyva'ksytta'a'_VK = {s = c53A "hyväksyttää"} ;
+lin hyva'ksya'_VK = {s = c52 "hyväksyä"} ;
+lin hyva'ka's_NK = {s = d41A "hyväkäs"} ;
+lin hyva'nen_AdvK = {s = c99 "hyvänen"} ;
+lin hyva'nsuopa_NK = {s = d10A "hyvänsuopa"} ;
+lin hyva'nsuopuus_NK = {s = d40 "hyvänsuopuus"} ;
+lin hyva'nsuovasti_AdvK = {s = c99 "hyvänsuovasti"} ;
+lin hyva'nsa'_AdvK = {s = c99 "hyvänsä"} ;
+--+ lin hyva'ntahtoisesti_AdvK = {s = c99 "hyväntahtoisesti"} ;
+lin hyva'ntekeva'isyys_NK = {s = d40 "hyväntekeväisyys"} ;
+--+ lin hyva'ntuulisesti_AdvK = {s = c99 "hyväntuulisesti"} ;
+lin hyva'stella'_VK = {s = c67 "hyvästellä"} ;
+lin hyva'stely_NK = {s = d02 "hyvästely"} ;
+lin hyva'sti_NK = {s = d05 "hyvästi"} ;
+--+ lin hyva'syda'misesti_AdvK = {s = c99 "hyväsydämisesti"} ;
+--+ lin hyva'uskoisesti_AdvK = {s = c99 "hyväuskoisesti"} ;
+lin hyva'a'_tarkoittava_NK = {s = d10 "hyvää tarkoittava"} ;
+lin hyyde_NK = {s = d48A "hyyde"} ;
+lin hyydyke_NK = {s = d48A "hyydyke"} ;
+lin hyydyte_NK = {s = d48A "hyydyte"} ;
+lin hyydytta'a'_VK = {s = c53A "hyydyttää"} ;
+lin hyydytys_NK = {s = d39 "hyydytys"} ;
+lin hyyhma'_NK = {s = d10 "hyyhmä"} ;
+lin hyypio'_NK = {s = d03 "hyypiö"} ;
+lin hyysa'ta'_VK = {s = c73 "hyysätä"} ;
+lin hyytelo'_NK = {s = d02 "hyytelö"} ;
+lin hyytelo'ida'_VK = {s = c62 "hyytelöidä"} ;
+lin hyytelo'itya'_VK = {s = c52A "hyytelöityä"} ;
+lin hyytyma'_NK = {s = d10 "hyytymä"} ;
+lin hyytya'_VK = {s = c52A "hyytyä"} ;
+lin hyyta'a'_VK = {s = c55A "hyytää"} ;
+lin hyyto'_NK = {s = d01A "hyytö"} ;
+lin hyo'dyke_NK = {s = d48A "hyödyke"} ;
+lin hyo'dyka's_NK = {s = d41A "hyödykäs"} ;
+lin hyo'dyllinen_AK = {s = d38 "hyödyllinen"} ;
+--+ lin hyo'dyllisesti_AdvK = {s = c99 "hyödyllisesti"} ;
+lin hyo'dyllisyys_NK = {s = d40 "hyödyllisyys"} ;
+lin hyo'dynta'a'_VK = {s = c54A "hyödyntää"} ;
+lin hyo'dytta'a'_VK = {s = c53A "hyödyttää"} ;
+lin hyo'dytto'myys_NK = {s = d40 "hyödyttömyys"} ;
+lin hyo'dytto'ma'sti_AdvK = {s = c99 "hyödyttömästi"} ;
+lin hyo'dyto'n_NK = {s = d34A "hyödytön"} ;
+lin hyo'kka'illa'_VK = {s = c67 "hyökkäillä"} ;
+lin hyo'kka'ily_NK = {s = d02 "hyökkäily"} ;
+lin hyo'kka'yksellinen_NK = {s = d38 "hyökkäyksellinen"} ;
+lin hyo'kka'ys_NK = {s = d39 "hyökkäys"} ;
+lin hyo'kka'a'ja'_NK = {s = d10 "hyökkääjä"} ;
+lin hyo'kka'a'vyys_NK = {s = d40 "hyökkäävyys"} ;
+lin hyo'kka'a'va'_AK = {s = d10 "hyökkäävä"} ;
+--+ lin hyo'kka'a'va'sti_AdvK = {s = c99 "hyökkäävästi"} ;
+lin hyo'ky_NK = {s = d01A "hyöky"} ;
+lin hyo'kya'_VK = {s = c52A "hyökyä"} ;
+lin hyo'ka'ta'_VK = {s = c73A "hyökätä"} ;
+lin hyo'nteinen_NK = {s = d38 "hyönteinen"} ;
+lin hyo'rinta'_NK = {s = d09A "hyörintä"} ;
+lin hyo'rina'_NK = {s = d12 "hyörinä"} ;
+lin hyo'ria'_VK = {s = c61 "hyöriä"} ;
+lin hyo'ty_NK = {s = d01A "hyöty"} ;
+lin hyo'tya'_VK = {s = c52A "hyötyä"} ;
+lin hyo'ta'mo'_NK = {s = d02 "hyötämö"} ;
+lin hyo'ta'a'_VK = {s = c53A "hyötää"} ;
+lin hyo'to'_NK = {s = d01A "hyötö"} ;
+lin ha'_AdvK = {s = c99 "hä"} ;
+lin ha'din_tuskin_AdvK = {s = c99 "hädin tuskin"} ;
+lin ha'dissa'a'n_AdvK = {s = c99 "hädissään"} ;
+lin ha'h_AdvK = {s = c99 "häh"} ;
+lin ha'ha'tta'a'_VK = {s = c53A "hähättää"} ;
+lin ha'ha'tys_NK = {s = d39 "hähätys"} ;
+lin ha'ijy_AK = {s = d01 "häijy"} ;
+--+ lin ha'ijysti_AdvK = {s = c99 "häijysti"} ;
+lin ha'ijyys_NK = {s = d40 "häijyys"} ;
+lin ha'ikka'_NK = {s = d10A "häikkä"} ;
+lin ha'ika'ilema'tta'_AdvK = {s = c99 "häikäilemättä"} ;
+lin ha'ika'ilema'tto'myys_NK = {s = d40 "häikäilemättömyys"} ;
+lin ha'ika'ilema'tto'ma'sti_AdvK = {s = c99 "häikäilemättömästi"} ;
+lin ha'ika'ilema'to'n_NK = {s = d34A "häikäilemätön"} ;
+lin ha'ika'illa'_VK = {s = c67 "häikäillä"} ;
+lin ha'ika'istya'_VK = {s = c52 "häikäistyä"} ;
+lin ha'ika'ista'_VK = {s = c66 "häikäistä"} ;
+lin ha'ika'isy_NK = {s = d02 "häikäisy"} ;
+lin ha'ilyvyys_NK = {s = d40 "häilyvyys"} ;
+lin ha'ilyva'_NK = {s = d10 "häilyvä"} ;
+lin ha'ilyva'inen_NK = {s = d38 "häilyväinen"} ;
+lin ha'ilya'_VK = {s = c52 "häilyä"} ;
+lin ha'ila'hdella'_VK = {s = c67A "häilähdellä"} ;
+lin ha'ila'hta'a'_VK = {s = c53A "häilähtää"} ;
+lin ha'ippa'ista'_VK = {s = c66 "häippäistä"} ;
+lin ha'ipyma'_NK = {s = d10 "häipymä"} ;
+lin ha'ipya'_VK = {s = c52A "häipyä"} ;
+lin ha'ipa'ta'_VK = {s = c73A "häipätä"} ;
+lin ha'iriintynyt_NK = {s = d47 "häiriintynyt"} ;
+lin ha'iriintya'_VK = {s = c52A "häiriintyä"} ;
+lin ha'irikko'_NK = {s = d04A "häirikkö"} ;
+lin ha'iriko'ida'_VK = {s = c62 "häiriköidä"} ;
+lin ha'irinta'_NK = {s = d09A "häirintä"} ;
+lin ha'iritsija'_NK = {s = d12 "häiritsijä"} ;
+lin ha'irita'_VK = {s = c69 "häiritä"} ;
+lin ha'iriytya'_VK = {s = c52A "häiriytyä"} ;
+lin ha'irio'_NK = {s = d03 "häiriö"} ;
+lin ha'irio'inen_NK = {s = d38 "häiriöinen"} ;
+lin ha'iska'_NK = {s = d10 "häiskä"} ;
+lin ha'ive_NK = {s = d48 "häive"} ;
+lin ha'ivytta'a'_VK = {s = c53A "häivyttää"} ;
+lin ha'ivytys_NK = {s = d39 "häivytys"} ;
+lin ha'iva'_NK = {s = d10 "häivä"} ;
+lin ha'iva'hdys_NK = {s = d39 "häivähdys"} ;
+lin ha'iva'hta'a'_VK = {s = c53A "häivähtää"} ;
+lin ha'jy_NK = {s = d01 "häjy"} ;
+lin ha'kellyksiin_AdvK = {s = c99 "häkellyksiin"} ;
+lin ha'kellyksiinsa'_AdvK = {s = c99 "häkellyksiinsä"} ;
+lin ha'kellyksissa'_AdvK = {s = c99 "häkellyksissä"} ;
+lin ha'kellyksissa'a'n_AdvK = {s = c99 "häkellyksissään"} ;
+lin ha'kellys_NK = {s = d39 "häkellys"} ;
+lin ha'kellytta'a'_VK = {s = c53A "häkellyttää"} ;
+lin ha'keltya'_VK = {s = c52A "häkeltyä"} ;
+lin ha'kki_NK = {s = d05A "häkki"} ;
+lin ha'kkyra'_NK = {s = d12 "häkkyrä"} ;
+lin ha'ka'_NK = {s = d10A "häkä"} ;
+lin ha'lina'_NK = {s = d12 "hälinä"} ;
+lin ha'lino'ida'_VK = {s = c62 "hälinöidä"} ;
+lin ha'lista'_VK = {s = c66 "hälistä"} ;
+lin ha'lventya'_VK = {s = c52A "hälventyä"} ;
+lin ha'lventa'a'_VK = {s = c54A "hälventää"} ;
+lin ha'lveta'_VK = {s = c72 "hälvetä"} ;
+lin ha'ly_NK = {s = d01 "häly"} ;
+lin ha'lytin_NK = {s = d33A "hälytin"} ;
+lin ha'lyttya'_VK = {s = c52A "hälyttyä"} ;
+lin ha'lytta'va'_AK = {s = d10 "hälyttävä"} ;
+--+ lin ha'lytta'va'sti_AdvK = {s = c99 "hälyttävästi"} ;
+lin ha'lytta'a'_VK = {s = c53A "hälyttää"} ;
+lin ha'lytys_NK = {s = d39 "hälytys"} ;
+lin ha'lyta'_VK = {s = c75 "hälytä"} ;
+lin ha'milleen_AdvK = {s = c99 "hämilleen"} ;
+lin ha'millinen_NK = {s = d38 "hämillinen"} ;
+lin ha'millisyys_NK = {s = d40 "hämillisyys"} ;
+lin ha'milla'a'n_AdvK = {s = c99 "hämillään"} ;
+lin ha'mmennin_NK = {s = d33A "hämmennin"} ;
+lin ha'mmennyksiin_AdvK = {s = c99 "hämmennyksiin"} ;
+lin ha'mmennyksissa'_AdvK = {s = c99 "hämmennyksissä"} ;
+lin ha'mmennyksissa'a'n_AdvK = {s = c99 "hämmennyksissään"} ;
+lin ha'mmennys_NK = {s = d39 "hämmennys"} ;
+lin ha'mmennytta'a'_VK = {s = c53A "hämmennyttää"} ;
+lin ha'mmentya'_VK = {s = c52A "hämmentyä"} ;
+lin ha'mmenta'a'_VK = {s = c54A "hämmentää"} ;
+lin ha'mminki_NK = {s = d05A "hämminki"} ;
+lin ha'mma'stella'_VK = {s = c67 "hämmästellä"} ;
+lin ha'mma'stely_NK = {s = d02 "hämmästely"} ;
+lin ha'mma'styksissa'a'n_AdvK = {s = c99 "hämmästyksissään"} ;
+lin ha'mma'stys_NK = {s = d39 "hämmästys"} ;
+lin ha'mma'stytta'a'_VK = {s = c53A "hämmästyttää"} ;
+lin ha'mma'stya'_VK = {s = c52 "hämmästyä"} ;
+lin ha'my_NK = {s = d01 "hämy"} ;
+lin ha'myinen_NK = {s = d38 "hämyinen"} ;
+lin ha'ma'ha'kki_NK = {s = d05A "hämähäkki"} ;
+lin ha'ma'la'inen_NK = {s = d38 "hämäläinen"} ;
+lin ha'ma'la'isitta'in_AdvK = {s = c99 "hämäläisittäin"} ;
+lin ha'ma'la'isyys_NK = {s = d40 "hämäläisyys"} ;
+lin ha'ma'rrytta'a'_VK = {s = c53A "hämärryttää"} ;
+lin ha'ma'rtya'_VK = {s = c52A "hämärtyä"} ;
+lin ha'ma'rta'a'_VK = {s = c54A "hämärtää"} ;
+lin ha'ma'ryys_NK = {s = d40 "hämäryys"} ;
+lin ha'ma'ra'_AK = {s = d10 "hämärä"} ;
+--+ lin ha'ma'ra'sti_AdvK = {s = c99 "hämärästi"} ;
+lin ha'ma'ta'_VK = {s = c73 "hämätä"} ;
+lin ha'ma'ys_NK = {s = d39 "hämäys"} ;
+lin ha'ma'a'nnyksiin_AdvK = {s = c99 "hämäännyksiin"} ;
+lin ha'ma'a'nnyksissa'_AdvK = {s = c99 "hämäännyksissä"} ;
+lin ha'ma'a'nnyksissa'a'n_AdvK = {s = c99 "hämäännyksissään"} ;
+lin ha'ma'a'nnys_NK = {s = d39 "hämäännys"} ;
+lin ha'ma'a'nnytta'a'_VK = {s = c53A "hämäännyttää"} ;
+lin ha'ma'a'ntya'_VK = {s = c52A "hämääntyä"} ;
+lin ha'nenlaisensa_NK = {s = d38 "hänenlaisensa"} ;
+lin ha'nnys_NK = {s = d39 "hännys"} ;
+lin ha'nnystelija'_NK = {s = d12 "hännystelijä"} ;
+lin ha'nnystella'_VK = {s = c67 "hännystellä"} ;
+lin ha'nnystely_NK = {s = d02 "hännystely"} ;
+lin ha'nna'llinen_NK = {s = d38 "hännällinen"} ;
+lin ha'ntyri_NK = {s = d06 "häntyri"} ;
+lin ha'nta'_NK = {s = d10A "häntä"} ;
+lin ha'nta'inen_NK = {s = d38 "häntäinen"} ;
+lin ha'peilla'_VK = {s = c67 "häpeillä"} ;
+lin ha'peissa'a'n_AdvK = {s = c99 "häpeissään"} ;
+lin ha'pea'_NK = {s = d15 "häpeä"} ;
+lin ha'pea'llinen_AK = {s = d38 "häpeällinen"} ;
+--+ lin ha'pea'llisesti_AdvK = {s = c99 "häpeällisesti"} ;
+lin ha'pea'ma'tto'myys_NK = {s = d40 "häpeämättömyys"} ;
+lin ha'pea'ma'tto'ma'sti_AdvK = {s = c99 "häpeämättömästi"} ;
+lin ha'pea'ma'to'n_NK = {s = d34A "häpeämätön"} ;
+lin ha'ppa'_NK = {s = d10A "häppä"} ;
+lin ha'py_NK = {s = d01A "häpy"} ;
+lin ha'pa'ista'_VK = {s = c66 "häpäistä"} ;
+lin ha'pa'isy_NK = {s = d02 "häpäisy"} ;
+lin ha'rkki_NK = {s = d05A "härkki"} ;
+lin ha'rkyla'_NK = {s = d12 "härkylä"} ;
+lin ha'rka'_NK = {s = d10A "härkä"} ;
+lin ha'rka'nen_NK = {s = d38 "härkänen"} ;
+--+ lin ha'rka'pa'isesti_AdvK = {s = c99 "härkäpäisesti"} ;
+lin ha'rka'pa'isyys_NK = {s = d40 "härkäpäisyys"} ;
+lin ha'rme_NK = {s = d48 "härme"} ;
+lin ha'rmettya'_VK = {s = c52A "härmettyä"} ;
+lin ha'rmistya'_VK = {s = c52 "härmistyä"} ;
+lin ha'rmista'a'_VK = {s = c53 "härmistää"} ;
+lin ha'rma'_NK = {s = d10 "härmä"} ;
+lin ha'rma'inen_NK = {s = d38 "härmäinen"} ;
+lin ha'rma'la'inen_NK = {s = d38 "härmäläinen"} ;
+lin ha'rma'la'isyys_NK = {s = d40 "härmäläisyys"} ;
+lin ha'rma'a'ntya'_VK = {s = c52A "härmääntyä"} ;
+lin ha'rna'illa'_VK = {s = c67 "härnäillä"} ;
+lin ha'rna'ta'_VK = {s = c73 "härnätä"} ;
+lin ha'rna'ys_NK = {s = d39 "härnäys"} ;
+lin ha'rski_AK = {s = d05 "härski"} ;
+lin ha'rskiintya'_VK = {s = c52A "härskiintyä"} ;
+--+ lin ha'rskisti_AdvK = {s = c99 "härskisti"} ;
+lin ha'rskiys_NK = {s = d40 "härskiys"} ;
+lin ha'rskiytya'_VK = {s = c52A "härskiytyä"} ;
+lin ha'rveli_NK = {s = d06 "härveli"} ;
+lin ha'ssia'_VK = {s = c61 "hässiä"} ;
+lin ha'ssa'kka'_NK = {s = d14A "hässäkkä"} ;
+lin ha'tha'ta'a'_AdvK = {s = c99 "häthätää"} ;
+lin ha'tiko'ida'_VK = {s = c62 "hätiköidä"} ;
+lin ha'tiko'inti_NK = {s = d05A "hätiköinti"} ;
+lin ha'timmiten_AdvK = {s = c99 "hätimmiten"} ;
+lin ha'tistella'_VK = {s = c67 "hätistellä"} ;
+lin ha'tista'a'_VK = {s = c53 "hätistää"} ;
+lin ha'tka'hdella'_VK = {s = c67A "hätkähdellä"} ;
+lin ha'tka'hdys_NK = {s = d39 "hätkähdys"} ;
+lin ha'tka'hdytta'a'_VK = {s = c53A "hätkähdyttää"} ;
+lin ha'tka'hta'a'_VK = {s = c53A "hätkähtää"} ;
+lin ha'tka'ytta'a'_VK = {s = c53A "hätkäyttää"} ;
+lin ha'tyytella'_VK = {s = c67A "hätyytellä"} ;
+lin ha'tyytta'a'_VK = {s = c53A "hätyyttää"} ;
+lin ha'tyytys_NK = {s = d39 "hätyytys"} ;
+lin ha'ta'_NK = {s = d10A "hätä"} ;
+lin ha'ta'housu_NK = {s = d01 "hätähousu"} ;
+lin ha'ta'illa'_VK = {s = c67 "hätäillä"} ;
+lin ha'ta'ily_NK = {s = d02 "hätäily"} ;
+lin ha'ta'inen_AK = {s = d38 "hätäinen"} ;
+--+ lin ha'ta'isesti_AdvK = {s = c99 "hätäisesti"} ;
+lin ha'ta'a'nnyksissa'_AdvK = {s = c99 "hätäännyksissä"} ;
+lin ha'ta'a'nnyksissa'a'n_AdvK = {s = c99 "hätäännyksissään"} ;
+lin ha'ta'a'nnys_NK = {s = d39 "hätäännys"} ;
+lin ha'ta'a'nnytta'a'_VK = {s = c53A "hätäännyttää"} ;
+lin ha'ta'a'ntya'_VK = {s = c52A "hätääntyä"} ;
+lin ha'velia'isyys_NK = {s = d40 "häveliäisyys"} ;
+lin ha'velia's_AK = {s = d41 "häveliäs"} ;
+--+ lin ha'velia'a'sti_AdvK = {s = c99 "häveliäästi"} ;
+lin ha'vetta'a'_VK = {s = c53A "hävettää"} ;
+lin ha'veta'_VK = {s = c74A "hävetä"} ;
+lin ha'vikki_NK = {s = d05A "hävikki"} ;
+lin ha'vite_NK = {s = d48A "hävite"} ;
+lin ha'vitta'ja'_NK = {s = d10 "hävittäjä"} ;
+lin ha'vitta'a'_VK = {s = c53A "hävittää"} ;
+lin ha'vitys_NK = {s = d39 "hävitys"} ;
+lin ha'vita'_VK = {s = c75 "hävitä"} ;
+lin ha'via'ja'_NK = {s = d10 "häviäjä"} ;
+lin ha'via'ma'tto'myys_NK = {s = d40 "häviämättömyys"} ;
+lin ha'via'ma'to'n_NK = {s = d34A "häviämätön"} ;
+lin ha'vio'_NK = {s = d03 "häviö"} ;
+lin ha'vytto'myys_NK = {s = d40 "hävyttömyys"} ;
+lin ha'vytto'ma'sti_AdvK = {s = c99 "hävyttömästi"} ;
+lin ha'vyto'n_NK = {s = d34A "hävytön"} ;
+lin ha'va'istys_NK = {s = d39 "häväistys"} ;
+lin ha'va'ista'_VK = {s = c66A "häväistä"} ;
+lin ha'a'della'_VK = {s = c67A "häädellä"} ;
+lin ha'a'lento_NK = {s = d01A "häälento"} ;
+lin ha'a'lyva'_NK = {s = d10 "häälyvä"} ;
+lin ha'a'lyva'inen_NK = {s = d38 "häälyväinen"} ;
+lin ha'a'lya'_VK = {s = c52 "häälyä"} ;
+lin ha'a'mo'tta'a'_VK = {s = c53A "häämöttää"} ;
+lin ha'a'mo'tys_NK = {s = d39 "häämötys"} ;
+lin ha'a'pari_NK = {s = d05 "hääpari"} ;
+lin ha'a'ppo'inen_NK = {s = d38 "hääppöinen"} ;
+lin ha'a'rinta'_NK = {s = d09A "häärintä"} ;
+lin ha'a'rina'_NK = {s = d12 "häärinä"} ;
+lin ha'a'ria'_VK = {s = c61 "hääriä"} ;
+lin ha'a'ra'illa'_VK = {s = c67 "hääräillä"} ;
+lin ha'a'ra'ily_NK = {s = d02 "hääräily"} ;
+lin ha'a'ra'ta'_VK = {s = c73 "häärätä"} ;
+--? lin ha'a't_NK = {s = d18 "häät"} ;
+lin ha'a'ta'a'_VK = {s = c55A "häätää"} ;
+lin ha'a'to'_NK = {s = d01A "häätö"} ;
+lin ha'a'vi_AK = {s = d05 "häävi"} ;
+--+ lin ha'a'visti_AdvK = {s = c99 "häävisti"} ;
+lin ho'hla'_NK = {s = d10 "höhlä"} ;
+lin ho'kkeli_NK = {s = d06 "hökkeli"} ;
+lin ho'ko'tys_NK = {s = d39 "hökötys"} ;
+lin ho'lina'_NK = {s = d12 "hölinä"} ;
+lin ho'lista'_VK = {s = c66 "hölistä"} ;
+lin ho'lkka'_NK = {s = d10A "hölkkä"} ;
+lin ho'lkka'a'ja'_NK = {s = d10 "hölkkääjä"} ;
+lin ho'lkytella'_VK = {s = c67A "hölkytellä"} ;
+lin ho'lkytta'a'_VK = {s = c53A "hölkyttää"} ;
+lin ho'lka'ta'_VK = {s = c73A "hölkätä"} ;
+lin ho'llennys_NK = {s = d39 "höllennys"} ;
+lin ho'llentya'_VK = {s = c52A "höllentyä"} ;
+lin ho'llenta'a'_VK = {s = c54A "höllentää"} ;
+lin ho'lleta'_VK = {s = c72 "hölletä"} ;
+lin ho'llyys_NK = {s = d40 "höllyys"} ;
+lin ho'lla'_AK = {s = d10 "höllä"} ;
+--+ lin ho'lla'ka'tisesti_AdvK = {s = c99 "hölläkätisesti"} ;
+lin ho'lla'lle_AdvK = {s = c99 "höllälle"} ;
+lin ho'lla'lla'_AdvK = {s = c99 "höllällä"} ;
+lin ho'lla'ssa'_AdvK = {s = c99 "höllässä"} ;
+--+ lin ho'lla'sti_AdvK = {s = c99 "höllästi"} ;
+lin ho'lla'ta'_VK = {s = c73 "höllätä"} ;
+lin ho'lla'a'n_AdvK = {s = c99 "höllään"} ;
+lin ho'lmistys_NK = {s = d39 "hölmistys"} ;
+lin ho'lmistytta'a'_VK = {s = c53A "hölmistyttää"} ;
+lin ho'lmistya'_VK = {s = c52 "hölmistyä"} ;
+lin ho'lmo'_AK = {s = d01 "hölmö"} ;
+lin ho'lmo'illa'_VK = {s = c67 "hölmöillä"} ;
+lin ho'lmo'la'inen_NK = {s = d38 "hölmöläinen"} ;
+--+ lin ho'lmo'sti_AdvK = {s = c99 "hölmösti"} ;
+lin ho'lmo'ys_NK = {s = d40 "hölmöys"} ;
+lin ho'lpo'tta'a'_VK = {s = c53A "hölpöttää"} ;
+lin ho'lskytta'a'_VK = {s = c53A "hölskyttää"} ;
+lin ho'lskya'_VK = {s = c52 "hölskyä"} ;
+lin ho'ltya'_VK = {s = c52A "höltyä"} ;
+lin ho'la'ytta'a'_VK = {s = c53A "höläyttää"} ;
+lin ho'lo'_NK = {s = d01 "hölö"} ;
+lin ho'lo'tta'a'_VK = {s = c53A "hölöttää"} ;
+lin ho'mppa'_NK = {s = d10A "hömppä"} ;
+lin ho'mpsy_NK = {s = d01 "hömpsy"} ;
+lin ho'mpso'tta'a'_VK = {s = c53A "hömpsöttää"} ;
+lin ho'mpso'tys_NK = {s = d39 "hömpsötys"} ;
+lin ho'mpo'tta'a'_VK = {s = c53A "hömpöttää"} ;
+lin ho'mpo'tys_NK = {s = d39 "hömpötys"} ;
+lin ho'nka'ista'_VK = {s = c66 "hönkäistä"} ;
+lin ho'ntti_NK = {s = d05A "höntti"} ;
+lin ho'no'_NK = {s = d01 "hönö"} ;
+lin ho'peryys_NK = {s = d40 "höperyys"} ;
+lin ho'pero'_AK = {s = d02 "höperö"} ;
+--+ lin ho'pero'sti_AdvK = {s = c99 "höperösti"} ;
+lin ho'pina'_NK = {s = d12 "höpinä"} ;
+lin ho'pista'_VK = {s = c66 "höpistä"} ;
+lin ho'pla'sta'_AdvK = {s = c99 "höplästä"} ;
+lin ho'ppa'na'_NK = {s = d12 "höppänä"} ;
+lin ho'psis_AdvK = {s = c99 "höpsis"} ;
+lin ho'psista'_AdvK = {s = c99 "höpsistä"} ;
+lin ho'psia'_VK = {s = c61 "höpsiä"} ;
+lin ho'psa'hta'nyt_NK = {s = d47 "höpsähtänyt"} ;
+lin ho'psa'hta'va'_NK = {s = d10 "höpsähtävä"} ;
+lin ho'pso'_NK = {s = d01 "höpsö"} ;
+lin ho'po'_NK = {s = d01 "höpö"} ;
+lin ho'po'n_AdvK = {s = c99 "höpön"} ;
+lin ho'po'tta'a'_VK = {s = c53A "höpöttää"} ;
+lin ho'po'tys_NK = {s = d39 "höpötys"} ;
+lin ho'rhelo'_NK = {s = d02 "hörhelö"} ;
+lin ho'rho'_NK = {s = d01 "hörhö"} ;
+lin ho'ristella'_VK = {s = c67 "höristellä"} ;
+lin ho'rista'a'_VK = {s = c53 "höristää"} ;
+lin ho'rppia'_VK = {s = c61A "hörppiä"} ;
+lin ho'rppy_NK = {s = d01A "hörppy"} ;
+lin ho'rpa'ta'_VK = {s = c73A "hörpätä"} ;
+lin ho'rtso'_NK = {s = d01 "hörtsö"} ;
+lin ho'ra'hdella'_VK = {s = c67A "hörähdellä"} ;
+lin ho'ra'hdys_NK = {s = d39 "hörähdys"} ;
+lin ho'ra'hta'a'_VK = {s = c53A "hörähtää"} ;
+lin ho'ro'lle_AdvK = {s = c99 "hörölle"} ;
+lin ho'ro'lleen_AdvK = {s = c99 "hörölleen"} ;
+lin ho'ro'lla'_AdvK = {s = c99 "höröllä"} ;
+lin ho'ro'lla'a'n_AdvK = {s = c99 "höröllään"} ;
+lin ho'ro'ssa'_AdvK = {s = c99 "hörössä"} ;
+lin ho'ro'tta'a'_VK = {s = c53A "höröttää"} ;
+lin ho'ro'tys_NK = {s = d39 "hörötys"} ;
+lin ho'ro'o'n_AdvK = {s = c99 "höröön"} ;
+lin ho'ska'_NK = {s = d10 "höskä"} ;
+lin ho'sseli_NK = {s = d06 "hösseli"} ;
+lin ho'ssa'kka'_NK = {s = d14A "hössäkkä"} ;
+lin ho'sso'tta'a'_VK = {s = c53A "hössöttää"} ;
+lin ho'sso'tys_NK = {s = d39 "hössötys"} ;
+lin ho'tkyilla'_VK = {s = c67 "hötkyillä"} ;
+lin ho'tkyily_NK = {s = d02 "hötkyily"} ;
+lin ho'tto'_NK = {s = d01A "höttö"} ;
+lin ho'tto'sissa'a'n_AdvK = {s = c99 "höttösissään"} ;
+lin ho'ta'kka'_NK = {s = d14A "hötäkkä"} ;
+lin ho'to'_NK = {s = d01 "hötö"} ;
+lin ho'veli_AK = {s = d06 "höveli"} ;
+--+ lin ho'velisti_AdvK = {s = c99 "hövelisti"} ;
+lin ho'yde_NK = {s = d48A "höyde"} ;
+lin ho'yhen_NK = {s = d32 "höyhen"} ;
+lin ho'yheninen_NK = {s = d38 "höyheninen"} ;
+lin ho'yhenisto'_NK = {s = d01 "höyhenistö"} ;
+lin ho'yhennys_NK = {s = d39 "höyhennys"} ;
+lin ho'yhenta'a'_VK = {s = c54A "höyhentää"} ;
+lin ho'yhenys_NK = {s = d39 "höyhenys"} ;
+lin ho'ykky_NK = {s = d01A "höykky"} ;
+lin ho'ykytta'a'_VK = {s = c53A "höykyttää"} ;
+lin ho'ykytys_NK = {s = d39 "höykytys"} ;
+lin ho'yka'nen_AdvK = {s = c99 "höykänen"} ;
+lin ho'yli_AK = {s = d05 "höyli"} ;
+--+ lin ho'ylisti_AdvK = {s = c99 "höylisti"} ;
+lin ho'yla'_NK = {s = d10 "höylä"} ;
+lin ho'yla'ta'_VK = {s = c73 "höylätä"} ;
+lin ho'yla'ys_NK = {s = d39 "höyläys"} ;
+lin ho'yla'ytya'_VK = {s = c52A "höyläytyä"} ;
+lin ho'yla'a'mo'_NK = {s = d02 "höyläämö"} ;
+lin ho'yla'a'ntya'_VK = {s = c52A "höylääntyä"} ;
+lin ho'yna'_NK = {s = d10 "höynä"} ;
+lin ho'yna'hta'a'_VK = {s = c53A "höynähtää"} ;
+lin ho'yna'ytta'a'_VK = {s = c53A "höynäyttää"} ;
+lin ho'yry_NK = {s = d01 "höyry"} ;
+lin ho'yryinen_NK = {s = d38 "höyryinen"} ;
+lin ho'yrystin_NK = {s = d33 "höyrystin"} ;
+lin ho'yrystys_NK = {s = d39 "höyrystys"} ;
+lin ho'yrystya'_VK = {s = c52 "höyrystyä"} ;
+lin ho'yrysta'a'_VK = {s = c53 "höyrystää"} ;
+lin ho'yrytin_NK = {s = d33A "höyrytin"} ;
+lin ho'yryttya'_VK = {s = c52A "höyryttyä"} ;
+lin ho'yrytta'a'_VK = {s = c53A "höyryttää"} ;
+lin ho'yrytys_NK = {s = d39 "höyrytys"} ;
+lin ho'yryta'_VK = {s = c74 "höyrytä"} ;
+lin ho'yryyntya'_VK = {s = c52A "höyryyntyä"} ;
+lin ho'yra'hta'a'_VK = {s = c53A "höyrähtää"} ;
+lin ho'yste_NK = {s = d48 "höyste"} ;
+lin ho'ysta'a'_VK = {s = c53 "höystää"} ;
+lin ho'ysto'_NK = {s = d01 "höystö"} ;
+lin ho'yty_NK = {s = d01A "höyty"} ;
+lin ho'ytyinen_NK = {s = d38 "höytyinen"} ;
+lin ho'ytyva'_NK = {s = d10 "höytyvä"} ;
+lin ho'yta'le_NK = {s = d48 "höytäle"} ;
+lin ho'o'sa'ta'_VK = {s = c73 "höösätä"} ;
+lin ho'o'sa'ys_NK = {s = d39 "höösäys"} ;
+lin iankaiken_AdvK = {s = c99 "iankaiken"} ;
+lin iankaikkinen_AK = {s = d38 "iankaikkinen"} ;
+--+ lin iankaikkisesti_AdvK = {s = c99 "iankaikkisesti"} ;
+lin iankaikkisuus_NK = {s = d40 "iankaikkisuus"} ;
+lin icing_NK = {s = d05 "icing"} ;
+lin idea_NK = {s = d12 "idea"} ;
+lin ideaali_NK = {s = d05 "ideaali"} ;
+lin ideaalistaa_VK = {s = c53 "ideaalistaa"} ;
+lin ideaalisuus_NK = {s = d40 "ideaalisuus"} ;
+lin idealismi_NK = {s = d05 "idealismi"} ;
+lin idealisoida_VK = {s = c62 "idealisoida"} ;
+lin idealisti_NK = {s = d05 "idealisti"} ;
+lin idealistinen_NK = {s = d38 "idealistinen"} ;
+lin idemma'ksi_AdvK = {s = c99 "idemmäksi"} ;
+lin idemma's_AdvK = {s = c99 "idemmäs"} ;
+lin idempi_NK = {s = d16A "idempi"} ;
+lin idempa'na'_AdvK = {s = c99 "idempänä"} ;
+lin idempa'a'_AdvK = {s = c99 "idempää"} ;
+lin identifikaatio_NK = {s = d03 "identifikaatio"} ;
+lin identifioida_VK = {s = c62 "identifioida"} ;
+lin identifiointi_NK = {s = d05A "identifiointi"} ;
+lin identifioitua_VK = {s = c52A "identifioitua"} ;
+lin identiteetti_NK = {s = d05A "identiteetti"} ;
+lin identtinen_AK = {s = d38 "identtinen"} ;
+--+ lin identtisesti_AdvK = {s = c99 "identtisesti"} ;
+lin identtisyys_NK = {s = d40 "identtisyys"} ;
+lin ideoida_VK = {s = c62 "ideoida"} ;
+lin ideointi_NK = {s = d05A "ideointi"} ;
+lin ideologi_NK = {s = d05 "ideologi"} ;
+lin ideologia_NK = {s = d12 "ideologia"} ;
+lin ideologinen_NK = {s = d38 "ideologinen"} ;
+lin idiomi_NK = {s = d05 "idiomi"} ;
+lin idiootti_NK = {s = d05A "idiootti"} ;
+--+ lin idioottimaisesti_AdvK = {s = c99 "idioottimaisesti"} ;
+lin idioottimaisuus_NK = {s = d40 "idioottimaisuus"} ;
+lin idis_NK = {s = d39 "idis"} ;
+lin idoli_NK = {s = d06 "idoli"} ;
+lin idylli_NK = {s = d05 "idylli"} ;
+lin idyllinen_AK = {s = d38 "idyllinen"} ;
+--+ lin idyllisesti_AdvK = {s = c99 "idyllisesti"} ;
+lin idyllisyys_NK = {s = d40 "idyllisyys"} ;
+lin ida'tella'_VK = {s = c67A "idätellä"} ;
+lin ida'tta'a'_VK = {s = c53A "idättää"} ;
+lin ida'tys_NK = {s = d39 "idätys"} ;
+lin ien_NK = {s = d32A "ien"} ;
+lin ies_NK = {s = d41A "ies"} ;
+lin iesta'a'_VK = {s = c53 "iestää"} ;
+lin iglu_NK = {s = d01 "iglu"} ;
+lin igumeeni_NK = {s = d05 "igumeeni"} ;
+lin ihailevasti_AdvK = {s = c99 "ihailevasti"} ;
+lin ihailija_NK = {s = d12 "ihailija"} ;
+lin ihailla_VK = {s = c67 "ihailla"} ;
+lin ihailtava_AK = {s = d10 "ihailtava"} ;
+--+ lin ihailtavasti_AdvK = {s = c99 "ihailtavasti"} ;
+lin ihailu_NK = {s = d02 "ihailu"} ;
+lin ihan_AdvK = {s = c99 "ihan"} ;
+lin ihana_AK = {s = d10 "ihana"} ;
+--+ lin ihanasti_AdvK = {s = c99 "ihanasti"} ;
+lin ihanne_NK = {s = d48A "ihanne"} ;
+lin ihanneaika_NK = {s = d09A "ihanneaika"} ;
+lin ihannoida_VK = {s = c62 "ihannoida"} ;
+lin ihannointi_NK = {s = d05A "ihannointi"} ;
+lin ihanteellinen_AK = {s = d38 "ihanteellinen"} ;
+--+ lin ihanteellisesti_AdvK = {s = c99 "ihanteellisesti"} ;
+lin ihanteellisuus_NK = {s = d40 "ihanteellisuus"} ;
+lin ihanuus_NK = {s = d40 "ihanuus"} ;
+lin ihastella_VK = {s = c67 "ihastella"} ;
+lin ihastelu_NK = {s = d02 "ihastelu"} ;
+lin ihastua_VK = {s = c52 "ihastua"} ;
+lin ihastuksissaan_AdvK = {s = c99 "ihastuksissaan"} ;
+lin ihastus_NK = {s = d39 "ihastus"} ;
+lin ihastuttaa_VK = {s = c53A "ihastuttaa"} ;
+lin ihastuttava_AK = {s = d10 "ihastuttava"} ;
+--+ lin ihastuttavasti_AdvK = {s = c99 "ihastuttavasti"} ;
+lin ihka_AdvK = {s = c99 "ihka"} ;
+lin ihkasen_AdvK = {s = c99 "ihkasen"} ;
+lin ihme_AK = {s = d48 "ihme"} ;
+lin ihmeellinen_NK = {s = d38 "ihmeellinen"} ;
+lin ihmeellisesti_AdvK = {s = c99 "ihmeellisesti"} ;
+lin ihmeellisyys_NK = {s = d40 "ihmeellisyys"} ;
+lin ihmeemmin_AdvK = {s = c99 "ihmeemmin"} ;
+--+ lin ihmeesti_AdvK = {s = c99 "ihmeesti"} ;
+lin ihmeisiinsa'_AdvK = {s = c99 "ihmeisiinsä"} ;
+lin ihmeissa'a'n_AdvK = {s = c99 "ihmeissään"} ;
+lin ihmetella'_VK = {s = c67A "ihmetellä"} ;
+lin ihmetelta'va'_AK = {s = d10 "ihmeteltävä"} ;
+--+ lin ihmetelta'va'sti_AdvK = {s = c99 "ihmeteltävästi"} ;
+lin ihmettely_NK = {s = d02 "ihmettely"} ;
+lin ihmetys_NK = {s = d39 "ihmetys"} ;
+lin ihmetytta'a'_VK = {s = c53A "ihmetyttää"} ;
+lin ihminen_NK = {s = d38 "ihminen"} ;
+lin ihmisma'inen_AK = {s = d38 "ihmismäinen"} ;
+--+ lin ihmisma'isesti_AdvK = {s = c99 "ihmismäisesti"} ;
+lin ihmisma'istya'_VK = {s = c52 "ihmismäistyä"} ;
+lin ihmisparka_NK = {s = d09A "ihmisparka"} ;
+lin ihmistya'_VK = {s = c52 "ihmistyä"} ;
+lin ihmisyys_NK = {s = d40 "ihmisyys"} ;
+lin iho_NK = {s = d01 "iho"} ;
+lin ihoinen_NK = {s = d38 "ihoinen"} ;
+lin ihokas_NK = {s = d41A "ihokas"} ;
+lin ihottuma_NK = {s = d10 "ihottuma"} ;
+lin ihra_NK = {s = d09 "ihra"} ;
+lin iibis_NK = {s = d39 "iibis"} ;
+lin iikka_NK = {s = d09A "iikka"} ;
+lin iilia'inen_NK = {s = d38 "iiliäinen"} ;
+lin iiri_NK = {s = d05 "iiri"} ;
+lin iirila'inen_NK = {s = d38 "iiriläinen"} ;
+lin iiris_NK = {s = d39 "iiris"} ;
+lin iisi_AK = {s = d05 "iisi"} ;
+--+ lin iisisti_AdvK = {s = c99 "iisisti"} ;
+lin iisoppi_NK = {s = d05A "iisoppi"} ;
+lin iivana_NK = {s = d12 "iivana"} ;
+lin ikebana_NK = {s = d09 "ikebana"} ;
+lin ikiaika_NK = {s = d09A "ikiaika"} ;
+lin iki_ihastunut_NK = {s = d47 "iki-ihastunut"} ;
+lin ikimaailmassa_AdvK = {s = c99 "ikimaailmassa"} ;
+lin ikinen_NK = {s = d38 "ikinen"} ;
+lin ikina'_AdvK = {s = c99 "ikinä"} ;
+lin ikipa'iviksi_AdvK = {s = c99 "ikipäiviksi"} ;
+lin ikipa'ivina'_AdvK = {s = c99 "ikipäivinä"} ;
+lin ikipa'iva'na'_AdvK = {s = c99 "ikipäivänä"} ;
+lin ikkuna_NK = {s = d12 "ikkuna"} ;
+lin ikkunainen_NK = {s = d38 "ikkunainen"} ;
+lin ikkunallinen_NK = {s = d38 "ikkunallinen"} ;
+lin ikkunanhaka_NK = {s = d09A "ikkunanhaka"} ;
+lin ikkunanpesija'_NK = {s = d12 "ikkunanpesijä"} ;
+lin ikkunoida_VK = {s = c62 "ikkunoida"} ;
+lin ikkunointi_NK = {s = d05A "ikkunointi"} ;
+lin ikoni_NK = {s = d06 "ikoni"} ;
+lin ikoninen_NK = {s = d38 "ikoninen"} ;
+lin ikonisuus_NK = {s = d40 "ikonisuus"} ;
+lin ikonostaasi_NK = {s = d05 "ikonostaasi"} ;
+lin iktyonomi_NK = {s = d05 "iktyonomi"} ;
+lin ikuinen_AK = {s = d38 "ikuinen"} ;
+--+ lin ikuisesti_AdvK = {s = c99 "ikuisesti"} ;
+lin ikuistaa_VK = {s = c53 "ikuistaa"} ;
+lin ikuisuus_NK = {s = d40 "ikuisuus"} ;
+lin ika'_NK = {s = d10A "ikä"} ;
+lin ika'inen_NK = {s = d38 "ikäinen"} ;
+lin ika'johtaminen_NK = {s = d38 "ikäjohtaminen"} ;
+lin ika'na'_AdvK = {s = c99 "ikänä"} ;
+lin ika'vissa'a'n_AdvK = {s = c99 "ikävissään"} ;
+--+ lin ika'vystyneesti_AdvK = {s = c99 "ikävystyneesti"} ;
+lin ika'vystyneisyys_NK = {s = d40 "ikävystyneisyys"} ;
+lin ika'vystynyt_AK = {s = d47 "ikävystynyt"} ;
+lin ika'vystytta'vyys_NK = {s = d40 "ikävystyttävyys"} ;
+lin ika'vystytta'va'_AK = {s = d10 "ikävystyttävä"} ;
+--+ lin ika'vystytta'va'sti_AdvK = {s = c99 "ikävystyttävästi"} ;
+lin ika'vystytta'a'_VK = {s = c53A "ikävystyttää"} ;
+lin ika'vystya'_VK = {s = c52 "ikävystyä"} ;
+lin ika'vyys_NK = {s = d40 "ikävyys"} ;
+lin ika'va'_AK = {s = d10 "ikävä"} ;
+--+ lin ika'va'sti_AdvK = {s = c99 "ikävästi"} ;
+lin ika'vo'ida'_VK = {s = c68 "ikävöidä"} ;
+lin ika'vo'inti_NK = {s = d05A "ikävöinti"} ;
+lin ika'ys_NK = {s = d39 "ikäys"} ;
+lin ika'a'n_AdvK = {s = c99 "ikään"} ;
+lin ika'a'n_kuin_AdvK = {s = c99 "ikään kuin"} ;
+lin ika'a'ntya'_VK = {s = c52A "ikääntyä"} ;
+lin ilahduttaa_VK = {s = c53A "ilahduttaa"} ;
+lin ilahtua_VK = {s = c52A "ilahtua"} ;
+lin ilakoida_VK = {s = c68 "ilakoida"} ;
+lin ilakointi_NK = {s = d05A "ilakointi"} ;
+lin iljanko_NK = {s = d01A "iljanko"} ;
+lin iljankoinen_NK = {s = d38 "iljankoinen"} ;
+lin iljanne_NK = {s = d48A "iljanne"} ;
+lin iljanteinen_NK = {s = d38 "iljanteinen"} ;
+lin iljetta'vyys_NK = {s = d40 "iljettävyys"} ;
+lin iljetta'va'_AK = {s = d10 "iljettävä"} ;
+--+ lin iljetta'va'sti_AdvK = {s = c99 "iljettävästi"} ;
+lin iljetta'a'_VK = {s = c53A "iljettää"} ;
+lin iljetys_NK = {s = d39 "iljetys"} ;
+lin iljeta'_VK = {s = c74A "iljetä"} ;
+lin ilkamoida_VK = {s = c68 "ilkamoida"} ;
+lin ilkamointi_NK = {s = d05A "ilkamointi"} ;
+lin ilkeilla'_VK = {s = c67 "ilkeillä"} ;
+lin ilkeily_NK = {s = d02 "ilkeily"} ;
+lin ilkeys_NK = {s = d40 "ilkeys"} ;
+lin ilkea'_AK = {s = d15 "ilkeä"} ;
+--+ lin ilkea'sti_AdvK = {s = c99 "ilkeästi"} ;
+lin ilki_AdvK = {s = c99 "ilki"} ;
+lin ilkikurinen_AK = {s = d38 "ilkikurinen"} ;
+--+ lin ilkikurisesti_AdvK = {s = c99 "ilkikurisesti"} ;
+lin ilkikurisuus_NK = {s = d40 "ilkikurisuus"} ;
+lin ilkimys_NK = {s = d39 "ilkimys"} ;
+lin ilkinen_NK = {s = d38 "ilkinen"} ;
+--+ lin ilkivaltaisesti_AdvK = {s = c99 "ilkivaltaisesti"} ;
+lin ilkio'_NK = {s = d03 "ilkiö"} ;
+lin ilkkua_VK = {s = c52A "ilkkua"} ;
+lin ilkosen_AdvK = {s = c99 "ilkosen"} ;
+lin ilkosillaan_AdvK = {s = c99 "ilkosillaan"} ;
+lin ilkosilleen_AdvK = {s = c99 "ilkosilleen"} ;
+lin illakko_NK = {s = d04A "illakko"} ;
+lin illallinen_NK = {s = d38 "illallinen"} ;
+lin illastaa_VK = {s = c53 "illastaa"} ;
+lin illatiivi_NK = {s = d05 "illatiivi"} ;
+--? lin illatsut_NK = {s = d02 "illatsut"} ;
+lin illemmaksi_AdvK = {s = c99 "illemmaksi"} ;
+lin illemmalla_AdvK = {s = c99 "illemmalla"} ;
+lin illempana_AdvK = {s = c99 "illempana"} ;
+lin illusorinen_NK = {s = d38 "illusorinen"} ;
+lin illustraatio_NK = {s = d03 "illustraatio"} ;
+lin illustroida_VK = {s = c62 "illustroida"} ;
+lin illuusio_NK = {s = d03 "illuusio"} ;
+lin ilma_NK = {s = d09 "ilma"} ;
+lin ilmaantua_VK = {s = c52A "ilmaantua"} ;
+lin ilmaantuvuus_NK = {s = d40 "ilmaantuvuus"} ;
+lin ilmailla_VK = {s = c67 "ilmailla"} ;
+lin ilmailu_NK = {s = d02 "ilmailu"} ;
+lin ilmainen_NK = {s = d38 "ilmainen"} ;
+lin ilmaisanti_NK = {s = d05A "ilmaisanti"} ;
+lin ilmaiseksi_AdvK = {s = c99 "ilmaiseksi"} ;
+lin ilmaisija_NK = {s = d12 "ilmaisija"} ;
+lin ilmaisin_NK = {s = d33 "ilmaisin"} ;
+lin ilmaisosakeanti_NK = {s = d05A "ilmaisosakeanti"} ;
+lin ilmaista_VK = {s = c66 "ilmaista"} ;
+lin ilmaisu_NK = {s = d02 "ilmaisu"} ;
+lin ilmaisullinen_NK = {s = d38 "ilmaisullinen"} ;
+lin ilmajuuri_NK = {s = d26 "ilmajuuri"} ;
+lin ilman_AdvK = {s = c99 "ilman"} ;
+--+ lin ilmanpita'va'sti_AdvK = {s = c99 "ilmanpitävästi"} ;
+lin ilmastaa_VK = {s = c53 "ilmastaa"} ;
+lin ilmaste_NK = {s = d48 "ilmaste"} ;
+lin ilmastin_NK = {s = d33 "ilmastin"} ;
+lin ilmasto_NK = {s = d02 "ilmasto"} ;
+lin ilmastoida_VK = {s = c62 "ilmastoida"} ;
+lin ilmastoinen_NK = {s = d38 "ilmastoinen"} ;
+lin ilmastointi_NK = {s = d05A "ilmastointi"} ;
+lin ilmastollinen_AK = {s = d38 "ilmastollinen"} ;
+--+ lin ilmastollisesti_AdvK = {s = c99 "ilmastollisesti"} ;
+lin ilmastua_VK = {s = c52 "ilmastua"} ;
+lin ilmastus_NK = {s = d39 "ilmastus"} ;
+lin ilmata_VK = {s = c73 "ilmata"} ;
+lin ilmaton_NK = {s = d34A "ilmaton"} ;
+lin ilmaus_NK = {s = d39 "ilmaus"} ;
+lin ilmava_AK = {s = d10 "ilmava"} ;
+--+ lin ilmavasti_AdvK = {s = c99 "ilmavasti"} ;
+lin ilmavuus_NK = {s = d40 "ilmavuus"} ;
+lin ilme_NK = {s = d48 "ilme"} ;
+lin ilmeetto'myys_NK = {s = d40 "ilmeettömyys"} ;
+lin ilmeetto'ma'sti_AdvK = {s = c99 "ilmeettömästi"} ;
+lin ilmeeto'n_NK = {s = d34A "ilmeetön"} ;
+lin ilmehdinta'_NK = {s = d09A "ilmehdintä"} ;
+lin ilmehtia'_VK = {s = c61A "ilmehtiä"} ;
+lin ilmeikkyys_NK = {s = d40 "ilmeikkyys"} ;
+--+ lin ilmeikka'a'sti_AdvK = {s = c99 "ilmeikkäästi"} ;
+lin ilmeika's_AK = {s = d41A "ilmeikäs"} ;
+lin ilmeilla'_VK = {s = c67 "ilmeillä"} ;
+lin ilmeily_NK = {s = d02 "ilmeily"} ;
+lin ilmeinen_1_AK = {s = d38 "ilmeinen"} ;
+lin ilmeinen_2_AK = {s = d38 "ilmeinen"} ;
+--+ lin ilmeisesti_AdvK = {s = c99 "ilmeisesti"} ;
+lin ilmeitta'a'_VK = {s = c53A "ilmeittää"} ;
+lin ilmenema'_NK = {s = d10 "ilmenemä"} ;
+lin ilmennys_NK = {s = d39 "ilmennys"} ;
+lin ilmentyma'_NK = {s = d10 "ilmentymä"} ;
+lin ilmentya'_VK = {s = c52A "ilmentyä"} ;
+lin ilmenta'a'_VK = {s = c54A "ilmentää"} ;
+lin ilmestymisaika_NK = {s = d09A "ilmestymisaika"} ;
+lin ilmestys_NK = {s = d39 "ilmestys"} ;
+lin ilmestya'_VK = {s = c52 "ilmestyä"} ;
+lin ilmetty_NK = {s = d01A "ilmetty"} ;
+lin ilmeta'_VK = {s = c72 "ilmetä"} ;
+lin ilmi_AdvK = {s = c99 "ilmi"} ;
+lin ilmio'_NK = {s = d03 "ilmiö"} ;
+lin ilmio'ma'inen_AK = {s = d38 "ilmiömäinen"} ;
+--+ lin ilmio'ma'isesti_AdvK = {s = c99 "ilmiömäisesti"} ;
+lin ilmio'ma'isyys_NK = {s = d40 "ilmiömäisyys"} ;
+lin ilmoinen_AdvK = {s = c99 "ilmoinen"} ;
+lin ilmoitella_VK = {s = c67A "ilmoitella"} ;
+lin ilmoitse_AdvK = {s = c99 "ilmoitse"} ;
+lin ilmoittaa_VK = {s = c53A "ilmoittaa"} ;
+lin ilmoittaja_NK = {s = d10 "ilmoittaja"} ;
+lin ilmoittautua_VK = {s = c52A "ilmoittautua"} ;
+lin ilmoittautumisaika_NK = {s = d09A "ilmoittautumisaika"} ;
+lin ilmoittelu_NK = {s = d02 "ilmoittelu"} ;
+lin ilmoittua_VK = {s = c52A "ilmoittua"} ;
+lin ilmoitus_NK = {s = d39 "ilmoitus"} ;
+lin ilo_NK = {s = d01 "ilo"} ;
+lin iloinen_AK = {s = d38 "iloinen"} ;
+--+ lin iloisesti_AdvK = {s = c99 "iloisesti"} ;
+lin iloissaan_AdvK = {s = c99 "iloissaan"} ;
+lin iloisuus_NK = {s = d40 "iloisuus"} ;
+lin iloita_VK = {s = c69 "iloita"} ;
+lin ilostua_VK = {s = c52 "ilostua"} ;
+lin ilostuttaa_VK = {s = c53A "ilostuttaa"} ;
+lin ilotella_VK = {s = c67A "ilotella"} ;
+lin iloton_NK = {s = d34A "iloton"} ;
+lin ilottelu_NK = {s = d02 "ilottelu"} ;
+lin ilottomasti_AdvK = {s = c99 "ilottomasti"} ;
+lin ilottomuus_NK = {s = d40 "ilottomuus"} ;
+lin ilta_NK = {s = d09A "ilta"} ;
+lin iltainen_NK = {s = d38 "iltainen"} ;
+lin iltaisin_AdvK = {s = c99 "iltaisin"} ;
+lin iltama_NK = {s = d10 "iltama"} ;
+lin iltanen_NK = {s = d38 "iltanen"} ;
+lin iltasella_AdvK = {s = c99 "iltasella"} ;
+lin iltti_NK = {s = d05A "iltti"} ;
+lin ilve_NK = {s = d48 "ilve"} ;
+lin ilvehtia'_VK = {s = c61A "ilvehtiä"} ;
+lin ilveilija'_NK = {s = d12 "ilveilijä"} ;
+lin ilveilla'_VK = {s = c67 "ilveillä"} ;
+lin ilveily_NK = {s = d02 "ilveily"} ;
+lin ilves_NK = {s = d39 "ilves"} ;
+lin imaami_NK = {s = d05 "imaami"} ;
+lin image_NK = {s = d08 "image"} ;
+lin imaginaarinen_NK = {s = d38 "imaginaarinen"} ;
+lin imago_NK = {s = d02 "imago"} ;
+lin imaista_VK = {s = c66 "imaista"} ;
+lin imaisu_NK = {s = d02 "imaisu"} ;
+lin imarre_NK = {s = d48A "imarre"} ;
+lin imarrella_VK = {s = c67A "imarrella"} ;
+lin imartelu_NK = {s = d02 "imartelu"} ;
+lin imbesilli_NK = {s = d05 "imbesilli"} ;
+lin imeksia'_VK = {s = c61 "imeksiä"} ;
+lin imelle_NK = {s = d48A "imelle"} ;
+lin imellys_NK = {s = d39 "imellys"} ;
+lin imellytta'a'_VK = {s = c53A "imellyttää"} ;
+lin imeltya'_VK = {s = c52A "imeltyä"} ;
+lin imelta'a'_VK = {s = c54A "imeltää"} ;
+lin imelyys_NK = {s = d40 "imelyys"} ;
+lin imela'_AK = {s = d10 "imelä"} ;
+--+ lin imela'sti_AdvK = {s = c99 "imelästi"} ;
+lin imelo'itta'a'_VK = {s = c53A "imelöittää"} ;
+lin imeskella'_VK = {s = c67 "imeskellä"} ;
+lin imetta'ja'_NK = {s = d10 "imettäjä"} ;
+lin imetta'va'inen_NK = {s = d38 "imettäväinen"} ;
+lin imetta'a'_VK = {s = c53A "imettää"} ;
+lin imetys_NK = {s = d39 "imetys"} ;
+lin imetysaika_NK = {s = d09A "imetysaika"} ;
+lin imeva'inen_NK = {s = d38 "imeväinen"} ;
+lin imeytta'a'_VK = {s = c53A "imeyttää"} ;
+lin imeytys_NK = {s = d39 "imeytys"} ;
+lin imeytya'_VK = {s = c52A "imeytyä"} ;
+lin imea'_VK = {s = c58 "imeä"} ;
+lin imikka'_NK = {s = d14A "imikkä"} ;
+lin imitaatio_NK = {s = d03 "imitaatio"} ;
+lin imitaattori_NK = {s = d06 "imitaattori"} ;
+lin imitoida_VK = {s = c62 "imitoida"} ;
+lin imitoija_NK = {s = d10 "imitoija"} ;
+lin imitointi_NK = {s = d05A "imitointi"} ;
+lin immateriaalinen_NK = {s = d38 "immateriaalinen"} ;
+lin immunisaatio_NK = {s = d03 "immunisaatio"} ;
+lin immunisoida_VK = {s = c62 "immunisoida"} ;
+lin immunisointi_NK = {s = d05A "immunisointi"} ;
+lin immunisoitua_VK = {s = c52A "immunisoitua"} ;
+lin immuniteetti_NK = {s = d05A "immuniteetti"} ;
+lin immunologia_NK = {s = d12 "immunologia"} ;
+lin immunologinen_NK = {s = d38 "immunologinen"} ;
+lin immuuni_NK = {s = d05 "immuuni"} ;
+lin immuunistaa_VK = {s = c53 "immuunistaa"} ;
+lin immuunistua_VK = {s = c52 "immuunistua"} ;
+lin immuunius_NK = {s = d40 "immuunius"} ;
+lin immyt_NK = {s = d43A "immyt"} ;
+lin impata_VK = {s = c73A "impata"} ;
+lin impedanssi_NK = {s = d05 "impedanssi"} ;
+lin imperatiivi_NK = {s = d05 "imperatiivi"} ;
+lin imperfekti_NK = {s = d05 "imperfekti"} ;
+lin imperialismi_NK = {s = d05 "imperialismi"} ;
+lin imperialisti_NK = {s = d05 "imperialisti"} ;
+lin imperialistinen_NK = {s = d38 "imperialistinen"} ;
+lin imperiumi_NK = {s = d05 "imperiumi"} ;
+lin impi_NK = {s = d07A "impi"} ;
+lin impivaaralainen_NK = {s = d38 "impivaaralainen"} ;
+lin impivaaralaisuus_NK = {s = d40 "impivaaralaisuus"} ;
+lin implantaatio_NK = {s = d03 "implantaatio"} ;
+lin implantaatti_NK = {s = d05A "implantaatti"} ;
+lin implantoida_VK = {s = c62 "implantoida"} ;
+lin implantti_NK = {s = d05A "implantti"} ;
+lin implikoida_VK = {s = c62 "implikoida"} ;
+lin implisiittinen_AK = {s = d38 "implisiittinen"} ;
+--+ lin implisiittisesti_AdvK = {s = c99 "implisiittisesti"} ;
+lin implisiittisyys_NK = {s = d40 "implisiittisyys"} ;
+lin implisoida_VK = {s = c62 "implisoida"} ;
+lin imponoida_VK = {s = c62 "imponoida"} ;
+lin impotenssi_NK = {s = d05 "impotenssi"} ;
+lin impotentti_NK = {s = d05A "impotentti"} ;
+lin imppaus_NK = {s = d39 "imppaus"} ;
+lin impregnoida_VK = {s = c62 "impregnoida"} ;
+lin impregnointi_NK = {s = d05A "impregnointi"} ;
+lin impressaari_NK = {s = d05 "impressaari"} ;
+lin impressaario_NK = {s = d03 "impressaario"} ;
+lin impressionismi_NK = {s = d05 "impressionismi"} ;
+lin impressionisti_NK = {s = d05 "impressionisti"} ;
+lin impressionistinen_NK = {s = d38 "impressionistinen"} ;
+lin improbatur_NK = {s = d06 "improbatur"} ;
+lin impromptu_NK = {s = d01 "impromptu"} ;
+lin improvisaatio_NK = {s = d03 "improvisaatio"} ;
+lin improvisatorinen_NK = {s = d38 "improvisatorinen"} ;
+lin improvisoida_VK = {s = c62 "improvisoida"} ;
+lin improvisointi_NK = {s = d05A "improvisointi"} ;
+lin impulsiivinen_AK = {s = d38 "impulsiivinen"} ;
+--+ lin impulsiivisesti_AdvK = {s = c99 "impulsiivisesti"} ;
+lin impulsiivisuus_NK = {s = d40 "impulsiivisuus"} ;
+lin impulssi_NK = {s = d05 "impulssi"} ;
+lin imu_NK = {s = d01 "imu"} ;
+lin imuke_NK = {s = d48A "imuke"} ;
+lin imuri_NK = {s = d06 "imuri"} ;
+lin imuroida_VK = {s = c62 "imuroida"} ;
+lin imurointi_NK = {s = d05A "imurointi"} ;
+lin in_AdvK = {s = c99 "in"} ;
+lin inahdus_NK = {s = d39 "inahdus"} ;
+lin inahtaa_VK = {s = c53A "inahtaa"} ;
+lin indefiniittinen_NK = {s = d38 "indefiniittinen"} ;
+lin indeksi_NK = {s = d05 "indeksi"} ;
+lin indeksoida_VK = {s = c62 "indeksoida"} ;
+lin indifferenssi_NK = {s = d05 "indifferenssi"} ;
+lin indifferentti_NK = {s = d05A "indifferentti"} ;
+lin indigo_NK = {s = d02 "indigo"} ;
+lin indiisi_NK = {s = d05 "indiisi"} ;
+lin indikaatio_NK = {s = d03 "indikaatio"} ;
+lin indikaattori_NK = {s = d06 "indikaattori"} ;
+lin indikatiivi_NK = {s = d05 "indikatiivi"} ;
+lin indikoida_VK = {s = c62 "indikoida"} ;
+lin indisio_NK = {s = d03 "indisio"} ;
+lin indisoida_VK = {s = c62 "indisoida"} ;
+lin indium_NK = {s = d05 "indium"} ;
+lin individi_NK = {s = d05 "individi"} ;
+lin individuaalinen_NK = {s = d38 "individuaalinen"} ;
+lin individuaalistaa_VK = {s = c53 "individuaalistaa"} ;
+lin individualismi_NK = {s = d05 "individualismi"} ;
+lin individualisoida_VK = {s = c62 "individualisoida"} ;
+lin individualisti_NK = {s = d05 "individualisti"} ;
+lin individualistinen_AK = {s = d38 "individualistinen"} ;
+--+ lin individualistisesti_AdvK = {s = c99 "individualistisesti"} ;
+lin indoiranilainen_NK = {s = d38 "indoiranilainen"} ;
+lin indoktrinaatio_NK = {s = d03 "indoktrinaatio"} ;
+lin indoktrinoida_VK = {s = c62 "indoktrinoida"} ;
+lin indoktrinointi_NK = {s = d05A "indoktrinointi"} ;
+lin induktanssi_NK = {s = d05 "induktanssi"} ;
+lin induktiivinen_NK = {s = d38 "induktiivinen"} ;
+lin induktio_NK = {s = d03 "induktio"} ;
+lin indusoida_VK = {s = c62 "indusoida"} ;
+lin indusoitua_VK = {s = c52A "indusoitua"} ;
+lin industrialismi_NK = {s = d05 "industrialismi"} ;
+lin industrialistinen_NK = {s = d38 "industrialistinen"} ;
+lin inertia_NK = {s = d12 "inertia"} ;
+lin inertti_NK = {s = d05A "inertti"} ;
+lin inessiivi_NK = {s = d05 "inessiivi"} ;
+lin infantiili_NK = {s = d05 "infantiili"} ;
+lin infantiilius_NK = {s = d40 "infantiilius"} ;
+lin infantilismi_NK = {s = d05 "infantilismi"} ;
+lin infarkti_NK = {s = d05 "infarkti"} ;
+lin infektio_NK = {s = d03 "infektio"} ;
+lin infektoida_VK = {s = c62 "infektoida"} ;
+lin infektoitua_VK = {s = c52A "infektoitua"} ;
+lin infernaalinen_NK = {s = d38 "infernaalinen"} ;
+lin infertiili_NK = {s = d05 "infertiili"} ;
+lin infinitiivi_NK = {s = d05 "infinitiivi"} ;
+lin inflaatio_NK = {s = d03 "inflaatio"} ;
+lin inflatorinen_NK = {s = d38 "inflatorinen"} ;
+lin influenssa_NK = {s = d09 "influenssa"} ;
+lin info_NK = {s = d01 "info"} ;
+lin infokratia_NK = {s = d12 "infokratia"} ;
+lin informaatikko_NK = {s = d04A "informaatikko"} ;
+lin informaatio_NK = {s = d03 "informaatio"} ;
+lin informalismi_NK = {s = d05 "informalismi"} ;
+lin informalisti_NK = {s = d05 "informalisti"} ;
+lin informalistinen_NK = {s = d38 "informalistinen"} ;
+lin informatiikka_NK = {s = d09A "informatiikka"} ;
+lin informatiivinen_NK = {s = d38 "informatiivinen"} ;
+lin informatorinen_NK = {s = d38 "informatorinen"} ;
+lin informoida_VK = {s = c62 "informoida"} ;
+lin informointi_NK = {s = d05A "informointi"} ;
+lin infuusio_NK = {s = d03 "infuusio"} ;
+lin ingressi_NK = {s = d05 "ingressi"} ;
+lin inhalaatio_NK = {s = d03 "inhalaatio"} ;
+lin inhalaattori_NK = {s = d06 "inhalaattori"} ;
+lin inhaloida_VK = {s = c62 "inhaloida"} ;
+lin inhalointi_NK = {s = d05A "inhalointi"} ;
+lin inhibiittori_NK = {s = d06 "inhibiittori"} ;
+lin inhibitio_NK = {s = d03 "inhibitio"} ;
+lin inhibitorinen_NK = {s = d38 "inhibitorinen"} ;
+lin inhiboida_VK = {s = c62 "inhiboida"} ;
+lin inhiboitua_VK = {s = c52A "inhiboitua"} ;
+lin inhimillinen_AK = {s = d38 "inhimillinen"} ;
+--+ lin inhimillisesti_AdvK = {s = c99 "inhimillisesti"} ;
+lin inhimillistya'_VK = {s = c52 "inhimillistyä"} ;
+lin inhimillista'a'_VK = {s = c53 "inhimillistää"} ;
+lin inhimillisyys_NK = {s = d40 "inhimillisyys"} ;
+lin inho_NK = {s = d01 "inho"} ;
+lin inhota_VK = {s = c74 "inhota"} ;
+lin inhottaa_VK = {s = c53A "inhottaa"} ;
+lin inhottava_AK = {s = d10 "inhottava"} ;
+--+ lin inhottavasti_AdvK = {s = c99 "inhottavasti"} ;
+lin inhottavuus_NK = {s = d40 "inhottavuus"} ;
+lin inhotus_NK = {s = d39 "inhotus"} ;
+lin inina'_NK = {s = d12 "ininä"} ;
+lin inista'_VK = {s = c66 "inistä"} ;
+lin initiaatio_NK = {s = d03 "initiaatio"} ;
+lin injektio_NK = {s = d03 "injektio"} ;
+lin injektoida_VK = {s = c62 "injektoida"} ;
+lin inka_NK = {s = d09 "inka"} ;
+lin inkarnaatio_NK = {s = d03 "inkarnaatio"} ;
+lin inkarnoitua_VK = {s = c52A "inkarnoitua"} ;
+lin inkerikko_NK = {s = d04A "inkerikko"} ;
+lin inkerila'inen_NK = {s = d38 "inkeriläinen"} ;
+lin inkeroinen_NK = {s = d38 "inkeroinen"} ;
+lin inkiva'a'ri_NK = {s = d05 "inkivääri"} ;
+lin inkkari_NK = {s = d06 "inkkari"} ;
+lin inkognito_AdvK = {s = c99 "inkognito"} ;
+lin inkongruenssi_NK = {s = d05 "inkongruenssi"} ;
+lin inkontinenssi_NK = {s = d05 "inkontinenssi"} ;
+lin inkubaatioaika_NK = {s = d09A "inkubaatioaika"} ;
+lin inkubaattori_NK = {s = d06 "inkubaattori"} ;
+lin inkvisiittori_NK = {s = d06 "inkvisiittori"} ;
+lin inkvisitio_NK = {s = d03 "inkvisitio"} ;
+lin innoissaan_AdvK = {s = c99 "innoissaan"} ;
+lin innoite_NK = {s = d48A "innoite"} ;
+lin innoittaa_VK = {s = c53A "innoittaa"} ;
+lin innoittaja_NK = {s = d10 "innoittaja"} ;
+lin innoittua_VK = {s = c52A "innoittua"} ;
+lin innoitus_NK = {s = d39 "innoitus"} ;
+lin innokas_AK = {s = d41A "innokas"} ;
+--+ lin innokkaasti_AdvK = {s = c99 "innokkaasti"} ;
+lin innokkuus_NK = {s = d40 "innokkuus"} ;
+lin innostaa_VK = {s = c53 "innostaa"} ;
+lin innostaja_NK = {s = d10 "innostaja"} ;
+lin innostua_VK = {s = c52 "innostua"} ;
+lin innostuksissaan_AdvK = {s = c99 "innostuksissaan"} ;
+--+ lin innostuneesti_AdvK = {s = c99 "innostuneesti"} ;
+lin innostuneisuus_NK = {s = d40 "innostuneisuus"} ;
+lin innostunut_AK = {s = d47 "innostunut"} ;
+lin innostus_NK = {s = d39 "innostus"} ;
+lin innostuttaa_VK = {s = c53A "innostuttaa"} ;
+lin innota_VK = {s = c74A "innota"} ;
+lin innoton_NK = {s = d34A "innoton"} ;
+lin innottomasti_AdvK = {s = c99 "innottomasti"} ;
+lin innottomuus_NK = {s = d40 "innottomuus"} ;
+lin innovaatio_NK = {s = d03 "innovaatio"} ;
+lin innovatiivinen_NK = {s = d38 "innovatiivinen"} ;
+lin innovatiivisuus_NK = {s = d40 "innovatiivisuus"} ;
+lin innovoida_VK = {s = c62 "innovoida"} ;
+lin innovointi_NK = {s = d05A "innovointi"} ;
+lin input_NK = {s = d05 "input"} ;
+lin insatsi_NK = {s = d05 "insatsi"} ;
+lin insertti_NK = {s = d05A "insertti"} ;
+lin insesti_NK = {s = d05 "insesti"} ;
+lin insidenssi_NK = {s = d05 "insidenssi"} ;
+lin insino'o'ri_NK = {s = d05 "insinööri"} ;
+lin inspehtori_NK = {s = d06 "inspehtori"} ;
+lin inspiraatio_NK = {s = d03 "inspiraatio"} ;
+lin inspiroida_VK = {s = c62 "inspiroida"} ;
+lin inspiroitua_VK = {s = c52A "inspiroitua"} ;
+lin inssi_NK = {s = d05 "inssi"} ;
+lin installaatio_NK = {s = d03 "installaatio"} ;
+lin installoida_VK = {s = c62 "installoida"} ;
+lin installointi_NK = {s = d05A "installointi"} ;
+lin instanssi_NK = {s = d05 "instanssi"} ;
+lin institutionaalinen_NK = {s = d38 "institutionaalinen"} ;
+lin institutionaalistua_VK = {s = c52 "institutionaalistua"} ;
+lin institutionalisoitua_VK = {s = c52A "institutionalisoitua"} ;
+lin instituutio_NK = {s = d03 "instituutio"} ;
+lin instituutti_NK = {s = d05A "instituutti"} ;
+lin instruktiivi_NK = {s = d05 "instruktiivi"} ;
+lin instrumentaalinen_NK = {s = d38 "instrumentaalinen"} ;
+lin instrumentaatio_NK = {s = d03 "instrumentaatio"} ;
+lin instrumentalisti_NK = {s = d05 "instrumentalisti"} ;
+lin instrumentoida_VK = {s = c62 "instrumentoida"} ;
+lin instrumentointi_NK = {s = d05A "instrumentointi"} ;
+lin instrumentti_NK = {s = d05A "instrumentti"} ;
+lin insuffisienssi_NK = {s = d05 "insuffisienssi"} ;
+lin insuliini_NK = {s = d05 "insuliini"} ;
+lin integraali_NK = {s = d05 "integraali"} ;
+lin integraatio_NK = {s = d03 "integraatio"} ;
+lin integroida_VK = {s = c62 "integroida"} ;
+lin integrointi_NK = {s = d05A "integrointi"} ;
+lin integroitua_VK = {s = c52A "integroitua"} ;
+lin intellektuaalinen_NK = {s = d38 "intellektuaalinen"} ;
+lin intellektualismi_NK = {s = d05 "intellektualismi"} ;
+lin intellektualisti_NK = {s = d05 "intellektualisti"} ;
+lin intellektualistinen_NK = {s = d38 "intellektualistinen"} ;
+lin intellektuelli_NK = {s = d05 "intellektuelli"} ;
+lin intelligenssi_NK = {s = d05 "intelligenssi"} ;
+lin intelligentsija_NK = {s = d12 "intelligentsija"} ;
+lin intelligentti_NK = {s = d05A "intelligentti"} ;
+lin intendentti_NK = {s = d05A "intendentti"} ;
+lin intendentuuri_NK = {s = d05 "intendentuuri"} ;
+lin intensiivinen_AK = {s = d38 "intensiivinen"} ;
+--+ lin intensiivisesti_AdvK = {s = c99 "intensiivisesti"} ;
+lin intensiivisyys_NK = {s = d40 "intensiivisyys"} ;
+lin intensiteetti_NK = {s = d05A "intensiteetti"} ;
+lin intentio_NK = {s = d03 "intentio"} ;
+lin interferenssi_NK = {s = d05 "interferenssi"} ;
+lin interferoni_NK = {s = d05 "interferoni"} ;
+lin interio'o'ri_NK = {s = d05 "interiööri"} ;
+lin interjektio_NK = {s = d03 "interjektio"} ;
+lin intermezzo_NK = {s = d01 "intermezzo"} ;
+lin intermittoiva_NK = {s = d10 "intermittoiva"} ;
+lin internaatti_NK = {s = d05A "internaatti"} ;
+lin internationaali_NK = {s = d05 "internationaali"} ;
+lin internationalismi_NK = {s = d05 "internationalismi"} ;
+lin internoida_VK = {s = c62 "internoida"} ;
+lin internointi_NK = {s = d05A "internointi"} ;
+lin interrailaaja_NK = {s = d10 "interrailaaja"} ;
+lin interrailata_VK = {s = c73 "interrailata"} ;
+lin interreilaaja_NK = {s = d10 "interreilaaja"} ;
+lin interreilata_VK = {s = c73 "interreilata"} ;
+lin interrogatiivinen_NK = {s = d38 "interrogatiivinen"} ;
+lin intertekstuaalinen_AK = {s = d38 "intertekstuaalinen"} ;
+--+ lin intertekstuaalisesti_AdvK = {s = c99 "intertekstuaalisesti"} ;
+lin intertekstuaalisuus_NK = {s = d40 "intertekstuaalisuus"} ;
+lin intervalli_NK = {s = d05 "intervalli"} ;
+lin interventio_NK = {s = d03 "interventio"} ;
+lin intiaani_NK = {s = d05 "intiaani"} ;
+lin intialainen_NK = {s = d38 "intialainen"} ;
+lin intianpuuvilla_NK = {s = d09 "intianpuuvilla"} ;
+lin intiimi_AK = {s = d05 "intiimi"} ;
+--+ lin intiimisti_AdvK = {s = c99 "intiimisti"} ;
+lin intiimiys_NK = {s = d40 "intiimiys"} ;
+lin intimiteetti_NK = {s = d05A "intimiteetti"} ;
+lin into_NK = {s = d01A "into"} ;
+--+ lin intohimoisesti_AdvK = {s = c99 "intohimoisesti"} ;
+lin intohimoisuus_NK = {s = d40 "intohimoisuus"} ;
+lin intohimoton_NK = {s = d34A "intohimoton"} ;
+lin intohimottomasti_AdvK = {s = c99 "intohimottomasti"} ;
+lin intohimottomuus_NK = {s = d40 "intohimottomuus"} ;
+lin intoilija_NK = {s = d12 "intoilija"} ;
+lin intoilla_VK = {s = c67 "intoilla"} ;
+lin intoilu_NK = {s = d02 "intoilu"} ;
+lin intoinen_NK = {s = d38 "intoinen"} ;
+--+ lin intomielisesti_AdvK = {s = c99 "intomielisesti"} ;
+lin intonaatio_NK = {s = d03 "intonaatio"} ;
+lin intos_NK = {s = d39 "intos"} ;
+lin intoutua_VK = {s = c52A "intoutua"} ;
+lin intransitiivinen_NK = {s = d38 "intransitiivinen"} ;
+lin intresantti_NK = {s = d05A "intresantti"} ;
+lin intressi_NK = {s = d05 "intressi"} ;
+lin intrigi_NK = {s = d05 "intrigi"} ;
+lin intrigoida_VK = {s = c62 "intrigoida"} ;
+lin intrigointi_NK = {s = d05A "intrigointi"} ;
+lin intro_NK = {s = d01 "intro"} ;
+lin introduktio_NK = {s = d03 "introduktio"} ;
+lin introspektio_NK = {s = d03 "introspektio"} ;
+lin introvertti_NK = {s = d05A "introvertti"} ;
+lin intti_NK = {s = d05A "intti"} ;
+lin intta'a'_VK = {s = c53A "inttää"} ;
+lin intuitiivinen_AK = {s = d38 "intuitiivinen"} ;
+--+ lin intuitiivisesti_AdvK = {s = c99 "intuitiivisesti"} ;
+lin intuitiivisuus_NK = {s = d40 "intuitiivisuus"} ;
+lin intuitio_NK = {s = d03 "intuitio"} ;
+lin inuiitti_NK = {s = d05A "inuiitti"} ;
+lin inuitti_NK = {s = d05A "inuitti"} ;
+lin invaasio_NK = {s = d03 "invaasio"} ;
+lin invalidi_NK = {s = d05 "invalidi"} ;
+lin invalidisoida_VK = {s = c62 "invalidisoida"} ;
+lin invalidisoitua_VK = {s = c52A "invalidisoitua"} ;
+lin invaliditeetti_NK = {s = d05A "invaliditeetti"} ;
+lin invalidius_NK = {s = d40 "invalidius"} ;
+lin invalidoida_VK = {s = c62 "invalidoida"} ;
+lin invalidoitua_VK = {s = c52A "invalidoitua"} ;
+lin invarianssi_NK = {s = d05 "invarianssi"} ;
+lin invariantti_NK = {s = d05A "invariantti"} ;
+lin inventaari_NK = {s = d05 "inventaari"} ;
+lin inventaario_NK = {s = d03 "inventaario"} ;
+lin inventoida_VK = {s = c62 "inventoida"} ;
+lin inventointi_NK = {s = d05A "inventointi"} ;
+lin investoida_VK = {s = c62 "investoida"} ;
+lin investointi_NK = {s = d05A "investointi"} ;
+lin ioni_NK = {s = d05 "ioni"} ;
+lin ionisaatio_NK = {s = d03 "ionisaatio"} ;
+lin ionisaattori_NK = {s = d06 "ionisaattori"} ;
+lin ionisoida_VK = {s = c62 "ionisoida"} ;
+lin ionisoitua_VK = {s = c52A "ionisoitua"} ;
+lin ionosfa'a'ri_NK = {s = d05 "ionosfääri"} ;
+lin ipana_NK = {s = d13 "ipana"} ;
+lin iridium_NK = {s = d05 "iridium"} ;
+lin irkata_VK = {s = c73A "irkata"} ;
+lin irlantilainen_NK = {s = d38 "irlantilainen"} ;
+lin irokeesi_NK = {s = d05 "irokeesi"} ;
+lin ironia_NK = {s = d12 "ironia"} ;
+lin ironikko_NK = {s = d04A "ironikko"} ;
+lin ironinen_AK = {s = d38 "ironinen"} ;
+--+ lin ironisesti_AdvK = {s = c99 "ironisesti"} ;
+lin ironisoida_VK = {s = c62 "ironisoida"} ;
+lin ironisuus_NK = {s = d40 "ironisuus"} ;
+lin irrallaan_AdvK = {s = c99 "irrallaan"} ;
+lin irralleen_AdvK = {s = c99 "irralleen"} ;
+lin irrallinen_AK = {s = d38 "irrallinen"} ;
+--+ lin irrallisesti_AdvK = {s = c99 "irrallisesti"} ;
+lin irrallisuus_NK = {s = d40 "irrallisuus"} ;
+lin irrationaali_NK = {s = d05 "irrationaali"} ;
+lin irrationaalinen_AK = {s = d38 "irrationaalinen"} ;
+--+ lin irrationaalisesti_AdvK = {s = c99 "irrationaalisesti"} ;
+lin irrationaalisuus_NK = {s = d40 "irrationaalisuus"} ;
+lin irreaalinen_NK = {s = d38 "irreaalinen"} ;
+lin irreaalisuus_NK = {s = d40 "irreaalisuus"} ;
+lin irrelevantti_NK = {s = d05A "irrelevantti"} ;
+lin irrota_VK = {s = c74A "irrota"} ;
+lin irrotella_VK = {s = c67A "irrotella"} ;
+lin irrottaa_VK = {s = c53A "irrottaa"} ;
+lin irrottautua_VK = {s = c52A "irrottautua"} ;
+lin irrottua_VK = {s = c52A "irrottua"} ;
+lin irrotus_NK = {s = d39 "irrotus"} ;
+--+ lin irstaasti_AdvK = {s = c99 "irstaasti"} ;
+lin irstailija_NK = {s = d12 "irstailija"} ;
+lin irstailla_VK = {s = c67 "irstailla"} ;
+lin irstailu_NK = {s = d02 "irstailu"} ;
+lin irstainen_NK = {s = d38 "irstainen"} ;
+lin irstas_AK = {s = d41 "irstas"} ;
+lin irstaus_NK = {s = d40 "irstaus"} ;
+lin irtaantua_VK = {s = c52A "irtaantua"} ;
+lin irtaimisto_NK = {s = d01 "irtaimisto"} ;
+lin irtain_NK = {s = d33 "irtain"} ;
+lin irtauma_NK = {s = d10 "irtauma"} ;
+lin irtautua_VK = {s = c52A "irtautua"} ;
+lin irtautuma_NK = {s = d10 "irtautuma"} ;
+lin irti_AdvK = {s = c99 "irti"} ;
+lin irtisanomisaika_NK = {s = d09A "irtisanomisaika"} ;
+lin irtisanomissuoja_NK = {s = d10 "irtisanomissuoja"} ;
+lin irtolainen_NK = {s = d38 "irtolainen"} ;
+lin irtonainen_AK = {s = d38 "irtonainen"} ;
+--+ lin irtonaisesti_AdvK = {s = c99 "irtonaisesti"} ;
+lin irtonaisuus_NK = {s = d40 "irtonaisuus"} ;
+lin irtovuori_NK = {s = d05 "irtovuori"} ;
+lin irvailla_VK = {s = c67 "irvailla"} ;
+lin irvailu_NK = {s = d02 "irvailu"} ;
+lin irveen_AdvK = {s = c99 "irveen"} ;
+lin irvessa'_AdvK = {s = c99 "irvessä"} ;
+lin irviin_AdvK = {s = c99 "irviin"} ;
+lin irvissa'_AdvK = {s = c99 "irvissä"} ;
+lin irvistelija'_NK = {s = d12 "irvistelijä"} ;
+lin irvistella'_VK = {s = c67 "irvistellä"} ;
+lin irvistely_NK = {s = d02 "irvistely"} ;
+lin irvistys_NK = {s = d39 "irvistys"} ;
+lin irvistytta'a'_VK = {s = c53A "irvistyttää"} ;
+lin irvista'a'_VK = {s = c53 "irvistää"} ;
+lin irvia'_VK = {s = c61 "irviä"} ;
+lin irvokas_AK = {s = d41A "irvokas"} ;
+--+ lin irvokkaasti_AdvK = {s = c99 "irvokkaasti"} ;
+lin irvokkuus_NK = {s = d40 "irvokkuus"} ;
+lin isi_NK = {s = d05 "isi"} ;
+lin iskelma'_NK = {s = d10 "iskelmä"} ;
+lin iskema'_NK = {s = d10 "iskemä"} ;
+lin iskenta'_NK = {s = d09A "iskentä"} ;
+lin isketta'a'_VK = {s = c53A "iskettää"} ;
+lin iskevyys_NK = {s = d40 "iskevyys"} ;
+lin iskeva'_AK = {s = d10 "iskevä"} ;
+--+ lin iskeva'sti_AdvK = {s = c99 "iskevästi"} ;
+lin iskeytya'_VK = {s = c52A "iskeytyä"} ;
+lin iskea'_VK = {s = c58 "iskeä"} ;
+lin iskias_NK = {s = d39 "iskias"} ;
+lin iskija'_NK = {s = d12 "iskijä"} ;
+lin iskostaa_VK = {s = c53 "iskostaa"} ;
+lin iskostua_VK = {s = c52 "iskostua"} ;
+lin isku_NK = {s = d01 "isku"} ;
+lin iskuhaava_NK = {s = d09 "iskuhaava"} ;
+lin iskuinen_NK = {s = d38 "iskuinen"} ;
+lin iskullinen_NK = {s = d38 "iskullinen"} ;
+lin iskuri_NK = {s = d06 "iskuri"} ;
+lin iskuttaa_VK = {s = c53A "iskuttaa"} ;
+lin iska'_NK = {s = d09 "iskä"} ;
+lin islam_NK = {s = d05 "islam"} ;
+lin islamilainen_NK = {s = d38 "islamilainen"} ;
+lin islamilaisuus_NK = {s = d40 "islamilaisuus"} ;
+lin islamisti_NK = {s = d05 "islamisti"} ;
+lin islamistinen_NK = {s = d38 "islamistinen"} ;
+lin islanti_NK = {s = d05A "islanti"} ;
+lin ismi_NK = {s = d05 "ismi"} ;
+lin iso_1_AK = {s = d01 "iso"} ;
+lin iso_2_AK = {s = d01 "iso"} ;
+lin isoinen_NK = {s = d38 "isoinen"} ;
+lin isolaatio_NK = {s = d03 "isolaatio"} ;
+lin isoloida_VK = {s = c62 "isoloida"} ;
+lin isolointi_NK = {s = d05A "isolointi"} ;
+lin isoloitua_VK = {s = c52A "isoloitua"} ;
+lin isomorfia_NK = {s = d12 "isomorfia"} ;
+lin isontaa_VK = {s = c54A "isontaa"} ;
+lin isontua_VK = {s = c52A "isontua"} ;
+--+ lin isosti_AdvK = {s = c99 "isosti"} ;
+lin isota_1_VK = {s = c72 "isota"} ;
+lin isota_2_VK = {s = c74 "isota"} ;
+lin isotella_VK = {s = c67A "isotella"} ;
+lin isotooppi_NK = {s = d05A "isotooppi"} ;
+lin isottelu_NK = {s = d02 "isottelu"} ;
+lin isous_NK = {s = d40 "isous"} ;
+lin israelilainen_NK = {s = d38 "israelilainen"} ;
+lin issikka_1_NK = {s = d14A "issikka"} ;
+lin issikka_2_NK = {s = d14A "issikka"} ;
+lin istahtaa_VK = {s = c53A "istahtaa"} ;
+lin istua_VK = {s = c52 "istua"} ;
+lin istualla_AdvK = {s = c99 "istualla"} ;
+lin istuallaan_AdvK = {s = c99 "istuallaan"} ;
+lin istualle_AdvK = {s = c99 "istualle"} ;
+lin istualleen_AdvK = {s = c99 "istualleen"} ;
+lin istualta_AdvK = {s = c99 "istualta"} ;
+lin istualtaan_AdvK = {s = c99 "istualtaan"} ;
+lin istuin_NK = {s = d33 "istuin"} ;
+lin istukallinen_NK = {s = d38 "istukallinen"} ;
+lin istukas_NK = {s = d41A "istukas"} ;
+lin istukka_NK = {s = d14A "istukka"} ;
+lin istuksia_VK = {s = c61 "istuksia"} ;
+lin istuma_AdvK = {s = c99 "istuma"} ;
+lin istumalla_AdvK = {s = c99 "istumalla"} ;
+lin istumalta_AdvK = {s = c99 "istumalta"} ;
+lin istunta_NK = {s = d09A "istunta"} ;
+lin istunto_NK = {s = d01A "istunto"} ;
+lin istuskella_VK = {s = c67 "istuskella"} ;
+lin istuskelu_NK = {s = d01 "istuskelu"} ;
+lin istute_NK = {s = d48A "istute"} ;
+lin istuttaa_VK = {s = c53A "istuttaa"} ;
+lin istutus_NK = {s = d39 "istutus"} ;
+lin istutusaika_NK = {s = d09A "istutusaika"} ;
+lin istuutua_VK = {s = c52A "istuutua"} ;
+lin istuvilla_AdvK = {s = c99 "istuvilla"} ;
+lin istuvillaan_AdvK = {s = c99 "istuvillaan"} ;
+lin istuville_AdvK = {s = c99 "istuville"} ;
+lin istuvilleen_AdvK = {s = c99 "istuvilleen"} ;
+lin istuvilta_AdvK = {s = c99 "istuvilta"} ;
+lin istuviltaan_AdvK = {s = c99 "istuviltaan"} ;
+lin istuvuus_NK = {s = d40 "istuvuus"} ;
+lin isukki_NK = {s = d05A "isukki"} ;
+lin isyys_NK = {s = d40 "isyys"} ;
+lin isa'_NK = {s = d10 "isä"} ;
+lin isa'llinen_AK = {s = d38 "isällinen"} ;
+--+ lin isa'llisesti_AdvK = {s = c99 "isällisesti"} ;
+lin isa'meida'n_AdvK = {s = c99 "isämeidän"} ;
+lin isa'meita'_AdvK = {s = c99 "isämeitä"} ;
+--+ lin isa'nmaallisesti_AdvK = {s = c99 "isänmaallisesti"} ;
+lin isa'nnisto'_NK = {s = d01 "isännistö"} ;
+lin isa'nnyys_NK = {s = d40 "isännyys"} ;
+lin isa'nna'to'n_NK = {s = d34A "isännätön"} ;
+lin isa'nno'ida'_VK = {s = c68 "isännöidä"} ;
+lin isa'nno'itsija'_NK = {s = d12 "isännöitsijä"} ;
+lin isa'nta'_NK = {s = d10A "isäntä"} ;
+lin isa'to'n_NK = {s = d34A "isätön"} ;
+lin IT_AdvK = {s = c99 "IT"} ;
+lin italia_NK = {s = d12 "italia"} ;
+lin italiaano_NK = {s = d01 "italiaano"} ;
+lin italiankumina_NK = {s = d12 "italiankumina"} ;
+lin itara_NK = {s = d11 "itara"} ;
+lin itarasti_AdvK = {s = c99 "itarasti"} ;
+lin itaruus_NK = {s = d40 "itaruus"} ;
+lin itikka_NK = {s = d14A "itikka"} ;
+lin itio'_NK = {s = d03 "itiö"} ;
+lin itkeskella'_VK = {s = c67 "itkeskellä"} ;
+lin itkeskely_NK = {s = d02 "itkeskely"} ;
+lin itkettynyt_NK = {s = d47 "itkettynyt"} ;
+lin itketta'a'_VK = {s = c53A "itkettää"} ;
+lin itkea'_VK = {s = c58 "itkeä"} ;
+lin itkija'_NK = {s = d12 "itkijä"} ;
+lin itku_NK = {s = d01 "itku"} ;
+lin itkuinen_NK = {s = d38 "itkuinen"} ;
+lin itkusilmin_AdvK = {s = c99 "itkusilmin"} ;
+lin itsari_NK = {s = d06 "itsari"} ;
+lin itse_NK = {s = d08 "itse"} ;
+lin itseja'ljenta'va'_NK = {s = d10 "itsejäljentävä"} ;
+lin itsekantava_NK = {s = d10 "itsekantava"} ;
+lin itsekiillottuva_NK = {s = d10 "itsekiillottuva"} ;
+lin itsekiinnittyva'_NK = {s = d10 "itsekiinnittyvä"} ;
+lin itsekkyys_NK = {s = d40 "itsekkyys"} ;
+--+ lin itsekka'a'sti_AdvK = {s = c99 "itsekkäästi"} ;
+lin itsekseen_AdvK = {s = c99 "itsekseen"} ;
+lin itse_kukin_AdvK = {s = c99 "itse kukin"} ;
+lin itseka's_AK = {s = d41A "itsekäs"} ;
+lin itseliimautuva_NK = {s = d10 "itseliimautuva"} ;
+lin itsellinen_NK = {s = d38 "itsellinen"} ;
+lin itseneuvova_NK = {s = d10 "itseneuvova"} ;
+lin itsensa'paljastaminen_NK = {s = d38 "itsensäpaljastaminen"} ;
+lin itsena'inen_AK = {s = d38 "itsenäinen"} ;
+--+ lin itsena'isesti_AdvK = {s = c99 "itsenäisesti"} ;
+lin itsena'istytta'a'_VK = {s = c53A "itsenäistyttää"} ;
+lin itsena'istya'_VK = {s = c52 "itsenäistyä"} ;
+lin itsena'ista'a'_VK = {s = c53 "itsenäistää"} ;
+lin itsena'isyys_NK = {s = d40 "itsenäisyys"} ;
+lin itseohjaava_NK = {s = d10 "itseohjaava"} ;
+lin itseohjautuva_NK = {s = d10 "itseohjautuva"} ;
+--+ lin itsepintaisesti_AdvK = {s = c99 "itsepintaisesti"} ;
+--+ lin itsepa'isesti_AdvK = {s = c99 "itsepäisesti"} ;
+lin itsepa'isyys_NK = {s = d40 "itsepäisyys"} ;
+--+ lin itserakkaasti_AdvK = {s = c99 "itserakkaasti"} ;
+lin itseriittoinen_AK = {s = d38 "itseriittoinen"} ;
+--+ lin itseriittoisesti_AdvK = {s = c99 "itseriittoisesti"} ;
+lin itsesilia'va'_NK = {s = d10 "itsesiliävä"} ;
+lin itsessa'a'n_AdvK = {s = c99 "itsessään"} ;
+lin itsesta'a'n_AdvK = {s = c99 "itsestään"} ;
+lin itsesyttyminen_NK = {s = d38 "itsesyttyminen"} ;
+lin itsesytynta'_NK = {s = d09A "itsesytyntä"} ;
+lin itsesa'a'tyva'_NK = {s = d10 "itsesäätyvä"} ;
+lin itsetuhoinen_NK = {s = d38 "itsetuhoinen"} ;
+lin itsetypistys_NK = {s = d39 "itsetypistys"} ;
+lin itsevalaiseva_NK = {s = d10 "itsevalaiseva"} ;
+--+ lin itsevaltaisesti_AdvK = {s = c99 "itsevaltaisesti"} ;
+--+ lin itsevaltiaasti_AdvK = {s = c99 "itsevaltiaasti"} ;
+lin itsevoiteleva_NK = {s = d10 "itsevoiteleva"} ;
+lin itu_NK = {s = d01A "itu"} ;
+lin ita'_NK = {s = d10A "itä"} ;
+lin ita'inen_NK = {s = d38 "itäinen"} ;
+lin ita'misaika_NK = {s = d09A "itämisaika"} ;
+lin ita'valtalainen_NK = {s = d38 "itävaltalainen"} ;
+lin ita'vyys_NK = {s = d40 "itävyys"} ;
+lin ita'a'_VK = {s = c53A "itää"} ;
+lin iva_NK = {s = d09 "iva"} ;
+lin ivailla_VK = {s = c67 "ivailla"} ;
+lin ivailu_NK = {s = d02 "ivailu"} ;
+lin ivallinen_AK = {s = d38 "ivallinen"} ;
+--+ lin ivallisesti_AdvK = {s = c99 "ivallisesti"} ;
+lin ivata_VK = {s = c73 "ivata"} ;
+lin ia'inen_AK = {s = d38 "iäinen"} ;
+--+ lin ia'isesti_AdvK = {s = c99 "iäisesti"} ;
+lin ia'isyys_NK = {s = d40 "iäisyys"} ;
+lin ia'kkyys_NK = {s = d40 "iäkkyys"} ;
+lin ia'ksi_AdvK = {s = c99 "iäksi"} ;
+lin ia'ka's_NK = {s = d41A "iäkäs"} ;
+lin ia'n_kaiken_AdvK = {s = c99 "iän kaiken"} ;
+lin ia'ti_AdvK = {s = c99 "iäti"} ;
+lin ia'ta'_VK = {s = c73A "iätä"} ;
+lin ia'to'n_NK = {s = d34A "iätön"} ;
+lin ja_AdvK = {s = c99 "ja"} ;
+lin jaa_AdvK = {s = c99 "jaa"} ;
+lin jaaha_AdvK = {s = c99 "jaaha"} ;
+lin jaala_NK = {s = d09 "jaala"} ;
+lin jaanata_VK = {s = c73 "jaanata"} ;
+lin jaardi_NK = {s = d05 "jaardi"} ;
+lin jaaritella_VK = {s = c67A "jaaritella"} ;
+lin jaarittelu_NK = {s = d02 "jaarittelu"} ;
+lin jaaritus_NK = {s = d39 "jaaritus"} ;
+lin jaarli_NK = {s = d05 "jaarli"} ;
+lin jacquard_NK = {s = d05 "jacquard"} ;
+lin jade_NK = {s = d08 "jade"} ;
+lin jae_NK = {s = d48A "jae"} ;
+lin jaella_VK = {s = c67A "jaella"} ;
+lin jaettava_NK = {s = d10 "jaettava"} ;
+lin jaguaari_NK = {s = d05 "jaguaari"} ;
+lin jaha_AdvK = {s = c99 "jaha"} ;
+lin jahdata_VK = {s = c73A "jahdata"} ;
+lin jahka_AdvK = {s = c99 "jahka"} ;
+lin jahkailla_VK = {s = c67 "jahkailla"} ;
+lin jahkailu_NK = {s = d02 "jahkailu"} ;
+lin jahkata_VK = {s = c73 "jahkata"} ;
+lin jahnata_VK = {s = c73 "jahnata"} ;
+lin jahti_1_NK = {s = d05A "jahti"} ;
+lin jahti_2_NK = {s = d05A "jahti"} ;
+lin jakaa_VK = {s = c56A "jakaa"} ;
+lin jakaantua_VK = {s = c52A "jakaantua"} ;
+lin jakaja_NK = {s = d10 "jakaja"} ;
+lin jakamaton_NK = {s = d34A "jakamaton"} ;
+lin jakamo_NK = {s = d02 "jakamo"} ;
+lin jakaranda_NK = {s = d09 "jakaranda"} ;
+lin jakardi_NK = {s = d05 "jakardi"} ;
+lin jakauma_NK = {s = d10 "jakauma"} ;
+lin jakaus_NK = {s = d39 "jakaus"} ;
+lin jakautua_VK = {s = c52A "jakautua"} ;
+lin jakautuma_NK = {s = d10 "jakautuma"} ;
+lin jakelija_NK = {s = d12 "jakelija"} ;
+lin jakelu_NK = {s = d02 "jakelu"} ;
+lin jakkara_NK = {s = d12 "jakkara"} ;
+lin jakki_1_NK = {s = d05A "jakki"} ;
+lin jakki_2_NK = {s = d05A "jakki"} ;
+lin jakku_NK = {s = d01A "jakku"} ;
+lin jako_NK = {s = d01A "jako"} ;
+lin jakobiini_NK = {s = d05 "jakobiini"} ;
+lin jakoinen_NK = {s = d38 "jakoinen"} ;
+lin jaksaa_VK = {s = c56 "jaksaa"} ;
+lin jaksella_VK = {s = c67 "jaksella"} ;
+lin jakso_NK = {s = d01 "jakso"} ;
+lin jaksoinen_NK = {s = d38 "jaksoinen"} ;
+lin jaksoittain_AdvK = {s = c99 "jaksoittain"} ;
+lin jaksoittainen_AK = {s = d38 "jaksoittainen"} ;
+--+ lin jaksoittaisesti_AdvK = {s = c99 "jaksoittaisesti"} ;
+lin jaksoittaisuus_NK = {s = d40 "jaksoittaisuus"} ;
+lin jaksollinen_NK = {s = d38 "jaksollinen"} ;
+lin jaksollisuus_NK = {s = d40 "jaksollisuus"} ;
+lin jaksonaika_NK = {s = d09A "jaksonaika"} ;
+lin jaksotella_VK = {s = c67A "jaksotella"} ;
+lin jaksottaa_VK = {s = c53A "jaksottaa"} ;
+lin jaksottua_VK = {s = c52A "jaksottua"} ;
+lin jaksotus_NK = {s = d39 "jaksotus"} ;
+lin jakuutti_NK = {s = d05A "jakuutti"} ;
+lin jalake_NK = {s = d48A "jalake"} ;
+lin jalallinen_NK = {s = d38 "jalallinen"} ;
+lin jalan_AdvK = {s = c99 "jalan"} ;
+lin jalapeno_NK = {s = d01 "jalapeno"} ;
+lin jalas_NK = {s = d39 "jalas"} ;
+lin jalava_NK = {s = d10 "jalava"} ;
+lin jalka_NK = {s = d09A "jalka"} ;
+lin jalkainen_NK = {s = d38 "jalkainen"} ;
+lin jalkaisin_AdvK = {s = c99 "jalkaisin"} ;
+lin jalkapatikka_NK = {s = d14A "jalkapatikka"} ;
+lin jalkauttaa_VK = {s = c53A "jalkauttaa"} ;
+lin jalkautua_VK = {s = c52A "jalkautua"} ;
+lin jalkava_NK = {s = d10 "jalkava"} ;
+lin jalkavuus_NK = {s = d40 "jalkavuus"} ;
+lin jalkeilla_AdvK = {s = c99 "jalkeilla"} ;
+lin jalkeille_AdvK = {s = c99 "jalkeille"} ;
+lin jalkine_NK = {s = d48 "jalkine"} ;
+lin jalkio_NK = {s = d03 "jalkio"} ;
+lin jallittaa_VK = {s = c53A "jallittaa"} ;
+lin jallitus_NK = {s = d39 "jallitus"} ;
+lin jalo_NK = {s = d01 "jalo"} ;
+lin jaloitella_VK = {s = c67A "jaloitella"} ;
+lin jaloittelu_NK = {s = d02 "jaloittelu"} ;
+lin jalokivihioja_NK = {s = d10 "jalokivihioja"} ;
+--+ lin jalomielisesti_AdvK = {s = c99 "jalomielisesti"} ;
+lin jalonnus_NK = {s = d39 "jalonnus"} ;
+lin jalontaa_VK = {s = c54A "jalontaa"} ;
+lin jalostaa_VK = {s = c53 "jalostaa"} ;
+lin jalostamo_NK = {s = d02 "jalostamo"} ;
+lin jaloste_NK = {s = d48 "jaloste"} ;
+lin jalostua_VK = {s = c52 "jalostua"} ;
+lin jalostus_NK = {s = d39 "jalostus"} ;
+lin jalus_NK = {s = d39 "jalus"} ;
+lin jalusta_NK = {s = d13 "jalusta"} ;
+lin jalustaa_VK = {s = c53 "jalustaa"} ;
+lin jalustin_NK = {s = d33 "jalustin"} ;
+lin jamaan_AdvK = {s = c99 "jamaan"} ;
+lin jamassa_AdvK = {s = c99 "jamassa"} ;
+lin jambi_NK = {s = d05 "jambi"} ;
+lin jamboree_NK = {s = d20 "jamboree"} ;
+lin jamit_NK = {s = d05 "jamit"} ;
+lin jammailla_VK = {s = c67 "jammailla"} ;
+lin jammata_VK = {s = c73 "jammata"} ;
+lin jam_session_NK = {s = d05 "jam session"} ;
+lin jamssi_NK = {s = d05 "jamssi"} ;
+lin jana_NK = {s = d09 "jana"} ;
+lin janitsaari_NK = {s = d05 "janitsaari"} ;
+lin jankata_VK = {s = c73A "jankata"} ;
+lin jankko_NK = {s = d01A "jankko"} ;
+lin jankkuri_NK = {s = d06 "jankkuri"} ;
+lin jankuttaa_VK = {s = c53A "jankuttaa"} ;
+lin jankutus_NK = {s = d39 "jankutus"} ;
+lin jannu_NK = {s = d01 "jannu"} ;
+lin jano_NK = {s = d01 "jano"} ;
+lin janoinen_NK = {s = d38 "janoinen"} ;
+lin janota_VK = {s = c74 "janota"} ;
+lin janottaa_VK = {s = c53A "janottaa"} ;
+lin jaoke_NK = {s = d48A "jaoke"} ;
+lin jaokkeeton_NK = {s = d34A "jaokkeeton"} ;
+lin jaokkeinen_NK = {s = d38 "jaokkeinen"} ;
+lin jaollinen_NK = {s = d38 "jaollinen"} ;
+lin jaollisuus_NK = {s = d40 "jaollisuus"} ;
+lin jaos_NK = {s = d39 "jaos"} ;
+lin jaosto_NK = {s = d02 "jaosto"} ;
+lin jaotella_VK = {s = c67A "jaotella"} ;
+lin jaoton_NK = {s = d34A "jaoton"} ;
+lin jaottaa_VK = {s = c53A "jaottaa"} ;
+lin jaottelu_NK = {s = d02 "jaottelu"} ;
+lin jaotus_NK = {s = d39 "jaotus"} ;
+lin japani_NK = {s = d05 "japani"} ;
+lin japaninlakka_NK = {s = d09A "japaninlakka"} ;
+lin japanitar_NK = {s = d32A "japanitar"} ;
+lin japsi_NK = {s = d05 "japsi"} ;
+lin jarru_NK = {s = d01 "jarru"} ;
+lin jarruttaa_VK = {s = c53A "jarruttaa"} ;
+lin jarrutus_NK = {s = d39 "jarrutus"} ;
+lin jarruuntua_VK = {s = c52A "jarruuntua"} ;
+lin jasmiini_NK = {s = d05 "jasmiini"} ;
+lin jasmike_NK = {s = d48A "jasmike"} ;
+lin jaspis_NK = {s = d39 "jaspis"} ;
+lin jassoo_AdvK = {s = c99 "jassoo"} ;
+lin jata_NK = {s = d09A "jata"} ;
+lin jatkaa_VK = {s = c56 "jatkaa"} ;
+lin jatkaja_NK = {s = d10 "jatkaja"} ;
+lin jatkavuus_NK = {s = d40 "jatkavuus"} ;
+lin jatke_NK = {s = d48 "jatke"} ;
+lin jatko_NK = {s = d01 "jatko"} ;
+lin jatkoaika_NK = {s = d09A "jatkoaika"} ;
+lin jatkokohta_NK = {s = d10A "jatkokohta"} ;
+lin jatkos_NK = {s = d39 "jatkos"} ;
+lin jatkua_VK = {s = c52 "jatkua"} ;
+lin jatkumo_NK = {s = d02 "jatkumo"} ;
+lin jatkuva_AK = {s = d10 "jatkuva"} ;
+lin jatkuvajuoninen_NK = {s = d38 "jatkuvajuoninen"} ;
+--+ lin jatkuvasti_AdvK = {s = c99 "jatkuvasti"} ;
+lin jatkuvuus_NK = {s = d40 "jatkuvuus"} ;
+lin jatsari_NK = {s = d06 "jatsari"} ;
+lin jatsi_NK = {s = d05 "jatsi"} ;
+lin jauhaa_VK = {s = c56 "jauhaa"} ;
+lin jauhaantua_VK = {s = c52A "jauhaantua"} ;
+lin jauhattaa_VK = {s = c53A "jauhattaa"} ;
+lin jauhatus_NK = {s = d39 "jauhatus"} ;
+lin jauhautua_VK = {s = c52A "jauhautua"} ;
+lin jauhe_NK = {s = d48 "jauhe"} ;
+lin jauhennin_NK = {s = d33A "jauhennin"} ;
+lin jauhentaa_VK = {s = c54A "jauhentaa"} ;
+lin jauhentua_VK = {s = c52A "jauhentua"} ;
+lin jauhiainen_NK = {s = d38 "jauhiainen"} ;
+lin jauhin_NK = {s = d33 "jauhin"} ;
+lin jauho_NK = {s = d01 "jauho"} ;
+lin jauhoinen_NK = {s = d38 "jauhoinen"} ;
+lin jauhottaa_VK = {s = c53A "jauhottaa"} ;
+lin jazz_NK = {s = d05 "jazz"} ;
+lin jeeppi_NK = {s = d05A "jeeppi"} ;
+lin jeesata_VK = {s = c73 "jeesata"} ;
+lin jeesus_NK = {s = d39 "jeesus"} ;
+lin jeesustella_VK = {s = c67 "jeesustella"} ;
+lin jeesustelu_NK = {s = d02 "jeesustelu"} ;
+lin jeeveli_NK = {s = d06 "jeeveli"} ;
+lin jehu_NK = {s = d01 "jehu"} ;
+lin jekku_NK = {s = d01A "jekku"} ;
+lin jekkuilla_VK = {s = c67 "jekkuilla"} ;
+lin jellona_NK = {s = d11 "jellona"} ;
+lin jelpata_VK = {s = c73A "jelpata"} ;
+lin jelppia'_VK = {s = c61A "jelppiä"} ;
+lin jemma_NK = {s = d09 "jemma"} ;
+lin jemmata_VK = {s = c73 "jemmata"} ;
+lin jengi_NK = {s = d05 "jengi"} ;
+lin jengila'inen_NK = {s = d38 "jengiläinen"} ;
+lin jengiytya'_VK = {s = c52A "jengiytyä"} ;
+lin jeni_NK = {s = d05 "jeni"} ;
+lin jenka_NK = {s = d09A "jenka"} ;
+lin jenkka_NK = {s = d09A "jenkka"} ;
+lin jenkki_NK = {s = d05A "jenkki"} ;
+lin jenkkila'_NK = {s = d12 "jenkkilä"} ;
+lin jenkkila'inen_NK = {s = d38 "jenkkiläinen"} ;
+lin jep_AdvK = {s = c99 "jep"} ;
+lin jepari_NK = {s = d06 "jepari"} ;
+lin jeppe_NK = {s = d08A "jeppe"} ;
+lin jeremiadi_NK = {s = d05 "jeremiadi"} ;
+lin jermu_NK = {s = d01 "jermu"} ;
+lin jersey_NK = {s = d21 "jersey"} ;
+lin jessus_AdvK = {s = c99 "jessus"} ;
+lin jestas_AdvK = {s = c99 "jestas"} ;
+lin jesuiitta_NK = {s = d09A "jesuiitta"} ;
+lin jet_lag_NK = {s = d05 "jet lag"} ;
+lin jet_set_NK = {s = d05 "jet set"} ;
+lin jetsetti_NK = {s = d05A "jetsetti"} ;
+lin jetsulleen_AdvK = {s = c99 "jetsulleen"} ;
+lin jetti_NK = {s = d05A "jetti"} ;
+lin jiddi_NK = {s = d05 "jiddi"} ;
+lin jiddi__NK = {s = d05 "jiddiš"} ;
+lin jiirata_VK = {s = c73 "jiirata"} ;
+lin jiiri_NK = {s = d05 "jiiri"} ;
+lin jippo_NK = {s = d01A "jippo"} ;
+lin jippoilla_VK = {s = c67 "jippoilla"} ;
+lin jippoilu_NK = {s = d02 "jippoilu"} ;
+lin jiujitsu_NK = {s = d01 "jiujitsu"} ;
+lin jive_NK = {s = d08 "jive"} ;
+lin jo_AdvK = {s = c99 "jo"} ;
+lin jobbari_NK = {s = d06 "jobbari"} ;
+lin jobinposti_NK = {s = d05 "jobinposti"} ;
+lin jockey_NK = {s = d21 "jockey"} ;
+lin jodi_NK = {s = d05 "jodi"} ;
+lin jodidi_NK = {s = d05 "jodidi"} ;
+lin jodioida_VK = {s = c62 "jodioida"} ;
+lin jodittaa_VK = {s = c53A "jodittaa"} ;
+lin jodlata_VK = {s = c73 "jodlata"} ;
+lin jodlaus_NK = {s = d39 "jodlaus"} ;
+lin jogurtti_NK = {s = d05A "jogurtti"} ;
+lin johanniitta_NK = {s = d09A "johanniitta"} ;
+lin johdannainen_NK = {s = d38 "johdannainen"} ;
+lin johdanto_NK = {s = d01A "johdanto"} ;
+lin johdate_NK = {s = d48A "johdate"} ;
+lin johdatella_VK = {s = c67A "johdatella"} ;
+lin johdatin_NK = {s = d33A "johdatin"} ;
+lin johdattaa_VK = {s = c53A "johdattaa"} ;
+lin johdatus_NK = {s = d39 "johdatus"} ;
+lin johde_NK = {s = d48A "johde"} ;
+lin johdin_NK = {s = d33A "johdin"} ;
+lin johdonmukaistaa_VK = {s = c53 "johdonmukaistaa"} ;
+lin johdos_NK = {s = d39 "johdos"} ;
+lin johdosta_AdvK = {s = c99 "johdosta"} ;
+lin johdottaa_VK = {s = c53A "johdottaa"} ;
+lin johdotus_NK = {s = d39 "johdotus"} ;
+lin johonkin_AdvK = {s = c99 "johonkin"} ;
+lin johtaa_VK = {s = c53A "johtaa"} ;
+lin johtaja_NK = {s = d10 "johtaja"} ;
+lin johtajatar_NK = {s = d32A "johtajatar"} ;
+lin johtajisto_NK = {s = d01 "johtajisto"} ;
+lin johtajuus_NK = {s = d40 "johtajuus"} ;
+lin johtava_NK = {s = d10 "johtava"} ;
+lin johtavuus_NK = {s = d40 "johtavuus"} ;
+lin johteinen_NK = {s = d38 "johteinen"} ;
+lin johto_NK = {s = d01A "johto"} ;
+lin johtoinen_NK = {s = d38 "johtoinen"} ;
+lin johtua_VK = {s = c52A "johtua"} ;
+lin joiata_VK = {s = c73A "joiata"} ;
+lin joikata_VK = {s = c73A "joikata"} ;
+lin joikaus_NK = {s = d39 "joikaus"} ;
+lin joiku_NK = {s = d01A "joiku"} ;
+lin joikua_VK = {s = c52A "joikua"} ;
+lin joisto_NK = {s = d01 "joisto"} ;
+lin joiunta_NK = {s = d09A "joiunta"} ;
+lin jojo_NK = {s = d01 "jojo"} ;
+lin jojolaihduttaminen_NK = {s = d38 "jojolaihduttaminen"} ;
+lin joka_1_AdvK = {s = c99 "joka"} ;
+lin jokainen_NK = {s = d38 "jokainen"} ;
+lin jokellella_VK = {s = c67A "jokellella"} ;
+lin jokellus_NK = {s = d39 "jokellus"} ;
+lin jokeltaa_VK = {s = c54A "jokeltaa"} ;
+lin jokeri_NK = {s = d06 "jokeri"} ;
+lin joki_NK = {s = d07A "joki"} ;
+lin joko_AdvK = {s = c99 "joko"} ;
+lin jokseenkin_AdvK = {s = c99 "jokseenkin"} ;
+lin jokunen_NK = {s = d38 "jokunen"} ;
+lin jolkutella_VK = {s = c67A "jolkutella"} ;
+lin jolkuttaa_VK = {s = c53A "jolkuttaa"} ;
+lin jolla_NK = {s = d10 "jolla"} ;
+lin jollainen_NK = {s = d38 "jollainen"} ;
+lin jollei_AdvK = {s = c99 "jollei"} ;
+lin jolloin_AdvK = {s = c99 "jolloin"} ;
+lin jolloinkin_AdvK = {s = c99 "jolloinkin"} ;
+lin jollottaa_VK = {s = c53A "jollottaa"} ;
+lin jolma_NK = {s = d10 "jolma"} ;
+lin jolppi_NK = {s = d05A "jolppi"} ;
+lin joltinen_NK = {s = d38 "joltinen"} ;
+lin joltinenkin_NK = {s = d38 "joltinenkin"} ;
+lin joltisestikin_AdvK = {s = c99 "joltisestikin"} ;
+lin jommoinen_NK = {s = d38 "jommoinen"} ;
+lin jommoinenkin_NK = {s = d38 "jommoinenkin"} ;
+lin jomottaa_VK = {s = c53A "jomottaa"} ;
+lin jonglo'o'ri_NK = {s = d05 "jonglööri"} ;
+lin jonkalainen_NK = {s = d38 "jonkalainen"} ;
+lin jonkinlainen_NK = {s = d38 "jonkinlainen"} ;
+lin jonkinmoinen_NK = {s = d38 "jonkinmoinen"} ;
+lin jonkunlainen_NK = {s = d38 "jonkunlainen"} ;
+lin jonkunmoinen_NK = {s = d38 "jonkunmoinen"} ;
+lin jonne_AdvK = {s = c99 "jonne"} ;
+lin jonnekin_AdvK = {s = c99 "jonnekin"} ;
+lin jono_NK = {s = d01 "jono"} ;
+lin jonottaa_VK = {s = c53A "jonottaa"} ;
+lin jonotus_NK = {s = d39 "jonotus"} ;
+lin jonouttaa_VK = {s = c53A "jonouttaa"} ;
+lin joo_AdvK = {s = c99 "joo"} ;
+lin jooga_NK = {s = d10 "jooga"} ;
+lin joogata_VK = {s = c73 "joogata"} ;
+lin joogi_NK = {s = d05 "joogi"} ;
+lin jooli_NK = {s = d05 "jooli"} ;
+lin joonialainen_NK = {s = d38 "joonialainen"} ;
+lin jopa_AdvK = {s = c99 "jopa"} ;
+lin jopi_NK = {s = d05 "jopi"} ;
+lin jorata_VK = {s = c73 "jorata"} ;
+lin joriini_NK = {s = d05 "joriini"} ;
+lin jorina_NK = {s = d12 "jorina"} ;
+lin jorista_VK = {s = c66 "jorista"} ;
+lin joro_NK = {s = d01 "joro"} ;
+lin jorottaa_VK = {s = c53A "jorottaa"} ;
+lin jorotus_NK = {s = d39 "jorotus"} ;
+lin jorpakko_NK = {s = d04A "jorpakko"} ;
+--? lin jortsut_NK = {s = d01 "jortsut"} ;
+lin jos_AdvK = {s = c99 "jos"} ;
+lin joskaan_AdvK = {s = c99 "joskaan"} ;
+lin joskin_AdvK = {s = c99 "joskin"} ;
+lin joskus_AdvK = {s = c99 "joskus"} ;
+lin jospa_AdvK = {s = c99 "jospa"} ;
+lin jossain_AdvK = {s = c99 "jossain"} ;
+lin jossakin_AdvK = {s = c99 "jossakin"} ;
+lin jossitella_VK = {s = c67A "jossitella"} ;
+lin jossittelu_NK = {s = d02 "jossittelu"} ;
+lin jostain_AdvK = {s = c99 "jostain"} ;
+lin jostakin_AdvK = {s = c99 "jostakin"} ;
+lin jota_AdvK = {s = c99 "jota"} ;
+lin jotakuinkin_AdvK = {s = c99 "jotakuinkin"} ;
+lin joten_AdvK = {s = c99 "joten"} ;
+lin jotenkin_AdvK = {s = c99 "jotenkin"} ;
+lin jotensakin_AdvK = {s = c99 "jotensakin"} ;
+lin joteskin_AdvK = {s = c99 "joteskin"} ;
+lin jotos_NK = {s = d39 "jotos"} ;
+lin jotta_1_AdvK = {s = c99 "jotta"} ;
+lin jotta__2_AdvK = {s = c99 "jotta-"} ;
+lin jouduttaa_VK = {s = c53A "jouduttaa"} ;
+lin jouhea_AK = {s = d15 "jouhea"} ;
+--+ lin jouheasti_AdvK = {s = c99 "jouheasti"} ;
+lin jouheus_NK = {s = d40 "jouheus"} ;
+lin jouhi_NK = {s = d23 "jouhi"} ;
+lin jouhikko_NK = {s = d04A "jouhikko"} ;
+lin joukkio_NK = {s = d03 "joukkio"} ;
+lin joukko_NK = {s = d01A "joukko"} ;
+lin joukkoeroaminen_NK = {s = d38 "joukkoeroaminen"} ;
+lin joukkoerottaminen_NK = {s = d38 "joukkoerottaminen"} ;
+lin joukkoesiintyminen_NK = {s = d38 "joukkoesiintyminen"} ;
+lin joukkoirtisanominen_NK = {s = d38 "joukkoirtisanominen"} ;
+lin joukkoirtisanoutuminen_NK = {s = d38 "joukkoirtisanoutuminen"} ;
+lin joukkotuhonta_NK = {s = d09A "joukkotuhonta"} ;
+lin joukkue_NK = {s = d48 "joukkue"} ;
+lin joukkueinen_NK = {s = d38 "joukkueinen"} ;
+lin joukoittain_AdvK = {s = c99 "joukoittain"} ;
+lin joule_NK = {s = d08 "joule"} ;
+lin joulu_NK = {s = d01 "joulu"} ;
+lin jouluaika_NK = {s = d09A "jouluaika"} ;
+lin jouluinen_NK = {s = d38 "jouluinen"} ;
+lin joulunaika_NK = {s = d09A "joulunaika"} ;
+lin journalismi_NK = {s = d05 "journalismi"} ;
+lin journalisti_NK = {s = d05 "journalisti"} ;
+lin journalistiikka_NK = {s = d09A "journalistiikka"} ;
+lin journalistinen_NK = {s = d38 "journalistinen"} ;
+lin jousi_NK = {s = d26 "jousi"} ;
+lin jousinen_NK = {s = d38 "jousinen"} ;
+lin jousisto_NK = {s = d02 "jousisto"} ;
+lin jousittaa_VK = {s = c53A "jousittaa"} ;
+lin jousitus_NK = {s = d39 "jousitus"} ;
+lin joustaa_VK = {s = c53 "joustaa"} ;
+lin joustamaton_NK = {s = d34A "joustamaton"} ;
+lin joustava_AK = {s = d10 "joustava"} ;
+--+ lin joustavasti_AdvK = {s = c99 "joustavasti"} ;
+lin joustavoida_VK = {s = c62 "joustavoida"} ;
+lin joustavoittaa_VK = {s = c53A "joustavoittaa"} ;
+lin joustavuus_NK = {s = d40 "joustavuus"} ;
+lin joustin_NK = {s = d33 "joustin"} ;
+lin jousto_NK = {s = d01 "jousto"} ;
+lin joustoaika_NK = {s = d09A "joustoaika"} ;
+lin joutaa_VK = {s = c53A "joutaa"} ;
+lin joutava_NK = {s = d10 "joutava"} ;
+lin jouten_AdvK = {s = c99 "jouten"} ;
+lin joutessa_AdvK = {s = c99 "joutessa"} ;
+lin joutessaan_AdvK = {s = c99 "joutessaan"} ;
+lin joutilaisuus_NK = {s = d40 "joutilaisuus"} ;
+lin joutilas_NK = {s = d41 "joutilas"} ;
+lin joutoaika_NK = {s = d09A "joutoaika"} ;
+lin joutsen_NK = {s = d32 "joutsen"} ;
+lin joutua_VK = {s = c52A "joutua"} ;
+lin joutuin_AdvK = {s = c99 "joutuin"} ;
+lin joutuisa_AK = {s = d10 "joutuisa"} ;
+--+ lin joutuisasti_AdvK = {s = c99 "joutuisasti"} ;
+lin joviaali_NK = {s = d05 "joviaali"} ;
+lin joystick_NK = {s = d05 "joystick"} ;
+lin judata_VK = {s = c73A "judata"} ;
+lin judo_NK = {s = d01 "judo"} ;
+lin judogi_NK = {s = d05 "judogi"} ;
+lin judoka_NK = {s = d11 "judoka"} ;
+lin jugend_NK = {s = d05 "jugend"} ;
+lin jugoslaavi_NK = {s = d05 "jugoslaavi"} ;
+lin jugoslavialainen_NK = {s = d38 "jugoslavialainen"} ;
+lin jugurtti_NK = {s = d05A "jugurtti"} ;
+lin juhannus_NK = {s = d39 "juhannus"} ;
+lin juhla_NK = {s = d10 "juhla"} ;
+lin juhlaliputettu_NK = {s = d01A "juhlaliputettu"} ;
+lin juhlallinen_AK = {s = d38 "juhlallinen"} ;
+--+ lin juhlallisesti_AdvK = {s = c99 "juhlallisesti"} ;
+lin juhlallisuus_NK = {s = d40 "juhlallisuus"} ;
+lin juhlava_AK = {s = d10 "juhlava"} ;
+lin juhlavalaistu_NK = {s = d01 "juhlavalaistu"} ;
+--+ lin juhlavasti_AdvK = {s = c99 "juhlavasti"} ;
+lin juhlavuus_NK = {s = d40 "juhlavuus"} ;
+lin juhlia_VK = {s = c61 "juhlia"} ;
+lin juhlija_NK = {s = d12 "juhlija"} ;
+lin juhlinta_NK = {s = d09A "juhlinta"} ;
+lin juhlistaa_VK = {s = c53 "juhlistaa"} ;
+lin juhta_NK = {s = d10A "juhta"} ;
+lin juippi_NK = {s = d05A "juippi"} ;
+lin juju_NK = {s = d01 "juju"} ;
+lin jujuttaa_VK = {s = c53A "jujuttaa"} ;
+lin jukeboksi_NK = {s = d05 "jukeboksi"} ;
+lin jukebox_NK = {s = d05 "jukebox"} ;
+lin jukka_NK = {s = d10A "jukka"} ;
+lin jukolaut_AdvK = {s = c99 "jukolaut"} ;
+lin jukolauta_AdvK = {s = c99 "jukolauta"} ;
+lin jukoliste_AdvK = {s = c99 "jukoliste"} ;
+lin jukra_AdvK = {s = c99 "jukra"} ;
+lin juksata_VK = {s = c73 "juksata"} ;
+lin juku_AdvK = {s = c99 "juku"} ;
+lin jukurtti_NK = {s = d05A "jukurtti"} ;
+lin juliaaninen_NK = {s = d38 "juliaaninen"} ;
+lin julistaa_VK = {s = c53 "julistaa"} ;
+lin julistaja_NK = {s = d10 "julistaja"} ;
+lin julistautua_VK = {s = c52A "julistautua"} ;
+lin juliste_NK = {s = d48 "juliste"} ;
+lin julistus_NK = {s = d39 "julistus"} ;
+lin juljeta_VK = {s = c74A "juljeta"} ;
+lin julkaisematon_NK = {s = d34A "julkaisematon"} ;
+lin julkaisija_NK = {s = d12 "julkaisija"} ;
+lin julkaista_VK = {s = c66 "julkaista"} ;
+lin julkaisu_NK = {s = d02 "julkaisu"} ;
+lin julkea_AK = {s = d15 "julkea"} ;
+--+ lin julkeasti_AdvK = {s = c99 "julkeasti"} ;
+lin julkeus_NK = {s = d40 "julkeus"} ;
+lin julki_AdvK = {s = c99 "julki"} ;
+lin julkimo_NK = {s = d02 "julkimo"} ;
+lin julkinen_AK = {s = d38 "julkinen"} ;
+lin julkipanna_VK = {s = c67 "julkipanna"} ;
+--+ lin julkisesti_AdvK = {s = c99 "julkisesti"} ;
+lin julkistaa_VK = {s = c53 "julkistaa"} ;
+lin julkisuus_NK = {s = d40 "julkisuus"} ;
+lin julkkis_NK = {s = d39 "julkkis"} ;
+lin julkku_NK = {s = d01A "julkku"} ;
+lin julli_NK = {s = d05 "julli"} ;
+lin jullikka_NK = {s = d14A "jullikka"} ;
+lin julma_AK = {s = d10 "julma"} ;
+--+ lin julmasti_AdvK = {s = c99 "julmasti"} ;
+lin julmettu_NK = {s = d01A "julmettu"} ;
+lin julmetusti_AdvK = {s = c99 "julmetusti"} ;
+lin julmistella_VK = {s = c67 "julmistella"} ;
+lin julmistua_VK = {s = c52 "julmistua"} ;
+lin julmuri_NK = {s = d06 "julmuri"} ;
+lin julmuus_NK = {s = d40 "julmuus"} ;
+lin jumala_NK = {s = d10 "jumala"} ;
+lin jumalaapelka'a'va'_NK = {s = d10 "jumalaapelkäävä"} ;
+lin jumalainen_AK = {s = d38 "jumalainen"} ;
+--+ lin jumalaisesti_AdvK = {s = c99 "jumalaisesti"} ;
+lin jumalallinen_NK = {s = d38 "jumalallinen"} ;
+lin jumalankielta'minen_NK = {s = d38 "jumalankieltäminen"} ;
+lin jumalanluoma_NK = {s = d10 "jumalanluoma"} ;
+lin jumalatar_NK = {s = d32A "jumalatar"} ;
+lin jumalaton_NK = {s = d34A "jumalaton"} ;
+lin jumalattomasti_AdvK = {s = c99 "jumalattomasti"} ;
+lin jumalaut_AdvK = {s = c99 "jumalaut"} ;
+lin jumalauta_AdvK = {s = c99 "jumalauta"} ;
+lin jumalinen_AK = {s = d38 "jumalinen"} ;
+--+ lin jumalisesti_AdvK = {s = c99 "jumalisesti"} ;
+lin jumaliste_AdvK = {s = c99 "jumaliste"} ;
+lin jumalisuus_NK = {s = d40 "jumalisuus"} ;
+lin jumaloida_VK = {s = c62 "jumaloida"} ;
+lin jumalointi_NK = {s = d05A "jumalointi"} ;
+lin jumaluus_NK = {s = d40 "jumaluus"} ;
+lin jumbo_NK = {s = d01 "jumbo"} ;
+lin jumbokoko_NK = {s = d01A "jumbokoko"} ;
+lin jumi_NK = {s = d05 "jumi"} ;
+lin jumiin_AdvK = {s = c99 "jumiin"} ;
+lin jumiintua_VK = {s = c52A "jumiintua"} ;
+lin jumissa_AdvK = {s = c99 "jumissa"} ;
+lin jumittaa_VK = {s = c53A "jumittaa"} ;
+lin jumittua_VK = {s = c52A "jumittua"} ;
+lin jumiuttaa_VK = {s = c53A "jumiuttaa"} ;
+lin jumiutua_VK = {s = c52A "jumiutua"} ;
+lin jumpata_VK = {s = c73A "jumpata"} ;
+lin jumppa_NK = {s = d10A "jumppa"} ;
+lin jumpperi_NK = {s = d06 "jumpperi"} ;
+lin jumputtaa_VK = {s = c53A "jumputtaa"} ;
+lin jumputus_NK = {s = d39 "jumputus"} ;
+lin juna_NK = {s = d10 "juna"} ;
+lin junailija_NK = {s = d12 "junailija"} ;
+lin junailla_VK = {s = c67 "junailla"} ;
+lin jungmanni_NK = {s = d05 "jungmanni"} ;
+lin junior_NK = {s = d05 "junior"} ;
+lin juniori_NK = {s = d06 "juniori"} ;
+lin junk_food_NK = {s = d05 "junk food"} ;
+lin junkkari_NK = {s = d06 "junkkari"} ;
+lin junnata_VK = {s = c73 "junnata"} ;
+lin junnu_NK = {s = d01 "junnu"} ;
+lin juntata_1_VK = {s = c73A "juntata"} ;
+lin juntata_2_VK = {s = c73A "juntata"} ;
+lin juntta_1_NK = {s = d10A "juntta"} ;
+lin juntta_2_NK = {s = d10A "juntta"} ;
+lin junttaus_NK = {s = d39 "junttaus"} ;
+lin juntti_NK = {s = d05A "juntti"} ;
+lin juntturassa_AdvK = {s = c99 "juntturassa"} ;
+lin juoda_VK = {s = c64 "juoda"} ;
+lin juohea_AK = {s = d15 "juohea"} ;
+--+ lin juoheasti_AdvK = {s = c99 "juoheasti"} ;
+lin juoheus_NK = {s = d40 "juoheus"} ;
+lin juoheva_AK = {s = d10 "juoheva"} ;
+--+ lin juohevasti_AdvK = {s = c99 "juohevasti"} ;
+lin juohevuus_NK = {s = d40 "juohevuus"} ;
+lin juohtua_VK = {s = c52A "juohtua"} ;
+lin juoksennella_VK = {s = c67A "juoksennella"} ;
+lin juoksete_NK = {s = d48A "juoksete"} ;
+lin juoksettaa_VK = {s = c53A "juoksettaa"} ;
+lin juoksettua_VK = {s = c52A "juoksettua"} ;
+lin juokseva_AK = {s = d10 "juokseva"} ;
+--+ lin juoksevasti_AdvK = {s = c99 "juoksevasti"} ;
+lin juoksevuus_NK = {s = d40 "juoksevuus"} ;
+lin juoksija_NK = {s = d12 "juoksija"} ;
+lin juoksu_NK = {s = d01 "juoksu"} ;
+lin juoksuaika_NK = {s = d09A "juoksuaika"} ;
+lin juoksuinen_NK = {s = d38 "juoksuinen"} ;
+lin juoksujalkaa_AdvK = {s = c99 "juoksujalkaa"} ;
+lin juoksute_NK = {s = d48A "juoksute"} ;
+lin juoksutin_NK = {s = d33A "juoksutin"} ;
+lin juoksuttaa_VK = {s = c53A "juoksuttaa"} ;
+lin juoksutus_NK = {s = d39 "juoksutus"} ;
+lin juolahtaa_VK = {s = c53A "juolahtaa"} ;
+lin juolua_NK = {s = d12 "juolua"} ;
+lin juolukka_NK = {s = d14A "juolukka"} ;
+lin juoma_NK = {s = d10 "juoma"} ;
+lin juomari_NK = {s = d06 "juomari"} ;
+lin juominen_NK = {s = d38 "juominen"} ;
+lin juomingit_NK = {s = d05A "juomingit"} ;
+lin juomu_NK = {s = d01 "juomu"} ;
+lin juomuinen_NK = {s = d38 "juomuinen"} ;
+lin juonellinen_AK = {s = d38 "juonellinen"} ;
+--+ lin juonellisesti_AdvK = {s = c99 "juonellisesti"} ;
+lin juoni_NK = {s = d26 "juoni"} ;
+lin juonia_VK = {s = c61 "juonia"} ;
+lin juonikas_AK = {s = d41A "juonikas"} ;
+--+ lin juonikkaasti_AdvK = {s = c99 "juonikkaasti"} ;
+lin juonikkuus_NK = {s = d40 "juonikkuus"} ;
+lin juonitella_VK = {s = c67A "juonitella"} ;
+lin juonittelija_NK = {s = d12 "juonittelija"} ;
+lin juonittelu_NK = {s = d02 "juonittelu"} ;
+lin juonne_NK = {s = d48A "juonne"} ;
+lin juontaa_VK = {s = c54A "juontaa"} ;
+lin juontaja_NK = {s = d10 "juontaja"} ;
+lin juonteikas_NK = {s = d41A "juonteikas"} ;
+lin juonti_NK = {s = d05A "juonti"} ;
+lin juonto_NK = {s = d01A "juonto"} ;
+lin juontua_VK = {s = c52A "juontua"} ;
+lin juopa_NK = {s = d10A "juopa"} ;
+lin juoponnapissa_AdvK = {s = c99 "juoponnapissa"} ;
+lin juoponnappiin_AdvK = {s = c99 "juoponnappiin"} ;
+lin juopotella_VK = {s = c67A "juopotella"} ;
+lin juopottelu_NK = {s = d02 "juopottelu"} ;
+lin juoppo_NK = {s = d01A "juoppo"} ;
+lin juoppolalli_NK = {s = d05 "juoppolalli"} ;
+lin juoppous_NK = {s = d40 "juoppous"} ;
+lin juopua_VK = {s = c52A "juopua"} ;
+lin juopumus_NK = {s = d39 "juopumus"} ;
+lin juopunut_NK = {s = d47 "juopunut"} ;
+lin juoru_NK = {s = d01 "juoru"} ;
+lin juoruilla_VK = {s = c67 "juoruilla"} ;
+lin juoruilu_NK = {s = d02 "juoruilu"} ;
+lin juorukki_NK = {s = d05A "juorukki"} ;
+lin juoruta_VK = {s = c74 "juoruta"} ;
+lin juosta_VK = {s = c70 "juosta"} ;
+lin juoste_NK = {s = d48 "juoste"} ;
+lin juotava_NK = {s = d10 "juotava"} ;
+lin juote_NK = {s = d48A "juote"} ;
+lin juotikas_NK = {s = d41A "juotikas"} ;
+lin juotin_NK = {s = d33A "juotin"} ;
+lin juotos_NK = {s = d39 "juotos"} ;
+lin juottaa_VK = {s = c53A "juottaa"} ;
+lin juotto_NK = {s = d01A "juotto"} ;
+lin juottola_NK = {s = d12 "juottola"} ;
+lin juova_NK = {s = d10 "juova"} ;
+lin juovainen_NK = {s = d38 "juovainen"} ;
+lin juovikas_NK = {s = d41A "juovikas"} ;
+lin juovittaa_VK = {s = c53A "juovittaa"} ;
+lin juovitus_NK = {s = d39 "juovitus"} ;
+lin juovukkeeseen_AdvK = {s = c99 "juovukkeeseen"} ;
+lin juovukkeessa_AdvK = {s = c99 "juovukkeessa"} ;
+lin juovuksiin_AdvK = {s = c99 "juovuksiin"} ;
+lin juovuksissa_AdvK = {s = c99 "juovuksissa"} ;
+lin juovuspa'issa'_AdvK = {s = c99 "juovuspäissä"} ;
+lin juovuttaa_VK = {s = c53A "juovuttaa"} ;
+lin jupakka_NK = {s = d14A "jupakka"} ;
+lin jupina_NK = {s = d12 "jupina"} ;
+lin jupista_VK = {s = c66 "jupista"} ;
+lin juppi_NK = {s = d05A "juppi"} ;
+lin juppiutua_VK = {s = c52A "juppiutua"} ;
+lin juridiikka_NK = {s = d09A "juridiikka"} ;
+lin juridinen_AK = {s = d38 "juridinen"} ;
+--+ lin juridisesti_AdvK = {s = c99 "juridisesti"} ;
+lin juristeria_NK = {s = d12 "juristeria"} ;
+lin juristi_NK = {s = d05 "juristi"} ;
+lin jurnuttaa_VK = {s = c53A "jurnuttaa"} ;
+lin jurnutus_NK = {s = d39 "jurnutus"} ;
+lin juro_AK = {s = d01 "juro"} ;
+lin juroa_VK = {s = c52 "juroa"} ;
+--+ lin jurosti_AdvK = {s = c99 "jurosti"} ;
+lin jurottaa_VK = {s = c53A "jurottaa"} ;
+lin jurous_NK = {s = d40 "jurous"} ;
+lin juroutua_VK = {s = c52A "juroutua"} ;
+lin jurppia_VK = {s = c61A "jurppia"} ;
+lin jurrata_VK = {s = c73 "jurrata"} ;
+lin jurri_NK = {s = d05 "jurri"} ;
+lin jurrikka_NK = {s = d14A "jurrikka"} ;
+lin jury_NK = {s = d01 "jury"} ;
+lin Jussi_NK = {s = d05 "Jussi"} ;
+lin jussi_NK = {s = d05 "jussi"} ;
+lin just_AdvK = {s = c99 "just"} ;
+lin justeerata_VK = {s = c73 "justeerata"} ;
+lin justeeraus_NK = {s = d39 "justeeraus"} ;
+lin justeeri_NK = {s = d06 "justeeri"} ;
+lin justiin_AdvK = {s = c99 "justiin"} ;
+lin justiinsa_AdvK = {s = c99 "justiinsa"} ;
+lin jutaa_AdvK = {s = c99 "jutaa"} ;
+lin jutella_VK = {s = c67A "jutella"} ;
+lin jutku_NK = {s = d01 "jutku"} ;
+lin jutsku_NK = {s = d01 "jutsku"} ;
+lin juttelu_NK = {s = d02 "juttelu"} ;
+lin juttu_NK = {s = d01A "juttu"} ;
+lin juttusilla_AdvK = {s = c99 "juttusilla"} ;
+lin juttusille_AdvK = {s = c99 "juttusille"} ;
+lin jutustaa_VK = {s = c53 "jutustaa"} ;
+lin jutustella_VK = {s = c67 "jutustella"} ;
+lin jutustelu_NK = {s = d02 "jutustelu"} ;
+lin jututtaa_VK = {s = c53A "jututtaa"} ;
+lin juu_AdvK = {s = c99 "juu"} ;
+lin juudas_NK = {s = d39 "juudas"} ;
+lin juurehtia_VK = {s = c61A "juurehtia"} ;
+lin juurekas_NK = {s = d41A "juurekas"} ;
+lin juures_NK = {s = d39 "juures"} ;
+lin juureton_NK = {s = d34A "juureton"} ;
+lin juurettomuus_NK = {s = d40 "juurettomuus"} ;
+lin juureva_NK = {s = d10 "juureva"} ;
+lin juurevuus_NK = {s = d40 "juurevuus"} ;
+lin juuri_1_NK = {s = d26 "juuri"} ;
+lin juuri_2_AdvK = {s = c99 "juuri"} ;
+lin juuria_VK = {s = c61 "juuria"} ;
+lin juurinen_NK = {s = d38 "juurinen"} ;
+lin juuristo_NK = {s = d02 "juuristo"} ;
+lin juurittaa_VK = {s = c53A "juurittaa"} ;
+lin juurrettava_NK = {s = d10 "juurrettava"} ;
+lin juurruttaa_VK = {s = c53A "juurruttaa"} ;
+lin juurrutus_NK = {s = d39 "juurrutus"} ;
+lin juurtaa_VK = {s = c54A "juurtaa"} ;
+lin juurta_jaksaen_AdvK = {s = c99 "juurta jaksaen"} ;
+lin juurta_jaksain_AdvK = {s = c99 "juurta jaksain"} ;
+lin juurtua_VK = {s = c52A "juurtua"} ;
+lin juusto_NK = {s = d01 "juusto"} ;
+lin juustola_NK = {s = d12 "juustola"} ;
+lin juustottua_VK = {s = c52A "juustottua"} ;
+lin juustouma_NK = {s = d10 "juustouma"} ;
+lin juustouttaa_VK = {s = c53A "juustouttaa"} ;
+lin juustoutua_VK = {s = c52A "juustoutua"} ;
+lin juustoutuma_NK = {s = d10 "juustoutuma"} ;
+lin juutalainen_NK = {s = d38 "juutalainen"} ;
+lin juutalaisuus_NK = {s = d40 "juutalaisuus"} ;
+lin juutas_NK = {s = d41A "juutas"} ;
+lin juutti_1_NK = {s = d05A "juutti"} ;
+lin juutti_2_NK = {s = d05A "juutti"} ;
+lin juuttua_VK = {s = c52A "juuttua"} ;
+lin jyda'ta'_VK = {s = c73A "jydätä"} ;
+lin jyhkeys_NK = {s = d40 "jyhkeys"} ;
+lin jyhkea'_AK = {s = d15 "jyhkeä"} ;
+--+ lin jyhkea'sti_AdvK = {s = c99 "jyhkeästi"} ;
+lin jykerta'a'_VK = {s = c54A "jykertää"} ;
+lin jykevyys_NK = {s = d40 "jykevyys"} ;
+lin jykeva'_AK = {s = d10 "jykevä"} ;
+--+ lin jykeva'sti_AdvK = {s = c99 "jykevästi"} ;
+lin jylheta'_VK = {s = c72 "jylhetä"} ;
+lin jylhistya'_VK = {s = c52 "jylhistyä"} ;
+lin jylhyys_NK = {s = d40 "jylhyys"} ;
+lin jylha'_AK = {s = d10 "jylhä"} ;
+--+ lin jylha'sti_AdvK = {s = c99 "jylhästi"} ;
+lin jylina'_NK = {s = d12 "jylinä"} ;
+lin jylista'_VK = {s = c66 "jylistä"} ;
+lin jylla'ta'_VK = {s = c73 "jyllätä"} ;
+lin jyly_NK = {s = d01 "jyly"} ;
+lin jymina'_NK = {s = d12 "jyminä"} ;
+lin jymista'_VK = {s = c66 "jymistä"} ;
+lin jymista'a'_VK = {s = c53 "jymistää"} ;
+lin jymy_NK = {s = d01 "jymy"} ;
+lin jyma'hdella'_VK = {s = c67A "jymähdellä"} ;
+lin jyma'hdys_NK = {s = d39 "jymähdys"} ;
+lin jyma'hta'a'_VK = {s = c53A "jymähtää"} ;
+lin jyma'ys_NK = {s = d39 "jymäys"} ;
+lin jyma'ytella'_VK = {s = c67A "jymäytellä"} ;
+lin jyma'ytta'a'_VK = {s = c53A "jymäyttää"} ;
+lin jynssa'ta'_VK = {s = c73 "jynssätä"} ;
+lin jynssa'ys_NK = {s = d39 "jynssäys"} ;
+lin jyrina'_NK = {s = d12 "jyrinä"} ;
+lin jyristella'_VK = {s = c67 "jyristellä"} ;
+lin jyrista'_VK = {s = c66 "jyristä"} ;
+lin jyrista'a'_VK = {s = c53 "jyristää"} ;
+lin jyrisytta'a'_VK = {s = c53A "jyrisyttää"} ;
+lin jyrkentya'_VK = {s = c52A "jyrkentyä"} ;
+lin jyrkenta'a'_VK = {s = c54A "jyrkentää"} ;
+lin jyrketa'_VK = {s = c72A "jyrketä"} ;
+lin jyrkistya'_VK = {s = c52 "jyrkistyä"} ;
+lin jyrkista'a'_VK = {s = c53 "jyrkistää"} ;
+lin jyrkkyys_NK = {s = d40 "jyrkkyys"} ;
+lin jyrkka'_NK = {s = d10A "jyrkkä"} ;
+lin jyrka'nne_NK = {s = d48A "jyrkänne"} ;
+lin jyrka'sti_AdvK = {s = c99 "jyrkästi"} ;
+lin jyrra'ta'_VK = {s = c73 "jyrrätä"} ;
+lin jyrsija'_NK = {s = d12 "jyrsijä"} ;
+lin jyrsin_NK = {s = d33 "jyrsin"} ;
+lin jyrsinta'_NK = {s = d09A "jyrsintä"} ;
+lin jyrsia'_VK = {s = c61 "jyrsiä"} ;
+lin jyry_NK = {s = d01 "jyry"} ;
+lin jyryta'_VK = {s = c75 "jyrytä"} ;
+lin jyryytta'a'_VK = {s = c53A "jyryyttää"} ;
+lin jyra'_NK = {s = d10 "jyrä"} ;
+lin jyra'hdella'_VK = {s = c67A "jyrähdellä"} ;
+lin jyra'hdys_NK = {s = d39 "jyrähdys"} ;
+lin jyra'htely_NK = {s = d02 "jyrähtely"} ;
+lin jyra'hta'a'_VK = {s = c53A "jyrähtää"} ;
+lin jyra'ta'_VK = {s = c73 "jyrätä"} ;
+lin jyra'ys_1_NK = {s = d39 "jyräys"} ;
+lin jyra'ys_2_NK = {s = d39 "jyräys"} ;
+lin jyra'ytta'a'_1_VK = {s = c53A "jyräyttää"} ;
+lin jyra'ytta'a'_2_VK = {s = c53A "jyräyttää"} ;
+lin jyske_NK = {s = d48 "jyske"} ;
+lin jyskina'_NK = {s = d12 "jyskinä"} ;
+lin jyskia'_VK = {s = c61 "jyskiä"} ;
+lin jyskytella'_VK = {s = c67A "jyskytellä"} ;
+lin jyskytta'a'_VK = {s = c53A "jyskyttää"} ;
+lin jyskytys_NK = {s = d39 "jyskytys"} ;
+lin jyskya'_VK = {s = c52 "jyskyä"} ;
+lin jyska'hta'a'_VK = {s = c53A "jyskähtää"} ;
+lin jyska'a'_VK = {s = c78 "jyskää"} ;
+lin jysa'hdella'_VK = {s = c67A "jysähdellä"} ;
+lin jysa'hdys_NK = {s = d39 "jysähdys"} ;
+lin jysa'hta'a'_VK = {s = c53A "jysähtää"} ;
+lin jysa'ys_NK = {s = d39 "jysäys"} ;
+lin jysa'ytta'a'_VK = {s = c53A "jysäyttää"} ;
+lin jytina'_NK = {s = d12 "jytinä"} ;
+lin jytista'_VK = {s = c66 "jytistä"} ;
+lin jytista'a'_VK = {s = c53 "jytistää"} ;
+lin jytke_NK = {s = d48 "jytke"} ;
+lin jytkytta'a'_VK = {s = c53A "jytkyttää"} ;
+lin jytkytys_NK = {s = d39 "jytkytys"} ;
+lin jytka'hta'a'_VK = {s = c53A "jytkähtää"} ;
+lin jyty_NK = {s = d01A "jyty"} ;
+lin jytyytta'a'_VK = {s = c53A "jytyyttää"} ;
+lin jyta'_NK = {s = d10 "jytä"} ;
+lin jyta'a'_AdvK = {s = c99 "jytää"} ;
+lin jyvitta'a'_VK = {s = c53A "jyvittää"} ;
+lin jyvitys_NK = {s = d39 "jyvitys"} ;
+lin jyva'_NK = {s = d10 "jyvä"} ;
+lin jyva'inen_NK = {s = d38 "jyväinen"} ;
+lin jyva'jemmari_NK = {s = d06 "jyväjemmari"} ;
+lin jyva'nen_NK = {s = d38 "jyvänen"} ;
+lin jyysta'a'_VK = {s = c53 "jyystää"} ;
+lin ja'hmettyma'_NK = {s = d10 "jähmettymä"} ;
+lin ja'hmettya'_VK = {s = c52A "jähmettyä"} ;
+lin ja'hmetta'a'_VK = {s = c53A "jähmettää"} ;
+lin ja'hmeta'_VK = {s = c72 "jähmetä"} ;
+lin ja'hmeys_NK = {s = d40 "jähmeys"} ;
+lin ja'hmea'_AK = {s = d15 "jähmeä"} ;
+--+ lin ja'hmea'sti_AdvK = {s = c99 "jähmeästi"} ;
+lin ja'inen_NK = {s = d38 "jäinen"} ;
+lin ja'itse_AdvK = {s = c99 "jäitse"} ;
+lin ja'kki_NK = {s = d05A "jäkki"} ;
+lin ja'kka'ra'_NK = {s = d12 "jäkkärä"} ;
+lin ja'ka'likko'_NK = {s = d04A "jäkälikkö"} ;
+lin ja'ka'listo'_NK = {s = d01 "jäkälistö"} ;
+lin ja'ka'la'_NK = {s = d10 "jäkälä"} ;
+lin ja'ka'la'inen_NK = {s = d38 "jäkäläinen"} ;
+lin ja'ka'lo'itya'_VK = {s = c52A "jäkälöityä"} ;
+lin ja'ka'tta'a'_VK = {s = c53A "jäkättää"} ;
+lin ja'ka'tys_NK = {s = d39 "jäkätys"} ;
+lin ja'ljekka'in_AdvK = {s = c99 "jäljekkäin"} ;
+lin ja'ljelle_AdvK = {s = c99 "jäljelle"} ;
+lin ja'ljella'_AdvK = {s = c99 "jäljellä"} ;
+lin ja'ljemma'_AdvK = {s = c99 "jäljemmä"} ;
+lin ja'ljemma'ksi_AdvK = {s = c99 "jäljemmäksi"} ;
+lin ja'ljemma's_AdvK = {s = c99 "jäljemmäs"} ;
+lin ja'ljempa'na'_AdvK = {s = c99 "jäljempänä"} ;
+lin ja'ljempa'a'_AdvK = {s = c99 "jäljempää"} ;
+lin ja'ljenne_NK = {s = d48A "jäljenne"} ;
+lin ja'ljennys_NK = {s = d39 "jäljennys"} ;
+lin ja'ljenno's_NK = {s = d39 "jäljennös"} ;
+lin ja'ljentya'_VK = {s = c52A "jäljentyä"} ;
+lin ja'ljenta'mo'_NK = {s = d02 "jäljentämö"} ;
+lin ja'ljenta'a'_VK = {s = c54A "jäljentää"} ;
+lin ja'ljessa'_AdvK = {s = c99 "jäljessä"} ;
+lin ja'ljesta'_AdvK = {s = c99 "jäljestä"} ;
+lin ja'ljesta'a'_VK = {s = c53 "jäljestää"} ;
+lin ja'ljetysten_AdvK = {s = c99 "jäljetysten"} ;
+lin ja'ljeto'n_NK = {s = d34A "jäljetön"} ;
+lin ja'ljille_AdvK = {s = c99 "jäljille"} ;
+lin ja'ljilla'_AdvK = {s = c99 "jäljillä"} ;
+lin ja'ljilta'_AdvK = {s = c99 "jäljiltä"} ;
+lin ja'ljitella'_VK = {s = c67A "jäljitellä"} ;
+lin ja'ljitelma'_NK = {s = d10 "jäljitelmä"} ;
+lin ja'ljittelema'to'n_NK = {s = d34A "jäljittelemätön"} ;
+lin ja'ljittely_NK = {s = d02 "jäljittely"} ;
+lin ja'ljitta'a'_VK = {s = c53A "jäljittää"} ;
+lin ja'ljitys_NK = {s = d39 "jäljitys"} ;
+lin ja'lkeen_AdvK = {s = c99 "jälkeen"} ;
+lin ja'lkeenja'a'neisyys_NK = {s = d40 "jälkeenjääneisyys"} ;
+lin ja'lkeenja'a'nyt_NK = {s = d47 "jälkeenjäänyt"} ;
+lin ja'lkeinen_NK = {s = d38 "jälkeinen"} ;
+lin ja'lkela'inen_NK = {s = d38 "jälkeläinen"} ;
+lin ja'lki_NK = {s = d07A "jälki"} ;
+lin ja'lkija'tto'inen_NK = {s = d38 "jälkijättöinen"} ;
+lin ja'lkija'tto'isyys_NK = {s = d40 "jälkijättöisyys"} ;
+lin ja'lkika'teen_AdvK = {s = c99 "jälkikäteen"} ;
+lin ja'lkimma'inen_NK = {s = d38 "jälkimmäinen"} ;
+lin ja'lkka'ri_NK = {s = d06 "jälkkäri"} ;
+lin ja'lleen_AdvK = {s = c99 "jälleen"} ;
+lin ja'lleenna'keminen_NK = {s = d38 "jälleennäkeminen"} ;
+lin ja'lleensyntyminen_NK = {s = d38 "jälleensyntyminen"} ;
+lin ja'lsi_NK = {s = d28A "jälsi"} ;
+lin ja'meryys_NK = {s = d40 "jämeryys"} ;
+lin ja'mera'_AK = {s = d10 "jämerä"} ;
+--+ lin ja'mera'sti_AdvK = {s = c99 "jämerästi"} ;
+lin ja'mpti_AK = {s = d05 "jämpti"} ;
+--+ lin ja'mptisti_AdvK = {s = c99 "jämptisti"} ;
+lin ja'mtti_AK = {s = d05 "jämtti"} ;
+--+ lin ja'mttisti_AdvK = {s = c99 "jämttisti"} ;
+lin ja'ma'_NK = {s = d10 "jämä"} ;
+lin ja'ma'hta'a'_VK = {s = c53A "jämähtää"} ;
+lin ja'ma'kkyys_NK = {s = d40 "jämäkkyys"} ;
+lin ja'ma'kka'_NK = {s = d14A "jämäkkä"} ;
+lin ja'ma'ka'sti_AdvK = {s = c99 "jämäkästi"} ;
+lin ja'ma'ko'itya'_VK = {s = c52A "jämäköityä"} ;
+lin ja'nis_NK = {s = d39 "jänis"} ;
+lin ja'nishousu_NK = {s = d01 "jänishousu"} ;
+lin ja'nista'a'_VK = {s = c53 "jänistää"} ;
+lin ja'nka'_NK = {s = d10A "jänkä"} ;
+lin ja'nka'sirria'inen_NK = {s = d38 "jänkäsirriäinen"} ;
+lin ja'nne_NK = {s = d48A "jänne"} ;
+lin ja'nnite_NK = {s = d48A "jännite"} ;
+lin ja'nnitteeto'n_NK = {s = d34A "jännitteetön"} ;
+lin ja'nnitteinen_NK = {s = d38 "jännitteinen"} ;
+lin ja'nnitteisyys_NK = {s = d40 "jännitteisyys"} ;
+lin ja'nnittyneisyys_NK = {s = d40 "jännittyneisyys"} ;
+lin ja'nnittya'_VK = {s = c52A "jännittyä"} ;
+lin ja'nnitta'ja'_NK = {s = d10 "jännittäjä"} ;
+lin ja'nnitta'vyys_NK = {s = d40 "jännittävyys"} ;
+lin ja'nnitta'va'_AK = {s = d10 "jännittävä"} ;
+--+ lin ja'nnitta'va'sti_AdvK = {s = c99 "jännittävästi"} ;
+lin ja'nnitta'a'_VK = {s = c53A "jännittää"} ;
+lin ja'nnitys_NK = {s = d39 "jännitys"} ;
+lin ja'nna'_AK = {s = d10 "jännä"} ;
+lin ja'nna'ri_NK = {s = d06 "jännäri"} ;
+--+ lin ja'nna'sti_AdvK = {s = c99 "jännästi"} ;
+lin ja'nna'ta'_VK = {s = c73 "jännätä"} ;
+lin ja'nska'_AK = {s = d10 "jänskä"} ;
+--+ lin ja'nska'sti_AdvK = {s = c99 "jänskästi"} ;
+lin ja'nteika's_NK = {s = d41A "jänteikäs"} ;
+lin ja'nteinen_NK = {s = d38 "jänteinen"} ;
+lin ja'nteisyys_NK = {s = d40 "jänteisyys"} ;
+lin ja'ntere_NK = {s = d48 "jäntere"} ;
+lin ja'ntevyys_NK = {s = d40 "jäntevyys"} ;
+lin ja'nteva'_AK = {s = d10 "jäntevä"} ;
+--+ lin ja'nteva'sti_AdvK = {s = c99 "jäntevästi"} ;
+lin ja'ntevo'ida'_VK = {s = c62 "jäntevöidä"} ;
+lin ja'ntevo'itta'a'_VK = {s = c53A "jäntevöittää"} ;
+lin ja'ntevo'itya'_VK = {s = c52A "jäntevöityä"} ;
+lin ja'nteys_NK = {s = d40 "jänteys"} ;
+lin ja'nttera'_NK = {s = d10 "jäntterä"} ;
+lin ja'no'_NK = {s = d01 "jänö"} ;
+lin ja'no'nen_NK = {s = d38 "jänönen"} ;
+lin ja'reys_NK = {s = d40 "järeys"} ;
+lin ja'reytya'_VK = {s = c52A "järeytyä"} ;
+lin ja'rea'_AK = {s = d15 "järeä"} ;
+--+ lin ja'rea'sti_AdvK = {s = c99 "järeästi"} ;
+lin ja'rin_AdvK = {s = c99 "järin"} ;
+lin ja'rina'_NK = {s = d12 "järinä"} ;
+lin ja'ristys_NK = {s = d39 "järistys"} ;
+lin ja'rista'_VK = {s = c66 "järistä"} ;
+lin ja'risytta'a'_VK = {s = c53A "järisyttää"} ;
+lin ja'rjellinen_AK = {s = d38 "järjellinen"} ;
+--+ lin ja'rjellisesti_AdvK = {s = c99 "järjellisesti"} ;
+lin ja'rjellisyys_NK = {s = d40 "järjellisyys"} ;
+lin ja'rjesteilla'_AdvK = {s = c99 "järjesteillä"} ;
+lin ja'rjestella'_VK = {s = c67 "järjestellä"} ;
+lin ja'rjestelma'_NK = {s = d10 "järjestelmä"} ;
+lin ja'rjestelma'llinen_AK = {s = d38 "järjestelmällinen"} ;
+--+ lin ja'rjestelma'llisesti_AdvK = {s = c99 "järjestelmällisesti"} ;
+lin ja'rjestelma'llista'a'_VK = {s = c53 "järjestelmällistää"} ;
+lin ja'rjestelma'llisyys_NK = {s = d40 "järjestelmällisyys"} ;
+lin ja'rjestely_NK = {s = d02 "järjestely"} ;
+lin ja'rjestyma'to'n_NK = {s = d34A "järjestymätön"} ;
+lin ja'rjestys_NK = {s = d39 "järjestys"} ;
+lin ja'rjestya'_VK = {s = c52 "järjestyä"} ;
+lin ja'rjesta'ja'_NK = {s = d10 "järjestäjä"} ;
+lin ja'rjesta'ytya'_VK = {s = c52A "järjestäytyä"} ;
+lin ja'rjesta'a'_VK = {s = c53 "järjestää"} ;
+lin ja'rjesta'a'n_AdvK = {s = c99 "järjestään"} ;
+lin ja'rjesto'_NK = {s = d02 "järjestö"} ;
+lin ja'rjesto'llinen_NK = {s = d38 "järjestöllinen"} ;
+lin ja'rjetto'myys_NK = {s = d40 "järjettömyys"} ;
+lin ja'rjetto'ma'sti_AdvK = {s = c99 "järjettömästi"} ;
+lin ja'rjeto'n_NK = {s = d34A "järjetön"} ;
+lin ja'rkeilla'_VK = {s = c67 "järkeillä"} ;
+lin ja'rkeily_NK = {s = d02 "järkeily"} ;
+lin ja'rkeistya'_VK = {s = c52 "järkeistyä"} ;
+lin ja'rkeista'a'_VK = {s = c53 "järkeistää"} ;
+lin ja'rkevyys_NK = {s = d40 "järkevyys"} ;
+lin ja'rkeva'_AK = {s = d10 "järkevä"} ;
+--+ lin ja'rkeva'sti_AdvK = {s = c99 "järkevästi"} ;
+lin ja'rkevo'itya'_VK = {s = c52A "järkevöityä"} ;
+lin ja'rki_NK = {s = d07A "järki"} ;
+lin ja'rkiinnytta'a'_VK = {s = c53A "järkiinnyttää"} ;
+lin ja'rkiintya'_VK = {s = c52A "järkiintyä"} ;
+lin ja'rkinen_NK = {s = d38 "järkinen"} ;
+--+ lin ja'rkipera'isesti_AdvK = {s = c99 "järkiperäisesti"} ;
+lin ja'rkipera'istya'_VK = {s = c52 "järkiperäistyä"} ;
+lin ja'rkipera'ista'a'_VK = {s = c53 "järkiperäistää"} ;
+lin ja'rkia'a'n_AdvK = {s = c99 "järkiään"} ;
+lin ja'rkky_NK = {s = d01A "järkky"} ;
+lin ja'rkkyma'tto'myys_NK = {s = d40 "järkkymättömyys"} ;
+lin ja'rkkyma'tto'ma'sti_AdvK = {s = c99 "järkkymättömästi"} ;
+lin ja'rkkyma'to'n_NK = {s = d34A "järkkymätön"} ;
+lin ja'rkkya'_VK = {s = c52A "järkkyä"} ;
+lin ja'rkyttya'_VK = {s = c52A "järkyttyä"} ;
+lin ja'rkytta'vyys_NK = {s = d40 "järkyttävyys"} ;
+lin ja'rkytta'va'_AK = {s = d10 "järkyttävä"} ;
+--+ lin ja'rkytta'va'sti_AdvK = {s = c99 "järkyttävästi"} ;
+lin ja'rkytta'a'_VK = {s = c53A "järkyttää"} ;
+lin ja'rkytys_NK = {s = d39 "järkytys"} ;
+lin ja'rka'hta'ma'tto'myys_NK = {s = d40 "järkähtämättömyys"} ;
+lin ja'rka'hta'ma'tto'ma'sti_AdvK = {s = c99 "järkähtämättömästi"} ;
+lin ja'rka'hta'ma'to'n_NK = {s = d34A "järkähtämätön"} ;
+lin ja'rka'hta'a'_VK = {s = c53A "järkähtää"} ;
+lin ja'rka'le_NK = {s = d48 "järkäle"} ;
+lin ja'rka'ta'_VK = {s = c73A "järkätä"} ;
+lin ja'rsia'_VK = {s = c61 "järsiä"} ;
+lin ja'rvi_NK = {s = d07 "järvi"} ;
+lin ja'rvinen_NK = {s = d38 "järvinen"} ;
+lin ja'ra'hdella'_VK = {s = c67A "järähdellä"} ;
+lin ja'ra'htely_NK = {s = d02 "järähtely"} ;
+lin ja'ra'hta'a'_VK = {s = c53A "järähtää"} ;
+lin ja'ra'ytta'a'_VK = {s = c53A "järäyttää"} ;
+lin ja'sen_NK = {s = d32 "jäsen"} ;
+lin ja'seninen_NK = {s = d38 "jäseninen"} ;
+lin ja'senisto'_NK = {s = d01 "jäsenistö"} ;
+lin ja'sennella'_VK = {s = c67A "jäsennellä"} ;
+lin ja'sennys_NK = {s = d39 "jäsennys"} ;
+lin ja'sentely_NK = {s = d02 "jäsentely"} ;
+lin ja'sentya'_VK = {s = c52A "jäsentyä"} ;
+lin ja'senta'a'_VK = {s = c54A "jäsentää"} ;
+lin ja'senyys_NK = {s = d40 "jäsenyys"} ;
+lin ja'ssikka'_NK = {s = d14A "jässikkä"} ;
+lin ja'te_NK = {s = d48A "jäte"} ;
+lin ja'tka'_NK = {s = d10 "jätkä"} ;
+lin ja'tski_NK = {s = d05 "jätski"} ;
+lin ja'tti_NK = {s = d05A "jätti"} ;
+lin ja'ttila'inen_NK = {s = d38 "jättiläinen"} ;
+lin ja'ttila'isma'inen_NK = {s = d38 "jättiläismäinen"} ;
+lin ja'ttima'inen_NK = {s = d38 "jättimäinen"} ;
+lin ja'tta'ytya'_VK = {s = c52A "jättäytyä"} ;
+lin ja'tta'a'_VK = {s = c53A "jättää"} ;
+lin ja'tto'_NK = {s = d01A "jättö"} ;
+lin ja'tto'aika_NK = {s = d09A "jättöaika"} ;
+lin ja'ta'tta'a'_VK = {s = c53A "jätättää"} ;
+lin ja'to's_NK = {s = d39 "jätös"} ;
+lin ja'yhyys_NK = {s = d40 "jäyhyys"} ;
+lin ja'yha'_AK = {s = d10 "jäyhä"} ;
+--+ lin ja'yha'sti_AdvK = {s = c99 "jäyhästi"} ;
+lin ja'ykentya'_VK = {s = c52A "jäykentyä"} ;
+lin ja'ykenta'a'_VK = {s = c54A "jäykentää"} ;
+lin ja'yketa'_VK = {s = c72A "jäyketä"} ;
+lin ja'ykiste_NK = {s = d48 "jäykiste"} ;
+lin ja'ykistella'_VK = {s = c67 "jäykistellä"} ;
+lin ja'ykistely_NK = {s = d02 "jäykistely"} ;
+lin ja'ykistyma'_NK = {s = d10 "jäykistymä"} ;
+lin ja'ykistys_NK = {s = d39 "jäykistys"} ;
+lin ja'ykistya'_VK = {s = c52 "jäykistyä"} ;
+lin ja'ykista'a'_VK = {s = c53 "jäykistää"} ;
+lin ja'ykkyys_NK = {s = d40 "jäykkyys"} ;
+lin ja'ykka'_NK = {s = d10A "jäykkä"} ;
+lin ja'yka'sti_AdvK = {s = c99 "jäykästi"} ;
+lin ja'yna'_NK = {s = d10 "jäynä"} ;
+lin ja'ysta'a'_VK = {s = c53 "jäystää"} ;
+lin ja'yta'a'_VK = {s = c53A "jäytää"} ;
+lin ja'a'_NK = {s = d18 "jää"} ;
+lin ja'a'aika_NK = {s = d09A "jääaika"} ;
+lin ja'a'dyke_NK = {s = d48A "jäädyke"} ;
+lin ja'a'dytta'mo'_NK = {s = d02 "jäädyttämö"} ;
+lin ja'a'dytta'a'_VK = {s = c53A "jäädyttää"} ;
+lin ja'a'dytys_NK = {s = d39 "jäädytys"} ;
+lin ja'a'da'_VK = {s = c63 "jäädä"} ;
+lin ja'a'hdyke_NK = {s = d48A "jäähdyke"} ;
+lin ja'a'hdyte_NK = {s = d48A "jäähdyte"} ;
+lin ja'a'hdytella'_VK = {s = c67A "jäähdytellä"} ;
+lin ja'a'hdytin_NK = {s = d33A "jäähdytin"} ;
+lin ja'a'hdytteinen_NK = {s = d38 "jäähdytteinen"} ;
+lin ja'a'hdyttely_NK = {s = d02 "jäähdyttely"} ;
+lin ja'a'hdytta'ja'_NK = {s = d10 "jäähdyttäjä"} ;
+lin ja'a'hdytta'mo'_NK = {s = d02 "jäähdyttämö"} ;
+lin ja'a'hdytta'a'_VK = {s = c53A "jäähdyttää"} ;
+lin ja'a'hdytys_NK = {s = d39 "jäähdytys"} ;
+lin ja'a'htya'_VK = {s = c52A "jäähtyä"} ;
+lin ja'a'hy_NK = {s = d01 "jäähy"} ;
+--? lin ja'a'hyva'iset_NK = {s = d38 "jäähyväiset"} ;
+lin ja'a'kiekkoilu_NK = {s = d02 "jääkiekkoilu"} ;
+lin ja'a'ka'ri_NK = {s = d06 "jääkäri"} ;
+lin ja'a'misto'_NK = {s = d02 "jäämistö"} ;
+lin ja'a'ma'_NK = {s = d10 "jäämä"} ;
+lin ja'a'nne_NK = {s = d48A "jäänne"} ;
+lin ja'a'nno'ksetto'ma'sti_AdvK = {s = c99 "jäännöksettömästi"} ;
+lin ja'a'nno'kseto'n_NK = {s = d34A "jäännöksetön"} ;
+lin ja'a'nno's_NK = {s = d39 "jäännös"} ;
+lin ja'a'nti_NK = {s = d05A "jäänti"} ;
+lin ja'a'ra'_NK = {s = d10 "jäärä"} ;
+--+ lin ja'a'ra'pa'isesti_AdvK = {s = c99 "jääräpäisesti"} ;
+lin ja'a'ra'pa'isyys_NK = {s = d40 "jääräpäisyys"} ;
+lin ja'a'telo'_NK = {s = d02 "jäätelö"} ;
+lin ja'a'tikko'_NK = {s = d04A "jäätikkö"} ;
+lin ja'a'tikko'inen_NK = {s = d38 "jäätikköinen"} ;
+lin ja'a'tiko'itya'_VK = {s = c52A "jäätiköityä"} ;
+lin ja'a'tyma'_NK = {s = d10 "jäätymä"} ;
+lin ja'a'tya'_VK = {s = c52A "jäätyä"} ;
+lin ja'a'ta'va'_AK = {s = d10 "jäätävä"} ;
+--+ lin ja'a'ta'va'sti_AdvK = {s = c99 "jäätävästi"} ;
+lin ja'a'ta'a'_VK = {s = c53A "jäätää"} ;
+lin ja'a'vahvistettu_NK = {s = d01A "jäävahvistettu"} ;
+lin ja'a'vi_NK = {s = d05 "jäävi"} ;
+lin ja'a'vito'n_NK = {s = d34A "jäävitön"} ;
+lin ja'a'viys_NK = {s = d40 "jääviys"} ;
+lin ja'a'va'ta'_VK = {s = c73 "jäävätä"} ;
+lin jo'ko'tta'a'_VK = {s = c53A "jököttää"} ;
+lin jo'rrikka'_NK = {s = d14A "jörrikkä"} ;
+lin jo'ro'_NK = {s = d01 "jörö"} ;
+lin jo'ro'tta'a'_VK = {s = c53A "jöröttää"} ;
+lin jo'ssikka'_NK = {s = d14A "jössikkä"} ;
+lin jo'tikka'_NK = {s = d14A "jötikkä"} ;
+lin jo'o'_NK = {s = d18 "jöö"} ;
+lin kaadanta_NK = {s = d09A "kaadanta"} ;
+lin kaadattaa_VK = {s = c53A "kaadattaa"} ;
+lin kaade_NK = {s = d48A "kaade"} ;
+lin kaadella_VK = {s = c67A "kaadella"} ;
+lin kaaderi_NK = {s = d06 "kaaderi"} ;
+lin kaadin_NK = {s = d33A "kaadin"} ;
+lin kaahaaja_NK = {s = d10 "kaahaaja"} ;
+lin kaahailija_NK = {s = d12 "kaahailija"} ;
+lin kaahailla_VK = {s = c67 "kaahailla"} ;
+lin kaahailu_NK = {s = d02 "kaahailu"} ;
+lin kaahari_NK = {s = d06 "kaahari"} ;
+lin kaahata_VK = {s = c73 "kaahata"} ;
+lin kaahaus_NK = {s = d39 "kaahaus"} ;
+lin kaakao_NK = {s = d03 "kaakao"} ;
+lin kaakaovoi_NK = {s = d18 "kaakaovoi"} ;
+lin kaakattaa_VK = {s = c53A "kaakattaa"} ;
+lin kaakatus_NK = {s = d39 "kaakatus"} ;
+lin kaakeli_NK = {s = d06 "kaakeli"} ;
+lin kaakeloida_VK = {s = c62 "kaakeloida"} ;
+lin kaakelointi_NK = {s = d05A "kaakelointi"} ;
+lin kaakertaa_VK = {s = c54A "kaakertaa"} ;
+lin kaakki_NK = {s = d05A "kaakki"} ;
+lin kaakko_NK = {s = d01A "kaakko"} ;
+lin kaakkoinen_NK = {s = d38 "kaakkoinen"} ;
+lin kaakkoisraja_NK = {s = d09 "kaakkoisraja"} ;
+lin kaakku_NK = {s = d01A "kaakku"} ;
+lin kaakkuri_NK = {s = d06 "kaakkuri"} ;
+lin kaali_NK = {s = d05 "kaali"} ;
+lin kaalirapi_NK = {s = d05 "kaalirapi"} ;
+lin kaamea_AK = {s = d15 "kaamea"} ;
+--+ lin kaameasti_AdvK = {s = c99 "kaameasti"} ;
+lin kaameus_NK = {s = d40 "kaameus"} ;
+lin kaamos_NK = {s = d39 "kaamos"} ;
+lin kaamosaika_NK = {s = d09A "kaamosaika"} ;
+lin kaanon_NK = {s = d06 "kaanon"} ;
+lin kaaoksellinen_NK = {s = d38 "kaaoksellinen"} ;
+lin kaaos_NK = {s = d39 "kaaos"} ;
+lin kaapaista_VK = {s = c66 "kaapaista"} ;
+lin kaapata_VK = {s = c73A "kaapata"} ;
+lin kaapeli_NK = {s = d06 "kaapeli"} ;
+lin kaapeloida_VK = {s = c62 "kaapeloida"} ;
+lin kaapia_VK = {s = c61A "kaapia"} ;
+lin kaapisto_NK = {s = d02 "kaapisto"} ;
+lin kaappaaja_NK = {s = d10 "kaappaaja"} ;
+lin kaappari_NK = {s = d06 "kaappari"} ;
+lin kaappaus_NK = {s = d39 "kaappaus"} ;
+lin kaappi_NK = {s = d05A "kaappi"} ;
+lin kaapu_NK = {s = d01A "kaapu"} ;
+lin kaaputtaa_VK = {s = c53A "kaaputtaa"} ;
+lin kaaputus_NK = {s = d39 "kaaputus"} ;
+lin kaara_NK = {s = d09 "kaara"} ;
+lin kaareke_NK = {s = d48A "kaareke"} ;
+lin kaareutua_VK = {s = c52A "kaareutua"} ;
+lin kaareva_AK = {s = d10 "kaareva"} ;
+--+ lin kaarevasti_AdvK = {s = c99 "kaarevasti"} ;
+lin kaarevuus_NK = {s = d40 "kaarevuus"} ;
+lin kaari_1_NK = {s = d26 "kaari"} ;
+lin kaari_2_NK = {s = d26 "kaari"} ;
+lin kaarinen_NK = {s = d38 "kaarinen"} ;
+lin kaarna_NK = {s = d09 "kaarna"} ;
+lin kaarne_NK = {s = d48 "kaarne"} ;
+lin kaarnikka_NK = {s = d14A "kaarnikka"} ;
+lin kaarnoittua_VK = {s = c52A "kaarnoittua"} ;
+lin kaarre_NK = {s = d48A "kaarre"} ;
+lin kaarrella_VK = {s = c67A "kaarrella"} ;
+lin kaarroke_NK = {s = d48A "kaarroke"} ;
+lin kaarros_NK = {s = d39 "kaarros"} ;
+lin kaartaa_VK = {s = c57A "kaartaa"} ;
+lin kaarteinen_NK = {s = d38 "kaarteinen"} ;
+lin kaartelu_NK = {s = d02 "kaartelu"} ;
+lin kaarti_NK = {s = d05 "kaarti"} ;
+lin kaarto_NK = {s = d01A "kaarto"} ;
+lin kaartua_VK = {s = c52A "kaartua"} ;
+lin kaartuma_NK = {s = d10 "kaartuma"} ;
+lin kaaso_NK = {s = d01 "kaaso"} ;
+lin kaasu_NK = {s = d01 "kaasu"} ;
+lin kaasus_NK = {s = d39 "kaasus"} ;
+lin kaasute_NK = {s = d48A "kaasute"} ;
+lin kaasutella_VK = {s = c67A "kaasutella"} ;
+lin kaasutin_NK = {s = d33A "kaasutin"} ;
+lin kaasuttaa_VK = {s = c53A "kaasuttaa"} ;
+lin kaasuttua_VK = {s = c52A "kaasuttua"} ;
+lin kaasutus_NK = {s = d39 "kaasutus"} ;
+lin kaasuuntua_VK = {s = c52A "kaasuuntua"} ;
+lin kaataa_VK = {s = c57A "kaataa"} ;
+lin kaataja_NK = {s = d10 "kaataja"} ;
+lin kaateinen_NK = {s = d38 "kaateinen"} ;
+lin kaato_NK = {s = d01A "kaato"} ;
+lin kaatua_VK = {s = c52A "kaatua"} ;
+lin kaava_NK = {s = d09 "kaava"} ;
+lin kaavaaja_NK = {s = d10 "kaavaaja"} ;
+lin kaavailla_VK = {s = c67 "kaavailla"} ;
+lin kaavailu_NK = {s = d02 "kaavailu"} ;
+lin kaavain_NK = {s = d33 "kaavain"} ;
+lin kaavake_NK = {s = d48A "kaavake"} ;
+--+ lin kaavamaisesti_AdvK = {s = c99 "kaavamaisesti"} ;
+lin kaavamaistaa_VK = {s = c53 "kaavamaistaa"} ;
+lin kaavamaisuus_NK = {s = d40 "kaavamaisuus"} ;
+lin kaavata_VK = {s = c73 "kaavata"} ;
+lin kaaviloida_VK = {s = c62 "kaaviloida"} ;
+lin kaavin_NK = {s = d33A "kaavin"} ;
+lin kaavinta_NK = {s = d09A "kaavinta"} ;
+lin kaavio_NK = {s = d03 "kaavio"} ;
+lin kaavioida_VK = {s = c62 "kaavioida"} ;
+lin kaaviointi_NK = {s = d05A "kaaviointi"} ;
+lin kaavoittaa_VK = {s = c53A "kaavoittaa"} ;
+lin kaavoittua_VK = {s = c52A "kaavoittua"} ;
+lin kaavoittuma_NK = {s = d10 "kaavoittuma"} ;
+lin kaavoittuneisuus_NK = {s = d40 "kaavoittuneisuus"} ;
+lin kaavoitus_NK = {s = d39 "kaavoitus"} ;
+lin kabaree_NK = {s = d20 "kabaree"} ;
+lin kabinetti_NK = {s = d05A "kabinetti"} ;
+lin kabotaasi_NK = {s = d05 "kabotaasi"} ;
+lin kade_NK = {s = d48A "kade"} ;
+lin kadehtia_VK = {s = c61A "kadehtia"} ;
+lin kadehtija_NK = {s = d12 "kadehtija"} ;
+lin kadenssi_NK = {s = d05 "kadenssi"} ;
+lin kadetti_NK = {s = d05A "kadetti"} ;
+lin kadmium_NK = {s = d05 "kadmium"} ;
+lin kadoksiin_AdvK = {s = c99 "kadoksiin"} ;
+lin kadoksissa_AdvK = {s = c99 "kadoksissa"} ;
+lin kadota_VK = {s = c74A "kadota"} ;
+lin kadottaa_VK = {s = c53A "kadottaa"} ;
+lin kadotus_NK = {s = d39 "kadotus"} ;
+lin kaduttaa_VK = {s = c53A "kaduttaa"} ;
+lin kafeteria_NK = {s = d12 "kafeteria"} ;
+lin kaftaani_NK = {s = d06 "kaftaani"} ;
+lin kahahdus_NK = {s = d39 "kahahdus"} ;
+lin kahahtaa_VK = {s = c53A "kahahtaa"} ;
+lin kahakka_NK = {s = d14A "kahakka"} ;
+lin kahakoida_VK = {s = c62 "kahakoida"} ;
+lin kahakointi_NK = {s = d05A "kahakointi"} ;
+lin kahareisin_AdvK = {s = c99 "kahareisin"} ;
+lin kahdeksainen_NK = {s = d38 "kahdeksainen"} ;
+lin kahdeksan_NK = {s = d10 "kahdeksan"} ;
+lin kahdeksannes_NK = {s = d39 "kahdeksannes"} ;
+lin kahdeksas_NK = {s = d45 "kahdeksas"} ;
+lin kahdeksikko_NK = {s = d04A "kahdeksikko"} ;
+lin kahdeksisen_AdvK = {s = c99 "kahdeksisen"} ;
+lin kahdeksisenkymmenta'_AdvK = {s = c99 "kahdeksisenkymmentä"} ;
+lin kahden_AdvK = {s = c99 "kahden"} ;
+lin kahdenistuttava_NK = {s = d10 "kahdenistuttava"} ;
+lin kahden_kesken_AdvK = {s = c99 "kahden kesken"} ;
+--+ lin kahdenkeskisesti_AdvK = {s = c99 "kahdenkeskisesti"} ;
+lin kahdenmaattava_NK = {s = d10 "kahdenmaattava"} ;
+lin kahdennus_NK = {s = d39 "kahdennus"} ;
+lin kahdentaa_VK = {s = c54A "kahdentaa"} ;
+lin kahdentua_VK = {s = c52A "kahdentua"} ;
+lin kahdes_NK = {s = d45 "kahdes"} ;
+lin kahdestaan_AdvK = {s = c99 "kahdestaan"} ;
+lin kahdesti_AdvK = {s = c99 "kahdesti"} ;
+lin kaheli_NK = {s = d06 "kaheli"} ;
+lin kahina_NK = {s = d13 "kahina"} ;
+lin kahinoida_VK = {s = c62 "kahinoida"} ;
+lin kahinointi_NK = {s = d05A "kahinointi"} ;
+lin kahista_VK = {s = c66 "kahista"} ;
+lin kahisuttaa_VK = {s = c53A "kahisuttaa"} ;
+lin kahjo_NK = {s = d01 "kahjo"} ;
+lin kahju_NK = {s = d01 "kahju"} ;
+lin kahlaaja_NK = {s = d10 "kahlaaja"} ;
+lin kahlaamo_NK = {s = d02 "kahlaamo"} ;
+lin kahlata_VK = {s = c73 "kahlata"} ;
+lin kahlaus_NK = {s = d39 "kahlaus"} ;
+lin kahle_NK = {s = d48 "kahle"} ;
+lin kahlehtia_VK = {s = c61A "kahlehtia"} ;
+lin kahlehtimaton_NK = {s = d34A "kahlehtimaton"} ;
+lin kahlita_VK = {s = c69 "kahlita"} ;
+lin kahlitsematon_NK = {s = d34A "kahlitsematon"} ;
+lin kahluu_NK = {s = d17 "kahluu"} ;
+lin kahmaista_VK = {s = c66 "kahmaista"} ;
+lin kahmaisu_NK = {s = d02 "kahmaisu"} ;
+lin kahmalo_NK = {s = d02 "kahmalo"} ;
+lin kahmalokaupalla_AdvK = {s = c99 "kahmalokaupalla"} ;
+lin kahmalollinen_NK = {s = d38 "kahmalollinen"} ;
+lin kahmari_NK = {s = d06 "kahmari"} ;
+lin kahmia_VK = {s = c61 "kahmia"} ;
+lin kahnaus_NK = {s = d39 "kahnaus"} ;
+lin kahta_AdvK = {s = c99 "kahta"} ;
+lin kahtaalla_AdvK = {s = c99 "kahtaalla"} ;
+lin kahtaalle_AdvK = {s = c99 "kahtaalle"} ;
+lin kahtaalta_AdvK = {s = c99 "kahtaalta"} ;
+lin kahtaanne_AdvK = {s = c99 "kahtaanne"} ;
+lin kahtaistaittuminen_NK = {s = d38 "kahtaistaittuminen"} ;
+lin kahtalaisuus_NK = {s = d40 "kahtalaisuus"} ;
+lin kahtapuolin_AdvK = {s = c99 "kahtapuolin"} ;
+lin kahtia_AdvK = {s = c99 "kahtia"} ;
+lin kahuta'hka'isyys_NK = {s = d40 "kahutähkäisyys"} ;
+lin kahva_NK = {s = d09 "kahva"} ;
+lin kahveli_NK = {s = d06 "kahveli"} ;
+lin kahvi_NK = {s = d05 "kahvi"} ;
+lin kahviaika_NK = {s = d09A "kahviaika"} ;
+lin kahvila_NK = {s = d12 "kahvila"} ;
+lin kahvinjuoja_NK = {s = d10 "kahvinjuoja"} ;
+lin kahvinporo_NK = {s = d01 "kahvinporo"} ;
+lin kahvinselvike_NK = {s = d48A "kahvinselvike"} ;
+lin kahvio_NK = {s = d03 "kahvio"} ;
+lin kahvitella_VK = {s = c67A "kahvitella"} ;
+lin kahvittaa_VK = {s = c53A "kahvittaa"} ;
+lin kahvittelu_NK = {s = d02 "kahvittelu"} ;
+lin kahvitus_NK = {s = d39 "kahvitus"} ;
+lin kahvituttaa_VK = {s = c53A "kahvituttaa"} ;
+lin kai_AdvK = {s = c99 "kai"} ;
+lin kaide_NK = {s = d48A "kaide"} ;
+lin kaihdella_VK = {s = c67A "kaihdella"} ;
+lin kaihdin_NK = {s = d33A "kaihdin"} ;
+lin kaiherrus_NK = {s = d39 "kaiherrus"} ;
+lin kaihertaa_VK = {s = c54A "kaihertaa"} ;
+lin kaihi_NK = {s = d05 "kaihi"} ;
+lin kaiho_NK = {s = d01 "kaiho"} ;
+lin kaihoisa_AK = {s = d10 "kaihoisa"} ;
+--+ lin kaihoisasti_AdvK = {s = c99 "kaihoisasti"} ;
+lin kaihota_VK = {s = c74 "kaihota"} ;
+lin kaihtaa_VK = {s = c56A "kaihtaa"} ;
+lin kaikaa_VK = {s = c78 "kaikaa"} ;
+lin kaiken_kaikkiaan_AdvK = {s = c99 "kaiken kaikkiaan"} ;
+lin kaikenlainen_NK = {s = d38 "kaikenlainen"} ;
+lin kaikenmoinen_NK = {s = d38 "kaikenmoinen"} ;
+lin kaiketi_AdvK = {s = c99 "kaiketi"} ;
+lin kaikin_AdvK = {s = c99 "kaikin"} ;
+lin kaikista_AdvK = {s = c99 "kaikista"} ;
+lin kaikitenkin_AdvK = {s = c99 "kaikitenkin"} ;
+lin kaikkein_AdvK = {s = c99 "kaikkein"} ;
+lin kaikkeus_NK = {s = d40 "kaikkeus"} ;
+lin kaikki_NK = {s = d07A "kaikki"} ;
+lin kaikkiaan_AdvK = {s = c99 "kaikkiaan"} ;
+lin kaikkialla_AdvK = {s = c99 "kaikkialla"} ;
+lin kaikkialle_AdvK = {s = c99 "kaikkialle"} ;
+lin kaikkialta_AdvK = {s = c99 "kaikkialta"} ;
+lin kaikkianne_AdvK = {s = c99 "kaikkianne"} ;
+lin kaikkinieleva'_NK = {s = d10 "kaikkinielevä"} ;
+lin kaikkivoipuus_NK = {s = d40 "kaikkivoipuus"} ;
+lin kaikota_VK = {s = c74A "kaikota"} ;
+lin kaiku_NK = {s = d01A "kaiku"} ;
+lin kaikua_VK = {s = c52A "kaikua"} ;
+lin kaikuisa_NK = {s = d10 "kaikuisa"} ;
+lin kaikuisuus_NK = {s = d40 "kaikuisuus"} ;
+--+ lin kaikuvasti_AdvK = {s = c99 "kaikuvasti"} ;
+lin kaikuvuus_NK = {s = d40 "kaikuvuus"} ;
+lin kailottaa_VK = {s = c53A "kailottaa"} ;
+lin kailotus_NK = {s = d39 "kailotus"} ;
+lin kaima_NK = {s = d09 "kaima"} ;
+lin kaimaani_NK = {s = d05 "kaimaani"} ;
+--? lin kaimakset_NK = {s = d39 "kaimakset"} ;
+lin kainalo_NK = {s = d02 "kainalo"} ;
+lin kainaloinen_NK = {s = d38 "kainaloinen"} ;
+lin kaino_AK = {s = d01 "kaino"} ;
+lin kainostelematon_NK = {s = d34A "kainostelematon"} ;
+lin kainostella_VK = {s = c67 "kainostella"} ;
+--+ lin kainosti_AdvK = {s = c99 "kainosti"} ;
+lin kainostuttaa_VK = {s = c53A "kainostuttaa"} ;
+lin kainous_NK = {s = d40 "kainous"} ;
+lin kainulainen_NK = {s = d38 "kainulainen"} ;
+lin kainuulainen_NK = {s = d38 "kainuulainen"} ;
+lin kaipailla_VK = {s = c67 "kaipailla"} ;
+lin kaipaus_NK = {s = d39 "kaipaus"} ;
+lin kaira_1_NK = {s = d09 "kaira"} ;
+lin kaira_2_NK = {s = d09 "kaira"} ;
+lin kairata_VK = {s = c73 "kairata"} ;
+lin kairaus_NK = {s = d39 "kairaus"} ;
+lin kaisla_NK = {s = d09 "kaisla"} ;
+lin kaislikko_NK = {s = d04A "kaislikko"} ;
+lin kaislikkoinen_NK = {s = d38 "kaislikkoinen"} ;
+lin kaislisto_NK = {s = d02 "kaislisto"} ;
+lin kaista_NK = {s = d09 "kaista"} ;
+lin kaistainen_NK = {s = d38 "kaistainen"} ;
+lin kaistale_NK = {s = d48 "kaistale"} ;
+lin kait_AdvK = {s = c99 "kait"} ;
+lin kaita_1_NK = {s = d09A "kaita"} ;
+lin kaita_2_VK = {s = c69 "kaita"} ;
+lin kaitainen_NK = {s = d38 "kaitainen"} ;
+lin kaitsea_VK = {s = c58 "kaitsea"} ;
+lin kaitselmus_NK = {s = d39 "kaitselmus"} ;
+lin kaiunta_NK = {s = d09A "kaiunta"} ;
+lin kaiutella_VK = {s = c67A "kaiutella"} ;
+lin kaiutin_NK = {s = d33A "kaiutin"} ;
+lin kaiuton_NK = {s = d34A "kaiuton"} ;
+lin kaiuttaa_VK = {s = c53A "kaiuttaa"} ;
+lin kaivaa_VK = {s = c56 "kaivaa"} ;
+lin kaivannainen_NK = {s = d38 "kaivannainen"} ;
+lin kaivanto_NK = {s = d01A "kaivanto"} ;
+lin kaivata_VK = {s = c73A "kaivata"} ;
+lin kaivattaa_VK = {s = c53A "kaivattaa"} ;
+lin kaivaus_NK = {s = d39 "kaivaus"} ;
+lin kaivauttaa_VK = {s = c53A "kaivauttaa"} ;
+lin kaivautua_VK = {s = c52A "kaivautua"} ;
+lin kaivella_VK = {s = c67 "kaivella"} ;
+lin kaiverre_NK = {s = d48A "kaiverre"} ;
+lin kaiverrin_NK = {s = d33A "kaiverrin"} ;
+lin kaiverros_NK = {s = d39 "kaiverros"} ;
+lin kaiverrus_NK = {s = d39 "kaiverrus"} ;
+lin kaiverruttaa_VK = {s = c53A "kaiverruttaa"} ;
+lin kaivertaa_VK = {s = c54A "kaivertaa"} ;
+lin kaivertaja_NK = {s = d10 "kaivertaja"} ;
+lin kaivin_NK = {s = d33 "kaivin"} ;
+lin kaivo_NK = {s = d01 "kaivo"} ;
+lin kaivos_NK = {s = d39 "kaivos"} ;
+lin kaivu_NK = {s = d01 "kaivu"} ;
+lin kaivuri_NK = {s = d06 "kaivuri"} ;
+lin kajaali_NK = {s = d05 "kajaali"} ;
+lin kajahdella_VK = {s = c67A "kajahdella"} ;
+lin kajahdus_NK = {s = d39 "kajahdus"} ;
+lin kajahduttaa_VK = {s = c53A "kajahduttaa"} ;
+lin kajahtaa_VK = {s = c53A "kajahtaa"} ;
+lin kajahtelu_NK = {s = d02 "kajahtelu"} ;
+lin kajakki_NK = {s = d05A "kajakki"} ;
+lin kajal_NK = {s = d05 "kajal"} ;
+lin kajastaa_VK = {s = c53 "kajastaa"} ;
+lin kajastella_VK = {s = c67 "kajastella"} ;
+lin kajastua_VK = {s = c52 "kajastua"} ;
+lin kajastus_NK = {s = d39 "kajastus"} ;
+lin kajaus_NK = {s = d39 "kajaus"} ;
+lin kajautella_VK = {s = c67A "kajautella"} ;
+lin kajauttaa_VK = {s = c53A "kajauttaa"} ;
+lin kajava_NK = {s = d10 "kajava"} ;
+lin kaje_NK = {s = d48 "kaje"} ;
+lin kajentaa_VK = {s = c54A "kajentaa"} ;
+lin kajetto_NK = {s = d01A "kajetto"} ;
+lin kajo_NK = {s = d01 "kajo"} ;
+lin kajota_VK = {s = c74 "kajota"} ;
+lin kajottaa_VK = {s = c53A "kajottaa"} ;
+lin kajuutallinen_NK = {s = d38 "kajuutallinen"} ;
+lin kajuutta_NK = {s = d09A "kajuutta"} ;
+lin kakadu_NK = {s = d02 "kakadu"} ;
+lin kakaista_VK = {s = c66 "kakaista"} ;
+lin kakara_NK = {s = d12 "kakara"} ;
+lin kakata_VK = {s = c73A "kakata"} ;
+lin kakattaa_VK = {s = c53A "kakattaa"} ;
+lin kaki_NK = {s = d05 "kaki"} ;
+lin kakistaa_VK = {s = c53 "kakistaa"} ;
+lin kakistella_VK = {s = c67 "kakistella"} ;
+lin kakistelu_NK = {s = d02 "kakistelu"} ;
+lin kakka_NK = {s = d09A "kakka"} ;
+lin kakkainen_NK = {s = d38 "kakkainen"} ;
+lin kakkara_NK = {s = d12 "kakkara"} ;
+lin kakkia_VK = {s = c61A "kakkia"} ;
+lin kakkonen_NK = {s = d38 "kakkonen"} ;
+lin kakku_NK = {s = d01A "kakku"} ;
+--? lin kakkulat_NK = {s = d12 "kakkulat"} ;
+lin kakluuni_NK = {s = d05 "kakluuni"} ;
+lin kakofonia_NK = {s = d12 "kakofonia"} ;
+lin kakofoninen_NK = {s = d38 "kakofoninen"} ;
+lin kakru_NK = {s = d01 "kakru"} ;
+lin kaks_AdvK = {s = c99 "kaks"} ;
+lin kaksari_NK = {s = d06 "kaksari"} ;
+lin kaksi_NK = {s = d31 "kaksi"} ;
+lin kaksijakoisuus_NK = {s = d40 "kaksijakoisuus"} ;
+lin kaksikasvoisuus_NK = {s = d40 "kaksikasvoisuus"} ;
+lin kaksikielistya'_VK = {s = c52 "kaksikielistyä"} ;
+lin kaksikko_NK = {s = d04A "kaksikko"} ;
+lin kaksikotinen_NK = {s = d38 "kaksikotinen"} ;
+lin kaksikotisuus_NK = {s = d40 "kaksikotisuus"} ;
+lin kaksika'sitteinen_NK = {s = d38 "kaksikäsitteinen"} ;
+lin kaksilappeinen_NK = {s = d38 "kaksilappeinen"} ;
+lin kaksiminuuttinen_NK = {s = d38 "kaksiminuuttinen"} ;
+lin kaksin_AdvK = {s = c99 "kaksin"} ;
+lin kaksinaamaisuus_NK = {s = d40 "kaksinaamaisuus"} ;
+--+ lin kaksinapaisesti_AdvK = {s = c99 "kaksinapaisesti"} ;
+lin kaksinen_NK = {s = d38 "kaksinen"} ;
+lin kaksineuvoisuus_NK = {s = d40 "kaksineuvoisuus"} ;
+--+ lin kaksinkertaisesti_AdvK = {s = c99 "kaksinkertaisesti"} ;
+lin kaksinkertaistaa_VK = {s = c53 "kaksinkertaistaa"} ;
+lin kaksinkertaistua_VK = {s = c52 "kaksinkertaistua"} ;
+lin kaksinnaiminen_NK = {s = d38 "kaksinnaiminen"} ;
+lin kaksinnus_NK = {s = d39 "kaksinnus"} ;
+lin kaksintaa_VK = {s = c54A "kaksintaa"} ;
+lin kaksio_NK = {s = d03 "kaksio"} ;
+lin kaksistaan_AdvK = {s = c99 "kaksistaan"} ;
+lin kaksisukupuolisuus_NK = {s = d40 "kaksisukupuolisuus"} ;
+lin kaksittain_AdvK = {s = c99 "kaksittain"} ;
+lin kaksoisvoltti_NK = {s = d05A "kaksoisvoltti"} ;
+lin kaksonen_NK = {s = d38 "kaksonen"} ;
+lin kaksospari_NK = {s = d05 "kaksospari"} ;
+lin kaktus_NK = {s = d39 "kaktus"} ;
+lin kakuttaa_VK = {s = c53A "kakuttaa"} ;
+lin kala_NK = {s = d09 "kala"} ;
+lin kalaasi_NK = {s = d05 "kalaasi"} ;
+lin kalabaliikki_NK = {s = d05A "kalabaliikki"} ;
+lin kalahdella_VK = {s = c67A "kalahdella"} ;
+lin kalahdus_NK = {s = d39 "kalahdus"} ;
+lin kalahtaa_VK = {s = c53A "kalahtaa"} ;
+lin kalainen_NK = {s = d38 "kalainen"} ;
+lin kalaisa_NK = {s = d10 "kalaisa"} ;
+lin kalaisuus_NK = {s = d40 "kalaisuus"} ;
+lin kalanteri_NK = {s = d06 "kalanteri"} ;
+lin kalanteroida_VK = {s = c62 "kalanteroida"} ;
+lin kalastaa_VK = {s = c53 "kalastaa"} ;
+lin kalastaja_NK = {s = d10 "kalastaja"} ;
+lin kalastavuus_NK = {s = d40 "kalastavuus"} ;
+lin kalastella_VK = {s = c67 "kalastella"} ;
+lin kalastelu_NK = {s = d02 "kalastelu"} ;
+lin kalasto_NK = {s = d02 "kalasto"} ;
+lin kalastus_NK = {s = d39 "kalastus"} ;
+lin kalauttaa_VK = {s = c53A "kalauttaa"} ;
+lin kale_NK = {s = d48 "kale"} ;
+lin kaleeri_NK = {s = d06 "kaleeri"} ;
+lin kaleidoskooppi_NK = {s = d05A "kaleidoskooppi"} ;
+lin kalendaarinen_NK = {s = d38 "kalendaarinen"} ;
+lin kalendaario_NK = {s = d03 "kalendaario"} ;
+lin kalenteri_NK = {s = d06 "kalenteri"} ;
+lin kalevalainen_NK = {s = d38 "kalevalainen"} ;
+lin kalhu_NK = {s = d01 "kalhu"} ;
+lin kali_NK = {s = d05 "kali"} ;
+lin kalibroida_VK = {s = c62 "kalibroida"} ;
+lin kalibrointi_NK = {s = d05A "kalibrointi"} ;
+lin kalifi_NK = {s = d05 "kalifi"} ;
+lin kaliiberi_NK = {s = d05 "kaliiberi"} ;
+lin kaliiberinen_NK = {s = d38 "kaliiberinen"} ;
+lin kaliiperi_NK = {s = d05 "kaliiperi"} ;
+lin kaliiperinen_NK = {s = d38 "kaliiperinen"} ;
+lin kalikka_NK = {s = d14A "kalikka"} ;
+lin kalina_NK = {s = d12 "kalina"} ;
+lin kalista_VK = {s = c66 "kalista"} ;
+lin kalistaa_VK = {s = c53 "kalistaa"} ;
+lin kalistella_VK = {s = c67 "kalistella"} ;
+lin kalistin_NK = {s = d33 "kalistin"} ;
+lin kalisuttaa_VK = {s = c53A "kalisuttaa"} ;
+lin kalium_NK = {s = d05 "kalium"} ;
+lin kalja_NK = {s = d09 "kalja"} ;
+lin kaljaasi_NK = {s = d05 "kaljaasi"} ;
+lin kaljama_NK = {s = d10 "kaljama"} ;
+lin kaljoitella_VK = {s = c67A "kaljoitella"} ;
+lin kalju_NK = {s = d01 "kalju"} ;
+lin kaljupa'isyys_NK = {s = d40 "kaljupäisyys"} ;
+lin kaljuuntua_VK = {s = c52A "kaljuuntua"} ;
+lin kaljuus_NK = {s = d40 "kaljuus"} ;
+lin kalkattaa_VK = {s = c53A "kalkattaa"} ;
+lin kalkatus_NK = {s = d39 "kalkatus"} ;
+lin kalke_NK = {s = d48A "kalke"} ;
+lin kalkita_VK = {s = c69 "kalkita"} ;
+lin kalkitus_NK = {s = d39 "kalkitus"} ;
+lin kalkkaa_VK = {s = c78 "kalkkaa"} ;
+lin kalkkeuma_NK = {s = d10 "kalkkeuma"} ;
+lin kalkkeutua_VK = {s = c52A "kalkkeutua"} ;
+lin kalkkeutuma_NK = {s = d10 "kalkkeutuma"} ;
+lin kalkki_1_NK = {s = d05A "kalkki"} ;
+lin kalkki_2_NK = {s = d05A "kalkki"} ;
+lin kalkkis_NK = {s = d39 "kalkkis"} ;
+lin kalkkiuma_NK = {s = d10 "kalkkiuma"} ;
+lin kalkkiutua_VK = {s = c52A "kalkkiutua"} ;
+lin kalkkiutuma_NK = {s = d10 "kalkkiutuma"} ;
+lin kalkkuna_NK = {s = d12 "kalkkuna"} ;
+lin kalkutella_VK = {s = c67A "kalkutella"} ;
+lin kalkuttaa_VK = {s = c53A "kalkuttaa"} ;
+lin kalkuttelu_NK = {s = d02 "kalkuttelu"} ;
+lin kalkutus_NK = {s = d39 "kalkutus"} ;
+lin kalkyloida_VK = {s = c62 "kalkyloida"} ;
+lin kalkyyli_NK = {s = d05 "kalkyyli"} ;
+lin kalla_NK = {s = d09 "kalla"} ;
+lin kallas_NK = {s = d41A "kallas"} ;
+lin kalle_NK = {s = d08 "kalle"} ;
+lin kallellaan_AdvK = {s = c99 "kallellaan"} ;
+lin kallelleen_AdvK = {s = c99 "kallelleen"} ;
+lin kalleus_NK = {s = d40 "kalleus"} ;
+lin kallio_NK = {s = d03 "kallio"} ;
+lin kallioinen_NK = {s = d38 "kallioinen"} ;
+lin kallionlaki_NK = {s = d07A "kallionlaki"} ;
+lin kallis_NK = {s = d41 "kallis"} ;
+lin kallistaa_1_VK = {s = c53 "kallistaa"} ;
+lin kallistaa_2_VK = {s = c53 "kallistaa"} ;
+lin kallistella_VK = {s = c67 "kallistella"} ;
+lin kallistelu_NK = {s = d02 "kallistelu"} ;
+lin kallistua_1_VK = {s = c52 "kallistua"} ;
+lin kallistua_2_VK = {s = c52 "kallistua"} ;
+lin kallistus_NK = {s = d39 "kallistus"} ;
+lin kallistuvakorinen_NK = {s = d38 "kallistuvakorinen"} ;
+lin kallo_NK = {s = d01 "kallo"} ;
+lin kalloinen_NK = {s = d38 "kalloinen"} ;
+lin kallollinen_NK = {s = d38 "kallollinen"} ;
+lin kallonkutistaja_NK = {s = d10 "kallonkutistaja"} ;
+lin kalma_NK = {s = d09 "kalma"} ;
+lin kalmannos_NK = {s = d39 "kalmannos"} ;
+lin kalmari_NK = {s = d06 "kalmari"} ;
+lin kalmetoida_VK = {s = c62 "kalmetoida"} ;
+lin kalmisto_NK = {s = d02 "kalmisto"} ;
+lin kalmo_NK = {s = d01 "kalmo"} ;
+lin kalmojuuri_NK = {s = d26 "kalmojuuri"} ;
+lin kalmukki_NK = {s = d05A "kalmukki"} ;
+lin kalopsi_NK = {s = d05 "kalopsi"} ;
+lin kalori_NK = {s = d06 "kalori"} ;
+lin kalorinen_NK = {s = d38 "kalorinen"} ;
+lin kaloriton_NK = {s = d34A "kaloriton"} ;
+lin kalossi_NK = {s = d05 "kalossi"} ;
+lin kalotti_NK = {s = d05A "kalotti"} ;
+lin kalpa_NK = {s = d09A "kalpa"} ;
+lin kalpaten_AdvK = {s = c99 "kalpaten"} ;
+lin kalpea_NK = {s = d15 "kalpea"} ;
+lin kalpeus_NK = {s = d40 "kalpeus"} ;
+lin kalppia_VK = {s = c61A "kalppia"} ;
+lin kalsa_NK = {s = d09 "kalsa"} ;
+lin kalsareisillaan_AdvK = {s = c99 "kalsareisillaan"} ;
+lin kalsareisilleen_AdvK = {s = c99 "kalsareisilleen"} ;
+lin kalsarisillaan_AdvK = {s = c99 "kalsarisillaan"} ;
+lin kalsarisilleen_AdvK = {s = c99 "kalsarisilleen"} ;
+--? lin kalsarit_NK = {s = d06 "kalsarit"} ;
+lin kalsea_AK = {s = d15 "kalsea"} ;
+--+ lin kalseasti_AdvK = {s = c99 "kalseasti"} ;
+lin kalseus_NK = {s = d40 "kalseus"} ;
+lin kalsium_NK = {s = d05 "kalsium"} ;
+lin kalsiumkloridi_NK = {s = d05 "kalsiumkloridi"} ;
+lin kalskahtaa_VK = {s = c53A "kalskahtaa"} ;
+lin kalske_NK = {s = d48 "kalske"} ;
+lin kalsongit_NK = {s = d05A "kalsongit"} ;
+lin kaltainen_NK = {s = d38 "kaltainen"} ;
+lin kaltaistaa_VK = {s = c53 "kaltaistaa"} ;
+lin kaltaisuus_NK = {s = d40 "kaltaisuus"} ;
+lin kaltata_VK = {s = c73A "kaltata"} ;
+--? lin kalterit_NK = {s = d06 "kalterit"} ;
+lin kalteva_NK = {s = d10 "kalteva"} ;
+lin kaltevoida_VK = {s = c62 "kaltevoida"} ;
+lin kaltevointi_NK = {s = d05A "kaltevointi"} ;
+lin kaltevuus_NK = {s = d40 "kaltevuus"} ;
+lin kaltio_NK = {s = d03 "kaltio"} ;
+lin kaltoin_AdvK = {s = c99 "kaltoin"} ;
+lin kalttaus_NK = {s = d39 "kalttaus"} ;
+lin kalu_NK = {s = d01 "kalu"} ;
+lin kalustaa_VK = {s = c53 "kalustaa"} ;
+lin kalustamaton_NK = {s = d34A "kalustamaton"} ;
+lin kaluste_NK = {s = d48 "kaluste"} ;
+lin kalusto_NK = {s = d01 "kalusto"} ;
+lin kalustus_NK = {s = d39 "kalustus"} ;
+lin kaluta_VK = {s = c74 "kaluta"} ;
+lin kaluuna_NK = {s = d13 "kaluuna"} ;
+lin kalvaa_VK = {s = c56 "kalvaa"} ;
+lin kalvakka_NK = {s = d14A "kalvakka"} ;
+lin kalvakkuus_NK = {s = d40 "kalvakkuus"} ;
+lin kalvas_NK = {s = d41 "kalvas"} ;
+lin kalventaa_VK = {s = c54A "kalventaa"} ;
+lin kalveta_VK = {s = c72A "kalveta"} ;
+lin kalvia_VK = {s = c61 "kalvia"} ;
+lin kalvin_NK = {s = d33 "kalvin"} ;
+lin kalvinilainen_NK = {s = d38 "kalvinilainen"} ;
+lin kalvinilaisuus_NK = {s = d40 "kalvinilaisuus"} ;
+lin kalvinisti_NK = {s = d05 "kalvinisti"} ;
+lin kalvinistinen_NK = {s = d38 "kalvinistinen"} ;
+lin kalvinta_NK = {s = d09A "kalvinta"} ;
+lin kalvo_NK = {s = d01 "kalvo"} ;
+lin kalvosin_NK = {s = d33 "kalvosin"} ;
+lin kama_NK = {s = d09 "kama"} ;
+lin kamala_AK = {s = d10 "kamala"} ;
+--+ lin kamalasti_AdvK = {s = c99 "kamalasti"} ;
+lin kamaluus_NK = {s = d40 "kamaluus"} ;
+lin kamana_NK = {s = d12 "kamana"} ;
+lin kamara_NK = {s = d12 "kamara"} ;
+lin kamari_NK = {s = d06 "kamari"} ;
+lin kamarinen_NK = {s = d38 "kamarinen"} ;
+lin kambri_NK = {s = d05 "kambri"} ;
+lin kambrinen_NK = {s = d38 "kambrinen"} ;
+lin kamee_NK = {s = d20 "kamee"} ;
+lin kameleontti_NK = {s = d05A "kameleontti"} ;
+lin kameli_NK = {s = d06 "kameli"} ;
+lin kamelia_NK = {s = d12 "kamelia"} ;
+lin kamera_NK = {s = d12 "kamera"} ;
+lin kamferi_NK = {s = d06 "kamferi"} ;
+lin kamiina_NK = {s = d13 "kamiina"} ;
+lin kammata_VK = {s = c73A "kammata"} ;
+lin kammeta_VK = {s = c74A "kammeta"} ;
+lin kammio_NK = {s = d03 "kammio"} ;
+lin kammioinen_NK = {s = d38 "kammioinen"} ;
+lin kammitsoida_VK = {s = c62 "kammitsoida"} ;
+lin kammo_NK = {s = d01 "kammo"} ;
+lin kammoa_VK = {s = c52 "kammoa"} ;
+lin kammoksua_VK = {s = c52 "kammoksua"} ;
+lin kammoksuttaa_VK = {s = c53A "kammoksuttaa"} ;
+lin kammota_VK = {s = c74 "kammota"} ;
+lin kammottaa_VK = {s = c53A "kammottaa"} ;
+lin kammottava_AK = {s = d10 "kammottava"} ;
+--+ lin kammottavasti_AdvK = {s = c99 "kammottavasti"} ;
+lin kammottavuus_NK = {s = d40 "kammottavuus"} ;
+lin kamomilla_NK = {s = d09 "kamomilla"} ;
+lin kampa_NK = {s = d09A "kampa"} ;
+lin kampaaja_NK = {s = d10 "kampaaja"} ;
+lin kampaamo_NK = {s = d02 "kampaamo"} ;
+lin kampanja_NK = {s = d12 "kampanja"} ;
+lin kampanjoida_VK = {s = c62 "kampanjoida"} ;
+lin kampanjointi_NK = {s = d05A "kampanjointi"} ;
+lin kampata_VK = {s = c73A "kampata"} ;
+lin kampaus_NK = {s = d39 "kampaus"} ;
+lin kampauttaa_VK = {s = c53A "kampauttaa"} ;
+lin kampe_NK = {s = d48A "kampe"} ;
+lin kampela_NK = {s = d13 "kampela"} ;
+lin kampeutua_VK = {s = c52A "kampeutua"} ;
+lin kampi_NK = {s = d07A "kampi"} ;
+lin kampittaa_VK = {s = c53A "kampittaa"} ;
+lin kampitus_NK = {s = d39 "kampitus"} ;
+lin kamppailla_VK = {s = c67 "kamppailla"} ;
+lin kamppailu_NK = {s = d02 "kamppailu"} ;
+lin kamppaus_NK = {s = d39 "kamppaus"} ;
+--? lin kamppeet_NK = {s = d48A "kamppeet"} ;
+lin kamppi_NK = {s = d05A "kamppi"} ;
+--? lin kamppiaiset_NK = {s = d38 "kamppiaiset"} ;
+--? lin kampsut_NK = {s = d01 "kampsut"} ;
+lin kampura_NK = {s = d12 "kampura"} ;
+lin kampus_NK = {s = d39 "kampus"} ;
+lin kamreeri_NK = {s = d06 "kamreeri"} ;
+lin kamu_NK = {s = d01 "kamu"} ;
+lin kana_NK = {s = d09 "kana"} ;
+lin kanaali_NK = {s = d06 "kanaali"} ;
+lin kanadalainen_NK = {s = d38 "kanadalainen"} ;
+lin kanala_NK = {s = d12 "kanala"} ;
+lin kanalisaatio_NK = {s = d03 "kanalisaatio"} ;
+lin kanalisoida_VK = {s = c62 "kanalisoida"} ;
+lin kanalisoitua_VK = {s = c52A "kanalisoitua"} ;
+lin kanalja_NK = {s = d12 "kanalja"} ;
+--+ lin kanamaisesti_AdvK = {s = c99 "kanamaisesti"} ;
+lin kanamaisuus_NK = {s = d40 "kanamaisuus"} ;
+lin kanava_NK = {s = d10 "kanava"} ;
+lin kanavisto_NK = {s = d01 "kanavisto"} ;
+lin kanavoida_VK = {s = c62 "kanavoida"} ;
+lin kanavoitua_VK = {s = c52A "kanavoitua"} ;
+lin kandeerata_VK = {s = c73 "kandeerata"} ;
+lin kandela_NK = {s = d12 "kandela"} ;
+lin kandi_NK = {s = d05 "kandi"} ;
+lin kandidaatti_NK = {s = d05A "kandidaatti"} ;
+lin kaneli_NK = {s = d06 "kaneli"} ;
+lin kanelinkuori_NK = {s = d26 "kanelinkuori"} ;
+lin kanerva_NK = {s = d10 "kanerva"} ;
+lin kanervikko_NK = {s = d04A "kanervikko"} ;
+lin kanervisto_NK = {s = d01 "kanervisto"} ;
+lin kangas_1_NK = {s = d41A "kangas"} ;
+lin kangas_2_NK = {s = d41A "kangas"} ;
+lin kangastaa_VK = {s = c53 "kangastaa"} ;
+lin kangastella_VK = {s = c67 "kangastella"} ;
+lin kangastua_VK = {s = c52 "kangastua"} ;
+lin kangastus_NK = {s = d39 "kangastus"} ;
+lin kangerrella_VK = {s = c67A "kangerrella"} ;
+lin kangerrus_NK = {s = d39 "kangerrus"} ;
+lin kangertaa_VK = {s = c54A "kangertaa"} ;
+lin kangertelu_NK = {s = d02 "kangertelu"} ;
+lin kangeta_VK = {s = c74A "kangeta"} ;
+lin kangistaa_VK = {s = c53 "kangistaa"} ;
+lin kangistua_VK = {s = c52 "kangistua"} ;
+lin kangistuttaa_VK = {s = c53A "kangistuttaa"} ;
+lin kani_1_NK = {s = d05 "kani"} ;
+lin kani_2_NK = {s = d05 "kani"} ;
+lin kaniini_NK = {s = d06 "kaniini"} ;
+lin kanisteri_NK = {s = d06 "kanisteri"} ;
+lin kanittaa_VK = {s = c53A "kanittaa"} ;
+lin kanjoni_NK = {s = d06 "kanjoni"} ;
+lin kankainen_1_NK = {s = d38 "kankainen"} ;
+lin kankainen_2_NK = {s = d38 "kankainen"} ;
+lin kankare_NK = {s = d48 "kankare"} ;
+lin kankea_AK = {s = d15 "kankea"} ;
+--+ lin kankeasti_AdvK = {s = c99 "kankeasti"} ;
+lin kankeus_NK = {s = d40 "kankeus"} ;
+lin kankeuttaa_VK = {s = c53A "kankeuttaa"} ;
+lin kanki_NK = {s = d07A "kanki"} ;
+lin kankku_NK = {s = d01A "kankku"} ;
+lin kankkunen_NK = {s = d38 "kankkunen"} ;
+lin kankuri_NK = {s = d06 "kankuri"} ;
+lin kanna_1_NK = {s = d09 "kanna"} ;
+lin kanna_2_NK = {s = d09 "kanna"} ;
+lin kannabis_NK = {s = d39 "kannabis"} ;
+lin kannakselainen_NK = {s = d38 "kannakselainen"} ;
+lin kannalla_AdvK = {s = c99 "kannalla"} ;
+lin kannalle_AdvK = {s = c99 "kannalle"} ;
+lin kannallinen_NK = {s = d38 "kannallinen"} ;
+lin kannalta_AdvK = {s = c99 "kannalta"} ;
+lin kannas_NK = {s = d39 "kannas"} ;
+lin kannassa_AdvK = {s = c99 "kannassa"} ;
+lin kannasta_AdvK = {s = c99 "kannasta"} ;
+lin kannate_NK = {s = d48A "kannate"} ;
+lin kannatella_VK = {s = c67A "kannatella"} ;
+lin kannatin_NK = {s = d33A "kannatin"} ;
+lin kannattaa_VK = {s = c53A "kannattaa"} ;
+lin kannattaja_NK = {s = d10 "kannattaja"} ;
+lin kannattamaton_NK = {s = d34A "kannattamaton"} ;
+lin kannattava_NK = {s = d10 "kannattava"} ;
+lin kannattavuus_NK = {s = d40 "kannattavuus"} ;
+lin kannatus_NK = {s = d39 "kannatus"} ;
+lin kanne_NK = {s = d48A "kanne"} ;
+lin kanneaika_NK = {s = d09A "kanneaika"} ;
+lin kannel_NK = {s = d49A "kannel"} ;
+lin kannella_VK = {s = c67A "kannella"} ;
+lin kannellinen_NK = {s = d38 "kannellinen"} ;
+lin kanneloni_NK = {s = d05 "kanneloni"} ;
+lin kannibaali_NK = {s = d05 "kannibaali"} ;
+lin kannibaalinen_NK = {s = d38 "kannibaalinen"} ;
+lin kannibalismi_NK = {s = d05 "kannibalismi"} ;
+lin kannike_NK = {s = d48A "kannike"} ;
+lin kannikka_NK = {s = d14A "kannikka"} ;
+lin kannin_NK = {s = d33A "kannin"} ;
+lin kanniskella_VK = {s = c67 "kanniskella"} ;
+lin kannoilla_AdvK = {s = c99 "kannoilla"} ;
+lin kannoille_AdvK = {s = c99 "kannoille"} ;
+lin kannoilta_AdvK = {s = c99 "kannoilta"} ;
+lin kannokko_NK = {s = d04A "kannokko"} ;
+lin kannokkoinen_NK = {s = d38 "kannokkoinen"} ;
+lin kannu_NK = {s = d01 "kannu"} ;
+lin kannuittain_AdvK = {s = c99 "kannuittain"} ;
+lin kannullinen_NK = {s = d38 "kannullinen"} ;
+lin kannus_1_NK = {s = d39 "kannus"} ;
+lin kannus_2_NK = {s = d39 "kannus"} ;
+lin kannustaa_VK = {s = c53 "kannustaa"} ;
+lin kannustaja_NK = {s = d10 "kannustaja"} ;
+lin kannuste_NK = {s = d48 "kannuste"} ;
+lin kannustin_NK = {s = d33 "kannustin"} ;
+lin kannustus_NK = {s = d39 "kannustus"} ;
+lin kanoninen_NK = {s = d38 "kanoninen"} ;
+lin kanonisoida_VK = {s = c62 "kanonisoida"} ;
+lin kanonisoitua_VK = {s = c52A "kanonisoitua"} ;
+lin kanonistaa_VK = {s = c53 "kanonistaa"} ;
+lin kanooppi_NK = {s = d05A "kanooppi"} ;
+lin kanootti_NK = {s = d05A "kanootti"} ;
+lin kanotisti_NK = {s = d05 "kanotisti"} ;
+lin kanotoida_VK = {s = c62 "kanotoida"} ;
+lin kansa_NK = {s = d09 "kansa"} ;
+--+ lin kansainva'lisesti_AdvK = {s = c99 "kansainvälisesti"} ;
+lin kansainva'listya'_VK = {s = c52 "kansainvälistyä"} ;
+lin kansainva'lista'a'_VK = {s = c53 "kansainvälistää"} ;
+lin kansainva'lisyys_NK = {s = d40 "kansainvälisyys"} ;
+lin kansalaisuudeton_NK = {s = d34A "kansalaisuudeton"} ;
+lin kansalaisuudettomuus_NK = {s = d40 "kansalaisuudettomuus"} ;
+lin kansalaisuus_NK = {s = d40 "kansalaisuus"} ;
+lin kansallinen_AK = {s = d38 "kansallinen"} ;
+--+ lin kansallisesti_AdvK = {s = c99 "kansallisesti"} ;
+lin kansallistaa_VK = {s = c53 "kansallistaa"} ;
+lin kansallisuus_NK = {s = d40 "kansallisuus"} ;
+--+ lin kansanomaisesti_AdvK = {s = c99 "kansanomaisesti"} ;
+lin kansantajuistaa_VK = {s = c53 "kansantajuistaa"} ;
+--+ lin kansanvaltaisesti_AdvK = {s = c99 "kansanvaltaisesti"} ;
+lin kansanvaltaistaa_VK = {s = c53 "kansanvaltaistaa"} ;
+lin kansanvaltaistua_VK = {s = c52 "kansanvaltaistua"} ;
+lin kanserogeeni_NK = {s = d05 "kanserogeeni"} ;
+lin kanserogeeninen_NK = {s = d38 "kanserogeeninen"} ;
+lin kansi_NK = {s = d28 "kansi"} ;
+lin kansinen_NK = {s = d38 "kansinen"} ;
+lin kansio_NK = {s = d03 "kansio"} ;
+lin kansioida_VK = {s = c62 "kansioida"} ;
+lin kansittaa_VK = {s = c53A "kansittaa"} ;
+lin kansitus_NK = {s = d39 "kansitus"} ;
+lin kansleri_NK = {s = d06 "kansleri"} ;
+lin kanslia_NK = {s = d12 "kanslia"} ;
+lin kanslisti_NK = {s = d05 "kanslisti"} ;
+lin kansoittaa_VK = {s = c53A "kansoittaa"} ;
+lin kansoittua_VK = {s = c52A "kansoittua"} ;
+lin kanssa_AdvK = {s = c99 "kanssa"} ;
+lin kanta_NK = {s = d09A "kanta"} ;
+lin kantaa_VK = {s = c56A "kantaa"} ;
+lin kantaan_AdvK = {s = c99 "kantaan"} ;
+lin kantaatti_NK = {s = d05A "kantaatti"} ;
+lin kantainen_NK = {s = d38 "kantainen"} ;
+lin kantaisuus_NK = {s = d40 "kantaisuus"} ;
+lin kantaja_NK = {s = d10 "kantaja"} ;
+lin kantama_NK = {s = d10 "kantama"} ;
+lin kantamaton_NK = {s = d34A "kantamaton"} ;
+lin kantamuksellinen_NK = {s = d38 "kantamuksellinen"} ;
+lin kantamuksittain_AdvK = {s = c99 "kantamuksittain"} ;
+lin kantamus_NK = {s = d39 "kantamus"} ;
+lin kantarelli_NK = {s = d05 "kantarelli"} ;
+lin kantata_VK = {s = c73A "kantata"} ;
+lin kantautua_VK = {s = c52A "kantautua"} ;
+lin kantavuus_NK = {s = d40 "kantavuus"} ;
+lin kantele_NK = {s = d49 "kantele"} ;
+lin kantelija_NK = {s = d12 "kantelija"} ;
+lin kantelu_NK = {s = d02 "kantelu"} ;
+lin kantinen_NK = {s = d38 "kantinen"} ;
+lin kantio_NK = {s = d03 "kantio"} ;
+lin kanto_1_NK = {s = d01A "kanto"} ;
+lin kanto_2_NK = {s = d01A "kanto"} ;
+lin kantoaika_NK = {s = d09A "kantoaika"} ;
+lin kantoinen_1_NK = {s = d38 "kantoinen"} ;
+lin kantoinen_2_NK = {s = d38 "kantoinen"} ;
+lin kantoisuus_NK = {s = d40 "kantoisuus"} ;
+lin kantoni_NK = {s = d06 "kantoni"} ;
+lin kantri_NK = {s = d05 "kantri"} ;
+lin kanttarelli_NK = {s = d05 "kanttarelli"} ;
+lin kanttaus_NK = {s = d39 "kanttaus"} ;
+lin kantti_NK = {s = d05A "kantti"} ;
+lin kanttiini_NK = {s = d06 "kanttiini"} ;
+lin kanttori_NK = {s = d06 "kanttori"} ;
+lin kanttura_NK = {s = d12 "kanttura"} ;
+lin kanttuvei_AdvK = {s = c99 "kanttuvei"} ;
+lin kanukka_NK = {s = d14A "kanukka"} ;
+lin kanuuna_NK = {s = d13 "kanuuna"} ;
+lin kanveesi_NK = {s = d05 "kanveesi"} ;
+lin kanyloida_VK = {s = c62 "kanyloida"} ;
+lin kanyyli_NK = {s = d05 "kanyyli"} ;
+lin kaoliini_NK = {s = d05 "kaoliini"} ;
+lin kaoottinen_AK = {s = d38 "kaoottinen"} ;
+--+ lin kaoottisesti_AdvK = {s = c99 "kaoottisesti"} ;
+lin kapaista_VK = {s = c66 "kapaista"} ;
+lin kapakka_NK = {s = d14A "kapakka"} ;
+lin kapakoitsija_NK = {s = d12 "kapakoitsija"} ;
+lin kapallinen_NK = {s = d38 "kapallinen"} ;
+lin kapalo_NK = {s = d02 "kapalo"} ;
+lin kapaloida_VK = {s = c68 "kapaloida"} ;
+lin kapalointi_NK = {s = d05A "kapalointi"} ;
+lin kapasitanssi_NK = {s = d05 "kapasitanssi"} ;
+lin kapasiteetti_NK = {s = d05A "kapasiteetti"} ;
+lin kapea_AK = {s = d15 "kapea"} ;
+--+ lin kapeasti_AdvK = {s = c99 "kapeasti"} ;
+lin kapeikko_NK = {s = d04A "kapeikko"} ;
+lin kapeikkoinen_NK = {s = d38 "kapeikkoinen"} ;
+lin kapeus_NK = {s = d40 "kapeus"} ;
+lin kapeuttaa_VK = {s = c53A "kapeuttaa"} ;
+lin kapeutua_VK = {s = c52A "kapeutua"} ;
+lin kapi_NK = {s = d05 "kapi"} ;
+lin kapiainen_NK = {s = d38 "kapiainen"} ;
+lin kapillaari_NK = {s = d05 "kapillaari"} ;
+lin kapillaarinen_AK = {s = d38 "kapillaarinen"} ;
+--+ lin kapillaarisesti_AdvK = {s = c99 "kapillaarisesti"} ;
+lin kapillaarisuus_NK = {s = d40 "kapillaarisuus"} ;
+lin kapina_NK = {s = d12 "kapina"} ;
+lin kapinallinen_NK = {s = d38 "kapinallinen"} ;
+lin kapinallisuus_NK = {s = d40 "kapinallisuus"} ;
+lin kapine_NK = {s = d48 "kapine"} ;
+lin kapinen_NK = {s = d38 "kapinen"} ;
+lin kapinoida_VK = {s = c68 "kapinoida"} ;
+lin kapinoija_NK = {s = d10 "kapinoija"} ;
+lin kapinointi_NK = {s = d05A "kapinointi"} ;
+lin kapinoitsija_NK = {s = d12 "kapinoitsija"} ;
+--? lin kapiot_NK = {s = d03 "kapiot"} ;
+lin kapistus_NK = {s = d39 "kapistus"} ;
+lin kapitaali_NK = {s = d05 "kapitaali"} ;
+lin kapitalismi_NK = {s = d05 "kapitalismi"} ;
+lin kapitalisoida_VK = {s = c62 "kapitalisoida"} ;
+lin kapitalisointi_NK = {s = d05A "kapitalisointi"} ;
+lin kapitalisti_NK = {s = d05 "kapitalisti"} ;
+lin kapitalistinen_NK = {s = d38 "kapitalistinen"} ;
+lin kapitaloida_VK = {s = c62 "kapitaloida"} ;
+lin kapitalointi_NK = {s = d05A "kapitalointi"} ;
+lin kapiteeli_NK = {s = d05 "kapiteeli"} ;
+lin kapiteloida_VK = {s = c62 "kapiteloida"} ;
+lin kapitulantti_NK = {s = d05A "kapitulantti"} ;
+lin kaplas_NK = {s = d41 "kaplas"} ;
+lin kaplastaa_VK = {s = c53 "kaplastaa"} ;
+lin kapoinen_NK = {s = d38 "kapoinen"} ;
+lin kapoittain_AdvK = {s = c99 "kapoittain"} ;
+lin kapokki_NK = {s = d05A "kapokki"} ;
+lin kappa_1_NK = {s = d09A "kappa"} ;
+lin kappa_2_NK = {s = d09A "kappa"} ;
+lin kappa_3_NK = {s = d09A "kappa"} ;
+lin kappale_NK = {s = d48 "kappale"} ;
+lin kappaleittain_AdvK = {s = c99 "kappaleittain"} ;
+lin kappaleittainen_NK = {s = d38 "kappaleittainen"} ;
+lin kappas_AdvK = {s = c99 "kappas"} ;
+lin kappeli_NK = {s = d06 "kappeli"} ;
+lin kappi_NK = {s = d05A "kappi"} ;
+lin kapriisi_NK = {s = d05 "kapriisi"} ;
+lin kapris_NK = {s = d39 "kapris"} ;
+lin kapsaa_VK = {s = c78 "kapsaa"} ;
+lin kapsahdella_VK = {s = c67A "kapsahdella"} ;
+lin kapsahdus_NK = {s = d39 "kapsahdus"} ;
+lin kapsahtaa_VK = {s = c53A "kapsahtaa"} ;
+lin kapsahtelu_NK = {s = d02 "kapsahtelu"} ;
+lin kapse_NK = {s = d48 "kapse"} ;
+lin kapsehtia_VK = {s = c61A "kapsehtia"} ;
+lin kapsekki_NK = {s = d05A "kapsekki"} ;
+lin kapseli_NK = {s = d06 "kapseli"} ;
+lin kapseloida_VK = {s = c62 "kapseloida"} ;
+lin kapseloitua_VK = {s = c52A "kapseloitua"} ;
+lin kapsyyli_NK = {s = d05 "kapsyyli"} ;
+lin kapsa'kki_NK = {s = d05A "kapsäkki"} ;
+lin kapteeni_NK = {s = d06 "kapteeni"} ;
+lin kapula_NK = {s = d12 "kapula"} ;
+lin kapuloida_VK = {s = c62 "kapuloida"} ;
+lin kapusiini_NK = {s = d05 "kapusiini"} ;
+lin kapusta_NK = {s = d13 "kapusta"} ;
+lin kaput_AdvK = {s = c99 "kaput"} ;
+lin kara_NK = {s = d09 "kara"} ;
+lin karaatti_NK = {s = d05A "karaatti"} ;
+lin karaattinen_NK = {s = d38 "karaattinen"} ;
+lin karabiini_NK = {s = d05 "karabiini"} ;
+lin karabinieeri_NK = {s = d05 "karabinieeri"} ;
+lin karahdella_VK = {s = c67A "karahdella"} ;
+lin karahdus_NK = {s = d39 "karahdus"} ;
+lin karahka_NK = {s = d13 "karahka"} ;
+lin karahtaa_VK = {s = c53A "karahtaa"} ;
+lin karahteerata_VK = {s = c73 "karahteerata"} ;
+lin karahvi_NK = {s = d05 "karahvi"} ;
+lin karaista_1_VK = {s = c66 "karaista"} ;
+lin karaista_2_VK = {s = c66 "karaista"} ;
+lin karaistua_VK = {s = c52 "karaistua"} ;
+lin karaisu_NK = {s = d02 "karaisu"} ;
+lin karakteri_NK = {s = d06 "karakteri"} ;
+lin karakterisoida_VK = {s = c62 "karakterisoida"} ;
+lin karakteristiikka_NK = {s = d09A "karakteristiikka"} ;
+lin karakteristika_NK = {s = d13 "karakteristika"} ;
+lin karakteristinen_NK = {s = d38 "karakteristinen"} ;
+lin karakteristisuus_NK = {s = d40 "karakteristisuus"} ;
+lin karakta'a'ri_NK = {s = d05 "karaktääri"} ;
+lin karambola_NK = {s = d10 "karambola"} ;
+lin karamelli_NK = {s = d05 "karamelli"} ;
+lin karanteeni_NK = {s = d05 "karanteeni"} ;
+lin karaoke_NK = {s = d08 "karaoke"} ;
+lin karata_VK = {s = c73A "karata"} ;
+lin karate_NK = {s = d08 "karate"} ;
+lin karateka_NK = {s = d09 "karateka"} ;
+lin karautella_VK = {s = c67A "karautella"} ;
+lin karauttaa_VK = {s = c53A "karauttaa"} ;
+lin karavaanari_NK = {s = d06 "karavaanari"} ;
+lin karavaani_NK = {s = d05 "karavaani"} ;
+lin karbidi_NK = {s = d05 "karbidi"} ;
+lin karbiini_NK = {s = d05 "karbiini"} ;
+lin karbonaatti_NK = {s = d05A "karbonaatti"} ;
+lin kardaani_NK = {s = d05 "kardaani"} ;
+lin kardaaninen_NK = {s = d38 "kardaaninen"} ;
+lin kardemumma_NK = {s = d10 "kardemumma"} ;
+lin kardinaali_NK = {s = d05 "kardinaali"} ;
+lin kardiologi_NK = {s = d05 "kardiologi"} ;
+lin kardiologia_NK = {s = d12 "kardiologia"} ;
+lin kardiologinen_NK = {s = d38 "kardiologinen"} ;
+lin kardoni_NK = {s = d06 "kardoni"} ;
+lin kare_NK = {s = d48 "kare"} ;
+lin karehtia_VK = {s = c61A "karehtia"} ;
+lin kareilla_VK = {s = c67 "kareilla"} ;
+lin kareilu_NK = {s = d02 "kareilu"} ;
+lin karelianismi_NK = {s = d05 "karelianismi"} ;
+lin karenssi_NK = {s = d05 "karenssi"} ;
+lin karenssiaika_NK = {s = d09A "karenssiaika"} ;
+lin karhe_NK = {s = d48 "karhe"} ;
+lin karhea_AK = {s = d15 "karhea"} ;
+--+ lin karheasti_AdvK = {s = c99 "karheasti"} ;
+lin karheikko_NK = {s = d04A "karheikko"} ;
+lin karhenne_NK = {s = d48A "karhenne"} ;
+lin karhennos_NK = {s = d39 "karhennos"} ;
+lin karhennus_NK = {s = d39 "karhennus"} ;
+lin karhentaa_VK = {s = c54A "karhentaa"} ;
+lin karhentua_VK = {s = c52A "karhentua"} ;
+lin karheta_VK = {s = c72 "karheta"} ;
+lin karheus_NK = {s = d40 "karheus"} ;
+lin karheuttaa_VK = {s = c53A "karheuttaa"} ;
+lin karheutua_VK = {s = c52A "karheutua"} ;
+lin karhi_NK = {s = d05 "karhi"} ;
+lin karhiainen_NK = {s = d38 "karhiainen"} ;
+lin karhinta_NK = {s = d09A "karhinta"} ;
+lin karhita_VK = {s = c69 "karhita"} ;
+lin karho_NK = {s = d01 "karho"} ;
+lin karhu_NK = {s = d01 "karhu"} ;
+lin karhuaja_NK = {s = d10 "karhuaja"} ;
+lin karhukainen_NK = {s = d38 "karhukainen"} ;
+lin karhunkoppi_NK = {s = d05A "karhunkoppi"} ;
+lin karhuntalja_NK = {s = d09 "karhuntalja"} ;
+lin karhuta_VK = {s = c74 "karhuta"} ;
+lin kari_NK = {s = d05 "kari"} ;
+lin karibu_NK = {s = d01 "karibu"} ;
+lin karies_NK = {s = d39 "karies"} ;
+lin karikatyyri_NK = {s = d05 "karikatyyri"} ;
+lin karike_NK = {s = d48A "karike"} ;
+lin karikko_NK = {s = d04A "karikko"} ;
+lin karikkoinen_NK = {s = d38 "karikkoinen"} ;
+lin karikkoisuus_NK = {s = d40 "karikkoisuus"} ;
+lin karikoida_VK = {s = c62 "karikoida"} ;
+lin karinen_NK = {s = d38 "karinen"} ;
+lin karioitua_VK = {s = c52A "karioitua"} ;
+lin karioottinen_NK = {s = d38 "karioottinen"} ;
+lin karioottisuus_NK = {s = d40 "karioottisuus"} ;
+lin karisma_NK = {s = d13 "karisma"} ;
+lin karismaattinen_NK = {s = d38 "karismaattinen"} ;
+lin karista_VK = {s = c66 "karista"} ;
+lin karistaa_VK = {s = c53 "karistaa"} ;
+lin kariste_NK = {s = d48 "kariste"} ;
+lin karistella_VK = {s = c67 "karistella"} ;
+lin karistelu_NK = {s = d02 "karistelu"} ;
+lin karistus_NK = {s = d39 "karistus"} ;
+lin karisuttaa_VK = {s = c53A "karisuttaa"} ;
+lin karisuus_NK = {s = d40 "karisuus"} ;
+lin karitsa_NK = {s = d13 "karitsa"} ;
+lin karitsanvilla_NK = {s = d09 "karitsanvilla"} ;
+lin karitsoida_VK = {s = c62 "karitsoida"} ;
+lin karitsoittaa_VK = {s = c53A "karitsoittaa"} ;
+lin kariuttaa_VK = {s = c53A "kariuttaa"} ;
+lin kariutua_VK = {s = c52A "kariutua"} ;
+lin karja_NK = {s = d09 "karja"} ;
+lin karja_aura_NK = {s = d09 "karja-aura"} ;
+lin karjahdella_VK = {s = c67A "karjahdella"} ;
+lin karjahdus_NK = {s = d39 "karjahdus"} ;
+lin karjahtaa_VK = {s = c53A "karjahtaa"} ;
+lin karjaista_VK = {s = c66 "karjaista"} ;
+lin karjaisu_NK = {s = d02 "karjaisu"} ;
+lin karjakko_NK = {s = d04A "karjakko"} ;
+lin karjala_NK = {s = d12 "karjala"} ;
+lin karjalaisittain_AdvK = {s = c99 "karjalaisittain"} ;
+lin karjalaisuus_NK = {s = d40 "karjalaisuus"} ;
+lin karjaton_NK = {s = d34A "karjaton"} ;
+lin karjeta_VK = {s = c72A "karjeta"} ;
+lin karju_NK = {s = d01 "karju"} ;
+lin karjua_VK = {s = c52 "karjua"} ;
+lin karjunta_NK = {s = d09A "karjunta"} ;
+lin karkailla_VK = {s = c67 "karkailla"} ;
+lin karkailu_NK = {s = d02 "karkailu"} ;
+lin karkaisematon_NK = {s = d34A "karkaisematon"} ;
+lin karkaisija_NK = {s = d12 "karkaisija"} ;
+lin karkaisimo_NK = {s = d01 "karkaisimo"} ;
+lin karkaista_VK = {s = c66 "karkaista"} ;
+lin karkaistua_VK = {s = c52 "karkaistua"} ;
+lin karkaisu_NK = {s = d02 "karkaisu"} ;
+lin karkaus_NK = {s = d39 "karkaus"} ;
+lin karkea_AK = {s = d15 "karkea"} ;
+--+ lin karkeasti_AdvK = {s = c99 "karkeasti"} ;
+lin karkeistaa_VK = {s = c53 "karkeistaa"} ;
+lin karkeistae_NK = {s = d48A "karkeistae"} ;
+lin karkeistus_NK = {s = d39 "karkeistus"} ;
+lin karkelo_NK = {s = d02 "karkelo"} ;
+lin karkeloida_VK = {s = c68 "karkeloida"} ;
+lin karkelointi_NK = {s = d05A "karkelointi"} ;
+lin karkenee_VK = {s = c72 "karkenee"} ;
+lin karkeus_NK = {s = d40 "karkeus"} ;
+lin karkeuttaa_VK = {s = c53A "karkeuttaa"} ;
+lin karkeutua_VK = {s = c52A "karkeutua"} ;
+lin karkki_NK = {s = d05A "karkki"} ;
+lin karkota_VK = {s = c74A "karkota"} ;
+lin karkote_NK = {s = d48A "karkote"} ;
+lin karkottaa_VK = {s = c53A "karkottaa"} ;
+lin karkotus_NK = {s = d39 "karkotus"} ;
+lin karku_AdvK = {s = c99 "karku"} ;
+lin karkuri_NK = {s = d06 "karkuri"} ;
+lin karkuruus_NK = {s = d40 "karkuruus"} ;
+lin karkuteille_AdvK = {s = c99 "karkuteille"} ;
+lin karkuteilla'_AdvK = {s = c99 "karkuteillä"} ;
+lin karkuteilta'_AdvK = {s = c99 "karkuteiltä"} ;
+lin karkuun_AdvK = {s = c99 "karkuun"} ;
+lin karma_NK = {s = d09 "karma"} ;
+lin karmaiseva_NK = {s = d10 "karmaiseva"} ;
+lin karmaista_VK = {s = c66 "karmaista"} ;
+lin karmea_AK = {s = d15 "karmea"} ;
+--+ lin karmeasti_AdvK = {s = c99 "karmeasti"} ;
+lin karmeliitta_NK = {s = d09A "karmeliitta"} ;
+lin karmeus_NK = {s = d40 "karmeus"} ;
+lin karmi_NK = {s = d05 "karmi"} ;
+lin karmia_VK = {s = c61 "karmia"} ;
+lin karmiini_NK = {s = d06 "karmiini"} ;
+lin karmiva_NK = {s = d10 "karmiva"} ;
+lin karneoli_NK = {s = d05 "karneoli"} ;
+lin karnevaali_NK = {s = d05 "karnevaali"} ;
+lin karnevaaliaika_NK = {s = d09A "karnevaaliaika"} ;
+lin karnevalisoida_VK = {s = c62 "karnevalisoida"} ;
+lin karnevalisointi_NK = {s = d05A "karnevalisointi"} ;
+lin karnevalisoitua_VK = {s = c52A "karnevalisoitua"} ;
+lin karoliini_NK = {s = d05 "karoliini"} ;
+lin karoliininen_NK = {s = d38 "karoliininen"} ;
+lin karolingi_NK = {s = d05 "karolingi"} ;
+lin karolinginen_NK = {s = d38 "karolinginen"} ;
+lin karonkka_NK = {s = d14A "karonkka"} ;
+lin karoteeni_NK = {s = d05 "karoteeni"} ;
+lin karpaasi_NK = {s = d06 "karpaasi"} ;
+lin karpalo_NK = {s = d02 "karpalo"} ;
+lin karppi_NK = {s = d05A "karppi"} ;
+lin karrella_AdvK = {s = c99 "karrella"} ;
+lin karrelle_AdvK = {s = c99 "karrelle"} ;
+lin karri_NK = {s = d05 "karri"} ;
+lin karrieeri_NK = {s = d05 "karrieeri"} ;
+lin karrieristi_NK = {s = d05 "karrieristi"} ;
+lin karrikatyyri_NK = {s = d05 "karrikatyyri"} ;
+lin karrikoida_VK = {s = c62 "karrikoida"} ;
+lin karrikointi_NK = {s = d05A "karrikointi"} ;
+--+ lin karsaasti_AdvK = {s = c99 "karsaasti"} ;
+lin karsas_AK = {s = d41 "karsas"} ;
+lin karsastaa_VK = {s = c53 "karsastaa"} ;
+lin karsastus_NK = {s = d39 "karsastus"} ;
+lin karsaus_NK = {s = d40 "karsaus"} ;
+lin karsea_NK = {s = d15 "karsea"} ;
+lin karsi_NK = {s = d28 "karsi"} ;
+lin karsia_VK = {s = c61 "karsia"} ;
+lin karsiintua_VK = {s = c52A "karsiintua"} ;
+lin karsija_NK = {s = d12 "karsija"} ;
+lin karsikko_NK = {s = d04A "karsikko"} ;
+lin karsina_NK = {s = d12 "karsina"} ;
+lin karsinogeeni_NK = {s = d05 "karsinogeeni"} ;
+lin karsinogeeninen_NK = {s = d38 "karsinogeeninen"} ;
+lin karsinogeenisuus_NK = {s = d40 "karsinogeenisuus"} ;
+lin karsinoida_VK = {s = c62 "karsinoida"} ;
+lin karsinointi_NK = {s = d05A "karsinointi"} ;
+lin karsinoitua_VK = {s = c52A "karsinoitua"} ;
+lin karsinooma_NK = {s = d10 "karsinooma"} ;
+lin karsinta_NK = {s = d09A "karsinta"} ;
+lin karsiutua_VK = {s = c52A "karsiutua"} ;
+lin karski_AK = {s = d05 "karski"} ;
+--+ lin karskisti_AdvK = {s = c99 "karskisti"} ;
+lin karskius_NK = {s = d40 "karskius"} ;
+lin karsta_1_NK = {s = d09 "karsta"} ;
+lin karsta_2_NK = {s = d09 "karsta"} ;
+lin karstaaja_NK = {s = d10 "karstaaja"} ;
+lin karstaamo_NK = {s = d02 "karstaamo"} ;
+lin karstaantua_1_VK = {s = c52A "karstaantua"} ;
+lin karstaantua_2_VK = {s = c52A "karstaantua"} ;
+lin karstainen_NK = {s = d38 "karstainen"} ;
+lin karstata_VK = {s = c73 "karstata"} ;
+lin karstaus_NK = {s = d39 "karstaus"} ;
+lin karstautua_1_VK = {s = c52A "karstautua"} ;
+lin karstautua_2_VK = {s = c52A "karstautua"} ;
+lin karsti_NK = {s = d05 "karsti"} ;
+lin karstoittua_VK = {s = c52A "karstoittua"} ;
+lin kartano_NK = {s = d02 "kartano"} ;
+lin kartasto_NK = {s = d02 "kartasto"} ;
+lin kartella_VK = {s = c67A "kartella"} ;
+lin kartelli_NK = {s = d05 "kartelli"} ;
+lin kartelloitua_VK = {s = c52A "kartelloitua"} ;
+lin karting_NK = {s = d05 "karting"} ;
+lin kartio_NK = {s = d03 "kartio"} ;
+lin kartiokas_NK = {s = d41A "kartiokas"} ;
+lin kartografia_NK = {s = d12 "kartografia"} ;
+lin kartografinen_AK = {s = d38 "kartografinen"} ;
+--+ lin kartografisesti_AdvK = {s = c99 "kartografisesti"} ;
+lin kartogrammi_NK = {s = d05 "kartogrammi"} ;
+lin kartoitin_NK = {s = d33A "kartoitin"} ;
+lin kartoittaa_VK = {s = c53A "kartoittaa"} ;
+lin kartoittaja_NK = {s = d10 "kartoittaja"} ;
+lin kartoitus_NK = {s = d39 "kartoitus"} ;
+lin kartonki_NK = {s = d05A "kartonki"} ;
+lin kartta_NK = {s = d09A "kartta"} ;
+lin karttaa_VK = {s = c56A "karttaa"} ;
+lin karttelu_NK = {s = d02 "karttelu"} ;
+lin karttu_NK = {s = d01A "karttu"} ;
+lin karttua_VK = {s = c52A "karttua"} ;
+lin karttuisa_NK = {s = d10 "karttuisa"} ;
+lin kartturi_NK = {s = d06 "kartturi"} ;
+lin karttusilla_AdvK = {s = c99 "karttusilla"} ;
+lin kartunta_NK = {s = d09A "kartunta"} ;
+lin kartusiaani_NK = {s = d05 "kartusiaani"} ;
+lin kartuttaa_VK = {s = c53A "kartuttaa"} ;
+lin kartutus_NK = {s = d39 "kartutus"} ;
+lin karu_AK = {s = d01 "karu"} ;
+lin karukko_NK = {s = d04A "karukko"} ;
+lin karussa_AdvK = {s = c99 "karussa"} ;
+--+ lin karusti_AdvK = {s = c99 "karusti"} ;
+lin karuuntua_VK = {s = c52A "karuuntua"} ;
+lin karuus_NK = {s = d40 "karuus"} ;
+lin karva_NK = {s = d09 "karva"} ;
+--+ lin karvaasti_AdvK = {s = c99 "karvaasti"} ;
+lin karvainen_NK = {s = d38 "karvainen"} ;
+lin karvainen_NK = {s = d38 "karvainen"} ;
+lin karvaisuus_NK = {s = d40 "karvaisuus"} ;
+lin karvallinen_NK = {s = d38 "karvallinen"} ;
+lin karvanjuuri_NK = {s = d26 "karvanjuuri"} ;
+lin karvari_NK = {s = d06 "karvari"} ;
+lin karvas_AK = {s = d41 "karvas"} ;
+lin karvastella_VK = {s = c67 "karvastella"} ;
+lin karvastelu_NK = {s = d02 "karvastelu"} ;
+lin karvasto_NK = {s = d02 "karvasto"} ;
+lin karvata_VK = {s = c73 "karvata"} ;
+lin karvaus_1_NK = {s = d40 "karvaus"} ;
+lin karvaus_2_NK = {s = d39 "karvaus"} ;
+lin karve_NK = {s = d48A "karve"} ;
+lin karviainen_NK = {s = d38 "karviainen"} ;
+lin karvoa_VK = {s = c52 "karvoa"} ;
+lin karvoittua_VK = {s = c52A "karvoittua"} ;
+lin karvoitus_NK = {s = d39 "karvoitus"} ;
+lin kas_AdvK = {s = c99 "kas"} ;
+lin kasa_NK = {s = d09 "kasa"} ;
+lin kasaantua_VK = {s = c52A "kasaantua"} ;
+lin kasaantuma_NK = {s = d10 "kasaantuma"} ;
+lin kasailla_VK = {s = c67 "kasailla"} ;
+lin kasapa'issa'_AdvK = {s = c99 "kasapäissä"} ;
+lin kasari_NK = {s = d06 "kasari"} ;
+lin kasarmi_NK = {s = d05 "kasarmi"} ;
+lin kasata_VK = {s = c73 "kasata"} ;
+lin kasauma_NK = {s = d10 "kasauma"} ;
+lin kasautua_VK = {s = c52A "kasautua"} ;
+lin kasautuma_NK = {s = d10 "kasautuma"} ;
+lin kaseerata_VK = {s = c73 "kaseerata"} ;
+lin kaseeraus_NK = {s = d39 "kaseeraus"} ;
+lin kaseiini_NK = {s = d05 "kaseiini"} ;
+lin kasematti_NK = {s = d05A "kasematti"} ;
+lin kasetoida_VK = {s = c62 "kasetoida"} ;
+lin kasetointi_NK = {s = d05A "kasetointi"} ;
+lin kasetti_NK = {s = d05A "kasetti"} ;
+lin kasi_NK = {s = d05 "kasi"} ;
+lin kasiainen_NK = {s = d38 "kasiainen"} ;
+lin kasino_NK = {s = d02 "kasino"} ;
+lin kaskas_NK = {s = d41 "kaskas"} ;
+lin kaskelotti_NK = {s = d05A "kaskelotti"} ;
+lin kasketa_VK = {s = c74 "kasketa"} ;
+lin kaski_NK = {s = d07 "kaski"} ;
+lin kasko_NK = {s = d01 "kasko"} ;
+lin kasku_NK = {s = d01 "kasku"} ;
+lin kasleri_NK = {s = d06 "kasleri"} ;
+lin ka_mir_NK = {s = d05 "kašmir"} ;
+lin ka_miri_NK = {s = d05 "kašmiri"} ;
+lin ka_mirvilla_NK = {s = d09 "kašmirvilla"} ;
+lin kasoittain_AdvK = {s = c99 "kasoittain"} ;
+lin kassa_NK = {s = d09 "kassa"} ;
+lin kassi_NK = {s = d05 "kassi"} ;
+lin kassler_NK = {s = d06 "kassler"} ;
+lin kastaa_VK = {s = c56 "kastaa"} ;
+--? lin kastajaiset_NK = {s = d38 "kastajaiset"} ;
+lin kastanja_NK = {s = d12 "kastanja"} ;
+lin kastanjetit_NK = {s = d05A "kastanjetit"} ;
+lin kastattaa_VK = {s = c53A "kastattaa"} ;
+lin kastautua_VK = {s = c52A "kastautua"} ;
+lin kaste_NK = {s = d48 "kaste"} ;
+lin kastella_VK = {s = c67 "kastella"} ;
+lin kastelli_NK = {s = d05 "kastelli"} ;
+lin kastelu_NK = {s = d02 "kastelu"} ;
+lin kasti_1_NK = {s = d05 "kasti"} ;
+lin kasti_2_NK = {s = d05 "kasti"} ;
+lin kastikas_NK = {s = d41A "kastikas"} ;
+lin kastike_NK = {s = d48A "kastike"} ;
+lin kastraatio_NK = {s = d03 "kastraatio"} ;
+lin kastraatti_NK = {s = d05A "kastraatti"} ;
+lin kastroida_VK = {s = c62 "kastroida"} ;
+lin kastrointi_NK = {s = d05A "kastrointi"} ;
+lin kastua_VK = {s = c52 "kastua"} ;
+lin kasuaari_NK = {s = d05 "kasuaari"} ;
+lin kasuistiikka_NK = {s = d09A "kasuistiikka"} ;
+lin kasuistinen_NK = {s = d38 "kasuistinen"} ;
+lin kasukka_NK = {s = d14A "kasukka"} ;
+lin kasvaa_VK = {s = c56 "kasvaa"} ;
+lin kasvain_NK = {s = d33 "kasvain"} ;
+lin kasvannainen_NK = {s = d38 "kasvannainen"} ;
+lin kasvanta_NK = {s = d09A "kasvanta"} ;
+lin kasvattaa_VK = {s = c53A "kasvattaa"} ;
+lin kasvattaja_NK = {s = d10 "kasvattaja"} ;
+lin kasvattamo_NK = {s = d02 "kasvattamo"} ;
+lin kasvatuksellinen_NK = {s = d38 "kasvatuksellinen"} ;
+lin kasvatus_NK = {s = d39 "kasvatus"} ;
+lin kasvettua_VK = {s = c52A "kasvettua"} ;
+lin kasvettuma_NK = {s = d10 "kasvettuma"} ;
+lin kasvi_NK = {s = d05 "kasvi"} ;
+lin kasvillisuus_NK = {s = d40 "kasvillisuus"} ;
+lin kasvio_NK = {s = d03 "kasvio"} ;
+lin kasvis_NK = {s = d39 "kasvis"} ;
+lin kasvisto_NK = {s = d02 "kasvisto"} ;
+lin kasvittaa_VK = {s = c53A "kasvittaa"} ;
+lin kasvittua_VK = {s = c52A "kasvittua"} ;
+lin kasvo_NK = {s = d01 "kasvo"} ;
+lin kasvokkain_AdvK = {s = c99 "kasvokkain"} ;
+--? lin kasvot_NK = {s = d01 "kasvot"} ;
+lin kasvoton_NK = {s = d34A "kasvoton"} ;
+lin kasvottomuus_NK = {s = d40 "kasvottomuus"} ;
+lin kasvotuksin_AdvK = {s = c99 "kasvotuksin"} ;
+lin kasvotusten_AdvK = {s = c99 "kasvotusten"} ;
+lin kasvu_NK = {s = d01 "kasvu"} ;
+lin kasvuaika_NK = {s = d09A "kasvuaika"} ;
+lin kasvuinen_NK = {s = d38 "kasvuinen"} ;
+lin kasvuisuus_NK = {s = d40 "kasvuisuus"} ;
+lin kasvullinen_NK = {s = d38 "kasvullinen"} ;
+lin kasvullisuus_NK = {s = d40 "kasvullisuus"} ;
+lin kasvusto_NK = {s = d02 "kasvusto"} ;
+lin katafalkki_NK = {s = d05A "katafalkki"} ;
+lin kataja_NK = {s = d10 "kataja"} ;
+lin katajainen_NK = {s = d38 "katajainen"} ;
+lin katajikko_NK = {s = d04A "katajikko"} ;
+lin katajisto_NK = {s = d02 "katajisto"} ;
+lin katakombi_NK = {s = d05 "katakombi"} ;
+lin katala_AK = {s = d10 "katala"} ;
+lin katalaani_NK = {s = d05 "katalaani"} ;
+--+ lin katalasti_AdvK = {s = c99 "katalasti"} ;
+lin katalonia_NK = {s = d12 "katalonia"} ;
+lin kataluus_NK = {s = d40 "kataluus"} ;
+lin katalysaattori_NK = {s = d06 "katalysaattori"} ;
+lin katalysoida_VK = {s = c62 "katalysoida"} ;
+lin katalyysi_NK = {s = d05 "katalyysi"} ;
+lin katalyytti_NK = {s = d05A "katalyytti"} ;
+lin katalyyttinen_NK = {s = d38 "katalyyttinen"} ;
+lin katamaraani_NK = {s = d05 "katamaraani"} ;
+lin katapultti_NK = {s = d05A "katapultti"} ;
+lin katarri_NK = {s = d05 "katarri"} ;
+lin katarsis_NK = {s = d39 "katarsis"} ;
+lin katastrofaalinen_NK = {s = d38 "katastrofaalinen"} ;
+lin katastrofi_NK = {s = d05 "katastrofi"} ;
+lin kate_NK = {s = d48A "kate"} ;
+lin katedraali_NK = {s = d05 "katedraali"} ;
+lin kateederi_NK = {s = d05 "kateederi"} ;
+lin kateeksi_AdvK = {s = c99 "kateeksi"} ;
+lin kateellinen_NK = {s = d38 "kateellinen"} ;
+lin kateellisuus_NK = {s = d40 "kateellisuus"} ;
+lin kateetti_NK = {s = d05A "kateetti"} ;
+lin kategoria_NK = {s = d12 "kategoria"} ;
+lin kategorinen_AK = {s = d38 "kategorinen"} ;
+--+ lin kategorisesti_AdvK = {s = c99 "kategorisesti"} ;
+lin kategorisuus_NK = {s = d40 "kategorisuus"} ;
+lin kateisiin_AdvK = {s = c99 "kateisiin"} ;
+lin kateissa_AdvK = {s = c99 "kateissa"} ;
+lin kateissaan_AdvK = {s = c99 "kateissaan"} ;
+lin katekeetta_NK = {s = d09A "katekeetta"} ;
+lin katekismus_NK = {s = d39 "katekismus"} ;
+lin katerpillari_NK = {s = d06 "katerpillari"} ;
+lin katetri_NK = {s = d05 "katetri"} ;
+lin katetroida_VK = {s = c62 "katetroida"} ;
+lin katetrointi_NK = {s = d05A "katetrointi"} ;
+lin kateus_NK = {s = d40 "kateus"} ;
+lin katgutti_NK = {s = d05A "katgutti"} ;
+lin kationi_NK = {s = d05 "kationi"} ;
+lin katiska_NK = {s = d13 "katiska"} ;
+lin katka_NK = {s = d09 "katka"} ;
+lin katkaisija_NK = {s = d12 "katkaisija"} ;
+lin katkaisin_NK = {s = d33 "katkaisin"} ;
+lin katkaista_VK = {s = c66 "katkaista"} ;
+lin katkaisu_NK = {s = d02 "katkaisu"} ;
+lin katkaisukohta_NK = {s = d10A "katkaisukohta"} ;
+lin katkeama_NK = {s = d10 "katkeama"} ;
+lin katkeamaton_NK = {s = d34A "katkeamaton"} ;
+lin katkeamiskohta_NK = {s = d10A "katkeamiskohta"} ;
+lin katkeilla_VK = {s = c67 "katkeilla"} ;
+lin katkelma_NK = {s = d10 "katkelma"} ;
+lin katkelmallinen_NK = {s = d38 "katkelmallinen"} ;
+lin katkelmallisuus_NK = {s = d40 "katkelmallisuus"} ;
+lin katkera_AK = {s = d10 "katkera"} ;
+--+ lin katkerasti_AdvK = {s = c99 "katkerasti"} ;
+lin katkero_NK = {s = d02 "katkero"} ;
+lin katkeroittaa_VK = {s = c53A "katkeroittaa"} ;
+lin katkeroitua_VK = {s = c52A "katkeroitua"} ;
+lin katkeruus_NK = {s = d40 "katkeruus"} ;
+lin katketa_VK = {s = c74 "katketa"} ;
+lin katki_AdvK = {s = c99 "katki"} ;
+lin katkismus_NK = {s = d39 "katkismus"} ;
+lin katko_1_NK = {s = d01 "katko"} ;
+lin katko_2_NK = {s = d01 "katko"} ;
+lin katkoa_VK = {s = c52 "katkoa"} ;
+lin katkoja_NK = {s = d10 "katkoja"} ;
+lin katkola_NK = {s = d12 "katkola"} ;
+--+ lin katkonaisesti_AdvK = {s = c99 "katkonaisesti"} ;
+lin katkonta_NK = {s = d09A "katkonta"} ;
+lin katkos_NK = {s = d39 "katkos"} ;
+lin katku_NK = {s = d01 "katku"} ;
+lin katkuinen_NK = {s = d38 "katkuinen"} ;
+lin kato_NK = {s = d01A "kato"} ;
+lin katoamaton_NK = {s = d34A "katoamaton"} ;
+lin katoamattomuus_NK = {s = d40 "katoamattomuus"} ;
+lin katoava_NK = {s = d10 "katoava"} ;
+lin katoavainen_NK = {s = d38 "katoavainen"} ;
+lin katoavaisuus_NK = {s = d40 "katoavaisuus"} ;
+lin katoavuus_NK = {s = d40 "katoavuus"} ;
+lin katodi_NK = {s = d05 "katodi"} ;
+lin katoksellinen_NK = {s = d38 "katoksellinen"} ;
+lin katolilainen_NK = {s = d38 "katolilainen"} ;
+lin katolilaisuus_NK = {s = d40 "katolilaisuus"} ;
+lin katolinen_NK = {s = d38 "katolinen"} ;
+lin katolisuus_NK = {s = d40 "katolisuus"} ;
+lin katollinen_NK = {s = d38 "katollinen"} ;
+lin katonraja_NK = {s = d09 "katonraja"} ;
+lin katos_NK = {s = d39 "katos"} ;
+lin katras_NK = {s = d41 "katras"} ;
+lin katrilli_NK = {s = d05 "katrilli"} ;
+lin katsahdus_NK = {s = d39 "katsahdus"} ;
+lin katsahtaa_VK = {s = c53A "katsahtaa"} ;
+lin katsanto_NK = {s = d01A "katsanto"} ;
+lin katsastaa_VK = {s = c53 "katsastaa"} ;
+lin katsastaja_NK = {s = d10 "katsastaja"} ;
+lin katsastamaton_NK = {s = d34A "katsastamaton"} ;
+lin katsastus_NK = {s = d39 "katsastus"} ;
+lin katsastuttaa_VK = {s = c53A "katsastuttaa"} ;
+lin katsaus_NK = {s = d39 "katsaus"} ;
+lin katse_NK = {s = d48 "katse"} ;
+lin katseinen_NK = {s = d38 "katseinen"} ;
+lin katseisuus_NK = {s = d40 "katseisuus"} ;
+lin katselija_NK = {s = d12 "katselija"} ;
+lin katsella_VK = {s = c67 "katsella"} ;
+lin katselmus_NK = {s = d39 "katselmus"} ;
+lin katselu_NK = {s = d02 "katselu"} ;
+lin katsoa_VK = {s = c52 "katsoa"} ;
+lin katsoja_NK = {s = d10 "katsoja"} ;
+--? lin katsojaiset_NK = {s = d38 "katsojaiset"} ;
+lin katsoma_NK = {s = d10 "katsoma"} ;
+lin katsomo_NK = {s = d02 "katsomo"} ;
+lin katsomus_NK = {s = d39 "katsomus"} ;
+lin katsonta_NK = {s = d09A "katsonta"} ;
+lin kattaa_VK = {s = c56A "kattaa"} ;
+lin kattamus_NK = {s = d39 "kattamus"} ;
+lin kattara_NK = {s = d12 "kattara"} ;
+lin katteeton_NK = {s = d34A "katteeton"} ;
+lin katteikko_NK = {s = d04A "katteikko"} ;
+lin katteinen_NK = {s = d38 "katteinen"} ;
+lin katti_NK = {s = d05A "katti"} ;
+lin kattila_NK = {s = d12 "kattila"} ;
+lin kattilallinen_NK = {s = d38 "kattilallinen"} ;
+lin katto_NK = {s = d01A "katto"} ;
+lin kattoinen_NK = {s = d38 "kattoinen"} ;
+lin katu_NK = {s = d01A "katu"} ;
+lin katua_VK = {s = c52A "katua"} ;
+lin katumus_NK = {s = d39 "katumus"} ;
+lin katuvainen_NK = {s = d38 "katuvainen"} ;
+lin katve_NK = {s = d48 "katve"} ;
+lin katveikko_NK = {s = d04A "katveikko"} ;
+lin katveinen_NK = {s = d38 "katveinen"} ;
+lin kauaksi_AdvK = {s = c99 "kauaksi"} ;
+lin kauan_AdvK = {s = c99 "kauan"} ;
+lin kauas_AdvK = {s = c99 "kauas"} ;
+lin kauaskantava_NK = {s = d10 "kauaskantava"} ;
+lin kauemma_AdvK = {s = c99 "kauemma"} ;
+lin kauemmaksi_AdvK = {s = c99 "kauemmaksi"} ;
+lin kauemmas_AdvK = {s = c99 "kauemmas"} ;
+lin kauemmin_AdvK = {s = c99 "kauemmin"} ;
+lin kauempaa_AdvK = {s = c99 "kauempaa"} ;
+lin kauempana_AdvK = {s = c99 "kauempana"} ;
+lin kauha_NK = {s = d09 "kauha"} ;
+lin kauhallinen_NK = {s = d38 "kauhallinen"} ;
+lin kauhduttaa_VK = {s = c53A "kauhduttaa"} ;
+lin kauhea_AK = {s = d15 "kauhea"} ;
+--+ lin kauheasti_AdvK = {s = c99 "kauheasti"} ;
+lin kauheus_NK = {s = d40 "kauheus"} ;
+lin kauhistaa_VK = {s = c53 "kauhistaa"} ;
+lin kauhistella_VK = {s = c67 "kauhistella"} ;
+lin kauhistua_VK = {s = c52 "kauhistua"} ;
+lin kauhistus_NK = {s = d39 "kauhistus"} ;
+lin kauhistuttaa_VK = {s = c53A "kauhistuttaa"} ;
+lin kauhoa_VK = {s = c52 "kauhoa"} ;
+lin kauhtana_NK = {s = d12 "kauhtana"} ;
+lin kauhtua_VK = {s = c52A "kauhtua"} ;
+lin kauhu_NK = {s = d01 "kauhu"} ;
+lin kauhuissaan_AdvK = {s = c99 "kauhuissaan"} ;
+lin kauimma_AdvK = {s = c99 "kauimma"} ;
+lin kauimmainen_NK = {s = d38 "kauimmainen"} ;
+lin kauimmaksi_AdvK = {s = c99 "kauimmaksi"} ;
+lin kauimmas_AdvK = {s = c99 "kauimmas"} ;
+lin kauimmin_AdvK = {s = c99 "kauimmin"} ;
+lin kauimpaa_AdvK = {s = c99 "kauimpaa"} ;
+lin kauimpana_AdvK = {s = c99 "kauimpana"} ;
+lin kauintaan_AdvK = {s = c99 "kauintaan"} ;
+lin kaukaa_AdvK = {s = c99 "kaukaa"} ;
+lin kaukainen_NK = {s = d38 "kaukainen"} ;
+lin kaukaisuus_NK = {s = d40 "kaukaisuus"} ;
+lin kaukalo_NK = {s = d02 "kaukalo"} ;
+lin kaukana_AdvK = {s = c99 "kaukana"} ;
+lin kaukasialainen_NK = {s = d38 "kaukasialainen"} ;
+lin kaukokantoinen_NK = {s = d38 "kaukokantoinen"} ;
+lin kaukokatseisuus_NK = {s = d40 "kaukokatseisuus"} ;
+lin kaukokulkeutuminen_NK = {s = d38 "kaukokulkeutuminen"} ;
+lin kaukona'ko'isesti_AdvK = {s = c99 "kaukonäköisesti"} ;
+lin kauko_ohjattu_NK = {s = d01A "kauko-ohjattu"} ;
+lin kaukorakastuminen_NK = {s = d38 "kaukorakastuminen"} ;
+lin kaula_NK = {s = d09 "kaula"} ;
+lin kaulailla_VK = {s = c67 "kaulailla"} ;
+lin kaulailu_NK = {s = d02 "kaulailu"} ;
+lin kaulain_NK = {s = d33 "kaulain"} ;
+lin kaulainen_NK = {s = d38 "kaulainen"} ;
+lin kaulakkain_AdvK = {s = c99 "kaulakkain"} ;
+lin kaulata_VK = {s = c73 "kaulata"} ;
+lin kaulatuksin_AdvK = {s = c99 "kaulatuksin"} ;
+lin kaulatusten_AdvK = {s = c99 "kaulatusten"} ;
+lin kaulaus_NK = {s = d39 "kaulaus"} ;
+lin kaulia_VK = {s = c61 "kaulia"} ;
+lin kaulin_NK = {s = d33 "kaulin"} ;
+lin kaulita_VK = {s = c69 "kaulita"} ;
+lin kauluksinen_NK = {s = d38 "kauluksinen"} ;
+lin kauluri_NK = {s = d06 "kauluri"} ;
+lin kaulus_NK = {s = d39 "kaulus"} ;
+lin kauna_NK = {s = d09 "kauna"} ;
+lin kaunainen_NK = {s = d38 "kaunainen"} ;
+lin kaunaisuus_NK = {s = d40 "kaunaisuus"} ;
+lin kauneudellinen_NK = {s = d38 "kauneudellinen"} ;
+lin kauneus_NK = {s = d40 "kauneus"} ;
+--+ lin kauniisti_AdvK = {s = c99 "kauniisti"} ;
+lin kaunis_AK = {s = d41 "kaunis"} ;
+lin kaunistaa_VK = {s = c53 "kaunistaa"} ;
+lin kaunistautua_VK = {s = c52A "kaunistautua"} ;
+lin kauniste_NK = {s = d48 "kauniste"} ;
+lin kaunistelematon_NK = {s = d34A "kaunistelematon"} ;
+lin kaunistella_VK = {s = c67 "kaunistella"} ;
+lin kaunistelu_NK = {s = d02 "kaunistelu"} ;
+lin kaunistua_VK = {s = c52 "kaunistua"} ;
+lin kaunistus_NK = {s = d39 "kaunistus"} ;
+lin kaunoinen_NK = {s = d38 "kaunoinen"} ;
+lin kaunokainen_NK = {s = d38 "kaunokainen"} ;
+lin kaunokki_NK = {s = d05A "kaunokki"} ;
+--+ lin kaunopuheisesti_AdvK = {s = c99 "kaunopuheisesti"} ;
+lin kaunopuheisuus_NK = {s = d40 "kaunopuheisuus"} ;
+lin kaunotar_NK = {s = d32A "kaunotar"} ;
+lin kaupaksi_ka'yma'to'n_NK = {s = d34A "kaupaksi käymätön"} ;
+lin kaupalla_AdvK = {s = c99 "kaupalla"} ;
+lin kaupallinen_AK = {s = d38 "kaupallinen"} ;
+--+ lin kaupallisesti_AdvK = {s = c99 "kaupallisesti"} ;
+lin kaupallistaa_VK = {s = c53 "kaupallistaa"} ;
+lin kaupallistua_VK = {s = c52 "kaupallistua"} ;
+lin kaupallisuus_NK = {s = d40 "kaupallisuus"} ;
+lin kaupata_VK = {s = c73A "kaupata"} ;
+lin kaupinta_NK = {s = d09A "kaupinta"} ;
+lin kaupita_VK = {s = c69 "kaupita"} ;
+lin kaupitella_VK = {s = c67A "kaupitella"} ;
+lin kaupitsija_NK = {s = d12 "kaupitsija"} ;
+lin kaupittaja_NK = {s = d10 "kaupittaja"} ;
+lin kaupittelija_NK = {s = d12 "kaupittelija"} ;
+lin kaupittelu_NK = {s = d02 "kaupittelu"} ;
+lin kauppa_NK = {s = d09A "kauppa"} ;
+lin kauppaaja_NK = {s = d10 "kauppaaja"} ;
+lin kauppala_NK = {s = d12 "kauppala"} ;
+lin kauppausanssi_NK = {s = d05 "kauppausanssi"} ;
+lin kauppias_NK = {s = d41 "kauppias"} ;
+lin kaupungeittain_AdvK = {s = c99 "kaupungeittain"} ;
+lin kaupungistaa_VK = {s = c53 "kaupungistaa"} ;
+lin kaupungistua_VK = {s = c52 "kaupungistua"} ;
+lin kaupunki_NK = {s = d05A "kaupunki"} ;
+--+ lin kaupunkilaisesti_AdvK = {s = c99 "kaupunkilaisesti"} ;
+lin kaupunkilaisittain_AdvK = {s = c99 "kaupunkilaisittain"} ;
+lin kaupunkilaistua_VK = {s = c52 "kaupunkilaistua"} ;
+lin kaupunkimaistaa_VK = {s = c53 "kaupunkimaistaa"} ;
+lin kaupunkimaistua_VK = {s = c52 "kaupunkimaistua"} ;
+lin kaupustelija_NK = {s = d12 "kaupustelija"} ;
+lin kaupustella_VK = {s = c67 "kaupustella"} ;
+lin kaupustelu_NK = {s = d02 "kaupustelu"} ;
+lin kaura_NK = {s = d09 "kaura"} ;
+lin kauris_NK = {s = d41 "kauris"} ;
+lin kausaalilaki_NK = {s = d05A "kausaalilaki"} ;
+lin kausaalinen_NK = {s = d38 "kausaalinen"} ;
+lin kausaalisuus_NK = {s = d40 "kausaalisuus"} ;
+lin kausaliteetti_NK = {s = d05A "kausaliteetti"} ;
+lin kausi_NK = {s = d27 "kausi"} ;
+lin kausittain_AdvK = {s = c99 "kausittain"} ;
+lin kausittainen_NK = {s = d38 "kausittainen"} ;
+lin kaustinen_NK = {s = d38 "kaustinen"} ;
+lin kautinen_NK = {s = d38 "kautinen"} ;
+lin kautsu_NK = {s = d01 "kautsu"} ;
+lin kautta_AdvK = {s = c99 "kautta"} ;
+lin kauttaaltaan_AdvK = {s = c99 "kauttaaltaan"} ;
+lin kauttaaltainen_NK = {s = d38 "kauttaaltainen"} ;
+lin kautta_rantain_AdvK = {s = c99 "kautta rantain"} ;
+lin kavahtaa_VK = {s = c53A "kavahtaa"} ;
+lin kavala_AK = {s = d10 "kavala"} ;
+--+ lin kavalasti_AdvK = {s = c99 "kavalasti"} ;
+lin kavaljeeri_NK = {s = d05 "kavaljeeri"} ;
+lin kavalkadi_NK = {s = d05 "kavalkadi"} ;
+lin kavallus_NK = {s = d39 "kavallus"} ;
+lin kavaltaa_VK = {s = c54A "kavaltaa"} ;
+lin kavaltaja_NK = {s = d10 "kavaltaja"} ;
+lin kavaluus_NK = {s = d40 "kavaluus"} ;
+lin kaveerata_VK = {s = c73 "kaveerata"} ;
+lin kavennus_NK = {s = d39 "kavennus"} ;
+lin kaventaa_VK = {s = c54A "kaventaa"} ;
+lin kaventua_VK = {s = c52A "kaventua"} ;
+lin kaventuma_NK = {s = d10 "kaventuma"} ;
+lin kaveri_NK = {s = d06 "kaveri"} ;
+--? lin kaverukset_NK = {s = d39 "kaverukset"} ;
+lin kaveta_VK = {s = c72A "kaveta"} ;
+lin kaviaari_NK = {s = d05 "kaviaari"} ;
+lin kavio_NK = {s = d03 "kavio"} ;
+lin kavuta_VK = {s = c74A "kavuta"} ;
+lin kebab_NK = {s = d05 "kebab"} ;
+lin keeppi_NK = {s = d05A "keeppi"} ;
+lin kefalosporiini_NK = {s = d05 "kefalosporiini"} ;
+lin kefiiri_NK = {s = d05 "kefiiri"} ;
+lin kehaista_VK = {s = c66 "kehaista"} ;
+lin kehaisu_NK = {s = d02 "kehaisu"} ;
+lin kehdata_VK = {s = c73A "kehdata"} ;
+lin kehikko_NK = {s = d04A "kehikko"} ;
+lin kehite_NK = {s = d48A "kehite"} ;
+lin kehitella'_VK = {s = c67A "kehitellä"} ;
+lin kehitelma'_NK = {s = d10 "kehitelmä"} ;
+lin kehitin_NK = {s = d33A "kehitin"} ;
+lin kehitteille_AdvK = {s = c99 "kehitteille"} ;
+lin kehitteilla'_AdvK = {s = c99 "kehitteillä"} ;
+lin kehittelija'_NK = {s = d12 "kehittelijä"} ;
+lin kehittely_NK = {s = d02 "kehittely"} ;
+lin kehittyma'_NK = {s = d10 "kehittymä"} ;
+lin kehittyma'tto'myys_NK = {s = d40 "kehittymättömyys"} ;
+lin kehittyma'to'n_NK = {s = d34A "kehittymätön"} ;
+lin kehittyneisyys_NK = {s = d40 "kehittyneisyys"} ;
+lin kehittynyt_NK = {s = d47 "kehittynyt"} ;
+lin kehittya'_VK = {s = c52A "kehittyä"} ;
+lin kehitta'ja'_NK = {s = d10 "kehittäjä"} ;
+lin kehitta'va'_NK = {s = d10 "kehittävä"} ;
+lin kehitta'a'_VK = {s = c53A "kehittää"} ;
+lin kehitys_NK = {s = d39 "kehitys"} ;
+lin kehitytta'a'_VK = {s = c53A "kehityttää"} ;
+lin kehia'_VK = {s = c61 "kehiä"} ;
+lin kehjeta'_VK = {s = c74A "kehjetä"} ;
+lin kehkeyma'_NK = {s = d10 "kehkeymä"} ;
+lin kehkeytyma'_NK = {s = d10 "kehkeytymä"} ;
+lin kehkeytya'_VK = {s = c52A "kehkeytyä"} ;
+lin kehno_AK = {s = d01 "kehno"} ;
+lin kehnontaa_VK = {s = c54A "kehnontaa"} ;
+lin kehnontua_VK = {s = c52A "kehnontua"} ;
+--+ lin kehnosti_AdvK = {s = c99 "kehnosti"} ;
+lin kehnota_VK = {s = c72 "kehnota"} ;
+lin kehnous_NK = {s = d40 "kehnous"} ;
+lin kehna'_NK = {s = d10 "kehnä"} ;
+lin kehna'ta'_VK = {s = c73 "kehnätä"} ;
+lin keho_NK = {s = d01 "keho"} ;
+lin kehollinen_NK = {s = d38 "kehollinen"} ;
+lin kehotella_VK = {s = c67A "kehotella"} ;
+lin kehottaa_VK = {s = c53A "kehottaa"} ;
+lin kehotus_NK = {s = d39 "kehotus"} ;
+lin kehruu_NK = {s = d17 "kehruu"} ;
+--? lin kehruukset_NK = {s = d39 "kehruukset"} ;
+lin kehruuttaa_VK = {s = c53A "kehruuttaa"} ;
+lin kehra'_NK = {s = d10 "kehrä"} ;
+lin kehra's_NK = {s = d39 "kehräs"} ;
+lin kehra'ta'_VK = {s = c73 "kehrätä"} ;
+lin kehra'ys_NK = {s = d39 "kehräys"} ;
+lin kehra'ytta'a'_VK = {s = c53A "kehräyttää"} ;
+lin kehra'a'ja'_NK = {s = d10 "kehrääjä"} ;
+lin kehra'a'mo'_NK = {s = d02 "kehräämö"} ;
+lin kehto_NK = {s = d01A "kehto"} ;
+lin kehu_NK = {s = d01 "kehu"} ;
+lin kehua_VK = {s = c52 "kehua"} ;
+lin kehuja_NK = {s = d10 "kehuja"} ;
+lin kehunta_NK = {s = d09A "kehunta"} ;
+lin kehuskella_VK = {s = c67 "kehuskella"} ;
+lin kehuskelu_NK = {s = d02 "kehuskelu"} ;
+lin kehuttava_AK = {s = d10 "kehuttava"} ;
+--+ lin kehuttavasti_AdvK = {s = c99 "kehuttavasti"} ;
+lin kehveli_NK = {s = d06 "kehveli"} ;
+lin kehyksellinen_NK = {s = d38 "kehyksellinen"} ;
+lin kehykseto'n_NK = {s = d34A "kehyksetön"} ;
+lin kehyksinen_NK = {s = d38 "kehyksinen"} ;
+lin kehys_NK = {s = d39 "kehys"} ;
+lin kehyste_NK = {s = d48 "kehyste"} ;
+lin kehystys_NK = {s = d39 "kehystys"} ;
+lin kehysta'mo'_NK = {s = d02 "kehystämö"} ;
+lin kehysta'a'_VK = {s = c53 "kehystää"} ;
+lin keha'_NK = {s = d10 "kehä"} ;
+lin keidas_NK = {s = d41A "keidas"} ;
+lin keiha's_NK = {s = d41 "keihäs"} ;
+lin keiha'sma'inen_NK = {s = d38 "keihäsmäinen"} ;
+lin keiha'stys_NK = {s = d39 "keihästys"} ;
+lin keiha'sta'a'_VK = {s = c53 "keihästää"} ;
+lin keija_NK = {s = d09 "keija"} ;
+lin keiju_NK = {s = d01 "keiju"} ;
+lin keijukainen_NK = {s = d38 "keijukainen"} ;
+lin keijusto_NK = {s = d02 "keijusto"} ;
+lin keikahdus_NK = {s = d39 "keikahdus"} ;
+lin keikahtaa_VK = {s = c53A "keikahtaa"} ;
+lin keikailija_NK = {s = d12 "keikailija"} ;
+lin keikailla_VK = {s = c67 "keikailla"} ;
+lin keikailu_NK = {s = d02 "keikailu"} ;
+lin keikari_NK = {s = d06 "keikari"} ;
+lin keikaroida_VK = {s = c68 "keikaroida"} ;
+lin keikaroija_NK = {s = d10 "keikaroija"} ;
+lin keikarointi_NK = {s = d05A "keikarointi"} ;
+lin keikaus_NK = {s = d39 "keikaus"} ;
+lin keikauttaa_VK = {s = c53A "keikauttaa"} ;
+lin keikistella'_VK = {s = c67 "keikistellä"} ;
+lin keikistely_NK = {s = d02 "keikistely"} ;
+lin keikista'a'_VK = {s = c53 "keikistää"} ;
+lin keikka_NK = {s = d09A "keikka"} ;
+lin keikkailla_VK = {s = c67 "keikkailla"} ;
+lin keikkailu_NK = {s = d02 "keikkailu"} ;
+lin keikkua_VK = {s = c52A "keikkua"} ;
+lin keikunta_NK = {s = d09A "keikunta"} ;
+lin keikutella_VK = {s = c67A "keikutella"} ;
+lin keikuttaa_VK = {s = c53A "keikuttaa"} ;
+lin keikuttelu_NK = {s = d02 "keikuttelu"} ;
+lin keikutus_NK = {s = d39 "keikutus"} ;
+lin keila_NK = {s = d09 "keila"} ;
+lin keilaaja_NK = {s = d10 "keilaaja"} ;
+lin keilailla_VK = {s = c67 "keilailla"} ;
+lin keilailu_NK = {s = d02 "keilailu"} ;
+lin keilata_VK = {s = c73 "keilata"} ;
+lin keimailija_NK = {s = d12 "keimailija"} ;
+lin keimailla_VK = {s = c67 "keimailla"} ;
+lin keimailu_NK = {s = d02 "keimailu"} ;
+lin keimit_NK = {s = d05 "keimit"} ;
+lin keinahdella_VK = {s = c67A "keinahdella"} ;
+lin keinahdus_NK = {s = d39 "keinahdus"} ;
+lin keinahtaa_VK = {s = c53A "keinahtaa"} ;
+lin keinauttaa_VK = {s = c53A "keinauttaa"} ;
+lin keino_NK = {s = d01 "keino"} ;
+lin keinollinen_NK = {s = d38 "keinollinen"} ;
+--+ lin keinotekoisesti_AdvK = {s = c99 "keinotekoisesti"} ;
+lin keinotella_VK = {s = c67A "keinotella"} ;
+lin keinottelija_NK = {s = d12 "keinottelija"} ;
+lin keinottelu_NK = {s = d02 "keinottelu"} ;
+lin keinu_NK = {s = d01 "keinu"} ;
+lin keinua_VK = {s = c52 "keinua"} ;
+lin keinunta_NK = {s = d09A "keinunta"} ;
+lin keinutella_VK = {s = c67A "keinutella"} ;
+lin keinuttaa_VK = {s = c53A "keinuttaa"} ;
+lin keinutus_NK = {s = d39 "keinutus"} ;
+lin keisari_NK = {s = d06 "keisari"} ;
+lin keisariaika_NK = {s = d09A "keisariaika"} ;
+lin keisarillinen_NK = {s = d38 "keisarillinen"} ;
+lin keisarinna_NK = {s = d09 "keisarinna"} ;
+lin keisarius_NK = {s = d40 "keisarius"} ;
+lin keiso_NK = {s = d01 "keiso"} ;
+lin keitella'_VK = {s = c67A "keitellä"} ;
+lin keitin_NK = {s = d33A "keitin"} ;
+lin keitos_NK = {s = d39 "keitos"} ;
+lin keitraus_NK = {s = d39 "keitraus"} ;
+lin keittimo'_NK = {s = d02 "keittimö"} ;
+lin keittio'_NK = {s = d03 "keittiö"} ;
+lin keitto_NK = {s = d01A "keitto"} ;
+lin keittoaika_NK = {s = d09A "keittoaika"} ;
+lin keittola_NK = {s = d12 "keittola"} ;
+lin keittya'_VK = {s = c52A "keittyä"} ;
+lin keitta'ja'_NK = {s = d10 "keittäjä"} ;
+lin keitta'mo'_NK = {s = d02 "keittämö"} ;
+lin keitta'a'_VK = {s = c53A "keittää"} ;
+lin keita'tta'a'_VK = {s = c53A "keitättää"} ;
+lin kekata_VK = {s = c73A "kekata"} ;
+lin kekkale_NK = {s = d48 "kekkale"} ;
+lin kekkaloida_VK = {s = c68 "kekkaloida"} ;
+--? lin kekkerit_NK = {s = d06 "kekkerit"} ;
+lin kekkuli_NK = {s = d06 "kekkuli"} ;
+lin kekkuloida_VK = {s = c68 "kekkuloida"} ;
+lin keko_NK = {s = d01A "keko"} ;
+lin kekri_NK = {s = d05 "kekri"} ;
+lin keksaista_VK = {s = c66 "keksaista"} ;
+lin kekselia'isyys_NK = {s = d40 "kekseliäisyys"} ;
+lin kekselia's_AK = {s = d41 "kekseliäs"} ;
+--+ lin kekselia'a'sti_AdvK = {s = c99 "kekseliäästi"} ;
+lin keksi_1_NK = {s = d05 "keksi"} ;
+lin keksi_2_NK = {s = d05 "keksi"} ;
+lin keksija'_NK = {s = d12 "keksijä"} ;
+lin keksinto'_NK = {s = d01A "keksintö"} ;
+lin keksia'_VK = {s = c61 "keksiä"} ;
+lin keka'le_NK = {s = d48 "kekäle"} ;
+lin kela_NK = {s = d09 "kela"} ;
+lin kelastaa_VK = {s = c53 "kelastaa"} ;
+lin kelastus_NK = {s = d39 "kelastus"} ;
+lin kelata_VK = {s = c73 "kelata"} ;
+lin kelaus_NK = {s = d39 "kelaus"} ;
+lin kelautua_VK = {s = c52A "kelautua"} ;
+lin keli_NK = {s = d05 "keli"} ;
+lin keliaakikko_NK = {s = d01A "keliaakikko"} ;
+lin keliakia_NK = {s = d12 "keliakia"} ;
+lin kelirikkoinen_NK = {s = d38 "kelirikkoinen"} ;
+lin kelju_AK = {s = d01 "kelju"} ;
+lin keljuilija_NK = {s = d12 "keljuilija"} ;
+lin keljuilla_VK = {s = c67 "keljuilla"} ;
+lin keljuilu_NK = {s = d02 "keljuilu"} ;
+lin keljumaisuus_NK = {s = d40 "keljumaisuus"} ;
+--+ lin keljusti_AdvK = {s = c99 "keljusti"} ;
+lin keljuttaa_VK = {s = c53A "keljuttaa"} ;
+lin keljuus_NK = {s = d40 "keljuus"} ;
+lin kelkka_NK = {s = d09A "kelkka"} ;
+lin kelkkailija_NK = {s = d12 "kelkkailija"} ;
+lin kelkkailla_VK = {s = c67 "kelkkailla"} ;
+lin kelkkailu_NK = {s = d02 "kelkkailu"} ;
+lin kellahdella_VK = {s = c67A "kellahdella"} ;
+lin kellahdus_NK = {s = d39 "kellahdus"} ;
+lin kellahduttaa_VK = {s = c53A "kellahduttaa"} ;
+lin kellahtaa_VK = {s = c53A "kellahtaa"} ;
+lin kellahtava_NK = {s = d10 "kellahtava"} ;
+lin kellari_NK = {s = d06 "kellari"} ;
+lin kellaroida_VK = {s = c62 "kellaroida"} ;
+lin kellarointi_NK = {s = d05A "kellarointi"} ;
+lin kellastaa_VK = {s = c53 "kellastaa"} ;
+lin kellastua_VK = {s = c52 "kellastua"} ;
+lin kellastuttaa_VK = {s = c53A "kellastuttaa"} ;
+lin kellata_VK = {s = c73A "kellata"} ;
+lin kellauttaa_VK = {s = c53A "kellauttaa"} ;
+lin kellelleen_AdvK = {s = c99 "kellelleen"} ;
+lin kellella'a'n_AdvK = {s = c99 "kellellään"} ;
+lin kellertya'_VK = {s = c52A "kellertyä"} ;
+lin kellerta'va'_NK = {s = d10 "kellertävä"} ;
+lin kellerta'a'_VK = {s = c54A "kellertää"} ;
+lin kellerva'_NK = {s = d10 "kellervä"} ;
+lin kellistya'_VK = {s = c52 "kellistyä"} ;
+lin kellista'a'_VK = {s = c53 "kellistää"} ;
+lin kellia'_VK = {s = c61 "kelliä"} ;
+lin kello_NK = {s = d01 "kello"} ;
+lin kelloaika_NK = {s = d09A "kelloaika"} ;
+lin kellokas_NK = {s = d41A "kellokas"} ;
+lin kellonaika_NK = {s = d09A "kellonaika"} ;
+lin kellonlyo'ma'_NK = {s = d10 "kellonlyömä"} ;
+lin kellontikitys_NK = {s = d39 "kellontikitys"} ;
+lin kellottaa_1_VK = {s = c53A "kellottaa"} ;
+lin kellottaa_2_VK = {s = c53A "kellottaa"} ;
+lin kellottaa_3_VK = {s = c53A "kellottaa"} ;
+lin kellua_VK = {s = c52 "kellua"} ;
+lin kelluke_NK = {s = d48A "kelluke"} ;
+lin kellukka_NK = {s = d14A "kellukka"} ;
+lin kellunta_NK = {s = d09A "kellunta"} ;
+lin kellute_NK = {s = d48A "kellute"} ;
+lin kelluttaa_VK = {s = c53A "kelluttaa"} ;
+lin kellutus_NK = {s = d39 "kellutus"} ;
+lin kelluvuus_NK = {s = d40 "kelluvuus"} ;
+lin kelmentya'_VK = {s = c52A "kelmentyä"} ;
+lin kelmenta'a'_VK = {s = c54A "kelmentää"} ;
+lin kelmeta'_VK = {s = c72 "kelmetä"} ;
+lin kelmeys_NK = {s = d40 "kelmeys"} ;
+lin kelmea'_NK = {s = d15 "kelmeä"} ;
+lin kelmi_NK = {s = d05 "kelmi"} ;
+lin kelmu_NK = {s = d01 "kelmu"} ;
+lin kelo_NK = {s = d01 "kelo"} ;
+lin kelokko_NK = {s = d04A "kelokko"} ;
+lin kelottua_VK = {s = c52A "kelottua"} ;
+lin keloutua_VK = {s = c52A "keloutua"} ;
+lin kelpo_NK = {s = d01A "kelpo"} ;
+lin kelpoinen_NK = {s = d38 "kelpoinen"} ;
+lin kelpoisuus_NK = {s = d40 "kelpoisuus"} ;
+lin kelpoisuusaika_NK = {s = d09A "kelpoisuusaika"} ;
+lin kelpuuttaa_VK = {s = c53A "kelpuuttaa"} ;
+lin kelpuutus_NK = {s = d39 "kelpuutus"} ;
+lin kelsiturkki_NK = {s = d05A "kelsiturkki"} ;
+lin kelta_NK = {s = d09A "kelta"} ;
+lin keltainen_NK = {s = d38 "keltainen"} ;
+lin keltaisuus_NK = {s = d40 "keltaisuus"} ;
+lin keltamo_NK = {s = d02 "keltamo"} ;
+lin keltano_NK = {s = d02 "keltano"} ;
+lin kelteisilleen_AdvK = {s = c99 "kelteisilleen"} ;
+lin kelteisilla'a'n_AdvK = {s = c99 "kelteisillään"} ;
+lin keltia'inen_NK = {s = d38 "keltiäinen"} ;
+lin keltti_NK = {s = d05A "keltti"} ;
+lin kelttila'inen_NK = {s = d38 "kelttiläinen"} ;
+lin keltuainen_NK = {s = d38 "keltuainen"} ;
+lin kelvata_VK = {s = c73A "kelvata"} ;
+lin kelvin_NK = {s = d05 "kelvin"} ;
+lin kelvokas_NK = {s = d41A "kelvokas"} ;
+lin kelvollinen_AK = {s = d38 "kelvollinen"} ;
+--+ lin kelvollisesti_AdvK = {s = c99 "kelvollisesti"} ;
+lin kelvollisuus_NK = {s = d40 "kelvollisuus"} ;
+lin kelvoton_NK = {s = d34A "kelvoton"} ;
+lin kelvottomasti_AdvK = {s = c99 "kelvottomasti"} ;
+lin kelvottomuus_NK = {s = d40 "kelvottomuus"} ;
+lin kemia_NK = {s = d12 "kemia"} ;
+lin kemiallinen_AK = {s = d38 "kemiallinen"} ;
+--+ lin kemiallisesti_AdvK = {s = c99 "kemiallisesti"} ;
+lin kemigrafi_NK = {s = d05 "kemigrafi"} ;
+lin kemigrafia_NK = {s = d12 "kemigrafia"} ;
+lin kemigrafinen_NK = {s = d38 "kemigrafinen"} ;
+lin kemikaali_NK = {s = d05 "kemikaali"} ;
+lin kemisti_NK = {s = d05 "kemisti"} ;
+lin kemppi_NK = {s = d05A "kemppi"} ;
+--? lin kemut_NK = {s = d01 "kemut"} ;
+lin kendo_NK = {s = d01 "kendo"} ;
+lin kengitta'ja'_NK = {s = d10 "kengittäjä"} ;
+lin kengitta'a'_VK = {s = c53A "kengittää"} ;
+lin kengitys_NK = {s = d39 "kengitys"} ;
+lin kenga'nkiillottaja_NK = {s = d10 "kengänkiillottaja"} ;
+lin kenkku_NK = {s = d01A "kenkku"} ;
+lin kenkkuilla_VK = {s = c67 "kenkkuilla"} ;
+lin kenkuttaa_VK = {s = c53A "kenkuttaa"} ;
+lin kenka'_NK = {s = d10A "kenkä"} ;
+lin kenka'in_NK = {s = d33 "kenkäin"} ;
+lin kenka'inen_NK = {s = d38 "kenkäinen"} ;
+lin kennel_NK = {s = d05 "kennel"} ;
+lin kenno_NK = {s = d01 "kenno"} ;
+lin kenollaan_AdvK = {s = c99 "kenollaan"} ;
+lin kenoon_AdvK = {s = c99 "kenoon"} ;
+lin kenossa_AdvK = {s = c99 "kenossa"} ;
+lin kenotsooinen_NK = {s = d38 "kenotsooinen"} ;
+lin kenottaa_VK = {s = c53A "kenottaa"} ;
+lin kenraali_NK = {s = d06 "kenraali"} ;
+lin kenraalisto_NK = {s = d01 "kenraalisto"} ;
+lin kenraalitar_NK = {s = d32A "kenraalitar"} ;
+lin kentauri_NK = {s = d06 "kentauri"} ;
+lin kenties_AdvK = {s = c99 "kenties"} ;
+lin kentta'_NK = {s = d10A "kenttä"} ;
+lin kenta'llinen_NK = {s = d38 "kentällinen"} ;
+lin kepakko_NK = {s = d04A "kepakko"} ;
+lin kepeys_NK = {s = d40 "kepeys"} ;
+lin kepea'_AK = {s = d15 "kepeä"} ;
+--+ lin kepea'sti_AdvK = {s = c99 "kepeästi"} ;
+lin kepitta'a'_VK = {s = c53A "kepittää"} ;
+lin kepitys_NK = {s = d39 "kepitys"} ;
+lin keplotella_VK = {s = c67A "keplotella"} ;
+lin keplottelu_NK = {s = d02 "keplottelu"} ;
+lin keppana_NK = {s = d12 "keppana"} ;
+lin keppi_NK = {s = d05A "keppi"} ;
+lin kepponen_NK = {s = d38 "kepponen"} ;
+lin kepulainen_NK = {s = d38 "kepulainen"} ;
+lin kepuli_AK = {s = d06 "kepuli"} ;
+--+ lin kepulisti_AdvK = {s = c99 "kepulisti"} ;
+lin kera_AdvK = {s = c99 "kera"} ;
+lin keraami_NK = {s = d06 "keraami"} ;
+lin keraamikko_NK = {s = d04A "keraamikko"} ;
+lin keraaminen_NK = {s = d38 "keraaminen"} ;
+lin kerake_NK = {s = d48A "kerake"} ;
+lin keralla_AdvK = {s = c99 "keralla"} ;
+lin keralle_AdvK = {s = c99 "keralle"} ;
+lin keratiini_NK = {s = d05 "keratiini"} ;
+lin kerberos_NK = {s = d39 "kerberos"} ;
+lin kerettila'inen_NK = {s = d38 "kerettiläinen"} ;
+lin kerettila'isyys_NK = {s = d40 "kerettiläisyys"} ;
+lin kereta'_VK = {s = c74A "keretä"} ;
+lin kerho_NK = {s = d01 "kerho"} ;
+lin kerinta'_1_NK = {s = d09A "kerintä"} ;
+lin kerinta'_2_NK = {s = d09A "kerintä"} ;
+lin keripukki_NK = {s = d05A "keripukki"} ;
+--? lin keritsimet_NK = {s = d33 "keritsimet"} ;
+lin kerita'_1_VK = {s = c75A "keritä"} ;
+lin kerita'_2_VK = {s = c69 "keritä"} ;
+lin keriytya'_VK = {s = c52A "keriytyä"} ;
+lin keria'_VK = {s = c61 "keriä"} ;
+lin kerjeta'_VK = {s = c74A "kerjetä"} ;
+lin kerjuu_NK = {s = d17 "kerjuu"} ;
+lin kerja'la'inen_NK = {s = d38 "kerjäläinen"} ;
+lin kerja'la'isyys_NK = {s = d40 "kerjäläisyys"} ;
+lin kerja'ta'_VK = {s = c73 "kerjätä"} ;
+lin kerja'ys_NK = {s = d39 "kerjäys"} ;
+lin kerkeys_NK = {s = d40 "kerkeys"} ;
+lin kerkea'_AK = {s = d15 "kerkeä"} ;
+--+ lin kerkea'sti_AdvK = {s = c99 "kerkeästi"} ;
+lin kerkka'_NK = {s = d10A "kerkkä"} ;
+lin kerma_NK = {s = d09 "kerma"} ;
+lin kermainen_NK = {s = d38 "kermainen"} ;
+lin kermakko_NK = {s = d04A "kermakko"} ;
+lin kermoa_VK = {s = c52 "kermoa"} ;
+lin kermoittua_VK = {s = c52A "kermoittua"} ;
+lin kernaasti_AdvK = {s = c99 "kernaasti"} ;
+lin kerni_NK = {s = d05 "kerni"} ;
+lin kero_NK = {s = d01 "kero"} ;
+lin kerosiini_NK = {s = d05 "kerosiini"} ;
+lin kerppu_NK = {s = d01A "kerppu"} ;
+lin kerrakseen_AdvK = {s = c99 "kerrakseen"} ;
+lin kerralla_AdvK = {s = c99 "kerralla"} ;
+lin kerrallaan_AdvK = {s = c99 "kerrallaan"} ;
+lin kerrallinen_NK = {s = d38 "kerrallinen"} ;
+lin kerrallisuus_NK = {s = d40 "kerrallisuus"} ;
+lin kerran_AdvK = {s = c99 "kerran"} ;
+lin kerrassaan_AdvK = {s = c99 "kerrassaan"} ;
+lin kerrasto_NK = {s = d02 "kerrasto"} ;
+lin kerrata_VK = {s = c73A "kerrata"} ;
+lin kerroin_1_NK = {s = d33A "kerroin"} ;
+lin kerroin_2_AdvK = {s = c99 "kerroin"} ;
+lin kerroksellinen_NK = {s = d38 "kerroksellinen"} ;
+lin kerroksellisuus_NK = {s = d40 "kerroksellisuus"} ;
+lin kerroksinen_NK = {s = d38 "kerroksinen"} ;
+lin kerroksisuus_NK = {s = d40 "kerroksisuus"} ;
+lin kerroksittain_AdvK = {s = c99 "kerroksittain"} ;
+lin kerroksittainen_NK = {s = d38 "kerroksittainen"} ;
+lin kerronnallinen_NK = {s = d38 "kerronnallinen"} ;
+lin kerronta_NK = {s = d09A "kerronta"} ;
+lin kerros_NK = {s = d39 "kerros"} ;
+lin kerrospukeutuminen_NK = {s = d38 "kerrospukeutuminen"} ;
+lin kerrostaa_VK = {s = c53 "kerrostaa"} ;
+lin kerrostaloasuminen_NK = {s = d38 "kerrostaloasuminen"} ;
+lin kerrosteisuus_NK = {s = d40 "kerrosteisuus"} ;
+lin kerrostua_VK = {s = c52 "kerrostua"} ;
+lin kerrottava_NK = {s = d10 "kerrottava"} ;
+lin kerrotunlainen_NK = {s = d38 "kerrotunlainen"} ;
+lin kersa_NK = {s = d09 "kersa"} ;
+lin kersantti_NK = {s = d05A "kersantti"} ;
+lin kerska_NK = {s = d09 "kerska"} ;
+lin kerskailija_NK = {s = d12 "kerskailija"} ;
+lin kerskailla_VK = {s = c67 "kerskailla"} ;
+lin kerskailu_NK = {s = d02 "kerskailu"} ;
+lin kerskata_VK = {s = c73 "kerskata"} ;
+lin kerskua_VK = {s = c52 "kerskua"} ;
+lin kerskuja_NK = {s = d10 "kerskuja"} ;
+lin kerskuri_NK = {s = d06 "kerskuri"} ;
+lin kerta_NK = {s = d09A "kerta"} ;
+lin kertaakaan_AdvK = {s = c99 "kertaakaan"} ;
+lin kertaalleen_AdvK = {s = c99 "kertaalleen"} ;
+lin kertaantua_VK = {s = c52A "kertaantua"} ;
+lin kertaheitolla_AdvK = {s = c99 "kertaheitolla"} ;
+lin kertainen_AK = {s = d38 "kertainen"} ;
+--+ lin kertaisesti_AdvK = {s = c99 "kertaisesti"} ;
+lin kertaistaa_VK = {s = c53 "kertaistaa"} ;
+lin kertaistua_VK = {s = c52 "kertaistua"} ;
+lin kerta_kaikkiaan_AdvK = {s = c99 "kerta kaikkiaan"} ;
+lin kertakaikkinen_AK = {s = d38 "kertakaikkinen"} ;
+--+ lin kertakaikkisesti_AdvK = {s = c99 "kertakaikkisesti"} ;
+lin kertauma_NK = {s = d10 "kertauma"} ;
+lin kertaus_NK = {s = d39 "kertaus"} ;
+lin kertautua_VK = {s = c52A "kertautua"} ;
+lin kerto_NK = {s = d01A "kerto"} ;
+lin kertoa_VK = {s = c52A "kertoa"} ;
+lin kertoilla_VK = {s = c67 "kertoilla"} ;
+lin kertoja_NK = {s = d10 "kertoja"} ;
+lin kertoma_NK = {s = d10 "kertoma"} ;
+lin kertomus_NK = {s = d39 "kertomus"} ;
+lin kerttu_NK = {s = d01A "kerttu"} ;
+lin kerttunen_NK = {s = d38 "kerttunen"} ;
+lin kertyma'_NK = {s = d10 "kertymä"} ;
+lin kertya'_VK = {s = c52A "kertyä"} ;
+lin kerubi_NK = {s = d05 "kerubi"} ;
+lin keruu_NK = {s = d17 "keruu"} ;
+lin kera'_NK = {s = d10 "kerä"} ;
+lin kera'elma'_NK = {s = d10 "keräelmä"} ;
+lin kera'ilija'_NK = {s = d12 "keräilijä"} ;
+lin kera'illa'_VK = {s = c67 "keräillä"} ;
+lin kera'ily_NK = {s = d02 "keräily"} ;
+lin kera'ta'_VK = {s = c73 "kerätä"} ;
+lin kera'yma'_NK = {s = d10 "keräymä"} ;
+lin kera'ys_NK = {s = d39 "keräys"} ;
+lin kera'ytyma'_NK = {s = d10 "keräytymä"} ;
+lin kera'ytya'_VK = {s = c52A "keräytyä"} ;
+lin kera'a'ja'_NK = {s = d10 "kerääjä"} ;
+lin kera'a'ntya'_VK = {s = c52A "kerääntyä"} ;
+lin kesakko_NK = {s = d04A "kesakko"} ;
+lin kesakkoinen_NK = {s = d38 "kesakkoinen"} ;
+lin kesannoida_VK = {s = c62 "kesannoida"} ;
+lin kesannointi_NK = {s = d05A "kesannointi"} ;
+lin kesannoitua_VK = {s = c52A "kesannoitua"} ;
+lin kesanto_NK = {s = d01A "kesanto"} ;
+lin kesemma'ksi_AdvK = {s = c99 "kesemmäksi"} ;
+lin kesemma'lle_AdvK = {s = c99 "kesemmälle"} ;
+lin kesemma'lla'_AdvK = {s = c99 "kesemmällä"} ;
+lin kesempa'na'_AdvK = {s = c99 "kesempänä"} ;
+lin kesia'_VK = {s = c61 "kesiä"} ;
+lin keskari_NK = {s = d06 "keskari"} ;
+lin keskeen_AdvK = {s = c99 "keskeen"} ;
+lin keskeinen_AK = {s = d38 "keskeinen"} ;
+--+ lin keskeisesti_AdvK = {s = c99 "keskeisesti"} ;
+lin keskeisyys_NK = {s = d40 "keskeisyys"} ;
+lin keskelle_AdvK = {s = c99 "keskelle"} ;
+lin keskella'_AdvK = {s = c99 "keskellä"} ;
+lin keskelta'_AdvK = {s = c99 "keskeltä"} ;
+lin keskemma'_AdvK = {s = c99 "keskemmä"} ;
+lin keskemma'ksi_AdvK = {s = c99 "keskemmäksi"} ;
+lin keskemma'lle_AdvK = {s = c99 "keskemmälle"} ;
+lin keskemma'lla'_AdvK = {s = c99 "keskemmällä"} ;
+lin keskemma'lta'_AdvK = {s = c99 "keskemmältä"} ;
+lin keskemma's_AdvK = {s = c99 "keskemmäs"} ;
+lin keskempa'na'_AdvK = {s = c99 "keskempänä"} ;
+lin keskempa'a'_AdvK = {s = c99 "keskempää"} ;
+lin kesken_AdvK = {s = c99 "kesken"} ;
+lin keskenera'inen_NK = {s = d38 "keskeneräinen"} ;
+lin keskenera'isyys_NK = {s = d40 "keskeneräisyys"} ;
+lin keskena'a'n_AdvK = {s = c99 "keskenään"} ;
+lin keskessa'_AdvK = {s = c99 "keskessä"} ;
+lin keskesta'_AdvK = {s = c99 "keskestä"} ;
+lin keskeyksiin_AdvK = {s = c99 "keskeyksiin"} ;
+lin keskeyksissa'_AdvK = {s = c99 "keskeyksissä"} ;
+lin keskeyte_NK = {s = d48A "keskeyte"} ;
+lin keskeytta'a'_VK = {s = c53A "keskeyttää"} ;
+lin keskeytykseto'n_NK = {s = d34A "keskeytyksetön"} ;
+lin keskeytyksiin_AdvK = {s = c99 "keskeytyksiin"} ;
+lin keskeytyksissa'_AdvK = {s = c99 "keskeytyksissä"} ;
+lin keskeytyma'to'n_NK = {s = d34A "keskeytymätön"} ;
+lin keskeytys_NK = {s = d39 "keskeytys"} ;
+lin keskeytya'_VK = {s = c52A "keskeytyä"} ;
+lin keskiaika_NK = {s = d09A "keskiaika"} ;
+lin keskiaurinkoaika_NK = {s = d09A "keskiaurinkoaika"} ;
+--+ lin keskihakuisesti_AdvK = {s = c99 "keskihakuisesti"} ;
+lin keski_ika'istya'_VK = {s = c52 "keski-ikäistyä"} ;
+lin keskikohta_NK = {s = d10A "keskikohta"} ;
+lin keskikoko_NK = {s = d01A "keskikoko"} ;
+lin keskiluokkaistua_VK = {s = c52 "keskiluokkaistua"} ;
+lin keskimma'inen_NK = {s = d38 "keskimmäinen"} ;
+lin keskima'a'rin_AdvK = {s = c99 "keskimäärin"} ;
+lin keskinen_NK = {s = d38 "keskinen"} ;
+--+ lin keskinkertaisesti_AdvK = {s = c99 "keskinkertaisesti"} ;
+lin keskinkertaisuus_NK = {s = d40 "keskinkertaisuus"} ;
+lin keskina'inen_AK = {s = d38 "keskinäinen"} ;
+--+ lin keskina'isesti_AdvK = {s = c99 "keskinäisesti"} ;
+lin keskina'isyys_NK = {s = d40 "keskinäisyys"} ;
+lin keskipakoinen_AK = {s = d38 "keskipakoinen"} ;
+--+ lin keskipakoisesti_AdvK = {s = c99 "keskipakoisesti"} ;
+lin keskipakoisuus_NK = {s = d40 "keskipakoisuus"} ;
+lin keskisarka_NK = {s = d09A "keskisarka"} ;
+lin keskitse_AdvK = {s = c99 "keskitse"} ;
+lin keskittyma'_NK = {s = d10 "keskittymä"} ;
+lin keskittya'_VK = {s = c52A "keskittyä"} ;
+lin keskitta'a'_VK = {s = c53A "keskittää"} ;
+lin keskitys_NK = {s = d39 "keskitys"} ;
+lin keskivaiheilla_AdvK = {s = c99 "keskivaiheilla"} ;
+lin keskivaiheille_AdvK = {s = c99 "keskivaiheille"} ;
+lin keskivaiheilta_AdvK = {s = c99 "keskivaiheilta"} ;
+lin keskiviikkoisin_AdvK = {s = c99 "keskiviikkoisin"} ;
+lin keskio'_NK = {s = d03 "keskiö"} ;
+lin keskonen_NK = {s = d38 "keskonen"} ;
+lin keskosuus_NK = {s = d40 "keskosuus"} ;
+lin keskus_NK = {s = d39 "keskus"} ;
+lin keskusta_NK = {s = d13 "keskusta"} ;
+lin keskustelija_NK = {s = d12 "keskustelija"} ;
+lin keskustella_VK = {s = c67 "keskustella"} ;
+lin keskustelu_NK = {s = d02 "keskustelu"} ;
+lin keskuudessa_AdvK = {s = c99 "keskuudessa"} ;
+lin keskuudesta_AdvK = {s = c99 "keskuudesta"} ;
+lin keskuuteen_AdvK = {s = c99 "keskuuteen"} ;
+lin kessu_1_NK = {s = d01 "kessu"} ;
+lin kessu_2_NK = {s = d01 "kessu"} ;
+lin kessutella_VK = {s = c67A "kessutella"} ;
+lin kessuttaa_VK = {s = c53A "kessuttaa"} ;
+lin kesti_NK = {s = d05 "kesti"} ;
+lin kestitta'a'_VK = {s = c53A "kestittää"} ;
+lin kestitys_NK = {s = d39 "kestitys"} ;
+lin kestita'_VK = {s = c69 "kestitä"} ;
+lin kesto_NK = {s = d01 "kesto"} ;
+lin kestoaika_NK = {s = d09A "kestoaika"} ;
+lin kestoinen_NK = {s = d38 "kestoinen"} ;
+lin kesta'ma'tto'myys_NK = {s = d40 "kestämättömyys"} ;
+lin kesta'ma'to'n_NK = {s = d34A "kestämätön"} ;
+lin kesta'vyys_NK = {s = d40 "kestävyys"} ;
+lin kesta'va'_AK = {s = d10 "kestävä"} ;
+--+ lin kesta'va'sti_AdvK = {s = c99 "kestävästi"} ;
+lin kesta'vo'ida'_VK = {s = c62 "kestävöidä"} ;
+lin kesta'vo'inti_NK = {s = d05A "kestävöinti"} ;
+lin kesta'a'_VK = {s = c53 "kestää"} ;
+lin kesy_AK = {s = d01 "kesy"} ;
+--+ lin kesysti_AdvK = {s = c99 "kesysti"} ;
+lin kesyttya'_VK = {s = c52A "kesyttyä"} ;
+lin kesytta'ja'_NK = {s = d10 "kesyttäjä"} ;
+lin kesytta'ma'to'n_NK = {s = d34A "kesyttämätön"} ;
+lin kesytta'a'_VK = {s = c53A "kesyttää"} ;
+lin kesytto'myys_NK = {s = d40 "kesyttömyys"} ;
+lin kesytys_NK = {s = d39 "kesytys"} ;
+lin kesyto'n_NK = {s = d34A "kesytön"} ;
+lin kesyyntya'_VK = {s = c52A "kesyyntyä"} ;
+lin kesyys_NK = {s = d40 "kesyys"} ;
+lin kesa'_NK = {s = d10 "kesä"} ;
+lin kesa'aika_NK = {s = d09A "kesäaika"} ;
+lin kesa'asuttava_NK = {s = d10 "kesäasuttava"} ;
+lin kesa'inen_AK = {s = d38 "kesäinen"} ;
+--+ lin kesa'isesti_AdvK = {s = c99 "kesäisesti"} ;
+lin kesa'isin_AdvK = {s = c99 "kesäisin"} ;
+lin kesa'llinen_NK = {s = d38 "kesällinen"} ;
+lin ketale_NK = {s = d48 "ketale"} ;
+lin ketara_NK = {s = d13 "ketara"} ;
+lin ketchup_NK = {s = d05 "ketchup"} ;
+lin ketju_NK = {s = d01 "ketju"} ;
+lin ketjullinen_NK = {s = d38 "ketjullinen"} ;
+lin ketjuttaa_VK = {s = c53A "ketjuttaa"} ;
+lin ketjutus_NK = {s = d39 "ketjutus"} ;
+lin ketjuuntua_VK = {s = c52A "ketjuuntua"} ;
+lin ketjuutua_VK = {s = c52A "ketjuutua"} ;
+lin ketjuva'lityksinen_NK = {s = d38 "ketjuvälityksinen"} ;
+lin ketkale_NK = {s = d48 "ketkale"} ;
+lin ketku_NK = {s = d01 "ketku"} ;
+lin ketlaaja_NK = {s = d10 "ketlaaja"} ;
+lin ketlata_VK = {s = c73 "ketlata"} ;
+lin keto_NK = {s = d01A "keto"} ;
+lin ketoni_NK = {s = d05 "ketoni"} ;
+lin ketoosi_1_NK = {s = d05 "ketoosi"} ;
+lin ketoosi_2_NK = {s = d05 "ketoosi"} ;
+lin ketsi_NK = {s = d05 "ketsi"} ;
+lin ketsuppi_NK = {s = d05A "ketsuppi"} ;
+lin ketteryys_NK = {s = d40 "ketteryys"} ;
+lin kettera'_AK = {s = d10 "ketterä"} ;
+--+ lin kettera'sti_AdvK = {s = c99 "ketterästi"} ;
+lin kettinki_NK = {s = d05A "kettinki"} ;
+lin ketto_NK = {s = d01A "ketto"} ;
+lin kettu_NK = {s = d01A "kettu"} ;
+lin ketuttaa_VK = {s = c53A "ketuttaa"} ;
+lin keuhko_NK = {s = d01 "keuhko"} ;
+lin keula_NK = {s = d09 "keula"} ;
+lin keulemmaksi_AdvK = {s = c99 "keulemmaksi"} ;
+lin keulemmas_AdvK = {s = c99 "keulemmas"} ;
+lin keulempaa_AdvK = {s = c99 "keulempaa"} ;
+lin keulempana_AdvK = {s = c99 "keulempana"} ;
+lin keulimmainen_NK = {s = d38 "keulimmainen"} ;
+lin kevennys_NK = {s = d39 "kevennys"} ;
+lin keventya'_VK = {s = c52A "keventyä"} ;
+lin keventa'a'_VK = {s = c54A "keventää"} ;
+lin keveta'_VK = {s = c72 "kevetä"} ;
+lin keveys_NK = {s = d40 "keveys"} ;
+lin kevea'_AK = {s = d15 "keveä"} ;
+--+ lin kevea'sti_AdvK = {s = c99 "keveästi"} ;
+lin kevyesti_AdvK = {s = c99 "kevyesti"} ;
+lin kevyt_NK = {s = d43 "kevyt"} ;
+--+ lin kevytmielisesti_AdvK = {s = c99 "kevytmielisesti"} ;
+lin keva'in_NK = {s = d33 "keväin"} ;
+lin keva'inen_AK = {s = d38 "keväinen"} ;
+--+ lin keva'isesti_AdvK = {s = c99 "keväisesti"} ;
+lin keva'isin_AdvK = {s = c99 "keväisin"} ;
+lin keva'istys_NK = {s = d39 "keväistys"} ;
+lin keva'ista'a'_VK = {s = c53 "keväistää"} ;
+--? lin keva't_NK = {s = d44 "kevät"} ;
+lin keva'taika_NK = {s = d09A "kevätaika"} ;
+lin keva'a'llinen_NK = {s = d38 "keväällinen"} ;
+lin keva'a'mma'ksi_AdvK = {s = c99 "keväämmäksi"} ;
+lin keva'a'mma'lle_AdvK = {s = c99 "keväämmälle"} ;
+lin keva'a'mma'lla'_AdvK = {s = c99 "keväämmällä"} ;
+lin keva'a'mma's_AdvK = {s = c99 "keväämmäs"} ;
+lin keva'a'mpa'na'_AdvK = {s = c99 "keväämpänä"} ;
+lin khaki_NK = {s = d05 "khaki"} ;
+lin khii_NK = {s = d18 "khii"} ;
+lin khmer_NK = {s = d05 "khmer"} ;
+lin kibbutsi_NK = {s = d05 "kibbutsi"} ;
+lin kide_NK = {s = d48A "kide"} ;
+lin kidnapata_VK = {s = c73A "kidnapata"} ;
+lin kidnappaaja_NK = {s = d10 "kidnappaaja"} ;
+lin kidnappaus_NK = {s = d39 "kidnappaus"} ;
+--? lin kidukset_NK = {s = d39 "kidukset"} ;
+lin kiduttaa_VK = {s = c53A "kiduttaa"} ;
+lin kiduttaja_NK = {s = d10 "kiduttaja"} ;
+lin kidutus_NK = {s = d39 "kidutus"} ;
+lin kiedonta_NK = {s = d09A "kiedonta"} ;
+lin kiehahdus_NK = {s = d39 "kiehahdus"} ;
+lin kiehahtaa_VK = {s = c53A "kiehahtaa"} ;
+lin kiehauttaa_VK = {s = c53A "kiehauttaa"} ;
+lin kiehautus_NK = {s = d39 "kiehautus"} ;
+lin kiehkura_NK = {s = d12 "kiehkura"} ;
+lin kiehna'ta'_VK = {s = c73 "kiehnätä"} ;
+lin kiehtoa_VK = {s = c52A "kiehtoa"} ;
+lin kiehtova_AK = {s = d10 "kiehtova"} ;
+--+ lin kiehtovasti_AdvK = {s = c99 "kiehtovasti"} ;
+lin kiehtovuus_NK = {s = d40 "kiehtovuus"} ;
+lin kiehua_VK = {s = c52 "kiehua"} ;
+lin kiehunta_NK = {s = d09A "kiehunta"} ;
+lin kiehuttaa_VK = {s = c53A "kiehuttaa"} ;
+lin kiehutus_NK = {s = d39 "kiehutus"} ;
+lin kieha'ta'_VK = {s = c73 "kiehätä"} ;
+lin kiekaista_VK = {s = c66 "kiekaista"} ;
+lin kiekaisu_NK = {s = d02 "kiekaisu"} ;
+lin kiekaus_NK = {s = d39 "kiekaus"} ;
+lin kiekko_NK = {s = d01A "kiekko"} ;
+lin kiekkoilija_NK = {s = d12 "kiekkoilija"} ;
+lin kiekkoilla_VK = {s = c67 "kiekkoilla"} ;
+lin kiekoton_NK = {s = d34A "kiekoton"} ;
+lin kiekua_VK = {s = c52A "kiekua"} ;
+lin kiekuja_NK = {s = d10 "kiekuja"} ;
+lin kiekuna_NK = {s = d12 "kiekuna"} ;
+lin kiekura_NK = {s = d12 "kiekura"} ;
+lin kiekurainen_NK = {s = d38 "kiekurainen"} ;
+lin kieleke_NK = {s = d48A "kieleke"} ;
+lin kielekkeinen_NK = {s = d38 "kielekkeinen"} ;
+lin kielellinen_AK = {s = d38 "kielellinen"} ;
+--+ lin kielellisesti_AdvK = {s = c99 "kielellisesti"} ;
+lin kielenta'a'_VK = {s = c54A "kielentää"} ;
+lin kieleva'_AK = {s = d10 "kielevä"} ;
+--+ lin kieleva'sti_AdvK = {s = c99 "kielevästi"} ;
+lin kieli_NK = {s = d26 "kieli"} ;
+lin kielija'_NK = {s = d12 "kielijä"} ;
+lin kielima'inen_NK = {s = d38 "kielimäinen"} ;
+lin kielinen_NK = {s = d38 "kielinen"} ;
+lin kielisyys_NK = {s = d40 "kielisyys"} ;
+lin kielia'_VK = {s = c61 "kieliä"} ;
+lin kiellella'_VK = {s = c67A "kiellellä"} ;
+lin kielletty_NK = {s = d01A "kielletty"} ;
+lin kielo_NK = {s = d01 "kielo"} ;
+lin kielteinen_AK = {s = d38 "kielteinen"} ;
+--+ lin kielteisesti_AdvK = {s = c99 "kielteisesti"} ;
+lin kielteistya'_VK = {s = c52 "kielteistyä"} ;
+lin kielteisyys_NK = {s = d40 "kielteisyys"} ;
+lin kieltely_NK = {s = d02 "kieltely"} ;
+lin kielto_NK = {s = d01A "kielto"} ;
+lin kielta'ja'_NK = {s = d10 "kieltäjä"} ;
+lin kielta'ma'tta'_AdvK = {s = c99 "kieltämättä"} ;
+lin kielta'ma'to'n_NK = {s = d34A "kieltämätön"} ;
+lin kielta'va'_NK = {s = d10 "kieltävä"} ;
+lin kielta'ymyksellinen_NK = {s = d38 "kieltäymyksellinen"} ;
+lin kielta'ymys_NK = {s = d39 "kieltäymys"} ;
+lin kielta'ytyja'_NK = {s = d10 "kieltäytyjä"} ;
+lin kielta'ytya'_VK = {s = c52A "kieltäytyä"} ;
+lin kielta'a'_VK = {s = c54A "kieltää"} ;
+lin kiemura_NK = {s = d12 "kiemura"} ;
+lin kiemurainen_NK = {s = d38 "kiemurainen"} ;
+lin kiemurrella_VK = {s = c67A "kiemurrella"} ;
+lin kiemurtaa_VK = {s = c54A "kiemurtaa"} ;
+lin kiemurtelu_NK = {s = d02 "kiemurtelu"} ;
+lin kiepahdus_NK = {s = d39 "kiepahdus"} ;
+lin kiepahtaa_VK = {s = c53A "kiepahtaa"} ;
+lin kiepaus_NK = {s = d39 "kiepaus"} ;
+lin kiepauttaa_VK = {s = c53A "kiepauttaa"} ;
+lin kiepautus_NK = {s = d39 "kiepautus"} ;
+lin kieppeille_AdvK = {s = c99 "kieppeille"} ;
+lin kieppeilla'_AdvK = {s = c99 "kieppeillä"} ;
+lin kieppeissa'_AdvK = {s = c99 "kieppeissä"} ;
+lin kieppi_NK = {s = d05A "kieppi"} ;
+lin kieppua_VK = {s = c52A "kieppua"} ;
+lin kiepsahdella_VK = {s = c67A "kiepsahdella"} ;
+lin kiepsahdus_NK = {s = d39 "kiepsahdus"} ;
+lin kiepsahtaa_VK = {s = c53A "kiepsahtaa"} ;
+lin kiepsaus_NK = {s = d39 "kiepsaus"} ;
+lin kiepsauttaa_VK = {s = c53A "kiepsauttaa"} ;
+lin kiepunta_NK = {s = d09A "kiepunta"} ;
+lin kieputella_VK = {s = c67A "kieputella"} ;
+lin kieputtaa_VK = {s = c53A "kieputtaa"} ;
+lin kierinta'_NK = {s = d09A "kierintä"} ;
+lin kieriskella'_VK = {s = c67 "kieriskellä"} ;
+lin kieritella'_VK = {s = c67A "kieritellä"} ;
+lin kieritta'a'_VK = {s = c53A "kierittää"} ;
+lin kieritys_NK = {s = d39 "kieritys"} ;
+lin kieria'_VK = {s = c61 "kieriä"} ;
+lin kiero_AK = {s = d01 "kiero"} ;
+lin kieroilija_NK = {s = d12 "kieroilija"} ;
+lin kieroilla_VK = {s = c67 "kieroilla"} ;
+lin kieroilu_NK = {s = d02 "kieroilu"} ;
+lin kieroontua_VK = {s = c52A "kieroontua"} ;
+--+ lin kierosti_AdvK = {s = c99 "kierosti"} ;
+lin kierous_NK = {s = d40 "kierous"} ;
+lin kierouttaa_VK = {s = c53A "kierouttaa"} ;
+lin kieroutua_VK = {s = c52A "kieroutua"} ;
+lin kieroutuma_NK = {s = d10 "kieroutuma"} ;
+lin kieroutuneisuus_NK = {s = d40 "kieroutuneisuus"} ;
+lin kierre_NK = {s = d48A "kierre"} ;
+lin kierrella'_VK = {s = c67A "kierrellä"} ;
+lin kierrin_NK = {s = d33A "kierrin"} ;
+lin kierroksinen_NK = {s = d38 "kierroksinen"} ;
+lin kierroksittain_AdvK = {s = c99 "kierroksittain"} ;
+lin kierros_NK = {s = d39 "kierros"} ;
+lin kierrosaika_NK = {s = d09A "kierrosaika"} ;
+lin kierryksiin_AdvK = {s = c99 "kierryksiin"} ;
+lin kierryksissa'_AdvK = {s = c99 "kierryksissä"} ;
+lin kierryksista'_AdvK = {s = c99 "kierryksistä"} ;
+lin kierra'nta'_NK = {s = d09A "kierräntä"} ;
+lin kierra'tta'a'_VK = {s = c53A "kierrättää"} ;
+lin kierra'tys_NK = {s = d39 "kierrätys"} ;
+lin kierteellinen_NK = {s = d38 "kierteellinen"} ;
+lin kierteinen_AK = {s = d38 "kierteinen"} ;
+--+ lin kierteisesti_AdvK = {s = c99 "kierteisesti"} ;
+lin kierteisyys_NK = {s = d40 "kierteisyys"} ;
+lin kierteitta'a'_VK = {s = c53A "kierteittää"} ;
+lin kierteitys_NK = {s = d39 "kierteitys"} ;
+lin kiertelema'to'n_NK = {s = d34A "kiertelemätön"} ;
+lin kierteleva'_NK = {s = d10 "kiertelevä"} ;
+lin kiertelija'_NK = {s = d12 "kiertelijä"} ;
+lin kiertely_NK = {s = d02 "kiertely"} ;
+lin kierto_NK = {s = d01A "kierto"} ;
+lin kiertoaika_NK = {s = d09A "kiertoaika"} ;
+lin kiertolaisuus_NK = {s = d40 "kiertolaisuus"} ;
+lin kiertue_NK = {s = d48 "kiertue"} ;
+lin kiertyma'_NK = {s = d10 "kiertymä"} ;
+lin kiertya'_VK = {s = c52A "kiertyä"} ;
+lin kierta'ja'_NK = {s = d10 "kiertäjä"} ;
+lin kierta'ma'to'n_NK = {s = d34A "kiertämätön"} ;
+lin kierta'a'_VK = {s = c54A "kiertää"} ;
+lin kierukka_NK = {s = d14A "kierukka"} ;
+lin kierukkainen_NK = {s = d38 "kierukkainen"} ;
+lin kieryys_NK = {s = d40 "kieryys"} ;
+lin kiera'_NK = {s = d10 "kierä"} ;
+lin kiera'hdella'_VK = {s = c67A "kierähdellä"} ;
+lin kiera'hdys_NK = {s = d39 "kierähdys"} ;
+lin kiera'hta'a'_VK = {s = c53A "kierähtää"} ;
+lin kiera'ytta'a'_VK = {s = c53A "kieräyttää"} ;
+lin kiesit_NK = {s = d05 "kiesit"} ;
+lin kietaista_VK = {s = c66 "kietaista"} ;
+lin kietaisu_NK = {s = d02 "kietaisu"} ;
+lin kietoa_VK = {s = c52A "kietoa"} ;
+lin kietoontua_VK = {s = c52A "kietoontua"} ;
+lin kietouma_NK = {s = d10 "kietouma"} ;
+lin kietoutua_VK = {s = c52A "kietoutua"} ;
+lin kietoutuma_NK = {s = d10 "kietoutuma"} ;
+lin kieunta_NK = {s = d09A "kieunta"} ;
+lin kievari_NK = {s = d06 "kievari"} ;
+lin kihahdus_NK = {s = d39 "kihahdus"} ;
+lin kihahtaa_1_VK = {s = c53A "kihahtaa"} ;
+lin kihahtaa_2_VK = {s = c53A "kihahtaa"} ;
+lin kihara_NK = {s = d11 "kihara"} ;
+lin kiharaan_AdvK = {s = c99 "kiharaan"} ;
+lin kiharainen_NK = {s = d38 "kiharainen"} ;
+lin kiharassa_AdvK = {s = c99 "kiharassa"} ;
+lin kiharrin_NK = {s = d33A "kiharrin"} ;
+lin kihartaa_VK = {s = c54A "kihartaa"} ;
+lin kihartua_VK = {s = c52A "kihartua"} ;
+lin kiharuus_NK = {s = d40 "kiharuus"} ;
+lin kihaus_NK = {s = d39 "kihaus"} ;
+lin kihdata_VK = {s = c73A "kihdata"} ;
+lin kihelmo'ida'_VK = {s = c68 "kihelmöidä"} ;
+lin kihelmo'inti_NK = {s = d05A "kihelmöinti"} ;
+lin kiherrella'_VK = {s = c67A "kiherrellä"} ;
+lin kiherrys_NK = {s = d39 "kiherrys"} ;
+lin kiherta'a'_VK = {s = c54A "kihertää"} ;
+lin kihina'_NK = {s = d12 "kihinä"} ;
+lin kihista'_VK = {s = c66 "kihistä"} ;
+--? lin kihlajaiset_NK = {s = d38 "kihlajaiset"} ;
+lin kihlapari_NK = {s = d05 "kihlapari"} ;
+--? lin kihlat_NK = {s = d09 "kihlat"} ;
+lin kihlata_VK = {s = c73 "kihlata"} ;
+lin kihlattu_NK = {s = d01A "kihlattu"} ;
+lin kihlaus_NK = {s = d39 "kihlaus"} ;
+lin kihlausaika_NK = {s = d09A "kihlausaika"} ;
+lin kihlautua_VK = {s = c52A "kihlautua"} ;
+lin kihloihin_AdvK = {s = c99 "kihloihin"} ;
+lin kihloissa_AdvK = {s = c99 "kihloissa"} ;
+lin kihnutella_VK = {s = c67A "kihnutella"} ;
+lin kihnuttaa_VK = {s = c53A "kihnuttaa"} ;
+lin kihnutus_NK = {s = d39 "kihnutus"} ;
+lin kiho_NK = {s = d01 "kiho"} ;
+lin kihokki_NK = {s = d05A "kihokki"} ;
+lin kihota_VK = {s = c74 "kihota"} ;
+lin kihti_NK = {s = d05A "kihti"} ;
+lin kihu_NK = {s = d01 "kihu"} ;
+lin kihveli_NK = {s = d06 "kihveli"} ;
+lin kii_AdvK = {s = c99 "kii"} ;
+lin kiida'tta'a'_VK = {s = c53A "kiidättää"} ;
+lin kiihdyksiin_AdvK = {s = c99 "kiihdyksiin"} ;
+lin kiihdyksissa'_AdvK = {s = c99 "kiihdyksissä"} ;
+lin kiihdyksissa'a'n_AdvK = {s = c99 "kiihdyksissään"} ;
+lin kiihdytin_NK = {s = d33A "kiihdytin"} ;
+lin kiihdytta'a'_VK = {s = c53A "kiihdyttää"} ;
+lin kiihdytys_NK = {s = d39 "kiihdytys"} ;
+lin kiihkeys_NK = {s = d40 "kiihkeys"} ;
+lin kiihkea'_AK = {s = d15 "kiihkeä"} ;
+--+ lin kiihkea'sti_AdvK = {s = c99 "kiihkeästi"} ;
+lin kiihko_NK = {s = d01 "kiihko"} ;
+lin kiihkoilija_NK = {s = d12 "kiihkoilija"} ;
+lin kiihkoilla_VK = {s = c67 "kiihkoilla"} ;
+lin kiihkoilu_NK = {s = d02 "kiihkoilu"} ;
+lin kiihkoinen_NK = {s = d38 "kiihkoinen"} ;
+lin kiihkoisa_AK = {s = d10 "kiihkoisa"} ;
+--+ lin kiihkoisasti_AdvK = {s = c99 "kiihkoisasti"} ;
+lin kiihkoisuus_NK = {s = d40 "kiihkoisuus"} ;
+lin kiihkota_VK = {s = c74 "kiihkota"} ;
+lin kiihkoton_NK = {s = d34A "kiihkoton"} ;
+lin kiihkottomasti_AdvK = {s = c99 "kiihkottomasti"} ;
+lin kiihkottomuus_NK = {s = d40 "kiihkottomuus"} ;
+lin kiihkoutua_VK = {s = c52A "kiihkoutua"} ;
+lin kiihoke_NK = {s = d48A "kiihoke"} ;
+lin kiihote_NK = {s = d48A "kiihote"} ;
+lin kiihotin_NK = {s = d33A "kiihotin"} ;
+lin kiihottaa_VK = {s = c53A "kiihottaa"} ;
+lin kiihottaja_NK = {s = d10 "kiihottaja"} ;
+lin kiihottua_VK = {s = c52A "kiihottua"} ;
+lin kiihottuneisuus_NK = {s = d40 "kiihottuneisuus"} ;
+lin kiihottuvuus_NK = {s = d40 "kiihottuvuus"} ;
+lin kiihotus_NK = {s = d39 "kiihotus"} ;
+lin kiihtymys_NK = {s = d39 "kiihtymys"} ;
+lin kiihtyneisyys_NK = {s = d40 "kiihtyneisyys"} ;
+lin kiihtyvyys_NK = {s = d40 "kiihtyvyys"} ;
+lin kiihtya'_VK = {s = c52A "kiihtyä"} ;
+lin kiikaroida_VK = {s = c62 "kiikaroida"} ;
+lin kiikarointi_NK = {s = d05A "kiikarointi"} ;
+lin kiikastaa_VK = {s = c53 "kiikastaa"} ;
+lin kiikissa'_AdvK = {s = c99 "kiikissä"} ;
+lin kiikista'_AdvK = {s = c99 "kiikistä"} ;
+lin kiikkeryys_NK = {s = d40 "kiikkeryys"} ;
+lin kiikkera'_NK = {s = d10 "kiikkerä"} ;
+lin kiikkiin_AdvK = {s = c99 "kiikkiin"} ;
+lin kiikku_NK = {s = d01A "kiikku"} ;
+lin kiikkua_VK = {s = c52A "kiikkua"} ;
+lin kiikun_kaakun_AdvK = {s = c99 "kiikun kaakun"} ;
+lin kiikutella_VK = {s = c67A "kiikutella"} ;
+lin kiikuttaa_VK = {s = c53A "kiikuttaa"} ;
+lin kiila_NK = {s = d09 "kiila"} ;
+lin kiilata_VK = {s = c73 "kiilata"} ;
+lin kiilaus_NK = {s = d39 "kiilaus"} ;
+lin kiilautua_VK = {s = c52A "kiilautua"} ;
+lin kiilia'inen_NK = {s = d38 "kiiliäinen"} ;
+lin kiille_NK = {s = d48A "kiille"} ;
+lin kiillella'_VK = {s = c67A "kiillellä"} ;
+lin kiilloke_NK = {s = d48A "kiilloke"} ;
+lin kiillote_NK = {s = d48A "kiillote"} ;
+lin kiillotin_NK = {s = d33A "kiillotin"} ;
+lin kiillottaa_VK = {s = c53A "kiillottaa"} ;
+lin kiillottua_VK = {s = c52A "kiillottua"} ;
+lin kiillotus_NK = {s = d39 "kiillotus"} ;
+lin kiiltely_NK = {s = d02 "kiiltely"} ;
+lin kiilto_NK = {s = d01A "kiilto"} ;
+lin kiiltoinen_NK = {s = d38 "kiiltoinen"} ;
+lin kiilta'vyys_NK = {s = d40 "kiiltävyys"} ;
+lin kiilta'va'_NK = {s = d10 "kiiltävä"} ;
+lin kiilta'a'_VK = {s = c54A "kiiltää"} ;
+lin kiilu_NK = {s = d01 "kiilu"} ;
+lin kiilua_VK = {s = c52 "kiilua"} ;
+lin kiilukainen_NK = {s = d38 "kiilukainen"} ;
+lin kiima_NK = {s = d09 "kiima"} ;
+lin kiima_aika_NK = {s = d09A "kiima-aika"} ;
+lin kiimattomuus_NK = {s = d40 "kiimattomuus"} ;
+lin kiina_NK = {s = d09 "kiina"} ;
+lin kiinailla_VK = {s = c67 "kiinailla"} ;
+lin kiinata_VK = {s = c73 "kiinata"} ;
+lin kiinne_NK = {s = d48A "kiinne"} ;
+lin kiinnekohta_NK = {s = d10A "kiinnekohta"} ;
+lin kiinnemma'ksi_AdvK = {s = c99 "kiinnemmäksi"} ;
+lin kiinnemma's_AdvK = {s = c99 "kiinnemmäs"} ;
+lin kiinnempa'na'_AdvK = {s = c99 "kiinnempänä"} ;
+lin kiinneta'_VK = {s = c72A "kiinnetä"} ;
+lin kiinni_AdvK = {s = c99 "kiinni"} ;
+lin kiinnikasvama_NK = {s = d10 "kiinnikasvama"} ;
+lin kiinnike_NK = {s = d48A "kiinnike"} ;
+lin kiinnite_NK = {s = d48A "kiinnite"} ;
+lin kiinnitin_NK = {s = d33A "kiinnitin"} ;
+lin kiinnitteinen_NK = {s = d38 "kiinnitteinen"} ;
+lin kiinnittya'_VK = {s = c52A "kiinnittyä"} ;
+lin kiinnitta'ytya'_VK = {s = c52A "kiinnittäytyä"} ;
+lin kiinnitta'a'_VK = {s = c53A "kiinnittää"} ;
+lin kiinnityksinen_NK = {s = d38 "kiinnityksinen"} ;
+lin kiinnitys_NK = {s = d39 "kiinnitys"} ;
+lin kiinnityskohta_NK = {s = d10A "kiinnityskohta"} ;
+lin kiinnostaa_VK = {s = c53 "kiinnostaa"} ;
+lin kiinnostava_AK = {s = d10 "kiinnostava"} ;
+--+ lin kiinnostavasti_AdvK = {s = c99 "kiinnostavasti"} ;
+lin kiinnostavuus_NK = {s = d40 "kiinnostavuus"} ;
+lin kiinnostua_VK = {s = c52 "kiinnostua"} ;
+lin kiinnostus_NK = {s = d39 "kiinnostus"} ;
+lin kiinteisto'_NK = {s = d02 "kiinteistö"} ;
+lin kiinteys_NK = {s = d40 "kiinteys"} ;
+lin kiinteytta'a'_VK = {s = c53A "kiinteyttää"} ;
+lin kiinteytya'_VK = {s = c52A "kiinteytyä"} ;
+lin kiintea'_AK = {s = d15 "kiinteä"} ;
+--+ lin kiintea'sti_AdvK = {s = c99 "kiinteästi"} ;
+lin kiintio'_NK = {s = d03 "kiintiö"} ;
+lin kiintio'ida'_VK = {s = c62 "kiintiöidä"} ;
+lin kiintio'inti_NK = {s = d05A "kiintiöinti"} ;
+lin kiintoisa_AK = {s = d10 "kiintoisa"} ;
+--+ lin kiintoisasti_AdvK = {s = c99 "kiintoisasti"} ;
+lin kiintoisuus_NK = {s = d40 "kiintoisuus"} ;
+lin kiintonainen_NK = {s = d38 "kiintonainen"} ;
+lin kiintymys_NK = {s = d39 "kiintymys"} ;
+lin kiintyneisyys_NK = {s = d40 "kiintyneisyys"} ;
+lin kiintya'_VK = {s = c52A "kiintyä"} ;
+lin kiipeilija'_NK = {s = d12 "kiipeilijä"} ;
+lin kiipeilla'_VK = {s = c67 "kiipeillä"} ;
+lin kiipeily_NK = {s = d02 "kiipeily"} ;
+lin kiipija'_NK = {s = d12 "kiipijä"} ;
+lin kiire_1_AK = {s = d48 "kiire"} ;
+lin kiire_2_AK = {s = d48 "kiire"} ;
+lin kiireellinen_AK = {s = d38 "kiireellinen"} ;
+--+ lin kiireellisesti_AdvK = {s = c99 "kiireellisesti"} ;
+lin kiireellisyys_NK = {s = d40 "kiireellisyys"} ;
+--+ lin kiireesti_AdvK = {s = c99 "kiireesti"} ;
+lin kiireetto'myys_NK = {s = d40 "kiireettömyys"} ;
+lin kiireetto'ma'sti_AdvK = {s = c99 "kiireettömästi"} ;
+lin kiireeto'n_NK = {s = d34A "kiireetön"} ;
+lin kiirehtia'_VK = {s = c61A "kiirehtiä"} ;
+lin kiirehta'a'_VK = {s = c53A "kiirehtää"} ;
+lin kiireimmiten_AdvK = {s = c99 "kiireimmiten"} ;
+lin kiireinen_AK = {s = d38 "kiireinen"} ;
+--+ lin kiireisesti_AdvK = {s = c99 "kiireisesti"} ;
+lin kiireys_NK = {s = d40 "kiireys"} ;
+lin kiiri_NK = {s = d05 "kiiri"} ;
+lin kiiria'_VK = {s = c61 "kiiriä"} ;
+lin kiiru_NK = {s = d48 "kiiru"} ;
+lin kiiruhtaa_VK = {s = c53A "kiiruhtaa"} ;
+lin kiiruna_NK = {s = d12 "kiiruna"} ;
+lin kiiruusti_AdvK = {s = c99 "kiiruusti"} ;
+lin kiiski_NK = {s = d07 "kiiski"} ;
+lin kiisseli_NK = {s = d06 "kiisseli"} ;
+lin kiista_NK = {s = d09 "kiista"} ;
+lin kiistainen_NK = {s = d38 "kiistainen"} ;
+lin kiistaton_NK = {s = d34A "kiistaton"} ;
+lin kiistattomasti_AdvK = {s = c99 "kiistattomasti"} ;
+lin kiistattomuus_NK = {s = d40 "kiistattomuus"} ;
+lin kiistella'_VK = {s = c67 "kiistellä"} ;
+lin kiistely_NK = {s = d02 "kiistely"} ;
+lin kiista'ma'tta'_AdvK = {s = c99 "kiistämättä"} ;
+lin kiista'ma'tto'myys_NK = {s = d40 "kiistämättömyys"} ;
+lin kiista'ma'tto'ma'sti_AdvK = {s = c99 "kiistämättömästi"} ;
+lin kiista'ma'to'n_NK = {s = d34A "kiistämätön"} ;
+lin kiista'a'_VK = {s = c53 "kiistää"} ;
+lin kiisu_NK = {s = d01 "kiisu"} ;
+lin kiitella'_VK = {s = c67A "kiitellä"} ;
+lin kiitetta'vyys_NK = {s = d40 "kiitettävyys"} ;
+lin kiitetta'va'_AK = {s = d10 "kiitettävä"} ;
+--+ lin kiitetta'va'sti_AdvK = {s = c99 "kiitettävästi"} ;
+lin kiito_NK = {s = d01A "kiito"} ;
+lin kiitollinen_NK = {s = d38 "kiitollinen"} ;
+lin kiitollisuus_NK = {s = d40 "kiitollisuus"} ;
+lin kiitos_NK = {s = d39 "kiitos"} ;
+lin kiitti_AdvK = {s = c99 "kiitti"} ;
+--? lin kiittimet_NK = {s = d33A "kiittimet"} ;
+lin kiitta'ja'_NK = {s = d10 "kiittäjä"} ;
+lin kiitta'ma'tto'myys_NK = {s = d40 "kiittämättömyys"} ;
+lin kiitta'ma'tto'ma'sti_AdvK = {s = c99 "kiittämättömästi"} ;
+lin kiitta'ma'to'n_NK = {s = d34A "kiittämätön"} ;
+lin kiitta'a'_VK = {s = c53A "kiittää"} ;
+lin kiita'ja'_NK = {s = d10 "kiitäjä"} ;
+lin kiita'ja'inen_NK = {s = d38 "kiitäjäinen"} ;
+lin kiita'a'_VK = {s = c55A "kiitää"} ;
+--+ lin kiivaasti_AdvK = {s = c99 "kiivaasti"} ;
+lin kiivailija_NK = {s = d12 "kiivailija"} ;
+lin kiivailla_VK = {s = c67 "kiivailla"} ;
+lin kiivailu_NK = {s = d02 "kiivailu"} ;
+lin kiivas_AK = {s = d41 "kiivas"} ;
+lin kiivastelija_NK = {s = d12 "kiivastelija"} ;
+lin kiivastella_VK = {s = c67 "kiivastella"} ;
+lin kiivastua_VK = {s = c52 "kiivastua"} ;
+lin kiivastuttaa_VK = {s = c53A "kiivastuttaa"} ;
+lin kiivaus_NK = {s = d40 "kiivaus"} ;
+lin kiiveta'_VK = {s = c74A "kiivetä"} ;
+lin kiivi_NK = {s = d05 "kiivi"} ;
+lin kikatella_VK = {s = c67A "kikatella"} ;
+lin kikattaa_VK = {s = c53A "kikattaa"} ;
+lin kikatus_NK = {s = d39 "kikatus"} ;
+lin kikka_NK = {s = d09A "kikka"} ;
+lin kikkailla_VK = {s = c67 "kikkailla"} ;
+lin kikkailu_NK = {s = d02 "kikkailu"} ;
+lin kikkara_1_NK = {s = d12 "kikkara"} ;
+lin kikkara_2_NK = {s = d11 "kikkara"} ;
+lin kikkeli_NK = {s = d06 "kikkeli"} ;
+lin kiksauttaa_VK = {s = c53A "kiksauttaa"} ;
+lin kikuju_NK = {s = d02 "kikuju"} ;
+lin kilahdella_VK = {s = c67A "kilahdella"} ;
+lin kilahdus_NK = {s = d39 "kilahdus"} ;
+lin kilahtaa_VK = {s = c53A "kilahtaa"} ;
+lin kilaus_NK = {s = d39 "kilaus"} ;
+lin kilauttaa_VK = {s = c53A "kilauttaa"} ;
+lin kili_NK = {s = d05 "kili"} ;
+lin kiliasmi_NK = {s = d05 "kiliasmi"} ;
+lin kiliasti_NK = {s = d05 "kiliasti"} ;
+lin kiliastinen_NK = {s = d38 "kiliastinen"} ;
+lin kilina'_NK = {s = d12 "kilinä"} ;
+lin kilistella'_VK = {s = c67 "kilistellä"} ;
+lin kilista'_VK = {s = c66 "kilistä"} ;
+lin kilista'a'_VK = {s = c53 "kilistää"} ;
+lin kilisytta'a'_VK = {s = c53A "kilisyttää"} ;
+lin kiljahdella_VK = {s = c67A "kiljahdella"} ;
+lin kiljahdus_NK = {s = d39 "kiljahdus"} ;
+lin kiljahtaa_VK = {s = c53A "kiljahtaa"} ;
+lin kiljaista_VK = {s = c66 "kiljaista"} ;
+lin kiljaisu_NK = {s = d02 "kiljaisu"} ;
+lin kiljaus_NK = {s = d39 "kiljaus"} ;
+lin kiljoona_NK = {s = d10 "kiljoona"} ;
+lin kilju_NK = {s = d01 "kilju"} ;
+lin kiljua_VK = {s = c52 "kiljua"} ;
+lin kiljunta_NK = {s = d09A "kiljunta"} ;
+lin kiljuva_NK = {s = d10 "kiljuva"} ;
+lin kilkattaa_VK = {s = c53A "kilkattaa"} ;
+lin kilkatus_NK = {s = d39 "kilkatus"} ;
+lin kilke_NK = {s = d48A "kilke"} ;
+lin kilkka_NK = {s = d09A "kilkka"} ;
+lin kilkkaa_VK = {s = c78 "kilkkaa"} ;
+lin kilkki_NK = {s = d05A "kilkki"} ;
+lin kilkuttaa_VK = {s = c53A "kilkuttaa"} ;
+lin kilkutus_NK = {s = d39 "kilkutus"} ;
+lin killilla'a'n_AdvK = {s = c99 "killillään"} ;
+lin killinki_NK = {s = d05A "killinki"} ;
+lin killistella'_VK = {s = c67 "killistellä"} ;
+lin killitella'_VK = {s = c67A "killitellä"} ;
+lin killitta'a'_VK = {s = c53A "killittää"} ;
+lin killua_VK = {s = c52 "killua"} ;
+lin killutin_NK = {s = d33A "killutin"} ;
+lin kilo_1_NK = {s = d01 "kilo"} ;
+lin kilo_2_NK = {s = d01 "kilo"} ;
+lin kiloinen_NK = {s = d38 "kiloinen"} ;
+lin kiloittain_AdvK = {s = c99 "kiloittain"} ;
+lin kilometrinnielija'_NK = {s = d12 "kilometrinnielijä"} ;
+lin kilottaa_VK = {s = c53A "kilottaa"} ;
+lin kilpa_NK = {s = d09A "kilpa"} ;
+lin kilpaa_AdvK = {s = c99 "kilpaa"} ;
+lin kilpa_ammunta_NK = {s = d09A "kilpa-ammunta"} ;
+lin kilpailija_NK = {s = d12 "kilpailija"} ;
+lin kilpailla_VK = {s = c67 "kilpailla"} ;
+lin kilpailu_NK = {s = d02 "kilpailu"} ;
+lin kilpailuaika_NK = {s = d09A "kilpailuaika"} ;
+lin kilpailullinen_NK = {s = d38 "kilpailullinen"} ;
+lin kilpailuttaa_VK = {s = c53A "kilpailuttaa"} ;
+lin kilpalaulanta_NK = {s = d09A "kilpalaulanta"} ;
+lin kilpasilla_AdvK = {s = c99 "kilpasilla"} ;
+lin kilpasille_AdvK = {s = c99 "kilpasille"} ;
+lin kilpi_NK = {s = d07A "kilpi"} ;
+lin kilpistya'_VK = {s = c52 "kilpistyä"} ;
+lin kilpukka_NK = {s = d14A "kilpukka"} ;
+lin kilsa_NK = {s = d09 "kilsa"} ;
+lin kilta_NK = {s = d09A "kilta"} ;
+lin kiltisti_AdvK = {s = c99 "kiltisti"} ;
+lin kiltsi_NK = {s = d05 "kiltsi"} ;
+lin kiltteys_NK = {s = d40 "kiltteys"} ;
+lin kiltti_1_NK = {s = d05A "kiltti"} ;
+lin kiltti_2_NK = {s = d05A "kiltti"} ;
+lin kilttiys_NK = {s = d40 "kilttiys"} ;
+lin kilu_NK = {s = d01 "kilu"} ;
+lin kilvan_AdvK = {s = c99 "kilvan"} ;
+lin kilvaten_AdvK = {s = c99 "kilvaten"} ;
+lin kilvoitella_VK = {s = c67A "kilvoitella"} ;
+lin kilvoittelija_NK = {s = d12 "kilvoittelija"} ;
+lin kilvoittelu_NK = {s = d02 "kilvoittelu"} ;
+lin kilvoitus_NK = {s = d39 "kilvoitus"} ;
+lin kimaira_NK = {s = d09 "kimaira"} ;
+lin kimakasti_AdvK = {s = c99 "kimakasti"} ;
+lin kimakka_NK = {s = d14A "kimakka"} ;
+lin kimakkuus_NK = {s = d40 "kimakkuus"} ;
+lin kimalainen_NK = {s = d38 "kimalainen"} ;
+lin kimalle_NK = {s = d48A "kimalle"} ;
+lin kimallella_VK = {s = c67A "kimallella"} ;
+lin kimallus_NK = {s = d39 "kimallus"} ;
+lin kimaltaa_VK = {s = c54A "kimaltaa"} ;
+lin kimalteinen_NK = {s = d38 "kimalteinen"} ;
+lin kimaltelu_NK = {s = d02 "kimaltelu"} ;
+lin kimara_NK = {s = d12 "kimara"} ;
+lin kimbri_NK = {s = d05 "kimbri"} ;
+lin kimeys_NK = {s = d40 "kimeys"} ;
+lin kimea'_AK = {s = d15 "kimeä"} ;
+--+ lin kimea'sti_AdvK = {s = c99 "kimeästi"} ;
+lin kimitta'a'_VK = {s = c53A "kimittää"} ;
+lin kimitys_NK = {s = d39 "kimitys"} ;
+lin kimma_NK = {s = d09 "kimma"} ;
+lin kimmahdus_NK = {s = d39 "kimmahdus"} ;
+lin kimmahduttaa_VK = {s = c53A "kimmahduttaa"} ;
+lin kimmahtaa_VK = {s = c53A "kimmahtaa"} ;
+lin kimmastua_VK = {s = c52 "kimmastua"} ;
+lin kimmastus_NK = {s = d39 "kimmastus"} ;
+lin kimmastuttaa_VK = {s = c53A "kimmastuttaa"} ;
+lin kimmauttaa_VK = {s = c53A "kimmauttaa"} ;
+lin kimmelle_NK = {s = d48A "kimmelle"} ;
+lin kimmellella'_VK = {s = c67A "kimmellellä"} ;
+lin kimmellys_NK = {s = d39 "kimmellys"} ;
+lin kimmeltely_NK = {s = d02 "kimmeltely"} ;
+lin kimmelta'a'_VK = {s = c54A "kimmeltää"} ;
+lin kimmoinen_NK = {s = d38 "kimmoinen"} ;
+lin kimmoisa_AK = {s = d10 "kimmoisa"} ;
+--+ lin kimmoisasti_AdvK = {s = c99 "kimmoisasti"} ;
+lin kimmoisuus_NK = {s = d40 "kimmoisuus"} ;
+lin kimmoke_NK = {s = d48A "kimmoke"} ;
+lin kimmokerroin_NK = {s = d33A "kimmokerroin"} ;
+lin kimmoraja_NK = {s = d09 "kimmoraja"} ;
+lin kimmota_VK = {s = c74 "kimmota"} ;
+lin kimmoton_NK = {s = d34A "kimmoton"} ;
+lin kimmottomuus_NK = {s = d40 "kimmottomuus"} ;
+lin kimnaasi_NK = {s = d05 "kimnaasi"} ;
+lin kimo_NK = {s = d01 "kimo"} ;
+lin kimono_NK = {s = d02 "kimono"} ;
+lin kimpaannus_NK = {s = d39 "kimpaannus"} ;
+lin kimpaantua_VK = {s = c52A "kimpaantua"} ;
+lin kimpale_NK = {s = d48 "kimpale"} ;
+lin kimpi_NK = {s = d07A "kimpi"} ;
+lin kimpoilla_VK = {s = c67 "kimpoilla"} ;
+lin kimppa_NK = {s = d09A "kimppa"} ;
+lin kimppu_NK = {s = d01A "kimppu"} ;
+lin kimppuun_AdvK = {s = c99 "kimppuun"} ;
+lin kimppuuntua_VK = {s = c52A "kimppuuntua"} ;
+--? lin kimpsut_NK = {s = d01 "kimpsut"} ;
+lin kimpuittain_AdvK = {s = c99 "kimpuittain"} ;
+lin kimpussa_AdvK = {s = c99 "kimpussa"} ;
+lin kimpusta_AdvK = {s = c99 "kimpusta"} ;
+lin kimputtaa_VK = {s = c53A "kimputtaa"} ;
+lin kimputus_NK = {s = d39 "kimputus"} ;
+lin kimro'o'kki_NK = {s = d05A "kimröökki"} ;
+lin kimuli_NK = {s = d06 "kimuli"} ;
+lin kimurantti_NK = {s = d05A "kimurantti"} ;
+lin kina_1_NK = {s = d09 "kina"} ;
+lin kina_2_NK = {s = d09 "kina"} ;
+lin kinailla_VK = {s = c67 "kinailla"} ;
+lin kinailu_NK = {s = d02 "kinailu"} ;
+lin kinastella_VK = {s = c67 "kinastella"} ;
+lin kinastelu_NK = {s = d02 "kinastelu"} ;
+lin kinata_VK = {s = c73 "kinata"} ;
+lin kineettinen_NK = {s = d38 "kineettinen"} ;
+lin kinemaattinen_NK = {s = d38 "kinemaattinen"} ;
+lin kinematiikka_NK = {s = d09A "kinematiikka"} ;
+lin kinesteettinen_NK = {s = d38 "kinesteettinen"} ;
+lin kinetiikka_NK = {s = d09A "kinetiikka"} ;
+lin kingi_NK = {s = d05 "kingi"} ;
+lin kiniini_NK = {s = d05 "kiniini"} ;
+lin kinkata_VK = {s = c73A "kinkata"} ;
+--? lin kinkerit_NK = {s = d06 "kinkerit"} ;
+lin kinkkinen_NK = {s = d38 "kinkkinen"} ;
+lin kinkku_NK = {s = d01A "kinkku"} ;
+lin kinnas_NK = {s = d41A "kinnas"} ;
+lin kinner_NK = {s = d49A "kinner"} ;
+lin kino_NK = {s = d01 "kino"} ;
+lin kinos_NK = {s = d39 "kinos"} ;
+lin kinostaa_VK = {s = c53 "kinostaa"} ;
+lin kinostua_VK = {s = c52 "kinostua"} ;
+lin kintere_NK = {s = d49 "kintere"} ;
+lin kintereille_AdvK = {s = c99 "kintereille"} ;
+lin kintereilla'_AdvK = {s = c99 "kintereillä"} ;
+lin kintereilta'_AdvK = {s = c99 "kintereiltä"} ;
+lin kinttu_NK = {s = d01A "kinttu"} ;
+lin kinttuinen_NK = {s = d38 "kinttuinen"} ;
+lin kinua_VK = {s = c52 "kinua"} ;
+lin kinuski_NK = {s = d06 "kinuski"} ;
+lin kinuta_VK = {s = c74 "kinuta"} ;
+lin kioski_NK = {s = d05 "kioski"} ;
+lin kipaista_VK = {s = c66 "kipaista"} ;
+lin kipaisu_NK = {s = d02 "kipaisu"} ;
+lin kipakasti_AdvK = {s = c99 "kipakasti"} ;
+lin kipakka_NK = {s = d14A "kipakka"} ;
+lin kipakkuus_NK = {s = d40 "kipakkuus"} ;
+lin kipale_NK = {s = d48 "kipale"} ;
+lin kipata_VK = {s = c73A "kipata"} ;
+lin kipeno'ida'_VK = {s = c68 "kipenöidä"} ;
+lin kipertya'_VK = {s = c52A "kipertyä"} ;
+lin kiperta'a'_VK = {s = c54A "kipertää"} ;
+lin kiperyys_NK = {s = d40 "kiperyys"} ;
+lin kipera'_AK = {s = d10 "kiperä"} ;
+--+ lin kipera'sti_AdvK = {s = c99 "kiperästi"} ;
+lin kipeys_NK = {s = d40 "kipeys"} ;
+lin kipeytta'a'_VK = {s = c53A "kipeyttää"} ;
+lin kipeytya'_VK = {s = c52A "kipeytyä"} ;
+lin kipea'_AK = {s = d15 "kipeä"} ;
+--+ lin kipea'sti_AdvK = {s = c99 "kipeästi"} ;
+lin kipin_kapin_AdvK = {s = c99 "kipin kapin"} ;
+lin kipina'_NK = {s = d12 "kipinä"} ;
+lin kipino'ida'_VK = {s = c68 "kipinöidä"} ;
+lin kipino'inti_NK = {s = d05A "kipinöinti"} ;
+lin kipitella'_VK = {s = c67A "kipitellä"} ;
+lin kipitta'a'_VK = {s = c53A "kipittää"} ;
+lin kipollinen_NK = {s = d38 "kipollinen"} ;
+lin kippari_NK = {s = d06 "kippari"} ;
+lin kipparoida_VK = {s = c62 "kipparoida"} ;
+lin kippi_NK = {s = d05A "kippi"} ;
+lin kippis_AdvK = {s = c99 "kippis"} ;
+lin kippo_NK = {s = d01A "kippo"} ;
+lin kippura_NK = {s = d12 "kippura"} ;
+lin kippuraan_AdvK = {s = c99 "kippuraan"} ;
+lin kippurainen_NK = {s = d38 "kippurainen"} ;
+lin kippurassa_AdvK = {s = c99 "kippurassa"} ;
+lin kipristella'_VK = {s = c67 "kipristellä"} ;
+lin kipristya'_VK = {s = c52 "kipristyä"} ;
+lin kiprista'a'_VK = {s = c53 "kipristää"} ;
+lin kipsa_NK = {s = d09 "kipsa"} ;
+lin kipsaantua_VK = {s = c52A "kipsaantua"} ;
+lin kipsata_VK = {s = c73 "kipsata"} ;
+lin kipsaus_NK = {s = d39 "kipsaus"} ;
+lin kipsi_NK = {s = d05 "kipsi"} ;
+lin kipsinen_NK = {s = d38 "kipsinen"} ;
+lin kipu_NK = {s = d01A "kipu"} ;
+lin kipuilla_VK = {s = c67 "kipuilla"} ;
+lin kipuna_NK = {s = d12 "kipuna"} ;
+lin kipunoida_VK = {s = c68 "kipunoida"} ;
+lin kirahdus_NK = {s = d39 "kirahdus"} ;
+lin kirahtaa_VK = {s = c53A "kirahtaa"} ;
+lin kirahvi_NK = {s = d05 "kirahvi"} ;
+lin kiramo_NK = {s = d02 "kiramo"} ;
+lin kireta'_VK = {s = c72 "kiretä"} ;
+lin kireys_NK = {s = d40 "kireys"} ;
+lin kirea'_AK = {s = d15 "kireä"} ;
+lin kirea'lle_AdvK = {s = c99 "kireälle"} ;
+lin kirea'lla'_AdvK = {s = c99 "kireällä"} ;
+lin kirea'pipoinen_NK = {s = d38 "kireäpipoinen"} ;
+lin kirea'ssa'_AdvK = {s = c99 "kireässä"} ;
+--+ lin kirea'sti_AdvK = {s = c99 "kireästi"} ;
+lin kirgiisi_NK = {s = d05 "kirgiisi"} ;
+lin kiri_NK = {s = d05 "kiri"} ;
+lin kirimoija_NK = {s = d10 "kirimoija"} ;
+lin kiristeinen_NK = {s = d38 "kiristeinen"} ;
+lin kiristella'_VK = {s = c67 "kiristellä"} ;
+lin kiristely_NK = {s = d02 "kiristely"} ;
+lin kiristin_NK = {s = d33 "kiristin"} ;
+lin kiristyksissa'_AdvK = {s = c99 "kiristyksissä"} ;
+lin kiristys_NK = {s = d39 "kiristys"} ;
+lin kiristya'_VK = {s = c52 "kiristyä"} ;
+lin kirista'ja'_NK = {s = d10 "kiristäjä"} ;
+lin kirista'a'_VK = {s = c53 "kiristää"} ;
+lin kiritta'ja'_NK = {s = d10 "kirittäjä"} ;
+lin kiritta'a'_VK = {s = c53A "kirittää"} ;
+lin kiria'_VK = {s = c61 "kiriä"} ;
+lin kirja_NK = {s = d09 "kirja"} ;
+lin kirjaamo_NK = {s = d02 "kirjaamo"} ;
+lin kirjailija_NK = {s = d12 "kirjailija"} ;
+lin kirjailla_VK = {s = c67 "kirjailla"} ;
+lin kirjailu_NK = {s = d02 "kirjailu"} ;
+lin kirjaimelleen_AdvK = {s = c99 "kirjaimelleen"} ;
+lin kirjaimellinen_AK = {s = d38 "kirjaimellinen"} ;
+--+ lin kirjaimellisesti_AdvK = {s = c99 "kirjaimellisesti"} ;
+lin kirjaiminen_NK = {s = d38 "kirjaiminen"} ;
+lin kirjaimisto_NK = {s = d01 "kirjaimisto"} ;
+lin kirjain_NK = {s = d33 "kirjain"} ;
+lin kirjainkoko_NK = {s = d01A "kirjainkoko"} ;
+lin kirjake_NK = {s = d48A "kirjake"} ;
+lin kirjallinen_AK = {s = d38 "kirjallinen"} ;
+--+ lin kirjallisesti_AdvK = {s = c99 "kirjallisesti"} ;
+lin kirjallisuus_NK = {s = d40 "kirjallisuus"} ;
+lin kirjanen_NK = {s = d38 "kirjanen"} ;
+lin kirjanpidollinen_AK = {s = d38 "kirjanpidollinen"} ;
+--+ lin kirjanpidollisesti_AdvK = {s = c99 "kirjanpidollisesti"} ;
+lin kirjasin_NK = {s = d33 "kirjasin"} ;
+lin kirjasinkoko_NK = {s = d01A "kirjasinkoko"} ;
+lin kirjasto_NK = {s = d02 "kirjasto"} ;
+lin kirjata_VK = {s = c73 "kirjata"} ;
+lin kirjaus_NK = {s = d39 "kirjaus"} ;
+lin kirjauttaa_VK = {s = c53A "kirjauttaa"} ;
+lin kirjava_AK = {s = d10 "kirjava"} ;
+--+ lin kirjavasti_AdvK = {s = c99 "kirjavasti"} ;
+lin kirjavoida_VK = {s = c62 "kirjavoida"} ;
+lin kirjavoittaa_VK = {s = c53A "kirjavoittaa"} ;
+lin kirjavoitua_VK = {s = c52A "kirjavoitua"} ;
+lin kirjavuus_NK = {s = d40 "kirjavuus"} ;
+lin kirje_NK = {s = d48 "kirje"} ;
+lin kirjeellinen_AK = {s = d38 "kirjeellinen"} ;
+--+ lin kirjeellisesti_AdvK = {s = c99 "kirjeellisesti"} ;
+lin kirjeitse_AdvK = {s = c99 "kirjeitse"} ;
+lin kirjelma'_NK = {s = d10 "kirjelmä"} ;
+lin kirjelmo'ida'_VK = {s = c62 "kirjelmöidä"} ;
+lin kirjelmo'inti_NK = {s = d05A "kirjelmöinti"} ;
+lin kirjo_NK = {s = d01 "kirjo"} ;
+lin kirjoa_VK = {s = c52 "kirjoa"} ;
+lin kirjoinen_NK = {s = d38 "kirjoinen"} ;
+lin kirjoite_NK = {s = d48A "kirjoite"} ;
+lin kirjoitella_VK = {s = c67A "kirjoitella"} ;
+lin kirjoitelma_NK = {s = d10 "kirjoitelma"} ;
+lin kirjoitin_NK = {s = d33A "kirjoitin"} ;
+lin kirjoittaa_VK = {s = c53A "kirjoittaa"} ;
+lin kirjoittaja_NK = {s = d10 "kirjoittaja"} ;
+lin kirjoittamaton_NK = {s = d34A "kirjoittamaton"} ;
+lin kirjoittautua_VK = {s = c52A "kirjoittautua"} ;
+lin kirjoittelu_NK = {s = d02 "kirjoittelu"} ;
+lin kirjoittua_VK = {s = c52A "kirjoittua"} ;
+lin kirjoitus_NK = {s = d39 "kirjoitus"} ;
+lin kirjoituttaa_VK = {s = c53A "kirjoituttaa"} ;
+lin kirjomus_NK = {s = d39 "kirjomus"} ;
+lin kirjonta_NK = {s = d09A "kirjonta"} ;
+lin kirjontainen_NK = {s = d38 "kirjontainen"} ;
+lin kirjuri_NK = {s = d06 "kirjuri"} ;
+lin kirkaista_VK = {s = c66 "kirkaista"} ;
+lin kirkaisu_NK = {s = d02 "kirkaisu"} ;
+lin kirkas_AK = {s = d41A "kirkas"} ;
+lin kirkastaa_VK = {s = c53 "kirkastaa"} ;
+lin kirkaste_NK = {s = d48 "kirkaste"} ;
+lin kirkastua_VK = {s = c52 "kirkastua"} ;
+lin kirkastus_NK = {s = d39 "kirkastus"} ;
+lin kirkastuttaa_VK = {s = c53A "kirkastuttaa"} ;
+lin kirkasvaloinen_NK = {s = d38 "kirkasvaloinen"} ;
+--+ lin kirkkaasti_AdvK = {s = c99 "kirkkaasti"} ;
+lin kirkkaus_NK = {s = d40 "kirkkaus"} ;
+lin kirkko_NK = {s = d01A "kirkko"} ;
+lin kirkkoaika_NK = {s = d09A "kirkkoaika"} ;
+lin kirkollinen_AK = {s = d38 "kirkollinen"} ;
+--+ lin kirkollisesti_AdvK = {s = c99 "kirkollisesti"} ;
+lin kirkollisuus_NK = {s = d40 "kirkollisuus"} ;
+lin kirkonaika_NK = {s = d09A "kirkonaika"} ;
+lin kirkua_VK = {s = c52A "kirkua"} ;
+lin kirkuna_NK = {s = d12 "kirkuna"} ;
+lin kirkuva_NK = {s = d10 "kirkuva"} ;
+lin kirmailla_VK = {s = c67 "kirmailla"} ;
+lin kirmaista_VK = {s = c66 "kirmaista"} ;
+lin kirmata_VK = {s = c73 "kirmata"} ;
+lin kirnu_NK = {s = d01 "kirnu"} ;
+lin kirnuta_VK = {s = c74 "kirnuta"} ;
+lin kirnuuntua_VK = {s = c52A "kirnuuntua"} ;
+lin kirnuutua_VK = {s = c52A "kirnuutua"} ;
+lin kiro_NK = {s = d01 "kiro"} ;
+lin kiroilija_NK = {s = d12 "kiroilija"} ;
+lin kiroilla_VK = {s = c67 "kiroilla"} ;
+lin kiroilu_NK = {s = d02 "kiroilu"} ;
+lin kiroiluttaa_VK = {s = c53A "kiroiluttaa"} ;
+lin kirota_VK = {s = c74 "kirota"} ;
+lin kirottu_NK = {s = d01A "kirottu"} ;
+lin kirotusti_AdvK = {s = c99 "kirotusti"} ;
+lin kirous_NK = {s = d39 "kirous"} ;
+lin kirpaista_VK = {s = c66 "kirpaista"} ;
+lin kirpaisu_NK = {s = d02 "kirpaisu"} ;
+lin kirpakka_NK = {s = d14A "kirpakka"} ;
+lin kirpeys_NK = {s = d40 "kirpeys"} ;
+lin kirpeytta'a'_VK = {s = c53A "kirpeyttää"} ;
+lin kirpeytya'_VK = {s = c52A "kirpeytyä"} ;
+lin kirpea'_AK = {s = d15 "kirpeä"} ;
+--+ lin kirpea'sti_AdvK = {s = c99 "kirpeästi"} ;
+lin kirppa_NK = {s = d09A "kirppa"} ;
+lin kirppari_NK = {s = d06 "kirppari"} ;
+lin kirppis_NK = {s = d39 "kirppis"} ;
+lin kirppu_NK = {s = d01A "kirppu"} ;
+lin kirroosi_NK = {s = d05 "kirroosi"} ;
+lin kirroottinen_NK = {s = d38 "kirroottinen"} ;
+lin kirsi_NK = {s = d28 "kirsi"} ;
+lin kirsikka_NK = {s = d14A "kirsikka"} ;
+lin kirskahdus_NK = {s = d39 "kirskahdus"} ;
+lin kirskahtaa_VK = {s = c53A "kirskahtaa"} ;
+lin kirskaus_NK = {s = d39 "kirskaus"} ;
+lin kirskauttaa_VK = {s = c53A "kirskauttaa"} ;
+lin kirskua_VK = {s = c52 "kirskua"} ;
+lin kirskuna_NK = {s = d12 "kirskuna"} ;
+lin kirskunta_NK = {s = d09A "kirskunta"} ;
+lin kirskuttaa_VK = {s = c53A "kirskuttaa"} ;
+lin kirskutus_NK = {s = d39 "kirskutus"} ;
+lin kirstu_NK = {s = d01 "kirstu"} ;
+lin kirsu_NK = {s = d01 "kirsu"} ;
+lin kirurgi_NK = {s = d05 "kirurgi"} ;
+lin kirurgia_NK = {s = d12 "kirurgia"} ;
+lin kirurginen_AK = {s = d38 "kirurginen"} ;
+--+ lin kirurgisesti_AdvK = {s = c99 "kirurgisesti"} ;
+lin kirva_NK = {s = d09 "kirva"} ;
+lin kirveli_NK = {s = d06 "kirveli"} ;
+lin kirvellys_NK = {s = d39 "kirvellys"} ;
+lin kirvella'_VK = {s = c67 "kirvellä"} ;
+lin kirvelta'a'_VK = {s = c54A "kirveltää"} ;
+lin kirvely_NK = {s = d02 "kirvely"} ;
+lin kirves_NK = {s = d41 "kirves"} ;
+lin kirvinen_NK = {s = d38 "kirvinen"} ;
+lin kirvoittaa_VK = {s = c53A "kirvoittaa"} ;
+lin kirvota_VK = {s = c74A "kirvota"} ;
+lin kis_AdvK = {s = c99 "kis"} ;
+lin kisa_NK = {s = d09 "kisa"} ;
+lin kisailija_NK = {s = d12 "kisailija"} ;
+lin kisailla_VK = {s = c67 "kisailla"} ;
+lin kisailu_NK = {s = d02 "kisailu"} ;
+lin kisata_VK = {s = c73 "kisata"} ;
+lin kiska_NK = {s = d09 "kiska"} ;
+lin kiskaista_VK = {s = c66 "kiskaista"} ;
+lin kiskaisu_NK = {s = d02 "kiskaisu"} ;
+lin kisko_NK = {s = d01 "kisko"} ;
+lin kiskoa_VK = {s = c52 "kiskoa"} ;
+lin kiskoinen_1_NK = {s = d38 "kiskoinen"} ;
+lin kiskoinen_2_NK = {s = d38 "kiskoinen"} ;
+lin kiskoja_NK = {s = d10 "kiskoja"} ;
+lin kiskonta_NK = {s = d09A "kiskonta"} ;
+lin kiskotella_VK = {s = c67A "kiskotella"} ;
+lin kiskottaa_1_VK = {s = c53A "kiskottaa"} ;
+lin kiskottaa_2_VK = {s = c53A "kiskottaa"} ;
+lin kiskottelu_NK = {s = d02 "kiskottelu"} ;
+lin kiskotus_NK = {s = d39 "kiskotus"} ;
+lin kiskoutua_VK = {s = c52A "kiskoutua"} ;
+lin kismitta'a'_VK = {s = c53A "kismittää"} ;
+lin kissa_NK = {s = d09 "kissa"} ;
+lin kissanha'nna'nveto_NK = {s = d01A "kissanhännänveto"} ;
+lin kissus_NK = {s = d39 "kissus"} ;
+lin kisu_NK = {s = d01 "kisu"} ;
+lin kita_NK = {s = d09A "kita"} ;
+lin kitara_NK = {s = d13 "kitara"} ;
+lin kitata_VK = {s = c73A "kitata"} ;
+lin kiteeto'n_NK = {s = d34A "kiteetön"} ;
+lin kiteinen_NK = {s = d38 "kiteinen"} ;
+lin kiteisyys_NK = {s = d40 "kiteisyys"} ;
+lin kiteyma'_NK = {s = d10 "kiteymä"} ;
+lin kiteytta'a'_VK = {s = c53A "kiteyttää"} ;
+lin kiteytyma'_NK = {s = d10 "kiteytymä"} ;
+lin kiteytys_NK = {s = d39 "kiteytys"} ;
+lin kiteytya'_VK = {s = c52A "kiteytyä"} ;
+lin kitiini_NK = {s = d06 "kitiini"} ;
+lin kitina'_NK = {s = d12 "kitinä"} ;
+lin kitistya'_VK = {s = c52 "kitistyä"} ;
+lin kitista'_VK = {s = c66 "kitistä"} ;
+lin kitka_NK = {s = d09 "kitka"} ;
+lin kitkainen_NK = {s = d38 "kitkainen"} ;
+lin kitkakerroin_NK = {s = d33A "kitkakerroin"} ;
+lin kitkaton_NK = {s = d34A "kitkaton"} ;
+lin kitkattomasti_AdvK = {s = c99 "kitkattomasti"} ;
+lin kitkenta'_NK = {s = d09A "kitkentä"} ;
+lin kitkeryys_NK = {s = d40 "kitkeryys"} ;
+lin kitkera'_AK = {s = d10 "kitkerä"} ;
+--+ lin kitkera'sti_AdvK = {s = c99 "kitkerästi"} ;
+lin kitkero'_NK = {s = d02 "kitkerö"} ;
+lin kitkero'itta'a'_VK = {s = c53A "kitkeröittää"} ;
+lin kitkero'itya'_VK = {s = c52A "kitkeröityä"} ;
+lin kitkea'_VK = {s = c58 "kitkeä"} ;
+lin kitku_NK = {s = d01 "kitku"} ;
+lin kitkutella_VK = {s = c67A "kitkutella"} ;
+lin kitkuttaa_VK = {s = c53A "kitkuttaa"} ;
+lin kitkutus_NK = {s = d39 "kitkutus"} ;
+--+ lin kitsaasti_AdvK = {s = c99 "kitsaasti"} ;
+lin kitsas_AK = {s = d41 "kitsas"} ;
+lin kitsastella_VK = {s = c67 "kitsastella"} ;
+lin kitsastelu_NK = {s = d02 "kitsastelu"} ;
+lin kitsaus_NK = {s = d40 "kitsaus"} ;
+lin kitsch_NK = {s = d05 "kitsch"} ;
+lin kitsi_1_NK = {s = d05 "kitsi"} ;
+lin kitsi_2_NK = {s = d05 "kitsi"} ;
+lin kittaus_NK = {s = d39 "kittaus"} ;
+lin kitti_NK = {s = d05A "kitti"} ;
+lin kitua_VK = {s = c52A "kitua"} ;
+lin kitukuusi_NK = {s = d24 "kitukuusi"} ;
+--+ lin kituliaasti_AdvK = {s = c99 "kituliaasti"} ;
+lin kituliaisuus_NK = {s = d40 "kituliaisuus"} ;
+lin kitulias_AK = {s = d41 "kitulias"} ;
+lin kitupiikki_NK = {s = d05A "kitupiikki"} ;
+--? lin kituset_NK = {s = d38 "kituset"} ;
+lin kituuttaa_VK = {s = c53A "kituuttaa"} ;
+lin kiuas_NK = {s = d41A "kiuas"} ;
+lin kiukku_NK = {s = d01A "kiukku"} ;
+lin kiukkuilla_VK = {s = c67 "kiukkuilla"} ;
+lin kiukkuinen_AK = {s = d38 "kiukkuinen"} ;
+--+ lin kiukkuisesti_AdvK = {s = c99 "kiukkuisesti"} ;
+lin kiukuissaan_AdvK = {s = c99 "kiukuissaan"} ;
+lin kiukustua_VK = {s = c52 "kiukustua"} ;
+lin kiukutella_VK = {s = c67A "kiukutella"} ;
+lin kiukuttaa_VK = {s = c53A "kiukuttaa"} ;
+lin kiukuttelija_NK = {s = d12 "kiukuttelija"} ;
+lin kiukuttelu_NK = {s = d02 "kiukuttelu"} ;
+lin kiulu_NK = {s = d01 "kiulu"} ;
+lin kiulukka_NK = {s = d14A "kiulukka"} ;
+lin kiuru_NK = {s = d01 "kiuru"} ;
+lin kiusa_NK = {s = d09 "kiusa"} ;
+lin kiusaaja_NK = {s = d10 "kiusaaja"} ;
+lin kiusaantua_VK = {s = c52A "kiusaantua"} ;
+lin kiusallinen_AK = {s = d38 "kiusallinen"} ;
+--+ lin kiusallisesti_AdvK = {s = c99 "kiusallisesti"} ;
+lin kiusallisuus_NK = {s = d40 "kiusallisuus"} ;
+lin kiusata_VK = {s = c73 "kiusata"} ;
+lin kiusaus_NK = {s = d39 "kiusaus"} ;
+lin kiusoitella_VK = {s = c67A "kiusoitella"} ;
+lin kiusoittelu_NK = {s = d02 "kiusoittelu"} ;
+lin kiva_AK = {s = d09 "kiva"} ;
+lin kivahdus_NK = {s = d39 "kivahdus"} ;
+lin kivahtaa_VK = {s = c53A "kivahtaa"} ;
+--+ lin kivasti_AdvK = {s = c99 "kivasti"} ;
+lin kivelio'_NK = {s = d03 "kiveliö"} ;
+lin kivellinen_NK = {s = d38 "kivellinen"} ;
+lin kivenhioja_NK = {s = d10 "kivenhioja"} ;
+lin kivennuoliainen_NK = {s = d38 "kivennuoliainen"} ;
+lin kivenna'inen_NK = {s = d38 "kivennäinen"} ;
+lin kivertya'_VK = {s = c52A "kivertyä"} ;
+lin kiverta'a'_VK = {s = c54A "kivertää"} ;
+lin kiveryys_NK = {s = d40 "kiveryys"} ;
+lin kivera'_AK = {s = d11 "kiverä"} ;
+--+ lin kivera'sti_AdvK = {s = c99 "kiverästi"} ;
+lin kives_NK = {s = d39 "kives"} ;
+lin kivesta'a'_VK = {s = c53 "kivestää"} ;
+lin kivettyma'_NK = {s = d10 "kivettymä"} ;
+lin kivettyneisyys_NK = {s = d40 "kivettyneisyys"} ;
+lin kivettya'_VK = {s = c52A "kivettyä"} ;
+lin kivetta'a'_VK = {s = c53A "kivettää"} ;
+lin kivetys_NK = {s = d39 "kivetys"} ;
+lin kiveta'_VK = {s = c74 "kivetä"} ;
+lin kiveyma'_NK = {s = d10 "kiveymä"} ;
+lin kiveys_NK = {s = d39 "kiveys"} ;
+lin kiveytyma'_NK = {s = d10 "kiveytymä"} ;
+lin kivi_NK = {s = d07 "kivi"} ;
+lin kiwi_NK = {s = d05 "kiwi"} ;
+lin kivikko_NK = {s = d04A "kivikko"} ;
+lin kivikkoinen_NK = {s = d38 "kivikkoinen"} ;
+lin kivikkoisuus_NK = {s = d40 "kivikkoisuus"} ;
+lin kivinen_NK = {s = d38 "kivinen"} ;
+lin kivipiira_NK = {s = d09 "kivipiira"} ;
+lin kivistys_NK = {s = d39 "kivistys"} ;
+lin kivista'a'_VK = {s = c53 "kivistää"} ;
+lin kivisyys_NK = {s = d40 "kivisyys"} ;
+lin kivitta'a'_VK = {s = c53A "kivittää"} ;
+lin kivitys_NK = {s = d39 "kivitys"} ;
+--+ lin kivuliaasti_AdvK = {s = c99 "kivuliaasti"} ;
+lin kivulias_AK = {s = d41 "kivulias"} ;
+lin kivullinen_NK = {s = d38 "kivullinen"} ;
+lin kivulloinen_NK = {s = d38 "kivulloinen"} ;
+lin kivulloisuus_NK = {s = d40 "kivulloisuus"} ;
+lin kivuta_VK = {s = c74A "kivuta"} ;
+lin kivuton_NK = {s = d34A "kivuton"} ;
+lin kivuttomasti_AdvK = {s = c99 "kivuttomasti"} ;
+lin kivuttomuus_NK = {s = d40 "kivuttomuus"} ;
+lin kiva'a'ri_NK = {s = d06 "kivääri"} ;
+lin klaani_NK = {s = d05 "klaani"} ;
+lin klaarata_VK = {s = c73 "klaarata"} ;
+lin klaava_NK = {s = d09 "klaava"} ;
+lin klaavi_NK = {s = d05 "klaavi"} ;
+lin klaffi_NK = {s = d05 "klaffi"} ;
+lin klahvi_NK = {s = d05 "klahvi"} ;
+lin klamydia_NK = {s = d12 "klamydia"} ;
+lin klani_NK = {s = d05 "klani"} ;
+lin klapi_NK = {s = d05 "klapi"} ;
+lin klappi_NK = {s = d05A "klappi"} ;
+lin klarinetisti_NK = {s = d05 "klarinetisti"} ;
+lin klarinetti_NK = {s = d05A "klarinetti"} ;
+lin klarkia_NK = {s = d12 "klarkia"} ;
+lin klassifikaatio_NK = {s = d03 "klassifikaatio"} ;
+lin klassifioida_VK = {s = c62 "klassifioida"} ;
+lin klassifiointi_NK = {s = d05A "klassifiointi"} ;
+lin klassikko_NK = {s = d04A "klassikko"} ;
+lin klassillinen_NK = {s = d38 "klassillinen"} ;
+lin klassinen_AK = {s = d38 "klassinen"} ;
+--+ lin klassisesti_AdvK = {s = c99 "klassisesti"} ;
+lin klassisismi_NK = {s = d05 "klassisismi"} ;
+lin klassisistinen_NK = {s = d38 "klassisistinen"} ;
+lin klassisuus_NK = {s = d40 "klassisuus"} ;
+lin klaustrofobia_NK = {s = d12 "klaustrofobia"} ;
+lin klausuuli_NK = {s = d05 "klausuuli"} ;
+lin klematis_NK = {s = d39 "klematis"} ;
+lin klementiini_NK = {s = d05 "klementiini"} ;
+lin klemmari_NK = {s = d06 "klemmari"} ;
+lin kleptomaani_NK = {s = d05 "kleptomaani"} ;
+lin kleptomaaninen_NK = {s = d38 "kleptomaaninen"} ;
+lin kleptomania_NK = {s = d12 "kleptomania"} ;
+lin kliimaksi_NK = {s = d05 "kliimaksi"} ;
+lin kliinikko_NK = {s = d04A "kliinikko"} ;
+lin kliininen_AK = {s = d38 "kliininen"} ;
+--+ lin kliinisesti_AdvK = {s = c99 "kliinisesti"} ;
+lin kliivia_NK = {s = d12 "kliivia"} ;
+lin klikata_VK = {s = c73A "klikata"} ;
+lin klikki_NK = {s = d05A "klikki"} ;
+lin klikkiytya'_VK = {s = c52A "klikkiytyä"} ;
+lin klimakteerinen_NK = {s = d38 "klimakteerinen"} ;
+lin klimakterium_NK = {s = d05 "klimakterium"} ;
+lin klimatologia_NK = {s = d12 "klimatologia"} ;
+lin klimppi_NK = {s = d05A "klimppi"} ;
+lin klimppiytya'_VK = {s = c52A "klimppiytyä"} ;
+lin klinikka_NK = {s = d14A "klinikka"} ;
+lin klinkkeri_NK = {s = d06 "klinkkeri"} ;
+lin klipsi_NK = {s = d05 "klipsi"} ;
+lin klisee_NK = {s = d20 "klisee"} ;
+lin kliseytya'_VK = {s = c52A "kliseytyä"} ;
+lin klitoris_NK = {s = d39 "klitoris"} ;
+lin kloaakki_NK = {s = d05A "kloaakki"} ;
+lin kloonata_VK = {s = c73 "kloonata"} ;
+lin kloonaus_NK = {s = d39 "kloonaus"} ;
+lin klooni_NK = {s = d05 "klooni"} ;
+lin kloorata_VK = {s = c73 "kloorata"} ;
+lin klooraus_NK = {s = d39 "klooraus"} ;
+lin kloori_NK = {s = d05 "kloori"} ;
+lin kloorittaa_VK = {s = c53A "kloorittaa"} ;
+lin klooritus_NK = {s = d39 "klooritus"} ;
+lin klootti_NK = {s = d05A "klootti"} ;
+lin kloppi_NK = {s = d05A "kloppi"} ;
+lin klorofylli_NK = {s = d05 "klorofylli"} ;
+lin klosetti_NK = {s = d05A "klosetti"} ;
+lin klovni_NK = {s = d05 "klovni"} ;
+lin klubi_NK = {s = d05 "klubi"} ;
+lin klusteri_NK = {s = d06 "klusteri"} ;
+lin kluutti_NK = {s = d05A "kluutti"} ;
+lin klo'ntti_NK = {s = d05A "klöntti"} ;
+lin knalli_NK = {s = d05 "knalli"} ;
+lin knesset_NK = {s = d05 "knesset"} ;
+lin knock_out_NK = {s = d05 "knock-out"} ;
+lin knoppi_NK = {s = d05A "knoppi"} ;
+lin knoppologia_NK = {s = d12 "knoppologia"} ;
+lin knorri_NK = {s = d05 "knorri"} ;
+lin know_how_NK = {s = d22 "know-how"} ;
+lin koagulaatio_NK = {s = d03 "koagulaatio"} ;
+lin koaguloida_VK = {s = c62 "koaguloida"} ;
+lin koagulointi_NK = {s = d05A "koagulointi"} ;
+lin koaguloitua_VK = {s = c52A "koaguloitua"} ;
+lin koaksiaalinen_NK = {s = d38 "koaksiaalinen"} ;
+lin koala_NK = {s = d09 "koala"} ;
+lin koalitio_NK = {s = d03 "koalitio"} ;
+lin koboltti_NK = {s = d05A "koboltti"} ;
+lin kobra_NK = {s = d10 "kobra"} ;
+lin kodeiini_NK = {s = d05 "kodeiini"} ;
+lin kodifikaatio_NK = {s = d03 "kodifikaatio"} ;
+lin kodifioida_VK = {s = c62 "kodifioida"} ;
+lin kodifiointi_NK = {s = d05A "kodifiointi"} ;
+lin kodikas_AK = {s = d41A "kodikas"} ;
+--+ lin kodikkaasti_AdvK = {s = c99 "kodikkaasti"} ;
+lin kodikkuus_NK = {s = d40 "kodikkuus"} ;
+lin koditon_NK = {s = d34A "koditon"} ;
+lin kodittomuus_NK = {s = d40 "kodittomuus"} ;
+lin koe_NK = {s = d48A "koe"} ;
+lin koeaika_NK = {s = d09A "koeaika"} ;
+lin koeffisientti_NK = {s = d05A "koeffisientti"} ;
+lin koestaa_VK = {s = c53 "koestaa"} ;
+lin koestus_NK = {s = d39 "koestus"} ;
+lin koetella_VK = {s = c67A "koetella"} ;
+lin koetin_NK = {s = d33A "koetin"} ;
+lin koettaa_VK = {s = c53A "koettaa"} ;
+lin koetteeksi_AdvK = {s = c99 "koetteeksi"} ;
+lin koetteella_AdvK = {s = c99 "koetteella"} ;
+lin koetteelle_AdvK = {s = c99 "koetteelle"} ;
+lin koetteilla_AdvK = {s = c99 "koetteilla"} ;
+lin koetteille_AdvK = {s = c99 "koetteille"} ;
+lin koettelemus_NK = {s = d39 "koettelemus"} ;
+lin koettelu_NK = {s = d02 "koettelu"} ;
+lin koetus_NK = {s = d39 "koetus"} ;
+lin kofeiini_NK = {s = d05 "kofeiini"} ;
+lin kognitiivinen_NK = {s = d38 "kognitiivinen"} ;
+lin kognitio_NK = {s = d03 "kognitio"} ;
+lin kohahdella_VK = {s = c67A "kohahdella"} ;
+lin kohahdus_NK = {s = d39 "kohahdus"} ;
+lin kohahduttaa_VK = {s = c53A "kohahduttaa"} ;
+lin kohahtaa_VK = {s = c53A "kohahtaa"} ;
+lin kohaus_NK = {s = d39 "kohaus"} ;
+lin kohautella_VK = {s = c67A "kohautella"} ;
+lin kohauttaa_1_VK = {s = c53A "kohauttaa"} ;
+lin kohauttaa_2_VK = {s = c53A "kohauttaa"} ;
+lin kohautus_NK = {s = d39 "kohautus"} ;
+lin kohdakkain_AdvK = {s = c99 "kohdakkain"} ;
+lin kohdakkoin_AdvK = {s = c99 "kohdakkoin"} ;
+lin kohdata_VK = {s = c73A "kohdata"} ;
+lin kohdatusten_AdvK = {s = c99 "kohdatusten"} ;
+lin kohde_NK = {s = d48A "kohde"} ;
+lin kohdella_VK = {s = c67A "kohdella"} ;
+lin kohden_AdvK = {s = c99 "kohden"} ;
+lin kohdentaa_VK = {s = c54A "kohdentaa"} ;
+lin kohdentua_VK = {s = c52A "kohdentua"} ;
+lin kohdistaa_VK = {s = c53 "kohdistaa"} ;
+lin kohdistin_NK = {s = d33 "kohdistin"} ;
+lin kohdistua_VK = {s = c52 "kohdistua"} ;
+lin kohdistus_NK = {s = d39 "kohdistus"} ;
+lin kohdittain_AdvK = {s = c99 "kohdittain"} ;
+lin kohdittainen_NK = {s = d38 "kohdittainen"} ;
+lin koheesio_NK = {s = d03 "koheesio"} ;
+lin koheli_NK = {s = d06 "koheli"} ;
+lin kohelo_NK = {s = d02 "kohelo"} ;
+lin koheloida_VK = {s = c68 "koheloida"} ;
+lin koheltaa_VK = {s = c54A "koheltaa"} ;
+lin kohennella_VK = {s = c67A "kohennella"} ;
+lin kohennus_NK = {s = d39 "kohennus"} ;
+lin kohentaa_VK = {s = c54A "kohentaa"} ;
+lin kohentua_VK = {s = c52A "kohentua"} ;
+lin koherenssi_NK = {s = d05 "koherenssi"} ;
+lin koherentti_NK = {s = d05A "koherentti"} ;
+lin koheta_VK = {s = c72 "koheta"} ;
+lin kohina_NK = {s = d13 "kohina"} ;
+lin kohista_VK = {s = c66 "kohista"} ;
+lin kohmeeseen_AdvK = {s = c99 "kohmeeseen"} ;
+lin kohmeessa_AdvK = {s = c99 "kohmeessa"} ;
+lin kohmeinen_NK = {s = d38 "kohmeinen"} ;
+lin kohmelo_NK = {s = d02 "kohmelo"} ;
+lin kohmeloinen_NK = {s = d38 "kohmeloinen"} ;
+lin kohmettaa_VK = {s = c53A "kohmettaa"} ;
+lin kohmettua_VK = {s = c52A "kohmettua"} ;
+lin kohmetus_NK = {s = d39 "kohmetus"} ;
+lin koho_NK = {s = d01 "koho"} ;
+lin kohoama_NK = {s = d10 "kohoama"} ;
+lin kohoilla_VK = {s = c67 "kohoilla"} ;
+lin kohokas_NK = {s = d41A "kohokas"} ;
+lin kohokki_NK = {s = d05A "kohokki"} ;
+lin kohokohta_NK = {s = d10A "kohokohta"} ;
+lin koholla_AdvK = {s = c99 "koholla"} ;
+lin kohollaan_AdvK = {s = c99 "kohollaan"} ;
+lin koholle_AdvK = {s = c99 "koholle"} ;
+lin koholleen_AdvK = {s = c99 "koholleen"} ;
+lin kohortti_NK = {s = d05A "kohortti"} ;
+lin kohota_VK = {s = c74 "kohota"} ;
+lin kohottaa_VK = {s = c53A "kohottaa"} ;
+lin kohottaja_NK = {s = d10 "kohottaja"} ;
+lin kohottautua_VK = {s = c52A "kohottautua"} ;
+lin kohotus_NK = {s = d39 "kohotus"} ;
+lin kohouma_NK = {s = d10 "kohouma"} ;
+lin kohoutuma_NK = {s = d10 "kohoutuma"} ;
+lin kohta_1_NK = {s = d10A "kohta"} ;
+lin kohta_2_AdvK = {s = c99 "kohta"} ;
+lin kohtaan_AdvK = {s = c99 "kohtaan"} ;
+lin kohtainen_AK = {s = d38 "kohtainen"} ;
+--+ lin kohtaisesti_AdvK = {s = c99 "kohtaisesti"} ;
+lin kohtaisuus_NK = {s = d40 "kohtaisuus"} ;
+--+ lin kohtalaisesti_AdvK = {s = c99 "kohtalaisesti"} ;
+lin kohtalo_NK = {s = d02 "kohtalo"} ;
+lin kohtalokas_AK = {s = d41A "kohtalokas"} ;
+--+ lin kohtalokkaasti_AdvK = {s = c99 "kohtalokkaasti"} ;
+lin kohtalokkuus_NK = {s = d40 "kohtalokkuus"} ;
+lin kohtalotar_NK = {s = d32A "kohtalotar"} ;
+lin kohtapuoliin_AdvK = {s = c99 "kohtapuoliin"} ;
+lin kohtapuolin_AdvK = {s = c99 "kohtapuolin"} ;
+lin kohtauksittain_AdvK = {s = c99 "kohtauksittain"} ;
+lin kohtauksittainen_NK = {s = d38 "kohtauksittainen"} ;
+lin kohtaus_NK = {s = d39 "kohtaus"} ;
+--+ lin kohteliaasti_AdvK = {s = c99 "kohteliaasti"} ;
+lin kohteliaisuus_NK = {s = d40 "kohteliaisuus"} ;
+lin kohtelias_AK = {s = d41 "kohtelias"} ;
+lin kohtelu_NK = {s = d02 "kohtelu"} ;
+lin kohti_AdvK = {s = c99 "kohti"} ;
+lin kohtio_NK = {s = d03 "kohtio"} ;
+lin kohtu_NK = {s = d01A "kohtu"} ;
+lin kohtuullinen_AK = {s = d38 "kohtuullinen"} ;
+--+ lin kohtuullisesti_AdvK = {s = c99 "kohtuullisesti"} ;
+lin kohtuullisuus_NK = {s = d40 "kohtuullisuus"} ;
+lin kohtuus_NK = {s = d40 "kohtuus"} ;
+lin kohtuuton_NK = {s = d34A "kohtuuton"} ;
+lin kohtuuttomasti_AdvK = {s = c99 "kohtuuttomasti"} ;
+lin kohtuuttomuus_NK = {s = d40 "kohtuuttomuus"} ;
+lin kohu_NK = {s = d01 "kohu"} ;
+lin kohuta_VK = {s = c75 "kohuta"} ;
+lin kohva_NK = {s = d10 "kohva"} ;
+lin koi_1_NK = {s = d18 "koi"} ;
+lin koi_2_NK = {s = d18 "koi"} ;
+lin koikkelehtia_VK = {s = c61A "koikkelehtia"} ;
+lin koillinen_NK = {s = d38 "koillinen"} ;
+lin koilliskolkka_NK = {s = d10A "koilliskolkka"} ;
+lin koinsyo'ma'_NK = {s = d10 "koinsyömä"} ;
+lin koipeliini_NK = {s = d05 "koipeliini"} ;
+lin koipi_NK = {s = d07A "koipi"} ;
+lin koipinen_NK = {s = d38 "koipinen"} ;
+lin koira_NK = {s = d10 "koira"} ;
+lin koirankeksi_NK = {s = d05 "koirankeksi"} ;
+lin koirankoppi_NK = {s = d05A "koirankoppi"} ;
+lin koiras_NK = {s = d41 "koiras"} ;
+lin koiruus_NK = {s = d40 "koiruus"} ;
+lin koisa_NK = {s = d10 "koisa"} ;
+lin koisata_VK = {s = c73 "koisata"} ;
+lin koisia_VK = {s = c61 "koisia"} ;
+lin koiso_NK = {s = d01 "koiso"} ;
+lin koite_NK = {s = d48A "koite"} ;
+lin koitos_NK = {s = d39 "koitos"} ;
+lin koittaa_VK = {s = c53A "koittaa"} ;
+lin koitto_NK = {s = d01A "koitto"} ;
+lin koitua_VK = {s = c52A "koitua"} ;
+lin koitus_NK = {s = d39 "koitus"} ;
+lin koivikko_NK = {s = d04A "koivikko"} ;
+lin koivikkoinen_NK = {s = d38 "koivikkoinen"} ;
+lin koivisto_NK = {s = d02 "koivisto"} ;
+lin koivu_NK = {s = d01 "koivu"} ;
+lin koivuinen_NK = {s = d38 "koivuinen"} ;
+lin koje_NK = {s = d48 "koje"} ;
+lin kojeistaa_VK = {s = c53 "kojeistaa"} ;
+lin kojeisto_NK = {s = d01 "kojeisto"} ;
+lin kojootti_NK = {s = d05A "kojootti"} ;
+lin koju_NK = {s = d01 "koju"} ;
+lin kokaiini_NK = {s = d05 "kokaiini"} ;
+lin kokainismi_NK = {s = d05 "kokainismi"} ;
+lin kokainisti_NK = {s = d05 "kokainisti"} ;
+lin kokardi_NK = {s = d05 "kokardi"} ;
+lin kokata_VK = {s = c73A "kokata"} ;
+lin kokea_VK = {s = c58A "kokea"} ;
+lin kokeeksi_AdvK = {s = c99 "kokeeksi"} ;
+lin kokeellinen_AK = {s = d38 "kokeellinen"} ;
+--+ lin kokeellisesti_AdvK = {s = c99 "kokeellisesti"} ;
+lin kokeilla_VK = {s = c67 "kokeilla"} ;
+lin kokeilu_NK = {s = d02 "kokeilu"} ;
+lin kokelas_NK = {s = d41 "kokelas"} ;
+lin kokelasaika_NK = {s = d09A "kokelasaika"} ;
+lin kokematon_NK = {s = d34A "kokematon"} ;
+lin kokemattomuus_NK = {s = d40 "kokemattomuus"} ;
+lin kokemus_NK = {s = d39 "kokemus"} ;
+--+ lin kokemuspera'isesti_AdvK = {s = c99 "kokemusperäisesti"} ;
+--+ lin kokeneesti_AdvK = {s = c99 "kokeneesti"} ;
+lin kokeneisuus_NK = {s = d40 "kokeneisuus"} ;
+lin kokenut_AK = {s = d47 "kokenut"} ;
+lin koketeerata_VK = {s = c73 "koketeerata"} ;
+lin koketteria_NK = {s = d12 "koketteria"} ;
+lin koketti_NK = {s = d05A "koketti"} ;
+lin kokka_NK = {s = d10A "kokka"} ;
+lin kokkaaja_NK = {s = d10 "kokkaaja"} ;
+lin kokkailla_VK = {s = c67 "kokkailla"} ;
+lin kokkainen_NK = {s = d38 "kokkainen"} ;
+lin kokkare_NK = {s = d48 "kokkare"} ;
+lin kokkareinen_NK = {s = d38 "kokkareinen"} ;
+--? lin kokkarit_NK = {s = d06 "kokkarit"} ;
+lin kokkaroitua_VK = {s = c52A "kokkaroitua"} ;
+lin kokkaus_NK = {s = d39 "kokkaus"} ;
+lin kokkeli_NK = {s = d06 "kokkeli"} ;
+lin kokki_1_NK = {s = d05A "kokki"} ;
+lin kokki_2_NK = {s = d05A "kokki"} ;
+lin kokko_1_NK = {s = d01A "kokko"} ;
+lin kokko_2_NK = {s = d01A "kokko"} ;
+lin koko_1_NK = {s = d01A "koko"} ;
+lin koko_2_AdvK = {s = c99 "koko"} ;
+lin kokoaja_NK = {s = d10 "kokoaja"} ;
+lin kokoelma_NK = {s = d10 "kokoelma"} ;
+lin kokoilla_VK = {s = c67 "kokoilla"} ;
+lin kokoinen_NK = {s = d38 "kokoinen"} ;
+lin kokonaan_AdvK = {s = c99 "kokonaan"} ;
+--+ lin kokonaisvaltaisesti_AdvK = {s = c99 "kokonaisvaltaisesti"} ;
+lin kokoomus_NK = {s = d39 "kokoomus"} ;
+lin kokoon_AdvK = {s = c99 "kokoon"} ;
+lin kokoonpanna_VK = {s = c67 "kokoonpanna"} ;
+lin kokoonpantava_NK = {s = d10 "kokoonpantava"} ;
+lin kokoontaitettava_NK = {s = d10 "kokoontaitettava"} ;
+lin kokoontua_VK = {s = c52A "kokoontua"} ;
+lin kokopa'iva'toiminen_NK = {s = d38 "kokopäivätoiminen"} ;
+lin kokotti_NK = {s = d05A "kokotti"} ;
+lin kokouma_NK = {s = d10 "kokouma"} ;
+lin kokous_NK = {s = d39 "kokous"} ;
+lin kokoustaa_VK = {s = c53 "kokoustaa"} ;
+lin kokoutua_VK = {s = c52A "kokoutua"} ;
+lin kokoutuma_NK = {s = d10 "kokoutuma"} ;
+lin koksaamo_NK = {s = d02 "koksaamo"} ;
+lin koksata_VK = {s = c73 "koksata"} ;
+lin koksautua_VK = {s = c52A "koksautua"} ;
+lin koksi_NK = {s = d05 "koksi"} ;
+lin koksiintua_VK = {s = c52A "koksiintua"} ;
+lin koksittaa_VK = {s = c53A "koksittaa"} ;
+lin koksittamo_NK = {s = d01 "koksittamo"} ;
+lin koksittua_VK = {s = c52A "koksittua"} ;
+lin koksiutua_VK = {s = c52A "koksiutua"} ;
+lin koktaili_NK = {s = d05 "koktaili"} ;
+lin kola_NK = {s = d10 "kola"} ;
+lin kolahdella_VK = {s = c67A "kolahdella"} ;
+lin kolahdus_NK = {s = d39 "kolahdus"} ;
+lin kolahtaa_VK = {s = c53A "kolahtaa"} ;
+lin kolari_NK = {s = d06 "kolari"} ;
+lin kolaroida_VK = {s = c62 "kolaroida"} ;
+lin kolaroimaton_NK = {s = d34A "kolaroimaton"} ;
+lin kolata_VK = {s = c73 "kolata"} ;
+lin kolaus_NK = {s = d39 "kolaus"} ;
+lin kolauttaa_VK = {s = c53A "kolauttaa"} ;
+lin kolea_AK = {s = d15 "kolea"} ;
+--+ lin koleasti_AdvK = {s = c99 "koleasti"} ;
+lin koleerikko_NK = {s = d04A "koleerikko"} ;
+lin koleerinen_NK = {s = d38 "koleerinen"} ;
+lin kolehti_NK = {s = d05A "kolehti"} ;
+lin kolera_NK = {s = d12 "kolera"} ;
+lin kolesteroli_NK = {s = d05 "kolesteroli"} ;
+lin koleus_NK = {s = d40 "koleus"} ;
+lin kolhaista_VK = {s = c66 "kolhaista"} ;
+lin kolhaisu_NK = {s = d02 "kolhaisu"} ;
+lin kolhia_VK = {s = c61 "kolhia"} ;
+lin kolhiintua_VK = {s = c52A "kolhiintua"} ;
+lin kolhiintuma_NK = {s = d10 "kolhiintuma"} ;
+lin kolhiutua_VK = {s = c52A "kolhiutua"} ;
+lin kolhiutuma_NK = {s = d10 "kolhiutuma"} ;
+lin kolho_NK = {s = d01 "kolho"} ;
+lin kolhoosi_NK = {s = d06 "kolhoosi"} ;
+lin kolhu_NK = {s = d01 "kolhu"} ;
+lin kolibri_NK = {s = d05 "kolibri"} ;
+lin koliikki_NK = {s = d05A "koliikki"} ;
+lin kolikko_NK = {s = d04A "kolikko"} ;
+lin kolina_1_NK = {s = d12 "kolina"} ;
+lin kolina_2_NK = {s = d12 "kolina"} ;
+lin kolista_VK = {s = c66 "kolista"} ;
+lin kolistaa_VK = {s = c53 "kolistaa"} ;
+lin kolistella_VK = {s = c67 "kolistella"} ;
+lin kolisuttaa_VK = {s = c53A "kolisuttaa"} ;
+lin kolja_NK = {s = d10 "kolja"} ;
+lin koljatti_NK = {s = d05A "koljatti"} ;
+lin kolkata_1_VK = {s = c73A "kolkata"} ;
+lin kolkata_2_VK = {s = c73A "kolkata"} ;
+lin kolke_NK = {s = d48A "kolke"} ;
+lin kolkka_1_NK = {s = d10A "kolkka"} ;
+lin kolkka_2_NK = {s = d10A "kolkka"} ;
+lin kolkkaa_VK = {s = c78 "kolkkaa"} ;
+lin kolkko_NK = {s = d01A "kolkko"} ;
+lin kolkkous_NK = {s = d40 "kolkkous"} ;
+lin kolkosti_AdvK = {s = c99 "kolkosti"} ;
+lin kolkutella_VK = {s = c67A "kolkutella"} ;
+lin kolkutin_NK = {s = d33A "kolkutin"} ;
+lin kolkuttaa_VK = {s = c53A "kolkuttaa"} ;
+lin kolkutus_NK = {s = d39 "kolkutus"} ;
+lin kollaasi_NK = {s = d05 "kollaasi"} ;
+lin kollageeni_NK = {s = d05 "kollageeni"} ;
+lin kollapsi_NK = {s = d05 "kollapsi"} ;
+lin kollata_VK = {s = c73 "kollata"} ;
+lin kollega_NK = {s = d13 "kollega"} ;
+lin kollegiaalinen_NK = {s = d38 "kollegiaalinen"} ;
+lin kolleginen_NK = {s = d38 "kolleginen"} ;
+lin kollegio_NK = {s = d03 "kollegio"} ;
+lin kollektiivi_NK = {s = d05 "kollektiivi"} ;
+lin kollektiivinen_AK = {s = d38 "kollektiivinen"} ;
+--+ lin kollektiivisesti_AdvK = {s = c99 "kollektiivisesti"} ;
+lin kollektiivisuus_NK = {s = d40 "kollektiivisuus"} ;
+lin kollektivismi_NK = {s = d05 "kollektivismi"} ;
+lin kollektivisoida_VK = {s = c62 "kollektivisoida"} ;
+lin kollektivisti_NK = {s = d05 "kollektivisti"} ;
+lin kollektivistinen_NK = {s = d38 "kollektivistinen"} ;
+lin kollektivoida_VK = {s = c62 "kollektivoida"} ;
+lin kollektori_NK = {s = d05 "kollektori"} ;
+lin kolli_1_NK = {s = d05 "kolli"} ;
+lin kolli_2_NK = {s = d05 "kolli"} ;
+lin kollo_NK = {s = d01 "kollo"} ;
+lin kolloidi_NK = {s = d05 "kolloidi"} ;
+lin kolloidinen_NK = {s = d38 "kolloidinen"} ;
+lin kollokvio_NK = {s = d03 "kollokvio"} ;
+lin kollokviumi_NK = {s = d05 "kollokviumi"} ;
+lin kollottaa_VK = {s = c53A "kollottaa"} ;
+lin kollotus_NK = {s = d39 "kollotus"} ;
+lin kolmannes_NK = {s = d39 "kolmannes"} ;
+lin kolmas_NK = {s = d45 "kolmas"} ;
+lin kolmasti_AdvK = {s = c99 "kolmasti"} ;
+lin kolme_AK = {s = d08 "kolme"} ;
+lin kolmestaan_AdvK = {s = c99 "kolmestaan"} ;
+--+ lin kolmesti_AdvK = {s = c99 "kolmesti"} ;
+lin kolmia_AdvK = {s = c99 "kolmia"} ;
+lin kolmijakoisuus_NK = {s = d40 "kolmijakoisuus"} ;
+lin kolmikko_NK = {s = d04A "kolmikko"} ;
+lin kolmiloikkaaja_NK = {s = d10 "kolmiloikkaaja"} ;
+lin kolminainen_NK = {s = d38 "kolminainen"} ;
+lin kolminaisuus_NK = {s = d40 "kolminaisuus"} ;
+lin kolminapainen_NK = {s = d38 "kolminapainen"} ;
+--+ lin kolminkertaisesti_AdvK = {s = c99 "kolminkertaisesti"} ;
+lin kolminkertaistaa_VK = {s = c53 "kolminkertaistaa"} ;
+lin kolminkertaistua_VK = {s = c52 "kolminkertaistua"} ;
+lin kolmio_NK = {s = d03 "kolmio"} ;
+lin kolmioida_VK = {s = c62 "kolmioida"} ;
+lin kolmiointi_NK = {s = d05A "kolmiointi"} ;
+lin kolmisen_AdvK = {s = c99 "kolmisen"} ;
+lin kolmisenkymmenta'_AdvK = {s = c99 "kolmisenkymmentä"} ;
+lin kolmisin_AdvK = {s = c99 "kolmisin"} ;
+lin kolmistaan_AdvK = {s = c99 "kolmistaan"} ;
+lin kolmittain_AdvK = {s = c99 "kolmittain"} ;
+lin kolmituumainen_NK = {s = d38 "kolmituumainen"} ;
+--+ lin kolmia'a'nisesti_AdvK = {s = c99 "kolmiäänisesti"} ;
+lin kolmoisvoltti_NK = {s = d05A "kolmoisvoltti"} ;
+lin kolmonen_NK = {s = d38 "kolmonen"} ;
+lin kolo_NK = {s = d01 "kolo"} ;
+lin koloa_VK = {s = c52 "koloa"} ;
+lin koloinen_NK = {s = d38 "koloinen"} ;
+lin kolonia_NK = {s = d12 "kolonia"} ;
+lin kolonialismi_NK = {s = d05 "kolonialismi"} ;
+lin kolonialisti_NK = {s = d05 "kolonialisti"} ;
+lin kolonialistinen_NK = {s = d38 "kolonialistinen"} ;
+lin kolonna_NK = {s = d10 "kolonna"} ;
+lin kolonni_NK = {s = d05 "kolonni"} ;
+lin koloratuuri_NK = {s = d05 "koloratuuri"} ;
+lin kolorismi_NK = {s = d05 "kolorismi"} ;
+lin koloristinen_NK = {s = d38 "koloristinen"} ;
+lin kolossaalinen_NK = {s = d38 "kolossaalinen"} ;
+lin kolossi_NK = {s = d05 "kolossi"} ;
+lin kolottaa_VK = {s = c53A "kolottaa"} ;
+lin kolotus_NK = {s = d39 "kolotus"} ;
+lin kolpakko_NK = {s = d04A "kolpakko"} ;
+lin kolpakollinen_NK = {s = d38 "kolpakollinen"} ;
+lin koltiainen_NK = {s = d38 "koltiainen"} ;
+lin koltta_NK = {s = d10A "koltta"} ;
+lin kolttonen_NK = {s = d38 "kolttonen"} ;
+lin kolttu_NK = {s = d01A "kolttu"} ;
+lin kolumbaario_NK = {s = d03 "kolumbaario"} ;
+lin kolumni_NK = {s = d05 "kolumni"} ;
+lin kolumnisti_NK = {s = d05 "kolumnisti"} ;
+lin koluta_VK = {s = c74 "koluta"} ;
+lin kolvi_NK = {s = d05 "kolvi"} ;
+lin kombinaatio_NK = {s = d03 "kombinaatio"} ;
+lin kombinaatti_NK = {s = d05A "kombinaatti"} ;
+lin kombinoida_VK = {s = c62 "kombinoida"} ;
+lin kombinointi_NK = {s = d05A "kombinointi"} ;
+lin kombinoitua_VK = {s = c52A "kombinoitua"} ;
+lin komea_AK = {s = d15 "komea"} ;
+--+ lin komeasti_AdvK = {s = c99 "komeasti"} ;
+lin komedia_NK = {s = d12 "komedia"} ;
+lin komedienne_NK = {s = d08 "komedienne"} ;
+lin komeetta_NK = {s = d09A "komeetta"} ;
+lin komeilla_VK = {s = c67 "komeilla"} ;
+lin komeilu_NK = {s = d02 "komeilu"} ;
+lin komendantti_NK = {s = d05A "komendantti"} ;
+lin komennella_VK = {s = c67A "komennella"} ;
+lin komennus_NK = {s = d39 "komennus"} ;
+lin komentaa_VK = {s = c54A "komentaa"} ;
+lin komentaja_NK = {s = d10 "komentaja"} ;
+lin komentelu_NK = {s = d02 "komentelu"} ;
+lin komento_NK = {s = d01A "komento"} ;
+lin komero_NK = {s = d02 "komero"} ;
+lin komeus_NK = {s = d40 "komeus"} ;
+lin komi_NK = {s = d05 "komi"} ;
+lin komiikka_NK = {s = d14A "komiikka"} ;
+lin komisario_NK = {s = d03 "komisario"} ;
+lin komissaari_NK = {s = d05 "komissaari"} ;
+lin komissio_NK = {s = d03 "komissio"} ;
+lin komissiona'a'ri_NK = {s = d05 "komissionääri"} ;
+lin komistaa_VK = {s = c53 "komistaa"} ;
+lin komistua_VK = {s = c52 "komistua"} ;
+lin komistus_NK = {s = d39 "komistus"} ;
+lin komitatiivi_NK = {s = d05 "komitatiivi"} ;
+lin komitea_NK = {s = d12 "komitea"} ;
+lin kommari_NK = {s = d06 "kommari"} ;
+lin kommellus_NK = {s = d39 "kommellus"} ;
+lin kommentaari_NK = {s = d05 "kommentaari"} ;
+lin kommentaattori_NK = {s = d06 "kommentaattori"} ;
+lin kommentoida_VK = {s = c62 "kommentoida"} ;
+lin kommentoija_NK = {s = d10 "kommentoija"} ;
+lin kommentti_NK = {s = d05A "kommentti"} ;
+lin kommervenkki_NK = {s = d05A "kommervenkki"} ;
+lin kommodori_NK = {s = d05 "kommodori"} ;
+lin kommunikaatio_NK = {s = d03 "kommunikaatio"} ;
+lin kommunikea_NK = {s = d12 "kommunikea"} ;
+lin kommunikoida_VK = {s = c62 "kommunikoida"} ;
+lin kommunismi_NK = {s = d05 "kommunismi"} ;
+lin kommunisti_NK = {s = d05 "kommunisti"} ;
+lin kommunistinen_NK = {s = d38 "kommunistinen"} ;
+lin kommutaatio_NK = {s = d03 "kommutaatio"} ;
+lin kommutaattori_NK = {s = d06 "kommutaattori"} ;
+lin kommutoida_VK = {s = c62 "kommutoida"} ;
+lin kommuuni_NK = {s = d06 "kommuuni"} ;
+lin kommuuniasuminen_NK = {s = d38 "kommuuniasuminen"} ;
+lin kompa_NK = {s = d10A "kompa"} ;
+lin kompakti_NK = {s = d05 "kompakti"} ;
+lin komparaatio_NK = {s = d03 "komparaatio"} ;
+lin komparatiivi_NK = {s = d05 "komparatiivi"} ;
+lin komparatiivinen_NK = {s = d38 "komparatiivinen"} ;
+lin komparoida_VK = {s = c62 "komparoida"} ;
+lin kompassi_NK = {s = d05 "kompassi"} ;
+lin kompastella_VK = {s = c67 "kompastella"} ;
+lin kompastelu_NK = {s = d02 "kompastelu"} ;
+lin kompastua_VK = {s = c52 "kompastua"} ;
+lin kompastus_NK = {s = d39 "kompastus"} ;
+lin kompastuttaa_VK = {s = c53A "kompastuttaa"} ;
+lin kompata_VK = {s = c73A "kompata"} ;
+lin kompensaatio_NK = {s = d03 "kompensaatio"} ;
+lin kompensatorinen_NK = {s = d38 "kompensatorinen"} ;
+lin kompensoida_VK = {s = c62 "kompensoida"} ;
+lin kompensoitua_VK = {s = c52A "kompensoitua"} ;
+lin kompetenssi_NK = {s = d05 "kompetenssi"} ;
+lin kompetentti_NK = {s = d05A "kompetentti"} ;
+lin kompleksi_NK = {s = d05 "kompleksi"} ;
+lin kompleksikas_NK = {s = d41A "kompleksikas"} ;
+lin kompleksinen_NK = {s = d38 "kompleksinen"} ;
+lin kompleksisuus_NK = {s = d40 "kompleksisuus"} ;
+lin komplementaarinen_NK = {s = d38 "komplementaarinen"} ;
+lin komplementti_NK = {s = d05A "komplementti"} ;
+lin komplikaatio_NK = {s = d03 "komplikaatio"} ;
+lin komplisoida_VK = {s = c62 "komplisoida"} ;
+lin komplisoitua_VK = {s = c52A "komplisoitua"} ;
+lin komponentti_NK = {s = d05A "komponentti"} ;
+lin kompositio_NK = {s = d03 "kompositio"} ;
+lin komposti_NK = {s = d05 "komposti"} ;
+lin kompostoida_VK = {s = c62 "kompostoida"} ;
+lin kompostointi_NK = {s = d05A "kompostointi"} ;
+lin kompostori_NK = {s = d05 "kompostori"} ;
+lin kompotti_NK = {s = d05A "kompotti"} ;
+lin komppania_NK = {s = d12 "komppania"} ;
+lin komppi_NK = {s = d05A "komppi"} ;
+lin kompressi_NK = {s = d05 "kompressi"} ;
+lin kompressori_NK = {s = d06 "kompressori"} ;
+lin kompromettoida_VK = {s = c62 "kompromettoida"} ;
+lin kompromissi_NK = {s = d05 "kompromissi"} ;
+lin kompura_NK = {s = d12 "kompura"} ;
+lin kompuroida_VK = {s = c62 "kompuroida"} ;
+lin kompus_NK = {s = d39 "kompus"} ;
+lin kondensaatio_NK = {s = d03 "kondensaatio"} ;
+lin kondensaattori_NK = {s = d06 "kondensaattori"} ;
+lin kondensoida_VK = {s = c62 "kondensoida"} ;
+lin kondensoitua_VK = {s = c52A "kondensoitua"} ;
+lin kondiittori_NK = {s = d06 "kondiittori"} ;
+lin kondis_NK = {s = d39 "kondis"} ;
+lin konditionaali_NK = {s = d05 "konditionaali"} ;
+lin konditionaalinen_NK = {s = d38 "konditionaalinen"} ;
+lin konditoria_NK = {s = d12 "konditoria"} ;
+lin kondomi_NK = {s = d06 "kondomi"} ;
+lin kondori_NK = {s = d06 "kondori"} ;
+lin kondukto'o'ri_NK = {s = d05 "konduktööri"} ;
+lin kondylooma_NK = {s = d10 "kondylooma"} ;
+lin kone_NK = {s = d48 "kone"} ;
+lin koneellinen_AK = {s = d38 "koneellinen"} ;
+--+ lin koneellisesti_AdvK = {s = c99 "koneellisesti"} ;
+lin koneellistaa_VK = {s = c53 "koneellistaa"} ;
+lin koneellistua_VK = {s = c52 "koneellistua"} ;
+lin koneellisuus_NK = {s = d40 "koneellisuus"} ;
+lin koneikko_NK = {s = d01A "koneikko"} ;
+lin koneinen_NK = {s = d38 "koneinen"} ;
+lin koneistaa_VK = {s = c53 "koneistaa"} ;
+lin koneistaja_NK = {s = d10 "koneistaja"} ;
+lin koneisto_NK = {s = d02 "koneisto"} ;
+lin koneistua_VK = {s = c52 "koneistua"} ;
+lin koneistus_NK = {s = d39 "koneistus"} ;
+lin konekoodinen_NK = {s = d38 "konekoodinen"} ;
+lin koneka'a'nta'minen_NK = {s = d38 "konekääntäminen"} ;
+--+ lin konemaisesti_AdvK = {s = c99 "konemaisesti"} ;
+lin konferenssi_NK = {s = d05 "konferenssi"} ;
+lin konfirmaatio_NK = {s = d03 "konfirmaatio"} ;
+lin konfirmandi_NK = {s = d05 "konfirmandi"} ;
+lin konfirmoida_VK = {s = c62 "konfirmoida"} ;
+lin konflikti_NK = {s = d05 "konflikti"} ;
+lin konfutselainen_NK = {s = d38 "konfutselainen"} ;
+lin konfutselaisuus_NK = {s = d40 "konfutselaisuus"} ;
+lin kongressi_NK = {s = d05 "kongressi"} ;
+lin kongruenssi_NK = {s = d05 "kongruenssi"} ;
+lin kongruentti_NK = {s = d05A "kongruentti"} ;
+lin kongruoida_VK = {s = c62 "kongruoida"} ;
+lin koni_NK = {s = d05 "koni"} ;
+lin konjakki_NK = {s = d05A "konjakki"} ;
+lin konjugaatio_NK = {s = d03 "konjugaatio"} ;
+lin konjugoida_VK = {s = c62 "konjugoida"} ;
+lin konjugointi_NK = {s = d05A "konjugointi"} ;
+lin konjunktio_NK = {s = d03 "konjunktio"} ;
+lin konjunktuuri_NK = {s = d05 "konjunktuuri"} ;
+lin konkari_NK = {s = d06 "konkari"} ;
+lin konkata_VK = {s = c73A "konkata"} ;
+lin konkelo_NK = {s = d02 "konkelo"} ;
+lin konki_NK = {s = d05A "konki"} ;
+lin konkistadori_NK = {s = d05 "konkistadori"} ;
+lin konkka_NK = {s = d10A "konkka"} ;
+lin konkkaronkka_NK = {s = d10A "konkkaronkka"} ;
+lin konklaavi_NK = {s = d05 "konklaavi"} ;
+lin konkordanssi_NK = {s = d05 "konkordanssi"} ;
+lin konkreettinen_AK = {s = d38 "konkreettinen"} ;
+--+ lin konkreettisesti_AdvK = {s = c99 "konkreettisesti"} ;
+lin konkreettistaa_VK = {s = c53 "konkreettistaa"} ;
+lin konkreettistua_VK = {s = c52 "konkreettistua"} ;
+lin konkreettisuus_NK = {s = d40 "konkreettisuus"} ;
+lin konkretia_NK = {s = d12 "konkretia"} ;
+lin konkretismi_NK = {s = d05 "konkretismi"} ;
+lin konkretisoida_VK = {s = c62 "konkretisoida"} ;
+lin konkretisoitua_VK = {s = c52A "konkretisoitua"} ;
+lin konkretisti_NK = {s = d05 "konkretisti"} ;
+lin konkurrenssi_NK = {s = d05 "konkurrenssi"} ;
+lin konkurssi_NK = {s = d05 "konkurssi"} ;
+lin konna_NK = {s = d10 "konna"} ;
+lin konnari_NK = {s = d06 "konnari"} ;
+lin konnuus_NK = {s = d40 "konnuus"} ;
+lin konossementti_NK = {s = d05A "konossementti"} ;
+lin konsa_AdvK = {s = c99 "konsa"} ;
+lin konsaan_AdvK = {s = c99 "konsaan"} ;
+lin konsanaan_AdvK = {s = c99 "konsanaan"} ;
+lin konsensus_NK = {s = d39 "konsensus"} ;
+lin konsentraatio_NK = {s = d03 "konsentraatio"} ;
+lin konsentraatti_NK = {s = d05A "konsentraatti"} ;
+lin konsentroida_VK = {s = c62 "konsentroida"} ;
+lin konsentrointi_NK = {s = d05A "konsentrointi"} ;
+lin konsentroitua_VK = {s = c52A "konsentroitua"} ;
+lin konsepti_NK = {s = d05 "konsepti"} ;
+lin konserni_NK = {s = d05 "konserni"} ;
+lin konsertoida_VK = {s = c62 "konsertoida"} ;
+lin konsertti_NK = {s = d05A "konsertti"} ;
+lin konsertto_NK = {s = d01A "konsertto"} ;
+lin konservaattori_NK = {s = d06 "konservaattori"} ;
+lin konservatiivi_NK = {s = d05 "konservatiivi"} ;
+lin konservatiivinen_AK = {s = d38 "konservatiivinen"} ;
+--+ lin konservatiivisesti_AdvK = {s = c99 "konservatiivisesti"} ;
+lin konservatiivisuus_NK = {s = d40 "konservatiivisuus"} ;
+lin konservatismi_NK = {s = d05 "konservatismi"} ;
+lin konservatorio_NK = {s = d03 "konservatorio"} ;
+lin konservoida_VK = {s = c62 "konservoida"} ;
+lin konservoija_NK = {s = d10 "konservoija"} ;
+lin konsiili_NK = {s = d05 "konsiili"} ;
+lin konsistenssi_NK = {s = d05 "konsistenssi"} ;
+lin konsistori_NK = {s = d06 "konsistori"} ;
+lin konsoli_NK = {s = d06 "konsoli"} ;
+lin konsonantti_NK = {s = d05A "konsonantti"} ;
+lin konsortio_NK = {s = d03 "konsortio"} ;
+lin konstaapeli_NK = {s = d06 "konstaapeli"} ;
+lin konstailija_NK = {s = d12 "konstailija"} ;
+lin konstailla_VK = {s = c67 "konstailla"} ;
+lin konstanssi_NK = {s = d05 "konstanssi"} ;
+lin konstantti_NK = {s = d05A "konstantti"} ;
+lin konsti_NK = {s = d05 "konsti"} ;
+lin konstikas_AK = {s = d41A "konstikas"} ;
+--+ lin konstikkaasti_AdvK = {s = c99 "konstikkaasti"} ;
+lin konstikkuus_NK = {s = d40 "konstikkuus"} ;
+lin konstitutionaalinen_NK = {s = d38 "konstitutionaalinen"} ;
+lin konstitutionalismi_NK = {s = d05 "konstitutionalismi"} ;
+lin konstituutio_NK = {s = d03 "konstituutio"} ;
+lin konstruktiivinen_NK = {s = d38 "konstruktiivinen"} ;
+lin konstruktio_NK = {s = d03 "konstruktio"} ;
+lin konstruktivismi_NK = {s = d05 "konstruktivismi"} ;
+lin konstruoida_VK = {s = c62 "konstruoida"} ;
+lin konstruointi_NK = {s = d05A "konstruointi"} ;
+lin konsulaatti_NK = {s = d05A "konsulaatti"} ;
+lin konsulentti_NK = {s = d05A "konsulentti"} ;
+lin konsuli_NK = {s = d06 "konsuli"} ;
+lin konsultaatio_NK = {s = d03 "konsultaatio"} ;
+lin konsultatiivinen_NK = {s = d38 "konsultatiivinen"} ;
+lin konsultoida_VK = {s = c62 "konsultoida"} ;
+lin konsultointi_NK = {s = d05A "konsultointi"} ;
+lin konsultti_NK = {s = d05A "konsultti"} ;
+lin konsumerismi_NK = {s = d05 "konsumerismi"} ;
+lin konsumeristinen_NK = {s = d38 "konsumeristinen"} ;
+lin kontakti_NK = {s = d05 "kontakti"} ;
+lin kontallaan_AdvK = {s = c99 "kontallaan"} ;
+lin kontalleen_AdvK = {s = c99 "kontalleen"} ;
+lin kontata_VK = {s = c73A "kontata"} ;
+lin konteineri_NK = {s = d06 "konteineri"} ;
+lin konteksti_NK = {s = d05 "konteksti"} ;
+lin kontillaan_AdvK = {s = c99 "kontillaan"} ;
+lin kontilleen_AdvK = {s = c99 "kontilleen"} ;
+lin kontingentti_NK = {s = d05A "kontingentti"} ;
+lin kontinuumi_NK = {s = d05 "kontinuumi"} ;
+lin kontio_NK = {s = d03 "kontio"} ;
+lin kontrahti_NK = {s = d05A "kontrahti"} ;
+lin kontrapunkti_NK = {s = d05 "kontrapunkti"} ;
+lin kontrapunktinen_NK = {s = d38 "kontrapunktinen"} ;
+lin kontrasti_NK = {s = d05 "kontrasti"} ;
+lin kontrastoida_VK = {s = c62 "kontrastoida"} ;
+lin kontrolli_NK = {s = d05 "kontrolli"} ;
+lin kontrolloida_VK = {s = c62 "kontrolloida"} ;
+lin kontrollointi_NK = {s = d05A "kontrollointi"} ;
+lin konttailla_VK = {s = c67 "konttailla"} ;
+lin konttaus_NK = {s = d39 "konttaus"} ;
+lin kontti_1_NK = {s = d05A "kontti"} ;
+lin kontti_2_NK = {s = d05A "kontti"} ;
+lin kontti_3_NK = {s = d05A "kontti"} ;
+lin kontto_NK = {s = d01A "kontto"} ;
+lin konttori_NK = {s = d06 "konttori"} ;
+lin konttoristua_VK = {s = c52 "konttoristua"} ;
+lin kontu_NK = {s = d01A "kontu"} ;
+lin konvehti_NK = {s = d05A "konvehti"} ;
+lin konventio_NK = {s = d03 "konventio"} ;
+lin konventionaalinen_NK = {s = d38 "konventionaalinen"} ;
+lin konventti_NK = {s = d05A "konventti"} ;
+lin konvergenssi_NK = {s = d05 "konvergenssi"} ;
+lin konvergentti_NK = {s = d05A "konvergentti"} ;
+lin konversio_NK = {s = d03 "konversio"} ;
+lin koodaaja_NK = {s = d10 "koodaaja"} ;
+lin koodata_VK = {s = c73 "koodata"} ;
+lin koodaus_NK = {s = d39 "koodaus"} ;
+lin koodeksi_NK = {s = d05 "koodeksi"} ;
+lin koodi_NK = {s = d05 "koodi"} ;
+lin koodittaa_VK = {s = c53A "koodittaa"} ;
+lin koodittaja_NK = {s = d10 "koodittaja"} ;
+lin kooditus_NK = {s = d39 "kooditus"} ;
+lin kookas_NK = {s = d41A "kookas"} ;
+lin kookosvoi_NK = {s = d18 "kookosvoi"} ;
+lin koolata_VK = {s = c73 "koolata"} ;
+lin koolaus_NK = {s = d39 "koolaus"} ;
+lin koolinki_NK = {s = d05A "koolinki"} ;
+lin koolla_AdvK = {s = c99 "koolla"} ;
+lin koolle_AdvK = {s = c99 "koolle"} ;
+lin kooma_NK = {s = d10 "kooma"} ;
+lin koomikko_NK = {s = d04A "koomikko"} ;
+lin koominen_AK = {s = d38 "koominen"} ;
+--+ lin koomisesti_AdvK = {s = c99 "koomisesti"} ;
+lin koomisuus_NK = {s = d40 "koomisuus"} ;
+lin koommin_AdvK = {s = c99 "koommin"} ;
+lin koonnos_NK = {s = d39 "koonnos"} ;
+lin koontaa_VK = {s = c54A "koontaa"} ;
+lin koonti_NK = {s = d05A "koonti"} ;
+lin kooperaatio_NK = {s = d03 "kooperaatio"} ;
+lin kooperatiivinen_NK = {s = d38 "kooperatiivinen"} ;
+lin koordinaatio_NK = {s = d03 "koordinaatio"} ;
+lin koordinaatisto_NK = {s = d02 "koordinaatisto"} ;
+lin koordinaatta_NK = {s = d09A "koordinaatta"} ;
+lin koordinaatti_NK = {s = d05A "koordinaatti"} ;
+lin koordinaattori_NK = {s = d06 "koordinaattori"} ;
+lin koordinoida_VK = {s = c62 "koordinoida"} ;
+lin koordinoija_NK = {s = d10 "koordinoija"} ;
+lin koordinointi_NK = {s = d05A "koordinointi"} ;
+lin koossa_AdvK = {s = c99 "koossa"} ;
+lin koostaa_VK = {s = c53 "koostaa"} ;
+lin kooste_NK = {s = d48 "kooste"} ;
+lin koosteinen_NK = {s = d38 "koosteinen"} ;
+lin koostelma_NK = {s = d10 "koostelma"} ;
+lin koosto_NK = {s = d01 "koosto"} ;
+lin koostua_VK = {s = c52 "koostua"} ;
+lin koostumus_NK = {s = d39 "koostumus"} ;
+lin koota_VK = {s = c74A "koota"} ;
+lin kop_AdvK = {s = c99 "kop"} ;
+lin kopahdella_VK = {s = c67A "kopahdella"} ;
+lin kopahdus_NK = {s = d39 "kopahdus"} ;
+lin kopahtaa_VK = {s = c53A "kopahtaa"} ;
+lin kopallinen_NK = {s = d38 "kopallinen"} ;
+lin kopata_VK = {s = c73A "kopata"} ;
+lin kopaus_NK = {s = d39 "kopaus"} ;
+lin kopautella_VK = {s = c67A "kopautella"} ;
+lin kopauttaa_VK = {s = c53A "kopauttaa"} ;
+lin kopautus_NK = {s = d39 "kopautus"} ;
+lin kopea_AK = {s = d15 "kopea"} ;
+--+ lin kopeasti_AdvK = {s = c99 "kopeasti"} ;
+lin kopeekka_NK = {s = d14A "kopeekka"} ;
+lin kopeilla_VK = {s = c67 "kopeilla"} ;
+lin kopeloida_VK = {s = c62 "kopeloida"} ;
+lin kopernikaaninen_NK = {s = d38 "kopernikaaninen"} ;
+lin kopeus_NK = {s = d40 "kopeus"} ;
+lin kopina_NK = {s = d13 "kopina"} ;
+lin kopio_NK = {s = d03 "kopio"} ;
+lin kopioida_VK = {s = c62 "kopioida"} ;
+lin kopioija_NK = {s = d10 "kopioija"} ;
+lin kopiointi_NK = {s = d05A "kopiointi"} ;
+lin kopista_VK = {s = c66 "kopista"} ;
+lin kopistaa_VK = {s = c53 "kopistaa"} ;
+lin kopistella_VK = {s = c67 "kopistella"} ;
+lin kopisti_NK = {s = d05 "kopisti"} ;
+lin kopisuttaa_VK = {s = c53A "kopisuttaa"} ;
+lin kopla_NK = {s = d10 "kopla"} ;
+lin koplata_VK = {s = c73 "koplata"} ;
+lin koppa_NK = {s = d10A "koppa"} ;
+lin koppava_AK = {s = d10 "koppava"} ;
+--+ lin koppavasti_AdvK = {s = c99 "koppavasti"} ;
+lin koppavuus_NK = {s = d40 "koppavuus"} ;
+lin koppelo_NK = {s = d02 "koppelo"} ;
+lin koppero_NK = {s = d02 "koppero"} ;
+lin koppi_1_NK = {s = d05A "koppi"} ;
+lin koppi_2_NK = {s = d05A "koppi"} ;
+lin koppura_NK = {s = d12 "koppura"} ;
+lin koppurainen_NK = {s = d38 "koppurainen"} ;
+lin kopra_NK = {s = d10 "kopra"} ;
+lin kopsaa_VK = {s = c78 "kopsaa"} ;
+lin kopsahdella_VK = {s = c67A "kopsahdella"} ;
+lin kopsahdus_NK = {s = d39 "kopsahdus"} ;
+lin kopsahtaa_VK = {s = c53A "kopsahtaa"} ;
+lin kopsata_VK = {s = c73 "kopsata"} ;
+lin kopsaus_1_NK = {s = d39 "kopsaus"} ;
+lin kopsaus_2_NK = {s = d39 "kopsaus"} ;
+lin kopsauttaa_VK = {s = c53A "kopsauttaa"} ;
+lin kopse_NK = {s = d48 "kopse"} ;
+lin kopsu_1_NK = {s = d01 "kopsu"} ;
+lin kopsu_2_NK = {s = d01 "kopsu"} ;
+lin kopteri_NK = {s = d06 "kopteri"} ;
+lin kopti_NK = {s = d05 "kopti"} ;
+lin kopukka_NK = {s = d14A "kopukka"} ;
+lin koputella_VK = {s = c67A "koputella"} ;
+lin koputtaa_VK = {s = c53A "koputtaa"} ;
+lin koputtelu_NK = {s = d02 "koputtelu"} ;
+lin koputus_NK = {s = d39 "koputus"} ;
+lin koraali_NK = {s = d05 "koraali"} ;
+lin Koraani_NK = {s = d05 "Koraani"} ;
+lin korahdella_VK = {s = c67A "korahdella"} ;
+lin korahdus_NK = {s = d39 "korahdus"} ;
+lin korahtaa_VK = {s = c53A "korahtaa"} ;
+lin koralli_NK = {s = d05 "koralli"} ;
+lin korallinen_NK = {s = d38 "korallinen"} ;
+lin korea_1_AK = {s = d15 "korea"} ;
+lin korea_2_AK = {s = d15 "korea"} ;
+--+ lin koreasti_AdvK = {s = c99 "koreasti"} ;
+lin koreilla_VK = {s = c67 "koreilla"} ;
+lin koreilu_NK = {s = d02 "koreilu"} ;
+lin koreittain_AdvK = {s = c99 "koreittain"} ;
+lin korento_NK = {s = d01A "korento"} ;
+lin koreografi_NK = {s = d05 "koreografi"} ;
+lin koreografia_NK = {s = d12 "koreografia"} ;
+lin koreografinen_NK = {s = d38 "koreografinen"} ;
+lin koreus_NK = {s = d40 "koreus"} ;
+lin kori_NK = {s = d05 "kori"} ;
+lin korianteri_NK = {s = d06 "korianteri"} ;
+lin korillinen_NK = {s = d38 "korillinen"} ;
+lin korina_NK = {s = d12 "korina"} ;
+lin korintti_NK = {s = d05A "korintti"} ;
+lin korinttolainen_NK = {s = d38 "korinttolainen"} ;
+lin koris_NK = {s = d39 "koris"} ;
+lin korista_VK = {s = c66 "korista"} ;
+lin koristaa_VK = {s = c53 "koristaa"} ;
+lin koristautua_VK = {s = c52A "koristautua"} ;
+lin koriste_NK = {s = d48 "koriste"} ;
+lin koristeellinen_AK = {s = d38 "koristeellinen"} ;
+--+ lin koristeellisesti_AdvK = {s = c99 "koristeellisesti"} ;
+lin koristeellisuus_NK = {s = d40 "koristeellisuus"} ;
+lin koristella_VK = {s = c67 "koristella"} ;
+lin koristelu_NK = {s = d02 "koristelu"} ;
+lin koristus_NK = {s = d39 "koristus"} ;
+lin korjaaja_NK = {s = d10 "korjaaja"} ;
+lin korjaamaton_NK = {s = d34A "korjaamaton"} ;
+lin korjaamattomasti_AdvK = {s = c99 "korjaamattomasti"} ;
+lin korjaamo_NK = {s = d02 "korjaamo"} ;
+lin korjaantua_VK = {s = c52A "korjaantua"} ;
+lin korjailla_VK = {s = c67 "korjailla"} ;
+lin korjailu_NK = {s = d02 "korjailu"} ;
+lin korjain_NK = {s = d33 "korjain"} ;
+lin korjata_VK = {s = c73 "korjata"} ;
+lin korjaus_NK = {s = d39 "korjaus"} ;
+lin korjauttaa_VK = {s = c53A "korjauttaa"} ;
+lin korjautua_VK = {s = c52A "korjautua"} ;
+lin korjussa_AdvK = {s = c99 "korjussa"} ;
+lin korjuu_NK = {s = d17 "korjuu"} ;
+lin korjuuaika_NK = {s = d09A "korjuuaika"} ;
+lin korjuun_AdvK = {s = c99 "korjuun"} ;
+lin korjuuseen_AdvK = {s = c99 "korjuuseen"} ;
+lin korjuussa_AdvK = {s = c99 "korjuussa"} ;
+lin korjuuttaa_VK = {s = c53A "korjuuttaa"} ;
+lin korkata_VK = {s = c73A "korkata"} ;
+lin korkea_AK = {s = d15 "korkea"} ;
+lin korkealla_AdvK = {s = c99 "korkealla"} ;
+lin korkealle_AdvK = {s = c99 "korkealle"} ;
+lin korkealta_AdvK = {s = c99 "korkealta"} ;
+--+ lin korkeasti_AdvK = {s = c99 "korkeasti"} ;
+lin korkeimmillaan_AdvK = {s = c99 "korkeimmillaan"} ;
+lin korkeimmilleen_AdvK = {s = c99 "korkeimmilleen"} ;
+lin korkeintaan_AdvK = {s = c99 "korkeintaan"} ;
+lin korkenee_VK = {s = c72 "korkenee"} ;
+lin korkeus_NK = {s = d40 "korkeus"} ;
+lin korkillinen_NK = {s = d38 "korkillinen"} ;
+lin korkita_VK = {s = c69 "korkita"} ;
+lin korkittaa_VK = {s = c53A "korkittaa"} ;
+lin korkitus_NK = {s = d39 "korkitus"} ;
+lin korkkaamaton_NK = {s = d34A "korkkaamaton"} ;
+lin korkki_NK = {s = d05A "korkki"} ;
+lin korkkiintua_VK = {s = c52A "korkkiintua"} ;
+lin korkkinen_NK = {s = d38 "korkkinen"} ;
+lin korkkiutua_VK = {s = c52A "korkkiutua"} ;
+lin korko_NK = {s = d01A "korko"} ;
+lin korkoinen_NK = {s = d38 "korkoinen"} ;
+lin korkuinen_NK = {s = d38 "korkuinen"} ;
+lin kornetisti_NK = {s = d05 "kornetisti"} ;
+lin kornetti_NK = {s = d05A "kornetti"} ;
+lin korni_NK = {s = d05 "korni"} ;
+lin korohoro_NK = {s = d01 "korohoro"} ;
+lin koroke_NK = {s = d48A "koroke"} ;
+lin korollinen_NK = {s = d38 "korollinen"} ;
+lin korona_NK = {s = d11 "korona"} ;
+lin koronkiskominen_NK = {s = d38 "koronkiskominen"} ;
+lin korostaa_VK = {s = c53 "korostaa"} ;
+lin koroste_NK = {s = d48 "koroste"} ;
+lin korosteinen_AK = {s = d38 "korosteinen"} ;
+--+ lin korosteisesti_AdvK = {s = c99 "korosteisesti"} ;
+lin korosteisuus_NK = {s = d40 "korosteisuus"} ;
+lin korostua_VK = {s = c52 "korostua"} ;
+lin korostus_NK = {s = d39 "korostus"} ;
+lin koroton_NK = {s = d34A "koroton"} ;
+lin korottaa_VK = {s = c53A "korottaa"} ;
+lin korotus_NK = {s = d39 "korotus"} ;
+lin korotuttaa_VK = {s = c53A "korotuttaa"} ;
+lin korpeentua_VK = {s = c52A "korpeentua"} ;
+lin korpi_NK = {s = d07A "korpi"} ;
+lin korporaatio_NK = {s = d03 "korporaatio"} ;
+lin korporatiivinen_NK = {s = d38 "korporatiivinen"} ;
+lin korporativismi_NK = {s = d05 "korporativismi"} ;
+lin korppi_1_NK = {s = d05A "korppi"} ;
+lin korppi_2_NK = {s = d05A "korppi"} ;
+lin korppu_NK = {s = d01A "korppu"} ;
+lin korpraali_NK = {s = d05 "korpraali"} ;
+lin korpus_NK = {s = d39 "korpus"} ;
+lin korrehtuuri_NK = {s = d05 "korrehtuuri"} ;
+lin korrekti_AK = {s = d05 "korrekti"} ;
+--+ lin korrektisti_AdvK = {s = c99 "korrektisti"} ;
+lin korrektius_NK = {s = d40 "korrektius"} ;
+lin korrelaatio_NK = {s = d03 "korrelaatio"} ;
+lin korrelaatiokerroin_NK = {s = d33A "korrelaatiokerroin"} ;
+lin korrelaatti_NK = {s = d05A "korrelaatti"} ;
+lin korreloida_VK = {s = c62 "korreloida"} ;
+lin korreloitua_VK = {s = c52A "korreloitua"} ;
+lin korrepetiittori_NK = {s = d06 "korrepetiittori"} ;
+lin korroosio_NK = {s = d03 "korroosio"} ;
+lin korruptio_NK = {s = d03 "korruptio"} ;
+lin korruptoitua_VK = {s = c52A "korruptoitua"} ;
+lin korseletti_NK = {s = d05A "korseletti"} ;
+lin korsetti_NK = {s = d05A "korsetti"} ;
+lin korsi_NK = {s = d28 "korsi"} ;
+lin korsinen_NK = {s = d38 "korsinen"} ;
+lin korska_NK = {s = d10 "korska"} ;
+lin korskahdella_VK = {s = c67A "korskahdella"} ;
+lin korskahdus_NK = {s = d39 "korskahdus"} ;
+lin korskahtaa_VK = {s = c53A "korskahtaa"} ;
+lin korskea_AK = {s = d15 "korskea"} ;
+--+ lin korskeasti_AdvK = {s = c99 "korskeasti"} ;
+lin korskeilla_VK = {s = c67 "korskeilla"} ;
+lin korskua_VK = {s = c52 "korskua"} ;
+lin korskuna_NK = {s = d12 "korskuna"} ;
+lin korskunta_NK = {s = d09A "korskunta"} ;
+lin korsteeni_NK = {s = d06 "korsteeni"} ;
+lin korsto_NK = {s = d01 "korsto"} ;
+lin korsu_NK = {s = d01 "korsu"} ;
+lin korte_NK = {s = d48A "korte"} ;
+lin kortinen_NK = {s = d38 "kortinen"} ;
+lin kortisoni_NK = {s = d05 "kortisoni"} ;
+lin kortisto_NK = {s = d02 "kortisto"} ;
+lin kortistoida_VK = {s = c62 "kortistoida"} ;
+lin kortistointi_NK = {s = d05A "kortistointi"} ;
+lin kortittaa_VK = {s = c53A "kortittaa"} ;
+lin kortonki_NK = {s = d05A "kortonki"} ;
+lin kortteeri_NK = {s = d06 "kortteeri"} ;
+lin kortteikko_NK = {s = d04A "kortteikko"} ;
+lin kortteli_NK = {s = d06 "kortteli"} ;
+lin kortti_NK = {s = d05A "kortti"} ;
+lin koru_NK = {s = d01 "koru"} ;
+lin korundi_NK = {s = d05 "korundi"} ;
+lin koruton_NK = {s = d34A "koruton"} ;
+lin koruttomasti_AdvK = {s = c99 "koruttomasti"} ;
+lin koruttomuus_NK = {s = d40 "koruttomuus"} ;
+lin korva_NK = {s = d10 "korva"} ;
+lin korvaaja_NK = {s = d10 "korvaaja"} ;
+lin korvaamaton_NK = {s = d34A "korvaamaton"} ;
+lin korvaantua_VK = {s = c52A "korvaantua"} ;
+lin korvainen_NK = {s = d38 "korvainen"} ;
+lin korvake_NK = {s = d48A "korvake"} ;
+lin korvallinen_NK = {s = d38 "korvallinen"} ;
+lin korvapuusti_NK = {s = d05 "korvapuusti"} ;
+lin korvata_VK = {s = c73 "korvata"} ;
+lin korvatillikka_NK = {s = d14A "korvatillikka"} ;
+lin korvaus_NK = {s = d39 "korvaus"} ;
+lin korvautua_VK = {s = c52A "korvautua"} ;
+lin korvennus_NK = {s = d39 "korvennus"} ;
+lin korventaa_VK = {s = c54A "korventaa"} ;
+lin korventua_VK = {s = c52A "korventua"} ;
+lin korveta_VK = {s = c74A "korveta"} ;
+lin korvetti_NK = {s = d05A "korvetti"} ;
+lin korviahuumaava_NK = {s = d10 "korviahuumaava"} ;
+lin korviasa'rkeva'_NK = {s = d10 "korviasärkevä"} ;
+lin korviavihlova_NK = {s = d10 "korviavihlova"} ;
+lin korvike_NK = {s = d48A "korvike"} ;
+lin korvilla_AdvK = {s = c99 "korvilla"} ;
+lin korville_AdvK = {s = c99 "korville"} ;
+lin korvinkuultava_NK = {s = d10 "korvinkuultava"} ;
+lin korvis_NK = {s = d39 "korvis"} ;
+lin korvissa_AdvK = {s = c99 "korvissa"} ;
+lin korvo_NK = {s = d01 "korvo"} ;
+lin korvus_NK = {s = d39 "korvus"} ;
+lin kosekantti_NK = {s = d05A "kosekantti"} ;
+lin ko_er_NK = {s = d05 "košer"} ;
+lin kosia_VK = {s = c61 "kosia"} ;
+lin kosija_NK = {s = d12 "kosija"} ;
+lin kosini_NK = {s = d05 "kosini"} ;
+lin kosinta_NK = {s = d09A "kosinta"} ;
+lin kosiskelija_NK = {s = d12 "kosiskelija"} ;
+lin kosiskella_VK = {s = c67 "kosiskella"} ;
+lin kosiskelu_NK = {s = d02 "kosiskelu"} ;
+lin koska_AdvK = {s = c99 "koska"} ;
+lin koskaan_AdvK = {s = c99 "koskaan"} ;
+lin koskea_VK = {s = c58 "koskea"} ;
+lin koskelo_NK = {s = d02 "koskelo"} ;
+lin koskematon_NK = {s = d34A "koskematon"} ;
+lin koskemattomuus_NK = {s = d40 "koskemattomuus"} ;
+lin kosketella_VK = {s = c67A "kosketella"} ;
+lin kosketin_NK = {s = d33A "kosketin"} ;
+lin koskettaa_VK = {s = c53A "koskettaa"} ;
+lin koskettelu_NK = {s = d02 "koskettelu"} ;
+lin koskettimisto_NK = {s = d01 "koskettimisto"} ;
+lin kosketus_NK = {s = d39 "kosketus"} ;
+lin kosketuskohta_NK = {s = d10A "kosketuskohta"} ;
+lin koski_NK = {s = d07 "koski"} ;
+lin koskinen_NK = {s = d38 "koskinen"} ;
+lin koskisuus_NK = {s = d40 "koskisuus"} ;
+lin kosmeettinen_NK = {s = d38 "kosmeettinen"} ;
+lin kosmetiikka_NK = {s = d09A "kosmetiikka"} ;
+lin kosmetologi_NK = {s = d05 "kosmetologi"} ;
+lin kosmetologia_NK = {s = d12 "kosmetologia"} ;
+lin kosminen_NK = {s = d38 "kosminen"} ;
+lin kosmogonia_NK = {s = d12 "kosmogonia"} ;
+lin kosmogoninen_NK = {s = d38 "kosmogoninen"} ;
+lin kosmologia_NK = {s = d12 "kosmologia"} ;
+lin kosmologinen_NK = {s = d38 "kosmologinen"} ;
+lin kosmonautti_NK = {s = d05A "kosmonautti"} ;
+lin kosmopoliitti_NK = {s = d05A "kosmopoliitti"} ;
+lin kosmopoliittinen_NK = {s = d38 "kosmopoliittinen"} ;
+lin kosmopoliittisuus_NK = {s = d40 "kosmopoliittisuus"} ;
+lin kosmos_NK = {s = d39 "kosmos"} ;
+lin kosolti_AdvK = {s = c99 "kosolti"} ;
+lin kostaa_VK = {s = c53 "kostaa"} ;
+lin kostaja_NK = {s = d10 "kostaja"} ;
+lin kostautua_VK = {s = c52A "kostautua"} ;
+lin koste_NK = {s = d48 "koste"} ;
+lin kostea_AK = {s = d15 "kostea"} ;
+--+ lin kosteasti_AdvK = {s = c99 "kosteasti"} ;
+lin kosteikko_NK = {s = d04A "kosteikko"} ;
+lin kosteus_NK = {s = d40 "kosteus"} ;
+lin kosteuttaa_VK = {s = c53A "kosteuttaa"} ;
+lin kosto_NK = {s = d01 "kosto"} ;
+lin kostua_1_VK = {s = c52 "kostua"} ;
+lin kostua_2_VK = {s = c52 "kostua"} ;
+lin kostuke_NK = {s = d48A "kostuke"} ;
+lin kostute_NK = {s = d48A "kostute"} ;
+lin kostutin_NK = {s = d33A "kostutin"} ;
+lin kostuttaa_VK = {s = c53A "kostuttaa"} ;
+lin kostutus_NK = {s = d39 "kostutus"} ;
+lin kostyymi_NK = {s = d05 "kostyymi"} ;
+lin kota_NK = {s = d10A "kota"} ;
+lin kotangentti_NK = {s = d05A "kotangentti"} ;
+lin kotelo_NK = {s = d02 "kotelo"} ;
+lin koteloida_VK = {s = c62 "koteloida"} ;
+lin koteloitua_VK = {s = c52A "koteloitua"} ;
+lin koti_NK = {s = d05A "koti"} ;
+lin kotia_AdvK = {s = c99 "kotia"} ;
+lin kotiin_AdvK = {s = c99 "kotiin"} ;
+lin kotilo_NK = {s = d02 "kotilo"} ;
+lin kotilonkuori_NK = {s = d26 "kotilonkuori"} ;
+lin kotimaistaa_VK = {s = c53 "kotimaistaa"} ;
+lin kotimaistua_VK = {s = c52 "kotimaistua"} ;
+lin kotimaisuus_NK = {s = d40 "kotimaisuus"} ;
+lin kotipolttoinen_NK = {s = d38 "kotipolttoinen"} ;
+lin kotiuttaa_VK = {s = c53A "kotiuttaa"} ;
+lin kotiuttaja_NK = {s = d10 "kotiuttaja"} ;
+lin kotiutua_VK = {s = c52A "kotiutua"} ;
+lin kotka_NK = {s = d10 "kotka"} ;
+lin kotkata_VK = {s = c73 "kotkata"} ;
+lin kotkaus_NK = {s = d39 "kotkaus"} ;
+lin kotkottaa_VK = {s = c53A "kotkottaa"} ;
+lin kotkotus_NK = {s = d39 "kotkotus"} ;
+lin kotletti_NK = {s = d05A "kotletti"} ;
+lin koto_1_NK = {s = d01A "koto"} ;
+lin koto_2_NK = {s = d01 "koto"} ;
+lin kotoa_AdvK = {s = c99 "kotoa"} ;
+lin kotoinen_AK = {s = d38 "kotoinen"} ;
+lin kotoisa_NK = {s = d10 "kotoisa"} ;
+--+ lin kotoisesti_AdvK = {s = c99 "kotoisesti"} ;
+lin kotoisin_AdvK = {s = c99 "kotoisin"} ;
+lin kotoisuus_NK = {s = d40 "kotoisuus"} ;
+lin kotona_AdvK = {s = c99 "kotona"} ;
+lin kotosalla_AdvK = {s = c99 "kotosalla"} ;
+lin kotosalle_AdvK = {s = c99 "kotosalle"} ;
+lin kotosalta_AdvK = {s = c99 "kotosalta"} ;
+lin kotsa_NK = {s = d10 "kotsa"} ;
+lin kottarainen_NK = {s = d38 "kottarainen"} ;
+lin kottero_NK = {s = d02 "kottero"} ;
+lin koturni_NK = {s = d06 "koturni"} ;
+lin kotva_NK = {s = d10 "kotva"} ;
+lin kotvanen_NK = {s = d38 "kotvanen"} ;
+lin kouho_NK = {s = d01 "kouho"} ;
+lin kouhottaa_VK = {s = c53A "kouhottaa"} ;
+lin koukata_VK = {s = c73A "koukata"} ;
+lin koukero_NK = {s = d02 "koukero"} ;
+lin koukeroida_VK = {s = c62 "koukeroida"} ;
+lin koukeroinen_NK = {s = d38 "koukeroinen"} ;
+lin koukerrella_VK = {s = c67A "koukerrella"} ;
+lin koukertelu_NK = {s = d02 "koukertelu"} ;
+lin koukistaa_VK = {s = c53 "koukistaa"} ;
+lin koukistaja_NK = {s = d10 "koukistaja"} ;
+lin koukistua_VK = {s = c52 "koukistua"} ;
+lin koukistuma_NK = {s = d10 "koukistuma"} ;
+lin koukistus_NK = {s = d39 "koukistus"} ;
+lin koukkaus_NK = {s = d39 "koukkaus"} ;
+lin koukku_NK = {s = d01A "koukku"} ;
+lin koukkuinen_NK = {s = d38 "koukkuinen"} ;
+lin koukkuun_AdvK = {s = c99 "koukkuun"} ;
+lin koukussa_AdvK = {s = c99 "koukussa"} ;
+lin koukuta_VK = {s = c74A "koukuta"} ;
+lin koulata_VK = {s = c73 "koulata"} ;
+lin koulia_VK = {s = c61 "koulia"} ;
+lin kouliintua_VK = {s = c52A "kouliintua"} ;
+lin koulinta_NK = {s = d09A "koulinta"} ;
+lin kouliutua_VK = {s = c52A "kouliutua"} ;
+lin koulu_NK = {s = d01 "koulu"} ;
+lin kouluaika_NK = {s = d09A "kouluaika"} ;
+lin kouluaka'yma'to'n_NK = {s = d34A "kouluakäymätön"} ;
+lin koulukiusaaminen_NK = {s = d38 "koulukiusaaminen"} ;
+lin koulukiusattu_NK = {s = d01A "koulukiusattu"} ;
+lin koulunka'yma'to'n_NK = {s = d34A "koulunkäymätön"} ;
+lin koulunka'ynyt_NK = {s = d47 "koulunkäynyt"} ;
+lin kouluttaa_VK = {s = c53A "kouluttaa"} ;
+lin kouluttaja_NK = {s = d10 "kouluttaja"} ;
+lin kouluttamaton_NK = {s = d34A "kouluttamaton"} ;
+lin kouluttautua_VK = {s = c52A "kouluttautua"} ;
+lin kouluttua_VK = {s = c52A "kouluttua"} ;
+lin koulutuksellinen_NK = {s = d38 "koulutuksellinen"} ;
+lin koulutus_NK = {s = d39 "koulutus"} ;
+lin koulutusaika_NK = {s = d09A "koulutusaika"} ;
+lin koura_NK = {s = d10 "koura"} ;
+lin kourainen_NK = {s = d38 "kourainen"} ;
+lin kouraista_VK = {s = c66 "kouraista"} ;
+lin kouraisu_NK = {s = d02 "kouraisu"} ;
+lin kourallinen_NK = {s = d38 "kourallinen"} ;
+lin kouria_VK = {s = c61 "kouria"} ;
+lin kouristaa_VK = {s = c53 "kouristaa"} ;
+lin kouristeinen_NK = {s = d38 "kouristeinen"} ;
+lin kouristella_VK = {s = c67 "kouristella"} ;
+lin kouristelu_NK = {s = d02 "kouristelu"} ;
+lin kouristua_VK = {s = c52 "kouristua"} ;
+lin kouristuksellinen_NK = {s = d38 "kouristuksellinen"} ;
+--+ lin kouristuksenomaisesti_AdvK = {s = c99 "kouristuksenomaisesti"} ;
+lin kouristus_NK = {s = d39 "kouristus"} ;
+lin kouru_NK = {s = d01 "kouru"} ;
+lin kouruilla_VK = {s = c67 "kouruilla"} ;
+lin kouruttaa_VK = {s = c53A "kouruttaa"} ;
+lin kouruuntua_VK = {s = c52A "kouruuntua"} ;
+lin koutsi_NK = {s = d05 "koutsi"} ;
+lin kova_AK = {s = d10 "kova"} ;
+lin kovaa_AdvK = {s = c99 "kovaa"} ;
+lin kovaan_AdvK = {s = c99 "kovaan"} ;
+lin kovakorvaisuus_NK = {s = d40 "kovakorvaisuus"} ;
+--+ lin kovakouraisesti_AdvK = {s = c99 "kovakouraisesti"} ;
+lin kovakouraisuus_NK = {s = d40 "kovakouraisuus"} ;
+lin kovaksikeitetty_NK = {s = d01A "kovaksikeitetty"} ;
+--+ lin kovaka'tisesti_AdvK = {s = c99 "kovakätisesti"} ;
+lin kovalla_AdvK = {s = c99 "kovalla"} ;
+lin kovalle_AdvK = {s = c99 "kovalle"} ;
+lin kovapanosammunta_NK = {s = d09A "kovapanosammunta"} ;
+lin kovasin_NK = {s = d33 "kovasin"} ;
+lin kovassa_AdvK = {s = c99 "kovassa"} ;
+--+ lin kovasti_AdvK = {s = c99 "kovasti"} ;
+--+ lin kovasyda'misesti_AdvK = {s = c99 "kovasydämisesti"} ;
+--+ lin kovaa'a'nisesti_AdvK = {s = c99 "kovaäänisesti"} ;
+lin kovennus_NK = {s = d39 "kovennus"} ;
+lin koventaa_VK = {s = c54A "koventaa"} ;
+lin koventua_VK = {s = c52A "koventua"} ;
+lin kovera_NK = {s = d10 "kovera"} ;
+lin koverre_NK = {s = d48A "koverre"} ;
+lin koverrin_NK = {s = d33A "koverrin"} ;
+lin koverrus_NK = {s = d39 "koverrus"} ;
+lin kovertaa_VK = {s = c54A "kovertaa"} ;
+lin kovertua_VK = {s = c52A "kovertua"} ;
+lin kovertuma_NK = {s = d10 "kovertuma"} ;
+lin koveruus_NK = {s = d40 "koveruus"} ;
+lin koveta_VK = {s = c72 "koveta"} ;
+lin kovete_NK = {s = d48A "kovete"} ;
+lin kovettaa_VK = {s = c53A "kovettaa"} ;
+lin kovettua_VK = {s = c52A "kovettua"} ;
+lin kovettuma_NK = {s = d10 "kovettuma"} ;
+lin kovetus_NK = {s = d39 "kovetus"} ;
+lin kovike_NK = {s = d48A "kovike"} ;
+lin kovilla_AdvK = {s = c99 "kovilla"} ;
+lin koville_AdvK = {s = c99 "koville"} ;
+lin kovin_AdvK = {s = c99 "kovin"} ;
+lin kovis_NK = {s = d39 "kovis"} ;
+lin kovistaa_VK = {s = c53 "kovistaa"} ;
+lin kovistella_VK = {s = c67 "kovistella"} ;
+lin kovite_NK = {s = d48A "kovite"} ;
+lin kovittaa_VK = {s = c53A "kovittaa"} ;
+lin kovitus_NK = {s = d39 "kovitus"} ;
+lin kovuinen_NK = {s = d38 "kovuinen"} ;
+lin kovuus_NK = {s = d40 "kovuus"} ;
+lin kraana_NK = {s = d09 "kraana"} ;
+lin kraatteri_NK = {s = d06 "kraatteri"} ;
+lin kraavata_VK = {s = c73 "kraavata"} ;
+lin kraavi_NK = {s = d05 "kraavi"} ;
+lin kraiveli_NK = {s = d06 "kraiveli"} ;
+lin krakata_VK = {s = c73A "krakata"} ;
+lin krakkaamo_NK = {s = d02 "krakkaamo"} ;
+lin krakkaus_NK = {s = d39 "krakkaus"} ;
+lin krakkeri_NK = {s = d06 "krakkeri"} ;
+lin kramppi_NK = {s = d05A "kramppi"} ;
+lin kranaatti_NK = {s = d05A "kranaatti"} ;
+lin kranssi_NK = {s = d05 "kranssi"} ;
+lin kranttu_NK = {s = d01A "kranttu"} ;
+lin krappi_NK = {s = d05A "krappi"} ;
+lin krapu_NK = {s = d01A "krapu"} ;
+lin krapula_NK = {s = d12 "krapula"} ;
+lin krassi_NK = {s = d05 "krassi"} ;
+lin kravatti_NK = {s = d05A "kravatti"} ;
+lin kreatiivinen_NK = {s = d38 "kreatiivinen"} ;
+lin kreationismi_NK = {s = d05 "kreationismi"} ;
+lin kreationisti_NK = {s = d05 "kreationisti"} ;
+lin kreationistinen_NK = {s = d38 "kreationistinen"} ;
+lin krediitti_NK = {s = d05A "krediitti"} ;
+lin kredit_NK = {s = d05 "kredit"} ;
+lin kreditoida_VK = {s = c62 "kreditoida"} ;
+lin kreemi_NK = {s = d05 "kreemi"} ;
+lin kreikatar_NK = {s = d32A "kreikatar"} ;
+lin kreikka_NK = {s = d09A "kreikka"} ;
+lin kreikkalaisuus_NK = {s = d40 "kreikkalaisuus"} ;
+lin kreisi_NK = {s = d05 "kreisi"} ;
+lin kreivi_NK = {s = d05 "kreivi"} ;
+lin kreivillinen_NK = {s = d38 "kreivillinen"} ;
+lin kreivita'r_NK = {s = d32A "kreivitär"} ;
+lin krematoida_VK = {s = c62 "krematoida"} ;
+lin krematointi_NK = {s = d05A "krematointi"} ;
+lin krematorio_NK = {s = d03 "krematorio"} ;
+lin kremlologi_NK = {s = d05 "kremlologi"} ;
+lin kremlologia_NK = {s = d12 "kremlologia"} ;
+lin kremppa_NK = {s = d09A "kremppa"} ;
+lin krenato'o'ri_NK = {s = d05 "krenatööri"} ;
+lin kreoli_NK = {s = d05 "kreoli"} ;
+lin krepata_VK = {s = c73A "krepata"} ;
+lin kreppaus_NK = {s = d39 "kreppaus"} ;
+lin kreppi_NK = {s = d05A "kreppi"} ;
+lin krepsi_NK = {s = d05 "krepsi"} ;
+lin kretliini_NK = {s = d05 "kretliini"} ;
+lin kretonki_NK = {s = d05A "kretonki"} ;
+lin kriikuna_NK = {s = d12 "kriikuna"} ;
+lin kriisi_NK = {s = d05 "kriisi"} ;
+lin kriisiaika_NK = {s = d09A "kriisiaika"} ;
+lin kriitikko_NK = {s = d04A "kriitikko"} ;
+lin kriittinen_AK = {s = d38 "kriittinen"} ;
+--+ lin kriittisesti_AdvK = {s = c99 "kriittisesti"} ;
+lin kriittisyys_NK = {s = d40 "kriittisyys"} ;
+lin kriketti_NK = {s = d05A "kriketti"} ;
+lin krilli_NK = {s = d05 "krilli"} ;
+lin krimi_NK = {s = d05 "krimi"} ;
+lin kriminaalinen_NK = {s = d38 "kriminaalinen"} ;
+lin kriminaalistaa_VK = {s = c53 "kriminaalistaa"} ;
+lin kriminalisoida_VK = {s = c62 "kriminalisoida"} ;
+lin kriminalisointi_NK = {s = d05A "kriminalisointi"} ;
+lin kriminalisti_NK = {s = d05 "kriminalisti"} ;
+lin kriminalistiikka_NK = {s = d09A "kriminalistiikka"} ;
+lin kriminologi_NK = {s = d05 "kriminologi"} ;
+lin kriminologia_NK = {s = d12 "kriminologia"} ;
+lin kriminologinen_NK = {s = d38 "kriminologinen"} ;
+lin krinoliini_NK = {s = d05 "krinoliini"} ;
+lin kristalli_NK = {s = d05 "kristalli"} ;
+lin kristallinen_NK = {s = d38 "kristallinen"} ;
+lin kristallisoida_VK = {s = c62 "kristallisoida"} ;
+lin kristallisoitua_VK = {s = c52A "kristallisoitua"} ;
+lin kristalloida_VK = {s = c62 "kristalloida"} ;
+lin kristalloitua_VK = {s = c52A "kristalloitua"} ;
+lin kristillinen_AK = {s = d38 "kristillinen"} ;
+--+ lin kristillisesti_AdvK = {s = c99 "kristillisesti"} ;
+lin kristillisyys_NK = {s = d40 "kristillisyys"} ;
+lin kristitty_NK = {s = d01A "kristitty"} ;
+lin kristologia_NK = {s = d12 "kristologia"} ;
+lin kriteeri_NK = {s = d06 "kriteeri"} ;
+lin kritiikitto'myys_NK = {s = d40 "kritiikittömyys"} ;
+lin kritiikitto'ma'sti_AdvK = {s = c99 "kritiikittömästi"} ;
+lin kritiikito'n_NK = {s = d34A "kritiikitön"} ;
+lin kritiikki_NK = {s = d05A "kritiikki"} ;
+lin kritikoida_VK = {s = c62 "kritikoida"} ;
+lin kritikointi_NK = {s = d05A "kritikointi"} ;
+lin kritisoida_VK = {s = c62 "kritisoida"} ;
+lin kritisointi_NK = {s = d05A "kritisointi"} ;
+lin kroaatti_NK = {s = d05A "kroaatti"} ;
+lin kroatia_NK = {s = d12 "kroatia"} ;
+lin kroisos_NK = {s = d39 "kroisos"} ;
+lin kroissantti_NK = {s = d05A "kroissantti"} ;
+lin krokaani_NK = {s = d06 "krokaani"} ;
+lin kroketti_NK = {s = d05A "kroketti"} ;
+lin krokotiili_NK = {s = d05 "krokotiili"} ;
+lin kromaattinen_NK = {s = d38 "kromaattinen"} ;
+lin kromata_VK = {s = c73 "kromata"} ;
+lin kromaus_NK = {s = d39 "kromaus"} ;
+lin kromi_NK = {s = d05 "kromi"} ;
+lin kromioida_VK = {s = c62 "kromioida"} ;
+lin kromittaa_VK = {s = c53A "kromittaa"} ;
+lin kromitus_NK = {s = d39 "kromitus"} ;
+lin kromosomi_NK = {s = d05 "kromosomi"} ;
+lin kromosomisto_NK = {s = d01 "kromosomisto"} ;
+lin kronikka_NK = {s = d14A "kronikka"} ;
+lin kronikoida_VK = {s = c62 "kronikoida"} ;
+lin kronikoitsija_NK = {s = d12 "kronikoitsija"} ;
+lin kronkeli_NK = {s = d06 "kronkeli"} ;
+lin kronologia_NK = {s = d12 "kronologia"} ;
+lin kronologinen_AK = {s = d38 "kronologinen"} ;
+--+ lin kronologisesti_AdvK = {s = c99 "kronologisesti"} ;
+lin kronometri_NK = {s = d05 "kronometri"} ;
+lin krookus_NK = {s = d39 "krookus"} ;
+lin kroolata_VK = {s = c73 "kroolata"} ;
+lin krooli_NK = {s = d05 "krooli"} ;
+lin kroonikko_NK = {s = d04A "kroonikko"} ;
+lin krooninen_AK = {s = d38 "krooninen"} ;
+--+ lin kroonisesti_AdvK = {s = c99 "kroonisesti"} ;
+lin kroonistaa_VK = {s = c53 "kroonistaa"} ;
+lin kroonistua_VK = {s = c52 "kroonistua"} ;
+lin kroonisuus_NK = {s = d40 "kroonisuus"} ;
+lin kroppa_NK = {s = d10A "kroppa"} ;
+lin krossi_NK = {s = d05 "krossi"} ;
+lin krouvi_1_NK = {s = d05 "krouvi"} ;
+lin krouvi_2_NK = {s = d05 "krouvi"} ;
+lin kruksata_VK = {s = c73 "kruksata"} ;
+lin kruksi_NK = {s = d05 "kruksi"} ;
+lin krumeluuri_NK = {s = d05 "krumeluuri"} ;
+lin krupieeri_NK = {s = d05 "krupieeri"} ;
+lin krusifiksi_NK = {s = d05 "krusifiksi"} ;
+lin kruska_NK = {s = d10 "kruska"} ;
+lin krustadi_NK = {s = d05 "krustadi"} ;
+lin kruuna_NK = {s = d10 "kruuna"} ;
+lin kruunaaja_NK = {s = d10 "kruunaaja"} ;
+lin kruunaamaton_NK = {s = d34A "kruunaamaton"} ;
+--? lin kruunajaiset_NK = {s = d38 "kruunajaiset"} ;
+lin kruunata_VK = {s = c73 "kruunata"} ;
+lin kruunaus_NK = {s = d39 "kruunaus"} ;
+lin kruunauttaa_VK = {s = c53A "kruunauttaa"} ;
+lin kruunu_NK = {s = d01 "kruunu"} ;
+lin kruusailla_VK = {s = c67 "kruusailla"} ;
+lin kruusailu_NK = {s = d02 "kruusailu"} ;
+lin kruusata_VK = {s = c73 "kruusata"} ;
+lin kruusaus_NK = {s = d39 "kruusaus"} ;
+lin krypta_NK = {s = d09 "krypta"} ;
+lin kryptata_VK = {s = c73 "kryptata"} ;
+lin kryptaus_NK = {s = d39 "kryptaus"} ;
+lin krypto_NK = {s = d01 "krypto"} ;
+lin krypton_NK = {s = d05 "krypton"} ;
+lin krysanteemi_NK = {s = d05 "krysanteemi"} ;
+lin kryssi_NK = {s = d05 "kryssi"} ;
+lin kra'kki_NK = {s = d05A "kräkki"} ;
+lin kra'na'_NK = {s = d10 "kränä"} ;
+lin kra'na'ta'_VK = {s = c73 "kränätä"} ;
+lin kra'a'sa'_NK = {s = d10 "krääsä"} ;
+lin ksenon_NK = {s = d05 "ksenon"} ;
+lin kserografia_NK = {s = d12 "kserografia"} ;
+lin ksylitoli_NK = {s = d05 "ksylitoli"} ;
+lin ksylofoni_NK = {s = d05 "ksylofoni"} ;
+lin kubismi_NK = {s = d05 "kubismi"} ;
+lin kubisti_NK = {s = d05 "kubisti"} ;
+lin kubistinen_NK = {s = d38 "kubistinen"} ;
+lin kude_NK = {s = d48A "kude"} ;
+lin kudelma_NK = {s = d10 "kudelma"} ;
+lin kudin_NK = {s = d33A "kudin"} ;
+lin kudoksinen_NK = {s = d38 "kudoksinen"} ;
+lin kudonnainen_NK = {s = d38 "kudonnainen"} ;
+lin kudonta_NK = {s = d09A "kudonta"} ;
+lin kudontainen_NK = {s = d38 "kudontainen"} ;
+lin kudos_NK = {s = d39 "kudos"} ;
+lin kuha_NK = {s = d10 "kuha"} ;
+lin kuherrella_VK = {s = c67A "kuherrella"} ;
+lin kuherrus_NK = {s = d39 "kuherrus"} ;
+lin kuhertaa_VK = {s = c54A "kuhertaa"} ;
+lin kuhertelu_NK = {s = d02 "kuhertelu"} ;
+lin kuhilas_NK = {s = d41 "kuhilas"} ;
+lin kuhina_NK = {s = d13 "kuhina"} ;
+lin kuhista_VK = {s = c66 "kuhista"} ;
+lin kuhkia_VK = {s = c61 "kuhkia"} ;
+lin kuhmu_NK = {s = d01 "kuhmu"} ;
+lin kuhmuinen_NK = {s = d38 "kuhmuinen"} ;
+lin kuhmura_NK = {s = d12 "kuhmura"} ;
+lin kuhmurainen_NK = {s = d38 "kuhmurainen"} ;
+lin kuhmuuntua_VK = {s = c52A "kuhmuuntua"} ;
+lin kuhnailija_NK = {s = d12 "kuhnailija"} ;
+lin kuhnailla_VK = {s = c67 "kuhnailla"} ;
+lin kuhnailu_NK = {s = d02 "kuhnailu"} ;
+lin kuhnia_VK = {s = c61 "kuhnia"} ;
+lin kuhnuri_NK = {s = d06 "kuhnuri"} ;
+lin kuhnus_NK = {s = d39 "kuhnus"} ;
+lin kuhnustella_VK = {s = c67 "kuhnustella"} ;
+lin kuhun_AdvK = {s = c99 "kuhun"} ;
+lin kuhunka_AdvK = {s = c99 "kuhunka"} ;
+lin kuidusto_NK = {s = d01 "kuidusto"} ;
+lin kuidutin_NK = {s = d33A "kuidutin"} ;
+lin kuiduttaa_VK = {s = c53A "kuiduttaa"} ;
+lin kuidutus_NK = {s = d39 "kuidutus"} ;
+lin kuihduttaa_VK = {s = c53A "kuihduttaa"} ;
+lin kuihtua_VK = {s = c52A "kuihtua"} ;
+lin kuihtumaton_NK = {s = d34A "kuihtumaton"} ;
+lin kuihtumus_NK = {s = d39 "kuihtumus"} ;
+lin kuikelo_NK = {s = d02 "kuikelo"} ;
+lin kuikka_NK = {s = d10A "kuikka"} ;
+lin kuikuilla_VK = {s = c67 "kuikuilla"} ;
+lin kuikuilu_NK = {s = d02 "kuikuilu"} ;
+lin kuilu_NK = {s = d01 "kuilu"} ;
+lin kuin_AdvK = {s = c99 "kuin"} ;
+lin kuinen_NK = {s = d38 "kuinen"} ;
+lin kuinka_AdvK = {s = c99 "kuinka"} ;
+lin kuinkaan_AdvK = {s = c99 "kuinkaan"} ;
+lin kuiri_NK = {s = d05 "kuiri"} ;
+lin kuirimo_NK = {s = d02 "kuirimo"} ;
+lin kuiskaaja_NK = {s = d10 "kuiskaaja"} ;
+lin kuiskailla_VK = {s = c67 "kuiskailla"} ;
+lin kuiskailu_NK = {s = d02 "kuiskailu"} ;
+lin kuiskata_VK = {s = c73 "kuiskata"} ;
+lin kuiskaus_NK = {s = d39 "kuiskaus"} ;
+lin kuiske_NK = {s = d48 "kuiske"} ;
+lin kuiskia_VK = {s = c61 "kuiskia"} ;
+lin kuiskina_NK = {s = d12 "kuiskina"} ;
+lin kuiskinta_NK = {s = d09A "kuiskinta"} ;
+lin kuiskutella_VK = {s = c67A "kuiskutella"} ;
+lin kuiskuttaa_VK = {s = c53A "kuiskuttaa"} ;
+lin kuiskuttelu_NK = {s = d02 "kuiskuttelu"} ;
+lin kuiskutus_NK = {s = d39 "kuiskutus"} ;
+lin kuisma_NK = {s = d10 "kuisma"} ;
+lin kuisti_NK = {s = d05 "kuisti"} ;
+lin kuitata_VK = {s = c73A "kuitata"} ;
+lin kuitenkaan_AdvK = {s = c99 "kuitenkaan"} ;
+lin kuitenkin_AdvK = {s = c99 "kuitenkin"} ;
+lin kuittaantua_VK = {s = c52A "kuittaantua"} ;
+lin kuittaus_NK = {s = d39 "kuittaus"} ;
+lin kuittautua_VK = {s = c52A "kuittautua"} ;
+lin kuitti_NK = {s = d05A "kuitti"} ;
+lin kuitu_NK = {s = d01A "kuitu"} ;
+lin kuituinen_NK = {s = d38 "kuituinen"} ;
+lin kuiva_AK = {s = d10 "kuiva"} ;
+lin kuivaa_VK = {s = c53 "kuivaa"} ;
+lin kuivaaja_NK = {s = d10 "kuivaaja"} ;
+lin kuivaamo_NK = {s = d02 "kuivaamo"} ;
+lin kuivahtaa_VK = {s = c53A "kuivahtaa"} ;
+lin kuivailla_VK = {s = c67 "kuivailla"} ;
+lin kuivain_NK = {s = d33 "kuivain"} ;
+lin kuivakas_NK = {s = d41A "kuivakas"} ;
+--+ lin kuivakiskoisesti_AdvK = {s = c99 "kuivakiskoisesti"} ;
+lin kuivakiskoisuus_NK = {s = d40 "kuivakiskoisuus"} ;
+lin kuivakka_NK = {s = d14A "kuivakka"} ;
+--+ lin kuivasti_AdvK = {s = c99 "kuivasti"} ;
+lin kuivata_VK = {s = c73 "kuivata"} ;
+lin kuivate_NK = {s = d48A "kuivate"} ;
+lin kuivatella_VK = {s = c67A "kuivatella"} ;
+lin kuivatin_NK = {s = d33A "kuivatin"} ;
+lin kuivattaa_VK = {s = c53A "kuivattaa"} ;
+lin kuivattamo_NK = {s = d02 "kuivattamo"} ;
+lin kuivatus_NK = {s = d39 "kuivatus"} ;
+lin kuivaus_NK = {s = d39 "kuivaus"} ;
+lin kuivettaa_VK = {s = c53A "kuivettaa"} ;
+lin kuivettua_VK = {s = c52A "kuivettua"} ;
+lin kuiviin_AdvK = {s = c99 "kuiviin"} ;
+lin kuivike_NK = {s = d48A "kuivike"} ;
+lin kuivilla_AdvK = {s = c99 "kuivilla"} ;
+lin kuiville_AdvK = {s = c99 "kuiville"} ;
+lin kuiviltaan_AdvK = {s = c99 "kuiviltaan"} ;
+lin kuivio_NK = {s = d03 "kuivio"} ;
+lin kuivua_VK = {s = c52 "kuivua"} ;
+lin kuivumisaika_NK = {s = d09A "kuivumisaika"} ;
+lin kuivuri_NK = {s = d06 "kuivuri"} ;
+lin kuivuus_NK = {s = d40 "kuivuus"} ;
+lin kuja_NK = {s = d10 "kuja"} ;
+lin kujanne_NK = {s = d48A "kujanne"} ;
+lin kuje_NK = {s = d48 "kuje"} ;
+lin kujeellinen_AK = {s = d38 "kujeellinen"} ;
+--+ lin kujeellisesti_AdvK = {s = c99 "kujeellisesti"} ;
+lin kujeilija_NK = {s = d12 "kujeilija"} ;
+lin kujeilla_VK = {s = c67 "kujeilla"} ;
+lin kujeilu_NK = {s = d02 "kujeilu"} ;
+lin kujerrus_NK = {s = d39 "kujerrus"} ;
+lin kujertaa_VK = {s = c54A "kujertaa"} ;
+lin kukahdus_NK = {s = d39 "kukahdus"} ;
+lin kukahtaa_VK = {s = c53A "kukahtaa"} ;
+lin kukallinen_NK = {s = d38 "kukallinen"} ;
+lin kukerrus_NK = {s = d39 "kukerrus"} ;
+lin kukertaa_VK = {s = c54A "kukertaa"} ;
+lin kukertava_NK = {s = d10 "kukertava"} ;
+lin kukikas_NK = {s = d41A "kukikas"} ;
+lin kukinta_NK = {s = d09A "kukinta"} ;
+lin kukinta_aika_NK = {s = d09A "kukinta-aika"} ;
+lin kukintainen_NK = {s = d38 "kukintainen"} ;
+lin kukinto_NK = {s = d01A "kukinto"} ;
+lin kukistaa_VK = {s = c53 "kukistaa"} ;
+lin kukistua_VK = {s = c52 "kukistua"} ;
+lin kukittaa_VK = {s = c53A "kukittaa"} ;
+lin kukka_NK = {s = d10A "kukka"} ;
+lin kukkainen_NK = {s = d38 "kukkainen"} ;
+lin kukkaisa_NK = {s = d10 "kukkaisa"} ;
+lin kukkanen_NK = {s = d38 "kukkanen"} ;
+lin kukkaro_NK = {s = d02 "kukkaro"} ;
+lin kukkea_NK = {s = d15 "kukkea"} ;
+lin kukkeus_NK = {s = d40 "kukkeus"} ;
+lin kukkia_VK = {s = c61A "kukkia"} ;
+lin kukkimisaika_NK = {s = d09A "kukkimisaika"} ;
+lin kukko_NK = {s = d01A "kukko"} ;
+lin kukkoilla_VK = {s = c67 "kukkoilla"} ;
+lin kukkoilu_NK = {s = d02 "kukkoilu"} ;
+lin kukkonen_NK = {s = d38 "kukkonen"} ;
+lin kukku_AdvK = {s = c99 "kukku"} ;
+lin kukkua_VK = {s = c52A "kukkua"} ;
+lin kukkula_NK = {s = d12 "kukkula"} ;
+lin kukkura_NK = {s = d12 "kukkura"} ;
+lin kukkurainen_NK = {s = d38 "kukkurainen"} ;
+lin kukkurallaan_AdvK = {s = c99 "kukkurallaan"} ;
+lin kukkuralleen_AdvK = {s = c99 "kukkuralleen"} ;
+lin kukkuranaan_AdvK = {s = c99 "kukkuranaan"} ;
+lin kukkuroillaan_AdvK = {s = c99 "kukkuroillaan"} ;
+lin kukkuroilleen_AdvK = {s = c99 "kukkuroilleen"} ;
+lin kukkuu_AdvK = {s = c99 "kukkuu"} ;
+lin kukoistaa_VK = {s = c53 "kukoistaa"} ;
+lin kukoistus_NK = {s = d39 "kukoistus"} ;
+lin kukoistusaika_NK = {s = d09A "kukoistusaika"} ;
+lin kuksa_NK = {s = d10 "kuksa"} ;
+lin kukunta_NK = {s = d09A "kukunta"} ;
+lin kukuttaa_VK = {s = c53A "kukuttaa"} ;
+lin kulahtaa_1_VK = {s = c53A "kulahtaa"} ;
+lin kulahtaa_2_VK = {s = c53A "kulahtaa"} ;
+lin kulakki_NK = {s = d05A "kulakki"} ;
+lin kulauksittain_AdvK = {s = c99 "kulauksittain"} ;
+lin kulaus_NK = {s = d39 "kulaus"} ;
+lin kulautella_VK = {s = c67A "kulautella"} ;
+lin kulauttaa_VK = {s = c53A "kulauttaa"} ;
+lin kuleksia_VK = {s = c61 "kuleksia"} ;
+lin kulho_NK = {s = d01 "kulho"} ;
+lin kulhollinen_NK = {s = d38 "kulhollinen"} ;
+lin kuli_NK = {s = d05 "kuli"} ;
+lin kulinaarinen_NK = {s = d38 "kulinaarinen"} ;
+lin kulinarismi_NK = {s = d05 "kulinarismi"} ;
+lin kulinaristi_NK = {s = d05 "kulinaristi"} ;
+lin kulissi_NK = {s = d05 "kulissi"} ;
+lin kuljeksia_VK = {s = c61 "kuljeksia"} ;
+lin kuljeksija_NK = {s = d12 "kuljeksija"} ;
+lin kuljeksinta_NK = {s = d09A "kuljeksinta"} ;
+lin kuljeskelija_NK = {s = d12 "kuljeskelija"} ;
+lin kuljeskella_VK = {s = c67 "kuljeskella"} ;
+lin kuljeskelu_NK = {s = d02 "kuljeskelu"} ;
+lin kuljetella_VK = {s = c67A "kuljetella"} ;
+lin kuljetin_NK = {s = d33A "kuljetin"} ;
+lin kuljettaa_VK = {s = c53A "kuljettaa"} ;
+lin kuljettaja_NK = {s = d10 "kuljettaja"} ;
+lin kuljettajankoppi_NK = {s = d05A "kuljettajankoppi"} ;
+lin kuljetus_NK = {s = d39 "kuljetus"} ;
+lin kuljetuttaa_VK = {s = c53A "kuljetuttaa"} ;
+lin kulju_NK = {s = d01 "kulju"} ;
+lin kulkea_VK = {s = c58A "kulkea"} ;
+lin kulkeentua_VK = {s = c52A "kulkeentua"} ;
+lin kulkeilla_AdvK = {s = c99 "kulkeilla"} ;
+lin kulkeille_AdvK = {s = c99 "kulkeille"} ;
+lin kulkeuma_NK = {s = d10 "kulkeuma"} ;
+lin kulkeutua_VK = {s = c52A "kulkeutua"} ;
+lin kulkija_NK = {s = d12 "kulkija"} ;
+lin kulku_NK = {s = d01A "kulku"} ;
+lin kulkuaika_NK = {s = d09A "kulkuaika"} ;
+lin kulkue_NK = {s = d48 "kulkue"} ;
+lin kulkuinen_NK = {s = d38 "kulkuinen"} ;
+lin kulkunen_NK = {s = d38 "kulkunen"} ;
+lin kulkuri_NK = {s = d06 "kulkuri"} ;
+lin kulkusalla_AdvK = {s = c99 "kulkusalla"} ;
+lin kulkusalle_AdvK = {s = c99 "kulkusalle"} ;
+lin kullastaa_VK = {s = c53 "kullastaa"} ;
+lin kullata_VK = {s = c73A "kullata"} ;
+lin kullero_NK = {s = d02 "kullero"} ;
+lin kulli_NK = {s = d05 "kulli"} ;
+lin kulloinenkin_NK = {s = d38 "kulloinenkin"} ;
+lin kulloinkin_AdvK = {s = c99 "kulloinkin"} ;
+lin kulma_NK = {s = d10 "kulma"} ;
+lin kulmainen_NK = {s = d38 "kulmainen"} ;
+lin kulmakerroin_NK = {s = d33A "kulmakerroin"} ;
+lin kulmata_VK = {s = c73 "kulmata"} ;
+lin kulmatusten_AdvK = {s = c99 "kulmatusten"} ;
+lin kulmaus_NK = {s = d39 "kulmaus"} ;
+lin kulmikas_AK = {s = d41A "kulmikas"} ;
+--+ lin kulmikkaasti_AdvK = {s = c99 "kulmikkaasti"} ;
+lin kulmikkuus_NK = {s = d40 "kulmikkuus"} ;
+lin kulminaatio_NK = {s = d03 "kulminaatio"} ;
+lin kulminoitua_VK = {s = c52A "kulminoitua"} ;
+lin kulmio_NK = {s = d03 "kulmio"} ;
+lin kulmittain_AdvK = {s = c99 "kulmittain"} ;
+lin kulmittainen_NK = {s = d38 "kulmittainen"} ;
+lin kulmuri_NK = {s = d06 "kulmuri"} ;
+lin kulo_NK = {s = d01 "kulo"} ;
+lin kulottaa_VK = {s = c53A "kulottaa"} ;
+lin kulottua_VK = {s = c52A "kulottua"} ;
+lin kulotus_NK = {s = d39 "kulotus"} ;
+lin kuloutua_VK = {s = c52A "kuloutua"} ;
+lin kulta_NK = {s = d10A "kulta"} ;
+lin kulta_aika_NK = {s = d09A "kulta-aika"} ;
+lin kultainen_AK = {s = d38 "kultainen"} ;
+--+ lin kultaisesti_AdvK = {s = c99 "kultaisesti"} ;
+lin kultaisuus_NK = {s = d40 "kultaisuus"} ;
+lin kultakutri_NK = {s = d05 "kultakutri"} ;
+lin kultala_NK = {s = d12 "kultala"} ;
+lin kultanen_AdvK = {s = c99 "kultanen"} ;
+lin kultaus_NK = {s = d39 "kultaus"} ;
+lin kultautua_VK = {s = c52A "kultautua"} ;
+lin kulti_NK = {s = d05 "kulti"} ;
+lin kultivaattori_NK = {s = d06 "kultivaattori"} ;
+lin kultivoida_VK = {s = c62 "kultivoida"} ;
+lin kultivoitua_VK = {s = c52A "kultivoitua"} ;
+lin kultti_NK = {s = d05A "kultti"} ;
+lin kulttuuri_NK = {s = d06 "kulttuuri"} ;
+lin kulttuurillinen_NK = {s = d38 "kulttuurillinen"} ;
+lin kulttuurinen_AK = {s = d38 "kulttuurinen"} ;
+lin kulttuurinkarttaja_NK = {s = d10 "kulttuurinkarttaja"} ;
+--+ lin kulttuurisesti_AdvK = {s = c99 "kulttuurisesti"} ;
+lin kulturelli_NK = {s = d05 "kulturelli"} ;
+lin kulu_NK = {s = d01 "kulu"} ;
+lin kulua_VK = {s = c52 "kulua"} ;
+lin kuluma_NK = {s = d10 "kuluma"} ;
+lin kulumisvika_NK = {s = d09A "kulumisvika"} ;
+lin kuluneisuus_NK = {s = d40 "kuluneisuus"} ;
+lin kulunki_NK = {s = d05A "kulunki"} ;
+lin kulussa_AdvK = {s = c99 "kulussa"} ;
+lin kuluttaa_VK = {s = c53A "kuluttaa"} ;
+lin kuluttaja_NK = {s = d10 "kuluttaja"} ;
+lin kuluttajansuoja_NK = {s = d10 "kuluttajansuoja"} ;
+lin kulutus_NK = {s = d39 "kulutus"} ;
+lin kulo'o'ri_NK = {s = d05 "kulööri"} ;
+lin kumahdella_VK = {s = c67A "kumahdella"} ;
+lin kumahdus_NK = {s = d39 "kumahdus"} ;
+lin kumahtaa_VK = {s = c53A "kumahtaa"} ;
+lin kumajaa_VK = {s = c77 "kumajaa"} ;
+lin kumara_NK = {s = d10 "kumara"} ;
+lin kumaraan_AdvK = {s = c99 "kumaraan"} ;
+lin kumarainen_NK = {s = d38 "kumarainen"} ;
+lin kumarassa_AdvK = {s = c99 "kumarassa"} ;
+lin kumariini_NK = {s = d05 "kumariini"} ;
+lin kumarrella_VK = {s = c67A "kumarrella"} ;
+lin kumarruksiin_AdvK = {s = c99 "kumarruksiin"} ;
+lin kumarruksissa_AdvK = {s = c99 "kumarruksissa"} ;
+lin kumarrus_NK = {s = d39 "kumarrus"} ;
+lin kumartaa_VK = {s = c54A "kumartaa"} ;
+lin kumartua_VK = {s = c52A "kumartua"} ;
+lin kumaruus_NK = {s = d40 "kumaruus"} ;
+lin kumaus_NK = {s = d39 "kumaus"} ;
+lin kumauttaa_1_VK = {s = c53A "kumauttaa"} ;
+lin kumauttaa_2_VK = {s = c53A "kumauttaa"} ;
+lin kumea_AK = {s = d15 "kumea"} ;
+--+ lin kumeasti_AdvK = {s = c99 "kumeasti"} ;
+lin kumi_NK = {s = d05 "kumi"} ;
+lin kumina_1_NK = {s = d12 "kumina"} ;
+lin kumina_2_NK = {s = d12 "kumina"} ;
+lin kuminen_NK = {s = d38 "kuminen"} ;
+lin kumissi_NK = {s = d05 "kumissi"} ;
+lin kumista_VK = {s = c66 "kumista"} ;
+lin kumistin_NK = {s = d33 "kumistin"} ;
+lin kumisuttaa_VK = {s = c53A "kumisuttaa"} ;
+lin kumittaa_VK = {s = c53A "kumittaa"} ;
+lin kumkvatti_NK = {s = d05A "kumkvatti"} ;
+lin kumma_AK = {s = d10 "kumma"} ;
+lin kummajainen_NK = {s = d38 "kummajainen"} ;
+lin kummaksua_VK = {s = c52 "kummaksua"} ;
+lin kummallinen_AK = {s = d38 "kummallinen"} ;
+--+ lin kummallisesti_AdvK = {s = c99 "kummallisesti"} ;
+lin kummallisuus_NK = {s = d40 "kummallisuus"} ;
+lin kummankinlainen_NK = {s = d38 "kummankinlainen"} ;
+lin kummanne_AdvK = {s = c99 "kummanne"} ;
+--? lin kummarit_NK = {s = d06 "kummarit"} ;
+lin kummastella_VK = {s = c67 "kummastella"} ;
+lin kummastelu_NK = {s = d02 "kummastelu"} ;
+--+ lin kummasti_AdvK = {s = c99 "kummasti"} ;
+lin kummastua_VK = {s = c52 "kummastua"} ;
+lin kummastuksissaan_AdvK = {s = c99 "kummastuksissaan"} ;
+lin kummastus_NK = {s = d39 "kummastus"} ;
+lin kummastuttaa_VK = {s = c53A "kummastuttaa"} ;
+lin kummata_VK = {s = c73 "kummata"} ;
+lin kummeksia_VK = {s = c61 "kummeksia"} ;
+lin kummeksua_VK = {s = c52 "kummeksua"} ;
+lin kummeksuttaa_VK = {s = c53A "kummeksuttaa"} ;
+lin kummeli_NK = {s = d06 "kummeli"} ;
+lin kummeta_VK = {s = c72 "kummeta"} ;
+lin kummi_NK = {s = d05 "kummi"} ;
+lin kumminkaan_AdvK = {s = c99 "kumminkaan"} ;
+lin kumminkin_AdvK = {s = c99 "kumminkin"} ;
+lin kummissaan_AdvK = {s = c99 "kummissaan"} ;
+lin kummitella_VK = {s = c67A "kummitella"} ;
+lin kummittelu_NK = {s = d02 "kummittelu"} ;
+lin kummitus_NK = {s = d39 "kummitus"} ;
+lin kummoinen_NK = {s = d38 "kummoinen"} ;
+lin kummuta_VK = {s = c74A "kummuta"} ;
+lin kumoamaton_NK = {s = d34A "kumoamaton"} ;
+lin kumoamattomasti_AdvK = {s = c99 "kumoamattomasti"} ;
+lin kumoamattomuus_NK = {s = d40 "kumoamattomuus"} ;
+lin kumollaan_AdvK = {s = c99 "kumollaan"} ;
+lin kumolleen_AdvK = {s = c99 "kumolleen"} ;
+lin kumoon_AdvK = {s = c99 "kumoon"} ;
+lin kumossa_AdvK = {s = c99 "kumossa"} ;
+lin kumota_VK = {s = c74 "kumota"} ;
+lin kumottaa_VK = {s = c53A "kumottaa"} ;
+lin kumotus_NK = {s = d39 "kumotus"} ;
+lin kumouksellinen_NK = {s = d38 "kumouksellinen"} ;
+lin kumouksellisuus_NK = {s = d40 "kumouksellisuus"} ;
+lin kumous_NK = {s = d39 "kumous"} ;
+lin kumoutua_VK = {s = c52A "kumoutua"} ;
+lin kumpainen_NK = {s = d38 "kumpainen"} ;
+lin kumpainenkaan_NK = {s = d38 "kumpainenkaan"} ;
+lin kumpainenkin_NK = {s = d38 "kumpainenkin"} ;
+lin kumpare_NK = {s = d48 "kumpare"} ;
+lin kumpareikko_NK = {s = d01A "kumpareikko"} ;
+lin kumpareinen_NK = {s = d38 "kumpareinen"} ;
+lin kumpeli_NK = {s = d06 "kumpeli"} ;
+lin kumpi_NK = {s = d16A "kumpi"} ;
+lin kumpikaan_NK = {s = d16 "kumpikaan"} ;
+lin kumpikin_NK = {s = d16 "kumpikin"} ;
+lin kumppani_NK = {s = d06 "kumppani"} ;
+--? lin kumppanukset_NK = {s = d39 "kumppanukset"} ;
+lin kumppanuus_NK = {s = d40 "kumppanuus"} ;
+lin kumpu_NK = {s = d01A "kumpu"} ;
+lin kumpuilla_VK = {s = c67 "kumpuilla"} ;
+lin kumpuinen_NK = {s = d38 "kumpuinen"} ;
+lin kumu_1_NK = {s = d01 "kumu"} ;
+lin kumu_2_NK = {s = d01 "kumu"} ;
+lin kumulaatio_NK = {s = d03 "kumulaatio"} ;
+lin kumulatiivinen_NK = {s = d38 "kumulatiivinen"} ;
+lin kumuloida_VK = {s = c62 "kumuloida"} ;
+lin kumuloitua_VK = {s = c52A "kumuloitua"} ;
+lin kumuri_NK = {s = d06 "kumuri"} ;
+lin kun_AdvK = {s = c99 "kun"} ;
+lin kundi_NK = {s = d05 "kundi"} ;
+lin kung_fu_NK = {s = d21 "kung-fu"} ;
+lin kungfutselainen_NK = {s = d38 "kungfutselainen"} ;
+lin kungfutselaisuus_NK = {s = d40 "kungfutselaisuus"} ;
+lin kuningas_NK = {s = d41A "kuningas"} ;
+lin kuningasaika_NK = {s = d09A "kuningasaika"} ;
+lin kuningatar_NK = {s = d32A "kuningatar"} ;
+lin kuninkaallinen_AK = {s = d38 "kuninkaallinen"} ;
+--+ lin kuninkaallisesti_AdvK = {s = c99 "kuninkaallisesti"} ;
+lin kuninkaallisuus_NK = {s = d40 "kuninkaallisuus"} ;
+lin kuninkuus_NK = {s = d40 "kuninkuus"} ;
+lin kunkku_NK = {s = d01A "kunkku"} ;
+lin kunnallinen_NK = {s = d38 "kunnallinen"} ;
+lin kunnallistaa_VK = {s = c53 "kunnallistaa"} ;
+lin kunnari_NK = {s = d06 "kunnari"} ;
+lin kunnas_NK = {s = d41 "kunnas"} ;
+lin kunne_AdvK = {s = c99 "kunne"} ;
+lin kunnekaan_AdvK = {s = c99 "kunnekaan"} ;
+lin kunnekin_AdvK = {s = c99 "kunnekin"} ;
+lin kunnes_AdvK = {s = c99 "kunnes"} ;
+lin kunnia_NK = {s = d12 "kunnia"} ;
+lin kunniakas_AK = {s = d41A "kunniakas"} ;
+--+ lin kunniakkaasti_AdvK = {s = c99 "kunniakkaasti"} ;
+lin kunniakkuus_NK = {s = d40 "kunniakkuus"} ;
+lin kunniallinen_AK = {s = d38 "kunniallinen"} ;
+--+ lin kunniallisesti_AdvK = {s = c99 "kunniallisesti"} ;
+lin kunniallisuus_NK = {s = d40 "kunniallisuus"} ;
+--+ lin kunnianhimoisesti_AdvK = {s = c99 "kunnianhimoisesti"} ;
+lin kunniaton_NK = {s = d34A "kunniaton"} ;
+lin kunniattomasti_AdvK = {s = c99 "kunniattomasti"} ;
+lin kunnioitettava_AK = {s = d10 "kunnioitettava"} ;
+--+ lin kunnioitettavasti_AdvK = {s = c99 "kunnioitettavasti"} ;
+lin kunnioitettavuus_NK = {s = d40 "kunnioitettavuus"} ;
+lin kunnioittaa_VK = {s = c53A "kunnioittaa"} ;
+lin kunnioittava_AK = {s = d10 "kunnioittava"} ;
+--+ lin kunnioittavasti_AdvK = {s = c99 "kunnioittavasti"} ;
+lin kunnioitus_NK = {s = d39 "kunnioitus"} ;
+lin kunnittain_AdvK = {s = c99 "kunnittain"} ;
+lin kunnittainen_NK = {s = d38 "kunnittainen"} ;
+lin kunnokas_NK = {s = d41A "kunnokas"} ;
+lin kunnolla_AdvK = {s = c99 "kunnolla"} ;
+lin kunnollinen_AK = {s = d38 "kunnollinen"} ;
+--+ lin kunnollisesti_AdvK = {s = c99 "kunnollisesti"} ;
+lin kunnollisuus_NK = {s = d40 "kunnollisuus"} ;
+lin kunnon_AdvK = {s = c99 "kunnon"} ;
+lin kunnossa_AdvK = {s = c99 "kunnossa"} ;
+lin kunnostaa_VK = {s = c53 "kunnostaa"} ;
+lin kunnostamo_NK = {s = d02 "kunnostamo"} ;
+lin kunnostautua_VK = {s = c52A "kunnostautua"} ;
+lin kunnostus_NK = {s = d39 "kunnostus"} ;
+lin kunnoton_NK = {s = d34A "kunnoton"} ;
+lin kunpa_AdvK = {s = c99 "kunpa"} ;
+lin kunta_NK = {s = d10A "kunta"} ;
+lin kunto_NK = {s = d01A "kunto"} ;
+lin kuntoilija_NK = {s = d12 "kuntoilija"} ;
+lin kuntoilla_VK = {s = c67 "kuntoilla"} ;
+lin kuntoilu_NK = {s = d02 "kuntoilu"} ;
+lin kuntoisuus_NK = {s = d40 "kuntoisuus"} ;
+lin kuntoon_AdvK = {s = c99 "kuntoon"} ;
+lin kuntouttaa_VK = {s = c53A "kuntouttaa"} ;
+lin kuntoutua_VK = {s = c52A "kuntoutua"} ;
+lin kuntoutus_NK = {s = d39 "kuntoutus"} ;
+lin kuntta_NK = {s = d10A "kuntta"} ;
+lin kuoha_NK = {s = d10 "kuoha"} ;
+lin kuohahdella_VK = {s = c67A "kuohahdella"} ;
+lin kuohahtaa_VK = {s = c53A "kuohahtaa"} ;
+lin kuohari_1_NK = {s = d06 "kuohari"} ;
+lin kuohari_2_NK = {s = d06 "kuohari"} ;
+lin kuohia_VK = {s = c61 "kuohia"} ;
+lin kuohilas_NK = {s = d41 "kuohilas"} ;
+lin kuohinta_NK = {s = d09A "kuohinta"} ;
+lin kuohita_VK = {s = c69 "kuohita"} ;
+lin kuohitsija_NK = {s = d12 "kuohitsija"} ;
+lin kuohkea_NK = {s = d15 "kuohkea"} ;
+lin kuohketa_VK = {s = c72 "kuohketa"} ;
+lin kuohkeus_NK = {s = d40 "kuohkeus"} ;
+lin kuohkeuttaa_VK = {s = c53A "kuohkeuttaa"} ;
+lin kuohkeutua_VK = {s = c52A "kuohkeutua"} ;
+lin kuohu_NK = {s = d01 "kuohu"} ;
+lin kuohua_VK = {s = c52 "kuohua"} ;
+lin kuohuinen_NK = {s = d38 "kuohuinen"} ;
+lin kuohuksiin_AdvK = {s = c99 "kuohuksiin"} ;
+lin kuohuksissa_AdvK = {s = c99 "kuohuksissa"} ;
+lin kuohunta_NK = {s = d09A "kuohunta"} ;
+lin kuohuta_VK = {s = c74 "kuohuta"} ;
+lin kuohuttaa_VK = {s = c53A "kuohuttaa"} ;
+lin kuokinta_NK = {s = d09A "kuokinta"} ;
+lin kuokka_NK = {s = d10A "kuokka"} ;
+lin kuokkia_VK = {s = c61A "kuokkia"} ;
+lin kuokkija_NK = {s = d12 "kuokkija"} ;
+lin kuola_NK = {s = d10 "kuola"} ;
+--? lin kuolaimet_NK = {s = d33 "kuolaimet"} ;
+lin kuolainen_NK = {s = d38 "kuolainen"} ;
+lin kuolata_VK = {s = c73 "kuolata"} ;
+lin kuoleentua_VK = {s = c52A "kuoleentua"} ;
+lin kuolema_NK = {s = d10 "kuolema"} ;
+lin kuolemaantuomittu_NK = {s = d01A "kuolemaantuomittu"} ;
+lin kuolemanvaara_NK = {s = d09 "kuolemanvaara"} ;
+lin kuolematon_NK = {s = d34A "kuolematon"} ;
+lin kuolemattomuus_NK = {s = d40 "kuolemattomuus"} ;
+lin kuolettaa_VK = {s = c53A "kuolettaa"} ;
+lin kuolettava_AK = {s = d10 "kuolettava"} ;
+--+ lin kuolettavasti_AdvK = {s = c99 "kuolettavasti"} ;
+lin kuolettavuus_NK = {s = d40 "kuolettavuus"} ;
+lin kuoletus_NK = {s = d39 "kuoletus"} ;
+lin kuoletusaika_NK = {s = d09A "kuoletusaika"} ;
+lin kuoleutua_VK = {s = c52A "kuoleutua"} ;
+lin kuolevainen_NK = {s = d38 "kuolevainen"} ;
+lin kuolevaisuus_NK = {s = d40 "kuolevaisuus"} ;
+lin kuolevuus_NK = {s = d40 "kuolevuus"} ;
+lin kuoliaaksi_AdvK = {s = c99 "kuoliaaksi"} ;
+lin kuoliaana_AdvK = {s = c99 "kuoliaana"} ;
+lin kuolinaika_NK = {s = d09A "kuolinaika"} ;
+lin kuolio_NK = {s = d03 "kuolio"} ;
+lin kuolioinen_NK = {s = d38 "kuolioinen"} ;
+lin kuolioitua_VK = {s = c52A "kuolioitua"} ;
+lin kuolla_VK = {s = c67 "kuolla"} ;
+lin kuolleeton_NK = {s = d34A "kuolleeton"} ;
+lin kuolleisuus_NK = {s = d40 "kuolleisuus"} ;
+lin kuollut_NK = {s = d47 "kuollut"} ;
+lin kuolo_NK = {s = d01 "kuolo"} ;
+lin kuolokohta_NK = {s = d10A "kuolokohta"} ;
+lin kuoma_NK = {s = d10 "kuoma"} ;
+lin kuomu_NK = {s = d01 "kuomu"} ;
+lin kuona_NK = {s = d10 "kuona"} ;
+lin kuonnuttaa_VK = {s = c53A "kuonnuttaa"} ;
+lin kuono_NK = {s = d01 "kuono"} ;
+lin kuonoinen_NK = {s = d38 "kuonoinen"} ;
+lin kuontalo_NK = {s = d02 "kuontalo"} ;
+lin kuontua_VK = {s = c52A "kuontua"} ;
+lin kuopaista_VK = {s = c66 "kuopaista"} ;
+lin kuopake_NK = {s = d48A "kuopake"} ;
+lin kuopanne_NK = {s = d48A "kuopanne"} ;
+lin kuopata_VK = {s = c73A "kuopata"} ;
+lin kuopia_VK = {s = c61A "kuopia"} ;
+lin kuoppa_NK = {s = d10A "kuoppa"} ;
+lin kuoppaantua_VK = {s = c52A "kuoppaantua"} ;
+lin kuoppainen_NK = {s = d38 "kuoppainen"} ;
+lin kuoppautua_VK = {s = c52A "kuoppautua"} ;
+lin kuopsuttaa_VK = {s = c53A "kuopsuttaa"} ;
+lin kuopus_NK = {s = d39 "kuopus"} ;
+lin kuoputtaa_VK = {s = c53A "kuoputtaa"} ;
+lin kuore_NK = {s = d48 "kuore"} ;
+lin kuorettua_VK = {s = c52A "kuorettua"} ;
+lin kuorettuma_NK = {s = d10 "kuorettuma"} ;
+lin kuoreutua_VK = {s = c52A "kuoreutua"} ;
+lin kuoreutuma_NK = {s = d10 "kuoreutuma"} ;
+lin kuori_1_NK = {s = d26 "kuori"} ;
+lin kuori_2_NK = {s = d05 "kuori"} ;
+lin kuoria_VK = {s = c61 "kuoria"} ;
+lin kuoriainen_NK = {s = d38 "kuoriainen"} ;
+lin kuorike_NK = {s = d48A "kuorike"} ;
+lin kuorikko_NK = {s = d04A "kuorikko"} ;
+lin kuorimo_NK = {s = d02 "kuorimo"} ;
+lin kuorinen_NK = {s = d38 "kuorinen"} ;
+lin kuorinta_NK = {s = d09A "kuorinta"} ;
+lin kuorittaa_VK = {s = c53A "kuorittaa"} ;
+lin kuoriutua_VK = {s = c52A "kuoriutua"} ;
+lin kuorma_NK = {s = d10 "kuorma"} ;
+lin kuormaaja_NK = {s = d10 "kuormaaja"} ;
+lin kuormain_NK = {s = d33 "kuormain"} ;
+lin kuormallinen_NK = {s = d38 "kuormallinen"} ;
+lin kuormasto_NK = {s = d01 "kuormasto"} ;
+lin kuormata_VK = {s = c73 "kuormata"} ;
+lin kuormittaa_VK = {s = c53A "kuormittaa"} ;
+lin kuormittain_AdvK = {s = c99 "kuormittain"} ;
+lin kuormitteinen_NK = {s = d38 "kuormitteinen"} ;
+lin kuormittua_VK = {s = c52A "kuormittua"} ;
+lin kuormitus_NK = {s = d39 "kuormitus"} ;
+lin kuormuri_NK = {s = d06 "kuormuri"} ;
+lin kuoro_NK = {s = d01 "kuoro"} ;
+lin kuorrute_NK = {s = d48A "kuorrute"} ;
+lin kuorruttaa_VK = {s = c53A "kuorruttaa"} ;
+lin kuorrutus_NK = {s = d39 "kuorrutus"} ;
+lin kuorsata_VK = {s = c73 "kuorsata"} ;
+lin kuorsaus_NK = {s = d39 "kuorsaus"} ;
+lin kuortua_VK = {s = c52A "kuortua"} ;
+lin kuortuma_NK = {s = d10 "kuortuma"} ;
+lin kuorukka_NK = {s = d14A "kuorukka"} ;
+lin kuosi_NK = {s = d05 "kuosi"} ;
+lin kuosiinkudottu_NK = {s = d01A "kuosiinkudottu"} ;
+lin kuosiinneulottu_NK = {s = d01A "kuosiinneulottu"} ;
+lin kuosikas_NK = {s = d41A "kuosikas"} ;
+lin kuosillinen_NK = {s = d38 "kuosillinen"} ;
+lin kuosinen_NK = {s = d38 "kuosinen"} ;
+lin kuosittaa_VK = {s = c53A "kuosittaa"} ;
+lin kuositus_NK = {s = d39 "kuositus"} ;
+lin kuovi_NK = {s = d05 "kuovi"} ;
+lin kupari_NK = {s = d06 "kupari"} ;
+lin kuparinen_NK = {s = d38 "kuparinen"} ;
+lin kuparoida_VK = {s = c62 "kuparoida"} ;
+lin kuparointi_NK = {s = d05A "kuparointi"} ;
+lin kupata_VK = {s = c73A "kupata"} ;
+lin kupeella_AdvK = {s = c99 "kupeella"} ;
+lin kupeelle_AdvK = {s = c99 "kupeelle"} ;
+lin kupeelta_AdvK = {s = c99 "kupeelta"} ;
+lin kupeeseen_AdvK = {s = c99 "kupeeseen"} ;
+lin kupeessa_AdvK = {s = c99 "kupeessa"} ;
+lin kupeesta_AdvK = {s = c99 "kupeesta"} ;
+lin kupeinen_NK = {s = d38 "kupeinen"} ;
+lin kupera_NK = {s = d10 "kupera"} ;
+lin kuperkeikka_NK = {s = d09A "kuperkeikka"} ;
+lin kupertaa_VK = {s = c54A "kupertaa"} ;
+lin kupertua_VK = {s = c52A "kupertua"} ;
+lin kupillinen_NK = {s = d38 "kupillinen"} ;
+lin kupla_NK = {s = d10 "kupla"} ;
+lin kuplainen_NK = {s = d38 "kuplainen"} ;
+lin kupletti_NK = {s = d05A "kupletti"} ;
+lin kuplia_VK = {s = c61 "kuplia"} ;
+lin kupo_NK = {s = d01A "kupo"} ;
+lin kupoli_NK = {s = d06 "kupoli"} ;
+lin kupolinen_NK = {s = d38 "kupolinen"} ;
+lin kuponki_NK = {s = d05A "kuponki"} ;
+lin kuppa_NK = {s = d10A "kuppa"} ;
+lin kuppaaja_NK = {s = d10 "kuppaaja"} ;
+lin kuppainen_NK = {s = d38 "kuppainen"} ;
+lin kuppari_NK = {s = d06 "kuppari"} ;
+lin kuppaus_NK = {s = d39 "kuppaus"} ;
+lin kuppauttaa_VK = {s = c53A "kuppauttaa"} ;
+lin kuppi_NK = {s = d05A "kuppi"} ;
+lin kuppikoko_NK = {s = d01A "kuppikoko"} ;
+lin kuppila_NK = {s = d12 "kuppila"} ;
+lin kupponen_NK = {s = d38 "kupponen"} ;
+lin kupriitti_NK = {s = d05A "kupriitti"} ;
+lin kupristaa_VK = {s = c53 "kupristaa"} ;
+lin kupristua_VK = {s = c52 "kupristua"} ;
+lin kupro_NK = {s = d01 "kupro"} ;
+lin kupru_NK = {s = d01 "kupru"} ;
+lin kupruilla_VK = {s = c67 "kupruilla"} ;
+lin kupsahtaa_VK = {s = c53A "kupsahtaa"} ;
+lin kupu_NK = {s = d01A "kupu"} ;
+lin kupula_NK = {s = d12 "kupula"} ;
+lin kupura_NK = {s = d12 "kupura"} ;
+lin kupurainen_NK = {s = d38 "kupurainen"} ;
+lin kura_NK = {s = d10 "kura"} ;
+lin kuraantua_VK = {s = c52A "kuraantua"} ;
+lin kuraattori_NK = {s = d06 "kuraattori"} ;
+lin kurainen_NK = {s = d38 "kurainen"} ;
+lin kurantti_NK = {s = d05A "kurantti"} ;
+lin kurare_NK = {s = d08 "kurare"} ;
+lin kurata_VK = {s = c73 "kurata"} ;
+lin kurdi_NK = {s = d05 "kurdi"} ;
+lin kure_NK = {s = d48 "kure"} ;
+lin kureinen_NK = {s = d38 "kureinen"} ;
+lin kureutua_VK = {s = c52A "kureutua"} ;
+lin kurho_NK = {s = d01 "kurho"} ;
+lin kuri_NK = {s = d05 "kuri"} ;
+lin kuriiri_NK = {s = d06 "kuriiri"} ;
+lin kurikka_NK = {s = d14A "kurikka"} ;
+lin kurillaan_AdvK = {s = c99 "kurillaan"} ;
+lin kurillinen_AK = {s = d38 "kurillinen"} ;
+--+ lin kurillisesti_AdvK = {s = c99 "kurillisesti"} ;
+lin kurimus_NK = {s = d39 "kurimus"} ;
+lin kurin_AdvK = {s = c99 "kurin"} ;
+lin kurina_NK = {s = d12 "kurina"} ;
+lin kurinpidollinen_NK = {s = d38 "kurinpidollinen"} ;
+lin kuriositeetti_NK = {s = d05A "kuriositeetti"} ;
+lin kurista_VK = {s = c66 "kurista"} ;
+lin kuristaa_VK = {s = c53 "kuristaa"} ;
+lin kuristaja_NK = {s = d10 "kuristaja"} ;
+lin kuristin_NK = {s = d33 "kuristin"} ;
+lin kuristua_VK = {s = c52 "kuristua"} ;
+lin kuristus_NK = {s = d39 "kuristus"} ;
+lin kuriton_NK = {s = d34A "kuriton"} ;
+lin kurittaa_VK = {s = c53A "kurittaa"} ;
+lin kurittaja_NK = {s = d10 "kurittaja"} ;
+lin kurittomasti_AdvK = {s = c99 "kurittomasti"} ;
+lin kurittomuus_NK = {s = d40 "kurittomuus"} ;
+lin kuritus_NK = {s = d39 "kuritus"} ;
+lin kurja_AK = {s = d10 "kurja"} ;
+lin kurjalisto_NK = {s = d01 "kurjalisto"} ;
+--+ lin kurjasti_AdvK = {s = c99 "kurjasti"} ;
+lin kurjimus_NK = {s = d39 "kurjimus"} ;
+lin kurjistaa_VK = {s = c53 "kurjistaa"} ;
+lin kurjistua_VK = {s = c52 "kurjistua"} ;
+lin kurjuus_NK = {s = d40 "kurjuus"} ;
+lin kurkata_VK = {s = c73A "kurkata"} ;
+lin kurki_NK = {s = d07A "kurki"} ;
+lin kurkistaa_VK = {s = c53 "kurkistaa"} ;
+lin kurkistelija_NK = {s = d12 "kurkistelija"} ;
+lin kurkistella_VK = {s = c67 "kurkistella"} ;
+lin kurkistus_NK = {s = d39 "kurkistus"} ;
+lin kurkkailla_VK = {s = c67 "kurkkailla"} ;
+lin kurkkia_VK = {s = c61A "kurkkia"} ;
+lin kurkku_1_NK = {s = d01A "kurkku"} ;
+lin kurkku_2_NK = {s = d01A "kurkku"} ;
+lin kurkkuinen_NK = {s = d38 "kurkkuinen"} ;
+lin kurko_NK = {s = d01 "kurko"} ;
+lin kurkotella_VK = {s = c67A "kurkotella"} ;
+lin kurkottaa_VK = {s = c53A "kurkottaa"} ;
+lin kurkottautua_VK = {s = c52A "kurkottautua"} ;
+lin kurkuma_NK = {s = d10 "kurkuma"} ;
+lin kurlata_VK = {s = c73 "kurlata"} ;
+lin kurlaus_NK = {s = d39 "kurlaus"} ;
+lin kurmitsa_NK = {s = d13 "kurmitsa"} ;
+lin kurnia_VK = {s = c61 "kurnia"} ;
+lin kurnuttaa_VK = {s = c53A "kurnuttaa"} ;
+lin kuroa_VK = {s = c52 "kuroa"} ;
+lin kurotella_VK = {s = c67A "kurotella"} ;
+lin kurottaa_VK = {s = c53A "kurottaa"} ;
+lin kurottautua_VK = {s = c52A "kurottautua"} ;
+lin kurottua_VK = {s = c52A "kurottua"} ;
+lin kurouma_NK = {s = d10 "kurouma"} ;
+lin kuroutua_VK = {s = c52A "kuroutua"} ;
+lin kuroutuma_NK = {s = d10 "kuroutuma"} ;
+lin kurpitsa_NK = {s = d13 "kurpitsa"} ;
+lin kurppa_NK = {s = d10A "kurppa"} ;
+lin kurra_NK = {s = d10 "kurra"} ;
+lin kurre_NK = {s = d08 "kurre"} ;
+lin kurri_NK = {s = d05 "kurri"} ;
+lin kursailematon_NK = {s = d34A "kursailematon"} ;
+lin kursailla_VK = {s = c67 "kursailla"} ;
+lin kursailu_NK = {s = d02 "kursailu"} ;
+lin kursastella_VK = {s = c67 "kursastella"} ;
+lin kursia_VK = {s = c61 "kursia"} ;
+lin kursiivi_NK = {s = d05 "kursiivi"} ;
+lin kursivoida_VK = {s = c62 "kursivoida"} ;
+lin kursivointi_NK = {s = d05A "kursivointi"} ;
+lin kursori_NK = {s = d06 "kursori"} ;
+lin kursorinen_AK = {s = d38 "kursorinen"} ;
+--+ lin kursorisesti_AdvK = {s = c99 "kursorisesti"} ;
+lin kurssi_NK = {s = d05 "kurssi"} ;
+lin kurssittaa_VK = {s = c53A "kurssittaa"} ;
+lin kurtiisi_NK = {s = d05 "kurtiisi"} ;
+lin kurtisaani_NK = {s = d05 "kurtisaani"} ;
+lin kurtiseerata_VK = {s = c73 "kurtiseerata"} ;
+lin kurtistaa_VK = {s = c53 "kurtistaa"} ;
+lin kurtistua_VK = {s = c52 "kurtistua"} ;
+lin kurttu_NK = {s = d01A "kurttu"} ;
+lin kurttuinen_NK = {s = d38 "kurttuinen"} ;
+lin kuru_NK = {s = d01 "kuru"} ;
+lin kurva_NK = {s = d10 "kurva"} ;
+lin kurvailla_VK = {s = c67 "kurvailla"} ;
+lin kurvainen_NK = {s = d38 "kurvainen"} ;
+lin kurvata_VK = {s = c73 "kurvata"} ;
+lin kurvi_NK = {s = d05 "kurvi"} ;
+lin kurvikas_NK = {s = d41A "kurvikas"} ;
+lin kurvikkuus_NK = {s = d40 "kurvikkuus"} ;
+lin kurvinen_NK = {s = d38 "kurvinen"} ;
+lin kusaista_VK = {s = c66 "kusaista"} ;
+lin kuseksia_VK = {s = c61 "kuseksia"} ;
+lin kuseskella_VK = {s = c67 "kuseskella"} ;
+lin kusettaa_VK = {s = c53A "kusettaa"} ;
+lin kusettaja_NK = {s = d10 "kusettaja"} ;
+lin kusi_NK = {s = d24 "kusi"} ;
+lin kusiainen_NK = {s = d38 "kusiainen"} ;
+lin kusinen_NK = {s = d38 "kusinen"} ;
+lin kuskailla_VK = {s = c67 "kuskailla"} ;
+lin kuskata_VK = {s = c73 "kuskata"} ;
+lin kuskaus_NK = {s = d39 "kuskaus"} ;
+lin kuski_NK = {s = d05 "kuski"} ;
+lin kuskus_NK = {s = d05 "kuskus"} ;
+lin kussa_AdvK = {s = c99 "kussa"} ;
+lin kusta_1_AdvK = {s = c99 "kusta"} ;
+lin kusta_2_VK = {s = c66 "kusta"} ;
+lin kustanne_NK = {s = d48A "kustanne"} ;
+lin kustannus_NK = {s = d39 "kustannus"} ;
+lin kustantaa_VK = {s = c54A "kustantaa"} ;
+lin kustantaja_NK = {s = d10 "kustantaja"} ;
+lin kustantamo_NK = {s = d02 "kustantamo"} ;
+lin kustavilainen_NK = {s = d38 "kustavilainen"} ;
+lin kustavilaisaika_NK = {s = d09A "kustavilaisaika"} ;
+lin kustos_NK = {s = d39 "kustos"} ;
+lin kuta_AdvK = {s = c99 "kuta"} ;
+lin kutakuinkin_AdvK = {s = c99 "kutakuinkin"} ;
+lin kutale_NK = {s = d48 "kutale"} ;
+lin kutea_VK = {s = c58A "kutea"} ;
+lin kuteilla_AdvK = {s = c99 "kuteilla"} ;
+lin kuteille_AdvK = {s = c99 "kuteille"} ;
+lin kuteinen_NK = {s = d38 "kuteinen"} ;
+lin kuteloida_VK = {s = c62 "kuteloida"} ;
+lin kuten_AdvK = {s = c99 "kuten"} ;
+lin kuti_1_NK = {s = d05 "kuti"} ;
+lin kuti_2_AdvK = {s = c99 "kuti"} ;
+lin kuti_3_AdvK = {s = c99 "kuti"} ;
+lin kutiaa_AdvK = {s = c99 "kutiaa"} ;
+lin kutina_NK = {s = d12 "kutina"} ;
+lin kutista_VK = {s = c66 "kutista"} ;
+lin kutistaa_VK = {s = c53 "kutistaa"} ;
+lin kutistua_VK = {s = c52 "kutistua"} ;
+lin kutistuma_NK = {s = d10 "kutistuma"} ;
+lin kutistumiskerroin_NK = {s = d33A "kutistumiskerroin"} ;
+lin kutistus_NK = {s = d39 "kutistus"} ;
+lin kutistuvuus_NK = {s = d40 "kutistuvuus"} ;
+lin kutitella_VK = {s = c67A "kutitella"} ;
+lin kutittaa_VK = {s = c53A "kutittaa"} ;
+lin kutitus_NK = {s = d39 "kutitus"} ;
+lin kutka_NK = {s = d10 "kutka"} ;
+lin kutkuta_VK = {s = c74 "kutkuta"} ;
+lin kutkutella_VK = {s = c67A "kutkutella"} ;
+lin kutkuttaa_VK = {s = c53A "kutkuttaa"} ;
+lin kutoa_VK = {s = c52A "kutoa"} ;
+lin kutoinen_NK = {s = d38 "kutoinen"} ;
+lin kutoja_NK = {s = d10 "kutoja"} ;
+lin kutomo_NK = {s = d02 "kutomo"} ;
+lin kutonen_NK = {s = d38 "kutonen"} ;
+lin kutoutua_VK = {s = c52A "kutoutua"} ;
+lin kutrinen_NK = {s = d38 "kutrinen"} ;
+lin kutrit_NK = {s = d05 "kutrit"} ;
+lin kutsu_NK = {s = d01 "kutsu"} ;
+lin kutsua_VK = {s = c52 "kutsua"} ;
+lin kutsuja_NK = {s = d10 "kutsuja"} ;
+lin kutsumaton_NK = {s = d34A "kutsumaton"} ;
+lin kutsumus_NK = {s = d39 "kutsumus"} ;
+lin kutsunta_NK = {s = d09A "kutsunta"} ;
+lin kutsuttaa_VK = {s = c53A "kutsuttaa"} ;
+lin kutteri_1_NK = {s = d06 "kutteri"} ;
+lin kutteri_2_NK = {s = d06 "kutteri"} ;
+lin kuttu_NK = {s = d01A "kuttu"} ;
+lin kuttula_NK = {s = d12 "kuttula"} ;
+lin kutu_NK = {s = d01A "kutu"} ;
+lin kutuaika_NK = {s = d09A "kutuaika"} ;
+lin kutuinen_NK = {s = d38 "kutuinen"} ;
+lin kutyymi_NK = {s = d05 "kutyymi"} ;
+lin kuu_NK = {s = d18 "kuu"} ;
+lin kuudennes_NK = {s = d39 "kuudennes"} ;
+lin kuudes_NK = {s = d45 "kuudes"} ;
+lin kuudesti_AdvK = {s = c99 "kuudesti"} ;
+lin kuudestilaukeava_NK = {s = d10 "kuudestilaukeava"} ;
+lin kuukahtaa_VK = {s = c53A "kuukahtaa"} ;
+lin kuukausittain_AdvK = {s = c99 "kuukausittain"} ;
+lin kuukausittainen_NK = {s = d38 "kuukausittainen"} ;
+lin kuukautissuoja_NK = {s = d10 "kuukautissuoja"} ;
+lin kuukkeli_NK = {s = d06 "kuukkeli"} ;
+lin kuukkia_VK = {s = c61A "kuukkia"} ;
+lin kuukunen_NK = {s = d38 "kuukunen"} ;
+lin kuula_NK = {s = d10 "kuula"} ;
+lin kuulakas_NK = {s = d41A "kuulakas"} ;
+lin kuulakkuus_NK = {s = d40 "kuulakkuus"} ;
+lin kuulalaakeroida_VK = {s = c62 "kuulalaakeroida"} ;
+lin kuulas_NK = {s = d41 "kuulas"} ;
+lin kuulaus_NK = {s = d40 "kuulaus"} ;
+lin kuulema_AdvK = {s = c99 "kuulema"} ;
+lin kuulematon_NK = {s = d34A "kuulematon"} ;
+lin kuulemattomuus_NK = {s = d40 "kuulemattomuus"} ;
+lin kuulemiin_AdvK = {s = c99 "kuulemiin"} ;
+lin kuulemma_AdvK = {s = c99 "kuulemma"} ;
+lin kuuliainen_AK = {s = d38 "kuuliainen"} ;
+--+ lin kuuliaisesti_AdvK = {s = c99 "kuuliaisesti"} ;
+--? lin kuuliaiset_NK = {s = d38 "kuuliaiset"} ;
+lin kuuliaisuus_NK = {s = d40 "kuuliaisuus"} ;
+lin kuulija_NK = {s = d12 "kuulija"} ;
+lin kuulla_VK = {s = c67 "kuulla"} ;
+lin kuullottaa_VK = {s = c53A "kuullottaa"} ;
+lin kuullotus_NK = {s = d39 "kuullotus"} ;
+lin kuulo_NK = {s = d01 "kuulo"} ;
+lin kuuloke_NK = {s = d48A "kuuloke"} ;
+lin kuulonheikkenema'_NK = {s = d10 "kuulonheikkenemä"} ;
+lin kuulostaa_VK = {s = c53 "kuulostaa"} ;
+lin kuulostella_VK = {s = c67 "kuulostella"} ;
+lin kuulostus_NK = {s = d39 "kuulostus"} ;
+lin kuultaa_VK = {s = c54A "kuultaa"} ;
+lin kuultava_1_AK = {s = d10 "kuultava"} ;
+lin kuultava_2_AK = {s = d10 "kuultava"} ;
+--+ lin kuultavasti_AdvK = {s = c99 "kuultavasti"} ;
+lin kuultavuus_1_NK = {s = d40 "kuultavuus"} ;
+lin kuultavuus_2_NK = {s = d40 "kuultavuus"} ;
+lin kuulto_NK = {s = d01A "kuulto"} ;
+lin kuulu_NK = {s = d01 "kuulu"} ;
+lin kuulua_VK = {s = c52 "kuulua"} ;
+lin kuuluisa_NK = {s = d10 "kuuluisa"} ;
+lin kuuluisuus_NK = {s = d40 "kuuluisuus"} ;
+lin kuulumaton_NK = {s = d34A "kuulumaton"} ;
+lin kuulumattomasti_AdvK = {s = c99 "kuulumattomasti"} ;
+lin kuulumattomiin_AdvK = {s = c99 "kuulumattomiin"} ;
+lin kuulumattomissa_AdvK = {s = c99 "kuulumattomissa"} ;
+--? lin kuulumiset_NK = {s = d38 "kuulumiset"} ;
+lin kuulustelija_NK = {s = d12 "kuulustelija"} ;
+lin kuulustella_VK = {s = c67 "kuulustella"} ;
+lin kuulusteltava_NK = {s = d10 "kuulusteltava"} ;
+lin kuulustelu_NK = {s = d02 "kuulustelu"} ;
+lin kuuluttaa_VK = {s = c53A "kuuluttaa"} ;
+lin kuuluttaja_NK = {s = d10 "kuuluttaja"} ;
+lin kuuluttamo_NK = {s = d02 "kuuluttamo"} ;
+lin kuulutus_NK = {s = d39 "kuulutus"} ;
+lin kuuluva_AK = {s = d10 "kuuluva"} ;
+--+ lin kuuluvasti_AdvK = {s = c99 "kuuluvasti"} ;
+lin kuuluviin_AdvK = {s = c99 "kuuluviin"} ;
+lin kuuluvilla_AdvK = {s = c99 "kuuluvilla"} ;
+lin kuuluville_AdvK = {s = c99 "kuuluville"} ;
+lin kuuluvilta_AdvK = {s = c99 "kuuluvilta"} ;
+lin kuuluvissa_AdvK = {s = c99 "kuuluvissa"} ;
+lin kuuluvista_AdvK = {s = c99 "kuuluvista"} ;
+lin kuuluvuus_NK = {s = d40 "kuuluvuus"} ;
+lin kuuma_AK = {s = d10 "kuuma"} ;
+--+ lin kuumasti_AdvK = {s = c99 "kuumasti"} ;
+lin kuumavalssata_VK = {s = c73 "kuumavalssata"} ;
+lin kuume_NK = {s = d48 "kuume"} ;
+lin kuumeeton_NK = {s = d34A "kuumeeton"} ;
+lin kuumeilla_VK = {s = c67 "kuumeilla"} ;
+lin kuumeilu_NK = {s = d02 "kuumeilu"} ;
+lin kuumeinen_AK = {s = d38 "kuumeinen"} ;
+--+ lin kuumeisesti_AdvK = {s = c99 "kuumeisesti"} ;
+lin kuumennin_NK = {s = d33A "kuumennin"} ;
+lin kuumennus_NK = {s = d39 "kuumennus"} ;
+lin kuumentaa_VK = {s = c54A "kuumentaa"} ;
+lin kuumenteinen_NK = {s = d38 "kuumenteinen"} ;
+lin kuumentua_VK = {s = c52A "kuumentua"} ;
+lin kuumeta_VK = {s = c72 "kuumeta"} ;
+lin kuumiltaan_AdvK = {s = c99 "kuumiltaan"} ;
+lin kuumissaan_AdvK = {s = c99 "kuumissaan"} ;
+lin kuumoittaa_VK = {s = c53A "kuumoittaa"} ;
+lin kuumoitus_NK = {s = d39 "kuumoitus"} ;
+lin kuumottaa_VK = {s = c53A "kuumottaa"} ;
+lin kuumua_VK = {s = c52 "kuumua"} ;
+lin kuumuus_NK = {s = d40 "kuumuus"} ;
+lin kuunaan_AdvK = {s = c99 "kuunaan"} ;
+lin kuunari_NK = {s = d06 "kuunari"} ;
+lin kuunnella_VK = {s = c67A "kuunnella"} ;
+lin kuunnelma_NK = {s = d10 "kuunnelma"} ;
+lin kuuntelija_NK = {s = d12 "kuuntelija"} ;
+lin kuuntelu_NK = {s = d02 "kuuntelu"} ;
+lin kuupallinen_1_NK = {s = d38 "kuupallinen"} ;
+lin kuupallinen_2_NK = {s = d38 "kuupallinen"} ;
+lin kuuppa_1_NK = {s = d10A "kuuppa"} ;
+lin kuuppa_2_NK = {s = d10A "kuuppa"} ;
+lin kuura_NK = {s = d10 "kuura"} ;
+lin kuurainen_NK = {s = d38 "kuurainen"} ;
+lin kuuraus_NK = {s = d39 "kuuraus"} ;
+lin kuuri_1_NK = {s = d05 "kuuri"} ;
+lin kuuri_2_NK = {s = d05 "kuuri"} ;
+lin kuuria_NK = {s = d12 "kuuria"} ;
+lin kuurna_NK = {s = d10 "kuurna"} ;
+lin kuurnita_VK = {s = c69 "kuurnita"} ;
+lin kuurnittaa_VK = {s = c53A "kuurnittaa"} ;
+lin kuurnitus_NK = {s = d39 "kuurnitus"} ;
+lin kuuro_1_NK = {s = d01 "kuuro"} ;
+lin kuuro_2_NK = {s = d01 "kuuro"} ;
+lin kuuroittain_AdvK = {s = c99 "kuuroittain"} ;
+lin kuuroittainen_NK = {s = d38 "kuuroittainen"} ;
+lin kuurous_NK = {s = d40 "kuurous"} ;
+lin kuurouttaa_VK = {s = c53A "kuurouttaa"} ;
+lin kuuroutua_VK = {s = c52A "kuuroutua"} ;
+lin kuusettua_VK = {s = c52A "kuusettua"} ;
+lin kuusi_1_NK = {s = d24 "kuusi"} ;
+lin kuusi_2_NK = {s = d27 "kuusi"} ;
+lin kuusikko_1_NK = {s = d04A "kuusikko"} ;
+lin kuusikko_2_NK = {s = d04A "kuusikko"} ;
+lin kuusilo_NK = {s = d02 "kuusilo"} ;
+lin kuusinen_NK = {s = d38 "kuusinen"} ;
+lin kuusio_1_NK = {s = d03 "kuusio"} ;
+lin kuusio_2_NK = {s = d03 "kuusio"} ;
+lin kuusisto_NK = {s = d02 "kuusisto"} ;
+lin kuutamo_NK = {s = d02 "kuutamo"} ;
+lin kuutamoinen_NK = {s = d38 "kuutamoinen"} ;
+lin kuutio_NK = {s = d03 "kuutio"} ;
+lin kuutioida_VK = {s = c68 "kuutioida"} ;
+lin kuutioinen_NK = {s = d38 "kuutioinen"} ;
+lin kuutiointi_NK = {s = d05A "kuutiointi"} ;
+lin kuutioittain_AdvK = {s = c99 "kuutioittain"} ;
+lin kuutiojuuri_NK = {s = d26 "kuutiojuuri"} ;
+lin kuutiollinen_AK = {s = d38 "kuutiollinen"} ;
+--+ lin kuutiollisesti_AdvK = {s = c99 "kuutiollisesti"} ;
+--+ lin kuutiomaisesti_AdvK = {s = c99 "kuutiomaisesti"} ;
+lin kuutiomaisuus_NK = {s = d40 "kuutiomaisuus"} ;
+lin kuutisen_AdvK = {s = c99 "kuutisen"} ;
+lin kuutisenkymmenta'_AdvK = {s = c99 "kuutisenkymmentä"} ;
+lin kuuton_NK = {s = d34A "kuuton"} ;
+lin kuutonen_NK = {s = d38 "kuutonen"} ;
+lin kuutti_1_NK = {s = d05A "kuutti"} ;
+lin kuutti_2_NK = {s = d05A "kuutti"} ;
+lin kuva_NK = {s = d10 "kuva"} ;
+lin kuvaaja_NK = {s = d10 "kuvaaja"} ;
+lin kuvaamaton_NK = {s = d34A "kuvaamaton"} ;
+lin kuvaamattomasti_AdvK = {s = c99 "kuvaamattomasti"} ;
+lin kuvaamo_NK = {s = d02 "kuvaamo"} ;
+lin kuvaannollinen_AK = {s = d38 "kuvaannollinen"} ;
+--+ lin kuvaannollisesti_AdvK = {s = c99 "kuvaannollisesti"} ;
+lin kuvaava_NK = {s = d10 "kuvaava"} ;
+lin kuvaelma_NK = {s = d10 "kuvaelma"} ;
+lin kuvailla_VK = {s = c67 "kuvailla"} ;
+lin kuvailu_NK = {s = d02 "kuvailu"} ;
+lin kuvainraastaja_NK = {s = d10 "kuvainraastaja"} ;
+lin kuvajainen_NK = {s = d38 "kuvajainen"} ;
+lin kuvake_NK = {s = d48A "kuvake"} ;
+lin kuvakoko_NK = {s = d01A "kuvakoko"} ;
+lin kuvallinen_AK = {s = d38 "kuvallinen"} ;
+--+ lin kuvallisesti_AdvK = {s = c99 "kuvallisesti"} ;
+lin kuvallisuus_NK = {s = d40 "kuvallisuus"} ;
+lin kuvantaa_VK = {s = c54A "kuvantaa"} ;
+lin kuvantua_VK = {s = c52A "kuvantua"} ;
+lin kuvanveista'ja'_NK = {s = d10 "kuvanveistäjä"} ;
+lin kuvas_NK = {s = d39 "kuvas"} ;
+lin kuvastaa_VK = {s = c53 "kuvastaa"} ;
+lin kuvastaja_NK = {s = d10 "kuvastaja"} ;
+lin kuvastella_VK = {s = c67 "kuvastella"} ;
+lin kuvastin_NK = {s = d33 "kuvastin"} ;
+lin kuvasto_NK = {s = d02 "kuvasto"} ;
+lin kuvastua_VK = {s = c52 "kuvastua"} ;
+lin kuvastus_NK = {s = d39 "kuvastus"} ;
+lin kuvata_VK = {s = c73 "kuvata"} ;
+lin kuvatus_NK = {s = d39 "kuvatus"} ;
+lin kuvauksellinen_NK = {s = d38 "kuvauksellinen"} ;
+lin kuvaus_NK = {s = d39 "kuvaus"} ;
+lin kuvauttaa_VK = {s = c53A "kuvauttaa"} ;
+lin kuvautua_VK = {s = c52A "kuvautua"} ;
+lin kuve_NK = {s = d48A "kuve"} ;
+lin kuvernementti_NK = {s = d05A "kuvernementti"} ;
+lin kuverno'o'ri_NK = {s = d05 "kuvernööri"} ;
+lin kuvertti_NK = {s = d05A "kuvertti"} ;
+lin kuvio_NK = {s = d03 "kuvio"} ;
+lin kuvioida_VK = {s = c62 "kuvioida"} ;
+lin kuvioinen_NK = {s = d38 "kuvioinen"} ;
+lin kuviointi_NK = {s = d05A "kuviointi"} ;
+lin kuvioitus_NK = {s = d39 "kuvioitus"} ;
+lin kuviollinen_NK = {s = d38 "kuviollinen"} ;
+lin kuviopainettu_NK = {s = d01A "kuviopainettu"} ;
+lin kuvitella_VK = {s = c67A "kuvitella"} ;
+lin kuvitelma_NK = {s = d10 "kuvitelma"} ;
+lin kuvittaa_VK = {s = c53A "kuvittaa"} ;
+lin kuvittaja_NK = {s = d10 "kuvittaja"} ;
+lin kuvitteellinen_NK = {s = d38 "kuvitteellinen"} ;
+lin kuvittelu_NK = {s = d02 "kuvittelu"} ;
+lin kuvitus_NK = {s = d39 "kuvitus"} ;
+lin kuvottaa_VK = {s = c53A "kuvottaa"} ;
+lin kuvotus_NK = {s = d39 "kuvotus"} ;
+lin kvadriljoona_NK = {s = d10 "kvadriljoona"} ;
+lin kvadrofonia_NK = {s = d12 "kvadrofonia"} ;
+lin kvalifikaatio_NK = {s = d03 "kvalifikaatio"} ;
+lin kvalifioida_VK = {s = c62 "kvalifioida"} ;
+lin kvalifiointi_NK = {s = d05A "kvalifiointi"} ;
+lin kvalitatiivinen_AK = {s = d38 "kvalitatiivinen"} ;
+--+ lin kvalitatiivisesti_AdvK = {s = c99 "kvalitatiivisesti"} ;
+lin kvaliteetti_NK = {s = d05A "kvaliteetti"} ;
+lin kvantifioida_VK = {s = c62 "kvantifioida"} ;
+lin kvantifiointi_NK = {s = d05A "kvantifiointi"} ;
+lin kvantitatiivinen_AK = {s = d38 "kvantitatiivinen"} ;
+--+ lin kvantitatiivisesti_AdvK = {s = c99 "kvantitatiivisesti"} ;
+lin kvantiteetti_NK = {s = d05A "kvantiteetti"} ;
+lin kvantittua_VK = {s = c52A "kvantittua"} ;
+lin kvantti_NK = {s = d05A "kvantti"} ;
+lin kvanttiutua_VK = {s = c52A "kvanttiutua"} ;
+lin kvarkki_1_NK = {s = d05A "kvarkki"} ;
+lin kvarkki_2_NK = {s = d05A "kvarkki"} ;
+lin kvartetti_NK = {s = d05A "kvartetti"} ;
+lin kvartetto_NK = {s = d01A "kvartetto"} ;
+lin kvartsi_NK = {s = d05 "kvartsi"} ;
+lin kvartsiitti_NK = {s = d05A "kvartsiitti"} ;
+lin kvartsinen_NK = {s = d38 "kvartsinen"} ;
+lin kvartti_NK = {s = d05A "kvartti"} ;
+lin kvarta'a'ri_NK = {s = d05 "kvartääri"} ;
+lin kvarta'a'rinen_NK = {s = d38 "kvartäärinen"} ;
+lin kvasaari_NK = {s = d05 "kvasaari"} ;
+lin kveekari_NK = {s = d06 "kveekari"} ;
+lin kveeni_NK = {s = d05 "kveeni"} ;
+lin kverulantti_NK = {s = d05A "kverulantti"} ;
+lin kvintetti_NK = {s = d05A "kvintetti"} ;
+lin kvintetto_NK = {s = d01A "kvintetto"} ;
+lin kvintiljoona_NK = {s = d10 "kvintiljoona"} ;
+lin kvintti_NK = {s = d05A "kvintti"} ;
+lin kvitteni_NK = {s = d06 "kvitteni"} ;
+lin kyberneetikko_NK = {s = d04A "kyberneetikko"} ;
+lin kyberneettinen_NK = {s = d38 "kyberneettinen"} ;
+lin kybernetiikka_NK = {s = d09A "kybernetiikka"} ;
+lin kyborgi_NK = {s = d05 "kyborgi"} ;
+lin kydo'tta'a'_VK = {s = c53A "kydöttää"} ;
+lin kydo'tys_NK = {s = d39 "kydötys"} ;
+lin kyeta'_VK = {s = c72A "kyetä"} ;
+lin kyhjo'tta'a'_VK = {s = c53A "kyhjöttää"} ;
+lin kyhmy_NK = {s = d01 "kyhmy"} ;
+lin kyhmyinen_NK = {s = d38 "kyhmyinen"} ;
+lin kyhnytella'_VK = {s = c67A "kyhnytellä"} ;
+lin kyhnytta'a'_VK = {s = c53A "kyhnyttää"} ;
+lin kyha'elma'_NK = {s = d10 "kyhäelmä"} ;
+lin kyha'illa'_VK = {s = c67 "kyhäillä"} ;
+lin kyha'ily_NK = {s = d01 "kyhäily"} ;
+lin kyha'ta'_VK = {s = c73 "kyhätä"} ;
+lin kyha'ys_NK = {s = d39 "kyhäys"} ;
+lin kyinen_NK = {s = d38 "kyinen"} ;
+lin kykenema'tto'myys_NK = {s = d40 "kykenemättömyys"} ;
+lin kykenema'to'n_NK = {s = d34A "kykenemätön"} ;
+lin kykenevyys_NK = {s = d40 "kykenevyys"} ;
+lin kykeneva'_NK = {s = d10 "kykenevä"} ;
+lin kykkia'_VK = {s = c61A "kykkiä"} ;
+lin kyklooppi_NK = {s = d05A "kyklooppi"} ;
+lin kyky_NK = {s = d01A "kyky"} ;
+lin kykyinen_NK = {s = d38 "kykyinen"} ;
+lin kyljekka'in_AdvK = {s = c99 "kyljekkäin"} ;
+lin kyljelleen_AdvK = {s = c99 "kyljelleen"} ;
+lin kyljella'a'n_AdvK = {s = c99 "kyljellään"} ;
+lin kyljes_NK = {s = d39 "kyljes"} ;
+lin kyljitta'in_AdvK = {s = c99 "kyljittäin"} ;
+lin kyljitysten_AdvK = {s = c99 "kyljitysten"} ;
+lin kyljys_NK = {s = d39 "kyljys"} ;
+lin kylki_NK = {s = d07A "kylki"} ;
+lin kylkimyyrya'_AdvK = {s = c99 "kylkimyyryä"} ;
+lin kylkinen_NK = {s = d38 "kylkinen"} ;
+lin kylkia'inen_NK = {s = d38 "kylkiäinen"} ;
+lin kylliksi_AdvK = {s = c99 "kylliksi"} ;
+lin kyllin_AdvK = {s = c99 "kyllin"} ;
+lin kyllyys_NK = {s = d40 "kyllyys"} ;
+lin kylla'_AdvK = {s = c99 "kyllä"} ;
+lin kylla'inen_NK = {s = d38 "kylläinen"} ;
+lin kylla'ste_NK = {s = d48 "kylläste"} ;
+lin kylla'steinen_NK = {s = d38 "kyllästeinen"} ;
+lin kylla'stymisraja_NK = {s = d09 "kyllästymisraja"} ;
+lin kylla'stys_NK = {s = d39 "kyllästys"} ;
+lin kylla'stytta'a'_VK = {s = c53A "kyllästyttää"} ;
+lin kylla'stya'_VK = {s = c52 "kyllästyä"} ;
+lin kylla'sta'mo'_NK = {s = d02 "kyllästämö"} ;
+lin kylla'sta'a'_VK = {s = c53 "kyllästää"} ;
+lin kylla'a'nnytta'a'_VK = {s = c53A "kylläännyttää"} ;
+lin kylla'a'ntya'_VK = {s = c52A "kyllääntyä"} ;
+lin kylmentya'_VK = {s = c52A "kylmentyä"} ;
+lin kylmenta'a'_VK = {s = c54A "kylmentää"} ;
+lin kylmettya'_VK = {s = c52A "kylmettyä"} ;
+lin kylmetta'a'_VK = {s = c53A "kylmettää"} ;
+lin kylmetytta'a'_VK = {s = c53A "kylmetyttää"} ;
+lin kylmeta'_VK = {s = c72 "kylmetä"} ;
+lin kylmilleen_AdvK = {s = c99 "kylmilleen"} ;
+lin kylmilla'a'n_AdvK = {s = c99 "kylmillään"} ;
+lin kylmilta'a'n_AdvK = {s = c99 "kylmiltään"} ;
+lin kylmissa'a'n_AdvK = {s = c99 "kylmissään"} ;
+lin kylmio'_NK = {s = d03 "kylmiö"} ;
+lin kylmyys_NK = {s = d40 "kylmyys"} ;
+lin kylma'_AK = {s = d10 "kylmä"} ;
+--+ lin kylma'kiskoisesti_AdvK = {s = c99 "kylmäkiskoisesti"} ;
+lin kylma'kiskoisuus_NK = {s = d40 "kylmäkiskoisuus"} ;
+lin kylma'kko'_NK = {s = d04A "kylmäkkö"} ;
+--+ lin kylma'pa'isesti_AdvK = {s = c99 "kylmäpäisesti"} ;
+lin kylma'pa'isyys_NK = {s = d40 "kylmäpäisyys"} ;
+--+ lin kylma'sti_AdvK = {s = c99 "kylmästi"} ;
+--+ lin kylma'syda'misesti_AdvK = {s = c99 "kylmäsydämisesti"} ;
+lin kylma'ta'_VK = {s = c73 "kylmätä"} ;
+lin kylma'valssata_VK = {s = c73 "kylmävalssata"} ;
+lin kylpea'_VK = {s = c58A "kylpeä"} ;
+lin kylpija'_NK = {s = d12 "kylpijä"} ;
+lin kylppa'ri_NK = {s = d06 "kylppäri"} ;
+lin kylpy_NK = {s = d01A "kylpy"} ;
+lin kylpyla'_NK = {s = d12 "kylpylä"} ;
+lin kyltti_NK = {s = d05A "kyltti"} ;
+lin kyltyma'tto'myys_NK = {s = d40 "kyltymättömyys"} ;
+lin kyltyma'to'n_NK = {s = d34A "kyltymätön"} ;
+lin kyltya'_VK = {s = c52A "kyltyä"} ;
+lin kylvetta'ja'_NK = {s = d10 "kylvettäjä"} ;
+lin kylvetta'a'_VK = {s = c53A "kylvettää"} ;
+lin kylvetys_NK = {s = d39 "kylvetys"} ;
+lin kylva'ja'_NK = {s = d10 "kylväjä"} ;
+lin kylva'a'_VK = {s = c53 "kylvää"} ;
+lin kylvo'_NK = {s = d01 "kylvö"} ;
+lin kylvo'aika_NK = {s = d09A "kylvöaika"} ;
+lin kylvo's_NK = {s = d39 "kylvös"} ;
+lin kyly_NK = {s = d01 "kyly"} ;
+lin kyla'_NK = {s = d10 "kylä"} ;
+lin kyla'illa'_VK = {s = c67 "kyläillä"} ;
+lin kyla'ily_NK = {s = d02 "kyläily"} ;
+lin kyla'la'inen_NK = {s = d38 "kyläläinen"} ;
+lin kyla'ssa'_AdvK = {s = c99 "kylässä"} ;
+lin kyla'sta'_AdvK = {s = c99 "kylästä"} ;
+lin kyla'a'n_AdvK = {s = c99 "kylään"} ;
+lin kymi_NK = {s = d07 "kymi"} ;
+lin kymmen_NK = {s = d32 "kymmen"} ;
+lin kymmenen_NK = {s = d32 "kymmenen"} ;
+lin kymmenennes_NK = {s = d39 "kymmenennes"} ;
+lin kymmenes_1_NK = {s = d45 "kymmenes"} ;
+lin kymmenes_2_NK = {s = d39 "kymmenes"} ;
+lin kymmenesti_AdvK = {s = c99 "kymmenesti"} ;
+lin kymmenikko'_NK = {s = d04A "kymmenikkö"} ;
+lin kymmeninen_NK = {s = d38 "kymmeninen"} ;
+lin kymmenisen_AdvK = {s = c99 "kymmenisen"} ;
+lin kymmenisentuhatta_AdvK = {s = c99 "kymmenisentuhatta"} ;
+lin kymmenitta'in_AdvK = {s = c99 "kymmenittäin"} ;
+lin kymmenys_NK = {s = d39 "kymmenys"} ;
+lin kymnaasi_NK = {s = d05 "kymnaasi"} ;
+lin kymnasisti_NK = {s = d05 "kymnasisti"} ;
+lin kymppi_NK = {s = d05A "kymppi"} ;
+lin kymppinen_NK = {s = d38 "kymppinen"} ;
+lin kymri_NK = {s = d05 "kymri"} ;
+lin kynia'_VK = {s = c61 "kyniä"} ;
+lin kynnenjuuri_NK = {s = d26 "kynnenjuuri"} ;
+lin kynnys_NK = {s = d39 "kynnys"} ;
+lin kynna's_NK = {s = d41 "kynnäs"} ;
+lin kynno's_NK = {s = d39 "kynnös"} ;
+lin kynsi_NK = {s = d28 "kynsi"} ;
+lin kynsika's_NK = {s = d41A "kynsikäs"} ;
+lin kynsimo'_NK = {s = d02 "kynsimö"} ;
+lin kynsia'_VK = {s = c61 "kynsiä"} ;
+lin kynsa'ista'_VK = {s = c66 "kynsäistä"} ;
+lin kynte_NK = {s = d48A "kynte"} ;
+lin kynteli_NK = {s = d06 "kynteli"} ;
+lin kyntinen_NK = {s = d38 "kyntinen"} ;
+lin kyntteli_NK = {s = d06 "kyntteli"} ;
+lin kynttelikko'_NK = {s = d04A "kynttelikkö"} ;
+lin kynttila'_NK = {s = d12 "kynttilä"} ;
+lin kyntta'a'_VK = {s = c53A "kynttää"} ;
+lin kynta'ja'_NK = {s = d10 "kyntäjä"} ;
+lin kynta'a'_VK = {s = c53A "kyntää"} ;
+lin kynto'_NK = {s = d01A "kyntö"} ;
+lin kynto'aika_NK = {s = d09A "kyntöaika"} ;
+lin kyna'_NK = {s = d10 "kynä"} ;
+lin kyna'ilija'_NK = {s = d12 "kynäilijä"} ;
+lin kyna'illa'_VK = {s = c67 "kynäillä"} ;
+lin kyna'ily_NK = {s = d02 "kynäily"} ;
+lin kyna'inen_NK = {s = d38 "kynäinen"} ;
+lin kyna'nveto_NK = {s = d01A "kynänveto"} ;
+lin kypsennys_NK = {s = d39 "kypsennys"} ;
+lin kypsentya'_VK = {s = c52A "kypsentyä"} ;
+lin kypsenta'a'_VK = {s = c54A "kypsentää"} ;
+lin kypseta'_VK = {s = c72 "kypsetä"} ;
+lin kypsi_AdvK = {s = c99 "kypsi"} ;
+lin kypsyma'tto'myys_NK = {s = d40 "kypsymättömyys"} ;
+lin kypsyma'to'n_NK = {s = d34A "kypsymätön"} ;
+lin kypsytella'_VK = {s = c67A "kypsytellä"} ;
+lin kypsyttely_NK = {s = d02 "kypsyttely"} ;
+lin kypsytta'mo'_NK = {s = d02 "kypsyttämö"} ;
+lin kypsytta'a'_VK = {s = c53A "kypsyttää"} ;
+lin kypsytys_NK = {s = d39 "kypsytys"} ;
+lin kypsyys_NK = {s = d40 "kypsyys"} ;
+lin kypsya'_VK = {s = c52 "kypsyä"} ;
+lin kypsa'_AK = {s = d10 "kypsä"} ;
+--+ lin kypsa'sti_AdvK = {s = c99 "kypsästi"} ;
+lin kypa'ra'_NK = {s = d10 "kypärä"} ;
+lin kyrillinen_NK = {s = d38 "kyrillinen"} ;
+lin kyrmyssa'_AdvK = {s = c99 "kyrmyssä"} ;
+lin kyrmyyn_AdvK = {s = c99 "kyrmyyn"} ;
+lin kyrpiintya'_VK = {s = c52A "kyrpiintyä"} ;
+lin kyrpa'_NK = {s = d10A "kyrpä"} ;
+lin kyrsa'_NK = {s = d10 "kyrsä"} ;
+lin kyrva'hta'a'_VK = {s = c53A "kyrvähtää"} ;
+lin kyrva'ytta'a'_VK = {s = c53A "kyrväyttää"} ;
+lin kyra'illa'_VK = {s = c67 "kyräillä"} ;
+lin kyra'ily_NK = {s = d02 "kyräily"} ;
+lin kyse_AdvK = {s = c99 "kyse"} ;
+lin kyseenalaistaa_VK = {s = c53 "kyseenalaistaa"} ;
+lin kyseenalaistua_VK = {s = c52 "kyseenalaistua"} ;
+lin kyseinen_NK = {s = d38 "kyseinen"} ;
+lin kyselija'_NK = {s = d12 "kyselijä"} ;
+lin kysella'_VK = {s = c67 "kysellä"} ;
+lin kysely_NK = {s = d02 "kysely"} ;
+lin kyssa'_NK = {s = d10 "kyssä"} ;
+lin kysta_NK = {s = d09 "kysta"} ;
+lin kystiitti_NK = {s = d05A "kystiitti"} ;
+lin kystoskooppi_NK = {s = d05A "kystoskooppi"} ;
+lin kystoskopia_NK = {s = d12 "kystoskopia"} ;
+lin kysta'_AdvK = {s = c99 "kystä"} ;
+lin kysyja'_NK = {s = d10 "kysyjä"} ;
+lin kysymys_NK = {s = d39 "kysymys"} ;
+lin kysyma'_NK = {s = d10 "kysymä"} ;
+lin kysynta'_NK = {s = d09A "kysyntä"} ;
+lin kysyva'_AK = {s = d10 "kysyvä"} ;
+--+ lin kysyva'sti_AdvK = {s = c99 "kysyvästi"} ;
+lin kysya'_VK = {s = c52 "kysyä"} ;
+lin kysa'ista'_VK = {s = c66 "kysäistä"} ;
+lin kytea'_VK = {s = c58A "kyteä"} ;
+lin kytis_NK = {s = d39 "kytis"} ;
+lin kytkenta'_NK = {s = d09A "kytkentä"} ;
+lin kytkeyma'_NK = {s = d10 "kytkeymä"} ;
+lin kytkeytya'_VK = {s = c52A "kytkeytyä"} ;
+lin kytkea'_VK = {s = c58 "kytkeä"} ;
+lin kytkin_NK = {s = d33 "kytkin"} ;
+lin kytky_NK = {s = d01 "kytky"} ;
+lin kytkyt_NK = {s = d43 "kytkyt"} ;
+lin kytko's_NK = {s = d39 "kytkös"} ;
+lin kyttyra'_NK = {s = d12 "kyttyrä"} ;
+lin kyttyra'inen_NK = {s = d38 "kyttyräinen"} ;
+lin kytta'_NK = {s = d10A "kyttä"} ;
+lin kytta'illa'_VK = {s = c67 "kyttäillä"} ;
+lin kytta'ily_NK = {s = d02 "kyttäily"} ;
+lin kytta'ys_NK = {s = d39 "kyttäys"} ;
+lin kytta'a'ja'_NK = {s = d10 "kyttääjä"} ;
+lin kyta'ta'_VK = {s = c73A "kytätä"} ;
+lin kyto'_NK = {s = d01A "kytö"} ;
+lin kyvykkyys_NK = {s = d40 "kyvykkyys"} ;
+lin kyvyka's_NK = {s = d41A "kyvykäs"} ;
+lin kyvytto'myys_NK = {s = d40 "kyvyttömyys"} ;
+lin kyvyto'n_NK = {s = d34A "kyvytön"} ;
+lin kyy_NK = {s = d18 "kyy"} ;
+lin kyyditsija'_NK = {s = d12 "kyyditsijä"} ;
+lin kyyditta'a'_VK = {s = c53A "kyydittää"} ;
+lin kyyditys_NK = {s = d39 "kyyditys"} ;
+lin kyydita'_VK = {s = c69 "kyyditä"} ;
+lin kyyhky_NK = {s = d01 "kyyhky"} ;
+lin kyyhkyla'inen_NK = {s = d38 "kyyhkyläinen"} ;
+lin kyyhkynen_NK = {s = d38 "kyyhkynen"} ;
+lin kyyhkyslakka_NK = {s = d09A "kyyhkyslakka"} ;
+lin kyyhkysparvi_NK = {s = d07 "kyyhkysparvi"} ;
+lin kyyho'tta'a'_VK = {s = c53A "kyyhöttää"} ;
+lin kyykistys_NK = {s = d39 "kyykistys"} ;
+lin kyykistya'_VK = {s = c52 "kyykistyä"} ;
+lin kyykkia'_VK = {s = c61A "kyykkiä"} ;
+lin kyykky_NK = {s = d01A "kyykky"} ;
+lin kyykkysilleen_AdvK = {s = c99 "kyykkysilleen"} ;
+lin kyykkysilla'a'n_AdvK = {s = c99 "kyykkysillään"} ;
+lin kyykkysilta'a'n_AdvK = {s = c99 "kyykkysiltään"} ;
+lin kyykkyyn_AdvK = {s = c99 "kyykkyyn"} ;
+lin kyykka'_NK = {s = d10A "kyykkä"} ;
+lin kyykylleen_AdvK = {s = c99 "kyykylleen"} ;
+lin kyykylla'a'n_AdvK = {s = c99 "kyykyllään"} ;
+lin kyykylta'a'n_AdvK = {s = c99 "kyykyltään"} ;
+lin kyykyssa'_AdvK = {s = c99 "kyykyssä"} ;
+lin kyykysta'_AdvK = {s = c99 "kyykystä"} ;
+lin kyykytys_NK = {s = d39 "kyykytys"} ;
+lin kyyko'tta'a'_VK = {s = c53A "kyyköttää"} ;
+lin kyyla'_NK = {s = d10 "kyylä"} ;
+lin kyyla'ta'_VK = {s = c73 "kyylätä"} ;
+lin kyynel_NK = {s = d49 "kyynel"} ;
+lin kyynele_NK = {s = d49 "kyynele"} ;
+lin kyynelehtia'_VK = {s = c61A "kyynelehtiä"} ;
+lin kyyneleinen_NK = {s = d38 "kyyneleinen"} ;
+lin kyyneltya'_VK = {s = c52A "kyyneltyä"} ;
+lin kyynelo'ida'_VK = {s = c68 "kyynelöidä"} ;
+lin kyynelo'itya'_VK = {s = c52A "kyynelöityä"} ;
+lin kyynikko_NK = {s = d04A "kyynikko"} ;
+lin kyyninen_AK = {s = d38 "kyyninen"} ;
+--+ lin kyynisesti_AdvK = {s = c99 "kyynisesti"} ;
+lin kyynisyys_NK = {s = d40 "kyynisyys"} ;
+lin kyyppari_NK = {s = d06 "kyyppari"} ;
+lin kyyppi_1_NK = {s = d05A "kyyppi"} ;
+lin kyyppi_2_NK = {s = d05A "kyyppi"} ;
+lin kyyristella'_VK = {s = c67 "kyyristellä"} ;
+lin kyyristely_NK = {s = d02 "kyyristely"} ;
+lin kyyristya'_VK = {s = c52 "kyyristyä"} ;
+lin kyyrista'a'_VK = {s = c53 "kyyristää"} ;
+lin kyyry_NK = {s = d01 "kyyry"} ;
+lin kyyrylleen_AdvK = {s = c99 "kyyrylleen"} ;
+lin kyyrylla'a'n_AdvK = {s = c99 "kyyryllään"} ;
+lin kyyrylta'a'n_AdvK = {s = c99 "kyyryltään"} ;
+lin kyyryssa'_AdvK = {s = c99 "kyyryssä"} ;
+lin kyyrysta'_AdvK = {s = c99 "kyyrystä"} ;
+lin kyyryyn_AdvK = {s = c99 "kyyryyn"} ;
+lin kyyro'tta'a'_VK = {s = c53A "kyyröttää"} ;
+lin kyyti_NK = {s = d05A "kyyti"} ;
+lin kyytia'_VK = {s = c61A "kyytiä"} ;
+lin kyytto'_NK = {s = d01A "kyyttö"} ;
+lin kyo'kki_NK = {s = d05A "kyökki"} ;
+lin kyo'my_NK = {s = d01 "kyömy"} ;
+lin kyo'peli_NK = {s = d06 "kyöpeli"} ;
+lin kyo'pelinvuori_NK = {s = d26 "kyöpelinvuori"} ;
+lin kyo'ra'ta'_VK = {s = c73 "kyörätä"} ;
+lin ka'dellinen_NK = {s = d38 "kädellinen"} ;
+lin ka'den_ka'a'nteessa'_AdvK = {s = c99 "käden käänteessä"} ;
+lin ka'deto'n_NK = {s = d34A "kädetön"} ;
+lin ka'herrys_NK = {s = d39 "käherrys"} ;
+lin ka'hertya'_VK = {s = c52A "kähertyä"} ;
+lin ka'herta'a'_VK = {s = c54A "kähertää"} ;
+lin ka'heta'_VK = {s = c72 "kähetä"} ;
+lin ka'heys_NK = {s = d40 "käheys"} ;
+lin ka'heytya'_VK = {s = c52A "käheytyä"} ;
+lin ka'hea'_AK = {s = d15 "käheä"} ;
+--+ lin ka'hea'sti_AdvK = {s = c99 "käheästi"} ;
+lin ka'hina'_NK = {s = d12 "kähinä"} ;
+lin ka'hista'_VK = {s = c66 "kähistä"} ;
+lin ka'hminta'_NK = {s = d09A "kähmintä"} ;
+lin ka'hmia'_VK = {s = c61 "kähmiä"} ;
+lin ka'hvellys_NK = {s = d39 "kähvellys"} ;
+lin ka'hvelta'a'_VK = {s = c54A "kähveltää"} ;
+lin ka'ha'hdys_NK = {s = d39 "kähähdys"} ;
+lin ka'ha'hta'a'_VK = {s = c53A "kähähtää"} ;
+lin ka'ha'ryys_NK = {s = d40 "kähäryys"} ;
+lin ka'ha'ra'_NK = {s = d10 "kähärä"} ;
+lin ka'ha'ra'inen_NK = {s = d38 "kähäräinen"} ;
+lin ka'ki_NK = {s = d07A "käki"} ;
+lin ka'kkyra'_NK = {s = d12 "käkkyrä"} ;
+lin ka'kka'ra'_NK = {s = d11 "käkkärä"} ;
+lin ka'ka'tta'a'_VK = {s = c53A "käkättää"} ;
+lin ka'ka'tys_NK = {s = d39 "käkätys"} ;
+lin ka'ko'_NK = {s = d01A "käkö"} ;
+lin ka'ko'nen_NK = {s = d38 "käkönen"} ;
+lin ka'ly_NK = {s = d01 "käly"} ;
+--? lin ka'lykset_NK = {s = d39 "kälykset"} ;
+lin ka'mmekka'_NK = {s = d14A "kämmekkä"} ;
+lin ka'mmen_NK = {s = d32 "kämmen"} ;
+lin ka'mmenenlevyinen_NK = {s = d38 "kämmenenlevyinen"} ;
+lin ka'mmenta'a'_VK = {s = c54A "kämmentää"} ;
+lin ka'mppa'_NK = {s = d10A "kämppä"} ;
+lin ka'nina'_NK = {s = d12 "käninä"} ;
+lin ka'nista'_VK = {s = c66 "känistä"} ;
+lin ka'nni_NK = {s = d05 "känni"} ;
+lin ka'nninen_NK = {s = d38 "känninen"} ;
+lin ka'nnipa'issa'_AdvK = {s = c99 "kännipäissä"} ;
+lin ka'nny_NK = {s = d01 "känny"} ;
+lin ka'nnykka'_NK = {s = d14A "kännykkä"} ;
+lin ka'nna'ta'_VK = {s = c73 "kännätä"} ;
+lin ka'nsistya'_VK = {s = c52 "känsistyä"} ;
+lin ka'nsittya'_VK = {s = c52A "känsittyä"} ;
+lin ka'nsa'_NK = {s = d10 "känsä"} ;
+lin ka'nsa'inen_NK = {s = d38 "känsäinen"} ;
+lin ka'ntty_NK = {s = d01A "käntty"} ;
+lin ka'na'_NK = {s = d10 "känä"} ;
+lin ka'pertya'_VK = {s = c52A "käpertyä"} ;
+lin ka'perta'a'_VK = {s = c54A "käpertää"} ;
+lin ka'ppyra'_NK = {s = d12 "käppyrä"} ;
+lin ka'ppyra'inen_NK = {s = d38 "käppyräinen"} ;
+lin ka'ppa'illa'_VK = {s = c67 "käppäillä"} ;
+lin ka'ppa'ily_NK = {s = d02 "käppäily"} ;
+lin ka'ppa'na'_NK = {s = d12 "käppänä"} ;
+lin ka'pristella'_VK = {s = c67 "käpristellä"} ;
+lin ka'pristya'_VK = {s = c52 "käpristyä"} ;
+lin ka'prista'a'_VK = {s = c53 "käpristää"} ;
+lin ka'psehtia'_VK = {s = c61A "käpsehtiä"} ;
+lin ka'py_NK = {s = d01A "käpy"} ;
+lin ka'pykaartilaisuus_NK = {s = d40 "käpykaartilaisuus"} ;
+lin ka'pa'la'_NK = {s = d11 "käpälä"} ;
+lin ka'pa'lo'ida'_VK = {s = c68 "käpälöidä"} ;
+lin ka'pa'lo'inti_NK = {s = d05A "käpälöinti"} ;
+lin ka'pa'ta'_VK = {s = c73A "käpätä"} ;
+lin ka'reys_NK = {s = d40 "käreys"} ;
+lin ka'rea'_NK = {s = d15 "käreä"} ;
+lin ka'rhi_NK = {s = d07 "kärhi"} ;
+lin ka'rha'ma'_NK = {s = d11 "kärhämä"} ;
+lin ka'rha'mo'ida'_VK = {s = c68 "kärhämöidä"} ;
+lin ka'rha'mo'inti_NK = {s = d05A "kärhämöinti"} ;
+lin ka'rho'_NK = {s = d01 "kärhö"} ;
+lin ka'rina'_NK = {s = d13 "kärinä"} ;
+lin ka'riste_NK = {s = d48 "käriste"} ;
+lin ka'ristys_NK = {s = d39 "käristys"} ;
+lin ka'ristya'_VK = {s = c52 "käristyä"} ;
+lin ka'rista'_VK = {s = c66 "käristä"} ;
+lin ka'rista'a'_VK = {s = c53 "käristää"} ;
+lin ka'rjekkyys_NK = {s = d40 "kärjekkyys"} ;
+--+ lin ka'rjekka'a'sti_AdvK = {s = c99 "kärjekkäästi"} ;
+lin ka'rjeka's_AK = {s = d41A "kärjekäs"} ;
+lin ka'rjellinen_NK = {s = d38 "kärjellinen"} ;
+lin ka'rjimma'inen_NK = {s = d38 "kärjimmäinen"} ;
+lin ka'rjistyma'_NK = {s = d10 "kärjistymä"} ;
+lin ka'rjistys_NK = {s = d39 "kärjistys"} ;
+lin ka'rjistya'_VK = {s = c52 "kärjistyä"} ;
+lin ka'rjista'a'_VK = {s = c53 "kärjistää"} ;
+lin ka'rkevyys_NK = {s = d40 "kärkevyys"} ;
+lin ka'rkeva'_AK = {s = d10 "kärkevä"} ;
+--+ lin ka'rkeva'sti_AdvK = {s = c99 "kärkevästi"} ;
+lin ka'rki_NK = {s = d07A "kärki"} ;
+lin ka'rkiaika_NK = {s = d09A "kärkiaika"} ;
+lin ka'rkinen_NK = {s = d38 "kärkinen"} ;
+lin ka'rkkyja'_NK = {s = d10 "kärkkyjä"} ;
+lin ka'rkkya'_VK = {s = c52A "kärkkyä"} ;
+lin ka'rkka'ys_NK = {s = d40 "kärkkäys"} ;
+--+ lin ka'rkka'a'sti_AdvK = {s = c99 "kärkkäästi"} ;
+lin ka'rkynta'_NK = {s = d09A "kärkyntä"} ;
+lin ka'rka's_AK = {s = d41A "kärkäs"} ;
+lin ka'rppa'_NK = {s = d10A "kärppä"} ;
+lin ka'rppa'ma'inen_NK = {s = d38 "kärppämäinen"} ;
+lin ka'rpa'nen_NK = {s = d38 "kärpänen"} ;
+lin ka'rpa'sparvi_NK = {s = d07 "kärpäsparvi"} ;
+lin ka'rri_NK = {s = d05 "kärri"} ;
+lin ka'rry_NK = {s = d01 "kärry"} ;
+lin ka'rra'ri_NK = {s = d06 "kärräri"} ;
+lin ka'rra'ta'_VK = {s = c73 "kärrätä"} ;
+lin ka'rra'ys_NK = {s = d39 "kärräys"} ;
+lin ka'rra'a'ja'_NK = {s = d10 "kärrääjä"} ;
+lin ka'rsija'_NK = {s = d12 "kärsijä"} ;
+lin ka'rsimys_NK = {s = d39 "kärsimys"} ;
+lin ka'rsima'tto'myys_NK = {s = d40 "kärsimättömyys"} ;
+lin ka'rsima'tto'ma'sti_AdvK = {s = c99 "kärsimättömästi"} ;
+lin ka'rsima'to'n_NK = {s = d34A "kärsimätön"} ;
+lin ka'rsiva'llinen_AK = {s = d38 "kärsivällinen"} ;
+--+ lin ka'rsiva'llisesti_AdvK = {s = c99 "kärsivällisesti"} ;
+lin ka'rsiva'llisyys_NK = {s = d40 "kärsivällisyys"} ;
+lin ka'rsia'_VK = {s = c61 "kärsiä"} ;
+lin ka'rsa'_NK = {s = d10 "kärsä"} ;
+lin ka'rsa'ka's_NK = {s = d41A "kärsäkäs"} ;
+lin ka'rsa'mo'_NK = {s = d02 "kärsämö"} ;
+lin ka'rttyinen_NK = {s = d38 "kärttyinen"} ;
+lin ka'rttyisyys_NK = {s = d40 "kärttyisyys"} ;
+lin ka'rttyisa'_AK = {s = d10 "kärttyisä"} ;
+--+ lin ka'rttyisa'sti_AdvK = {s = c99 "kärttyisästi"} ;
+lin ka'rtta'a'_VK = {s = c53A "kärttää"} ;
+lin ka'rtyinen_NK = {s = d38 "kärtyinen"} ;
+lin ka'rtyisa'_NK = {s = d10 "kärtyisä"} ;
+lin ka'rvennys_NK = {s = d39 "kärvennys"} ;
+lin ka'rventya'_VK = {s = c52A "kärventyä"} ;
+lin ka'rventa'a'_VK = {s = c54A "kärventää"} ;
+lin ka'rvistella'_VK = {s = c67 "kärvistellä"} ;
+lin ka'ry_NK = {s = d01 "käry"} ;
+lin ka'ryinen_NK = {s = d38 "käryinen"} ;
+lin ka'rytta'a'_VK = {s = c53A "käryttää"} ;
+lin ka'rytys_NK = {s = d39 "kärytys"} ;
+lin ka'ryta'_VK = {s = c75 "kärytä"} ;
+lin ka'ra'hta'a'_VK = {s = c53A "kärähtää"} ;
+--? lin ka'ra'ja't_NK = {s = d10 "käräjät"} ;
+lin ka'ra'jo'ida'_VK = {s = c68 "käräjöidä"} ;
+lin ka'ra'jo'inti_NK = {s = d05A "käräjöinti"} ;
+lin ka'ra'ytta'a'_VK = {s = c53A "käräyttää"} ;
+lin ka'si_NK = {s = d27 "käsi"} ;
+lin ka'siaika_NK = {s = d09A "käsiaika"} ;
+lin ka'sikaulaa_AdvK = {s = c99 "käsikaulaa"} ;
+lin ka'sikka'in_AdvK = {s = c99 "käsikkäin"} ;
+lin ka'sikopelolla_AdvK = {s = c99 "käsikopelolla"} ;
+lin ka'sikopelolta_AdvK = {s = c99 "käsikopelolta"} ;
+lin ka'siksi_AdvK = {s = c99 "käsiksi"} ;
+lin ka'sikynkka'_AdvK = {s = c99 "käsikynkkä"} ;
+lin ka'sika'hma'_NK = {s = d10 "käsikähmä"} ;
+lin ka'sille_AdvK = {s = c99 "käsille"} ;
+lin ka'silla'_AdvK = {s = c99 "käsillä"} ;
+lin ka'sin_AdvK = {s = c99 "käsin"} ;
+lin ka'sine_NK = {s = d48 "käsine"} ;
+lin ka'sinkohonta_NK = {s = d09A "käsinkohonta"} ;
+lin ka'sipohjaa_AdvK = {s = c99 "käsipohjaa"} ;
+lin ka'sissa'_AdvK = {s = c99 "käsissä"} ;
+lin ka'site_NK = {s = d48A "käsite"} ;
+lin ka'sitella'_VK = {s = c67A "käsitellä"} ;
+lin ka'sitelta'vyys_NK = {s = d40 "käsiteltävyys"} ;
+lin ka'sitetta'vyys_NK = {s = d40 "käsitettävyys"} ;
+lin ka'sitteellinen_AK = {s = d38 "käsitteellinen"} ;
+--+ lin ka'sitteellisesti_AdvK = {s = c99 "käsitteellisesti"} ;
+lin ka'sitteellista'a'_VK = {s = c53 "käsitteellistää"} ;
+lin ka'sitteellisyys_NK = {s = d40 "käsitteellisyys"} ;
+lin ka'sitteinen_NK = {s = d38 "käsitteinen"} ;
+lin ka'sitteista'a'_VK = {s = c53 "käsitteistää"} ;
+lin ka'sitteisto'_NK = {s = d01 "käsitteistö"} ;
+lin ka'sittelema'to'n_NK = {s = d34A "käsittelemätön"} ;
+lin ka'sittelija'_NK = {s = d12 "käsittelijä"} ;
+lin ka'sittely_NK = {s = d02 "käsittely"} ;
+lin ka'sitta'ma'tto'myys_NK = {s = d40 "käsittämättömyys"} ;
+lin ka'sitta'ma'tto'ma'sti_AdvK = {s = c99 "käsittämättömästi"} ;
+lin ka'sitta'ma'to'n_NK = {s = d34A "käsittämätön"} ;
+lin ka'sitta'a'_VK = {s = c53A "käsittää"} ;
+lin ka'sityksin_AdvK = {s = c99 "käsityksin"} ;
+lin ka'sitys_NK = {s = d39 "käsitys"} ;
+lin ka'sitysten_AdvK = {s = c99 "käsitysten"} ;
+--+ lin ka'sivaraisesti_AdvK = {s = c99 "käsivaraisesti"} ;
+lin ka'sketta'a'_VK = {s = c53A "käskettää"} ;
+lin ka'skea'_VK = {s = c58 "käskeä"} ;
+lin ka'skija'_NK = {s = d12 "käskijä"} ;
+lin ka'sky_NK = {s = d01 "käsky"} ;
+lin ka'skyla'inen_NK = {s = d38 "käskyläinen"} ;
+lin ka'skytta'a'_VK = {s = c53A "käskyttää"} ;
+lin ka'skytys_NK = {s = d39 "käskytys"} ;
+lin ka'sna'_NK = {s = d10 "käsnä"} ;
+lin ka'ssa'ta'_VK = {s = c73 "kässätä"} ;
+lin ka'teinen_NK = {s = d38 "käteinen"} ;
+lin ka'tella'_VK = {s = c67A "kätellä"} ;
+lin ka'tevyys_NK = {s = d40 "kätevyys"} ;
+lin ka'teva'_AK = {s = d10 "kätevä"} ;
+--+ lin ka'teva'sti_AdvK = {s = c99 "kätevästi"} ;
+lin ka'tilo'_NK = {s = d02 "kätilö"} ;
+lin ka'tilo'ida'_VK = {s = c62 "kätilöidä"} ;
+lin ka'tinen_AK = {s = d38 "kätinen"} ;
+--+ lin ka'tisesti_AdvK = {s = c99 "kätisesti"} ;
+lin ka'tisyys_NK = {s = d40 "kätisyys"} ;
+lin ka'tkenta'_NK = {s = d09A "kätkentä"} ;
+lin ka'tkeytya'_VK = {s = c52A "kätkeytyä"} ;
+lin ka'tkea'_VK = {s = c58 "kätkeä"} ;
+lin ka'tkija'_NK = {s = d12 "kätkijä"} ;
+lin ka'tkyt_NK = {s = d43 "kätkyt"} ;
+lin ka'tko'_NK = {s = d01 "kätkö"} ;
+lin ka'ttely_NK = {s = d02 "kättely"} ;
+lin ka'ttenpa'a'llepaneminen_NK = {s = d38 "kättenpäällepaneminen"} ;
+lin ka'tyri_NK = {s = d06 "kätyri"} ;
+lin ka'to'nen_NK = {s = d38 "kätönen"} ;
+lin ka'veleskella'_VK = {s = c67 "käveleskellä"} ;
+lin ka'velija'_NK = {s = d12 "kävelijä"} ;
+lin ka'vella'_VK = {s = c67 "kävellä"} ;
+lin ka'vely_NK = {s = d02 "kävely"} ;
+lin ka'velytta'a'_VK = {s = c53A "kävelyttää"} ;
+lin ka'vija'_NK = {s = d12 "kävijä"} ;
+lin ka'va'ista'_VK = {s = c66 "käväistä"} ;
+lin ka'va'isy_NK = {s = d02 "käväisy"} ;
+lin ka'yda'_VK = {s = c65 "käydä"} ;
+lin ka'yminen_NK = {s = d38 "käyminen"} ;
+lin ka'yma'jalkaa_AdvK = {s = c99 "käymäjalkaa"} ;
+lin ka'yma'la'_NK = {s = d12 "käymälä"} ;
+lin ka'yma'selta'_AdvK = {s = c99 "käymäseltä"} ;
+lin ka'yma'selta'a'n_AdvK = {s = c99 "käymäseltään"} ;
+lin ka'ynniste_NK = {s = d48 "käynniste"} ;
+lin ka'ynnisteinen_NK = {s = d38 "käynnisteinen"} ;
+lin ka'ynnistin_NK = {s = d33 "käynnistin"} ;
+lin ka'ynnistys_NK = {s = d39 "käynnistys"} ;
+lin ka'ynnistyvyys_NK = {s = d40 "käynnistyvyys"} ;
+lin ka'ynnistya'_VK = {s = c52 "käynnistyä"} ;
+lin ka'ynnista'ja'_NK = {s = d10 "käynnistäjä"} ;
+lin ka'ynnista'a'_VK = {s = c53 "käynnistää"} ;
+lin ka'ynti_NK = {s = d05A "käynti"} ;
+lin ka'yntiaika_NK = {s = d09A "käyntiaika"} ;
+lin ka'yntinen_NK = {s = d38 "käyntinen"} ;
+lin ka'ypyys_NK = {s = d40 "käypyys"} ;
+lin ka'ypa'_NK = {s = d10A "käypä"} ;
+lin ka'yristyma'_NK = {s = d10 "käyristymä"} ;
+lin ka'yristys_NK = {s = d39 "käyristys"} ;
+lin ka'yristya'_VK = {s = c52 "käyristyä"} ;
+lin ka'yrista'a'_VK = {s = c53 "käyristää"} ;
+lin ka'yryys_NK = {s = d40 "käyryys"} ;
+lin ka'yra'_NK = {s = d10 "käyrä"} ;
+lin ka'yra'sto'_NK = {s = d01 "käyrästö"} ;
+lin ka'yskella'_VK = {s = c67 "käyskellä"} ;
+lin ka'yskennella'_VK = {s = c67A "käyskennellä"} ;
+lin ka'yskentely_NK = {s = d02 "käyskentely"} ;
+lin ka'yte_NK = {s = d48A "käyte"} ;
+lin ka'ytella'_VK = {s = c67A "käytellä"} ;
+lin ka'ytetty_NK = {s = d01A "käytetty"} ;
+lin ka'ytetta'vyys_NK = {s = d40 "käytettävyys"} ;
+lin ka'yttely_NK = {s = d02 "käyttely"} ;
+lin ka'ytta'jisto'_NK = {s = d01 "käyttäjistö"} ;
+lin ka'ytta'ja'_NK = {s = d10 "käyttäjä"} ;
+lin ka'ytta'ytyminen_NK = {s = d38 "käyttäytyminen"} ;
+lin ka'ytta'ytyma'_NK = {s = d10 "käyttäytymä"} ;
+lin ka'ytta'ytya'_VK = {s = c52A "käyttäytyä"} ;
+lin ka'ytta'a'_VK = {s = c53A "käyttää"} ;
+lin ka'ytto'_NK = {s = d01A "käyttö"} ;
+lin ka'ytto'aika_NK = {s = d09A "käyttöaika"} ;
+lin ka'ytto'inen_NK = {s = d38 "käyttöinen"} ;
+lin ka'yta'nne_NK = {s = d48A "käytänne"} ;
+lin ka'yta'nno'llinen_AK = {s = d38 "käytännöllinen"} ;
+--+ lin ka'yta'nno'llisesti_AdvK = {s = c99 "käytännöllisesti"} ;
+lin ka'yta'nno'llistya'_VK = {s = c52 "käytännöllistyä"} ;
+lin ka'yta'nno'llista'a'_VK = {s = c53 "käytännöllistää"} ;
+lin ka'yta'nno'llisyys_NK = {s = d40 "käytännöllisyys"} ;
+lin ka'yta'nto'_NK = {s = d01A "käytäntö"} ;
+lin ka'yta'va'_NK = {s = d10 "käytävä"} ;
+lin ka'yto'ksinen_NK = {s = d38 "käytöksinen"} ;
+lin ka'yto's_NK = {s = d39 "käytös"} ;
+lin ka'yvyys_NK = {s = d40 "käyvyys"} ;
+lin ka'yva'_AK = {s = d10 "käyvä"} ;
+--+ lin ka'yva'sti_AdvK = {s = c99 "käyvästi"} ;
+--? lin ka'a'dyt_NK = {s = d01A "käädyt"} ;
+lin ka'a'kka'_NK = {s = d10A "kääkkä"} ;
+lin ka'a'mi_NK = {s = d05 "käämi"} ;
+lin ka'a'minta'_NK = {s = d09A "käämintä"} ;
+lin ka'a'mitys_NK = {s = d39 "käämitys"} ;
+lin ka'a'mia'_VK = {s = c61 "käämiä"} ;
+lin ka'a'nne_NK = {s = d48A "käänne"} ;
+lin ka'a'nnekohta_NK = {s = d10A "käännekohta"} ;
+lin ka'a'nnella'_VK = {s = c67A "käännellä"} ;
+lin ka'a'nnin_NK = {s = d33A "käännin"} ;
+lin ka'a'nnynna'inen_NK = {s = d38 "käännynnäinen"} ;
+lin ka'a'nnytta'a'_VK = {s = c53A "käännyttää"} ;
+lin ka'a'nnytys_NK = {s = d39 "käännytys"} ;
+lin ka'a'nna'hdella'_VK = {s = c67A "käännähdellä"} ;
+lin ka'a'nna'hdys_NK = {s = d39 "käännähdys"} ;
+lin ka'a'nna'hta'a'_VK = {s = c53A "käännähtää"} ;
+lin ka'a'nna'tta'a'_VK = {s = c53A "käännättää"} ;
+lin ka'a'nno's_NK = {s = d39 "käännös"} ;
+--+ lin ka'a'nteentekeva'sti_AdvK = {s = c99 "käänteentekevästi"} ;
+lin ka'a'nteinen_AK = {s = d38 "käänteinen"} ;
+lin ka'a'nteinen_AK = {s = d38 "käänteinen"} ;
+--+ lin ka'a'nteisesti_AdvK = {s = c99 "käänteisesti"} ;
+lin ka'a'ntelehtia'_VK = {s = c61A "kääntelehtiä"} ;
+lin ka'a'ntely_NK = {s = d02 "kääntely"} ;
+lin ka'a'ntyilla'_VK = {s = c67 "kääntyillä"} ;
+lin ka'a'ntymys_NK = {s = d39 "kääntymys"} ;
+lin ka'a'ntya'_VK = {s = c52A "kääntyä"} ;
+lin ka'a'nta'ja'_NK = {s = d10 "kääntäjä"} ;
+lin ka'a'nta'a'_VK = {s = c54A "kääntää"} ;
+lin ka'a'nto'_NK = {s = d01A "kääntö"} ;
+lin ka'a'pio'_NK = {s = d03 "kääpiö"} ;
+lin ka'a'pio'ida'_VK = {s = c62 "kääpiöidä"} ;
+lin ka'a'pio'itya'_VK = {s = c52A "kääpiöityä"} ;
+lin ka'a'pa'_NK = {s = d10A "kääpä"} ;
+lin ka'a're_NK = {s = d48 "kääre"} ;
+lin ka'a'riintya'_VK = {s = c52A "kääriintyä"} ;
+lin ka'a'rinta'_NK = {s = d09A "käärintä"} ;
+lin ka'a'riytya'_VK = {s = c52A "kääriytyä"} ;
+lin ka'a'ria'_VK = {s = c61 "kääriä"} ;
+lin ka'a'ria'inen_NK = {s = d38 "kääriäinen"} ;
+lin ka'a'rme_NK = {s = d48 "käärme"} ;
+lin ka'a'rmeissa'a'n_AdvK = {s = c99 "käärmeissään"} ;
+lin ka'a'rmema'inen_NK = {s = d38 "käärmemäinen"} ;
+lin ka'a'ryle_NK = {s = d48 "kääryle"} ;
+lin ka'a'ra'ista'_VK = {s = c66 "kääräistä"} ;
+lin ka'a'ro'_NK = {s = d01 "käärö"} ;
+lin ka'a'ty_NK = {s = d01A "kääty"} ;
+lin ka'a'va'ka's_NK = {s = d41A "kääväkäs"} ;
+lin ko'hina'_NK = {s = d12 "köhinä"} ;
+lin ko'hista'_VK = {s = c66 "köhistä"} ;
+lin ko'hitta'a'_VK = {s = c53A "köhittää"} ;
+lin ko'hia'_VK = {s = c61 "köhiä"} ;
+lin ko'ha'_NK = {s = d10 "köhä"} ;
+lin ko'kko'_NK = {s = d01A "kökkö"} ;
+lin ko'ko'tta'a'_VK = {s = c53A "kököttää"} ;
+lin ko'li_NK = {s = d05 "köli"} ;
+lin ko'lillinen_NK = {s = d38 "kölillinen"} ;
+lin ko'lli_1_NK = {s = d05 "kölli"} ;
+lin ko'lli_2_NK = {s = d05 "kölli"} ;
+lin ko'llikka'_NK = {s = d14A "köllikkä"} ;
+lin ko'lla'hta'a'_VK = {s = c53A "köllähtää"} ;
+lin ko'llo'tella'_VK = {s = c67A "köllötellä"} ;
+lin ko'llo'ttely_NK = {s = d02 "köllöttely"} ;
+lin ko'llo'tta'a'_VK = {s = c53A "köllöttää"} ;
+lin ko'mma'hdys_NK = {s = d39 "kömmähdys"} ;
+lin ko'mma'hta'a'_VK = {s = c53A "kömmähtää"} ;
+lin ko'mpelyys_NK = {s = d40 "kömpelyys"} ;
+lin ko'mpelo'_AK = {s = d02 "kömpelö"} ;
+lin ko'mpelo'itya'_VK = {s = c52A "kömpelöityä"} ;
+--+ lin ko'mpelo'sti_AdvK = {s = c99 "kömpelösti"} ;
+lin ko'mpia'_VK = {s = c61A "kömpiä"} ;
+lin ko'nga's_NK = {s = d41A "köngäs"} ;
+lin ko'niin_AdvK = {s = c99 "köniin"} ;
+lin ko'nnila'inen_NK = {s = d38 "könniläinen"} ;
+lin ko'ntti_NK = {s = d05A "köntti"} ;
+lin ko'ntta'_NK = {s = d10A "könttä"} ;
+lin ko'ntys_NK = {s = d39 "köntys"} ;
+lin ko'ntysta'a'_VK = {s = c53 "köntystää"} ;
+lin ko'nyta'_VK = {s = c74 "könytä"} ;
+lin ko'no'tta'a'_VK = {s = c53A "könöttää"} ;
+lin ko'pelo'sti_AdvK = {s = c99 "köpelösti"} ;
+lin ko'pitella'_VK = {s = c67A "köpitellä"} ;
+lin ko'pitta'a'_VK = {s = c53A "köpittää"} ;
+lin ko'rila's_NK = {s = d41 "köriläs"} ;
+lin ko'rttila'inen_NK = {s = d38 "körttiläinen"} ;
+lin ko'rttila'isyys_NK = {s = d40 "körttiläisyys"} ;
+lin ko'ro'tella'_VK = {s = c67A "körötellä"} ;
+lin ko'ro'tta'a'_VK = {s = c53A "köröttää"} ;
+lin ko'ssi_1_NK = {s = d05 "kössi"} ;
+lin ko'ssi_2_NK = {s = d05 "kössi"} ;
+lin ko'ydenveto_NK = {s = d01A "köydenveto"} ;
+lin ko'yhdytta'a'_VK = {s = c53A "köyhdyttää"} ;
+lin ko'yhentya'_VK = {s = c52A "köyhentyä"} ;
+lin ko'yheta'_VK = {s = c72 "köyhetä"} ;
+lin ko'yhtyneisyys_NK = {s = d40 "köyhtyneisyys"} ;
+lin ko'yhtya'_VK = {s = c52A "köyhtyä"} ;
+lin ko'yhyys_NK = {s = d40 "köyhyys"} ;
+lin ko'yha'_AK = {s = d10 "köyhä"} ;
+lin ko'yha'illa'_VK = {s = c67 "köyhäillä"} ;
+lin ko'yha'ily_NK = {s = d02 "köyhäily"} ;
+lin ko'yha'listo'_NK = {s = d01 "köyhälistö"} ;
+--+ lin ko'yha'sti_AdvK = {s = c99 "köyhästi"} ;
+lin ko'ykistella'_VK = {s = c67 "köykistellä"} ;
+lin ko'ykistya'_VK = {s = c52 "köykistyä"} ;
+lin ko'ykista'a'_VK = {s = c53 "köykistää"} ;
+lin ko'ykkyyn_AdvK = {s = c99 "köykkyyn"} ;
+lin ko'ykyssa'_AdvK = {s = c99 "köykyssä"} ;
+lin ko'ykysta'_AdvK = {s = c99 "köykystä"} ;
+lin ko'yka'inen_AK = {s = d38 "köykäinen"} ;
+--+ lin ko'yka'isesti_AdvK = {s = c99 "köykäisesti"} ;
+lin ko'yka'isyys_NK = {s = d40 "köykäisyys"} ;
+lin ko'ynnehtia'_VK = {s = c61A "köynnehtiä"} ;
+lin ko'ynnelia's_NK = {s = d41 "köynneliäs"} ;
+lin ko'ynno's_NK = {s = d39 "köynnös"} ;
+lin ko'ynno'sta'a'_VK = {s = c53 "köynnöstää"} ;
+lin ko'yristella'_VK = {s = c67 "köyristellä"} ;
+lin ko'yristya'_VK = {s = c52 "köyristyä"} ;
+lin ko'yrista'a'_VK = {s = c53 "köyristää"} ;
+lin ko'yry_NK = {s = d01 "köyry"} ;
+lin ko'yryssa'_AdvK = {s = c99 "köyryssä"} ;
+lin ko'yrysta'_AdvK = {s = c99 "köyrystä"} ;
+lin ko'yryyn_AdvK = {s = c99 "köyryyn"} ;
+lin ko'ysi_NK = {s = d27 "köysi"} ;
+lin ko'ysisto'_NK = {s = d02 "köysistö"} ;
+lin ko'ysitta'a'_VK = {s = c53A "köysittää"} ;
+lin ko'yte_NK = {s = d48A "köyte"} ;
+lin ko'ytta'a'_VK = {s = c53A "köyttää"} ;
+lin ko'yto's_NK = {s = d39 "köytös"} ;
+lin ko'o'_NK = {s = d18 "köö"} ;
+lin ko'o'ri_NK = {s = d05 "kööri"} ;
+lin laadinta_NK = {s = d09A "laadinta"} ;
+lin laadukas_AK = {s = d41A "laadukas"} ;
+--+ lin laadukkaasti_AdvK = {s = c99 "laadukkaasti"} ;
+lin laadukkuus_NK = {s = d40 "laadukkuus"} ;
+lin laadullinen_AK = {s = d38 "laadullinen"} ;
+--+ lin laadullisesti_AdvK = {s = c99 "laadullisesti"} ;
+lin laadullistaa_VK = {s = c53 "laadullistaa"} ;
+lin laaduton_NK = {s = d34A "laaduton"} ;
+lin laahaantua_VK = {s = c52A "laahaantua"} ;
+lin laahata_VK = {s = c73 "laahata"} ;
+lin laahaus_NK = {s = d39 "laahaus"} ;
+lin laahautua_VK = {s = c52A "laahautua"} ;
+lin laahia_VK = {s = c61 "laahia"} ;
+lin laahus_NK = {s = d39 "laahus"} ;
+lin laahustaa_VK = {s = c53 "laahustaa"} ;
+lin laahustin_NK = {s = d33 "laahustin"} ;
+lin laaja_AK = {s = d09 "laaja"} ;
+lin laajalti_AdvK = {s = c99 "laajalti"} ;
+lin laajaspektrinen_NK = {s = d38 "laajaspektrinen"} ;
+--+ lin laajasti_AdvK = {s = c99 "laajasti"} ;
+lin laajenema_NK = {s = d10 "laajenema"} ;
+lin laajenemiskerroin_NK = {s = d33A "laajenemiskerroin"} ;
+lin laajennelma_NK = {s = d10 "laajennelma"} ;
+lin laajennos_NK = {s = d39 "laajennos"} ;
+lin laajennus_NK = {s = d39 "laajennus"} ;
+lin laajentaa_VK = {s = c54A "laajentaa"} ;
+lin laajentua_VK = {s = c52A "laajentua"} ;
+lin laajentuma_NK = {s = d10 "laajentuma"} ;
+lin laajeta_VK = {s = c72 "laajeta"} ;
+lin laajuinen_NK = {s = d38 "laajuinen"} ;
+lin laajuus_NK = {s = d40 "laajuus"} ;
+lin laaka_NK = {s = d09A "laaka"} ;
+lin laakea_NK = {s = d15 "laakea"} ;
+lin laakeri_1_NK = {s = d06 "laakeri"} ;
+lin laakeri_2_NK = {s = d06 "laakeri"} ;
+lin laakeroida_1_VK = {s = c62 "laakeroida"} ;
+lin laakeroida_2_VK = {s = c62 "laakeroida"} ;
+lin laakerointi_NK = {s = d05A "laakerointi"} ;
+lin laaki_NK = {s = d05 "laaki"} ;
+lin laakio_NK = {s = d03 "laakio"} ;
+lin laakso_NK = {s = d01 "laakso"} ;
+lin laaksoinen_NK = {s = d38 "laaksoinen"} ;
+lin laama_1_NK = {s = d09 "laama"} ;
+lin laama_2_NK = {s = d09 "laama"} ;
+lin laamanni_NK = {s = d05 "laamanni"} ;
+lin laannuttaa_VK = {s = c53A "laannuttaa"} ;
+lin laantua_VK = {s = c52A "laantua"} ;
+lin laapis_NK = {s = d39 "laapis"} ;
+lin laardi_NK = {s = d05 "laardi"} ;
+lin laari_NK = {s = d05 "laari"} ;
+lin laasta_VK = {s = c66 "laasta"} ;
+lin laastari_NK = {s = d06 "laastari"} ;
+lin laastaroida_VK = {s = c62 "laastaroida"} ;
+lin laastarointi_NK = {s = d05A "laastarointi"} ;
+lin laasti_NK = {s = d05 "laasti"} ;
+lin laastita_VK = {s = c69 "laastita"} ;
+lin laastitus_NK = {s = d39 "laastitus"} ;
+lin laata_VK = {s = c73 "laata"} ;
+lin laatia_VK = {s = c61A "laatia"} ;
+lin laatija_NK = {s = d12 "laatija"} ;
+lin laatikko_NK = {s = d04A "laatikko"} ;
+lin laatikkoonkanto_NK = {s = d01A "laatikkoonkanto"} ;
+lin laatikoida_VK = {s = c62 "laatikoida"} ;
+lin laatikollinen_NK = {s = d38 "laatikollinen"} ;
+lin laatikosto_NK = {s = d01 "laatikosto"} ;
+lin laatoittaa_VK = {s = c53A "laatoittaa"} ;
+lin laatoitus_NK = {s = d39 "laatoitus"} ;
+lin laatta_NK = {s = d09A "laatta"} ;
+lin laatu_NK = {s = d01A "laatu"} ;
+lin laatuaika_NK = {s = d09A "laatuaika"} ;
+lin laatuinen_NK = {s = d38 "laatuinen"} ;
+lin laatuisa_NK = {s = d10 "laatuisa"} ;
+lin laatuisuus_NK = {s = d40 "laatuisuus"} ;
+lin laava_NK = {s = d09 "laava"} ;
+lin laavu_NK = {s = d01 "laavu"} ;
+lin labiili_AK = {s = d05 "labiili"} ;
+--+ lin labiilisti_AdvK = {s = c99 "labiilisti"} ;
+lin labiilius_NK = {s = d40 "labiilius"} ;
+lin laboraattori_NK = {s = d06 "laboraattori"} ;
+lin laborantti_NK = {s = d05A "laborantti"} ;
+lin laboratorio_NK = {s = d03 "laboratorio"} ;
+lin laboroida_VK = {s = c62 "laboroida"} ;
+lin laborointi_NK = {s = d05A "laborointi"} ;
+lin labradori_NK = {s = d05 "labradori"} ;
+lin labradoriitti_NK = {s = d05A "labradoriitti"} ;
+lin labyrintti_NK = {s = d05A "labyrintti"} ;
+lin ladata_1_VK = {s = c73A "ladata"} ;
+lin ladata_2_VK = {s = c73A "ladata"} ;
+lin ladella_VK = {s = c67A "ladella"} ;
+lin ladelma_NK = {s = d10 "ladelma"} ;
+lin ladonta_NK = {s = d09A "ladonta"} ;
+lin lados_NK = {s = d39 "lados"} ;
+lin lady_NK = {s = d01 "lady"} ;
+lin ladylike_NK = {s = d08 "ladylike"} ;
+lin lafka_NK = {s = d09 "lafka"} ;
+lin laguuni_NK = {s = d05 "laguuni"} ;
+lin lahdata_VK = {s = c73A "lahdata"} ;
+lin lahdeke_NK = {s = d48A "lahdeke"} ;
+lin lahdelma_NK = {s = d10 "lahdelma"} ;
+lin lahja_NK = {s = d09 "lahja"} ;
+lin lahjainen_NK = {s = d38 "lahjainen"} ;
+lin lahjaisuus_NK = {s = d40 "lahjaisuus"} ;
+lin lahjakas_AK = {s = d41A "lahjakas"} ;
+--+ lin lahjakkaasti_AdvK = {s = c99 "lahjakkaasti"} ;
+lin lahjakkuus_NK = {s = d40 "lahjakkuus"} ;
+lin lahjaton_NK = {s = d34A "lahjaton"} ;
+lin lahjattomuus_NK = {s = d40 "lahjattomuus"} ;
+lin lahje_NK = {s = d48A "lahje"} ;
+lin lahjoa_VK = {s = c52 "lahjoa"} ;
+lin lahjoittaa_VK = {s = c53A "lahjoittaa"} ;
+lin lahjoittaja_NK = {s = d10 "lahjoittaja"} ;
+lin lahjoitus_NK = {s = d39 "lahjoitus"} ;
+lin lahjoma_NK = {s = d10 "lahjoma"} ;
+lin lahjomaton_NK = {s = d34A "lahjomaton"} ;
+lin lahjomattomasti_AdvK = {s = c99 "lahjomattomasti"} ;
+lin lahjomattomuus_NK = {s = d40 "lahjomattomuus"} ;
+lin lahjonta_NK = {s = d09A "lahjonta"} ;
+lin lahjottavuus_NK = {s = d40 "lahjottavuus"} ;
+lin lahjus_NK = {s = d39 "lahjus"} ;
+lin lahkeinen_NK = {s = d38 "lahkeinen"} ;
+lin lahko_NK = {s = d01 "lahko"} ;
+lin lahkolaisuus_NK = {s = d40 "lahkolaisuus"} ;
+lin lahna_NK = {s = d09 "lahna"} ;
+lin laho_NK = {s = d01 "laho"} ;
+lin lahokas_NK = {s = d41A "lahokas"} ;
+lin lahokka_NK = {s = d14A "lahokka"} ;
+lin lahota_VK = {s = c74 "lahota"} ;
+lin lahottaa_VK = {s = c53A "lahottaa"} ;
+lin lahottaja_NK = {s = d10 "lahottaja"} ;
+lin lahouma_NK = {s = d10 "lahouma"} ;
+lin lahous_NK = {s = d40 "lahous"} ;
+lin lahoutua_VK = {s = c52A "lahoutua"} ;
+lin lahtari_NK = {s = d06 "lahtari"} ;
+lin lahti_1_NK = {s = d07A "lahti"} ;
+lin lahti_2_NK = {s = d05A "lahti"} ;
+lin laidallinen_NK = {s = d38 "laidallinen"} ;
+lin laidemmaksi_AdvK = {s = c99 "laidemmaksi"} ;
+lin laidemmalla_AdvK = {s = c99 "laidemmalla"} ;
+lin laidemmalle_AdvK = {s = c99 "laidemmalle"} ;
+lin laidemmalta_AdvK = {s = c99 "laidemmalta"} ;
+lin laidemmas_AdvK = {s = c99 "laidemmas"} ;
+lin laidempaa_AdvK = {s = c99 "laidempaa"} ;
+lin laidempana_AdvK = {s = c99 "laidempana"} ;
+lin laidempi_NK = {s = d16A "laidempi"} ;
+lin laidoittaa_VK = {s = c53A "laidoittaa"} ;
+lin laidoitus_NK = {s = d39 "laidoitus"} ;
+lin laidun_NK = {s = d33A "laidun"} ;
+lin laiduntaa_VK = {s = c54A "laiduntaa"} ;
+lin laiha_NK = {s = d09 "laiha"} ;
+lin laihduttaa_VK = {s = c53A "laihduttaa"} ;
+lin laihduttaja_NK = {s = d10 "laihduttaja"} ;
+lin laihdutus_NK = {s = d39 "laihdutus"} ;
+lin laiheliini_NK = {s = d05 "laiheliini"} ;
+lin laihentaa_VK = {s = c54A "laihentaa"} ;
+lin laihentua_VK = {s = c52A "laihentua"} ;
+lin laiho_NK = {s = d01 "laiho"} ;
+lin laihtua_VK = {s = c52A "laihtua"} ;
+lin laihuus_NK = {s = d40 "laihuus"} ;
+lin laikka_NK = {s = d09A "laikka"} ;
+lin laikku_NK = {s = d01A "laikku"} ;
+lin laikkuinen_NK = {s = d38 "laikkuinen"} ;
+lin laikkuisuus_NK = {s = d40 "laikkuisuus"} ;
+lin laikkuri_NK = {s = d06 "laikkuri"} ;
+lin laikuittain_AdvK = {s = c99 "laikuittain"} ;
+lin laikukas_NK = {s = d41A "laikukas"} ;
+lin laikullinen_NK = {s = d38 "laikullinen"} ;
+lin laikuttaa_VK = {s = c53A "laikuttaa"} ;
+lin laikutus_NK = {s = d39 "laikutus"} ;
+lin lailla_AdvK = {s = c99 "lailla"} ;
+lin laillinen_AK = {s = d38 "laillinen"} ;
+--+ lin laillisesti_AdvK = {s = c99 "laillisesti"} ;
+lin laillistaa_VK = {s = c53 "laillistaa"} ;
+lin laillistua_VK = {s = c52 "laillistua"} ;
+lin laillistus_NK = {s = d39 "laillistus"} ;
+lin laillistuttaa_VK = {s = c53A "laillistuttaa"} ;
+lin laillisuus_NK = {s = d40 "laillisuus"} ;
+lin laimea_NK = {s = d15 "laimea"} ;
+lin laimenne_NK = {s = d48A "laimenne"} ;
+lin laimennos_NK = {s = d39 "laimennos"} ;
+lin laimennus_NK = {s = d39 "laimennus"} ;
+lin laimentaa_VK = {s = c54A "laimentaa"} ;
+lin laimentua_VK = {s = c52A "laimentua"} ;
+lin laimeta_VK = {s = c72 "laimeta"} ;
+lin laimeus_NK = {s = d40 "laimeus"} ;
+lin laimi_NK = {s = d05 "laimi"} ;
+lin laimin_AdvK = {s = c99 "laimin"} ;
+lin laimistaa_VK = {s = c53 "laimistaa"} ;
+lin laimistua_VK = {s = c52 "laimistua"} ;
+lin lain_AdvK = {s = c99 "lain"} ;
+lin laina_NK = {s = d09 "laina"} ;
+lin laina_aika_NK = {s = d09A "laina-aika"} ;
+lin lainaaja_NK = {s = d10 "lainaaja"} ;
+lin lainaamo_NK = {s = d01 "lainaamo"} ;
+lin lainailla_VK = {s = c67 "lainailla"} ;
+lin lainasto_NK = {s = d02 "lainasto"} ;
+lin lainata_VK = {s = c73 "lainata"} ;
+lin lainaus_NK = {s = d39 "lainaus"} ;
+lin lainausaika_NK = {s = d09A "lainausaika"} ;
+lin lainautua_VK = {s = c52A "lainautua"} ;
+lin laine_NK = {s = d48 "laine"} ;
+lin lainehdinta_NK = {s = d09A "lainehdinta"} ;
+lin lainehtia_VK = {s = c61A "lainehtia"} ;
+lin laineikas_NK = {s = d41A "laineikas"} ;
+lin laineittaa_VK = {s = c53A "laineittaa"} ;
+lin lainen_NK = {s = d38 "lainen"} ;
+lin lainhuudatus_NK = {s = d39 "lainhuudatus"} ;
+lin lainkaan_AdvK = {s = c99 "lainkaan"} ;
+lin lainkohta_NK = {s = d10A "lainkohta"} ;
+lin lainoittaa_VK = {s = c53A "lainoittaa"} ;
+lin lainoitteinen_NK = {s = d38 "lainoitteinen"} ;
+lin lainoitus_NK = {s = d39 "lainoitus"} ;
+lin lainsa'a'da'nno'llinen_NK = {s = d38 "lainsäädännöllinen"} ;
+lin laipio_NK = {s = d03 "laipio"} ;
+lin laipoittaa_VK = {s = c53A "laipoittaa"} ;
+lin laippa_NK = {s = d09A "laippa"} ;
+lin laisin_AdvK = {s = c99 "laisin"} ;
+lin laisinkaan_AdvK = {s = c99 "laisinkaan"} ;
+lin laiska_AK = {s = d09 "laiska"} ;
+lin laiskajaakko_NK = {s = d01A "laiskajaakko"} ;
+lin laiskanpulskea_NK = {s = d15 "laiskanpulskea"} ;
+--+ lin laiskasti_AdvK = {s = c99 "laiskasti"} ;
+lin laiskiainen_NK = {s = d38 "laiskiainen"} ;
+lin laiskiintua_VK = {s = c52A "laiskiintua"} ;
+lin laiskimus_NK = {s = d39 "laiskimus"} ;
+lin laiskistaa_VK = {s = c53 "laiskistaa"} ;
+lin laiskistua_VK = {s = c52 "laiskistua"} ;
+lin laiskotella_VK = {s = c67A "laiskotella"} ;
+lin laiskottaa_VK = {s = c53A "laiskottaa"} ;
+lin laiskottelu_NK = {s = d02 "laiskottelu"} ;
+lin laiskuri_NK = {s = d06 "laiskuri"} ;
+lin laiskuus_NK = {s = d40 "laiskuus"} ;
+lin laistaa_VK = {s = c56 "laistaa"} ;
+lin laisto_NK = {s = d01 "laisto"} ;
+lin laita_NK = {s = d09A "laita"} ;
+lin laitainen_NK = {s = d38 "laitainen"} ;
+lin laitama_NK = {s = d10 "laitama"} ;
+lin laitattaa_VK = {s = c53A "laitattaa"} ;
+lin laite_NK = {s = d48A "laite"} ;
+lin laitella_VK = {s = c67A "laitella"} ;
+lin laitimmainen_NK = {s = d38 "laitimmainen"} ;
+lin laiton_NK = {s = d34A "laiton"} ;
+lin laitos_NK = {s = d39 "laitos"} ;
+lin laitostaa_VK = {s = c53 "laitostaa"} ;
+lin laitostua_VK = {s = c52 "laitostua"} ;
+lin laittaa_VK = {s = c56A "laittaa"} ;
+lin laittamattomasti_AdvK = {s = c99 "laittamattomasti"} ;
+lin laittautua_VK = {s = c52A "laittautua"} ;
+lin laitteisto_NK = {s = d01 "laitteisto"} ;
+lin laitto_NK = {s = d01A "laitto"} ;
+lin laittomasti_AdvK = {s = c99 "laittomasti"} ;
+lin laittomuus_NK = {s = d40 "laittomuus"} ;
+lin laituri_1_NK = {s = d06 "laituri"} ;
+lin laituri_2_NK = {s = d06 "laituri"} ;
+lin laiva_NK = {s = d09 "laiva"} ;
+lin laivaaja_NK = {s = d10 "laivaaja"} ;
+lin laivainen_NK = {s = d38 "laivainen"} ;
+lin laivalastillinen_NK = {s = d38 "laivalastillinen"} ;
+lin laivasto_NK = {s = d02 "laivasto"} ;
+lin laivata_VK = {s = c73 "laivata"} ;
+lin laivaus_NK = {s = d39 "laivaus"} ;
+lin laivue_NK = {s = d48 "laivue"} ;
+lin laivuri_NK = {s = d06 "laivuri"} ;
+lin laji_NK = {s = d05 "laji"} ;
+lin lajikas_NK = {s = d41A "lajikas"} ;
+lin lajike_NK = {s = d48A "lajike"} ;
+lin lajinen_NK = {s = d38 "lajinen"} ;
+lin lajisto_NK = {s = d01 "lajisto"} ;
+lin lajite_NK = {s = d48A "lajite"} ;
+lin lajitella_VK = {s = c67A "lajitella"} ;
+lin lajitelma_NK = {s = d10 "lajitelma"} ;
+lin lajitin_NK = {s = d33A "lajitin"} ;
+lin lajittaa_VK = {s = c53A "lajittaa"} ;
+lin lajittamo_NK = {s = d02 "lajittamo"} ;
+lin lajittelija_NK = {s = d12 "lajittelija"} ;
+lin lajittelu_NK = {s = d02 "lajittelu"} ;
+lin lajittua_VK = {s = c52A "lajittua"} ;
+lin lajiutua_VK = {s = c52A "lajiutua"} ;
+lin lakaisija_NK = {s = d12 "lakaisija"} ;
+lin lakaista_VK = {s = c66 "lakaista"} ;
+lin lakaisu_NK = {s = d02 "lakaisu"} ;
+lin lakana_NK = {s = d12 "lakana"} ;
+lin lakastua_VK = {s = c52 "lakastua"} ;
+lin lakastuttaa_VK = {s = c53A "lakastuttaa"} ;
+lin lakata_1_VK = {s = c73A "lakata"} ;
+lin lakata_2_VK = {s = c73A "lakata"} ;
+lin lakea_NK = {s = d15 "lakea"} ;
+lin lakeeri_NK = {s = d06 "lakeeri"} ;
+lin lakeija_NK = {s = d12 "lakeija"} ;
+lin lakeinen_NK = {s = d38 "lakeinen"} ;
+lin lakeus_NK = {s = d40 "lakeus"} ;
+lin laki_1_NK = {s = d05A "laki"} ;
+lin laki_2_NK = {s = d07A "laki"} ;
+lin lakiasa'a'ta'va'_NK = {s = d10 "lakiasäätävä"} ;
+lin lakinen_1_NK = {s = d38 "lakinen"} ;
+lin lakinen_2_NK = {s = d38 "lakinen"} ;
+lin lakittaa_VK = {s = c53A "lakittaa"} ;
+lin lakka_1_NK = {s = d09A "lakka"} ;
+lin lakka_2_NK = {s = d09A "lakka"} ;
+lin lakka_3_NK = {s = d09A "lakka"} ;
+lin lakkaamaton_1_NK = {s = d34A "lakkaamaton"} ;
+lin lakkaamaton_2_NK = {s = d34A "lakkaamaton"} ;
+lin lakkaamatta_AdvK = {s = c99 "lakkaamatta"} ;
+lin lakkaus_NK = {s = d39 "lakkaus"} ;
+lin lakkauttaa_1_VK = {s = c53A "lakkauttaa"} ;
+lin lakkauttaa_2_VK = {s = c53A "lakkauttaa"} ;
+lin lakkautus_NK = {s = d39 "lakkautus"} ;
+lin lakki_NK = {s = d05A "lakki"} ;
+--? lin lakkiaiset_NK = {s = d38 "lakkiaiset"} ;
+lin lakkinen_NK = {s = d38 "lakkinen"} ;
+lin lakko_NK = {s = d01A "lakko"} ;
+lin lakkoilla_VK = {s = c67 "lakkoilla"} ;
+lin lakkoilu_NK = {s = d02 "lakkoilu"} ;
+lin lakmus_NK = {s = d39 "lakmus"} ;
+lin lako_NK = {s = d01A "lako"} ;
+lin lakoinen_NK = {s = d38 "lakoinen"} ;
+lin lakoisuus_NK = {s = d40 "lakoisuus"} ;
+lin lakoninen_AK = {s = d38 "lakoninen"} ;
+--+ lin lakonisesti_AdvK = {s = c99 "lakonisesti"} ;
+lin lakonisuus_NK = {s = d40 "lakonisuus"} ;
+lin lakoontua_VK = {s = c52A "lakoontua"} ;
+lin lakoutua_VK = {s = c52A "lakoutua"} ;
+lin lakritsa_NK = {s = d13 "lakritsa"} ;
+lin lakritsi_NK = {s = d05 "lakritsi"} ;
+lin lakritsijuuri_NK = {s = d26 "lakritsijuuri"} ;
+lin laksatiivi_NK = {s = d05 "laksatiivi"} ;
+lin laktaasi_NK = {s = d05 "laktaasi"} ;
+lin laktoosi_NK = {s = d05 "laktoosi"} ;
+lin laktoosi_intoleranssi_NK = {s = d05 "laktoosi-intoleranssi"} ;
+lin laktoosi_intolerantti_NK = {s = d05A "laktoosi-intolerantti"} ;
+lin laktoositon_NK = {s = d34A "laktoositon"} ;
+lin laku_NK = {s = d01 "laku"} ;
+lin lallatella_VK = {s = c67A "lallatella"} ;
+lin lallattaa_VK = {s = c53A "lallattaa"} ;
+lin lallukka_NK = {s = d14A "lallukka"} ;
+lin lama_1_NK = {s = d09 "lama"} ;
+lin lama_2_NK = {s = d09 "lama"} ;
+lin lamaan_AdvK = {s = c99 "lamaan"} ;
+lin lamaannus_NK = {s = d39 "lamaannus"} ;
+lin lamaannuttaa_VK = {s = c53A "lamaannuttaa"} ;
+lin lamaantua_VK = {s = c52A "lamaantua"} ;
+lin lamaantuneisuus_NK = {s = d40 "lamaantuneisuus"} ;
+lin lamalaisuus_NK = {s = d40 "lamalaisuus"} ;
+lin lamarckismi_NK = {s = d05 "lamarckismi"} ;
+lin lamassa_AdvK = {s = c99 "lamassa"} ;
+lin lamasta_AdvK = {s = c99 "lamasta"} ;
+lin lamata_VK = {s = c73 "lamata"} ;
+lin lamauttaa_VK = {s = c53A "lamauttaa"} ;
+lin lamautua_VK = {s = c52A "lamautua"} ;
+lin lambada_NK = {s = d09 "lambada"} ;
+lin lamee_NK = {s = d20 "lamee"} ;
+lin lamelli_NK = {s = d05 "lamelli"} ;
+lin laminaatti_NK = {s = d05A "laminaatti"} ;
+lin laminoida_VK = {s = c62 "laminoida"} ;
+lin laminointi_NK = {s = d05A "laminointi"} ;
+lin lammas_NK = {s = d41A "lammas"} ;
+--+ lin lammasmaisesti_AdvK = {s = c99 "lammasmaisesti"} ;
+lin lammasmaisuus_NK = {s = d40 "lammasmaisuus"} ;
+lin lammikko_NK = {s = d04A "lammikko"} ;
+lin lamoava_NK = {s = d10 "lamoava"} ;
+lin lampaantalja_NK = {s = d09 "lampaantalja"} ;
+lin lampaanvilla_NK = {s = d09 "lampaanvilla"} ;
+lin lampare_NK = {s = d48 "lampare"} ;
+lin lampetti_NK = {s = d05A "lampetti"} ;
+lin lampi_NK = {s = d07A "lampi"} ;
+lin lampola_NK = {s = d12 "lampola"} ;
+lin lamppu_NK = {s = d01A "lamppu"} ;
+lin lampsia_VK = {s = c61 "lampsia"} ;
+lin lampuoti_NK = {s = d05A "lampuoti"} ;
+lin lampuri_NK = {s = d06 "lampuri"} ;
+lin lana_NK = {s = d09 "lana"} ;
+lin lanata_VK = {s = c73 "lanata"} ;
+lin lanaus_NK = {s = d39 "lanaus"} ;
+lin lande_NK = {s = d08 "lande"} ;
+lin langata_VK = {s = c73A "langata"} ;
+lin langaton_NK = {s = d34A "langaton"} ;
+lin langeta_VK = {s = c74A "langeta"} ;
+lin langettaa_VK = {s = c53A "langettaa"} ;
+lin langoittaa_VK = {s = c53A "langoittaa"} ;
+lin langoitus_NK = {s = d39 "langoitus"} ;
+--? lin langokset_NK = {s = d39 "langokset"} ;
+lin langusti_NK = {s = d05 "langusti"} ;
+lin lanka_NK = {s = d09A "lanka"} ;
+lin lankainen_NK = {s = d38 "lankainen"} ;
+lin lankata_VK = {s = c73A "lankata"} ;
+lin lankaus_NK = {s = d39 "lankaus"} ;
+lin lankeemus_NK = {s = d39 "lankeemus"} ;
+lin lankkaus_NK = {s = d39 "lankkaus"} ;
+lin lankki_NK = {s = d05A "lankki"} ;
+lin lankku_NK = {s = d01A "lankku"} ;
+lin lanko_NK = {s = d01A "lanko"} ;
+lin lankonki_NK = {s = d05A "lankonki"} ;
+lin lankous_NK = {s = d40 "lankous"} ;
+lin lankuttaa_VK = {s = c53A "lankuttaa"} ;
+lin lankutus_NK = {s = d39 "lankutus"} ;
+lin lanne_NK = {s = d48A "lanne"} ;
+lin lannistaa_VK = {s = c53 "lannistaa"} ;
+lin lannistua_VK = {s = c52 "lannistua"} ;
+lin lannoite_NK = {s = d48A "lannoite"} ;
+lin lannoitin_NK = {s = d33A "lannoitin"} ;
+lin lannoittaa_VK = {s = c53A "lannoittaa"} ;
+lin lannoittua_VK = {s = c52A "lannoittua"} ;
+lin lannoitus_NK = {s = d39 "lannoitus"} ;
+lin lannos_NK = {s = d39 "lannos"} ;
+lin lanoliini_NK = {s = d05 "lanoliini"} ;
+lin lanseerata_VK = {s = c73 "lanseerata"} ;
+lin lanseeraus_NK = {s = d39 "lanseeraus"} ;
+lin lansetti_NK = {s = d05A "lansetti"} ;
+lin lanssi_NK = {s = d05 "lanssi"} ;
+lin lanta_NK = {s = d09A "lanta"} ;
+lin lantaani_NK = {s = d05 "lantaani"} ;
+lin lantainen_NK = {s = d38 "lantainen"} ;
+lin lantaisuus_NK = {s = d40 "lantaisuus"} ;
+lin lantala_NK = {s = d12 "lantala"} ;
+lin lantata_VK = {s = c73A "lantata"} ;
+lin lanteinen_NK = {s = d38 "lanteinen"} ;
+lin lantinki_NK = {s = d05A "lantinki"} ;
+lin lantio_NK = {s = d03 "lantio"} ;
+lin lantioinen_NK = {s = d38 "lantioinen"} ;
+lin lantrata_VK = {s = c73 "lantrata"} ;
+lin lantrinki_NK = {s = d05A "lantrinki"} ;
+--? lin lantsarit_NK = {s = d06 "lantsarit"} ;
+lin lantti_NK = {s = d05A "lantti"} ;
+lin lantto_NK = {s = d01A "lantto"} ;
+lin lanttu_NK = {s = d01A "lanttu"} ;
+lin laossa_AdvK = {s = c99 "laossa"} ;
+lin laota_VK = {s = c74A "laota"} ;
+lin laottaa_VK = {s = c53A "laottaa"} ;
+lin lapa_NK = {s = d09A "lapa"} ;
+lin lapainen_NK = {s = d38 "lapainen"} ;
+lin lapakko_NK = {s = d04A "lapakko"} ;
+lin lapanen_NK = {s = d38 "lapanen"} ;
+lin laparoskopia_NK = {s = d12 "laparoskopia"} ;
+lin lape_NK = {s = d48A "lape"} ;
+lin lapidaarinen_NK = {s = d38 "lapidaarinen"} ;
+lin lapikas_NK = {s = d41A "lapikas"} ;
+lin lapio_NK = {s = d03 "lapio"} ;
+lin lapioida_VK = {s = c62 "lapioida"} ;
+lin lapiointi_NK = {s = d05A "lapiointi"} ;
+lin lappaa_VK = {s = c56A "lappaa"} ;
+lin lappalainen_NK = {s = d38 "lappalainen"} ;
+lin lappautua_VK = {s = c52A "lappautua"} ;
+lin lappeellaan_AdvK = {s = c99 "lappeellaan"} ;
+lin lappeelleen_AdvK = {s = c99 "lappeelleen"} ;
+lin lappi_NK = {s = d05A "lappi"} ;
+lin lappo_NK = {s = d01A "lappo"} ;
+lin lappologi_NK = {s = d05 "lappologi"} ;
+lin lappu_NK = {s = d01A "lappu"} ;
+lin lappuliisa_NK = {s = d09 "lappuliisa"} ;
+lin lappunen_NK = {s = d38 "lappunen"} ;
+lin lapsekas_AK = {s = d41A "lapsekas"} ;
+--+ lin lapsekkaasti_AdvK = {s = c99 "lapsekkaasti"} ;
+lin lapsekkuus_NK = {s = d40 "lapsekkuus"} ;
+lin lapseksiottaminen_NK = {s = d38 "lapseksiottaminen"} ;
+lin lapsellinen_AK = {s = d38 "lapsellinen"} ;
+--+ lin lapsellisesti_AdvK = {s = c99 "lapsellisesti"} ;
+lin lapsellisuus_NK = {s = d40 "lapsellisuus"} ;
+lin lapsenkina_NK = {s = d09 "lapsenkina"} ;
+--+ lin lapsenomaisesti_AdvK = {s = c99 "lapsenomaisesti"} ;
+lin lapseton_NK = {s = d34A "lapseton"} ;
+lin lapsettaa_VK = {s = c53A "lapsettaa"} ;
+lin lapsettomuus_NK = {s = d40 "lapsettomuus"} ;
+lin lapseus_NK = {s = d40 "lapseus"} ;
+lin lapsi_NK = {s = d29 "lapsi"} ;
+lin lapsinen_NK = {s = d38 "lapsinen"} ;
+lin lapsivuodeaika_NK = {s = d09A "lapsivuodeaika"} ;
+lin lapsonen_NK = {s = d38 "lapsonen"} ;
+lin lapsukainen_NK = {s = d38 "lapsukainen"} ;
+lin lapsus_NK = {s = d39 "lapsus"} ;
+lin lapsuudenaika_NK = {s = d09A "lapsuudenaika"} ;
+lin lapsuus_NK = {s = d40 "lapsuus"} ;
+lin lapsuusaika_NK = {s = d09A "lapsuusaika"} ;
+lin laputtaa_1_VK = {s = c53A "laputtaa"} ;
+lin laputtaa_2_VK = {s = c53A "laputtaa"} ;
+lin largo_NK = {s = d01 "largo"} ;
+lin lari_1_NK = {s = d05 "lari"} ;
+lin lari_2_NK = {s = d05 "lari"} ;
+lin lasagne_NK = {s = d08 "lasagne"} ;
+lin lasaretti_NK = {s = d05A "lasaretti"} ;
+lin laseerata_VK = {s = c73 "laseerata"} ;
+lin laseeraus_NK = {s = d39 "laseeraus"} ;
+lin laseittain_AdvK = {s = c99 "laseittain"} ;
+lin laser_NK = {s = d06 "laser"} ;
+lin laseri_NK = {s = d06 "laseri"} ;
+lin lasi_NK = {s = d05 "lasi"} ;
+lin lasiainen_NK = {s = d38 "lasiainen"} ;
+lin lasikko_NK = {s = d04A "lasikko"} ;
+lin lasillinen_NK = {s = d38 "lasillinen"} ;
+lin lasinen_NK = {s = d38 "lasinen"} ;
+lin lasinhioja_NK = {s = d10 "lasinhioja"} ;
+lin lasintyo'sta'ja'_NK = {s = d10 "lasintyöstäjä"} ;
+lin lasisto_NK = {s = d01 "lasisto"} ;
+lin lasite_NK = {s = d48A "lasite"} ;
+lin lasittaa_VK = {s = c53A "lasittaa"} ;
+lin lasittaja_NK = {s = d10 "lasittaja"} ;
+lin lasittua_VK = {s = c52A "lasittua"} ;
+lin lasitus_NK = {s = d39 "lasitus"} ;
+lin laskea_VK = {s = c58 "laskea"} ;
+lin laskelma_NK = {s = d10 "laskelma"} ;
+lin laskelmoida_VK = {s = c62 "laskelmoida"} ;
+lin laskelmointi_NK = {s = d05A "laskelmointi"} ;
+lin laskennallinen_AK = {s = d38 "laskennallinen"} ;
+--+ lin laskennallisesti_AdvK = {s = c99 "laskennallisesti"} ;
+lin laskenta_NK = {s = d09A "laskenta"} ;
+lin laskento_NK = {s = d01A "laskento"} ;
+lin laskeskella_VK = {s = c67 "laskeskella"} ;
+lin lasketella_VK = {s = c67A "lasketella"} ;
+lin laskettaa_VK = {s = c53A "laskettaa"} ;
+lin laskettelija_NK = {s = d12 "laskettelija"} ;
+lin laskettelu_NK = {s = d02 "laskettelu"} ;
+lin laskeuma_NK = {s = d10 "laskeuma"} ;
+lin laskeutua_VK = {s = c52A "laskeutua"} ;
+lin laskeutuma_NK = {s = d10 "laskeutuma"} ;
+lin laskiainen_NK = {s = d38 "laskiainen"} ;
+lin laskija_NK = {s = d12 "laskija"} ;
+lin laskimo_NK = {s = d02 "laskimo"} ;
+lin laskin_NK = {s = d33 "laskin"} ;
+lin lasko_NK = {s = d01 "lasko"} ;
+lin laskoksinen_NK = {s = d38 "laskoksinen"} ;
+lin laskos_NK = {s = d39 "laskos"} ;
+lin laskostaa_VK = {s = c53 "laskostaa"} ;
+lin laskostua_VK = {s = c52 "laskostua"} ;
+lin laskostus_NK = {s = d39 "laskostus"} ;
+lin lasku_NK = {s = d01 "lasku"} ;
+lin laskuinen_NK = {s = d38 "laskuinen"} ;
+lin laskukohta_NK = {s = d10A "laskukohta"} ;
+lin laskuri_NK = {s = d06 "laskuri"} ;
+lin laskuttaa_VK = {s = c53A "laskuttaa"} ;
+lin laskutus_NK = {s = d39 "laskutus"} ;
+lin lassi_NK = {s = d05 "lassi"} ;
+lin lassie_NK = {s = d03 "lassie"} ;
+lin lasso_NK = {s = d01 "lasso"} ;
+lin lassota_VK = {s = c75 "lassota"} ;
+lin lasta_NK = {s = d09 "lasta"} ;
+lin lastaaja_NK = {s = d10 "lastaaja"} ;
+lin lastain_NK = {s = d33 "lastain"} ;
+lin lastata_VK = {s = c73 "lastata"} ;
+lin lastaus_NK = {s = d39 "lastaus"} ;
+lin lastauttaa_VK = {s = c53A "lastauttaa"} ;
+lin lasti_NK = {s = d05 "lasti"} ;
+lin lastoittaa_VK = {s = c53A "lastoittaa"} ;
+lin lastoitus_NK = {s = d39 "lastoitus"} ;
+lin lastu_NK = {s = d01 "lastu"} ;
+lin lastuta_VK = {s = c75 "lastuta"} ;
+lin lata_NK = {s = d09A "lata"} ;
+lin lataamo_NK = {s = d02 "lataamo"} ;
+lin latauma_NK = {s = d10 "latauma"} ;
+lin lataus_NK = {s = d39 "lataus"} ;
+lin latautua_VK = {s = c52A "latautua"} ;
+lin latautuma_NK = {s = d10 "latautuma"} ;
+lin latautuneisuus_NK = {s = d40 "latautuneisuus"} ;
+lin lateksi_NK = {s = d05 "lateksi"} ;
+lin latelu_NK = {s = d02 "latelu"} ;
+lin latenssi_NK = {s = d05 "latenssi"} ;
+lin latenssiaika_NK = {s = d09A "latenssiaika"} ;
+lin latentti_NK = {s = d05A "latentti"} ;
+lin lateraalinen_NK = {s = d38 "lateraalinen"} ;
+lin lati_NK = {s = d05 "lati"} ;
+lin latina_NK = {s = d12 "latina"} ;
+lin latinaistaa_VK = {s = c53 "latinaistaa"} ;
+lin latinalaistaa_VK = {s = c53 "latinalaistaa"} ;
+lin latinantaa_VK = {s = c54A "latinantaa"} ;
+lin latinismi_NK = {s = d05 "latinismi"} ;
+lin latinki_NK = {s = d05A "latinki"} ;
+lin latino_NK = {s = d02 "latino"} ;
+lin latinoida_VK = {s = c62 "latinoida"} ;
+lin latistaa_VK = {s = c53 "latistaa"} ;
+lin latistua_VK = {s = c52 "latistua"} ;
+lin latitudi_NK = {s = d05 "latitudi"} ;
+lin latkia_VK = {s = c61 "latkia"} ;
+lin lato_NK = {s = d01A "lato"} ;
+lin latoa_VK = {s = c52A "latoa"} ;
+lin latoja_NK = {s = d10 "latoja"} ;
+lin latomo_NK = {s = d02 "latomo"} ;
+lin latomus_NK = {s = d39 "latomus"} ;
+lin latta_NK = {s = d09A "latta"} ;
+lin lattana_NK = {s = d11 "lattana"} ;
+lin lattari_NK = {s = d06 "lattari"} ;
+lin lattea_AK = {s = d15 "lattea"} ;
+--+ lin latteasti_AdvK = {s = c99 "latteasti"} ;
+lin latteus_NK = {s = d40 "latteus"} ;
+lin lattia_NK = {s = d12 "lattia"} ;
+lin lattianraja_NK = {s = d09 "lattianraja"} ;
+lin latu_NK = {s = d01A "latu"} ;
+lin laturi_NK = {s = d06 "laturi"} ;
+lin latuska_NK = {s = d13 "latuska"} ;
+lin latuskainen_NK = {s = d38 "latuskainen"} ;
+lin latva_NK = {s = d09 "latva"} ;
+lin latvainen_NK = {s = d38 "latvainen"} ;
+lin latvia_NK = {s = d12 "latvia"} ;
+lin latvimmainen_NK = {s = d38 "latvimmainen"} ;
+lin latvoa_VK = {s = c52 "latvoa"} ;
+lin latvonta_NK = {s = d09A "latvonta"} ;
+lin latvuksinen_NK = {s = d38 "latvuksinen"} ;
+lin latvus_NK = {s = d39 "latvus"} ;
+lin latvusto_NK = {s = d02 "latvusto"} ;
+lin lauantai_NK = {s = d18 "lauantai"} ;
+lin lauantainen_NK = {s = d38 "lauantainen"} ;
+lin lauantaisin_AdvK = {s = c99 "lauantaisin"} ;
+lin laudatur_NK = {s = d06 "laudatur"} ;
+lin laude_NK = {s = d48A "laude"} ;
+lin laudoittaa_VK = {s = c53A "laudoittaa"} ;
+lin laudoittaja_NK = {s = d10 "laudoittaja"} ;
+lin laudoitus_NK = {s = d39 "laudoitus"} ;
+lin laueta_VK = {s = c74A "laueta"} ;
+lin lauha_1_NK = {s = d09 "lauha"} ;
+lin lauha_2_NK = {s = d09 "lauha"} ;
+lin lauhde_NK = {s = d48A "lauhde"} ;
+lin lauhdutin_NK = {s = d33A "lauhdutin"} ;
+lin lauhduttaa_VK = {s = c53A "lauhduttaa"} ;
+lin lauhdutus_NK = {s = d39 "lauhdutus"} ;
+lin lauhentaa_VK = {s = c54A "lauhentaa"} ;
+lin lauheta_VK = {s = c72 "lauheta"} ;
+lin lauhkea_AK = {s = d15 "lauhkea"} ;
+--+ lin lauhkeasti_AdvK = {s = c99 "lauhkeasti"} ;
+lin lauhkeus_NK = {s = d40 "lauhkeus"} ;
+lin lauhtua_VK = {s = c52A "lauhtua"} ;
+lin laukaisija_NK = {s = d12 "laukaisija"} ;
+lin laukaisin_NK = {s = d33 "laukaisin"} ;
+lin laukaista_VK = {s = c66 "laukaista"} ;
+lin laukaisu_NK = {s = d02 "laukaisu"} ;
+lin laukata_VK = {s = c73A "laukata"} ;
+lin laukaus_NK = {s = d39 "laukaus"} ;
+lin laukka_1_NK = {s = d09A "laukka"} ;
+lin laukka_2_NK = {s = d09A "laukka"} ;
+lin laukki_NK = {s = d05A "laukki"} ;
+lin laukkoa_VK = {s = c52A "laukkoa"} ;
+lin laukku_NK = {s = d01A "laukku"} ;
+lin laukoa_VK = {s = c52A "laukoa"} ;
+lin laulaa_VK = {s = c56 "laulaa"} ;
+lin laulaja_NK = {s = d10 "laulaja"} ;
+lin laulajatar_NK = {s = d32A "laulajatar"} ;
+lin laulajisto_NK = {s = d01 "laulajisto"} ;
+lin laulattaa_VK = {s = c53A "laulattaa"} ;
+lin laulava_AK = {s = d10 "laulava"} ;
+--+ lin laulavasti_AdvK = {s = c99 "laulavasti"} ;
+lin laulella_VK = {s = c67 "laulella"} ;
+lin laulelma_NK = {s = d10 "laulelma"} ;
+lin lauleskella_VK = {s = c67 "lauleskella"} ;
+lin laulu_NK = {s = d01 "laulu"} ;
+lin laulullinen_NK = {s = d38 "laulullinen"} ;
+lin lauma_NK = {s = d09 "lauma"} ;
+lin laumoittain_AdvK = {s = c99 "laumoittain"} ;
+lin laupeus_NK = {s = d40 "laupeus"} ;
+--+ lin laupiaasti_AdvK = {s = c99 "laupiaasti"} ;
+lin laupias_AK = {s = d41 "laupias"} ;
+lin lausahdus_NK = {s = d39 "lausahdus"} ;
+lin lausahtaa_VK = {s = c53A "lausahtaa"} ;
+lin lause_NK = {s = d48 "lause"} ;
+lin lauseinen_NK = {s = d38 "lauseinen"} ;
+lin lauseke_NK = {s = d48A "lauseke"} ;
+lin lauselma_NK = {s = d10 "lauselma"} ;
+lin lausua_VK = {s = c52 "lausua"} ;
+lin lausuja_NK = {s = d10 "lausuja"} ;
+lin lausuma_NK = {s = d10 "lausuma"} ;
+lin lausunta_NK = {s = d09A "lausunta"} ;
+lin lausunto_NK = {s = d01A "lausunto"} ;
+lin lauta_NK = {s = d09A "lauta"} ;
+lin lautailija_NK = {s = d12 "lautailija"} ;
+lin lautailla_VK = {s = c67 "lautailla"} ;
+lin lautailu_NK = {s = d02 "lautailu"} ;
+lin lautainen_NK = {s = d38 "lautainen"} ;
+lin lautanen_NK = {s = d38 "lautanen"} ;
+lin lautasaura_NK = {s = d09 "lautasaura"} ;
+lin lautasellinen_NK = {s = d38 "lautasellinen"} ;
+lin lautasmainen_NK = {s = d38 "lautasmainen"} ;
+lin lautata_VK = {s = c73A "lautata"} ;
+--? lin lauteet_NK = {s = d48A "lauteet"} ;
+lin lautta_NK = {s = d09A "lautta"} ;
+lin lauttaus_NK = {s = d39 "lauttaus"} ;
+lin lautturi_NK = {s = d06 "lautturi"} ;
+lin lautuma_NK = {s = d10 "lautuma"} ;
+lin lava_NK = {s = d09 "lava"} ;
+lin lavainen_NK = {s = d38 "lavainen"} ;
+lin lavallinen_NK = {s = d38 "lavallinen"} ;
+lin lavastaa_VK = {s = c53 "lavastaa"} ;
+lin lavastaja_NK = {s = d10 "lavastaja"} ;
+lin lavastamo_NK = {s = d02 "lavastamo"} ;
+lin lavaste_NK = {s = d48 "lavaste"} ;
+lin lavastus_NK = {s = d39 "lavastus"} ;
+lin lavea_AK = {s = d15 "lavea"} ;
+--+ lin laveasanaisesti_AdvK = {s = c99 "laveasanaisesti"} ;
+--+ lin laveasti_AdvK = {s = c99 "laveasti"} ;
+lin laveerata_VK = {s = c73 "laveerata"} ;
+lin laveeraus_NK = {s = d39 "laveeraus"} ;
+lin laventaa_VK = {s = c54A "laventaa"} ;
+lin laventaja_NK = {s = d10 "laventaja"} ;
+lin laventeli_NK = {s = d05 "laventeli"} ;
+lin laventua_VK = {s = c52A "laventua"} ;
+lin laveri_NK = {s = d06 "laveri"} ;
+lin laverrella_VK = {s = c67A "laverrella"} ;
+lin lavetti_NK = {s = d05A "lavetti"} ;
+lin laviini_NK = {s = d05 "laviini"} ;
+lin lavitsa_NK = {s = d13 "lavitsa"} ;
+lin lavuaari_NK = {s = d05 "lavuaari"} ;
+lin layout_NK = {s = d05 "layout"} ;
+lin leasing_NK = {s = d05 "leasing"} ;
+lin LED_NK = {s = d05 "LED"} ;
+lin ledi_NK = {s = d05 "ledi"} ;
+lin leegio_NK = {s = d03 "leegio"} ;
+lin leffa_NK = {s = d09 "leffa"} ;
+lin legaalinen_NK = {s = d38 "legaalinen"} ;
+lin legaalistaa_VK = {s = c53 "legaalistaa"} ;
+lin legaatti_NK = {s = d05A "legaatti"} ;
+lin legalisoida_VK = {s = c62 "legalisoida"} ;
+lin legato_NK = {s = d02 "legato"} ;
+lin legenda_NK = {s = d09 "legenda"} ;
+lin legendaarinen_NK = {s = d38 "legendaarinen"} ;
+lin leggingsit_NK = {s = d05 "leggingsit"} ;
+lin leghorn_NK = {s = d05 "leghorn"} ;
+lin legioona_NK = {s = d10 "legioona"} ;
+lin legitiimi_NK = {s = d05 "legitiimi"} ;
+lin legitiimiys_NK = {s = d40 "legitiimiys"} ;
+lin legitimoida_VK = {s = c62 "legitimoida"} ;
+lin legitimointi_NK = {s = d05A "legitimointi"} ;
+lin leguaani_NK = {s = d05 "leguaani"} ;
+lin lehahdella_VK = {s = c67A "lehahdella"} ;
+lin lehahdus_NK = {s = d39 "lehahdus"} ;
+lin lehahtaa_VK = {s = c53A "lehahtaa"} ;
+lin lehaus_NK = {s = d39 "lehaus"} ;
+lin lehauttaa_VK = {s = c53A "lehauttaa"} ;
+--? lin lehdekset_NK = {s = d39 "lehdekset"} ;
+lin lehdesta'a'_VK = {s = c53 "lehdestää"} ;
+lin lehdisto'_NK = {s = d01 "lehdistö"} ;
+lin lehdokki_NK = {s = d05A "lehdokki"} ;
+lin lehdykka'_NK = {s = d14A "lehdykkä"} ;
+lin lehika'inen_NK = {s = d38 "lehikäinen"} ;
+lin lehmihaka_NK = {s = d09A "lehmihaka"} ;
+lin lehmus_NK = {s = d39 "lehmus"} ;
+lin lehma'_NK = {s = d10 "lehmä"} ;
+lin lehteilla'_VK = {s = c67 "lehteillä"} ;
+lin lehteri_NK = {s = d06 "lehteri"} ;
+lin lehtevyys_NK = {s = d40 "lehtevyys"} ;
+lin lehteva'_NK = {s = d10 "lehtevä"} ;
+lin lehti_NK = {s = d07A "lehti"} ;
+lin lehtinen_NK = {s = d38 "lehtinen"} ;
+lin lehtinen_NK = {s = d38 "lehtinen"} ;
+lin lehtia'_VK = {s = c61A "lehtiä"} ;
+lin lehtia'inen_NK = {s = d38 "lehtiäinen"} ;
+lin lehtio'_NK = {s = d03 "lehtiö"} ;
+lin lehto_NK = {s = d01A "lehto"} ;
+lin lehtoraatti_NK = {s = d05A "lehtoraatti"} ;
+lin lehtori_NK = {s = d06 "lehtori"} ;
+lin lehvisto'_NK = {s = d02 "lehvistö"} ;
+lin lehva'_NK = {s = d10 "lehvä"} ;
+lin lehva'inen_NK = {s = d38 "lehväinen"} ;
+lin lehva'sto'_NK = {s = d02 "lehvästö"} ;
+lin lei_NK = {s = d18 "lei"} ;
+lin leidi_NK = {s = d05 "leidi"} ;
+lin leija_NK = {s = d09 "leija"} ;
+lin leijailla_VK = {s = c67 "leijailla"} ;
+lin leijailu_NK = {s = d02 "leijailu"} ;
+lin leijata_1_VK = {s = c73 "leijata"} ;
+lin leijata_2_VK = {s = c73 "leijata"} ;
+lin leijona_NK = {s = d10 "leijona"} ;
+lin leijua_VK = {s = c52 "leijua"} ;
+lin leijuma_NK = {s = d10 "leijuma"} ;
+lin leijunta_NK = {s = d09A "leijunta"} ;
+lin leijuttaa_VK = {s = c53A "leijuttaa"} ;
+lin leikata_VK = {s = c73A "leikata"} ;
+lin leike_NK = {s = d48A "leike"} ;
+lin leikella'_VK = {s = c67A "leikellä"} ;
+lin leikillinen_AK = {s = d38 "leikillinen"} ;
+--+ lin leikillisesti_AdvK = {s = c99 "leikillisesti"} ;
+lin leikillisyys_NK = {s = d40 "leikillisyys"} ;
+lin leikilla'a'n_AdvK = {s = c99 "leikillään"} ;
+lin leikisti_AdvK = {s = c99 "leikisti"} ;
+lin leikitella'_VK = {s = c67A "leikitellä"} ;
+lin leikiten_AdvK = {s = c99 "leikiten"} ;
+lin leikittely_NK = {s = d02 "leikittely"} ;
+lin leikitta'a'_VK = {s = c53A "leikittää"} ;
+lin leikkaaja_NK = {s = d10 "leikkaaja"} ;
+lin leikkaamo_NK = {s = d02 "leikkaamo"} ;
+lin leikkaantua_VK = {s = c52A "leikkaantua"} ;
+lin leikkaavuus_NK = {s = d40 "leikkaavuus"} ;
+lin leikkain_NK = {s = d33 "leikkain"} ;
+lin leikkaus_NK = {s = d39 "leikkaus"} ;
+lin leikkaushaava_NK = {s = d09 "leikkaushaava"} ;
+lin leikkauttaa_VK = {s = c53A "leikkauttaa"} ;
+lin leikkautua_VK = {s = c52A "leikkautua"} ;
+lin leikkele_NK = {s = d48 "leikkele"} ;
+lin leikki_NK = {s = d05A "leikki"} ;
+lin leikkija'_NK = {s = d12 "leikkijä"} ;
+lin leikkisyys_NK = {s = d40 "leikkisyys"} ;
+lin leikkisa'_AK = {s = d10 "leikkisä"} ;
+--+ lin leikkisa'sti_AdvK = {s = c99 "leikkisästi"} ;
+lin leikkia'_VK = {s = c61A "leikkiä"} ;
+lin leikkuri_NK = {s = d06 "leikkuri"} ;
+lin leikkuu_NK = {s = d17 "leikkuu"} ;
+lin leikkuuttaa_VK = {s = c53A "leikkuuttaa"} ;
+lin leili_NK = {s = d05 "leili"} ;
+lin leima_NK = {s = d09 "leima"} ;
+lin leimaa_antava_NK = {s = d10 "leimaa-antava"} ;
+lin leimaaja_NK = {s = d10 "leimaaja"} ;
+lin leimahdella_VK = {s = c67A "leimahdella"} ;
+lin leimahdus_NK = {s = d39 "leimahdus"} ;
+lin leimahtaa_VK = {s = c53A "leimahtaa"} ;
+lin leimahtelu_NK = {s = d02 "leimahtelu"} ;
+lin leimasin_NK = {s = d33 "leimasin"} ;
+lin leimata_VK = {s = c73 "leimata"} ;
+lin leimaus_1_NK = {s = d39 "leimaus"} ;
+lin leimaus_2_NK = {s = d39 "leimaus"} ;
+lin leimauttaa_1_VK = {s = c53A "leimauttaa"} ;
+lin leimauttaa_2_VK = {s = c53A "leimauttaa"} ;
+lin leimautua_VK = {s = c52A "leimautua"} ;
+lin leimu_NK = {s = d01 "leimu"} ;
+lin leimuta_VK = {s = c74 "leimuta"} ;
+lin leini_NK = {s = d05 "leini"} ;
+lin leinikki_NK = {s = d05A "leinikki"} ;
+lin leipoa_VK = {s = c52A "leipoa"} ;
+lin leipoja_NK = {s = d10 "leipoja"} ;
+lin leipomus_NK = {s = d39 "leipomus"} ;
+lin leipoutua_VK = {s = c52A "leipoutua"} ;
+lin leipuri_NK = {s = d06 "leipuri"} ;
+lin leipa'_NK = {s = d10A "leipä"} ;
+lin leipa'a'ntya'_VK = {s = c52A "leipääntyä"} ;
+lin leireilla'_VK = {s = c67 "leireillä"} ;
+lin leiri_NK = {s = d05 "leiri"} ;
+lin leirila'inen_NK = {s = d38 "leiriläinen"} ;
+lin leirinta'_NK = {s = d09A "leirintä"} ;
+lin leiritta'a'_VK = {s = c53A "leirittää"} ;
+lin leiritys_NK = {s = d39 "leiritys"} ;
+lin leiriytya'_VK = {s = c52A "leiriytyä"} ;
+lin leiskahdus_NK = {s = d39 "leiskahdus"} ;
+lin leiskahtaa_VK = {s = c53A "leiskahtaa"} ;
+lin leiskaus_NK = {s = d39 "leiskaus"} ;
+lin leiskauttaa_VK = {s = c53A "leiskauttaa"} ;
+lin leiskua_VK = {s = c52 "leiskua"} ;
+lin leiskunta_NK = {s = d09A "leiskunta"} ;
+lin leiviska'_NK = {s = d13 "leiviskä"} ;
+lin leivite_NK = {s = d48A "leivite"} ;
+lin leivitta'a'_VK = {s = c53A "leivittää"} ;
+lin leivitys_NK = {s = d39 "leivitys"} ;
+lin leivo_NK = {s = d01 "leivo"} ;
+lin leivonen_NK = {s = d38 "leivonen"} ;
+lin leivonnainen_NK = {s = d38 "leivonnainen"} ;
+lin leivonta_NK = {s = d09A "leivonta"} ;
+lin leivos_NK = {s = d39 "leivos"} ;
+lin leiva'nkuori_NK = {s = d26 "leivänkuori"} ;
+lin leiva'to'n_NK = {s = d34A "leivätön"} ;
+lin lejeerata_VK = {s = c73 "lejeerata"} ;
+lin lejeerinki_NK = {s = d05A "lejeerinki"} ;
+lin leka_NK = {s = d09 "leka"} ;
+lin lekkeri_NK = {s = d06 "lekkeri"} ;
+lin lekotella_VK = {s = c67A "lekotella"} ;
+lin lekottaa_VK = {s = c53A "lekottaa"} ;
+lin leksikaalinen_NK = {s = d38 "leksikaalinen"} ;
+lin leksikko_NK = {s = d04A "leksikko"} ;
+lin leksikografi_NK = {s = d05 "leksikografi"} ;
+lin leksikografia_NK = {s = d12 "leksikografia"} ;
+lin leksikologia_NK = {s = d12 "leksikologia"} ;
+lin lelli_NK = {s = d05 "lelli"} ;
+lin lellikki_NK = {s = d05A "lellikki"} ;
+lin lellitella'_VK = {s = c67A "lellitellä"} ;
+lin lellittely_NK = {s = d02 "lellittely"} ;
+lin lellia'_VK = {s = c61 "lelliä"} ;
+lin lellua_VK = {s = c52 "lellua"} ;
+lin lelu_NK = {s = d01 "lelu"} ;
+lin lemahdella_VK = {s = c67A "lemahdella"} ;
+lin lemahdus_NK = {s = d39 "lemahdus"} ;
+lin lemahtaa_VK = {s = c53A "lemahtaa"} ;
+lin lemmekkyys_NK = {s = d40 "lemmekkyys"} ;
+--+ lin lemmekka'a'sti_AdvK = {s = c99 "lemmekkäästi"} ;
+lin lemmeka's_AK = {s = d41A "lemmekäs"} ;
+lin lemmikki_NK = {s = d05A "lemmikki"} ;
+lin lemmiskella'_VK = {s = c67 "lemmiskellä"} ;
+lin lemmiskely_NK = {s = d02 "lemmiskely"} ;
+lin lemmitty_NK = {s = d01A "lemmitty"} ;
+lin lempata_VK = {s = c73A "lempata"} ;
+lin lempeys_NK = {s = d40 "lempeys"} ;
+lin lempea'_AK = {s = d15 "lempeä"} ;
+--+ lin lempea'sti_AdvK = {s = c99 "lempeästi"} ;
+lin lempi_NK = {s = d07A "lempi"} ;
+lin lempia'_VK = {s = c61A "lempiä"} ;
+lin lempo_NK = {s = d01A "lempo"} ;
+lin lemppari_NK = {s = d06 "lemppari"} ;
+--? lin lemput_NK = {s = d01A "lemput"} ;
+lin lemu_NK = {s = d01 "lemu"} ;
+lin lemuta_VK = {s = c74 "lemuta"} ;
+lin leninila'inen_NK = {s = d38 "leniniläinen"} ;
+lin leninila'isyys_NK = {s = d40 "leniniläisyys"} ;
+lin leninismi_NK = {s = d05 "leninismi"} ;
+lin leninisti_NK = {s = d05 "leninisti"} ;
+lin leninki_NK = {s = d05A "leninki"} ;
+lin lenkata_VK = {s = c73A "lenkata"} ;
+lin lenkkari_NK = {s = d06 "lenkkari"} ;
+lin lenkkeilija'_NK = {s = d12 "lenkkeilijä"} ;
+lin lenkkeilla'_VK = {s = c67 "lenkkeillä"} ;
+lin lenkkeily_NK = {s = d02 "lenkkeily"} ;
+lin lenkki_NK = {s = d05A "lenkki"} ;
+lin lenko_NK = {s = d01A "lenko"} ;
+lin lenkous_NK = {s = d40 "lenkous"} ;
+lin lennella'_VK = {s = c67A "lennellä"} ;
+lin lennin_NK = {s = d33A "lennin"} ;
+lin lennokas_AK = {s = d41A "lennokas"} ;
+--+ lin lennokkaasti_AdvK = {s = c99 "lennokkaasti"} ;
+lin lennokki_NK = {s = d05A "lennokki"} ;
+lin lennokkuus_NK = {s = d40 "lennokkuus"} ;
+lin lennosto_NK = {s = d02 "lennosto"} ;
+lin lenna'hdella'_VK = {s = c67A "lennähdellä"} ;
+lin lenna'hta'a'_VK = {s = c53A "lennähtää"} ;
+lin lenna'tella'_VK = {s = c67A "lennätellä"} ;
+lin lenna'tin_NK = {s = d33A "lennätin"} ;
+lin lenna'tta'a'_VK = {s = c53A "lennättää"} ;
+lin lenna'tys_NK = {s = d39 "lennätys"} ;
+lin lensea'_NK = {s = d15 "lenseä"} ;
+lin lentely_NK = {s = d02 "lentely"} ;
+lin lentis_NK = {s = d39 "lentis"} ;
+lin lento_1_NK = {s = d01A "lento"} ;
+lin lento_2_NK = {s = d01 "lento"} ;
+lin lentoaika_NK = {s = d09A "lentoaika"} ;
+lin lentoinen_NK = {s = d38 "lentoinen"} ;
+lin lentoonammunta_NK = {s = d09A "lentoonammunta"} ;
+lin lentsu_NK = {s = d01 "lentsu"} ;
+lin lentue_NK = {s = d48 "lentue"} ;
+lin lenta'ja'_NK = {s = d10 "lentäjä"} ;
+lin lenta'va'_NK = {s = d10 "lentävä"} ;
+lin lenta'a'_VK = {s = c54A "lentää"} ;
+lin leopardi_NK = {s = d05 "leopardi"} ;
+lin lepakko_NK = {s = d04A "lepakko"} ;
+lin lepattaa_VK = {s = c53A "lepattaa"} ;
+lin lepatus_NK = {s = d39 "lepatus"} ;
+lin leperrella'_VK = {s = c67A "leperrellä"} ;
+lin leperrys_NK = {s = d39 "leperrys"} ;
+lin lepertely_NK = {s = d02 "lepertely"} ;
+lin leperta'a'_VK = {s = c54A "lepertää"} ;
+lin lepikko_NK = {s = d04A "lepikko"} ;
+lin lepikkoinen_NK = {s = d38 "lepikkoinen"} ;
+lin lepikko'_NK = {s = d04A "lepikkö"} ;
+lin lepinka'inen_NK = {s = d38 "lepinkäinen"} ;
+lin lepisto'_NK = {s = d01 "lepistö"} ;
+lin lepo_NK = {s = d01A "lepo"} ;
+lin lepoaika_NK = {s = d09A "lepoaika"} ;
+lin leppeys_NK = {s = d40 "leppeys"} ;
+lin leppea'_AK = {s = d15 "leppeä"} ;
+--+ lin leppea'sti_AdvK = {s = c99 "leppeästi"} ;
+lin leppoisa_AK = {s = d10 "leppoisa"} ;
+--+ lin leppoisasti_AdvK = {s = c99 "leppoisasti"} ;
+lin leppoisuus_NK = {s = d40 "leppoisuus"} ;
+lin leppyma'tto'myys_NK = {s = d40 "leppymättömyys"} ;
+lin leppyma'tto'ma'sti_AdvK = {s = c99 "leppymättömästi"} ;
+lin leppyma'to'n_NK = {s = d34A "leppymätön"} ;
+lin leppya'_VK = {s = c52A "leppyä"} ;
+lin leppa'_NK = {s = d10A "leppä"} ;
+lin leppa'inen_NK = {s = d38 "leppäinen"} ;
+lin leppa'pirkko_NK = {s = d01A "leppäpirkko"} ;
+lin lepra_NK = {s = d09 "lepra"} ;
+lin lepsu_AK = {s = d01 "lepsu"} ;
+lin lepsuilla_VK = {s = c67 "lepsuilla"} ;
+lin lepsuilu_NK = {s = d02 "lepsuilu"} ;
+--+ lin lepsusti_AdvK = {s = c99 "lepsusti"} ;
+lin lepsuus_NK = {s = d40 "lepsuus"} ;
+lin leptoni_NK = {s = d06 "leptoni"} ;
+lin lepuuttaa_VK = {s = c53A "lepuuttaa"} ;
+lin lepuuttaja_NK = {s = d10 "lepuuttaja"} ;
+lin lepuutus_NK = {s = d39 "lepuutus"} ;
+lin lepytella'_VK = {s = c67A "lepytellä"} ;
+lin lepytta'a'_VK = {s = c53A "lepyttää"} ;
+lin lepytys_NK = {s = d39 "lepytys"} ;
+lin lepa'illa'_VK = {s = c67 "lepäillä"} ;
+lin lepa'nkuori_NK = {s = d26 "lepänkuori"} ;
+lin lerpahtaa_VK = {s = c53A "lerpahtaa"} ;
+lin lerpalla_AdvK = {s = c99 "lerpalla"} ;
+lin lerpallaan_AdvK = {s = c99 "lerpallaan"} ;
+lin lerpalle_AdvK = {s = c99 "lerpalle"} ;
+lin lerpalleen_AdvK = {s = c99 "lerpalleen"} ;
+lin lerpattaa_VK = {s = c53A "lerpattaa"} ;
+lin lerppu_NK = {s = d01A "lerppu"} ;
+lin lerppua_VK = {s = c52A "lerppua"} ;
+lin lesbismi_NK = {s = d05 "lesbismi"} ;
+lin lesbo_NK = {s = d01 "lesbo"} ;
+lin lesbolaisuus_NK = {s = d40 "lesbolaisuus"} ;
+lin lesbous_NK = {s = d40 "lesbous"} ;
+lin lese_NK = {s = d48 "lese"} ;
+lin lesema'to'n_NK = {s = d34A "lesemätön"} ;
+lin lesitiini_NK = {s = d05 "lesitiini"} ;
+lin lesia'inen_NK = {s = d38 "lesiäinen"} ;
+lin leskeys_NK = {s = d40 "leskeys"} ;
+lin leski_NK = {s = d07 "leski"} ;
+lin lespata_VK = {s = c73 "lespata"} ;
+lin lespaus_NK = {s = d39 "lespaus"} ;
+lin lestadiolainen_NK = {s = d38 "lestadiolainen"} ;
+lin lestadiolaisuus_NK = {s = d40 "lestadiolaisuus"} ;
+lin lesti_NK = {s = d05 "lesti"} ;
+lin lesty_NK = {s = d01 "lesty"} ;
+lin lesta'_VK = {s = c66 "lestä"} ;
+lin letitta'a'_VK = {s = c53A "letittää"} ;
+lin letka_NK = {s = d09 "letka"} ;
+lin letkahtaa_VK = {s = c53A "letkahtaa"} ;
+lin letkaus_NK = {s = d39 "letkaus"} ;
+lin letkautella_VK = {s = c67A "letkautella"} ;
+lin letkauttaa_VK = {s = c53A "letkauttaa"} ;
+lin letkautus_NK = {s = d39 "letkautus"} ;
+lin letkeys_NK = {s = d40 "letkeys"} ;
+lin letkea'_AK = {s = d15 "letkeä"} ;
+--+ lin letkea'sti_AdvK = {s = c99 "letkeästi"} ;
+lin letkis_NK = {s = d39 "letkis"} ;
+lin letku_NK = {s = d01 "letku"} ;
+lin letti_NK = {s = d05A "letti"} ;
+lin letto_NK = {s = d01A "letto"} ;
+lin lettu_NK = {s = d01A "lettu"} ;
+lin letukka_NK = {s = d14A "letukka"} ;
+lin leuanveto_NK = {s = d01A "leuanveto"} ;
+lin leudontaa_VK = {s = c54A "leudontaa"} ;
+lin leudontua_VK = {s = c52A "leudontua"} ;
+lin leudosti_AdvK = {s = c99 "leudosti"} ;
+lin leudota_VK = {s = c72A "leudota"} ;
+lin leuhahtaa_VK = {s = c53A "leuhahtaa"} ;
+lin leuhauttaa_VK = {s = c53A "leuhauttaa"} ;
+lin leuhka_AK = {s = d09 "leuhka"} ;
+--+ lin leuhkasti_AdvK = {s = c99 "leuhkasti"} ;
+lin leuhkia_VK = {s = c61 "leuhkia"} ;
+lin leuhkuus_NK = {s = d40 "leuhkuus"} ;
+lin leuhottaa_VK = {s = c53A "leuhottaa"} ;
+lin leuka_NK = {s = d09A "leuka"} ;
+lin leukailla_VK = {s = c67 "leukailla"} ;
+lin leukailu_NK = {s = d02 "leukailu"} ;
+lin leukainen_NK = {s = d38 "leukainen"} ;
+lin leukava_AK = {s = d10 "leukava"} ;
+--+ lin leukavasti_AdvK = {s = c99 "leukavasti"} ;
+lin leukavuus_NK = {s = d40 "leukavuus"} ;
+lin leukemia_NK = {s = d12 "leukemia"} ;
+lin leukoija_NK = {s = d11 "leukoija"} ;
+lin leukosyytti_NK = {s = d05A "leukosyytti"} ;
+lin leuku_NK = {s = d01 "leuku"} ;
+lin leuto_NK = {s = d01A "leuto"} ;
+lin leutous_NK = {s = d40 "leutous"} ;
+lin leveilla'_VK = {s = c67 "leveillä"} ;
+lin leveily_NK = {s = d02 "leveily"} ;
+lin levennella'_VK = {s = c67A "levennellä"} ;
+lin levennys_NK = {s = d39 "levennys"} ;
+lin leventely_NK = {s = d02 "leventely"} ;
+lin leventya'_VK = {s = c52A "leventyä"} ;
+lin leventa'a'_VK = {s = c54A "leventää"} ;
+lin leveta'_VK = {s = c72 "levetä"} ;
+lin leveys_NK = {s = d40 "leveys"} ;
+lin levea'_AK = {s = d15 "leveä"} ;
+lin levea'lti_AdvK = {s = c99 "leveälti"} ;
+--+ lin levea'sti_AdvK = {s = c99 "leveästi"} ;
+lin levike_NK = {s = d48A "levike"} ;
+lin levikki_NK = {s = d05A "levikki"} ;
+lin levikkinen_NK = {s = d38 "levikkinen"} ;
+lin levinneisyys_NK = {s = d40 "levinneisyys"} ;
+lin levinta'_NK = {s = d09A "levintä"} ;
+lin levinta'inen_NK = {s = d38 "levintäinen"} ;
+lin levitaatio_NK = {s = d03 "levitaatio"} ;
+lin levite_NK = {s = d48A "levite"} ;
+lin levitella'_VK = {s = c67A "levitellä"} ;
+lin levitin_NK = {s = d33A "levitin"} ;
+lin levitoida_VK = {s = c62 "levitoida"} ;
+lin levittya'_VK = {s = c52A "levittyä"} ;
+lin levitta'ytya'_VK = {s = c52A "levittäytyä"} ;
+lin levitta'a'_VK = {s = c53A "levittää"} ;
+lin levitys_NK = {s = d39 "levitys"} ;
+lin levita'_VK = {s = c75 "levitä"} ;
+lin levia'in_NK = {s = d33 "leviäin"} ;
+lin levollinen_AK = {s = d38 "levollinen"} ;
+--+ lin levollisesti_AdvK = {s = c99 "levollisesti"} ;
+lin levollisuus_NK = {s = d40 "levollisuus"} ;
+lin levoton_NK = {s = d34A "levoton"} ;
+lin levottomasti_AdvK = {s = c99 "levottomasti"} ;
+lin levottomuus_NK = {s = d40 "levottomuus"} ;
+lin levy_NK = {s = d01 "levy"} ;
+lin levyinen_1_NK = {s = d38 "levyinen"} ;
+lin levyinen_2_NK = {s = d38 "levyinen"} ;
+lin levyke_NK = {s = d48A "levyke"} ;
+lin levyri_NK = {s = d06 "levyri"} ;
+lin levysto'_NK = {s = d02 "levystö"} ;
+lin levyte_NK = {s = d48A "levyte"} ;
+lin levytta'a'_VK = {s = c53A "levyttää"} ;
+lin levytys_NK = {s = d39 "levytys"} ;
+lin leva'_NK = {s = d10 "levä"} ;
+lin leva'hdys_NK = {s = d39 "levähdys"} ;
+lin leva'hta'a'_1_VK = {s = c53A "levähtää"} ;
+lin leva'hta'a'_2_VK = {s = c53A "levähtää"} ;
+lin leva'kko'_NK = {s = d04A "leväkkö"} ;
+lin leva'lleen_AdvK = {s = c99 "levälleen"} ;
+lin leva'lla'a'n_AdvK = {s = c99 "levällään"} ;
+--+ lin leva'pera'isesti_AdvK = {s = c99 "leväperäisesti"} ;
+lin leva'ta'_VK = {s = c73A "levätä"} ;
+lin leva'ytta'a'_VK = {s = c53A "leväyttää"} ;
+lin leyhka'_NK = {s = d10 "leyhkä"} ;
+lin leyhytella'_VK = {s = c67A "leyhytellä"} ;
+lin leyhytta'a'_VK = {s = c53A "leyhyttää"} ;
+lin leyhya'_VK = {s = c52 "leyhyä"} ;
+lin leyha'hdella'_VK = {s = c67A "leyhähdellä"} ;
+lin leyha'hdys_NK = {s = d39 "leyhähdys"} ;
+lin leyha'hta'a'_VK = {s = c53A "leyhähtää"} ;
+lin leyha'ytta'a'_VK = {s = c53A "leyhäyttää"} ;
+lin liaani_NK = {s = d05 "liaani"} ;
+lin liata_VK = {s = c73A "liata"} ;
+lin liberaali_AK = {s = d05 "liberaali"} ;
+lin liberaalinen_AK = {s = d38 "liberaalinen"} ;
+--+ lin liberaalisesti_AdvK = {s = c99 "liberaalisesti"} ;
+lin liberaalistaa_VK = {s = c53 "liberaalistaa"} ;
+--+ lin liberaalisti_AdvK = {s = c99 "liberaalisti"} ;
+lin liberaalistua_VK = {s = c52 "liberaalistua"} ;
+lin liberaalisuus_NK = {s = d40 "liberaalisuus"} ;
+lin liberaalius_NK = {s = d40 "liberaalius"} ;
+lin liberalismi_NK = {s = d05 "liberalismi"} ;
+lin liberalisoida_VK = {s = c62 "liberalisoida"} ;
+lin liberalisoitua_VK = {s = c52A "liberalisoitua"} ;
+lin liberalisti_NK = {s = d05 "liberalisti"} ;
+lin liberalistinen_NK = {s = d38 "liberalistinen"} ;
+lin libero_NK = {s = d02 "libero"} ;
+lin libido_NK = {s = d01 "libido"} ;
+lin libretto_NK = {s = d01A "libretto"} ;
+lin libristi_NK = {s = d05 "libristi"} ;
+lin lie_AdvK = {s = c99 "lie"} ;
+lin lied_NK = {s = d05 "lied"} ;
+lin liehahdus_NK = {s = d39 "liehahdus"} ;
+lin liehahtaa_VK = {s = c53A "liehahtaa"} ;
+lin liehakas_AK = {s = d41A "liehakas"} ;
+lin liehakka_NK = {s = d14A "liehakka"} ;
+--+ lin liehakkaasti_AdvK = {s = c99 "liehakkaasti"} ;
+lin liehakko_NK = {s = d04A "liehakko"} ;
+lin liehakoida_VK = {s = c68 "liehakoida"} ;
+lin liehakoija_NK = {s = d10 "liehakoija"} ;
+lin liehakointi_NK = {s = d05A "liehakointi"} ;
+lin liehauttaa_VK = {s = c53A "liehauttaa"} ;
+lin liehitella'_VK = {s = c67A "liehitellä"} ;
+lin liehittelija'_NK = {s = d12 "liehittelijä"} ;
+lin liehittely_NK = {s = d02 "liehittely"} ;
+lin liehtoa_VK = {s = c52A "liehtoa"} ;
+lin liehua_VK = {s = c52 "liehua"} ;
+lin liehuke_NK = {s = d48A "liehuke"} ;
+lin liehutella_VK = {s = c67A "liehutella"} ;
+lin liehuttaa_VK = {s = c53A "liehuttaa"} ;
+lin lieju_NK = {s = d01 "lieju"} ;
+lin liejuinen_NK = {s = d38 "liejuinen"} ;
+lin liejuisuus_NK = {s = d40 "liejuisuus"} ;
+lin liejukko_NK = {s = d04A "liejukko"} ;
+lin liejuuntua_VK = {s = c52A "liejuuntua"} ;
+lin lieka_NK = {s = d09A "lieka"} ;
+lin liekehdinta'_NK = {s = d09A "liekehdintä"} ;
+lin liekehtia'_VK = {s = c61A "liekehtiä"} ;
+lin liekitta'a'_VK = {s = c53A "liekittää"} ;
+lin liekki_NK = {s = d05A "liekki"} ;
+lin lieko_NK = {s = d01A "lieko"} ;
+lin liekutella_VK = {s = c67A "liekutella"} ;
+lin liekuttaa_VK = {s = c53A "liekuttaa"} ;
+lin liemi_NK = {s = d25 "liemi"} ;
+lin lienee_AdvK = {s = c99 "lienee"} ;
+lin liennytta'a'_VK = {s = c53A "liennyttää"} ;
+lin liennytys_NK = {s = d39 "liennytys"} ;
+lin lientya'_VK = {s = c52A "lientyä"} ;
+lin lienta'a'_VK = {s = c54A "lientää"} ;
+lin liepeille_AdvK = {s = c99 "liepeille"} ;
+lin liepeilla'_AdvK = {s = c99 "liepeillä"} ;
+lin liepeilta'_AdvK = {s = c99 "liepeiltä"} ;
+lin liepeinen_NK = {s = d38 "liepeinen"} ;
+lin liereys_NK = {s = d40 "liereys"} ;
+lin lierea'_NK = {s = d15 "liereä"} ;
+lin lieri_NK = {s = d05 "lieri"} ;
+lin lierinen_NK = {s = d38 "lierinen"} ;
+lin lierio'_NK = {s = d03 "lieriö"} ;
+lin liero_NK = {s = d01 "liero"} ;
+lin lieroilla_VK = {s = c67 "lieroilla"} ;
+lin lieroilu_NK = {s = d02 "lieroilu"} ;
+lin liesi_NK = {s = d27 "liesi"} ;
+lin lieska_NK = {s = d09 "lieska"} ;
+lin liesma_NK = {s = d09 "liesma"} ;
+lin liestya'_VK = {s = c52 "liestyä"} ;
+lin liesu_1_NK = {s = d01 "liesu"} ;
+lin liesu_2_NK = {s = d01 "liesu"} ;
+lin liesuta_VK = {s = c75 "liesuta"} ;
+lin liete_NK = {s = d48A "liete"} ;
+lin lietso_NK = {s = d01 "lietso"} ;
+lin lietsoa_VK = {s = c52 "lietsoa"} ;
+lin lietsoin_NK = {s = d33 "lietsoin"} ;
+lin lietsoja_NK = {s = d10 "lietsoja"} ;
+lin lietsu_NK = {s = d01 "lietsu"} ;
+lin lietsuta_VK = {s = c75 "lietsuta"} ;
+lin lietteinen_NK = {s = d38 "lietteinen"} ;
+lin lietto_NK = {s = d01A "lietto"} ;
+lin liettua_NK = {s = d12 "liettua"} ;
+lin liettyma'_NK = {s = d10 "liettymä"} ;
+lin liettya'_VK = {s = c52A "liettyä"} ;
+lin lietta'a'_VK = {s = c53A "liettää"} ;
+lin lieve_NK = {s = d48A "lieve"} ;
+lin lievennys_NK = {s = d39 "lievennys"} ;
+lin lieventya'_VK = {s = c52A "lieventyä"} ;
+lin lieventa'a'_VK = {s = c54A "lieventää"} ;
+lin lieveta'_VK = {s = c72 "lievetä"} ;
+lin lievike_NK = {s = d48A "lievike"} ;
+lin lievittya'_VK = {s = c52A "lievittyä"} ;
+lin lievitta'a'_VK = {s = c53A "lievittää"} ;
+lin lievitys_NK = {s = d39 "lievitys"} ;
+lin lievyys_NK = {s = d40 "lievyys"} ;
+lin lieva'_AK = {s = d10 "lievä"} ;
+--+ lin lieva'sti_AdvK = {s = c99 "lievästi"} ;
+lin liftaaja_NK = {s = d10 "liftaaja"} ;
+lin liftari_NK = {s = d06 "liftari"} ;
+lin liftata_VK = {s = c73 "liftata"} ;
+lin liftaus_NK = {s = d39 "liftaus"} ;
+lin lifti_NK = {s = d05 "lifti"} ;
+lin ligniini_NK = {s = d05 "ligniini"} ;
+lin liha_NK = {s = d09 "liha"} ;
+lin lihainen_NK = {s = d38 "lihainen"} ;
+lin lihaisa_NK = {s = d10 "lihaisa"} ;
+lin lihakas_NK = {s = d41A "lihakas"} ;
+lin lihaksekas_NK = {s = d41A "lihaksekas"} ;
+lin lihaksikas_NK = {s = d41A "lihaksikas"} ;
+lin lihaksinen_NK = {s = d38 "lihaksinen"} ;
+lin lihaksisto_NK = {s = d01 "lihaksisto"} ;
+lin lihallinen_NK = {s = d38 "lihallinen"} ;
+lin lihas_NK = {s = d39 "lihas"} ;
+lin lihasvena'htyma'_NK = {s = d10 "lihasvenähtymä"} ;
+lin lihava_NK = {s = d10 "lihava"} ;
+lin lihavoida_VK = {s = c62 "lihavoida"} ;
+lin lihavuus_NK = {s = d40 "lihavuus"} ;
+lin lihoa_VK = {s = c52 "lihoa"} ;
+lin lihota_VK = {s = c74 "lihota"} ;
+lin lihottaa_VK = {s = c53A "lihottaa"} ;
+lin lihotus_NK = {s = d39 "lihotus"} ;
+lin liiaksi_AdvK = {s = c99 "liiaksi"} ;
+lin liiallinen_NK = {s = d38 "liiallinen"} ;
+lin liiallisuus_NK = {s = d40 "liiallisuus"} ;
+lin liialti_AdvK = {s = c99 "liialti"} ;
+lin liian_AdvK = {s = c99 "liian"} ;
+lin liidella'_VK = {s = c67A "liidellä"} ;
+lin liidin_NK = {s = d33A "liidin"} ;
+lin liidokki_NK = {s = d05A "liidokki"} ;
+lin liiduta_VK = {s = c74A "liiduta"} ;
+lin liiemmin_AdvK = {s = c99 "liiemmin"} ;
+lin liiemma'lti_AdvK = {s = c99 "liiemmälti"} ;
+lin liieta'_VK = {s = c72A "liietä"} ;
+lin liiga_NK = {s = d09 "liiga"} ;
+lin liigautua_VK = {s = c52A "liigautua"} ;
+lin liihotella_VK = {s = c67A "liihotella"} ;
+lin liihottaa_VK = {s = c53A "liihottaa"} ;
+lin liika_NK = {s = d09A "liika"} ;
+lin liikaa_AdvK = {s = c99 "liikaa"} ;
+lin liikahdella_VK = {s = c67A "liikahdella"} ;
+lin liikahdus_NK = {s = d39 "liikahdus"} ;
+lin liikahduttaa_VK = {s = c53A "liikahduttaa"} ;
+lin liikahtaa_VK = {s = c53A "liikahtaa"} ;
+lin liikakansoitus_NK = {s = d39 "liikakansoitus"} ;
+lin liikarasittunut_NK = {s = d47 "liikarasittunut"} ;
+lin liikata_VK = {s = c73A "liikata"} ;
+lin liikauttaa_VK = {s = c53A "liikauttaa"} ;
+lin liike_NK = {s = d48A "liike"} ;
+lin liikeaika_NK = {s = d09A "liikeaika"} ;
+lin liikehdinta'_NK = {s = d09A "liikehdintä"} ;
+lin liikehtia'_VK = {s = c61A "liikehtiä"} ;
+lin liikenne_NK = {s = d48A "liikenne"} ;
+lin liikenno'ida'_VK = {s = c68 "liikennöidä"} ;
+lin liikenno'ija'_NK = {s = d10 "liikennöijä"} ;
+lin liikenno'inti_NK = {s = d05A "liikennöinti"} ;
+lin liikenno'itsija'_NK = {s = d12 "liikennöitsijä"} ;
+lin liikenteinen_NK = {s = d38 "liikenteinen"} ;
+lin liikkeelle_AdvK = {s = c99 "liikkeelle"} ;
+lin liikkeellepaneva_NK = {s = d10 "liikkeellepaneva"} ;
+lin liikkeella'_AdvK = {s = c99 "liikkeellä"} ;
+lin liikkeessa'_AdvK = {s = c99 "liikkeessä"} ;
+lin liikkeinen_NK = {s = d38 "liikkeinen"} ;
+lin liikkeisyys_NK = {s = d40 "liikkeisyys"} ;
+lin liikkis_NK = {s = d39 "liikkis"} ;
+lin liikkua_VK = {s = c52A "liikkua"} ;
+lin liikkuja_NK = {s = d10 "liikkuja"} ;
+lin liikkumaton_NK = {s = d34A "liikkumaton"} ;
+lin liikkumattomuus_NK = {s = d40 "liikkumattomuus"} ;
+lin liikkuva_AK = {s = d10 "liikkuva"} ;
+lin liikkuvainen_NK = {s = d38 "liikkuvainen"} ;
+--+ lin liikkuvasti_AdvK = {s = c99 "liikkuvasti"} ;
+lin liikkuvuus_NK = {s = d40 "liikkuvuus"} ;
+lin liikunnallinen_NK = {s = d38 "liikunnallinen"} ;
+lin liikunta_NK = {s = d09A "liikunta"} ;
+lin liikuskella_VK = {s = c67 "liikuskella"} ;
+lin liikuskelu_NK = {s = d02 "liikuskelu"} ;
+lin liikutella_VK = {s = c67A "liikutella"} ;
+lin liikuttaa_VK = {s = c53A "liikuttaa"} ;
+lin liikuttava_AK = {s = d10 "liikuttava"} ;
+--+ lin liikuttavasti_AdvK = {s = c99 "liikuttavasti"} ;
+lin liikuttavuus_NK = {s = d40 "liikuttavuus"} ;
+lin liikuttelu_NK = {s = d02 "liikuttelu"} ;
+lin liikuttua_VK = {s = c52A "liikuttua"} ;
+lin liikutus_NK = {s = d39 "liikutus"} ;
+lin liila_NK = {s = d09 "liila"} ;
+lin liima_NK = {s = d09 "liima"} ;
+lin liimaantua_VK = {s = c52A "liimaantua"} ;
+lin liimata_VK = {s = c73 "liimata"} ;
+lin liimaus_NK = {s = d39 "liimaus"} ;
+lin liimautua_VK = {s = c52A "liimautua"} ;
+lin liimoite_NK = {s = d48A "liimoite"} ;
+lin liimoittaa_VK = {s = c53A "liimoittaa"} ;
+lin liimoittua_VK = {s = c52A "liimoittua"} ;
+lin liimoitus_NK = {s = d39 "liimoitus"} ;
+lin liina_NK = {s = d09 "liina"} ;
+lin liinakko_NK = {s = d04A "liinakko"} ;
+lin liioin_AdvK = {s = c99 "liioin"} ;
+lin liioitella_VK = {s = c67A "liioitella"} ;
+lin liioittelu_NK = {s = d02 "liioittelu"} ;
+lin liipaisin_NK = {s = d33 "liipaisin"} ;
+lin liipaista_VK = {s = c66 "liipaista"} ;
+lin liipaisu_NK = {s = d02 "liipaisu"} ;
+lin liipata_VK = {s = c73A "liipata"} ;
+lin liipotin_NK = {s = d33A "liipotin"} ;
+lin liippa_NK = {s = d09A "liippa"} ;
+lin liippari_NK = {s = d06 "liippari"} ;
+lin liira_NK = {s = d09 "liira"} ;
+lin liirata_VK = {s = c73 "liirata"} ;
+lin liirto_NK = {s = d01A "liirto"} ;
+lin liirta'a'_VK = {s = c54A "liirtää"} ;
+lin liirumlaarum_NK = {s = d06 "liirumlaarum"} ;
+lin liirumlaarumi_NK = {s = d06 "liirumlaarumi"} ;
+lin liisata_VK = {s = c73 "liisata"} ;
+lin liisaus_NK = {s = d39 "liisaus"} ;
+lin liiskaksi_AdvK = {s = c99 "liiskaksi"} ;
+lin liiskana_AdvK = {s = c99 "liiskana"} ;
+lin liisteri_NK = {s = d06 "liisteri"} ;
+lin liistero'ida'_VK = {s = c62 "liisteröidä"} ;
+lin liistero'inti_NK = {s = d05A "liisteröinti"} ;
+lin liistero'itya'_VK = {s = c52A "liisteröityä"} ;
+lin liisukka_NK = {s = d14A "liisukka"} ;
+lin liite_NK = {s = d48A "liite"} ;
+lin liitely_NK = {s = d02 "liitely"} ;
+lin liiteri_NK = {s = d06 "liiteri"} ;
+lin liitin_NK = {s = d33A "liitin"} ;
+lin liito_NK = {s = d01A "liito"} ;
+lin liitokiekkoilu_NK = {s = d02 "liitokiekkoilu"} ;
+lin liitonarkki_NK = {s = d05A "liitonarkki"} ;
+lin liitos_NK = {s = d39 "liitos"} ;
+lin liitoskohta_NK = {s = d10A "liitoskohta"} ;
+lin liitostaa_VK = {s = c53 "liitostaa"} ;
+lin liitto_NK = {s = d01A "liitto"} ;
+lin liittolaisuus_NK = {s = d40 "liittolaisuus"} ;
+lin liittouma_NK = {s = d10 "liittouma"} ;
+lin liittoutua_VK = {s = c52A "liittoutua"} ;
+lin liittoutuma_NK = {s = d10 "liittoutuma"} ;
+lin liittoutumaton_NK = {s = d34A "liittoutumaton"} ;
+lin liittoutuneet_NK = {s = d47 "liittoutuneet"} ;
+lin liittyma'_NK = {s = d10 "liittymä"} ;
+lin liittyma'kohta_NK = {s = d10A "liittymäkohta"} ;
+lin liittya'_VK = {s = c52A "liittyä"} ;
+lin liitta'a'_VK = {s = c53A "liittää"} ;
+lin liitu_NK = {s = d01A "liitu"} ;
+lin liitynta'_NK = {s = d09A "liityntä"} ;
+lin liita'nna'inen_NK = {s = d38 "liitännäinen"} ;
+lin liita'nta'_NK = {s = d09A "liitäntä"} ;
+lin liita'a'_VK = {s = c55A "liitää"} ;
+lin liivakko_NK = {s = d04A "liivakko"} ;
+lin liivari_NK = {s = d06 "liivari"} ;
+lin liivate_NK = {s = d48A "liivate"} ;
+lin liivi_1_NK = {s = d05 "liivi"} ;
+lin liivi_2_NK = {s = d05 "liivi"} ;
+lin liivila'inen_NK = {s = d38 "liiviläinen"} ;
+lin lika_NK = {s = d09A "lika"} ;
+lin likaahylkiva'_NK = {s = d10 "likaahylkivä"} ;
+lin likaaja_NK = {s = d10 "likaaja"} ;
+lin likaantua_VK = {s = c52A "likaantua"} ;
+lin likainen_NK = {s = d38 "likainen"} ;
+lin likeinen_AK = {s = d38 "likeinen"} ;
+--+ lin likeisesti_AdvK = {s = c99 "likeisesti"} ;
+lin likeisyys_NK = {s = d40 "likeisyys"} ;
+lin likekka'in_AdvK = {s = c99 "likekkäin"} ;
+lin likekka'inen_NK = {s = d38 "likekkäinen"} ;
+lin likelle_AdvK = {s = c99 "likelle"} ;
+lin likella'_AdvK = {s = c99 "likellä"} ;
+lin likelta'_AdvK = {s = c99 "likeltä"} ;
+lin likemmin_AdvK = {s = c99 "likemmin"} ;
+lin likemma'ksi_AdvK = {s = c99 "likemmäksi"} ;
+lin likemma's_AdvK = {s = c99 "likemmäs"} ;
+lin likempi_NK = {s = d16A "likempi"} ;
+lin likempa'na'_AdvK = {s = c99 "likempänä"} ;
+lin likempa'a'_AdvK = {s = c99 "likempää"} ;
+lin likennella'_VK = {s = c67A "likennellä"} ;
+lin likentya'_VK = {s = c52A "likentyä"} ;
+lin likenta'a'_VK = {s = c54A "likentää"} ;
+lin liki_AdvK = {s = c99 "liki"} ;
+lin likika'a'n_AdvK = {s = c99 "likikään"} ;
+lin likimailla_AdvK = {s = c99 "likimailla"} ;
+lin likimaille_AdvK = {s = c99 "likimaille"} ;
+lin likimailta_AdvK = {s = c99 "likimailta"} ;
+lin likimainkaan_AdvK = {s = c99 "likimainkaan"} ;
+lin likimma'ksi_AdvK = {s = c99 "likimmäksi"} ;
+lin likimma's_AdvK = {s = c99 "likimmäs"} ;
+lin likimpa'na'_AdvK = {s = c99 "likimpänä"} ;
+lin likimpa'a'_AdvK = {s = c99 "likimpää"} ;
+lin likima'a'rin_AdvK = {s = c99 "likimäärin"} ;
+lin likin_NK = {s = d36 "likin"} ;
+lin likinna'_AdvK = {s = c99 "likinnä"} ;
+lin likistella'_VK = {s = c67 "likistellä"} ;
+lin likistys_NK = {s = d39 "likistys"} ;
+lin likistya'_VK = {s = c52 "likistyä"} ;
+lin likista'ytya'_VK = {s = c52A "likistäytyä"} ;
+lin likista'a'_VK = {s = c53 "likistää"} ;
+lin likka_NK = {s = d09A "likka"} ;
+lin likoon_AdvK = {s = c99 "likoon"} ;
+lin liksa_NK = {s = d09 "liksa"} ;
+lin likusteri_NK = {s = d06 "likusteri"} ;
+lin likvidi_NK = {s = d05 "likvidi"} ;
+lin likviditeetti_NK = {s = d05A "likviditeetti"} ;
+lin likvidoida_VK = {s = c62 "likvidoida"} ;
+lin likvidointi_NK = {s = d05A "likvidointi"} ;
+lin likvori_NK = {s = d05 "likvori"} ;
+lin liko'o'ri_NK = {s = d06 "likööri"} ;
+lin lila_NK = {s = d09 "lila"} ;
+lin lilja_NK = {s = d09 "lilja"} ;
+lin lilliputti_NK = {s = d05A "lilliputti"} ;
+lin lillia'_VK = {s = c61 "lilliä"} ;
+lin lillua_VK = {s = c52 "lillua"} ;
+lin lillukka_NK = {s = d14A "lillukka"} ;
+lin lima_NK = {s = d09 "lima"} ;
+lin limaantua_VK = {s = c52A "limaantua"} ;
+lin limainen_NK = {s = d38 "limainen"} ;
+lin limakko_NK = {s = d04A "limakko"} ;
+lin limaska_NK = {s = d13 "limaska"} ;
+lin limata_VK = {s = c73 "limata"} ;
+lin limautua_VK = {s = c52A "limautua"} ;
+lin limbo_NK = {s = d01 "limbo"} ;
+lin limboilla_VK = {s = c67 "limboilla"} ;
+lin limboilu_NK = {s = d02 "limboilu"} ;
+lin lime_NK = {s = d08 "lime"} ;
+lin limetti_NK = {s = d05A "limetti"} ;
+lin limiitti_NK = {s = d05A "limiitti"} ;
+lin limikka'in_AdvK = {s = c99 "limikkäin"} ;
+lin limisaumainen_NK = {s = d38 "limisaumainen"} ;
+lin limitin_NK = {s = d33A "limitin"} ;
+lin limittya'_VK = {s = c52A "limittyä"} ;
+lin limitta'in_AdvK = {s = c99 "limittäin"} ;
+lin limitta'inen_NK = {s = d38 "limittäinen"} ;
+lin limitta'a'_VK = {s = c53A "limittää"} ;
+lin limitys_NK = {s = d39 "limitys"} ;
+lin limitysten_AdvK = {s = c99 "limitysten"} ;
+lin limninen_NK = {s = d38 "limninen"} ;
+lin limnologi_NK = {s = d05 "limnologi"} ;
+lin limnologia_NK = {s = d12 "limnologia"} ;
+lin limoittua_VK = {s = c52A "limoittua"} ;
+lin limonaati_NK = {s = d05 "limonaati"} ;
+lin limonadi_NK = {s = d05 "limonadi"} ;
+lin limppari_NK = {s = d06 "limppari"} ;
+lin limppu_NK = {s = d01A "limppu"} ;
+lin limsa_NK = {s = d09 "limsa"} ;
+lin limska_NK = {s = d09 "limska"} ;
+lin limu_NK = {s = d01 "limu"} ;
+lin limusiini_NK = {s = d05 "limusiini"} ;
+lin lineaarinen_NK = {s = d38 "lineaarinen"} ;
+lin lingota_VK = {s = c74A "lingota"} ;
+lin lingvisti_NK = {s = d05 "lingvisti"} ;
+lin lingvistiikka_NK = {s = d09A "lingvistiikka"} ;
+lin lingvistinen_NK = {s = d38 "lingvistinen"} ;
+lin linimentti_NK = {s = d05A "linimentti"} ;
+lin linja_NK = {s = d09 "linja"} ;
+lin linjainen_NK = {s = d38 "linjainen"} ;
+lin linjakas_AK = {s = d41A "linjakas"} ;
+--+ lin linjakkaasti_AdvK = {s = c99 "linjakkaasti"} ;
+lin linjakkuus_NK = {s = d40 "linjakkuus"} ;
+lin linjamentti_NK = {s = d05A "linjamentti"} ;
+lin linjanveto_NK = {s = d01A "linjanveto"} ;
+lin linjata_VK = {s = c73 "linjata"} ;
+lin linjaton_NK = {s = d34A "linjaton"} ;
+lin linjaus_NK = {s = d39 "linjaus"} ;
+lin linjoittaa_VK = {s = c53A "linjoittaa"} ;
+lin linjuri_NK = {s = d06 "linjuri"} ;
+lin linkata_VK = {s = c73A "linkata"} ;
+lin linkitta'a'_VK = {s = c53A "linkittää"} ;
+lin linkitys_NK = {s = d39 "linkitys"} ;
+lin linkki_NK = {s = d05A "linkki"} ;
+lin linkku_NK = {s = d01A "linkku"} ;
+lin linko_NK = {s = d01A "linko"} ;
+lin linkous_NK = {s = d39 "linkous"} ;
+lin linkoutua_VK = {s = c52A "linkoutua"} ;
+lin linkuttaa_VK = {s = c53A "linkuttaa"} ;
+lin linna_NK = {s = d09 "linna"} ;
+lin linnake_NK = {s = d48A "linnake"} ;
+lin linni_NK = {s = d05 "linni"} ;
+lin linnoite_NK = {s = d48A "linnoite"} ;
+lin linnoittaa_VK = {s = c53A "linnoittaa"} ;
+lin linnoittautua_VK = {s = c52A "linnoittautua"} ;
+lin linnoittua_VK = {s = c52A "linnoittua"} ;
+lin linnoitus_NK = {s = d39 "linnoitus"} ;
+lin linnustaa_VK = {s = c53 "linnustaa"} ;
+lin linnustaja_NK = {s = d10 "linnustaja"} ;
+lin linnusto_NK = {s = d02 "linnusto"} ;
+lin linnustus_NK = {s = d39 "linnustus"} ;
+lin lino_NK = {s = d01 "lino"} ;
+lin linoleumi_NK = {s = d05 "linoleumi"} ;
+lin linoli_NK = {s = d06 "linoli"} ;
+lin linssi_NK = {s = d05 "linssi"} ;
+lin linssisto'_NK = {s = d01 "linssistö"} ;
+lin lintallaan_AdvK = {s = c99 "lintallaan"} ;
+lin lintalleen_AdvK = {s = c99 "lintalleen"} ;
+lin lintassa_AdvK = {s = c99 "lintassa"} ;
+lin lintsaaja_NK = {s = d10 "lintsaaja"} ;
+lin lintsari_NK = {s = d06 "lintsari"} ;
+lin lintsata_VK = {s = c73 "lintsata"} ;
+lin lintsaus_NK = {s = d39 "lintsaus"} ;
+lin linttaan_AdvK = {s = c99 "linttaan"} ;
+lin lintu_NK = {s = d01A "lintu"} ;
+lin lintunen_NK = {s = d38 "lintunen"} ;
+lin lintuniisikangas_NK = {s = d41A "lintuniisikangas"} ;
+lin liossa_AdvK = {s = c99 "liossa"} ;
+lin liosta_AdvK = {s = c99 "liosta"} ;
+lin liota_VK = {s = c74A "liota"} ;
+lin liotella_VK = {s = c67A "liotella"} ;
+lin liottaa_VK = {s = c53A "liottaa"} ;
+lin liotus_NK = {s = d39 "liotus"} ;
+lin lipaista_VK = {s = c66 "lipaista"} ;
+lin lipaisu_NK = {s = d02 "lipaisu"} ;
+lin lipallinen_NK = {s = d38 "lipallinen"} ;
+lin lipare_NK = {s = d48 "lipare"} ;
+lin lipas_NK = {s = d41A "lipas"} ;
+lin lipasto_NK = {s = d02 "lipasto"} ;
+lin lipeinen_NK = {s = d38 "lipeinen"} ;
+lin liperi_1_NK = {s = d06 "liperi"} ;
+lin liperi_2_NK = {s = d06 "liperi"} ;
+--? lin liperit_NK = {s = d06 "liperit"} ;
+lin lipettiin_AdvK = {s = c99 "lipettiin"} ;
+lin lipevyys_NK = {s = d40 "lipevyys"} ;
+lin lipeva'_AK = {s = d10 "lipevä"} ;
+--+ lin lipeva'sti_AdvK = {s = c99 "lipevästi"} ;
+lin lipea'_NK = {s = d15 "lipeä"} ;
+lin lipea'inen_NK = {s = d38 "lipeäinen"} ;
+lin lipidi_NK = {s = d05 "lipidi"} ;
+lin lipilaari_NK = {s = d05 "lipilaari"} ;
+lin lipitta'a'_VK = {s = c53A "lipittää"} ;
+lin lipitys_NK = {s = d39 "lipitys"} ;
+lin liplattaa_VK = {s = c53A "liplattaa"} ;
+lin liplatus_NK = {s = d39 "liplatus"} ;
+lin lipoa_VK = {s = c52A "lipoa"} ;
+lin lipoidi_NK = {s = d05 "lipoidi"} ;
+lin lipokas_NK = {s = d41A "lipokas"} ;
+lin lipota_VK = {s = c74A "lipota"} ;
+lin lippa_NK = {s = d09A "lippa"} ;
+lin lippi_NK = {s = d05A "lippi"} ;
+lin lippis_NK = {s = d39 "lippis"} ;
+lin lippo_NK = {s = d01A "lippo"} ;
+lin lippu_NK = {s = d01A "lippu"} ;
+lin lippue_NK = {s = d48 "lippue"} ;
+lin lippunen_NK = {s = d38 "lippunen"} ;
+lin lipsahdella_VK = {s = c67A "lipsahdella"} ;
+lin lipsahdus_NK = {s = d39 "lipsahdus"} ;
+lin lipsahduttaa_VK = {s = c53A "lipsahduttaa"} ;
+lin lipsahtaa_VK = {s = c53A "lipsahtaa"} ;
+lin lipsahtelu_NK = {s = d02 "lipsahtelu"} ;
+lin lipsaus_NK = {s = d39 "lipsaus"} ;
+lin lipsauttaa_VK = {s = c53A "lipsauttaa"} ;
+lin lipsua_VK = {s = c52 "lipsua"} ;
+lin lipua_VK = {s = c52A "lipua"} ;
+lin lipuke_NK = {s = d48A "lipuke"} ;
+lin liputtaa_VK = {s = c53A "liputtaa"} ;
+lin liputus_NK = {s = d39 "liputus"} ;
+lin lirahdella_VK = {s = c67A "lirahdella"} ;
+lin lirahdus_NK = {s = d39 "lirahdus"} ;
+lin lirahtaa_VK = {s = c53A "lirahtaa"} ;
+lin liraus_NK = {s = d39 "liraus"} ;
+lin lirautella_VK = {s = c67A "lirautella"} ;
+lin lirauttaa_VK = {s = c53A "lirauttaa"} ;
+lin liri_NK = {s = d05 "liri"} ;
+lin lirina'_NK = {s = d12 "lirinä"} ;
+lin lirista'_VK = {s = c66 "liristä"} ;
+lin liritta'a'_VK = {s = c53A "lirittää"} ;
+lin liritys_NK = {s = d39 "liritys"} ;
+lin liria'_VK = {s = c61 "liriä"} ;
+lin lirkutella_VK = {s = c67A "lirkutella"} ;
+lin lirkuttaa_VK = {s = c53A "lirkuttaa"} ;
+lin lirkuttelu_NK = {s = d02 "lirkuttelu"} ;
+lin lirkutus_NK = {s = d39 "lirkutus"} ;
+lin liro_NK = {s = d01 "liro"} ;
+lin lirputella_VK = {s = c67A "lirputella"} ;
+lin lirputtaa_VK = {s = c53A "lirputtaa"} ;
+lin liru_NK = {s = d01 "liru"} ;
+lin lirua_VK = {s = c52 "lirua"} ;
+lin lirunlaru_NK = {s = d01 "lirunlaru"} ;
+lin liruttaa_VK = {s = c53A "liruttaa"} ;
+lin lirutus_NK = {s = d39 "lirutus"} ;
+lin lisensiaatti_NK = {s = d05A "lisensiaatti"} ;
+lin lisensioida_VK = {s = c62 "lisensioida"} ;
+lin lisensiointi_NK = {s = d05A "lisensiointi"} ;
+lin lisensoida_VK = {s = c62 "lisensoida"} ;
+lin lisensointi_NK = {s = d05A "lisensointi"} ;
+lin lisenssi_NK = {s = d05 "lisenssi"} ;
+lin lisko_1_NK = {s = d01 "lisko"} ;
+lin lisko_2_NK = {s = d01 "lisko"} ;
+lin lista_NK = {s = d09 "lista"} ;
+lin listake_NK = {s = d48A "listake"} ;
+lin listata_VK = {s = c73 "listata"} ;
+lin listaus_NK = {s = d39 "listaus"} ;
+lin listauttaa_VK = {s = c53A "listauttaa"} ;
+lin listautua_VK = {s = c52A "listautua"} ;
+lin listia'_VK = {s = c61 "listiä"} ;
+lin listoittaa_VK = {s = c53A "listoittaa"} ;
+lin listoitus_NK = {s = d39 "listoitus"} ;
+lin lisuke_NK = {s = d48A "lisuke"} ;
+lin lisa'_NK = {s = d10 "lisä"} ;
+lin lisa'aika_NK = {s = d09A "lisäaika"} ;
+lin lisa'illa'_VK = {s = c67 "lisäillä"} ;
+lin lisa'juuri_NK = {s = d26 "lisäjuuri"} ;
+lin lisa'ke_NK = {s = d48A "lisäke"} ;
+lin lisa'ksi_AdvK = {s = c99 "lisäksi"} ;
+lin lisa'lyo'ntisyys_NK = {s = d40 "lisälyöntisyys"} ;
+lin lisa'ta'_VK = {s = c73 "lisätä"} ;
+lin lisa'ys_NK = {s = d39 "lisäys"} ;
+lin lisa'ytya'_VK = {s = c52A "lisäytyä"} ;
+lin lisa'a'_AdvK = {s = c99 "lisää"} ;
+lin lisa'a'ntyvyys_NK = {s = d40 "lisääntyvyys"} ;
+lin lisa'a'ntya'_VK = {s = c52A "lisääntyä"} ;
+lin litania_NK = {s = d12 "litania"} ;
+lin liti_NK = {s = d05 "liti"} ;
+lin litina'_NK = {s = d12 "litinä"} ;
+lin litistyksiin_AdvK = {s = c99 "litistyksiin"} ;
+lin litistyksissa'_AdvK = {s = c99 "litistyksissä"} ;
+lin litistyma'_NK = {s = d10 "litistymä"} ;
+lin litistys_NK = {s = d39 "litistys"} ;
+lin litistya'_VK = {s = c52 "litistyä"} ;
+lin litista'_VK = {s = c66 "litistä"} ;
+lin litista'a'_VK = {s = c53 "litistää"} ;
+lin litium_NK = {s = d05 "litium"} ;
+lin litkia'_VK = {s = c61 "litkiä"} ;
+lin litku_NK = {s = d01 "litku"} ;
+lin lito_NK = {s = d01 "lito"} ;
+lin litografia_NK = {s = d12 "litografia"} ;
+lin litografinen_NK = {s = d38 "litografinen"} ;
+lin litra_NK = {s = d09 "litra"} ;
+lin litroittain_AdvK = {s = c99 "litroittain"} ;
+lin litsa_NK = {s = d09 "litsa"} ;
+lin litsahdella_VK = {s = c67A "litsahdella"} ;
+lin litsahtaa_VK = {s = c53A "litsahtaa"} ;
+lin litsi_1_NK = {s = d05 "litsi"} ;
+lin litsi_2_NK = {s = d05 "litsi"} ;
+lin littera_NK = {s = d12 "littera"} ;
+lin litteroida_VK = {s = c62 "litteroida"} ;
+lin litteys_NK = {s = d40 "litteys"} ;
+lin littea'_NK = {s = d15 "litteä"} ;
+lin litu_NK = {s = d01A "litu"} ;
+lin litukka_NK = {s = d14A "litukka"} ;
+lin liturgi_NK = {s = d05 "liturgi"} ;
+lin liturgia_NK = {s = d12 "liturgia"} ;
+lin liturginen_NK = {s = d38 "liturginen"} ;
+lin lituskainen_NK = {s = d38 "lituskainen"} ;
+lin liudennus_NK = {s = d39 "liudennus"} ;
+lin liudentaa_VK = {s = c54A "liudentaa"} ;
+lin liudentua_VK = {s = c52A "liudentua"} ;
+lin liueta_VK = {s = c72A "liueta"} ;
+lin liukas_AK = {s = d41A "liukas"} ;
+lin liukastaa_VK = {s = c53 "liukastaa"} ;
+lin liukaste_NK = {s = d48 "liukaste"} ;
+lin liukastella_VK = {s = c67 "liukastella"} ;
+lin liukastua_VK = {s = c52 "liukastua"} ;
+lin liukastus_NK = {s = d39 "liukastus"} ;
+lin liukastuttaa_VK = {s = c53A "liukastuttaa"} ;
+lin liukenematon_NK = {s = d34A "liukenematon"} ;
+lin liukenemattomuus_NK = {s = d40 "liukenemattomuus"} ;
+lin liukenevuus_NK = {s = d40 "liukenevuus"} ;
+--+ lin liukkaasti_AdvK = {s = c99 "liukkaasti"} ;
+lin liukkaus_NK = {s = d40 "liukkaus"} ;
+lin liukoinen_NK = {s = d38 "liukoinen"} ;
+lin liukoisuus_NK = {s = d40 "liukoisuus"} ;
+lin liuku_NK = {s = d01A "liuku"} ;
+lin liukua_VK = {s = c52A "liukua"} ;
+lin liukuma_NK = {s = d10 "liukuma"} ;
+lin liukuri_NK = {s = d06 "liukuri"} ;
+lin liukuvasti_AdvK = {s = c99 "liukuvasti"} ;
+lin liukuvuus_NK = {s = d40 "liukuvuus"} ;
+lin liuos_NK = {s = d39 "liuos"} ;
+lin liuota_VK = {s = c74A "liuota"} ;
+lin liuote_NK = {s = d48A "liuote"} ;
+lin liuotin_NK = {s = d33A "liuotin"} ;
+lin liuottaa_VK = {s = c53A "liuottaa"} ;
+lin liuotus_NK = {s = d39 "liuotus"} ;
+lin liuska_NK = {s = d09 "liuska"} ;
+lin liuskainen_NK = {s = d38 "liuskainen"} ;
+lin liuske_NK = {s = d48 "liuske"} ;
+lin liuskeinen_NK = {s = d38 "liuskeinen"} ;
+lin liuskoittaa_VK = {s = c53A "liuskoittaa"} ;
+lin liuskoittua_VK = {s = c52A "liuskoittua"} ;
+lin liuta_NK = {s = d09A "liuta"} ;
+lin liu_unta_NK = {s = d09A "liu'unta"} ;
+lin liu_uttaa_VK = {s = c53A "liu'uttaa"} ;
+lin livahtaa_VK = {s = c53A "livahtaa"} ;
+lin livautella_VK = {s = c67A "livautella"} ;
+lin livauttaa_VK = {s = c53A "livauttaa"} ;
+lin live_1_NK = {s = d48A "live"} ;
+lin live_2_AdvK = {s = c99 "live"} ;
+lin liverrella'_VK = {s = c67A "liverrellä"} ;
+lin liverrys_NK = {s = d39 "liverrys"} ;
+lin livertely_NK = {s = d02 "livertely"} ;
+lin liverta'a'_VK = {s = c54A "livertää"} ;
+lin livetta'a'_VK = {s = c53A "livettää"} ;
+lin liveta'_VK = {s = c74A "livetä"} ;
+lin livista'a'_VK = {s = c53 "livistää"} ;
+lin livohkaan_AdvK = {s = c99 "livohkaan"} ;
+lin livree_NK = {s = d20 "livree"} ;
+lin loafer_NK = {s = d06 "loafer"} ;
+lin loata_VK = {s = c73A "loata"} ;
+lin lobata_VK = {s = c73 "lobata"} ;
+lin lobbaaja_NK = {s = d10 "lobbaaja"} ;
+lin lobbailla_VK = {s = c67 "lobbailla"} ;
+lin lobbari_NK = {s = d06 "lobbari"} ;
+lin lobbaus_NK = {s = d39 "lobbaus"} ;
+lin lobbismi_NK = {s = d05 "lobbismi"} ;
+lin lobbisti_NK = {s = d05 "lobbisti"} ;
+lin lobby_NK = {s = d01 "lobby"} ;
+lin lobelia_NK = {s = d12 "lobelia"} ;
+lin loden_NK = {s = d05 "loden"} ;
+lin logaritmi_NK = {s = d05 "logaritmi"} ;
+lin logaritminen_NK = {s = d38 "logaritminen"} ;
+lin logiikka_NK = {s = d14A "logiikka"} ;
+lin logistiikka_1_NK = {s = d09A "logistiikka"} ;
+lin logistiikka_2_NK = {s = d09A "logistiikka"} ;
+lin logistikko_NK = {s = d04A "logistikko"} ;
+lin logo_NK = {s = d01 "logo"} ;
+lin logonomi_NK = {s = d05 "logonomi"} ;
+lin logopedi_NK = {s = d05 "logopedi"} ;
+lin logopedia_NK = {s = d12 "logopedia"} ;
+lin lohduke_NK = {s = d48A "lohduke"} ;
+lin lohdullinen_NK = {s = d38 "lohdullinen"} ;
+lin lohdutella_VK = {s = c67A "lohdutella"} ;
+lin lohduton_NK = {s = d34A "lohduton"} ;
+lin lohduttaa_VK = {s = c53A "lohduttaa"} ;
+lin lohduttautua_VK = {s = c52A "lohduttautua"} ;
+lin lohduttomasti_AdvK = {s = c99 "lohduttomasti"} ;
+lin lohduttomuus_NK = {s = d40 "lohduttomuus"} ;
+lin lohdutus_NK = {s = d39 "lohdutus"} ;
+lin lohestaa_VK = {s = c53 "lohestaa"} ;
+lin lohi_NK = {s = d23 "lohi"} ;
+lin lohjeta_VK = {s = c74A "lohjeta"} ;
+lin lohkaista_VK = {s = c66 "lohkaista"} ;
+lin lohkaisu_NK = {s = d02 "lohkaisu"} ;
+lin lohkare_NK = {s = d48 "lohkare"} ;
+lin lohkareinen_NK = {s = d38 "lohkareinen"} ;
+lin lohkeama_NK = {s = d10 "lohkeama"} ;
+lin lohkeavuus_NK = {s = d40 "lohkeavuus"} ;
+lin lohkeilla_VK = {s = c67 "lohkeilla"} ;
+lin lohko_NK = {s = d01 "lohko"} ;
+lin lohkoa_VK = {s = c52 "lohkoa"} ;
+lin lohkoinen_NK = {s = d38 "lohkoinen"} ;
+lin lohkoontua_VK = {s = c52A "lohkoontua"} ;
+lin lohkoutua_VK = {s = c52A "lohkoutua"} ;
+lin lohtu_NK = {s = d01A "lohtu"} ;
+lin loihtia_VK = {s = c61A "loihtia"} ;
+lin loikata_VK = {s = c73A "loikata"} ;
+lin loikka_NK = {s = d10A "loikka"} ;
+lin loikkari_NK = {s = d06 "loikkari"} ;
+lin loikkaus_NK = {s = d39 "loikkaus"} ;
+lin loikkia_VK = {s = c61A "loikkia"} ;
+lin loikko_NK = {s = d01A "loikko"} ;
+lin loikoa_VK = {s = c52A "loikoa"} ;
+lin loikoilla_VK = {s = c67 "loikoilla"} ;
+lin loikoilu_NK = {s = d02 "loikoilu"} ;
+lin loilottaa_VK = {s = c53A "loilottaa"} ;
+lin loilotus_NK = {s = d39 "loilotus"} ;
+lin loimahtaa_VK = {s = c53A "loimahtaa"} ;
+lin loimi_NK = {s = d25 "loimi"} ;
+lin loiminen_NK = {s = d38 "loiminen"} ;
+lin loimottaa_VK = {s = c53A "loimottaa"} ;
+lin loimotus_NK = {s = d39 "loimotus"} ;
+lin loimu_NK = {s = d01 "loimu"} ;
+lin loimuta_VK = {s = c75 "loimuta"} ;
+lin loimuttaa_VK = {s = c53A "loimuttaa"} ;
+lin loinen_NK = {s = d38 "loinen"} ;
+lin loisia_VK = {s = c61 "loisia"} ;
+lin loiskahdella_VK = {s = c67A "loiskahdella"} ;
+lin loiskahdus_NK = {s = d39 "loiskahdus"} ;
+lin loiskahtaa_VK = {s = c53A "loiskahtaa"} ;
+lin loiskaus_NK = {s = d39 "loiskaus"} ;
+lin loiskauttaa_VK = {s = c53A "loiskauttaa"} ;
+lin loiske_NK = {s = d48 "loiske"} ;
+lin loiskia_VK = {s = c61 "loiskia"} ;
+lin loiskina_NK = {s = d12 "loiskina"} ;
+lin loiskinta_NK = {s = d09A "loiskinta"} ;
+lin loiskua_VK = {s = c52 "loiskua"} ;
+lin loiskuna_NK = {s = d12 "loiskuna"} ;
+lin loiskunta_NK = {s = d09A "loiskunta"} ;
+lin loiskuta_VK = {s = c75 "loiskuta"} ;
+lin loiskutella_VK = {s = c67A "loiskutella"} ;
+lin loiskuttaa_VK = {s = c53A "loiskuttaa"} ;
+lin loistaa_VK = {s = c53 "loistaa"} ;
+lin loistava_AK = {s = d10 "loistava"} ;
+--+ lin loistavasti_AdvK = {s = c99 "loistavasti"} ;
+lin loistavuus_NK = {s = d40 "loistavuus"} ;
+lin loiste_NK = {s = d48 "loiste"} ;
+--+ lin loisteliaasti_AdvK = {s = c99 "loisteliaasti"} ;
+lin loisteliaisuus_NK = {s = d40 "loisteliaisuus"} ;
+lin loistelias_AK = {s = d41 "loistelias"} ;
+lin loisto_NK = {s = d01 "loisto"} ;
+lin loistoaika_NK = {s = d09A "loistoaika"} ;
+lin loistokas_NK = {s = d41A "loistokas"} ;
+lin loitolla_AdvK = {s = c99 "loitolla"} ;
+lin loitolle_AdvK = {s = c99 "loitolle"} ;
+lin loitolta_AdvK = {s = c99 "loitolta"} ;
+lin loitommaksi_AdvK = {s = c99 "loitommaksi"} ;
+lin loitommas_AdvK = {s = c99 "loitommas"} ;
+lin loitompaa_AdvK = {s = c99 "loitompaa"} ;
+lin loitompana_AdvK = {s = c99 "loitompana"} ;
+lin loitonnus_NK = {s = d39 "loitonnus"} ;
+lin loitontaa_VK = {s = c54A "loitontaa"} ;
+lin loitontua_VK = {s = c52A "loitontua"} ;
+lin loitota_VK = {s = c72A "loitota"} ;
+lin loitsia_VK = {s = c61 "loitsia"} ;
+lin loitsu_NK = {s = d01 "loitsu"} ;
+lin loiva_AK = {s = d10 "loiva"} ;
+--+ lin loivasti_AdvK = {s = c99 "loivasti"} ;
+lin loivennus_NK = {s = d39 "loivennus"} ;
+lin loiventaa_VK = {s = c54A "loiventaa"} ;
+lin loiventua_VK = {s = c52A "loiventua"} ;
+lin loiveta_VK = {s = c72 "loiveta"} ;
+lin loivuus_NK = {s = d40 "loivuus"} ;
+lin lojaali_AK = {s = d05 "lojaali"} ;
+lin lojaalinen_AK = {s = d38 "lojaalinen"} ;
+--+ lin lojaalisesti_AdvK = {s = c99 "lojaalisesti"} ;
+--+ lin lojaalisti_AdvK = {s = c99 "lojaalisti"} ;
+lin lojaalisuus_NK = {s = d40 "lojaalisuus"} ;
+lin lojaalius_NK = {s = d40 "lojaalius"} ;
+lin lojahdus_NK = {s = d39 "lojahdus"} ;
+lin lojahtaa_VK = {s = c53A "lojahtaa"} ;
+lin lojaliteetti_NK = {s = d05A "lojaliteetti"} ;
+lin lojua_VK = {s = c52 "lojua"} ;
+lin loka_NK = {s = d10A "loka"} ;
+--+ lin lokaalisesti_AdvK = {s = c99 "lokaalisesti"} ;
+lin lokaalisuus_NK = {s = d40 "lokaalisuus"} ;
+lin lokainen_NK = {s = d38 "lokainen"} ;
+lin lokalisaatio_NK = {s = d03 "lokalisaatio"} ;
+lin lokalisoida_VK = {s = c62 "lokalisoida"} ;
+lin lokalisoitua_VK = {s = c52A "lokalisoitua"} ;
+lin lokari_NK = {s = d06 "lokari"} ;
+lin lokerikko_NK = {s = d04A "lokerikko"} ;
+lin lokero_NK = {s = d02 "lokero"} ;
+lin lokeroida_VK = {s = c62 "lokeroida"} ;
+lin lokeroinen_NK = {s = d38 "lokeroinen"} ;
+lin lokerointi_NK = {s = d05A "lokerointi"} ;
+lin lokeroitua_VK = {s = c52A "lokeroitua"} ;
+lin lokerosto_NK = {s = d01 "lokerosto"} ;
+lin loki_NK = {s = d05 "loki"} ;
+lin lokki_NK = {s = d05A "lokki"} ;
+lin lokoisa_AK = {s = d10 "lokoisa"} ;
+--+ lin lokoisasti_AdvK = {s = c99 "lokoisasti"} ;
+lin lokomotiivi_NK = {s = d05 "lokomotiivi"} ;
+lin loksaa_VK = {s = c78 "loksaa"} ;
+lin loksahdella_VK = {s = c67A "loksahdella"} ;
+lin loksahdus_NK = {s = d39 "loksahdus"} ;
+lin loksahtaa_VK = {s = c53A "loksahtaa"} ;
+lin loksauttaa_VK = {s = c53A "loksauttaa"} ;
+lin lokse_NK = {s = d48 "lokse"} ;
+lin loksua_VK = {s = c52 "loksua"} ;
+lin loksuttaa_VK = {s = c53A "loksuttaa"} ;
+lin lokvatti_NK = {s = d05A "lokvatti"} ;
+lin lolita_NK = {s = d13 "lolita"} ;
+lin loma_NK = {s = d10 "loma"} ;
+lin loma_aika_NK = {s = d09A "loma-aika"} ;
+lin lomaan_AdvK = {s = c99 "lomaan"} ;
+lin lomailija_NK = {s = d12 "lomailija"} ;
+lin lomailla_VK = {s = c67 "lomailla"} ;
+lin lomailu_NK = {s = d02 "lomailu"} ;
+lin lomake_NK = {s = d48A "lomake"} ;
+lin lomakkain_AdvK = {s = c99 "lomakkain"} ;
+lin lomassa_AdvK = {s = c99 "lomassa"} ;
+lin lomasta_AdvK = {s = c99 "lomasta"} ;
+lin lomatusten_AdvK = {s = c99 "lomatusten"} ;
+lin lomauttaa_VK = {s = c53A "lomauttaa"} ;
+lin lomautus_NK = {s = d39 "lomautus"} ;
+lin lomikkain_AdvK = {s = c99 "lomikkain"} ;
+lin lomitse_AdvK = {s = c99 "lomitse"} ;
+lin lomittaa_VK = {s = c53A "lomittaa"} ;
+lin lomittain_AdvK = {s = c99 "lomittain"} ;
+lin lomittainen_NK = {s = d38 "lomittainen"} ;
+lin lomittaja_NK = {s = d10 "lomittaja"} ;
+lin lomittua_VK = {s = c52A "lomittua"} ;
+lin lomitus_NK = {s = d39 "lomitus"} ;
+lin lomitusten_AdvK = {s = c99 "lomitusten"} ;
+lin lommo_NK = {s = d01 "lommo"} ;
+lin lommoilla_VK = {s = c67 "lommoilla"} ;
+lin lommoinen_NK = {s = d38 "lommoinen"} ;
+lin lommoontua_VK = {s = c52A "lommoontua"} ;
+lin lommoutua_VK = {s = c52A "lommoutua"} ;
+lin lompakko_NK = {s = d04A "lompakko"} ;
+lin lompsa_NK = {s = d10 "lompsa"} ;
+lin long_drink_NK = {s = d05 "long drink"} ;
+lin longerrella_VK = {s = c67A "longerrella"} ;
+lin longertaa_VK = {s = c54A "longertaa"} ;
+lin longitudi_NK = {s = d05 "longitudi"} ;
+lin lonka_NK = {s = d10A "lonka"} ;
+lin lonkero_1_NK = {s = d02 "lonkero"} ;
+lin lonkero_2_NK = {s = d02 "lonkero"} ;
+lin lonkeroinen_NK = {s = d38 "lonkeroinen"} ;
+lin lonkka_NK = {s = d10A "lonkka"} ;
+lin lonksahtaa_VK = {s = c53A "lonksahtaa"} ;
+lin lonksua_VK = {s = c52 "lonksua"} ;
+lin lonksuttaa_VK = {s = c53A "lonksuttaa"} ;
+lin lonksutus_NK = {s = d39 "lonksutus"} ;
+lin lonkuttaa_VK = {s = c53A "lonkuttaa"} ;
+lin lonkutus_NK = {s = d39 "lonkutus"} ;
+lin looginen_AK = {s = d38 "looginen"} ;
+--+ lin loogisesti_AdvK = {s = c99 "loogisesti"} ;
+lin loogisuus_NK = {s = d40 "loogisuus"} ;
+lin look_NK = {s = d05 "look"} ;
+lin loosi_NK = {s = d05 "loosi"} ;
+lin loota_NK = {s = d10 "loota"} ;
+lin lootus_NK = {s = d39 "lootus"} ;
+lin lopahtaa_VK = {s = c53A "lopahtaa"} ;
+--? lin loparit_NK = {s = d06 "loparit"} ;
+lin lopen_AdvK = {s = c99 "lopen"} ;
+lin lopetella_VK = {s = c67A "lopetella"} ;
+lin lopettaa_VK = {s = c53A "lopettaa"} ;
+--? lin lopettajaiset_NK = {s = d38 "lopettajaiset"} ;
+lin lopetus_NK = {s = d39 "lopetus"} ;
+lin loppiainen_NK = {s = d38 "loppiainen"} ;
+lin loppiaisaika_NK = {s = d09A "loppiaisaika"} ;
+lin loppu_NK = {s = d01A "loppu"} ;
+lin loppua_VK = {s = c52A "loppua"} ;
+lin loppuaika_NK = {s = d09A "loppuaika"} ;
+lin loppuinen_NK = {s = d38 "loppuinen"} ;
+lin loppukaneetti_NK = {s = d05A "loppukaneetti"} ;
+lin loppumaton_NK = {s = d34A "loppumaton"} ;
+lin loppumattomasti_AdvK = {s = c99 "loppumattomasti"} ;
+lin loppuun_AdvK = {s = c99 "loppuun"} ;
+lin lopuillaan_AdvK = {s = c99 "lopuillaan"} ;
+lin lopuke_NK = {s = d48A "lopuke"} ;
+lin lopuksi_AdvK = {s = c99 "lopuksi"} ;
+lin lopulla_AdvK = {s = c99 "lopulla"} ;
+lin lopullaan_AdvK = {s = c99 "lopullaan"} ;
+lin lopullinen_AK = {s = d38 "lopullinen"} ;
+--+ lin lopullisesti_AdvK = {s = c99 "lopullisesti"} ;
+lin lopullisuus_NK = {s = d40 "lopullisuus"} ;
+lin lopulta_AdvK = {s = c99 "lopulta"} ;
+lin lopussa_AdvK = {s = c99 "lopussa"} ;
+lin loputon_NK = {s = d34A "loputon"} ;
+lin loputtomasti_AdvK = {s = c99 "loputtomasti"} ;
+lin loputtomiin_AdvK = {s = c99 "loputtomiin"} ;
+lin loputtomuus_NK = {s = d40 "loputtomuus"} ;
+lin lorahdus_NK = {s = d39 "lorahdus"} ;
+lin lorahtaa_VK = {s = c53A "lorahtaa"} ;
+lin loraus_NK = {s = d39 "loraus"} ;
+lin lorauttaa_VK = {s = c53A "lorauttaa"} ;
+lin lordi_NK = {s = d05 "lordi"} ;
+lin lordoosi_NK = {s = d05 "lordoosi"} ;
+lin lorina_NK = {s = d12 "lorina"} ;
+lin lorista_VK = {s = c66 "lorista"} ;
+lin lornjetti_NK = {s = d05A "lornjetti"} ;
+lin lorottaa_VK = {s = c53A "lorottaa"} ;
+lin loru_NK = {s = d01 "loru"} ;
+lin loruilla_VK = {s = c67 "loruilla"} ;
+lin lorvailla_VK = {s = c67 "lorvailla"} ;
+lin lorvailu_NK = {s = d02 "lorvailu"} ;
+lin lorvehtia_VK = {s = c61A "lorvehtia"} ;
+lin lorvia_VK = {s = c61 "lorvia"} ;
+lin loska_NK = {s = d10 "loska"} ;
+lin loskaantua_VK = {s = c52A "loskaantua"} ;
+lin loskainen_NK = {s = d38 "loskainen"} ;
+lin losottaa_VK = {s = c53A "losottaa"} ;
+lin lossata_1_VK = {s = c73 "lossata"} ;
+lin lossata_2_VK = {s = c73 "lossata"} ;
+lin lossi_NK = {s = d05 "lossi"} ;
+lin lossiksi_AdvK = {s = c99 "lossiksi"} ;
+lin lotina_NK = {s = d12 "lotina"} ;
+lin lotion_NK = {s = d05 "lotion"} ;
+lin lotista_VK = {s = c66 "lotista"} ;
+lin lotja_NK = {s = d10 "lotja"} ;
+lin lotkauttaa_VK = {s = c53A "lotkauttaa"} ;
+lin lotota_VK = {s = c74A "lotota"} ;
+lin lotrata_VK = {s = c73 "lotrata"} ;
+lin lotta_1_NK = {s = d10A "lotta"} ;
+lin lotta_2_NK = {s = d10A "lotta"} ;
+lin lotto_NK = {s = d01A "lotto"} ;
+lin lottoaja_NK = {s = d10 "lottoaja"} ;
+lin louferi_NK = {s = d06 "louferi"} ;
+lin louhe_NK = {s = d48 "louhe"} ;
+lin louhia_VK = {s = c61 "louhia"} ;
+lin louhikko_NK = {s = d04A "louhikko"} ;
+lin louhikkoinen_NK = {s = d38 "louhikkoinen"} ;
+lin louhimo_NK = {s = d02 "louhimo"} ;
+lin louhinta_NK = {s = d09A "louhinta"} ;
+lin louhos_NK = {s = d39 "louhos"} ;
+lin loukata_VK = {s = c73A "loukata"} ;
+lin loukkaamaton_NK = {s = d34A "loukkaamaton"} ;
+lin loukkaantua_VK = {s = c52A "loukkaantua"} ;
+lin loukkaus_NK = {s = d39 "loukkaus"} ;
+lin loukkautua_VK = {s = c52A "loukkautua"} ;
+lin loukko_NK = {s = d01A "loukko"} ;
+lin loukku_NK = {s = d01A "loukku"} ;
+lin loukuttaa_VK = {s = c53A "loukuttaa"} ;
+lin lounainen_NK = {s = d38 "lounainen"} ;
+lin lounas_NK = {s = d41 "lounas"} ;
+lin lounasaika_NK = {s = d09A "lounasaika"} ;
+lin lounastaa_VK = {s = c53 "lounastaa"} ;
+lin louske_NK = {s = d48 "louske"} ;
+lin louskua_VK = {s = c52 "louskua"} ;
+lin louskutella_VK = {s = c67A "louskutella"} ;
+lin louskuttaa_VK = {s = c53A "louskuttaa"} ;
+lin lovellinen_NK = {s = d38 "lovellinen"} ;
+lin loveta_VK = {s = c74 "loveta"} ;
+lin loveus_NK = {s = d39 "loveus"} ;
+lin lovi_NK = {s = d07 "lovi"} ;
+lin lovinen_NK = {s = d38 "lovinen"} ;
+lin lovittaa_VK = {s = c53A "lovittaa"} ;
+lin lovitus_NK = {s = d39 "lovitus"} ;
+lin lude_NK = {s = d48A "lude"} ;
+lin lueksia_VK = {s = c61 "lueksia"} ;
+lin luennoida_VK = {s = c68 "luennoida"} ;
+lin luennoija_NK = {s = d10 "luennoija"} ;
+lin luennoitsija_NK = {s = d12 "luennoitsija"} ;
+lin luenta_NK = {s = d09A "luenta"} ;
+lin luento_NK = {s = d01A "luento"} ;
+lin lues_NK = {s = d39 "lues"} ;
+lin lueskella_VK = {s = c67 "lueskella"} ;
+lin luetella_VK = {s = c67A "luetella"} ;
+lin luetelma_NK = {s = d10 "luetelma"} ;
+lin luettaa_VK = {s = c53A "luettaa"} ;
+lin luettava_NK = {s = d10 "luettava"} ;
+lin luettavuus_NK = {s = d40 "luettavuus"} ;
+lin luettelo_NK = {s = d02 "luettelo"} ;
+lin luetteloida_VK = {s = c62 "luetteloida"} ;
+lin luettelointi_NK = {s = d05A "luettelointi"} ;
+lin luetuttaa_VK = {s = c53A "luetuttaa"} ;
+lin luhistaa_VK = {s = c53 "luhistaa"} ;
+lin luhistua_VK = {s = c52 "luhistua"} ;
+lin luhistuma_NK = {s = d10 "luhistuma"} ;
+lin luhta_NK = {s = d10A "luhta"} ;
+lin luhtahuitti_NK = {s = d05A "luhtahuitti"} ;
+lin luhti_NK = {s = d05A "luhti"} ;
+lin luihu_AK = {s = d01 "luihu"} ;
+--+ lin luihusti_AdvK = {s = c99 "luihusti"} ;
+lin luikahtaa_VK = {s = c53A "luikahtaa"} ;
+lin luikata_VK = {s = c73A "luikata"} ;
+lin luikauttaa_VK = {s = c53A "luikauttaa"} ;
+lin luikero_NK = {s = d02 "luikero"} ;
+lin luikerrella_VK = {s = c67A "luikerrella"} ;
+lin luikertaa_VK = {s = c54A "luikertaa"} ;
+lin luikka_NK = {s = d10A "luikka"} ;
+lin luikkia_VK = {s = c61A "luikkia"} ;
+lin luiku_NK = {s = d01A "luiku"} ;
+lin luikuri_NK = {s = d06 "luikuri"} ;
+lin luimistaa_VK = {s = c53 "luimistaa"} ;
+lin luimistella_VK = {s = c67 "luimistella"} ;
+lin luimussa_AdvK = {s = c99 "luimussa"} ;
+lin luimuun_AdvK = {s = c99 "luimuun"} ;
+lin luinen_NK = {s = d38 "luinen"} ;
+lin luiru_NK = {s = d01 "luiru"} ;
+lin luiseva_NK = {s = d10 "luiseva"} ;
+lin luiska_NK = {s = d10 "luiska"} ;
+lin luiskahdus_NK = {s = d39 "luiskahdus"} ;
+lin luiskahtaa_VK = {s = c53A "luiskahtaa"} ;
+lin luiskata_VK = {s = c73 "luiskata"} ;
+lin luiskauttaa_VK = {s = c53A "luiskauttaa"} ;
+lin luistaa_VK = {s = c53 "luistaa"} ;
+lin luistattaa_VK = {s = c53A "luistattaa"} ;
+lin luistava_NK = {s = d10 "luistava"} ;
+lin luistelija_NK = {s = d12 "luistelija"} ;
+lin luistella_VK = {s = c67 "luistella"} ;
+lin luistelu_NK = {s = d02 "luistelu"} ;
+lin luisti_NK = {s = d05 "luisti"} ;
+lin luistin_NK = {s = d33 "luistin"} ;
+lin luisto_NK = {s = d01 "luisto"} ;
+lin luistoinen_NK = {s = d38 "luistoinen"} ;
+lin luisu_NK = {s = d01 "luisu"} ;
+lin luisua_VK = {s = c52 "luisua"} ;
+lin luisuttaa_VK = {s = c53A "luisuttaa"} ;
+lin luja_AK = {s = d10 "luja"} ;
+lin lujaa_AdvK = {s = c99 "lujaa"} ;
+lin lujaan_AdvK = {s = c99 "lujaan"} ;
+--+ lin lujaka'tisesti_AdvK = {s = c99 "lujakätisesti"} ;
+lin lujalla_AdvK = {s = c99 "lujalla"} ;
+lin lujalle_AdvK = {s = c99 "lujalle"} ;
+lin lujassa_AdvK = {s = c99 "lujassa"} ;
+lin lujasta_AdvK = {s = c99 "lujasta"} ;
+--+ lin lujasti_AdvK = {s = c99 "lujasti"} ;
+lin lujentaa_VK = {s = c54A "lujentaa"} ;
+lin lujentua_VK = {s = c52A "lujentua"} ;
+lin lujeta_VK = {s = c72 "lujeta"} ;
+lin lujike_NK = {s = d48A "lujike"} ;
+lin lujilla_AdvK = {s = c99 "lujilla"} ;
+lin lujille_AdvK = {s = c99 "lujille"} ;
+lin lujite_NK = {s = d48A "lujite"} ;
+lin lujittaa_VK = {s = c53A "lujittaa"} ;
+lin lujittua_VK = {s = c52A "lujittua"} ;
+lin lujuus_NK = {s = d40 "lujuus"} ;
+lin lukaali_NK = {s = d06 "lukaali"} ;
+lin lukaista_VK = {s = c66 "lukaista"} ;
+lin lukea_VK = {s = c58A "lukea"} ;
+lin lukema_NK = {s = d10 "lukema"} ;
+lin lukematon_NK = {s = d34A "lukematon"} ;
+lin lukeminen_NK = {s = d38 "lukeminen"} ;
+lin lukemisto_NK = {s = d01 "lukemisto"} ;
+lin lukeneisto_NK = {s = d01 "lukeneisto"} ;
+lin lukeneisuus_NK = {s = d40 "lukeneisuus"} ;
+lin lukeutua_VK = {s = c52A "lukeutua"} ;
+lin lukien_AdvK = {s = c99 "lukien"} ;
+lin lukija_NK = {s = d12 "lukija"} ;
+lin lukio_NK = {s = d03 "lukio"} ;
+lin lukita_VK = {s = c69 "lukita"} ;
+lin lukitsin_NK = {s = d33 "lukitsin"} ;
+lin lukittua_VK = {s = c52A "lukittua"} ;
+lin lukitus_NK = {s = d39 "lukitus"} ;
+lin lukkari_NK = {s = d06 "lukkari"} ;
+lin lukkaroida_VK = {s = c62 "lukkaroida"} ;
+lin lukki_NK = {s = d05A "lukki"} ;
+lin lukkiinnuttaa_VK = {s = c53A "lukkiinnuttaa"} ;
+lin lukkiintua_VK = {s = c52A "lukkiintua"} ;
+lin lukkiuttaa_VK = {s = c53A "lukkiuttaa"} ;
+lin lukkiutua_VK = {s = c52A "lukkiutua"} ;
+lin lukkiutuma_NK = {s = d10 "lukkiutuma"} ;
+lin lukkiutumaton_NK = {s = d34A "lukkiutumaton"} ;
+lin lukko_NK = {s = d01A "lukko"} ;
+lin lukkoon_AdvK = {s = c99 "lukkoon"} ;
+lin lukkoutua_VK = {s = c52A "lukkoutua"} ;
+lin lukollinen_NK = {s = d38 "lukollinen"} ;
+lin lukossa_AdvK = {s = c99 "lukossa"} ;
+lin lukosta_AdvK = {s = c99 "lukosta"} ;
+lin luksaatio_NK = {s = d03 "luksaatio"} ;
+lin luksi_NK = {s = d05 "luksi"} ;
+lin luksus_NK = {s = d39 "luksus"} ;
+lin luksuttaa_VK = {s = c53A "luksuttaa"} ;
+lin luku_NK = {s = d01A "luku"} ;
+lin lukuinen_NK = {s = d38 "lukuinen"} ;
+lin lukuisa_AK = {s = d10 "lukuisa"} ;
+--+ lin lukuisasti_AdvK = {s = c99 "lukuisasti"} ;
+--? lin lukuset_NK = {s = d38 "lukuset"} ;
+lin lukuun_ottamatta_AdvK = {s = c99 "lukuun ottamatta"} ;
+lin lulla_NK = {s = d10 "lulla"} ;
+lin lullukka_NK = {s = d14A "lullukka"} ;
+lin lume_NK = {s = d48 "lume"} ;
+lin lumen_NK = {s = d06 "lumen"} ;
+lin lumeta_VK = {s = c74 "lumeta"} ;
+lin lumettaa_VK = {s = c53A "lumettaa"} ;
+lin lumettua_VK = {s = c52A "lumettua"} ;
+lin lumetus_NK = {s = d39 "lumetus"} ;
+lin lumeutua_VK = {s = c52A "lumeutua"} ;
+lin lumi_NK = {s = d25 "lumi"} ;
+lin lumikko_NK = {s = d04A "lumikko"} ;
+lin luminanssi_NK = {s = d05 "luminanssi"} ;
+lin luminen_NK = {s = d38 "luminen"} ;
+lin luminesenssi_NK = {s = d05 "luminesenssi"} ;
+lin lumittaa_VK = {s = c53A "lumittaa"} ;
+lin lumme_NK = {s = d48A "lumme"} ;
+lin lumo_NK = {s = d01 "lumo"} ;
+lin lumoava_NK = {s = d10 "lumoava"} ;
+lin lumoojatar_NK = {s = d32A "lumoojatar"} ;
+lin lumota_VK = {s = c74 "lumota"} ;
+lin lumous_NK = {s = d39 "lumous"} ;
+lin lumoutua_VK = {s = c52A "lumoutua"} ;
+lin lumpeikko_NK = {s = d04A "lumpeikko"} ;
+lin lumpio_NK = {s = d03 "lumpio"} ;
+lin lumppari_NK = {s = d06 "lumppari"} ;
+lin lumppu_NK = {s = d01A "lumppu"} ;
+lin lumpsahtaa_VK = {s = c53A "lumpsahtaa"} ;
+lin lumpsauttaa_VK = {s = c53A "lumpsauttaa"} ;
+lin lunastaa_VK = {s = c53 "lunastaa"} ;
+lin lunastaja_NK = {s = d10 "lunastaja"} ;
+lin lunastus_NK = {s = d39 "lunastus"} ;
+lin lunki_AK = {s = d05 "lunki"} ;
+--+ lin lunkisti_AdvK = {s = c99 "lunkisti"} ;
+--? lin lunnaat_NK = {s = d41 "lunnaat"} ;
+lin lunni_NK = {s = d05 "lunni"} ;
+lin luntata_VK = {s = c73A "luntata"} ;
+lin luntta_NK = {s = d10A "luntta"} ;
+lin lunttaus_NK = {s = d39 "lunttaus"} ;
+lin luntti_NK = {s = d05A "luntti"} ;
+lin lunttu_1_NK = {s = d01A "lunttu"} ;
+lin lunttu_2_NK = {s = d01A "lunttu"} ;
+lin luo_AdvK = {s = c99 "luo"} ;
+lin luoda_VK = {s = c64 "luoda"} ;
+lin luodata_VK = {s = c73A "luodata"} ;
+lin luode_1_NK = {s = d48A "luode"} ;
+lin luode_2_NK = {s = d48A "luode"} ;
+lin luodikko_NK = {s = d04A "luodikko"} ;
+lin luoja_NK = {s = d10 "luoja"} ;
+lin luokallinen_NK = {s = d38 "luokallinen"} ;
+lin luokaton_NK = {s = d34A "luokaton"} ;
+lin luokattomuus_NK = {s = d40 "luokattomuus"} ;
+lin luokitella_VK = {s = c67A "luokitella"} ;
+lin luokittaa_VK = {s = c53A "luokittaa"} ;
+lin luokittelu_NK = {s = d02 "luokittelu"} ;
+lin luokittua_VK = {s = c52A "luokittua"} ;
+lin luokitus_NK = {s = d39 "luokitus"} ;
+lin luokka_1_NK = {s = d10A "luokka"} ;
+lin luokka_2_NK = {s = d10A "luokka"} ;
+lin luokkainen_NK = {s = d38 "luokkainen"} ;
+lin luokkaisuus_NK = {s = d40 "luokkaisuus"} ;
+lin luokki_NK = {s = d05A "luokki"} ;
+lin luoko_NK = {s = d01A "luoko"} ;
+lin luokse_AdvK = {s = c99 "luokse"} ;
+lin luola_NK = {s = d10 "luola"} ;
+lin luolasto_NK = {s = d02 "luolasto"} ;
+lin luoma_NK = {s = d10 "luoma"} ;
+lin luomi_1_NK = {s = d25 "luomi"} ;
+lin luomi_2_NK = {s = d25 "luomi"} ;
+lin luomus_NK = {s = d39 "luomus"} ;
+lin luona_AdvK = {s = c99 "luona"} ;
+lin luonne_NK = {s = d48A "luonne"} ;
+lin luonnehdinta_NK = {s = d09A "luonnehdinta"} ;
+lin luonnehtia_VK = {s = c61A "luonnehtia"} ;
+lin luonnikas_AK = {s = d41A "luonnikas"} ;
+--+ lin luonnikkaasti_AdvK = {s = c99 "luonnikkaasti"} ;
+lin luonnikkuus_NK = {s = d40 "luonnikkuus"} ;
+lin luonnistaa_VK = {s = c53 "luonnistaa"} ;
+lin luonnistua_VK = {s = c52 "luonnistua"} ;
+lin luonnollinen_AK = {s = d38 "luonnollinen"} ;
+--+ lin luonnollisesti_AdvK = {s = c99 "luonnollisesti"} ;
+lin luonnollisuus_NK = {s = d40 "luonnollisuus"} ;
+lin luonnonlaki_NK = {s = d05A "luonnonlaki"} ;
+lin luonnontilainen_NK = {s = d38 "luonnontilainen"} ;
+lin luonnos_NK = {s = d39 "luonnos"} ;
+lin luonnostaan_AdvK = {s = c99 "luonnostaan"} ;
+lin luonnostella_VK = {s = c67 "luonnostella"} ;
+lin luonnostelu_NK = {s = d02 "luonnostelu"} ;
+lin luonnoton_NK = {s = d34A "luonnoton"} ;
+lin luonnottomasti_AdvK = {s = c99 "luonnottomasti"} ;
+lin luonnottomuus_NK = {s = d40 "luonnottomuus"} ;
+lin luonnuttaa_VK = {s = c53A "luonnuttaa"} ;
+lin luontainen_AK = {s = d38 "luontainen"} ;
+--+ lin luontaisesti_AdvK = {s = c99 "luontaisesti"} ;
+--+ lin luonteenomaisesti_AdvK = {s = c99 "luonteenomaisesti"} ;
+lin luonteenomaisuus_NK = {s = d40 "luonteenomaisuus"} ;
+lin luonteeton_NK = {s = d34A "luonteeton"} ;
+lin luonteettomuus_NK = {s = d40 "luonteettomuus"} ;
+lin luonteikas_NK = {s = d41A "luonteikas"} ;
+lin luonteinen_AK = {s = d38 "luonteinen"} ;
+--+ lin luonteisesti_AdvK = {s = c99 "luonteisesti"} ;
+lin luonteisuus_NK = {s = d40 "luonteisuus"} ;
+lin luonteva_AK = {s = d10 "luonteva"} ;
+--+ lin luontevasti_AdvK = {s = c99 "luontevasti"} ;
+lin luontevuus_NK = {s = d40 "luontevuus"} ;
+lin luonti_NK = {s = d05A "luonti"} ;
+lin luonto_NK = {s = d01A "luonto"} ;
+lin luontoinen_NK = {s = d38 "luontoinen"} ;
+lin luontoisuus_NK = {s = d40 "luontoisuus"} ;
+lin luontojaan_AdvK = {s = c99 "luontojaan"} ;
+lin luontua_VK = {s = c52A "luontua"} ;
+lin luopio_NK = {s = d03 "luopio"} ;
+lin luopua_VK = {s = c52A "luopua"} ;
+lin luopumus_NK = {s = d39 "luopumus"} ;
+lin luostari_NK = {s = d06 "luostari"} ;
+lin luota_AdvK = {s = c99 "luota"} ;
+lin luotaantyo'nta'va'_AK = {s = d10 "luotaantyöntävä"} ;
+--+ lin luotaantyo'nta'va'sti_AdvK = {s = c99 "luotaantyöntävästi"} ;
+lin luotella_VK = {s = c67A "luotella"} ;
+lin luotettava_AK = {s = d10 "luotettava"} ;
+--+ lin luotettavasti_AdvK = {s = c99 "luotettavasti"} ;
+lin luotettavuus_NK = {s = d40 "luotettavuus"} ;
+lin luotettu_NK = {s = d01A "luotettu"} ;
+lin luoti_NK = {s = d05A "luoti"} ;
+lin luoto_NK = {s = d01A "luoto"} ;
+lin luotollinen_NK = {s = d38 "luotollinen"} ;
+lin luotottaa_VK = {s = c53A "luotottaa"} ;
+lin luotottaja_NK = {s = d10 "luotottaja"} ;
+lin luototus_NK = {s = d39 "luototus"} ;
+lin luotsailla_VK = {s = c67 "luotsailla"} ;
+lin luotsata_VK = {s = c73 "luotsata"} ;
+lin luotsaus_NK = {s = d39 "luotsaus"} ;
+lin luotsi_NK = {s = d05 "luotsi"} ;
+lin luotta_NK = {s = d10A "luotta"} ;
+lin luottaa_VK = {s = c53A "luottaa"} ;
+lin luottamuksellinen_AK = {s = d38 "luottamuksellinen"} ;
+--+ lin luottamuksellisesti_AdvK = {s = c99 "luottamuksellisesti"} ;
+lin luottamuksellisuus_NK = {s = d40 "luottamuksellisuus"} ;
+lin luottamus_NK = {s = d39 "luottamus"} ;
+lin luottavainen_AK = {s = d38 "luottavainen"} ;
+--+ lin luottavaisesti_AdvK = {s = c99 "luottavaisesti"} ;
+lin luottelu_NK = {s = d02 "luottelu"} ;
+lin luotti_NK = {s = d05A "luotti"} ;
+lin luotto_NK = {s = d01A "luotto"} ;
+lin luova_AK = {s = d10 "luova"} ;
+--+ lin luovasti_AdvK = {s = c99 "luovasti"} ;
+lin luovi_NK = {s = d05 "luovi"} ;
+lin luovia_VK = {s = c61 "luovia"} ;
+lin luovuttaa_VK = {s = c53A "luovuttaa"} ;
+lin luovuttaja_NK = {s = d10 "luovuttaja"} ;
+lin luovuttamaton_NK = {s = d34A "luovuttamaton"} ;
+lin luovutus_NK = {s = d39 "luovutus"} ;
+lin luovuus_NK = {s = d40 "luovuus"} ;
+lin lupa_NK = {s = d10A "lupa"} ;
+lin lupaava_AK = {s = d10 "lupaava"} ;
+--+ lin lupaavasti_AdvK = {s = c99 "lupaavasti"} ;
+lin lupailla_VK = {s = c67 "lupailla"} ;
+lin lupaus_NK = {s = d39 "lupaus"} ;
+lin lupautua_VK = {s = c52A "lupautua"} ;
+lin lupiini_NK = {s = d06 "lupiini"} ;
+lin luppi_NK = {s = d05A "luppi"} ;
+lin luppo_NK = {s = d01A "luppo"} ;
+lin luppoaika_NK = {s = d09A "luppoaika"} ;
+lin lupsahdella_VK = {s = c67A "lupsahdella"} ;
+lin lupsahtaa_VK = {s = c53A "lupsahtaa"} ;
+lin lupsakas_AK = {s = d41A "lupsakas"} ;
+lin lupsakasti_AdvK = {s = c99 "lupsakasti"} ;
+lin lupsakka_NK = {s = d14A "lupsakka"} ;
+--+ lin lupsakkaasti_AdvK = {s = c99 "lupsakkaasti"} ;
+lin lupsakkuus_NK = {s = d40 "lupsakkuus"} ;
+lin lurahtaa_VK = {s = c53A "lurahtaa"} ;
+lin luraus_NK = {s = d39 "luraus"} ;
+lin lurauttaa_VK = {s = c53A "lurauttaa"} ;
+lin luritella_VK = {s = c67A "luritella"} ;
+lin lurittaa_VK = {s = c53A "lurittaa"} ;
+lin luritus_NK = {s = d39 "luritus"} ;
+lin lurjus_NK = {s = d39 "lurjus"} ;
+--+ lin lurjusmaisesti_AdvK = {s = c99 "lurjusmaisesti"} ;
+lin lurjustella_VK = {s = c67 "lurjustella"} ;
+lin lurpalla_AdvK = {s = c99 "lurpalla"} ;
+lin lurpallaan_AdvK = {s = c99 "lurpallaan"} ;
+lin lurpalle_AdvK = {s = c99 "lurpalle"} ;
+lin lurpalleen_AdvK = {s = c99 "lurpalleen"} ;
+lin lurpassa_AdvK = {s = c99 "lurpassa"} ;
+lin lurppaan_AdvK = {s = c99 "lurppaan"} ;
+lin luserni_NK = {s = d05 "luserni"} ;
+lin lusia_VK = {s = c61 "lusia"} ;
+lin lusikallinen_NK = {s = d38 "lusikallinen"} ;
+lin lusikka_NK = {s = d14A "lusikka"} ;
+lin lusikoida_VK = {s = c62 "lusikoida"} ;
+lin lusmuilija_NK = {s = d12 "lusmuilija"} ;
+lin luste_NK = {s = d48 "luste"} ;
+lin lusto_NK = {s = d01 "lusto"} ;
+lin luterilainen_NK = {s = d38 "luterilainen"} ;
+lin luterilaisuus_NK = {s = d40 "luterilaisuus"} ;
+lin luti_NK = {s = d05 "luti"} ;
+lin lutikka_NK = {s = d14A "lutikka"} ;
+lin lutka_NK = {s = d10 "lutka"} ;
+lin lutkuttaa_VK = {s = c53A "lutkuttaa"} ;
+lin lutkutus_NK = {s = d39 "lutkutus"} ;
+lin lutukka_NK = {s = d14A "lutukka"} ;
+lin lutunen_NK = {s = d38 "lutunen"} ;
+lin lutviutua_VK = {s = c52A "lutviutua"} ;
+lin luu_NK = {s = d18 "luu"} ;
+lin luudas_NK = {s = d39 "luudas"} ;
+lin luuhata_VK = {s = c73 "luuhata"} ;
+lin luukku_NK = {s = d01A "luukku"} ;
+lin luukkuunkanto_NK = {s = d01A "luukkuunkanto"} ;
+lin luukuttaa_VK = {s = c53A "luukuttaa"} ;
+lin luulla_VK = {s = c67 "luulla"} ;
+lin luulo_NK = {s = d01 "luulo"} ;
+lin luuloisuus_NK = {s = d40 "luuloisuus"} ;
+lin luulotella_VK = {s = c67A "luulotella"} ;
+lin luulottelu_NK = {s = d02 "luulottelu"} ;
+lin luultava_AK = {s = d10 "luultava"} ;
+--+ lin luultavasti_AdvK = {s = c99 "luultavasti"} ;
+lin luumen_NK = {s = d06 "luumen"} ;
+lin luumu_NK = {s = d01 "luumu"} ;
+lin luuppi_NK = {s = d05A "luuppi"} ;
+lin luurata_VK = {s = c73 "luurata"} ;
+lin luuri_NK = {s = d05 "luuri"} ;
+lin luuseri_NK = {s = d06 "luuseri"} ;
+lin luuska_NK = {s = d10 "luuska"} ;
+lin luusto_NK = {s = d01 "luusto"} ;
+lin luustoinen_NK = {s = d38 "luustoinen"} ;
+lin luuta_NK = {s = d10A "luuta"} ;
+lin luutia_VK = {s = c61A "luutia"} ;
+lin luutnantti_NK = {s = d05A "luutnantti"} ;
+lin luuton_NK = {s = d34A "luuton"} ;
+lin luuttu_1_NK = {s = d01A "luuttu"} ;
+lin luuttu_2_NK = {s = d01A "luuttu"} ;
+lin luutua_VK = {s = c52A "luutua"} ;
+lin luutuneisuus_NK = {s = d40 "luutuneisuus"} ;
+lin luututa_VK = {s = c74A "luututa"} ;
+lin luvallinen_AK = {s = d38 "luvallinen"} ;
+--+ lin luvallisesti_AdvK = {s = c99 "luvallisesti"} ;
+lin luvallistaa_VK = {s = c53 "luvallistaa"} ;
+lin luvallisuus_NK = {s = d40 "luvallisuus"} ;
+lin luvanvaraistaa_VK = {s = c53 "luvanvaraistaa"} ;
+lin luvata_VK = {s = c73A "luvata"} ;
+lin luvaton_NK = {s = d34A "luvaton"} ;
+lin luvattomasti_AdvK = {s = c99 "luvattomasti"} ;
+lin luvattomuus_NK = {s = d40 "luvattomuus"} ;
+lin luvuton_NK = {s = d34A "luvuton"} ;
+lin luvuttomasti_AdvK = {s = c99 "luvuttomasti"} ;
+lin lux_NK = {s = d05 "lux"} ;
+lin lyhde_NK = {s = d48A "lyhde"} ;
+lin lyhenema'_NK = {s = d10 "lyhenemä"} ;
+lin lyhenne_NK = {s = d48A "lyhenne"} ;
+lin lyhennella'_VK = {s = c67A "lyhennellä"} ;
+lin lyhennelma'_NK = {s = d10 "lyhennelmä"} ;
+lin lyhennys_NK = {s = d39 "lyhennys"} ;
+lin lyhentyma'_NK = {s = d10 "lyhentymä"} ;
+lin lyhentya'_VK = {s = c52A "lyhentyä"} ;
+lin lyhenta'ma'to'n_NK = {s = d34A "lyhentämätön"} ;
+lin lyhenta'a'_VK = {s = c54A "lyhentää"} ;
+lin lyheta'_VK = {s = c72 "lyhetä"} ;
+lin LYHKI_NK = {s = d05 "LYHKI"} ;
+lin lyhka'inen_NK = {s = d38 "lyhkäinen"} ;
+lin lyhty_NK = {s = d01A "lyhty"} ;
+lin lyhyeen_AdvK = {s = c99 "lyhyeen"} ;
+lin lyhyelle_AdvK = {s = c99 "lyhyelle"} ;
+lin lyhyella'_AdvK = {s = c99 "lyhyellä"} ;
+lin lyhyelti_AdvK = {s = c99 "lyhyelti"} ;
+lin lyhyenla'nta'_NK = {s = d10A "lyhyenläntä"} ;
+lin lyhyesti_AdvK = {s = c99 "lyhyesti"} ;
+lin lyhyka'inen_AK = {s = d38 "lyhykäinen"} ;
+--+ lin lyhyka'isesti_AdvK = {s = c99 "lyhykäisesti"} ;
+lin lyhyka'isyys_NK = {s = d40 "lyhykäisyys"} ;
+lin lyhyt_NK = {s = d43 "lyhyt"} ;
+--+ lin lyhytja'nnitteisesti_AdvK = {s = c99 "lyhytjännitteisesti"} ;
+--+ lin lyhytja'nteisesti_AdvK = {s = c99 "lyhytjänteisesti"} ;
+--+ lin lyhytna'ko'isesti_AdvK = {s = c99 "lyhytnäköisesti"} ;
+--+ lin lyhytsanaisesti_AdvK = {s = c99 "lyhytsanaisesti"} ;
+lin lyhyys_NK = {s = d40 "lyhyys"} ;
+lin lyijy_NK = {s = d01 "lyijy"} ;
+lin lyijyke_NK = {s = d48A "lyijyke"} ;
+lin lyijytta'a'_VK = {s = c53A "lyijyttää"} ;
+lin lyijyta'_VK = {s = c75 "lyijytä"} ;
+lin lyijyto'n_NK = {s = d34A "lyijytön"} ;
+lin lykkia'_VK = {s = c61A "lykkiä"} ;
+lin lykky_NK = {s = d01A "lykky"} ;
+lin lykka'ys_NK = {s = d39 "lykkäys"} ;
+lin lykka'ytya'_VK = {s = c52A "lykkäytyä"} ;
+lin lykka'a'ntya'_VK = {s = c52A "lykkääntyä"} ;
+lin lyka'sta'a'_VK = {s = c53 "lykästää"} ;
+lin lyka'ta'_VK = {s = c73A "lykätä"} ;
+lin lyllerta'a'_VK = {s = c54A "lyllertää"} ;
+lin lyllero'_NK = {s = d02 "lyllerö"} ;
+lin lyllya'_VK = {s = c52 "lyllyä"} ;
+lin lyly_NK = {s = d01 "lyly"} ;
+lin lylynlykkija'_NK = {s = d12 "lylynlykkijä"} ;
+lin lymfa_NK = {s = d09 "lymfa"} ;
+lin lymfaattinen_NK = {s = d38 "lymfaattinen"} ;
+lin lymfooma_NK = {s = d10 "lymfooma"} ;
+lin lymfosyytti_NK = {s = d05A "lymfosyytti"} ;
+lin lymyilla'_VK = {s = c67 "lymyillä"} ;
+lin lymyta'_VK = {s = c75 "lymytä"} ;
+lin lynkata_VK = {s = c73A "lynkata"} ;
+lin lynkkaus_NK = {s = d39 "lynkkaus"} ;
+lin lypsy_NK = {s = d01 "lypsy"} ;
+lin lypsyinen_NK = {s = d38 "lypsyinen"} ;
+lin lypsa'ja'_NK = {s = d10 "lypsäjä"} ;
+lin lypsa'tta'a'_VK = {s = c53A "lypsättää"} ;
+lin lypsa'tys_NK = {s = d39 "lypsätys"} ;
+lin lypsa'a'_VK = {s = c54 "lypsää"} ;
+lin lyriikka_NK = {s = d14A "lyriikka"} ;
+lin lyseo_NK = {s = d03 "lyseo"} ;
+lin lysoli_NK = {s = d05 "lysoli"} ;
+lin lysteri_NK = {s = d06 "lysteri"} ;
+lin lysti_NK = {s = d05 "lysti"} ;
+lin lystikkyys_NK = {s = d40 "lystikkyys"} ;
+--+ lin lystikka'a'sti_AdvK = {s = c99 "lystikkäästi"} ;
+lin lystika's_AK = {s = d41A "lystikäs"} ;
+lin lysta'ta'_VK = {s = c73 "lystätä"} ;
+lin lysyssa'_AdvK = {s = c99 "lysyssä"} ;
+lin lysyyn_AdvK = {s = c99 "lysyyn"} ;
+lin lysa'hta'a'_VK = {s = c53A "lysähtää"} ;
+lin lytista'a'_VK = {s = c53 "lytistää"} ;
+lin lyttyyn_AdvK = {s = c99 "lyttyyn"} ;
+lin lytyssa'_AdvK = {s = c99 "lytyssä"} ;
+lin lyydi_NK = {s = d05 "lyydi"} ;
+lin lyydila'inen_NK = {s = d38 "lyydiläinen"} ;
+lin lyyhistya'_VK = {s = c52 "lyyhistyä"} ;
+lin lyyhista'a'_VK = {s = c53 "lyyhistää"} ;
+lin lyykistya'_VK = {s = c52 "lyykistyä"} ;
+lin lyykista'a'_VK = {s = c53 "lyykistää"} ;
+lin lyyka'hta'a'_VK = {s = c53A "lyykähtää"} ;
+lin lyyra_NK = {s = d09 "lyyra"} ;
+lin lyyrikko_NK = {s = d04A "lyyrikko"} ;
+lin lyyrinen_AK = {s = d38 "lyyrinen"} ;
+--+ lin lyyrisesti_AdvK = {s = c99 "lyyrisesti"} ;
+lin lyyrisyys_NK = {s = d40 "lyyrisyys"} ;
+lin lyo'da'_VK = {s = c64 "lyödä"} ;
+lin lyo'ja'_NK = {s = d10 "lyöjä"} ;
+lin lyo'ma'to'n_NK = {s = d34A "lyömätön"} ;
+lin lyo'nti_NK = {s = d05A "lyönti"} ;
+lin lyo'ntinen_NK = {s = d38 "lyöntinen"} ;
+lin lyo'ttyma'_NK = {s = d10 "lyöttymä"} ;
+lin lyo'ttya'_VK = {s = c52A "lyöttyä"} ;
+lin lyo'tta'ytya'_VK = {s = c52A "lyöttäytyä"} ;
+lin lyo'tta'a'_VK = {s = c53A "lyöttää"} ;
+lin lyo'ta'tta'a'_VK = {s = c53A "lyötättää"} ;
+lin la'hde_NK = {s = d48A "lähde"} ;
+lin la'hdetta'a'_VK = {s = c53A "lähdettää"} ;
+lin la'hdetys_NK = {s = d39 "lähdetys"} ;
+lin la'heinen_AK = {s = d38 "läheinen"} ;
+--+ lin la'heisesti_AdvK = {s = c99 "läheisesti"} ;
+lin la'heisyys_NK = {s = d40 "läheisyys"} ;
+lin la'hekka'in_AdvK = {s = c99 "lähekkäin"} ;
+lin la'hekka'inen_NK = {s = d38 "lähekkäinen"} ;
+lin la'hekka'isyys_NK = {s = d40 "lähekkäisyys"} ;
+lin la'helle_AdvK = {s = c99 "lähelle"} ;
+lin la'hella'_AdvK = {s = c99 "lähellä"} ;
+lin la'helta'_AdvK = {s = c99 "läheltä"} ;
+lin la'hemmin_AdvK = {s = c99 "lähemmin"} ;
+lin la'hemma'_AdvK = {s = c99 "lähemmä"} ;
+lin la'hemma'ksi_AdvK = {s = c99 "lähemmäksi"} ;
+lin la'hemma's_AdvK = {s = c99 "lähemmäs"} ;
+lin la'hempi_NK = {s = d16A "lähempi"} ;
+lin la'hempa'na'_AdvK = {s = c99 "lähempänä"} ;
+lin la'hempa'a'_AdvK = {s = c99 "lähempää"} ;
+lin la'hennella'_VK = {s = c67A "lähennellä"} ;
+lin la'hentely_NK = {s = d02 "lähentely"} ;
+lin la'hentya'_VK = {s = c52A "lähentyä"} ;
+lin la'henta'ja'_NK = {s = d10 "lähentäjä"} ;
+lin la'henta'a'_VK = {s = c54A "lähentää"} ;
+lin la'hes_AdvK = {s = c99 "lähes"} ;
+lin la'heska'a'n_AdvK = {s = c99 "läheskään"} ;
+lin la'hestulkoon_AdvK = {s = c99 "lähestulkoon"} ;
+lin la'hestulkoonkaan_AdvK = {s = c99 "lähestulkoonkaan"} ;
+lin la'hestya'_VK = {s = c52 "lähestyä"} ;
+lin la'hete_NK = {s = d48A "lähete"} ;
+lin la'hetella'_VK = {s = c67A "lähetellä"} ;
+lin la'hetin_NK = {s = d33A "lähetin"} ;
+lin la'hetti_NK = {s = d05A "lähetti"} ;
+lin la'hettila's_NK = {s = d41 "lähettiläs"} ;
+lin la'hettyville_AdvK = {s = c99 "lähettyville"} ;
+lin la'hettyvilla'_AdvK = {s = c99 "lähettyvillä"} ;
+lin la'hettyvilta'_AdvK = {s = c99 "lähettyviltä"} ;
+lin la'hetta'ja'_NK = {s = d10 "lähettäjä"} ;
+lin la'hetta'mo'_NK = {s = d02 "lähettämö"} ;
+lin la'hetta'a'_VK = {s = c53A "lähettää"} ;
+lin la'hetys_NK = {s = d39 "lähetys"} ;
+lin la'hetysaika_NK = {s = d09A "lähetysaika"} ;
+lin la'hetysten_AdvK = {s = c99 "lähetysten"} ;
+lin la'hetysto'_NK = {s = d01 "lähetystö"} ;
+lin la'heta'_VK = {s = c72 "lähetä"} ;
+lin la'hiaika_NK = {s = d09A "lähiaika"} ;
+lin la'himailla_AdvK = {s = c99 "lähimailla"} ;
+lin la'himaille_AdvK = {s = c99 "lähimaille"} ;
+lin la'himailta_AdvK = {s = c99 "lähimailta"} ;
+lin la'himain_AdvK = {s = c99 "lähimain"} ;
+lin la'himainkaan_AdvK = {s = c99 "lähimainkaan"} ;
+lin la'himmin_AdvK = {s = c99 "lähimmin"} ;
+lin la'himma'inen_NK = {s = d38 "lähimmäinen"} ;
+lin la'himma'ksi_AdvK = {s = c99 "lähimmäksi"} ;
+lin la'himma's_AdvK = {s = c99 "lähimmäs"} ;
+lin la'himpa'na'_AdvK = {s = c99 "lähimpänä"} ;
+lin la'himpa'a'_AdvK = {s = c99 "lähimpää"} ;
+lin la'hin_1_NK = {s = d36 "lähin"} ;
+lin la'hin_2_AdvK = {s = c99 "lähin"} ;
+lin la'hinna'_AdvK = {s = c99 "lähinnä"} ;
+lin la'histo'_NK = {s = d01 "lähistö"} ;
+lin la'hio'_NK = {s = d03 "lähiö"} ;
+lin la'hio'asuminen_NK = {s = d38 "lähiöasuminen"} ;
+lin la'htema'tto'ma'sti_AdvK = {s = c99 "lähtemättömästi"} ;
+lin la'htema'to'n_NK = {s = d34A "lähtemätön"} ;
+lin la'htea'_VK = {s = c60A "lähteä"} ;
+lin la'htien_AdvK = {s = c99 "lähtien"} ;
+lin la'htija'_NK = {s = d12 "lähtijä"} ;
+--? lin la'htia'iset_NK = {s = d38 "lähtiäiset"} ;
+lin la'hto'_NK = {s = d01A "lähtö"} ;
+lin la'hto'aika_NK = {s = d09A "lähtöaika"} ;
+lin la'hto'inen_NK = {s = d38 "lähtöinen"} ;
+lin la'hto'isin_AdvK = {s = c99 "lähtöisin"} ;
+lin la'hto'kohta_NK = {s = d10A "lähtökohta"} ;
+lin la'ike_NK = {s = d48A "läike"} ;
+lin la'ikehtia'_VK = {s = c61A "läikehtiä"} ;
+lin la'ikika's_NK = {s = d41A "läikikäs"} ;
+lin la'ikkya'_VK = {s = c52A "läikkyä"} ;
+lin la'ikka'_NK = {s = d10A "läikkä"} ;
+lin la'ikka'inen_NK = {s = d38 "läikkäinen"} ;
+lin la'ikynta'_NK = {s = d09A "läikyntä"} ;
+lin la'ikytta'a'_VK = {s = c53A "läikyttää"} ;
+lin la'ikytys_NK = {s = d39 "läikytys"} ;
+lin la'ika'hdella'_VK = {s = c67A "läikähdellä"} ;
+lin la'ika'hdys_NK = {s = d39 "läikähdys"} ;
+lin la'ika'hta'a'_VK = {s = c53A "läikähtää"} ;
+lin la'ika'ytta'a'_VK = {s = c53A "läikäyttää"} ;
+lin la'imia'_VK = {s = c61 "läimiä"} ;
+lin la'ima'hdella'_VK = {s = c67A "läimähdellä"} ;
+lin la'ima'hdys_NK = {s = d39 "läimähdys"} ;
+lin la'ima'hta'a'_VK = {s = c53A "läimähtää"} ;
+lin la'ima'ista'_VK = {s = c66 "läimäistä"} ;
+lin la'ima'isy_NK = {s = d02 "läimäisy"} ;
+lin la'ima'ta'_VK = {s = c73 "läimätä"} ;
+lin la'ima'ys_NK = {s = d39 "läimäys"} ;
+lin la'ima'ytella'_VK = {s = c67A "läimäytellä"} ;
+lin la'ima'ytta'a'_VK = {s = c53A "läimäyttää"} ;
+lin la'iske_NK = {s = d48 "läiske"} ;
+lin la'iskika's_NK = {s = d41A "läiskikäs"} ;
+lin la'iskinta'_NK = {s = d09A "läiskintä"} ;
+lin la'iskina'_NK = {s = d12 "läiskinä"} ;
+lin la'iskia'_VK = {s = c61 "läiskiä"} ;
+lin la'iskytella'_VK = {s = c67A "läiskytellä"} ;
+lin la'iskytta'a'_VK = {s = c53A "läiskyttää"} ;
+lin la'iskytys_NK = {s = d39 "läiskytys"} ;
+lin la'iskya'_VK = {s = c52 "läiskyä"} ;
+lin la'iska'_NK = {s = d10 "läiskä"} ;
+lin la'iska'hdella'_VK = {s = c67A "läiskähdellä"} ;
+lin la'iska'hdys_NK = {s = d39 "läiskähdys"} ;
+lin la'iska'htely_NK = {s = d02 "läiskähtely"} ;
+lin la'iska'hta'a'_VK = {s = c53A "läiskähtää"} ;
+lin la'iska'inen_NK = {s = d38 "läiskäinen"} ;
+lin la'iska'ista'_VK = {s = c66 "läiskäistä"} ;
+lin la'iska'ys_NK = {s = d39 "läiskäys"} ;
+lin la'iska'ytella'_VK = {s = c67A "läiskäytellä"} ;
+lin la'iska'ytta'a'_VK = {s = c53A "läiskäyttää"} ;
+lin la'jitta'in_AdvK = {s = c99 "läjittäin"} ;
+lin la'jitta'a'_VK = {s = c53A "läjittää"} ;
+lin la'jitys_NK = {s = d39 "läjitys"} ;
+lin la'ja'_NK = {s = d10 "läjä"} ;
+lin la'ja'hdella'_VK = {s = c67A "läjähdellä"} ;
+lin la'ja'hdys_NK = {s = d39 "läjähdys"} ;
+lin la'ja'hta'a'_VK = {s = c53A "läjähtää"} ;
+lin la'ja'pa'issa'_AdvK = {s = c99 "läjäpäissä"} ;
+lin la'ja'ta'_VK = {s = c73 "läjätä"} ;
+lin la'ja'ys_1_NK = {s = d39 "läjäys"} ;
+lin la'ja'ys_2_NK = {s = d39 "läjäys"} ;
+lin la'ja'ytta'a'_VK = {s = c53A "läjäyttää"} ;
+lin la'kki_NK = {s = d05A "läkki"} ;
+--? lin la'ksia'iset_NK = {s = d38 "läksiäiset"} ;
+lin la'ksy_NK = {s = d01 "läksy"} ;
+lin la'ksytta'a'_VK = {s = c53A "läksyttää"} ;
+lin la'ksytys_NK = {s = d39 "läksytys"} ;
+lin la'ka'hdyksiin_AdvK = {s = c99 "läkähdyksiin"} ;
+lin la'ka'hdyksissa'_AdvK = {s = c99 "läkähdyksissä"} ;
+lin la'ka'hdyksissa'a'n_AdvK = {s = c99 "läkähdyksissään"} ;
+lin la'ka'hdytta'a'_VK = {s = c53A "läkähdyttää"} ;
+lin la'ka'htya'_VK = {s = c52A "läkähtyä"} ;
+lin la'lly_NK = {s = d01 "lälly"} ;
+lin la'lla'ri_NK = {s = d06 "lälläri"} ;
+lin la'mmeta'_VK = {s = c72A "lämmetä"} ;
+lin la'mmike_NK = {s = d48A "lämmike"} ;
+lin la'mmin_NK = {s = d35A "lämmin"} ;
+lin la'mmitella'_VK = {s = c67A "lämmitellä"} ;
+lin la'mmitin_NK = {s = d33A "lämmitin"} ;
+lin la'mmitteinen_NK = {s = d38 "lämmitteinen"} ;
+lin la'mmittely_NK = {s = d02 "lämmittely"} ;
+lin la'mmitta'ja'_NK = {s = d10 "lämmittäjä"} ;
+lin la'mmitta'a'_VK = {s = c53A "lämmittää"} ;
+lin la'mmitys_NK = {s = d39 "lämmitys"} ;
+lin la'mmita'_VK = {s = c75A "lämmitä"} ;
+lin la'mpimikseen_AdvK = {s = c99 "lämpimikseen"} ;
+lin la'mpimilta'a'n_AdvK = {s = c99 "lämpimiltään"} ;
+lin la'mpimyys_NK = {s = d40 "lämpimyys"} ;
+lin la'mpima'inen_NK = {s = d38 "lämpimäinen"} ;
+lin la'mpima'lta'a'n_AdvK = {s = c99 "lämpimältään"} ;
+lin la'mpima'sti_AdvK = {s = c99 "lämpimästi"} ;
+lin la'mpio'_NK = {s = d03 "lämpiö"} ;
+lin la'mpa're_NK = {s = d48 "lämpäre"} ;
+lin la'mpo'_NK = {s = d01A "lämpö"} ;
+lin la'mpo'inen_AK = {s = d38 "lämpöinen"} ;
+--+ lin la'mpo'isesti_AdvK = {s = c99 "lämpöisesti"} ;
+lin la'mpo'laajeneminen_NK = {s = d38 "lämpölaajeneminen"} ;
+lin la'mpo'laajenemiskerroin_NK = {s = d33A "lämpölaajenemiskerroin"} ;
+lin la'mpo'tilakerroin_NK = {s = d33A "lämpötilakerroin"} ;
+lin la'ma'ri_NK = {s = d06 "lämäri"} ;
+lin la'ma'ta'_VK = {s = c73 "lämätä"} ;
+--? lin la'nget_NK = {s = d07A "länget"} ;
+lin la'nkka'ri_NK = {s = d06 "länkkäri"} ;
+lin la'nnemma'ksi_AdvK = {s = c99 "lännemmäksi"} ;
+lin la'nnemma's_AdvK = {s = c99 "lännemmäs"} ;
+lin la'nnempa'na'_AdvK = {s = c99 "lännempänä"} ;
+lin la'nnempa'a'_AdvK = {s = c99 "lännempää"} ;
+lin la'nnettya'_VK = {s = c52A "lännettyä"} ;
+lin la'nsi_NK = {s = d28 "länsi"} ;
+--+ lin la'nsimaisesti_AdvK = {s = c99 "länsimaisesti"} ;
+lin la'nsimaistua_VK = {s = c52 "länsimaistua"} ;
+lin la'nsimaisuus_NK = {s = d40 "länsimaisuus"} ;
+lin la'ntinen_NK = {s = d38 "läntinen"} ;
+lin la'ntistya'_VK = {s = c52 "läntistyä"} ;
+lin la'ntti_NK = {s = d05A "läntti"} ;
+lin la'ntta'a'n_AdvK = {s = c99 "länttään"} ;
+lin la'nta'lleen_AdvK = {s = c99 "läntälleen"} ;
+lin la'nta'lla'a'n_AdvK = {s = c99 "läntällään"} ;
+lin la'nta'ssa'_AdvK = {s = c99 "läntässä"} ;
+lin la'nta'ta'_VK = {s = c73A "läntätä"} ;
+lin la'peensa'_AdvK = {s = c99 "läpeensä"} ;
+lin la'pi_1_AdvK = {s = c99 "läpi"} ;
+lin la'pi_2_NK = {s = d07A "läpi"} ;
+lin la'pikotainen_AK = {s = d38 "läpikotainen"} ;
+--+ lin la'pikotaisesti_AdvK = {s = c99 "läpikotaisesti"} ;
+lin la'pikotaisin_AdvK = {s = c99 "läpikotaisin"} ;
+lin la'pikuultamaton_NK = {s = d34A "läpikuultamaton"} ;
+lin la'pikuultamattomuus_NK = {s = d40 "läpikuultamattomuus"} ;
+lin la'pisa'velletty_NK = {s = d01A "läpisävelletty"} ;
+lin la'pitunkema_NK = {s = d10 "läpitunkema"} ;
+lin la'pitunkematon_NK = {s = d34A "läpitunkematon"} ;
+lin la'pitunkeva_AK = {s = d10 "läpitunkeva"} ;
+--+ lin la'pitunkevasti_AdvK = {s = c99 "läpitunkevasti"} ;
+lin la'pivientikohta_NK = {s = d10A "läpivientikohta"} ;
+lin la'ppa'_1_NK = {s = d10A "läppä"} ;
+lin la'ppa'_2_NK = {s = d10A "läppä"} ;
+lin la'ppa'_3_NK = {s = d10A "läppä"} ;
+lin la'pse_NK = {s = d48 "läpse"} ;
+lin la'psia'_VK = {s = c61 "läpsiä"} ;
+lin la'psytella'_VK = {s = c67A "läpsytellä"} ;
+lin la'psytta'a'_VK = {s = c53A "läpsyttää"} ;
+lin la'psytys_NK = {s = d39 "läpsytys"} ;
+lin la'psya'_VK = {s = c52 "läpsyä"} ;
+lin la'psa'hdella'_VK = {s = c67A "läpsähdellä"} ;
+lin la'psa'hdys_NK = {s = d39 "läpsähdys"} ;
+lin la'psa'hta'a'_VK = {s = c53A "läpsähtää"} ;
+lin la'psa'ys_NK = {s = d39 "läpsäys"} ;
+lin la'psa'ytta'a'_VK = {s = c53A "läpsäyttää"} ;
+lin la'psa'ytys_NK = {s = d39 "läpsäytys"} ;
+lin la'psa'a'_VK = {s = c78 "läpsää"} ;
+lin la'pyska'_NK = {s = d13 "läpyskä"} ;
+lin la'pytta'a'_VK = {s = c53A "läpyttää"} ;
+lin la'pytys_NK = {s = d39 "läpytys"} ;
+lin la'pa'isema'tto'myys_NK = {s = d40 "läpäisemättömyys"} ;
+lin la'pa'isema'to'n_NK = {s = d34A "läpäisemätön"} ;
+lin la'pa'isevyys_NK = {s = d40 "läpäisevyys"} ;
+lin la'pa'ista'_VK = {s = c66 "läpäistä"} ;
+lin la'pa'isy_NK = {s = d02 "läpäisy"} ;
+lin la'pa'llinen_NK = {s = d38 "läpällinen"} ;
+lin la'pa'tta'a'_VK = {s = c53A "läpättää"} ;
+lin la'pa'tys_NK = {s = d39 "läpätys"} ;
+lin la'pa'ytta'a'_VK = {s = c53A "läpäyttää"} ;
+lin la'rvi_NK = {s = d05 "lärvi"} ;
+lin la'si_NK = {s = d05 "läsi"} ;
+lin la'sia'_VK = {s = c61 "läsiä"} ;
+lin la'ski_NK = {s = d05 "läski"} ;
+lin la'skimooses_NK = {s = d39 "läskimooses"} ;
+lin la'skinen_NK = {s = d38 "läskinen"} ;
+lin la'sna'_AdvK = {s = c99 "läsnä"} ;
+lin la'ssy_NK = {s = d01 "lässy"} ;
+lin la'ssytta'ja'_NK = {s = d10 "lässyttäjä"} ;
+lin la'ssytta'a'_VK = {s = c53A "lässyttää"} ;
+lin la'ssytys_NK = {s = d39 "lässytys"} ;
+lin la'ssa'hta'a'_VK = {s = c53A "lässähtää"} ;
+lin la'tina'_NK = {s = d12 "lätinä"} ;
+lin la'tista'_VK = {s = c66 "lätistä"} ;
+lin la'tkinta'_NK = {s = d09A "lätkintä"} ;
+lin la'tkia'_VK = {s = c61 "lätkiä"} ;
+lin la'tka'_NK = {s = d10 "lätkä"} ;
+lin la'tka'ista'_VK = {s = c66 "lätkäistä"} ;
+lin la'tka'ytta'a'_VK = {s = c53A "lätkäyttää"} ;
+lin la'tra'ta'_VK = {s = c73 "läträtä"} ;
+lin la'tsa'_NK = {s = d10 "lätsä"} ;
+lin la'tsa'hdys_NK = {s = d39 "lätsähdys"} ;
+lin la'tsa'hta'a'_VK = {s = c53A "lätsähtää"} ;
+lin la'tti_1_NK = {s = d05A "lätti"} ;
+lin la'tti_2_NK = {s = d05A "lätti"} ;
+lin la'ttila'inen_NK = {s = d38 "lättiläinen"} ;
+lin la'tty_NK = {s = d01A "lätty"} ;
+lin la'tta'na'_NK = {s = d11 "lättänä"} ;
+lin la'ta'kko'_NK = {s = d04A "lätäkkö"} ;
+lin la'ta'kko'inen_NK = {s = d38 "lätäkköinen"} ;
+lin la'vikko'_NK = {s = d04A "lävikkö"} ;
+lin la'viste_NK = {s = d48 "läviste"} ;
+lin la'vistin_NK = {s = d33 "lävistin"} ;
+lin la'vistys_NK = {s = d39 "lävistys"} ;
+lin la'vista'ja'_NK = {s = d10 "lävistäjä"} ;
+lin la'vista'a'_VK = {s = c53 "lävistää"} ;
+lin la'vitse_AdvK = {s = c99 "lävitse"} ;
+lin la'va'hta'a'_VK = {s = c53A "lävähtää"} ;
+lin la'va'ytta'a'_VK = {s = c53A "läväyttää"} ;
+lin la'a'ha'tta'a'_VK = {s = c53A "läähättää"} ;
+lin la'a'ha'tys_NK = {s = d39 "läähätys"} ;
+lin la'a'ke_NK = {s = d48A "lääke"} ;
+lin la'a'kinna'llinen_NK = {s = d38 "lääkinnällinen"} ;
+lin la'a'kinta'_NK = {s = d09A "lääkintä"} ;
+lin la'a'kitys_NK = {s = d39 "lääkitys"} ;
+lin la'a'kita'_VK = {s = c69 "lääkitä"} ;
+lin la'a'kkeellinen_NK = {s = d38 "lääkkeellinen"} ;
+lin la'a'ka'ri_NK = {s = d06 "lääkäri"} ;
+lin la'a'neitta'in_AdvK = {s = c99 "lääneittäin"} ;
+lin la'a'ni_NK = {s = d05 "lääni"} ;
+lin la'a'ninraja_NK = {s = d09 "lääninraja"} ;
+lin la'a'nitta'a'_VK = {s = c53A "läänittää"} ;
+lin la'a'nitys_NK = {s = d39 "läänitys"} ;
+lin la'a'ppia'_VK = {s = c61A "lääppiä"} ;
+lin la'a'pa'lleen_AdvK = {s = c99 "lääpälleen"} ;
+lin la'a'pa'lla'a'n_AdvK = {s = c99 "lääpällään"} ;
+lin la'a'te_NK = {s = d48A "lääte"} ;
+lin la'a'va'_NK = {s = d10 "läävä"} ;
+lin lo'ho'illa'_VK = {s = c67 "löhöillä"} ;
+lin lo'ho'ily_NK = {s = d02 "löhöily"} ;
+lin lo'ho'ta'_VK = {s = c74 "löhötä"} ;
+lin lo'ka'po'ksy_NK = {s = d01 "lökäpöksy"} ;
+lin lo'ko'tta'a'_VK = {s = c53A "lököttää"} ;
+lin lo'llya'_VK = {s = c52 "löllyä"} ;
+lin lo'llo'_NK = {s = d01 "löllö"} ;
+lin lo'nkytella'_VK = {s = c67A "lönkytellä"} ;
+lin lo'nkytta'a'_VK = {s = c53A "lönkyttää"} ;
+lin lo'ntti_NK = {s = d05A "löntti"} ;
+lin lo'ntystella'_VK = {s = c67 "löntystellä"} ;
+lin lo'ntysta'a'_VK = {s = c53 "löntystää"} ;
+lin lo'peryys_NK = {s = d40 "löperyys"} ;
+lin lo'pero'_AK = {s = d02 "löperö"} ;
+--+ lin lo'pero'sti_AdvK = {s = c99 "löperösti"} ;
+lin lo'pina'_NK = {s = d12 "löpinä"} ;
+lin lo'pista'_VK = {s = c66 "löpistä"} ;
+lin lo'po'_1_NK = {s = d01 "löpö"} ;
+lin lo'po'_2_NK = {s = d01 "löpö"} ;
+lin lo'rppo'_NK = {s = d01A "lörppö"} ;
+lin lo'rpo'tella'_VK = {s = c67A "lörpötellä"} ;
+lin lo'rpo'ttely_NK = {s = d02 "lörpöttely"} ;
+lin lo'rpo'tta'a'_VK = {s = c53A "lörpöttää"} ;
+lin lo'rpo'tys_NK = {s = d39 "lörpötys"} ;
+lin lo'rtsy_NK = {s = d01 "lörtsy"} ;
+lin lo'ssi_1_NK = {s = d05 "lössi"} ;
+lin lo'ssi_2_NK = {s = d05 "lössi"} ;
+lin lo'tko'_NK = {s = d01 "lötkö"} ;
+lin lo'tko'tella'_VK = {s = c67A "lötkötellä"} ;
+lin lo'tko'tta'a'_VK = {s = c53A "lötköttää"} ;
+lin lo'ydo's_NK = {s = d39 "löydös"} ;
+lin lo'yhdytta'a'_VK = {s = c53A "löyhdyttää"} ;
+lin lo'yhennys_NK = {s = d39 "löyhennys"} ;
+lin lo'yhentya'_VK = {s = c52A "löyhentyä"} ;
+lin lo'yhenta'a'_VK = {s = c54A "löyhentää"} ;
+lin lo'yheta'_VK = {s = c72 "löyhetä"} ;
+lin lo'yhka'_NK = {s = d10 "löyhkä"} ;
+lin lo'yhka'ta'_VK = {s = c73 "löyhkätä"} ;
+lin lo'yhtya'_VK = {s = c52A "löyhtyä"} ;
+lin lo'yhytella'_VK = {s = c67A "löyhytellä"} ;
+lin lo'yhytta'a'_VK = {s = c53A "löyhyttää"} ;
+lin lo'yhyys_NK = {s = d40 "löyhyys"} ;
+lin lo'yha'_AK = {s = d10 "löyhä"} ;
+lin lo'yha'hta'a'_VK = {s = c53A "löyhähtää"} ;
+--+ lin lo'yha'sti_AdvK = {s = c99 "löyhästi"} ;
+lin lo'yly_NK = {s = d01 "löyly"} ;
+lin lo'ylynlyo'ma'_NK = {s = d10 "löylynlyömä"} ;
+lin lo'ylytta'a'_VK = {s = c53A "löylyttää"} ;
+lin lo'ylytys_NK = {s = d39 "löylytys"} ;
+lin lo'ysentya'_VK = {s = c52A "löysentyä"} ;
+lin lo'ysenta'a'_VK = {s = c54A "löysentää"} ;
+lin lo'ystytta'a'_VK = {s = c53A "löystyttää"} ;
+lin lo'ystya'_VK = {s = c52 "löystyä"} ;
+lin lo'ysyys_NK = {s = d40 "löysyys"} ;
+lin lo'ysa'_AK = {s = d10 "löysä"} ;
+--+ lin lo'ysa'sti_AdvK = {s = c99 "löysästi"} ;
+lin lo'ysa'ta'_VK = {s = c73 "löysätä"} ;
+lin lo'ytyma'tto'miin_AdvK = {s = c99 "löytymättömiin"} ;
+lin lo'ytyma'tto'missa'_AdvK = {s = c99 "löytymättömissä"} ;
+lin lo'ytya'_VK = {s = c52A "löytyä"} ;
+lin lo'yta'ja'_NK = {s = d10 "löytäjä"} ;
+lin lo'yta'a'_VK = {s = c54A "löytää"} ;
+lin lo'yto'_NK = {s = d01A "löytö"} ;
+lin lo'o'peri_NK = {s = d06 "lööperi"} ;
+lin lo'o'ppi_NK = {s = d05A "lööppi"} ;
+lin ma_AdvK = {s = c99 "ma"} ;
+lin maa_NK = {s = d18 "maa"} ;
+lin maadoittaa_VK = {s = c53A "maadoittaa"} ;
+lin maadoitus_NK = {s = d39 "maadoitus"} ;
+lin maaduttaa_VK = {s = c53A "maaduttaa"} ;
+lin maagi_NK = {s = d05 "maagi"} ;
+lin maagikko_NK = {s = d04A "maagikko"} ;
+lin maaginen_AK = {s = d38 "maaginen"} ;
+--+ lin maagisesti_AdvK = {s = c99 "maagisesti"} ;
+lin maagisuus_NK = {s = d40 "maagisuus"} ;
+--? lin maahanpaniaiset_NK = {s = d38 "maahanpaniaiset"} ;
+lin maahantunkeutuminen_NK = {s = d38 "maahantunkeutuminen"} ;
+lin maaherratar_NK = {s = d32A "maaherratar"} ;
+lin maahikas_NK = {s = d41A "maahikas"} ;
+lin maahinen_NK = {s = d38 "maahinen"} ;
+lin maahockey_NK = {s = d21 "maahockey"} ;
+lin maailmallinen_NK = {s = d38 "maailmallinen"} ;
+lin maailmallistua_VK = {s = c52 "maailmallistua"} ;
+lin maailmallisuus_NK = {s = d40 "maailmallisuus"} ;
+lin maailmanaika_NK = {s = d09A "maailmanaika"} ;
+lin maailmanenna'tysaika_NK = {s = d09A "maailmanennätysaika"} ;
+--+ lin maailmanhistoriallisesti_AdvK = {s = c99 "maailmanhistoriallisesti"} ;
+lin maailmankatsomuksellinen_NK = {s = d38 "maailmankatsomuksellinen"} ;
+lin maailmankolkka_NK = {s = d10A "maailmankolkka"} ;
+--+ lin maailmanlaajuisesti_AdvK = {s = c99 "maailmanlaajuisesti"} ;
+lin maalaamaton_NK = {s = d34A "maalaamaton"} ;
+lin maalaamo_NK = {s = d02 "maalaamo"} ;
+lin maalailla_VK = {s = c67 "maalailla"} ;
+lin maalailu_NK = {s = d02 "maalailu"} ;
+--+ lin maalaisesti_AdvK = {s = c99 "maalaisesti"} ;
+lin maalaisittain_AdvK = {s = c99 "maalaisittain"} ;
+lin maalaismainen_AK = {s = d38 "maalaismainen"} ;
+--+ lin maalaismaisesti_AdvK = {s = c99 "maalaismaisesti"} ;
+lin maalaismaisuus_NK = {s = d40 "maalaismaisuus"} ;
+lin maalaistua_VK = {s = c52 "maalaistua"} ;
+lin maalaisuus_NK = {s = d40 "maalaisuus"} ;
+lin maalaisvoi_NK = {s = d18 "maalaisvoi"} ;
+lin maalata_1_VK = {s = c73 "maalata"} ;
+lin maalata_2_VK = {s = c73 "maalata"} ;
+lin maalauksellinen_AK = {s = d38 "maalauksellinen"} ;
+--+ lin maalauksellisesti_AdvK = {s = c99 "maalauksellisesti"} ;
+lin maalauksellisuus_NK = {s = d40 "maalauksellisuus"} ;
+lin maalaus_1_NK = {s = d39 "maalaus"} ;
+lin maalaus_2_NK = {s = d39 "maalaus"} ;
+lin maalauttaa_VK = {s = c53A "maalauttaa"} ;
+lin maali_1_NK = {s = d05 "maali"} ;
+lin maali_2_NK = {s = d05 "maali"} ;
+lin maalinen_1_NK = {s = d38 "maalinen"} ;
+lin maalinen_2_NK = {s = d38 "maalinen"} ;
+lin maaliskuinen_NK = {s = d38 "maaliskuinen"} ;
+lin maaliton_1_NK = {s = d34A "maaliton"} ;
+lin maaliton_2_NK = {s = d34A "maaliton"} ;
+lin maallikko_NK = {s = d04A "maallikko"} ;
+lin maallinen_NK = {s = d38 "maallinen"} ;
+lin maallistua_VK = {s = c52 "maallistua"} ;
+lin maallisuus_NK = {s = d40 "maallisuus"} ;
+lin maammo_NK = {s = d01 "maammo"} ;
+lin maamo_NK = {s = d01 "maamo"} ;
+lin maanantai_NK = {s = d18 "maanantai"} ;
+lin maanantainen_NK = {s = d38 "maanantainen"} ;
+lin maanantaisin_AdvK = {s = c99 "maanantaisin"} ;
+lin maanikko_NK = {s = d04A "maanikko"} ;
+lin maaninen_NK = {s = d38 "maaninen"} ;
+lin maanitella_VK = {s = c67A "maanitella"} ;
+lin maanittelu_NK = {s = d02 "maanittelu"} ;
+lin maankohoaminen_NK = {s = d38 "maankohoaminen"} ;
+lin maankolkka_NK = {s = d10A "maankolkka"} ;
+lin maankuori_NK = {s = d26 "maankuori"} ;
+lin maanlaki_NK = {s = d05A "maanlaki"} ;
+lin maannos_NK = {s = d39 "maannos"} ;
+lin maannostua_VK = {s = c52 "maannostua"} ;
+lin maannousema_NK = {s = d10 "maannousema"} ;
+lin maanraja_NK = {s = d09 "maanraja"} ;
+lin maantaa_VK = {s = c54A "maantaa"} ;
+lin maapa'hkina'voi_NK = {s = d18 "maapähkinävoi"} ;
+lin maar_AdvK = {s = c99 "maar"} ;
+lin maarin_AdvK = {s = c99 "maarin"} ;
+lin maaru_NK = {s = d01 "maaru"} ;
+lin maasai_NK = {s = d18 "maasai"} ;
+lin maastaveto_NK = {s = d01A "maastaveto"} ;
+lin maasto_NK = {s = d01 "maasto"} ;
+lin maastoinen_NK = {s = d38 "maastoinen"} ;
+lin maastoitse_AdvK = {s = c99 "maastoitse"} ;
+lin maastonkohta_NK = {s = d10A "maastonkohta"} ;
+lin maastouttaa_VK = {s = c53A "maastouttaa"} ;
+lin maastoutua_VK = {s = c52A "maastoutua"} ;
+lin maasturi_NK = {s = d06 "maasturi"} ;
+lin maata_VK = {s = c73A "maata"} ;
+lin maate_AdvK = {s = c99 "maate"} ;
+lin maatiaismainen_NK = {s = d38 "maatiaismainen"} ;
+lin maaton_NK = {s = d34A "maaton"} ;
+lin maattaa_VK = {s = c56A "maattaa"} ;
+lin maatto_NK = {s = d01A "maatto"} ;
+lin maatua_VK = {s = c52A "maatua"} ;
+lin machiavellilainen_NK = {s = d38 "machiavellilainen"} ;
+lin machiavellismi_NK = {s = d05 "machiavellismi"} ;
+lin machiavellisti_NK = {s = d05 "machiavellisti"} ;
+lin machiavellistinen_NK = {s = d38 "machiavellistinen"} ;
+lin macho_NK = {s = d01 "macho"} ;
+lin machoilla_VK = {s = c67 "machoilla"} ;
+lin machoilu_NK = {s = d02 "machoilu"} ;
+lin madallus_NK = {s = d39 "madallus"} ;
+lin madaltaa_VK = {s = c54A "madaltaa"} ;
+lin madaltua_VK = {s = c52A "madaltua"} ;
+lin madame_NK = {s = d08 "madame"} ;
+lin made_NK = {s = d48A "made"} ;
+lin madeira_NK = {s = d13 "madeira"} ;
+lin madella_VK = {s = c67A "madella"} ;
+lin madonna_NK = {s = d10 "madonna"} ;
+lin madonsyo'ma'_NK = {s = d10 "madonsyömä"} ;
+lin madottaa_VK = {s = c53A "madottaa"} ;
+lin madotus_NK = {s = d39 "madotus"} ;
+lin madras_NK = {s = d39 "madras"} ;
+lin madrigaali_NK = {s = d05 "madrigaali"} ;
+lin maestoso_AdvK = {s = c99 "maestoso"} ;
+lin maestro_NK = {s = d02 "maestro"} ;
+lin mafia_NK = {s = d12 "mafia"} ;
+lin mafioso_NK = {s = d01 "mafioso"} ;
+lin magia_NK = {s = d12 "magia"} ;
+lin magiikka_NK = {s = d14A "magiikka"} ;
+lin magma_NK = {s = d09 "magma"} ;
+lin magmaattinen_NK = {s = d38 "magmaattinen"} ;
+lin magna_NK = {s = d09 "magna"} ;
+lin magnaatti_NK = {s = d05A "magnaatti"} ;
+lin magneetiton_NK = {s = d34A "magneetiton"} ;
+lin magneetittomuus_NK = {s = d40 "magneetittomuus"} ;
+lin magneetti_NK = {s = d05A "magneetti"} ;
+lin magneettinen_AK = {s = d38 "magneettinen"} ;
+--+ lin magneettisesti_AdvK = {s = c99 "magneettisesti"} ;
+lin magneettisuus_NK = {s = d40 "magneettisuus"} ;
+lin magneetto_NK = {s = d01A "magneetto"} ;
+lin magnesiitti_NK = {s = d05A "magnesiitti"} ;
+lin magnesium_NK = {s = d05 "magnesium"} ;
+lin magnetiitti_NK = {s = d05A "magnetiitti"} ;
+lin magnetismi_NK = {s = d05 "magnetismi"} ;
+lin magnetisoida_VK = {s = c62 "magnetisoida"} ;
+lin magnetisointi_NK = {s = d05A "magnetisointi"} ;
+lin magnetisoitua_VK = {s = c52A "magnetisoitua"} ;
+lin magnetofoni_NK = {s = d05 "magnetofoni"} ;
+lin magnetoida_VK = {s = c62 "magnetoida"} ;
+lin magnetointi_NK = {s = d05A "magnetointi"} ;
+lin magnetoitua_VK = {s = c52A "magnetoitua"} ;
+lin magnetoitumaton_NK = {s = d34A "magnetoitumaton"} ;
+lin magnolia_NK = {s = d12 "magnolia"} ;
+lin maha_NK = {s = d09 "maha"} ;
+lin mahahaava_NK = {s = d09 "mahahaava"} ;
+lin mahainen_NK = {s = d38 "mahainen"} ;
+lin mahakas_NK = {s = d41A "mahakas"} ;
+lin mahatma_NK = {s = d11 "mahatma"} ;
+lin mahdikas_AK = {s = d41A "mahdikas"} ;
+--+ lin mahdikkaasti_AdvK = {s = c99 "mahdikkaasti"} ;
+lin mahdikkuus_NK = {s = d40 "mahdikkuus"} ;
+lin mahdollinen_AK = {s = d38 "mahdollinen"} ;
+--+ lin mahdollisesti_AdvK = {s = c99 "mahdollisesti"} ;
+lin mahdollistaa_VK = {s = c53 "mahdollistaa"} ;
+lin mahdollistua_VK = {s = c52 "mahdollistua"} ;
+lin mahdollisuus_NK = {s = d40 "mahdollisuus"} ;
+lin mahdoton_NK = {s = d34A "mahdoton"} ;
+lin mahdottomasti_AdvK = {s = c99 "mahdottomasti"} ;
+lin mahdottomuus_NK = {s = d40 "mahdottomuus"} ;
+lin mahduttaa_VK = {s = c53A "mahduttaa"} ;
+lin mahis_NK = {s = d39 "mahis"} ;
+lin mahjong_NK = {s = d05 "mahjong"} ;
+lin mahla_NK = {s = d09 "mahla"} ;
+lin mahlainen_NK = {s = d38 "mahlainen"} ;
+lin maho_NK = {s = d01 "maho"} ;
+lin mahonia_NK = {s = d12 "mahonia"} ;
+lin mahonki_NK = {s = d05A "mahonki"} ;
+lin mahonkinen_NK = {s = d38 "mahonkinen"} ;
+lin mahorkka_NK = {s = d14A "mahorkka"} ;
+lin mahous_NK = {s = d40 "mahous"} ;
+lin mahtaa_VK = {s = c56A "mahtaa"} ;
+lin mahtailevasti_AdvK = {s = c99 "mahtailevasti"} ;
+lin mahtailija_NK = {s = d12 "mahtailija"} ;
+lin mahtailla_VK = {s = c67 "mahtailla"} ;
+lin mahtailu_NK = {s = d02 "mahtailu"} ;
+lin mahtaja_NK = {s = d10 "mahtaja"} ;
+lin mahtava_AK = {s = d10 "mahtava"} ;
+--+ lin mahtavasti_AdvK = {s = c99 "mahtavasti"} ;
+lin mahtavuus_NK = {s = d40 "mahtavuus"} ;
+lin mahti_NK = {s = d05A "mahti"} ;
+lin mahtipontinen_AK = {s = d38 "mahtipontinen"} ;
+--+ lin mahtipontisesti_AdvK = {s = c99 "mahtipontisesti"} ;
+lin mahtipontisuus_NK = {s = d40 "mahtipontisuus"} ;
+lin mahtua_VK = {s = c52A "mahtua"} ;
+lin maihari_NK = {s = d06 "maihari"} ;
+lin maihin_AdvK = {s = c99 "maihin"} ;
+lin maija_NK = {s = d09 "maija"} ;
+lin maikka_NK = {s = d09A "maikka"} ;
+lin maikki_NK = {s = d05A "maikki"} ;
+lin maila_NK = {s = d09 "maila"} ;
+lin mailanen_NK = {s = d38 "mailanen"} ;
+lin maileri_NK = {s = d06 "maileri"} ;
+lin maili_1_NK = {s = d05 "maili"} ;
+lin maili_2_NK = {s = d05 "maili"} ;
+lin main_AdvK = {s = c99 "main"} ;
+lin mainari_NK = {s = d06 "mainari"} ;
+lin maine_NK = {s = d48 "maine"} ;
+lin mainehikas_NK = {s = d41A "mainehikas"} ;
+lin maineikas_AK = {s = d41A "maineikas"} ;
+--+ lin maineikkaasti_AdvK = {s = c99 "maineikkaasti"} ;
+lin maineikkuus_NK = {s = d40 "maineikkuus"} ;
+lin maineinen_NK = {s = d38 "maineinen"} ;
+lin mainen_NK = {s = d38 "mainen"} ;
+lin maininki_NK = {s = d05A "maininki"} ;
+lin maininta_NK = {s = d09A "maininta"} ;
+lin mainio_NK = {s = d03 "mainio"} ;
+lin mainita_VK = {s = c69 "mainita"} ;
+lin mainitsematon_NK = {s = d34A "mainitsematon"} ;
+lin mainittava_AK = {s = d10 "mainittava"} ;
+--+ lin mainittavasti_AdvK = {s = c99 "mainittavasti"} ;
+lin mainitunlainen_NK = {s = d38 "mainitunlainen"} ;
+lin mainonnallinen_AK = {s = d38 "mainonnallinen"} ;
+--+ lin mainonnallisesti_AdvK = {s = c99 "mainonnallisesti"} ;
+lin mainonta_NK = {s = d09A "mainonta"} ;
+lin mainos_NK = {s = d39 "mainos"} ;
+lin mainosaika_NK = {s = d09A "mainosaika"} ;
+lin mainostaa_VK = {s = c53 "mainostaa"} ;
+lin mainostus_NK = {s = d39 "mainostus"} ;
+lin mainstream_NK = {s = d05 "mainstream"} ;
+lin mairea_AK = {s = d15 "mairea"} ;
+--+ lin maireasti_AdvK = {s = c99 "maireasti"} ;
+lin maireus_NK = {s = d40 "maireus"} ;
+lin mairitella_VK = {s = c67A "mairitella"} ;
+lin mairittelevasti_AdvK = {s = c99 "mairittelevasti"} ;
+lin mairittelu_NK = {s = d02 "mairittelu"} ;
+lin maisema_NK = {s = d10 "maisema"} ;
+lin maisemallinen_NK = {s = d38 "maisemallinen"} ;
+lin maisemoida_VK = {s = c62 "maisemoida"} ;
+lin maisemointi_NK = {s = d05A "maisemointi"} ;
+lin maiskahdus_NK = {s = d39 "maiskahdus"} ;
+lin maiskahtaa_VK = {s = c53A "maiskahtaa"} ;
+lin maiskaus_NK = {s = d39 "maiskaus"} ;
+lin maiskauttaa_VK = {s = c53A "maiskauttaa"} ;
+lin maiskutella_VK = {s = c67A "maiskutella"} ;
+lin maiskuttaa_VK = {s = c53A "maiskuttaa"} ;
+lin maiskuttelu_NK = {s = d02 "maiskuttelu"} ;
+lin maiskutus_NK = {s = d39 "maiskutus"} ;
+lin maissa_AdvK = {s = c99 "maissa"} ;
+lin maissi_NK = {s = d05 "maissi"} ;
+lin maista_AdvK = {s = c99 "maista"} ;
+lin maistaa_VK = {s = c56 "maistaa"} ;
+lin maistaja_NK = {s = d10 "maistaja"} ;
+--? lin maistajaiset_NK = {s = d38 "maistajaiset"} ;
+lin maistella_VK = {s = c67 "maistella"} ;
+lin maisteri_NK = {s = d06 "maisteri"} ;
+lin maisti_NK = {s = d05 "maisti"} ;
+--? lin maistiaiset_NK = {s = d38 "maistiaiset"} ;
+lin maistraatti_NK = {s = d05A "maistraatti"} ;
+lin maistua_VK = {s = c52 "maistua"} ;
+lin maiti_NK = {s = d05A "maiti"} ;
+lin maitiainen_NK = {s = d38 "maitiainen"} ;
+lin maitikka_NK = {s = d14A "maitikka"} ;
+lin maito_NK = {s = d01A "maito"} ;
+lin maitoinen_NK = {s = d38 "maitoinen"} ;
+lin maitse_AdvK = {s = c99 "maitse"} ;
+lin maittaa_VK = {s = c56A "maittaa"} ;
+lin maittain_AdvK = {s = c99 "maittain"} ;
+lin maja_NK = {s = d09 "maja"} ;
+lin majailla_VK = {s = c67 "majailla"} ;
+lin majailu_NK = {s = d02 "majailu"} ;
+lin majakka_NK = {s = d14A "majakka"} ;
+lin majava_NK = {s = d10 "majava"} ;
+lin majavanhausta_NK = {s = d09 "majavanhausta"} ;
+lin majesteetillinen_NK = {s = d38 "majesteetillinen"} ;
+lin majesteetti_NK = {s = d05A "majesteetti"} ;
+lin majesteettinen_AK = {s = d38 "majesteettinen"} ;
+--+ lin majesteettisesti_AdvK = {s = c99 "majesteettisesti"} ;
+lin majesteettisuus_NK = {s = d40 "majesteettisuus"} ;
+lin majesteettius_NK = {s = d40 "majesteettius"} ;
+lin majoittaa_VK = {s = c53A "majoittaa"} ;
+lin majoittaja_NK = {s = d10 "majoittaja"} ;
+lin majoittautua_VK = {s = c52A "majoittautua"} ;
+lin majoittua_VK = {s = c52A "majoittua"} ;
+lin majoitus_NK = {s = d39 "majoitus"} ;
+lin majolika_NK = {s = d13 "majolika"} ;
+lin majoneesi_NK = {s = d05 "majoneesi"} ;
+lin majoriteetti_NK = {s = d05A "majoriteetti"} ;
+lin majuri_NK = {s = d06 "majuri"} ;
+lin makaaberi_NK = {s = d05 "makaaberi"} ;
+lin makailla_VK = {s = c67 "makailla"} ;
+lin makaki_NK = {s = d05 "makaki"} ;
+lin makaroni_NK = {s = d05 "makaroni"} ;
+lin makasiini_NK = {s = d05 "makasiini"} ;
+lin makaus_NK = {s = d39 "makaus"} ;
+lin makauttaa_VK = {s = c53A "makauttaa"} ;
+lin makea_AK = {s = d15 "makea"} ;
+lin makeahko_NK = {s = d01 "makeahko"} ;
+--+ lin makeasti_AdvK = {s = c99 "makeasti"} ;
+lin makeilla_VK = {s = c67 "makeilla"} ;
+lin makeilu_NK = {s = d02 "makeilu"} ;
+lin makeinen_NK = {s = d38 "makeinen"} ;
+lin make_up_NK = {s = d05 "make-up"} ;
+lin makeus_NK = {s = d40 "makeus"} ;
+lin makeute_NK = {s = d48A "makeute"} ;
+lin makeuttaa_VK = {s = c53A "makeuttaa"} ;
+lin makeutus_NK = {s = d39 "makeutus"} ;
+lin makkara_NK = {s = d12 "makkara"} ;
+lin makkarankuori_NK = {s = d26 "makkarankuori"} ;
+lin makkari_NK = {s = d06 "makkari"} ;
+lin makki_NK = {s = d05A "makki"} ;
+lin makoilla_VK = {s = c67 "makoilla"} ;
+lin makoilu_NK = {s = d02 "makoilu"} ;
+lin makoinen_NK = {s = d38 "makoinen"} ;
+lin makoisa_NK = {s = d10 "makoisa"} ;
+lin makramee_NK = {s = d20 "makramee"} ;
+lin makrilli_NK = {s = d05 "makrilli"} ;
+lin makro_NK = {s = d01 "makro"} ;
+lin makrobiootikko_NK = {s = d04A "makrobiootikko"} ;
+lin makrobioottinen_NK = {s = d38 "makrobioottinen"} ;
+lin makroskooppinen_NK = {s = d38 "makroskooppinen"} ;
+lin maksa_NK = {s = d09 "maksa"} ;
+lin maksaa_VK = {s = c56 "maksaa"} ;
+lin maksaja_NK = {s = d10 "maksaja"} ;
+lin maksamaton_NK = {s = d34A "maksamaton"} ;
+lin maksattaa_VK = {s = c53A "maksattaa"} ;
+lin maksatus_NK = {s = d39 "maksatus"} ;
+lin maksella_VK = {s = c67 "maksella"} ;
+lin maksi_NK = {s = d05 "maksi"} ;
+lin maksiimi_NK = {s = d05 "maksiimi"} ;
+lin maksimi_NK = {s = d05 "maksimi"} ;
+lin maksimoida_VK = {s = c62 "maksimoida"} ;
+lin maksimointi_NK = {s = d05A "maksimointi"} ;
+lin maksoittua_VK = {s = c52A "maksoittua"} ;
+lin maksoittuma_NK = {s = d10 "maksoittuma"} ;
+lin maksu_NK = {s = d01 "maksu"} ;
+lin maksuaika_NK = {s = d09A "maksuaika"} ;
+lin maksullinen_NK = {s = d38 "maksullinen"} ;
+lin maksullistaa_VK = {s = c53 "maksullistaa"} ;
+lin maksuton_NK = {s = d34A "maksuton"} ;
+lin maksuttomasti_AdvK = {s = c99 "maksuttomasti"} ;
+lin maksuttomuus_NK = {s = d40 "maksuttomuus"} ;
+lin maksuunpanna_VK = {s = c67 "maksuunpanna"} ;
+lin maku_NK = {s = d01A "maku"} ;
+lin makuinen_NK = {s = d38 "makuinen"} ;
+lin makulatuuri_NK = {s = d05 "makulatuuri"} ;
+lin makuloida_VK = {s = c62 "makuloida"} ;
+lin makustella_VK = {s = c67 "makustella"} ;
+lin makuu_NK = {s = d17 "makuu"} ;
+lin makuuhaava_NK = {s = d09 "makuuhaava"} ;
+lin makuulla_AdvK = {s = c99 "makuulla"} ;
+lin makuulle_AdvK = {s = c99 "makuulle"} ;
+lin makuulta_AdvK = {s = c99 "makuulta"} ;
+lin makuus_NK = {s = d39 "makuus"} ;
+lin makuuttaa_VK = {s = c53A "makuuttaa"} ;
+lin malaga_NK = {s = d13 "malaga"} ;
+lin malaiji_NK = {s = d05 "malaiji"} ;
+lin malakiitti_NK = {s = d05A "malakiitti"} ;
+lin malaria_NK = {s = d12 "malaria"} ;
+lin maleksia_VK = {s = c61 "maleksia"} ;
+lin maleksija_NK = {s = d12 "maleksija"} ;
+lin mali_NK = {s = d05 "mali"} ;
+lin maligni_NK = {s = d05 "maligni"} ;
+lin malignisoitua_VK = {s = c52A "malignisoitua"} ;
+lin malignistua_VK = {s = c52 "malignistua"} ;
+lin maligniteetti_NK = {s = d05A "maligniteetti"} ;
+lin malignoitua_VK = {s = c52A "malignoitua"} ;
+lin malikka_NK = {s = d14A "malikka"} ;
+lin malja_NK = {s = d09 "malja"} ;
+lin maljakas_NK = {s = d41A "maljakas"} ;
+lin maljakko_NK = {s = d04A "maljakko"} ;
+lin malka_NK = {s = d09A "malka"} ;
+lin mallas_NK = {s = d41A "mallas"} ;
+lin mallastaa_VK = {s = c53 "mallastaa"} ;
+lin mallastamo_NK = {s = d02 "mallastamo"} ;
+lin mallastus_NK = {s = d39 "mallastus"} ;
+lin mallata_VK = {s = c73 "mallata"} ;
+lin malli_NK = {s = d05 "malli"} ;
+lin mallikas_AK = {s = d41A "mallikas"} ;
+--+ lin mallikelpoisesti_AdvK = {s = c99 "mallikelpoisesti"} ;
+--+ lin mallikkaasti_AdvK = {s = c99 "mallikkaasti"} ;
+lin mallikkuus_NK = {s = d40 "mallikkuus"} ;
+lin malline_NK = {s = d48 "malline"} ;
+lin mallinen_NK = {s = d38 "mallinen"} ;
+lin mallinnus_NK = {s = d39 "mallinnus"} ;
+lin mallintaa_VK = {s = c54A "mallintaa"} ;
+lin mallisto_NK = {s = d02 "mallisto"} ;
+lin mallisuojattu_NK = {s = d01A "mallisuojattu"} ;
+lin mallittaa_VK = {s = c53A "mallittaa"} ;
+lin malluainen_NK = {s = d38 "malluainen"} ;
+lin malmi_NK = {s = d05 "malmi"} ;
+lin malmikas_NK = {s = d41A "malmikas"} ;
+lin malminen_NK = {s = d38 "malminen"} ;
+lin malmio_NK = {s = d03 "malmio"} ;
+--? lin maltaat_NK = {s = d41A "maltaat"} ;
+lin maltillinen_AK = {s = d38 "maltillinen"} ;
+--+ lin maltillisesti_AdvK = {s = c99 "maltillisesti"} ;
+lin maltillistua_VK = {s = c52 "maltillistua"} ;
+lin maltillisuus_NK = {s = d40 "maltillisuus"} ;
+lin maltiton_NK = {s = d34A "maltiton"} ;
+lin maltittomasti_AdvK = {s = c99 "maltittomasti"} ;
+lin maltittomuus_NK = {s = d40 "maltittomuus"} ;
+lin malto_NK = {s = d01A "malto"} ;
+lin maltoinen_NK = {s = d38 "maltoinen"} ;
+lin maltoosi_NK = {s = d05 "maltoosi"} ;
+lin maltsa_NK = {s = d09 "maltsa"} ;
+lin malttaa_VK = {s = c56A "malttaa"} ;
+lin malttamaton_NK = {s = d34A "malttamaton"} ;
+lin malttamattomasti_AdvK = {s = c99 "malttamattomasti"} ;
+lin malttamattomuus_NK = {s = d40 "malttamattomuus"} ;
+lin maltti_NK = {s = d05A "maltti"} ;
+lin malva_NK = {s = d09 "malva"} ;
+lin malvikki_NK = {s = d05A "malvikki"} ;
+lin mamba_NK = {s = d09 "mamba"} ;
+lin mambo_NK = {s = d01 "mambo"} ;
+lin mamero_NK = {s = d02 "mamero"} ;
+lin mamma_NK = {s = d09 "mamma"} ;
+lin mammografia_NK = {s = d12 "mammografia"} ;
+lin mammona_NK = {s = d11 "mammona"} ;
+lin mammutti_NK = {s = d05A "mammutti"} ;
+lin mamselli_NK = {s = d05 "mamselli"} ;
+lin mana_1_NK = {s = d09 "mana"} ;
+lin mana_2_NK = {s = d09 "mana"} ;
+lin manaaja_NK = {s = d10 "manaaja"} ;
+lin management_NK = {s = d05 "management"} ;
+lin manageri_NK = {s = d06 "manageri"} ;
+lin manailla_VK = {s = c67 "manailla"} ;
+lin manailu_NK = {s = d02 "manailu"} ;
+lin manala_NK = {s = d12 "manala"} ;
+lin manata_VK = {s = c73 "manata"} ;
+lin manaus_NK = {s = d39 "manaus"} ;
+lin mandaatti_NK = {s = d05A "mandaatti"} ;
+lin mandariini_1_NK = {s = d05 "mandariini"} ;
+lin mandariini_2_NK = {s = d05 "mandariini"} ;
+lin mandoliini_NK = {s = d05 "mandoliini"} ;
+lin mandrilli_NK = {s = d05 "mandrilli"} ;
+lin maneeri_NK = {s = d06 "maneeri"} ;
+--+ lin maneerimaisesti_AdvK = {s = c99 "maneerimaisesti"} ;
+lin maneerimaisuus_NK = {s = d40 "maneerimaisuus"} ;
+lin maneeristua_VK = {s = c52 "maneeristua"} ;
+lin maneesi_NK = {s = d05 "maneesi"} ;
+lin maneetti_NK = {s = d05A "maneetti"} ;
+lin mangaani_NK = {s = d05 "mangaani"} ;
+lin mango_NK = {s = d01 "mango"} ;
+lin mangoldi_NK = {s = d05 "mangoldi"} ;
+lin mangostani_NK = {s = d05 "mangostani"} ;
+lin mangrove_NK = {s = d08 "mangrove"} ;
+lin mangunta_NK = {s = d09A "mangunta"} ;
+lin mani_NK = {s = d05 "mani"} ;
+lin mania_NK = {s = d12 "mania"} ;
+lin manifestaatio_NK = {s = d03 "manifestaatio"} ;
+lin manifesti_NK = {s = d05 "manifesti"} ;
+lin manifestinen_NK = {s = d38 "manifestinen"} ;
+lin manifestoida_VK = {s = c62 "manifestoida"} ;
+lin manifestoitua_VK = {s = c52A "manifestoitua"} ;
+lin manikyristi_NK = {s = d05 "manikyristi"} ;
+lin manikyyri_NK = {s = d05 "manikyyri"} ;
+lin manila_NK = {s = d13 "manila"} ;
+lin manilla_NK = {s = d13 "manilla"} ;
+lin manipulaatio_NK = {s = d03 "manipulaatio"} ;
+lin manipulaattori_NK = {s = d06 "manipulaattori"} ;
+lin manipuloida_VK = {s = c62 "manipuloida"} ;
+lin manipuloija_NK = {s = d10 "manipuloija"} ;
+lin manipulointi_NK = {s = d05A "manipulointi"} ;
+lin mankeli_NK = {s = d06 "mankeli"} ;
+lin mankeloida_VK = {s = c68 "mankeloida"} ;
+lin mankelointi_NK = {s = d05A "mankelointi"} ;
+lin mankka_NK = {s = d09A "mankka"} ;
+lin mankku_NK = {s = d01A "mankku"} ;
+lin mankua_VK = {s = c52A "mankua"} ;
+lin mankuja_NK = {s = d10 "mankuja"} ;
+lin manna_NK = {s = d09 "manna"} ;
+lin manne_NK = {s = d08 "manne"} ;
+lin mannekiini_NK = {s = d05 "mannekiini"} ;
+lin manner_NK = {s = d49A "manner"} ;
+lin mannerliikunto_NK = {s = d01A "mannerliikunto"} ;
+--+ lin mannermaisesti_AdvK = {s = c99 "mannermaisesti"} ;
+lin mannermaisuus_NK = {s = d40 "mannermaisuus"} ;
+lin manometri_NK = {s = d05 "manometri"} ;
+lin mansetti_NK = {s = d05A "mansetti"} ;
+lin mansi_NK = {s = d05 "mansi"} ;
+lin mansikka_NK = {s = d14A "mansikka"} ;
+lin mansikka_aika_NK = {s = d09A "mansikka-aika"} ;
+lin manteli_NK = {s = d06 "manteli"} ;
+lin mantere_NK = {s = d49 "mantere"} ;
+lin mantereinen_NK = {s = d38 "mantereinen"} ;
+lin mantereisuus_NK = {s = d40 "mantereisuus"} ;
+lin mantilja_NK = {s = d13 "mantilja"} ;
+lin mantissa_NK = {s = d09 "mantissa"} ;
+lin manto_NK = {s = d01A "manto"} ;
+lin mantra_NK = {s = d09 "mantra"} ;
+lin manttaali_NK = {s = d06 "manttaali"} ;
+lin mantteli_NK = {s = d06 "mantteli"} ;
+lin mantu_NK = {s = d01A "mantu"} ;
+lin manu_NK = {s = d01 "manu"} ;
+lin manuaali_NK = {s = d05 "manuaali"} ;
+lin manuaalinen_AK = {s = d38 "manuaalinen"} ;
+--+ lin manuaalisesti_AdvK = {s = c99 "manuaalisesti"} ;
+lin mano'veroida_VK = {s = c62 "manöveroida"} ;
+lin mano'verointi_NK = {s = d05A "manöverointi"} ;
+lin mano'vroida_VK = {s = c62 "manövroida"} ;
+lin mano'o'veri_NK = {s = d05 "manööveri"} ;
+lin maoismi_NK = {s = d05 "maoismi"} ;
+lin maolainen_NK = {s = d38 "maolainen"} ;
+lin maolaisuus_NK = {s = d40 "maolaisuus"} ;
+lin mapillinen_NK = {s = d38 "mapillinen"} ;
+lin mapittaa_VK = {s = c53A "mapittaa"} ;
+lin mapitus_NK = {s = d39 "mapitus"} ;
+lin mappi_NK = {s = d05A "mappi"} ;
+lin mar_AdvK = {s = c99 "mar"} ;
+lin marakas_NK = {s = d05 "marakas"} ;
+lin marakatti_NK = {s = d05A "marakatti"} ;
+lin maraton_NK = {s = d05 "maraton"} ;
+lin maratoonari_NK = {s = d06 "maratoonari"} ;
+lin marenki_NK = {s = d05A "marenki"} ;
+lin margariini_NK = {s = d05 "margariini"} ;
+lin marginaali_NK = {s = d05 "marginaali"} ;
+lin marginaalinen_NK = {s = d38 "marginaalinen"} ;
+lin marhaminta_NK = {s = d09A "marhaminta"} ;
+lin mari_NK = {s = d05 "mari"} ;
+lin marihuana_NK = {s = d11 "marihuana"} ;
+lin marimba_NK = {s = d09 "marimba"} ;
+lin marina_1_NK = {s = d13 "marina"} ;
+lin marina_2_NK = {s = d13 "marina"} ;
+lin marinadi_NK = {s = d05 "marinadi"} ;
+lin marinoida_VK = {s = c62 "marinoida"} ;
+lin marinointi_NK = {s = d05A "marinointi"} ;
+lin marinoitua_VK = {s = c52A "marinoitua"} ;
+lin marionetti_NK = {s = d05A "marionetti"} ;
+lin marista_VK = {s = c66 "marista"} ;
+lin marja_NK = {s = d09 "marja"} ;
+lin marja_aika_NK = {s = d09A "marja-aika"} ;
+lin marjainen_NK = {s = d38 "marjainen"} ;
+lin marjaisa_NK = {s = d10 "marjaisa"} ;
+lin marjastaa_VK = {s = c53 "marjastaa"} ;
+lin marjastaja_NK = {s = d10 "marjastaja"} ;
+lin marjastus_NK = {s = d39 "marjastus"} ;
+lin marjoa_VK = {s = c52 "marjoa"} ;
+lin marjonta_NK = {s = d09A "marjonta"} ;
+lin market_NK = {s = d05 "market"} ;
+lin marketti_NK = {s = d05A "marketti"} ;
+lin markiisi_NK = {s = d05 "markiisi"} ;
+lin markiisitar_NK = {s = d32A "markiisitar"} ;
+lin markka_NK = {s = d09A "markka"} ;
+lin markkanen_NK = {s = d38 "markkanen"} ;
+lin markkeerata_VK = {s = c73 "markkeerata"} ;
+lin markkeri_NK = {s = d06 "markkeri"} ;
+lin markkina_NK = {s = d12 "markkina"} ;
+--? lin markkinat_NK = {s = d12 "markkinat"} ;
+lin markkinoida_VK = {s = c62 "markkinoida"} ;
+lin markkinoija_NK = {s = d10 "markkinoija"} ;
+lin markkinointi_NK = {s = d05A "markkinointi"} ;
+lin marksilainen_NK = {s = d38 "marksilainen"} ;
+lin marksilais_leninila'inen_NK = {s = d38 "marksilais-leniniläinen"} ;
+lin marksilaisuus_NK = {s = d40 "marksilaisuus"} ;
+lin marksismi_NK = {s = d05 "marksismi"} ;
+lin marksismi_leninismi_NK = {s = d05 "marksismi-leninismi"} ;
+lin marksisti_NK = {s = d05 "marksisti"} ;
+lin marmattaa_VK = {s = c53A "marmattaa"} ;
+lin marmatus_NK = {s = d39 "marmatus"} ;
+lin marmelaati_NK = {s = d05 "marmelaati"} ;
+lin marmeladi_NK = {s = d05 "marmeladi"} ;
+lin marmori_NK = {s = d06 "marmori"} ;
+lin marmorinen_NK = {s = d38 "marmorinen"} ;
+lin marmoroida_VK = {s = c62 "marmoroida"} ;
+lin marmorointi_NK = {s = d05A "marmorointi"} ;
+lin marmoroitua_VK = {s = c52A "marmoroitua"} ;
+lin marras_NK = {s = d41A "marras"} ;
+lin marraskesi_NK = {s = d27 "marraskesi"} ;
+lin mars_AdvK = {s = c99 "mars"} ;
+lin marsalkka_NK = {s = d14A "marsalkka"} ;
+lin marsilainen_NK = {s = d38 "marsilainen"} ;
+lin marsipaani_NK = {s = d05 "marsipaani"} ;
+lin marski_1_NK = {s = d05 "marski"} ;
+lin marski_2_NK = {s = d05 "marski"} ;
+lin marssi_NK = {s = d05 "marssi"} ;
+lin marssia_VK = {s = c61 "marssia"} ;
+lin marssinta_NK = {s = d09A "marssinta"} ;
+lin marssittaa_VK = {s = c53A "marssittaa"} ;
+lin marsu_NK = {s = d01 "marsu"} ;
+lin martini_NK = {s = d05 "martini"} ;
+lin martio_NK = {s = d03 "martio"} ;
+lin martioida_VK = {s = c62 "martioida"} ;
+lin martiointi_NK = {s = d05A "martiointi"} ;
+lin marto_NK = {s = d01A "marto"} ;
+lin martous_NK = {s = d40 "martous"} ;
+lin martta_NK = {s = d09A "martta"} ;
+lin marttyyri_NK = {s = d06 "marttyyri"} ;
+lin marttyyriaika_NK = {s = d09A "marttyyriaika"} ;
+lin marttyyrius_NK = {s = d40 "marttyyrius"} ;
+lin marttyyriys_NK = {s = d40 "marttyyriys"} ;
+lin maruna_NK = {s = d11 "maruna"} ;
+lin marxilainen_NK = {s = d38 "marxilainen"} ;
+lin marxilais_leninila'inen_NK = {s = d38 "marxilais-leniniläinen"} ;
+lin marxilaisuus_NK = {s = d40 "marxilaisuus"} ;
+lin marxismi_NK = {s = d05 "marxismi"} ;
+lin marxismi_leninismi_NK = {s = d05 "marxismi-leninismi"} ;
+lin marxisti_NK = {s = d05 "marxisti"} ;
+lin masariini_NK = {s = d05 "masariini"} ;
+lin masennus_NK = {s = d39 "masennus"} ;
+lin masentaa_VK = {s = c54A "masentaa"} ;
+lin masentava_NK = {s = d10 "masentava"} ;
+lin masentua_VK = {s = c52A "masentua"} ;
+--+ lin masentuneesti_AdvK = {s = c99 "masentuneesti"} ;
+lin masentuneisuus_NK = {s = d40 "masentuneisuus"} ;
+lin masentunut_AK = {s = d47 "masentunut"} ;
+lin masi_NK = {s = d05 "masi"} ;
+lin masiina_NK = {s = d13 "masiina"} ;
+lin masinoida_VK = {s = c62 "masinoida"} ;
+lin masinointi_NK = {s = d05A "masinointi"} ;
+lin maskara_NK = {s = d12 "maskara"} ;
+lin maskata_VK = {s = c73 "maskata"} ;
+lin maskeeraaja_NK = {s = d10 "maskeeraaja"} ;
+lin maskeerata_VK = {s = c73 "maskeerata"} ;
+lin maski_NK = {s = d05 "maski"} ;
+lin maskotti_NK = {s = d05A "maskotti"} ;
+lin maskuliini_NK = {s = d05 "maskuliini"} ;
+lin maskuliininen_NK = {s = d38 "maskuliininen"} ;
+lin maskuliinisuus_NK = {s = d40 "maskuliinisuus"} ;
+lin masmalo_NK = {s = d02 "masmalo"} ;
+lin masokismi_NK = {s = d05 "masokismi"} ;
+lin masokisti_NK = {s = d05 "masokisti"} ;
+lin masokistinen_AK = {s = d38 "masokistinen"} ;
+--+ lin masokistisesti_AdvK = {s = c99 "masokistisesti"} ;
+lin massa_NK = {s = d09 "massa"} ;
+lin massainen_NK = {s = d38 "massainen"} ;
+lin massata_VK = {s = c73 "massata"} ;
+lin massaus_NK = {s = d39 "massaus"} ;
+lin massi_NK = {s = d05 "massi"} ;
+lin massiivi_NK = {s = d05 "massiivi"} ;
+lin massiivinen_AK = {s = d38 "massiivinen"} ;
+--+ lin massiivisesti_AdvK = {s = c99 "massiivisesti"} ;
+lin massiivisuus_NK = {s = d40 "massiivisuus"} ;
+lin massoitella_VK = {s = c67A "massoitella"} ;
+lin massoittain_AdvK = {s = c99 "massoittain"} ;
+lin massoittelu_NK = {s = d02 "massoittelu"} ;
+lin massu_NK = {s = d01 "massu"} ;
+lin masto_NK = {s = d01 "masto"} ;
+lin mastodontti_NK = {s = d05A "mastodontti"} ;
+lin mastoinen_NK = {s = d38 "mastoinen"} ;
+lin masturbaatio_NK = {s = d03 "masturbaatio"} ;
+lin masturboida_VK = {s = c62 "masturboida"} ;
+lin masturbointi_NK = {s = d05A "masturbointi"} ;
+lin masu_NK = {s = d01 "masu"} ;
+lin masurkka_NK = {s = d14A "masurkka"} ;
+lin mataa_VK = {s = c56A "mataa"} ;
+lin matadori_NK = {s = d05 "matadori"} ;
+lin matala_NK = {s = d10 "matala"} ;
+lin matalalla_AdvK = {s = c99 "matalalla"} ;
+lin matalalle_AdvK = {s = c99 "matalalle"} ;
+lin matalalta_AdvK = {s = c99 "matalalta"} ;
+--+ lin matalamielisesti_AdvK = {s = c99 "matalamielisesti"} ;
+lin matalikko_NK = {s = d04A "matalikko"} ;
+lin mataloittaa_VK = {s = c53A "mataloittaa"} ;
+lin mataloitua_VK = {s = c52A "mataloitua"} ;
+lin mataluus_NK = {s = d40 "mataluus"} ;
+lin matami_NK = {s = d05 "matami"} ;
+lin matara_NK = {s = d13 "matara"} ;
+lin mateleva_AK = {s = d10 "mateleva"} ;
+--+ lin matelevasti_AdvK = {s = c99 "matelevasti"} ;
+lin matelija_NK = {s = d12 "matelija"} ;
+lin matelu_NK = {s = d02 "matelu"} ;
+lin matemaatikko_NK = {s = d04A "matemaatikko"} ;
+lin matemaattinen_NK = {s = d38 "matemaattinen"} ;
+lin matemaattistaa_VK = {s = c53 "matemaattistaa"} ;
+lin matemaattistua_VK = {s = c52 "matemaattistua"} ;
+lin matematiikka_NK = {s = d09A "matematiikka"} ;
+lin matematisoida_VK = {s = c62 "matematisoida"} ;
+lin matematisoitua_VK = {s = c52A "matematisoitua"} ;
+lin materia_NK = {s = d12 "materia"} ;
+lin materiaali_NK = {s = d05 "materiaali"} ;
+lin materiaalistaa_VK = {s = c53 "materiaalistaa"} ;
+lin materiaalistua_VK = {s = c52 "materiaalistua"} ;
+lin materialisaatio_NK = {s = d03 "materialisaatio"} ;
+lin materialismi_NK = {s = d05 "materialismi"} ;
+lin materialisoida_VK = {s = c62 "materialisoida"} ;
+lin materialisoitua_VK = {s = c52A "materialisoitua"} ;
+lin materialisti_NK = {s = d05 "materialisti"} ;
+lin materialistinen_AK = {s = d38 "materialistinen"} ;
+--+ lin materialistisesti_AdvK = {s = c99 "materialistisesti"} ;
+lin matikka_1_NK = {s = d14A "matikka"} ;
+lin matikka_2_NK = {s = d14A "matikka"} ;
+lin matinea_NK = {s = d12 "matinea"} ;
+lin matka_NK = {s = d09 "matka"} ;
+lin matka_aika_NK = {s = d09A "matka-aika"} ;
+lin matkaaja_NK = {s = d10 "matkaaja"} ;
+lin matkailija_NK = {s = d12 "matkailija"} ;
+lin matkailla_VK = {s = c67 "matkailla"} ;
+lin matkailu_NK = {s = d02 "matkailu"} ;
+lin matkailullinen_AK = {s = d38 "matkailullinen"} ;
+--+ lin matkailullisesti_AdvK = {s = c99 "matkailullisesti"} ;
+lin matkainen_NK = {s = d38 "matkainen"} ;
+lin matkata_VK = {s = c73 "matkata"} ;
+lin matkia_VK = {s = c61 "matkia"} ;
+lin matkija_NK = {s = d12 "matkija"} ;
+lin matkue_NK = {s = d48 "matkue"} ;
+lin matkustaa_VK = {s = c53 "matkustaa"} ;
+lin matkustaja_NK = {s = d10 "matkustaja"} ;
+lin matkustamo_NK = {s = d02 "matkustamo"} ;
+lin matkustella_VK = {s = c67 "matkustella"} ;
+lin matkustelu_NK = {s = d02 "matkustelu"} ;
+lin matkustus_NK = {s = d39 "matkustus"} ;
+lin mato_NK = {s = d01A "mato"} ;
+lin matoinen_NK = {s = d38 "matoinen"} ;
+lin matonen_NK = {s = d38 "matonen"} ;
+lin matriarkaalinen_NK = {s = d38 "matriarkaalinen"} ;
+lin matriarkaatti_NK = {s = d05A "matriarkaatti"} ;
+lin matriarkka_NK = {s = d09A "matriarkka"} ;
+lin matriisi_NK = {s = d05 "matriisi"} ;
+lin matrikkeli_NK = {s = d06 "matrikkeli"} ;
+lin matronyymi_NK = {s = d05 "matronyymi"} ;
+lin matroona_NK = {s = d10 "matroona"} ;
+lin matruusi_NK = {s = d05 "matruusi"} ;
+lin matsi_NK = {s = d05 "matsi"} ;
+lin matsku_NK = {s = d01 "matsku"} ;
+lin matta_NK = {s = d09A "matta"} ;
+lin matti_1_NK = {s = d05A "matti"} ;
+lin matti_2_NK = {s = d05A "matti"} ;
+lin matto_NK = {s = d01A "matto"} ;
+lin maturiteetti_NK = {s = d05A "maturiteetti"} ;
+lin mau_AdvK = {s = c99 "mau"} ;
+lin maukas_AK = {s = d41A "maukas"} ;
+--+ lin maukkaasti_AdvK = {s = c99 "maukkaasti"} ;
+lin maukkaus_NK = {s = d40 "maukkaus"} ;
+lin maukkuus_NK = {s = d40 "maukkuus"} ;
+lin maukua_VK = {s = c52A "maukua"} ;
+lin maukuna_NK = {s = d13 "maukuna"} ;
+lin mauri_NK = {s = d05 "mauri"} ;
+lin mauriainen_NK = {s = d38 "mauriainen"} ;
+lin mausoleumi_NK = {s = d05 "mausoleumi"} ;
+lin maustaa_VK = {s = c56 "maustaa"} ;
+lin mauste_NK = {s = d48 "mauste"} ;
+lin mausteikko_NK = {s = d04A "mausteikko"} ;
+lin mausteinen_NK = {s = d38 "mausteinen"} ;
+lin maustevoi_NK = {s = d18 "maustevoi"} ;
+lin maustua_VK = {s = c52 "maustua"} ;
+lin mauton_NK = {s = d34A "mauton"} ;
+lin mauttomasti_AdvK = {s = c99 "mauttomasti"} ;
+lin mauttomuus_NK = {s = d40 "mauttomuus"} ;
+lin mau_unta_NK = {s = d09A "mau'unta"} ;
+lin maya_NK = {s = d09 "maya"} ;
+lin medaljonki_NK = {s = d05A "medaljonki"} ;
+lin media_NK = {s = d13 "media"} ;
+lin mediaani_NK = {s = d05 "mediaani"} ;
+lin medisiina_NK = {s = d09 "medisiina"} ;
+lin medisiinari_NK = {s = d06 "medisiinari"} ;
+lin medisiininen_NK = {s = d38 "medisiininen"} ;
+lin meditaatio_NK = {s = d03 "meditaatio"} ;
+lin meditoida_VK = {s = c62 "meditoida"} ;
+lin meditointi_NK = {s = d05A "meditointi"} ;
+lin meduusa_NK = {s = d13 "meduusa"} ;
+lin meedio_NK = {s = d03 "meedio"} ;
+lin meetvursti_NK = {s = d05 "meetvursti"} ;
+lin mefistomainen_NK = {s = d38 "mefistomainen"} ;
+lin megafoni_NK = {s = d05 "megafoni"} ;
+lin megalopoli_NK = {s = d05 "megalopoli"} ;
+lin mehevyys_NK = {s = d40 "mehevyys"} ;
+lin meheva'_AK = {s = d10 "mehevä"} ;
+--+ lin meheva'sti_AdvK = {s = c99 "mehevästi"} ;
+lin mehevo'itta'a'_VK = {s = c53A "mehevöittää"} ;
+lin mehevo'itya'_VK = {s = c52A "mehevöityä"} ;
+lin mehila'inen_NK = {s = d38 "mehiläinen"} ;
+lin mehila'isparvi_NK = {s = d07 "mehiläisparvi"} ;
+lin mehu_NK = {s = d01 "mehu"} ;
+lin mehuinen_NK = {s = d38 "mehuinen"} ;
+lin mehuisa_NK = {s = d10 "mehuisa"} ;
+lin mehukas_AK = {s = d41A "mehukas"} ;
+--+ lin mehukkaasti_AdvK = {s = c99 "mehukkaasti"} ;
+lin mehukkuus_NK = {s = d40 "mehukkuus"} ;
+lin mehustaa_VK = {s = c53 "mehustaa"} ;
+lin mehuste_NK = {s = d48 "mehuste"} ;
+lin mehustin_NK = {s = d33 "mehustin"} ;
+lin mehustua_VK = {s = c52 "mehustua"} ;
+lin mehustus_NK = {s = d39 "mehustus"} ;
+lin meijeri_NK = {s = d06 "meijeri"} ;
+lin meijeristi_NK = {s = d05 "meijeristi"} ;
+lin meijerivoi_NK = {s = d18 "meijerivoi"} ;
+lin meikata_VK = {s = c73A "meikata"} ;
+lin meikkaaja_NK = {s = d10 "meikkaaja"} ;
+lin meikkaus_NK = {s = d39 "meikkaus"} ;
+lin meikki_NK = {s = d05A "meikki"} ;
+lin meikku_NK = {s = d01A "meikku"} ;
+lin meika'_NK = {s = d10 "meikä"} ;
+lin meika'la'inen_NK = {s = d38 "meikäläinen"} ;
+lin meika'la'isitta'in_AdvK = {s = c99 "meikäläisittäin"} ;
+lin meinata_VK = {s = c73 "meinata"} ;
+lin meininki_NK = {s = d05A "meininki"} ;
+lin meioosi_NK = {s = d05 "meioosi"} ;
+lin meirami_NK = {s = d06 "meirami"} ;
+lin meislata_VK = {s = c73 "meislata"} ;
+lin meisseli_NK = {s = d06 "meisseli"} ;
+lin meisti_NK = {s = d05 "meisti"} ;
+lin meista'a'_VK = {s = c53 "meistää"} ;
+lin meitsi_NK = {s = d05 "meitsi"} ;
+lin mekaanikko_NK = {s = d04A "mekaanikko"} ;
+lin mekaaninen_AK = {s = d38 "mekaaninen"} ;
+--+ lin mekaanisesti_AdvK = {s = c99 "mekaanisesti"} ;
+lin mekaanistaa_VK = {s = c53 "mekaanistaa"} ;
+lin mekaanistua_VK = {s = c52 "mekaanistua"} ;
+lin mekaanisuus_NK = {s = d40 "mekaanisuus"} ;
+lin mekaniikka_NK = {s = d09A "mekaniikka"} ;
+lin mekanismi_NK = {s = d05 "mekanismi"} ;
+lin mekanisoida_VK = {s = c62 "mekanisoida"} ;
+lin mekanisoitua_VK = {s = c52A "mekanisoitua"} ;
+lin mekanistinen_NK = {s = d38 "mekanistinen"} ;
+lin mekastaa_VK = {s = c53 "mekastaa"} ;
+lin mekastus_NK = {s = d39 "mekastus"} ;
+lin mekatroniikka_NK = {s = d09A "mekatroniikka"} ;
+lin mekatroninen_NK = {s = d38 "mekatroninen"} ;
+lin mekkala_NK = {s = d12 "mekkala"} ;
+lin mekkaloida_VK = {s = c62 "mekkaloida"} ;
+lin mekko_NK = {s = d01A "mekko"} ;
+lin meklari_NK = {s = d06 "meklari"} ;
+lin meksikolainen_NK = {s = d38 "meksikolainen"} ;
+lin mela_NK = {s = d09 "mela"} ;
+lin melamiini_NK = {s = d05 "melamiini"} ;
+lin melankolia_NK = {s = d12 "melankolia"} ;
+lin melankolikko_NK = {s = d04A "melankolikko"} ;
+lin melankolinen_AK = {s = d38 "melankolinen"} ;
+--+ lin melankolisesti_AdvK = {s = c99 "melankolisesti"} ;
+lin melankolisuus_NK = {s = d40 "melankolisuus"} ;
+lin melanooma_NK = {s = d10 "melanooma"} ;
+lin melassi_NK = {s = d05 "melassi"} ;
+lin melatoniini_NK = {s = d05 "melatoniini"} ;
+lin meleerata_VK = {s = c73 "meleerata"} ;
+lin meleeraus_NK = {s = d39 "meleeraus"} ;
+lin melkein_AdvK = {s = c99 "melkein"} ;
+lin melko_AdvK = {s = c99 "melko"} ;
+lin melkoinen_AK = {s = d38 "melkoinen"} ;
+--+ lin melkoisesti_AdvK = {s = c99 "melkoisesti"} ;
+lin mellakka_NK = {s = d14A "mellakka"} ;
+lin mellakoida_VK = {s = c68 "mellakoida"} ;
+lin mellakoija_NK = {s = d10 "mellakoija"} ;
+lin mellakointi_NK = {s = d05A "mellakointi"} ;
+lin mellakoitsija_NK = {s = d12 "mellakoitsija"} ;
+lin mellastaa_VK = {s = c53 "mellastaa"} ;
+lin mellastus_NK = {s = d39 "mellastus"} ;
+lin mellottaa_VK = {s = c53A "mellottaa"} ;
+lin mellottua_VK = {s = c52A "mellottua"} ;
+lin mellotus_NK = {s = d39 "mellotus"} ;
+lin meloa_VK = {s = c52 "meloa"} ;
+lin melodia_NK = {s = d12 "melodia"} ;
+lin melodiikka_NK = {s = d09A "melodiikka"} ;
+lin melodinen_AK = {s = d38 "melodinen"} ;
+--+ lin melodisesti_AdvK = {s = c99 "melodisesti"} ;
+lin melodisuus_NK = {s = d40 "melodisuus"} ;
+--+ lin melodramaattisesti_AdvK = {s = c99 "melodramaattisesti"} ;
+lin meloja_NK = {s = d10 "meloja"} ;
+lin meloni_NK = {s = d06 "meloni"} ;
+lin melonta_NK = {s = d09A "melonta"} ;
+lin melskata_VK = {s = c73 "melskata"} ;
+lin melske_NK = {s = d48 "melske"} ;
+lin melskeinen_NK = {s = d38 "melskeinen"} ;
+lin melto_NK = {s = d01A "melto"} ;
+lin melu_NK = {s = d01 "melu"} ;
+lin meluaja_NK = {s = d10 "meluaja"} ;
+lin meluinen_NK = {s = d38 "meluinen"} ;
+lin meluisa_AK = {s = d10 "meluisa"} ;
+--+ lin meluisasti_AdvK = {s = c99 "meluisasti"} ;
+lin meluisuus_NK = {s = d40 "meluisuus"} ;
+lin meluta_VK = {s = c75 "meluta"} ;
+lin membraani_NK = {s = d05 "membraani"} ;
+lin memorandumi_NK = {s = d06 "memorandumi"} ;
+lin mendelismi_NK = {s = d05 "mendelismi"} ;
+lin mendelistinen_NK = {s = d38 "mendelistinen"} ;
+lin mendelo'ida'_VK = {s = c62 "mendelöidä"} ;
+lin menehdyksiin_AdvK = {s = c99 "menehdyksiin"} ;
+lin menehdyksissa'_AdvK = {s = c99 "menehdyksissä"} ;
+lin menehdyksissa'a'n_AdvK = {s = c99 "menehdyksissään"} ;
+lin menehtya'_VK = {s = c52A "menehtyä"} ;
+lin meneilla'_AdvK = {s = c99 "meneillä"} ;
+lin meneilla'a'n_AdvK = {s = c99 "meneillään"} ;
+lin menekinedista'minen_NK = {s = d38 "menekinedistäminen"} ;
+lin menekki_NK = {s = d05A "menekki"} ;
+lin menekkinen_NK = {s = d38 "menekkinen"} ;
+lin menestyksekkyys_NK = {s = d40 "menestyksekkyys"} ;
+--+ lin menestyksekka'a'sti_AdvK = {s = c99 "menestyksekkäästi"} ;
+lin menestykseka's_AK = {s = d41A "menestyksekäs"} ;
+lin menestyksellinen_AK = {s = d38 "menestyksellinen"} ;
+--+ lin menestyksellisesti_AdvK = {s = c99 "menestyksellisesti"} ;
+lin menestyksellisyys_NK = {s = d40 "menestyksellisyys"} ;
+lin menestykseto'n_NK = {s = d34A "menestyksetön"} ;
+lin menestyma'to'n_NK = {s = d34A "menestymätön"} ;
+lin menestys_NK = {s = d39 "menestys"} ;
+lin menestya'_VK = {s = c52 "menestyä"} ;
+lin menetella'_VK = {s = c67A "menetellä"} ;
+lin menetelma'_NK = {s = d10 "menetelmä"} ;
+lin menetelma'llinen_NK = {s = d38 "menetelmällinen"} ;
+lin menettely_NK = {s = d02 "menettely"} ;
+lin menetta'a'_VK = {s = c53A "menettää"} ;
+lin menetys_NK = {s = d39 "menetys"} ;
+lin meneva'_NK = {s = d10 "menevä"} ;
+lin menija'_NK = {s = d12 "menijä"} ;
+--? lin menkat_NK = {s = d09A "menkat"} ;
+--? lin menkut_NK = {s = d01A "menkut"} ;
+lin menneisyys_NK = {s = d40 "menneisyys"} ;
+lin mennessa'_AdvK = {s = c99 "mennessä"} ;
+lin menninka'inen_NK = {s = d38 "menninkäinen"} ;
+lin mennyt_NK = {s = d47 "mennyt"} ;
+lin menna'_VK = {s = c67 "mennä"} ;
+lin meno_NK = {s = d01 "meno"} ;
+lin menota_VK = {s = c74 "menota"} ;
+--? lin mensikset_NK = {s = d39 "mensikset"} ;
+lin menstruaatio_NK = {s = d03 "menstruaatio"} ;
+lin menstruoida_VK = {s = c62 "menstruoida"} ;
+--? lin mensut_NK = {s = d01 "mensut"} ;
+lin mentaalinen_AK = {s = d38 "mentaalinen"} ;
+--+ lin mentaalisesti_AdvK = {s = c99 "mentaalisesti"} ;
+lin mentalismi_NK = {s = d05 "mentalismi"} ;
+lin mentaliteetti_NK = {s = d05A "mentaliteetti"} ;
+lin mentoli_NK = {s = d05 "mentoli"} ;
+lin mentori_NK = {s = d06 "mentori"} ;
+lin mentorointi_NK = {s = d05A "mentorointi"} ;
+lin menu_NK = {s = d21 "menu"} ;
+lin menuetti_NK = {s = d05A "menuetti"} ;
+lin menyy_NK = {s = d20 "menyy"} ;
+lin merellinen_NK = {s = d38 "merellinen"} ;
+lin merellisyys_NK = {s = d40 "merellisyys"} ;
+lin merenlahti_NK = {s = d07A "merenlahti"} ;
+lin meri_NK = {s = d24 "meri"} ;
+lin meridiaani_NK = {s = d05 "meridiaani"} ;
+lin meriitti_NK = {s = d05A "meriitti"} ;
+lin merila'inen_NK = {s = d38 "meriläinen"} ;
+lin merino_NK = {s = d02 "merino"} ;
+lin meritoitua_VK = {s = c52A "meritoitua"} ;
+lin meritokraatti_NK = {s = d05A "meritokraatti"} ;
+lin meritokraattinen_NK = {s = d38 "meritokraattinen"} ;
+lin meritokratia_NK = {s = d12 "meritokratia"} ;
+lin meritse_AdvK = {s = c99 "meritse"} ;
+lin merkantiilinen_NK = {s = d38 "merkantiilinen"} ;
+lin merkantilismi_NK = {s = d05 "merkantilismi"} ;
+lin merkantilisti_NK = {s = d05 "merkantilisti"} ;
+lin merkantilistinen_NK = {s = d38 "merkantilistinen"} ;
+lin merkantti_NK = {s = d05A "merkantti"} ;
+lin merkaptaani_NK = {s = d05 "merkaptaani"} ;
+lin merkata_VK = {s = c73A "merkata"} ;
+lin merkeli_NK = {s = d06 "merkeli"} ;
+lin merkillinen_AK = {s = d38 "merkillinen"} ;
+--+ lin merkillisesti_AdvK = {s = c99 "merkillisesti"} ;
+lin merkillisyys_NK = {s = d40 "merkillisyys"} ;
+lin merkinta'_NK = {s = d09A "merkintä"} ;
+lin merkinta'inen_NK = {s = d38 "merkintäinen"} ;
+lin merkinto'_NK = {s = d01A "merkintö"} ;
+lin merkisto'_NK = {s = d01 "merkistö"} ;
+lin merkitsevyys_NK = {s = d40 "merkitsevyys"} ;
+lin merkitseva'_AK = {s = d10 "merkitsevä"} ;
+--+ lin merkitseva'sti_AdvK = {s = c99 "merkitsevästi"} ;
+lin merkitsija'_NK = {s = d12 "merkitsijä"} ;
+lin merkitta'vyys_NK = {s = d40 "merkittävyys"} ;
+lin merkitta'va'_AK = {s = d10 "merkittävä"} ;
+--+ lin merkitta'va'sti_AdvK = {s = c99 "merkittävästi"} ;
+lin merkitta'a'_VK = {s = c53A "merkittää"} ;
+lin merkitykseka's_NK = {s = d41A "merkityksekäs"} ;
+lin merkityksellinen_NK = {s = d38 "merkityksellinen"} ;
+lin merkitykseto'n_NK = {s = d34A "merkityksetön"} ;
+lin merkityksinen_NK = {s = d38 "merkityksinen"} ;
+lin merkityksisyys_NK = {s = d40 "merkityksisyys"} ;
+lin merkitys_NK = {s = d39 "merkitys"} ;
+lin merkitytta'a'_VK = {s = c53A "merkityttää"} ;
+lin merkita'_VK = {s = c69 "merkitä"} ;
+lin merkito'n_NK = {s = d34A "merkitön"} ;
+lin merkkaus_NK = {s = d39 "merkkaus"} ;
+lin merkki_NK = {s = d05A "merkki"} ;
+lin merkkinen_NK = {s = d38 "merkkinen"} ;
+lin merkonomi_NK = {s = d05 "merkonomi"} ;
+lin merseroida_VK = {s = c62 "merseroida"} ;
+lin merserointi_NK = {s = d05A "merserointi"} ;
+lin merta_NK = {s = d09A "merta"} ;
+lin mesenaatti_NK = {s = d05A "mesenaatti"} ;
+lin mesi_NK = {s = d27 "mesi"} ;
+lin mesikka'_NK = {s = d14A "mesikkä"} ;
+lin mesia'inen_NK = {s = d38 "mesiäinen"} ;
+lin meskaliini_NK = {s = d05 "meskaliini"} ;
+lin mesoa_VK = {s = c52 "mesoa"} ;
+lin mesoni_NK = {s = d05 "mesoni"} ;
+lin mesota_VK = {s = c74 "mesota"} ;
+lin mesotsooinen_NK = {s = d38 "mesotsooinen"} ;
+lin messi_NK = {s = d05 "messi"} ;
+lin messiaaninen_NK = {s = d38 "messiaaninen"} ;
+lin messianismi_NK = {s = d05 "messianismi"} ;
+lin messias_NK = {s = d41 "messias"} ;
+lin messingo'ida'_VK = {s = c62 "messingöidä"} ;
+lin messingo'inti_NK = {s = d05A "messingöinti"} ;
+lin messinki_NK = {s = d05A "messinki"} ;
+lin messinkinen_NK = {s = d38 "messinkinen"} ;
+lin messu_NK = {s = d01 "messu"} ;
+lin messuta_VK = {s = c74 "messuta"} ;
+lin mesta_NK = {s = d09 "mesta"} ;
+lin mestaaja_NK = {s = d10 "mestaaja"} ;
+lin mestari_NK = {s = d06 "mestari"} ;
+lin mestarillinen_AK = {s = d38 "mestarillinen"} ;
+--+ lin mestarillisesti_AdvK = {s = c99 "mestarillisesti"} ;
+lin mestarillisuus_NK = {s = d40 "mestarillisuus"} ;
+lin mestarius_NK = {s = d40 "mestarius"} ;
+lin mestaroida_VK = {s = c62 "mestaroida"} ;
+lin mestaroija_NK = {s = d10 "mestaroija"} ;
+lin mestarointi_NK = {s = d05A "mestarointi"} ;
+lin mestaruus_NK = {s = d40 "mestaruus"} ;
+lin mestata_VK = {s = c73 "mestata"} ;
+lin mestaus_NK = {s = d39 "mestaus"} ;
+lin mestauttaa_VK = {s = c53A "mestauttaa"} ;
+lin mestitsi_NK = {s = d05 "mestitsi"} ;
+lin mesu_NK = {s = d01 "mesu"} ;
+lin metaani_NK = {s = d05 "metaani"} ;
+lin metabolia_NK = {s = d12 "metabolia"} ;
+lin metabolinen_NK = {s = d38 "metabolinen"} ;
+lin metadoni_NK = {s = d05 "metadoni"} ;
+lin metafora_NK = {s = d10 "metafora"} ;
+lin metaforinen_AK = {s = d38 "metaforinen"} ;
+--+ lin metaforisesti_AdvK = {s = c99 "metaforisesti"} ;
+lin metakka_NK = {s = d14A "metakka"} ;
+lin metalli_NK = {s = d05 "metalli"} ;
+lin metallinen_NK = {s = d38 "metallinen"} ;
+lin metallisoida_VK = {s = c62 "metallisoida"} ;
+lin metalloida_VK = {s = c62 "metalloida"} ;
+lin metallointi_NK = {s = d05A "metallointi"} ;
+lin metallurgi_NK = {s = d05 "metallurgi"} ;
+lin metallurgia_NK = {s = d12 "metallurgia"} ;
+lin metallurginen_NK = {s = d38 "metallurginen"} ;
+lin metamorfoosi_NK = {s = d05 "metamorfoosi"} ;
+lin metanoli_NK = {s = d05 "metanoli"} ;
+lin metastaasi_NK = {s = d05 "metastaasi"} ;
+lin metastaattinen_NK = {s = d38 "metastaattinen"} ;
+lin metastasoida_VK = {s = c62 "metastasoida"} ;
+lin metastasointi_NK = {s = d05A "metastasointi"} ;
+lin meteli_NK = {s = d06 "meteli"} ;
+lin metelo'ida'_VK = {s = c68 "metelöidä"} ;
+lin metelo'ija'_NK = {s = d10 "metelöijä"} ;
+lin metelo'inti_NK = {s = d05A "metelöinti"} ;
+lin metelo'itsija'_NK = {s = d12 "metelöitsijä"} ;
+lin meteori_NK = {s = d05 "meteori"} ;
+lin meteoriitti_NK = {s = d05A "meteoriitti"} ;
+lin meteoroidi_NK = {s = d05 "meteoroidi"} ;
+lin meteorologi_NK = {s = d05 "meteorologi"} ;
+lin meteorologia_NK = {s = d12 "meteorologia"} ;
+lin meteorologinen_NK = {s = d38 "meteorologinen"} ;
+lin metinen_NK = {s = d38 "metinen"} ;
+lin metka_AK = {s = d09 "metka"} ;
+--+ lin metkasti_AdvK = {s = c99 "metkasti"} ;
+lin metku_NK = {s = d01 "metku"} ;
+lin metkuilla_VK = {s = c67 "metkuilla"} ;
+lin metkuilu_NK = {s = d02 "metkuilu"} ;
+lin metodi_NK = {s = d05 "metodi"} ;
+lin metodiikka_NK = {s = d09A "metodiikka"} ;
+lin metodinen_AK = {s = d38 "metodinen"} ;
+--+ lin metodisesti_AdvK = {s = c99 "metodisesti"} ;
+lin metodismi_NK = {s = d05 "metodismi"} ;
+lin metodisti_NK = {s = d05 "metodisti"} ;
+lin metodistinen_NK = {s = d38 "metodistinen"} ;
+lin metodologia_NK = {s = d12 "metodologia"} ;
+lin metodologinen_NK = {s = d38 "metodologinen"} ;
+lin metreitta'in_AdvK = {s = c99 "metreittäin"} ;
+lin metri_NK = {s = d05 "metri"} ;
+lin metri_NK = {s = d05 "metri"} ;
+lin metriikka_NK = {s = d14A "metriikka"} ;
+lin metrinen_NK = {s = d38 "metrinen"} ;
+lin metro_NK = {s = d01 "metro"} ;
+lin metrologia_NK = {s = d12 "metrologia"} ;
+lin metrologinen_NK = {s = d38 "metrologinen"} ;
+lin metronomi_NK = {s = d05 "metronomi"} ;
+lin metropoliitta_NK = {s = d09A "metropoliitta"} ;
+lin metsikko'_NK = {s = d04A "metsikkö"} ;
+lin metsittya'_VK = {s = c52A "metsittyä"} ;
+lin metsitta'a'_VK = {s = c53A "metsittää"} ;
+lin metsitys_NK = {s = d39 "metsitys"} ;
+lin metso_NK = {s = d01 "metso"} ;
+lin metsuri_NK = {s = d06 "metsuri"} ;
+lin metsa'_NK = {s = d10 "metsä"} ;
+lin metsa'inen_NK = {s = d38 "metsäinen"} ;
+lin metsa'kaartilaisuus_NK = {s = d40 "metsäkaartilaisuus"} ;
+lin metsa'la'inen_NK = {s = d38 "metsäläinen"} ;
+lin metsa'lo'_NK = {s = d02 "metsälö"} ;
+lin metsa'narvioiminen_NK = {s = d38 "metsänarvioiminen"} ;
+--+ lin metsa'nhoidollisesti_AdvK = {s = c99 "metsänhoidollisesti"} ;
+lin metsa'nleimaus_NK = {s = d39 "metsänleimaus"} ;
+lin metsa'nraja_NK = {s = d09 "metsänraja"} ;
+lin metsa'stella'_VK = {s = c67 "metsästellä"} ;
+lin metsa'stys_NK = {s = d39 "metsästys"} ;
+lin metsa'sta'ja'_NK = {s = d10 "metsästäjä"} ;
+lin metsa'sta'a'_VK = {s = c53 "metsästää"} ;
+lin mettinen_NK = {s = d38 "mettinen"} ;
+lin metvursti_NK = {s = d05 "metvursti"} ;
+lin meuhkata_VK = {s = c73 "meuhkata"} ;
+lin mezzoforte_NK = {s = d08 "mezzoforte"} ;
+lin mezzopiano_NK = {s = d01 "mezzopiano"} ;
+lin mezzotinto_NK = {s = d01 "mezzotinto"} ;
+lin mi_AdvK = {s = c99 "mi"} ;
+lin miau_AdvK = {s = c99 "miau"} ;
+lin midi_1_NK = {s = d05 "midi"} ;
+lin midi_2_NK = {s = d05 "midi"} ;
+lin miedonnos_NK = {s = d39 "miedonnos"} ;
+lin miedonnus_NK = {s = d39 "miedonnus"} ;
+lin miedontaa_VK = {s = c54A "miedontaa"} ;
+lin miedontua_VK = {s = c52A "miedontua"} ;
+lin miedosti_AdvK = {s = c99 "miedosti"} ;
+lin miehekkyys_NK = {s = d40 "miehekkyys"} ;
+--+ lin miehekka'a'sti_AdvK = {s = c99 "miehekkäästi"} ;
+lin mieheka's_AK = {s = d41A "miehekäs"} ;
+lin miehela'ssa'_AdvK = {s = c99 "miehelässä"} ;
+lin miehela'a'n_AdvK = {s = c99 "miehelään"} ;
+lin miehennielija'_NK = {s = d12 "miehennielijä"} ;
+lin miehevyys_NK = {s = d40 "miehevyys"} ;
+lin mieheva'_AK = {s = d10 "miehevä"} ;
+--+ lin mieheva'sti_AdvK = {s = c99 "miehevästi"} ;
+lin mieheys_NK = {s = d40 "mieheys"} ;
+lin miehinen_NK = {s = d38 "miehinen"} ;
+lin miehistya'_VK = {s = c52 "miehistyä"} ;
+lin miehisto'_NK = {s = d02 "miehistö"} ;
+lin miehisyys_NK = {s = d40 "miehisyys"} ;
+lin miehittya'_VK = {s = c52A "miehittyä"} ;
+lin miehitta'ja'_NK = {s = d10 "miehittäjä"} ;
+lin miehitta'ma'to'n_NK = {s = d34A "miehittämätön"} ;
+lin miehitta'a'_VK = {s = c53A "miehittää"} ;
+lin miehitys_NK = {s = d39 "miehitys"} ;
+lin miehusta_NK = {s = d13 "miehusta"} ;
+lin miehuullinen_AK = {s = d38 "miehuullinen"} ;
+--+ lin miehuullisesti_AdvK = {s = c99 "miehuullisesti"} ;
+lin miehuullisuus_NK = {s = d40 "miehuullisuus"} ;
+lin miehuus_NK = {s = d40 "miehuus"} ;
+lin miehyys_NK = {s = d40 "miehyys"} ;
+lin miekannielija'_NK = {s = d12 "miekannielijä"} ;
+lin miekka_NK = {s = d09A "miekka"} ;
+lin miekkailija_NK = {s = d12 "miekkailija"} ;
+lin miekkailla_VK = {s = c67 "miekkailla"} ;
+lin miekkailu_NK = {s = d02 "miekkailu"} ;
+lin miekkonen_NK = {s = d38 "miekkonen"} ;
+lin mieleen_AdvK = {s = c99 "mieleen"} ;
+lin mieleenjohtuma_NK = {s = d10 "mieleenjohtuma"} ;
+lin mieleenpainuva_NK = {s = d10 "mieleenpainuva"} ;
+lin mieleinen_NK = {s = d38 "mieleinen"} ;
+lin mielekkyys_NK = {s = d40 "mielekkyys"} ;
+--+ lin mielekka'a'sti_AdvK = {s = c99 "mielekkäästi"} ;
+lin mieleka's_AK = {s = d41A "mielekäs"} ;
+lin mielella'a'n_AdvK = {s = c99 "mielellään"} ;
+lin mielenkiinnoton_NK = {s = d34A "mielenkiinnoton"} ;
+lin mielenkiinnottomasti_AdvK = {s = c99 "mielenkiinnottomasti"} ;
+lin mielenkiinto_NK = {s = d01A "mielenkiinto"} ;
+lin mielenkiintoinen_AK = {s = d38 "mielenkiintoinen"} ;
+--+ lin mielenkiintoisesti_AdvK = {s = c99 "mielenkiintoisesti"} ;
+lin mielenkiintoisuus_NK = {s = d40 "mielenkiintoisuus"} ;
+lin mielenosoituksellinen_AK = {s = d38 "mielenosoituksellinen"} ;
+--+ lin mielenosoituksellisesti_AdvK = {s = c99 "mielenosoituksellisesti"} ;
+--+ lin mielenterveydellisesti_AdvK = {s = c99 "mielenterveydellisesti"} ;
+lin mielesta'_AdvK = {s = c99 "mielestä"} ;
+lin mieletto'myys_NK = {s = d40 "mielettömyys"} ;
+lin mieletto'ma'sti_AdvK = {s = c99 "mielettömästi"} ;
+lin mieleto'n_NK = {s = d34A "mieletön"} ;
+lin mieleva'_AK = {s = d10 "mielevä"} ;
+--+ lin mieleva'sti_AdvK = {s = c99 "mielevästi"} ;
+lin mieli_NK = {s = d26 "mieli"} ;
+lin mieliinpainuva_NK = {s = d10 "mieliinpainuva"} ;
+lin mielikseen_AdvK = {s = c99 "mielikseen"} ;
+lin mieliksi_AdvK = {s = c99 "mieliksi"} ;
+lin mielikuvituksekas_AK = {s = d41A "mielikuvituksekas"} ;
+--+ lin mielikuvituksekkaasti_AdvK = {s = c99 "mielikuvituksekkaasti"} ;
+lin mielikuvituksellinen_NK = {s = d38 "mielikuvituksellinen"} ;
+lin mielikuvituksellisuus_NK = {s = d40 "mielikuvituksellisuus"} ;
+lin mielinen_NK = {s = d38 "mielinen"} ;
+lin mielin_kielin_AdvK = {s = c99 "mielin kielin"} ;
+lin mielin_ma'a'rin_AdvK = {s = c99 "mielin määrin"} ;
+lin mielipide_NK = {s = d48A "mielipide"} ;
+--+ lin mielipuolisesti_AdvK = {s = c99 "mielipuolisesti"} ;
+lin mielipuolisuus_NK = {s = d40 "mielipuolisuus"} ;
+lin mielisesti_AdvK = {s = c99 "mielisesti"} ;
+lin mielissa'a'n_AdvK = {s = c99 "mielissään"} ;
+lin mielistelija'_NK = {s = d12 "mielistelijä"} ;
+lin mielistella'_VK = {s = c67 "mielistellä"} ;
+lin mielistely_NK = {s = d02 "mielistely"} ;
+lin mielistya'_VK = {s = c52 "mielistyä"} ;
+lin mielisyys_NK = {s = d40 "mielisyys"} ;
+lin mielitella'_VK = {s = c67A "mielitellä"} ;
+--+ lin mielivaltaisesti_AdvK = {s = c99 "mielivaltaisesti"} ;
+lin mielia'_VK = {s = c61 "mieliä"} ;
+lin mielle_NK = {s = d48A "mielle"} ;
+lin miellytta'vyys_NK = {s = d40 "miellyttävyys"} ;
+lin miellytta'va'_AK = {s = d10 "miellyttävä"} ;
+--+ lin miellytta'va'sti_AdvK = {s = c99 "miellyttävästi"} ;
+lin miellytta'a'_VK = {s = c53A "miellyttää"} ;
+lin mieltymys_NK = {s = d39 "mieltymys"} ;
+lin mieltya'_VK = {s = c52A "mieltyä"} ;
+lin mielta'a'_VK = {s = c54A "mieltää"} ;
+lin mieluimmin_AdvK = {s = c99 "mieluimmin"} ;
+lin mieluinen_AK = {s = d38 "mieluinen"} ;
+lin mieluisa_AK = {s = d10 "mieluisa"} ;
+--+ lin mieluisasti_AdvK = {s = c99 "mieluisasti"} ;
+--+ lin mieluisesti_AdvK = {s = c99 "mieluisesti"} ;
+lin mieluisuus_NK = {s = d40 "mieluisuus"} ;
+lin mieluiten_AdvK = {s = c99 "mieluiten"} ;
+lin mieluummin_AdvK = {s = c99 "mieluummin"} ;
+lin mieluusti_AdvK = {s = c99 "mieluusti"} ;
+lin miero_NK = {s = d01 "miero"} ;
+lin mies_NK = {s = d42 "mies"} ;
+--+ lin mieskohtaisesti_AdvK = {s = c99 "mieskohtaisesti"} ;
+--+ lin mieslukuisesti_AdvK = {s = c99 "mieslukuisesti"} ;
+lin miesmuistiin_AdvK = {s = c99 "miesmuistiin"} ;
+lin miesma'inen_AK = {s = d38 "miesmäinen"} ;
+--+ lin miesma'isesti_AdvK = {s = c99 "miesmäisesti"} ;
+lin miesma'isyys_NK = {s = d40 "miesmäisyys"} ;
+lin miestennielija'_NK = {s = d12 "miestennielijä"} ;
+lin miete_NK = {s = d48A "miete"} ;
+lin mietelma'_NK = {s = d10 "mietelmä"} ;
+lin mietinta'_NK = {s = d09A "mietintä"} ;
+lin mietinta'aika_NK = {s = d09A "mietintäaika"} ;
+lin mietinto'_NK = {s = d01A "mietintö"} ;
+lin mietiskelija'_NK = {s = d12 "mietiskelijä"} ;
+lin mietiskella'_VK = {s = c67 "mietiskellä"} ;
+lin mietiskely_NK = {s = d02 "mietiskely"} ;
+lin mietitytta'a'_VK = {s = c53A "mietityttää"} ;
+lin mieto_NK = {s = d01A "mieto"} ;
+lin mietous_NK = {s = d40 "mietous"} ;
+lin mietteinen_NK = {s = d38 "mietteinen"} ;
+lin miettelia'isyys_NK = {s = d40 "mietteliäisyys"} ;
+lin miettelia's_AK = {s = d41 "mietteliäs"} ;
+--+ lin miettelia'a'sti_AdvK = {s = c99 "mietteliäästi"} ;
+lin miettimisaika_NK = {s = d09A "miettimisaika"} ;
+lin miettiva'inen_AK = {s = d38 "miettiväinen"} ;
+--+ lin miettiva'isesti_AdvK = {s = c99 "miettiväisesti"} ;
+lin miettia'_VK = {s = c61A "miettiä"} ;
+lin migmatiitti_NK = {s = d05A "migmatiitti"} ;
+lin migraatio_NK = {s = d03 "migraatio"} ;
+lin migreeni_NK = {s = d05 "migreeni"} ;
+lin mihin_AdvK = {s = c99 "mihin"} ;
+lin mihinkin_AdvK = {s = c99 "mihinkin"} ;
+lin mihinka'_AdvK = {s = c99 "mihinkä"} ;
+lin mihinka'a'n_AdvK = {s = c99 "mihinkään"} ;
+lin miikka_NK = {s = d09A "miikka"} ;
+lin miilu_NK = {s = d01 "miilu"} ;
+lin miimikko_NK = {s = d04A "miimikko"} ;
+lin miiminen_AK = {s = d38 "miiminen"} ;
+--+ lin miimisesti_AdvK = {s = c99 "miimisesti"} ;
+lin miina_NK = {s = d09 "miina"} ;
+lin miinaaja_NK = {s = d10 "miinaaja"} ;
+lin miinata_VK = {s = c73 "miinata"} ;
+lin miinoite_NK = {s = d48A "miinoite"} ;
+lin miinoittaa_VK = {s = c53A "miinoittaa"} ;
+lin miinoitus_NK = {s = d39 "miinoitus"} ;
+lin miinus_NK = {s = d39 "miinus"} ;
+lin miinustaa_VK = {s = c53 "miinustaa"} ;
+lin miitinki_NK = {s = d05A "miitinki"} ;
+lin mikkeli_NK = {s = d06 "mikkeli"} ;
+lin mikki_NK = {s = d05A "mikki"} ;
+lin mikko_NK = {s = d01A "mikko"} ;
+lin mikro_NK = {s = d01 "mikro"} ;
+lin mikrobi_NK = {s = d05 "mikrobi"} ;
+lin mikrofoni_NK = {s = d05 "mikrofoni"} ;
+lin mikroni_NK = {s = d05 "mikroni"} ;
+lin mikroskooppi_NK = {s = d05A "mikroskooppi"} ;
+lin mikroskooppinen_AK = {s = d38 "mikroskooppinen"} ;
+--+ lin mikroskooppisesti_AdvK = {s = c99 "mikroskooppisesti"} ;
+lin mikroskopia_NK = {s = d12 "mikroskopia"} ;
+lin mikroskopoida_VK = {s = c62 "mikroskopoida"} ;
+lin mikroskopointi_NK = {s = d05A "mikroskopointi"} ;
+lin mikrotomi_NK = {s = d05 "mikrotomi"} ;
+lin miksaaja_NK = {s = d10 "miksaaja"} ;
+lin miksata_VK = {s = c73 "miksata"} ;
+lin miksaus_NK = {s = d39 "miksaus"} ;
+lin mikseri_NK = {s = d06 "mikseri"} ;
+lin miksi_AdvK = {s = c99 "miksi"} ;
+lin mikstuura_NK = {s = d13 "mikstuura"} ;
+lin mika'kin_AdvK = {s = c99 "mikäkin"} ;
+lin mika'li_AdvK = {s = c99 "mikäli"} ;
+lin miliisi_NK = {s = d05 "miliisi"} ;
+lin militaarinen_NK = {s = d38 "militaarinen"} ;
+lin militantti_NK = {s = d05A "militantti"} ;
+lin militarismi_NK = {s = d05 "militarismi"} ;
+lin militarisoida_VK = {s = c62 "militarisoida"} ;
+lin militaristi_NK = {s = d05 "militaristi"} ;
+lin militaristinen_NK = {s = d38 "militaristinen"} ;
+lin milita'a'ri_NK = {s = d05 "militääri"} ;
+lin milita'a'rinen_NK = {s = d38 "militäärinen"} ;
+lin miljardi_NK = {s = d05 "miljardi"} ;
+lin miljardo'o'ri_NK = {s = d05 "miljardööri"} ;
+lin miljona'a'ri_NK = {s = d05 "miljonääri"} ;
+lin miljoona_NK = {s = d10 "miljoona"} ;
+lin miljoonainen_NK = {s = d38 "miljoonainen"} ;
+lin miljoonas_NK = {s = d45 "miljoonas"} ;
+lin miljoonikko_NK = {s = d01A "miljoonikko"} ;
+lin miljoonittain_AdvK = {s = c99 "miljoonittain"} ;
+lin miljo'o'_NK = {s = d20 "miljöö"} ;
+lin milk_shake_NK = {s = d08 "milk shake"} ;
+lin millainen_NK = {s = d38 "millainen"} ;
+lin milli_NK = {s = d05 "milli"} ;
+lin millinen_NK = {s = d38 "millinen"} ;
+lin millivoltti_NK = {s = d05A "millivoltti"} ;
+lin milloin_AdvK = {s = c99 "milloin"} ;
+lin milloinka_AdvK = {s = c99 "milloinka"} ;
+lin milloinkaan_AdvK = {s = c99 "milloinkaan"} ;
+lin milloinkin_AdvK = {s = c99 "milloinkin"} ;
+lin milla'nsa'ka'a'n_AdvK = {s = c99 "millänsäkään"} ;
+lin milla'a'n_AdvK = {s = c99 "millään"} ;
+lin milla'a'nka'a'n_AdvK = {s = c99 "milläänkään"} ;
+lin miltei_AdvK = {s = c99 "miltei"} ;
+lin mimiikka_NK = {s = d14A "mimiikka"} ;
+lin mimmi_NK = {s = d05 "mimmi"} ;
+lin mimmoinen_NK = {s = d38 "mimmoinen"} ;
+lin mimoosa_NK = {s = d11 "mimoosa"} ;
+lin minareetti_NK = {s = d05A "minareetti"} ;
+lin minariini_NK = {s = d05 "minariini"} ;
+lin mineraali_NK = {s = d05 "mineraali"} ;
+lin mineraalinen_NK = {s = d38 "mineraalinen"} ;
+lin mineraalistua_VK = {s = c52 "mineraalistua"} ;
+lin mineralisoitua_VK = {s = c52A "mineralisoitua"} ;
+lin mineralogi_NK = {s = d05 "mineralogi"} ;
+lin mineralogia_NK = {s = d12 "mineralogia"} ;
+lin mineraloginen_NK = {s = d38 "mineraloginen"} ;
+lin minestrone_NK = {s = d08 "minestrone"} ;
+lin mini_NK = {s = d05 "mini"} ;
+lin miniatyristi_NK = {s = d05 "miniatyristi"} ;
+lin miniatyyri_NK = {s = d05 "miniatyyri"} ;
+lin miniatyyrikoko_NK = {s = d01A "miniatyyrikoko"} ;
+lin minicross_NK = {s = d05 "minicross"} ;
+lin minimalismi_NK = {s = d05 "minimalismi"} ;
+lin minimalisti_NK = {s = d05 "minimalisti"} ;
+lin minimalistinen_NK = {s = d38 "minimalistinen"} ;
+lin minimi_NK = {s = d05 "minimi"} ;
+lin minimiaika_NK = {s = d09A "minimiaika"} ;
+lin minimikoko_NK = {s = d01A "minimikoko"} ;
+lin minimoida_VK = {s = c62 "minimoida"} ;
+lin minimointi_NK = {s = d05A "minimointi"} ;
+lin ministeri_NK = {s = d06 "ministeri"} ;
+lin ministeristo'_NK = {s = d01 "ministeristö"} ;
+lin ministeriys_NK = {s = d40 "ministeriys"} ;
+lin ministerio'_NK = {s = d03 "ministeriö"} ;
+lin minia'_NK = {s = d12 "miniä"} ;
+lin minkinlainen_NK = {s = d38 "minkinlainen"} ;
+lin minkki_NK = {s = d05A "minkki"} ;
+lin minka'lainen_NK = {s = d38 "minkälainen"} ;
+lin minka'_takia_AdvK = {s = c99 "minkä takia"} ;
+lin minka'_ta'hden_AdvK = {s = c99 "minkä tähden"} ;
+lin minka'_vuoksi_AdvK = {s = c99 "minkä vuoksi"} ;
+lin minka'a'nlainen_NK = {s = d38 "minkäänlainen"} ;
+lin minne_AdvK = {s = c99 "minne"} ;
+lin minnekin_AdvK = {s = c99 "minnekin"} ;
+lin minneka'_AdvK = {s = c99 "minnekä"} ;
+lin minneka'a'n_AdvK = {s = c99 "minnekään"} ;
+lin minoriteetti_NK = {s = d05A "minoriteetti"} ;
+lin minttu_NK = {s = d01A "minttu"} ;
+lin minunlaiseni_NK = {s = d38 "minunlaiseni"} ;
+lin minuus_NK = {s = d40 "minuus"} ;
+lin minuuteittain_AdvK = {s = c99 "minuuteittain"} ;
+lin minuutti_NK = {s = d05A "minuutti"} ;
+lin minuuttinen_NK = {s = d38 "minuuttinen"} ;
+lin mirha_NK = {s = d09 "mirha"} ;
+lin mirhami_NK = {s = d06 "mirhami"} ;
+lin mirri_NK = {s = d05 "mirri"} ;
+lin misogynia_NK = {s = d12 "misogynia"} ;
+lin misogyyni_NK = {s = d05 "misogyyni"} ;
+lin misogyyninen_NK = {s = d38 "misogyyninen"} ;
+lin mispeli_NK = {s = d06 "mispeli"} ;
+lin miss_AdvK = {s = c99 "miss"} ;
+lin missata_VK = {s = c73 "missata"} ;
+lin misseys_NK = {s = d40 "misseys"} ;
+lin missi_NK = {s = d05 "missi"} ;
+lin missio_NK = {s = d03 "missio"} ;
+lin missiys_NK = {s = d40 "missiys"} ;
+lin misteli_NK = {s = d06 "misteli"} ;
+lin mista'_AdvK = {s = c99 "mistä"} ;
+lin mista'kin_AdvK = {s = c99 "mistäkin"} ;
+lin mista'a'n_AdvK = {s = c99 "mistään"} ;
+lin misu_NK = {s = d01 "misu"} ;
+lin misa'a'ri_NK = {s = d06 "misääri"} ;
+lin mitali_NK = {s = d06 "mitali"} ;
+lin mitalisti_NK = {s = d05 "mitalisti"} ;
+lin mitallinen_NK = {s = d38 "mitallinen"} ;
+lin mitata_VK = {s = c73A "mitata"} ;
+lin mitella_NK = {s = d13 "mitella"} ;
+lin mitella'_VK = {s = c67A "mitellä"} ;
+lin miten_AdvK = {s = c99 "miten"} ;
+lin mitenkin_AdvK = {s = c99 "mitenkin"} ;
+lin mitenka'_AdvK = {s = c99 "mitenkä"} ;
+lin mitenka'a'n_AdvK = {s = c99 "mitenkään"} ;
+lin miten_pa'in_AdvK = {s = c99 "miten päin"} ;
+lin mitoittaa_VK = {s = c53A "mitoittaa"} ;
+lin mitoitus_NK = {s = d39 "mitoitus"} ;
+lin mitoosi_NK = {s = d05 "mitoosi"} ;
+lin mitoottinen_NK = {s = d38 "mitoottinen"} ;
+lin mitra_NK = {s = d09 "mitra"} ;
+lin mitta_NK = {s = d09A "mitta"} ;
+lin mittaaja_NK = {s = d10 "mittaaja"} ;
+lin mittaamaton_NK = {s = d34A "mittaamaton"} ;
+lin mittaamattomasti_AdvK = {s = c99 "mittaamattomasti"} ;
+lin mittaamattomuus_NK = {s = d40 "mittaamattomuus"} ;
+lin mittailla_VK = {s = c67 "mittailla"} ;
+lin mittailu_NK = {s = d02 "mittailu"} ;
+lin mittain_NK = {s = d33 "mittain"} ;
+lin mittainen_NK = {s = d38 "mittainen"} ;
+lin mittakaavainen_NK = {s = d38 "mittakaavainen"} ;
+lin mittari_NK = {s = d06 "mittari"} ;
+lin mittaristo_NK = {s = d01 "mittaristo"} ;
+lin mittaus_NK = {s = d39 "mittaus"} ;
+lin mittauttaa_VK = {s = c53A "mittauttaa"} ;
+lin mittava_NK = {s = d10 "mittava"} ;
+lin mittavuus_NK = {s = d40 "mittavuus"} ;
+lin mittely_NK = {s = d02 "mittely"} ;
+lin mittelo'_NK = {s = d02 "mittelö"} ;
+lin mita'_AdvK = {s = c99 "mitä"} ;
+lin mita'tto'myys_NK = {s = d40 "mitättömyys"} ;
+lin mita'to'ida'_VK = {s = c62 "mitätöidä"} ;
+lin mita'to'inti_NK = {s = d05A "mitätöinti"} ;
+lin mita'to'itya'_VK = {s = c52A "mitätöityä"} ;
+lin mita'to'n_NK = {s = d34A "mitätön"} ;
+lin mita'to'ntya'_VK = {s = c52A "mitätöntyä"} ;
+lin mita'to'nta'a'_VK = {s = c54A "mitätöntää"} ;
+lin moaree_NK = {s = d20 "moaree"} ;
+lin mobata_VK = {s = c73 "mobata"} ;
+lin mobbata_VK = {s = c73 "mobbata"} ;
+lin mobbaus_NK = {s = d39 "mobbaus"} ;
+lin mobile_NK = {s = d08 "mobile"} ;
+lin mobilisaatio_NK = {s = d03 "mobilisaatio"} ;
+lin mobilisoida_VK = {s = c62 "mobilisoida"} ;
+lin mobilisointi_NK = {s = d05A "mobilisointi"} ;
+lin mobiliteetti_NK = {s = d05A "mobiliteetti"} ;
+lin modaali_NK = {s = d05 "modaali"} ;
+lin modaalinen_NK = {s = d38 "modaalinen"} ;
+lin modeemi_NK = {s = d05 "modeemi"} ;
+lin moderato_NK = {s = d01 "moderato"} ;
+lin moderni_AK = {s = d05 "moderni"} ;
+lin modernismi_NK = {s = d05 "modernismi"} ;
+lin modernisoida_VK = {s = c62 "modernisoida"} ;
+lin modernisoitua_VK = {s = c52A "modernisoitua"} ;
+lin modernistaa_VK = {s = c53 "modernistaa"} ;
+lin modernisti_1_NK = {s = d05 "modernisti"} ;
+--+ lin modernisti_2_AdvK = {s = c99 "modernisti"} ;
+lin modernistinen_NK = {s = d38 "modernistinen"} ;
+lin modernistua_VK = {s = c52 "modernistua"} ;
+lin modernius_NK = {s = d40 "modernius"} ;
+lin modifikaatio_NK = {s = d03 "modifikaatio"} ;
+lin modifioida_VK = {s = c62 "modifioida"} ;
+lin modifiointi_NK = {s = d05A "modifiointi"} ;
+lin modifioitua_VK = {s = c52A "modifioitua"} ;
+lin modisti_NK = {s = d05 "modisti"} ;
+lin modulaarinen_NK = {s = d38 "modulaarinen"} ;
+lin modulaatio_NK = {s = d03 "modulaatio"} ;
+lin modulaattori_NK = {s = d06 "modulaattori"} ;
+lin moduloida_VK = {s = c62 "moduloida"} ;
+lin modulointi_NK = {s = d05A "modulointi"} ;
+lin moduloitua_VK = {s = c52A "moduloitua"} ;
+lin modus_NK = {s = d39 "modus"} ;
+lin moduuli_NK = {s = d06 "moduuli"} ;
+lin moguli_NK = {s = d05 "moguli"} ;
+lin mohair_NK = {s = d05 "mohair"} ;
+lin mohikaani_NK = {s = d05 "mohikaani"} ;
+lin moi_AdvK = {s = c99 "moi"} ;
+lin moikaa_VK = {s = c78 "moikaa"} ;
+lin moikata_VK = {s = c73A "moikata"} ;
+lin moike_NK = {s = d48A "moike"} ;
+lin moikua_VK = {s = c52A "moikua"} ;
+lin moinen_NK = {s = d38 "moinen"} ;
+lin moir__NK = {s = d21 "moiré"} ;
+lin moisio_NK = {s = d03 "moisio"} ;
+lin moiskahdus_NK = {s = d39 "moiskahdus"} ;
+lin moiskahtaa_VK = {s = c53A "moiskahtaa"} ;
+lin moiskaus_NK = {s = d39 "moiskaus"} ;
+lin moiskauttaa_VK = {s = c53A "moiskauttaa"} ;
+lin moite_NK = {s = d48A "moite"} ;
+lin moiteaika_NK = {s = d09A "moiteaika"} ;
+lin moitiskella_VK = {s = c67 "moitiskella"} ;
+lin moitiskelu_NK = {s = d02 "moitiskelu"} ;
+lin moitittava_AK = {s = d10 "moitittava"} ;
+--+ lin moitittavasti_AdvK = {s = c99 "moitittavasti"} ;
+lin moitittavuus_NK = {s = d40 "moitittavuus"} ;
+lin moitteeton_NK = {s = d34A "moitteeton"} ;
+lin moitteettomasti_AdvK = {s = c99 "moitteettomasti"} ;
+lin moitteettomuus_NK = {s = d40 "moitteettomuus"} ;
+lin moittia_VK = {s = c61A "moittia"} ;
+lin moittija_NK = {s = d12 "moittija"} ;
+lin moittivasti_AdvK = {s = c99 "moittivasti"} ;
+lin mojahdus_NK = {s = d39 "mojahdus"} ;
+lin mojahtaa_VK = {s = c53A "mojahtaa"} ;
+lin mojauttaa_VK = {s = c53A "mojauttaa"} ;
+lin mojova_NK = {s = d10 "mojova"} ;
+lin moka_NK = {s = d10 "moka"} ;
+lin mokata_VK = {s = c73 "mokata"} ;
+lin mokaus_NK = {s = d39 "mokaus"} ;
+lin mokka_1_NK = {s = d10A "mokka"} ;
+lin mokka_2_NK = {s = d10A "mokka"} ;
+lin mokkainen_NK = {s = d38 "mokkainen"} ;
+lin mokkasiini_NK = {s = d05 "mokkasiini"} ;
+lin mokoma_NK = {s = d10 "mokoma"} ;
+lin moksahdus_NK = {s = d39 "moksahdus"} ;
+lin moksahtaa_VK = {s = c53A "moksahtaa"} ;
+lin moksaus_NK = {s = d39 "moksaus"} ;
+lin moksauttaa_VK = {s = c53A "moksauttaa"} ;
+lin moksiskaan_AdvK = {s = c99 "moksiskaan"} ;
+lin molaalisuus_NK = {s = d40 "molaalisuus"} ;
+lin molaarinen_NK = {s = d38 "molaarinen"} ;
+lin molaarisuus_NK = {s = d40 "molaarisuus"} ;
+lin molari_NK = {s = d06 "molari"} ;
+lin molekulaarinen_NK = {s = d38 "molekulaarinen"} ;
+lin molekylaarinen_NK = {s = d38 "molekylaarinen"} ;
+lin molekyyli_NK = {s = d05 "molekyyli"} ;
+--? lin molemmat_NK = {s = d16A "molemmat"} ;
+--+ lin molemminpuolisesti_AdvK = {s = c99 "molemminpuolisesti"} ;
+lin molemminpuolisuus_NK = {s = d40 "molemminpuolisuus"} ;
+lin mollata_VK = {s = c73 "mollata"} ;
+lin mollaus_NK = {s = d39 "mollaus"} ;
+lin molli_NK = {s = d05 "molli"} ;
+lin mollottaa_VK = {s = c53A "mollottaa"} ;
+lin molottaa_VK = {s = c53A "molottaa"} ;
+lin molotus_NK = {s = d39 "molotus"} ;
+lin molskahdella_VK = {s = c67A "molskahdella"} ;
+lin molskahdus_NK = {s = d39 "molskahdus"} ;
+lin molskahtaa_VK = {s = c53A "molskahtaa"} ;
+lin molskaus_NK = {s = d39 "molskaus"} ;
+lin molskauttaa_VK = {s = c53A "molskauttaa"} ;
+lin molske_NK = {s = d48 "molske"} ;
+lin molski_NK = {s = d05 "molski"} ;
+lin molskia_VK = {s = c61 "molskia"} ;
+lin molskina_NK = {s = d12 "molskina"} ;
+lin molybdeeni_NK = {s = d05 "molybdeeni"} ;
+lin momentaaninen_NK = {s = d38 "momentaaninen"} ;
+lin momentti_NK = {s = d05A "momentti"} ;
+lin monarkia_NK = {s = d12 "monarkia"} ;
+lin monarkismi_NK = {s = d05 "monarkismi"} ;
+lin monarkisti_NK = {s = d05 "monarkisti"} ;
+lin monarkistinen_NK = {s = d38 "monarkistinen"} ;
+lin monarkki_NK = {s = d05A "monarkki"} ;
+lin monarkkinen_NK = {s = d38 "monarkkinen"} ;
+lin monasti_AdvK = {s = c99 "monasti"} ;
+lin monenlainen_NK = {s = d38 "monenlainen"} ;
+lin monenmoinen_NK = {s = d38 "monenmoinen"} ;
+lin monentaa_VK = {s = c54A "monentaa"} ;
+lin mones_NK = {s = d45 "mones"} ;
+--+ lin monesti_AdvK = {s = c99 "monesti"} ;
+lin monetaarinen_NK = {s = d38 "monetaarinen"} ;
+lin monetarismi_NK = {s = d05 "monetarismi"} ;
+lin monetaristi_NK = {s = d05 "monetaristi"} ;
+lin monetaristinen_NK = {s = d38 "monetaristinen"} ;
+lin moneus_NK = {s = d40 "moneus"} ;
+lin mongerrus_NK = {s = d39 "mongerrus"} ;
+lin mongertaa_VK = {s = c54A "mongertaa"} ;
+lin mongoli_NK = {s = d05 "mongoli"} ;
+lin mongolidi_NK = {s = d05 "mongolidi"} ;
+lin mongolidinen_NK = {s = d38 "mongolidinen"} ;
+lin mongolismi_NK = {s = d05 "mongolismi"} ;
+lin mongoloidi_NK = {s = d05 "mongoloidi"} ;
+lin moni_AK = {s = d23 "moni"} ;
+lin moniaalla_AdvK = {s = c99 "moniaalla"} ;
+lin moniaalle_AdvK = {s = c99 "moniaalle"} ;
+lin moniaalta_AdvK = {s = c99 "moniaalta"} ;
+lin monialaistua_VK = {s = c52 "monialaistua"} ;
+lin monias_NK = {s = d41 "monias"} ;
+lin moni_ilmeinen_NK = {s = d18 "moni-ilmeinen"} ;
+lin monijumalaisuus_NK = {s = d40 "monijumalaisuus"} ;
+lin monikansainen_NK = {s = d38 "monikansainen"} ;
+lin monikko_NK = {s = d04A "monikko"} ;
+lin monikollinen_NK = {s = d38 "monikollinen"} ;
+lin monikollisuus_NK = {s = d40 "monikollisuus"} ;
+--+ lin monilukuisesti_AdvK = {s = c99 "monilukuisesti"} ;
+lin monilukuisuus_NK = {s = d40 "monilukuisuus"} ;
+--+ lin monimielisesti_AdvK = {s = c99 "monimielisesti"} ;
+lin monimuotoistua_VK = {s = c52 "monimuotoistua"} ;
+lin monimutkaistaa_VK = {s = c53 "monimutkaistaa"} ;
+lin monimutkaistua_VK = {s = c52 "monimutkaistua"} ;
+lin moninaistaa_VK = {s = c53 "moninaistaa"} ;
+lin moninaistua_VK = {s = c52 "moninaistua"} ;
+--+ lin moninkertaisesti_AdvK = {s = c99 "moninkertaisesti"} ;
+lin monipersoonaisuus_NK = {s = d40 "monipersoonaisuus"} ;
+--+ lin monipuolisesti_AdvK = {s = c99 "monipuolisesti"} ;
+lin monipuolistaa_VK = {s = c53 "monipuolistaa"} ;
+lin monipuolistua_VK = {s = c52 "monipuolistua"} ;
+lin monipuolisuus_NK = {s = d40 "monipuolisuus"} ;
+--+ lin monisanaisesti_AdvK = {s = c99 "monisanaisesti"} ;
+--+ lin monisatakertaisesti_AdvK = {s = c99 "monisatakertaisesti"} ;
+lin monisikio'inen_NK = {s = d38 "monisikiöinen"} ;
+lin monismi_NK = {s = d05 "monismi"} ;
+lin monistaa_VK = {s = c53 "monistaa"} ;
+lin monistamo_NK = {s = d02 "monistamo"} ;
+lin moniste_NK = {s = d48 "moniste"} ;
+lin monisti_NK = {s = d05 "monisti"} ;
+lin monistinen_NK = {s = d38 "monistinen"} ;
+lin monistua_VK = {s = c52 "monistua"} ;
+lin monistus_NK = {s = d39 "monistus"} ;
+lin monistuttaa_VK = {s = c53A "monistuttaa"} ;
+lin monisa'rma'isyys_NK = {s = d40 "monisärmäisyys"} ;
+lin monitasoisuus_NK = {s = d40 "monitasoisuus"} ;
+lin monitieteisyys_NK = {s = d40 "monitieteisyys"} ;
+lin monitoroida_VK = {s = c62 "monitoroida"} ;
+lin monitorointi_NK = {s = d05A "monitorointi"} ;
+--+ lin monituhatkertaisesti_AdvK = {s = c99 "monituhatkertaisesti"} ;
+lin monituinen_NK = {s = d38 "monituinen"} ;
+lin monivaimoisuus_NK = {s = d40 "monivaimoisuus"} ;
+lin monkua_VK = {s = c52A "monkua"} ;
+lin mono_1_NK = {s = d01 "mono"} ;
+lin mono_2_NK = {s = d01 "mono"} ;
+lin monofonia_NK = {s = d12 "monofonia"} ;
+lin monofoninen_NK = {s = d38 "monofoninen"} ;
+lin monogaaminen_NK = {s = d38 "monogaaminen"} ;
+lin monogamia_NK = {s = d12 "monogamia"} ;
+lin monografia_NK = {s = d12 "monografia"} ;
+lin monogrammi_NK = {s = d05 "monogrammi"} ;
+lin monogynia_NK = {s = d12 "monogynia"} ;
+lin monogyyninen_NK = {s = d38 "monogyyninen"} ;
+lin monokkeli_NK = {s = d06 "monokkeli"} ;
+lin monoliitti_NK = {s = d05A "monoliitti"} ;
+lin monoliittinen_NK = {s = d38 "monoliittinen"} ;
+lin monologi_NK = {s = d05 "monologi"} ;
+lin monopolisoida_VK = {s = c62 "monopolisoida"} ;
+lin monopolisoitua_VK = {s = c52A "monopolisoitua"} ;
+lin monopolistinen_NK = {s = d38 "monopolistinen"} ;
+lin monopoloida_VK = {s = c62 "monopoloida"} ;
+lin monopoloitua_VK = {s = c52A "monopoloitua"} ;
+lin monotonia_NK = {s = d12 "monotonia"} ;
+lin monotoninen_AK = {s = d38 "monotoninen"} ;
+--+ lin monotonisesti_AdvK = {s = c99 "monotonisesti"} ;
+lin monotonisuus_NK = {s = d40 "monotonisuus"} ;
+lin monottaa_VK = {s = c53A "monottaa"} ;
+lin monotypia_NK = {s = d12 "monotypia"} ;
+lin monstrumi_NK = {s = d05 "monstrumi"} ;
+lin monsuuni_NK = {s = d06 "monsuuni"} ;
+lin monta_AdvK = {s = c99 "monta"} ;
+lin montaa_AdvK = {s = c99 "montaa"} ;
+lin montaasi_NK = {s = d05 "montaasi"} ;
+lin montteerata_VK = {s = c73 "montteerata"} ;
+lin monttu_NK = {s = d01A "monttu"} ;
+lin montto'o'ri_NK = {s = d06 "monttööri"} ;
+lin monumentaalinen_AK = {s = d38 "monumentaalinen"} ;
+--+ lin monumentaalisesti_AdvK = {s = c99 "monumentaalisesti"} ;
+lin monumentaalisuus_NK = {s = d40 "monumentaalisuus"} ;
+lin monumentti_NK = {s = d05A "monumentti"} ;
+lin moodi_NK = {s = d05 "moodi"} ;
+lin mooli_NK = {s = d05 "mooli"} ;
+lin moolisuus_NK = {s = d40 "moolisuus"} ;
+lin moottori_NK = {s = d06 "moottori"} ;
+lin moottorillinen_NK = {s = d38 "moottorillinen"} ;
+lin moottorinen_NK = {s = d38 "moottorinen"} ;
+lin moottoroida_VK = {s = c62 "moottoroida"} ;
+lin moottorointi_NK = {s = d05A "moottorointi"} ;
+lin moottoroitua_VK = {s = c52A "moottoroitua"} ;
+lin mopata_VK = {s = c73A "mopata"} ;
+lin mopedi_NK = {s = d05 "mopedi"} ;
+lin mopo_NK = {s = d01 "mopo"} ;
+lin mopoilija_NK = {s = d12 "mopoilija"} ;
+lin mopoilla_VK = {s = c67 "mopoilla"} ;
+lin moppaus_NK = {s = d39 "moppaus"} ;
+lin moppi_NK = {s = d05A "moppi"} ;
+lin mopsi_NK = {s = d05 "mopsi"} ;
+lin moraali_NK = {s = d06 "moraali"} ;
+lin moraalinen_AK = {s = d38 "moraalinen"} ;
+--+ lin moraalisesti_AdvK = {s = c99 "moraalisesti"} ;
+lin moraalisuus_NK = {s = d40 "moraalisuus"} ;
+lin moraaliton_NK = {s = d34A "moraaliton"} ;
+lin moraalittomasti_AdvK = {s = c99 "moraalittomasti"} ;
+lin moraalittomuus_NK = {s = d40 "moraalittomuus"} ;
+lin moralismi_NK = {s = d05 "moralismi"} ;
+lin moralisoida_VK = {s = c62 "moralisoida"} ;
+lin moralisointi_NK = {s = d05A "moralisointi"} ;
+lin moralisti_NK = {s = d05 "moralisti"} ;
+lin moralistinen_NK = {s = d38 "moralistinen"} ;
+lin moraliteetti_NK = {s = d05A "moraliteetti"} ;
+lin moratorio_NK = {s = d03 "moratorio"} ;
+lin mordva_NK = {s = d10 "mordva"} ;
+lin moreeni_NK = {s = d06 "moreeni"} ;
+lin morfeemi_NK = {s = d05 "morfeemi"} ;
+lin morfiini_NK = {s = d05 "morfiini"} ;
+lin morfinismi_NK = {s = d05 "morfinismi"} ;
+lin morfinisti_NK = {s = d05 "morfinisti"} ;
+lin morfologia_NK = {s = d12 "morfologia"} ;
+lin morfologinen_NK = {s = d38 "morfologinen"} ;
+lin morjens_AdvK = {s = c99 "morjens"} ;
+lin morjensta_AdvK = {s = c99 "morjensta"} ;
+lin morjenstaa_VK = {s = c53 "morjenstaa"} ;
+lin morjes_AdvK = {s = c99 "morjes"} ;
+lin morjesta_AdvK = {s = c99 "morjesta"} ;
+lin morjestaa_VK = {s = c53 "morjestaa"} ;
+lin morkata_VK = {s = c73A "morkata"} ;
+lin morkkaaja_NK = {s = d10 "morkkaaja"} ;
+lin morkkaus_NK = {s = d39 "morkkaus"} ;
+lin morkkis_NK = {s = d39 "morkkis"} ;
+lin mormoni_NK = {s = d05 "mormoni"} ;
+lin mormyska_NK = {s = d13 "mormyska"} ;
+lin moro_1_NK = {s = d01 "moro"} ;
+lin moro_2_AdvK = {s = c99 "moro"} ;
+lin moron_AdvK = {s = c99 "moron"} ;
+lin morsettaa_VK = {s = c53A "morsettaa"} ;
+lin morsetus_NK = {s = d39 "morsetus"} ;
+lin morsian_NK = {s = d33 "morsian"} ;
+lin morsio_NK = {s = d03 "morsio"} ;
+lin morsiuspari_NK = {s = d05 "morsiuspari"} ;
+lin mortadella_NK = {s = d09 "mortadella"} ;
+lin mortaliteetti_NK = {s = d05A "mortaliteetti"} ;
+lin mortteli_NK = {s = d06 "mortteli"} ;
+lin morula_NK = {s = d12 "morula"} ;
+lin mosaiikki_NK = {s = d05A "mosaiikki"} ;
+lin mosel_NK = {s = d05 "mosel"} ;
+lin moska_NK = {s = d10 "moska"} ;
+lin moskainen_NK = {s = d38 "moskainen"} ;
+lin moskaisuus_NK = {s = d40 "moskaisuus"} ;
+lin moskeija_NK = {s = d12 "moskeija"} ;
+lin moskiitto_NK = {s = d01A "moskiitto"} ;
+lin motata_VK = {s = c73A "motata"} ;
+lin motelli_NK = {s = d06 "motelli"} ;
+lin motetti_NK = {s = d05A "motetti"} ;
+lin motiivi_NK = {s = d05 "motiivi"} ;
+lin motittaa_VK = {s = c53A "motittaa"} ;
+lin motivaatio_NK = {s = d03 "motivaatio"} ;
+lin motivoida_VK = {s = c62 "motivoida"} ;
+lin motivoimaton_NK = {s = d34A "motivoimaton"} ;
+lin motivointi_NK = {s = d05A "motivointi"} ;
+lin motivoitua_VK = {s = c52A "motivoitua"} ;
+lin motkottaa_VK = {s = c53A "motkottaa"} ;
+lin moto_NK = {s = d01 "moto"} ;
+lin motocross_NK = {s = d05 "motocross"} ;
+lin motoriikka_NK = {s = d09A "motoriikka"} ;
+lin motorinen_NK = {s = d38 "motorinen"} ;
+lin motorisoida_VK = {s = c62 "motorisoida"} ;
+lin motorisoitua_VK = {s = c52A "motorisoitua"} ;
+lin motskari_NK = {s = d06 "motskari"} ;
+lin motti_1_NK = {s = d05A "motti"} ;
+lin motti_2_NK = {s = d05A "motti"} ;
+lin motto_NK = {s = d01A "motto"} ;
+lin moukari_NK = {s = d06 "moukari"} ;
+lin moukaroida_VK = {s = c62 "moukaroida"} ;
+lin moukka_NK = {s = d10A "moukka"} ;
+--+ lin moukkamaisesti_AdvK = {s = c99 "moukkamaisesti"} ;
+lin moukkamaisuus_NK = {s = d40 "moukkamaisuus"} ;
+lin moukku_NK = {s = d01A "moukku"} ;
+lin moukua_VK = {s = c52A "moukua"} ;
+lin mouruta_VK = {s = c74 "mouruta"} ;
+lin moussakas_NK = {s = d05 "moussakas"} ;
+lin mousse_NK = {s = d08 "mousse"} ;
+lin muassa_AdvK = {s = c99 "muassa"} ;
+lin muffini_NK = {s = d06 "muffini"} ;
+lin muhamettilainen_NK = {s = d38 "muhamettilainen"} ;
+lin muhamettilaisuus_NK = {s = d40 "muhamettilaisuus"} ;
+lin muhea_NK = {s = d15 "muhea"} ;
+lin muhennos_NK = {s = d39 "muhennos"} ;
+lin muhennus_NK = {s = d39 "muhennus"} ;
+lin muhentaa_VK = {s = c54A "muhentaa"} ;
+lin muhentua_VK = {s = c52A "muhentua"} ;
+lin muheva_NK = {s = d10 "muheva"} ;
+lin muhevuus_NK = {s = d40 "muhevuus"} ;
+lin muhia_VK = {s = c61 "muhia"} ;
+lin muhina_NK = {s = d12 "muhina"} ;
+lin muhinoida_VK = {s = c62 "muhinoida"} ;
+lin muhinointi_NK = {s = d05A "muhinointi"} ;
+lin muhkea_AK = {s = d15 "muhkea"} ;
+--+ lin muhkeasti_AdvK = {s = c99 "muhkeasti"} ;
+lin muhkeus_NK = {s = d40 "muhkeus"} ;
+lin muhkura_NK = {s = d12 "muhkura"} ;
+lin muhkurainen_NK = {s = d38 "muhkurainen"} ;
+lin muhoilla_VK = {s = c67 "muhoilla"} ;
+lin muhvi_NK = {s = d05 "muhvi"} ;
+lin muija_NK = {s = d10 "muija"} ;
+lin muikea_AK = {s = d15 "muikea"} ;
+--+ lin muikeasti_AdvK = {s = c99 "muikeasti"} ;
+lin muikistaa_VK = {s = c53 "muikistaa"} ;
+lin muikistella_VK = {s = c67 "muikistella"} ;
+lin muikku_NK = {s = d01A "muikku"} ;
+lin muiluttaa_VK = {s = c53A "muiluttaa"} ;
+lin muiluttaja_NK = {s = d10 "muiluttaja"} ;
+lin muilutus_NK = {s = d39 "muilutus"} ;
+lin muinainen_NK = {s = d38 "muinainen"} ;
+lin muinaisaika_NK = {s = d09A "muinaisaika"} ;
+lin muinaisuus_NK = {s = d40 "muinaisuus"} ;
+lin muinoin_AdvK = {s = c99 "muinoin"} ;
+lin muinoinen_NK = {s = d38 "muinoinen"} ;
+lin muiskauttaa_VK = {s = c53A "muiskauttaa"} ;
+lin muisku_NK = {s = d01 "muisku"} ;
+lin muistaa_VK = {s = c53 "muistaa"} ;
+lin muistama_NK = {s = d10 "muistama"} ;
+lin muistamaton_NK = {s = d34A "muistamaton"} ;
+lin muistamattomuus_NK = {s = d40 "muistamattomuus"} ;
+lin muistella_VK = {s = c67 "muistella"} ;
+lin muistelma_NK = {s = d10 "muistelma"} ;
+lin muistelo_NK = {s = d02 "muistelo"} ;
+lin muistelu_NK = {s = d02 "muistelu"} ;
+lin muistelus_NK = {s = d39 "muistelus"} ;
+lin muistettava_NK = {s = d10 "muistettava"} ;
+lin muisti_NK = {s = d05 "muisti"} ;
+lin muistiinpanna_VK = {s = c67 "muistiinpanna"} ;
+lin muistinen_NK = {s = d38 "muistinen"} ;
+lin muistio_NK = {s = d03 "muistio"} ;
+lin muistisuus_NK = {s = d40 "muistisuus"} ;
+lin muistittomuus_NK = {s = d40 "muistittomuus"} ;
+lin muisto_NK = {s = d01 "muisto"} ;
+lin muistoinen_NK = {s = d38 "muistoinen"} ;
+lin muistoisa_NK = {s = d10 "muistoisa"} ;
+lin muistua_VK = {s = c52 "muistua"} ;
+lin muistuma_NK = {s = d10 "muistuma"} ;
+lin muistutella_VK = {s = c67A "muistutella"} ;
+lin muistuttaa_VK = {s = c53A "muistuttaa"} ;
+lin muistutus_NK = {s = d39 "muistutus"} ;
+lin muka_AdvK = {s = c99 "muka"} ;
+lin mukaa_AdvK = {s = c99 "mukaa"} ;
+lin mukaan_AdvK = {s = c99 "mukaan"} ;
+lin mukaan_luettuna_AdvK = {s = c99 "mukaan luettuna"} ;
+lin mukaan_lukien_AdvK = {s = c99 "mukaan lukien"} ;
+lin mukaansatempaava_AK = {s = d10 "mukaansatempaava"} ;
+--+ lin mukaansatempaavasti_AdvK = {s = c99 "mukaansatempaavasti"} ;
+lin mukaansatempaavuus_NK = {s = d40 "mukaansatempaavuus"} ;
+lin mukaantua_VK = {s = c52A "mukaantua"} ;
+lin mukaantuva_NK = {s = d10 "mukaantuva"} ;
+lin mukaelma_NK = {s = d10 "mukaelma"} ;
+lin mukailla_VK = {s = c67 "mukailla"} ;
+lin mukailu_NK = {s = d02 "mukailu"} ;
+lin mukainen_AK = {s = d38 "mukainen"} ;
+--+ lin mukaisesti_AdvK = {s = c99 "mukaisesti"} ;
+lin mukaisuus_NK = {s = d40 "mukaisuus"} ;
+lin mukamas_AdvK = {s = c99 "mukamas"} ;
+lin mukana_AdvK = {s = c99 "mukana"} ;
+lin mukauma_NK = {s = d10 "mukauma"} ;
+lin mukauttaa_VK = {s = c53A "mukauttaa"} ;
+lin mukautua_VK = {s = c52A "mukautua"} ;
+lin mukautuma_NK = {s = d10 "mukautuma"} ;
+lin mukautuva_NK = {s = d10 "mukautuva"} ;
+lin mukautuvainen_NK = {s = d38 "mukautuvainen"} ;
+lin mukautuvaisuus_NK = {s = d40 "mukautuvaisuus"} ;
+lin mukautuvuus_NK = {s = d40 "mukautuvuus"} ;
+lin mukava_AK = {s = d10 "mukava"} ;
+--+ lin mukavasti_AdvK = {s = c99 "mukavasti"} ;
+lin mukavoittaa_VK = {s = c53A "mukavoittaa"} ;
+lin mukavoitua_VK = {s = c52A "mukavoitua"} ;
+lin mukavuus_NK = {s = d40 "mukavuus"} ;
+lin muki_NK = {s = d05 "muki"} ;
+lin mukiin_AdvK = {s = c99 "mukiin"} ;
+--+ lin mukiinmeneva'sti_AdvK = {s = c99 "mukiinmenevästi"} ;
+lin mukillinen_NK = {s = d38 "mukillinen"} ;
+lin mukiloida_VK = {s = c62 "mukiloida"} ;
+lin mukilointi_NK = {s = d05A "mukilointi"} ;
+lin mukina_NK = {s = d12 "mukina"} ;
+lin mukista_VK = {s = c66 "mukista"} ;
+lin mukkelis_makkelis_AdvK = {s = c99 "mukkelis makkelis"} ;
+lin muksahdus_NK = {s = d39 "muksahdus"} ;
+lin muksahtaa_VK = {s = c53A "muksahtaa"} ;
+lin muksaus_NK = {s = d39 "muksaus"} ;
+lin muksauttaa_VK = {s = c53A "muksauttaa"} ;
+lin muksia_VK = {s = c61 "muksia"} ;
+lin muksu_NK = {s = d01 "muksu"} ;
+lin mukula_NK = {s = d12 "mukula"} ;
+lin mukulainen_NK = {s = d38 "mukulainen"} ;
+lin mukulajuuri_NK = {s = d26 "mukulajuuri"} ;
+lin mukuloida_VK = {s = c62 "mukuloida"} ;
+lin mukura_NK = {s = d12 "mukura"} ;
+lin mulahdus_NK = {s = d39 "mulahdus"} ;
+lin mulahtaa_VK = {s = c53A "mulahtaa"} ;
+lin mulatti_NK = {s = d05A "mulatti"} ;
+lin muli_NK = {s = d05 "muli"} ;
+lin muljahdella_VK = {s = c67A "muljahdella"} ;
+lin muljahdus_NK = {s = d39 "muljahdus"} ;
+lin muljahtaa_VK = {s = c53A "muljahtaa"} ;
+lin muljaus_NK = {s = d39 "muljaus"} ;
+lin muljautella_VK = {s = c67A "muljautella"} ;
+lin muljauttaa_VK = {s = c53A "muljauttaa"} ;
+lin mulkaista_VK = {s = c66 "mulkaista"} ;
+lin mulkku_NK = {s = d01A "mulkku"} ;
+lin mulkoilla_VK = {s = c67 "mulkoilla"} ;
+lin mullas_NK = {s = d39 "mullas"} ;
+lin mullata_VK = {s = c73A "mullata"} ;
+lin mulli_NK = {s = d05 "mulli"} ;
+lin mullikka_NK = {s = d14A "mullikka"} ;
+lin mullin_mallin_AdvK = {s = c99 "mullin mallin"} ;
+lin mullistaa_VK = {s = c53 "mullistaa"} ;
+lin mullistava_AK = {s = d10 "mullistava"} ;
+--+ lin mullistavasti_AdvK = {s = c99 "mullistavasti"} ;
+lin mullistavuus_NK = {s = d40 "mullistavuus"} ;
+lin mullistua_VK = {s = c52 "mullistua"} ;
+lin mullistus_NK = {s = d39 "mullistus"} ;
+lin mullittaa_VK = {s = c53A "mullittaa"} ;
+lin mullitus_NK = {s = d39 "mullitus"} ;
+lin mullos_NK = {s = d39 "mullos"} ;
+lin mulskahdus_NK = {s = d39 "mulskahdus"} ;
+lin mulskahtaa_VK = {s = c53A "mulskahtaa"} ;
+lin multa_NK = {s = d10A "multa"} ;
+lin multaantua_VK = {s = c52A "multaantua"} ;
+lin multainen_NK = {s = d38 "multainen"} ;
+lin multaus_NK = {s = d39 "multaus"} ;
+lin multautua_VK = {s = c52A "multautua"} ;
+lin multava_NK = {s = d10 "multava"} ;
+lin multavuus_NK = {s = d40 "multavuus"} ;
+lin multilateraalinen_NK = {s = d38 "multilateraalinen"} ;
+lin multippeli_NK = {s = d05 "multippeli"} ;
+lin multivisio_NK = {s = d03 "multivisio"} ;
+lin mumina_NK = {s = d12 "mumina"} ;
+lin mumista_VK = {s = c66 "mumista"} ;
+lin mummeli_NK = {s = d06 "mummeli"} ;
+lin mummi_NK = {s = d05 "mummi"} ;
+lin mummo_NK = {s = d01 "mummo"} ;
+lin mummola_NK = {s = d12 "mummola"} ;
+lin mummu_NK = {s = d01 "mummu"} ;
+lin muna_NK = {s = d10 "muna"} ;
+lin munainen_NK = {s = d38 "munainen"} ;
+lin munakas_NK = {s = d41A "munakas"} ;
+lin munankuori_NK = {s = d26 "munankuori"} ;
+lin munaskuu_NK = {s = d18 "munaskuu"} ;
+lin munata_VK = {s = c73 "munata"} ;
+lin munaus_NK = {s = d39 "munaus"} ;
+lin munavoi_NK = {s = d18 "munavoi"} ;
+lin munia_VK = {s = c61 "munia"} ;
+lin muninta_NK = {s = d09A "muninta"} ;
+lin munittaa_VK = {s = c53A "munittaa"} ;
+lin munitus_NK = {s = d39 "munitus"} ;
+lin munkisto_NK = {s = d01 "munkisto"} ;
+lin munkki_NK = {s = d05A "munkki"} ;
+lin munkkius_NK = {s = d40 "munkkius"} ;
+lin munuainen_NK = {s = d38 "munuainen"} ;
+lin munuaiskera'nen_NK = {s = d38 "munuaiskeränen"} ;
+lin munuaismainen_NK = {s = d38 "munuaismainen"} ;
+lin muodikas_AK = {s = d41A "muodikas"} ;
+--+ lin muodikkaasti_AdvK = {s = c99 "muodikkaasti"} ;
+lin muodikkuus_NK = {s = d40 "muodikkuus"} ;
+lin muodistaa_VK = {s = c53 "muodistaa"} ;
+lin muodokas_NK = {s = d41A "muodokas"} ;
+lin muodollinen_AK = {s = d38 "muodollinen"} ;
+--+ lin muodollisesti_AdvK = {s = c99 "muodollisesti"} ;
+lin muodollisuus_NK = {s = d40 "muodollisuus"} ;
+lin muodonta_NK = {s = d09A "muodonta"} ;
+lin muodontaa_VK = {s = c54A "muodontaa"} ;
+lin muodostaa_VK = {s = c53 "muodostaa"} ;
+lin muodostaja_NK = {s = d10 "muodostaja"} ;
+lin muodoste_NK = {s = d48 "muodoste"} ;
+lin muodosteilla_AdvK = {s = c99 "muodosteilla"} ;
+lin muodostella_VK = {s = c67 "muodostella"} ;
+lin muodostelma_NK = {s = d10 "muodostelma"} ;
+lin muodostelu_NK = {s = d02 "muodostelu"} ;
+lin muodostua_VK = {s = c52 "muodostua"} ;
+lin muodostuma_NK = {s = d10 "muodostuma"} ;
+lin muodostus_NK = {s = d39 "muodostus"} ;
+lin muodota_VK = {s = c75A "muodota"} ;
+lin muodoton_NK = {s = d34A "muodoton"} ;
+lin muodottomuus_NK = {s = d40 "muodottomuus"} ;
+lin muokata_VK = {s = c73A "muokata"} ;
+lin muokattavuus_NK = {s = d40 "muokattavuus"} ;
+lin muokkaaja_NK = {s = d10 "muokkaaja"} ;
+lin muokkaantua_VK = {s = c52A "muokkaantua"} ;
+lin muokkain_NK = {s = d33 "muokkain"} ;
+lin muokkaus_NK = {s = d39 "muokkaus"} ;
+lin muokkautua_VK = {s = c52A "muokkautua"} ;
+lin muokkautuvuus_NK = {s = d40 "muokkautuvuus"} ;
+lin muona_NK = {s = d10 "muona"} ;
+lin muonittaa_VK = {s = c53A "muonittaa"} ;
+lin muonittamo_NK = {s = d02 "muonittamo"} ;
+lin muonitus_NK = {s = d39 "muonitus"} ;
+lin muori_NK = {s = d05 "muori"} ;
+lin muorinen_AdvK = {s = c99 "muorinen"} ;
+lin muoti_NK = {s = d05A "muoti"} ;
+lin muoto_NK = {s = d01A "muoto"} ;
+lin muotoilija_NK = {s = d12 "muotoilija"} ;
+lin muotoilla_VK = {s = c67 "muotoilla"} ;
+lin muotoilu_NK = {s = d02 "muotoilu"} ;
+lin muotoinen_NK = {s = d38 "muotoinen"} ;
+lin muotoisuus_NK = {s = d40 "muotoisuus"} ;
+lin muotoutua_VK = {s = c52A "muotoutua"} ;
+lin muotoutuma_NK = {s = d10 "muotoutuma"} ;
+lin muotti_NK = {s = d05A "muotti"} ;
+lin muovaantua_VK = {s = c52A "muovaantua"} ;
+lin muovailla_VK = {s = c67 "muovailla"} ;
+lin muovailu_NK = {s = d02 "muovailu"} ;
+lin muovata_VK = {s = c73 "muovata"} ;
+lin muovauma_NK = {s = d10 "muovauma"} ;
+lin muovaus_NK = {s = d39 "muovaus"} ;
+lin muovautua_VK = {s = c52A "muovautua"} ;
+lin muovautuma_NK = {s = d10 "muovautuma"} ;
+lin muovautuva_NK = {s = d10 "muovautuva"} ;
+lin muovautuvuus_NK = {s = d40 "muovautuvuus"} ;
+lin muovi_NK = {s = d05 "muovi"} ;
+lin muovinen_NK = {s = d38 "muovinen"} ;
+lin muovittaa_VK = {s = c53A "muovittaa"} ;
+lin muovitus_NK = {s = d39 "muovitus"} ;
+lin mura_NK = {s = d10 "mura"} ;
+lin murahdella_VK = {s = c67A "murahdella"} ;
+lin murahdus_NK = {s = d39 "murahdus"} ;
+lin murahtaa_VK = {s = c53A "murahtaa"} ;
+lin murahtelu_NK = {s = d02 "murahtelu"} ;
+lin muratti_NK = {s = d05A "muratti"} ;
+lin murea_NK = {s = d15 "murea"} ;
+lin mureena_NK = {s = d13 "mureena"} ;
+lin murehduttaa_VK = {s = c53A "murehduttaa"} ;
+lin murehtia_VK = {s = c61A "murehtia"} ;
+lin mureke_NK = {s = d48A "mureke"} ;
+lin muren_NK = {s = d49 "muren"} ;
+lin murena_NK = {s = d11 "murena"} ;
+lin murene_NK = {s = d49 "murene"} ;
+lin murennus_NK = {s = d39 "murennus"} ;
+lin murentaa_VK = {s = c54A "murentaa"} ;
+lin murentua_VK = {s = c52A "murentua"} ;
+lin mureta_VK = {s = c72 "mureta"} ;
+lin mureus_NK = {s = d40 "mureus"} ;
+lin mureuttaa_VK = {s = c53A "mureuttaa"} ;
+lin mureutua_VK = {s = c52A "mureutua"} ;
+lin murha_NK = {s = d10 "murha"} ;
+lin murhaaja_NK = {s = d10 "murhaaja"} ;
+lin murhaava_AK = {s = d10 "murhaava"} ;
+--+ lin murhaavasti_AdvK = {s = c99 "murhaavasti"} ;
+lin murhata_VK = {s = c73 "murhata"} ;
+lin murhauttaa_VK = {s = c53A "murhauttaa"} ;
+lin murhe_NK = {s = d48 "murhe"} ;
+lin murheellinen_AK = {s = d38 "murheellinen"} ;
+--+ lin murheellisesti_AdvK = {s = c99 "murheellisesti"} ;
+lin murheellisuus_NK = {s = d40 "murheellisuus"} ;
+lin murheenkryyni_NK = {s = d05 "murheenkryyni"} ;
+lin murheinen_NK = {s = d38 "murheinen"} ;
+lin murheissaan_AdvK = {s = c99 "murheissaan"} ;
+lin murhemielelle_AdvK = {s = c99 "murhemielelle"} ;
+lin murhemielella'_AdvK = {s = c99 "murhemielellä"} ;
+lin murhemielin_AdvK = {s = c99 "murhemielin"} ;
+lin murikka_NK = {s = d14A "murikka"} ;
+lin murina_NK = {s = d12 "murina"} ;
+lin murista_VK = {s = c66 "murista"} ;
+lin murjaani_NK = {s = d06 "murjaani"} ;
+lin murjaista_VK = {s = c66 "murjaista"} ;
+lin murjoa_VK = {s = c52 "murjoa"} ;
+lin murjottaa_VK = {s = c53A "murjottaa"} ;
+lin murjottaja_NK = {s = d10 "murjottaja"} ;
+lin murjotus_NK = {s = d39 "murjotus"} ;
+lin murjoutua_VK = {s = c52A "murjoutua"} ;
+lin murju_NK = {s = d01 "murju"} ;
+lin murkina_NK = {s = d12 "murkina"} ;
+lin murkinoida_VK = {s = c68 "murkinoida"} ;
+lin murkinointi_NK = {s = d05A "murkinointi"} ;
+lin murkku_1_NK = {s = d01A "murkku"} ;
+lin murkku_2_NK = {s = d01A "murkku"} ;
+lin murmeli_NK = {s = d06 "murmeli"} ;
+lin muro_NK = {s = d01 "muro"} ;
+lin murre_NK = {s = d48A "murre"} ;
+lin murrokko_NK = {s = d04A "murrokko"} ;
+lin murros_NK = {s = d39 "murros"} ;
+lin murrosaika_NK = {s = d09A "murrosaika"} ;
+lin murrostaa_VK = {s = c53 "murrostaa"} ;
+lin murroste_NK = {s = d48 "murroste"} ;
+lin murrostus_NK = {s = d39 "murrostus"} ;
+lin murska_NK = {s = d10 "murska"} ;
+lin murskaaja_NK = {s = d10 "murskaaja"} ;
+lin murskaamo_NK = {s = d02 "murskaamo"} ;
+lin murskaantua_VK = {s = c52A "murskaantua"} ;
+lin murskaava_AK = {s = d10 "murskaava"} ;
+--+ lin murskaavasti_AdvK = {s = c99 "murskaavasti"} ;
+lin murskain_NK = {s = d33 "murskain"} ;
+lin murskaksi_AdvK = {s = c99 "murskaksi"} ;
+lin murskana_AdvK = {s = c99 "murskana"} ;
+lin murskata_VK = {s = c73 "murskata"} ;
+lin murskaus_NK = {s = d39 "murskaus"} ;
+lin murskautua_VK = {s = c52A "murskautua"} ;
+lin murske_NK = {s = d48 "murske"} ;
+lin mursu_NK = {s = d01 "mursu"} ;
+lin murtaa_VK = {s = c54A "murtaa"} ;
+lin murtaja_NK = {s = d10 "murtaja"} ;
+lin murtautua_VK = {s = c52A "murtautua"} ;
+lin murtautuja_NK = {s = d10 "murtautuja"} ;
+lin murteellinen_AK = {s = d38 "murteellinen"} ;
+--+ lin murteellisesti_AdvK = {s = c99 "murteellisesti"} ;
+lin murteellisuus_NK = {s = d40 "murteellisuus"} ;
+lin murteinen_NK = {s = d38 "murteinen"} ;
+lin murteisto_NK = {s = d01 "murteisto"} ;
+lin murteittain_AdvK = {s = c99 "murteittain"} ;
+lin murto_NK = {s = d01A "murto"} ;
+lin murtokohta_NK = {s = d10A "murtokohta"} ;
+lin murtsikka_NK = {s = d14A "murtsikka"} ;
+lin murtua_VK = {s = c52A "murtua"} ;
+lin murtuma_NK = {s = d10 "murtuma"} ;
+lin murtumakohta_NK = {s = d10A "murtumakohta"} ;
+lin murtumaton_NK = {s = d34A "murtumaton"} ;
+lin murtumattomuus_NK = {s = d40 "murtumattomuus"} ;
+lin murtuvuus_NK = {s = d40 "murtuvuus"} ;
+lin muru_NK = {s = d01 "muru"} ;
+lin muruinen_NK = {s = d38 "muruinen"} ;
+lin murunen_NK = {s = d38 "murunen"} ;
+lin murustaa_VK = {s = c53 "murustaa"} ;
+lin murustua_VK = {s = c52 "murustua"} ;
+lin musa_NK = {s = d10 "musa"} ;
+lin musaka_NK = {s = d13 "musaka"} ;
+lin museaalinen_NK = {s = d38 "museaalinen"} ;
+lin museo_NK = {s = d03 "museo"} ;
+lin museoida_VK = {s = c62 "museoida"} ;
+lin museointi_NK = {s = d05A "museointi"} ;
+lin museoitua_VK = {s = c52A "museoitua"} ;
+lin musertaa_VK = {s = c54A "musertaa"} ;
+lin musertava_NK = {s = d10 "musertava"} ;
+lin musertua_VK = {s = c52A "musertua"} ;
+lin musiikillinen_AK = {s = d38 "musiikillinen"} ;
+--+ lin musiikillisesti_AdvK = {s = c99 "musiikillisesti"} ;
+lin musiikki_NK = {s = d05A "musiikki"} ;
+lin musikaali_NK = {s = d05 "musikaali"} ;
+lin musikaalinen_AK = {s = d38 "musikaalinen"} ;
+--+ lin musikaalisesti_AdvK = {s = c99 "musikaalisesti"} ;
+lin musikaalisuus_NK = {s = d40 "musikaalisuus"} ;
+lin musikantti_NK = {s = d05A "musikantti"} ;
+lin musikka_NK = {s = d14A "musikka"} ;
+lin musikologia_NK = {s = d12 "musikologia"} ;
+lin musisoida_VK = {s = c62 "musisoida"} ;
+lin musisointi_NK = {s = d05A "musisointi"} ;
+lin muskatelli_NK = {s = d05 "muskatelli"} ;
+lin muskatti_NK = {s = d05A "muskatti"} ;
+lin muskeli_NK = {s = d06 "muskeli"} ;
+lin musketti_NK = {s = d05A "musketti"} ;
+lin musketo'o'ri_NK = {s = d05 "musketööri"} ;
+lin muskotti_NK = {s = d05A "muskotti"} ;
+lin musliini_NK = {s = d06 "musliini"} ;
+lin muslimi_NK = {s = d06 "muslimi"} ;
+lin mussu_NK = {s = d01 "mussu"} ;
+lin mussuttaa_VK = {s = c53A "mussuttaa"} ;
+lin must_AdvK = {s = c99 "must"} ;
+lin musta_NK = {s = d10 "musta"} ;
+lin mustajuuri_NK = {s = d26 "mustajuuri"} ;
+lin mustamaalata_VK = {s = c73 "mustamaalata"} ;
+lin mustangi_NK = {s = d05 "mustangi"} ;
+lin mustasukkainen_AK = {s = d38 "mustasukkainen"} ;
+--+ lin mustasukkaisesti_AdvK = {s = c99 "mustasukkaisesti"} ;
+lin mustasukkaisuus_NK = {s = d40 "mustasukkaisuus"} ;
+lin mustata_VK = {s = c73 "mustata"} ;
+lin muste_NK = {s = d48 "muste"} ;
+lin mustelma_NK = {s = d10 "mustelma"} ;
+lin mustenee_VK = {s = c72 "mustenee"} ;
+lin mustentaa_VK = {s = c54A "mustentaa"} ;
+lin musteta_VK = {s = c72 "musteta"} ;
+lin mustikka_NK = {s = d14A "mustikka"} ;
+lin mustikkainen_NK = {s = d38 "mustikkainen"} ;
+lin mustua_VK = {s = c52 "mustua"} ;
+lin mustuainen_NK = {s = d38 "mustuainen"} ;
+lin mustuma_NK = {s = d10 "mustuma"} ;
+lin mustuttaa_VK = {s = c53A "mustuttaa"} ;
+lin mustuus_NK = {s = d40 "mustuus"} ;
+lin mut_AdvK = {s = c99 "mut"} ;
+lin muta_NK = {s = d10A "muta"} ;
+lin mutaatio_NK = {s = d03 "mutaatio"} ;
+lin mutageeninen_NK = {s = d38 "mutageeninen"} ;
+lin mutageenisuus_NK = {s = d40 "mutageenisuus"} ;
+lin mutainen_NK = {s = d38 "mutainen"} ;
+lin mutantti_NK = {s = d05A "mutantti"} ;
+lin mutatoitua_VK = {s = c52A "mutatoitua"} ;
+lin mutina_NK = {s = d12 "mutina"} ;
+lin mutista_VK = {s = c66 "mutista"} ;
+lin mutka_NK = {s = d10 "mutka"} ;
+lin mutkainen_NK = {s = d38 "mutkainen"} ;
+lin mutkallinen_NK = {s = d38 "mutkallinen"} ;
+lin mutkaton_NK = {s = d34A "mutkaton"} ;
+lin mutkattomasti_AdvK = {s = c99 "mutkattomasti"} ;
+lin mutkikas_AK = {s = d41A "mutkikas"} ;
+--+ lin mutkikkaasti_AdvK = {s = c99 "mutkikkaasti"} ;
+lin mutkikkuus_NK = {s = d40 "mutkikkuus"} ;
+lin mutkistaa_VK = {s = c53 "mutkistaa"} ;
+lin mutkistua_VK = {s = c52 "mutkistua"} ;
+lin mutkistuttaa_VK = {s = c53A "mutkistuttaa"} ;
+lin mutkitella_VK = {s = c67A "mutkitella"} ;
+lin mutristaa_VK = {s = c53 "mutristaa"} ;
+lin mutristella_VK = {s = c67 "mutristella"} ;
+lin mutruilla_VK = {s = c67 "mutruilla"} ;
+lin mutrulla_AdvK = {s = c99 "mutrulla"} ;
+lin mutrullaan_AdvK = {s = c99 "mutrullaan"} ;
+lin mutrulle_AdvK = {s = c99 "mutrulle"} ;
+lin mutrulleen_AdvK = {s = c99 "mutrulleen"} ;
+lin mutrussa_AdvK = {s = c99 "mutrussa"} ;
+lin mutruun_AdvK = {s = c99 "mutruun"} ;
+lin mutsi_NK = {s = d05 "mutsi"} ;
+lin mutta_AdvK = {s = c99 "mutta"} ;
+lin mutteri_NK = {s = d06 "mutteri"} ;
+lin mutu_1_NK = {s = d01 "mutu"} ;
+lin mutu_2_NK = {s = d01 "mutu"} ;
+lin mutustaa_VK = {s = c53 "mutustaa"} ;
+lin mutustella_VK = {s = c67 "mutustella"} ;
+lin mutustelu_NK = {s = d02 "mutustelu"} ;
+lin muu_NK = {s = d18 "muu"} ;
+lin muualla_AdvK = {s = c99 "muualla"} ;
+lin muualle_AdvK = {s = c99 "muualle"} ;
+lin muualta_AdvK = {s = c99 "muualta"} ;
+lin muuanne_AdvK = {s = c99 "muuanne"} ;
+lin muukalaisittain_AdvK = {s = c99 "muukalaisittain"} ;
+lin muukalaispassi_NK = {s = d05 "muukalaispassi"} ;
+lin muukalaistua_VK = {s = c52 "muukalaistua"} ;
+lin muuli_NK = {s = d05 "muuli"} ;
+lin muulloin_AdvK = {s = c99 "muulloin"} ;
+lin muumio_NK = {s = d03 "muumio"} ;
+lin muumioida_VK = {s = c62 "muumioida"} ;
+lin muumioitua_VK = {s = c52A "muumioitua"} ;
+lin muunlainen_NK = {s = d38 "muunlainen"} ;
+lin muun_muassa_AdvK = {s = c99 "muun muassa"} ;
+lin muunnella_VK = {s = c67A "muunnella"} ;
+lin muunnelma_NK = {s = d10 "muunnelma"} ;
+lin muunnin_NK = {s = d33A "muunnin"} ;
+lin muunnos_NK = {s = d39 "muunnos"} ;
+lin muuntaa_VK = {s = c54A "muuntaa"} ;
+lin muuntaja_NK = {s = d10 "muuntaja"} ;
+lin muuntamo_NK = {s = d02 "muuntamo"} ;
+lin muuntautua_VK = {s = c52A "muuntautua"} ;
+lin muuntelu_NK = {s = d02 "muuntelu"} ;
+lin muunto_NK = {s = d01A "muunto"} ;
+lin muuntokerroin_NK = {s = d33A "muuntokerroin"} ;
+lin muuntua_VK = {s = c52A "muuntua"} ;
+lin muurahainen_NK = {s = d38 "muurahainen"} ;
+lin muurain_NK = {s = d33 "muurain"} ;
+lin muurari_NK = {s = d06 "muurari"} ;
+lin muurata_VK = {s = c73 "muurata"} ;
+lin muuraus_NK = {s = d39 "muuraus"} ;
+lin muurautua_VK = {s = c52A "muurautua"} ;
+lin muuri_NK = {s = d05 "muuri"} ;
+lin muurittaa_VK = {s = c53A "muurittaa"} ;
+lin muusa_NK = {s = d10 "muusa"} ;
+lin muusata_VK = {s = c73 "muusata"} ;
+lin muusi_NK = {s = d05 "muusi"} ;
+lin muusikko_NK = {s = d04A "muusikko"} ;
+lin muusikkous_NK = {s = d40 "muusikkous"} ;
+lin muutama_NK = {s = d10 "muutama"} ;
+lin muutattaa_VK = {s = c53A "muutattaa"} ;
+lin muutella_VK = {s = c67A "muutella"} ;
+lin muuten_AdvK = {s = c99 "muuten"} ;
+lin muutoin_AdvK = {s = c99 "muutoin"} ;
+lin muutos_NK = {s = d39 "muutos"} ;
+lin muuttaa_VK = {s = c53A "muuttaa"} ;
+lin muuttaja_NK = {s = d10 "muuttaja"} ;
+lin muutto_NK = {s = d01A "muutto"} ;
+lin muuttoaika_NK = {s = d09A "muuttoaika"} ;
+lin muuttua_VK = {s = c52A "muuttua"} ;
+lin muuttuja_NK = {s = d10 "muuttuja"} ;
+lin muuttuma_NK = {s = d10 "muuttuma"} ;
+lin muuttumaton_NK = {s = d34A "muuttumaton"} ;
+lin muuttumattomuus_NK = {s = d40 "muuttumattomuus"} ;
+lin muuttuvainen_NK = {s = d38 "muuttuvainen"} ;
+lin muuttuvaisuus_NK = {s = d40 "muuttuvaisuus"} ;
+lin muuttuvuus_NK = {s = d40 "muuttuvuus"} ;
+lin myhky_NK = {s = d01 "myhky"} ;
+lin myhkyra'_NK = {s = d12 "myhkyrä"} ;
+lin myha'hdella'_VK = {s = c67A "myhähdellä"} ;
+lin myha'hdys_NK = {s = d39 "myhähdys"} ;
+lin myha'hta'a'_VK = {s = c53A "myhähtää"} ;
+lin myha'illa'_VK = {s = c67 "myhäillä"} ;
+lin myha'ily_NK = {s = d02 "myhäily"} ;
+lin mykero'_NK = {s = d02 "mykerö"} ;
+lin mykistytta'a'_VK = {s = c53A "mykistyttää"} ;
+lin mykistya'_VK = {s = c52 "mykistyä"} ;
+lin mykista'a'_VK = {s = c53 "mykistää"} ;
+lin mykio'_NK = {s = d03 "mykiö"} ;
+lin mykkyra'_NK = {s = d12 "mykkyrä"} ;
+lin mykkyys_NK = {s = d40 "mykkyys"} ;
+lin mykka'_NK = {s = d10A "mykkä"} ;
+lin mykologia_NK = {s = d12 "mykologia"} ;
+lin mykorritsa_NK = {s = d09 "mykorritsa"} ;
+lin myky_NK = {s = d01 "myky"} ;
+lin myllerrys_NK = {s = d39 "myllerrys"} ;
+lin myllerta'a'_VK = {s = c54A "myllertää"} ;
+lin mylly_NK = {s = d01 "mylly"} ;
+lin myllytta'a'_VK = {s = c53A "myllyttää"} ;
+lin myllytys_NK = {s = d39 "myllytys"} ;
+lin mylla'kka'_NK = {s = d14A "mylläkkä"} ;
+lin mylla'ri_NK = {s = d06 "mylläri"} ;
+lin mylla'ta'_VK = {s = c73 "myllätä"} ;
+lin mylvinta'_NK = {s = d09A "mylvintä"} ;
+lin mylvina'_NK = {s = d12 "mylvinä"} ;
+lin mylvia'_VK = {s = c61 "mylviä"} ;
+lin mylva'hdys_NK = {s = d39 "mylvähdys"} ;
+lin mylva'hta'a'_VK = {s = c53A "mylvähtää"} ;
+lin mynka'a'n_AdvK = {s = c99 "mynkään"} ;
+lin myntti_NK = {s = d05A "myntti"} ;
+lin myooma_NK = {s = d10 "myooma"} ;
+lin myrha_NK = {s = d10 "myrha"} ;
+lin myriadi_NK = {s = d05 "myriadi"} ;
+lin myrkky_NK = {s = d01A "myrkky"} ;
+lin myrkyllinen_AK = {s = d38 "myrkyllinen"} ;
+--+ lin myrkyllisesti_AdvK = {s = c99 "myrkyllisesti"} ;
+lin myrkyllisyys_NK = {s = d40 "myrkyllisyys"} ;
+lin myrkyttya'_VK = {s = c52A "myrkyttyä"} ;
+lin myrkytta'a'_VK = {s = c53A "myrkyttää"} ;
+lin myrkytys_NK = {s = d39 "myrkytys"} ;
+lin myrkyto'n_NK = {s = d34A "myrkytön"} ;
+lin myrsky_NK = {s = d01 "myrsky"} ;
+lin myrskyinen_NK = {s = d38 "myrskyinen"} ;
+--+ lin myrskyisa'sti_AdvK = {s = c99 "myrskyisästi"} ;
+lin myrskyta'_VK = {s = c75 "myrskytä"} ;
+lin myrtsi_NK = {s = d05 "myrtsi"} ;
+lin myrtti_NK = {s = d05A "myrtti"} ;
+lin myrtya'_VK = {s = c52A "myrtyä"} ;
+lin myra'kka'_NK = {s = d14A "myräkkä"} ;
+lin myski_NK = {s = d05 "myski"} ;
+lin mysli_NK = {s = d05 "mysli"} ;
+lin myssy_NK = {s = d01 "myssy"} ;
+lin mysteeri_NK = {s = d06 "mysteeri"} ;
+lin mysteerio_NK = {s = d03 "mysteerio"} ;
+lin mystifikaatio_NK = {s = d03 "mystifikaatio"} ;
+lin mystifioida_VK = {s = c62 "mystifioida"} ;
+lin mystifiointi_NK = {s = d05A "mystifiointi"} ;
+lin mystiikka_NK = {s = d14A "mystiikka"} ;
+lin mystikko_NK = {s = d04A "mystikko"} ;
+lin mystinen_AK = {s = d38 "mystinen"} ;
+--+ lin mystisesti_AdvK = {s = c99 "mystisesti"} ;
+lin mystisyys_NK = {s = d40 "mystisyys"} ;
+lin mytologi_NK = {s = d05 "mytologi"} ;
+lin mytologia_NK = {s = d12 "mytologia"} ;
+lin mytologinen_NK = {s = d38 "mytologinen"} ;
+lin mytty_NK = {s = d01A "mytty"} ;
+lin myyda'_VK = {s = c63 "myydä"} ;
+lin myyja'_NK = {s = d10 "myyjä"} ;
+--? lin myyja'iset_NK = {s = d38 "myyjäiset"} ;
+lin myyja'ta'r_NK = {s = d32A "myyjätär"} ;
+lin myyma'la'_NK = {s = d12 "myymälä"} ;
+lin myynninedista'minen_NK = {s = d38 "myynninedistäminen"} ;
+lin myynti_NK = {s = d05A "myynti"} ;
+lin myyra'_NK = {s = d10 "myyrä"} ;
+lin myytillinen_NK = {s = d38 "myytillinen"} ;
+lin myytisto'_NK = {s = d02 "myytistö"} ;
+lin myytti_NK = {s = d05A "myytti"} ;
+lin myyttinen_NK = {s = d38 "myyttinen"} ;
+lin myyttisyys_NK = {s = d40 "myyttisyys"} ;
+lin myyty_NK = {s = d01A "myyty"} ;
+lin myo'den_AdvK = {s = c99 "myöden"} ;
+lin myo'da'_VK = {s = c64 "myödä"} ;
+lin myo'da'ta'_VK = {s = c73A "myödätä"} ;
+lin myo'hemmin_AdvK = {s = c99 "myöhemmin"} ;
+lin myo'hemma'_AdvK = {s = c99 "myöhemmä"} ;
+lin myo'hemma'ksi_AdvK = {s = c99 "myöhemmäksi"} ;
+lin myo'hemma's_AdvK = {s = c99 "myöhemmäs"} ;
+lin myo'hempa'a'n_AdvK = {s = c99 "myöhempään"} ;
+lin myo'hentya'_VK = {s = c52A "myöhentyä"} ;
+lin myo'henta'a'_VK = {s = c54A "myöhentää"} ;
+lin myo'ha'_NK = {s = d10 "myöhä"} ;
+lin myo'ha'inen_NK = {s = d38 "myöhäinen"} ;
+lin myo'ha'iseen_AdvK = {s = c99 "myöhäiseen"} ;
+lin myo'ha'isglasiaaliaika_NK = {s = d09A "myöhäisglasiaaliaika"} ;
+lin myo'ha'isglasiaalinen_NK = {s = d38 "myöhäisglasiaalinen"} ;
+lin myo'ha'isinta'a'n_AdvK = {s = c99 "myöhäisintään"} ;
+lin myo'ha'iskeskiaika_NK = {s = d09A "myöhäiskeskiaika"} ;
+lin myo'ha'lle_AdvK = {s = c99 "myöhälle"} ;
+lin myo'ha'lla'_AdvK = {s = c99 "myöhällä"} ;
+lin myo'ha'ssa'_AdvK = {s = c99 "myöhässä"} ;
+lin myo'ha'stella'_VK = {s = c67 "myöhästellä"} ;
+lin myo'ha'stymisaika_NK = {s = d09A "myöhästymisaika"} ;
+lin myo'ha'stytta'a'_VK = {s = c53A "myöhästyttää"} ;
+lin myo'ha'stya'_VK = {s = c52 "myöhästyä"} ;
+lin myo'ha'a'n_AdvK = {s = c99 "myöhään"} ;
+lin myo'nnella'_VK = {s = c67A "myönnellä"} ;
+lin myo'nnytella'_VK = {s = c67A "myönnytellä"} ;
+lin myo'nnytys_NK = {s = d39 "myönnytys"} ;
+lin myo'nteinen_AK = {s = d38 "myönteinen"} ;
+--+ lin myo'nteisesti_AdvK = {s = c99 "myönteisesti"} ;
+lin myo'nteisyys_NK = {s = d40 "myönteisyys"} ;
+lin myo'ntymys_NK = {s = d39 "myöntymys"} ;
+lin myo'ntyma'tto'myys_NK = {s = d40 "myöntymättömyys"} ;
+lin myo'ntyma'to'n_NK = {s = d34A "myöntymätön"} ;
+lin myo'ntyvyys_NK = {s = d40 "myöntyvyys"} ;
+lin myo'ntyva'_AK = {s = d10 "myöntyvä"} ;
+lin myo'ntyva'inen_NK = {s = d38 "myöntyväinen"} ;
+--+ lin myo'ntyva'sti_AdvK = {s = c99 "myöntyvästi"} ;
+lin myo'ntya'_VK = {s = c52A "myöntyä"} ;
+lin myo'nta'ja'_NK = {s = d10 "myöntäjä"} ;
+lin myo'nta'va'_AK = {s = d10 "myöntävä"} ;
+--+ lin myo'nta'va'sti_AdvK = {s = c99 "myöntävästi"} ;
+lin myo'nta'a'_VK = {s = c54A "myöntää"} ;
+lin myo'nto'_NK = {s = d01A "myöntö"} ;
+lin myo's_AdvK = {s = c99 "myös"} ;
+lin myo'skin_AdvK = {s = c99 "myöskin"} ;
+lin myo'ska'a'n_AdvK = {s = c99 "myöskään"} ;
+lin myo'sta'a'_VK = {s = c53 "myöstää"} ;
+lin myo'sto'_NK = {s = d01 "myöstö"} ;
+lin myo'ten_AdvK = {s = c99 "myöten"} ;
+lin myo'ta'_AdvK = {s = c99 "myötä"} ;
+lin myo'ta'ilija'_NK = {s = d12 "myötäilijä"} ;
+lin myo'ta'illa'_VK = {s = c67 "myötäillä"} ;
+lin myo'ta'ily_NK = {s = d02 "myötäily"} ;
+lin myo'ta'inen_AK = {s = d38 "myötäinen"} ;
+--+ lin myo'ta'isesti_AdvK = {s = c99 "myötäisesti"} ;
+--? lin myo'ta'ja'iset_NK = {s = d38 "myötäjäiset"} ;
+lin myo'ta'karvaan_AdvK = {s = c99 "myötäkarvaan"} ;
+lin myo'ta'le_NK = {s = d48 "myötäle"} ;
+--+ lin myo'ta'mielisesti_AdvK = {s = c99 "myötämielisesti"} ;
+lin myo'ta'pa'iva'a'n_AdvK = {s = c99 "myötäpäivään"} ;
+lin myo'ta'sukaan_AdvK = {s = c99 "myötäsukaan"} ;
+--+ lin myo'ta'tuntoisesti_AdvK = {s = c99 "myötätuntoisesti"} ;
+lin myo'ta'a'nsa'_AdvK = {s = c99 "myötäänsä"} ;
+lin ma'da'nnytta'a'_VK = {s = c53A "mädännyttää"} ;
+lin ma'da'nna'inen_NK = {s = d38 "mädännäinen"} ;
+lin ma'da'nna'isyys_NK = {s = d40 "mädännäisyys"} ;
+lin ma'da'ntya'_VK = {s = c52A "mädäntyä"} ;
+lin ma'da'tta'mo'_NK = {s = d02 "mädättämö"} ;
+lin ma'da'tta'a'_VK = {s = c53A "mädättää"} ;
+lin ma'da'tys_NK = {s = d39 "mädätys"} ;
+lin ma'da'ta'_VK = {s = c72A "mädätä"} ;
+lin ma'hka'_NK = {s = d10 "mähkä"} ;
+lin ma'iha'_NK = {s = d10 "mäihä"} ;
+lin ma'ike_NK = {s = d48A "mäike"} ;
+lin ma'ikya'_VK = {s = c52A "mäikyä"} ;
+lin ma'ika'a'_VK = {s = c78 "mäikää"} ;
+lin ma'iske_NK = {s = d48 "mäiske"} ;
+lin ma'iskia'_VK = {s = c61 "mäiskiä"} ;
+lin ma'iskytta'a'_VK = {s = c53A "mäiskyttää"} ;
+lin ma'iskytys_NK = {s = d39 "mäiskytys"} ;
+lin ma'iskya'_VK = {s = c52 "mäiskyä"} ;
+lin ma'iska'hdella'_VK = {s = c67A "mäiskähdellä"} ;
+lin ma'iska'hdys_NK = {s = d39 "mäiskähdys"} ;
+lin ma'iska'hta'a'_VK = {s = c53A "mäiskähtää"} ;
+lin ma'iska'ys_NK = {s = d39 "mäiskäys"} ;
+lin ma'iska'ytta'a'_VK = {s = c53A "mäiskäyttää"} ;
+lin ma'iska'a'_VK = {s = c78 "mäiskää"} ;
+lin ma'ja'hdella'_VK = {s = c67A "mäjähdellä"} ;
+lin ma'ja'hdys_NK = {s = d39 "mäjähdys"} ;
+lin ma'ja'hta'a'_VK = {s = c53A "mäjähtää"} ;
+lin ma'ja'ys_NK = {s = d39 "mäjäys"} ;
+lin ma'ja'ytta'a'_VK = {s = c53A "mäjäyttää"} ;
+lin ma'ki_NK = {s = d07A "mäki"} ;
+lin ma'kinen_NK = {s = d38 "mäkinen"} ;
+lin ma'kisyys_NK = {s = d40 "mäkisyys"} ;
+lin ma'ka'ra'_NK = {s = d11 "mäkärä"} ;
+lin ma'ka'ra'inen_NK = {s = d38 "mäkäräinen"} ;
+lin ma'ka'tta'a'_VK = {s = c53A "mäkättää"} ;
+lin ma'ka'tys_NK = {s = d39 "mäkätys"} ;
+lin ma'lli_1_NK = {s = d05 "mälli"} ;
+lin ma'lli_2_NK = {s = d05 "mälli"} ;
+lin ma'lla'ta'_VK = {s = c73 "mällätä"} ;
+lin ma'lsa'_NK = {s = d10 "mälsä"} ;
+lin ma'mmi_NK = {s = d05 "mämmi"} ;
+lin ma'nnikko'_NK = {s = d04A "männikkö"} ;
+lin ma'nnisto'_NK = {s = d02 "männistö"} ;
+lin ma'ntti_1_NK = {s = d05A "mäntti"} ;
+lin ma'ntti_2_NK = {s = d05A "mäntti"} ;
+lin ma'nty_NK = {s = d01A "mänty"} ;
+lin ma'ntyinen_NK = {s = d38 "mäntyinen"} ;
+lin ma'nta'_NK = {s = d10A "mäntä"} ;
+lin ma'rehtija'_NK = {s = d12 "märehtijä"} ;
+lin ma'rehtia'_VK = {s = c61A "märehtiä"} ;
+lin ma'rkile_NK = {s = d48 "märkile"} ;
+lin ma'rkia'_VK = {s = c61A "märkiä"} ;
+lin ma'rkyys_NK = {s = d40 "märkyys"} ;
+lin ma'rka'_NK = {s = d10A "märkä"} ;
+lin ma'rka'inen_NK = {s = d38 "märkäinen"} ;
+lin ma'rssy_NK = {s = d01 "märssy"} ;
+lin ma'sis_NK = {s = d39 "mäsis"} ;
+lin ma'ski_NK = {s = d05 "mäski"} ;
+lin ma'ska'ksi_AdvK = {s = c99 "mäskäksi"} ;
+lin ma'ska'na'_AdvK = {s = c99 "mäskänä"} ;
+lin ma'ska'ta'_VK = {s = c73 "mäskätä"} ;
+lin ma'ska'ys_NK = {s = d39 "mäskäys"} ;
+lin ma'ssytta'a'_VK = {s = c53A "mässyttää"} ;
+lin ma'ssa'ilija'_NK = {s = d12 "mässäilijä"} ;
+lin ma'ssa'illa'_VK = {s = c67 "mässäillä"} ;
+lin ma'ssa'ily_NK = {s = d02 "mässäily"} ;
+lin ma'ssa'ta'_VK = {s = c73 "mässätä"} ;
+lin ma'ssa'ys_NK = {s = d39 "mässäys"} ;
+lin ma'sa'_NK = {s = d10 "mäsä"} ;
+lin ma'ti_NK = {s = d05A "mäti"} ;
+lin ma'tkia'_VK = {s = c61 "mätkiä"} ;
+lin ma'tky_NK = {s = d01 "mätky"} ;
+lin ma'tka'hdella'_VK = {s = c67A "mätkähdellä"} ;
+lin ma'tka'hdys_NK = {s = d39 "mätkähdys"} ;
+lin ma'tka'hta'a'_VK = {s = c53A "mätkähtää"} ;
+lin ma'tka'ista'_VK = {s = c66 "mätkäistä"} ;
+lin ma'tka'ta'_VK = {s = c73 "mätkätä"} ;
+lin ma'tka'ys_NK = {s = d39 "mätkäys"} ;
+lin ma'tka'ytta'a'_VK = {s = c53A "mätkäyttää"} ;
+lin ma'tka'ytys_NK = {s = d39 "mätkäytys"} ;
+lin ma'tta'ikko'_NK = {s = d04A "mättäikkö"} ;
+lin ma'tta'inen_NK = {s = d38 "mättäinen"} ;
+lin ma'tta'a'_VK = {s = c53A "mättää"} ;
+lin ma'ta'_NK = {s = d10A "mätä"} ;
+lin ma'ta'inen_NK = {s = d38 "mätäinen"} ;
+lin ma'ta's_NK = {s = d41A "mätäs"} ;
+lin ma'ta'stys_NK = {s = d39 "mätästys"} ;
+lin ma'ta'stya'_VK = {s = c52 "mätästyä"} ;
+lin ma'ta'sta'va'_NK = {s = d10 "mätästävä"} ;
+lin ma'ta'sta'a'_VK = {s = c53 "mätästää"} ;
+lin ma'yra'_NK = {s = d10 "mäyrä"} ;
+lin ma'ystin_NK = {s = d33 "mäystin"} ;
+lin ma'a'inta'_NK = {s = d09A "määintä"} ;
+lin ma'a'kina'_NK = {s = d13 "määkinä"} ;
+lin ma'a'kia'_VK = {s = c61A "määkiä"} ;
+lin ma'a'kya'_VK = {s = c52A "määkyä"} ;
+lin ma'a're_NK = {s = d48 "määre"} ;
+lin ma'a'rite_NK = {s = d48A "määrite"} ;
+lin ma'a'ritella'_VK = {s = c67A "määritellä"} ;
+lin ma'a'ritelma'_NK = {s = d10 "määritelmä"} ;
+lin ma'a'rittelema'to'n_NK = {s = d34A "määrittelemätön"} ;
+lin ma'a'rittely_NK = {s = d02 "määrittely"} ;
+lin ma'a'ritta'a'_VK = {s = c53A "määrittää"} ;
+lin ma'a'ritys_NK = {s = d39 "määritys"} ;
+lin ma'a'rly_NK = {s = d01 "määrly"} ;
+lin ma'a'ra'_NK = {s = d10 "määrä"} ;
+lin ma'a'ra'aika_NK = {s = d09A "määräaika"} ;
+lin ma'a'ra'ileva'_AK = {s = d10 "määräilevä"} ;
+--+ lin ma'a'ra'ileva'sti_AdvK = {s = c99 "määräilevästi"} ;
+lin ma'a'ra'illa'_VK = {s = c67 "määräillä"} ;
+lin ma'a'ra'ily_NK = {s = d02 "määräily"} ;
+lin ma'a'ra'inen_AK = {s = d38 "määräinen"} ;
+--+ lin ma'a'ra'isesti_AdvK = {s = c99 "määräisesti"} ;
+lin ma'a'ra'koko_NK = {s = d01A "määräkoko"} ;
+lin ma'a'ra'llinen_AK = {s = d38 "määrällinen"} ;
+--+ lin ma'a'ra'llisesti_AdvK = {s = c99 "määrällisesti"} ;
+lin ma'a'ra'tty_NK = {s = d01A "määrätty"} ;
+lin ma'a'ra'tto'ma'sti_AdvK = {s = c99 "määrättömästi"} ;
+lin ma'a'ra'ta'_VK = {s = c73 "määrätä"} ;
+lin ma'a'ra'to'n_NK = {s = d34A "määrätön"} ;
+lin ma'a'ra'ys_NK = {s = d39 "määräys"} ;
+lin ma'a'ra'ytya'_VK = {s = c52A "määräytyä"} ;
+lin ma'a'ra'a'ja'_NK = {s = d10 "määrääjä"} ;
+lin ma'a'ra'a'ma'to'n_NK = {s = d34A "määräämätön"} ;
+lin ma'a'ra'a'va'_AK = {s = d10 "määräävä"} ;
+--+ lin ma'a'ra'a'va'sti_AdvK = {s = c99 "määräävästi"} ;
+lin mo'hka'le_NK = {s = d48 "möhkäle"} ;
+lin mo'hlia'_VK = {s = c61 "möhliä"} ;
+lin mo'hla'ta'_VK = {s = c73 "möhlätä"} ;
+lin mo'hla'ys_NK = {s = d39 "möhläys"} ;
+lin mo'kellys_NK = {s = d39 "mökellys"} ;
+lin mo'kelta'a'_VK = {s = c54A "mökeltää"} ;
+lin mo'kkeilla'_VK = {s = c67 "mökkeillä"} ;
+lin mo'kkeily_NK = {s = d02 "mökkeily"} ;
+lin mo'kki_NK = {s = d05A "mökki"} ;
+lin mo'kkila'inen_NK = {s = d38 "mökkiläinen"} ;
+lin mo'ka'_NK = {s = d10 "mökä"} ;
+lin mo'ko'tta'ja'_NK = {s = d10 "mököttäjä"} ;
+lin mo'ko'tta'a'_VK = {s = c53A "mököttää"} ;
+lin mo'ko'tys_NK = {s = d39 "mökötys"} ;
+lin mo'lina'_NK = {s = d13 "mölinä"} ;
+lin mo'lista'_VK = {s = c66 "mölistä"} ;
+lin mo'lli_NK = {s = d05 "mölli"} ;
+lin mo'llo'tta'a'_VK = {s = c53A "möllöttää"} ;
+lin mo'ly_NK = {s = d01 "möly"} ;
+lin mo'lyta'_VK = {s = c75 "mölytä"} ;
+lin mo'la'hdys_NK = {s = d39 "mölähdys"} ;
+lin mo'la'hta'a'_VK = {s = c53A "mölähtää"} ;
+lin mo'la'ytta'a'_VK = {s = c53A "möläyttää"} ;
+lin mo'lo'tta'a'_VK = {s = c53A "mölöttää"} ;
+lin mo'lo'tys_NK = {s = d39 "mölötys"} ;
+lin mo'mmo'_NK = {s = d01 "mömmö"} ;
+lin mo'nja'_NK = {s = d10 "mönjä"} ;
+lin mo'nja'ta'_VK = {s = c73 "mönjätä"} ;
+lin mo'nkija'_NK = {s = d12 "mönkijä"} ;
+lin mo'nkia'_VK = {s = c61A "mönkiä"} ;
+lin mo'nkia'inen_NK = {s = d38 "mönkiäinen"} ;
+lin mo'nka'a'n_AdvK = {s = c99 "mönkään"} ;
+lin mo'rea'_NK = {s = d15 "möreä"} ;
+lin mo'rina'_NK = {s = d13 "mörinä"} ;
+lin mo'rista'_VK = {s = c66 "möristä"} ;
+lin mo'rkki_NK = {s = d05A "mörkki"} ;
+lin mo'rko'_NK = {s = d01A "mörkö"} ;
+lin mo'rsky_NK = {s = d01 "mörsky"} ;
+lin mo'rska'_NK = {s = d10 "mörskä"} ;
+lin mo'rssa'ri_NK = {s = d06 "mörssäri"} ;
+lin mo'ra'hdys_NK = {s = d39 "mörähdys"} ;
+lin mo'ra'hta'a'_VK = {s = c53A "mörähtää"} ;
+lin mo'ra'kka'_NK = {s = d14A "möräkkä"} ;
+lin mo'ro'ko'lli_NK = {s = d05 "mörökölli"} ;
+lin mo'sso'_NK = {s = d01 "mössö"} ;
+lin mo'tikka'_NK = {s = d14A "mötikkä"} ;
+lin mo'tti_NK = {s = d05A "mötti"} ;
+lin mo'yhennin_NK = {s = d33A "möyhennin"} ;
+lin mo'yhennys_NK = {s = d39 "möyhennys"} ;
+lin mo'yhenta'a'_VK = {s = c54A "möyhentää"} ;
+lin mo'yhea'_NK = {s = d15 "möyheä"} ;
+lin mo'yhia'_VK = {s = c61 "möyhiä"} ;
+lin mo'yhy_NK = {s = d01 "möyhy"} ;
+lin mo'ykky_NK = {s = d01A "möykky"} ;
+lin mo'ykkyinen_NK = {s = d38 "möykkyinen"} ;
+lin mo'ykka'_NK = {s = d10A "möykkä"} ;
+lin mo'yka'ta'_VK = {s = c73A "möykätä"} ;
+lin mo'yrinta'_NK = {s = d09A "möyrintä"} ;
+lin mo'yrina'_NK = {s = d13 "möyrinä"} ;
+lin mo'yria'_VK = {s = c61 "möyriä"} ;
+lin mo'yryta'_VK = {s = c75 "möyrytä"} ;
+lin mo'o'peli_NK = {s = d06 "mööpeli"} ;
+lin naakka_NK = {s = d09A "naakka"} ;
+lin naali_NK = {s = d05 "naali"} ;
+lin naama_NK = {s = d09 "naama"} ;
+lin naamainen_NK = {s = d38 "naamainen"} ;
+lin naamari_NK = {s = d06 "naamari"} ;
+--? lin naamiaiset_NK = {s = d38 "naamiaiset"} ;
+lin naamio_NK = {s = d03 "naamio"} ;
+lin naamioida_VK = {s = c62 "naamioida"} ;
+lin naamioija_NK = {s = d10 "naamioija"} ;
+lin naamiointi_NK = {s = d05A "naamiointi"} ;
+lin naamioitsija_NK = {s = d12 "naamioitsija"} ;
+lin naamioitua_VK = {s = c52A "naamioitua"} ;
+lin naapukka_NK = {s = d14A "naapukka"} ;
+lin naapuri_NK = {s = d06 "naapuri"} ;
+lin naapuristo_NK = {s = d01 "naapuristo"} ;
+--? lin naapurukset_NK = {s = d39 "naapurukset"} ;
+lin naapurusto_NK = {s = d01 "naapurusto"} ;
+lin naapuruus_NK = {s = d40 "naapuruus"} ;
+lin naara_NK = {s = d09 "naara"} ;
+lin naaras_NK = {s = d41 "naaras"} ;
+lin naarata_VK = {s = c73 "naarata"} ;
+lin naaraus_NK = {s = d39 "naaraus"} ;
+lin naarmu_NK = {s = d01 "naarmu"} ;
+lin naarmuinen_NK = {s = d38 "naarmuinen"} ;
+lin naarmuttaa_VK = {s = c53A "naarmuttaa"} ;
+lin naarmuttua_VK = {s = c52A "naarmuttua"} ;
+lin naarmutus_NK = {s = d39 "naarmutus"} ;
+lin naarmuuntua_VK = {s = c52A "naarmuuntua"} ;
+lin naatti_NK = {s = d05A "naatti"} ;
+lin naava_NK = {s = d09 "naava"} ;
+lin naavainen_NK = {s = d38 "naavainen"} ;
+lin naavoittua_VK = {s = c52A "naavoittua"} ;
+lin nafta_NK = {s = d09 "nafta"} ;
+lin naftaleeni_NK = {s = d05 "naftaleeni"} ;
+lin naftaliini_NK = {s = d05 "naftaliini"} ;
+lin nafti_AK = {s = d05 "nafti"} ;
+--+ lin naftisti_AdvK = {s = c99 "naftisti"} ;
+lin nahas_NK = {s = d39 "nahas"} ;
+lin nahikas_NK = {s = d41A "nahikas"} ;
+lin nahina_NK = {s = d12 "nahina"} ;
+lin nahinoida_VK = {s = c62 "nahinoida"} ;
+lin nahinointi_NK = {s = d05A "nahinointi"} ;
+lin nahista_VK = {s = c66 "nahista"} ;
+lin nahistella_VK = {s = c67 "nahistella"} ;
+lin nahistelu_NK = {s = d02 "nahistelu"} ;
+lin nahistua_VK = {s = c52 "nahistua"} ;
+lin nahjus_NK = {s = d39 "nahjus"} ;
+lin nahjustella_VK = {s = c67 "nahjustella"} ;
+lin nahka_NK = {s = d09 "nahka"} ;
+lin nahkainen_NK = {s = d38 "nahkainen"} ;
+lin nahkaisuus_NK = {s = d40 "nahkaisuus"} ;
+lin nahkea_NK = {s = d15 "nahkea"} ;
+lin nahkiainen_NK = {s = d38 "nahkiainen"} ;
+lin nahkoa_VK = {s = c52 "nahkoa"} ;
+lin nahkuri_NK = {s = d06 "nahkuri"} ;
+lin nahoittaa_VK = {s = c53A "nahoittaa"} ;
+lin nahoitus_NK = {s = d39 "nahoitus"} ;
+lin naida_VK = {s = c62 "naida"} ;
+lin naiivi_AK = {s = d05 "naiivi"} ;
+--+ lin naiivisti_AdvK = {s = c99 "naiivisti"} ;
+lin naiivius_NK = {s = d40 "naiivius"} ;
+lin naikkonen_NK = {s = d38 "naikkonen"} ;
+lin nailon_NK = {s = d06 "nailon"} ;
+lin nailoninen_NK = {s = d38 "nailoninen"} ;
+lin naimaton_NK = {s = d34A "naimaton"} ;
+lin naimattomuus_NK = {s = d40 "naimattomuus"} ;
+lin naimisiin_AdvK = {s = c99 "naimisiin"} ;
+lin naimisissa_AdvK = {s = c99 "naimisissa"} ;
+lin nainen_NK = {s = d38 "nainen"} ;
+lin nainti_NK = {s = d05A "nainti"} ;
+lin nainut_NK = {s = d47 "nainut"} ;
+lin naisellinen_AK = {s = d38 "naisellinen"} ;
+--+ lin naisellisesti_AdvK = {s = c99 "naisellisesti"} ;
+lin naisellisuus_NK = {s = d40 "naisellisuus"} ;
+lin naiseus_NK = {s = d40 "naiseus"} ;
+lin naisisto_NK = {s = d01 "naisisto"} ;
+lin naisistua_VK = {s = c52 "naisistua"} ;
+lin naismainen_AK = {s = d38 "naismainen"} ;
+--+ lin naismaisesti_AdvK = {s = c99 "naismaisesti"} ;
+lin naismaisuus_NK = {s = d40 "naismaisuus"} ;
+lin naispari_NK = {s = d05 "naispari"} ;
+lin naistennaurattaja_NK = {s = d10 "naistennaurattaja"} ;
+lin naistenvihaaja_NK = {s = d10 "naistenvihaaja"} ;
+lin naisuus_NK = {s = d40 "naisuus"} ;
+lin naisvaltaistua_VK = {s = c52 "naisvaltaistua"} ;
+lin naittaa_VK = {s = c56A "naittaa"} ;
+lin naittaja_NK = {s = d10 "naittaja"} ;
+lin naivismi_NK = {s = d05 "naivismi"} ;
+lin naivisti_NK = {s = d05 "naivisti"} ;
+lin naivistinen_NK = {s = d38 "naivistinen"} ;
+lin nakata_VK = {s = c73A "nakata"} ;
+lin nakella_VK = {s = c67A "nakella"} ;
+lin nakerrella_VK = {s = c67A "nakerrella"} ;
+lin nakerrus_NK = {s = d39 "nakerrus"} ;
+lin nakertaa_VK = {s = c54A "nakertaa"} ;
+lin nakkelu_NK = {s = d02 "nakkelu"} ;
+lin nakki_1_NK = {s = d05A "nakki"} ;
+lin nakki_2_NK = {s = d05A "nakki"} ;
+lin nakki_3_NK = {s = d05A "nakki"} ;
+lin nakki_4_NK = {s = d05A "nakki"} ;
+lin naksaa_VK = {s = c78 "naksaa"} ;
+lin naksahdella_VK = {s = c67A "naksahdella"} ;
+lin naksahdus_NK = {s = d39 "naksahdus"} ;
+lin naksahtaa_VK = {s = c53A "naksahtaa"} ;
+lin naksaus_NK = {s = d39 "naksaus"} ;
+lin naksautella_VK = {s = c67A "naksautella"} ;
+lin naksauttaa_VK = {s = c53A "naksauttaa"} ;
+lin naksautus_NK = {s = d39 "naksautus"} ;
+lin naksu_NK = {s = d01 "naksu"} ;
+lin naksua_VK = {s = c52 "naksua"} ;
+lin naksutella_VK = {s = c67A "naksutella"} ;
+lin naksuttaa_VK = {s = c53A "naksuttaa"} ;
+lin naku_NK = {s = d01 "naku"} ;
+lin nakutella_VK = {s = c67A "nakutella"} ;
+lin nakuttaa_VK = {s = c53A "nakuttaa"} ;
+lin nakutus_NK = {s = d39 "nakutus"} ;
+lin naljailija_NK = {s = d12 "naljailija"} ;
+lin naljailla_VK = {s = c67 "naljailla"} ;
+lin naljailu_NK = {s = d02 "naljailu"} ;
+lin nalkissa_AdvK = {s = c99 "nalkissa"} ;
+lin nalkkiin_AdvK = {s = c99 "nalkkiin"} ;
+lin nalkuttaa_VK = {s = c53A "nalkuttaa"} ;
+lin nalkutus_NK = {s = d39 "nalkutus"} ;
+lin nalle_NK = {s = d08 "nalle"} ;
+lin nalli_1_NK = {s = d05 "nalli"} ;
+lin nalli_2_NK = {s = d05 "nalli"} ;
+lin nallikka_NK = {s = d14A "nallikka"} ;
+lin nami_NK = {s = d05 "nami"} ;
+lin namikka_NK = {s = d14A "namikka"} ;
+lin namu_NK = {s = d01 "namu"} ;
+lin namunen_NK = {s = d38 "namunen"} ;
+lin nanna_NK = {s = d09 "nanna"} ;
+lin napa_NK = {s = d09A "napa"} ;
+lin napainen_NK = {s = d38 "napainen"} ;
+lin napaisuus_NK = {s = d40 "napaisuus"} ;
+lin napakasti_AdvK = {s = c99 "napakasti"} ;
+lin napakka_NK = {s = d14A "napakka"} ;
+lin napalm_NK = {s = d05 "napalm"} ;
+lin napanteri_NK = {s = d06 "napanteri"} ;
+lin napata_VK = {s = c73A "napata"} ;
+lin napataatta_NK = {s = d09A "napataatta"} ;
+lin napaus_NK = {s = d39 "napaus"} ;
+lin napauttaa_VK = {s = c53A "napauttaa"} ;
+lin napautus_NK = {s = d39 "napautus"} ;
+lin napeerata_VK = {s = c73 "napeerata"} ;
+lin napero_NK = {s = d02 "napero"} ;
+lin napillinen_NK = {s = d38 "napillinen"} ;
+lin napina_NK = {s = d12 "napina"} ;
+lin napinla'pi_NK = {s = d07A "napinläpi"} ;
+lin napisija_NK = {s = d12 "napisija"} ;
+lin napista_VK = {s = c66 "napista"} ;
+lin napittaa_VK = {s = c53A "napittaa"} ;
+lin napitus_NK = {s = d39 "napitus"} ;
+lin napostella_VK = {s = c67 "napostella"} ;
+lin napostelu_NK = {s = d02 "napostelu"} ;
+lin nappa_NK = {s = d09A "nappa"} ;
+lin nappailla_VK = {s = c67 "nappailla"} ;
+lin nappi_NK = {s = d05A "nappi"} ;
+lin nappinen_NK = {s = d38 "nappinen"} ;
+lin nappo_NK = {s = d01A "nappo"} ;
+lin nappula_NK = {s = d12 "nappula"} ;
+lin naprapaatti_NK = {s = d05A "naprapaatti"} ;
+lin naprapatia_NK = {s = d12 "naprapatia"} ;
+lin napsaa_VK = {s = c78 "napsaa"} ;
+lin napsahdella_VK = {s = c67A "napsahdella"} ;
+lin napsahdus_NK = {s = d39 "napsahdus"} ;
+lin napsahtaa_VK = {s = c53A "napsahtaa"} ;
+lin napsaus_NK = {s = d39 "napsaus"} ;
+lin napsautella_VK = {s = c67A "napsautella"} ;
+lin napsauttaa_VK = {s = c53A "napsauttaa"} ;
+lin napsia_VK = {s = c61 "napsia"} ;
+lin napsu_NK = {s = d01 "napsu"} ;
+lin napsua_VK = {s = c52 "napsua"} ;
+lin napsutella_VK = {s = c67A "napsutella"} ;
+lin napsuttaa_VK = {s = c53A "napsuttaa"} ;
+lin napukka_NK = {s = d14A "napukka"} ;
+lin naputella_VK = {s = c67A "naputella"} ;
+lin naputtaa_VK = {s = c53A "naputtaa"} ;
+lin naputus_NK = {s = d39 "naputus"} ;
+lin narahdella_VK = {s = c67A "narahdella"} ;
+lin narahdus_NK = {s = d39 "narahdus"} ;
+lin narahtaa_VK = {s = c53A "narahtaa"} ;
+lin narauttaa_VK = {s = c53A "narauttaa"} ;
+lin narikka_NK = {s = d14A "narikka"} ;
+lin narina_NK = {s = d12 "narina"} ;
+lin narista_VK = {s = c66 "narista"} ;
+lin narisuttaa_VK = {s = c53A "narisuttaa"} ;
+lin narkata_VK = {s = c73A "narkata"} ;
+lin narkkari_NK = {s = d06 "narkkari"} ;
+lin narkkaus_NK = {s = d39 "narkkaus"} ;
+lin narkkis_NK = {s = d39 "narkkis"} ;
+lin narkomaani_NK = {s = d05 "narkomaani"} ;
+lin narkomania_NK = {s = d12 "narkomania"} ;
+lin narkoosi_NK = {s = d06 "narkoosi"} ;
+lin narkoottinen_NK = {s = d38 "narkoottinen"} ;
+lin narrailla_VK = {s = c67 "narrailla"} ;
+lin narrata_VK = {s = c73 "narrata"} ;
+lin narraus_NK = {s = d39 "narraus"} ;
+lin narri_NK = {s = d05 "narri"} ;
+--+ lin narrimaisesti_AdvK = {s = c99 "narrimaisesti"} ;
+lin narrimaisuus_NK = {s = d40 "narrimaisuus"} ;
+lin narrius_NK = {s = d40 "narrius"} ;
+lin narsismi_NK = {s = d05 "narsismi"} ;
+lin narsissi_NK = {s = d05 "narsissi"} ;
+lin narsisti_NK = {s = d05 "narsisti"} ;
+lin narsistinen_AK = {s = d38 "narsistinen"} ;
+--+ lin narsistisesti_AdvK = {s = c99 "narsistisesti"} ;
+lin narsistisuus_NK = {s = d40 "narsistisuus"} ;
+lin narskahdella_VK = {s = c67A "narskahdella"} ;
+lin narskahdus_NK = {s = d39 "narskahdus"} ;
+lin narskahtaa_VK = {s = c53A "narskahtaa"} ;
+lin narskauttaa_VK = {s = c53A "narskauttaa"} ;
+lin narske_NK = {s = d48 "narske"} ;
+lin narsku_NK = {s = d01 "narsku"} ;
+lin narskua_VK = {s = c52 "narskua"} ;
+lin narskunta_NK = {s = d09A "narskunta"} ;
+lin narskuttaa_VK = {s = c53A "narskuttaa"} ;
+lin narskutus_NK = {s = d39 "narskutus"} ;
+lin narttu_NK = {s = d01A "narttu"} ;
+lin naru_NK = {s = d01 "naru"} ;
+lin naruttaa_VK = {s = c53A "naruttaa"} ;
+lin narutus_NK = {s = d39 "narutus"} ;
+lin nasakka_NK = {s = d14A "nasakka"} ;
+lin nasaretilainen_NK = {s = d38 "nasaretilainen"} ;
+lin naseva_AK = {s = d10 "naseva"} ;
+--+ lin nasevasti_AdvK = {s = c99 "nasevasti"} ;
+lin nasevoida_VK = {s = c62 "nasevoida"} ;
+lin nasevoittaa_VK = {s = c53A "nasevoittaa"} ;
+lin nasevoitua_VK = {s = c52A "nasevoitua"} ;
+lin nasevuus_NK = {s = d40 "nasevuus"} ;
+lin naskali_1_NK = {s = d06 "naskali"} ;
+lin naskali_2_NK = {s = d06 "naskali"} ;
+lin nassakka_NK = {s = d14A "nassakka"} ;
+lin nasse_NK = {s = d08 "nasse"} ;
+lin nassikka_NK = {s = d14A "nassikka"} ;
+lin nassu_1_NK = {s = d01 "nassu"} ;
+lin nassu_2_NK = {s = d01 "nassu"} ;
+lin nasta_NK = {s = d09 "nasta"} ;
+lin nastata_VK = {s = c73 "nastata"} ;
+lin nastaus_NK = {s = d39 "nastaus"} ;
+lin nastoittaa_VK = {s = c53A "nastoittaa"} ;
+lin nastoitus_NK = {s = d39 "nastoitus"} ;
+lin nasu_NK = {s = d01 "nasu"} ;
+lin nata_NK = {s = d09A "nata"} ;
+lin nataliteetti_NK = {s = d05A "nataliteetti"} ;
+lin natina_NK = {s = d12 "natina"} ;
+lin nationalismi_NK = {s = d05 "nationalismi"} ;
+lin nationalisti_NK = {s = d05 "nationalisti"} ;
+lin nationalistinen_NK = {s = d38 "nationalistinen"} ;
+lin natista_VK = {s = c66 "natista"} ;
+lin natisuttaa_VK = {s = c53A "natisuttaa"} ;
+lin nato_NK = {s = d01A "nato"} ;
+lin natrium_NK = {s = d05 "natrium"} ;
+lin natriumkloridi_NK = {s = d05 "natriumkloridi"} ;
+lin natsa_NK = {s = d09 "natsa"} ;
+lin natsata_VK = {s = c73 "natsata"} ;
+lin natsi_NK = {s = d05 "natsi"} ;
+lin natsismi_NK = {s = d05 "natsismi"} ;
+lin naturalismi_NK = {s = d05 "naturalismi"} ;
+lin naturalisti_NK = {s = d05 "naturalisti"} ;
+lin naturalistinen_NK = {s = d38 "naturalistinen"} ;
+lin naturismi_NK = {s = d05 "naturismi"} ;
+lin naturisti_NK = {s = d05 "naturisti"} ;
+lin natustaa_VK = {s = c53 "natustaa"} ;
+lin natustella_VK = {s = c67 "natustella"} ;
+lin naudikas_NK = {s = d41A "naudikas"} ;
+lin nauha_NK = {s = d09 "nauha"} ;
+lin nauhoite_NK = {s = d48A "nauhoite"} ;
+lin nauhoittaa_VK = {s = c53A "nauhoittaa"} ;
+lin nauhoitus_NK = {s = d39 "nauhoitus"} ;
+lin nauhuri_NK = {s = d06 "nauhuri"} ;
+lin naukaista_VK = {s = c66 "naukaista"} ;
+lin naukaisu_NK = {s = d02 "naukaisu"} ;
+lin naukata_VK = {s = c73A "naukata"} ;
+lin naukkailla_VK = {s = c67 "naukkailla"} ;
+lin naukkailu_NK = {s = d02 "naukkailu"} ;
+lin naukku_NK = {s = d01A "naukku"} ;
+lin naukua_VK = {s = c52A "naukua"} ;
+lin naula_NK = {s = d09 "naula"} ;
+lin naulain_NK = {s = d33 "naulain"} ;
+lin naulakko_NK = {s = d04A "naulakko"} ;
+lin naulata_VK = {s = c73 "naulata"} ;
+lin naulaus_NK = {s = d39 "naulaus"} ;
+lin nauliintua_VK = {s = c52A "nauliintua"} ;
+lin naulita_VK = {s = c69 "naulita"} ;
+lin nauliutua_VK = {s = c52A "nauliutua"} ;
+lin nauraa_VK = {s = c56 "nauraa"} ;
+lin naurahdella_VK = {s = c67A "naurahdella"} ;
+lin naurahdus_NK = {s = d39 "naurahdus"} ;
+lin naurahtaa_VK = {s = c53A "naurahtaa"} ;
+lin nauraja_NK = {s = d10 "nauraja"} ;
+lin naurattaa_VK = {s = c53A "naurattaa"} ;
+lin naurattaja_NK = {s = d10 "naurattaja"} ;
+lin naureskella_VK = {s = c67 "naureskella"} ;
+lin naureskelu_NK = {s = d02 "naureskelu"} ;
+lin naurettava_AK = {s = d10 "naurettava"} ;
+--+ lin naurettavasti_AdvK = {s = c99 "naurettavasti"} ;
+lin naurettavuus_NK = {s = d40 "naurettavuus"} ;
+lin nauris_NK = {s = d41 "nauris"} ;
+lin nauru_NK = {s = d01 "nauru"} ;
+lin naurunalainen_NK = {s = d38 "naurunalainen"} ;
+lin naurunalaistaa_VK = {s = c53 "naurunalaistaa"} ;
+lin naurusuin_AdvK = {s = c99 "naurusuin"} ;
+lin nauta_NK = {s = d09A "nauta"} ;
+lin nautiikka_NK = {s = d09A "nautiikka"} ;
+lin nautinnokas_NK = {s = d41A "nautinnokas"} ;
+lin nautinnollinen_AK = {s = d38 "nautinnollinen"} ;
+--+ lin nautinnollisesti_AdvK = {s = c99 "nautinnollisesti"} ;
+lin nautinnollisuus_NK = {s = d40 "nautinnollisuus"} ;
+lin nautinta_NK = {s = d09A "nautinta"} ;
+lin nautinta_aika_NK = {s = d09A "nautinta-aika"} ;
+lin nautinto_NK = {s = d01A "nautinto"} ;
+lin nautiskelija_NK = {s = d12 "nautiskelija"} ;
+lin nautiskella_VK = {s = c67 "nautiskella"} ;
+lin nautiskelu_NK = {s = d02 "nautiskelu"} ;
+lin nautittava_AK = {s = d10 "nautittava"} ;
+--+ lin nautittavasti_AdvK = {s = c99 "nautittavasti"} ;
+lin nautittavuus_NK = {s = d40 "nautittavuus"} ;
+lin nauttia_VK = {s = c61A "nauttia"} ;
+lin nauttija_NK = {s = d12 "nauttija"} ;
+lin nau_unta_NK = {s = d09A "nau'unta"} ;
+lin navaho_NK = {s = d02 "navaho"} ;
+lin navajo_NK = {s = d02 "navajo"} ;
+lin navakasti_AdvK = {s = c99 "navakasti"} ;
+lin navakka_NK = {s = d14A "navakka"} ;
+lin navakkuus_NK = {s = d40 "navakkuus"} ;
+lin navakoitua_VK = {s = c52A "navakoitua"} ;
+lin navallisuus_NK = {s = d40 "navallisuus"} ;
+lin navetta_NK = {s = d14A "navetta"} ;
+lin navigaatio_NK = {s = d03 "navigaatio"} ;
+lin navigaattori_NK = {s = d06 "navigaattori"} ;
+lin navigoida_VK = {s = c62 "navigoida"} ;
+lin navigoija_NK = {s = d10 "navigoija"} ;
+lin navigointi_NK = {s = d05A "navigointi"} ;
+lin neekeri_NK = {s = d06 "neekeri"} ;
+lin nega_NK = {s = d09 "nega"} ;
+lin negaatio_NK = {s = d03 "negaatio"} ;
+lin negatiivi_NK = {s = d05 "negatiivi"} ;
+lin negatiivinen_AK = {s = d38 "negatiivinen"} ;
+--+ lin negatiivisesti_AdvK = {s = c99 "negatiivisesti"} ;
+lin negatiivisuus_NK = {s = d40 "negatiivisuus"} ;
+lin negridinen_NK = {s = d38 "negridinen"} ;
+lin negrospirituaali_NK = {s = d05 "negrospirituaali"} ;
+lin neiditella'_VK = {s = c67A "neiditellä"} ;
+lin neilikka_NK = {s = d14A "neilikka"} ;
+lin neiti_NK = {s = d05A "neiti"} ;
+lin neito_NK = {s = d01A "neito"} ;
+lin neitokainen_NK = {s = d38 "neitokainen"} ;
+lin neitonen_NK = {s = d38 "neitonen"} ;
+lin neitseellinen_AK = {s = d38 "neitseellinen"} ;
+--+ lin neitseellisesti_AdvK = {s = c99 "neitseellisesti"} ;
+lin neitseellisyys_NK = {s = d40 "neitseellisyys"} ;
+lin neitsyt_NK = {s = d43 "neitsyt"} ;
+lin neitsyys_NK = {s = d40 "neitsyys"} ;
+lin nekku_NK = {s = d01A "nekku"} ;
+lin nekrologi_NK = {s = d05 "nekrologi"} ;
+lin nekroosi_NK = {s = d05 "nekroosi"} ;
+lin nekroottinen_NK = {s = d38 "nekroottinen"} ;
+lin nekrotisoitua_VK = {s = c52A "nekrotisoitua"} ;
+lin nekru_NK = {s = d01 "nekru"} ;
+lin nektari_NK = {s = d06 "nektari"} ;
+lin nektariini_NK = {s = d05 "nektariini"} ;
+lin neli_1_NK = {s = d05 "neli"} ;
+lin nelikanavainen_NK = {s = d38 "nelikanavainen"} ;
+lin nelikko_NK = {s = d04A "nelikko"} ;
+lin nelikko'_NK = {s = d04A "nelikkö"} ;
+--+ lin nelika'tisesti_AdvK = {s = c99 "nelikätisesti"} ;
+lin nelilappeinen_NK = {s = d38 "nelilappeinen"} ;
+lin nelilo'_NK = {s = d02 "nelilö"} ;
+--+ lin nelinkertaisesti_AdvK = {s = c99 "nelinkertaisesti"} ;
+lin nelinkertaistaa_VK = {s = c53 "nelinkertaistaa"} ;
+lin nelinkertaistua_VK = {s = c52 "nelinkertaistua"} ;
+lin nelinkontin_AdvK = {s = c99 "nelinkontin"} ;
+lin nelipyo'ra'veto_NK = {s = d01A "nelipyöräveto"} ;
+lin nelisen_AdvK = {s = c99 "nelisen"} ;
+lin nelisenkymmenta'_AdvK = {s = c99 "nelisenkymmentä"} ;
+lin nelisin_AdvK = {s = c99 "nelisin"} ;
+lin neliskanttinen_NK = {s = d38 "neliskanttinen"} ;
+lin nelista'a'_VK = {s = c53 "nelistää"} ;
+lin nelista'a'n_AdvK = {s = c99 "nelistään"} ;
+lin nelitta'in_AdvK = {s = c99 "nelittäin"} ;
+--+ lin nelia'a'nisesti_AdvK = {s = c99 "neliäänisesti"} ;
+lin nelio'_NK = {s = d03 "neliö"} ;
+lin nelio'ida'_VK = {s = c62 "neliöidä"} ;
+lin nelio'inti_NK = {s = d05A "neliöinti"} ;
+lin nelio'itta'in_AdvK = {s = c99 "neliöittäin"} ;
+lin nelio'juuri_NK = {s = d26 "neliöjuuri"} ;
+lin nelja'_NK = {s = d10 "neljä"} ;
+lin nelja'ka's_NK = {s = d41A "neljäkäs"} ;
+lin nelja'nnes_NK = {s = d39 "neljännes"} ;
+lin nelja's_NK = {s = d45 "neljäs"} ;
+lin nelja'sti_AdvK = {s = c99 "neljästi"} ;
+lin nelja'sta'a'n_AdvK = {s = c99 "neljästään"} ;
+lin nelkku_NK = {s = d01A "nelkku"} ;
+lin nelonen_NK = {s = d38 "nelonen"} ;
+lin nelson_NK = {s = d06 "nelson"} ;
+lin nenetsi_NK = {s = d05 "nenetsi"} ;
+lin nenu_NK = {s = d01 "nenu"} ;
+lin nena'_NK = {s = d10 "nenä"} ;
+lin nena'inen_NK = {s = d38 "nenäinen"} ;
+lin nena'kkyys_NK = {s = d40 "nenäkkyys"} ;
+lin nena'kka'in_AdvK = {s = c99 "nenäkkäin"} ;
+--+ lin nena'kka'a'sti_AdvK = {s = c99 "nenäkkäästi"} ;
+lin nena'ka's_AK = {s = d41A "nenäkäs"} ;
+lin nena'njuuri_NK = {s = d26 "nenänjuuri"} ;
+lin nena'tti_NK = {s = d05A "nenätti"} ;
+lin nena'tysten_AdvK = {s = c99 "nenätysten"} ;
+lin neodyymi_NK = {s = d05 "neodyymi"} ;
+lin neoliittinen_NK = {s = d38 "neoliittinen"} ;
+lin neologismi_NK = {s = d05 "neologismi"} ;
+lin neon_NK = {s = d05 "neon"} ;
+lin nepata_VK = {s = c73A "nepata"} ;
+lin nepitta'a'_VK = {s = c53A "nepittää"} ;
+lin nepotismi_NK = {s = d05 "nepotismi"} ;
+lin neppari_NK = {s = d06 "neppari"} ;
+lin neppaus_NK = {s = d39 "neppaus"} ;
+lin neppi_NK = {s = d05A "neppi"} ;
+lin nero_NK = {s = d01 "nero"} ;
+lin nerokas_AK = {s = d41A "nerokas"} ;
+--+ lin nerokkaasti_AdvK = {s = c99 "nerokkaasti"} ;
+lin nerokkuus_NK = {s = d40 "nerokkuus"} ;
+lin neronleimaus_NK = {s = d39 "neronleimaus"} ;
+lin nerous_NK = {s = d40 "nerous"} ;
+lin nesessa'a'ri_NK = {s = d05 "nesessääri"} ;
+lin neste_NK = {s = d48 "neste"} ;
+lin nesteinen_NK = {s = d38 "nesteinen"} ;
+lin nestema'inen_NK = {s = d38 "nestemäinen"} ;
+lin nesteytin_NK = {s = d33A "nesteytin"} ;
+lin nesteytta'a'_VK = {s = c53A "nesteyttää"} ;
+lin nesteytys_NK = {s = d39 "nesteytys"} ;
+lin nesteytya'_VK = {s = c52A "nesteytyä"} ;
+lin nestor_NK = {s = d06 "nestor"} ;
+lin netiketti_NK = {s = d05A "netiketti"} ;
+lin netota_VK = {s = c74A "netota"} ;
+lin netto_NK = {s = d01A "netto"} ;
+lin nettoaika_NK = {s = d09A "nettoaika"} ;
+lin neukku_NK = {s = d01A "neukku"} ;
+lin neula_NK = {s = d09 "neula"} ;
+lin neulanen_NK = {s = d38 "neulanen"} ;
+lin neulasisto_NK = {s = d01 "neulasisto"} ;
+lin neulasto_NK = {s = d02 "neulasto"} ;
+lin neulata_VK = {s = c73 "neulata"} ;
+lin neule_NK = {s = d48 "neule"} ;
+lin neuleinen_NK = {s = d38 "neuleinen"} ;
+lin neuloa_VK = {s = c52 "neuloa"} ;
+lin neuloja_NK = {s = d10 "neuloja"} ;
+lin neulomus_NK = {s = d39 "neulomus"} ;
+lin neulonta_NK = {s = d09A "neulonta"} ;
+lin neulos_NK = {s = d39 "neulos"} ;
+lin neuluri_NK = {s = d06 "neuluri"} ;
+lin neuralgia_NK = {s = d12 "neuralgia"} ;
+lin neuralginen_NK = {s = d38 "neuralginen"} ;
+lin neurasteenikko_NK = {s = d04A "neurasteenikko"} ;
+lin neurasteeninen_NK = {s = d38 "neurasteeninen"} ;
+lin neurastenia_NK = {s = d12 "neurastenia"} ;
+lin neuriitti_NK = {s = d05A "neuriitti"} ;
+lin neurologi_NK = {s = d05 "neurologi"} ;
+lin neurologia_NK = {s = d12 "neurologia"} ;
+lin neurologinen_NK = {s = d38 "neurologinen"} ;
+lin neuroni_NK = {s = d05 "neuroni"} ;
+lin neuroosi_NK = {s = d06 "neuroosi"} ;
+lin neurootikko_NK = {s = d04A "neurootikko"} ;
+lin neuroottinen_NK = {s = d38 "neuroottinen"} ;
+lin neuroottistua_VK = {s = c52 "neuroottistua"} ;
+lin neuroottisuus_NK = {s = d40 "neuroottisuus"} ;
+lin neurotisoitua_VK = {s = c52A "neurotisoitua"} ;
+lin neutraali_AK = {s = d06 "neutraali"} ;
+lin neutraalistaa_VK = {s = c53 "neutraalistaa"} ;
+--+ lin neutraalisti_AdvK = {s = c99 "neutraalisti"} ;
+lin neutraalistua_VK = {s = c52 "neutraalistua"} ;
+lin neutraalisuus_NK = {s = d40 "neutraalisuus"} ;
+lin neutraalius_NK = {s = d40 "neutraalius"} ;
+lin neutralisaatio_NK = {s = d03 "neutralisaatio"} ;
+lin neutralisoida_VK = {s = c62 "neutralisoida"} ;
+lin neutralisoitua_VK = {s = c52A "neutralisoitua"} ;
+lin neutraliteetti_NK = {s = d05A "neutraliteetti"} ;
+lin neutraloida_VK = {s = c62 "neutraloida"} ;
+lin neutralointi_NK = {s = d05A "neutralointi"} ;
+lin neutraloitua_VK = {s = c52A "neutraloitua"} ;
+lin neutri_NK = {s = d05 "neutri"} ;
+lin neutriino_NK = {s = d02 "neutriino"} ;
+lin neutroni_NK = {s = d05 "neutroni"} ;
+lin neuvo_NK = {s = d01 "neuvo"} ;
+lin neuvoa_VK = {s = c52 "neuvoa"} ;
+lin neuvoa_antava_NK = {s = d10 "neuvoa-antava"} ;
+lin neuvoinen_NK = {s = d38 "neuvoinen"} ;
+lin neuvoja_NK = {s = d10 "neuvoja"} ;
+lin neuvokas_AK = {s = d41A "neuvokas"} ;
+--+ lin neuvokkaasti_AdvK = {s = c99 "neuvokkaasti"} ;
+lin neuvokki_NK = {s = d05A "neuvokki"} ;
+lin neuvokkuus_NK = {s = d40 "neuvokkuus"} ;
+lin neuvoksetar_NK = {s = d32A "neuvoksetar"} ;
+lin neuvola_NK = {s = d12 "neuvola"} ;
+lin neuvonta_NK = {s = d09A "neuvonta"} ;
+lin neuvos_NK = {s = d39 "neuvos"} ;
+lin neuvosto_NK = {s = d02 "neuvosto"} ;
+lin neuvotella_VK = {s = c67A "neuvotella"} ;
+lin neuvoton_NK = {s = d34A "neuvoton"} ;
+lin neuvotteilla_AdvK = {s = c99 "neuvotteilla"} ;
+lin neuvottelija_NK = {s = d12 "neuvottelija"} ;
+lin neuvottelu_NK = {s = d02 "neuvottelu"} ;
+lin neuvottomuus_NK = {s = d40 "neuvottomuus"} ;
+lin neva_NK = {s = d09 "neva"} ;
+lin nevoittua_VK = {s = c52A "nevoittua"} ;
+lin newton_NK = {s = d05 "newton"} ;
+lin nide_NK = {s = d48A "nide"} ;
+lin nidoksinen_NK = {s = d38 "nidoksinen"} ;
+lin nidoksittain_AdvK = {s = c99 "nidoksittain"} ;
+lin nidonta_NK = {s = d09A "nidonta"} ;
+lin nidos_NK = {s = d39 "nidos"} ;
+lin niekka_NK = {s = d09A "niekka"} ;
+lin nielaista_VK = {s = c66 "nielaista"} ;
+lin nielaisu_NK = {s = d02 "nielaisu"} ;
+lin nielaus_NK = {s = d39 "nielaus"} ;
+lin nieleksia'_VK = {s = c61 "nieleksiä"} ;
+lin nieleskella'_VK = {s = c67 "nieleskellä"} ;
+lin niella'_VK = {s = c67 "niellä"} ;
+lin nielu_NK = {s = d01 "nielu"} ;
+lin nieluinen_NK = {s = d38 "nieluinen"} ;
+lin niemeke_NK = {s = d48A "niemeke"} ;
+lin niemi_NK = {s = d25 "niemi"} ;
+lin nieria'_NK = {s = d12 "nieriä"} ;
+lin nietos_NK = {s = d39 "nietos"} ;
+lin nietostaa_VK = {s = c53 "nietostaa"} ;
+lin nietostua_VK = {s = c52 "nietostua"} ;
+lin nihilismi_NK = {s = d05 "nihilismi"} ;
+lin nihilisti_NK = {s = d05 "nihilisti"} ;
+lin nihilistinen_NK = {s = d38 "nihilistinen"} ;
+lin nihkeys_NK = {s = d40 "nihkeys"} ;
+lin nihkea'_AK = {s = d15 "nihkeä"} ;
+--+ lin nihkea'sti_AdvK = {s = c99 "nihkeästi"} ;
+lin nihti_NK = {s = d05A "nihti"} ;
+lin niiata_VK = {s = c73 "niiata"} ;
+lin niiaus_NK = {s = d39 "niiaus"} ;
+lin niin_AdvK = {s = c99 "niin"} ;
+lin niini_NK = {s = d26 "niini"} ;
+lin niin_ika'a'n_AdvK = {s = c99 "niin ikään"} ;
+lin niininen_NK = {s = d38 "niininen"} ;
+lin niinku_AdvK = {s = c99 "niinku"} ;
+lin niin_kuin_AdvK = {s = c99 "niin kuin"} ;
+lin niin_pa'in_AdvK = {s = c99 "niin päin"} ;
+lin niin_sanotusti_AdvK = {s = c99 "niin sanotusti"} ;
+lin niisi_NK = {s = d27 "niisi"} ;
+lin niisitta'a'_VK = {s = c53A "niisittää"} ;
+lin niisitys_NK = {s = d39 "niisitys"} ;
+lin niisia'_VK = {s = c61 "niisiä"} ;
+lin niiskauttaa_VK = {s = c53A "niiskauttaa"} ;
+lin niiskuttaa_VK = {s = c53A "niiskuttaa"} ;
+lin niiskutus_NK = {s = d39 "niiskutus"} ;
+lin niista'a'_VK = {s = c53 "niistää"} ;
+lin niitata_VK = {s = c73A "niitata"} ;
+lin niitinen_NK = {s = d38 "niitinen"} ;
+lin niittaus_NK = {s = d39 "niittaus"} ;
+lin niitti_NK = {s = d05A "niitti"} ;
+lin niitto_NK = {s = d01A "niitto"} ;
+lin niitty_NK = {s = d01A "niitty"} ;
+lin niitta'a'_VK = {s = c53A "niittää"} ;
+lin nikama_NK = {s = d10 "nikama"} ;
+lin nikkari_NK = {s = d06 "nikkari"} ;
+lin nikkaroida_VK = {s = c62 "nikkaroida"} ;
+lin nikkeli_NK = {s = d06 "nikkeli"} ;
+lin nikkelinen_NK = {s = d38 "nikkelinen"} ;
+lin nikkelo'ida'_VK = {s = c62 "nikkelöidä"} ;
+lin nikkelo'inti_NK = {s = d05A "nikkelöinti"} ;
+lin niklata_VK = {s = c73 "niklata"} ;
+lin nikotella_VK = {s = c67A "nikotella"} ;
+lin nikotiini_NK = {s = d05 "nikotiini"} ;
+lin nikotinisti_NK = {s = d05 "nikotinisti"} ;
+lin nikottaa_VK = {s = c53A "nikottaa"} ;
+lin nikottelu_NK = {s = d02 "nikottelu"} ;
+lin nikotus_NK = {s = d39 "nikotus"} ;
+lin nikotuttaa_VK = {s = c53A "nikotuttaa"} ;
+lin niksaa_VK = {s = c78 "niksaa"} ;
+lin niksahdella_VK = {s = c67A "niksahdella"} ;
+lin niksahdus_NK = {s = d39 "niksahdus"} ;
+lin niksahtaa_VK = {s = c53A "niksahtaa"} ;
+lin niksaus_NK = {s = d39 "niksaus"} ;
+lin niksauttaa_VK = {s = c53A "niksauttaa"} ;
+lin niksauttaja_NK = {s = d10 "niksauttaja"} ;
+lin niksi_NK = {s = d05 "niksi"} ;
+lin niksua_VK = {s = c52 "niksua"} ;
+lin nila_NK = {s = d09 "nila"} ;
+lin nilelle_AdvK = {s = c99 "nilelle"} ;
+lin nilella'_AdvK = {s = c99 "nilellä"} ;
+lin niljaantua_VK = {s = c52A "niljaantua"} ;
+lin niljainen_NK = {s = d38 "niljainen"} ;
+lin niljakas_NK = {s = d41A "niljakas"} ;
+lin niljakkuus_NK = {s = d40 "niljakkuus"} ;
+lin nilkka_NK = {s = d09A "nilkka"} ;
+lin nilkkain_NK = {s = d33 "nilkkain"} ;
+lin nilkkainen_NK = {s = d38 "nilkkainen"} ;
+lin nilkki_NK = {s = d05A "nilkki"} ;
+lin nilkku_NK = {s = d01A "nilkku"} ;
+lin nilkkuri_NK = {s = d06 "nilkkuri"} ;
+lin nilkutella_VK = {s = c67A "nilkutella"} ;
+lin nilkuttaa_VK = {s = c53A "nilkuttaa"} ;
+lin nilkutus_NK = {s = d39 "nilkutus"} ;
+lin nilvia'inen_NK = {s = d38 "nilviäinen"} ;
+lin nimeke_NK = {s = d48A "nimeke"} ;
+lin nimekkyys_NK = {s = d40 "nimekkyys"} ;
+lin nimeka's_NK = {s = d41A "nimekäs"} ;
+lin nimellinen_AK = {s = d38 "nimellinen"} ;
+--+ lin nimellisesti_AdvK = {s = c99 "nimellisesti"} ;
+lin nimenomaan_AdvK = {s = c99 "nimenomaan"} ;
+--+ lin nimenomaisesti_AdvK = {s = c99 "nimenomaisesti"} ;
+lin nimetto'myys_NK = {s = d40 "nimettömyys"} ;
+lin nimeta'_VK = {s = c75 "nimetä"} ;
+lin nimeto'n_NK = {s = d34A "nimetön"} ;
+lin nimea'ma'to'n_NK = {s = d34A "nimeämätön"} ;
+lin nimi_NK = {s = d07 "nimi"} ;
+lin nimike_NK = {s = d48A "nimike"} ;
+lin nimikkeisto'_NK = {s = d01 "nimikkeistö"} ;
+lin nimikko_NK = {s = d04A "nimikko"} ;
+lin nimikoida_VK = {s = c62 "nimikoida"} ;
+lin nimikointi_NK = {s = d05A "nimikointi"} ;
+lin niminen_NK = {s = d38 "niminen"} ;
+lin nimisto'_NK = {s = d02 "nimistö"} ;
+lin nimitella'_VK = {s = c67A "nimitellä"} ;
+lin nimittely_NK = {s = d02 "nimittely"} ;
+lin nimitta'in_AdvK = {s = c99 "nimittäin"} ;
+lin nimitta'ja'_NK = {s = d10 "nimittäjä"} ;
+lin nimitta'a'_VK = {s = c53A "nimittää"} ;
+lin nimitys_NK = {s = d39 "nimitys"} ;
+--? lin nimia'iset_NK = {s = d38 "nimiäiset"} ;
+lin nimio'_NK = {s = d03 "nimiö"} ;
+lin nimio'ida'_VK = {s = c62 "nimiöidä"} ;
+lin nimmari_NK = {s = d06 "nimmari"} ;
+lin nimppari_NK = {s = d06 "nimppari"} ;
+lin niobi_NK = {s = d05 "niobi"} ;
+lin niobium_NK = {s = d05 "niobium"} ;
+lin nipin_napin_AdvK = {s = c99 "nipin napin"} ;
+lin nipistella'_VK = {s = c67 "nipistellä"} ;
+lin nipistely_NK = {s = d02 "nipistely"} ;
+lin nipistin_NK = {s = d33 "nipistin"} ;
+lin nipistys_NK = {s = d39 "nipistys"} ;
+lin nipista'a'_VK = {s = c53 "nipistää"} ;
+lin nipottaa_VK = {s = c53A "nipottaa"} ;
+lin nipottaja_NK = {s = d10 "nipottaja"} ;
+lin nipotus_NK = {s = d39 "nipotus"} ;
+lin nippa_NK = {s = d09A "nippa"} ;
+lin nippa_nappa_AdvK = {s = c99 "nippa nappa"} ;
+lin nippeli_NK = {s = d06 "nippeli"} ;
+lin nippu_NK = {s = d01A "nippu"} ;
+lin nipsahdus_NK = {s = d39 "nipsahdus"} ;
+lin nipsahtaa_VK = {s = c53A "nipsahtaa"} ;
+lin nipsaus_NK = {s = d39 "nipsaus"} ;
+lin nipsauttaa_VK = {s = c53A "nipsauttaa"} ;
+lin nipuittain_AdvK = {s = c99 "nipuittain"} ;
+lin nipukka_NK = {s = d14A "nipukka"} ;
+lin niputtaa_VK = {s = c53A "niputtaa"} ;
+lin niputus_NK = {s = d39 "niputus"} ;
+lin nirhaista_VK = {s = c66 "nirhaista"} ;
+lin nirhama_NK = {s = d10 "nirhama"} ;
+lin nirhata_VK = {s = c73 "nirhata"} ;
+lin nirkko_NK = {s = d01A "nirkko"} ;
+lin nirpalla_AdvK = {s = c99 "nirpalla"} ;
+lin nirpallaan_AdvK = {s = c99 "nirpallaan"} ;
+lin nirpassa_AdvK = {s = c99 "nirpassa"} ;
+lin nirri_NK = {s = d05 "nirri"} ;
+lin nirskahtaa_VK = {s = c53A "nirskahtaa"} ;
+lin nirskua_VK = {s = c52 "nirskua"} ;
+lin nirskunta_NK = {s = d09A "nirskunta"} ;
+lin nirskutella_VK = {s = c67A "nirskutella"} ;
+lin nirskuttaa_VK = {s = c53A "nirskuttaa"} ;
+lin nirskuttelu_NK = {s = d02 "nirskuttelu"} ;
+lin nirskutus_NK = {s = d39 "nirskutus"} ;
+lin nirso_AK = {s = d01 "nirso"} ;
+lin nirsoilla_VK = {s = c67 "nirsoilla"} ;
+--+ lin nirsosti_AdvK = {s = c99 "nirsosti"} ;
+lin nirvana_NK = {s = d12 "nirvana"} ;
+lin niska_NK = {s = d09 "niska"} ;
+lin niskainen_NK = {s = d38 "niskainen"} ;
+lin niskoitella_VK = {s = c67A "niskoitella"} ;
+lin niskoittelija_NK = {s = d12 "niskoittelija"} ;
+lin niskoittelu_NK = {s = d02 "niskoittelu"} ;
+lin niskuri_NK = {s = d06 "niskuri"} ;
+lin niskuroida_VK = {s = c62 "niskuroida"} ;
+lin nisse_NK = {s = d08 "nisse"} ;
+lin nisti_NK = {s = d05 "nisti"} ;
+lin nisu_NK = {s = d01 "nisu"} ;
+lin nisa'_NK = {s = d10 "nisä"} ;
+lin nisa'ka's_NK = {s = d41A "nisäkäs"} ;
+lin nitina'_NK = {s = d12 "nitinä"} ;
+lin nitista'_VK = {s = c66 "nitistä"} ;
+lin nitista'a'_VK = {s = c53 "nitistää"} ;
+lin nitoa_VK = {s = c52A "nitoa"} ;
+lin nitoja_NK = {s = d10 "nitoja"} ;
+lin nitraatti_NK = {s = d05A "nitraatti"} ;
+lin nitriitti_NK = {s = d05A "nitriitti"} ;
+lin nitro_NK = {s = d01 "nitro"} ;
+lin nituri_NK = {s = d06 "nituri"} ;
+lin niuho_NK = {s = d01 "niuho"} ;
+lin niuhottaa_VK = {s = c53A "niuhottaa"} ;
+lin niuhottaja_NK = {s = d10 "niuhottaja"} ;
+lin niuhotus_NK = {s = d39 "niuhotus"} ;
+lin niukahdus_NK = {s = d39 "niukahdus"} ;
+lin niukahtaa_VK = {s = c53A "niukahtaa"} ;
+lin niukalti_AdvK = {s = c99 "niukalti"} ;
+lin niukasti_AdvK = {s = c99 "niukasti"} ;
+lin niukentaa_VK = {s = c54A "niukentaa"} ;
+lin niukentua_VK = {s = c52A "niukentua"} ;
+lin niuketa_VK = {s = c72A "niuketa"} ;
+lin niukin_naukin_AdvK = {s = c99 "niukin naukin"} ;
+lin niukka_NK = {s = d09A "niukka"} ;
+--+ lin niukkasanaisesti_AdvK = {s = c99 "niukkasanaisesti"} ;
+lin niukkuus_NK = {s = d40 "niukkuus"} ;
+lin niva_NK = {s = d09 "niva"} ;
+lin nivaska_NK = {s = d13 "nivaska"} ;
+lin nivel_NK = {s = d32 "nivel"} ;
+lin nivelika's_NK = {s = d41A "nivelikäs"} ;
+lin nivelinen_NK = {s = d38 "nivelinen"} ;
+lin nivelisto'_NK = {s = d01 "nivelistö"} ;
+lin nivelka'rsa'inen_NK = {s = d38 "nivelkärsäinen"} ;
+lin niveltya'_VK = {s = c52A "niveltyä"} ;
+lin nivelta'a'_VK = {s = c54A "niveltää"} ;
+lin nivoa_VK = {s = c52 "nivoa"} ;
+lin nivoutua_VK = {s = c52A "nivoutua"} ;
+--? lin nivuset_NK = {s = d38 "nivuset"} ;
+lin no_AdvK = {s = c99 "no"} ;
+lin nobelisti_NK = {s = d05 "nobelisti"} ;
+lin noduuli_NK = {s = d05 "noduuli"} ;
+lin noeta_VK = {s = c74A "noeta"} ;
+lin noh_AdvK = {s = c99 "noh"} ;
+lin noin_AdvK = {s = c99 "noin"} ;
+lin noin_pa'in_AdvK = {s = c99 "noin päin"} ;
+lin noisetti_NK = {s = d05A "noisetti"} ;
+lin noita_NK = {s = d10A "noita"} ;
+lin noitua_VK = {s = c52A "noitua"} ;
+lin noituus_NK = {s = d40 "noituus"} ;
+lin noja_NK = {s = d10 "noja"} ;
+lin nojaan_AdvK = {s = c99 "nojaan"} ;
+lin nojailla_VK = {s = c67 "nojailla"} ;
+lin nojalla_AdvK = {s = c99 "nojalla"} ;
+lin nojallaan_AdvK = {s = c99 "nojallaan"} ;
+lin nojalleen_AdvK = {s = c99 "nojalleen"} ;
+lin nojassa_AdvK = {s = c99 "nojassa"} ;
+lin nojata_VK = {s = c73 "nojata"} ;
+lin nojautua_VK = {s = c52A "nojautua"} ;
+lin nokakkain_AdvK = {s = c99 "nokakkain"} ;
+lin nokallinen_NK = {s = d38 "nokallinen"} ;
+lin nokare_NK = {s = d48 "nokare"} ;
+lin nokatusten_AdvK = {s = c99 "nokatusten"} ;
+lin nokeentua_VK = {s = c52A "nokeentua"} ;
+lin nokeutua_VK = {s = c52A "nokeutua"} ;
+lin noki_NK = {s = d07A "noki"} ;
+lin nokikkain_AdvK = {s = c99 "nokikkain"} ;
+lin nokinen_NK = {s = d38 "nokinen"} ;
+lin nokittaa_VK = {s = c53A "nokittaa"} ;
+lin nokittain_AdvK = {s = c99 "nokittain"} ;
+lin nokitus_NK = {s = d39 "nokitus"} ;
+lin nokitusten_AdvK = {s = c99 "nokitusten"} ;
+lin nokka_NK = {s = d10A "nokka"} ;
+lin nokkainen_NK = {s = d38 "nokkainen"} ;
+lin nokkaista_VK = {s = c66 "nokkaista"} ;
+lin nokkava_AK = {s = d10 "nokkava"} ;
+--+ lin nokkavasti_AdvK = {s = c99 "nokkavasti"} ;
+lin nokkavuus_NK = {s = d40 "nokkavuus"} ;
+lin nokkela_AK = {s = d10 "nokkela"} ;
+--+ lin nokkelasti_AdvK = {s = c99 "nokkelasti"} ;
+lin nokkeluus_NK = {s = d40 "nokkeluus"} ;
+lin nokkia_VK = {s = c61A "nokkia"} ;
+lin nokkonen_NK = {s = d38 "nokkonen"} ;
+--? lin nokoset_NK = {s = d38 "nokoset"} ;
+lin nolata_VK = {s = c73 "nolata"} ;
+lin nolla_NK = {s = d10 "nolla"} ;
+lin nollaantua_VK = {s = c52A "nollaantua"} ;
+lin nollakohta_NK = {s = d10A "nollakohta"} ;
+lin nollakoko_NK = {s = d01A "nollakoko"} ;
+lin nollas_NK = {s = d45 "nollas"} ;
+lin nollata_VK = {s = c73 "nollata"} ;
+lin nollaus_NK = {s = d39 "nollaus"} ;
+lin nollautua_VK = {s = c52A "nollautua"} ;
+lin nolo_AK = {s = d01 "nolo"} ;
+lin noloissaan_AdvK = {s = c99 "noloissaan"} ;
+--+ lin nolosti_AdvK = {s = c99 "nolosti"} ;
+lin nolostua_VK = {s = c52 "nolostua"} ;
+lin nolostuttaa_VK = {s = c53A "nolostuttaa"} ;
+lin nolottaa_VK = {s = c53A "nolottaa"} ;
+lin nolous_NK = {s = d40 "nolous"} ;
+lin nomadi_NK = {s = d05 "nomadi"} ;
+lin nomenklatuura_NK = {s = d13 "nomenklatuura"} ;
+lin nomenklatuuri_NK = {s = d05 "nomenklatuuri"} ;
+lin nominatiivi_NK = {s = d05 "nominatiivi"} ;
+lin nomini_NK = {s = d05 "nomini"} ;
+lin nonfiguratiivinen_NK = {s = d38 "nonfiguratiivinen"} ;
+lin non_food_NK = {s = d05 "non-food"} ;
+lin non_iron_NK = {s = d05 "non-iron"} ;
+lin nonparelli_NK = {s = d05 "nonparelli"} ;
+lin nonstop_NK = {s = d05 "nonstop"} ;
+lin non_woven_NK = {s = d05 "non-woven"} ;
+lin nootti_NK = {s = d05A "nootti"} ;
+lin nopea_AK = {s = d15 "nopea"} ;
+--+ lin nopeasti_AdvK = {s = c99 "nopeasti"} ;
+lin nopeuksinen_NK = {s = d38 "nopeuksinen"} ;
+lin nopeus_NK = {s = d40 "nopeus"} ;
+lin nopeuttaa_VK = {s = c53A "nopeuttaa"} ;
+lin nopeutua_VK = {s = c52A "nopeutua"} ;
+lin noppa_NK = {s = d10A "noppa"} ;
+lin nopsa_AK = {s = d10 "nopsa"} ;
+lin nopsaan_AdvK = {s = c99 "nopsaan"} ;
+--+ lin nopsasti_AdvK = {s = c99 "nopsasti"} ;
+lin norahtaa_VK = {s = c53A "norahtaa"} ;
+lin nordisti_NK = {s = d05 "nordisti"} ;
+lin nordistiikka_NK = {s = d09A "nordistiikka"} ;
+lin norja_1_NK = {s = d10 "norja"} ;
+lin norja_2_NK = {s = d10 "norja"} ;
+lin norjatar_NK = {s = d32A "norjatar"} ;
+lin norjentaa_VK = {s = c54A "norjentaa"} ;
+lin norjentua_VK = {s = c52A "norjentua"} ;
+lin norjeta_VK = {s = c72 "norjeta"} ;
+lin norjistaa_VK = {s = c53 "norjistaa"} ;
+lin norjistua_VK = {s = c52 "norjistua"} ;
+lin norkko_NK = {s = d01A "norkko"} ;
+lin norkoilija_NK = {s = d12 "norkoilija"} ;
+lin norkoilla_VK = {s = c67 "norkoilla"} ;
+lin norkoilu_NK = {s = d02 "norkoilu"} ;
+lin normaali_AK = {s = d06 "normaali"} ;
+lin normaalikoko_NK = {s = d01A "normaalikoko"} ;
+lin normaalistaa_VK = {s = c53 "normaalistaa"} ;
+--+ lin normaalisti_AdvK = {s = c99 "normaalisti"} ;
+lin normaalistua_VK = {s = c52 "normaalistua"} ;
+lin normaalisuus_NK = {s = d40 "normaalisuus"} ;
+lin normaalius_NK = {s = d40 "normaalius"} ;
+lin normalisoida_VK = {s = c62 "normalisoida"} ;
+lin normalisointi_NK = {s = d05A "normalisointi"} ;
+lin normalisoitua_VK = {s = c52A "normalisoitua"} ;
+lin normanni_NK = {s = d05 "normanni"} ;
+lin normatiivinen_NK = {s = d38 "normatiivinen"} ;
+lin normatiivisuus_NK = {s = d40 "normatiivisuus"} ;
+lin normi_NK = {s = d05 "normi"} ;
+lin normisto_NK = {s = d02 "normisto"} ;
+lin normittaa_VK = {s = c53A "normittaa"} ;
+lin normitus_NK = {s = d39 "normitus"} ;
+lin noro_NK = {s = d01 "noro"} ;
+lin norppa_NK = {s = d10A "norppa"} ;
+lin norri_NK = {s = d05 "norri"} ;
+lin norssi_1_NK = {s = d05 "norssi"} ;
+lin norssi_2_NK = {s = d05 "norssi"} ;
+lin norsu_NK = {s = d01 "norsu"} ;
+lin norua_VK = {s = c52 "norua"} ;
+lin nostaa_VK = {s = c53 "nostaa"} ;
+lin nostaja_NK = {s = d10 "nostaja"} ;
+lin nostalgia_NK = {s = d12 "nostalgia"} ;
+lin nostalginen_AK = {s = d38 "nostalginen"} ;
+--+ lin nostalgisesti_AdvK = {s = c99 "nostalgisesti"} ;
+lin nostalgisuus_NK = {s = d40 "nostalgisuus"} ;
+lin nostattaa_VK = {s = c53A "nostattaa"} ;
+lin nostatus_NK = {s = d39 "nostatus"} ;
+lin noste_NK = {s = d48 "noste"} ;
+lin nostella_VK = {s = c67 "nostella"} ;
+lin nostelu_NK = {s = d02 "nostelu"} ;
+lin nostin_NK = {s = d33 "nostin"} ;
+lin nosto_NK = {s = d01 "nosto"} ;
+lin nosturi_NK = {s = d06 "nosturi"} ;
+lin notaari_NK = {s = d06 "notaari"} ;
+lin notariaatti_NK = {s = d05A "notariaatti"} ;
+lin noteerata_VK = {s = c73 "noteerata"} ;
+lin noteeraus_NK = {s = d39 "noteeraus"} ;
+lin notkahdella_VK = {s = c67A "notkahdella"} ;
+lin notkahdus_NK = {s = d39 "notkahdus"} ;
+lin notkahtaa_VK = {s = c53A "notkahtaa"} ;
+lin notkauttaa_VK = {s = c53A "notkauttaa"} ;
+lin notkea_AK = {s = d15 "notkea"} ;
+--+ lin notkeasti_AdvK = {s = c99 "notkeasti"} ;
+lin notkelma_NK = {s = d10 "notkelma"} ;
+lin notkeus_NK = {s = d40 "notkeus"} ;
+lin notkeuttaa_VK = {s = c53A "notkeuttaa"} ;
+lin notkeutua_VK = {s = c52A "notkeutua"} ;
+lin notkistaa_VK = {s = c53 "notkistaa"} ;
+lin notkistua_VK = {s = c52 "notkistua"} ;
+lin notko_NK = {s = d01 "notko"} ;
+lin notkua_VK = {s = c52 "notkua"} ;
+lin notkunta_NK = {s = d09A "notkunta"} ;
+lin notkutella_VK = {s = c67A "notkutella"} ;
+lin notkuttaa_VK = {s = c53A "notkuttaa"} ;
+lin noudatella_VK = {s = c67A "noudatella"} ;
+lin noudattaa_VK = {s = c53A "noudattaa"} ;
+--? lin nougat_NK = {s = d22 "nougat"} ;
+lin noukkia_VK = {s = c61A "noukkia"} ;
+lin nousija_NK = {s = d12 "nousija"} ;
+lin nousta_VK = {s = c66 "nousta"} ;
+lin nousu_NK = {s = d01 "nousu"} ;
+lin nousuinen_NK = {s = d38 "nousuinen"} ;
+lin nousukas_NK = {s = d41A "nousukas"} ;
+--+ lin nousukasmaisesti_AdvK = {s = c99 "nousukasmaisesti"} ;
+lin nousukasmaisuus_NK = {s = d40 "nousukasmaisuus"} ;
+lin noutaa_VK = {s = c53A "noutaa"} ;
+lin noutaja_NK = {s = d10 "noutaja"} ;
+lin nouto_NK = {s = d01A "nouto"} ;
+lin nova_NK = {s = d10 "nova"} ;
+lin novelli_NK = {s = d05 "novelli"} ;
+lin novellisti_NK = {s = d05 "novellisti"} ;
+lin novellistiikka_NK = {s = d09A "novellistiikka"} ;
+lin novellistinen_NK = {s = d38 "novellistinen"} ;
+lin noviisi_NK = {s = d05 "noviisi"} ;
+lin nudismi_NK = {s = d05 "nudismi"} ;
+lin nudisti_NK = {s = d05 "nudisti"} ;
+lin nugaa_NK = {s = d20 "nugaa"} ;
+lin nugetti_NK = {s = d05A "nugetti"} ;
+lin nuha_NK = {s = d10 "nuha"} ;
+lin nuhainen_NK = {s = d38 "nuhainen"} ;
+lin nuhde_NK = {s = d48A "nuhde"} ;
+lin nuhdella_VK = {s = c67A "nuhdella"} ;
+lin nuhjaantua_VK = {s = c52A "nuhjaantua"} ;
+lin nuhjata_VK = {s = c73 "nuhjata"} ;
+lin nuhraantua_VK = {s = c52A "nuhraantua"} ;
+lin nuhraantuneisuus_NK = {s = d40 "nuhraantuneisuus"} ;
+lin nuhrata_VK = {s = c73 "nuhrata"} ;
+lin nuhrautua_VK = {s = c52A "nuhrautua"} ;
+lin nuhruinen_NK = {s = d38 "nuhruinen"} ;
+lin nuhteeton_NK = {s = d34A "nuhteeton"} ;
+lin nuhteettomasti_AdvK = {s = c99 "nuhteettomasti"} ;
+lin nuhteettomuus_NK = {s = d40 "nuhteettomuus"} ;
+lin nuhtelu_NK = {s = d02 "nuhtelu"} ;
+lin nuija_NK = {s = d10 "nuija"} ;
+lin nuijakas_NK = {s = d41A "nuijakas"} ;
+lin nuijia_VK = {s = c61 "nuijia"} ;
+lin nuiva_AK = {s = d10 "nuiva"} ;
+--+ lin nuivasti_AdvK = {s = c99 "nuivasti"} ;
+lin nuivuus_NK = {s = d40 "nuivuus"} ;
+lin nujakka_NK = {s = d14A "nujakka"} ;
+lin nujakoida_VK = {s = c62 "nujakoida"} ;
+lin nujakointi_NK = {s = d05A "nujakointi"} ;
+lin nujerrus_NK = {s = d39 "nujerrus"} ;
+lin nujertaa_VK = {s = c54A "nujertaa"} ;
+lin nujertua_VK = {s = c52A "nujertua"} ;
+lin nujuta_VK = {s = c75 "nujuta"} ;
+lin nujuuttaa_VK = {s = c53A "nujuuttaa"} ;
+lin nukahdella_VK = {s = c67A "nukahdella"} ;
+lin nukahdus_NK = {s = d39 "nukahdus"} ;
+lin nukahtaa_VK = {s = c53A "nukahtaa"} ;
+lin nukallinen_NK = {s = d38 "nukallinen"} ;
+lin nukata_VK = {s = c73A "nukata"} ;
+lin nukittaa_VK = {s = c53A "nukittaa"} ;
+lin nukitus_NK = {s = d39 "nukitus"} ;
+lin nukka_NK = {s = d10A "nukka"} ;
+lin nukkaantua_VK = {s = c52A "nukkaantua"} ;
+lin nukkaantumaton_NK = {s = d34A "nukkaantumaton"} ;
+lin nukkainen_NK = {s = d38 "nukkainen"} ;
+lin nukkaus_NK = {s = d39 "nukkaus"} ;
+lin nukkautua_VK = {s = c52A "nukkautua"} ;
+lin nukkavieru_NK = {s = d01 "nukkavieru"} ;
+lin nukke_NK = {s = d08A "nukke"} ;
+lin nukki_NK = {s = d05A "nukki"} ;
+lin nukkua_VK = {s = c52A "nukkua"} ;
+lin nukkuja_NK = {s = d10 "nukkuja"} ;
+lin nukkumaanmenoaika_NK = {s = d09A "nukkumaanmenoaika"} ;
+lin nukkumatti_NK = {s = d05A "nukkumatti"} ;
+lin nukleoni_NK = {s = d05 "nukleoni"} ;
+lin nukuksiin_AdvK = {s = c99 "nukuksiin"} ;
+lin nukuksissa_AdvK = {s = c99 "nukuksissa"} ;
+lin nukula_NK = {s = d12 "nukula"} ;
+lin nukute_NK = {s = d48A "nukute"} ;
+lin nukuttaa_VK = {s = c53A "nukuttaa"} ;
+lin nukutus_NK = {s = d39 "nukutus"} ;
+lin nulikka_NK = {s = d14A "nulikka"} ;
+lin nuljahdella_VK = {s = c67A "nuljahdella"} ;
+lin nuljahtaa_VK = {s = c53A "nuljahtaa"} ;
+lin nuljaska_NK = {s = d13 "nuljaska"} ;
+lin nulju_NK = {s = d01 "nulju"} ;
+lin nulkki_NK = {s = d05A "nulkki"} ;
+lin numeerinen_NK = {s = d38 "numeerinen"} ;
+lin numeeristaa_VK = {s = c53 "numeeristaa"} ;
+lin numeraali_NK = {s = d05 "numeraali"} ;
+lin numero_NK = {s = d02 "numero"} ;
+lin numeroida_VK = {s = c62 "numeroida"} ;
+lin numeroinen_NK = {s = d38 "numeroinen"} ;
+lin numerointi_NK = {s = d05A "numerointi"} ;
+lin numerollinen_AK = {s = d38 "numerollinen"} ;
+--+ lin numerollisesti_AdvK = {s = c99 "numerollisesti"} ;
+lin numerologia_NK = {s = d12 "numerologia"} ;
+lin numerus_NK = {s = d39 "numerus"} ;
+lin numismaatikko_NK = {s = d04A "numismaatikko"} ;
+lin numismaattinen_NK = {s = d38 "numismaattinen"} ;
+lin numismatiikka_NK = {s = d09A "numismatiikka"} ;
+lin nummi_NK = {s = d07 "nummi"} ;
+lin nunna_NK = {s = d10 "nunna"} ;
+lin nuohooja_NK = {s = d10 "nuohooja"} ;
+lin nuohota_VK = {s = c74 "nuohota"} ;
+lin nuohous_NK = {s = d39 "nuohous"} ;
+lin nuokahdella_VK = {s = c67A "nuokahdella"} ;
+lin nuokahtaa_VK = {s = c53A "nuokahtaa"} ;
+lin nuokkua_VK = {s = c52A "nuokkua"} ;
+lin nuokuksiin_AdvK = {s = c99 "nuokuksiin"} ;
+lin nuokuksissa_AdvK = {s = c99 "nuokuksissa"} ;
+lin nuolaista_VK = {s = c66 "nuolaista"} ;
+lin nuolaisu_NK = {s = d02 "nuolaisu"} ;
+lin nuoleksia_VK = {s = c61 "nuoleksia"} ;
+lin nuoleskelija_NK = {s = d12 "nuoleskelija"} ;
+lin nuoleskella_VK = {s = c67 "nuoleskella"} ;
+lin nuoleskelu_NK = {s = d02 "nuoleskelu"} ;
+lin nuoli_NK = {s = d26 "nuoli"} ;
+lin nuoliainen_NK = {s = d38 "nuoliainen"} ;
+lin nuolijuuri_NK = {s = d26 "nuolijuuri"} ;
+lin nuolla_VK = {s = c67 "nuolla"} ;
+lin nuolu_NK = {s = d01 "nuolu"} ;
+lin nuora_NK = {s = d10 "nuora"} ;
+lin nuorekas_AK = {s = d41A "nuorekas"} ;
+--+ lin nuorekkaasti_AdvK = {s = c99 "nuorekkaasti"} ;
+lin nuorekkuus_NK = {s = d40 "nuorekkuus"} ;
+lin nuoremmakseen_AdvK = {s = c99 "nuoremmakseen"} ;
+lin nuoremmuuttaan_AdvK = {s = c99 "nuoremmuuttaan"} ;
+lin nuorennus_NK = {s = d39 "nuorennus"} ;
+lin nuorentaa_VK = {s = c54A "nuorentaa"} ;
+lin nuorentua_VK = {s = c52A "nuorentua"} ;
+lin nuoreta_VK = {s = c72 "nuoreta"} ;
+lin nuori_NK = {s = d26 "nuori"} ;
+lin nuorimmainen_NK = {s = d38 "nuorimmainen"} ;
+lin nuoriso_NK = {s = d02 "nuoriso"} ;
+lin nuorittaa_VK = {s = c53A "nuorittaa"} ;
+lin nuoritus_NK = {s = d39 "nuoritus"} ;
+lin nuorruttaa_VK = {s = c53A "nuorruttaa"} ;
+lin nuorrutus_NK = {s = d39 "nuorrutus"} ;
+lin nuortea_NK = {s = d15 "nuortea"} ;
+lin nuortua_VK = {s = c52A "nuortua"} ;
+lin nuorukainen_NK = {s = d38 "nuorukainen"} ;
+lin nuoruudenaika_NK = {s = d09A "nuoruudenaika"} ;
+lin nuoruus_NK = {s = d40 "nuoruus"} ;
+lin nuoruusaika_NK = {s = d09A "nuoruusaika"} ;
+lin nuoska_NK = {s = d10 "nuoska"} ;
+lin nuoskainen_NK = {s = d38 "nuoskainen"} ;
+lin nuotanveto_NK = {s = d01A "nuotanveto"} ;
+lin nuotata_VK = {s = c73A "nuotata"} ;
+lin nuotillinen_NK = {s = d38 "nuotillinen"} ;
+lin nuotinnos_NK = {s = d39 "nuotinnos"} ;
+lin nuotintaa_VK = {s = c54A "nuotintaa"} ;
+lin nuotio_NK = {s = d03 "nuotio"} ;
+lin nuotisto_NK = {s = d02 "nuotisto"} ;
+lin nuotittaa_VK = {s = c53A "nuotittaa"} ;
+lin nuotitus_NK = {s = d39 "nuotitus"} ;
+lin nuotta_NK = {s = d10A "nuotta"} ;
+lin nuottaus_NK = {s = d39 "nuottaus"} ;
+lin nuotti_NK = {s = d05A "nuotti"} ;
+lin nupi_NK = {s = d05 "nupi"} ;
+lin nupo_NK = {s = d01 "nupo"} ;
+lin nuppi_NK = {s = d05A "nuppi"} ;
+lin nuppu_NK = {s = d01A "nuppu"} ;
+lin nuppuinen_NK = {s = d38 "nuppuinen"} ;
+lin nupu_NK = {s = d01 "nupu"} ;
+lin nupukki_NK = {s = d05A "nupukki"} ;
+lin nupula_NK = {s = d12 "nupula"} ;
+lin nupura_NK = {s = d12 "nupura"} ;
+lin nurea_NK = {s = d15 "nurea"} ;
+lin nureissaan_AdvK = {s = c99 "nureissaan"} ;
+lin nurin_AdvK = {s = c99 "nurin"} ;
+lin nurina_NK = {s = d12 "nurina"} ;
+lin nurinkurinen_AK = {s = d38 "nurinkurinen"} ;
+--+ lin nurinkurisesti_AdvK = {s = c99 "nurinkurisesti"} ;
+lin nurin_pa'in_AdvK = {s = c99 "nurin päin"} ;
+lin nurista_VK = {s = c66 "nurista"} ;
+lin nurja_AK = {s = d10 "nurja"} ;
+lin nurjahdus_NK = {s = d39 "nurjahdus"} ;
+lin nurjahtaa_VK = {s = c53A "nurjahtaa"} ;
+--+ lin nurjamielisesti_AdvK = {s = c99 "nurjamielisesti"} ;
+--+ lin nurjasti_AdvK = {s = c99 "nurjasti"} ;
+lin nurjaton_NK = {s = d34A "nurjaton"} ;
+lin nurkakkain_AdvK = {s = c99 "nurkakkain"} ;
+lin nurkata_VK = {s = c73A "nurkata"} ;
+lin nurkikkain_AdvK = {s = c99 "nurkikkain"} ;
+lin nurkilla_AdvK = {s = c99 "nurkilla"} ;
+lin nurkille_AdvK = {s = c99 "nurkille"} ;
+lin nurkittain_AdvK = {s = c99 "nurkittain"} ;
+lin nurkka_NK = {s = d10A "nurkka"} ;
+lin nurkkaaja_NK = {s = d10 "nurkkaaja"} ;
+lin nurkkainen_NK = {s = d38 "nurkkainen"} ;
+lin nurkkakuntainen_NK = {s = d38 "nurkkakuntainen"} ;
+lin nurkkakuntaisuus_NK = {s = d40 "nurkkakuntaisuus"} ;
+lin nurkkaus_NK = {s = d39 "nurkkaus"} ;
+lin nurkua_VK = {s = c52A "nurkua"} ;
+lin nurmettaa_VK = {s = c53A "nurmettaa"} ;
+lin nurmettua_VK = {s = c52A "nurmettua"} ;
+lin nurmi_NK = {s = d07 "nurmi"} ;
+lin nurmikka_NK = {s = d14A "nurmikka"} ;
+lin nurmikko_NK = {s = d04A "nurmikko"} ;
+lin nurmikkoinen_NK = {s = d38 "nurmikkoinen"} ;
+lin nurminen_NK = {s = d38 "nurminen"} ;
+lin nussia_VK = {s = c61 "nussia"} ;
+lin nuti_NK = {s = d05 "nuti"} ;
+lin nutistaa_VK = {s = c53 "nutistaa"} ;
+lin nutria_NK = {s = d12 "nutria"} ;
+lin nuttu_NK = {s = d01A "nuttu"} ;
+lin nuttura_NK = {s = d12 "nuttura"} ;
+lin nutukas_NK = {s = d41A "nutukas"} ;
+lin nuudeli_NK = {s = d06 "nuudeli"} ;
+lin nuuduksissa_AdvK = {s = c99 "nuuduksissa"} ;
+lin nuuduttaa_VK = {s = c53A "nuuduttaa"} ;
+lin nuuhkaista_VK = {s = c66 "nuuhkaista"} ;
+lin nuuhkia_VK = {s = c61 "nuuhkia"} ;
+lin nuuka_AK = {s = d10 "nuuka"} ;
+lin nuukahdella_VK = {s = c67A "nuukahdella"} ;
+lin nuukahtaa_VK = {s = c53A "nuukahtaa"} ;
+lin nuukailla_VK = {s = c67 "nuukailla"} ;
+lin nuukailu_NK = {s = d02 "nuukailu"} ;
+--+ lin nuukasti_AdvK = {s = c99 "nuukasti"} ;
+lin nuukuus_NK = {s = d40 "nuukuus"} ;
+lin nuuska_NK = {s = d10 "nuuska"} ;
+lin nuuskaista_VK = {s = c66 "nuuskaista"} ;
+lin nuuskata_VK = {s = c73 "nuuskata"} ;
+lin nuuskia_VK = {s = c61 "nuuskia"} ;
+lin nuuskija_NK = {s = d12 "nuuskija"} ;
+lin nuutata_VK = {s = c73A "nuutata"} ;
+lin nuuttaus_NK = {s = d39 "nuuttaus"} ;
+lin nuutua_VK = {s = c52A "nuutua"} ;
+lin nyansoida_VK = {s = c62 "nyansoida"} ;
+lin nyansointi_NK = {s = d05A "nyansointi"} ;
+lin nyanssi_NK = {s = d05 "nyanssi"} ;
+lin nyherta'a'_VK = {s = c54A "nyhertää"} ;
+lin nyhja'illa'_VK = {s = c67 "nyhjäillä"} ;
+lin nyhja'ista'_VK = {s = c66 "nyhjäistä"} ;
+lin nyhja'ta'_VK = {s = c73 "nyhjätä"} ;
+lin nyhjo'tta'a'_VK = {s = c53A "nyhjöttää"} ;
+lin nyhra'ta'_VK = {s = c73 "nyhrätä"} ;
+lin nyhta'ista'_VK = {s = c66 "nyhtäistä"} ;
+lin nyhta'isy_NK = {s = d02 "nyhtäisy"} ;
+lin nyhta'a'_VK = {s = c53A "nyhtää"} ;
+lin nyhvero'_NK = {s = d02 "nyhverö"} ;
+lin nyinta'_NK = {s = d09A "nyintä"} ;
+lin nykerta'a'_VK = {s = c54A "nykertää"} ;
+lin nykero'_NK = {s = d02 "nykerö"} ;
+lin nykia'_VK = {s = c61A "nykiä"} ;
+lin nykyaika_NK = {s = d09A "nykyaika"} ;
+--+ lin nykyaikaisesti_AdvK = {s = c99 "nykyaikaisesti"} ;
+lin nykyinen_NK = {s = d38 "nykyinen"} ;
+lin nykyiselleen_AdvK = {s = c99 "nykyiselleen"} ;
+lin nykyisella'a'n_AdvK = {s = c99 "nykyisellään"} ;
+lin nykyisin_AdvK = {s = c99 "nykyisin"} ;
+lin nykyisyys_NK = {s = d40 "nykyisyys"} ;
+lin nykyja'a'n_AdvK = {s = c99 "nykyjään"} ;
+lin nykytta'a'_VK = {s = c53A "nykyttää"} ;
+lin nykytys_NK = {s = d39 "nykytys"} ;
+lin nykya'_AdvK = {s = c99 "nykyä"} ;
+lin nykya'a'n_AdvK = {s = c99 "nykyään"} ;
+lin nyka'ista'_VK = {s = c66 "nykäistä"} ;
+lin nyka'isy_NK = {s = d02 "nykäisy"} ;
+lin nyka'yksitta'in_AdvK = {s = c99 "nykäyksittäin"} ;
+lin nyka'yksitta'inen_NK = {s = d38 "nykäyksittäinen"} ;
+lin nyka'ys_NK = {s = d39 "nykäys"} ;
+lin nyljenta'_NK = {s = d09A "nyljentä"} ;
+lin nylkea'_VK = {s = c58A "nylkeä"} ;
+lin nylky_NK = {s = d01A "nylky"} ;
+lin nylkyri_NK = {s = d06 "nylkyri"} ;
+lin nylkytta'a'_VK = {s = c53A "nylkyttää"} ;
+lin nylon_NK = {s = d06 "nylon"} ;
+lin nymfetti_NK = {s = d05A "nymfetti"} ;
+lin nymfi_NK = {s = d05 "nymfi"} ;
+lin nymfomaani_NK = {s = d05 "nymfomaani"} ;
+lin nymfomaaninen_NK = {s = d38 "nymfomaaninen"} ;
+lin nymfomania_NK = {s = d12 "nymfomania"} ;
+lin nynnero'_NK = {s = d02 "nynnerö"} ;
+lin nynnia'_VK = {s = c61 "nynniä"} ;
+lin nynny_NK = {s = d01 "nynny"} ;
+lin nynnyilla'_VK = {s = c67 "nynnyillä"} ;
+lin nynnyily_NK = {s = d02 "nynnyily"} ;
+lin nypelo'ida'_VK = {s = c62 "nypelöidä"} ;
+lin nypla'ta'_VK = {s = c73 "nyplätä"} ;
+lin nypla'ys_NK = {s = d39 "nypläys"} ;
+lin nyppia'_VK = {s = c61A "nyppiä"} ;
+lin nyppy_NK = {s = d01A "nyppy"} ;
+lin nyppyinen_NK = {s = d38 "nyppyinen"} ;
+lin nyppyla'_NK = {s = d12 "nyppylä"} ;
+lin nyppyyntya'_VK = {s = c52A "nyppyyntyä"} ;
+lin nyppa'ista'_VK = {s = c66 "nyppäistä"} ;
+lin nypykka'_NK = {s = d14A "nypykkä"} ;
+lin nypyla'_NK = {s = d12 "nypylä"} ;
+lin nypa'ta'_VK = {s = c73A "nypätä"} ;
+lin nyreissa'a'n_AdvK = {s = c99 "nyreissään"} ;
+lin nyreys_NK = {s = d40 "nyreys"} ;
+lin nyrea'_AK = {s = d15 "nyreä"} ;
+--+ lin nyrea'sti_AdvK = {s = c99 "nyreästi"} ;
+lin nyrhia'_VK = {s = c61 "nyrhiä"} ;
+lin nyrja'hdys_NK = {s = d39 "nyrjähdys"} ;
+lin nyrja'hdytta'a'_VK = {s = c53A "nyrjähdyttää"} ;
+lin nyrja'hta'a'_VK = {s = c53A "nyrjähtää"} ;
+lin nyrja'ytta'a'_VK = {s = c53A "nyrjäyttää"} ;
+lin nyrkista'a'_VK = {s = c53 "nyrkistää"} ;
+lin nyrkkeilija'_NK = {s = d12 "nyrkkeilijä"} ;
+lin nyrkkeilla'_VK = {s = c67 "nyrkkeillä"} ;
+lin nyrkkeily_NK = {s = d02 "nyrkkeily"} ;
+lin nyrkki_NK = {s = d05A "nyrkki"} ;
+lin nyrkkitappelija_NK = {s = d12 "nyrkkitappelija"} ;
+lin nyrpeissa'a'n_AdvK = {s = c99 "nyrpeissään"} ;
+lin nyrpeys_NK = {s = d40 "nyrpeys"} ;
+lin nyrpea'_AK = {s = d15 "nyrpeä"} ;
+--+ lin nyrpea'sti_AdvK = {s = c99 "nyrpeästi"} ;
+lin nyrpistella'_VK = {s = c67 "nyrpistellä"} ;
+lin nyrpistya'_VK = {s = c52 "nyrpistyä"} ;
+lin nyrpista'a'_VK = {s = c53 "nyrpistää"} ;
+lin nyssykka'_NK = {s = d14A "nyssykkä"} ;
+lin nyssa'kka'_NK = {s = d14A "nyssäkkä"} ;
+lin nysterma'_NK = {s = d10 "nystermä"} ;
+lin nysterma'inen_NK = {s = d38 "nystermäinen"} ;
+lin nysty_NK = {s = d01 "nysty"} ;
+lin nystyra'_NK = {s = d12 "nystyrä"} ;
+lin nystyra'inen_NK = {s = d38 "nystyräinen"} ;
+lin nysa'_NK = {s = d10 "nysä"} ;
+lin nyt_AdvK = {s = c99 "nyt"} ;
+lin nytkia'_VK = {s = c61 "nytkiä"} ;
+lin nytkytta'a'_VK = {s = c53A "nytkyttää"} ;
+lin nytkytys_NK = {s = d39 "nytkytys"} ;
+lin nytkya'_VK = {s = c52 "nytkyä"} ;
+lin nytka'hdella'_VK = {s = c67A "nytkähdellä"} ;
+lin nytka'hdys_NK = {s = d39 "nytkähdys"} ;
+lin nytka'hta'a'_VK = {s = c53A "nytkähtää"} ;
+lin nytka'ys_NK = {s = d39 "nytkäys"} ;
+lin nyttemmin_AdvK = {s = c99 "nyttemmin"} ;
+lin nytten_AdvK = {s = c99 "nytten"} ;
+lin nyyhke_NK = {s = d48 "nyyhke"} ;
+lin nyyhkia'_VK = {s = c61 "nyyhkiä"} ;
+lin nyyhky_NK = {s = d01 "nyyhky"} ;
+lin nyyhkytta'a'_VK = {s = c53A "nyyhkyttää"} ;
+lin nyyhkytys_NK = {s = d39 "nyyhkytys"} ;
+lin nyyhka'ista'_VK = {s = c66 "nyyhkäistä"} ;
+lin nyyhka'isy_NK = {s = d02 "nyyhkäisy"} ;
+lin nyyhka'ys_NK = {s = d39 "nyyhkäys"} ;
+lin nyyka'hta'a'_VK = {s = c53A "nyykähtää"} ;
+lin nyysia'_VK = {s = c61 "nyysiä"} ;
+lin nyytti_NK = {s = d05A "nyytti"} ;
+--? lin nyytta'rit_NK = {s = d06 "nyyttärit"} ;
+lin nyo'kkia'_VK = {s = c61A "nyökkiä"} ;
+lin nyo'kka'illa'_VK = {s = c67 "nyökkäillä"} ;
+lin nyo'kka'ys_NK = {s = d39 "nyökkäys"} ;
+lin nyo'kytella'_VK = {s = c67A "nyökytellä"} ;
+lin nyo'kytta'a'_VK = {s = c53A "nyökyttää"} ;
+lin nyo'ka'hdella'_VK = {s = c67A "nyökähdellä"} ;
+lin nyo'ka'hdys_NK = {s = d39 "nyökähdys"} ;
+lin nyo'ka'hta'a'_VK = {s = c53A "nyökähtää"} ;
+lin nyo'ka'ta'_VK = {s = c73A "nyökätä"} ;
+lin nyo'ka'ytta'a'_VK = {s = c53A "nyökäyttää"} ;
+lin nyo'ri_NK = {s = d05 "nyöri"} ;
+lin nyo'ritta'a'_VK = {s = c53A "nyörittää"} ;
+lin nyo'ritys_NK = {s = d39 "nyöritys"} ;
+lin na'emma'_AdvK = {s = c99 "näemmä"} ;
+lin na'enna'inen_AK = {s = d38 "näennäinen"} ;
+--+ lin na'enna'isesti_AdvK = {s = c99 "näennäisesti"} ;
+lin na'es_AdvK = {s = c99 "näes"} ;
+lin na'et_AdvK = {s = c99 "näet"} ;
+lin na'hden_AdvK = {s = c99 "nähden"} ;
+lin na'hda'_VK = {s = c71 "nähdä"} ;
+lin na'hda'kseen_AdvK = {s = c99 "nähdäkseen"} ;
+lin na'hka'a's_AdvK = {s = c99 "nähkääs"} ;
+lin na'hta'viin_AdvK = {s = c99 "nähtäviin"} ;
+lin na'hta'ville_AdvK = {s = c99 "nähtäville"} ;
+lin na'hta'villa'_AdvK = {s = c99 "nähtävillä"} ;
+lin na'hta'vissa'_AdvK = {s = c99 "nähtävissä"} ;
+lin na'hta'vyys_NK = {s = d40 "nähtävyys"} ;
+lin na'hta'va'_AK = {s = d10 "nähtävä"} ;
+--+ lin na'hta'va'sti_AdvK = {s = c99 "nähtävästi"} ;
+lin na'in_AdvK = {s = c99 "näin"} ;
+lin na'ivettya'_VK = {s = c52A "näivettyä"} ;
+lin na'ivetta'a'_VK = {s = c53A "näivettää"} ;
+lin na'ivetys_NK = {s = d39 "näivetys"} ;
+lin na'kemiin_AdvK = {s = c99 "näkemiin"} ;
+lin na'kemyksellinen_NK = {s = d38 "näkemyksellinen"} ;
+lin na'kemyksinen_NK = {s = d38 "näkemyksinen"} ;
+lin na'kemys_NK = {s = d39 "näkemys"} ;
+lin na'kema'_NK = {s = d10 "näkemä"} ;
+lin na'kema'to'n_NK = {s = d34A "näkemätön"} ;
+lin na'keva'_NK = {s = d10 "näkevä"} ;
+lin na'kija'_NK = {s = d12 "näkijä"} ;
+--? lin na'kimet_NK = {s = d33 "näkimet"} ;
+lin na'kinkuori_NK = {s = d26 "näkinkuori"} ;
+lin na'kki_NK = {s = d05A "näkki"} ;
+lin na'kka'ri_NK = {s = d06 "näkkäri"} ;
+lin na'ky_NK = {s = d01A "näky"} ;
+lin na'kyma'_NK = {s = d10 "näkymä"} ;
+lin na'kyma'tto'miin_AdvK = {s = c99 "näkymättömiin"} ;
+lin na'kyma'tto'missa'_AdvK = {s = c99 "näkymättömissä"} ;
+lin na'kyma'tto'myys_NK = {s = d40 "näkymättömyys"} ;
+lin na'kyma'tto'ma'sti_AdvK = {s = c99 "näkymättömästi"} ;
+lin na'kyma'to'n_NK = {s = d34A "näkymätön"} ;
+lin na'kyviin_AdvK = {s = c99 "näkyviin"} ;
+lin na'kyville_AdvK = {s = c99 "näkyville"} ;
+lin na'kyvilla'_AdvK = {s = c99 "näkyvillä"} ;
+lin na'kyvilta'_AdvK = {s = c99 "näkyviltä"} ;
+lin na'kyvissa'_AdvK = {s = c99 "näkyvissä"} ;
+lin na'kyvista'_AdvK = {s = c99 "näkyvistä"} ;
+lin na'kyvyys_NK = {s = d40 "näkyvyys"} ;
+lin na'kyva'_AK = {s = d10 "näkyvä"} ;
+--+ lin na'kyva'sti_AdvK = {s = c99 "näkyvästi"} ;
+lin na'kya'_VK = {s = c52A "näkyä"} ;
+--? lin na'ka'ra'iset_NK = {s = d38 "näkäräiset"} ;
+lin na'ko'_NK = {s = d01A "näkö"} ;
+lin na'ko'alaton_NK = {s = d34A "näköalaton"} ;
+lin na'ko'alattomuus_NK = {s = d40 "näköalattomuus"} ;
+lin na'ko'inen_NK = {s = d38 "näköinen"} ;
+lin na'ko'ja'a'n_AdvK = {s = c99 "näköjään"} ;
+lin na'ko'kohta_NK = {s = d10A "näkökohta"} ;
+lin na'ko'sa'lle_AdvK = {s = c99 "näkösälle"} ;
+lin na'ko'sa'lla'_AdvK = {s = c99 "näkösällä"} ;
+lin na'ko'sa'lta'_AdvK = {s = c99 "näkösältä"} ;
+lin na'lissa'a'n_AdvK = {s = c99 "nälissään"} ;
+lin na'lkiinnytta'a'_VK = {s = c53A "nälkiinnyttää"} ;
+lin na'lkiintya'_VK = {s = c52A "nälkiintyä"} ;
+lin na'lka'_NK = {s = d10A "nälkä"} ;
+lin na'lka'inen_NK = {s = d38 "nälkäinen"} ;
+lin na'lvia'_VK = {s = c61 "nälviä"} ;
+lin na'lva'ista'_VK = {s = c66 "nälväistä"} ;
+lin na'lva'isy_NK = {s = d02 "nälväisy"} ;
+lin na'la'tta'a'_VK = {s = c53A "nälättää"} ;
+lin na'nni_NK = {s = d05 "nänni"} ;
+lin na'pelo'ida'_VK = {s = c62 "näpelöidä"} ;
+lin na'pelo'inti_NK = {s = d05A "näpelöinti"} ;
+lin na'perrella'_VK = {s = c67A "näperrellä"} ;
+lin na'perrys_NK = {s = d39 "näperrys"} ;
+lin na'pertely_NK = {s = d02 "näpertely"} ;
+lin na'perta'a'_VK = {s = c54A "näpertää"} ;
+lin na'pistelija'_NK = {s = d12 "näpistelijä"} ;
+lin na'pistella'_VK = {s = c67 "näpistellä"} ;
+lin na'pistely_NK = {s = d02 "näpistely"} ;
+lin na'pistys_NK = {s = d39 "näpistys"} ;
+lin na'pista'a'_VK = {s = c53 "näpistää"} ;
+lin na'pla'ta'_VK = {s = c73 "näplätä"} ;
+lin na'ppi_NK = {s = d05A "näppi"} ;
+lin na'ppy_NK = {s = d01A "näppy"} ;
+lin na'ppyinen_NK = {s = d38 "näppyinen"} ;
+lin na'ppyla'_NK = {s = d12 "näppylä"} ;
+lin na'ppyla'inen_NK = {s = d38 "näppyläinen"} ;
+lin na'ppa'ilija'_NK = {s = d12 "näppäilijä"} ;
+lin na'ppa'illa'_VK = {s = c67 "näppäillä"} ;
+lin na'ppa'ily_NK = {s = d02 "näppäily"} ;
+lin na'ppa'imisto'_NK = {s = d01 "näppäimistö"} ;
+lin na'ppa'in_NK = {s = d33 "näppäin"} ;
+lin na'ppa'ryys_NK = {s = d40 "näppäryys"} ;
+lin na'ppa'ra'_AK = {s = d10 "näppärä"} ;
+--+ lin na'ppa'ra'sti_AdvK = {s = c99 "näppärästi"} ;
+lin na'ppa'ys_NK = {s = d39 "näppäys"} ;
+lin na'pra'illa'_VK = {s = c67 "näpräillä"} ;
+lin na'pra'ta'_VK = {s = c73 "näprätä"} ;
+lin na'psytta'a'_VK = {s = c53A "näpsyttää"} ;
+lin na'psa'_AK = {s = d10 "näpsä"} ;
+lin na'psa'kka'_NK = {s = d14A "näpsäkkä"} ;
+lin na'psa'ka'sti_AdvK = {s = c99 "näpsäkästi"} ;
+--+ lin na'psa'sti_AdvK = {s = c99 "näpsästi"} ;
+lin na'psa'ys_NK = {s = d39 "näpsäys"} ;
+lin na'psa'ytta'a'_VK = {s = c53A "näpsäyttää"} ;
+lin na'psa'ytys_NK = {s = d39 "näpsäytys"} ;
+lin na'py_NK = {s = d01 "näpy"} ;
+lin na'pa'kka'_NK = {s = d14A "näpäkkä"} ;
+lin na'pa'ka'sti_AdvK = {s = c99 "näpäkästi"} ;
+lin na'pa'ta'_VK = {s = c73A "näpätä"} ;
+lin na'pa'ys_NK = {s = d39 "näpäys"} ;
+lin na'pa'ytella'_VK = {s = c67A "näpäytellä"} ;
+lin na'pa'ytta'a'_VK = {s = c53A "näpäyttää"} ;
+lin na'pa'ytys_NK = {s = d39 "näpäytys"} ;
+lin na're_NK = {s = d48 "näre"} ;
+lin na'reikko'_NK = {s = d04A "näreikkö"} ;
+lin na'rhi_NK = {s = d07 "närhi"} ;
+lin na'rka'stys_NK = {s = d39 "närkästys"} ;
+lin na'rka'stytta'a'_VK = {s = c53A "närkästyttää"} ;
+lin na'rka'stya'_VK = {s = c52 "närkästyä"} ;
+lin na'rva'na'_NK = {s = d12 "närvänä"} ;
+lin na'ra'_NK = {s = d10 "närä"} ;
+lin na'ra'stys_NK = {s = d39 "närästys"} ;
+lin na'ra'sta'a'_VK = {s = c53 "närästää"} ;
+lin na'sia'_NK = {s = d12 "näsiä"} ;
+lin na'tisti_AdvK = {s = c99 "nätisti"} ;
+lin na'tkelma'_NK = {s = d10 "nätkelmä"} ;
+lin na'tti_NK = {s = d05A "nätti"} ;
+lin na'veri_NK = {s = d06 "näveri"} ;
+lin na'verrin_NK = {s = d33A "näverrin"} ;
+lin na'verta'a'_VK = {s = c54A "nävertää"} ;
+lin na'ykkia'_VK = {s = c61A "näykkiä"} ;
+lin na'ykka'ista'_VK = {s = c66 "näykkäistä"} ;
+lin na'yka'ta'_VK = {s = c73A "näykätä"} ;
+lin na'yte_NK = {s = d48A "näyte"} ;
+lin na'ytella'_VK = {s = c67A "näytellä"} ;
+lin na'ytelma'_NK = {s = d10 "näytelmä"} ;
+lin na'ytelma'llinen_NK = {s = d38 "näytelmällinen"} ;
+lin na'ytille_AdvK = {s = c99 "näytille"} ;
+lin na'ytilla'_AdvK = {s = c99 "näytillä"} ;
+lin na'ytin_NK = {s = d33A "näytin"} ;
+lin na'ytteille_AdvK = {s = c99 "näytteille"} ;
+lin na'ytteilla'_AdvK = {s = c99 "näytteillä"} ;
+lin na'yttelija'_NK = {s = d12 "näyttelijä"} ;
+lin na'yttelija'ta'r_NK = {s = d32A "näyttelijätär"} ;
+lin na'yttely_NK = {s = d02 "näyttely"} ;
+lin na'ytta'ma'_NK = {s = d10 "näyttämä"} ;
+lin na'ytta'mo'_NK = {s = d02 "näyttämö"} ;
+lin na'ytta'mo'llinen_NK = {s = d38 "näyttämöllinen"} ;
+lin na'ytta'va'_NK = {s = d10 "näyttävä"} ;
+lin na'ytta'ytya'_VK = {s = c52A "näyttäytyä"} ;
+lin na'ytta'a'_VK = {s = c53A "näyttää"} ;
+lin na'ytto'_NK = {s = d01A "näyttö"} ;
+lin na'ytto'inen_NK = {s = d38 "näyttöinen"} ;
+lin na'yta'nto'_NK = {s = d01A "näytäntö"} ;
+lin na'yto'ksinen_NK = {s = d38 "näytöksinen"} ;
+lin na'yto's_NK = {s = d39 "näytös"} ;
+lin na'a'mma'_AdvK = {s = c99 "näämmä"} ;
+lin na'a'nnyksiin_AdvK = {s = c99 "näännyksiin"} ;
+lin na'a'nnyksissa'_AdvK = {s = c99 "näännyksissä"} ;
+lin na'a'nnytta'a'_VK = {s = c53A "näännyttää"} ;
+lin na'a'ntymys_NK = {s = d39 "nääntymys"} ;
+lin na'a'ntya'_VK = {s = c52A "nääntyä"} ;
+lin na'a's_AdvK = {s = c99 "nääs"} ;
+lin na'a't_AdvK = {s = c99 "näät"} ;
+lin na'a'tsen_AdvK = {s = c99 "näätsen"} ;
+lin na'a'ta'_NK = {s = d10A "näätä"} ;
+lin no'f_AdvK = {s = c99 "nöf"} ;
+lin no'ko'tta'a'_VK = {s = c53A "nököttää"} ;
+lin no'rtti_NK = {s = d05A "nörtti"} ;
+lin no'sso'_NK = {s = d01 "nössö"} ;
+lin no'yhta'_NK = {s = d10A "nöyhtä"} ;
+lin no'yhta'inen_NK = {s = d38 "nöyhtäinen"} ;
+lin no'yhta'ytya'_VK = {s = c52A "nöyhtäytyä"} ;
+lin no'yhta'a'ntya'_VK = {s = c52A "nöyhtääntyä"} ;
+lin no'yristella'_VK = {s = c67 "nöyristellä"} ;
+lin no'yristely_NK = {s = d02 "nöyristely"} ;
+lin no'yrrytta'a'_VK = {s = c53A "nöyrryttää"} ;
+lin no'yrtymys_NK = {s = d39 "nöyrtymys"} ;
+lin no'yrtya'_VK = {s = c52A "nöyrtyä"} ;
+lin no'yryys_NK = {s = d40 "nöyryys"} ;
+lin no'yryytta'a'_VK = {s = c53A "nöyryyttää"} ;
+lin no'yryytys_NK = {s = d39 "nöyryytys"} ;
+lin no'yra'_AK = {s = d10 "nöyrä"} ;
+--+ lin no'yra'sti_AdvK = {s = c99 "nöyrästi"} ;
+lin oas_NK = {s = d41A "oas"} ;
+lin obduktio_NK = {s = d03 "obduktio"} ;
+lin obeliski_NK = {s = d05 "obeliski"} ;
+lin objekti_NK = {s = d05 "objekti"} ;
+lin objektiivi_NK = {s = d05 "objektiivi"} ;
+lin objektiivinen_AK = {s = d38 "objektiivinen"} ;
+--+ lin objektiivisesti_AdvK = {s = c99 "objektiivisesti"} ;
+lin objektiivisuus_NK = {s = d40 "objektiivisuus"} ;
+lin obligaatio_NK = {s = d03 "obligaatio"} ;
+lin obligatorinen_NK = {s = d38 "obligatorinen"} ;
+lin oboe_NK = {s = d03 "oboe"} ;
+lin oboisti_NK = {s = d05 "oboisti"} ;
+lin observatorio_NK = {s = d03 "observatorio"} ;
+lin observoida_VK = {s = c62 "observoida"} ;
+lin observoija_NK = {s = d10 "observoija"} ;
+lin observointi_NK = {s = d05A "observointi"} ;
+lin obstruktio_NK = {s = d03 "obstruktio"} ;
+lin odelma_NK = {s = d10 "odelma"} ;
+lin odelmikko_NK = {s = d04A "odelmikko"} ;
+lin odontologi_NK = {s = d05 "odontologi"} ;
+lin odontologia_NK = {s = d12 "odontologia"} ;
+lin odontologinen_NK = {s = d38 "odontologinen"} ;
+lin odotella_VK = {s = c67A "odotella"} ;
+lin odotetusti_AdvK = {s = c99 "odotetusti"} ;
+lin odottaa_VK = {s = c53A "odottaa"} ;
+lin odottamaton_NK = {s = d34A "odottamaton"} ;
+lin odottamatta_AdvK = {s = c99 "odottamatta"} ;
+lin odottamattomasti_AdvK = {s = c99 "odottamattomasti"} ;
+lin odotus_NK = {s = d39 "odotus"} ;
+lin odotusaika_NK = {s = d09A "odotusaika"} ;
+lin odotuttaa_VK = {s = c53A "odotuttaa"} ;
+lin odysseia_NK = {s = d09 "odysseia"} ;
+lin offensiivi_NK = {s = d05 "offensiivi"} ;
+lin offensiivinen_NK = {s = d38 "offensiivinen"} ;
+lin offset_NK = {s = d05 "offset"} ;
+lin oh_AdvK = {s = c99 "oh"} ;
+lin ohari_NK = {s = d06 "ohari"} ;
+lin ohdake_NK = {s = d48A "ohdake"} ;
+lin ohdakkeinen_NK = {s = d38 "ohdakkeinen"} ;
+lin oheen_AdvK = {s = c99 "oheen"} ;
+lin oheinen_NK = {s = d38 "oheinen"} ;
+lin oheistaa_VK = {s = c53 "oheistaa"} ;
+lin ohella_AdvK = {s = c99 "ohella"} ;
+lin ohenne_NK = {s = d48A "ohenne"} ;
+lin ohennus_NK = {s = d39 "ohennus"} ;
+lin ohentaa_VK = {s = c54A "ohentaa"} ;
+lin ohenteinen_NK = {s = d38 "ohenteinen"} ;
+lin ohentua_VK = {s = c52A "ohentua"} ;
+lin ohentuma_NK = {s = d10 "ohentuma"} ;
+lin ohessa_AdvK = {s = c99 "ohessa"} ;
+lin ohesta_AdvK = {s = c99 "ohesta"} ;
+lin oheta_VK = {s = c72 "oheta"} ;
+lin ohhoh_AdvK = {s = c99 "ohhoh"} ;
+lin ohhoijaa_AdvK = {s = c99 "ohhoijaa"} ;
+lin ohi_AdvK = {s = c99 "ohi"} ;
+lin ohikiita'va'_NK = {s = d10 "ohikiitävä"} ;
+--+ lin ohimeneva'sti_AdvK = {s = c99 "ohimenevästi"} ;
+lin ohimennen_AdvK = {s = c99 "ohimennen"} ;
+lin ohimo_NK = {s = d02 "ohimo"} ;
+lin ohitella_VK = {s = c67A "ohitella"} ;
+lin ohitse_AdvK = {s = c99 "ohitse"} ;
+lin ohittaa_VK = {s = c53A "ohittaa"} ;
+lin ohittelu_NK = {s = d02 "ohittelu"} ;
+lin ohittua_VK = {s = c52A "ohittua"} ;
+lin ohitus_NK = {s = d39 "ohitus"} ;
+lin ohja_NK = {s = d10 "ohja"} ;
+lin ohjaaja_NK = {s = d10 "ohjaaja"} ;
+lin ohjaamo_NK = {s = d02 "ohjaamo"} ;
+lin ohjailla_VK = {s = c67 "ohjailla"} ;
+lin ohjailu_NK = {s = d02 "ohjailu"} ;
+lin ohjain_NK = {s = d33 "ohjain"} ;
+lin ohjanta_NK = {s = d09A "ohjanta"} ;
+lin ohjas_NK = {s = d39 "ohjas"} ;
+lin ohjastaa_VK = {s = c53 "ohjastaa"} ;
+lin ohjastaja_NK = {s = d10 "ohjastaja"} ;
+lin ohjastus_NK = {s = d39 "ohjastus"} ;
+lin ohjata_VK = {s = c73 "ohjata"} ;
+lin ohjattava_NK = {s = d10 "ohjattava"} ;
+lin ohjattavuus_NK = {s = d40 "ohjattavuus"} ;
+lin ohjauksinen_NK = {s = d38 "ohjauksinen"} ;
+lin ohjaus_NK = {s = d39 "ohjaus"} ;
+lin ohjautua_VK = {s = c52A "ohjautua"} ;
+lin ohjautuvuus_NK = {s = d40 "ohjautuvuus"} ;
+lin ohje_NK = {s = d48 "ohje"} ;
+lin ohjeellinen_NK = {s = d38 "ohjeellinen"} ;
+lin ohjeistaa_VK = {s = c53 "ohjeistaa"} ;
+lin ohjeisto_NK = {s = d02 "ohjeisto"} ;
+lin ohjeistus_NK = {s = d39 "ohjeistus"} ;
+lin ohjelma_NK = {s = d10 "ohjelma"} ;
+lin ohjelmainen_NK = {s = d38 "ohjelmainen"} ;
+lin ohjelmallinen_AK = {s = d38 "ohjelmallinen"} ;
+--+ lin ohjelmallisesti_AdvK = {s = c99 "ohjelmallisesti"} ;
+lin ohjelmallisuus_NK = {s = d40 "ohjelmallisuus"} ;
+lin ohjelmisto_NK = {s = d01 "ohjelmisto"} ;
+lin ohjelmoida_VK = {s = c62 "ohjelmoida"} ;
+lin ohjelmoija_NK = {s = d10 "ohjelmoija"} ;
+lin ohjelmointi_NK = {s = d05A "ohjelmointi"} ;
+lin ohjus_NK = {s = d39 "ohjus"} ;
+lin ohkainen_NK = {s = d38 "ohkainen"} ;
+lin ohmi_NK = {s = d05 "ohmi"} ;
+lin oho_AdvK = {s = c99 "oho"} ;
+lin ohoh_AdvK = {s = c99 "ohoh"} ;
+lin ohoi_AdvK = {s = c99 "ohoi"} ;
+lin ohra_NK = {s = d10 "ohra"} ;
+lin ohrainen_AK = {s = d38 "ohrainen"} ;
+--+ lin ohraisesti_AdvK = {s = c99 "ohraisesti"} ;
+lin ohrana_NK = {s = d11 "ohrana"} ;
+lin ohuelti_AdvK = {s = c99 "ohuelti"} ;
+lin ohuesti_AdvK = {s = c99 "ohuesti"} ;
+lin ohuinen_NK = {s = d38 "ohuinen"} ;
+lin ohukainen_NK = {s = d38 "ohukainen"} ;
+lin ohukas_NK = {s = d41A "ohukas"} ;
+lin ohut_NK = {s = d43 "ohut"} ;
+lin ohuus_NK = {s = d40 "ohuus"} ;
+lin oi_AdvK = {s = c99 "oi"} ;
+lin oidipaalinen_NK = {s = d38 "oidipaalinen"} ;
+lin oieta_VK = {s = c72A "oieta"} ;
+lin oijoi_AdvK = {s = c99 "oijoi"} ;
+lin oikaista_VK = {s = c66 "oikaista"} ;
+lin oikaisu_NK = {s = d02 "oikaisu"} ;
+lin oikea_AK = {s = d15 "oikea"} ;
+--+ lin oikea_aikaisesti_AdvK = {s = c99 "oikea-aikaisesti"} ;
+lin oikeaan_AdvK = {s = c99 "oikeaan"} ;
+lin oikealla_AdvK = {s = c99 "oikealla"} ;
+lin oikealle_AdvK = {s = c99 "oikealle"} ;
+lin oikealta_AdvK = {s = c99 "oikealta"} ;
+--+ lin oikeamielisesti_AdvK = {s = c99 "oikeamielisesti"} ;
+lin oikeammin_AdvK = {s = c99 "oikeammin"} ;
+lin oikeanlainen_NK = {s = d38 "oikeanlainen"} ;
+--+ lin oikeaoppisesti_AdvK = {s = c99 "oikeaoppisesti"} ;
+lin oikeassa_AdvK = {s = c99 "oikeassa"} ;
+lin oikeastaan_AdvK = {s = c99 "oikeastaan"} ;
+--+ lin oikeasti_AdvK = {s = c99 "oikeasti"} ;
+lin oikeellinen_NK = {s = d38 "oikeellinen"} ;
+lin oikeellisuus_NK = {s = d40 "oikeellisuus"} ;
+lin oikein_AdvK = {s = c99 "oikein"} ;
+lin oikein_pa'in_AdvK = {s = c99 "oikein päin"} ;
+lin oikeisto_NK = {s = d01 "oikeisto"} ;
+lin oikeistolaistua_VK = {s = c52 "oikeistolaistua"} ;
+lin oikeistolaisuus_NK = {s = d40 "oikeistolaisuus"} ;
+lin oikeudellinen_AK = {s = d38 "oikeudellinen"} ;
+--+ lin oikeudellisesti_AdvK = {s = c99 "oikeudellisesti"} ;
+lin oikeudeton_NK = {s = d34A "oikeudeton"} ;
+lin oikeudettomasti_AdvK = {s = c99 "oikeudettomasti"} ;
+lin oikeus_NK = {s = d40 "oikeus"} ;
+lin oikeutettu_NK = {s = d01A "oikeutettu"} ;
+lin oikeutetusti_AdvK = {s = c99 "oikeutetusti"} ;
+lin oikeuttaa_VK = {s = c53A "oikeuttaa"} ;
+lin oikeutus_NK = {s = d39 "oikeutus"} ;
+lin oikku_NK = {s = d01A "oikku"} ;
+lin oikkuilija_NK = {s = d12 "oikkuilija"} ;
+lin oikkuilla_VK = {s = c67 "oikkuilla"} ;
+lin oikkuilu_NK = {s = d02 "oikkuilu"} ;
+lin oikoa_VK = {s = c52A "oikoa"} ;
+lin oikoilla_VK = {s = c67 "oikoilla"} ;
+lin oikoinen_NK = {s = d38 "oikoinen"} ;
+lin oikoisenaan_AdvK = {s = c99 "oikoisenaan"} ;
+lin oikopa'a'ta'_AdvK = {s = c99 "oikopäätä"} ;
+lin oikukas_AK = {s = d41A "oikukas"} ;
+--+ lin oikukkaasti_AdvK = {s = c99 "oikukkaasti"} ;
+lin oikukkuus_NK = {s = d40 "oikukkuus"} ;
+lin oikullinen_AK = {s = d38 "oikullinen"} ;
+--+ lin oikullisesti_AdvK = {s = c99 "oikullisesti"} ;
+lin oikullisuus_NK = {s = d40 "oikullisuus"} ;
+lin oikutella_VK = {s = c67A "oikutella"} ;
+lin oikuttelija_NK = {s = d12 "oikuttelija"} ;
+lin oikuttelu_NK = {s = d02 "oikuttelu"} ;
+lin oinas_NK = {s = d41 "oinas"} ;
+lin oionta_NK = {s = d09A "oionta"} ;
+lin oire_NK = {s = d48 "oire"} ;
+lin oireellinen_NK = {s = d38 "oireellinen"} ;
+lin oireeton_NK = {s = d34A "oireeton"} ;
+lin oirehtia_VK = {s = c61A "oirehtia"} ;
+lin oireilla_VK = {s = c67 "oireilla"} ;
+lin oireilu_NK = {s = d02 "oireilu"} ;
+lin oireinen_NK = {s = d38 "oireinen"} ;
+lin oireisto_NK = {s = d02 "oireisto"} ;
+lin oitis_AdvK = {s = c99 "oitis"} ;
+lin oiva_NK = {s = d10 "oiva"} ;
+lin oivallinen_AK = {s = d38 "oivallinen"} ;
+--+ lin oivallisesti_AdvK = {s = c99 "oivallisesti"} ;
+lin oivallisuus_NK = {s = d40 "oivallisuus"} ;
+lin oivallus_NK = {s = d39 "oivallus"} ;
+lin oivaltaa_VK = {s = c54A "oivaltaa"} ;
+lin oja_NK = {s = d10 "oja"} ;
+lin oja_aura_NK = {s = d09 "oja-aura"} ;
+lin ojasto_NK = {s = d02 "ojasto"} ;
+lin ojennella_VK = {s = c67A "ojennella"} ;
+lin ojennus_NK = {s = d39 "ojennus"} ;
+lin ojentaa_VK = {s = c54A "ojentaa"} ;
+lin ojentaja_NK = {s = d10 "ojentaja"} ;
+lin ojentautua_VK = {s = c52A "ojentautua"} ;
+lin ojentua_VK = {s = c52A "ojentua"} ;
+lin ojikko_NK = {s = d04A "ojikko"} ;
+lin ojittaa_VK = {s = c53A "ojittaa"} ;
+lin ojitus_NK = {s = d39 "ojitus"} ;
+lin ojolla_AdvK = {s = c99 "ojolla"} ;
+lin ojollaan_AdvK = {s = c99 "ojollaan"} ;
+lin ojolle_AdvK = {s = c99 "ojolle"} ;
+lin ojolleen_AdvK = {s = c99 "ojolleen"} ;
+lin ojoon_AdvK = {s = c99 "ojoon"} ;
+lin ojossa_AdvK = {s = c99 "ojossa"} ;
+lin ojuke_NK = {s = d48A "ojuke"} ;
+lin OK_AdvK = {s = c99 "OK"} ;
+lin oka_NK = {s = d10A "oka"} ;
+lin okainen_NK = {s = d38 "okainen"} ;
+lin okariina_NK = {s = d09 "okariina"} ;
+lin okei_AdvK = {s = c99 "okei"} ;
+lin okkultismi_NK = {s = d05 "okkultismi"} ;
+lin okkultisti_NK = {s = d05 "okkultisti"} ;
+lin okkulttinen_NK = {s = d38 "okkulttinen"} ;
+lin okra_1_NK = {s = d10 "okra"} ;
+lin okra_2_NK = {s = d10 "okra"} ;
+lin oksa_NK = {s = d10 "oksa"} ;
+lin oksainen_NK = {s = d38 "oksainen"} ;
+lin oksaisuus_NK = {s = d40 "oksaisuus"} ;
+lin oksakas_NK = {s = d41A "oksakas"} ;
+lin oksastaa_VK = {s = c53 "oksastaa"} ;
+lin oksasto_NK = {s = d02 "oksasto"} ;
+lin oksennella_VK = {s = c67A "oksennella"} ;
+lin oksennus_NK = {s = d39 "oksennus"} ;
+lin oksennuttaa_VK = {s = c53A "oksennuttaa"} ;
+lin oksentaa_VK = {s = c54A "oksentaa"} ;
+lin oksentelu_NK = {s = d02 "oksentelu"} ;
+lin oksete_NK = {s = d48A "oksete"} ;
+lin oksettaa_VK = {s = c53A "oksettaa"} ;
+lin oksetus_NK = {s = d39 "oksetus"} ;
+lin oksia_VK = {s = c61 "oksia"} ;
+lin oksidi_NK = {s = d05 "oksidi"} ;
+lin oksidoida_VK = {s = c62 "oksidoida"} ;
+lin oksidoitua_VK = {s = c52A "oksidoitua"} ;
+lin oksinta_NK = {s = d09A "oksinta"} ;
+lin oksisto_NK = {s = d02 "oksisto"} ;
+lin oktaani_NK = {s = d05 "oktaani"} ;
+lin oktaaninen_NK = {s = d38 "oktaaninen"} ;
+lin oktaavi_NK = {s = d05 "oktaavi"} ;
+lin oktaedri_NK = {s = d05 "oktaedri"} ;
+lin oktetti_NK = {s = d05A "oktetti"} ;
+lin oktetto_NK = {s = d01A "oktetto"} ;
+lin okulaari_NK = {s = d05 "okulaari"} ;
+lin olake_NK = {s = d48A "olake"} ;
+lin olakkain_AdvK = {s = c99 "olakkain"} ;
+lin olas_NK = {s = d41 "olas"} ;
+lin oleanteri_NK = {s = d06 "oleanteri"} ;
+lin oleellinen_NK = {s = d38 "oleellinen"} ;
+lin oleilla_VK = {s = c67 "oleilla"} ;
+lin oleilu_NK = {s = d02 "oleilu"} ;
+lin oleksia_VK = {s = c61 "oleksia"} ;
+lin olematon_NK = {s = d34A "olematon"} ;
+lin olemattomuus_NK = {s = d40 "olemattomuus"} ;
+lin olemus_NK = {s = d39 "olemus"} ;
+lin olennainen_AK = {s = d38 "olennainen"} ;
+--+ lin olennaisesti_AdvK = {s = c99 "olennaisesti"} ;
+lin olennaisuus_NK = {s = d40 "olennaisuus"} ;
+lin olento_NK = {s = d01A "olento"} ;
+lin oleskella_VK = {s = c67 "oleskella"} ;
+lin oleskelu_NK = {s = d02 "oleskelu"} ;
+lin oletettavasti_AdvK = {s = c99 "oletettavasti"} ;
+lin olettaa_VK = {s = c53A "olettaa"} ;
+lin olettamus_NK = {s = d39 "olettamus"} ;
+lin oletus_NK = {s = d39 "oletus"} ;
+lin oleva_NK = {s = d10 "oleva"} ;
+lin olevainen_NK = {s = d38 "olevainen"} ;
+lin olevaisuus_NK = {s = d40 "olevaisuus"} ;
+lin olevinaan_AdvK = {s = c99 "olevinaan"} ;
+lin oligarkia_NK = {s = d12 "oligarkia"} ;
+lin oligarkkinen_NK = {s = d38 "oligarkkinen"} ;
+lin oligopoli_NK = {s = d05 "oligopoli"} ;
+lin oliivi_NK = {s = d06 "oliivi"} ;
+lin olija_NK = {s = d12 "olija"} ;
+lin olio_NK = {s = d03 "olio"} ;
+lin olka_NK = {s = d10A "olka"} ;
+lin olkaimellinen_NK = {s = d38 "olkaimellinen"} ;
+lin olkaiminen_NK = {s = d38 "olkaiminen"} ;
+lin olkain_NK = {s = d33 "olkain"} ;
+lin olki_NK = {s = d07A "olki"} ;
+lin olkinen_NK = {s = d38 "olkinen"} ;
+lin olla_VK = {s = c67 "olla"} ;
+lin ollenkaan_AdvK = {s = c99 "ollenkaan"} ;
+lin olletikaan_AdvK = {s = c99 "olletikaan"} ;
+lin olletikin_AdvK = {s = c99 "olletikin"} ;
+lin olmi_NK = {s = d05 "olmi"} ;
+lin olo_NK = {s = d01 "olo"} ;
+lin oloaika_NK = {s = d09A "oloaika"} ;
+lin oloinen_NK = {s = d38 "oloinen"} ;
+--? lin oltavat_NK = {s = d10 "oltavat"} ;
+lin oltermanni_NK = {s = d05 "oltermanni"} ;
+lin olut_NK = {s = d43 "olut"} ;
+lin olvi_NK = {s = d05 "olvi"} ;
+lin olympiadi_NK = {s = d05 "olympiadi"} ;
+--? lin olympialaiset_NK = {s = d38 "olympialaiset"} ;
+lin olympolainen_NK = {s = d38 "olympolainen"} ;
+lin oma_NK = {s = d10 "oma"} ;
+--+ lin oma_aloitteisesti_AdvK = {s = c99 "oma-aloitteisesti"} ;
+lin oma_aloitteisuus_NK = {s = d40 "oma-aloitteisuus"} ;
+--+ lin omaehtoisesti_AdvK = {s = c99 "omaehtoisesti"} ;
+lin omaharkintainen_NK = {s = d38 "omaharkintainen"} ;
+lin omahyva'inen_AK = {s = d38 "omahyväinen"} ;
+--+ lin omahyva'isesti_AdvK = {s = c99 "omahyväisesti"} ;
+lin omahyva'isyys_NK = {s = d40 "omahyväisyys"} ;
+lin omainen_AK = {s = d38 "omainen"} ;
+lin omainen_AK = {s = d38 "omainen"} ;
+--+ lin omaisesti_AdvK = {s = c99 "omaisesti"} ;
+lin omaisuus_NK = {s = d40 "omaisuus"} ;
+lin omaisuus_NK = {s = d40 "omaisuus"} ;
+--+ lin omakohtaisesti_AdvK = {s = c99 "omakohtaisesti"} ;
+lin omaksua_VK = {s = c52 "omaksua"} ;
+--+ lin omaka'tisesti_AdvK = {s = c99 "omakätisesti"} ;
+--+ lin omalaatuisesti_AdvK = {s = c99 "omalaatuisesti"} ;
+lin omaleimaisuus_NK = {s = d40 "omaleimaisuus"} ;
+lin omanlainen_NK = {s = d38 "omanlainen"} ;
+--+ lin omapera'isesti_AdvK = {s = c99 "omaperäisesti"} ;
+--+ lin omapa'isesti_AdvK = {s = c99 "omapäisesti"} ;
+lin omapa'isyys_NK = {s = d40 "omapäisyys"} ;
+lin omata_VK = {s = c73 "omata"} ;
+--+ lin omatoimisesti_AdvK = {s = c99 "omatoimisesti"} ;
+lin omatoimisuus_NK = {s = d40 "omatoimisuus"} ;
+lin omavaloinen_NK = {s = d38 "omavaloinen"} ;
+--+ lin omavaltaisesti_AdvK = {s = c99 "omavaltaisesti"} ;
+lin omavaraistaa_VK = {s = c53 "omavaraistaa"} ;
+lin omavaraistua_VK = {s = c52 "omavaraistua"} ;
+--+ lin omavastuisesti_AdvK = {s = c99 "omavastuisesti"} ;
+lin omavastuuaika_NK = {s = d09A "omavastuuaika"} ;
+lin omeletti_NK = {s = d05A "omeletti"} ;
+lin omena_NK = {s = d11 "omena"} ;
+lin ometta_NK = {s = d14A "ometta"} ;
+lin omia_VK = {s = c61 "omia"} ;
+lin omiaan_AdvK = {s = c99 "omiaan"} ;
+lin omiansa_AdvK = {s = c99 "omiansa"} ;
+lin omillaan_AdvK = {s = c99 "omillaan"} ;
+lin omilleen_AdvK = {s = c99 "omilleen"} ;
+lin ominainen_AK = {s = d38 "ominainen"} ;
+--+ lin ominaisesti_AdvK = {s = c99 "ominaisesti"} ;
+lin ominaisuus_NK = {s = d40 "ominaisuus"} ;
+lin omintakeinen_AK = {s = d38 "omintakeinen"} ;
+--+ lin omintakeisesti_AdvK = {s = c99 "omintakeisesti"} ;
+lin omintakeisuus_NK = {s = d40 "omintakeisuus"} ;
+lin omistaa_VK = {s = c53 "omistaa"} ;
+lin omistaja_NK = {s = d10 "omistaja"} ;
+lin omistautua_VK = {s = c52A "omistautua"} ;
+lin omiste_NK = {s = d48 "omiste"} ;
+lin omisteinen_NK = {s = d38 "omisteinen"} ;
+lin omistus_NK = {s = d39 "omistus"} ;
+--+ lin omistushaluisesti_AdvK = {s = c99 "omistushaluisesti"} ;
+lin omistusliitteellinen_NK = {s = d38 "omistusliitteellinen"} ;
+lin omistusliitteeto'n_NK = {s = d34A "omistusliitteetön"} ;
+lin omistusliitteinen_NK = {s = d38 "omistusliitteinen"} ;
+lin omituinen_AK = {s = d38 "omituinen"} ;
+--+ lin omituisesti_AdvK = {s = c99 "omituisesti"} ;
+lin omituisuus_NK = {s = d40 "omituisuus"} ;
+lin ommel_NK = {s = d49A "ommel"} ;
+lin ommella_VK = {s = c67A "ommella"} ;
+lin omnipotenssi_NK = {s = d05 "omnipotenssi"} ;
+lin ompele_NK = {s = d49 "ompele"} ;
+lin ompeleinen_NK = {s = d38 "ompeleinen"} ;
+lin ompelija_NK = {s = d12 "ompelija"} ;
+lin ompelimo_NK = {s = d02 "ompelimo"} ;
+lin ompelu_NK = {s = d02 "ompelu"} ;
+lin ompelus_NK = {s = d39 "ompelus"} ;
+lin ompeluttaa_VK = {s = c53A "ompeluttaa"} ;
+lin omppu_NK = {s = d01A "omppu"} ;
+lin onania_NK = {s = d12 "onania"} ;
+lin onanoida_VK = {s = c62 "onanoida"} ;
+lin ongelma_NK = {s = d10 "ongelma"} ;
+lin ongelmainen_NK = {s = d38 "ongelmainen"} ;
+lin ongelmallinen_AK = {s = d38 "ongelmallinen"} ;
+--+ lin ongelmallisesti_AdvK = {s = c99 "ongelmallisesti"} ;
+lin ongelmallisuus_NK = {s = d40 "ongelmallisuus"} ;
+lin ongelmaton_NK = {s = d34A "ongelmaton"} ;
+lin ongelmisto_NK = {s = d01 "ongelmisto"} ;
+lin onginta_NK = {s = d09A "onginta"} ;
+lin onkalo_NK = {s = d02 "onkalo"} ;
+lin onki_NK = {s = d07A "onki"} ;
+lin onkia_VK = {s = c61A "onkia"} ;
+lin onkija_NK = {s = d12 "onkija"} ;
+lin onkogeeninen_NK = {s = d38 "onkogeeninen"} ;
+lin onkogeenisuus_NK = {s = d40 "onkogeenisuus"} ;
+lin onkologia_NK = {s = d12 "onkologia"} ;
+lin onnahdella_VK = {s = c67A "onnahdella"} ;
+lin onnahdus_NK = {s = d39 "onnahdus"} ;
+lin onnahtaa_VK = {s = c53A "onnahtaa"} ;
+lin onnahtelu_NK = {s = d02 "onnahtelu"} ;
+lin onnekas_AK = {s = d41A "onnekas"} ;
+--+ lin onnekkaasti_AdvK = {s = c99 "onnekkaasti"} ;
+lin onnekkuus_NK = {s = d40 "onnekkuus"} ;
+lin onneksi_AdvK = {s = c99 "onneksi"} ;
+lin onnela_NK = {s = d12 "onnela"} ;
+lin onnellinen_AK = {s = d38 "onnellinen"} ;
+--+ lin onnellisesti_AdvK = {s = c99 "onnellisesti"} ;
+lin onnellistaa_VK = {s = c53 "onnellistaa"} ;
+lin onnellistuttaa_VK = {s = c53A "onnellistuttaa"} ;
+lin onnellisuus_NK = {s = d40 "onnellisuus"} ;
+lin onnenaika_NK = {s = d09A "onnenaika"} ;
+lin onnenkantamoinen_NK = {s = d38 "onnenkantamoinen"} ;
+lin onnenpotkaus_NK = {s = d39 "onnenpotkaus"} ;
+lin onnenpotku_NK = {s = d01 "onnenpotku"} ;
+lin onnentoivottaja_NK = {s = d10 "onnentoivottaja"} ;
+lin onnestaa_VK = {s = c53 "onnestaa"} ;
+lin onnetar_NK = {s = d32A "onnetar"} ;
+lin onneton_NK = {s = d34A "onneton"} ;
+lin onnettomasti_AdvK = {s = c99 "onnettomasti"} ;
+lin onnettomuus_NK = {s = d40 "onnettomuus"} ;
+lin onni_NK = {s = d07 "onni"} ;
+lin onnikka_NK = {s = d14A "onnikka"} ;
+lin onninen_NK = {s = d38 "onninen"} ;
+lin onnistaa_VK = {s = c53 "onnistaa"} ;
+lin onnistua_VK = {s = c52 "onnistua"} ;
+--+ lin onnistuneesti_AdvK = {s = c99 "onnistuneesti"} ;
+lin onnistuneisuus_NK = {s = d40 "onnistuneisuus"} ;
+lin onnistunut_AK = {s = d47 "onnistunut"} ;
+lin onnitella_VK = {s = c67A "onnitella"} ;
+lin onnittelija_NK = {s = d12 "onnittelija"} ;
+lin onnittelu_NK = {s = d02 "onnittelu"} ;
+lin onomastiikka_NK = {s = d09A "onomastiikka"} ;
+lin onomatopoeettinen_NK = {s = d38 "onomatopoeettinen"} ;
+lin onomatopoieettinen_NK = {s = d38 "onomatopoieettinen"} ;
+lin ontelo_NK = {s = d02 "ontelo"} ;
+lin onteloida_VK = {s = c62 "onteloida"} ;
+lin onteloinen_NK = {s = d38 "onteloinen"} ;
+lin onteloitua_VK = {s = c52A "onteloitua"} ;
+lin ontosti_AdvK = {s = c99 "ontosti"} ;
+lin ontto_NK = {s = d01A "ontto"} ;
+lin onttous_NK = {s = d40 "onttous"} ;
+lin ontua_VK = {s = c52A "ontua"} ;
+lin onyksi_NK = {s = d05 "onyksi"} ;
+lin oodi_NK = {s = d05 "oodi"} ;
+lin oomega_NK = {s = d13 "oomega"} ;
+lin oopiumi_NK = {s = d05 "oopiumi"} ;
+lin ooppera_NK = {s = d12 "ooppera"} ;
+lin ootrata_VK = {s = c73 "ootrata"} ;
+lin ootraus_NK = {s = d39 "ootraus"} ;
+lin opaakki_NK = {s = d05A "opaakki"} ;
+lin opaali_NK = {s = d06 "opaali"} ;
+lin opalisoida_VK = {s = c62 "opalisoida"} ;
+lin opas_NK = {s = d41A "opas"} ;
+lin opastaa_VK = {s = c53 "opastaa"} ;
+lin opastaja_NK = {s = d10 "opastaja"} ;
+lin opaste_NK = {s = d48 "opaste"} ;
+lin opastin_NK = {s = d33 "opastin"} ;
+lin opastus_NK = {s = d39 "opastus"} ;
+lin ope_NK = {s = d08 "ope"} ;
+lin open_house_NK = {s = d08 "open house"} ;
+lin operaatio_NK = {s = d03 "operaatio"} ;
+lin operaattori_NK = {s = d06 "operaattori"} ;
+lin operatiivinen_AK = {s = d38 "operatiivinen"} ;
+--+ lin operatiivisesti_AdvK = {s = c99 "operatiivisesti"} ;
+lin operationaalinen_NK = {s = d38 "operationaalinen"} ;
+lin operato'o'ri_NK = {s = d05 "operatööri"} ;
+lin operetti_NK = {s = d05A "operetti"} ;
+lin operoida_VK = {s = c62 "operoida"} ;
+lin operoija_NK = {s = d10 "operoija"} ;
+lin operointi_NK = {s = d05A "operointi"} ;
+lin opetella_VK = {s = c67A "opetella"} ;
+lin opettaa_VK = {s = c53A "opettaa"} ;
+lin opettaja_NK = {s = d10 "opettaja"} ;
+lin opettajainen_NK = {s = d38 "opettajainen"} ;
+lin opettajatar_NK = {s = d32A "opettajatar"} ;
+lin opettajisto_NK = {s = d01 "opettajisto"} ;
+lin opettava_AK = {s = d10 "opettava"} ;
+lin opettavainen_AK = {s = d38 "opettavainen"} ;
+--+ lin opettavaisesti_AdvK = {s = c99 "opettavaisesti"} ;
+lin opettavaisuus_NK = {s = d40 "opettavaisuus"} ;
+--+ lin opettavasti_AdvK = {s = c99 "opettavasti"} ;
+lin opettavuus_NK = {s = d40 "opettavuus"} ;
+lin opettelu_NK = {s = d02 "opettelu"} ;
+lin opetuksellinen_NK = {s = d38 "opetuksellinen"} ;
+lin opetus_NK = {s = d39 "opetus"} ;
+lin opiaatti_NK = {s = d05A "opiaatti"} ;
+lin opillinen_AK = {s = d38 "opillinen"} ;
+--+ lin opillisesti_AdvK = {s = c99 "opillisesti"} ;
+--? lin opinnot_NK = {s = d01A "opinnot"} ;
+lin opiskelija_NK = {s = d12 "opiskelija"} ;
+lin opiskella_VK = {s = c67 "opiskella"} ;
+lin opiskelu_NK = {s = d02 "opiskelu"} ;
+lin opiskeluaika_NK = {s = d09A "opiskeluaika"} ;
+lin opisto_NK = {s = d02 "opisto"} ;
+lin opo_NK = {s = d01 "opo"} ;
+lin opossumi_NK = {s = d05 "opossumi"} ;
+lin oppi_NK = {s = d05A "oppi"} ;
+lin oppia_VK = {s = c61A "oppia"} ;
+lin oppiaika_NK = {s = d09A "oppiaika"} ;
+lin oppilas_NK = {s = d41 "oppilas"} ;
+lin oppimaton_NK = {s = d34A "oppimaton"} ;
+--+ lin oppineesti_AdvK = {s = c99 "oppineesti"} ;
+lin oppineisto_NK = {s = d01 "oppineisto"} ;
+lin oppineisuus_NK = {s = d40 "oppineisuus"} ;
+lin oppinen_NK = {s = d38 "oppinen"} ;
+lin oppinut_AK = {s = d47 "oppinut"} ;
+lin oppisopimusaika_NK = {s = d09A "oppisopimusaika"} ;
+lin oppisuus_NK = {s = d40 "oppisuus"} ;
+lin oppivainen_NK = {s = d38 "oppivainen"} ;
+lin opponentti_NK = {s = d05A "opponentti"} ;
+lin opponoida_VK = {s = c62 "opponoida"} ;
+lin opponointi_NK = {s = d05A "opponointi"} ;
+lin opportunismi_NK = {s = d05 "opportunismi"} ;
+lin opportunisti_NK = {s = d05 "opportunisti"} ;
+lin opportunistinen_NK = {s = d38 "opportunistinen"} ;
+lin oppositio_NK = {s = d03 "oppositio"} ;
+lin optiikka_NK = {s = d14A "optiikka"} ;
+lin optikko_NK = {s = d04A "optikko"} ;
+lin optimaalinen_NK = {s = d38 "optimaalinen"} ;
+lin optimi_NK = {s = d05 "optimi"} ;
+lin optimismi_NK = {s = d05 "optimismi"} ;
+lin optimisti_NK = {s = d05 "optimisti"} ;
+lin optimistinen_AK = {s = d38 "optimistinen"} ;
+--+ lin optimistisesti_AdvK = {s = c99 "optimistisesti"} ;
+lin optimistisuus_NK = {s = d40 "optimistisuus"} ;
+lin optimoida_VK = {s = c62 "optimoida"} ;
+lin optimointi_NK = {s = d05A "optimointi"} ;
+lin optinen_AK = {s = d38 "optinen"} ;
+lin optio_NK = {s = d03 "optio"} ;
+--+ lin optisesti_AdvK = {s = c99 "optisesti"} ;
+lin optometria_NK = {s = d12 "optometria"} ;
+lin opuntia_NK = {s = d12 "opuntia"} ;
+lin opus_NK = {s = d39 "opus"} ;
+lin ora_NK = {s = d10 "ora"} ;
+lin oraakkeli_NK = {s = d06 "oraakkeli"} ;
+--+ lin oraakkelimaisesti_AdvK = {s = c99 "oraakkelimaisesti"} ;
+lin orakas_NK = {s = d41A "orakas"} ;
+lin orangutangi_NK = {s = d05 "orangutangi"} ;
+lin oranki_NK = {s = d05A "oranki"} ;
+lin oranssi_NK = {s = d05 "oranssi"} ;
+lin oranssinen_NK = {s = d38 "oranssinen"} ;
+lin oras_NK = {s = d41 "oras"} ;
+lin orastaa_VK = {s = c53 "orastaa"} ;
+lin orastua_VK = {s = c52 "orastua"} ;
+lin orastus_NK = {s = d39 "orastus"} ;
+lin oratorio_NK = {s = d03 "oratorio"} ;
+lin orava_NK = {s = d10 "orava"} ;
+lin ordinaatta_NK = {s = d09A "ordinaatta"} ;
+lin ordoviikki_NK = {s = d05A "ordoviikki"} ;
+lin ordoviikkinen_NK = {s = d38 "ordoviikkinen"} ;
+lin oregano_NK = {s = d01 "oregano"} ;
+lin orgaani_NK = {s = d05 "orgaani"} ;
+lin orgaaninen_AK = {s = d38 "orgaaninen"} ;
+--+ lin orgaanisesti_AdvK = {s = c99 "orgaanisesti"} ;
+lin organdi_NK = {s = d05 "organdi"} ;
+lin organisaatio_NK = {s = d03 "organisaatio"} ;
+lin organisaattori_NK = {s = d06 "organisaattori"} ;
+lin organisatorinen_NK = {s = d38 "organisatorinen"} ;
+lin organismi_NK = {s = d05 "organismi"} ;
+lin organisoida_VK = {s = c62 "organisoida"} ;
+lin organisoija_NK = {s = d10 "organisoija"} ;
+lin organisointi_NK = {s = d05A "organisointi"} ;
+lin organisoitua_VK = {s = c52A "organisoitua"} ;
+lin organogeeninen_NK = {s = d38 "organogeeninen"} ;
+lin orgasmi_NK = {s = d05 "orgasmi"} ;
+lin orgastinen_NK = {s = d38 "orgastinen"} ;
+--? lin orgiat_NK = {s = d12 "orgiat"} ;
+lin orhi_NK = {s = d05 "orhi"} ;
+lin ori_NK = {s = d48 "ori"} ;
+lin oribletti_NK = {s = d05A "oribletti"} ;
+lin orientaalinen_NK = {s = d38 "orientaalinen"} ;
+lin orientaatio_NK = {s = d03 "orientaatio"} ;
+lin orientalisti_NK = {s = d05 "orientalisti"} ;
+lin orientalistiikka_NK = {s = d09A "orientalistiikka"} ;
+lin orientoida_VK = {s = c62 "orientoida"} ;
+lin orientointi_NK = {s = d05A "orientointi"} ;
+lin orientoitua_VK = {s = c52A "orientoitua"} ;
+lin orientti_NK = {s = d05A "orientti"} ;
+lin originaali_NK = {s = d05 "originaali"} ;
+lin originaalinen_NK = {s = d38 "originaalinen"} ;
+lin originaalisuus_NK = {s = d40 "originaalisuus"} ;
+lin originaliteetti_NK = {s = d05A "originaliteetti"} ;
+lin originelli_NK = {s = d05 "originelli"} ;
+lin origo_NK = {s = d02 "origo"} ;
+lin orja_NK = {s = d10 "orja"} ;
+lin orjailla_VK = {s = c67 "orjailla"} ;
+lin orjailu_NK = {s = d02 "orjailu"} ;
+lin orjallinen_AK = {s = d38 "orjallinen"} ;
+--+ lin orjallisesti_AdvK = {s = c99 "orjallisesti"} ;
+--+ lin orjamaisesti_AdvK = {s = c99 "orjamaisesti"} ;
+lin orjanlaakeri_NK = {s = d06 "orjanlaakeri"} ;
+lin orjuus_NK = {s = d40 "orjuus"} ;
+lin orjuuttaa_VK = {s = c53A "orjuuttaa"} ;
+lin orjuutus_NK = {s = d39 "orjuutus"} ;
+lin orkesteri_NK = {s = d06 "orkesteri"} ;
+lin orkestraatio_NK = {s = d03 "orkestraatio"} ;
+lin orkestroida_VK = {s = c62 "orkestroida"} ;
+lin orkestrointi_NK = {s = d05A "orkestrointi"} ;
+lin orkidea_NK = {s = d13 "orkidea"} ;
+lin orkku_NK = {s = d01A "orkku"} ;
+lin ornamentaalinen_NK = {s = d38 "ornamentaalinen"} ;
+lin ornamentiikka_NK = {s = d09A "ornamentiikka"} ;
+lin ornamentti_NK = {s = d05A "ornamentti"} ;
+lin ornitologi_NK = {s = d05 "ornitologi"} ;
+lin ornitologia_NK = {s = d12 "ornitologia"} ;
+lin ornitologinen_NK = {s = d38 "ornitologinen"} ;
+lin orpana_NK = {s = d11 "orpana"} ;
+lin orpo_NK = {s = d01A "orpo"} ;
+lin orpous_NK = {s = d40 "orpous"} ;
+lin orsi_NK = {s = d28 "orsi"} ;
+lin ortodoksi_NK = {s = d05 "ortodoksi"} ;
+lin ortodoksia_NK = {s = d12 "ortodoksia"} ;
+lin ortodoksinen_NK = {s = d38 "ortodoksinen"} ;
+lin ortodoksisuus_NK = {s = d40 "ortodoksisuus"} ;
+lin ortografia_NK = {s = d12 "ortografia"} ;
+lin ortopedi_NK = {s = d05 "ortopedi"} ;
+lin ortopedia_NK = {s = d12 "ortopedia"} ;
+lin ortopedinen_NK = {s = d38 "ortopedinen"} ;
+lin orvaskesi_NK = {s = d27 "orvaskesi"} ;
+lin orvokki_NK = {s = d05A "orvokki"} ;
+lin osa_NK = {s = d10 "osa"} ;
+lin osaaja_NK = {s = d10 "osaaja"} ;
+lin osaaminen_NK = {s = d38 "osaaminen"} ;
+--+ lin osaaottavasti_AdvK = {s = c99 "osaaottavasti"} ;
+lin osainen_NK = {s = d38 "osainen"} ;
+lin osaisuus_NK = {s = d40 "osaisuus"} ;
+lin osakas_NK = {s = d41A "osakas"} ;
+lin osake_NK = {s = d48A "osake"} ;
+lin osakesa'a'sta'minen_NK = {s = d38 "osakesäästäminen"} ;
+lin osakkeisto_NK = {s = d01 "osakkeisto"} ;
+lin osakkuus_NK = {s = d40 "osakkuus"} ;
+lin osakseen_AdvK = {s = c99 "osakseen"} ;
+lin osaksi_AdvK = {s = c99 "osaksi"} ;
+lin osallinen_NK = {s = d38 "osallinen"} ;
+lin osallistua_VK = {s = c52 "osallistua"} ;
+lin osallistuja_NK = {s = d10 "osallistuja"} ;
+lin osallisuus_NK = {s = d40 "osallisuus"} ;
+lin osanen_NK = {s = d38 "osanen"} ;
+lin osapuilleen_AdvK = {s = c99 "osapuilleen"} ;
+--+ lin osapa'iva'toimisesti_AdvK = {s = c99 "osapäivätoimisesti"} ;
+lin osasto_NK = {s = d02 "osasto"} ;
+lin osastoida_VK = {s = c62 "osastoida"} ;
+lin osastoinen_NK = {s = d38 "osastoinen"} ;
+lin osata_VK = {s = c73 "osata"} ;
+lin osaton_NK = {s = d34A "osaton"} ;
+lin osattomuus_NK = {s = d40 "osattomuus"} ;
+lin oseanologia_NK = {s = d12 "oseanologia"} ;
+lin oselotti_NK = {s = d05A "oselotti"} ;
+lin osin_AdvK = {s = c99 "osin"} ;
+lin osinko_NK = {s = d01A "osinko"} ;
+lin osio_NK = {s = d03 "osio"} ;
+lin ositella_VK = {s = c67A "ositella"} ;
+lin ositettava_NK = {s = d10 "ositettava"} ;
+lin osittaa_VK = {s = c53A "osittaa"} ;
+lin osittain_AdvK = {s = c99 "osittain"} ;
+lin osittainen_NK = {s = d38 "osittainen"} ;
+lin osittelu_NK = {s = d02 "osittelu"} ;
+lin ositus_NK = {s = d39 "ositus"} ;
+lin oskillaatio_NK = {s = d03 "oskillaatio"} ;
+lin oskillaattori_NK = {s = d06 "oskillaattori"} ;
+lin oskilloskooppi_NK = {s = d05A "oskilloskooppi"} ;
+lin osmium_NK = {s = d05 "osmium"} ;
+lin osmoosi_NK = {s = d05 "osmoosi"} ;
+lin osmoottinen_NK = {s = d38 "osmoottinen"} ;
+lin osoite_NK = {s = d48A "osoite"} ;
+lin osoitella_VK = {s = c67A "osoitella"} ;
+lin osoitin_NK = {s = d33A "osoitin"} ;
+lin osoittaa_VK = {s = c53A "osoittaa"} ;
+lin osoittaja_NK = {s = d10 "osoittaja"} ;
+lin osoittautua_VK = {s = c52A "osoittautua"} ;
+lin osoitteisto_NK = {s = d01 "osoitteisto"} ;
+lin osoittelu_NK = {s = d02 "osoittelu"} ;
+lin osoitus_NK = {s = d39 "osoitus"} ;
+lin ossi_NK = {s = d05 "ossi"} ;
+lin osso_buco_NK = {s = d01 "osso buco"} ;
+lin ostaa_VK = {s = c53 "ostaa"} ;
+lin ostaja_NK = {s = d10 "ostaja"} ;
+lin ostari_NK = {s = d06 "ostari"} ;
+lin ostattaa_VK = {s = c53A "ostattaa"} ;
+lin ostella_VK = {s = c67 "ostella"} ;
+lin ostelu_NK = {s = d02 "ostelu"} ;
+lin osteomalasia_NK = {s = d12 "osteomalasia"} ;
+lin osteopaatti_NK = {s = d05A "osteopaatti"} ;
+lin osteopatia_NK = {s = d12 "osteopatia"} ;
+lin osteoporoosi_NK = {s = d05 "osteoporoosi"} ;
+lin osteri_NK = {s = d06 "osteri"} ;
+lin ostjakki_NK = {s = d05A "ostjakki"} ;
+lin osto_NK = {s = d01 "osto"} ;
+lin ostos_NK = {s = d39 "ostos"} ;
+lin osua_VK = {s = c52 "osua"} ;
+lin osuma_NK = {s = d10 "osuma"} ;
+lin osuttaa_VK = {s = c53A "osuttaa"} ;
+lin osuus_NK = {s = d40 "osuus"} ;
+lin osuva_AK = {s = d10 "osuva"} ;
+--+ lin osuvasti_AdvK = {s = c99 "osuvasti"} ;
+lin osuvuus_NK = {s = d40 "osuvuus"} ;
+lin osviitta_NK = {s = d09A "osviitta"} ;
+lin ota_NK = {s = d10A "ota"} ;
+lin otakilokki_NK = {s = d05A "otakilokki"} ;
+lin otaksua_VK = {s = c52 "otaksua"} ;
+lin otaksuma_NK = {s = d10 "otaksuma"} ;
+lin otaksuttavasti_AdvK = {s = c99 "otaksuttavasti"} ;
+lin otanta_NK = {s = d09A "otanta"} ;
+lin otattaa_VK = {s = c53A "otattaa"} ;
+lin ote_NK = {s = d48A "ote"} ;
+lin otella_VK = {s = c67A "otella"} ;
+lin otin_NK = {s = d33A "otin"} ;
+lin otollinen_AK = {s = d38 "otollinen"} ;
+--+ lin otollisesti_AdvK = {s = c99 "otollisesti"} ;
+lin otollisuus_NK = {s = d40 "otollisuus"} ;
+lin otos_NK = {s = d39 "otos"} ;
+lin otsa_NK = {s = d10 "otsa"} ;
+lin otsainen_NK = {s = d38 "otsainen"} ;
+lin otsake_NK = {s = d48A "otsake"} ;
+lin otselotti_NK = {s = d05A "otselotti"} ;
+lin otsikko_NK = {s = d04A "otsikko"} ;
+lin otsikoida_VK = {s = c62 "otsikoida"} ;
+lin otsikointi_NK = {s = d05A "otsikointi"} ;
+lin otso_NK = {s = d01 "otso"} ;
+lin otsoni_NK = {s = d05 "otsoni"} ;
+lin otsonisoida_VK = {s = c62 "otsonisoida"} ;
+lin otsonoida_VK = {s = c62 "otsonoida"} ;
+lin otsonointi_NK = {s = d05A "otsonointi"} ;
+lin ottaa_VK = {s = c53A "ottaa"} ;
+lin ottaja_NK = {s = d10 "ottaja"} ;
+lin ottamo_NK = {s = d02 "ottamo"} ;
+lin ottava_NK = {s = d10 "ottava"} ;
+lin otteinen_NK = {s = d38 "otteinen"} ;
+lin ottelija_NK = {s = d12 "ottelija"} ;
+lin ottelu_NK = {s = d02 "ottelu"} ;
+lin otteluaika_NK = {s = d09A "otteluaika"} ;
+lin otto_NK = {s = d01A "otto"} ;
+lin ottomaani_NK = {s = d05 "ottomaani"} ;
+lin otus_NK = {s = d39 "otus"} ;
+lin oudokseltaan_AdvK = {s = c99 "oudokseltaan"} ;
+lin oudoksua_VK = {s = c52 "oudoksua"} ;
+lin oudoksunta_NK = {s = d09A "oudoksunta"} ;
+lin oudoksuttaa_VK = {s = c53A "oudoksuttaa"} ;
+lin oudostella_VK = {s = c67 "oudostella"} ;
+lin oudosti_AdvK = {s = c99 "oudosti"} ;
+lin oudostuttaa_VK = {s = c53A "oudostuttaa"} ;
+lin ounastella_VK = {s = c67 "ounastella"} ;
+lin out_AdvK = {s = c99 "out"} ;
+lin outo_NK = {s = d01A "outo"} ;
+lin outous_NK = {s = d40 "outous"} ;
+lin output_NK = {s = d05 "output"} ;
+lin outsider_NK = {s = d06 "outsider"} ;
+lin ouzo_NK = {s = d01 "ouzo"} ;
+lin ovaali_NK = {s = d06 "ovaali"} ;
+lin ovaario_NK = {s = d03 "ovaario"} ;
+lin ovariaalinen_NK = {s = d38 "ovariaalinen"} ;
+lin ovela_AK = {s = d10 "ovela"} ;
+--+ lin ovelasti_AdvK = {s = c99 "ovelasti"} ;
+lin oveluus_NK = {s = d40 "oveluus"} ;
+lin ovenripa_NK = {s = d09A "ovenripa"} ;
+lin ovi_NK = {s = d07 "ovi"} ;
+lin ovinen_NK = {s = d38 "ovinen"} ;
+lin ovipaarinen_NK = {s = d38 "ovipaarinen"} ;
+lin ovulaatio_NK = {s = d03 "ovulaatio"} ;
+lin paaduttaa_VK = {s = c53A "paaduttaa"} ;
+lin paahde_NK = {s = d48A "paahde"} ;
+lin paahdin_NK = {s = d33A "paahdin"} ;
+lin paahtaa_VK = {s = c56A "paahtaa"} ;
+lin paahteinen_NK = {s = d38 "paahteinen"} ;
+lin paahtimo_NK = {s = d02 "paahtimo"} ;
+lin paahto_NK = {s = d01A "paahto"} ;
+lin paahtua_VK = {s = c52A "paahtua"} ;
+lin paakari_NK = {s = d06 "paakari"} ;
+lin paakku_NK = {s = d01A "paakku"} ;
+lin paakkuinen_NK = {s = d38 "paakkuinen"} ;
+lin paakkuuntua_VK = {s = c52A "paakkuuntua"} ;
+lin paalain_NK = {s = d33 "paalain"} ;
+lin paalata_VK = {s = c73 "paalata"} ;
+lin paalaus_NK = {s = d39 "paalaus"} ;
+lin paali_NK = {s = d05 "paali"} ;
+lin paalittaa_VK = {s = c53A "paalittaa"} ;
+lin paalitus_NK = {s = d39 "paalitus"} ;
+lin paalu_NK = {s = d01 "paalu"} ;
+lin paaluttaa_VK = {s = c53A "paaluttaa"} ;
+lin paalutus_NK = {s = d39 "paalutus"} ;
+lin paanne_NK = {s = d48A "paanne"} ;
+lin paanu_NK = {s = d01 "paanu"} ;
+lin paanuttaa_VK = {s = c53A "paanuttaa"} ;
+lin paanutus_NK = {s = d39 "paanutus"} ;
+lin paapattaa_VK = {s = c53A "paapattaa"} ;
+lin paapatus_NK = {s = d39 "paapatus"} ;
+lin paapero_NK = {s = d02 "paapero"} ;
+lin paapoa_VK = {s = c52 "paapoa"} ;
+lin paappa_NK = {s = d09A "paappa"} ;
+lin paapuuri_NK = {s = d05 "paapuuri"} ;
+lin paaria_NK = {s = d12 "paaria"} ;
+lin paarit_NK = {s = d05 "paarit"} ;
+lin paarma_NK = {s = d09 "paarma"} ;
+lin paasata_VK = {s = c73 "paasata"} ;
+lin paasi_NK = {s = d27 "paasi"} ;
+lin paa_i_NK = {s = d05 "paaši"} ;
+lin paasto_NK = {s = d01 "paasto"} ;
+lin paastonaika_NK = {s = d09A "paastonaika"} ;
+lin paastota_VK = {s = c74 "paastota"} ;
+lin paatoksekas_NK = {s = d41A "paatoksekas"} ;
+lin paatoksellinen_AK = {s = d38 "paatoksellinen"} ;
+--+ lin paatoksellisesti_AdvK = {s = c99 "paatoksellisesti"} ;
+lin paatos_NK = {s = d39 "paatos"} ;
+lin paatsama_NK = {s = d11 "paatsama"} ;
+lin paatti_NK = {s = d05A "paatti"} ;
+lin paatua_VK = {s = c52A "paatua"} ;
+lin paatumus_NK = {s = d39 "paatumus"} ;
+lin paatuneisuus_NK = {s = d40 "paatuneisuus"} ;
+lin paatunut_NK = {s = d47 "paatunut"} ;
+lin paavi_NK = {s = d05 "paavi"} ;
+lin paavillinen_NK = {s = d38 "paavillinen"} ;
+lin paavius_NK = {s = d40 "paavius"} ;
+lin padallinen_NK = {s = d38 "padallinen"} ;
+lin padota_VK = {s = c74A "padota"} ;
+lin paella_NK = {s = d13 "paella"} ;
+lin paeta_VK = {s = c72A "paeta"} ;
+lin pagodi_NK = {s = d05 "pagodi"} ;
+lin paha_AK = {s = d09 "paha"} ;
+lin pahainen_NK = {s = d38 "pahainen"} ;
+lin pahaksua_VK = {s = c52 "pahaksua"} ;
+lin pahamaineisuus_NK = {s = d40 "pahamaineisuus"} ;
+lin pahanen_NK = {s = d38 "pahanen"} ;
+--+ lin pahanilkisesti_AdvK = {s = c99 "pahanilkisesti"} ;
+lin pahanilkisyys_NK = {s = d40 "pahanilkisyys"} ;
+lin pahankurinen_AK = {s = d38 "pahankurinen"} ;
+--+ lin pahankurisesti_AdvK = {s = c99 "pahankurisesti"} ;
+lin pahankurisuus_NK = {s = d40 "pahankurisuus"} ;
+lin pahanlaatuistua_VK = {s = c52 "pahanlaatuistua"} ;
+lin pahanlainen_AK = {s = d38 "pahanlainen"} ;
+--+ lin pahanlaisesti_AdvK = {s = c99 "pahanlaisesti"} ;
+--+ lin pahanpa'iva'isesti_AdvK = {s = c99 "pahanpäiväisesti"} ;
+lin pahansuopaisuus_NK = {s = d40 "pahansuopaisuus"} ;
+lin pahansuopuus_NK = {s = d40 "pahansuopuus"} ;
+lin pahansuovasti_AdvK = {s = c99 "pahansuovasti"} ;
+--+ lin pahantuulisesti_AdvK = {s = c99 "pahantuulisesti"} ;
+--+ lin pahasti_AdvK = {s = c99 "pahasti"} ;
+lin pahastua_VK = {s = c52 "pahastua"} ;
+lin pahastuttaa_VK = {s = c53A "pahastuttaa"} ;
+lin pahe_NK = {s = d48 "pahe"} ;
+lin paheellinen_AK = {s = d38 "paheellinen"} ;
+--+ lin paheellisesti_AdvK = {s = c99 "paheellisesti"} ;
+lin paheellisuus_NK = {s = d40 "paheellisuus"} ;
+lin paheksua_VK = {s = c52 "paheksua"} ;
+lin paheksunta_NK = {s = d09A "paheksunta"} ;
+lin pahemmin_AdvK = {s = c99 "pahemmin"} ;
+lin pahennus_NK = {s = d39 "pahennus"} ;
+lin pahentaa_VK = {s = c54A "pahentaa"} ;
+lin pahentua_VK = {s = c52A "pahentua"} ;
+lin paheta_VK = {s = c72 "paheta"} ;
+lin pahimmillaan_AdvK = {s = c99 "pahimmillaan"} ;
+lin pahimmilleen_AdvK = {s = c99 "pahimmilleen"} ;
+lin pahimmin_AdvK = {s = c99 "pahimmin"} ;
+lin pahimmoiksi_AdvK = {s = c99 "pahimmoiksi"} ;
+lin pahimmoillaan_AdvK = {s = c99 "pahimmoillaan"} ;
+lin pahimmoilleen_AdvK = {s = c99 "pahimmoilleen"} ;
+lin pahiten_AdvK = {s = c99 "pahiten"} ;
+lin pahitteeksi_AdvK = {s = c99 "pahitteeksi"} ;
+lin pahka_NK = {s = d09 "pahka"} ;
+lin pahkaa_AdvK = {s = c99 "pahkaa"} ;
+lin pahkainen_NK = {s = d38 "pahkainen"} ;
+lin pahki_AdvK = {s = c99 "pahki"} ;
+lin pahkura_NK = {s = d12 "pahkura"} ;
+lin pahkurainen_NK = {s = d38 "pahkurainen"} ;
+lin pahna_NK = {s = d09 "pahna"} ;
+lin pahnue_NK = {s = d48 "pahnue"} ;
+lin pahoillaan_AdvK = {s = c99 "pahoillaan"} ;
+lin pahoilleen_AdvK = {s = c99 "pahoilleen"} ;
+lin pahoin_AdvK = {s = c99 "pahoin"} ;
+lin pahoinpitelija'_NK = {s = d12 "pahoinpitelijä"} ;
+lin pahoinvoiva_NK = {s = d10 "pahoinvoiva"} ;
+lin pahoitella_VK = {s = c67A "pahoitella"} ;
+lin pahoittaa_VK = {s = c53A "pahoittaa"} ;
+lin pahoittua_VK = {s = c52A "pahoittua"} ;
+lin paholainen_NK = {s = d38 "paholainen"} ;
+lin pahuksenmoinen_NK = {s = d38 "pahuksenmoinen"} ;
+lin pahuksesti_AdvK = {s = c99 "pahuksesti"} ;
+lin pahus_NK = {s = d39 "pahus"} ;
+lin pahuus_NK = {s = d40 "pahuus"} ;
+lin pahvi_NK = {s = d05 "pahvi"} ;
+lin pahvinen_NK = {s = d38 "pahvinen"} ;
+lin pai_1_NK = {s = d18 "pai"} ;
+lin pai_2_AdvK = {s = c99 "pai"} ;
+lin paidanpesija'_NK = {s = d12 "paidanpesijä"} ;
+lin paidaton_NK = {s = d34A "paidaton"} ;
+lin paijata_VK = {s = c73 "paijata"} ;
+lin paijaus_NK = {s = d39 "paijaus"} ;
+lin paikalla_AdvK = {s = c99 "paikalla"} ;
+lin paikallaan_AdvK = {s = c99 "paikallaan"} ;
+lin paikalle_AdvK = {s = c99 "paikalle"} ;
+lin paikalleen_AdvK = {s = c99 "paikalleen"} ;
+lin paikallinen_AK = {s = d38 "paikallinen"} ;
+lin paikallisaika_NK = {s = d09A "paikallisaika"} ;
+--+ lin paikallisesti_AdvK = {s = c99 "paikallisesti"} ;
+lin paikallistaa_VK = {s = c53 "paikallistaa"} ;
+lin paikallistua_VK = {s = c52 "paikallistua"} ;
+lin paikallisuus_NK = {s = d40 "paikallisuus"} ;
+lin paikalta_AdvK = {s = c99 "paikalta"} ;
+lin paikaltaan_AdvK = {s = c99 "paikaltaan"} ;
+lin paikanna'ytta'ja'_NK = {s = d10 "paikannäyttäjä"} ;
+lin paikantaa_VK = {s = c54A "paikantaa"} ;
+lin paikantua_VK = {s = c52A "paikantua"} ;
+lin paikata_VK = {s = c73A "paikata"} ;
+lin paikka_NK = {s = d09A "paikka"} ;
+lin paikkailla_VK = {s = c67 "paikkailla"} ;
+lin paikkailu_NK = {s = d02 "paikkailu"} ;
+lin paikkainen_NK = {s = d38 "paikkainen"} ;
+lin paikkamaalata_VK = {s = c73 "paikkamaalata"} ;
+lin paikka_paikoin_AdvK = {s = c99 "paikka paikoin"} ;
+lin paikkaus_NK = {s = d39 "paikkaus"} ;
+lin paikkauttaa_VK = {s = c53A "paikkauttaa"} ;
+lin paikkeilla_AdvK = {s = c99 "paikkeilla"} ;
+lin paikkeille_AdvK = {s = c99 "paikkeille"} ;
+lin paikkeilta_AdvK = {s = c99 "paikkeilta"} ;
+lin paikko_NK = {s = d01A "paikko"} ;
+lin paikkuu_NK = {s = d17 "paikkuu"} ;
+lin paikkuuttaa_VK = {s = c53A "paikkuuttaa"} ;
+lin paikoillaan_AdvK = {s = c99 "paikoillaan"} ;
+lin paikoilleen_AdvK = {s = c99 "paikoilleen"} ;
+lin paikoiltaan_AdvK = {s = c99 "paikoiltaan"} ;
+lin paikoin_AdvK = {s = c99 "paikoin"} ;
+lin paikoitellen_AdvK = {s = c99 "paikoitellen"} ;
+lin paikoittaa_VK = {s = c53A "paikoittaa"} ;
+lin paikoittain_AdvK = {s = c99 "paikoittain"} ;
+lin paikoittainen_NK = {s = d38 "paikoittainen"} ;
+lin paimen_NK = {s = d32 "paimen"} ;
+lin paimennus_NK = {s = d39 "paimennus"} ;
+lin paimentaa_VK = {s = c54A "paimentaa"} ;
+lin paimentolainen_NK = {s = d38 "paimentolainen"} ;
+lin paimentolaisuus_NK = {s = d40 "paimentolaisuus"} ;
+lin painaa_VK = {s = c56 "painaa"} ;
+lin painaja_NK = {s = d10 "painaja"} ;
+lin painajainen_NK = {s = d38 "painajainen"} ;
+lin painajaismainen_NK = {s = d38 "painajaismainen"} ;
+lin painallus_NK = {s = d39 "painallus"} ;
+lin painaltaa_VK = {s = c54A "painaltaa"} ;
+lin painama_NK = {s = d10 "painama"} ;
+lin painamaton_NK = {s = d34A "painamaton"} ;
+lin painanne_NK = {s = d48A "painanne"} ;
+lin painanta_NK = {s = d09A "painanta"} ;
+lin painate_NK = {s = d48A "painate"} ;
+lin painattaa_VK = {s = c53A "painattaa"} ;
+lin painatus_NK = {s = d39 "painatus"} ;
+lin painauma_NK = {s = d10 "painauma"} ;
+lin painautua_VK = {s = c52A "painautua"} ;
+lin painautuma_NK = {s = d10 "painautuma"} ;
+lin painava_AK = {s = d10 "painava"} ;
+--+ lin painavasti_AdvK = {s = c99 "painavasti"} ;
+lin painavuus_NK = {s = d40 "painavuus"} ;
+lin paine_NK = {s = d48 "paine"} ;
+lin paineellinen_NK = {s = d38 "paineellinen"} ;
+lin paineinen_NK = {s = d38 "paineinen"} ;
+lin paineistaa_VK = {s = c53 "paineistaa"} ;
+lin paineistus_NK = {s = d39 "paineistus"} ;
+lin painella_VK = {s = c67 "painella"} ;
+lin painelu_NK = {s = d02 "painelu"} ;
+lin paini_NK = {s = d05 "paini"} ;
+lin painia_VK = {s = c61 "painia"} ;
+lin painija_NK = {s = d12 "painija"} ;
+lin painike_NK = {s = d48A "painike"} ;
+lin painin_NK = {s = d33 "painin"} ;
+lin painiskella_VK = {s = c67 "painiskella"} ;
+lin painiskelu_NK = {s = d02 "painiskelu"} ;
+lin paino_NK = {s = d01 "paino"} ;
+lin painoaika_NK = {s = d09A "painoaika"} ;
+lin painoinen_AK = {s = d38 "painoinen"} ;
+--+ lin painoisesti_AdvK = {s = c99 "painoisesti"} ;
+lin painoisuus_NK = {s = d40 "painoisuus"} ;
+lin painokas_AK = {s = d41A "painokas"} ;
+lin painokerroin_NK = {s = d33A "painokerroin"} ;
+--+ lin painokkaasti_AdvK = {s = c99 "painokkaasti"} ;
+lin painokkuus_NK = {s = d40 "painokkuus"} ;
+lin painollinen_NK = {s = d38 "painollinen"} ;
+lin painos_NK = {s = d39 "painos"} ;
+lin painostaa_VK = {s = c53 "painostaa"} ;
+lin painostus_NK = {s = d39 "painostus"} ;
+lin painoton_NK = {s = d34A "painoton"} ;
+lin painottaa_VK = {s = c53A "painottaa"} ;
+lin painotteinen_AK = {s = d38 "painotteinen"} ;
+--+ lin painotteisesti_AdvK = {s = c99 "painotteisesti"} ;
+lin painotteisuus_NK = {s = d40 "painotteisuus"} ;
+lin painottomuus_NK = {s = d40 "painottomuus"} ;
+lin painottua_VK = {s = c52A "painottua"} ;
+lin painotus_NK = {s = d39 "painotus"} ;
+lin painua_VK = {s = c52 "painua"} ;
+lin painuksiin_AdvK = {s = c99 "painuksiin"} ;
+lin painuksissa_AdvK = {s = c99 "painuksissa"} ;
+lin painuksista_AdvK = {s = c99 "painuksista"} ;
+lin painuma_NK = {s = d10 "painuma"} ;
+lin paise_NK = {s = d48 "paise"} ;
+lin paiskata_VK = {s = c73 "paiskata"} ;
+lin paiskautua_VK = {s = c52A "paiskautua"} ;
+lin paiskella_VK = {s = c67 "paiskella"} ;
+lin paiskia_VK = {s = c61 "paiskia"} ;
+lin paiskoa_VK = {s = c52 "paiskoa"} ;
+lin paistaa_VK = {s = c56 "paistaa"} ;
+lin paistatella_VK = {s = c67A "paistatella"} ;
+lin paistattaa_VK = {s = c53A "paistattaa"} ;
+lin paiste_NK = {s = d48 "paiste"} ;
+lin paisteinen_NK = {s = d38 "paisteinen"} ;
+lin paisti_NK = {s = d05 "paisti"} ;
+lin paistikas_NK = {s = d41A "paistikas"} ;
+lin paistike_NK = {s = d48A "paistike"} ;
+lin paisto_NK = {s = d01 "paisto"} ;
+lin paistoaika_NK = {s = d09A "paistoaika"} ;
+lin paistos_NK = {s = d39 "paistos"} ;
+lin paistua_VK = {s = c52 "paistua"} ;
+lin paisua_VK = {s = c52 "paisua"} ;
+lin paisuksiin_AdvK = {s = c99 "paisuksiin"} ;
+lin paisuksissa_AdvK = {s = c99 "paisuksissa"} ;
+lin paisutella_VK = {s = c67A "paisutella"} ;
+lin paisuttaa_VK = {s = c53A "paisuttaa"} ;
+lin paisuttelu_NK = {s = d02 "paisuttelu"} ;
+lin paisutus_NK = {s = d39 "paisutus"} ;
+lin paisuvainen_NK = {s = d38 "paisuvainen"} ;
+lin paita_NK = {s = d09A "paita"} ;
+lin paitahihasillaan_AdvK = {s = c99 "paitahihasillaan"} ;
+lin paitahihasilleen_AdvK = {s = c99 "paitahihasilleen"} ;
+lin paitainen_NK = {s = d38 "paitainen"} ;
+lin paitasillaan_AdvK = {s = c99 "paitasillaan"} ;
+lin paitasilleen_AdvK = {s = c99 "paitasilleen"} ;
+lin paitis_NK = {s = d39 "paitis"} ;
+lin paitsi_AdvK = {s = c99 "paitsi"} ;
+lin paitsio_NK = {s = d03 "paitsio"} ;
+lin paja_NK = {s = d09 "paja"} ;
+lin pajatso_NK = {s = d02 "pajatso"} ;
+lin pajattaa_VK = {s = c53A "pajattaa"} ;
+lin pajatus_NK = {s = d39 "pajatus"} ;
+lin paju_NK = {s = d01 "paju"} ;
+lin pajukko_NK = {s = d04A "pajukko"} ;
+lin pajukoitua_VK = {s = c52A "pajukoitua"} ;
+lin pakaasi_NK = {s = d06 "pakaasi"} ;
+lin pakahduksiin_AdvK = {s = c99 "pakahduksiin"} ;
+lin pakahduksissa_AdvK = {s = c99 "pakahduksissa"} ;
+lin pakahduksissaan_AdvK = {s = c99 "pakahduksissaan"} ;
+lin pakahduttaa_VK = {s = c53A "pakahduttaa"} ;
+lin pakahtua_VK = {s = c52A "pakahtua"} ;
+lin pakana_AK = {s = d12 "pakana"} ;
+lin pakanallinen_NK = {s = d38 "pakanallinen"} ;
+--+ lin pakanasti_AdvK = {s = c99 "pakanasti"} ;
+lin pakanuudenaika_NK = {s = d09A "pakanuudenaika"} ;
+lin pakanuus_NK = {s = d40 "pakanuus"} ;
+lin pakara_NK = {s = d12 "pakara"} ;
+lin pakari_NK = {s = d06 "pakari"} ;
+lin pakastaa_VK = {s = c53 "pakastaa"} ;
+lin pakastamo_NK = {s = d02 "pakastamo"} ;
+lin pakaste_NK = {s = d48 "pakaste"} ;
+lin pakastin_NK = {s = d33 "pakastin"} ;
+lin pakastua_VK = {s = c52 "pakastua"} ;
+lin pakastus_NK = {s = d39 "pakastus"} ;
+lin pakata_1_VK = {s = c73A "pakata"} ;
+lin pakata_2_VK = {s = c73A "pakata"} ;
+lin pakeilla_AdvK = {s = c99 "pakeilla"} ;
+lin pakeillaan_AdvK = {s = c99 "pakeillaan"} ;
+lin pakeille_AdvK = {s = c99 "pakeille"} ;
+lin pakeilleen_AdvK = {s = c99 "pakeilleen"} ;
+lin pakeilta_AdvK = {s = c99 "pakeilta"} ;
+lin pakeiltaan_AdvK = {s = c99 "pakeiltaan"} ;
+lin pakenija_NK = {s = d12 "pakenija"} ;
+lin pakerrus_NK = {s = d39 "pakerrus"} ;
+lin pakertaa_VK = {s = c54A "pakertaa"} ;
+lin pakertaja_NK = {s = d10 "pakertaja"} ;
+lin paketillinen_NK = {s = d38 "paketillinen"} ;
+lin paketoida_VK = {s = c62 "paketoida"} ;
+lin paketoija_NK = {s = d10 "paketoija"} ;
+lin paketointi_NK = {s = d05A "paketointi"} ;
+lin paketti_NK = {s = d05A "paketti"} ;
+lin pakina_NK = {s = d12 "pakina"} ;
+lin pakinoida_VK = {s = c68 "pakinoida"} ;
+lin pakinoija_NK = {s = d10 "pakinoija"} ;
+lin pakinointi_NK = {s = d05A "pakinointi"} ;
+lin pakinoitsija_NK = {s = d12 "pakinoitsija"} ;
+lin pakista_VK = {s = c66 "pakista"} ;
+lin pakka_1_NK = {s = d09A "pakka"} ;
+lin pakka_2_NK = {s = d09A "pakka"} ;
+lin pakkaaja_NK = {s = d10 "pakkaaja"} ;
+lin pakkaamo_NK = {s = d02 "pakkaamo"} ;
+lin pakkaantua_VK = {s = c52A "pakkaantua"} ;
+lin pakkanen_NK = {s = d38 "pakkanen"} ;
+lin pakkasrapautuminen_NK = {s = d38 "pakkasrapautuminen"} ;
+lin pakkaus_NK = {s = d39 "pakkaus"} ;
+lin pakkauttaa_VK = {s = c53A "pakkauttaa"} ;
+lin pakkautua_VK = {s = c52A "pakkautua"} ;
+lin pakkeli_NK = {s = d06 "pakkeli"} ;
+lin pakki_1_NK = {s = d05A "pakki"} ;
+lin pakki_2_NK = {s = d05A "pakki"} ;
+lin pakko_NK = {s = d01A "pakko"} ;
+lin pakkonaiminen_NK = {s = d38 "pakkonaiminen"} ;
+lin pakkota'yta'nto'_NK = {s = d01A "pakkotäytäntö"} ;
+lin paklata_VK = {s = c73 "paklata"} ;
+lin paklaus_NK = {s = d39 "paklaus"} ;
+lin pako_NK = {s = d01A "pako"} ;
+lin pakoilla_VK = {s = c67 "pakoilla"} ;
+lin pakoilu_NK = {s = d02 "pakoilu"} ;
+lin pakoinen_NK = {s = d38 "pakoinen"} ;
+lin pakokauhuinen_NK = {s = d38 "pakokauhuinen"} ;
+lin pakolaisuus_NK = {s = d40 "pakolaisuus"} ;
+lin pakollinen_NK = {s = d38 "pakollinen"} ;
+lin pakollistaa_VK = {s = c53 "pakollistaa"} ;
+lin pakollisuus_NK = {s = d40 "pakollisuus"} ;
+lin pakoon_AdvK = {s = c99 "pakoon"} ;
+lin pakosalla_AdvK = {s = c99 "pakosalla"} ;
+lin pakosalle_AdvK = {s = c99 "pakosalle"} ;
+lin pakostakin_AdvK = {s = c99 "pakostakin"} ;
+lin pakote_NK = {s = d48A "pakote"} ;
+lin pakoton_NK = {s = d34A "pakoton"} ;
+lin pakottaa_VK = {s = c53A "pakottaa"} ;
+lin pakottamaton_NK = {s = d34A "pakottamaton"} ;
+lin pakottautua_VK = {s = c52A "pakottautua"} ;
+lin pakottava_NK = {s = d10 "pakottava"} ;
+lin pakottomasti_AdvK = {s = c99 "pakottomasti"} ;
+lin pakottomuus_NK = {s = d40 "pakottomuus"} ;
+lin pakotus_NK = {s = d39 "pakotus"} ;
+lin paksu_AK = {s = d01 "paksu"} ;
+lin paksuinen_NK = {s = d38 "paksuinen"} ;
+lin paksukainen_NK = {s = d38 "paksukainen"} ;
+lin paksulti_AdvK = {s = c99 "paksulti"} ;
+lin paksunema_NK = {s = d10 "paksunema"} ;
+lin paksunnos_NK = {s = d39 "paksunnos"} ;
+lin paksuntaa_VK = {s = c54A "paksuntaa"} ;
+lin paksuntua_VK = {s = c52A "paksuntua"} ;
+lin paksuntuma_NK = {s = d10 "paksuntuma"} ;
+--+ lin paksusti_AdvK = {s = c99 "paksusti"} ;
+lin paksuta_VK = {s = c72 "paksuta"} ;
+lin paksuuntua_VK = {s = c52A "paksuuntua"} ;
+lin paksuuntuma_NK = {s = d10 "paksuuntuma"} ;
+lin paksuus_NK = {s = d40 "paksuus"} ;
+lin pakti_NK = {s = d05 "pakti"} ;
+lin pala_NK = {s = d09 "pala"} ;
+lin palaa_VK = {s = c56 "palaa"} ;
+lin palailla_VK = {s = c67 "palailla"} ;
+lin palamaton_NK = {s = d34A "palamaton"} ;
+lin palanen_NK = {s = d38 "palanen"} ;
+lin palata_VK = {s = c73 "palata"} ;
+lin palatsi_NK = {s = d05 "palatsi"} ;
+lin palauma_NK = {s = d10 "palauma"} ;
+lin palaute_NK = {s = d48A "palaute"} ;
+lin palauttaa_VK = {s = c53A "palauttaa"} ;
+lin palautua_VK = {s = c52A "palautua"} ;
+lin palautuma_NK = {s = d10 "palautuma"} ;
+lin palautus_NK = {s = d39 "palautus"} ;
+lin palava_NK = {s = d10 "palava"} ;
+lin palavissaan_AdvK = {s = c99 "palavissaan"} ;
+lin palella_VK = {s = c67 "palella"} ;
+lin palelluksissa_AdvK = {s = c99 "palelluksissa"} ;
+lin palelluksissaan_AdvK = {s = c99 "palelluksissaan"} ;
+lin palelluttaa_VK = {s = c53A "palelluttaa"} ;
+lin paleltaa_VK = {s = c54A "paleltaa"} ;
+lin paleltua_VK = {s = c52A "paleltua"} ;
+lin paleltuma_NK = {s = d10 "paleltuma"} ;
+lin paleontologia_NK = {s = d12 "paleontologia"} ;
+lin paleontologinen_NK = {s = d38 "paleontologinen"} ;
+lin paleotsooinen_NK = {s = d38 "paleotsooinen"} ;
+lin paletti_NK = {s = d05A "paletti"} ;
+lin palho_NK = {s = d01 "palho"} ;
+lin palikka_NK = {s = d14A "palikka"} ;
+lin palindromi_NK = {s = d05 "palindromi"} ;
+lin palisanteri_NK = {s = d06 "palisanteri"} ;
+lin paljaaltaan_AdvK = {s = c99 "paljaaltaan"} ;
+lin paljakka_NK = {s = d14A "paljakka"} ;
+lin paljas_NK = {s = d41 "paljas"} ;
+lin paljasjaloin_AdvK = {s = c99 "paljasjaloin"} ;
+lin paljastaa_VK = {s = c53 "paljastaa"} ;
+lin paljastaja_NK = {s = d10 "paljastaja"} ;
+--? lin paljastajaiset_NK = {s = d38 "paljastajaiset"} ;
+lin paljastin_NK = {s = d33 "paljastin"} ;
+lin paljastua_VK = {s = c52 "paljastua"} ;
+lin paljastus_NK = {s = d39 "paljastus"} ;
+lin palje_NK = {s = d48A "palje"} ;
+lin paljetti_NK = {s = d05A "paljetti"} ;
+lin paljin_NK = {s = d33A "paljin"} ;
+lin paljo_NK = {s = d01 "paljo"} ;
+lin paljoksua_VK = {s = c52 "paljoksua"} ;
+lin paljolta_AdvK = {s = c99 "paljolta"} ;
+lin paljolti_AdvK = {s = c99 "paljolti"} ;
+lin paljon_AdvK = {s = c99 "paljon"} ;
+lin paljous_NK = {s = d40 "paljous"} ;
+lin palju_NK = {s = d01 "palju"} ;
+lin palkallinen_NK = {s = d38 "palkallinen"} ;
+lin palkanansaitsija_NK = {s = d12 "palkanansaitsija"} ;
+lin palkata_VK = {s = c73A "palkata"} ;
+lin palkaton_NK = {s = d34A "palkaton"} ;
+lin palkattomasti_AdvK = {s = c99 "palkattomasti"} ;
+lin palkinto_NK = {s = d01A "palkinto"} ;
+lin palkisto_NK = {s = d02 "palkisto"} ;
+lin palkita_VK = {s = c69 "palkita"} ;
+lin palkka_NK = {s = d09A "palkka"} ;
+lin palkkainen_NK = {s = d38 "palkkainen"} ;
+lin palkkaisuus_NK = {s = d40 "palkkaisuus"} ;
+lin palkkaus_NK = {s = d39 "palkkaus"} ;
+lin palkki_NK = {s = d05A "palkki"} ;
+lin palkkio_NK = {s = d03 "palkkio"} ;
+lin palko_NK = {s = d01A "palko"} ;
+lin palkollinen_NK = {s = d38 "palkollinen"} ;
+lin palladium_NK = {s = d05 "palladium"} ;
+lin pallas_NK = {s = d41A "pallas"} ;
+lin palle_1_NK = {s = d48A "palle"} ;
+lin palle_2_NK = {s = d48A "palle"} ;
+lin pallea_NK = {s = d12 "pallea"} ;
+lin pallero_NK = {s = d02 "pallero"} ;
+lin palleroinen_NK = {s = d38 "palleroinen"} ;
+lin palli_1_NK = {s = d05 "palli"} ;
+lin palli_2_NK = {s = d05 "palli"} ;
+lin palliatiivinen_NK = {s = d38 "palliatiivinen"} ;
+lin pallo_NK = {s = d01 "pallo"} ;
+lin palloilija_NK = {s = d12 "palloilija"} ;
+lin palloilla_VK = {s = c67 "palloilla"} ;
+lin palloilu_NK = {s = d02 "palloilu"} ;
+lin pallokas_NK = {s = d41A "pallokas"} ;
+lin pallonen_NK = {s = d38 "pallonen"} ;
+lin pallosilla_AdvK = {s = c99 "pallosilla"} ;
+lin pallosille_AdvK = {s = c99 "pallosille"} ;
+lin pallotella_VK = {s = c67A "pallotella"} ;
+lin pallottaa_VK = {s = c53A "pallottaa"} ;
+lin pallottelu_NK = {s = d02 "pallottelu"} ;
+lin pallotus_NK = {s = d39 "pallotus"} ;
+lin pallukka_NK = {s = d14A "pallukka"} ;
+lin palmikko_NK = {s = d04A "palmikko"} ;
+lin palmikkoinen_NK = {s = d38 "palmikkoinen"} ;
+lin palmikoida_VK = {s = c62 "palmikoida"} ;
+lin palmikointi_NK = {s = d05A "palmikointi"} ;
+lin palmu_NK = {s = d01 "palmu"} ;
+lin palo_NK = {s = d01 "palo"} ;
+lin paloa_VK = {s = c52 "paloa"} ;
+lin palohaava_NK = {s = d09 "palohaava"} ;
+lin paloilmoitin_NK = {s = d33A "paloilmoitin"} ;
+lin paloitella_VK = {s = c67A "paloitella"} ;
+lin paloittain_AdvK = {s = c99 "paloittain"} ;
+lin paloittelu_NK = {s = d02 "paloittelu"} ;
+lin paloton_NK = {s = d34A "paloton"} ;
+lin palpaatio_NK = {s = d03 "palpaatio"} ;
+lin palpakko_NK = {s = d04A "palpakko"} ;
+lin palpoida_VK = {s = c62 "palpoida"} ;
+lin palpointi_NK = {s = d05A "palpointi"} ;
+lin palsa_1_NK = {s = d09 "palsa"} ;
+lin palsa_2_NK = {s = d09 "palsa"} ;
+lin palsami_NK = {s = d05 "palsami"} ;
+lin palsamoida_VK = {s = c62 "palsamoida"} ;
+lin palsamointi_NK = {s = d05A "palsamointi"} ;
+lin palsta_NK = {s = d09 "palsta"} ;
+lin palstainen_NK = {s = d38 "palstainen"} ;
+lin palsternakka_NK = {s = d09A "palsternakka"} ;
+lin palstoittaa_VK = {s = c53A "palstoittaa"} ;
+lin palstoittain_AdvK = {s = c99 "palstoittain"} ;
+lin palstoitus_NK = {s = d39 "palstoitus"} ;
+lin paltata_VK = {s = c73A "paltata"} ;
+lin palte_NK = {s = d48A "palte"} ;
+lin palttaa_VK = {s = c56A "palttaa"} ;
+lin palttina_NK = {s = d12 "palttina"} ;
+lin palttoo_NK = {s = d17 "palttoo"} ;
+lin palttu_1_NK = {s = d01A "palttu"} ;
+lin palttu_2_NK = {s = d01A "palttu"} ;
+lin palturi_NK = {s = d06 "palturi"} ;
+lin paluu_NK = {s = d17 "paluu"} ;
+lin palvata_VK = {s = c73 "palvata"} ;
+lin palvaus_NK = {s = d39 "palvaus"} ;
+lin palvelija_NK = {s = d12 "palvelija"} ;
+lin palvelijatar_NK = {s = d32A "palvelijatar"} ;
+lin palvella_VK = {s = c67 "palvella"} ;
+lin palvelu_NK = {s = d02 "palvelu"} ;
+lin palveluasuminen_NK = {s = d38 "palveluasuminen"} ;
+lin palvelus_NK = {s = d39 "palvelus"} ;
+lin palvelusaika_NK = {s = d09A "palvelusaika"} ;
+lin palvi_1_NK = {s = d07 "palvi"} ;
+lin palvi_2_NK = {s = d05 "palvi"} ;
+lin palvoa_VK = {s = c52 "palvoa"} ;
+lin palvoja_NK = {s = d10 "palvoja"} ;
+lin palvonta_NK = {s = d09A "palvonta"} ;
+lin palvovasti_AdvK = {s = c99 "palvovasti"} ;
+lin pamahdella_VK = {s = c67A "pamahdella"} ;
+lin pamahdus_NK = {s = d39 "pamahdus"} ;
+lin pamahtaa_VK = {s = c53A "pamahtaa"} ;
+lin pamaus_NK = {s = d39 "pamaus"} ;
+lin pamautella_VK = {s = c67A "pamautella"} ;
+lin pamauttaa_VK = {s = c53A "pamauttaa"} ;
+lin pamfletti_NK = {s = d05A "pamfletti"} ;
+lin pamista_VK = {s = c66 "pamista"} ;
+lin pampa_NK = {s = d09 "pampa"} ;
+lin pampattaa_VK = {s = c53A "pampattaa"} ;
+lin pamppailla_VK = {s = c67 "pamppailla"} ;
+lin pamppu_1_NK = {s = d01A "pamppu"} ;
+lin pamppu_2_NK = {s = d01A "pamppu"} ;
+lin pampula_NK = {s = d12 "pampula"} ;
+lin pamputtaa_VK = {s = c53A "pamputtaa"} ;
+lin pamputus_NK = {s = d39 "pamputus"} ;
+lin panama_NK = {s = d10 "panama"} ;
+lin panamerikanismi_NK = {s = d05 "panamerikanismi"} ;
+lin panarabismi_NK = {s = d05 "panarabismi"} ;
+lin panda_NK = {s = d09 "panda"} ;
+lin pandeeminen_NK = {s = d38 "pandeeminen"} ;
+lin pandemia_NK = {s = d12 "pandemia"} ;
+lin paneeli_NK = {s = d06 "paneeli"} ;
+lin paneerata_VK = {s = c73 "paneerata"} ;
+lin paneeraus_NK = {s = d39 "paneeraus"} ;
+lin panelisti_NK = {s = d05 "panelisti"} ;
+lin paneloida_VK = {s = c62 "paneloida"} ;
+lin panelointi_NK = {s = d05A "panelointi"} ;
+lin paneroida_VK = {s = c62 "paneroida"} ;
+lin panerointi_NK = {s = d05A "panerointi"} ;
+lin panetella_VK = {s = c67A "panetella"} ;
+lin panettaa_VK = {s = c53A "panettaa"} ;
+lin panettelija_NK = {s = d12 "panettelija"} ;
+lin panettelu_NK = {s = d02 "panettelu"} ;
+lin paneutua_VK = {s = c52A "paneutua"} ;
+--? lin paniaiset_NK = {s = d38 "paniaiset"} ;
+lin paniikki_NK = {s = d05A "paniikki"} ;
+lin panija_NK = {s = d12 "panija"} ;
+lin panimo_NK = {s = d02 "panimo"} ;
+lin panini_NK = {s = d05 "panini"} ;
+lin pankki_NK = {s = d05A "pankki"} ;
+lin pankkiaika_NK = {s = d09A "pankkiaika"} ;
+lin pankkiiri_NK = {s = d06 "pankkiiri"} ;
+lin pankkisa'a'sta'minen_NK = {s = d38 "pankkisäästäminen"} ;
+lin pankko_NK = {s = d01A "pankko"} ;
+lin panna_1_VK = {s = c67 "panna"} ;
+lin panna_2_NK = {s = d09 "panna"} ;
+lin pannahinen_NK = {s = d38 "pannahinen"} ;
+lin pannari_NK = {s = d06 "pannari"} ;
+lin pannu_NK = {s = d01 "pannu"} ;
+lin pannullinen_NK = {s = d38 "pannullinen"} ;
+lin pano_NK = {s = d01 "pano"} ;
+lin panoraama_NK = {s = d09 "panoraama"} ;
+lin panoroida_VK = {s = c62 "panoroida"} ;
+lin panorointi_NK = {s = d05A "panorointi"} ;
+lin panos_NK = {s = d39 "panos"} ;
+lin panostaa_VK = {s = c53 "panostaa"} ;
+lin panostaja_NK = {s = d10 "panostaja"} ;
+lin panostus_NK = {s = d39 "panostus"} ;
+lin panslavismi_NK = {s = d05 "panslavismi"} ;
+lin panslavisti_NK = {s = d05 "panslavisti"} ;
+lin panslavistinen_NK = {s = d38 "panslavistinen"} ;
+lin panssari_NK = {s = d06 "panssari"} ;
+lin panssaroida_VK = {s = c62 "panssaroida"} ;
+lin panssarointi_NK = {s = d05A "panssarointi"} ;
+lin panssaroitua_VK = {s = c52A "panssaroitua"} ;
+lin panta_NK = {s = d09A "panta"} ;
+lin pantata_VK = {s = c73A "pantata"} ;
+lin panteismi_NK = {s = d05 "panteismi"} ;
+lin panteisti_NK = {s = d05 "panteisti"} ;
+lin panteistinen_NK = {s = d38 "panteistinen"} ;
+lin pantomiimi_NK = {s = d05 "pantomiimi"} ;
+lin pantomiimikko_NK = {s = d01A "pantomiimikko"} ;
+lin panttaus_NK = {s = d39 "panttaus"} ;
+lin pantteri_NK = {s = d06 "pantteri"} ;
+lin pantti_NK = {s = d05A "pantti"} ;
+lin paossa_AdvK = {s = c99 "paossa"} ;
+lin papaija_NK = {s = d13 "papaija"} ;
+lin papana_NK = {s = d11 "papana"} ;
+lin paparazzi_NK = {s = d05 "paparazzi"} ;
+lin papattaa_VK = {s = c53A "papattaa"} ;
+lin papatti_NK = {s = d05A "papatti"} ;
+lin papatus_NK = {s = d39 "papatus"} ;
+lin paperi_NK = {s = d06 "paperi"} ;
+lin paperikko_NK = {s = d04A "paperikko"} ;
+lin paperikoko_NK = {s = d01A "paperikoko"} ;
+lin paperinen_NK = {s = d38 "paperinen"} ;
+lin paperiton_NK = {s = d34A "paperiton"} ;
+lin paperoida_VK = {s = c62 "paperoida"} ;
+lin paperointi_NK = {s = d05A "paperointi"} ;
+lin paperossi_NK = {s = d05 "paperossi"} ;
+lin papiksivihkiminen_NK = {s = d38 "papiksivihkiminen"} ;
+lin papiljotti_NK = {s = d05A "papiljotti"} ;
+lin papilla_NK = {s = d09 "papilla"} ;
+lin papilli_NK = {s = d05 "papilli"} ;
+lin papillinen_AK = {s = d38 "papillinen"} ;
+--+ lin papillisesti_AdvK = {s = c99 "papillisesti"} ;
+lin papillisuus_NK = {s = d40 "papillisuus"} ;
+lin papillooma_NK = {s = d10 "papillooma"} ;
+lin papisto_NK = {s = d02 "papisto"} ;
+lin papitar_NK = {s = d32A "papitar"} ;
+lin paplari_NK = {s = d06 "paplari"} ;
+lin pappa_NK = {s = d09A "pappa"} ;
+lin papparainen_NK = {s = d38 "papparainen"} ;
+lin pappenheimilainen_NK = {s = d38 "pappenheimilainen"} ;
+lin pappeus_NK = {s = d40 "pappeus"} ;
+lin pappi_NK = {s = d05A "pappi"} ;
+lin pappila_NK = {s = d12 "pappila"} ;
+lin paprika_NK = {s = d12 "paprika"} ;
+lin papu_NK = {s = d01A "papu"} ;
+lin papukaija_NK = {s = d09 "papukaija"} ;
+lin papyrus_NK = {s = d39 "papyrus"} ;
+lin par_NK = {s = d05 "par"} ;
+lin para_NK = {s = d09 "para"} ;
+lin paraabeli_NK = {s = d05 "paraabeli"} ;
+lin paraati_NK = {s = d05 "paraati"} ;
+lin parabellum_NK = {s = d05 "parabellum"} ;
+lin parabolinen_NK = {s = d38 "parabolinen"} ;
+lin paraboloidi_NK = {s = d05 "paraboloidi"} ;
+lin paradigma_NK = {s = d09 "paradigma"} ;
+lin paradoksaalinen_AK = {s = d38 "paradoksaalinen"} ;
+--+ lin paradoksaalisesti_AdvK = {s = c99 "paradoksaalisesti"} ;
+lin paradoksaalisuus_NK = {s = d40 "paradoksaalisuus"} ;
+lin paradoksi_NK = {s = d05 "paradoksi"} ;
+lin paradoksinen_NK = {s = d38 "paradoksinen"} ;
+lin paradoksisuus_NK = {s = d40 "paradoksisuus"} ;
+lin parafinoida_VK = {s = c62 "parafinoida"} ;
+lin parafinointi_NK = {s = d05A "parafinointi"} ;
+lin parafoida_VK = {s = c62 "parafoida"} ;
+lin parafointi_NK = {s = d05A "parafointi"} ;
+lin paragrafi_NK = {s = d05 "paragrafi"} ;
+lin parahdus_NK = {s = d39 "parahdus"} ;
+lin parahiksi_AdvK = {s = c99 "parahiksi"} ;
+lin parahin_NK = {s = d36 "parahin"} ;
+lin parahtaa_VK = {s = c53A "parahtaa"} ;
+lin parahultainen_NK = {s = d38 "parahultainen"} ;
+lin paraikaa_AdvK = {s = c99 "paraikaa"} ;
+lin paraiksi_AdvK = {s = c99 "paraiksi"} ;
+lin paraillaan_AdvK = {s = c99 "paraillaan"} ;
+lin paraiten_AdvK = {s = c99 "paraiten"} ;
+lin parakki_NK = {s = d05A "parakki"} ;
+lin parallaksi_NK = {s = d05 "parallaksi"} ;
+lin paralleelinen_NK = {s = d38 "paralleelinen"} ;
+lin paralleelisuus_NK = {s = d40 "paralleelisuus"} ;
+lin paralleelius_NK = {s = d40 "paralleelius"} ;
+lin parallelismi_NK = {s = d05 "parallelismi"} ;
+--? lin paralympialaiset_NK = {s = d38 "paralympialaiset"} ;
+lin paranee_VK = {s = c72 "paranee"} ;
+lin parannella_VK = {s = c67A "parannella"} ;
+lin parannus_NK = {s = d39 "parannus"} ;
+lin paranoia_NK = {s = d10 "paranoia"} ;
+lin paranoidi_NK = {s = d05 "paranoidi"} ;
+lin paranoidinen_NK = {s = d38 "paranoidinen"} ;
+lin paranooikko_NK = {s = d01A "paranooikko"} ;
+lin paranooinen_NK = {s = d38 "paranooinen"} ;
+lin parantaa_VK = {s = c54A "parantaa"} ;
+lin parantelu_NK = {s = d02 "parantelu"} ;
+lin parantola_NK = {s = d12 "parantola"} ;
+lin parantua_VK = {s = c52A "parantua"} ;
+lin parantumaton_NK = {s = d34A "parantumaton"} ;
+lin parantumattomasti_AdvK = {s = c99 "parantumattomasti"} ;
+lin parantumattomuus_NK = {s = d40 "parantumattomuus"} ;
+lin paras_NK = {s = d41 "paras"} ;
+lin parasiitti_NK = {s = d05A "parasiitti"} ;
+lin parastaikaa_AdvK = {s = c99 "parastaikaa"} ;
+lin parata_1_VK = {s = c72 "parata"} ;
+lin parata_2_AdvK = {s = c99 "parata"} ;
+lin paratiisi_NK = {s = d05 "paratiisi"} ;
+lin paratkoon_AdvK = {s = c99 "paratkoon"} ;
+lin par_avion_AdvK = {s = c99 "par avion"} ;
+lin pareittain_AdvK = {s = c99 "pareittain"} ;
+lin pareittainen_NK = {s = d38 "pareittainen"} ;
+lin paremmin_AdvK = {s = c99 "paremmin"} ;
+lin paremmuus_NK = {s = d40 "paremmuus"} ;
+lin parempi_NK = {s = d16A "parempi"} ;
+--? lin parfait_NK = {s = d22 "parfait"} ;
+lin parfee_NK = {s = d20 "parfee"} ;
+lin parfymeria_NK = {s = d12 "parfymeria"} ;
+lin parfymoida_VK = {s = c62 "parfymoida"} ;
+lin parfymointi_NK = {s = d05A "parfymointi"} ;
+lin parfyymi_NK = {s = d05 "parfyymi"} ;
+lin parhaastaan_AdvK = {s = c99 "parhaastaan"} ;
+lin parhaiksi_AdvK = {s = c99 "parhaiksi"} ;
+lin parhaillaan_AdvK = {s = c99 "parhaillaan"} ;
+lin parhaimmillaan_AdvK = {s = c99 "parhaimmillaan"} ;
+lin parhaimmin_AdvK = {s = c99 "parhaimmin"} ;
+lin parhaimmisto_NK = {s = d01 "parhaimmisto"} ;
+lin parhain_NK = {s = d36 "parhain"} ;
+lin parhaisto_NK = {s = d01 "parhaisto"} ;
+lin parhaiten_AdvK = {s = c99 "parhaiten"} ;
+lin pari_1_NK = {s = d05 "pari"} ;
+lin pari_2_NK = {s = d05 "pari"} ;
+lin pariin_AdvK = {s = c99 "pariin"} ;
+lin pariisitar_NK = {s = d32A "pariisitar"} ;
+lin parikki_NK = {s = d05A "parikki"} ;
+lin parila_NK = {s = d12 "parila"} ;
+lin parilehdykka'inen_NK = {s = d38 "parilehdykkäinen"} ;
+lin parillinen_NK = {s = d38 "parillinen"} ;
+lin pariloida_VK = {s = c62 "pariloida"} ;
+lin parinen_NK = {s = d38 "parinen"} ;
+lin parisen_AdvK = {s = c99 "parisen"} ;
+lin parisenkymmenta'_AdvK = {s = c99 "parisenkymmentä"} ;
+lin parisensataa_AdvK = {s = c99 "parisensataa"} ;
+lin parissa_AdvK = {s = c99 "parissa"} ;
+lin parista_AdvK = {s = c99 "parista"} ;
+lin paristo_NK = {s = d02 "paristo"} ;
+lin pariteetti_NK = {s = d05A "pariteetti"} ;
+lin paritella_VK = {s = c67A "paritella"} ;
+lin pariton_NK = {s = d34A "pariton"} ;
+lin parittaa_VK = {s = c53A "parittaa"} ;
+lin parittain_AdvK = {s = c99 "parittain"} ;
+lin parittainen_NK = {s = d38 "parittainen"} ;
+lin parittaja_NK = {s = d10 "parittaja"} ;
+lin parittelu_NK = {s = d02 "parittelu"} ;
+lin paritteluaika_NK = {s = d09A "paritteluaika"} ;
+lin paritus_NK = {s = d39 "paritus"} ;
+lin paritusten_AdvK = {s = c99 "paritusten"} ;
+lin pariutua_VK = {s = c52A "pariutua"} ;
+lin parjaaja_NK = {s = d10 "parjaaja"} ;
+lin parjata_VK = {s = c73 "parjata"} ;
+lin parjaus_NK = {s = d39 "parjaus"} ;
+lin parka_1_NK = {s = d09A "parka"} ;
+lin parka_2_NK = {s = d09 "parka"} ;
+lin parkaista_VK = {s = c66 "parkaista"} ;
+lin parkaisu_NK = {s = d02 "parkaisu"} ;
+lin parketoida_VK = {s = c62 "parketoida"} ;
+lin parketti_NK = {s = d05A "parketti"} ;
+lin parkinsonismi_NK = {s = d05 "parkinsonismi"} ;
+lin parkinta_NK = {s = d09A "parkinta"} ;
+lin parkita_VK = {s = c69 "parkita"} ;
+lin parkitsimo_NK = {s = d02 "parkitsimo"} ;
+lin parkitus_NK = {s = d39 "parkitus"} ;
+lin parkkeerata_VK = {s = c73 "parkkeerata"} ;
+lin parkkeeraus_NK = {s = d39 "parkkeeraus"} ;
+lin parkki_1_NK = {s = d05A "parkki"} ;
+lin parkki_2_NK = {s = d05A "parkki"} ;
+lin parkki_3_NK = {s = d05A "parkki"} ;
+lin parkki_4_NK = {s = d05A "parkki"} ;
+lin parkkiintua_VK = {s = c52A "parkkiintua"} ;
+lin parkkiutua_VK = {s = c52A "parkkiutua"} ;
+lin parku_NK = {s = d01A "parku"} ;
+lin parkua_VK = {s = c52A "parkua"} ;
+lin parkuna_NK = {s = d12 "parkuna"} ;
+lin parlamentaarikko_NK = {s = d04A "parlamentaarikko"} ;
+lin parlamentaarinen_AK = {s = d38 "parlamentaarinen"} ;
+--+ lin parlamentaarisesti_AdvK = {s = c99 "parlamentaarisesti"} ;
+lin parlamentaarisuus_NK = {s = d40 "parlamentaarisuus"} ;
+lin parlamentarismi_NK = {s = d05 "parlamentarismi"} ;
+lin parlamentti_NK = {s = d05A "parlamentti"} ;
+lin parmesaani_NK = {s = d05 "parmesaani"} ;
+lin parnasso_NK = {s = d02 "parnasso"} ;
+lin parodia_NK = {s = d12 "parodia"} ;
+lin parodinen_AK = {s = d38 "parodinen"} ;
+lin parodioida_VK = {s = c62 "parodioida"} ;
+lin parodiointi_NK = {s = d05A "parodiointi"} ;
+--+ lin parodisesti_AdvK = {s = c99 "parodisesti"} ;
+lin parodisuus_NK = {s = d40 "parodisuus"} ;
+lin paroni_NK = {s = d05 "paroni"} ;
+lin paronitar_NK = {s = d32A "paronitar"} ;
+lin parras_NK = {s = d41A "parras"} ;
+lin parraton_NK = {s = d34A "parraton"} ;
+lin parroittua_VK = {s = c52A "parroittua"} ;
+lin parru_NK = {s = d01 "parru"} ;
+lin parsa_NK = {s = d09 "parsa"} ;
+lin parsek_NK = {s = d05 "parsek"} ;
+lin parsi_NK = {s = d28 "parsi"} ;
+lin parsia_VK = {s = c61 "parsia"} ;
+lin parsimus_NK = {s = d39 "parsimus"} ;
+lin parsinta_NK = {s = d09A "parsinta"} ;
+lin parta_NK = {s = d09A "parta"} ;
+lin partaalla_AdvK = {s = c99 "partaalla"} ;
+lin partaalle_AdvK = {s = c99 "partaalle"} ;
+lin partainen_NK = {s = d38 "partainen"} ;
+lin partasuinen_NK = {s = d38 "partasuinen"} ;
+lin partavaahdoke_NK = {s = d48A "partavaahdoke"} ;
+lin partenogeneesi_NK = {s = d05 "partenogeneesi"} ;
+lin partenogeneettinen_NK = {s = d38 "partenogeneettinen"} ;
+lin partia_NK = {s = d12 "partia"} ;
+lin partikkeli_NK = {s = d06 "partikkeli"} ;
+lin partio_NK = {s = d03 "partio"} ;
+lin partioida_VK = {s = c62 "partioida"} ;
+lin partiointi_NK = {s = d05A "partiointi"} ;
+lin partisaani_NK = {s = d05 "partisaani"} ;
+lin partisiippi_NK = {s = d05A "partisiippi"} ;
+lin partitiivi_NK = {s = d05 "partitiivi"} ;
+lin partituuri_NK = {s = d05 "partituuri"} ;
+lin partneri_NK = {s = d06 "partneri"} ;
+lin parturi_NK = {s = d06 "parturi"} ;
+lin parturoida_VK = {s = c62 "parturoida"} ;
+lin parturointi_NK = {s = d05A "parturointi"} ;
+lin party_NK = {s = d01 "party"} ;
+lin parveilla_VK = {s = c67 "parveilla"} ;
+lin parveilu_NK = {s = d02 "parveilu"} ;
+lin parveiluaika_NK = {s = d09A "parveiluaika"} ;
+lin parveke_NK = {s = d48A "parveke"} ;
+lin parvellinen_NK = {s = d38 "parvellinen"} ;
+lin parveutua_VK = {s = c52A "parveutua"} ;
+lin parvi_1_NK = {s = d07 "parvi"} ;
+lin parvi_2_NK = {s = d07 "parvi"} ;
+lin parvittain_AdvK = {s = c99 "parvittain"} ;
+lin pas_AdvK = {s = c99 "pas"} ;
+lin pasaati_NK = {s = d05 "pasaati"} ;
+lin pascal_NK = {s = d05 "pascal"} ;
+lin paseerailla_VK = {s = c67 "paseerailla"} ;
+lin paseerata_VK = {s = c73 "paseerata"} ;
+lin pasha_NK = {s = d09 "pasha"} ;
+lin pasianssi_NK = {s = d05 "pasianssi"} ;
+lin pasifismi_NK = {s = d05 "pasifismi"} ;
+lin pasifisti_NK = {s = d05 "pasifisti"} ;
+lin pasifistinen_AK = {s = d38 "pasifistinen"} ;
+--+ lin pasifistisesti_AdvK = {s = c99 "pasifistisesti"} ;
+lin pasifistisuus_NK = {s = d40 "pasifistisuus"} ;
+lin paska_NK = {s = d09 "paska"} ;
+lin paskainen_NK = {s = d38 "paskainen"} ;
+lin paskantaa_VK = {s = c54A "paskantaa"} ;
+lin paskiainen_NK = {s = d38 "paskiainen"} ;
+lin pasma_NK = {s = d09 "pasma"} ;
+lin pasmata_VK = {s = c73 "pasmata"} ;
+lin passata_1_VK = {s = c73 "passata"} ;
+lin passata_2_VK = {s = c73 "passata"} ;
+lin passauttaa_VK = {s = c53A "passauttaa"} ;
+lin passeli_NK = {s = d06 "passeli"} ;
+--? lin passepartout_NK = {s = d22 "passepartout"} ;
+lin passi_1_NK = {s = d05 "passi"} ;
+lin passi_2_NK = {s = d05 "passi"} ;
+lin passi_3_NK = {s = d05 "passi"} ;
+lin passi_4_NK = {s = d05 "passi"} ;
+--? lin passiivat_NK = {s = d12 "passiivat"} ;
+lin passiivi_NK = {s = d05 "passiivi"} ;
+lin passiivinen_AK = {s = d38 "passiivinen"} ;
+--+ lin passiivisesti_AdvK = {s = c99 "passiivisesti"} ;
+lin passiivistaa_VK = {s = c53 "passiivistaa"} ;
+lin passiivistua_VK = {s = c52 "passiivistua"} ;
+lin passiivisuus_NK = {s = d40 "passiivisuus"} ;
+lin passio_NK = {s = d03 "passio"} ;
+lin passittaa_VK = {s = c53A "passittaa"} ;
+lin passitus_NK = {s = d39 "passitus"} ;
+lin passivoida_VK = {s = c62 "passivoida"} ;
+lin passivoitua_VK = {s = c52A "passivoitua"} ;
+lin passus_NK = {s = d39 "passus"} ;
+lin pasta_NK = {s = d09 "pasta"} ;
+lin pasteerailla_VK = {s = c67 "pasteerailla"} ;
+lin pasteerata_VK = {s = c73 "pasteerata"} ;
+lin pasteija_NK = {s = d12 "pasteija"} ;
+lin pastelli_NK = {s = d05 "pastelli"} ;
+lin pastoraali_NK = {s = d05 "pastoraali"} ;
+lin pastoraalinen_NK = {s = d38 "pastoraalinen"} ;
+lin pasto'roida_VK = {s = c62 "pastöroida"} ;
+lin pasto'rointi_NK = {s = d05A "pastörointi"} ;
+lin pasunisti_NK = {s = d05 "pasunisti"} ;
+lin pasuri_NK = {s = d06 "pasuri"} ;
+lin pasuttaa_VK = {s = c53A "pasuttaa"} ;
+lin pasutus_NK = {s = d39 "pasutus"} ;
+lin pasuuna_NK = {s = d13 "pasuuna"} ;
+lin pata_1_NK = {s = d09A "pata"} ;
+lin pata_2_NK = {s = d09A "pata"} ;
+lin pataani_NK = {s = d06 "pataani"} ;
+lin pataljoona_NK = {s = d10 "pataljoona"} ;
+lin pataluhaksi_AdvK = {s = c99 "pataluhaksi"} ;
+lin patee_NK = {s = d20 "patee"} ;
+lin pateetikko_NK = {s = d01A "pateetikko"} ;
+lin pateettinen_AK = {s = d38 "pateettinen"} ;
+--+ lin pateettisesti_AdvK = {s = c99 "pateettisesti"} ;
+lin pateettisuus_NK = {s = d40 "pateettisuus"} ;
+lin patentoida_VK = {s = c62 "patentoida"} ;
+lin patentointi_NK = {s = d05A "patentointi"} ;
+lin patentti_NK = {s = d05A "patentti"} ;
+lin patenttisuoja_NK = {s = d10 "patenttisuoja"} ;
+lin patiini_NK = {s = d05 "patiini"} ;
+lin patikoida_VK = {s = c68 "patikoida"} ;
+lin patikointi_NK = {s = d05A "patikointi"} ;
+lin patina_NK = {s = d12 "patina"} ;
+lin patinoida_VK = {s = c62 "patinoida"} ;
+lin patinointi_NK = {s = d05A "patinointi"} ;
+lin patinoitua_VK = {s = c52A "patinoitua"} ;
+lin patio_NK = {s = d03 "patio"} ;
+lin patistaa_VK = {s = c53 "patistaa"} ;
+lin patistella_VK = {s = c67 "patistella"} ;
+lin patistus_NK = {s = d39 "patistus"} ;
+lin patja_NK = {s = d09 "patja"} ;
+lin pato_NK = {s = d01A "pato"} ;
+lin patogeeninen_NK = {s = d38 "patogeeninen"} ;
+lin patologi_NK = {s = d05 "patologi"} ;
+lin patologia_NK = {s = d12 "patologia"} ;
+lin patologinen_NK = {s = d38 "patologinen"} ;
+lin patonki_NK = {s = d05A "patonki"} ;
+lin patouma_NK = {s = d10 "patouma"} ;
+lin patous_NK = {s = d39 "patous"} ;
+lin patoutua_VK = {s = c52A "patoutua"} ;
+lin patoutuma_NK = {s = d10 "patoutuma"} ;
+lin patriarkaalinen_NK = {s = d38 "patriarkaalinen"} ;
+lin patriarkaatti_NK = {s = d05A "patriarkaatti"} ;
+lin patriarkallinen_NK = {s = d38 "patriarkallinen"} ;
+lin patriarkka_NK = {s = d09A "patriarkka"} ;
+lin patriisi_NK = {s = d05 "patriisi"} ;
+lin patriootti_NK = {s = d05A "patriootti"} ;
+lin patrioottinen_NK = {s = d38 "patrioottinen"} ;
+lin patriotismi_NK = {s = d05 "patriotismi"} ;
+lin patronyymi_NK = {s = d05 "patronyymi"} ;
+lin patruuna_1_NK = {s = d13 "patruuna"} ;
+lin patruuna_2_NK = {s = d13 "patruuna"} ;
+lin patsas_NK = {s = d41 "patsas"} ;
+lin patsastella_VK = {s = c67 "patsastella"} ;
+lin patsastelu_NK = {s = d02 "patsastelu"} ;
+lin patteri_NK = {s = d06 "patteri"} ;
+lin patteristi_NK = {s = d05 "patteristi"} ;
+lin patteristo_NK = {s = d01 "patteristo"} ;
+lin patti_1_NK = {s = d05A "patti"} ;
+lin patti_2_NK = {s = d05A "patti"} ;
+lin patu_NK = {s = d01 "patu"} ;
+lin patukka_NK = {s = d14A "patukka"} ;
+lin pauhata_VK = {s = c73 "pauhata"} ;
+lin pauhina_NK = {s = d12 "pauhina"} ;
+lin pauhu_NK = {s = d01 "pauhu"} ;
+lin paukahdella_VK = {s = c67A "paukahdella"} ;
+lin paukahdus_NK = {s = d39 "paukahdus"} ;
+lin paukahtaa_VK = {s = c53A "paukahtaa"} ;
+lin paukama_NK = {s = d10 "paukama"} ;
+lin paukaus_NK = {s = d39 "paukaus"} ;
+lin paukautella_VK = {s = c67A "paukautella"} ;
+lin paukauttaa_VK = {s = c53A "paukauttaa"} ;
+lin pauke_NK = {s = d48A "pauke"} ;
+lin paukkaa_VK = {s = c78 "paukkaa"} ;
+lin paukkina_NK = {s = d13 "paukkina"} ;
+lin paukku_NK = {s = d01A "paukku"} ;
+lin paukkua_VK = {s = c52A "paukkua"} ;
+lin paukutella_VK = {s = c67A "paukutella"} ;
+lin paukuttaa_VK = {s = c53A "paukuttaa"} ;
+lin paukuttelu_NK = {s = d02 "paukuttelu"} ;
+lin paukutus_NK = {s = d39 "paukutus"} ;
+lin paula_NK = {s = d09 "paula"} ;
+lin pauloittaa_VK = {s = c53A "pauloittaa"} ;
+lin pauloitus_NK = {s = d39 "pauloitus"} ;
+lin pauna_NK = {s = d09 "pauna"} ;
+lin paunikko_NK = {s = d04A "paunikko"} ;
+lin paussi_NK = {s = d05 "paussi"} ;
+lin paviaani_NK = {s = d05 "paviaani"} ;
+lin paviljonki_NK = {s = d05A "paviljonki"} ;
+lin pedaali_NK = {s = d05 "pedaali"} ;
+lin pedagogi_NK = {s = d05 "pedagogi"} ;
+lin pedagogia_NK = {s = d12 "pedagogia"} ;
+lin pedagogiikka_NK = {s = d09A "pedagogiikka"} ;
+lin pedagoginen_AK = {s = d38 "pedagoginen"} ;
+--+ lin pedagogisesti_AdvK = {s = c99 "pedagogisesti"} ;
+lin pedantti_NK = {s = d05A "pedantti"} ;
+lin pedanttinen_AK = {s = d38 "pedanttinen"} ;
+--+ lin pedanttisesti_AdvK = {s = c99 "pedanttisesti"} ;
+lin pedanttisuus_NK = {s = d40 "pedanttisuus"} ;
+lin pedata_VK = {s = c73A "pedata"} ;
+lin pederasti_NK = {s = d05 "pederasti"} ;
+lin pederastia_NK = {s = d12 "pederastia"} ;
+lin pederastinen_NK = {s = d38 "pederastinen"} ;
+lin pediatri_NK = {s = d05 "pediatri"} ;
+lin pediatria_NK = {s = d12 "pediatria"} ;
+lin pedikyristi_NK = {s = d05 "pedikyristi"} ;
+lin pedikyyri_NK = {s = d05 "pedikyyri"} ;
+lin pedofiili_NK = {s = d05 "pedofiili"} ;
+lin pedofiilinen_NK = {s = d38 "pedofiilinen"} ;
+lin pedofilia_NK = {s = d12 "pedofilia"} ;
+lin pee_NK = {s = d18 "pee"} ;
+lin peeaa_NK = {s = d18 "peeaa"} ;
+lin peesata_VK = {s = c73 "peesata"} ;
+lin peesi_NK = {s = d05 "peesi"} ;
+lin peevelinmoinen_NK = {s = d38 "peevelinmoinen"} ;
+--+ lin peevelisti_AdvK = {s = c99 "peevelisti"} ;
+lin peea'rra'_NK = {s = d10 "peeärrä"} ;
+lin peffa_NK = {s = d09 "peffa"} ;
+lin pegasos_NK = {s = d39 "pegasos"} ;
+lin pegmatiitti_NK = {s = d05A "pegmatiitti"} ;
+lin peherrys_NK = {s = d39 "peherrys"} ;
+lin peherta'a'_VK = {s = c54A "pehertää"} ;
+lin pehko_NK = {s = d01 "pehko"} ;
+lin pehku_NK = {s = d01 "pehku"} ;
+lin pehmeikko'_NK = {s = d04A "pehmeikkö"} ;
+lin pehmennys_NK = {s = d39 "pehmennys"} ;
+lin pehmentya'_VK = {s = c52A "pehmentyä"} ;
+lin pehmenta'a'_VK = {s = c54A "pehmentää"} ;
+lin pehmeta'_VK = {s = c72 "pehmetä"} ;
+lin pehmeys_NK = {s = d40 "pehmeys"} ;
+lin pehmea'_AK = {s = d15 "pehmeä"} ;
+--+ lin pehmea'sti_AdvK = {s = c99 "pehmeästi"} ;
+lin pehmike_NK = {s = d48A "pehmike"} ;
+lin pehmis_NK = {s = d39 "pehmis"} ;
+lin pehmite_NK = {s = d48A "pehmite"} ;
+lin pehmitin_NK = {s = d33A "pehmitin"} ;
+lin pehmittya'_VK = {s = c52A "pehmittyä"} ;
+lin pehmitta'a'_VK = {s = c53A "pehmittää"} ;
+lin pehmitys_NK = {s = d39 "pehmitys"} ;
+lin pehmita'_VK = {s = c75 "pehmitä"} ;
+lin pehmo_NK = {s = d01 "pehmo"} ;
+lin pehmoilija_NK = {s = d12 "pehmoilija"} ;
+lin pehmoilla_VK = {s = c67 "pehmoilla"} ;
+lin pehmoilu_NK = {s = d02 "pehmoilu"} ;
+lin pehmoinen_NK = {s = d38 "pehmoinen"} ;
+lin pehmustaa_VK = {s = c53 "pehmustaa"} ;
+lin pehmuste_NK = {s = d48 "pehmuste"} ;
+lin pehmustus_NK = {s = d39 "pehmustus"} ;
+lin pehmyt_NK = {s = d43 "pehmyt"} ;
+lin pehtori_NK = {s = d06 "pehtori"} ;
+lin pehva_NK = {s = d09 "pehva"} ;
+--? lin peijaiset_NK = {s = d38 "peijaiset"} ;
+lin peijakas_AK = {s = d41A "peijakas"} ;
+lin peijakkaanmoinen_NK = {s = d38 "peijakkaanmoinen"} ;
+--+ lin peijakkaasti_AdvK = {s = c99 "peijakkaasti"} ;
+lin peijooni_NK = {s = d06 "peijooni"} ;
+lin peikko_NK = {s = d01A "peikko"} ;
+lin peilailla_VK = {s = c67 "peilailla"} ;
+lin peilata_1_VK = {s = c73 "peilata"} ;
+lin peilata_2_VK = {s = c73 "peilata"} ;
+lin peilaus_NK = {s = d39 "peilaus"} ;
+lin peilautua_VK = {s = c52A "peilautua"} ;
+lin peili_NK = {s = d05 "peili"} ;
+lin peipata_VK = {s = c73A "peipata"} ;
+lin peippaus_NK = {s = d39 "peippaus"} ;
+lin peippi_NK = {s = d05A "peippi"} ;
+lin peippo_NK = {s = d01A "peippo"} ;
+lin peipponen_NK = {s = d38 "peipponen"} ;
+lin peitata_VK = {s = c73A "peitata"} ;
+lin peite_NK = {s = d48A "peite"} ;
+lin peitellysti_AdvK = {s = c99 "peitellysti"} ;
+lin peitella'_VK = {s = c67A "peitellä"} ;
+lin peitetysti_AdvK = {s = c99 "peitetysti"} ;
+lin peitossa_AdvK = {s = c99 "peitossa"} ;
+lin peitosta_AdvK = {s = c99 "peitosta"} ;
+lin peitota_VK = {s = c75A "peitota"} ;
+lin peitsari_NK = {s = d06 "peitsari"} ;
+lin peitsata_VK = {s = c73 "peitsata"} ;
+lin peitsaus_NK = {s = d39 "peitsaus"} ;
+lin peitsi_1_NK = {s = d30 "peitsi"} ;
+lin peitsi_2_NK = {s = d05 "peitsi"} ;
+lin peitta_NK = {s = d09A "peitta"} ;
+lin peittaus_NK = {s = d39 "peittaus"} ;
+lin peitteinen_NK = {s = d38 "peitteinen"} ;
+lin peittelema'to'n_NK = {s = d34A "peittelemätön"} ;
+lin peittely_NK = {s = d02 "peittely"} ;
+lin peitto_NK = {s = d01A "peitto"} ;
+lin peittoon_AdvK = {s = c99 "peittoon"} ;
+lin peittya'_VK = {s = c52A "peittyä"} ;
+lin peitta'a'_VK = {s = c53A "peittää"} ;
+lin pejoratiivinen_NK = {s = d38 "pejoratiivinen"} ;
+lin pekari_NK = {s = d06 "pekari"} ;
+lin pekka_NK = {s = d09A "pekka"} ;
+lin pekoni_NK = {s = d06 "pekoni"} ;
+lin pelaaja_NK = {s = d10 "pelaaja"} ;
+lin pelailla_VK = {s = c67 "pelailla"} ;
+lin pelakuu_NK = {s = d18 "pelakuu"} ;
+lin pelargoni_NK = {s = d05 "pelargoni"} ;
+lin pelastaa_VK = {s = c53 "pelastaa"} ;
+lin pelastaja_NK = {s = d10 "pelastaja"} ;
+lin pelastautua_VK = {s = c52A "pelastautua"} ;
+lin pelastua_VK = {s = c52 "pelastua"} ;
+lin pelastus_NK = {s = d39 "pelastus"} ;
+lin pelastusarmeijalainen_NK = {s = d38 "pelastusarmeijalainen"} ;
+lin pelata_VK = {s = c73 "pelata"} ;
+lin pelehtia'_VK = {s = c61A "pelehtiä"} ;
+lin peleriini_NK = {s = d05 "peleriini"} ;
+lin peli_NK = {s = d05 "peli"} ;
+lin peliaika_NK = {s = d09A "peliaika"} ;
+lin pelikaani_NK = {s = d05 "pelikaani"} ;
+lin pelimanni_NK = {s = d05 "pelimanni"} ;
+lin pelja'ta'_VK = {s = c73A "peljätä"} ;
+lin pelkiste_NK = {s = d48 "pelkiste"} ;
+lin pelkistin_NK = {s = d33 "pelkistin"} ;
+lin pelkistys_NK = {s = d39 "pelkistys"} ;
+lin pelkistya'_VK = {s = c52 "pelkistyä"} ;
+lin pelkista'a'_VK = {s = c53 "pelkistää"} ;
+lin pelkka_NK = {s = d09A "pelkka"} ;
+lin pelkka'_NK = {s = d10A "pelkkä"} ;
+lin pelko_NK = {s = d01A "pelko"} ;
+lin pelkuri_NK = {s = d06 "pelkuri"} ;
+--+ lin pelkurimaisesti_AdvK = {s = c99 "pelkurimaisesti"} ;
+lin pelkuruus_NK = {s = d40 "pelkuruus"} ;
+lin pelka'sta'a'n_AdvK = {s = c99 "pelkästään"} ;
+lin pelka'a'ja'_NK = {s = d10 "pelkääjä"} ;
+lin pelka'a'ma'to'n_NK = {s = d34A "pelkäämätön"} ;
+lin pelka'a'va'inen_NK = {s = d38 "pelkääväinen"} ;
+lin pellava_NK = {s = d10 "pellava"} ;
+lin pellavainen_NK = {s = d38 "pellavainen"} ;
+lin pelle_NK = {s = d08 "pelle"} ;
+lin pelleilla'_VK = {s = c67 "pelleillä"} ;
+lin pelleily_NK = {s = d02 "pelleily"} ;
+lin pelleriini_NK = {s = d05 "pelleriini"} ;
+lin pelletoida_VK = {s = c62 "pelletoida"} ;
+lin pelletointi_NK = {s = d05A "pelletointi"} ;
+lin pelletti_NK = {s = d05A "pelletti"} ;
+lin pellillinen_NK = {s = d38 "pellillinen"} ;
+lin pellitta'a'_VK = {s = c53A "pellittää"} ;
+lin pelmahdella_VK = {s = c67A "pelmahdella"} ;
+lin pelmahtaa_VK = {s = c53A "pelmahtaa"} ;
+lin pelmeni_NK = {s = d06 "pelmeni"} ;
+lin pelmuta_VK = {s = c74 "pelmuta"} ;
+lin pelmuttaa_VK = {s = c53A "pelmuttaa"} ;
+lin pelokas_AK = {s = d41A "pelokas"} ;
+--+ lin pelokkaasti_AdvK = {s = c99 "pelokkaasti"} ;
+lin pelokkuus_NK = {s = d40 "pelokkuus"} ;
+lin pelote_NK = {s = d48A "pelote"} ;
+lin pelotella_VK = {s = c67A "pelotella"} ;
+lin pelotin_NK = {s = d33A "pelotin"} ;
+lin peloton_NK = {s = d34A "peloton"} ;
+lin pelottaa_VK = {s = c53A "pelottaa"} ;
+lin pelottava_AK = {s = d10 "pelottava"} ;
+--+ lin pelottavasti_AdvK = {s = c99 "pelottavasti"} ;
+lin pelottavuus_NK = {s = d40 "pelottavuus"} ;
+lin pelottelu_NK = {s = d02 "pelottelu"} ;
+lin pelottomasti_AdvK = {s = c99 "pelottomasti"} ;
+lin pelottomuus_NK = {s = d40 "pelottomuus"} ;
+lin pelotus_NK = {s = d39 "pelotus"} ;
+lin pelti_NK = {s = d05A "pelti"} ;
+lin peltinen_NK = {s = d38 "peltinen"} ;
+lin pelto_NK = {s = d01A "pelto"} ;
+lin peltoinen_NK = {s = d38 "peltoinen"} ;
+lin peluri_NK = {s = d06 "peluri"} ;
+lin peluu_NK = {s = d17 "peluu"} ;
+lin peluuttaa_VK = {s = c53A "peluuttaa"} ;
+lin pela'stys_NK = {s = d39 "pelästys"} ;
+lin pela'stytta'a'_VK = {s = c53A "pelästyttää"} ;
+lin pela'stya'_VK = {s = c52 "pelästyä"} ;
+lin pela'tin_NK = {s = d33A "pelätin"} ;
+lin pela'tti_NK = {s = d05A "pelätti"} ;
+lin pela'ta'_VK = {s = c73A "pelätä"} ;
+lin pemppu_NK = {s = d01A "pemppu"} ;
+lin penaali_NK = {s = d06 "penaali"} ;
+lin pendeli_NK = {s = d05 "pendeli"} ;
+lin pendyyli_NK = {s = d05 "pendyyli"} ;
+lin penetraatio_NK = {s = d03 "penetraatio"} ;
+lin penetranssi_NK = {s = d05 "penetranssi"} ;
+lin penetroida_VK = {s = c62 "penetroida"} ;
+lin penger_NK = {s = d49A "penger"} ;
+lin pengerma'_NK = {s = d10 "pengermä"} ;
+lin pengerma'inen_NK = {s = d38 "pengermäinen"} ;
+lin pengerrys_NK = {s = d39 "pengerrys"} ;
+lin pengerta'a'_VK = {s = c54A "pengertää"} ;
+lin pengonta_NK = {s = d09A "pengonta"} ;
+lin peni_NK = {s = d05 "peni"} ;
+lin penikka_NK = {s = d14A "penikka"} ;
+--+ lin penikkamaisesti_AdvK = {s = c99 "penikkamaisesti"} ;
+lin penikkamaisuus_NK = {s = d40 "penikkamaisuus"} ;
+lin penikoida_VK = {s = c62 "penikoida"} ;
+lin penikointi_NK = {s = d05A "penikointi"} ;
+lin penis_NK = {s = d39 "penis"} ;
+lin penisilliini_NK = {s = d05 "penisilliini"} ;
+lin penkere_NK = {s = d49 "penkere"} ;
+lin penkereinen_NK = {s = d38 "penkereinen"} ;
+--? lin penkinpainajaiset_NK = {s = d38 "penkinpainajaiset"} ;
+lin penkka_NK = {s = d09A "penkka"} ;
+--? lin penkkarit_NK = {s = d06 "penkkarit"} ;
+lin penkki_NK = {s = d05A "penkki"} ;
+lin penkoa_VK = {s = c52A "penkoa"} ;
+lin pennalismi_NK = {s = d05 "pennalismi"} ;
+lin penne_NK = {s = d08 "penne"} ;
+lin penni_NK = {s = d05 "penni"} ;
+lin penninen_NK = {s = d38 "penninen"} ;
+lin pennito'n_NK = {s = d34A "pennitön"} ;
+lin pennonen_NK = {s = d38 "pennonen"} ;
+lin penny_NK = {s = d01 "penny"} ;
+lin pensa_NK = {s = d09 "pensa"} ;
+lin pensaikko_NK = {s = d04A "pensaikko"} ;
+lin pensaikkoinen_NK = {s = d38 "pensaikkoinen"} ;
+lin pensainen_NK = {s = d38 "pensainen"} ;
+lin pensaisto_NK = {s = d01 "pensaisto"} ;
+lin pensas_NK = {s = d41 "pensas"} ;
+--+ lin pensasmaisesti_AdvK = {s = c99 "pensasmaisesti"} ;
+lin pensasmaisuus_NK = {s = d40 "pensasmaisuus"} ;
+lin pensastaa_VK = {s = c53 "pensastaa"} ;
+lin pensasto_NK = {s = d02 "pensasto"} ;
+lin pensastua_VK = {s = c52 "pensastua"} ;
+lin penseys_NK = {s = d40 "penseys"} ;
+lin pensea'_AK = {s = d15 "penseä"} ;
+--+ lin pensea'sti_AdvK = {s = c99 "penseästi"} ;
+lin pensionaatti_NK = {s = d05A "pensionaatti"} ;
+lin penska_NK = {s = d09 "penska"} ;
+lin penslata_VK = {s = c73 "penslata"} ;
+lin penslaus_NK = {s = d39 "penslaus"} ;
+lin pensoa_VK = {s = c52 "pensoa"} ;
+lin pensoittua_VK = {s = c52A "pensoittua"} ;
+lin pensseli_NK = {s = d06 "pensseli"} ;
+lin pensselo'ida'_VK = {s = c62 "pensselöidä"} ;
+lin pentaani_NK = {s = d06 "pentaani"} ;
+lin pentaedri_NK = {s = d05 "pentaedri"} ;
+lin pentagoni_NK = {s = d05 "pentagoni"} ;
+lin pentagrammi_NK = {s = d05 "pentagrammi"} ;
+lin pentametri_NK = {s = d05 "pentametri"} ;
+lin pentele_AK = {s = d48 "pentele"} ;
+--+ lin penteleesti_AdvK = {s = c99 "penteleesti"} ;
+lin pentteri_NK = {s = d06 "pentteri"} ;
+lin pentu_NK = {s = d01A "pentu"} ;
+lin pentue_NK = {s = d48 "pentue"} ;
+--+ lin pentumaisesti_AdvK = {s = c99 "pentumaisesti"} ;
+lin pentumaisuus_NK = {s = d40 "pentumaisuus"} ;
+lin pena'ta'_VK = {s = c73 "penätä"} ;
+lin peoni_1_NK = {s = d05 "peoni"} ;
+lin peoni_2_NK = {s = d05 "peoni"} ;
+lin pepino_NK = {s = d02 "pepino"} ;
+lin peppu_NK = {s = d01A "peppu"} ;
+lin pepsiini_NK = {s = d05 "pepsiini"} ;
+lin peptidi_NK = {s = d05 "peptidi"} ;
+lin per_AdvK = {s = c99 "per"} ;
+lin perata_VK = {s = c73A "perata"} ;
+lin perehdytta'ja'_NK = {s = d10 "perehdyttäjä"} ;
+lin perehdytta'a'_VK = {s = c53A "perehdyttää"} ;
+lin perehtymys_NK = {s = d39 "perehtymys"} ;
+lin perehtyneisyys_NK = {s = d40 "perehtyneisyys"} ;
+lin perehtya'_VK = {s = c52A "perehtyä"} ;
+lin peremma'_AdvK = {s = c99 "peremmä"} ;
+lin peremma'ksi_AdvK = {s = c99 "peremmäksi"} ;
+lin peremma'lle_AdvK = {s = c99 "peremmälle"} ;
+lin peremma'lla'_AdvK = {s = c99 "peremmällä"} ;
+lin peremma'lta'_AdvK = {s = c99 "peremmältä"} ;
+lin peremma's_AdvK = {s = c99 "peremmäs"} ;
+lin perempi_NK = {s = d16A "perempi"} ;
+lin perempa'na'_AdvK = {s = c99 "perempänä"} ;
+lin perempa'a'_AdvK = {s = c99 "perempää"} ;
+lin perenna_NK = {s = d13 "perenna"} ;
+lin perennoida_VK = {s = c62 "perennoida"} ;
+lin perestroika_NK = {s = d10 "perestroika"} ;
+lin perfekti_NK = {s = d05 "perfekti"} ;
+lin perfektionismi_NK = {s = d05 "perfektionismi"} ;
+lin perfektionisti_NK = {s = d05 "perfektionisti"} ;
+lin perfektionistinen_NK = {s = d38 "perfektionistinen"} ;
+lin perforaatio_NK = {s = d03 "perforaatio"} ;
+lin performanssi_NK = {s = d05 "performanssi"} ;
+lin perforoida_VK = {s = c62 "perforoida"} ;
+lin perforointi_NK = {s = d05A "perforointi"} ;
+lin pergamentti_NK = {s = d05A "pergamentti"} ;
+lin pergamiini_NK = {s = d05 "pergamiini"} ;
+lin pergola_NK = {s = d12 "pergola"} ;
+lin perhananmoinen_NK = {s = d38 "perhananmoinen"} ;
+--+ lin perhanasti_AdvK = {s = c99 "perhanasti"} ;
+lin perhe_NK = {s = d48 "perhe"} ;
+lin perheellinen_NK = {s = d38 "perheellinen"} ;
+lin perheeto'n_NK = {s = d34A "perheetön"} ;
+lin perheinen_NK = {s = d38 "perheinen"} ;
+lin perheitta'in_AdvK = {s = c99 "perheittäin"} ;
+lin perho_NK = {s = d01 "perho"} ;
+lin perhonen_NK = {s = d38 "perhonen"} ;
+lin perhostaa_VK = {s = c53 "perhostaa"} ;
+lin perhostella_VK = {s = c67 "perhostella"} ;
+lin periaatteeton_NK = {s = d34A "periaatteeton"} ;
+lin periaatteettomuus_NK = {s = d40 "periaatteettomuus"} ;
+lin periaatteinen_NK = {s = d38 "periaatteinen"} ;
+lin peridotiitti_NK = {s = d05A "peridotiitti"} ;
+lin perifeerinen_NK = {s = d38 "perifeerinen"} ;
+lin perifeerisyys_NK = {s = d40 "perifeerisyys"} ;
+lin periferia_NK = {s = d12 "periferia"} ;
+lin perija'_NK = {s = d12 "perijä"} ;
+lin perija'ta'r_NK = {s = d32A "perijätär"} ;
+lin periksi_AdvK = {s = c99 "periksi"} ;
+lin perille_AdvK = {s = c99 "perille"} ;
+lin perillinen_NK = {s = d38 "perillinen"} ;
+lin perilla'_AdvK = {s = c99 "perillä"} ;
+lin perimmilta'a'n_AdvK = {s = c99 "perimmiltään"} ;
+lin perimma'inen_NK = {s = d38 "perimmäinen"} ;
+lin perimma'lta'_AdvK = {s = c99 "perimmältä"} ;
+lin perimma'lta'a'n_AdvK = {s = c99 "perimmältään"} ;
+lin perimys_NK = {s = d39 "perimys"} ;
+lin perima'_NK = {s = d10 "perimä"} ;
+lin perin_1_AdvK = {s = c99 "perin"} ;
+lin perin_2_AdvK = {s = c99 "perin"} ;
+lin perinataaliaika_NK = {s = d09A "perinataaliaika"} ;
+lin perinataalinen_NK = {s = d38 "perinataalinen"} ;
+lin perinatologia_NK = {s = d12 "perinatologia"} ;
+lin perin_juurin_AdvK = {s = c99 "perin juurin"} ;
+lin perinne_NK = {s = d48A "perinne"} ;
+lin perinna'inen_AK = {s = d38 "perinnäinen"} ;
+--+ lin perinna'isesti_AdvK = {s = c99 "perinnäisesti"} ;
+lin perinno'llinen_NK = {s = d38 "perinnöllinen"} ;
+lin perinno'llisyys_NK = {s = d40 "perinnöllisyys"} ;
+lin perinno'nja'tta'ja'_NK = {s = d10 "perinnönjättäjä"} ;
+lin perinno'to'n_NK = {s = d34A "perinnötön"} ;
+--+ lin perinpohjaisesti_AdvK = {s = c99 "perinpohjaisesti"} ;
+lin perin_pohjin_AdvK = {s = c99 "perin pohjin"} ;
+lin perinteellinen_AK = {s = d38 "perinteellinen"} ;
+--+ lin perinteellisesti_AdvK = {s = c99 "perinteellisesti"} ;
+lin perinteellisyys_NK = {s = d40 "perinteellisyys"} ;
+lin perinteika's_NK = {s = d41A "perinteikäs"} ;
+--+ lin perinteisesti_AdvK = {s = c99 "perinteisesti"} ;
+lin perinteisyys_NK = {s = d40 "perinteisyys"} ;
+lin perinta'_NK = {s = d09A "perintä"} ;
+lin perinto'_NK = {s = d01A "perintö"} ;
+lin periodeittain_AdvK = {s = c99 "periodeittain"} ;
+lin periodi_NK = {s = d05 "periodi"} ;
+lin periodinen_AK = {s = d38 "periodinen"} ;
+--+ lin periodisesti_AdvK = {s = c99 "periodisesti"} ;
+lin periodisuus_NK = {s = d40 "periodisuus"} ;
+lin peripohjalaisuus_NK = {s = d40 "peripohjalaisuus"} ;
+lin periskooppi_NK = {s = d05A "periskooppi"} ;
+lin peristaltiikka_NK = {s = d09A "peristaltiikka"} ;
+lin peristalttinen_NK = {s = d38 "peristalttinen"} ;
+lin periytta'a'_VK = {s = c53A "periyttää"} ;
+lin periytya'_VK = {s = c52A "periytyä"} ;
+lin peria'_VK = {s = c61 "periä"} ;
+lin perjantai_NK = {s = d18 "perjantai"} ;
+lin perjantainen_NK = {s = d38 "perjantainen"} ;
+lin perjantaisin_AdvK = {s = c99 "perjantaisin"} ;
+lin perkaaja_NK = {s = d10 "perkaaja"} ;
+lin perkaus_NK = {s = d39 "perkaus"} ;
+--? lin perkeet_NK = {s = d48 "perkeet"} ;
+lin perkele_AK = {s = d48 "perkele"} ;
+lin perkeleellinen_NK = {s = d38 "perkeleellinen"} ;
+lin perkeleenmoinen_NK = {s = d38 "perkeleenmoinen"} ;
+--+ lin perkeleesti_AdvK = {s = c99 "perkeleesti"} ;
+lin perkio'_NK = {s = d03 "perkiö"} ;
+lin perkule_NK = {s = d48 "perkule"} ;
+lin perkussio_NK = {s = d03 "perkussio"} ;
+lin permanentata_VK = {s = c73A "permanentata"} ;
+lin permanentti_NK = {s = d05A "permanentti"} ;
+lin permeaabeli_NK = {s = d05 "permeaabeli"} ;
+lin permeabiliteetti_NK = {s = d05A "permeabiliteetti"} ;
+lin permila'inen_NK = {s = d38 "permiläinen"} ;
+lin permis_NK = {s = d39 "permis"} ;
+lin perna_NK = {s = d09 "perna"} ;
+lin pernisioosi_NK = {s = d05 "pernisioosi"} ;
+lin pernisioosinen_NK = {s = d38 "pernisioosinen"} ;
+lin pernisio'o'si_NK = {s = d05 "pernisiöösi"} ;
+lin peroksidaasi_NK = {s = d05 "peroksidaasi"} ;
+lin persaukinen_NK = {s = d38 "persaukinen"} ;
+--? lin persaukset_NK = {s = d39 "persaukset"} ;
+lin perse_NK = {s = d48 "perse"} ;
+lin perseennuolija_NK = {s = d12 "perseennuolija"} ;
+lin persia_NK = {s = d12 "persia"} ;
+lin persikka_NK = {s = d14A "persikka"} ;
+lin persilja_NK = {s = d12 "persilja"} ;
+lin persiljavoi_NK = {s = d18 "persiljavoi"} ;
+lin persimoni_NK = {s = d05 "persimoni"} ;
+--? lin perskat_NK = {s = d09 "perskat"} ;
+lin persla'pi_NK = {s = d07A "persläpi"} ;
+lin persnetto_NK = {s = d01A "persnetto"} ;
+lin perso_NK = {s = d01 "perso"} ;
+lin personifikaatio_NK = {s = d03 "personifikaatio"} ;
+lin personifioida_VK = {s = c62 "personifioida"} ;
+lin personifiointi_NK = {s = d05A "personifiointi"} ;
+lin personoida_VK = {s = c62 "personoida"} ;
+lin personointi_NK = {s = d05A "personointi"} ;
+lin personoitua_VK = {s = c52A "personoitua"} ;
+lin personoituma_NK = {s = d10 "personoituma"} ;
+lin persoona_NK = {s = d10 "persoona"} ;
+lin persoonainen_NK = {s = d38 "persoonainen"} ;
+lin persoonallinen_AK = {s = d38 "persoonallinen"} ;
+--+ lin persoonallisesti_AdvK = {s = c99 "persoonallisesti"} ;
+lin persoonallisuus_NK = {s = d40 "persoonallisuus"} ;
+lin persoonaton_NK = {s = d34A "persoonaton"} ;
+lin persoonattomasti_AdvK = {s = c99 "persoonattomasti"} ;
+lin persoonattomuus_NK = {s = d40 "persoonattomuus"} ;
+lin perspektiivi_NK = {s = d05 "perspektiivi"} ;
+lin perspektiivinen_NK = {s = d38 "perspektiivinen"} ;
+--? lin persukset_NK = {s = d39 "persukset"} ;
+--? lin persuukset_NK = {s = d39 "persuukset"} ;
+lin peru_NK = {s = d01 "peru"} ;
+lin perua_VK = {s = c52 "perua"} ;
+lin peruke_NK = {s = d48A "peruke"} ;
+lin perukka_NK = {s = d14A "perukka"} ;
+lin peruna_NK = {s = d12 "peruna"} ;
+lin perunankuori_NK = {s = d26 "perunankuori"} ;
+lin perus_NK = {s = d39 "perus"} ;
+lin perusta_NK = {s = d13 "perusta"} ;
+lin perustaa_VK = {s = c53 "perustaa"} ;
+lin perustainen_NK = {s = d38 "perustainen"} ;
+lin perustaja_NK = {s = d10 "perustaja"} ;
+lin perustanta_NK = {s = d09A "perustanta"} ;
+lin peruste_NK = {s = d48 "peruste"} ;
+lin perusteellinen_AK = {s = d38 "perusteellinen"} ;
+--+ lin perusteellisesti_AdvK = {s = c99 "perusteellisesti"} ;
+lin perusteellisuus_NK = {s = d40 "perusteellisuus"} ;
+lin perusteeton_NK = {s = d34A "perusteeton"} ;
+lin perusteettomasti_AdvK = {s = c99 "perusteettomasti"} ;
+lin perusteettomuus_NK = {s = d40 "perusteettomuus"} ;
+lin perusteilla_AdvK = {s = c99 "perusteilla"} ;
+lin perustella_VK = {s = c67 "perustella"} ;
+lin perustelu_NK = {s = d02 "perustelu"} ;
+lin perustua_VK = {s = c52 "perustua"} ;
+lin perustus_NK = {s = d39 "perustus"} ;
+lin peruuntua_VK = {s = c52A "peruuntua"} ;
+lin peruuttaa_VK = {s = c53A "peruuttaa"} ;
+lin peruuttamaton_NK = {s = d34A "peruuttamaton"} ;
+lin peruuttamattomasti_AdvK = {s = c99 "peruuttamattomasti"} ;
+lin peruuttamattomuus_NK = {s = d40 "peruuttamattomuus"} ;
+lin peruutua_VK = {s = c52A "peruutua"} ;
+lin peruutus_NK = {s = d39 "peruutus"} ;
+lin perversiteetti_NK = {s = d05A "perversiteetti"} ;
+lin perverssi_NK = {s = d05 "perverssi"} ;
+lin perverssiys_NK = {s = d40 "perverssiys"} ;
+lin pervo_NK = {s = d01 "pervo"} ;
+lin pera'_NK = {s = d10 "perä"} ;
+lin pera'inen_NK = {s = d38 "peräinen"} ;
+lin pera'isin_AdvK = {s = c99 "peräisin"} ;
+lin pera'kanaa_AdvK = {s = c99 "peräkanaa"} ;
+lin pera'kaneetti_NK = {s = d05A "peräkaneetti"} ;
+lin pera'kka'in_AdvK = {s = c99 "peräkkäin"} ;
+lin pera'kka'inen_AK = {s = d38 "peräkkäinen"} ;
+--+ lin pera'kka'isesti_AdvK = {s = c99 "peräkkäisesti"} ;
+lin pera'kka'isyys_NK = {s = d40 "peräkkäisyys"} ;
+lin pera'lle_AdvK = {s = c99 "perälle"} ;
+lin pera'llinen_NK = {s = d38 "perällinen"} ;
+lin pera'lla'_AdvK = {s = c99 "perällä"} ;
+lin pera'lta'_AdvK = {s = c99 "perältä"} ;
+lin pera'miehellinen_NK = {s = d38 "perämiehellinen"} ;
+lin pera'mieheto'n_NK = {s = d34A "perämiehetön"} ;
+lin pera'prutku_NK = {s = d01 "peräprutku"} ;
+lin pera'pukama_NK = {s = d10 "peräpukama"} ;
+lin pera'sin_NK = {s = d33 "peräsin"} ;
+lin pera'ssa'_AdvK = {s = c99 "perässä"} ;
+lin pera'sta'_AdvK = {s = c99 "perästä"} ;
+lin pera'ti_AdvK = {s = c99 "peräti"} ;
+lin pera'tta'in_AdvK = {s = c99 "perättäin"} ;
+lin pera'tta'inen_AK = {s = d38 "perättäinen"} ;
+--+ lin pera'tta'isesti_AdvK = {s = c99 "perättäisesti"} ;
+lin pera'tta'isyys_NK = {s = d40 "perättäisyys"} ;
+lin pera'tto'myys_NK = {s = d40 "perättömyys"} ;
+lin pera'tto'ma'sti_AdvK = {s = c99 "perättömästi"} ;
+lin pera'tuuppari_NK = {s = d06 "perätuuppari"} ;
+lin pera'tyksin_AdvK = {s = c99 "perätyksin"} ;
+lin pera'tysten_AdvK = {s = c99 "perätysten"} ;
+lin pera'ta'_VK = {s = c73 "perätä"} ;
+lin pera'to'n_NK = {s = d34A "perätön"} ;
+lin pera'ytta'a'_VK = {s = c53A "peräyttää"} ;
+lin pera'ytya'_VK = {s = c52A "peräytyä"} ;
+lin pera'a'n_AdvK = {s = c99 "perään"} ;
+lin pera'a'nantamaton_NK = {s = d34A "peräänantamaton"} ;
+lin pera'a'nantamattomasti_AdvK = {s = c99 "peräänantamattomasti"} ;
+lin pera'a'nantamattomuus_NK = {s = d40 "peräänantamattomuus"} ;
+lin pera'a'nantava_NK = {s = d10 "peräänantava"} ;
+lin pera'a'ntya'_VK = {s = c52A "perääntyä"} ;
+lin pesaista_VK = {s = c66 "pesaista"} ;
+lin peseta_NK = {s = d13 "peseta"} ;
+lin pesetta'a'_VK = {s = c53A "pesettää"} ;
+lin peseytya'_VK = {s = c52A "peseytyä"} ;
+lin pesiintya'_VK = {s = c52A "pesiintyä"} ;
+lin pesija'_1_NK = {s = d12 "pesijä"} ;
+lin pesija'_2_NK = {s = d12 "pesijä"} ;
+lin pesima'aika_NK = {s = d09A "pesimäaika"} ;
+lin pesin_NK = {s = d33 "pesin"} ;
+lin pesinta'_NK = {s = d09A "pesintä"} ;
+lin pesis_NK = {s = d39 "pesis"} ;
+lin pesiytya'_VK = {s = c52A "pesiytyä"} ;
+lin pesia'_VK = {s = c61 "pesiä"} ;
+lin peski_NK = {s = d05 "peski"} ;
+lin peso_NK = {s = d01 "peso"} ;
+lin pessaari_NK = {s = d06 "pessaari"} ;
+lin pessimismi_NK = {s = d05 "pessimismi"} ;
+lin pessimisti_NK = {s = d05 "pessimisti"} ;
+lin pessimistinen_AK = {s = d38 "pessimistinen"} ;
+--+ lin pessimistisesti_AdvK = {s = c99 "pessimistisesti"} ;
+lin pessimistisyys_NK = {s = d40 "pessimistisyys"} ;
+lin pestata_VK = {s = c73 "pestata"} ;
+lin pestaus_NK = {s = d39 "pestaus"} ;
+lin pestautua_VK = {s = c52A "pestautua"} ;
+lin pesti_NK = {s = d05 "pesti"} ;
+lin pestisidi_NK = {s = d05 "pestisidi"} ;
+lin pesto_NK = {s = d01 "pesto"} ;
+lin pestuu_NK = {s = d17 "pestuu"} ;
+lin pesta'_VK = {s = c66 "pestä"} ;
+lin pesu_NK = {s = d01 "pesu"} ;
+lin pesue_NK = {s = d48 "pesue"} ;
+lin pesula_NK = {s = d12 "pesula"} ;
+lin pesuri_NK = {s = d06 "pesuri"} ;
+lin pesye_NK = {s = d48 "pesye"} ;
+lin pesa'_NK = {s = d10 "pesä"} ;
+lin pesa'juuri_NK = {s = d26 "pesäjuuri"} ;
+lin pesa'ke_NK = {s = d48A "pesäke"} ;
+lin pesa'llinen_NK = {s = d38 "pesällinen"} ;
+lin pesa'pallisti_NK = {s = d05 "pesäpallisti"} ;
+lin petankisti_NK = {s = d05 "petankisti"} ;
+lin petankki_NK = {s = d05A "petankki"} ;
+lin petanque_NK = {s = d08 "petanque"} ;
+lin petata_VK = {s = c73 "petata"} ;
+lin petaus_NK = {s = d39 "petaus"} ;
+lin peti_NK = {s = d05 "peti"} ;
+lin petiitti_NK = {s = d05A "petiitti"} ;
+lin petkel_NK = {s = d49 "petkel"} ;
+lin petkele_NK = {s = d49 "petkele"} ;
+lin petkuttaa_VK = {s = c53A "petkuttaa"} ;
+lin petkuttaja_NK = {s = d10 "petkuttaja"} ;
+lin petkutus_NK = {s = d39 "petkutus"} ;
+lin peto_NK = {s = d01A "peto"} ;
+lin petoksellinen_AK = {s = d38 "petoksellinen"} ;
+--+ lin petoksellisesti_AdvK = {s = c99 "petoksellisesti"} ;
+lin petollinen_AK = {s = d38 "petollinen"} ;
+--+ lin petollisesti_AdvK = {s = c99 "petollisesti"} ;
+lin petollisuus_NK = {s = d40 "petollisuus"} ;
+--+ lin petomaisesti_AdvK = {s = c99 "petomaisesti"} ;
+lin petomaisuus_NK = {s = d40 "petomaisuus"} ;
+lin petos_NK = {s = d39 "petos"} ;
+lin petrata_VK = {s = c73 "petrata"} ;
+lin petraus_NK = {s = d39 "petraus"} ;
+lin petroli_NK = {s = d06 "petroli"} ;
+lin petrologi_NK = {s = d05 "petrologi"} ;
+lin petrologia_NK = {s = d12 "petrologia"} ;
+lin petrologinen_NK = {s = d38 "petrologinen"} ;
+lin petsata_VK = {s = c73 "petsata"} ;
+lin petsaus_NK = {s = d39 "petsaus"} ;
+lin petsi_NK = {s = d05 "petsi"} ;
+lin petting_NK = {s = d05 "petting"} ;
+lin pettu_NK = {s = d01A "pettu"} ;
+lin petturi_NK = {s = d06 "petturi"} ;
+lin petturuus_NK = {s = d40 "petturuus"} ;
+lin pettymys_NK = {s = d39 "pettymys"} ;
+lin pettya'_VK = {s = c52A "pettyä"} ;
+lin petta'ja'_NK = {s = d10 "pettäjä"} ;
+lin petta'ma'tto'ma'sti_AdvK = {s = c99 "pettämättömästi"} ;
+lin petta'ma'to'n_NK = {s = d34A "pettämätön"} ;
+lin petta'a'_VK = {s = c53A "pettää"} ;
+lin petunia_NK = {s = d12 "petunia"} ;
+lin peta'jikko'_NK = {s = d01A "petäjikkö"} ;
+lin peta'jisto'_NK = {s = d01 "petäjistö"} ;
+lin peta'ja'_NK = {s = d10 "petäjä"} ;
+lin peta'ja'inen_NK = {s = d38 "petäjäinen"} ;
+lin peta'ja'nkuori_NK = {s = d26 "petäjänkuori"} ;
+lin peuhata_VK = {s = c73 "peuhata"} ;
+lin peukalo_NK = {s = d02 "peukalo"} ;
+lin peukaloida_VK = {s = c62 "peukaloida"} ;
+lin peukaloinen_NK = {s = d38 "peukaloinen"} ;
+lin peukalokyytila'inen_NK = {s = d38 "peukalokyytiläinen"} ;
+lin peukku_NK = {s = d01A "peukku"} ;
+lin peura_NK = {s = d09 "peura"} ;
+lin peuranvasa_NK = {s = d09 "peuranvasa"} ;
+lin pH_AdvK = {s = c99 "pH"} ;
+lin phui_AdvK = {s = c99 "phui"} ;
+lin phyi_AdvK = {s = c99 "phyi"} ;
+lin piakkoin_AdvK = {s = c99 "piakkoin"} ;
+lin pian_AdvK = {s = c99 "pian"} ;
+lin pianissimo_NK = {s = d02 "pianissimo"} ;
+lin pianisti_NK = {s = d05 "pianisti"} ;
+lin pianistinen_NK = {s = d38 "pianistinen"} ;
+lin piano_NK = {s = d01 "piano"} ;
+lin piccolo_NK = {s = d02 "piccolo"} ;
+lin pick_up_NK = {s = d05 "pick-up"} ;
+lin picnic_NK = {s = d05 "picnic"} ;
+lin pidella'_VK = {s = c67A "pidellä"} ;
+lin pidennys_NK = {s = d39 "pidennys"} ;
+lin pidentyma'_NK = {s = d10 "pidentymä"} ;
+lin pidentya'_VK = {s = c52A "pidentyä"} ;
+lin pidenta'a'_VK = {s = c54A "pidentää"} ;
+lin pideta'_VK = {s = c72A "pidetä"} ;
+lin pidike_NK = {s = d48A "pidike"} ;
+lin pidin_NK = {s = d33A "pidin"} ;
+--? lin pidot_NK = {s = d01A "pidot"} ;
+lin pida'ke_NK = {s = d48A "pidäke"} ;
+lin pida'kkeetto'ma'sti_AdvK = {s = c99 "pidäkkeettömästi"} ;
+lin pida'kkeeto'n_NK = {s = d34A "pidäkkeetön"} ;
+lin pida'tella'_VK = {s = c67A "pidätellä"} ;
+lin pida'tetty_NK = {s = d01A "pidätetty"} ;
+lin pida'tin_NK = {s = d33A "pidätin"} ;
+lin pida'ttynyt_NK = {s = d47 "pidättynyt"} ;
+lin pida'ttyvyys_NK = {s = d40 "pidättyvyys"} ;
+lin pida'ttyva'_AK = {s = d10 "pidättyvä"} ;
+lin pida'ttyva'inen_AK = {s = d38 "pidättyväinen"} ;
+--+ lin pida'ttyva'isesti_AdvK = {s = c99 "pidättyväisesti"} ;
+--+ lin pida'ttyva'sti_AdvK = {s = c99 "pidättyvästi"} ;
+lin pida'ttya'_VK = {s = c52A "pidättyä"} ;
+lin pida'tta'ytya'_VK = {s = c52A "pidättäytyä"} ;
+lin pida'tta'a'_VK = {s = c53A "pidättää"} ;
+lin pida'tys_NK = {s = d39 "pidätys"} ;
+lin pida'tytta'a'_VK = {s = c53A "pidätyttää"} ;
+lin piehtaroida_VK = {s = c62 "piehtaroida"} ;
+lin piehtarointi_NK = {s = d05A "piehtarointi"} ;
+lin piekana_NK = {s = d13 "piekana"} ;
+lin pieksu_NK = {s = d01 "pieksu"} ;
+lin pieksa'nta'_NK = {s = d09A "pieksäntä"} ;
+lin pieksa'a'_VK = {s = c54 "pieksää"} ;
+lin pieles_NK = {s = d39 "pieles"} ;
+lin pielestys_NK = {s = d39 "pielestys"} ;
+lin pielesta'a'_VK = {s = c53 "pielestää"} ;
+lin pieli_NK = {s = d26 "pieli"} ;
+lin pielikki_NK = {s = d05A "pielikki"} ;
+lin pielus_NK = {s = d39 "pielus"} ;
+lin piena_NK = {s = d09 "piena"} ;
+lin pieneksya'_VK = {s = c52 "pieneksyä"} ;
+lin pienennys_NK = {s = d39 "pienennys"} ;
+lin pienenno's_NK = {s = d39 "pienennös"} ;
+lin pienentya'_VK = {s = c52A "pienentyä"} ;
+lin pienenta'a'_VK = {s = c54A "pienentää"} ;
+lin pieneta'_VK = {s = c72 "pienetä"} ;
+lin pieni_NK = {s = d26 "pieni"} ;
+lin pienia'_VK = {s = c61 "pieniä"} ;
+lin piennar_NK = {s = d49A "piennar"} ;
+lin pienoinen_NK = {s = d38 "pienoinen"} ;
+lin pienoiskoko_NK = {s = d01A "pienoiskoko"} ;
+lin pienoismaalaus_NK = {s = d39 "pienoismaalaus"} ;
+lin pienoisralli_NK = {s = d05 "pienoisralli"} ;
+lin pienokainen_NK = {s = d38 "pienokainen"} ;
+lin pientare_NK = {s = d49 "pientare"} ;
+lin pienuus_NK = {s = d40 "pienuus"} ;
+lin pieraista_VK = {s = c66 "pieraista"} ;
+lin piereksia'_VK = {s = c61 "piereksiä"} ;
+lin piereskella'_VK = {s = c67 "piereskellä"} ;
+lin pieretta'a'_VK = {s = c53A "pierettää"} ;
+lin pierra'_VK = {s = c67 "pierrä"} ;
+lin pieru_NK = {s = d01 "pieru"} ;
+lin piesta'_VK = {s = c70 "piestä"} ;
+lin pieteetti_NK = {s = d05A "pieteetti"} ;
+lin pieteettinen_AK = {s = d38 "pieteettinen"} ;
+--+ lin pieteettisesti_AdvK = {s = c99 "pieteettisesti"} ;
+lin pieti_NK = {s = d05 "pieti"} ;
+lin pietismi_NK = {s = d05 "pietismi"} ;
+lin pietisti_NK = {s = d05 "pietisti"} ;
+lin pietistinen_NK = {s = d38 "pietistinen"} ;
+lin pieta'_VK = {s = c74A "pietä"} ;
+lin piffata_VK = {s = c73 "piffata"} ;
+lin pigmentoitua_VK = {s = c52A "pigmentoitua"} ;
+lin pigmentti_NK = {s = d05A "pigmentti"} ;
+lin pigmenttinen_NK = {s = d38 "pigmenttinen"} ;
+lin piha_NK = {s = d09 "piha"} ;
+lin pihahdella_VK = {s = c67A "pihahdella"} ;
+lin pihahdus_NK = {s = d39 "pihahdus"} ;
+lin pihahtaa_VK = {s = c53A "pihahtaa"} ;
+lin pihatto_NK = {s = d01A "pihatto"} ;
+lin pihaus_NK = {s = d39 "pihaus"} ;
+lin pihdata_VK = {s = c73A "pihdata"} ;
+lin pihdit_NK = {s = d05A "pihdit"} ;
+lin pihi_NK = {s = d05 "pihi"} ;
+lin pihina'_NK = {s = d12 "pihinä"} ;
+lin pihistella'_VK = {s = c67 "pihistellä"} ;
+lin pihista'_VK = {s = c66 "pihistä"} ;
+lin pihista'a'_VK = {s = c53 "pihistää"} ;
+lin pihia'_VK = {s = c61 "pihiä"} ;
+lin pihka_NK = {s = d09 "pihka"} ;
+lin pihkaantua_VK = {s = c52A "pihkaantua"} ;
+lin pihkainen_NK = {s = d38 "pihkainen"} ;
+lin pihkoittua_VK = {s = c52A "pihkoittua"} ;
+lin pihlaja_NK = {s = d10 "pihlaja"} ;
+lin pihta_NK = {s = d09A "pihta"} ;
+lin pihtaaja_NK = {s = d10 "pihtaaja"} ;
+lin pihtari_NK = {s = d06 "pihtari"} ;
+lin pihtima'inen_NK = {s = d38 "pihtimäinen"} ;
+lin pihtipolvisuus_NK = {s = d40 "pihtipolvisuus"} ;
+lin pihvi_NK = {s = d05 "pihvi"} ;
+lin pii_1_NK = {s = d18 "pii"} ;
+lin pii_2_NK = {s = d18 "pii"} ;
+lin pii_3_NK = {s = d18 "pii"} ;
+lin piidioksidi_NK = {s = d05 "piidioksidi"} ;
+lin piihin_AdvK = {s = c99 "piihin"} ;
+lin piika_NK = {s = d09A "piika"} ;
+lin piikata_VK = {s = c73A "piikata"} ;
+lin piikikkyys_NK = {s = d40 "piikikkyys"} ;
+--+ lin piikikka'a'sti_AdvK = {s = c99 "piikikkäästi"} ;
+lin piikika's_AK = {s = d41A "piikikäs"} ;
+lin piikitella'_VK = {s = c67A "piikitellä"} ;
+lin piikittely_NK = {s = d02 "piikittely"} ;
+lin piikitta'a'_VK = {s = c53A "piikittää"} ;
+lin piikitys_NK = {s = d39 "piikitys"} ;
+lin piikkari_NK = {s = d06 "piikkari"} ;
+lin piikkaus_NK = {s = d39 "piikkaus"} ;
+lin piikki_NK = {s = d05A "piikki"} ;
+lin piikkinen_NK = {s = d38 "piikkinen"} ;
+lin piikko_NK = {s = d01A "piikko"} ;
+lin piikoa_VK = {s = c52A "piikoa"} ;
+lin piileksija'_NK = {s = d12 "piileksijä"} ;
+lin piileksia'_VK = {s = c61 "piileksiä"} ;
+lin piileskelija'_NK = {s = d12 "piileskelijä"} ;
+lin piileskella'_VK = {s = c67 "piileskellä"} ;
+lin piilevyys_NK = {s = d40 "piilevyys"} ;
+lin piilla'_VK = {s = c67 "piillä"} ;
+lin piilo_NK = {s = d01 "piilo"} ;
+lin piilokas_NK = {s = d41A "piilokas"} ;
+lin piilokiveksisyys_NK = {s = d40 "piilokiveksisyys"} ;
+lin piilosilla_AdvK = {s = c99 "piilosilla"} ;
+lin piilotella_VK = {s = c67A "piilotella"} ;
+lin piilottaa_VK = {s = c53A "piilottaa"} ;
+lin piilottautua_VK = {s = c52A "piilottautua"} ;
+lin piiloutua_VK = {s = c52A "piiloutua"} ;
+lin piilovaikuttaminen_NK = {s = d38 "piilovaikuttaminen"} ;
+lin piilu_NK = {s = d01 "piilu"} ;
+lin piiluta_VK = {s = c75 "piiluta"} ;
+lin piimitta'a'_VK = {s = c53A "piimittää"} ;
+lin piimia'_VK = {s = c61 "piimiä"} ;
+lin piima'_NK = {s = d10 "piimä"} ;
+lin piima'inen_NK = {s = d38 "piimäinen"} ;
+lin piina_NK = {s = d09 "piina"} ;
+lin piinallinen_AK = {s = d38 "piinallinen"} ;
+--+ lin piinallisesti_AdvK = {s = c99 "piinallisesti"} ;
+lin piinallisuus_NK = {s = d40 "piinallisuus"} ;
+lin piinata_VK = {s = c73 "piinata"} ;
+lin piintymys_NK = {s = d39 "piintymys"} ;
+lin piintyma'_NK = {s = d10 "piintymä"} ;
+lin piintya'_VK = {s = c52A "piintyä"} ;
+lin piip_AdvK = {s = c99 "piip"} ;
+lin piipahdus_NK = {s = d39 "piipahdus"} ;
+lin piipahtaa_VK = {s = c53A "piipahtaa"} ;
+lin piipata_1_VK = {s = c73A "piipata"} ;
+lin piipata_2_VK = {s = c73A "piipata"} ;
+lin piiperrys_NK = {s = d39 "piiperrys"} ;
+lin piiperta'a'_VK = {s = c54A "piipertää"} ;
+lin piipitta'a'_VK = {s = c53A "piipittää"} ;
+lin piipitys_NK = {s = d39 "piipitys"} ;
+lin piipottaa_VK = {s = c53A "piipottaa"} ;
+lin piippaus_1_NK = {s = d39 "piippaus"} ;
+lin piippaus_2_NK = {s = d39 "piippaus"} ;
+lin piippo_NK = {s = d01A "piippo"} ;
+lin piippu_NK = {s = d01A "piippu"} ;
+lin piipullinen_NK = {s = d38 "piipullinen"} ;
+lin piiputtaa_VK = {s = c53A "piiputtaa"} ;
+lin piiranen_NK = {s = d38 "piiranen"} ;
+lin piiras_NK = {s = d41 "piiras"} ;
+lin piireitta'in_AdvK = {s = c99 "piireittäin"} ;
+lin piiri_NK = {s = d05 "piiri"} ;
+lin piiritta'ja'_NK = {s = d10 "piirittäjä"} ;
+lin piiritta'a'_VK = {s = c53A "piirittää"} ;
+lin piiritys_NK = {s = d39 "piiritys"} ;
+lin piironki_NK = {s = d05A "piironki"} ;
+lin piirre_NK = {s = d48A "piirre"} ;
+lin piirrella'_VK = {s = c67A "piirrellä"} ;
+lin piirrin_NK = {s = d33A "piirrin"} ;
+lin piirros_NK = {s = d39 "piirros"} ;
+lin piirra'tta'a'_VK = {s = c53A "piirrättää"} ;
+lin piirteinen_NK = {s = d38 "piirteinen"} ;
+lin piirtely_NK = {s = d02 "piirtely"} ;
+lin piirto_NK = {s = d01A "piirto"} ;
+lin piirturi_NK = {s = d06 "piirturi"} ;
+lin piirtya'_VK = {s = c52A "piirtyä"} ;
+lin piirta'ja'_NK = {s = d10 "piirtäjä"} ;
+lin piirta'a'_VK = {s = c54A "piirtää"} ;
+lin piiru_1_NK = {s = d01 "piiru"} ;
+lin piiru_2_NK = {s = d01 "piiru"} ;
+lin piirustaa_VK = {s = c53 "piirustaa"} ;
+lin piirustella_VK = {s = c67 "piirustella"} ;
+lin piirustuksellinen_NK = {s = d38 "piirustuksellinen"} ;
+lin piirustus_NK = {s = d39 "piirustus"} ;
+lin piisami_NK = {s = d06 "piisami"} ;
+lin piisata_VK = {s = c73 "piisata"} ;
+lin piisi_1_NK = {s = d05 "piisi"} ;
+lin piisi_2_NK = {s = d05 "piisi"} ;
+lin piiska_NK = {s = d09 "piiska"} ;
+lin piiskata_VK = {s = c73 "piiskata"} ;
+lin piiskaus_NK = {s = d39 "piiskaus"} ;
+lin piisku_NK = {s = d01 "piisku"} ;
+lin piiskuri_NK = {s = d06 "piiskuri"} ;
+lin piiskuttaa_VK = {s = c53A "piiskuttaa"} ;
+lin piisoni_NK = {s = d06 "piisoni"} ;
+lin piispa_NK = {s = d09 "piispa"} ;
+lin piispatar_NK = {s = d32A "piispatar"} ;
+lin piispuus_NK = {s = d40 "piispuus"} ;
+lin piissa'_AdvK = {s = c99 "piissä"} ;
+lin piitata_VK = {s = c73A "piitata"} ;
+lin piittaamaton_NK = {s = d34A "piittaamaton"} ;
+lin piittaamattomasti_AdvK = {s = c99 "piittaamattomasti"} ;
+lin piittaamattomuus_NK = {s = d40 "piittaamattomuus"} ;
+lin pikaa_AdvK = {s = c99 "pikaa"} ;
+lin pikainen_AK = {s = d38 "pikainen"} ;
+--+ lin pikaisesti_AdvK = {s = c99 "pikaisesti"} ;
+lin pikaistua_VK = {s = c52 "pikaistua"} ;
+lin pikaistuksissa_AdvK = {s = c99 "pikaistuksissa"} ;
+lin pikaistuksissaan_AdvK = {s = c99 "pikaistuksissaan"} ;
+lin pikantisti_AdvK = {s = c99 "pikantisti"} ;
+lin pikantti_NK = {s = d05A "pikantti"} ;
+lin pikanttius_NK = {s = d40 "pikanttius"} ;
+lin pikapuoliin_AdvK = {s = c99 "pikapuoliin"} ;
+lin pikapuolin_AdvK = {s = c99 "pikapuolin"} ;
+lin pikari_NK = {s = d06 "pikari"} ;
+lin pikarillinen_NK = {s = d38 "pikarillinen"} ;
+lin pikee_NK = {s = d20 "pikee"} ;
+lin pikeentya'_VK = {s = c52A "pikeentyä"} ;
+lin pikemmin_AdvK = {s = c99 "pikemmin"} ;
+lin pikeys_NK = {s = d39 "pikeys"} ;
+lin pikeytya'_VK = {s = c52A "pikeytyä"} ;
+lin piki_NK = {s = d07A "piki"} ;
+lin pikiintya'_VK = {s = c52A "pikiintyä"} ;
+lin pikimmilta'_AdvK = {s = c99 "pikimmiltä"} ;
+lin pikimmilta'a'n_AdvK = {s = c99 "pikimmiltään"} ;
+lin pikimmin_AdvK = {s = c99 "pikimmin"} ;
+lin pikimmiten_AdvK = {s = c99 "pikimmiten"} ;
+lin pikimma'lta'_AdvK = {s = c99 "pikimmältä"} ;
+lin pikimma'lta'a'n_AdvK = {s = c99 "pikimmältään"} ;
+lin pikinen_NK = {s = d38 "pikinen"} ;
+lin pikkainen_NK = {s = d38 "pikkainen"} ;
+lin pikkanen_NK = {s = d38 "pikkanen"} ;
+lin pikkarainen_NK = {s = d38 "pikkarainen"} ;
+lin pikkelssi_NK = {s = d05 "pikkelssi"} ;
+lin pikkiriikkinen_NK = {s = d38 "pikkiriikkinen"} ;
+lin pikkolo_NK = {s = d02 "pikkolo"} ;
+lin pikku_AdvK = {s = c99 "pikku"} ;
+lin pikkuinen_NK = {s = d38 "pikkuinen"} ;
+lin pikkuisen_AdvK = {s = c99 "pikkuisen"} ;
+lin pikkulilli_NK = {s = d05 "pikkulilli"} ;
+--+ lin pikkumaisesti_AdvK = {s = c99 "pikkumaisesti"} ;
+lin pikkumaisuus_NK = {s = d40 "pikkumaisuus"} ;
+lin pikkupurtava_NK = {s = d10 "pikkupurtava"} ;
+lin pikkuriikkinen_NK = {s = d38 "pikkuriikkinen"} ;
+lin pikkurilli_NK = {s = d05 "pikkurilli"} ;
+lin pikkuruikkuinen_NK = {s = d38 "pikkuruikkuinen"} ;
+lin pikkuruinen_NK = {s = d38 "pikkuruinen"} ;
+lin pikkutakkisillaan_AdvK = {s = c99 "pikkutakkisillaan"} ;
+--+ lin pikkuvanhasti_AdvK = {s = c99 "pikkuvanhasti"} ;
+lin piknikki_NK = {s = d05A "piknikki"} ;
+lin pila_NK = {s = d09 "pila"} ;
+lin pilaaja_NK = {s = d10 "pilaaja"} ;
+lin pilaantua_VK = {s = c52A "pilaantua"} ;
+lin pilahvi_NK = {s = d05 "pilahvi"} ;
+lin pilailla_VK = {s = c67 "pilailla"} ;
+lin pilailu_NK = {s = d02 "pilailu"} ;
+lin pilalla_AdvK = {s = c99 "pilalla"} ;
+lin pilalle_AdvK = {s = c99 "pilalle"} ;
+lin pilallinen_NK = {s = d38 "pilallinen"} ;
+lin pilari_NK = {s = d06 "pilari"} ;
+lin pilaristo_NK = {s = d01 "pilaristo"} ;
+lin pilasteri_NK = {s = d06 "pilasteri"} ;
+lin pilata_VK = {s = c73 "pilata"} ;
+lin piletti_NK = {s = d05A "piletti"} ;
+lin pilipali_NK = {s = d05 "pilipali"} ;
+lin pilkahdella_VK = {s = c67A "pilkahdella"} ;
+lin pilkahdus_NK = {s = d39 "pilkahdus"} ;
+lin pilkahtaa_VK = {s = c53A "pilkahtaa"} ;
+lin pilkallaan_AdvK = {s = c99 "pilkallaan"} ;
+lin pilkallinen_AK = {s = d38 "pilkallinen"} ;
+--+ lin pilkallisesti_AdvK = {s = c99 "pilkallisesti"} ;
+lin pilkallisuus_NK = {s = d40 "pilkallisuus"} ;
+lin pilkata_VK = {s = c73A "pilkata"} ;
+lin pilke_1_NK = {s = d48A "pilke"} ;
+lin pilke_2_NK = {s = d48A "pilke"} ;
+lin pilkinta'_NK = {s = d09A "pilkintä"} ;
+lin pilkistella'_VK = {s = c67 "pilkistellä"} ;
+lin pilkistys_NK = {s = d39 "pilkistys"} ;
+lin pilkista'a'_VK = {s = c53 "pilkistää"} ;
+lin pilkka_1_NK = {s = d09A "pilkka"} ;
+lin pilkka_2_NK = {s = d09A "pilkka"} ;
+lin pilkkaaja_NK = {s = d10 "pilkkaaja"} ;
+lin pilkki_NK = {s = d05A "pilkki"} ;
+lin pilkkija'_NK = {s = d12 "pilkkijä"} ;
+lin pilkkia'_VK = {s = c61A "pilkkiä"} ;
+lin pilkkoa_VK = {s = c52A "pilkkoa"} ;
+lin pilkkoisen_AdvK = {s = c99 "pilkkoisen"} ;
+lin pilkkoja_NK = {s = d10 "pilkkoja"} ;
+lin pilkkoutua_VK = {s = c52A "pilkkoutua"} ;
+lin pilkku_NK = {s = d01A "pilkku"} ;
+lin pilkkuinen_NK = {s = d38 "pilkkuinen"} ;
+lin pilkkumi_NK = {s = d06 "pilkkumi"} ;
+lin pilkoittaa_VK = {s = c53A "pilkoittaa"} ;
+lin pilkoitus_NK = {s = d39 "pilkoitus"} ;
+lin pilkottaa_VK = {s = c53A "pilkottaa"} ;
+lin pilkukas_NK = {s = d41A "pilkukas"} ;
+lin pilkullinen_NK = {s = d38 "pilkullinen"} ;
+lin pilkuttaa_VK = {s = c53A "pilkuttaa"} ;
+lin pilkutus_NK = {s = d39 "pilkutus"} ;
+lin pillahtaa_VK = {s = c53A "pillahtaa"} ;
+lin pillastua_VK = {s = c52 "pillastua"} ;
+lin pilleri_NK = {s = d06 "pilleri"} ;
+lin pillerinpyo'ritta'ja'_NK = {s = d10 "pillerinpyörittäjä"} ;
+lin pilleristi_NK = {s = d05 "pilleristi"} ;
+lin pilli_NK = {s = d05 "pilli"} ;
+lin pillike_NK = {s = d48A "pillike"} ;
+lin pillipiipari_NK = {s = d06 "pillipiipari"} ;
+lin pillisto'_NK = {s = d01 "pillistö"} ;
+lin pillitta'ja'_NK = {s = d10 "pillittäjä"} ;
+lin pillitta'a'_VK = {s = c53A "pillittää"} ;
+lin pillu_NK = {s = d01 "pillu"} ;
+lin piloilla_AdvK = {s = c99 "piloilla"} ;
+lin piloillaan_AdvK = {s = c99 "piloillaan"} ;
+lin piloille_AdvK = {s = c99 "piloille"} ;
+lin pilotti_NK = {s = d05A "pilotti"} ;
+lin pilsneri_NK = {s = d06 "pilsneri"} ;
+lin pilssi_NK = {s = d05 "pilssi"} ;
+lin piltti_NK = {s = d05A "piltti"} ;
+lin pilttuinen_NK = {s = d38 "pilttuinen"} ;
+lin pilttuu_NK = {s = d17 "pilttuu"} ;
+lin pilveilla'_VK = {s = c67 "pilveillä"} ;
+lin pilveta'_VK = {s = c72 "pilvetä"} ;
+lin pilveto'n_NK = {s = d34A "pilvetön"} ;
+lin pilvi_NK = {s = d07 "pilvi"} ;
+lin pilvinen_NK = {s = d38 "pilvinen"} ;
+lin pilvistya'_VK = {s = c52 "pilvistyä"} ;
+lin pilvisyys_NK = {s = d40 "pilvisyys"} ;
+lin pimahtaa_VK = {s = c53A "pimahtaa"} ;
+lin pimennys_NK = {s = d39 "pimennys"} ;
+lin pimento_NK = {s = d01A "pimento"} ;
+lin pimentya'_VK = {s = c52A "pimentyä"} ;
+lin pimenta'a'_VK = {s = c54A "pimentää"} ;
+lin pimeta'_VK = {s = c72 "pimetä"} ;
+lin pimeys_NK = {s = d40 "pimeys"} ;
+lin pimea'_AK = {s = d15 "pimeä"} ;
+--+ lin pimea'sti_AdvK = {s = c99 "pimeästi"} ;
+lin pimitta'a'_VK = {s = c53A "pimittää"} ;
+lin pimitys_NK = {s = d39 "pimitys"} ;
+lin pimio'_NK = {s = d03 "pimiö"} ;
+lin pimppi_NK = {s = d05A "pimppi"} ;
+lin pimputtaa_VK = {s = c53A "pimputtaa"} ;
+lin pimputus_NK = {s = d39 "pimputus"} ;
+lin pimu_NK = {s = d01 "pimu"} ;
+lin pinaatti_NK = {s = d05A "pinaatti"} ;
+lin pineeni_NK = {s = d05 "pineeni"} ;
+lin pingis_NK = {s = d39 "pingis"} ;
+lin pingotin_NK = {s = d33A "pingotin"} ;
+lin pingottaa_VK = {s = c53A "pingottaa"} ;
+lin pingottaja_NK = {s = d10 "pingottaja"} ;
+lin pingottua_VK = {s = c52A "pingottua"} ;
+lin pingotus_NK = {s = d39 "pingotus"} ;
+lin pingpong_NK = {s = d05 "pingpong"} ;
+lin pingviini_NK = {s = d06 "pingviini"} ;
+lin pinja_NK = {s = d09 "pinja"} ;
+lin pinkaista_VK = {s = c66 "pinkaista"} ;
+lin pinkka_NK = {s = d09A "pinkka"} ;
+lin pinkki_NK = {s = d05A "pinkki"} ;
+lin pinko_NK = {s = d01A "pinko"} ;
+lin pinkoa_VK = {s = c52A "pinkoa"} ;
+lin pinkoittain_AdvK = {s = c99 "pinkoittain"} ;
+lin pinna_NK = {s = d09 "pinna"} ;
+lin pinnaaja_NK = {s = d10 "pinnaaja"} ;
+lin pinnakkain_AdvK = {s = c99 "pinnakkain"} ;
+lin pinnakkainen_NK = {s = d38 "pinnakkainen"} ;
+lin pinnallinen_AK = {s = d38 "pinnallinen"} ;
+--+ lin pinnallisesti_AdvK = {s = c99 "pinnallisesti"} ;
+lin pinnallistaa_VK = {s = c53 "pinnallistaa"} ;
+lin pinnallistua_VK = {s = c52 "pinnallistua"} ;
+lin pinnallisuus_NK = {s = d40 "pinnallisuus"} ;
+lin pinnari_NK = {s = d06 "pinnari"} ;
+lin pinnata_VK = {s = c73 "pinnata"} ;
+lin pinnaus_NK = {s = d39 "pinnaus"} ;
+lin pinne_NK = {s = d48A "pinne"} ;
+lin pinnemmaksi_AdvK = {s = c99 "pinnemmaksi"} ;
+lin pinnemmalla_AdvK = {s = c99 "pinnemmalla"} ;
+lin pinnemmalle_AdvK = {s = c99 "pinnemmalle"} ;
+lin pinnemmalta_AdvK = {s = c99 "pinnemmalta"} ;
+lin pinnemmassa_AdvK = {s = c99 "pinnemmassa"} ;
+lin pinnemmasta_AdvK = {s = c99 "pinnemmasta"} ;
+lin pinnempaa_AdvK = {s = c99 "pinnempaa"} ;
+lin pinnempaan_AdvK = {s = c99 "pinnempaan"} ;
+lin pinnempana_AdvK = {s = c99 "pinnempana"} ;
+lin pinni_NK = {s = d05 "pinni"} ;
+lin pinnistella'_VK = {s = c67 "pinnistellä"} ;
+lin pinnistys_NK = {s = d39 "pinnistys"} ;
+lin pinnistya'_VK = {s = c52 "pinnistyä"} ;
+lin pinnista'a'_VK = {s = c53 "pinnistää"} ;
+lin pinnia'_VK = {s = c61 "pinniä"} ;
+lin pinnoite_NK = {s = d48A "pinnoite"} ;
+lin pinnoittaa_VK = {s = c53A "pinnoittaa"} ;
+lin pinnoitteinen_NK = {s = d38 "pinnoitteinen"} ;
+lin pinnoitus_NK = {s = d39 "pinnoitus"} ;
+lin pino_NK = {s = d01 "pino"} ;
+lin pinota_VK = {s = c74 "pinota"} ;
+lin pinseri_NK = {s = d06 "pinseri"} ;
+lin pinsetit_NK = {s = d05A "pinsetit"} ;
+lin pinssi_NK = {s = d05 "pinssi"} ;
+lin pinta_NK = {s = d09A "pinta"} ;
+lin pintahaava_NK = {s = d09 "pintahaava"} ;
+lin pintainen_NK = {s = d38 "pintainen"} ;
+lin pintaisuus_NK = {s = d40 "pintaisuus"} ;
+--+ lin pintapuolisesti_AdvK = {s = c99 "pintapuolisesti"} ;
+lin pintapuolisuus_NK = {s = d40 "pintapuolisuus"} ;
+lin pintautua_VK = {s = c52A "pintautua"} ;
+lin pintava'reily_NK = {s = d02 "pintaväreily"} ;
+lin pinteeseen_AdvK = {s = c99 "pinteeseen"} ;
+lin pinteessa'_AdvK = {s = c99 "pinteessä"} ;
+lin pinteesta'_AdvK = {s = c99 "pinteestä"} ;
+lin pinttyma'_NK = {s = d10 "pinttymä"} ;
+lin pinttya'_VK = {s = c52A "pinttyä"} ;
+lin pinyin_NK = {s = d05 "pinyin"} ;
+lin pioneeri_NK = {s = d05 "pioneeri"} ;
+lin pioni_1_NK = {s = d05 "pioni"} ;
+lin pioni_2_NK = {s = d05 "pioni"} ;
+lin pipana_NK = {s = d11 "pipana"} ;
+lin pipari_NK = {s = d06 "pipari"} ;
+lin piparjuuri_NK = {s = d26 "piparjuuri"} ;
+lin piperrys_NK = {s = d39 "piperrys"} ;
+lin piperta'a'_VK = {s = c54A "pipertää"} ;
+lin pipetoida_VK = {s = c62 "pipetoida"} ;
+lin pipetti_NK = {s = d05A "pipetti"} ;
+lin pipi_NK = {s = d05 "pipi"} ;
+lin piplia_NK = {s = d12 "piplia"} ;
+lin pipo_NK = {s = d01 "pipo"} ;
+--? lin pippalot_NK = {s = d02 "pippalot"} ;
+lin pippeli_NK = {s = d06 "pippeli"} ;
+lin pippuri_NK = {s = d06 "pippuri"} ;
+lin pippurinen_NK = {s = d38 "pippurinen"} ;
+lin pippuroida_VK = {s = c62 "pippuroida"} ;
+lin piraatti_NK = {s = d05A "piraatti"} ;
+lin pirahdella_VK = {s = c67A "pirahdella"} ;
+lin pirahdus_NK = {s = d39 "pirahdus"} ;
+lin pirahtaa_VK = {s = c53A "pirahtaa"} ;
+lin piraija_NK = {s = d12 "piraija"} ;
+lin piratismi_NK = {s = d05 "piratismi"} ;
+lin piraus_NK = {s = d39 "piraus"} ;
+lin pirauttaa_VK = {s = c53A "pirauttaa"} ;
+lin pirina'_NK = {s = d12 "pirinä"} ;
+lin piripinnassa_AdvK = {s = c99 "piripinnassa"} ;
+lin piripintaan_AdvK = {s = c99 "piripintaan"} ;
+lin piripintanaan_AdvK = {s = c99 "piripintanaan"} ;
+lin piriste_NK = {s = d48 "piriste"} ;
+lin piristys_NK = {s = d39 "piristys"} ;
+lin piristya'_VK = {s = c52 "piristyä"} ;
+lin pirista'_VK = {s = c66 "piristä"} ;
+lin pirista'ytya'_VK = {s = c52A "piristäytyä"} ;
+lin pirista'a'_VK = {s = c53 "piristää"} ;
+lin pirkkalainen_NK = {s = d38 "pirkkalainen"} ;
+lin pirpana_NK = {s = d12 "pirpana"} ;
+lin pirskahdella_VK = {s = c67A "pirskahdella"} ;
+lin pirskahdus_NK = {s = d39 "pirskahdus"} ;
+lin pirskahtaa_VK = {s = c53A "pirskahtaa"} ;
+lin pirskatti_NK = {s = d05A "pirskatti"} ;
+lin pirskauttaa_VK = {s = c53A "pirskauttaa"} ;
+lin pirske_NK = {s = d48 "pirske"} ;
+lin pirskottaa_VK = {s = c53A "pirskottaa"} ;
+lin pirskotus_NK = {s = d39 "pirskotus"} ;
+lin pirskua_VK = {s = c52 "pirskua"} ;
+lin pirssi_NK = {s = d05 "pirssi"} ;
+lin pirsta_NK = {s = d09 "pirsta"} ;
+lin pirstale_NK = {s = d48 "pirstale"} ;
+lin pirstaloitua_VK = {s = c52A "pirstaloitua"} ;
+lin pirstoa_VK = {s = c52 "pirstoa"} ;
+lin pirstoutua_VK = {s = c52A "pirstoutua"} ;
+lin pirta_NK = {s = d09A "pirta"} ;
+lin pirtelo'_NK = {s = d02 "pirtelö"} ;
+lin pirteys_NK = {s = d40 "pirteys"} ;
+lin pirtea'_NK = {s = d15 "pirteä"} ;
+lin pirtti_NK = {s = d05A "pirtti"} ;
+lin pirtu_NK = {s = d01 "pirtu"} ;
+lin piru_AK = {s = d01 "piru"} ;
+lin piruetti_NK = {s = d05A "piruetti"} ;
+lin piruilla_VK = {s = c67 "piruilla"} ;
+lin piruilu_NK = {s = d02 "piruilu"} ;
+lin pirullinen_AK = {s = d38 "pirullinen"} ;
+--+ lin pirullisesti_AdvK = {s = c99 "pirullisesti"} ;
+lin pirullisuus_NK = {s = d40 "pirullisuus"} ;
+lin pirunmoinen_NK = {s = d38 "pirunmoinen"} ;
+--+ lin pirusti_AdvK = {s = c99 "pirusti"} ;
+lin piruuksissaan_AdvK = {s = c99 "piruuksissaan"} ;
+lin piruuntua_VK = {s = c52A "piruuntua"} ;
+lin piruuttaan_AdvK = {s = c99 "piruuttaan"} ;
+lin pisama_NK = {s = d10 "pisama"} ;
+lin pisamainen_NK = {s = d38 "pisamainen"} ;
+lin pisara_NK = {s = d12 "pisara"} ;
+lin pisaroida_VK = {s = c62 "pisaroida"} ;
+lin pisarointi_NK = {s = d05A "pisarointi"} ;
+lin pisi_NK = {s = d05 "pisi"} ;
+lin pisia'_VK = {s = c61 "pisiä"} ;
+lin piski_NK = {s = d05 "piski"} ;
+lin piskuinen_NK = {s = d38 "piskuinen"} ;
+lin pisoaari_NK = {s = d05 "pisoaari"} ;
+lin pissa_NK = {s = d09 "pissa"} ;
+lin pissata_VK = {s = c73 "pissata"} ;
+lin pissattaa_VK = {s = c53A "pissattaa"} ;
+lin pissi_NK = {s = d05 "pissi"} ;
+lin pissitta'a'_VK = {s = c53A "pissittää"} ;
+lin pissia'_VK = {s = c61 "pissiä"} ;
+lin pistaasi_NK = {s = d05 "pistaasi"} ;
+lin piste_NK = {s = d48 "piste"} ;
+lin pisteellinen_NK = {s = d38 "pisteellinen"} ;
+lin pisteitta'a'_VK = {s = c53A "pisteittää"} ;
+lin pisteitys_NK = {s = d39 "pisteitys"} ;
+lin pistelia'isyys_NK = {s = d40 "pisteliäisyys"} ;
+lin pistelia's_AK = {s = d41 "pisteliäs"} ;
+--+ lin pistelia'a'sti_AdvK = {s = c99 "pisteliäästi"} ;
+lin pistella'_VK = {s = c67 "pistellä"} ;
+lin pistely_NK = {s = d02 "pistely"} ;
+lin pistema'inen_NK = {s = d38 "pistemäinen"} ;
+lin pisteytta'a'_VK = {s = c53A "pisteyttää"} ;
+lin pistin_NK = {s = d33 "pistin"} ;
+lin pistia'inen_NK = {s = d38 "pistiäinen"} ;
+lin pisto_NK = {s = d01 "pisto"} ;
+lin pistohaava_NK = {s = d09 "pistohaava"} ;
+lin pistokas_NK = {s = d41A "pistokas"} ;
+lin pistoke_NK = {s = d48A "pistoke"} ;
+lin pistooli_NK = {s = d06 "pistooli"} ;
+lin pistos_NK = {s = d39 "pistos"} ;
+lin pistouvata_VK = {s = c73 "pistouvata"} ;
+lin pista'ma'to'n_NK = {s = d34A "pistämätön"} ;
+lin pista'va'_NK = {s = d10 "pistävä"} ;
+lin pista'ytya'_VK = {s = c52A "pistäytyä"} ;
+lin pista'a'_VK = {s = c53 "pistää"} ;
+lin pisu_NK = {s = d01 "pisu"} ;
+lin pitaali_NK = {s = d06 "pitaali"} ;
+lin pitaalinen_NK = {s = d38 "pitaalinen"} ;
+lin pitali_NK = {s = d06 "pitali"} ;
+lin pitalinen_NK = {s = d38 "pitalinen"} ;
+lin pitelema'to'n_NK = {s = d34A "pitelemätön"} ;
+lin pitely_NK = {s = d02 "pitely"} ;
+lin pitennys_NK = {s = d39 "pitennys"} ;
+lin pitentyma'_NK = {s = d10 "pitentymä"} ;
+lin pitentya'_VK = {s = c52A "pitentyä"} ;
+lin pitenta'a'_VK = {s = c54A "pitentää"} ;
+--? lin pitkikset_NK = {s = d39 "pitkikset"} ;
+lin pitkin_AdvK = {s = c99 "pitkin"} ;
+lin pitkistya'_VK = {s = c52 "pitkistyä"} ;
+lin pitkittya'_VK = {s = c52A "pitkittyä"} ;
+lin pitkitta'in_AdvK = {s = c99 "pitkittäin"} ;
+lin pitkitta'inen_NK = {s = d38 "pitkittäinen"} ;
+lin pitkitta'israita_NK = {s = d09A "pitkittäisraita"} ;
+lin pitkitta'a'_VK = {s = c53A "pitkittää"} ;
+lin pitkitys_NK = {s = d39 "pitkitys"} ;
+lin pitko_NK = {s = d01 "pitko"} ;
+lin pitkulainen_NK = {s = d38 "pitkulainen"} ;
+lin pitka'_AK = {s = d10 "pitkä"} ;
+lin pitka'inen_NK = {s = d38 "pitkäinen"} ;
+--+ lin pitka'ja'nnitteisesti_AdvK = {s = c99 "pitkäjännitteisesti"} ;
+--+ lin pitka'ja'nteisesti_AdvK = {s = c99 "pitkäjänteisesti"} ;
+lin pitka'kseen_AdvK = {s = c99 "pitkäkseen"} ;
+lin pitka'lettinen_NK = {s = d38 "pitkälettinen"} ;
+lin pitka'lle_AdvK = {s = c99 "pitkälle"} ;
+lin pitka'lleen_AdvK = {s = c99 "pitkälleen"} ;
+lin pitka'llinen_NK = {s = d38 "pitkällinen"} ;
+lin pitka'lla'_AdvK = {s = c99 "pitkällä"} ;
+lin pitka'lla'a'n_AdvK = {s = c99 "pitkällään"} ;
+lin pitka'lti_AdvK = {s = c99 "pitkälti"} ;
+--+ lin pitka'mielisesti_AdvK = {s = c99 "pitkämielisesti"} ;
+lin pitka'na'a'n_AdvK = {s = c99 "pitkänään"} ;
+--+ lin pitka'piima'isesti_AdvK = {s = c99 "pitkäpiimäisesti"} ;
+lin pitka'ripainen_NK = {s = d38 "pitkäripainen"} ;
+--+ lin pitka'sti_AdvK = {s = c99 "pitkästi"} ;
+lin pitka'stytta'va'_AK = {s = d10 "pitkästyttävä"} ;
+--+ lin pitka'stytta'va'sti_AdvK = {s = c99 "pitkästyttävästi"} ;
+lin pitka'stytta'a'_VK = {s = c53A "pitkästyttää"} ;
+lin pitka'stya'_VK = {s = c52 "pitkästyä"} ;
+lin pitka'tukkaisuus_NK = {s = d40 "pitkätukkaisuus"} ;
+lin pitka'veteinen_AK = {s = d38 "pitkäveteinen"} ;
+--+ lin pitka'veteisesti_AdvK = {s = c99 "pitkäveteisesti"} ;
+lin pitka'veteisyys_NK = {s = d40 "pitkäveteisyys"} ;
+lin pitka'a'n_AdvK = {s = c99 "pitkään"} ;
+lin pito_NK = {s = d01A "pito"} ;
+lin pitoinen_NK = {s = d38 "pitoinen"} ;
+lin pitoisuus_NK = {s = d40 "pitoisuus"} ;
+lin pitsa_NK = {s = d09 "pitsa"} ;
+lin pitseria_NK = {s = d12 "pitseria"} ;
+lin pitsi_NK = {s = d05 "pitsi"} ;
+lin pittoreski_NK = {s = d05 "pittoreski"} ;
+lin pituinen_NK = {s = d38 "pituinen"} ;
+lin pituus_NK = {s = d40 "pituus"} ;
+lin pita'en_AdvK = {s = c99 "pitäen"} ;
+lin pita'ja'_NK = {s = d10 "pitäjä"} ;
+lin pita'ja'la'inen_NK = {s = d38 "pitäjäläinen"} ;
+lin pita'mys_NK = {s = d39 "pitämys"} ;
+lin pita'ma'_NK = {s = d10 "pitämä"} ;
+lin pita'ma'to'n_NK = {s = d34A "pitämätön"} ;
+lin pita'vyys_NK = {s = d40 "pitävyys"} ;
+lin pita'va'_NK = {s = d10 "pitävä"} ;
+lin pita'ytya'_VK = {s = c52A "pitäytyä"} ;
+lin pita'a'_VK = {s = c53A "pitää"} ;
+lin piuha_NK = {s = d09 "piuha"} ;
+lin piukasti_AdvK = {s = c99 "piukasti"} ;
+lin piukea_NK = {s = d15 "piukea"} ;
+lin piukka_NK = {s = d09A "piukka"} ;
+lin piukkuus_NK = {s = d40 "piukkuus"} ;
+lin piupaut_AdvK = {s = c99 "piupaut"} ;
+lin pivo_NK = {s = d01 "pivo"} ;
+lin pizza_NK = {s = d09 "pizza"} ;
+lin pizzeria_NK = {s = d12 "pizzeria"} ;
+lin pizzicato_NK = {s = d01 "pizzicato"} ;
+lin plaanata_VK = {s = c73 "plaanata"} ;
+lin plaani_NK = {s = d05 "plaani"} ;
+lin plagiaatti_NK = {s = d05A "plagiaatti"} ;
+lin plagioida_VK = {s = c62 "plagioida"} ;
+lin plagioija_NK = {s = d10 "plagioija"} ;
+lin plagiointi_NK = {s = d05A "plagiointi"} ;
+lin plakaatti_NK = {s = d05A "plakaatti"} ;
+lin plaketti_NK = {s = d05A "plaketti"} ;
+lin plakkari_NK = {s = d06 "plakkari"} ;
+lin plakki_NK = {s = d05A "plakki"} ;
+lin planeetta_NK = {s = d09A "planeetta"} ;
+lin planetaarinen_NK = {s = d38 "planetaarinen"} ;
+lin planetaario_NK = {s = d03 "planetaario"} ;
+lin planetoidi_NK = {s = d05 "planetoidi"} ;
+lin plankata_VK = {s = c73A "plankata"} ;
+lin plankkaus_NK = {s = d39 "plankkaus"} ;
+lin plankki_NK = {s = d05A "plankki"} ;
+lin plankton_NK = {s = d05 "plankton"} ;
+lin planssi_NK = {s = d05 "planssi"} ;
+lin plantaasi_NK = {s = d06 "plantaasi"} ;
+lin planttu_NK = {s = d01A "planttu"} ;
+lin plarata_VK = {s = c73 "plarata"} ;
+lin plari_NK = {s = d05 "plari"} ;
+lin plasebo_NK = {s = d02 "plasebo"} ;
+lin plaseerata_VK = {s = c73 "plaseerata"} ;
+lin plaseeraus_NK = {s = d39 "plaseeraus"} ;
+lin plasma_NK = {s = d09 "plasma"} ;
+lin plasmidi_NK = {s = d05 "plasmidi"} ;
+lin plasmosyytti_NK = {s = d05A "plasmosyytti"} ;
+lin plastidi_NK = {s = d05 "plastidi"} ;
+lin plastiikka_NK = {s = d14A "plastiikka"} ;
+lin plastinen_AK = {s = d38 "plastinen"} ;
+--+ lin plastisesti_AdvK = {s = c99 "plastisesti"} ;
+lin plastisuus_NK = {s = d40 "plastisuus"} ;
+lin plataani_NK = {s = d06 "plataani"} ;
+lin platina_NK = {s = d12 "platina"} ;
+lin platinoida_VK = {s = c62 "platinoida"} ;
+lin platinointi_NK = {s = d05A "platinointi"} ;
+lin platonilainen_NK = {s = d38 "platonilainen"} ;
+lin platonilaisuus_NK = {s = d40 "platonilaisuus"} ;
+lin platoninen_NK = {s = d38 "platoninen"} ;
+lin platonismi_NK = {s = d05 "platonismi"} ;
+lin platy_NK = {s = d01 "platy"} ;
+lin playback_NK = {s = d05 "playback"} ;
+lin playboy_NK = {s = d21 "playboy"} ;
+lin playoff_NK = {s = d05 "playoff"} ;
+lin plebeiji_NK = {s = d05 "plebeiji"} ;
+lin pleenumi_NK = {s = d06 "pleenumi"} ;
+lin plektra_NK = {s = d09 "plektra"} ;
+lin pleonasmi_NK = {s = d05 "pleonasmi"} ;
+lin pleonastinen_NK = {s = d38 "pleonastinen"} ;
+lin pliisu_NK = {s = d01 "pliisu"} ;
+lin plikka_NK = {s = d09A "plikka"} ;
+lin pliseerata_VK = {s = c73 "pliseerata"} ;
+lin pliseeraus_NK = {s = d39 "pliseeraus"} ;
+lin plombi_NK = {s = d05 "plombi"} ;
+lin plombittaa_VK = {s = c53A "plombittaa"} ;
+lin plootu_NK = {s = d01 "plootu"} ;
+lin plumpsahdus_NK = {s = d39 "plumpsahdus"} ;
+lin plumpsahtaa_VK = {s = c53A "plumpsahtaa"} ;
+lin pluraali_NK = {s = d05 "pluraali"} ;
+lin pluralismi_NK = {s = d05 "pluralismi"} ;
+lin pluralisti_NK = {s = d05 "pluralisti"} ;
+lin pluralistinen_NK = {s = d38 "pluralistinen"} ;
+lin plus_AdvK = {s = c99 "plus"} ;
+lin pluskvamperfekti_NK = {s = d05 "pluskvamperfekti"} ;
+lin plussa_NK = {s = d10 "plussa"} ;
+lin plussata_VK = {s = c73 "plussata"} ;
+lin plutonium_NK = {s = d05 "plutonium"} ;
+lin plutoona_NK = {s = d10 "plutoona"} ;
+lin plyymi_NK = {s = d05 "plyymi"} ;
+lin plyysi_NK = {s = d05 "plyysi"} ;
+lin pla'kki_NK = {s = d05A "pläkki"} ;
+lin pla'si_NK = {s = d05 "pläsi"} ;
+lin plo'rina'_NK = {s = d12 "plörinä"} ;
+lin plo'ro'_NK = {s = d01 "plörö"} ;
+lin pneumaattinen_AK = {s = d38 "pneumaattinen"} ;
+--+ lin pneumaattisesti_AdvK = {s = c99 "pneumaattisesti"} ;
+lin pneumatiikka_NK = {s = d09A "pneumatiikka"} ;
+lin pneumonia_NK = {s = d12 "pneumonia"} ;
+lin podsoli_NK = {s = d05 "podsoli"} ;
+lin poeettinen_NK = {s = d38 "poeettinen"} ;
+lin poetiikka_NK = {s = d09A "poetiikka"} ;
+lin pogromi_NK = {s = d06 "pogromi"} ;
+lin pohatta_NK = {s = d14A "pohatta"} ;
+lin pohdin_NK = {s = d33A "pohdin"} ;
+lin pohdinta_NK = {s = d09A "pohdinta"} ;
+lin pohdiskella_VK = {s = c67 "pohdiskella"} ;
+lin pohdiskelu_NK = {s = d02 "pohdiskelu"} ;
+lin pohja_NK = {s = d10 "pohja"} ;
+lin pohja_aika_NK = {s = d09A "pohja-aika"} ;
+lin pohjainen_AK = {s = d38 "pohjainen"} ;
+--+ lin pohjaisesti_AdvK = {s = c99 "pohjaisesti"} ;
+lin pohjaisuus_NK = {s = d40 "pohjaisuus"} ;
+lin pohjalaisittain_AdvK = {s = c99 "pohjalaisittain"} ;
+lin pohjallinen_NK = {s = d38 "pohjallinen"} ;
+lin pohjamaalata_VK = {s = c73 "pohjamaalata"} ;
+lin pohjata_VK = {s = c73 "pohjata"} ;
+lin pohjaton_NK = {s = d34A "pohjaton"} ;
+lin pohjattomasti_AdvK = {s = c99 "pohjattomasti"} ;
+lin pohjaus_NK = {s = d39 "pohjaus"} ;
+lin pohjauttaa_VK = {s = c53A "pohjauttaa"} ;
+lin pohjautua_VK = {s = c52A "pohjautua"} ;
+lin pohje_NK = {s = d48A "pohje"} ;
+lin pohjemmaksi_AdvK = {s = c99 "pohjemmaksi"} ;
+lin pohjemmalla_AdvK = {s = c99 "pohjemmalla"} ;
+lin pohjemmalle_AdvK = {s = c99 "pohjemmalle"} ;
+lin pohjemmalta_AdvK = {s = c99 "pohjemmalta"} ;
+lin pohjempaa_AdvK = {s = c99 "pohjempaa"} ;
+lin pohjempana_AdvK = {s = c99 "pohjempana"} ;
+lin pohjimmainen_NK = {s = d38 "pohjimmainen"} ;
+lin pohjimmaksi_AdvK = {s = c99 "pohjimmaksi"} ;
+lin pohjimmalla_AdvK = {s = c99 "pohjimmalla"} ;
+lin pohjimmalle_AdvK = {s = c99 "pohjimmalle"} ;
+lin pohjimmalta_AdvK = {s = c99 "pohjimmalta"} ;
+lin pohjimmaltaan_AdvK = {s = c99 "pohjimmaltaan"} ;
+lin pohjimmiltaan_AdvK = {s = c99 "pohjimmiltaan"} ;
+lin pohjimpaa_AdvK = {s = c99 "pohjimpaa"} ;
+lin pohjimpana_AdvK = {s = c99 "pohjimpana"} ;
+lin pohjittaa_VK = {s = c53A "pohjittaa"} ;
+lin pohjoinen_NK = {s = d38 "pohjoinen"} ;
+lin pohjoisemmaksi_AdvK = {s = c99 "pohjoisemmaksi"} ;
+lin pohjoisemmas_AdvK = {s = c99 "pohjoisemmas"} ;
+lin pohjoisempaa_AdvK = {s = c99 "pohjoisempaa"} ;
+lin pohjoisempana_AdvK = {s = c99 "pohjoisempana"} ;
+lin pohjoisraja_NK = {s = d09 "pohjoisraja"} ;
+lin pohjoisvaltalainen_NK = {s = d38 "pohjoisvaltalainen"} ;
+lin pohjoisviitta_NK = {s = d09A "pohjoisviitta"} ;
+lin pohjola_NK = {s = d12 "pohjola"} ;
+lin pohjukka_NK = {s = d14A "pohjukka"} ;
+lin pohjus_NK = {s = d39 "pohjus"} ;
+lin pohjustaa_VK = {s = c53 "pohjustaa"} ;
+lin pohjuste_NK = {s = d48 "pohjuste"} ;
+lin pohjustus_NK = {s = d39 "pohjustus"} ;
+lin pohkeinen_NK = {s = d38 "pohkeinen"} ;
+lin pohtia_VK = {s = c61A "pohtia"} ;
+lin poies_AdvK = {s = c99 "poies"} ;
+lin poi_inta_NK = {s = d09A "poi'inta"} ;
+lin poi_ittaa_VK = {s = c53A "poi'ittaa"} ;
+lin poi_itus_NK = {s = d39 "poi'itus"} ;
+lin poiju_NK = {s = d01 "poiju"} ;
+lin poijuttaa_VK = {s = c53A "poijuttaa"} ;
+lin poijutus_NK = {s = d39 "poijutus"} ;
+lin poika_NK = {s = d10A "poika"} ;
+--+ lin poikamaisesti_AdvK = {s = c99 "poikamaisesti"} ;
+lin poikamaisuus_NK = {s = d40 "poikamaisuus"} ;
+lin poikanen_NK = {s = d38 "poikanen"} ;
+lin poiketa_VK = {s = c74A "poiketa"} ;
+lin poikia_VK = {s = c61A "poikia"} ;
+lin poikittain_AdvK = {s = c99 "poikittain"} ;
+lin poikittainen_NK = {s = d38 "poikittainen"} ;
+lin poikittaisraita_NK = {s = d09A "poikittaisraita"} ;
+lin poikkaista_VK = {s = c66 "poikkaista"} ;
+lin poikkeama_NK = {s = d10 "poikkeama"} ;
+lin poikkeava_AK = {s = d10 "poikkeava"} ;
+--+ lin poikkeavasti_AdvK = {s = c99 "poikkeavasti"} ;
+lin poikkeavuus_NK = {s = d40 "poikkeavuus"} ;
+lin poikkeuksellinen_AK = {s = d38 "poikkeuksellinen"} ;
+--+ lin poikkeuksellisesti_AdvK = {s = c99 "poikkeuksellisesti"} ;
+lin poikkeuksellisuus_NK = {s = d40 "poikkeuksellisuus"} ;
+lin poikkeuma_NK = {s = d10 "poikkeuma"} ;
+lin poikkeus_NK = {s = d39 "poikkeus"} ;
+lin poikkeuttaa_VK = {s = c53A "poikkeuttaa"} ;
+lin poikki_AdvK = {s = c99 "poikki"} ;
+lin poikkipuolin_AdvK = {s = c99 "poikkipuolin"} ;
+lin poikkitelainen_NK = {s = d38 "poikkitelainen"} ;
+lin poikkiteloin_AdvK = {s = c99 "poikkiteloin"} ;
+lin poikue_NK = {s = d48 "poikue"} ;
+lin poikuus_NK = {s = d40 "poikuus"} ;
+lin poikuusaika_NK = {s = d09A "poikuusaika"} ;
+lin poimia_VK = {s = c61 "poimia"} ;
+lin poimielma_NK = {s = d10 "poimielma"} ;
+lin poimija_NK = {s = d12 "poimija"} ;
+lin poiminta_NK = {s = d09A "poiminta"} ;
+lin poiminto_NK = {s = d01A "poiminto"} ;
+lin poimiskella_VK = {s = c67 "poimiskella"} ;
+lin poimu_NK = {s = d01 "poimu"} ;
+lin poimuilla_VK = {s = c67 "poimuilla"} ;
+lin poimuinen_NK = {s = d38 "poimuinen"} ;
+lin poimukas_NK = {s = d41A "poimukas"} ;
+lin poimullinen_NK = {s = d38 "poimullinen"} ;
+lin poimuri_NK = {s = d06 "poimuri"} ;
+lin poimuttaa_VK = {s = c53A "poimuttaa"} ;
+lin poimuttua_VK = {s = c52A "poimuttua"} ;
+lin poimutus_NK = {s = d39 "poimutus"} ;
+lin poimuuntua_VK = {s = c52A "poimuuntua"} ;
+lin pointillismi_NK = {s = d05 "pointillismi"} ;
+lin pointillisti_NK = {s = d05 "pointillisti"} ;
+lin pointillistinen_NK = {s = d38 "pointillistinen"} ;
+lin pointsi_NK = {s = d05 "pointsi"} ;
+lin pointteri_NK = {s = d06 "pointteri"} ;
+lin pointti_NK = {s = d05A "pointti"} ;
+lin pois_AdvK = {s = c99 "pois"} ;
+lin poisnukkunut_NK = {s = d47 "poisnukkunut"} ;
+lin poisoppiminen_NK = {s = d38 "poisoppiminen"} ;
+lin poispilattu_NK = {s = d01A "poispilattu"} ;
+lin poissa_AdvK = {s = c99 "poissa"} ;
+lin poistaa_VK = {s = c53 "poistaa"} ;
+lin poistattaa_VK = {s = c53A "poistattaa"} ;
+lin poiste_NK = {s = d48 "poiste"} ;
+lin poistin_NK = {s = d33 "poistin"} ;
+lin poisto_NK = {s = d01 "poisto"} ;
+lin poistua_VK = {s = c52 "poistua"} ;
+lin poitsu_NK = {s = d01 "poitsu"} ;
+lin poju_NK = {s = d01 "poju"} ;
+lin poka_NK = {s = d10 "poka"} ;
+lin pokaali_NK = {s = d06 "pokaali"} ;
+lin pokata_1_VK = {s = c73A "pokata"} ;
+lin pokata_2_VK = {s = c73 "pokata"} ;
+lin pokeri_NK = {s = d06 "pokeri"} ;
+lin pokka_NK = {s = d10A "pokka"} ;
+lin pokkailla_VK = {s = c67 "pokkailla"} ;
+lin pokkari_NK = {s = d06 "pokkari"} ;
+lin pokkuroida_VK = {s = c68 "pokkuroida"} ;
+lin pokkurointi_NK = {s = d05A "pokkurointi"} ;
+lin poksahdus_NK = {s = d39 "poksahdus"} ;
+lin poksahtaa_VK = {s = c53A "poksahtaa"} ;
+lin poksauttaa_VK = {s = c53A "poksauttaa"} ;
+lin poksi_NK = {s = d05 "poksi"} ;
+lin pokstaavi_NK = {s = d05 "pokstaavi"} ;
+lin pola_NK = {s = d10 "pola"} ;
+lin polaarinen_NK = {s = d38 "polaarinen"} ;
+lin polaarisuus_NK = {s = d40 "polaarisuus"} ;
+lin polakka_NK = {s = d14A "polakka"} ;
+lin polanne_NK = {s = d48A "polanne"} ;
+lin polanteinen_NK = {s = d38 "polanteinen"} ;
+lin polanteisuus_NK = {s = d40 "polanteisuus"} ;
+lin polarisaatio_NK = {s = d03 "polarisaatio"} ;
+lin polarisoida_VK = {s = c62 "polarisoida"} ;
+lin polarisoitua_VK = {s = c52A "polarisoitua"} ;
+lin polariteetti_NK = {s = d05A "polariteetti"} ;
+lin polaroida_VK = {s = c62 "polaroida"} ;
+lin polaroitua_VK = {s = c52A "polaroitua"} ;
+lin poleemikko_NK = {s = d01A "poleemikko"} ;
+lin poleeminen_AK = {s = d38 "poleeminen"} ;
+--+ lin poleemisesti_AdvK = {s = c99 "poleemisesti"} ;
+lin poleemisuus_NK = {s = d40 "poleemisuus"} ;
+lin polemiikki_NK = {s = d05A "polemiikki"} ;
+lin polemikoida_VK = {s = c62 "polemikoida"} ;
+lin polemikointi_NK = {s = d05A "polemikointi"} ;
+lin polemisoida_VK = {s = c62 "polemisoida"} ;
+lin polemisointi_NK = {s = d05A "polemisointi"} ;
+lin poletti_NK = {s = d05A "poletti"} ;
+lin poli_NK = {s = d05 "poli"} ;
+lin poliitikko_NK = {s = d01A "poliitikko"} ;
+lin poliittinen_AK = {s = d38 "poliittinen"} ;
+--+ lin poliittisesti_AdvK = {s = c99 "poliittisesti"} ;
+lin poliittistaa_VK = {s = c53 "poliittistaa"} ;
+lin poliittistua_VK = {s = c52 "poliittistua"} ;
+lin poliittisuus_NK = {s = d40 "poliittisuus"} ;
+--+ lin polikliinisesti_AdvK = {s = c99 "polikliinisesti"} ;
+lin polio_NK = {s = d03 "polio"} ;
+lin politbyroo_NK = {s = d20 "politbyroo"} ;
+lin politiikka_NK = {s = d09A "politiikka"} ;
+lin politikoida_VK = {s = c62 "politikoida"} ;
+lin politikointi_NK = {s = d05A "politikointi"} ;
+lin politisoida_VK = {s = c62 "politisoida"} ;
+lin politisointi_NK = {s = d05A "politisointi"} ;
+lin politisoitua_VK = {s = c52A "politisoitua"} ;
+lin politologi_NK = {s = d05 "politologi"} ;
+lin politologia_NK = {s = d12 "politologia"} ;
+lin poljennollinen_AK = {s = d38 "poljennollinen"} ;
+--+ lin poljennollisesti_AdvK = {s = c99 "poljennollisesti"} ;
+lin poljenta_NK = {s = d09A "poljenta"} ;
+lin poljento_NK = {s = d01A "poljento"} ;
+lin poljin_NK = {s = d33A "poljin"} ;
+lin polkaista_VK = {s = c66 "polkaista"} ;
+lin polkaisu_NK = {s = d02 "polkaisu"} ;
+lin polkea_VK = {s = c58A "polkea"} ;
+lin polkeutua_VK = {s = c52A "polkeutua"} ;
+lin polkka_NK = {s = d10A "polkka"} ;
+lin polku_NK = {s = d01A "polku"} ;
+lin polkusin_NK = {s = d33 "polkusin"} ;
+lin polla_NK = {s = d10 "polla"} ;
+lin pollari_1_NK = {s = d06 "pollari"} ;
+lin pollari_2_NK = {s = d06 "pollari"} ;
+lin polle_NK = {s = d08 "polle"} ;
+lin pollea_NK = {s = d15 "pollea"} ;
+lin polo_NK = {s = d01 "polo"} ;
+lin poloinen_NK = {s = d38 "poloinen"} ;
+lin poloneesi_NK = {s = d05 "poloneesi"} ;
+lin polonium_NK = {s = d05 "polonium"} ;
+lin polottaa_VK = {s = c53A "polottaa"} ;
+lin polotus_NK = {s = d39 "polotus"} ;
+lin polska_NK = {s = d10 "polska"} ;
+lin polskahdus_NK = {s = d39 "polskahdus"} ;
+lin polskahtaa_VK = {s = c53A "polskahtaa"} ;
+lin polskaus_NK = {s = d39 "polskaus"} ;
+lin polskauttaa_VK = {s = c53A "polskauttaa"} ;
+lin polski_NK = {s = d05 "polski"} ;
+lin polskia_VK = {s = c61 "polskia"} ;
+lin polskuttaa_VK = {s = c53A "polskuttaa"} ;
+lin polstari_NK = {s = d06 "polstari"} ;
+lin polsteri_NK = {s = d06 "polsteri"} ;
+lin poltattaa_VK = {s = c53A "poltattaa"} ;
+lin polte_NK = {s = d48A "polte"} ;
+lin poltella_VK = {s = c67A "poltella"} ;
+lin polterabend_NK = {s = d05 "polterabend"} ;
+lin poltergeist_NK = {s = d05 "poltergeist"} ;
+lin poltin_NK = {s = d33A "poltin"} ;
+lin polttaa_VK = {s = c53A "polttaa"} ;
+lin polttaja_NK = {s = d10 "polttaja"} ;
+lin polttama_NK = {s = d10 "polttama"} ;
+--? lin polttarit_NK = {s = d06 "polttarit"} ;
+lin polttava_NK = {s = d10 "polttava"} ;
+lin polttiainen_NK = {s = d38 "polttiainen"} ;
+lin polttimo_NK = {s = d02 "polttimo"} ;
+lin poltto_NK = {s = d01A "poltto"} ;
+lin polttolakata_VK = {s = c73A "polttolakata"} ;
+lin polttomaalata_VK = {s = c73 "polttomaalata"} ;
+--? lin polvarit_NK = {s = d06 "polvarit"} ;
+lin polveilla_VK = {s = c67 "polveilla"} ;
+lin polveke_NK = {s = d48A "polveke"} ;
+lin polveutua_VK = {s = c52A "polveutua"} ;
+lin polvi_NK = {s = d07 "polvi"} ;
+lin polvillaan_AdvK = {s = c99 "polvillaan"} ;
+lin polvilleen_AdvK = {s = c99 "polvilleen"} ;
+lin polviltaan_AdvK = {s = c99 "polviltaan"} ;
+lin polvinen_NK = {s = d38 "polvinen"} ;
+lin polvistaa_VK = {s = c53 "polvistaa"} ;
+lin polvistua_VK = {s = c52 "polvistua"} ;
+lin polyamidi_NK = {s = d05 "polyamidi"} ;
+lin polyesteri_NK = {s = d06 "polyesteri"} ;
+lin polyeteeni_NK = {s = d05 "polyeteeni"} ;
+lin polyfonia_NK = {s = d12 "polyfonia"} ;
+lin polyfoninen_NK = {s = d38 "polyfoninen"} ;
+lin polygaaminen_NK = {s = d38 "polygaaminen"} ;
+lin polygamia_NK = {s = d12 "polygamia"} ;
+lin polyglotti_NK = {s = d05A "polyglotti"} ;
+lin polygoni_NK = {s = d05 "polygoni"} ;
+lin polymeeri_NK = {s = d05 "polymeeri"} ;
+lin polymeria_NK = {s = d12 "polymeria"} ;
+lin polymerisaatio_NK = {s = d03 "polymerisaatio"} ;
+lin polymerisoida_VK = {s = c62 "polymerisoida"} ;
+lin polymerisoitua_VK = {s = c52A "polymerisoitua"} ;
+lin polymeroida_VK = {s = c62 "polymeroida"} ;
+lin polymeroitua_VK = {s = c52A "polymeroitua"} ;
+lin polymorfia_NK = {s = d12 "polymorfia"} ;
+lin polynomi_NK = {s = d05 "polynomi"} ;
+lin polypropeeni_NK = {s = d05 "polypropeeni"} ;
+lin polystyreeni_NK = {s = d05 "polystyreeni"} ;
+lin polyteismi_NK = {s = d05 "polyteismi"} ;
+lin polyteisti_NK = {s = d05 "polyteisti"} ;
+lin polyteistinen_NK = {s = d38 "polyteistinen"} ;
+lin polyuretaani_NK = {s = d05 "polyuretaani"} ;
+lin polyyppi_NK = {s = d05A "polyyppi"} ;
+lin pomada_NK = {s = d10 "pomada"} ;
+lin pomelo_NK = {s = d02 "pomelo"} ;
+lin pomeranssi_NK = {s = d05 "pomeranssi"} ;
+lin pomeranssinkuori_NK = {s = d26 "pomeranssinkuori"} ;
+lin pomiloida_VK = {s = c68 "pomiloida"} ;
+lin pomilointi_NK = {s = d05A "pomilointi"} ;
+lin pommi_1_NK = {s = d05 "pommi"} ;
+lin pommi_2_NK = {s = d05 "pommi"} ;
+lin pommitella_VK = {s = c67A "pommitella"} ;
+lin pommittaa_VK = {s = c53A "pommittaa"} ;
+lin pommittaja_NK = {s = d10 "pommittaja"} ;
+lin pommitus_NK = {s = d39 "pommitus"} ;
+lin pomo_NK = {s = d01 "pomo"} ;
+lin pomoilla_VK = {s = c67 "pomoilla"} ;
+lin pomoilu_NK = {s = d02 "pomoilu"} ;
+lin pompahdella_VK = {s = c67A "pompahdella"} ;
+lin pompahdus_NK = {s = d39 "pompahdus"} ;
+lin pompahtaa_VK = {s = c53A "pompahtaa"} ;
+lin pompata_VK = {s = c73A "pompata"} ;
+lin pompottaa_VK = {s = c53A "pompottaa"} ;
+lin pompotus_NK = {s = d39 "pompotus"} ;
+lin pomppa_NK = {s = d10A "pomppa"} ;
+lin pomppaus_NK = {s = d39 "pomppaus"} ;
+lin pomppia_VK = {s = c61A "pomppia"} ;
+lin pomppoilla_VK = {s = c67 "pomppoilla"} ;
+lin pomppu_NK = {s = d01A "pomppu"} ;
+lin pompula_NK = {s = d12 "pompula"} ;
+lin pomsi_NK = {s = d05 "pomsi"} ;
+lin poncho_NK = {s = d01 "poncho"} ;
+lin pondi_NK = {s = d05 "pondi"} ;
+lin poni_NK = {s = d05 "poni"} ;
+lin ponkaista_VK = {s = c66 "ponkaista"} ;
+lin ponkaisu_NK = {s = d02 "ponkaisu"} ;
+lin ponnahdus_NK = {s = d39 "ponnahdus"} ;
+lin ponnahduttaa_VK = {s = c53A "ponnahduttaa"} ;
+lin ponnahtaa_VK = {s = c53A "ponnahtaa"} ;
+lin ponnauttaa_VK = {s = c53A "ponnauttaa"} ;
+lin ponnekas_AK = {s = d41A "ponnekas"} ;
+--+ lin ponnekkaasti_AdvK = {s = c99 "ponnekkaasti"} ;
+lin ponnekkuus_NK = {s = d40 "ponnekkuus"} ;
+lin ponneton_NK = {s = d34A "ponneton"} ;
+lin ponnin_NK = {s = d33A "ponnin"} ;
+lin ponnistaa_VK = {s = c53 "ponnistaa"} ;
+lin ponnistautua_VK = {s = c52A "ponnistautua"} ;
+lin ponnistella_VK = {s = c67 "ponnistella"} ;
+lin ponnistelu_NK = {s = d02 "ponnistelu"} ;
+lin ponnistus_NK = {s = d39 "ponnistus"} ;
+lin ponsi_NK = {s = d28 "ponsi"} ;
+lin ponssari_NK = {s = d06 "ponssari"} ;
+lin pontata_VK = {s = c73A "pontata"} ;
+lin ponteva_AK = {s = d10 "ponteva"} ;
+--+ lin pontevasti_AdvK = {s = c99 "pontevasti"} ;
+lin pontevuus_NK = {s = d40 "pontevuus"} ;
+lin pontikka_NK = {s = d14A "pontikka"} ;
+lin ponttaus_NK = {s = d39 "ponttaus"} ;
+lin pontti_NK = {s = d05A "pontti"} ;
+lin ponttoni_NK = {s = d06 "ponttoni"} ;
+lin pooli_1_NK = {s = d05 "pooli"} ;
+lin pooli_2_NK = {s = d05 "pooli"} ;
+lin poolo_NK = {s = d01 "poolo"} ;
+lin pop_NK = {s = d05 "pop"} ;
+lin popata_1_VK = {s = c73A "popata"} ;
+lin popata_2_VK = {s = c73A "popata"} ;
+lin popcorn_NK = {s = d05 "popcorn"} ;
+lin popliini_NK = {s = d06 "popliini"} ;
+lin poplore_NK = {s = d08 "poplore"} ;
+lin poppa_NK = {s = d10A "poppa"} ;
+lin poppana_NK = {s = d11 "poppana"} ;
+lin poppoo_NK = {s = d17 "poppoo"} ;
+lin popsia_VK = {s = c61 "popsia"} ;
+lin populaari_NK = {s = d05 "populaari"} ;
+lin populaaristaa_VK = {s = c53 "populaaristaa"} ;
+lin populaarius_NK = {s = d40 "populaarius"} ;
+lin populaatio_NK = {s = d03 "populaatio"} ;
+lin popularisoida_VK = {s = c62 "popularisoida"} ;
+lin populariteetti_NK = {s = d05A "populariteetti"} ;
+lin populismi_NK = {s = d05 "populismi"} ;
+lin populisti_NK = {s = d05 "populisti"} ;
+lin populistinen_NK = {s = d38 "populistinen"} ;
+lin popula'a'ri_NK = {s = d05 "populääri"} ;
+lin pora_NK = {s = d10 "pora"} ;
+lin poraaja_NK = {s = d10 "poraaja"} ;
+lin porari_NK = {s = d06 "porari"} ;
+lin porata_1_VK = {s = c73 "porata"} ;
+lin porata_2_VK = {s = c73 "porata"} ;
+lin poraus_NK = {s = d39 "poraus"} ;
+lin porautua_VK = {s = c52A "porautua"} ;
+lin pore_NK = {s = d48 "pore"} ;
+lin poreilla_VK = {s = c67 "poreilla"} ;
+lin poreilu_NK = {s = d02 "poreilu"} ;
+lin poreinen_NK = {s = d38 "poreinen"} ;
+lin poretin_NK = {s = d33A "poretin"} ;
+lin porfiini_NK = {s = d05 "porfiini"} ;
+lin porfyriini_NK = {s = d05 "porfyriini"} ;
+lin porfyyri_NK = {s = d05 "porfyyri"} ;
+lin porfyyrinen_NK = {s = d38 "porfyyrinen"} ;
+lin porhaltaa_VK = {s = c54A "porhaltaa"} ;
+lin porho_NK = {s = d01 "porho"} ;
+lin porilainen_NK = {s = d38 "porilainen"} ;
+lin porina_NK = {s = d13 "porina"} ;
+lin porista_VK = {s = c66 "porista"} ;
+lin porkka_NK = {s = d10A "porkka"} ;
+lin porkkana_NK = {s = d12 "porkkana"} ;
+lin pormestari_NK = {s = d06 "pormestari"} ;
+lin pornahtava_NK = {s = d10 "pornahtava"} ;
+lin porno_NK = {s = d01 "porno"} ;
+lin pornografia_NK = {s = d12 "pornografia"} ;
+lin pornografinen_NK = {s = d38 "pornografinen"} ;
+lin poro_1_NK = {s = d01 "poro"} ;
+lin poro_2_NK = {s = d01 "poro"} ;
+lin poroinen_NK = {s = d38 "poroinen"} ;
+lin porottaa_VK = {s = c53A "porottaa"} ;
+lin porotus_NK = {s = d39 "porotus"} ;
+lin porras_NK = {s = d41A "porras"} ;
+lin porrastaa_VK = {s = c53 "porrastaa"} ;
+--+ lin porrasteisesti_AdvK = {s = c99 "porrasteisesti"} ;
+lin porrasteisuus_NK = {s = d40 "porrasteisuus"} ;
+lin porrastua_VK = {s = c52 "porrastua"} ;
+lin porrastus_NK = {s = d39 "porrastus"} ;
+lin porsas_NK = {s = d41 "porsas"} ;
+--+ lin porsasmaisesti_AdvK = {s = c99 "porsasmaisesti"} ;
+lin porsastella_VK = {s = c67 "porsastella"} ;
+lin porsastelu_NK = {s = d02 "porsastelu"} ;
+lin porsia_VK = {s = c61 "porsia"} ;
+lin porsittaa_VK = {s = c53A "porsittaa"} ;
+lin porsitus_NK = {s = d39 "porsitus"} ;
+lin porskutella_VK = {s = c67A "porskutella"} ;
+lin porskuttaa_VK = {s = c53A "porskuttaa"} ;
+lin porstua_NK = {s = d12 "porstua"} ;
+lin portaali_NK = {s = d06 "portaali"} ;
+lin portaaton_NK = {s = d34A "portaaton"} ;
+lin portaattomasti_AdvK = {s = c99 "portaattomasti"} ;
+lin portaikko_NK = {s = d04A "portaikko"} ;
+lin portainen_NK = {s = d38 "portainen"} ;
+lin portaittain_AdvK = {s = c99 "portaittain"} ;
+lin portaittainen_NK = {s = d38 "portaittainen"} ;
+lin portfolio_NK = {s = d03 "portfolio"} ;
+lin portieeri_NK = {s = d05 "portieeri"} ;
+--? lin port_salut_NK = {s = d22 "port salut"} ;
+lin portsari_NK = {s = d06 "portsari"} ;
+lin portteri_NK = {s = d06 "portteri"} ;
+lin portti_NK = {s = d05A "portti"} ;
+lin portto_NK = {s = d01A "portto"} ;
+lin porttola_NK = {s = d12 "porttola"} ;
+lin portugali_NK = {s = d05 "portugali"} ;
+lin portviini_NK = {s = d05 "portviini"} ;
+lin poru_NK = {s = d01 "poru"} ;
+lin porukka_NK = {s = d14A "porukka"} ;
+lin porukoida_VK = {s = c62 "porukoida"} ;
+lin porvari_NK = {s = d06 "porvari"} ;
+lin porvarillinen_AK = {s = d38 "porvarillinen"} ;
+--+ lin porvarillisesti_AdvK = {s = c99 "porvarillisesti"} ;
+lin porvarillistaa_VK = {s = c53 "porvarillistaa"} ;
+lin porvarillistua_VK = {s = c52 "porvarillistua"} ;
+lin porvarillisuus_NK = {s = d40 "porvarillisuus"} ;
+lin porvarismi_NK = {s = d05 "porvarismi"} ;
+lin porvaristo_NK = {s = d01 "porvaristo"} ;
+lin posahdus_NK = {s = d39 "posahdus"} ;
+lin posahtaa_VK = {s = c53A "posahtaa"} ;
+lin posaus_NK = {s = d39 "posaus"} ;
+lin posauttaa_VK = {s = c53A "posauttaa"} ;
+lin pose_NK = {s = d08 "pose"} ;
+lin poseerata_VK = {s = c73 "poseerata"} ;
+lin poseeraus_NK = {s = d39 "poseeraus"} ;
+lin posetiivari_NK = {s = d06 "posetiivari"} ;
+lin posetiivi_NK = {s = d05 "posetiivi"} ;
+lin positiivi_NK = {s = d05 "positiivi"} ;
+lin positiivinen_AK = {s = d38 "positiivinen"} ;
+--+ lin positiivisesti_AdvK = {s = c99 "positiivisesti"} ;
+lin positiivisuus_NK = {s = d40 "positiivisuus"} ;
+lin positio_NK = {s = d03 "positio"} ;
+lin positivismi_NK = {s = d05 "positivismi"} ;
+lin positivisti_NK = {s = d05 "positivisti"} ;
+lin positivistinen_NK = {s = d38 "positivistinen"} ;
+lin positroni_NK = {s = d05 "positroni"} ;
+lin poskeinen_NK = {s = d38 "poskeinen"} ;
+lin posketon_NK = {s = d34A "posketon"} ;
+lin poskettomasti_AdvK = {s = c99 "poskettomasti"} ;
+lin poski_NK = {s = d07 "poski"} ;
+lin poskinen_NK = {s = d38 "poskinen"} ;
+lin posliini_NK = {s = d06 "posliini"} ;
+lin posliininen_NK = {s = d38 "posliininen"} ;
+lin posliininmaalaus_NK = {s = d39 "posliininmaalaus"} ;
+lin posmittaa_VK = {s = c53A "posmittaa"} ;
+lin posottaa_VK = {s = c53A "posottaa"} ;
+lin possessiivinen_NK = {s = d38 "possessiivinen"} ;
+lin possu_NK = {s = d01 "possu"} ;
+lin poste_restante_NK = {s = d08 "poste restante"} ;
+lin posteri_NK = {s = d06 "posteri"} ;
+lin posti_1_NK = {s = d05 "posti"} ;
+lin posti_2_NK = {s = d05 "posti"} ;
+lin posti_3_NK = {s = d05 "posti"} ;
+lin postiljooni_NK = {s = d05 "postiljooni"} ;
+lin postilla_NK = {s = d13 "postilla"} ;
+lin postimerkitta'a'_VK = {s = c53A "postimerkittää"} ;
+lin postimerkkeilija'_NK = {s = d12 "postimerkkeilijä"} ;
+lin postimerkkeilla'_VK = {s = c67 "postimerkkeillä"} ;
+lin postimerkkeily_NK = {s = d02 "postimerkkeily"} ;
+lin postinkanto_NK = {s = d01A "postinkanto"} ;
+lin postite_NK = {s = d48A "postite"} ;
+lin postitse_AdvK = {s = c99 "postitse"} ;
+lin postittaa_VK = {s = c53A "postittaa"} ;
+lin postitus_NK = {s = d39 "postitus"} ;
+lin postpositio_NK = {s = d03 "postpositio"} ;
+lin postulaatti_NK = {s = d05A "postulaatti"} ;
+lin postuloida_VK = {s = c62 "postuloida"} ;
+lin postuumi_NK = {s = d06 "postuumi"} ;
+lin potaatti_NK = {s = d05A "potaatti"} ;
+lin potaska_NK = {s = d13 "potaska"} ;
+lin potea_VK = {s = c58A "potea"} ;
+lin potensoida_VK = {s = c62 "potensoida"} ;
+lin potensoitua_VK = {s = c52A "potensoitua"} ;
+lin potenssi_NK = {s = d05 "potenssi"} ;
+lin potentiaali_NK = {s = d05 "potentiaali"} ;
+lin potentiaalinen_AK = {s = d38 "potentiaalinen"} ;
+--+ lin potentiaalisesti_AdvK = {s = c99 "potentiaalisesti"} ;
+lin potentiometri_NK = {s = d05 "potentiometri"} ;
+lin potentti_NK = {s = d05A "potentti"} ;
+lin potero_NK = {s = d02 "potero"} ;
+lin potilas_NK = {s = d41 "potilas"} ;
+lin potka_NK = {s = d10 "potka"} ;
+lin potkaista_VK = {s = c66 "potkaista"} ;
+lin potkaisu_NK = {s = d02 "potkaisu"} ;
+lin potkaus_NK = {s = d39 "potkaus"} ;
+lin potkia_VK = {s = c61 "potkia"} ;
+--? lin potkiaiset_NK = {s = d38 "potkiaiset"} ;
+lin potkija_NK = {s = d12 "potkija"} ;
+lin potkiskella_VK = {s = c67 "potkiskella"} ;
+lin potku_1_NK = {s = d01 "potku"} ;
+lin potku_2_NK = {s = d01 "potku"} ;
+lin potkuinen_NK = {s = d38 "potkuinen"} ;
+lin potkuri_NK = {s = d06 "potkuri"} ;
+lin potkurinen_NK = {s = d38 "potkurinen"} ;
+lin potpuri_NK = {s = d06 "potpuri"} ;
+lin potra_NK = {s = d10 "potra"} ;
+lin potretti_NK = {s = d05A "potretti"} ;
+lin potta_NK = {s = d10A "potta"} ;
+lin potti_1_NK = {s = d05A "potti"} ;
+lin potti_2_NK = {s = d05A "potti"} ;
+lin pottu_1_NK = {s = d01A "pottu"} ;
+lin pottu_2_NK = {s = d01A "pottu"} ;
+lin pottuilla_VK = {s = c67 "pottuilla"} ;
+lin pottuilu_NK = {s = d02 "pottuilu"} ;
+--+ lin pottumaisesti_AdvK = {s = c99 "pottumaisesti"} ;
+lin pottuuntua_VK = {s = c52A "pottuuntua"} ;
+lin potuttaa_VK = {s = c53A "potuttaa"} ;
+lin poukahdella_VK = {s = c67A "poukahdella"} ;
+lin poukahdus_NK = {s = d39 "poukahdus"} ;
+lin poukahtaa_VK = {s = c53A "poukahtaa"} ;
+lin poukahtelu_NK = {s = d02 "poukahtelu"} ;
+lin poukama_NK = {s = d10 "poukama"} ;
+lin poukata_VK = {s = c73A "poukata"} ;
+lin poukauttaa_VK = {s = c53A "poukauttaa"} ;
+lin poukkoilla_VK = {s = c67 "poukkoilla"} ;
+lin poukkoilu_NK = {s = d02 "poukkoilu"} ;
+lin pouta_NK = {s = d10A "pouta"} ;
+lin poutainen_NK = {s = d38 "poutainen"} ;
+lin poutia_VK = {s = c61A "poutia"} ;
+lin povaaja_NK = {s = d10 "povaaja"} ;
+lin povailla_VK = {s = c67 "povailla"} ;
+lin povari_1_NK = {s = d06 "povari"} ;
+lin povari_2_NK = {s = d06 "povari"} ;
+lin povata_VK = {s = c73 "povata"} ;
+lin povaus_NK = {s = d39 "povaus"} ;
+lin povauttaa_VK = {s = c53A "povauttaa"} ;
+lin poveton_NK = {s = d34A "poveton"} ;
+lin povi_NK = {s = d07 "povi"} ;
+lin povinen_NK = {s = d38 "povinen"} ;
+lin PR_AdvK = {s = c99 "PR"} ;
+lin praasniekka_NK = {s = d09A "praasniekka"} ;
+lin pragmaatikko_NK = {s = d01A "pragmaatikko"} ;
+lin pragmaattinen_AK = {s = d38 "pragmaattinen"} ;
+--+ lin pragmaattisesti_AdvK = {s = c99 "pragmaattisesti"} ;
+lin pragmaattisuus_NK = {s = d40 "pragmaattisuus"} ;
+lin pragmatiikka_NK = {s = d09A "pragmatiikka"} ;
+lin pragmatismi_NK = {s = d05 "pragmatismi"} ;
+lin pragmatisti_NK = {s = d05 "pragmatisti"} ;
+lin prakata_VK = {s = c73 "prakata"} ;
+lin praksis_NK = {s = d39 "praksis"} ;
+lin praktiikka_NK = {s = d14A "praktiikka"} ;
+lin praktikko_NK = {s = d01A "praktikko"} ;
+lin praktikoida_VK = {s = c62 "praktikoida"} ;
+lin praktikumi_NK = {s = d05 "praktikumi"} ;
+lin praktinen_NK = {s = d38 "praktinen"} ;
+lin praktisoida_VK = {s = c62 "praktisoida"} ;
+lin praliini_NK = {s = d06 "praliini"} ;
+lin pramea_AK = {s = d15 "pramea"} ;
+--+ lin prameasti_AdvK = {s = c99 "prameasti"} ;
+lin prameilla_VK = {s = c67 "prameilla"} ;
+lin prameilu_NK = {s = d02 "prameilu"} ;
+lin prameus_NK = {s = d40 "prameus"} ;
+lin predestinaatio_NK = {s = d03 "predestinaatio"} ;
+lin predestinoida_VK = {s = c62 "predestinoida"} ;
+lin predestinoitua_VK = {s = c52A "predestinoitua"} ;
+lin predikaatti_NK = {s = d05A "predikaatti"} ;
+lin predikatiivi_NK = {s = d05 "predikatiivi"} ;
+lin preemio_NK = {s = d03 "preemio"} ;
+lin preeria_NK = {s = d12 "preeria"} ;
+lin preesens_NK = {s = d05 "preesens"} ;
+lin prefekti_NK = {s = d05 "prefekti"} ;
+lin preferenssi_NK = {s = d05 "preferenssi"} ;
+lin prefiksi_NK = {s = d05 "prefiksi"} ;
+lin prejudikaatti_NK = {s = d05A "prejudikaatti"} ;
+lin prekambrinen_NK = {s = d38 "prekambrinen"} ;
+lin prelaatti_NK = {s = d05A "prelaatti"} ;
+lin prelimina'a'ri_NK = {s = d05 "preliminääri"} ;
+lin preludi_NK = {s = d05 "preludi"} ;
+lin premissi_NK = {s = d05 "premissi"} ;
+lin prenataalinen_NK = {s = d38 "prenataalinen"} ;
+lin prenikka_NK = {s = d14A "prenikka"} ;
+lin preparaatti_NK = {s = d05A "preparaatti"} ;
+lin preparaattori_NK = {s = d06 "preparaattori"} ;
+lin preparoida_VK = {s = c62 "preparoida"} ;
+lin prepata_VK = {s = c73A "prepata"} ;
+lin prepositio_NK = {s = d03 "prepositio"} ;
+lin preppaus_NK = {s = d39 "preppaus"} ;
+lin presbyteeri_NK = {s = d05 "presbyteeri"} ;
+lin presbyteerila'inen_NK = {s = d38 "presbyteeriläinen"} ;
+lin presbyteerinen_NK = {s = d38 "presbyteerinen"} ;
+lin presbyteriaani_NK = {s = d05 "presbyteriaani"} ;
+lin presidentti_NK = {s = d05A "presidentti"} ;
+lin presidenttiys_NK = {s = d40 "presidenttiys"} ;
+lin presidiumi_NK = {s = d05 "presidiumi"} ;
+lin presiis_AdvK = {s = c99 "presiis"} ;
+lin presisoida_VK = {s = c62 "presisoida"} ;
+lin presisointi_NK = {s = d05A "presisointi"} ;
+lin pressa_NK = {s = d09 "pressa"} ;
+lin pressi_NK = {s = d05 "pressi"} ;
+lin pressu_NK = {s = d01 "pressu"} ;
+lin prestiisi_NK = {s = d05 "prestiisi"} ;
+lin presto_AdvK = {s = c99 "presto"} ;
+lin preteriti_NK = {s = d05 "preteriti"} ;
+lin preussi_NK = {s = d05 "preussi"} ;
+lin preussilaisuus_NK = {s = d40 "preussilaisuus"} ;
+lin prevalenssi_NK = {s = d05 "prevalenssi"} ;
+lin preventiivinen_NK = {s = d38 "preventiivinen"} ;
+lin preventio_NK = {s = d03 "preventio"} ;
+lin priima_NK = {s = d09 "priima"} ;
+lin priimas_NK = {s = d39 "priimas"} ;
+lin priimi_NK = {s = d05 "priimi"} ;
+lin priimus_NK = {s = d39 "priimus"} ;
+lin prikaati_NK = {s = d05 "prikaati"} ;
+lin priki_NK = {s = d05 "priki"} ;
+lin prikka_NK = {s = d09A "prikka"} ;
+lin prikku_NK = {s = d01A "prikku"} ;
+lin prikulleen_AdvK = {s = c99 "prikulleen"} ;
+lin prillit_NK = {s = d05 "prillit"} ;
+lin primaari_AK = {s = d05 "primaari"} ;
+lin primaarinen_AK = {s = d38 "primaarinen"} ;
+--+ lin primaarisesti_AdvK = {s = c99 "primaarisesti"} ;
+--+ lin primaaristi_AdvK = {s = c99 "primaaristi"} ;
+lin primaarisuus_NK = {s = d40 "primaarisuus"} ;
+lin primaarius_NK = {s = d40 "primaarius"} ;
+lin primadonna_NK = {s = d10 "primadonna"} ;
+lin prima_vista_NK = {s = d09 "prima vista"} ;
+lin primitiivinen_AK = {s = d38 "primitiivinen"} ;
+--+ lin primitiivisesti_AdvK = {s = c99 "primitiivisesti"} ;
+lin primitiivisyys_NK = {s = d40 "primitiivisyys"} ;
+lin primitivismi_NK = {s = d05 "primitivismi"} ;
+lin primitivisti_NK = {s = d05 "primitivisti"} ;
+lin primus_motor_NK = {s = d05 "primus motor"} ;
+lin prima'a'ri_NK = {s = d05 "primääri"} ;
+lin prima'a'rinen_NK = {s = d38 "primäärinen"} ;
+lin prinkkala_NK = {s = d12 "prinkkala"} ;
+lin prinsessa_NK = {s = d13 "prinsessa"} ;
+lin prinsiippi_NK = {s = d05A "prinsiippi"} ;
+lin prinssi_NK = {s = d05 "prinssi"} ;
+lin printata_VK = {s = c73A "printata"} ;
+lin printtaus_NK = {s = d39 "printtaus"} ;
+lin printteri_NK = {s = d06 "printteri"} ;
+lin printti_NK = {s = d05A "printti"} ;
+lin priorisoida_VK = {s = c62 "priorisoida"} ;
+lin priorisointi_NK = {s = d05A "priorisointi"} ;
+lin prioriteetti_NK = {s = d05A "prioriteetti"} ;
+lin prisma_NK = {s = d09 "prisma"} ;
+lin privaatisti_AdvK = {s = c99 "privaatisti"} ;
+lin privaatti_NK = {s = d05A "privaatti"} ;
+lin privatisoida_VK = {s = c62 "privatisoida"} ;
+lin privatisoitua_VK = {s = c52A "privatisoitua"} ;
+lin privilegi_NK = {s = d05 "privilegi"} ;
+lin privilegio_NK = {s = d03 "privilegio"} ;
+lin pro_AdvK = {s = c99 "pro"} ;
+lin probleema_NK = {s = d11 "probleema"} ;
+lin probleemi_NK = {s = d05 "probleemi"} ;
+lin problemaattinen_AK = {s = d38 "problemaattinen"} ;
+--+ lin problemaattisesti_AdvK = {s = c99 "problemaattisesti"} ;
+lin problemaattisuus_NK = {s = d40 "problemaattisuus"} ;
+lin problematiikka_NK = {s = d09A "problematiikka"} ;
+lin problematisoida_VK = {s = c62 "problematisoida"} ;
+lin problematisoitua_VK = {s = c52A "problematisoitua"} ;
+lin produktiivinen_NK = {s = d38 "produktiivinen"} ;
+lin produktiivistua_VK = {s = c52 "produktiivistua"} ;
+lin produktiivisuus_NK = {s = d40 "produktiivisuus"} ;
+lin produktio_NK = {s = d03 "produktio"} ;
+lin produktiviteetti_NK = {s = d05A "produktiviteetti"} ;
+lin produsoida_VK = {s = c62 "produsoida"} ;
+lin produsointi_NK = {s = d05A "produsointi"} ;
+lin profaani_NK = {s = d05 "profaani"} ;
+lin profanoida_VK = {s = c62 "profanoida"} ;
+lin profanoitua_VK = {s = c52A "profanoitua"} ;
+lin profeetallinen_AK = {s = d38 "profeetallinen"} ;
+--+ lin profeetallisesti_AdvK = {s = c99 "profeetallisesti"} ;
+lin profeetallisuus_NK = {s = d40 "profeetallisuus"} ;
+lin profeetta_NK = {s = d09A "profeetta"} ;
+lin professionaalinen_NK = {s = d38 "professionaalinen"} ;
+lin professori_NK = {s = d06 "professori"} ;
+lin professuuri_NK = {s = d05 "professuuri"} ;
+lin profetia_NK = {s = d12 "profetia"} ;
+lin profetoida_VK = {s = c62 "profetoida"} ;
+lin proffa_NK = {s = d10 "proffa"} ;
+lin profiili_NK = {s = d05 "profiili"} ;
+lin profiloida_VK = {s = c62 "profiloida"} ;
+lin profilointi_NK = {s = d05A "profilointi"} ;
+lin profiloitua_VK = {s = c52A "profiloitua"} ;
+lin profylaksi_NK = {s = d05 "profylaksi"} ;
+lin profylaksia_NK = {s = d12 "profylaksia"} ;
+lin profylaktinen_AK = {s = d38 "profylaktinen"} ;
+--+ lin profylaktisesti_AdvK = {s = c99 "profylaktisesti"} ;
+lin profylaktisuus_NK = {s = d40 "profylaktisuus"} ;
+lin progesteroni_NK = {s = d05 "progesteroni"} ;
+lin progestiini_NK = {s = d05 "progestiini"} ;
+lin prognoosi_NK = {s = d05 "prognoosi"} ;
+lin prognostinen_NK = {s = d38 "prognostinen"} ;
+lin progredioida_VK = {s = c62 "progredioida"} ;
+lin progressiivinen_AK = {s = d38 "progressiivinen"} ;
+--+ lin progressiivisesti_AdvK = {s = c99 "progressiivisesti"} ;
+lin progressiivisuus_NK = {s = d40 "progressiivisuus"} ;
+lin progressio_NK = {s = d03 "progressio"} ;
+lin projekti_NK = {s = d05 "projekti"} ;
+lin projektiili_NK = {s = d05 "projektiili"} ;
+lin projektiivinen_NK = {s = d38 "projektiivinen"} ;
+lin projektio_NK = {s = d03 "projektio"} ;
+lin projektori_NK = {s = d06 "projektori"} ;
+lin projisioida_VK = {s = c62 "projisioida"} ;
+lin projisiointi_NK = {s = d05A "projisiointi"} ;
+lin projisoida_VK = {s = c62 "projisoida"} ;
+lin projisointi_NK = {s = d05A "projisointi"} ;
+lin prokuristi_NK = {s = d05 "prokuristi"} ;
+lin prolaktiini_NK = {s = d05 "prolaktiini"} ;
+lin prolatiivi_NK = {s = d05 "prolatiivi"} ;
+lin proletaari_NK = {s = d05 "proletaari"} ;
+lin proletaarinen_NK = {s = d38 "proletaarinen"} ;
+lin proletaaristaa_VK = {s = c53 "proletaaristaa"} ;
+lin proletaaristua_VK = {s = c52 "proletaaristua"} ;
+lin proletariaatti_NK = {s = d05A "proletariaatti"} ;
+lin proletarisoida_VK = {s = c62 "proletarisoida"} ;
+lin proletarisoitua_VK = {s = c52A "proletarisoitua"} ;
+lin prologi_NK = {s = d05 "prologi"} ;
+lin promemoria_NK = {s = d12 "promemoria"} ;
+lin promenadi_NK = {s = d05 "promenadi"} ;
+lin promille_NK = {s = d08 "promille"} ;
+lin promiskuiteetti_NK = {s = d05A "promiskuiteetti"} ;
+lin promootio_NK = {s = d03 "promootio"} ;
+lin promovendi_NK = {s = d05 "promovendi"} ;
+lin promovoida_VK = {s = c62 "promovoida"} ;
+lin pronominaali_NK = {s = d05 "pronominaali"} ;
+lin pronominaalinen_NK = {s = d38 "pronominaalinen"} ;
+lin pronssata_VK = {s = c73 "pronssata"} ;
+lin pronssaus_NK = {s = d39 "pronssaus"} ;
+lin pronssi_NK = {s = d05 "pronssi"} ;
+lin pronssinen_NK = {s = d38 "pronssinen"} ;
+lin pronssittaa_VK = {s = c53A "pronssittaa"} ;
+lin pronssitus_NK = {s = d39 "pronssitus"} ;
+lin proomu_NK = {s = d01 "proomu"} ;
+--+ lin proosallisesti_AdvK = {s = c99 "proosallisesti"} ;
+lin propaani_NK = {s = d05 "propaani"} ;
+lin propaganda_NK = {s = d09 "propaganda"} ;
+lin propagandisti_NK = {s = d05 "propagandisti"} ;
+lin propagandistinen_NK = {s = d38 "propagandistinen"} ;
+lin propagoida_VK = {s = c62 "propagoida"} ;
+lin propagoija_NK = {s = d10 "propagoija"} ;
+lin propagointi_NK = {s = d05A "propagointi"} ;
+lin propanoli_NK = {s = d05 "propanoli"} ;
+lin propata_VK = {s = c73A "propata"} ;
+lin propelli_NK = {s = d05 "propelli"} ;
+lin proportionaalinen_NK = {s = d38 "proportionaalinen"} ;
+lin proppu_NK = {s = d01A "proppu"} ;
+lin propri_NK = {s = d05 "propri"} ;
+lin propsi_NK = {s = d05 "propsi"} ;
+lin prosaisti_NK = {s = d05 "prosaisti"} ;
+lin proseduuri_NK = {s = d05 "proseduuri"} ;
+lin prosentiton_NK = {s = d34A "prosentiton"} ;
+--+ lin prosenttisesti_AdvK = {s = c99 "prosenttisesti"} ;
+lin prosentuaalinen_AK = {s = d38 "prosentuaalinen"} ;
+--+ lin prosentuaalisesti_AdvK = {s = c99 "prosentuaalisesti"} ;
+lin prosessi_NK = {s = d05 "prosessi"} ;
+lin prosessikirjoittaminen_NK = {s = d38 "prosessikirjoittaminen"} ;
+lin prosessoida_VK = {s = c62 "prosessoida"} ;
+lin prosessointi_NK = {s = d05A "prosessointi"} ;
+lin prosessori_NK = {s = d06 "prosessori"} ;
+lin prosit_AdvK = {s = c99 "prosit"} ;
+lin prospekti_NK = {s = d05 "prospekti"} ;
+lin prossa_NK = {s = d10 "prossa"} ;
+lin prostaglandiini_NK = {s = d06 "prostaglandiini"} ;
+lin prostata_NK = {s = d09 "prostata"} ;
+lin prostituoida_VK = {s = c62 "prostituoida"} ;
+lin prostituointi_NK = {s = d05A "prostituointi"} ;
+lin prostituoitu_NK = {s = d01A "prostituoitu"} ;
+lin prostituoitua_VK = {s = c52A "prostituoitua"} ;
+lin prostituutio_NK = {s = d03 "prostituutio"} ;
+lin protektionismi_NK = {s = d05 "protektionismi"} ;
+lin protektionisti_NK = {s = d05 "protektionisti"} ;
+lin protektionistinen_NK = {s = d38 "protektionistinen"} ;
+lin protektoraatti_NK = {s = d05A "protektoraatti"} ;
+lin protestantismi_NK = {s = d05 "protestantismi"} ;
+lin protestantti_NK = {s = d05A "protestantti"} ;
+lin protestanttinen_NK = {s = d38 "protestanttinen"} ;
+lin protestanttisuus_NK = {s = d40 "protestanttisuus"} ;
+lin protestoida_VK = {s = c62 "protestoida"} ;
+lin protestointi_NK = {s = d05A "protestointi"} ;
+lin protium_NK = {s = d05 "protium"} ;
+lin proto_NK = {s = d01 "proto"} ;
+lin protokolla_NK = {s = d10 "protokolla"} ;
+lin protoni_NK = {s = d05 "protoni"} ;
+lin proviisori_NK = {s = d06 "proviisori"} ;
+lin provinsiaalinen_NK = {s = d38 "provinsiaalinen"} ;
+lin provinsialismi_NK = {s = d05 "provinsialismi"} ;
+lin provisorinen_NK = {s = d38 "provisorinen"} ;
+lin provokaatio_NK = {s = d03 "provokaatio"} ;
+lin provokaattori_NK = {s = d06 "provokaattori"} ;
+lin provokatiivinen_AK = {s = d38 "provokatiivinen"} ;
+--+ lin provokatiivisesti_AdvK = {s = c99 "provokatiivisesti"} ;
+lin provokatiivisuus_NK = {s = d40 "provokatiivisuus"} ;
+lin provokatorinen_AK = {s = d38 "provokatorinen"} ;
+--+ lin provokatorisesti_AdvK = {s = c99 "provokatorisesti"} ;
+lin provokatorisuus_NK = {s = d40 "provokatorisuus"} ;
+lin provosoida_VK = {s = c62 "provosoida"} ;
+lin provosointi_NK = {s = d05A "provosointi"} ;
+lin provosoitua_VK = {s = c52A "provosoitua"} ;
+lin prutkuttaa_VK = {s = c53A "prutkuttaa"} ;
+lin prutkutus_NK = {s = d39 "prutkutus"} ;
+lin pra'ntti_NK = {s = d05A "präntti"} ;
+lin pra'ssi_NK = {s = d05 "prässi"} ;
+lin pra'ssa'ta'_VK = {s = c73 "prässätä"} ;
+lin pra'ssa'ys_NK = {s = d39 "prässäys"} ;
+lin pra'ssa'ytta'a'_VK = {s = c53A "prässäyttää"} ;
+lin pra'ssa'ytya'_VK = {s = c52A "prässäytyä"} ;
+lin pra'ssa'a'mo'_NK = {s = d02 "prässäämö"} ;
+lin pra'tka'_NK = {s = d10 "prätkä"} ;
+lin pro'ysta'illa'_VK = {s = c67 "pröystäillä"} ;
+lin pro'ysta'ily_NK = {s = d02 "pröystäily"} ;
+lin psalmi_NK = {s = d05 "psalmi"} ;
+lin psalttari_NK = {s = d06 "psalttari"} ;
+lin pseudokruppi_NK = {s = d05A "pseudokruppi"} ;
+lin pseudonyymi_NK = {s = d05 "pseudonyymi"} ;
+lin psori_NK = {s = d05 "psori"} ;
+lin psoriaatikko_NK = {s = d04A "psoriaatikko"} ;
+lin psoriasis_NK = {s = d39 "psoriasis"} ;
+lin psykedeelinen_NK = {s = d38 "psykedeelinen"} ;
+lin psykiatri_NK = {s = d05 "psykiatri"} ;
+lin psykiatria_NK = {s = d12 "psykiatria"} ;
+lin psykiatrinen_NK = {s = d38 "psykiatrinen"} ;
+lin psykofarmaka_NK = {s = d13 "psykofarmaka"} ;
+lin psykogeeninen_NK = {s = d38 "psykogeeninen"} ;
+lin psykokinesia_NK = {s = d12 "psykokinesia"} ;
+lin psykologi_NK = {s = d05 "psykologi"} ;
+lin psykologia_NK = {s = d12 "psykologia"} ;
+lin psykologinen_AK = {s = d38 "psykologinen"} ;
+lin psykologioida_VK = {s = c62 "psykologioida"} ;
+lin psykologiointi_NK = {s = d05A "psykologiointi"} ;
+--+ lin psykologisesti_AdvK = {s = c99 "psykologisesti"} ;
+lin psykologisoida_VK = {s = c62 "psykologisoida"} ;
+lin psykometriikka_NK = {s = d14A "psykometriikka"} ;
+lin psykometrinen_NK = {s = d38 "psykometrinen"} ;
+lin psykoosi_NK = {s = d05 "psykoosi"} ;
+lin psykoottinen_AK = {s = d38 "psykoottinen"} ;
+--+ lin psykoottisesti_AdvK = {s = c99 "psykoottisesti"} ;
+lin psykoottisuus_NK = {s = d40 "psykoottisuus"} ;
+lin psykopaatti_NK = {s = d05A "psykopaatti"} ;
+lin psykopaattinen_NK = {s = d38 "psykopaattinen"} ;
+lin psykopatia_NK = {s = d12 "psykopatia"} ;
+lin psykopatologia_NK = {s = d12 "psykopatologia"} ;
+lin psykosomaattinen_NK = {s = d38 "psykosomaattinen"} ;
+lin psyykata_VK = {s = c73A "psyykata"} ;
+lin psyyke_NK = {s = d08 "psyyke"} ;
+lin psyykkaus_NK = {s = d39 "psyykkaus"} ;
+lin psyykkinen_AK = {s = d38 "psyykkinen"} ;
+--+ lin psyykkisesti_AdvK = {s = c99 "psyykkisesti"} ;
+lin ptolemaiolainen_NK = {s = d38 "ptolemaiolainen"} ;
+lin ptruu_AdvK = {s = c99 "ptruu"} ;
+lin pub_NK = {s = d05 "pub"} ;
+lin puberteetti_NK = {s = d05A "puberteetti"} ;
+lin pubi_NK = {s = d05 "pubi"} ;
+lin publiikki_NK = {s = d05A "publiikki"} ;
+lin publikaani_NK = {s = d05 "publikaani"} ;
+lin publisiteetti_NK = {s = d05A "publisiteetti"} ;
+lin pudas_NK = {s = d41A "pudas"} ;
+lin pudistaa_VK = {s = c53 "pudistaa"} ;
+lin pudistella_VK = {s = c67 "pudistella"} ;
+lin pudistus_NK = {s = d39 "pudistus"} ;
+lin pudokas_NK = {s = d41A "pudokas"} ;
+lin pudota_VK = {s = c74A "pudota"} ;
+lin pudotella_VK = {s = c67A "pudotella"} ;
+lin pudottaa_VK = {s = c53A "pudottaa"} ;
+lin pudottautua_VK = {s = c52A "pudottautua"} ;
+lin pudotus_NK = {s = d39 "pudotus"} ;
+lin pueskella_VK = {s = c67 "pueskella"} ;
+lin puettaa_VK = {s = c53A "puettaa"} ;
+lin puffata_VK = {s = c73 "puffata"} ;
+lin puffi_NK = {s = d05 "puffi"} ;
+lin pugilismi_NK = {s = d05 "pugilismi"} ;
+lin pugilisti_NK = {s = d05 "pugilisti"} ;
+lin puhahtaa_VK = {s = c53A "puhahtaa"} ;
+lin puhallella_VK = {s = c67A "puhallella"} ;
+lin puhallin_NK = {s = d33A "puhallin"} ;
+lin puhallus_NK = {s = d39 "puhallus"} ;
+lin puhalluttaa_VK = {s = c53A "puhalluttaa"} ;
+lin puhallutus_NK = {s = d39 "puhallutus"} ;
+lin puhaltaa_VK = {s = c54A "puhaltaa"} ;
+lin puhaltaja_NK = {s = d10 "puhaltaja"} ;
+lin puhdas_NK = {s = d41A "puhdas"} ;
+lin puhdasrotuisuus_NK = {s = d40 "puhdasrotuisuus"} ;
+lin puhde_NK = {s = d48A "puhde"} ;
+lin puhdistaa_VK = {s = c53 "puhdistaa"} ;
+lin puhdistaja_NK = {s = d10 "puhdistaja"} ;
+lin puhdistamo_NK = {s = d02 "puhdistamo"} ;
+lin puhdistautua_VK = {s = c52A "puhdistautua"} ;
+lin puhdiste_NK = {s = d48 "puhdiste"} ;
+lin puhdistin_NK = {s = d33 "puhdistin"} ;
+lin puhdistua_VK = {s = c52 "puhdistua"} ;
+lin puhdistuma_NK = {s = d10 "puhdistuma"} ;
+lin puhdistus_NK = {s = d39 "puhdistus"} ;
+lin puhdistuttaa_VK = {s = c53A "puhdistuttaa"} ;
+lin puhe_NK = {s = d48 "puhe"} ;
+lin puheilla_AdvK = {s = c99 "puheilla"} ;
+lin puheille_AdvK = {s = c99 "puheille"} ;
+lin puheilta_AdvK = {s = c99 "puheilta"} ;
+lin puheinen_NK = {s = d38 "puheinen"} ;
+lin puheisiin_AdvK = {s = c99 "puheisiin"} ;
+lin puheissa_AdvK = {s = c99 "puheissa"} ;
+lin puheliaisuus_NK = {s = d40 "puheliaisuus"} ;
+lin puhelias_NK = {s = d41 "puhelias"} ;
+lin puhelimitse_AdvK = {s = c99 "puhelimitse"} ;
+lin puhelin_NK = {s = d33 "puhelin"} ;
+lin puhella_VK = {s = c67 "puhella"} ;
+lin puhelu_NK = {s = d02 "puhelu"} ;
+lin puhina_NK = {s = d12 "puhina"} ;
+lin puhista_VK = {s = c66 "puhista"} ;
+lin puhjeta_VK = {s = c74A "puhjeta"} ;
+lin puhkaa_VK = {s = c78 "puhkaa"} ;
+lin puhkaista_VK = {s = c66 "puhkaista"} ;
+lin puhkaisu_NK = {s = d02 "puhkaisu"} ;
+lin puhkeama_NK = {s = d10 "puhkeama"} ;
+lin puhkeilla_VK = {s = c67 "puhkeilla"} ;
+lin puhki_AdvK = {s = c99 "puhki"} ;
+lin puhkia_VK = {s = c61 "puhkia"} ;
+lin puhkina_NK = {s = d12 "puhkina"} ;
+lin puhkinta_NK = {s = d09A "puhkinta"} ;
+lin puhkoa_VK = {s = c52 "puhkoa"} ;
+lin puhkonta_NK = {s = d09A "puhkonta"} ;
+lin puhkua_VK = {s = c52 "puhkua"} ;
+lin puhkunta_NK = {s = d09A "puhkunta"} ;
+lin puhtaasti_AdvK = {s = c99 "puhtaasti"} ;
+lin puhtaus_NK = {s = d40 "puhtaus"} ;
+lin puhti_NK = {s = d05A "puhti"} ;
+lin puhtoinen_NK = {s = d38 "puhtoinen"} ;
+lin puhua_VK = {s = c52 "puhua"} ;
+lin puhuja_NK = {s = d10 "puhuja"} ;
+lin puhumaton_NK = {s = d34A "puhumaton"} ;
+lin puhumattomuus_NK = {s = d40 "puhumattomuus"} ;
+lin puhunta_NK = {s = d09A "puhunta"} ;
+lin puhuri_NK = {s = d06 "puhuri"} ;
+lin puhutella_VK = {s = c67A "puhutella"} ;
+lin puhuttaa_VK = {s = c53A "puhuttaa"} ;
+lin puhuttelija_NK = {s = d12 "puhuttelija"} ;
+lin puhuttelu_NK = {s = d02 "puhuttelu"} ;
+lin puhuva_NK = {s = d10 "puhuva"} ;
+lin puhveli_NK = {s = d06 "puhveli"} ;
+lin puhvetti_NK = {s = d05A "puhvetti"} ;
+lin puhvi_NK = {s = d05 "puhvi"} ;
+lin puida_VK = {s = c62 "puida"} ;
+lin puija_NK = {s = d10 "puija"} ;
+lin puijata_VK = {s = c73 "puijata"} ;
+lin puijaus_NK = {s = d39 "puijaus"} ;
+lin puikahtaa_VK = {s = c53A "puikahtaa"} ;
+lin puikea_NK = {s = d15 "puikea"} ;
+lin puikkari_NK = {s = d06 "puikkari"} ;
+lin puikkaroida_VK = {s = c62 "puikkaroida"} ;
+lin puikkarointi_NK = {s = d05A "puikkarointi"} ;
+lin puikkaus_NK = {s = d39 "puikkaus"} ;
+lin puikkelehtia_VK = {s = c61A "puikkelehtia"} ;
+lin puikkia_VK = {s = c61A "puikkia"} ;
+lin puikko_NK = {s = d01A "puikko"} ;
+lin puimala_NK = {s = d12 "puimala"} ;
+lin puimuri_NK = {s = d06 "puimuri"} ;
+lin puin_NK = {s = d33A "puin"} ;
+lin puinen_NK = {s = d38 "puinen"} ;
+lin puinti_NK = {s = d05A "puinti"} ;
+lin puiseva_AK = {s = d10 "puiseva"} ;
+--+ lin puisevasti_AdvK = {s = c99 "puisevasti"} ;
+lin puisevuus_NK = {s = d40 "puisevuus"} ;
+lin puistaa_VK = {s = c53 "puistaa"} ;
+lin puistattaa_VK = {s = c53A "puistattaa"} ;
+lin puistatus_NK = {s = d39 "puistatus"} ;
+lin puistikko_NK = {s = d04A "puistikko"} ;
+lin puistikkoinen_NK = {s = d38 "puistikkoinen"} ;
+lin puisto_NK = {s = d01 "puisto"} ;
+lin puite_NK = {s = d48A "puite"} ;
+lin puitteinen_NK = {s = d38 "puitteinen"} ;
+lin pujahtaa_VK = {s = c53A "pujahtaa"} ;
+lin pujo_NK = {s = d01 "pujo"} ;
+lin pujoa_VK = {s = c52 "pujoa"} ;
+lin pujoke_NK = {s = d48A "pujoke"} ;
+lin pujonta_NK = {s = d09A "pujonta"} ;
+lin pujos_NK = {s = d39 "pujos"} ;
+lin pujotella_VK = {s = c67A "pujotella"} ;
+lin pujottaa_VK = {s = c53A "pujottaa"} ;
+lin pujottautua_VK = {s = c52A "pujottautua"} ;
+lin pujottelija_NK = {s = d12 "pujottelija"} ;
+lin pujottelu_NK = {s = d02 "pujottelu"} ;
+lin pujottua_VK = {s = c52A "pujottua"} ;
+lin pujotus_NK = {s = d39 "pujotus"} ;
+lin pukahtaa_VK = {s = c53A "pukahtaa"} ;
+lin pukari_NK = {s = d06 "pukari"} ;
+lin pukata_VK = {s = c73A "pukata"} ;
+lin pukea_VK = {s = c58A "pukea"} ;
+--? lin pukeet_NK = {s = d48 "pukeet"} ;
+lin puketti_NK = {s = d05A "puketti"} ;
+lin pukeutua_VK = {s = c52A "pukeutua"} ;
+lin pukija_NK = {s = d12 "pukija"} ;
+lin pukimo_NK = {s = d02 "pukimo"} ;
+lin pukine_NK = {s = d48 "pukine"} ;
+lin pukinjuuri_NK = {s = d26 "pukinjuuri"} ;
+lin pukinkontti_NK = {s = d05A "pukinkontti"} ;
+lin pukittaa_VK = {s = c53A "pukittaa"} ;
+lin pukkailla_VK = {s = c67 "pukkailla"} ;
+lin pukkari_NK = {s = d06 "pukkari"} ;
+lin pukkaus_NK = {s = d39 "pukkaus"} ;
+lin pukki_1_NK = {s = d05A "pukki"} ;
+lin pukki_2_NK = {s = d05A "pukki"} ;
+lin puksuttaa_VK = {s = c53A "puksuttaa"} ;
+lin puksutus_NK = {s = d39 "puksutus"} ;
+lin puku_NK = {s = d01A "puku"} ;
+lin pukuinen_NK = {s = d38 "pukuinen"} ;
+lin pula_NK = {s = d10 "pula"} ;
+lin pula_aika_NK = {s = d09A "pula-aika"} ;
+lin pulahdus_NK = {s = d39 "pulahdus"} ;
+lin pulahtaa_VK = {s = c53A "pulahtaa"} ;
+lin pulaus_NK = {s = d39 "pulaus"} ;
+lin pulauttaa_VK = {s = c53A "pulauttaa"} ;
+lin pulautus_NK = {s = d39 "pulautus"} ;
+lin puleerata_VK = {s = c73 "puleerata"} ;
+lin puleeraus_NK = {s = d39 "puleeraus"} ;
+lin puli_1_NK = {s = d05 "puli"} ;
+lin puli_2_NK = {s = d05 "puli"} ;
+lin puli_3_NK = {s = d05 "puli"} ;
+lin pulikka_NK = {s = d14A "pulikka"} ;
+lin pulikoida_VK = {s = c62 "pulikoida"} ;
+lin pulikointi_NK = {s = d05A "pulikointi"} ;
+lin pulina_NK = {s = d12 "pulina"} ;
+lin pulisonki_NK = {s = d05A "pulisonki"} ;
+lin pulista_VK = {s = c66 "pulista"} ;
+lin pulittaa_VK = {s = c53A "pulittaa"} ;
+lin puliveivari_NK = {s = d06 "puliveivari"} ;
+lin puliveivata_VK = {s = c73 "puliveivata"} ;
+lin pulja_NK = {s = d10 "pulja"} ;
+lin pulju_NK = {s = d01 "pulju"} ;
+lin pulkka_1_NK = {s = d10A "pulkka"} ;
+lin pulkka_2_NK = {s = d10A "pulkka"} ;
+lin pulla_NK = {s = d10 "pulla"} ;
+lin pullahtaa_VK = {s = c53A "pullahtaa"} ;
+lin pullauttaa_VK = {s = c53A "pullauttaa"} ;
+lin pullea_NK = {s = d15 "pullea"} ;
+lin pulliainen_NK = {s = d38 "pulliainen"} ;
+lin pullikoida_VK = {s = c68 "pullikoida"} ;
+lin pullikointi_NK = {s = d05A "pullikointi"} ;
+lin pullistaa_VK = {s = c53 "pullistaa"} ;
+lin pullistella_VK = {s = c67 "pullistella"} ;
+lin pullistelu_NK = {s = d02 "pullistelu"} ;
+lin pullistua_VK = {s = c52 "pullistua"} ;
+lin pullistuma_NK = {s = d10 "pullistuma"} ;
+lin pullistus_NK = {s = d39 "pullistus"} ;
+lin pullo_NK = {s = d01 "pullo"} ;
+lin pulloittain_AdvK = {s = c99 "pulloittain"} ;
+lin pullollaan_AdvK = {s = c99 "pullollaan"} ;
+lin pullolleen_AdvK = {s = c99 "pullolleen"} ;
+lin pullollinen_NK = {s = d38 "pullollinen"} ;
+lin pullote_NK = {s = d48A "pullote"} ;
+lin pullottaa_VK = {s = c53A "pullottaa"} ;
+lin pullottamo_NK = {s = d02 "pullottamo"} ;
+lin pullotus_NK = {s = d39 "pullotus"} ;
+lin pullukka_NK = {s = d14A "pullukka"} ;
+lin pulma_NK = {s = d10 "pulma"} ;
+lin pulmallinen_NK = {s = d38 "pulmallinen"} ;
+lin pulmallisuus_NK = {s = d40 "pulmallisuus"} ;
+lin pulmu_NK = {s = d01 "pulmu"} ;
+lin pulmunen_NK = {s = d38 "pulmunen"} ;
+lin pulpahdella_VK = {s = c67A "pulpahdella"} ;
+lin pulpahtaa_VK = {s = c53A "pulpahtaa"} ;
+lin pulpetti_NK = {s = d05A "pulpetti"} ;
+lin pulppuilla_VK = {s = c67 "pulppuilla"} ;
+lin pulputa_VK = {s = c74A "pulputa"} ;
+lin pulputtaa_VK = {s = c53A "pulputtaa"} ;
+lin pulputus_NK = {s = d39 "pulputus"} ;
+lin pulsaatio_NK = {s = d03 "pulsaatio"} ;
+lin pulsaattori_NK = {s = d06 "pulsaattori"} ;
+lin pulsari_NK = {s = d06 "pulsari"} ;
+lin pulska_AK = {s = d10 "pulska"} ;
+--+ lin pulskasti_AdvK = {s = c99 "pulskasti"} ;
+lin pulskistaa_VK = {s = c53 "pulskistaa"} ;
+lin pulskistua_VK = {s = c52 "pulskistua"} ;
+lin pulssi_NK = {s = d05 "pulssi"} ;
+lin pultata_VK = {s = c73A "pultata"} ;
+lin pulteri_NK = {s = d06 "pulteri"} ;
+lin pultittaa_VK = {s = c53A "pultittaa"} ;
+lin pultsari_NK = {s = d06 "pultsari"} ;
+lin pulttaus_NK = {s = d39 "pulttaus"} ;
+lin pultti_1_NK = {s = d05A "pultti"} ;
+lin pultti_2_NK = {s = d05A "pultti"} ;
+lin pulu_NK = {s = d01 "pulu"} ;
+lin pulveri_NK = {s = d06 "pulveri"} ;
+lin pulverisaattori_NK = {s = d06 "pulverisaattori"} ;
+lin pulveroida_VK = {s = c62 "pulveroida"} ;
+lin pulveroitua_VK = {s = c52A "pulveroitua"} ;
+lin pumasiini_NK = {s = d05 "pumasiini"} ;
+lin pumaska_NK = {s = d13 "pumaska"} ;
+lin pummata_VK = {s = c73 "pummata"} ;
+lin pummaus_NK = {s = d39 "pummaus"} ;
+lin pummi_NK = {s = d05 "pummi"} ;
+lin pumpata_VK = {s = c73A "pumpata"} ;
+lin pumpernikkeli_NK = {s = d06 "pumpernikkeli"} ;
+lin pumppaamo_NK = {s = d02 "pumppaamo"} ;
+lin pumppaus_NK = {s = d39 "pumppaus"} ;
+lin pumppu_NK = {s = d01A "pumppu"} ;
+lin pumppuamo_NK = {s = d02 "pumppuamo"} ;
+lin pumpuli_NK = {s = d06 "pumpuli"} ;
+lin pumpulinen_NK = {s = d38 "pumpulinen"} ;
+lin pumputa_VK = {s = c74A "pumputa"} ;
+lin puna_NK = {s = d10 "puna"} ;
+lin punahehkuinen_NK = {s = d38 "punahehkuinen"} ;
+lin punahelttainen_NK = {s = d38 "punahelttainen"} ;
+lin punainen_NK = {s = d38 "punainen"} ;
+lin punaisuus_NK = {s = d40 "punaisuus"} ;
+lin punajuuri_NK = {s = d26 "punajuuri"} ;
+lin punakka_NK = {s = d14A "punakka"} ;
+lin punakko_NK = {s = d04A "punakko"} ;
+lin punakkuus_NK = {s = d40 "punakkuus"} ;
+lin punakoitua_VK = {s = c52A "punakoitua"} ;
+lin punastella_VK = {s = c67 "punastella"} ;
+lin punastelu_NK = {s = d02 "punastelu"} ;
+lin punastua_VK = {s = c52 "punastua"} ;
+lin punastus_NK = {s = d39 "punastus"} ;
+lin punastuttaa_VK = {s = c53A "punastuttaa"} ;
+lin punata_VK = {s = c73 "punata"} ;
+lin punatulkku_NK = {s = d01A "punatulkku"} ;
+lin punaus_NK = {s = d39 "punaus"} ;
+lin punavaloinen_NK = {s = d38 "punavaloinen"} ;
+lin pune_NK = {s = d48 "pune"} ;
+lin punehtia_VK = {s = c61A "punehtia"} ;
+lin punehtua_VK = {s = c52A "punehtua"} ;
+lin punehtuma_NK = {s = d10 "punehtuma"} ;
+lin punerrus_NK = {s = d39 "punerrus"} ;
+lin punerruttaa_VK = {s = c53A "punerruttaa"} ;
+lin punertaa_VK = {s = c54A "punertaa"} ;
+lin punertava_NK = {s = d10 "punertava"} ;
+lin punertua_VK = {s = c52A "punertua"} ;
+lin punerva_NK = {s = d10 "punerva"} ;
+lin punikki_NK = {s = d05A "punikki"} ;
+lin punk_NK = {s = d05 "punk"} ;
+lin punka_NK = {s = d10A "punka"} ;
+lin punkka_1_NK = {s = d10A "punkka"} ;
+lin punkka_2_NK = {s = d10A "punkka"} ;
+lin punkki_1_NK = {s = d05A "punkki"} ;
+lin punkki_2_NK = {s = d05A "punkki"} ;
+lin punkku_NK = {s = d01A "punkku"} ;
+lin punkteerata_VK = {s = c73 "punkteerata"} ;
+lin punktio_NK = {s = d03 "punktio"} ;
+lin punktoida_VK = {s = c62 "punktoida"} ;
+lin punnerrus_NK = {s = d39 "punnerrus"} ;
+lin punnertaa_VK = {s = c54A "punnertaa"} ;
+lin punninta_NK = {s = d09A "punninta"} ;
+lin punnita_VK = {s = c69 "punnita"} ;
+lin punnitus_NK = {s = d39 "punnitus"} ;
+lin punnus_NK = {s = d39 "punnus"} ;
+lin punoa_VK = {s = c52 "punoa"} ;
+lin punoittaa_VK = {s = c53A "punoittaa"} ;
+lin punoittua_VK = {s = c52A "punoittua"} ;
+lin punoitus_NK = {s = d39 "punoitus"} ;
+lin punoja_NK = {s = d10 "punoja"} ;
+lin punonnainen_NK = {s = d38 "punonnainen"} ;
+lin punonta_NK = {s = d09A "punonta"} ;
+lin punontainen_NK = {s = d38 "punontainen"} ;
+lin punos_NK = {s = d39 "punos"} ;
+lin punoutua_VK = {s = c52A "punoutua"} ;
+lin punssi_NK = {s = d05 "punssi"} ;
+lin punta_NK = {s = d10A "punta"} ;
+lin puntari_NK = {s = d06 "puntari"} ;
+lin puntaroida_VK = {s = c62 "puntaroida"} ;
+lin puntarointi_NK = {s = d05A "puntarointi"} ;
+lin puntata_VK = {s = c73A "puntata"} ;
+lin puntis_NK = {s = d39 "puntis"} ;
+lin puntti_1_NK = {s = d05A "puntti"} ;
+lin puntti_2_NK = {s = d05A "puntti"} ;
+lin puntti_3_NK = {s = d05A "puntti"} ;
+lin puola_1_NK = {s = d10 "puola"} ;
+lin puola_2_NK = {s = d10 "puola"} ;
+lin puola_3_NK = {s = d09 "puola"} ;
+lin puolain_NK = {s = d33 "puolain"} ;
+lin puolainen_NK = {s = d38 "puolainen"} ;
+lin puolalaisuus_NK = {s = d40 "puolalaisuus"} ;
+lin puolantaa_VK = {s = c54A "puolantaa"} ;
+lin puolasto_NK = {s = d02 "puolasto"} ;
+lin puolata_VK = {s = c73 "puolata"} ;
+lin puolaus_NK = {s = d39 "puolaus"} ;
+lin puoleen_AdvK = {s = c99 "puoleen"} ;
+lin puoleinen_AK = {s = d38 "puoleinen"} ;
+--+ lin puoleisesti_AdvK = {s = c99 "puoleisesti"} ;
+lin puoleksi_AdvK = {s = c99 "puoleksi"} ;
+lin puolesta_AdvK = {s = c99 "puolesta"} ;
+lin puoli_NK = {s = d26 "puoli"} ;
+lin puoliaika_NK = {s = d09A "puoliaika"} ;
+lin puolihorroksiin_AdvK = {s = c99 "puolihorroksiin"} ;
+lin puolihorroksissa_AdvK = {s = c99 "puolihorroksissa"} ;
+lin puolihorroksista_AdvK = {s = c99 "puolihorroksista"} ;
+lin puoliintua_VK = {s = c52A "puoliintua"} ;
+lin puoliintumisaika_NK = {s = d09A "puoliintumisaika"} ;
+lin puolijuoksua_AdvK = {s = c99 "puolijuoksua"} ;
+lin puolikas_NK = {s = d41A "puolikas"} ;
+lin puoliksi_AdvK = {s = c99 "puoliksi"} ;
+lin puolillaan_AdvK = {s = c99 "puolillaan"} ;
+lin puolilleen_AdvK = {s = c99 "puolilleen"} ;
+lin puolila'pa'iseva'_NK = {s = d10 "puoliläpäisevä"} ;
+lin puolimmainen_NK = {s = d38 "puolimmainen"} ;
+lin puolima'essa'_AdvK = {s = c99 "puolimäessä"} ;
+lin puolima'esta'_AdvK = {s = c99 "puolimäestä"} ;
+lin puolima'keen_AdvK = {s = c99 "puolimäkeen"} ;
+--+ lin puolinaisesti_AdvK = {s = c99 "puolinaisesti"} ;
+lin puolinen_NK = {s = d38 "puolinen"} ;
+lin puolipolveen_AdvK = {s = c99 "puolipolveen"} ;
+lin puolipukeinen_NK = {s = d38 "puolipukeinen"} ;
+lin puolipukeissa_AdvK = {s = c99 "puolipukeissa"} ;
+lin puolipukeissaan_AdvK = {s = c99 "puolipukeissaan"} ;
+lin puolireidessa'_AdvK = {s = c99 "puolireidessä"} ;
+lin puolireiteen_AdvK = {s = c99 "puolireiteen"} ;
+lin puoliselka'a'n_AdvK = {s = c99 "puoliselkään"} ;
+lin puolisela'ssa'_AdvK = {s = c99 "puoliselässä"} ;
+lin puolisela'sta'_AdvK = {s = c99 "puoliselästä"} ;
+lin puolisen_AdvK = {s = c99 "puolisen"} ;
+lin puolisenkymmenta'_AdvK = {s = c99 "puolisenkymmentä"} ;
+lin puolisensataa_AdvK = {s = c99 "puolisensataa"} ;
+lin puolisentoista_AdvK = {s = c99 "puolisentoista"} ;
+lin puolisentoistasataa_AdvK = {s = c99 "puolisentoistasataa"} ;
+lin puolisko_NK = {s = d02 "puolisko"} ;
+lin puoliso_NK = {s = d02 "puoliso"} ;
+lin puolisa'a'reen_AdvK = {s = c99 "puolisääreen"} ;
+lin puolisa'a'ressa'_AdvK = {s = c99 "puolisääressä"} ;
+lin puolisa'a'resta'_AdvK = {s = c99 "puolisäärestä"} ;
+lin puolitalveen_AdvK = {s = c99 "puolitalveen"} ;
+lin puolitalvessa_AdvK = {s = c99 "puolitalvessa"} ;
+lin puolitalvesta_AdvK = {s = c99 "puolitalvesta"} ;
+lin puolitangossa_AdvK = {s = c99 "puolitangossa"} ;
+lin puolitankoon_AdvK = {s = c99 "puolitankoon"} ;
+lin puolitiehen_AdvK = {s = c99 "puolitiehen"} ;
+lin puolitiessa'_AdvK = {s = c99 "puolitiessä"} ;
+lin puolitiesta'_AdvK = {s = c99 "puolitiestä"} ;
+lin puolitonnari_NK = {s = d06 "puolitonnari"} ;
+lin puolitse_AdvK = {s = c99 "puolitse"} ;
+lin puolittaa_VK = {s = c53A "puolittaa"} ;
+lin puolittain_AdvK = {s = c99 "puolittain"} ;
+lin puolittainen_NK = {s = d38 "puolittainen"} ;
+lin puolittua_VK = {s = c52A "puolittua"} ;
+lin puolitus_NK = {s = d39 "puolitus"} ;
+lin puoliuneen_AdvK = {s = c99 "puoliuneen"} ;
+lin puoliunessa_AdvK = {s = c99 "puoliunessa"} ;
+lin puoliutua_VK = {s = c52A "puoliutua"} ;
+lin puolivahingossa_AdvK = {s = c99 "puolivahingossa"} ;
+lin puolivaiheilla_AdvK = {s = c99 "puolivaiheilla"} ;
+lin puolivaiheille_AdvK = {s = c99 "puolivaiheille"} ;
+--+ lin puolivillaisesti_AdvK = {s = c99 "puolivillaisesti"} ;
+lin puolivillaisuus_NK = {s = d40 "puolivillaisuus"} ;
+lin puolivoltti_NK = {s = d05A "puolivoltti"} ;
+lin puoltaa_VK = {s = c54A "puoltaa"} ;
+lin puoltaja_NK = {s = d10 "puoltaja"} ;
+lin puolto_NK = {s = d01A "puolto"} ;
+lin puolue_NK = {s = d48 "puolue"} ;
+lin puolueellinen_AK = {s = d38 "puolueellinen"} ;
+--+ lin puolueellisesti_AdvK = {s = c99 "puolueellisesti"} ;
+lin puolueellisuus_NK = {s = d40 "puolueellisuus"} ;
+lin puolueeton_NK = {s = d34A "puolueeton"} ;
+lin puolueettomasti_AdvK = {s = c99 "puolueettomasti"} ;
+lin puolueettomuus_NK = {s = d40 "puolueettomuus"} ;
+lin puolueinen_NK = {s = d38 "puolueinen"} ;
+lin puolueittain_AdvK = {s = c99 "puolueittain"} ;
+lin puolukka_NK = {s = d14A "puolukka"} ;
+lin puolustaa_VK = {s = c53 "puolustaa"} ;
+lin puolustaja_NK = {s = d10 "puolustaja"} ;
+lin puolustamaton_NK = {s = d34A "puolustamaton"} ;
+lin puolustautua_VK = {s = c52A "puolustautua"} ;
+lin puolustella_VK = {s = c67 "puolustella"} ;
+lin puolustelu_NK = {s = d02 "puolustelu"} ;
+lin puolustuksellinen_AK = {s = d38 "puolustuksellinen"} ;
+--+ lin puolustuksellisesti_AdvK = {s = c99 "puolustuksellisesti"} ;
+lin puolustuksellisuus_NK = {s = d40 "puolustuksellisuus"} ;
+lin puolustus_NK = {s = d39 "puolustus"} ;
+lin puomi_NK = {s = d05 "puomi"} ;
+lin puomittaa_VK = {s = c53A "puomittaa"} ;
+lin puomitus_NK = {s = d39 "puomitus"} ;
+lin puoshaka_NK = {s = d09A "puoshaka"} ;
+lin puoskari_NK = {s = d06 "puoskari"} ;
+lin puoskaroida_VK = {s = c62 "puoskaroida"} ;
+lin puoskaroija_NK = {s = d10 "puoskaroija"} ;
+lin puoskarointi_NK = {s = d05A "puoskarointi"} ;
+lin puosu_NK = {s = d01 "puosu"} ;
+lin puoti_NK = {s = d05A "puoti"} ;
+lin puotipuksu_NK = {s = d01 "puotipuksu"} ;
+lin pupellus_NK = {s = d39 "pupellus"} ;
+lin pupeltaa_VK = {s = c54A "pupeltaa"} ;
+lin pupilli_NK = {s = d05 "pupilli"} ;
+lin puppu_NK = {s = d01A "puppu"} ;
+lin pupu_NK = {s = d01 "pupu"} ;
+lin puputtaa_VK = {s = c53A "puputtaa"} ;
+lin puraista_VK = {s = c66 "puraista"} ;
+lin puraisu_NK = {s = d02 "puraisu"} ;
+lin purasin_NK = {s = d33 "purasin"} ;
+lin purattaa_VK = {s = c53A "purattaa"} ;
+lin pureksia_VK = {s = c61 "pureksia"} ;
+lin purema_NK = {s = d10 "purema"} ;
+lin puremahaava_NK = {s = d09 "puremahaava"} ;
+lin purenta_NK = {s = d09A "purenta"} ;
+lin pureskelija_NK = {s = d12 "pureskelija"} ;
+lin pureskella_VK = {s = c67 "pureskella"} ;
+lin pureskelu_NK = {s = d02 "pureskelu"} ;
+lin pureutua_VK = {s = c52A "pureutua"} ;
+lin pureva_AK = {s = d10 "pureva"} ;
+--+ lin purevasti_AdvK = {s = c99 "purevasti"} ;
+lin purevuus_NK = {s = d40 "purevuus"} ;
+lin purija_NK = {s = d12 "purija"} ;
+lin purilainen_NK = {s = d38 "purilainen"} ;
+lin purilas_NK = {s = d41 "purilas"} ;
+lin purismi_NK = {s = d05 "purismi"} ;
+lin puristaa_VK = {s = c53 "puristaa"} ;
+lin puristautua_VK = {s = c52A "puristautua"} ;
+lin puriste_NK = {s = d48 "puriste"} ;
+lin puristeinen_AK = {s = d38 "puristeinen"} ;
+--+ lin puristeisesti_AdvK = {s = c99 "puristeisesti"} ;
+lin puristeisuus_NK = {s = d40 "puristeisuus"} ;
+lin puristella_VK = {s = c67 "puristella"} ;
+lin puristelu_NK = {s = d02 "puristelu"} ;
+lin puristi_NK = {s = d05 "puristi"} ;
+lin puristin_NK = {s = d33 "puristin"} ;
+lin puristinen_AK = {s = d38 "puristinen"} ;
+--+ lin puristisesti_AdvK = {s = c99 "puristisesti"} ;
+lin puristisuus_NK = {s = d40 "puristisuus"} ;
+lin puristua_VK = {s = c52 "puristua"} ;
+lin puristuma_NK = {s = d10 "puristuma"} ;
+lin puristus_NK = {s = d39 "puristus"} ;
+lin puristuvuus_NK = {s = d40 "puristuvuus"} ;
+lin puritaani_NK = {s = d05 "puritaani"} ;
+lin puritaaninen_AK = {s = d38 "puritaaninen"} ;
+--+ lin puritaanisesti_AdvK = {s = c99 "puritaanisesti"} ;
+lin puritaanisuus_NK = {s = d40 "puritaanisuus"} ;
+lin puritanismi_NK = {s = d05 "puritanismi"} ;
+lin purje_NK = {s = d48 "purje"} ;
+lin purjehdus_NK = {s = d39 "purjehdus"} ;
+lin purjehtia_VK = {s = c61A "purjehtia"} ;
+lin purjehtija_NK = {s = d12 "purjehtija"} ;
+lin purjeinen_NK = {s = d38 "purjeinen"} ;
+lin purjo_NK = {s = d01 "purjo"} ;
+lin purkaa_VK = {s = c53A "purkaa"} ;
+lin purkaantua_VK = {s = c52A "purkaantua"} ;
+lin purkaja_NK = {s = d10 "purkaja"} ;
+lin purkamo_NK = {s = d02 "purkamo"} ;
+lin purkauma_NK = {s = d10 "purkauma"} ;
+lin purkaus_NK = {s = d39 "purkaus"} ;
+lin purkautua_VK = {s = c52A "purkautua"} ;
+lin purkautuma_NK = {s = d10 "purkautuma"} ;
+lin purkillinen_NK = {s = d38 "purkillinen"} ;
+lin purkittaa_VK = {s = c53A "purkittaa"} ;
+lin purkka_NK = {s = d10A "purkka"} ;
+lin purkki_NK = {s = d05A "purkki"} ;
+lin purku_NK = {s = d01A "purku"} ;
+lin purnaaja_NK = {s = d10 "purnaaja"} ;
+lin purnari_NK = {s = d06 "purnari"} ;
+lin purnata_VK = {s = c73 "purnata"} ;
+lin purnaus_NK = {s = d39 "purnaus"} ;
+lin purnukka_NK = {s = d14A "purnukka"} ;
+lin puro_NK = {s = d01 "puro"} ;
+lin purppura_NK = {s = d12 "purppura"} ;
+lin purppurainen_NK = {s = d38 "purppurainen"} ;
+lin purppuri_NK = {s = d06 "purppuri"} ;
+lin purppuroida_VK = {s = c62 "purppuroida"} ;
+lin purpura_NK = {s = d12 "purpura"} ;
+lin purpuri_NK = {s = d06 "purpuri"} ;
+lin purra_VK = {s = c67 "purra"} ;
+lin purse_NK = {s = d48 "purse"} ;
+lin purseri_NK = {s = d06 "purseri"} ;
+lin pursi_NK = {s = d28 "pursi"} ;
+lin purskahdella_VK = {s = c67A "purskahdella"} ;
+lin purskahdus_NK = {s = d39 "purskahdus"} ;
+lin purskahtaa_VK = {s = c53A "purskahtaa"} ;
+lin purskaus_NK = {s = d39 "purskaus"} ;
+lin purskauttaa_VK = {s = c53A "purskauttaa"} ;
+lin purskua_VK = {s = c52 "purskua"} ;
+lin purskutella_VK = {s = c67A "purskutella"} ;
+lin purskuttaa_VK = {s = c53A "purskuttaa"} ;
+lin purskutus_NK = {s = d39 "purskutus"} ;
+lin purso_NK = {s = d01 "purso"} ;
+lin pursotin_NK = {s = d33A "pursotin"} ;
+lin pursottaa_VK = {s = c53A "pursottaa"} ;
+lin pursotus_NK = {s = d39 "pursotus"} ;
+lin pursu_NK = {s = d01 "pursu"} ;
+lin pursua_VK = {s = c52 "pursua"} ;
+lin pursuilla_VK = {s = c67 "pursuilla"} ;
+lin pursuta_VK = {s = c74 "pursuta"} ;
+lin purtilo_NK = {s = d02 "purtilo"} ;
+lin purtojuuri_NK = {s = d26 "purtojuuri"} ;
+lin puru_NK = {s = d01 "puru"} ;
+lin pus_AdvK = {s = c99 "pus"} ;
+lin pusata_VK = {s = c73 "pusata"} ;
+lin puseroinen_NK = {s = d38 "puseroinen"} ;
+lin puseroisillaan_AdvK = {s = c99 "puseroisillaan"} ;
+lin puseroisilleen_AdvK = {s = c99 "puseroisilleen"} ;
+lin puserrin_NK = {s = d33A "puserrin"} ;
+lin puserrus_NK = {s = d39 "puserrus"} ;
+lin pusertaa_VK = {s = c54A "pusertaa"} ;
+lin pusertautua_VK = {s = c52A "pusertautua"} ;
+lin pusertua_VK = {s = c52A "pusertua"} ;
+lin pusi_AdvK = {s = c99 "pusi"} ;
+lin pusia_VK = {s = c61 "pusia"} ;
+lin pusikko_NK = {s = d04A "pusikko"} ;
+lin puska_NK = {s = d10 "puska"} ;
+lin puskea_VK = {s = c58 "puskea"} ;
+lin puskeutua_VK = {s = c52A "puskeutua"} ;
+lin puskija_NK = {s = d12 "puskija"} ;
+lin puskikko_NK = {s = d04A "puskikko"} ;
+lin puskin_NK = {s = d33 "puskin"} ;
+lin pusku_NK = {s = d01 "pusku"} ;
+lin puskuroida_VK = {s = c62 "puskuroida"} ;
+lin pussailla_VK = {s = c67 "pussailla"} ;
+lin pussailu_NK = {s = d02 "pussailu"} ;
+lin pussata_VK = {s = c73 "pussata"} ;
+lin pusseittain_AdvK = {s = c99 "pusseittain"} ;
+lin pussi_NK = {s = d05 "pussi"} ;
+lin pussikko_NK = {s = d04A "pussikko"} ;
+lin pussillinen_NK = {s = d38 "pussillinen"} ;
+lin pussittaa_VK = {s = c53A "pussittaa"} ;
+lin pussitus_NK = {s = d39 "pussitus"} ;
+lin pussiutuma_NK = {s = d10 "pussiutuma"} ;
+lin pusta_NK = {s = d10 "pusta"} ;
+lin pustula_NK = {s = d12 "pustula"} ;
+lin pusu_NK = {s = d01 "pusu"} ;
+lin putata_VK = {s = c73A "putata"} ;
+lin puteli_NK = {s = d06 "puteli"} ;
+lin putelli_NK = {s = d06 "putelli"} ;
+lin putiikki_NK = {s = d05A "putiikki"} ;
+lin putinki_NK = {s = d05A "putinki"} ;
+lin putka_NK = {s = d10 "putka"} ;
+lin putkahdella_VK = {s = c67A "putkahdella"} ;
+lin putkahtaa_VK = {s = c53A "putkahtaa"} ;
+lin putki_NK = {s = d07 "putki"} ;
+lin putkilo_NK = {s = d02 "putkilo"} ;
+lin putkinen_NK = {s = d38 "putkinen"} ;
+lin putkisto_NK = {s = d02 "putkisto"} ;
+lin putkittaa_VK = {s = c53A "putkittaa"} ;
+lin putkitus_NK = {s = d39 "putkitus"} ;
+lin putkiyhde_NK = {s = d48A "putkiyhde"} ;
+lin putoaja_NK = {s = d10 "putoaja"} ;
+lin putoama_NK = {s = d10 "putoama"} ;
+lin putoilla_VK = {s = c67 "putoilla"} ;
+lin putous_NK = {s = d39 "putous"} ;
+lin putsata_VK = {s = c73 "putsata"} ;
+lin putsaus_NK = {s = d39 "putsaus"} ;
+lin puttaus_NK = {s = d39 "puttaus"} ;
+lin putti_NK = {s = d05A "putti"} ;
+lin putto_NK = {s = d01A "putto"} ;
+lin puu_NK = {s = d18 "puu"} ;
+lin puudeli_NK = {s = d06 "puudeli"} ;
+lin puuduksiin_AdvK = {s = c99 "puuduksiin"} ;
+lin puuduksissa_AdvK = {s = c99 "puuduksissa"} ;
+lin puudute_NK = {s = d48A "puudute"} ;
+lin puuduttaa_VK = {s = c53A "puuduttaa"} ;
+lin puudutus_NK = {s = d39 "puudutus"} ;
+lin puuha_NK = {s = d10 "puuha"} ;
+lin puuhaaja_NK = {s = d10 "puuhaaja"} ;
+lin puuhailija_NK = {s = d12 "puuhailija"} ;
+lin puuhailla_VK = {s = c67 "puuhailla"} ;
+lin puuhailu_NK = {s = d02 "puuhailu"} ;
+lin puuhakas_AK = {s = d41A "puuhakas"} ;
+--+ lin puuhakkaasti_AdvK = {s = c99 "puuhakkaasti"} ;
+lin puuhakkuus_NK = {s = d40 "puuhakkuus"} ;
+lin puuhastella_VK = {s = c67 "puuhastella"} ;
+lin puuhastelu_NK = {s = d02 "puuhastelu"} ;
+lin puuhata_VK = {s = c73 "puuhata"} ;
+lin puuhka_NK = {s = d10 "puuhka"} ;
+lin puukko_NK = {s = d01A "puukko"} ;
+lin puukonhaava_NK = {s = d09 "puukonhaava"} ;
+lin puukottaa_VK = {s = c53A "puukottaa"} ;
+lin puukottaja_NK = {s = d10 "puukottaja"} ;
+lin puukotus_NK = {s = d39 "puukotus"} ;
+lin puuma_NK = {s = d10 "puuma"} ;
+lin puunilainen_NK = {s = d38 "puunilainen"} ;
+lin puunjuuri_NK = {s = d26 "puunjuuri"} ;
+lin puunkuori_NK = {s = d26 "puunkuori"} ;
+lin puunto_NK = {s = d01A "puunto"} ;
+lin puuro_NK = {s = d01 "puuro"} ;
+lin puuroinen_NK = {s = d38 "puuroinen"} ;
+lin puurouttaa_VK = {s = c53A "puurouttaa"} ;
+lin puuroutua_VK = {s = c52A "puuroutua"} ;
+lin puurtaa_VK = {s = c54A "puurtaa"} ;
+lin puusee_NK = {s = d18 "puusee"} ;
+lin puuska_NK = {s = d10 "puuska"} ;
+lin puuskahtaa_VK = {s = c53A "puuskahtaa"} ;
+lin puuskainen_NK = {s = d38 "puuskainen"} ;
+lin puuskassa_AdvK = {s = c99 "puuskassa"} ;
+lin puuskittain_AdvK = {s = c99 "puuskittain"} ;
+lin puuskittainen_AK = {s = d38 "puuskittainen"} ;
+--+ lin puuskittaisesti_AdvK = {s = c99 "puuskittaisesti"} ;
+lin puuskuttaa_VK = {s = c53A "puuskuttaa"} ;
+lin puuskutus_NK = {s = d39 "puuskutus"} ;
+lin puustelli_NK = {s = d05 "puustelli"} ;
+lin puusto_NK = {s = d01 "puusto"} ;
+lin puute_NK = {s = d48A "puute"} ;
+lin puuteri_NK = {s = d06 "puuteri"} ;
+lin puuteroida_VK = {s = c62 "puuteroida"} ;
+lin puuton_NK = {s = d34A "puuton"} ;
+lin puutos_NK = {s = d39 "puutos"} ;
+lin puutteellinen_AK = {s = d38 "puutteellinen"} ;
+--+ lin puutteellisesti_AdvK = {s = c99 "puutteellisesti"} ;
+lin puutteellisuus_NK = {s = d40 "puutteellisuus"} ;
+lin puuttua_VK = {s = c52A "puuttua"} ;
+lin puutua_VK = {s = c52A "puutua"} ;
+lin puutumus_NK = {s = d39 "puutumus"} ;
+lin puvustaa_VK = {s = c53 "puvustaa"} ;
+lin puvustaja_NK = {s = d10 "puvustaja"} ;
+lin puvustamo_NK = {s = d02 "puvustamo"} ;
+lin puvusto_NK = {s = d02 "puvusto"} ;
+lin puzzle_NK = {s = d08 "puzzle"} ;
+lin pygmi_NK = {s = d05 "pygmi"} ;
+lin pyh_AdvK = {s = c99 "pyh"} ;
+lin pyhimys_NK = {s = d39 "pyhimys"} ;
+lin pyhisin_AdvK = {s = c99 "pyhisin"} ;
+lin pyhitta'ytya'_VK = {s = c52A "pyhittäytyä"} ;
+lin pyhitta'a'_VK = {s = c53A "pyhittää"} ;
+lin pyhitys_NK = {s = d39 "pyhitys"} ;
+lin pyhyys_NK = {s = d40 "pyhyys"} ;
+lin pyha'_AK = {s = d10 "pyhä"} ;
+lin pyha'inen_NK = {s = d38 "pyhäinen"} ;
+lin pyha'isin_AdvK = {s = c99 "pyhäisin"} ;
+lin pyha'kko'_NK = {s = d04A "pyhäkkö"} ;
+lin pyha'llinen_NK = {s = d38 "pyhällinen"} ;
+lin pyha'pukeissaan_AdvK = {s = c99 "pyhäpukeissaan"} ;
+--+ lin pyha'sti_AdvK = {s = c99 "pyhästi"} ;
+lin pyha'tto'_NK = {s = d01A "pyhättö"} ;
+lin pyjama_NK = {s = d10 "pyjama"} ;
+lin pyjamaisillaan_AdvK = {s = c99 "pyjamaisillaan"} ;
+lin pykima'_NK = {s = d10 "pykimä"} ;
+lin pykia'_VK = {s = c61 "pykiä"} ;
+lin pyknikko_NK = {s = d04A "pyknikko"} ;
+lin pykninen_NK = {s = d38 "pykninen"} ;
+lin pyka'_NK = {s = d10A "pykä"} ;
+lin pyka'lika's_NK = {s = d41A "pykälikäs"} ;
+lin pyka'litta'in_AdvK = {s = c99 "pykälittäin"} ;
+lin pyka'la'_NK = {s = d10 "pykälä"} ;
+lin pyka'la'inen_NK = {s = d38 "pykäläinen"} ;
+lin pyka'lo'ida'_VK = {s = c62 "pykälöidä"} ;
+lin pyka'lo'inti_NK = {s = d05A "pykälöinti"} ;
+lin pyka'ta'_VK = {s = c73 "pykätä"} ;
+lin pylkka'_NK = {s = d10A "pylkkä"} ;
+lin pyllistella'_VK = {s = c67 "pyllistellä"} ;
+lin pyllistys_NK = {s = d39 "pyllistys"} ;
+lin pyllista'a'_VK = {s = c53 "pyllistää"} ;
+lin pylly_NK = {s = d01 "pylly"} ;
+lin pylla'hta'a'_VK = {s = c53A "pyllähtää"} ;
+lin pylla'ytta'a'_VK = {s = c53A "pylläyttää"} ;
+lin pyloni_NK = {s = d05 "pyloni"} ;
+lin pylpyra'_NK = {s = d12 "pylpyrä"} ;
+lin pylva'ikko'_NK = {s = d04A "pylväikkö"} ;
+lin pylva'inen_NK = {s = d38 "pylväinen"} ;
+lin pylva'isto'_NK = {s = d01 "pylväistö"} ;
+lin pylva's_NK = {s = d41 "pylväs"} ;
+lin pyntta'ytya'_VK = {s = c52A "pynttäytyä"} ;
+lin pynta'ta'_VK = {s = c73A "pyntätä"} ;
+lin pyramidi_NK = {s = d05 "pyramidi"} ;
+lin pyree_NK = {s = d20 "pyree"} ;
+lin pyriitti_NK = {s = d05A "pyriitti"} ;
+lin pyrinta'_NK = {s = d09A "pyrintä"} ;
+lin pyrinto'_NK = {s = d01A "pyrintö"} ;
+lin pyristella'_VK = {s = c67 "pyristellä"} ;
+lin pyristely_NK = {s = d02 "pyristely"} ;
+lin pyrkija'_NK = {s = d12 "pyrkijä"} ;
+lin pyrkimys_NK = {s = d39 "pyrkimys"} ;
+lin pyrkia'_VK = {s = c61A "pyrkiä"} ;
+lin pyrky_NK = {s = d01A "pyrky"} ;
+lin pyrkyri_NK = {s = d06 "pyrkyri"} ;
+lin pyrkyryys_NK = {s = d40 "pyrkyryys"} ;
+lin pyromaani_NK = {s = d05 "pyromaani"} ;
+lin pyromania_NK = {s = d12 "pyromania"} ;
+lin pyrskia'_VK = {s = c61 "pyrskiä"} ;
+lin pyrska'hdella'_VK = {s = c67A "pyrskähdellä"} ;
+lin pyrska'hdys_NK = {s = d39 "pyrskähdys"} ;
+lin pyrska'hta'a'_VK = {s = c53A "pyrskähtää"} ;
+lin pyrsto'_NK = {s = d01 "pyrstö"} ;
+lin pyrsto'inen_NK = {s = d38 "pyrstöinen"} ;
+lin pyrsto'ka's_NK = {s = d41A "pyrstökäs"} ;
+lin pyrsto'llinen_NK = {s = d38 "pyrstöllinen"} ;
+lin pyry_NK = {s = d01 "pyry"} ;
+lin pyryinen_NK = {s = d38 "pyryinen"} ;
+lin pyrytella'_VK = {s = c67A "pyrytellä"} ;
+lin pyryttya'_VK = {s = c52A "pyryttyä"} ;
+lin pyrytta'a'_VK = {s = c53A "pyryttää"} ;
+lin pyryta'_VK = {s = c75 "pyrytä"} ;
+lin pyra'hdella'_VK = {s = c67A "pyrähdellä"} ;
+lin pyra'hdys_NK = {s = d39 "pyrähdys"} ;
+lin pyra'hta'a'_VK = {s = c53A "pyrähtää"} ;
+lin pyssy_NK = {s = d01 "pyssy"} ;
+lin pyssytta'a'_VK = {s = c53A "pyssyttää"} ;
+lin pysti_NK = {s = d05 "pysti"} ;
+lin pystis_NK = {s = d39 "pystis"} ;
+lin pysty_NK = {s = d01 "pysty"} ;
+lin pystyma'to'n_NK = {s = d34A "pystymätön"} ;
+lin pystyssa'_AdvK = {s = c99 "pystyssä"} ;
+lin pystysta'_AdvK = {s = c99 "pystystä"} ;
+lin pystytella'_VK = {s = c67A "pystytellä"} ;
+lin pystytta'a'_VK = {s = c53A "pystyttää"} ;
+lin pystytys_NK = {s = d39 "pystytys"} ;
+lin pystyvyys_NK = {s = d40 "pystyvyys"} ;
+lin pystyva'_NK = {s = d10 "pystyvä"} ;
+lin pystyyn_AdvK = {s = c99 "pystyyn"} ;
+lin pystya'_VK = {s = c52 "pystyä"} ;
+lin pysto'_NK = {s = d01 "pystö"} ;
+lin pysyma'to'n_NK = {s = d34A "pysymätön"} ;
+lin pysytella'_VK = {s = c67A "pysytellä"} ;
+lin pysytta'ytya'_VK = {s = c52A "pysyttäytyä"} ;
+lin pysytta'a'_VK = {s = c53A "pysyttää"} ;
+lin pysyvyys_NK = {s = d40 "pysyvyys"} ;
+lin pysyva'_NK = {s = d10 "pysyvä"} ;
+lin pysyva'inen_AK = {s = d38 "pysyväinen"} ;
+--+ lin pysyva'isesti_AdvK = {s = c99 "pysyväisesti"} ;
+lin pysya'_VK = {s = c52 "pysyä"} ;
+lin pysa'hdella'_VK = {s = c67A "pysähdellä"} ;
+lin pysa'hdys_NK = {s = d39 "pysähdys"} ;
+lin pysa'hdysaika_NK = {s = d09A "pysähdysaika"} ;
+lin pysa'htyneisyys_NK = {s = d40 "pysähtyneisyys"} ;
+lin pysa'htya'_VK = {s = c52A "pysähtyä"} ;
+lin pysa'kki_NK = {s = d05A "pysäkki"} ;
+lin pysa'ko'ida'_VK = {s = c62 "pysäköidä"} ;
+lin pysa'ko'inti_NK = {s = d05A "pysäköinti"} ;
+lin pysa'ys_NK = {s = d39 "pysäys"} ;
+lin pysa'ytella'_VK = {s = c67A "pysäytellä"} ;
+lin pysa'ytin_NK = {s = d33A "pysäytin"} ;
+lin pysa'ytta'a'_VK = {s = c53A "pysäyttää"} ;
+lin pysa'ytys_NK = {s = d39 "pysäytys"} ;
+lin pytinki_NK = {s = d05A "pytinki"} ;
+lin pyton_NK = {s = d06 "pyton"} ;
+lin pytty_NK = {s = d01A "pytty"} ;
+lin pyttyilla'_VK = {s = c67 "pyttyillä"} ;
+lin pyttyma'inen_NK = {s = d38 "pyttymäinen"} ;
+lin pyttyyntya'_VK = {s = c52A "pyttyyntyä"} ;
+lin pytyllinen_NK = {s = d38 "pytyllinen"} ;
+lin pytytta'a'_VK = {s = c53A "pytyttää"} ;
+lin pyy_NK = {s = d18 "pyy"} ;
+lin pyyde_NK = {s = d48A "pyyde"} ;
+lin pyydella'_VK = {s = c67A "pyydellä"} ;
+lin pyydys_NK = {s = d39 "pyydys"} ;
+lin pyydystella'_VK = {s = c67 "pyydystellä"} ;
+lin pyydystys_NK = {s = d39 "pyydystys"} ;
+lin pyydysta'ja'_NK = {s = d10 "pyydystäjä"} ;
+lin pyydysta'a'_VK = {s = c53 "pyydystää"} ;
+lin pyyhe_NK = {s = d48A "pyyhe"} ;
+lin pyyhin_NK = {s = d33A "pyyhin"} ;
+lin pyyhinta'_NK = {s = d09A "pyyhintä"} ;
+lin pyyhkiytya'_VK = {s = c52A "pyyhkiytyä"} ;
+lin pyyhkia'_VK = {s = c61A "pyyhkiä"} ;
+lin pyyhka'ista'_VK = {s = c66 "pyyhkäistä"} ;
+lin pyyhka'isy_NK = {s = d02 "pyyhkäisy"} ;
+lin pyyha'lta'a'_VK = {s = c54A "pyyhältää"} ;
+lin pyykinpesija'_NK = {s = d12 "pyykinpesijä"} ;
+lin pyykitta'a'_VK = {s = c53A "pyykittää"} ;
+lin pyykitys_NK = {s = d39 "pyykitys"} ;
+lin pyykki_1_NK = {s = d05A "pyykki"} ;
+lin pyykki_2_NK = {s = d05A "pyykki"} ;
+lin pyykka'ri_NK = {s = d06 "pyykkäri"} ;
+lin pyyka'ta'_VK = {s = c73A "pyykätä"} ;
+lin pyylevyys_NK = {s = d40 "pyylevyys"} ;
+lin pyylevo'itya'_VK = {s = c52A "pyylevöityä"} ;
+lin pyynti_NK = {s = d05A "pyynti"} ;
+lin pyyntiaika_NK = {s = d09A "pyyntiaika"} ;
+lin pyynto'_NK = {s = d01A "pyyntö"} ;
+lin pyyteellinen_NK = {s = d38 "pyyteellinen"} ;
+lin pyyteellisyys_NK = {s = d40 "pyyteellisyys"} ;
+lin pyyteetto'ma'sti_AdvK = {s = c99 "pyyteettömästi"} ;
+lin pyyteeto'n_NK = {s = d34A "pyyteetön"} ;
+lin pyyta'ja'_NK = {s = d10 "pyytäjä"} ;
+lin pyyta'a'_VK = {s = c54A "pyytää"} ;
+lin pya'llinen_NK = {s = d38 "pyällinen"} ;
+lin pya'llys_NK = {s = d39 "pyällys"} ;
+lin pya'lta'a'_VK = {s = c54A "pyältää"} ;
+lin pyo'kki_NK = {s = d05A "pyökki"} ;
+lin pyo'kkinen_NK = {s = d38 "pyökkinen"} ;
+lin pyo'renta'a'_VK = {s = c54A "pyörentää"} ;
+lin pyo'reta'_VK = {s = c72 "pyöretä"} ;
+lin pyo'reys_NK = {s = d40 "pyöreys"} ;
+lin pyo'rea'_AK = {s = d15 "pyöreä"} ;
+--+ lin pyo'rea'sti_AdvK = {s = c99 "pyöreästi"} ;
+lin pyo'rinta'_NK = {s = d09A "pyörintä"} ;
+lin pyo'rina'_NK = {s = d12 "pyörinä"} ;
+lin pyo'riskella'_VK = {s = c67 "pyöriskellä"} ;
+lin pyo'ristys_NK = {s = d39 "pyöristys"} ;
+lin pyo'ristya'_VK = {s = c52 "pyöristyä"} ;
+lin pyo'rista'a'_VK = {s = c53 "pyöristää"} ;
+lin pyo'ritella'_VK = {s = c67A "pyöritellä"} ;
+lin pyo'rittely_NK = {s = d02 "pyörittely"} ;
+lin pyo'ritta'a'_VK = {s = c53A "pyörittää"} ;
+lin pyo'ritys_NK = {s = d39 "pyöritys"} ;
+lin pyo'ria'_VK = {s = c61 "pyöriä"} ;
+lin pyo'ria'inen_NK = {s = d38 "pyöriäinen"} ;
+lin pyo'rio'_NK = {s = d03 "pyöriö"} ;
+lin pyo'rre_NK = {s = d48A "pyörre"} ;
+lin pyo'rryksiin_AdvK = {s = c99 "pyörryksiin"} ;
+lin pyo'rryksissa'_AdvK = {s = c99 "pyörryksissä"} ;
+lin pyo'rryksista'_AdvK = {s = c99 "pyörryksistä"} ;
+lin pyo'rrytta'a'_VK = {s = c53A "pyörryttää"} ;
+lin pyo'rrytys_NK = {s = d39 "pyörrytys"} ;
+lin pyo'rteinen_NK = {s = d38 "pyörteinen"} ;
+lin pyo'rtyilla'_VK = {s = c67 "pyörtyillä"} ;
+lin pyo'rtya'_VK = {s = c52A "pyörtyä"} ;
+lin pyo'rtya'inen_NK = {s = d38 "pyörtyäinen"} ;
+lin pyo'rta'a'_VK = {s = c54A "pyörtää"} ;
+lin pyo'ry_NK = {s = d01 "pyöry"} ;
+lin pyo'rykka'_NK = {s = d14A "pyörykkä"} ;
+lin pyo'ryla'_NK = {s = d12 "pyörylä"} ;
+lin pyo'ra'_NK = {s = d10 "pyörä"} ;
+lin pyo'ra'hdella'_VK = {s = c67A "pyörähdellä"} ;
+lin pyo'ra'hdys_NK = {s = d39 "pyörähdys"} ;
+lin pyo'ra'hdytta'a'_VK = {s = c53A "pyörähdyttää"} ;
+lin pyo'ra'hta'a'_VK = {s = c53A "pyörähtää"} ;
+lin pyo'ra'ilija'_NK = {s = d12 "pyöräilijä"} ;
+lin pyo'ra'illa'_VK = {s = c67 "pyöräillä"} ;
+lin pyo'ra'ily_NK = {s = d02 "pyöräily"} ;
+lin pyo'ra'inen_NK = {s = d38 "pyöräinen"} ;
+lin pyo'ra'lle_AdvK = {s = c99 "pyörälle"} ;
+lin pyo'ra'llinen_NK = {s = d38 "pyörällinen"} ;
+lin pyo'ra'lla'_AdvK = {s = c99 "pyörällä"} ;
+lin pyo'ra'npuola_NK = {s = d10 "pyöränpuola"} ;
+lin pyo'ra'sto'_NK = {s = d02 "pyörästö"} ;
+lin pyo'ra'ys_NK = {s = d39 "pyöräys"} ;
+lin pyo'ra'ytta'a'_VK = {s = c53A "pyöräyttää"} ;
+lin pyo'ro'_NK = {s = d01 "pyörö"} ;
+lin pyo'veli_NK = {s = d06 "pyöveli"} ;
+lin pa'hkina'_NK = {s = d12 "pähkinä"} ;
+lin pa'hkina'hakki_NK = {s = d05A "pähkinähakki"} ;
+lin pa'hkina'nkuori_NK = {s = d26 "pähkinänkuori"} ;
+lin pa'hkia'_VK = {s = c61 "pähkiä"} ;
+lin pa'hkyla'_NK = {s = d12 "pähkylä"} ;
+lin pa'hka'illa'_VK = {s = c67 "pähkäillä"} ;
+lin pa'hka'ily_NK = {s = d02 "pähkäily"} ;
+lin pa'hka'mo'_NK = {s = d02 "pähkämö"} ;
+lin pa'ihde_NK = {s = d48A "päihde"} ;
+lin pa'ihdyksiin_AdvK = {s = c99 "päihdyksiin"} ;
+lin pa'ihdyksissa'_AdvK = {s = c99 "päihdyksissä"} ;
+lin pa'ihdytta'a'_VK = {s = c53A "päihdyttää"} ;
+lin pa'ihitta'a'_VK = {s = c53A "päihittää"} ;
+lin pa'ihtymys_NK = {s = d39 "päihtymys"} ;
+lin pa'ihtynyt_NK = {s = d47 "päihtynyt"} ;
+lin pa'ihtya'_VK = {s = c52A "päihtyä"} ;
+lin pa'ikka'in_AdvK = {s = c99 "päikkäin"} ;
+lin pa'ikseen_AdvK = {s = c99 "päikseen"} ;
+lin pa'ilya'_VK = {s = c52 "päilyä"} ;
+lin pa'in_AdvK = {s = c99 "päin"} ;
+lin pa'inen_NK = {s = d38 "päinen"} ;
+lin pa'insa'_AdvK = {s = c99 "päinsä"} ;
+lin pa'issa'a'n_AdvK = {s = c99 "päissään"} ;
+lin pa'iste_NK = {s = d48 "päiste"} ;
+lin pa'istikkaa_AdvK = {s = c99 "päistikkaa"} ;
+lin pa'iten_AdvK = {s = c99 "päiten"} ;
+--? lin pa'itset_NK = {s = d07 "päitset"} ;
+lin pa'itta'in_AdvK = {s = c99 "päittäin"} ;
+lin pa'itta'inen_NK = {s = d38 "päittäinen"} ;
+lin pa'ivemma'ksi_AdvK = {s = c99 "päivemmäksi"} ;
+lin pa'ivemma'lla'_AdvK = {s = c99 "päivemmällä"} ;
+lin pa'ivempa'na'_AdvK = {s = c99 "päivempänä"} ;
+lin pa'ivettya'_VK = {s = c52A "päivettyä"} ;
+lin pa'ivetta'a'_VK = {s = c53A "päivettää"} ;
+lin pa'ivetys_NK = {s = d39 "päivetys"} ;
+lin pa'ivikki_NK = {s = d05A "päivikki"} ;
+lin pa'ivisin_AdvK = {s = c99 "päivisin"} ;
+lin pa'ivitella'_VK = {s = c67A "päivitellä"} ;
+lin pa'ivittely_NK = {s = d02 "päivittely"} ;
+lin pa'ivitta'in_AdvK = {s = c99 "päivittäin"} ;
+lin pa'ivitta'inen_NK = {s = d38 "päivittäinen"} ;
+lin pa'ivitta'a'_VK = {s = c53A "päivittää"} ;
+lin pa'ivitys_NK = {s = d39 "päivitys"} ;
+lin pa'ivyri_NK = {s = d06 "päivyri"} ;
+lin pa'ivystys_NK = {s = d39 "päivystys"} ;
+lin pa'ivysta'ja'_NK = {s = d10 "päivystäjä"} ;
+lin pa'ivysta'a'_VK = {s = c53 "päivystää"} ;
+lin pa'iva'_NK = {s = d10 "päivä"} ;
+lin pa'iva'aika_NK = {s = d09A "päiväaika"} ;
+lin pa'iva'inen_NK = {s = d38 "päiväinen"} ;
+lin pa'iva'lleen_AdvK = {s = c99 "päivälleen"} ;
+lin pa'iva'llinen_NK = {s = d38 "päivällinen"} ;
+lin pa'iva'llisaika_NK = {s = d09A "päivällisaika"} ;
+lin pa'iva'nsini_NK = {s = d07 "päivänsini"} ;
+lin pa'iva'saikaan_AdvK = {s = c99 "päiväsaikaan"} ;
+lin pa'iva'selta'a'n_AdvK = {s = c99 "päiväseltään"} ;
+lin pa'iva'ta'_VK = {s = c73 "päivätä"} ;
+lin pa'iva'ys_NK = {s = d39 "päiväys"} ;
+lin pa'kista'a'_VK = {s = c53 "päkistää"} ;
+lin pa'kia'_NK = {s = d12 "päkiä"} ;
+lin pa'kia'inen_NK = {s = d38 "päkiäinen"} ;
+lin pa'lka'hta'a'_VK = {s = c53A "pälkähtää"} ;
+lin pa'lka'ha'sta'_AdvK = {s = c99 "pälkähästä"} ;
+lin pa'llistelija'_NK = {s = d12 "pällistelijä"} ;
+lin pa'llistella'_VK = {s = c67 "pällistellä"} ;
+lin pa'llistely_NK = {s = d02 "pällistely"} ;
+lin pa'lpa'tta'a'_VK = {s = c53A "pälpättää"} ;
+lin pa'lpa'tys_NK = {s = d39 "pälpätys"} ;
+lin pa'lvi_NK = {s = d07 "pälvi"} ;
+lin pa'lvitta'in_AdvK = {s = c99 "pälvittäin"} ;
+lin pa'lyilla'_VK = {s = c67 "pälyillä"} ;
+lin pa'lyily_NK = {s = d02 "pälyily"} ;
+lin pa'la'tta'a'_VK = {s = c53A "pälättää"} ;
+lin pa'la'tys_NK = {s = d39 "pälätys"} ;
+lin pa'mpa'ta'_VK = {s = c73A "pämpätä"} ;
+lin pa'nnia'_VK = {s = c61 "pänniä"} ;
+lin pa'nna'_NK = {s = d10 "pännä"} ;
+lin pa'ntta'ys_NK = {s = d39 "pänttäys"} ;
+lin pa'nta'ta'_VK = {s = c73A "päntätä"} ;
+lin pa're_NK = {s = d48 "päre"} ;
+lin pa'repihti_NK = {s = d05A "pärepihti"} ;
+lin pa'rina'_NK = {s = d12 "pärinä"} ;
+lin pa'rista'_VK = {s = c66 "päristä"} ;
+lin pa'rista'a'_VK = {s = c53 "päristää"} ;
+lin pa'risytta'a'_VK = {s = c53A "pärisyttää"} ;
+lin pa'rja'illa'_VK = {s = c67 "pärjäillä"} ;
+lin pa'rja'ta'_VK = {s = c73 "pärjätä"} ;
+lin pa'rpa'tta'a'_VK = {s = c53A "pärpättää"} ;
+lin pa'rpa'tys_NK = {s = d39 "pärpätys"} ;
+lin pa'rske_NK = {s = d48 "pärske"} ;
+lin pa'rskina'_NK = {s = d12 "pärskinä"} ;
+lin pa'rskia'_VK = {s = c61 "pärskiä"} ;
+lin pa'rsky_NK = {s = d01 "pärsky"} ;
+lin pa'rskytella'_VK = {s = c67A "pärskytellä"} ;
+lin pa'rskytta'a'_VK = {s = c53A "pärskyttää"} ;
+lin pa'rskya'_VK = {s = c52 "pärskyä"} ;
+lin pa'rska'hdella'_VK = {s = c67A "pärskähdellä"} ;
+lin pa'rska'hdys_NK = {s = d39 "pärskähdys"} ;
+lin pa'rska'hta'a'_VK = {s = c53A "pärskähtää"} ;
+lin pa'rska'juuri_NK = {s = d26 "pärskäjuuri"} ;
+lin pa'rska'ytta'a'_VK = {s = c53A "pärskäyttää"} ;
+lin pa'rska'a'_VK = {s = c78 "pärskää"} ;
+lin pa'rsta'_NK = {s = d10 "pärstä"} ;
+lin pa'rsta'kerroin_NK = {s = d33A "pärstäkerroin"} ;
+lin pa'ra'hdys_NK = {s = d39 "pärähdys"} ;
+lin pa'ra'hta'a'_VK = {s = c53A "pärähtää"} ;
+lin pa'ra'ytta'a'_VK = {s = c53A "päräyttää"} ;
+lin pa'ssi_NK = {s = d05 "pässi"} ;
+--? lin pa'ssinpo'kkima't_NK = {s = d10 "pässinpökkimät"} ;
+lin pa'tema'tto'myys_NK = {s = d40 "pätemättömyys"} ;
+lin pa'tema'to'n_NK = {s = d34A "pätemätön"} ;
+lin pa'tevyinen_NK = {s = d38 "pätevyinen"} ;
+lin pa'tevyys_NK = {s = d40 "pätevyys"} ;
+lin pa'teva'_NK = {s = d10 "pätevä"} ;
+lin pa'tevo'ida'_VK = {s = c62 "pätevöidä"} ;
+lin pa'tevo'itymisaika_NK = {s = d09A "pätevöitymisaika"} ;
+lin pa'tevo'itya'_VK = {s = c52A "pätevöityä"} ;
+lin pa'tea'_VK = {s = c58A "päteä"} ;
+lin pa'tkitta'in_AdvK = {s = c99 "pätkittäin"} ;
+lin pa'tkia'_VK = {s = c61 "pätkiä"} ;
+lin pa'tka'_NK = {s = d10 "pätkä"} ;
+lin pa'tka'ista'_VK = {s = c66 "pätkäistä"} ;
+lin pa'tsi_NK = {s = d05 "pätsi"} ;
+lin pa'a'_NK = {s = d18 "pää"} ;
+lin pa'a'dyitse_AdvK = {s = c99 "päädyitse"} ;
+lin pa'a'dyitta'in_AdvK = {s = c99 "päädyittäin"} ;
+lin pa'a'dytysten_AdvK = {s = c99 "päädytysten"} ;
+lin pa'a'hine_NK = {s = d48 "päähine"} ;
+lin pa'a'ha'n_AdvK = {s = c99 "päähän"} ;
+lin pa'a'ha'npa'lka'hdys_NK = {s = d39 "päähänpälkähdys"} ;
+lin pa'a'juuri_NK = {s = d26 "pääjuuri"} ;
+lin pa'a'kka'in_AdvK = {s = c99 "pääkkäin"} ;
+lin pa'a'kohta_NK = {s = d10A "pääkohta"} ;
+lin pa'a'ksytysten_AdvK = {s = c99 "pääksytysten"} ;
+lin pa'a'lle_AdvK = {s = c99 "päälle"} ;
+lin pa'a'llekka'in_AdvK = {s = c99 "päällekkäin"} ;
+lin pa'a'llekka'inen_NK = {s = d38 "päällekkäinen"} ;
+lin pa'a'llekka'isyys_NK = {s = d40 "päällekkäisyys"} ;
+lin pa'a'llepantava_NK = {s = d10 "päällepantava"} ;
+lin pa'a'llepa'sma'ri_NK = {s = d06 "päällepäsmäri"} ;
+lin pa'a'lletta'in_AdvK = {s = c99 "päällettäin"} ;
+lin pa'a'lletta'inen_NK = {s = d38 "päällettäinen"} ;
+lin pa'a'lletysten_AdvK = {s = c99 "päälletysten"} ;
+lin pa'a'llikkyys_NK = {s = d40 "päällikkyys"} ;
+lin pa'a'llikko'_NK = {s = d04A "päällikkö"} ;
+lin pa'a'llimmiten_AdvK = {s = c99 "päällimmiten"} ;
+lin pa'a'llimma'inen_NK = {s = d38 "päällimmäinen"} ;
+lin pa'a'llimpa'na'_AdvK = {s = c99 "päällimpänä"} ;
+lin pa'a'llinen_NK = {s = d38 "päällinen"} ;
+lin pa'a'lliskangas_NK = {s = d41A "päälliskangas"} ;
+lin pa'a'llitse_AdvK = {s = c99 "päällitse"} ;
+lin pa'a'llyksinen_NK = {s = d38 "päällyksinen"} ;
+lin pa'a'llys_NK = {s = d39 "päällys"} ;
+lin pa'a'llyste_NK = {s = d48 "päällyste"} ;
+lin pa'a'llystys_NK = {s = d39 "päällystys"} ;
+lin pa'a'llysta'_NK = {s = d13 "päällystä"} ;
+lin pa'a'llysta'a'_VK = {s = c53 "päällystää"} ;
+lin pa'a'llysto'_NK = {s = d02 "päällystö"} ;
+lin pa'a'lla'_AdvK = {s = c99 "päällä"} ;
+lin pa'a'lta'_AdvK = {s = c99 "päältä"} ;
+lin pa'a'nnyo'ka'ytys_NK = {s = d39 "päännyökäytys"} ;
+lin pa'a'omavaltaistua_VK = {s = c52 "pääomavaltaistua"} ;
+lin pa'a'omittaa_VK = {s = c53A "pääomittaa"} ;
+--+ lin pa'a'piirteisesti_AdvK = {s = c99 "pääpiirteisesti"} ;
+lin pa'a'piirteitta'in_AdvK = {s = c99 "pääpiirteittäin"} ;
+lin pa'a'piirteitta'inen_NK = {s = d38 "pääpiirteittäinen"} ;
+lin pa'a'ri_NK = {s = d05 "pääri"} ;
+lin pa'a'rly_NK = {s = d01 "päärly"} ;
+lin pa'a'rme_NK = {s = d48 "päärme"} ;
+lin pa'a'rmeinen_NK = {s = d38 "päärmeinen"} ;
+lin pa'a'rma'ta'_VK = {s = c73 "päärmätä"} ;
+lin pa'a'rma'ys_NK = {s = d39 "päärmäys"} ;
+lin pa'a'ryna'_NK = {s = d12 "päärynä"} ;
+lin pa'a'sema'to'n_NK = {s = d34A "pääsemätön"} ;
+lin pa'a'sia'inen_NK = {s = d38 "pääsiäinen"} ;
+lin pa'a'sia'isaika_NK = {s = d09A "pääsiäisaika"} ;
+lin pa'a'sky_NK = {s = d01 "pääsky"} ;
+lin pa'a'skynen_NK = {s = d38 "pääskynen"} ;
+lin pa'a'skysparvi_NK = {s = d07 "pääskysparvi"} ;
+lin pa'a'ssa'_AdvK = {s = c99 "päässä"} ;
+lin pa'a'stella'_VK = {s = c67 "päästellä"} ;
+lin pa'a'sta'_1_VK = {s = c66 "päästä"} ;
+lin pa'a'sta'_2_AdvK = {s = c99 "päästä"} ;
+lin pa'a'sta'inen_NK = {s = d38 "päästäinen"} ;
+lin pa'a'sta'a'_VK = {s = c53 "päästää"} ;
+lin pa'a'sto'_NK = {s = d01 "päästö"} ;
+lin pa'a'sy_NK = {s = d01 "pääsy"} ;
+lin pa'a'sa'a'nto'isesti_AdvK = {s = c99 "pääsääntöisesti"} ;
+lin pa'a'te_NK = {s = d48A "pääte"} ;
+lin pa'a'tekohta_NK = {s = d10A "päätekohta"} ;
+lin pa'a'tella'_VK = {s = c67A "päätellä"} ;
+lin pa'a'telma'_NK = {s = d10 "päätelmä"} ;
+lin pa'a'tteellinen_NK = {s = d38 "päätteellinen"} ;
+lin pa'a'tteeto'n_NK = {s = d34A "päätteetön"} ;
+lin pa'a'tteinen_NK = {s = d38 "päätteinen"} ;
+lin pa'a'ttely_NK = {s = d02 "päättely"} ;
+lin pa'a'ttymisaika_NK = {s = d09A "päättymisaika"} ;
+lin pa'a'ttyma'to'n_NK = {s = d34A "päättymätön"} ;
+lin pa'a'ttya'_VK = {s = c52A "päättyä"} ;
+lin pa'a'tta'ja'_NK = {s = d10 "päättäjä"} ;
+--? lin pa'a'tta'ja'iset_NK = {s = d38 "päättäjäiset"} ;
+lin pa'a'tta'ma'tto'myys_NK = {s = d40 "päättämättömyys"} ;
+lin pa'a'tta'ma'to'n_NK = {s = d34A "päättämätön"} ;
+lin pa'a'tta'ri_NK = {s = d06 "päättäri"} ;
+lin pa'a'tta'vyys_NK = {s = d40 "päättävyys"} ;
+lin pa'a'tta'va'_AK = {s = d10 "päättävä"} ;
+lin pa'a'tta'va'inen_AK = {s = d38 "päättäväinen"} ;
+--+ lin pa'a'tta'va'isesti_AdvK = {s = c99 "päättäväisesti"} ;
+--+ lin pa'a'tta'va'sti_AdvK = {s = c99 "päättävästi"} ;
+lin pa'a'tta'a'_VK = {s = c53A "päättää"} ;
+lin pa'a'tto'myys_NK = {s = d40 "päättömyys"} ;
+lin pa'a'tto'ma'sti_AdvK = {s = c99 "päättömästi"} ;
+lin pa'a'ty_NK = {s = d01A "pääty"} ;
+lin pa'a'tya'_VK = {s = c52A "päätyä"} ;
+lin pa'a'ta'nta'_NK = {s = d09A "päätäntä"} ;
+lin pa'a'ta'_pahkaa_AdvK = {s = c99 "päätä pahkaa"} ;
+lin pa'a'ta'pahkainen_NK = {s = d38 "päätäpahkainen"} ;
+lin pa'a'to'n_NK = {s = d34A "päätön"} ;
+lin pa'a'to's_NK = {s = d39 "päätös"} ;
+lin po'heikko'_NK = {s = d04A "pöheikkö"} ;
+lin po'hko'_NK = {s = d01 "pöhkö"} ;
+lin po'hna'_NK = {s = d10 "pöhnä"} ;
+lin po'hna'inen_NK = {s = d38 "pöhnäinen"} ;
+lin po'ho'_NK = {s = d01 "pöhö"} ;
+lin po'ho'inen_NK = {s = d38 "pöhöinen"} ;
+lin po'ho'ttyma'_NK = {s = d10 "pöhöttymä"} ;
+lin po'ho'ttya'_VK = {s = c52A "pöhöttyä"} ;
+lin po'ho'tta'a'_VK = {s = c53A "pöhöttää"} ;
+lin po'ho'tys_NK = {s = d39 "pöhötys"} ;
+lin po'kerryksiin_AdvK = {s = c99 "pökerryksiin"} ;
+lin po'kerryksissa'_AdvK = {s = c99 "pökerryksissä"} ;
+lin po'kerryksista'_AdvK = {s = c99 "pökerryksistä"} ;
+lin po'kerrytta'a'_VK = {s = c53A "pökerryttää"} ;
+lin po'kertya'_VK = {s = c52A "pökertyä"} ;
+lin po'kkelo'_NK = {s = d02 "pökkelö"} ;
+lin po'kkia'_VK = {s = c61A "pökkiä"} ;
+lin po'kko'_NK = {s = d01A "pökkö"} ;
+lin po'ksyinen_NK = {s = d38 "pöksyinen"} ;
+--? lin po'ksyt_NK = {s = d01 "pöksyt"} ;
+lin po'ka'le_NK = {s = d48 "pökäle"} ;
+--? lin po'ka't_NK = {s = d10 "pökät"} ;
+lin po'ka'ta'_VK = {s = c73A "pökätä"} ;
+lin po'lho'_NK = {s = d01 "pölhö"} ;
+lin po'lina'_1_NK = {s = d12 "pölinä"} ;
+lin po'lina'_2_NK = {s = d12 "pölinä"} ;
+lin po'lista'_1_VK = {s = c66 "pölistä"} ;
+lin po'lista'_2_VK = {s = c66 "pölistä"} ;
+lin po'lja'_NK = {s = d10 "pöljä"} ;
+lin po'lkky_NK = {s = d01A "pölkky"} ;
+lin po'lli_NK = {s = d05 "pölli"} ;
+lin po'llia'_VK = {s = c61 "pölliä"} ;
+lin po'lly_NK = {s = d01 "pölly"} ;
+lin po'llytella'_VK = {s = c67A "pöllytellä"} ;
+lin po'llytta'a'_VK = {s = c53A "pöllyttää"} ;
+lin po'llytys_NK = {s = d39 "pöllytys"} ;
+lin po'llyta'_VK = {s = c75 "pöllytä"} ;
+lin po'lla'hdella'_VK = {s = c67A "pöllähdellä"} ;
+lin po'lla'hta'a'_VK = {s = c53A "pöllähtää"} ;
+lin po'lla'mystya'_VK = {s = c52 "pöllämystyä"} ;
+lin po'lla'ytta'a'_VK = {s = c53A "pölläyttää"} ;
+lin po'llo'_AK = {s = d01 "pöllö"} ;
+--+ lin po'llo'sti_AdvK = {s = c99 "pöllösti"} ;
+lin po'lpo'tta'a'_VK = {s = c53A "pölpöttää"} ;
+lin po'lpo'tys_NK = {s = d39 "pölpötys"} ;
+lin po'lva'sti_NK = {s = d05 "pölvästi"} ;
+lin po'ly_NK = {s = d01 "pöly"} ;
+lin po'lyinen_NK = {s = d38 "pölyinen"} ;
+lin po'lyte_NK = {s = d48A "pölyte"} ;
+lin po'lytteinen_NK = {s = d38 "pölytteinen"} ;
+lin po'lyttya'_VK = {s = c52A "pölyttyä"} ;
+lin po'lytta'a'_VK = {s = c53A "pölyttää"} ;
+lin po'lytys_NK = {s = d39 "pölytys"} ;
+lin po'lyta'_VK = {s = c75 "pölytä"} ;
+lin po'lyyntya'_VK = {s = c52A "pölyyntyä"} ;
+lin po'lyytta'a'_VK = {s = c53A "pölyyttää"} ;
+lin po'la'hdella'_VK = {s = c67A "pölähdellä"} ;
+lin po'la'hdys_NK = {s = d39 "pölähdys"} ;
+lin po'la'hta'a'_VK = {s = c53A "pölähtää"} ;
+lin po'la'ys_NK = {s = d39 "pöläys"} ;
+lin po'la'ytta'a'_VK = {s = c53A "pöläyttää"} ;
+lin po'mpeli_NK = {s = d06 "pömpeli"} ;
+lin po'mpo'lla'a'n_AdvK = {s = c99 "pömpöllään"} ;
+lin po'mpo'tta'a'_VK = {s = c53A "pömpöttää"} ;
+lin po'nkitta'a'_VK = {s = c53A "pönkittää"} ;
+lin po'nkka'_NK = {s = d10A "pönkkä"} ;
+lin po'ntto'_NK = {s = d01A "pönttö"} ;
+lin po'na'kkyys_NK = {s = d40 "pönäkkyys"} ;
+lin po'na'kka'_NK = {s = d14A "pönäkkä"} ;
+lin po'na'ko'itya'_VK = {s = c52A "pönäköityä"} ;
+lin po'pelikko'_NK = {s = d04A "pöpelikkö"} ;
+lin po'pero'_NK = {s = d02 "pöperö"} ;
+lin po'pi_NK = {s = d05 "pöpi"} ;
+lin po'pina'_NK = {s = d12 "pöpinä"} ;
+lin po'pista'_VK = {s = c66 "pöpistä"} ;
+lin po'ppero'inen_NK = {s = d38 "pöpperöinen"} ;
+lin po'ppero'ssa'_AdvK = {s = c99 "pöpperössä"} ;
+lin po'po'_NK = {s = d01 "pöpö"} ;
+lin po'po'tta'a'_VK = {s = c53A "pöpöttää"} ;
+lin po'rhea'_NK = {s = d15 "pörheä"} ;
+lin po'rhistella'_VK = {s = c67 "pörhistellä"} ;
+lin po'rhistya'_VK = {s = c61 "pörhistyä"} ;
+lin po'rhista'a'_VK = {s = c53 "pörhistää"} ;
+lin po'rho'inen_NK = {s = d38 "pörhöinen"} ;
+lin po'rho'lle_AdvK = {s = c99 "pörhölle"} ;
+lin po'rho'lleen_AdvK = {s = c99 "pörhölleen"} ;
+lin po'rho'lla'_AdvK = {s = c99 "pörhöllä"} ;
+lin po'rho'lla'a'n_AdvK = {s = c99 "pörhöllään"} ;
+lin po'rho'ssa'_AdvK = {s = c99 "pörhössä"} ;
+lin po'rho'o'n_AdvK = {s = c99 "pörhöön"} ;
+lin po'rina'_NK = {s = d12 "pörinä"} ;
+lin po'rista'_VK = {s = c66 "pöristä"} ;
+lin po'rria'inen_NK = {s = d38 "pörriäinen"} ;
+lin po'rra'illa'_VK = {s = c67 "pörräillä"} ;
+lin po'rra'ta'_VK = {s = c73 "pörrätä"} ;
+lin po'rro'_NK = {s = d01 "pörrö"} ;
+lin po'rro'inen_NK = {s = d38 "pörröinen"} ;
+lin po'rro'lle_AdvK = {s = c99 "pörrölle"} ;
+lin po'rro'lleen_AdvK = {s = c99 "pörrölleen"} ;
+lin po'rro'lla'_AdvK = {s = c99 "pörröllä"} ;
+lin po'rro'lla'a'n_AdvK = {s = c99 "pörröllään"} ;
+lin po'rro'ssa'_AdvK = {s = c99 "pörrössä"} ;
+lin po'rro'ttya'_VK = {s = c52A "pörröttyä"} ;
+lin po'rro'tta'a'_VK = {s = c53A "pörröttää"} ;
+lin po'rro'o'n_AdvK = {s = c99 "pörröön"} ;
+lin po'rssi_NK = {s = d05 "pörssi"} ;
+lin po'rssiaika_NK = {s = d09A "pörssiaika"} ;
+lin po'rssinoteerattu_NK = {s = d01A "pörssinoteerattu"} ;
+lin po'so'_NK = {s = d01 "pösö"} ;
+lin po'tkia'_VK = {s = c61 "pötkiä"} ;
+lin po'tky_NK = {s = d01 "pötky"} ;
+lin po'tko'_NK = {s = d01 "pötkö"} ;
+lin po'tko'lleen_AdvK = {s = c99 "pötkölleen"} ;
+lin po'tko'lla'a'n_AdvK = {s = c99 "pötköllään"} ;
+lin po'tko'tta'a'_VK = {s = c53A "pötköttää"} ;
+lin po'tsi_NK = {s = d05 "pötsi"} ;
+lin po'ty_NK = {s = d01A "pöty"} ;
+lin po'yda'llinen_NK = {s = d38 "pöydällinen"} ;
+lin po'yda'ta'_VK = {s = c73A "pöydätä"} ;
+lin po'yheys_NK = {s = d40 "pöyheys"} ;
+lin po'yhea'_NK = {s = d15 "pöyheä"} ;
+lin po'yhin_NK = {s = d33 "pöyhin"} ;
+lin po'yhistella'_VK = {s = c67 "pöyhistellä"} ;
+lin po'yhistya'_VK = {s = c52 "pöyhistyä"} ;
+lin po'yhista'a'_VK = {s = c53 "pöyhistää"} ;
+lin po'yhia'_VK = {s = c61 "pöyhiä"} ;
+lin po'yhkeilija'_NK = {s = d12 "pöyhkeilijä"} ;
+lin po'yhkeilla'_VK = {s = c67 "pöyhkeillä"} ;
+lin po'yhkeily_NK = {s = d02 "pöyhkeily"} ;
+lin po'yhkeys_NK = {s = d40 "pöyhkeys"} ;
+lin po'yhkea'_AK = {s = d15 "pöyhkeä"} ;
+--+ lin po'yhkea'sti_AdvK = {s = c99 "pöyhkeästi"} ;
+lin po'yho'lle_AdvK = {s = c99 "pöyhölle"} ;
+lin po'yho'lleen_AdvK = {s = c99 "pöyhölleen"} ;
+lin po'yho'lla'_AdvK = {s = c99 "pöyhöllä"} ;
+lin po'yho'lla'a'n_AdvK = {s = c99 "pöyhöllään"} ;
+lin po'yho'tta'a'_VK = {s = c53A "pöyhöttää"} ;
+lin po'yristytta'a'_VK = {s = c53A "pöyristyttää"} ;
+lin po'ytye_NK = {s = d48 "pöytye"} ;
+lin po'yta'_NK = {s = d10A "pöytä"} ;
+lin po'yta'voi_NK = {s = d18 "pöytävoi"} ;
+lin quasi_AdvK = {s = c99 "quasi"} ;
+lin quenelle_NK = {s = d08 "quenelle"} ;
+lin quiche_NK = {s = d08 "quiche"} ;
+lin quickstep_NK = {s = d05 "quickstep"} ;
+lin quisling_NK = {s = d05 "quisling"} ;
+lin raa_asti_AdvK = {s = c99 "raa'asti"} ;
+lin raadanta_NK = {s = d09A "raadanta"} ;
+lin raadella_VK = {s = c67A "raadella"} ;
+lin raadollinen_NK = {s = d38 "raadollinen"} ;
+lin raadollisuus_NK = {s = d40 "raadollisuus"} ;
+lin raaentaa_VK = {s = c54A "raaentaa"} ;
+lin raaentua_VK = {s = c52A "raaentua"} ;
+lin raahaantua_VK = {s = c52A "raahaantua"} ;
+lin raahata_VK = {s = c73 "raahata"} ;
+lin raahaus_NK = {s = d39 "raahaus"} ;
+lin raahautua_VK = {s = c52A "raahautua"} ;
+lin raahustaa_VK = {s = c53 "raahustaa"} ;
+lin raaistaa_VK = {s = c53 "raaistaa"} ;
+lin raaistua_VK = {s = c52 "raaistua"} ;
+lin raaistuttaa_VK = {s = c53A "raaistuttaa"} ;
+lin raaja_NK = {s = d09 "raaja"} ;
+lin raajainen_NK = {s = d38 "raajainen"} ;
+lin raajarikkoinen_NK = {s = d38 "raajarikkoinen"} ;
+lin raaka_1_NK = {s = d09A "raaka"} ;
+lin raaka_2_NK = {s = d09A "raaka"} ;
+lin raakalaismainen_NK = {s = d38 "raakalaismainen"} ;
+lin raakalaisuus_NK = {s = d40 "raakalaisuus"} ;
+lin raakata_1_VK = {s = c73 "raakata"} ;
+lin raakata_2_VK = {s = c73 "raakata"} ;
+lin raakile_NK = {s = d48 "raakile"} ;
+lin raakilemaisuus_NK = {s = d40 "raakilemaisuus"} ;
+lin raakimus_NK = {s = d39 "raakimus"} ;
+lin raakki_NK = {s = d05A "raakki"} ;
+lin raakku_NK = {s = d01A "raakku"} ;
+lin raakkua_VK = {s = c52A "raakkua"} ;
+lin raakua_VK = {s = c52A "raakua"} ;
+lin raakuus_NK = {s = d40 "raakuus"} ;
+lin Raamattu_NK = {s = d01A "Raamattu"} ;
+lin raamatullinen_NK = {s = d38 "raamatullinen"} ;
+lin raamatunkohta_NK = {s = d10A "raamatunkohta"} ;
+lin raami_NK = {s = d05 "raami"} ;
+lin raamikas_NK = {s = d41A "raamikas"} ;
+lin raamittaa_VK = {s = c53A "raamittaa"} ;
+lin raamitus_NK = {s = d39 "raamitus"} ;
+lin raana_NK = {s = d09 "raana"} ;
+lin raani_NK = {s = d05 "raani"} ;
+lin raanu_NK = {s = d01 "raanu"} ;
+lin raapaista_VK = {s = c66 "raapaista"} ;
+lin raapaisu_NK = {s = d02 "raapaisu"} ;
+lin raapata_VK = {s = c73A "raapata"} ;
+lin raape_NK = {s = d48A "raape"} ;
+lin raapia_VK = {s = c61A "raapia"} ;
+lin raapiintua_VK = {s = c52A "raapiintua"} ;
+lin raapiutua_VK = {s = c52A "raapiutua"} ;
+lin raappa_NK = {s = d09A "raappa"} ;
+lin raappia_VK = {s = c61A "raappia"} ;
+lin raappiintua_VK = {s = c52A "raappiintua"} ;
+lin raappiutua_VK = {s = c52A "raappiutua"} ;
+lin raapustaa_VK = {s = c53 "raapustaa"} ;
+lin raaputella_VK = {s = c67A "raaputella"} ;
+lin raaputin_NK = {s = d33A "raaputin"} ;
+lin raaputtaa_VK = {s = c53A "raaputtaa"} ;
+lin raaputus_NK = {s = d39 "raaputus"} ;
+lin raaskia_VK = {s = c61 "raaskia"} ;
+lin raastaa_VK = {s = c56 "raastaa"} ;
+lin raaste_NK = {s = d48 "raaste"} ;
+lin raastin_NK = {s = d33 "raastin"} ;
+lin raastupa_NK = {s = d10A "raastupa"} ;
+lin raasu_NK = {s = d01 "raasu"} ;
+lin raataa_VK = {s = c56A "raataa"} ;
+lin raataja_NK = {s = d10 "raataja"} ;
+lin raate_NK = {s = d48A "raate"} ;
+lin raatelu_NK = {s = d02 "raatelu"} ;
+lin raati_NK = {s = d05A "raati"} ;
+lin raato_NK = {s = d01A "raato"} ;
+lin raatsia_VK = {s = c61 "raatsia"} ;
+lin raavas_NK = {s = d41 "raavas"} ;
+lin raavin_NK = {s = d33A "raavin"} ;
+lin raavinta_NK = {s = d09A "raavinta"} ;
+lin rabbi_NK = {s = d05 "rabbi"} ;
+lin rabbiini_NK = {s = d05 "rabbiini"} ;
+lin rabies_NK = {s = d39 "rabies"} ;
+lin rabulismi_NK = {s = d05 "rabulismi"} ;
+lin rabulisti_NK = {s = d05 "rabulisti"} ;
+lin rabulistinen_NK = {s = d38 "rabulistinen"} ;
+lin raclette_NK = {s = d08 "raclette"} ;
+lin radeerata_VK = {s = c73 "radeerata"} ;
+lin radeeraus_NK = {s = d39 "radeeraus"} ;
+lin radiaalinen_NK = {s = d38 "radiaalinen"} ;
+lin radiaani_NK = {s = d05 "radiaani"} ;
+lin radiaattori_NK = {s = d06 "radiaattori"} ;
+lin radicchio_NK = {s = d03 "radicchio"} ;
+lin radikaali_AK = {s = d05 "radikaali"} ;
+lin radikaalinen_AK = {s = d38 "radikaalinen"} ;
+--+ lin radikaalisesti_AdvK = {s = c99 "radikaalisesti"} ;
+lin radikaalistaa_VK = {s = c53 "radikaalistaa"} ;
+--+ lin radikaalisti_AdvK = {s = c99 "radikaalisti"} ;
+lin radikaalistua_VK = {s = c52 "radikaalistua"} ;
+lin radikaalisuus_NK = {s = d40 "radikaalisuus"} ;
+lin radikaalius_NK = {s = d40 "radikaalius"} ;
+lin radikalismi_NK = {s = d05 "radikalismi"} ;
+lin radikalisoida_VK = {s = c62 "radikalisoida"} ;
+lin radikalisoitua_VK = {s = c52A "radikalisoitua"} ;
+lin radio_NK = {s = d03 "radio"} ;
+lin radioesiintyminen_NK = {s = d38 "radioesiintyminen"} ;
+lin radioida_VK = {s = c62 "radioida"} ;
+lin radiointi_NK = {s = d05A "radiointi"} ;
+lin radioitse_AdvK = {s = c99 "radioitse"} ;
+lin radiologi_NK = {s = d05 "radiologi"} ;
+lin radiologia_NK = {s = d12 "radiologia"} ;
+lin radiolyysi_NK = {s = d05 "radiolyysi"} ;
+lin radiosuuntiminen_NK = {s = d38 "radiosuuntiminen"} ;
+lin radisti_NK = {s = d05 "radisti"} ;
+lin radium_NK = {s = d05 "radium"} ;
+lin radon_NK = {s = d05 "radon"} ;
+lin rad_a_NK = {s = d09 "radža"} ;
+lin rae_NK = {s = d48A "rae"} ;
+lin raekoko_NK = {s = d01A "raekoko"} ;
+lin raffinoida_VK = {s = c62 "raffinoida"} ;
+lin raffinointi_NK = {s = d05A "raffinointi"} ;
+lin raffinoitua_VK = {s = c52A "raffinoitua"} ;
+lin raffinoitunut_NK = {s = d47 "raffinoitunut"} ;
+lin rafla_NK = {s = d09 "rafla"} ;
+lin raflaava_AK = {s = d10 "raflaava"} ;
+--+ lin raflaavasti_AdvK = {s = c99 "raflaavasti"} ;
+lin raflaavuus_NK = {s = d40 "raflaavuus"} ;
+lin raggari_NK = {s = d06 "raggari"} ;
+--? lin rago_t_NK = {s = d22 "ragoût"} ;
+lin ragtime_NK = {s = d08 "ragtime"} ;
+lin raguu_NK = {s = d20 "raguu"} ;
+lin raha_NK = {s = d09 "raha"} ;
+lin rahakas_NK = {s = d41A "rahakas"} ;
+lin rahake_NK = {s = d48A "rahake"} ;
+lin rahallinen_AK = {s = d38 "rahallinen"} ;
+--+ lin rahallisesti_AdvK = {s = c99 "rahallisesti"} ;
+lin rahastaa_VK = {s = c53 "rahastaa"} ;
+lin rahastaja_NK = {s = d10 "rahastaja"} ;
+lin rahasto_NK = {s = d02 "rahasto"} ;
+lin rahastoida_VK = {s = c62 "rahastoida"} ;
+lin rahastointi_NK = {s = d05A "rahastointi"} ;
+lin rahastus_NK = {s = d39 "rahastus"} ;
+lin rahaton_NK = {s = d34A "rahaton"} ;
+lin rahattomuus_NK = {s = d40 "rahattomuus"} ;
+lin rahdata_VK = {s = c73A "rahdata"} ;
+lin rahdittaa_VK = {s = c53A "rahdittaa"} ;
+lin rahditus_NK = {s = d39 "rahditus"} ;
+lin rahi_NK = {s = d05 "rahi"} ;
+lin rahina_NK = {s = d13 "rahina"} ;
+lin rahista_VK = {s = c66 "rahista"} ;
+lin rahje_NK = {s = d48A "rahje"} ;
+lin rahjus_NK = {s = d39 "rahjus"} ;
+lin rahjustaa_VK = {s = c53 "rahjustaa"} ;
+lin rahka_NK = {s = d09 "rahka"} ;
+--? lin rahkeet_NK = {s = d48A "rahkeet"} ;
+lin rahkoittua_VK = {s = c52A "rahkoittua"} ;
+lin rahna_NK = {s = d09 "rahna"} ;
+lin rahoittaa_VK = {s = c53A "rahoittaa"} ;
+lin rahoittaja_NK = {s = d10 "rahoittaja"} ;
+lin rahoitteinen_NK = {s = d38 "rahoitteinen"} ;
+lin rahoitus_NK = {s = d39 "rahoitus"} ;
+lin rahtaaja_NK = {s = d10 "rahtaaja"} ;
+lin rahtari_NK = {s = d06 "rahtari"} ;
+lin rahtaus_NK = {s = d39 "rahtaus"} ;
+lin rahti_NK = {s = d05A "rahti"} ;
+lin rahtu_NK = {s = d01A "rahtu"} ;
+lin rahtunen_NK = {s = d38 "rahtunen"} ;
+--+ lin rahvaanomaisesti_AdvK = {s = c99 "rahvaanomaisesti"} ;
+lin rahvas_NK = {s = d41 "rahvas"} ;
+lin raidakas_NK = {s = d41A "raidakas"} ;
+lin raidallinen_NK = {s = d38 "raidallinen"} ;
+lin raide_NK = {s = d48A "raide"} ;
+lin raidoittaa_VK = {s = c53A "raidoittaa"} ;
+lin raidoitus_NK = {s = d39 "raidoitus"} ;
+lin raihnaantua_VK = {s = c52A "raihnaantua"} ;
+lin raihnainen_AK = {s = d38 "raihnainen"} ;
+--+ lin raihnaisesti_AdvK = {s = c99 "raihnaisesti"} ;
+lin raihnaisuus_NK = {s = d40 "raihnaisuus"} ;
+lin raihnas_NK = {s = d41 "raihnas"} ;
+lin raihnaus_NK = {s = d40 "raihnaus"} ;
+lin raihnautua_VK = {s = c52A "raihnautua"} ;
+lin raijata_VK = {s = c73 "raijata"} ;
+lin raikaa_VK = {s = c78 "raikaa"} ;
+lin raikas_NK = {s = d41A "raikas"} ;
+lin raikastaa_VK = {s = c53 "raikastaa"} ;
+lin raikaste_NK = {s = d48 "raikaste"} ;
+lin raikastin_NK = {s = d33 "raikastin"} ;
+lin raikua_VK = {s = c52A "raikua"} ;
+lin raikuli_NK = {s = d06 "raikuli"} ;
+lin railakas_AK = {s = d41A "railakas"} ;
+lin railakka_NK = {s = d14A "railakka"} ;
+--+ lin railakkaasti_AdvK = {s = c99 "railakkaasti"} ;
+lin railakkuus_NK = {s = d40 "railakkuus"} ;
+lin railata_VK = {s = c73 "railata"} ;
+lin railo_NK = {s = d01 "railo"} ;
+lin railoilla_VK = {s = c67 "railoilla"} ;
+lin railoinen_NK = {s = d38 "railoinen"} ;
+lin raina_NK = {s = d09 "raina"} ;
+lin rainata_VK = {s = c73 "rainata"} ;
+lin rainaus_NK = {s = d39 "rainaus"} ;
+lin raippa_NK = {s = d09A "raippa"} ;
+lin raiska_NK = {s = d09 "raiska"} ;
+lin raiskaaja_NK = {s = d10 "raiskaaja"} ;
+lin raiskaantua_VK = {s = c52A "raiskaantua"} ;
+lin raiskata_VK = {s = c73 "raiskata"} ;
+lin raiskaus_NK = {s = d39 "raiskaus"} ;
+lin raiskautua_VK = {s = c52A "raiskautua"} ;
+lin raiskio_NK = {s = d03 "raiskio"} ;
+lin raisu_AK = {s = d01 "raisu"} ;
+--+ lin raisusti_AdvK = {s = c99 "raisusti"} ;
+lin raisuus_NK = {s = d40 "raisuus"} ;
+lin raita_1_NK = {s = d09A "raita"} ;
+lin raita_2_NK = {s = d09A "raita"} ;
+lin raita_3_NK = {s = d09 "raita"} ;
+lin raitainen_NK = {s = d38 "raitainen"} ;
+lin raiteilla_VK = {s = c67 "raiteilla"} ;
+lin raiteinen_NK = {s = d38 "raiteinen"} ;
+lin raiteisto_NK = {s = d01 "raiteisto"} ;
+lin raitis_NK = {s = d41A "raitis"} ;
+lin raitistaa_VK = {s = c53 "raitistaa"} ;
+lin raitistella_VK = {s = c67 "raitistella"} ;
+lin raitistua_VK = {s = c52 "raitistua"} ;
+lin raito_NK = {s = d01A "raito"} ;
+lin raitsikka_NK = {s = d14A "raitsikka"} ;
+lin raitti_NK = {s = d05A "raitti"} ;
+lin raittiisti_AdvK = {s = c99 "raittiisti"} ;
+lin raittius_NK = {s = d40 "raittius"} ;
+lin raivaaja_NK = {s = d10 "raivaaja"} ;
+lin raivaamaton_NK = {s = d34A "raivaamaton"} ;
+lin raivain_NK = {s = d33 "raivain"} ;
+lin raivari_NK = {s = d06 "raivari"} ;
+lin raivata_VK = {s = c73 "raivata"} ;
+lin raivaus_NK = {s = d39 "raivaus"} ;
+lin raivauttaa_VK = {s = c53A "raivauttaa"} ;
+lin raivautua_VK = {s = c52A "raivautua"} ;
+lin raivio_NK = {s = d03 "raivio"} ;
+lin raivo_NK = {s = d01 "raivo"} ;
+lin raivoihinsa_AdvK = {s = c99 "raivoihinsa"} ;
+lin raivoisa_AK = {s = d10 "raivoisa"} ;
+--+ lin raivoisasti_AdvK = {s = c99 "raivoisasti"} ;
+lin raivoissaan_AdvK = {s = c99 "raivoissaan"} ;
+lin raivokas_AK = {s = d41A "raivokas"} ;
+--+ lin raivokkaasti_AdvK = {s = c99 "raivokkaasti"} ;
+lin raivokkuus_NK = {s = d40 "raivokkuus"} ;
+lin raivostua_VK = {s = c52 "raivostua"} ;
+lin raivostuttaa_VK = {s = c53A "raivostuttaa"} ;
+lin raivota_VK = {s = c74 "raivota"} ;
+lin raivotar_NK = {s = d32A "raivotar"} ;
+lin raivuri_NK = {s = d06 "raivuri"} ;
+lin raja_1_NK = {s = d09 "raja"} ;
+lin raja_2_NK = {s = d09 "raja"} ;
+lin rajain_NK = {s = d33 "rajain"} ;
+lin rajainen_NK = {s = d38 "rajainen"} ;
+lin rajakkain_AdvK = {s = c99 "rajakkain"} ;
+lin rajakkainen_NK = {s = d38 "rajakkainen"} ;
+lin rajakohta_NK = {s = d10A "rajakohta"} ;
+lin rajallinen_AK = {s = d38 "rajallinen"} ;
+--+ lin rajallisesti_AdvK = {s = c99 "rajallisesti"} ;
+lin rajallisuus_NK = {s = d40 "rajallisuus"} ;
+lin rajanveto_NK = {s = d01A "rajanveto"} ;
+lin rajata_VK = {s = c73 "rajata"} ;
+lin rajaton_NK = {s = d34A "rajaton"} ;
+lin rajattomasti_AdvK = {s = c99 "rajattomasti"} ;
+lin rajattomuus_NK = {s = d40 "rajattomuus"} ;
+lin rajatuksin_AdvK = {s = c99 "rajatuksin"} ;
+lin rajatusten_AdvK = {s = c99 "rajatusten"} ;
+lin rajaus_NK = {s = d39 "rajaus"} ;
+lin rajautua_VK = {s = c52A "rajautua"} ;
+lin rajoite_NK = {s = d48A "rajoite"} ;
+lin rajoitettu_NK = {s = d01A "rajoitettu"} ;
+lin rajoitetusti_AdvK = {s = c99 "rajoitetusti"} ;
+lin rajoitin_NK = {s = d33A "rajoitin"} ;
+lin rajoittaa_VK = {s = c53A "rajoittaa"} ;
+lin rajoittamaton_NK = {s = d34A "rajoittamaton"} ;
+lin rajoitteinen_NK = {s = d38 "rajoitteinen"} ;
+lin rajoittua_VK = {s = c52A "rajoittua"} ;
+lin rajoitus_NK = {s = d39 "rajoitus"} ;
+lin rajoni_NK = {s = d05 "rajoni"} ;
+lin raju_AK = {s = d01 "raju"} ;
+--+ lin rajusti_AdvK = {s = c99 "rajusti"} ;
+lin rajuus_NK = {s = d40 "rajuus"} ;
+lin rakas_NK = {s = d41A "rakas"} ;
+lin rakastaa_VK = {s = c53 "rakastaa"} ;
+lin rakastaja_NK = {s = d10 "rakastaja"} ;
+lin rakastajatar_NK = {s = d32A "rakastajatar"} ;
+lin rakastavainen_NK = {s = d38 "rakastavainen"} ;
+lin rakastella_VK = {s = c67 "rakastella"} ;
+lin rakastelu_NK = {s = d02 "rakastelu"} ;
+lin rakastettava_AK = {s = d10 "rakastettava"} ;
+--+ lin rakastettavasti_AdvK = {s = c99 "rakastettavasti"} ;
+lin rakastettu_NK = {s = d01A "rakastettu"} ;
+lin rakastua_VK = {s = c52 "rakastua"} ;
+lin rakeinen_NK = {s = d38 "rakeinen"} ;
+lin rakeistaa_VK = {s = c53 "rakeistaa"} ;
+lin rakeisuus_NK = {s = d40 "rakeisuus"} ;
+lin rakenne_NK = {s = d48A "rakenne"} ;
+lin rakennella_VK = {s = c67A "rakennella"} ;
+lin rakennelma_NK = {s = d10 "rakennelma"} ;
+lin rakennus_NK = {s = d39 "rakennus"} ;
+lin rakennuttaa_VK = {s = c53A "rakennuttaa"} ;
+lin rakennuttaja_NK = {s = d10 "rakennuttaja"} ;
+lin rakentaa_VK = {s = c54A "rakentaa"} ;
+lin rakentaja_NK = {s = d10 "rakentaja"} ;
+lin rakentamaton_NK = {s = d34A "rakentamaton"} ;
+lin rakentaminen_NK = {s = d38 "rakentaminen"} ;
+lin rakentava_NK = {s = d10 "rakentava"} ;
+lin rakenteellinen_AK = {s = d38 "rakenteellinen"} ;
+--+ lin rakenteellisesti_AdvK = {s = c99 "rakenteellisesti"} ;
+lin rakenteilla_AdvK = {s = c99 "rakenteilla"} ;
+lin rakenteille_AdvK = {s = c99 "rakenteille"} ;
+lin rakenteinen_NK = {s = d38 "rakenteinen"} ;
+lin rakenteistaa_VK = {s = c53 "rakenteistaa"} ;
+lin rakenteisuus_NK = {s = d40 "rakenteisuus"} ;
+lin rakentelu_NK = {s = d02 "rakentelu"} ;
+lin rakentua_VK = {s = c52A "rakentua"} ;
+lin raketti_NK = {s = d05A "raketti"} ;
+lin raki_NK = {s = d05 "raki"} ;
+lin rakka_NK = {s = d09A "rakka"} ;
+lin rakkaudeton_NK = {s = d34A "rakkaudeton"} ;
+lin rakkaudettomuus_NK = {s = d40 "rakkaudettomuus"} ;
+lin rakkaus_NK = {s = d40 "rakkaus"} ;
+lin rakki_NK = {s = d05A "rakki"} ;
+lin rakkine_NK = {s = d48 "rakkine"} ;
+lin rakko_NK = {s = d01A "rakko"} ;
+lin rakkoinen_NK = {s = d38 "rakkoinen"} ;
+lin rakkula_NK = {s = d12 "rakkula"} ;
+lin rakkulainen_NK = {s = d38 "rakkulainen"} ;
+lin rakletti_NK = {s = d05A "rakletti"} ;
+lin rako_NK = {s = d01A "rako"} ;
+lin rakoilematon_NK = {s = d34A "rakoilematon"} ;
+lin rakoilla_VK = {s = c67 "rakoilla"} ;
+lin rakoilu_NK = {s = d02 "rakoilu"} ;
+lin rakoinen_NK = {s = d38 "rakoinen"} ;
+lin rakonen_NK = {s = d38 "rakonen"} ;
+lin rakosellaan_AdvK = {s = c99 "rakosellaan"} ;
+lin rakottua_VK = {s = c52A "rakottua"} ;
+lin raksa_NK = {s = d09 "raksa"} ;
+lin raksaa_VK = {s = c78 "raksaa"} ;
+lin raksahdella_VK = {s = c67A "raksahdella"} ;
+lin raksahdus_NK = {s = d39 "raksahdus"} ;
+lin raksahtaa_VK = {s = c53A "raksahtaa"} ;
+lin raksahtelu_NK = {s = d02 "raksahtelu"} ;
+lin raksauttaa_VK = {s = c53A "raksauttaa"} ;
+lin raksi_NK = {s = d05 "raksi"} ;
+lin raksia_VK = {s = c61 "raksia"} ;
+lin raksua_VK = {s = c52 "raksua"} ;
+lin raksuttaa_VK = {s = c53A "raksuttaa"} ;
+lin raksutus_NK = {s = d39 "raksutus"} ;
+lin rakuuna_1_NK = {s = d13 "rakuuna"} ;
+lin rakuuna_2_NK = {s = d13 "rakuuna"} ;
+lin rallatella_VK = {s = c67A "rallatella"} ;
+lin rallattaa_VK = {s = c53A "rallattaa"} ;
+lin rallattelu_NK = {s = d02 "rallattelu"} ;
+lin rallatus_NK = {s = d39 "rallatus"} ;
+lin ralli_1_NK = {s = d05 "ralli"} ;
+lin ralli_2_NK = {s = d05 "ralli"} ;
+lin ralli_3_NK = {s = d05 "ralli"} ;
+lin rallicross_NK = {s = d05 "rallicross"} ;
+lin ramadan_NK = {s = d05 "ramadan"} ;
+lin ramaista_VK = {s = c66 "ramaista"} ;
+lin rambo_NK = {s = d01 "rambo"} ;
+lin rambutani_NK = {s = d05 "rambutani"} ;
+lin ramina_NK = {s = d13 "ramina"} ;
+lin rampa_NK = {s = d09A "rampa"} ;
+lin rampaantua_VK = {s = c52A "rampaantua"} ;
+lin rampata_VK = {s = c73A "rampata"} ;
+lin rampauttaa_VK = {s = c53A "rampauttaa"} ;
+lin rampautua_VK = {s = c52A "rampautua"} ;
+lin ramppi_NK = {s = d05A "ramppi"} ;
+lin rampuus_NK = {s = d40 "rampuus"} ;
+lin rangaista_VK = {s = c66A "rangaista"} ;
+lin rangaistava_NK = {s = d10 "rangaistava"} ;
+lin rangaistavuus_NK = {s = d40 "rangaistavuus"} ;
+lin rangaistus_NK = {s = d39 "rangaistus"} ;
+lin rangaistusaika_NK = {s = d09A "rangaistusaika"} ;
+lin rangi_NK = {s = d05 "rangi"} ;
+lin ranka_AK = {s = d09A "ranka"} ;
+lin rankaisija_NK = {s = d12 "rankaisija"} ;
+lin rankaisu_NK = {s = d02 "rankaisu"} ;
+--+ lin rankasti_AdvK = {s = c99 "rankasti"} ;
+lin rankata_VK = {s = c73A "rankata"} ;
+lin ranketa_VK = {s = c72A "ranketa"} ;
+lin ranki_NK = {s = d05A "ranki"} ;
+lin rankka_NK = {s = d09A "rankka"} ;
+lin rankkari_NK = {s = d06 "rankkari"} ;
+lin rankkaus_NK = {s = d39 "rankkaus"} ;
+lin rankki_NK = {s = d05A "rankki"} ;
+lin rankkuri_NK = {s = d06 "rankkuri"} ;
+lin ranko_NK = {s = d01A "ranko"} ;
+lin rannansiirtyminen_NK = {s = d38 "rannansiirtyminen"} ;
+lin rannaton_NK = {s = d34A "rannaton"} ;
+lin ranne_NK = {s = d48A "ranne"} ;
+lin ranneke_NK = {s = d48A "ranneke"} ;
+lin rannemmaksi_AdvK = {s = c99 "rannemmaksi"} ;
+lin rannemmalla_AdvK = {s = c99 "rannemmalla"} ;
+lin rannemmalle_AdvK = {s = c99 "rannemmalle"} ;
+lin rannemmalta_AdvK = {s = c99 "rannemmalta"} ;
+lin rannemmas_AdvK = {s = c99 "rannemmas"} ;
+lin rannempaa_AdvK = {s = c99 "rannempaa"} ;
+lin rannempana_AdvK = {s = c99 "rannempana"} ;
+lin rannikki_NK = {s = d05A "rannikki"} ;
+lin rannikko_NK = {s = d04A "rannikko"} ;
+lin rannimmainen_NK = {s = d38 "rannimmainen"} ;
+lin rannimmaksi_AdvK = {s = c99 "rannimmaksi"} ;
+lin rannimmas_AdvK = {s = c99 "rannimmas"} ;
+lin rannimpaa_AdvK = {s = c99 "rannimpaa"} ;
+lin rannimpana_AdvK = {s = c99 "rannimpana"} ;
+lin ranska_NK = {s = d09 "ranska"} ;
+lin ranskalaistaa_VK = {s = c53 "ranskalaistaa"} ;
+lin ranskalaistua_VK = {s = c52 "ranskalaistua"} ;
+lin ranskannos_NK = {s = d39 "ranskannos"} ;
+lin ranskantaa_VK = {s = c54A "ranskantaa"} ;
+lin ranskatar_NK = {s = d32A "ranskatar"} ;
+lin ranskis_NK = {s = d39 "ranskis"} ;
+lin ranta_NK = {s = d09A "ranta"} ;
+lin rantaantua_VK = {s = c52A "rantaantua"} ;
+lin rantainen_NK = {s = d38 "rantainen"} ;
+lin rantama_NK = {s = d10 "rantama"} ;
+lin rantasipi_NK = {s = d05 "rantasipi"} ;
+lin rantautua_VK = {s = c52A "rantautua"} ;
+lin rantsu_NK = {s = d01 "rantsu"} ;
+lin ranttaliksi_AdvK = {s = c99 "ranttaliksi"} ;
+lin rantu_NK = {s = d01A "rantu"} ;
+lin raollaan_AdvK = {s = c99 "raollaan"} ;
+lin raolleen_AdvK = {s = c99 "raolleen"} ;
+lin raotella_VK = {s = c67A "raotella"} ;
+lin raottaa_VK = {s = c53A "raottaa"} ;
+lin raottua_VK = {s = c52A "raottua"} ;
+lin rap_NK = {s = d05 "rap"} ;
+lin rapa_NK = {s = d09A "rapa"} ;
+lin rapainen_NK = {s = d38 "rapainen"} ;
+lin rapakko_NK = {s = d04A "rapakko"} ;
+lin raparperi_NK = {s = d05 "raparperi"} ;
+lin rapata_1_VK = {s = c73A "rapata"} ;
+lin rapata_2_VK = {s = c73A "rapata"} ;
+lin rapauttaa_VK = {s = c53A "rapauttaa"} ;
+lin rapautua_VK = {s = c52A "rapautua"} ;
+lin rapea_NK = {s = d15 "rapea"} ;
+lin rapeus_NK = {s = d40 "rapeus"} ;
+lin rapeutua_VK = {s = c52A "rapeutua"} ;
+lin rapiat_AdvK = {s = c99 "rapiat"} ;
+lin rapina_NK = {s = d12 "rapina"} ;
+lin rapista_VK = {s = c66 "rapista"} ;
+lin rapistella_VK = {s = c67 "rapistella"} ;
+lin rapistua_VK = {s = c52 "rapistua"} ;
+lin rapisuttaa_VK = {s = c53A "rapisuttaa"} ;
+lin raplata_VK = {s = c73 "raplata"} ;
+lin raportoida_VK = {s = c62 "raportoida"} ;
+lin raportointi_NK = {s = d05A "raportointi"} ;
+lin raportti_NK = {s = d05A "raportti"} ;
+lin rappaaja_NK = {s = d10 "rappaaja"} ;
+lin rappaus_NK = {s = d39 "rappaus"} ;
+lin rappeuma_NK = {s = d10 "rappeuma"} ;
+lin rappeuttaa_VK = {s = c53A "rappeuttaa"} ;
+lin rappeutua_VK = {s = c52A "rappeutua"} ;
+lin rappeutuma_NK = {s = d10 "rappeutuma"} ;
+lin rappio_NK = {s = d03 "rappio"} ;
+lin rappioittaa_VK = {s = c53A "rappioittaa"} ;
+lin rappioitua_VK = {s = c52A "rappioitua"} ;
+lin rappu_NK = {s = d01A "rappu"} ;
+lin rappunen_NK = {s = d38 "rappunen"} ;
+lin rapsaa_VK = {s = c78 "rapsaa"} ;
+lin rapsahdella_VK = {s = c67A "rapsahdella"} ;
+lin rapsahdus_NK = {s = d39 "rapsahdus"} ;
+lin rapsahtaa_VK = {s = c53A "rapsahtaa"} ;
+lin rapsaus_NK = {s = d39 "rapsaus"} ;
+lin rapsauttaa_VK = {s = c53A "rapsauttaa"} ;
+lin rapse_NK = {s = d48 "rapse"} ;
+lin rapsi_NK = {s = d05 "rapsi"} ;
+lin rapsia_VK = {s = c61 "rapsia"} ;
+lin rapsodia_NK = {s = d12 "rapsodia"} ;
+lin rapsodinen_NK = {s = d38 "rapsodinen"} ;
+lin rapsu_NK = {s = d01 "rapsu"} ;
+lin rapsutella_VK = {s = c67A "rapsutella"} ;
+lin rapsuttaa_VK = {s = c53A "rapsuttaa"} ;
+lin rapsutus_NK = {s = d39 "rapsutus"} ;
+lin rapu_NK = {s = d01A "rapu"} ;
+lin rapuvoi_NK = {s = d18 "rapuvoi"} ;
+lin rariteetti_NK = {s = d05A "rariteetti"} ;
+lin rasahdella_VK = {s = c67A "rasahdella"} ;
+lin rasahdus_NK = {s = d39 "rasahdus"} ;
+lin rasahtaa_VK = {s = c53A "rasahtaa"} ;
+lin rasahtelu_NK = {s = d02 "rasahtelu"} ;
+lin rasi_NK = {s = d05 "rasi"} ;
+lin rasia_NK = {s = d12 "rasia"} ;
+lin rasiallinen_NK = {s = d38 "rasiallinen"} ;
+lin rasismi_NK = {s = d05 "rasismi"} ;
+lin rasisti_NK = {s = d05 "rasisti"} ;
+lin rasistinen_AK = {s = d38 "rasistinen"} ;
+--+ lin rasistisesti_AdvK = {s = c99 "rasistisesti"} ;
+lin rasistisuus_NK = {s = d40 "rasistisuus"} ;
+lin rasite_NK = {s = d48A "rasite"} ;
+lin rasittaa_VK = {s = c53A "rasittaa"} ;
+lin rasittava_AK = {s = d10 "rasittava"} ;
+--+ lin rasittavasti_AdvK = {s = c99 "rasittavasti"} ;
+lin rasittavuus_NK = {s = d40 "rasittavuus"} ;
+lin rasitteinen_NK = {s = d38 "rasitteinen"} ;
+lin rasittua_VK = {s = c52A "rasittua"} ;
+lin rasitus_NK = {s = d39 "rasitus"} ;
+--+ lin raskaasti_AdvK = {s = c99 "raskaasti"} ;
+lin raskas_AK = {s = d41 "raskas"} ;
+lin raskaudenaika_NK = {s = d09A "raskaudenaika"} ;
+lin raskaus_NK = {s = d40 "raskaus"} ;
+lin raskausaika_NK = {s = d09A "raskausaika"} ;
+lin raskauttaa_VK = {s = c53A "raskauttaa"} ;
+lin raskauttava_NK = {s = d10 "raskauttava"} ;
+lin raskia_VK = {s = c61 "raskia"} ;
+lin rasko_NK = {s = d01 "rasko"} ;
+lin raspi_NK = {s = d05 "raspi"} ;
+lin rassailla_VK = {s = c67 "rassailla"} ;
+lin rassata_VK = {s = c73 "rassata"} ;
+lin rassaus_NK = {s = d39 "rassaus"} ;
+lin rassi_NK = {s = d05 "rassi"} ;
+lin rassu_NK = {s = d01 "rassu"} ;
+lin rassukka_NK = {s = d14A "rassukka"} ;
+lin rasta_NK = {s = d09 "rasta"} ;
+lin rastafari_NK = {s = d05 "rastafari"} ;
+lin rastas_NK = {s = d41 "rastas"} ;
+lin rasteri_NK = {s = d06 "rasteri"} ;
+lin rasteroida_VK = {s = c62 "rasteroida"} ;
+lin rasterointi_NK = {s = d05A "rasterointi"} ;
+lin rasti_NK = {s = d05 "rasti"} ;
+lin rastia_VK = {s = c61 "rastia"} ;
+lin rastittaa_VK = {s = c53A "rastittaa"} ;
+lin rasva_NK = {s = d09 "rasva"} ;
+lin rasvaantua_VK = {s = c52A "rasvaantua"} ;
+lin rasvainen_NK = {s = d38 "rasvainen"} ;
+lin rasvaisuus_NK = {s = d40 "rasvaisuus"} ;
+lin rasvata_VK = {s = c73 "rasvata"} ;
+lin rasvaton_NK = {s = d34A "rasvaton"} ;
+lin rasvaus_NK = {s = d39 "rasvaus"} ;
+lin rasvautua_VK = {s = c52A "rasvautua"} ;
+lin rasvis_NK = {s = d39 "rasvis"} ;
+lin rasvoittaa_VK = {s = c53A "rasvoittaa"} ;
+lin rasvoittua_VK = {s = c52A "rasvoittua"} ;
+lin rata_NK = {s = d09A "rata"} ;
+lin ratainen_NK = {s = d38 "ratainen"} ;
+lin ratamo_NK = {s = d02 "ratamo"} ;
+lin ratas_NK = {s = d41A "ratas"} ;
+lin ratatouille_NK = {s = d08 "ratatouille"} ;
+lin ratatui_NK = {s = d18 "ratatui"} ;
+lin ratautua_VK = {s = c52A "ratautua"} ;
+lin ratifioida_VK = {s = c62 "ratifioida"} ;
+lin ratifiointi_NK = {s = d05A "ratifiointi"} ;
+lin ratikka_NK = {s = d14A "ratikka"} ;
+lin ratina_NK = {s = d12 "ratina"} ;
+lin rating_NK = {s = d05 "rating"} ;
+lin rationaalinen_AK = {s = d38 "rationaalinen"} ;
+--+ lin rationaalisesti_AdvK = {s = c99 "rationaalisesti"} ;
+lin rationaalistaa_VK = {s = c53 "rationaalistaa"} ;
+lin rationaalistua_VK = {s = c52 "rationaalistua"} ;
+lin rationaalisuus_NK = {s = d40 "rationaalisuus"} ;
+lin rationalismi_NK = {s = d05 "rationalismi"} ;
+lin rationalisoida_VK = {s = c62 "rationalisoida"} ;
+lin rationalisointi_NK = {s = d05A "rationalisointi"} ;
+lin rationalisoitua_VK = {s = c52A "rationalisoitua"} ;
+lin rationalisti_NK = {s = d05 "rationalisti"} ;
+lin rationalistinen_NK = {s = d38 "rationalistinen"} ;
+lin ratista_VK = {s = c66 "ratista"} ;
+lin ratkaisematon_NK = {s = d34A "ratkaisematon"} ;
+lin ratkaiseva_AK = {s = d10 "ratkaiseva"} ;
+--+ lin ratkaisevasti_AdvK = {s = c99 "ratkaisevasti"} ;
+lin ratkaisija_NK = {s = d12 "ratkaisija"} ;
+lin ratkaista_VK = {s = c66 "ratkaista"} ;
+lin ratkaisu_NK = {s = d02 "ratkaisu"} ;
+lin ratkeama_NK = {s = d10 "ratkeama"} ;
+lin ratkeilla_VK = {s = c67 "ratkeilla"} ;
+lin ratketa_VK = {s = c74 "ratketa"} ;
+lin ratki_AdvK = {s = c99 "ratki"} ;
+lin ratkoa_VK = {s = c52 "ratkoa"} ;
+lin ratkoja_NK = {s = d10 "ratkoja"} ;
+lin ratsailla_AdvK = {s = c99 "ratsailla"} ;
+lin ratsaille_AdvK = {s = c99 "ratsaille"} ;
+lin ratsailta_AdvK = {s = c99 "ratsailta"} ;
+lin ratsain_AdvK = {s = c99 "ratsain"} ;
+lin ratsastaa_VK = {s = c53 "ratsastaa"} ;
+lin ratsastaja_NK = {s = d10 "ratsastaja"} ;
+lin ratsastella_VK = {s = c67 "ratsastella"} ;
+lin ratsastus_NK = {s = d39 "ratsastus"} ;
+lin ratsata_VK = {s = c73 "ratsata"} ;
+lin ratsautua_VK = {s = c52A "ratsautua"} ;
+lin ratsia_NK = {s = d12 "ratsia"} ;
+lin ratsu_NK = {s = d01 "ratsu"} ;
+lin ratsukko_NK = {s = d04A "ratsukko"} ;
+--? lin rattaat_NK = {s = d41A "rattaat"} ;
+lin rattaisto_NK = {s = d01 "rattaisto"} ;
+lin ratti_1_NK = {s = d05A "ratti"} ;
+lin ratti_2_NK = {s = d05A "ratti"} ;
+lin ratto_NK = {s = d01A "ratto"} ;
+lin rattoisa_AK = {s = d10 "rattoisa"} ;
+--+ lin rattoisasti_AdvK = {s = c99 "rattoisasti"} ;
+lin ratustaa_VK = {s = c53 "ratustaa"} ;
+lin ratustella_VK = {s = c67 "ratustella"} ;
+lin raudikko_NK = {s = d04A "raudikko"} ;
+lin raudoite_NK = {s = d48A "raudoite"} ;
+lin raudoittaa_VK = {s = c53A "raudoittaa"} ;
+lin raudoittaja_NK = {s = d10 "raudoittaja"} ;
+lin raudoitus_NK = {s = d39 "raudoitus"} ;
+lin raueta_VK = {s = c72A "raueta"} ;
+lin rauha_NK = {s = d09 "rauha"} ;
+lin rauhaanpakottaminen_NK = {s = d38 "rauhaanpakottaminen"} ;
+lin rauhainen_NK = {s = d38 "rauhainen"} ;
+lin rauhaisa_NK = {s = d10 "rauhaisa"} ;
+lin rauhallinen_AK = {s = d38 "rauhallinen"} ;
+--+ lin rauhallisesti_AdvK = {s = c99 "rauhallisesti"} ;
+lin rauhallisuus_NK = {s = d40 "rauhallisuus"} ;
+lin rauhanaika_NK = {s = d09A "rauhanaika"} ;
+lin rauhanen_NK = {s = d38 "rauhanen"} ;
+lin rauhaton_NK = {s = d34A "rauhaton"} ;
+lin rauhattomasti_AdvK = {s = c99 "rauhattomasti"} ;
+lin rauhattomuus_NK = {s = d40 "rauhattomuus"} ;
+lin rauhoite_NK = {s = d48A "rauhoite"} ;
+lin rauhoitella_VK = {s = c67A "rauhoitella"} ;
+lin rauhoittaa_VK = {s = c53A "rauhoittaa"} ;
+lin rauhoittua_VK = {s = c52A "rauhoittua"} ;
+lin rauhoitus_NK = {s = d39 "rauhoitus"} ;
+lin rauhoitusaika_NK = {s = d09A "rauhoitusaika"} ;
+lin raukaista_VK = {s = c66 "raukaista"} ;
+lin raukea_AK = {s = d15 "raukea"} ;
+--+ lin raukeasti_AdvK = {s = c99 "raukeasti"} ;
+lin raukeus_NK = {s = d40 "raukeus"} ;
+lin raukka_NK = {s = d09A "raukka"} ;
+--+ lin raukkamaisesti_AdvK = {s = c99 "raukkamaisesti"} ;
+lin raukkamaisuus_NK = {s = d40 "raukkamaisuus"} ;
+lin raukkis_NK = {s = d39 "raukkis"} ;
+lin raunikki_NK = {s = d05A "raunikki"} ;
+lin raunio_NK = {s = d03 "raunio"} ;
+lin raunioinen_NK = {s = d38 "raunioinen"} ;
+lin raunioittaa_VK = {s = c53A "raunioittaa"} ;
+lin raunioitua_VK = {s = c52A "raunioitua"} ;
+lin rausku_NK = {s = d01 "rausku"} ;
+lin rauta_NK = {s = d09A "rauta"} ;
+lin rautainen_AK = {s = d38 "rautainen"} ;
+--+ lin rautaisesti_AdvK = {s = c99 "rautaisesti"} ;
+lin rautatiela'inen_NK = {s = d38 "rautatieläinen"} ;
+lin rautiainen_NK = {s = d38 "rautiainen"} ;
+lin rautias_NK = {s = d41 "rautias"} ;
+lin rautu_NK = {s = d01A "rautu"} ;
+lin ravakasti_AdvK = {s = c99 "ravakasti"} ;
+lin ravakka_NK = {s = d14A "ravakka"} ;
+lin ravata_VK = {s = c73 "ravata"} ;
+lin ravauttaa_1_VK = {s = c53A "ravauttaa"} ;
+lin ravauttaa_2_VK = {s = c53A "ravauttaa"} ;
+--? lin ravet_NK = {s = d08 "ravet"} ;
+lin ravi_NK = {s = d05 "ravi"} ;
+lin ravinne_NK = {s = d48A "ravinne"} ;
+lin ravinnollinen_NK = {s = d38 "ravinnollinen"} ;
+lin ravinteikas_NK = {s = d41A "ravinteikas"} ;
+lin ravinteinen_NK = {s = d38 "ravinteinen"} ;
+lin ravinteisuus_NK = {s = d40 "ravinteisuus"} ;
+lin ravinto_NK = {s = d01A "ravinto"} ;
+lin ravintoinen_NK = {s = d38 "ravintoinen"} ;
+lin ravintola_NK = {s = d12 "ravintola"} ;
+lin ravintoloitsija_NK = {s = d12 "ravintoloitsija"} ;
+lin ravioli_NK = {s = d05 "ravioli"} ;
+lin ravistaa_VK = {s = c53 "ravistaa"} ;
+lin ravistella_VK = {s = c67 "ravistella"} ;
+lin ravistelu_NK = {s = d02 "ravistelu"} ;
+lin ravistin_NK = {s = d33 "ravistin"} ;
+lin ravistua_VK = {s = c52 "ravistua"} ;
+lin ravistuttaa_VK = {s = c53A "ravistuttaa"} ;
+lin ravita_VK = {s = c69 "ravita"} ;
+lin ravitsemuksellinen_NK = {s = d38 "ravitsemuksellinen"} ;
+lin ravitsemus_NK = {s = d39 "ravitsemus"} ;
+lin ravitseva_NK = {s = d10 "ravitseva"} ;
+lin ravitsevuus_NK = {s = d40 "ravitsevuus"} ;
+lin ravuri_NK = {s = d06 "ravuri"} ;
+lin ravustaa_VK = {s = c53 "ravustaa"} ;
+lin ravustaja_NK = {s = d10 "ravustaja"} ;
+lin ravustus_NK = {s = d39 "ravustus"} ;
+--+ lin reaaliaikaisesti_AdvK = {s = c99 "reaaliaikaisesti"} ;
+lin reaalinen_NK = {s = d38 "reaalinen"} ;
+lin reaalistaa_VK = {s = c53 "reaalistaa"} ;
+lin reaalistua_VK = {s = c52 "reaalistua"} ;
+lin reagenssi_NK = {s = d05 "reagenssi"} ;
+lin reagoida_VK = {s = c62 "reagoida"} ;
+lin reagointi_NK = {s = d05A "reagointi"} ;
+lin reaktiivinen_NK = {s = d38 "reaktiivinen"} ;
+lin reaktio_NK = {s = d03 "reaktio"} ;
+lin reaktioaika_NK = {s = d09A "reaktioaika"} ;
+lin reaktori_NK = {s = d06 "reaktori"} ;
+lin realisaatio_NK = {s = d03 "realisaatio"} ;
+lin realismi_NK = {s = d05 "realismi"} ;
+lin realisoida_VK = {s = c62 "realisoida"} ;
+lin realisointi_NK = {s = d05A "realisointi"} ;
+lin realisoitua_VK = {s = c52A "realisoitua"} ;
+lin realisti_NK = {s = d05 "realisti"} ;
+lin realistinen_AK = {s = d38 "realistinen"} ;
+--+ lin realistisesti_AdvK = {s = c99 "realistisesti"} ;
+lin realistisuus_NK = {s = d40 "realistisuus"} ;
+lin realiteetti_NK = {s = d05A "realiteetti"} ;
+lin redi_NK = {s = d05 "redi"} ;
+lin reduktio_NK = {s = d03 "reduktio"} ;
+lin reduktiojakautuminen_NK = {s = d38 "reduktiojakautuminen"} ;
+lin redundanssi_NK = {s = d05 "redundanssi"} ;
+lin redundantti_NK = {s = d05A "redundantti"} ;
+lin redusoida_VK = {s = c62 "redusoida"} ;
+lin redusointi_NK = {s = d05A "redusointi"} ;
+lin redusoitua_VK = {s = c52A "redusoitua"} ;
+lin reelinki_NK = {s = d05A "reelinki"} ;
+lin reesus_NK = {s = d39 "reesus"} ;
+lin referaatti_NK = {s = d05A "referaatti"} ;
+lin referee_NK = {s = d20 "referee"} ;
+lin referenssi_NK = {s = d05 "referenssi"} ;
+lin referentti_NK = {s = d05A "referentti"} ;
+lin referoida_VK = {s = c62 "referoida"} ;
+lin referoija_NK = {s = d10 "referoija"} ;
+lin referointi_NK = {s = d05A "referointi"} ;
+lin refilli_NK = {s = d05 "refilli"} ;
+lin reflaatio_NK = {s = d03 "reflaatio"} ;
+lin refleksi_NK = {s = d06 "refleksi"} ;
+lin refleksiivinen_NK = {s = d38 "refleksiivinen"} ;
+lin reflektorinen_AK = {s = d38 "reflektorinen"} ;
+--+ lin reflektorisesti_AdvK = {s = c99 "reflektorisesti"} ;
+lin reflektorisuus_NK = {s = d40 "reflektorisuus"} ;
+lin reformaatio_NK = {s = d03 "reformaatio"} ;
+lin reformaattori_NK = {s = d06 "reformaattori"} ;
+lin reformatorinen_NK = {s = d38 "reformatorinen"} ;
+lin reformi_NK = {s = d05 "reformi"} ;
+lin reformismi_NK = {s = d05 "reformismi"} ;
+lin reformisti_NK = {s = d05 "reformisti"} ;
+lin reformistinen_NK = {s = d38 "reformistinen"} ;
+lin reformoida_VK = {s = c62 "reformoida"} ;
+lin reformointi_NK = {s = d05A "reformointi"} ;
+lin refrengi_NK = {s = d05 "refrengi"} ;
+lin regatta_NK = {s = d09A "regatta"} ;
+lin regeneraatio_NK = {s = d03 "regeneraatio"} ;
+lin regeneraattori_NK = {s = d06 "regeneraattori"} ;
+lin regeneroida_VK = {s = c62 "regeneroida"} ;
+lin regenerointi_NK = {s = d05A "regenerointi"} ;
+lin regeneroitua_VK = {s = c52A "regeneroitua"} ;
+lin reggae_NK = {s = d21 "reggae"} ;
+lin regionaalinen_NK = {s = d38 "regionaalinen"} ;
+lin regionalismi_NK = {s = d05 "regionalismi"} ;
+lin regressiivinen_NK = {s = d38 "regressiivinen"} ;
+lin regressio_NK = {s = d03 "regressio"} ;
+lin rehabilitoida_VK = {s = c62 "rehabilitoida"} ;
+lin rehabilitointi_NK = {s = d05A "rehabilitointi"} ;
+lin rehdisti_AdvK = {s = c99 "rehdisti"} ;
+lin rehellinen_AK = {s = d38 "rehellinen"} ;
+--+ lin rehellisesti_AdvK = {s = c99 "rehellisesti"} ;
+lin rehellisyys_NK = {s = d40 "rehellisyys"} ;
+lin rehennella'_VK = {s = c67A "rehennellä"} ;
+lin rehentelija'_NK = {s = d12 "rehentelijä"} ;
+lin rehentely_NK = {s = d02 "rehentely"} ;
+lin rehevyys_NK = {s = d40 "rehevyys"} ;
+lin reheva'_AK = {s = d10 "rehevä"} ;
+--+ lin reheva'sti_AdvK = {s = c99 "rehevästi"} ;
+lin rehevo'itta'a'_VK = {s = c53A "rehevöittää"} ;
+lin rehevo'itya'_VK = {s = c52A "rehevöityä"} ;
+lin rehkia'_VK = {s = c61 "rehkiä"} ;
+lin rehottaa_VK = {s = c53A "rehottaa"} ;
+lin rehti_NK = {s = d05A "rehti"} ;
+lin rehtiys_NK = {s = d40 "rehtiys"} ;
+lin rehtori_NK = {s = d06 "rehtori"} ;
+lin rehtorius_NK = {s = d40 "rehtorius"} ;
+lin rehu_NK = {s = d01 "rehu"} ;
+lin rehustaa_VK = {s = c53 "rehustaa"} ;
+lin rehustus_NK = {s = d39 "rehustus"} ;
+lin rehvakas_AK = {s = d41A "rehvakas"} ;
+lin rehvakka_NK = {s = d14A "rehvakka"} ;
+--+ lin rehvakkaasti_AdvK = {s = c99 "rehvakkaasti"} ;
+lin rehvakkuus_NK = {s = d40 "rehvakkuus"} ;
+lin rehvastelija_NK = {s = d12 "rehvastelija"} ;
+lin rehvastella_VK = {s = c67 "rehvastella"} ;
+lin rehvastelu_NK = {s = d02 "rehvastelu"} ;
+lin rei_ika's_NK = {s = d41A "rei'ikäs"} ;
+lin rei_ite_NK = {s = d48A "rei'ite"} ;
+lin rei_itin_NK = {s = d33A "rei'itin"} ;
+lin rei_itta'a'_VK = {s = c53A "rei'ittää"} ;
+lin rei_itys_NK = {s = d39 "rei'itys"} ;
+lin reikeli_NK = {s = d06 "reikeli"} ;
+lin reiki_NK = {s = d05 "reiki"} ;
+lin reikiintya'_VK = {s = c52A "reikiintyä"} ;
+lin reika'_NK = {s = d10A "reikä"} ;
+lin reika'inen_NK = {s = d38 "reikäinen"} ;
+lin reilaaja_NK = {s = d10 "reilaaja"} ;
+lin reilaan_AdvK = {s = c99 "reilaan"} ;
+lin reilassa_AdvK = {s = c99 "reilassa"} ;
+lin reilata_VK = {s = c73 "reilata"} ;
+lin reilu_AK = {s = d01 "reilu"} ;
+--+ lin reilusti_AdvK = {s = c99 "reilusti"} ;
+lin reiluus_NK = {s = d40 "reiluus"} ;
+lin reima_NK = {s = d09 "reima"} ;
+lin reimari_NK = {s = d06 "reimari"} ;
+lin reininviini_NK = {s = d05 "reininviini"} ;
+lin reinkarnaatio_NK = {s = d03 "reinkarnaatio"} ;
+lin reipas_NK = {s = d41A "reipas"} ;
+lin reipastua_VK = {s = c52 "reipastua"} ;
+lin reippaasti_AdvK = {s = c99 "reippaasti"} ;
+lin reippailija_NK = {s = d12 "reippailija"} ;
+lin reippailla_VK = {s = c67 "reippailla"} ;
+lin reippailu_NK = {s = d02 "reippailu"} ;
+lin reippaus_NK = {s = d40 "reippaus"} ;
+lin reisi_NK = {s = d27 "reisi"} ;
+lin reissata_VK = {s = c73 "reissata"} ;
+lin reissu_NK = {s = d01 "reissu"} ;
+lin reistailla_VK = {s = c67 "reistailla"} ;
+lin reistata_VK = {s = c73 "reistata"} ;
+lin reitinen_NK = {s = d38 "reitinen"} ;
+lin reititta'a'_VK = {s = c53A "reitittää"} ;
+lin reittaus_NK = {s = d39 "reittaus"} ;
+lin reitti_NK = {s = d05A "reitti"} ;
+lin reivaaja_NK = {s = d10 "reivaaja"} ;
+lin reivata_VK = {s = c73 "reivata"} ;
+lin reivaus_NK = {s = d39 "reivaus"} ;
+lin reivi_NK = {s = d05 "reivi"} ;
+lin reivit_NK = {s = d05 "reivit"} ;
+lin reia'ka's_NK = {s = d41A "reiäkäs"} ;
+lin reia'llinen_NK = {s = d38 "reiällinen"} ;
+lin rejekti_NK = {s = d05 "rejekti"} ;
+lin rekallinen_NK = {s = d38 "rekallinen"} ;
+lin reki_NK = {s = d07A "reki"} ;
+lin rekisteri_NK = {s = d06 "rekisteri"} ;
+lin rekistero'ida'_VK = {s = c62 "rekisteröidä"} ;
+lin rekistero'inti_NK = {s = d05A "rekisteröinti"} ;
+lin rekka_1_NK = {s = d09A "rekka"} ;
+lin rekka_2_NK = {s = d09A "rekka"} ;
+lin rekkari_NK = {s = d06 "rekkari"} ;
+lin rekki_NK = {s = d05A "rekki"} ;
+lin reklamaatio_NK = {s = d03 "reklamaatio"} ;
+lin reklamoida_VK = {s = c62 "reklamoida"} ;
+lin reklamointi_NK = {s = d05A "reklamointi"} ;
+lin rekonstruktio_NK = {s = d03 "rekonstruktio"} ;
+lin rekonstruoida_VK = {s = c62 "rekonstruoida"} ;
+lin rekonstruointi_NK = {s = d05A "rekonstruointi"} ;
+lin rekrytoida_VK = {s = c62 "rekrytoida"} ;
+lin rekrytointi_NK = {s = d05A "rekrytointi"} ;
+lin reksi_NK = {s = d05 "reksi"} ;
+lin rektio_NK = {s = d03 "rektio"} ;
+lin rekviemi_NK = {s = d05 "rekviemi"} ;
+lin rekvisiitta_NK = {s = d09A "rekvisiitta"} ;
+lin rekyyli_NK = {s = d05 "rekyyli"} ;
+lin rekyylito'n_NK = {s = d34A "rekyylitön"} ;
+lin rela_NK = {s = d09 "rela"} ;
+lin relaatio_NK = {s = d03 "relaatio"} ;
+lin relaksantti_NK = {s = d05A "relaksantti"} ;
+lin relata_VK = {s = c73 "relata"} ;
+lin relatiivinen_NK = {s = d38 "relatiivinen"} ;
+lin relativismi_NK = {s = d05 "relativismi"} ;
+lin relativistinen_NK = {s = d38 "relativistinen"} ;
+lin rele_NK = {s = d48 "rele"} ;
+lin relevanssi_NK = {s = d05 "relevanssi"} ;
+lin reliefi_NK = {s = d05 "reliefi"} ;
+lin reliikki_NK = {s = d05A "reliikki"} ;
+lin relikti_NK = {s = d05 "relikti"} ;
+lin relissi_NK = {s = d05 "relissi"} ;
+lin rellestys_NK = {s = d39 "rellestys"} ;
+lin rellesta'a'_VK = {s = c53 "rellestää"} ;
+lin remahdus_NK = {s = d39 "remahdus"} ;
+lin remahtaa_VK = {s = c53A "remahtaa"} ;
+lin remakasti_AdvK = {s = c99 "remakasti"} ;
+lin remakka_NK = {s = d14A "remakka"} ;
+lin remburssi_NK = {s = d05 "remburssi"} ;
+lin remissi_NK = {s = d05 "remissi"} ;
+lin remissio_NK = {s = d03 "remissio"} ;
+lin remmi_NK = {s = d05 "remmi"} ;
+lin remontoida_VK = {s = c62 "remontoida"} ;
+lin remontointi_NK = {s = d05A "remontointi"} ;
+lin remontteerata_VK = {s = c73 "remontteerata"} ;
+lin remontti_NK = {s = d05A "remontti"} ;
+lin rempallaan_AdvK = {s = c99 "rempallaan"} ;
+lin rempalleen_AdvK = {s = c99 "rempalleen"} ;
+lin rempata_VK = {s = c73A "rempata"} ;
+lin rempseys_NK = {s = d40 "rempseys"} ;
+lin rempsea'_AK = {s = d15 "rempseä"} ;
+--+ lin rempsea'sti_AdvK = {s = c99 "rempseästi"} ;
+lin remu_NK = {s = d01 "remu"} ;
+lin remuisa_NK = {s = d10 "remuisa"} ;
+lin remuta_VK = {s = c74 "remuta"} ;
+lin renessanssi_NK = {s = d05 "renessanssi"} ;
+lin renessanssiaika_NK = {s = d09A "renessanssiaika"} ;
+lin rengas_NK = {s = d41A "rengas"} ;
+lin rengastaa_VK = {s = c53 "rengastaa"} ;
+lin rengastaja_NK = {s = d10 "rengastaja"} ;
+lin rengastus_NK = {s = d39 "rengastus"} ;
+lin renkainen_NK = {s = d38 "renkainen"} ;
+lin renki_NK = {s = d05A "renki"} ;
+lin renksu_NK = {s = d01 "renksu"} ;
+lin renkuttaa_VK = {s = c53A "renkuttaa"} ;
+lin renkutus_NK = {s = d39 "renkutus"} ;
+lin rennosti_AdvK = {s = c99 "rennosti"} ;
+lin rento_NK = {s = d01A "rento"} ;
+lin rentous_NK = {s = d40 "rentous"} ;
+lin rentoute_NK = {s = d48A "rentoute"} ;
+lin rentouttaa_VK = {s = c53A "rentouttaa"} ;
+lin rentoutua_VK = {s = c52A "rentoutua"} ;
+lin rentoutus_NK = {s = d39 "rentoutus"} ;
+lin renttu_NK = {s = d01A "renttu"} ;
+lin renttuilla_VK = {s = c67 "renttuilla"} ;
+lin renttuilu_NK = {s = d02 "renttuilu"} ;
+lin rentukka_NK = {s = d14A "rentukka"} ;
+lin repale_NK = {s = d48 "repale"} ;
+lin repaleinen_NK = {s = d38 "repaleinen"} ;
+lin repaleisuus_NK = {s = d40 "repaleisuus"} ;
+lin repata_VK = {s = c73A "repata"} ;
+lin repeentya'_VK = {s = c52A "repeentyä"} ;
+lin repeilla'_VK = {s = c67 "repeillä"} ;
+lin repertoaari_NK = {s = d05 "repertoaari"} ;
+lin repeytyma'_NK = {s = d10 "repeytymä"} ;
+lin repeytya'_VK = {s = c52A "repeytyä"} ;
+lin repea'ma'_NK = {s = d10 "repeämä"} ;
+lin repia'_VK = {s = c61A "repiä"} ;
+lin repliikki_NK = {s = d05A "repliikki"} ;
+lin replika_NK = {s = d13 "replika"} ;
+lin replikoida_VK = {s = c62 "replikoida"} ;
+lin replikointi_NK = {s = d05A "replikointi"} ;
+lin repo_NK = {s = d01A "repo"} ;
+lin reportaasi_NK = {s = d05 "reportaasi"} ;
+lin reportteri_NK = {s = d06 "reportteri"} ;
+lin repostella_VK = {s = c67 "repostella"} ;
+lin repostelu_NK = {s = d02 "repostelu"} ;
+lin reppana_NK = {s = d13 "reppana"} ;
+lin reppu_NK = {s = d01A "reppu"} ;
+lin reppuri_NK = {s = d06 "reppuri"} ;
+lin repro_NK = {s = d01 "repro"} ;
+lin reproduktio_NK = {s = d03 "reproduktio"} ;
+lin reprodusoida_VK = {s = c62 "reprodusoida"} ;
+lin repsahdus_NK = {s = d39 "repsahdus"} ;
+lin repsahtaa_VK = {s = c53A "repsahtaa"} ;
+lin repsikka_NK = {s = d14A "repsikka"} ;
+lin repsottaa_VK = {s = c53A "repsottaa"} ;
+lin republikaani_NK = {s = d05 "republikaani"} ;
+lin republikaaninen_NK = {s = d38 "republikaaninen"} ;
+lin repullinen_NK = {s = d38 "repullinen"} ;
+lin reputtaa_VK = {s = c53A "reputtaa"} ;
+lin repa'isevyys_NK = {s = d40 "repäisevyys"} ;
+lin repa'iseva'_AK = {s = d10 "repäisevä"} ;
+--+ lin repa'iseva'sti_AdvK = {s = c99 "repäisevästi"} ;
+lin repa'ista'_VK = {s = c66 "repäistä"} ;
+lin repa'isy_NK = {s = d02 "repäisy"} ;
+lin requiem_NK = {s = d05 "requiem"} ;
+lin reseda_NK = {s = d13 "reseda"} ;
+lin resepti_NK = {s = d05 "resepti"} ;
+lin reseptio_NK = {s = d03 "reseptio"} ;
+lin reseptori_NK = {s = d05 "reseptori"} ;
+lin reseptorinen_NK = {s = d38 "reseptorinen"} ;
+lin reservaatio_NK = {s = d03 "reservaatio"} ;
+lin reservaatti_NK = {s = d05A "reservaatti"} ;
+lin reservi_NK = {s = d05 "reservi"} ;
+lin reservila'inen_NK = {s = d38 "reserviläinen"} ;
+lin resessiivinen_NK = {s = d38 "resessiivinen"} ;
+lin residenssi_NK = {s = d05 "residenssi"} ;
+lin resignaatio_NK = {s = d03 "resignaatio"} ;
+lin resignoitua_VK = {s = c52A "resignoitua"} ;
+lin resiina_NK = {s = d13 "resiina"} ;
+lin resiprookkinen_NK = {s = d38 "resiprookkinen"} ;
+lin resistanssi_NK = {s = d05 "resistanssi"} ;
+lin resistenssi_NK = {s = d05 "resistenssi"} ;
+lin resistentti_NK = {s = d05A "resistentti"} ;
+lin resistiivisyys_NK = {s = d40 "resistiivisyys"} ;
+lin resitaali_NK = {s = d05 "resitaali"} ;
+lin resitaatio_NK = {s = d03 "resitaatio"} ;
+lin resitatiivi_NK = {s = d05 "resitatiivi"} ;
+lin resitatiivinen_AK = {s = d38 "resitatiivinen"} ;
+--+ lin resitatiivisesti_AdvK = {s = c99 "resitatiivisesti"} ;
+lin resitoida_VK = {s = c62 "resitoida"} ;
+lin reskontra_NK = {s = d10 "reskontra"} ;
+lin resonaattori_NK = {s = d06 "resonaattori"} ;
+lin resonanssi_NK = {s = d05 "resonanssi"} ;
+lin resonoida_VK = {s = c62 "resonoida"} ;
+lin resonointi_NK = {s = d05A "resonointi"} ;
+lin resori_NK = {s = d06 "resori"} ;
+lin respa_NK = {s = d09 "respa"} ;
+lin respekti_NK = {s = d05 "respekti"} ;
+lin respiitti_NK = {s = d05A "respiitti"} ;
+lin respiittiaika_NK = {s = d09A "respiittiaika"} ;
+lin respiraattori_NK = {s = d06 "respiraattori"} ;
+lin ressu_NK = {s = d01 "ressu"} ;
+lin ressukka_NK = {s = d14A "ressukka"} ;
+lin restauroida_VK = {s = c62 "restauroida"} ;
+lin restaurointi_NK = {s = d05A "restaurointi"} ;
+lin restonomi_NK = {s = d05 "restonomi"} ;
+lin resu_NK = {s = d01 "resu"} ;
+lin resuinen_NK = {s = d38 "resuinen"} ;
+lin resultantti_NK = {s = d05A "resultantti"} ;
+lin resursoida_VK = {s = c62 "resursoida"} ;
+lin resurssit_NK = {s = d05 "resurssit"} ;
+lin resuta_VK = {s = c74 "resuta"} ;
+lin retale_NK = {s = d48 "retale"} ;
+lin retea'_AK = {s = d15 "reteä"} ;
+--+ lin retea'sti_AdvK = {s = c99 "reteästi"} ;
+lin reti_NK = {s = d05A "reti"} ;
+lin retikka_NK = {s = d14A "retikka"} ;
+lin retkahdella_VK = {s = c67A "retkahdella"} ;
+lin retkahdus_NK = {s = d39 "retkahdus"} ;
+lin retkahtaa_VK = {s = c53A "retkahtaa"} ;
+lin retkeilija'_NK = {s = d12 "retkeilijä"} ;
+lin retkeilla'_VK = {s = c67 "retkeillä"} ;
+lin retkeily_NK = {s = d02 "retkeily"} ;
+lin retkela'inen_NK = {s = d38 "retkeläinen"} ;
+lin retki_NK = {s = d07 "retki"} ;
+lin retkottaa_VK = {s = c53A "retkottaa"} ;
+lin retku_NK = {s = d01 "retku"} ;
+lin retkua_VK = {s = c52 "retkua"} ;
+lin retkue_NK = {s = d48 "retkue"} ;
+lin retliini_NK = {s = d05 "retliini"} ;
+lin retoriikka_NK = {s = d09A "retoriikka"} ;
+lin retorinen_AK = {s = d38 "retorinen"} ;
+--+ lin retorisesti_AdvK = {s = c99 "retorisesti"} ;
+lin retorisuus_NK = {s = d40 "retorisuus"} ;
+lin retoromaani_NK = {s = d05 "retoromaani"} ;
+lin retoromaaninen_NK = {s = d38 "retoromaaninen"} ;
+lin retortti_NK = {s = d05A "retortti"} ;
+lin retostaa_VK = {s = c53 "retostaa"} ;
+lin retostella_VK = {s = c67 "retostella"} ;
+lin retriitti_NK = {s = d05A "retriitti"} ;
+lin retrospektiivinen_NK = {s = d38 "retrospektiivinen"} ;
+lin retsina_NK = {s = d13 "retsina"} ;
+lin rettelo'_NK = {s = d02 "rettelö"} ;
+lin rettelo'ida'_VK = {s = c68 "rettelöidä"} ;
+lin rettelo'ija'_NK = {s = d10 "rettelöijä"} ;
+lin rettelo'inti_NK = {s = d05A "rettelöinti"} ;
+lin rettelo'itsija'_NK = {s = d12 "rettelöitsijä"} ;
+lin retusoida_VK = {s = c62 "retusoida"} ;
+lin retusointi_NK = {s = d05A "retusointi"} ;
+lin retustaa_VK = {s = c53 "retustaa"} ;
+lin retuuttaa_VK = {s = c53A "retuuttaa"} ;
+lin reuhake_NK = {s = d48A "reuhake"} ;
+lin reuhata_VK = {s = c73 "reuhata"} ;
+lin reuhka_NK = {s = d09 "reuhka"} ;
+lin reuhottaa_VK = {s = c53A "reuhottaa"} ;
+lin reuhtoa_VK = {s = c52A "reuhtoa"} ;
+lin reuma_NK = {s = d09 "reuma"} ;
+lin reumaantua_VK = {s = c52A "reumaantua"} ;
+lin reumaatikko_NK = {s = d04A "reumaatikko"} ;
+lin reumaattinen_NK = {s = d38 "reumaattinen"} ;
+lin reumatismi_NK = {s = d05 "reumatismi"} ;
+lin reumatologia_NK = {s = d12 "reumatologia"} ;
+lin reuna_NK = {s = d09 "reuna"} ;
+lin reunainen_NK = {s = d38 "reunainen"} ;
+lin reunake_NK = {s = d48A "reunake"} ;
+lin reunama_NK = {s = d10 "reunama"} ;
+lin reunemmaksi_AdvK = {s = c99 "reunemmaksi"} ;
+lin reunemmalla_AdvK = {s = c99 "reunemmalla"} ;
+lin reunemmalle_AdvK = {s = c99 "reunemmalle"} ;
+lin reunemmalta_AdvK = {s = c99 "reunemmalta"} ;
+lin reunemmas_AdvK = {s = c99 "reunemmas"} ;
+lin reunempaa_AdvK = {s = c99 "reunempaa"} ;
+lin reunempana_AdvK = {s = c99 "reunempana"} ;
+lin reunimmainen_NK = {s = d38 "reunimmainen"} ;
+lin reunimmaksi_AdvK = {s = c99 "reunimmaksi"} ;
+lin reunimmalla_AdvK = {s = c99 "reunimmalla"} ;
+lin reunimmalle_AdvK = {s = c99 "reunimmalle"} ;
+lin reunimmalta_AdvK = {s = c99 "reunimmalta"} ;
+lin reunimmas_AdvK = {s = c99 "reunimmas"} ;
+lin reunimpaa_AdvK = {s = c99 "reunimpaa"} ;
+lin reunimpana_AdvK = {s = c99 "reunimpana"} ;
+lin reunuksinen_NK = {s = d38 "reunuksinen"} ;
+lin reunus_NK = {s = d39 "reunus"} ;
+lin reunusta_NK = {s = d13 "reunusta"} ;
+lin reunustaa_VK = {s = c53 "reunustaa"} ;
+lin reunuste_NK = {s = d48 "reunuste"} ;
+lin reunustus_NK = {s = d39 "reunustus"} ;
+lin reutoa_VK = {s = c52A "reutoa"} ;
+lin revalvaatio_NK = {s = d03 "revalvaatio"} ;
+lin revalvoida_VK = {s = c62 "revalvoida"} ;
+lin revalvointi_NK = {s = d05A "revalvointi"} ;
+lin revalvoitua_VK = {s = c52A "revalvoitua"} ;
+lin revansismi_NK = {s = d05 "revansismi"} ;
+lin revansisti_NK = {s = d05 "revansisti"} ;
+lin revansistinen_NK = {s = d38 "revansistinen"} ;
+lin revanssi_NK = {s = d05 "revanssi"} ;
+lin revari_NK = {s = d06 "revari"} ;
+lin reversiibeli_NK = {s = d06 "reversiibeli"} ;
+lin reveta'_VK = {s = c74A "revetä"} ;
+lin reviiri_NK = {s = d05 "reviiri"} ;
+lin reviisori_NK = {s = d06 "reviisori"} ;
+lin revinna'inen_NK = {s = d38 "revinnäinen"} ;
+lin revinta'_NK = {s = d09A "revintä"} ;
+lin revisio_NK = {s = d03 "revisio"} ;
+lin revisionismi_NK = {s = d05 "revisionismi"} ;
+lin revisionistinen_NK = {s = d38 "revisionistinen"} ;
+lin revitella'_VK = {s = c67A "revitellä"} ;
+lin revittely_NK = {s = d02 "revittely"} ;
+lin revitta'a'_VK = {s = c53A "revittää"} ;
+lin revitys_NK = {s = d39 "revitys"} ;
+lin revitytta'a'_VK = {s = c53A "revityttää"} ;
+lin revohka_NK = {s = d13 "revohka"} ;
+lin revolutionisti_NK = {s = d05 "revolutionisti"} ;
+lin revoluutio_NK = {s = d03 "revoluutio"} ;
+lin revolveri_NK = {s = d06 "revolveri"} ;
+lin revyy_NK = {s = d20 "revyy"} ;
+lin reva'hdys_NK = {s = d39 "revähdys"} ;
+lin reva'hdytta'a'_VK = {s = c53A "revähdyttää"} ;
+lin reva'htyma'_NK = {s = d10 "revähtymä"} ;
+lin reva'hta'a'_VK = {s = c53A "revähtää"} ;
+lin reva'ista'_VK = {s = c66 "reväistä"} ;
+lin reva'ytta'a'_VK = {s = c53A "reväyttää"} ;
+lin rhesus_NK = {s = d39 "rhesus"} ;
+lin rhododendron_NK = {s = d05 "rhododendron"} ;
+lin rial_NK = {s = d06 "rial"} ;
+lin riboflaviini_NK = {s = d05 "riboflaviini"} ;
+lin rieha_NK = {s = d09 "rieha"} ;
+lin riehaannuttaa_VK = {s = c53A "riehaannuttaa"} ;
+lin riehaantua_VK = {s = c52A "riehaantua"} ;
+lin riehakas_AK = {s = d41A "riehakas"} ;
+lin riehakka_NK = {s = d14A "riehakka"} ;
+--+ lin riehakkaasti_AdvK = {s = c99 "riehakkaasti"} ;
+lin riehakkuus_NK = {s = d40 "riehakkuus"} ;
+lin riehua_VK = {s = c52 "riehua"} ;
+lin riehunta_NK = {s = d09A "riehunta"} ;
+lin riekale_NK = {s = d48 "riekale"} ;
+lin riekaleinen_NK = {s = d38 "riekaleinen"} ;
+lin riekko_NK = {s = d01A "riekko"} ;
+lin riekkua_VK = {s = c52A "riekkua"} ;
+--? lin riekkujaiset_NK = {s = d38 "riekkujaiset"} ;
+lin riemastua_VK = {s = c52 "riemastua"} ;
+lin riemastus_NK = {s = d39 "riemastus"} ;
+lin riemastuttaa_VK = {s = c53A "riemastuttaa"} ;
+lin riemu_NK = {s = d01 "riemu"} ;
+lin riemuinen_NK = {s = d38 "riemuinen"} ;
+lin riemuisa_AK = {s = d10 "riemuisa"} ;
+--+ lin riemuisasti_AdvK = {s = c99 "riemuisasti"} ;
+lin riemuissaan_AdvK = {s = c99 "riemuissaan"} ;
+lin riemuita_VK = {s = c69 "riemuita"} ;
+lin riemukas_AK = {s = d41A "riemukas"} ;
+--+ lin riemukkaasti_AdvK = {s = c99 "riemukkaasti"} ;
+lin riemukkuus_NK = {s = d40 "riemukkuus"} ;
+lin riemullinen_NK = {s = d38 "riemullinen"} ;
+lin riemurinnoin_AdvK = {s = c99 "riemurinnoin"} ;
+lin riena_NK = {s = d09 "riena"} ;
+lin rienaaja_NK = {s = d10 "rienaaja"} ;
+lin rienata_VK = {s = c73 "rienata"} ;
+lin rienaus_NK = {s = d39 "rienaus"} ;
+lin riento_NK = {s = d01A "riento"} ;
+lin rienta'a'_VK = {s = c54A "rientää"} ;
+lin riepoa_VK = {s = c52A "riepoa"} ;
+lin riepotella_VK = {s = c67A "riepotella"} ;
+lin riepottaa_VK = {s = c53A "riepottaa"} ;
+lin riepottelu_NK = {s = d02 "riepottelu"} ;
+lin riepotus_NK = {s = d39 "riepotus"} ;
+lin riepu_NK = {s = d01A "riepu"} ;
+lin riesa_NK = {s = d09 "riesa"} ;
+lin rieska_NK = {s = d09 "rieska"} ;
+lin rietas_NK = {s = d41A "rietas"} ;
+lin rietastella_VK = {s = c67 "rietastella"} ;
+lin rietastelu_NK = {s = d02 "rietastelu"} ;
+lin riettaasti_AdvK = {s = c99 "riettaasti"} ;
+lin riettaus_NK = {s = d40 "riettaus"} ;
+lin rieva'_NK = {s = d10 "rievä"} ;
+lin riff_NK = {s = d05 "riff"} ;
+lin rigorismi_NK = {s = d05 "rigorismi"} ;
+lin rigoristi_NK = {s = d05 "rigoristi"} ;
+lin rigoristinen_AK = {s = d38 "rigoristinen"} ;
+--+ lin rigoristisesti_AdvK = {s = c99 "rigoristisesti"} ;
+lin rigoristisuus_NK = {s = d40 "rigoristisuus"} ;
+lin rihkama_NK = {s = d10 "rihkama"} ;
+lin rihla_NK = {s = d09 "rihla"} ;
+lin rihlata_VK = {s = c73 "rihlata"} ;
+lin rihlaus_NK = {s = d39 "rihlaus"} ;
+lin rihma_NK = {s = d09 "rihma"} ;
+lin rihmasto_NK = {s = d02 "rihmasto"} ;
+lin riiailla_VK = {s = c67 "riiailla"} ;
+lin riiata_VK = {s = c73 "riiata"} ;
+lin riidaton_NK = {s = d34A "riidaton"} ;
+lin riidella'_VK = {s = c67A "riidellä"} ;
+lin riihi_NK = {s = d23 "riihi"} ;
+lin riihitta'a'_VK = {s = c53A "riihittää"} ;
+lin riimi_NK = {s = d05 "riimi"} ;
+lin riimillinen_NK = {s = d38 "riimillinen"} ;
+lin riimitella'_VK = {s = c67A "riimitellä"} ;
+lin riimitelma'_NK = {s = d10 "riimitelmä"} ;
+lin riimittely_NK = {s = d02 "riimittely"} ;
+lin riimitta'a'_VK = {s = c53A "riimittää"} ;
+lin riimitys_NK = {s = d39 "riimitys"} ;
+lin riimito'n_NK = {s = d34A "riimitön"} ;
+lin riimu_1_NK = {s = d01 "riimu"} ;
+lin riimu_2_NK = {s = d01 "riimu"} ;
+lin riimuttaa_VK = {s = c53A "riimuttaa"} ;
+lin riimutus_NK = {s = d39 "riimutus"} ;
+lin riipaiseva_AK = {s = d10 "riipaiseva"} ;
+--+ lin riipaisevasti_AdvK = {s = c99 "riipaisevasti"} ;
+lin riipaista_VK = {s = c66 "riipaista"} ;
+lin riipalla_AdvK = {s = c99 "riipalla"} ;
+lin riipallaan_AdvK = {s = c99 "riipallaan"} ;
+lin riipalle_AdvK = {s = c99 "riipalle"} ;
+lin riipalleen_AdvK = {s = c99 "riipalleen"} ;
+lin riipia'_VK = {s = c61A "riipiä"} ;
+lin riipoa_VK = {s = c52A "riipoa"} ;
+lin riippa_NK = {s = d09A "riippa"} ;
+lin riippua_VK = {s = c52A "riippua"} ;
+lin riippuma_NK = {s = d10 "riippuma"} ;
+lin riippumaton_NK = {s = d34A "riippumaton"} ;
+lin riippumatta_AdvK = {s = c99 "riippumatta"} ;
+lin riippumattomasti_AdvK = {s = c99 "riippumattomasti"} ;
+lin riippumattomuus_NK = {s = d40 "riippumattomuus"} ;
+lin riippuva_NK = {s = d10 "riippuva"} ;
+lin riippuvainen_NK = {s = d38 "riippuvainen"} ;
+lin riippuvaisuus_NK = {s = d40 "riippuvaisuus"} ;
+lin riippuvuus_NK = {s = d40 "riippuvuus"} ;
+lin riipuksiin_AdvK = {s = c99 "riipuksiin"} ;
+lin riipuksissa_AdvK = {s = c99 "riipuksissa"} ;
+lin riipunta_NK = {s = d09A "riipunta"} ;
+lin riipus_NK = {s = d39 "riipus"} ;
+lin riipustaa_VK = {s = c53 "riipustaa"} ;
+lin riiputtaa_VK = {s = c53A "riiputtaa"} ;
+lin riiputus_NK = {s = d39 "riiputus"} ;
+lin riisi_1_NK = {s = d05 "riisi"} ;
+lin riisi_2_NK = {s = d05 "riisi"} ;
+lin riista_NK = {s = d09 "riista"} ;
+lin riistainen_NK = {s = d38 "riistainen"} ;
+lin riistamaaliammunta_NK = {s = d09A "riistamaaliammunta"} ;
+lin riisto_NK = {s = d01 "riisto"} ;
+lin riista'ja'_NK = {s = d10 "riistäjä"} ;
+lin riista'ytya'_VK = {s = c52A "riistäytyä"} ;
+lin riista'a'_VK = {s = c53 "riistää"} ;
+lin riisua_VK = {s = c52 "riisua"} ;
+lin riisunta_NK = {s = d09A "riisunta"} ;
+lin riisuuntua_VK = {s = c52A "riisuuntua"} ;
+lin riisuutua_VK = {s = c52A "riisuutua"} ;
+lin riita_NK = {s = d09A "riita"} ;
+lin riitaannuttaa_VK = {s = c53A "riitaannuttaa"} ;
+lin riitaantua_VK = {s = c52A "riitaantua"} ;
+lin riitainen_AK = {s = d38 "riitainen"} ;
+lin riitaisa_NK = {s = d10 "riitaisa"} ;
+--+ lin riitaisesti_AdvK = {s = c99 "riitaisesti"} ;
+lin riitaisuus_NK = {s = d40 "riitaisuus"} ;
+lin riitauttaa_VK = {s = c53A "riitauttaa"} ;
+lin riitautua_VK = {s = c52A "riitautua"} ;
+lin riite_NK = {s = d48A "riite"} ;
+lin riitelija'_NK = {s = d12 "riitelijä"} ;
+lin riitely_NK = {s = d02 "riitely"} ;
+lin riitinki_NK = {s = d05A "riitinki"} ;
+lin riitteinen_NK = {s = d38 "riitteinen"} ;
+lin riitti_NK = {s = d05A "riitti"} ;
+lin riittoisa_AK = {s = d10 "riittoisa"} ;
+--+ lin riittoisasti_AdvK = {s = c99 "riittoisasti"} ;
+lin riittoisuus_NK = {s = d40 "riittoisuus"} ;
+lin riittya'_VK = {s = c52A "riittyä"} ;
+lin riitta'miin_AdvK = {s = c99 "riittämiin"} ;
+lin riitta'ma'tto'myys_NK = {s = d40 "riittämättömyys"} ;
+lin riitta'ma'tto'ma'sti_AdvK = {s = c99 "riittämättömästi"} ;
+lin riitta'ma'to'n_NK = {s = d34A "riittämätön"} ;
+lin riitta'vyys_NK = {s = d40 "riittävyys"} ;
+lin riitta'va'_AK = {s = d10 "riittävä"} ;
+--+ lin riitta'va'sti_AdvK = {s = c99 "riittävästi"} ;
+lin riitta'a'_1_VK = {s = c53A "riittää"} ;
+lin riitta'a'_2_VK = {s = c53A "riittää"} ;
+lin riiustaa_VK = {s = c53 "riiustaa"} ;
+lin riiustella_VK = {s = c67 "riiustella"} ;
+lin riiustelu_NK = {s = d02 "riiustelu"} ;
+lin riiuu_NK = {s = d17 "riiuu"} ;
+lin riivaaja_NK = {s = d10 "riivaaja"} ;
+lin riivata_VK = {s = c73 "riivata"} ;
+lin riivattu_NK = {s = d01A "riivattu"} ;
+lin riivatunmoinen_NK = {s = d38 "riivatunmoinen"} ;
+lin riivatusti_AdvK = {s = c99 "riivatusti"} ;
+lin riivio'_NK = {s = d03 "riiviö"} ;
+lin rikas_AK = {s = d41A "rikas"} ;
+lin rikastaa_VK = {s = c53 "rikastaa"} ;
+lin rikastamo_NK = {s = d02 "rikastamo"} ;
+lin rikaste_NK = {s = d48 "rikaste"} ;
+lin rikastin_NK = {s = d33 "rikastin"} ;
+lin rikastua_VK = {s = c52 "rikastua"} ;
+lin rikastus_NK = {s = d39 "rikastus"} ;
+lin rikastuttaa_VK = {s = c53A "rikastuttaa"} ;
+lin rikastuttaja_NK = {s = d10 "rikastuttaja"} ;
+lin rike_NK = {s = d48A "rike"} ;
+lin riki_NK = {s = d05 "riki"} ;
+lin rikka_NK = {s = d09A "rikka"} ;
+--+ lin rikkaasti_AdvK = {s = c99 "rikkaasti"} ;
+lin rikkaus_NK = {s = d40 "rikkaus"} ;
+lin rikkeeto'n_NK = {s = d34A "rikkeetön"} ;
+lin rikki_1_NK = {s = d05A "rikki"} ;
+lin rikki_2_AdvK = {s = c99 "rikki"} ;
+lin rikkidioksidi_NK = {s = d05 "rikkidioksidi"} ;
+lin rikkina'inen_NK = {s = d38 "rikkinäinen"} ;
+lin rikkina'isyys_NK = {s = d40 "rikkinäisyys"} ;
+lin rikko_NK = {s = d01A "rikko"} ;
+lin rikkoa_VK = {s = c52A "rikkoa"} ;
+lin rikkoja_NK = {s = d10 "rikkoja"} ;
+--? lin rikkojaiset_NK = {s = d38 "rikkojaiset"} ;
+lin rikkomaton_NK = {s = d34A "rikkomaton"} ;
+lin rikkomattomuus_NK = {s = d40 "rikkomattomuus"} ;
+lin rikkomus_NK = {s = d39 "rikkomus"} ;
+lin rikkoontua_VK = {s = c52A "rikkoontua"} ;
+lin rikkouma_NK = {s = d10 "rikkouma"} ;
+lin rikkoutua_VK = {s = c52A "rikkoutua"} ;
+lin rikkoutuma_NK = {s = d10 "rikkoutuma"} ;
+lin rikkua_VK = {s = c52A "rikkua"} ;
+lin rikkumaton_NK = {s = d34A "rikkumaton"} ;
+lin rikkuri_NK = {s = d06 "rikkuri"} ;
+lin rikollinen_AK = {s = d38 "rikollinen"} ;
+--+ lin rikollisesti_AdvK = {s = c99 "rikollisesti"} ;
+lin rikollisuus_NK = {s = d40 "rikollisuus"} ;
+lin rikos_NK = {s = d39 "rikos"} ;
+lin riksa_NK = {s = d09 "riksa"} ;
+lin rik_a_NK = {s = d09 "rikša"} ;
+lin riksahtaa_VK = {s = c53A "riksahtaa"} ;
+lin riksi_NK = {s = d05 "riksi"} ;
+lin rillit_NK = {s = d05 "rillit"} ;
+lin rillutella_VK = {s = c67A "rillutella"} ;
+lin rilluttelu_NK = {s = d02 "rilluttelu"} ;
+lin rima_NK = {s = d09 "rima"} ;
+lin rimoittaa_VK = {s = c53A "rimoittaa"} ;
+lin rimoitus_NK = {s = d39 "rimoitus"} ;
+lin rimpi_NK = {s = d07A "rimpi"} ;
+lin rimpsa_NK = {s = d09 "rimpsa"} ;
+lin rimpsu_NK = {s = d01 "rimpsu"} ;
+lin rimpuilla_VK = {s = c67 "rimpuilla"} ;
+lin rimpuilu_NK = {s = d02 "rimpuilu"} ;
+lin rimputella_VK = {s = c67A "rimputella"} ;
+lin rimputtaa_VK = {s = c53A "rimputtaa"} ;
+lin rimputus_NK = {s = d39 "rimputus"} ;
+lin rimssu_NK = {s = d01 "rimssu"} ;
+lin rimsu_NK = {s = d01 "rimsu"} ;
+lin ringette_NK = {s = d08 "ringette"} ;
+lin rinkeli_NK = {s = d06 "rinkeli"} ;
+lin rinki_NK = {s = d05A "rinki"} ;
+lin rinkila'_NK = {s = d12 "rinkilä"} ;
+lin rinkka_NK = {s = d09A "rinkka"} ;
+lin rinkula_NK = {s = d12 "rinkula"} ;
+lin rinnakkain_AdvK = {s = c99 "rinnakkain"} ;
+lin rinnakkainen_AK = {s = d38 "rinnakkainen"} ;
+--+ lin rinnakkaisesti_AdvK = {s = c99 "rinnakkaisesti"} ;
+lin rinnakkaisuus_NK = {s = d40 "rinnakkaisuus"} ;
+lin rinnalla_AdvK = {s = c99 "rinnalla"} ;
+lin rinnalle_AdvK = {s = c99 "rinnalle"} ;
+lin rinnalta_AdvK = {s = c99 "rinnalta"} ;
+lin rinnan_AdvK = {s = c99 "rinnan"} ;
+lin rinnastaa_VK = {s = c53 "rinnastaa"} ;
+lin rinnasteinen_NK = {s = d38 "rinnasteinen"} ;
+lin rinnasteisuus_NK = {s = d40 "rinnasteisuus"} ;
+lin rinnastua_VK = {s = c52 "rinnastua"} ;
+lin rinnastus_NK = {s = d39 "rinnastus"} ;
+lin rinnatusten_AdvK = {s = c99 "rinnatusten"} ;
+lin rinne_NK = {s = d48A "rinne"} ;
+lin rinnus_NK = {s = d39 "rinnus"} ;
+lin rinnusta_NK = {s = d13 "rinnusta"} ;
+lin rinnustin_NK = {s = d33 "rinnustin"} ;
+lin rinta_NK = {s = d09A "rinta"} ;
+lin rintainen_NK = {s = d38 "rintainen"} ;
+lin rintama_NK = {s = d10 "rintama"} ;
+lin rintamus_NK = {s = d39 "rintamus"} ;
+lin rintarossi_NK = {s = d05 "rintarossi"} ;
+lin rintava_NK = {s = d10 "rintava"} ;
+lin rintavuus_NK = {s = d40 "rintavuus"} ;
+lin rinteinen_NK = {s = d38 "rinteinen"} ;
+--? lin rintsikat_NK = {s = d14A "rintsikat"} ;
+lin ripa_1_NK = {s = d09A "ripa"} ;
+lin ripa_2_NK = {s = d09A "ripa"} ;
+lin ripari_NK = {s = d06 "ripari"} ;
+lin ripaska_NK = {s = d13 "ripaska"} ;
+lin ripaus_NK = {s = d39 "ripaus"} ;
+lin ripauttaa_VK = {s = c53A "ripauttaa"} ;
+lin ripe_NK = {s = d48A "ripe"} ;
+lin ripeksia'_VK = {s = c61 "ripeksiä"} ;
+lin ripellys_NK = {s = d39 "ripellys"} ;
+lin ripeys_NK = {s = d40 "ripeys"} ;
+lin ripeytta'a'_VK = {s = c53A "ripeyttää"} ;
+lin ripeytya'_VK = {s = c52A "ripeytyä"} ;
+lin ripea'_AK = {s = d15 "ripeä"} ;
+--+ lin ripea'sti_AdvK = {s = c99 "ripeästi"} ;
+lin ripina'_NK = {s = d12 "ripinä"} ;
+lin ripista'_VK = {s = c66 "ripistä"} ;
+lin ripitta'ytyja'_NK = {s = d10 "ripittäytyjä"} ;
+lin ripitta'ytya'_VK = {s = c52A "ripittäytyä"} ;
+lin ripitta'a'_VK = {s = c53A "ripittää"} ;
+lin ripitys_NK = {s = d39 "ripitys"} ;
+lin ripotella_VK = {s = c67A "ripotella"} ;
+lin ripottaa_VK = {s = c53A "ripottaa"} ;
+lin rippi_NK = {s = d05A "rippi"} ;
+lin rippikoulunka'yma'to'n_NK = {s = d34A "rippikoulunkäymätön"} ;
+lin rippis_NK = {s = d39 "rippis"} ;
+lin rippu_NK = {s = d01A "rippu"} ;
+lin rippunen_NK = {s = d38 "rippunen"} ;
+lin ripsahdella_VK = {s = c67A "ripsahdella"} ;
+lin ripsahdus_NK = {s = d39 "ripsahdus"} ;
+lin ripsahtaa_VK = {s = c53A "ripsahtaa"} ;
+lin ripsaus_NK = {s = d39 "ripsaus"} ;
+lin ripsauttaa_VK = {s = c53A "ripsauttaa"} ;
+lin ripsi_1_NK = {s = d07 "ripsi"} ;
+lin ripsi_2_NK = {s = d05 "ripsi"} ;
+lin ripsinen_1_NK = {s = d38 "ripsinen"} ;
+lin ripsinen_2_NK = {s = d38 "ripsinen"} ;
+lin ripsia'_VK = {s = c61 "ripsiä"} ;
+lin ripsia'inen_NK = {s = d38 "ripsiäinen"} ;
+lin ripsu_NK = {s = d01 "ripsu"} ;
+lin ripsua_VK = {s = c52 "ripsua"} ;
+lin ripuli_NK = {s = d06 "ripuli"} ;
+lin ripulinen_NK = {s = d38 "ripulinen"} ;
+lin ripuloida_VK = {s = c62 "ripuloida"} ;
+lin ripulointi_NK = {s = d05A "ripulointi"} ;
+lin ripustaa_VK = {s = c53 "ripustaa"} ;
+lin ripustautua_VK = {s = c52A "ripustautua"} ;
+lin ripustin_NK = {s = d33 "ripustin"} ;
+lin ripustus_NK = {s = d39 "ripustus"} ;
+lin risa_1_NK = {s = d09 "risa"} ;
+lin risa_2_NK = {s = d09 "risa"} ;
+lin risahdella_VK = {s = c67A "risahdella"} ;
+lin risahdus_NK = {s = d39 "risahdus"} ;
+lin risahtaa_VK = {s = c53A "risahtaa"} ;
+lin risahtelu_NK = {s = d02 "risahtelu"} ;
+lin risainen_NK = {s = d38 "risainen"} ;
+lin risakas_NK = {s = d41A "risakas"} ;
+lin risaus_NK = {s = d39 "risaus"} ;
+lin risauttaa_VK = {s = c53A "risauttaa"} ;
+lin risiini_NK = {s = d05 "risiini"} ;
+lin riskaabeli_NK = {s = d05 "riskaabeli"} ;
+lin riskeerata_VK = {s = c73 "riskeerata"} ;
+lin riski_1_NK = {s = d05 "riski"} ;
+lin riski_2_NK = {s = d05 "riski"} ;
+lin riskila'_NK = {s = d12 "riskilä"} ;
+lin riskinen_NK = {s = d38 "riskinen"} ;
+lin riskito'n_NK = {s = d34A "riskitön"} ;
+lin risoa_VK = {s = c52 "risoa"} ;
+lin risotto_NK = {s = d01A "risotto"} ;
+lin rispaantua_VK = {s = c52A "rispaantua"} ;
+lin rispautua_VK = {s = c52A "rispautua"} ;
+lin risteilija'_NK = {s = d12 "risteilijä"} ;
+lin risteilla'_VK = {s = c67 "risteillä"} ;
+lin risteily_NK = {s = d02 "risteily"} ;
+lin risteta'_VK = {s = c74 "ristetä"} ;
+lin risteyma'_NK = {s = d10 "risteymä"} ;
+lin risteys_NK = {s = d39 "risteys"} ;
+lin risteyskohta_NK = {s = d10A "risteyskohta"} ;
+lin risteytta'a'_VK = {s = c53A "risteyttää"} ;
+lin risteytyma'_NK = {s = d10 "risteytymä"} ;
+lin risteytys_NK = {s = d39 "risteytys"} ;
+lin risteytya'_VK = {s = c52A "risteytyä"} ;
+lin risti_NK = {s = d05 "risti"} ;
+lin ristiin_AdvK = {s = c99 "ristiin"} ;
+lin ristiinpukeutuminen_NK = {s = d38 "ristiinpukeutuminen"} ;
+lin ristiin_rastiin_AdvK = {s = c99 "ristiin rastiin"} ;
+lin ristikki_NK = {s = d05A "ristikki"} ;
+lin ristikko_NK = {s = d04A "ristikko"} ;
+lin ristikka'in_AdvK = {s = c99 "ristikkäin"} ;
+lin ristikka'inen_AK = {s = d38 "ristikkäinen"} ;
+--+ lin ristikka'isesti_AdvK = {s = c99 "ristikkäisesti"} ;
+lin ristikka'isyys_NK = {s = d40 "ristikkäisyys"} ;
+lin ristikoida_VK = {s = c62 "ristikoida"} ;
+lin ristikollinen_NK = {s = d38 "ristikollinen"} ;
+lin ristima'inen_NK = {s = d38 "ristimäinen"} ;
+lin ristissa'_AdvK = {s = c99 "ristissä"} ;
+lin ristia'_VK = {s = c61 "ristiä"} ;
+--? lin ristia'iset_NK = {s = d38 "ristiäiset"} ;
+lin risu_NK = {s = d01 "risu"} ;
+lin risukko_NK = {s = d04A "risukko"} ;
+lin risukkoinen_NK = {s = d38 "risukkoinen"} ;
+lin rita_NK = {s = d09A "rita"} ;
+lin ritari_NK = {s = d06 "ritari"} ;
+lin ritarillinen_AK = {s = d38 "ritarillinen"} ;
+--+ lin ritarillisesti_AdvK = {s = c99 "ritarillisesti"} ;
+lin ritarillisuus_NK = {s = d40 "ritarillisuus"} ;
+lin ritaristo_NK = {s = d01 "ritaristo"} ;
+lin ritila'_NK = {s = d12 "ritilä"} ;
+lin ritina'_NK = {s = d12 "ritinä"} ;
+lin ritista'_VK = {s = c66 "ritistä"} ;
+lin ritsa_NK = {s = d09 "ritsa"} ;
+lin rituaali_NK = {s = d05 "rituaali"} ;
+lin rituaalinen_NK = {s = d38 "rituaalinen"} ;
+lin ritva_NK = {s = d09 "ritva"} ;
+lin riuduttaa_VK = {s = c53A "riuduttaa"} ;
+lin riuhtaista_VK = {s = c66 "riuhtaista"} ;
+lin riuhtaisu_NK = {s = d02 "riuhtaisu"} ;
+lin riuhtoa_VK = {s = c52A "riuhtoa"} ;
+lin riuku_NK = {s = d01A "riuku"} ;
+lin riuna_NK = {s = d09 "riuna"} ;
+lin riuska_AK = {s = d09 "riuska"} ;
+--+ lin riuskasti_AdvK = {s = c99 "riuskasti"} ;
+lin riuskuus_NK = {s = d40 "riuskuus"} ;
+lin riutta_NK = {s = d09A "riutta"} ;
+lin riuttainen_NK = {s = d38 "riuttainen"} ;
+lin riutua_VK = {s = c52A "riutua"} ;
+lin rivaali_NK = {s = d06 "rivaali"} ;
+lin rivakasti_AdvK = {s = c99 "rivakasti"} ;
+lin rivakka_NK = {s = d14A "rivakka"} ;
+lin rivakkuus_NK = {s = d40 "rivakkuus"} ;
+lin riveitta'in_AdvK = {s = c99 "riveittäin"} ;
+lin rivi_NK = {s = d05 "rivi"} ;
+lin rivinen_NK = {s = d38 "rivinen"} ;
+lin rivisto'_NK = {s = d02 "rivistö"} ;
+lin rivitta'in_AdvK = {s = c99 "rivittäin"} ;
+lin rivitta'a'_VK = {s = c53A "rivittää"} ;
+lin rivitys_NK = {s = d39 "rivitys"} ;
+lin rivo_NK = {s = d01 "rivo"} ;
+lin rivous_NK = {s = d40 "rivous"} ;
+lin robotiikka_NK = {s = d09A "robotiikka"} ;
+lin robotisoida_VK = {s = c62 "robotisoida"} ;
+lin robotisointi_NK = {s = d05A "robotisointi"} ;
+lin robotisoitua_VK = {s = c52A "robotisoitua"} ;
+lin robotoida_VK = {s = c62 "robotoida"} ;
+lin robotointi_NK = {s = d05A "robotointi"} ;
+lin robotti_NK = {s = d05A "robotti"} ;
+lin robusti_NK = {s = d05 "robusti"} ;
+lin rock_NK = {s = d05 "rock"} ;
+lin rock_and_roll_NK = {s = d05 "rock and roll"} ;
+lin rodeo_NK = {s = d03 "rodeo"} ;
+lin rodium_NK = {s = d05 "rodium"} ;
+lin rodullinen_AK = {s = d38 "rodullinen"} ;
+--+ lin rodullisesti_AdvK = {s = c99 "rodullisesti"} ;
+lin rohdin_NK = {s = d33A "rohdin"} ;
+lin rohdos_NK = {s = d39 "rohdos"} ;
+lin rohduksissa_AdvK = {s = c99 "rohduksissa"} ;
+lin rohina_NK = {s = d12 "rohina"} ;
+lin rohista_VK = {s = c66 "rohista"} ;
+lin rohjake_NK = {s = d48A "rohjake"} ;
+lin rohjeta_VK = {s = c72A "rohjeta"} ;
+lin rohjo_NK = {s = d01 "rohjo"} ;
+lin rohkaista_VK = {s = c66 "rohkaista"} ;
+lin rohkaistua_VK = {s = c52 "rohkaistua"} ;
+lin rohkaisu_NK = {s = d02 "rohkaisu"} ;
+lin rohkea_AK = {s = d15 "rohkea"} ;
+--+ lin rohkeasti_AdvK = {s = c99 "rohkeasti"} ;
+lin rohkeus_NK = {s = d40 "rohkeus"} ;
+lin rohmu_NK = {s = d01 "rohmu"} ;
+lin rohmuaja_NK = {s = d10 "rohmuaja"} ;
+lin rohmuta_VK = {s = c74 "rohmuta"} ;
+lin rohtiminen_NK = {s = d38 "rohtiminen"} ;
+lin rohto_NK = {s = d01A "rohto"} ;
+lin rohtua_VK = {s = c52A "rohtua"} ;
+lin rohtuma_NK = {s = d10 "rohtuma"} ;
+lin roihahtaa_VK = {s = c53A "roihahtaa"} ;
+lin roihu_NK = {s = d01 "roihu"} ;
+lin roihuta_VK = {s = c74 "roihuta"} ;
+lin roikaa_VK = {s = c78 "roikaa"} ;
+lin roikale_NK = {s = d48 "roikale"} ;
+lin roikka_NK = {s = d10A "roikka"} ;
+lin roikko_NK = {s = d01A "roikko"} ;
+lin roikku_NK = {s = d01A "roikku"} ;
+lin roikkua_VK = {s = c52A "roikkua"} ;
+lin roikotella_VK = {s = c67A "roikotella"} ;
+lin roikottaa_VK = {s = c53A "roikottaa"} ;
+lin roikua_VK = {s = c52A "roikua"} ;
+lin roilo_NK = {s = d01 "roilo"} ;
+lin roima_AK = {s = d10 "roima"} ;
+--+ lin roimasti_AdvK = {s = c99 "roimasti"} ;
+lin roimia_VK = {s = c61 "roimia"} ;
+lin roina_NK = {s = d10 "roina"} ;
+lin roisi_NK = {s = d05 "roisi"} ;
+lin roiskahdella_VK = {s = c67A "roiskahdella"} ;
+lin roiskahdus_NK = {s = d39 "roiskahdus"} ;
+lin roiskahtaa_VK = {s = c53A "roiskahtaa"} ;
+lin roiskaista_VK = {s = c66 "roiskaista"} ;
+lin roiskaus_NK = {s = d39 "roiskaus"} ;
+lin roiskautella_VK = {s = c67A "roiskautella"} ;
+lin roiskauttaa_VK = {s = c53A "roiskauttaa"} ;
+lin roiske_NK = {s = d48 "roiske"} ;
+lin roiskia_VK = {s = c61 "roiskia"} ;
+lin roiskua_VK = {s = c52 "roiskua"} ;
+lin roiskutella_VK = {s = c67A "roiskutella"} ;
+lin roiskuttaa_VK = {s = c53A "roiskuttaa"} ;
+lin roiskutus_NK = {s = d39 "roiskutus"} ;
+lin roisto_NK = {s = d01 "roisto"} ;
+--+ lin roistomaisesti_AdvK = {s = c99 "roistomaisesti"} ;
+lin roistomaisuus_NK = {s = d40 "roistomaisuus"} ;
+lin rojahdus_NK = {s = d39 "rojahdus"} ;
+lin rojahtaa_VK = {s = c53A "rojahtaa"} ;
+lin rojalismi_NK = {s = d05 "rojalismi"} ;
+lin rojalisti_NK = {s = d05 "rojalisti"} ;
+lin rojalistinen_NK = {s = d38 "rojalistinen"} ;
+lin rojalti_NK = {s = d05 "rojalti"} ;
+lin rojaus_NK = {s = d39 "rojaus"} ;
+lin rojauttaa_VK = {s = c53A "rojauttaa"} ;
+lin rojottaa_VK = {s = c53A "rojottaa"} ;
+lin roju_NK = {s = d01 "roju"} ;
+lin rojuinen_NK = {s = d38 "rojuinen"} ;
+lin rokahtua_VK = {s = c52A "rokahtua"} ;
+lin rokahtuma_NK = {s = d10 "rokahtuma"} ;
+lin rokata_VK = {s = c73A "rokata"} ;
+lin rokka_NK = {s = d10A "rokka"} ;
+lin rokkari_NK = {s = d06 "rokkari"} ;
+lin rokki_NK = {s = d05A "rokki"} ;
+lin rokko_NK = {s = d01A "rokko"} ;
+lin rokkoinen_NK = {s = d38 "rokkoinen"} ;
+lin rokokoo_NK = {s = d18 "rokokoo"} ;
+lin rokokooaika_NK = {s = d09A "rokokooaika"} ;
+lin rokote_NK = {s = d48A "rokote"} ;
+lin rokottaa_VK = {s = c53A "rokottaa"} ;
+lin rokotus_NK = {s = d39 "rokotus"} ;
+lin rokuli_NK = {s = d06 "rokuli"} ;
+lin rollaattori_NK = {s = d06 "rollaattori"} ;
+lin roll_on_NK = {s = d05 "roll-on"} ;
+lin romaani_NK = {s = d06 "romaani"} ;
+lin romaaninen_NK = {s = d38 "romaaninen"} ;
+lin romadur_NK = {s = d05 "romadur"} ;
+lin romahdus_NK = {s = d39 "romahdus"} ;
+--+ lin romahdusmaisesti_AdvK = {s = c99 "romahdusmaisesti"} ;
+lin romahduttaa_VK = {s = c53A "romahduttaa"} ;
+lin romahtaa_VK = {s = c53A "romahtaa"} ;
+lin romani_NK = {s = d06 "romani"} ;
+lin romania_NK = {s = d12 "romania"} ;
+lin romanisti_NK = {s = d05 "romanisti"} ;
+lin romanistiikka_NK = {s = d09A "romanistiikka"} ;
+lin romanssi_NK = {s = d05 "romanssi"} ;
+lin romantiikka_NK = {s = d09A "romantiikka"} ;
+lin romantikko_NK = {s = d01A "romantikko"} ;
+lin romantisoida_VK = {s = c62 "romantisoida"} ;
+lin romanttinen_AK = {s = d38 "romanttinen"} ;
+--+ lin romanttisesti_AdvK = {s = c99 "romanttisesti"} ;
+lin romanttisuus_NK = {s = d40 "romanttisuus"} ;
+lin romauttaa_VK = {s = c53A "romauttaa"} ;
+lin rombi_NK = {s = d05 "rombi"} ;
+lin rombinen_NK = {s = d38 "rombinen"} ;
+lin romina_NK = {s = d12 "romina"} ;
+lin romista_VK = {s = c66 "romista"} ;
+lin rommi_1_NK = {s = d05 "rommi"} ;
+lin rommi_2_NK = {s = d05 "rommi"} ;
+lin rommi_3_NK = {s = d05 "rommi"} ;
+lin rompe_NK = {s = d48A "rompe"} ;
+lin romppu_NK = {s = d01A "romppu"} ;
+lin rompsu_NK = {s = d01 "rompsu"} ;
+lin romsku_NK = {s = d01 "romsku"} ;
+lin romu_NK = {s = d01 "romu"} ;
+lin romuttaa_VK = {s = c53A "romuttaa"} ;
+lin romuttamo_NK = {s = d02 "romuttamo"} ;
+lin romuttua_VK = {s = c52A "romuttua"} ;
+lin romutus_NK = {s = d39 "romutus"} ;
+lin rondi_NK = {s = d05 "rondi"} ;
+lin rondo_NK = {s = d01 "rondo"} ;
+lin ronkeli_NK = {s = d06 "ronkeli"} ;
+lin ronkkia_VK = {s = c61A "ronkkia"} ;
+lin ronski_AK = {s = d05 "ronski"} ;
+--+ lin ronskisti_AdvK = {s = c99 "ronskisti"} ;
+lin rontti_NK = {s = d05A "rontti"} ;
+lin ronttonen_NK = {s = d38 "ronttonen"} ;
+lin rooli_NK = {s = d05 "rooli"} ;
+lin roomalainen_NK = {s = d38 "roomalainen"} ;
+lin roomatar_NK = {s = d32A "roomatar"} ;
+lin roosa_NK = {s = d10 "roosa"} ;
+lin roottori_NK = {s = d06 "roottori"} ;
+lin ropeloida_VK = {s = c62 "ropeloida"} ;
+lin ropina_NK = {s = d12 "ropina"} ;
+lin ropista_VK = {s = c66 "ropista"} ;
+lin ropisuttaa_VK = {s = c53A "ropisuttaa"} ;
+lin ropo_NK = {s = d01A "ropo"} ;
+lin roponen_NK = {s = d38 "roponen"} ;
+lin roppakaupalla_AdvK = {s = c99 "roppakaupalla"} ;
+lin ropsahdella_VK = {s = c67A "ropsahdella"} ;
+lin ropsahdus_NK = {s = d39 "ropsahdus"} ;
+lin ropsahtaa_VK = {s = c53A "ropsahtaa"} ;
+lin ropsaus_NK = {s = d39 "ropsaus"} ;
+lin ropsautella_VK = {s = c67A "ropsautella"} ;
+lin ropsauttaa_VK = {s = c53A "ropsauttaa"} ;
+lin ropse_NK = {s = d48 "ropse"} ;
+lin ropsia_VK = {s = c61 "ropsia"} ;
+lin roquefort_NK = {s = d05 "roquefort"} ;
+lin ros__NK = {s = d21 "rosé"} ;
+lin rosee_NK = {s = d20 "rosee"} ;
+lin roseeviini_NK = {s = d05 "roseeviini"} ;
+lin rosetti_NK = {s = d05A "rosetti"} ;
+lin ros_viini_NK = {s = d05 "roséviini"} ;
+lin roska_NK = {s = d10 "roska"} ;
+lin roskaaja_NK = {s = d10 "roskaaja"} ;
+lin roskaantua_VK = {s = c52A "roskaantua"} ;
+lin roskainen_NK = {s = d38 "roskainen"} ;
+lin roskaisuus_NK = {s = d40 "roskaisuus"} ;
+lin roskata_VK = {s = c73 "roskata"} ;
+lin roskis_NK = {s = d39 "roskis"} ;
+lin roskisdyykkari_NK = {s = d06 "roskisdyykkari"} ;
+lin rosmariini_NK = {s = d05 "rosmariini"} ;
+lin roso_NK = {s = d01 "roso"} ;
+lin rosoinen_AK = {s = d38 "rosoinen"} ;
+--+ lin rosoisesti_AdvK = {s = c99 "rosoisesti"} ;
+lin rosoisuus_NK = {s = d40 "rosoisuus"} ;
+lin rosolli_NK = {s = d05 "rosolli"} ;
+lin rospuutto_NK = {s = d01A "rospuutto"} ;
+lin rospuuttoaika_NK = {s = d09A "rospuuttoaika"} ;
+lin rosti_NK = {s = d05 "rosti"} ;
+lin rosvo_NK = {s = d01 "rosvo"} ;
+lin rosvoilla_VK = {s = c67 "rosvoilla"} ;
+lin rosvoilu_NK = {s = d02 "rosvoilu"} ;
+lin rosvota_VK = {s = c74 "rosvota"} ;
+lin rosvous_NK = {s = d39 "rosvous"} ;
+lin rotaatio_NK = {s = d03 "rotaatio"} ;
+lin rotari_NK = {s = d06 "rotari"} ;
+lin roteva_NK = {s = d10 "roteva"} ;
+lin rotisko_NK = {s = d02 "rotisko"} ;
+lin rotko_NK = {s = d01 "rotko"} ;
+lin rotsi_NK = {s = d05 "rotsi"} ;
+lin rotta_NK = {s = d10A "rotta"} ;
+lin rottelo_NK = {s = d02 "rottelo"} ;
+lin rottinki_NK = {s = d05A "rottinki"} ;
+lin rottinkinen_NK = {s = d38 "rottinkinen"} ;
+lin rottweiler_NK = {s = d06 "rottweiler"} ;
+lin rotu_NK = {s = d01A "rotu"} ;
+lin rotuinen_NK = {s = d38 "rotuinen"} ;
+lin roudari_NK = {s = d06 "roudari"} ;
+lin roudata_VK = {s = c73 "roudata"} ;
+lin roudittua_VK = {s = c52A "roudittua"} ;
+lin rouhaista_VK = {s = c66 "rouhaista"} ;
+lin rouhe_NK = {s = d48 "rouhe"} ;
+lin rouhea_NK = {s = d15 "rouhea"} ;
+lin rouheinen_NK = {s = d38 "rouheinen"} ;
+lin rouhentaa_VK = {s = c54A "rouhentaa"} ;
+lin rouhia_VK = {s = c61 "rouhia"} ;
+lin rouhiintua_VK = {s = c52A "rouhiintua"} ;
+lin rouhin_NK = {s = d33 "rouhin"} ;
+lin rouhinta_NK = {s = d09A "rouhinta"} ;
+lin rouhiutua_VK = {s = c52A "rouhiutua"} ;
+lin rouskahtaa_VK = {s = c53A "rouskahtaa"} ;
+lin rouske_NK = {s = d48 "rouske"} ;
+lin rousku_NK = {s = d01 "rousku"} ;
+lin rouskua_VK = {s = c52 "rouskua"} ;
+lin rouskutella_VK = {s = c67A "rouskutella"} ;
+lin rouskuttaa_VK = {s = c53A "rouskuttaa"} ;
+lin rouskutus_NK = {s = d39 "rouskutus"} ;
+lin rouste_NK = {s = d48 "rouste"} ;
+lin routa_NK = {s = d10A "routa"} ;
+lin routaannuttaa_VK = {s = c53A "routaannuttaa"} ;
+lin routaantua_VK = {s = c52A "routaantua"} ;
+lin routainen_NK = {s = d38 "routainen"} ;
+lin routia_VK = {s = c61A "routia"} ;
+lin routiintua_VK = {s = c52A "routiintua"} ;
+lin rouva_NK = {s = d10 "rouva"} ;
+lin rouvakoko_NK = {s = d01A "rouvakoko"} ;
+lin rouvitella_VK = {s = c67A "rouvitella"} ;
+lin rouvittelu_NK = {s = d02 "rouvittelu"} ;
+lin rovasti_NK = {s = d05 "rovasti"} ;
+lin rovastinna_NK = {s = d09 "rovastinna"} ;
+lin rove_NK = {s = d48A "rove"} ;
+lin rovio_NK = {s = d03 "rovio"} ;
+lin royalty_NK = {s = d01 "royalty"} ;
+lin rubato_NK = {s = d01 "rubato"} ;
+lin rubiini_NK = {s = d06 "rubiini"} ;
+lin rubriikki_NK = {s = d05A "rubriikki"} ;
+lin rudimentaarinen_NK = {s = d38 "rudimentaarinen"} ;
+lin rudimentti_NK = {s = d05A "rudimentti"} ;
+lin rugby_NK = {s = d01 "rugby"} ;
+lin ruhje_NK = {s = d48 "ruhje"} ;
+lin ruhjoa_VK = {s = c52 "ruhjoa"} ;
+lin ruhjoontua_VK = {s = c52A "ruhjoontua"} ;
+lin ruhjouma_NK = {s = d10 "ruhjouma"} ;
+lin ruhjoutua_VK = {s = c52A "ruhjoutua"} ;
+lin ruhjoutuma_NK = {s = d10 "ruhjoutuma"} ;
+lin ruho_NK = {s = d01 "ruho"} ;
+lin ruhtinaallinen_AK = {s = d38 "ruhtinaallinen"} ;
+--+ lin ruhtinaallisesti_AdvK = {s = c99 "ruhtinaallisesti"} ;
+lin ruhtinaallisuus_NK = {s = d40 "ruhtinaallisuus"} ;
+lin ruhtinas_NK = {s = d41 "ruhtinas"} ;
+lin ruhtinatar_NK = {s = d32A "ruhtinatar"} ;
+lin ruijalainen_NK = {s = d38 "ruijalainen"} ;
+lin ruikata_VK = {s = c73A "ruikata"} ;
+lin ruikkia_VK = {s = c61A "ruikkia"} ;
+lin ruikuttaa_VK = {s = c53A "ruikuttaa"} ;
+lin ruikuttaja_NK = {s = d10 "ruikuttaja"} ;
+lin ruikutus_NK = {s = d39 "ruikutus"} ;
+lin ruinata_VK = {s = c73 "ruinata"} ;
+lin ruipelo_NK = {s = d02 "ruipelo"} ;
+lin ruis_NK = {s = d41A "ruis"} ;
+lin ruiskahdus_NK = {s = d39 "ruiskahdus"} ;
+lin ruiskahtaa_VK = {s = c53A "ruiskahtaa"} ;
+lin ruiskaista_VK = {s = c66 "ruiskaista"} ;
+lin ruiskaus_NK = {s = d39 "ruiskaus"} ;
+lin ruiskautella_VK = {s = c67A "ruiskautella"} ;
+lin ruiskauttaa_VK = {s = c53A "ruiskauttaa"} ;
+lin ruiske_NK = {s = d48 "ruiske"} ;
+lin ruiskia_VK = {s = c61 "ruiskia"} ;
+lin ruisku_NK = {s = d01 "ruisku"} ;
+lin ruiskulakata_VK = {s = c73A "ruiskulakata"} ;
+lin ruiskumaalata_VK = {s = c73 "ruiskumaalata"} ;
+lin ruiskuta_VK = {s = c74 "ruiskuta"} ;
+lin ruiskute_NK = {s = d48A "ruiskute"} ;
+lin ruiskuttaa_VK = {s = c53A "ruiskuttaa"} ;
+lin ruiskutus_NK = {s = d39 "ruiskutus"} ;
+lin ruisra'a'kka'_NK = {s = d10A "ruisrääkkä"} ;
+lin rujo_NK = {s = d01 "rujo"} ;
+lin rujous_NK = {s = d40 "rujous"} ;
+lin rukata_VK = {s = c73A "rukata"} ;
+lin rukiinen_NK = {s = d38 "rukiinen"} ;
+lin rukka_NK = {s = d10A "rukka"} ;
+lin rukkanen_NK = {s = d38 "rukkanen"} ;
+lin rukkaus_NK = {s = d39 "rukkaus"} ;
+lin rukkauttaa_VK = {s = c53A "rukkauttaa"} ;
+lin rukki_1_NK = {s = d05A "rukki"} ;
+lin rukki_2_NK = {s = d05A "rukki"} ;
+lin ruko_NK = {s = d01A "ruko"} ;
+lin rukoilevainen_NK = {s = d38 "rukoilevainen"} ;
+lin rukoilevaisuus_NK = {s = d40 "rukoilevaisuus"} ;
+lin rukoilija_NK = {s = d12 "rukoilija"} ;
+lin rukoilla_VK = {s = c67 "rukoilla"} ;
+lin rukoilu_NK = {s = d02 "rukoilu"} ;
+lin rukous_NK = {s = d39 "rukous"} ;
+lin ruksata_VK = {s = c73 "ruksata"} ;
+lin ruksi_NK = {s = d05 "ruksi"} ;
+lin ruladi_NK = {s = d05 "ruladi"} ;
+lin ruletti_NK = {s = d05A "ruletti"} ;
+lin ruljanssi_NK = {s = d05 "ruljanssi"} ;
+lin rulla_NK = {s = d10 "rulla"} ;
+lin rullailla_VK = {s = c67 "rullailla"} ;
+lin rullakko_NK = {s = d04A "rullakko"} ;
+lin rullata_VK = {s = c73 "rullata"} ;
+lin rullaus_NK = {s = d39 "rullaus"} ;
+lin rullautua_VK = {s = c52A "rullautua"} ;
+lin ruma_AK = {s = d10 "ruma"} ;
+--+ lin rumasti_AdvK = {s = c99 "rumasti"} ;
+lin rumba_NK = {s = d10 "rumba"} ;
+lin rumeliini_NK = {s = d05 "rumeliini"} ;
+lin rumennus_NK = {s = d39 "rumennus"} ;
+lin rumentaa_VK = {s = c54A "rumentaa"} ;
+lin rumentua_VK = {s = c52A "rumentua"} ;
+lin rumeta_VK = {s = c72 "rumeta"} ;
+lin rumilus_NK = {s = d39 "rumilus"} ;
+lin rumistaa_VK = {s = c53 "rumistaa"} ;
+lin rumistua_VK = {s = c52 "rumistua"} ;
+lin rummusto_NK = {s = d02 "rummusto"} ;
+lin rummuttaa_VK = {s = c53A "rummuttaa"} ;
+lin rummutus_NK = {s = d39 "rummutus"} ;
+lin rumpali_NK = {s = d06 "rumpali"} ;
+lin rumpu_NK = {s = d01A "rumpu"} ;
+lin rumuus_NK = {s = d40 "rumuus"} ;
+lin rundi_NK = {s = d05 "rundi"} ;
+lin runebergila'inen_NK = {s = d38 "runebergiläinen"} ;
+lin runkata_VK = {s = c73A "runkata"} ;
+lin runkkari_NK = {s = d06 "runkkari"} ;
+lin runkkaus_NK = {s = d39 "runkkaus"} ;
+lin runko_NK = {s = d01A "runko"} ;
+lin runkoinen_NK = {s = d38 "runkoinen"} ;
+lin runnata_VK = {s = c73 "runnata"} ;
+lin runnella_VK = {s = c67A "runnella"} ;
+lin runnoa_VK = {s = c52 "runnoa"} ;
+lin runo_NK = {s = d01 "runo"} ;
+lin runoelma_NK = {s = d10 "runoelma"} ;
+lin runoilija_NK = {s = d12 "runoilija"} ;
+lin runoilla_VK = {s = c67 "runoilla"} ;
+lin runoilu_NK = {s = d02 "runoilu"} ;
+lin runollinen_AK = {s = d38 "runollinen"} ;
+--+ lin runollisesti_AdvK = {s = c99 "runollisesti"} ;
+lin runollisuus_NK = {s = d40 "runollisuus"} ;
+lin runosto_NK = {s = d02 "runosto"} ;
+lin runotar_NK = {s = d32A "runotar"} ;
+lin runoton_NK = {s = d34A "runoton"} ;
+lin runottomuus_NK = {s = d40 "runottomuus"} ;
+lin runous_NK = {s = d40 "runous"} ;
+--+ lin runsaasti_AdvK = {s = c99 "runsaasti"} ;
+lin runsaiten_AdvK = {s = c99 "runsaiten"} ;
+lin runsas_AK = {s = d41 "runsas"} ;
+lin runsashappinen_NK = {s = d38 "runsashappinen"} ;
+--+ lin runsaska'tisesti_AdvK = {s = c99 "runsaskätisesti"} ;
+--+ lin runsaslukuisesti_AdvK = {s = c99 "runsaslukuisesti"} ;
+lin runsastua_VK = {s = c52 "runsastua"} ;
+lin runsaus_NK = {s = d40 "runsaus"} ;
+lin runtata_VK = {s = c73A "runtata"} ;
+lin runtelu_NK = {s = d02 "runtelu"} ;
+lin ruoanlaittaja_NK = {s = d10 "ruoanlaittaja"} ;
+lin ruode_NK = {s = d48A "ruode"} ;
+lin ruodinta_NK = {s = d09A "ruodinta"} ;
+lin ruodis_NK = {s = d39 "ruodis"} ;
+lin ruohikko_NK = {s = d04A "ruohikko"} ;
+lin ruoho_NK = {s = d01 "ruoho"} ;
+lin ruohoinen_NK = {s = d38 "ruohoinen"} ;
+lin ruohottua_VK = {s = c52A "ruohottua"} ;
+lin ruoikko_NK = {s = d04A "ruoikko"} ;
+lin ruoisto_NK = {s = d02 "ruoisto"} ;
+lin ruoja_NK = {s = d10 "ruoja"} ;
+lin ruoka_NK = {s = d10A "ruoka"} ;
+lin ruoka_aika_NK = {s = d09A "ruoka-aika"} ;
+lin ruokailija_NK = {s = d12 "ruokailija"} ;
+lin ruokailla_VK = {s = c67 "ruokailla"} ;
+lin ruokailu_NK = {s = d02 "ruokailu"} ;
+lin ruokailuaika_NK = {s = d09A "ruokailuaika"} ;
+lin ruokainen_NK = {s = d38 "ruokainen"} ;
+lin ruokaisa_NK = {s = d10 "ruokaisa"} ;
+lin ruokaisuus_NK = {s = d40 "ruokaisuus"} ;
+lin ruokala_NK = {s = d12 "ruokala"} ;
+lin ruokinta_NK = {s = d09A "ruokinta"} ;
+lin ruokinta_aika_NK = {s = d09A "ruokinta-aika"} ;
+lin ruokis_NK = {s = d39 "ruokis"} ;
+lin ruokki_NK = {s = d05A "ruokki"} ;
+lin ruokkia_VK = {s = c61A "ruokkia"} ;
+lin ruokko_NK = {s = d01A "ruokko"} ;
+lin ruokkoamaton_NK = {s = d34A "ruokkoamaton"} ;
+lin ruoko_NK = {s = d01A "ruoko"} ;
+lin ruokoinen_NK = {s = d38 "ruokoinen"} ;
+lin ruokota_VK = {s = c74A "ruokota"} ;
+lin ruokoton_NK = {s = d34A "ruokoton"} ;
+lin ruokottomuus_NK = {s = d40 "ruokottomuus"} ;
+lin ruopata_VK = {s = c73A "ruopata"} ;
+lin ruopia_VK = {s = c61A "ruopia"} ;
+lin ruoppaaja_NK = {s = d10 "ruoppaaja"} ;
+lin ruoppaus_NK = {s = d39 "ruoppaus"} ;
+lin ruoputtaa_VK = {s = c53A "ruoputtaa"} ;
+lin ruori_NK = {s = d05 "ruori"} ;
+lin ruoska_NK = {s = d10 "ruoska"} ;
+lin ruoskia_VK = {s = c61 "ruoskia"} ;
+lin ruoste_NK = {s = d48 "ruoste"} ;
+lin ruosteinen_NK = {s = d38 "ruosteinen"} ;
+lin ruosteisuus_NK = {s = d40 "ruosteisuus"} ;
+lin ruostua_VK = {s = c52 "ruostua"} ;
+lin ruostumaton_NK = {s = d34A "ruostumaton"} ;
+lin ruostuttaa_VK = {s = c53A "ruostuttaa"} ;
+lin ruoti_NK = {s = d05A "ruoti"} ;
+lin ruotia_VK = {s = c61A "ruotia"} ;
+lin ruoto_NK = {s = d01A "ruoto"} ;
+lin ruotoinen_NK = {s = d38 "ruotoinen"} ;
+lin ruotsalainen_NK = {s = d38 "ruotsalainen"} ;
+lin ruotsalaisittain_AdvK = {s = c99 "ruotsalaisittain"} ;
+lin ruotsalaistaa_VK = {s = c53 "ruotsalaistaa"} ;
+lin ruotsalaistua_VK = {s = c52 "ruotsalaistua"} ;
+lin ruotsalaisuus_NK = {s = d40 "ruotsalaisuus"} ;
+lin ruotsi_NK = {s = d05 "ruotsi"} ;
+lin ruotsinnos_NK = {s = d39 "ruotsinnos"} ;
+lin ruotsintaa_VK = {s = c54A "ruotsintaa"} ;
+lin ruotsintaja_NK = {s = d10 "ruotsintaja"} ;
+--+ lin ruotsinvoittoisesti_AdvK = {s = c99 "ruotsinvoittoisesti"} ;
+lin ruotu_NK = {s = d01A "ruotu"} ;
+lin ruovikko_NK = {s = d04A "ruovikko"} ;
+lin ruovisto_NK = {s = d01 "ruovisto"} ;
+lin rupatella_VK = {s = c67A "rupatella"} ;
+lin rupattelu_NK = {s = d02 "rupattelu"} ;
+lin rupeama_NK = {s = d10 "rupeama"} ;
+lin rupeutua_VK = {s = c52A "rupeutua"} ;
+lin rupeutuma_NK = {s = d10 "rupeutuma"} ;
+lin rupi_NK = {s = d07A "rupi"} ;
+lin rupia_NK = {s = d12 "rupia"} ;
+lin rupinen_NK = {s = d38 "rupinen"} ;
+lin rupla_NK = {s = d10 "rupla"} ;
+lin rupsahtaa_VK = {s = c53A "rupsahtaa"} ;
+lin rusahdella_VK = {s = c67A "rusahdella"} ;
+lin rusahdus_NK = {s = d39 "rusahdus"} ;
+lin rusahtaa_VK = {s = c53A "rusahtaa"} ;
+lin rusakko_NK = {s = d04A "rusakko"} ;
+lin rusaus_NK = {s = d39 "rusaus"} ;
+lin rusauttaa_VK = {s = c53A "rusauttaa"} ;
+lin rusehtava_NK = {s = d10 "rusehtava"} ;
+lin rusennus_NK = {s = d39 "rusennus"} ;
+lin rusentaa_VK = {s = c54A "rusentaa"} ;
+lin rusentua_VK = {s = c52A "rusentua"} ;
+lin rusetti_NK = {s = d05A "rusetti"} ;
+lin rusikoida_VK = {s = c62 "rusikoida"} ;
+lin rusikointi_NK = {s = d05A "rusikointi"} ;
+lin rusina_NK = {s = d12 "rusina"} ;
+lin ruska_NK = {s = d10 "ruska"} ;
+lin ruskaa_VK = {s = c78 "ruskaa"} ;
+lin ruska_aika_NK = {s = d09A "ruska-aika"} ;
+lin ruskea_NK = {s = d15 "ruskea"} ;
+lin ruskehtava_NK = {s = d10 "ruskehtava"} ;
+lin ruskettaa_VK = {s = c53A "ruskettaa"} ;
+lin ruskettua_VK = {s = c52A "ruskettua"} ;
+lin rusketus_NK = {s = d39 "rusketus"} ;
+lin ruskeuttaa_VK = {s = c53A "ruskeuttaa"} ;
+lin ruskeutua_VK = {s = c52A "ruskeutua"} ;
+lin ruskistaa_VK = {s = c53 "ruskistaa"} ;
+lin ruskistua_VK = {s = c52 "ruskistua"} ;
+lin ruskistus_NK = {s = d39 "ruskistus"} ;
+lin rusko_NK = {s = d01 "rusko"} ;
+lin ruskottaa_VK = {s = c53A "ruskottaa"} ;
+lin ruskotus_NK = {s = d39 "ruskotus"} ;
+lin ruskua_VK = {s = c52 "ruskua"} ;
+lin ruskuainen_NK = {s = d38 "ruskuainen"} ;
+lin ruso_NK = {s = d01 "ruso"} ;
+lin rusojuuri_NK = {s = d26 "rusojuuri"} ;
+lin rusokas_NK = {s = d41A "rusokas"} ;
+lin rusokki_NK = {s = d05A "rusokki"} ;
+lin rusottaa_VK = {s = c53A "rusottaa"} ;
+lin rusotus_NK = {s = d39 "rusotus"} ;
+lin russakka_NK = {s = d14A "russakka"} ;
+lin russisti_NK = {s = d05 "russisti"} ;
+lin russistiikka_NK = {s = d09A "russistiikka"} ;
+lin rustailla_VK = {s = c67 "rustailla"} ;
+lin rustailu_NK = {s = d02 "rustailu"} ;
+lin rustata_VK = {s = c73 "rustata"} ;
+lin rustaus_NK = {s = d39 "rustaus"} ;
+lin rusthollari_NK = {s = d06 "rusthollari"} ;
+lin rustholli_NK = {s = d05 "rustholli"} ;
+lin rustiikka_NK = {s = d14A "rustiikka"} ;
+lin rustiikki_NK = {s = d05A "rustiikki"} ;
+lin rustinki_NK = {s = d05A "rustinki"} ;
+lin rusto_NK = {s = d01 "rusto"} ;
+lin rustoinen_NK = {s = d38 "rustoinen"} ;
+lin rustottua_VK = {s = c52A "rustottua"} ;
+lin rustottuma_NK = {s = d10 "rustottuma"} ;
+lin rustoutua_VK = {s = c52A "rustoutua"} ;
+lin rutata_VK = {s = c73A "rutata"} ;
+lin rutenium_NK = {s = d05 "rutenium"} ;
+lin rutiini_NK = {s = d05 "rutiini"} ;
+--+ lin rutiinimaisesti_AdvK = {s = c99 "rutiinimaisesti"} ;
+lin rutiinimaisuus_NK = {s = d40 "rutiinimaisuus"} ;
+lin rutina_NK = {s = d12 "rutina"} ;
+lin rutinoitu_NK = {s = d01A "rutinoitu"} ;
+lin rutinoitua_VK = {s = c52A "rutinoitua"} ;
+lin rutista_VK = {s = c66 "rutista"} ;
+lin rutistaa_VK = {s = c53 "rutistaa"} ;
+lin rutistua_VK = {s = c52 "rutistua"} ;
+lin rutistus_NK = {s = d39 "rutistus"} ;
+lin rutjake_NK = {s = d48A "rutjake"} ;
+lin rutka_AK = {s = d10 "rutka"} ;
+--+ lin rutkasti_AdvK = {s = c99 "rutkasti"} ;
+lin rutosti_AdvK = {s = c99 "rutosti"} ;
+lin ruttaantua_VK = {s = c52A "ruttaantua"} ;
+lin ruttautua_VK = {s = c52A "ruttautua"} ;
+lin rutto_NK = {s = d01A "rutto"} ;
+lin ruttoinen_NK = {s = d38 "ruttoinen"} ;
+lin ruttojuuri_NK = {s = d26 "ruttojuuri"} ;
+lin ruttu_NK = {s = d01A "ruttu"} ;
+lin ruttuinen_NK = {s = d38 "ruttuinen"} ;
+lin ruttuun_AdvK = {s = c99 "ruttuun"} ;
+lin rutussa_AdvK = {s = c99 "rutussa"} ;
+lin ruudikas_NK = {s = d41A "ruudikas"} ;
+lin ruuduittain_AdvK = {s = c99 "ruuduittain"} ;
+lin ruudukas_NK = {s = d41A "ruudukas"} ;
+lin ruudukko_NK = {s = d04A "ruudukko"} ;
+lin ruudullinen_NK = {s = d38 "ruudullinen"} ;
+lin ruuduttaa_VK = {s = c53A "ruuduttaa"} ;
+lin ruudutus_NK = {s = d39 "ruudutus"} ;
+lin ruuhi_NK = {s = d24 "ruuhi"} ;
+lin ruuhka_NK = {s = d10 "ruuhka"} ;
+lin ruuhka_aika_NK = {s = d09A "ruuhka-aika"} ;
+lin ruuhkaantua_VK = {s = c52A "ruuhkaantua"} ;
+lin ruuhkainen_NK = {s = d38 "ruuhkainen"} ;
+lin ruuhkaisuus_NK = {s = d40 "ruuhkaisuus"} ;
+lin ruuhkata_VK = {s = c73 "ruuhkata"} ;
+lin ruuhkauma_NK = {s = d10 "ruuhkauma"} ;
+lin ruuhkauttaa_VK = {s = c53A "ruuhkauttaa"} ;
+lin ruuhkautua_VK = {s = c52A "ruuhkautua"} ;
+lin ruuhkautuma_NK = {s = d10 "ruuhkautuma"} ;
+lin ruukki_NK = {s = d05A "ruukki"} ;
+lin ruukku_NK = {s = d01A "ruukku"} ;
+lin ruukuttaa_VK = {s = c53A "ruukuttaa"} ;
+lin ruukutus_NK = {s = d39 "ruukutus"} ;
+lin ruuma_NK = {s = d10 "ruuma"} ;
+lin ruumen_NK = {s = d32 "ruumen"} ;
+lin ruumiillinen_AK = {s = d38 "ruumiillinen"} ;
+--+ lin ruumiillisesti_AdvK = {s = c99 "ruumiillisesti"} ;
+lin ruumiillistua_VK = {s = c52 "ruumiillistua"} ;
+lin ruumiillistuma_NK = {s = d10 "ruumiillistuma"} ;
+lin ruumiillisuus_NK = {s = d40 "ruumiillisuus"} ;
+lin ruumiinen_NK = {s = d38 "ruumiinen"} ;
+lin ruumiinpesija'_NK = {s = d12 "ruumiinpesijä"} ;
+lin ruumiistapoistuminen_NK = {s = d38 "ruumiistapoistuminen"} ;
+lin ruumiiton_NK = {s = d34A "ruumiiton"} ;
+lin ruumis_NK = {s = d41 "ruumis"} ;
+lin ruumistua_VK = {s = c52 "ruumistua"} ;
+lin ruuna_NK = {s = d10 "ruuna"} ;
+lin ruunikko_NK = {s = d04A "ruunikko"} ;
+lin ruustinna_NK = {s = d09 "ruustinna"} ;
+lin ruusu_NK = {s = d01 "ruusu"} ;
+lin ruusuinen_NK = {s = d38 "ruusuinen"} ;
+lin ruusuke_NK = {s = d48A "ruusuke"} ;
+lin ruusukkeinen_NK = {s = d38 "ruusukkeinen"} ;
+lin ruususto_NK = {s = d01 "ruususto"} ;
+lin ruutana_NK = {s = d13 "ruutana"} ;
+lin ruuti_NK = {s = d05A "ruuti"} ;
+lin ruutu_NK = {s = d01A "ruutu"} ;
+lin ruutuinen_NK = {s = d38 "ruutuinen"} ;
+lin ruuvailla_VK = {s = c67 "ruuvailla"} ;
+lin ruuvata_VK = {s = c73 "ruuvata"} ;
+lin ruuvi_NK = {s = d05 "ruuvi"} ;
+lin ruuvipihti_NK = {s = d05A "ruuvipihti"} ;
+lin ruveta_VK = {s = c74A "ruveta"} ;
+lin ruvettua_VK = {s = c52A "ruvettua"} ;
+lin ruvettuma_NK = {s = d10 "ruvettuma"} ;
+lin ryhdikkyys_NK = {s = d40 "ryhdikkyys"} ;
+--+ lin ryhdikka'a'sti_AdvK = {s = c99 "ryhdikkäästi"} ;
+lin ryhdika's_AK = {s = d41A "ryhdikäs"} ;
+lin ryhdistya'_VK = {s = c52 "ryhdistyä"} ;
+lin ryhdista'ytya'_VK = {s = c52A "ryhdistäytyä"} ;
+lin ryhdista'a'_VK = {s = c53 "ryhdistää"} ;
+lin ryhditto'myys_NK = {s = d40 "ryhdittömyys"} ;
+lin ryhditto'ma'sti_AdvK = {s = c99 "ryhdittömästi"} ;
+lin ryhdito'n_NK = {s = d34A "ryhditön"} ;
+lin ryhelma'_NK = {s = d10 "ryhelmä"} ;
+lin ryhmitella'_VK = {s = c67A "ryhmitellä"} ;
+lin ryhmitelma'_NK = {s = d10 "ryhmitelmä"} ;
+lin ryhmittely_NK = {s = d02 "ryhmittely"} ;
+lin ryhmittyma'_NK = {s = d10 "ryhmittymä"} ;
+lin ryhmittya'_VK = {s = c52A "ryhmittyä"} ;
+lin ryhmitta'in_AdvK = {s = c99 "ryhmittäin"} ;
+lin ryhmitta'inen_NK = {s = d38 "ryhmittäinen"} ;
+lin ryhmitta'ytya'_VK = {s = c52A "ryhmittäytyä"} ;
+lin ryhmitta'a'_VK = {s = c53A "ryhmittää"} ;
+lin ryhmitys_NK = {s = d39 "ryhmitys"} ;
+lin ryhmy_NK = {s = d01 "ryhmy"} ;
+lin ryhmyinen_NK = {s = d38 "ryhmyinen"} ;
+lin ryhmyri_NK = {s = d06 "ryhmyri"} ;
+lin ryhma'_NK = {s = d10 "ryhmä"} ;
+lin ryhma'koko_NK = {s = d01A "ryhmäkoko"} ;
+lin ryhti_NK = {s = d05A "ryhti"} ;
+lin ryhtinen_NK = {s = d38 "ryhtinen"} ;
+lin ryhtymys_NK = {s = d39 "ryhtymys"} ;
+lin ryhtya'_VK = {s = c52A "ryhtyä"} ;
+lin ryijy_NK = {s = d01 "ryijy"} ;
+lin ryinta'_NK = {s = d09A "ryintä"} ;
+lin ryiskella'_VK = {s = c67 "ryiskellä"} ;
+lin ryiskely_NK = {s = d02 "ryiskely"} ;
+lin ryitta'a'_VK = {s = c53A "ryittää"} ;
+lin rykelmitta'in_AdvK = {s = c99 "rykelmittäin"} ;
+lin rykelma'_NK = {s = d10 "rykelmä"} ;
+lin rykima'aika_NK = {s = d09A "rykimäaika"} ;
+lin rykia'_VK = {s = c61A "rykiä"} ;
+lin rykmentti_NK = {s = d05A "rykmentti"} ;
+lin ryka'ista'_VK = {s = c66 "rykäistä"} ;
+lin ryka'isy_NK = {s = d02 "rykäisy"} ;
+lin rymina'_NK = {s = d12 "ryminä"} ;
+lin rymistella'_VK = {s = c67 "rymistellä"} ;
+lin rymistely_NK = {s = d02 "rymistely"} ;
+lin rymistys_NK = {s = d39 "rymistys"} ;
+lin rymista'_VK = {s = c66 "rymistä"} ;
+lin rymista'a'_VK = {s = c53 "rymistää"} ;
+lin rymisytta'a'_VK = {s = c53A "rymisyttää"} ;
+lin rymy_NK = {s = d01 "rymy"} ;
+lin rymyta'_VK = {s = c75 "rymytä"} ;
+lin ryma'hdys_NK = {s = d39 "rymähdys"} ;
+lin ryma'hta'a'_VK = {s = c53A "rymähtää"} ;
+lin rynkky_1_NK = {s = d01A "rynkky"} ;
+lin rynkky_2_NK = {s = d01A "rynkky"} ;
+lin rynkytta'a'_VK = {s = c53A "rynkyttää"} ;
+lin rynkytys_NK = {s = d39 "rynkytys"} ;
+lin rynnistys_NK = {s = d39 "rynnistys"} ;
+lin rynnista'a'_VK = {s = c53 "rynnistää"} ;
+lin rynnia'_VK = {s = c61 "rynniä"} ;
+lin rynna'kko'_NK = {s = d04A "rynnäkkö"} ;
+lin rynna'ko'ida'_VK = {s = c62 "rynnäköidä"} ;
+lin rynna'ko'inti_NK = {s = d05A "rynnäköinti"} ;
+lin rynna'ri_NK = {s = d06 "rynnäri"} ;
+lin rynna's_NK = {s = d41A "rynnäs"} ;
+lin rynna'ta'_VK = {s = c73A "rynnätä"} ;
+--? lin ryntteet_NK = {s = d48 "ryntteet"} ;
+--? lin rynttyyt_NK = {s = d41 "rynttyyt"} ;
+lin rynta'illa'_VK = {s = c67 "ryntäillä"} ;
+lin rynta'ily_NK = {s = d02 "ryntäily"} ;
+lin rynta'ys_NK = {s = d39 "ryntäys"} ;
+lin rynto'_NK = {s = d01A "ryntö"} ;
+lin rypea'_VK = {s = c58A "rypeä"} ;
+lin rypistella'_VK = {s = c67 "rypistellä"} ;
+lin rypistyma'to'n_NK = {s = d34A "rypistymätön"} ;
+lin rypistys_NK = {s = d39 "rypistys"} ;
+lin rypistya'_VK = {s = c52 "rypistyä"} ;
+lin rypista'a'_VK = {s = c53 "rypistää"} ;
+lin ryppy_NK = {s = d01A "ryppy"} ;
+lin ryppyilla'_VK = {s = c67 "ryppyillä"} ;
+lin ryppyily_NK = {s = d02 "ryppyily"} ;
+lin ryppyinen_NK = {s = d38 "ryppyinen"} ;
+--+ lin ryppyotsaisesti_AdvK = {s = c99 "ryppyotsaisesti"} ;
+lin ryppyotsaisuus_NK = {s = d40 "ryppyotsaisuus"} ;
+lin rypsi_NK = {s = d05 "rypsi"} ;
+lin rypytta'a'_VK = {s = c53A "rypyttää"} ;
+lin rypytys_NK = {s = d39 "rypytys"} ;
+lin rypa'le_NK = {s = d48 "rypäle"} ;
+lin rypa's_NK = {s = d41A "rypäs"} ;
+lin ryske_NK = {s = d48 "ryske"} ;
+lin ryskina'_NK = {s = d12 "ryskinä"} ;
+lin ryskia'_VK = {s = c61 "ryskiä"} ;
+lin ryskytta'a'_VK = {s = c53A "ryskyttää"} ;
+lin ryskytys_NK = {s = d39 "ryskytys"} ;
+lin ryskya'_VK = {s = c52 "ryskyä"} ;
+lin ryska'ta'_VK = {s = c73 "ryskätä"} ;
+lin ryska'a'_VK = {s = c78 "ryskää"} ;
+lin ryssa'_NK = {s = d10 "ryssä"} ;
+lin rysty_NK = {s = d01 "rysty"} ;
+lin rystynen_NK = {s = d38 "rystynen"} ;
+lin rysy_NK = {s = d01 "rysy"} ;
+lin rysa'_NK = {s = d10 "rysä"} ;
+lin rysa'hdella'_VK = {s = c67A "rysähdellä"} ;
+lin rysa'hdys_NK = {s = d39 "rysähdys"} ;
+lin rysa'htely_NK = {s = d02 "rysähtely"} ;
+lin rysa'hta'a'_VK = {s = c53A "rysähtää"} ;
+lin rysa'ys_NK = {s = d39 "rysäys"} ;
+lin rysa'ytta'a'_VK = {s = c53A "rysäyttää"} ;
+lin ryteikko'_NK = {s = d04A "ryteikkö"} ;
+lin ryteikko'inen_NK = {s = d38 "ryteikköinen"} ;
+lin ryti_NK = {s = d05A "ryti"} ;
+lin rytina'_NK = {s = d12 "rytinä"} ;
+lin rytista'_VK = {s = c66 "rytistä"} ;
+lin rytista'a'_VK = {s = c53 "rytistää"} ;
+lin rytke_NK = {s = d48 "rytke"} ;
+lin rytky_NK = {s = d01 "rytky"} ;
+lin rytkytta'a'_VK = {s = c53A "rytkyttää"} ;
+lin rytkytys_NK = {s = d39 "rytkytys"} ;
+lin rytkya'_VK = {s = c52 "rytkyä"} ;
+lin rytka'hta'a'_VK = {s = c53A "rytkähtää"} ;
+lin rytmi_NK = {s = d05 "rytmi"} ;
+lin rytmiikka_NK = {s = d14A "rytmiikka"} ;
+lin rytmikkyys_NK = {s = d40 "rytmikkyys"} ;
+--+ lin rytmikka'a'sti_AdvK = {s = c99 "rytmikkäästi"} ;
+lin rytmika's_AK = {s = d41A "rytmikäs"} ;
+lin rytmillinen_AK = {s = d38 "rytmillinen"} ;
+--+ lin rytmillisesti_AdvK = {s = c99 "rytmillisesti"} ;
+lin rytmillisyys_NK = {s = d40 "rytmillisyys"} ;
+lin rytminen_AK = {s = d38 "rytminen"} ;
+--+ lin rytmisesti_AdvK = {s = c99 "rytmisesti"} ;
+lin rytmisyys_NK = {s = d40 "rytmisyys"} ;
+lin rytmittya'_VK = {s = c52A "rytmittyä"} ;
+lin rytmitta'a'_VK = {s = c53A "rytmittää"} ;
+lin rytmitys_NK = {s = d39 "rytmitys"} ;
+lin rytyytta'a'_VK = {s = c53A "rytyyttää"} ;
+lin ryta'kka'_NK = {s = d14A "rytäkkä"} ;
+lin ryto'_NK = {s = d01A "rytö"} ;
+lin ryvettya'_VK = {s = c52A "ryvettyä"} ;
+lin ryvetta'a'_VK = {s = c53A "ryvettää"} ;
+lin ryva's_NK = {s = d41A "ryväs"} ;
+lin ryva'stya'_VK = {s = c52 "ryvästyä"} ;
+lin ryyditta'a'_VK = {s = c53A "ryydittää"} ;
+lin ryyni_NK = {s = d05 "ryyni"} ;
+lin ryypiskelija'_NK = {s = d12 "ryypiskelijä"} ;
+lin ryypiskella'_VK = {s = c67 "ryypiskellä"} ;
+lin ryypiskely_NK = {s = d02 "ryypiskely"} ;
+lin ryyppy_NK = {s = d01A "ryyppy"} ;
+--? lin ryyppa'ja'iset_NK = {s = d38 "ryyppäjäiset"} ;
+lin ryypyksiin_AdvK = {s = c99 "ryypyksiin"} ;
+lin ryypyksissa'_AdvK = {s = c99 "ryypyksissä"} ;
+lin ryypytin_NK = {s = d33A "ryypytin"} ;
+lin ryypa'ta'_VK = {s = c73A "ryypätä"} ;
+lin ryysis_NK = {s = d39 "ryysis"} ;
+lin ryysia'_VK = {s = c61 "ryysiä"} ;
+lin ryysta'a'_VK = {s = c53 "ryystää"} ;
+lin ryysy_NK = {s = d01 "ryysy"} ;
+lin ryysyinen_NK = {s = d38 "ryysyinen"} ;
+lin ryysyla'inen_NK = {s = d38 "ryysyläinen"} ;
+lin ryysa'ta'_VK = {s = c73 "ryysätä"} ;
+lin ryyti_NK = {s = d05A "ryyti"} ;
+lin ryytya'_VK = {s = c52A "ryytyä"} ;
+lin ryo'ha'hta'a'_VK = {s = c53A "ryöhähtää"} ;
+lin ryo'ha'ta'_VK = {s = c73 "ryöhätä"} ;
+lin ryo'ka'le_NK = {s = d48 "ryökäle"} ;
+lin ryo'minta'_NK = {s = d09A "ryömintä"} ;
+lin ryo'mia'_VK = {s = c61 "ryömiä"} ;
+lin ryo'na'_NK = {s = d10 "ryönä"} ;
+lin ryo'ppy_NK = {s = d01A "ryöppy"} ;
+lin ryo'ppa'ys_NK = {s = d39 "ryöppäys"} ;
+lin ryo'psa'hdella'_VK = {s = c67A "ryöpsähdellä"} ;
+lin ryo'psa'hdys_NK = {s = d39 "ryöpsähdys"} ;
+lin ryo'psa'hta'a'_VK = {s = c53A "ryöpsähtää"} ;
+lin ryo'psa'ys_NK = {s = d39 "ryöpsäys"} ;
+lin ryo'psa'ytta'a'_VK = {s = c53A "ryöpsäyttää"} ;
+lin ryo'pytta'a'_VK = {s = c53A "ryöpyttää"} ;
+lin ryo'pytys_NK = {s = d39 "ryöpytys"} ;
+lin ryo'pyta'_VK = {s = c75A "ryöpytä"} ;
+lin ryo'pa'ta'_VK = {s = c73A "ryöpätä"} ;
+lin ryo'sta'ja'_NK = {s = d10 "ryöstäjä"} ;
+lin ryo'sta'ytya'_VK = {s = c52A "ryöstäytyä"} ;
+lin ryo'sta'a'_VK = {s = c53 "ryöstää"} ;
+lin ryo'sto'_NK = {s = d01 "ryöstö"} ;
+lin ryo'va'ri_NK = {s = d06 "ryöväri"} ;
+lin ryo'va'ta'_VK = {s = c73 "ryövätä"} ;
+lin ryo'va'ys_NK = {s = d39 "ryöväys"} ;
+lin ra'hina'_NK = {s = d12 "rähinä"} ;
+lin ra'hino'ida'_VK = {s = c68 "rähinöidä"} ;
+lin ra'hino'inti_NK = {s = d05A "rähinöinti"} ;
+lin ra'hino'itsija'_NK = {s = d12 "rähinöitsijä"} ;
+lin ra'hista'_VK = {s = c66 "rähistä"} ;
+lin ra'hja'_NK = {s = d10 "rähjä"} ;
+lin ra'hja'inen_NK = {s = d38 "rähjäinen"} ;
+lin ra'hja'ta'_VK = {s = c73 "rähjätä"} ;
+lin ra'hja'ytya'_VK = {s = c52A "rähjäytyä"} ;
+lin ra'hja'a'ntya'_VK = {s = c52A "rähjääntyä"} ;
+lin ra'hmia'_VK = {s = c61 "rähmiä"} ;
+lin ra'hma'_NK = {s = d10 "rähmä"} ;
+lin ra'hma'inen_NK = {s = d38 "rähmäinen"} ;
+lin ra'hma'lleen_AdvK = {s = c99 "rähmälleen"} ;
+lin ra'hma'lla'a'n_AdvK = {s = c99 "rähmällään"} ;
+lin ra'hma'lta'a'n_AdvK = {s = c99 "rähmältään"} ;
+lin ra'ha'hdys_NK = {s = d39 "rähähdys"} ;
+lin ra'ha'hta'a'_VK = {s = c53A "rähähtää"} ;
+lin ra'ha'kka'_NK = {s = d14A "rähäkkä"} ;
+lin ra'ha'tta'a'_VK = {s = c53A "rähättää"} ;
+lin ra'ha'tys_NK = {s = d39 "rähätys"} ;
+lin ra'ike_NK = {s = d48A "räike"} ;
+lin ra'ikeys_NK = {s = d40 "räikeys"} ;
+lin ra'ikea'_AK = {s = d15 "räikeä"} ;
+--+ lin ra'ikea'sti_AdvK = {s = c99 "räikeästi"} ;
+lin ra'ikina'_NK = {s = d12 "räikinä"} ;
+lin ra'ikka'_NK = {s = d10A "räikkä"} ;
+lin ra'ikyna'_NK = {s = d12 "räikynä"} ;
+lin ra'ikya'_VK = {s = c52A "räikyä"} ;
+lin ra'ika'a'_VK = {s = c78 "räikää"} ;
+lin ra'iske_NK = {s = d48 "räiske"} ;
+lin ra'iskinta'_NK = {s = d09A "räiskintä"} ;
+lin ra'iskina'_NK = {s = d12 "räiskinä"} ;
+lin ra'iskia'_VK = {s = c61 "räiskiä"} ;
+lin ra'iskynta'_NK = {s = d09A "räiskyntä"} ;
+lin ra'iskyna'_NK = {s = d12 "räiskynä"} ;
+lin ra'iskytella'_VK = {s = c67A "räiskytellä"} ;
+lin ra'iskytta'a'_VK = {s = c53A "räiskyttää"} ;
+lin ra'iskytys_NK = {s = d39 "räiskytys"} ;
+lin ra'iskyva'_AK = {s = d10 "räiskyvä"} ;
+--+ lin ra'iskyva'sti_AdvK = {s = c99 "räiskyvästi"} ;
+lin ra'iskya'_VK = {s = c52 "räiskyä"} ;
+lin ra'iska'hdella'_VK = {s = c67A "räiskähdellä"} ;
+lin ra'iska'hdys_NK = {s = d39 "räiskähdys"} ;
+lin ra'iska'htely_NK = {s = d02 "räiskähtely"} ;
+lin ra'iska'hta'a'_VK = {s = c53A "räiskähtää"} ;
+lin ra'iska'le_NK = {s = d48 "räiskäle"} ;
+lin ra'iska'ys_NK = {s = d39 "räiskäys"} ;
+lin ra'iska'ytta'a'_VK = {s = c53A "räiskäyttää"} ;
+lin ra'ja'hde_NK = {s = d48A "räjähde"} ;
+lin ra'ja'hdella'_VK = {s = c67A "räjähdellä"} ;
+lin ra'ja'hdys_NK = {s = d39 "räjähdys"} ;
+lin ra'ja'hdysma'inen_AK = {s = d38 "räjähdysmäinen"} ;
+--+ lin ra'ja'hdysma'isesti_AdvK = {s = c99 "räjähdysmäisesti"} ;
+lin ra'ja'hta'a'_VK = {s = c53A "räjähtää"} ;
+lin ra'ja'ytin_NK = {s = d33A "räjäytin"} ;
+lin ra'ja'ytta'a'_VK = {s = c53A "räjäyttää"} ;
+lin ra'ja'ytys_NK = {s = d39 "räjäytys"} ;
+lin ra'kia'_VK = {s = c61A "räkiä"} ;
+lin ra'kki_NK = {s = d05A "räkki"} ;
+lin ra'kna'ta'_VK = {s = c73 "räknätä"} ;
+lin ra'kna'ys_NK = {s = d39 "räknäys"} ;
+lin ra'ksytta'a'_VK = {s = c53A "räksyttää"} ;
+lin ra'ksytys_NK = {s = d39 "räksytys"} ;
+lin ra'kytta'a'_VK = {s = c53A "räkyttää"} ;
+lin ra'kytys_NK = {s = d39 "räkytys"} ;
+lin ra'ka'_NK = {s = d10A "räkä"} ;
+lin ra'ka'inen_AK = {s = d38 "räkäinen"} ;
+--+ lin ra'ka'isesti_AdvK = {s = c99 "räkäisesti"} ;
+lin ra'ka'ista'_VK = {s = c66 "räkäistä"} ;
+lin ra'ka'la'_NK = {s = d12 "räkälä"} ;
+lin ra'ka'tti_NK = {s = d05A "räkätti"} ;
+lin ra'ka'tta'a'_VK = {s = c53A "räkättää"} ;
+lin ra'ka'tys_NK = {s = d39 "räkätys"} ;
+lin ra'lla'sta'a'_VK = {s = c53 "rällästää"} ;
+lin ra'lla'ta'_VK = {s = c73 "rällätä"} ;
+lin ra'lssi_NK = {s = d05 "rälssi"} ;
+lin ra'me_NK = {s = d48 "räme"} ;
+lin ra'meikko'_NK = {s = d04A "rämeikkö"} ;
+lin ra'meinen_NK = {s = d38 "rämeinen"} ;
+lin ra'mettya'_VK = {s = c52A "rämettyä"} ;
+lin ra'metta'a'_VK = {s = c53A "rämettää"} ;
+lin ra'meys_NK = {s = d40 "rämeys"} ;
+lin ra'mea'_AK = {s = d15 "rämeä"} ;
+--+ lin ra'mea'sti_AdvK = {s = c99 "rämeästi"} ;
+lin ra'mina'_NK = {s = d12 "räminä"} ;
+lin ra'mistella'_VK = {s = c67 "rämistellä"} ;
+lin ra'mistys_NK = {s = d39 "rämistys"} ;
+lin ra'mista'_VK = {s = c66 "rämistä"} ;
+lin ra'mista'a'_VK = {s = c53 "rämistää"} ;
+lin ra'misytta'a'_VK = {s = c53A "rämisyttää"} ;
+lin ra'mpia'_VK = {s = c61A "rämpiä"} ;
+lin ra'mpsy_NK = {s = d01 "rämpsy"} ;
+lin ra'mpytta'a'_VK = {s = c53A "rämpyttää"} ;
+lin ra'mpytys_NK = {s = d39 "rämpytys"} ;
+lin ra'ma'_NK = {s = d10 "rämä"} ;
+lin ra'ma'hdys_NK = {s = d39 "rämähdys"} ;
+lin ra'ma'hdytta'a'_VK = {s = c53A "rämähdyttää"} ;
+lin ra'ma'hta'a'_VK = {s = c53A "rämähtää"} ;
+lin ra'ma'kkyys_NK = {s = d40 "rämäkkyys"} ;
+lin ra'ma'kka'_NK = {s = d14A "rämäkkä"} ;
+lin ra'ma'ka'sti_AdvK = {s = c99 "rämäkästi"} ;
+--+ lin ra'ma'pa'isesti_AdvK = {s = c99 "rämäpäisesti"} ;
+lin ra'ma'pa'isyys_NK = {s = d40 "rämäpäisyys"} ;
+lin ra'ma'ys_NK = {s = d39 "rämäys"} ;
+lin ra'ma'ytta'a'_VK = {s = c53A "rämäyttää"} ;
+lin ra'nni_NK = {s = d05 "ränni"} ;
+lin ra'nsistytta'a'_VK = {s = c53A "ränsistyttää"} ;
+lin ra'nsistya'_VK = {s = c52 "ränsistyä"} ;
+lin ra'nsista'a'_VK = {s = c53 "ränsistää"} ;
+lin ra'nstya'_VK = {s = c52 "ränstyä"} ;
+lin ra'nta'_NK = {s = d10A "räntä"} ;
+lin ra'pellys_NK = {s = d39 "räpellys"} ;
+lin ra'pelta'a'_VK = {s = c54A "räpeltää"} ;
+lin ra'piko'ida'_VK = {s = c62 "räpiköidä"} ;
+lin ra'piko'inti_NK = {s = d05A "räpiköinti"} ;
+lin ra'piska'_NK = {s = d13 "räpiskä"} ;
+lin ra'pisko'_NK = {s = d02 "räpiskö"} ;
+lin ra'pistella'_VK = {s = c67 "räpistellä"} ;
+lin ra'pistely_NK = {s = d02 "räpistely"} ;
+lin ra'pla'ta'_VK = {s = c73 "räplätä"} ;
+lin ra'ppi_NK = {s = d05A "räppi"} ;
+lin ra'ppa'na'_NK = {s = d12 "räppänä"} ;
+lin ra'ppa'ri_NK = {s = d06 "räppäri"} ;
+lin ra'pse_NK = {s = d48 "räpse"} ;
+lin ra'psinta'_NK = {s = d09A "räpsintä"} ;
+lin ra'psia'_VK = {s = c61 "räpsiä"} ;
+lin ra'psytella'_VK = {s = c67A "räpsytellä"} ;
+lin ra'psytta'a'_VK = {s = c53A "räpsyttää"} ;
+lin ra'psytys_NK = {s = d39 "räpsytys"} ;
+lin ra'psya'_VK = {s = c52 "räpsyä"} ;
+lin ra'psa'hdella'_VK = {s = c67A "räpsähdellä"} ;
+lin ra'psa'hdys_NK = {s = d39 "räpsähdys"} ;
+lin ra'psa'htely_NK = {s = d02 "räpsähtely"} ;
+lin ra'psa'hta'a'_VK = {s = c53A "räpsähtää"} ;
+lin ra'psa'ys_NK = {s = d39 "räpsäys"} ;
+lin ra'psa'ytta'a'_VK = {s = c53A "räpsäyttää"} ;
+lin ra'pyla'_NK = {s = d12 "räpylä"} ;
+lin ra'pytella'_VK = {s = c67A "räpytellä"} ;
+lin ra'pytta'a'_VK = {s = c53A "räpyttää"} ;
+lin ra'pytys_NK = {s = d39 "räpytys"} ;
+lin ra'pa'tta'ja'_NK = {s = d10 "räpättäjä"} ;
+lin ra'pa'tta'a'_VK = {s = c53A "räpättää"} ;
+lin ra'pa'ta'_1_VK = {s = c73A "räpätä"} ;
+lin ra'pa'ta'_2_VK = {s = c73A "räpätä"} ;
+lin ra'pa'ys_NK = {s = d39 "räpäys"} ;
+lin ra'pa'ytta'a'_VK = {s = c53A "räpäyttää"} ;
+lin ra'sti_NK = {s = d05 "rästi"} ;
+lin ra'stiintya'_VK = {s = c52A "rästiintyä"} ;
+lin ra'stiytya'_VK = {s = c52A "rästiytyä"} ;
+lin ra'sy_NK = {s = d01 "räsy"} ;
+lin ra'syinen_NK = {s = d38 "räsyinen"} ;
+lin ra'sa'hdella'_VK = {s = c67A "räsähdellä"} ;
+lin ra'sa'hdys_NK = {s = d39 "räsähdys"} ;
+lin ra'sa'htely_NK = {s = d02 "räsähtely"} ;
+lin ra'sa'hta'a'_VK = {s = c53A "räsähtää"} ;
+lin ra'sa'ys_NK = {s = d39 "räsäys"} ;
+lin ra'sa'ytta'a'_VK = {s = c53A "räsäyttää"} ;
+lin ra'tinki_NK = {s = d05A "rätinki"} ;
+lin ra'tina'_NK = {s = d12 "rätinä"} ;
+lin ra'tista'_VK = {s = c66 "rätistä"} ;
+lin ra'tisytta'a'_VK = {s = c53A "rätisyttää"} ;
+lin ra'tkia'_VK = {s = c61 "rätkiä"} ;
+lin ra'tkytta'a'_VK = {s = c53A "rätkyttää"} ;
+lin ra'tkytys_NK = {s = d39 "rätkytys"} ;
+lin ra'tka'hdys_NK = {s = d39 "rätkähdys"} ;
+lin ra'tka'hta'a'_VK = {s = c53A "rätkähtää"} ;
+lin ra'tka'ista'_VK = {s = c66 "rätkäistä"} ;
+lin ra'tka'ta'_VK = {s = c73 "rätkätä"} ;
+lin ra'tka'ytta'a'_VK = {s = c53A "rätkäyttää"} ;
+lin ra'tsa'hta'a'_VK = {s = c53A "rätsähtää"} ;
+lin ra'tti_NK = {s = d05A "rätti"} ;
+lin ra'tva'kka'_NK = {s = d14A "rätväkkä"} ;
+lin ra'tva'na'_NK = {s = d12 "rätvänä"} ;
+lin ra'va'hta'a'_VK = {s = c53A "rävähtää"} ;
+lin ra'va'kkyys_NK = {s = d40 "räväkkyys"} ;
+lin ra'va'kka'_NK = {s = d14A "räväkkä"} ;
+lin ra'va'ka'sti_AdvK = {s = c99 "räväkästi"} ;
+lin ra'va'ytta'a'_VK = {s = c53A "räväyttää"} ;
+lin ra'yha'ka's_NK = {s = d41A "räyhäkäs"} ;
+lin ra'yha'ta'_VK = {s = c73 "räyhätä"} ;
+lin ra'yha'a'ja'_NK = {s = d10 "räyhääjä"} ;
+lin ra'yske_NK = {s = d48 "räyske"} ;
+lin ra'yskia'_VK = {s = c61 "räyskiä"} ;
+lin ra'yskytta'a'_VK = {s = c53A "räyskyttää"} ;
+lin ra'yskytys_NK = {s = d39 "räyskytys"} ;
+lin ra'yska'_1_NK = {s = d10 "räyskä"} ;
+lin ra'yska'_2_NK = {s = d10 "räyskä"} ;
+lin ra'ysta'inen_NK = {s = d38 "räystäinen"} ;
+lin ra'ysta's_NK = {s = d41 "räystäs"} ;
+lin ra'ytya'_VK = {s = c52A "räytyä"} ;
+lin ra'a'kki_NK = {s = d05A "rääkki"} ;
+lin ra'a'kkya'_VK = {s = c52A "rääkkyä"} ;
+lin ra'a'kka'ys_NK = {s = d39 "rääkkäys"} ;
+lin ra'a'kka'ytya'_VK = {s = c52A "rääkkäytyä"} ;
+lin ra'a'kka'a'ja'_NK = {s = d10 "rääkkääjä"} ;
+lin ra'a'kka'a'ntya'_VK = {s = c52A "rääkkääntyä"} ;
+lin ra'a'kynta'_NK = {s = d09A "rääkyntä"} ;
+lin ra'a'kyna'_NK = {s = d12 "rääkynä"} ;
+lin ra'a'kya'_VK = {s = c52A "rääkyä"} ;
+lin ra'a'ka'ista'_VK = {s = c66 "rääkäistä"} ;
+lin ra'a'ka'isy_NK = {s = d02 "rääkäisy"} ;
+lin ra'a'ka'ta'_VK = {s = c73A "rääkätä"} ;
+lin ra'a'pia'_VK = {s = c61A "rääpiä"} ;
+--? lin ra'a'pia'iset_NK = {s = d38 "rääpiäiset"} ;
+--? lin ra'a'ppeet_NK = {s = d48 "rääppeet"} ;
+lin ra'a'ppia'_VK = {s = c61A "rääppiä"} ;
+--? lin ra'a'ppia'iset_NK = {s = d38 "rääppiäiset"} ;
+lin ra'a'pa'le_NK = {s = d48 "rääpäle"} ;
+lin ra'a'seikko'_NK = {s = d04A "rääseikkö"} ;
+lin ra'a'sy_NK = {s = d01 "rääsy"} ;
+lin ra'a'syinen_NK = {s = d38 "rääsyinen"} ;
+lin ra'a'syla'inen_NK = {s = d38 "rääsyläinen"} ;
+lin ra'a'tikka'_NK = {s = d14A "räätikkä"} ;
+lin ra'a'ta'li_NK = {s = d06 "räätäli"} ;
+lin ra'a'ta'lo'ida'_VK = {s = c62 "räätälöidä"} ;
+lin ra'a'ta'lo'inti_NK = {s = d05A "räätälöinti"} ;
+lin ra'a'vi_NK = {s = d05 "räävi"} ;
+lin ra'a'vitto'myys_NK = {s = d40 "räävittömyys"} ;
+lin ra'a'vitto'ma'sti_AdvK = {s = c99 "räävittömästi"} ;
+lin ra'a'vito'n_NK = {s = d34A "räävitön"} ;
+--+ lin ra'a'va'suisesti_AdvK = {s = c99 "rääväsuisesti"} ;
+lin ra'a'va'suisuus_NK = {s = d40 "rääväsuisuus"} ;
+lin ra'a'ynta'_NK = {s = d09A "rääyntä"} ;
+lin ra'a'ytta'a'_VK = {s = c53A "rääyttää"} ;
+lin ro'h_AdvK = {s = c99 "röh"} ;
+lin ro'hina'_NK = {s = d12 "röhinä"} ;
+lin ro'hista'_VK = {s = c66 "röhistä"} ;
+lin ro'hkina'_NK = {s = d12 "röhkinä"} ;
+lin ro'hkia'_VK = {s = c61 "röhkiä"} ;
+lin ro'hka'ista'_VK = {s = c66 "röhkäistä"} ;
+lin ro'hka'isy_NK = {s = d02 "röhkäisy"} ;
+lin ro'hno'tta'a'_VK = {s = c53A "röhnöttää"} ;
+lin ro'ha'hdella'_VK = {s = c67A "röhähdellä"} ;
+lin ro'ha'hdys_NK = {s = d39 "röhähdys"} ;
+lin ro'ha'hta'a'_VK = {s = c53A "röhähtää"} ;
+lin ro'ho'tta'a'_VK = {s = c53A "röhöttää"} ;
+lin ro'kitta'a'_VK = {s = c53A "rökittää"} ;
+lin ro'kitys_NK = {s = d39 "rökitys"} ;
+lin ro'kkiin_AdvK = {s = c99 "rökkiin"} ;
+lin ro'kkiinsa'_AdvK = {s = c99 "rökkiinsä"} ;
+lin ro'lli_NK = {s = d05 "rölli"} ;
+lin ro'meys_NK = {s = d40 "römeys"} ;
+lin ro'mea'_AK = {s = d15 "römeä"} ;
+--+ lin ro'mea'sti_AdvK = {s = c99 "römeästi"} ;
+lin ro'ma'kka'_NK = {s = d14A "römäkkä"} ;
+lin ro'nsy_NK = {s = d01 "rönsy"} ;
+lin ro'nsyilla'_VK = {s = c67 "rönsyillä"} ;
+lin ro'nsyily_NK = {s = d02 "rönsyily"} ;
+lin ro'nsyinen_NK = {s = d38 "rönsyinen"} ;
+lin ro'ntgen_NK = {s = d05 "röntgen"} ;
+lin ro'ntgenologi_NK = {s = d05 "röntgenologi"} ;
+lin ro'ntgenologia_NK = {s = d12 "röntgenologia"} ;
+lin ro'ntgenologinen_NK = {s = d38 "röntgenologinen"} ;
+lin ro'pelo'inen_NK = {s = d38 "röpelöinen"} ;
+lin ro'sti_NK = {s = d05 "rösti"} ;
+lin ro'tiska'_NK = {s = d13 "rötiskä"} ;
+lin ro'tisko'_NK = {s = d02 "rötiskö"} ;
+lin ro'tka'le_NK = {s = d48 "rötkäle"} ;
+lin ro'tko'tta'a'_VK = {s = c53A "rötköttää"} ;
+lin ro'ttelo'_NK = {s = d02 "röttelö"} ;
+lin ro'to's_NK = {s = d39 "rötös"} ;
+lin ro'to'stella'_VK = {s = c67 "rötöstellä"} ;
+lin ro'to'stely_NK = {s = d02 "rötöstely"} ;
+lin ro'yhelo'_NK = {s = d02 "röyhelö"} ;
+lin ro'yhelo'inen_NK = {s = d38 "röyhelöinen"} ;
+lin ro'yhistella'_VK = {s = c67 "röyhistellä"} ;
+lin ro'yhistely_NK = {s = d02 "röyhistely"} ;
+lin ro'yhistys_NK = {s = d39 "röyhistys"} ;
+lin ro'yhista'a'_VK = {s = c53 "röyhistää"} ;
+lin ro'yhkeys_NK = {s = d40 "röyhkeys"} ;
+lin ro'yhkea'_AK = {s = d15 "röyhkeä"} ;
+--+ lin ro'yhkea'sti_AdvK = {s = c99 "röyhkeästi"} ;
+lin ro'yhta'illa'_VK = {s = c67 "röyhtäillä"} ;
+lin ro'yhta'ily_NK = {s = d02 "röyhtäily"} ;
+lin ro'yhta'ista'_VK = {s = c66 "röyhtäistä"} ;
+lin ro'yhta'isy_NK = {s = d02 "röyhtäisy"} ;
+lin ro'yhta'ys_NK = {s = d39 "röyhtäys"} ;
+lin ro'yhta'ytta'a'_VK = {s = c53A "röyhtäyttää"} ;
+lin ro'yhta'ytys_NK = {s = d39 "röyhtäytys"} ;
+lin ro'yhy_NK = {s = d01 "röyhy"} ;
+lin ro'yhyinen_NK = {s = d38 "röyhyinen"} ;
+lin ro'yhytella'_VK = {s = c67A "röyhytellä"} ;
+lin ro'yhytta'a'_VK = {s = c53A "röyhyttää"} ;
+lin ro'yhyta'_VK = {s = c75 "röyhytä"} ;
+lin ro'yha'hdys_NK = {s = d39 "röyhähdys"} ;
+lin ro'yha'hta'a'_VK = {s = c53A "röyhähtää"} ;
+lin ro'ykkio'_NK = {s = d03 "röykkiö"} ;
+lin ro'ykkio'itta'in_AdvK = {s = c99 "röykkiöittäin"} ;
+lin ro'ykytta'a'_VK = {s = c53A "röykyttää"} ;
+lin ro'ykytys_NK = {s = d39 "röykytys"} ;
+lin ro'o'ki_NK = {s = d05 "rööki"} ;
+lin ro'o'ri_NK = {s = d05 "rööri"} ;
+lin sa_AdvK = {s = c99 "sa"} ;
+lin saada_VK = {s = c63 "saada"} ;
+lin saaga_NK = {s = d09 "saaga"} ;
+lin saago_NK = {s = d01 "saago"} ;
+lin _aahi_NK = {s = d05 "šaahi"} ;
+lin saaja_NK = {s = d10 "saaja"} ;
+lin saakeli_AK = {s = d06 "saakeli"} ;
+lin saakelinmoinen_NK = {s = d38 "saakelinmoinen"} ;
+--+ lin saakelisti_AdvK = {s = c99 "saakelisti"} ;
+lin saakka_AdvK = {s = c99 "saakka"} ;
+lin saakuri_AK = {s = d06 "saakuri"} ;
+--+ lin saakuristi_AdvK = {s = c99 "saakuristi"} ;
+lin saali_NK = {s = d05 "saali"} ;
+lin saalinki_NK = {s = d05A "saalinki"} ;
+lin saalis_NK = {s = d41 "saalis"} ;
+lin saalistaa_VK = {s = c53 "saalistaa"} ;
+lin saalistaja_NK = {s = d10 "saalistaja"} ;
+lin saalistus_NK = {s = d39 "saalistus"} ;
+lin saamari_AK = {s = d06 "saamari"} ;
+lin saamarinmoinen_NK = {s = d38 "saamarinmoinen"} ;
+--+ lin saamaristi_AdvK = {s = c99 "saamaristi"} ;
+lin saamaton_NK = {s = d34A "saamaton"} ;
+lin saamattomuus_NK = {s = d40 "saamattomuus"} ;
+lin saame_NK = {s = d08 "saame"} ;
+lin saaminen_NK = {s = d38 "saaminen"} ;
+lin saanne_NK = {s = d48A "saanne"} ;
+lin saanti_NK = {s = d05A "saanti"} ;
+lin saanto_NK = {s = d01A "saanto"} ;
+lin saapas_NK = {s = d41A "saapas"} ;
+lin saapastella_VK = {s = c67 "saapastella"} ;
+lin saapikas_NK = {s = d41A "saapikas"} ;
+lin saappaannuolija_NK = {s = d12 "saappaannuolija"} ;
+lin saapua_VK = {s = c52A "saapua"} ;
+lin saapumisaika_NK = {s = d09A "saapumisaika"} ;
+lin saapuvilla_AdvK = {s = c99 "saapuvilla"} ;
+lin saapuville_AdvK = {s = c99 "saapuville"} ;
+lin saarekas_NK = {s = d41A "saarekas"} ;
+lin saareke_NK = {s = d48A "saareke"} ;
+lin saarelainen_NK = {s = d38 "saarelainen"} ;
+lin saarelma_NK = {s = d10 "saarelma"} ;
+lin saari_NK = {s = d26 "saari"} ;
+lin saarinen_NK = {s = d38 "saarinen"} ;
+lin saaristo_NK = {s = d02 "saaristo"} ;
+lin saaristoinen_NK = {s = d38 "saaristoinen"} ;
+lin saarna_NK = {s = d09 "saarna"} ;
+lin saarnaaja_NK = {s = d10 "saarnaaja"} ;
+lin saarnata_VK = {s = c73 "saarnata"} ;
+lin saarni_NK = {s = d07 "saarni"} ;
+lin saarros_NK = {s = d39 "saarros"} ;
+lin saarrostaa_VK = {s = c53 "saarrostaa"} ;
+lin saarrostus_NK = {s = d39 "saarrostus"} ;
+lin saartaa_VK = {s = c57A "saartaa"} ;
+lin saarto_NK = {s = d01A "saarto"} ;
+lin saasta_NK = {s = d09 "saasta"} ;
+lin saastainen_NK = {s = d38 "saastainen"} ;
+lin saastaisuus_NK = {s = d40 "saastaisuus"} ;
+lin saastata_VK = {s = c73 "saastata"} ;
+lin saastaton_NK = {s = d34A "saastaton"} ;
+lin saaste_NK = {s = d48 "saaste"} ;
+lin saasteeton_NK = {s = d34A "saasteeton"} ;
+lin saasteettomuus_NK = {s = d40 "saasteettomuus"} ;
+lin saasteinen_NK = {s = d38 "saasteinen"} ;
+lin saasteisuus_NK = {s = d40 "saasteisuus"} ;
+lin saastua_VK = {s = c52 "saastua"} ;
+lin saastuke_NK = {s = d48A "saastuke"} ;
+lin saastuma_NK = {s = d10 "saastuma"} ;
+lin saastunta_NK = {s = d09A "saastunta"} ;
+lin saastute_NK = {s = d48A "saastute"} ;
+lin saastuttaa_VK = {s = c53A "saastuttaa"} ;
+lin saastuttaja_NK = {s = d10 "saastuttaja"} ;
+lin saastutus_NK = {s = d39 "saastutus"} ;
+lin saatana_AK = {s = d12 "saatana"} ;
+lin saatanallinen_NK = {s = d38 "saatanallinen"} ;
+lin saatananmoinen_NK = {s = d38 "saatananmoinen"} ;
+--+ lin saatanasti_AdvK = {s = c99 "saatanasti"} ;
+lin saatava_NK = {s = d10 "saatava"} ;
+lin saatavana_AdvK = {s = c99 "saatavana"} ;
+lin saatavilla_AdvK = {s = c99 "saatavilla"} ;
+lin saataville_AdvK = {s = c99 "saataville"} ;
+lin saatavilta_AdvK = {s = c99 "saatavilta"} ;
+lin saatavissa_AdvK = {s = c99 "saatavissa"} ;
+lin saatavuus_NK = {s = d40 "saatavuus"} ;
+lin saate_NK = {s = d48A "saate"} ;
+lin saatella_VK = {s = c67A "saatella"} ;
+lin saati_AdvK = {s = c99 "saati"} ;
+lin saatikka_AdvK = {s = c99 "saatikka"} ;
+lin saatille_AdvK = {s = c99 "saatille"} ;
+lin saattaa_VK = {s = c56A "saattaa"} ;
+lin saattaja_NK = {s = d10 "saattaja"} ;
+lin saattelija_NK = {s = d12 "saattelija"} ;
+lin saattelu_NK = {s = d02 "saattelu"} ;
+lin saatto_NK = {s = d01A "saatto"} ;
+lin saattue_NK = {s = d48 "saattue"} ;
+lin saavi_NK = {s = d05 "saavi"} ;
+lin saavillinen_NK = {s = d38 "saavillinen"} ;
+lin saavutettavuus_NK = {s = d40 "saavutettavuus"} ;
+lin saavuttaa_VK = {s = c53A "saavuttaa"} ;
+lin saavuttamaton_NK = {s = d34A "saavuttamaton"} ;
+lin saavuttamattomiin_AdvK = {s = c99 "saavuttamattomiin"} ;
+lin saavuttamattomissa_AdvK = {s = c99 "saavuttamattomissa"} ;
+lin saavutus_NK = {s = d39 "saavutus"} ;
+lin sabatti_NK = {s = d05A "sabatti"} ;
+lin sabloni_NK = {s = d06 "sabloni"} ;
+lin sabluuna_NK = {s = d13 "sabluuna"} ;
+lin sabotaasi_NK = {s = d05 "sabotaasi"} ;
+lin sabotoida_VK = {s = c62 "sabotoida"} ;
+lin sabotoija_NK = {s = d10 "sabotoija"} ;
+lin sabotointi_NK = {s = d05A "sabotointi"} ;
+lin saboto'o'ri_NK = {s = d05 "sabotööri"} ;
+lin sabra_NK = {s = d09 "sabra"} ;
+lin sadannes_NK = {s = d39 "sadannes"} ;
+lin sadanta_NK = {s = d09A "sadanta"} ;
+lin sadas_NK = {s = d45 "sadas"} ;
+lin sadasti_AdvK = {s = c99 "sadasti"} ;
+lin sadatella_VK = {s = c67A "sadatella"} ;
+lin sadattelu_NK = {s = d02 "sadattelu"} ;
+lin sadatus_NK = {s = d39 "sadatus"} ;
+lin saddukeus_NK = {s = d39 "saddukeus"} ;
+lin sade_NK = {s = d48A "sade"} ;
+lin sadeaika_NK = {s = d09A "sadeaika"} ;
+lin sadella_VK = {s = c67A "sadella"} ;
+lin sadetin_NK = {s = d33A "sadetin"} ;
+lin sadettaa_VK = {s = c53A "sadettaa"} ;
+lin sadettaja_NK = {s = d10 "sadettaja"} ;
+lin sadetus_NK = {s = d39 "sadetus"} ;
+lin sadin_NK = {s = d33A "sadin"} ;
+lin sadismi_NK = {s = d05 "sadismi"} ;
+lin sadisti_NK = {s = d05 "sadisti"} ;
+lin sadistinen_AK = {s = d38 "sadistinen"} ;
+--+ lin sadistisesti_AdvK = {s = c99 "sadistisesti"} ;
+lin sadistisuus_NK = {s = d40 "sadistisuus"} ;
+lin sadoittain_AdvK = {s = c99 "sadoittain"} ;
+lin sadonkorjuuaika_NK = {s = d09A "sadonkorjuuaika"} ;
+--+ lin sadunomaisesti_AdvK = {s = c99 "sadunomaisesti"} ;
+lin sadusto_NK = {s = d02 "sadusto"} ;
+lin saeta_VK = {s = c72A "saeta"} ;
+lin safari_NK = {s = d06 "safari"} ;
+lin safiiri_NK = {s = d06 "safiiri"} ;
+lin safka_NK = {s = d09 "safka"} ;
+lin safkata_VK = {s = c73 "safkata"} ;
+lin safkis_NK = {s = d39 "safkis"} ;
+lin saflori_NK = {s = d06 "saflori"} ;
+lin saframi_NK = {s = d06 "saframi"} ;
+lin saha_NK = {s = d09 "saha"} ;
+lin sahaaja_NK = {s = d10 "sahaaja"} ;
+lin sahata_VK = {s = c73 "sahata"} ;
+lin sahaus_NK = {s = d39 "sahaus"} ;
+lin sahauttaa_VK = {s = c53A "sahauttaa"} ;
+lin sahautua_VK = {s = c52A "sahautua"} ;
+lin sahra_NK = {s = d09 "sahra"} ;
+lin sahrami_NK = {s = d06 "sahrami"} ;
+lin sahti_NK = {s = d05A "sahti"} ;
+lin sahuri_NK = {s = d06 "sahuri"} ;
+lin sahuu_NK = {s = d17 "sahuu"} ;
+lin sahuuttaa_VK = {s = c53A "sahuuttaa"} ;
+lin saidasti_AdvK = {s = c99 "saidasti"} ;
+lin saikka_NK = {s = d09A "saikka"} ;
+lin saintpaulia_NK = {s = d12 "saintpaulia"} ;
+lin saippo_NK = {s = d01A "saippo"} ;
+lin saippua_NK = {s = d12 "saippua"} ;
+lin saippuainen_NK = {s = d38 "saippuainen"} ;
+lin saippuoida_VK = {s = c62 "saippuoida"} ;
+lin saippuoittaa_VK = {s = c53A "saippuoittaa"} ;
+lin saippuoitua_VK = {s = c52A "saippuoitua"} ;
+lin sairaala_NK = {s = d13 "sairaala"} ;
+lin sairaalloinen_AK = {s = d38 "sairaalloinen"} ;
+--+ lin sairaalloisesti_AdvK = {s = c99 "sairaalloisesti"} ;
+lin sairaalloisuus_NK = {s = d40 "sairaalloisuus"} ;
+--+ lin sairaasti_AdvK = {s = c99 "sairaasti"} ;
+lin sairas_AK = {s = d41 "sairas"} ;
+lin sairastaa_VK = {s = c53 "sairastaa"} ;
+lin sairastavuus_NK = {s = d40 "sairastavuus"} ;
+lin sairastella_VK = {s = c67 "sairastella"} ;
+lin sairastelu_NK = {s = d02 "sairastelu"} ;
+lin sairastua_VK = {s = c52 "sairastua"} ;
+lin sairastuttaa_VK = {s = c53A "sairastuttaa"} ;
+lin sairastuvuus_NK = {s = d40 "sairastuvuus"} ;
+lin sairaus_NK = {s = d40 "sairaus"} ;
+lin sairausaika_NK = {s = d09A "sairausaika"} ;
+lin saita_NK = {s = d09A "saita"} ;
+lin saituri_NK = {s = d06 "saituri"} ;
+lin saituus_NK = {s = d40 "saituus"} ;
+lin saivar_NK = {s = d49 "saivar"} ;
+lin saivare_NK = {s = d49 "saivare"} ;
+lin saivarrella_VK = {s = c67A "saivarrella"} ;
+lin saivartaja_NK = {s = d10 "saivartaja"} ;
+lin saivartelija_NK = {s = d12 "saivartelija"} ;
+lin saivartelu_NK = {s = d02 "saivartelu"} ;
+lin saju_NK = {s = d01 "saju"} ;
+lin sakaali_NK = {s = d06 "sakaali"} ;
+lin sakara_NK = {s = d12 "sakara"} ;
+lin sakarainen_NK = {s = d38 "sakarainen"} ;
+lin sakariini_NK = {s = d05 "sakariini"} ;
+lin sakaristo_NK = {s = d01 "sakaristo"} ;
+lin sakasti_NK = {s = d05 "sakasti"} ;
+lin sakata_VK = {s = c73A "sakata"} ;
+lin _akata_VK = {s = c73A "šakata"} ;
+lin sake_NK = {s = d08 "sake"} ;
+lin sakea_NK = {s = d15 "sakea"} ;
+lin sakemanni_NK = {s = d05 "sakemanni"} ;
+lin saketti_NK = {s = d05A "saketti"} ;
+lin sakeute_NK = {s = d48A "sakeute"} ;
+lin sakeuttaa_VK = {s = c53A "sakeuttaa"} ;
+lin sakeutua_VK = {s = c52A "sakeutua"} ;
+lin sakeutus_NK = {s = d39 "sakeutus"} ;
+lin sakka_NK = {s = d09A "sakka"} ;
+lin sakkaantua_VK = {s = c52A "sakkaantua"} ;
+lin sakkaridi_NK = {s = d05 "sakkaridi"} ;
+lin sakkariini_NK = {s = d05 "sakkariini"} ;
+lin sakkaroosi_NK = {s = d05 "sakkaroosi"} ;
+lin sakkauma_NK = {s = d10 "sakkauma"} ;
+lin sakkaus_NK = {s = d39 "sakkaus"} ;
+lin _akkaus_NK = {s = d39 "šakkaus"} ;
+lin sakkauttaa_VK = {s = c53A "sakkauttaa"} ;
+lin sakkautua_VK = {s = c52A "sakkautua"} ;
+lin sakkautuma_NK = {s = d10 "sakkautuma"} ;
+lin sakkautus_NK = {s = d39 "sakkautus"} ;
+lin sakkeli_NK = {s = d06 "sakkeli"} ;
+lin sakki_NK = {s = d05A "sakki"} ;
+lin _akki_NK = {s = d05A "šakki"} ;
+lin sakko_NK = {s = d01A "sakko"} ;
+lin sakottaa_VK = {s = c53A "sakottaa"} ;
+lin sakotus_NK = {s = d39 "sakotus"} ;
+lin sakoutua_VK = {s = c52A "sakoutua"} ;
+lin sakraalinen_NK = {s = d38 "sakraalinen"} ;
+lin sakramentti_NK = {s = d05A "sakramentti"} ;
+lin saksa_NK = {s = d09 "saksa"} ;
+lin saksalainen_NK = {s = d38 "saksalainen"} ;
+lin saksankumina_NK = {s = d12 "saksankumina"} ;
+lin saksankuusi_NK = {s = d24 "saksankuusi"} ;
+lin saksannos_NK = {s = d39 "saksannos"} ;
+lin saksantaa_VK = {s = c54A "saksantaa"} ;
+lin saksata_VK = {s = c73 "saksata"} ;
+lin saksaus_NK = {s = d39 "saksaus"} ;
+--? lin sakset_NK = {s = d07 "sakset"} ;
+lin saksia_VK = {s = c61 "saksia"} ;
+lin saksipotku_NK = {s = d01 "saksipotku"} ;
+lin saksmanni_NK = {s = d05 "saksmanni"} ;
+lin saksofoni_NK = {s = d05 "saksofoni"} ;
+lin saksofonisti_NK = {s = d05 "saksofonisti"} ;
+lin saku_NK = {s = d01 "saku"} ;
+lin sakuska_NK = {s = d13 "sakuska"} ;
+lin sala_NK = {s = d09 "sala"} ;
+lin salaa_AdvK = {s = c99 "salaa"} ;
+lin salaan_AdvK = {s = c99 "salaan"} ;
+lin salaatti_NK = {s = d05A "salaatti"} ;
+lin salailla_VK = {s = c67 "salailla"} ;
+lin salailu_NK = {s = d02 "salailu"} ;
+lin salainen_AK = {s = d38 "salainen"} ;
+--+ lin salaisesti_AdvK = {s = c99 "salaisesti"} ;
+lin salaisuus_NK = {s = d40 "salaisuus"} ;
+lin salakka_NK = {s = d14A "salakka"} ;
+lin salaka'hma'inen_AK = {s = d38 "salakähmäinen"} ;
+--+ lin salaka'hma'isesti_AdvK = {s = c99 "salakähmäisesti"} ;
+lin salaka'hma'isyys_NK = {s = d40 "salakähmäisyys"} ;
+lin salama_NK = {s = d12 "salama"} ;
+lin salamanleimaus_NK = {s = d39 "salamanleimaus"} ;
+lin salamanteri_NK = {s = d06 "salamanteri"} ;
+lin salami_NK = {s = d05 "salami"} ;
+lin salamoida_VK = {s = c62 "salamoida"} ;
+lin salamointi_NK = {s = d05A "salamointi"} ;
+lin salamyhka'inen_AK = {s = d38 "salamyhkäinen"} ;
+--+ lin salamyhka'isesti_AdvK = {s = c99 "salamyhkäisesti"} ;
+lin salamyhka'isyys_NK = {s = d40 "salamyhkäisyys"} ;
+--+ lin salapera'isesti_AdvK = {s = c99 "salaperäisesti"} ;
+lin salassa_AdvK = {s = c99 "salassa"} ;
+lin salassapitoaika_NK = {s = d09A "salassapitoaika"} ;
+lin salata_VK = {s = c73 "salata"} ;
+lin salaus_NK = {s = d39 "salaus"} ;
+lin salava_NK = {s = d10 "salava"} ;
+lin salavihkaa_AdvK = {s = c99 "salavihkaa"} ;
+lin salavihkainen_AK = {s = d38 "salavihkainen"} ;
+--+ lin salavihkaisesti_AdvK = {s = c99 "salavihkaisesti"} ;
+lin salavihkaisuus_NK = {s = d40 "salavihkaisuus"} ;
+lin salavuoteus_NK = {s = d40 "salavuoteus"} ;
+lin saldo_NK = {s = d01 "saldo"} ;
+lin saletti_NK = {s = d05A "saletti"} ;
+lin sali_NK = {s = d05 "sali"} ;
+lin salibandy_NK = {s = d01 "salibandy"} ;
+lin salisylaatti_NK = {s = d05A "salisylaatti"} ;
+lin salkku_NK = {s = d01A "salkku"} ;
+lin salko_NK = {s = d01A "salko"} ;
+lin salkuton_NK = {s = d34A "salkuton"} ;
+lin sallia_VK = {s = c61 "sallia"} ;
+lin sallimus_NK = {s = d39 "sallimus"} ;
+lin sallittu_NK = {s = d01A "sallittu"} ;
+lin salliva_AK = {s = d10 "salliva"} ;
+--+ lin sallivasti_AdvK = {s = c99 "sallivasti"} ;
+lin sallivuus_NK = {s = d40 "sallivuus"} ;
+lin salmeke_NK = {s = d48A "salmeke"} ;
+lin salmi_NK = {s = d07 "salmi"} ;
+lin salmiakki_NK = {s = d05A "salmiakki"} ;
+lin salmonella_NK = {s = d09 "salmonella"} ;
+lin salmonelloosi_NK = {s = d05 "salmonelloosi"} ;
+lin salo_NK = {s = d01 "salo"} ;
+lin salon_AdvK = {s = c99 "salon"} ;
+lin salonki_NK = {s = d05A "salonki"} ;
+--+ lin salonkikelpoisesti_AdvK = {s = c99 "salonkikelpoisesti"} ;
+lin salpa_NK = {s = d09A "salpa"} ;
+lin salpaaja_NK = {s = d10 "salpaaja"} ;
+lin salpaantua_VK = {s = c52A "salpaantua"} ;
+lin salpauma_NK = {s = d10 "salpauma"} ;
+lin salpaus_NK = {s = d39 "salpaus"} ;
+lin salpautua_VK = {s = c52A "salpautua"} ;
+lin salpautuma_NK = {s = d10 "salpautuma"} ;
+lin salpietari_NK = {s = d06 "salpietari"} ;
+lin salsa_NK = {s = d09 "salsa"} ;
+lin salskea_NK = {s = d15 "salskea"} ;
+lin saluki_NK = {s = d06 "saluki"} ;
+lin salusiini_NK = {s = d05 "salusiini"} ;
+lin saluuna_NK = {s = d13 "saluuna"} ;
+lin salva_NK = {s = d09 "salva"} ;
+lin salvaa_VK = {s = c56 "salvaa"} ;
+lin salvain_NK = {s = d33 "salvain"} ;
+lin salvata_VK = {s = c73A "salvata"} ;
+lin salvia_NK = {s = d12 "salvia"} ;
+lin salvoa_VK = {s = c52 "salvoa"} ;
+lin salvoin_NK = {s = d33 "salvoin"} ;
+lin salvos_NK = {s = d39 "salvos"} ;
+lin sama_NK = {s = d09 "sama"} ;
+lin samaani_NK = {s = d05 "samaani"} ;
+lin _amaani_NK = {s = d05 "šamaani"} ;
+lin samaanne_AdvK = {s = c99 "samaanne"} ;
+lin samainen_NK = {s = d38 "samainen"} ;
+lin samaistaa_VK = {s = c53 "samaistaa"} ;
+lin samaistua_VK = {s = c52 "samaistua"} ;
+lin samalla_AdvK = {s = c99 "samalla"} ;
+--+ lin samanaikaisesti_AdvK = {s = c99 "samanaikaisesti"} ;
+lin samanhintaisuus_NK = {s = d40 "samanhintaisuus"} ;
+lin samanismi_NK = {s = d05 "samanismi"} ;
+lin _amanismi_NK = {s = d05 "šamanismi"} ;
+lin samanistinen_NK = {s = d38 "samanistinen"} ;
+lin _amanistinen_NK = {s = d38 "šamanistinen"} ;
+--+ lin samankaltaisesti_AdvK = {s = c99 "samankaltaisesti"} ;
+lin samankaltaistua_VK = {s = c52 "samankaltaistua"} ;
+lin samankaltaistus_NK = {s = d39 "samankaltaistus"} ;
+--+ lin samankeskisesti_AdvK = {s = c99 "samankeskisesti"} ;
+lin samankeskisyys_NK = {s = d40 "samankeskisyys"} ;
+lin samanlainen_NK = {s = d38 "samanlainen"} ;
+lin samanlaistaa_VK = {s = c53 "samanlaistaa"} ;
+lin samanlaistua_VK = {s = c52 "samanlaistua"} ;
+lin samanlaisuus_NK = {s = d40 "samanlaisuus"} ;
+lin samanne_AdvK = {s = c99 "samanne"} ;
+lin _amanoida_VK = {s = c62 "šamanoida"} ;
+lin samansuuntaistaa_VK = {s = c53 "samansuuntaistaa"} ;
+lin samansuuntaistua_VK = {s = c52 "samansuuntaistua"} ;
+lin samansuuntaistus_NK = {s = d39 "samansuuntaistus"} ;
+lin saman_tien_AdvK = {s = c99 "saman tien"} ;
+lin saman_verran_AdvK = {s = c99 "saman verran"} ;
+lin samaperinta'inen_NK = {s = d38 "samaperintäinen"} ;
+lin samarialainen_NK = {s = d38 "samarialainen"} ;
+lin samassa_AdvK = {s = c99 "samassa"} ;
+lin samastaa_VK = {s = c53 "samastaa"} ;
+lin samastua_VK = {s = c52 "samastua"} ;
+lin samastus_NK = {s = d39 "samastus"} ;
+lin samaten_AdvK = {s = c99 "samaten"} ;
+lin samba_NK = {s = d09 "samba"} ;
+lin sambata_VK = {s = c73 "sambata"} ;
+lin sambo_NK = {s = d01 "sambo"} ;
+lin samea_NK = {s = d15 "samea"} ;
+lin samentaa_VK = {s = c54A "samentaa"} ;
+lin samentua_VK = {s = c52A "samentua"} ;
+lin samentuma_NK = {s = d10 "samentuma"} ;
+lin sameta_VK = {s = c72 "sameta"} ;
+lin sametti_NK = {s = d05A "sametti"} ;
+lin samettinen_NK = {s = d38 "samettinen"} ;
+lin sameus_NK = {s = d40 "sameus"} ;
+lin sameuttaa_VK = {s = c53A "sameuttaa"} ;
+lin sameutua_VK = {s = c52A "sameutua"} ;
+lin sammahtaa_VK = {s = c53A "sammahtaa"} ;
+lin sammakko_NK = {s = d04A "sammakko"} ;
+lin sammal_NK = {s = d49 "sammal"} ;
+lin sammaleinen_NK = {s = d38 "sammaleinen"} ;
+lin sammalikko_NK = {s = d04A "sammalikko"} ;
+lin sammalinen_NK = {s = d38 "sammalinen"} ;
+lin sammalisto_NK = {s = d01 "sammalisto"} ;
+lin sammallus_NK = {s = d39 "sammallus"} ;
+lin sammaloitua_VK = {s = c52A "sammaloitua"} ;
+lin sammaltaa_VK = {s = c54A "sammaltaa"} ;
+lin sammaltua_VK = {s = c52A "sammaltua"} ;
+--? lin sammarit_NK = {s = d06 "sammarit"} ;
+lin sammas_NK = {s = d39 "sammas"} ;
+lin sammio_NK = {s = d03 "sammio"} ;
+lin sammota_VK = {s = c74A "sammota"} ;
+lin sammua_VK = {s = c52 "sammua"} ;
+lin sammuke_NK = {s = d48A "sammuke"} ;
+lin sammuksiin_AdvK = {s = c99 "sammuksiin"} ;
+lin sammuksissa_AdvK = {s = c99 "sammuksissa"} ;
+lin sammumaton_NK = {s = d34A "sammumaton"} ;
+lin sammute_NK = {s = d48A "sammute"} ;
+lin sammutin_NK = {s = d33A "sammutin"} ;
+lin sammuttaa_VK = {s = c53A "sammuttaa"} ;
+lin sammuttaja_NK = {s = d10 "sammuttaja"} ;
+lin sammutus_NK = {s = d39 "sammutus"} ;
+lin samoilija_NK = {s = d12 "samoilija"} ;
+lin samoilla_VK = {s = c67 "samoilla"} ;
+lin samoilu_NK = {s = d02 "samoilu"} ;
+lin samoin_AdvK = {s = c99 "samoin"} ;
+lin samoinajatteleva_NK = {s = d10 "samoinajatteleva"} ;
+lin samojedi_NK = {s = d05 "samojedi"} ;
+lin samooja_NK = {s = d10 "samooja"} ;
+lin samota_VK = {s = c74 "samota"} ;
+lin samotti_NK = {s = d05A "samotti"} ;
+lin samovaari_NK = {s = d05 "samovaari"} ;
+lin sampaani_NK = {s = d05 "sampaani"} ;
+lin samperi_AK = {s = d06 "samperi"} ;
+lin samperinmoinen_NK = {s = d38 "samperinmoinen"} ;
+--+ lin samperisti_AdvK = {s = c99 "samperisti"} ;
+lin sampi_NK = {s = d07A "sampi"} ;
+lin sampinjoni_NK = {s = d05 "sampinjoni"} ;
+lin sampioni_NK = {s = d05 "sampioni"} ;
+lin samplata_VK = {s = c73 "samplata"} ;
+lin samplaus_NK = {s = d39 "samplaus"} ;
+lin sampleri_NK = {s = d06 "sampleri"} ;
+lin sampo_NK = {s = d01A "sampo"} ;
+lin sampoo_NK = {s = d20 "sampoo"} ;
+lin samppanja_NK = {s = d12 "samppanja"} ;
+lin samum_NK = {s = d05 "samum"} ;
+lin samurai_NK = {s = d18 "samurai"} ;
+lin samuus_NK = {s = d40 "samuus"} ;
+lin sana_NK = {s = d09 "sana"} ;
+lin sanaharkka_NK = {s = d09A "sanaharkka"} ;
+lin sanailla_VK = {s = c67 "sanailla"} ;
+lin sanailu_NK = {s = d02 "sanailu"} ;
+lin sanainen_AK = {s = d38 "sanainen"} ;
+--+ lin sanaisesti_AdvK = {s = c99 "sanaisesti"} ;
+lin sanaisuus_NK = {s = d40 "sanaisuus"} ;
+lin sanalleen_AdvK = {s = c99 "sanalleen"} ;
+lin sanallinen_AK = {s = d38 "sanallinen"} ;
+--+ lin sanallisesti_AdvK = {s = c99 "sanallisesti"} ;
+lin sanallistaa_VK = {s = c53 "sanallistaa"} ;
+lin sananen_NK = {s = d38 "sananen"} ;
+lin sananraja_NK = {s = d09 "sananraja"} ;
+lin sanasilla_AdvK = {s = c99 "sanasilla"} ;
+lin sanasille_AdvK = {s = c99 "sanasille"} ;
+lin sanastaa_VK = {s = c53 "sanastaa"} ;
+lin sanasto_NK = {s = d02 "sanasto"} ;
+lin sanastollinen_NK = {s = d38 "sanastollinen"} ;
+lin sanastus_NK = {s = d39 "sanastus"} ;
+lin sanaton_NK = {s = d34A "sanaton"} ;
+lin sanatorio_NK = {s = d03 "sanatorio"} ;
+lin sanattomasti_AdvK = {s = c99 "sanattomasti"} ;
+lin sanattomuus_NK = {s = d40 "sanattomuus"} ;
+lin sandaali_NK = {s = d06 "sandaali"} ;
+lin sandaletti_NK = {s = d05A "sandaletti"} ;
+lin sandinisti_NK = {s = d05 "sandinisti"} ;
+lin sandwich_NK = {s = d05 "sandwich"} ;
+lin sane_NK = {s = d48 "sane"} ;
+lin saneerata_VK = {s = c73 "saneerata"} ;
+lin saneeraus_NK = {s = d39 "saneeraus"} ;
+lin sanelin_NK = {s = d33 "sanelin"} ;
+lin sanella_VK = {s = c67 "sanella"} ;
+lin sanelu_NK = {s = d02 "sanelu"} ;
+lin sanforoida_VK = {s = c62 "sanforoida"} ;
+lin sanforointi_NK = {s = d05A "sanforointi"} ;
+lin sangallinen_NK = {s = d38 "sangallinen"} ;
+lin sangen_AdvK = {s = c99 "sangen"} ;
+lin sangollinen_NK = {s = d38 "sangollinen"} ;
+lin sangria_NK = {s = d12 "sangria"} ;
+lin saniainen_NK = {s = d38 "saniainen"} ;
+lin sanikkainen_NK = {s = d38 "sanikkainen"} ;
+lin sanka_AK = {s = d09A "sanka"} ;
+lin sankainen_NK = {s = d38 "sankainen"} ;
+lin sankari_NK = {s = d06 "sankari"} ;
+lin sankarillinen_AK = {s = d38 "sankarillinen"} ;
+--+ lin sankarillisesti_AdvK = {s = c99 "sankarillisesti"} ;
+lin sankarillisuus_NK = {s = d40 "sankarillisuus"} ;
+lin sankaritar_NK = {s = d32A "sankaritar"} ;
+lin sankarius_NK = {s = d40 "sankarius"} ;
+lin sankaruus_NK = {s = d40 "sankaruus"} ;
+--+ lin sankasti_AdvK = {s = c99 "sankasti"} ;
+lin sankentua_VK = {s = c52A "sankentua"} ;
+lin sanketa_VK = {s = c72A "sanketa"} ;
+lin sankka_NK = {s = d09A "sankka"} ;
+lin sankkeri_NK = {s = d06 "sankkeri"} ;
+lin sankkuus_NK = {s = d40 "sankkuus"} ;
+lin sanko_NK = {s = d01A "sanko"} ;
+lin sanktio_NK = {s = d03 "sanktio"} ;
+lin sanktioida_VK = {s = c62 "sanktioida"} ;
+lin sanktiointi_NK = {s = d05A "sanktiointi"} ;
+lin sannikas_NK = {s = d41A "sannikas"} ;
+lin sannoittaa_VK = {s = c53A "sannoittaa"} ;
+lin sannoitus_NK = {s = d39 "sannoitus"} ;
+lin sanoa_VK = {s = c52 "sanoa"} ;
+lin sanoittaa_VK = {s = c53A "sanoittaa"} ;
+lin sanoittaja_NK = {s = d10 "sanoittaja"} ;
+lin sanoitus_NK = {s = d39 "sanoitus"} ;
+lin sanoja_NK = {s = d10 "sanoja"} ;
+lin sanoma_NK = {s = d10 "sanoma"} ;
+lin sanomaton_NK = {s = d34A "sanomaton"} ;
+lin sanomattomasti_AdvK = {s = c99 "sanomattomasti"} ;
+lin sanomus_NK = {s = d39 "sanomus"} ;
+lin sanonnallinen_NK = {s = d38 "sanonnallinen"} ;
+lin sanonta_NK = {s = d09A "sanonta"} ;
+lin sanottava_AK = {s = d10 "sanottava"} ;
+--+ lin sanottavasti_AdvK = {s = c99 "sanottavasti"} ;
+lin sanottu_NK = {s = d01A "sanottu"} ;
+lin sanoutua_VK = {s = c52A "sanoutua"} ;
+lin sanskrit_NK = {s = d05 "sanskrit"} ;
+lin sanskritisti_NK = {s = d05 "sanskritisti"} ;
+lin santa_NK = {s = d09A "santa"} ;
+lin santarmi_NK = {s = d05 "santarmi"} ;
+lin santsari_NK = {s = d06 "santsari"} ;
+lin santsata_VK = {s = c73 "santsata"} ;
+lin santsaus_NK = {s = d39 "santsaus"} ;
+lin _antung_NK = {s = d05 "šantung"} ;
+lin sanue_NK = {s = d48 "sanue"} ;
+lin saos_NK = {s = d39 "saos"} ;
+lin saostaa_VK = {s = c53 "saostaa"} ;
+lin saoste_NK = {s = d48 "saoste"} ;
+lin saostin_NK = {s = d33 "saostin"} ;
+lin saostua_VK = {s = c52 "saostua"} ;
+lin saostus_NK = {s = d39 "saostus"} ;
+lin saota_VK = {s = c74A "saota"} ;
+lin saparo_NK = {s = d02 "saparo"} ;
+lin sapatti_NK = {s = d05A "sapatti"} ;
+lin sapekas_AK = {s = d41A "sapekas"} ;
+--+ lin sapekkaasti_AdvK = {s = c99 "sapekkaasti"} ;
+lin sapekkuus_NK = {s = d40 "sapekkuus"} ;
+lin sapeli_NK = {s = d06 "sapeli"} ;
+lin sapelinkalistaja_NK = {s = d10 "sapelinkalistaja"} ;
+lin sapelinkalistelija_NK = {s = d12 "sapelinkalistelija"} ;
+lin sapelinkalistelu_NK = {s = d02 "sapelinkalistelu"} ;
+lin sapettaa_VK = {s = c53A "sapettaa"} ;
+lin sapiska_NK = {s = d13 "sapiska"} ;
+lin sapluuna_NK = {s = d13 "sapluuna"} ;
+lin sappi_NK = {s = d07A "sappi"} ;
+lin sapuska_NK = {s = d13 "sapuska"} ;
+lin sara_NK = {s = d09 "sara"} ;
+lin saraikko_NK = {s = d01A "saraikko"} ;
+lin sarake_NK = {s = d48A "sarake"} ;
+lin sarana_NK = {s = d12 "sarana"} ;
+lin saranallinen_NK = {s = d38 "saranallinen"} ;
+lin saranoida_VK = {s = c62 "saranoida"} ;
+lin saranointi_NK = {s = d05A "saranointi"} ;
+lin sarastaa_VK = {s = c53 "sarastaa"} ;
+lin sarastus_NK = {s = d39 "sarastus"} ;
+lin sardelli_NK = {s = d06 "sardelli"} ;
+lin sardiini_NK = {s = d06 "sardiini"} ;
+lin sardoninen_NK = {s = d38 "sardoninen"} ;
+lin sari_NK = {s = d05 "sari"} ;
+lin sarja_NK = {s = d09 "sarja"} ;
+lin sarjainen_NK = {s = d38 "sarjainen"} ;
+lin sarjallinen_NK = {s = d38 "sarjallinen"} ;
+lin sarjis_NK = {s = d39 "sarjis"} ;
+lin sarjoa_VK = {s = c52 "sarjoa"} ;
+lin sarjoittaa_VK = {s = c53A "sarjoittaa"} ;
+lin sarjoittain_AdvK = {s = c99 "sarjoittain"} ;
+lin sarjoitus_NK = {s = d39 "sarjoitus"} ;
+lin sarka_1_NK = {s = d09A "sarka"} ;
+lin sarka_2_NK = {s = d09A "sarka"} ;
+lin sarkain_NK = {s = d33 "sarkain"} ;
+lin sarkainen_1_NK = {s = d38 "sarkainen"} ;
+lin sarkainen_2_NK = {s = d38 "sarkainen"} ;
+lin sarkainkohta_NK = {s = d10A "sarkainkohta"} ;
+lin sarkasmi_NK = {s = d05 "sarkasmi"} ;
+lin sarkastinen_AK = {s = d38 "sarkastinen"} ;
+--+ lin sarkastisesti_AdvK = {s = c99 "sarkastisesti"} ;
+lin sarkastisuus_NK = {s = d40 "sarkastisuus"} ;
+lin sarkaus_NK = {s = d39 "sarkaus"} ;
+lin sarkofagi_NK = {s = d05 "sarkofagi"} ;
+lin sarkooma_NK = {s = d10 "sarkooma"} ;
+lin _armo'o'ri_NK = {s = d05 "šarmööri"} ;
+lin sarpio_NK = {s = d03 "sarpio"} ;
+lin sarveistua_VK = {s = c52 "sarveistua"} ;
+lin sarveistuma_NK = {s = d10 "sarveistuma"} ;
+lin sarvekas_NK = {s = d41A "sarvekas"} ;
+lin sarveke_NK = {s = d48A "sarveke"} ;
+lin sarvellinen_NK = {s = d38 "sarvellinen"} ;
+lin sarvi_NK = {s = d07 "sarvi"} ;
+lin sarvijaakko_NK = {s = d01A "sarvijaakko"} ;
+lin sarvikuonokas_NK = {s = d41A "sarvikuonokas"} ;
+lin sarvinen_NK = {s = d38 "sarvinen"} ;
+lin saslikki_NK = {s = d05A "saslikki"} ;
+lin sassiin_AdvK = {s = c99 "sassiin"} ;
+lin sata_NK = {s = d09A "sata"} ;
+lin sataa_VK = {s = c56A "sataa"} ;
+lin satainen_NK = {s = d38 "satainen"} ;
+--+ lin satakertaisesti_AdvK = {s = c99 "satakertaisesti"} ;
+lin satama_NK = {s = d10 "satama"} ;
+lin satama'a'rin_AdvK = {s = c99 "satamäärin"} ;
+lin satanen_NK = {s = d38 "satanen"} ;
+lin satanismi_NK = {s = d05 "satanismi"} ;
+lin satanistinen_NK = {s = d38 "satanistinen"} ;
+lin sateensuoja_NK = {s = d10 "sateensuoja"} ;
+lin sateinen_NK = {s = d38 "sateinen"} ;
+lin sateisuus_NK = {s = d40 "sateisuus"} ;
+lin satelliitti_NK = {s = d05A "satelliitti"} ;
+lin satiainen_NK = {s = d38 "satiainen"} ;
+lin satiini_NK = {s = d06 "satiini"} ;
+lin satiiri_NK = {s = d06 "satiiri"} ;
+lin satiirikko_NK = {s = d04A "satiirikko"} ;
+lin satiirinen_NK = {s = d38 "satiirinen"} ;
+lin satikuti_NK = {s = d05 "satikuti"} ;
+lin sato_NK = {s = d01A "sato"} ;
+lin satoinen_NK = {s = d38 "satoinen"} ;
+lin satoisa_NK = {s = d10 "satoisa"} ;
+lin satoisuus_NK = {s = d40 "satoisuus"} ;
+lin satraappi_NK = {s = d05A "satraappi"} ;
+lin satsata_VK = {s = c73 "satsata"} ;
+lin satsaus_NK = {s = d39 "satsaus"} ;
+lin satsi_NK = {s = d05 "satsi"} ;
+lin satsuma_NK = {s = d10 "satsuma"} ;
+lin sattua_VK = {s = c52A "sattua"} ;
+lin sattuma_NK = {s = d10 "sattuma"} ;
+lin sattumalta_AdvK = {s = c99 "sattumalta"} ;
+--+ lin sattumanvaraisesti_AdvK = {s = c99 "sattumanvaraisesti"} ;
+lin sattumoisin_AdvK = {s = c99 "sattumoisin"} ;
+lin sattumus_NK = {s = d39 "sattumus"} ;
+lin sattuva_AK = {s = d10 "sattuva"} ;
+--+ lin sattuvasti_AdvK = {s = c99 "sattuvasti"} ;
+lin sattuvuus_NK = {s = d40 "sattuvuus"} ;
+lin satu_NK = {s = d01A "satu"} ;
+lin satuilija_NK = {s = d12 "satuilija"} ;
+lin satuilla_VK = {s = c67 "satuilla"} ;
+lin satuilu_NK = {s = d02 "satuilu"} ;
+lin satula_NK = {s = d12 "satula"} ;
+lin satuloida_VK = {s = c62 "satuloida"} ;
+lin satulointi_NK = {s = d05A "satulointi"} ;
+lin satunnainen_AK = {s = d38 "satunnainen"} ;
+--+ lin satunnaisesti_AdvK = {s = c99 "satunnaisesti"} ;
+lin satunnaistaa_VK = {s = c53 "satunnaistaa"} ;
+lin satunnaisuus_NK = {s = d40 "satunnaisuus"} ;
+lin saturainen_NK = {s = d38 "saturainen"} ;
+lin saturoida_VK = {s = c62 "saturoida"} ;
+lin saturointi_NK = {s = d05A "saturointi"} ;
+lin satuttaa_VK = {s = c53A "satuttaa"} ;
+lin satyyri_NK = {s = d05 "satyyri"} ;
+lin saudi_NK = {s = d05 "saudi"} ;
+lin sauhu_NK = {s = d01 "sauhu"} ;
+lin sauhuta_VK = {s = c74 "sauhuta"} ;
+lin sauhutella_VK = {s = c67A "sauhutella"} ;
+lin sauhuttaa_VK = {s = c53A "sauhuttaa"} ;
+lin sauhuttelu_NK = {s = d02 "sauhuttelu"} ;
+lin saukko_NK = {s = d01A "saukko"} ;
+lin sauma_NK = {s = d09 "sauma"} ;
+lin saumaaja_NK = {s = d10 "saumaaja"} ;
+lin saumain_NK = {s = d33 "saumain"} ;
+lin saumakohta_NK = {s = d10A "saumakohta"} ;
+lin saumallinen_NK = {s = d38 "saumallinen"} ;
+lin saumari_NK = {s = d06 "saumari"} ;
+lin saumata_VK = {s = c73 "saumata"} ;
+lin saumaton_NK = {s = d34A "saumaton"} ;
+lin saumattomasti_AdvK = {s = c99 "saumattomasti"} ;
+lin saumattomuus_NK = {s = d40 "saumattomuus"} ;
+lin saumaus_NK = {s = d39 "saumaus"} ;
+lin saumautua_VK = {s = c52A "saumautua"} ;
+lin saumoittaa_VK = {s = c53A "saumoittaa"} ;
+lin saumuri_NK = {s = d06 "saumuri"} ;
+lin sauna_NK = {s = d09 "sauna"} ;
+lin saunavasta_NK = {s = d09 "saunavasta"} ;
+lin saundi_NK = {s = d05 "saundi"} ;
+lin saunio_NK = {s = d03 "saunio"} ;
+lin saunoa_VK = {s = c52 "saunoa"} ;
+lin saunoja_NK = {s = d10 "saunoja"} ;
+lin saunotella_VK = {s = c67A "saunotella"} ;
+lin saunottaa_VK = {s = c53A "saunottaa"} ;
+lin saunottaja_NK = {s = d10 "saunottaja"} ;
+lin saunotus_NK = {s = d39 "saunotus"} ;
+lin sauramo_NK = {s = d02 "sauramo"} ;
+lin sauro_NK = {s = d01 "sauro"} ;
+lin sauva_NK = {s = d09 "sauva"} ;
+lin sauvoa_VK = {s = c52 "sauvoa"} ;
+lin sauvoin_NK = {s = d33 "sauvoin"} ;
+lin sauvonta_NK = {s = d09A "sauvonta"} ;
+lin savakko_NK = {s = d04A "savakko"} ;
+lin savanni_NK = {s = d05 "savanni"} ;
+lin savariini_NK = {s = d05 "savariini"} ;
+lin saves_NK = {s = d39 "saves"} ;
+lin saveta_VK = {s = c74 "saveta"} ;
+lin savettaa_VK = {s = c53A "savettaa"} ;
+lin savettua_VK = {s = c52A "savettua"} ;
+lin savetus_NK = {s = d39 "savetus"} ;
+lin saveus_NK = {s = d39 "saveus"} ;
+lin saveutua_VK = {s = c52A "saveutua"} ;
+lin savi_NK = {s = d07 "savi"} ;
+lin savikka_NK = {s = d14A "savikka"} ;
+lin savikko_NK = {s = d04A "savikko"} ;
+lin savinen_NK = {s = d38 "savinen"} ;
+lin savo_NK = {s = d01 "savo"} ;
+lin savolaisittain_AdvK = {s = c99 "savolaisittain"} ;
+lin savolaisuus_NK = {s = d40 "savolaisuus"} ;
+lin savotoida_VK = {s = c62 "savotoida"} ;
+lin savotointi_NK = {s = d05A "savotointi"} ;
+lin savotta_NK = {s = d14A "savotta"} ;
+lin savu_NK = {s = d01 "savu"} ;
+lin savuinen_NK = {s = d38 "savuinen"} ;
+lin savuke_NK = {s = d48A "savuke"} ;
+lin savustaa_VK = {s = c53 "savustaa"} ;
+lin savustamo_NK = {s = d02 "savustamo"} ;
+lin savustin_NK = {s = d33 "savustin"} ;
+lin savustua_VK = {s = c52 "savustua"} ;
+lin savustus_NK = {s = d39 "savustus"} ;
+lin savuta_VK = {s = c74 "savuta"} ;
+lin savuton_NK = {s = d34A "savuton"} ;
+lin savuttaa_VK = {s = c53A "savuttaa"} ;
+lin savuttua_VK = {s = c52A "savuttua"} ;
+lin savutus_NK = {s = d39 "savutus"} ;
+lin scherzo_NK = {s = d01 "scherzo"} ;
+lin scha'fer_NK = {s = d06 "schäfer"} ;
+lin science_fiction_NK = {s = d05 "science fiction"} ;
+lin scifi_NK = {s = d05 "scifi"} ;
+lin seassa_AdvK = {s = c99 "seassa"} ;
+lin seasta_AdvK = {s = c99 "seasta"} ;
+lin seborrea_NK = {s = d12 "seborrea"} ;
+lin seborrooinen_NK = {s = d38 "seborrooinen"} ;
+lin sedatiivi_NK = {s = d05 "sedatiivi"} ;
+lin sedimentoitua_VK = {s = c52A "sedimentoitua"} ;
+lin sedimentti_NK = {s = d05A "sedimentti"} ;
+lin seditella'_VK = {s = c67A "seditellä"} ;
+lin seemila'inen_NK = {s = d38 "seemiläinen"} ;
+lin seepia_NK = {s = d12 "seepia"} ;
+lin seepra_NK = {s = d09 "seepra"} ;
+lin seerumi_NK = {s = d06 "seerumi"} ;
+lin sees_AdvK = {s = c99 "sees"} ;
+lin seesam_AdvK = {s = c99 "seesam"} ;
+lin seesami_NK = {s = d06 "seesami"} ;
+lin seesteisyys_NK = {s = d40 "seesteisyys"} ;
+lin seestya'_VK = {s = c52 "seestyä"} ;
+lin seesta'a'_VK = {s = c53 "seestää"} ;
+lin segmentaatio_NK = {s = d03 "segmentaatio"} ;
+lin segmentoida_VK = {s = c62 "segmentoida"} ;
+lin segmentointi_NK = {s = d05A "segmentointi"} ;
+lin segmentoitua_VK = {s = c52A "segmentoitua"} ;
+lin segmentti_NK = {s = d05A "segmentti"} ;
+lin sei_NK = {s = d18 "sei"} ;
+lin seikka_NK = {s = d09A "seikka"} ;
+lin seikkailija_NK = {s = d12 "seikkailija"} ;
+lin seikkailijatar_NK = {s = d32A "seikkailijatar"} ;
+lin seikkailla_VK = {s = c67 "seikkailla"} ;
+lin seikkailu_NK = {s = d02 "seikkailu"} ;
+lin seikkailukas_NK = {s = d41A "seikkailukas"} ;
+--+ lin seikkapera'isesti_AdvK = {s = c99 "seikkaperäisesti"} ;
+lin _eikki_NK = {s = d05A "šeikki"} ;
+lin seilailla_VK = {s = c67 "seilailla"} ;
+lin seilata_VK = {s = c73 "seilata"} ;
+lin seili_NK = {s = d05 "seili"} ;
+lin seimi_NK = {s = d07 "seimi"} ;
+lin seinemma'ksi_AdvK = {s = c99 "seinemmäksi"} ;
+lin seinemma'lle_AdvK = {s = c99 "seinemmälle"} ;
+lin seinemma'lla'_AdvK = {s = c99 "seinemmällä"} ;
+lin seinemma's_AdvK = {s = c99 "seinemmäs"} ;
+lin seinempa'na'_AdvK = {s = c99 "seinempänä"} ;
+lin seinus_NK = {s = d39 "seinus"} ;
+lin seinusta_NK = {s = d13 "seinusta"} ;
+lin seinustaa_VK = {s = c53 "seinustaa"} ;
+lin seina'_NK = {s = d10 "seinä"} ;
+lin seina'inen_NK = {s = d38 "seinäinen"} ;
+lin seina'ke_NK = {s = d48A "seinäke"} ;
+lin seina'kka'in_AdvK = {s = c99 "seinäkkäin"} ;
+lin seina'kka'inen_NK = {s = d38 "seinäkkäinen"} ;
+lin seina'llinen_NK = {s = d38 "seinällinen"} ;
+lin seina'maalaus_NK = {s = d39 "seinämaalaus"} ;
+lin seina'ma'_NK = {s = d10 "seinämä"} ;
+lin seina'syvennys_NK = {s = d39 "seinäsyvennys"} ;
+lin seina'tyksin_AdvK = {s = c99 "seinätyksin"} ;
+lin seina'tysten_AdvK = {s = c99 "seinätysten"} ;
+lin seipi_NK = {s = d05 "seipi"} ;
+lin seireeni_NK = {s = d05 "seireeni"} ;
+lin seis_AdvK = {s = c99 "seis"} ;
+lin seisaalla_AdvK = {s = c99 "seisaalla"} ;
+lin seisaallaan_AdvK = {s = c99 "seisaallaan"} ;
+lin seisaalle_AdvK = {s = c99 "seisaalle"} ;
+lin seisaalleen_AdvK = {s = c99 "seisaalleen"} ;
+lin seisaalta_AdvK = {s = c99 "seisaalta"} ;
+lin seisaaltaan_AdvK = {s = c99 "seisaaltaan"} ;
+lin seisahduksissa_AdvK = {s = c99 "seisahduksissa"} ;
+lin seisahdus_NK = {s = d39 "seisahdus"} ;
+lin seisahduttaa_VK = {s = c53A "seisahduttaa"} ;
+lin seisahtaa_VK = {s = c53A "seisahtaa"} ;
+lin seisahtua_VK = {s = c52A "seisahtua"} ;
+lin seisake_NK = {s = d48A "seisake"} ;
+lin seisauksiin_AdvK = {s = c99 "seisauksiin"} ;
+lin seisauksissa_AdvK = {s = c99 "seisauksissa"} ;
+lin seisaus_NK = {s = d39 "seisaus"} ;
+lin seisautella_VK = {s = c67A "seisautella"} ;
+lin seisauttaa_VK = {s = c53A "seisauttaa"} ;
+lin seisauttaja_NK = {s = d10 "seisauttaja"} ;
+lin seiska_NK = {s = d09 "seiska"} ;
+lin seisminen_NK = {s = d38 "seisminen"} ;
+lin seismografi_NK = {s = d05 "seismografi"} ;
+lin seismogrammi_NK = {s = d05 "seismogrammi"} ;
+lin seismologia_NK = {s = d12 "seismologia"} ;
+lin seismologinen_NK = {s = d38 "seismologinen"} ;
+lin seisoa_VK = {s = c52 "seisoa"} ;
+lin seisoalla_AdvK = {s = c99 "seisoalla"} ;
+lin seisoallaan_AdvK = {s = c99 "seisoallaan"} ;
+lin seisoalle_AdvK = {s = c99 "seisoalle"} ;
+lin seisoalleen_AdvK = {s = c99 "seisoalleen"} ;
+lin seisoalta_AdvK = {s = c99 "seisoalta"} ;
+lin seisoaltaan_AdvK = {s = c99 "seisoaltaan"} ;
+lin seisoja_NK = {s = d10 "seisoja"} ;
+lin seisoksia_VK = {s = c61 "seisoksia"} ;
+lin seisomalta_AdvK = {s = c99 "seisomalta"} ;
+lin seisomisaika_NK = {s = d09A "seisomisaika"} ;
+lin seisonta_aika_NK = {s = d09A "seisonta-aika"} ;
+lin seisoskella_VK = {s = c67 "seisoskella"} ;
+lin seisottaa_VK = {s = c53A "seisottaa"} ;
+lin seisotus_NK = {s = d39 "seisotus"} ;
+lin seisova_NK = {s = d10 "seisova"} ;
+lin seisovilla_AdvK = {s = c99 "seisovilla"} ;
+lin seisovillaan_AdvK = {s = c99 "seisovillaan"} ;
+lin seisoville_AdvK = {s = c99 "seisoville"} ;
+lin seisovilleen_AdvK = {s = c99 "seisovilleen"} ;
+lin seisovilta_AdvK = {s = c99 "seisovilta"} ;
+lin seisoviltaan_AdvK = {s = c99 "seisoviltaan"} ;
+lin seista'_VK = {s = c66 "seistä"} ;
+lin seita_NK = {s = d09A "seita"} ;
+lin seiti_NK = {s = d05A "seiti"} ;
+lin seitikko_NK = {s = d04A "seitikko"} ;
+lin seitonen_NK = {s = d38 "seitonen"} ;
+lin seitsemisen_AdvK = {s = c99 "seitsemisen"} ;
+lin seitsema'inen_NK = {s = d38 "seitsemäinen"} ;
+lin seitsema'n_NK = {s = d10 "seitsemän"} ;
+lin seitsema'nnes_NK = {s = d39 "seitsemännes"} ;
+lin seitsema's_NK = {s = d45 "seitsemäs"} ;
+lin seitsema'sti_AdvK = {s = c99 "seitsemästi"} ;
+lin seitsikko_NK = {s = d04A "seitsikko"} ;
+lin seitti_NK = {s = d05A "seitti"} ;
+lin seiva's_NK = {s = d41A "seiväs"} ;
+lin seiva'stys_NK = {s = d39 "seivästys"} ;
+lin seiva'sta'a'_VK = {s = c53 "seivästää"} ;
+lin sekaan_AdvK = {s = c99 "sekaan"} ;
+lin sekaannus_NK = {s = d39 "sekaannus"} ;
+lin sekaannuttaa_VK = {s = c53A "sekaannuttaa"} ;
+lin sekaantua_VK = {s = c52A "sekaantua"} ;
+lin sekainen_AK = {s = d38 "sekainen"} ;
+--+ lin sekaisesti_AdvK = {s = c99 "sekaisesti"} ;
+lin sekaisin_AdvK = {s = c99 "sekaisin"} ;
+lin sekaisuus_NK = {s = d40 "sekaisuus"} ;
+lin sekakoosteisuus_NK = {s = d40 "sekakoosteisuus"} ;
+lin sekalainen_NK = {s = d38 "sekalainen"} ;
+lin sekalaisuus_NK = {s = d40 "sekalaisuus"} ;
+lin sekamelska_NK = {s = d09 "sekamelska"} ;
+lin sekantti_NK = {s = d05A "sekantti"} ;
+--+ lin sekapa'isesti_AdvK = {s = c99 "sekapäisesti"} ;
+lin sekapa'isyys_NK = {s = d40 "sekapäisyys"} ;
+lin sekarengasteinen_NK = {s = d38 "sekarengasteinen"} ;
+lin sekarotuisuus_NK = {s = d40 "sekarotuisuus"} ;
+lin sekasortoinen_AK = {s = d38 "sekasortoinen"} ;
+--+ lin sekasortoisesti_AdvK = {s = c99 "sekasortoisesti"} ;
+lin sekasortoisuus_NK = {s = d40 "sekasortoisuus"} ;
+lin sekauma_NK = {s = d10 "sekauma"} ;
+lin sekautua_VK = {s = c52A "sekautua"} ;
+lin sekautuma_NK = {s = d10 "sekautuma"} ;
+lin sekava_AK = {s = d10 "sekava"} ;
+--+ lin sekavasti_AdvK = {s = c99 "sekavasti"} ;
+lin sekavoittaa_VK = {s = c53A "sekavoittaa"} ;
+lin sekavuus_NK = {s = d40 "sekavuus"} ;
+lin sekeli_NK = {s = d06 "sekeli"} ;
+lin sekka_NK = {s = d09A "sekka"} ;
+lin sekki_NK = {s = d05A "sekki"} ;
+lin _ekki_NK = {s = d05A "šekki"} ;
+lin sekoilija_NK = {s = d12 "sekoilija"} ;
+lin sekoilla_VK = {s = c67 "sekoilla"} ;
+lin sekoilu_NK = {s = d02 "sekoilu"} ;
+lin sekoite_NK = {s = d48A "sekoite"} ;
+lin sekoitella_VK = {s = c67A "sekoitella"} ;
+lin sekoitelma_NK = {s = d10 "sekoitelma"} ;
+lin sekoitin_NK = {s = d33A "sekoitin"} ;
+lin sekoittaa_VK = {s = c53A "sekoittaa"} ;
+lin sekoittaja_NK = {s = d10 "sekoittaja"} ;
+lin sekoitteinen_NK = {s = d38 "sekoitteinen"} ;
+lin sekoittua_VK = {s = c52A "sekoittua"} ;
+lin sekoittuma_NK = {s = d10 "sekoittuma"} ;
+lin sekoitus_NK = {s = d39 "sekoitus"} ;
+lin seksi_NK = {s = d05 "seksi"} ;
+lin seksikkyys_NK = {s = d40 "seksikkyys"} ;
+--+ lin seksikka'a'sti_AdvK = {s = c99 "seksikkäästi"} ;
+lin seksika's_AK = {s = d41A "seksikäs"} ;
+lin seksismi_NK = {s = d05 "seksismi"} ;
+lin seksisti_NK = {s = d05 "seksisti"} ;
+lin seksistinen_NK = {s = d38 "seksistinen"} ;
+lin seksologi_NK = {s = d05 "seksologi"} ;
+lin seksologia_NK = {s = d12 "seksologia"} ;
+lin seksologinen_NK = {s = d38 "seksologinen"} ;
+lin sekstantti_NK = {s = d05A "sekstantti"} ;
+lin sekstetti_NK = {s = d05A "sekstetti"} ;
+lin sekstetto_NK = {s = d01A "sekstetto"} ;
+lin seksti_NK = {s = d05 "seksti"} ;
+lin seksuaalinen_AK = {s = d38 "seksuaalinen"} ;
+--+ lin seksuaalisesti_AdvK = {s = c99 "seksuaalisesti"} ;
+lin seksuaalistua_VK = {s = c52 "seksuaalistua"} ;
+lin seksuaalisuus_NK = {s = d40 "seksuaalisuus"} ;
+lin seksualiteetti_NK = {s = d05A "seksualiteetti"} ;
+lin _ektaus_NK = {s = d39 "šektaus"} ;
+lin sektio_NK = {s = d03 "sektio"} ;
+lin sektori_NK = {s = d06 "sektori"} ;
+lin sekulaari_NK = {s = d05 "sekulaari"} ;
+lin sekulaarinen_NK = {s = d38 "sekulaarinen"} ;
+lin sekulaaristaa_VK = {s = c53 "sekulaaristaa"} ;
+lin sekulaaristua_VK = {s = c52 "sekulaaristua"} ;
+lin sekularisaatio_NK = {s = d03 "sekularisaatio"} ;
+lin sekularismi_NK = {s = d05 "sekularismi"} ;
+lin sekularisoida_VK = {s = c62 "sekularisoida"} ;
+lin sekularisoitua_VK = {s = c52A "sekularisoitua"} ;
+lin sekularisti_NK = {s = d05 "sekularisti"} ;
+lin sekularistinen_AK = {s = d38 "sekularistinen"} ;
+--+ lin sekularistisesti_AdvK = {s = c99 "sekularistisesti"} ;
+lin sekularistisuus_NK = {s = d40 "sekularistisuus"} ;
+lin sekuli_NK = {s = d06 "sekuli"} ;
+lin sekunda_NK = {s = d09 "sekunda"} ;
+lin sekundaari_AK = {s = d05 "sekundaari"} ;
+lin sekundaarinen_AK = {s = d38 "sekundaarinen"} ;
+--+ lin sekundaarisesti_AdvK = {s = c99 "sekundaarisesti"} ;
+--+ lin sekundaaristi_AdvK = {s = c99 "sekundaaristi"} ;
+lin sekundaarisuus_NK = {s = d40 "sekundaarisuus"} ;
+lin sekundaarius_NK = {s = d40 "sekundaarius"} ;
+lin sekundaattori_NK = {s = d06 "sekundaattori"} ;
+lin sekundantti_NK = {s = d05A "sekundantti"} ;
+lin sekunda'a'ri_NK = {s = d05 "sekundääri"} ;
+lin sekunda'a'rinen_NK = {s = d38 "sekundäärinen"} ;
+lin sekunti_NK = {s = d05A "sekunti"} ;
+lin sekuntikaupalla_AdvK = {s = c99 "sekuntikaupalla"} ;
+lin sekuntinen_NK = {s = d38 "sekuntinen"} ;
+lin sekvensoida_VK = {s = c62 "sekvensoida"} ;
+lin sekvenssi_NK = {s = d05 "sekvenssi"} ;
+lin seka'_AdvK = {s = c99 "sekä"} ;
+lin selailla_VK = {s = c67 "selailla"} ;
+lin selailu_NK = {s = d02 "selailu"} ;
+lin selata_VK = {s = c73 "selata"} ;
+lin selaus_NK = {s = d39 "selaus"} ;
+lin seleeni_NK = {s = d06 "seleeni"} ;
+lin selektiivinen_AK = {s = d38 "selektiivinen"} ;
+--+ lin selektiivisesti_AdvK = {s = c99 "selektiivisesti"} ;
+lin selektiivisyys_NK = {s = d40 "selektiivisyys"} ;
+lin selektio_NK = {s = d03 "selektio"} ;
+lin selektiviteetti_NK = {s = d05A "selektiviteetti"} ;
+lin _elfi_NK = {s = d05 "šelfi"} ;
+lin self_made_man_NK = {s = d05 "self-made man"} ;
+lin selibaatti_NK = {s = d05A "selibaatti"} ;
+lin selikka'in_AdvK = {s = c99 "selikkäin"} ;
+lin selin_AdvK = {s = c99 "selin"} ;
+lin selite_NK = {s = d48A "selite"} ;
+lin selitella'_VK = {s = c67A "selitellä"} ;
+lin selitelma'_NK = {s = d10 "selitelmä"} ;
+lin selitteinen_NK = {s = d38 "selitteinen"} ;
+lin selittely_NK = {s = d02 "selittely"} ;
+lin selittya'_VK = {s = c52A "selittyä"} ;
+lin selitta'in_AdvK = {s = c99 "selittäin"} ;
+lin selitta'ja'_NK = {s = d10 "selittäjä"} ;
+lin selitta'ma'tto'myys_NK = {s = d40 "selittämättömyys"} ;
+lin selitta'ma'tto'ma'sti_AdvK = {s = c99 "selittämättömästi"} ;
+lin selitta'ma'to'n_NK = {s = d34A "selittämätön"} ;
+lin selitta'a'_VK = {s = c53A "selittää"} ;
+lin selitys_NK = {s = d39 "selitys"} ;
+lin selita'_VK = {s = c75A "selitä"} ;
+lin selja_NK = {s = d09 "selja"} ;
+lin seljanka_NK = {s = d09 "seljanka"} ;
+lin seljeta'_VK = {s = c72A "seljetä"} ;
+lin selkeennytta'a'_VK = {s = c53A "selkeennyttää"} ;
+lin selkeentya'_VK = {s = c52A "selkeentyä"} ;
+lin selkeys_NK = {s = d40 "selkeys"} ;
+lin selkeytin_NK = {s = d33A "selkeytin"} ;
+lin selkeytta'a'_VK = {s = c53A "selkeyttää"} ;
+lin selkeytyma'to'n_NK = {s = d34A "selkeytymätön"} ;
+lin selkeytys_NK = {s = d39 "selkeytys"} ;
+lin selkeytya'_VK = {s = c52A "selkeytyä"} ;
+lin selkea'_AK = {s = d15 "selkeä"} ;
+--+ lin selkea'sti_AdvK = {s = c99 "selkeästi"} ;
+lin selkiinnytta'a'_VK = {s = c53A "selkiinnyttää"} ;
+lin selkiintya'_VK = {s = c52A "selkiintyä"} ;
+lin selkis_AdvK = {s = c99 "selkis"} ;
+lin selkiytta'a'_VK = {s = c53A "selkiyttää"} ;
+lin selkiytyma'to'n_NK = {s = d34A "selkiytymätön"} ;
+lin selkiytys_NK = {s = d39 "selkiytys"} ;
+lin selkiytya'_VK = {s = c52A "selkiytyä"} ;
+lin selkkaus_NK = {s = d39 "selkkaus"} ;
+lin selko_NK = {s = d01A "selko"} ;
+lin selkoinen_NK = {s = d38 "selkoinen"} ;
+lin selkonen_NK = {s = d38 "selkonen"} ;
+lin selkosen_AdvK = {s = c99 "selkosen"} ;
+lin selka'_NK = {s = d10A "selkä"} ;
+lin selka'in_NK = {s = d33 "selkäin"} ;
+lin selka'inen_AK = {s = d38 "selkäinen"} ;
+--+ lin selka'isesti_AdvK = {s = c99 "selkäisesti"} ;
+lin selka'mys_NK = {s = d39 "selkämys"} ;
+lin selka'nojallinen_NK = {s = d38 "selkänojallinen"} ;
+lin selka'rangaton_NK = {s = d34A "selkärangaton"} ;
+lin selka'rangattomasti_AdvK = {s = c99 "selkärangattomasti"} ;
+lin selka'rangattomuus_NK = {s = d40 "selkärangattomuus"} ;
+lin selka'rankainen_NK = {s = d38 "selkärankainen"} ;
+lin sellainen_NK = {s = d38 "sellainen"} ;
+lin sellakka_NK = {s = d14A "sellakka"} ;
+lin selleri_NK = {s = d06 "selleri"} ;
+lin selli_NK = {s = d05 "selli"} ;
+lin sellisti_NK = {s = d05 "sellisti"} ;
+lin sellistinen_NK = {s = d38 "sellistinen"} ;
+lin sello_NK = {s = d01 "sello"} ;
+lin sellofaani_NK = {s = d05 "sellofaani"} ;
+lin sellu_NK = {s = d01 "sellu"} ;
+lin selluliitti_NK = {s = d05A "selluliitti"} ;
+lin selluloidi_NK = {s = d05 "selluloidi"} ;
+lin selluloosa_NK = {s = d10 "selluloosa"} ;
+lin selostaa_VK = {s = c53 "selostaa"} ;
+lin selostaja_NK = {s = d10 "selostaja"} ;
+lin selostamo_NK = {s = d02 "selostamo"} ;
+lin seloste_NK = {s = d48 "seloste"} ;
+lin selostus_NK = {s = d39 "selostus"} ;
+lin selstoffi_NK = {s = d05 "selstoffi"} ;
+lin selus_NK = {s = d39 "selus"} ;
+lin selusta_NK = {s = d13 "selusta"} ;
+lin selustainen_NK = {s = d38 "selustainen"} ;
+lin selustin_NK = {s = d33 "selustin"} ;
+lin selvennys_NK = {s = d39 "selvennys"} ;
+lin selvenno's_NK = {s = d39 "selvennös"} ;
+lin selventya'_VK = {s = c52A "selventyä"} ;
+lin selventa'a'_VK = {s = c54A "selventää"} ;
+lin selveta'_VK = {s = c72 "selvetä"} ;
+lin selville_AdvK = {s = c99 "selville"} ;
+lin selvilla'_AdvK = {s = c99 "selvillä"} ;
+lin selvitella'_VK = {s = c67A "selvitellä"} ;
+lin selvittely_NK = {s = d02 "selvittely"} ;
+lin selvitta'ja'_NK = {s = d10 "selvittäjä"} ;
+lin selvitta'ma'to'n_NK = {s = d34A "selvittämätön"} ;
+lin selvitta'a'_VK = {s = c53A "selvittää"} ;
+lin selvitys_NK = {s = d39 "selvitys"} ;
+lin selvitytta'a'_VK = {s = c53A "selvityttää"} ;
+lin selvita'_VK = {s = c75 "selvitä"} ;
+lin selviytyja'_NK = {s = d10 "selviytyjä"} ;
+lin selviytya'_VK = {s = c52A "selviytyä"} ;
+lin selvio'_NK = {s = d03 "selviö"} ;
+lin selvyys_NK = {s = d40 "selvyys"} ;
+lin selva'_AK = {s = d10 "selvä"} ;
+--+ lin selva'kielisesti_AdvK = {s = c99 "selväkielisesti"} ;
+--+ lin selva'na'ko'isesti_AdvK = {s = c99 "selvänäköisesti"} ;
+--+ lin selva'piirteisesti_AdvK = {s = c99 "selväpiirteisesti"} ;
+lin selva'piirteisyys_NK = {s = d40 "selväpiirteisyys"} ;
+--+ lin selva'sanaisesti_AdvK = {s = c99 "selväsanaisesti"} ;
+--+ lin selva'sti_AdvK = {s = c99 "selvästi"} ;
+lin selva'ta'_VK = {s = c73 "selvätä"} ;
+lin selys_NK = {s = d39 "selys"} ;
+lin sela'ke_NK = {s = d48A "seläke"} ;
+lin sela'kka'in_AdvK = {s = c99 "seläkkäin"} ;
+lin sela'lleen_AdvK = {s = c99 "selälleen"} ;
+lin sela'lla'a'n_AdvK = {s = c99 "selällään"} ;
+lin sela'nne_NK = {s = d48A "selänne"} ;
+lin sela'nteinen_NK = {s = d38 "selänteinen"} ;
+lin sela'tta'a'_VK = {s = c53A "selättää"} ;
+lin sela'tyksin_AdvK = {s = c99 "selätyksin"} ;
+lin sela'tys_NK = {s = d39 "selätys"} ;
+lin sela'tysten_AdvK = {s = c99 "selätysten"} ;
+lin sela'to'n_NK = {s = d34A "selätön"} ;
+lin semafori_NK = {s = d05 "semafori"} ;
+lin semantiikka_NK = {s = d09A "semantiikka"} ;
+lin semanttinen_NK = {s = d38 "semanttinen"} ;
+lin sembra_NK = {s = d09 "sembra"} ;
+lin sementoida_VK = {s = c62 "sementoida"} ;
+lin sementointi_NK = {s = d05A "sementointi"} ;
+lin sementti_NK = {s = d05A "sementti"} ;
+lin semi_NK = {s = d05 "semi"} ;
+lin seminaari_NK = {s = d05 "seminaari"} ;
+lin seminologi_NK = {s = d05 "seminologi"} ;
+lin semiootikko_NK = {s = d01A "semiootikko"} ;
+lin semioottinen_NK = {s = d38 "semioottinen"} ;
+lin semiotiikka_NK = {s = d09A "semiotiikka"} ;
+lin semminkin_AdvK = {s = c99 "semminkin"} ;
+lin semminka'a'n_AdvK = {s = c99 "semminkään"} ;
+lin semmoinen_NK = {s = d38 "semmoinen"} ;
+lin sen_AdvK = {s = c99 "sen"} ;
+lin senaatti_NK = {s = d05A "senaatti"} ;
+lin senaattori_NK = {s = d06 "senaattori"} ;
+lin seniili_NK = {s = d06 "seniili"} ;
+lin seniiliys_NK = {s = d40 "seniiliys"} ;
+lin seniliteetti_NK = {s = d05A "seniliteetti"} ;
+lin senior_NK = {s = d05 "senior"} ;
+lin seniori_NK = {s = d06 "seniori"} ;
+lin senkin_AdvK = {s = c99 "senkin"} ;
+lin senkka_NK = {s = d09A "senkka"} ;
+lin senkki_NK = {s = d05A "senkki"} ;
+lin sensaatio_NK = {s = d03 "sensaatio"} ;
+lin sen_sijaan_AdvK = {s = c99 "sen sijaan"} ;
+lin sensitiivinen_AK = {s = d38 "sensitiivinen"} ;
+--+ lin sensitiivisesti_AdvK = {s = c99 "sensitiivisesti"} ;
+lin sensitiivisyys_NK = {s = d40 "sensitiivisyys"} ;
+lin sensori_NK = {s = d06 "sensori"} ;
+lin sensorinen_NK = {s = d38 "sensorinen"} ;
+lin senssit_NK = {s = d05 "senssit"} ;
+lin sensuaalinen_NK = {s = d38 "sensuaalinen"} ;
+lin sensuaalisuus_NK = {s = d40 "sensuaalisuus"} ;
+lin sensualismi_NK = {s = d05 "sensualismi"} ;
+lin sensuelli_NK = {s = d05 "sensuelli"} ;
+lin sensuroida_VK = {s = c62 "sensuroida"} ;
+lin sensuroimaton_NK = {s = d34A "sensuroimaton"} ;
+lin sensurointi_NK = {s = d05A "sensurointi"} ;
+lin sen_takia_AdvK = {s = c99 "sen takia"} ;
+lin sentata_VK = {s = c73A "sentata"} ;
+lin sentimentaali_NK = {s = d05 "sentimentaali"} ;
+lin sentimentaalinen_AK = {s = d38 "sentimentaalinen"} ;
+--+ lin sentimentaalisesti_AdvK = {s = c99 "sentimentaalisesti"} ;
+lin sentimentaalisuus_NK = {s = d40 "sentimentaalisuus"} ;
+lin sentraalisantra_NK = {s = d09 "sentraalisantra"} ;
+lin sentralismi_NK = {s = d05 "sentralismi"} ;
+lin sentralisoida_VK = {s = c62 "sentralisoida"} ;
+lin sentralisointi_NK = {s = d05A "sentralisointi"} ;
+lin sentrifugi_NK = {s = d05 "sentrifugi"} ;
+lin sentrifugoida_VK = {s = c62 "sentrifugoida"} ;
+lin senttari_NK = {s = d06 "senttari"} ;
+lin senttaus_NK = {s = d39 "senttaus"} ;
+lin sentteri_NK = {s = d06 "sentteri"} ;
+lin sentti_NK = {s = d05A "sentti"} ;
+lin senttinen_NK = {s = d38 "senttinen"} ;
+lin senturia_NK = {s = d12 "senturia"} ;
+lin senturio_NK = {s = d03 "senturio"} ;
+lin sen_ta'hden_AdvK = {s = c99 "sen tähden"} ;
+lin senta'a'n_AdvK = {s = c99 "sentään"} ;
+lin sen_verran_AdvK = {s = c99 "sen verran"} ;
+lin sen_vuoksi_AdvK = {s = c99 "sen vuoksi"} ;
+lin seos_NK = {s = d39 "seos"} ;
+lin seostaa_VK = {s = c53 "seostaa"} ;
+lin seoste_NK = {s = d48 "seoste"} ;
+lin seostus_NK = {s = d39 "seostus"} ;
+lin seota_VK = {s = c74A "seota"} ;
+lin sepalus_NK = {s = d39 "sepalus"} ;
+lin separaattori_NK = {s = d06 "separaattori"} ;
+lin separatismi_NK = {s = d05 "separatismi"} ;
+lin separatisti_NK = {s = d05 "separatisti"} ;
+lin separatistinen_AK = {s = d38 "separatistinen"} ;
+--+ lin separatistisesti_AdvK = {s = c99 "separatistisesti"} ;
+lin separatistisuus_NK = {s = d40 "separatistisuus"} ;
+lin separoida_VK = {s = c62 "separoida"} ;
+lin separointi_NK = {s = d05A "separointi"} ;
+lin sepeli_NK = {s = d06 "sepeli"} ;
+lin sepelikko'_NK = {s = d04A "sepelikkö"} ;
+lin sepellys_NK = {s = d39 "sepellys"} ;
+lin sepelo'ida'_VK = {s = c62 "sepelöidä"} ;
+lin sepelo'inti_NK = {s = d05A "sepelöinti"} ;
+lin sepite_NK = {s = d48A "sepite"} ;
+lin sepitella'_VK = {s = c67A "sepitellä"} ;
+lin sepitelma'_NK = {s = d10 "sepitelmä"} ;
+lin sepitteellinen_NK = {s = d38 "sepitteellinen"} ;
+lin sepitteinen_NK = {s = d38 "sepitteinen"} ;
+lin sepittely_NK = {s = d02 "sepittely"} ;
+lin sepitta'ja'_NK = {s = d10 "sepittäjä"} ;
+lin sepitta'a'_VK = {s = c53A "sepittää"} ;
+lin sepitys_NK = {s = d39 "sepitys"} ;
+lin sepiva'_NK = {s = d10 "sepivä"} ;
+lin seppel_NK = {s = d49 "seppel"} ;
+lin seppele_NK = {s = d49 "seppele"} ;
+--? lin seppeleensitojaiset_NK = {s = d38 "seppeleensitojaiset"} ;
+lin seppeleensitojatar_NK = {s = d32A "seppeleensitojatar"} ;
+lin seppelo'ida'_VK = {s = c68 "seppelöidä"} ;
+lin seppelo'inti_NK = {s = d05A "seppelöinti"} ;
+lin seppo_NK = {s = d01A "seppo"} ;
+lin sepposen_AdvK = {s = c99 "sepposen"} ;
+lin seppa'_NK = {s = d10A "seppä"} ;
+lin sepsis_NK = {s = d39 "sepsis"} ;
+lin septetti_NK = {s = d05A "septetti"} ;
+lin septetto_NK = {s = d01A "septetto"} ;
+lin septimi_NK = {s = d05 "septimi"} ;
+lin septinen_NK = {s = d38 "septinen"} ;
+lin sepustaa_VK = {s = c53 "sepustaa"} ;
+lin sepustus_NK = {s = d39 "sepustus"} ;
+lin serbetti_NK = {s = d05A "serbetti"} ;
+lin serbi_NK = {s = d05 "serbi"} ;
+lin seremonia_NK = {s = d12 "seremonia"} ;
+lin seremoniallinen_AK = {s = d38 "seremoniallinen"} ;
+--+ lin seremoniallisesti_AdvK = {s = c99 "seremoniallisesti"} ;
+lin seremoniallisuus_NK = {s = d40 "seremoniallisuus"} ;
+lin serenadi_NK = {s = d05 "serenadi"} ;
+lin seriffi_NK = {s = d05 "seriffi"} ;
+lin serigrafia_NK = {s = d12 "serigrafia"} ;
+lin serkku_NK = {s = d01A "serkku"} ;
+lin serkkuus_NK = {s = d40 "serkkuus"} ;
+lin serkus_NK = {s = d39 "serkus"} ;
+lin sermi_NK = {s = d05 "sermi"} ;
+lin serologi_NK = {s = d05 "serologi"} ;
+lin serologia_NK = {s = d12 "serologia"} ;
+lin serologinen_NK = {s = d38 "serologinen"} ;
+lin serotoniini_NK = {s = d05 "serotoniini"} ;
+lin serpentiini_NK = {s = d05 "serpentiini"} ;
+lin serri_NK = {s = d05 "serri"} ;
+lin sertifikaatti_NK = {s = d05A "sertifikaatti"} ;
+lin sertifioida_VK = {s = c62 "sertifioida"} ;
+lin sertifiointi_NK = {s = d05A "sertifiointi"} ;
+lin sertinki_NK = {s = d05A "sertinki"} ;
+lin serveerata_VK = {s = c73 "serveerata"} ;
+lin servelaati_NK = {s = d05 "servelaati"} ;
+lin serveri_NK = {s = d06 "serveri"} ;
+lin servietti_NK = {s = d05A "servietti"} ;
+lin serviisi_NK = {s = d06 "serviisi"} ;
+lin servo_NK = {s = d01 "servo"} ;
+lin seslonki_NK = {s = d05A "seslonki"} ;
+lin sesonki_NK = {s = d05A "sesonki"} ;
+lin sessio_NK = {s = d03 "sessio"} ;
+lin sestoa_VK = {s = c52 "sestoa"} ;
+lin sesuura_NK = {s = d13 "sesuura"} ;
+lin seteli_NK = {s = d06 "seteli"} ;
+lin setelisto'_NK = {s = d01 "setelistö"} ;
+lin setlementti_NK = {s = d05A "setlementti"} ;
+lin setri_NK = {s = d05 "setri"} ;
+lin setsuuri_NK = {s = d06 "setsuuri"} ;
+lin setteri_NK = {s = d06 "setteri"} ;
+lin setti_NK = {s = d05A "setti"} ;
+lin setvinta'_NK = {s = d09A "setvintä"} ;
+lin setvia'_VK = {s = c61 "setviä"} ;
+lin seta'_NK = {s = d10A "setä"} ;
+lin seta'ma'inen_AK = {s = d38 "setämäinen"} ;
+--+ lin seta'ma'isesti_AdvK = {s = c99 "setämäisesti"} ;
+lin seta'ma'isyys_NK = {s = d40 "setämäisyys"} ;
+lin seuduilla_AdvK = {s = c99 "seuduilla"} ;
+lin seudulla_AdvK = {s = c99 "seudulla"} ;
+lin seudullinen_AK = {s = d38 "seudullinen"} ;
+--+ lin seudullisesti_AdvK = {s = c99 "seudullisesti"} ;
+lin seula_NK = {s = d09 "seula"} ;
+lin seuloa_VK = {s = c52 "seuloa"} ;
+lin seulonta_NK = {s = d09A "seulonta"} ;
+lin seulos_NK = {s = d39 "seulos"} ;
+lin seuloutua_VK = {s = c52A "seuloutua"} ;
+lin seura_NK = {s = d09 "seura"} ;
+lin seuraaja_NK = {s = d10 "seuraaja"} ;
+lin seuraamus_NK = {s = d39 "seuraamus"} ;
+lin seuraava_AK = {s = d10 "seuraava"} ;
+lin seuraavanlainen_NK = {s = d38 "seuraavanlainen"} ;
+--+ lin seuraavasti_AdvK = {s = c99 "seuraavasti"} ;
+lin seurailija_NK = {s = d12 "seurailija"} ;
+lin seurailla_VK = {s = c67 "seurailla"} ;
+lin seurailu_NK = {s = d02 "seurailu"} ;
+lin seurallinen_NK = {s = d38 "seurallinen"} ;
+lin seurallisuus_NK = {s = d40 "seurallisuus"} ;
+--+ lin seuranhaluisesti_AdvK = {s = c99 "seuranhaluisesti"} ;
+lin seurannainen_NK = {s = d38 "seurannainen"} ;
+lin seuranta_NK = {s = d09A "seuranta"} ;
+lin seurata_VK = {s = c73 "seurata"} ;
+lin seuraus_NK = {s = d39 "seuraus"} ;
+lin seurue_NK = {s = d48 "seurue"} ;
+lin seurustella_VK = {s = c67 "seurustella"} ;
+lin seurustelu_NK = {s = d02 "seurustelu"} ;
+lin seurusteluaika_NK = {s = d09A "seurusteluaika"} ;
+lin seuruu_NK = {s = d17 "seuruu"} ;
+lin seutu_NK = {s = d01A "seutu"} ;
+lin seutuvilla_AdvK = {s = c99 "seutuvilla"} ;
+lin seutuville_AdvK = {s = c99 "seutuville"} ;
+lin seutuvilta_AdvK = {s = c99 "seutuvilta"} ;
+lin seviotti_NK = {s = d05A "seviotti"} ;
+lin sfinksi_NK = {s = d05 "sfinksi"} ;
+lin sfa'a'ri_NK = {s = d05 "sfääri"} ;
+lin shakki_NK = {s = d05A "shakki"} ;
+lin sherry_NK = {s = d01 "sherry"} ;
+lin shetlanninvilla_NK = {s = d09 "shetlanninvilla"} ;
+lin shop_NK = {s = d05 "shop"} ;
+lin shopata_VK = {s = c73A "shopata"} ;
+lin shoppailla_VK = {s = c67 "shoppailla"} ;
+lin shoppailu_NK = {s = d02 "shoppailu"} ;
+lin shortsit_NK = {s = d05 "shortsit"} ;
+lin show_NK = {s = d22 "show"} ;
+lin sial_NK = {s = d05 "sial"} ;
+lin sialma_NK = {s = d09 "sialma"} ;
+lin siamilainen_NK = {s = d38 "siamilainen"} ;
+lin side_NK = {s = d48A "side"} ;
+lin sidoksiin_AdvK = {s = c99 "sidoksiin"} ;
+lin sidoksinen_NK = {s = d38 "sidoksinen"} ;
+lin sidoksissa_AdvK = {s = c99 "sidoksissa"} ;
+lin sidonnainen_NK = {s = d38 "sidonnainen"} ;
+lin sidonnaisuus_NK = {s = d40 "sidonnaisuus"} ;
+lin sidonta_NK = {s = d09A "sidonta"} ;
+lin sidos_NK = {s = d39 "sidos"} ;
+lin sidottaa_VK = {s = c53A "sidottaa"} ;
+lin sidotus_NK = {s = d39 "sidotus"} ;
+lin siedetta'vyys_NK = {s = d40 "siedettävyys"} ;
+lin siedetta'va'_AK = {s = d10 "siedettävä"} ;
+--+ lin siedetta'va'sti_AdvK = {s = c99 "siedettävästi"} ;
+lin siekailematon_NK = {s = d34A "siekailematon"} ;
+lin siekailematta_AdvK = {s = c99 "siekailematta"} ;
+lin siekailemattomasti_AdvK = {s = c99 "siekailemattomasti"} ;
+lin siekailemattomuus_NK = {s = d40 "siekailemattomuus"} ;
+lin siekailla_VK = {s = c67 "siekailla"} ;
+lin sielikko'_NK = {s = d04A "sielikkö"} ;
+lin siella'_AdvK = {s = c99 "siellä"} ;
+lin sielta'_AdvK = {s = c99 "sieltä"} ;
+lin sielu_NK = {s = d01 "sielu"} ;
+lin sieluinen_NK = {s = d38 "sieluinen"} ;
+lin sieluisuus_NK = {s = d40 "sieluisuus"} ;
+lin sielukas_AK = {s = d41A "sielukas"} ;
+--+ lin sielukkaasti_AdvK = {s = c99 "sielukkaasti"} ;
+lin sielukkuus_NK = {s = d40 "sielukkuus"} ;
+lin sielullinen_AK = {s = d38 "sielullinen"} ;
+--+ lin sielullisesti_AdvK = {s = c99 "sielullisesti"} ;
+lin sielullistaa_VK = {s = c53 "sielullistaa"} ;
+lin sieluton_NK = {s = d34A "sieluton"} ;
+lin sieluttaa_VK = {s = c53A "sieluttaa"} ;
+lin sielutus_NK = {s = d39 "sielutus"} ;
+lin siemaista_VK = {s = c66 "siemaista"} ;
+lin siemaisu_NK = {s = d02 "siemaisu"} ;
+lin siemaus_NK = {s = d39 "siemaus"} ;
+lin siemen_NK = {s = d32 "siemen"} ;
+lin siemenellinen_NK = {s = d38 "siemenellinen"} ;
+lin siemeneto'n_NK = {s = d34A "siemenetön"} ;
+lin siemeninen_NK = {s = d38 "siemeninen"} ;
+lin siemennys_NK = {s = d39 "siemennys"} ;
+lin siementya'_VK = {s = c52A "siementyä"} ;
+lin siementa'ja'_NK = {s = d10 "siementäjä"} ;
+lin siementa'a'_VK = {s = c54A "siementää"} ;
+lin sienestys_NK = {s = d39 "sienestys"} ;
+lin sienesta'ja'_NK = {s = d10 "sienestäjä"} ;
+lin sienesta'a'_VK = {s = c53 "sienestää"} ;
+lin sienettya'_VK = {s = c52A "sienettyä"} ;
+lin sieni_NK = {s = d26 "sieni"} ;
+lin sieniaika_NK = {s = d09A "sieniaika"} ;
+lin sienijuuri_NK = {s = d26 "sienijuuri"} ;
+lin sienima'inen_NK = {s = d38 "sienimäinen"} ;
+lin sienimo'_NK = {s = d02 "sienimö"} ;
+lin siepata_VK = {s = c73A "siepata"} ;
+lin sieppaaja_NK = {s = d10 "sieppaaja"} ;
+lin sieppari_NK = {s = d06 "sieppari"} ;
+lin sieppaus_NK = {s = d39 "sieppaus"} ;
+lin sieppo_NK = {s = d01A "sieppo"} ;
+lin siera_NK = {s = d09 "siera"} ;
+lin sieraiminen_NK = {s = d38 "sieraiminen"} ;
+lin sierain_NK = {s = d33 "sierain"} ;
+lin sierettyma'_NK = {s = d10 "sierettymä"} ;
+lin sierettya'_VK = {s = c52A "sierettyä"} ;
+lin sieretta'a'_VK = {s = c53A "sierettää"} ;
+lin sierottua_VK = {s = c52A "sierottua"} ;
+lin sierottuma_NK = {s = d10 "sierottuma"} ;
+lin siesta_NK = {s = d09 "siesta"} ;
+lin sieto_NK = {s = d01A "sieto"} ;
+lin sietoinen_NK = {s = d38 "sietoinen"} ;
+lin sieta'_1_VK = {s = c72A "sietä"} ;
+lin sieta'_2_VK = {s = c74A "sietä"} ;
+lin sieta'ma'tto'myys_NK = {s = d40 "sietämättömyys"} ;
+lin sieta'ma'tto'ma'sti_AdvK = {s = c99 "sietämättömästi"} ;
+lin sieta'ma'to'n_NK = {s = d34A "sietämätön"} ;
+lin sieta'a'_VK = {s = c53A "sietää"} ;
+lin sievennys_NK = {s = d39 "sievennys"} ;
+lin sieventya'_VK = {s = c52A "sieventyä"} ;
+lin sieventa'a'_VK = {s = c54A "sieventää"} ;
+lin sieveta'_VK = {s = c72 "sievetä"} ;
+lin sievikki_NK = {s = d05A "sievikki"} ;
+lin sievistelema'to'n_NK = {s = d34A "sievistelemätön"} ;
+lin sievistelija'_NK = {s = d12 "sievistelijä"} ;
+lin sievistella'_VK = {s = c67 "sievistellä"} ;
+lin sievistely_NK = {s = d02 "sievistely"} ;
+lin sievistya'_VK = {s = c52 "sievistyä"} ;
+lin sievista'a'_VK = {s = c53 "sievistää"} ;
+lin sievoinen_NK = {s = d38 "sievoinen"} ;
+lin sievyys_NK = {s = d40 "sievyys"} ;
+lin sieva'_AK = {s = d10 "sievä"} ;
+--+ lin sieva'sti_AdvK = {s = c99 "sievästi"} ;
+lin sifoni_NK = {s = d05 "sifoni"} ;
+lin sifonki_NK = {s = d05A "sifonki"} ;
+lin sigarillo_NK = {s = d01 "sigarillo"} ;
+lin sightseeing_NK = {s = d05 "sightseeing"} ;
+lin sigma_NK = {s = d09 "sigma"} ;
+lin signaali_NK = {s = d06 "signaali"} ;
+lin signeerata_VK = {s = c73 "signeerata"} ;
+lin signeeraus_NK = {s = d39 "signeeraus"} ;
+lin signumi_NK = {s = d06 "signumi"} ;
+lin sihahdella_VK = {s = c67A "sihahdella"} ;
+lin sihahdus_NK = {s = d39 "sihahdus"} ;
+lin sihahtaa_VK = {s = c53A "sihahtaa"} ;
+lin sihaus_NK = {s = d39 "sihaus"} ;
+lin sihauttaa_VK = {s = c53A "sihauttaa"} ;
+lin sihdata_1_VK = {s = c73A "sihdata"} ;
+lin sihdata_2_VK = {s = c73A "sihdata"} ;
+lin sihina'_NK = {s = d12 "sihinä"} ;
+lin sihista'_VK = {s = c66 "sihistä"} ;
+lin sihtailla_VK = {s = c67 "sihtailla"} ;
+lin sihtailu_NK = {s = d02 "sihtailu"} ;
+lin sihtaus_1_NK = {s = d39 "sihtaus"} ;
+lin sihtaus_2_NK = {s = d39 "sihtaus"} ;
+lin sihteeri_NK = {s = d06 "sihteeri"} ;
+lin sihteerikko'_NK = {s = d04A "sihteerikkö"} ;
+lin sihteeristo'_NK = {s = d01 "sihteeristö"} ;
+lin sihteeriys_NK = {s = d40 "sihteeriys"} ;
+lin sihti_1_NK = {s = d05A "sihti"} ;
+lin sihti_2_NK = {s = d05A "sihti"} ;
+lin _iialainen_NK = {s = d38 "šiialainen"} ;
+lin _iialaisuus_NK = {s = d40 "šiialaisuus"} ;
+lin siideri_NK = {s = d06 "siideri"} ;
+lin siihen_AdvK = {s = c99 "siihen"} ;
+lin siihenastinen_NK = {s = d38 "siihenastinen"} ;
+lin siika_NK = {s = d09A "siika"} ;
+lin siilata_VK = {s = c73 "siilata"} ;
+lin siilautua_VK = {s = c52A "siilautua"} ;
+lin siili_1_NK = {s = d05 "siili"} ;
+lin siili_2_NK = {s = d05 "siili"} ;
+lin siilo_NK = {s = d01 "siilo"} ;
+lin siima_NK = {s = d09 "siima"} ;
+lin siimes_NK = {s = d39 "siimes"} ;
+lin siinnella'_VK = {s = c67A "siinnellä"} ;
+lin siinto_NK = {s = d01A "siinto"} ;
+lin siintoinen_NK = {s = d38 "siintoinen"} ;
+lin siinta'a'_VK = {s = c54A "siintää"} ;
+lin siina'_AdvK = {s = c99 "siinä"} ;
+lin siipeilija'_NK = {s = d12 "siipeilijä"} ;
+lin siipeilla'_VK = {s = c67 "siipeillä"} ;
+lin siipi_NK = {s = d07A "siipi"} ;
+lin siipinen_NK = {s = d38 "siipinen"} ;
+lin siipirikkoinen_NK = {s = d38 "siipirikkoinen"} ;
+lin siippa_1_NK = {s = d09A "siippa"} ;
+lin siippa_2_NK = {s = d09A "siippa"} ;
+lin siira_NK = {s = d09 "siira"} ;
+lin siirappi_NK = {s = d05A "siirappi"} ;
+lin siirappinen_NK = {s = d38 "siirappinen"} ;
+lin siirottaa_VK = {s = c53A "siirottaa"} ;
+lin siirre_NK = {s = d48A "siirre"} ;
+lin siirrella'_VK = {s = c67A "siirrellä"} ;
+lin siirrin_NK = {s = d33A "siirrin"} ;
+lin siirros_NK = {s = d39 "siirros"} ;
+lin siirrostaa_VK = {s = c53 "siirrostaa"} ;
+lin siirrostus_NK = {s = d39 "siirrostus"} ;
+lin siirrynta'_NK = {s = d09A "siirryntä"} ;
+lin siirra'hta'a'_VK = {s = c53A "siirrähtää"} ;
+lin siirra'nna'inen_NK = {s = d38 "siirrännäinen"} ;
+lin siirra'nta'_NK = {s = d09A "siirräntä"} ;
+lin siirra'tta'a'_VK = {s = c53A "siirrättää"} ;
+lin siirtely_NK = {s = d02 "siirtely"} ;
+lin siirto_NK = {s = d01A "siirto"} ;
+lin siirtogeeninen_NK = {s = d38 "siirtogeeninen"} ;
+lin siirtoinen_NK = {s = d38 "siirtoinen"} ;
+lin siirtokuormaus_NK = {s = d39 "siirtokuormaus"} ;
+lin siirtola_NK = {s = d12 "siirtola"} ;
+lin siirtolaisuus_NK = {s = d40 "siirtolaisuus"} ;
+lin siirtyilla'_VK = {s = c67 "siirtyillä"} ;
+lin siirtyma'_NK = {s = d10 "siirtymä"} ;
+lin siirtyma'aika_NK = {s = d09A "siirtymäaika"} ;
+lin siirtya'_VK = {s = c52A "siirtyä"} ;
+lin siirta'ja'_NK = {s = d10 "siirtäjä"} ;
+lin siirta'ma'to'n_NK = {s = d34A "siirtämätön"} ;
+lin siirta'a'_VK = {s = c54A "siirtää"} ;
+lin siis_AdvK = {s = c99 "siis"} ;
+lin siistata_VK = {s = c73 "siistata"} ;
+lin siisteys_NK = {s = d40 "siisteys"} ;
+lin siisti_AK = {s = d05 "siisti"} ;
+--+ lin siististi_AdvK = {s = c99 "siististi"} ;
+lin siistiytya'_VK = {s = c52A "siistiytyä"} ;
+lin siistia'_VK = {s = c61 "siistiä"} ;
+lin siitake_NK = {s = d48A "siitake"} ;
+lin siitin_NK = {s = d33A "siitin"} ;
+lin siitos_NK = {s = d39 "siitos"} ;
+lin siittio'_NK = {s = d03 "siittiö"} ;
+lin siittoinen_NK = {s = d38 "siittoinen"} ;
+lin siittola_NK = {s = d12 "siittola"} ;
+lin siitta'ja'_NK = {s = d10 "siittäjä"} ;
+lin siitta'a'_VK = {s = c53A "siittää"} ;
+lin siita'_1_VK = {s = c75A "siitä"} ;
+lin siita'_2_AdvK = {s = c99 "siitä"} ;
+lin siiveke_NK = {s = d48A "siiveke"} ;
+lin siiveka's_NK = {s = d41A "siivekäs"} ;
+lin siivellinen_NK = {s = d38 "siivellinen"} ;
+lin siiveto'n_NK = {s = d34A "siivetön"} ;
+lin siivila'_NK = {s = d13 "siivilä"} ;
+lin siivilo'ida'_VK = {s = c62 "siivilöidä"} ;
+lin siivilo'inti_NK = {s = d05A "siivilöinti"} ;
+lin siivilo'itya'_VK = {s = c52A "siivilöityä"} ;
+lin siivittya'_VK = {s = c52A "siivittyä"} ;
+lin siivitta'ja'_NK = {s = d10 "siivittäjä"} ;
+lin siivitta'a'_VK = {s = c53A "siivittää"} ;
+lin siivo_AK = {s = d01 "siivo"} ;
+lin siivolla_AdvK = {s = c99 "siivolla"} ;
+--+ lin siivosti_AdvK = {s = c99 "siivosti"} ;
+lin siivota_VK = {s = c74 "siivota"} ;
+lin siivoton_NK = {s = d34A "siivoton"} ;
+lin siivottomasti_AdvK = {s = c99 "siivottomasti"} ;
+lin siivottomuus_NK = {s = d40 "siivottomuus"} ;
+lin siivous_NK = {s = d40 "siivous"} ;
+lin siivu_NK = {s = d01 "siivu"} ;
+lin siivuttaa_VK = {s = c53A "siivuttaa"} ;
+lin sija_NK = {s = d09 "sija"} ;
+lin sijainen_NK = {s = d38 "sijainen"} ;
+lin sijainti_NK = {s = d05A "sijainti"} ;
+lin sijaisuus_NK = {s = d40 "sijaisuus"} ;
+lin sijaita_VK = {s = c69 "sijaita"} ;
+lin sijata_VK = {s = c73 "sijata"} ;
+lin sijaton_NK = {s = d34A "sijaton"} ;
+lin sijaus_NK = {s = d39 "sijaus"} ;
+lin sijoilla_AdvK = {s = c99 "sijoilla"} ;
+lin sijoillaan_AdvK = {s = c99 "sijoillaan"} ;
+lin sijoille_AdvK = {s = c99 "sijoille"} ;
+lin sijoilleen_AdvK = {s = c99 "sijoilleen"} ;
+lin sijoilta_AdvK = {s = c99 "sijoilta"} ;
+lin sijoiltaan_AdvK = {s = c99 "sijoiltaan"} ;
+lin sijoittaa_VK = {s = c53A "sijoittaa"} ;
+lin sijoittaja_NK = {s = d10 "sijoittaja"} ;
+lin sijoittamaton_NK = {s = d34A "sijoittamaton"} ;
+lin sijoittautua_VK = {s = c52A "sijoittautua"} ;
+lin sijoitteinen_NK = {s = d38 "sijoitteinen"} ;
+lin sijoittelu_NK = {s = d02 "sijoittelu"} ;
+lin sijoittua_VK = {s = c52A "sijoittua"} ;
+lin sijoitus_NK = {s = d39 "sijoitus"} ;
+lin sika_NK = {s = d09A "sika"} ;
+lin _ikaani_NK = {s = d06 "šikaani"} ;
+lin sikailla_VK = {s = c67 "sikailla"} ;
+lin sikailu_NK = {s = d02 "sikailu"} ;
+lin sikala_NK = {s = d13 "sikala"} ;
+--+ lin sikamaisesti_AdvK = {s = c99 "sikamaisesti"} ;
+lin sikamaisuus_NK = {s = d40 "sikamaisuus"} ;
+lin sikari_NK = {s = d06 "sikari"} ;
+lin sikerma'_NK = {s = d10 "sikermä"} ;
+lin sikeys_NK = {s = d40 "sikeys"} ;
+lin sikeytya'_VK = {s = c52A "sikeytyä"} ;
+lin sikea'_AK = {s = d15 "sikeä"} ;
+--+ lin sikea'sti_AdvK = {s = c99 "sikeästi"} ;
+lin sikhi_NK = {s = d05 "sikhi"} ;
+lin sikhila'isyys_NK = {s = d40 "sikhiläisyys"} ;
+lin sikin_sokin_AdvK = {s = c99 "sikin sokin"} ;
+lin sikisi_AdvK = {s = c99 "sikisi"} ;
+lin sikia'in_NK = {s = d33 "sikiäin"} ;
+lin sikia'vyys_NK = {s = d40 "sikiävyys"} ;
+lin sikia'a'_AdvK = {s = c99 "sikiää"} ;
+lin sikio'_NK = {s = d03 "sikiö"} ;
+lin sikio'aika_NK = {s = d09A "sikiöaika"} ;
+lin sikkara_NK = {s = d11 "sikkara"} ;
+lin sikkaraan_AdvK = {s = c99 "sikkaraan"} ;
+lin sikkaralla_AdvK = {s = c99 "sikkaralla"} ;
+lin sikkarallaan_AdvK = {s = c99 "sikkarallaan"} ;
+lin sikkaralle_AdvK = {s = c99 "sikkaralle"} ;
+lin sikkaralleen_AdvK = {s = c99 "sikkaralleen"} ;
+lin sikkarassa_AdvK = {s = c99 "sikkarassa"} ;
+lin sikkatiivi_NK = {s = d05 "sikkatiivi"} ;
+lin sikkura_NK = {s = d13 "sikkura"} ;
+lin sikkuraan_AdvK = {s = c99 "sikkuraan"} ;
+lin sikkuralla_AdvK = {s = c99 "sikkuralla"} ;
+lin sikkurallaan_AdvK = {s = c99 "sikkurallaan"} ;
+lin sikkuralle_AdvK = {s = c99 "sikkuralle"} ;
+lin sikkuralleen_AdvK = {s = c99 "sikkuralleen"} ;
+lin sikkurassa_AdvK = {s = c99 "sikkurassa"} ;
+lin siklata_VK = {s = c73 "siklata"} ;
+lin sikli_NK = {s = d05 "sikli"} ;
+lin sikola'tti_NK = {s = d05A "sikolätti"} ;
+lin siksakata_VK = {s = c73A "siksakata"} ;
+lin siksakki_NK = {s = d05A "siksakki"} ;
+lin sikseen_AdvK = {s = c99 "sikseen"} ;
+lin siksi_AdvK = {s = c99 "siksi"} ;
+lin sikuna_NK = {s = d11 "sikuna"} ;
+lin sikuri_NK = {s = d06 "sikuri"} ;
+lin sika'li_AdvK = {s = c99 "sikäli"} ;
+lin sika'la'inen_NK = {s = d38 "sikäläinen"} ;
+lin silakka_NK = {s = d14A "silakka"} ;
+--? lin silat_NK = {s = d09 "silat"} ;
+lin silata_VK = {s = c73 "silata"} ;
+lin silaus_NK = {s = d39 "silaus"} ;
+lin silava_NK = {s = d10 "silava"} ;
+lin silavainen_NK = {s = d38 "silavainen"} ;
+lin silavoida_VK = {s = c62 "silavoida"} ;
+lin sileta'_VK = {s = c72 "siletä"} ;
+lin sileys_NK = {s = d40 "sileys"} ;
+lin silea'_AK = {s = d15 "sileä"} ;
+--+ lin silea'sti_AdvK = {s = c99 "sileästi"} ;
+lin silikaatti_NK = {s = d05A "silikaatti"} ;
+lin silikoni_NK = {s = d05 "silikoni"} ;
+lin silikoosi_NK = {s = d05 "silikoosi"} ;
+lin silinteri_NK = {s = d06 "silinteri"} ;
+lin silitella'_VK = {s = c67A "silitellä"} ;
+lin silittya'_VK = {s = c52A "silittyä"} ;
+lin silitta'a'_VK = {s = c53A "silittää"} ;
+lin silitys_NK = {s = d39 "silitys"} ;
+lin silitytta'a'_VK = {s = c53A "silityttää"} ;
+lin silita'_VK = {s = c75 "silitä"} ;
+lin siliytya'_VK = {s = c52A "siliytyä"} ;
+lin silia'vyys_NK = {s = d40 "siliävyys"} ;
+lin silkinhohtava_NK = {s = d10 "silkinhohtava"} ;
+lin silkka_NK = {s = d09A "silkka"} ;
+lin silkki_NK = {s = d05A "silkki"} ;
+lin silkkinen_NK = {s = d38 "silkkinen"} ;
+lin silko_AdvK = {s = c99 "silko"} ;
+lin silkoinen_NK = {s = d38 "silkoinen"} ;
+lin silla_NK = {s = d09 "silla"} ;
+lin sillaikaa_AdvK = {s = c99 "sillaikaa"} ;
+lin silleen_AdvK = {s = c99 "silleen"} ;
+lin silli_NK = {s = d05 "silli"} ;
+lin _illinki_NK = {s = d05A "šillinki"} ;
+lin silloin_AdvK = {s = c99 "silloin"} ;
+lin silloinen_NK = {s = d38 "silloinen"} ;
+lin silloittaa_VK = {s = c53A "silloittaa"} ;
+lin silloitus_NK = {s = d39 "silloitus"} ;
+lin silla'_AdvK = {s = c99 "sillä"} ;
+lin silla'_lailla_AdvK = {s = c99 "sillä lailla"} ;
+lin silla'_tapaa_AdvK = {s = c99 "sillä tapaa"} ;
+lin silla'_tavoin_AdvK = {s = c99 "sillä tavoin"} ;
+lin silla'_va'lin_AdvK = {s = c99 "sillä välin"} ;
+lin silla'a'n_AdvK = {s = c99 "sillään"} ;
+lin silmiinpista'vyys_NK = {s = d40 "silmiinpistävyys"} ;
+--+ lin silmiinpista'va'sti_AdvK = {s = c99 "silmiinpistävästi"} ;
+lin silmikko_NK = {s = d04A "silmikko"} ;
+lin silmikka'in_AdvK = {s = c99 "silmikkäin"} ;
+lin silmikoida_VK = {s = c62 "silmikoida"} ;
+lin silmikointi_NK = {s = d05A "silmikointi"} ;
+lin silmikoitua_VK = {s = c52A "silmikoitua"} ;
+lin silmitto'ma'sti_AdvK = {s = c99 "silmittömästi"} ;
+lin silmityksin_AdvK = {s = c99 "silmityksin"} ;
+lin silmitysten_AdvK = {s = c99 "silmitysten"} ;
+lin silmito'n_NK = {s = d34A "silmitön"} ;
+lin silmu_NK = {s = d01 "silmu"} ;
+lin silmukka_NK = {s = d14A "silmukka"} ;
+lin silmukkainen_NK = {s = d38 "silmukkainen"} ;
+lin silmukoida_VK = {s = c62 "silmukoida"} ;
+lin silmukointi_NK = {s = d05A "silmukointi"} ;
+lin silmuri_NK = {s = d06 "silmuri"} ;
+lin silmus_NK = {s = d39 "silmus"} ;
+lin silmuttaa_VK = {s = c53A "silmuttaa"} ;
+lin silmutus_NK = {s = d39 "silmutus"} ;
+lin silma'_NK = {s = d10 "silmä"} ;
+lin silma'illa'_VK = {s = c67 "silmäillä"} ;
+lin silma'ily_NK = {s = d02 "silmäily"} ;
+lin silma'inen_AK = {s = d38 "silmäinen"} ;
+--+ lin silma'isesti_AdvK = {s = c99 "silmäisesti"} ;
+lin silma'ista'_VK = {s = c66 "silmäistä"} ;
+lin silma'isy_NK = {s = d02 "silmäisy"} ;
+lin silma'ke_NK = {s = d48A "silmäke"} ;
+lin silma'kka'in_AdvK = {s = c99 "silmäkkäin"} ;
+lin silma'koko_NK = {s = d01A "silmäkoko"} ;
+lin silma'llinen_NK = {s = d38 "silmällinen"} ;
+lin silma'lla'_pita'en_AdvK = {s = c99 "silmällä pitäen"} ;
+lin silma'nra'pa'yksellinen_NK = {s = d38 "silmänräpäyksellinen"} ;
+lin silma'tyksin_AdvK = {s = c99 "silmätyksin"} ;
+lin silma'tysten_AdvK = {s = c99 "silmätysten"} ;
+lin silma'ta'_VK = {s = c73 "silmätä"} ;
+lin silma'ys_NK = {s = d39 "silmäys"} ;
+lin siloinen_AK = {s = d38 "siloinen"} ;
+--+ lin siloisesti_AdvK = {s = c99 "siloisesti"} ;
+lin siloisuus_NK = {s = d40 "siloisuus"} ;
+lin silote_NK = {s = d48A "silote"} ;
+lin silotella_VK = {s = c67A "silotella"} ;
+lin silottaa_VK = {s = c53A "silottaa"} ;
+lin silottua_VK = {s = c52A "silottua"} ;
+lin silotus_NK = {s = d39 "silotus"} ;
+lin silpia'_VK = {s = c61A "silpiä"} ;
+lin silpoa_VK = {s = c52A "silpoa"} ;
+lin silpoutua_VK = {s = c52A "silpoutua"} ;
+lin silppu_NK = {s = d01A "silppu"} ;
+lin silppuri_NK = {s = d06 "silppuri"} ;
+lin silppuuntua_VK = {s = c52A "silppuuntua"} ;
+lin silputa_VK = {s = c74A "silputa"} ;
+lin silsa_NK = {s = d09 "silsa"} ;
+lin silta_NK = {s = d09A "silta"} ;
+lin silti_AdvK = {s = c99 "silti"} ;
+lin siltti_NK = {s = d05A "siltti"} ;
+lin silta'a'n_AdvK = {s = c99 "siltään"} ;
+lin siluetti_NK = {s = d05A "siluetti"} ;
+lin siluuri_NK = {s = d06 "siluuri"} ;
+lin siluurinen_NK = {s = d38 "siluurinen"} ;
+lin silvonta_NK = {s = d09A "silvonta"} ;
+lin sima_NK = {s = d09 "sima"} ;
+lin simahdus_NK = {s = d39 "simahdus"} ;
+lin simahtaa_VK = {s = c53A "simahtaa"} ;
+--? lin simmarit_NK = {s = d06 "simmarit"} ;
+lin simpanssi_NK = {s = d05 "simpanssi"} ;
+lin simppeli_AK = {s = d06 "simppeli"} ;
+--+ lin simppelisti_AdvK = {s = c99 "simppelisti"} ;
+lin simppu_NK = {s = d01A "simppu"} ;
+lin simpukankuori_NK = {s = d26 "simpukankuori"} ;
+lin simpukka_NK = {s = d14A "simpukka"} ;
+lin simputtaa_VK = {s = c53A "simputtaa"} ;
+lin simputtaja_NK = {s = d10 "simputtaja"} ;
+lin simputus_NK = {s = d39 "simputus"} ;
+lin simsalabim_NK = {s = d05 "simsalabim"} ;
+lin simsetti_NK = {s = d05A "simsetti"} ;
+lin simulaatio_NK = {s = d03 "simulaatio"} ;
+lin simulaattori_NK = {s = d06 "simulaattori"} ;
+lin simuloida_VK = {s = c62 "simuloida"} ;
+lin simulointi_NK = {s = d05A "simulointi"} ;
+lin simultaani_AK = {s = d05 "simultaani"} ;
+lin simultaaninen_AK = {s = d38 "simultaaninen"} ;
+--+ lin simultaanisesti_AdvK = {s = c99 "simultaanisesti"} ;
+--+ lin simultaanisti_AdvK = {s = c99 "simultaanisti"} ;
+lin simultaanisuus_NK = {s = d40 "simultaanisuus"} ;
+lin simultaanius_NK = {s = d40 "simultaanius"} ;
+lin sinappi_NK = {s = d05A "sinappi"} ;
+lin sinelma'_NK = {s = d10 "sinelmä"} ;
+lin sineraria_NK = {s = d12 "sineraria"} ;
+lin sinerrys_NK = {s = d39 "sinerrys"} ;
+lin sinertya'_VK = {s = c52A "sinertyä"} ;
+lin sinerta'va'_NK = {s = d10 "sinertävä"} ;
+lin sinerta'a'_VK = {s = c54A "sinertää"} ;
+lin sinerva'_NK = {s = d10 "sinervä"} ;
+lin sinetti_NK = {s = d05A "sinetti"} ;
+lin sineto'ida'_VK = {s = c62 "sinetöidä"} ;
+lin sineto'inti_NK = {s = d05A "sinetöinti"} ;
+lin sineto'itya'_VK = {s = c52A "sinetöityä"} ;
+lin sinfonia_NK = {s = d12 "sinfonia"} ;
+lin sinfonietta_NK = {s = d09 "sinfonietta"} ;
+lin sinfonikko_NK = {s = d04A "sinfonikko"} ;
+lin sinfoninen_NK = {s = d38 "sinfoninen"} ;
+lin singahdella_VK = {s = c67A "singahdella"} ;
+lin singahduttaa_VK = {s = c53A "singahduttaa"} ;
+lin singahtaa_VK = {s = c53A "singahtaa"} ;
+lin singlata_VK = {s = c73 "singlata"} ;
+lin singlaus_NK = {s = d39 "singlaus"} ;
+lin single_NK = {s = d08 "single"} ;
+lin singota_VK = {s = c74A "singota"} ;
+lin singulaari_NK = {s = d05 "singulaari"} ;
+lin singulariteetti_NK = {s = d05A "singulariteetti"} ;
+lin sini_1_NK = {s = d07 "sini"} ;
+lin sini_2_NK = {s = d05 "sini"} ;
+lin sininen_NK = {s = d38 "sininen"} ;
+--+ lin sinisilma'isesti_AdvK = {s = c99 "sinisilmäisesti"} ;
+lin sinistyma'_NK = {s = d10 "sinistymä"} ;
+lin sinistys_NK = {s = d39 "sinistys"} ;
+lin sinistya'_VK = {s = c52 "sinistyä"} ;
+lin sinista'a'_VK = {s = c53 "sinistää"} ;
+lin sinisyys_NK = {s = d40 "sinisyys"} ;
+lin sinkata_VK = {s = c73A "sinkata"} ;
+lin sinkautella_VK = {s = c67A "sinkautella"} ;
+lin sinkauttaa_VK = {s = c53A "sinkauttaa"} ;
+lin sinkila'_NK = {s = d12 "sinkilä"} ;
+lin sinkilo'ida'_VK = {s = c62 "sinkilöidä"} ;
+lin sinkilo'inti_NK = {s = d05A "sinkilöinti"} ;
+lin sinkitys_NK = {s = d39 "sinkitys"} ;
+lin sinkita'_VK = {s = c69 "sinkitä"} ;
+lin sinkkaus_NK = {s = d39 "sinkkaus"} ;
+lin sinkki_NK = {s = d05A "sinkki"} ;
+lin sinkkinen_NK = {s = d38 "sinkkinen"} ;
+lin sinkku_NK = {s = d01A "sinkku"} ;
+lin sinko_NK = {s = d01A "sinko"} ;
+lin sinkoilla_VK = {s = c67 "sinkoilla"} ;
+lin sinkoutua_VK = {s = c52A "sinkoutua"} ;
+lin sinne_AdvK = {s = c99 "sinne"} ;
+lin sinnemma'_AdvK = {s = c99 "sinnemmä"} ;
+lin sinnemma'ksi_AdvK = {s = c99 "sinnemmäksi"} ;
+lin sinnemma's_AdvK = {s = c99 "sinnemmäs"} ;
+lin sinnempa'na'_AdvK = {s = c99 "sinnempänä"} ;
+lin sinnempa'a'_AdvK = {s = c99 "sinnempää"} ;
+lin sinnikkyys_NK = {s = d40 "sinnikkyys"} ;
+--+ lin sinnikka'a'sti_AdvK = {s = c99 "sinnikkäästi"} ;
+lin sinnika's_AK = {s = d41A "sinnikäs"} ;
+lin sinnitella'_VK = {s = c67A "sinnitellä"} ;
+lin sinnittely_NK = {s = d02 "sinnittely"} ;
+lin sinologi_NK = {s = d05 "sinologi"} ;
+lin sinologia_NK = {s = d12 "sinologia"} ;
+lin sinooberi_NK = {s = d05 "sinooberi"} ;
+lin sinooperi_NK = {s = d05 "sinooperi"} ;
+lin sinsilla_NK = {s = d09 "sinsilla"} ;
+lin _into_NK = {s = d01 "šinto"} ;
+lin _intolainen_NK = {s = d38 "šintolainen"} ;
+lin _intolaisuus_NK = {s = d40 "šintolaisuus"} ;
+lin sintraantua_VK = {s = c52A "sintraantua"} ;
+lin sintrata_VK = {s = c73 "sintrata"} ;
+lin sintraus_NK = {s = d39 "sintraus"} ;
+lin sintrautua_VK = {s = c52A "sintrautua"} ;
+lin sintsi_NK = {s = d05 "sintsi"} ;
+lin sintti_NK = {s = d05A "sintti"} ;
+lin sinuiksi_AdvK = {s = c99 "sinuiksi"} ;
+lin sinuksi_AdvK = {s = c99 "sinuksi"} ;
+lin sinunlaisesi_NK = {s = d38 "sinunlaisesi"} ;
+lin sinut_AdvK = {s = c99 "sinut"} ;
+lin sinutella_VK = {s = c67A "sinutella"} ;
+lin sinuttelu_NK = {s = d02 "sinuttelu"} ;
+lin sina'lleen_AdvK = {s = c99 "sinälleen"} ;
+lin sina'lla'a'n_AdvK = {s = c99 "sinällään"} ;
+lin sina'lta'a'n_AdvK = {s = c99 "sinältään"} ;
+lin sina'nsa'_AdvK = {s = c99 "sinänsä"} ;
+lin sionismi_NK = {s = d05 "sionismi"} ;
+lin sionisti_NK = {s = d05 "sionisti"} ;
+lin sionistinen_NK = {s = d38 "sionistinen"} ;
+lin sioux_NK = {s = d05 "sioux"} ;
+lin sipaista_VK = {s = c66 "sipaista"} ;
+lin sipaisu_NK = {s = d02 "sipaisu"} ;
+lin sipata_VK = {s = c73A "sipata"} ;
+lin sipatti_NK = {s = d05A "sipatti"} ;
+lin siperianhusky_NK = {s = d01 "siperianhusky"} ;
+lin siperianlehtikuusi_NK = {s = d24 "siperianlehtikuusi"} ;
+lin sipina'_NK = {s = d12 "sipinä"} ;
+lin sipista'_VK = {s = c66 "sipistä"} ;
+lin sipsi_NK = {s = d05 "sipsi"} ;
+lin sipsutella_VK = {s = c67A "sipsutella"} ;
+lin sipsuttaa_VK = {s = c53A "sipsuttaa"} ;
+lin sipsutus_NK = {s = d39 "sipsutus"} ;
+lin sipuli_NK = {s = d06 "sipuli"} ;
+lin sipulinkuori_NK = {s = d26 "sipulinkuori"} ;
+lin sirahdella_VK = {s = c67A "sirahdella"} ;
+lin sirahdus_NK = {s = d39 "sirahdus"} ;
+lin sirahtaa_VK = {s = c53A "sirahtaa"} ;
+lin sireeni_1_NK = {s = d06 "sireeni"} ;
+lin sireeni_2_NK = {s = d06 "sireeni"} ;
+lin sirina'_NK = {s = d12 "sirinä"} ;
+lin siristella'_VK = {s = c67 "siristellä"} ;
+lin siristely_NK = {s = d02 "siristely"} ;
+lin siristys_NK = {s = d39 "siristys"} ;
+lin sirista'_VK = {s = c66 "siristä"} ;
+lin sirista'a'_VK = {s = c53 "siristää"} ;
+lin siritta'ja'_NK = {s = d10 "sirittäjä"} ;
+lin siritta'a'_VK = {s = c53A "sirittää"} ;
+lin siritys_NK = {s = d39 "siritys"} ;
+lin sirkea'_NK = {s = d15 "sirkeä"} ;
+lin sirkka_1_NK = {s = d09A "sirkka"} ;
+lin sirkka_2_NK = {s = d09A "sirkka"} ;
+lin sirkka_3_NK = {s = d09A "sirkka"} ;
+lin sirkkainen_NK = {s = d38 "sirkkainen"} ;
+lin sirkkajuuri_NK = {s = d26 "sirkkajuuri"} ;
+lin sirkkeli_NK = {s = d06 "sirkkeli"} ;
+lin sirkku_NK = {s = d01A "sirkku"} ;
+lin sirklata_VK = {s = c73 "sirklata"} ;
+lin sirklaus_NK = {s = d39 "sirklaus"} ;
+lin sirkoni_NK = {s = d06 "sirkoni"} ;
+lin sirkonium_NK = {s = d05 "sirkonium"} ;
+lin sirkumfleksi_NK = {s = d05 "sirkumfleksi"} ;
+lin sirkus_NK = {s = d39 "sirkus"} ;
+lin sirkuttaa_VK = {s = c53A "sirkuttaa"} ;
+lin sirkutus_NK = {s = d39 "sirkutus"} ;
+lin siro_NK = {s = d01 "siro"} ;
+lin sironta_NK = {s = d09A "sironta"} ;
+lin sirostella_VK = {s = c67 "sirostella"} ;
+lin sirota_VK = {s = c74 "sirota"} ;
+lin sirote_NK = {s = d48A "sirote"} ;
+lin sirotella_VK = {s = c67A "sirotella"} ;
+lin sirotin_NK = {s = d33A "sirotin"} ;
+lin sirottaa_VK = {s = c53A "sirottaa"} ;
+lin sirottelu_NK = {s = d02 "sirottelu"} ;
+lin sirottua_VK = {s = c52A "sirottua"} ;
+lin sirotus_NK = {s = d39 "sirotus"} ;
+lin sirpakka_NK = {s = d14A "sirpakka"} ;
+lin sirpale_NK = {s = d48 "sirpale"} ;
+lin sirpaleinen_NK = {s = d38 "sirpaleinen"} ;
+lin sirpaloitua_VK = {s = c52A "sirpaloitua"} ;
+lin sirppi_NK = {s = d05A "sirppi"} ;
+lin sirri_NK = {s = d05 "sirri"} ;
+lin sirriin_AdvK = {s = c99 "sirriin"} ;
+lin sirrille_AdvK = {s = c99 "sirrille"} ;
+lin sirrilleen_AdvK = {s = c99 "sirrilleen"} ;
+lin sirrilla'_AdvK = {s = c99 "sirrillä"} ;
+lin sirrilla'a'n_AdvK = {s = c99 "sirrillään"} ;
+lin sirrissa'_AdvK = {s = c99 "sirrissä"} ;
+lin sirtaki_NK = {s = d06 "sirtaki"} ;
+lin siru_NK = {s = d01 "siru"} ;
+lin sirunen_NK = {s = d38 "sirunen"} ;
+lin sisal_NK = {s = d05 "sisal"} ;
+lin sisali_NK = {s = d06 "sisali"} ;
+lin sisar_NK = {s = d32 "sisar"} ;
+--? lin sisarekset_NK = {s = d39 "sisarekset"} ;
+lin sisarellinen_AK = {s = d38 "sisarellinen"} ;
+--+ lin sisarellisesti_AdvK = {s = c99 "sisarellisesti"} ;
+lin sisarus_NK = {s = d39 "sisarus"} ;
+lin sisaruus_NK = {s = d40 "sisaruus"} ;
+lin siselo'ida'_VK = {s = c62 "siselöidä"} ;
+lin siselo'inti_NK = {s = d05A "siselöinti"} ;
+lin sisemma'_AdvK = {s = c99 "sisemmä"} ;
+lin sisemma'ksi_AdvK = {s = c99 "sisemmäksi"} ;
+lin sisemma'lle_AdvK = {s = c99 "sisemmälle"} ;
+lin sisemma'lla'_AdvK = {s = c99 "sisemmällä"} ;
+lin sisemma'lta'_AdvK = {s = c99 "sisemmältä"} ;
+lin sisemma's_AdvK = {s = c99 "sisemmäs"} ;
+lin sisempi_NK = {s = d16A "sisempi"} ;
+lin sisempa'na'_AdvK = {s = c99 "sisempänä"} ;
+lin sisempa'a'_AdvK = {s = c99 "sisempää"} ;
+lin sisennys_NK = {s = d39 "sisennys"} ;
+lin sisenta'a'_VK = {s = c54A "sisentää"} ;
+lin siseta'_VK = {s = c72 "sisetä"} ;
+lin sisilisko_NK = {s = d01 "sisilisko"} ;
+lin sisimma'inen_NK = {s = d38 "sisimmäinen"} ;
+lin sisimma'ksi_AdvK = {s = c99 "sisimmäksi"} ;
+lin sisimma'lle_AdvK = {s = c99 "sisimmälle"} ;
+lin sisimma'lla'_AdvK = {s = c99 "sisimmällä"} ;
+lin sisimma'lta'_AdvK = {s = c99 "sisimmältä"} ;
+lin sisimma'lta'a'n_AdvK = {s = c99 "sisimmältään"} ;
+lin sisimma's_AdvK = {s = c99 "sisimmäs"} ;
+lin sisimpa'na'_AdvK = {s = c99 "sisimpänä"} ;
+lin sisimpa'a'_AdvK = {s = c99 "sisimpää"} ;
+lin sisin_NK = {s = d36 "sisin"} ;
+lin sisinna'_AdvK = {s = c99 "sisinnä"} ;
+lin sisko_NK = {s = d01 "sisko"} ;
+--? lin siskokset_NK = {s = d39 "siskokset"} ;
+lin siskous_NK = {s = d40 "siskous"} ;
+lin sissi_NK = {s = d05 "sissi"} ;
+lin sisterssila'inen_NK = {s = d38 "sisterssiläinen"} ;
+lin sisu_NK = {s = d01 "sisu"} ;
+lin sisuinen_NK = {s = d38 "sisuinen"} ;
+lin sisukas_AK = {s = d41A "sisukas"} ;
+--+ lin sisukkaasti_AdvK = {s = c99 "sisukkaasti"} ;
+lin sisukkuus_NK = {s = d40 "sisukkuus"} ;
+lin sisus_NK = {s = d39 "sisus"} ;
+lin sisusta_NK = {s = d13 "sisusta"} ;
+lin sisustaa_VK = {s = c53 "sisustaa"} ;
+lin sisustainen_NK = {s = d38 "sisustainen"} ;
+lin sisustaja_NK = {s = d10 "sisustaja"} ;
+lin sisuste_NK = {s = d48 "sisuste"} ;
+lin sisustus_NK = {s = d39 "sisustus"} ;
+lin sisuuntua_VK = {s = c52A "sisuuntua"} ;
+lin sisa'eritteinen_NK = {s = d38 "sisäeritteinen"} ;
+lin sisa'inen_AK = {s = d38 "sisäinen"} ;
+--+ lin sisa'isesti_AdvK = {s = c99 "sisäisesti"} ;
+lin sisa'istys_NK = {s = d39 "sisäistys"} ;
+lin sisa'istya'_VK = {s = c52 "sisäistyä"} ;
+lin sisa'ista'a'_VK = {s = c53 "sisäistää"} ;
+lin sisa'kka'in_AdvK = {s = c99 "sisäkkäin"} ;
+lin sisa'kka'inen_NK = {s = d38 "sisäkkäinen"} ;
+lin sisa'kko'_NK = {s = d04A "sisäkkö"} ;
+lin sisa'lle_AdvK = {s = c99 "sisälle"} ;
+lin sisa'llisesti_AdvK = {s = c99 "sisällisesti"} ;
+lin sisa'llykseka's_NK = {s = d41A "sisällyksekäs"} ;
+lin sisa'llyksellinen_NK = {s = d38 "sisällyksellinen"} ;
+lin sisa'llykseto'n_NK = {s = d34A "sisällyksetön"} ;
+lin sisa'llyksinen_NK = {s = d38 "sisällyksinen"} ;
+lin sisa'llys_NK = {s = d39 "sisällys"} ;
+lin sisa'llytta'a'_VK = {s = c53A "sisällyttää"} ;
+lin sisa'lla'_AdvK = {s = c99 "sisällä"} ;
+lin sisa'llo'ka's_NK = {s = d41A "sisällökäs"} ;
+lin sisa'llo'llinen_NK = {s = d38 "sisällöllinen"} ;
+lin sisa'llo'to'n_NK = {s = d34A "sisällötön"} ;
+--? lin sisa'lmykset_NK = {s = d39 "sisälmykset"} ;
+lin sisa'lokasuoja_NK = {s = d10 "sisälokasuoja"} ;
+lin sisa'ltya'_VK = {s = c52A "sisältyä"} ;
+lin sisa'lta'_AdvK = {s = c99 "sisältä"} ;
+lin sisa'lta'a'_VK = {s = c54A "sisältää"} ;
+lin sisa'lto'_NK = {s = d01A "sisältö"} ;
+lin sisa'lto'inen_NK = {s = d38 "sisältöinen"} ;
+lin sisa'maalaus_NK = {s = d39 "sisämaalaus"} ;
+lin sisa'maali_NK = {s = d05 "sisämaali"} ;
+lin sisa'renkaaton_NK = {s = d34A "sisärenkaaton"} ;
+lin sisa'ssa'_AdvK = {s = c99 "sisässä"} ;
+lin sisa'sta'_AdvK = {s = c99 "sisästä"} ;
+lin sisa'tta'in_AdvK = {s = c99 "sisättäin"} ;
+lin sisa'tta'inen_NK = {s = d38 "sisättäinen"} ;
+lin sisa'turkki_NK = {s = d05A "sisäturkki"} ;
+lin sisa'tyksin_AdvK = {s = c99 "sisätyksin"} ;
+lin sisa'tysten_AdvK = {s = c99 "sisätysten"} ;
+lin sisa'a'n_AdvK = {s = c99 "sisään"} ;
+lin sisa'a'nla'mpia'va'_NK = {s = d10 "sisäänlämpiävä"} ;
+lin sisa'a'nrakennettu_NK = {s = d01A "sisäänrakennettu"} ;
+lin sitaatti_NK = {s = d05A "sitaatti"} ;
+lin sitaista_VK = {s = c66 "sitaista"} ;
+lin sitaisu_NK = {s = d02 "sitaisu"} ;
+lin sitar_NK = {s = d06 "sitar"} ;
+lin sitcom_NK = {s = d05 "sitcom"} ;
+lin siteerata_VK = {s = c73 "siteerata"} ;
+lin siteeraus_NK = {s = d39 "siteeraus"} ;
+lin siteinen_NK = {s = d38 "siteinen"} ;
+lin siten_AdvK = {s = c99 "siten"} ;
+lin sitkaan_AdvK = {s = c99 "sitkaan"} ;
+--+ lin sitkaasti_AdvK = {s = c99 "sitkaasti"} ;
+lin sitkas_AK = {s = d41 "sitkas"} ;
+lin sitketa'_VK = {s = c72 "sitketä"} ;
+lin sitkeys_NK = {s = d40 "sitkeys"} ;
+lin sitkeytta'a'_VK = {s = c53A "sitkeyttää"} ;
+lin sitkeytya'_VK = {s = c52A "sitkeytyä"} ;
+lin sitkea'_AK = {s = d15 "sitkeä"} ;
+--+ lin sitkea'sti_AdvK = {s = c99 "sitkeästi"} ;
+lin sitkistya'_VK = {s = c52 "sitkistyä"} ;
+lin sitkista'a'_VK = {s = c53 "sitkistää"} ;
+lin sitko_NK = {s = d01 "sitko"} ;
+lin sitkostaa_VK = {s = c53 "sitkostaa"} ;
+lin sitoa_VK = {s = c52A "sitoa"} ;
+lin sitoja_NK = {s = d10 "sitoja"} ;
+lin sitomaton_NK = {s = d34A "sitomaton"} ;
+lin sitomo_NK = {s = d02 "sitomo"} ;
+lin sitoumus_NK = {s = d39 "sitoumus"} ;
+lin sitoutua_VK = {s = c52A "sitoutua"} ;
+lin sitoutumaton_NK = {s = d34A "sitoutumaton"} ;
+lin sitoutumattomuus_NK = {s = d40 "sitoutumattomuus"} ;
+lin sitovasti_AdvK = {s = c99 "sitovasti"} ;
+lin sitovuus_NK = {s = d40 "sitovuus"} ;
+lin sitra_NK = {s = d09 "sitra"} ;
+lin sitronaatti_NK = {s = d05A "sitronaatti"} ;
+lin sitruuna_NK = {s = d13 "sitruuna"} ;
+lin sitruunamelissa_NK = {s = d09 "sitruunamelissa"} ;
+lin sitruunankuori_NK = {s = d26 "sitruunankuori"} ;
+lin sitsi_NK = {s = d05 "sitsi"} ;
+lin sittemmin_AdvK = {s = c99 "sittemmin"} ;
+lin sitten_AdvK = {s = c99 "sitten"} ;
+lin sittenkin_AdvK = {s = c99 "sittenkin"} ;
+lin sittenka'a'n_AdvK = {s = c99 "sittenkään"} ;
+lin sittia'inen_NK = {s = d38 "sittiäinen"} ;
+lin sita'_AdvK = {s = c99 "sitä"} ;
+lin siunaama_NK = {s = d10 "siunaama"} ;
+lin siunaamaton_NK = {s = d34A "siunaamaton"} ;
+lin siunaantua_VK = {s = c52A "siunaantua"} ;
+lin siunailla_VK = {s = c67 "siunailla"} ;
+lin siunailu_NK = {s = d02 "siunailu"} ;
+lin siunata_VK = {s = c73 "siunata"} ;
+lin siunauksekas_NK = {s = d41A "siunauksekas"} ;
+lin siunauksellinen_NK = {s = d38 "siunauksellinen"} ;
+lin siunauksellisuus_NK = {s = d40 "siunauksellisuus"} ;
+lin siunaus_NK = {s = d39 "siunaus"} ;
+lin siunautua_VK = {s = c52A "siunautua"} ;
+lin sivakka_NK = {s = d14A "sivakka"} ;
+lin sivakoida_VK = {s = c62 "sivakoida"} ;
+lin sivallella_VK = {s = c67A "sivallella"} ;
+lin sivallus_NK = {s = d39 "sivallus"} ;
+lin sivaltaa_VK = {s = c54A "sivaltaa"} ;
+lin sivari_NK = {s = d06 "sivari"} ;
+lin siveellinen_AK = {s = d38 "siveellinen"} ;
+--+ lin siveellisesti_AdvK = {s = c99 "siveellisesti"} ;
+lin siveellisyys_NK = {s = d40 "siveellisyys"} ;
+lin siveetto'myys_NK = {s = d40 "siveettömyys"} ;
+lin siveetto'ma'sti_AdvK = {s = c99 "siveettömästi"} ;
+lin siveeto'n_NK = {s = d34A "siveetön"} ;
+lin sivellin_NK = {s = d33A "sivellin"} ;
+lin sivella'_VK = {s = c67 "sivellä"} ;
+lin sivelteinen_NK = {s = d38 "sivelteinen"} ;
+lin siveltimenveto_NK = {s = d01A "siveltimenveto"} ;
+lin sively_NK = {s = d02 "sively"} ;
+lin siveys_NK = {s = d40 "siveys"} ;
+lin sivea'_AK = {s = d15 "siveä"} ;
+--+ lin sivea'sti_AdvK = {s = c99 "siveästi"} ;
+lin siviili_NK = {s = d06 "siviili"} ;
+lin siviilivihkiminen_NK = {s = d38 "siviilivihkiminen"} ;
+lin sivilisaatio_NK = {s = d03 "sivilisaatio"} ;
+lin sivilisoitua_VK = {s = c52A "sivilisoitua"} ;
+lin sivistyksellinen_NK = {s = d38 "sivistyksellinen"} ;
+lin sivistyma'tto'myys_NK = {s = d40 "sivistymättömyys"} ;
+lin sivistyma'tto'ma'sti_AdvK = {s = c99 "sivistymättömästi"} ;
+lin sivistyma'to'n_NK = {s = d34A "sivistymätön"} ;
+--+ lin sivistyneesti_AdvK = {s = c99 "sivistyneesti"} ;
+lin sivistyneisto'_NK = {s = d01 "sivistyneistö"} ;
+lin sivistyneisyys_NK = {s = d40 "sivistyneisyys"} ;
+lin sivistynyt_AK = {s = d47 "sivistynyt"} ;
+lin sivistys_NK = {s = d39 "sivistys"} ;
+lin sivistya'_VK = {s = c52 "sivistyä"} ;
+lin sivista'a'_VK = {s = c53 "sivistää"} ;
+lin sivu_NK = {s = d01 "sivu"} ;
+lin sivuaja_NK = {s = d10 "sivuaja"} ;
+lin sivuinen_NK = {s = d38 "sivuinen"} ;
+lin sivuitse_AdvK = {s = c99 "sivuitse"} ;
+lin sivuittain_AdvK = {s = c99 "sivuittain"} ;
+lin sivuittainen_NK = {s = d38 "sivuittainen"} ;
+lin sivukaupalla_AdvK = {s = c99 "sivukaupalla"} ;
+lin sivukautta_AdvK = {s = c99 "sivukautta"} ;
+lin sivukkain_AdvK = {s = c99 "sivukkain"} ;
+lin sivulla_AdvK = {s = c99 "sivulla"} ;
+lin sivulle_AdvK = {s = c99 "sivulle"} ;
+lin sivullinen_NK = {s = d38 "sivullinen"} ;
+lin sivullisuus_NK = {s = d40 "sivullisuus"} ;
+lin sivulta_AdvK = {s = c99 "sivulta"} ;
+lin sivumennen_AdvK = {s = c99 "sivumennen"} ;
+lin sivummaksi_AdvK = {s = c99 "sivummaksi"} ;
+lin sivummalla_AdvK = {s = c99 "sivummalla"} ;
+lin sivummalle_AdvK = {s = c99 "sivummalle"} ;
+lin sivummalta_AdvK = {s = c99 "sivummalta"} ;
+lin sivummas_AdvK = {s = c99 "sivummas"} ;
+lin sivummassa_AdvK = {s = c99 "sivummassa"} ;
+lin sivummasta_AdvK = {s = c99 "sivummasta"} ;
+lin sivumpaa_AdvK = {s = c99 "sivumpaa"} ;
+lin sivumpaan_AdvK = {s = c99 "sivumpaan"} ;
+lin sivumpana_AdvK = {s = c99 "sivumpana"} ;
+lin sivussa_AdvK = {s = c99 "sivussa"} ;
+lin sivusta_1_NK = {s = d13 "sivusta"} ;
+lin sivusta_2_AdvK = {s = c99 "sivusta"} ;
+lin sivustavedetta'va'_NK = {s = d10 "sivustavedettävä"} ;
+lin sivuta_VK = {s = c74 "sivuta"} ;
+lin sivuttaa_VK = {s = c53A "sivuttaa"} ;
+lin sivuttain_AdvK = {s = c99 "sivuttain"} ;
+lin sivuttainen_NK = {s = d38 "sivuttainen"} ;
+lin sivuun_AdvK = {s = c99 "sivuun"} ;
+lin sivuuttaa_VK = {s = c53A "sivuuttaa"} ;
+lin sivuutus_NK = {s = d39 "sivuutus"} ;
+lin sivuvaunullinen_NK = {s = d38 "sivuvaunullinen"} ;
+lin skaala_NK = {s = d09 "skaala"} ;
+lin skalpeerata_VK = {s = c73 "skalpeerata"} ;
+lin skalpeeraus_NK = {s = d39 "skalpeeraus"} ;
+lin skalpelli_NK = {s = d05 "skalpelli"} ;
+lin skandaali_NK = {s = d06 "skandaali"} ;
+lin skandalisoida_VK = {s = c62 "skandalisoida"} ;
+lin skandaloida_VK = {s = c62 "skandaloida"} ;
+lin skandeerata_VK = {s = c73 "skandeerata"} ;
+lin skandeeraus_NK = {s = d39 "skandeeraus"} ;
+lin skandinaavi_NK = {s = d05 "skandinaavi"} ;
+lin skandinaavinen_NK = {s = d38 "skandinaavinen"} ;
+lin skandinaaviska_NK = {s = d13 "skandinaaviska"} ;
+lin skandinavialainen_NK = {s = d38 "skandinavialainen"} ;
+lin skandinavismi_NK = {s = d05 "skandinavismi"} ;
+lin skannata_VK = {s = c73 "skannata"} ;
+lin skannaus_NK = {s = d39 "skannaus"} ;
+lin skanneri_NK = {s = d06 "skanneri"} ;
+lin skanssi_NK = {s = d05 "skanssi"} ;
+lin skarpata_VK = {s = c73A "skarpata"} ;
+lin skarppi_NK = {s = d05A "skarppi"} ;
+lin skeema_NK = {s = d09 "skeema"} ;
+lin skeet_NK = {s = d05 "skeet"} ;
+lin skeet_ammunta_NK = {s = d09A "skeet-ammunta"} ;
+lin skeida_NK = {s = d09 "skeida"} ;
+lin skeitata_VK = {s = c73A "skeitata"} ;
+lin skeittaaja_NK = {s = d10 "skeittaaja"} ;
+lin skeittaus_NK = {s = d39 "skeittaus"} ;
+lin skeitti_NK = {s = d05A "skeitti"} ;
+lin skemaattinen_NK = {s = d38 "skemaattinen"} ;
+lin skematisoida_VK = {s = c62 "skematisoida"} ;
+lin skematisointi_NK = {s = d05A "skematisointi"} ;
+lin skenaario_NK = {s = d03 "skenaario"} ;
+lin skenaristi_NK = {s = d05 "skenaristi"} ;
+lin skepsis_NK = {s = d39 "skepsis"} ;
+lin skeptikko_NK = {s = d04A "skeptikko"} ;
+lin skeptinen_AK = {s = d38 "skeptinen"} ;
+--+ lin skeptisesti_AdvK = {s = c99 "skeptisesti"} ;
+lin skeptisismi_NK = {s = d05 "skeptisismi"} ;
+lin skeptisyys_NK = {s = d40 "skeptisyys"} ;
+lin sketsi_NK = {s = d05 "sketsi"} ;
+lin skientismi_NK = {s = d05 "skientismi"} ;
+lin skientologi_NK = {s = d05 "skientologi"} ;
+lin skientologia_NK = {s = d12 "skientologia"} ;
+lin skimba_NK = {s = d09 "skimba"} ;
+lin skimbata_VK = {s = c73 "skimbata"} ;
+lin skimbaus_NK = {s = d39 "skimbaus"} ;
+lin skinhead_NK = {s = d05 "skinhead"} ;
+lin skini_NK = {s = d05 "skini"} ;
+lin skisma_NK = {s = d09 "skisma"} ;
+lin skitsi_NK = {s = d05 "skitsi"} ;
+lin skitso_NK = {s = d01 "skitso"} ;
+lin skitsofreeni_NK = {s = d05 "skitsofreeni"} ;
+lin skitsofreenikko_NK = {s = d04A "skitsofreenikko"} ;
+lin skitsofreeninen_AK = {s = d38 "skitsofreeninen"} ;
+--+ lin skitsofreenisesti_AdvK = {s = c99 "skitsofreenisesti"} ;
+lin skitsofrenia_NK = {s = d12 "skitsofrenia"} ;
+lin skleroosi_NK = {s = d05 "skleroosi"} ;
+lin skolastiikka_NK = {s = d09A "skolastiikka"} ;
+lin skolastikko_NK = {s = d04A "skolastikko"} ;
+lin skolastinen_NK = {s = d38 "skolastinen"} ;
+lin skolioosi_NK = {s = d05 "skolioosi"} ;
+lin skonssi_NK = {s = d05 "skonssi"} ;
+lin skool_AdvK = {s = c99 "skool"} ;
+lin skoolata_VK = {s = c73 "skoolata"} ;
+lin skoolaus_NK = {s = d39 "skoolaus"} ;
+lin skootteri_NK = {s = d06 "skootteri"} ;
+lin skorpioni_NK = {s = d05 "skorpioni"} ;
+lin skotlantilainen_NK = {s = d38 "skotlantilainen"} ;
+lin skotooma_NK = {s = d10 "skotooma"} ;
+lin skotti_NK = {s = d05A "skotti"} ;
+lin skribentti_NK = {s = d05A "skribentti"} ;
+lin skripta_NK = {s = d09 "skripta"} ;
+lin skruuvi_NK = {s = d05 "skruuvi"} ;
+lin skulata_VK = {s = c73 "skulata"} ;
+lin skunkki_NK = {s = d05A "skunkki"} ;
+lin skuuppi_NK = {s = d05A "skuuppi"} ;
+lin slaageri_NK = {s = d06 "slaageri"} ;
+lin slaavi_NK = {s = d05 "slaavi"} ;
+lin slaavilaisuus_NK = {s = d40 "slaavilaisuus"} ;
+lin slalom_NK = {s = d05 "slalom"} ;
+lin slammata_VK = {s = c73 "slammata"} ;
+lin slammaus_NK = {s = d39 "slammaus"} ;
+lin slangi_NK = {s = d05 "slangi"} ;
+lin slapstick_NK = {s = d05 "slapstick"} ;
+lin slavisti_NK = {s = d05 "slavisti"} ;
+lin slavistiikka_NK = {s = d09A "slavistiikka"} ;
+lin sliipata_VK = {s = c73A "sliipata"} ;
+lin sliippari_NK = {s = d06 "sliippari"} ;
+lin sliippaus_NK = {s = d39 "sliippaus"} ;
+lin slipoveri_NK = {s = d05 "slipoveri"} ;
+lin slivovits_NK = {s = d05 "slivovits"} ;
+lin slobo_NK = {s = d01 "slobo"} ;
+lin slogaani_NK = {s = d06 "slogaani"} ;
+lin slovakialainen_NK = {s = d38 "slovakialainen"} ;
+lin slovakki_NK = {s = d05A "slovakki"} ;
+lin sloveeni_NK = {s = d06 "sloveeni"} ;
+lin slovenialainen_NK = {s = d38 "slovenialainen"} ;
+lin slummi_NK = {s = d05 "slummi"} ;
+lin slummiutua_VK = {s = c52A "slummiutua"} ;
+lin small_talk_NK = {s = d05 "small talk"} ;
+lin smaragdi_NK = {s = d05 "smaragdi"} ;
+lin smetana_NK = {s = d13 "smetana"} ;
+lin sminkata_VK = {s = c73A "sminkata"} ;
+lin sminkki_NK = {s = d05A "sminkki"} ;
+lin smirgeli_NK = {s = d06 "smirgeli"} ;
+lin smirgelo'ida'_VK = {s = c62 "smirgelöidä"} ;
+lin smirgelo'inti_NK = {s = d05A "smirgelöinti"} ;
+lin smog_NK = {s = d05 "smog"} ;
+lin smoking_NK = {s = d05 "smoking"} ;
+lin smokki_NK = {s = d05A "smokki"} ;
+lin snacks_NK = {s = d05 "snacks"} ;
+lin snadi_NK = {s = d05 "snadi"} ;
+lin snapsi_NK = {s = d05 "snapsi"} ;
+lin snautseri_NK = {s = d06 "snautseri"} ;
+lin snobbailla_VK = {s = c67 "snobbailla"} ;
+lin snobbailu_NK = {s = d02 "snobbailu"} ;
+lin snobi_NK = {s = d05 "snobi"} ;
+lin snobismi_NK = {s = d05 "snobismi"} ;
+lin snobistinen_AK = {s = d38 "snobistinen"} ;
+--+ lin snobistisesti_AdvK = {s = c99 "snobistisesti"} ;
+lin snobistisuus_NK = {s = d40 "snobistisuus"} ;
+lin snooker_NK = {s = d06 "snooker"} ;
+lin snorkkeli_NK = {s = d06 "snorkkeli"} ;
+lin so_AdvK = {s = c99 "so"} ;
+lin sodanvaara_NK = {s = d09 "sodanvaara"} ;
+lin sodomia_NK = {s = d12 "sodomia"} ;
+lin soeta_VK = {s = c72A "soeta"} ;
+lin sofista_NK = {s = d13 "sofista"} ;
+lin sofisti_NK = {s = d05 "sofisti"} ;
+lin sofistiikka_NK = {s = d09A "sofistiikka"} ;
+lin sofistikoitunut_NK = {s = d47 "sofistikoitunut"} ;
+lin sofistinen_NK = {s = d38 "sofistinen"} ;
+lin softa_NK = {s = d10 "softa"} ;
+lin soft_ice_NK = {s = d08 "soft ice"} ;
+lin software_NK = {s = d08 "software"} ;
+lin sohaista_VK = {s = c66 "sohaista"} ;
+lin sohia_VK = {s = c61 "sohia"} ;
+lin sohjo_NK = {s = d01 "sohjo"} ;
+lin sohjoinen_NK = {s = d38 "sohjoinen"} ;
+lin sohjoontua_VK = {s = c52A "sohjoontua"} ;
+lin sohjoutua_VK = {s = c52A "sohjoutua"} ;
+lin sohlata_VK = {s = c73 "sohlata"} ;
+lin sohva_NK = {s = d10 "sohva"} ;
+lin sohvautua_VK = {s = c52A "sohvautua"} ;
+lin soida_VK = {s = c62 "soida"} ;
+lin soidin_NK = {s = d33A "soidin"} ;
+lin soihtu_NK = {s = d01A "soihtu"} ;
+lin soija_NK = {s = d10 "soija"} ;
+lin soikea_NK = {s = d15 "soikea"} ;
+lin soikeus_NK = {s = d40 "soikeus"} ;
+lin soikio_NK = {s = d03 "soikio"} ;
+lin soikko_NK = {s = d01A "soikko"} ;
+lin soilikki_NK = {s = d05A "soilikki"} ;
+lin soimata_VK = {s = c73 "soimata"} ;
+lin soimaus_NK = {s = d39 "soimaus"} ;
+lin soinen_NK = {s = d38 "soinen"} ;
+lin soinnahdus_NK = {s = d39 "soinnahdus"} ;
+lin soinnahtaa_VK = {s = c53A "soinnahtaa"} ;
+lin soinnikas_AK = {s = d41A "soinnikas"} ;
+--+ lin soinnikkaasti_AdvK = {s = c99 "soinnikkaasti"} ;
+lin soinnikkuus_NK = {s = d40 "soinnikkuus"} ;
+lin soinnillinen_AK = {s = d38 "soinnillinen"} ;
+--+ lin soinnillisesti_AdvK = {s = c99 "soinnillisesti"} ;
+lin soinnillisuus_NK = {s = d40 "soinnillisuus"} ;
+lin soinniton_NK = {s = d34A "soinniton"} ;
+lin soinnittomasti_AdvK = {s = c99 "soinnittomasti"} ;
+lin soinnittomuus_NK = {s = d40 "soinnittomuus"} ;
+lin soinnukas_AK = {s = d41A "soinnukas"} ;
+--+ lin soinnukkaasti_AdvK = {s = c99 "soinnukkaasti"} ;
+lin soinnukkuus_NK = {s = d40 "soinnukkuus"} ;
+lin soinnullinen_AK = {s = d38 "soinnullinen"} ;
+--+ lin soinnullisesti_AdvK = {s = c99 "soinnullisesti"} ;
+lin soinnullisuus_NK = {s = d40 "soinnullisuus"} ;
+lin soinnutella_VK = {s = c67A "soinnutella"} ;
+lin soinnuton_NK = {s = d34A "soinnuton"} ;
+lin soinnuttaa_VK = {s = c53A "soinnuttaa"} ;
+lin soinnutus_NK = {s = d39 "soinnutus"} ;
+lin sointi_NK = {s = d05A "sointi"} ;
+lin sointinen_NK = {s = d38 "sointinen"} ;
+lin sointu_NK = {s = d01A "sointu"} ;
+lin sointua_VK = {s = c52A "sointua"} ;
+lin sointuinen_NK = {s = d38 "sointuinen"} ;
+lin sointuisa_NK = {s = d10 "sointuisa"} ;
+lin soiro_NK = {s = d01 "soiro"} ;
+lin soistaa_VK = {s = c53 "soistaa"} ;
+lin soistua_VK = {s = c52 "soistua"} ;
+lin soistuma_NK = {s = d10 "soistuma"} ;
+lin soisuus_NK = {s = d40 "soisuus"} ;
+lin soitannollinen_NK = {s = d38 "soitannollinen"} ;
+lin soitanta_NK = {s = d09A "soitanta"} ;
+lin soitanto_NK = {s = d01A "soitanto"} ;
+lin soitella_VK = {s = c67A "soitella"} ;
+lin soitin_NK = {s = d33A "soitin"} ;
+lin soitinnus_NK = {s = d39 "soitinnus"} ;
+lin soitintaa_VK = {s = c54A "soitintaa"} ;
+lin soittaa_VK = {s = c53A "soittaa"} ;
+lin soittaja_NK = {s = d10 "soittaja"} ;
+lin soittajisto_NK = {s = d01 "soittajisto"} ;
+lin soittelu_NK = {s = d02 "soittelu"} ;
+lin soittimellinen_NK = {s = d38 "soittimellinen"} ;
+lin soittimisto_NK = {s = d01 "soittimisto"} ;
+lin soitto_NK = {s = d01A "soitto"} ;
+lin sojolla_AdvK = {s = c99 "sojolla"} ;
+lin sojollaan_AdvK = {s = c99 "sojollaan"} ;
+lin sojolle_AdvK = {s = c99 "sojolle"} ;
+lin sojolleen_AdvK = {s = c99 "sojolleen"} ;
+lin sojoon_AdvK = {s = c99 "sojoon"} ;
+lin sojossa_AdvK = {s = c99 "sojossa"} ;
+lin sojottaa_VK = {s = c53A "sojottaa"} ;
+lin sokaista_VK = {s = c66 "sokaista"} ;
+lin sokaistua_VK = {s = c52 "sokaistua"} ;
+lin sokea_AK = {s = d15 "sokea"} ;
+--+ lin sokeasti_AdvK = {s = c99 "sokeasti"} ;
+lin sokeentua_VK = {s = c52A "sokeentua"} ;
+lin sokeerata_VK = {s = c73 "sokeerata"} ;
+lin _okeerata_VK = {s = c73 "šokeerata"} ;
+lin sokellus_NK = {s = d39 "sokellus"} ;
+lin sokeltaa_VK = {s = c54A "sokeltaa"} ;
+lin sokeri_NK = {s = d06 "sokeri"} ;
+lin sokerikko_NK = {s = d04A "sokerikko"} ;
+lin sokerinen_NK = {s = d38 "sokerinen"} ;
+lin sokeristua_VK = {s = c52 "sokeristua"} ;
+lin sokeriton_NK = {s = d34A "sokeriton"} ;
+lin sokeroida_VK = {s = c62 "sokeroida"} ;
+lin sokerointi_NK = {s = d05A "sokerointi"} ;
+lin sokeroittaa_VK = {s = c53A "sokeroittaa"} ;
+lin sokeroitua_VK = {s = c52A "sokeroitua"} ;
+lin sokeus_NK = {s = d40 "sokeus"} ;
+lin sokeuttaa_VK = {s = c53A "sokeuttaa"} ;
+lin sokeutua_VK = {s = c52A "sokeutua"} ;
+lin sokka_NK = {s = d10A "sokka"} ;
+lin sokkeli_NK = {s = d06 "sokkeli"} ;
+lin sokkelo_NK = {s = d02 "sokkelo"} ;
+lin sokkeloinen_NK = {s = d38 "sokkeloinen"} ;
+lin sokkeloisuus_NK = {s = d40 "sokkeloisuus"} ;
+lin sokki_NK = {s = d05A "sokki"} ;
+lin _okki_NK = {s = d05A "šokki"} ;
+lin sokko_NK = {s = d01A "sokko"} ;
+lin sokkosilla_AdvK = {s = c99 "sokkosilla"} ;
+lin sokkosille_AdvK = {s = c99 "sokkosille"} ;
+lin sola_NK = {s = d10 "sola"} ;
+lin solaarinen_NK = {s = d38 "solaarinen"} ;
+lin solaario_NK = {s = d03 "solaario"} ;
+lin solahdus_NK = {s = d39 "solahdus"} ;
+lin solahtaa_VK = {s = c53A "solahtaa"} ;
+lin solakka_NK = {s = d14A "solakka"} ;
+lin solakkuus_NK = {s = d40 "solakkuus"} ;
+lin solakoittaa_VK = {s = c53A "solakoittaa"} ;
+lin solakoitua_VK = {s = c52A "solakoitua"} ;
+lin solariumi_NK = {s = d05 "solariumi"} ;
+lin solauttaa_VK = {s = c53A "solauttaa"} ;
+lin solenoidi_NK = {s = d05 "solenoidi"} ;
+lin solidaarinen_AK = {s = d38 "solidaarinen"} ;
+--+ lin solidaarisesti_AdvK = {s = c99 "solidaarisesti"} ;
+lin solidaarisuus_NK = {s = d40 "solidaarisuus"} ;
+lin solidariteetti_NK = {s = d05A "solidariteetti"} ;
+lin solidi_NK = {s = d05 "solidi"} ;
+lin solidius_NK = {s = d40 "solidius"} ;
+lin solina_NK = {s = d12 "solina"} ;
+lin solista_VK = {s = c66 "solista"} ;
+lin solisti_NK = {s = d05 "solisti"} ;
+lin solistinen_NK = {s = d38 "solistinen"} ;
+lin soljahtaa_VK = {s = c53A "soljahtaa"} ;
+lin soljua_VK = {s = c52 "soljua"} ;
+lin soljuttaa_VK = {s = c53A "soljuttaa"} ;
+lin solkata_VK = {s = c73A "solkata"} ;
+lin solkenaan_AdvK = {s = c99 "solkenaan"} ;
+lin solki_NK = {s = d07A "solki"} ;
+lin solkinen_NK = {s = d38 "solkinen"} ;
+lin solkkaus_NK = {s = d39 "solkkaus"} ;
+lin solkottaa_VK = {s = c53A "solkottaa"} ;
+lin solkotus_NK = {s = d39 "solkotus"} ;
+lin solmeilla_VK = {s = c67 "solmeilla"} ;
+lin solmeilu_NK = {s = d02 "solmeilu"} ;
+lin solmia_VK = {s = c61 "solmia"} ;
+lin solminta_NK = {s = d09A "solminta"} ;
+lin solmio_NK = {s = d03 "solmio"} ;
+lin solmita_VK = {s = c75 "solmita"} ;
+lin solmiutua_VK = {s = c52A "solmiutua"} ;
+lin solmu_NK = {s = d01 "solmu"} ;
+lin solmuinen_NK = {s = d38 "solmuinen"} ;
+lin solmuke_NK = {s = d48A "solmuke"} ;
+lin solmukki_NK = {s = d05A "solmukki"} ;
+lin solmukohta_NK = {s = d10A "solmukohta"} ;
+lin solttu_NK = {s = d01A "solttu"} ;
+lin solu_NK = {s = d01 "solu"} ;
+lin solua_VK = {s = c52 "solua"} ;
+lin soluinen_NK = {s = d38 "soluinen"} ;
+lin solukko_NK = {s = d04A "solukko"} ;
+lin solunjakautuminen_NK = {s = d38 "solunjakautuminen"} ;
+lin solusitkos_NK = {s = d39 "solusitkos"} ;
+lin soluttaa_VK = {s = c53A "soluttaa"} ;
+lin soluttautua_VK = {s = c52A "soluttautua"} ;
+lin solutus_NK = {s = d39 "solutus"} ;
+lin soluutio_NK = {s = d03 "soluutio"} ;
+lin solvata_VK = {s = c73 "solvata"} ;
+lin solvaus_NK = {s = d39 "solvaus"} ;
+lin soma_AK = {s = d10 "soma"} ;
+lin somaattinen_NK = {s = d38 "somaattinen"} ;
+lin somali_NK = {s = d06 "somali"} ;
+--+ lin somasti_AdvK = {s = c99 "somasti"} ;
+lin somatisaatio_NK = {s = d03 "somatisaatio"} ;
+lin somatisoida_VK = {s = c62 "somatisoida"} ;
+lin somatisointi_NK = {s = d05A "somatisointi"} ;
+lin sombrero_NK = {s = d01 "sombrero"} ;
+lin somentaa_VK = {s = c54A "somentaa"} ;
+lin somentua_VK = {s = c52A "somentua"} ;
+lin somerikko_NK = {s = d04A "somerikko"} ;
+lin somero_NK = {s = d02 "somero"} ;
+lin somistaa_VK = {s = c53 "somistaa"} ;
+lin somistaja_NK = {s = d10 "somistaja"} ;
+lin somistamo_NK = {s = d02 "somistamo"} ;
+lin somistautua_VK = {s = c52A "somistautua"} ;
+lin somiste_NK = {s = d48 "somiste"} ;
+lin somisteinen_NK = {s = d38 "somisteinen"} ;
+lin somistua_VK = {s = c52 "somistua"} ;
+lin somistus_NK = {s = d39 "somistus"} ;
+lin sommitella_VK = {s = c67A "sommitella"} ;
+lin sommitelma_NK = {s = d10 "sommitelma"} ;
+lin sommittelu_NK = {s = d02 "sommittelu"} ;
+lin sompa_NK = {s = d10A "sompa"} ;
+lin sompailla_VK = {s = c67 "sompailla"} ;
+lin sonaatti_NK = {s = d05A "sonaatti"} ;
+lin sonatiini_NK = {s = d05 "sonatiini"} ;
+lin sondeerata_VK = {s = c73 "sondeerata"} ;
+lin sondi_NK = {s = d05 "sondi"} ;
+lin sonetti_NK = {s = d05A "sonetti"} ;
+lin sonni_NK = {s = d05 "sonni"} ;
+lin sonnustaa_VK = {s = c53 "sonnustaa"} ;
+lin sonnustautua_VK = {s = c52A "sonnustautua"} ;
+lin sonnustus_NK = {s = d39 "sonnustus"} ;
+lin sonorinen_NK = {s = d38 "sonorinen"} ;
+lin sonta_NK = {s = d10A "sonta"} ;
+lin sontainen_NK = {s = d38 "sontainen"} ;
+lin sontia_VK = {s = c61A "sontia"} ;
+lin sontiainen_NK = {s = d38 "sontiainen"} ;
+lin sontikka_NK = {s = d14A "sontikka"} ;
+lin sontsa_NK = {s = d10 "sontsa"} ;
+lin sooda_NK = {s = d10 "sooda"} ;
+lin soolo_NK = {s = d01 "soolo"} ;
+lin sooloilija_NK = {s = d12 "sooloilija"} ;
+lin sooloilla_VK = {s = c67 "sooloilla"} ;
+lin sooloilu_NK = {s = d02 "sooloilu"} ;
+lin sooma_NK = {s = d10 "sooma"} ;
+lin sooni_NK = {s = d05 "sooni"} ;
+lin soopa_AdvK = {s = c99 "soopa"} ;
+lin soopeli_NK = {s = d06 "soopeli"} ;
+lin soosi_NK = {s = d05 "soosi"} ;
+lin sopa_NK = {s = d10A "sopa"} ;
+lin soperrella_VK = {s = c67A "soperrella"} ;
+lin soperrus_NK = {s = d39 "soperrus"} ;
+lin sopertaa_VK = {s = c54A "sopertaa"} ;
+lin sopertelu_NK = {s = d02 "sopertelu"} ;
+lin sopeuma_NK = {s = d10 "sopeuma"} ;
+lin sopeuttaa_VK = {s = c53A "sopeuttaa"} ;
+lin sopeutua_VK = {s = c52A "sopeutua"} ;
+lin sopeutuja_NK = {s = d10 "sopeutuja"} ;
+lin sopeutuma_NK = {s = d10 "sopeutuma"} ;
+lin sopeutumaton_NK = {s = d34A "sopeutumaton"} ;
+lin sopeutumattomuus_NK = {s = d40 "sopeutumattomuus"} ;
+lin sopeutumislevitta'ytyminen_NK = {s = d38 "sopeutumislevittäytyminen"} ;
+lin sopeutus_NK = {s = d39 "sopeutus"} ;
+lin sopeutuva_NK = {s = d10 "sopeutuva"} ;
+lin sopeutuvainen_NK = {s = d38 "sopeutuvainen"} ;
+lin sopeutuvaisuus_NK = {s = d40 "sopeutuvaisuus"} ;
+lin sopeutuvuus_NK = {s = d40 "sopeutuvuus"} ;
+lin sopia_VK = {s = c61A "sopia"} ;
+lin sopimaton_NK = {s = d34A "sopimaton"} ;
+lin sopimattomasti_AdvK = {s = c99 "sopimattomasti"} ;
+lin sopimattomuus_NK = {s = d40 "sopimattomuus"} ;
+lin sopimuksellinen_NK = {s = d38 "sopimuksellinen"} ;
+lin sopimukseton_NK = {s = d34A "sopimukseton"} ;
+lin sopimus_NK = {s = d39 "sopimus"} ;
+lin sopimusaika_NK = {s = d09A "sopimusaika"} ;
+lin sopiva_AK = {s = d10 "sopiva"} ;
+lin sopivaisuus_NK = {s = d40 "sopivaisuus"} ;
+--+ lin sopivasti_AdvK = {s = c99 "sopivasti"} ;
+lin sopivuus_NK = {s = d40 "sopivuus"} ;
+lin sopottaa_VK = {s = c53A "sopottaa"} ;
+lin soppa_NK = {s = d10A "soppa"} ;
+lin soppi_NK = {s = d07A "soppi"} ;
+lin soppinen_NK = {s = d38 "soppinen"} ;
+lin sopraano_NK = {s = d02 "sopraano"} ;
+lin sopu_NK = {s = d01A "sopu"} ;
+lin sopuilla_VK = {s = c67 "sopuilla"} ;
+lin sopuilu_NK = {s = d02 "sopuilu"} ;
+lin sopuisa_AK = {s = d10 "sopuisa"} ;
+--+ lin sopuisasti_AdvK = {s = c99 "sopuisasti"} ;
+lin sopuisuus_NK = {s = d40 "sopuisuus"} ;
+lin sopukka_NK = {s = d14A "sopukka"} ;
+lin sopuli_NK = {s = d06 "sopuli"} ;
+lin sopuloida_VK = {s = c62 "sopuloida"} ;
+lin sopulointi_NK = {s = d05A "sopulointi"} ;
+--+ lin sopusointuisesti_AdvK = {s = c99 "sopusointuisesti"} ;
+lin sopusointuisuus_NK = {s = d40 "sopusointuisuus"} ;
+--+ lin sopusuhtaisesti_AdvK = {s = c99 "sopusuhtaisesti"} ;
+lin sora_NK = {s = d10 "sora"} ;
+lin sorahdella_VK = {s = c67A "sorahdella"} ;
+lin sorahdus_NK = {s = d39 "sorahdus"} ;
+lin sorahduttaa_VK = {s = c53A "sorahduttaa"} ;
+lin sorahtaa_VK = {s = c53A "sorahtaa"} ;
+lin sorainen_NK = {s = d38 "sorainen"} ;
+lin sora_r_AdvK = {s = c99 "sora-r"} ;
+lin sorastaa_VK = {s = c53 "sorastaa"} ;
+lin sorastus_NK = {s = d39 "sorastus"} ;
+lin sorata_VK = {s = c73 "sorata"} ;
+lin soraus_NK = {s = d39 "soraus"} ;
+lin sorauttaa_1_VK = {s = c53A "sorauttaa"} ;
+lin sorauttaa_2_VK = {s = c53A "sorauttaa"} ;
+lin sorautua_VK = {s = c52A "sorautua"} ;
+lin sorbetti_NK = {s = d05A "sorbetti"} ;
+lin sorbitoli_NK = {s = d05 "sorbitoli"} ;
+lin sordiino_NK = {s = d02 "sordiino"} ;
+lin sorea_AK = {s = d15 "sorea"} ;
+--+ lin soreasti_AdvK = {s = c99 "soreasti"} ;
+lin soreus_NK = {s = d40 "soreus"} ;
+lin sori_AdvK = {s = c99 "sori"} ;
+lin sorina_NK = {s = d12 "sorina"} ;
+lin sorista_VK = {s = c66 "sorista"} ;
+lin sorittaa_VK = {s = c53A "sorittaa"} ;
+lin soritus_NK = {s = d39 "soritus"} ;
+lin sorja_NK = {s = d10 "sorja"} ;
+lin sorjeta_VK = {s = c72 "sorjeta"} ;
+lin sorjistua_VK = {s = c52 "sorjistua"} ;
+lin sorkka_NK = {s = d10A "sorkka"} ;
+lin sorkkia_VK = {s = c61A "sorkkia"} ;
+lin sormeilla_VK = {s = c67 "sormeilla"} ;
+lin sormeilu_NK = {s = d02 "sormeilu"} ;
+lin sormellinen_NK = {s = d38 "sormellinen"} ;
+lin sormi_NK = {s = d07 "sormi"} ;
+lin sormijatkoinen_NK = {s = d38 "sormijatkoinen"} ;
+lin sormikas_NK = {s = d41A "sormikas"} ;
+lin sormilehdykka'inen_NK = {s = d38 "sormilehdykkäinen"} ;
+lin sorminen_NK = {s = d38 "sorminen"} ;
+lin sormio_NK = {s = d03 "sormio"} ;
+lin sormitus_NK = {s = d39 "sormitus"} ;
+lin sormus_NK = {s = d39 "sormus"} ;
+lin sormustimellinen_NK = {s = d38 "sormustimellinen"} ;
+lin sormustin_NK = {s = d33 "sormustin"} ;
+lin soroptimisti_NK = {s = d05 "soroptimisti"} ;
+lin sorry_AdvK = {s = c99 "sorry"} ;
+lin sorsa_NK = {s = d10 "sorsa"} ;
+lin sorsastaa_VK = {s = c53 "sorsastaa"} ;
+lin sorsastus_NK = {s = d39 "sorsastus"} ;
+lin sorsetti_NK = {s = d05A "sorsetti"} ;
+lin sorsia_VK = {s = c61 "sorsia"} ;
+lin sorsimo_NK = {s = d02 "sorsimo"} ;
+lin sorsinta_NK = {s = d09A "sorsinta"} ;
+lin sortaa_VK = {s = c53A "sortaa"} ;
+lin sortaja_NK = {s = d10 "sortaja"} ;
+lin sortimentti_NK = {s = d05A "sortimentti"} ;
+lin sorto_NK = {s = d01A "sorto"} ;
+lin sortsit_NK = {s = d05 "sortsit"} ;
+lin sortti_NK = {s = d05A "sortti"} ;
+lin sorttinen_NK = {s = d38 "sorttinen"} ;
+lin sortua_VK = {s = c52A "sortua"} ;
+lin sortuma_NK = {s = d10 "sortuma"} ;
+lin sorva_NK = {s = d10 "sorva"} ;
+lin sorvaaja_NK = {s = d10 "sorvaaja"} ;
+lin sorvaamo_NK = {s = d02 "sorvaamo"} ;
+lin sorvailla_VK = {s = c67 "sorvailla"} ;
+lin sorvailu_NK = {s = d02 "sorvailu"} ;
+lin sorvari_NK = {s = d06 "sorvari"} ;
+lin sorvata_VK = {s = c73 "sorvata"} ;
+lin sorvaus_NK = {s = d39 "sorvaus"} ;
+lin sorvi_NK = {s = d05 "sorvi"} ;
+lin sose_NK = {s = d48 "sose"} ;
+lin soseuttaa_VK = {s = c53A "soseuttaa"} ;
+lin soseutua_VK = {s = c52A "soseutua"} ;
+lin sosiaalinen_AK = {s = d38 "sosiaalinen"} ;
+--+ lin sosiaalisesti_AdvK = {s = c99 "sosiaalisesti"} ;
+lin sosiaalistaa_VK = {s = c53 "sosiaalistaa"} ;
+lin sosiaalistua_VK = {s = c52 "sosiaalistua"} ;
+lin sosiaalisuus_NK = {s = d40 "sosiaalisuus"} ;
+lin sosialisaatio_NK = {s = d03 "sosialisaatio"} ;
+lin sosialismi_NK = {s = d05 "sosialismi"} ;
+lin sosialisoida_VK = {s = c62 "sosialisoida"} ;
+lin sosialisointi_NK = {s = d05A "sosialisointi"} ;
+lin sosialisti_NK = {s = d05 "sosialisti"} ;
+lin sosialistinen_NK = {s = d38 "sosialistinen"} ;
+lin sosieteetti_NK = {s = d05A "sosieteetti"} ;
+lin sosiologi_NK = {s = d05 "sosiologi"} ;
+lin sosiologia_NK = {s = d12 "sosiologia"} ;
+lin sosiologinen_NK = {s = d38 "sosiologinen"} ;
+lin sosionomi_NK = {s = d05 "sosionomi"} ;
+lin sossu_NK = {s = d01 "sossu"} ;
+lin sota_NK = {s = d10A "sota"} ;
+lin sota_aika_NK = {s = d09A "sota-aika"} ;
+lin sotainen_AK = {s = d38 "sotainen"} ;
+lin sotaisa_AK = {s = d10 "sotaisa"} ;
+--+ lin sotaisasti_AdvK = {s = c99 "sotaisasti"} ;
+--+ lin sotaisesti_AdvK = {s = c99 "sotaisesti"} ;
+lin sotaisuus_NK = {s = d40 "sotaisuus"} ;
+lin sotajalalla_AdvK = {s = c99 "sotajalalla"} ;
+lin sotajalalle_AdvK = {s = c99 "sotajalalle"} ;
+lin sotapolulla_AdvK = {s = c99 "sotapolulla"} ;
+lin sotapolulle_AdvK = {s = c99 "sotapolulle"} ;
+lin sotasilla_AdvK = {s = c99 "sotasilla"} ;
+lin sotasille_AdvK = {s = c99 "sotasille"} ;
+lin sotata_VK = {s = c73A "sotata"} ;
+lin sotia_VK = {s = c61A "sotia"} ;
+lin sotiisi_NK = {s = d06 "sotiisi"} ;
+lin sotija_NK = {s = d12 "sotija"} ;
+lin sotilaallinen_AK = {s = d38 "sotilaallinen"} ;
+--+ lin sotilaallisesti_AdvK = {s = c99 "sotilaallisesti"} ;
+lin sotilaallistaa_VK = {s = c53 "sotilaallistaa"} ;
+lin sotilaallisuus_NK = {s = d40 "sotilaallisuus"} ;
+lin sotilas_NK = {s = d41 "sotilas"} ;
+lin sotka_NK = {s = d10 "sotka"} ;
+lin sotkea_VK = {s = c58 "sotkea"} ;
+lin sotkeentua_VK = {s = c52A "sotkeentua"} ;
+lin sotkeuksiin_AdvK = {s = c99 "sotkeuksiin"} ;
+lin sotkeuksissa_AdvK = {s = c99 "sotkeuksissa"} ;
+lin sotkeuksista_AdvK = {s = c99 "sotkeuksista"} ;
+lin sotkeuma_NK = {s = d10 "sotkeuma"} ;
+lin sotkeutua_VK = {s = c52A "sotkeutua"} ;
+lin sotkeutuma_NK = {s = d10 "sotkeutuma"} ;
+lin sotkoksiin_AdvK = {s = c99 "sotkoksiin"} ;
+lin sotkoksissa_AdvK = {s = c99 "sotkoksissa"} ;
+lin sotkoksista_AdvK = {s = c99 "sotkoksista"} ;
+lin sotkos_NK = {s = d39 "sotkos"} ;
+lin sotku_NK = {s = d01 "sotku"} ;
+lin sotkuinen_AK = {s = d38 "sotkuinen"} ;
+--+ lin sotkuisesti_AdvK = {s = c99 "sotkuisesti"} ;
+lin sotkuisuus_NK = {s = d40 "sotkuisuus"} ;
+lin sotkuksiin_AdvK = {s = c99 "sotkuksiin"} ;
+lin sotkuksissa_AdvK = {s = c99 "sotkuksissa"} ;
+lin sotkuksista_AdvK = {s = c99 "sotkuksista"} ;
+lin sotkussa_AdvK = {s = c99 "sotkussa"} ;
+lin sotkusta_AdvK = {s = c99 "sotkusta"} ;
+lin sotkuun_AdvK = {s = c99 "sotkuun"} ;
+lin sottaantua_VK = {s = c52A "sottaantua"} ;
+lin sottainen_NK = {s = d38 "sottainen"} ;
+lin sottiisi_NK = {s = d06 "sottiisi"} ;
+lin sotu_NK = {s = d01 "sotu"} ;
+lin soturi_NK = {s = d06 "soturi"} ;
+lin soudattaa_VK = {s = c53A "soudattaa"} ;
+lin soudella_VK = {s = c67A "soudella"} ;
+lin soukennus_NK = {s = d39 "soukennus"} ;
+lin soukentaa_VK = {s = c54A "soukentaa"} ;
+lin soukentua_VK = {s = c52A "soukentua"} ;
+lin souketa_VK = {s = c72A "souketa"} ;
+lin soukistaa_VK = {s = c53 "soukistaa"} ;
+lin soukistua_VK = {s = c52 "soukistua"} ;
+lin soukka_NK = {s = d10A "soukka"} ;
+lin soul_NK = {s = d05 "soul"} ;
+lin soundi_NK = {s = d05 "soundi"} ;
+lin soutaa_VK = {s = c55A "soutaa"} ;
+lin soutaja_NK = {s = d10 "soutaja"} ;
+lin soutelu_NK = {s = d02 "soutelu"} ;
+lin soutu_NK = {s = d01A "soutu"} ;
+lin soutuinen_NK = {s = d38 "soutuinen"} ;
+lin souvi_NK = {s = d05 "souvi"} ;
+lin soveliaisuus_NK = {s = d40 "soveliaisuus"} ;
+lin sovelias_NK = {s = d41 "sovelias"} ;
+lin sovellus_NK = {s = d39 "sovellus"} ;
+lin sovellutus_NK = {s = d39 "sovellutus"} ;
+lin soveltaa_VK = {s = c54A "soveltaa"} ;
+lin soveltua_VK = {s = c52A "soveltua"} ;
+lin soveltuvuus_NK = {s = d40 "soveltuvuus"} ;
+lin sovhoosi_NK = {s = d06 "sovhoosi"} ;
+lin sovinismi_NK = {s = d05 "sovinismi"} ;
+lin sovinisti_NK = {s = d05 "sovinisti"} ;
+lin sovinistinen_AK = {s = d38 "sovinistinen"} ;
+--+ lin sovinistisesti_AdvK = {s = c99 "sovinistisesti"} ;
+lin sovinistisuus_NK = {s = d40 "sovinistisuus"} ;
+lin sovinnainen_AK = {s = d38 "sovinnainen"} ;
+--+ lin sovinnaisesti_AdvK = {s = c99 "sovinnaisesti"} ;
+lin sovinnaisuus_NK = {s = d40 "sovinnaisuus"} ;
+lin sovinnolla_AdvK = {s = c99 "sovinnolla"} ;
+lin sovinnollinen_AK = {s = d38 "sovinnollinen"} ;
+--+ lin sovinnollisesti_AdvK = {s = c99 "sovinnollisesti"} ;
+lin sovinnollisuus_NK = {s = d40 "sovinnollisuus"} ;
+lin sovinto_NK = {s = d01A "sovinto"} ;
+lin sovite_NK = {s = d48A "sovite"} ;
+lin sovitella_VK = {s = c67A "sovitella"} ;
+lin sovitin_NK = {s = d33A "sovitin"} ;
+lin sovittaa_VK = {s = c53A "sovittaa"} ;
+lin sovittaja_NK = {s = d10 "sovittaja"} ;
+lin sovittamaton_NK = {s = d34A "sovittamaton"} ;
+lin sovittautua_VK = {s = c52A "sovittautua"} ;
+lin sovitteinen_NK = {s = d38 "sovitteinen"} ;
+lin sovitteleva_AK = {s = d10 "sovitteleva"} ;
+--+ lin sovittelevasti_AdvK = {s = c99 "sovittelevasti"} ;
+lin sovittelija_NK = {s = d12 "sovittelija"} ;
+lin sovittelu_NK = {s = d02 "sovittelu"} ;
+lin sovitus_NK = {s = d39 "sovitus"} ;
+lin spaatteli_NK = {s = d06 "spaatteli"} ;
+lin spagaatti_NK = {s = d05A "spagaatti"} ;
+lin spagetti_NK = {s = d05A "spagetti"} ;
+lin spakaatti_NK = {s = d05A "spakaatti"} ;
+lin spakkeli_NK = {s = d06 "spakkeli"} ;
+lin spaklata_VK = {s = c73 "spaklata"} ;
+lin spanieli_NK = {s = d05 "spanieli"} ;
+lin sparraaja_NK = {s = d10 "sparraaja"} ;
+lin sparrata_VK = {s = c73 "sparrata"} ;
+lin sparraus_NK = {s = d39 "sparraus"} ;
+lin spartalainen_NK = {s = d38 "spartalainen"} ;
+lin spasmi_NK = {s = d05 "spasmi"} ;
+lin spastikko_NK = {s = d04A "spastikko"} ;
+lin spastinen_NK = {s = d38 "spastinen"} ;
+lin spastisuus_NK = {s = d40 "spastisuus"} ;
+lin spatiaalinen_AK = {s = d38 "spatiaalinen"} ;
+--+ lin spatiaalisesti_AdvK = {s = c99 "spatiaalisesti"} ;
+lin spatiaalisuus_NK = {s = d40 "spatiaalisuus"} ;
+lin speedway_NK = {s = d21 "speedway"} ;
+lin speksi_1_NK = {s = d05 "speksi"} ;
+lin speksi_2_NK = {s = d05 "speksi"} ;
+lin spektaakkeli_NK = {s = d06 "spektaakkeli"} ;
+lin spektri_NK = {s = d05 "spektri"} ;
+lin spektroliitti_NK = {s = d05A "spektroliitti"} ;
+lin spektrometri_NK = {s = d05 "spektrometri"} ;
+lin spektroskopia_NK = {s = d12 "spektroskopia"} ;
+lin spekulaatio_NK = {s = d03 "spekulaatio"} ;
+lin spekulantti_NK = {s = d05A "spekulantti"} ;
+lin spekulatiivinen_NK = {s = d38 "spekulatiivinen"} ;
+lin spekuloida_VK = {s = c62 "spekuloida"} ;
+lin spekulointi_NK = {s = d05A "spekulointi"} ;
+lin speltti_NK = {s = d05A "speltti"} ;
+lin sperma_NK = {s = d09 "sperma"} ;
+lin spermisidi_NK = {s = d05 "spermisidi"} ;
+lin spesiaalinen_NK = {s = d38 "spesiaalinen"} ;
+lin spesiaalistaa_VK = {s = c53 "spesiaalistaa"} ;
+lin spesiaalistua_VK = {s = c52 "spesiaalistua"} ;
+lin spesialisoida_VK = {s = c62 "spesialisoida"} ;
+lin spesialisointi_NK = {s = d05A "spesialisointi"} ;
+lin spesialisoitua_VK = {s = c52A "spesialisoitua"} ;
+lin spesialisti_NK = {s = d05 "spesialisti"} ;
+lin spesialiteetti_NK = {s = d05A "spesialiteetti"} ;
+lin spesies_NK = {s = d39 "spesies"} ;
+lin spesifikaatio_NK = {s = d03 "spesifikaatio"} ;
+lin spesifinen_NK = {s = d38 "spesifinen"} ;
+lin spesifioida_VK = {s = c62 "spesifioida"} ;
+lin spesifiointi_NK = {s = d05A "spesifiointi"} ;
+lin spiccato_NK = {s = d02 "spiccato"} ;
+lin spiikata_VK = {s = c73A "spiikata"} ;
+lin spiikkaus_NK = {s = d39 "spiikkaus"} ;
+lin spiikkeri_NK = {s = d06 "spiikkeri"} ;
+lin spiikki_NK = {s = d05A "spiikki"} ;
+lin spinaakkeri_NK = {s = d06 "spinaakkeri"} ;
+lin spinaalinen_NK = {s = d38 "spinaalinen"} ;
+lin spinetti_NK = {s = d05A "spinetti"} ;
+lin spinnata_VK = {s = c73 "spinnata"} ;
+lin spinnaus_NK = {s = d39 "spinnaus"} ;
+lin spiraali_NK = {s = d06 "spiraali"} ;
+lin spiritismi_NK = {s = d05 "spiritismi"} ;
+lin spiritisti_NK = {s = d05 "spiritisti"} ;
+lin spiritistinen_NK = {s = d38 "spiritistinen"} ;
+lin spiritualismi_NK = {s = d05 "spiritualismi"} ;
+lin spiritualisti_NK = {s = d05 "spiritualisti"} ;
+lin spiritualistinen_NK = {s = d38 "spiritualistinen"} ;
+lin spirituelli_NK = {s = d05 "spirituelli"} ;
+lin spiritus_NK = {s = d39 "spiritus"} ;
+lin spitaali_NK = {s = d06 "spitaali"} ;
+lin spitaalinen_NK = {s = d38 "spitaalinen"} ;
+lin splitata_VK = {s = c73A "splitata"} ;
+lin splittaus_NK = {s = d39 "splittaus"} ;
+lin spoileri_NK = {s = d06 "spoileri"} ;
+lin spondee_NK = {s = d20 "spondee"} ;
+lin sponsori_NK = {s = d06 "sponsori"} ;
+lin sponsoroida_VK = {s = c62 "sponsoroida"} ;
+lin sponsorointi_NK = {s = d05A "sponsorointi"} ;
+lin sponssata_VK = {s = c73 "sponssata"} ;
+lin sponssaus_NK = {s = d39 "sponssaus"} ;
+lin spontaani_AK = {s = d06 "spontaani"} ;
+--+ lin spontaanisti_AdvK = {s = c99 "spontaanisti"} ;
+lin spontaanisuus_NK = {s = d40 "spontaanisuus"} ;
+lin spontaanius_NK = {s = d40 "spontaanius"} ;
+lin spora_NK = {s = d10 "spora"} ;
+lin sporadinen_AK = {s = d38 "sporadinen"} ;
+--+ lin sporadisesti_AdvK = {s = c99 "sporadisesti"} ;
+lin sporadisuus_NK = {s = d40 "sporadisuus"} ;
+lin sportteli_NK = {s = d06 "sportteli"} ;
+lin sportti_NK = {s = d05A "sportti"} ;
+lin sporttinen_AK = {s = d38 "sporttinen"} ;
+--+ lin sporttisesti_AdvK = {s = c99 "sporttisesti"} ;
+lin sporttisuus_NK = {s = d40 "sporttisuus"} ;
+lin spotti_NK = {s = d05A "spotti"} ;
+lin spray_NK = {s = d21 "spray"} ;
+lin spreijata_VK = {s = c73 "spreijata"} ;
+lin sprii_NK = {s = d18 "sprii"} ;
+lin sprinkleri_NK = {s = d06 "sprinkleri"} ;
+lin sprintteri_NK = {s = d06 "sprintteri"} ;
+lin spurgu_NK = {s = d01 "spurgu"} ;
+lin spurtata_VK = {s = c73A "spurtata"} ;
+lin spurtti_NK = {s = d05A "spurtti"} ;
+lin squash_NK = {s = d05 "squash"} ;
+lin squash_halli_NK = {s = d05 "squash-halli"} ;
+lin staaki_NK = {s = d05 "staaki"} ;
+lin staalo_NK = {s = d01 "staalo"} ;
+lin staattinen_AK = {s = d38 "staattinen"} ;
+--+ lin staattisesti_AdvK = {s = c99 "staattisesti"} ;
+lin staattisuus_NK = {s = d40 "staattisuus"} ;
+lin staattori_NK = {s = d06 "staattori"} ;
+lin stabiili_NK = {s = d06 "stabiili"} ;
+lin stabiilius_NK = {s = d40 "stabiilius"} ;
+lin stabilisoida_VK = {s = c62 "stabilisoida"} ;
+lin stabiliteetti_NK = {s = d05A "stabiliteetti"} ;
+lin stabiloida_VK = {s = c62 "stabiloida"} ;
+lin stabilointi_NK = {s = d05A "stabilointi"} ;
+lin stadi_NK = {s = d05 "stadi"} ;
+lin stadion_NK = {s = d06 "stadion"} ;
+lin stafylokokki_NK = {s = d05A "stafylokokki"} ;
+lin stagflaatio_NK = {s = d03 "stagflaatio"} ;
+lin stagnaatio_NK = {s = d03 "stagnaatio"} ;
+lin staili_NK = {s = d05 "staili"} ;
+lin stalinismi_NK = {s = d05 "stalinismi"} ;
+lin stalinisti_NK = {s = d05 "stalinisti"} ;
+lin stalinistinen_NK = {s = d38 "stalinistinen"} ;
+lin standaari_NK = {s = d06 "standaari"} ;
+lin standardi_NK = {s = d06 "standardi"} ;
+lin standardikoko_NK = {s = d01A "standardikoko"} ;
+lin standardisoida_VK = {s = c62 "standardisoida"} ;
+lin standardisoitua_VK = {s = c52A "standardisoitua"} ;
+lin standardoida_VK = {s = c62 "standardoida"} ;
+lin standardointi_NK = {s = d05A "standardointi"} ;
+lin standardoitua_VK = {s = c52A "standardoitua"} ;
+lin standartti_NK = {s = d05A "standartti"} ;
+lin stannioli_NK = {s = d05 "stannioli"} ;
+lin stanssata_VK = {s = c73 "stanssata"} ;
+lin stanssi_NK = {s = d05 "stanssi"} ;
+lin startata_VK = {s = c73A "startata"} ;
+lin starttaus_NK = {s = d39 "starttaus"} ;
+lin startti_NK = {s = d05A "startti"} ;
+lin statiikka_NK = {s = d14A "statiikka"} ;
+lin statiivi_NK = {s = d05 "statiivi"} ;
+lin statisti_NK = {s = d05 "statisti"} ;
+lin statistiikka_NK = {s = d09A "statistiikka"} ;
+lin statistinen_NK = {s = d38 "statistinen"} ;
+lin status_NK = {s = d39 "status"} ;
+lin statuutti_NK = {s = d05A "statuutti"} ;
+lin steariini_NK = {s = d05 "steariini"} ;
+lin stemma_NK = {s = d09 "stemma"} ;
+lin stemmata_VK = {s = c73 "stemmata"} ;
+lin stepata_VK = {s = c73A "stepata"} ;
+lin steppaaja_NK = {s = d10 "steppaaja"} ;
+lin steppaus_NK = {s = d39 "steppaus"} ;
+lin stepperi_NK = {s = d06 "stepperi"} ;
+lin steppi_1_NK = {s = d05A "steppi"} ;
+lin steppi_2_NK = {s = d05A "steppi"} ;
+lin stereo_NK = {s = d03 "stereo"} ;
+lin stereofonia_NK = {s = d12 "stereofonia"} ;
+lin stereofoninen_NK = {s = d38 "stereofoninen"} ;
+lin stereoskooppi_NK = {s = d05A "stereoskooppi"} ;
+lin stereoskooppinen_NK = {s = d38 "stereoskooppinen"} ;
+lin stereotypia_NK = {s = d12 "stereotypia"} ;
+--+ lin stereotyyppisesti_AdvK = {s = c99 "stereotyyppisesti"} ;
+lin stereotyyppisyys_NK = {s = d40 "stereotyyppisyys"} ;
+lin steriili_AK = {s = d06 "steriili"} ;
+--+ lin steriilisti_AdvK = {s = c99 "steriilisti"} ;
+lin steriilisyys_NK = {s = d40 "steriilisyys"} ;
+lin steriiliys_NK = {s = d40 "steriiliys"} ;
+lin sterilaattori_NK = {s = d06 "sterilaattori"} ;
+lin sterilisaatio_NK = {s = d03 "sterilisaatio"} ;
+lin sterilisaattori_NK = {s = d06 "sterilisaattori"} ;
+lin sterilisoida_VK = {s = c62 "sterilisoida"} ;
+lin sterilisointi_NK = {s = d05A "sterilisointi"} ;
+lin steriliteetti_NK = {s = d05A "steriliteetti"} ;
+lin steriloida_VK = {s = c62 "steriloida"} ;
+lin sterilointi_NK = {s = d05A "sterilointi"} ;
+lin steroidi_NK = {s = d05 "steroidi"} ;
+lin stetoskooppi_NK = {s = d05A "stetoskooppi"} ;
+lin stidi_NK = {s = d05 "stidi"} ;
+lin stigma_NK = {s = d09 "stigma"} ;
+lin stiiknafuulia_NK = {s = d12 "stiiknafuulia"} ;
+lin stikki_NK = {s = d05A "stikki"} ;
+lin stiletti_NK = {s = d05A "stiletti"} ;
+lin stilisoida_VK = {s = c62 "stilisoida"} ;
+lin stilisointi_NK = {s = d05A "stilisointi"} ;
+lin stilisti_NK = {s = d05 "stilisti"} ;
+lin stilistiikka_NK = {s = d09A "stilistiikka"} ;
+lin stilistinen_NK = {s = d38 "stilistinen"} ;
+lin still_drink_NK = {s = d05 "still drink"} ;
+lin stilleben_NK = {s = d06 "stilleben"} ;
+lin stimulaatio_NK = {s = d03 "stimulaatio"} ;
+lin stimulanssi_NK = {s = d05 "stimulanssi"} ;
+lin stimulantti_NK = {s = d05A "stimulantti"} ;
+lin stimuloida_VK = {s = c62 "stimuloida"} ;
+lin stimulointi_NK = {s = d05A "stimulointi"} ;
+lin stipendi_NK = {s = d05 "stipendi"} ;
+lin stipendiaatti_NK = {s = d05A "stipendiaatti"} ;
+lin stoalainen_AK = {s = d38 "stoalainen"} ;
+--+ lin stoalaisesti_AdvK = {s = c99 "stoalaisesti"} ;
+lin stoalaisuus_NK = {s = d40 "stoalaisuus"} ;
+lin stoola_NK = {s = d10 "stoola"} ;
+lin stoori_NK = {s = d05 "stoori"} ;
+lin stop_NK = {s = d05 "stop"} ;
+lin stoppi_NK = {s = d05A "stoppi"} ;
+lin stout_NK = {s = d05 "stout"} ;
+lin stradivarius_NK = {s = d39 "stradivarius"} ;
+lin strassi_NK = {s = d05 "strassi"} ;
+lin strategi_NK = {s = d05 "strategi"} ;
+lin strategia_NK = {s = d12 "strategia"} ;
+lin strateginen_AK = {s = d38 "strateginen"} ;
+--+ lin strategisesti_AdvK = {s = c99 "strategisesti"} ;
+lin stratosfa'a'ri_NK = {s = d05 "stratosfääri"} ;
+lin streikata_VK = {s = c73A "streikata"} ;
+lin streptokokki_NK = {s = d05A "streptokokki"} ;
+lin stressaantua_VK = {s = c52A "stressaantua"} ;
+lin stressata_VK = {s = c73 "stressata"} ;
+lin stressautua_VK = {s = c52A "stressautua"} ;
+lin stressi_NK = {s = d05 "stressi"} ;
+lin stretching_NK = {s = d05 "stretching"} ;
+lin stripata_VK = {s = c73A "stripata"} ;
+lin strippari_NK = {s = d06 "strippari"} ;
+lin striptease_NK = {s = d08 "striptease"} ;
+lin stroganov_NK = {s = d05 "stroganov"} ;
+lin strontium_NK = {s = d05 "strontium"} ;
+lin strukturaalinen_NK = {s = d38 "strukturaalinen"} ;
+lin strukturalismi_NK = {s = d05 "strukturalismi"} ;
+lin strukturalisti_NK = {s = d05 "strukturalisti"} ;
+lin strukturalistinen_AK = {s = d38 "strukturalistinen"} ;
+--+ lin strukturalistisesti_AdvK = {s = c99 "strukturalistisesti"} ;
+lin strukturoida_VK = {s = c62 "strukturoida"} ;
+lin strukturointi_NK = {s = d05A "strukturointi"} ;
+lin struktuuri_NK = {s = d06 "struktuuri"} ;
+lin strutsi_NK = {s = d05 "strutsi"} ;
+lin struudeli_NK = {s = d06 "struudeli"} ;
+lin struuma_NK = {s = d10 "struuma"} ;
+lin strykniini_NK = {s = d05 "strykniini"} ;
+lin stro'sseli_NK = {s = d06 "strösseli"} ;
+lin studio_NK = {s = d03 "studio"} ;
+lin stuertti_NK = {s = d05A "stuertti"} ;
+lin stukki_NK = {s = d05A "stukki"} ;
+lin stukko_NK = {s = d01A "stukko"} ;
+lin stuntman_NK = {s = d05 "stuntman"} ;
+lin suahili_NK = {s = d05 "suahili"} ;
+lin subarktinen_NK = {s = d38 "subarktinen"} ;
+lin subjekti_NK = {s = d05 "subjekti"} ;
+lin subjektiivinen_AK = {s = d38 "subjektiivinen"} ;
+--+ lin subjektiivisesti_AdvK = {s = c99 "subjektiivisesti"} ;
+lin subjektiivisuus_NK = {s = d40 "subjektiivisuus"} ;
+lin subjektivismi_NK = {s = d05 "subjektivismi"} ;
+lin subjektivistinen_NK = {s = d38 "subjektivistinen"} ;
+lin sublimaatio_NK = {s = d03 "sublimaatio"} ;
+lin sublimoida_VK = {s = c62 "sublimoida"} ;
+lin sublimointi_NK = {s = d05A "sublimointi"} ;
+lin sublimoitua_VK = {s = c52A "sublimoitua"} ;
+lin subretti_NK = {s = d05A "subretti"} ;
+lin subsidiariteetti_NK = {s = d05A "subsidiariteetti"} ;
+lin substanssi_NK = {s = d05 "substanssi"} ;
+lin substantiivi_NK = {s = d05 "substantiivi"} ;
+lin substantiivinen_NK = {s = d38 "substantiivinen"} ;
+lin substituoida_VK = {s = c62 "substituoida"} ;
+lin substituoitua_VK = {s = c52A "substituoitua"} ;
+lin substituutio_NK = {s = d03 "substituutio"} ;
+lin substituutti_NK = {s = d05A "substituutti"} ;
+lin subtrooppinen_NK = {s = d38 "subtrooppinen"} ;
+lin subventio_NK = {s = d03 "subventio"} ;
+lin subventoida_VK = {s = c62 "subventoida"} ;
+lin subventointi_NK = {s = d05A "subventointi"} ;
+lin sueta_VK = {s = c74A "sueta"} ;
+lin suffiksi_NK = {s = d05 "suffiksi"} ;
+lin suffragetti_NK = {s = d05A "suffragetti"} ;
+lin suflee_NK = {s = d20 "suflee"} ;
+lin suggeroida_VK = {s = c62 "suggeroida"} ;
+lin suggeroitavuus_NK = {s = d40 "suggeroitavuus"} ;
+lin suggeroitua_VK = {s = c52A "suggeroitua"} ;
+lin suggestiivinen_AK = {s = d38 "suggestiivinen"} ;
+--+ lin suggestiivisesti_AdvK = {s = c99 "suggestiivisesti"} ;
+lin suggestiivisuus_NK = {s = d40 "suggestiivisuus"} ;
+lin suggestio_NK = {s = d03 "suggestio"} ;
+lin suggestopedia_NK = {s = d12 "suggestopedia"} ;
+lin suggestopedinen_NK = {s = d38 "suggestopedinen"} ;
+lin suhahdella_VK = {s = c67A "suhahdella"} ;
+lin suhahdus_NK = {s = d39 "suhahdus"} ;
+lin suhahtaa_VK = {s = c53A "suhahtaa"} ;
+lin suhahtelu_NK = {s = d02 "suhahtelu"} ;
+lin suhailla_VK = {s = c67 "suhailla"} ;
+lin suhari_NK = {s = d06 "suhari"} ;
+lin suhata_VK = {s = c73 "suhata"} ;
+lin suhaus_1_NK = {s = d39 "suhaus"} ;
+lin suhaus_2_NK = {s = d39 "suhaus"} ;
+lin suhauttaa_VK = {s = c53A "suhauttaa"} ;
+lin suhdanne_NK = {s = d48A "suhdanne"} ;
+lin suhdaton_NK = {s = d34A "suhdaton"} ;
+lin suhde_NK = {s = d48A "suhde"} ;
+lin suhdittaa_VK = {s = c53A "suhdittaa"} ;
+lin suhdittua_VK = {s = c52A "suhdittua"} ;
+lin suhditus_NK = {s = d39 "suhditus"} ;
+lin suhina_NK = {s = d12 "suhina"} ;
+lin suhista_VK = {s = c66 "suhista"} ;
+lin suht_AdvK = {s = c99 "suht"} ;
+lin suhta_NK = {s = d10A "suhta"} ;
+lin suhtainen_NK = {s = d38 "suhtainen"} ;
+lin suhtaisuus_NK = {s = d40 "suhtaisuus"} ;
+lin suhtauttaa_VK = {s = c53A "suhtauttaa"} ;
+lin suhtautua_VK = {s = c52A "suhtautua"} ;
+lin suhteellinen_AK = {s = d38 "suhteellinen"} ;
+--+ lin suhteellisesti_AdvK = {s = c99 "suhteellisesti"} ;
+lin suhteellistaa_VK = {s = c53 "suhteellistaa"} ;
+lin suhteellisuus_NK = {s = d40 "suhteellisuus"} ;
+lin suhteen_AdvK = {s = c99 "suhteen"} ;
+lin suhteeton_NK = {s = d34A "suhteeton"} ;
+lin suhteettomasti_AdvK = {s = c99 "suhteettomasti"} ;
+lin suhteettomuus_NK = {s = d40 "suhteettomuus"} ;
+lin suhteinen_NK = {s = d38 "suhteinen"} ;
+lin suhteittaa_VK = {s = c53A "suhteittaa"} ;
+lin suhteuttaa_VK = {s = c53A "suhteuttaa"} ;
+lin suhteutua_VK = {s = c52A "suhteutua"} ;
+lin suhtkoht_AdvK = {s = c99 "suhtkoht"} ;
+lin suihkari_NK = {s = d06 "suihkari"} ;
+lin suihkata_VK = {s = c73 "suihkata"} ;
+lin suihkaus_NK = {s = d39 "suihkaus"} ;
+lin suihke_NK = {s = d48 "suihke"} ;
+lin suihkia_VK = {s = c61 "suihkia"} ;
+lin suihku_NK = {s = d01 "suihku"} ;
+lin suihkuta_VK = {s = c74 "suihkuta"} ;
+lin suihkute_NK = {s = d48A "suihkute"} ;
+lin suihkutin_NK = {s = d33A "suihkutin"} ;
+lin suihkuttaa_VK = {s = c53A "suihkuttaa"} ;
+lin suihkutus_NK = {s = d39 "suihkutus"} ;
+lin suikale_NK = {s = d48 "suikale"} ;
+lin suikaloida_VK = {s = c62 "suikaloida"} ;
+lin suikalointi_NK = {s = d05A "suikalointi"} ;
+lin suikata_VK = {s = c73A "suikata"} ;
+lin suikea_NK = {s = d15 "suikea"} ;
+lin suikerrella_VK = {s = c67A "suikerrella"} ;
+lin suikertaa_VK = {s = c54A "suikertaa"} ;
+lin suikka_NK = {s = d10A "suikka"} ;
+lin suikula_NK = {s = d12 "suikula"} ;
+lin suikulainen_NK = {s = d38 "suikulainen"} ;
+lin suinen_NK = {s = d38 "suinen"} ;
+lin suinkaan_AdvK = {s = c99 "suinkaan"} ;
+lin suinkin_AdvK = {s = c99 "suinkin"} ;
+lin suin_pa'in_AdvK = {s = c99 "suin päin"} ;
+lin suipentaa_VK = {s = c54A "suipentaa"} ;
+lin suipentua_VK = {s = c52A "suipentua"} ;
+lin suipeta_VK = {s = c72A "suipeta"} ;
+lin suipistaa_VK = {s = c53 "suipistaa"} ;
+lin suipistella_VK = {s = c67 "suipistella"} ;
+lin suipistua_VK = {s = c52 "suipistua"} ;
+lin suippo_NK = {s = d01A "suippo"} ;
+lin suippu_NK = {s = d01A "suippu"} ;
+lin suisidaalinen_NK = {s = d38 "suisidaalinen"} ;
+lin suistaa_VK = {s = c53 "suistaa"} ;
+lin suisto_NK = {s = d01 "suisto"} ;
+lin suistua_VK = {s = c52 "suistua"} ;
+lin suitsait_AdvK = {s = c99 "suitsait"} ;
+lin suitsea_VK = {s = c58 "suitsea"} ;
+--? lin suitset_NK = {s = d07 "suitset"} ;
+lin suitsia_VK = {s = c61 "suitsia"} ;
+lin suitsittaa_VK = {s = c53A "suitsittaa"} ;
+lin suitsuke_NK = {s = d48A "suitsuke"} ;
+lin suitsuta_VK = {s = c74 "suitsuta"} ;
+lin suitsute_NK = {s = d48A "suitsute"} ;
+lin suitsuttaa_VK = {s = c53A "suitsuttaa"} ;
+lin suitsutus_NK = {s = d39 "suitsutus"} ;
+lin suivaantua_VK = {s = c52A "suivaantua"} ;
+lin suivautua_VK = {s = c52A "suivautua"} ;
+lin sujahdella_VK = {s = c67A "sujahdella"} ;
+lin sujahdus_NK = {s = d39 "sujahdus"} ;
+lin sujahtaa_VK = {s = c53A "sujahtaa"} ;
+lin sujakka_NK = {s = d14A "sujakka"} ;
+lin sujaus_NK = {s = d39 "sujaus"} ;
+lin sujautella_VK = {s = c67A "sujautella"} ;
+lin sujauttaa_VK = {s = c53A "sujauttaa"} ;
+lin sujua_VK = {s = c52 "sujua"} ;
+lin sujut_AdvK = {s = c99 "sujut"} ;
+lin sujutella_VK = {s = c67A "sujutella"} ;
+lin sujuttaa_VK = {s = c53A "sujuttaa"} ;
+lin sujuttautua_VK = {s = c52A "sujuttautua"} ;
+lin sujuva_AK = {s = d10 "sujuva"} ;
+--+ lin sujuvasti_AdvK = {s = c99 "sujuvasti"} ;
+lin sujuvoittaa_VK = {s = c53A "sujuvoittaa"} ;
+lin sujuvuus_NK = {s = d40 "sujuvuus"} ;
+lin suka_NK = {s = d10A "suka"} ;
+lin sukaatti_NK = {s = d05A "sukaatti"} ;
+lin sukainen_NK = {s = d38 "sukainen"} ;
+lin sukaista_VK = {s = c66 "sukaista"} ;
+lin sukanen_NK = {s = d38 "sukanen"} ;
+lin sukellella_VK = {s = c67A "sukellella"} ;
+lin sukelluksiin_AdvK = {s = c99 "sukelluksiin"} ;
+lin sukelluksissa_AdvK = {s = c99 "sukelluksissa"} ;
+lin sukelluksista_AdvK = {s = c99 "sukelluksista"} ;
+lin sukellus_NK = {s = d39 "sukellus"} ;
+lin sukelluttaa_VK = {s = c53A "sukelluttaa"} ;
+lin sukeltaa_VK = {s = c54A "sukeltaa"} ;
+lin sukeltaja_NK = {s = d10 "sukeltaja"} ;
+lin sukeltautua_VK = {s = c52A "sukeltautua"} ;
+lin sukeutua_VK = {s = c52A "sukeutua"} ;
+lin sukia_VK = {s = c61A "sukia"} ;
+lin sukijaki_NK = {s = d05 "sukijaki"} ;
+lin sukka_NK = {s = d10A "sukka"} ;
+lin sukkaatti_NK = {s = d05A "sukkaatti"} ;
+lin sukkajalassa_AdvK = {s = c99 "sukkajalassa"} ;
+lin sukkasillaan_AdvK = {s = c99 "sukkasillaan"} ;
+lin sukkasilleen_AdvK = {s = c99 "sukkasilleen"} ;
+lin sukkela_AK = {s = d10 "sukkela"} ;
+lin sukkelaan_AdvK = {s = c99 "sukkelaan"} ;
+--+ lin sukkelasti_AdvK = {s = c99 "sukkelasti"} ;
+lin sukkeluus_NK = {s = d40 "sukkeluus"} ;
+lin sukkessio_NK = {s = d03 "sukkessio"} ;
+--? lin sukkikset_NK = {s = d39 "sukkikset"} ;
+lin sukkula_NK = {s = d12 "sukkula"} ;
+lin sukkuloida_VK = {s = c62 "sukkuloida"} ;
+lin sukkulointi_NK = {s = d05A "sukkulointi"} ;
+lin suklaa_NK = {s = d17 "suklaa"} ;
+lin suklaakuorrutteinen_NK = {s = d38 "suklaakuorrutteinen"} ;
+lin suksee_NK = {s = d20 "suksee"} ;
+lin suksessio_NK = {s = d03 "suksessio"} ;
+lin suksi_NK = {s = d07 "suksi"} ;
+lin suksia_VK = {s = c61 "suksia"} ;
+lin suku_NK = {s = d01A "suku"} ;
+lin sukuinen_NK = {s = d38 "sukuinen"} ;
+lin sukuisin_AdvK = {s = c99 "sukuisin"} ;
+lin sukuisuus_NK = {s = d40 "sukuisuus"} ;
+lin sukujuuri_NK = {s = d26 "sukujuuri"} ;
+lin sukulaistua_VK = {s = c52 "sukulaistua"} ;
+lin sukulaisuus_NK = {s = d40 "sukulaisuus"} ;
+lin sukuloida_VK = {s = c68 "sukuloida"} ;
+lin sukupuolenma'a'ra'ytyminen_NK = {s = d38 "sukupuolenmääräytyminen"} ;
+lin sukupuoleton_NK = {s = d34A "sukupuoleton"} ;
+--+ lin sukupuolisesti_AdvK = {s = c99 "sukupuolisesti"} ;
+lin sukupuolisuus_NK = {s = d40 "sukupuolisuus"} ;
+lin sukupuutto_NK = {s = d01A "sukupuutto"} ;
+lin sukurutsa_NK = {s = d10 "sukurutsa"} ;
+lin sukurutsainen_NK = {s = d38 "sukurutsainen"} ;
+lin sukurutsaus_NK = {s = d39 "sukurutsaus"} ;
+lin sula_NK = {s = d10 "sula"} ;
+lin sulaa_VK = {s = c53 "sulaa"} ;
+lin sulake_NK = {s = d48A "sulake"} ;
+lin sulate_NK = {s = d48A "sulate"} ;
+lin sulatella_VK = {s = c67A "sulatella"} ;
+lin sulattaa_VK = {s = c53A "sulattaa"} ;
+lin sulattamo_NK = {s = d02 "sulattamo"} ;
+lin sulatteinen_NK = {s = d38 "sulatteinen"} ;
+lin sulattimo_NK = {s = d02 "sulattimo"} ;
+lin sulatto_NK = {s = d01A "sulatto"} ;
+lin sulatus_NK = {s = d39 "sulatus"} ;
+lin sulauma_NK = {s = d10 "sulauma"} ;
+lin sulauttaa_VK = {s = c53A "sulauttaa"} ;
+lin sulautua_VK = {s = c52A "sulautua"} ;
+lin sulautuma_NK = {s = d10 "sulautuma"} ;
+lin sulava_AK = {s = d10 "sulava"} ;
+--+ lin sulavasti_AdvK = {s = c99 "sulavasti"} ;
+lin sulavuus_NK = {s = d40 "sulavuus"} ;
+lin sulfa_NK = {s = d10 "sulfa"} ;
+lin sulfaatti_NK = {s = d05A "sulfaatti"} ;
+lin sulfidi_NK = {s = d05 "sulfidi"} ;
+lin sulfiitti_NK = {s = d05A "sulfiitti"} ;
+lin sulfonamidi_NK = {s = d05 "sulfonamidi"} ;
+lin sulhanen_NK = {s = d38 "sulhanen"} ;
+lin sulho_NK = {s = d01 "sulho"} ;
+lin sulittaa_VK = {s = c53A "sulittaa"} ;
+lin sulitus_NK = {s = d39 "sulitus"} ;
+lin sulje_NK = {s = d48A "sulje"} ;
+lin suljin_NK = {s = d33A "suljin"} ;
+lin sulka_NK = {s = d10A "sulka"} ;
+lin sulkainen_NK = {s = d38 "sulkainen"} ;
+lin sulkava_NK = {s = d10 "sulkava"} ;
+lin sulkea_VK = {s = c58A "sulkea"} ;
+lin sulkeinen_NK = {s = d38 "sulkeinen"} ;
+lin sulkemisaika_NK = {s = d09A "sulkemisaika"} ;
+lin sulkeuksiin_AdvK = {s = c99 "sulkeuksiin"} ;
+lin sulkeuksissa_AdvK = {s = c99 "sulkeuksissa"} ;
+lin sulkeuma_NK = {s = d10 "sulkeuma"} ;
+lin sulkeutua_VK = {s = c52A "sulkeutua"} ;
+lin sulkeutuma_NK = {s = d10 "sulkeutuma"} ;
+lin sulkeutuneisuus_NK = {s = d40 "sulkeutuneisuus"} ;
+lin sulkeutunut_NK = {s = d47 "sulkeutunut"} ;
+lin sulkia_VK = {s = c61 "sulkia"} ;
+lin sulkija_NK = {s = d12 "sulkija"} ;
+lin sulku_NK = {s = d01A "sulku"} ;
+lin sulloa_VK = {s = c52 "sulloa"} ;
+lin sullonta_NK = {s = d09A "sullonta"} ;
+lin sulloutua_VK = {s = c52A "sulloutua"} ;
+lin sulo_AK = {s = d01 "sulo"} ;
+lin suloinen_AK = {s = d38 "suloinen"} ;
+lin suloisa_NK = {s = d10 "suloisa"} ;
+--+ lin suloisesti_AdvK = {s = c99 "suloisesti"} ;
+lin suloisuus_NK = {s = d40 "suloisuus"} ;
+lin sulokas_AK = {s = d41A "sulokas"} ;
+--+ lin sulokkaasti_AdvK = {s = c99 "sulokkaasti"} ;
+lin sulokkuus_NK = {s = d40 "sulokkuus"} ;
+lin sulostaa_VK = {s = c53 "sulostaa"} ;
+--+ lin sulosti_AdvK = {s = c99 "sulosti"} ;
+lin sulostuttaa_VK = {s = c53A "sulostuttaa"} ;
+lin sulotar_NK = {s = d32A "sulotar"} ;
+lin suloton_NK = {s = d34A "suloton"} ;
+lin sulottomuus_NK = {s = d40 "sulottomuus"} ;
+lin sulous_NK = {s = d40 "sulous"} ;
+lin sulppu_NK = {s = d01A "sulppu"} ;
+lin sulputtaa_VK = {s = c53A "sulputtaa"} ;
+lin sulputus_NK = {s = d39 "sulputus"} ;
+lin sultsina_NK = {s = d12 "sultsina"} ;
+lin sulttaani_NK = {s = d06 "sulttaani"} ;
+lin sulute_NK = {s = d48A "sulute"} ;
+lin suluttaa_VK = {s = c53A "suluttaa"} ;
+lin sulutus_NK = {s = d39 "sulutus"} ;
+lin suma_NK = {s = d10 "suma"} ;
+lin sumautua_VK = {s = c52A "sumautua"} ;
+lin sumea_NK = {s = d15 "sumea"} ;
+lin sumeilematon_NK = {s = d34A "sumeilematon"} ;
+lin sumeilematta_AdvK = {s = c99 "sumeilematta"} ;
+lin sumeilla_VK = {s = c67 "sumeilla"} ;
+lin sumentaa_VK = {s = c54A "sumentaa"} ;
+lin sumentua_VK = {s = c52A "sumentua"} ;
+lin sumeri_NK = {s = d06 "sumeri"} ;
+lin sumeta_VK = {s = c72 "sumeta"} ;
+lin sumeus_NK = {s = d40 "sumeus"} ;
+lin summa_NK = {s = d10 "summa"} ;
+lin summaarinen_AK = {s = d38 "summaarinen"} ;
+--+ lin summaarisesti_AdvK = {s = c99 "summaarisesti"} ;
+lin summaarisuus_NK = {s = d40 "summaarisuus"} ;
+lin summainen_NK = {s = d38 "summainen"} ;
+lin summamutikassa_AdvK = {s = c99 "summamutikassa"} ;
+lin summanmutikassa_AdvK = {s = c99 "summanmutikassa"} ;
+lin summassa_AdvK = {s = c99 "summassa"} ;
+lin summata_VK = {s = c73 "summata"} ;
+lin summatiivinen_NK = {s = d38 "summatiivinen"} ;
+lin summaton_NK = {s = d34A "summaton"} ;
+lin summattomasti_AdvK = {s = c99 "summattomasti"} ;
+lin summattomuus_NK = {s = d40 "summattomuus"} ;
+lin summaus_NK = {s = d39 "summaus"} ;
+lin summautua_VK = {s = c52A "summautua"} ;
+lin summeerata_VK = {s = c73 "summeerata"} ;
+lin summeri_NK = {s = d06 "summeri"} ;
+lin summittain_AdvK = {s = c99 "summittain"} ;
+lin summittainen_AK = {s = d38 "summittainen"} ;
+--+ lin summittaisesti_AdvK = {s = c99 "summittaisesti"} ;
+lin summittaisuus_NK = {s = d40 "summittaisuus"} ;
+lin sumo_NK = {s = d01 "sumo"} ;
+lin sumplata_VK = {s = c73 "sumplata"} ;
+lin sumplaus_NK = {s = d39 "sumplaus"} ;
+lin sumplia_VK = {s = c61 "sumplia"} ;
+lin sumppi_NK = {s = d05A "sumppi"} ;
+lin sumppu_NK = {s = d01A "sumppu"} ;
+lin sumppuuntua_VK = {s = c52A "sumppuuntua"} ;
+lin sumputtaa_VK = {s = c53A "sumputtaa"} ;
+lin sumputus_NK = {s = d39 "sumputus"} ;
+lin sumu_NK = {s = d01 "sumu"} ;
+lin sumuinen_NK = {s = d38 "sumuinen"} ;
+lin sumuta_VK = {s = c74 "sumuta"} ;
+lin sumute_NK = {s = d48A "sumute"} ;
+lin sumutin_NK = {s = d33A "sumutin"} ;
+lin sumuttaa_VK = {s = c53A "sumuttaa"} ;
+lin sumuttua_VK = {s = c52A "sumuttua"} ;
+lin sumutus_NK = {s = d39 "sumutus"} ;
+lin sumuuntua_VK = {s = c52A "sumuuntua"} ;
+lin sun_AdvK = {s = c99 "sun"} ;
+lin sunna_NK = {s = d10 "sunna"} ;
+lin sunnalaisuus_NK = {s = d40 "sunnalaisuus"} ;
+lin sunni_NK = {s = d05 "sunni"} ;
+lin sunnuntai_NK = {s = d18 "sunnuntai"} ;
+lin sunnuntainen_NK = {s = d38 "sunnuntainen"} ;
+lin sunnuntaisin_AdvK = {s = c99 "sunnuntaisin"} ;
+lin suntio_NK = {s = d03 "suntio"} ;
+lin suntis_NK = {s = d39 "suntis"} ;
+lin suntti_NK = {s = d05A "suntti"} ;
+lin suo_NK = {s = d19 "suo"} ;
+lin suoda_VK = {s = c64 "suoda"} ;
+lin suodatin_NK = {s = d33A "suodatin"} ;
+lin suodattaa_VK = {s = c53A "suodattaa"} ;
+lin suodattua_VK = {s = c52A "suodattua"} ;
+lin suodatus_NK = {s = d39 "suodatus"} ;
+lin suodin_NK = {s = d33A "suodin"} ;
+lin suodos_NK = {s = d39 "suodos"} ;
+lin suoja_1_NK = {s = d10 "suoja"} ;
+lin suoja_2_NK = {s = d10 "suoja"} ;
+lin suoja_3_NK = {s = d10 "suoja"} ;
+lin suoja_aika_NK = {s = d09A "suoja-aika"} ;
+lin suojaamaton_NK = {s = d34A "suojaamaton"} ;
+lin suojaeristetty_NK = {s = d01A "suojaeristetty"} ;
+lin suojain_NK = {s = d33 "suojain"} ;
+lin suojainen_1_NK = {s = d38 "suojainen"} ;
+lin suojainen_2_NK = {s = d38 "suojainen"} ;
+lin suojaisa_NK = {s = d10 "suojaisa"} ;
+lin suojakerroin_NK = {s = d33A "suojakerroin"} ;
+lin suojata_VK = {s = c73 "suojata"} ;
+lin suojaton_NK = {s = d34A "suojaton"} ;
+lin suojatti_NK = {s = d05A "suojatti"} ;
+lin suojaus_NK = {s = d39 "suojaus"} ;
+lin suojautua_VK = {s = c52A "suojautua"} ;
+lin suojelija_NK = {s = d12 "suojelija"} ;
+lin suojella_VK = {s = c67 "suojella"} ;
+lin suojelu_NK = {s = d02 "suojelu"} ;
+lin suojelus_NK = {s = d39 "suojelus"} ;
+lin suojus_NK = {s = d39 "suojus"} ;
+lin suola_NK = {s = d09 "suola"} ;
+lin suolaantua_VK = {s = c52A "suolaantua"} ;
+lin suolaisuus_NK = {s = d40 "suolaisuus"} ;
+lin suolata_VK = {s = c73 "suolata"} ;
+lin suolaton_NK = {s = d34A "suolaton"} ;
+lin suolaus_NK = {s = d39 "suolaus"} ;
+lin suolautua_VK = {s = c52A "suolautua"} ;
+lin suoli_NK = {s = d26 "suoli"} ;
+lin suolinkainen_NK = {s = d38 "suolinkainen"} ;
+lin suolistaa_VK = {s = c53 "suolistaa"} ;
+lin suolisto_NK = {s = d02 "suolisto"} ;
+lin suoltaa_VK = {s = c54A "suoltaa"} ;
+lin suoltua_VK = {s = c52A "suoltua"} ;
+lin suomalainen_AK = {s = d38 "suomalainen"} ;
+--+ lin suomalaisesti_AdvK = {s = c99 "suomalaisesti"} ;
+lin suomalaisittain_AdvK = {s = c99 "suomalaisittain"} ;
+lin suomalaistaa_VK = {s = c53 "suomalaistaa"} ;
+lin suomalaistua_VK = {s = c52 "suomalaistua"} ;
+lin suomalaistuttaa_VK = {s = c53A "suomalaistuttaa"} ;
+lin suomalaisuus_NK = {s = d40 "suomalaisuus"} ;
+lin suomennos_NK = {s = d39 "suomennos"} ;
+lin suomennus_NK = {s = d39 "suomennus"} ;
+lin suomentaa_VK = {s = c54A "suomentaa"} ;
+lin suomentaja_NK = {s = d10 "suomentaja"} ;
+lin suomentua_VK = {s = c52A "suomentua"} ;
+lin suomettaa_VK = {s = c53A "suomettaa"} ;
+lin suomettua_VK = {s = c52A "suomettua"} ;
+lin suomi_NK = {s = d07 "suomi"} ;
+lin suomia_VK = {s = c61 "suomia"} ;
+lin suomu_NK = {s = d01 "suomu"} ;
+lin suomuinen_NK = {s = d38 "suomuinen"} ;
+lin suomus_NK = {s = d39 "suomus"} ;
+lin suomustaa_VK = {s = c53 "suomustaa"} ;
+lin suomustin_NK = {s = d33 "suomustin"} ;
+lin suomustus_NK = {s = d39 "suomustus"} ;
+lin suonekas_NK = {s = d41A "suonekas"} ;
+lin suonenveto_NK = {s = d01A "suonenveto"} ;
+lin suoni_NK = {s = d26 "suoni"} ;
+lin suonikalvosto_NK = {s = d02 "suonikalvosto"} ;
+lin suonikas_NK = {s = d41A "suonikas"} ;
+lin suonikohju_NK = {s = d01 "suonikohju"} ;
+lin suoninen_NK = {s = d38 "suoninen"} ;
+lin suonisto_NK = {s = d02 "suonisto"} ;
+lin suonitus_NK = {s = d39 "suonitus"} ;
+lin suopa_NK = {s = d10A "suopa"} ;
+lin suopea_AK = {s = d15 "suopea"} ;
+--+ lin suopeasti_AdvK = {s = c99 "suopeasti"} ;
+lin suopeus_NK = {s = d40 "suopeus"} ;
+lin suopua_VK = {s = c52A "suopua"} ;
+lin suopunki_NK = {s = d05A "suopunki"} ;
+lin suora_AK = {s = d10 "suora"} ;
+lin suora_ammunta_NK = {s = d09A "suora-ammunta"} ;
+lin suoraan_AdvK = {s = c99 "suoraan"} ;
+lin suoraa_pa'a'ta'_AdvK = {s = c99 "suoraa päätä"} ;
+lin suoranaan_AdvK = {s = c99 "suoranaan"} ;
+--+ lin suoranaisesti_AdvK = {s = c99 "suoranaisesti"} ;
+lin suorastaan_AdvK = {s = c99 "suorastaan"} ;
+--+ lin suorasti_AdvK = {s = c99 "suorasti"} ;
+--+ lin suorasukaisesti_AdvK = {s = c99 "suorasukaisesti"} ;
+lin suorasukaisuus_NK = {s = d40 "suorasukaisuus"} ;
+--+ lin suoraviivaisesti_AdvK = {s = c99 "suoraviivaisesti"} ;
+lin suorentaa_VK = {s = c54A "suorentaa"} ;
+lin suoreta_VK = {s = c72 "suoreta"} ;
+lin suoria_VK = {s = c61 "suoria"} ;
+lin suoristaa_VK = {s = c53 "suoristaa"} ;
+lin suoristautua_VK = {s = c52A "suoristautua"} ;
+lin suoristella_VK = {s = c67 "suoristella"} ;
+lin suoristelu_NK = {s = d02 "suoristelu"} ;
+lin suoristua_VK = {s = c52 "suoristua"} ;
+lin suoristus_NK = {s = d39 "suoristus"} ;
+lin suorite_NK = {s = d48A "suorite"} ;
+lin suoritella_VK = {s = c67A "suoritella"} ;
+lin suoritin_NK = {s = d33A "suoritin"} ;
+lin suorittaa_VK = {s = c53A "suorittaa"} ;
+lin suorittaja_NK = {s = d10 "suorittaja"} ;
+lin suoritus_NK = {s = d39 "suoritus"} ;
+lin suoritusaika_NK = {s = d09A "suoritusaika"} ;
+lin suorituttaa_VK = {s = c53A "suorituttaa"} ;
+lin suoriutua_VK = {s = c52A "suoriutua"} ;
+lin suortua_VK = {s = c52A "suortua"} ;
+lin suortuva_NK = {s = d10 "suortuva"} ;
+lin suoruus_NK = {s = d40 "suoruus"} ;
+lin suosia_VK = {s = c61 "suosia"} ;
+lin suosikki_NK = {s = d05A "suosikki"} ;
+lin suosinta_NK = {s = d09A "suosinta"} ;
+lin suosio_NK = {s = d03 "suosio"} ;
+lin suosiollinen_AK = {s = d38 "suosiollinen"} ;
+--+ lin suosiollisesti_AdvK = {s = c99 "suosiollisesti"} ;
+lin suosiollisuus_NK = {s = d40 "suosiollisuus"} ;
+lin suositella_VK = {s = c67A "suositella"} ;
+lin suosittaa_VK = {s = c53A "suosittaa"} ;
+lin suosittaja_NK = {s = d10 "suosittaja"} ;
+lin suosittelija_NK = {s = d12 "suosittelija"} ;
+lin suosittu_NK = {s = d01A "suosittu"} ;
+lin suosittuus_NK = {s = d40 "suosittuus"} ;
+lin suosituimmuus_NK = {s = d40 "suosituimmuus"} ;
+lin suositus_NK = {s = d39 "suositus"} ;
+lin suostua_VK = {s = c52 "suostua"} ;
+lin suostumus_NK = {s = d39 "suostumus"} ;
+lin suostutella_VK = {s = c67A "suostutella"} ;
+lin suostuttaa_VK = {s = c53A "suostuttaa"} ;
+lin suostuttelu_NK = {s = d02 "suostuttelu"} ;
+lin suostuvainen_NK = {s = d38 "suostuvainen"} ;
+lin suotaa_VK = {s = c53A "suotaa"} ;
+lin suotautua_VK = {s = c52A "suotautua"} ;
+lin suotava_NK = {s = d10 "suotava"} ;
+lin suotavuus_NK = {s = d40 "suotavuus"} ;
+lin suotta_AdvK = {s = c99 "suotta"} ;
+lin suotuinen_NK = {s = d38 "suotuinen"} ;
+lin suotuisa_AK = {s = d10 "suotuisa"} ;
+--+ lin suotuisasti_AdvK = {s = c99 "suotuisasti"} ;
+lin suotuisuus_NK = {s = d40 "suotuisuus"} ;
+lin suova_NK = {s = d10 "suova"} ;
+lin supatella_VK = {s = c67A "supatella"} ;
+lin supattaa_VK = {s = c53A "supattaa"} ;
+lin supattelu_NK = {s = d02 "supattelu"} ;
+lin supatus_NK = {s = d39 "supatus"} ;
+lin superlatiivi_NK = {s = d05 "superlatiivi"} ;
+lin superlatiivinen_NK = {s = d38 "superlatiivinen"} ;
+lin superlatiivisuus_NK = {s = d40 "superlatiivisuus"} ;
+lin supersooninen_NK = {s = d38 "supersooninen"} ;
+lin supeta_VK = {s = c72A "supeta"} ;
+lin supi_NK = {s = d05 "supi"} ;
+lin supina_NK = {s = d12 "supina"} ;
+lin supista_VK = {s = c66 "supista"} ;
+lin supistaa_VK = {s = c53 "supistaa"} ;
+lin supistaja_NK = {s = d10 "supistaja"} ;
+lin supistella_VK = {s = c67 "supistella"} ;
+lin supistelma_NK = {s = d10 "supistelma"} ;
+lin supistelu_NK = {s = d02 "supistelu"} ;
+lin supistua_VK = {s = c52 "supistua"} ;
+lin supistuma_NK = {s = d10 "supistuma"} ;
+lin supistus_NK = {s = d39 "supistus"} ;
+lin suplementti_NK = {s = d05A "suplementti"} ;
+lin supliikki_NK = {s = d05A "supliikki"} ;
+lin suppa_NK = {s = d10A "suppa"} ;
+lin suppea_AK = {s = d15 "suppea"} ;
+--+ lin suppeasti_AdvK = {s = c99 "suppeasti"} ;
+lin suppeuma_NK = {s = d10 "suppeuma"} ;
+lin suppeus_NK = {s = d40 "suppeus"} ;
+lin suppeuttaa_VK = {s = c53A "suppeuttaa"} ;
+lin suppeutua_VK = {s = c52A "suppeutua"} ;
+lin suppeutuma_NK = {s = d10 "suppeutuma"} ;
+lin suppilo_NK = {s = d02 "suppilo"} ;
+lin suppo_1_NK = {s = d01A "suppo"} ;
+lin suppo_2_NK = {s = d01A "suppo"} ;
+lin supportiivinen_NK = {s = d38 "supportiivinen"} ;
+lin suppositorio_NK = {s = d03 "suppositorio"} ;
+lin suppuun_AdvK = {s = c99 "suppuun"} ;
+lin supukka_NK = {s = d14A "supukka"} ;
+lin supulla_AdvK = {s = c99 "supulla"} ;
+lin supullaan_AdvK = {s = c99 "supullaan"} ;
+lin supulle_AdvK = {s = c99 "supulle"} ;
+lin supulleen_AdvK = {s = c99 "supulleen"} ;
+lin supussa_AdvK = {s = c99 "supussa"} ;
+lin suputtaa_VK = {s = c53A "suputtaa"} ;
+lin surahdella_VK = {s = c67A "surahdella"} ;
+lin surahtaa_VK = {s = c53A "surahtaa"} ;
+lin sureksia_VK = {s = c61 "sureksia"} ;
+lin surettaa_VK = {s = c53A "surettaa"} ;
+lin sureva_NK = {s = d10 "sureva"} ;
+lin surfailija_NK = {s = d12 "surfailija"} ;
+lin surfaus_NK = {s = d39 "surfaus"} ;
+lin surffaaja_NK = {s = d10 "surffaaja"} ;
+lin surffailija_NK = {s = d12 "surffailija"} ;
+lin surffailla_VK = {s = c67 "surffailla"} ;
+lin surffailu_NK = {s = d02 "surffailu"} ;
+lin surffata_VK = {s = c73 "surffata"} ;
+lin surffaus_NK = {s = d39 "surffaus"} ;
+lin surina_NK = {s = d12 "surina"} ;
+lin surista_VK = {s = c66 "surista"} ;
+lin surkastaa_VK = {s = c53 "surkastaa"} ;
+lin surkastua_VK = {s = c52 "surkastua"} ;
+lin surkastuma_NK = {s = d10 "surkastuma"} ;
+lin surkastuttaa_VK = {s = c53A "surkastuttaa"} ;
+lin surkea_AK = {s = d15 "surkea"} ;
+--+ lin surkeasti_AdvK = {s = c99 "surkeasti"} ;
+lin surkeilematon_NK = {s = d34A "surkeilematon"} ;
+lin surkeilla_VK = {s = c67 "surkeilla"} ;
+lin surkeilu_NK = {s = d02 "surkeilu"} ;
+lin surkeus_NK = {s = d40 "surkeus"} ;
+lin surkimus_NK = {s = d39 "surkimus"} ;
+lin surku_AdvK = {s = c99 "surku"} ;
+lin surkutella_VK = {s = c67A "surkutella"} ;
+lin surkuttelu_NK = {s = d02 "surkuttelu"} ;
+lin surma_NK = {s = d10 "surma"} ;
+lin surmaaja_NK = {s = d10 "surmaaja"} ;
+lin surmata_VK = {s = c73 "surmata"} ;
+lin surmauttaa_VK = {s = c53A "surmauttaa"} ;
+lin surra_VK = {s = c67 "surra"} ;
+lin surrata_VK = {s = c73 "surrata"} ;
+lin surrealismi_NK = {s = d05 "surrealismi"} ;
+lin surrealisti_NK = {s = d05 "surrealisti"} ;
+lin surrealistinen_NK = {s = d38 "surrealistinen"} ;
+lin surrogaatti_NK = {s = d05A "surrogaatti"} ;
+lin suru_NK = {s = d01 "suru"} ;
+lin suruaika_NK = {s = d09A "suruaika"} ;
+lin suruinen_NK = {s = d38 "suruinen"} ;
+lin surullinen_AK = {s = d38 "surullinen"} ;
+--+ lin surullisesti_AdvK = {s = c99 "surullisesti"} ;
+lin surullisuus_NK = {s = d40 "surullisuus"} ;
+lin surumielella'_AdvK = {s = c99 "surumielellä"} ;
+lin surumielin_AdvK = {s = c99 "surumielin"} ;
+--+ lin surumielisesti_AdvK = {s = c99 "surumielisesti"} ;
+lin suruton_NK = {s = d34A "suruton"} ;
+lin suruttomasti_AdvK = {s = c99 "suruttomasti"} ;
+lin suruttomuus_NK = {s = d40 "suruttomuus"} ;
+lin survaista_VK = {s = c66 "survaista"} ;
+lin survaisu_NK = {s = d02 "survaisu"} ;
+lin surve_NK = {s = d48 "surve"} ;
+lin surviainen_NK = {s = d38 "surviainen"} ;
+lin survin_NK = {s = d33 "survin"} ;
+lin survoa_VK = {s = c52 "survoa"} ;
+lin survoin_NK = {s = d33 "survoin"} ;
+lin survos_NK = {s = d39 "survos"} ;
+lin survoutua_VK = {s = c52A "survoutua"} ;
+lin sus_AdvK = {s = c99 "sus"} ;
+lin susi_NK = {s = d27 "susi"} ;
+lin suspensio_NK = {s = d03 "suspensio"} ;
+lin sussu_NK = {s = d01 "sussu"} ;
+lin sutaista_VK = {s = c66 "sutaista"} ;
+lin sutata_VK = {s = c73A "sutata"} ;
+lin suteno'o'ri_NK = {s = d05 "sutenööri"} ;
+lin suti_NK = {s = d05A "suti"} ;
+lin sutia_VK = {s = c61A "sutia"} ;
+lin sutjakasti_AdvK = {s = c99 "sutjakasti"} ;
+lin sutjakka_NK = {s = d14A "sutjakka"} ;
+lin sutkaus_NK = {s = d39 "sutkaus"} ;
+lin sutkauttaa_VK = {s = c53A "sutkauttaa"} ;
+lin sutki_NK = {s = d05 "sutki"} ;
+lin suttaantua_VK = {s = c52A "suttaantua"} ;
+lin suttautua_VK = {s = c52A "suttautua"} ;
+lin suttu_NK = {s = d01A "suttu"} ;
+lin suttuinen_NK = {s = d38 "suttuinen"} ;
+lin suttura_NK = {s = d12 "suttura"} ;
+lin suu_NK = {s = d18 "suu"} ;
+lin suude_NK = {s = d48A "suude"} ;
+lin suudella_VK = {s = c67A "suudella"} ;
+lin suudelma_NK = {s = d10 "suudelma"} ;
+lin suudita_VK = {s = c69 "suudita"} ;
+lin suuhinen_NK = {s = d38 "suuhinen"} ;
+lin suuhunpantava_NK = {s = d10 "suuhunpantava"} ;
+lin suukko_NK = {s = d01A "suukko"} ;
+lin suukkonen_NK = {s = d38 "suukkonen"} ;
+lin suukopu_NK = {s = d01A "suukopu"} ;
+lin suula_NK = {s = d10 "suula"} ;
+--+ lin suulaasti_AdvK = {s = c99 "suulaasti"} ;
+lin suulake_NK = {s = d48A "suulake"} ;
+lin suulas_AK = {s = d41 "suulas"} ;
+lin suulaus_NK = {s = d40 "suulaus"} ;
+lin suullinen_AK = {s = d38 "suullinen"} ;
+--+ lin suullisesti_AdvK = {s = c99 "suullisesti"} ;
+lin suullisuus_NK = {s = d40 "suullisuus"} ;
+lin suunnanna'ytta'ja'_NK = {s = d10 "suunnannäyttäjä"} ;
+lin suunnata_VK = {s = c73A "suunnata"} ;
+lin suunnaton_NK = {s = d34A "suunnaton"} ;
+lin suunnattomasti_AdvK = {s = c99 "suunnattomasti"} ;
+lin suunnattomuus_NK = {s = d40 "suunnattomuus"} ;
+lin suunnikas_NK = {s = d41A "suunnikas"} ;
+lin suunnilleen_AdvK = {s = c99 "suunnilleen"} ;
+lin suunnilleenkaan_AdvK = {s = c99 "suunnilleenkaan"} ;
+lin suunniltaan_AdvK = {s = c99 "suunniltaan"} ;
+lin suunnin_NK = {s = d33A "suunnin"} ;
+lin suunnistaa_VK = {s = c53 "suunnistaa"} ;
+lin suunnistaja_NK = {s = d10 "suunnistaja"} ;
+lin suunnistautua_VK = {s = c52A "suunnistautua"} ;
+lin suunnistus_NK = {s = d39 "suunnistus"} ;
+lin suunnite_NK = {s = d48A "suunnite"} ;
+lin suunnitella_VK = {s = c67A "suunnitella"} ;
+lin suunnitelma_NK = {s = d10 "suunnitelma"} ;
+lin suunnitelmallinen_AK = {s = d38 "suunnitelmallinen"} ;
+--+ lin suunnitelmallisesti_AdvK = {s = c99 "suunnitelmallisesti"} ;
+lin suunnitelmallisuus_NK = {s = d40 "suunnitelmallisuus"} ;
+lin suunnitteilla_AdvK = {s = c99 "suunnitteilla"} ;
+lin suunnittelematon_NK = {s = d34A "suunnittelematon"} ;
+lin suunnittelemattomasti_AdvK = {s = c99 "suunnittelemattomasti"} ;
+lin suunnittelemattomuus_NK = {s = d40 "suunnittelemattomuus"} ;
+lin suunnittelija_NK = {s = d12 "suunnittelija"} ;
+lin suunnittelu_NK = {s = d02 "suunnittelu"} ;
+lin suunpieksenta'_NK = {s = d09A "suunpieksentä"} ;
+lin suunpieksa'ja'_NK = {s = d10 "suunpieksäjä"} ;
+lin suunta_NK = {s = d10A "suunta"} ;
+lin suuntain_NK = {s = d33 "suuntain"} ;
+lin suuntainen_AK = {s = d38 "suuntainen"} ;
+--+ lin suuntaisesti_AdvK = {s = c99 "suuntaisesti"} ;
+lin suuntaisuus_NK = {s = d40 "suuntaisuus"} ;
+lin suuntaus_NK = {s = d39 "suuntaus"} ;
+lin suuntautua_VK = {s = c52A "suuntautua"} ;
+lin suuntautumistaipuminen_NK = {s = d38 "suuntautumistaipuminen"} ;
+lin suuntia_VK = {s = c61A "suuntia"} ;
+lin suuntima_NK = {s = d10 "suuntima"} ;
+lin suupaltti_NK = {s = d05A "suupaltti"} ;
+lin suupuhallettu_NK = {s = d01A "suupuhallettu"} ;
+lin suura_NK = {s = d10 "suura"} ;
+lin suure_NK = {s = d48 "suure"} ;
+lin suurellinen_AK = {s = d38 "suurellinen"} ;
+--+ lin suurellisesti_AdvK = {s = c99 "suurellisesti"} ;
+lin suurellisuus_NK = {s = d40 "suurellisuus"} ;
+lin suurenmoinen_AK = {s = d38 "suurenmoinen"} ;
+--+ lin suurenmoisesti_AdvK = {s = c99 "suurenmoisesti"} ;
+lin suurenmoisuus_NK = {s = d40 "suurenmoisuus"} ;
+lin suurennella_VK = {s = c67A "suurennella"} ;
+lin suurennos_NK = {s = d39 "suurennos"} ;
+lin suurennus_NK = {s = d39 "suurennus"} ;
+lin suurennuttaa_VK = {s = c53A "suurennuttaa"} ;
+lin suurentaa_VK = {s = c54A "suurentaa"} ;
+lin suurentua_VK = {s = c52A "suurentua"} ;
+lin suurentuma_NK = {s = d10 "suurentuma"} ;
+--+ lin suuresti_AdvK = {s = c99 "suuresti"} ;
+lin suureta_VK = {s = c72 "suureta"} ;
+lin suuri_AK = {s = d26 "suuri"} ;
+--+ lin suurieleisesti_AdvK = {s = c99 "suurieleisesti"} ;
+lin suurimo_NK = {s = d02 "suurimo"} ;
+lin suurimolekyylinen_NK = {s = d38 "suurimolekyylinen"} ;
+lin suurin_piirtein_AdvK = {s = c99 "suurin piirtein"} ;
+--+ lin suurisanaisesti_AdvK = {s = c99 "suurisanaisesti"} ;
+--+ lin suurisuisesti_AdvK = {s = c99 "suurisuisesti"} ;
+lin suurisuisuus_NK = {s = d40 "suurisuisuus"} ;
+lin suurito'isyys_NK = {s = d40 "suuritöisyys"} ;
+--+ lin suuria'a'nisesti_AdvK = {s = c99 "suuriäänisesti"} ;
+--+ lin suurpiirteisesti_AdvK = {s = c99 "suurpiirteisesti"} ;
+lin suurpiirteisyys_NK = {s = d40 "suurpiirteisyys"} ;
+lin suursiivous_NK = {s = d39 "suursiivous"} ;
+lin suuruinen_NK = {s = d38 "suuruinen"} ;
+lin suurus_NK = {s = d39 "suurus"} ;
+lin suurustaa_VK = {s = c53 "suurustaa"} ;
+lin suuruste_NK = {s = d48 "suuruste"} ;
+lin suurustus_NK = {s = d39 "suurustus"} ;
+lin suuruus_NK = {s = d40 "suuruus"} ;
+lin suurvalta_aika_NK = {s = d09A "suurvalta-aika"} ;
+lin suurvisiiri_NK = {s = d06 "suurvisiiri"} ;
+lin suustaladattava_NK = {s = d10 "suustaladattava"} ;
+lin suutahtaa_VK = {s = c53A "suutahtaa"} ;
+lin suutari_NK = {s = d06 "suutari"} ;
+lin suutaroida_VK = {s = c62 "suutaroida"} ;
+lin suutarointi_NK = {s = d05A "suutarointi"} ;
+lin suute_NK = {s = d48A "suute"} ;
+lin suutelo_NK = {s = d02 "suutelo"} ;
+lin suutelu_NK = {s = d02 "suutelu"} ;
+lin suutia_VK = {s = c61A "suutia"} ;
+lin suutin_NK = {s = d33A "suutin"} ;
+lin suuttua_VK = {s = c52A "suuttua"} ;
+lin suuttumus_NK = {s = d39 "suuttumus"} ;
+lin suutuksiin_AdvK = {s = c99 "suutuksiin"} ;
+lin suutuksissa_AdvK = {s = c99 "suutuksissa"} ;
+lin suutuksissaan_AdvK = {s = c99 "suutuksissaan"} ;
+lin suutuspa'issa'_AdvK = {s = c99 "suutuspäissä"} ;
+lin suututtaa_VK = {s = c53A "suututtaa"} ;
+lin suvaita_VK = {s = c69 "suvaita"} ;
+lin suvaitsematon_NK = {s = d34A "suvaitsematon"} ;
+lin suvaitsemattomasti_AdvK = {s = c99 "suvaitsemattomasti"} ;
+lin suvaitsemattomuus_NK = {s = d40 "suvaitsemattomuus"} ;
+lin suvaitseva_AK = {s = d10 "suvaitseva"} ;
+lin suvaitsevainen_AK = {s = d38 "suvaitsevainen"} ;
+--+ lin suvaitsevaisesti_AdvK = {s = c99 "suvaitsevaisesti"} ;
+lin suvaitsevaisuus_NK = {s = d40 "suvaitsevaisuus"} ;
+--+ lin suvaitsevasti_AdvK = {s = c99 "suvaitsevasti"} ;
+lin suvaitsevuus_NK = {s = d40 "suvaitsevuus"} ;
+lin suvanto_NK = {s = d01A "suvanto"} ;
+lin suvantoinen_NK = {s = d38 "suvantoinen"} ;
+lin suvehtia_VK = {s = c61A "suvehtia"} ;
+lin suvereeni_AK = {s = d05 "suvereeni"} ;
+lin suvereeninen_AK = {s = d38 "suvereeninen"} ;
+--+ lin suvereenisesti_AdvK = {s = c99 "suvereenisesti"} ;
+--+ lin suvereenisti_AdvK = {s = c99 "suvereenisti"} ;
+lin suvereenisuus_NK = {s = d40 "suvereenisuus"} ;
+lin suvereenius_NK = {s = d40 "suvereenius"} ;
+lin suvereniteetti_NK = {s = d05A "suvereniteetti"} ;
+lin suvi_NK = {s = d07 "suvi"} ;
+lin suvinen_NK = {s = d38 "suvinen"} ;
+lin suvuittain_AdvK = {s = c99 "suvuittain"} ;
+lin suvullinen_AK = {s = d38 "suvullinen"} ;
+--+ lin suvullisesti_AdvK = {s = c99 "suvullisesti"} ;
+lin suvullisuus_NK = {s = d40 "suvullisuus"} ;
+lin suvuton_NK = {s = d34A "suvuton"} ;
+lin suvuttomasti_AdvK = {s = c99 "suvuttomasti"} ;
+lin suvuttomuus_NK = {s = d40 "suvuttomuus"} ;
+lin swap_NK = {s = d05 "swap"} ;
+lin sveitsila'inen_NK = {s = d38 "sveitsiläinen"} ;
+lin svekomaani_NK = {s = d05 "svekomaani"} ;
+lin svengata_VK = {s = c73 "svengata"} ;
+lin svengi_NK = {s = d05 "svengi"} ;
+lin svetari_NK = {s = d06 "svetari"} ;
+lin svetisismi_NK = {s = d05 "svetisismi"} ;
+lin sviitti_NK = {s = d05A "sviitti"} ;
+lin swing_NK = {s = d05 "swing"} ;
+lin svingi_NK = {s = d05 "svingi"} ;
+lin syaani_NK = {s = d05 "syaani"} ;
+lin syanidi_NK = {s = d05 "syanidi"} ;
+lin syankalium_NK = {s = d05 "syankalium"} ;
+lin syda'mellinen_AK = {s = d38 "sydämellinen"} ;
+--+ lin syda'mellisesti_AdvK = {s = c99 "sydämellisesti"} ;
+lin syda'mellisyys_NK = {s = d40 "sydämellisyys"} ;
+lin syda'metto'myys_NK = {s = d40 "sydämettömyys"} ;
+lin syda'metto'ma'sti_AdvK = {s = c99 "sydämettömästi"} ;
+lin syda'meto'n_NK = {s = d34A "sydämetön"} ;
+lin syda'minen_NK = {s = d38 "sydäminen"} ;
+lin syda'mistya'_VK = {s = c52 "sydämistyä"} ;
+lin syda'misyys_NK = {s = d40 "sydämisyys"} ;
+lin syda'mys_NK = {s = d39 "sydämys"} ;
+lin syda'mystya'_VK = {s = c52 "sydämystyä"} ;
+lin syda'n_NK = {s = d33 "sydän"} ;
+lin syda'nhermovika_NK = {s = d09A "sydänhermovika"} ;
+lin syda'nka'pynen_NK = {s = d38 "sydänkäpynen"} ;
+lin syda'ntya'_VK = {s = c52A "sydäntyä"} ;
+lin syfilis_NK = {s = d39 "syfilis"} ;
+lin syinen_NK = {s = d38 "syinen"} ;
+lin syke_NK = {s = d48A "syke"} ;
+lin sykertya'_VK = {s = c52A "sykertyä"} ;
+lin sykerta'a'_VK = {s = c54A "sykertää"} ;
+lin sykero'_NK = {s = d02 "sykerö"} ;
+lin sykero'itya'_VK = {s = c52A "sykeröityä"} ;
+lin sykinta'_NK = {s = d09A "sykintä"} ;
+lin sykkeinen_NK = {s = d38 "sykkeinen"} ;
+lin sykkeisyys_NK = {s = d40 "sykkeisyys"} ;
+lin sykkia'_VK = {s = c61A "sykkiä"} ;
+lin sykkyra'_NK = {s = d12 "sykkyrä"} ;
+lin sykka'illa'_VK = {s = c67 "sykkäillä"} ;
+lin sykka'a'_VK = {s = c78 "sykkää"} ;
+lin syklaami_NK = {s = d06 "syklaami"} ;
+lin syklamaatti_NK = {s = d05A "syklamaatti"} ;
+lin sykli_NK = {s = d05 "sykli"} ;
+lin syklinen_NK = {s = d38 "syklinen"} ;
+lin sykloni_NK = {s = d05 "sykloni"} ;
+lin syksy_NK = {s = d01 "syksy"} ;
+lin syksyinen_NK = {s = d38 "syksyinen"} ;
+lin syksyisin_AdvK = {s = c99 "syksyisin"} ;
+lin syksyllinen_NK = {s = d38 "syksyllinen"} ;
+lin syksymma'ksi_AdvK = {s = c99 "syksymmäksi"} ;
+lin syksymma'lle_AdvK = {s = c99 "syksymmälle"} ;
+lin syksymma'lla'_AdvK = {s = c99 "syksymmällä"} ;
+lin syksymma's_AdvK = {s = c99 "syksymmäs"} ;
+lin syksympa'na'_AdvK = {s = c99 "syksympänä"} ;
+lin syka'hdella'_VK = {s = c67A "sykähdellä"} ;
+lin syka'hdys_NK = {s = d39 "sykähdys"} ;
+lin syka'hdytta'a'_VK = {s = c53A "sykähdyttää"} ;
+lin syka'hta'a'_VK = {s = c53A "sykähtää"} ;
+lin syka'ys_NK = {s = d39 "sykäys"} ;
+lin syleilla'_VK = {s = c67 "syleillä"} ;
+lin syleily_NK = {s = d02 "syleily"} ;
+lin syli_NK = {s = d05 "syli"} ;
+lin sylikka'in_AdvK = {s = c99 "sylikkäin"} ;
+lin sylillinen_NK = {s = d38 "sylillinen"} ;
+lin sylinteri_NK = {s = d06 "sylinteri"} ;
+lin sylinterinen_NK = {s = d38 "sylinterinen"} ;
+lin sylitta'in_AdvK = {s = c99 "sylittäin"} ;
+lin sylityksin_AdvK = {s = c99 "sylityksin"} ;
+lin sylitysten_AdvK = {s = c99 "sylitysten"} ;
+lin syljeksia'_VK = {s = c61 "syljeksiä"} ;
+lin syljeskella'_VK = {s = c67 "syljeskellä"} ;
+lin syljeskely_NK = {s = d02 "syljeskely"} ;
+lin syljetta'a'_VK = {s = c53A "syljettää"} ;
+lin sylkea'_VK = {s = c58A "sylkeä"} ;
+lin sylki_NK = {s = d07A "sylki"} ;
+lin sylky_NK = {s = d01A "sylky"} ;
+lin sylka'ista'_VK = {s = c66 "sylkäistä"} ;
+lin sylka'isy_NK = {s = d02 "sylkäisy"} ;
+lin syllogismi_NK = {s = d05 "syllogismi"} ;
+lin syllogistinen_NK = {s = d38 "syllogistinen"} ;
+lin syltty_NK = {s = d01A "syltty"} ;
+lin sylta'_NK = {s = d10A "syltä"} ;
+lin sylta'inen_NK = {s = d38 "syltäinen"} ;
+lin sylyksellinen_NK = {s = d38 "sylyksellinen"} ;
+lin sylys_NK = {s = d39 "sylys"} ;
+lin symbiontti_NK = {s = d05A "symbiontti"} ;
+lin symbioosi_NK = {s = d05 "symbioosi"} ;
+lin symbioottinen_AK = {s = d38 "symbioottinen"} ;
+--+ lin symbioottisesti_AdvK = {s = c99 "symbioottisesti"} ;
+lin symbioottisuus_NK = {s = d40 "symbioottisuus"} ;
+lin symboli_NK = {s = d06 "symboli"} ;
+lin symboliikka_NK = {s = d09A "symboliikka"} ;
+lin symbolinen_AK = {s = d38 "symbolinen"} ;
+--+ lin symbolisesti_AdvK = {s = c99 "symbolisesti"} ;
+lin symbolismi_NK = {s = d05 "symbolismi"} ;
+lin symbolisoida_VK = {s = c62 "symbolisoida"} ;
+lin symbolisuus_NK = {s = d40 "symbolisuus"} ;
+lin symboloida_VK = {s = c62 "symboloida"} ;
+lin symmetria_NK = {s = d12 "symmetria"} ;
+lin symmetrinen_AK = {s = d38 "symmetrinen"} ;
+--+ lin symmetrisesti_AdvK = {s = c99 "symmetrisesti"} ;
+lin symmetrisyys_NK = {s = d40 "symmetrisyys"} ;
+lin sympaattinen_AK = {s = d38 "sympaattinen"} ;
+--+ lin sympaattisesti_AdvK = {s = c99 "sympaattisesti"} ;
+lin sympaattisuus_NK = {s = d40 "sympaattisuus"} ;
+lin sympatia_NK = {s = d12 "sympatia"} ;
+lin sympatisoida_VK = {s = c62 "sympatisoida"} ;
+lin symposio_NK = {s = d03 "symposio"} ;
+lin symposiumi_NK = {s = d05 "symposiumi"} ;
+lin symppis_NK = {s = d39 "symppis"} ;
+lin symptomaattinen_NK = {s = d38 "symptomaattinen"} ;
+lin symptomi_NK = {s = d05 "symptomi"} ;
+lin synagoga_NK = {s = d10 "synagoga"} ;
+lin synapsi_NK = {s = d05 "synapsi"} ;
+lin syndikaatti_NK = {s = d05A "syndikaatti"} ;
+lin syndikalismi_NK = {s = d05 "syndikalismi"} ;
+lin syndikalisti_NK = {s = d05 "syndikalisti"} ;
+lin syndikalistinen_NK = {s = d38 "syndikalistinen"} ;
+lin syndrooma_NK = {s = d10 "syndrooma"} ;
+lin synergeettinen_NK = {s = d38 "synergeettinen"} ;
+lin synergia_NK = {s = d12 "synergia"} ;
+lin synerginen_NK = {s = d38 "synerginen"} ;
+lin synergismi_NK = {s = d05 "synergismi"} ;
+lin synergisti_NK = {s = d05 "synergisti"} ;
+lin synergistinen_NK = {s = d38 "synergistinen"} ;
+lin synkassa_AdvK = {s = c99 "synkassa"} ;
+lin synkata_VK = {s = c73A "synkata"} ;
+lin synkentya'_VK = {s = c52A "synkentyä"} ;
+lin synkenta'a'_VK = {s = c54A "synkentää"} ;
+lin synketa'_VK = {s = c72A "synketä"} ;
+lin synkeys_NK = {s = d40 "synkeys"} ;
+lin synkea'_NK = {s = d15 "synkeä"} ;
+lin synkistella'_VK = {s = c67 "synkistellä"} ;
+lin synkistely_NK = {s = d02 "synkistely"} ;
+lin synkistya'_VK = {s = c52 "synkistyä"} ;
+lin synkista'a'_VK = {s = c53 "synkistää"} ;
+lin synkkaan_AdvK = {s = c99 "synkkaan"} ;
+lin synkkyys_NK = {s = d40 "synkkyys"} ;
+lin synkka'_NK = {s = d10A "synkkä"} ;
+lin synkooppi_NK = {s = d05A "synkooppi"} ;
+lin synkopoida_VK = {s = c62 "synkopoida"} ;
+lin synkopointi_NK = {s = d05A "synkopointi"} ;
+lin synkretismi_NK = {s = d05 "synkretismi"} ;
+lin synkretistinen_NK = {s = d38 "synkretistinen"} ;
+lin synkroninen_NK = {s = d38 "synkroninen"} ;
+lin synkronismi_NK = {s = d05 "synkronismi"} ;
+lin synkronisoida_VK = {s = c62 "synkronisoida"} ;
+lin synkronisointi_NK = {s = d05A "synkronisointi"} ;
+lin synkronoida_VK = {s = c62 "synkronoida"} ;
+lin synkronointi_NK = {s = d05A "synkronointi"} ;
+lin synka'sti_AdvK = {s = c99 "synkästi"} ;
+lin synnillinen_AK = {s = d38 "synnillinen"} ;
+--+ lin synnillisesti_AdvK = {s = c99 "synnillisesti"} ;
+lin synnillisyys_NK = {s = d40 "synnillisyys"} ;
+lin synnito'n_NK = {s = d34A "synnitön"} ;
+lin synnynna'inen_AK = {s = d38 "synnynnäinen"} ;
+--+ lin synnynna'isesti_AdvK = {s = c99 "synnynnäisesti"} ;
+lin synnynna'isyys_NK = {s = d40 "synnynnäisyys"} ;
+--? lin synnyttimet_NK = {s = d33A "synnyttimet"} ;
+lin synnytta'ja'_NK = {s = d10 "synnyttäjä"} ;
+lin synnytta'a'_VK = {s = c53A "synnyttää"} ;
+lin synnytys_NK = {s = d39 "synnytys"} ;
+lin synodi_NK = {s = d05 "synodi"} ;
+lin synonymia_NK = {s = d12 "synonymia"} ;
+lin synonyymi_NK = {s = d05 "synonyymi"} ;
+lin synonyyminen_NK = {s = d38 "synonyyminen"} ;
+lin synopsis_NK = {s = d39 "synopsis"} ;
+lin syntaksi_NK = {s = d05 "syntaksi"} ;
+lin syntaktinen_NK = {s = d38 "syntaktinen"} ;
+lin synteesi_NK = {s = d05 "synteesi"} ;
+lin synteettinen_AK = {s = d38 "synteettinen"} ;
+--+ lin synteettisesti_AdvK = {s = c99 "synteettisesti"} ;
+lin synteettisyys_NK = {s = d40 "synteettisyys"} ;
+lin syntesoida_VK = {s = c62 "syntesoida"} ;
+lin syntesointi_NK = {s = d05A "syntesointi"} ;
+lin syntesoitua_VK = {s = c52A "syntesoitua"} ;
+lin syntetisaattori_NK = {s = d06 "syntetisaattori"} ;
+lin syntetisoida_VK = {s = c62 "syntetisoida"} ;
+lin syntetisointi_NK = {s = d05A "syntetisointi"} ;
+lin syntetisoitua_VK = {s = c52A "syntetisoitua"} ;
+lin synti_NK = {s = d05A "synti"} ;
+lin syntinen_AK = {s = d38 "syntinen"} ;
+--+ lin syntisesti_AdvK = {s = c99 "syntisesti"} ;
+lin syntisyys_NK = {s = d40 "syntisyys"} ;
+--? lin syntta'rit_NK = {s = d06 "synttärit"} ;
+lin synty_NK = {s = d01A "synty"} ;
+lin syntyaika_NK = {s = d09A "syntyaika"} ;
+lin syntyinen_AK = {s = d38 "syntyinen"} ;
+--+ lin syntyisesti_AdvK = {s = c99 "syntyisesti"} ;
+lin syntyisin_AdvK = {s = c99 "syntyisin"} ;
+lin syntyja'a'n_AdvK = {s = c99 "syntyjään"} ;
+lin syntyma'_NK = {s = d10 "syntymä"} ;
+lin syntyma'aika_NK = {s = d09A "syntymäaika"} ;
+lin syntyma'to'n_NK = {s = d34A "syntymätön"} ;
+lin syntyneisyys_NK = {s = d40 "syntyneisyys"} ;
+lin syntyvyys_NK = {s = d40 "syntyvyys"} ;
+lin syntya'_VK = {s = c52A "syntyä"} ;
+lin syntya'a'n_AdvK = {s = c99 "syntyään"} ;
+lin sypressi_NK = {s = d06 "sypressi"} ;
+lin syreeni_NK = {s = d06 "syreeni"} ;
+lin syrjemma'ksi_AdvK = {s = c99 "syrjemmäksi"} ;
+lin syrjemma'lle_AdvK = {s = c99 "syrjemmälle"} ;
+lin syrjemma'lla'_AdvK = {s = c99 "syrjemmällä"} ;
+lin syrjemma'lta'_AdvK = {s = c99 "syrjemmältä"} ;
+lin syrjemma's_AdvK = {s = c99 "syrjemmäs"} ;
+lin syrjemma'ssa'_AdvK = {s = c99 "syrjemmässä"} ;
+lin syrjemma'sta'_AdvK = {s = c99 "syrjemmästä"} ;
+lin syrjempa'na'_AdvK = {s = c99 "syrjempänä"} ;
+lin syrjempa'a'_AdvK = {s = c99 "syrjempää"} ;
+lin syrjempa'a'n_AdvK = {s = c99 "syrjempään"} ;
+lin syrjinta'_NK = {s = d09A "syrjintä"} ;
+lin syrjitta'in_AdvK = {s = c99 "syrjittäin"} ;
+lin syrjia'_VK = {s = c61 "syrjiä"} ;
+lin syrja'_NK = {s = d10 "syrjä"} ;
+lin syrja'inen_NK = {s = d38 "syrjäinen"} ;
+lin syrja'karein_AdvK = {s = c99 "syrjäkarein"} ;
+lin syrja'lleen_AdvK = {s = c99 "syrjälleen"} ;
+lin syrja'lla'a'n_AdvK = {s = c99 "syrjällään"} ;
+lin syrja'silmin_AdvK = {s = c99 "syrjäsilmin"} ;
+lin syrja'silma'lla'_AdvK = {s = c99 "syrjäsilmällä"} ;
+lin syrja'ssa'_AdvK = {s = c99 "syrjässä"} ;
+lin syrja'sta'_AdvK = {s = c99 "syrjästä"} ;
+lin syrja'ytta'a'_VK = {s = c53A "syrjäyttää"} ;
+lin syrja'ytys_NK = {s = d39 "syrjäytys"} ;
+lin syrja'ytya'_VK = {s = c52A "syrjäytyä"} ;
+lin syrja'a'n_AdvK = {s = c99 "syrjään"} ;
+lin syrja'a'ni_NK = {s = d06 "syrjääni"} ;
+lin sysi_NK = {s = d27 "sysi"} ;
+lin sysia'_VK = {s = c61 "sysiä"} ;
+lin syssyyn_AdvK = {s = c99 "syssyyn"} ;
+lin systeemi_NK = {s = d06 "systeemi"} ;
+lin systeeminen_AK = {s = d38 "systeeminen"} ;
+--+ lin systeemisesti_AdvK = {s = c99 "systeemisesti"} ;
+lin systeemisyys_NK = {s = d40 "systeemisyys"} ;
+lin systemaatikko_NK = {s = d04A "systemaatikko"} ;
+lin systemaattinen_AK = {s = d38 "systemaattinen"} ;
+--+ lin systemaattisesti_AdvK = {s = c99 "systemaattisesti"} ;
+lin systemaattisuus_NK = {s = d40 "systemaattisuus"} ;
+lin systematiikka_NK = {s = d09A "systematiikka"} ;
+lin systematisoida_VK = {s = c62 "systematisoida"} ;
+lin systematisointi_NK = {s = d05A "systematisointi"} ;
+lin systemoida_VK = {s = c62 "systemoida"} ;
+lin systemointi_NK = {s = d05A "systemointi"} ;
+lin systeri_NK = {s = d06 "systeri"} ;
+lin systolinen_NK = {s = d38 "systolinen"} ;
+lin sysa'ta'_VK = {s = c73 "sysätä"} ;
+lin sysa'yksitta'in_AdvK = {s = c99 "sysäyksittäin"} ;
+lin sysa'yksitta'inen_NK = {s = d38 "sysäyksittäinen"} ;
+lin sysa'ys_NK = {s = d39 "sysäys"} ;
+lin sytkytta'a'_VK = {s = c53A "sytkyttää"} ;
+lin sytkytys_NK = {s = d39 "sytkytys"} ;
+lin sytka'ri_NK = {s = d06 "sytkäri"} ;
+lin sytologia_NK = {s = d12 "sytologia"} ;
+lin sytostaatti_NK = {s = d05A "sytostaatti"} ;
+lin sytotoksinen_NK = {s = d38 "sytotoksinen"} ;
+lin syttyma'to'n_NK = {s = d34A "syttymätön"} ;
+lin syttyvyys_NK = {s = d40 "syttyvyys"} ;
+lin syttya'_VK = {s = c52A "syttyä"} ;
+lin sytyke_NK = {s = d48A "sytyke"} ;
+lin sytytin_NK = {s = d33A "sytytin"} ;
+lin sytytteinen_NK = {s = d38 "sytytteinen"} ;
+lin sytytta'ja'_NK = {s = d10 "sytyttäjä"} ;
+lin sytytta'a'_VK = {s = c53A "sytyttää"} ;
+lin sytytyksinen_NK = {s = d38 "sytytyksinen"} ;
+lin sytytys_NK = {s = d39 "sytytys"} ;
+lin syvemma'ksi_AdvK = {s = c99 "syvemmäksi"} ;
+lin syvemma'lle_AdvK = {s = c99 "syvemmälle"} ;
+lin syvemma'lla'_AdvK = {s = c99 "syvemmällä"} ;
+lin syvemma'lta'_AdvK = {s = c99 "syvemmältä"} ;
+lin syvemma's_AdvK = {s = c99 "syvemmäs"} ;
+lin syvempa'na'_AdvK = {s = c99 "syvempänä"} ;
+lin syvempa'a'_AdvK = {s = c99 "syvempää"} ;
+lin syvennys_NK = {s = d39 "syvennys"} ;
+lin syventya'_VK = {s = c52A "syventyä"} ;
+lin syventa'a'_VK = {s = c54A "syventää"} ;
+lin syveta'_VK = {s = c72 "syvetä"} ;
+lin syvyinen_NK = {s = d38 "syvyinen"} ;
+lin syvyys_NK = {s = d40 "syvyys"} ;
+lin syvyytta'a'_VK = {s = c53A "syvyyttää"} ;
+lin syvyytys_NK = {s = d39 "syvyytys"} ;
+lin syva'_AK = {s = d10 "syvä"} ;
+lin syva'lle_AdvK = {s = c99 "syvälle"} ;
+lin syva'llinen_AK = {s = d38 "syvällinen"} ;
+--+ lin syva'llisesti_AdvK = {s = c99 "syvällisesti"} ;
+lin syva'llisyys_NK = {s = d40 "syvällisyys"} ;
+lin syva'lla'_AdvK = {s = c99 "syvällä"} ;
+lin syva'lti_AdvK = {s = c99 "syvälti"} ;
+lin syva'lta'_AdvK = {s = c99 "syvältä"} ;
+lin syva'nko'_NK = {s = d01A "syvänkö"} ;
+lin syva'nne_NK = {s = d48A "syvänne"} ;
+lin syva'ssa'_AdvK = {s = c99 "syvässä"} ;
+--+ lin syva'sti_AdvK = {s = c99 "syvästi"} ;
+lin syva'sta'_AdvK = {s = c99 "syvästä"} ;
+lin syva'ys_NK = {s = d39 "syväys"} ;
+lin syva'a'n_AdvK = {s = c99 "syvään"} ;
+lin syy_1_NK = {s = d18 "syy"} ;
+lin syy_2_NK = {s = d18 "syy"} ;
+lin syydvesti_NK = {s = d05 "syydvesti"} ;
+lin syyhelma'_NK = {s = d10 "syyhelmä"} ;
+lin syyhy_NK = {s = d01 "syyhy"} ;
+lin syyhytta'a'_VK = {s = c53A "syyhyttää"} ;
+lin syyhyta'_VK = {s = c74 "syyhytä"} ;
+lin syyhya'_VK = {s = c52 "syyhyä"} ;
+lin syylinki_NK = {s = d05A "syylinki"} ;
+lin syyllinen_NK = {s = d38 "syyllinen"} ;
+lin syyllistya'_VK = {s = c52 "syyllistyä"} ;
+lin syyllista'a'_VK = {s = c53 "syyllistää"} ;
+lin syyllisyys_NK = {s = d40 "syyllisyys"} ;
+lin syyla'_NK = {s = d10 "syylä"} ;
+lin syyla'juuri_NK = {s = d26 "syyläjuuri"} ;
+lin syyni_NK = {s = d05 "syyni"} ;
+lin syyntakeeton_NK = {s = d34A "syyntakeeton"} ;
+lin syyntakeettomuus_NK = {s = d40 "syyntakeettomuus"} ;
+lin syyntakeinen_NK = {s = d38 "syyntakeinen"} ;
+lin syyntakeisuus_NK = {s = d40 "syyntakeisuus"} ;
+lin syyna'ta'_VK = {s = c73 "syynätä"} ;
+lin syyna'ys_NK = {s = d39 "syynäys"} ;
+lin syys_AdvK = {s = c99 "syys"} ;
+lin syyte_NK = {s = d48A "syyte"} ;
+lin syytella'_VK = {s = c67A "syytellä"} ;
+lin syytetty_NK = {s = d01A "syytetty"} ;
+lin syytinkivaari_NK = {s = d05 "syytinkivaari"} ;
+lin syyttely_NK = {s = d02 "syyttely"} ;
+lin syytta'jisto'_NK = {s = d01 "syyttäjistö"} ;
+lin syytta'ja'_NK = {s = d10 "syyttäjä"} ;
+lin syytta'a'_VK = {s = c53A "syyttää"} ;
+lin syytto'myys_NK = {s = d40 "syyttömyys"} ;
+lin syytto'ma'sti_AdvK = {s = c99 "syyttömästi"} ;
+lin syyta'a'_VK = {s = c53A "syytää"} ;
+lin syyto'n_NK = {s = d34A "syytön"} ;
+lin syyto's_NK = {s = d39 "syytös"} ;
+lin syo'da'_VK = {s = c64 "syödä"} ;
+lin syo'ja'_NK = {s = d10 "syöjä"} ;
+lin syo'ja'ta'r_NK = {s = d32A "syöjätär"} ;
+lin syo'ksy_NK = {s = d01 "syöksy"} ;
+lin syo'ksyilla'_VK = {s = c67 "syöksyillä"} ;
+lin syo'ksya'_VK = {s = c52 "syöksyä"} ;
+lin syo'ksa'hdella'_VK = {s = c67A "syöksähdellä"} ;
+lin syo'ksa'hdys_NK = {s = d39 "syöksähdys"} ;
+lin syo'ksa'hta'a'_VK = {s = c53A "syöksähtää"} ;
+lin syo'minen_NK = {s = d38 "syöminen"} ;
+lin syo'mingit_NK = {s = d05A "syömingit"} ;
+lin syo'ma'ri_NK = {s = d06 "syömäri"} ;
+lin syo'ma'tto'myys_NK = {s = d40 "syömättömyys"} ;
+lin syo'ma'to'n_NK = {s = d34A "syömätön"} ;
+lin syo'nnilla'_AdvK = {s = c99 "syönnillä"} ;
+lin syo'nnilla'a'n_AdvK = {s = c99 "syönnillään"} ;
+lin syo'nno's_NK = {s = d39 "syönnös"} ;
+lin syo'nti_NK = {s = d05A "syönti"} ;
+lin syo'ntiaika_NK = {s = d09A "syöntiaika"} ;
+lin syo'ppo'_NK = {s = d01A "syöppö"} ;
+lin syo'ppo'ys_NK = {s = d40 "syöppöys"} ;
+lin syo'pyma'_NK = {s = d10 "syöpymä"} ;
+lin syo'pyma'tto'myys_NK = {s = d40 "syöpymättömyys"} ;
+lin syo'pyma'to'n_NK = {s = d34A "syöpymätön"} ;
+lin syo'pya'_VK = {s = c52A "syöpyä"} ;
+lin syo'pa'_NK = {s = d10A "syöpä"} ;
+lin syo'pa'inen_NK = {s = d38 "syöpäinen"} ;
+lin syo'pa'la'inen_NK = {s = d38 "syöpäläinen"} ;
+lin syo'po'tella'_VK = {s = c67A "syöpötellä"} ;
+lin syo'po'ttely_NK = {s = d02 "syöpöttely"} ;
+lin syo'sta'_VK = {s = c70 "syöstä"} ;
+lin syo'sta'va'_NK = {s = d10 "syöstävä"} ;
+lin syo'tella'_VK = {s = c67A "syötellä"} ;
+lin syo'tin_NK = {s = d33A "syötin"} ;
+lin syo'titta'a'_VK = {s = c53A "syötittää"} ;
+lin syo'titys_NK = {s = d39 "syötitys"} ;
+lin syo'tti_NK = {s = d05A "syötti"} ;
+lin syo'tta'ja'_NK = {s = d10 "syöttäjä"} ;
+lin syo'tta'a'_VK = {s = c53A "syöttää"} ;
+lin syo'tto'_NK = {s = d01A "syöttö"} ;
+lin syo'tto'inen_NK = {s = d38 "syöttöinen"} ;
+lin syo'ta'va'_NK = {s = d10 "syötävä"} ;
+lin syo'veri_NK = {s = d06 "syöveri"} ;
+lin syo'vyte_NK = {s = d48A "syövyte"} ;
+lin syo'vytta'a'_VK = {s = c53A "syövyttää"} ;
+lin syo'vytys_NK = {s = d39 "syövytys"} ;
+lin sa'de_NK = {s = d48A "säde"} ;
+lin sa'dehtia'_VK = {s = c61A "sädehtiä"} ;
+lin sa'detin_NK = {s = d33A "sädetin"} ;
+lin sa'detta'a'_VK = {s = c53A "sädettää"} ;
+lin sa'detys_NK = {s = d39 "sädetys"} ;
+lin sa'e_NK = {s = d48A "säe"} ;
+lin sa'en_NK = {s = d49A "säen"} ;
+lin sa'esteinen_NK = {s = d38 "säesteinen"} ;
+lin sa'estyksinen_NK = {s = d38 "säestyksinen"} ;
+lin sa'estys_NK = {s = d39 "säestys"} ;
+lin sa'esta'ja'_NK = {s = d10 "säestäjä"} ;
+lin sa'esta'a'_VK = {s = c53 "säestää"} ;
+lin sa'hellys_NK = {s = d39 "sähellys"} ;
+lin sa'helta'a'_VK = {s = c54A "säheltää"} ;
+lin sa'hika'inen_NK = {s = d38 "sähikäinen"} ;
+lin sa'hinka'inen_NK = {s = d38 "sähinkäinen"} ;
+lin sa'hina'_NK = {s = d12 "sähinä"} ;
+lin sa'hista'_VK = {s = c66 "sähistä"} ;
+lin sa'hke_NK = {s = d48 "sähke"} ;
+lin sa'hkeitse_AdvK = {s = c99 "sähkeitse"} ;
+lin sa'hko'_NK = {s = d01 "sähkö"} ;
+lin sa'hko'inen_AK = {s = d38 "sähköinen"} ;
+--+ lin sa'hko'isesti_AdvK = {s = c99 "sähköisesti"} ;
+lin sa'hko'istys_NK = {s = d39 "sähköistys"} ;
+lin sa'hko'istya'_VK = {s = c52 "sähköistyä"} ;
+lin sa'hko'ista'a'_VK = {s = c53 "sähköistää"} ;
+lin sa'hko'punktuuri_NK = {s = d06 "sähköpunktuuri"} ;
+lin sa'hko'tta'ja'_NK = {s = d10 "sähköttäjä"} ;
+lin sa'hko'tta'a'_VK = {s = c53A "sähköttää"} ;
+lin sa'hko'tys_NK = {s = d39 "sähkötys"} ;
+lin sa'hlinki_NK = {s = d05A "sählinki"} ;
+lin sa'hlia'_VK = {s = c61 "sähliä"} ;
+lin sa'hly_NK = {s = d01 "sähly"} ;
+lin sa'hla'ri_NK = {s = d06 "sähläri"} ;
+lin sa'hla'ta'_VK = {s = c73 "sählätä"} ;
+lin sa'hla'ys_NK = {s = d39 "sähläys"} ;
+lin sa'hla'a'ja'_NK = {s = d10 "sählääjä"} ;
+lin sa'ha'hdys_NK = {s = d39 "sähähdys"} ;
+lin sa'ha'hta'a'_VK = {s = c53A "sähähtää"} ;
+lin sa'ha'kkyys_NK = {s = d40 "sähäkkyys"} ;
+lin sa'ha'kka'_NK = {s = d14A "sähäkkä"} ;
+lin sa'ha'ka'sti_AdvK = {s = c99 "sähäkästi"} ;
+lin sa'ie_NK = {s = d48A "säie"} ;
+lin sa'ihke_NK = {s = d48 "säihke"} ;
+lin sa'ihkya'_VK = {s = c52 "säihkyä"} ;
+lin sa'ikeinen_NK = {s = d38 "säikeinen"} ;
+lin sa'ikeisyys_NK = {s = d40 "säikeisyys"} ;
+lin sa'ikky_NK = {s = d01A "säikky"} ;
+lin sa'ikkya'_VK = {s = c61A "säikkyä"} ;
+lin sa'ikytella'_VK = {s = c67A "säikytellä"} ;
+lin sa'ikyttely_NK = {s = d02 "säikyttely"} ;
+lin sa'ikytta'a'_VK = {s = c53A "säikyttää"} ;
+lin sa'ika'hdys_NK = {s = d39 "säikähdys"} ;
+lin sa'ika'hdytta'a'_VK = {s = c53A "säikähdyttää"} ;
+lin sa'ika'htya'_VK = {s = c52A "säikähtyä"} ;
+lin sa'ika'hta'a'_VK = {s = c53A "säikähtää"} ;
+lin sa'ika'ys_NK = {s = d39 "säikäys"} ;
+lin sa'ika'ytella'_VK = {s = c67A "säikäytellä"} ;
+lin sa'ika'ytta'a'_VK = {s = c53A "säikäyttää"} ;
+lin sa'ile_NK = {s = d48 "säile"} ;
+lin sa'ilio'_NK = {s = d03 "säiliö"} ;
+lin sa'ilio'ida'_VK = {s = c62 "säiliöidä"} ;
+lin sa'ilio'inti_NK = {s = d05A "säiliöinti"} ;
+lin sa'ilyke_NK = {s = d48A "säilyke"} ;
+lin sa'ilyte_NK = {s = d48A "säilyte"} ;
+lin sa'ilytteille_AdvK = {s = c99 "säilytteille"} ;
+lin sa'ilytteilla'_AdvK = {s = c99 "säilytteillä"} ;
+lin sa'ilytta'ja'_NK = {s = d10 "säilyttäjä"} ;
+lin sa'ilytta'a'_VK = {s = c53A "säilyttää"} ;
+lin sa'ilytys_NK = {s = d39 "säilytys"} ;
+lin sa'ilyvyys_NK = {s = d40 "säilyvyys"} ;
+lin sa'ilya'_VK = {s = c52 "säilyä"} ;
+lin sa'ila'_NK = {s = d10 "säilä"} ;
+lin sa'ilo'_NK = {s = d01 "säilö"} ;
+lin sa'ilo'nta'_NK = {s = d09A "säilöntä"} ;
+lin sa'ilo'te_NK = {s = d48A "säilöte"} ;
+lin sa'ilo'a'_VK = {s = c52 "säilöä"} ;
+lin sa'keinen_NK = {s = d38 "säkeinen"} ;
+lin sa'keisto'_NK = {s = d02 "säkeistö"} ;
+lin sa'keisto'inen_NK = {s = d38 "säkeistöinen"} ;
+lin sa'keitta'in_1_AdvK = {s = c99 "säkeittäin"} ;
+lin sa'keitta'in_2_AdvK = {s = c99 "säkeittäin"} ;
+lin sa'kene_NK = {s = d49 "säkene"} ;
+lin sa'keno'ida'_VK = {s = c62 "säkenöidä"} ;
+lin sa'keno'iva'_NK = {s = d10 "säkenöivä"} ;
+lin sa'killinen_NK = {s = d38 "säkillinen"} ;
+lin sa'kitta'a'_VK = {s = c53A "säkittää"} ;
+lin sa'kitys_NK = {s = d39 "säkitys"} ;
+lin sa'kki_NK = {s = d05A "säkki"} ;
+lin sa'kka'ra'_NK = {s = d11 "säkkärä"} ;
+lin sa'ksa'tta'a'_VK = {s = c53A "säksättää"} ;
+lin sa'ksa'tys_NK = {s = d39 "säksätys"} ;
+lin sa'ka'_1_NK = {s = d10A "säkä"} ;
+lin sa'ka'_2_NK = {s = d10 "säkä"} ;
+lin sa'ka'tta'a'_VK = {s = c53A "säkättää"} ;
+lin sa'ka'tys_NK = {s = d39 "säkätys"} ;
+lin sa'le_NK = {s = d48 "säle"} ;
+lin sa'leikko'_NK = {s = d04A "säleikkö"} ;
+lin sa'lli_NK = {s = d05 "sälli"} ;
+lin sa'lpa'_NK = {s = d10A "sälpä"} ;
+lin sa'ly_NK = {s = d01 "säly"} ;
+lin sa'lytta'a'_VK = {s = c53A "sälyttää"} ;
+lin sa'lytys_NK = {s = d39 "sälytys"} ;
+lin sa'la'_NK = {s = d10 "sälä"} ;
+lin sa'la'hdys_NK = {s = d39 "sälähdys"} ;
+lin sa'la'hta'a'_VK = {s = c53A "sälähtää"} ;
+lin sa'lo'_NK = {s = d01 "sälö"} ;
+lin sa'lo'inen_NK = {s = d38 "sälöinen"} ;
+lin sa'mpleri_NK = {s = d06 "sämpleri"} ;
+lin sa'mpla'ta'_VK = {s = c73 "sämplätä"} ;
+lin sa'mpla'ys_NK = {s = d39 "sämpläys"} ;
+lin sa'mpyla'_NK = {s = d12 "sämpylä"} ;
+lin sa'nki_NK = {s = d07A "sänki"} ;
+lin sa'nky_NK = {s = d01A "sänky"} ;
+lin sa'nna'ta'_VK = {s = c73A "sännätä"} ;
+lin sa'ntilleen_AdvK = {s = c99 "säntilleen"} ;
+lin sa'ntillinen_AK = {s = d38 "säntillinen"} ;
+--+ lin sa'ntillisesti_AdvK = {s = c99 "säntillisesti"} ;
+lin sa'ntillisyys_NK = {s = d40 "säntillisyys"} ;
+lin sa'nta'illa'_VK = {s = c67 "säntäillä"} ;
+lin sa'nta'ily_NK = {s = d02 "säntäily"} ;
+lin sa'pina'_NK = {s = d12 "säpinä"} ;
+lin sa'pista'_VK = {s = c66 "säpistä"} ;
+lin sa'ppi_NK = {s = d05A "säppi"} ;
+lin sa'psa'hdella'_VK = {s = c67A "säpsähdellä"} ;
+lin sa'psa'hdys_NK = {s = d39 "säpsähdys"} ;
+lin sa'psa'hdytta'a'_VK = {s = c53A "säpsähdyttää"} ;
+lin sa'psa'htely_NK = {s = d02 "säpsähtely"} ;
+lin sa'psa'hta'a'_VK = {s = c53A "säpsähtää"} ;
+lin sa'psa'ytta'a'_VK = {s = c53A "säpsäyttää"} ;
+lin sa'pa'le_NK = {s = d48 "säpäle"} ;
+lin sa'rina'_NK = {s = d12 "särinä"} ;
+lin sa'rista'_VK = {s = c66 "säristä"} ;
+lin sa'rkea'_VK = {s = c58A "särkeä"} ;
+lin sa'rki_NK = {s = d07A "särki"} ;
+lin sa'rkija'_NK = {s = d12 "särkijä"} ;
+lin sa'rkka'_NK = {s = d10A "särkkä"} ;
+lin sa'rky_NK = {s = d01A "särky"} ;
+lin sa'rkya'_VK = {s = c52A "särkyä"} ;
+lin sa'rmi_NK = {s = d05 "särmi"} ;
+lin sa'rmikkyys_NK = {s = d40 "särmikkyys"} ;
+--+ lin sa'rmikka'a'sti_AdvK = {s = c99 "särmikkäästi"} ;
+lin sa'rmika's_AK = {s = d41A "särmikäs"} ;
+lin sa'rmio'_NK = {s = d03 "särmiö"} ;
+lin sa'rma'_NK = {s = d10 "särmä"} ;
+lin sa'rma'inen_NK = {s = d38 "särmäinen"} ;
+lin sa'rma'ta'_VK = {s = c73 "särmätä"} ;
+lin sa'rma'ys_NK = {s = d39 "särmäys"} ;
+lin sa'rpia'_VK = {s = c61A "särpiä"} ;
+lin sa'rvin_NK = {s = d33A "särvin"} ;
+lin sa'ra'hdella'_VK = {s = c67A "särähdellä"} ;
+lin sa'ra'hdys_NK = {s = d39 "särähdys"} ;
+lin sa'ra'hta'a'_VK = {s = c53A "särähtää"} ;
+lin sa'ro'_NK = {s = d01 "särö"} ;
+lin sa'ro'illa'_VK = {s = c67 "säröillä"} ;
+lin sa'ro'ily_NK = {s = d02 "säröily"} ;
+lin sa'ro'inen_NK = {s = d38 "säröinen"} ;
+lin sa'ro'to'n_NK = {s = d34A "särötön"} ;
+lin sa'ro'ytya'_VK = {s = c52A "säröytyä"} ;
+lin sa'teilija'_NK = {s = d12 "säteilijä"} ;
+lin sa'teilin_NK = {s = d33 "säteilin"} ;
+lin sa'teilla'_VK = {s = c67 "säteillä"} ;
+lin sa'teily_NK = {s = d02 "säteily"} ;
+lin sa'teilytin_NK = {s = d33A "säteilytin"} ;
+lin sa'teilytta'a'_VK = {s = c53A "säteilyttää"} ;
+lin sa'teilytys_NK = {s = d39 "säteilytys"} ;
+lin sa'teinen_NK = {s = d38 "säteinen"} ;
+lin sa'teitta'in_AdvK = {s = c99 "säteittäin"} ;
+lin sa'teitta'inen_AK = {s = d38 "säteittäinen"} ;
+--+ lin sa'teitta'isesti_AdvK = {s = c99 "säteittäisesti"} ;
+lin sa'teri_1_NK = {s = d06 "säteri"} ;
+lin sa'teri_2_NK = {s = d06 "säteri"} ;
+lin sa'tkin_NK = {s = d33 "sätkin"} ;
+lin sa'tkia'_VK = {s = c61 "sätkiä"} ;
+lin sa'tky_NK = {s = d01 "sätky"} ;
+lin sa'tkytella'_VK = {s = c67A "sätkytellä"} ;
+lin sa'tkyttely_NK = {s = d02 "sätkyttely"} ;
+lin sa'tkytta'a'_VK = {s = c53A "sätkyttää"} ;
+lin sa'tkytys_NK = {s = d39 "sätkytys"} ;
+lin sa'tka'_NK = {s = d10 "sätkä"} ;
+lin sa'tka'tta'a'_VK = {s = c53A "sätkättää"} ;
+lin sa'tka'tys_NK = {s = d39 "sätkätys"} ;
+lin sa'ttia'_VK = {s = c61A "sättiä"} ;
+lin sa'vel_NK = {s = d32 "sävel"} ;
+lin sa'vellys_NK = {s = d39 "sävellys"} ;
+lin sa'velmisto'_NK = {s = d01 "sävelmistö"} ;
+lin sa'velma'_NK = {s = d10 "sävelmä"} ;
+lin sa'velta'ja'_NK = {s = d10 "säveltäjä"} ;
+lin sa'velta'a'_VK = {s = c54A "säveltää"} ;
+lin sa'vy_NK = {s = d01 "sävy"} ;
+lin sa'vyinen_AK = {s = d38 "sävyinen"} ;
+--+ lin sa'vyisesti_AdvK = {s = c99 "sävyisesti"} ;
+--+ lin sa'vyisa'sti_AdvK = {s = c99 "sävyisästi"} ;
+lin sa'vykkyys_NK = {s = d40 "sävykkyys"} ;
+lin sa'vyka's_NK = {s = d41A "sävykäs"} ;
+lin sa'vyte_NK = {s = d48A "sävyte"} ;
+lin sa'vytteinen_NK = {s = d38 "sävytteinen"} ;
+lin sa'vyttya'_VK = {s = c52A "sävyttyä"} ;
+lin sa'vytta'a'_VK = {s = c53A "sävyttää"} ;
+lin sa'vytys_NK = {s = d39 "sävytys"} ;
+lin sa'vyto'n_NK = {s = d34A "sävytön"} ;
+lin sa'va'hdys_NK = {s = d39 "sävähdys"} ;
+lin sa'va'hdytta'a'_VK = {s = c53A "sävähdyttää"} ;
+lin sa'va'hta'a'_VK = {s = c53A "sävähtää"} ;
+lin sa'va'ys_NK = {s = d39 "säväys"} ;
+lin sa'va'ytta'a'_VK = {s = c53A "säväyttää"} ;
+lin sa'yne_NK = {s = d48 "säyne"} ;
+lin sa'yna'va'_NK = {s = d10 "säynävä"} ;
+lin sa'yseys_NK = {s = d40 "säyseys"} ;
+lin sa'ysea'_AK = {s = d15 "säyseä"} ;
+--+ lin sa'ysea'sti_AdvK = {s = c99 "säyseästi"} ;
+lin sa'a'_NK = {s = d18 "sää"} ;
+lin sa'a'de_NK = {s = d48A "sääde"} ;
+lin sa'a'della'_VK = {s = c67A "säädellä"} ;
+lin sa'a'din_NK = {s = d33A "säädin"} ;
+lin sa'a'dyllinen_AK = {s = d38 "säädyllinen"} ;
+--+ lin sa'a'dyllisesti_AdvK = {s = c99 "säädyllisesti"} ;
+lin sa'a'dyllisyys_NK = {s = d40 "säädyllisyys"} ;
+lin sa'a'dytto'myys_NK = {s = d40 "säädyttömyys"} ;
+lin sa'a'dytto'ma'sti_AdvK = {s = c99 "säädyttömästi"} ;
+lin sa'a'dyto'n_NK = {s = d34A "säädytön"} ;
+lin sa'a'da'nna'inen_NK = {s = d38 "säädännäinen"} ;
+lin sa'a'da'nta'_NK = {s = d09A "säädäntä"} ;
+lin sa'a'da'nto'_NK = {s = d01A "säädäntö"} ;
+lin sa'a'da'tta'a'_VK = {s = c53A "säädättää"} ;
+lin sa'a'da'tys_NK = {s = d39 "säädätys"} ;
+lin sa'a'do's_NK = {s = d39 "säädös"} ;
+lin sa'a'ksi_NK = {s = d07 "sääksi"} ;
+lin sa'a'li_NK = {s = d05 "sääli"} ;
+lin sa'a'lima'tto'myys_NK = {s = d40 "säälimättömyys"} ;
+lin sa'a'lima'tto'ma'sti_AdvK = {s = c99 "säälimättömästi"} ;
+lin sa'a'lima'to'n_NK = {s = d34A "säälimätön"} ;
+lin sa'a'litella'_VK = {s = c67A "säälitellä"} ;
+lin sa'a'litta'va'_NK = {s = d10 "säälittävä"} ;
+lin sa'a'litta'a'_VK = {s = c53A "säälittää"} ;
+lin sa'a'liva'inen_NK = {s = d38 "sääliväinen"} ;
+lin sa'a'lia'_1_VK = {s = c61 "sääliä"} ;
+lin sa'a'lia'_2_VK = {s = c61 "sääliä"} ;
+lin sa'a'llinen_AK = {s = d38 "säällinen"} ;
+--+ lin sa'a'llisesti_AdvK = {s = c99 "säällisesti"} ;
+lin sa'a'llisyys_NK = {s = d40 "säällisyys"} ;
+lin sa'a'miska'_NK = {s = d13 "säämiskä"} ;
+lin sa'a'nnella'_VK = {s = c67A "säännellä"} ;
+lin sa'a'nno'llinen_AK = {s = d38 "säännöllinen"} ;
+--+ lin sa'a'nno'llisesti_AdvK = {s = c99 "säännöllisesti"} ;
+lin sa'a'nno'llistya'_VK = {s = c52 "säännöllistyä"} ;
+lin sa'a'nno'llista'a'_VK = {s = c53 "säännöllistää"} ;
+lin sa'a'nno'llisyys_NK = {s = d40 "säännöllisyys"} ;
+lin sa'a'nno's_NK = {s = d39 "säännös"} ;
+lin sa'a'nno'stella'_VK = {s = c67 "säännöstellä"} ;
+lin sa'a'nno'stely_NK = {s = d02 "säännöstely"} ;
+lin sa'a'nno'sto'_NK = {s = d02 "säännöstö"} ;
+lin sa'a'nno'tella'_VK = {s = c67A "säännötellä"} ;
+lin sa'a'nno'tta'a'_VK = {s = c53A "säännöttää"} ;
+lin sa'a'nno'tto'myys_NK = {s = d40 "säännöttömyys"} ;
+lin sa'a'nno'tto'ma'sti_AdvK = {s = c99 "säännöttömästi"} ;
+lin sa'a'nno'to'n_NK = {s = d34A "säännötön"} ;
+lin sa'a'ntelija'_NK = {s = d12 "sääntelijä"} ;
+lin sa'a'ntely_NK = {s = d02 "sääntely"} ;
+lin sa'a'nto'_NK = {s = d01A "sääntö"} ;
+lin sa'a'ri_NK = {s = d26 "sääri"} ;
+lin sa'a'rihaava_NK = {s = d09 "säärihaava"} ;
+lin sa'a'rinen_NK = {s = d38 "säärinen"} ;
+lin sa'a'risyys_NK = {s = d40 "säärisyys"} ;
+lin sa'a'rys_NK = {s = d39 "säärys"} ;
+lin sa'a'rystin_NK = {s = d33 "säärystin"} ;
+lin sa'a'ski_NK = {s = d07 "sääski"} ;
+lin sa'a'stelia'isyys_NK = {s = d40 "säästeliäisyys"} ;
+lin sa'a'stelia's_AK = {s = d41 "säästeliäs"} ;
+--+ lin sa'a'stelia'a'sti_AdvK = {s = c99 "säästeliäästi"} ;
+lin sa'a'stella'_VK = {s = c67 "säästellä"} ;
+lin sa'a'stio'_NK = {s = d03 "säästiö"} ;
+lin sa'a'styma'_NK = {s = d10 "säästymä"} ;
+lin sa'a'stya'_VK = {s = c52 "säästyä"} ;
+lin sa'a'sta'ja'_NK = {s = d10 "säästäjä"} ;
+lin sa'a'sta'nta'_NK = {s = d09A "säästäntä"} ;
+lin sa'a'sta'vyys_NK = {s = d40 "säästävyys"} ;
+lin sa'a'sta'va'inen_AK = {s = d38 "säästäväinen"} ;
+--+ lin sa'a'sta'va'isesti_AdvK = {s = c99 "säästäväisesti"} ;
+lin sa'a'sta'va'isyys_NK = {s = d40 "säästäväisyys"} ;
+lin sa'a'sta'a'_VK = {s = c53 "säästää"} ;
+lin sa'a'sto'_NK = {s = d01 "säästö"} ;
+lin sa'a'telija'_NK = {s = d12 "säätelijä"} ;
+lin sa'a'tely_NK = {s = d02 "säätely"} ;
+lin sa'a'tio'_NK = {s = d03 "säätiö"} ;
+lin sa'a'tio'ida'_VK = {s = c62 "säätiöidä"} ;
+lin sa'a'tio'inti_NK = {s = d05A "säätiöinti"} ;
+lin sa'a'ty_NK = {s = d01A "sääty"} ;
+lin sa'a'tyinen_NK = {s = d38 "säätyinen"} ;
+lin sa'a'tyla'inen_NK = {s = d38 "säätyläinen"} ;
+lin sa'a'tya'_VK = {s = c52A "säätyä"} ;
+lin sa'a'ta'ja'_NK = {s = d10 "säätäjä"} ;
+lin sa'a'ta'a'_VK = {s = c53A "säätää"} ;
+lin sa'a'to'_NK = {s = d01A "säätö"} ;
+--+ lin sa'a'to'isesti_AdvK = {s = c99 "säätöisesti"} ;
+lin so'hlia'_VK = {s = c61 "söhliä"} ;
+lin so'hla'ta'_VK = {s = c73 "söhlätä"} ;
+lin so'ko'_NK = {s = d01 "sökö"} ;
+lin so'nkko'_NK = {s = d01A "sönkkö"} ;
+lin so'nka'ta'_VK = {s = c73A "sönkätä"} ;
+lin so'nko'tta'ja'_NK = {s = d10 "sönköttäjä"} ;
+lin so'nko'tta'a'_VK = {s = c53A "sönköttää"} ;
+lin so'nko'tys_NK = {s = d39 "sönkötys"} ;
+lin so'po'_AK = {s = d01 "söpö"} ;
+lin so'po'illa'_VK = {s = c67 "söpöillä"} ;
+lin so'po'ily_NK = {s = d02 "söpöily"} ;
+lin so'po'liini_NK = {s = d05 "söpöliini"} ;
+lin so'po'la'inen_NK = {s = d38 "söpöläinen"} ;
+--+ lin so'po'sti_AdvK = {s = c99 "söpösti"} ;
+lin so'po'tta'a'_VK = {s = c53A "söpöttää"} ;
+lin so'po'tys_NK = {s = d39 "söpötys"} ;
+lin so'rkkia'_VK = {s = c61A "sörkkiä"} ;
+lin so'rsseli_NK = {s = d06 "sörsseli"} ;
+lin so'rssa'ta'_VK = {s = c73 "sörssätä"} ;
+lin so'sso'_NK = {s = d01 "sössö"} ;
+lin so'sso'tta'ja'_NK = {s = d10 "sössöttäjä"} ;
+lin so'sso'tta'a'_VK = {s = c53A "sössöttää"} ;
+lin so'sso'tys_NK = {s = d39 "sössötys"} ;
+lin so'o'tisti_AdvK = {s = c99 "söötisti"} ;
+lin so'o'tti_NK = {s = d05A "söötti"} ;
+lin taa_AdvK = {s = c99 "taa"} ;
+lin taaemma_AdvK = {s = c99 "taaemma"} ;
+lin taaemmas_AdvK = {s = c99 "taaemmas"} ;
+lin taaempana_AdvK = {s = c99 "taaempana"} ;
+lin taaempi_NK = {s = d16A "taaempi"} ;
+lin taaimmainen_NK = {s = d38 "taaimmainen"} ;
+lin taaimmaksi_AdvK = {s = c99 "taaimmaksi"} ;
+lin taaimpaa_AdvK = {s = c99 "taaimpaa"} ;
+lin taaimpana_AdvK = {s = c99 "taaimpana"} ;
+lin taain_NK = {s = d36 "taain"} ;
+lin taaja_AK = {s = d09 "taaja"} ;
+lin taajaan_AdvK = {s = c99 "taajaan"} ;
+lin taajalti_AdvK = {s = c99 "taajalti"} ;
+lin taajama_NK = {s = d10 "taajama"} ;
+lin taajassa_AdvK = {s = c99 "taajassa"} ;
+--+ lin taajasti_AdvK = {s = c99 "taajasti"} ;
+lin taajentaa_VK = {s = c54A "taajentaa"} ;
+lin taajentua_VK = {s = c52A "taajentua"} ;
+lin taajeta_VK = {s = c72 "taajeta"} ;
+lin taajuinen_NK = {s = d38 "taajuinen"} ;
+lin taajuus_NK = {s = d40 "taajuus"} ;
+lin taakka_NK = {s = d09A "taakka"} ;
+lin taakse_AdvK = {s = c99 "taakse"} ;
+lin taala_NK = {s = d09 "taala"} ;
+lin taaleri_NK = {s = d06 "taaleri"} ;
+lin taamma_AdvK = {s = c99 "taamma"} ;
+lin taammaksi_AdvK = {s = c99 "taammaksi"} ;
+lin taammas_AdvK = {s = c99 "taammas"} ;
+lin taampaa_AdvK = {s = c99 "taampaa"} ;
+lin taampana_AdvK = {s = c99 "taampana"} ;
+lin taannehtia_VK = {s = c61A "taannehtia"} ;
+lin taannoin_AdvK = {s = c99 "taannoin"} ;
+lin taannoinen_NK = {s = d38 "taannoinen"} ;
+lin taannuttaa_VK = {s = c53A "taannuttaa"} ;
+lin taantua_VK = {s = c52A "taantua"} ;
+lin taantuma_NK = {s = d10 "taantuma"} ;
+lin taantumuksellinen_AK = {s = d38 "taantumuksellinen"} ;
+--+ lin taantumuksellisesti_AdvK = {s = c99 "taantumuksellisesti"} ;
+lin taantumuksellisuus_NK = {s = d40 "taantumuksellisuus"} ;
+lin taantumus_NK = {s = d39 "taantumus"} ;
+lin taapero_NK = {s = d02 "taapero"} ;
+lin taaperrella_VK = {s = c67A "taaperrella"} ;
+lin taapertaa_VK = {s = c54A "taapertaa"} ;
+lin taaplata_VK = {s = c73 "taaplata"} ;
+lin taara_NK = {s = d09 "taara"} ;
+lin taas_AdvK = {s = c99 "taas"} ;
+lin taasen_AdvK = {s = c99 "taasen"} ;
+lin taata_1_VK = {s = c73A "taata"} ;
+lin taata_2_NK = {s = d09 "taata"} ;
+lin taatto_NK = {s = d01A "taatto"} ;
+lin taattu_NK = {s = d01A "taattu"} ;
+lin taatusti_AdvK = {s = c99 "taatusti"} ;
+lin taavetti_NK = {s = d05A "taavetti"} ;
+lin tabasko_NK = {s = d02 "tabasko"} ;
+lin tabbule_NK = {s = d08 "tabbule"} ;
+lin tabletti_NK = {s = d05A "tabletti"} ;
+lin tabloidi_NK = {s = d05 "tabloidi"} ;
+lin tabloidikoko_NK = {s = d01A "tabloidikoko"} ;
+lin tabu_1_NK = {s = d01 "tabu"} ;
+lin tabu_2_NK = {s = d01 "tabu"} ;
+lin tabulaattori_NK = {s = d06 "tabulaattori"} ;
+lin tabuloida_VK = {s = c62 "tabuloida"} ;
+lin tabulointi_NK = {s = d05A "tabulointi"} ;
+lin taco_NK = {s = d01 "taco"} ;
+lin taconkuori_NK = {s = d26 "taconkuori"} ;
+lin tadikko_NK = {s = d04A "tadikko"} ;
+lin tae_1_NK = {s = d48A "tae"} ;
+lin tae_2_NK = {s = d48A "tae"} ;
+lin taekwondo_NK = {s = d01 "taekwondo"} ;
+lin taemma_AdvK = {s = c99 "taemma"} ;
+lin taemmaksi_AdvK = {s = c99 "taemmaksi"} ;
+lin taemmas_AdvK = {s = c99 "taemmas"} ;
+lin taempaa_AdvK = {s = c99 "taempaa"} ;
+lin taempana_AdvK = {s = c99 "taempana"} ;
+lin taempi_NK = {s = d16A "taempi"} ;
+lin taeta_VK = {s = c72A "taeta"} ;
+lin tafti_NK = {s = d05 "tafti"} ;
+lin tag_NK = {s = d05 "tag"} ;
+lin tagi_NK = {s = d05 "tagi"} ;
+lin tagliatelle_NK = {s = d08 "tagliatelle"} ;
+lin tahallaan_AdvK = {s = c99 "tahallaan"} ;
+lin tahallinen_AK = {s = d38 "tahallinen"} ;
+--+ lin tahallisesti_AdvK = {s = c99 "tahallisesti"} ;
+lin tahallisuus_NK = {s = d40 "tahallisuus"} ;
+lin tahansa_AdvK = {s = c99 "tahansa"} ;
+lin tahaton_NK = {s = d34A "tahaton"} ;
+lin tahattomasti_AdvK = {s = c99 "tahattomasti"} ;
+lin tahattomuus_NK = {s = d40 "tahattomuus"} ;
+lin tahdas_NK = {s = d41A "tahdas"} ;
+lin tahdikas_AK = {s = d41A "tahdikas"} ;
+--+ lin tahdikkaasti_AdvK = {s = c99 "tahdikkaasti"} ;
+lin tahdikkuus_NK = {s = d40 "tahdikkuus"} ;
+lin tahdistaa_VK = {s = c53 "tahdistaa"} ;
+lin tahdistaja_NK = {s = d10 "tahdistaja"} ;
+lin tahdistin_NK = {s = d33 "tahdistin"} ;
+lin tahdistua_VK = {s = c52 "tahdistua"} ;
+lin tahdistus_NK = {s = d39 "tahdistus"} ;
+lin tahditon_NK = {s = d34A "tahditon"} ;
+lin tahdittaa_VK = {s = c53A "tahdittaa"} ;
+lin tahdittomasti_AdvK = {s = c99 "tahdittomasti"} ;
+lin tahdittomuus_NK = {s = d40 "tahdittomuus"} ;
+lin tahditus_NK = {s = d39 "tahditus"} ;
+lin tahdoton_NK = {s = d34A "tahdoton"} ;
+lin tahi_AdvK = {s = c99 "tahi"} ;
+lin tahikka_AdvK = {s = c99 "tahikka"} ;
+lin tahko_NK = {s = d01 "tahko"} ;
+lin tahkoinen_NK = {s = d38 "tahkoinen"} ;
+lin tahkoontua_VK = {s = c52A "tahkoontua"} ;
+lin tahkota_VK = {s = c74 "tahkota"} ;
+lin tahkoutua_VK = {s = c52A "tahkoutua"} ;
+lin tahma_NK = {s = d09 "tahma"} ;
+lin tahmaannuttaa_VK = {s = c53A "tahmaannuttaa"} ;
+lin tahmaantua_VK = {s = c52A "tahmaantua"} ;
+lin tahmainen_NK = {s = d38 "tahmainen"} ;
+lin tahmata_VK = {s = c73 "tahmata"} ;
+lin tahmautua_VK = {s = c52A "tahmautua"} ;
+lin tahmea_AK = {s = d15 "tahmea"} ;
+--+ lin tahmeasti_AdvK = {s = c99 "tahmeasti"} ;
+lin tahmentaa_VK = {s = c54A "tahmentaa"} ;
+lin tahmentua_VK = {s = c52A "tahmentua"} ;
+lin tahmeta_VK = {s = c72 "tahmeta"} ;
+lin tahmettaa_VK = {s = c53A "tahmettaa"} ;
+lin tahmettua_VK = {s = c52A "tahmettua"} ;
+lin tahmeus_NK = {s = d40 "tahmeus"} ;
+lin tahna_NK = {s = d09 "tahna"} ;
+lin taho_NK = {s = d01 "taho"} ;
+lin tahoinen_NK = {s = d38 "tahoinen"} ;
+lin tahokas_NK = {s = d41A "tahokas"} ;
+lin tahra_NK = {s = d09 "tahra"} ;
+lin tahraamaton_NK = {s = d34A "tahraamaton"} ;
+lin tahraantua_VK = {s = c52A "tahraantua"} ;
+lin tahraantumaton_NK = {s = d34A "tahraantumaton"} ;
+lin tahrainen_NK = {s = d38 "tahrainen"} ;
+lin tahraisuus_NK = {s = d40 "tahraisuus"} ;
+lin tahrata_VK = {s = c73 "tahrata"} ;
+lin tahraton_NK = {s = d34A "tahraton"} ;
+lin tahrautua_VK = {s = c52A "tahrautua"} ;
+lin tahria_VK = {s = c61 "tahria"} ;
+lin tahriintua_VK = {s = c52A "tahriintua"} ;
+lin tahriintumaton_NK = {s = d34A "tahriintumaton"} ;
+lin tahrimaton_NK = {s = d34A "tahrimaton"} ;
+lin tahriutua_VK = {s = c52A "tahriutua"} ;
+lin tahti_NK = {s = d05A "tahti"} ;
+lin tahtinen_NK = {s = d38 "tahtinen"} ;
+lin tahto_NK = {s = d01A "tahto"} ;
+lin tahtoa_VK = {s = c52A "tahtoa"} ;
+lin tahtoinen_AK = {s = d38 "tahtoinen"} ;
+--+ lin tahtoisesti_AdvK = {s = c99 "tahtoisesti"} ;
+lin tahtoisuus_NK = {s = d40 "tahtoisuus"} ;
+lin tahtomattaan_AdvK = {s = c99 "tahtomattaan"} ;
+lin tai_AdvK = {s = c99 "tai"} ;
+--+ lin taianomaisesti_AdvK = {s = c99 "taianomaisesti"} ;
+lin taide_NK = {s = d48A "taide"} ;
+--+ lin taidehistoriallisesti_AdvK = {s = c99 "taidehistoriallisesti"} ;
+lin taidokas_AK = {s = d41A "taidokas"} ;
+--+ lin taidokkaasti_AdvK = {s = c99 "taidokkaasti"} ;
+lin taidokkuus_NK = {s = d40 "taidokkuus"} ;
+lin taidollinen_AK = {s = d38 "taidollinen"} ;
+--+ lin taidollisesti_AdvK = {s = c99 "taidollisesti"} ;
+lin taidoton_NK = {s = d34A "taidoton"} ;
+lin taidottomasti_AdvK = {s = c99 "taidottomasti"} ;
+lin taidottomuus_NK = {s = d40 "taidottomuus"} ;
+lin taifuuni_NK = {s = d06 "taifuuni"} ;
+lin taiga_NK = {s = d09 "taiga"} ;
+lin taiji_NK = {s = d05 "taiji"} ;
+lin taika_NK = {s = d09A "taika"} ;
+--+ lin taikauskoisesti_AdvK = {s = c99 "taikauskoisesti"} ;
+lin taikinainen_NK = {s = d38 "taikinainen"} ;
+lin taikinanjuuri_NK = {s = d26 "taikinanjuuri"} ;
+lin taikinoida_VK = {s = c62 "taikinoida"} ;
+lin taikinointi_NK = {s = d05A "taikinointi"} ;
+lin taikka_AdvK = {s = c99 "taikka"} ;
+lin taikoa_VK = {s = c52A "taikoa"} ;
+lin taikuus_NK = {s = d40 "taikuus"} ;
+lin taimen_NK = {s = d32 "taimen"} ;
+lin taimettaa_VK = {s = c53A "taimettaa"} ;
+lin taimettua_VK = {s = c52A "taimettua"} ;
+lin taimetus_NK = {s = d39 "taimetus"} ;
+lin taimi_NK = {s = d25 "taimi"} ;
+lin taimia_VK = {s = c61 "taimia"} ;
+lin taimisto_NK = {s = d02 "taimisto"} ;
+lin taimmainen_NK = {s = d38 "taimmainen"} ;
+lin taimmaksi_AdvK = {s = c99 "taimmaksi"} ;
+lin taimmas_AdvK = {s = c99 "taimmas"} ;
+lin taimpaa_AdvK = {s = c99 "taimpaa"} ;
+lin taimpana_AdvK = {s = c99 "taimpana"} ;
+lin tain_NK = {s = d36 "tain"} ;
+lin tainnoksiin_AdvK = {s = c99 "tainnoksiin"} ;
+lin tainnoksissa_AdvK = {s = c99 "tainnoksissa"} ;
+lin tainnoksista_AdvK = {s = c99 "tainnoksista"} ;
+lin tainnuksiin_AdvK = {s = c99 "tainnuksiin"} ;
+lin tainnuksissa_AdvK = {s = c99 "tainnuksissa"} ;
+lin tainnuksista_AdvK = {s = c99 "tainnuksista"} ;
+lin tainnuttaa_VK = {s = c53A "tainnuttaa"} ;
+lin tainnutus_NK = {s = d39 "tainnutus"} ;
+lin taintua_VK = {s = c52A "taintua"} ;
+lin taionta_NK = {s = d09A "taionta"} ;
+lin taipale_NK = {s = d49 "taipale"} ;
+lin taipeinen_NK = {s = d38 "taipeinen"} ;
+lin taipua_VK = {s = c52A "taipua"} ;
+lin taipuilla_VK = {s = c67 "taipuilla"} ;
+lin taipuisa_AK = {s = d10 "taipuisa"} ;
+--+ lin taipuisasti_AdvK = {s = c99 "taipuisasti"} ;
+lin taipuisuus_NK = {s = d40 "taipuisuus"} ;
+lin taipuma_NK = {s = d10 "taipuma"} ;
+lin taipumaton_NK = {s = d34A "taipumaton"} ;
+lin taipumattomuus_NK = {s = d40 "taipumattomuus"} ;
+lin taipumus_NK = {s = d39 "taipumus"} ;
+lin taipuva_NK = {s = d10 "taipuva"} ;
+lin taipuvainen_NK = {s = d38 "taipuvainen"} ;
+lin taipuvaisuus_NK = {s = d40 "taipuvaisuus"} ;
+lin taipuvuus_NK = {s = d40 "taipuvuus"} ;
+lin taistelija_NK = {s = d12 "taistelija"} ;
+lin taistella_VK = {s = c67 "taistella"} ;
+lin taistelu_NK = {s = d02 "taistelu"} ;
+lin taisto_NK = {s = d01 "taisto"} ;
+lin taistolaisuus_NK = {s = d40 "taistolaisuus"} ;
+lin taita_AdvK = {s = c99 "taita"} ;
+lin taitaa_VK = {s = c76A "taitaa"} ;
+lin taitaja_NK = {s = d10 "taitaja"} ;
+lin taitamaton_NK = {s = d34A "taitamaton"} ;
+lin taitamattomasti_AdvK = {s = c99 "taitamattomasti"} ;
+lin taitamattomuus_NK = {s = d40 "taitamattomuus"} ;
+lin taitava_AK = {s = d10 "taitava"} ;
+--+ lin taitavasti_AdvK = {s = c99 "taitavasti"} ;
+lin taitavuus_NK = {s = d40 "taitavuus"} ;
+lin taite_NK = {s = d48A "taite"} ;
+lin taiteellinen_AK = {s = d38 "taiteellinen"} ;
+--+ lin taiteellisesti_AdvK = {s = c99 "taiteellisesti"} ;
+lin taiteellisuus_NK = {s = d40 "taiteellisuus"} ;
+lin taiteikas_NK = {s = d41A "taiteikas"} ;
+lin taiteilija_NK = {s = d12 "taiteilija"} ;
+lin taiteilijatar_NK = {s = d32A "taiteilijatar"} ;
+lin taiteilla_VK = {s = c67 "taiteilla"} ;
+lin taiteilu_NK = {s = d02 "taiteilu"} ;
+lin taitekerroin_NK = {s = d33A "taitekerroin"} ;
+lin taitekohta_NK = {s = d10A "taitekohta"} ;
+lin taitella_VK = {s = c67A "taitella"} ;
+lin taiten_AdvK = {s = c99 "taiten"} ;
+lin taito_NK = {s = d01A "taito"} ;
+lin taitos_NK = {s = d39 "taitos"} ;
+lin taitoskohta_NK = {s = d10A "taitoskohta"} ;
+lin taitse_AdvK = {s = c99 "taitse"} ;
+lin taittaa_VK = {s = c56A "taittaa"} ;
+lin taittaja_NK = {s = d10 "taittaja"} ;
+lin taitteinen_NK = {s = d38 "taitteinen"} ;
+lin taitteisuus_NK = {s = d40 "taitteisuus"} ;
+lin taitto_NK = {s = d01A "taitto"} ;
+lin taittoinen_NK = {s = d38 "taittoinen"} ;
+lin taittoisuus_NK = {s = d40 "taittoisuus"} ;
+lin taittua_VK = {s = c52A "taittua"} ;
+lin taittuma_NK = {s = d10 "taittuma"} ;
+lin taittumakohta_NK = {s = d10A "taittumakohta"} ;
+lin taituri_NK = {s = d06 "taituri"} ;
+lin taiturillinen_AK = {s = d38 "taiturillinen"} ;
+--+ lin taiturillisesti_AdvK = {s = c99 "taiturillisesti"} ;
+lin taiturillisuus_NK = {s = d40 "taiturillisuus"} ;
+--+ lin taiturimaisesti_AdvK = {s = c99 "taiturimaisesti"} ;
+lin taiturimaisuus_NK = {s = d40 "taiturimaisuus"} ;
+lin taituroida_VK = {s = c62 "taituroida"} ;
+lin taiturointi_NK = {s = d05A "taiturointi"} ;
+lin taituruus_NK = {s = d40 "taituruus"} ;
+lin taivaallinen_AK = {s = d38 "taivaallinen"} ;
+--+ lin taivaallisesti_AdvK = {s = c99 "taivaallisesti"} ;
+lin taivaallisuus_NK = {s = d40 "taivaallisuus"} ;
+lin taivaanlaki_NK = {s = d07A "taivaanlaki"} ;
+lin taivaansini_NK = {s = d07 "taivaansini"} ;
+lin taivaaseenastuminen_NK = {s = d38 "taivaaseenastuminen"} ;
+lin taival_NK = {s = d49A "taival"} ;
+lin taivallus_NK = {s = d39 "taivallus"} ;
+lin taivaltaa_VK = {s = c54A "taivaltaa"} ;
+lin taivaltaja_NK = {s = d10 "taivaltaja"} ;
+lin taivas_NK = {s = d41 "taivas"} ;
+lin taivastelija_NK = {s = d12 "taivastelija"} ;
+lin taivastella_VK = {s = c67 "taivastella"} ;
+lin taivastelu_NK = {s = d02 "taivastelu"} ;
+lin taive_NK = {s = d48A "taive"} ;
+lin taivekohta_NK = {s = d10A "taivekohta"} ;
+lin taivo_NK = {s = d01 "taivo"} ;
+lin taivukas_NK = {s = d41A "taivukas"} ;
+lin taivuksiin_AdvK = {s = c99 "taivuksiin"} ;
+lin taivuksissa_AdvK = {s = c99 "taivuksissa"} ;
+lin taivutella_VK = {s = c67A "taivutella"} ;
+lin taivutin_NK = {s = d33A "taivutin"} ;
+lin taivuttaa_VK = {s = c53A "taivuttaa"} ;
+lin taivuttautua_VK = {s = c52A "taivuttautua"} ;
+lin taivutus_NK = {s = d39 "taivutus"} ;
+lin taju_NK = {s = d01 "taju"} ;
+lin tajuamaton_NK = {s = d34A "tajuamaton"} ;
+lin tajuinen_AK = {s = d38 "tajuinen"} ;
+--+ lin tajuisesti_AdvK = {s = c99 "tajuisesti"} ;
+lin tajuisuus_NK = {s = d40 "tajuisuus"} ;
+lin tajunta_NK = {s = d09A "tajunta"} ;
+lin tajuta_VK = {s = c74 "tajuta"} ;
+lin tajuton_NK = {s = d34A "tajuton"} ;
+lin tajuttomasti_AdvK = {s = c99 "tajuttomasti"} ;
+lin tajuttomuus_NK = {s = d40 "tajuttomuus"} ;
+lin taka_NK = {s = d09A "taka"} ;
+lin takaa_AdvK = {s = c99 "takaa"} ;
+lin takaaja_NK = {s = d10 "takaaja"} ;
+lin takaaladattava_NK = {s = d10 "takaaladattava"} ;
+lin takainen_NK = {s = d38 "takainen"} ;
+lin takaisin_AdvK = {s = c99 "takaisin"} ;
+lin takakenoinen_NK = {s = d38 "takakenoinen"} ;
+lin takaka'teen_AdvK = {s = c99 "takakäteen"} ;
+lin takalisto_NK = {s = d01 "takalisto"} ;
+lin takallinen_NK = {s = d38 "takallinen"} ;
+lin takamus_NK = {s = d39 "takamus"} ;
+lin takana_AdvK = {s = c99 "takana"} ;
+lin takapajuinen_AK = {s = d38 "takapajuinen"} ;
+--+ lin takapajuisesti_AdvK = {s = c99 "takapajuisesti"} ;
+lin takapajuisuus_NK = {s = d40 "takapajuisuus"} ;
+lin takapajula_NK = {s = d12 "takapajula"} ;
+lin takapenkkila'inen_NK = {s = d38 "takapenkkiläinen"} ;
+lin takaperin_AdvK = {s = c99 "takaperin"} ;
+lin takaperoinen_AK = {s = d38 "takaperoinen"} ;
+--+ lin takaperoisesti_AdvK = {s = c99 "takaperoisesti"} ;
+lin takaperoisuus_NK = {s = d40 "takaperoisuus"} ;
+lin takatuuppari_NK = {s = d06 "takatuuppari"} ;
+lin takauma_NK = {s = d10 "takauma"} ;
+lin takaus_NK = {s = d39 "takaus"} ;
+lin takautua_VK = {s = c52A "takautua"} ;
+lin takautuma_NK = {s = d10 "takautuma"} ;
+lin takavarikoida_VK = {s = c62 "takavarikoida"} ;
+lin takavarikointi_NK = {s = d05A "takavarikointi"} ;
+lin takellella_VK = {s = c67A "takellella"} ;
+lin takeneva_NK = {s = d10 "takeneva"} ;
+lin takerrella_VK = {s = c67A "takerrella"} ;
+lin takerrus_NK = {s = d39 "takerrus"} ;
+lin takertaa_VK = {s = c54A "takertaa"} ;
+lin takertua_VK = {s = c52A "takertua"} ;
+lin takertuma_NK = {s = d10 "takertuma"} ;
+lin takia_AdvK = {s = c99 "takia"} ;
+lin takiainen_NK = {s = d38 "takiainen"} ;
+lin takila_NK = {s = d13 "takila"} ;
+lin takiloida_VK = {s = c62 "takiloida"} ;
+lin takilointi_NK = {s = d05A "takilointi"} ;
+lin takimmainen_NK = {s = d38 "takimmainen"} ;
+lin takka_1_NK = {s = d09A "takka"} ;
+lin takka_2_NK = {s = d09A "takka"} ;
+lin takki_NK = {s = d05A "takki"} ;
+lin takkinen_NK = {s = d38 "takkinen"} ;
+lin takku_NK = {s = d01A "takku"} ;
+lin takkuilla_VK = {s = c67 "takkuilla"} ;
+lin takkuilu_NK = {s = d02 "takkuilu"} ;
+lin takkuinen_AK = {s = d38 "takkuinen"} ;
+--+ lin takkuisesti_AdvK = {s = c99 "takkuisesti"} ;
+lin takkuisuus_NK = {s = d40 "takkuisuus"} ;
+lin takkuuntua_VK = {s = c52A "takkuuntua"} ;
+lin taklaaja_NK = {s = d10 "taklaaja"} ;
+lin taklata_VK = {s = c73 "taklata"} ;
+lin taklaus_NK = {s = d39 "taklaus"} ;
+lin takoa_VK = {s = c52A "takoa"} ;
+lin takoja_NK = {s = d10 "takoja"} ;
+lin takomo_NK = {s = d02 "takomo"} ;
+lin taksa_NK = {s = d09 "taksa"} ;
+lin taksari_NK = {s = d06 "taksari"} ;
+lin taksi_NK = {s = d05 "taksi"} ;
+lin taksia_NK = {s = d12 "taksia"} ;
+lin taksoittaa_VK = {s = c53A "taksoittaa"} ;
+lin taksoitus_NK = {s = d39 "taksoitus"} ;
+lin taksonomia_NK = {s = d12 "taksonomia"} ;
+lin taksva'rkki_NK = {s = d05A "taksvärkki"} ;
+lin taktiikka_NK = {s = d14A "taktiikka"} ;
+lin taktikko_NK = {s = d04A "taktikko"} ;
+lin taktikoida_VK = {s = c62 "taktikoida"} ;
+lin taktikoija_NK = {s = d10 "taktikoija"} ;
+lin taktikointi_NK = {s = d05A "taktikointi"} ;
+lin taktinen_AK = {s = d38 "taktinen"} ;
+--+ lin taktisesti_AdvK = {s = c99 "taktisesti"} ;
+lin taktisuus_NK = {s = d40 "taktisuus"} ;
+lin takuta_VK = {s = c74A "takuta"} ;
+lin takuu_NK = {s = d17 "takuu"} ;
+lin takuuaika_NK = {s = d09A "takuuaika"} ;
+lin talamus_NK = {s = d39 "talamus"} ;
+lin talari_NK = {s = d06 "talari"} ;
+lin talas_NK = {s = d41 "talas"} ;
+lin tali_NK = {s = d05 "tali"} ;
+lin talidomidi_NK = {s = d05 "talidomidi"} ;
+lin talikko_NK = {s = d04A "talikko"} ;
+lin talismaani_NK = {s = d05 "talismaani"} ;
+lin talja_1_NK = {s = d09 "talja"} ;
+lin talja_2_NK = {s = d09 "talja"} ;
+lin talkita_VK = {s = c69 "talkita"} ;
+lin talkkari_NK = {s = d06 "talkkari"} ;
+lin talkki_NK = {s = d05A "talkki"} ;
+lin talkkuna_NK = {s = d12 "talkkuna"} ;
+lin talkoilla_VK = {s = c67 "talkoilla"} ;
+lin talkoo_NK = {s = d17 "talkoo"} ;
+--? lin talkoot_NK = {s = d17 "talkoot"} ;
+lin talla_1_NK = {s = d09 "talla"} ;
+lin talla_2_NK = {s = d09 "talla"} ;
+lin tallaaja_NK = {s = d10 "tallaaja"} ;
+lin tallaantua_VK = {s = c52A "tallaantua"} ;
+lin tallailla_VK = {s = c67 "tallailla"} ;
+lin tallata_VK = {s = c73 "tallata"} ;
+lin tallaus_NK = {s = d39 "tallaus"} ;
+lin tallautua_VK = {s = c52A "tallautua"} ;
+lin tallella_AdvK = {s = c99 "tallella"} ;
+lin tallenne_NK = {s = d48A "tallenne"} ;
+lin tallennin_NK = {s = d33A "tallennin"} ;
+lin tallennus_NK = {s = d39 "tallennus"} ;
+lin tallentaa_VK = {s = c54A "tallentaa"} ;
+lin tallentua_VK = {s = c52A "tallentua"} ;
+lin tallessa_AdvK = {s = c99 "tallessa"} ;
+lin tallesta_AdvK = {s = c99 "tallesta"} ;
+lin tallete_NK = {s = d48A "tallete"} ;
+lin tallettaa_VK = {s = c53A "tallettaa"} ;
+lin tallettaja_NK = {s = d10 "tallettaja"} ;
+lin talletus_NK = {s = d39 "talletus"} ;
+lin talli_NK = {s = d05 "talli"} ;
+lin tallium_NK = {s = d05 "tallium"} ;
+lin talloa_VK = {s = c52 "talloa"} ;
+lin tallukas_NK = {s = d41A "tallukas"} ;
+lin tallukka_NK = {s = d14A "tallukka"} ;
+lin tallustaa_VK = {s = c53 "tallustaa"} ;
+lin tallustella_VK = {s = c67 "tallustella"} ;
+lin talmud_NK = {s = d05 "talmud"} ;
+lin talo_NK = {s = d01 "talo"} ;
+lin talollinen_NK = {s = d38 "talollinen"} ;
+lin talonki_NK = {s = d05A "talonki"} ;
+lin talonpoikainen_NK = {s = d38 "talonpoikainen"} ;
+lin talonpoikaisto_NK = {s = d01 "talonpoikaisto"} ;
+lin talonpojisto_NK = {s = d01 "talonpojisto"} ;
+lin talonviini_NK = {s = d05 "talonviini"} ;
+lin talosilla_AdvK = {s = c99 "talosilla"} ;
+lin talosille_AdvK = {s = c99 "talosille"} ;
+lin taloton_NK = {s = d34A "taloton"} ;
+lin taloudellinen_AK = {s = d38 "taloudellinen"} ;
+--+ lin taloudellisesti_AdvK = {s = c99 "taloudellisesti"} ;
+lin taloudellistaa_VK = {s = c53 "taloudellistaa"} ;
+lin taloudellisuus_NK = {s = d40 "taloudellisuus"} ;
+lin talous_NK = {s = d40 "talous"} ;
+lin talsia_VK = {s = c61 "talsia"} ;
+lin taltata_VK = {s = c73A "taltata"} ;
+lin talteen_AdvK = {s = c99 "talteen"} ;
+lin taltio_NK = {s = d03 "taltio"} ;
+lin taltioida_VK = {s = c62 "taltioida"} ;
+lin taltiointi_NK = {s = d05A "taltiointi"} ;
+lin taltta_NK = {s = d09A "taltta"} ;
+lin talttaus_NK = {s = d39 "talttaus"} ;
+lin talttua_VK = {s = c52A "talttua"} ;
+lin talttumaton_NK = {s = d34A "talttumaton"} ;
+lin taltuttaa_VK = {s = c53A "taltuttaa"} ;
+lin taltuttamaton_NK = {s = d34A "taltuttamaton"} ;
+lin talutella_VK = {s = c67A "talutella"} ;
+lin talutin_NK = {s = d33A "talutin"} ;
+lin taluttaa_VK = {s = c53A "taluttaa"} ;
+lin taluttaja_NK = {s = d10 "taluttaja"} ;
+lin talveentua_VK = {s = c52A "talveentua"} ;
+lin talvehdittaa_VK = {s = c53A "talvehdittaa"} ;
+lin talvehtia_VK = {s = c61A "talvehtia"} ;
+lin talvehtija_NK = {s = d12 "talvehtija"} ;
+lin talvehtimaton_NK = {s = d34A "talvehtimaton"} ;
+lin talvellinen_NK = {s = d38 "talvellinen"} ;
+lin talvemmaksi_AdvK = {s = c99 "talvemmaksi"} ;
+lin talvemmalla_AdvK = {s = c99 "talvemmalla"} ;
+lin talvemmalle_AdvK = {s = c99 "talvemmalle"} ;
+lin talvempana_AdvK = {s = c99 "talvempana"} ;
+lin talveuttaa_VK = {s = c53A "talveuttaa"} ;
+lin talveutua_VK = {s = c52A "talveutua"} ;
+lin talvi_NK = {s = d07 "talvi"} ;
+lin talviaika_NK = {s = d09A "talviaika"} ;
+lin talviasuttava_NK = {s = d10 "talviasuttava"} ;
+lin talvikki_NK = {s = d05A "talvikki"} ;
+lin talvinen_NK = {s = d38 "talvinen"} ;
+lin talvio_NK = {s = d03 "talvio"} ;
+lin talvisaika_NK = {s = d09A "talvisaika"} ;
+lin talvisin_AdvK = {s = c99 "talvisin"} ;
+lin tamburiini_NK = {s = d05 "tamburiini"} ;
+--? lin tamineet_NK = {s = d48 "tamineet"} ;
+lin tamma_NK = {s = d09 "tamma"} ;
+lin tammi_1_NK = {s = d07 "tammi"} ;
+lin tammi_2_NK = {s = d07 "tammi"} ;
+lin tammi_3_NK = {s = d07 "tammi"} ;
+lin tamminen_NK = {s = d38 "tamminen"} ;
+lin tammisto_NK = {s = d02 "tammisto"} ;
+lin tammukka_NK = {s = d14A "tammukka"} ;
+lin tampata_1_VK = {s = c73A "tampata"} ;
+lin tampata_2_VK = {s = c73A "tampata"} ;
+lin tamponi_NK = {s = d05 "tamponi"} ;
+lin tamponoida_VK = {s = c62 "tamponoida"} ;
+lin tamppi_NK = {s = d05A "tamppi"} ;
+lin tampuuri_NK = {s = d06 "tampuuri"} ;
+lin tanaan_AdvK = {s = c99 "tanaan"} ;
+lin tanakasti_AdvK = {s = c99 "tanakasti"} ;
+lin tanakka_NK = {s = d14A "tanakka"} ;
+lin tanakkuus_NK = {s = d40 "tanakkuus"} ;
+lin tanakoitua_VK = {s = c52A "tanakoitua"} ;
+lin tanassa_AdvK = {s = c99 "tanassa"} ;
+lin tanatologi_NK = {s = d05 "tanatologi"} ;
+lin tanatologia_NK = {s = d12 "tanatologia"} ;
+lin tandem_NK = {s = d06 "tandem"} ;
+--? lin tangat_NK = {s = d09 "tangat"} ;
+lin tangeerata_VK = {s = c73 "tangeerata"} ;
+lin tangeeraus_NK = {s = d39 "tangeeraus"} ;
+lin tangelo_NK = {s = d02 "tangelo"} ;
+lin tangentiaalinen_NK = {s = d38 "tangentiaalinen"} ;
+lin tangentti_NK = {s = d05A "tangentti"} ;
+lin tango_NK = {s = d01 "tango"} ;
+lin tanhu_NK = {s = d01 "tanhu"} ;
+lin tanhua_NK = {s = d12 "tanhua"} ;
+lin tanhuaja_NK = {s = d10 "tanhuaja"} ;
+lin tanhuta_VK = {s = c74 "tanhuta"} ;
+lin tanhuvilla_AdvK = {s = c99 "tanhuvilla"} ;
+lin tanka_NK = {s = d09 "tanka"} ;
+lin tankata_1_VK = {s = c73A "tankata"} ;
+lin tankata_2_VK = {s = c73A "tankata"} ;
+lin tankea_NK = {s = d15 "tankea"} ;
+lin tankkailla_VK = {s = c67 "tankkailla"} ;
+lin tankkaus_1_NK = {s = d39 "tankkaus"} ;
+lin tankkaus_2_NK = {s = d39 "tankkaus"} ;
+lin tankkeri_NK = {s = d06 "tankkeri"} ;
+lin tankki_NK = {s = d05A "tankki"} ;
+lin tanko_NK = {s = d01A "tanko"} ;
+lin tanner_NK = {s = d49A "tanner"} ;
+lin tanniini_NK = {s = d05 "tanniini"} ;
+lin tanska_NK = {s = d09 "tanska"} ;
+lin tanskandoggi_NK = {s = d05 "tanskandoggi"} ;
+lin tanskannos_NK = {s = d39 "tanskannos"} ;
+lin tanskantaa_VK = {s = c54A "tanskantaa"} ;
+lin tanskatar_NK = {s = d32A "tanskatar"} ;
+lin tanssata_VK = {s = c73 "tanssata"} ;
+lin tanssi_NK = {s = d05 "tanssi"} ;
+lin tanssia_VK = {s = c61 "tanssia"} ;
+--? lin tanssiaiset_NK = {s = d38 "tanssiaiset"} ;
+lin tanssija_NK = {s = d12 "tanssija"} ;
+lin tanssijatar_NK = {s = d32A "tanssijatar"} ;
+lin tanssillinen_NK = {s = d38 "tanssillinen"} ;
+lin tanssitella_VK = {s = c67A "tanssitella"} ;
+lin tanssittaa_VK = {s = c53A "tanssittaa"} ;
+lin tanssittaja_NK = {s = d10 "tanssittaja"} ;
+lin tantaali_NK = {s = d06 "tantaali"} ;
+lin tantere_NK = {s = d49 "tantere"} ;
+lin tantieemi_NK = {s = d05 "tantieemi"} ;
+lin tantta_NK = {s = d09A "tantta"} ;
+--+ lin tanttamaisesti_AdvK = {s = c99 "tanttamaisesti"} ;
+lin tanttamaisuus_NK = {s = d40 "tanttamaisuus"} ;
+lin tantti_NK = {s = d05A "tantti"} ;
+lin tanu_NK = {s = d01 "tanu"} ;
+lin taoismi_NK = {s = d05 "taoismi"} ;
+lin taolainen_NK = {s = d38 "taolainen"} ;
+lin taolaisuus_NK = {s = d40 "taolaisuus"} ;
+lin taonnainen_NK = {s = d38 "taonnainen"} ;
+lin taonta_NK = {s = d09A "taonta"} ;
+lin taos_NK = {s = d39 "taos"} ;
+lin taottaa_VK = {s = c53A "taottaa"} ;
+lin taottavuus_NK = {s = d40 "taottavuus"} ;
+lin tapa_NK = {s = d09A "tapa"} ;
+lin tapaama_AdvK = {s = c99 "tapaama"} ;
+lin tapaaminen_NK = {s = d38 "tapaaminen"} ;
+lin tapahtua_VK = {s = c52A "tapahtua"} ;
+lin tapahtuma_NK = {s = d10 "tapahtuma"} ;
+lin tapahtumainen_NK = {s = d38 "tapahtumainen"} ;
+lin tapahtumaton_NK = {s = d34A "tapahtumaton"} ;
+lin tapailla_VK = {s = c67 "tapailla"} ;
+lin tapailu_NK = {s = d02 "tapailu"} ;
+lin tapainen_AK = {s = d38 "tapainen"} ;
+--+ lin tapaisesti_AdvK = {s = c99 "tapaisesti"} ;
+lin tapaisuus_NK = {s = d40 "tapaisuus"} ;
+lin tapani_NK = {s = d05 "tapani"} ;
+lin tapattaa_VK = {s = c53A "tapattaa"} ;
+lin tapaturmainen_AK = {s = d38 "tapaturmainen"} ;
+--+ lin tapaturmaisesti_AdvK = {s = c99 "tapaturmaisesti"} ;
+lin tapaturmaisuus_NK = {s = d40 "tapaturmaisuus"} ;
+lin tapatus_NK = {s = d39 "tapatus"} ;
+lin tapauksekas_NK = {s = d41A "tapauksekas"} ;
+lin tapaukseton_NK = {s = d34A "tapaukseton"} ;
+lin tapauksinen_NK = {s = d38 "tapauksinen"} ;
+lin tapauksittain_AdvK = {s = c99 "tapauksittain"} ;
+lin tapauksittainen_NK = {s = d38 "tapauksittainen"} ;
+lin tapaus_NK = {s = d39 "tapaus"} ;
+lin tapella_VK = {s = c67A "tapella"} ;
+lin tapetoida_VK = {s = c62 "tapetoida"} ;
+lin tapetointi_NK = {s = d05A "tapetointi"} ;
+lin tapetti_NK = {s = d05A "tapetti"} ;
+lin tapiiri_NK = {s = d06 "tapiiri"} ;
+lin tapisoida_VK = {s = c62 "tapisoida"} ;
+lin tapittaa_VK = {s = c53A "tapittaa"} ;
+lin tapitus_NK = {s = d39 "tapitus"} ;
+lin tappaa_VK = {s = c56A "tappaa"} ;
+lin tappaja_NK = {s = d10 "tappaja"} ;
+--? lin tappajaiset_NK = {s = d38 "tappajaiset"} ;
+lin tappara_NK = {s = d12 "tappara"} ;
+lin tappelu_NK = {s = d02 "tappelu"} ;
+lin tappelus_NK = {s = d39 "tappelus"} ;
+lin tappi_NK = {s = d05A "tappi"} ;
+lin tappio_NK = {s = d03 "tappio"} ;
+lin tappiollinen_AK = {s = d38 "tappiollinen"} ;
+--+ lin tappiollisesti_AdvK = {s = c99 "tappiollisesti"} ;
+lin tappiollisuus_NK = {s = d40 "tappiollisuus"} ;
+lin tappo_NK = {s = d01A "tappo"} ;
+lin tappura_NK = {s = d12 "tappura"} ;
+lin tapsi_NK = {s = d05 "tapsi"} ;
+lin tapuli_NK = {s = d06 "tapuli"} ;
+lin taputella_VK = {s = c67A "taputella"} ;
+lin taputtaa_VK = {s = c53A "taputtaa"} ;
+lin taputus_NK = {s = d39 "taputus"} ;
+lin tarakka_NK = {s = d14A "tarakka"} ;
+lin taranteli_NK = {s = d05 "taranteli"} ;
+lin tarantella_NK = {s = d09 "tarantella"} ;
+lin tarha_NK = {s = d09 "tarha"} ;
+lin tarhaaja_NK = {s = d10 "tarhaaja"} ;
+lin tarhata_VK = {s = c73 "tarhata"} ;
+lin tarhaus_NK = {s = d39 "tarhaus"} ;
+lin tarhuri_NK = {s = d06 "tarhuri"} ;
+lin tariffi_NK = {s = d05 "tariffi"} ;
+lin tariffoida_VK = {s = c62 "tariffoida"} ;
+lin tariffointi_NK = {s = d05A "tariffointi"} ;
+lin tarina_NK = {s = d12 "tarina"} ;
+lin tarinoida_VK = {s = c62 "tarinoida"} ;
+lin tarinoija_NK = {s = d10 "tarinoija"} ;
+lin tarinointi_NK = {s = d05A "tarinointi"} ;
+lin tarita_VK = {s = c69 "tarita"} ;
+lin tarjeta_VK = {s = c72A "tarjeta"} ;
+lin tarjoaja_NK = {s = d10 "tarjoaja"} ;
+lin tarjoilija_NK = {s = d12 "tarjoilija"} ;
+lin tarjoilijatar_NK = {s = d32A "tarjoilijatar"} ;
+lin tarjoilla_VK = {s = c67 "tarjoilla"} ;
+lin tarjoilu_NK = {s = d02 "tarjoilu"} ;
+lin tarjokas_NK = {s = d41A "tarjokas"} ;
+lin tarjolla_AdvK = {s = c99 "tarjolla"} ;
+lin tarjolle_AdvK = {s = c99 "tarjolle"} ;
+lin tarjona_AdvK = {s = c99 "tarjona"} ;
+lin tarjonta_NK = {s = d09A "tarjonta"} ;
+lin tarjooja_NK = {s = d10 "tarjooja"} ;
+lin tarjota_VK = {s = c74 "tarjota"} ;
+lin tarjotin_NK = {s = d33A "tarjotin"} ;
+lin tarjous_NK = {s = d39 "tarjous"} ;
+lin tarjoutua_VK = {s = c52A "tarjoutua"} ;
+lin tarkalla_AdvK = {s = c99 "tarkalla"} ;
+lin tarkalle_AdvK = {s = c99 "tarkalle"} ;
+lin tarkalleen_AdvK = {s = c99 "tarkalleen"} ;
+lin tarkastaa_VK = {s = c53 "tarkastaa"} ;
+lin tarkastaja_NK = {s = d10 "tarkastaja"} ;
+lin tarkastamo_NK = {s = d02 "tarkastamo"} ;
+lin tarkastelija_NK = {s = d12 "tarkastelija"} ;
+lin tarkastella_VK = {s = c67 "tarkastella"} ;
+lin tarkastelu_NK = {s = d02 "tarkastelu"} ;
+lin tarkasti_AdvK = {s = c99 "tarkasti"} ;
+lin tarkastus_NK = {s = d39 "tarkastus"} ;
+lin tarkastuttaa_VK = {s = c53A "tarkastuttaa"} ;
+lin tarkata_VK = {s = c73A "tarkata"} ;
+lin tarke_NK = {s = d48A "tarke"} ;
+lin tarkemmin_AdvK = {s = c99 "tarkemmin"} ;
+lin tarkennus_NK = {s = d39 "tarkennus"} ;
+lin tarkentaa_VK = {s = c54A "tarkentaa"} ;
+lin tarkentua_VK = {s = c52A "tarkentua"} ;
+lin tarkimmin_AdvK = {s = c99 "tarkimmin"} ;
+lin tarkistaa_VK = {s = c53 "tarkistaa"} ;
+lin tarkistaja_NK = {s = d10 "tarkistaja"} ;
+lin tarkistus_NK = {s = d39 "tarkistus"} ;
+lin tarkistuttaa_VK = {s = c53A "tarkistuttaa"} ;
+lin tarkka_NK = {s = d09A "tarkka"} ;
+lin tarkkaaja_NK = {s = d10 "tarkkaaja"} ;
+lin tarkkaamaton_NK = {s = d34A "tarkkaamaton"} ;
+lin tarkkaamattomasti_AdvK = {s = c99 "tarkkaamattomasti"} ;
+lin tarkkaamattomuus_NK = {s = d40 "tarkkaamattomuus"} ;
+lin tarkkaamo_NK = {s = d02 "tarkkaamo"} ;
+lin tarkkaan_AdvK = {s = c99 "tarkkaan"} ;
+lin tarkkaava_AK = {s = d10 "tarkkaava"} ;
+lin tarkkaavainen_AK = {s = d38 "tarkkaavainen"} ;
+--+ lin tarkkaavaisesti_AdvK = {s = c99 "tarkkaavaisesti"} ;
+lin tarkkaavaisuus_NK = {s = d40 "tarkkaavaisuus"} ;
+--+ lin tarkkaavasti_AdvK = {s = c99 "tarkkaavasti"} ;
+lin tarkkaavuus_NK = {s = d40 "tarkkaavuus"} ;
+lin tarkkailija_NK = {s = d12 "tarkkailija"} ;
+lin tarkkailla_VK = {s = c67 "tarkkailla"} ;
+lin tarkkailu_NK = {s = d02 "tarkkailu"} ;
+--+ lin tarkkaka'tisesti_AdvK = {s = c99 "tarkkakätisesti"} ;
+--+ lin tarkkana'ko'isesti_AdvK = {s = c99 "tarkkanäköisesti"} ;
+lin tarkkarajaisuus_NK = {s = d40 "tarkkarajaisuus"} ;
+--+ lin tarkkasilma'isesti_AdvK = {s = c99 "tarkkasilmäisesti"} ;
+lin tarkkuus_NK = {s = d40 "tarkkuus"} ;
+lin tarkkuuttaa_VK = {s = c53A "tarkkuuttaa"} ;
+lin tarkoin_AdvK = {s = c99 "tarkoin"} ;
+lin tarkoite_NK = {s = d48A "tarkoite"} ;
+lin tarkoittaa_VK = {s = c53A "tarkoittaa"} ;
+lin tarkoituksellinen_AK = {s = d38 "tarkoituksellinen"} ;
+--+ lin tarkoituksellisesti_AdvK = {s = c99 "tarkoituksellisesti"} ;
+lin tarkoituksellisuus_NK = {s = d40 "tarkoituksellisuus"} ;
+lin tarkoituksenmukaistaa_VK = {s = c53 "tarkoituksenmukaistaa"} ;
+lin tarkoituksenmukaistua_VK = {s = c52 "tarkoituksenmukaistua"} ;
+lin tarkoitukseton_NK = {s = d34A "tarkoitukseton"} ;
+lin tarkoituksettomasti_AdvK = {s = c99 "tarkoituksettomasti"} ;
+lin tarkoituksettomuus_NK = {s = d40 "tarkoituksettomuus"} ;
+lin tarkoitus_NK = {s = d39 "tarkoitus"} ;
+--+ lin tarkoitushakuisesti_AdvK = {s = c99 "tarkoitushakuisesti"} ;
+lin tarmo_NK = {s = d01 "tarmo"} ;
+lin tarmoinen_NK = {s = d38 "tarmoinen"} ;
+lin tarmokas_AK = {s = d41A "tarmokas"} ;
+--+ lin tarmokkaasti_AdvK = {s = c99 "tarmokkaasti"} ;
+lin tarmokkuus_NK = {s = d40 "tarmokkuus"} ;
+lin tarmoton_NK = {s = d34A "tarmoton"} ;
+lin tarokki_NK = {s = d05A "tarokki"} ;
+lin tarot_NK = {s = d05 "tarot"} ;
+lin tarpeeksi_AdvK = {s = c99 "tarpeeksi"} ;
+lin tarpeellinen_NK = {s = d38 "tarpeellinen"} ;
+lin tarpeellisuus_NK = {s = d40 "tarpeellisuus"} ;
+lin tarpeen_AdvK = {s = c99 "tarpeen"} ;
+lin tarpeeton_NK = {s = d34A "tarpeeton"} ;
+lin tarpeettomasti_AdvK = {s = c99 "tarpeettomasti"} ;
+lin tarpeettomuus_NK = {s = d40 "tarpeettomuus"} ;
+lin tarpeinen_NK = {s = d38 "tarpeinen"} ;
+lin tarpeisto_NK = {s = d02 "tarpeisto"} ;
+lin tarpoa_VK = {s = c52A "tarpoa"} ;
+lin tarra_NK = {s = d09 "tarra"} ;
+lin tarrain_NK = {s = d33 "tarrain"} ;
+lin tarrata_VK = {s = c73 "tarrata"} ;
+lin tarrautua_VK = {s = c52A "tarrautua"} ;
+lin tartaani_NK = {s = d06 "tartaani"} ;
+lin tarteletti_NK = {s = d05A "tarteletti"} ;
+lin tarttua_VK = {s = c52A "tarttua"} ;
+lin tarttuma_NK = {s = d10 "tarttuma"} ;
+lin tartunnanlevitta'ja'_NK = {s = d10 "tartunnanlevittäjä"} ;
+lin tartunta_NK = {s = d09A "tartunta"} ;
+lin tartuttaa_VK = {s = c53A "tartuttaa"} ;
+lin tartutus_NK = {s = d39 "tartutus"} ;
+lin taru_NK = {s = d01 "taru"} ;
+--+ lin tarunomaisesti_AdvK = {s = c99 "tarunomaisesti"} ;
+lin tarusto_NK = {s = d02 "tarusto"} ;
+lin tarve_NK = {s = d48A "tarve"} ;
+lin tarveharkintainen_NK = {s = d38 "tarveharkintainen"} ;
+lin tarvike_NK = {s = d48A "tarvike"} ;
+lin tarvikkeisto_NK = {s = d01 "tarvikkeisto"} ;
+lin tarvis_AdvK = {s = c99 "tarvis"} ;
+lin tarvita_VK = {s = c69 "tarvita"} ;
+lin tarvitsija_NK = {s = d12 "tarvitsija"} ;
+lin tasaaja_NK = {s = d10 "tasaaja"} ;
+lin tasaan_AdvK = {s = c99 "tasaan"} ;
+lin tasaannuttaa_VK = {s = c53A "tasaannuttaa"} ;
+lin tasaantua_VK = {s = c52A "tasaantua"} ;
+lin tasa_arvoisesti_AdvK = {s = c99 "tasa-arvoisesti"} ;
+lin tasa_arvoistaa_VK = {s = c53 "tasa-arvoistaa"} ;
+lin tasa_arvoistua_VK = {s = c52 "tasa-arvoistua"} ;
+lin tasain_NK = {s = d33 "tasain"} ;
+lin tasainen_AK = {s = d38 "tasainen"} ;
+--+ lin tasaisesti_AdvK = {s = c99 "tasaisesti"} ;
+lin tasaisuus_NK = {s = d40 "tasaisuus"} ;
+lin tasajakoisuus_NK = {s = d40 "tasajakoisuus"} ;
+lin tasajalkaa_AdvK = {s = c99 "tasajalkaa"} ;
+lin tasajatkuinen_AK = {s = d38 "tasajatkuinen"} ;
+--+ lin tasajatkuisesti_AdvK = {s = c99 "tasajatkuisesti"} ;
+lin tasajatkuisuus_NK = {s = d40 "tasajatkuisuus"} ;
+lin tasakkain_AdvK = {s = c99 "tasakkain"} ;
+lin tasakokoisuus_NK = {s = d40 "tasakokoisuus"} ;
+lin tasakoosteisuus_NK = {s = d40 "tasakoosteisuus"} ;
+lin tasaka'pa'la'a'_AdvK = {s = c99 "tasakäpälää"} ;
+lin tasalakinen_NK = {s = d38 "tasalakinen"} ;
+lin tasalevyinen_NK = {s = d38 "tasalevyinen"} ;
+lin tasalla_AdvK = {s = c99 "tasalla"} ;
+lin tasalle_AdvK = {s = c99 "tasalle"} ;
+lin tasalta_AdvK = {s = c99 "tasalta"} ;
+--+ lin tasamittaisesti_AdvK = {s = c99 "tasamittaisesti"} ;
+lin tasamittaisuus_NK = {s = d40 "tasamittaisuus"} ;
+lin tasan_AdvK = {s = c99 "tasan"} ;
+lin tasanko_NK = {s = d01A "tasanko"} ;
+lin tasanne_NK = {s = d48A "tasanne"} ;
+lin tasapainoilla_VK = {s = c67 "tasapainoilla"} ;
+lin tasapainoilu_NK = {s = d02 "tasapainoilu"} ;
+--+ lin tasapainoisesti_AdvK = {s = c99 "tasapainoisesti"} ;
+lin tasapainottomasti_AdvK = {s = c99 "tasapainottomasti"} ;
+lin tasapari_NK = {s = d05 "tasapari"} ;
+lin tasapituisuus_NK = {s = d40 "tasapituisuus"} ;
+--+ lin tasapuolisesti_AdvK = {s = c99 "tasapuolisesti"} ;
+lin tasapuolistaa_VK = {s = c53 "tasapuolistaa"} ;
+lin tasapuolistua_VK = {s = c52 "tasapuolistua"} ;
+lin tasapuolistus_NK = {s = d39 "tasapuolistus"} ;
+lin tasapuolisuus_NK = {s = d40 "tasapuolisuus"} ;
+--+ lin tasapa'isesti_AdvK = {s = c99 "tasapäisesti"} ;
+lin tasapa'ista'a'_VK = {s = c53 "tasapäistää"} ;
+lin tasapa'isyys_NK = {s = d40 "tasapäisyys"} ;
+lin tasareunaisuus_NK = {s = d40 "tasareunaisuus"} ;
+lin tasassa_AdvK = {s = c99 "tasassa"} ;
+lin tasasta_AdvK = {s = c99 "tasasta"} ;
+--+ lin tasasuhtaisesti_AdvK = {s = c99 "tasasuhtaisesti"} ;
+lin tasasuuntaaja_NK = {s = d10 "tasasuuntaaja"} ;
+lin tasata_VK = {s = c73 "tasata"} ;
+--+ lin tasatahtisesti_AdvK = {s = c99 "tasatahtisesti"} ;
+lin tasatahtisuus_NK = {s = d40 "tasatahtisuus"} ;
+lin tasatusten_AdvK = {s = c99 "tasatusten"} ;
+lin tasaus_NK = {s = d39 "tasaus"} ;
+lin tasauttaa_VK = {s = c53A "tasauttaa"} ;
+lin tasautua_VK = {s = c52A "tasautua"} ;
+lin tasautus_NK = {s = d39 "tasautus"} ;
+lin tasavaltainen_AK = {s = d38 "tasavaltainen"} ;
+--+ lin tasavaltaisesti_AdvK = {s = c99 "tasavaltaisesti"} ;
+--+ lin tasava'kisesti_AdvK = {s = c99 "tasaväkisesti"} ;
+lin tasava'kisyys_NK = {s = d40 "tasaväkisyys"} ;
+lin tasava'lisyys_NK = {s = d40 "tasavälisyys"} ;
+lin tase_NK = {s = d48 "tase"} ;
+lin tasinko_NK = {s = d01A "tasinko"} ;
+lin tasku_NK = {s = d01 "tasku"} ;
+lin taskukoko_NK = {s = d01A "taskukoko"} ;
+lin taso_NK = {s = d01 "taso"} ;
+lin tasoihin_AdvK = {s = c99 "tasoihin"} ;
+lin tasoinen_NK = {s = d38 "tasoinen"} ;
+lin tasoissa_AdvK = {s = c99 "tasoissa"} ;
+lin tasoite_NK = {s = d48A "tasoite"} ;
+lin tasoitella_VK = {s = c67A "tasoitella"} ;
+lin tasoitin_NK = {s = d33A "tasoitin"} ;
+lin tasoittaa_VK = {s = c53A "tasoittaa"} ;
+lin tasoittua_VK = {s = c52A "tasoittua"} ;
+lin tasoitus_NK = {s = d39 "tasoitus"} ;
+lin tasokas_NK = {s = d41A "tasokas"} ;
+lin tasouttaa_VK = {s = c53A "tasouttaa"} ;
+lin tasoutus_NK = {s = d39 "tasoutus"} ;
+lin tassi_NK = {s = d05 "tassi"} ;
+lin tassu_NK = {s = d01 "tassu"} ;
+lin tassutella_VK = {s = c67A "tassutella"} ;
+lin tassuttaa_VK = {s = c53A "tassuttaa"} ;
+lin tataari_NK = {s = d06 "tataari"} ;
+lin tatami_NK = {s = d05 "tatami"} ;
+lin tatar_NK = {s = d32A "tatar"} ;
+lin tatska_NK = {s = d09 "tatska"} ;
+lin tattari_1_NK = {s = d06 "tattari"} ;
+lin tattari_2_NK = {s = d06 "tattari"} ;
+lin tatti_NK = {s = d05A "tatti"} ;
+lin tattis_AdvK = {s = c99 "tattis"} ;
+lin tattista_AdvK = {s = c99 "tattista"} ;
+lin tatuoida_VK = {s = c62 "tatuoida"} ;
+lin tatuointi_NK = {s = d05A "tatuointi"} ;
+lin tatuoittaa_VK = {s = c53A "tatuoittaa"} ;
+lin tau_NK = {s = d18 "tau"} ;
+lin taudinlevitta'ja'_NK = {s = d10 "taudinlevittäjä"} ;
+lin tauditon_NK = {s = d34A "tauditon"} ;
+lin tauhka_NK = {s = d09 "tauhka"} ;
+lin tauko_NK = {s = d01A "tauko"} ;
+lin taukoamaton_NK = {s = d34A "taukoamaton"} ;
+lin taukoamatta_AdvK = {s = c99 "taukoamatta"} ;
+lin taula_NK = {s = d09 "taula"} ;
+lin taulu_NK = {s = d01 "taulu"} ;
+lin taulukoida_VK = {s = c62 "taulukoida"} ;
+lin taulukointi_NK = {s = d05A "taulukointi"} ;
+lin tauota_VK = {s = c74A "tauota"} ;
+lin tauoton_NK = {s = d34A "tauoton"} ;
+lin tauottaa_VK = {s = c53A "tauottaa"} ;
+lin tauottomasti_AdvK = {s = c99 "tauottomasti"} ;
+lin tauottomuus_NK = {s = d40 "tauottomuus"} ;
+lin taus_NK = {s = d39 "taus"} ;
+lin tausta_NK = {s = d09 "tausta"} ;
+lin taustaa_VK = {s = c53 "taustaa"} ;
+lin taustoittaa_VK = {s = c53A "taustoittaa"} ;
+lin taustoitus_NK = {s = d39 "taustoitus"} ;
+lin tauti_NK = {s = d05A "tauti"} ;
+lin tautinen_AK = {s = d38 "tautinen"} ;
+--+ lin tautisesti_AdvK = {s = c99 "tautisesti"} ;
+lin tautisuus_NK = {s = d40 "tautisuus"} ;
+lin tautofonia_NK = {s = d12 "tautofonia"} ;
+lin tautofoninen_NK = {s = d38 "tautofoninen"} ;
+lin tautologia_NK = {s = d12 "tautologia"} ;
+lin tautologinen_NK = {s = d38 "tautologinen"} ;
+lin tautta_AdvK = {s = c99 "tautta"} ;
+lin tavailla_VK = {s = c67 "tavailla"} ;
+lin tavailu_NK = {s = d02 "tavailu"} ;
+lin tavallaan_AdvK = {s = c99 "tavallaan"} ;
+lin tavallinen_AK = {s = d38 "tavallinen"} ;
+--+ lin tavallisesti_AdvK = {s = c99 "tavallisesti"} ;
+lin tavallisuus_NK = {s = d40 "tavallisuus"} ;
+--+ lin tavanomaisesti_AdvK = {s = c99 "tavanomaisesti"} ;
+lin tavan_takaa_AdvK = {s = c99 "tavan takaa"} ;
+lin tavara_NK = {s = d12 "tavara"} ;
+lin tavata_1_VK = {s = c73A "tavata"} ;
+lin tavata_2_VK = {s = c73 "tavata"} ;
+lin tavata_3_VK = {s = c73A "tavata"} ;
+lin tavaton_NK = {s = d34A "tavaton"} ;
+lin tavattomasti_AdvK = {s = c99 "tavattomasti"} ;
+lin tavattomuus_NK = {s = d40 "tavattomuus"} ;
+lin taverna_NK = {s = d13 "taverna"} ;
+lin tavi_NK = {s = d05 "tavi"} ;
+lin taviokuurna_NK = {s = d10 "taviokuurna"} ;
+lin tavis_NK = {s = d39 "tavis"} ;
+lin tavoin_AdvK = {s = c99 "tavoin"} ;
+lin tavoite_NK = {s = d48A "tavoite"} ;
+lin tavoitejohtaminen_NK = {s = d38 "tavoitejohtaminen"} ;
+lin tavoitella_VK = {s = c67A "tavoitella"} ;
+lin tavoitesa'a'sta'minen_NK = {s = d38 "tavoitesäästäminen"} ;
+lin tavoittaa_VK = {s = c53A "tavoittaa"} ;
+lin tavoittamaton_NK = {s = d34A "tavoittamaton"} ;
+lin tavoittamattomiin_AdvK = {s = c99 "tavoittamattomiin"} ;
+lin tavoittamattomissa_AdvK = {s = c99 "tavoittamattomissa"} ;
+lin tavoittamattomuus_NK = {s = d40 "tavoittamattomuus"} ;
+lin tavoittavuus_NK = {s = d40 "tavoittavuus"} ;
+lin tavoitteellinen_AK = {s = d38 "tavoitteellinen"} ;
+--+ lin tavoitteellisesti_AdvK = {s = c99 "tavoitteellisesti"} ;
+lin tavoitteellisuus_NK = {s = d40 "tavoitteellisuus"} ;
+lin tavoitteinen_NK = {s = d38 "tavoitteinen"} ;
+lin tavoittelija_NK = {s = d12 "tavoittelija"} ;
+lin tavoittelu_NK = {s = d02 "tavoittelu"} ;
+lin tavoitus_NK = {s = d39 "tavoitus"} ;
+lin tavu_NK = {s = d01 "tavu"} ;
+lin tavuinen_NK = {s = d38 "tavuinen"} ;
+lin tavunraja_NK = {s = d09 "tavunraja"} ;
+lin tavuttaa_VK = {s = c53A "tavuttaa"} ;
+lin tavutus_NK = {s = d39 "tavutus"} ;
+lin tax_free_NK = {s = d21 "tax-free"} ;
+lin teak_NK = {s = d05 "teak"} ;
+lin teatraalinen_AK = {s = d38 "teatraalinen"} ;
+--+ lin teatraalisesti_AdvK = {s = c99 "teatraalisesti"} ;
+lin teatraalisuus_NK = {s = d40 "teatraalisuus"} ;
+lin teatteri_NK = {s = d06 "teatteri"} ;
+lin teddy_1_NK = {s = d01 "teddy"} ;
+lin teddy_2_NK = {s = d01 "teddy"} ;
+lin tee_NK = {s = d18 "tee"} ;
+lin teekkari_NK = {s = d06 "teekkari"} ;
+lin teelmys_NK = {s = d39 "teelmys"} ;
+lin teelma'_NK = {s = d10 "teelmä"} ;
+lin teema_NK = {s = d09 "teema"} ;
+lin teemoittaa_VK = {s = c53A "teemoittaa"} ;
+lin teemoitus_NK = {s = d39 "teemoitus"} ;
+lin teenjuoja_NK = {s = d10 "teenjuoja"} ;
+lin teenna'inen_AK = {s = d38 "teennäinen"} ;
+--+ lin teenna'isesti_AdvK = {s = c99 "teennäisesti"} ;
+lin teenna'isyys_NK = {s = d40 "teennäisyys"} ;
+lin teeri_NK = {s = d26 "teeri"} ;
+lin teesi_NK = {s = d05 "teesi"} ;
+lin teeskella'_VK = {s = c67 "teeskellä"} ;
+lin teeskennella'_VK = {s = c67A "teeskennellä"} ;
+lin teeskentelema'tto'myys_NK = {s = d40 "teeskentelemättömyys"} ;
+lin teeskentelema'tto'ma'sti_AdvK = {s = c99 "teeskentelemättömästi"} ;
+lin teeskentelema'to'n_NK = {s = d34A "teeskentelemätön"} ;
+lin teeskentelija'_NK = {s = d12 "teeskentelijä"} ;
+lin teeskentely_NK = {s = d02 "teeskentely"} ;
+lin teetto_NK = {s = d01A "teetto"} ;
+lin teetta'ja'_NK = {s = d10 "teettäjä"} ;
+lin teetta'a'_VK = {s = c53A "teettää"} ;
+lin teeta'tta'a'_VK = {s = c53A "teetättää"} ;
+lin teevee_NK = {s = d20 "teevee"} ;
+lin tehdas_NK = {s = d41A "tehdas"} ;
+--+ lin tehdasmaisesti_AdvK = {s = c99 "tehdasmaisesti"} ;
+lin tehdasmaistua_VK = {s = c52 "tehdasmaistua"} ;
+lin tehdasmaisuus_NK = {s = d40 "tehdasmaisuus"} ;
+lin tehda'_VK = {s = c71 "tehdä"} ;
+lin teho_NK = {s = d01 "teho"} ;
+lin tehoaika_NK = {s = d09A "tehoaika"} ;
+lin tehoinen_AK = {s = d38 "tehoinen"} ;
+lin tehoisa_NK = {s = d10 "tehoisa"} ;
+--+ lin tehoisesti_AdvK = {s = c99 "tehoisesti"} ;
+lin tehoisuus_NK = {s = d40 "tehoisuus"} ;
+lin tehokas_AK = {s = d41A "tehokas"} ;
+--+ lin tehokkaasti_AdvK = {s = c99 "tehokkaasti"} ;
+lin tehokkuus_NK = {s = d40 "tehokkuus"} ;
+lin tehollinen_NK = {s = d38 "tehollinen"} ;
+lin tehostaa_VK = {s = c53 "tehostaa"} ;
+lin tehostaja_NK = {s = d10 "tehostaja"} ;
+lin tehoste_NK = {s = d48 "tehoste"} ;
+lin tehosteinen_NK = {s = d38 "tehosteinen"} ;
+lin tehostin_NK = {s = d33 "tehostin"} ;
+lin tehostua_VK = {s = c52 "tehostua"} ;
+lin tehostus_NK = {s = d39 "tehostus"} ;
+lin tehota_VK = {s = c74 "tehota"} ;
+lin tehote_NK = {s = d48A "tehote"} ;
+lin tehoton_NK = {s = d34A "tehoton"} ;
+lin tehottaa_VK = {s = c53A "tehottaa"} ;
+lin tehottomasti_AdvK = {s = c99 "tehottomasti"} ;
+lin tehottomuus_NK = {s = d40 "tehottomuus"} ;
+lin tehotus_NK = {s = d39 "tehotus"} ;
+lin tehtailija_NK = {s = d12 "tehtailija"} ;
+lin tehtailla_VK = {s = c67 "tehtailla"} ;
+lin tehtailu_NK = {s = d02 "tehtailu"} ;
+lin tehta'va'_NK = {s = d10 "tehtävä"} ;
+lin teiini_NK = {s = d05 "teiini"} ;
+lin teikaroida_VK = {s = c68 "teikaroida"} ;
+lin teikarointi_NK = {s = d05A "teikarointi"} ;
+lin teikata_VK = {s = c73A "teikata"} ;
+lin teikkaus_NK = {s = d39 "teikkaus"} ;
+lin teikki_NK = {s = d05A "teikki"} ;
+lin teika'la'inen_NK = {s = d38 "teikäläinen"} ;
+lin teika'la'isitta'in_AdvK = {s = c99 "teikäläisittäin"} ;
+lin teilata_VK = {s = c73 "teilata"} ;
+lin teilaus_NK = {s = d39 "teilaus"} ;
+lin teili_NK = {s = d05 "teili"} ;
+lin teinen_NK = {s = d38 "teinen"} ;
+lin teini_NK = {s = d05 "teini"} ;
+lin teipata_VK = {s = c73A "teipata"} ;
+lin teippaus_NK = {s = d39 "teippaus"} ;
+lin teippi_NK = {s = d05A "teippi"} ;
+lin teismi_NK = {s = d05 "teismi"} ;
+lin teisti_1_NK = {s = d05 "teisti"} ;
+lin teisti_2_NK = {s = d05 "teisti"} ;
+lin teistinen_NK = {s = d38 "teistinen"} ;
+lin teititella'_VK = {s = c67A "teititellä"} ;
+lin teitittely_NK = {s = d02 "teitittely"} ;
+lin teitse_AdvK = {s = c99 "teitse"} ;
+lin tekaista_VK = {s = c66 "tekaista"} ;
+--? lin tekarit_NK = {s = d06 "tekarit"} ;
+lin tekeille_AdvK = {s = c99 "tekeille"} ;
+lin tekeilla'_AdvK = {s = c99 "tekeillä"} ;
+lin tekele_NK = {s = d48 "tekele"} ;
+lin tekeminen_NK = {s = d38 "tekeminen"} ;
+lin tekema'to'n_NK = {s = d34A "tekemätön"} ;
+lin tekeva'_NK = {s = d10 "tekevä"} ;
+lin tekeytya'_VK = {s = c52A "tekeytyä"} ;
+lin tekija'_NK = {s = d12 "tekijä"} ;
+lin tekija'inen_NK = {s = d38 "tekijäinen"} ;
+--? lin tekia'iset_NK = {s = d38 "tekiäiset"} ;
+lin teknetium_NK = {s = d05 "teknetium"} ;
+lin tekniikka_NK = {s = d14A "tekniikka"} ;
+lin teknikko_NK = {s = d04A "teknikko"} ;
+lin teknillinen_NK = {s = d38 "teknillinen"} ;
+lin tekninen_AK = {s = d38 "tekninen"} ;
+--+ lin teknisesti_AdvK = {s = c99 "teknisesti"} ;
+lin teknistya'_VK = {s = c52 "teknistyä"} ;
+lin teknista'a'_VK = {s = c53 "teknistää"} ;
+lin teknisyys_NK = {s = d40 "teknisyys"} ;
+lin tekno_NK = {s = d01 "tekno"} ;
+lin teknokraatti_NK = {s = d05A "teknokraatti"} ;
+lin teknokraattinen_NK = {s = d38 "teknokraattinen"} ;
+lin teknokratia_NK = {s = d12 "teknokratia"} ;
+lin teknologi_NK = {s = d05 "teknologi"} ;
+lin teknologia_NK = {s = d12 "teknologia"} ;
+lin teknologinen_NK = {s = d38 "teknologinen"} ;
+lin teko_NK = {s = d01A "teko"} ;
+lin tekoinen_AK = {s = d38 "tekoinen"} ;
+--+ lin tekoisesti_AdvK = {s = c99 "tekoisesti"} ;
+lin tekoisuus_NK = {s = d40 "tekoisuus"} ;
+lin tekonen_NK = {s = d38 "tekonen"} ;
+lin teksasilainen_NK = {s = d38 "teksasilainen"} ;
+lin tekstaaja_NK = {s = d10 "tekstaaja"} ;
+lin tekstata_VK = {s = c73 "tekstata"} ;
+lin tekstaus_NK = {s = d39 "tekstaus"} ;
+lin teksti_NK = {s = d05 "teksti"} ;
+lin tekstiili_NK = {s = d06 "tekstiili"} ;
+lin tekstinen_NK = {s = d38 "tekstinen"} ;
+lin tekstinno's_NK = {s = d39 "tekstinnös"} ;
+lin tekstinta'a'_VK = {s = c54A "tekstintää"} ;
+lin tekstitta'ja'_NK = {s = d10 "tekstittäjä"} ;
+lin tekstitta'a'_VK = {s = c53A "tekstittää"} ;
+lin tekstitys_NK = {s = d39 "tekstitys"} ;
+lin teksturi_NK = {s = d06 "teksturi"} ;
+lin teksturoida_VK = {s = c62 "teksturoida"} ;
+lin teksturointi_NK = {s = d05A "teksturointi"} ;
+lin tekstuuri_NK = {s = d06 "tekstuuri"} ;
+lin tektoniikka_NK = {s = d09A "tektoniikka"} ;
+lin tektoninen_NK = {s = d38 "tektoninen"} ;
+lin teku_NK = {s = d01 "teku"} ;
+lin tela_NK = {s = d09 "tela"} ;
+lin telakka_NK = {s = d14A "telakka"} ;
+lin telakoida_VK = {s = c62 "telakoida"} ;
+lin telakointi_NK = {s = d05A "telakointi"} ;
+lin telakoitua_VK = {s = c52A "telakoitua"} ;
+lin telata_VK = {s = c73 "telata"} ;
+lin tele_NK = {s = d08 "tele"} ;
+lin telefoni_NK = {s = d05 "telefoni"} ;
+lin telekineesi_NK = {s = d05 "telekineesi"} ;
+lin telekinesia_NK = {s = d12 "telekinesia"} ;
+lin teleksi_NK = {s = d05 "teleksi"} ;
+lin telemaattinen_NK = {s = d38 "telemaattinen"} ;
+lin telemark_NK = {s = d05 "telemark"} ;
+lin telematiikka_NK = {s = d09A "telematiikka"} ;
+lin telemetria_NK = {s = d12 "telemetria"} ;
+lin teleologia_NK = {s = d12 "teleologia"} ;
+lin teleologinen_NK = {s = d38 "teleologinen"} ;
+lin telepaattinen_NK = {s = d38 "telepaattinen"} ;
+lin telepatia_NK = {s = d12 "telepatia"} ;
+lin teleskooppi_NK = {s = d05A "teleskooppi"} ;
+lin teleskooppinen_AK = {s = d38 "teleskooppinen"} ;
+--+ lin teleskooppisesti_AdvK = {s = c99 "teleskooppisesti"} ;
+lin televisioesiintyminen_NK = {s = d38 "televisioesiintyminen"} ;
+lin televisioida_VK = {s = c62 "televisioida"} ;
+lin televisioitse_AdvK = {s = c99 "televisioitse"} ;
+lin teli_NK = {s = d05 "teli"} ;
+lin teline_NK = {s = d48 "teline"} ;
+lin telje_NK = {s = d48A "telje"} ;
+lin teljeta'_VK = {s = c74A "teljetä"} ;
+lin teljo_NK = {s = d01 "teljo"} ;
+lin telki_NK = {s = d07A "telki"} ;
+lin telkka_NK = {s = d09A "telkka"} ;
+lin telkkari_NK = {s = d06 "telkkari"} ;
+lin telkku_NK = {s = d01A "telkku"} ;
+lin telkka'_NK = {s = d10A "telkkä"} ;
+lin tellinki_NK = {s = d05A "tellinki"} ;
+lin telluuri_NK = {s = d06 "telluuri"} ;
+lin telluurinen_NK = {s = d38 "telluurinen"} ;
+lin telluurio_NK = {s = d03 "telluurio"} ;
+lin telmia'_VK = {s = c61 "telmiä"} ;
+lin telma'ta'_VK = {s = c73 "telmätä"} ;
+lin telma'a'_VK = {s = c78 "telmää"} ;
+lin teloa_VK = {s = c52 "teloa"} ;
+lin teloilla_AdvK = {s = c99 "teloilla"} ;
+lin teloillaan_AdvK = {s = c99 "teloillaan"} ;
+lin teloille_AdvK = {s = c99 "teloille"} ;
+lin teloilleen_AdvK = {s = c99 "teloilleen"} ;
+lin teloilta_AdvK = {s = c99 "teloilta"} ;
+lin teloiltaan_AdvK = {s = c99 "teloiltaan"} ;
+lin teloittaa_VK = {s = c53A "teloittaa"} ;
+lin teloittaja_NK = {s = d10 "teloittaja"} ;
+lin teloitus_NK = {s = d39 "teloitus"} ;
+lin teloituttaa_VK = {s = c53A "teloituttaa"} ;
+lin teltta_NK = {s = d09A "teltta"} ;
+lin telttailija_NK = {s = d12 "telttailija"} ;
+lin telttailla_VK = {s = c67 "telttailla"} ;
+lin telttailu_NK = {s = d02 "telttailu"} ;
+lin temaattinen_NK = {s = d38 "temaattinen"} ;
+lin tematiikka_NK = {s = d09A "tematiikka"} ;
+lin temmata_VK = {s = c73A "temmata"} ;
+lin temmellys_NK = {s = d39 "temmellys"} ;
+lin temmelta'a'_VK = {s = c54A "temmeltää"} ;
+lin tempaantua_VK = {s = c52A "tempaantua"} ;
+lin tempaista_VK = {s = c66 "tempaista"} ;
+lin tempaisu_NK = {s = d02 "tempaisu"} ;
+lin tempaus_NK = {s = d39 "tempaus"} ;
+lin tempautua_VK = {s = c52A "tempautua"} ;
+lin tempera_NK = {s = d13 "tempera"} ;
+lin temperamentikas_NK = {s = d41A "temperamentikas"} ;
+lin temperamentti_NK = {s = d05A "temperamentti"} ;
+lin temperamenttinen_NK = {s = d38 "temperamenttinen"} ;
+lin temperamenttisuus_NK = {s = d40 "temperamenttisuus"} ;
+lin temperoida_VK = {s = c62 "temperoida"} ;
+lin tempo_NK = {s = d01 "tempo"} ;
+lin tempoa_VK = {s = c52A "tempoa"} ;
+lin tempoilla_VK = {s = c67 "tempoilla"} ;
+lin tempoilu_NK = {s = d02 "tempoilu"} ;
+lin tempoinen_NK = {s = d38 "tempoinen"} ;
+lin temporaalinen_NK = {s = d38 "temporaalinen"} ;
+lin temporaarinen_NK = {s = d38 "temporaarinen"} ;
+lin temppeli_NK = {s = d06 "temppeli"} ;
+lin temppu_NK = {s = d01A "temppu"} ;
+lin temppuilija_NK = {s = d12 "temppuilija"} ;
+lin temppuilla_VK = {s = c67 "temppuilla"} ;
+lin temppuilu_NK = {s = d02 "temppuilu"} ;
+lin tempus_NK = {s = d39 "tempus"} ;
+lin tenava_NK = {s = d10 "tenava"} ;
+lin tendenssi_NK = {s = d05 "tendenssi"} ;
+lin tenho_NK = {s = d01 "tenho"} ;
+lin tenhota_VK = {s = c74 "tenhota"} ;
+lin tenkkapoo_NK = {s = d18 "tenkkapoo"} ;
+lin tennari_NK = {s = d06 "tennari"} ;
+lin tennis_NK = {s = d39 "tennis"} ;
+lin tenori_NK = {s = d06 "tenori"} ;
+lin tensidi_NK = {s = d05 "tensidi"} ;
+lin tensio_NK = {s = d03 "tensio"} ;
+lin tentaattori_NK = {s = d06 "tentaattori"} ;
+lin tentata_VK = {s = c73A "tentata"} ;
+lin tenttaaja_NK = {s = d10 "tenttaaja"} ;
+lin tenttaus_NK = {s = d39 "tenttaus"} ;
+lin tentti_NK = {s = d05A "tentti"} ;
+lin tenttija'_NK = {s = d12 "tenttijä"} ;
+lin tenttia'_VK = {s = c61A "tenttiä"} ;
+lin tenttu_NK = {s = d01A "tenttu"} ;
+lin tenu_NK = {s = d01 "tenu"} ;
+lin tena'_AdvK = {s = c99 "tenä"} ;
+lin tena'ta'_VK = {s = c73 "tenätä"} ;
+lin teodoliitti_NK = {s = d05A "teodoliitti"} ;
+lin teokraattinen_NK = {s = d38 "teokraattinen"} ;
+lin teokratia_NK = {s = d12 "teokratia"} ;
+lin teollinen_AK = {s = d38 "teollinen"} ;
+--+ lin teollisesti_AdvK = {s = c99 "teollisesti"} ;
+lin teollistaa_VK = {s = c53 "teollistaa"} ;
+lin teollistua_VK = {s = c52 "teollistua"} ;
+lin teollisuus_NK = {s = d40 "teollisuus"} ;
+lin teologi_NK = {s = d05 "teologi"} ;
+lin teologia_NK = {s = d12 "teologia"} ;
+lin teologinen_NK = {s = d38 "teologinen"} ;
+lin teoreema_NK = {s = d09 "teoreema"} ;
+lin teoreetikko_NK = {s = d04A "teoreetikko"} ;
+lin teoreettinen_AK = {s = d38 "teoreettinen"} ;
+--+ lin teoreettisesti_AdvK = {s = c99 "teoreettisesti"} ;
+lin teoreettisuus_NK = {s = d40 "teoreettisuus"} ;
+lin teoretisoida_VK = {s = c62 "teoretisoida"} ;
+lin teoria_NK = {s = d12 "teoria"} ;
+lin teorioida_VK = {s = c62 "teorioida"} ;
+lin teoriointi_NK = {s = d05A "teoriointi"} ;
+lin teos_NK = {s = d39 "teos"} ;
+lin teosofi_NK = {s = d05 "teosofi"} ;
+lin teosofia_NK = {s = d12 "teosofia"} ;
+lin teosofinen_NK = {s = d38 "teosofinen"} ;
+lin tepastella_VK = {s = c67 "tepastella"} ;
+lin tepastelu_NK = {s = d02 "tepastelu"} ;
+lin tepponen_NK = {s = d38 "tepponen"} ;
+lin tepsia'_VK = {s = c61 "tepsiä"} ;
+lin tepsutella_VK = {s = c67A "tepsutella"} ;
+lin tepsuttaa_VK = {s = c53A "tepsuttaa"} ;
+lin tepsutus_NK = {s = d39 "tepsutus"} ;
+lin tequila_NK = {s = d09 "tequila"} ;
+lin terapeutti_NK = {s = d05A "terapeutti"} ;
+lin terapeuttinen_NK = {s = d38 "terapeuttinen"} ;
+lin terapia_NK = {s = d12 "terapia"} ;
+lin terapoida_VK = {s = c62 "terapoida"} ;
+lin terapointi_NK = {s = d05A "terapointi"} ;
+lin terassi_NK = {s = d05 "terassi"} ;
+lin teratogeeni_NK = {s = d05 "teratogeeni"} ;
+lin teratogeeninen_NK = {s = d38 "teratogeeninen"} ;
+lin tere_NK = {s = d48 "tere"} ;
+lin terhakas_AK = {s = d41A "terhakas"} ;
+lin terhakasti_AdvK = {s = c99 "terhakasti"} ;
+lin terhakka_NK = {s = d14A "terhakka"} ;
+--+ lin terhakkaasti_AdvK = {s = c99 "terhakkaasti"} ;
+lin terhakkuus_NK = {s = d40 "terhakkuus"} ;
+lin terhennella'_VK = {s = c67A "terhennellä"} ;
+lin terhentely_NK = {s = d02 "terhentely"} ;
+lin terho_NK = {s = d01 "terho"} ;
+lin teritta'a'_VK = {s = c53A "terittää"} ;
+lin teritys_NK = {s = d39 "teritys"} ;
+lin terio'_NK = {s = d03 "teriö"} ;
+lin terio'inen_NK = {s = d38 "teriöinen"} ;
+--? lin terkut_NK = {s = d01A "terkut"} ;
+lin termari_NK = {s = d06 "termari"} ;
+lin termi_NK = {s = d05 "termi"} ;
+lin termiikki_NK = {s = d05A "termiikki"} ;
+lin termiini_NK = {s = d06 "termiini"} ;
+lin termiitti_1_NK = {s = d05A "termiitti"} ;
+lin termiitti_2_NK = {s = d05A "termiitti"} ;
+lin terminen_NK = {s = d38 "terminen"} ;
+lin terminoida_VK = {s = c62 "terminoida"} ;
+lin terminointi_NK = {s = d05A "terminointi"} ;
+lin terminologia_NK = {s = d12 "terminologia"} ;
+lin terminologinen_NK = {s = d38 "terminologinen"} ;
+lin termistori_NK = {s = d06 "termistori"} ;
+lin termisto'_NK = {s = d02 "termistö"} ;
+lin termonukleaarinen_NK = {s = d38 "termonukleaarinen"} ;
+lin termopari_NK = {s = d05 "termopari"} ;
+lin termos_NK = {s = d39 "termos"} ;
+lin termostaatti_NK = {s = d05A "termostaatti"} ;
+lin teroitin_NK = {s = d33A "teroitin"} ;
+lin teroittaa_VK = {s = c53A "teroittaa"} ;
+lin teroittaja_NK = {s = d10 "teroittaja"} ;
+lin teroittua_VK = {s = c52A "teroittua"} ;
+lin teroitus_NK = {s = d39 "teroitus"} ;
+lin terpeeni_NK = {s = d06 "terpeeni"} ;
+lin terraario_NK = {s = d03 "terraario"} ;
+lin terrakotta_NK = {s = d10A "terrakotta"} ;
+lin terrasti_NK = {s = d05 "terrasti"} ;
+lin terrieri_NK = {s = d05 "terrieri"} ;
+lin terriini_NK = {s = d06 "terriini"} ;
+lin territoriaalinen_NK = {s = d38 "territoriaalinen"} ;
+lin territorio_NK = {s = d03 "territorio"} ;
+lin terrori_NK = {s = d06 "terrori"} ;
+lin terrorismi_NK = {s = d05 "terrorismi"} ;
+lin terrorisoida_VK = {s = c62 "terrorisoida"} ;
+lin terroristi_NK = {s = d05 "terroristi"} ;
+lin terroristinen_NK = {s = d38 "terroristinen"} ;
+lin terska_NK = {s = d09 "terska"} ;
+lin terssi_NK = {s = d05 "terssi"} ;
+lin tertia'a'ri_NK = {s = d05 "tertiääri"} ;
+lin tertia'a'rinen_NK = {s = d38 "tertiäärinen"} ;
+lin tertsetti_NK = {s = d05A "tertsetti"} ;
+lin terttu_NK = {s = d01A "terttu"} ;
+lin terva_NK = {s = d09 "terva"} ;
+lin tervaantua_VK = {s = c52A "tervaantua"} ;
+lin tervainen_NK = {s = d38 "tervainen"} ;
+lin tervakko_NK = {s = d04A "tervakko"} ;
+lin tervaksinen_NK = {s = d38 "tervaksinen"} ;
+lin tervas_NK = {s = d39 "tervas"} ;
+lin tervata_VK = {s = c73 "tervata"} ;
+lin tervaus_NK = {s = d39 "tervaus"} ;
+lin tervautua_VK = {s = c52A "tervautua"} ;
+lin terve_AK = {s = d48 "terve"} ;
+lin terveellinen_AK = {s = d38 "terveellinen"} ;
+--+ lin terveellisesti_AdvK = {s = c99 "terveellisesti"} ;
+lin terveellisyys_NK = {s = d40 "terveellisyys"} ;
+--+ lin terveesti_AdvK = {s = c99 "terveesti"} ;
+lin tervehdys_NK = {s = d39 "tervehdys"} ;
+lin tervehdytta'a'_VK = {s = c53A "tervehdyttää"} ;
+lin tervehtija'_NK = {s = d12 "tervehtijä"} ;
+lin tervehtia'_VK = {s = c61A "tervehtiä"} ;
+lin tervehtya'_VK = {s = c52A "tervehtyä"} ;
+lin tervehta'a'_VK = {s = c53A "tervehtää"} ;
+--? lin terveiset_NK = {s = d38 "terveiset"} ;
+lin tervemenoa_AdvK = {s = c99 "tervemenoa"} ;
+lin tervetullut_NK = {s = d47 "tervetullut"} ;
+lin tervetuloa_AdvK = {s = c99 "tervetuloa"} ;
+lin terveydellinen_NK = {s = d38 "terveydellinen"} ;
+lin terveys_NK = {s = d40 "terveys"} ;
+lin terveytta'a'_VK = {s = c53A "terveyttää"} ;
+lin terveytys_NK = {s = d39 "terveytys"} ;
+lin tera'_NK = {s = d10 "terä"} ;
+lin tera'inen_NK = {s = d38 "teräinen"} ;
+lin tera'ksinen_NK = {s = d38 "teräksinen"} ;
+lin tera'ka's_NK = {s = d41A "teräkäs"} ;
+lin tera's_NK = {s = d39 "teräs"} ;
+lin tera'ste_NK = {s = d48 "teräste"} ;
+lin tera'stys_NK = {s = d39 "terästys"} ;
+lin tera'stya'_VK = {s = c52 "terästyä"} ;
+lin tera'sta'ytya'_VK = {s = c52A "terästäytyä"} ;
+lin tera'sta'a'_VK = {s = c53 "terästää"} ;
+lin tera'sto'_NK = {s = d02 "terästö"} ;
+lin tera'svaari_NK = {s = d05 "teräsvaari"} ;
+lin tera'vyys_NK = {s = d40 "terävyys"} ;
+lin tera'va'_AK = {s = d10 "terävä"} ;
+lin tera'va'ja'rkisesti_AdvK = {s = c99 "teräväjärkisesti"} ;
+lin tera'va'ja'rkisyys_NK = {s = d40 "teräväjärkisyys"} ;
+lin tera'va'katseisesti_AdvK = {s = c99 "teräväkatseisesti"} ;
+lin tera'va'kielisesti_AdvK = {s = c99 "teräväkielisesti"} ;
+lin tera'va'na'ko'isesti_AdvK = {s = c99 "terävänäköisesti"} ;
+lin tera'va'sanaisesti_AdvK = {s = c99 "teräväsanaisesti"} ;
+--+ lin tera'va'sti_AdvK = {s = c99 "terävästi"} ;
+lin tera'vo'itta'a'_VK = {s = c53A "terävöittää"} ;
+lin tera'vo'itya'_VK = {s = c52A "terävöityä"} ;
+lin tesaurus_NK = {s = d39 "tesaurus"} ;
+lin tesla_NK = {s = d09 "tesla"} ;
+lin tesma_NK = {s = d09 "tesma"} ;
+lin testaaja_NK = {s = d10 "testaaja"} ;
+lin testamentata_VK = {s = c73A "testamentata"} ;
+lin testamenttaaja_NK = {s = d10 "testamenttaaja"} ;
+lin testamenttaus_NK = {s = d39 "testamenttaus"} ;
+lin testamentti_NK = {s = d05A "testamentti"} ;
+lin testata_VK = {s = c73 "testata"} ;
+lin testaus_NK = {s = d39 "testaus"} ;
+lin testeri_NK = {s = d06 "testeri"} ;
+lin testi_NK = {s = d05 "testi"} ;
+lin testikkeli_NK = {s = d06 "testikkeli"} ;
+lin testisto'_NK = {s = d01 "testistö"} ;
+lin testosteroni_NK = {s = d06 "testosteroni"} ;
+lin tetanus_NK = {s = d39 "tetanus"} ;
+lin tetra_NK = {s = d09 "tetra"} ;
+lin tetraedri_NK = {s = d05 "tetraedri"} ;
+lin tetrasykliini_NK = {s = d05 "tetrasykliini"} ;
+lin teuhata_VK = {s = c73 "teuhata"} ;
+lin teuras_NK = {s = d41 "teuras"} ;
+lin teurastaa_VK = {s = c53 "teurastaa"} ;
+lin teurastaja_NK = {s = d10 "teurastaja"} ;
+lin teurastamo_NK = {s = d02 "teurastamo"} ;
+lin teurastus_NK = {s = d39 "teurastus"} ;
+lin teutaroida_VK = {s = c62 "teutaroida"} ;
+lin teutoni_NK = {s = d06 "teutoni"} ;
+lin texasilainen_NK = {s = d38 "texasilainen"} ;
+lin thai_NK = {s = d18 "thai"} ;
+lin theeta_NK = {s = d09 "theeta"} ;
+lin thorax_NK = {s = d05 "thorax"} ;
+lin tiaara_NK = {s = d09 "tiaara"} ;
+lin tiainen_NK = {s = d38 "tiainen"} ;
+lin tic_NK = {s = d05 "tic"} ;
+lin tie_NK = {s = d19 "tie"} ;
+lin tie_break_NK = {s = d05 "tie-break"} ;
+lin tiede_NK = {s = d48A "tiede"} ;
+lin tiedollinen_NK = {s = d38 "tiedollinen"} ;
+lin tiedostaa_VK = {s = c53 "tiedostaa"} ;
+lin tiedostamaton_NK = {s = d34A "tiedostamaton"} ;
+lin tiedostamattomuus_NK = {s = d40 "tiedostamattomuus"} ;
+lin tiedosto_NK = {s = d02 "tiedosto"} ;
+lin tiedostua_VK = {s = c52 "tiedostua"} ;
+lin tiedote_NK = {s = d48A "tiedote"} ;
+lin tiedoton_NK = {s = d34A "tiedoton"} ;
+lin tiedottaa_VK = {s = c53A "tiedottaa"} ;
+lin tiedottaja_NK = {s = d10 "tiedottaja"} ;
+lin tiedottomasti_AdvK = {s = c99 "tiedottomasti"} ;
+lin tiedottomuus_NK = {s = d40 "tiedottomuus"} ;
+lin tiedotus_NK = {s = d39 "tiedotus"} ;
+lin tiedustaa_VK = {s = c53 "tiedustaa"} ;
+lin tiedustelija_NK = {s = d12 "tiedustelija"} ;
+lin tiedustella_VK = {s = c67 "tiedustella"} ;
+lin tiedustelu_NK = {s = d02 "tiedustelu"} ;
+lin tiehensa'_AdvK = {s = c99 "tiehensä"} ;
+lin tiehyellinen_NK = {s = d38 "tiehyellinen"} ;
+lin tiehyeto'n_NK = {s = d34A "tiehyetön"} ;
+lin tiehyt_NK = {s = d43 "tiehyt"} ;
+lin tienaaja_NK = {s = d10 "tienaaja"} ;
+lin tienailla_VK = {s = c67 "tienailla"} ;
+lin tienata_VK = {s = c73 "tienata"} ;
+lin tienesti_NK = {s = d06 "tienesti"} ;
+lin tienna'ytta'ja'_NK = {s = d10 "tiennäyttäjä"} ;
+lin tienoo_NK = {s = d17 "tienoo"} ;
+lin tienviitta_NK = {s = d09A "tienviitta"} ;
+lin tiepuolessa_AdvK = {s = c99 "tiepuolessa"} ;
+lin tiera_NK = {s = d09 "tiera"} ;
+lin ties_AdvK = {s = c99 "ties"} ;
+lin tiessa'a'n_AdvK = {s = c99 "tiessään"} ;
+lin tiesto'_NK = {s = d01 "tiestö"} ;
+lin tieteellinen_AK = {s = d38 "tieteellinen"} ;
+--+ lin tieteellisesti_AdvK = {s = c99 "tieteellisesti"} ;
+lin tieteellistya'_VK = {s = c52 "tieteellistyä"} ;
+lin tieteellista'a'_VK = {s = c53 "tieteellistää"} ;
+lin tieteellisyys_NK = {s = d40 "tieteellisyys"} ;
+lin tieteilija'_NK = {s = d12 "tieteilijä"} ;
+lin tieteilla'_VK = {s = c67 "tieteillä"} ;
+lin tieteily_NK = {s = d02 "tieteily"} ;
+lin tieten_AdvK = {s = c99 "tieten"} ;
+lin tietenkin_AdvK = {s = c99 "tietenkin"} ;
+lin tietenka'a'n_AdvK = {s = c99 "tietenkään"} ;
+lin tieto_NK = {s = d01A "tieto"} ;
+--+ lin tietoisesti_AdvK = {s = c99 "tietoisesti"} ;
+lin tietoisuus_NK = {s = d40 "tietoisuus"} ;
+--+ lin tietokoneavusteisesti_AdvK = {s = c99 "tietokoneavusteisesti"} ;
+--+ lin tietopuolisesti_AdvK = {s = c99 "tietopuolisesti"} ;
+lin tietous_NK = {s = d40 "tietous"} ;
+lin tietty_NK = {s = d01A "tietty"} ;
+lin tietta'va'ksi_AdvK = {s = c99 "tiettäväksi"} ;
+lin tietta'va'sti_AdvK = {s = c99 "tiettävästi"} ;
+lin tietue_NK = {s = d48 "tietue"} ;
+lin tieturi_NK = {s = d06 "tieturi"} ;
+lin tietyma'to'n_NK = {s = d34A "tietymätön"} ;
+lin tietynlainen_NK = {s = d38 "tietynlainen"} ;
+lin tietysti_AdvK = {s = c99 "tietysti"} ;
+lin tieta'_AdvK = {s = c99 "tietä"} ;
+lin tieta'ja'_NK = {s = d10 "tietäjä"} ;
+lin tieta'mys_NK = {s = d39 "tietämys"} ;
+lin tieta'ma'_AdvK = {s = c99 "tietämä"} ;
+lin tieta'ma'tto'myys_NK = {s = d40 "tietämättömyys"} ;
+lin tieta'ma'to'n_NK = {s = d34A "tietämätön"} ;
+lin tieta'vyys_NK = {s = d40 "tietävyys"} ;
+lin tieta'va'_AK = {s = d10 "tietävä"} ;
+--+ lin tieta'va'sti_AdvK = {s = c99 "tietävästi"} ;
+lin tieta'a'_VK = {s = c76A "tietää"} ;
+lin tieta'a'kseen_AdvK = {s = c99 "tietääkseen"} ;
+lin tieto'n_NK = {s = d34A "tietön"} ;
+lin tiheikko'_NK = {s = d04A "tiheikkö"} ;
+lin tihennys_NK = {s = d39 "tihennys"} ;
+lin tihentyma'_NK = {s = d10 "tihentymä"} ;
+lin tihentya'_VK = {s = c52A "tihentyä"} ;
+lin tihenta'a'_VK = {s = c54A "tihentää"} ;
+lin tiherta'a'_VK = {s = c54A "tihertää"} ;
+lin tiheta'_VK = {s = c72 "tihetä"} ;
+lin tiheys_NK = {s = d40 "tiheys"} ;
+lin tihea'_AK = {s = d15 "tiheä"} ;
+lin tihea'ssa'_AdvK = {s = c99 "tiheässä"} ;
+--+ lin tihea'sti_AdvK = {s = c99 "tiheästi"} ;
+lin tihea'a'n_AdvK = {s = c99 "tiheään"} ;
+lin tihku_NK = {s = d01 "tihku"} ;
+lin tihkua_VK = {s = c52 "tihkua"} ;
+lin tihkuinen_NK = {s = d38 "tihkuinen"} ;
+lin tihkuta_VK = {s = c74 "tihkuta"} ;
+lin tihkuttaa_VK = {s = c53A "tihkuttaa"} ;
+lin tihruinen_NK = {s = d38 "tihruinen"} ;
+lin tihrullaan_AdvK = {s = c99 "tihrullaan"} ;
+lin tihrussa_AdvK = {s = c99 "tihrussa"} ;
+lin tihu_NK = {s = d01 "tihu"} ;
+lin tihutella_VK = {s = c67A "tihutella"} ;
+lin tihuttaa_VK = {s = c53A "tihuttaa"} ;
+lin tihutus_NK = {s = d39 "tihutus"} ;
+lin tihuuttaa_VK = {s = c53A "tihuuttaa"} ;
+lin tii_NK = {s = d18 "tii"} ;
+lin tiibet_NK = {s = d05 "tiibet"} ;
+lin tiibetila'inen_NK = {s = d38 "tiibetiläinen"} ;
+lin tiikeri_NK = {s = d06 "tiikeri"} ;
+lin tiikki_NK = {s = d05A "tiikki"} ;
+lin tiikkinen_NK = {s = d38 "tiikkinen"} ;
+lin tiili_NK = {s = d23 "tiili"} ;
+lin tiilinen_NK = {s = d38 "tiilinen"} ;
+lin tiima_NK = {s = d09 "tiima"} ;
+lin tiimellys_NK = {s = d39 "tiimellys"} ;
+lin tiimi_NK = {s = d05 "tiimi"} ;
+lin tiimoilta_AdvK = {s = c99 "tiimoilta"} ;
+lin tiine_NK = {s = d48 "tiine"} ;
+lin tiinehtia'_VK = {s = c61A "tiinehtiä"} ;
+lin tiinehtya'_VK = {s = c52A "tiinehtyä"} ;
+lin tiinehta'a'_VK = {s = c53A "tiinehtää"} ;
+lin tiineys_NK = {s = d40 "tiineys"} ;
+lin tiineysaika_NK = {s = d09A "tiineysaika"} ;
+lin tiineytta'a'_VK = {s = c53A "tiineyttää"} ;
+lin tiinu_NK = {s = d01 "tiinu"} ;
+lin tiira_NK = {s = d09 "tiira"} ;
+lin tiirailla_VK = {s = c67 "tiirailla"} ;
+lin tiirailu_NK = {s = d02 "tiirailu"} ;
+lin tiirata_VK = {s = c73 "tiirata"} ;
+lin tiirikoida_VK = {s = c62 "tiirikoida"} ;
+lin tiirikointi_NK = {s = d05A "tiirikointi"} ;
+lin tiistai_NK = {s = d18 "tiistai"} ;
+lin tiistainen_NK = {s = d38 "tiistainen"} ;
+lin tiistaisin_AdvK = {s = c99 "tiistaisin"} ;
+lin tiitia'inen_NK = {s = d38 "tiitiäinen"} ;
+lin tiiveys_NK = {s = d40 "tiiveys"} ;
+--+ lin tiiviisti_AdvK = {s = c99 "tiiviisti"} ;
+lin tiivis_AK = {s = d41 "tiivis"} ;
+lin tiiviste_NK = {s = d48 "tiiviste"} ;
+lin tiivistelma'_NK = {s = d10 "tiivistelmä"} ;
+lin tiivistyma'_NK = {s = d10 "tiivistymä"} ;
+lin tiivistys_NK = {s = d39 "tiivistys"} ;
+lin tiivistya'_VK = {s = c52 "tiivistyä"} ;
+lin tiivista'a'_VK = {s = c53 "tiivistää"} ;
+lin tiiviys_NK = {s = d40 "tiiviys"} ;
+lin tiivio'_NK = {s = d03 "tiiviö"} ;
+lin tikahtua_VK = {s = c52A "tikahtua"} ;
+lin tikankontti_NK = {s = d05A "tikankontti"} ;
+lin tikari_NK = {s = d06 "tikari"} ;
+lin tikata_VK = {s = c73A "tikata"} ;
+lin tiketti_NK = {s = d05A "tiketti"} ;
+lin tikitta'a'_VK = {s = c53A "tikittää"} ;
+lin tikka_NK = {s = d09A "tikka"} ;
+--? lin tikkaat_NK = {s = d41A "tikkaat"} ;
+lin tikkari_NK = {s = d06 "tikkari"} ;
+lin tikkaus_NK = {s = d39 "tikkaus"} ;
+lin tikki_NK = {s = d05A "tikki"} ;
+lin tikku_NK = {s = d01A "tikku"} ;
+lin tikkuinen_NK = {s = d38 "tikkuinen"} ;
+lin tikkuri_1_NK = {s = d06 "tikkuri"} ;
+lin tikkuri_2_NK = {s = d06 "tikkuri"} ;
+lin tikli_NK = {s = d05 "tikli"} ;
+lin tila_NK = {s = d09 "tila"} ;
+lin tilaaja_NK = {s = d10 "tilaaja"} ;
+lin tilaisuus_NK = {s = d40 "tilaisuus"} ;
+lin tilakoko_NK = {s = d01A "tilakoko"} ;
+lin tilallinen_NK = {s = d38 "tilallinen"} ;
+lin tilanahtaus_NK = {s = d40 "tilanahtaus"} ;
+lin tilanne_NK = {s = d48A "tilanne"} ;
+--+ lin tilapa'isesti_AdvK = {s = c99 "tilapäisesti"} ;
+lin tilapa'issuoja_NK = {s = d10 "tilapäissuoja"} ;
+lin tilapa'isyys_NK = {s = d40 "tilapäisyys"} ;
+lin tilasto_NK = {s = d02 "tilasto"} ;
+lin tilastoaika_NK = {s = d09A "tilastoaika"} ;
+lin tilastoida_VK = {s = c62 "tilastoida"} ;
+lin tilastoija_NK = {s = d10 "tilastoija"} ;
+lin tilastointi_NK = {s = d05A "tilastointi"} ;
+lin tilastollinen_AK = {s = d38 "tilastollinen"} ;
+--+ lin tilastollisesti_AdvK = {s = c99 "tilastollisesti"} ;
+lin tilata_VK = {s = c73 "tilata"} ;
+lin tilaton_NK = {s = d34A "tilaton"} ;
+lin tilaus_NK = {s = d39 "tilaus"} ;
+lin tilausaika_NK = {s = d09A "tilausaika"} ;
+lin tilava_AK = {s = d10 "tilava"} ;
+--+ lin tilavasti_AdvK = {s = c99 "tilavasti"} ;
+lin tilavuinen_NK = {s = d38 "tilavuinen"} ;
+lin tilavuus_NK = {s = d40 "tilavuus"} ;
+lin tilde_NK = {s = d08 "tilde"} ;
+lin tilhi_NK = {s = d07 "tilhi"} ;
+lin tili_NK = {s = d05 "tili"} ;
+lin tilinpidollinen_NK = {s = d38 "tilinpidollinen"} ;
+lin tilitta'ja'_NK = {s = d10 "tilittäjä"} ;
+lin tilitta'a'_VK = {s = c53A "tilittää"} ;
+lin tilitys_NK = {s = d39 "tilitys"} ;
+lin tilio'ida'_VK = {s = c62 "tiliöidä"} ;
+lin tilio'inti_NK = {s = d05A "tiliöinti"} ;
+lin tilke_NK = {s = d48A "tilke"} ;
+lin tilkinta'_NK = {s = d09A "tilkintä"} ;
+lin tilkitys_NK = {s = d39 "tilkitys"} ;
+lin tilkita'_VK = {s = c69 "tilkitä"} ;
+lin tilkka_NK = {s = d09A "tilkka"} ;
+lin tilkkanen_NK = {s = d38 "tilkkanen"} ;
+lin tilkku_NK = {s = d01A "tilkku"} ;
+lin tilli_NK = {s = d05 "tilli"} ;
+lin tillitta'a'_VK = {s = c53A "tillittää"} ;
+lin tilpeho'o'ri_NK = {s = d05 "tilpehööri"} ;
+lin tilsa_NK = {s = d09 "tilsa"} ;
+lin tilsit_NK = {s = d05 "tilsit"} ;
+lin tiltaltti_NK = {s = d05A "tiltaltti"} ;
+lin tilus_NK = {s = d39 "tilus"} ;
+lin timantti_NK = {s = d05A "timantti"} ;
+lin timanttinen_NK = {s = d38 "timanttinen"} ;
+lin timbaali_NK = {s = d06 "timbaali"} ;
+lin timjami_NK = {s = d06 "timjami"} ;
+lin timotei_NK = {s = d18 "timotei"} ;
+lin timperi_NK = {s = d06 "timperi"} ;
+lin timpermanni_NK = {s = d05 "timpermanni"} ;
+lin timpuri_NK = {s = d06 "timpuri"} ;
+lin tina_NK = {s = d09 "tina"} ;
+lin tinainen_NK = {s = d38 "tinainen"} ;
+lin tinata_VK = {s = c73 "tinata"} ;
+lin tinaus_NK = {s = d39 "tinaus"} ;
+lin tingassa_AdvK = {s = c99 "tingassa"} ;
+lin tingata_VK = {s = c73A "tingata"} ;
+lin tingeltangeli_NK = {s = d06 "tingeltangeli"} ;
+lin tinka_NK = {s = d09A "tinka"} ;
+lin tinkaaja_NK = {s = d10 "tinkaaja"} ;
+lin tinkaan_AdvK = {s = c99 "tinkaan"} ;
+lin tinki_NK = {s = d05A "tinki"} ;
+lin tinkima'tto'myys_NK = {s = d40 "tinkimättömyys"} ;
+lin tinkima'tto'ma'sti_AdvK = {s = c99 "tinkimättömästi"} ;
+lin tinkima'to'n_NK = {s = d34A "tinkimätön"} ;
+lin tinkia'_VK = {s = c61A "tinkiä"} ;
+lin tinktuura_NK = {s = d13 "tinktuura"} ;
+lin tinneri_NK = {s = d06 "tinneri"} ;
+lin tinnerismi_NK = {s = d05 "tinnerismi"} ;
+lin tinneristi_NK = {s = d05 "tinneristi"} ;
+lin tintata_VK = {s = c73A "tintata"} ;
+lin tintti_NK = {s = d05A "tintti"} ;
+lin tipahdella_VK = {s = c67A "tipahdella"} ;
+lin tipahdus_NK = {s = d39 "tipahdus"} ;
+lin tipahtaa_VK = {s = c53A "tipahtaa"} ;
+lin tipauttaa_VK = {s = c53A "tipauttaa"} ;
+lin tipoittain_AdvK = {s = c99 "tipoittain"} ;
+lin tippa_NK = {s = d09A "tippa"} ;
+lin tippari_NK = {s = d06 "tippari"} ;
+lin tippi_NK = {s = d05A "tippi"} ;
+lin tippua_VK = {s = c52A "tippua"} ;
+lin tippuri_NK = {s = d06 "tippuri"} ;
+lin tipsuttaa_VK = {s = c53A "tipsuttaa"} ;
+lin tipsutus_NK = {s = d39 "tipsutus"} ;
+lin tiptop_AdvK = {s = c99 "tiptop"} ;
+lin tipu_NK = {s = d01 "tipu"} ;
+lin tiputella_VK = {s = c67A "tiputella"} ;
+lin tiputtaa_VK = {s = c53A "tiputtaa"} ;
+lin tiputus_NK = {s = d39 "tiputus"} ;
+lin tirahdella_VK = {s = c67A "tirahdella"} ;
+lin tirahdus_NK = {s = d39 "tirahdus"} ;
+lin tirahtaa_VK = {s = c53A "tirahtaa"} ;
+lin tiraus_NK = {s = d39 "tiraus"} ;
+lin tirauttaa_VK = {s = c53A "tirauttaa"} ;
+lin tirehto'o'ri_NK = {s = d05 "tirehtööri"} ;
+lin tiristys_NK = {s = d39 "tiristys"} ;
+lin tirista'_VK = {s = c66 "tiristä"} ;
+lin tirista'a'_VK = {s = c53 "tiristää"} ;
+lin tirkistelija'_NK = {s = d12 "tirkistelijä"} ;
+lin tirkistella'_VK = {s = c67 "tirkistellä"} ;
+lin tirkistely_NK = {s = d02 "tirkistely"} ;
+lin tirkistys_NK = {s = d39 "tirkistys"} ;
+lin tirkista'a'_VK = {s = c53 "tirkistää"} ;
+lin tirri_NK = {s = d05 "tirri"} ;
+--? lin tirsat_NK = {s = d09 "tirsat"} ;
+lin tirskahdella_VK = {s = c67A "tirskahdella"} ;
+lin tirskahdus_NK = {s = d39 "tirskahdus"} ;
+lin tirskahtaa_VK = {s = c53A "tirskahtaa"} ;
+lin tirskaus_NK = {s = d39 "tirskaus"} ;
+lin tirskauttaa_VK = {s = c53A "tirskauttaa"} ;
+lin tirskua_VK = {s = c52 "tirskua"} ;
+lin tirskutella_VK = {s = c67A "tirskutella"} ;
+lin tirskuttaa_VK = {s = c53A "tirskuttaa"} ;
+lin tirskutus_NK = {s = d39 "tirskutus"} ;
+lin tirsua_VK = {s = c52 "tirsua"} ;
+lin tiskaaja_NK = {s = d10 "tiskaaja"} ;
+lin tiskari_NK = {s = d06 "tiskari"} ;
+lin tiskata_VK = {s = c73 "tiskata"} ;
+lin tiskaus_NK = {s = d39 "tiskaus"} ;
+lin tiski_NK = {s = d05 "tiski"} ;
+lin tislaamo_NK = {s = d02 "tislaamo"} ;
+lin tislaantua_VK = {s = c52A "tislaantua"} ;
+lin tislain_NK = {s = d33 "tislain"} ;
+lin tislata_VK = {s = c73 "tislata"} ;
+lin tislaus_NK = {s = d39 "tislaus"} ;
+lin tislautua_VK = {s = c52A "tislautua"} ;
+lin tisle_NK = {s = d48 "tisle"} ;
+lin tismalleen_AdvK = {s = c99 "tismalleen"} ;
+lin tissi_NK = {s = d05 "tissi"} ;
+lin tissutella_VK = {s = c67A "tissutella"} ;
+lin tissuttaa_VK = {s = c53A "tissuttaa"} ;
+lin tissuttelu_NK = {s = d02 "tissuttelu"} ;
+lin tisu_NK = {s = d01 "tisu"} ;
+lin tisuri_NK = {s = d06 "tisuri"} ;
+lin titaani_NK = {s = d06 "titaani"} ;
+lin titaaninen_NK = {s = d38 "titaaninen"} ;
+lin titityy_AdvK = {s = c99 "titityy"} ;
+lin titrata_VK = {s = c73 "titrata"} ;
+lin titraus_NK = {s = d39 "titraus"} ;
+lin titteli_NK = {s = d06 "titteli"} ;
+lin titteri_NK = {s = d06 "titteri"} ;
+lin tituleerata_VK = {s = c73 "tituleerata"} ;
+lin tituloida_VK = {s = c62 "tituloida"} ;
+lin titulointi_NK = {s = d05A "titulointi"} ;
+lin tiu_NK = {s = d18 "tiu"} ;
+lin tiuha_NK = {s = d09 "tiuha"} ;
+lin tiuhentaa_VK = {s = c54A "tiuhentaa"} ;
+lin tiuhentua_VK = {s = c52A "tiuhentua"} ;
+lin tiuheta_VK = {s = c72 "tiuheta"} ;
+lin tiukalla_AdvK = {s = c99 "tiukalla"} ;
+lin tiukalle_AdvK = {s = c99 "tiukalle"} ;
+lin tiukassa_AdvK = {s = c99 "tiukassa"} ;
+lin tiukasti_AdvK = {s = c99 "tiukasti"} ;
+lin tiukata_VK = {s = c73A "tiukata"} ;
+lin tiukentaa_VK = {s = c54A "tiukentaa"} ;
+lin tiukentua_VK = {s = c52A "tiukentua"} ;
+lin tiuketa_VK = {s = c72A "tiuketa"} ;
+lin tiukilla_AdvK = {s = c99 "tiukilla"} ;
+lin tiukille_AdvK = {s = c99 "tiukille"} ;
+lin tiukka_NK = {s = d09A "tiukka"} ;
+lin tiukkaan_AdvK = {s = c99 "tiukkaan"} ;
+lin tiukkapipoinen_AK = {s = d38 "tiukkapipoinen"} ;
+--+ lin tiukkapipoisesti_AdvK = {s = c99 "tiukkapipoisesti"} ;
+lin tiukkapipoisuus_NK = {s = d40 "tiukkapipoisuus"} ;
+lin tiukkua_VK = {s = c52A "tiukkua"} ;
+lin tiukkuus_NK = {s = d40 "tiukkuus"} ;
+lin tiukoilla_AdvK = {s = c99 "tiukoilla"} ;
+lin tiukoille_AdvK = {s = c99 "tiukoille"} ;
+lin tiuku_NK = {s = d01A "tiuku"} ;
+lin tiuskahdella_VK = {s = c67A "tiuskahdella"} ;
+lin tiuskaista_VK = {s = c66 "tiuskaista"} ;
+lin tiuskia_VK = {s = c61 "tiuskia"} ;
+lin tivata_VK = {s = c73 "tivata"} ;
+lin tivoli_NK = {s = d06 "tivoli"} ;
+lin toaletti_NK = {s = d05A "toaletti"} ;
+lin toccata_NK = {s = d09 "toccata"} ;
+lin todella_AdvK = {s = c99 "todella"} ;
+lin todellinen_AK = {s = d38 "todellinen"} ;
+--+ lin todellisesti_AdvK = {s = c99 "todellisesti"} ;
+lin todellistaa_VK = {s = c53 "todellistaa"} ;
+lin todellistua_VK = {s = c52 "todellistua"} ;
+lin todellisuus_NK = {s = d40 "todellisuus"} ;
+lin todellisuuspakoisuus_NK = {s = d40 "todellisuuspakoisuus"} ;
+lin todennus_NK = {s = d39 "todennus"} ;
+--+ lin todenna'ko'isesti_AdvK = {s = c99 "todennäköisesti"} ;
+lin todentaa_VK = {s = c54A "todentaa"} ;
+lin todentua_VK = {s = c52A "todentua"} ;
+lin todesta_AdvK = {s = c99 "todesta"} ;
+lin todesti_AdvK = {s = c99 "todesti"} ;
+lin todeta_VK = {s = c74A "todeta"} ;
+lin todistaa_VK = {s = c53 "todistaa"} ;
+lin todistaja_NK = {s = d10 "todistaja"} ;
+lin todistamaton_NK = {s = d34A "todistamaton"} ;
+lin todiste_NK = {s = d48 "todiste"} ;
+lin todisteellinen_AK = {s = d38 "todisteellinen"} ;
+--+ lin todisteellisesti_AdvK = {s = c99 "todisteellisesti"} ;
+lin todisteellisuus_NK = {s = d40 "todisteellisuus"} ;
+lin todistella_VK = {s = c67 "todistella"} ;
+lin todistelu_NK = {s = d02 "todistelu"} ;
+lin todistua_VK = {s = c52 "todistua"} ;
+lin todistus_NK = {s = d39 "todistus"} ;
+lin todistuttaa_VK = {s = c53A "todistuttaa"} ;
+lin toeta_VK = {s = c72A "toeta"} ;
+lin toffee_NK = {s = d20 "toffee"} ;
+lin tofu_NK = {s = d01 "tofu"} ;
+lin toga_NK = {s = d10 "toga"} ;
+lin tohelo_NK = {s = d02 "tohelo"} ;
+lin toheloida_VK = {s = c62 "toheloida"} ;
+lin tohelointi_NK = {s = d05A "tohelointi"} ;
+lin toheltaa_VK = {s = c54A "toheltaa"} ;
+lin tohina_NK = {s = d12 "tohina"} ;
+lin tohista_VK = {s = c66 "tohista"} ;
+lin tohjoksi_AdvK = {s = c99 "tohjoksi"} ;
+lin tohjona_AdvK = {s = c99 "tohjona"} ;
+lin tohkeissaan_AdvK = {s = c99 "tohkeissaan"} ;
+lin tohtia_VK = {s = c61A "tohtia"} ;
+lin tohtori_NK = {s = d06 "tohtori"} ;
+lin tohtoroida_VK = {s = c62 "tohtoroida"} ;
+lin tohtorointi_NK = {s = d05A "tohtorointi"} ;
+lin tohtoroitua_VK = {s = c52A "tohtoroitua"} ;
+lin tohveli_NK = {s = d06 "tohveli"} ;
+lin toikkaroida_VK = {s = c62 "toikkaroida"} ;
+lin toikkarointi_NK = {s = d05A "toikkarointi"} ;
+lin toilailla_VK = {s = c67 "toilailla"} ;
+lin toilailu_NK = {s = d02 "toilailu"} ;
+lin toilaus_NK = {s = d39 "toilaus"} ;
+lin toimeenpanna_VK = {s = c67 "toimeenpanna"} ;
+lin toimekas_AK = {s = d41A "toimekas"} ;
+--+ lin toimekkaasti_AdvK = {s = c99 "toimekkaasti"} ;
+lin toimekkuus_NK = {s = d40 "toimekkuus"} ;
+--+ lin toimeliaasti_AdvK = {s = c99 "toimeliaasti"} ;
+lin toimeliaisuus_NK = {s = d40 "toimeliaisuus"} ;
+lin toimelias_AK = {s = d41 "toimelias"} ;
+lin toimenpide_NK = {s = d48A "toimenpide"} ;
+lin toimeton_NK = {s = d34A "toimeton"} ;
+lin toimi_NK = {s = d25 "toimi"} ;
+lin toimia_VK = {s = c61 "toimia"} ;
+lin toimiaika_NK = {s = d09A "toimiaika"} ;
+lin toimija_NK = {s = d12 "toimija"} ;
+lin toimikas_NK = {s = d41A "toimikas"} ;
+lin toiminen_NK = {s = d38 "toiminen"} ;
+lin toiminnallinen_NK = {s = d38 "toiminnallinen"} ;
+lin toiminne_NK = {s = d48A "toiminne"} ;
+lin toiminta_NK = {s = d09A "toiminta"} ;
+lin toiminta_aika_NK = {s = d09A "toiminta-aika"} ;
+lin toimintainen_NK = {s = d38 "toimintainen"} ;
+lin toiminto_NK = {s = d01A "toiminto"} ;
+lin toimisto_NK = {s = d02 "toimisto"} ;
+lin toimistoaika_NK = {s = d09A "toimistoaika"} ;
+lin toimite_NK = {s = d48A "toimite"} ;
+lin toimitella_VK = {s = c67A "toimitella"} ;
+lin toimitsija_NK = {s = d12 "toimitsija"} ;
+lin toimittaa_VK = {s = c53A "toimittaa"} ;
+lin toimittaja_NK = {s = d10 "toimittaja"} ;
+lin toimitteilla_AdvK = {s = c99 "toimitteilla"} ;
+lin toimitus_NK = {s = d39 "toimitus"} ;
+lin toimitusaika_NK = {s = d09A "toimitusaika"} ;
+lin toimituttaa_VK = {s = c53A "toimituttaa"} ;
+lin toimiva_NK = {s = d10 "toimiva"} ;
+lin toinen_NK = {s = d38 "toinen"} ;
+lin tointua_VK = {s = c52A "tointua"} ;
+lin toipilaisuus_NK = {s = d40 "toipilaisuus"} ;
+lin toipilas_NK = {s = d41 "toipilas"} ;
+lin toipilasaika_NK = {s = d09A "toipilasaika"} ;
+lin toipua_VK = {s = c52A "toipua"} ;
+lin toipumisaika_NK = {s = d09A "toipumisaika"} ;
+lin toisaalla_AdvK = {s = c99 "toisaalla"} ;
+lin toisaalle_AdvK = {s = c99 "toisaalle"} ;
+lin toisaalta_AdvK = {s = c99 "toisaalta"} ;
+lin toisaanne_AdvK = {s = c99 "toisaanne"} ;
+lin toisekseen_AdvK = {s = c99 "toisekseen"} ;
+lin toiseksi_AdvK = {s = c99 "toiseksi"} ;
+lin toisenlainen_NK = {s = d38 "toisenlainen"} ;
+lin toisenmoinen_NK = {s = d38 "toisenmoinen"} ;
+lin toiseus_NK = {s = d40 "toiseus"} ;
+lin toisin_AdvK = {s = c99 "toisin"} ;
+lin toisinaan_AdvK = {s = c99 "toisinaan"} ;
+lin toisinajatteleva_NK = {s = d10 "toisinajatteleva"} ;
+lin toisinnos_NK = {s = d39 "toisinnos"} ;
+lin toisintaa_VK = {s = c54A "toisintaa"} ;
+lin toisinto_NK = {s = d01A "toisinto"} ;
+lin toissa_AdvK = {s = c99 "toissa"} ;
+--+ lin toissijaisesti_AdvK = {s = c99 "toissijaisesti"} ;
+lin toistaa_VK = {s = c53 "toistaa"} ;
+lin toistainen_NK = {s = d38 "toistainen"} ;
+lin toistaiseksi_AdvK = {s = c99 "toistaiseksi"} ;
+lin toistamiseen_AdvK = {s = c99 "toistamiseen"} ;
+lin toiste_1_AdvK = {s = c99 "toiste"} ;
+lin toiste_2_NK = {s = d48 "toiste"} ;
+lin toistella_VK = {s = c67 "toistella"} ;
+lin toisto_NK = {s = d01 "toisto"} ;
+lin toistua_VK = {s = c52 "toistua"} ;
+lin toistuvasti_AdvK = {s = c99 "toistuvasti"} ;
+lin toistuvuus_NK = {s = d40 "toistuvuus"} ;
+lin toitottaa_VK = {s = c53A "toitottaa"} ;
+lin toitottaja_NK = {s = d10 "toitottaja"} ;
+lin toitotus_NK = {s = d39 "toitotus"} ;
+lin toive_NK = {s = d48 "toive"} ;
+lin toiveikas_AK = {s = d41A "toiveikas"} ;
+--+ lin toiveikkaasti_AdvK = {s = c99 "toiveikkaasti"} ;
+lin toiveikkuus_NK = {s = d40 "toiveikkuus"} ;
+lin toivo_NK = {s = d01 "toivo"} ;
+lin toivoa_VK = {s = c52 "toivoa"} ;
+lin toivomus_NK = {s = d39 "toivomus"} ;
+lin toivotella_VK = {s = c67A "toivotella"} ;
+lin toivoton_NK = {s = d34A "toivoton"} ;
+lin toivottaa_VK = {s = c53A "toivottaa"} ;
+lin toivottava_AK = {s = d10 "toivottava"} ;
+--+ lin toivottavasti_AdvK = {s = c99 "toivottavasti"} ;
+lin toivottomasti_AdvK = {s = c99 "toivottomasti"} ;
+lin toivottomuus_NK = {s = d40 "toivottomuus"} ;
+lin toivottu_NK = {s = d01A "toivottu"} ;
+lin toivotus_NK = {s = d39 "toivotus"} ;
+lin toka_NK = {s = d10 "toka"} ;
+lin tokaista_VK = {s = c66 "tokaista"} ;
+lin tokaisu_NK = {s = d02 "tokaisu"} ;
+lin tokaji_NK = {s = d05 "tokaji"} ;
+lin tokajinviini_NK = {s = d05 "tokajinviini"} ;
+lin toki_AdvK = {s = c99 "toki"} ;
+lin tokka_1_NK = {s = d10A "tokka"} ;
+lin tokka_2_NK = {s = d10A "tokka"} ;
+lin tokko_AdvK = {s = c99 "tokko"} ;
+lin tokkura_NK = {s = d12 "tokkura"} ;
+lin tokkurainen_NK = {s = d38 "tokkurainen"} ;
+lin toksemia_NK = {s = d12 "toksemia"} ;
+lin toksiini_NK = {s = d05 "toksiini"} ;
+lin toksikologia_NK = {s = d12 "toksikologia"} ;
+lin toksinen_NK = {s = d38 "toksinen"} ;
+lin tola_NK = {s = d10 "tola"} ;
+lin tolalla_AdvK = {s = c99 "tolalla"} ;
+lin tolallaan_AdvK = {s = c99 "tolallaan"} ;
+lin tolalle_AdvK = {s = c99 "tolalle"} ;
+lin tolalleen_AdvK = {s = c99 "tolalleen"} ;
+lin tolalta_AdvK = {s = c99 "tolalta"} ;
+lin tolaltaan_AdvK = {s = c99 "tolaltaan"} ;
+lin toleranssi_NK = {s = d05 "toleranssi"} ;
+lin tolerantisti_AdvK = {s = c99 "tolerantisti"} ;
+lin tolerantti_NK = {s = d05A "tolerantti"} ;
+lin tolilla_AdvK = {s = c99 "tolilla"} ;
+lin tolillaan_AdvK = {s = c99 "tolillaan"} ;
+lin tolille_AdvK = {s = c99 "tolille"} ;
+lin tolilleen_AdvK = {s = c99 "tolilleen"} ;
+lin tolilta_AdvK = {s = c99 "tolilta"} ;
+lin toliltaan_AdvK = {s = c99 "toliltaan"} ;
+lin toljailla_VK = {s = c67 "toljailla"} ;
+lin toljottaa_VK = {s = c53A "toljottaa"} ;
+lin toljotus_NK = {s = d39 "toljotus"} ;
+lin tolkku_NK = {s = d01A "tolkku"} ;
+lin tolkulla_AdvK = {s = c99 "tolkulla"} ;
+lin tolkuton_NK = {s = d34A "tolkuton"} ;
+lin tolkuttaa_VK = {s = c53A "tolkuttaa"} ;
+lin tolkuttomasti_AdvK = {s = c99 "tolkuttomasti"} ;
+lin tolkuttomuus_NK = {s = d40 "tolkuttomuus"} ;
+lin tolkutus_NK = {s = d39 "tolkutus"} ;
+lin tollo_NK = {s = d01 "tollo"} ;
+lin tollottaa_VK = {s = c53A "tollottaa"} ;
+lin tollotus_NK = {s = d39 "tollotus"} ;
+lin tolppa_NK = {s = d10A "tolppa"} ;
+lin tolstoilainen_NK = {s = d38 "tolstoilainen"} ;
+lin tolstoilaisuus_NK = {s = d40 "tolstoilaisuus"} ;
+lin tolueeni_NK = {s = d05 "tolueeni"} ;
+lin tolvana_NK = {s = d12 "tolvana"} ;
+lin tomaatti_NK = {s = d05A "tomaatti"} ;
+lin tomahawk_NK = {s = d05 "tomahawk"} ;
+lin tomera_AK = {s = d11 "tomera"} ;
+--+ lin tomerasti_AdvK = {s = c99 "tomerasti"} ;
+lin tomeruus_NK = {s = d40 "tomeruus"} ;
+lin tommoinen_NK = {s = d38 "tommoinen"} ;
+lin tomografi_NK = {s = d05 "tomografi"} ;
+lin tomografia_NK = {s = d12 "tomografia"} ;
+lin tomppeli_NK = {s = d06 "tomppeli"} ;
+lin tomtom_NK = {s = d05 "tomtom"} ;
+lin tomu_NK = {s = d01 "tomu"} ;
+lin tomuinen_NK = {s = d38 "tomuinen"} ;
+lin tomuta_VK = {s = c74 "tomuta"} ;
+lin tomuttaa_VK = {s = c53A "tomuttaa"} ;
+lin tomuttua_VK = {s = c52A "tomuttua"} ;
+lin tomutus_NK = {s = d39 "tomutus"} ;
+lin tonaalinen_AK = {s = d38 "tonaalinen"} ;
+--+ lin tonaalisesti_AdvK = {s = c99 "tonaalisesti"} ;
+lin tonaalisuus_NK = {s = d40 "tonaalisuus"} ;
+lin tonaliteetti_NK = {s = d05A "tonaliteetti"} ;
+lin tongit_NK = {s = d05A "tongit"} ;
+lin tonic_water_NK = {s = d06 "tonic water"} ;
+lin tonikki_NK = {s = d05A "tonikki"} ;
+lin tonkia_VK = {s = c61A "tonkia"} ;
+lin tonkka_NK = {s = d10A "tonkka"} ;
+lin tonne_AdvK = {s = c99 "tonne"} ;
+lin tonneittain_AdvK = {s = c99 "tonneittain"} ;
+lin tonni_NK = {s = d05 "tonni"} ;
+lin tonnisto_NK = {s = d02 "tonnisto"} ;
+lin tonsilla_NK = {s = d09 "tonsilla"} ;
+lin tonsilliitti_NK = {s = d05A "tonsilliitti"} ;
+lin tonsuuri_NK = {s = d06 "tonsuuri"} ;
+lin tontittaa_VK = {s = c53A "tontittaa"} ;
+lin tontitus_NK = {s = d39 "tontitus"} ;
+lin tontti_NK = {s = d05A "tontti"} ;
+lin tonttu_NK = {s = d01A "tonttu"} ;
+lin tonttuilla_VK = {s = c67 "tonttuilla"} ;
+lin tonttuilu_NK = {s = d02 "tonttuilu"} ;
+lin tonus_NK = {s = d39 "tonus"} ;
+lin tooga_NK = {s = d10 "tooga"} ;
+lin toonika_NK = {s = d13 "toonika"} ;
+lin toope_NK = {s = d08 "toope"} ;
+lin toora_NK = {s = d10 "toora"} ;
+lin toosa_NK = {s = d10 "toosa"} ;
+lin top_AdvK = {s = c99 "top"} ;
+lin topakasti_AdvK = {s = c99 "topakasti"} ;
+lin topakkuus_NK = {s = d40 "topakkuus"} ;
+lin topata_1_VK = {s = c73A "topata"} ;
+lin topata_2_VK = {s = c73A "topata"} ;
+lin topeliaaninen_NK = {s = d38 "topeliaaninen"} ;
+lin topless_NK = {s = d05 "topless"} ;
+lin topografi_NK = {s = d05 "topografi"} ;
+lin topografia_NK = {s = d12 "topografia"} ;
+lin topografinen_AK = {s = d38 "topografinen"} ;
+--+ lin topografisesti_AdvK = {s = c99 "topografisesti"} ;
+lin toppa_NK = {s = d10A "toppa"} ;
+lin toppaus_NK = {s = d39 "toppaus"} ;
+lin toppi_1_NK = {s = d05A "toppi"} ;
+lin toppi_2_NK = {s = d05A "toppi"} ;
+lin toppis_NK = {s = d39 "toppis"} ;
+lin toppuutella_VK = {s = c67A "toppuutella"} ;
+lin toppuuttaa_VK = {s = c53A "toppuuttaa"} ;
+lin toppuuttelu_NK = {s = d02 "toppuuttelu"} ;
+lin toppuutus_NK = {s = d39 "toppuutus"} ;
+lin tora_NK = {s = d10 "tora"} ;
+lin torailla_VK = {s = c67 "torailla"} ;
+lin torailu_NK = {s = d02 "torailu"} ;
+lin torainen_NK = {s = d38 "torainen"} ;
+lin toraisa_NK = {s = d10 "toraisa"} ;
+lin torakka_NK = {s = d14A "torakka"} ;
+lin toreadori_NK = {s = d05 "toreadori"} ;
+lin torero_NK = {s = d02 "torero"} ;
+lin tori_NK = {s = d05 "tori"} ;
+lin toriaika_NK = {s = d09A "toriaika"} ;
+lin torium_NK = {s = d05 "torium"} ;
+lin torjua_VK = {s = c52 "torjua"} ;
+lin torjunta_NK = {s = d09A "torjunta"} ;
+lin torjuva_AK = {s = d10 "torjuva"} ;
+--+ lin torjuvasti_AdvK = {s = c99 "torjuvasti"} ;
+lin torkahdella_VK = {s = c67A "torkahdella"} ;
+lin torkahdus_NK = {s = d39 "torkahdus"} ;
+lin torkahtaa_VK = {s = c53A "torkahtaa"} ;
+lin torkahtelu_NK = {s = d02 "torkahtelu"} ;
+lin torke_NK = {s = d48A "torke"} ;
+lin torkku_NK = {s = d01A "torkku"} ;
+lin torkkua_VK = {s = c52A "torkkua"} ;
+lin torkuksissa_AdvK = {s = c99 "torkuksissa"} ;
+lin tornado_NK = {s = d02 "tornado"} ;
+lin torni_NK = {s = d05 "torni"} ;
+lin torninen_NK = {s = d38 "torninen"} ;
+lin tornittaa_VK = {s = c53A "tornittaa"} ;
+lin tornitus_NK = {s = d39 "tornitus"} ;
+lin torpedo_NK = {s = d02 "torpedo"} ;
+lin torpedoida_VK = {s = c62 "torpedoida"} ;
+lin torpedointi_NK = {s = d05A "torpedointi"} ;
+lin torppa_NK = {s = d10A "torppa"} ;
+lin torppari_NK = {s = d06 "torppari"} ;
+lin torrakko_NK = {s = d04A "torrakko"} ;
+lin torsio_NK = {s = d03 "torsio"} ;
+lin torso_NK = {s = d01 "torso"} ;
+lin torstai_NK = {s = d18 "torstai"} ;
+lin torstainen_NK = {s = d38 "torstainen"} ;
+lin torstaisin_AdvK = {s = c99 "torstaisin"} ;
+lin tortelliini_NK = {s = d05 "tortelliini"} ;
+lin tortilla_NK = {s = d13 "tortilla"} ;
+lin torttu_NK = {s = d01A "torttu"} ;
+lin torua_VK = {s = c52 "torua"} ;
+--? lin torut_NK = {s = d01 "torut"} ;
+lin torveilla_VK = {s = c67 "torveilla"} ;
+lin torveilu_NK = {s = d02 "torveilu"} ;
+lin torvelo_NK = {s = d02 "torvelo"} ;
+lin torvi_NK = {s = d07 "torvi"} ;
+lin tosi_NK = {s = d27 "tosi"} ;
+lin tosiaan_AdvK = {s = c99 "tosiaan"} ;
+lin tosikko_NK = {s = d04A "tosikko"} ;
+--+ lin tosikkomaisesti_AdvK = {s = c99 "tosikkomaisesti"} ;
+lin tosikkomaisuus_NK = {s = d40 "tosikkomaisuus"} ;
+lin tosimielessa'_AdvK = {s = c99 "tosimielessä"} ;
+lin tosin_AdvK = {s = c99 "tosin"} ;
+lin tosio_NK = {s = d03 "tosio"} ;
+lin tosissaan_AdvK = {s = c99 "tosissaan"} ;
+lin tosite_NK = {s = d48A "tosite"} ;
+lin tosittaa_VK = {s = c53A "tosittaa"} ;
+lin tossu_NK = {s = d01 "tossu"} ;
+lin totaali_NK = {s = d06 "totaali"} ;
+lin totaalinen_AK = {s = d38 "totaalinen"} ;
+--+ lin totaalisesti_AdvK = {s = c99 "totaalisesti"} ;
+lin totaalisuus_NK = {s = d40 "totaalisuus"} ;
+lin totalisaattori_NK = {s = d06 "totalisaattori"} ;
+lin totalitaarinen_AK = {s = d38 "totalitaarinen"} ;
+--+ lin totalitaarisesti_AdvK = {s = c99 "totalitaarisesti"} ;
+lin totalitaarisuus_NK = {s = d40 "totalitaarisuus"} ;
+lin totalitarismi_NK = {s = d05 "totalitarismi"} ;
+lin totalitaristinen_NK = {s = d38 "totalitaristinen"} ;
+lin toteama_NK = {s = d10 "toteama"} ;
+lin toteamus_NK = {s = d39 "toteamus"} ;
+lin toteemi_NK = {s = d06 "toteemi"} ;
+lin toteen_AdvK = {s = c99 "toteen"} ;
+lin totella_VK = {s = c67A "totella"} ;
+lin totemismi_NK = {s = d05 "totemismi"} ;
+lin totemistinen_NK = {s = d38 "totemistinen"} ;
+lin toteuma_NK = {s = d10 "toteuma"} ;
+lin toteuttaa_VK = {s = c53A "toteuttaa"} ;
+lin toteuttaja_NK = {s = d10 "toteuttaja"} ;
+lin toteutua_VK = {s = c52A "toteutua"} ;
+lin toteutuma_NK = {s = d10 "toteutuma"} ;
+lin toteutus_NK = {s = d39 "toteutus"} ;
+lin toti_NK = {s = d05 "toti"} ;
+lin totinen_AK = {s = d38 "totinen"} ;
+--+ lin totisesti_AdvK = {s = c99 "totisesti"} ;
+lin totisuus_NK = {s = d40 "totisuus"} ;
+lin toto_NK = {s = d01 "toto"} ;
+lin totoaja_NK = {s = d10 "totoaja"} ;
+lin totota_VK = {s = c74 "totota"} ;
+lin totta_AdvK = {s = c99 "totta"} ;
+lin tottelematon_NK = {s = d34A "tottelematon"} ;
+lin tottelemattomasti_AdvK = {s = c99 "tottelemattomasti"} ;
+lin tottelemattomuus_NK = {s = d40 "tottelemattomuus"} ;
+lin tottelevainen_AK = {s = d38 "tottelevainen"} ;
+--+ lin tottelevaisesti_AdvK = {s = c99 "tottelevaisesti"} ;
+lin tottelevaisuus_NK = {s = d40 "tottelevaisuus"} ;
+lin tottua_VK = {s = c52A "tottua"} ;
+lin tottumaton_NK = {s = d34A "tottumaton"} ;
+lin tottumattomuus_NK = {s = d40 "tottumattomuus"} ;
+lin tottumus_NK = {s = d39 "tottumus"} ;
+lin tottuneisuus_NK = {s = d40 "tottuneisuus"} ;
+lin totunnainen_NK = {s = d38 "totunnainen"} ;
+lin totutella_VK = {s = c67A "totutella"} ;
+lin totuttaa_VK = {s = c53A "totuttaa"} ;
+lin totuttautua_VK = {s = c52A "totuttautua"} ;
+lin totuudellinen_AK = {s = d38 "totuudellinen"} ;
+--+ lin totuudellisesti_AdvK = {s = c99 "totuudellisesti"} ;
+lin totuudellisuus_NK = {s = d40 "totuudellisuus"} ;
+lin totuus_NK = {s = d40 "totuus"} ;
+lin touhottaa_VK = {s = c53A "touhottaa"} ;
+lin touhotus_NK = {s = d39 "touhotus"} ;
+lin touhu_NK = {s = d01 "touhu"} ;
+lin touhuilija_NK = {s = d12 "touhuilija"} ;
+lin touhuilla_VK = {s = c67 "touhuilla"} ;
+lin touhuilu_NK = {s = d02 "touhuilu"} ;
+lin touhukas_AK = {s = d41A "touhukas"} ;
+--+ lin touhukkaasti_AdvK = {s = c99 "touhukkaasti"} ;
+lin touhukkuus_NK = {s = d40 "touhukkuus"} ;
+lin touhuta_VK = {s = c74 "touhuta"} ;
+lin toukka_NK = {s = d10A "toukka"} ;
+lin toukkainen_NK = {s = d38 "toukkainen"} ;
+lin touko_NK = {s = d01A "touko"} ;
+lin toukoaika_NK = {s = d09A "toukoaika"} ;
+lin tournedos_NK = {s = d22 "tournedos"} ;
+lin toutain_NK = {s = d33 "toutain"} ;
+lin touvi_NK = {s = d05 "touvi"} ;
+lin toveri_NK = {s = d06 "toveri"} ;
+lin toverillinen_AK = {s = d38 "toverillinen"} ;
+--+ lin toverillisesti_AdvK = {s = c99 "toverillisesti"} ;
+lin toverillisuus_NK = {s = d40 "toverillisuus"} ;
+--? lin toverukset_NK = {s = d39 "toverukset"} ;
+lin toveruus_NK = {s = d40 "toveruus"} ;
+lin tovi_NK = {s = d05 "tovi"} ;
+lin traagikko_NK = {s = d04A "traagikko"} ;
+lin traaginen_AK = {s = d38 "traaginen"} ;
+--+ lin traagisesti_AdvK = {s = c99 "traagisesti"} ;
+lin traagisuus_NK = {s = d40 "traagisuus"} ;
+lin traani_NK = {s = d05 "traani"} ;
+lin tradenomi_NK = {s = d05 "tradenomi"} ;
+lin traditio_NK = {s = d03 "traditio"} ;
+lin traditionaalinen_AK = {s = d38 "traditionaalinen"} ;
+--+ lin traditionaalisesti_AdvK = {s = c99 "traditionaalisesti"} ;
+lin traditionaalisuus_NK = {s = d40 "traditionaalisuus"} ;
+lin trafiikki_NK = {s = d05A "trafiikki"} ;
+lin trafikisti_NK = {s = d05 "trafikisti"} ;
+lin tragedia_NK = {s = d12 "tragedia"} ;
+lin tragedienne_NK = {s = d08 "tragedienne"} ;
+lin tragiikka_NK = {s = d14A "tragiikka"} ;
+lin trahteerata_VK = {s = c73 "trahteerata"} ;
+lin traileri_NK = {s = d06 "traileri"} ;
+lin traktaatti_NK = {s = d05A "traktaatti"} ;
+lin traktori_NK = {s = d06 "traktori"} ;
+lin tralli_NK = {s = d05 "tralli"} ;
+lin trampata_VK = {s = c73A "trampata"} ;
+lin trampoliini_NK = {s = d05 "trampoliini"} ;
+lin trance_NK = {s = d08 "trance"} ;
+lin transeerata_VK = {s = c73 "transeerata"} ;
+lin transferenssi_NK = {s = d05 "transferenssi"} ;
+lin transformaatio_NK = {s = d03 "transformaatio"} ;
+lin transformoida_VK = {s = c62 "transformoida"} ;
+lin transformointi_NK = {s = d05A "transformointi"} ;
+lin transgeeninen_NK = {s = d38 "transgeeninen"} ;
+lin transistori_NK = {s = d06 "transistori"} ;
+lin transistoroida_VK = {s = c62 "transistoroida"} ;
+lin transithalli_NK = {s = d05 "transithalli"} ;
+lin transitiivinen_NK = {s = d38 "transitiivinen"} ;
+lin transito_NK = {s = d02 "transito"} ;
+lin transkriboida_VK = {s = c62 "transkriboida"} ;
+lin transkriptio_NK = {s = d03 "transkriptio"} ;
+lin translatiivi_NK = {s = d05 "translatiivi"} ;
+lin translitteraatio_NK = {s = d03 "translitteraatio"} ;
+lin translitteroida_VK = {s = c62 "translitteroida"} ;
+lin translitterointi_NK = {s = d05A "translitterointi"} ;
+lin transparentti_NK = {s = d05A "transparentti"} ;
+lin transplantaatio_NK = {s = d03 "transplantaatio"} ;
+lin transplantaatti_NK = {s = d05A "transplantaatti"} ;
+lin transplantoida_VK = {s = c62 "transplantoida"} ;
+lin transplantointi_NK = {s = d05A "transplantointi"} ;
+lin transponoida_VK = {s = c62 "transponoida"} ;
+lin transponointi_NK = {s = d05A "transponointi"} ;
+lin transseksuaali_NK = {s = d05 "transseksuaali"} ;
+lin transseksualismi_NK = {s = d05 "transseksualismi"} ;
+lin transsendenssi_NK = {s = d05 "transsendenssi"} ;
+lin transsendentti_NK = {s = d05A "transsendentti"} ;
+lin transsendenttinen_NK = {s = d38 "transsendenttinen"} ;
+lin transsi_NK = {s = d05 "transsi"} ;
+lin transu_NK = {s = d01 "transu"} ;
+lin transvestiitti_NK = {s = d05A "transvestiitti"} ;
+lin transvestismi_NK = {s = d05 "transvestismi"} ;
+lin transvestitismi_NK = {s = d05 "transvestitismi"} ;
+lin trap_NK = {s = d05 "trap"} ;
+lin trap_ammunta_NK = {s = d09A "trap-ammunta"} ;
+lin trapetsi_NK = {s = d06 "trapetsi"} ;
+lin trassaatti_NK = {s = d05A "trassaatti"} ;
+lin trassata_VK = {s = c73 "trassata"} ;
+lin trasseerata_VK = {s = c73 "trasseerata"} ;
+lin trasseli_NK = {s = d06 "trasseli"} ;
+lin trassentti_NK = {s = d05A "trassentti"} ;
+lin tratta_NK = {s = d09A "tratta"} ;
+lin tratti_NK = {s = d05A "tratti"} ;
+lin trauma_NK = {s = d09 "trauma"} ;
+lin traumaattinen_NK = {s = d38 "traumaattinen"} ;
+lin treasury_NK = {s = d01 "treasury"} ;
+lin treema_NK = {s = d09 "treema"} ;
+lin treenata_VK = {s = c73 "treenata"} ;
+lin treenaus_NK = {s = d39 "treenaus"} ;
+lin treeni_NK = {s = d05 "treeni"} ;
+lin treffata_VK = {s = c73 "treffata"} ;
+lin treffit_NK = {s = d05 "treffit"} ;
+lin tremolo_NK = {s = d02 "tremolo"} ;
+lin trenchcoat_NK = {s = d05 "trenchcoat"} ;
+lin trendi_NK = {s = d05 "trendi"} ;
+lin trendikkyys_NK = {s = d40 "trendikkyys"} ;
+--+ lin trendikka'a'sti_AdvK = {s = c99 "trendikkäästi"} ;
+lin trendika's_AK = {s = d41A "trendikäs"} ;
+lin trenssi_NK = {s = d05 "trenssi"} ;
+lin trial_NK = {s = d05 "trial"} ;
+lin triangeli_NK = {s = d06 "triangeli"} ;
+lin triatlon_NK = {s = d06 "triatlon"} ;
+lin tribunaali_NK = {s = d05 "tribunaali"} ;
+lin tribuuni_NK = {s = d06 "tribuuni"} ;
+lin triennaali_NK = {s = d05 "triennaali"} ;
+lin trigonometria_NK = {s = d12 "trigonometria"} ;
+lin trigonometrinen_NK = {s = d38 "trigonometrinen"} ;
+lin trikiini_NK = {s = d06 "trikiini"} ;
+lin trikinoosi_NK = {s = d05 "trikinoosi"} ;
+lin trikki_NK = {s = d05A "trikki"} ;
+lin trikoinen_NK = {s = d38 "trikoinen"} ;
+lin trikolori_NK = {s = d06 "trikolori"} ;
+lin trikomoonas_NK = {s = d39 "trikomoonas"} ;
+lin trikoo_NK = {s = d20 "trikoo"} ;
+lin triljoona_NK = {s = d10 "triljoona"} ;
+lin trilleri_NK = {s = d06 "trilleri"} ;
+lin trilli_NK = {s = d05 "trilli"} ;
+lin trilogia_NK = {s = d12 "trilogia"} ;
+lin trimaraani_NK = {s = d05 "trimaraani"} ;
+lin trimmata_VK = {s = c73 "trimmata"} ;
+lin trimmaus_NK = {s = d39 "trimmaus"} ;
+lin trio_NK = {s = d01 "trio"} ;
+lin trioli_NK = {s = d06 "trioli"} ;
+lin tripla_NK = {s = d09 "tripla"} ;
+lin trippi_NK = {s = d05A "trippi"} ;
+lin triptyykki_NK = {s = d05A "triptyykki"} ;
+lin triumfi_NK = {s = d05 "triumfi"} ;
+lin triumviraatti_NK = {s = d05A "triumviraatti"} ;
+lin triviaali_AK = {s = d05 "triviaali"} ;
+lin triviaalistaa_VK = {s = c53 "triviaalistaa"} ;
+--+ lin triviaalisti_AdvK = {s = c99 "triviaalisti"} ;
+lin triviaalius_NK = {s = d40 "triviaalius"} ;
+lin trivialisoida_VK = {s = c62 "trivialisoida"} ;
+lin trivialiteetti_NK = {s = d05A "trivialiteetti"} ;
+lin troikka_NK = {s = d10A "troikka"} ;
+lin trokari_NK = {s = d06 "trokari"} ;
+lin trokata_VK = {s = c73 "trokata"} ;
+lin trokaus_NK = {s = d39 "trokaus"} ;
+lin trokee_NK = {s = d20 "trokee"} ;
+lin trombi_NK = {s = d05 "trombi"} ;
+lin trombosyytti_NK = {s = d05A "trombosyytti"} ;
+lin troolari_NK = {s = d06 "troolari"} ;
+lin troolata_VK = {s = c73 "troolata"} ;
+lin troolaus_NK = {s = d39 "troolaus"} ;
+lin trooli_NK = {s = d05 "trooli"} ;
+lin trooppinen_NK = {s = d38 "trooppinen"} ;
+lin tropiikki_NK = {s = d05A "tropiikki"} ;
+lin tropismi_NK = {s = d05 "tropismi"} ;
+lin troposfa'a'ri_NK = {s = d05 "troposfääri"} ;
+lin troppi_NK = {s = d05A "troppi"} ;
+lin trotskilainen_NK = {s = d38 "trotskilainen"} ;
+lin trotskilaisuus_NK = {s = d40 "trotskilaisuus"} ;
+lin trotskismi_NK = {s = d05 "trotskismi"} ;
+lin trotyyli_NK = {s = d06 "trotyyli"} ;
+lin trubaduuri_NK = {s = d05 "trubaduuri"} ;
+lin truismi_NK = {s = d05 "truismi"} ;
+lin truistinen_NK = {s = d38 "truistinen"} ;
+lin trukki_NK = {s = d05A "trukki"} ;
+lin trulli_NK = {s = d05 "trulli"} ;
+lin trumpetisti_NK = {s = d05 "trumpetisti"} ;
+lin trumpetti_NK = {s = d05A "trumpetti"} ;
+lin trusti_NK = {s = d05 "trusti"} ;
+lin trustiutua_VK = {s = c52A "trustiutua"} ;
+lin truutata_VK = {s = c73A "truutata"} ;
+lin truutta_NK = {s = d10A "truutta"} ;
+lin tryffeli_NK = {s = d06 "tryffeli"} ;
+lin tsaari_NK = {s = d05 "tsaari"} ;
+lin tsaarillinen_NK = {s = d38 "tsaarillinen"} ;
+lin tsaarinaika_NK = {s = d09A "tsaarinaika"} ;
+lin tsaaritar_NK = {s = d32A "tsaaritar"} ;
+lin t_ador_NK = {s = d06 "tšador"} ;
+lin tsarismi_NK = {s = d05 "tsarismi"} ;
+lin tsaristinen_NK = {s = d38 "tsaristinen"} ;
+lin tsasouna_NK = {s = d10 "tsasouna"} ;
+lin tsatsiki_NK = {s = d05 "tsatsiki"} ;
+lin tse_AdvK = {s = c99 "tse"} ;
+lin tsekata_VK = {s = c73A "tsekata"} ;
+lin tsekkaus_NK = {s = d39 "tsekkaus"} ;
+lin t_ekki_NK = {s = d05A "tšekki"} ;
+lin t_ekkila'inen_NK = {s = d38 "tšekkiläinen"} ;
+lin tsempata_VK = {s = c73A "tsempata"} ;
+lin tsemppi_NK = {s = d05A "tsemppi"} ;
+lin tsepto__AdvK = {s = c99 "tsepto-"} ;
+lin t_eremissi_NK = {s = d05 "tšeremissi"} ;
+lin t_et_eeni_NK = {s = d06 "tšetšeeni"} ;
+lin tsiikata_VK = {s = c73 "tsiikata"} ;
+lin tsinuski_NK = {s = d06 "tsinuski"} ;
+lin tsuhna_NK = {s = d10 "tsuhna"} ;
+lin tsuppari_NK = {s = d06 "tsuppari"} ;
+lin tsygootti_NK = {s = d05A "tsygootti"} ;
+lin tsa'tti_NK = {s = d05A "tsätti"} ;
+lin tuberkuliini_NK = {s = d05 "tuberkuliini"} ;
+lin tuberkuloosi_NK = {s = d05 "tuberkuloosi"} ;
+lin tuberkuloottinen_NK = {s = d38 "tuberkuloottinen"} ;
+lin tuberoosa_NK = {s = d10 "tuberoosa"} ;
+lin tubi_NK = {s = d05 "tubi"} ;
+lin tuenta_NK = {s = d09A "tuenta"} ;
+lin tuftata_VK = {s = c73 "tuftata"} ;
+lin tuhahdella_VK = {s = c67A "tuhahdella"} ;
+lin tuhahdus_NK = {s = d39 "tuhahdus"} ;
+lin tuhahtaa_VK = {s = c53A "tuhahtaa"} ;
+lin tuhannen_AdvK = {s = c99 "tuhannen"} ;
+lin tuhannes_NK = {s = d45 "tuhannes"} ;
+lin tuhannesti_AdvK = {s = c99 "tuhannesti"} ;
+lin tuhansittain_AdvK = {s = c99 "tuhansittain"} ;
+lin tuhantinen_NK = {s = d38 "tuhantinen"} ;
+lin tuhantisen_AdvK = {s = c99 "tuhantisen"} ;
+--? lin tuhat_NK = {s = d46 "tuhat"} ;
+lin tuhatkauno_NK = {s = d01 "tuhatkauno"} ;
+--+ lin tuhatkertaisesti_AdvK = {s = c99 "tuhatkertaisesti"} ;
+lin tuhatma'a'rin_AdvK = {s = c99 "tuhatmäärin"} ;
+lin tuhaus_NK = {s = d39 "tuhaus"} ;
+lin tuhauttaa_VK = {s = c53A "tuhauttaa"} ;
+lin tuhdisti_AdvK = {s = c99 "tuhdisti"} ;
+lin tuherrella_VK = {s = c67A "tuherrella"} ;
+lin tuherrus_NK = {s = d39 "tuherrus"} ;
+lin tuhertaa_VK = {s = c54A "tuhertaa"} ;
+lin tuhina_NK = {s = d12 "tuhina"} ;
+lin tuhista_VK = {s = c66 "tuhista"} ;
+lin tuhistaa_VK = {s = c53 "tuhistaa"} ;
+lin tuhisuttaa_VK = {s = c53A "tuhisuttaa"} ;
+lin tuhka_NK = {s = d10 "tuhka"} ;
+lin tuhkata_VK = {s = c73 "tuhkata"} ;
+lin tuhkaus_NK = {s = d39 "tuhkaus"} ;
+lin tuhkauttaa_VK = {s = c53A "tuhkauttaa"} ;
+lin tuhkelo_NK = {s = d02 "tuhkelo"} ;
+lin tuhkimo_NK = {s = d02 "tuhkimo"} ;
+lin tuhkuri_NK = {s = d06 "tuhkuri"} ;
+lin tuhlaaja_NK = {s = d10 "tuhlaaja"} ;
+lin tuhlaantua_VK = {s = c52A "tuhlaantua"} ;
+lin tuhlaavainen_NK = {s = d38 "tuhlaavainen"} ;
+lin tuhlailla_VK = {s = c67 "tuhlailla"} ;
+lin tuhlari_NK = {s = d06 "tuhlari"} ;
+lin tuhlata_VK = {s = c73 "tuhlata"} ;
+lin tuhlaus_NK = {s = d39 "tuhlaus"} ;
+lin tuhlautua_VK = {s = c52A "tuhlautua"} ;
+lin tuhma_AK = {s = d10 "tuhma"} ;
+--+ lin tuhmasti_AdvK = {s = c99 "tuhmasti"} ;
+lin tuhmuus_NK = {s = d40 "tuhmuus"} ;
+lin tuho_NK = {s = d01 "tuho"} ;
+lin tuhoaja_NK = {s = d10 "tuhoaja"} ;
+lin tuhoisa_AK = {s = d10 "tuhoisa"} ;
+--+ lin tuhoisasti_AdvK = {s = c99 "tuhoisasti"} ;
+lin tuhoisuus_NK = {s = d40 "tuhoisuus"} ;
+lin tuholaisuus_NK = {s = d40 "tuholaisuus"} ;
+lin tuhota_VK = {s = c74 "tuhota"} ;
+lin tuhoton_NK = {s = d34A "tuhoton"} ;
+lin tuhottomasti_AdvK = {s = c99 "tuhottomasti"} ;
+lin tuhoutua_VK = {s = c52A "tuhoutua"} ;
+lin tuhraantua_VK = {s = c52A "tuhraantua"} ;
+lin tuhrata_VK = {s = c73 "tuhrata"} ;
+lin tuhrautua_VK = {s = c52A "tuhrautua"} ;
+lin tuhria_VK = {s = c61 "tuhria"} ;
+lin tuhriintua_VK = {s = c52A "tuhriintua"} ;
+lin tuhriutua_VK = {s = c52A "tuhriutua"} ;
+lin tuhru_NK = {s = d01 "tuhru"} ;
+lin tuhruinen_AK = {s = d38 "tuhruinen"} ;
+--+ lin tuhruisesti_AdvK = {s = c99 "tuhruisesti"} ;
+lin tuhruisuus_NK = {s = d40 "tuhruisuus"} ;
+lin tuhti_NK = {s = d05A "tuhti"} ;
+lin tuhto_NK = {s = d01A "tuhto"} ;
+lin tuhutella_VK = {s = c67A "tuhutella"} ;
+lin tuhuttaa_VK = {s = c53A "tuhuttaa"} ;
+lin tuhutus_NK = {s = d39 "tuhutus"} ;
+lin tuhuuttaa_VK = {s = c53A "tuhuuttaa"} ;
+lin tuija_NK = {s = d10 "tuija"} ;
+lin tuijotella_VK = {s = c67A "tuijotella"} ;
+lin tuijottaa_VK = {s = c53A "tuijottaa"} ;
+lin tuiju_NK = {s = d01 "tuiju"} ;
+lin tuikahdella_VK = {s = c67A "tuikahdella"} ;
+lin tuikahdus_NK = {s = d39 "tuikahdus"} ;
+lin tuikahtaa_VK = {s = c53A "tuikahtaa"} ;
+lin tuikahtelu_NK = {s = d02 "tuikahtelu"} ;
+lin tuikata_VK = {s = c73A "tuikata"} ;
+lin tuike_NK = {s = d48A "tuike"} ;
+lin tuikea_AK = {s = d15 "tuikea"} ;
+--+ lin tuikeasti_AdvK = {s = c99 "tuikeasti"} ;
+lin tuikehtia_VK = {s = c61A "tuikehtia"} ;
+lin tuikeus_NK = {s = d40 "tuikeus"} ;
+lin tuiki_AdvK = {s = c99 "tuiki"} ;
+lin tuikinta_NK = {s = d09A "tuikinta"} ;
+lin tuikkaa_VK = {s = c78A "tuikkaa"} ;
+lin tuikkaus_NK = {s = d39 "tuikkaus"} ;
+lin tuikkia_VK = {s = c61A "tuikkia"} ;
+lin tuikku_NK = {s = d01A "tuikku"} ;
+lin tuikuttaa_VK = {s = c53A "tuikuttaa"} ;
+lin tuikutus_NK = {s = d39 "tuikutus"} ;
+lin tuima_AK = {s = d10 "tuima"} ;
+--+ lin tuimasti_AdvK = {s = c99 "tuimasti"} ;
+lin tuimentaa_VK = {s = c54A "tuimentaa"} ;
+lin tuimentua_VK = {s = c52A "tuimentua"} ;
+lin tuimeta_VK = {s = c72 "tuimeta"} ;
+lin tuimistaa_VK = {s = c53 "tuimistaa"} ;
+lin tuimistua_VK = {s = c52 "tuimistua"} ;
+lin tuimuus_NK = {s = d40 "tuimuus"} ;
+lin tuiskahdella_VK = {s = c67A "tuiskahdella"} ;
+lin tuiskahtaa_VK = {s = c53A "tuiskahtaa"} ;
+lin tuiske_NK = {s = d48 "tuiske"} ;
+lin tuiskia_VK = {s = c61 "tuiskia"} ;
+lin tuiskina_NK = {s = d12 "tuiskina"} ;
+lin tuiskinta_NK = {s = d09A "tuiskinta"} ;
+lin tuisku_NK = {s = d01 "tuisku"} ;
+lin tuiskuta_VK = {s = c74 "tuiskuta"} ;
+lin tuiskuttaa_VK = {s = c53A "tuiskuttaa"} ;
+lin tuiteriin_AdvK = {s = c99 "tuiteriin"} ;
+lin tuiterissa_AdvK = {s = c99 "tuiterissa"} ;
+lin tuittuilla_VK = {s = c67 "tuittuilla"} ;
+lin tuittuilu_NK = {s = d02 "tuittuilu"} ;
+--+ lin tuittupa'isesti_AdvK = {s = c99 "tuittupäisesti"} ;
+lin tuiverrella_VK = {s = c67A "tuiverrella"} ;
+lin tuiverrus_NK = {s = d39 "tuiverrus"} ;
+lin tuivertaa_VK = {s = c54A "tuivertaa"} ;
+lin tujaus_NK = {s = d39 "tujaus"} ;
+lin tukahduksiin_AdvK = {s = c99 "tukahduksiin"} ;
+lin tukahduksissa_AdvK = {s = c99 "tukahduksissa"} ;
+lin tukahduttaa_VK = {s = c53A "tukahduttaa"} ;
+lin tukahtua_VK = {s = c52A "tukahtua"} ;
+lin tukala_AK = {s = d10 "tukala"} ;
+--+ lin tukalasti_AdvK = {s = c99 "tukalasti"} ;
+lin tukaloitua_VK = {s = c52A "tukaloitua"} ;
+lin tukaluus_NK = {s = d40 "tukaluus"} ;
+lin tukanraja_NK = {s = d09 "tukanraja"} ;
+lin tuke_NK = {s = d48A "tuke"} ;
+lin tukea_VK = {s = c58A "tukea"} ;
+lin tukehduksiin_AdvK = {s = c99 "tukehduksiin"} ;
+lin tukehduksissa_AdvK = {s = c99 "tukehduksissa"} ;
+lin tukehduttaa_VK = {s = c53A "tukehduttaa"} ;
+lin tukehtua_VK = {s = c52A "tukehtua"} ;
+lin tuketa_VK = {s = c74A "tuketa"} ;
+lin tukeutua_VK = {s = c52A "tukeutua"} ;
+lin tukeva_AK = {s = d10 "tukeva"} ;
+--+ lin tukevasti_AdvK = {s = c99 "tukevasti"} ;
+lin tukevoitua_VK = {s = c52A "tukevoitua"} ;
+lin tukevuus_NK = {s = d40 "tukevuus"} ;
+lin tuki_NK = {s = d07A "tuki"} ;
+lin tukiainen_NK = {s = d38 "tukiainen"} ;
+lin tukija_NK = {s = d12 "tukija"} ;
+lin tukikohta_NK = {s = d10A "tukikohta"} ;
+lin tukistaa_VK = {s = c53 "tukistaa"} ;
+lin tukistus_NK = {s = d39 "tukistus"} ;
+lin tukka_NK = {s = d10A "tukka"} ;
+lin tukkainen_NK = {s = d38 "tukkainen"} ;
+lin tukkanuottasilla_AdvK = {s = c99 "tukkanuottasilla"} ;
+lin tukkanuottasille_AdvK = {s = c99 "tukkanuottasille"} ;
+lin tukkeentua_VK = {s = c52A "tukkeentua"} ;
+lin tukkeeseen_AdvK = {s = c99 "tukkeeseen"} ;
+lin tukkeessa_AdvK = {s = c99 "tukkeessa"} ;
+lin tukkeuksiin_AdvK = {s = c99 "tukkeuksiin"} ;
+lin tukkeuksissa_AdvK = {s = c99 "tukkeuksissa"} ;
+lin tukkeuma_NK = {s = d10 "tukkeuma"} ;
+lin tukkeuttaa_VK = {s = c53A "tukkeuttaa"} ;
+lin tukkeutua_VK = {s = c52A "tukkeutua"} ;
+lin tukkeutuma_NK = {s = d10 "tukkeutuma"} ;
+lin tukki_NK = {s = d05A "tukki"} ;
+lin tukkia_VK = {s = c61A "tukkia"} ;
+lin tukkiintua_VK = {s = c52A "tukkiintua"} ;
+lin tukko_1_NK = {s = d01A "tukko"} ;
+lin tukko_2_NK = {s = d01A "tukko"} ;
+lin tukkoinen_AK = {s = d38 "tukkoinen"} ;
+--+ lin tukkoisesti_AdvK = {s = c99 "tukkoisesti"} ;
+lin tukkoisuus_NK = {s = d40 "tukkoisuus"} ;
+lin tukkoon_AdvK = {s = c99 "tukkoon"} ;
+lin tukku_NK = {s = d01A "tukku"} ;
+lin tukkuri_NK = {s = d06 "tukkuri"} ;
+lin tukos_NK = {s = d39 "tukos"} ;
+lin tukossa_AdvK = {s = c99 "tukossa"} ;
+lin tuku_AdvK = {s = c99 "tuku"} ;
+lin tukuittain_AdvK = {s = c99 "tukuittain"} ;
+lin tularemia_NK = {s = d12 "tularemia"} ;
+lin tuleennuttaa_VK = {s = c53A "tuleennuttaa"} ;
+lin tuleentua_VK = {s = c52A "tuleentua"} ;
+lin tulehduksellinen_NK = {s = d38 "tulehduksellinen"} ;
+lin tulehdus_NK = {s = d39 "tulehdus"} ;
+lin tulehduttaa_VK = {s = c53A "tulehduttaa"} ;
+lin tulehtua_VK = {s = c52A "tulehtua"} ;
+lin tulennielija'_NK = {s = d12 "tulennielijä"} ;
+lin tuleva_NK = {s = d10 "tuleva"} ;
+lin tulevainen_NK = {s = d38 "tulevainen"} ;
+lin tulevaisuus_NK = {s = d40 "tulevaisuus"} ;
+lin tuli_NK = {s = d23 "tuli"} ;
+lin tuliainen_NK = {s = d38 "tuliainen"} ;
+lin tulija_NK = {s = d12 "tulija"} ;
+lin tuliluikku_NK = {s = d01A "tuliluikku"} ;
+lin tulimmainen_NK = {s = d38 "tulimmainen"} ;
+lin tulinen_AK = {s = d38 "tulinen"} ;
+--+ lin tulisesti_AdvK = {s = c99 "tulisesti"} ;
+lin tulisijallinen_NK = {s = d38 "tulisijallinen"} ;
+lin tulistaa_VK = {s = c53 "tulistaa"} ;
+lin tulistin_NK = {s = d33 "tulistin"} ;
+lin tulistua_VK = {s = c52 "tulistua"} ;
+lin tulistus_NK = {s = d39 "tulistus"} ;
+lin tulistuttaa_VK = {s = c53A "tulistuttaa"} ;
+lin tulisuus_NK = {s = d40 "tulisuus"} ;
+lin tulite_NK = {s = d48A "tulite"} ;
+lin tulittaa_VK = {s = c53A "tulittaa"} ;
+lin tulitus_NK = {s = d39 "tulitus"} ;
+lin tulkata_VK = {s = c73A "tulkata"} ;
+lin tulkinnallinen_NK = {s = d38 "tulkinnallinen"} ;
+--+ lin tulkinnanvaraisesti_AdvK = {s = c99 "tulkinnanvaraisesti"} ;
+lin tulkinta_NK = {s = d09A "tulkinta"} ;
+lin tulkintainen_NK = {s = d38 "tulkintainen"} ;
+lin tulkintaisuus_NK = {s = d40 "tulkintaisuus"} ;
+lin tulkita_VK = {s = c69 "tulkita"} ;
+lin tulkitsija_NK = {s = d12 "tulkitsija"} ;
+lin tulkka_NK = {s = d10A "tulkka"} ;
+lin tulkkaus_NK = {s = d39 "tulkkaus"} ;
+lin tulkki_1_NK = {s = d05A "tulkki"} ;
+lin tulkki_2_NK = {s = d05A "tulkki"} ;
+lin tulla_VK = {s = c67 "tulla"} ;
+lin tullata_VK = {s = c73 "tullata"} ;
+lin tullaus_NK = {s = d39 "tullaus"} ;
+lin tullauttaa_VK = {s = c53A "tullauttaa"} ;
+lin tulli_NK = {s = d05 "tulli"} ;
+lin tullinkanto_NK = {s = d01A "tullinkanto"} ;
+lin tulliton_NK = {s = d34A "tulliton"} ;
+lin tullittomasti_AdvK = {s = c99 "tullittomasti"} ;
+lin tullittomuus_NK = {s = d40 "tullittomuus"} ;
+lin tulo_NK = {s = d01 "tulo"} ;
+lin tuloaika_NK = {s = d09A "tuloaika"} ;
+lin tuloinen_NK = {s = d38 "tuloinen"} ;
+lin tulokas_NK = {s = d41A "tulokas"} ;
+lin tuloksekas_AK = {s = d41A "tuloksekas"} ;
+--+ lin tuloksekkaasti_AdvK = {s = c99 "tuloksekkaasti"} ;
+lin tuloksekkuus_NK = {s = d40 "tuloksekkuus"} ;
+lin tuloksellinen_AK = {s = d38 "tuloksellinen"} ;
+--+ lin tuloksellisesti_AdvK = {s = c99 "tuloksellisesti"} ;
+lin tuloksellisuus_NK = {s = d40 "tuloksellisuus"} ;
+lin tulokseton_NK = {s = d34A "tulokseton"} ;
+lin tuloksinen_NK = {s = d38 "tuloksinen"} ;
+lin tulos_NK = {s = d39 "tulos"} ;
+lin tulosjohtaminen_NK = {s = d38 "tulosjohtaminen"} ;
+lin tulostaa_VK = {s = c53 "tulostaa"} ;
+lin tuloste_NK = {s = d48 "tuloste"} ;
+lin tulostin_NK = {s = d33 "tulostin"} ;
+lin tulostua_VK = {s = c52 "tulostua"} ;
+lin tulostus_NK = {s = d39 "tulostus"} ;
+lin tuloton_NK = {s = d34A "tuloton"} ;
+lin tulouttaa_VK = {s = c53A "tulouttaa"} ;
+lin tuloutus_NK = {s = d39 "tuloutus"} ;
+lin tulpata_VK = {s = c73A "tulpata"} ;
+lin tulpita_VK = {s = c69 "tulpita"} ;
+lin tulpittaa_VK = {s = c53A "tulpittaa"} ;
+lin tulppa_NK = {s = d10A "tulppa"} ;
+lin tulppaani_NK = {s = d06 "tulppaani"} ;
+lin tulppautua_VK = {s = c52A "tulppautua"} ;
+--? lin tulukset_NK = {s = d39 "tulukset"} ;
+lin tulva_NK = {s = d10 "tulva"} ;
+lin tulvahdella_VK = {s = c67A "tulvahdella"} ;
+lin tulvahtaa_VK = {s = c53A "tulvahtaa"} ;
+lin tulvainen_NK = {s = d38 "tulvainen"} ;
+lin tulvehtia_VK = {s = c61A "tulvehtia"} ;
+lin tulvia_VK = {s = c61 "tulvia"} ;
+lin tuma_NK = {s = d10 "tuma"} ;
+lin tumainen_NK = {s = d38 "tumainen"} ;
+lin tumake_NK = {s = d48A "tumake"} ;
+lin tumallinen_NK = {s = d38 "tumallinen"} ;
+lin tumanjakautuminen_NK = {s = d38 "tumanjakautuminen"} ;
+lin tumma_NK = {s = d10 "tumma"} ;
+lin tummaverikko'_NK = {s = d04A "tummaverikkö"} ;
+lin tummennos_NK = {s = d39 "tummennos"} ;
+lin tummennus_NK = {s = d39 "tummennus"} ;
+lin tummentaa_VK = {s = c54A "tummentaa"} ;
+lin tummentua_VK = {s = c52A "tummentua"} ;
+lin tummeta_VK = {s = c72 "tummeta"} ;
+lin tummua_VK = {s = c52 "tummua"} ;
+lin tumpata_VK = {s = c73A "tumpata"} ;
+lin tumpelo_NK = {s = d02 "tumpelo"} ;
+lin tumpeloida_VK = {s = c62 "tumpeloida"} ;
+lin tumpelointi_NK = {s = d05A "tumpelointi"} ;
+lin tumppi_NK = {s = d05A "tumppi"} ;
+lin tumppu_NK = {s = d01A "tumppu"} ;
+lin tumpula_NK = {s = d12 "tumpula"} ;
+lin tunari_NK = {s = d06 "tunari"} ;
+lin tunaroida_VK = {s = c62 "tunaroida"} ;
+lin tunarointi_NK = {s = d05A "tunarointi"} ;
+lin tundra_NK = {s = d10 "tundra"} ;
+lin tungeksia_VK = {s = c61 "tungeksia"} ;
+lin tungetella_VK = {s = c67A "tungetella"} ;
+lin tungetteleva_AK = {s = d10 "tungetteleva"} ;
+--+ lin tungettelevasti_AdvK = {s = c99 "tungettelevasti"} ;
+lin tungettelevuus_NK = {s = d40 "tungettelevuus"} ;
+lin tungettelija_NK = {s = d12 "tungettelija"} ;
+lin tungettelu_NK = {s = d02 "tungettelu"} ;
+lin tungos_NK = {s = d39 "tungos"} ;
+lin tungosaika_NK = {s = d09A "tungosaika"} ;
+lin tunika_NK = {s = d13 "tunika"} ;
+lin tunkea_VK = {s = c58A "tunkea"} ;
+lin tunkeileva_AK = {s = d10 "tunkeileva"} ;
+--+ lin tunkeilevasti_AdvK = {s = c99 "tunkeilevasti"} ;
+lin tunkeilevuus_NK = {s = d40 "tunkeilevuus"} ;
+lin tunkeilija_NK = {s = d12 "tunkeilija"} ;
+lin tunkeilla_VK = {s = c67 "tunkeilla"} ;
+lin tunkeilu_NK = {s = d02 "tunkeilu"} ;
+lin tunkeutua_VK = {s = c52A "tunkeutua"} ;
+lin tunkeutuja_NK = {s = d10 "tunkeutuja"} ;
+lin tunkio_NK = {s = d03 "tunkio"} ;
+lin tunkkaantua_VK = {s = c52A "tunkkaantua"} ;
+lin tunkkainen_NK = {s = d38 "tunkkainen"} ;
+lin tunkkaisuus_NK = {s = d40 "tunkkaisuus"} ;
+lin tunkkautua_VK = {s = c52A "tunkkautua"} ;
+lin tunkki_NK = {s = d05A "tunkki"} ;
+lin tunkrahvi_NK = {s = d05 "tunkrahvi"} ;
+lin tunku_NK = {s = d01A "tunku"} ;
+lin tunnari_NK = {s = d06 "tunnari"} ;
+lin tunne_NK = {s = d48A "tunne"} ;
+lin tunneittain_AdvK = {s = c99 "tunneittain"} ;
+--+ lin tunnekylla'isesti_AdvK = {s = c99 "tunnekylläisesti"} ;
+lin tunneli_NK = {s = d06 "tunneli"} ;
+lin tunnelma_NK = {s = d10 "tunnelma"} ;
+lin tunnelmainen_NK = {s = d38 "tunnelmainen"} ;
+lin tunnelmallinen_NK = {s = d38 "tunnelmallinen"} ;
+lin tunnelmoida_VK = {s = c62 "tunnelmoida"} ;
+lin tunnelmointi_NK = {s = d05A "tunnelmointi"} ;
+lin tunneloida_VK = {s = c62 "tunneloida"} ;
+lin tunnelointi_NK = {s = d05A "tunnelointi"} ;
+--+ lin tunnepera'isesti_AdvK = {s = c99 "tunneperäisesti"} ;
+lin tunnestautua_VK = {s = c52A "tunnestautua"} ;
+lin tunnettu_NK = {s = d01A "tunnettu"} ;
+lin tunnettuisuus_NK = {s = d40 "tunnettuisuus"} ;
+lin tunnettuus_NK = {s = d40 "tunnettuus"} ;
+lin tunnetusti_AdvK = {s = c99 "tunnetusti"} ;
+lin tunnistaa_VK = {s = c53 "tunnistaa"} ;
+lin tunniste_NK = {s = d48 "tunniste"} ;
+lin tunnistin_NK = {s = d33 "tunnistin"} ;
+lin tunnokas_AK = {s = d41A "tunnokas"} ;
+--+ lin tunnokkaasti_AdvK = {s = c99 "tunnokkaasti"} ;
+lin tunnokkuus_NK = {s = d40 "tunnokkuus"} ;
+lin tunnollinen_AK = {s = d38 "tunnollinen"} ;
+--+ lin tunnollisesti_AdvK = {s = c99 "tunnollisesti"} ;
+lin tunnollisuus_NK = {s = d40 "tunnollisuus"} ;
+lin tunnoton_NK = {s = d34A "tunnoton"} ;
+lin tunnottomasti_AdvK = {s = c99 "tunnottomasti"} ;
+lin tunnottomuus_NK = {s = d40 "tunnottomuus"} ;
+lin tunnus_NK = {s = d39 "tunnus"} ;
+lin tunnustaa_VK = {s = c53 "tunnustaa"} ;
+lin tunnustaja_NK = {s = d10 "tunnustaja"} ;
+lin tunnustamaton_NK = {s = d34A "tunnustamaton"} ;
+lin tunnustautua_VK = {s = c52A "tunnustautua"} ;
+lin tunnuste_NK = {s = d48 "tunnuste"} ;
+lin tunnustelija_NK = {s = d12 "tunnustelija"} ;
+lin tunnustella_VK = {s = c67 "tunnustella"} ;
+lin tunnustelu_NK = {s = d02 "tunnustelu"} ;
+lin tunnustin_NK = {s = d33 "tunnustin"} ;
+lin tunnustuksellinen_AK = {s = d38 "tunnustuksellinen"} ;
+--+ lin tunnustuksellisesti_AdvK = {s = c99 "tunnustuksellisesti"} ;
+lin tunnustuksellisuus_NK = {s = d40 "tunnustuksellisuus"} ;
+lin tunnustukseton_NK = {s = d34A "tunnustukseton"} ;
+lin tunnustus_NK = {s = d39 "tunnustus"} ;
+lin tunnuttaa_VK = {s = c53A "tunnuttaa"} ;
+lin tunnutus_NK = {s = d39 "tunnutus"} ;
+lin tuntea_VK = {s = c59A "tuntea"} ;
+lin tunteellinen_AK = {s = d38 "tunteellinen"} ;
+--+ lin tunteellisesti_AdvK = {s = c99 "tunteellisesti"} ;
+lin tunteellisuus_NK = {s = d40 "tunteellisuus"} ;
+--+ lin tunteenomaisesti_AdvK = {s = c99 "tunteenomaisesti"} ;
+lin tunteeton_NK = {s = d34A "tunteeton"} ;
+lin tunteettomasti_AdvK = {s = c99 "tunteettomasti"} ;
+lin tunteettomuus_NK = {s = d40 "tunteettomuus"} ;
+lin tunteikas_AK = {s = d41A "tunteikas"} ;
+--+ lin tunteikkaasti_AdvK = {s = c99 "tunteikkaasti"} ;
+lin tunteikkuus_NK = {s = d40 "tunteikkuus"} ;
+lin tunteilla_VK = {s = c67 "tunteilla"} ;
+lin tunteilu_NK = {s = d02 "tunteilu"} ;
+lin tunteinen_AK = {s = d38 "tunteinen"} ;
+--+ lin tunteisesti_AdvK = {s = c99 "tunteisesti"} ;
+lin tunteisuus_NK = {s = d40 "tunteisuus"} ;
+lin tuntematon_NK = {s = d34A "tuntematon"} ;
+lin tuntemattomuus_NK = {s = d40 "tuntemattomuus"} ;
+lin tuntemus_NK = {s = d39 "tuntemus"} ;
+lin tunti_NK = {s = d05A "tunti"} ;
+lin tuntija_NK = {s = d12 "tuntija"} ;
+lin tuntinen_NK = {s = d38 "tuntinen"} ;
+lin tunto_NK = {s = d01A "tunto"} ;
+lin tuntoinen_AK = {s = d38 "tuntoinen"} ;
+--+ lin tuntoisesti_AdvK = {s = c99 "tuntoisesti"} ;
+lin tuntoisuus_NK = {s = d40 "tuntoisuus"} ;
+lin tuntokera'nen_NK = {s = d38 "tuntokeränen"} ;
+lin tuntu_NK = {s = d01A "tuntu"} ;
+lin tuntua_VK = {s = c52A "tuntua"} ;
+lin tuntuinen_AK = {s = d38 "tuntuinen"} ;
+--+ lin tuntuisesti_AdvK = {s = c99 "tuntuisesti"} ;
+lin tuntuisuus_NK = {s = d40 "tuntuisuus"} ;
+lin tuntuma_NK = {s = d10 "tuntuma"} ;
+lin tunturi_NK = {s = d06 "tunturi"} ;
+lin tunturinlaki_NK = {s = d07A "tunturinlaki"} ;
+lin tuntuva_AK = {s = d10 "tuntuva"} ;
+--+ lin tuntuvasti_AdvK = {s = c99 "tuntuvasti"} ;
+lin tuntuvuus_NK = {s = d40 "tuntuvuus"} ;
+lin tuoda_VK = {s = c64 "tuoda"} ;
+lin tuohduksiin_AdvK = {s = c99 "tuohduksiin"} ;
+lin tuohduksissa_AdvK = {s = c99 "tuohduksissa"} ;
+lin tuohduksissaan_AdvK = {s = c99 "tuohduksissaan"} ;
+lin tuohduttaa_VK = {s = c53A "tuohduttaa"} ;
+lin tuohestaa_VK = {s = c53 "tuohestaa"} ;
+lin tuohi_NK = {s = d23 "tuohi"} ;
+lin tuohia_VK = {s = c61 "tuohia"} ;
+lin tuohinen_NK = {s = d38 "tuohinen"} ;
+lin tuohon_AdvK = {s = c99 "tuohon"} ;
+lin tuohtua_VK = {s = c52A "tuohtua"} ;
+lin tuohus_NK = {s = d39 "tuohus"} ;
+lin tuoja_NK = {s = d10 "tuoja"} ;
+lin tuokio_NK = {s = d03 "tuokio"} ;
+lin tuokkonen_NK = {s = d38 "tuokkonen"} ;
+lin tuoksahdella_VK = {s = c67A "tuoksahdella"} ;
+lin tuoksahdus_NK = {s = d39 "tuoksahdus"} ;
+lin tuoksahtaa_VK = {s = c53A "tuoksahtaa"} ;
+lin tuoksahtelu_NK = {s = d02 "tuoksahtelu"} ;
+lin tuoksina_NK = {s = d13 "tuoksina"} ;
+lin tuoksu_NK = {s = d01 "tuoksu"} ;
+lin tuoksua_VK = {s = c52 "tuoksua"} ;
+lin tuoksuinen_NK = {s = d38 "tuoksuinen"} ;
+lin tuoksusimake_NK = {s = d48A "tuoksusimake"} ;
+lin tuoksuta_VK = {s = c74 "tuoksuta"} ;
+lin tuoksuton_NK = {s = d34A "tuoksuton"} ;
+lin tuoksuttaa_VK = {s = c53A "tuoksuttaa"} ;
+lin tuoli_NK = {s = d05 "tuoli"} ;
+lin tuolla_AdvK = {s = c99 "tuolla"} ;
+lin tuollaan_AdvK = {s = c99 "tuollaan"} ;
+lin tuollainen_NK = {s = d38 "tuollainen"} ;
+lin tuolleen_AdvK = {s = c99 "tuolleen"} ;
+lin tuolloin_AdvK = {s = c99 "tuolloin"} ;
+lin tuolloinen_NK = {s = d38 "tuolloinen"} ;
+lin tuolta_AdvK = {s = c99 "tuolta"} ;
+lin tuoltaan_AdvK = {s = c99 "tuoltaan"} ;
+lin tuomaristo_NK = {s = d01 "tuomaristo"} ;
+lin tuomas_NK = {s = d41 "tuomas"} ;
+lin tuomenkehra'a'ja'koi_NK = {s = d18 "tuomenkehrääjäkoi"} ;
+lin tuomi_NK = {s = d25 "tuomi"} ;
+lin tuominen_NK = {s = d38 "tuominen"} ;
+lin tuomio_NK = {s = d03 "tuomio"} ;
+lin tuomita_VK = {s = c69 "tuomita"} ;
+lin tuomitsija_NK = {s = d12 "tuomitsija"} ;
+lin tuommoinen_NK = {s = d38 "tuommoinen"} ;
+lin tuonela_NK = {s = d12 "tuonela"} ;
+lin tuoni_NK = {s = d26 "tuoni"} ;
+lin tuonne_AdvK = {s = c99 "tuonne"} ;
+lin tuonnemma_AdvK = {s = c99 "tuonnemma"} ;
+lin tuonnemmaksi_AdvK = {s = c99 "tuonnemmaksi"} ;
+lin tuonnemmas_AdvK = {s = c99 "tuonnemmas"} ;
+lin tuonnempaa_AdvK = {s = c99 "tuonnempaa"} ;
+lin tuonnempana_AdvK = {s = c99 "tuonnempana"} ;
+lin tuonnimmainen_NK = {s = d38 "tuonnimmainen"} ;
+lin tuonnimmaksi_AdvK = {s = c99 "tuonnimmaksi"} ;
+lin tuonnimmas_AdvK = {s = c99 "tuonnimmas"} ;
+lin tuonnimpaa_AdvK = {s = c99 "tuonnimpaa"} ;
+lin tuonnimpana_AdvK = {s = c99 "tuonnimpana"} ;
+lin tuonnoin_AdvK = {s = c99 "tuonnoin"} ;
+lin tuonnoinen_NK = {s = d38 "tuonnoinen"} ;
+lin tuonti_NK = {s = d05A "tuonti"} ;
+lin tuopeittain_AdvK = {s = c99 "tuopeittain"} ;
+lin tuopillinen_NK = {s = d38 "tuopillinen"} ;
+lin tuoppi_NK = {s = d05A "tuoppi"} ;
+lin tuore_AK = {s = d48 "tuore"} ;
+lin tuoreeltaan_AdvK = {s = c99 "tuoreeltaan"} ;
+--+ lin tuoreesti_AdvK = {s = c99 "tuoreesti"} ;
+lin tuoreus_NK = {s = d40 "tuoreus"} ;
+lin tuoreuttaa_VK = {s = c53A "tuoreuttaa"} ;
+lin tuoreutua_VK = {s = c52A "tuoreutua"} ;
+lin tuossa_AdvK = {s = c99 "tuossa"} ;
+lin tuosta_AdvK = {s = c99 "tuosta"} ;
+lin tuotannollinen_NK = {s = d38 "tuotannollinen"} ;
+lin tuotanto_NK = {s = d01A "tuotanto"} ;
+lin tuotantoinen_NK = {s = d38 "tuotantoinen"} ;
+lin tuote_NK = {s = d48A "tuote"} ;
+lin tuotos_NK = {s = d39 "tuotos"} ;
+lin tuottaa_VK = {s = c53A "tuottaa"} ;
+lin tuottaja_NK = {s = d10 "tuottaja"} ;
+lin tuottamaton_NK = {s = d34A "tuottamaton"} ;
+lin tuottamattomasti_AdvK = {s = c99 "tuottamattomasti"} ;
+lin tuottamattomuus_NK = {s = d40 "tuottamattomuus"} ;
+lin tuottamuksellinen_AK = {s = d38 "tuottamuksellinen"} ;
+--+ lin tuottamuksellisesti_AdvK = {s = c99 "tuottamuksellisesti"} ;
+lin tuottamuksellisuus_NK = {s = d40 "tuottamuksellisuus"} ;
+lin tuottamus_NK = {s = d39 "tuottamus"} ;
+lin tuottava_AK = {s = d10 "tuottava"} ;
+--+ lin tuottavasti_AdvK = {s = c99 "tuottavasti"} ;
+lin tuottavuus_NK = {s = d40 "tuottavuus"} ;
+lin tuotteistaa_VK = {s = c53 "tuotteistaa"} ;
+lin tuotteistua_VK = {s = c52 "tuotteistua"} ;
+lin tuotteistus_NK = {s = d39 "tuotteistus"} ;
+--+ lin tuotteliaasti_AdvK = {s = c99 "tuotteliaasti"} ;
+lin tuotteliaisuus_NK = {s = d40 "tuotteliaisuus"} ;
+lin tuottelias_AK = {s = d41 "tuottelias"} ;
+lin tuotto_NK = {s = d01A "tuotto"} ;
+lin tuottoinen_NK = {s = d38 "tuottoinen"} ;
+lin tuottoisa_AK = {s = d10 "tuottoisa"} ;
+--+ lin tuottoisasti_AdvK = {s = c99 "tuottoisasti"} ;
+lin tuottoisuus_NK = {s = d40 "tuottoisuus"} ;
+lin tupa_NK = {s = d10A "tupa"} ;
+lin tupakaton_NK = {s = d34A "tupakaton"} ;
+lin tupakka_NK = {s = d14A "tupakka"} ;
+lin tupakki_NK = {s = d05A "tupakki"} ;
+lin tupakoida_VK = {s = c68 "tupakoida"} ;
+lin tupakoija_NK = {s = d10 "tupakoija"} ;
+lin tupakoimaton_NK = {s = d34A "tupakoimaton"} ;
+lin tupakoimattomuus_NK = {s = d40 "tupakoimattomuus"} ;
+lin tupakointi_NK = {s = d05A "tupakointi"} ;
+lin tupakoitsija_NK = {s = d12 "tupakoitsija"} ;
+lin tupas_NK = {s = d41A "tupas"} ;
+lin tupastaa_VK = {s = c53 "tupastaa"} ;
+lin tupata_VK = {s = c73A "tupata"} ;
+lin tupee_NK = {s = d20 "tupee"} ;
+lin tupeerata_VK = {s = c73 "tupeerata"} ;
+lin tupeeraus_NK = {s = d39 "tupeeraus"} ;
+lin tupeksia_VK = {s = c61 "tupeksia"} ;
+lin tupellinen_NK = {s = d38 "tupellinen"} ;
+lin tupla_AK = {s = d10 "tupla"} ;
+--+ lin tuplasti_AdvK = {s = c99 "tuplasti"} ;
+lin tuplata_VK = {s = c73 "tuplata"} ;
+lin tupo_NK = {s = d01 "tupo"} ;
+lin tuppaantua_VK = {s = c52A "tuppaantua"} ;
+lin tuppautua_VK = {s = c52A "tuppautua"} ;
+lin tuppeuma_NK = {s = d10 "tuppeuma"} ;
+lin tuppeutua_VK = {s = c52A "tuppeutua"} ;
+lin tuppi_NK = {s = d07A "tuppi"} ;
+lin tuppilo_NK = {s = d02 "tuppilo"} ;
+lin tuppo_NK = {s = d01A "tuppo"} ;
+lin tuprahdella_VK = {s = c67A "tuprahdella"} ;
+lin tuprahdus_NK = {s = d39 "tuprahdus"} ;
+lin tuprahtaa_VK = {s = c53A "tuprahtaa"} ;
+lin tupraus_NK = {s = d39 "tupraus"} ;
+lin tuprauttaa_VK = {s = c53A "tuprauttaa"} ;
+lin tupruta_VK = {s = c74 "tupruta"} ;
+lin tuprutella_VK = {s = c67A "tuprutella"} ;
+lin tupruttaa_VK = {s = c53A "tupruttaa"} ;
+lin tupruttelu_NK = {s = d02 "tupruttelu"} ;
+lin tuprutus_NK = {s = d39 "tuprutus"} ;
+lin tupsahdus_NK = {s = d39 "tupsahdus"} ;
+lin tupsahtaa_VK = {s = c53A "tupsahtaa"} ;
+lin tupsu_NK = {s = d01 "tupsu"} ;
+lin tupsullinen_NK = {s = d38 "tupsullinen"} ;
+lin tupsuttaa_1_VK = {s = c53A "tupsuttaa"} ;
+lin tupsuttaa_2_VK = {s = c53A "tupsuttaa"} ;
+lin tupsutus_NK = {s = d39 "tupsutus"} ;
+lin tuputtaa_VK = {s = c53A "tuputtaa"} ;
+lin tuputus_NK = {s = d39 "tuputus"} ;
+lin turbaani_NK = {s = d06 "turbaani"} ;
+lin turbiini_NK = {s = d06 "turbiini"} ;
+lin turbo_NK = {s = d01 "turbo"} ;
+lin turboahdettu_NK = {s = d01A "turboahdettu"} ;
+lin turboahtimellinen_NK = {s = d38 "turboahtimellinen"} ;
+lin turbulenssi_NK = {s = d05 "turbulenssi"} ;
+lin turbulentti_NK = {s = d05A "turbulentti"} ;
+lin turbulenttinen_NK = {s = d38 "turbulenttinen"} ;
+lin turha_NK = {s = d10 "turha"} ;
+lin turhaan_AdvK = {s = c99 "turhaan"} ;
+lin turhaantua_VK = {s = c52A "turhaantua"} ;
+--+ lin turhamaisesti_AdvK = {s = c99 "turhamaisesti"} ;
+lin turhamaisuus_NK = {s = d40 "turhamaisuus"} ;
+lin turhauma_NK = {s = d10 "turhauma"} ;
+lin turhauttaa_VK = {s = c53A "turhauttaa"} ;
+lin turhautua_VK = {s = c52A "turhautua"} ;
+lin turhautuma_NK = {s = d10 "turhautuma"} ;
+lin turhennus_NK = {s = d39 "turhennus"} ;
+lin turhentaa_VK = {s = c54A "turhentaa"} ;
+lin turhuus_NK = {s = d40 "turhuus"} ;
+lin turilas_NK = {s = d41 "turilas"} ;
+lin turina_NK = {s = d12 "turina"} ;
+lin turinoida_VK = {s = c62 "turinoida"} ;
+lin turinointi_NK = {s = d05A "turinointi"} ;
+lin turismi_NK = {s = d05 "turismi"} ;
+lin turista_VK = {s = c66 "turista"} ;
+lin turistaa_VK = {s = c53 "turistaa"} ;
+lin turisti_NK = {s = d05 "turisti"} ;
+lin turistus_NK = {s = d39 "turistus"} ;
+lin turjake_NK = {s = d48A "turjake"} ;
+lin turkanen_AK = {s = d38 "turkanen"} ;
+lin turkasenmoinen_NK = {s = d38 "turkasenmoinen"} ;
+--+ lin turkasesti_AdvK = {s = c99 "turkasesti"} ;
+lin turkis_NK = {s = d39 "turkis"} ;
+lin turkistaa_VK = {s = c53 "turkistaa"} ;
+lin turkki_1_NK = {s = d05A "turkki"} ;
+lin turkki_2_NK = {s = d05A "turkki"} ;
+lin turkki_3_NK = {s = d05A "turkki"} ;
+lin turkkilo_NK = {s = d02 "turkkilo"} ;
+lin turkkinen_NK = {s = d38 "turkkinen"} ;
+lin turkkuri_NK = {s = d06 "turkkuri"} ;
+lin turkmeeni_NK = {s = d06 "turkmeeni"} ;
+lin turkologi_NK = {s = d05 "turkologi"} ;
+lin turkologia_NK = {s = d12 "turkologia"} ;
+lin turkoosi_NK = {s = d06 "turkoosi"} ;
+lin turku_NK = {s = d01A "turku"} ;
+lin turma_NK = {s = d10 "turma"} ;
+lin turmaliini_NK = {s = d05 "turmaliini"} ;
+lin turmelematon_NK = {s = d34A "turmelematon"} ;
+lin turmella_VK = {s = c67 "turmella"} ;
+lin turmeltua_VK = {s = c52A "turmeltua"} ;
+lin turmeltumaton_NK = {s = d34A "turmeltumaton"} ;
+lin turmeltumattomuus_NK = {s = d40 "turmeltumattomuus"} ;
+lin turmelu_NK = {s = d02 "turmelu"} ;
+lin turmelus_NK = {s = d39 "turmelus"} ;
+lin turmio_NK = {s = d03 "turmio"} ;
+lin turmiollinen_AK = {s = d38 "turmiollinen"} ;
+--+ lin turmiollisesti_AdvK = {s = c99 "turmiollisesti"} ;
+lin turmiollisuus_NK = {s = d40 "turmiollisuus"} ;
+--? lin turnajaiset_NK = {s = d38 "turnajaiset"} ;
+lin turnaus_NK = {s = d39 "turnaus"} ;
+lin turnee_NK = {s = d20 "turnee"} ;
+lin turnipsi_NK = {s = d05 "turnipsi"} ;
+lin turnyyri_NK = {s = d06 "turnyyri"} ;
+lin turo_NK = {s = d01 "turo"} ;
+lin turpa_1_NK = {s = d10A "turpa"} ;
+lin turpa_2_NK = {s = d10A "turpa"} ;
+lin turpainen_NK = {s = d38 "turpainen"} ;
+lin turpea_NK = {s = d15 "turpea"} ;
+lin turpiini_NK = {s = d06 "turpiini"} ;
+lin turpoama_NK = {s = d10 "turpoama"} ;
+lin turri_NK = {s = d05 "turri"} ;
+lin turruksiin_AdvK = {s = c99 "turruksiin"} ;
+lin turruksissa_AdvK = {s = c99 "turruksissa"} ;
+lin turruttaa_VK = {s = c53A "turruttaa"} ;
+lin turrutus_NK = {s = d39 "turrutus"} ;
+lin tursas_NK = {s = d41 "tursas"} ;
+lin turska_NK = {s = d10 "turska"} ;
+lin turskahtaa_VK = {s = c53A "turskahtaa"} ;
+lin turski_NK = {s = d05 "turski"} ;
+lin turskua_VK = {s = c52 "turskua"} ;
+lin turso_NK = {s = d01 "turso"} ;
+lin tursua_VK = {s = c52 "tursua"} ;
+lin tursuta_VK = {s = c74 "tursuta"} ;
+lin turta_NK = {s = d10A "turta"} ;
+lin turtua_VK = {s = c52A "turtua"} ;
+lin turtumus_NK = {s = d39 "turtumus"} ;
+lin turva_NK = {s = d10 "turva"} ;
+lin turvaaja_NK = {s = d10 "turvaaja"} ;
+lin turvaamaton_NK = {s = d34A "turvaamaton"} ;
+lin turvaisa_NK = {s = d10 "turvaisa"} ;
+lin turvallinen_AK = {s = d38 "turvallinen"} ;
+--+ lin turvallisesti_AdvK = {s = c99 "turvallisesti"} ;
+lin turvallistaa_VK = {s = c53 "turvallistaa"} ;
+lin turvallisuus_NK = {s = d40 "turvallisuus"} ;
+lin turvata_VK = {s = c73 "turvata"} ;
+lin turvaton_NK = {s = d34A "turvaton"} ;
+lin turvatti_NK = {s = d05A "turvatti"} ;
+lin turvattomuus_NK = {s = d40 "turvattomuus"} ;
+lin turvautua_VK = {s = c52A "turvautua"} ;
+lin turve_NK = {s = d48A "turve"} ;
+lin turvettua_VK = {s = c52A "turvettua"} ;
+lin turvin_AdvK = {s = c99 "turvin"} ;
+lin turvoksiin_AdvK = {s = c99 "turvoksiin"} ;
+lin turvoksissa_AdvK = {s = c99 "turvoksissa"} ;
+lin turvota_VK = {s = c74A "turvota"} ;
+lin turvottaa_VK = {s = c53A "turvottaa"} ;
+lin turvottua_VK = {s = c52A "turvottua"} ;
+lin turvotus_NK = {s = d39 "turvotus"} ;
+lin tusina_NK = {s = d12 "tusina"} ;
+lin tusinoittain_AdvK = {s = c99 "tusinoittain"} ;
+lin tuska_NK = {s = d10 "tuska"} ;
+lin tuskaannuttaa_VK = {s = c53A "tuskaannuttaa"} ;
+lin tuskaantua_VK = {s = c52A "tuskaantua"} ;
+lin tuskailla_VK = {s = c67 "tuskailla"} ;
+lin tuskailu_NK = {s = d02 "tuskailu"} ;
+lin tuskainen_AK = {s = d38 "tuskainen"} ;
+lin tuskaisa_AK = {s = d10 "tuskaisa"} ;
+--+ lin tuskaisasti_AdvK = {s = c99 "tuskaisasti"} ;
+--+ lin tuskaisesti_AdvK = {s = c99 "tuskaisesti"} ;
+lin tuskaisuus_NK = {s = d40 "tuskaisuus"} ;
+lin tuskallinen_AK = {s = d38 "tuskallinen"} ;
+--+ lin tuskallisesti_AdvK = {s = c99 "tuskallisesti"} ;
+lin tuskallisuus_NK = {s = d40 "tuskallisuus"} ;
+lin tuskastua_VK = {s = c52 "tuskastua"} ;
+lin tuskastuttaa_VK = {s = c53A "tuskastuttaa"} ;
+lin tuskaton_NK = {s = d34A "tuskaton"} ;
+lin tuskattomasti_AdvK = {s = c99 "tuskattomasti"} ;
+lin tuskattomuus_NK = {s = d40 "tuskattomuus"} ;
+lin tuskautua_VK = {s = c52A "tuskautua"} ;
+lin tuskin_AdvK = {s = c99 "tuskin"} ;
+lin tuskitella_VK = {s = c67A "tuskitella"} ;
+lin tussahdus_NK = {s = d39 "tussahdus"} ;
+lin tussahtaa_VK = {s = c53A "tussahtaa"} ;
+lin tussari_NK = {s = d06 "tussari"} ;
+lin tussata_VK = {s = c73 "tussata"} ;
+lin tussaus_NK = {s = d39 "tussaus"} ;
+lin tussi_NK = {s = d05 "tussi"} ;
+lin tussu_NK = {s = d01 "tussu"} ;
+lin tussukka_NK = {s = d14A "tussukka"} ;
+lin tuta_AdvK = {s = c99 "tuta"} ;
+lin tutia_VK = {s = c61 "tutia"} ;
+lin tutina_NK = {s = d12 "tutina"} ;
+lin tutista_VK = {s = c66 "tutista"} ;
+lin tutisuttaa_VK = {s = c53A "tutisuttaa"} ;
+lin tutka_NK = {s = d10 "tutka"} ;
+lin tutkailija_NK = {s = d12 "tutkailija"} ;
+lin tutkailla_VK = {s = c67 "tutkailla"} ;
+lin tutkain_NK = {s = d33 "tutkain"} ;
+lin tutkata_VK = {s = c73 "tutkata"} ;
+lin tutkaus_NK = {s = d39 "tutkaus"} ;
+lin tutkia_VK = {s = c61 "tutkia"} ;
+lin tutkielma_NK = {s = d10 "tutkielma"} ;
+lin tutkija_NK = {s = d12 "tutkija"} ;
+lin tutkimaton_NK = {s = d34A "tutkimaton"} ;
+lin tutkimattomuus_NK = {s = d40 "tutkimattomuus"} ;
+lin tutkimus_NK = {s = d39 "tutkimus"} ;
+lin tutkinnallinen_NK = {s = d38 "tutkinnallinen"} ;
+lin tutkinta_NK = {s = d09A "tutkinta"} ;
+lin tutkinto_NK = {s = d01A "tutkinto"} ;
+lin tutkiskella_VK = {s = c67 "tutkiskella"} ;
+lin tutkiskelu_NK = {s = d02 "tutkiskelu"} ;
+lin tutkistella_VK = {s = c67 "tutkistella"} ;
+lin tutkistelu_NK = {s = d02 "tutkistelu"} ;
+lin tutkittaa_VK = {s = c53A "tutkittaa"} ;
+lin tutkituttaa_VK = {s = c53A "tutkituttaa"} ;
+lin tutkiva_AK = {s = d10 "tutkiva"} ;
+--+ lin tutkivasti_AdvK = {s = c99 "tutkivasti"} ;
+lin tutor_NK = {s = d06 "tutor"} ;
+lin tutsi_NK = {s = d05 "tutsi"} ;
+lin tuttava_NK = {s = d10 "tuttava"} ;
+lin tuttavallinen_AK = {s = d38 "tuttavallinen"} ;
+--+ lin tuttavallisesti_AdvK = {s = c99 "tuttavallisesti"} ;
+lin tuttavallisuus_NK = {s = d40 "tuttavallisuus"} ;
+--? lin tuttavukset_NK = {s = d39 "tuttavukset"} ;
+lin tuttavuus_NK = {s = d40 "tuttavuus"} ;
+lin tutti_1_NK = {s = d05A "tutti"} ;
+lin tutti_2_NK = {s = d05A "tutti"} ;
+lin tuttu_NK = {s = d01A "tuttu"} ;
+lin tuttuus_NK = {s = d40 "tuttuus"} ;
+lin tutua_VK = {s = c52 "tutua"} ;
+--+ lin tutunomaisesti_AdvK = {s = c99 "tutunomaisesti"} ;
+lin tutustaa_VK = {s = c53 "tutustaa"} ;
+lin tutustella_VK = {s = c67 "tutustella"} ;
+lin tutusti_AdvK = {s = c99 "tutusti"} ;
+lin tutustua_VK = {s = c52 "tutustua"} ;
+lin tutustuttaa_VK = {s = c53A "tutustuttaa"} ;
+lin tuuba_NK = {s = d10 "tuuba"} ;
+lin tuubi_NK = {s = d05 "tuubi"} ;
+lin tuuditella_VK = {s = c67A "tuuditella"} ;
+lin tuudittaa_VK = {s = c53A "tuudittaa"} ;
+lin tuudittautua_VK = {s = c52A "tuudittautua"} ;
+lin tuuhea_NK = {s = d15 "tuuhea"} ;
+lin tuuhennus_NK = {s = d39 "tuuhennus"} ;
+lin tuuhentaa_VK = {s = c54A "tuuhentaa"} ;
+lin tuuhentua_VK = {s = c52A "tuuhentua"} ;
+lin tuuheta_VK = {s = c72 "tuuheta"} ;
+lin tuuhettua_VK = {s = c52A "tuuhettua"} ;
+lin tuuheutua_VK = {s = c52A "tuuheutua"} ;
+lin tuuhistua_VK = {s = c52 "tuuhistua"} ;
+lin tuulahdella_VK = {s = c67A "tuulahdella"} ;
+lin tuulahdus_NK = {s = d39 "tuulahdus"} ;
+lin tuulahtaa_VK = {s = c53A "tuulahtaa"} ;
+lin tuulas_NK = {s = d41 "tuulas"} ;
+lin tuulastaa_VK = {s = c53 "tuulastaa"} ;
+lin tuuleentua_VK = {s = c52A "tuuleentua"} ;
+lin tuulenhaistelija_NK = {s = d12 "tuulenhaistelija"} ;
+lin tuulenhalkoja_NK = {s = d10 "tuulenhalkoja"} ;
+lin tuulennaukuja_NK = {s = d10 "tuulennaukuja"} ;
+--+ lin tuulenpita'va'sti_AdvK = {s = c99 "tuulenpitävästi"} ;
+lin tuulensuoja_NK = {s = d10 "tuulensuoja"} ;
+lin tuuletella_VK = {s = c67A "tuuletella"} ;
+lin tuuletin_NK = {s = d33A "tuuletin"} ;
+lin tuuleton_NK = {s = d34A "tuuleton"} ;
+lin tuulettaa_VK = {s = c53A "tuulettaa"} ;
+lin tuulettaja_NK = {s = d10 "tuulettaja"} ;
+lin tuulettua_VK = {s = c52A "tuulettua"} ;
+lin tuuletus_NK = {s = d39 "tuuletus"} ;
+lin tuuli_NK = {s = d26 "tuuli"} ;
+lin tuuliajolla_AdvK = {s = c99 "tuuliajolla"} ;
+lin tuuliajolle_AdvK = {s = c99 "tuuliajolle"} ;
+lin tuulinen_NK = {s = d38 "tuulinen"} ;
+lin tuulisuus_NK = {s = d40 "tuulisuus"} ;
+lin tuulla_VK = {s = c67 "tuulla"} ;
+lin tuulonen_NK = {s = d38 "tuulonen"} ;
+lin tuultaa_VK = {s = c54A "tuultaa"} ;
+lin tuultua_VK = {s = c52A "tuultua"} ;
+lin tuuma_1_NK = {s = d10 "tuuma"} ;
+lin tuuma_2_NK = {s = d10 "tuuma"} ;
+lin tuumailla_VK = {s = c67 "tuumailla"} ;
+lin tuumailu_NK = {s = d02 "tuumailu"} ;
+lin tuumainen_1_NK = {s = d38 "tuumainen"} ;
+lin tuumainen_2_NK = {s = d38 "tuumainen"} ;
+lin tuumakoko_NK = {s = d01A "tuumakoko"} ;
+lin tuumata_VK = {s = c73 "tuumata"} ;
+lin tuumaus_NK = {s = d39 "tuumaus"} ;
+lin tuumia_VK = {s = c61 "tuumia"} ;
+lin tuumiskella_VK = {s = c67 "tuumiskella"} ;
+lin tuumori_NK = {s = d06 "tuumori"} ;
+lin tuupata_VK = {s = c73A "tuupata"} ;
+lin tuuperruksiin_AdvK = {s = c99 "tuuperruksiin"} ;
+lin tuuperruksissa_AdvK = {s = c99 "tuuperruksissa"} ;
+lin tuuperruksista_AdvK = {s = c99 "tuuperruksista"} ;
+lin tuuperruttaa_VK = {s = c53A "tuuperruttaa"} ;
+lin tuupertua_VK = {s = c52A "tuupertua"} ;
+lin tuuppia_VK = {s = c61A "tuuppia"} ;
+lin tuura_NK = {s = d10 "tuura"} ;
+lin tuuraaja_NK = {s = d10 "tuuraaja"} ;
+lin tuurata_1_VK = {s = c73 "tuurata"} ;
+lin tuurata_2_VK = {s = c73 "tuurata"} ;
+lin tuuri_NK = {s = d05 "tuuri"} ;
+lin tuurna_NK = {s = d10 "tuurna"} ;
+lin tuusan_AdvK = {s = c99 "tuusan"} ;
+lin tuut_AdvK = {s = c99 "tuut"} ;
+lin tuutata_VK = {s = c73A "tuutata"} ;
+lin tuutia_VK = {s = c61A "tuutia"} ;
+lin tuutti_NK = {s = d05A "tuutti"} ;
+lin tuutua_VK = {s = c52 "tuutua"} ;
+lin tuututtaa_VK = {s = c53A "tuututtaa"} ;
+lin tv_AdvK = {s = c99 "tv"} ;
+lin tweed_NK = {s = d05 "tweed"} ;
+lin tvilli_NK = {s = d05 "tvilli"} ;
+lin twist_NK = {s = d05 "twist"} ;
+lin twistata_VK = {s = c73 "twistata"} ;
+lin tyhjennella'_VK = {s = c67A "tyhjennellä"} ;
+lin tyhjennys_NK = {s = d39 "tyhjennys"} ;
+lin tyhjennytta'a'_VK = {s = c53A "tyhjennyttää"} ;
+lin tyhjentyma'to'n_NK = {s = d34A "tyhjentymätön"} ;
+lin tyhjentya'_VK = {s = c52A "tyhjentyä"} ;
+lin tyhjenta'vyys_NK = {s = d40 "tyhjentävyys"} ;
+lin tyhjenta'va'_AK = {s = d10 "tyhjentävä"} ;
+--+ lin tyhjenta'va'sti_AdvK = {s = c99 "tyhjentävästi"} ;
+lin tyhjenta'a'_VK = {s = c54A "tyhjentää"} ;
+lin tyhjeta'_VK = {s = c72 "tyhjetä"} ;
+lin tyhjiin_AdvK = {s = c99 "tyhjiin"} ;
+lin tyhjilleen_AdvK = {s = c99 "tyhjilleen"} ;
+lin tyhjilla'a'n_AdvK = {s = c99 "tyhjillään"} ;
+lin tyhjilta'a'n_AdvK = {s = c99 "tyhjiltään"} ;
+lin tyhjio'_NK = {s = d03 "tyhjiö"} ;
+lin tyhjyys_NK = {s = d40 "tyhjyys"} ;
+lin tyhja'_NK = {s = d10 "tyhjä"} ;
+--+ lin tyhja'npa'iva'isesti_AdvK = {s = c99 "tyhjänpäiväisesti"} ;
+lin tyhja'npa'iva'isyys_NK = {s = d40 "tyhjänpäiväisyys"} ;
+lin tyhja'taskuinen_NK = {s = d38 "tyhjätaskuinen"} ;
+lin tyhja'ta'_VK = {s = c73 "tyhjätä"} ;
+lin tyhjo'_NK = {s = d01 "tyhjö"} ;
+lin tyhmeliini_NK = {s = d05 "tyhmeliini"} ;
+lin tyhmentya'_VK = {s = c52A "tyhmentyä"} ;
+lin tyhmenta'a'_VK = {s = c54A "tyhmentää"} ;
+lin tyhmeta'_VK = {s = c72 "tyhmetä"} ;
+lin tyhmistella'_VK = {s = c67 "tyhmistellä"} ;
+lin tyhmistely_NK = {s = d02 "tyhmistely"} ;
+lin tyhmistya'_VK = {s = c52 "tyhmistyä"} ;
+lin tyhmista'a'_VK = {s = c53 "tyhmistää"} ;
+lin tyhmyri_NK = {s = d06 "tyhmyri"} ;
+lin tyhmyys_NK = {s = d40 "tyhmyys"} ;
+lin tyhma'_AK = {s = d10 "tyhmä"} ;
+--+ lin tyhma'sti_AdvK = {s = c99 "tyhmästi"} ;
+lin tykisto'_NK = {s = d02 "tykistö"} ;
+lin tykitta'ja'_NK = {s = d10 "tykittäjä"} ;
+lin tykitta'a'_VK = {s = c53A "tykittää"} ;
+lin tykitys_NK = {s = d39 "tykitys"} ;
+lin tykki_1_NK = {s = d05A "tykki"} ;
+lin tykki_2_NK = {s = d05A "tykki"} ;
+lin tykky_NK = {s = d01A "tykky"} ;
+lin tykka'na'a'n_AdvK = {s = c99 "tykkänään"} ;
+lin tykka'a'ntya'_VK = {s = c52A "tykkääntyä"} ;
+lin tykytta'a'_VK = {s = c53A "tykyttää"} ;
+lin tykytys_NK = {s = d39 "tykytys"} ;
+lin tyka'stya'_VK = {s = c52 "tykästyä"} ;
+lin tyka'ta'_VK = {s = c73A "tykätä"} ;
+lin tyko'_AdvK = {s = c99 "tykö"} ;
+lin tyko'istuva_NK = {s = d10 "tyköistuva"} ;
+lin tyko'na'_AdvK = {s = c99 "tykönä"} ;
+lin tyko'a'_AdvK = {s = c99 "tyköä"} ;
+lin tyllero'_NK = {s = d02 "tyllerö"} ;
+lin tylli_1_NK = {s = d05 "tylli"} ;
+lin tylli_2_NK = {s = d05 "tylli"} ;
+lin tylpentya'_VK = {s = c52A "tylpentyä"} ;
+lin tylpenta'a'_VK = {s = c54A "tylpentää"} ;
+lin tylpeta'_VK = {s = c72A "tylpetä"} ;
+lin tylpistys_NK = {s = d39 "tylpistys"} ;
+lin tylpistya'_VK = {s = c52 "tylpistyä"} ;
+lin tylpista'a'_VK = {s = c53 "tylpistää"} ;
+lin tylppyys_NK = {s = d40 "tylppyys"} ;
+lin tylppa'_NK = {s = d10A "tylppä"} ;
+lin tylpa'sti_AdvK = {s = c99 "tylpästi"} ;
+lin tylsentya'_VK = {s = c52A "tylsentyä"} ;
+lin tylsenta'a'_VK = {s = c54A "tylsentää"} ;
+lin tylseta'_VK = {s = c72 "tylsetä"} ;
+lin tylsimys_NK = {s = d39 "tylsimys"} ;
+lin tylsistytta'a'_VK = {s = c53A "tylsistyttää"} ;
+lin tylsistya'_VK = {s = c52 "tylsistyä"} ;
+lin tylsista'a'_VK = {s = c53 "tylsistää"} ;
+lin tylstytta'a'_VK = {s = c53A "tylstyttää"} ;
+lin tylstya'_VK = {s = c52 "tylstyä"} ;
+lin tylsytta'a'_VK = {s = c53A "tylsyttää"} ;
+lin tylsyys_NK = {s = d40 "tylsyys"} ;
+lin tylsya'_VK = {s = c52 "tylsyä"} ;
+lin tylsa'_NK = {s = d10 "tylsä"} ;
+lin tyly_AK = {s = d01 "tyly"} ;
+--+ lin tylysti_AdvK = {s = c99 "tylysti"} ;
+lin tylyys_NK = {s = d40 "tylyys"} ;
+lin tympeys_NK = {s = d40 "tympeys"} ;
+lin tympeytta'a'_VK = {s = c53A "tympeyttää"} ;
+lin tympeytya'_VK = {s = c52A "tympeytyä"} ;
+lin tympea'_AK = {s = d15 "tympeä"} ;
+--+ lin tympea'sti_AdvK = {s = c99 "tympeästi"} ;
+lin tympia'_VK = {s = c61A "tympiä"} ;
+lin tympa'ista'_VK = {s = c66 "tympäistä"} ;
+lin tympa'a'nnytta'a'_VK = {s = c53A "tympäännyttää"} ;
+lin tympa'a'ntya'_VK = {s = c52A "tympääntyä"} ;
+lin tympo'nen_NK = {s = d38 "tympönen"} ;
+lin tynka'_NK = {s = d10A "tynkä"} ;
+lin tynnyreitta'in_AdvK = {s = c99 "tynnyreittäin"} ;
+lin tynnyri_NK = {s = d06 "tynnyri"} ;
+lin tynnyrillinen_NK = {s = d38 "tynnyrillinen"} ;
+lin typeka's_NK = {s = d41A "typekäs"} ;
+lin typerryksiin_AdvK = {s = c99 "typerryksiin"} ;
+lin typerryksissa'_AdvK = {s = c99 "typerryksissä"} ;
+lin typerryksista'_AdvK = {s = c99 "typerryksistä"} ;
+lin typerrys_NK = {s = d39 "typerrys"} ;
+lin typerrytta'a'_VK = {s = c53A "typerryttää"} ;
+lin typertya'_VK = {s = c52A "typertyä"} ;
+lin typerys_NK = {s = d39 "typerys"} ;
+lin typeryys_NK = {s = d40 "typeryys"} ;
+lin typera'_AK = {s = d10 "typerä"} ;
+--+ lin typera'sti_AdvK = {s = c99 "typerästi"} ;
+lin typetta'a'_VK = {s = c53A "typettää"} ;
+lin typetys_NK = {s = d39 "typetys"} ;
+lin typistya'_VK = {s = c52 "typistyä"} ;
+lin typista'a'_VK = {s = c53 "typistää"} ;
+lin typografi_NK = {s = d05 "typografi"} ;
+lin typografia_NK = {s = d12 "typografia"} ;
+lin typografinen_NK = {s = d38 "typografinen"} ;
+lin typologia_NK = {s = d12 "typologia"} ;
+lin typologinen_NK = {s = d38 "typologinen"} ;
+lin typpi_NK = {s = d07A "typpi"} ;
+lin typpioksiduuli_NK = {s = d05 "typpioksiduuli"} ;
+lin typykka'_NK = {s = d14A "typykkä"} ;
+lin typa's_NK = {s = d41A "typäs"} ;
+lin typo'_AdvK = {s = c99 "typö"} ;
+lin tyranni_NK = {s = d05 "tyranni"} ;
+lin tyrannia_NK = {s = d12 "tyrannia"} ;
+--+ lin tyrannimaisesti_AdvK = {s = c99 "tyrannimaisesti"} ;
+lin tyrannimaisuus_NK = {s = d40 "tyrannimaisuus"} ;
+lin tyrannisoida_VK = {s = c62 "tyrannisoida"} ;
+lin tyrannius_NK = {s = d40 "tyrannius"} ;
+lin tyrannoida_VK = {s = c62 "tyrannoida"} ;
+lin tyrannosaurus_NK = {s = d39 "tyrannosaurus"} ;
+lin tyrehdyksiin_AdvK = {s = c99 "tyrehdyksiin"} ;
+lin tyrehdyksissa'_AdvK = {s = c99 "tyrehdyksissä"} ;
+lin tyrehdytta'a'_VK = {s = c53A "tyrehdyttää"} ;
+lin tyrehtya'_VK = {s = c52A "tyrehtyä"} ;
+lin tyristori_NK = {s = d06 "tyristori"} ;
+lin tyria'_VK = {s = c61 "tyriä"} ;
+lin tyrkkia'_VK = {s = c61A "tyrkkiä"} ;
+lin tyrkylle_AdvK = {s = c99 "tyrkylle"} ;
+lin tyrkylla'_AdvK = {s = c99 "tyrkyllä"} ;
+lin tyrkytta'ytya'_VK = {s = c52A "tyrkyttäytyä"} ;
+lin tyrkytta'a'_VK = {s = c53A "tyrkyttää"} ;
+lin tyrka'ta'_VK = {s = c73A "tyrkätä"} ;
+lin tyrmistys_NK = {s = d39 "tyrmistys"} ;
+lin tyrmistytta'a'_VK = {s = c53A "tyrmistyttää"} ;
+lin tyrmistya'_VK = {s = c52 "tyrmistyä"} ;
+lin tyrma'_NK = {s = d10 "tyrmä"} ;
+lin tyrma'ta'_VK = {s = c73 "tyrmätä"} ;
+lin tyrma'ys_NK = {s = d39 "tyrmäys"} ;
+lin tyrma'a'ja'_NK = {s = d10 "tyrmääjä"} ;
+lin tyrni_NK = {s = d05 "tyrni"} ;
+lin tyrske_NK = {s = d48 "tyrske"} ;
+lin tyrskinta'_NK = {s = d09A "tyrskintä"} ;
+lin tyrskina'_NK = {s = d12 "tyrskinä"} ;
+lin tyrskia'_VK = {s = c61 "tyrskiä"} ;
+lin tyrsky_NK = {s = d01 "tyrsky"} ;
+lin tyrskyinen_NK = {s = d38 "tyrskyinen"} ;
+lin tyrskyta'_VK = {s = c75 "tyrskytä"} ;
+lin tyrska'hdella'_VK = {s = c67A "tyrskähdellä"} ;
+lin tyrska'hdys_NK = {s = d39 "tyrskähdys"} ;
+lin tyrska'hta'a'_VK = {s = c53A "tyrskähtää"} ;
+lin tyra'_NK = {s = d10 "tyrä"} ;
+lin tyra'kki_NK = {s = d05A "tyräkki"} ;
+lin tyra'ys_NK = {s = d39 "tyräys"} ;
+lin tyssa'hta'a'_VK = {s = c53A "tyssähtää"} ;
+lin tyssa'ta'_VK = {s = c73 "tyssätä"} ;
+lin tyssa'ys_NK = {s = d39 "tyssäys"} ;
+lin tytina'_NK = {s = d12 "tytinä"} ;
+lin tytista'_VK = {s = c66 "tytistä"} ;
+lin tytteli_NK = {s = d06 "tytteli"} ;
+lin tytti_NK = {s = d05A "tytti"} ;
+lin tytto'_NK = {s = d01A "tyttö"} ;
+lin tytto'aika_NK = {s = d09A "tyttöaika"} ;
+lin tytto'istya'_VK = {s = c52 "tyttöistyä"} ;
+lin tytto'ma'inen_AK = {s = d38 "tyttömäinen"} ;
+--+ lin tytto'ma'isesti_AdvK = {s = c99 "tyttömäisesti"} ;
+lin tytto'ma'isyys_NK = {s = d40 "tyttömäisyys"} ;
+lin tytto'nen_NK = {s = d38 "tyttönen"} ;
+lin tytto'ys_NK = {s = d40 "tyttöys"} ;
+lin tyta'r_NK = {s = d32A "tytär"} ;
+lin tyto'tella'_VK = {s = c67A "tytötellä"} ;
+lin tyto'ttely_NK = {s = d02 "tytöttely"} ;
+lin tyvekkyys_NK = {s = d40 "tyvekkyys"} ;
+lin tyveka's_NK = {s = d41A "tyvekäs"} ;
+lin tyven_NK = {s = d32 "tyven"} ;
+lin tyventya'_VK = {s = c52A "tyventyä"} ;
+lin tyveta'_1_VK = {s = c72 "tyvetä"} ;
+lin tyveta'_2_VK = {s = c74 "tyvetä"} ;
+lin tyveys_NK = {s = d39 "tyveys"} ;
+lin tyvi_NK = {s = d07 "tyvi"} ;
+lin tyvinen_NK = {s = d38 "tyvinen"} ;
+lin tyydyke_NK = {s = d48A "tyydyke"} ;
+lin tyydytin_NK = {s = d33A "tyydytin"} ;
+lin tyydyttyma'to'n_NK = {s = d34A "tyydyttymätön"} ;
+lin tyydyttya'_VK = {s = c52A "tyydyttyä"} ;
+lin tyydytta'ja'_NK = {s = d10 "tyydyttäjä"} ;
+lin tyydytta'ma'to'n_NK = {s = d34A "tyydyttämätön"} ;
+lin tyydytta'va'_AK = {s = d10 "tyydyttävä"} ;
+--+ lin tyydytta'va'sti_AdvK = {s = c99 "tyydyttävästi"} ;
+lin tyydytta'a'_VK = {s = c53A "tyydyttää"} ;
+lin tyydytys_NK = {s = d39 "tyydytys"} ;
+lin tyyfus_NK = {s = d39 "tyyfus"} ;
+lin tyyli_NK = {s = d05 "tyyli"} ;
+lin tyylikkyys_NK = {s = d40 "tyylikkyys"} ;
+--+ lin tyylikka'a'sti_AdvK = {s = c99 "tyylikkäästi"} ;
+lin tyylika's_AK = {s = d41A "tyylikäs"} ;
+lin tyylillinen_AK = {s = d38 "tyylillinen"} ;
+--+ lin tyylillisesti_AdvK = {s = c99 "tyylillisesti"} ;
+lin tyylinen_AK = {s = d38 "tyylinen"} ;
+--+ lin tyylisesti_AdvK = {s = c99 "tyylisesti"} ;
+lin tyylisyys_NK = {s = d40 "tyylisyys"} ;
+lin tyylitella'_VK = {s = c67A "tyylitellä"} ;
+lin tyylitelma'_NK = {s = d10 "tyylitelmä"} ;
+lin tyylitto'myys_NK = {s = d40 "tyylittömyys"} ;
+lin tyylitto'ma'sti_AdvK = {s = c99 "tyylittömästi"} ;
+lin tyylito'n_NK = {s = d34A "tyylitön"} ;
+--+ lin tyynesti_AdvK = {s = c99 "tyynesti"} ;
+lin tyyneys_NK = {s = d40 "tyyneys"} ;
+lin tyyni_AK = {s = d26 "tyyni"} ;
+lin tyynni_AdvK = {s = c99 "tyynni"} ;
+lin tyynnytella'_VK = {s = c67A "tyynnytellä"} ;
+lin tyynnytta'a'_VK = {s = c53A "tyynnyttää"} ;
+lin tyyntya'_VK = {s = c52A "tyyntyä"} ;
+lin tyyny_NK = {s = d01 "tyyny"} ;
+lin tyypeitta'in_AdvK = {s = c99 "tyypeittäin"} ;
+lin tyypillinen_AK = {s = d38 "tyypillinen"} ;
+--+ lin tyypillisesti_AdvK = {s = c99 "tyypillisesti"} ;
+lin tyypillisyys_NK = {s = d40 "tyypillisyys"} ;
+lin tyypisto'_NK = {s = d01 "tyypistö"} ;
+lin tyypitella'_VK = {s = c67A "tyypitellä"} ;
+lin tyypittely_NK = {s = d02 "tyypittely"} ;
+lin tyypitta'a'_VK = {s = c53A "tyypittää"} ;
+lin tyypitys_NK = {s = d39 "tyypitys"} ;
+lin tyyppi_NK = {s = d05A "tyyppi"} ;
+lin tyyppinen_NK = {s = d38 "tyyppinen"} ;
+lin tyyris_NK = {s = d41 "tyyris"} ;
+lin tyyrpuuri_NK = {s = d05 "tyyrpuuri"} ;
+lin tyyssija_NK = {s = d09 "tyyssija"} ;
+lin tyystin_AdvK = {s = c99 "tyystin"} ;
+lin tyyt_AdvK = {s = c99 "tyyt"} ;
+lin tyyten_AdvK = {s = c99 "tyyten"} ;
+lin tyytta'ys_NK = {s = d39 "tyyttäys"} ;
+lin tyytyma'tto'myys_NK = {s = d40 "tyytymättömyys"} ;
+lin tyytyma'tto'ma'sti_AdvK = {s = c99 "tyytymättömästi"} ;
+lin tyytyma'to'n_NK = {s = d34A "tyytymätön"} ;
+lin tyytyva'inen_AK = {s = d38 "tyytyväinen"} ;
+--+ lin tyytyva'isesti_AdvK = {s = c99 "tyytyväisesti"} ;
+lin tyytyva'isyys_NK = {s = d40 "tyytyväisyys"} ;
+lin tyytya'_VK = {s = c52A "tyytyä"} ;
+lin tyyta'ta'_VK = {s = c73A "tyytätä"} ;
+lin tyo'_NK = {s = d19 "työ"} ;
+lin tyo'aika_NK = {s = d09A "työaika"} ;
+lin tyo'llinen_NK = {s = d38 "työllinen"} ;
+lin tyo'llistys_NK = {s = d39 "työllistys"} ;
+lin tyo'llistya'_VK = {s = c52 "työllistyä"} ;
+lin tyo'llista'a'_VK = {s = c53 "työllistää"} ;
+lin tyo'llisyys_NK = {s = d40 "työllisyys"} ;
+lin tyo'la'inen_NK = {s = d38 "työläinen"} ;
+lin tyo'la's_AK = {s = d41 "työläs"} ;
+lin tyo'la'stytta'a'_VK = {s = c53A "työlästyttää"} ;
+lin tyo'la'stya'_VK = {s = c52 "työlästyä"} ;
+lin tyo'la'ys_NK = {s = d40 "työläys"} ;
+--+ lin tyo'la'a'sti_AdvK = {s = c99 "työläästi"} ;
+lin tyo'njohdollinen_NK = {s = d38 "työnjohdollinen"} ;
+lin tyo'nnella'_VK = {s = c67A "työnnellä"} ;
+lin tyo'nna'lta'a'_VK = {s = c54A "työnnältää"} ;
+lin tyo'ntely_NK = {s = d02 "työntely"} ;
+lin tyo'ntya'_VK = {s = c52A "työntyä"} ;
+lin tyo'nta'ja'_NK = {s = d10 "työntäjä"} ;
+lin tyo'nta'ytya'_VK = {s = c52A "työntäytyä"} ;
+lin tyo'nta'a'_VK = {s = c54A "työntää"} ;
+lin tyo'nto'_NK = {s = d01A "työntö"} ;
+lin tyo'nto'kytkye_NK = {s = d48 "työntökytkye"} ;
+lin tyo'skennella'_VK = {s = c67A "työskennellä"} ;
+lin tyo'skentely_NK = {s = d02 "työskentely"} ;
+lin tyo'sopimusaika_NK = {s = d09A "työsopimusaika"} ;
+lin tyo'ssa'oppiminen_NK = {s = d38 "työssäoppiminen"} ;
+lin tyo'sta'a'_VK = {s = c53 "työstää"} ;
+lin tyo'sto'_NK = {s = d01 "työstö"} ;
+lin tyo'suojelullinen_NK = {s = d38 "työsuojelullinen"} ;
+lin tyo'telia'isyys_NK = {s = d40 "työteliäisyys"} ;
+lin tyo'telia's_NK = {s = d41 "työteliäs"} ;
+lin tyo'tto'myys_NK = {s = d40 "työttömyys"} ;
+lin tyo'to'n_NK = {s = d34A "työtön"} ;
+lin ta'ditella'_VK = {s = c67A "täditellä"} ;
+lin ta'dittely_NK = {s = d02 "tädittely"} ;
+lin ta'dyke_NK = {s = d48A "tädyke"} ;
+lin ta'gi_NK = {s = d05 "tägi"} ;
+lin ta'hde_NK = {s = d48A "tähde"} ;
+lin ta'hdeka's_NK = {s = d41A "tähdekäs"} ;
+lin ta'hdelle_AdvK = {s = c99 "tähdelle"} ;
+lin ta'hdellinen_AK = {s = d38 "tähdellinen"} ;
+--+ lin ta'hdellisesti_AdvK = {s = c99 "tähdellisesti"} ;
+lin ta'hdellisyys_NK = {s = d40 "tähdellisyys"} ;
+lin ta'hden_AdvK = {s = c99 "tähden"} ;
+lin ta'hdennys_NK = {s = d39 "tähdennys"} ;
+lin ta'hdentya'_VK = {s = c52A "tähdentyä"} ;
+lin ta'hdenta'a'_VK = {s = c54A "tähdentää"} ;
+lin ta'hdeto'n_NK = {s = d34A "tähdetön"} ;
+lin ta'hdikki_NK = {s = d05A "tähdikki"} ;
+lin ta'hdika's_NK = {s = d41A "tähdikäs"} ;
+lin ta'hdisto'_NK = {s = d02 "tähdistö"} ;
+lin ta'hda'ta'_VK = {s = c73A "tähdätä"} ;
+lin ta'hkia'_VK = {s = c61 "tähkiä"} ;
+lin ta'hkio'_NK = {s = d03 "tähkiö"} ;
+lin ta'hkyla'_NK = {s = d12 "tähkylä"} ;
+lin ta'hka'_NK = {s = d10 "tähkä"} ;
+lin ta'hka'ida'nta'_NK = {s = d09A "tähkäidäntä"} ;
+lin ta'hka'inen_NK = {s = d38 "tähkäinen"} ;
+lin ta'hteys_NK = {s = d40 "tähteys"} ;
+lin ta'hti_NK = {s = d07A "tähti"} ;
+lin ta'htiaika_NK = {s = d09A "tähtiaika"} ;
+lin ta'htima'inen_NK = {s = d38 "tähtimäinen"} ;
+lin ta'htimo'_NK = {s = d02 "tähtimö"} ;
+lin ta'htinen_NK = {s = d38 "tähtinen"} ;
+lin ta'hta'illa'_VK = {s = c67 "tähtäillä"} ;
+lin ta'hta'in_NK = {s = d33 "tähtäin"} ;
+lin ta'hta'ys_NK = {s = d39 "tähtäys"} ;
+lin ta'hto'nen_NK = {s = d38 "tähtönen"} ;
+lin ta'hyilla'_VK = {s = c67 "tähyillä"} ;
+lin ta'hyily_NK = {s = d02 "tähyily"} ;
+lin ta'hysteinen_AK = {s = d38 "tähysteinen"} ;
+--+ lin ta'hysteisesti_AdvK = {s = c99 "tähysteisesti"} ;
+lin ta'hystella'_VK = {s = c67 "tähystellä"} ;
+lin ta'hystely_NK = {s = d02 "tähystely"} ;
+lin ta'hystin_NK = {s = d33 "tähystin"} ;
+lin ta'hystys_NK = {s = d39 "tähystys"} ;
+lin ta'hysta'ja'_NK = {s = d10 "tähystäjä"} ;
+lin ta'hysta'a'_VK = {s = c53 "tähystää"} ;
+lin ta'hyta'_VK = {s = c74 "tähytä"} ;
+lin ta'ha'n_AdvK = {s = c99 "tähän"} ;
+lin ta'ha'nastinen_NK = {s = d38 "tähänastinen"} ;
+lin ta'i_NK = {s = d18 "täi"} ;
+lin ta'kki_1_NK = {s = d05A "täkki"} ;
+lin ta'kki_2_NK = {s = d05A "täkki"} ;
+lin ta'ky_NK = {s = d01A "täky"} ;
+lin ta'ka'la'inen_NK = {s = d38 "täkäläinen"} ;
+lin ta'ka'na'_NK = {s = d11 "täkänä"} ;
+lin ta'llainen_NK = {s = d38 "tällainen"} ;
+lin ta'lleen_AdvK = {s = c99 "tälleen"} ;
+lin ta'lli_NK = {s = d05 "tälli"} ;
+lin ta'lla'ta'_VK = {s = c73 "tällätä"} ;
+lin ta'lla'ytya'_VK = {s = c52A "tälläytyä"} ;
+lin ta'lla'a'n_AdvK = {s = c99 "tällään"} ;
+lin ta'llo'in_AdvK = {s = c99 "tällöin"} ;
+lin ta'llo'inen_NK = {s = d38 "tällöinen"} ;
+lin ta'lta'a'n_AdvK = {s = c99 "tältään"} ;
+lin ta'mmo'inen_NK = {s = d38 "tämmöinen"} ;
+lin ta'ma'nlainen_NK = {s = d38 "tämänlainen"} ;
+lin ta'ma'nmoinen_NK = {s = d38 "tämänmoinen"} ;
+lin ta'nne_AdvK = {s = c99 "tänne"} ;
+lin ta'nnemma'_AdvK = {s = c99 "tännemmä"} ;
+lin ta'nnemma'ksi_AdvK = {s = c99 "tännemmäksi"} ;
+lin ta'nnemma's_AdvK = {s = c99 "tännemmäs"} ;
+lin ta'nnempa'na'_AdvK = {s = c99 "tännempänä"} ;
+lin ta'nnempa'a'_AdvK = {s = c99 "tännempää"} ;
+lin ta'nnimma'inen_NK = {s = d38 "tännimmäinen"} ;
+lin ta'nnimma'ksi_AdvK = {s = c99 "tännimmäksi"} ;
+lin ta'nnimma's_AdvK = {s = c99 "tännimmäs"} ;
+lin ta'nnimpa'na'_AdvK = {s = c99 "tännimpänä"} ;
+lin ta'nnimpa'a'_AdvK = {s = c99 "tännimpää"} ;
+lin ta'na'inen_NK = {s = d38 "tänäinen"} ;
+lin ta'na'a'n_AdvK = {s = c99 "tänään"} ;
+lin ta'plika's_NK = {s = d41A "täplikäs"} ;
+lin ta'plittya'_VK = {s = c52A "täplittyä"} ;
+lin ta'plitta'a'_VK = {s = c53A "täplittää"} ;
+lin ta'pla'_NK = {s = d10 "täplä"} ;
+lin ta'pla'inen_NK = {s = d38 "täpläinen"} ;
+lin ta'pa'ryys_NK = {s = d40 "täpäryys"} ;
+lin ta'pa'ra'_AK = {s = d10 "täpärä"} ;
+--+ lin ta'pa'ra'sti_AdvK = {s = c99 "täpärästi"} ;
+lin ta'po'_AdvK = {s = c99 "täpö"} ;
+lin ta'po'sen_AdvK = {s = c99 "täpösen"} ;
+lin ta'rina'_NK = {s = d12 "tärinä"} ;
+lin ta'ristys_NK = {s = d39 "täristys"} ;
+lin ta'rista'_VK = {s = c66 "täristä"} ;
+lin ta'rista'a'_VK = {s = c53 "täristää"} ;
+lin ta'risytta'a'_VK = {s = c53A "tärisyttää"} ;
+lin ta'rkeileva'sti_AdvK = {s = c99 "tärkeilevästi"} ;
+lin ta'rkeilla'_VK = {s = c67 "tärkeillä"} ;
+lin ta'rkeily_NK = {s = d02 "tärkeily"} ;
+lin ta'rkeys_NK = {s = d40 "tärkeys"} ;
+lin ta'rkea'_AK = {s = d15 "tärkeä"} ;
+--+ lin ta'rkea'sti_AdvK = {s = c99 "tärkeästi"} ;
+lin ta'rkkelys_NK = {s = d39 "tärkkelys"} ;
+lin ta'rkki_NK = {s = d05A "tärkki"} ;
+lin ta'rka'ta'_VK = {s = c73A "tärkätä"} ;
+lin ta'rppi_NK = {s = d05A "tärppi"} ;
+lin ta'rppia'_VK = {s = c61A "tärppiä"} ;
+lin ta'rpa'tti_NK = {s = d05A "tärpätti"} ;
+lin ta'rpa'ta'_VK = {s = c73A "tärpätä"} ;
+lin ta'rsky_NK = {s = d01 "tärsky"} ;
+lin ta'rskya'_VK = {s = c52 "tärskyä"} ;
+lin ta'rska'hdella'_VK = {s = c67A "tärskähdellä"} ;
+lin ta'rska'hdys_NK = {s = d39 "tärskähdys"} ;
+lin ta'rska'hta'a'_VK = {s = c53A "tärskähtää"} ;
+lin ta'rska'ys_NK = {s = d39 "tärskäys"} ;
+lin ta'rska'ytta'a'_VK = {s = c53A "tärskäyttää"} ;
+lin ta'rvelija'_NK = {s = d12 "tärvelijä"} ;
+lin ta'rvella'_VK = {s = c67 "tärvellä"} ;
+lin ta'rveltya'_VK = {s = c52A "tärveltyä"} ;
+lin ta'rva'ta'_VK = {s = c73 "tärvätä"} ;
+lin ta'rva'ytya'_VK = {s = c52A "tärväytyä"} ;
+lin ta'rva'a'ntya'_VK = {s = c52A "tärvääntyä"} ;
+lin ta'ry_NK = {s = d01 "täry"} ;
+lin ta'rytin_NK = {s = d33A "tärytin"} ;
+lin ta'rytta'a'_VK = {s = c53A "täryttää"} ;
+lin ta'rytys_NK = {s = d39 "tärytys"} ;
+lin ta'ra'hdella'_VK = {s = c67A "tärähdellä"} ;
+lin ta'ra'hdys_NK = {s = d39 "tärähdys"} ;
+lin ta'ra'hdytta'a'_VK = {s = c53A "tärähdyttää"} ;
+lin ta'ra'htely_NK = {s = d02 "tärähtely"} ;
+lin ta'ra'hta'a'_VK = {s = c53A "tärähtää"} ;
+lin ta'ra'ys_NK = {s = d39 "täräys"} ;
+lin ta'ra'ytta'a'_VK = {s = c53A "täräyttää"} ;
+lin ta'smennys_NK = {s = d39 "täsmennys"} ;
+lin ta'smentya'_VK = {s = c52A "täsmentyä"} ;
+lin ta'smenta'a'_VK = {s = c54A "täsmentää"} ;
+lin ta'sma'lleen_AdvK = {s = c99 "täsmälleen"} ;
+lin ta'sma'llinen_AK = {s = d38 "täsmällinen"} ;
+--+ lin ta'sma'llisesti_AdvK = {s = c99 "täsmällisesti"} ;
+lin ta'sma'llistya'_VK = {s = c52 "täsmällistyä"} ;
+lin ta'sma'llista'a'_VK = {s = c53 "täsmällistää"} ;
+lin ta'sma'llisyys_NK = {s = d40 "täsmällisyys"} ;
+lin ta'sma'ta'_VK = {s = c73 "täsmätä"} ;
+lin ta'sma'ys_NK = {s = d39 "täsmäys"} ;
+lin ta'sma'ytta'a'_VK = {s = c53A "täsmäyttää"} ;
+lin ta'sma'ytys_NK = {s = d39 "täsmäytys"} ;
+lin ta'ssa'_AdvK = {s = c99 "tässä"} ;
+lin ta'sta'_AdvK = {s = c99 "tästä"} ;
+lin ta'ten_AdvK = {s = c99 "täten"} ;
+lin ta'ti_NK = {s = d05A "täti"} ;
+lin ta'tima'inen_AK = {s = d38 "tätimäinen"} ;
+--+ lin ta'tima'isesti_AdvK = {s = c99 "tätimäisesti"} ;
+lin ta'tima'isyys_NK = {s = d40 "tätimäisyys"} ;
+lin ta'ydelleen_AdvK = {s = c99 "täydelleen"} ;
+lin ta'ydellinen_AK = {s = d38 "täydellinen"} ;
+--+ lin ta'ydellisesti_AdvK = {s = c99 "täydellisesti"} ;
+lin ta'ydellistyma'_NK = {s = d10 "täydellistymä"} ;
+lin ta'ydellistytta'a'_VK = {s = c53A "täydellistyttää"} ;
+lin ta'ydellistya'_VK = {s = c52 "täydellistyä"} ;
+lin ta'ydellista'a'_VK = {s = c53 "täydellistää"} ;
+lin ta'ydellisyys_NK = {s = d40 "täydellisyys"} ;
+lin ta'ydennella'_VK = {s = c67A "täydennellä"} ;
+lin ta'ydennys_NK = {s = d39 "täydennys"} ;
+lin ta'ydentya'_VK = {s = c52A "täydentyä"} ;
+lin ta'ydenta'ja'_NK = {s = d10 "täydentäjä"} ;
+lin ta'ydenta'a'_VK = {s = c54A "täydentää"} ;
+lin ta'ydesti_AdvK = {s = c99 "täydesti"} ;
+lin ta'ynna'_AdvK = {s = c99 "täynnä"} ;
+lin ta'ysi_NK = {s = d27 "täysi"} ;
+lin ta'ysikokoisuus_NK = {s = d40 "täysikokoisuus"} ;
+lin ta'ysilla'_AdvK = {s = c99 "täysillä"} ;
+--+ lin ta'ysilukuisesti_AdvK = {s = c99 "täysilukuisesti"} ;
+lin ta'ysilukuisuus_NK = {s = d40 "täysilukuisuus"} ;
+--+ lin ta'ysimittaisesti_AdvK = {s = c99 "täysimittaisesti"} ;
+lin ta'ysimittaisuus_NK = {s = d40 "täysimittaisuus"} ;
+lin ta'ysin_AdvK = {s = c99 "täysin"} ;
+lin ta'ysinpalvellut_NK = {s = d47 "täysinpalvellut"} ;
+lin ta'ysina'inen_NK = {s = d38 "täysinäinen"} ;
+lin ta'ysina'isyys_NK = {s = d40 "täysinäisyys"} ;
+--+ lin ta'ysipainoisesti_AdvK = {s = c99 "täysipainoisesti"} ;
+--+ lin ta'ysipa'iva'isesti_AdvK = {s = c99 "täysipäiväisesti"} ;
+lin ta'ysipa'iva'isyys_NK = {s = d40 "täysipäiväisyys"} ;
+--+ lin ta'ysitehoisesti_AdvK = {s = c99 "täysitehoisesti"} ;
+--+ lin ta'ysivaltaisesti_AdvK = {s = c99 "täysivaltaisesti"} ;
+--+ lin ta'ysivoimaisesti_AdvK = {s = c99 "täysivoimaisesti"} ;
+lin ta'yskanttinen_NK = {s = d38 "täyskanttinen"} ;
+--+ lin ta'yspa'isesti_AdvK = {s = c99 "täyspäisesti"} ;
+lin ta'yspa'isyys_NK = {s = d40 "täyspäisyys"} ;
+--+ lin ta'yspa'iva'isesti_AdvK = {s = c99 "täyspäiväisesti"} ;
+lin ta'yspa'iva'isyys_NK = {s = d40 "täyspäiväisyys"} ;
+lin ta'yte_NK = {s = d48A "täyte"} ;
+lin ta'yteen_AdvK = {s = c99 "täyteen"} ;
+lin ta'yteinen_NK = {s = d38 "täyteinen"} ;
+lin ta'ytella'_VK = {s = c67A "täytellä"} ;
+lin ta'ytela'inen_AK = {s = d38 "täyteläinen"} ;
+--+ lin ta'ytela'isesti_AdvK = {s = c99 "täyteläisesti"} ;
+lin ta'ytela'istya'_VK = {s = c52 "täyteläistyä"} ;
+lin ta'ytela'ista'a'_VK = {s = c53 "täyteläistää"} ;
+lin ta'ytela'isyys_NK = {s = d40 "täyteläisyys"} ;
+lin ta'ytinen_NK = {s = d38 "täytinen"} ;
+lin ta'ytteellinen_NK = {s = d38 "täytteellinen"} ;
+lin ta'ytteinen_NK = {s = d38 "täytteinen"} ;
+lin ta'yttymys_NK = {s = d39 "täyttymys"} ;
+lin ta'yttyma'to'n_NK = {s = d34A "täyttymätön"} ;
+lin ta'yttya'_VK = {s = c52A "täyttyä"} ;
+lin ta'ytta'ja'_NK = {s = d10 "täyttäjä"} ;
+lin ta'ytta'ma'to'n_NK = {s = d34A "täyttämätön"} ;
+lin ta'ytta'a'_VK = {s = c53A "täyttää"} ;
+lin ta'ytto'_NK = {s = d01A "täyttö"} ;
+lin ta'ytya'_VK = {s = c52A "täytyä"} ;
+lin ta'yta'nto'o'n_AdvK = {s = c99 "täytäntöön"} ;
+lin ta'yta'nto'o'npaneva_NK = {s = d10 "täytäntöönpaneva"} ;
+lin ta'a'lla'_AdvK = {s = c99 "täällä"} ;
+lin ta'a'lta'_AdvK = {s = c99 "täältä"} ;
+lin to'herrella'_VK = {s = c67A "töherrellä"} ;
+lin to'herrys_NK = {s = d39 "töherrys"} ;
+lin to'herta'a'_VK = {s = c54A "töhertää"} ;
+lin to'hka'_NK = {s = d10 "töhkä"} ;
+lin to'hriintya'_VK = {s = c52A "töhriintyä"} ;
+lin to'hrija'_NK = {s = d12 "töhrijä"} ;
+lin to'hriytya'_VK = {s = c52A "töhriytyä"} ;
+lin to'hria'_VK = {s = c61 "töhriä"} ;
+lin to'hryinen_AK = {s = d38 "töhryinen"} ;
+--+ lin to'hryisesti_AdvK = {s = c99 "töhryisesti"} ;
+lin to'hra'ta'_VK = {s = c73 "töhrätä"} ;
+lin to'hra'ytya'_VK = {s = c52A "töhräytyä"} ;
+lin to'hra'a'ntya'_VK = {s = c52A "töhrääntyä"} ;
+lin to'inen_NK = {s = d38 "töinen"} ;
+lin to'kero'_AK = {s = d02 "tökerö"} ;
+--+ lin to'kero'sti_AdvK = {s = c99 "tökerösti"} ;
+lin to'kkia'_VK = {s = c61A "tökkiä"} ;
+lin to'kka'ista'_VK = {s = c66 "tökkäistä"} ;
+lin to'ksa'hdella'_VK = {s = c67A "töksähdellä"} ;
+lin to'ksa'hta'a'_VK = {s = c53A "töksähtää"} ;
+lin to'ksa'ytta'a'_VK = {s = c53A "töksäyttää"} ;
+lin to'ka'ta'_VK = {s = c73A "tökätä"} ;
+lin to'ko'tti_NK = {s = d05A "tökötti"} ;
+lin to'ko'tta'a'_VK = {s = c53A "tököttää"} ;
+lin to'lkillinen_NK = {s = d38 "tölkillinen"} ;
+lin to'lkitta'a'_VK = {s = c53A "tölkittää"} ;
+lin to'lkitys_NK = {s = d39 "tölkitys"} ;
+lin to'lkki_NK = {s = d05A "tölkki"} ;
+lin to'lli_NK = {s = d05 "tölli"} ;
+lin to'llistelija'_NK = {s = d12 "töllistelijä"} ;
+lin to'llistella'_VK = {s = c67 "töllistellä"} ;
+lin to'llistely_NK = {s = d02 "töllistely"} ;
+lin to'lla'ta'_VK = {s = c73 "töllätä"} ;
+lin to'llo'tin_NK = {s = d33A "töllötin"} ;
+lin to'llo'tta'a'_VK = {s = c53A "töllöttää"} ;
+lin to'llo'tys_NK = {s = d39 "töllötys"} ;
+lin to'lvia'_VK = {s = c61 "tölviä"} ;
+lin to'lva'ista'_VK = {s = c66 "tölväistä"} ;
+lin to'lva'isy_NK = {s = d02 "tölväisy"} ;
+lin to'lva'ta'_VK = {s = c73 "tölvätä"} ;
+lin to'lva'ys_NK = {s = d39 "tölväys"} ;
+lin to'mina'_NK = {s = d12 "töminä"} ;
+lin to'mistella'_VK = {s = c67 "tömistellä"} ;
+lin to'mista'_VK = {s = c66 "tömistä"} ;
+lin to'mista'a'_VK = {s = c53 "tömistää"} ;
+lin to'misytella'_VK = {s = c67A "tömisytellä"} ;
+lin to'misytta'a'_VK = {s = c53A "tömisyttää"} ;
+lin to'ma'hdella'_VK = {s = c67A "tömähdellä"} ;
+lin to'ma'hdys_NK = {s = d39 "tömähdys"} ;
+lin to'ma'hta'a'_VK = {s = c53A "tömähtää"} ;
+lin to'ma'kka'_NK = {s = d14A "tömäkkä"} ;
+lin to'ma'ys_NK = {s = d39 "tömäys"} ;
+lin to'ma'ytta'a'_VK = {s = c53A "tömäyttää"} ;
+lin to'nia'_VK = {s = c61 "töniä"} ;
+lin to'nkko'_NK = {s = d01A "tönkkö"} ;
+lin to'na'ista'_VK = {s = c66 "tönäistä"} ;
+lin to'na'isy_NK = {s = d02 "tönäisy"} ;
+lin to'no'_NK = {s = d01 "tönö"} ;
+lin to'peksinta'_NK = {s = d09A "töpeksintä"} ;
+lin to'peksia'_VK = {s = c61 "töpeksiä"} ;
+lin to'pina'_NK = {s = d12 "töpinä"} ;
+lin to'ppa'illa'_VK = {s = c67 "töppäillä"} ;
+lin to'ppa'ily_NK = {s = d02 "töppäily"} ;
+lin to'ppa'ys_NK = {s = d39 "töppäys"} ;
+lin to'ppo'illa'_VK = {s = c67 "töppöillä"} ;
+lin to'ppo'ily_NK = {s = d02 "töppöily"} ;
+lin to'ppo'nen_NK = {s = d38 "töppönen"} ;
+lin to'ppo'silleen_AdvK = {s = c99 "töppösilleen"} ;
+lin to'ppo'silla'a'n_AdvK = {s = c99 "töppösillään"} ;
+lin to'ppo'silta'a'n_AdvK = {s = c99 "töppösiltään"} ;
+lin to'pseli_NK = {s = d06 "töpseli"} ;
+lin to'pa'ta'_VK = {s = c73A "töpätä"} ;
+lin to'po'_NK = {s = d01 "töpö"} ;
+lin to'po'tta'a'_VK = {s = c53A "töpöttää"} ;
+lin to'po'tys_NK = {s = d39 "töpötys"} ;
+lin to'rkeilla'_VK = {s = c67 "törkeillä"} ;
+lin to'rkeily_NK = {s = d02 "törkeily"} ;
+lin to'rkeys_NK = {s = d40 "törkeys"} ;
+lin to'rkea'_AK = {s = d15 "törkeä"} ;
+--+ lin to'rkea'sti_AdvK = {s = c99 "törkeästi"} ;
+lin to'rkimys_NK = {s = d39 "törkimys"} ;
+lin to'rkkia'_VK = {s = c61A "törkkiä"} ;
+lin to'rky_NK = {s = d01A "törky"} ;
+lin to'rkyinen_AK = {s = d38 "törkyinen"} ;
+--+ lin to'rkyisesti_AdvK = {s = c99 "törkyisesti"} ;
+lin to'rka'ta'_VK = {s = c73A "törkätä"} ;
+lin to'rma'_NK = {s = d10 "törmä"} ;
+lin to'rma'illa'_VK = {s = c67 "törmäillä"} ;
+lin to'rma'ily_NK = {s = d02 "törmäily"} ;
+lin to'rma'nne_NK = {s = d48A "törmänne"} ;
+lin to'rma'ta'_VK = {s = c73 "törmätä"} ;
+lin to'rma'ys_NK = {s = d39 "törmäys"} ;
+lin to'rma'ytin_NK = {s = d33A "törmäytin"} ;
+lin to'rma'ytta'a'_VK = {s = c53A "törmäyttää"} ;
+lin to'rma'ytys_NK = {s = d39 "törmäytys"} ;
+lin to'rppo'_NK = {s = d01A "törppö"} ;
+lin to'rppo'illa'_VK = {s = c67 "törppöillä"} ;
+lin to'rppo'ily_NK = {s = d02 "törppöily"} ;
+lin to'rro'lle_AdvK = {s = c99 "törrölle"} ;
+lin to'rro'lleen_AdvK = {s = c99 "törrölleen"} ;
+lin to'rro'lla'_AdvK = {s = c99 "törröllä"} ;
+lin to'rro'lla'a'n_AdvK = {s = c99 "törröllään"} ;
+lin to'rro'tta'a'_VK = {s = c53A "törröttää"} ;
+lin to'rro'tys_NK = {s = d39 "törrötys"} ;
+lin to'rsa'ta'_VK = {s = c73 "törsätä"} ;
+lin to'rsa'ys_NK = {s = d39 "törsäys"} ;
+lin to'rtto'_NK = {s = d01A "törttö"} ;
+lin to'rtto'illa'_VK = {s = c67 "törttöillä"} ;
+lin to'rtto'ily_NK = {s = d02 "törttöily"} ;
+lin to'ra'hdys_NK = {s = d39 "törähdys"} ;
+lin to'ra'hdytta'a'_VK = {s = c53A "törähdyttää"} ;
+lin to'ra'hta'a'_VK = {s = c53A "törähtää"} ;
+lin to'ra'ys_NK = {s = d39 "töräys"} ;
+lin to'ra'ytta'a'_VK = {s = c53A "töräyttää"} ;
+lin to'ro'_NK = {s = d01 "törö"} ;
+lin to'ro'lle_AdvK = {s = c99 "törölle"} ;
+lin to'ro'lleen_AdvK = {s = c99 "törölleen"} ;
+lin to'ro'lla'_AdvK = {s = c99 "töröllä"} ;
+lin to'ro'lla'a'n_AdvK = {s = c99 "töröllään"} ;
+lin to'ro'ssa'_AdvK = {s = c99 "törössä"} ;
+lin to'ro'sta'_AdvK = {s = c99 "töröstä"} ;
+lin to'ro'tta'a'_VK = {s = c53A "töröttää"} ;
+lin to'ro'o'n_AdvK = {s = c99 "töröön"} ;
+lin to'tsa'_NK = {s = d10 "tötsä"} ;
+lin to'ttero'_NK = {s = d02 "tötterö"} ;
+lin to'yda'ta'_VK = {s = c73A "töydätä"} ;
+lin to'yhdo'llinen_NK = {s = d38 "töyhdöllinen"} ;
+lin to'yhto'_NK = {s = d01A "töyhtö"} ;
+lin to'yhto'hyyppa'_NK = {s = d10A "töyhtöhyyppä"} ;
+lin to'ykeys_NK = {s = d40 "töykeys"} ;
+lin to'ykea'_AK = {s = d15 "töykeä"} ;
+--+ lin to'ykea'sti_AdvK = {s = c99 "töykeästi"} ;
+lin to'ykkia'_VK = {s = c61A "töykkiä"} ;
+lin to'yka'ta'_VK = {s = c73A "töykätä"} ;
+lin to'yry_NK = {s = d01 "töyry"} ;
+lin to'yra'nne_NK = {s = d48A "töyränne"} ;
+lin to'yra's_NK = {s = d41 "töyräs"} ;
+lin to'yssy_NK = {s = d01 "töyssy"} ;
+lin to'yssytta'a'_VK = {s = c53A "töyssyttää"} ;
+lin to'yssa'hdella'_VK = {s = c67A "töyssähdellä"} ;
+lin to'yssa'hdys_NK = {s = d39 "töyssähdys"} ;
+lin to'yssa'htely_NK = {s = d02 "töyssähtely"} ;
+lin to'yssa'hta'a'_VK = {s = c53A "töyssähtää"} ;
+lin to'yta'illa'_VK = {s = c67 "töytäillä"} ;
+lin to'yta'ista'_VK = {s = c66 "töytäistä"} ;
+lin to'yta'isy_NK = {s = d02 "töytäisy"} ;
+lin to'o't_AdvK = {s = c99 "tööt"} ;
+lin to'o'ta'ta'_VK = {s = c73A "töötätä"} ;
+lin to'o'to'tta'a'_VK = {s = c53A "töötöttää"} ;
+lin ubikinoni_NK = {s = d06 "ubikinoni"} ;
+lin udar_NK = {s = d49A "udar"} ;
+lin udella_VK = {s = c67A "udella"} ;
+lin udmurtti_NK = {s = d05A "udmurtti"} ;
+lin ufo_NK = {s = d01 "ufo"} ;
+lin ufoilla_VK = {s = c67 "ufoilla"} ;
+lin ufoilu_NK = {s = d02 "ufoilu"} ;
+lin ufologi_NK = {s = d05 "ufologi"} ;
+lin ugrilainen_NK = {s = d38 "ugrilainen"} ;
+lin ugristi_NK = {s = d05 "ugristi"} ;
+lin ugristiikka_NK = {s = d09A "ugristiikka"} ;
+lin uhalla_AdvK = {s = c99 "uhalla"} ;
+lin uhallaan_AdvK = {s = c99 "uhallaan"} ;
+lin uhata_VK = {s = c73A "uhata"} ;
+lin uhitella_VK = {s = c67A "uhitella"} ;
+lin uhittelu_NK = {s = d02 "uhittelu"} ;
+lin uhka_NK = {s = d10 "uhka"} ;
+lin uhkaaja_NK = {s = d10 "uhkaaja"} ;
+lin uhkaava_AK = {s = d10 "uhkaava"} ;
+--+ lin uhkaavasti_AdvK = {s = c99 "uhkaavasti"} ;
+lin uhkaavuus_NK = {s = d40 "uhkaavuus"} ;
+lin uhkailla_VK = {s = c67 "uhkailla"} ;
+lin uhkailu_NK = {s = d02 "uhkailu"} ;
+lin uhkaus_NK = {s = d39 "uhkaus"} ;
+lin uhkea_AK = {s = d15 "uhkea"} ;
+--+ lin uhkeasti_AdvK = {s = c99 "uhkeasti"} ;
+lin uhkeus_NK = {s = d40 "uhkeus"} ;
+lin uhku_NK = {s = d01 "uhku"} ;
+lin uhkua_VK = {s = c52 "uhkua"} ;
+lin uhma_NK = {s = d10 "uhma"} ;
+lin uhmainen_NK = {s = d38 "uhmainen"} ;
+lin uhmaisa_NK = {s = d10 "uhmaisa"} ;
+lin uhmakas_AK = {s = d41A "uhmakas"} ;
+--+ lin uhmakkaasti_AdvK = {s = c99 "uhmakkaasti"} ;
+lin uhmakkuus_NK = {s = d40 "uhmakkuus"} ;
+--+ lin uhmamielisesti_AdvK = {s = c99 "uhmamielisesti"} ;
+--+ lin uhmapa'isesti_AdvK = {s = c99 "uhmapäisesti"} ;
+lin uhmapa'isyys_NK = {s = d40 "uhmapäisyys"} ;
+lin uhmata_VK = {s = c73 "uhmata"} ;
+lin uho_NK = {s = d01 "uho"} ;
+lin uhota_VK = {s = c74 "uhota"} ;
+lin uhrata_VK = {s = c73 "uhrata"} ;
+lin uhraus_NK = {s = d39 "uhraus"} ;
+lin uhrautua_VK = {s = c52A "uhrautua"} ;
+lin uhrautuva_AK = {s = d10 "uhrautuva"} ;
+lin uhrautuvainen_NK = {s = d38 "uhrautuvainen"} ;
+--+ lin uhrautuvasti_AdvK = {s = c99 "uhrautuvasti"} ;
+lin uhrautuvuus_NK = {s = d40 "uhrautuvuus"} ;
+lin uhri_NK = {s = d05 "uhri"} ;
+lin uida_VK = {s = c62 "uida"} ;
+lin uiguuri_NK = {s = d06 "uiguuri"} ;
+lin uija_NK = {s = d10 "uija"} ;
+--? lin uikkarit_NK = {s = d06 "uikkarit"} ;
+lin uikku_NK = {s = d01A "uikku"} ;
+lin uikuttaa_VK = {s = c53A "uikuttaa"} ;
+lin uikutus_NK = {s = d39 "uikutus"} ;
+lin uimahalli_NK = {s = d05 "uimahalli"} ;
+lin uimakoppi_NK = {s = d05A "uimakoppi"} ;
+lin uimala_NK = {s = d12 "uimala"} ;
+lin uimapukusillaan_AdvK = {s = c99 "uimapukusillaan"} ;
+lin uimapukusilleen_AdvK = {s = c99 "uimapukusilleen"} ;
+lin uimari_NK = {s = d06 "uimari"} ;
+lin uimasillaan_AdvK = {s = c99 "uimasillaan"} ;
+lin uimasilleen_AdvK = {s = c99 "uimasilleen"} ;
+lin uimuri_NK = {s = d06 "uimuri"} ;
+lin uinahdus_NK = {s = d39 "uinahdus"} ;
+lin uinahtaa_VK = {s = c53A "uinahtaa"} ;
+lin uinailla_VK = {s = c67 "uinailla"} ;
+lin uinailu_NK = {s = d02 "uinailu"} ;
+lin uinti_NK = {s = d05A "uinti"} ;
+lin uinua_VK = {s = c52 "uinua"} ;
+lin uiskennella_VK = {s = c67A "uiskennella"} ;
+lin uisko_NK = {s = d01 "uisko"} ;
+lin uistaa_VK = {s = c53 "uistaa"} ;
+lin uistelija_NK = {s = d12 "uistelija"} ;
+lin uistella_VK = {s = c67 "uistella"} ;
+lin uistelu_NK = {s = d02 "uistelu"} ;
+lin uistin_NK = {s = d33 "uistin"} ;
+lin uitella_VK = {s = c67A "uitella"} ;
+lin uittaa_VK = {s = c53A "uittaa"} ;
+lin uitto_NK = {s = d01A "uitto"} ;
+lin uiva_NK = {s = d10 "uiva"} ;
+lin uivelo_NK = {s = d02 "uivelo"} ;
+lin ujellus_NK = {s = d39 "ujellus"} ;
+lin ujeltaa_VK = {s = c54A "ujeltaa"} ;
+lin ujo_AK = {s = d01 "ujo"} ;
+lin ujoilla_VK = {s = c67 "ujoilla"} ;
+lin ujoilu_NK = {s = d02 "ujoilu"} ;
+lin ujostelematon_NK = {s = d34A "ujostelematon"} ;
+lin ujostelemattomasti_AdvK = {s = c99 "ujostelemattomasti"} ;
+lin ujostelemattomuus_NK = {s = d40 "ujostelemattomuus"} ;
+lin ujostella_VK = {s = c67 "ujostella"} ;
+lin ujostelu_NK = {s = d02 "ujostelu"} ;
+--+ lin ujosti_AdvK = {s = c99 "ujosti"} ;
+lin ujostuttaa_VK = {s = c53A "ujostuttaa"} ;
+lin ujous_NK = {s = d40 "ujous"} ;
+lin ujua_VK = {s = c52 "ujua"} ;
+lin ujuttaa_VK = {s = c53A "ujuttaa"} ;
+lin ujuttautua_VK = {s = c52A "ujuttautua"} ;
+lin ujutus_NK = {s = d39 "ujutus"} ;
+lin ukaasi_NK = {s = d06 "ukaasi"} ;
+lin ukkeli_NK = {s = d06 "ukkeli"} ;
+lin ukki_NK = {s = d05A "ukki"} ;
+lin ukko_NK = {s = d01A "ukko"} ;
+lin ukkonen_NK = {s = d38 "ukkonen"} ;
+lin ukkoontua_VK = {s = c52A "ukkoontua"} ;
+lin ukkoskuuro_NK = {s = d01 "ukkoskuuro"} ;
+lin ukkostaa_VK = {s = c53 "ukkostaa"} ;
+lin ukkoutua_VK = {s = c52A "ukkoutua"} ;
+lin ukottua_VK = {s = c52A "ukottua"} ;
+lin ukraina_NK = {s = d13 "ukraina"} ;
+lin uksi_NK = {s = d07 "uksi"} ;
+lin ukulele_NK = {s = d08 "ukulele"} ;
+lin ukuli_NK = {s = d06 "ukuli"} ;
+lin ula_NK = {s = d10 "ula"} ;
+lin ulahdus_NK = {s = d39 "ulahdus"} ;
+lin ulahtaa_VK = {s = c53A "ulahtaa"} ;
+lin ulappa_NK = {s = d14A "ulappa"} ;
+lin ulettua_VK = {s = c52A "ulettua"} ;
+lin ulina_NK = {s = d12 "ulina"} ;
+lin ulista_VK = {s = c66 "ulista"} ;
+--+ lin uljaasti_AdvK = {s = c99 "uljaasti"} ;
+lin uljas_AK = {s = d41 "uljas"} ;
+lin uljuus_NK = {s = d40 "uljuus"} ;
+lin ulkoa_AdvK = {s = c99 "ulkoa"} ;
+lin ulkoilija_NK = {s = d12 "ulkoilija"} ;
+lin ulkoilla_VK = {s = c67 "ulkoilla"} ;
+lin ulkoilu_NK = {s = d02 "ulkoilu"} ;
+lin ulkoiluttaa_VK = {s = c53A "ulkoiluttaa"} ;
+lin ulkoiluttaja_NK = {s = d10 "ulkoiluttaja"} ;
+lin ulkoilutus_NK = {s = d39 "ulkoilutus"} ;
+lin ulkoinen_AK = {s = d38 "ulkoinen"} ;
+--+ lin ulkoisesti_AdvK = {s = c99 "ulkoisesti"} ;
+lin ulkoistaa_VK = {s = c53 "ulkoistaa"} ;
+lin ulkoistus_NK = {s = d39 "ulkoistus"} ;
+--+ lin ulkokohtaisesti_AdvK = {s = c99 "ulkokohtaisesti"} ;
+lin ulkokullattu_NK = {s = d01A "ulkokullattu"} ;
+lin ulkokuori_NK = {s = d26 "ulkokuori"} ;
+lin ulkolainen_NK = {s = d38 "ulkolainen"} ;
+lin ulkomaalaus_NK = {s = d39 "ulkomaalaus"} ;
+lin ulkomaali_NK = {s = d05 "ulkomaali"} ;
+lin ulkomaanpassi_NK = {s = d05 "ulkomaanpassi"} ;
+lin ulkomainen_NK = {s = d38 "ulkomainen"} ;
+lin ulkomaisuus_NK = {s = d40 "ulkomaisuus"} ;
+lin ulkona_AdvK = {s = c99 "ulkona"} ;
+lin ulkonainen_AK = {s = d38 "ulkonainen"} ;
+--+ lin ulkonaisesti_AdvK = {s = c99 "ulkonaisesti"} ;
+lin ulkonee_VK = {s = c72 "ulkonee"} ;
+lin ulkonema_NK = {s = d10 "ulkonema"} ;
+lin ulkoneva_NK = {s = d10 "ulkoneva"} ;
+lin ulkosalla_AdvK = {s = c99 "ulkosalla"} ;
+lin ulkosalle_AdvK = {s = c99 "ulkosalle"} ;
+lin ulkosalta_AdvK = {s = c99 "ulkosalta"} ;
+lin ullakko_NK = {s = d04A "ullakko"} ;
+lin uloimmainen_NK = {s = d38 "uloimmainen"} ;
+lin uloimmaksi_AdvK = {s = c99 "uloimmaksi"} ;
+lin uloimmas_AdvK = {s = c99 "uloimmas"} ;
+lin uloimpaa_AdvK = {s = c99 "uloimpaa"} ;
+lin uloimpana_AdvK = {s = c99 "uloimpana"} ;
+lin uloin_NK = {s = d36 "uloin"} ;
+lin uloinna_AdvK = {s = c99 "uloinna"} ;
+lin uloke_NK = {s = d48A "uloke"} ;
+lin ulommainen_NK = {s = d38 "ulommainen"} ;
+lin ulommaksi_AdvK = {s = c99 "ulommaksi"} ;
+lin ulommas_AdvK = {s = c99 "ulommas"} ;
+lin ulompaa_AdvK = {s = c99 "ulompaa"} ;
+lin ulompana_AdvK = {s = c99 "ulompana"} ;
+lin ulompi_NK = {s = d16A "ulompi"} ;
+lin ulonnus_NK = {s = d39 "ulonnus"} ;
+lin ulontaa_VK = {s = c54A "ulontaa"} ;
+lin ulos_AdvK = {s = c99 "ulos"} ;
+lin ulosla'mpia'va'_NK = {s = d10 "uloslämpiävä"} ;
+lin ulostaa_VK = {s = c53 "ulostaa"} ;
+lin uloste_NK = {s = d48 "uloste"} ;
+lin ulostus_NK = {s = d39 "ulostus"} ;
+lin ulostuttaa_VK = {s = c53A "ulostuttaa"} ;
+lin ulota_VK = {s = c72A "ulota"} ;
+lin ulottaa_VK = {s = c53A "ulottaa"} ;
+lin ulottautua_VK = {s = c52A "ulottautua"} ;
+lin ulotteikas_NK = {s = d41A "ulotteikas"} ;
+lin ulotteinen_NK = {s = d38 "ulotteinen"} ;
+lin ulotteisuus_NK = {s = d40 "ulotteisuus"} ;
+lin ulottua_VK = {s = c52A "ulottua"} ;
+lin ulottuma_NK = {s = d10 "ulottuma"} ;
+lin ulottumattomiin_AdvK = {s = c99 "ulottumattomiin"} ;
+lin ulottumattomissa_AdvK = {s = c99 "ulottumattomissa"} ;
+lin ulottuviin_AdvK = {s = c99 "ulottuviin"} ;
+lin ulottuvilla_AdvK = {s = c99 "ulottuvilla"} ;
+lin ulottuville_AdvK = {s = c99 "ulottuville"} ;
+lin ulottuvilta_AdvK = {s = c99 "ulottuvilta"} ;
+lin ulottuvissa_AdvK = {s = c99 "ulottuvissa"} ;
+lin ulottuvista_AdvK = {s = c99 "ulottuvista"} ;
+lin ulottuvuus_NK = {s = d40 "ulottuvuus"} ;
+lin ulpukka_NK = {s = d14A "ulpukka"} ;
+lin ulsteri_NK = {s = d06 "ulsteri"} ;
+lin ultimaatumi_NK = {s = d06 "ultimaatumi"} ;
+lin ultramariini_NK = {s = d05 "ultramariini"} ;
+lin ulvahdella_VK = {s = c67A "ulvahdella"} ;
+lin ulvahdus_NK = {s = d39 "ulvahdus"} ;
+lin ulvahtaa_VK = {s = c53A "ulvahtaa"} ;
+lin ulvaista_VK = {s = c66 "ulvaista"} ;
+lin ulvoa_VK = {s = c52 "ulvoa"} ;
+lin ulvonta_NK = {s = d09A "ulvonta"} ;
+lin ulvottaa_VK = {s = c53A "ulvottaa"} ;
+lin umbra_NK = {s = d10 "umbra"} ;
+lin ummehtua_VK = {s = c52A "ummehtua"} ;
+lin ummehtuneisuus_NK = {s = d40 "ummehtuneisuus"} ;
+lin ummessa_AdvK = {s = c99 "ummessa"} ;
+lin ummet_AdvK = {s = c99 "ummet"} ;
+lin ummetus_NK = {s = d39 "ummetus"} ;
+lin ummikko_NK = {s = d04A "ummikko"} ;
+lin ummistaa_VK = {s = c53 "ummistaa"} ;
+lin umpeen_AdvK = {s = c99 "umpeen"} ;
+lin umpeentua_VK = {s = c52A "umpeentua"} ;
+lin umpeuttaa_VK = {s = c53A "umpeuttaa"} ;
+lin umpeutua_VK = {s = c52A "umpeutua"} ;
+lin umpi_NK = {s = d07A "umpi"} ;
+lin umpieritteinen_NK = {s = d38 "umpieritteinen"} ;
+--+ lin umpimielisesti_AdvK = {s = c99 "umpimielisesti"} ;
+lin umpima'hka'inen_AK = {s = d38 "umpimähkäinen"} ;
+--+ lin umpima'hka'isesti_AdvK = {s = c99 "umpimähkäisesti"} ;
+lin umpima'hka'isyys_NK = {s = d40 "umpimähkäisyys"} ;
+lin umpima'hka'a'n_AdvK = {s = c99 "umpimähkään"} ;
+--+ lin umpinaisesti_AdvK = {s = c99 "umpinaisesti"} ;
+lin umpio_NK = {s = d03 "umpio"} ;
+lin umpioida_VK = {s = c62 "umpioida"} ;
+lin umpiointi_NK = {s = d05A "umpiointi"} ;
+lin umpioitua_VK = {s = c52A "umpioitua"} ;
+lin umpisukkeloon_AdvK = {s = c99 "umpisukkeloon"} ;
+lin umpisukkelossa_AdvK = {s = c99 "umpisukkelossa"} ;
+lin umpisukkelosta_AdvK = {s = c99 "umpisukkelosta"} ;
+lin umpiunessa_AdvK = {s = c99 "umpiunessa"} ;
+lin umpu_NK = {s = d01A "umpu"} ;
+lin underground_NK = {s = d05 "underground"} ;
+lin understatement_NK = {s = d05 "understatement"} ;
+lin undulaatti_NK = {s = d05A "undulaatti"} ;
+lin uneksia_VK = {s = c61 "uneksia"} ;
+lin uneksija_NK = {s = d12 "uneksija"} ;
+lin uneksinta_NK = {s = d09A "uneksinta"} ;
+--+ lin uneliaasti_AdvK = {s = c99 "uneliaasti"} ;
+lin uneliaisuus_NK = {s = d40 "uneliaisuus"} ;
+lin unelias_AK = {s = d41 "unelias"} ;
+lin unelma_NK = {s = d10 "unelma"} ;
+lin unelmoida_VK = {s = c62 "unelmoida"} ;
+lin unelmointi_NK = {s = d05A "unelmointi"} ;
+lin uneton_NK = {s = d34A "uneton"} ;
+lin unettaa_VK = {s = c53A "unettaa"} ;
+lin unettomuus_NK = {s = d40 "unettomuus"} ;
+lin unho_NK = {s = d01 "unho"} ;
+lin unhoittaa_VK = {s = c53A "unhoittaa"} ;
+lin unhoittua_VK = {s = c52A "unhoittua"} ;
+lin unhola_NK = {s = d12 "unhola"} ;
+lin unhottaa_VK = {s = c53A "unhottaa"} ;
+lin unhottua_VK = {s = c52A "unhottua"} ;
+lin uni_NK = {s = d24 "uni"} ;
+lin uniikki_NK = {s = d05A "uniikki"} ;
+lin unikko_NK = {s = d04A "unikko"} ;
+lin uninen_AK = {s = d38 "uninen"} ;
+lin unioni_NK = {s = d06 "unioni"} ;
+--+ lin unisesti_AdvK = {s = c99 "unisesti"} ;
+lin unissaan_AdvK = {s = c99 "unissaan"} ;
+lin unisuus_NK = {s = d40 "unisuus"} ;
+lin universaalinen_NK = {s = d38 "universaalinen"} ;
+lin universaalistua_VK = {s = c52 "universaalistua"} ;
+lin universiadit_NK = {s = d05 "universiadit"} ;
+lin universumi_NK = {s = d06 "universumi"} ;
+lin univormu_NK = {s = d01 "univormu"} ;
+lin unkari_NK = {s = d06 "unkari"} ;
+lin unkarinnos_NK = {s = d39 "unkarinnos"} ;
+lin unkarintaa_VK = {s = c54A "unkarintaa"} ;
+lin unohdella_VK = {s = c67A "unohdella"} ;
+lin unohdus_NK = {s = d39 "unohdus"} ;
+lin unohtaa_VK = {s = c53A "unohtaa"} ;
+lin unohtavainen_NK = {s = d38 "unohtavainen"} ;
+lin unohtavaisuus_NK = {s = d40 "unohtavaisuus"} ;
+lin unohtelu_NK = {s = d02 "unohtelu"} ;
+lin unohtua_VK = {s = c52A "unohtua"} ;
+lin unohtumaton_NK = {s = d34A "unohtumaton"} ;
+lin unohtumattomasti_AdvK = {s = c99 "unohtumattomasti"} ;
+lin unssi_NK = {s = d05 "unssi"} ;
+lin untuva_NK = {s = d10 "untuva"} ;
+lin untuvainen_NK = {s = d38 "untuvainen"} ;
+lin untuvikko_NK = {s = d01A "untuvikko"} ;
+lin uoma_NK = {s = d10 "uoma"} ;
+lin upea_AK = {s = d15 "upea"} ;
+--+ lin upeasti_AdvK = {s = c99 "upeasti"} ;
+lin upeus_NK = {s = d40 "upeus"} ;
+lin upokas_NK = {s = d41A "upokas"} ;
+lin upoksiin_AdvK = {s = c99 "upoksiin"} ;
+lin upoksissa_AdvK = {s = c99 "upoksissa"} ;
+lin upoksista_AdvK = {s = c99 "upoksista"} ;
+lin upota_VK = {s = c74A "upota"} ;
+lin upote_NK = {s = d48A "upote"} ;
+lin upottaa_VK = {s = c53A "upottaa"} ;
+lin upotteinen_NK = {s = d38 "upotteinen"} ;
+lin upotus_NK = {s = d39 "upotus"} ;
+lin uppeluksiin_AdvK = {s = c99 "uppeluksiin"} ;
+lin uppeluksissa_AdvK = {s = c99 "uppeluksissa"} ;
+--+ lin uppiniskaisesti_AdvK = {s = c99 "uppiniskaisesti"} ;
+lin uppiniskaisuus_NK = {s = d40 "uppiniskaisuus"} ;
+lin uppista_AdvK = {s = c99 "uppista"} ;
+lin uppoama_NK = {s = d10 "uppoama"} ;
+lin uppoamaton_NK = {s = d34A "uppoamaton"} ;
+lin uppouma_NK = {s = d10 "uppouma"} ;
+lin uppoutua_VK = {s = c52A "uppoutua"} ;
+lin ups_AdvK = {s = c99 "ups"} ;
+lin upseeri_NK = {s = d06 "upseeri"} ;
+lin upseeristo_NK = {s = d01 "upseeristo"} ;
+lin upsis_AdvK = {s = c99 "upsis"} ;
+lin upsista_AdvK = {s = c99 "upsista"} ;
+lin ura_NK = {s = d10 "ura"} ;
+lin uraani_NK = {s = d06 "uraani"} ;
+lin uraauurtava_AK = {s = d10 "uraauurtava"} ;
+--+ lin uraauurtavasti_AdvK = {s = c99 "uraauurtavasti"} ;
+lin urahdus_NK = {s = d39 "urahdus"} ;
+lin urahtaa_VK = {s = c53A "urahtaa"} ;
+lin urakka_NK = {s = d14A "urakka"} ;
+lin urakoida_VK = {s = c68 "urakoida"} ;
+lin urakoija_NK = {s = d10 "urakoija"} ;
+lin urakointi_NK = {s = d05A "urakointi"} ;
+lin urakoitsija_NK = {s = d12 "urakoitsija"} ;
+lin uralilainen_NK = {s = d38 "uralilainen"} ;
+lin uranuurtaja_NK = {s = d10 "uranuurtaja"} ;
+lin urauttaa_VK = {s = c53A "urauttaa"} ;
+lin urautua_VK = {s = c52A "urautua"} ;
+lin urbaani_AK = {s = d06 "urbaani"} ;
+lin urbaaninen_AK = {s = d38 "urbaaninen"} ;
+--+ lin urbaanisesti_AdvK = {s = c99 "urbaanisesti"} ;
+--+ lin urbaanisti_AdvK = {s = c99 "urbaanisti"} ;
+lin urbaanistua_VK = {s = c52 "urbaanistua"} ;
+lin urbaanisuus_NK = {s = d40 "urbaanisuus"} ;
+lin urbaanius_NK = {s = d40 "urbaanius"} ;
+lin urbanisaatio_NK = {s = d03 "urbanisaatio"} ;
+lin urbanisoitua_VK = {s = c52A "urbanisoitua"} ;
+lin urea_NK = {s = d12 "urea"} ;
+lin urhea_AK = {s = d15 "urhea"} ;
+--+ lin urheasti_AdvK = {s = c99 "urheasti"} ;
+lin urheilija_NK = {s = d12 "urheilija"} ;
+lin urheilla_VK = {s = c67 "urheilla"} ;
+lin urheilu_NK = {s = d02 "urheilu"} ;
+lin urheilullinen_NK = {s = d38 "urheilullinen"} ;
+lin urheus_NK = {s = d40 "urheus"} ;
+lin urho_NK = {s = d01 "urho"} ;
+lin urhoollinen_AK = {s = d38 "urhoollinen"} ;
+--+ lin urhoollisesti_AdvK = {s = c99 "urhoollisesti"} ;
+lin urhoollisuus_NK = {s = d40 "urhoollisuus"} ;
+lin urina_NK = {s = d12 "urina"} ;
+lin urinaali_NK = {s = d05 "urinaali"} ;
+lin urista_VK = {s = c66 "urista"} ;
+lin urittaa_VK = {s = c53A "urittaa"} ;
+lin uritus_NK = {s = d39 "uritus"} ;
+lin urjeta_VK = {s = c72A "urjeta"} ;
+lin urkinta_NK = {s = d09A "urkinta"} ;
+lin urkkia_VK = {s = c61A "urkkia"} ;
+lin urkkija_NK = {s = d12 "urkkija"} ;
+lin urkuparvi_NK = {s = d07 "urkuparvi"} ;
+lin urkuri_NK = {s = d06 "urkuri"} ;
+lin urologi_NK = {s = d05 "urologi"} ;
+lin urologia_NK = {s = d12 "urologia"} ;
+lin urologinen_NK = {s = d38 "urologinen"} ;
+lin uros_NK = {s = d39 "uros"} ;
+lin urpiainen_NK = {s = d38 "urpiainen"} ;
+lin urpu_NK = {s = d01A "urpu"} ;
+lin urputtaa_VK = {s = c53A "urputtaa"} ;
+lin urputus_NK = {s = d39 "urputus"} ;
+lin urtikaria_NK = {s = d12 "urtikaria"} ;
+--? lin urut_NK = {s = d01A "urut"} ;
+lin usalainen_NK = {s = d38 "usalainen"} ;
+lin usea_AK = {s = d15 "usea"} ;
+lin useammanlainen_NK = {s = d38 "useammanlainen"} ;
+lin useanlainen_NK = {s = d38 "useanlainen"} ;
+--+ lin useasti_AdvK = {s = c99 "useasti"} ;
+lin useimmiten_AdvK = {s = c99 "useimmiten"} ;
+lin usein_AdvK = {s = c99 "usein"} ;
+lin useus_NK = {s = d40 "useus"} ;
+--+ lin uskaliaasti_AdvK = {s = c99 "uskaliaasti"} ;
+lin uskaliaisuus_NK = {s = d40 "uskaliaisuus"} ;
+lin uskalias_AK = {s = d41 "uskalias"} ;
+lin uskalikko_NK = {s = d01A "uskalikko"} ;
+lin uskallus_NK = {s = d39 "uskallus"} ;
+lin uskaltaa_VK = {s = c54A "uskaltaa"} ;
+lin uskaltautua_VK = {s = c52A "uskaltautua"} ;
+lin usko_NK = {s = d01 "usko"} ;
+lin uskoa_VK = {s = c52 "uskoa"} ;
+lin uskoinen_AK = {s = d38 "uskoinen"} ;
+--+ lin uskoisesti_AdvK = {s = c99 "uskoisesti"} ;
+lin uskoisuus_NK = {s = d40 "uskoisuus"} ;
+lin uskollinen_AK = {s = d38 "uskollinen"} ;
+--+ lin uskollisesti_AdvK = {s = c99 "uskollisesti"} ;
+lin uskollisuus_NK = {s = d40 "uskollisuus"} ;
+lin uskomaton_NK = {s = d34A "uskomaton"} ;
+lin uskomattomasti_AdvK = {s = c99 "uskomattomasti"} ;
+lin uskomattomuus_NK = {s = d40 "uskomattomuus"} ;
+lin uskomus_NK = {s = d39 "uskomus"} ;
+lin uskonnollinen_AK = {s = d38 "uskonnollinen"} ;
+--+ lin uskonnollisesti_AdvK = {s = c99 "uskonnollisesti"} ;
+lin uskonnollisuus_NK = {s = d40 "uskonnollisuus"} ;
+lin uskonto_NK = {s = d01A "uskonto"} ;
+lin uskotella_VK = {s = c67A "uskotella"} ;
+lin uskoton_NK = {s = d34A "uskoton"} ;
+lin uskottava_AK = {s = d10 "uskottava"} ;
+--+ lin uskottavasti_AdvK = {s = c99 "uskottavasti"} ;
+lin uskottavuus_NK = {s = d40 "uskottavuus"} ;
+lin uskottelu_NK = {s = d02 "uskottelu"} ;
+lin uskottomuus_NK = {s = d40 "uskottomuus"} ;
+lin uskottu_NK = {s = d01A "uskottu"} ;
+lin uskoutua_VK = {s = c52A "uskoutua"} ;
+lin uskova_NK = {s = d10 "uskova"} ;
+lin uskovainen_NK = {s = d38 "uskovainen"} ;
+lin ussa_NK = {s = d10 "ussa"} ;
+lin usuttaa_VK = {s = c53A "usuttaa"} ;
+lin usutus_NK = {s = d39 "usutus"} ;
+lin usva_NK = {s = d10 "usva"} ;
+lin usvainen_NK = {s = d38 "usvainen"} ;
+lin usvaisuus_NK = {s = d40 "usvaisuus"} ;
+lin utare_NK = {s = d49 "utare"} ;
+--+ lin uteliaasti_AdvK = {s = c99 "uteliaasti"} ;
+lin uteliaisuus_NK = {s = d40 "uteliaisuus"} ;
+lin utelias_AK = {s = d41 "utelias"} ;
+lin utelija_NK = {s = d12 "utelija"} ;
+lin utelu_NK = {s = d02 "utelu"} ;
+lin utilitarismi_NK = {s = d05 "utilitarismi"} ;
+lin utilitaristi_NK = {s = d05 "utilitaristi"} ;
+lin utilitaristinen_NK = {s = d38 "utilitaristinen"} ;
+lin utooppinen_NK = {s = d38 "utooppinen"} ;
+lin utopia_NK = {s = d12 "utopia"} ;
+lin utopisti_NK = {s = d05 "utopisti"} ;
+lin utopistinen_AK = {s = d38 "utopistinen"} ;
+--+ lin utopistisesti_AdvK = {s = c99 "utopistisesti"} ;
+lin utopistisuus_NK = {s = d40 "utopistisuus"} ;
+lin utu_NK = {s = d01A "utu"} ;
+lin utuinen_NK = {s = d38 "utuinen"} ;
+lin uudelleen_AdvK = {s = c99 "uudelleen"} ;
+lin uudenlainen_NK = {s = d38 "uudenlainen"} ;
+lin uudennos_NK = {s = d39 "uudennos"} ;
+lin uudennus_NK = {s = d39 "uudennus"} ;
+lin uudentaa_VK = {s = c54A "uudentaa"} ;
+lin uudentua_VK = {s = c52A "uudentua"} ;
+lin uudestaan_AdvK = {s = c99 "uudestaan"} ;
+lin uudestisyntyminen_NK = {s = d38 "uudestisyntyminen"} ;
+lin uudestisyntynyt_NK = {s = d47 "uudestisyntynyt"} ;
+lin uudin_NK = {s = d33A "uudin"} ;
+lin uudistaa_VK = {s = c53 "uudistaa"} ;
+lin uudistaja_NK = {s = d10 "uudistaja"} ;
+lin uudistua_VK = {s = c52 "uudistua"} ;
+lin uudistumaton_NK = {s = d34A "uudistumaton"} ;
+lin uudistus_NK = {s = d39 "uudistus"} ;
+lin uuhi_NK = {s = d23 "uuhi"} ;
+lin uuma_NK = {s = d10 "uuma"} ;
+lin uumen_NK = {s = d32 "uumen"} ;
+lin uumoilla_VK = {s = c67 "uumoilla"} ;
+lin uumoilu_NK = {s = d02 "uumoilu"} ;
+lin uuni_NK = {s = d05 "uuni"} ;
+lin uunillinen_NK = {s = d38 "uunillinen"} ;
+lin uuno_NK = {s = d01 "uuno"} ;
+lin uupua_VK = {s = c52A "uupua"} ;
+lin uupumaton_NK = {s = d34A "uupumaton"} ;
+lin uupumattomasti_AdvK = {s = c99 "uupumattomasti"} ;
+lin uupumattomuus_NK = {s = d40 "uupumattomuus"} ;
+lin uupumus_NK = {s = d39 "uupumus"} ;
+lin uuras_NK = {s = d41 "uuras"} ;
+lin uurastaa_VK = {s = c53 "uurastaa"} ;
+lin uurastaja_NK = {s = d10 "uurastaja"} ;
+lin uurastus_NK = {s = d39 "uurastus"} ;
+lin uurna_NK = {s = d10 "uurna"} ;
+lin uurre_NK = {s = d48A "uurre"} ;
+lin uurros_NK = {s = d39 "uurros"} ;
+lin uurrostaa_VK = {s = c53 "uurrostaa"} ;
+lin uurrostus_NK = {s = d39 "uurrostus"} ;
+lin uurtaa_VK = {s = c54A "uurtaa"} ;
+lin uurteellinen_NK = {s = d38 "uurteellinen"} ;
+lin uurteinen_NK = {s = d38 "uurteinen"} ;
+lin uurteisuus_NK = {s = d40 "uurteisuus"} ;
+lin uurto_NK = {s = d01A "uurto"} ;
+lin uusi_NK = {s = d27 "uusi"} ;
+lin uusia_VK = {s = c61 "uusia"} ;
+lin uusija_NK = {s = d12 "uusija"} ;
+lin uusinta_NK = {s = d09A "uusinta"} ;
+lin uusinto_NK = {s = d01A "uusinto"} ;
+lin uusiseelantilainen_NK = {s = d38 "uusiseelantilainen"} ;
+lin uusitestamentillinen_NK = {s = d38 "uusitestamentillinen"} ;
+lin uusiutua_VK = {s = c52A "uusiutua"} ;
+--+ lin uusrahvaanomaisesti_AdvK = {s = c99 "uusrahvaanomaisesti"} ;
+lin uute_NK = {s = d48A "uute"} ;
+lin uutinen_NK = {s = d38 "uutinen"} ;
+lin uutismotti_NK = {s = d05A "uutismotti"} ;
+lin uutisoida_VK = {s = c62 "uutisoida"} ;
+lin uuttaa_VK = {s = c53A "uuttaa"} ;
+lin uuttera_AK = {s = d10 "uuttera"} ;
+--+ lin uutterasti_AdvK = {s = c99 "uutterasti"} ;
+lin uutteruus_NK = {s = d40 "uutteruus"} ;
+lin uutto_NK = {s = d01A "uutto"} ;
+lin uuttu_NK = {s = d01A "uuttu"} ;
+lin uutukainen_NK = {s = d38 "uutukainen"} ;
+lin uutuus_NK = {s = d40 "uutuus"} ;
+lin uuvahdus_NK = {s = d39 "uuvahdus"} ;
+lin uuvahtaa_VK = {s = c53A "uuvahtaa"} ;
+lin uuvuksiin_AdvK = {s = c99 "uuvuksiin"} ;
+lin uuvuksissa_AdvK = {s = c99 "uuvuksissa"} ;
+lin uuvuttaa_VK = {s = c53A "uuvuttaa"} ;
+lin uuvutus_NK = {s = d39 "uuvutus"} ;
+lin vaade_NK = {s = d48A "vaade"} ;
+lin vaadin_NK = {s = d33A "vaadin"} ;
+lin vaahdota_VK = {s = c74A "vaahdota"} ;
+lin vaahdote_NK = {s = d48A "vaahdote"} ;
+lin vaahdotin_NK = {s = d33A "vaahdotin"} ;
+lin vaahdottaa_VK = {s = c53A "vaahdottaa"} ;
+lin vaahdotus_NK = {s = d39 "vaahdotus"} ;
+lin vaahtera_NK = {s = d13 "vaahtera"} ;
+lin vaahto_NK = {s = d01A "vaahto"} ;
+lin vaahtoinen_NK = {s = d38 "vaahtoinen"} ;
+lin vaahtoisuus_NK = {s = d40 "vaahtoisuus"} ;
+lin vaahtoutua_VK = {s = c52A "vaahtoutua"} ;
+lin vaaita_VK = {s = c69 "vaaita"} ;
+lin vaaitus_NK = {s = d39 "vaaitus"} ;
+lin vaaka_NK = {s = d09A "vaaka"} ;
+lin vaakkua_VK = {s = c52A "vaakkua"} ;
+lin vaaksa_NK = {s = d09 "vaaksa"} ;
+lin vaaksiainen_NK = {s = d38 "vaaksiainen"} ;
+lin vaakuna_NK = {s = d12 "vaakuna"} ;
+lin vaalea_NK = {s = d15 "vaalea"} ;
+lin vaaleaverikko'_NK = {s = d04A "vaaleaverikkö"} ;
+lin vaalennus_NK = {s = d39 "vaalennus"} ;
+lin vaalentaa_VK = {s = c54A "vaalentaa"} ;
+lin vaalentua_VK = {s = c52A "vaalentua"} ;
+lin vaaleta_VK = {s = c72 "vaaleta"} ;
+lin vaaleus_NK = {s = d40 "vaaleus"} ;
+lin vaali_NK = {s = d05 "vaali"} ;
+lin vaalia_VK = {s = c61 "vaalia"} ;
+lin vaalinta_NK = {s = d09A "vaalinta"} ;
+lin vaan_AdvK = {s = c99 "vaan"} ;
+lin vaania_VK = {s = c61 "vaania"} ;
+lin vaanija_NK = {s = d12 "vaanija"} ;
+lin vaaninta_NK = {s = d09A "vaaninta"} ;
+lin vaapertaa_VK = {s = c54A "vaapertaa"} ;
+lin vaappu_NK = {s = d01A "vaappu"} ;
+lin vaappua_VK = {s = c52A "vaappua"} ;
+lin vaapsahainen_NK = {s = d38 "vaapsahainen"} ;
+lin vaapsiainen_NK = {s = d38 "vaapsiainen"} ;
+lin vaapukka_NK = {s = d14A "vaapukka"} ;
+lin vaapunta_NK = {s = d09A "vaapunta"} ;
+lin vaaputtaa_VK = {s = c53A "vaaputtaa"} ;
+lin vaaputus_NK = {s = d39 "vaaputus"} ;
+lin vaara_1_NK = {s = d09 "vaara"} ;
+lin vaara_2_NK = {s = d09 "vaara"} ;
+lin vaarain_NK = {s = d33 "vaarain"} ;
+lin vaarainen_NK = {s = d38 "vaarainen"} ;
+lin vaarallinen_AK = {s = d38 "vaarallinen"} ;
+--+ lin vaarallisesti_AdvK = {s = c99 "vaarallisesti"} ;
+lin vaarallisuus_NK = {s = d40 "vaarallisuus"} ;
+lin vaaranlaki_NK = {s = d07A "vaaranlaki"} ;
+lin vaarantaa_VK = {s = c54A "vaarantaa"} ;
+lin vaarantua_VK = {s = c52A "vaarantua"} ;
+lin vaaraton_NK = {s = d34A "vaaraton"} ;
+lin vaarattomuus_NK = {s = d40 "vaarattomuus"} ;
+lin vaari_1_NK = {s = d05 "vaari"} ;
+lin vaari_2_AdvK = {s = c99 "vaari"} ;
+lin vaarna_NK = {s = d09 "vaarna"} ;
+lin vaarnata_VK = {s = c73 "vaarnata"} ;
+lin vaarnaus_NK = {s = d39 "vaarnaus"} ;
+lin vaarua_VK = {s = c52 "vaarua"} ;
+lin vaarunta_NK = {s = d09A "vaarunta"} ;
+lin vaasi_NK = {s = d05 "vaasi"} ;
+lin vaata_VK = {s = c73A "vaata"} ;
+lin vaate_NK = {s = d48A "vaate"} ;
+lin vaatehtia_VK = {s = c61A "vaatehtia"} ;
+lin vaatehtimo_NK = {s = d02 "vaatehtimo"} ;
+--+ lin vaateliaasti_AdvK = {s = c99 "vaateliaasti"} ;
+lin vaateliaisuus_NK = {s = d40 "vaateliaisuus"} ;
+lin vaatelias_AK = {s = d41 "vaatelias"} ;
+lin vaatettaa_VK = {s = c53A "vaatettaa"} ;
+lin vaatetus_NK = {s = d39 "vaatetus"} ;
+lin vaatia_VK = {s = c61A "vaatia"} ;
+lin vaatija_NK = {s = d12 "vaatija"} ;
+lin vaatimaton_NK = {s = d34A "vaatimaton"} ;
+lin vaatimattomasti_AdvK = {s = c99 "vaatimattomasti"} ;
+lin vaatimattomuus_NK = {s = d40 "vaatimattomuus"} ;
+lin vaatimus_NK = {s = d39 "vaatimus"} ;
+lin vaativa_AK = {s = d10 "vaativa"} ;
+lin vaativainen_NK = {s = d38 "vaativainen"} ;
+--+ lin vaativasti_AdvK = {s = c99 "vaativasti"} ;
+lin vaativuus_NK = {s = d40 "vaativuus"} ;
+lin vaatteinen_NK = {s = d38 "vaatteinen"} ;
+lin vaatturi_NK = {s = d06 "vaatturi"} ;
+lin vadelma_NK = {s = d10 "vadelma"} ;
+lin vadelmikko_NK = {s = d04A "vadelmikko"} ;
+lin vadi_NK = {s = d05 "vadi"} ;
+lin vadillinen_NK = {s = d38 "vadillinen"} ;
+lin vaellella_VK = {s = c67A "vaellella"} ;
+lin vaellus_NK = {s = d39 "vaellus"} ;
+lin vaeltaa_VK = {s = c54A "vaeltaa"} ;
+lin vaeltaja_NK = {s = d10 "vaeltaja"} ;
+lin vaeltelu_NK = {s = d02 "vaeltelu"} ;
+lin vagina_NK = {s = d13 "vagina"} ;
+lin vaginismi_NK = {s = d05 "vaginismi"} ;
+lin vaha_NK = {s = d09 "vaha"} ;
+lin vahakas_NK = {s = d41A "vahakas"} ;
+lin vahata_VK = {s = c73 "vahata"} ;
+lin vahaus_NK = {s = d39 "vahaus"} ;
+lin vahdata_VK = {s = c73A "vahdata"} ;
+lin vahdinta_NK = {s = d09A "vahdinta"} ;
+lin vahingoittaa_VK = {s = c53A "vahingoittaa"} ;
+lin vahingoittua_VK = {s = c52A "vahingoittua"} ;
+lin vahingoittuma_NK = {s = d10 "vahingoittuma"} ;
+lin vahingoittumaton_NK = {s = d34A "vahingoittumaton"} ;
+lin vahingollinen_AK = {s = d38 "vahingollinen"} ;
+--+ lin vahingollisesti_AdvK = {s = c99 "vahingollisesti"} ;
+lin vahingollisuus_NK = {s = d40 "vahingollisuus"} ;
+lin vahinko_NK = {s = d01A "vahinko"} ;
+lin vahti_NK = {s = d05A "vahti"} ;
+lin vahtia_VK = {s = c61A "vahtia"} ;
+lin vahva_AK = {s = d09 "vahva"} ;
+lin vahvalti_AdvK = {s = c99 "vahvalti"} ;
+--+ lin vahvasti_AdvK = {s = c99 "vahvasti"} ;
+lin vahvennos_NK = {s = d39 "vahvennos"} ;
+lin vahvennus_NK = {s = d39 "vahvennus"} ;
+lin vahventaa_VK = {s = c54A "vahventaa"} ;
+lin vahventua_VK = {s = c52A "vahventua"} ;
+lin vahventuma_NK = {s = d10 "vahventuma"} ;
+lin vahvero_NK = {s = d02 "vahvero"} ;
+lin vahveta_VK = {s = c72 "vahveta"} ;
+lin vahvike_NK = {s = d48A "vahvike"} ;
+lin vahvikkeinen_NK = {s = d38 "vahvikkeinen"} ;
+lin vahvistaa_VK = {s = c53 "vahvistaa"} ;
+lin vahvistaja_NK = {s = d10 "vahvistaja"} ;
+lin vahvistamaton_NK = {s = d34A "vahvistamaton"} ;
+lin vahviste_NK = {s = d48 "vahviste"} ;
+lin vahvisteinen_NK = {s = d38 "vahvisteinen"} ;
+lin vahvistin_NK = {s = d33 "vahvistin"} ;
+lin vahvistua_VK = {s = c52 "vahvistua"} ;
+lin vahvistus_NK = {s = d39 "vahvistus"} ;
+lin vahvistuttaa_VK = {s = c53A "vahvistuttaa"} ;
+lin vahvuinen_NK = {s = d38 "vahvuinen"} ;
+lin vahvuus_NK = {s = d40 "vahvuus"} ;
+lin vai_AdvK = {s = c99 "vai"} ;
+lin vaiennus_NK = {s = d39 "vaiennus"} ;
+lin vaientaa_VK = {s = c54A "vaientaa"} ;
+lin vaientua_VK = {s = c52A "vaientua"} ;
+lin vaieta_VK = {s = c72A "vaieta"} ;
+lin vaihdanta_NK = {s = d09A "vaihdanta"} ;
+lin vaihde_NK = {s = d48A "vaihde"} ;
+lin vaihdella_VK = {s = c67A "vaihdella"} ;
+lin vaihdettava_NK = {s = d10 "vaihdettava"} ;
+lin vaihdettavuus_NK = {s = d40 "vaihdettavuus"} ;
+lin vaihdin_NK = {s = d33A "vaihdin"} ;
+lin vaihdokas_NK = {s = d41A "vaihdokas"} ;
+lin vaihdokki_NK = {s = d05A "vaihdokki"} ;
+lin vaihdos_NK = {s = d39 "vaihdos"} ;
+lin vaihdunta_NK = {s = d09A "vaihdunta"} ;
+lin vaihe_NK = {s = d48 "vaihe"} ;
+lin vaiheikas_NK = {s = d41A "vaiheikas"} ;
+lin vaiheikkuus_NK = {s = d40 "vaiheikkuus"} ;
+lin vaiheinen_NK = {s = d38 "vaiheinen"} ;
+lin vaiheistaa_VK = {s = c53 "vaiheistaa"} ;
+lin vaiheistus_NK = {s = d39 "vaiheistus"} ;
+lin vaiheittaa_VK = {s = c53A "vaiheittaa"} ;
+lin vaiheittain_AdvK = {s = c99 "vaiheittain"} ;
+lin vaiheittainen_AK = {s = d38 "vaiheittainen"} ;
+--+ lin vaiheittaisesti_AdvK = {s = c99 "vaiheittaisesti"} ;
+lin vaihtaa_VK = {s = c56A "vaihtaa"} ;
+lin vaihtaja_NK = {s = d10 "vaihtaja"} ;
+lin vaihteinen_NK = {s = d38 "vaihteinen"} ;
+lin vaihteisto_NK = {s = d01 "vaihteisto"} ;
+lin vaihtelu_NK = {s = d02 "vaihtelu"} ;
+lin vaihto_NK = {s = d01A "vaihto"} ;
+--+ lin vaihtoehtoisesti_AdvK = {s = c99 "vaihtoehtoisesti"} ;
+lin vaihtosuuntaaja_NK = {s = d10 "vaihtosuuntaaja"} ;
+lin vaihtua_VK = {s = c52A "vaihtua"} ;
+lin vaihtuvuus_NK = {s = d40 "vaihtuvuus"} ;
+lin vaijeri_NK = {s = d06 "vaijeri"} ;
+lin vaikea_AK = {s = d15 "vaikea"} ;
+--+ lin vaikeaselkoisesti_AdvK = {s = c99 "vaikeaselkoisesti"} ;
+lin vaikeaselkoisuus_NK = {s = d40 "vaikeaselkoisuus"} ;
+--+ lin vaikeasti_AdvK = {s = c99 "vaikeasti"} ;
+lin vaikeroida_VK = {s = c62 "vaikeroida"} ;
+lin vaikerointi_NK = {s = d05A "vaikerointi"} ;
+lin vaikerrella_VK = {s = c67A "vaikerrella"} ;
+lin vaikerrus_NK = {s = d39 "vaikerrus"} ;
+lin vaikertaa_VK = {s = c54A "vaikertaa"} ;
+lin vaikeus_NK = {s = d40 "vaikeus"} ;
+lin vaikeuttaa_VK = {s = c53A "vaikeuttaa"} ;
+lin vaikeutua_VK = {s = c52A "vaikeutua"} ;
+lin vaikeutus_NK = {s = d39 "vaikeutus"} ;
+lin vaikka_AdvK = {s = c99 "vaikka"} ;
+lin vaikku_NK = {s = d01A "vaikku"} ;
+lin vaikute_NK = {s = d48A "vaikute"} ;
+lin vaikutelma_NK = {s = d10 "vaikutelma"} ;
+lin vaikutin_NK = {s = d33A "vaikutin"} ;
+lin vaikuttaa_VK = {s = c53A "vaikuttaa"} ;
+lin vaikuttaja_NK = {s = d10 "vaikuttaja"} ;
+lin vaikuttava_AK = {s = d10 "vaikuttava"} ;
+--+ lin vaikuttavasti_AdvK = {s = c99 "vaikuttavasti"} ;
+lin vaikuttavuus_NK = {s = d40 "vaikuttavuus"} ;
+lin vaikutteinen_AK = {s = d38 "vaikutteinen"} ;
+--+ lin vaikutteisesti_AdvK = {s = c99 "vaikutteisesti"} ;
+lin vaikutteisuus_NK = {s = d40 "vaikutteisuus"} ;
+lin vaikuttua_VK = {s = c52A "vaikuttua"} ;
+lin vaikutuksinen_NK = {s = d38 "vaikutuksinen"} ;
+lin vaikutus_NK = {s = d39 "vaikutus"} ;
+lin vaikutusaika_NK = {s = d09A "vaikutusaika"} ;
+lin vailla_AdvK = {s = c99 "vailla"} ;
+lin vaille_AdvK = {s = c99 "vaille"} ;
+lin vaillinainen_AK = {s = d38 "vaillinainen"} ;
+--+ lin vaillinaisesti_AdvK = {s = c99 "vaillinaisesti"} ;
+lin vaillinaisuus_NK = {s = d40 "vaillinaisuus"} ;
+lin vaillinki_NK = {s = d05A "vaillinki"} ;
+lin vaimea_NK = {s = d15 "vaimea"} ;
+lin vaimennin_NK = {s = d33A "vaimennin"} ;
+lin vaimennus_NK = {s = d39 "vaimennus"} ;
+lin vaimentaa_VK = {s = c54A "vaimentaa"} ;
+lin vaimentua_VK = {s = c52A "vaimentua"} ;
+lin vaimeta_VK = {s = c72 "vaimeta"} ;
+lin vaimo_NK = {s = d01 "vaimo"} ;
+lin vain_AdvK = {s = c99 "vain"} ;
+lin vainaa_NK = {s = d17 "vainaa"} ;
+lin vainaja_NK = {s = d10 "vainaja"} ;
+lin vainen_AdvK = {s = c99 "vainen"} ;
+lin vaineskaan_AdvK = {s = c99 "vaineskaan"} ;
+lin vainio_NK = {s = d03 "vainio"} ;
+lin vaino_NK = {s = d01 "vaino"} ;
+lin vainoaja_NK = {s = d10 "vainoaja"} ;
+lin vainoharhaisuus_NK = {s = d40 "vainoharhaisuus"} ;
+lin vainota_VK = {s = c74 "vainota"} ;
+lin vainu_NK = {s = d01 "vainu"} ;
+lin vainuinen_NK = {s = d38 "vainuinen"} ;
+lin vainuta_VK = {s = c74 "vainuta"} ;
+lin vaippa_NK = {s = d09A "vaippa"} ;
+lin vaippainen_NK = {s = d38 "vaippainen"} ;
+lin vaipua_VK = {s = c52A "vaipua"} ;
+lin vaisto_NK = {s = d01 "vaisto"} ;
+lin vaistoinen_AK = {s = d38 "vaistoinen"} ;
+--+ lin vaistoisesti_AdvK = {s = c99 "vaistoisesti"} ;
+lin vaistoisuus_NK = {s = d40 "vaistoisuus"} ;
+--+ lin vaistomaisesti_AdvK = {s = c99 "vaistomaisesti"} ;
+lin vaistomaisuus_NK = {s = d40 "vaistomaisuus"} ;
+--+ lin vaistonvaraisesti_AdvK = {s = c99 "vaistonvaraisesti"} ;
+lin vaistota_VK = {s = c74 "vaistota"} ;
+lin vaisu_AK = {s = d01 "vaisu"} ;
+--+ lin vaisusti_AdvK = {s = c99 "vaisusti"} ;
+lin vaisuus_NK = {s = d40 "vaisuus"} ;
+--+ lin vaiteliaasti_AdvK = {s = c99 "vaiteliaasti"} ;
+lin vaiteliaisuus_NK = {s = d40 "vaiteliaisuus"} ;
+lin vaitelias_AK = {s = d41 "vaitelias"} ;
+lin vaiti_AdvK = {s = c99 "vaiti"} ;
+lin vaitonainen_AK = {s = d38 "vaitonainen"} ;
+--+ lin vaitonaisesti_AdvK = {s = c99 "vaitonaisesti"} ;
+lin vaitonaisuus_NK = {s = d40 "vaitonaisuus"} ;
+lin vaiva_NK = {s = d09 "vaiva"} ;
+lin vaivaaja_NK = {s = d10 "vaivaaja"} ;
+lin vaivaantua_VK = {s = c52A "vaivaantua"} ;
+lin vaivainen_AK = {s = d38 "vaivainen"} ;
+--+ lin vaivaisesti_AdvK = {s = c99 "vaivaisesti"} ;
+lin vaivalloinen_AK = {s = d38 "vaivalloinen"} ;
+--+ lin vaivalloisesti_AdvK = {s = c99 "vaivalloisesti"} ;
+lin vaivalloisuus_NK = {s = d40 "vaivalloisuus"} ;
+lin vaivata_VK = {s = c73 "vaivata"} ;
+lin vaivaton_NK = {s = d34A "vaivaton"} ;
+lin vaivattomasti_AdvK = {s = c99 "vaivattomasti"} ;
+lin vaivattomuus_NK = {s = d40 "vaivattomuus"} ;
+lin vaivaus_NK = {s = d39 "vaivaus"} ;
+lin vaivautua_VK = {s = c52A "vaivautua"} ;
+lin vaivihkaa_AdvK = {s = c99 "vaivihkaa"} ;
+lin vaivihkainen_NK = {s = d38 "vaivihkainen"} ;
+lin vaivoin_AdvK = {s = c99 "vaivoin"} ;
+lin vaivuttaa_VK = {s = c53A "vaivuttaa"} ;
+lin vaivutus_NK = {s = d39 "vaivutus"} ;
+lin vaja_NK = {s = d09 "vaja"} ;
+lin vajaa_NK = {s = d17 "vajaa"} ;
+lin vajaala'mpo'isyys_NK = {s = d40 "vajaalämpöisyys"} ;
+lin vajaamittaisuus_NK = {s = d40 "vajaamittaisuus"} ;
+lin vajaasa'rma'isyys_NK = {s = d40 "vajaasärmäisyys"} ;
+--+ lin vajaatehoisesti_AdvK = {s = c99 "vajaatehoisesti"} ;
+--+ lin vajanaisesti_AdvK = {s = c99 "vajanaisesti"} ;
+lin vajauksellinen_NK = {s = d38 "vajauksellinen"} ;
+lin vajauksellisuus_NK = {s = d40 "vajauksellisuus"} ;
+lin vajaus_NK = {s = d39 "vajaus"} ;
+lin vajauttaa_VK = {s = c53A "vajauttaa"} ;
+lin vajava_NK = {s = d10 "vajava"} ;
+lin vajavainen_AK = {s = d38 "vajavainen"} ;
+--+ lin vajavaisesti_AdvK = {s = c99 "vajavaisesti"} ;
+lin vajavuus_NK = {s = d40 "vajavuus"} ;
+lin vaje_NK = {s = d48 "vaje"} ;
+lin vajennus_NK = {s = d39 "vajennus"} ;
+lin vajentaa_VK = {s = c54A "vajentaa"} ;
+lin vajentua_VK = {s = c52A "vajentua"} ;
+lin vajeta_VK = {s = c72 "vajeta"} ;
+lin vajoama_NK = {s = d10 "vajoama"} ;
+lin vajota_VK = {s = c74 "vajota"} ;
+lin vajottaa_VK = {s = c53A "vajottaa"} ;
+lin vajuuttaa_VK = {s = c53A "vajuuttaa"} ;
+lin vaka_AdvK = {s = c99 "vaka"} ;
+lin vakaa_AK = {s = d17 "vakaa"} ;
+lin vakaaja_NK = {s = d10 "vakaaja"} ;
+lin vakaannuttaa_VK = {s = c53A "vakaannuttaa"} ;
+lin vakaantua_VK = {s = c52A "vakaantua"} ;
+--+ lin vakaasti_AdvK = {s = c99 "vakaasti"} ;
+lin vakain_NK = {s = d33 "vakain"} ;
+lin vakainen_NK = {s = d38 "vakainen"} ;
+lin vakallinen_NK = {s = d38 "vakallinen"} ;
+lin vakanssi_NK = {s = d05 "vakanssi"} ;
+lin vakaumuksellinen_AK = {s = d38 "vakaumuksellinen"} ;
+--+ lin vakaumuksellisesti_AdvK = {s = c99 "vakaumuksellisesti"} ;
+lin vakaumuksellisuus_NK = {s = d40 "vakaumuksellisuus"} ;
+lin vakaumus_NK = {s = d39 "vakaumus"} ;
+lin vakaus_1_NK = {s = d39 "vakaus"} ;
+lin vakaus_2_NK = {s = d40 "vakaus"} ;
+lin vakauttaa_1_VK = {s = c53A "vakauttaa"} ;
+lin vakauttaa_2_VK = {s = c53A "vakauttaa"} ;
+lin vakautua_VK = {s = c52A "vakautua"} ;
+lin vakautus_NK = {s = d39 "vakautus"} ;
+lin vakava_AK = {s = d10 "vakava"} ;
+lin vakavaraistua_VK = {s = c52 "vakavaraistua"} ;
+--+ lin vakavasti_AdvK = {s = c99 "vakavasti"} ;
+lin vakavissaan_AdvK = {s = c99 "vakavissaan"} ;
+lin vakavoida_VK = {s = c62 "vakavoida"} ;
+lin vakavoittaa_VK = {s = c53A "vakavoittaa"} ;
+lin vakavoitua_VK = {s = c52A "vakavoitua"} ;
+lin vakavuus_NK = {s = d40 "vakavuus"} ;
+lin vakiinnuttaa_VK = {s = c53A "vakiinnuttaa"} ;
+lin vakiinnutus_NK = {s = d39 "vakiinnutus"} ;
+lin vakiintua_VK = {s = c52A "vakiintua"} ;
+lin vakinainen_AK = {s = d38 "vakinainen"} ;
+--+ lin vakinaisesti_AdvK = {s = c99 "vakinaisesti"} ;
+lin vakinaistaa_VK = {s = c53 "vakinaistaa"} ;
+lin vakinaistua_VK = {s = c52 "vakinaistua"} ;
+lin vakinaistuttaa_VK = {s = c53A "vakinaistuttaa"} ;
+lin vakinaisuus_NK = {s = d40 "vakinaisuus"} ;
+lin vakio_NK = {s = d03 "vakio"} ;
+lin vakioida_VK = {s = c62 "vakioida"} ;
+lin vakioinen_NK = {s = d38 "vakioinen"} ;
+lin vakiointi_NK = {s = d05A "vakiointi"} ;
+lin vakioisuus_NK = {s = d40 "vakioisuus"} ;
+lin vakioitua_VK = {s = c52A "vakioitua"} ;
+lin vakiokoko_NK = {s = d01A "vakiokoko"} ;
+lin vakiopistooliammunta_NK = {s = d09A "vakiopistooliammunta"} ;
+lin vakiovarusteinen_NK = {s = d38 "vakiovarusteinen"} ;
+lin vakituinen_AK = {s = d38 "vakituinen"} ;
+--+ lin vakituisesti_AdvK = {s = c99 "vakituisesti"} ;
+lin vakka_NK = {s = d09A "vakka"} ;
+lin vako_NK = {s = d01A "vako"} ;
+lin vakoilija_NK = {s = d12 "vakoilija"} ;
+lin vakoilla_VK = {s = c67 "vakoilla"} ;
+lin vakoilu_NK = {s = d02 "vakoilu"} ;
+lin vaksi_NK = {s = d05 "vaksi"} ;
+lin vakuudellinen_NK = {s = d38 "vakuudellinen"} ;
+lin vakuumi_NK = {s = d06 "vakuumi"} ;
+lin vakuus_NK = {s = d40 "vakuus"} ;
+lin vakuutella_VK = {s = c67A "vakuutella"} ;
+lin vakuutettu_NK = {s = d01A "vakuutettu"} ;
+lin vakuuttaa_VK = {s = c53A "vakuuttaa"} ;
+lin vakuuttamaton_NK = {s = d34A "vakuuttamaton"} ;
+lin vakuuttautua_VK = {s = c52A "vakuuttautua"} ;
+lin vakuuttava_AK = {s = d10 "vakuuttava"} ;
+--+ lin vakuuttavasti_AdvK = {s = c99 "vakuuttavasti"} ;
+lin vakuuttavuus_NK = {s = d40 "vakuuttavuus"} ;
+lin vakuuttelu_NK = {s = d02 "vakuuttelu"} ;
+lin vakuuttua_VK = {s = c52A "vakuuttua"} ;
+lin vakuutus_NK = {s = d39 "vakuutus"} ;
+lin vakuutusaika_NK = {s = d09A "vakuutusaika"} ;
+lin vala_NK = {s = d09 "vala"} ;
+lin valaa_VK = {s = c56 "valaa"} ;
+--+ lin valaehtoisesti_AdvK = {s = c99 "valaehtoisesti"} ;
+lin valahdus_NK = {s = d39 "valahdus"} ;
+lin valahtaa_VK = {s = c53A "valahtaa"} ;
+lin valaisin_NK = {s = d33 "valaisin"} ;
+lin valaista_VK = {s = c66 "valaista"} ;
+lin valaistua_VK = {s = c52 "valaistua"} ;
+lin valaistus_NK = {s = d39 "valaistus"} ;
+lin valaisu_NK = {s = d02 "valaisu"} ;
+lin valaja_NK = {s = d10 "valaja"} ;
+lin valakka_NK = {s = d14A "valakka"} ;
+lin valallinen_NK = {s = d38 "valallinen"} ;
+lin valannainen_NK = {s = d38 "valannainen"} ;
+lin valannos_NK = {s = d39 "valannos"} ;
+lin valanta_NK = {s = d09A "valanta"} ;
+lin valantehnyt_NK = {s = d47 "valantehnyt"} ;
+lin valanvannoja_NK = {s = d10 "valanvannoja"} ;
+lin valapatto_NK = {s = d01A "valapatto"} ;
+lin valapattoinen_NK = {s = d38 "valapattoinen"} ;
+lin valapattoisuus_NK = {s = d40 "valapattoisuus"} ;
+lin valas_NK = {s = d41 "valas"} ;
+lin vale_NK = {s = d48 "vale"} ;
+lin valehdella_VK = {s = c67A "valehdella"} ;
+lin valehtelija_NK = {s = d12 "valehtelija"} ;
+lin valehtelu_NK = {s = d02 "valehtelu"} ;
+lin valella_VK = {s = c67 "valella"} ;
+lin valelma_NK = {s = d10 "valelma"} ;
+lin valelu_NK = {s = d02 "valelu"} ;
+lin valenssi_NK = {s = d05 "valenssi"} ;
+lin valeriaana_NK = {s = d09 "valeriaana"} ;
+lin valhe_NK = {s = d48 "valhe"} ;
+lin valheellinen_AK = {s = d38 "valheellinen"} ;
+--+ lin valheellisesti_AdvK = {s = c99 "valheellisesti"} ;
+lin valheellisuus_NK = {s = d40 "valheellisuus"} ;
+lin validi_NK = {s = d05 "validi"} ;
+lin validiteetti_NK = {s = d05A "validiteetti"} ;
+lin validius_NK = {s = d40 "validius"} ;
+lin valikko_NK = {s = d04A "valikko"} ;
+lin valikoida_VK = {s = c62 "valikoida"} ;
+lin valikoima_NK = {s = d10 "valikoima"} ;
+lin valikoimaton_NK = {s = d34A "valikoimaton"} ;
+lin valikointi_NK = {s = d05A "valikointi"} ;
+lin valikoitua_VK = {s = c52A "valikoitua"} ;
+lin valimo_NK = {s = d02 "valimo"} ;
+lin valin_NK = {s = d33 "valin"} ;
+--+ lin valinnaisesti_AdvK = {s = c99 "valinnaisesti"} ;
+lin valinta_NK = {s = d09A "valinta"} ;
+lin valintainen_NK = {s = d38 "valintainen"} ;
+lin valio_NK = {s = d03 "valio"} ;
+lin valistaa_VK = {s = c53 "valistaa"} ;
+lin valistaja_NK = {s = d10 "valistaja"} ;
+lin valistua_VK = {s = c52 "valistua"} ;
+lin valistus_NK = {s = d39 "valistus"} ;
+lin valistusaika_NK = {s = d09A "valistusaika"} ;
+lin valita_VK = {s = c69 "valita"} ;
+lin valitella_VK = {s = c67A "valitella"} ;
+lin valitettava_AK = {s = d10 "valitettava"} ;
+--+ lin valitettavasti_AdvK = {s = c99 "valitettavasti"} ;
+lin valitettavuus_NK = {s = d40 "valitettavuus"} ;
+lin valitsija_NK = {s = d12 "valitsija"} ;
+lin valitsin_NK = {s = d33 "valitsin"} ;
+lin valittaa_VK = {s = c53A "valittaa"} ;
+lin valittaja_NK = {s = d10 "valittaja"} ;
+lin valittelu_NK = {s = d02 "valittelu"} ;
+lin valitus_NK = {s = d39 "valitus"} ;
+lin valitusaika_NK = {s = d09A "valitusaika"} ;
+lin valituttaa_VK = {s = c53A "valituttaa"} ;
+lin valiutua_VK = {s = c52A "valiutua"} ;
+--? lin valjaat_NK = {s = d41 "valjaat"} ;
+lin valjakko_NK = {s = d04A "valjakko"} ;
+lin valjastaa_VK = {s = c53 "valjastaa"} ;
+lin valjastus_NK = {s = d39 "valjastus"} ;
+lin valjeta_VK = {s = c72A "valjeta"} ;
+lin valju_AK = {s = d01 "valju"} ;
+--+ lin valjusti_AdvK = {s = c99 "valjusti"} ;
+lin valjuus_NK = {s = d40 "valjuus"} ;
+lin valkaisematon_NK = {s = d34A "valkaisematon"} ;
+lin valkaisimo_NK = {s = d02 "valkaisimo"} ;
+lin valkaista_VK = {s = c66 "valkaista"} ;
+lin valkaisu_NK = {s = d02 "valkaisu"} ;
+lin valkama_NK = {s = d10 "valkama"} ;
+lin valkata_VK = {s = c73A "valkata"} ;
+lin valkea_NK = {s = d15 "valkea"} ;
+lin valkeus_NK = {s = d40 "valkeus"} ;
+lin valkkaus_NK = {s = d39 "valkkaus"} ;
+lin valkki_NK = {s = d05A "valkki"} ;
+lin valkohapsinen_NK = {s = d38 "valkohapsinen"} ;
+lin valkohehkuinen_NK = {s = d38 "valkohehkuinen"} ;
+lin valkoinen_NK = {s = d38 "valkoinen"} ;
+lin valkoisuus_NK = {s = d40 "valkoisuus"} ;
+lin valkokangas_NK = {s = d41A "valkokangas"} ;
+lin valkolainen_NK = {s = d38 "valkolainen"} ;
+lin valkomulperi_NK = {s = d06 "valkomulperi"} ;
+lin valkopyykki_NK = {s = d05A "valkopyykki"} ;
+lin valkopa'lvisyys_NK = {s = d40 "valkopälvisyys"} ;
+lin valkosipulivoi_NK = {s = d18 "valkosipulivoi"} ;
+lin valkosormisuus_NK = {s = d40 "valkosormisuus"} ;
+lin valkota'hka'isyys_NK = {s = d40 "valkotähkäisyys"} ;
+lin valkovatsuri_NK = {s = d06 "valkovatsuri"} ;
+lin valkoviini_NK = {s = d05 "valkoviini"} ;
+lin valkuainen_NK = {s = d38 "valkuainen"} ;
+lin valkuaisinen_NK = {s = d38 "valkuaisinen"} ;
+lin valkuaisvirtsaisuus_NK = {s = d40 "valkuaisvirtsaisuus"} ;
+lin valkyria_NK = {s = d12 "valkyria"} ;
+lin vallalla_AdvK = {s = c99 "vallalla"} ;
+lin vallalle_AdvK = {s = c99 "vallalle"} ;
+lin vallan_AdvK = {s = c99 "vallan"} ;
+lin vallankaan_AdvK = {s = c99 "vallankaan"} ;
+lin vallankin_AdvK = {s = c99 "vallankin"} ;
+--+ lin vallankumouksellisesti_AdvK = {s = c99 "vallankumouksellisesti"} ;
+lin vallassa_AdvK = {s = c99 "vallassa"} ;
+lin vallasta_AdvK = {s = c99 "vallasta"} ;
+lin vallata_VK = {s = c73A "vallata"} ;
+lin vallaton_NK = {s = d34A "vallaton"} ;
+lin vallattomasti_AdvK = {s = c99 "vallattomasti"} ;
+lin vallattomuus_NK = {s = d40 "vallattomuus"} ;
+lin vallesmanni_NK = {s = d05 "vallesmanni"} ;
+lin valli_NK = {s = d05 "valli"} ;
+lin vallita_VK = {s = c69 "vallita"} ;
+lin vallitseva_AK = {s = d10 "vallitseva"} ;
+--+ lin vallitsevasti_AdvK = {s = c99 "vallitsevasti"} ;
+lin valloillaan_AdvK = {s = c99 "valloillaan"} ;
+lin valloilleen_AdvK = {s = c99 "valloilleen"} ;
+lin valloittaa_VK = {s = c53A "valloittaa"} ;
+lin valloittaja_NK = {s = d10 "valloittaja"} ;
+lin valloittamaton_NK = {s = d34A "valloittamaton"} ;
+lin valloittava_AK = {s = d10 "valloittava"} ;
+--+ lin valloittavasti_AdvK = {s = c99 "valloittavasti"} ;
+lin valloitus_NK = {s = d39 "valloitus"} ;
+lin valloni_NK = {s = d06 "valloni"} ;
+lin valmennus_NK = {s = d39 "valmennus"} ;
+lin valmentaa_VK = {s = c54A "valmentaa"} ;
+lin valmentaja_NK = {s = d10 "valmentaja"} ;
+lin valmentautua_VK = {s = c52A "valmentautua"} ;
+lin valmis_NK = {s = d41 "valmis"} ;
+lin valmistaa_VK = {s = c53 "valmistaa"} ;
+lin valmistaja_NK = {s = d10 "valmistaja"} ;
+lin valmistamo_NK = {s = d02 "valmistamo"} ;
+lin valmistautua_VK = {s = c52A "valmistautua"} ;
+lin valmistava_AK = {s = d10 "valmistava"} ;
+--+ lin valmistavasti_AdvK = {s = c99 "valmistavasti"} ;
+lin valmiste_NK = {s = d48 "valmiste"} ;
+lin valmisteilla_AdvK = {s = c99 "valmisteilla"} ;
+lin valmisteille_AdvK = {s = c99 "valmisteille"} ;
+lin valmistelija_NK = {s = d12 "valmistelija"} ;
+lin valmistella_VK = {s = c67 "valmistella"} ;
+lin valmistelu_NK = {s = d02 "valmistelu"} ;
+lin valmistua_VK = {s = c52 "valmistua"} ;
+lin valmistumisaika_NK = {s = d09A "valmistumisaika"} ;
+lin valmistus_NK = {s = d39 "valmistus"} ;
+lin valmistusaika_NK = {s = d09A "valmistusaika"} ;
+lin valmius_NK = {s = d40 "valmius"} ;
+lin valmu_NK = {s = d01 "valmu"} ;
+lin valmuska_NK = {s = d13 "valmuska"} ;
+lin valo_NK = {s = d01 "valo"} ;
+lin valoisa_AK = {s = d10 "valoisa"} ;
+--+ lin valoisasti_AdvK = {s = c99 "valoisasti"} ;
+lin valoisuus_NK = {s = d40 "valoisuus"} ;
+--+ lin valokuvauksellisesti_AdvK = {s = c99 "valokuvauksellisesti"} ;
+lin valokuvauksellisuus_NK = {s = d40 "valokuvauksellisuus"} ;
+lin valonleimaus_NK = {s = d39 "valonleimaus"} ;
+lin valo_ohjattu_NK = {s = d01A "valo-ohjattu"} ;
+lin valopakoisuus_NK = {s = d40 "valopakoisuus"} ;
+lin valos_NK = {s = d39 "valos"} ;
+lin valostua_VK = {s = c52 "valostua"} ;
+lin valottaa_VK = {s = c53A "valottaa"} ;
+lin valottua_VK = {s = c52A "valottua"} ;
+lin valotus_NK = {s = d39 "valotus"} ;
+lin valotusaika_NK = {s = d09A "valotusaika"} ;
+lin valpas_NK = {s = d41A "valpas"} ;
+lin valpastua_VK = {s = c52 "valpastua"} ;
+lin valppaasti_AdvK = {s = c99 "valppaasti"} ;
+lin valppaus_NK = {s = d40 "valppaus"} ;
+lin valssaaja_NK = {s = d10 "valssaaja"} ;
+lin valssaamo_NK = {s = d02 "valssaamo"} ;
+lin valssain_NK = {s = d33 "valssain"} ;
+lin valssata_1_VK = {s = c73 "valssata"} ;
+lin valssata_2_VK = {s = c73 "valssata"} ;
+lin valssaus_1_NK = {s = d39 "valssaus"} ;
+lin valssaus_2_NK = {s = d39 "valssaus"} ;
+lin valssi_1_NK = {s = d05 "valssi"} ;
+lin valssi_2_NK = {s = d05 "valssi"} ;
+lin valta_NK = {s = d09A "valta"} ;
+lin valtaaja_NK = {s = d10 "valtaaja"} ;
+lin valtaan_AdvK = {s = c99 "valtaan"} ;
+lin valtainen_AK = {s = d38 "valtainen"} ;
+lin valtainen_AK = {s = d38 "valtainen"} ;
+lin valtaisa_AK = {s = d10 "valtaisa"} ;
+--+ lin valtaisasti_AdvK = {s = c99 "valtaisasti"} ;
+--+ lin valtaisesti_AdvK = {s = c99 "valtaisesti"} ;
+lin valtaisuus_NK = {s = d40 "valtaisuus"} ;
+lin valtakunnallisesti_AdvK = {s = c99 "valtakunnallisesti"} ;
+lin valtakunnallisuus_NK = {s = d40 "valtakunnallisuus"} ;
+lin valtakunnanraja_NK = {s = d09 "valtakunnanraja"} ;
+lin valtaus_NK = {s = d39 "valtaus"} ;
+lin valtava_AK = {s = d10 "valtava"} ;
+--+ lin valtavasti_AdvK = {s = c99 "valtavasti"} ;
+lin valtavirtaistus_NK = {s = d39 "valtavirtaistus"} ;
+lin valtavuus_NK = {s = d40 "valtavuus"} ;
+lin valtias_NK = {s = d41 "valtias"} ;
+lin valtiatar_NK = {s = d32A "valtiatar"} ;
+lin valtikka_NK = {s = d14A "valtikka"} ;
+lin valtimo_NK = {s = d02 "valtimo"} ;
+lin valtio_NK = {s = d03 "valtio"} ;
+lin valtiollinen_NK = {s = d38 "valtiollinen"} ;
+lin valtiollistaa_VK = {s = c53 "valtiollistaa"} ;
+lin valtiollistua_VK = {s = c52 "valtiollistua"} ;
+lin valtioton_NK = {s = d34A "valtioton"} ;
+lin valtius_NK = {s = d40 "valtius"} ;
+lin valtoimenaan_AdvK = {s = c99 "valtoimenaan"} ;
+lin valtoimesti_AdvK = {s = c99 "valtoimesti"} ;
+lin valtoin_NK = {s = d33 "valtoin"} ;
+lin valtti_NK = {s = d05A "valtti"} ;
+lin valtuus_NK = {s = d40 "valtuus"} ;
+lin valtuusto_NK = {s = d02 "valtuusto"} ;
+lin valtuutettu_NK = {s = d01A "valtuutettu"} ;
+lin valtuuttaa_VK = {s = c53A "valtuuttaa"} ;
+lin valtuuttaja_NK = {s = d10 "valtuuttaja"} ;
+lin valtuutus_NK = {s = d39 "valtuutus"} ;
+lin valu_NK = {s = d01 "valu"} ;
+lin valua_VK = {s = c52 "valua"} ;
+lin valuma_NK = {s = d10 "valuma"} ;
+lin valunta_NK = {s = d09A "valunta"} ;
+lin valuttaa_VK = {s = c53A "valuttaa"} ;
+lin valutus_NK = {s = d39 "valutus"} ;
+lin valuutta_NK = {s = d09A "valuutta"} ;
+lin valvatti_NK = {s = d05A "valvatti"} ;
+lin valve_NK = {s = d48 "valve"} ;
+lin valveilla_AdvK = {s = c99 "valveilla"} ;
+lin valveille_AdvK = {s = c99 "valveille"} ;
+lin valveuttaa_VK = {s = c53A "valveuttaa"} ;
+lin valveutua_VK = {s = c52A "valveutua"} ;
+lin valvoa_VK = {s = c52 "valvoa"} ;
+lin valvoja_NK = {s = d10 "valvoja"} ;
+--? lin valvojaiset_NK = {s = d38 "valvojaiset"} ;
+lin valvomo_NK = {s = d02 "valvomo"} ;
+lin valvonta_NK = {s = d09A "valvonta"} ;
+lin valvoskella_VK = {s = c67 "valvoskella"} ;
+lin valvottaa_VK = {s = c53A "valvottaa"} ;
+lin valvotus_NK = {s = d39 "valvotus"} ;
+lin valvuri_NK = {s = d06 "valvuri"} ;
+lin valo'o'ri_NK = {s = d06 "valööri"} ;
+lin vamma_NK = {s = d09 "vamma"} ;
+lin vammainen_NK = {s = d38 "vammainen"} ;
+lin vammaisuus_NK = {s = d40 "vammaisuus"} ;
+lin vammauttaa_VK = {s = c53A "vammauttaa"} ;
+lin vammautua_VK = {s = c52A "vammautua"} ;
+lin vampata_VK = {s = c73A "vampata"} ;
+lin vamppaus_NK = {s = d39 "vamppaus"} ;
+lin vamppi_NK = {s = d05A "vamppi"} ;
+lin vampyyri_NK = {s = d06 "vampyyri"} ;
+lin vana_NK = {s = d09 "vana"} ;
+lin vanadiini_NK = {s = d05 "vanadiini"} ;
+lin vanamo_NK = {s = d02 "vanamo"} ;
+lin vandaali_NK = {s = d06 "vandaali"} ;
+lin vandalismi_NK = {s = d05 "vandalismi"} ;
+lin vandalisoida_VK = {s = c62 "vandalisoida"} ;
+lin vandalisointi_NK = {s = d05A "vandalisointi"} ;
+lin vaneri_NK = {s = d06 "vaneri"} ;
+lin vanerinen_NK = {s = d38 "vanerinen"} ;
+lin vangita_VK = {s = c69 "vangita"} ;
+lin vangitsija_NK = {s = d12 "vangitsija"} ;
+lin vangituttaa_VK = {s = c53A "vangituttaa"} ;
+lin vanha_NK = {s = d09 "vanha"} ;
+lin vanhahtava_AK = {s = d10 "vanhahtava"} ;
+--+ lin vanhahtavasti_AdvK = {s = c99 "vanhahtavasti"} ;
+lin vanhahtavuus_NK = {s = d40 "vanhahtavuus"} ;
+--+ lin vanhanaikaisesti_AdvK = {s = c99 "vanhanaikaisesti"} ;
+lin vanhastaan_AdvK = {s = c99 "vanhastaan"} ;
+lin vanhastava_NK = {s = d10 "vanhastava"} ;
+lin vanhatestamentillinen_NK = {s = d38 "vanhatestamentillinen"} ;
+lin vanhemmiten_AdvK = {s = c99 "vanhemmiten"} ;
+lin vanhemmuus_NK = {s = d40 "vanhemmuus"} ;
+lin vanhemmuuttaan_AdvK = {s = c99 "vanhemmuuttaan"} ;
+lin vanhempi_NK = {s = d16A "vanhempi"} ;
+lin vanhennus_NK = {s = d39 "vanhennus"} ;
+lin vanhentaa_VK = {s = c54A "vanhentaa"} ;
+lin vanhentua_VK = {s = c52A "vanhentua"} ;
+lin vanheta_VK = {s = c72 "vanheta"} ;
+lin vanhin_NK = {s = d36 "vanhin"} ;
+lin vanhoillaan_AdvK = {s = c99 "vanhoillaan"} ;
+lin vanhoillinen_AK = {s = d38 "vanhoillinen"} ;
+--+ lin vanhoillisesti_AdvK = {s = c99 "vanhoillisesti"} ;
+lin vanhoillisuus_NK = {s = d40 "vanhoillisuus"} ;
+lin vanhurskas_NK = {s = d41 "vanhurskas"} ;
+lin vanhurskaus_NK = {s = d40 "vanhurskaus"} ;
+lin vanhurskauttaa_VK = {s = c53A "vanhurskauttaa"} ;
+lin vanhus_NK = {s = d39 "vanhus"} ;
+lin vanhuus_NK = {s = d40 "vanhuus"} ;
+lin vanikka_NK = {s = d14A "vanikka"} ;
+lin vanilja_NK = {s = d13 "vanilja"} ;
+lin vanilliini_NK = {s = d05 "vanilliini"} ;
+lin vanja_NK = {s = d09 "vanja"} ;
+lin vankasti_AdvK = {s = c99 "vankasti"} ;
+lin vankennus_NK = {s = d39 "vankennus"} ;
+lin vankentaa_VK = {s = c54A "vankentaa"} ;
+lin vankentua_VK = {s = c52A "vankentua"} ;
+lin vanketa_VK = {s = c72A "vanketa"} ;
+lin vankeus_NK = {s = d40 "vankeus"} ;
+lin vanki_NK = {s = d05A "vanki"} ;
+lin vankila_NK = {s = d12 "vankila"} ;
+lin vankistaa_VK = {s = c53 "vankistaa"} ;
+lin vankistua_VK = {s = c52 "vankistua"} ;
+lin vankistus_NK = {s = d39 "vankistus"} ;
+lin vankka_NK = {s = d09A "vankka"} ;
+lin vankkumaton_NK = {s = d34A "vankkumaton"} ;
+lin vankkumatta_AdvK = {s = c99 "vankkumatta"} ;
+lin vankkumattomasti_AdvK = {s = c99 "vankkumattomasti"} ;
+lin vankkumattomuus_NK = {s = d40 "vankkumattomuus"} ;
+--? lin vankkurit_NK = {s = d06 "vankkurit"} ;
+lin vankkuus_NK = {s = d40 "vankkuus"} ;
+lin vanna_NK = {s = d09 "vanna"} ;
+lin vannas_NK = {s = d41A "vannas"} ;
+lin vanne_NK = {s = d48A "vanne"} ;
+lin vannehtia_VK = {s = c61A "vannehtia"} ;
+lin vannike_NK = {s = d48A "vannike"} ;
+lin vannoa_VK = {s = c52 "vannoa"} ;
+lin vannonta_NK = {s = d09A "vannonta"} ;
+lin vannottaa_VK = {s = c53A "vannottaa"} ;
+lin vannotus_NK = {s = d39 "vannotus"} ;
+lin vannoutunut_NK = {s = d47 "vannoutunut"} ;
+lin vanttera_NK = {s = d11 "vanttera"} ;
+lin vantteruus_NK = {s = d40 "vantteruus"} ;
+lin vantti_NK = {s = d05A "vantti"} ;
+lin vanttu_NK = {s = d01A "vanttu"} ;
+lin vantus_NK = {s = d41A "vantus"} ;
+lin vanu_NK = {s = d01 "vanu"} ;
+lin vanua_VK = {s = c52 "vanua"} ;
+lin vanukas_NK = {s = d41A "vanukas"} ;
+lin vanumaton_NK = {s = d34A "vanumaton"} ;
+lin vanumattomuus_NK = {s = d40 "vanumattomuus"} ;
+lin vanuttaa_VK = {s = c53A "vanuttaa"} ;
+lin vanuttua_VK = {s = c52A "vanuttua"} ;
+lin vanutus_NK = {s = d39 "vanutus"} ;
+lin vapa_NK = {s = d09A "vapa"} ;
+lin vapaa_AK = {s = d17 "vapaa"} ;
+lin vapaa_aika_NK = {s = d09 "vapaa-aika"} ;
+--+ lin vapaaehtoisesti_AdvK = {s = c99 "vapaaehtoisesti"} ;
+lin vapaaherratar_NK = {s = d32A "vapaaherratar"} ;
+--+ lin vapaamielisesti_AdvK = {s = c99 "vapaamielisesti"} ;
+lin vapaamielistya'_VK = {s = c52 "vapaamielistyä"} ;
+--+ lin vapaamuotoisesti_AdvK = {s = c99 "vapaamuotoisesti"} ;
+lin vapaamuurarius_NK = {s = d40 "vapaamuurarius"} ;
+--+ lin vapaasti_AdvK = {s = c99 "vapaasti"} ;
+lin vapahdus_NK = {s = d39 "vapahdus"} ;
+lin vapahtaa_VK = {s = c53A "vapahtaa"} ;
+lin vapahtaja_NK = {s = d10 "vapahtaja"} ;
+lin vapari_NK = {s = d06 "vapari"} ;
+lin vapaus_NK = {s = d40 "vapaus"} ;
+lin vapauttaa_VK = {s = c53A "vapauttaa"} ;
+lin vapauttaja_NK = {s = d10 "vapauttaja"} ;
+lin vapautua_VK = {s = c52A "vapautua"} ;
+lin vapautus_NK = {s = d39 "vapautus"} ;
+lin vapina_NK = {s = d12 "vapina"} ;
+lin vapista_VK = {s = c66 "vapista"} ;
+lin vapisuttaa_VK = {s = c53A "vapisuttaa"} ;
+lin vapiti_NK = {s = d05 "vapiti"} ;
+lin vappu_NK = {s = d01A "vappu"} ;
+lin vara_NK = {s = d09 "vara"} ;
+lin varaaja_NK = {s = d10 "varaaja"} ;
+lin varaamo_NK = {s = d02 "varaamo"} ;
+lin varaan_AdvK = {s = c99 "varaan"} ;
+lin varaani_NK = {s = d06 "varaani"} ;
+lin varainen_AK = {s = d38 "varainen"} ;
+--+ lin varaisesti_AdvK = {s = c99 "varaisesti"} ;
+lin varaisuus_NK = {s = d40 "varaisuus"} ;
+lin varakas_AK = {s = d41A "varakas"} ;
+--+ lin varakkaasti_AdvK = {s = c99 "varakkaasti"} ;
+lin varakkuus_NK = {s = d40 "varakkuus"} ;
+lin varalla_AdvK = {s = c99 "varalla"} ;
+lin varalle_AdvK = {s = c99 "varalle"} ;
+lin varallisuus_NK = {s = d40 "varallisuus"} ;
+lin varalta_AdvK = {s = c99 "varalta"} ;
+lin varanto_NK = {s = d01A "varanto"} ;
+lin varas_NK = {s = d41A "varas"} ;
+lin varassa_AdvK = {s = c99 "varassa"} ;
+lin varasta_AdvK = {s = c99 "varasta"} ;
+lin varastaa_VK = {s = c53 "varastaa"} ;
+lin varastella_VK = {s = c67 "varastella"} ;
+lin varastelu_NK = {s = d02 "varastelu"} ;
+lin varasto_NK = {s = d02 "varasto"} ;
+lin varastoida_VK = {s = c62 "varastoida"} ;
+lin varastointi_NK = {s = d05A "varastointi"} ;
+lin varastointiaika_NK = {s = d09A "varastointiaika"} ;
+lin varastoitua_VK = {s = c52A "varastoitua"} ;
+lin varata_VK = {s = c73 "varata"} ;
+lin varaton_NK = {s = d34A "varaton"} ;
+lin varattomuus_NK = {s = d40 "varattomuus"} ;
+lin varauksellinen_AK = {s = d38 "varauksellinen"} ;
+--+ lin varauksellisesti_AdvK = {s = c99 "varauksellisesti"} ;
+lin varauksellisuus_NK = {s = d40 "varauksellisuus"} ;
+lin varaukseton_NK = {s = d34A "varaukseton"} ;
+lin varauksettomasti_AdvK = {s = c99 "varauksettomasti"} ;
+lin varauksinen_NK = {s = d38 "varauksinen"} ;
+lin varauma_NK = {s = d10 "varauma"} ;
+lin varaus_NK = {s = d39 "varaus"} ;
+lin varautua_VK = {s = c52A "varautua"} ;
+lin varautuvuus_NK = {s = d40 "varautuvuus"} ;
+lin varhain_AdvK = {s = c99 "varhain"} ;
+lin varhainen_NK = {s = d38 "varhainen"} ;
+lin varhaisintaan_AdvK = {s = c99 "varhaisintaan"} ;
+lin varhaiskeskiaika_NK = {s = d09A "varhaiskeskiaika"} ;
+lin varhaistoteaminen_NK = {s = d38 "varhaistoteaminen"} ;
+lin varhaisuus_NK = {s = d40 "varhaisuus"} ;
+lin varhemmin_AdvK = {s = c99 "varhemmin"} ;
+lin varhempi_NK = {s = d16A "varhempi"} ;
+lin varhennus_NK = {s = d39 "varhennus"} ;
+lin varhentaa_VK = {s = c54A "varhentaa"} ;
+lin varhentua_VK = {s = c52A "varhentua"} ;
+lin varho_NK = {s = d01 "varho"} ;
+lin vari_1_NK = {s = d05 "vari"} ;
+lin vari_2_NK = {s = d05 "vari"} ;
+lin variaabeli_NK = {s = d06 "variaabeli"} ;
+lin variaatio_NK = {s = d03 "variaatio"} ;
+lin varianssi_NK = {s = d05 "varianssi"} ;
+lin variantti_NK = {s = d05A "variantti"} ;
+lin varietee_NK = {s = d20 "varietee"} ;
+lin varikko_NK = {s = d04A "varikko"} ;
+lin varioida_VK = {s = c62 "varioida"} ;
+lin variointi_NK = {s = d05A "variointi"} ;
+lin varis_NK = {s = d39 "varis"} ;
+lin varista_VK = {s = c66 "varista"} ;
+lin varistaa_VK = {s = c53 "varistaa"} ;
+lin variste_NK = {s = d48 "variste"} ;
+lin varistella_VK = {s = c67 "varistella"} ;
+lin varistelu_NK = {s = d02 "varistelu"} ;
+lin varistus_NK = {s = d39 "varistus"} ;
+lin varjagi_NK = {s = d05 "varjagi"} ;
+lin varjella_VK = {s = c67 "varjella"} ;
+lin varjeltua_VK = {s = c52A "varjeltua"} ;
+lin varjelu_NK = {s = d02 "varjelu"} ;
+lin varjelus_NK = {s = d39 "varjelus"} ;
+lin varjo_NK = {s = d01 "varjo"} ;
+lin varjoinen_NK = {s = d38 "varjoinen"} ;
+lin varjoisa_NK = {s = d10 "varjoisa"} ;
+lin varjoisuus_NK = {s = d40 "varjoisuus"} ;
+lin varjolla_AdvK = {s = c99 "varjolla"} ;
+lin varjostaa_VK = {s = c53 "varjostaa"} ;
+lin varjostaja_NK = {s = d10 "varjostaja"} ;
+lin varjostin_NK = {s = d33 "varjostin"} ;
+lin varjostua_VK = {s = c52 "varjostua"} ;
+lin varjostuma_NK = {s = d10 "varjostuma"} ;
+lin varjostus_NK = {s = d39 "varjostus"} ;
+lin varjota_VK = {s = c74 "varjota"} ;
+lin varkain_AdvK = {s = c99 "varkain"} ;
+lin varkaisiin_AdvK = {s = c99 "varkaisiin"} ;
+lin varkaissa_AdvK = {s = c99 "varkaissa"} ;
+lin varkaista_AdvK = {s = c99 "varkaista"} ;
+lin varkaus_NK = {s = d40 "varkaus"} ;
+lin varma_AK = {s = d09 "varma"} ;
+lin varmaan_AdvK = {s = c99 "varmaan"} ;
+--+ lin varmasti_AdvK = {s = c99 "varmasti"} ;
+lin varmenne_NK = {s = d48A "varmenne"} ;
+lin varmennus_NK = {s = d39 "varmennus"} ;
+lin varmentaa_VK = {s = c54A "varmentaa"} ;
+lin varmentaja_NK = {s = d10 "varmentaja"} ;
+lin varmentua_VK = {s = c52A "varmentua"} ;
+lin varmeta_VK = {s = c72 "varmeta"} ;
+lin varmistaa_VK = {s = c53 "varmistaa"} ;
+lin varmistautua_VK = {s = c52A "varmistautua"} ;
+lin varmiste_NK = {s = d48 "varmiste"} ;
+lin varmistella_VK = {s = c67 "varmistella"} ;
+lin varmistelu_NK = {s = d02 "varmistelu"} ;
+lin varmistin_NK = {s = d33 "varmistin"} ;
+lin varmistua_VK = {s = c52 "varmistua"} ;
+lin varmistus_NK = {s = d39 "varmistus"} ;
+lin varmuus_NK = {s = d40 "varmuus"} ;
+lin varoa_VK = {s = c52 "varoa"} ;
+lin varoaika_NK = {s = d09A "varoaika"} ;
+lin varoiksi_AdvK = {s = c99 "varoiksi"} ;
+lin varoitella_VK = {s = c67A "varoitella"} ;
+lin varoitin_NK = {s = d33A "varoitin"} ;
+lin varoittaa_VK = {s = c53A "varoittaa"} ;
+lin varoittelu_NK = {s = d02 "varoittelu"} ;
+lin varoitus_NK = {s = d39 "varoitus"} ;
+lin varoitusaika_NK = {s = d09A "varoitusaika"} ;
+lin varoke_NK = {s = d48A "varoke"} ;
+lin varomaton_NK = {s = d34A "varomaton"} ;
+lin varomattomasti_AdvK = {s = c99 "varomattomasti"} ;
+lin varomattomuus_NK = {s = d40 "varomattomuus"} ;
+lin varottava_NK = {s = d10 "varottava"} ;
+lin varova_AK = {s = d10 "varova"} ;
+lin varovainen_AK = {s = d38 "varovainen"} ;
+--+ lin varovaisesti_AdvK = {s = c99 "varovaisesti"} ;
+lin varovaisuus_NK = {s = d40 "varovaisuus"} ;
+--+ lin varovasti_AdvK = {s = c99 "varovasti"} ;
+lin varovuus_NK = {s = d40 "varovuus"} ;
+lin varpailla_AdvK = {s = c99 "varpailla"} ;
+lin varpaillaan_AdvK = {s = c99 "varpaillaan"} ;
+lin varpaille_AdvK = {s = c99 "varpaille"} ;
+lin varpailleen_AdvK = {s = c99 "varpailleen"} ;
+lin varpainen_NK = {s = d38 "varpainen"} ;
+--? lin varpaiset_NK = {s = d38 "varpaiset"} ;
+lin varpaisillaan_AdvK = {s = c99 "varpaisillaan"} ;
+lin varpaisilleen_AdvK = {s = c99 "varpaisilleen"} ;
+--? lin varpajaiset_NK = {s = d38 "varpajaiset"} ;
+lin varpata_VK = {s = c73A "varpata"} ;
+lin varpio_NK = {s = d03 "varpio"} ;
+lin varppaus_NK = {s = d39 "varppaus"} ;
+lin varppi_NK = {s = d05A "varppi"} ;
+lin varpu_NK = {s = d01A "varpu"} ;
+lin varpunen_NK = {s = d38 "varpunen"} ;
+lin varpusparvi_NK = {s = d07 "varpusparvi"} ;
+lin varrantti_NK = {s = d05A "varrantti"} ;
+lin varras_NK = {s = d41A "varras"} ;
+lin varrekas_NK = {s = d41A "varrekas"} ;
+lin varrella_AdvK = {s = c99 "varrella"} ;
+lin varrelle_AdvK = {s = c99 "varrelle"} ;
+lin varrellinen_NK = {s = d38 "varrellinen"} ;
+lin varrelta_AdvK = {s = c99 "varrelta"} ;
+lin varrennos_NK = {s = d39 "varrennos"} ;
+lin varrennus_NK = {s = d39 "varrennus"} ;
+lin varrentaa_VK = {s = c54A "varrentaa"} ;
+lin varressa_AdvK = {s = c99 "varressa"} ;
+lin varresta_AdvK = {s = c99 "varresta"} ;
+lin varrota_VK = {s = c74A "varrota"} ;
+lin varsa_NK = {s = d09 "varsa"} ;
+lin varsi_NK = {s = d28 "varsi"} ;
+lin varsin_AdvK = {s = c99 "varsin"} ;
+--+ lin varsinaisesti_AdvK = {s = c99 "varsinaisesti"} ;
+lin varsinen_NK = {s = d38 "varsinen"} ;
+lin varsinkaan_AdvK = {s = c99 "varsinkaan"} ;
+lin varsinkin_AdvK = {s = c99 "varsinkin"} ;
+lin varsisto_NK = {s = d02 "varsisto"} ;
+lin varsoa_VK = {s = c52 "varsoa"} ;
+lin varsottaa_VK = {s = c53A "varsottaa"} ;
+lin varsotus_NK = {s = d39 "varsotus"} ;
+lin varsta_NK = {s = d09 "varsta"} ;
+lin vartalo_NK = {s = d02 "vartalo"} ;
+lin vartaloinen_NK = {s = d38 "vartaloinen"} ;
+lin varta_vasten_AdvK = {s = c99 "varta vasten"} ;
+lin vartavastinen_NK = {s = d38 "vartavastinen"} ;
+lin varte_NK = {s = d48A "varte"} ;
+lin varteen_AdvK = {s = c99 "varteen"} ;
+lin varteenotettava_NK = {s = d10 "varteenotettava"} ;
+lin varten_AdvK = {s = c99 "varten"} ;
+lin varteva_NK = {s = d10 "varteva"} ;
+lin vartevuus_NK = {s = d40 "vartevuus"} ;
+lin vartija_NK = {s = d12 "vartija"} ;
+lin vartinen_NK = {s = d38 "vartinen"} ;
+lin vartio_NK = {s = d03 "vartio"} ;
+lin vartioida_VK = {s = c62 "vartioida"} ;
+lin vartioimaton_NK = {s = d34A "vartioimaton"} ;
+lin vartiointi_NK = {s = d05A "vartiointi"} ;
+lin vartiosto_NK = {s = d01 "vartiosto"} ;
+lin vartoa_VK = {s = c52A "vartoa"} ;
+lin varttaa_VK = {s = c56A "varttaa"} ;
+lin vartti_NK = {s = d05A "vartti"} ;
+lin varttua_VK = {s = c52A "varttua"} ;
+lin varuillaan_AdvK = {s = c99 "varuillaan"} ;
+lin varuilleen_AdvK = {s = c99 "varuilleen"} ;
+lin varus_NK = {s = d39 "varus"} ;
+lin varusmiesaika_NK = {s = d09A "varusmiesaika"} ;
+lin varustaa_VK = {s = c53 "varustaa"} ;
+lin varustaja_NK = {s = d10 "varustaja"} ;
+lin varustamo_NK = {s = d02 "varustamo"} ;
+lin varustautua_VK = {s = c52A "varustautua"} ;
+lin varuste_NK = {s = d48 "varuste"} ;
+lin varustella_VK = {s = c67 "varustella"} ;
+lin varustelu_NK = {s = d02 "varustelu"} ;
+lin varustus_NK = {s = d39 "varustus"} ;
+lin varvas_NK = {s = d41A "varvas"} ;
+lin varvi_NK = {s = d05 "varvi"} ;
+lin varvikko_NK = {s = d04A "varvikko"} ;
+lin varvisto_NK = {s = d02 "varvisto"} ;
+lin varvukko_NK = {s = d04A "varvukko"} ;
+lin varvusto_NK = {s = d02 "varvusto"} ;
+lin varvuttua_VK = {s = c52A "varvuttua"} ;
+lin vasa_1_NK = {s = d09 "vasa"} ;
+lin vasa_2_NK = {s = d09 "vasa"} ;
+lin vasalli_NK = {s = d05 "vasalli"} ;
+lin vasallius_NK = {s = d40 "vasallius"} ;
+lin vasama_NK = {s = d10 "vasama"} ;
+lin vasara_NK = {s = d12 "vasara"} ;
+lin vasaroida_VK = {s = c62 "vasaroida"} ;
+lin vasarointi_NK = {s = d05A "vasarointi"} ;
+lin vasektomia_NK = {s = d12 "vasektomia"} ;
+lin vaseliini_NK = {s = d05 "vaseliini"} ;
+lin vasemmalla_AdvK = {s = c99 "vasemmalla"} ;
+lin vasemmalle_AdvK = {s = c99 "vasemmalle"} ;
+lin vasemmalta_AdvK = {s = c99 "vasemmalta"} ;
+lin vasemmisto_NK = {s = d01 "vasemmisto"} ;
+--+ lin vasemmistolaisesti_AdvK = {s = c99 "vasemmistolaisesti"} ;
+lin vasemmistolaistua_VK = {s = c52 "vasemmistolaistua"} ;
+lin vasemmistolaisuus_NK = {s = d40 "vasemmistolaisuus"} ;
+lin vasempaan_AdvK = {s = c99 "vasempaan"} ;
+lin vasen_NK = {s = d37 "vasen"} ;
+--+ lin vasenka'tisesti_AdvK = {s = c99 "vasenkätisesti"} ;
+lin vasikka_NK = {s = d14A "vasikka"} ;
+lin vasikoida_VK = {s = c62 "vasikoida"} ;
+lin vasikointi_NK = {s = d05A "vasikointi"} ;
+lin vasiten_AdvK = {s = c99 "vasiten"} ;
+lin vasituinen_AK = {s = d38 "vasituinen"} ;
+--+ lin vasituisesti_AdvK = {s = c99 "vasituisesti"} ;
+lin vaskata_VK = {s = c73 "vaskata"} ;
+lin vaskaus_NK = {s = d39 "vaskaus"} ;
+lin vaski_NK = {s = d07 "vaski"} ;
+lin vaskinen_NK = {s = d38 "vaskinen"} ;
+lin vaskitsa_NK = {s = d13 "vaskitsa"} ;
+lin vaskooli_NK = {s = d06 "vaskooli"} ;
+lin vaskulaarinen_NK = {s = d38 "vaskulaarinen"} ;
+lin vasoa_VK = {s = c52 "vasoa"} ;
+lin vasoittaa_VK = {s = c53A "vasoittaa"} ;
+lin vasoitus_NK = {s = d39 "vasoitus"} ;
+lin vasomotorinen_NK = {s = d38 "vasomotorinen"} ;
+lin vasonta_NK = {s = d09A "vasonta"} ;
+lin vasta_1_NK = {s = d09 "vasta"} ;
+lin vasta_2_AdvK = {s = c99 "vasta"} ;
+lin vastaaja_NK = {s = d10 "vastaaja"} ;
+lin vastaamaton_NK = {s = d34A "vastaamaton"} ;
+lin vastaan_AdvK = {s = c99 "vastaan"} ;
+lin vastaanhangoittelu_NK = {s = d02 "vastaanhangoittelu"} ;
+--? lin vastaanottajaiset_NK = {s = d38 "vastaanottajaiset"} ;
+lin vastaanottavainen_AK = {s = d38 "vastaanottavainen"} ;
+--+ lin vastaanottavaisesti_AdvK = {s = c99 "vastaanottavaisesti"} ;
+lin vastaanottavaisuus_NK = {s = d40 "vastaanottavaisuus"} ;
+--+ lin vastaanottavasti_AdvK = {s = c99 "vastaanottavasti"} ;
+lin vastaanottavuus_NK = {s = d40 "vastaanottavuus"} ;
+lin vastaava_AK = {s = d10 "vastaava"} ;
+lin vastaavanlainen_AK = {s = d38 "vastaavanlainen"} ;
+--+ lin vastaavanlaisesti_AdvK = {s = c99 "vastaavanlaisesti"} ;
+--+ lin vastaavasti_AdvK = {s = c99 "vastaavasti"} ;
+lin vastaavuus_NK = {s = d40 "vastaavuus"} ;
+lin vastahakoinen_AK = {s = d38 "vastahakoinen"} ;
+--+ lin vastahakoisesti_AdvK = {s = c99 "vastahakoisesti"} ;
+lin vastahakoisuus_NK = {s = d40 "vastahakoisuus"} ;
+lin vastahankaisuus_NK = {s = d40 "vastahankaisuus"} ;
+lin vastailla_VK = {s = c67 "vastailla"} ;
+lin vastainen_AK = {s = d38 "vastainen"} ;
+--+ lin vastaisesti_AdvK = {s = c99 "vastaisesti"} ;
+lin vastaisuus_NK = {s = d40 "vastaisuus"} ;
+lin vastakarvaan_AdvK = {s = c99 "vastakarvaan"} ;
+lin vastake_NK = {s = d48A "vastake"} ;
+lin vastakkain_AdvK = {s = c99 "vastakkain"} ;
+lin vastakkainen_AK = {s = d38 "vastakkainen"} ;
+--+ lin vastakkaisesti_AdvK = {s = c99 "vastakkaisesti"} ;
+lin vastakkaisuus_NK = {s = d40 "vastakkaisuus"} ;
+lin vastakohta_NK = {s = d10A "vastakohta"} ;
+lin vastaleivottu_NK = {s = d01A "vastaleivottu"} ;
+lin vastapa'iva'a'n_AdvK = {s = c99 "vastapäivään"} ;
+lin vastapa'a'ta'_AdvK = {s = c99 "vastapäätä"} ;
+lin vastas_NK = {s = d39 "vastas"} ;
+lin vastassa_AdvK = {s = c99 "vastassa"} ;
+lin vastasukaan_AdvK = {s = c99 "vastasukaan"} ;
+lin vastasyntynyt_NK = {s = d47 "vastasyntynyt"} ;
+lin vastata_VK = {s = c73 "vastata"} ;
+lin vastattava_NK = {s = d10 "vastattava"} ;
+lin vastatuksin_AdvK = {s = c99 "vastatuksin"} ;
+lin vastatusten_AdvK = {s = c99 "vastatusten"} ;
+lin vastaus_NK = {s = d39 "vastaus"} ;
+lin vastavihitty_NK = {s = d01A "vastavihitty"} ;
+--+ lin vastavuoroisesti_AdvK = {s = c99 "vastavuoroisesti"} ;
+lin vastavuoroisuus_NK = {s = d40 "vastavuoroisuus"} ;
+lin vastavuoroon_AdvK = {s = c99 "vastavuoroon"} ;
+lin vastava'itta'ja'_NK = {s = d10 "vastaväittäjä"} ;
+lin vaste_NK = {s = d48 "vaste"} ;
+lin vasten_AdvK = {s = c99 "vasten"} ;
+--+ lin vastenmielisesti_AdvK = {s = c99 "vastenmielisesti"} ;
+--+ lin vastentahtoisesti_AdvK = {s = c99 "vastentahtoisesti"} ;
+lin vastike_NK = {s = d48A "vastike"} ;
+lin vastikkeellinen_NK = {s = d38 "vastikkeellinen"} ;
+lin vastikkeellisuus_NK = {s = d40 "vastikkeellisuus"} ;
+lin vastikkeeton_NK = {s = d34A "vastikkeeton"} ;
+lin vastikkeettomuus_NK = {s = d40 "vastikkeettomuus"} ;
+lin vastin_NK = {s = d33 "vastin"} ;
+lin vastine_NK = {s = d48 "vastine"} ;
+lin vastoa_VK = {s = c52 "vastoa"} ;
+lin vastoin_AdvK = {s = c99 "vastoin"} ;
+lin vastuinen_AK = {s = d38 "vastuinen"} ;
+--+ lin vastuisesti_AdvK = {s = c99 "vastuisesti"} ;
+lin vastuksellinen_AK = {s = d38 "vastuksellinen"} ;
+--+ lin vastuksellisesti_AdvK = {s = c99 "vastuksellisesti"} ;
+lin vastuksellisuus_NK = {s = d40 "vastuksellisuus"} ;
+lin vastukseton_NK = {s = d34A "vastukseton"} ;
+lin vastuksinen_NK = {s = d38 "vastuksinen"} ;
+lin vastus_NK = {s = d39 "vastus"} ;
+lin vastustaa_VK = {s = c53 "vastustaa"} ;
+lin vastustaja_NK = {s = d10 "vastustaja"} ;
+lin vastustamaton_NK = {s = d34A "vastustamaton"} ;
+lin vastustamattomasti_AdvK = {s = c99 "vastustamattomasti"} ;
+lin vastustamattomuus_NK = {s = d40 "vastustamattomuus"} ;
+lin vastustella_VK = {s = c67 "vastustella"} ;
+lin vastustelu_NK = {s = d02 "vastustelu"} ;
+lin vastustus_NK = {s = d39 "vastustus"} ;
+--+ lin vastustushaluisesti_AdvK = {s = c99 "vastustushaluisesti"} ;
+lin vastuu_NK = {s = d17 "vastuu"} ;
+lin vastuullinen_AK = {s = d38 "vastuullinen"} ;
+--+ lin vastuullisesti_AdvK = {s = c99 "vastuullisesti"} ;
+lin vastuullisuus_NK = {s = d40 "vastuullisuus"} ;
+--+ lin vastuuntuntoisesti_AdvK = {s = c99 "vastuuntuntoisesti"} ;
+lin vastuuton_NK = {s = d34A "vastuuton"} ;
+lin vastuuttomasti_AdvK = {s = c99 "vastuuttomasti"} ;
+lin vastuuttomuus_NK = {s = d40 "vastuuttomuus"} ;
+lin vasu_NK = {s = d01 "vasu"} ;
+lin vasuri_NK = {s = d06 "vasuri"} ;
+lin vati_NK = {s = d05A "vati"} ;
+lin vatiini_NK = {s = d06 "vatiini"} ;
+lin vatja_NK = {s = d09 "vatja"} ;
+lin vatkaantua_VK = {s = c52A "vatkaantua"} ;
+lin vatkain_NK = {s = d33 "vatkain"} ;
+lin vatkata_VK = {s = c73 "vatkata"} ;
+lin vatkaus_NK = {s = d39 "vatkaus"} ;
+lin vatkautua_VK = {s = c52A "vatkautua"} ;
+lin vatkuli_NK = {s = d06 "vatkuli"} ;
+lin vatkuttaa_VK = {s = c53A "vatkuttaa"} ;
+lin vatkutus_NK = {s = d39 "vatkutus"} ;
+lin vatsa_NK = {s = d09 "vatsa"} ;
+lin vatsahaava_NK = {s = d09 "vatsahaava"} ;
+lin vatsainen_NK = {s = d38 "vatsainen"} ;
+lin vatsakas_NK = {s = d41A "vatsakas"} ;
+lin vatsakkuus_NK = {s = d40 "vatsakkuus"} ;
+lin vatsastapuhuminen_NK = {s = d38 "vatsastapuhuminen"} ;
+lin vatti_NK = {s = d05A "vatti"} ;
+lin watti_NK = {s = d05A "watti"} ;
+lin vattu_NK = {s = d01A "vattu"} ;
+lin vatukka_NK = {s = d14A "vatukka"} ;
+lin vatukko_NK = {s = d04A "vatukko"} ;
+lin vatupassi_NK = {s = d05 "vatupassi"} ;
+lin vatvoa_VK = {s = c52 "vatvoa"} ;
+lin vau_AdvK = {s = c99 "vau"} ;
+lin vaudeville_NK = {s = d08 "vaudeville"} ;
+lin vauhdikas_AK = {s = d41A "vauhdikas"} ;
+--+ lin vauhdikkaasti_AdvK = {s = c99 "vauhdikkaasti"} ;
+lin vauhdikkuus_NK = {s = d40 "vauhdikkuus"} ;
+lin vauhdillinen_NK = {s = d38 "vauhdillinen"} ;
+lin vauhditon_NK = {s = d34A "vauhditon"} ;
+lin vauhdittaa_VK = {s = c53A "vauhdittaa"} ;
+lin vauhdittua_VK = {s = c52A "vauhdittua"} ;
+lin vauhditus_NK = {s = d39 "vauhditus"} ;
+lin vauhko_NK = {s = d01 "vauhko"} ;
+lin vauhkoilla_VK = {s = c67 "vauhkoilla"} ;
+lin vauhkoilu_NK = {s = d02 "vauhkoilu"} ;
+lin vauhkoontua_VK = {s = c52A "vauhkoontua"} ;
+lin vauhkoutua_VK = {s = c52A "vauhkoutua"} ;
+lin vauhti_NK = {s = d05A "vauhti"} ;
+lin vauhtinen_NK = {s = d38 "vauhtinen"} ;
+lin vaunu_NK = {s = d01 "vaunu"} ;
+lin vaunulastillinen_NK = {s = d38 "vaunulastillinen"} ;
+lin vaununlastillinen_NK = {s = d38 "vaununlastillinen"} ;
+--+ lin vauraasti_AdvK = {s = c99 "vauraasti"} ;
+lin vauras_AK = {s = d41 "vauras"} ;
+lin vaurastaa_VK = {s = c53 "vaurastaa"} ;
+lin vaurastua_VK = {s = c52 "vaurastua"} ;
+lin vaurastuttaa_VK = {s = c53A "vaurastuttaa"} ;
+lin vauraus_NK = {s = d40 "vauraus"} ;
+lin vaurio_NK = {s = d03 "vaurio"} ;
+lin vaurioittaa_VK = {s = c53A "vaurioittaa"} ;
+lin vaurioitua_VK = {s = c52A "vaurioitua"} ;
+lin vauva_NK = {s = d09 "vauva"} ;
+lin vavahdella_VK = {s = c67A "vavahdella"} ;
+lin vavahdus_NK = {s = d39 "vavahdus"} ;
+lin vavahduttaa_VK = {s = c53A "vavahduttaa"} ;
+lin vavahtaa_VK = {s = c53A "vavahtaa"} ;
+lin vavista_VK = {s = c66A "vavista"} ;
+lin vavistus_NK = {s = d39 "vavistus"} ;
+lin vavisuttaa_VK = {s = c53A "vavisuttaa"} ;
+lin WC_AdvK = {s = c99 "WC"} ;
+lin weber_NK = {s = d06 "weber"} ;
+lin vedekkyys_NK = {s = d40 "vedekkyys"} ;
+lin vedeka's_NK = {s = d41A "vedekäs"} ;
+lin vedella'_VK = {s = c67A "vedellä"} ;
+lin vedenpaisumus_NK = {s = d39 "vedenpaisumus"} ;
+lin vedenpita'va'sti_AdvK = {s = c99 "vedenpitävästi"} ;
+lin vedenraja_NK = {s = d09 "vedenraja"} ;
+lin vedeto'n_NK = {s = d34A "vedetön"} ;
+lin vedike_NK = {s = d48A "vedike"} ;
+lin vedin_NK = {s = d33A "vedin"} ;
+lin vedos_NK = {s = d39 "vedos"} ;
+lin vedostaa_VK = {s = c53 "vedostaa"} ;
+lin vedostua_VK = {s = c52 "vedostua"} ;
+lin vedostus_NK = {s = d39 "vedostus"} ;
+lin vedota_VK = {s = c74A "vedota"} ;
+lin veda'tta'a'_VK = {s = c53A "vedättää"} ;
+lin veda'tys_NK = {s = d39 "vedätys"} ;
+lin veda'tytta'a'_VK = {s = c53A "vedätyttää"} ;
+lin vegaani_NK = {s = d06 "vegaani"} ;
+lin vegetaari_NK = {s = d05 "vegetaari"} ;
+lin vegetaarinen_NK = {s = d38 "vegetaarinen"} ;
+lin vegetariaani_NK = {s = d05 "vegetariaani"} ;
+lin vegetarianismi_NK = {s = d05 "vegetarianismi"} ;
+lin vegetarismi_NK = {s = d05 "vegetarismi"} ;
+lin vegetaristi_NK = {s = d05 "vegetaristi"} ;
+lin vegetatiivinen_NK = {s = d38 "vegetatiivinen"} ;
+lin vehdata_VK = {s = c73A "vehdata"} ;
+lin vehje_NK = {s = d48A "vehje"} ;
+lin vehka_NK = {s = d09 "vehka"} ;
+lin vehkeilija'_NK = {s = d12 "vehkeilijä"} ;
+lin vehkeilla'_VK = {s = c67 "vehkeillä"} ;
+lin vehkeily_NK = {s = d02 "vehkeily"} ;
+lin vehmas_NK = {s = d41 "vehmas"} ;
+lin vehmaus_NK = {s = d40 "vehmaus"} ;
+lin vehna'_NK = {s = d10 "vehnä"} ;
+lin vehna'inen_NK = {s = d38 "vehnäinen"} ;
+lin vehna'nen_NK = {s = d38 "vehnänen"} ;
+lin vehreys_NK = {s = d40 "vehreys"} ;
+lin vehrea'_NK = {s = d15 "vehreä"} ;
+lin vehtailla_VK = {s = c67 "vehtailla"} ;
+lin vehtaus_NK = {s = d39 "vehtaus"} ;
+lin veijari_NK = {s = d06 "veijari"} ;
+lin veikata_VK = {s = c73A "veikata"} ;
+lin veikeilla'_VK = {s = c67 "veikeillä"} ;
+lin veikeys_NK = {s = d40 "veikeys"} ;
+lin veikea'_AK = {s = d15 "veikeä"} ;
+--+ lin veikea'sti_AdvK = {s = c99 "veikeästi"} ;
+lin veikistelija'_NK = {s = d12 "veikistelijä"} ;
+lin veikistella'_VK = {s = c67 "veikistellä"} ;
+lin veikistely_NK = {s = d02 "veikistely"} ;
+lin veikka_1_NK = {s = d09A "veikka"} ;
+lin veikka_2_NK = {s = d09A "veikka"} ;
+lin veikkaaja_NK = {s = d10 "veikkaaja"} ;
+lin veikkailla_VK = {s = c67 "veikkailla"} ;
+lin veikkailu_NK = {s = d02 "veikkailu"} ;
+lin veikkaus_NK = {s = d39 "veikkaus"} ;
+lin veikko_NK = {s = d01A "veikko"} ;
+lin veikkonen_NK = {s = d38 "veikkonen"} ;
+lin veisata_VK = {s = c73 "veisata"} ;
+lin veisaus_NK = {s = d39 "veisaus"} ;
+lin veisauttaa_VK = {s = c53A "veisauttaa"} ;
+lin veistella'_VK = {s = c67 "veistellä"} ;
+lin veistely_NK = {s = d02 "veistely"} ;
+lin veisto_NK = {s = d01 "veisto"} ;
+lin veistoksellinen_NK = {s = d38 "veistoksellinen"} ;
+lin veistoksellisuus_NK = {s = d40 "veistoksellisuus"} ;
+lin veistos_NK = {s = d39 "veistos"} ;
+lin veista'mo'_NK = {s = d02 "veistämö"} ;
+lin veista'a'_VK = {s = c53 "veistää"} ;
+lin veisu_NK = {s = d01 "veisu"} ;
+lin veisuu_NK = {s = d17 "veisuu"} ;
+lin veisuuttaa_VK = {s = c53A "veisuuttaa"} ;
+lin veitera'_NK = {s = d11 "veiterä"} ;
+lin veitikka_NK = {s = d14A "veitikka"} ;
+--+ lin veitikkamaisesti_AdvK = {s = c99 "veitikkamaisesti"} ;
+lin veitikkamaisuus_NK = {s = d40 "veitikkamaisuus"} ;
+lin veitsi_NK = {s = d30 "veitsi"} ;
+lin veivata_VK = {s = c73 "veivata"} ;
+lin veivaus_NK = {s = d39 "veivaus"} ;
+lin veivi_NK = {s = d05 "veivi"} ;
+lin vek_AdvK = {s = c99 "vek"} ;
+lin vekara_NK = {s = d12 "vekara"} ;
+lin vekata_VK = {s = c73A "vekata"} ;
+lin veke_AdvK = {s = c99 "veke"} ;
+lin vekkaus_NK = {s = d39 "vekkaus"} ;
+lin vekki_NK = {s = d05A "vekki"} ;
+lin veks_AdvK = {s = c99 "veks"} ;
+lin vekseli_NK = {s = d06 "vekseli"} ;
+lin velallinen_NK = {s = d38 "velallinen"} ;
+lin velaton_NK = {s = d34A "velaton"} ;
+lin velattomuus_NK = {s = d40 "velattomuus"} ;
+lin velho_NK = {s = d01 "velho"} ;
+lin veli_NK = {s = d07 "veli"} ;
+lin velinen_AdvK = {s = c99 "velinen"} ;
+lin veljeilla'_VK = {s = c67 "veljeillä"} ;
+lin veljeily_NK = {s = d02 "veljeily"} ;
+lin veljellinen_AK = {s = d38 "veljellinen"} ;
+--+ lin veljellisesti_AdvK = {s = c99 "veljellisesti"} ;
+lin veljellisyys_NK = {s = d40 "veljellisyys"} ;
+lin veljes_NK = {s = d39 "veljes"} ;
+lin veljesto'_NK = {s = d02 "veljestö"} ;
+lin veljeys_NK = {s = d40 "veljeys"} ;
+lin veljisto'_NK = {s = d02 "veljistö"} ;
+lin veljyys_NK = {s = d40 "veljyys"} ;
+lin velka_NK = {s = d09A "velka"} ;
+lin velkaannuttaa_VK = {s = c53A "velkaannuttaa"} ;
+lin velkaantua_VK = {s = c52A "velkaantua"} ;
+lin velkainen_NK = {s = d38 "velkainen"} ;
+lin velkaisuus_NK = {s = d40 "velkaisuus"} ;
+lin velkauttaa_VK = {s = c53A "velkauttaa"} ;
+lin velkautua_VK = {s = c52A "velkautua"} ;
+lin velkoa_VK = {s = c52A "velkoa"} ;
+lin velkoja_NK = {s = d10 "velkoja"} ;
+lin velkomus_NK = {s = d39 "velkomus"} ;
+lin wellerismi_NK = {s = d05 "wellerismi"} ;
+lin velli_NK = {s = d05 "velli"} ;
+lin velloa_VK = {s = c52 "velloa"} ;
+lin vellonta_NK = {s = d09A "vellonta"} ;
+lin velmu_AK = {s = d01 "velmu"} ;
+lin velmuilija_NK = {s = d12 "velmuilija"} ;
+lin velmuilla_VK = {s = c67 "velmuilla"} ;
+lin velmuilu_NK = {s = d02 "velmuilu"} ;
+--+ lin velmusti_AdvK = {s = c99 "velmusti"} ;
+lin velodromi_NK = {s = d05 "velodromi"} ;
+lin veloittaa_VK = {s = c53A "veloittaa"} ;
+lin veloitus_NK = {s = d39 "veloitus"} ;
+lin veltostaa_VK = {s = c53 "veltostaa"} ;
+lin veltosti_AdvK = {s = c99 "veltosti"} ;
+lin veltostua_VK = {s = c52 "veltostua"} ;
+lin veltostuttaa_VK = {s = c53A "veltostuttaa"} ;
+lin veltto_NK = {s = d01A "veltto"} ;
+lin velttoilla_VK = {s = c67 "velttoilla"} ;
+lin velttoilu_NK = {s = d02 "velttoilu"} ;
+lin velttous_NK = {s = d40 "velttous"} ;
+lin velttoutua_VK = {s = c52A "velttoutua"} ;
+lin veluuri_NK = {s = d06 "veluuri"} ;
+lin velvoite_NK = {s = d48A "velvoite"} ;
+lin velvoitetyo'llistetta'va'_NK = {s = d10 "velvoitetyöllistettävä"} ;
+lin velvoittaa_VK = {s = c53A "velvoittaa"} ;
+lin velvoittavuus_NK = {s = d40 "velvoittavuus"} ;
+lin velvoitus_NK = {s = d39 "velvoitus"} ;
+lin velvollinen_NK = {s = d38 "velvollinen"} ;
+--+ lin velvollisuudentuntoisesti_AdvK = {s = c99 "velvollisuudentuntoisesti"} ;
+lin velvollisuus_NK = {s = d40 "velvollisuus"} ;
+lin vemmel_NK = {s = d49A "vemmel"} ;
+lin vempain_NK = {s = d33 "vempain"} ;
+lin vempele_NK = {s = d49 "vempele"} ;
+lin vemputin_NK = {s = d33A "vemputin"} ;
+lin venakko_NK = {s = d04A "venakko"} ;
+lin venata_VK = {s = c73 "venata"} ;
+lin vene_NK = {s = d48 "vene"} ;
+lin veneenveista'ja'_NK = {s = d10 "veneenveistäjä"} ;
+lin veneerinen_NK = {s = d38 "veneerinen"} ;
+lin veneilija'_NK = {s = d12 "veneilijä"} ;
+lin veneilla'_VK = {s = c67 "veneillä"} ;
+lin veneily_NK = {s = d02 "veneily"} ;
+lin venelastillinen_NK = {s = d38 "venelastillinen"} ;
+lin venerologi_NK = {s = d05 "venerologi"} ;
+lin venerologia_NK = {s = d12 "venerologia"} ;
+lin venerologinen_NK = {s = d38 "venerologinen"} ;
+lin venesektio_NK = {s = d03 "venesektio"} ;
+lin venhe_NK = {s = d48 "venhe"} ;
+lin venho_NK = {s = d01 "venho"} ;
+lin venkoilla_VK = {s = c67 "venkoilla"} ;
+lin venkoilu_NK = {s = d02 "venkoilu"} ;
+lin venkoli_NK = {s = d06 "venkoli"} ;
+lin venonen_NK = {s = d38 "venonen"} ;
+lin ventata_VK = {s = c73A "ventata"} ;
+lin ventilaatio_NK = {s = d03 "ventilaatio"} ;
+lin ventilaattori_NK = {s = d06 "ventilaattori"} ;
+lin ventiloida_VK = {s = c62 "ventiloida"} ;
+lin ventilointi_NK = {s = d05A "ventilointi"} ;
+lin ventti_NK = {s = d05A "ventti"} ;
+lin venttiili_NK = {s = d06 "venttiili"} ;
+lin venyke_NK = {s = d48A "venyke"} ;
+lin venyma'_NK = {s = d10 "venymä"} ;
+lin venytella'_VK = {s = c67A "venytellä"} ;
+lin venyttya'_VK = {s = c52A "venyttyä"} ;
+lin venytta'ytya'_VK = {s = c52A "venyttäytyä"} ;
+lin venytta'a'_VK = {s = c53A "venyttää"} ;
+lin venytys_NK = {s = d39 "venytys"} ;
+lin venyvyys_NK = {s = d40 "venyvyys"} ;
+lin venya'_VK = {s = c52 "venyä"} ;
+lin vena'hdys_NK = {s = d39 "venähdys"} ;
+lin vena'hdytta'a'_VK = {s = c53A "venähdyttää"} ;
+lin vena'hta'a'_VK = {s = c53A "venähtää"} ;
+lin vena'ja'_NK = {s = d10 "venäjä"} ;
+lin vena'ja'nno's_NK = {s = d39 "venäjännös"} ;
+lin vena'ja'nta'a'_VK = {s = c54A "venäjäntää"} ;
+lin vena'la'inen_NK = {s = d38 "venäläinen"} ;
+lin vena'la'istya'_VK = {s = c52 "venäläistyä"} ;
+lin vena'la'ista'a'_VK = {s = c53 "venäläistää"} ;
+lin vena'la'isyys_NK = {s = d40 "venäläisyys"} ;
+--? lin vena't_NK = {s = d44 "venät"} ;
+lin vena'ytta'a'_VK = {s = c53A "venäyttää"} ;
+lin vena'ytys_NK = {s = d39 "venäytys"} ;
+lin veppi_NK = {s = d05A "veppi"} ;
+lin vepsa'_NK = {s = d10 "vepsä"} ;
+lin vepsa'la'inen_NK = {s = d38 "vepsäläinen"} ;
+lin veranta_NK = {s = d09A "veranta"} ;
+lin verbaalinen_NK = {s = d38 "verbaalinen"} ;
+lin verbaalistaa_VK = {s = c53 "verbaalistaa"} ;
+lin verbalisoida_VK = {s = c62 "verbalisoida"} ;
+lin verbalisointi_NK = {s = d05A "verbalisointi"} ;
+lin verbi_NK = {s = d05 "verbi"} ;
+lin vereentya'_VK = {s = c52A "vereentyä"} ;
+lin verekkyys_NK = {s = d40 "verekkyys"} ;
+lin verekselta'a'n_AdvK = {s = c99 "verekseltään"} ;
+lin vereka's_NK = {s = d41A "verekäs"} ;
+--+ lin verenhimoisesti_AdvK = {s = c99 "verenhimoisesti"} ;
+lin verenhimoisuus_NK = {s = d40 "verenhimoisuus"} ;
+lin verenimija'_NK = {s = d12 "verenimijä"} ;
+lin verenveto_NK = {s = d01A "verenveto"} ;
+lin veres_NK = {s = d39 "veres"} ;
+lin vereslihalla_AdvK = {s = c99 "vereslihalla"} ;
+lin vereslihalle_AdvK = {s = c99 "vereslihalle"} ;
+lin verestys_NK = {s = d39 "verestys"} ;
+lin verestya'_VK = {s = c52 "verestyä"} ;
+lin veresta'a'_VK = {s = c53 "verestää"} ;
+lin vereto'n_NK = {s = d34A "veretön"} ;
+lin vereva'_NK = {s = d10 "verevä"} ;
+lin verevo'itta'a'_VK = {s = c53A "verevöittää"} ;
+lin verhio'_NK = {s = d03 "verhiö"} ;
+lin verho_NK = {s = d01 "verho"} ;
+lin verhoamaton_NK = {s = d34A "verhoamaton"} ;
+lin verhoilija_NK = {s = d12 "verhoilija"} ;
+lin verhoilla_VK = {s = c67 "verhoilla"} ;
+lin verhoilu_NK = {s = d02 "verhoilu"} ;
+lin verhoomo_NK = {s = d02 "verhoomo"} ;
+lin verhota_VK = {s = c74 "verhota"} ;
+lin verhous_NK = {s = d39 "verhous"} ;
+lin verhoutua_VK = {s = c52A "verhoutua"} ;
+lin veri_NK = {s = d26 "veri"} ;
+lin verifikaatio_NK = {s = d03 "verifikaatio"} ;
+lin verifikaatti_NK = {s = d05A "verifikaatti"} ;
+lin verifioida_VK = {s = c62 "verifioida"} ;
+lin verifiointi_NK = {s = d05A "verifiointi"} ;
+lin verihaava_NK = {s = d09 "verihaava"} ;
+lin verijuuri_NK = {s = d26 "verijuuri"} ;
+lin verinen_AK = {s = d38 "verinen"} ;
+--+ lin verisesti_AdvK = {s = c99 "verisesti"} ;
+lin verissa'a'n_AdvK = {s = c99 "verissään"} ;
+lin veristya'_VK = {s = c52 "veristyä"} ;
+lin verista'a'_VK = {s = c53 "veristää"} ;
+lin verisyys_NK = {s = d40 "verisyys"} ;
+lin verivirtsaisuus_NK = {s = d40 "verivirtsaisuus"} ;
+lin verka_NK = {s = d09A "verka"} ;
+lin verkainen_NK = {s = d38 "verkainen"} ;
+lin verkalleen_AdvK = {s = c99 "verkalleen"} ;
+lin verkilo'_NK = {s = d02 "verkilö"} ;
+lin verkkaan_AdvK = {s = c99 "verkkaan"} ;
+lin verkkainen_AK = {s = d38 "verkkainen"} ;
+lin verkkaisa_AK = {s = d10 "verkkaisa"} ;
+--+ lin verkkaisasti_AdvK = {s = c99 "verkkaisasti"} ;
+--+ lin verkkaisesti_AdvK = {s = c99 "verkkaisesti"} ;
+lin verkkaisuus_NK = {s = d40 "verkkaisuus"} ;
+lin verkkari_NK = {s = d06 "verkkari"} ;
+lin verkko_NK = {s = d01A "verkko"} ;
+lin verkkoinen_NK = {s = d38 "verkkoinen"} ;
+lin verkkoutua_VK = {s = c52A "verkkoutua"} ;
+lin verkoitse_AdvK = {s = c99 "verkoitse"} ;
+lin verkosto_NK = {s = d02 "verkosto"} ;
+lin verkostoitua_VK = {s = c52A "verkostoitua"} ;
+lin verkostua_VK = {s = c52 "verkostua"} ;
+lin verkottaa_VK = {s = c53A "verkottaa"} ;
+lin verkottua_VK = {s = c52A "verkottua"} ;
+lin verkotus_NK = {s = d39 "verkotus"} ;
+lin vermiselli_NK = {s = d05 "vermiselli"} ;
+lin vermutti_NK = {s = d05A "vermutti"} ;
+lin vernissa_NK = {s = d13 "vernissa"} ;
+lin vernissata_VK = {s = c73 "vernissata"} ;
+lin vernissaus_NK = {s = d39 "vernissaus"} ;
+lin vero_NK = {s = d01 "vero"} ;
+lin veroinen_AK = {s = d38 "veroinen"} ;
+--+ lin veroisesti_AdvK = {s = c99 "veroisesti"} ;
+lin veroisuus_NK = {s = d40 "veroisuus"} ;
+lin verollinen_NK = {s = d38 "verollinen"} ;
+lin verollisuus_NK = {s = d40 "verollisuus"} ;
+lin veronalainen_2_NK = {s = d38 "veronalainen"} ;
+lin veronkanto_NK = {s = d01A "veronkanto"} ;
+lin veroton_NK = {s = d34A "veroton"} ;
+lin verottaa_VK = {s = c53A "verottaa"} ;
+lin verottaja_NK = {s = d10 "verottaja"} ;
+lin verottomuus_NK = {s = d40 "verottomuus"} ;
+lin verotuksellinen_AK = {s = d38 "verotuksellinen"} ;
+--+ lin verotuksellisesti_AdvK = {s = c99 "verotuksellisesti"} ;
+lin verotus_NK = {s = d39 "verotus"} ;
+lin verran_AdvK = {s = c99 "verran"} ;
+lin verrannollinen_AK = {s = d38 "verrannollinen"} ;
+--+ lin verrannollisesti_AdvK = {s = c99 "verrannollisesti"} ;
+lin verrannollisuus_NK = {s = d40 "verrannollisuus"} ;
+lin verranto_NK = {s = d01A "verranto"} ;
+lin verrari_NK = {s = d06 "verrari"} ;
+lin verrata_VK = {s = c73A "verrata"} ;
+lin verraten_AdvK = {s = c99 "verraten"} ;
+lin verraton_NK = {s = d34A "verraton"} ;
+lin verrattain_AdvK = {s = c99 "verrattain"} ;
+lin verrattomasti_AdvK = {s = c99 "verrattomasti"} ;
+lin verrattomuus_NK = {s = d40 "verrattomuus"} ;
+lin verroin_AdvK = {s = c99 "verroin"} ;
+lin verrokki_NK = {s = d05A "verrokki"} ;
+lin verrytella'_VK = {s = c67A "verrytellä"} ;
+lin verryttely_NK = {s = d02 "verryttely"} ;
+lin verrytta'a'_VK = {s = c53A "verryttää"} ;
+lin verrytys_NK = {s = d39 "verrytys"} ;
+lin versaali_NK = {s = d06 "versaali"} ;
+lin versio_NK = {s = d03 "versio"} ;
+lin verso_NK = {s = d01 "verso"} ;
+lin versoa_VK = {s = c52 "versoa"} ;
+lin versojuuri_NK = {s = d26 "versojuuri"} ;
+lin versonta_NK = {s = d09A "versonta"} ;
+lin verstas_NK = {s = d41 "verstas"} ;
+lin verta_AdvK = {s = c99 "verta"} ;
+lin vertahyyta'va'_NK = {s = d10 "vertahyytävä"} ;
+lin vertailla_VK = {s = c67 "vertailla"} ;
+lin vertailu_NK = {s = d02 "vertailu"} ;
+lin vertailukohta_NK = {s = d10A "vertailukohta"} ;
+lin vertainen_AK = {s = d38 "vertainen"} ;
+--+ lin vertaisesti_AdvK = {s = c99 "vertaisesti"} ;
+lin vertaisuus_NK = {s = d40 "vertaisuus"} ;
+lin vertaus_NK = {s = d39 "vertaus"} ;
+lin vertauskohta_NK = {s = d10A "vertauskohta"} ;
+lin vertautua_VK = {s = c52A "vertautua"} ;
+lin vertikaali_NK = {s = d05 "vertikaali"} ;
+lin vertikaalinen_NK = {s = d38 "vertikaalinen"} ;
+lin verto_NK = {s = d01A "verto"} ;
+lin vertoja_AdvK = {s = c99 "vertoja"} ;
+lin vertya'_VK = {s = c52A "vertyä"} ;
+lin veruke_NK = {s = d48A "veruke"} ;
+lin vera'ja'_NK = {s = d10 "veräjä"} ;
+lin vesa_NK = {s = d09 "vesa"} ;
+lin vesaikko_NK = {s = d04A "vesaikko"} ;
+lin vesakko_NK = {s = d04A "vesakko"} ;
+lin vesakkoinen_NK = {s = d38 "vesakkoinen"} ;
+lin vesakkoisuus_NK = {s = d40 "vesakkoisuus"} ;
+lin vesakoitua_VK = {s = c52A "vesakoitua"} ;
+lin vesata_VK = {s = c73 "vesata"} ;
+lin vesaus_NK = {s = d39 "vesaus"} ;
+lin vesi_NK = {s = d27 "vesi"} ;
+lin vesikauhuinen_NK = {s = d38 "vesikauhuinen"} ;
+lin vesikko_NK = {s = d04A "vesikko"} ;
+lin vesinen_NK = {s = d38 "vesinen"} ;
+lin vesipa'isyys_NK = {s = d40 "vesipäisyys"} ;
+lin vesisto'_NK = {s = d02 "vesistö"} ;
+lin vesisto'inen_NK = {s = d38 "vesistöinen"} ;
+lin vesitse_AdvK = {s = c99 "vesitse"} ;
+lin vesittya'_VK = {s = c52A "vesittyä"} ;
+lin vesitta'a'_VK = {s = c53A "vesittää"} ;
+lin vesitys_NK = {s = d39 "vesitys"} ;
+lin veska_NK = {s = d09 "veska"} ;
+lin veskari_NK = {s = d06 "veskari"} ;
+lin veski_NK = {s = d05 "veski"} ;
+lin vesoa_VK = {s = c52 "vesoa"} ;
+lin vesoittua_VK = {s = c52A "vesoittua"} ;
+lin vesper_NK = {s = d06 "vesper"} ;
+lin vessa_NK = {s = d09 "vessa"} ;
+lin vesseli_NK = {s = d06 "vesseli"} ;
+lin wessi_NK = {s = d05 "wessi"} ;
+lin western_NK = {s = d05 "western"} ;
+lin vesuri_NK = {s = d06 "vesuri"} ;
+lin vetehinen_NK = {s = d38 "vetehinen"} ;
+lin vetelehtija'_NK = {s = d12 "vetelehtijä"} ;
+lin vetelehtia'_VK = {s = c61A "vetelehtiä"} ;
+lin vetely_NK = {s = d02 "vetely"} ;
+lin vetelys_NK = {s = d39 "vetelys"} ;
+lin vetelyys_NK = {s = d40 "vetelyys"} ;
+lin vetela'_NK = {s = d10 "vetelä"} ;
+lin vetela'sti_AdvK = {s = c99 "vetelästi"} ;
+lin vetelo'itta'a'_VK = {s = c53A "vetelöittää"} ;
+lin vetelo'itya'_VK = {s = c52A "vetelöityä"} ;
+lin veteraani_NK = {s = d05 "veteraani"} ;
+lin vetinen_NK = {s = d38 "vetinen"} ;
+lin vetistella'_VK = {s = c67 "vetistellä"} ;
+lin vetistely_NK = {s = d02 "vetistely"} ;
+lin vetistya'_VK = {s = c52 "vetistyä"} ;
+lin vetista'a'_VK = {s = c53 "vetistää"} ;
+lin vetkutella_VK = {s = c67A "vetkutella"} ;
+lin veto_1_NK = {s = d01A "veto"} ;
+lin veto_2_NK = {s = d01A "veto"} ;
+lin veto_3_NK = {s = d01 "veto"} ;
+lin vetoaja_NK = {s = d10 "vetoaja"} ;
+lin vetoinen_NK = {s = d38 "vetoinen"} ;
+lin vetoisa_NK = {s = d10 "vetoisa"} ;
+lin vetoisuus_NK = {s = d40 "vetoisuus"} ;
+lin vetoomus_NK = {s = d39 "vetoomus"} ;
+lin vetreytta'a'_VK = {s = c53A "vetreyttää"} ;
+lin vetreytys_NK = {s = d39 "vetreytys"} ;
+lin vetreytya'_VK = {s = c52A "vetreytyä"} ;
+lin vetrea'_NK = {s = d15 "vetreä"} ;
+lin vetristys_NK = {s = d39 "vetristys"} ;
+lin vetristya'_VK = {s = c52 "vetristyä"} ;
+lin vetrista'a'_VK = {s = c53 "vetristää"} ;
+lin vetskari_NK = {s = d06 "vetskari"} ;
+lin vettya'_VK = {s = c52A "vettyä"} ;
+lin vetta'hylkiva'_NK = {s = d10 "vettähylkivä"} ;
+lin vetta'la'pa'iseva'_NK = {s = d10 "vettäläpäisevä"} ;
+lin veturi_NK = {s = d06 "veturi"} ;
+lin vety_NK = {s = d01A "vety"} ;
+lin veta'ista'_VK = {s = c66 "vetäistä"} ;
+lin veta'isy_NK = {s = d02 "vetäisy"} ;
+lin veta'ja'_NK = {s = d10 "vetäjä"} ;
+lin veta'ma'to'n_NK = {s = d34A "vetämätön"} ;
+lin veta'vyys_NK = {s = d40 "vetävyys"} ;
+lin veta'va'_AK = {s = d10 "vetävä"} ;
+--+ lin veta'va'sti_AdvK = {s = c99 "vetävästi"} ;
+lin veta'ytya'_VK = {s = c52A "vetäytyä"} ;
+lin veta'a'_VK = {s = c53A "vetää"} ;
+lin veta'a'ntya'_VK = {s = c52A "vetääntyä"} ;
+lin veuhtoa_VK = {s = c52A "veuhtoa"} ;
+lin whippet_NK = {s = d05 "whippet"} ;
+lin whisky_NK = {s = d01 "whisky"} ;
+lin via_AdvK = {s = c99 "via"} ;
+lin viallinen_NK = {s = d38 "viallinen"} ;
+lin viallisuus_NK = {s = d40 "viallisuus"} ;
+lin viaton_NK = {s = d34A "viaton"} ;
+lin viattomasti_AdvK = {s = c99 "viattomasti"} ;
+lin viattomuus_NK = {s = d40 "viattomuus"} ;
+lin vibraatio_NK = {s = d03 "vibraatio"} ;
+lin vibraattori_NK = {s = d06 "vibraattori"} ;
+lin vibrafoni_NK = {s = d05 "vibrafoni"} ;
+lin vibrafonisti_NK = {s = d05 "vibrafonisti"} ;
+lin vibrato_NK = {s = d01 "vibrato"} ;
+lin vichy_NK = {s = d01 "vichy"} ;
+lin video_NK = {s = d03 "video"} ;
+lin videoida_VK = {s = c62 "videoida"} ;
+lin videointi_NK = {s = d05A "videointi"} ;
+lin videoteekki_NK = {s = d05A "videoteekki"} ;
+lin videoteksi_NK = {s = d05 "videoteksi"} ;
+lin vidiootti_NK = {s = d05A "vidiootti"} ;
+lin vieda'_VK = {s = c64 "viedä"} ;
+lin viehe_NK = {s = d48 "viehe"} ;
+lin viehkeys_NK = {s = d40 "viehkeys"} ;
+lin viehkea'_AK = {s = d15 "viehkeä"} ;
+--+ lin viehkea'sti_AdvK = {s = c99 "viehkeästi"} ;
+lin viehko_AK = {s = d01 "viehko"} ;
+--+ lin viehkosti_AdvK = {s = c99 "viehkosti"} ;
+lin viehtymys_NK = {s = d39 "viehtymys"} ;
+lin viehtya'_VK = {s = c52A "viehtyä"} ;
+lin vieha'ttya'_VK = {s = c52A "viehättyä"} ;
+lin vieha'tta'vyys_NK = {s = d40 "viehättävyys"} ;
+lin vieha'tta'va'_AK = {s = d10 "viehättävä"} ;
+--+ lin vieha'tta'va'sti_AdvK = {s = c99 "viehättävästi"} ;
+lin vieha'tta'a'_VK = {s = c53A "viehättää"} ;
+lin vieha'tys_NK = {s = d39 "viehätys"} ;
+lin vieja'_NK = {s = d10 "viejä"} ;
+lin viekas_AK = {s = d41A "viekas"} ;
+lin viekastella_VK = {s = c67 "viekastella"} ;
+lin viekastelu_NK = {s = d02 "viekastelu"} ;
+--+ lin viekkaasti_AdvK = {s = c99 "viekkaasti"} ;
+lin viekkaus_NK = {s = d40 "viekkaus"} ;
+lin viekoitella_VK = {s = c67A "viekoitella"} ;
+lin viekoittaa_VK = {s = c53A "viekoittaa"} ;
+lin viekoittelu_NK = {s = d02 "viekoittelu"} ;
+lin viekoitus_NK = {s = d39 "viekoitus"} ;
+lin viela'_AdvK = {s = c99 "vielä"} ;
+lin vieminen_NK = {s = d38 "vieminen"} ;
+lin viema'ri_NK = {s = d06 "viemäri"} ;
+lin viema'risto'_NK = {s = d01 "viemäristö"} ;
+lin viema'ro'ida'_VK = {s = c62 "viemäröidä"} ;
+lin viema'ro'inti_NK = {s = d05A "viemäröinti"} ;
+lin wienervalssi_NK = {s = d05 "wienervalssi"} ;
+lin wienila'isvalssi_NK = {s = d05 "wieniläisvalssi"} ;
+lin vieno_NK = {s = d01 "vieno"} ;
+lin vienosti_AdvK = {s = c99 "vienosti"} ;
+lin vienous_NK = {s = d40 "vienous"} ;
+lin vienti_NK = {s = d05A "vienti"} ;
+lin vieraannuttaa_VK = {s = c53A "vieraannuttaa"} ;
+lin vieraantua_VK = {s = c52A "vieraantua"} ;
+lin vieraantuneisuus_NK = {s = d40 "vieraantuneisuus"} ;
+--+ lin vieraanvaraisesti_AdvK = {s = c99 "vieraanvaraisesti"} ;
+--+ lin vieraanvoittoisesti_AdvK = {s = c99 "vieraanvoittoisesti"} ;
+lin vierailija_NK = {s = d12 "vierailija"} ;
+lin vierailla_VK = {s = c67 "vierailla"} ;
+lin vierailu_NK = {s = d02 "vierailu"} ;
+lin vierailuaika_NK = {s = d09A "vierailuaika"} ;
+lin vieraisilla_AdvK = {s = c99 "vieraisilla"} ;
+lin vieraisille_AdvK = {s = c99 "vieraisille"} ;
+lin vieraisilta_AdvK = {s = c99 "vieraisilta"} ;
+lin vieraissa_AdvK = {s = c99 "vieraissa"} ;
+lin vieras_NK = {s = d41 "vieras"} ;
+lin vierastaa_VK = {s = c53 "vierastaa"} ;
+lin vierastuttaa_VK = {s = c53A "vierastuttaa"} ;
+lin vieraus_NK = {s = d40 "vieraus"} ;
+lin vierauttaa_VK = {s = c53A "vierauttaa"} ;
+lin vierautua_VK = {s = c52A "vierautua"} ;
+lin viereen_AdvK = {s = c99 "viereen"} ;
+lin viereinen_NK = {s = d38 "viereinen"} ;
+lin vierekka'in_AdvK = {s = c99 "vierekkäin"} ;
+lin vierekka'inen_NK = {s = d38 "vierekkäinen"} ;
+lin vierekka'isyys_NK = {s = d40 "vierekkäisyys"} ;
+lin viereksia'_VK = {s = c61 "viereksiä"} ;
+lin vierelle_AdvK = {s = c99 "vierelle"} ;
+lin vierella'_AdvK = {s = c99 "vierellä"} ;
+lin vierelta'_AdvK = {s = c99 "viereltä"} ;
+lin vierema'_NK = {s = d10 "vieremä"} ;
+lin vieressa'_AdvK = {s = c99 "vieressä"} ;
+lin vieresta'_AdvK = {s = c99 "vierestä"} ;
+lin vieretta'in_AdvK = {s = c99 "vierettäin"} ;
+lin vieretyksin_AdvK = {s = c99 "vieretyksin"} ;
+lin vieretysten_AdvK = {s = c99 "vieretysten"} ;
+lin vieri_NK = {s = d26 "vieri"} ;
+lin vierinta'laakeri_NK = {s = d06 "vierintälaakeri"} ;
+lin vieritse_AdvK = {s = c99 "vieritse"} ;
+lin vieritta'ytya'_VK = {s = c52A "vierittäytyä"} ;
+lin vieritta'a'_VK = {s = c53A "vierittää"} ;
+lin vieritys_NK = {s = d39 "vieritys"} ;
+lin vieria'_VK = {s = c61 "vieriä"} ;
+lin vieroa_VK = {s = c52 "vieroa"} ;
+lin vieroittaa_VK = {s = c53A "vieroittaa"} ;
+lin vieroittautua_VK = {s = c52A "vieroittautua"} ;
+lin vieroittua_VK = {s = c52A "vieroittua"} ;
+lin vieroitus_NK = {s = d39 "vieroitus"} ;
+lin vieroitusaika_NK = {s = d09A "vieroitusaika"} ;
+lin vieroksua_VK = {s = c52 "vieroksua"} ;
+lin vieroksunta_NK = {s = d09A "vieroksunta"} ;
+lin vierre_NK = {s = d48A "vierre"} ;
+lin vierus_NK = {s = d39 "vierus"} ;
+lin vierusta_NK = {s = d13 "vierusta"} ;
+lin viera'hdys_NK = {s = d39 "vierähdys"} ;
+lin viera'hta'a'_VK = {s = c53A "vierähtää"} ;
+lin viera'ytta'a'_VK = {s = c53A "vieräyttää"} ;
+lin viesti_NK = {s = d05 "viesti"} ;
+lin viestin_NK = {s = d33 "viestin"} ;
+lin viestinta'_NK = {s = d09A "viestintä"} ;
+lin viestittya'_VK = {s = c52A "viestittyä"} ;
+lin viestitta'ja'_NK = {s = d10 "viestittäjä"} ;
+lin viestitta'a'_VK = {s = c53A "viestittää"} ;
+lin viestitys_NK = {s = d39 "viestitys"} ;
+lin viestia'_VK = {s = c61 "viestiä"} ;
+lin vietella'_VK = {s = c67A "vietellä"} ;
+lin vieteri_NK = {s = d06 "vieteri"} ;
+lin viettelevyys_NK = {s = d40 "viettelevyys"} ;
+lin vietteleva'_AK = {s = d10 "viettelevä"} ;
+--+ lin vietteleva'sti_AdvK = {s = c99 "viettelevästi"} ;
+lin viettelija'_NK = {s = d12 "viettelijä"} ;
+lin viettelija'ta'r_NK = {s = d32A "viettelijätär"} ;
+lin viettely_NK = {s = d02 "viettely"} ;
+lin viettelys_NK = {s = d39 "viettelys"} ;
+lin vietti_NK = {s = d05A "vietti"} ;
+lin vietto_NK = {s = d01A "vietto"} ;
+lin viettymys_NK = {s = d39 "viettymys"} ;
+lin vietta'ja'_NK = {s = d10 "viettäjä"} ;
+lin vietta'a'_VK = {s = c53A "viettää"} ;
+lin vieta'va'_AK = {s = d10 "vietävä"} ;
+lin vieta'va'nmoinen_NK = {s = d38 "vietävänmoinen"} ;
+--+ lin vieta'va'sti_AdvK = {s = c99 "vietävästi"} ;
+lin vigilia_NK = {s = d12 "vigilia"} ;
+lin wigwam_NK = {s = d05 "wigwam"} ;
+lin vigvami_NK = {s = d05 "vigvami"} ;
+lin viha_NK = {s = d09 "viha"} ;
+lin vihaaja_NK = {s = d10 "vihaaja"} ;
+lin vihainen_AK = {s = d38 "vihainen"} ;
+--+ lin vihaisesti_AdvK = {s = c99 "vihaisesti"} ;
+lin vihaisuus_NK = {s = d40 "vihaisuus"} ;
+--+ lin vihamielisesti_AdvK = {s = c99 "vihamielisesti"} ;
+lin vihannes_NK = {s = d39 "vihannes"} ;
+lin vihannoida_VK = {s = c68 "vihannoida"} ;
+lin vihanta_NK = {s = d09A "vihanta"} ;
+lin vihapa'issa'_AdvK = {s = c99 "vihapäissä"} ;
+lin vihastua_VK = {s = c52 "vihastua"} ;
+lin vihastus_NK = {s = d39 "vihastus"} ;
+lin vihastuttaa_VK = {s = c53A "vihastuttaa"} ;
+lin vihata_VK = {s = c73 "vihata"} ;
+lin vihdas_NK = {s = d39 "vihdas"} ;
+lin vihdoin_AdvK = {s = c99 "vihdoin"} ;
+lin vihdonta_NK = {s = d09A "vihdonta"} ;
+lin vihelia'inen_AK = {s = d38 "viheliäinen"} ;
+--+ lin vihelia'isesti_AdvK = {s = c99 "viheliäisesti"} ;
+lin vihelia'isyys_NK = {s = d40 "viheliäisyys"} ;
+lin vihellella'_VK = {s = c67A "vihellellä"} ;
+lin vihellys_NK = {s = d39 "vihellys"} ;
+lin vihelta'ja'_NK = {s = d10 "viheltäjä"} ;
+lin vihelta'a'_VK = {s = c54A "viheltää"} ;
+lin viherio'_NK = {s = d03 "viheriö"} ;
+lin viherio'ida'_VK = {s = c68 "viheriöidä"} ;
+lin viherio'inti_NK = {s = d05A "viheriöinti"} ;
+lin viherio'itta'a'_VK = {s = c53A "viheriöittää"} ;
+lin viherrys_NK = {s = d39 "viherrys"} ;
+lin vihertya'_VK = {s = c52A "vihertyä"} ;
+lin viherta'va'_NK = {s = d10 "vihertävä"} ;
+lin viherta'a'_VK = {s = c54A "vihertää"} ;
+lin viherva'_NK = {s = d10 "vihervä"} ;
+lin vihi_NK = {s = d05 "vihi"} ;
+lin vihille_AdvK = {s = c99 "vihille"} ;
+lin vihilla'_AdvK = {s = c99 "vihillä"} ;
+lin vihilta'_AdvK = {s = c99 "vihiltä"} ;
+lin vihitta'a'_VK = {s = c53A "vihittää"} ;
+lin vihitytta'a'_VK = {s = c53A "vihityttää"} ;
+lin vihjailla_VK = {s = c67 "vihjailla"} ;
+lin vihjailu_NK = {s = d02 "vihjailu"} ;
+lin vihjaista_VK = {s = c66 "vihjaista"} ;
+lin vihjata_VK = {s = c73 "vihjata"} ;
+lin vihjaus_NK = {s = d39 "vihjaus"} ;
+lin vihje_NK = {s = d48 "vihje"} ;
+lin vihkaista_VK = {s = c66 "vihkaista"} ;
+lin vihkija'_NK = {s = d12 "vihkijä"} ;
+lin vihkimys_NK = {s = d39 "vihkimys"} ;
+lin vihkima'to'n_NK = {s = d34A "vihkimätön"} ;
+lin vihkipalli_NK = {s = d05 "vihkipalli"} ;
+lin vihkipari_NK = {s = d05 "vihkipari"} ;
+lin vihkiytyma'to'n_NK = {s = d34A "vihkiytymätön"} ;
+lin vihkiytya'_VK = {s = c52A "vihkiytyä"} ;
+lin vihkia'_VK = {s = c61A "vihkiä"} ;
+--? lin vihkia'iset_NK = {s = d38 "vihkiäiset"} ;
+lin vihko_NK = {s = d01 "vihko"} ;
+lin vihkoittain_AdvK = {s = c99 "vihkoittain"} ;
+lin vihkollinen_NK = {s = d38 "vihkollinen"} ;
+lin vihkonen_NK = {s = d38 "vihkonen"} ;
+lin vihlaista_VK = {s = c66 "vihlaista"} ;
+lin vihlaisu_NK = {s = d02 "vihlaisu"} ;
+lin vihloa_VK = {s = c52 "vihloa"} ;
+lin vihma_1_NK = {s = d09 "vihma"} ;
+lin vihma_2_NK = {s = d09 "vihma"} ;
+lin vihmainen_NK = {s = d38 "vihmainen"} ;
+lin vihmin_NK = {s = d33 "vihmin"} ;
+lin vihmoa_VK = {s = c52 "vihmoa"} ;
+lin vihmoitin_NK = {s = d33A "vihmoitin"} ;
+lin vihmoittaa_VK = {s = c53A "vihmoittaa"} ;
+lin vihmoitus_NK = {s = d39 "vihmoitus"} ;
+lin vihne_NK = {s = d48 "vihne"} ;
+lin vihoissa_AdvK = {s = c99 "vihoissa"} ;
+lin vihoissaan_AdvK = {s = c99 "vihoissaan"} ;
+lin vihoitella_VK = {s = c67A "vihoitella"} ;
+lin vihoittaa_VK = {s = c53A "vihoittaa"} ;
+lin vihoittain_AdvK = {s = c99 "vihoittain"} ;
+lin vihoittelu_NK = {s = d02 "vihoittelu"} ;
+lin viholainen_NK = {s = d38 "viholainen"} ;
+lin vihollinen_NK = {s = d38 "vihollinen"} ;
+lin vihollisuus_NK = {s = d40 "vihollisuus"} ;
+lin vihonviimein_AdvK = {s = c99 "vihonviimein"} ;
+lin vihoviimein_AdvK = {s = c99 "vihoviimein"} ;
+lin vihreys_NK = {s = d40 "vihreys"} ;
+lin vihrea'_NK = {s = d15 "vihreä"} ;
+lin vihta_NK = {s = d09A "vihta"} ;
+lin vihtahousu_NK = {s = d01 "vihtahousu"} ;
+lin vihtoa_VK = {s = c52A "vihtoa"} ;
+lin vihtori_NK = {s = d06 "vihtori"} ;
+lin vihtrilli_NK = {s = d05 "vihtrilli"} ;
+lin vihulainen_NK = {s = d38 "vihulainen"} ;
+lin vihuri_NK = {s = d06 "vihuri"} ;
+lin vihvila'_NK = {s = d12 "vihvilä"} ;
+lin viidakko_NK = {s = d04A "viidakko"} ;
+lin viidennes_NK = {s = d39 "viidennes"} ;
+lin viides_NK = {s = d45 "viides"} ;
+lin viidesti_AdvK = {s = c99 "viidesti"} ;
+lin viihde_NK = {s = d48A "viihde"} ;
+lin viihdyke_NK = {s = d48A "viihdyke"} ;
+lin viihdyte_NK = {s = d48A "viihdyte"} ;
+lin viihdytta'ja'_NK = {s = d10 "viihdyttäjä"} ;
+lin viihdytta'a'_VK = {s = c53A "viihdyttää"} ;
+lin viihdytys_NK = {s = d39 "viihdytys"} ;
+lin viihteellinen_AK = {s = d38 "viihteellinen"} ;
+--+ lin viihteellisesti_AdvK = {s = c99 "viihteellisesti"} ;
+lin viihteellistya'_VK = {s = c52 "viihteellistyä"} ;
+lin viihteellisyys_NK = {s = d40 "viihteellisyys"} ;
+lin viihtyisyys_NK = {s = d40 "viihtyisyys"} ;
+lin viihtyisa'_AK = {s = d10 "viihtyisä"} ;
+--+ lin viihtyisa'sti_AdvK = {s = c99 "viihtyisästi"} ;
+lin viihtymys_NK = {s = d39 "viihtymys"} ;
+lin viihtyvyys_NK = {s = d40 "viihtyvyys"} ;
+lin viihtya'_VK = {s = c52A "viihtyä"} ;
+lin viikari_NK = {s = d06 "viikari"} ;
+lin viikata_VK = {s = c73A "viikata"} ;
+lin viikate_NK = {s = d48A "viikate"} ;
+lin viikinki_NK = {s = d05A "viikinki"} ;
+lin viikinkiaika_NK = {s = d09A "viikinkiaika"} ;
+lin viikkaus_NK = {s = d39 "viikkaus"} ;
+lin viikko_NK = {s = d01A "viikko"} ;
+lin viikkoinen_NK = {s = d38 "viikkoinen"} ;
+lin viikoittain_AdvK = {s = c99 "viikoittain"} ;
+lin viikoittainen_NK = {s = d38 "viikoittainen"} ;
+lin viikonloppuisin_AdvK = {s = c99 "viikonloppuisin"} ;
+lin viikseka's_NK = {s = d41A "viiksekäs"} ;
+lin viiksi_NK = {s = d07 "viiksi"} ;
+lin viiksika's_NK = {s = d41A "viiksikäs"} ;
+lin viiksinen_NK = {s = d38 "viiksinen"} ;
+lin viikuna_NK = {s = d12 "viikuna"} ;
+lin viila_NK = {s = d09 "viila"} ;
+lin viilaaja_NK = {s = d10 "viilaaja"} ;
+lin viilari_1_NK = {s = d06 "viilari"} ;
+lin viilari_2_NK = {s = d06 "viilari"} ;
+lin viilata_VK = {s = c73 "viilata"} ;
+lin viilaus_NK = {s = d39 "viilaus"} ;
+lin viileke_NK = {s = d48A "viileke"} ;
+lin viilennys_NK = {s = d39 "viilennys"} ;
+lin viilentya'_VK = {s = c52A "viilentyä"} ;
+lin viilenta'a'_VK = {s = c54A "viilentää"} ;
+lin viileskella'_VK = {s = c67 "viileskellä"} ;
+lin viileskely_NK = {s = d02 "viileskely"} ;
+lin viiletella'_VK = {s = c67A "viiletellä"} ;
+lin viiletta'a'_VK = {s = c53A "viilettää"} ;
+lin viiletys_NK = {s = d39 "viiletys"} ;
+lin viileta'_VK = {s = c72 "viiletä"} ;
+lin viileys_NK = {s = d40 "viileys"} ;
+lin viileytta'a'_VK = {s = c53A "viileyttää"} ;
+lin viilea'_AK = {s = d15 "viileä"} ;
+--+ lin viilea'sti_AdvK = {s = c99 "viileästi"} ;
+lin viili_NK = {s = d05 "viili"} ;
+lin viille_NK = {s = d48A "viille"} ;
+lin viillella'_VK = {s = c67A "viillellä"} ;
+lin viillokki_NK = {s = d05A "viillokki"} ;
+lin viillos_NK = {s = d39 "viillos"} ;
+lin viillytta'a'_VK = {s = c53A "viillyttää"} ;
+lin viilokki_NK = {s = d05A "viilokki"} ;
+lin viilto_NK = {s = d01A "viilto"} ;
+lin viiltohaava_NK = {s = d09 "viiltohaava"} ;
+lin viilta'a'_VK = {s = c54A "viiltää"} ;
+lin viilu_NK = {s = d01 "viilu"} ;
+lin viiluttaa_VK = {s = c53A "viiluttaa"} ;
+lin viilutus_NK = {s = d39 "viilutus"} ;
+lin viima_NK = {s = d09 "viima"} ;
+lin viimainen_NK = {s = d38 "viimainen"} ;
+lin viime_AdvK = {s = c99 "viime"} ;
+lin viimeinen_NK = {s = d38 "viimeinen"} ;
+lin viimeiseksi_AdvK = {s = c99 "viimeiseksi"} ;
+lin viimeisilla'a'n_AdvK = {s = c99 "viimeisillään"} ;
+lin viimeiste_NK = {s = d48 "viimeiste"} ;
+lin viimeistelema'to'n_NK = {s = d34A "viimeistelemätön"} ;
+lin viimeistella'_VK = {s = c67 "viimeistellä"} ;
+lin viimeistely_NK = {s = d02 "viimeistely"} ;
+lin viimeistys_NK = {s = d39 "viimeistys"} ;
+lin viimeista'a'_VK = {s = c53 "viimeistää"} ;
+lin viimeista'a'n_AdvK = {s = c99 "viimeistään"} ;
+lin viimeksi_AdvK = {s = c99 "viimeksi"} ;
+lin viimemainittu_NK = {s = d01A "viimemainittu"} ;
+lin viina_NK = {s = d09 "viina"} ;
+lin viinainen_NK = {s = d38 "viinainen"} ;
+--? lin viinakset_NK = {s = d39 "viinakset"} ;
+lin viinapa'issa'_AdvK = {s = c99 "viinapäissä"} ;
+lin viinaton_NK = {s = d34A "viinaton"} ;
+lin viineri_NK = {s = d06 "viineri"} ;
+lin viini_1_NK = {s = d05 "viini"} ;
+lin viini_2_NK = {s = d26 "viini"} ;
+lin viinitta'a'_VK = {s = c53A "viinittää"} ;
+lin viinuri_NK = {s = d06 "viinuri"} ;
+lin viipale_NK = {s = d48 "viipale"} ;
+lin viipaloida_VK = {s = c62 "viipaloida"} ;
+lin viipalointi_NK = {s = d05A "viipalointi"} ;
+lin viipottaa_VK = {s = c53A "viipottaa"} ;
+lin viipotus_NK = {s = d39 "viipotus"} ;
+lin viipyilla'_VK = {s = c67 "viipyillä"} ;
+lin viipyma'_NK = {s = d10 "viipymä"} ;
+lin viipyma'tta'_AdvK = {s = c99 "viipymättä"} ;
+lin viipyma'to'n_NK = {s = d34A "viipymätön"} ;
+lin viipya'_VK = {s = c52A "viipyä"} ;
+lin viira_NK = {s = d09 "viira"} ;
+lin viirata_VK = {s = c73 "viirata"} ;
+lin viiri_NK = {s = d05 "viiri"} ;
+lin viiria'inen_NK = {s = d38 "viiriäinen"} ;
+lin viiru_NK = {s = d01 "viiru"} ;
+lin viiruinen_NK = {s = d38 "viiruinen"} ;
+lin viirukas_NK = {s = d41A "viirukas"} ;
+lin viirullinen_NK = {s = d38 "viirullinen"} ;
+lin viis_AdvK = {s = c99 "viis"} ;
+--+ lin viisaasti_AdvK = {s = c99 "viisaasti"} ;
+lin viisari_NK = {s = d06 "viisari"} ;
+lin viisas_AK = {s = d41 "viisas"} ;
+lin viisastaa_VK = {s = c53 "viisastaa"} ;
+lin viisastelija_NK = {s = d12 "viisastelija"} ;
+lin viisastella_VK = {s = c67 "viisastella"} ;
+lin viisastua_VK = {s = c52 "viisastua"} ;
+lin viisastuttaa_VK = {s = c53A "viisastuttaa"} ;
+lin viisaus_NK = {s = d40 "viisaus"} ;
+lin viisi_1_NK = {s = d27 "viisi"} ;
+lin viisi_2_AdvK = {s = c99 "viisi"} ;
+lin viisikko_NK = {s = d04A "viisikko"} ;
+lin viiste_NK = {s = d48 "viiste"} ;
+lin viisto_AK = {s = d01 "viisto"} ;
+lin viistoon_AdvK = {s = c99 "viistoon"} ;
+lin viistossa_AdvK = {s = c99 "viistossa"} ;
+lin viistosta_AdvK = {s = c99 "viistosta"} ;
+--+ lin viistosti_AdvK = {s = c99 "viistosti"} ;
+lin viistota_VK = {s = c74 "viistota"} ;
+lin viistous_NK = {s = d40 "viistous"} ;
+lin viistoutua_VK = {s = c52A "viistoutua"} ;
+lin viista'a'_VK = {s = c53 "viistää"} ;
+lin viisu_NK = {s = d01 "viisu"} ;
+lin viisumi_NK = {s = d06 "viisumi"} ;
+lin viita_NK = {s = d09A "viita"} ;
+lin viitata_VK = {s = c73A "viitata"} ;
+lin viite_NK = {s = d48A "viite"} ;
+lin viitisen_AdvK = {s = c99 "viitisen"} ;
+lin viitisenkymmenta'_AdvK = {s = c99 "viitisenkymmentä"} ;
+lin viitoittaa_VK = {s = c53A "viitoittaa"} ;
+lin viitoitus_NK = {s = d39 "viitoitus"} ;
+lin viitonen_NK = {s = d38 "viitonen"} ;
+lin viitselia'isyys_NK = {s = d40 "viitseliäisyys"} ;
+lin viitselia's_AK = {s = d41 "viitseliäs"} ;
+--+ lin viitselia'a'sti_AdvK = {s = c99 "viitseliäästi"} ;
+lin viitsia'_VK = {s = c61 "viitsiä"} ;
+lin viitta_1_NK = {s = d09A "viitta"} ;
+lin viitta_2_NK = {s = d09A "viitta"} ;
+lin viittailla_VK = {s = c67 "viittailla"} ;
+lin viittauksellinen_NK = {s = d38 "viittauksellinen"} ;
+lin viittaus_NK = {s = d39 "viittaus"} ;
+lin viitteellinen_AK = {s = d38 "viitteellinen"} ;
+--+ lin viitteellisesti_AdvK = {s = c99 "viitteellisesti"} ;
+lin viitteellisyys_NK = {s = d40 "viitteellisyys"} ;
+lin viittilo'ida'_VK = {s = c62 "viittilöidä"} ;
+lin viittilo'inti_NK = {s = d05A "viittilöinti"} ;
+lin viittoa_VK = {s = c52A "viittoa"} ;
+lin viittoilla_VK = {s = c67 "viittoilla"} ;
+lin viittoilu_NK = {s = d02 "viittoilu"} ;
+lin viittoja_NK = {s = d10 "viittoja"} ;
+lin viittoma_NK = {s = d10 "viittoma"} ;
+lin viiva_NK = {s = d09 "viiva"} ;
+lin viivain_NK = {s = d33 "viivain"} ;
+lin viivainen_AK = {s = d38 "viivainen"} ;
+--+ lin viivaisesti_AdvK = {s = c99 "viivaisesti"} ;
+lin viivaisuus_NK = {s = d40 "viivaisuus"} ;
+lin viivallinen_NK = {s = d38 "viivallinen"} ;
+lin viivasto_NK = {s = d02 "viivasto"} ;
+lin viivata_VK = {s = c73 "viivata"} ;
+lin viivaus_NK = {s = d39 "viivaus"} ;
+lin viive_NK = {s = d48 "viive"} ;
+lin viivoitin_NK = {s = d33A "viivoitin"} ;
+lin viivoittaa_VK = {s = c53A "viivoittaa"} ;
+lin viivoitus_NK = {s = d39 "viivoitus"} ;
+lin viivytella'_VK = {s = c67A "viivytellä"} ;
+lin viivyttely_NK = {s = d02 "viivyttely"} ;
+lin viivytta'a'_VK = {s = c53A "viivyttää"} ;
+lin viivytys_NK = {s = d39 "viivytys"} ;
+lin viiva'hta'a'_VK = {s = c53A "viivähtää"} ;
+lin viiva'stella'_VK = {s = c67 "viivästellä"} ;
+lin viiva'stely_NK = {s = d02 "viivästely"} ;
+lin viiva'stymisaika_NK = {s = d09A "viivästymisaika"} ;
+lin viiva'styma'_NK = {s = d10 "viivästymä"} ;
+lin viiva'stys_NK = {s = d39 "viivästys"} ;
+lin viiva'stytta'a'_VK = {s = c53A "viivästyttää"} ;
+lin viiva'stya'_VK = {s = c52 "viivästyä"} ;
+lin viiva'sta'a'_VK = {s = c53 "viivästää"} ;
+lin vika_1_NK = {s = d09A "vika"} ;
+lin vika_2_NK = {s = d09 "vika"} ;
+lin vikaantua_VK = {s = c52A "vikaantua"} ;
+lin vikainen_NK = {s = d38 "vikainen"} ;
+lin vikaisuus_NK = {s = d40 "vikaisuus"} ;
+lin vikautua_VK = {s = c52A "vikautua"} ;
+lin vikina'_NK = {s = d12 "vikinä"} ;
+lin vikista'_VK = {s = c66 "vikistä"} ;
+lin vikitella'_VK = {s = c67A "vikitellä"} ;
+lin vikittely_NK = {s = d02 "vikittely"} ;
+lin vikkelyys_NK = {s = d40 "vikkelyys"} ;
+lin vikkela'_AK = {s = d10 "vikkelä"} ;
+--+ lin vikkela'sti_AdvK = {s = c99 "vikkelästi"} ;
+lin vikkela'a'n_AdvK = {s = c99 "vikkelään"} ;
+lin viklo_NK = {s = d01 "viklo"} ;
+lin viktoriaani_NK = {s = d05 "viktoriaani"} ;
+lin viktoriaaninen_AK = {s = d38 "viktoriaaninen"} ;
+--+ lin viktoriaanisesti_AdvK = {s = c99 "viktoriaanisesti"} ;
+lin viktoriaanisuus_NK = {s = d40 "viktoriaanisuus"} ;
+lin vikuri_NK = {s = d06 "vikuri"} ;
+lin vikuroida_VK = {s = c62 "vikuroida"} ;
+lin vikurointi_NK = {s = d05A "vikurointi"} ;
+lin vikuuttaa_VK = {s = c53A "vikuuttaa"} ;
+lin vilahdella_VK = {s = c67A "vilahdella"} ;
+lin vilahdus_NK = {s = d39 "vilahdus"} ;
+lin vilahduttaa_VK = {s = c53A "vilahduttaa"} ;
+lin vilahtaa_VK = {s = c53A "vilahtaa"} ;
+lin vilaus_NK = {s = d39 "vilaus"} ;
+lin vilautella_VK = {s = c67A "vilautella"} ;
+lin vilauttaa_VK = {s = c53A "vilauttaa"} ;
+lin vilautus_NK = {s = d39 "vilautus"} ;
+lin vilina'_NK = {s = d12 "vilinä"} ;
+lin vilistella'_VK = {s = c67 "vilistellä"} ;
+lin vilista'_VK = {s = c66 "vilistä"} ;
+lin vilista'a'_VK = {s = c53 "vilistää"} ;
+lin vilja_NK = {s = d09 "vilja"} ;
+lin viljalti_AdvK = {s = c99 "viljalti"} ;
+lin viljava_NK = {s = d10 "viljava"} ;
+lin viljavuus_NK = {s = d40 "viljavuus"} ;
+lin viljelema'to'n_NK = {s = d34A "viljelemätön"} ;
+lin viljelija'_NK = {s = d12 "viljelijä"} ;
+lin viljella'_VK = {s = c67 "viljellä"} ;
+lin viljelma'_NK = {s = d10 "viljelmä"} ;
+lin viljeltya'_VK = {s = c52A "viljeltyä"} ;
+lin viljely_NK = {s = d02 "viljely"} ;
+lin viljelys_NK = {s = d39 "viljelys"} ;
+lin vilkahdella_VK = {s = c67A "vilkahdella"} ;
+lin vilkahdus_NK = {s = d39 "vilkahdus"} ;
+lin vilkahtaa_VK = {s = c53A "vilkahtaa"} ;
+lin vilkahtelu_NK = {s = d02 "vilkahtelu"} ;
+lin vilkaista_VK = {s = c66 "vilkaista"} ;
+lin vilkaisu_NK = {s = d02 "vilkaisu"} ;
+lin vilkas_AK = {s = d41A "vilkas"} ;
+lin vilkastaa_VK = {s = c53 "vilkastaa"} ;
+lin vilkastua_VK = {s = c52 "vilkastua"} ;
+lin vilkastuttaa_VK = {s = c53A "vilkastuttaa"} ;
+lin vilkaus_NK = {s = d39 "vilkaus"} ;
+lin vilke_NK = {s = d48A "vilke"} ;
+lin vilkkaa_AdvK = {s = c99 "vilkkaa"} ;
+--+ lin vilkkaasti_AdvK = {s = c99 "vilkkaasti"} ;
+lin vilkkaus_NK = {s = d40 "vilkkaus"} ;
+lin vilkku_NK = {s = d01A "vilkku"} ;
+lin vilkkua_VK = {s = c52A "vilkkua"} ;
+lin vilkuilla_VK = {s = c67 "vilkuilla"} ;
+lin vilkuilu_NK = {s = d02 "vilkuilu"} ;
+lin vilkunta_NK = {s = d09A "vilkunta"} ;
+lin vilkutella_VK = {s = c67A "vilkutella"} ;
+lin vilkuttaa_VK = {s = c53A "vilkuttaa"} ;
+lin vilkutus_NK = {s = d39 "vilkutus"} ;
+lin villa_1_NK = {s = d09 "villa"} ;
+lin villa_2_NK = {s = d09 "villa"} ;
+lin villainen_NK = {s = d38 "villainen"} ;
+lin villakko_NK = {s = d04A "villakko"} ;
+lin villaro'ijy_NK = {s = d01 "villaröijy"} ;
+lin villava_NK = {s = d10 "villava"} ;
+lin villeys_NK = {s = d40 "villeys"} ;
+lin villi_AK = {s = d05 "villi"} ;
+lin villiinnytta'a'_VK = {s = c53A "villiinnyttää"} ;
+lin villiintya'_VK = {s = c52A "villiintyä"} ;
+lin villikko_NK = {s = d04A "villikko"} ;
+--+ lin villisti_AdvK = {s = c99 "villisti"} ;
+lin villitsija'_NK = {s = d12 "villitsijä"} ;
+lin villitys_NK = {s = d39 "villitys"} ;
+lin villita'_VK = {s = c69 "villitä"} ;
+lin villiys_NK = {s = d40 "villiys"} ;
+lin villiytya'_VK = {s = c52A "villiytyä"} ;
+lin villoittaa_VK = {s = c53A "villoittaa"} ;
+lin villoitus_NK = {s = d39 "villoitus"} ;
+lin vilpas_NK = {s = d41A "vilpas"} ;
+lin vilpillinen_NK = {s = d38 "vilpillinen"} ;
+lin vilpistelija'_NK = {s = d12 "vilpistelijä"} ;
+lin vilpistella'_VK = {s = c67 "vilpistellä"} ;
+lin vilpistely_NK = {s = d02 "vilpistely"} ;
+lin vilpitto'myys_NK = {s = d40 "vilpittömyys"} ;
+lin vilpitto'ma'sti_AdvK = {s = c99 "vilpittömästi"} ;
+lin vilpito'n_NK = {s = d34A "vilpitön"} ;
+lin vilpoinen_AK = {s = d38 "vilpoinen"} ;
+lin vilpoisa_AK = {s = d10 "vilpoisa"} ;
+--+ lin vilpoisasti_AdvK = {s = c99 "vilpoisasti"} ;
+--+ lin vilpoisesti_AdvK = {s = c99 "vilpoisesti"} ;
+lin vilpoisuus_NK = {s = d40 "vilpoisuus"} ;
+lin vilpola_NK = {s = d12 "vilpola"} ;
+lin vilppi_NK = {s = d05A "vilppi"} ;
+lin vilske_NK = {s = d48 "vilske"} ;
+lin viltti_NK = {s = d05A "viltti"} ;
+lin vilu_NK = {s = d01 "vilu"} ;
+lin viluinen_NK = {s = d38 "viluinen"} ;
+lin vilukko_NK = {s = d04A "vilukko"} ;
+lin vilustaa_VK = {s = c53 "vilustaa"} ;
+lin vilustua_VK = {s = c52 "vilustua"} ;
+lin vilustuttaa_VK = {s = c53A "vilustuttaa"} ;
+lin viluttaa_VK = {s = c53A "viluttaa"} ;
+lin vilutus_NK = {s = d39 "vilutus"} ;
+lin vilvoitella_VK = {s = c67A "vilvoitella"} ;
+lin vilvoittaa_VK = {s = c53A "vilvoittaa"} ;
+lin vilvoittautua_VK = {s = c52A "vilvoittautua"} ;
+lin vilvoittelu_NK = {s = d02 "vilvoittelu"} ;
+lin vilvoittua_VK = {s = c52A "vilvoittua"} ;
+lin vilvoitus_NK = {s = d39 "vilvoitus"} ;
+lin vimma_NK = {s = d09 "vimma"} ;
+lin vimmainen_AK = {s = d38 "vimmainen"} ;
+lin vimmaisa_NK = {s = d10 "vimmaisa"} ;
+--+ lin vimmaisesti_AdvK = {s = c99 "vimmaisesti"} ;
+lin vimmaisuus_NK = {s = d40 "vimmaisuus"} ;
+lin vimmastua_VK = {s = c52 "vimmastua"} ;
+lin vimmastuksissa_AdvK = {s = c99 "vimmastuksissa"} ;
+lin vimmastuksissaan_AdvK = {s = c99 "vimmastuksissaan"} ;
+lin vimmastus_NK = {s = d39 "vimmastus"} ;
+lin vimmastuttaa_VK = {s = c53A "vimmastuttaa"} ;
+lin vimmattu_NK = {s = d01A "vimmattu"} ;
+lin vimmatusti_AdvK = {s = c99 "vimmatusti"} ;
+lin vimpain_NK = {s = d33 "vimpain"} ;
+lin vinaigrette_NK = {s = d08 "vinaigrette"} ;
+lin vingahdella_VK = {s = c67A "vingahdella"} ;
+lin vingahdus_NK = {s = d39 "vingahdus"} ;
+lin vingahtaa_VK = {s = c53A "vingahtaa"} ;
+lin vingerpori_NK = {s = d05 "vingerpori"} ;
+lin vingunta_NK = {s = d09A "vingunta"} ;
+lin vinguttaa_VK = {s = c53A "vinguttaa"} ;
+lin vinguttaja_NK = {s = d10 "vinguttaja"} ;
+lin vingutus_NK = {s = d39 "vingutus"} ;
+lin vinha_AK = {s = d09 "vinha"} ;
+--+ lin vinhasti_AdvK = {s = c99 "vinhasti"} ;
+lin vinjetti_NK = {s = d05A "vinjetti"} ;
+lin vinka_1_NK = {s = d09A "vinka"} ;
+lin vinka_2_NK = {s = d09A "vinka"} ;
+lin vinkaista_VK = {s = c66 "vinkaista"} ;
+lin vinkaisu_NK = {s = d02 "vinkaisu"} ;
+lin vinkata_VK = {s = c73A "vinkata"} ;
+lin vinkaus_NK = {s = d39 "vinkaus"} ;
+lin vinkeys_NK = {s = d40 "vinkeys"} ;
+lin vinkea'_AK = {s = d15 "vinkeä"} ;
+--+ lin vinkea'sti_AdvK = {s = c99 "vinkeästi"} ;
+lin vinkkari_NK = {s = d06 "vinkkari"} ;
+lin vinkkeli_NK = {s = d06 "vinkkeli"} ;
+lin vinkki_NK = {s = d05A "vinkki"} ;
+lin vinksahdus_NK = {s = d39 "vinksahdus"} ;
+lin vinksahtaa_VK = {s = c53A "vinksahtaa"} ;
+lin vinksin_vonksin_AdvK = {s = c99 "vinksin vonksin"} ;
+lin vinku_NK = {s = d01A "vinku"} ;
+lin vinkua_VK = {s = c52A "vinkua"} ;
+lin vino_AK = {s = d01 "vino"} ;
+lin vinoilla_VK = {s = c67 "vinoilla"} ;
+lin vinoilu_NK = {s = d02 "vinoilu"} ;
+lin vinoittain_AdvK = {s = c99 "vinoittain"} ;
+lin vinoittainen_NK = {s = d38 "vinoittainen"} ;
+lin vinokas_NK = {s = d41A "vinokas"} ;
+lin vinoon_AdvK = {s = c99 "vinoon"} ;
+lin vinossa_AdvK = {s = c99 "vinossa"} ;
+--+ lin vinosti_AdvK = {s = c99 "vinosti"} ;
+lin vinottain_AdvK = {s = c99 "vinottain"} ;
+lin vinottainen_NK = {s = d38 "vinottainen"} ;
+lin vinouma_NK = {s = d10 "vinouma"} ;
+lin vinous_NK = {s = d40 "vinous"} ;
+lin vinouttaa_VK = {s = c53A "vinouttaa"} ;
+lin vinoutua_VK = {s = c52A "vinoutua"} ;
+lin vinoutuma_NK = {s = d10 "vinoutuma"} ;
+lin vinssata_VK = {s = c73 "vinssata"} ;
+lin vinssi_NK = {s = d05 "vinssi"} ;
+lin vintata_VK = {s = c73A "vintata"} ;
+lin vintila'_NK = {s = d12 "vintilä"} ;
+lin vintio'_NK = {s = d03 "vintiö"} ;
+lin vintti_1_NK = {s = d05A "vintti"} ;
+lin vintti_2_NK = {s = d05A "vintti"} ;
+lin vintturi_NK = {s = d06 "vintturi"} ;
+lin vinyyli_NK = {s = d06 "vinyyli"} ;
+lin vioittaa_VK = {s = c53A "vioittaa"} ;
+lin vioittua_VK = {s = c52A "vioittua"} ;
+lin vioittuma_NK = {s = d10 "vioittuma"} ;
+lin viola_NK = {s = d13 "viola"} ;
+lin violetti_NK = {s = d05A "violetti"} ;
+lin violisti_NK = {s = d05 "violisti"} ;
+lin VIP_AdvK = {s = c99 "VIP"} ;
+lin vipajaa_VK = {s = c77 "vipajaa"} ;
+lin vipata_1_VK = {s = c73A "vipata"} ;
+lin vipata_2_VK = {s = c73A "vipata"} ;
+lin vipata_3_VK = {s = c73A "vipata"} ;
+lin vipattaa_VK = {s = c53A "vipattaa"} ;
+lin vipatus_NK = {s = d39 "vipatus"} ;
+lin vipellys_NK = {s = d39 "vipellys"} ;
+lin vipelta'a'_VK = {s = c54A "vipeltää"} ;
+lin vipina'_NK = {s = d12 "vipinä"} ;
+lin vipista'_VK = {s = c66 "vipistä"} ;
+lin vippa_NK = {s = d09A "vippa"} ;
+lin vippailla_VK = {s = c67 "vippailla"} ;
+lin vippaus_NK = {s = d39 "vippaus"} ;
+lin vippi_1_NK = {s = d05A "vippi"} ;
+lin vippi_2_NK = {s = d05A "vippi"} ;
+lin vippi_3_NK = {s = d05A "vippi"} ;
+lin vipu_NK = {s = d01A "vipu"} ;
+lin vipusin_NK = {s = d33 "vipusin"} ;
+lin viraapeli_NK = {s = d06 "viraapeli"} ;
+lin virallinen_AK = {s = d38 "virallinen"} ;
+--+ lin virallisesti_AdvK = {s = c99 "virallisesti"} ;
+lin virallistaa_VK = {s = c53 "virallistaa"} ;
+lin virallistua_VK = {s = c52 "virallistua"} ;
+lin virallisuus_NK = {s = d40 "virallisuus"} ;
+lin virasto_NK = {s = d01 "virasto"} ;
+lin virastoaika_NK = {s = d09A "virastoaika"} ;
+lin viraton_NK = {s = d34A "viraton"} ;
+lin vire_NK = {s = d48 "vire"} ;
+lin vireille_AdvK = {s = c99 "vireille"} ;
+lin vireilla'_AdvK = {s = c99 "vireillä"} ;
+lin vireinen_NK = {s = d38 "vireinen"} ;
+lin vireys_NK = {s = d40 "vireys"} ;
+lin vireytta'a'_VK = {s = c53A "vireyttää"} ;
+lin vireytya'_VK = {s = c52A "vireytyä"} ;
+lin virea'_AK = {s = d15 "vireä"} ;
+--+ lin virea'sti_AdvK = {s = c99 "vireästi"} ;
+lin virhe_NK = {s = d48 "virhe"} ;
+lin virheellinen_AK = {s = d38 "virheellinen"} ;
+--+ lin virheellisesti_AdvK = {s = c99 "virheellisesti"} ;
+lin virheellisyys_NK = {s = d40 "virheellisyys"} ;
+lin virheetto'myys_NK = {s = d40 "virheettömyys"} ;
+lin virheeto'n_NK = {s = d34A "virheetön"} ;
+lin virheinen_NK = {s = d38 "virheinen"} ;
+lin viri_NK = {s = d05 "viri"} ;
+lin viriili_NK = {s = d05 "viriili"} ;
+lin virike_NK = {s = d48A "virike"} ;
+lin virikkeellinen_NK = {s = d38 "virikkeellinen"} ;
+lin virikkeeto'n_NK = {s = d34A "virikkeetön"} ;
+lin virikkeinen_NK = {s = d38 "virikkeinen"} ;
+lin virikkeisyys_NK = {s = d40 "virikkeisyys"} ;
+lin viritella'_VK = {s = c67A "viritellä"} ;
+lin viritelma'_NK = {s = d10 "viritelmä"} ;
+lin viritin_NK = {s = d33A "viritin"} ;
+lin viritteinen_NK = {s = d38 "viritteinen"} ;
+lin virittya'_VK = {s = c52A "virittyä"} ;
+lin viritta'ja'_NK = {s = d10 "virittäjä"} ;
+lin viritta'ma'to'n_NK = {s = d34A "virittämätön"} ;
+lin viritta'ytya'_VK = {s = c52A "virittäytyä"} ;
+lin viritta'a'_VK = {s = c53A "virittää"} ;
+lin viritys_NK = {s = d39 "viritys"} ;
+lin virita'_VK = {s = c75 "viritä"} ;
+lin virio'_NK = {s = d03 "viriö"} ;
+lin virka_NK = {s = d09A "virka"} ;
+lin virka_aika_NK = {s = d09A "virka-aika"} ;
+--? lin virkaanasettajaiset_NK = {s = d38 "virkaanasettajaiset"} ;
+--? lin virkaanastujaiset_NK = {s = d38 "virkaanastujaiset"} ;
+lin virkaa_toimittava_NK = {s = d10 "virkaa toimittava"} ;
+lin virkailija_NK = {s = d12 "virkailija"} ;
+lin virkailla_VK = {s = c67 "virkailla"} ;
+--+ lin virkaintoisesti_AdvK = {s = c99 "virkaintoisesti"} ;
+lin virkata_VK = {s = c73A "virkata"} ;
+--+ lin virkavaltaisesti_AdvK = {s = c99 "virkavaltaisesti"} ;
+lin virke_NK = {s = d48A "virke"} ;
+lin virkeys_NK = {s = d40 "virkeys"} ;
+lin virkea'_AK = {s = d15 "virkeä"} ;
+--+ lin virkea'sti_AdvK = {s = c99 "virkeästi"} ;
+lin virkiste_NK = {s = d48 "virkiste"} ;
+lin virkistys_NK = {s = d39 "virkistys"} ;
+lin virkistya'_VK = {s = c52 "virkistyä"} ;
+lin virkista'ytya'_VK = {s = c52A "virkistäytyä"} ;
+lin virkista'a'_VK = {s = c53 "virkistää"} ;
+lin virkkaa_VK = {s = c56A "virkkaa"} ;
+lin virkkaus_NK = {s = d39 "virkkaus"} ;
+lin virkku_NK = {s = d01A "virkku"} ;
+lin virkkuu_NK = {s = d17 "virkkuu"} ;
+lin virmajuuri_NK = {s = d26 "virmajuuri"} ;
+lin virna_NK = {s = d09 "virna"} ;
+lin virne_NK = {s = d48 "virne"} ;
+lin virnistella'_VK = {s = c67 "virnistellä"} ;
+lin virnistely_NK = {s = d02 "virnistely"} ;
+lin virnistys_NK = {s = d39 "virnistys"} ;
+lin virnista'a'_VK = {s = c53 "virnistää"} ;
+lin virnuilla_VK = {s = c67 "virnuilla"} ;
+lin viro_NK = {s = d01 "viro"} ;
+lin virolaisittain_AdvK = {s = c99 "virolaisittain"} ;
+lin virologi_NK = {s = d05 "virologi"} ;
+lin virologia_NK = {s = d12 "virologia"} ;
+lin virologinen_NK = {s = d38 "virologinen"} ;
+lin vironnos_NK = {s = d39 "vironnos"} ;
+lin virontaa_VK = {s = c54A "virontaa"} ;
+lin virota_VK = {s = c74A "virota"} ;
+lin virottaa_VK = {s = c53A "virottaa"} ;
+lin virpi_NK = {s = d07A "virpi"} ;
+lin virpoa_VK = {s = c52A "virpoa"} ;
+lin virpoja_NK = {s = d10 "virpoja"} ;
+lin virrata_VK = {s = c73A "virrata"} ;
+lin virroitin_NK = {s = d33A "virroitin"} ;
+lin virroittaa_VK = {s = c53A "virroittaa"} ;
+lin virroitus_NK = {s = d39 "virroitus"} ;
+lin virsi_NK = {s = d28 "virsi"} ;
+lin virsinki_NK = {s = d05A "virsinki"} ;
+lin virsta_NK = {s = d09 "virsta"} ;
+lin virsu_NK = {s = d01 "virsu"} ;
+lin virta_NK = {s = d09A "virta"} ;
+lin virtaama_NK = {s = d10 "virtaama"} ;
+lin virtailla_VK = {s = c67 "virtailla"} ;
+lin virtainen_NK = {s = d38 "virtainen"} ;
+lin virtaisa_NK = {s = d10 "virtaisa"} ;
+lin virtanaan_AdvK = {s = c99 "virtanaan"} ;
+lin virtanen_NK = {s = d38 "virtanen"} ;
+lin virtaska_NK = {s = d13 "virtaska"} ;
+lin virtaus_NK = {s = d39 "virtaus"} ;
+lin virtaviivaistaa_VK = {s = c53 "virtaviivaistaa"} ;
+lin virtaviivaistus_NK = {s = d39 "virtaviivaistus"} ;
+lin virtsa_NK = {s = d09 "virtsa"} ;
+lin virtsata_VK = {s = c73 "virtsata"} ;
+lin virttya'_VK = {s = c52A "virttyä"} ;
+lin virtuaalistaa_VK = {s = c53 "virtuaalistaa"} ;
+lin virtuoosi_NK = {s = d05 "virtuoosi"} ;
+lin virtuoosinen_NK = {s = d38 "virtuoosinen"} ;
+lin virtuoosisuus_NK = {s = d40 "virtuoosisuus"} ;
+lin virtuositeetti_NK = {s = d05A "virtuositeetti"} ;
+lin virua_VK = {s = c52 "virua"} ;
+lin virulenssi_NK = {s = d05 "virulenssi"} ;
+lin virulentti_NK = {s = d05A "virulentti"} ;
+lin virus_NK = {s = d39 "virus"} ;
+lin viruttaa_VK = {s = c53A "viruttaa"} ;
+lin virutus_NK = {s = d39 "virutus"} ;
+lin virveli_1_NK = {s = d06 "virveli"} ;
+lin virveli_2_NK = {s = d06 "virveli"} ;
+lin virvelo'ida'_VK = {s = c62 "virvelöidä"} ;
+lin virvelo'inti_NK = {s = d05A "virvelöinti"} ;
+lin virvila'_NK = {s = d12 "virvilä"} ;
+lin virvoitella_VK = {s = c67A "virvoitella"} ;
+lin virvoittaa_VK = {s = c53A "virvoittaa"} ;
+lin virvoittua_VK = {s = c52A "virvoittua"} ;
+lin virvoitus_NK = {s = d39 "virvoitus"} ;
+lin virvoke_NK = {s = d48A "virvoke"} ;
+lin visa_NK = {s = d09 "visa"} ;
+lin visailla_VK = {s = c67 "visailla"} ;
+lin visailu_NK = {s = d02 "visailu"} ;
+lin visainen_NK = {s = d38 "visainen"} ;
+lin visautua_VK = {s = c52A "visautua"} ;
+lin viserrella'_VK = {s = c67A "viserrellä"} ;
+lin viserrys_NK = {s = d39 "viserrys"} ;
+lin viserta'ja'_NK = {s = d10 "visertäjä"} ;
+lin viserta'a'_VK = {s = c54A "visertää"} ;
+lin visiiri_1_NK = {s = d06 "visiiri"} ;
+lin visiiri_2_NK = {s = d06 "visiiri"} ;
+lin visiitti_NK = {s = d05A "visiitti"} ;
+lin visio_NK = {s = d03 "visio"} ;
+lin visioida_VK = {s = c62 "visioida"} ;
+lin visiointi_NK = {s = d05A "visiointi"} ;
+lin visionaarinen_NK = {s = d38 "visionaarinen"} ;
+lin visiona'a'rinen_NK = {s = d38 "visionäärinen"} ;
+lin viskaali_NK = {s = d06 "viskaali"} ;
+lin viskata_VK = {s = c73 "viskata"} ;
+lin viskautua_VK = {s = c52A "viskautua"} ;
+lin viskella'_VK = {s = c67 "viskellä"} ;
+lin viskely_NK = {s = d02 "viskely"} ;
+lin viski_NK = {s = d05 "viski"} ;
+lin viskoa_VK = {s = c52 "viskoa"} ;
+lin viskonta_NK = {s = d09A "viskonta"} ;
+lin viskoosi_NK = {s = d06 "viskoosi"} ;
+lin viskoosinen_NK = {s = d38 "viskoosinen"} ;
+lin viskoosisuus_NK = {s = d40 "viskoosisuus"} ;
+lin viskoosius_NK = {s = d40 "viskoosius"} ;
+lin viskositeetti_NK = {s = d05A "viskositeetti"} ;
+lin viskoutua_VK = {s = c52A "viskoutua"} ;
+lin vislata_VK = {s = c73 "vislata"} ;
+lin vislaus_NK = {s = d39 "vislaus"} ;
+lin vismutti_NK = {s = d05A "vismutti"} ;
+lin visoittua_VK = {s = c52A "visoittua"} ;
+lin vispaantua_VK = {s = c52A "vispaantua"} ;
+lin vispata_VK = {s = c73 "vispata"} ;
+lin vispaus_NK = {s = d39 "vispaus"} ;
+lin vispautua_VK = {s = c52A "vispautua"} ;
+lin vispila'_NK = {s = d12 "vispilä"} ;
+lin vispilo'ida'_VK = {s = c62 "vispilöidä"} ;
+lin vissi_AK = {s = d05 "vissi"} ;
+lin vissiin_AdvK = {s = c99 "vissiin"} ;
+--+ lin vissisti_AdvK = {s = c99 "vissisti"} ;
+lin vissy_NK = {s = d01 "vissy"} ;
+lin visti_NK = {s = d05 "visti"} ;
+lin visu_AK = {s = d01 "visu"} ;
+lin visuaalinen_AK = {s = d38 "visuaalinen"} ;
+--+ lin visuaalisesti_AdvK = {s = c99 "visuaalisesti"} ;
+lin visuaalistaa_VK = {s = c53 "visuaalistaa"} ;
+lin visuaalisuus_NK = {s = d40 "visuaalisuus"} ;
+lin visualisoida_VK = {s = c62 "visualisoida"} ;
+lin visualisoija_NK = {s = d10 "visualisoija"} ;
+lin visualisointi_NK = {s = d05A "visualisointi"} ;
+--+ lin visusti_AdvK = {s = c99 "visusti"} ;
+lin visva_NK = {s = d09 "visva"} ;
+lin visvainen_NK = {s = d38 "visvainen"} ;
+lin vita_NK = {s = d09A "vita"} ;
+lin vitaali_NK = {s = d06 "vitaali"} ;
+--+ lin vitaalisesti_AdvK = {s = c99 "vitaalisesti"} ;
+lin vitaalisuus_NK = {s = d40 "vitaalisuus"} ;
+lin vitaalius_NK = {s = d40 "vitaalius"} ;
+lin vitalismi_NK = {s = d05 "vitalismi"} ;
+lin vitalistinen_NK = {s = d38 "vitalistinen"} ;
+lin vitaliteetti_NK = {s = d05A "vitaliteetti"} ;
+lin vitamiini_NK = {s = d05 "vitamiini"} ;
+lin vitamiinikas_NK = {s = d41A "vitamiinikas"} ;
+lin vitamiininen_NK = {s = d38 "vitamiininen"} ;
+lin vitaminoida_VK = {s = c62 "vitaminoida"} ;
+lin vitaminointi_NK = {s = d05A "vitaminointi"} ;
+lin viti_NK = {s = d05A "viti"} ;
+lin vitja_NK = {s = d09 "vitja"} ;
+lin vitka_NK = {s = d09 "vitka"} ;
+lin vitkaan_AdvK = {s = c99 "vitkaan"} ;
+lin vitkailla_VK = {s = c67 "vitkailla"} ;
+lin vitkallinen_NK = {s = d38 "vitkallinen"} ;
+lin vitkastelija_NK = {s = d12 "vitkastelija"} ;
+lin vitkastella_VK = {s = c67 "vitkastella"} ;
+lin vitkastelu_NK = {s = d02 "vitkastelu"} ;
+lin vitkutella_VK = {s = c67A "vitkutella"} ;
+lin vitkuttaa_VK = {s = c53A "vitkuttaa"} ;
+lin vitkuttelu_NK = {s = d02 "vitkuttelu"} ;
+lin vitoa_VK = {s = c52A "vitoa"} ;
+lin vitonen_NK = {s = d38 "vitonen"} ;
+lin vitriini_NK = {s = d06 "vitriini"} ;
+lin vitsa_NK = {s = d09 "vitsa"} ;
+lin vitsailija_NK = {s = d12 "vitsailija"} ;
+lin vitsailla_VK = {s = c67 "vitsailla"} ;
+lin vitsailu_NK = {s = d02 "vitsailu"} ;
+lin vitsas_NK = {s = d39 "vitsas"} ;
+lin vitsaus_NK = {s = d39 "vitsaus"} ;
+lin vitsi_NK = {s = d05 "vitsi"} ;
+lin vitsikkyys_NK = {s = d40 "vitsikkyys"} ;
+--+ lin vitsikka'a'sti_AdvK = {s = c99 "vitsikkäästi"} ;
+lin vitsika's_AK = {s = d41A "vitsikäs"} ;
+lin vitsoa_VK = {s = c52 "vitsoa"} ;
+lin vittu_NK = {s = d01A "vittu"} ;
+lin vittuilla_VK = {s = c67 "vittuilla"} ;
+lin vittuilu_NK = {s = d02 "vittuilu"} ;
+--+ lin vittumaisesti_AdvK = {s = c99 "vittumaisesti"} ;
+lin vittumaisuus_NK = {s = d40 "vittumaisuus"} ;
+lin vittuuntua_VK = {s = c52A "vittuuntua"} ;
+lin vituraan_AdvK = {s = c99 "vituraan"} ;
+lin viturallaan_AdvK = {s = c99 "viturallaan"} ;
+lin vituralleen_AdvK = {s = c99 "vituralleen"} ;
+lin viturassa_AdvK = {s = c99 "viturassa"} ;
+lin vituttaa_VK = {s = c53A "vituttaa"} ;
+lin vitutus_NK = {s = d39 "vitutus"} ;
+lin viuhahdella_VK = {s = c67A "viuhahdella"} ;
+lin viuhahdus_NK = {s = d39 "viuhahdus"} ;
+lin viuhahtaa_VK = {s = c53A "viuhahtaa"} ;
+lin viuhauttaa_VK = {s = c53A "viuhauttaa"} ;
+lin viuhina_NK = {s = d12 "viuhina"} ;
+lin viuhka_NK = {s = d09 "viuhka"} ;
+--+ lin viuhkamaisesti_AdvK = {s = c99 "viuhkamaisesti"} ;
+lin viuhkamaisuus_NK = {s = d40 "viuhkamaisuus"} ;
+lin viuhke_NK = {s = d48 "viuhke"} ;
+lin viuhko_NK = {s = d01 "viuhko"} ;
+lin viuhottaa_VK = {s = c53A "viuhottaa"} ;
+lin viuhtoa_VK = {s = c52A "viuhtoa"} ;
+lin viuhua_VK = {s = c52 "viuhua"} ;
+lin viuhuttaa_VK = {s = c53A "viuhuttaa"} ;
+lin viulisti_NK = {s = d05 "viulisti"} ;
+lin viulu_NK = {s = d01 "viulu"} ;
+lin vivace_NK = {s = d08 "vivace"} ;
+lin vivahde_NK = {s = d48A "vivahde"} ;
+lin vivahduksekas_NK = {s = d41A "vivahduksekas"} ;
+lin vivahdukseton_NK = {s = d34A "vivahdukseton"} ;
+lin vivahdus_NK = {s = d39 "vivahdus"} ;
+lin vivahtaa_VK = {s = c53A "vivahtaa"} ;
+lin vivahteeton_NK = {s = d34A "vivahteeton"} ;
+lin vivahteettomasti_AdvK = {s = c99 "vivahteettomasti"} ;
+lin vivahteettomuus_NK = {s = d40 "vivahteettomuus"} ;
+lin vivahteikas_NK = {s = d41A "vivahteikas"} ;
+lin vivahteikkaasti_AdvK = {s = c99 "vivahteikkaasti"} ;
+lin vivahteikkuus_NK = {s = d40 "vivahteikkuus"} ;
+lin vivahteinen_NK = {s = d38 "vivahteinen"} ;
+lin vivipaarinen_NK = {s = d38 "vivipaarinen"} ;
+lin vivisektio_NK = {s = d03 "vivisektio"} ;
+lin vivuta_VK = {s = c74A "vivuta"} ;
+lin voda_NK = {s = d10 "voda"} ;
+lin vodka_NK = {s = d10 "vodka"} ;
+lin voguli_NK = {s = d06 "voguli"} ;
+lin vohkia_VK = {s = c61 "vohkia"} ;
+lin vohla_NK = {s = d10 "vohla"} ;
+lin vohveli_NK = {s = d06 "vohveli"} ;
+lin voi_1_NK = {s = d18 "voi"} ;
+lin voi_2_AdvK = {s = c99 "voi"} ;
+lin voida_VK = {s = c62 "voida"} ;
+lin voide_NK = {s = d48A "voide"} ;
+lin voidella_VK = {s = c67A "voidella"} ;
+lin voihkaista_VK = {s = c66 "voihkaista"} ;
+lin voihkaisu_NK = {s = d02 "voihkaisu"} ;
+lin voihke_NK = {s = d48 "voihke"} ;
+lin voihkia_VK = {s = c61 "voihkia"} ;
+lin voihkina_NK = {s = d12 "voihkina"} ;
+lin voikka_NK = {s = d10A "voikka"} ;
+lin voilee_NK = {s = d20 "voilee"} ;
+lin voima_NK = {s = d10 "voima"} ;
+lin voimailija_NK = {s = d12 "voimailija"} ;
+lin voimailu_NK = {s = d02 "voimailu"} ;
+--+ lin voimaisesti_AdvK = {s = c99 "voimaisesti"} ;
+lin voimaisuus_NK = {s = d40 "voimaisuus"} ;
+lin voimakas_AK = {s = d41A "voimakas"} ;
+--+ lin voimakkaasti_AdvK = {s = c99 "voimakkaasti"} ;
+lin voimakkuus_NK = {s = d40 "voimakkuus"} ;
+lin voimala_NK = {s = d12 "voimala"} ;
+--+ lin voimallisesti_AdvK = {s = c99 "voimallisesti"} ;
+lin voimallisuus_NK = {s = d40 "voimallisuus"} ;
+--+ lin voimapera'isesti_AdvK = {s = c99 "voimaperäisesti"} ;
+lin voimassaoloaika_NK = {s = d09A "voimassaoloaika"} ;
+lin voimaton_NK = {s = d34A "voimaton"} ;
+lin voimattomasti_AdvK = {s = c99 "voimattomasti"} ;
+lin voimattomuus_NK = {s = d40 "voimattomuus"} ;
+lin voimistaa_VK = {s = c53 "voimistaa"} ;
+lin voimistelija_NK = {s = d12 "voimistelija"} ;
+lin voimistella_VK = {s = c67 "voimistella"} ;
+lin voimistelu_NK = {s = d02 "voimistelu"} ;
+lin voimistua_VK = {s = c52 "voimistua"} ;
+lin voimistus_NK = {s = d39 "voimistus"} ;
+lin voimistuttaa_VK = {s = c53A "voimistuttaa"} ;
+lin voinen_NK = {s = d38 "voinen"} ;
+lin vointi_NK = {s = d05A "vointi"} ;
+lin vointinen_NK = {s = d38 "vointinen"} ;
+lin vointisuus_NK = {s = d40 "vointisuus"} ;
+lin voipa_NK = {s = d10A "voipa"} ;
+lin voipua_VK = {s = c52A "voipua"} ;
+lin voipumus_NK = {s = d39 "voipumus"} ;
+lin voitava_NK = {s = d10 "voitava"} ;
+lin voitelu_NK = {s = d02 "voitelu"} ;
+lin voitokas_AK = {s = d41A "voitokas"} ;
+--+ lin voitokkaasti_AdvK = {s = c99 "voitokkaasti"} ;
+lin voitokkuus_NK = {s = d40 "voitokkuus"} ;
+lin voitollinen_AK = {s = d38 "voitollinen"} ;
+--+ lin voitollisesti_AdvK = {s = c99 "voitollisesti"} ;
+--+ lin voitonriemuisesti_AdvK = {s = c99 "voitonriemuisesti"} ;
+lin voittaa_VK = {s = c53A "voittaa"} ;
+lin voittaja_NK = {s = d10 "voittaja"} ;
+lin voittamaton_NK = {s = d34A "voittamaton"} ;
+lin voittamattomuus_NK = {s = d40 "voittamattomuus"} ;
+lin voitto_NK = {s = d01A "voitto"} ;
+lin voittoaika_NK = {s = d09A "voittoaika"} ;
+lin voittoinen_AK = {s = d38 "voittoinen"} ;
+lin voittoisa_AK = {s = d10 "voittoisa"} ;
+--+ lin voittoisasti_AdvK = {s = c99 "voittoisasti"} ;
+--+ lin voittoisesti_AdvK = {s = c99 "voittoisesti"} ;
+lin voittoisuus_NK = {s = d40 "voittoisuus"} ;
+lin voittopuolisesti_AdvK = {s = c99 "voittopuolisesti"} ;
+lin voivotella_VK = {s = c67A "voivotella"} ;
+lin voivottaa_VK = {s = c53A "voivottaa"} ;
+lin voivottelu_NK = {s = d02 "voivottelu"} ;
+lin voivotus_NK = {s = d39 "voivotus"} ;
+lin voivuksiin_AdvK = {s = c99 "voivuksiin"} ;
+lin voivuksissa_AdvK = {s = c99 "voivuksissa"} ;
+lin voivuttaa_VK = {s = c53A "voivuttaa"} ;
+lin voivutus_NK = {s = d39 "voivutus"} ;
+lin wok_NK = {s = d05 "wok"} ;
+lin vokaali_NK = {s = d06 "vokaali"} ;
+lin vokalisti_NK = {s = d05 "vokalisti"} ;
+lin vokki_NK = {s = d05A "vokki"} ;
+lin vokotella_VK = {s = c67A "vokotella"} ;
+lin vokottaa_VK = {s = c53A "vokottaa"} ;
+lin vokottelu_NK = {s = d02 "vokottelu"} ;
+lin volatiliteetti_NK = {s = d05A "volatiliteetti"} ;
+lin vol_au_vent_NK = {s = d05 "vol-au-vent"} ;
+lin volframi_NK = {s = d06 "volframi"} ;
+lin volgalainen_NK = {s = d38 "volgalainen"} ;
+lin vollottaa_VK = {s = c53A "vollottaa"} ;
+lin vollotus_NK = {s = d39 "vollotus"} ;
+lin voltata_VK = {s = c73A "voltata"} ;
+lin voltti_1_NK = {s = d05A "voltti"} ;
+lin voltti_2_NK = {s = d05A "voltti"} ;
+lin volyymi_NK = {s = d06 "volyymi"} ;
+lin vongahtaa_VK = {s = c53A "vongahtaa"} ;
+lin vongunta_NK = {s = d09A "vongunta"} ;
+lin vonkale_NK = {s = d48 "vonkale"} ;
+lin vonkua_VK = {s = c52A "vonkua"} ;
+lin voodoo_NK = {s = d20 "voodoo"} ;
+lin vooninki_NK = {s = d05A "vooninki"} ;
+lin vooninkinen_NK = {s = d38 "vooninkinen"} ;
+lin workshop_NK = {s = d05 "workshop"} ;
+lin vormu_NK = {s = d01 "vormu"} ;
+lin voro_NK = {s = d01 "voro"} ;
+lin vorschmack_NK = {s = d05 "vorschmack"} ;
+lin vosikka_NK = {s = d14A "vosikka"} ;
+lin vossikka_NK = {s = d14A "vossikka"} ;
+lin votjakki_NK = {s = d05A "votjakki"} ;
+lin votka_NK = {s = d10 "votka"} ;
+lin voucher_NK = {s = d06 "voucher"} ;
+lin vouhake_NK = {s = d48A "vouhake"} ;
+lin vouhkata_VK = {s = c73 "vouhkata"} ;
+lin vouhottaa_VK = {s = c53A "vouhottaa"} ;
+lin vouhottaja_NK = {s = d10 "vouhottaja"} ;
+lin vouhotus_NK = {s = d39 "vouhotus"} ;
+lin vouti_NK = {s = d05A "vouti"} ;
+lin voyeurismi_NK = {s = d05 "voyeurismi"} ;
+lin voyeuristi_NK = {s = d05 "voyeuristi"} ;
+lin vulgaari_NK = {s = d05 "vulgaari"} ;
+lin vulgaaristaa_VK = {s = c53 "vulgaaristaa"} ;
+lin vulgarismi_NK = {s = d05 "vulgarismi"} ;
+lin vulgarisoida_VK = {s = c62 "vulgarisoida"} ;
+lin vulgarisointi_NK = {s = d05A "vulgarisointi"} ;
+lin vulga'a'ri_NK = {s = d05 "vulgääri"} ;
+lin vulkaani_NK = {s = d06 "vulkaani"} ;
+lin vulkaaninen_NK = {s = d38 "vulkaaninen"} ;
+lin vulkaniitti_NK = {s = d05A "vulkaniitti"} ;
+lin vulkanoida_VK = {s = c62 "vulkanoida"} ;
+lin vulkanointi_NK = {s = d05A "vulkanointi"} ;
+lin vulkanoitua_VK = {s = c52A "vulkanoitua"} ;
+lin vulkanologi_NK = {s = d05 "vulkanologi"} ;
+lin vulkanologia_NK = {s = d12 "vulkanologia"} ;
+lin vulva_NK = {s = d10 "vulva"} ;
+lin vuo_NK = {s = d19 "vuo"} ;
+lin vuodattaa_VK = {s = c53A "vuodattaa"} ;
+lin vuodatus_NK = {s = d39 "vuodatus"} ;
+lin vuode_NK = {s = d48A "vuode"} ;
+lin vuodenaika_NK = {s = d09A "vuodenaika"} ;
+lin vuohenvilla_NK = {s = d09 "vuohenvilla"} ;
+lin vuohi_NK = {s = d23 "vuohi"} ;
+lin vuohikas_NK = {s = d41A "vuohikas"} ;
+lin vuohinen_NK = {s = d38 "vuohinen"} ;
+lin vuoka_NK = {s = d10A "vuoka"} ;
+lin vuokko_NK = {s = d01A "vuokko"} ;
+lin vuokra_NK = {s = d10 "vuokra"} ;
+lin vuokra_aika_NK = {s = d09A "vuokra-aika"} ;
+lin vuokraaja_NK = {s = d10 "vuokraaja"} ;
+lin vuokraamo_NK = {s = d02 "vuokraamo"} ;
+lin vuokrainen_NK = {s = d38 "vuokrainen"} ;
+lin vuokrata_VK = {s = c73 "vuokrata"} ;
+lin vuokraus_NK = {s = d39 "vuokraus"} ;
+lin vuoksi_1_NK = {s = d07 "vuoksi"} ;
+lin vuoksi_2_AdvK = {s = c99 "vuoksi"} ;
+--+ lin vuolaasti_AdvK = {s = c99 "vuolaasti"} ;
+lin vuolas_AK = {s = d41 "vuolas"} ;
+--+ lin vuolassanaisesti_AdvK = {s = c99 "vuolassanaisesti"} ;
+lin vuolaus_NK = {s = d40 "vuolaus"} ;
+lin vuoleskella_VK = {s = c67 "vuoleskella"} ;
+lin vuoliainen_NK = {s = d38 "vuoliainen"} ;
+lin vuolla_VK = {s = c67 "vuolla"} ;
+lin vuolle_NK = {s = d48A "vuolle"} ;
+lin vuolu_NK = {s = d01 "vuolu"} ;
+lin vuona_NK = {s = d10 "vuona"} ;
+lin vuonia_VK = {s = c61 "vuonia"} ;
+lin vuonna_AdvK = {s = c99 "vuonna"} ;
+lin vuono_NK = {s = d01 "vuono"} ;
+lin vuonoinen_NK = {s = d38 "vuonoinen"} ;
+lin vuorata_VK = {s = c73 "vuorata"} ;
+lin vuoraus_NK = {s = d39 "vuoraus"} ;
+lin vuori_1_NK = {s = d26 "vuori"} ;
+lin vuori_2_NK = {s = d05 "vuori"} ;
+lin vuorillinen_NK = {s = d38 "vuorillinen"} ;
+lin vuorinen_1_NK = {s = d38 "vuorinen"} ;
+lin vuorinen_2_NK = {s = d38 "vuorinen"} ;
+lin vuoristo_NK = {s = d02 "vuoristo"} ;
+lin vuoristoinen_NK = {s = d38 "vuoristoinen"} ;
+lin vuoristoisuus_NK = {s = d40 "vuoristoisuus"} ;
+lin vuoriton_NK = {s = d34A "vuoriton"} ;
+lin vuorittaa_VK = {s = c53A "vuorittaa"} ;
+lin vuoritus_NK = {s = d39 "vuoritus"} ;
+lin vuoro_NK = {s = d01 "vuoro"} ;
+lin vuoroinen_NK = {s = d38 "vuoroinen"} ;
+lin vuoroittain_AdvK = {s = c99 "vuoroittain"} ;
+lin vuoroittainen_NK = {s = d38 "vuoroittainen"} ;
+lin vuoroittaisuus_NK = {s = d40 "vuoroittaisuus"} ;
+lin vuorokaudenaika_NK = {s = d09A "vuorokaudenaika"} ;
+lin vuoron_pera'a'n_AdvK = {s = c99 "vuoron perään"} ;
+lin vuorostaan_AdvK = {s = c99 "vuorostaan"} ;
+lin vuorotella_VK = {s = c67A "vuorotella"} ;
+lin vuorottaa_VK = {s = c53A "vuorottaa"} ;
+lin vuorottaja_NK = {s = d10 "vuorottaja"} ;
+lin vuorottelu_NK = {s = d02 "vuorottelu"} ;
+lin vuorotus_NK = {s = d39 "vuorotus"} ;
+--+ lin vuorovaikutteisesti_AdvK = {s = c99 "vuorovaikutteisesti"} ;
+lin vuosi_NK = {s = d27 "vuosi"} ;
+lin vuosiluokittain_AdvK = {s = c99 "vuosiluokittain"} ;
+lin vuosinelja'nneksitta'in_AdvK = {s = c99 "vuosineljänneksittäin"} ;
+lin vuosittain_AdvK = {s = c99 "vuosittain"} ;
+lin vuosittainen_NK = {s = d38 "vuosittainen"} ;
+lin vuota_NK = {s = d10A "vuota"} ;
+lin vuotaa_VK = {s = c53A "vuotaa"} ;
+lin vuotamaton_NK = {s = d34A "vuotamaton"} ;
+lin vuotias_NK = {s = d41 "vuotias"} ;
+lin vuotinen_NK = {s = d38 "vuotinen"} ;
+lin vuoto_NK = {s = d01A "vuoto"} ;
+lin vuotokohta_NK = {s = d10A "vuotokohta"} ;
+lin vuotuinen_NK = {s = d38 "vuotuinen"} ;
+lin WWW_AdvK = {s = c99 "WWW"} ;
+lin vyyhdeta'_VK = {s = c74A "vyyhdetä"} ;
+lin vyyhti_NK = {s = d07A "vyyhti"} ;
+lin vyyhtia'_VK = {s = c61A "vyyhtiä"} ;
+lin vyo'_NK = {s = d19 "vyö"} ;
+lin vyo'hyke_NK = {s = d48A "vyöhyke"} ;
+lin vyo'hykkeinen_NK = {s = d38 "vyöhykkeinen"} ;
+lin vyo'hykkeisyys_NK = {s = d40 "vyöhykkeisyys"} ;
+lin vyo'llinen_NK = {s = d38 "vyöllinen"} ;
+lin vyo'ry_NK = {s = d01 "vyöry"} ;
+lin vyo'ryma'_NK = {s = d10 "vyörymä"} ;
+lin vyo'rytta'a'_VK = {s = c53A "vyöryttää"} ;
+lin vyo'rytys_NK = {s = d39 "vyörytys"} ;
+lin vyo'rya'_VK = {s = c52 "vyöryä"} ;
+lin vyo'ra'hta'a'_VK = {s = c53A "vyörähtää"} ;
+lin vyo'te_NK = {s = d48A "vyöte"} ;
+lin vyo'tia'inen_NK = {s = d38 "vyötiäinen"} ;
+lin vyo'tta'ytya'_VK = {s = c52A "vyöttäytyä"} ;
+lin vyo'tta'a'_VK = {s = c53A "vyöttää"} ;
+--? lin vyo'ta'iset_NK = {s = d38 "vyötäiset"} ;
+lin vyo'ta'ro'_NK = {s = d02 "vyötärö"} ;
+lin vyo'ta'ro'inen_NK = {s = d38 "vyötäröinen"} ;
+lin vyo'to'n_NK = {s = d34A "vyötön"} ;
+lin va'eka's_NK = {s = d41A "väekäs"} ;
+lin va'esto'_NK = {s = d02 "väestö"} ;
+lin va'esto'inen_NK = {s = d38 "väestöinen"} ;
+lin va'esto'llinen_NK = {s = d38 "väestöllinen"} ;
+lin va'esto'nsuoja_NK = {s = d10 "väestönsuoja"} ;
+lin va'eto'n_NK = {s = d34A "väetön"} ;
+lin va'heksynta'_NK = {s = d10A "väheksyntä"} ;
+lin va'heksya'_VK = {s = c52 "väheksyä"} ;
+lin va'hemmisto'_NK = {s = d01 "vähemmistö"} ;
+lin va'hemmisto'la'inen_NK = {s = d38 "vähemmistöläinen"} ;
+lin va'hemmyys_NK = {s = d40 "vähemmyys"} ;
+lin va'hemma'n_AdvK = {s = c99 "vähemmän"} ;
+lin va'hempi_NK = {s = d16A "vähempi"} ;
+lin va'hennella'_VK = {s = c67A "vähennellä"} ;
+lin va'hennetta'va'_NK = {s = d10 "vähennettävä"} ;
+lin va'hennys_NK = {s = d39 "vähennys"} ;
+lin va'hennysjakautuminen_NK = {s = d38 "vähennysjakautuminen"} ;
+lin va'hentyma'_NK = {s = d10 "vähentymä"} ;
+lin va'hentya'_VK = {s = c52A "vähentyä"} ;
+lin va'henta'ja'_NK = {s = d10 "vähentäjä"} ;
+lin va'henta'a'_VK = {s = c54A "vähentää"} ;
+lin va'heta'_VK = {s = c72 "vähetä"} ;
+lin va'hiin_AdvK = {s = c99 "vähiin"} ;
+lin va'himmin_AdvK = {s = c99 "vähimmin"} ;
+lin va'himma'isaika_NK = {s = d09A "vähimmäisaika"} ;
+lin va'himma'israja_NK = {s = d09 "vähimmäisraja"} ;
+lin va'himma'ista'a'_VK = {s = c53 "vähimmäistää"} ;
+lin va'hin_AdvK = {s = c99 "vähin"} ;
+lin va'hinta'a'n_AdvK = {s = c99 "vähintään"} ;
+lin va'hissa'_AdvK = {s = c99 "vähissä"} ;
+lin va'hitellen_AdvK = {s = c99 "vähitellen"} ;
+lin va'hiten_AdvK = {s = c99 "vähiten"} ;
+lin va'hitta'in_AdvK = {s = c99 "vähittäin"} ;
+lin va'hitta'inen_NK = {s = d38 "vähittäinen"} ;
+lin va'hyys_NK = {s = d40 "vähyys"} ;
+lin va'ha'_NK = {s = d10 "vähä"} ;
+--+ lin va'ha'eleisesti_AdvK = {s = c99 "vähäeleisesti"} ;
+lin va'ha'happinen_NK = {s = d38 "vähähappinen"} ;
+lin va'ha'ilmeisyys_NK = {s = d40 "vähäilmeisyys"} ;
+lin va'ha'inen_NK = {s = d38 "vähäinen"} ;
+lin va'ha'isen_AdvK = {s = c99 "vähäisen"} ;
+lin va'ha'ja'rkisyys_NK = {s = d40 "vähäjärkisyys"} ;
+lin va'ha'ksya'_VK = {s = c52 "vähäksyä"} ;
+--+ lin va'ha'lukuisesti_AdvK = {s = c99 "vähälukuisesti"} ;
+lin va'ha'lukuisuus_NK = {s = d40 "vähälukuisuus"} ;
+lin va'ha'la'nta'_NK = {s = d10A "vähäläntä"} ;
+lin va'ha'n_AdvK = {s = c99 "vähän"} ;
+lin va'ha'nla'nta'_NK = {s = d10A "vähänläntä"} ;
+lin va'ha'n_va'lia'_AdvK = {s = c99 "vähän väliä"} ;
+lin va'ha'pa'to'inen_NK = {s = d38 "vähäpätöinen"} ;
+lin va'ha'pa'to'isyys_NK = {s = d40 "vähäpätöisyys"} ;
+lin va'ha'tella'_VK = {s = c67A "vähätellä"} ;
+lin va'ha'telma'_NK = {s = d10 "vähätelmä"} ;
+lin va'ha'a'ka'a'n_AdvK = {s = c99 "vähääkään"} ;
+lin va'ijyksiin_AdvK = {s = c99 "väijyksiin"} ;
+lin va'ijyksissa'_AdvK = {s = c99 "väijyksissä"} ;
+lin va'ijyksista'_AdvK = {s = c99 "väijyksistä"} ;
+lin va'ijynta'_NK = {s = d09A "väijyntä"} ;
+lin va'ijytys_NK = {s = d39 "väijytys"} ;
+lin va'ijya'_VK = {s = c52 "väijyä"} ;
+lin va'ikehtia'_VK = {s = c61A "väikehtiä"} ;
+lin va'ikkya'_VK = {s = c52A "väikkyä"} ;
+lin va'istella'_VK = {s = c67 "väistellä"} ;
+lin va'istin_NK = {s = d33 "väistin"} ;
+lin va'istyva'_AK = {s = d10 "väistyvä"} ;
+--+ lin va'istyva'sti_AdvK = {s = c99 "väistyvästi"} ;
+lin va'istya'_VK = {s = c52 "väistyä"} ;
+lin va'ista'ma'tta'_AdvK = {s = c99 "väistämättä"} ;
+lin va'ista'ma'tto'myys_NK = {s = d40 "väistämättömyys"} ;
+lin va'ista'ma'tto'ma'sti_AdvK = {s = c99 "väistämättömästi"} ;
+lin va'ista'ma'to'n_NK = {s = d34A "väistämätön"} ;
+lin va'ista'a'_VK = {s = c53 "väistää"} ;
+lin va'isto'_NK = {s = d01 "väistö"} ;
+lin va'ite_NK = {s = d48A "väite"} ;
+lin va'itella'_VK = {s = c67A "väitellä"} ;
+lin va'ittelija'_NK = {s = d12 "väittelijä"} ;
+lin va'ittely_NK = {s = d02 "väittely"} ;
+--? lin va'itta'ja'iset_NK = {s = d38 "väittäjäiset"} ;
+lin va'itta'ma'_NK = {s = d10 "väittämä"} ;
+lin va'itta'a'_VK = {s = c53A "väittää"} ;
+lin va'ito's_NK = {s = d39 "väitös"} ;
+lin va'ive_NK = {s = d48 "väive"} ;
+lin va'kevyinen_NK = {s = d38 "väkevyinen"} ;
+lin va'kevyys_NK = {s = d40 "väkevyys"} ;
+lin va'keva'_AK = {s = d10 "väkevä"} ;
+--+ lin va'keva'sti_AdvK = {s = c99 "väkevästi"} ;
+lin va'kevo'ida'_VK = {s = c62 "väkevöidä"} ;
+lin va'kevo'inti_NK = {s = d05A "väkevöinti"} ;
+lin va'kevo'ite_NK = {s = d48A "väkevöite"} ;
+lin va'kevo'itta'a'_VK = {s = c53A "väkevöittää"} ;
+lin va'kevo'itya'_VK = {s = c52A "väkevöityä"} ;
+lin va'ki_NK = {s = d07A "väki"} ;
+lin va'kinen_NK = {s = d38 "väkinen"} ;
+lin va'kina'inen_AK = {s = d38 "väkinäinen"} ;
+--+ lin va'kina'isesti_AdvK = {s = c99 "väkinäisesti"} ;
+lin va'kina'isyys_NK = {s = d40 "väkinäisyys"} ;
+lin va'kisella'_AdvK = {s = c99 "väkisellä"} ;
+lin va'kisin_AdvK = {s = c99 "väkisin"} ;
+lin va'kisinmakaaminen_NK = {s = d38 "väkisinmakaaminen"} ;
+lin va'kisten_AdvK = {s = c99 "väkisten"} ;
+lin va'kivalloin_AdvK = {s = c99 "väkivalloin"} ;
+--+ lin va'kivaltaisesti_AdvK = {s = c99 "väkivaltaisesti"} ;
+lin va'kka'ra'_NK = {s = d12 "väkkärä"} ;
+lin va'ka'_NK = {s = d10A "väkä"} ;
+lin va'ka'nen_NK = {s = d38 "väkänen"} ;
+lin va'ka'sellinen_NK = {s = d38 "väkäsellinen"} ;
+lin va'li_NK = {s = d05 "väli"} ;
+lin va'liaika_NK = {s = d09A "väliaika"} ;
+--+ lin va'liaikaisesti_AdvK = {s = c99 "väliaikaisesti"} ;
+lin va'liin_AdvK = {s = c99 "väliin"} ;
+lin va'like_NK = {s = d48A "välike"} ;
+lin va'likko'_NK = {s = d04A "välikkö"} ;
+lin va'likohta_NK = {s = d10A "välikohta"} ;
+lin va'likoko_NK = {s = d01A "välikoko"} ;
+lin va'lilaskuton_NK = {s = d34A "välilaskuton"} ;
+lin va'lille_AdvK = {s = c99 "välille"} ;
+lin va'lillinen_AK = {s = d38 "välillinen"} ;
+--+ lin va'lillisesti_AdvK = {s = c99 "välillisesti"} ;
+lin va'lillisyys_NK = {s = d40 "välillisyys"} ;
+lin va'lilla'_AdvK = {s = c99 "välillä"} ;
+lin va'lilta'_AdvK = {s = c99 "väliltä"} ;
+lin va'limailla_AdvK = {s = c99 "välimailla"} ;
+lin va'limaille_AdvK = {s = c99 "välimaille"} ;
+lin va'limailta_AdvK = {s = c99 "välimailta"} ;
+lin va'line_NK = {s = d48 "väline"} ;
+lin va'lineellinen_NK = {s = d38 "välineellinen"} ;
+lin va'lineellistya'_VK = {s = c52 "välineellistyä"} ;
+lin va'lineellista'a'_VK = {s = c53 "välineellistää"} ;
+lin va'lineista'a'_VK = {s = c53 "välineistää"} ;
+lin va'lineisto'_NK = {s = d01 "välineistö"} ;
+lin va'linen_NK = {s = d38 "välinen"} ;
+lin va'linen_NK = {s = d38 "välinen"} ;
+lin va'linpita'ma'tto'myys_NK = {s = d40 "välinpitämättömyys"} ;
+lin va'linpita'ma'tto'ma'sti_AdvK = {s = c99 "välinpitämättömästi"} ;
+lin va'lissa'_AdvK = {s = c99 "välissä"} ;
+lin va'lista'_AdvK = {s = c99 "välistä"} ;
+lin va'litse_AdvK = {s = c99 "välitse"} ;
+lin va'litteinen_NK = {s = d38 "välitteinen"} ;
+lin va'littya'_VK = {s = c52A "välittyä"} ;
+lin va'litta'ja'_NK = {s = d10 "välittäjä"} ;
+lin va'litta'a'_VK = {s = c53A "välittää"} ;
+lin va'litto'myys_NK = {s = d40 "välittömyys"} ;
+lin va'litto'ma'sti_AdvK = {s = c99 "välittömästi"} ;
+lin va'lityksinen_NK = {s = d38 "välityksinen"} ;
+lin va'litys_NK = {s = d39 "välitys"} ;
+lin va'lito'n_NK = {s = d34A "välitön"} ;
+lin va'ljennys_NK = {s = d39 "väljennys"} ;
+lin va'ljentya'_VK = {s = c52A "väljentyä"} ;
+lin va'ljenta'a'_VK = {s = c54A "väljentää"} ;
+lin va'ljeta'_VK = {s = c72 "väljetä"} ;
+lin va'ljyys_NK = {s = d40 "väljyys"} ;
+lin va'lja'_AK = {s = d10 "väljä"} ;
+lin va'lja'htya'_VK = {s = c52A "väljähtyä"} ;
+lin va'lja'hta'a'_VK = {s = c53A "väljähtää"} ;
+lin va'lja'lti_AdvK = {s = c99 "väljälti"} ;
+--+ lin va'lja'sti_AdvK = {s = c99 "väljästi"} ;
+lin va'lke_NK = {s = d48A "välke"} ;
+lin va'lkehtia'_VK = {s = c61A "välkehtiä"} ;
+lin va'lkkeinen_NK = {s = d38 "välkkeinen"} ;
+lin va'lkky_NK = {s = d01A "välkky"} ;
+lin va'lkkya'_VK = {s = c52A "välkkyä"} ;
+lin va'lkka'_NK = {s = d10A "välkkä"} ;
+lin va'lkka'ri_NK = {s = d06 "välkkäri"} ;
+lin va'lkynta'_NK = {s = d09A "välkyntä"} ;
+lin va'lkytta'a'_VK = {s = c53A "välkyttää"} ;
+lin va'lka'hdella'_VK = {s = c67A "välkähdellä"} ;
+lin va'lka'hdys_NK = {s = d39 "välkähdys"} ;
+lin va'lka'hta'a'_VK = {s = c53A "välkähtää"} ;
+--? lin va'llyt_NK = {s = d01 "vällyt"} ;
+lin va'lppa'_NK = {s = d10A "välppä"} ;
+lin va'lppa'ys_NK = {s = d39 "välppäys"} ;
+lin va'lpa'ta'_VK = {s = c73A "välpätä"} ;
+lin va'lska'ri_NK = {s = d06 "välskäri"} ;
+lin va'ltella'_VK = {s = c67A "vältellä"} ;
+lin va'lttya'_VK = {s = c52A "välttyä"} ;
+lin va'ltta'ma'tta'_AdvK = {s = c99 "välttämättä"} ;
+lin va'ltta'ma'tto'myys_NK = {s = d40 "välttämättömyys"} ;
+lin va'ltta'ma'tto'ma'sti_AdvK = {s = c99 "välttämättömästi"} ;
+lin va'ltta'ma'to'n_NK = {s = d34A "välttämätön"} ;
+lin va'ltta'va'_NK = {s = d10 "välttävä"} ;
+lin va'ltta'a'_VK = {s = c53A "välttää"} ;
+lin va'ltto'_NK = {s = d01A "välttö"} ;
+lin va'lys_NK = {s = d39 "välys"} ;
+lin va'la'hdella'_VK = {s = c67A "välähdellä"} ;
+lin va'la'hdyksellinen_NK = {s = d38 "välähdyksellinen"} ;
+lin va'la'hdyksitta'in_AdvK = {s = c99 "välähdyksittäin"} ;
+lin va'la'hdys_NK = {s = d39 "välähdys"} ;
+lin va'la'hdytta'a'_VK = {s = c53A "välähdyttää"} ;
+lin va'la'htely_NK = {s = d02 "välähtely"} ;
+lin va'la'hta'a'_VK = {s = c53A "välähtää"} ;
+lin va'la'yksellinen_NK = {s = d38 "väläyksellinen"} ;
+lin va'la'yksitta'in_AdvK = {s = c99 "väläyksittäin"} ;
+lin va'la'ys_NK = {s = d39 "väläys"} ;
+lin va'la'ytella'_VK = {s = c67A "väläytellä"} ;
+lin va'la'ytta'a'_VK = {s = c53A "väläyttää"} ;
+lin va'nga'lla'_AdvK = {s = c99 "vängällä"} ;
+lin va'nga'ta'_VK = {s = c73A "vängätä"} ;
+lin va'nrikki_NK = {s = d05A "vänrikki"} ;
+lin va'pa'tta'a'_VK = {s = c53A "väpättää"} ;
+lin va'pa'tys_NK = {s = d39 "väpätys"} ;
+lin va're_NK = {s = d48 "väre"} ;
+lin va'rehtia'_VK = {s = c61A "värehtiä"} ;
+lin va'reilla'_VK = {s = c67 "väreillä"} ;
+lin va'ri_NK = {s = d05 "väri"} ;
+lin va'rikkyys_NK = {s = d40 "värikkyys"} ;
+--+ lin va'rikka'a'sti_AdvK = {s = c99 "värikkäästi"} ;
+--+ lin va'rikylla'isesti_AdvK = {s = c99 "värikylläisesti"} ;
+lin va'rika's_AK = {s = d41A "värikäs"} ;
+lin va'rillinen_NK = {s = d38 "värillinen"} ;
+lin va'rillisyys_NK = {s = d40 "värillisyys"} ;
+lin va'rinen_NK = {s = d38 "värinen"} ;
+lin va'rina'_NK = {s = d12 "värinä"} ;
+lin va'ristys_NK = {s = d39 "väristys"} ;
+lin va'rista'_VK = {s = c66 "väristä"} ;
+lin va'rista'a'_VK = {s = c53 "väristää"} ;
+lin va'risytta'a'_VK = {s = c53A "värisyttää"} ;
+lin va'risyys_NK = {s = d40 "värisyys"} ;
+lin va'ritteinen_NK = {s = d38 "väritteinen"} ;
+lin va'rittya'_VK = {s = c52A "värittyä"} ;
+lin va'ritta'a'_VK = {s = c53A "värittää"} ;
+lin va'ritto'myys_NK = {s = d40 "värittömyys"} ;
+lin va'ritto'ma'sti_AdvK = {s = c99 "värittömästi"} ;
+lin va'rityksinen_NK = {s = d38 "värityksinen"} ;
+lin va'ritys_NK = {s = d39 "väritys"} ;
+lin va'rito'n_NK = {s = d34A "väritön"} ;
+lin va'ria'pa'a'sta'va'_NK = {s = d10 "väriäpäästävä"} ;
+lin va'rjya'_VK = {s = c52 "värjyä"} ;
+lin va'rja'ri_NK = {s = d06 "värjäri"} ;
+lin va'rja'ta'_VK = {s = c73 "värjätä"} ;
+lin va'rja'ys_NK = {s = d39 "värjäys"} ;
+lin va'rja'ytta'a'_VK = {s = c53A "värjäyttää"} ;
+lin va'rja'ytyma'to'n_NK = {s = d34A "värjäytymätön"} ;
+lin va'rja'ytya'_VK = {s = c52A "värjäytyä"} ;
+lin va'rja'a'ja'_NK = {s = d10 "värjääjä"} ;
+lin va'rja'a'ma'to'n_NK = {s = d34A "värjäämätön"} ;
+lin va'rja'a'mo'_NK = {s = d02 "värjäämö"} ;
+lin va'rja'a'ntya'_VK = {s = c52A "värjääntyä"} ;
+lin va'rjo'tella'_VK = {s = c67A "värjötellä"} ;
+lin va'rjo'tta'a'_VK = {s = c53A "värjöttää"} ;
+lin va'rkki_NK = {s = d05A "värkki"} ;
+lin va'rkka'ys_NK = {s = d39 "värkkäys"} ;
+lin va'rka'ta'_VK = {s = c73A "värkätä"} ;
+lin va'rssy_NK = {s = d01 "värssy"} ;
+lin va'rttina'_NK = {s = d12 "värttinä"} ;
+lin va'rve_NK = {s = d48 "värve"} ;
+lin va'rva'ri_NK = {s = d06 "värväri"} ;
+lin va'rva'ta'_VK = {s = c73 "värvätä"} ;
+lin va'rva'ys_NK = {s = d39 "värväys"} ;
+lin va'rva'ytya'_VK = {s = c52A "värväytyä"} ;
+lin va'rva'a'ja'_NK = {s = d10 "värvääjä"} ;
+lin va'ra'hdella'_VK = {s = c67A "värähdellä"} ;
+lin va'ra'hdys_NK = {s = d39 "värähdys"} ;
+lin va'ra'hdytta'a'_VK = {s = c53A "värähdyttää"} ;
+lin va'ra'htely_NK = {s = d02 "värähtely"} ;
+lin va'ra'hta'ma'to'n_NK = {s = d34A "värähtämätön"} ;
+lin va'ra'hta'a'_VK = {s = c53A "värähtää"} ;
+lin va'ra'ytta'a'_VK = {s = c53A "väräyttää"} ;
+lin va'sky_NK = {s = d01 "väsky"} ;
+lin va'skyna'_NK = {s = d12 "väskynä"} ;
+lin va'stinki_NK = {s = d05A "västinki"} ;
+lin va'sta'ra'kki_NK = {s = d05A "västäräkki"} ;
+lin va'sy_NK = {s = d01 "väsy"} ;
+lin va'syksiin_AdvK = {s = c99 "väsyksiin"} ;
+lin va'syksissa'_AdvK = {s = c99 "väsyksissä"} ;
+lin va'symys_NK = {s = d39 "väsymys"} ;
+lin va'syma'tto'myys_NK = {s = d40 "väsymättömyys"} ;
+lin va'syma'tto'ma'sti_AdvK = {s = c99 "väsymättömästi"} ;
+lin va'syma'to'n_NK = {s = d34A "väsymätön"} ;
+--+ lin va'syneesti_AdvK = {s = c99 "väsyneesti"} ;
+lin va'synyt_AK = {s = d47 "väsynyt"} ;
+lin va'sytta'a'_VK = {s = c53A "väsyttää"} ;
+lin va'sytys_NK = {s = d39 "väsytys"} ;
+lin va'sya'_VK = {s = c52 "väsyä"} ;
+lin va'sa'hdys_NK = {s = d39 "väsähdys"} ;
+lin va'sa'hta'a'_VK = {s = c53A "väsähtää"} ;
+lin va'sa'ta'_VK = {s = c73 "väsätä"} ;
+lin va'sa'ys_NK = {s = d39 "väsäys"} ;
+lin va'tys_NK = {s = d39 "vätys"} ;
+lin va'tystella'_VK = {s = c67 "vätystellä"} ;
+lin va'vy_NK = {s = d01 "vävy"} ;
+lin va'yla'_NK = {s = d10 "väylä"} ;
+lin va'yla'sto'_NK = {s = d01 "väylästö"} ;
+lin va'a'ja'a'ma'tta'_AdvK = {s = c99 "vääjäämättä"} ;
+lin va'a'ja'a'ma'tto'myys_NK = {s = d40 "vääjäämättömyys"} ;
+lin va'a'ja'a'ma'tto'ma'sti_AdvK = {s = c99 "vääjäämättömästi"} ;
+lin va'a'ja'a'ma'to'n_NK = {s = d34A "vääjäämätön"} ;
+lin va'a'nne_NK = {s = d48A "väänne"} ;
+lin va'a'nnella'_VK = {s = c67A "väännellä"} ;
+lin va'a'nnin_NK = {s = d33A "väännin"} ;
+lin va'a'nnyksiin_AdvK = {s = c99 "väännyksiin"} ;
+lin va'a'nnyksissa'_AdvK = {s = c99 "väännyksissä"} ;
+lin va'a'nno's_NK = {s = d39 "väännös"} ;
+lin va'a'ntelehtia'_VK = {s = c61A "vääntelehtiä"} ;
+lin va'a'ntely_NK = {s = d02 "vääntely"} ;
+lin va'a'ntyilla'_VK = {s = c67 "vääntyillä"} ;
+lin va'a'ntyma'_NK = {s = d10 "vääntymä"} ;
+lin va'a'ntya'_VK = {s = c52A "vääntyä"} ;
+lin va'a'nta'ja'_NK = {s = d10 "vääntäjä"} ;
+lin va'a'nta'ytya'_VK = {s = c52A "vääntäytyä"} ;
+lin va'a'nta'a'_VK = {s = c54A "vääntää"} ;
+lin va'a'nto'_NK = {s = d01A "vääntö"} ;
+lin va'a'peli_NK = {s = d06 "vääpeli"} ;
+lin va'a'rennys_NK = {s = d39 "väärennys"} ;
+lin va'a'renno's_NK = {s = d39 "väärennös"} ;
+lin va'a'renta'ja'_NK = {s = d10 "väärentäjä"} ;
+lin va'a'renta'ma'to'n_NK = {s = d34A "väärentämätön"} ;
+lin va'a'renta'a'_VK = {s = c54A "väärentää"} ;
+lin va'a'rin_AdvK = {s = c99 "väärin"} ;
+lin va'a'rin_pa'in_AdvK = {s = c99 "väärin päin"} ;
+lin va'a'ristelema'to'n_NK = {s = d34A "vääristelemätön"} ;
+lin va'a'ristella'_VK = {s = c67 "vääristellä"} ;
+lin va'a'ristely_NK = {s = d02 "vääristely"} ;
+lin va'a'ristyma'_NK = {s = d10 "vääristymä"} ;
+lin va'a'ristys_NK = {s = d39 "vääristys"} ;
+lin va'a'ristya'_VK = {s = c52 "vääristyä"} ;
+lin va'a'rista'a'_VK = {s = c53 "vääristää"} ;
+lin va'a'rti_NK = {s = d05 "väärti"} ;
+lin va'a'rtti_NK = {s = d05A "väärtti"} ;
+lin va'a'ryys_NK = {s = d40 "vääryys"} ;
+lin va'a'ra'_NK = {s = d10 "väärä"} ;
+--+ lin va'a'ra'mielisesti_AdvK = {s = c99 "väärämielisesti"} ;
+lin ydin_NK = {s = d33A "ydin"} ;
+lin ydinkohta_NK = {s = d10A "ydinkohta"} ;
+lin yhdeksikko'_NK = {s = d04A "yhdeksikkö"} ;
+lin yhdeksisen_AdvK = {s = c99 "yhdeksisen"} ;
+lin yhdeksisenkymmenta'_AdvK = {s = c99 "yhdeksisenkymmentä"} ;
+lin yhdeksa'inen_NK = {s = d38 "yhdeksäinen"} ;
+lin yhdeksa'n_NK = {s = d10 "yhdeksän"} ;
+lin yhdeksa'nnes_NK = {s = d39 "yhdeksännes"} ;
+lin yhdeksa's_NK = {s = d45 "yhdeksäs"} ;
+lin yhdelma'_NK = {s = d10 "yhdelmä"} ;
+lin yhdenlainen_NK = {s = d38 "yhdenlainen"} ;
+lin yhdenmukaistaa_VK = {s = c53 "yhdenmukaistaa"} ;
+lin yhdenmukaistua_VK = {s = c52 "yhdenmukaistua"} ;
+lin yhdensuuntaistaa_VK = {s = c53 "yhdensuuntaistaa"} ;
+lin yhdensuuntaistua_VK = {s = c52 "yhdensuuntaistua"} ;
+lin yhdensuuntaistus_NK = {s = d39 "yhdensuuntaistus"} ;
+lin yhdentya'_VK = {s = c52A "yhdentyä"} ;
+lin yhdenta'a'_VK = {s = c54A "yhdentää"} ;
+lin yhdes_NK = {s = d45 "yhdes"} ;
+lin yhdessa'_AdvK = {s = c99 "yhdessä"} ;
+lin yhdesti_AdvK = {s = c99 "yhdesti"} ;
+lin yhdeta'_VK = {s = c72A "yhdetä"} ;
+lin yhdiste_NK = {s = d48 "yhdiste"} ;
+lin yhdistella'_VK = {s = c67 "yhdistellä"} ;
+lin yhdistelma'_NK = {s = d10 "yhdistelmä"} ;
+lin yhdistely_NK = {s = d02 "yhdistely"} ;
+lin yhdistetty_NK = {s = d01A "yhdistetty"} ;
+lin yhdistyma'_NK = {s = d10 "yhdistymä"} ;
+lin yhdistys_NK = {s = d39 "yhdistys"} ;
+lin yhdistya'_VK = {s = c52 "yhdistyä"} ;
+lin yhdista'ja'_NK = {s = d10 "yhdistäjä"} ;
+lin yhdista'a'_VK = {s = c53 "yhdistää"} ;
+lin yhdynta'_NK = {s = d09A "yhdyntä"} ;
+lin yhdysvaltalainen_NK = {s = d38 "yhdysvaltalainen"} ;
+lin yhdytta'a'_VK = {s = c53A "yhdyttää"} ;
+lin yhtaikaa_AdvK = {s = c99 "yhtaikaa"} ;
+--+ lin yhtaikaisesti_AdvK = {s = c99 "yhtaikaisesti"} ;
+lin yhteen_AdvK = {s = c99 "yhteen"} ;
+lin yhteenkuuluvaisuus_NK = {s = d40 "yhteenkuuluvaisuus"} ;
+lin yhteenlaskettu_NK = {s = d01A "yhteenlaskettu"} ;
+lin yhteensa'_AdvK = {s = c99 "yhteensä"} ;
+lin yhteinen_AK = {s = d38 "yhteinen"} ;
+lin yhteisesiintyminen_NK = {s = d38 "yhteisesiintyminen"} ;
+--+ lin yhteisesti_AdvK = {s = c99 "yhteisesti"} ;
+--+ lin yhteiskunnallisesti_AdvK = {s = c99 "yhteiskunnallisesti"} ;
+lin yhteiskunnallisuus_NK = {s = d40 "yhteiskunnallisuus"} ;
+lin yhteismitaton_NK = {s = d34A "yhteismitaton"} ;
+lin yhteismitattomuus_NK = {s = d40 "yhteismitattomuus"} ;
+lin yhteistoimivuus_NK = {s = d40 "yhteistoimivuus"} ;
+lin yhteistuumin_AdvK = {s = c99 "yhteistuumin"} ;
+lin yhteisvastuisesti_AdvK = {s = c99 "yhteisvastuisesti"} ;
+lin yhteisvoimin_AdvK = {s = c99 "yhteisvoimin"} ;
+lin yhteisyys_NK = {s = d40 "yhteisyys"} ;
+lin yhteiso'_NK = {s = d02 "yhteisö"} ;
+lin yhteiso'asuminen_NK = {s = d38 "yhteisöasuminen"} ;
+lin yhteiso'llinen_NK = {s = d38 "yhteisöllinen"} ;
+lin yhtenevyys_NK = {s = d40 "yhtenevyys"} ;
+lin yhteneva'_NK = {s = d10 "yhtenevä"} ;
+lin yhtena'inen_AK = {s = d38 "yhtenäinen"} ;
+--+ lin yhtena'isesti_AdvK = {s = c99 "yhtenäisesti"} ;
+lin yhtena'istytta'a'_VK = {s = c53A "yhtenäistyttää"} ;
+lin yhtena'istya'_VK = {s = c52 "yhtenäistyä"} ;
+lin yhtena'ista'a'_VK = {s = c53 "yhtenäistää"} ;
+lin yhtena'isyys_NK = {s = d40 "yhtenäisyys"} ;
+lin yhtena'a'n_AdvK = {s = c99 "yhtenään"} ;
+lin yhteys_NK = {s = d40 "yhteys"} ;
+lin yhteytta'ja'_NK = {s = d10 "yhteyttäjä"} ;
+lin yhteytta'a'_VK = {s = c53A "yhteyttää"} ;
+lin yhteytys_NK = {s = d39 "yhteytys"} ;
+lin yhtika's_AdvK = {s = c99 "yhtikäs"} ;
+lin yhtio'_NK = {s = d03 "yhtiö"} ;
+lin yhtio'itta'a'_VK = {s = c53A "yhtiöittää"} ;
+lin yhtye_NK = {s = d48 "yhtye"} ;
+lin yhtyma'_NK = {s = d10 "yhtymä"} ;
+lin yhtyma'kohta_NK = {s = d10A "yhtymäkohta"} ;
+lin yhtya'_VK = {s = c52A "yhtyä"} ;
+lin yhta'_AdvK = {s = c99 "yhtä"} ;
+lin yhta'_aikaa_AdvK = {s = c99 "yhtä aikaa"} ;
+--+ lin yhta'aikaisesti_AdvK = {s = c99 "yhtäaikaisesti"} ;
+--+ lin yhta'jaksoisesti_AdvK = {s = c99 "yhtäjaksoisesti"} ;
+lin yhta'jaksoisuus_NK = {s = d40 "yhtäjaksoisuus"} ;
+lin yhta'_kaikki_AdvK = {s = c99 "yhtä kaikki"} ;
+lin yhta'kkinen_AK = {s = d38 "yhtäkkinen"} ;
+--+ lin yhta'kkisesti_AdvK = {s = c99 "yhtäkkisesti"} ;
+lin yhta'kkisyys_NK = {s = d40 "yhtäkkisyys"} ;
+lin yhta'_kuin_AdvK = {s = c99 "yhtä kuin"} ;
+lin yhta'_lailla_AdvK = {s = c99 "yhtä lailla"} ;
+lin yhta'la'inen_AK = {s = d38 "yhtäläinen"} ;
+--+ lin yhta'la'isesti_AdvK = {s = c99 "yhtäläisesti"} ;
+lin yhta'la'istya'_VK = {s = c52 "yhtäläistyä"} ;
+lin yhta'la'ista'a'_VK = {s = c53 "yhtäläistää"} ;
+lin yhta'la'isyys_NK = {s = d40 "yhtäläisyys"} ;
+lin yhta'lo'_NK = {s = d02 "yhtälö"} ;
+lin yhta'_mittaa_AdvK = {s = c99 "yhtä mittaa"} ;
+--+ lin yhta'mittaisesti_AdvK = {s = c99 "yhtämittaisesti"} ;
+lin yhta'mittaisuus_NK = {s = d40 "yhtämittaisuus"} ;
+lin yhta'pita'va'sti_AdvK = {s = c99 "yhtäpitävästi"} ;
+lin yhta'_pa'a'ta'_AdvK = {s = c99 "yhtä päätä"} ;
+lin yhta'a'lle_AdvK = {s = c99 "yhtäälle"} ;
+lin yhta'a'lla'_AdvK = {s = c99 "yhtäällä"} ;
+lin yhta'a'lta'_AdvK = {s = c99 "yhtäältä"} ;
+lin yhta'a'n_AdvK = {s = c99 "yhtään"} ;
+lin yhta'a'nne_AdvK = {s = c99 "yhtäänne"} ;
+lin yha'_AdvK = {s = c99 "yhä"} ;
+lin yha'ti_AdvK = {s = c99 "yhäti"} ;
+lin ykko'nen_NK = {s = d38 "ykkönen"} ;
+lin yks_AdvK = {s = c99 "yks"} ;
+lin ykseys_NK = {s = d40 "ykseys"} ;
+lin yksi_NK = {s = d31 "yksi"} ;
+lin yksi_ilmeinen_NK = {s = d18 "yksi-ilmeinen"} ;
+lin yksiin_AdvK = {s = c99 "yksiin"} ;
+lin yksijumalaisuus_NK = {s = d40 "yksijumalaisuus"} ;
+lin yksikko'_NK = {s = d04A "yksikkö"} ;
+lin yksikko'inen_NK = {s = d38 "yksikköinen"} ;
+lin yksikotinen_NK = {s = d38 "yksikotinen"} ;
+lin yksikotisuus_NK = {s = d40 "yksikotisuus"} ;
+lin yksikseen_AdvK = {s = c99 "yksikseen"} ;
+lin yksiko'itta'in_AdvK = {s = c99 "yksiköittäin"} ;
+lin yksiko'itta'a'_VK = {s = c53A "yksiköittää"} ;
+lin yksiko'llinen_NK = {s = d38 "yksiköllinen"} ;
+lin yksilappeinen_NK = {s = d38 "yksilappeinen"} ;
+lin yksilo'_NK = {s = d02 "yksilö"} ;
+lin yksilo'ida'_VK = {s = c62 "yksilöidä"} ;
+lin yksilo'inti_NK = {s = d05A "yksilöinti"} ;
+lin yksilo'itta'in_AdvK = {s = c99 "yksilöittäin"} ;
+lin yksilo'itta'inen_NK = {s = d38 "yksilöittäinen"} ;
+lin yksilo'itya'_VK = {s = c52A "yksilöityä"} ;
+--+ lin yksilo'kohtaisesti_AdvK = {s = c99 "yksilökohtaisesti"} ;
+lin yksilo'llinen_AK = {s = d38 "yksilöllinen"} ;
+--+ lin yksilo'llisesti_AdvK = {s = c99 "yksilöllisesti"} ;
+lin yksilo'llistya'_VK = {s = c52 "yksilöllistyä"} ;
+lin yksilo'llista'a'_VK = {s = c53 "yksilöllistää"} ;
+lin yksilo'llisyys_NK = {s = d40 "yksilöllisyys"} ;
+lin yksilo'ys_NK = {s = d40 "yksilöys"} ;
+--+ lin yksimielisesti_AdvK = {s = c99 "yksimielisesti"} ;
+lin yksin_AdvK = {s = c99 "yksin"} ;
+lin yksineuvoisuus_NK = {s = d40 "yksineuvoisuus"} ;
+lin yksinhuoltajuus_NK = {s = d40 "yksinhuoltajuus"} ;
+--+ lin yksinkertaisesti_AdvK = {s = c99 "yksinkertaisesti"} ;
+lin yksinkertaisuus_NK = {s = d40 "yksinkertaisuus"} ;
+lin yksinomaan_AdvK = {s = c99 "yksinomaan"} ;
+--+ lin yksinomaisesti_AdvK = {s = c99 "yksinomaisesti"} ;
+lin yksin_tein_AdvK = {s = c99 "yksin tein"} ;
+--+ lin yksinvaltaisesti_AdvK = {s = c99 "yksinvaltaisesti"} ;
+--+ lin yksinvaltiaasti_AdvK = {s = c99 "yksinvaltiaasti"} ;
+lin yksina'inen_NK = {s = d38 "yksinäinen"} ;
+lin yksina'istya'_VK = {s = c52 "yksinäistyä"} ;
+lin yksina'isyys_NK = {s = d40 "yksinäisyys"} ;
+lin yksina'a'n_AdvK = {s = c99 "yksinään"} ;
+--+ lin yksioikoisesti_AdvK = {s = c99 "yksioikoisesti"} ;
+lin yksioikoisuus_NK = {s = d40 "yksioikoisuus"} ;
+--+ lin yksipuolisesti_AdvK = {s = c99 "yksipuolisesti"} ;
+lin yksipuolistaa_VK = {s = c53 "yksipuolistaa"} ;
+lin yksipuolistua_VK = {s = c52 "yksipuolistua"} ;
+lin yksipuolisuus_NK = {s = d40 "yksipuolisuus"} ;
+--+ lin yksiselitteisesti_AdvK = {s = c99 "yksiselitteisesti"} ;
+lin yksiselitteisyys_NK = {s = d40 "yksiselitteisyys"} ;
+--+ lin yksisilma'isesti_AdvK = {s = c99 "yksisilmäisesti"} ;
+lin yksissa'_AdvK = {s = c99 "yksissä"} ;
+lin yksista'a'n_AdvK = {s = c99 "yksistään"} ;
+lin yksisuuntaistaa_VK = {s = c53 "yksisuuntaistaa"} ;
+lin yksitellen_AdvK = {s = c99 "yksitellen"} ;
+lin yksitoikkoinen_AK = {s = d38 "yksitoikkoinen"} ;
+--+ lin yksitoikkoisesti_AdvK = {s = c99 "yksitoikkoisesti"} ;
+lin yksitoikkoisuus_NK = {s = d40 "yksitoikkoisuus"} ;
+lin yksitoistikko_NK = {s = d04A "yksitoistikko"} ;
+lin yksitta'in_AdvK = {s = c99 "yksittäin"} ;
+lin yksitta'inen_AK = {s = d38 "yksittäinen"} ;
+--+ lin yksitta'isesti_AdvK = {s = c99 "yksittäisesti"} ;
+lin yksitta'ispakattu_NK = {s = d01A "yksittäispakattu"} ;
+lin yksitta'isyys_NK = {s = d40 "yksittäisyys"} ;
+--+ lin yksituumaisesti_AdvK = {s = c99 "yksituumaisesti"} ;
+lin yksituumaisuus_NK = {s = d40 "yksituumaisuus"} ;
+lin yksityinen_AK = {s = d38 "yksityinen"} ;
+--+ lin yksityisesti_AdvK = {s = c99 "yksityisesti"} ;
+lin yksityiskohta_NK = {s = d10A "yksityiskohta"} ;
+--+ lin yksityiskohtaisesti_AdvK = {s = c99 "yksityiskohtaisesti"} ;
+lin yksityistya'_VK = {s = c52 "yksityistyä"} ;
+lin yksityista'a'_VK = {s = c53 "yksityistää"} ;
+lin yksityisyys_NK = {s = d40 "yksityisyys"} ;
+lin yksivaimoinen_NK = {s = d38 "yksivaimoinen"} ;
+lin yksivaimoisuus_NK = {s = d40 "yksivaimoisuus"} ;
+--+ lin yksivakaisesti_AdvK = {s = c99 "yksivakaisesti"} ;
+lin yksivakaisuus_NK = {s = d40 "yksivakaisuus"} ;
+--+ lin yksiviivaisesti_AdvK = {s = c99 "yksiviivaisesti"} ;
+lin yksiymma'rteinen_NK = {s = d38 "yksiymmärteinen"} ;
+lin yksio'_NK = {s = d03 "yksiö"} ;
+lin yleensa'_AdvK = {s = c99 "yleensä"} ;
+lin yleinen_AK = {s = d38 "yleinen"} ;
+lin yleisaika_NK = {s = d09A "yleisaika"} ;
+--+ lin yleisesti_AdvK = {s = c99 "yleisesti"} ;
+--+ lin yleismaailmallisesti_AdvK = {s = c99 "yleismaailmallisesti"} ;
+--+ lin yleispa'teva'sti_AdvK = {s = c99 "yleispätevästi"} ;
+lin yleissivista'va'_NK = {s = d10 "yleissivistävä"} ;
+lin yleistajuistaa_VK = {s = c53 "yleistajuistaa"} ;
+lin yleistys_NK = {s = d39 "yleistys"} ;
+lin yleistya'_VK = {s = c52 "yleistyä"} ;
+lin yleista'a'_VK = {s = c53 "yleistää"} ;
+lin yleisyys_NK = {s = d40 "yleisyys"} ;
+lin yleiso'_NK = {s = d02 "yleisö"} ;
+lin yleiso'esiintyminen_NK = {s = d38 "yleisöesiintyminen"} ;
+lin ylellinen_AK = {s = d38 "ylellinen"} ;
+--+ lin ylellisesti_AdvK = {s = c99 "ylellisesti"} ;
+lin ylellistya'_VK = {s = c52 "ylellistyä"} ;
+lin ylellisyys_NK = {s = d40 "ylellisyys"} ;
+lin ylemmyys_NK = {s = d40 "ylemmyys"} ;
+lin ylemma'_AdvK = {s = c99 "ylemmä"} ;
+lin ylemma'ksi_AdvK = {s = c99 "ylemmäksi"} ;
+lin ylemma's_AdvK = {s = c99 "ylemmäs"} ;
+lin ylempi_NK = {s = d16A "ylempi"} ;
+lin ylempa'na'_AdvK = {s = c99 "ylempänä"} ;
+lin ylempa'a'_AdvK = {s = c99 "ylempää"} ;
+lin ylen_AdvK = {s = c99 "ylen"} ;
+lin ylenannattaa_VK = {s = c53A "ylenannattaa"} ;
+lin ylenkatseellinen_NK = {s = d38 "ylenkatseellinen"} ;
+lin ylenkatseellisesti_AdvK = {s = c99 "ylenkatseellisesti"} ;
+lin ylenkatseellisuus_NK = {s = d40 "ylenkatseellisuus"} ;
+lin ylen_ma'a'rin_AdvK = {s = c99 "ylen määrin"} ;
+lin ylennys_NK = {s = d39 "ylennys"} ;
+lin ylenpalttinen_AK = {s = d38 "ylenpalttinen"} ;
+--+ lin ylenpalttisesti_AdvK = {s = c99 "ylenpalttisesti"} ;
+lin ylenpalttisuus_NK = {s = d40 "ylenpalttisuus"} ;
+lin ylentya'_VK = {s = c52A "ylentyä"} ;
+lin ylenta'a'_VK = {s = c54A "ylentää"} ;
+lin ylettyville_AdvK = {s = c99 "ylettyville"} ;
+lin ylettyvilla'_AdvK = {s = c99 "ylettyvillä"} ;
+lin ylettyvilta'_AdvK = {s = c99 "ylettyviltä"} ;
+lin ylettya'_VK = {s = c52A "ylettyä"} ;
+lin yletta'a'_VK = {s = c53A "ylettää"} ;
+lin yletto'myys_NK = {s = d40 "ylettömyys"} ;
+lin yletto'ma'sti_AdvK = {s = c99 "ylettömästi"} ;
+lin yleta'_VK = {s = c72 "yletä"} ;
+lin yleto'n_NK = {s = d34A "yletön"} ;
+lin ylevyys_NK = {s = d40 "ylevyys"} ;
+lin yleva'_NK = {s = d10 "ylevä"} ;
+lin ylevo'ida'_VK = {s = c62 "ylevöidä"} ;
+lin ylevo'itta'a'_VK = {s = c53A "ylevöittää"} ;
+lin ylevo'itys_NK = {s = d39 "ylevöitys"} ;
+lin ylevo'itya'_VK = {s = c52A "ylevöityä"} ;
+lin ylha'inen_AK = {s = d38 "ylhäinen"} ;
+--+ lin ylha'isesti_AdvK = {s = c99 "ylhäisesti"} ;
+lin ylha'isyys_NK = {s = d40 "ylhäisyys"} ;
+lin ylha'iso'_NK = {s = d02 "ylhäisö"} ;
+lin ylha'a'lle_AdvK = {s = c99 "ylhäälle"} ;
+lin ylha'a'lla'_AdvK = {s = c99 "ylhäällä"} ;
+lin ylha'a'lta'_AdvK = {s = c99 "ylhäältä"} ;
+lin yli_AdvK = {s = c99 "yli"} ;
+lin yliaika_NK = {s = d09A "yliaika"} ;
+lin yliammuttu_NK = {s = d01A "yliammuttu"} ;
+lin yliampuva_NK = {s = d10 "yliampuva"} ;
+lin yliedustettu_NK = {s = d01A "yliedustettu"} ;
+lin ylihuolehtiva_NK = {s = d10 "ylihuolehtiva"} ;
+lin yli_ika'istya'_VK = {s = c52 "yli-ikäistyä"} ;
+lin ylija'a'ma'inen_NK = {s = d38 "ylijäämäinen"} ;
+lin ylikansoitettu_NK = {s = d01A "ylikansoitettu"} ;
+lin ylikansoitus_NK = {s = d39 "ylikansoitus"} ;
+lin ylikiihottunut_NK = {s = d47 "ylikiihottunut"} ;
+lin ylikoulutettu_NK = {s = d01A "ylikoulutettu"} ;
+lin ylikukkinut_NK = {s = d47 "ylikukkinut"} ;
+lin ylika'yma'to'n_NK = {s = d34A "ylikäymätön"} ;
+--+ lin ylimaallisesti_AdvK = {s = c99 "ylimaallisesti"} ;
+lin ylimainostettu_NK = {s = d01A "ylimainostettu"} ;
+lin ylimalkaan_AdvK = {s = c99 "ylimalkaan"} ;
+lin ylimalkainen_AK = {s = d38 "ylimalkainen"} ;
+--+ lin ylimalkaisesti_AdvK = {s = c99 "ylimalkaisesti"} ;
+lin ylimalkaisuus_NK = {s = d40 "ylimalkaisuus"} ;
+lin ylimenoaika_NK = {s = d09A "ylimenoaika"} ;
+--+ lin ylimielisesti_AdvK = {s = c99 "ylimielisesti"} ;
+lin ylimina'_NK = {s = d10 "yliminä"} ;
+lin ylimmilleen_AdvK = {s = c99 "ylimmilleen"} ;
+lin ylimmilla'a'n_AdvK = {s = c99 "ylimmillään"} ;
+lin ylimma'_AdvK = {s = c99 "ylimmä"} ;
+lin ylimma'inen_NK = {s = d38 "ylimmäinen"} ;
+lin ylimma'ksi_AdvK = {s = c99 "ylimmäksi"} ;
+lin ylimma's_AdvK = {s = c99 "ylimmäs"} ;
+lin ylimpa'na'_AdvK = {s = c99 "ylimpänä"} ;
+--+ lin ylimuistoisesti_AdvK = {s = c99 "ylimuistoisesti"} ;
+lin ylimyksellinen_AK = {s = d38 "ylimyksellinen"} ;
+--+ lin ylimyksellisesti_AdvK = {s = c99 "ylimyksellisesti"} ;
+lin ylimyksellisyys_NK = {s = d40 "ylimyksellisyys"} ;
+lin ylimys_NK = {s = d39 "ylimys"} ;
+lin ylimysto'_NK = {s = d01 "ylimystö"} ;
+lin ylin_NK = {s = d36 "ylin"} ;
+lin ylinen_NK = {s = d38 "ylinen"} ;
+lin yliohjautuva_NK = {s = d10 "yliohjautuva"} ;
+lin yliolkainen_AK = {s = d38 "yliolkainen"} ;
+--+ lin yliolkaisesti_AdvK = {s = c99 "yliolkaisesti"} ;
+lin yliolkaisuus_NK = {s = d40 "yliolkaisuus"} ;
+lin yliopistollinen_NK = {s = d38 "yliopistollinen"} ;
+lin ylioppiminen_NK = {s = d38 "ylioppiminen"} ;
+lin ylipursuava_NK = {s = d10 "ylipursuava"} ;
+lin ylipursuva_NK = {s = d10 "ylipursuva"} ;
+lin ylipa'a'nsa'_AdvK = {s = c99 "ylipäänsä"} ;
+lin ylipa'a'ta'a'n_AdvK = {s = c99 "ylipäätään"} ;
+lin ylirasittunut_NK = {s = d47 "ylirasittunut"} ;
+lin ylistella'_VK = {s = c67 "ylistellä"} ;
+lin ylistys_NK = {s = d39 "ylistys"} ;
+lin ylista'a'_VK = {s = c53 "ylistää"} ;
+lin ylisummaan_AdvK = {s = c99 "ylisummaan"} ;
+lin ylite_NK = {s = d48A "ylite"} ;
+lin ylitse_AdvK = {s = c99 "ylitse"} ;
+lin ylitsevuotava_NK = {s = d10 "ylitsevuotava"} ;
+lin ylittya'_VK = {s = c52A "ylittyä"} ;
+lin ylitta'ja'_NK = {s = d10 "ylittäjä"} ;
+lin ylitta'ma'to'n_NK = {s = d34A "ylittämätön"} ;
+lin ylitta'a'_VK = {s = c53A "ylittää"} ;
+lin ylitulvimissuoja_NK = {s = d10 "ylitulvimissuoja"} ;
+lin ylitys_NK = {s = d39 "ylitys"} ;
+--+ lin ylivoimaisesti_AdvK = {s = c99 "ylivoimaisesti"} ;
+lin ylio'_NK = {s = d03 "yliö"} ;
+lin ylka'_NK = {s = d10A "ylkä"} ;
+lin ylle_AdvK = {s = c99 "ylle"} ;
+lin yllin_kyllin_AdvK = {s = c99 "yllin kyllin"} ;
+lin yllyke_NK = {s = d48A "yllyke"} ;
+lin yllytin_NK = {s = d33A "yllytin"} ;
+lin yllytta'ja'_NK = {s = d10 "yllyttäjä"} ;
+lin yllytta'a'_VK = {s = c53A "yllyttää"} ;
+lin yllytys_NK = {s = d39 "yllytys"} ;
+lin ylla'_AdvK = {s = c99 "yllä"} ;
+lin ylla'kko'_NK = {s = d04A "ylläkkö"} ;
+lin ylla'ttya'_VK = {s = c52A "yllättyä"} ;
+lin ylla'tta'ja'_NK = {s = d10 "yllättäjä"} ;
+lin ylla'tta'vyys_NK = {s = d40 "yllättävyys"} ;
+lin ylla'tta'va'_AK = {s = d10 "yllättävä"} ;
+--+ lin ylla'tta'va'sti_AdvK = {s = c99 "yllättävästi"} ;
+lin ylla'tta'a'_VK = {s = c53A "yllättää"} ;
+lin ylla'tykseka's_NK = {s = d41A "yllätyksekäs"} ;
+lin ylla'tyksellinen_AK = {s = d38 "yllätyksellinen"} ;
+--+ lin ylla'tyksellisesti_AdvK = {s = c99 "yllätyksellisesti"} ;
+lin ylla'tyksellisyys_NK = {s = d40 "yllätyksellisyys"} ;
+lin ylla'tykseto'n_NK = {s = d34A "yllätyksetön"} ;
+lin ylla'tys_NK = {s = d39 "yllätys"} ;
+lin ylpeilla'_VK = {s = c67 "ylpeillä"} ;
+lin ylpeily_NK = {s = d02 "ylpeily"} ;
+lin ylpeys_NK = {s = d40 "ylpeys"} ;
+lin ylpea'_AK = {s = d15 "ylpeä"} ;
+--+ lin ylpea'sti_AdvK = {s = c99 "ylpeästi"} ;
+lin ylpistya'_VK = {s = c52 "ylpistyä"} ;
+lin ylpista'a'_VK = {s = c53 "ylpistää"} ;
+--+ lin yltio'pa'isesti_AdvK = {s = c99 "yltiöpäisesti"} ;
+lin yltio'pa'isyys_NK = {s = d40 "yltiöpäisyys"} ;
+lin yltya'_VK = {s = c52A "yltyä"} ;
+lin ylta'_AdvK = {s = c99 "yltä"} ;
+--+ lin ylta'kylla'isesti_AdvK = {s = c99 "yltäkylläisesti"} ;
+lin ylta'_pa'a'lta'_AdvK = {s = c99 "yltä päältä"} ;
+lin ylta'a'_VK = {s = c55A "yltää"} ;
+lin ylva's_AK = {s = d41 "ylväs"} ;
+lin ylva'stelija'_NK = {s = d12 "ylvästelijä"} ;
+lin ylva'stella'_VK = {s = c67 "ylvästellä"} ;
+lin ylva'stely_NK = {s = d02 "ylvästely"} ;
+lin ylva'ys_NK = {s = d40 "ylväys"} ;
+--+ lin ylva'a'sti_AdvK = {s = c99 "ylväästi"} ;
+lin yla'ika'raja_NK = {s = d09 "yläikäraja"} ;
+lin yla'kantissa_AdvK = {s = c99 "yläkantissa"} ;
+lin yla'kanttiin_AdvK = {s = c99 "yläkanttiin"} ;
+lin yla'nko'_NK = {s = d01A "ylänkö"} ;
+lin yla'nne_NK = {s = d48A "ylänne"} ;
+lin yla'raja_NK = {s = d09 "yläraja"} ;
+lin yla'va'_NK = {s = d10 "ylävä"} ;
+lin ylo's_AdvK = {s = c99 "ylös"} ;
+lin ylo'salaisin_AdvK = {s = c99 "ylösalaisin"} ;
+lin ylo'snouseminen_NK = {s = d38 "ylösnouseminen"} ;
+lin ylo'snousemus_NK = {s = d39 "ylösnousemus"} ;
+lin ylo'sotettu_NK = {s = d01A "ylösotettu"} ;
+lin ylo'ssuin_AdvK = {s = c99 "ylössuin"} ;
+lin ymmyrka'inen_NK = {s = d38 "ymmyrkäinen"} ;
+lin ymma'lle_AdvK = {s = c99 "ymmälle"} ;
+lin ymma'lleen_AdvK = {s = c99 "ymmälleen"} ;
+lin ymma'lla'_AdvK = {s = c99 "ymmällä"} ;
+lin ymma'lla'a'n_AdvK = {s = c99 "ymmällään"} ;
+lin ymma'rretta'vyys_NK = {s = d40 "ymmärrettävyys"} ;
+lin ymma'rretta'va'_AK = {s = d10 "ymmärrettävä"} ;
+--+ lin ymma'rretta'va'sti_AdvK = {s = c99 "ymmärrettävästi"} ;
+lin ymma'rryksellinen_NK = {s = d38 "ymmärryksellinen"} ;
+lin ymma'rrys_NK = {s = d39 "ymmärrys"} ;
+lin ymma'rteinen_NK = {s = d38 "ymmärteinen"} ;
+lin ymma'rteisyys_NK = {s = d40 "ymmärteisyys"} ;
+lin ymma'rta'mys_NK = {s = d39 "ymmärtämys"} ;
+lin ymma'rta'ma'tto'myys_NK = {s = d40 "ymmärtämättömyys"} ;
+lin ymma'rta'ma'tto'ma'sti_AdvK = {s = c99 "ymmärtämättömästi"} ;
+lin ymma'rta'ma'to'n_NK = {s = d34A "ymmärtämätön"} ;
+lin ymma'rta'va'_AK = {s = d10 "ymmärtävä"} ;
+lin ymma'rta'va'inen_AK = {s = d38 "ymmärtäväinen"} ;
+--+ lin ymma'rta'va'isesti_AdvK = {s = c99 "ymmärtäväisesti"} ;
+--+ lin ymma'rta'va'sti_AdvK = {s = c99 "ymmärtävästi"} ;
+lin ymma'rta'a'_VK = {s = c54A "ymmärtää"} ;
+lin ymppa'ys_NK = {s = d39 "ymppäys"} ;
+lin ympyria'inen_NK = {s = d38 "ympyriäinen"} ;
+lin ympyra'_NK = {s = d12 "ympyrä"} ;
+lin ympyro'ida'_VK = {s = c62 "ympyröidä"} ;
+lin ympyro'inti_NK = {s = d05A "ympyröinti"} ;
+lin ympa'ri_AdvK = {s = c99 "ympäri"} ;
+lin ympa'riinsa'_AdvK = {s = c99 "ympäriinsä"} ;
+lin ympa'rille_AdvK = {s = c99 "ympärille"} ;
+lin ympa'rilla'_AdvK = {s = c99 "ympärillä"} ;
+lin ympa'rilta'_AdvK = {s = c99 "ympäriltä"} ;
+lin ympa'risto'_NK = {s = d01 "ympäristö"} ;
+lin ympa'rys_NK = {s = d39 "ympärys"} ;
+lin ympa'rysta'_NK = {s = d09 "ympärystä"} ;
+lin ympa'ro'ida'_VK = {s = c62 "ympäröidä"} ;
+lin ympa'ro'inti_NK = {s = d05A "ympäröinti"} ;
+lin ympa'ta'_VK = {s = c73A "ympätä"} ;
+lin ynina'_NK = {s = d12 "yninä"} ;
+lin ynista'_VK = {s = c66 "ynistä"} ;
+lin ynna'_AdvK = {s = c99 "ynnä"} ;
+lin ynna'ta'_VK = {s = c73 "ynnätä"} ;
+lin ynna'ys_NK = {s = d39 "ynnäys"} ;
+lin ynseys_NK = {s = d40 "ynseys"} ;
+lin ynsea'_AK = {s = d15 "ynseä"} ;
+--+ lin ynsea'sti_AdvK = {s = c99 "ynseästi"} ;
+lin yna'hdys_NK = {s = d39 "ynähdys"} ;
+lin yna'hta'a'_VK = {s = c53A "ynähtää"} ;
+lin yritella'_VK = {s = c67A "yritellä"} ;
+lin yritelma'_NK = {s = d10 "yritelmä"} ;
+lin yrittelia'isyys_NK = {s = d40 "yritteliäisyys"} ;
+lin yrittelia's_AK = {s = d41 "yritteliäs"} ;
+--+ lin yrittelia'a'sti_AdvK = {s = c99 "yritteliäästi"} ;
+lin yritta'jyys_NK = {s = d40 "yrittäjyys"} ;
+lin yritta'ja'_NK = {s = d10 "yrittäjä"} ;
+lin yritta'ma'_NK = {s = d10 "yrittämä"} ;
+lin yritta'a'_VK = {s = c53A "yrittää"} ;
+lin yritys_NK = {s = d39 "yritys"} ;
+lin yrjo'_NK = {s = d01 "yrjö"} ;
+lin yrjo'tta'a'_VK = {s = c53A "yrjöttää"} ;
+lin yrjo'ta'_VK = {s = c74 "yrjötä"} ;
+lin yrmeys_NK = {s = d40 "yrmeys"} ;
+lin yrmea'_AK = {s = d15 "yrmeä"} ;
+--+ lin yrmea'sti_AdvK = {s = c99 "yrmeästi"} ;
+lin yrtti_NK = {s = d05A "yrtti"} ;
+lin ysi_NK = {s = d05 "ysi"} ;
+lin yskinta'_NK = {s = d09A "yskintä"} ;
+lin yskina'_NK = {s = d12 "yskinä"} ;
+lin yskiskella'_VK = {s = c67 "yskiskellä"} ;
+lin yskitta'a'_VK = {s = c53A "yskittää"} ;
+lin yskia'_VK = {s = c61 "yskiä"} ;
+lin yska'_NK = {s = d10 "yskä"} ;
+lin yska'hdella'_VK = {s = c67A "yskähdellä"} ;
+lin yska'hdys_NK = {s = d39 "yskähdys"} ;
+lin yska'hta'a'_VK = {s = c53A "yskähtää"} ;
+lin yska'inen_NK = {s = d38 "yskäinen"} ;
+lin yska'ista'_VK = {s = c66 "yskäistä"} ;
+lin yska'isy_NK = {s = d02 "yskäisy"} ;
+lin ysko's_NK = {s = d39 "yskös"} ;
+--? lin ysta'vykset_NK = {s = d39 "ystävykset"} ;
+lin ysta'vystya'_VK = {s = c52 "ystävystyä"} ;
+lin ysta'vyys_NK = {s = d40 "ystävyys"} ;
+lin ysta'va'_NK = {s = d10 "ystävä"} ;
+lin ysta'va'inen_NK = {s = d38 "ystäväinen"} ;
+lin ysta'va'llinen_AK = {s = d38 "ystävällinen"} ;
+--+ lin ysta'va'llisesti_AdvK = {s = c99 "ystävällisesti"} ;
+--+ lin ysta'va'llismielisesti_AdvK = {s = c99 "ystävällismielisesti"} ;
+lin ysta'va'llisyys_NK = {s = d40 "ystävällisyys"} ;
+lin ysta'va'ta'r_NK = {s = d32A "ystävätär"} ;
+lin YT_AdvK = {s = c99 "YT"} ;
+lin ytimekkyys_NK = {s = d40 "ytimekkyys"} ;
+--+ lin ytimekka'a'sti_AdvK = {s = c99 "ytimekkäästi"} ;
+lin ytimeka's_AK = {s = d41A "ytimekäs"} ;
+lin ytimenna'verta'ja'_NK = {s = d10 "ytimennävertäjä"} ;
+lin yty_NK = {s = d01A "yty"} ;
+lin yo'_NK = {s = d19 "yö"} ;
+lin yo'aika_NK = {s = d09A "yöaika"} ;
+lin yo'baari_NK = {s = d05 "yöbaari"} ;
+lin yo'jalassa_AdvK = {s = c99 "yöjalassa"} ;
+lin yo'jalkaan_AdvK = {s = c99 "yöjalkaan"} ;
+lin yo'k_AdvK = {s = c99 "yök"} ;
+lin yo'kka'ys_NK = {s = d39 "yökkäys"} ;
+lin yo'kko'_NK = {s = d01A "yökkö"} ;
+lin yo'kko'nen_NK = {s = d38 "yökkönen"} ;
+lin yo'ka'ta'_VK = {s = c73A "yökätä"} ;
+lin yo'ko'tta'a'_VK = {s = c53A "yököttää"} ;
+lin yo'lento_NK = {s = d01A "yölento"} ;
+lin yo'llinen_NK = {s = d38 "yöllinen"} ;
+lin yo'pukusillaan_AdvK = {s = c99 "yöpukusillaan"} ;
+lin yo'pukusilleen_AdvK = {s = c99 "yöpukusilleen"} ;
+lin yo'pyja'_NK = {s = d10 "yöpyjä"} ;
+lin yo'pya'_VK = {s = c52A "yöpyä"} ;
+lin yo'to'n_NK = {s = d34A "yötön"} ;
+lin yo'vilkka_NK = {s = d09A "yövilkka"} ;
+lin yo'vynta'_NK = {s = d09A "yövyntä"} ;
+lin zambo_NK = {s = d01 "zambo"} ;
+lin zen_NK = {s = d05 "zen"} ;
+lin zeniitti_NK = {s = d05A "zeniitti"} ;
+lin zeppeliini_NK = {s = d05 "zeppeliini"} ;
+lin zirkoni_NK = {s = d06 "zirkoni"} ;
+lin zirkonium_NK = {s = d05 "zirkonium"} ;
+lin zloty_NK = {s = d01 "zloty"} ;
+lin zombi_NK = {s = d05 "zombi"} ;
+lin zombie_NK = {s = d03 "zombie"} ;
+lin zoologi_NK = {s = d05 "zoologi"} ;
+lin zoologia_NK = {s = d12 "zoologia"} ;
+lin zoologinen_NK = {s = d38 "zoologinen"} ;
+lin zoomata_VK = {s = c73 "zoomata"} ;
+lin zoomaus_NK = {s = d39 "zoomaus"} ;
+lin zoomi_NK = {s = d05 "zoomi"} ;
+lin zoonoosi_NK = {s = d06 "zoonoosi"} ;
+lin zucchini_NK = {s = d06 "zucchini"} ;
+lin zulu_NK = {s = d01 "zulu"} ;
+lin _ngstro'm_NK = {s = d06 "ångström"} ;
+lin a'es_NK = {s = d41A "äes"} ;
+lin a'estys_NK = {s = d39 "äestys"} ;
+lin a'esta'a'_VK = {s = c53 "äestää"} ;
+lin a'hellys_NK = {s = d39 "ähellys"} ;
+lin a'helta'a'_VK = {s = c54A "äheltää"} ;
+lin a'hina'_NK = {s = d12 "ähinä"} ;
+lin a'hista'_VK = {s = c66 "ähistä"} ;
+lin a'hke_NK = {s = d48 "ähke"} ;
+lin a'hkina'_NK = {s = d12 "ähkinä"} ;
+lin a'hkia'_VK = {s = c61 "ähkiä"} ;
+lin a'hky_NK = {s = d01 "ähky"} ;
+lin a'hkya'_VK = {s = c52 "ähkyä"} ;
+lin a'hka'ista'_VK = {s = c66 "ähkäistä"} ;
+lin a'hka'isy_NK = {s = d02 "ähkäisy"} ;
+lin a'hka'a'_VK = {s = c78 "ähkää"} ;
+lin a'ha'kutti_AdvK = {s = c99 "ähäkutti"} ;
+lin a'ha'piti_AdvK = {s = c99 "ähäpiti"} ;
+lin a'idillinen_AK = {s = d38 "äidillinen"} ;
+--+ lin a'idillisesti_AdvK = {s = c99 "äidillisesti"} ;
+lin a'idillisyys_NK = {s = d40 "äidillisyys"} ;
+lin a'iditella'_VK = {s = c67A "äiditellä"} ;
+lin a'idito'n_NK = {s = d34A "äiditön"} ;
+lin a'ija'_NK = {s = d10 "äijä"} ;
+lin a'imistella'_VK = {s = c67 "äimistellä"} ;
+lin a'imistya'_VK = {s = c52 "äimistyä"} ;
+lin a'ima'_1_NK = {s = d10 "äimä"} ;
+lin a'ima'_2_NK = {s = d10 "äimä"} ;
+lin a'iska'_NK = {s = d10 "äiskä"} ;
+lin a'itelyys_NK = {s = d40 "äitelyys"} ;
+lin a'itela'_AK = {s = d10 "äitelä"} ;
+--+ lin a'itela'sti_AdvK = {s = c99 "äitelästi"} ;
+lin a'iti_NK = {s = d05A "äiti"} ;
+lin a'itiys_NK = {s = d40 "äitiys"} ;
+lin a'itya'_VK = {s = c52A "äityä"} ;
+lin a'keilla'_VK = {s = c67 "äkeillä"} ;
+lin a'keissa'a'n_AdvK = {s = c99 "äkeissään"} ;
+lin a'keys_NK = {s = d40 "äkeys"} ;
+lin a'kea'_AK = {s = d15 "äkeä"} ;
+--+ lin a'kea'sti_AdvK = {s = c99 "äkeästi"} ;
+lin a'kikselta'_AdvK = {s = c99 "äkikseltä"} ;
+lin a'kikselta'a'n_AdvK = {s = c99 "äkikseltään"} ;
+lin a'killinen_AK = {s = d38 "äkillinen"} ;
+--+ lin a'killisesti_AdvK = {s = c99 "äkillisesti"} ;
+lin a'killisyys_NK = {s = d40 "äkillisyys"} ;
+lin a'kimmin_AdvK = {s = c99 "äkimmin"} ;
+lin a'kimmiten_AdvK = {s = c99 "äkimmiten"} ;
+lin a'kisti_AdvK = {s = c99 "äkisti"} ;
+lin a'kkiarvaamatta_AdvK = {s = c99 "äkkiarvaamatta"} ;
+lin a'kkina'inen_NK = {s = d38 "äkkinäinen"} ;
+lin a'kkipikaisuus_NK = {s = d40 "äkkipikaisuus"} ;
+lin a'kkipa'a'ta'_AdvK = {s = c99 "äkkipäätä"} ;
+lin a'kkiselta'_AdvK = {s = c99 "äkkiseltä"} ;
+lin a'kkiselta'a'n_AdvK = {s = c99 "äkkiseltään"} ;
+lin a'kkia'_AdvK = {s = c99 "äkkiä"} ;
+lin a'kseerata_VK = {s = c73 "äkseerata"} ;
+lin a'kseeraus_NK = {s = d39 "äkseeraus"} ;
+lin a'ksiisi_NK = {s = d06 "äksiisi"} ;
+lin a'ksy_AK = {s = d01 "äksy"} ;
+lin a'ksyilla'_VK = {s = c67 "äksyillä"} ;
+lin a'ksyily_NK = {s = d02 "äksyily"} ;
+--+ lin a'ksysti_AdvK = {s = c99 "äksysti"} ;
+lin a'ksyys_NK = {s = d40 "äksyys"} ;
+lin a'ka'illa'_VK = {s = c67 "äkäillä"} ;
+lin a'ka'ily_NK = {s = d02 "äkäily"} ;
+lin a'ka'inen_AK = {s = d38 "äkäinen"} ;
+--+ lin a'ka'isesti_AdvK = {s = c99 "äkäisesti"} ;
+lin a'ka'isyys_NK = {s = d40 "äkäisyys"} ;
+lin a'ka'myksissa'a'n_AdvK = {s = c99 "äkämyksissään"} ;
+lin a'ka'mys_NK = {s = d39 "äkämys"} ;
+lin a'ka'mystytta'a'_VK = {s = c53A "äkämystyttää"} ;
+lin a'ka'mystya'_VK = {s = c52 "äkämystyä"} ;
+lin a'ka'ma'_NK = {s = d10 "äkämä"} ;
+lin a'ka'ta'_VK = {s = c73A "äkätä"} ;
+lin a'ka'a'ntya'_VK = {s = c52A "äkääntyä"} ;
+lin a'lina'_NK = {s = d12 "älinä"} ;
+lin a'lista'_VK = {s = c66 "älistä"} ;
+lin a'lka'a'_AdvK = {s = c99 "älkää"} ;
+lin a'lka'a'mme_AdvK = {s = c99 "älkäämme"} ;
+lin a'lko'o'n_AdvK = {s = c99 "älköön"} ;
+lin a'lko'o't_AdvK = {s = c99 "älkööt"} ;
+lin a'lli_NK = {s = d05 "älli"} ;
+lin a'llika'lla'_AdvK = {s = c99 "ällikällä"} ;
+lin a'llistella'_VK = {s = c67 "ällistellä"} ;
+lin a'llistely_NK = {s = d02 "ällistely"} ;
+lin a'llistyksissa'a'n_AdvK = {s = c99 "ällistyksissään"} ;
+lin a'llistys_NK = {s = d39 "ällistys"} ;
+lin a'llistytta'a'_VK = {s = c53A "ällistyttää"} ;
+lin a'llistya'_VK = {s = c52 "ällistyä"} ;
+lin a'llo'tta'a'_VK = {s = c53A "ällöttää"} ;
+lin a'llo'tys_NK = {s = d39 "ällötys"} ;
+lin a'ly_NK = {s = d01 "äly"} ;
+lin a'lyinen_NK = {s = d38 "älyinen"} ;
+lin a'lykkyys_NK = {s = d40 "älykkyys"} ;
+lin a'lykko'_NK = {s = d04A "älykkö"} ;
+lin a'lyka's_NK = {s = d41A "älykäs"} ;
+lin a'lyllinen_AK = {s = d38 "älyllinen"} ;
+--+ lin a'lyllisesti_AdvK = {s = c99 "älyllisesti"} ;
+lin a'lyllistya'_VK = {s = c52 "älyllistyä"} ;
+lin a'lyllista'a'_VK = {s = c53 "älyllistää"} ;
+lin a'lyllisyys_NK = {s = d40 "älyllisyys"} ;
+lin a'lymysto'_NK = {s = d01 "älymystö"} ;
+--+ lin a'lypera'isesti_AdvK = {s = c99 "älyperäisesti"} ;
+lin a'lytta'a'_VK = {s = c53A "älyttää"} ;
+lin a'lytto'myys_NK = {s = d40 "älyttömyys"} ;
+lin a'lytto'ma'sti_AdvK = {s = c99 "älyttömästi"} ;
+lin a'lytys_NK = {s = d39 "älytys"} ;
+lin a'lyta'_VK = {s = c74 "älytä"} ;
+lin a'lyto'n_NK = {s = d34A "älytön"} ;
+lin a'la'_AdvK = {s = c99 "älä"} ;
+lin a'la'hdys_NK = {s = d39 "älähdys"} ;
+lin a'la'hta'a'_VK = {s = c53A "älähtää"} ;
+lin a'la'kka'_NK = {s = d14A "äläkkä"} ;
+lin a'mma'_NK = {s = d10 "ämmä"} ;
+lin a'mpa'reitta'in_AdvK = {s = c99 "ämpäreittäin"} ;
+lin a'mpa'ri_NK = {s = d06 "ämpäri"} ;
+lin a'mpa'rillinen_NK = {s = d38 "ämpärillinen"} ;
+lin a'myri_NK = {s = d06 "ämyri"} ;
+lin a'ngelma'_NK = {s = d10 "ängelmä"} ;
+lin a'ngeta'_VK = {s = c74A "ängetä"} ;
+lin a'nkka'_NK = {s = d10A "änkkä"} ;
+lin a'nkyra'_NK = {s = d12 "änkyrä"} ;
+lin a'nkytta'ja'_NK = {s = d10 "änkyttäjä"} ;
+lin a'nkytta'a'_VK = {s = c53A "änkyttää"} ;
+lin a'nkytys_NK = {s = d39 "änkytys"} ;
+lin a'nka'ta'_VK = {s = c73A "änkätä"} ;
+lin _O_AdvK = {s = c99 "ÄO"} ;
+lin a'pa're_NK = {s = d48 "äpäre"} ;
+lin a'pa'rikko'_NK = {s = d04A "äpärikkö"} ;
+lin a'pa'ra'_NK = {s = d11 "äpärä"} ;
+lin a'reissa'a'n_AdvK = {s = c99 "äreissään"} ;
+lin a'reys_NK = {s = d40 "äreys"} ;
+lin a'rea'_AK = {s = d15 "äreä"} ;
+--+ lin a'rea'sti_AdvK = {s = c99 "äreästi"} ;
+lin a'rhennella'_VK = {s = c67A "ärhennellä"} ;
+lin a'rhentely_NK = {s = d02 "ärhentely"} ;
+lin a'rha'kkyys_NK = {s = d40 "ärhäkkyys"} ;
+lin a'rha'kka'_NK = {s = d14A "ärhäkkä"} ;
+lin a'rha'ka's_NK = {s = d41A "ärhäkäs"} ;
+lin a'rha'ka'sti_AdvK = {s = c99 "ärhäkästi"} ;
+lin a'rina'_NK = {s = d12 "ärinä"} ;
+lin a'rista'_VK = {s = c66 "äristä"} ;
+lin a'rjy_NK = {s = d01 "ärjy"} ;
+lin a'rjynta'_NK = {s = d09A "ärjyntä"} ;
+lin a'rjya'_VK = {s = c52 "ärjyä"} ;
+lin a'rja'hdys_NK = {s = d39 "ärjähdys"} ;
+lin a'rja'hta'a'_VK = {s = c53A "ärjähtää"} ;
+lin a'rja'ista'_VK = {s = c66 "ärjäistä"} ;
+lin a'rja'isy_NK = {s = d02 "ärjäisy"} ;
+lin a'rra'vika_NK = {s = d09A "ärrävika"} ;
+lin a'rsyke_NK = {s = d48A "ärsyke"} ;
+lin a'rsyttya'_VK = {s = c52A "ärsyttyä"} ;
+lin a'rsytta'a'_VK = {s = c53A "ärsyttää"} ;
+lin a'rsytys_NK = {s = d39 "ärsytys"} ;
+lin a'rsyyntya'_VK = {s = c52A "ärsyyntyä"} ;
+lin a'rtyinen_NK = {s = d38 "ärtyinen"} ;
+lin a'rtyisyys_NK = {s = d40 "ärtyisyys"} ;
+lin a'rtyisa'_AK = {s = d10 "ärtyisä"} ;
+--+ lin a'rtyisa'sti_AdvK = {s = c99 "ärtyisästi"} ;
+lin a'rtymys_NK = {s = d39 "ärtymys"} ;
+lin a'rtyma'_NK = {s = d10 "ärtymä"} ;
+lin a'rtyneisyys_NK = {s = d40 "ärtyneisyys"} ;
+lin a'rtyvyys_NK = {s = d40 "ärtyvyys"} ;
+lin a'rtya'_VK = {s = c52A "ärtyä"} ;
+lin a'ra'hdys_NK = {s = d39 "ärähdys"} ;
+lin a'ra'hta'a'_VK = {s = c53A "ärähtää"} ;
+lin a'skeinen_NK = {s = d38 "äskeinen"} ;
+lin a'sken_AdvK = {s = c99 "äsken"} ;
+lin a'sketta'in_AdvK = {s = c99 "äskettäin"} ;
+lin a'sketta'inen_NK = {s = d38 "äskettäinen"} ;
+lin a'ssa'_1_NK = {s = d10 "ässä"} ;
+lin a'ssa'_2_NK = {s = d10 "ässä"} ;
+lin a'veria'isyys_NK = {s = d40 "äveriäisyys"} ;
+lin a'veria's_NK = {s = d41 "äveriäs"} ;
+lin a'verio'itya'_VK = {s = c52A "äveriöityä"} ;
+lin a'yri_NK = {s = d05 "äyri"} ;
+lin a'yria'inen_NK = {s = d38 "äyriäinen"} ;
+lin a'yra'mo'inen_NK = {s = d38 "äyrämöinen"} ;
+lin a'yra's_NK = {s = d41 "äyräs"} ;
+lin a'yskinta'_NK = {s = d09A "äyskintä"} ;
+lin a'yskia'_VK = {s = c61 "äyskiä"} ;
+lin a'yska'ista'_VK = {s = c66 "äyskäistä"} ;
+lin a'yska'ri_NK = {s = d06 "äyskäri"} ;
+lin a'yska'ro'ida'_VK = {s = c62 "äyskäröidä"} ;
+lin a'yska'ro'inti_NK = {s = d05A "äyskäröinti"} ;
+lin a'a'lio'_NK = {s = d03 "ääliö"} ;
+lin a'a'lio'ma'inen_AK = {s = d38 "ääliömäinen"} ;
+--+ lin a'a'lio'ma'isesti_AdvK = {s = c99 "ääliömäisesti"} ;
+lin a'a'lio'ma'isyys_NK = {s = d40 "ääliömäisyys"} ;
+lin a'a'neen_AdvK = {s = c99 "ääneen"} ;
+lin a'a'nekkyys_NK = {s = d40 "äänekkyys"} ;
+--+ lin a'a'nekka'a'sti_AdvK = {s = c99 "äänekkäästi"} ;
+lin a'a'neka's_AK = {s = d41A "äänekäs"} ;
+lin a'a'nellinen_NK = {s = d38 "äänellinen"} ;
+--+ lin a'a'nenpita'va'sti_AdvK = {s = c99 "äänenpitävästi"} ;
+lin a'a'nes_NK = {s = d39 "äänes"} ;
+lin a'a'nestys_NK = {s = d39 "äänestys"} ;
+lin a'a'nesta'ja'_NK = {s = d10 "äänestäjä"} ;
+lin a'a'nesta'a'_VK = {s = c53 "äänestää"} ;
+lin a'a'neti_AdvK = {s = c99 "ääneti"} ;
+lin a'a'netto'myys_NK = {s = d40 "äänettömyys"} ;
+lin a'a'netto'ma'sti_AdvK = {s = c99 "äänettömästi"} ;
+lin a'a'neto'n_NK = {s = d34A "äänetön"} ;
+lin a'a'ni_NK = {s = d26 "ääni"} ;
+lin a'a'ninen_AK = {s = d38 "ääninen"} ;
+--+ lin a'a'nisesti_AdvK = {s = c99 "äänisesti"} ;
+lin a'a'nisyys_NK = {s = d40 "äänisyys"} ;
+lin a'a'nite_NK = {s = d48A "äänite"} ;
+lin a'a'nitta'ja'_NK = {s = d10 "äänittäjä"} ;
+lin a'a'nitta'mo'_NK = {s = d02 "äänittämö"} ;
+lin a'a'nitta'a'_VK = {s = c53A "äänittää"} ;
+lin a'a'nitys_NK = {s = d39 "äänitys"} ;
+lin a'a'nne_NK = {s = d48A "äänne"} ;
+lin a'a'nnella'_VK = {s = c67A "äännellä"} ;
+lin a'a'nna'hdys_NK = {s = d39 "äännähdys"} ;
+lin a'a'nna'hta'a'_VK = {s = c53A "äännähtää"} ;
+lin a'a'nteellinen_NK = {s = d38 "äänteellinen"} ;
+lin a'a'ntely_NK = {s = d02 "ääntely"} ;
+lin a'a'ntio'_NK = {s = d03 "ääntiö"} ;
+lin a'a'ntya'_VK = {s = c52A "ääntyä"} ;
+lin a'a'nta'mys_NK = {s = d39 "ääntämys"} ;
+lin a'a'nta'a'_VK = {s = c54A "ääntää"} ;
+lin a'a'nto'_NK = {s = d01A "ääntö"} ;
+lin a'a'nto'inen_NK = {s = d38 "ääntöinen"} ;
+lin a'a'reen_AdvK = {s = c99 "ääreen"} ;
+lin a'a'reinen_NK = {s = d38 "ääreinen"} ;
+lin a'a'relle_AdvK = {s = c99 "äärelle"} ;
+lin a'a'rellinen_NK = {s = d38 "äärellinen"} ;
+lin a'a'rellisyys_NK = {s = d40 "äärellisyys"} ;
+lin a'a'rella'_AdvK = {s = c99 "äärellä"} ;
+lin a'a'relta'_AdvK = {s = c99 "ääreltä"} ;
+lin a'a'ressa'_AdvK = {s = c99 "ääressä"} ;
+lin a'a'resta'_AdvK = {s = c99 "äärestä"} ;
+lin a'a'retto'myys_NK = {s = d40 "äärettömyys"} ;
+lin a'a'retto'ma'sti_AdvK = {s = c99 "äärettömästi"} ;
+lin a'a'reto'n_NK = {s = d34A "ääretön"} ;
+lin a'a'ri_NK = {s = d26 "ääri"} ;
+lin a'a'rimmilleen_AdvK = {s = c99 "äärimmilleen"} ;
+lin a'a'rimmilla'a'n_AdvK = {s = c99 "äärimmillään"} ;
+lin a'a'rimma'inen_NK = {s = d38 "äärimmäinen"} ;
+lin a'a'rimma'isyys_NK = {s = d40 "äärimmäisyys"} ;
+lin o'deema_NK = {s = d11 "ödeema"} ;
+lin o'inen_NK = {s = d38 "öinen"} ;
+lin o'isin_AdvK = {s = c99 "öisin"} ;
+lin o'ky_AdvK = {s = c99 "öky"} ;
+lin o'lina'_NK = {s = d12 "ölinä"} ;
+lin o'lista'_VK = {s = c66 "ölistä"} ;
+lin o'ljy_NK = {s = d01 "öljy"} ;
+lin o'ljyinen_NK = {s = d38 "öljyinen"} ;
+lin o'ljyma'inen_NK = {s = d38 "öljymäinen"} ;
+lin o'ljyttya'_VK = {s = c52A "öljyttyä"} ;
+lin o'ljyta'_VK = {s = c74 "öljytä"} ;
+lin o'ljyva'rimaalaus_NK = {s = d39 "öljyvärimaalaus"} ;
+lin o'ljyyntya'_VK = {s = c52A "öljyyntyä"} ;
+lin o'rina'_NK = {s = d12 "örinä"} ;
+lin o'rista'_VK = {s = c66 "öristä"} ;
+lin o'ra'hdys_NK = {s = d39 "örähdys"} ;
+lin o'ra'hta'a'_VK = {s = c53A "örähtää"} ;
+lin o'to'kka'_NK = {s = d14A "ötökkä"} ;
+lin o'ykka'ri_NK = {s = d06 "öykkäri"} ;
+lin o'ykka'rima'inen_AK = {s = d38 "öykkärimäinen"} ;
+--+ lin o'ykka'rima'isesti_AdvK = {s = c99 "öykkärimäisesti"} ;
+lin o'ykka'rima'isyys_NK = {s = d40 "öykkärimäisyys"} ;
+lin o'ykka'ro'ida'_VK = {s = c62 "öykkäröidä"} ;
+lin o'ykka'ro'inti_NK = {s = d05A "öykkäröinti"} ;
+lin o'yla'tti_NK = {s = d05A "öylätti"} ;
+}
diff --git a/lib/src/finnish/DictFinAbs.gf b/lib/src/finnish/DictFinAbs.gf
new file mode 100644
--- /dev/null
+++ b/lib/src/finnish/DictFinAbs.gf
@@ -0,0 +1,42049 @@
+abstract DictFinAbs = {
+cat NK ; AK ; VK ; AdvK ;
+
+fun aakkonen_NK : NK ;
+fun aakkosellinen_AK : AK ;
+--+ fun aakkosellisesti_AdvK : AdvK ;
+fun aakkosellisuus_NK : NK ;
+fun aakkosittain_AdvK : AdvK ;
+fun aakkostaa_VK : VK ;
+fun aakkosto_NK : NK ;
+fun aakkostus_NK : NK ;
+fun aalloittain_AdvK : AdvK ;
+fun aalloittainen_NK : NK ;
+fun aalloittaisuus_NK : NK ;
+fun aallokas_NK : NK ;
+fun aallokko_NK : NK ;
+fun aallota_VK : VK ;
+fun aallotar_NK : NK ;
+fun aallottaa_VK : VK ;
+fun aallotus_NK : NK ;
+fun aaloe_NK : NK ;
+fun aalto_NK : NK ;
+fun aaltoilla_VK : VK ;
+fun aaltoilu_NK : NK ;
+fun aaltoinen_NK : NK ;
+fun aamen_NK : NK ;
+fun aamiainen_NK : NK ;
+fun aamu_NK : NK ;
+fun aamuinen_NK : NK ;
+fun aamuisin_AdvK : AdvK ;
+fun aamullinen_NK : NK ;
+fun aamusella_AdvK : AdvK ;
+fun aamutuimaan_AdvK : AdvK ;
+fun aapa_NK : NK ;
+fun aapinen_NK : NK ;
+fun aaprotti_NK : NK ;
+fun aari_NK : NK ;
+fun aaria_NK : NK ;
+fun aarnio_1_NK : NK ;
+fun aarnio_2_NK : NK ;
+fun aarpora_NK : NK ;
+fun aarre_NK : NK ;
+fun aarteisto_NK : NK ;
+fun aasi_NK : NK ;
+--+ fun aasimaisesti_AdvK : AdvK ;
+fun aasimaisuus_NK : NK ;
+fun aasinpotku_NK : NK ;
+fun aatami_NK : NK ;
+fun aate_NK : NK ;
+fun aateli_NK : NK ;
+fun aatelinen_NK : NK ;
+fun aatelisto_NK : NK ;
+fun aatelisuus_NK : NK ;
+fun aateliton_NK : NK ;
+fun aateloida_VK : VK ;
+fun aatelointi_NK : NK ;
+fun aateluus_NK : NK ;
+fun aatos_NK : NK ;
+fun aatra_NK : NK ;
+fun aatteellinen_AK : AK ;
+--+ fun aatteellisesti_AdvK : AdvK ;
+fun aatteellisuus_NK : NK ;
+fun aatteinen_NK : NK ;
+fun aatto_NK : NK ;
+fun aava_NK : NK ;
+fun aave_NK : NK ;
+--+ fun aavemaisesti_AdvK : AdvK ;
+fun aavemaisuus_NK : NK ;
+fun aavikko_NK : NK ;
+fun aavikoitua_VK : VK ;
+fun aavistaa_VK : VK ;
+fun aavistamaton_NK : NK ;
+fun aavistella_VK : VK ;
+fun aavistus_NK : NK ;
+fun abatsi_NK : NK ;
+fun abbedissa_NK : NK ;
+fun abessiivi_NK : NK ;
+fun abi_NK : NK ;
+fun abiturientti_NK : NK ;
+fun ablatiivi_NK : NK ;
+fun abnormi_NK : NK ;
+fun abnormius_NK : NK ;
+fun abo_NK : NK ;
+fun aboriginaali_NK : NK ;
+fun abortoida_VK : VK ;
+fun abortointi_NK : NK ;
+fun abortti_NK : NK ;
+fun abrakadabra_NK : NK ;
+fun absessi_NK : NK ;
+fun absintti_NK : NK ;
+fun abskissa_NK : NK ;
+fun absolutismi_NK : NK ;
+fun absolutisti_NK : NK ;
+fun absoluutti_NK : NK ;
+fun absoluuttinen_AK : AK ;
+--+ fun absoluuttisesti_AdvK : AdvK ;
+fun absoluuttisuus_NK : NK ;
+fun absorboida_VK : VK ;
+fun absorbointi_NK : NK ;
+fun absorboitua_VK : VK ;
+fun absorptio_NK : NK ;
+fun abstinenssi_NK : NK ;
+fun abstrahoida_VK : VK ;
+fun abstrahointi_NK : NK ;
+fun abstrahoitua_VK : VK ;
+fun abstrakti_AK : AK ;
+fun abstraktinen_AK : AK ;
+fun abstraktio_NK : NK ;
+--+ fun abstraktisesti_AdvK : AdvK ;
+fun abstraktistaa_VK : VK ;
+--+ fun abstraktisti_AdvK : AdvK ;
+fun abstraktistua_VK : VK ;
+fun abstraktisuus_NK : NK ;
+fun abstraktius_NK : NK ;
+fun absurdi_AK : AK ;
+--+ fun absurdisti_AdvK : AdvK ;
+fun absurdius_NK : NK ;
+fun adagio_NK : NK ;
+fun adaptaatio_NK : NK ;
+fun adapteri_NK : NK ;
+fun adaptoida_VK : VK ;
+fun adaptointi_NK : NK ;
+fun adaptoitua_VK : VK ;
+fun addikti_NK : NK ;
+fun addiktio_NK : NK ;
+fun adekvaatisti_AdvK : AdvK ;
+fun adekvaatti_NK : NK ;
+fun adekvaattius_NK : NK ;
+fun adenooma_NK : NK ;
+fun adessiivi_NK : NK ;
+fun adheesio_NK : NK ;
+fun adjektiivi_NK : NK ;
+fun adjektiivinen_AK : AK ;
+--+ fun adjektiivisesti_AdvK : AdvK ;
+fun adjektiivisuus_NK : NK ;
+fun adjutantti_NK : NK ;
+fun adonis_NK : NK ;
+fun adoptio_NK : NK ;
+fun adoptoida_VK : VK ;
+fun adoptointi_NK : NK ;
+fun adrenaliini_NK : NK ;
+fun adressi_NK : NK ;
+fun adsorboida_VK : VK ;
+fun adsorbointi_NK : NK ;
+fun adsorboitua_VK : VK ;
+fun adsorptio_NK : NK ;
+fun adventismi_NK : NK ;
+fun adventisti_NK : NK ;
+fun adventti_NK : NK ;
+fun adventtiaika_NK : NK ;
+fun adverbi_NK : NK ;
+fun adverbiaali_NK : NK ;
+fun adverbiaalinen_AK : AK ;
+--+ fun adverbiaalisesti_AdvK : AdvK ;
+fun adverbiaalisuus_NK : NK ;
+fun adverbinen_AK : AK ;
+--+ fun adverbisesti_AdvK : AdvK ;
+fun adverbisuus_NK : NK ;
+fun adversatiivinen_AK : AK ;
+--+ fun adversatiivisesti_AdvK : AdvK ;
+fun adversatiivisuus_NK : NK ;
+fun aerobic_NK : NK ;
+fun aerobikata_VK : VK ;
+fun aerobikkaaja_NK : NK ;
+fun aerobikkaus_NK : NK ;
+fun aerobikki_NK : NK ;
+fun aerobinen_NK : NK ;
+fun aerobiologia_NK : NK ;
+fun aerobiologinen_NK : NK ;
+fun aerodynaaminen_NK : NK ;
+fun aerodynamiikka_NK : NK ;
+fun aerosoli_NK : NK ;
+fun afaatikko_NK : NK ;
+fun afaattinen_NK : NK ;
+fun afasia_NK : NK ;
+fun affekti_NK : NK ;
+fun affektiivinen_AK : AK ;
+--+ fun affektiivisesti_AdvK : AdvK ;
+fun affektiivisuus_NK : NK ;
+fun affektinen_AK : AK ;
+--+ fun affektisesti_AdvK : AdvK ;
+fun affektisuus_NK : NK ;
+fun affisio_NK : NK ;
+fun affisioida_VK : VK ;
+fun afgaani_NK : NK ;
+fun aforismi_NK : NK ;
+fun aforistinen_NK : NK ;
+fun afrikaans_NK : NK ;
+fun afrikandi_NK : NK ;
+fun afrikkalainen_NK : NK ;
+fun afrikkalaisuus_NK : NK ;
+fun afro_NK : NK ;
+fun afta_NK : NK ;
+fun afa'a'ri_NK : NK ;
+fun agaatti_NK : NK ;
+fun agaave_NK : NK ;
+fun agar_NK : NK ;
+fun agar_agar_NK : NK ;
+fun agenda_NK : NK ;
+fun agentti_NK : NK ;
+fun agentuuri_NK : NK ;
+fun aggregaatti_NK : NK ;
+fun aggressiivinen_AK : AK ;
+--+ fun aggressiivisesti_AdvK : AdvK ;
+fun aggressiivisuus_NK : NK ;
+fun aggressio_NK : NK ;
+fun agitaatio_NK : NK ;
+fun agitaattori_NK : NK ;
+fun agitatorinen_NK : NK ;
+fun agitoida_VK : VK ;
+fun agitointi_NK : NK ;
+fun agnostikko_NK : NK ;
+fun agnostinen_AK : AK ;
+--+ fun agnostisesti_AdvK : AdvK ;
+fun agnostisismi_NK : NK ;
+fun agnostisuus_NK : NK ;
+fun agorafobia_NK : NK ;
+fun agraarinen_NK : NK ;
+fun agraarisuus_NK : NK ;
+fun agrologi_NK : NK ;
+fun agronomi_NK : NK ;
+fun agronomia_NK : NK ;
+fun ah_AdvK : AdvK ;
+fun ahaa_AdvK : AdvK ;
+fun ahava_NK : NK ;
+fun ahavoittaa_VK : VK ;
+fun ahavoitua_VK : VK ;
+fun ahdas_NK : NK ;
+--+ fun ahdasmielisesti_AdvK : AdvK ;
+--+ fun ahdasna'ko'isesti_AdvK : AdvK ;
+--+ fun ahdasrajaisesti_AdvK : AdvK ;
+fun ahdasrajaisuus_NK : NK ;
+fun ahdata_VK : VK ;
+fun ahde_NK : NK ;
+fun ahdin_NK : NK ;
+fun ahdinko_NK : NK ;
+fun ahdistaa_VK : VK ;
+fun ahdistaja_NK : NK ;
+fun ahdistelija_NK : NK ;
+fun ahdistella_VK : VK ;
+fun ahdistelu_NK : NK ;
+fun ahdistua_VK : VK ;
+--+ fun ahdistuneesti_AdvK : AdvK ;
+fun ahdistuneisuus_NK : NK ;
+fun ahdistunut_AK : AK ;
+fun ahdistus_NK : NK ;
+fun aherrus_NK : NK ;
+fun ahertaa_VK : VK ;
+fun ahertaja_NK : NK ;
+fun ahjo_NK : NK ;
+fun ahkera_AK : AK ;
+fun ahkeraan_AdvK : AdvK ;
+fun ahkeraliisa_NK : NK ;
+--+ fun ahkerasti_AdvK : AdvK ;
+fun ahkeroida_VK : VK ;
+fun ahkerointi_NK : NK ;
+fun ahkeruus_NK : NK ;
+fun ahkio_NK : NK ;
+fun ahma_NK : NK ;
+fun ahmaista_VK : VK ;
+fun ahmaisu_NK : NK ;
+fun ahmatti_NK : NK ;
+fun ahmia_VK : VK ;
+fun ahminta_NK : NK ;
+--+ fun ahnaasti_AdvK : AdvK ;
+fun ahnas_AK : AK ;
+fun ahnaus_NK : NK ;
+fun ahne_AK : AK ;
+--+ fun ahneesti_AdvK : AdvK ;
+fun ahnehdinta_NK : NK ;
+fun ahnehtia_VK : VK ;
+fun ahnehtija_NK : NK ;
+fun ahneus_NK : NK ;
+fun aho_NK : NK ;
+fun ahrain_NK : NK ;
+fun ahtaa_VK : VK ;
+fun ahtaaja_NK : NK ;
+fun ahtaalla_AdvK : AdvK ;
+fun ahtaalle_AdvK : AdvK ;
+fun ahtaasti_AdvK : AdvK ;
+fun ahtauma_NK : NK ;
+fun ahtaus_1_NK : NK ;
+fun ahtaus_2_NK : NK ;
+fun ahtauttaa_1_VK : VK ;
+fun ahtauttaa_2_VK : VK ;
+fun ahtautua_VK : VK ;
+fun ahtautuma_NK : NK ;
+fun ahteri_NK : NK ;
+fun Ahti_NK : NK ;
+fun ahti_NK : NK ;
+fun ahtoutua_VK : VK ;
+fun ahven_NK : NK ;
+fun ai_AdvK : AdvK ;
+fun aidanne_NK : NK ;
+fun aidas_NK : NK ;
+fun aidata_VK : VK ;
+fun aidoittaa_VK : VK ;
+fun aidosti_AdvK : AdvK ;
+fun AIDS_NK : NK ;
+fun aie_NK : NK ;
+fun aiemmin_AdvK : AdvK ;
+fun aiempi_NK : NK ;
+fun aiennus_NK : NK ;
+fun aientaa_VK : VK ;
+fun aihe_NK : NK ;
+fun aiheellinen_AK : AK ;
+--+ fun aiheellisesti_AdvK : AdvK ;
+fun aiheellistaa_VK : VK ;
+fun aiheellistua_VK : VK ;
+fun aiheellisuus_NK : NK ;
+fun aiheeton_NK : NK ;
+fun aiheettomasti_AdvK : AdvK ;
+fun aiheettomuus_NK : NK ;
+fun aiheinen_NK : NK ;
+fun aihelma_NK : NK ;
+fun aiheuttaa_VK : VK ;
+fun aiheuttaja_NK : NK ;
+fun aiheutua_VK : VK ;
+fun aiheutus_NK : NK ;
+fun aihio_NK : NK ;
+fun aijai_AdvK : AdvK ;
+fun aika_1_NK : NK ;
+fun aika_2_AdvK : AdvK ;
+fun aikaansaannos_NK : NK ;
+fun aikaansaapa_NK : NK ;
+fun aikaansaava_NK : NK ;
+fun aikailla_VK : VK ;
+fun aikailu_NK : NK ;
+fun aikainen_NK : NK ;
+fun aikaisemmin_AdvK : AdvK ;
+fun aikaisin_AdvK : AdvK ;
+fun aikaisintaan_AdvK : AdvK ;
+fun aikaistaa_VK : VK ;
+fun aikaistua_VK : VK ;
+fun aikaistus_NK : NK ;
+fun aikaisuus_NK : NK ;
+fun aikanaan_AdvK : AdvK ;
+fun aikansa_AdvK : AdvK ;
+fun aikatauluttaa_VK : VK ;
+fun aikauttaa_VK : VK ;
+fun aikautus_NK : NK ;
+fun aikido_NK : NK ;
+fun aikoa_VK : VK ;
+fun aikoinaan_AdvK : AdvK ;
+fun aikojaan_AdvK : AdvK ;
+fun aikomus_NK : NK ;
+fun aikuinen_NK : NK ;
+fun aikuistua_VK : VK ;
+fun aikuisuus_NK : NK ;
+fun ailahdella_VK : VK ;
+fun ailahdus_NK : NK ;
+fun ailahtaa_VK : VK ;
+fun ailahtelu_NK : NK ;
+fun ailakki_NK : NK ;
+fun aimo_AdvK : AdvK ;
+fun aina_1_AdvK : AdvK ;
+fun aina_2_NK : NK ;
+fun ainainen_NK : NK ;
+fun ainaiseksi_AdvK : AdvK ;
+fun ainakaan_AdvK : AdvK ;
+fun ainakin_AdvK : AdvK ;
+fun aine_NK : NK ;
+fun aineellinen_NK : NK ;
+fun aineellistaa_VK : VK ;
+fun aineellistua_VK : VK ;
+fun aineellistuma_NK : NK ;
+fun aineellisuus_NK : NK ;
+fun aineeton_NK : NK ;
+fun aineettomuus_NK : NK ;
+fun aineinen_NK : NK ;
+fun aineistaa_VK : VK ;
+fun aineisto_NK : NK ;
+fun aineistua_VK : VK ;
+fun aineistuma_NK : NK ;
+fun aineksinen_NK : NK ;
+fun aines_NK : NK ;
+fun ainiaaksi_AdvK : AdvK ;
+fun ainiaan_AdvK : AdvK ;
+fun ainiaksi_AdvK : AdvK ;
+fun ainian_AdvK : AdvK ;
+fun aino_NK : NK ;
+fun ainoa_NK : NK ;
+fun ainoastaan_AdvK : AdvK ;
+fun ainokainen_NK : NK ;
+fun ainu_NK : NK ;
+fun ainut_AdvK : AdvK ;
+fun ainutkertaisuus_NK : NK ;
+fun aioli_NK : NK ;
+fun airo_NK : NK ;
+fun aironveto_NK : NK ;
+fun airut_NK : NK ;
+fun aisa_NK : NK ;
+fun aisata_VK : VK ;
+fun aisaus_NK : NK ;
+fun aisti_NK : NK ;
+fun aistia_VK : VK ;
+fun aistikas_AK : AK ;
+--+ fun aistikkaasti_AdvK : AdvK ;
+fun aistikkuus_NK : NK ;
+fun aistillinen_AK : AK ;
+--+ fun aistillisesti_AdvK : AdvK ;
+fun aistillisuus_NK : NK ;
+fun aistimus_NK : NK ;
+fun aistin_NK : NK ;
+fun aistinen_NK : NK ;
+fun aita_NK : NK ;
+fun aitaus_NK : NK ;
+fun aitio_NK : NK ;
+fun aito_NK : NK ;
+fun aitoa_VK : VK ;
+fun aitous_NK : NK ;
+fun aitta_NK : NK ;
+fun aituri_NK : NK ;
+fun aivan_AdvK : AdvK ;
+fun aivastaa_VK : VK ;
+fun aivastella_VK : VK ;
+fun aivastus_NK : NK ;
+fun aivastuttaa_VK : VK ;
+fun aivina_NK : NK ;
+fun aivo_NK : NK ;
+fun aivoitus_NK : NK ;
+fun aivokurkiainen_NK : NK ;
+fun aivosto_NK : NK ;
+--? fun aivot_NK : NK ;
+fun ajaa_VK : VK ;
+fun ajaantua_VK : VK ;
+fun ajaja_NK : NK ;
+fun ajallaan_AdvK : AdvK ;
+fun ajallinen_AK : AK ;
+--+ fun ajallisesti_AdvK : AdvK ;
+fun ajallisuus_NK : NK ;
+fun ajankohta_NK : NK ;
+fun ajankohtaistaa_VK : VK ;
+fun ajankohtaistua_VK : VK ;
+fun ajankuluke_NK : NK ;
+fun ajan_mittaan_AdvK : AdvK ;
+fun ajanmukaistaa_VK : VK ;
+fun ajanmukaistua_VK : VK ;
+fun ajanmukaisuus_NK : NK ;
+fun ajantasaistaa_VK : VK ;
+fun ajantasaistus_NK : NK ;
+fun ajantasaisuus_NK : NK ;
+fun ajanviete_NK : NK ;
+fun ajanvietteellinen_NK : NK ;
+fun ajassa_AdvK : AdvK ;
+fun ajassaan_AdvK : AdvK ;
+fun ajastaa_VK : VK ;
+fun ajastaika_NK : NK ;
+fun ajastin_NK : NK ;
+fun ajastus_NK : NK ;
+fun ajatella_VK : VK ;
+fun ajatelma_NK : NK ;
+fun ajatollah_NK : NK ;
+fun ajaton_NK : NK ;
+fun ajattaa_VK : VK ;
+fun ajattelematon_NK : NK ;
+fun ajattelemattomasti_AdvK : AdvK ;
+fun ajattelemattomuus_NK : NK ;
+fun ajattelija_NK : NK ;
+fun ajattelu_NK : NK ;
+fun ajatteluttaa_VK : VK ;
+fun ajattomasti_AdvK : AdvK ;
+fun ajattomuus_NK : NK ;
+fun ajatuksekas_NK : NK ;
+fun ajatuksellinen_AK : AK ;
+--+ fun ajatuksellisesti_AdvK : AdvK ;
+fun ajatukseton_NK : NK ;
+fun ajatuksettomasti_AdvK : AdvK ;
+fun ajatuksettomuus_NK : NK ;
+fun ajatuksinen_NK : NK ;
+fun ajatus_NK : NK ;
+fun ajautua_VK : VK ;
+fun ajelehtia_VK : VK ;
+fun ajella_VK : VK ;
+fun ajelu_NK : NK ;
+fun ajeluttaa_VK : VK ;
+fun ajettavuus_NK : NK ;
+fun ajettua_VK : VK ;
+fun ajettuma_NK : NK ;
+fun ajetuksissa_AdvK : AdvK ;
+fun ajo_NK : NK ;
+fun ajoaika_NK : NK ;
+fun ajoissa_AdvK : AdvK ;
+fun ajoittaa_VK : VK ;
+fun ajoittain_AdvK : AdvK ;
+fun ajoittainen_NK : NK ;
+fun ajoittaisuus_NK : NK ;
+fun ajoittua_VK : VK ;
+fun ajoitus_NK : NK ;
+fun ajokas_1_NK : NK ;
+fun ajokki_NK : NK ;
+fun ajos_NK : NK ;
+fun ajuri_NK : NK ;
+fun akaatti_NK : NK ;
+fun akallinen_NK : NK ;
+fun akana_NK : NK ;
+fun akantti_NK : NK ;
+fun akasia_NK : NK ;
+fun akateemikko_NK : NK ;
+fun akateeminen_AK : AK ;
+--+ fun akateemisesti_AdvK : AdvK ;
+fun akateemisuus_NK : NK ;
+fun akatemia_NK : NK ;
+fun akileija_NK : NK ;
+fun akka_NK : NK ;
+--+ fun akkamaisesti_AdvK : AdvK ;
+fun akkamaisuus_NK : NK ;
+fun akkautua_VK : VK ;
+fun akklimatisaatio_NK : NK ;
+fun akklimatisoida_VK : VK ;
+fun akklimatisointi_NK : NK ;
+fun akklimatisoitua_VK : VK ;
+fun akkommodaatio_NK : NK ;
+fun akkreditoida_VK : VK ;
+fun akkreditointi_NK : NK ;
+fun akku_NK : NK ;
+fun akkumulaattori_NK : NK ;
+fun akkuna_NK : NK ;
+fun akkusatiivi_NK : NK ;
+fun akne_NK : NK ;
+fun akoittua_VK : VK ;
+fun akordi_NK : NK ;
+fun akrobaatti_NK : NK ;
+fun akrobatia_NK : NK ;
+fun akronyymi_NK : NK ;
+fun akryylimaalaus_NK : NK ;
+fun akseli_NK : NK ;
+fun akselinen_NK : NK ;
+fun akselisto_NK : NK ;
+fun aksentti_NK : NK ;
+fun akseptantti_NK : NK ;
+fun akseptata_VK : VK ;
+fun akseptaus_NK : NK ;
+fun aksepti_NK : NK ;
+fun akseptoida_VK : VK ;
+fun akseptointi_NK : NK ;
+fun aksiaalinen_AK : AK ;
+--+ fun aksiaalisesti_AdvK : AdvK ;
+fun aksiaalisuus_NK : NK ;
+fun aksiomaattinen_AK : AK ;
+--+ fun aksiomaattisesti_AdvK : AdvK ;
+fun aksiomaattisuus_NK : NK ;
+fun aksiomi_NK : NK ;
+fun aksiooma_NK : NK ;
+fun akti_NK : NK ;
+--? fun aktiivat_NK : NK ;
+fun aktiivi_NK : NK ;
+fun aktiivinen_AK : AK ;
+--+ fun aktiivisesti_AdvK : AdvK ;
+fun aktiivistaa_VK : VK ;
+fun aktiivistua_VK : VK ;
+fun aktiivisuus_NK : NK ;
+fun aktio_NK : NK ;
+fun aktivismi_NK : NK ;
+fun aktiviteetti_NK : NK ;
+fun aktivoida_VK : VK ;
+fun aktivoitua_VK : VK ;
+fun aktuaalinen_AK : AK ;
+--+ fun aktuaalisesti_AdvK : AdvK ;
+fun aktuaalistaa_VK : VK ;
+fun aktuaalistua_VK : VK ;
+fun aktuaalisuus_NK : NK ;
+fun aktuaari_NK : NK ;
+fun aktualisoida_VK : VK ;
+fun aktualisointi_NK : NK ;
+fun aktualisoitua_VK : VK ;
+fun aktuelli_NK : NK ;
+fun akupunktuuri_NK : NK ;
+fun akustiikka_NK : NK ;
+fun akustinen_AK : AK ;
+--+ fun akustisesti_AdvK : AdvK ;
+fun akusto_NK : NK ;
+fun akuutisti_AdvK : AdvK ;
+fun akuutti_NK : NK ;
+fun akuuttinen_NK : NK ;
+fun akvaario_NK : NK ;
+fun akvamariini_NK : NK ;
+fun akvarelli_NK : NK ;
+fun akvatinta_NK : NK ;
+fun akvaviitti_NK : NK ;
+fun a''_la_AdvK : AdvK ;
+fun ala_NK : NK ;
+--+ fun ala_arvoisesti_AdvK : AdvK ;
+fun alabasteri_NK : NK ;
+fun a''_la_carte_NK : NK ;
+fun aladobi_NK : NK ;
+fun alaika'raja_NK : NK ;
+fun alainen_NK : NK ;
+fun alaisuus_NK : NK ;
+fun alakantissa_AdvK : AdvK ;
+fun alakanttiin_AdvK : AdvK ;
+fun alakkain_AdvK : AdvK ;
+fun alakkainen_NK : NK ;
+fun alakohta_NK : NK ;
+fun alakulo_NK : NK ;
+fun alakuloinen_AK : AK ;
+--+ fun alakuloisesti_AdvK : AdvK ;
+fun alakuloisuus_NK : NK ;
+fun alakynnessa'_AdvK : AdvK ;
+fun alakynteen_AdvK : AdvK ;
+fun alallaan_AdvK : AdvK ;
+fun alalleen_AdvK : AdvK ;
+fun alamainen_AK : AK ;
+--+ fun alamaisesti_AdvK : AdvK ;
+fun alamaisuus_NK : NK ;
+fun alanko_NK : NK ;
+fun alanne_NK : NK ;
+fun alaraja_NK : NK ;
+fun alas_AdvK : AdvK ;
+fun alasin_NK : NK ;
+fun alaslaskettava_NK : NK ;
+fun alassuin_AdvK : AdvK ;
+fun alasti_AdvK : AdvK ;
+fun alastomuus_NK : NK ;
+fun alaston_NK : NK ;
+fun alati_AdvK : AdvK ;
+fun alatusten_AdvK : AdvK ;
+fun alatuuleen_AdvK : AdvK ;
+fun alatuulessa_AdvK : AdvK ;
+fun alava_NK : NK ;
+fun alavuus_NK : NK ;
+fun alba_NK : NK ;
+fun albaani_NK : NK ;
+fun albania_NK : NK ;
+fun albatrossi_NK : NK ;
+fun albiino_NK : NK ;
+fun albinismi_NK : NK ;
+fun albumi_NK : NK ;
+fun ale_1_NK : NK ;
+fun ale_2_NK : NK ;
+fun alekkain_AdvK : AdvK ;
+fun aleksityymikko_NK : NK ;
+fun aleksityyminen_NK : NK ;
+fun alemma_AdvK : AdvK ;
+fun alemmaksi_AdvK : AdvK ;
+fun alemmas_AdvK : AdvK ;
+fun alemmuus_NK : NK ;
+fun alempaa_AdvK : AdvK ;
+fun alempana_AdvK : AdvK ;
+fun alempi_NK : NK ;
+fun alenema_NK : NK ;
+fun alennus_NK : NK ;
+fun alentaa_VK : VK ;
+fun alentava_NK : NK ;
+fun alentua_VK : VK ;
+fun alentuva_AK : AK ;
+fun alentuvainen_AK : AK ;
+--+ fun alentuvaisesti_AdvK : AdvK ;
+fun alentuvaisuus_NK : NK ;
+--+ fun alentuvasti_AdvK : AdvK ;
+fun alentuvuus_NK : NK ;
+fun aleta_VK : VK ;
+fun aletusten_AdvK : AdvK ;
+fun alfa_NK : NK ;
+fun alfalfa_NK : NK ;
+fun algebra_NK : NK ;
+fun algebrallinen_NK : NK ;
+fun algoritmi_NK : NK ;
+fun alhaalla_AdvK : AdvK ;
+fun alhaalle_AdvK : AdvK ;
+fun alhaalta_AdvK : AdvK ;
+fun alhainen_AK : AK ;
+--+ fun alhaisesti_AdvK : AdvK ;
+fun alhaiso_NK : NK ;
+fun alhaisuus_NK : NK ;
+fun alho_NK : NK ;
+fun ali_AdvK : AdvK ;
+fun alias_AdvK : AdvK ;
+fun alibi_NK : NK ;
+fun aliedustettu_NK : NK ;
+fun alija'a'ma'inen_NK : NK ;
+fun alikasvos_NK : NK ;
+fun alimma_AdvK : AdvK ;
+fun alimmainen_NK : NK ;
+fun alimmaksi_AdvK : AdvK ;
+fun alimmas_AdvK : AdvK ;
+fun alimpana_AdvK : AdvK ;
+fun alin_NK : NK ;
+fun alinen_NK : NK ;
+fun alinomaa_AdvK : AdvK ;
+fun aliohjautuva_NK : NK ;
+fun alipalkattu_NK : NK ;
+fun aliravittu_NK : NK ;
+fun alistaa_VK : VK ;
+fun alisteinen_NK : NK ;
+fun alisteisuus_NK : NK ;
+fun alistua_VK : VK ;
+fun alistus_NK : NK ;
+fun alistuva_NK : NK ;
+fun alistuvainen_NK : NK ;
+fun alistuvaisuus_NK : NK ;
+fun alistuvuus_NK : NK ;
+fun alitse_AdvK : AdvK ;
+fun alittaa_VK : VK ;
+fun alittua_VK : VK ;
+fun alituinen_AK : AK ;
+fun alituiseen_AdvK : AdvK ;
+--+ fun alituisesti_AdvK : AdvK ;
+fun alitus_NK : NK ;
+fun alitusten_AdvK : AdvK ;
+fun alkaa_VK : VK ;
+fun alkaen_AdvK : AdvK ;
+fun alkaja_NK : NK ;
+--? fun alkajaiset_NK : NK ;
+fun alkali_NK : NK ;
+fun alkalinen_NK : NK ;
+fun alkalisuus_NK : NK ;
+fun alkaloidi_NK : NK ;
+fun alkamisaika_NK : NK ;
+fun alkeellinen_AK : AK ;
+--+ fun alkeellisesti_AdvK : AdvK ;
+fun alkeellisuus_NK : NK ;
+--? fun alkeet_NK : NK ;
+fun alkeisjuuri_NK : NK ;
+fun alkemia_NK : NK ;
+fun alkemisti_NK : NK ;
+fun alkio_NK : NK ;
+fun alkiolaisuus_NK : NK ;
+fun alkoholi_NK : NK ;
+fun alkoholismi_NK : NK ;
+fun alkoholisoitua_VK : VK ;
+fun alkoholisti_NK : NK ;
+fun alkoholiton_NK : NK ;
+fun alkometri_NK : NK ;
+fun alkovi_NK : NK ;
+fun alku_NK : NK ;
+fun alkuaan_AdvK : AdvK ;
+fun alkuaika_NK : NK ;
+fun alkuinen_NK : NK ;
+fun alkuisin_AdvK : AdvK ;
+fun alkujaan_AdvK : AdvK ;
+fun alkujuuri_NK : NK ;
+--+ fun alkukantaisesti_AdvK : AdvK ;
+fun alkukohta_NK : NK ;
+--+ fun alkupera'isesti_AdvK : AdvK ;
+fun alkuun_AdvK : AdvK ;
+fun alkuunkaan_AdvK : AdvK ;
+fun alkydi_NK : NK ;
+fun alla_AdvK : AdvK ;
+fun allakka_NK : NK ;
+fun alla_mainittu_NK : NK ;
+fun allas_NK : NK ;
+fun allastaa_VK : VK ;
+fun allatiivi_NK : NK ;
+fun alle_AdvK : AdvK ;
+fun alleeli_NK : NK ;
+fun allegoria_NK : NK ;
+fun allegorinen_AK : AK ;
+--+ fun allegorisesti_AdvK : AdvK ;
+fun allegorisuus_NK : NK ;
+fun allegretto_NK : NK ;
+fun allegro_NK : NK ;
+fun allekirjoittanut_NK : NK ;
+fun allekkain_AdvK : AdvK ;
+fun allekkainen_NK : NK ;
+fun allergeeni_NK : NK ;
+fun allergeeninen_NK : NK ;
+fun allergeenisuus_NK : NK ;
+fun allergia_NK : NK ;
+fun allergikko_NK : NK ;
+fun allerginen_NK : NK ;
+fun allergisoida_VK : VK ;
+fun allergisoitua_VK : VK ;
+fun allergistaa_VK : VK ;
+fun allergistua_VK : VK ;
+fun allergisuus_NK : NK ;
+fun alletusten_AdvK : AdvK ;
+fun alli_1_NK : NK ;
+fun alli_2_NK : NK ;
+fun allianssi_NK : NK ;
+fun alligaattori_NK : NK ;
+fun allikko_NK : NK ;
+fun allitteraatio_NK : NK ;
+fun allokaatio_NK : NK ;
+fun allokoida_VK : VK ;
+fun allokointi_NK : NK ;
+fun almanakka_NK : NK ;
+fun almu_NK : NK ;
+fun aloillaan_AdvK : AdvK ;
+fun aloilleen_AdvK : AdvK ;
+fun aloite_NK : NK ;
+fun aloitella_VK : VK ;
+fun aloittaa_VK : VK ;
+fun aloittain_AdvK : AdvK ;
+fun aloittainen_NK : NK ;
+fun aloittaja_NK : NK ;
+fun aloittamaton_NK : NK ;
+fun aloitteellinen_NK : NK ;
+fun aloitteellisuus_NK : NK ;
+fun aloitteikas_NK : NK ;
+fun aloitteinen_NK : NK ;
+fun aloittelija_NK : NK ;
+fun aloitus_NK : NK ;
+fun alokas_NK : NK ;
+fun alokasaika_NK : NK ;
+fun aloke_NK : NK ;
+fun alpakka_1_NK : NK ;
+fun alpakka_2_NK : NK ;
+fun alpakkainen_1_NK : NK ;
+fun alpakkainen_2_NK : NK ;
+fun alpi_NK : NK ;
+fun alpiininen_NK : NK ;
+fun alpinismi_NK : NK ;
+fun alppi_NK : NK ;
+fun alta_AdvK : AdvK ;
+fun altis_NK : NK ;
+fun altistaa_VK : VK ;
+fun altiste_NK : NK ;
+fun altisti_NK : NK ;
+fun altistua_VK : VK ;
+fun altistus_NK : NK ;
+fun altistusaika_NK : NK ;
+fun altruismi_NK : NK ;
+fun altruisti_NK : NK ;
+fun altruistinen_AK : AK ;
+--+ fun altruistisesti_AdvK : AdvK ;
+fun alttari_NK : NK ;
+fun alttiisti_AdvK : AdvK ;
+fun alttius_NK : NK ;
+fun altto_NK : NK ;
+fun alue_NK : NK ;
+fun alueellinen_AK : AK ;
+--+ fun alueellisesti_AdvK : AdvK ;
+fun alueinen_NK : NK ;
+fun alueittain_AdvK : AdvK ;
+fun alueittainen_NK : NK ;
+fun aluke_NK : NK ;
+fun aluksi_AdvK : AdvK ;
+fun alulla_AdvK : AdvK ;
+fun alullaan_AdvK : AdvK ;
+fun alumiini_NK : NK ;
+fun alumiininen_NK : NK ;
+fun aluminoida_VK : VK ;
+fun aluminointi_NK : NK ;
+fun alumpana_AdvK : AdvK ;
+fun alun_AdvK : AdvK ;
+fun aluna_NK : NK ;
+fun alun_alkaen_AdvK : AdvK ;
+fun alunen_NK : NK ;
+fun alun_perin_AdvK : AdvK ;
+fun alun_pita'en_AdvK : AdvK ;
+fun alus_NK : NK ;
+fun alussa_mainittu_NK : NK ;
+fun alusta_NK : NK ;
+fun alustaa_VK : VK ;
+fun alustaja_NK : NK ;
+fun alustava_AK : AK ;
+--+ fun alustavasti_AdvK : AdvK ;
+fun alustus_NK : NK ;
+fun alusvaatteisillaan_AdvK : AdvK ;
+fun alusvaatteisilleen_AdvK : AdvK ;
+fun alvariinsa_AdvK : AdvK ;
+fun alvejuuri_NK : NK ;
+fun amalgaami_NK : NK ;
+fun amanuenssi_NK : NK ;
+fun amaryllis_NK : NK ;
+fun amatsoni_NK : NK ;
+fun amato'o'ri_NK : NK ;
+fun amato'o'riys_NK : NK ;
+fun ambiofonia_NK : NK ;
+fun ambiofoninen_NK : NK ;
+fun ambitio_NK : NK ;
+fun ambivalenssi_NK : NK ;
+fun ambivalentti_NK : NK ;
+fun ambivalenttinen_NK : NK ;
+fun ambra_NK : NK ;
+fun ambrosia_NK : NK ;
+fun ambulanssi_NK : NK ;
+fun ameba_NK : NK ;
+fun amenorrea_NK : NK ;
+fun amerikkalainen_NK : NK ;
+fun amerikkalaistua_VK : VK ;
+fun amerikkalaisuus_NK : NK ;
+fun ametisti_NK : NK ;
+fun amfetamiini_NK : NK ;
+fun amfora_NK : NK ;
+fun amiraali_NK : NK ;
+fun ammateittain_AdvK : AdvK ;
+fun ammateittainen_NK : NK ;
+fun ammatillinen_AK : AK ;
+--+ fun ammatillisesti_AdvK : AdvK ;
+fun ammatillistaa_VK : VK ;
+fun ammatillistua_VK : VK ;
+fun ammatillisuus_NK : NK ;
+fun ammatti_NK : NK ;
+fun ammattilaistaa_VK : VK ;
+fun ammattilaistua_VK : VK ;
+fun ammattilaisuus_NK : NK ;
+--+ fun ammattimaisesti_AdvK : AdvK ;
+fun ammattimaisuus_NK : NK ;
+fun amme_NK : NK ;
+fun ammennus_NK : NK ;
+fun ammentaa_VK : VK ;
+fun ammis_NK : NK ;
+fun ammoin_AdvK : AdvK ;
+fun ammoinen_NK : NK ;
+fun ammolla_AdvK : AdvK ;
+fun ammollaan_AdvK : AdvK ;
+fun ammolle_AdvK : AdvK ;
+fun ammolleen_AdvK : AdvK ;
+fun ammoniakki_NK : NK ;
+fun ammoniumkloridi_NK : NK ;
+fun ammottaa_VK : VK ;
+fun ammu_NK : NK ;
+fun ammua_VK : VK ;
+fun ammunta_1_NK : NK ;
+fun ammunta_2_NK : NK ;
+fun ammus_NK : NK ;
+fun ammuskelija_NK : NK ;
+fun ammuskella_VK : VK ;
+fun ammuskelu_NK : NK ;
+fun ammuttaa_VK : VK ;
+fun ammuu_AdvK : AdvK ;
+fun amnesia_NK : NK ;
+fun amnestia_NK : NK ;
+fun amok_NK : NK ;
+fun amorfinen_NK : NK ;
+fun amorfisuus_NK : NK ;
+fun amoriini_NK : NK ;
+fun ampaista_VK : VK ;
+fun ampeeri_NK : NK ;
+fun ampiainen_NK : NK ;
+fun amplitudi_NK : NK ;
+fun amppeli_NK : NK ;
+fun ampu_NK : NK ;
+fun ampua_VK : VK ;
+fun ampuilla_VK : VK ;
+fun ampuja_NK : NK ;
+fun ampulli_NK : NK ;
+fun ampumahaava_NK : NK ;
+fun amputaatio_NK : NK ;
+fun amputoida_VK : VK ;
+fun amputointi_NK : NK ;
+fun amuletti_NK : NK ;
+fun anaalinen_NK : NK ;
+fun anaboli_NK : NK ;
+fun anabolinen_NK : NK ;
+fun anaerobinen_NK : NK ;
+fun anagrammi_NK : NK ;
+fun anakoluutti_NK : NK ;
+fun anakoluuttinen_NK : NK ;
+fun anakonda_NK : NK ;
+fun anakronismi_NK : NK ;
+fun anakronistinen_AK : AK ;
+--+ fun anakronistisesti_AdvK : AdvK ;
+fun anakronistisuus_NK : NK ;
+fun analfabeetti_NK : NK ;
+fun analgeetti_NK : NK ;
+fun analgeettinen_AK : AK ;
+--+ fun analgeettisesti_AdvK : AdvK ;
+fun analgeettisuus_NK : NK ;
+fun analgesia_NK : NK ;
+fun analogia_NK : NK ;
+fun analoginen_AK : AK ;
+--+ fun analogisesti_AdvK : AdvK ;
+fun analogisuus_NK : NK ;
+fun analysaattori_NK : NK ;
+fun analysoida_VK : VK ;
+fun analysointi_NK : NK ;
+fun analytiikka_NK : NK ;
+fun analyysi_NK : NK ;
+fun analyytikko_NK : NK ;
+fun analyyttinen_AK : AK ;
+--+ fun analyyttisesti_AdvK : AdvK ;
+fun analyyttisuus_NK : NK ;
+fun analyyttisyys_NK : NK ;
+fun anamneesi_NK : NK ;
+fun anamnestinen_NK : NK ;
+fun ananas_NK : NK ;
+fun anarkia_NK : NK ;
+fun anarkismi_NK : NK ;
+fun anarkisti_NK : NK ;
+fun anarkistinen_AK : AK ;
+--+ fun anarkistisesti_AdvK : AdvK ;
+fun anarkistisuus_NK : NK ;
+fun anastaa_VK : VK ;
+fun anastaja_NK : NK ;
+fun anastus_NK : NK ;
+fun anatomi_NK : NK ;
+fun anatomia_NK : NK ;
+fun anatominen_AK : AK ;
+--+ fun anatomisesti_AdvK : AdvK ;
+fun andante_NK : NK ;
+fun andantino_NK : NK ;
+fun androgeeni_NK : NK ;
+fun androgeeninen_NK : NK ;
+fun androgynia_NK : NK ;
+fun androgyyni_NK : NK ;
+fun androgyyninen_NK : NK ;
+fun andrologi_NK : NK ;
+fun andrologia_NK : NK ;
+fun androloginen_AK : AK ;
+--+ fun andrologisesti_AdvK : AdvK ;
+fun ane_NK : NK ;
+fun aneeminen_AK : AK ;
+--+ fun aneemisesti_AdvK : AdvK ;
+fun aneemisuus_NK : NK ;
+fun anekdootti_NK : NK ;
+fun anella_VK : VK ;
+fun anemia_NK : NK ;
+fun anesteetti_NK : NK ;
+fun anestesia_NK : NK ;
+fun anestesiologi_NK : NK ;
+fun anestesiologia_NK : NK ;
+fun anestesiologinen_AK : AK ;
+--+ fun anestesiologisesti_AdvK : AdvK ;
+fun aneurysma_NK : NK ;
+fun angervo_NK : NK ;
+fun angiina_NK : NK ;
+fun angina_pectoris_NK : NK ;
+fun angiografia_NK : NK ;
+fun anglikaaninen_NK : NK ;
+fun anglismi_NK : NK ;
+fun anglisti_NK : NK ;
+fun anglistiikka_NK : NK ;
+fun anglosaksi_NK : NK ;
+fun anglosaksinen_NK : NK ;
+fun angora_NK : NK ;
+fun ani_AdvK : AdvK ;
+fun aniitti_NK : NK ;
+fun aniliini_NK : NK ;
+fun animaalisuus_NK : NK ;
+fun animaatio_NK : NK ;
+fun animismi_NK : NK ;
+fun animistinen_NK : NK ;
+fun anioni_NK : NK ;
+fun anis_NK : NK ;
+fun anjovis_NK : NK ;
+fun ankara_AK : AK ;
+--+ fun ankarasti_AdvK : AdvK ;
+fun ankaruus_NK : NK ;
+fun ankea_AK : AK ;
+--+ fun ankeasti_AdvK : AdvK ;
+fun ankerias_NK : NK ;
+fun ankeroinen_NK : NK ;
+fun ankeus_NK : NK ;
+fun ankka_NK : NK ;
+fun ankkuri_NK : NK ;
+fun ankkuroida_VK : VK ;
+fun ankkurointi_NK : NK ;
+fun ankkuroitua_VK : VK ;
+fun annella_VK : VK ;
+fun anniskella_VK : VK ;
+fun anniskelu_NK : NK ;
+fun annoksinen_NK : NK ;
+fun annoksittain_AdvK : AdvK ;
+fun annoona_NK : NK ;
+fun annos_NK : NK ;
+fun annostaa_VK : VK ;
+fun annostella_VK : VK ;
+fun annostelu_NK : NK ;
+fun annostus_NK : NK ;
+fun annuiteetti_NK : NK ;
+fun anoa_VK : VK ;
+fun anodi_NK : NK ;
+fun anoja_NK : NK ;
+fun anomaalinen_AK : AK ;
+--+ fun anomaalisesti_AdvK : AdvK ;
+fun anomaalisuus_NK : NK ;
+fun anomalia_NK : NK ;
+fun anomus_NK : NK ;
+fun anonymiteetti_NK : NK ;
+fun anonyymi_NK : NK ;
+fun anonyymius_NK : NK ;
+fun anonyymiys_NK : NK ;
+--? fun anopikset_NK : NK ;
+fun anoppi_NK : NK ;
+fun anoppila_NK : NK ;
+fun anorakki_NK : NK ;
+fun anoreksia_NK : NK ;
+fun anorektikko_NK : NK ;
+fun ansa_NK : NK ;
+fun ansainta_NK : NK ;
+fun ansaita_VK : VK ;
+fun ansaitsematon_NK : NK ;
+fun ansaitusti_AdvK : AdvK ;
+fun ansari_NK : NK ;
+fun ansas_NK : NK ;
+fun ansatsi_NK : NK ;
+fun ansio_NK : NK ;
+fun ansioitua_VK : VK ;
+fun ansiokas_AK : AK ;
+--+ fun ansiokkaasti_AdvK : AdvK ;
+fun ansiokkuus_NK : NK ;
+fun ansiosta_AdvK : AdvK ;
+fun ansioton_NK : NK ;
+fun ansiottomasti_AdvK : AdvK ;
+fun ansiottomuus_NK : NK ;
+fun ansoittaa_VK : VK ;
+fun ansoitus_NK : NK ;
+fun antaa_VK : VK ;
+fun antagonismi_NK : NK ;
+fun antagonisti_NK : NK ;
+fun antagonistinen_NK : NK ;
+fun antaja_NK : NK ;
+fun antarktinen_NK : NK ;
+fun antasidi_NK : NK ;
+fun antaumuksellinen_AK : AK ;
+--+ fun antaumuksellisesti_AdvK : AdvK ;
+fun antaumuksellisuus_NK : NK ;
+fun antaumus_NK : NK ;
+fun antautua_VK : VK ;
+fun anteeksi_AdvK : AdvK ;
+fun anteeksiannettava_NK : NK ;
+fun anteeksiantamaton_NK : NK ;
+fun anteeksiantamattomasti_AdvK : AdvK ;
+fun anteeksiantamattomuus_NK : NK ;
+fun anteeksiantamus_NK : NK ;
+fun anteeksiantava_NK : NK ;
+--+ fun anteliaasti_AdvK : AdvK ;
+fun anteliaisuus_NK : NK ;
+fun antelias_AK : AK ;
+fun antenni_NK : NK ;
+fun anti_1_NK : NK ;
+fun antibiootti_NK : NK ;
+fun antibioottinen_NK : NK ;
+fun antidepressiivi_NK : NK ;
+fun antiikki_NK : NK ;
+fun antiikkinen_NK : NK ;
+fun antiikva_NK : NK ;
+fun anti_inflammatorinen_NK : NK ;
+fun antikristus_NK : NK ;
+fun antikvaarinen_NK : NK ;
+fun antikvariaatti_NK : NK ;
+fun antilooppi_NK : NK ;
+--? fun antimet_NK : NK ;
+fun antioksidantti_NK : NK ;
+fun antipasto_NK : NK ;
+fun antipatia_NK : NK ;
+fun antiperspirantti_NK : NK ;
+fun antisemiitti_NK : NK ;
+fun antisemiittinen_AK : AK ;
+--+ fun antisemiittisesti_AdvK : AdvK ;
+fun antisemitismi_NK : NK ;
+fun antisepti_NK : NK ;
+fun anto_NK : NK ;
+fun antoisa_AK : AK ;
+--+ fun antoisasti_AdvK : AdvK ;
+fun antoisuus_NK : NK ;
+fun antologia_NK : NK ;
+fun antrasiitti_NK : NK ;
+fun antropologi_NK : NK ;
+fun antropologia_NK : NK ;
+fun antropologinen_AK : AK ;
+--+ fun antropologisesti_AdvK : AdvK ;
+fun antroposofi_NK : NK ;
+fun antroposofia_NK : NK ;
+fun antura_NK : NK ;
+fun anturi_NK : NK ;
+fun aortta_NK : NK ;
+fun apaattinen_AK : AK ;
+--+ fun apaattisesti_AdvK : AdvK ;
+fun apaattisuus_NK : NK ;
+fun apaja_NK : NK ;
+fun aparaatti_NK : NK ;
+fun apartamento_NK : NK ;
+fun apartheid_NK : NK ;
+fun apassi_NK : NK ;
+fun apatia_NK : NK ;
+fun apatiitti_NK : NK ;
+fun ape_NK : NK ;
+fun apea_AK : AK ;
+--+ fun apeasti_AdvK : AdvK ;
+fun apeissaan_AdvK : AdvK ;
+fun aperitiivi_NK : NK ;
+fun apeus_NK : NK ;
+fun apeutua_VK : VK ;
+fun apila_NK : NK ;
+fun apina_NK : NK ;
+fun apinoida_VK : VK ;
+fun apinointi_NK : NK ;
+fun aplodeerata_VK : VK ;
+fun aplodeeraus_NK : NK ;
+fun aplodi_NK : NK ;
+fun apnea_NK : NK ;
+fun apokalypsi_NK : NK ;
+fun apokalyptinen_NK : NK ;
+fun apokryfi_NK : NK ;
+fun apokryfinen_AK : AK ;
+--+ fun apokryfisesti_AdvK : AdvK ;
+fun apokryfisuus_NK : NK ;
+fun apokryfisyys_NK : NK ;
+fun apologeetta_NK : NK ;
+fun apologeettinen_NK : NK ;
+fun apologia_NK : NK ;
+fun apoptoosi_NK : NK ;
+fun apostoli_NK : NK ;
+fun apostolinen_NK : NK ;
+fun apotti_NK : NK ;
+fun appaa_VK : VK ;
+fun apparaatti_NK : NK ;
+fun appela_NK : NK ;
+fun appellatiivi_NK : NK ;
+fun appelsiini_NK : NK ;
+fun appelsiininkuori_NK : NK ;
+fun appenzeller_NK : NK ;
+fun appi_NK : NK ;
+fun applikaatio_NK : NK ;
+fun applikoida_VK : VK ;
+fun applikointi_NK : NK ;
+fun apposen_AdvK : AdvK ;
+--? fun apposet_NK : NK ;
+fun appositio_NK : NK ;
+fun approbatur_NK : NK ;
+fun aprikoida_VK : VK ;
+fun aprikointi_NK : NK ;
+fun aprikoosi_NK : NK ;
+fun aprillata_VK : VK ;
+fun aprillaus_NK : NK ;
+fun aprilli_NK : NK ;
+fun a_priori_AdvK : AdvK ;
+fun apriorinen_AK : AK ;
+--+ fun apriorisesti_AdvK : AdvK ;
+fun apriorisuus_NK : NK ;
+fun apro_NK : NK ;
+fun apropoo_AdvK : AdvK ;
+fun apteekkari_NK : NK ;
+fun apteekki_NK : NK ;
+fun apu_NK : NK ;
+fun apuri_NK : NK ;
+fun arabeski_NK : NK ;
+fun arabi_NK : NK ;
+fun arabia_NK : NK ;
+fun arabisti_NK : NK ;
+fun arabistiikka_NK : NK ;
+fun aralia_NK : NK ;
+fun aramea_NK : NK ;
+fun arastaa_VK : VK ;
+fun arastella_VK : VK ;
+fun arastelu_NK : NK ;
+fun arasti_AdvK : AdvK ;
+fun araukaria_NK : NK ;
+fun arava_NK : NK ;
+fun arboretum_NK : NK ;
+fun arboristi_NK : NK ;
+fun arbuusi_NK : NK ;
+fun areena_NK : NK ;
+fun arenti_NK : NK ;
+fun aresti_NK : NK ;
+fun argon_NK : NK ;
+fun argumentaatio_NK : NK ;
+fun argumentoida_VK : VK ;
+fun argumentointi_NK : NK ;
+fun argumentti_NK : NK ;
+fun arho_NK : NK ;
+fun arina_NK : NK ;
+fun aristaa_VK : VK ;
+fun aristella_VK : VK ;
+fun aristokraatti_NK : NK ;
+fun aristokraattinen_AK : AK ;
+--+ fun aristokraattisesti_AdvK : AdvK ;
+fun aristokraattisuus_NK : NK ;
+fun aristokratia_NK : NK ;
+fun aristua_VK : VK ;
+fun aristus_NK : NK ;
+fun aritmeettinen_NK : NK ;
+fun aritmetiikka_NK : NK ;
+fun arjalainen_NK : NK ;
+fun arka_NK : NK ;
+fun arkaainen_NK : NK ;
+fun arkailla_VK : VK ;
+fun arkaistinen_AK : AK ;
+--+ fun arkaistisesti_AdvK : AdvK ;
+fun arkaistisuus_NK : NK ;
+fun arkala_NK : NK ;
+fun arkeittain_AdvK : AdvK ;
+fun arkeologi_NK : NK ;
+fun arkeologia_NK : NK ;
+fun arkeologinen_AK : AK ;
+--+ fun arkeologisesti_AdvK : AdvK ;
+fun arki_NK : NK ;
+fun arkinen_AK : AK ;
+fun arkipa'iva'istya'_VK : VK ;
+fun arkipa'iva'ista'a'_VK : VK ;
+--+ fun arkisesti_AdvK : AdvK ;
+fun arkisin_AdvK : AdvK ;
+fun arkisto_NK : NK ;
+fun arkistoida_VK : VK ;
+fun arkistointi_NK : NK ;
+fun arkistua_VK : VK ;
+fun arkisuus_NK : NK ;
+fun arkittain_AdvK : AdvK ;
+fun arkki_1_NK : NK ;
+fun arkki_2_NK : NK ;
+fun arkkiatri_NK : NK ;
+fun arkkimandriitta_NK : NK ;
+fun arkkitehti_NK : NK ;
+fun arkkitehtoninen_AK : AK ;
+--+ fun arkkitehtonisesti_AdvK : AdvK ;
+fun arkkitehtuuri_NK : NK ;
+fun arkku_NK : NK ;
+fun arktinen_NK : NK ;
+fun arkullinen_NK : NK ;
+fun arkuus_NK : NK ;
+fun armada_NK : NK ;
+fun armagnac_NK : NK ;
+fun armahainen_NK : NK ;
+fun armahdus_NK : NK ;
+fun armahtaa_VK : VK ;
+fun armahtava_NK : NK ;
+fun armahtavainen_NK : NK ;
+fun armainen_NK : NK ;
+fun armanjakki_NK : NK ;
+fun armas_NK : NK ;
+fun armastella_VK : VK ;
+fun armeija_NK : NK ;
+--+ fun armeliaasti_AdvK : AdvK ;
+fun armeliaisuus_NK : NK ;
+fun armelias_AK : AK ;
+fun armias_NK : NK ;
+fun armo_NK : NK ;
+fun armoinen_NK : NK ;
+fun armoitettu_NK : NK ;
+fun armollinen_AK : AK ;
+--+ fun armollisesti_AdvK : AdvK ;
+fun armollisuus_NK : NK ;
+fun armonaika_NK : NK ;
+fun armoton_NK : NK ;
+fun armottomasti_AdvK : AdvK ;
+fun armottomuus_NK : NK ;
+fun aro_NK : NK ;
+fun aromaattinen_NK : NK ;
+fun aromi_NK : NK ;
+fun aromikas_NK : NK ;
+fun aromikkuus_NK : NK ;
+fun arominen_NK : NK ;
+fun aronia_NK : NK ;
+fun arpa_NK : NK ;
+--? fun arpajaiset_NK : NK ;
+fun arpeuma_NK : NK ;
+fun arpeuttaa_VK : VK ;
+fun arpeutua_VK : VK ;
+fun arpeutuma_NK : NK ;
+fun arpi_NK : NK ;
+fun arpinen_NK : NK ;
+fun arpisuus_NK : NK ;
+fun arpoa_VK : VK ;
+fun arrakki_NK : NK ;
+fun arroganssi_NK : NK ;
+fun arrogantisti_AdvK : AdvK ;
+fun arrogantti_NK : NK ;
+fun arrowjuuri_NK : NK ;
+fun arseeni_NK : NK ;
+fun arsenaali_NK : NK ;
+fun arsenikki_NK : NK ;
+fun art_director_NK : NK ;
+fun arteesinen_NK : NK ;
+fun artefakti_NK : NK ;
+fun artenomi_NK : NK ;
+fun arteria_NK : NK ;
+fun arterioskleroosi_NK : NK ;
+fun artesaani_NK : NK ;
+fun artikkeli_NK : NK ;
+fun artikla_NK : NK ;
+fun artikulaatio_NK : NK ;
+fun artikuloida_VK : VK ;
+fun artikulointi_NK : NK ;
+fun artisokka_NK : NK ;
+fun artisti_NK : NK ;
+fun artistinen_NK : NK ;
+fun artistisuus_NK : NK ;
+fun artoteekki_NK : NK ;
+fun artriitti_NK : NK ;
+fun artroosi_NK : NK ;
+fun arvaamaton_NK : NK ;
+fun arvaamattomasti_AdvK : AdvK ;
+fun arvaamattomuus_NK : NK ;
+fun arvailla_VK : VK ;
+fun arvailu_NK : NK ;
+fun arvata_VK : VK ;
+fun arvatenkaan_AdvK : AdvK ;
+fun arvatenkin_AdvK : AdvK ;
+fun arvattavasti_AdvK : AdvK ;
+fun arvaus_NK : NK ;
+fun arvauttaa_VK : VK ;
+fun arveleva_AK : AK ;
+fun arvelevainen_NK : NK ;
+--+ fun arvelevasti_AdvK : AdvK ;
+fun arvella_VK : VK ;
+fun arvelu_NK : NK ;
+fun arveluttaa_VK : VK ;
+fun arveluttava_AK : AK ;
+--+ fun arveluttavasti_AdvK : AdvK ;
+fun arveluttavuus_NK : NK ;
+fun arvettua_VK : VK ;
+fun arvio_NK : NK ;
+fun arvioida_VK : VK ;
+fun arvioija_NK : NK ;
+fun arviointi_NK : NK ;
+fun arvioitsija_NK : NK ;
+fun arvioittaa_VK : VK ;
+fun arviolta_AdvK : AdvK ;
+fun arvo_NK : NK ;
+fun arvoinen_NK : NK ;
+fun arvoisa_NK : NK ;
+fun arvoisuus_NK : NK ;
+fun arvoituksellinen_AK : AK ;
+--+ fun arvoituksellisesti_AdvK : AdvK ;
+fun arvoituksellisuus_NK : NK ;
+fun arvoitus_NK : NK ;
+fun arvokas_AK : AK ;
+--+ fun arvokkaasti_AdvK : AdvK ;
+fun arvokkuus_NK : NK ;
+fun arvollinen_NK : NK ;
+fun arvomerkinta'inen_NK : NK ;
+fun arvonta_NK : NK ;
+fun arvopaperistaa_VK : VK ;
+fun arvopaperistua_VK : VK ;
+fun arvostaa_VK : VK ;
+fun arvosteleva_AK : AK ;
+--+ fun arvostelevasti_AdvK : AdvK ;
+fun arvostelija_NK : NK ;
+fun arvostella_VK : VK ;
+fun arvostelma_NK : NK ;
+fun arvostelu_NK : NK ;
+fun arvostelukyvytto'ma'sti_AdvK : AdvK ;
+fun arvostus_NK : NK ;
+fun arvoton_NK : NK ;
+fun arvottaa_VK : VK ;
+fun arvottomasti_AdvK : AdvK ;
+fun arvottomuus_NK : NK ;
+--+ fun arvovaltaisesti_AdvK : AdvK ;
+--+ fun arvova'ritteisesti_AdvK : AdvK ;
+fun arvova'ritteisyys_NK : NK ;
+fun arvuuttaa_VK : VK ;
+fun asbesti_NK : NK ;
+fun asbestoosi_NK : NK ;
+fun ase_NK : NK ;
+fun aseellinen_NK : NK ;
+fun aseenkanto_NK : NK ;
+fun aseeton_NK : NK ;
+fun aseettomuus_NK : NK ;
+fun aseinen_NK : NK ;
+fun aseistaa_VK : VK ;
+fun aseistakielta'ytyminen_NK : NK ;
+fun aseistautua_VK : VK ;
+fun aseistus_NK : NK ;
+fun asema_NK : NK ;
+fun asemasta_AdvK : AdvK ;
+fun asemesta_AdvK : AdvK ;
+fun asemo_NK : NK ;
+fun asemoida_VK : VK ;
+fun asemointi_NK : NK ;
+fun asenne_NK : NK ;
+fun asennoitua_VK : VK ;
+fun asennus_NK : NK ;
+fun asentaa_VK : VK ;
+fun asentaja_NK : NK ;
+fun asenteellinen_AK : AK ;
+--+ fun asenteellisesti_AdvK : AdvK ;
+fun asenteellisuus_NK : NK ;
+fun asenteinen_NK : NK ;
+fun asento_NK : NK ;
+fun asentoinen_NK : NK ;
+fun aseptiikka_NK : NK ;
+fun aseptinen_AK : AK ;
+--+ fun aseptisesti_AdvK : AdvK ;
+fun aseptisuus_NK : NK ;
+fun asessori_NK : NK ;
+fun asetaatti_NK : NK ;
+fun asetanta_NK : NK ;
+fun asete_NK : NK ;
+fun asetella_VK : VK ;
+fun asetelma_NK : NK ;
+fun asetin_NK : NK ;
+fun asetoni_NK : NK ;
+fun asettaa_VK : VK ;
+fun asettaja_NK : NK ;
+fun asettautua_VK : VK ;
+fun asettelu_NK : NK ;
+fun asetti_NK : NK ;
+fun asettua_VK : VK ;
+fun asetus_NK : NK ;
+fun asetyleeni_NK : NK ;
+fun asevelvollisuusaika_NK : NK ;
+fun asfaltoida_VK : VK ;
+fun asfaltointi_NK : NK ;
+fun asfaltti_NK : NK ;
+fun asfalttinen_NK : NK ;
+fun asia_NK : NK ;
+fun asiakas_NK : NK ;
+fun asiakkuus_NK : NK ;
+fun asiallinen_AK : AK ;
+--+ fun asiallisesti_AdvK : AdvK ;
+fun asiallisuus_NK : NK ;
+fun asiantunteva_AK : AK ;
+--+ fun asiantuntevasti_AdvK : AdvK ;
+fun asiapainotteisuus_NK : NK ;
+fun asiaton_NK : NK ;
+fun asiattomasti_AdvK : AdvK ;
+fun asiattomuus_NK : NK ;
+fun asioida_VK : VK ;
+fun asiointi_NK : NK ;
+fun askar_NK : NK ;
+fun askare_NK : NK ;
+fun askaroida_VK : VK ;
+fun askarointi_NK : NK ;
+fun askarrella_VK : VK ;
+fun askarruttaa_VK : VK ;
+fun askartelija_NK : NK ;
+fun askartelu_NK : NK ;
+fun askarteluttaa_VK : VK ;
+fun askeesi_NK : NK ;
+fun askeetti_NK : NK ;
+fun askeettinen_AK : AK ;
+--+ fun askeettisesti_AdvK : AdvK ;
+fun askeettisuus_NK : NK ;
+fun askel_NK : NK ;
+fun askele_NK : NK ;
+fun askelinen_NK : NK ;
+fun askelittain_AdvK : AdvK ;
+fun askelittainen_NK : NK ;
+fun askellin_NK : NK ;
+fun askellus_NK : NK ;
+fun askelma_NK : NK ;
+fun askelmittain_AdvK : AdvK ;
+fun askeltaa_VK : VK ;
+fun asketismi_NK : NK ;
+fun aski_NK : NK ;
+fun askites_NK : NK ;
+fun asosiaalinen_NK : NK ;
+fun asosiaalisuus_NK : NK ;
+fun aspartaami_NK : NK ;
+fun aspekti_NK : NK ;
+fun aspi_NK : NK ;
+fun assimilaatio_NK : NK ;
+fun assimiloida_VK : VK ;
+fun assimilointi_NK : NK ;
+fun assimiloitua_VK : VK ;
+fun assistentti_NK : NK ;
+fun assistentuuri_NK : NK ;
+fun assosiaatio_NK : NK ;
+fun assosiatiivinen_NK : NK ;
+fun assosioida_VK : VK ;
+fun assosiointi_NK : NK ;
+fun assosioitua_VK : VK ;
+fun assyrialainen_NK : NK ;
+fun assyriologi_NK : NK ;
+fun assyriologia_NK : NK ;
+fun astaatti_NK : NK ;
+fun astahtaa_VK : VK ;
+fun astalo_NK : NK ;
+fun astatiini_NK : NK ;
+fun aste_NK : NK ;
+fun asteelainen_NK : NK ;
+fun asteenikko_NK : NK ;
+fun asteeninen_NK : NK ;
+fun asteikko_NK : NK ;
+fun asteikkoinen_NK : NK ;
+fun asteikollinen_NK : NK ;
+fun asteinen_NK : NK ;
+fun asteittain_AdvK : AdvK ;
+fun asteittainen_NK : NK ;
+fun asteittaisuus_NK : NK ;
+fun astella_VK : VK ;
+fun astelu_NK : NK ;
+fun astenia_NK : NK ;
+fun asteri_NK : NK ;
+fun asteroidi_NK : NK ;
+fun asti_AdvK : AdvK ;
+fun astia_NK : NK ;
+fun astiallinen_NK : NK ;
+fun astianpesija'_NK : NK ;
+fun astiasto_NK : NK ;
+fun astin_NK : NK ;
+fun astioittain_AdvK : AdvK ;
+fun astma_NK : NK ;
+fun astmaatikko_NK : NK ;
+fun astmaattinen_NK : NK ;
+fun astmainen_NK : NK ;
+fun astraalinen_NK : NK ;
+fun astrakaani_NK : NK ;
+fun astrologi_NK : NK ;
+fun astrologia_NK : NK ;
+fun astrologinen_AK : AK ;
+--+ fun astrologisesti_AdvK : AdvK ;
+fun astronautiikka_NK : NK ;
+fun astronautti_NK : NK ;
+fun astronomi_NK : NK ;
+fun astronomia_NK : NK ;
+fun astronominen_AK : AK ;
+--+ fun astronomisesti_AdvK : AdvK ;
+fun astua_VK : VK ;
+fun astuja_NK : NK ;
+fun astunta_NK : NK ;
+fun astuttaa_VK : VK ;
+fun astutus_NK : NK ;
+fun asu_NK : NK ;
+fun asua_VK : VK ;
+fun asuinen_NK : NK ;
+fun asuja_NK : NK ;
+fun asujaimisto_NK : NK ;
+fun asujain_NK : NK ;
+fun asukas_NK : NK ;
+fun asukki_NK : NK ;
+fun asuma_NK : NK ;
+fun asumaton_NK : NK ;
+fun asumus_NK : NK ;
+fun asunnoton_NK : NK ;
+fun asunnottomuus_NK : NK ;
+fun asunto_NK : NK ;
+fun asuntola_NK : NK ;
+fun asuntosa'a'sta'minen_NK : NK ;
+fun asustaa_VK : VK ;
+fun asuste_NK : NK ;
+fun asustella_VK : VK ;
+fun asuttaa_VK : VK ;
+fun asuttaja_NK : NK ;
+fun asutus_NK : NK ;
+fun asuuri_NK : NK ;
+fun asvaltoida_VK : VK ;
+fun asvaltointi_NK : NK ;
+fun asvaltti_NK : NK ;
+fun asvalttinen_NK : NK ;
+fun asymmetria_NK : NK ;
+fun asymmetrinen_NK : NK ;
+fun asymmetrisyys_NK : NK ;
+fun atari_NK : NK ;
+fun atavismi_NK : NK ;
+fun atavistinen_AK : AK ;
+--+ fun atavistisesti_AdvK : AdvK ;
+fun atavistisuus_NK : NK ;
+fun ateismi_NK : NK ;
+fun ateisti_NK : NK ;
+fun ateistinen_AK : AK ;
+--+ fun ateistisesti_AdvK : AdvK ;
+fun ateistisuus_NK : NK ;
+fun ateljee_NK : NK ;
+fun ateria_NK : NK ;
+--? fun aterimet_NK : NK ;
+fun aterioida_VK : VK ;
+fun ateriointi_NK : NK ;
+fun atk_AdvK : AdvK ;
+fun atlanttinen_NK : NK ;
+fun atlas_NK : NK ;
+fun atleetikko_NK : NK ;
+fun atleetti_NK : NK ;
+fun atleettinen_NK : NK ;
+fun atleettisuus_NK : NK ;
+fun atmosfa'a'ri_NK : NK ;
+fun atolli_NK : NK ;
+fun atomaarinen_NK : NK ;
+fun atomi_NK : NK ;
+fun atomiaika_NK : NK ;
+fun atomismi_NK : NK ;
+fun atomistinen_NK : NK ;
+fun atomistisuus_NK : NK ;
+fun atonaalinen_NK : NK ;
+fun atonaalisuus_NK : NK ;
+fun atoopikko_NK : NK ;
+fun atooppinen_NK : NK ;
+fun atopia_NK : NK ;
+fun atrain_NK : NK ;
+fun atrium_NK : NK ;
+fun atropia_NK : NK ;
+fun atsalea_NK : NK ;
+fun atsteekki_NK : NK ;
+fun attasea_NK : NK ;
+fun attentaatti_NK : NK ;
+fun attraktiivinen_AK : AK ;
+--+ fun attraktiivisesti_AdvK : AdvK ;
+fun attraktiivisuus_NK : NK ;
+fun attraktio_NK : NK ;
+fun attribuutti_NK : NK ;
+--? fun atulat_NK : NK ;
+fun aubergiini_NK : NK ;
+fun audienssi_NK : NK ;
+fun audiofiili_NK : NK ;
+fun auditiivinen_NK : NK ;
+fun auditoida_VK : VK ;
+fun auditoija_NK : NK ;
+fun auditointi_NK : NK ;
+fun auditorio_NK : NK ;
+fun auer_NK : NK ;
+fun aueta_VK : VK ;
+fun aukaisija_NK : NK ;
+fun aukaisin_NK : NK ;
+fun aukaista_VK : VK ;
+fun aukaisu_NK : NK ;
+fun aukea_NK : NK ;
+fun aukeama_NK : NK ;
+fun auki_AdvK : AdvK ;
+fun aukile_NK : NK ;
+fun aukio_NK : NK ;
+fun aukko_NK : NK ;
+fun aukkoinen_NK : NK ;
+fun aukkokohta_NK : NK ;
+fun aukoa_VK : VK ;
+fun aukoton_NK : NK ;
+fun aukottaa_VK : VK ;
+fun aukotus_NK : NK ;
+fun auktorisoida_VK : VK ;
+fun auktorisointi_NK : NK ;
+fun auktoritaarinen_NK : NK ;
+fun auktoritatiivinen_AK : AK ;
+--+ fun auktoritatiivisesti_AdvK : AdvK ;
+fun auktoritatiivisuus_NK : NK ;
+fun auktoriteetti_NK : NK ;
+fun auktoroida_VK : VK ;
+fun auktorointi_NK : NK ;
+fun aula_NK : NK ;
+fun auliisti_AdvK : AdvK ;
+fun aulio_NK : NK ;
+fun aulis_NK : NK ;
+fun aulius_NK : NK ;
+fun auma_NK : NK ;
+fun aunus_NK : NK ;
+fun aura_1_NK : NK ;
+fun aura_2_NK : NK ;
+fun aurata_VK : VK ;
+fun auraus_NK : NK ;
+fun auringonkilo_NK : NK ;
+fun auringoton_NK : NK ;
+fun aurinko_NK : NK ;
+fun aurinkoaika_NK : NK ;
+fun aurinkoinen_AK : AK ;
+--+ fun aurinkoisesti_AdvK : AdvK ;
+fun aurinkoisuus_NK : NK ;
+fun aurinkokaha_NK : NK ;
+fun auskultaatio_NK : NK ;
+fun auskultantti_NK : NK ;
+fun auskultoida_VK : VK ;
+fun auskultointi_NK : NK ;
+fun aussi_NK : NK ;
+fun australialainen_NK : NK ;
+fun autella_VK : VK ;
+fun autenttinen_NK : NK ;
+fun autenttisuus_NK : NK ;
+fun autere_NK : NK ;
+fun autereinen_NK : NK ;
+fun autio_NK : NK ;
+fun autioittaa_VK : VK ;
+fun autioitua_VK : VK ;
+fun autismi_NK : NK ;
+fun autistinen_NK : NK ;
+fun autius_NK : NK ;
+fun auto_NK : NK ;
+fun autogiro_NK : NK ;
+fun autoilija_NK : NK ;
+fun autoilla_VK : VK ;
+fun autoilu_NK : NK ;
+fun autoistua_VK : VK ;
+fun autokefaalinen_NK : NK ;
+fun automaatio_NK : NK ;
+fun automaatti_NK : NK ;
+fun automaattinen_AK : AK ;
+--+ fun automaattisesti_AdvK : AdvK ;
+fun automaattistaa_VK : VK ;
+fun automaattistua_VK : VK ;
+fun automaattisuus_NK : NK ;
+fun automatiikka_NK : NK ;
+fun automatisoida_VK : VK ;
+fun automatisointi_NK : NK ;
+fun automatisoitua_VK : VK ;
+fun autonomia_NK : NK ;
+fun autonominen_NK : NK ;
+fun autoritaarinen_AK : AK ;
+--+ fun autoritaarisesti_AdvK : AdvK ;
+fun autoritaarisuus_NK : NK ;
+fun autorita'a'rinen_AK : AK ;
+--+ fun autorita'a'risesti_AdvK : AdvK ;
+fun autorita'a'risyys_NK : NK ;
+fun autosomi_NK : NK ;
+fun autotypia_NK : NK ;
+fun auttaa_VK : VK ;
+fun auttaja_NK : NK ;
+fun auttamaton_NK : NK ;
+fun auttamatta_AdvK : AdvK ;
+fun auttamattomasti_AdvK : AdvK ;
+fun auttava_AK : AK ;
+fun auttavainen_NK : NK ;
+fun auttavaisuus_NK : NK ;
+--+ fun auttavasti_AdvK : AdvK ;
+fun autuaallinen_AK : AK ;
+--+ fun autuaallisesti_AdvK : AdvK ;
+fun autuaallisuus_NK : NK ;
+--+ fun autuaasti_AdvK : AdvK ;
+fun autuas_AK : AK ;
+fun autuus_NK : NK ;
+fun autuuttaa_VK : VK ;
+fun auvo_NK : NK ;
+fun auvoinen_NK : NK ;
+fun auvoisa_NK : NK ;
+fun avaaja_NK : NK ;
+fun avain_NK : NK ;
+--? fun avajaiset_NK : NK ;
+fun avanne_NK : NK ;
+fun avantgardismi_NK : NK ;
+fun avantgardisti_NK : NK ;
+fun avantgardistinen_NK : NK ;
+fun avanto_NK : NK ;
+fun avara_NK : NK ;
+--+ fun avarakatseisesti_AdvK : AdvK ;
+--+ fun avaramielisesti_AdvK : AdvK ;
+fun avarrin_NK : NK ;
+fun avarrus_NK : NK ;
+fun avartaa_VK : VK ;
+fun avartua_VK : VK ;
+fun avaruudellinen_NK : NK ;
+fun avaruus_NK : NK ;
+fun avaruusaika_NK : NK ;
+fun avata_VK : VK ;
+fun avauma_NK : NK ;
+fun avaus_NK : NK ;
+fun avautua_VK : VK ;
+fun avautuma_NK : NK ;
+fun avec_NK : NK ;
+fun aviisi_NK : NK ;
+fun avio_NK : NK ;
+fun avioinen_NK : NK ;
+fun avioisuus_NK : NK ;
+fun avioitua_VK : VK ;
+fun aviollinen_NK : NK ;
+fun avioniikka_NK : NK ;
+fun avioton_NK : NK ;
+fun avittaa_VK : VK ;
+fun avitus_NK : NK ;
+fun avo_AdvK : AdvK ;
+fun avohaava_NK : NK ;
+fun avoimesti_AdvK : AdvK ;
+fun avoimuus_NK : NK ;
+fun avoin_NK : NK ;
+fun avojaloin_AdvK : AdvK ;
+fun avokado_NK : NK ;
+fun avokas_NK : NK ;
+fun avokatseisesti_AdvK : AdvK ;
+fun avoka'tisesti_AdvK : AdvK ;
+fun avomaankurkku_NK : NK ;
+fun avomielisesti_AdvK : AdvK ;
+fun avonaisesti_AdvK : AdvK ;
+fun avorioriisi_NK : NK ;
+fun avosilmin_AdvK : AdvK ;
+fun avosuin_AdvK : AdvK ;
+--+ fun avosyda'misesti_AdvK : AdvK ;
+fun avosylin_AdvK : AdvK ;
+fun avu_NK : NK ;
+--+ fun avuliaasti_AdvK : AdvK ;
+fun avuliaisuus_NK : NK ;
+fun avulias_AK : AK ;
+fun avustaa_VK : VK ;
+fun avustaja_NK : NK ;
+fun avustajisto_NK : NK ;
+fun avuste_NK : NK ;
+fun avusteinen_NK : NK ;
+fun avustus_NK : NK ;
+fun avuton_NK : NK ;
+fun avuttomasti_AdvK : AdvK ;
+fun avuttomuus_NK : NK ;
+fun azerbaid_ani_NK : NK ;
+fun azeri_NK : NK ;
+fun baana_NK : NK ;
+fun baari_1_NK : NK ;
+fun baari_2_NK : NK ;
+fun baba_NK : NK ;
+fun baby_NK : NK ;
+fun babylonialainen_NK : NK ;
+fun babysitter_NK : NK ;
+fun backgammon_NK : NK ;
+fun bagatelli_NK : NK ;
+fun bagatellisoida_VK : VK ;
+fun bailata_VK : VK ;
+fun bailaus_NK : NK ;
+--? fun bailut_NK : NK ;
+fun bakkanaali_NK : NK ;
+fun bakteeri_NK : NK ;
+fun bakteeriton_NK : NK ;
+fun bakteerittomuus_NK : NK ;
+fun bakteriologia_NK : NK ;
+fun bakteriologinen_AK : AK ;
+--+ fun bakteriologisesti_AdvK : AdvK ;
+fun balalaikka_NK : NK ;
+fun balansoida_VK : VK ;
+fun balansointi_NK : NK ;
+fun balanssi_NK : NK ;
+fun baletti_NK : NK ;
+fun balladi_NK : NK ;
+fun ballerina_NK : NK ;
+fun ballistiikka_NK : NK ;
+fun ballistinen_NK : NK ;
+fun balsa_NK : NK ;
+fun balsami_NK : NK ;
+fun balsamoida_VK : VK ;
+fun balsamointi_NK : NK ;
+fun baltti_NK : NK ;
+fun balttilaisuus_NK : NK ;
+fun bambu_NK : NK ;
+fun banaali_AK : AK ;
+fun banaalistaa_VK : VK ;
+--+ fun banaalisti_AdvK : AdvK ;
+fun banaalistua_VK : VK ;
+fun banaalius_NK : NK ;
+fun banaani_NK : NK ;
+fun banalisoida_VK : VK ;
+fun banalisointi_NK : NK ;
+fun banalisoitua_VK : VK ;
+fun banaliteetti_NK : NK ;
+fun banderolli_NK : NK ;
+fun bandiitti_NK : NK ;
+fun banjo_NK : NK ;
+fun banketti_1_NK : NK ;
+fun banketti_2_NK : NK ;
+fun bantu_NK : NK ;
+fun bantustan_NK : NK ;
+fun baptismi_NK : NK ;
+fun baptisti_NK : NK ;
+fun barbaari_NK : NK ;
+--+ fun barbaarimaisesti_AdvK : AdvK ;
+fun barbaarimaisuus_NK : NK ;
+fun barbaarinen_AK : AK ;
+--+ fun barbaarisesti_AdvK : AdvK ;
+fun barbaarisuus_NK : NK ;
+fun barbarismi_NK : NK ;
+fun barbi_NK : NK ;
+fun barbituraatti_NK : NK ;
+fun bardi_NK : NK ;
+fun baretti_NK : NK ;
+fun baritoni_NK : NK ;
+fun barium_NK : NK ;
+fun barokki_NK : NK ;
+fun barokkiaika_NK : NK ;
+fun barometri_NK : NK ;
+fun barrakuda_NK : NK ;
+fun barreli_NK : NK ;
+fun barrikadi_NK : NK ;
+fun barytoni_NK : NK ;
+fun basaari_NK : NK ;
+fun basaltti_NK : NK ;
+fun baseball_NK : NK ;
+fun basenji_NK : NK ;
+fun basilika_1_NK : NK ;
+fun basilika_2_NK : NK ;
+fun basilli_NK : NK ;
+fun basisti_NK : NK ;
+fun baskeri_NK : NK ;
+fun baski_NK : NK ;
+fun baskilaisuus_NK : NK ;
+fun basmatiriisi_NK : NK ;
+fun bassetti_NK : NK ;
+fun basso_NK : NK ;
+fun bastardi_NK : NK ;
+fun bastioni_NK : NK ;
+fun bataatti_NK : NK ;
+fun batikki_NK : NK ;
+fun batisti_NK : NK ;
+fun batistinen_NK : NK ;
+fun batonki_NK : NK ;
+fun baudi_NK : NK ;
+fun bauksiitti_NK : NK ;
+fun bavaroise_NK : NK ;
+fun beagle_NK : NK ;
+fun beat_NK : NK ;
+fun beaujolaisviini_NK : NK ;
+fun beauty_box_NK : NK ;
+fun b_b__NK : NK ;
+fun bebee_NK : NK ;
+fun bebop_NK : NK ;
+fun becquerel_NK : NK ;
+fun bed_and_breakfast_AdvK : AdvK ;
+fun beduiini_NK : NK ;
+fun beesi_NK : NK ;
+fun beeta_NK : NK ;
+fun begonia_NK : NK ;
+fun beguine_NK : NK ;
+fun behaviorismi_NK : NK ;
+fun behavioristi_NK : NK ;
+fun behavioristinen_NK : NK ;
+fun beibi_NK : NK ;
+fun beige_NK : NK ;
+--? fun beignet_NK : NK ;
+fun belladonna_NK : NK ;
+fun benediktiini_NK : NK ;
+fun benigni_NK : NK ;
+fun bensa_NK : NK ;
+fun bensiini_NK : NK ;
+fun berberi_1_NK : NK ;
+fun berberi_2_NK : NK ;
+--? fun bermudat_NK : NK ;
+fun bernhardilainen_NK : NK ;
+fun berylli_NK : NK ;
+fun beryllium_NK : NK ;
+fun besserwisser_NK : NK ;
+fun best_man_NK : NK ;
+fun bestseller_NK : NK ;
+fun betoni_NK : NK ;
+fun betoninen_NK : NK ;
+fun betonoida_VK : VK ;
+fun betonointi_NK : NK ;
+fun biblia_NK : NK ;
+fun bibliofiili_NK : NK ;
+fun bibliofilia_NK : NK ;
+fun bibliografi_NK : NK ;
+fun bibliografia_NK : NK ;
+fun bibliografinen_NK : NK ;
+fun bidee_NK : NK ;
+fun biedermeier_NK : NK ;
+fun biennaali_NK : NK ;
+fun bigaaminen_NK : NK ;
+fun bigamia_NK : NK ;
+fun big_band_NK : NK ;
+fun biisami_NK : NK ;
+fun biisi_NK : NK ;
+fun biisoni_NK : NK ;
+fun biitti_NK : NK ;
+fun bikarbonaatti_NK : NK ;
+--? fun bikinit_NK : NK ;
+fun bilanssi_NK : NK ;
+fun bilateraalinen_AK : AK ;
+--+ fun bilateraalisesti_AdvK : AdvK ;
+fun bilateraalisuus_NK : NK ;
+--? fun bileet_NK : NK ;
+fun biljardi_NK : NK ;
+fun biljoona_NK : NK ;
+fun bilsa_NK : NK ;
+fun bimetallismi_NK : NK ;
+fun binaarinen_NK : NK ;
+fun bingo_NK : NK ;
+fun bingota_VK : VK ;
+fun binomi_NK : NK ;
+fun bina'a'rinen_NK : NK ;
+fun biodiversiteetti_NK : NK ;
+fun biodynaaminen_NK : NK ;
+fun biodynaamisuus_NK : NK ;
+fun biogeeninen_NK : NK ;
+fun biogeenisuus_NK : NK ;
+fun biografi_NK : NK ;
+fun biografia_NK : NK ;
+fun biografinen_NK : NK ;
+fun biokenoosi_NK : NK ;
+fun biologi_NK : NK ;
+fun biologia_NK : NK ;
+fun biologinen_AK : AK ;
+--+ fun biologisesti_AdvK : AdvK ;
+fun biometrinen_NK : NK ;
+fun biopsia_NK : NK ;
+fun biosfa'a'ri_NK : NK ;
+fun biotooppi_NK : NK ;
+fun bisarri_AK : AK ;
+--+ fun bisarristi_AdvK : AdvK ;
+fun biseksuaalisuus_NK : NK ;
+fun bismarck_NK : NK ;
+fun bisnes_NK : NK ;
+fun bistro_NK : NK ;
+fun bitter_NK : NK ;
+fun bitti_NK : NK ;
+fun bitumi_NK : NK ;
+fun bitumoida_VK : VK ;
+fun blandata_VK : VK ;
+fun blandaus_NK : NK ;
+fun blandinki_NK : NK ;
+fun blandis_NK : NK ;
+fun blanketti_NK : NK ;
+fun blanseerata_VK : VK ;
+fun blastula_NK : NK ;
+fun blazer_NK : NK ;
+fun bleiseri_NK : NK ;
+fun blini_NK : NK ;
+fun blokata_VK : VK ;
+fun blokkaus_NK : NK ;
+fun blokki_NK : NK ;
+fun blokkiintua_VK : VK ;
+fun blokkiutua_VK : VK ;
+fun blondata_VK : VK ;
+fun blondi_NK : NK ;
+fun blondiini_NK : NK ;
+fun blues_NK : NK ;
+fun bluffata_VK : VK ;
+fun bluffaus_NK : NK ;
+fun bluffi_NK : NK ;
+fun boa_NK : NK ;
+fun bodaaja_NK : NK ;
+fun bodari_NK : NK ;
+fun bodata_VK : VK ;
+fun bodaus_NK : NK ;
+fun bodi_NK : NK ;
+fun bodybuilding_NK : NK ;
+fun body_stocking_NK : NK ;
+fun bofori_NK : NK ;
+fun boheemi_NK : NK ;
+fun boikotoida_VK : VK ;
+fun boikotointi_NK : NK ;
+fun boikotti_NK : NK ;
+fun boileri_NK : NK ;
+fun bokseri_NK : NK ;
+fun boksi_1_NK : NK ;
+fun boksi_2_NK : NK ;
+fun bolero_NK : NK ;
+fun bolsevikki_NK : NK ;
+fun bol_evikki_NK : NK ;
+fun bolsevismi_NK : NK ;
+fun bol_evismi_NK : NK ;
+fun bolsevistinen_NK : NK ;
+fun bol_evistinen_NK : NK ;
+fun bongari_NK : NK ;
+fun bongata_VK : VK ;
+fun bongaus_NK : NK ;
+fun bongo_NK : NK ;
+fun bonus_NK : NK ;
+fun booli_NK : NK ;
+fun boomi_NK : NK ;
+fun boordi_NK : NK ;
+fun boori_NK : NK ;
+fun boosteri_NK : NK ;
+fun bootsi_NK : NK ;
+fun bordeaux_NK : NK ;
+fun bordelli_NK : NK ;
+fun bordyyri_NK : NK ;
+fun borrelioosi_NK : NK ;
+fun borssi_NK : NK ;
+fun bor_t__NK : NK ;
+fun bosniahertsegovinalainen_NK : NK ;
+fun bosoni_NK : NK ;
+fun bossa_nova_NK : NK ;
+fun botaanikko_NK : NK ;
+fun botaaninen_AK : AK ;
+--+ fun botaanisesti_AdvK : AdvK ;
+fun botaniikka_NK : NK ;
+fun botanisti_NK : NK ;
+fun botuliini_NK : NK ;
+fun botulismi_NK : NK ;
+fun bougainvillea_NK : NK ;
+fun bouillabaisse_NK : NK ;
+--? fun bouquet_NK : NK ;
+fun bourbon_NK : NK ;
+fun bourette_NK : NK ;
+fun bourgogne_NK : NK ;
+fun boutique_NK : NK ;
+fun boyfriend_NK : NK ;
+fun braatvursti_NK : NK ;
+fun brahma_NK : NK ;
+fun brahmaani_NK : NK ;
+fun brahmalaisuus_NK : NK ;
+fun brahmanismi_NK : NK ;
+fun bramaani_NK : NK ;
+fun bramiini_NK : NK ;
+fun brandy_NK : NK ;
+fun brasserie_NK : NK ;
+fun brassi_NK : NK ;
+fun bravo_AdvK : AdvK ;
+fun bravuuri_NK : NK ;
+fun breikata_VK : VK ;
+fun breikkaus_NK : NK ;
+fun breikki_NK : NK ;
+fun brenkku_NK : NK ;
+fun breseerata_VK : VK ;
+fun bre_nevila'inen_AK : AK ;
+--+ fun bre_nevila'isesti_AdvK : AdvK ;
+fun bre_nevila'isyys_NK : NK ;
+fun bridge_NK : NK ;
+fun brie_NK : NK ;
+fun brigado'o'ri_NK : NK ;
+fun briiffaus_NK : NK ;
+fun briketti_NK : NK ;
+fun briljantti_NK : NK ;
+fun briljeerata_VK : VK ;
+fun briljeeraus_NK : NK ;
+fun briossi_NK : NK ;
+fun britti_NK : NK ;
+fun brittila'inen_NK : NK ;
+fun brittila'isyys_NK : NK ;
+fun brodeerata_VK : VK ;
+fun brodeeraus_NK : NK ;
+fun brodyyri_NK : NK ;
+fun broidi_NK : NK ;
+fun broileri_NK : NK ;
+fun brokadi_NK : NK ;
+fun brokkoli_NK : NK ;
+fun bromi_NK : NK ;
+fun bronkiitti_NK : NK ;
+fun brontosaurus_NK : NK ;
+fun brosyyri_NK : NK ;
+fun brovninki_NK : NK ;
+fun brunch_NK : NK ;
+fun brunssi_NK : NK ;
+fun brutaali_NK : NK ;
+fun brutaalius_NK : NK ;
+fun brutto_NK : NK ;
+fun bryssa'_NK : NK ;
+fun bra'ndi_NK : NK ;
+fun buddhalainen_NK : NK ;
+fun buddhalaisuus_NK : NK ;
+fun buddhismi_NK : NK ;
+fun budjetoida_VK : VK ;
+fun budjetointi_NK : NK ;
+fun budjetti_NK : NK ;
+fun budo_NK : NK ;
+fun bufetti_NK : NK ;
+--? fun buffet_NK : NK ;
+fun bugi_NK : NK ;
+fun bukee_NK : NK ;
+fun buklee_NK : NK ;
+fun bulevardi_NK : NK ;
+fun bulgaari_NK : NK ;
+fun bulgarialainen_NK : NK ;
+fun buliimikko_NK : NK ;
+fun bulimia_NK : NK ;
+fun bulkki_NK : NK ;
+fun bulla_NK : NK ;
+fun bulldoggi_NK : NK ;
+fun bulvaani_NK : NK ;
+fun bumerangi_NK : NK ;
+fun bungalow_NK : NK ;
+fun bunkkeri_NK : NK ;
+fun burnout_NK : NK ;
+fun business_NK : NK ;
+fun busmanni_NK : NK ;
+fun bu_manni_NK : NK ;
+fun bussi_NK : NK ;
+fun butaani_NK : NK ;
+fun buuata_VK : VK ;
+fun buuaus_NK : NK ;
+fun buukata_VK : VK ;
+fun buukkaus_NK : NK ;
+fun buumi_NK : NK ;
+fun buuri_NK : NK ;
+fun buzuki_NK : NK ;
+fun bygga_NK : NK ;
+fun byrokraatti_NK : NK ;
+fun byrokraattinen_NK : NK ;
+fun byrokraattisesti_AdvK : AdvK ;
+fun byrokraattistaa_VK : VK ;
+fun byrokraattistua_VK : VK ;
+fun byrokraattisuus_NK : NK ;
+fun byrokratia_NK : NK ;
+fun byrokratisoida_VK : VK ;
+fun byrokratisointi_NK : NK ;
+fun byrokratisoitua_VK : VK ;
+fun bysanttilainen_NK : NK ;
+fun bysanttilaisuus_NK : NK ;
+fun byte_NK : NK ;
+fun ba'ndi_NK : NK ;
+--? fun ba'net_NK : NK ;
+fun ba'nks_NK : NK ;
+fun caddie_NK : NK ;
+fun cafeteria_NK : NK ;
+fun calvados_NK : NK ;
+fun calypso_NK : NK ;
+fun camembert_NK : NK ;
+fun camping_NK : NK ;
+fun campus_NK : NK ;
+fun canasta_NK : NK ;
+fun cancan_NK : NK ;
+fun cannelloni_NK : NK ;
+fun cappuccino_NK : NK ;
+fun casanova_NK : NK ;
+fun catering_NK : NK ;
+fun CD_AdvK : AdvK ;
+fun CD_ROM_NK : NK ;
+fun cembalo_NK : NK ;
+fun cesium_NK : NK ;
+fun cha_cha_cha_NK : NK ;
+fun chanson_NK : NK ;
+fun charleston_NK : NK ;
+fun charlotte_russe_NK : NK ;
+fun charmantti_NK : NK ;
+fun charmi_NK : NK ;
+fun charmikas_NK : NK ;
+fun charterlento_NK : NK ;
+fun chatata_VK : VK ;
+fun chateaubriand_NK : NK ;
+fun ch_teauviini_NK : NK ;
+fun chatti_NK : NK ;
+fun cheddar_NK : NK ;
+fun cheerleader_NK : NK ;
+fun chenille_NK : NK ;
+fun chic_NK : NK ;
+fun chili_NK : NK ;
+fun chinchilla_NK : NK ;
+fun chippendale_NK : NK ;
+fun chips_NK : NK ;
+fun cicero_NK : NK ;
+fun cirrus_NK : NK ;
+fun city_NK : NK ;
+fun civis_NK : NK ;
+fun clearing_NK : NK ;
+fun clou_NK : NK ;
+fun cocktail_NK : NK ;
+fun college_NK : NK ;
+fun collie_NK : NK ;
+fun come_back_NK : NK ;
+fun contra_NK : NK ;
+fun copy_NK : NK ;
+fun copyright_NK : NK ;
+fun copywriter_NK : NK ;
+fun coulombi_NK : NK ;
+fun country_NK : NK ;
+fun coup__NK : NK ;
+fun couscous_NK : NK ;
+fun cowboy_NK : NK ;
+fun crack_NK : NK ;
+fun cr_me_fra_che_NK : NK ;
+fun cr_pe_NK : NK ;
+fun crescendo_NK : NK ;
+fun croissant_NK : NK ;
+fun cs_rd_s_NK : NK ;
+fun cum_laude_NK : NK ;
+fun cumulus_NK : NK ;
+fun cup_NK : NK ;
+fun curry_NK : NK ;
+fun daalia_NK : NK ;
+fun daami_NK : NK ;
+fun dadaismi_NK : NK ;
+fun dadaisti_NK : NK ;
+fun dadaistinen_NK : NK ;
+fun daktyyli_NK : NK ;
+fun dalai_lama_NK : NK ;
+fun damaski_NK : NK ;
+fun damasti_NK : NK ;
+fun dandy_NK : NK ;
+fun darvinismi_NK : NK ;
+fun darvinisti_NK : NK ;
+fun darvinistinen_NK : NK ;
+fun data_NK : NK ;
+fun datanomi_NK : NK ;
+fun dateerata_VK : VK ;
+fun dateeraus_NK : NK ;
+fun datiivi_NK : NK ;
+fun dat_a_NK : NK ;
+fun deadline_NK : NK ;
+fun dealer_NK : NK ;
+fun debatti_NK : NK ;
+fun debentuuri_NK : NK ;
+fun debet_NK : NK ;
+fun debiili_NK : NK ;
+fun debytantti_NK : NK ;
+fun debytoida_VK : VK ;
+fun debyytti_NK : NK ;
+fun deduktiivinen_AK : AK ;
+--+ fun deduktiivisesti_AdvK : AdvK ;
+fun deduktiivisuus_NK : NK ;
+fun deduktio_NK : NK ;
+fun deekikselle_AdvK : AdvK ;
+fun deekiksella'_AdvK : AdvK ;
+fun deeku_NK : NK ;
+fun defekti_NK : NK ;
+fun defensiivinen_AK : AK ;
+--+ fun defensiivisesti_AdvK : AdvK ;
+fun defensiivisyys_NK : NK ;
+fun definiittinen_AK : AK ;
+--+ fun definiittisesti_AdvK : AdvK ;
+fun definiittisyys_NK : NK ;
+fun definioida_VK : VK ;
+fun definitiivinen_AK : AK ;
+--+ fun definitiivisesti_AdvK : AdvK ;
+fun definitiivisyys_NK : NK ;
+fun definitio_NK : NK ;
+fun deflaatio_NK : NK ;
+fun deformaatio_NK : NK ;
+fun degeneraatio_NK : NK ;
+fun degeneroitua_VK : VK ;
+fun deismi_NK : NK ;
+fun deisti_NK : NK ;
+fun deistinen_NK : NK ;
+fun dekaani_1_NK : NK ;
+fun dekaani_2_NK : NK ;
+fun dekadenssi_NK : NK ;
+fun dekadentisti_AdvK : AdvK ;
+fun dekadentti_NK : NK ;
+fun dekantoida_VK : VK ;
+fun dekantointi_NK : NK ;
+fun dekantteri_NK : NK ;
+fun dekkari_NK : NK ;
+fun dekki_NK : NK ;
+fun deklinaatio_NK : NK ;
+fun dekoltee_NK : NK ;
+fun dekoodata_VK : VK ;
+fun dekoodaus_NK : NK ;
+fun dekooderi_NK : NK ;
+fun dekoraatio_NK : NK ;
+fun dekoratiivinen_AK : AK ;
+--+ fun dekoratiivisesti_AdvK : AdvK ;
+fun dekoratiivisuus_NK : NK ;
+fun delata_VK : VK ;
+fun delegaatio_NK : NK ;
+fun delegaatti_NK : NK ;
+fun delegoida_VK : VK ;
+fun delegointi_NK : NK ;
+fun delfiini_NK : NK ;
+fun delfinaario_NK : NK ;
+fun delta_NK : NK ;
+fun demagnetoida_VK : VK ;
+fun demagnetointi_NK : NK ;
+fun demagogi_NK : NK ;
+fun demagogia_NK : NK ;
+fun demagoginen_AK : AK ;
+--+ fun demagogisesti_AdvK : AdvK ;
+fun demagogisuus_NK : NK ;
+fun demari_NK : NK ;
+fun dementia_NK : NK ;
+fun dementikko_NK : NK ;
+fun dementoida_VK : VK ;
+fun dementointi_NK : NK ;
+fun dementoitua_VK : VK ;
+fun dementti_NK : NK ;
+fun demilitarisoida_VK : VK ;
+fun demilitarisointi_NK : NK ;
+fun deminutiivi_NK : NK ;
+fun deminutiivinen_NK : NK ;
+fun demo_NK : NK ;
+fun demobilisaatio_NK : NK ;
+fun demobilisoida_VK : VK ;
+fun demobilisointi_NK : NK ;
+fun demografi_NK : NK ;
+fun demografia_NK : NK ;
+fun demografinen_AK : AK ;
+--+ fun demografisesti_AdvK : AdvK ;
+fun demokraatti_NK : NK ;
+fun demokraattinen_AK : AK ;
+--+ fun demokraattisesti_AdvK : AdvK ;
+fun demokraattistaa_VK : VK ;
+fun demokraattistua_VK : VK ;
+fun demokraattisuus_NK : NK ;
+fun demokratia_NK : NK ;
+fun demokratisoida_VK : VK ;
+fun demokratisointi_NK : NK ;
+fun demokratisoitua_VK : VK ;
+fun demoni_NK : NK ;
+fun demoninen_AK : AK ;
+--+ fun demonisesti_AdvK : AdvK ;
+fun demonisuus_NK : NK ;
+fun demonstraatio_NK : NK ;
+fun demonstratiivinen_AK : AK ;
+--+ fun demonstratiivisesti_AdvK : AdvK ;
+fun demonstratiivisuus_NK : NK ;
+fun demonstroida_VK : VK ;
+fun demonstrointi_NK : NK ;
+fun demoralisoida_VK : VK ;
+fun demoralisointi_NK : NK ;
+fun demoralisoitua_VK : VK ;
+fun denaturoida_VK : VK ;
+fun denaturointi_NK : NK ;
+fun denier_NK : NK ;
+fun denimi_NK : NK ;
+fun deodorantti_NK : NK ;
+fun depis_NK : NK ;
+fun deponoida_VK : VK ;
+fun deponointi_NK : NK ;
+fun depressiivinen_AK : AK ;
+--+ fun depressiivisesti_AdvK : AdvK ;
+fun depressiivisyys_NK : NK ;
+fun depressio_NK : NK ;
+fun derivaatta_NK : NK ;
+fun derivoida_VK : VK ;
+fun derivointi_NK : NK ;
+fun dermatologi_NK : NK ;
+fun dermatologia_NK : NK ;
+fun dermatologinen_AK : AK ;
+--+ fun dermatologisesti_AdvK : AdvK ;
+fun desantti_NK : NK ;
+fun desentralisaatio_NK : NK ;
+fun desentralisoida_VK : VK ;
+fun desentralisointi_NK : NK ;
+fun desi_NK : NK ;
+fun desibeli_NK : NK ;
+fun design_NK : NK ;
+fun designer_NK : NK ;
+fun desinfektio_NK : NK ;
+fun desinfektoida_VK : VK ;
+fun desinfektointi_NK : NK ;
+fun desinfioida_VK : VK ;
+fun desinfiointi_NK : NK ;
+fun deskriptiivinen_AK : AK ;
+--+ fun deskriptiivisesti_AdvK : AdvK ;
+fun deskriptiivisyys_NK : NK ;
+fun deskriptio_NK : NK ;
+fun desktop_publishing_NK : NK ;
+fun despootti_NK : NK ;
+fun despoottinen_AK : AK ;
+--+ fun despoottisesti_AdvK : AdvK ;
+fun despoottisuus_NK : NK ;
+fun despotia_NK : NK ;
+fun despotismi_NK : NK ;
+fun detalji_NK : NK ;
+fun detektori_NK : NK ;
+fun determinismi_NK : NK ;
+fun deterministinen_AK : AK ;
+--+ fun deterministisesti_AdvK : AdvK ;
+fun deuterium_NK : NK ;
+fun devalvaatio_NK : NK ;
+fun devalvoida_VK : VK ;
+fun devalvointi_NK : NK ;
+fun devalvoitua_VK : VK ;
+fun deviaatio_NK : NK ;
+fun dia_NK : NK ;
+fun diaari_NK : NK ;
+fun diaario_NK : NK ;
+fun diabeetikko_NK : NK ;
+fun diabetes_NK : NK ;
+fun diadeemi_NK : NK ;
+fun diagnoosi_NK : NK ;
+fun diagnosoida_VK : VK ;
+fun diagnosointi_NK : NK ;
+fun diagnostiikka_NK : NK ;
+fun diagnostinen_AK : AK ;
+--+ fun diagnostisesti_AdvK : AdvK ;
+fun diagnostisuus_NK : NK ;
+fun diagonaali_NK : NK ;
+fun diagrammi_NK : NK ;
+fun diakonia_NK : NK ;
+fun diakoninen_NK : NK ;
+fun diakonissa_NK : NK ;
+fun dialektiikka_NK : NK ;
+fun dialektinen_AK : AK ;
+--+ fun dialektisesti_AdvK : AdvK ;
+fun dialogi_NK : NK ;
+fun dialyysi_NK : NK ;
+fun diarioida_VK : VK ;
+fun diariointi_NK : NK ;
+fun diastolinen_NK : NK ;
+fun diatoninen_NK : NK ;
+fun diatsepaami_NK : NK ;
+fun didaktiikka_NK : NK ;
+fun didaktinen_AK : AK ;
+--+ fun didaktisesti_AdvK : AdvK ;
+fun dieetti_NK : NK ;
+fun diesel_NK : NK ;
+fun dieselo'ida'_VK : VK ;
+fun dieselo'inti_NK : NK ;
+fun dieteetikko_NK : NK ;
+fun dietetiikka_NK : NK ;
+fun differentiaali_NK : NK ;
+fun differentioida_VK : VK ;
+fun differentiointi_NK : NK ;
+fun differentioitua_VK : VK ;
+fun diffraktio_NK : NK ;
+fun diffuusi_NK : NK ;
+fun diffuusio_NK : NK ;
+fun diftongi_NK : NK ;
+fun digata_VK : VK ;
+fun digitaalinen_AK : AK ;
+--+ fun digitaalisesti_AdvK : AdvK ;
+fun digitaalistaa_VK : VK ;
+fun digitaalistua_VK : VK ;
+fun digitaalisuus_NK : NK ;
+fun digitalis_NK : NK ;
+fun digitalisoida_VK : VK ;
+fun digitalisointi_NK : NK ;
+fun digitoida_VK : VK ;
+fun diileri_NK : NK ;
+fun diiva_NK : NK ;
+fun diivailla_VK : VK ;
+fun diivailu_NK : NK ;
+fun diivata_VK : VK ;
+fun diktaattori_NK : NK ;
+fun diktatorinen_AK : AK ;
+--+ fun diktatorisesti_AdvK : AdvK ;
+fun diktatorisuus_NK : NK ;
+fun diktatuuri_NK : NK ;
+fun dilemma_NK : NK ;
+fun diletantismi_NK : NK ;
+fun diletantti_NK : NK ;
+fun dimensio_NK : NK ;
+fun diminuendo_NK : NK ;
+fun diminutiivi_NK : NK ;
+fun diminutiivinen_NK : NK ;
+fun dinosaurus_NK : NK ;
+fun diodi_NK : NK ;
+fun dioksiini_NK : NK ;
+fun diopteri_NK : NK ;
+fun dioptria_NK : NK ;
+fun dipata_VK : VK ;
+fun diploidi_NK : NK ;
+fun diploidinen_NK : NK ;
+fun diplomaatti_NK : NK ;
+fun diplomaattinen_NK : NK ;
+fun diplomaattisuus_NK : NK ;
+fun diplomatia_NK : NK ;
+fun diplomi_NK : NK ;
+fun dipoli_NK : NK ;
+fun dippaus_NK : NK ;
+fun dippi_NK : NK ;
+fun director_cantus_NK : NK ;
+fun director_musices_NK : NK ;
+fun direktiivi_NK : NK ;
+fun direktoraatti_NK : NK ;
+fun dirhami_NK : NK ;
+fun disinformaatio_NK : NK ;
+fun disjunktiivinen_NK : NK ;
+fun diskantti_NK : NK ;
+fun diskata_VK : VK ;
+fun diskaus_NK : NK ;
+fun disketti_NK : NK ;
+fun disko_NK : NK ;
+fun diskografia_NK : NK ;
+fun diskontata_VK : VK ;
+fun diskonttaus_NK : NK ;
+fun diskontto_NK : NK ;
+fun diskota_VK : VK ;
+fun diskoteekki_NK : NK ;
+fun diskriminaatio_NK : NK ;
+fun diskriminoida_VK : VK ;
+fun diskriminointi_NK : NK ;
+fun diskurssi_NK : NK ;
+fun diskvalifioida_VK : VK ;
+fun diskvalifiointi_NK : NK ;
+fun disponibiliteetti_NK : NK ;
+fun dispositio_NK : NK ;
+fun dissidentti_NK : NK ;
+fun dissonanssi_NK : NK ;
+fun dissonoida_VK : VK ;
+fun distikon_NK : NK ;
+fun distribuutio_NK : NK ;
+fun diureetti_NK : NK ;
+fun diureettinen_NK : NK ;
+fun divaani_NK : NK ;
+fun divari_NK : NK ;
+fun divisioona_NK : NK ;
+fun dixieland_NK : NK ;
+fun DNA_AdvK : AdvK ;
+fun dobermanni_NK : NK ;
+fun dogmaatikko_NK : NK ;
+fun dogmaattinen_AK : AK ;
+--+ fun dogmaattisesti_AdvK : AdvK ;
+fun dogmaattisuus_NK : NK ;
+fun dogmatiikka_NK : NK ;
+fun dogmi_NK : NK ;
+fun dokata_VK : VK ;
+fun dokaus_NK : NK ;
+fun doktriini_NK : NK ;
+fun doku_NK : NK ;
+fun dokumentaarinen_NK : NK ;
+fun dokumentaatio_NK : NK ;
+fun dokumentoida_VK : VK ;
+fun dokumentointi_NK : NK ;
+fun dokumentti_NK : NK ;
+fun dollari_NK : NK ;
+fun dolomiitti_NK : NK ;
+fun dominanssi_NK : NK ;
+fun dominantisti_AdvK : AdvK ;
+fun dominantti_NK : NK ;
+fun dominikaani_NK : NK ;
+fun dominio_NK : NK ;
+fun domino_NK : NK ;
+fun dominoida_VK : VK ;
+fun dominointi_NK : NK ;
+--? fun dongarit_NK : NK ;
+fun donitsi_NK : NK ;
+fun donjuan_NK : NK ;
+fun donkata_VK : VK ;
+fun donkkaus_NK : NK ;
+fun donna_NK : NK ;
+fun doorilainen_NK : NK ;
+fun doping_NK : NK ;
+fun dorka_AK : AK ;
+--+ fun dorkasti_AdvK : AdvK ;
+fun dosentti_NK : NK ;
+fun dosentuuri_NK : NK ;
+fun dosetti_NK : NK ;
+fun dosimetri_NK : NK ;
+fun doula_NK : NK ;
+fun doupata_VK : VK ;
+fun draama_NK : NK ;
+fun draamallinen_AK : AK ;
+--+ fun draamallisesti_AdvK : AdvK ;
+fun draamallisuus_NK : NK ;
+fun drag_racing_NK : NK ;
+fun dragsteri_NK : NK ;
+fun drakma_NK : NK ;
+fun dralon_NK : NK ;
+fun dramaatikko_NK : NK ;
+fun dramaattinen_AK : AK ;
+--+ fun dramaattisesti_AdvK : AdvK ;
+fun dramaattisuus_NK : NK ;
+fun dramatiikka_NK : NK ;
+fun dramatisoida_VK : VK ;
+fun dramatisointi_NK : NK ;
+fun dramaturgi_NK : NK ;
+fun dramaturgia_NK : NK ;
+fun drapeerata_VK : VK ;
+fun drapeeraus_NK : NK ;
+fun drastinen_AK : AK ;
+--+ fun drastisesti_AdvK : AdvK ;
+fun drastisuus_NK : NK ;
+fun dreeveri_NK : NK ;
+fun dreija_NK : NK ;
+fun dreijata_VK : VK ;
+fun dreijaus_NK : NK ;
+fun drilli_NK : NK ;
+fun drinkki_NK : NK ;
+fun drive_in_NK : NK ;
+fun dromedaari_NK : NK ;
+fun druidi_NK : NK ;
+fun druusi_NK : NK ;
+fun dualismi_NK : NK ;
+fun dualistinen_AK : AK ;
+--+ fun dualistisesti_AdvK : AdvK ;
+fun dualistisuus_NK : NK ;
+fun dubata_VK : VK ;
+fun dubbata_VK : VK ;
+fun dubbaus_NK : NK ;
+fun dublee_NK : NK ;
+fun dubletti_NK : NK ;
+fun duchesse_NK : NK ;
+fun duetto_NK : NK ;
+fun duffeli_NK : NK ;
+fun dumpata_VK : VK ;
+fun dumping_NK : NK ;
+fun dumppaus_NK : NK ;
+fun duo_NK : NK ;
+fun dupletti_NK : NK ;
+fun duplikaatti_NK : NK ;
+fun duralumiini_NK : NK ;
+fun durra_NK : NK ;
+fun duuma_NK : NK ;
+fun duunari_NK : NK ;
+fun duunata_VK : VK ;
+fun duunaus_NK : NK ;
+fun duuni_NK : NK ;
+fun duuri_NK : NK ;
+fun dynaaminen_AK : AK ;
+--+ fun dynaamisesti_AdvK : AdvK ;
+fun dynaamisuus_NK : NK ;
+fun dynamiikka_NK : NK ;
+fun dynamiitti_NK : NK ;
+fun dynamo_NK : NK ;
+fun dynastia_NK : NK ;
+fun dysfasia_NK : NK ;
+fun dyyni_NK : NK ;
+fun d_onkki_NK : NK ;
+fun do'do'_NK : NK ;
+fun do'sa'_NK : NK ;
+fun eau_de_Cologne_NK : NK ;
+fun eboniitti_NK : NK ;
+fun ecu_NK : NK ;
+fun edam_NK : NK ;
+fun edelle_AdvK : AdvK ;
+fun edelleen_AdvK : AdvK ;
+fun edellinen_NK : NK ;
+fun edellytta'a'_VK : VK ;
+fun edellytys_NK : NK ;
+fun edella'_AdvK : AdvK ;
+fun edella'_esitetty_NK : NK ;
+fun edella'_mainittu_NK : NK ;
+fun edelta'_AdvK : AdvK ;
+fun edelta'ja'_NK : NK ;
+fun edelta'a'_VK : VK ;
+fun edelweiss_NK : NK ;
+fun edemma'_AdvK : AdvK ;
+fun edemma'ksi_AdvK : AdvK ;
+fun edemma's_AdvK : AdvK ;
+fun edempa'na'_AdvK : AdvK ;
+fun edempa'a'_AdvK : AdvK ;
+fun edes_AdvK : AdvK ;
+fun edesottamus_NK : NK ;
+fun edessa'_AdvK : AdvK ;
+fun edesta'_AdvK : AdvK ;
+fun edeta'_VK : VK ;
+fun edikti_NK : NK ;
+fun edistyksellinen_AK : AK ;
+--+ fun edistyksellisesti_AdvK : AdvK ;
+fun edistyksellisyys_NK : NK ;
+fun edistyneisyys_NK : NK ;
+fun edistys_NK : NK ;
+fun edistya'_VK : VK ;
+fun edista'ja'_NK : NK ;
+fun edista'a'_VK : VK ;
+fun editio_NK : NK ;
+fun editoida_VK : VK ;
+fun editointi_NK : NK ;
+fun editori_NK : NK ;
+fun editse_AdvK : AdvK ;
+fun edukas_NK : NK ;
+fun edullinen_AK : AK ;
+--+ fun edullisesti_AdvK : AdvK ;
+fun edullisuus_NK : NK ;
+fun edus_NK : NK ;
+fun edusta_NK : NK ;
+fun edustaa_VK : VK ;
+fun edustaja_NK : NK ;
+fun edustajisto_NK : NK ;
+fun edustajuus_NK : NK ;
+fun edustava_AK : AK ;
+--+ fun edustavasti_AdvK : AdvK ;
+fun edustavuus_NK : NK ;
+fun edusteilla_AdvK : AdvK ;
+fun edustua_VK : VK ;
+fun edustuksellinen_NK : NK ;
+fun edustus_NK : NK ;
+fun edustusto_NK : NK ;
+fun eebenholtsi_NK : NK ;
+fun eeden_NK : NK ;
+fun eekkeri_NK : NK ;
+fun eepikko_NK : NK ;
+fun eepos_NK : NK ;
+fun eeppinen_NK : NK ;
+fun eesti_NK : NK ;
+fun eestila'inen_NK : NK ;
+fun eetteri_NK : NK ;
+fun eettinen_AK : AK ;
+--+ fun eettisesti_AdvK : AdvK ;
+fun eettisyys_NK : NK ;
+fun eetvartti_NK : NK ;
+fun eeva_NK : NK ;
+fun efekti_NK : NK ;
+fun efektiivinen_AK : AK ;
+--+ fun efektiivisesti_AdvK : AdvK ;
+fun efektiivisyys_NK : NK ;
+fun ego_NK : NK ;
+fun egoisti_NK : NK ;
+fun egoistinen_AK : AK ;
+--+ fun egoistisesti_AdvK : AdvK ;
+fun egoistisuus_NK : NK ;
+fun egosentrinen_AK : AK ;
+--+ fun egosentrisesti_AdvK : AdvK ;
+fun egosentrisyys_NK : NK ;
+fun egyptila'inen_NK : NK ;
+fun egyptologi_NK : NK ;
+fun egyptologia_NK : NK ;
+fun egyptologinen_NK : NK ;
+fun ehdoin_tahdoin_AdvK : AdvK ;
+fun ehdokas_NK : NK ;
+fun ehdokkuus_NK : NK ;
+fun ehdollinen_AK : AK ;
+--+ fun ehdollisesti_AdvK : AdvK ;
+fun ehdollistaa_VK : VK ;
+fun ehdollistua_VK : VK ;
+fun ehdollisuus_NK : NK ;
+fun ehdotella_VK : VK ;
+fun ehdotelma_NK : NK ;
+fun ehdoton_NK : NK ;
+fun ehdottaa_VK : VK ;
+fun ehdottaja_NK : NK ;
+fun ehdottomasti_AdvK : AdvK ;
+fun ehdottomuus_NK : NK ;
+fun ehdotus_NK : NK ;
+fun ehdyksiin_AdvK : AdvK ;
+fun ehdyksissa'_AdvK : AdvK ;
+fun ehdytta'a'_VK : VK ;
+fun ehei_AdvK : AdvK ;
+fun eheys_NK : NK ;
+fun eheytta'a'_VK : VK ;
+fun eheytys_NK : NK ;
+fun eheytya'_VK : VK ;
+fun ehea'_AK : AK ;
+--+ fun ehea'sti_AdvK : AdvK ;
+fun ehio'_NK : NK ;
+fun ehjyys_NK : NK ;
+fun ehja'_AK : AK ;
+--+ fun ehja'sti_AdvK : AdvK ;
+fun ehken_AdvK : AdvK ;
+fun ehka'_AdvK : AdvK ;
+fun ehka'isija'_NK : NK ;
+fun ehka'isin_NK : NK ;
+fun ehka'istya'_VK : VK ;
+fun ehka'ista'_VK : VK ;
+fun ehka'isy_NK : NK ;
+fun ehommin_AdvK : AdvK ;
+fun ehompi_NK : NK ;
+fun ehostaa_VK : VK ;
+fun ehoste_NK : NK ;
+fun ehostus_NK : NK ;
+fun ehta_NK : NK ;
+fun ehtimiseen_AdvK : AdvK ;
+fun ehtia'_VK : VK ;
+fun ehto_NK : NK ;
+fun ehtoinen_AK : AK ;
+fun ehtoisa_NK : NK ;
+--+ fun ehtoisesti_AdvK : AdvK ;
+fun ehtoisuus_NK : NK ;
+fun ehtoo_NK : NK ;
+fun ehtoollinen_NK : NK ;
+fun ehtoolliskalkki_NK : NK ;
+fun ehtoollisviini_NK : NK ;
+fun ehtyma'to'n_NK : NK ;
+fun ehtya'_VK : VK ;
+fun ehyt_NK : NK ;
+fun eha'tta'a'_VK : VK ;
+fun ei_AdvK : AdvK ;
+fun eideetikko_NK : NK ;
+fun eideettinen_NK : NK ;
+fun ei_kenenka'a'n_maa_NK : NK ;
+fun eilen_AdvK : AdvK ;
+fun eilinen_NK : NK ;
+fun eine_NK : NK ;
+fun eines_NK : NK ;
+fun eioo_AdvK : AdvK ;
+fun eitta'ma'tta'_AdvK : AdvK ;
+fun eitta'ma'to'n_NK : NK ;
+fun ejakulaatio_NK : NK ;
+fun eka_NK : NK ;
+fun ekliptika_NK : NK ;
+fun ekologi_NK : NK ;
+fun ekologia_NK : NK ;
+fun ekologinen_AK : AK ;
+--+ fun ekologisesti_AdvK : AdvK ;
+fun ekonometria_NK : NK ;
+fun ekonometrinen_AK : AK ;
+--+ fun ekonometrisesti_AdvK : AdvK ;
+fun ekonomi_NK : NK ;
+fun ekonomia_NK : NK ;
+fun ekonominen_AK : AK ;
+--+ fun ekonomisesti_AdvK : AdvK ;
+fun ekonomisti_NK : NK ;
+fun ekonomisuus_NK : NK ;
+fun eksakti_AK : AK ;
+--+ fun eksaktisti_AdvK : AdvK ;
+fun eksaktius_NK : NK ;
+fun ekseema_NK : NK ;
+fun eksegetiikka_NK : NK ;
+fun eksemplaari_NK : NK ;
+fun eksentrinen_AK : AK ;
+--+ fun eksentrisesti_AdvK : AdvK ;
+fun eksentrisyys_NK : NK ;
+fun ekshibitionismi_NK : NK ;
+fun ekshibitionisti_NK : NK ;
+fun ekshibitionistinen_NK : NK ;
+fun eksisteerata_VK : VK ;
+fun eksistenssi_NK : NK ;
+fun eksistentiaalinen_NK : NK ;
+fun eksistentialismi_NK : NK ;
+fun eksistentialisti_NK : NK ;
+fun eksistentialistinen_NK : NK ;
+fun eksistoida_VK : VK ;
+fun eksklusiivinen_NK : NK ;
+fun eksklusiivisuus_NK : NK ;
+fun ekskursio_NK : NK ;
+fun ekskurssi_NK : NK ;
+fun eksogeeninen_NK : NK ;
+fun eksogeenisuus_NK : NK ;
+fun eksoottinen_AK : AK ;
+--+ fun eksoottisesti_AdvK : AdvK ;
+fun eksoottisuus_NK : NK ;
+fun eksotiikka_NK : NK ;
+fun ekspansiivinen_AK : AK ;
+--+ fun ekspansiivisesti_AdvK : AdvK ;
+fun ekspansiivisuus_NK : NK ;
+fun ekspansio_NK : NK ;
+fun ekspatriaatti_NK : NK ;
+fun eksperimentaalinen_NK : NK ;
+fun ekspertti_NK : NK ;
+fun eksplisiittinen_AK : AK ;
+--+ fun eksplisiittisesti_AdvK : AdvK ;
+fun eksplisiittisyys_NK : NK ;
+fun eksponentiaalinen_AK : AK ;
+--+ fun eksponentiaalisesti_AdvK : AdvK ;
+fun eksponentiaalisuus_NK : NK ;
+fun eksponentti_NK : NK ;
+fun ekspressiivinen_AK : AK ;
+--+ fun ekspressiivisesti_AdvK : AdvK ;
+fun ekspressiivisyys_NK : NK ;
+fun ekspressionismi_NK : NK ;
+fun ekspressionisti_NK : NK ;
+fun ekspressionistinen_NK : NK ;
+fun ekstaasi_NK : NK ;
+fun ekstaattinen_AK : AK ;
+--+ fun ekstaattisesti_AdvK : AdvK ;
+fun ekstaattisuus_NK : NK ;
+fun ekstra_NK : NK ;
+fun ekstrakti_NK : NK ;
+fun ekstranet_NK : NK ;
+fun ekstrovertti_NK : NK ;
+fun eksykki_NK : NK ;
+fun eksyksiin_AdvK : AdvK ;
+fun eksyksissa'_AdvK : AdvK ;
+fun eksyksista'_AdvK : AdvK ;
+fun eksymys_NK : NK ;
+fun eksyma'_NK : NK ;
+fun eksytta'a'_VK : VK ;
+fun eksytys_NK : NK ;
+fun eksya'_VK : VK ;
+fun ekumeeninen_AK : AK ;
+--+ fun ekumeenisesti_AdvK : AdvK ;
+fun ekumeenisuus_NK : NK ;
+fun ekumenia_NK : NK ;
+fun ekvaattori_NK : NK ;
+fun ekvivalenssi_NK : NK ;
+fun ekvivalentti_NK : NK ;
+fun ekvivalenttinen_NK : NK ;
+fun elanto_NK : NK ;
+fun elastinen_AK : AK ;
+--+ fun elastisesti_AdvK : AdvK ;
+fun elastisuus_NK : NK ;
+fun elatiivi_NK : NK ;
+fun elatus_NK : NK ;
+fun eldorado_NK : NK ;
+fun ele_NK : NK ;
+fun eleetto'myys_NK : NK ;
+fun eleetto'ma'sti_AdvK : AdvK ;
+fun eleeto'n_NK : NK ;
+fun elefantti_NK : NK ;
+fun eleganssi_NK : NK ;
+fun elegantisti_AdvK : AdvK ;
+fun elegantti_NK : NK ;
+fun eleganttius_NK : NK ;
+fun elegia_NK : NK ;
+fun eleginen_AK : AK ;
+--+ fun elegisesti_AdvK : AdvK ;
+fun elegisyys_NK : NK ;
+fun elehdinta'_NK : NK ;
+fun elehtia'_VK : VK ;
+fun eleinen_AK : AK ;
+--+ fun eleisesti_AdvK : AdvK ;
+fun elektrodi_NK : NK ;
+fun elektroenkefalogrammi_NK : NK ;
+fun elektrokardiogrammi_NK : NK ;
+fun elektrolyysi_NK : NK ;
+fun elektrolyytti_NK : NK ;
+fun elektrolyyttinen_AK : AK ;
+--+ fun elektrolyyttisesti_AdvK : AdvK ;
+fun elektroni_NK : NK ;
+fun elektroniikka_NK : NK ;
+fun elektroninen_AK : AK ;
+--+ fun elektronisesti_AdvK : AdvK ;
+fun elektronivoltti_NK : NK ;
+fun elella'_VK : VK ;
+fun elementaarinen_AK : AK ;
+--+ fun elementaarisesti_AdvK : AdvK ;
+fun elementaarisuus_NK : NK ;
+fun elementti_NK : NK ;
+fun elevaattori_NK : NK ;
+fun eli_AdvK : AdvK ;
+fun eliitti_NK : NK ;
+fun elikko_NK : NK ;
+fun elikka'_AdvK : AdvK ;
+fun eliksiiri_NK : NK ;
+fun elimellinen_AK : AK ;
+--+ fun elimellisesti_AdvK : AdvK ;
+fun elimellisyys_NK : NK ;
+fun eliminaatio_NK : NK ;
+fun eliminoida_VK : VK ;
+fun eliminointi_NK : NK ;
+fun eliminoitua_VK : VK ;
+fun elimisto'_NK : NK ;
+fun elin_NK : NK ;
+fun elinaika_NK : NK ;
+fun elinkelpoistaa_VK : VK ;
+fun elinkelvottomuus_NK : NK ;
+fun elitismi_NK : NK ;
+fun elitistinen_NK : NK ;
+fun elitistisyys_NK : NK ;
+fun elio'_NK : NK ;
+fun elio'sto'_NK : NK ;
+fun elje_NK : NK ;
+fun ellei_AdvK : AdvK ;
+fun ellipsi_NK : NK ;
+fun elliptinen_NK : NK ;
+fun elliptisyys_NK : NK ;
+fun ellottaa_VK : VK ;
+fun ellotus_NK : NK ;
+fun elo_NK : NK ;
+fun eloisa_AK : AK ;
+--+ fun eloisasti_AdvK : AdvK ;
+fun eloisuus_NK : NK ;
+fun eloksoida_VK : VK ;
+fun eloksointi_NK : NK ;
+fun elollinen_NK : NK ;
+fun elollistaa_VK : VK ;
+fun elollisuus_NK : NK ;
+fun eloon_AdvK : AdvK ;
+fun elossa_AdvK : AdvK ;
+fun elostelija_NK : NK ;
+fun elostella_VK : VK ;
+fun elostelu_NK : NK ;
+fun elostua_VK : VK ;
+fun elostuttaa_VK : VK ;
+fun eloton_NK : NK ;
+fun elottomasti_AdvK : AdvK ;
+fun elottomuus_NK : NK ;
+fun elpya'_VK : VK ;
+fun eltaantua_VK : VK ;
+fun elukka_NK : NK ;
+fun elvistella'_VK : VK ;
+fun elvistely_NK : NK ;
+fun elvyke_NK : NK ;
+fun elvytta'a'_VK : VK ;
+fun elvytys_NK : NK ;
+fun ela'hdytta'a'_VK : VK ;
+fun ela'hta'nyt_NK : NK ;
+fun ela'imellinen_AK : AK ;
+--+ fun ela'imellisesti_AdvK : AdvK ;
+fun ela'imellisyys_NK : NK ;
+fun ela'imisto'_NK : NK ;
+fun ela'in_NK : NK ;
+fun ela'ja'_NK : NK ;
+fun ela'ke_NK : NK ;
+fun ela'kela'inen_NK : NK ;
+fun ela'ko'itya'_VK : VK ;
+fun ela'ko'o'n_AdvK : AdvK ;
+fun ela'mykseka's_NK : NK ;
+fun ela'myksellinen_AK : AK ;
+--+ fun ela'myksellisesti_AdvK : AdvK ;
+fun ela'myksellisyys_NK : NK ;
+fun ela'mys_NK : NK ;
+fun ela'ma'_NK : NK ;
+fun ela'ma'kerturi_NK : NK ;
+fun ela'ma'naika_NK : NK ;
+fun ela'ma'nkatsomuksellinen_AK : AK ;
+--+ fun ela'ma'nkatsomuksellisesti_AdvK : AdvK ;
+fun ela'mo'ida'_VK : VK ;
+fun ela'mo'inti_NK : NK ;
+fun ela'tella'_VK : VK ;
+fun ela'tti_NK : NK ;
+fun ela'tta'ja'_NK : NK ;
+fun ela'tta'a'_VK : VK ;
+fun ela'vyys_NK : NK ;
+fun ela'va'_AK : AK ;
+fun ela'va'lta'_AdvK : AdvK ;
+--+ fun ela'va'sti_AdvK : AdvK ;
+fun ela'vo'itta'a'_VK : VK ;
+fun ela'vo'itya'_VK : VK ;
+fun ela'ymys_NK : NK ;
+fun ela'ytya'_VK : VK ;
+fun ela'a'_VK : VK ;
+fun emakko_NK : NK ;
+fun emali_NK : NK ;
+fun emaloida_VK : VK ;
+fun emalointi_NK : NK ;
+fun emansipaatio_NK : NK ;
+fun emansipoida_VK : VK ;
+fun emansipoitua_VK : VK ;
+fun embargo_NK : NK ;
+fun embleemi_NK : NK ;
+fun embryo_NK : NK ;
+fun embryologi_NK : NK ;
+fun embryologia_NK : NK ;
+fun embryologinen_AK : AK ;
+--+ fun embryologisesti_AdvK : AdvK ;
+fun emerita_NK : NK ;
+fun emeritus_NK : NK ;
+fun emi_NK : NK ;
+fun emigrantti_NK : NK ;
+fun emigroitua_VK : VK ;
+fun emiiri_NK : NK ;
+fun eminenssi_NK : NK ;
+fun emintima'_NK : NK ;
+fun emissio_NK : NK ;
+fun emittoida_VK : VK ;
+fun emittointi_NK : NK ;
+fun emio'_NK : NK ;
+fun emmentaali_NK : NK ;
+fun emmental_NK : NK ;
+fun emo_NK : NK ;
+fun emootio_NK : NK ;
+fun emotionaalinen_AK : AK ;
+--+ fun emotionaalisesti_AdvK : AdvK ;
+fun emotionaalisuus_NK : NK ;
+fun empaattinen_AK : AK ;
+--+ fun empaattisesti_AdvK : AdvK ;
+fun empaattisuus_NK : NK ;
+fun empatia_NK : NK ;
+fun empiiri_NK : NK ;
+fun empiirikko_NK : NK ;
+fun empiirinen_AK : AK ;
+--+ fun empiirisesti_AdvK : AdvK ;
+fun empiirisyys_NK : NK ;
+fun empire_NK : NK ;
+fun empiria_NK : NK ;
+fun empirismi_NK : NK ;
+fun empiristi_NK : NK ;
+fun empiristinen_NK : NK ;
+fun empia'_VK : VK ;
+fun emu_NK : NK ;
+fun emulaattori_NK : NK ;
+fun emuloida_VK : VK ;
+fun emulointi_NK : NK ;
+fun emulsio_NK : NK ;
+fun ema'_NK : NK ;
+fun ema'kki_NK : NK ;
+fun ema'ksinen_AK : AK ;
+--+ fun ema'ksisesti_AdvK : AdvK ;
+fun ema'ksisyys_NK : NK ;
+fun ema'nnyys_NK : NK ;
+fun ema'nno'ida'_VK : VK ;
+fun ema'nno'inti_NK : NK ;
+fun ema'nno'itsija'_NK : NK ;
+fun ema'nta'_NK : NK ;
+fun ema's_NK : NK ;
+fun ema'tin_NK : NK ;
+fun enchilada_NK : NK ;
+fun endeeminen_AK : AK ;
+--+ fun endeemisesti_AdvK : AdvK ;
+fun endeemisyys_NK : NK ;
+fun endiivi_NK : NK ;
+fun endogeeninen_NK : NK ;
+fun endogeenisuus_NK : NK ;
+fun endokriininen_NK : NK ;
+fun endokrinologia_NK : NK ;
+fun endokrinologinen_AK : AK ;
+--+ fun endokrinologisesti_AdvK : AdvK ;
+fun endometrioosi_NK : NK ;
+fun endorfiini_NK : NK ;
+fun endoskooppi_NK : NK ;
+fun endoskopia_NK : NK ;
+fun enemmisto'_NK : NK ;
+fun enemmisto'inen_NK : NK ;
+fun enemmisto'la'inen_NK : NK ;
+fun enemmyys_NK : NK ;
+fun enemma'lti_AdvK : AdvK ;
+fun enemma'n_AdvK : AdvK ;
+fun enempi_NK : NK ;
+fun enempa'a'_AdvK : AdvK ;
+fun eneneva'_AK : AK ;
+--+ fun eneneva'sti_AdvK : AdvK ;
+fun enennys_NK : NK ;
+fun enentya'_VK : VK ;
+fun enenta'a'_VK : VK ;
+fun energia_NK : NK ;
+fun energiainen_NK : NK ;
+fun energinen_AK : AK ;
+--+ fun energisesti_AdvK : AdvK ;
+fun energisyys_NK : NK ;
+fun eneta'_VK : VK ;
+fun engelsmanni_NK : NK ;
+fun englanninnos_NK : NK ;
+fun englannintaa_VK : VK ;
+fun englanti_NK : NK ;
+fun englantilaisuus_NK : NK ;
+fun engrammi_NK : NK ;
+fun enimmin_AdvK : AdvK ;
+fun enimmiten_AdvK : AdvK ;
+fun enimma'isaika_NK : NK ;
+fun enimma'israja_NK : NK ;
+fun enimma'ista'a'_VK : VK ;
+fun enimma'kseen_AdvK : AdvK ;
+fun enimma'lti_AdvK : AdvK ;
+fun enimma'lta'a'n_AdvK : AdvK ;
+fun enimma'n_AdvK : AdvK ;
+fun enin_NK : NK ;
+fun eninta'a'n_AdvK : AdvK ;
+fun eniten_AdvK : AdvK ;
+fun enkeli_NK : NK ;
+fun ennakko_NK : NK ;
+fun ennakkoilmoittautuminen_NK : NK ;
+--+ fun ennakkoluuloisesti_AdvK : AdvK ;
+fun ennakkoluuloton_NK : NK ;
+fun ennakkoluulottomasti_AdvK : AdvK ;
+fun ennakkoluulottomuus_NK : NK ;
+fun ennakkoon_AdvK : AdvK ;
+fun ennakkosa'a'sta'minen_NK : NK ;
+fun ennakoida_VK : VK ;
+fun ennakoimaton_NK : NK ;
+fun ennakointi_NK : NK ;
+fun ennakolta_AdvK : AdvK ;
+fun ennakonkanto_NK : NK ;
+fun ennallaan_AdvK : AdvK ;
+fun ennalleen_AdvK : AdvK ;
+fun ennallistaa_VK : VK ;
+fun ennallistus_NK : NK ;
+fun ennalta_AdvK : AdvK ;
+fun ennalta_arvattavuus_NK : NK ;
+fun ennalta_ehka'iseva'_NK : NK ;
+fun enne_NK : NK ;
+fun ennemmin_AdvK : AdvK ;
+fun ennen_AdvK : AdvK ;
+fun ennen_aikaan_AdvK : AdvK ;
+fun ennenaikaisesti_AdvK : AdvK ;
+fun ennen_kaikkea_AdvK : AdvK ;
+fun ennen_kuin_AdvK : AdvK ;
+fun ennen_muinoin_AdvK : AdvK ;
+fun ennenna'kema'tto'ma'sti_AdvK : AdvK ;
+fun ennen_pitka'a'_AdvK : AdvK ;
+fun ennen_vanhaan_AdvK : AdvK ;
+fun ennesta'a'n_AdvK : AdvK ;
+fun ennustaa_VK : VK ;
+fun ennustaja_NK : NK ;
+fun ennustavuus_NK : NK ;
+fun ennuste_NK : NK ;
+fun ennusteellinen_NK : NK ;
+fun ennustella_VK : VK ;
+fun ennustus_NK : NK ;
+fun enna'tta'a'_VK : VK ;
+fun enna'tyksellinen_AK : AK ;
+--+ fun enna'tyksellisesti_AdvK : AdvK ;
+fun enna'tyksellisyys_NK : NK ;
+fun enna'tys_NK : NK ;
+fun enna'tysaika_NK : NK ;
+fun enna'tysma'inen_AK : AK ;
+--+ fun enna'tysma'isesti_AdvK : AdvK ;
+fun eno_1_NK : NK ;
+fun eno_2_NK : NK ;
+fun ensemble_NK : NK ;
+fun ensi_AdvK : AdvK ;
+fun ensiesiintyminen_NK : NK ;
+fun ensikertalainen_NK : NK ;
+fun ensiksi_AdvK : AdvK ;
+fun ensi_ka'dessa'_AdvK : AdvK ;
+--+ fun ensiluokkaisesti_AdvK : AdvK ;
+fun ensimma'inen_NK : NK ;
+fun ensimma'iseksi_AdvK : AdvK ;
+fun ensimma'lta'_AdvK : AdvK ;
+fun ensin_AdvK : AdvK ;
+fun ensinka'a'n_AdvK : AdvK ;
+fun ensin_mainittu_NK : NK ;
+fun ensinna'_AdvK : AdvK ;
+fun ensipa'iva'nkuori_NK : NK ;
+--+ fun ensisijaisesti_AdvK : AdvK ;
+fun ensisijaistaa_VK : VK ;
+fun ensi_sijassa_AdvK : AdvK ;
+fun ensyklopedia_NK : NK ;
+fun enteellinen_AK : AK ;
+--+ fun enteellisesti_AdvK : AdvK ;
+fun enteellisyys_NK : NK ;
+fun enteilla'_VK : VK ;
+fun enteily_NK : NK ;
+fun enteinen_NK : NK ;
+fun entinen_NK : NK ;
+fun entisaika_NK : NK ;
+fun entiselleen_AdvK : AdvK ;
+fun entisella'a'n_AdvK : AdvK ;
+fun entisenlainen_NK : NK ;
+fun entisensa'_AdvK : AdvK ;
+fun entisesta'a'n_AdvK : AdvK ;
+fun entistys_NK : NK ;
+fun entista'a'_VK : VK ;
+fun entisyys_NK : NK ;
+fun entiso'ida'_VK : VK ;
+fun entiteetti_NK : NK ;
+fun entrata_1_VK : VK ;
+fun entrata_2_VK : VK ;
+fun entraus_1_NK : NK ;
+fun entraus_2_NK : NK ;
+fun entrec_te_NK : NK ;
+fun entropia_NK : NK ;
+fun entsyymi_NK : NK ;
+fun entusiasmi_NK : NK ;
+fun entusiasti_NK : NK ;
+fun entusiastinen_NK : NK ;
+fun entuudestaan_AdvK : AdvK ;
+fun enta'_AdvK : AdvK ;
+fun enta'pa'_AdvK : AdvK ;
+fun enta'pa's_AdvK : AdvK ;
+fun enta's_AdvK : AdvK ;
+fun enta'a'_VK : VK ;
+fun ena'a'_AdvK : AdvK ;
+fun epeli_NK : NK ;
+fun epideeminen_NK : NK ;
+fun epidemia_NK : NK ;
+fun epidemiologi_NK : NK ;
+fun epidemiologia_NK : NK ;
+fun epidemiologinen_AK : AK ;
+--+ fun epidemiologisesti_AdvK : AdvK ;
+fun epidermi_NK : NK ;
+fun epigrammi_NK : NK ;
+fun epiikka_NK : NK ;
+fun epikriisi_NK : NK ;
+fun epikurolainen_NK : NK ;
+fun epikurolaisuus_NK : NK ;
+fun epilepsia_NK : NK ;
+fun epileptikko_NK : NK ;
+fun epileptinen_NK : NK ;
+fun epilogi_NK : NK ;
+fun episkopaalinen_NK : NK ;
+fun episodi_NK : NK ;
+fun epistola_NK : NK ;
+fun epiteeli_NK : NK ;
+fun epiteetti_NK : NK ;
+fun epoksimaali_NK : NK ;
+fun epoletti_NK : NK ;
+fun epookki_NK : NK ;
+fun epuu_NK : NK ;
+fun epuuttaa_VK : VK ;
+--+ fun epa'historiallisesti_AdvK : AdvK ;
+fun epa'historiallisuus_NK : NK ;
+fun epa'huomiossa_AdvK : AdvK ;
+fun epa'ilema'tta'_AdvK : AdvK ;
+fun epa'ilevyys_NK : NK ;
+fun epa'ileva'_AK : AK ;
+fun epa'ileva'inen_NK : NK ;
+--+ fun epa'ileva'sti_AdvK : AdvK ;
+fun epa'ilija'_NK : NK ;
+fun epa'illa'_VK : VK ;
+fun epa'ilta'va'_NK : NK ;
+fun epa'ily_NK : NK ;
+fun epa'ilys_NK : NK ;
+fun epa'ilytta'vyys_NK : NK ;
+fun epa'ilytta'va'_AK : AK ;
+--+ fun epa'ilytta'va'sti_AdvK : AdvK ;
+fun epa'ilytta'a'_VK : VK ;
+fun epa'kelpo_NK : NK ;
+--+ fun epa'keskisesti_AdvK : AdvK ;
+fun epa'keskisyys_NK : NK ;
+fun epa'kesko_NK : NK ;
+--+ fun epa'kiitollisesti_AdvK : AdvK ;
+fun epa'kohta_NK : NK ;
+fun epa'ka's_NK : NK ;
+--+ fun epa'luuloisesti_AdvK : AdvK ;
+fun epa'ma'a'ra'istya'_VK : VK ;
+fun epa'onnistuja_NK : NK ;
+--+ fun epa'ortodoksisesti_AdvK : AdvK ;
+--+ fun epa'pa'teva'sti_AdvK : AdvK ;
+fun epa'ro'ida'_VK : VK ;
+fun epa'ro'inti_NK : NK ;
+--+ fun epa'sointuisesti_AdvK : AdvK ;
+fun epa'sointuisuus_NK : NK ;
+fun epa'sopuinen_AK : AK ;
+--+ fun epa'sopuisesti_AdvK : AdvK ;
+--+ fun epa'suhtaisesti_AdvK : AdvK ;
+fun epa'sa'a'tyisyys_NK : NK ;
+--+ fun epa'todenna'ko'isesti_AdvK : AdvK ;
+fun epa'toivoinen_AK : AK ;
+--+ fun epa'toivoisesti_AdvK : AdvK ;
+fun epa'toivoissaan_AdvK : AdvK ;
+fun epa'toivoisuus_NK : NK ;
+fun epa'tyydytta'vyys_NK : NK ;
+fun epa'urheilijamainen_AK : AK ;
+--+ fun epa'urheilijamaisesti_AdvK : AdvK ;
+fun epa'urheilijamaisuus_NK : NK ;
+--+ fun epa'uskoisesti_AdvK : AdvK ;
+fun epa'vakainen_AK : AK ;
+--+ fun epa'vakaisesti_AdvK : AdvK ;
+fun epa'vakaisuus_NK : NK ;
+fun epa'vakaus_NK : NK ;
+fun epa'vireeseen_AdvK : AdvK ;
+fun epa'vireessa'_AdvK : AdvK ;
+--+ fun epa'vireisesti_AdvK : AdvK ;
+fun epa'ys_NK : NK ;
+fun epa'a'ma'tto'myys_NK : NK ;
+fun epa'a'ma'tto'ma'sti_AdvK : AdvK ;
+fun epa'a'ma'to'n_NK : NK ;
+fun erakko_NK : NK ;
+fun erakoitua_VK : VK ;
+fun eranto_NK : NK ;
+fun erehdys_NK : NK ;
+fun erehdytta'a'_VK : VK ;
+fun erehtyma'tto'myys_NK : NK ;
+fun erehtyma'to'n_NK : NK ;
+fun erehtyva'inen_NK : NK ;
+fun erehtyva'isyys_NK : NK ;
+fun erehtya'_VK : VK ;
+fun erektio_NK : NK ;
+fun ergometri_NK : NK ;
+fun ergonomia_NK : NK ;
+fun ergonominen_AK : AK ;
+--+ fun ergonomisesti_AdvK : AdvK ;
+fun ergonomisuus_NK : NK ;
+fun erhe_NK : NK ;
+fun erheellinen_AK : AK ;
+--+ fun erheellisesti_AdvK : AdvK ;
+fun erheellisyys_NK : NK ;
+fun eri_AdvK : AdvK ;
+--+ fun eriaikaisesti_AdvK : AdvK ;
+fun eriarvoistaa_VK : VK ;
+fun eriarvoistua_VK : VK ;
+--+ fun eriasteisesti_AdvK : AdvK ;
+fun erikoinen_AK : AK ;
+--+ fun erikoisesti_AdvK : AdvK ;
+--+ fun erikoislaatuisesti_AdvK : AdvK ;
+fun erikoistaa_VK : VK ;
+fun erikoistua_VK : VK ;
+fun erikoisuus_NK : NK ;
+fun erikokoisuus_NK : NK ;
+fun erikorkuisuus_NK : NK ;
+fun erikseen_AdvK : AdvK ;
+fun erilaistaa_VK : VK ;
+fun erilaistua_VK : VK ;
+fun erilaisuus_NK : NK ;
+fun erilleen_AdvK : AdvK ;
+fun erillinen_NK : NK ;
+fun erillisyys_NK : NK ;
+fun erilla'a'n_AdvK : AdvK ;
+fun eriluonteisuus_NK : NK ;
+--+ fun erimielisesti_AdvK : AdvK ;
+fun erimunaisuus_NK : NK ;
+--+ fun erimuotoisesti_AdvK : AdvK ;
+fun erinimisyys_NK : NK ;
+fun erinomainen_AK : AK ;
+--+ fun erinomaisesti_AdvK : AdvK ;
+fun erinomaisuus_NK : NK ;
+fun erina'inen_NK : NK ;
+fun eriparisuus_NK : NK ;
+fun eriperinta'inen_NK : NK ;
+fun eripituisuus_NK : NK ;
+fun eripura_NK : NK ;
+fun eripurainen_AK : AK ;
+--+ fun eripuraisesti_AdvK : AdvK ;
+fun eripuraisuus_NK : NK ;
+fun eriseurainen_NK : NK ;
+fun eriseuraisuus_NK : NK ;
+fun erisivuisuus_NK : NK ;
+fun eriskummainen_NK : NK ;
+fun eriste_NK : NK ;
+fun eristeinen_NK : NK ;
+fun eristin_NK : NK ;
+fun eristyneisyys_NK : NK ;
+fun eristys_NK : NK ;
+fun eristya'_VK : VK ;
+fun erista'ja'_NK : NK ;
+fun erista'ytya'_VK : VK ;
+fun erista'a'_VK : VK ;
+fun erisuuruisuus_NK : NK ;
+fun erisa'a'tyisyys_NK : NK ;
+--+ fun eritasoisesti_AdvK : AdvK ;
+fun eritasoisuus_NK : NK ;
+fun erite_NK : NK ;
+fun eritella'_VK : VK ;
+fun eritelma'_NK : NK ;
+fun eritoten_AdvK : AdvK ;
+fun erittelija'_NK : NK ;
+fun erittely_NK : NK ;
+fun erittya'_VK : VK ;
+fun eritta'in_1_AdvK : AdvK ;
+fun eritta'in_2_AdvK : AdvK ;
+fun eritta'inkin_AdvK : AdvK ;
+fun eritta'a'_VK : VK ;
+fun erityinen_AK : AK ;
+--+ fun erityisesti_AdvK : AdvK ;
+fun erityiskorvattava_NK : NK ;
+fun eritys_NK : NK ;
+--+ fun erityyppisesti_AdvK : AdvK ;
+fun erityyppisyys_NK : NK ;
+fun erita'_VK : VK ;
+fun eriytta'a'_VK : VK ;
+fun eriytys_NK : NK ;
+fun eriytya'_VK : VK ;
+fun eria'va'_NK : NK ;
+fun erio'_NK : NK ;
+fun erkaantua_VK : VK ;
+fun erkanee_VK : VK ;
+fun erkautua_VK : VK ;
+fun erkkeri_NK : NK ;
+fun ero_NK : NK ;
+fun eroavaisuus_NK : NK ;
+fun eroavuus_NK : NK ;
+fun erogeeninen_NK : NK ;
+--? fun erojaiset_NK : NK ;
+fun eroon_AdvK : AdvK ;
+fun eroottinen_AK : AK ;
+--+ fun eroottisesti_AdvK : AdvK ;
+fun eroottistaa_VK : VK ;
+fun eroottistua_VK : VK ;
+fun eroottisuus_NK : NK ;
+fun erossa_AdvK : AdvK ;
+fun erota_VK : VK ;
+fun erotella_VK : VK ;
+fun erotiikka_NK : NK ;
+fun erotin_NK : NK ;
+fun erotisoida_VK : VK ;
+fun erotisointi_NK : NK ;
+fun erotisoitua_VK : VK ;
+fun erotomaani_NK : NK ;
+fun erotomania_NK : NK ;
+fun erottaa_VK : VK ;
+fun erottamaton_NK : NK ;
+fun erottamattomasti_AdvK : AdvK ;
+fun erottautua_VK : VK ;
+fun erottelu_NK : NK ;
+fun erottua_VK : VK ;
+fun erotus_NK : NK ;
+fun ersa'_NK : NK ;
+fun eruptiivinen_NK : NK ;
+fun erytropoietiini_NK : NK ;
+fun era'_NK : NK ;
+fun era's_NK : NK ;
+fun era'a'nlainen_NK : NK ;
+fun era'a'ntya'_VK : VK ;
+fun esanssi_NK : NK ;
+fun esiin_AdvK : AdvK ;
+fun esiintyja'_NK : NK ;
+fun esiintyma'_NK : NK ;
+fun esiintyvyys_NK : NK ;
+fun esiintya'_VK : VK ;
+fun esikko_NK : NK ;
+fun esikoinen_NK : NK ;
+fun esille_AdvK : AdvK ;
+fun esilla'_AdvK : AdvK ;
+fun esine_NK : NK ;
+fun esineellinen_NK : NK ;
+fun esineellistya'_VK : VK ;
+fun esineellista'a'_VK : VK ;
+fun esineellisyys_NK : NK ;
+fun esineistya'_VK : VK ;
+fun esineista'a'_VK : VK ;
+fun esineisto'_NK : NK ;
+fun esirippu_NK : NK ;
+fun esite_NK : NK ;
+fun esitella'_VK : VK ;
+fun esitelma'_NK : NK ;
+fun esitelmo'ida'_VK : VK ;
+fun esitelmo'ija'_NK : NK ;
+fun esitelmo'inti_NK : NK ;
+fun esitelmo'itsija'_NK : NK ;
+fun esitteille_AdvK : AdvK ;
+fun esitteilla'_AdvK : AdvK ;
+fun esittelija'_NK : NK ;
+fun esittely_NK : NK ;
+fun esitta'ja'_NK : NK ;
+fun esitta'ytya'_VK : VK ;
+fun esitta'a'_VK : VK ;
+fun esityksellinen_NK : NK ;
+fun esitys_NK : NK ;
+fun esita'ytetty_NK : NK ;
+fun eskaaderi_NK : NK ;
+fun eskadroona_NK : NK ;
+fun eskalaatio_NK : NK ;
+fun eskaloida_VK : VK ;
+fun eskalointi_NK : NK ;
+fun eskaloitua_VK : VK ;
+fun eskapismi_NK : NK ;
+fun eskapisti_NK : NK ;
+fun eskapistinen_NK : NK ;
+fun eskarilainen_NK : NK ;
+fun eskatologia_NK : NK ;
+fun eskatologinen_NK : NK ;
+fun eskimo_NK : NK ;
+fun esoteerinen_NK : NK ;
+fun espanja_NK : NK ;
+fun espanjalaisuus_NK : NK ;
+fun espanjatar_NK : NK ;
+fun esperantisti_NK : NK ;
+fun esperanto_NK : NK ;
+fun esplanadi_NK : NK ;
+fun espresso_NK : NK ;
+fun essee_NK : NK ;
+fun esseisti_NK : NK ;
+fun esseistiikka_NK : NK ;
+fun essentiaalinen_NK : NK ;
+fun essiivi_NK : NK ;
+fun essu_NK : NK ;
+fun establishment_NK : NK ;
+fun este_NK : NK ;
+fun esteellinen_NK : NK ;
+fun esteellisyys_NK : NK ;
+fun esteetikko_NK : NK ;
+fun esteettinen_AK : AK ;
+--+ fun esteettisesti_AdvK : AdvK ;
+fun esteettisyys_NK : NK ;
+fun esteetto'myys_NK : NK ;
+fun esteeto'n_NK : NK ;
+fun esteinen_NK : NK ;
+fun estella'_VK : VK ;
+fun estely_NK : NK ;
+fun esteri_NK : NK ;
+fun estetiikka_NK : NK ;
+fun estimaatti_NK : NK ;
+fun estimaattori_NK : NK ;
+fun estimoida_VK : VK ;
+fun estimointi_NK : NK ;
+fun estin_NK : NK ;
+fun esto_NK : NK ;
+fun estoinen_NK : NK ;
+fun estoisuus_NK : NK ;
+fun estoton_NK : NK ;
+fun estottomasti_AdvK : AdvK ;
+fun estottomuus_NK : NK ;
+fun estradi_NK : NK ;
+fun estrogeeni_NK : NK ;
+fun estyma'_NK : NK ;
+fun estyneisyys_NK : NK ;
+fun estya'_VK : VK ;
+fun esta'ja'_NK : NK ;
+fun esta'a'_VK : VK ;
+fun etaani_NK : NK ;
+fun etabloitua_VK : VK ;
+fun etana_NK : NK ;
+fun etanoli_NK : NK ;
+fun etappi_NK : NK ;
+fun eteen_AdvK : AdvK ;
+fun eteeni_NK : NK ;
+fun eteerinen_AK : AK ;
+--+ fun eteerisesti_AdvK : AdvK ;
+fun eteerisyys_NK : NK ;
+fun eteinen_NK : NK ;
+fun eteishalli_NK : NK ;
+fun etela'_NK : NK ;
+fun etela'inen_NK : NK ;
+fun etela'mma'ksi_AdvK : AdvK ;
+fun etela'mma's_AdvK : AdvK ;
+fun etela'mpa'na'_AdvK : AdvK ;
+fun etela'mpa'a'_AdvK : AdvK ;
+fun etela'valtalainen_NK : NK ;
+fun etemma'_AdvK : AdvK ;
+fun etemma'ksi_AdvK : AdvK ;
+fun etemma's_AdvK : AdvK ;
+fun etempa'na'_AdvK : AdvK ;
+fun etempa'a'_AdvK : AdvK ;
+fun etenema'_NK : NK ;
+fun etenija'_NK : NK ;
+fun etenkin_AdvK : AdvK ;
+fun etenka'a'n_AdvK : AdvK ;
+fun etevyys_NK : NK ;
+fun eteva'_AK : AK ;
+fun eteva'mmyys_NK : NK ;
+--+ fun eteva'sti_AdvK : AdvK ;
+fun etiikka_NK : NK ;
+fun etiketti_NK : NK ;
+fun etiketo'ida'_VK : VK ;
+fun etiketo'inti_NK : NK ;
+fun etikka_NK : NK ;
+fun etinen_NK : NK ;
+fun etiologia_NK : NK ;
+fun etiologinen_AK : AK ;
+--+ fun etiologisesti_AdvK : AdvK ;
+fun etia'inen_NK : NK ;
+fun etninen_AK : AK ;
+--+ fun etnisesti_AdvK : AdvK ;
+fun etnografi_NK : NK ;
+fun etnografia_NK : NK ;
+fun etnografinen_AK : AK ;
+--+ fun etnografisesti_AdvK : AdvK ;
+fun etnologi_NK : NK ;
+fun etnologia_NK : NK ;
+fun etnologinen_AK : AK ;
+--+ fun etnologisesti_AdvK : AdvK ;
+fun etoa_VK : VK ;
+fun etruski_NK : NK ;
+fun etsaaja_NK : NK ;
+fun etsata_VK : VK ;
+fun etsaus_NK : NK ;
+fun etsija'_NK : NK ;
+fun etsikko_NK : NK ;
+fun etsikkoaika_NK : NK ;
+fun etsin_NK : NK ;
+fun etsinta'_NK : NK ;
+fun etsiskella'_VK : VK ;
+fun etsiskely_NK : NK ;
+fun etsiva'_NK : NK ;
+fun etsiytya'_VK : VK ;
+fun etsia'_VK : VK ;
+fun etteiko'_AdvK : AdvK ;
+fun etta'_AdvK : AdvK ;
+fun etu_NK : NK ;
+fun etuilija_NK : NK ;
+fun etuilla_VK : VK ;
+fun etuilu_NK : NK ;
+fun etuisuus_NK : NK ;
+fun etukenoinen_NK : NK ;
+fun etuka'teen_AdvK : AdvK ;
+fun etummainen_NK : NK ;
+fun etumus_NK : NK ;
+fun etunena'ssa'_AdvK : AdvK ;
+fun etuoikeuksinen_NK : NK ;
+--+ fun etupainotteisesti_AdvK : AdvK ;
+fun etupainotteisuus_NK : NK ;
+fun etuperin_AdvK : AdvK ;
+fun etusijaistaa_VK : VK ;
+fun etuus_NK : NK ;
+fun etydi_NK : NK ;
+fun etyleeni_NK : NK ;
+fun etymologia_NK : NK ;
+fun etymologinen_AK : AK ;
+--+ fun etymologisesti_AdvK : AdvK ;
+fun eta'inen_AK : AK ;
+--+ fun eta'isesti_AdvK : AdvK ;
+fun eta'isyys_NK : NK ;
+fun eta'ytta'a'_VK : VK ;
+fun eta'a'lle_AdvK : AdvK ;
+fun eta'a'lla'_AdvK : AdvK ;
+fun eta'a'lta'_AdvK : AdvK ;
+fun eta'a'mma'ksi_AdvK : AdvK ;
+fun eta'a'mma's_AdvK : AdvK ;
+fun eta'a'mpa'na'_AdvK : AdvK ;
+fun eta'a'mpa'a'_AdvK : AdvK ;
+fun eta'a'nnytta'a'_VK : VK ;
+fun eta'a'ntya'_VK : VK ;
+fun EU_AdvK : AdvK ;
+fun eufemismi_NK : NK ;
+fun eufemistinen_AK : AK ;
+--+ fun eufemistisesti_AdvK : AdvK ;
+fun euforia_NK : NK ;
+fun euforinen_AK : AK ;
+--+ fun euforisesti_AdvK : AdvK ;
+fun eukalyptus_NK : NK ;
+fun eukko_NK : NK ;
+fun eukkonen_AdvK : AdvK ;
+fun euklidinen_NK : NK ;
+fun eunukki_NK : NK ;
+fun euraasialainen_NK : NK ;
+fun euroaika_NK : NK ;
+fun euroatlanttinen_NK : NK ;
+fun eurokraatti_NK : NK ;
+fun eurooppalainen_NK : NK ;
+fun eurooppalaistua_VK : VK ;
+fun eurooppalaisuus_NK : NK ;
+fun europidinen_NK : NK ;
+fun eurosentrismi_NK : NK ;
+fun eurytmia_NK : NK ;
+fun eutanasia_NK : NK ;
+fun evakko_NK : NK ;
+fun evakkous_NK : NK ;
+fun evakuoida_VK : VK ;
+fun evakuointi_NK : NK ;
+fun evaluoida_VK : VK ;
+fun evaluointi_NK : NK ;
+fun evankelinen_NK : NK ;
+fun evankelioida_VK : VK ;
+fun evankeliointi_NK : NK ;
+fun evankelista_NK : NK ;
+fun evankeliumi_NK : NK ;
+fun evergreen_NK : NK ;
+fun eversti_NK : NK ;
+fun evidenssi_NK : NK ;
+fun evidentti_NK : NK ;
+fun evoluutio_NK : NK ;
+fun eva'_NK : NK ;
+fun eva's_NK : NK ;
+fun eva'stella'_VK : VK ;
+fun eva'stys_NK : NK ;
+fun eva'sta'a'_VK : VK ;
+fun eva'ta'_VK : VK ;
+fun exlibris_NK : NK ;
+fun ex_tempore_AdvK : AdvK ;
+fun faabeli_NK : NK ;
+fun faarao_NK : NK ;
+fun faasi_NK : NK ;
+fun fabuloida_VK : VK ;
+fun fabulointi_NK : NK ;
+fun factoring_NK : NK ;
+fun fagosyytti_NK : NK ;
+fun fagotisti_NK : NK ;
+fun fagotti_NK : NK ;
+fun faija_NK : NK ;
+fun fajanssi_NK : NK ;
+fun fakiiri_NK : NK ;
+fun fakki_NK : NK ;
+fun fakkiintua_VK : VK ;
+fun fakkiutua_VK : VK ;
+fun faksata_VK : VK ;
+fun faksi_NK : NK ;
+fun faksimile_NK : NK ;
+fun fakta_NK : NK ;
+fun faktinen_AK : AK ;
+--+ fun faktisesti_AdvK : AdvK ;
+fun faktori_NK : NK ;
+fun faktuura_NK : NK ;
+fun fakultatiivinen_AK : AK ;
+--+ fun fakultatiivisesti_AdvK : AdvK ;
+fun fakultatiivisuus_NK : NK ;
+fun falangi_NK : NK ;
+fun falangisti_NK : NK ;
+fun fallinen_NK : NK ;
+fun fallos_NK : NK ;
+fun falsetti_NK : NK ;
+fun falsifioida_VK : VK ;
+fun falsifiointi_NK : NK ;
+fun falskata_VK : VK ;
+fun falski_AK : AK ;
+--+ fun falskisti_AdvK : AdvK ;
+fun falskius_NK : NK ;
+fun fan_NK : NK ;
+fun fanaatikko_NK : NK ;
+fun fanaattinen_AK : AK ;
+--+ fun fanaattisesti_AdvK : AdvK ;
+fun fanaattisuus_NK : NK ;
+fun fanatismi_NK : NK ;
+fun fan_club_NK : NK ;
+fun faneeri_NK : NK ;
+fun fanfaari_NK : NK ;
+fun fani_NK : NK ;
+fun fantasia_NK : NK ;
+fun fantastinen_AK : AK ;
+--+ fun fantastisesti_AdvK : AdvK ;
+fun fantastisuus_NK : NK ;
+fun fantisoida_VK : VK ;
+fun fantisointi_NK : NK ;
+fun faradi_NK : NK ;
+fun farao_NK : NK ;
+fun farisealainen_NK : NK ;
+fun farisealaisuus_NK : NK ;
+fun fariseus_NK : NK ;
+fun farkkukangas_NK : NK ;
+--? fun farkut_NK : NK ;
+fun farmakologia_NK : NK ;
+fun farmakologinen_AK : AK ;
+--+ fun farmakologisesti_AdvK : AdvK ;
+fun farmanomi_NK : NK ;
+fun farmari_NK : NK ;
+fun farmaseutti_NK : NK ;
+fun farmasia_NK : NK ;
+fun farmi_NK : NK ;
+fun farssi_NK : NK ;
+fun fasaani_NK : NK ;
+fun fasadi_NK : NK ;
+fun fasismi_NK : NK ;
+fun fasisti_NK : NK ;
+fun fasistinen_NK : NK ;
+fun fast_food_NK : NK ;
+fun fataali_AK : AK ;
+fun fataalinen_AK : AK ;
+--+ fun fataalisesti_AdvK : AdvK ;
+--+ fun fataalisti_AdvK : AdvK ;
+fun fataalisuus_NK : NK ;
+fun fataalius_NK : NK ;
+fun fatalismi_NK : NK ;
+fun fatalisti_NK : NK ;
+fun fatalistinen_AK : AK ;
+--+ fun fatalistisesti_AdvK : AdvK ;
+fun fatalistisuus_NK : NK ;
+fun fatsi_NK : NK ;
+fun fauna_NK : NK ;
+fun fauni_NK : NK ;
+fun federaatio_NK : NK ;
+fun federalismi_NK : NK ;
+fun federalistinen_NK : NK ;
+fun federatiivinen_NK : NK ;
+fun feedback_NK : NK ;
+fun feeniks_NK : NK ;
+fun feijoa_NK : NK ;
+fun femakko_NK : NK ;
+fun feminiini_NK : NK ;
+fun feminiininen_AK : AK ;
+--+ fun feminiinisesti_AdvK : AdvK ;
+fun feminiinisyys_NK : NK ;
+fun feminismi_NK : NK ;
+fun feministi_NK : NK ;
+fun feministinen_AK : AK ;
+--+ fun feministisesti_AdvK : AdvK ;
+fun fenkoli_1_NK : NK ;
+fun fenkoli_2_NK : NK ;
+fun fennismi_NK : NK ;
+fun fennisti_NK : NK ;
+fun fennistiikka_NK : NK ;
+fun fennistinen_AK : AK ;
+--+ fun fennistisesti_AdvK : AdvK ;
+fun fennistisyys_NK : NK ;
+fun fennofiili_NK : NK ;
+fun fennomaani_NK : NK ;
+fun fennomania_NK : NK ;
+fun fennougristi_NK : NK ;
+fun fennougristiikka_NK : NK ;
+fun fenoli_NK : NK ;
+fun fenomenaalinen_AK : AK ;
+--+ fun fenomenaalisesti_AdvK : AdvK ;
+fun fenomenaalisuus_NK : NK ;
+fun fenomenologia_NK : NK ;
+fun fenomenologinen_AK : AK ;
+--+ fun fenomenologisesti_AdvK : AdvK ;
+fun feodaalinen_AK : AK ;
+--+ fun feodaalisesti_AdvK : AdvK ;
+fun feodaalisuus_NK : NK ;
+fun feodalismi_NK : NK ;
+fun feodalistinen_AK : AK ;
+--+ fun feodalistisesti_AdvK : AdvK ;
+fun feodalistisuus_NK : NK ;
+fun fermaatti_NK : NK ;
+fun ferriitti_NK : NK ;
+fun ferrioksidi_NK : NK ;
+fun ferrokloridi_NK : NK ;
+fun fertiili_NK : NK ;
+fun fertiiliys_NK : NK ;
+fun fertiliteetti_NK : NK ;
+fun festari_NK : NK ;
+fun festivaali_NK : NK ;
+fun feta_NK : NK ;
+fun fetisismi_NK : NK ;
+fun fetisisti_NK : NK ;
+fun fetisistinen_NK : NK ;
+fun fetissi_NK : NK ;
+fun fiasko_NK : NK ;
+fun fiba_NK : NK ;
+fun fibata_VK : VK ;
+fun fibaus_NK : NK ;
+fun fibriini_NK : NK ;
+fun fiesta_NK : NK ;
+fun fifty_fifty_AdvK : AdvK ;
+fun figuratiivinen_AK : AK ;
+--+ fun figuratiivisesti_AdvK : AdvK ;
+fun figuratiivisuus_NK : NK ;
+fun figuuri_NK : NK ;
+fun fiiberi_NK : NK ;
+fun fiikus_NK : NK ;
+fun fiilinki_NK : NK ;
+fun fiilis_NK : NK ;
+fun fiini_NK : NK ;
+fun fikka_NK : NK ;
+fun fikkari_NK : NK ;
+fun fiksaatio_NK : NK ;
+fun fiksatiivi_NK : NK ;
+fun fikseerata_VK : VK ;
+fun fikseeraus_NK : NK ;
+fun fiksoida_VK : VK ;
+fun fiksointi_NK : NK ;
+fun fiksoitua_VK : VK ;
+fun fiksu_AK : AK ;
+--+ fun fiksusti_AdvK : AdvK ;
+fun fiksuus_NK : NK ;
+fun fiktiivinen_AK : AK ;
+--+ fun fiktiivisesti_AdvK : AdvK ;
+fun fiktiivisyys_NK : NK ;
+fun fiktio_NK : NK ;
+fun filamentti_NK : NK ;
+fun filantrooppi_NK : NK ;
+fun filantrooppinen_AK : AK ;
+--+ fun filantrooppisesti_AdvK : AdvK ;
+fun filantropia_NK : NK ;
+fun filateelinen_NK : NK ;
+fun filatelia_NK : NK ;
+fun filatelisti_NK : NK ;
+fun filee_NK : NK ;
+fun fileerata_VK : VK ;
+fun fileeraus_NK : NK ;
+fun fileoida_VK : VK ;
+fun fileointi_NK : NK ;
+fun filharmonikko_NK : NK ;
+fun filharmoninen_NK : NK ;
+fun filigraani_NK : NK ;
+fun filistealainen_NK : NK ;
+fun fillari_NK : NK ;
+fun fillaroida_VK : VK ;
+fun fillarointi_NK : NK ;
+fun filmaaja_NK : NK ;
+fun filmaattinen_AK : AK ;
+--+ fun filmaattisesti_AdvK : AdvK ;
+fun filmaattisuus_NK : NK ;
+fun filmata_VK : VK ;
+fun filmatisoida_VK : VK ;
+fun filmatisointi_NK : NK ;
+fun filmaus_NK : NK ;
+fun filmi_NK : NK ;
+fun filminno's_NK : NK ;
+fun filminta'a'_VK : VK ;
+fun filmografia_NK : NK ;
+fun filologi_NK : NK ;
+fun filologia_NK : NK ;
+fun filologinen_AK : AK ;
+--+ fun filologisesti_AdvK : AdvK ;
+fun filosofi_NK : NK ;
+fun filosofia_NK : NK ;
+fun filosofinen_AK : AK ;
+--+ fun filosofisesti_AdvK : AdvK ;
+fun filosofoida_VK : VK ;
+fun filosofointi_NK : NK ;
+fun filtrata_VK : VK ;
+fun filtraus_NK : NK ;
+fun filtteri_NK : NK ;
+fun filtti_NK : NK ;
+fun filunki_NK : NK ;
+fun filuri_NK : NK ;
+fun finaali_NK : NK ;
+fun finaalinen_AK : AK ;
+--+ fun finaalisesti_AdvK : AdvK ;
+fun finaalisuus_NK : NK ;
+fun finalisti_NK : NK ;
+fun finansioida_VK : VK ;
+fun finansiointi_NK : NK ;
+fun finanssit_NK : NK ;
+fun finessi_NK : NK ;
+fun fingelska_NK : NK ;
+fun fingerpori_NK : NK ;
+fun fingerporillinen_NK : NK ;
+fun fingliska_NK : NK ;
+fun finiittinen_NK : NK ;
+fun finiittisyys_NK : NK ;
+fun finis_AdvK : AdvK ;
+fun finito_AdvK : AdvK ;
+fun finni_NK : NK ;
+fun finninen_NK : NK ;
+fun firaabeli_NK : NK ;
+fun firma_NK : NK ;
+fun fissio_NK : NK ;
+fun fisteli_NK : NK ;
+fun flaami_NK : NK ;
+fun flaksi_NK : NK ;
+fun flambeerata_VK : VK ;
+fun flambeeraus_NK : NK ;
+fun flamenco_NK : NK ;
+fun flamingo_NK : NK ;
+fun flanelli_NK : NK ;
+fun flanellinen_NK : NK ;
+fun flegmaatikko_NK : NK ;
+fun flegmaattinen_AK : AK ;
+--+ fun flegmaattisesti_AdvK : AdvK ;
+fun flegmaattisuus_NK : NK ;
+fun flikka_NK : NK ;
+fun flipperi_NK : NK ;
+fun flirtata_VK : VK ;
+fun flirttailla_VK : VK ;
+fun flirttailu_NK : NK ;
+fun flirttaus_NK : NK ;
+fun flirtti_NK : NK ;
+fun flokki_NK : NK ;
+fun floksi_NK : NK ;
+fun floora_NK : NK ;
+fun flopata_VK : VK ;
+fun floppi_NK : NK ;
+fun floretti_NK : NK ;
+fun floriini_NK : NK ;
+fun floristi_NK : NK ;
+fun flunssa_NK : NK ;
+fun flunssainen_NK : NK ;
+fun fluorata_VK : VK ;
+fun fluoraus_NK : NK ;
+fun fluoresenssi_NK : NK ;
+fun fluoresoida_VK : VK ;
+fun fluori_NK : NK ;
+fun fluorittaa_VK : VK ;
+fun fluoritus_NK : NK ;
+fun fluoroida_VK : VK ;
+fun fluorointi_NK : NK ;
+fun flyygeli_NK : NK ;
+fun fobia_NK : NK ;
+fun foinikialainen_NK : NK ;
+fun fokka_NK : NK ;
+fun foksi_NK : NK ;
+fun fokstrotti_NK : NK ;
+fun fokus_NK : NK ;
+fun fokusoida_VK : VK ;
+fun fokusointi_NK : NK ;
+fun folio_NK : NK ;
+fun folioida_VK : VK ;
+fun foliointi_NK : NK ;
+fun foliokoko_NK : NK ;
+fun folk_NK : NK ;
+fun folklore_NK : NK ;
+fun folkloristi_NK : NK ;
+fun folkloristiikka_NK : NK ;
+fun follikkeli_NK : NK ;
+fun fondue_NK : NK ;
+fun fondyy_NK : NK ;
+fun foneemi_NK : NK ;
+fun foneetikko_NK : NK ;
+fun foneettinen_AK : AK ;
+--+ fun foneettisesti_AdvK : AdvK ;
+fun fonetiikka_NK : NK ;
+fun foniatri_NK : NK ;
+fun foniatria_NK : NK ;
+fun foniatrinen_AK : AK ;
+--+ fun foniatrisesti_AdvK : AdvK ;
+fun fonologia_NK : NK ;
+fun fonologinen_AK : AK ;
+--+ fun fonologisesti_AdvK : AdvK ;
+fun fontanelli_NK : NK ;
+fun foorumi_NK : NK ;
+fun force_majeure_NK : NK ;
+fun forelli_NK : NK ;
+fun formaali_AK : AK ;
+fun formaalinen_AK : AK ;
+--+ fun formaalisesti_AdvK : AdvK ;
+fun formaalistaa_VK : VK ;
+--+ fun formaalisti_AdvK : AdvK ;
+fun formaalistus_NK : NK ;
+fun formaalisuus_NK : NK ;
+fun formaalius_NK : NK ;
+fun formaatio_NK : NK ;
+fun formaatti_NK : NK ;
+fun formaldehydi_NK : NK ;
+fun formaliini_NK : NK ;
+fun formalismi_NK : NK ;
+fun formalisoida_VK : VK ;
+fun formalisointi_NK : NK ;
+fun formalisti_NK : NK ;
+fun formalistinen_AK : AK ;
+--+ fun formalistisesti_AdvK : AdvK ;
+fun formalistisuus_NK : NK ;
+fun formatiivinen_NK : NK ;
+fun formatoida_VK : VK ;
+fun formatointi_NK : NK ;
+fun formu_NK : NK ;
+fun formula_NK : NK ;
+fun formuloida_VK : VK ;
+fun formulointi_NK : NK ;
+fun forte_NK : NK ;
+fun fortissimo_NK : NK ;
+fun fortuna_NK : NK ;
+fun fosfaatti_NK : NK ;
+fun fosfaattinen_NK : NK ;
+fun fosforesenssi_NK : NK ;
+fun fosforesoida_VK : VK ;
+fun fosfori_NK : NK ;
+fun fosforoida_VK : VK ;
+fun fosforointi_NK : NK ;
+fun fossiili_NK : NK ;
+fun fossiilinen_NK : NK ;
+fun fossiilistua_VK : VK ;
+fun fossilisoitua_VK : VK ;
+fun foto_NK : NK ;
+fun fotoni_NK : NK ;
+fun fototypia_NK : NK ;
+fun fraasi_NK : NK ;
+fun fragmentaarinen_AK : AK ;
+--+ fun fragmentaarisesti_AdvK : AdvK ;
+fun fragmentaarisuus_NK : NK ;
+fun fragmentti_NK : NK ;
+fun frakki_NK : NK ;
+fun fraktaali_NK : NK ;
+fun fraktio_NK : NK ;
+fun fraktioida_VK : VK ;
+fun fraktiointi_NK : NK ;
+fun fraktuura_NK : NK ;
+fun framilla_AdvK : AdvK ;
+fun framille_AdvK : AdvK ;
+fun franchising_NK : NK ;
+fun frangi_NK : NK ;
+fun frankeerata_VK : VK ;
+fun frankeeraus_NK : NK ;
+fun frankki_NK : NK ;
+fun franseesi_NK : NK ;
+fun fransiskaani_NK : NK ;
+fun fraseerata_VK : VK ;
+fun fraseeraus_NK : NK ;
+fun fraseologia_NK : NK ;
+fun fraseologinen_NK : NK ;
+fun freelance_NK : NK ;
+fun freelancer_NK : NK ;
+fun freesia_NK : NK ;
+fun freestyle_NK : NK ;
+fun fregatti_NK : NK ;
+fun frekvenssi_NK : NK ;
+fun frekvenssinen_NK : NK ;
+fun frekventti_NK : NK ;
+fun freoni_NK : NK ;
+fun fresko_NK : NK ;
+fun freudilainen_NK : NK ;
+fun freudilaisuus_NK : NK ;
+fun frigidi_NK : NK ;
+fun frigiditeetti_NK : NK ;
+fun frigidiys_NK : NK ;
+fun friikki_NK : NK ;
+fun friisi_1_NK : NK ;
+fun friisi_2_NK : NK ;
+fun friisila'inen_NK : NK ;
+fun frikadelli_NK : NK ;
+fun frisbee_NK : NK ;
+fun frisyyri_NK : NK ;
+fun friteerata_VK : VK ;
+fun friteeraus_NK : NK ;
+fun fritsu_NK : NK ;
+fun frontaalinen_AK : AK ;
+--+ fun frontaalisesti_AdvK : AdvK ;
+fun frotee_NK : NK ;
+fun froteinen_NK : NK ;
+fun fruktoosi_NK : NK ;
+fun frustraatio_NK : NK ;
+fun frustroida_VK : VK ;
+fun frustroitua_VK : VK ;
+fun fudata_VK : VK ;
+fun fudia_VK : VK ;
+fun fudis_NK : NK ;
+--? fun fudut_NK : NK ;
+fun fuksi_NK : NK ;
+fun fundamentaalinen_AK : AK ;
+--+ fun fundamentaalisesti_AdvK : AdvK ;
+fun fundamentaalisuus_NK : NK ;
+fun fundamentalismi_NK : NK ;
+fun fundamentalisti_NK : NK ;
+fun fundamentalistinen_AK : AK ;
+--+ fun fundamentalistisesti_AdvK : AdvK ;
+fun funkis_NK : NK ;
+fun funkkis_NK : NK ;
+fun funktio_NK : NK ;
+fun funktionaalinen_AK : AK ;
+--+ fun funktionaalisesti_AdvK : AdvK ;
+fun funktionaalisuus_NK : NK ;
+fun funktionalismi_NK : NK ;
+fun funktionalistinen_AK : AK ;
+--+ fun funktionalistisesti_AdvK : AdvK ;
+fun funktionalistisuus_NK : NK ;
+fun funtsata_VK : VK ;
+fun funtsaus_NK : NK ;
+fun funtsia_VK : VK ;
+fun fuskata_VK : VK ;
+fun fuskaus_NK : NK ;
+fun fusku_NK : NK ;
+fun futaaja_NK : NK ;
+fun futata_VK : VK ;
+fun futia_VK : VK ;
+fun futis_NK : NK ;
+fun futurismi_NK : NK ;
+fun futuristinen_NK : NK ;
+fun futuristisuus_NK : NK ;
+fun futurologi_NK : NK ;
+fun futurologia_NK : NK ;
+fun futurologinen_AK : AK ;
+--+ fun futurologisesti_AdvK : AdvK ;
+fun futuuri_NK : NK ;
+fun fuuga_NK : NK ;
+fun fuusio_NK : NK ;
+fun fuusioida_VK : VK ;
+fun fuusiointi_NK : NK ;
+fun fuusioitua_VK : VK ;
+fun fylli_NK : NK ;
+fun fylogeneesi_NK : NK ;
+--+ fun fylogeneettisesti_AdvK : AdvK ;
+fun fyrkka_NK : NK ;
+fun fysiatri_NK : NK ;
+fun fysiatria_NK : NK ;
+fun fysiatrinen_AK : AK ;
+--+ fun fysiatrisesti_AdvK : AdvK ;
+fun fysiikka_NK : NK ;
+fun fysikaalinen_AK : AK ;
+--+ fun fysikaalisesti_AdvK : AdvK ;
+fun fysiologi_NK : NK ;
+fun fysiologia_NK : NK ;
+fun fysiologinen_AK : AK ;
+--+ fun fysiologisesti_AdvK : AdvK ;
+fun fysiologisuus_NK : NK ;
+fun fytonomi_NK : NK ;
+fun fyysikko_NK : NK ;
+fun fyysinen_AK : AK ;
+--+ fun fyysisesti_AdvK : AdvK ;
+fun fyysisyys_NK : NK ;
+fun fa'a'ri_NK : NK ;
+fun fo'rskotti_NK : NK ;
+fun fo'o'nata_VK : VK ;
+fun fo'o'naus_NK : NK ;
+fun fo'o'ni_NK : NK ;
+fun gaala_NK : NK ;
+fun gabardiini_NK : NK ;
+fun gabro_NK : NK ;
+fun gaeli_NK : NK ;
+fun galaksi_NK : NK ;
+fun galleria_NK : NK ;
+fun galleristi_NK : NK ;
+fun gallialainen_NK : NK ;
+fun gallialaisuus_NK : NK ;
+fun gallona_NK : NK ;
+fun gallup_NK : NK ;
+fun gallupoida_VK : VK ;
+fun gallupointi_NK : NK ;
+fun galvaaninen_AK : AK ;
+--+ fun galvaanisesti_AdvK : AdvK ;
+fun galvanoida_VK : VK ;
+fun galvanointi_NK : NK ;
+fun gambiitti_NK : NK ;
+fun gameetti_NK : NK ;
+fun gamma_NK : NK ;
+fun gammaglobuliini_NK : NK ;
+fun ganglio_NK : NK ;
+fun gangsteri_NK : NK ;
+fun gangsterismi_NK : NK ;
+fun gardenia_NK : NK ;
+fun garderobi_NK : NK ;
+fun gaselli_NK : NK ;
+fun gasti_NK : NK ;
+fun gastronomi_NK : NK ;
+fun gastronomia_NK : NK ;
+fun gastronominen_AK : AK ;
+--+ fun gastronomisesti_AdvK : AdvK ;
+fun gastrula_NK : NK ;
+fun gaucho_NK : NK ;
+fun gaullelainen_NK : NK ;
+fun gaullismi_NK : NK ;
+fun gaullisti_NK : NK ;
+fun gaullistinen_NK : NK ;
+fun gay_NK : NK ;
+fun geeli_NK : NK ;
+fun geeni_NK : NK ;
+fun geenimuokattu_NK : NK ;
+fun geenisto'_NK : NK ;
+fun geimit_NK : NK ;
+fun gei_a_NK : NK ;
+fun geisir_NK : NK ;
+fun gelatiini_NK : NK ;
+fun geminaatta_NK : NK ;
+fun gemmologi_NK : NK ;
+fun gemmologia_NK : NK ;
+fun gemmologinen_AK : AK ;
+--+ fun gemmologisesti_AdvK : AdvK ;
+fun genealogia_NK : NK ;
+fun geneetikko_NK : NK ;
+fun geneettinen_AK : AK ;
+--+ fun geneettisesti_AdvK : AdvK ;
+fun generaattori_NK : NK ;
+fun generalissimus_NK : NK ;
+fun generoida_VK : VK ;
+fun generointi_NK : NK ;
+fun genetiikka_NK : NK ;
+fun genetiivi_NK : NK ;
+fun genever_NK : NK ;
+fun genitaalinen_NK : NK ;
+fun genitaalit_NK : NK ;
+fun genomi_NK : NK ;
+fun genre_NK : NK ;
+fun gentlemanni_NK : NK ;
+fun geodeetti_NK : NK ;
+fun geodeettinen_AK : AK ;
+--+ fun geodeettisesti_AdvK : AdvK ;
+fun geodesia_NK : NK ;
+fun geografia_NK : NK ;
+fun geologi_NK : NK ;
+fun geologia_NK : NK ;
+fun geologinen_AK : AK ;
+--+ fun geologisesti_AdvK : AdvK ;
+fun geometria_NK : NK ;
+fun geometrinen_AK : AK ;
+--+ fun geometrisesti_AdvK : AdvK ;
+fun geometrisuus_NK : NK ;
+--+ fun geomorfologisesti_AdvK : AdvK ;
+fun geosentrinen_NK : NK ;
+fun gepardi_NK : NK ;
+fun gerbera_NK : NK ;
+fun gerbiili_NK : NK ;
+fun gerbilli_NK : NK ;
+fun geriatria_NK : NK ;
+fun geriatrinen_AK : AK ;
+--+ fun geriatrisesti_AdvK : AdvK ;
+fun germaani_NK : NK ;
+fun germaaninen_NK : NK ;
+fun germanisti_NK : NK ;
+fun germanistiikka_NK : NK ;
+fun gerontologia_NK : NK ;
+fun gerontologinen_NK : NK ;
+fun getto_NK : NK ;
+fun gettoistua_VK : VK ;
+fun gettoutua_VK : VK ;
+fun geysir_NK : NK ;
+fun ghetto_NK : NK ;
+fun ghettoutua_VK : VK ;
+fun gibboni_NK : NK ;
+fun giganttinen_AK : AK ;
+--+ fun giganttisesti_AdvK : AdvK ;
+fun giganttisuus_NK : NK ;
+fun gigolo_NK : NK ;
+fun giljotiini_NK : NK ;
+fun gimma_NK : NK ;
+fun ginger_ale_NK : NK ;
+fun gini_NK : NK ;
+fun ginsengjuuri_NK : NK ;
+fun gladiaattori_NK : NK ;
+fun gladiolus_NK : NK ;
+fun glamour_NK : NK ;
+fun glaseerata_VK : VK ;
+fun glaseeraus_NK : NK ;
+fun glasiaalinen_NK : NK ;
+fun glasnost_NK : NK ;
+fun glaukooma_NK : NK ;
+fun glencheck_NK : NK ;
+fun globaali_AK : AK ;
+fun globaalinen_AK : AK ;
+--+ fun globaalisesti_AdvK : AdvK ;
+fun globaalistaa_VK : VK ;
+--+ fun globaalisti_AdvK : AdvK ;
+fun globaalistua_VK : VK ;
+fun globaalisuus_NK : NK ;
+fun globalisoitua_VK : VK ;
+fun gloksinia_NK : NK ;
+fun glooria_NK : NK ;
+fun gloria_NK : NK ;
+fun glukoosi_NK : NK ;
+fun gluteeni_NK : NK ;
+fun gluteeniton_NK : NK ;
+fun glyseriini_NK : NK ;
+fun glyseroli_NK : NK ;
+fun glo'gi_NK : NK ;
+fun gneissi_NK : NK ;
+fun gnostikko_NK : NK ;
+fun gnostilainen_NK : NK ;
+fun gnostilaisuus_NK : NK ;
+fun gnostisismi_NK : NK ;
+fun gnostisistinen_AK : AK ;
+--+ fun gnostisistisesti_AdvK : AdvK ;
+fun gnuu_NK : NK ;
+fun gobeliini_NK : NK ;
+fun go_go_NK : NK ;
+fun golf_NK : NK ;
+fun golfaaja_NK : NK ;
+fun golfata_VK : VK ;
+fun golffari_NK : NK ;
+fun goljatti_NK : NK ;
+fun gondoli_NK : NK ;
+fun gondolieeri_NK : NK ;
+fun gonggongi_NK : NK ;
+fun gongi_NK : NK ;
+fun gonokokki_NK : NK ;
+fun gonorrea_NK : NK ;
+fun goodwill_NK : NK ;
+fun gootti_NK : NK ;
+fun goottilaisuus_NK : NK ;
+fun gorgonzola_NK : NK ;
+fun gorilla_NK : NK ;
+fun gospel_NK : NK ;
+fun gotiikka_NK : NK ;
+fun gouda_NK : NK ;
+--? fun gourmet_NK : NK ;
+fun graafikko_NK : NK ;
+fun graafinen_AK : AK ;
+--+ fun graafisesti_AdvK : AdvK ;
+fun graavata_VK : VK ;
+fun graavi_NK : NK ;
+fun gradu_NK : NK ;
+fun graffiti_NK : NK ;
+fun grafiikka_NK : NK ;
+fun grafiitti_NK : NK ;
+fun grafologi_NK : NK ;
+fun grafologia_NK : NK ;
+fun grafologinen_AK : AK ;
+--+ fun grafologisesti_AdvK : AdvK ;
+fun grahamkeksi_NK : NK ;
+fun gramma_NK : NK ;
+fun grammaattinen_AK : AK ;
+--+ fun grammaattisesti_AdvK : AdvK ;
+fun grammari_NK : NK ;
+fun gramofoni_NK : NK ;
+fun granaatti_NK : NK ;
+fun granadilla_NK : NK ;
+fun graniitti_NK : NK ;
+fun graniittinen_NK : NK ;
+fun grape_NK : NK ;
+fun gratiini_NK : NK ;
+fun gratinoida_VK : VK ;
+fun gratinointi_NK : NK ;
+fun gratisti_NK : NK ;
+fun gravidi_NK : NK ;
+fun graviditeetti_NK : NK ;
+fun gravis_NK : NK ;
+fun gravitaatio_NK : NK ;
+fun gray_NK : NK ;
+fun gregoriaaninen_NK : NK ;
+fun greippi_NK : NK ;
+fun griljeerata_VK : VK ;
+fun grillata_VK : VK ;
+fun grillaus_NK : NK ;
+fun grilli_NK : NK ;
+fun grogi_NK : NK ;
+fun groteski_NK : NK ;
+fun gruy_re_NK : NK ;
+fun gryndata_VK : VK ;
+fun gryndaus_NK : NK ;
+fun grynderi_NK : NK ;
+fun gro'nlanti_NK : NK ;
+fun guano_NK : NK ;
+fun guassi_NK : NK ;
+fun guava_NK : NK ;
+fun gulassi_NK : NK ;
+fun guldeni_NK : NK ;
+fun gurmee_NK : NK ;
+fun guru_NK : NK ;
+fun guttaperkka_NK : NK ;
+fun gynekologi_NK : NK ;
+fun gynekologia_NK : NK ;
+fun gynekologinen_NK : NK ;
+fun gyrokopteri_NK : NK ;
+fun gyroskooppi_NK : NK ;
+fun ga'ngi_NK : NK ;
+fun ha_AdvK : AdvK ;
+fun haa_AdvK : AdvK ;
+fun haahka_NK : NK ;
+fun haahti_NK : NK ;
+fun haahuilla_VK : VK ;
+fun haaksi_NK : NK ;
+fun haaksirikkoinen_NK : NK ;
+fun haaksirikkoutua_VK : VK ;
+fun haalata_VK : VK ;
+fun haalea_NK : NK ;
+fun haalentaa_VK : VK ;
+fun haalentua_VK : VK ;
+fun haaleta_VK : VK ;
+fun haaleus_NK : NK ;
+fun haalia_VK : VK ;
+fun haalistaa_VK : VK ;
+fun haalistua_VK : VK ;
+fun haaltua_VK : VK ;
+fun haamilainen_NK : NK ;
+fun haamu_NK : NK ;
+fun haapa_NK : NK ;
+fun haapainen_NK : NK ;
+fun haapana_NK : NK ;
+fun haara_NK : NK ;
+fun haaraantua_VK : VK ;
+fun haarainen_NK : NK ;
+fun haarake_NK : NK ;
+fun haarakkeinen_NK : NK ;
+fun haarallaan_AdvK : AdvK ;
+fun haarauma_NK : NK ;
+fun haarautua_VK : VK ;
+fun haarautuma_NK : NK ;
+fun haarautumiskohta_NK : NK ;
+fun haaremi_NK : NK ;
+fun haarniska_NK : NK ;
+fun haarniskoida_VK : VK ;
+fun haaroa_VK : VK ;
+fun haaroittaa_VK : VK ;
+fun haaroittua_VK : VK ;
+fun haaroitus_NK : NK ;
+fun haarottaa_VK : VK ;
+fun haarukoida_VK : VK ;
+fun haarukointi_NK : NK ;
+fun haasia_NK : NK ;
+fun haasioida_VK : VK ;
+fun haaska_NK : NK ;
+fun haaskaantua_VK : VK ;
+fun haaskata_VK : VK ;
+fun haaskaus_NK : NK ;
+fun haaskautua_VK : VK ;
+fun haaskio_NK : NK ;
+fun haaskuu_NK : NK ;
+fun haastaa_VK : VK ;
+fun haastaja_NK : NK ;
+fun haastatella_VK : VK ;
+fun haastateltava_NK : NK ;
+fun haastattaa_VK : VK ;
+fun haastattelija_NK : NK ;
+fun haastattelu_NK : NK ;
+fun haastava_NK : NK ;
+fun haastavuus_NK : NK ;
+fun haaste_NK : NK ;
+fun haasteaika_NK : NK ;
+fun haasteellinen_NK : NK ;
+fun haastella_VK : VK ;
+fun haava_1_NK : NK ;
+fun haava_2_AdvK : AdvK ;
+fun haavainen_NK : NK ;
+fun haavakko_NK : NK ;
+fun haavauma_NK : NK ;
+fun haavautua_VK : VK ;
+fun haavautuma_NK : NK ;
+fun haave_NK : NK ;
+fun haaveellinen_AK : AK ;
+--+ fun haaveellisesti_AdvK : AdvK ;
+fun haaveellisuus_NK : NK ;
+fun haaveilija_NK : NK ;
+fun haaveilla_VK : VK ;
+fun haaveilu_NK : NK ;
+fun haaveksia_VK : VK ;
+fun haaveksija_NK : NK ;
+fun haavi_NK : NK ;
+fun haavia_VK : VK ;
+fun haavikko_NK : NK ;
+fun haavisto_NK : NK ;
+fun haavoittaa_VK : VK ;
+fun haavoittua_VK : VK ;
+fun haavoittuva_NK : NK ;
+fun haavoittuvuus_NK : NK ;
+fun haavuri_NK : NK ;
+fun habitaatti_NK : NK ;
+fun habitus_NK : NK ;
+fun hadroni_NK : NK ;
+fun haennainen_NK : NK ;
+fun haenta_NK : NK ;
+fun haeskella_VK : VK ;
+fun haeskelu_NK : NK ;
+fun haettaa_VK : VK ;
+fun haetuttaa_VK : VK ;
+fun hah_AdvK : AdvK ;
+fun hahattaa_VK : VK ;
+fun hahlo_NK : NK ;
+fun hahmo_NK : NK ;
+fun hahmotella_VK : VK ;
+fun hahmotelma_NK : NK ;
+fun hahmottaa_VK : VK ;
+fun hahmotteilla_AdvK : AdvK ;
+fun hahmotteinen_NK : NK ;
+fun hahmottelu_NK : NK ;
+fun hahmottua_VK : VK ;
+fun hahmotus_NK : NK ;
+fun hahmoutua_VK : VK ;
+fun hahtuva_NK : NK ;
+fun hai_NK : NK ;
+fun haihatella_VK : VK ;
+fun haihattelija_NK : NK ;
+fun haihattelu_NK : NK ;
+fun haihdutin_NK : NK ;
+fun haihduttaa_VK : VK ;
+fun haihduttamo_NK : NK ;
+fun haihdutus_NK : NK ;
+fun haihtua_VK : VK ;
+fun haikailla_VK : VK ;
+fun haikailu_NK : NK ;
+fun haikea_AK : AK ;
+--+ fun haikeasti_AdvK : AdvK ;
+fun haikeus_NK : NK ;
+fun haiku_1_NK : NK ;
+fun haiku_2_NK : NK ;
+fun hailakkuus_NK : NK ;
+fun hailea_NK : NK ;
+fun haili_NK : NK ;
+fun haima_NK : NK ;
+fun haipua_VK : VK ;
+fun hairahdus_NK : NK ;
+fun hairahtaa_VK : VK ;
+fun hairahtua_VK : VK ;
+fun hairahtuvainen_NK : NK ;
+fun haiskahtaa_VK : VK ;
+fun haista_VK : VK ;
+fun haistaa_VK : VK ;
+fun haistatella_VK : VK ;
+fun haistattaa_VK : VK ;
+fun haistattelu_NK : NK ;
+fun haistella_VK : VK ;
+fun haistelu_NK : NK ;
+fun haisti_NK : NK ;
+fun haisu_NK : NK ;
+fun haisuliini_NK : NK ;
+fun haitallinen_AK : AK ;
+--+ fun haitallisesti_AdvK : AdvK ;
+fun haitallisuus_NK : NK ;
+fun haitari_NK : NK ;
+fun haitata_VK : VK ;
+fun haitattomasti_AdvK : AdvK ;
+fun haitattomuus_NK : NK ;
+fun haite_NK : NK ;
+fun haitek_NK : NK ;
+fun haitekki_NK : NK ;
+fun haitta_NK : NK ;
+fun haituva_NK : NK ;
+fun haiven_NK : NK ;
+fun haiveninen_NK : NK ;
+fun hajaannus_NK : NK ;
+fun hajaannuttaa_VK : VK ;
+fun hajaantua_VK : VK ;
+fun hajahtaa_VK : VK ;
+fun hajakoko_NK : NK ;
+fun hajalla_AdvK : AdvK ;
+fun hajallaan_AdvK : AdvK ;
+fun hajalle_AdvK : AdvK ;
+fun hajalleen_AdvK : AdvK ;
+fun hajallinen_NK : NK ;
+--+ fun hajamielisesti_AdvK : AdvK ;
+fun hajanainen_AK : AK ;
+--+ fun hajanaisesti_AdvK : AdvK ;
+fun hajanaisuus_NK : NK ;
+fun hajareisin_AdvK : AdvK ;
+fun hajasa'a'rin_AdvK : AdvK ;
+fun hajauma_NK : NK ;
+fun hajauttaa_VK : VK ;
+fun hajautua_VK : VK ;
+fun hajautuma_NK : NK ;
+fun hajautus_NK : NK ;
+fun haje_NK : NK ;
+fun hajonta_NK : NK ;
+fun hajota_VK : VK ;
+fun hajottaa_VK : VK ;
+fun hajottaja_NK : NK ;
+fun hajottamo_NK : NK ;
+fun hajotus_NK : NK ;
+fun haju_NK : NK ;
+fun hajuinen_NK : NK ;
+fun hajustaa_VK : VK ;
+fun hajuste_NK : NK ;
+fun hajuton_NK : NK ;
+fun hajuttomasti_AdvK : AdvK ;
+fun hajuttomuus_NK : NK ;
+fun haka_1_NK : NK ;
+fun haka_2_NK : NK ;
+fun hakanen_NK : NK ;
+fun hakata_VK : VK ;
+fun hakaus_NK : NK ;
+fun hakautua_VK : VK ;
+fun hake_NK : NK ;
+fun hakea_VK : VK ;
+fun hakemisto_NK : NK ;
+fun hakemus_NK : NK ;
+fun haketin_NK : NK ;
+fun hakettaa_VK : VK ;
+fun hakettamo_NK : NK ;
+fun haketus_NK : NK ;
+fun hakeutua_VK : VK ;
+fun hakija_NK : NK ;
+fun hakkaaja_NK : NK ;
+fun hakkaantua_VK : VK ;
+fun hakkailla_VK : VK ;
+fun hakkailu_NK : NK ;
+fun hakkapeliitta_NK : NK ;
+fun hakkaus_NK : NK ;
+fun hakkauttaa_VK : VK ;
+fun hakkautua_VK : VK ;
+fun hakkelus_NK : NK ;
+fun hakkeri_NK : NK ;
+fun hakkeroida_VK : VK ;
+fun hakkerointi_NK : NK ;
+fun hakku_NK : NK ;
+fun hakkuri_NK : NK ;
+fun hakkuu_NK : NK ;
+fun hakkuuttaa_VK : VK ;
+fun hako_NK : NK ;
+fun hakoteille_AdvK : AdvK ;
+fun hakoteilla'_AdvK : AdvK ;
+fun haksahdus_NK : NK ;
+fun haksahtaa_VK : VK ;
+fun haku_NK : NK ;
+fun hakuaika_NK : NK ;
+fun hakuinen_AK : AK ;
+--+ fun hakuisesti_AdvK : AdvK ;
+fun hakuisuus_NK : NK ;
+fun hakusassa_AdvK : AdvK ;
+fun halailla_VK : VK ;
+fun halailu_NK : NK ;
+fun halaista_VK : VK ;
+fun halata_1_VK : VK ;
+fun halata_2_VK : VK ;
+fun halatti_NK : NK ;
+fun halaus_NK : NK ;
+fun halava_NK : NK ;
+fun halia_VK : VK ;
+fun halikkain_AdvK : AdvK ;
+fun haljakka_NK : NK ;
+fun haljas_NK : NK ;
+fun haljeta_VK : VK ;
+fun halju_NK : NK ;
+fun halkaisija_NK : NK ;
+fun halkaista_VK : VK ;
+fun halkaisu_NK : NK ;
+fun halkeama_NK : NK ;
+fun halkeaminen_NK : NK ;
+fun halkeilla_VK : VK ;
+fun halkeilu_NK : NK ;
+fun halki_AdvK : AdvK ;
+fun halkio_NK : NK ;
+fun halkioinen_NK : NK ;
+fun halko_NK : NK ;
+fun halkoa_VK : VK ;
+fun halkoinen_NK : NK ;
+fun halla_NK : NK ;
+fun hallainen_NK : NK ;
+fun hallanvaara_NK : NK ;
+fun hallava_NK : NK ;
+fun halleluja_AdvK : AdvK ;
+fun halli_1_NK : NK ;
+fun halli_2_NK : NK ;
+fun hallinnoida_VK : VK ;
+fun hallinnollinen_AK : AK ;
+--+ fun hallinnollisesti_AdvK : AdvK ;
+fun hallinta_NK : NK ;
+fun hallinto_NK : NK ;
+fun hallita_VK : VK ;
+fun hallitseva_NK : NK ;
+fun hallitsevuus_NK : NK ;
+fun hallitsija_NK : NK ;
+fun hallittavuus_NK : NK ;
+fun hallittu_NK : NK ;
+fun hallitus_NK : NK ;
+fun hallitusaika_NK : NK ;
+fun hallitusti_AdvK : AdvK ;
+fun hallusinaatio_NK : NK ;
+fun hallusinatorinen_NK : NK ;
+fun hallusinogeeni_NK : NK ;
+fun hallussa_AdvK : AdvK ;
+fun hallusta_AdvK : AdvK ;
+fun halma_NK : NK ;
+fun halme_NK : NK ;
+fun halogeeni_NK : NK ;
+fun haloo_NK : NK ;
+fun halpa_NK : NK ;
+--+ fun halpamaisesti_AdvK : AdvK ;
+fun halpamaisuus_NK : NK ;
+fun halpuus_NK : NK ;
+fun halssi_NK : NK ;
+fun halstari_NK : NK ;
+fun halstaroida_VK : VK ;
+fun halsteri_NK : NK ;
+fun halsteroida_VK : VK ;
+fun halstrata_VK : VK ;
+fun haltija_NK : NK ;
+fun haltijatar_NK : NK ;
+fun haltioihinsa_AdvK : AdvK ;
+fun haltioissaan_AdvK : AdvK ;
+fun haltioitua_VK : VK ;
+fun haltuun_AdvK : AdvK ;
+fun halu_NK : NK ;
+fun haluinen_NK : NK ;
+fun halukas_AK : AK ;
+--+ fun halukkaasti_AdvK : AdvK ;
+fun halukkuus_NK : NK ;
+fun halullinen_NK : NK ;
+fun haluta_VK : VK ;
+fun haluton_NK : NK ;
+fun haluttaa_VK : VK ;
+fun haluttava_NK : NK ;
+fun haluttomasti_AdvK : AdvK ;
+fun haluttomuus_NK : NK ;
+fun haluttu_NK : NK ;
+fun halva_NK : NK ;
+fun halvaannuttaa_VK : VK ;
+fun halvaantua_VK : VK ;
+fun halvata_VK : VK ;
+fun halvattu_NK : NK ;
+fun halvaus_NK : NK ;
+fun halvauttaa_VK : VK ;
+fun halvautua_VK : VK ;
+fun halveerata_VK : VK ;
+fun halveksia_VK : VK ;
+fun halveksinta_NK : NK ;
+fun halveksua_VK : VK ;
+fun halveksunta_NK : NK ;
+fun halvennus_NK : NK ;
+fun halventaa_VK : VK ;
+fun halventavasti_AdvK : AdvK ;
+fun halventua_VK : VK ;
+fun halveta_VK : VK ;
+fun hamaan_AdvK : AdvK ;
+fun hamara_NK : NK ;
+fun hamassa_AdvK : AdvK ;
+fun hamasta_AdvK : AdvK ;
+fun hame_NK : NK ;
+fun hameinen_NK : NK ;
+fun hammas_NK : NK ;
+fun hammastaa_VK : VK ;
+fun hammaste_NK : NK ;
+fun hammastella_VK : VK ;
+fun hammastua_VK : VK ;
+fun hammastuksinen_NK : NK ;
+fun hammastus_NK : NK ;
+fun hampaallinen_NK : NK ;
+fun hampaanjuuri_NK : NK ;
+fun hampaaton_NK : NK ;
+fun hampaattomasti_AdvK : AdvK ;
+fun hampaattomuus_NK : NK ;
+fun hampainen_NK : NK ;
+fun hampaisto_NK : NK ;
+fun hamppari_NK : NK ;
+fun hampparoida_VK : VK ;
+fun hamppu_NK : NK ;
+fun hampsia_VK : VK ;
+fun hampurilainen_NK : NK ;
+fun hampurilaisbaari_NK : NK ;
+fun hampuusi_NK : NK ;
+fun hamsteri_NK : NK ;
+fun hamstraaja_NK : NK ;
+fun hamstrata_VK : VK ;
+fun hamuilla_VK : VK ;
+fun hamuta_VK : VK ;
+fun hana_NK : NK ;
+fun hanakasti_AdvK : AdvK ;
+fun hanakka_NK : NK ;
+fun hanakkuus_NK : NK ;
+fun handicap_NK : NK ;
+fun handu_NK : NK ;
+fun hangata_VK : VK ;
+fun hangoitella_VK : VK ;
+fun hangollinen_NK : NK ;
+fun hangota_VK : VK ;
+fun hanhi_NK : NK ;
+fun hanhikki_NK : NK ;
+fun hanikka_NK : NK ;
+fun hanka_NK : NK ;
+fun hankaantua_VK : VK ;
+fun hankaiminen_NK : NK ;
+fun hankain_NK : NK ;
+fun hankainen_NK : NK ;
+fun hankala_NK : NK ;
+fun hankaloittaa_VK : VK ;
+fun hankaloitua_VK : VK ;
+fun hankaluus_NK : NK ;
+fun hankauma_NK : NK ;
+fun hankaus_NK : NK ;
+fun hankauskohta_NK : NK ;
+fun hankautua_VK : VK ;
+fun hankautuma_NK : NK ;
+fun hanke_NK : NK ;
+fun hanki_NK : NK ;
+fun hankiainen_NK : NK ;
+fun hankinnainen_NK : NK ;
+fun hankinta_NK : NK ;
+fun hankinta_aika_NK : NK ;
+fun hankkia_VK : VK ;
+fun hankkija_NK : NK ;
+fun hankkiutua_VK : VK ;
+fun hanko_NK : NK ;
+fun hansa_NK : NK ;
+fun hansikas_NK : NK ;
+fun hanska_NK : NK ;
+fun hanslankari_NK : NK ;
+fun hanti_NK : NK ;
+fun hantlankari_NK : NK ;
+fun hanttapuli_NK : NK ;
+fun hantti_NK : NK ;
+fun hanttiin_AdvK : AdvK ;
+fun hanuri_NK : NK ;
+fun hanuristi_NK : NK ;
+fun hapan_NK : NK ;
+fun hapanjuuri_NK : NK ;
+fun hapannuttaa_VK : VK ;
+fun hapantua_VK : VK ;
+fun haparoida_VK : VK ;
+fun haparointi_NK : NK ;
+fun hapata_VK : VK ;
+fun hapate_NK : NK ;
+fun hapatin_NK : NK ;
+fun hapattaa_VK : VK ;
+fun hapattamaton_NK : NK ;
+fun hapatus_NK : NK ;
+fun hapekas_NK : NK ;
+fun hapera_NK : NK ;
+fun hapero_NK : NK ;
+fun hapertua_VK : VK ;
+fun hapete_NK : NK ;
+fun hapetin_NK : NK ;
+fun hapettaa_VK : VK ;
+fun hapettua_VK : VK ;
+fun hapettuma_NK : NK ;
+fun hapetus_NK : NK ;
+fun haploidi_NK : NK ;
+fun haploidinen_NK : NK ;
+fun hapokas_NK : NK ;
+fun hapoke_NK : NK ;
+fun hapokkuus_NK : NK ;
+fun hapottaa_VK : VK ;
+fun hapottua_VK : VK ;
+fun happamasti_AdvK : AdvK ;
+fun happamaton_NK : NK ;
+fun happamesti_AdvK : AdvK ;
+fun happamoittaa_VK : VK ;
+fun happamoitua_VK : VK ;
+fun happamuus_NK : NK ;
+fun happening_NK : NK ;
+fun happi_NK : NK ;
+fun happo_NK : NK ;
+fun happoinen_NK : NK ;
+fun happoisuus_NK : NK ;
+fun happy_hour_AdvK : AdvK ;
+fun hapro_NK : NK ;
+fun hapsenkakkiainen_NK : NK ;
+fun hapsi_NK : NK ;
+fun hapsikka_NK : NK ;
+fun hapsottaa_VK : VK ;
+fun hapsu_NK : NK ;
+fun hapsuinen_NK : NK ;
+fun hapsullinen_NK : NK ;
+fun hapsuttaa_VK : VK ;
+fun hapuilla_VK : VK ;
+fun hara_NK : NK ;
+fun harajuuri_NK : NK ;
+fun harakka_NK : NK ;
+fun haralla_AdvK : AdvK ;
+fun harallaan_AdvK : AdvK ;
+fun haralle_AdvK : AdvK ;
+fun haralleen_AdvK : AdvK ;
+fun harata_VK : VK ;
+fun haraus_NK : NK ;
+fun harava_NK : NK ;
+fun haravoida_VK : VK ;
+fun hardware_NK : NK ;
+fun harha_NK : NK ;
+fun harhaan_AdvK : AdvK ;
+fun harhaannuttaa_VK : VK ;
+fun harhaantua_VK : VK ;
+fun harhaanvieva'_NK : NK ;
+fun harhailla_VK : VK ;
+fun harhailu_NK : NK ;
+fun harhainen_NK : NK ;
+fun harhama_NK : NK ;
+fun harhassa_AdvK : AdvK ;
+fun harhateille_AdvK : AdvK ;
+fun harhateilla'_AdvK : AdvK ;
+fun harhateilta'_AdvK : AdvK ;
+fun harhauma_NK : NK ;
+fun harhauttaa_VK : VK ;
+fun harhautua_VK : VK ;
+fun harhautuma_NK : NK ;
+fun harhautus_NK : NK ;
+fun harilla_AdvK : AdvK ;
+fun harillaan_AdvK : AdvK ;
+fun harille_AdvK : AdvK ;
+fun harilleen_AdvK : AdvK ;
+fun harittaa_VK : VK ;
+fun haritus_NK : NK ;
+fun harja_NK : NK ;
+fun harjaannus_NK : NK ;
+fun harjaannuttaa_VK : VK ;
+fun harjaantua_VK : VK ;
+fun harjaantumaton_NK : NK ;
+fun harjaantuneisuus_NK : NK ;
+fun harjainen_NK : NK ;
+--? fun harjakaiset_NK : NK ;
+fun harjake_NK : NK ;
+fun harjaksinen_NK : NK ;
+fun harjanne_NK : NK ;
+--? fun harjannostajaiset_NK : NK ;
+fun harjanteinen_NK : NK ;
+fun harjas_NK : NK ;
+fun harjata_VK : VK ;
+fun harjaus_NK : NK ;
+fun harjava_NK : NK ;
+fun harjoite_NK : NK ;
+fun harjoitella_VK : VK ;
+fun harjoitelma_NK : NK ;
+fun harjoittaa_VK : VK ;
+fun harjoittaja_NK : NK ;
+fun harjoittelija_NK : NK ;
+fun harjoittelu_NK : NK ;
+fun harjoitteluaika_NK : NK ;
+fun harjoitus_NK : NK ;
+fun harjoituttaa_VK : VK ;
+fun harju_NK : NK ;
+fun harjus_NK : NK ;
+fun harkinta_NK : NK ;
+fun harkinta_aika_NK : NK ;
+fun harkita_VK : VK ;
+fun harkitsematon_NK : NK ;
+fun harkitsemattomasti_AdvK : AdvK ;
+fun harkitsemattomuus_NK : NK ;
+fun harkitseva_NK : NK ;
+fun harkitsevainen_NK : NK ;
+fun harkitsevaisuus_NK : NK ;
+fun harkitsevuus_NK : NK ;
+fun harkittu_NK : NK ;
+fun harkitusti_AdvK : AdvK ;
+fun harkko_NK : NK ;
+fun harlekiini_NK : NK ;
+fun harmaa_NK : NK ;
+fun harmaahapsinen_NK : NK ;
+fun harmaannuttaa_VK : VK ;
+fun harmaantua_VK : VK ;
+fun harmahtaa_VK : VK ;
+fun harmahtava_NK : NK ;
+fun harmaus_NK : NK ;
+fun harme_NK : NK ;
+fun harmentaa_VK : VK ;
+fun harmentua_VK : VK ;
+fun harmeta_VK : VK ;
+fun harmi_NK : NK ;
+fun harmillinen_NK : NK ;
+fun harmio_NK : NK ;
+fun harmissaan_AdvK : AdvK ;
+fun harmistua_VK : VK ;
+fun harmistuksissaan_AdvK : AdvK ;
+fun harmitella_VK : VK ;
+fun harmiton_NK : NK ;
+fun harmittaa_VK : VK ;
+fun harmoni_NK : NK ;
+fun harmonia_NK : NK ;
+fun harmonikka_NK : NK ;
+fun harmoninen_NK : NK ;
+fun harmonioida_VK : VK ;
+fun harmonisoida_VK : VK ;
+fun harmonisoitua_VK : VK ;
+fun harmonistaa_VK : VK ;
+fun harmonistua_VK : VK ;
+fun haroa_VK : VK ;
+fun harottaa_VK : VK ;
+fun harpata_VK : VK ;
+fun harpikko_NK : NK ;
+fun harpisti_NK : NK ;
+fun harppailla_VK : VK ;
+fun harppaus_NK : NK ;
+fun harppi_NK : NK ;
+fun harppia_VK : VK ;
+fun harppoa_VK : VK ;
+fun harppu_NK : NK ;
+fun harppunoida_VK : VK ;
+fun harppuuna_NK : NK ;
+fun harras_NK : NK ;
+fun harrastaa_VK : VK ;
+fun harrastaja_NK : NK ;
+fun harraste_NK : NK ;
+fun harrastelija_NK : NK ;
+fun harrastella_VK : VK ;
+fun harrastelu_NK : NK ;
+fun harrastua_VK : VK ;
+fun harrastuneisuus_NK : NK ;
+fun harrastus_NK : NK ;
+fun harri_NK : NK ;
+fun harsia_VK : VK ;
+fun harsinta_NK : NK ;
+fun harso_NK : NK ;
+fun harsu_NK : NK ;
+fun harsuuntua_VK : VK ;
+fun hartaasti_AdvK : AdvK ;
+fun hartaus_NK : NK ;
+--? fun harteet_NK : NK ;
+fun harteikas_NK : NK ;
+fun harteinen_NK : NK ;
+fun harteva_NK : NK ;
+fun hartia_NK : NK ;
+fun hartiainen_NK : NK ;
+fun hartiakas_NK : NK ;
+fun hartsaantua_VK : VK ;
+fun hartsata_VK : VK ;
+fun hartsi_NK : NK ;
+fun hartsiintua_VK : VK ;
+fun hartsittaa_VK : VK ;
+fun harus_NK : NK ;
+fun harustaa_VK : VK ;
+fun harva_NK : NK ;
+fun harvaan_AdvK : AdvK ;
+fun harvakseen_AdvK : AdvK ;
+fun harvakseltaan_AdvK : AdvK ;
+fun harvassa_AdvK : AdvK ;
+fun harvemmin_AdvK : AdvK ;
+fun harvempaan_AdvK : AdvK ;
+fun harvennin_NK : NK ;
+fun harvennus_NK : NK ;
+fun harventaa_VK : VK ;
+fun harventaja_NK : NK ;
+fun harventamaton_NK : NK ;
+fun harventua_VK : VK ;
+fun harventuma_NK : NK ;
+fun harvesteri_NK : NK ;
+fun harveta_VK : VK ;
+fun harvinainen_NK : NK ;
+fun harvinaistua_VK : VK ;
+fun harvinaisuus_NK : NK ;
+fun harvoin_AdvK : AdvK ;
+fun harvuinen_NK : NK ;
+fun harvuus_NK : NK ;
+fun hasardi_NK : NK ;
+fun hasis_NK : NK ;
+fun hassahtanut_NK : NK ;
+fun hassahtava_NK : NK ;
+fun hassata_VK : VK ;
+fun hassi_NK : NK ;
+fun hassu_AK : AK ;
+fun hassunkurinen_NK : NK ;
+--+ fun hassusti_AdvK : AdvK ;
+fun hassutella_VK : VK ;
+fun hassuttaa_VK : VK ;
+fun hassuttelu_NK : NK ;
+fun hassutus_NK : NK ;
+fun hatara_AK : AK ;
+--+ fun hatarasti_AdvK : AdvK ;
+fun hataruus_NK : NK ;
+fun hatikka_NK : NK ;
+--? fun hatkat_NK : NK ;
+fun hattara_NK : NK ;
+fun hattu_NK : NK ;
+fun hattuuntua_VK : VK ;
+fun hatuttaa_VK : VK ;
+fun hau_AdvK : AdvK ;
+fun haudata_VK : VK ;
+fun haude_NK : NK ;
+fun haudikas_NK : NK ;
+fun haudonta_NK : NK ;
+fun haudonta_aika_NK : NK ;
+fun hauduttaa_VK : VK ;
+fun haudutus_NK : NK ;
+fun hauis_NK : NK ;
+fun haukahdus_NK : NK ;
+fun haukahtaa_VK : VK ;
+fun haukata_VK : VK ;
+fun haukattava_NK : NK ;
+fun hauki_NK : NK ;
+fun haukka_NK : NK ;
+fun haukkaus_NK : NK ;
+fun haukkoa_VK : VK ;
+fun haukku_1_NK : NK ;
+fun haukku_2_NK : NK ;
+fun haukkua_VK : VK ;
+fun haukotella_VK : VK ;
+fun haukottaa_VK : VK ;
+fun haukottelu_NK : NK ;
+fun haukotus_NK : NK ;
+fun haukotuttaa_VK : VK ;
+fun haukuskella_VK : VK ;
+fun hauli_NK : NK ;
+fun haulikko_NK : NK ;
+fun haura_NK : NK ;
+fun hauras_NK : NK ;
+fun haurastua_VK : VK ;
+fun haurastuttaa_VK : VK ;
+fun hauraus_NK : NK ;
+fun haureellinen_NK : NK ;
+fun haureellisuus_NK : NK ;
+fun haureus_NK : NK ;
+fun hauska_AK : AK ;
+--+ fun hauskasti_AdvK : AdvK ;
+fun hauskuttaa_VK : VK ;
+fun hauskutus_NK : NK ;
+fun hauskuus_NK : NK ;
+fun hauskuuttaa_VK : VK ;
+fun hauskuutus_NK : NK ;
+fun hauta_NK : NK ;
+fun hautaantua_VK : VK ;
+--? fun hautajaiset_NK : NK ;
+fun hautautua_VK : VK ;
+fun hautoa_VK : VK ;
+fun hautomo_NK : NK ;
+fun hautoutua_VK : VK ;
+fun hautua_VK : VK ;
+fun hauva_NK : NK ;
+fun havahduttaa_VK : VK ;
+fun havahtua_VK : VK ;
+fun havainnoida_VK : VK ;
+fun havainnoija_NK : NK ;
+fun havainnointi_NK : NK ;
+fun havainnoitsija_NK : NK ;
+fun havainnollinen_AK : AK ;
+--+ fun havainnollisesti_AdvK : AdvK ;
+fun havainnollistaa_VK : VK ;
+fun havainnollistua_VK : VK ;
+fun havainnollisuus_NK : NK ;
+fun havainto_NK : NK ;
+fun havaita_VK : VK ;
+fun havaittavasti_AdvK : AdvK ;
+fun havaittavuus_NK : NK ;
+fun havas_NK : NK ;
+fun haveri_NK : NK ;
+fun havina_NK : NK ;
+fun havista_VK : VK ;
+fun havisuttaa_VK : VK ;
+fun havitella_VK : VK ;
+fun havittelija_NK : NK ;
+fun havittelu_NK : NK ;
+fun havu_NK : NK ;
+fun havuttaa_VK : VK ;
+fun he_2_AdvK : AdvK ;
+fun heavy_NK : NK ;
+fun hebrea_NK : NK ;
+fun hede_NK : NK ;
+fun hedelmisto'_NK : NK ;
+fun hedelmys_NK : NK ;
+fun hedelma'_NK : NK ;
+fun hedelma'inen_NK : NK ;
+fun hedelma'llinen_AK : AK ;
+--+ fun hedelma'llisesti_AdvK : AdvK ;
+fun hedelma'llisyys_NK : NK ;
+fun hedelma'tto'myys_NK : NK ;
+fun hedelma'to'n_NK : NK ;
+fun hedelmo'ida'_VK : VK ;
+fun hedelmo'inti_NK : NK ;
+fun hedelmo'ittya'_VK : VK ;
+fun hedelmo'itta'a'_VK : VK ;
+fun hedelmo'itys_NK : NK ;
+fun hedelmo'itya'_VK : VK ;
+fun hedoninen_NK : NK ;
+fun hedonismi_NK : NK ;
+fun hedonisti_NK : NK ;
+fun hedonistinen_NK : NK ;
+fun heeros_NK : NK ;
+fun hefta_NK : NK ;
+fun hegemonia_NK : NK ;
+fun heh_AdvK : AdvK ;
+fun hehkeys_NK : NK ;
+fun hehkea'_NK : NK ;
+fun hehku_NK : NK ;
+fun hehkua_VK : VK ;
+fun hehkuttaa_VK : VK ;
+fun hehkuttaja_NK : NK ;
+fun hehkutus_NK : NK ;
+fun hehtaari_NK : NK ;
+fun hehto_NK : NK ;
+fun hei_AdvK : AdvK ;
+fun heijari_NK : NK ;
+fun heijastaa_VK : VK ;
+fun heijaste_NK : NK ;
+fun heijasteinen_NK : NK ;
+fun heijastella_VK : VK ;
+fun heijastelu_NK : NK ;
+fun heijastin_NK : NK ;
+fun heijastua_VK : VK ;
+fun heijastuma_NK : NK ;
+fun heijastus_NK : NK ;
+fun heijata_VK : VK ;
+fun heikenne_NK : NK ;
+fun heikennys_NK : NK ;
+fun heikentyma'_NK : NK ;
+fun heikentya'_VK : VK ;
+fun heikenta'a'_VK : VK ;
+fun heiketa'_VK : VK ;
+fun heikko_NK : NK ;
+fun heikkous_NK : NK ;
+fun heikkovaloinen_NK : NK ;
+fun heikontaa_VK : VK ;
+fun heikontua_VK : VK ;
+fun heikosti_AdvK : AdvK ;
+fun heikota_VK : VK ;
+fun heikottaa_VK : VK ;
+fun heikun_keikun_AdvK : AdvK ;
+fun heika'la'inen_NK : NK ;
+fun heila_NK : NK ;
+fun heilahdella_VK : VK ;
+fun heilahdus_NK : NK ;
+fun heilahdusaika_NK : NK ;
+fun heilahduttaa_VK : VK ;
+fun heilahtaa_VK : VK ;
+fun heilahtelu_NK : NK ;
+fun heilastella_VK : VK ;
+fun heilaus_NK : NK ;
+fun heilautella_VK : VK ;
+fun heilauttaa_VK : VK ;
+fun heilautus_NK : NK ;
+fun heili_NK : NK ;
+fun heilimo'ida'_VK : VK ;
+fun heilua_VK : VK ;
+fun heilunta_NK : NK ;
+fun heiluri_NK : NK ;
+fun heilutella_VK : VK ;
+fun heiluttaa_VK : VK ;
+fun heilutus_NK : NK ;
+fun heimo_NK : NK ;
+fun heimolaisuus_NK : NK ;
+fun heimous_NK : NK ;
+fun heinikko_NK : NK ;
+fun heinikkoinen_NK : NK ;
+fun heinikko'_NK : NK ;
+fun heinittya'_VK : VK ;
+fun heinitta'a'_VK : VK ;
+fun heina'_NK : NK ;
+fun heina'aika_NK : NK ;
+fun heina'inen_NK : NK ;
+fun heippa_AdvK : AdvK ;
+fun heisi_NK : NK ;
+fun heite_NK : NK ;
+fun heitella'_VK : VK ;
+fun heitin_NK : NK ;
+fun heitteille_AdvK : AdvK ;
+fun heitteilla'_AdvK : AdvK ;
+fun heitteilta'_AdvK : AdvK ;
+fun heittelehtia'_VK : VK ;
+fun heittely_NK : NK ;
+fun heittio'_NK : NK ;
+fun heitto_NK : NK ;
+fun heittoinen_NK : NK ;
+fun heittya'_VK : VK ;
+fun heitta'ja'_NK : NK ;
+fun heitta'ytya'_VK : VK ;
+fun heitta'a'_VK : VK ;
+fun heita'tta'a'_VK : VK ;
+fun heivata_VK : VK ;
+fun heivero'inen_NK : NK ;
+fun hekotella_VK : VK ;
+fun hekottaa_VK : VK ;
+fun hekotus_NK : NK ;
+fun heksaedri_NK : NK ;
+fun heksagoni_NK : NK ;
+fun heksagoninen_NK : NK ;
+fun heksaklorofeeni_NK : NK ;
+fun heksametri_NK : NK ;
+fun hektinen_AK : AK ;
+--+ fun hektisesti_AdvK : AdvK ;
+fun hektisyys_NK : NK ;
+fun hekuma_NK : NK ;
+fun hekumallinen_AK : AK ;
+--+ fun hekumallisesti_AdvK : AdvK ;
+fun hekumallisuus_NK : NK ;
+fun hekumoida_VK : VK ;
+fun hela_1_NK : NK ;
+fun hela_2_AdvK : AdvK ;
+fun helainen_NK : NK ;
+fun helakasti_AdvK : AdvK ;
+fun helakka_NK : NK ;
+fun helakkuus_NK : NK ;
+fun hele_NK : NK ;
+fun heleys_NK : NK ;
+fun helea'_AK : AK ;
+--+ fun helea'sti_AdvK : AdvK ;
+fun helibor_NK : NK ;
+fun helikopteri_NK : NK ;
+fun helina'_NK : NK ;
+fun heliosentrinen_NK : NK ;
+fun heliotrooppi_NK : NK ;
+fun heliotrooppinen_NK : NK ;
+fun helistella'_VK : VK ;
+fun helistin_NK : NK ;
+fun helista'_VK : VK ;
+fun helista'a'_VK : VK ;
+fun helisytta'a'_VK : VK ;
+fun helium_NK : NK ;
+fun helkatti_NK : NK ;
+fun helke_NK : NK ;
+fun helkkari_AK : AK ;
+fun helkkarinmoinen_NK : NK ;
+--+ fun helkkaristi_AdvK : AdvK ;
+fun helkkya'_VK : VK ;
+fun helkutti_NK : NK ;
+fun helkynta'_NK : NK ;
+fun helkytella'_VK : VK ;
+fun helkytta'a'_VK : VK ;
+fun helkytys_NK : NK ;
+fun hella_NK : NK ;
+fun hellanlettas_AdvK : AdvK ;
+fun helle_NK : NK ;
+fun helleeni_NK : NK ;
+fun helleeninen_NK : NK ;
+fun hellenismi_NK : NK ;
+fun hellenistinen_NK : NK ;
+fun hellitella'_VK : VK ;
+fun hellitta'ma'tto'myys_NK : NK ;
+fun hellitta'ma'tto'ma'sti_AdvK : AdvK ;
+fun hellitta'ma'to'n_NK : NK ;
+fun hellitta'a'_VK : VK ;
+fun hellita'_VK : VK ;
+fun hellia'_VK : VK ;
+fun helluntai_NK : NK ;
+fun helluntailaisuus_NK : NK ;
+fun hellurei_AdvK : AdvK ;
+fun hellytta'a'_VK : VK ;
+fun hellyys_NK : NK ;
+fun hella'_AK : AK ;
+--+ fun hella'ka'tisesti_AdvK : AdvK ;
+--+ fun hella'sti_AdvK : AdvK ;
+fun hella'ta'_VK : VK ;
+--+ fun hella'varaisesti_AdvK : AdvK ;
+fun hella'varoen_AdvK : AdvK ;
+fun hella'varoin_AdvK : AdvK ;
+fun helma_NK : NK ;
+fun helmainen_NK : NK ;
+fun helmeilla'_VK : VK ;
+fun helmestys_NK : NK ;
+fun helmesta'a'_VK : VK ;
+fun helmi_NK : NK ;
+fun helmikka'_NK : NK ;
+fun helmia'inen_NK : NK ;
+fun helmus_NK : NK ;
+fun helmusta_NK : NK ;
+fun helo_NK : NK ;
+fun heloittaa_VK : VK ;
+fun heloitus_NK : NK ;
+fun helokki_NK : NK ;
+fun helottaa_VK : VK ;
+fun helotus_NK : NK ;
+fun helpi_NK : NK ;
+fun helpontaa_VK : VK ;
+fun helpontua_VK : VK ;
+fun helposti_AdvK : AdvK ;
+fun helpota_VK : VK ;
+fun helpottaa_VK : VK ;
+fun helpottua_VK : VK ;
+--+ fun helpottuneesti_AdvK : AdvK ;
+fun helpottunut_AK : AK ;
+fun helpotus_NK : NK ;
+fun helppo_NK : NK ;
+fun helppoheikki_NK : NK ;
+fun helppolukuisuus_NK : NK ;
+fun helppotajuistaa_VK : VK ;
+fun helppoto'isyys_NK : NK ;
+fun helppous_NK : NK ;
+fun helske_NK : NK ;
+fun helskutti_NK : NK ;
+fun helskytella'_VK : VK ;
+fun helskytta'a'_VK : VK ;
+fun helskytys_NK : NK ;
+fun helskya'_VK : VK ;
+fun helska'hta'a'_VK : VK ;
+fun helska'a'_VK : VK ;
+fun helteinen_AK : AK ;
+--+ fun helteisesti_AdvK : AdvK ;
+fun helteisyys_NK : NK ;
+fun heltta_NK : NK ;
+fun heltyma'to'n_NK : NK ;
+fun heltya'_VK : VK ;
+fun helve_NK : NK ;
+fun helvetillinen_NK : NK ;
+fun helvetinmoinen_NK : NK ;
+fun helvetisti_AdvK : AdvK ;
+fun helvetti_NK : NK ;
+fun hely_NK : NK ;
+fun hela'hdella'_VK : VK ;
+fun hela'hdys_NK : NK ;
+fun hela'hdytta'a'_VK : VK ;
+fun hela'hta'a'_VK : VK ;
+fun hela'ja'a'_VK : VK ;
+fun hela'ytta'a'_VK : VK ;
+fun hemaiseva_AK : AK ;
+--+ fun hemaisevasti_AdvK : AdvK ;
+fun hematiitti_NK : NK ;
+fun hematologia_NK : NK ;
+fun hemisfa'a'ri_NK : NK ;
+fun hemmetinmoinen_NK : NK ;
+fun hemmetisti_AdvK : AdvK ;
+fun hemmetti_NK : NK ;
+fun hemmo_NK : NK ;
+fun hemmotella_VK : VK ;
+fun hemmottelu_NK : NK ;
+fun hemofilia_NK : NK ;
+fun hemoglobiini_NK : NK ;
+fun hemorroidi_NK : NK ;
+fun hempeilla'_VK : VK ;
+fun hempeily_NK : NK ;
+fun hempeys_NK : NK ;
+fun hempea'_AK : AK ;
+--+ fun hempea'sti_AdvK : AdvK ;
+fun hemppo_NK : NK ;
+fun hempukka_NK : NK ;
+fun hengata_VK : VK ;
+fun hengellinen_NK : NK ;
+fun hengellisyys_NK : NK ;
+fun hengenvaara_NK : NK ;
+fun hengenveto_NK : NK ;
+fun hengetto'myys_NK : NK ;
+fun hengetto'ma'sti_AdvK : AdvK ;
+fun hengeta'r_NK : NK ;
+fun hengeto'n_NK : NK ;
+fun hengissa'_AdvK : AdvK ;
+fun hengitta'a'_VK : VK ;
+fun hengitys_NK : NK ;
+fun henga'hdys_NK : NK ;
+fun henga'hdysaika_NK : NK ;
+fun henga'hta'a'_VK : VK ;
+fun henga'stys_NK : NK ;
+fun henga'stytta'a'_VK : VK ;
+fun henga'stya'_VK : VK ;
+fun henkari_NK : NK ;
+fun henkevyys_NK : NK ;
+fun henkeva'_AK : AK ;
+--+ fun henkeva'sti_AdvK : AdvK ;
+fun henkevo'ida'_VK : VK ;
+fun henkevo'itta'a'_VK : VK ;
+fun henkevo'itya'_VK : VK ;
+fun henkea'salpaava_NK : NK ;
+fun henki_NK : NK ;
+fun henkihieveriin_AdvK : AdvK ;
+fun henkihieverissa'_AdvK : AdvK ;
+fun henkiin_AdvK : AdvK ;
+fun henkilo'_NK : NK ;
+fun henkilo'ida'_VK : VK ;
+fun henkilo'inti_NK : NK ;
+fun henkilo'ityma'_NK : NK ;
+fun henkilo'itya'_VK : VK ;
+--+ fun henkilo'kohtaisesti_AdvK : AdvK ;
+fun henkilo'llisyys_NK : NK ;
+fun henkilo'sto'_NK : NK ;
+fun henkilo'ys_NK : NK ;
+fun henkinen_AK : AK ;
+fun henkipatto_NK : NK ;
+--+ fun henkisesti_AdvK : AdvK ;
+fun henkistya'_VK : VK ;
+fun henkista'a'_VK : VK ;
+fun henkisyys_NK : NK ;
+fun henkitoreihin_AdvK : AdvK ;
+fun henkitoreihinsa_AdvK : AdvK ;
+fun henkitoreisiin_AdvK : AdvK ;
+fun henkitoreisiinsa_AdvK : AdvK ;
+fun henkitoreissa_AdvK : AdvK ;
+fun henkitoreissaan_AdvK : AdvK ;
+fun henkia'_VK : VK ;
+fun henkonen_NK : NK ;
+--? fun henkselit_NK : NK ;
+fun henka'illa'_VK : VK ;
+fun henka'ista'_VK : VK ;
+fun henka'isy_NK : NK ;
+fun henka'ys_NK : NK ;
+fun henna_NK : NK ;
+fun hennata_VK : VK ;
+fun hennoa_VK : VK ;
+fun henry_NK : NK ;
+fun hento_NK : NK ;
+fun hentoilla_VK : VK ;
+fun hentoilu_NK : NK ;
+fun hentoinen_NK : NK ;
+fun hentous_NK : NK ;
+fun hep_AdvK : AdvK ;
+fun hepariini_NK : NK ;
+fun hepatiitti_NK : NK ;
+fun hepene_NK : NK ;
+fun hepo_NK : NK ;
+fun heppa_NK : NK ;
+fun heppoinen_AK : AK ;
+--+ fun heppoisesti_AdvK : AdvK ;
+fun heppoisuus_NK : NK ;
+fun heppu_NK : NK ;
+fun heprea_NK : NK ;
+fun hepsankeikka_NK : NK ;
+fun hepuli_NK : NK ;
+fun hera_NK : NK ;
+fun herahdella_VK : VK ;
+fun herahtaa_VK : VK ;
+fun heraldiikka_NK : NK ;
+fun heraldikko_NK : NK ;
+fun heraldinen_NK : NK ;
+fun herauttaa_VK : VK ;
+fun herbaario_NK : NK ;
+fun hereford_NK : NK ;
+fun hereille_AdvK : AdvK ;
+fun hereilla'_AdvK : AdvK ;
+fun hereys_NK : NK ;
+fun herea'_AK : AK ;
+--+ fun herea'sti_AdvK : AdvK ;
+fun herhila'inen_NK : NK ;
+fun heristella'_VK : VK ;
+fun heristys_NK : NK ;
+fun heristya'_VK : VK ;
+fun herista'a'_VK : VK ;
+fun herja_NK : NK ;
+fun herjaaja_NK : NK ;
+fun herjata_VK : VK ;
+fun herjaus_NK : NK ;
+fun herjeta'_VK : VK ;
+fun herkentya'_VK : VK ;
+fun herkenta'a'_VK : VK ;
+fun herketa'_VK : VK ;
+fun herkea'ma'tta'_AdvK : AdvK ;
+fun herkea'ma'tto'myys_NK : NK ;
+fun herkea'ma'tto'ma'sti_AdvK : AdvK ;
+fun herkea'ma'to'n_NK : NK ;
+fun herkiste_NK : NK ;
+fun herkistella'_VK : VK ;
+fun herkistely_NK : NK ;
+fun herkistyma'_NK : NK ;
+fun herkistya'_VK : VK ;
+fun herkista'a'_VK : VK ;
+fun herkku_NK : NK ;
+fun herkkyys_NK : NK ;
+fun herkka'_NK : NK ;
+fun herkullinen_AK : AK ;
+--+ fun herkullisesti_AdvK : AdvK ;
+fun herkullisuus_NK : NK ;
+fun herkutella_VK : VK ;
+fun herkuttelija_NK : NK ;
+fun herkuttelu_NK : NK ;
+fun herka'sti_AdvK : AdvK ;
+fun hermafrodiitti_NK : NK ;
+fun hermafrodiittinen_NK : NK ;
+fun hermeettinen_AK : AK ;
+--+ fun hermeettisesti_AdvK : AdvK ;
+fun hermeneutiikka_NK : NK ;
+fun hermeneuttinen_NK : NK ;
+fun hermo_NK : NK ;
+fun hermoilla_VK : VK ;
+fun hermoinen_NK : NK ;
+fun hermoisuus_NK : NK ;
+fun hermosto_NK : NK ;
+fun hermostollinen_NK : NK ;
+fun hermostua_VK : VK ;
+fun hermostuksissaan_AdvK : AdvK ;
+--+ fun hermostuneesti_AdvK : AdvK ;
+fun hermostuneisuus_NK : NK ;
+fun hermostunut_AK : AK ;
+fun hermostus_NK : NK ;
+fun hermostuttaa_VK : VK ;
+fun hermoton_NK : NK ;
+fun hermottaa_VK : VK ;
+fun hermottua_VK : VK ;
+fun hermotus_NK : NK ;
+fun herne_NK : NK ;
+fun heroiini_NK : NK ;
+fun heroinisti_NK : NK ;
+fun heroismi_NK : NK ;
+fun herooinen_NK : NK ;
+fun herpaannus_NK : NK ;
+fun herpaannuttaa_VK : VK ;
+fun herpaantua_VK : VK ;
+fun herpauttaa_VK : VK ;
+fun herpautua_VK : VK ;
+fun herpes_NK : NK ;
+fun herra_NK : NK ;
+fun herrajesta_AdvK : AdvK ;
+fun herranen_NK : NK ;
+fun herranjesta_AdvK : AdvK ;
+fun herraskainen_NK : NK ;
+fun herraskaisesti_AdvK : AdvK ;
+fun herrastella_VK : VK ;
+fun herrastelu_NK : NK ;
+fun herraus_NK : NK ;
+fun herrnhutilainen_NK : NK ;
+fun herrnhutilaisuus_NK : NK ;
+fun herroitella_VK : VK ;
+fun herroittelu_NK : NK ;
+fun herruus_NK : NK ;
+fun hersya'_VK : VK ;
+fun hertsi_NK : NK ;
+fun hertta_NK : NK ;
+fun herttainen_NK : NK ;
+fun herttaisesti_AdvK : AdvK ;
+fun herttaisuus_NK : NK ;
+fun herttamainen_NK : NK ;
+fun herttaa'ssa'_NK : NK ;
+fun herttua_NK : NK ;
+fun herttuatar_NK : NK ;
+fun herua_VK : VK ;
+fun herukka_NK : NK ;
+fun heruttaa_VK : VK ;
+fun herutus_NK : NK ;
+fun hervahtaa_VK : VK ;
+fun hervota_VK : VK ;
+fun hervoton_NK : NK ;
+fun hervottomasti_AdvK : AdvK ;
+fun hervottomuus_NK : NK ;
+fun hera'illa'_VK : VK ;
+fun hera'nnyt_NK : NK ;
+fun hera'nna'inen_NK : NK ;
+fun hera'nna'isyys_NK : NK ;
+fun hera'te_NK : NK ;
+fun hera'tella'_VK : VK ;
+fun hera'tta'ja'_NK : NK ;
+fun hera'tta'a'_VK : VK ;
+fun hera'tys_NK : NK ;
+fun hera'ta'_VK : VK ;
+fun hera'a'mo'_NK : NK ;
+fun hetaira_NK : NK ;
+fun hetale_NK : NK ;
+fun hete_NK : NK ;
+fun heteinen_NK : NK ;
+fun heteka_NK : NK ;
+fun hetero_NK : NK ;
+fun heterogamia_NK : NK ;
+fun heterogeeninen_NK : NK ;
+fun heterogeenisuus_NK : NK ;
+fun heteroseksuaali_NK : NK ;
+fun heterotsygootti_NK : NK ;
+fun heterotsygoottinen_NK : NK ;
+fun heti_AdvK : AdvK ;
+fun hetimmiten_AdvK : AdvK ;
+fun hetio'_NK : NK ;
+fun hetkahtaa_VK : VK ;
+fun hetkauttaa_VK : VK ;
+fun hetkellinen_NK : NK ;
+fun hetkellisesti_AdvK : AdvK ;
+fun hetki_NK : NK ;
+fun hetkinen_NK : NK ;
+fun hetkinen_NK : NK ;
+fun hetkitta'in_AdvK : AdvK ;
+fun hetkitta'inen_NK : NK ;
+fun hetkua_VK : VK ;
+fun hetkutella_VK : VK ;
+fun hetkuttaa_VK : VK ;
+fun hetkutus_NK : NK ;
+fun hetteikko'_NK : NK ;
+fun hetteinen_NK : NK ;
+fun hetula_NK : NK ;
+fun hevi_NK : NK ;
+fun hevilla'_AdvK : AdvK ;
+fun hevin_AdvK : AdvK ;
+fun hevonen_NK : NK ;
+fun hevoskuuri_NK : NK ;
+fun hevospari_NK : NK ;
+fun hevostella_VK : VK ;
+fun hi_AdvK : AdvK ;
+fun hibiskus_NK : NK ;
+fun hidalgo_NK : NK ;
+fun hidas_NK : NK ;
+fun hidastaa_VK : VK ;
+fun hidaste_NK : NK ;
+fun hidastella_VK : VK ;
+fun hidastelu_NK : NK ;
+fun hidastin_NK : NK ;
+fun hidastua_VK : VK ;
+fun hidastus_NK : NK ;
+fun hidastuttaa_VK : VK ;
+fun hidastuvuus_NK : NK ;
+fun hie_NK : NK ;
+fun hieho_NK : NK ;
+fun hiekka_NK : NK ;
+fun hiekkahentunen_NK : NK ;
+fun hiekkainen_NK : NK ;
+fun hiekoitin_NK : NK ;
+fun hiekoittaa_VK : VK ;
+fun hieman_AdvK : AdvK ;
+fun hieno_AK : AK ;
+fun hienoinen_AK : AK ;
+--+ fun hienoisesti_AdvK : AdvK ;
+fun hienokseltaan_AdvK : AdvK ;
+fun hienonnin_NK : NK ;
+fun hienonnus_NK : NK ;
+fun hienontaa_VK : VK ;
+fun hienontua_VK : VK ;
+fun hienostelija_NK : NK ;
+fun hienostella_VK : VK ;
+--+ fun hienosti_AdvK : AdvK ;
+fun hienostua_VK : VK ;
+--+ fun hienostuneesti_AdvK : AdvK ;
+fun hienostuneisuus_NK : NK ;
+fun hienostunut_AK : AK ;
+fun hienota_VK : VK ;
+--+ fun hienotunteisesti_AdvK : AdvK ;
+fun hienous_NK : NK ;
+--+ fun hienovaraisesti_AdvK : AdvK ;
+fun hieraista_VK : VK ;
+fun hierarkia_NK : NK ;
+fun hierarkkinen_NK : NK ;
+fun hieroa_VK : VK ;
+fun hieroglyfi_NK : NK ;
+fun hieroja_NK : NK ;
+fun hieronta_NK : NK ;
+fun hieroskella_VK : VK ;
+fun hierottaa_VK : VK ;
+fun hieroutua_VK : VK ;
+fun hieroutuma_NK : NK ;
+fun hierre_NK : NK ;
+fun hierrin_NK : NK ;
+fun hierto_NK : NK ;
+fun hiertyma'_NK : NK ;
+fun hiertya'_VK : VK ;
+fun hierta'mo'_NK : NK ;
+fun hierta'a'_VK : VK ;
+fun hiestya'_VK : VK ;
+fun hiesta'a'_VK : VK ;
+fun hiesu_NK : NK ;
+fun hieta_NK : NK ;
+fun hietainen_NK : NK ;
+fun hietikko_NK : NK ;
+fun hietikkoinen_NK : NK ;
+fun hievahdus_NK : NK ;
+fun hievahtaa_VK : VK ;
+fun hievauttaa_VK : VK ;
+fun hiffata_VK : VK ;
+fun hifi_NK : NK ;
+fun high_tech_NK : NK ;
+fun hiha_NK : NK ;
+fun hihainen_NK : NK ;
+fun hihallinen_NK : NK ;
+fun hihastin_NK : NK ;
+fun hi_hat_NK : NK ;
+fun hihaton_NK : NK ;
+fun hihhuli_NK : NK ;
+fun hihhuloida_VK : VK ;
+fun hihitella'_VK : VK ;
+fun hihitta'a'_VK : VK ;
+fun hihitys_NK : NK ;
+fun hihkaista_VK : VK ;
+fun hihkaisu_NK : NK ;
+fun hihkua_VK : VK ;
+fun hihkunta_NK : NK ;
+fun hihna_NK : NK ;
+fun hihnoittaa_VK : VK ;
+fun hihnoitus_NK : NK ;
+fun hiihdella'_VK : VK ;
+fun hiihdin_NK : NK ;
+fun hiihda'nta'_NK : NK ;
+--? fun hiihtarit_NK : NK ;
+fun hiihtely_NK : NK ;
+fun hiihto_NK : NK ;
+fun hiihta'ja'_NK : NK ;
+fun hiihta'a'_VK : VK ;
+fun hiilettya'_VK : VK ;
+fun hiiletta'a'_VK : VK ;
+fun hiiletys_NK : NK ;
+fun hiili_NK : NK ;
+fun hiilidioksidi_NK : NK ;
+fun hiilimonoksidi_NK : NK ;
+fun hiilinen_NK : NK ;
+fun hiilisto'_NK : NK ;
+fun hiilitetrakloridi_NK : NK ;
+fun hiillos_NK : NK ;
+fun hiillostaa_VK : VK ;
+fun hiillostua_VK : VK ;
+fun hiillytta'a'_VK : VK ;
+fun hiilto_NK : NK ;
+fun hiiltya'_VK : VK ;
+fun hiilta'a'_VK : VK ;
+fun hiilusta_NK : NK ;
+fun hiiop_AdvK : AdvK ;
+fun hiipata_VK : VK ;
+fun hiipiva'_AK : AK ;
+--+ fun hiipiva'sti_AdvK : AdvK ;
+fun hiipia'_VK : VK ;
+fun hiippa_NK : NK ;
+fun hiippailija_NK : NK ;
+fun hiippailla_VK : VK ;
+fun hiippailu_NK : NK ;
+fun hiippari_NK : NK ;
+fun hiipua_VK : VK ;
+fun hiirakko_NK : NK ;
+fun hiiri_NK : NK ;
+fun hiirulainen_NK : NK ;
+fun hiisi_NK : NK ;
+fun hiiskahdus_NK : NK ;
+fun hiiskahtaa_VK : VK ;
+fun hiiskaus_NK : NK ;
+fun hiiskua_VK : VK ;
+fun hiiskumaton_NK : NK ;
+fun hiitata_VK : VK ;
+fun hiitti_NK : NK ;
+fun hiiva_NK : NK ;
+fun hiivata_VK : VK ;
+fun hiivatinmoinen_NK : NK ;
+fun hiivatisti_AdvK : AdvK ;
+fun hiivatti_NK : NK ;
+fun hiivinta'_NK : NK ;
+fun hiiviskella'_VK : VK ;
+fun hiiviskely_NK : NK ;
+fun hikeentya'_VK : VK ;
+fun hikevyys_NK : NK ;
+fun hikeva'_NK : NK ;
+fun hikeytya'_VK : VK ;
+fun hiki_NK : NK ;
+fun hikinen_NK : NK ;
+fun hikipa'issa'_AdvK : AdvK ;
+fun hikisyys_NK : NK ;
+fun hikka_NK : NK ;
+fun hikkori_NK : NK ;
+fun hikoilla_VK : VK ;
+fun hikoilu_NK : NK ;
+fun hikoiluttaa_VK : VK ;
+fun hila_NK : NK ;
+fun hilata_VK : VK ;
+fun hilaus_NK : NK ;
+fun hilautua_VK : VK ;
+fun hilavitkutin_NK : NK ;
+fun hile_NK : NK ;
+fun hiljaa_AdvK : AdvK ;
+fun hiljainen_AK : AK ;
+--+ fun hiljaisesti_AdvK : AdvK ;
+fun hiljaisuus_NK : NK ;
+fun hiljakkoin_AdvK : AdvK ;
+fun hiljakseen_AdvK : AdvK ;
+fun hiljalleen_AdvK : AdvK ;
+fun hiljan_AdvK : AdvK ;
+fun hiljattain_AdvK : AdvK ;
+fun hiljennys_NK : NK ;
+fun hiljentya'_VK : VK ;
+fun hiljenta'a'_VK : VK ;
+fun hiljeta'_VK : VK ;
+fun hilkka_NK : NK ;
+fun hilkulla_AdvK : AdvK ;
+fun hilla_NK : NK ;
+fun hilleri_NK : NK ;
+fun hillinta'_NK : NK ;
+fun hillitty_NK : NK ;
+fun hillitto'ma'sti_AdvK : AdvK ;
+fun hillitysti_AdvK : AdvK ;
+fun hillita'_VK : VK ;
+fun hillito'n_NK : NK ;
+fun hillo_NK : NK ;
+fun hilloke_NK : NK ;
+fun hillota_VK : VK ;
+fun hilloutua_VK : VK ;
+fun hillua_VK : VK ;
+fun hilpaista_VK : VK ;
+fun hilpari_NK : NK ;
+fun hilpeys_NK : NK ;
+fun hilpea'_AK : AK ;
+--+ fun hilpea'sti_AdvK : AdvK ;
+fun hilse_NK : NK ;
+fun hilsehtia'_VK : VK ;
+fun hilseilla'_VK : VK ;
+fun hilseily_NK : NK ;
+fun hilseinen_NK : NK ;
+fun hilsettya'_VK : VK ;
+--? fun hilut_NK : NK ;
+fun hima_NK : NK ;
+fun himmeli_NK : NK ;
+fun himmennin_NK : NK ;
+fun himmennys_NK : NK ;
+fun himmentya'_VK : VK ;
+fun himmenta'a'_VK : VK ;
+fun himmeta'_VK : VK ;
+fun himmeys_NK : NK ;
+fun himmea'_AK : AK ;
+--+ fun himmea'sti_AdvK : AdvK ;
+fun himo_NK : NK ;
+fun himoinen_NK : NK ;
+fun himoita_VK : VK ;
+fun himokas_AK : AK ;
+--+ fun himokkaasti_AdvK : AdvK ;
+fun himokkuus_NK : NK ;
+fun himota_VK : VK ;
+fun himottaa_VK : VK ;
+fun himphamppu_NK : NK ;
+fun himpun_AdvK : AdvK ;
+fun hinaaja_NK : NK ;
+fun hinata_VK : VK ;
+fun hinaus_NK : NK ;
+fun hinauttaa_VK : VK ;
+fun hinautua_VK : VK ;
+fun hindi_NK : NK ;
+fun hindu_NK : NK ;
+fun hindulaisuus_NK : NK ;
+fun hindustani_NK : NK ;
+fun hinkalo_NK : NK ;
+fun hinkata_VK : VK ;
+fun hinkki_NK : NK ;
+fun hinku_NK : NK ;
+fun hinkua_VK : VK ;
+fun hinnakas_NK : NK ;
+fun hinnasto_NK : NK ;
+fun hinnoitella_VK : VK ;
+fun hinnoittaa_VK : VK ;
+fun hinnoittelu_NK : NK ;
+fun hinnoitus_NK : NK ;
+fun hinta_NK : NK ;
+fun hintainen_NK : NK ;
+fun hintava_NK : NK ;
+fun hintelyys_NK : NK ;
+fun hintela'_NK : NK ;
+fun hinttari_NK : NK ;
+fun hintti_NK : NK ;
+fun hinttiys_NK : NK ;
+fun hioa_VK : VK ;
+fun hioke_NK : NK ;
+fun hiomakangas_NK : NK ;
+fun hiomaton_NK : NK ;
+fun hiomo_NK : NK ;
+fun hionta_NK : NK ;
+fun hiostaa_VK : VK ;
+fun hiostua_VK : VK ;
+fun hiostus_NK : NK ;
+fun hiostuttaa_VK : VK ;
+fun hiota_VK : VK ;
+fun hiottaa_1_VK : VK ;
+fun hiottaa_2_VK : VK ;
+fun hioutua_VK : VK ;
+fun hip_AdvK : AdvK ;
+fun hipaista_VK : VK ;
+fun hipaisu_NK : NK ;
+--? fun hipat_NK : NK ;
+fun hipelo'ida'_VK : VK ;
+fun hiphop_NK : NK ;
+fun hipia'_NK : NK ;
+fun hipoa_VK : VK ;
+fun hippa_NK : NK ;
+fun hippasilla_AdvK : AdvK ;
+fun hippasille_AdvK : AdvK ;
+fun hippi_NK : NK ;
+fun hippia'inen_NK : NK ;
+fun hippodromi_NK : NK ;
+fun hippu_NK : NK ;
+--? fun hippulat_NK : NK ;
+fun hipsia'_VK : VK ;
+fun hipsutella_VK : VK ;
+fun hipsuttaa_VK : VK ;
+fun hipsuttelu_NK : NK ;
+fun hipsutus_NK : NK ;
+fun hirmu_NK : NK ;
+fun hirmuaika_NK : NK ;
+fun hirmuinen_AK : AK ;
+--+ fun hirmuisesti_AdvK : AdvK ;
+fun hirmuisuus_NK : NK ;
+fun hirmustua_VK : VK ;
+fun hirnahdella_VK : VK ;
+fun hirnahdus_NK : NK ;
+fun hirnahtaa_VK : VK ;
+fun hirnua_VK : VK ;
+fun hirnunta_NK : NK ;
+fun hirsi_NK : NK ;
+fun hirsinen_NK : NK ;
+fun hirssi_NK : NK ;
+fun hirtehinen_NK : NK ;
+fun hirtto_NK : NK ;
+fun hirttya'_VK : VK ;
+fun hirtta'ma'to'n_NK : NK ;
+fun hirtta'ytya'_VK : VK ;
+fun hirtta'a'_VK : VK ;
+fun hirta'tta'a'_VK : VK ;
+fun hirvas_NK : NK ;
+fun hirvenjuuri_NK : NK ;
+fun hirventalja_NK : NK ;
+fun hirvenvasa_NK : NK ;
+fun hirvestys_NK : NK ;
+fun hirvesta'a'_VK : VK ;
+fun hirveta'_VK : VK ;
+fun hirveys_NK : NK ;
+fun hirvea'_AK : AK ;
+--+ fun hirvea'sti_AdvK : AdvK ;
+fun hirvi_NK : NK ;
+fun hirvitella'_VK : VK ;
+fun hirvitta'vyys_NK : NK ;
+fun hirvitta'va'_AK : AK ;
+--+ fun hirvitta'va'sti_AdvK : AdvK ;
+fun hirvitta'a'_VK : VK ;
+fun hirvita'_VK : VK ;
+fun hirvio'_NK : NK ;
+fun hisahdus_NK : NK ;
+fun hisahtaa_VK : VK ;
+fun hisaus_NK : NK ;
+fun hissa_NK : NK ;
+fun hissata_VK : VK ;
+fun hissi_NK : NK ;
+fun hissukka_NK : NK ;
+fun hissukseen_AdvK : AdvK ;
+fun hissuksiin_AdvK : AdvK ;
+fun hissun_kissun_AdvK : AdvK ;
+fun hissutella_VK : VK ;
+fun hissuttaa_VK : VK ;
+fun hissuttelu_NK : NK ;
+fun histamiini_NK : NK ;
+fun histogrammi_NK : NK ;
+fun histologi_NK : NK ;
+fun histologia_NK : NK ;
+fun histologinen_NK : NK ;
+fun historia_NK : NK ;
+fun historiallinen_NK : NK ;
+fun historiikki_NK : NK ;
+fun historioida_VK : VK ;
+fun historioitsija_NK : NK ;
+fun hitaasti_AdvK : AdvK ;
+fun hitaus_NK : NK ;
+fun hi_tec_NK : NK ;
+fun hi_tech_NK : NK ;
+fun hitonmoinen_NK : NK ;
+fun hitosti_AdvK : AdvK ;
+fun hitsaaja_NK : NK ;
+fun hitsaamo_NK : NK ;
+fun hitsaantua_VK : VK ;
+fun hitsari_NK : NK ;
+fun hitsata_VK : VK ;
+fun hitsaus_NK : NK ;
+fun hitsautua_VK : VK ;
+fun hitsi_1_NK : NK ;
+fun hitsi_2_NK : NK ;
+fun hitti_NK : NK ;
+fun hitto_NK : NK ;
+fun hitu_NK : NK ;
+fun hitunen_NK : NK ;
+fun hiuduttaa_VK : VK ;
+fun hiue_NK : NK ;
+fun hiuka_NK : NK ;
+fun hiukaista_VK : VK ;
+fun hiukan_AdvK : AdvK ;
+fun hiukka_NK : NK ;
+fun hiukkanen_NK : NK ;
+fun hiukoa_VK : VK ;
+fun hiuksenhalkominen_NK : NK ;
+fun hiuksinen_NK : NK ;
+fun hius_NK : NK ;
+fun hiusjuuri_NK : NK ;
+fun hiustenhalkoja_NK : NK ;
+fun hiustenhalkominen_NK : NK ;
+fun hiutale_NK : NK ;
+fun hiutaleinen_NK : NK ;
+fun hiutua_VK : VK ;
+fun hiutuma_NK : NK ;
+fun HIV_AdvK : AdvK ;
+fun hivauttaa_VK : VK ;
+fun hivella'_VK : VK ;
+fun hivelta'a'_VK : VK ;
+fun hiven_NK : NK ;
+fun hivuttaa_VK : VK ;
+fun hivuttautua_VK : VK ;
+fun hivutus_NK : NK ;
+fun hobby_NK : NK ;
+fun hodari_NK : NK ;
+fun hoennainen_NK : NK ;
+fun hoenta_NK : NK ;
+fun hohde_NK : NK ;
+fun hohdella_VK : VK ;
+fun hohdokas_AK : AK ;
+--+ fun hohdokkaasti_AdvK : AdvK ;
+fun hohdokkuus_NK : NK ;
+fun hohhoijaa_AdvK : AdvK ;
+fun hohka_NK : NK ;
+fun hohkaa_VK : VK ;
+fun hohkainen_NK : NK ;
+fun hohkata_VK : VK ;
+fun hohkua_VK : VK ;
+fun hohottaa_VK : VK ;
+fun hohotus_NK : NK ;
+fun hohtaa_VK : VK ;
+fun hohteinen_NK : NK ;
+--? fun hohtimet_NK : NK ;
+fun hohto_NK : NK ;
+fun hohtoinen_NK : NK ;
+fun hoi_AdvK : AdvK ;
+fun hoidattaa_VK : VK ;
+fun hoide_NK : NK ;
+fun hoidella_VK : VK ;
+fun hoidokki_NK : NK ;
+fun hoidollinen_NK : NK ;
+fun hoikentaa_VK : VK ;
+fun hoikentua_VK : VK ;
+fun hoiketa_VK : VK ;
+fun hoikistaa_VK : VK ;
+fun hoikistua_VK : VK ;
+fun hoikka_NK : NK ;
+fun hoikkuus_NK : NK ;
+fun hoilata_VK : VK ;
+fun hoilottaa_VK : VK ;
+fun hoilotus_NK : NK ;
+fun hoiperrella_VK : VK ;
+fun hoipertelu_NK : NK ;
+fun hoippua_VK : VK ;
+fun hoippuroida_VK : VK ;
+fun hoippurointi_NK : NK ;
+fun hoitaa_VK : VK ;
+fun hoitaja_NK : NK ;
+fun hoitajatar_NK : NK ;
+fun hoitelu_NK : NK ;
+fun hoito_NK : NK ;
+fun hoitoisuus_NK : NK ;
+fun hoitua_VK : VK ;
+fun hoituri_NK : NK ;
+fun hoiva_NK : NK ;
+fun hoivailla_VK : VK ;
+fun hoivata_VK : VK ;
+fun hoivaus_NK : NK ;
+fun hokea_VK : VK ;
+fun hokema_NK : NK ;
+fun hokkari_NK : NK ;
+fun hokkuspokkus_NK : NK ;
+fun hoksaavainen_NK : NK ;
+fun hoksata_VK : VK ;
+--? fun hoksottimet_NK : NK ;
+fun hoku_NK : NK ;
+fun holahtaa_VK : VK ;
+fun holauttaa_VK : VK ;
+fun holhokki_NK : NK ;
+fun holhonta_NK : NK ;
+fun holhooja_NK : NK ;
+fun holhota_VK : VK ;
+fun holhotti_NK : NK ;
+fun holhous_NK : NK ;
+fun holismi_NK : NK ;
+fun holisti_NK : NK ;
+fun holistinen_NK : NK ;
+fun holkeri_NK : NK ;
+fun holkki_NK : NK ;
+fun hollannikas_NK : NK ;
+fun hollanti_NK : NK ;
+fun holli_NK : NK ;
+fun holografia_NK : NK ;
+fun hologrammi_NK : NK ;
+fun holokausti_NK : NK ;
+fun holtiton_NK : NK ;
+fun holtittomasti_AdvK : AdvK ;
+fun holtittomuus_NK : NK ;
+fun holtti_NK : NK ;
+fun holvata_1_VK : VK ;
+fun holvata_2_VK : VK ;
+fun holvaus_1_NK : NK ;
+fun holvaus_2_NK : NK ;
+fun holvi_NK : NK ;
+fun holvinen_NK : NK ;
+fun holvisto_NK : NK ;
+fun holvittaa_VK : VK ;
+fun home_NK : NK ;
+fun homeerinen_NK : NK ;
+fun homehduttaa_VK : VK ;
+fun homehtua_VK : VK ;
+fun homeinen_NK : NK ;
+fun homeopaattinen_NK : NK ;
+fun homeopatia_NK : NK ;
+fun homeostaasi_NK : NK ;
+fun homeostaattinen_NK : NK ;
+fun hominidi_NK : NK ;
+fun homma_NK : NK ;
+fun hommailla_VK : VK ;
+fun hommata_VK : VK ;
+fun hommautua_VK : VK ;
+fun hommeli_NK : NK ;
+fun homo_NK : NK ;
+fun homofiili_NK : NK ;
+fun homofiilinen_NK : NK ;
+fun homofiilisuus_NK : NK ;
+fun homofiilius_NK : NK ;
+fun homogeeninen_NK : NK ;
+fun homogeenistaa_VK : VK ;
+fun homogeenisuus_NK : NK ;
+fun homogenisoida_VK : VK ;
+fun homogenisointi_NK : NK ;
+fun homogenoida_VK : VK ;
+fun homogenointi_NK : NK ;
+fun homonyymi_NK : NK ;
+fun homoseksuaali_NK : NK ;
+fun homoseksualismi_NK : NK ;
+fun homoseksualisti_NK : NK ;
+fun homotsygootti_NK : NK ;
+fun homotsygoottinen_NK : NK ;
+fun homous_NK : NK ;
+fun hompsottaa_VK : VK ;
+fun homssantuu_NK : NK ;
+fun homssu_NK : NK ;
+fun homssuinen_NK : NK ;
+fun hongankolistaja_NK : NK ;
+fun hongikko_NK : NK ;
+fun hongisto_NK : NK ;
+fun honka_NK : NK ;
+fun honkainen_NK : NK ;
+fun honkkeli_NK : NK ;
+fun honoris_causa_AdvK : AdvK ;
+fun honottaa_VK : VK ;
+fun honotus_NK : NK ;
+fun hontelo_NK : NK ;
+fun hoonata_VK : VK ;
+fun hoonaus_NK : NK ;
+fun hoopo_NK : NK ;
+fun hoopoilla_VK : VK ;
+fun hoosata_VK : VK ;
+fun hoosianna_NK : NK ;
+fun hopea_NK : NK ;
+fun hopeahapsinen_NK : NK ;
+fun hopeahela_NK : NK ;
+fun hopeainen_NK : NK ;
+fun hopeinen_NK : NK ;
+fun hopeoida_VK : VK ;
+fun hopeointi_NK : NK ;
+fun hopeoitua_VK : VK ;
+fun hoppu_NK : NK ;
+fun hoppuilla_VK : VK ;
+fun hoppuilu_NK : NK ;
+fun hoputtaa_VK : VK ;
+fun horina_NK : NK ;
+fun horisko_NK : NK ;
+fun horisontaali_NK : NK ;
+fun horisontaalinen_NK : NK ;
+fun horisontti_NK : NK ;
+fun horista_VK : VK ;
+fun horjahdella_VK : VK ;
+fun horjahdus_NK : NK ;
+fun horjahtaa_VK : VK ;
+fun horjahtelu_NK : NK ;
+fun horjua_VK : VK ;
+fun horjumaton_NK : NK ;
+fun horjunta_NK : NK ;
+fun horjuttaa_VK : VK ;
+fun horjuva_NK : NK ;
+fun horjuvainen_NK : NK ;
+fun horjuvaisuus_NK : NK ;
+fun horjuvuus_NK : NK ;
+fun horkka_NK : NK ;
+fun hormi_NK : NK ;
+fun hormonaalinen_NK : NK ;
+fun hormoni_NK : NK ;
+fun horna_NK : NK ;
+fun horoskooppi_NK : NK ;
+fun horre_NK : NK ;
+fun horros_NK : NK ;
+fun horrostaa_VK : VK ;
+fun horsma_NK : NK ;
+fun horsti_NK : NK ;
+fun horteessa_AdvK : AdvK ;
+fun horteinen_NK : NK ;
+fun hortensia_NK : NK ;
+fun hortoilla_VK : VK ;
+fun hortoilu_NK : NK ;
+fun hortonomi_NK : NK ;
+fun hospitsi_NK : NK ;
+fun hosua_VK : VK ;
+fun hotaista_VK : VK ;
+fun hotaisu_NK : NK ;
+fun hot_dog_NK : NK ;
+fun hoteisiin_AdvK : AdvK ;
+fun hoteissa_AdvK : AdvK ;
+fun hoteista_AdvK : AdvK ;
+fun hotelli_NK : NK ;
+fun hotkaista_VK : VK ;
+fun hotkaisu_NK : NK ;
+fun hotkia_VK : VK ;
+fun hotsittaa_VK : VK ;
+fun hottentotti_NK : NK ;
+fun houkka_NK : NK ;
+fun houkkio_NK : NK ;
+fun houkute_NK : NK ;
+fun houkutella_VK : VK ;
+fun houkutin_NK : NK ;
+fun houkuttaa_VK : VK ;
+fun houkuttelu_NK : NK ;
+fun houkuttua_VK : VK ;
+fun houkutus_NK : NK ;
+fun hourailla_VK : VK ;
+fun hourailu_NK : NK ;
+fun houre_NK : NK ;
+fun houreinen_NK : NK ;
+fun houria_VK : VK ;
+fun hourula_NK : NK ;
+fun house_NK : NK ;
+fun housuinen_NK : NK ;
+fun housukangas_NK : NK ;
+fun housuliivi_NK : NK ;
+fun housunpuntti_NK : NK ;
+fun housupari_NK : NK ;
+fun housusillaan_AdvK : AdvK ;
+fun housusilleen_AdvK : AdvK ;
+--? fun housut_NK : NK ;
+fun hovi_NK : NK ;
+fun hugenotti_NK : NK ;
+fun huh_AdvK : AdvK ;
+fun huhkia_VK : VK ;
+fun huhmar_NK : NK ;
+fun huhmare_NK : NK ;
+fun huhta_NK : NK ;
+fun huhtoa_VK : VK ;
+fun huhu_NK : NK ;
+fun huhuilla_VK : VK ;
+fun huhuilu_NK : NK ;
+fun huhuta_VK : VK ;
+fun hui_AdvK : AdvK ;
+fun huidella_VK : VK ;
+fun hui_hai_AdvK : AdvK ;
+fun huijari_NK : NK ;
+fun huijata_VK : VK ;
+fun huijaus_NK : NK ;
+fun huikaista_VK : VK ;
+fun huikaistua_VK : VK ;
+fun huikata_VK : VK ;
+fun huikea_AK : AK ;
+--+ fun huikeasti_AdvK : AdvK ;
+fun huikennella_VK : VK ;
+fun huikenteleva_AK : AK ;
+fun huikentelevainen_AK : AK ;
+--+ fun huikentelevaisesti_AdvK : AdvK ;
+fun huikentelevaisuus_NK : NK ;
+--+ fun huikentelevasti_AdvK : AdvK ;
+fun huikentelevuus_NK : NK ;
+fun huikentelu_NK : NK ;
+fun huikka_NK : NK ;
+fun huikkaus_NK : NK ;
+fun huilata_VK : VK ;
+fun huilia_VK : VK ;
+fun huilisti_NK : NK ;
+fun huilu_NK : NK ;
+fun huima_AK : AK ;
+fun huimaava_AK : AK ;
+--+ fun huimaavasti_AdvK : AdvK ;
+fun huimaavuus_NK : NK ;
+--+ fun huimapa'isesti_AdvK : AdvK ;
+fun huimapa'isyys_NK : NK ;
+--+ fun huimasti_AdvK : AdvK ;
+fun huimata_VK : VK ;
+fun huimaus_NK : NK ;
+fun huimeta_VK : VK ;
+fun huimia_VK : VK ;
+fun huipata_VK : VK ;
+fun huipennus_NK : NK ;
+fun huipentaa_VK : VK ;
+fun huipentua_VK : VK ;
+fun huipentuma_NK : NK ;
+fun huipeta_VK : VK ;
+fun huipistaa_VK : VK ;
+fun huipistua_VK : VK ;
+fun huippu_NK : NK ;
+fun huippuinen_NK : NK ;
+fun huippukohta_NK : NK ;
+fun huiputtaa_VK : VK ;
+fun huiputus_NK : NK ;
+fun huiska_NK : NK ;
+fun huiskaa_VK : VK ;
+fun huiskahtaa_VK : VK ;
+fun huiskaista_VK : VK ;
+fun huiskale_NK : NK ;
+fun huiskaus_NK : NK ;
+fun huiskauttaa_VK : VK ;
+fun huiske_NK : NK ;
+fun huiskea_NK : NK ;
+fun huiskia_VK : VK ;
+fun huiskilo_NK : NK ;
+fun huiskina_NK : NK ;
+fun huiskin_haiskin_AdvK : AdvK ;
+fun huiskinta_NK : NK ;
+fun huiskis_AdvK : AdvK ;
+fun huisku_NK : NK ;
+fun huiskuttaa_VK : VK ;
+fun huiskutus_NK : NK ;
+fun huit_AdvK : AdvK ;
+fun huitaista_VK : VK ;
+fun huitaisu_NK : NK ;
+fun huithapeli_NK : NK ;
+fun huitoa_VK : VK ;
+fun huitsin_AdvK : AdvK ;
+fun huivi_NK : NK ;
+fun hujahdus_NK : NK ;
+fun hujahtaa_VK : VK ;
+fun hujakoilla_AdvK : AdvK ;
+fun hujan_hajan_AdvK : AdvK ;
+fun hujaus_NK : NK ;
+fun hujauttaa_VK : VK ;
+fun hujellus_NK : NK ;
+fun hujeltaa_VK : VK ;
+fun hujoppi_NK : NK ;
+fun hukassa_AdvK : AdvK ;
+fun hukata_VK : VK ;
+fun huki_NK : NK ;
+fun hukka_NK : NK ;
+fun hukka_aika_NK : NK ;
+fun hukkaan_AdvK : AdvK ;
+fun hukkaantua_VK : VK ;
+fun hukkateille_AdvK : AdvK ;
+fun hukkateilla'_AdvK : AdvK ;
+fun hukkautua_VK : VK ;
+fun hukkua_VK : VK ;
+fun hukuksiin_AdvK : AdvK ;
+fun hukuksissa_AdvK : AdvK ;
+fun hukuttaa_VK : VK ;
+fun hukuttautua_VK : VK ;
+fun hula_NK : NK ;
+fun hulahtaa_VK : VK ;
+fun hulauttaa_VK : VK ;
+fun huligaani_NK : NK ;
+fun huliganismi_NK : NK ;
+fun hulina_NK : NK ;
+fun hulinoida_VK : VK ;
+fun hulinointi_NK : NK ;
+fun hulinoitsija_NK : NK ;
+fun hulivili_NK : NK ;
+fun huljahtaa_VK : VK ;
+fun huljauttaa_VK : VK ;
+fun huljua_VK : VK ;
+fun huljutella_VK : VK ;
+fun huljuttaa_VK : VK ;
+fun huljuttelu_NK : NK ;
+fun huljutus_NK : NK ;
+fun hullaannuttaa_VK : VK ;
+fun hullaantua_VK : VK ;
+fun hullu_AK : AK ;
+fun hullunkurinen_AK : AK ;
+--+ fun hullunkurisesti_AdvK : AdvK ;
+fun hullunkurisuus_NK : NK ;
+--+ fun hullusti_AdvK : AdvK ;
+fun hullutella_VK : VK ;
+fun hulluttelu_NK : NK ;
+fun hullutus_NK : NK ;
+fun hulluus_NK : NK ;
+fun hulmahdella_VK : VK ;
+fun hulmahdus_NK : NK ;
+fun hulmahtaa_VK : VK ;
+fun hulmahtelu_NK : NK ;
+fun hulmauttaa_VK : VK ;
+fun hulmuta_VK : VK ;
+fun hulpilo_NK : NK ;
+fun hulpio_NK : NK ;
+fun hulppea_NK : NK ;
+fun hulttio_NK : NK ;
+fun hulvahdus_NK : NK ;
+fun hulvahtaa_VK : VK ;
+fun hulvaton_NK : NK ;
+fun humaani_NK : NK ;
+fun humaaninen_NK : NK ;
+fun humaanistaa_VK : VK ;
+fun humaanistua_VK : VK ;
+fun humaanisuus_NK : NK ;
+fun humaanius_NK : NK ;
+fun humahdella_VK : VK ;
+fun humahdus_NK : NK ;
+fun humahtaa_VK : VK ;
+fun humala_NK : NK ;
+fun humalainen_NK : NK ;
+fun humalapa'issa'_AdvK : AdvK ;
+fun humalikas_NK : NK ;
+fun humalikko_NK : NK ;
+fun humalisto_NK : NK ;
+fun humalluttaa_VK : VK ;
+fun humaltua_VK : VK ;
+fun humanismi_NK : NK ;
+fun humanisoida_VK : VK ;
+fun humanisoitua_VK : VK ;
+fun humanisti_NK : NK ;
+fun humanistinen_NK : NK ;
+fun humanitaarinen_NK : NK ;
+fun humanita'a'rinen_NK : NK ;
+fun humanoidi_NK : NK ;
+fun humaus_NK : NK ;
+fun humauttaa_VK : VK ;
+fun humina_NK : NK ;
+fun huminoida_VK : VK ;
+fun humista_VK : VK ;
+fun humma_NK : NK ;
+fun hummailla_VK : VK ;
+fun hummailu_NK : NK ;
+fun hummata_VK : VK ;
+fun hummaus_NK : NK ;
+fun hummeri_NK : NK ;
+fun humoreski_NK : NK ;
+fun humoristi_NK : NK ;
+fun humoristinen_AK : AK ;
+--+ fun humoristisesti_AdvK : AdvK ;
+fun humoristisuus_NK : NK ;
+fun humpata_VK : VK ;
+fun humppa_NK : NK ;
+fun humpsahtaa_VK : VK ;
+fun humputella_VK : VK ;
+fun humpuuki_NK : NK ;
+fun humu_NK : NK ;
+fun humus_NK : NK ;
+fun hunaja_NK : NK ;
+fun hunajainen_AK : AK ;
+--+ fun hunajaisesti_AdvK : AdvK ;
+fun hunni_NK : NK ;
+fun hunningolla_AdvK : AdvK ;
+fun hunningolle_AdvK : AdvK ;
+fun hunnuttaa_VK : VK ;
+fun hunsvotti_NK : NK ;
+fun huntti_NK : NK ;
+fun huntu_NK : NK ;
+fun huoahdella_VK : VK ;
+fun huoahdus_NK : NK ;
+fun huoahtaa_VK : VK ;
+fun huoahtelu_NK : NK ;
+fun huoata_VK : VK ;
+fun huohottaa_VK : VK ;
+fun huohotus_NK : NK ;
+fun huoistaa_VK : VK ;
+fun huoistua_VK : VK ;
+fun huojahdella_VK : VK ;
+fun huojahtaa_VK : VK ;
+fun huojahtelu_NK : NK ;
+fun huojennus_NK : NK ;
+fun huojentaa_VK : VK ;
+fun huojentua_VK : VK ;
+fun huojeta_VK : VK ;
+fun huojistaa_VK : VK ;
+fun huojistua_VK : VK ;
+fun huojua_VK : VK ;
+fun huojunta_NK : NK ;
+fun huojutella_VK : VK ;
+fun huojuttaa_VK : VK ;
+fun huokailla_VK : VK ;
+fun huokailu_NK : NK ;
+fun huokaista_VK : VK ;
+fun huokaus_NK : NK ;
+fun huokea_NK : NK ;
+fun huokeus_NK : NK ;
+fun huokoinen_NK : NK ;
+fun huokoistua_VK : VK ;
+fun huokoisuus_NK : NK ;
+fun huokonen_NK : NK ;
+fun huoku_NK : NK ;
+fun huokua_VK : VK ;
+fun huolehdinta_NK : NK ;
+fun huolehtia_VK : VK ;
+fun huolehtivainen_AK : AK ;
+--+ fun huolehtivaisesti_AdvK : AdvK ;
+fun huolehtivaisuus_NK : NK ;
+fun huolekas_NK : NK ;
+fun huolellinen_AK : AK ;
+--+ fun huolellisesti_AdvK : AdvK ;
+fun huolellisuus_NK : NK ;
+fun huolestua_VK : VK ;
+fun huolestuneisuus_NK : NK ;
+fun huolestus_NK : NK ;
+fun huolestuttaa_VK : VK ;
+fun huoleti_AdvK : AdvK ;
+fun huoleton_NK : NK ;
+fun huoletta_AdvK : AdvK ;
+fun huolettaa_VK : VK ;
+fun huolettomasti_AdvK : AdvK ;
+fun huolettomuus_NK : NK ;
+fun huoli_NK : NK ;
+fun huolia_VK : VK ;
+fun huolimaton_NK : NK ;
+fun huolimatta_AdvK : AdvK ;
+fun huolimattomasti_AdvK : AdvK ;
+fun huolimattomuus_NK : NK ;
+fun huolinta_NK : NK ;
+fun huolissaan_AdvK : AdvK ;
+fun huolita_VK : VK ;
+fun huolitella_VK : VK ;
+fun huolitsija_NK : NK ;
+fun huolittelu_NK : NK ;
+fun huollattaa_VK : VK ;
+fun huoltaa_VK : VK ;
+fun huoltaja_NK : NK ;
+fun huoltamo_NK : NK ;
+fun huolto_NK : NK ;
+fun huoltola_NK : NK ;
+fun huomaamaton_NK : NK ;
+fun huomaamattomasti_AdvK : AdvK ;
+fun huomaamattomuus_NK : NK ;
+fun huomaan_AdvK : AdvK ;
+fun huomaavainen_AK : AK ;
+--+ fun huomaavaisesti_AdvK : AdvK ;
+fun huomaavaisuus_NK : NK ;
+fun huomassa_AdvK : AdvK ;
+fun huomata_VK : VK ;
+fun huomattava_AK : AK ;
+--+ fun huomattavasti_AdvK : AdvK ;
+fun huomautella_VK : VK ;
+fun huomauttaa_VK : VK ;
+fun huomautus_NK : NK ;
+fun huomen_NK : NK ;
+fun huomenissa_AdvK : AdvK ;
+fun huomenna_AdvK : AdvK ;
+fun huominen_NK : NK ;
+fun huomio_NK : NK ;
+fun huomioida_VK : VK ;
+fun huomioija_NK : NK ;
+fun huomiointi_NK : NK ;
+fun huomioitsija_NK : NK ;
+fun huomioon_ottaen_AdvK : AdvK ;
+fun huone_NK : NK ;
+fun huoneinen_NK : NK ;
+fun huoneisto_NK : NK ;
+fun huoneke_NK : NK ;
+fun huono_AK : AK ;
+fun huonokuuloisuus_NK : NK ;
+fun huonommuus_NK : NK ;
+fun huononnus_NK : NK ;
+fun huonontaa_VK : VK ;
+fun huonontua_VK : VK ;
+--+ fun huonosti_AdvK : AdvK ;
+fun huonota_VK : VK ;
+fun huonous_NK : NK ;
+fun huopa_NK : NK ;
+fun huopainen_NK : NK ;
+fun huopaus_NK : NK ;
+fun huopauttaa_VK : VK ;
+fun huopikas_NK : NK ;
+fun huopua_VK : VK ;
+fun huora_NK : NK ;
+fun huorahtava_NK : NK ;
+fun huorata_VK : VK ;
+fun huorin_AdvK : AdvK ;
+fun huoruus_NK : NK ;
+fun huostaan_AdvK : AdvK ;
+fun huostassa_AdvK : AdvK ;
+fun huostasta_AdvK : AdvK ;
+fun huotra_NK : NK ;
+fun huounta_NK : NK ;
+fun huovata_VK : VK ;
+fun huovi_NK : NK ;
+fun huovikas_NK : NK ;
+fun huovuttaa_VK : VK ;
+fun huovutus_NK : NK ;
+fun hupa_NK : NK ;
+fun hupailu_NK : NK ;
+fun hupainen_NK : NK ;
+fun hupaisa_AK : AK ;
+--+ fun hupaisasti_AdvK : AdvK ;
+fun hupakko_NK : NK ;
+fun hupi_NK : NK ;
+fun huppari_NK : NK ;
+fun huppeli_NK : NK ;
+fun huppu_NK : NK ;
+fun hupsahtaa_VK : VK ;
+fun hupsia_VK : VK ;
+fun hupsis_AdvK : AdvK ;
+fun hupsista_AdvK : AdvK ;
+fun hupsu_AK : AK ;
+--+ fun hupsusti_AdvK : AdvK ;
+fun hupsutella_VK : VK ;
+fun hupsuttelu_NK : NK ;
+fun hupsutus_NK : NK ;
+fun hupsuus_NK : NK ;
+fun hupullinen_NK : NK ;
+fun huputus_NK : NK ;
+fun hurahdella_VK : VK ;
+fun hurahdus_NK : NK ;
+fun hurahtaa_VK : VK ;
+fun huraus_NK : NK ;
+fun hurauttaa_VK : VK ;
+fun hurina_NK : NK ;
+fun hurista_VK : VK ;
+fun huristaa_VK : VK ;
+fun huristella_VK : VK ;
+fun hurja_AK : AK ;
+fun hurjapa'isyys_NK : NK ;
+fun hurjastelija_NK : NK ;
+fun hurjastella_VK : VK ;
+fun hurjastelu_NK : NK ;
+--+ fun hurjasti_AdvK : AdvK ;
+fun hurjeta_VK : VK ;
+fun hurjimus_NK : NK ;
+fun hurjistaa_VK : VK ;
+fun hurjistua_VK : VK ;
+fun hurjistuttaa_VK : VK ;
+fun hurjuus_NK : NK ;
+fun hurlumhei_NK : NK ;
+fun hurma_NK : NK ;
+fun hurmaaja_NK : NK ;
+fun hurmaantua_VK : VK ;
+fun hurmaava_AK : AK ;
+--+ fun hurmaavasti_AdvK : AdvK ;
+fun hurmata_VK : VK ;
+fun hurmaus_NK : NK ;
+fun hurmautua_VK : VK ;
+fun hurme_NK : NK ;
+fun hurmeinen_NK : NK ;
+fun hurmio_NK : NK ;
+fun hurmioitua_VK : VK ;
+fun hurmos_NK : NK ;
+fun hurmuri_NK : NK ;
+fun hurraa_NK : NK ;
+fun hurrata_VK : VK ;
+fun hurri_NK : NK ;
+fun hurrikaani_NK : NK ;
+--+ fun hurskaasti_AdvK : AdvK ;
+fun hurskas_AK : AK ;
+fun hurskastelija_NK : NK ;
+fun hurskastella_VK : VK ;
+fun hurskastelu_NK : NK ;
+fun hurskaus_NK : NK ;
+fun hursti_NK : NK ;
+fun hurtta_NK : NK ;
+fun hurtti_NK : NK ;
+fun hurvitella_VK : VK ;
+fun hurvittelu_NK : NK ;
+fun hus_AdvK : AdvK ;
+fun huseerata_VK : VK ;
+fun hutaista_VK : VK ;
+fun hutera_NK : NK ;
+fun huti_NK : NK ;
+fun hutikka_NK : NK ;
+fun hutiloida_VK : VK ;
+fun hutiloija_NK : NK ;
+fun hutilointi_NK : NK ;
+fun hutilus_NK : NK ;
+fun hutkia_VK : VK ;
+fun hutsu_NK : NK ;
+fun huttu_NK : NK ;
+fun hutu_NK : NK ;
+fun huudahdella_VK : VK ;
+fun huudahdus_NK : NK ;
+fun huudahtaa_VK : VK ;
+fun huudattaa_VK : VK ;
+fun huudella_VK : VK ;
+fun huuhaa_NK : NK ;
+fun huuhde_NK : NK ;
+fun huuhdella_VK : VK ;
+fun huuhdonta_NK : NK ;
+fun huuhkaja_NK : NK ;
+fun huuhtaista_VK : VK ;
+fun huuhtaisu_NK : NK ;
+fun huuhtelu_NK : NK ;
+fun huuhtoa_VK : VK ;
+fun huuhtoja_NK : NK ;
+fun huuhtoutua_VK : VK ;
+fun huuleilla_VK : VK ;
+fun huuleilu_NK : NK ;
+fun huulenheitta'ja'_NK : NK ;
+fun huuli_NK : NK ;
+fun huulinen_NK : NK ;
+fun huulio_NK : NK ;
+fun huullos_NK : NK ;
+fun huultaa_VK : VK ;
+fun huuma_NK : NK ;
+fun huumaannuttaa_VK : VK ;
+fun huumaantua_VK : VK ;
+fun huumata_VK : VK ;
+fun huumaus_NK : NK ;
+fun huumautua_VK : VK ;
+fun huume_NK : NK ;
+fun huumori_NK : NK ;
+fun huuri_NK : NK ;
+fun huurre_NK : NK ;
+fun huurruttaa_VK : VK ;
+fun huurtaa_VK : VK ;
+fun huurteinen_NK : NK ;
+fun huurtua_VK : VK ;
+fun huuru_NK : NK ;
+fun huuruinen_NK : NK ;
+fun huuruta_VK : VK ;
+fun huuruuntua_VK : VK ;
+fun huushollata_VK : VK ;
+fun huusholli_NK : NK ;
+fun huusi_NK : NK ;
+fun huussi_NK : NK ;
+fun huut_AdvK : AdvK ;
+fun huutaa_VK : VK ;
+fun huutaja_NK : NK ;
+fun huutava_NK : NK ;
+fun huutelu_NK : NK ;
+fun huuti_AdvK : AdvK ;
+fun huuto_NK : NK ;
+fun huventaa_VK : VK ;
+fun huveta_VK : VK ;
+fun huvi_NK : NK ;
+fun huvikseen_AdvK : AdvK ;
+fun huvila_NK : NK ;
+fun huvitella_VK : VK ;
+fun huvittaa_VK : VK ;
+fun huvittava_NK : NK ;
+fun huvittavuus_NK : NK ;
+fun huvittelu_NK : NK ;
+fun huvittua_VK : VK ;
+fun huvitus_NK : NK ;
+fun hyasintti_NK : NK ;
+fun hybridi_NK : NK ;
+fun hybris_NK : NK ;
+fun hydraatti_NK : NK ;
+fun hydrauliikka_NK : NK ;
+fun hydraulinen_AK : AK ;
+--+ fun hydraulisesti_AdvK : AdvK ;
+fun hydrokopteri_NK : NK ;
+fun hydroksidi_NK : NK ;
+fun hydroksyyli_NK : NK ;
+fun hydrologia_NK : NK ;
+fun hydrologinen_NK : NK ;
+fun hyeena_NK : NK ;
+fun hygieenikko_NK : NK ;
+fun hygieeninen_AK : AK ;
+--+ fun hygieenisesti_AdvK : AdvK ;
+fun hygieenisyys_NK : NK ;
+fun hygienia_NK : NK ;
+fun hygrometri_NK : NK ;
+fun hyh_AdvK : AdvK ;
+fun hyhmettya'_VK : VK ;
+fun hyhma'_NK : NK ;
+fun hyhma'inen_NK : NK ;
+fun hyi_AdvK : AdvK ;
+fun hyinen_AK : AK ;
+--+ fun hyisesti_AdvK : AdvK ;
+fun hykerrella'_VK : VK ;
+fun hykerrys_NK : NK ;
+fun hykerrytta'a'_VK : VK ;
+fun hykerta'a'_VK : VK ;
+fun hylje_NK : NK ;
+fun hyljeksia'_VK : VK ;
+fun hyljinta'_NK : NK ;
+fun hylja'ta'_VK : VK ;
+fun hylkia'_VK : VK ;
+fun hylkio'_NK : NK ;
+fun hylky_NK : NK ;
+fun hylka'ys_NK : NK ;
+fun hylly_NK : NK ;
+fun hyllykko'_NK : NK ;
+fun hyllyllinen_NK : NK ;
+fun hyllysto'_NK : NK ;
+fun hyllytta'a'_1_VK : VK ;
+fun hyllytta'a'_2_VK : VK ;
+fun hyllya'_VK : VK ;
+fun hylsy_NK : NK ;
+fun hyla'ta'_VK : VK ;
+fun hymen_NK : NK ;
+fun hymina'_NK : NK ;
+fun hymistella'_VK : VK ;
+fun hymistely_NK : NK ;
+fun hymistys_NK : NK ;
+fun hymista'_VK : VK ;
+fun hymio'_NK : NK ;
+fun hymni_NK : NK ;
+fun hymy_NK : NK ;
+fun hymyhuulin_AdvK : AdvK ;
+fun hymyilla'_VK : VK ;
+fun hymyily_NK : NK ;
+fun hymyilytta'a'_VK : VK ;
+fun hymysuin_AdvK : AdvK ;
+fun hymyta'_VK : VK ;
+fun hyma'hdella'_VK : VK ;
+fun hyma'hdys_NK : NK ;
+fun hyma'hta'a'_VK : VK ;
+--? fun hyntteet_NK : NK ;
+--? fun hynttyyt_NK : NK ;
+fun hyna'_NK : NK ;
+fun hypella'_VK : VK ;
+fun hyperbeli_NK : NK ;
+fun hyperbola_NK : NK ;
+fun hyperbolinen_NK : NK ;
+fun hypertensio_NK : NK ;
+fun hypertonia_NK : NK ;
+fun hyperventilaatio_NK : NK ;
+fun hypistella'_VK : VK ;
+fun hypistely_NK : NK ;
+fun hypitta'a'_VK : VK ;
+fun hypnologi_NK : NK ;
+fun hypnoosi_NK : NK ;
+fun hypnoottinen_AK : AK ;
+--+ fun hypnoottisesti_AdvK : AdvK ;
+fun hypnotisoida_VK : VK ;
+fun hypnotisointi_NK : NK ;
+fun hypnotisoitua_VK : VK ;
+fun hypotaksi_NK : NK ;
+fun hypotaktinen_NK : NK ;
+fun hypotalamus_NK : NK ;
+fun hypoteekki_NK : NK ;
+fun hypoteesi_NK : NK ;
+fun hypoteettinen_NK : NK ;
+fun hypotenuusa_NK : NK ;
+fun hypotermia_NK : NK ;
+fun hyppelehtia'_VK : VK ;
+fun hyppely_NK : NK ;
+fun hyppia'_VK : VK ;
+fun hyppy_NK : NK ;
+fun hyppyri_NK : NK ;
+fun hyppysellinen_NK : NK ;
+--? fun hyppyset_NK : NK ;
+fun hyppyytta'a'_VK : VK ;
+fun hyppa'yksellinen_NK : NK ;
+fun hyppa'yksitta'in_AdvK : AdvK ;
+fun hyppa'yksitta'inen_NK : NK ;
+fun hyppa'ys_NK : NK ;
+fun hyppa'ytta'a'_VK : VK ;
+fun hyppa'a'ja'_NK : NK ;
+fun hypa'hdella'_VK : VK ;
+fun hypa'hdys_NK : NK ;
+fun hypa'hta'a'_VK : VK ;
+fun hypa'ta'_VK : VK ;
+fun hyrina'_NK : NK ;
+fun hyrista'_VK : VK ;
+fun hyrra'_NK : NK ;
+fun hyrra'ta'_VK : VK ;
+fun hyrske_NK : NK ;
+fun hyrskia'_VK : VK ;
+fun hyrsky_NK : NK ;
+fun hyrskyinen_NK : NK ;
+fun hyrskyta'_VK : VK ;
+fun hyrska'hta'a'_VK : VK ;
+fun hyra'hdys_NK : NK ;
+fun hyra'hta'a'_VK : VK ;
+fun hyra'illa'_VK : VK ;
+fun hyra'ily_NK : NK ;
+fun hyra'ys_NK : NK ;
+fun hys_AdvK : AdvK ;
+fun hyssytella'_VK : VK ;
+fun hyssyttely_NK : NK ;
+fun hyssytta'a'_VK : VK ;
+fun hyssytys_NK : NK ;
+fun hysteerikko_NK : NK ;
+fun hysteerinen_AK : AK ;
+--+ fun hysteerisesti_AdvK : AdvK ;
+fun hystereesi_NK : NK ;
+fun hysteria_NK : NK ;
+fun hytina'_NK : NK ;
+fun hytista'_VK : VK ;
+fun hytisytta'a'_VK : VK ;
+fun hytkytella'_VK : VK ;
+fun hytkytta'a'_VK : VK ;
+fun hytkya'_VK : VK ;
+fun hytka'hdella'_VK : VK ;
+fun hytka'hdytta'a'_VK : VK ;
+fun hytka'hta'a'_VK : VK ;
+fun hytka'ytta'a'_VK : VK ;
+fun hytti_NK : NK ;
+fun hyttynen_NK : NK ;
+fun hyttysparvi_NK : NK ;
+fun hyve_NK : NK ;
+fun hyveellinen_AK : AK ;
+--+ fun hyveellisesti_AdvK : AdvK ;
+fun hyveellisyys_NK : NK ;
+fun hyvike_NK : NK ;
+fun hyvilleen_AdvK : AdvK ;
+fun hyvilla'a'n_AdvK : AdvK ;
+fun hyvin_AdvK : AdvK ;
+fun hyvinvoiva_NK : NK ;
+fun hyvite_NK : NK ;
+fun hyvitella'_VK : VK ;
+fun hyvittely_NK : NK ;
+fun hyvitta'a'_VK : VK ;
+fun hyvitys_NK : NK ;
+fun hyvyys_NK : NK ;
+fun hyva'_NK : NK ;
+fun hyva'illa'_VK : VK ;
+fun hyva'ily_NK : NK ;
+fun hyva'ksyja'_NK : NK ;
+fun hyva'ksymys_NK : NK ;
+fun hyva'ksynta'_NK : NK ;
+fun hyva'ksytta'vyys_NK : NK ;
+fun hyva'ksytta'va'_AK : AK ;
+--+ fun hyva'ksytta'va'sti_AdvK : AdvK ;
+fun hyva'ksytta'a'_VK : VK ;
+fun hyva'ksya'_VK : VK ;
+fun hyva'ka's_NK : NK ;
+fun hyva'nen_AdvK : AdvK ;
+fun hyva'nsuopa_NK : NK ;
+fun hyva'nsuopuus_NK : NK ;
+fun hyva'nsuovasti_AdvK : AdvK ;
+fun hyva'nsa'_AdvK : AdvK ;
+--+ fun hyva'ntahtoisesti_AdvK : AdvK ;
+fun hyva'ntekeva'isyys_NK : NK ;
+--+ fun hyva'ntuulisesti_AdvK : AdvK ;
+fun hyva'stella'_VK : VK ;
+fun hyva'stely_NK : NK ;
+fun hyva'sti_NK : NK ;
+--+ fun hyva'syda'misesti_AdvK : AdvK ;
+--+ fun hyva'uskoisesti_AdvK : AdvK ;
+fun hyva'a'_tarkoittava_NK : NK ;
+fun hyyde_NK : NK ;
+fun hyydyke_NK : NK ;
+fun hyydyte_NK : NK ;
+fun hyydytta'a'_VK : VK ;
+fun hyydytys_NK : NK ;
+fun hyyhma'_NK : NK ;
+fun hyypio'_NK : NK ;
+fun hyysa'ta'_VK : VK ;
+fun hyytelo'_NK : NK ;
+fun hyytelo'ida'_VK : VK ;
+fun hyytelo'itya'_VK : VK ;
+fun hyytyma'_NK : NK ;
+fun hyytya'_VK : VK ;
+fun hyyta'a'_VK : VK ;
+fun hyyto'_NK : NK ;
+fun hyo'dyke_NK : NK ;
+fun hyo'dyka's_NK : NK ;
+fun hyo'dyllinen_AK : AK ;
+--+ fun hyo'dyllisesti_AdvK : AdvK ;
+fun hyo'dyllisyys_NK : NK ;
+fun hyo'dynta'a'_VK : VK ;
+fun hyo'dytta'a'_VK : VK ;
+fun hyo'dytto'myys_NK : NK ;
+fun hyo'dytto'ma'sti_AdvK : AdvK ;
+fun hyo'dyto'n_NK : NK ;
+fun hyo'kka'illa'_VK : VK ;
+fun hyo'kka'ily_NK : NK ;
+fun hyo'kka'yksellinen_NK : NK ;
+fun hyo'kka'ys_NK : NK ;
+fun hyo'kka'a'ja'_NK : NK ;
+fun hyo'kka'a'vyys_NK : NK ;
+fun hyo'kka'a'va'_AK : AK ;
+--+ fun hyo'kka'a'va'sti_AdvK : AdvK ;
+fun hyo'ky_NK : NK ;
+fun hyo'kya'_VK : VK ;
+fun hyo'ka'ta'_VK : VK ;
+fun hyo'nteinen_NK : NK ;
+fun hyo'rinta'_NK : NK ;
+fun hyo'rina'_NK : NK ;
+fun hyo'ria'_VK : VK ;
+fun hyo'ty_NK : NK ;
+fun hyo'tya'_VK : VK ;
+fun hyo'ta'mo'_NK : NK ;
+fun hyo'ta'a'_VK : VK ;
+fun hyo'to'_NK : NK ;
+fun ha'_AdvK : AdvK ;
+fun ha'din_tuskin_AdvK : AdvK ;
+fun ha'dissa'a'n_AdvK : AdvK ;
+fun ha'h_AdvK : AdvK ;
+fun ha'ha'tta'a'_VK : VK ;
+fun ha'ha'tys_NK : NK ;
+fun ha'ijy_AK : AK ;
+--+ fun ha'ijysti_AdvK : AdvK ;
+fun ha'ijyys_NK : NK ;
+fun ha'ikka'_NK : NK ;
+fun ha'ika'ilema'tta'_AdvK : AdvK ;
+fun ha'ika'ilema'tto'myys_NK : NK ;
+fun ha'ika'ilema'tto'ma'sti_AdvK : AdvK ;
+fun ha'ika'ilema'to'n_NK : NK ;
+fun ha'ika'illa'_VK : VK ;
+fun ha'ika'istya'_VK : VK ;
+fun ha'ika'ista'_VK : VK ;
+fun ha'ika'isy_NK : NK ;
+fun ha'ilyvyys_NK : NK ;
+fun ha'ilyva'_NK : NK ;
+fun ha'ilyva'inen_NK : NK ;
+fun ha'ilya'_VK : VK ;
+fun ha'ila'hdella'_VK : VK ;
+fun ha'ila'hta'a'_VK : VK ;
+fun ha'ippa'ista'_VK : VK ;
+fun ha'ipyma'_NK : NK ;
+fun ha'ipya'_VK : VK ;
+fun ha'ipa'ta'_VK : VK ;
+fun ha'iriintynyt_NK : NK ;
+fun ha'iriintya'_VK : VK ;
+fun ha'irikko'_NK : NK ;
+fun ha'iriko'ida'_VK : VK ;
+fun ha'irinta'_NK : NK ;
+fun ha'iritsija'_NK : NK ;
+fun ha'irita'_VK : VK ;
+fun ha'iriytya'_VK : VK ;
+fun ha'irio'_NK : NK ;
+fun ha'irio'inen_NK : NK ;
+fun ha'iska'_NK : NK ;
+fun ha'ive_NK : NK ;
+fun ha'ivytta'a'_VK : VK ;
+fun ha'ivytys_NK : NK ;
+fun ha'iva'_NK : NK ;
+fun ha'iva'hdys_NK : NK ;
+fun ha'iva'hta'a'_VK : VK ;
+fun ha'jy_NK : NK ;
+fun ha'kellyksiin_AdvK : AdvK ;
+fun ha'kellyksiinsa'_AdvK : AdvK ;
+fun ha'kellyksissa'_AdvK : AdvK ;
+fun ha'kellyksissa'a'n_AdvK : AdvK ;
+fun ha'kellys_NK : NK ;
+fun ha'kellytta'a'_VK : VK ;
+fun ha'keltya'_VK : VK ;
+fun ha'kki_NK : NK ;
+fun ha'kkyra'_NK : NK ;
+fun ha'ka'_NK : NK ;
+fun ha'lina'_NK : NK ;
+fun ha'lino'ida'_VK : VK ;
+fun ha'lista'_VK : VK ;
+fun ha'lventya'_VK : VK ;
+fun ha'lventa'a'_VK : VK ;
+fun ha'lveta'_VK : VK ;
+fun ha'ly_NK : NK ;
+fun ha'lytin_NK : NK ;
+fun ha'lyttya'_VK : VK ;
+fun ha'lytta'va'_AK : AK ;
+--+ fun ha'lytta'va'sti_AdvK : AdvK ;
+fun ha'lytta'a'_VK : VK ;
+fun ha'lytys_NK : NK ;
+fun ha'lyta'_VK : VK ;
+fun ha'milleen_AdvK : AdvK ;
+fun ha'millinen_NK : NK ;
+fun ha'millisyys_NK : NK ;
+fun ha'milla'a'n_AdvK : AdvK ;
+fun ha'mmennin_NK : NK ;
+fun ha'mmennyksiin_AdvK : AdvK ;
+fun ha'mmennyksissa'_AdvK : AdvK ;
+fun ha'mmennyksissa'a'n_AdvK : AdvK ;
+fun ha'mmennys_NK : NK ;
+fun ha'mmennytta'a'_VK : VK ;
+fun ha'mmentya'_VK : VK ;
+fun ha'mmenta'a'_VK : VK ;
+fun ha'mminki_NK : NK ;
+fun ha'mma'stella'_VK : VK ;
+fun ha'mma'stely_NK : NK ;
+fun ha'mma'styksissa'a'n_AdvK : AdvK ;
+fun ha'mma'stys_NK : NK ;
+fun ha'mma'stytta'a'_VK : VK ;
+fun ha'mma'stya'_VK : VK ;
+fun ha'my_NK : NK ;
+fun ha'myinen_NK : NK ;
+fun ha'ma'ha'kki_NK : NK ;
+fun ha'ma'la'inen_NK : NK ;
+fun ha'ma'la'isitta'in_AdvK : AdvK ;
+fun ha'ma'la'isyys_NK : NK ;
+fun ha'ma'rrytta'a'_VK : VK ;
+fun ha'ma'rtya'_VK : VK ;
+fun ha'ma'rta'a'_VK : VK ;
+fun ha'ma'ryys_NK : NK ;
+fun ha'ma'ra'_AK : AK ;
+--+ fun ha'ma'ra'sti_AdvK : AdvK ;
+fun ha'ma'ta'_VK : VK ;
+fun ha'ma'ys_NK : NK ;
+fun ha'ma'a'nnyksiin_AdvK : AdvK ;
+fun ha'ma'a'nnyksissa'_AdvK : AdvK ;
+fun ha'ma'a'nnyksissa'a'n_AdvK : AdvK ;
+fun ha'ma'a'nnys_NK : NK ;
+fun ha'ma'a'nnytta'a'_VK : VK ;
+fun ha'ma'a'ntya'_VK : VK ;
+fun ha'nenlaisensa_NK : NK ;
+fun ha'nnys_NK : NK ;
+fun ha'nnystelija'_NK : NK ;
+fun ha'nnystella'_VK : VK ;
+fun ha'nnystely_NK : NK ;
+fun ha'nna'llinen_NK : NK ;
+fun ha'ntyri_NK : NK ;
+fun ha'nta'_NK : NK ;
+fun ha'nta'inen_NK : NK ;
+fun ha'peilla'_VK : VK ;
+fun ha'peissa'a'n_AdvK : AdvK ;
+fun ha'pea'_NK : NK ;
+fun ha'pea'llinen_AK : AK ;
+--+ fun ha'pea'llisesti_AdvK : AdvK ;
+fun ha'pea'ma'tto'myys_NK : NK ;
+fun ha'pea'ma'tto'ma'sti_AdvK : AdvK ;
+fun ha'pea'ma'to'n_NK : NK ;
+fun ha'ppa'_NK : NK ;
+fun ha'py_NK : NK ;
+fun ha'pa'ista'_VK : VK ;
+fun ha'pa'isy_NK : NK ;
+fun ha'rkki_NK : NK ;
+fun ha'rkyla'_NK : NK ;
+fun ha'rka'_NK : NK ;
+fun ha'rka'nen_NK : NK ;
+--+ fun ha'rka'pa'isesti_AdvK : AdvK ;
+fun ha'rka'pa'isyys_NK : NK ;
+fun ha'rme_NK : NK ;
+fun ha'rmettya'_VK : VK ;
+fun ha'rmistya'_VK : VK ;
+fun ha'rmista'a'_VK : VK ;
+fun ha'rma'_NK : NK ;
+fun ha'rma'inen_NK : NK ;
+fun ha'rma'la'inen_NK : NK ;
+fun ha'rma'la'isyys_NK : NK ;
+fun ha'rma'a'ntya'_VK : VK ;
+fun ha'rna'illa'_VK : VK ;
+fun ha'rna'ta'_VK : VK ;
+fun ha'rna'ys_NK : NK ;
+fun ha'rski_AK : AK ;
+fun ha'rskiintya'_VK : VK ;
+--+ fun ha'rskisti_AdvK : AdvK ;
+fun ha'rskiys_NK : NK ;
+fun ha'rskiytya'_VK : VK ;
+fun ha'rveli_NK : NK ;
+fun ha'ssia'_VK : VK ;
+fun ha'ssa'kka'_NK : NK ;
+fun ha'tha'ta'a'_AdvK : AdvK ;
+fun ha'tiko'ida'_VK : VK ;
+fun ha'tiko'inti_NK : NK ;
+fun ha'timmiten_AdvK : AdvK ;
+fun ha'tistella'_VK : VK ;
+fun ha'tista'a'_VK : VK ;
+fun ha'tka'hdella'_VK : VK ;
+fun ha'tka'hdys_NK : NK ;
+fun ha'tka'hdytta'a'_VK : VK ;
+fun ha'tka'hta'a'_VK : VK ;
+fun ha'tka'ytta'a'_VK : VK ;
+fun ha'tyytella'_VK : VK ;
+fun ha'tyytta'a'_VK : VK ;
+fun ha'tyytys_NK : NK ;
+fun ha'ta'_NK : NK ;
+fun ha'ta'housu_NK : NK ;
+fun ha'ta'illa'_VK : VK ;
+fun ha'ta'ily_NK : NK ;
+fun ha'ta'inen_AK : AK ;
+--+ fun ha'ta'isesti_AdvK : AdvK ;
+fun ha'ta'a'nnyksissa'_AdvK : AdvK ;
+fun ha'ta'a'nnyksissa'a'n_AdvK : AdvK ;
+fun ha'ta'a'nnys_NK : NK ;
+fun ha'ta'a'nnytta'a'_VK : VK ;
+fun ha'ta'a'ntya'_VK : VK ;
+fun ha'velia'isyys_NK : NK ;
+fun ha'velia's_AK : AK ;
+--+ fun ha'velia'a'sti_AdvK : AdvK ;
+fun ha'vetta'a'_VK : VK ;
+fun ha'veta'_VK : VK ;
+fun ha'vikki_NK : NK ;
+fun ha'vite_NK : NK ;
+fun ha'vitta'ja'_NK : NK ;
+fun ha'vitta'a'_VK : VK ;
+fun ha'vitys_NK : NK ;
+fun ha'vita'_VK : VK ;
+fun ha'via'ja'_NK : NK ;
+fun ha'via'ma'tto'myys_NK : NK ;
+fun ha'via'ma'to'n_NK : NK ;
+fun ha'vio'_NK : NK ;
+fun ha'vytto'myys_NK : NK ;
+fun ha'vytto'ma'sti_AdvK : AdvK ;
+fun ha'vyto'n_NK : NK ;
+fun ha'va'istys_NK : NK ;
+fun ha'va'ista'_VK : VK ;
+fun ha'a'della'_VK : VK ;
+fun ha'a'lento_NK : NK ;
+fun ha'a'lyva'_NK : NK ;
+fun ha'a'lyva'inen_NK : NK ;
+fun ha'a'lya'_VK : VK ;
+fun ha'a'mo'tta'a'_VK : VK ;
+fun ha'a'mo'tys_NK : NK ;
+fun ha'a'pari_NK : NK ;
+fun ha'a'ppo'inen_NK : NK ;
+fun ha'a'rinta'_NK : NK ;
+fun ha'a'rina'_NK : NK ;
+fun ha'a'ria'_VK : VK ;
+fun ha'a'ra'illa'_VK : VK ;
+fun ha'a'ra'ily_NK : NK ;
+fun ha'a'ra'ta'_VK : VK ;
+--? fun ha'a't_NK : NK ;
+fun ha'a'ta'a'_VK : VK ;
+fun ha'a'to'_NK : NK ;
+fun ha'a'vi_AK : AK ;
+--+ fun ha'a'visti_AdvK : AdvK ;
+fun ho'hla'_NK : NK ;
+fun ho'kkeli_NK : NK ;
+fun ho'ko'tys_NK : NK ;
+fun ho'lina'_NK : NK ;
+fun ho'lista'_VK : VK ;
+fun ho'lkka'_NK : NK ;
+fun ho'lkka'a'ja'_NK : NK ;
+fun ho'lkytella'_VK : VK ;
+fun ho'lkytta'a'_VK : VK ;
+fun ho'lka'ta'_VK : VK ;
+fun ho'llennys_NK : NK ;
+fun ho'llentya'_VK : VK ;
+fun ho'llenta'a'_VK : VK ;
+fun ho'lleta'_VK : VK ;
+fun ho'llyys_NK : NK ;
+fun ho'lla'_AK : AK ;
+--+ fun ho'lla'ka'tisesti_AdvK : AdvK ;
+fun ho'lla'lle_AdvK : AdvK ;
+fun ho'lla'lla'_AdvK : AdvK ;
+fun ho'lla'ssa'_AdvK : AdvK ;
+--+ fun ho'lla'sti_AdvK : AdvK ;
+fun ho'lla'ta'_VK : VK ;
+fun ho'lla'a'n_AdvK : AdvK ;
+fun ho'lmistys_NK : NK ;
+fun ho'lmistytta'a'_VK : VK ;
+fun ho'lmistya'_VK : VK ;
+fun ho'lmo'_AK : AK ;
+fun ho'lmo'illa'_VK : VK ;
+fun ho'lmo'la'inen_NK : NK ;
+--+ fun ho'lmo'sti_AdvK : AdvK ;
+fun ho'lmo'ys_NK : NK ;
+fun ho'lpo'tta'a'_VK : VK ;
+fun ho'lskytta'a'_VK : VK ;
+fun ho'lskya'_VK : VK ;
+fun ho'ltya'_VK : VK ;
+fun ho'la'ytta'a'_VK : VK ;
+fun ho'lo'_NK : NK ;
+fun ho'lo'tta'a'_VK : VK ;
+fun ho'mppa'_NK : NK ;
+fun ho'mpsy_NK : NK ;
+fun ho'mpso'tta'a'_VK : VK ;
+fun ho'mpso'tys_NK : NK ;
+fun ho'mpo'tta'a'_VK : VK ;
+fun ho'mpo'tys_NK : NK ;
+fun ho'nka'ista'_VK : VK ;
+fun ho'ntti_NK : NK ;
+fun ho'no'_NK : NK ;
+fun ho'peryys_NK : NK ;
+fun ho'pero'_AK : AK ;
+--+ fun ho'pero'sti_AdvK : AdvK ;
+fun ho'pina'_NK : NK ;
+fun ho'pista'_VK : VK ;
+fun ho'pla'sta'_AdvK : AdvK ;
+fun ho'ppa'na'_NK : NK ;
+fun ho'psis_AdvK : AdvK ;
+fun ho'psista'_AdvK : AdvK ;
+fun ho'psia'_VK : VK ;
+fun ho'psa'hta'nyt_NK : NK ;
+fun ho'psa'hta'va'_NK : NK ;
+fun ho'pso'_NK : NK ;
+fun ho'po'_NK : NK ;
+fun ho'po'n_AdvK : AdvK ;
+fun ho'po'tta'a'_VK : VK ;
+fun ho'po'tys_NK : NK ;
+fun ho'rhelo'_NK : NK ;
+fun ho'rho'_NK : NK ;
+fun ho'ristella'_VK : VK ;
+fun ho'rista'a'_VK : VK ;
+fun ho'rppia'_VK : VK ;
+fun ho'rppy_NK : NK ;
+fun ho'rpa'ta'_VK : VK ;
+fun ho'rtso'_NK : NK ;
+fun ho'ra'hdella'_VK : VK ;
+fun ho'ra'hdys_NK : NK ;
+fun ho'ra'hta'a'_VK : VK ;
+fun ho'ro'lle_AdvK : AdvK ;
+fun ho'ro'lleen_AdvK : AdvK ;
+fun ho'ro'lla'_AdvK : AdvK ;
+fun ho'ro'lla'a'n_AdvK : AdvK ;
+fun ho'ro'ssa'_AdvK : AdvK ;
+fun ho'ro'tta'a'_VK : VK ;
+fun ho'ro'tys_NK : NK ;
+fun ho'ro'o'n_AdvK : AdvK ;
+fun ho'ska'_NK : NK ;
+fun ho'sseli_NK : NK ;
+fun ho'ssa'kka'_NK : NK ;
+fun ho'sso'tta'a'_VK : VK ;
+fun ho'sso'tys_NK : NK ;
+fun ho'tkyilla'_VK : VK ;
+fun ho'tkyily_NK : NK ;
+fun ho'tto'_NK : NK ;
+fun ho'tto'sissa'a'n_AdvK : AdvK ;
+fun ho'ta'kka'_NK : NK ;
+fun ho'to'_NK : NK ;
+fun ho'veli_AK : AK ;
+--+ fun ho'velisti_AdvK : AdvK ;
+fun ho'yde_NK : NK ;
+fun ho'yhen_NK : NK ;
+fun ho'yheninen_NK : NK ;
+fun ho'yhenisto'_NK : NK ;
+fun ho'yhennys_NK : NK ;
+fun ho'yhenta'a'_VK : VK ;
+fun ho'yhenys_NK : NK ;
+fun ho'ykky_NK : NK ;
+fun ho'ykytta'a'_VK : VK ;
+fun ho'ykytys_NK : NK ;
+fun ho'yka'nen_AdvK : AdvK ;
+fun ho'yli_AK : AK ;
+--+ fun ho'ylisti_AdvK : AdvK ;
+fun ho'yla'_NK : NK ;
+fun ho'yla'ta'_VK : VK ;
+fun ho'yla'ys_NK : NK ;
+fun ho'yla'ytya'_VK : VK ;
+fun ho'yla'a'mo'_NK : NK ;
+fun ho'yla'a'ntya'_VK : VK ;
+fun ho'yna'_NK : NK ;
+fun ho'yna'hta'a'_VK : VK ;
+fun ho'yna'ytta'a'_VK : VK ;
+fun ho'yry_NK : NK ;
+fun ho'yryinen_NK : NK ;
+fun ho'yrystin_NK : NK ;
+fun ho'yrystys_NK : NK ;
+fun ho'yrystya'_VK : VK ;
+fun ho'yrysta'a'_VK : VK ;
+fun ho'yrytin_NK : NK ;
+fun ho'yryttya'_VK : VK ;
+fun ho'yrytta'a'_VK : VK ;
+fun ho'yrytys_NK : NK ;
+fun ho'yryta'_VK : VK ;
+fun ho'yryyntya'_VK : VK ;
+fun ho'yra'hta'a'_VK : VK ;
+fun ho'yste_NK : NK ;
+fun ho'ysta'a'_VK : VK ;
+fun ho'ysto'_NK : NK ;
+fun ho'yty_NK : NK ;
+fun ho'ytyinen_NK : NK ;
+fun ho'ytyva'_NK : NK ;
+fun ho'yta'le_NK : NK ;
+fun ho'o'sa'ta'_VK : VK ;
+fun ho'o'sa'ys_NK : NK ;
+fun iankaiken_AdvK : AdvK ;
+fun iankaikkinen_AK : AK ;
+--+ fun iankaikkisesti_AdvK : AdvK ;
+fun iankaikkisuus_NK : NK ;
+fun icing_NK : NK ;
+fun idea_NK : NK ;
+fun ideaali_NK : NK ;
+fun ideaalistaa_VK : VK ;
+fun ideaalisuus_NK : NK ;
+fun idealismi_NK : NK ;
+fun idealisoida_VK : VK ;
+fun idealisti_NK : NK ;
+fun idealistinen_NK : NK ;
+fun idemma'ksi_AdvK : AdvK ;
+fun idemma's_AdvK : AdvK ;
+fun idempi_NK : NK ;
+fun idempa'na'_AdvK : AdvK ;
+fun idempa'a'_AdvK : AdvK ;
+fun identifikaatio_NK : NK ;
+fun identifioida_VK : VK ;
+fun identifiointi_NK : NK ;
+fun identifioitua_VK : VK ;
+fun identiteetti_NK : NK ;
+fun identtinen_AK : AK ;
+--+ fun identtisesti_AdvK : AdvK ;
+fun identtisyys_NK : NK ;
+fun ideoida_VK : VK ;
+fun ideointi_NK : NK ;
+fun ideologi_NK : NK ;
+fun ideologia_NK : NK ;
+fun ideologinen_NK : NK ;
+fun idiomi_NK : NK ;
+fun idiootti_NK : NK ;
+--+ fun idioottimaisesti_AdvK : AdvK ;
+fun idioottimaisuus_NK : NK ;
+fun idis_NK : NK ;
+fun idoli_NK : NK ;
+fun idylli_NK : NK ;
+fun idyllinen_AK : AK ;
+--+ fun idyllisesti_AdvK : AdvK ;
+fun idyllisyys_NK : NK ;
+fun ida'tella'_VK : VK ;
+fun ida'tta'a'_VK : VK ;
+fun ida'tys_NK : NK ;
+fun ien_NK : NK ;
+fun ies_NK : NK ;
+fun iesta'a'_VK : VK ;
+fun iglu_NK : NK ;
+fun igumeeni_NK : NK ;
+fun ihailevasti_AdvK : AdvK ;
+fun ihailija_NK : NK ;
+fun ihailla_VK : VK ;
+fun ihailtava_AK : AK ;
+--+ fun ihailtavasti_AdvK : AdvK ;
+fun ihailu_NK : NK ;
+fun ihan_AdvK : AdvK ;
+fun ihana_AK : AK ;
+--+ fun ihanasti_AdvK : AdvK ;
+fun ihanne_NK : NK ;
+fun ihanneaika_NK : NK ;
+fun ihannoida_VK : VK ;
+fun ihannointi_NK : NK ;
+fun ihanteellinen_AK : AK ;
+--+ fun ihanteellisesti_AdvK : AdvK ;
+fun ihanteellisuus_NK : NK ;
+fun ihanuus_NK : NK ;
+fun ihastella_VK : VK ;
+fun ihastelu_NK : NK ;
+fun ihastua_VK : VK ;
+fun ihastuksissaan_AdvK : AdvK ;
+fun ihastus_NK : NK ;
+fun ihastuttaa_VK : VK ;
+fun ihastuttava_AK : AK ;
+--+ fun ihastuttavasti_AdvK : AdvK ;
+fun ihka_AdvK : AdvK ;
+fun ihkasen_AdvK : AdvK ;
+fun ihme_AK : AK ;
+fun ihmeellinen_NK : NK ;
+fun ihmeellisesti_AdvK : AdvK ;
+fun ihmeellisyys_NK : NK ;
+fun ihmeemmin_AdvK : AdvK ;
+--+ fun ihmeesti_AdvK : AdvK ;
+fun ihmeisiinsa'_AdvK : AdvK ;
+fun ihmeissa'a'n_AdvK : AdvK ;
+fun ihmetella'_VK : VK ;
+fun ihmetelta'va'_AK : AK ;
+--+ fun ihmetelta'va'sti_AdvK : AdvK ;
+fun ihmettely_NK : NK ;
+fun ihmetys_NK : NK ;
+fun ihmetytta'a'_VK : VK ;
+fun ihminen_NK : NK ;
+fun ihmisma'inen_AK : AK ;
+--+ fun ihmisma'isesti_AdvK : AdvK ;
+fun ihmisma'istya'_VK : VK ;
+fun ihmisparka_NK : NK ;
+fun ihmistya'_VK : VK ;
+fun ihmisyys_NK : NK ;
+fun iho_NK : NK ;
+fun ihoinen_NK : NK ;
+fun ihokas_NK : NK ;
+fun ihottuma_NK : NK ;
+fun ihra_NK : NK ;
+fun iibis_NK : NK ;
+fun iikka_NK : NK ;
+fun iilia'inen_NK : NK ;
+fun iiri_NK : NK ;
+fun iirila'inen_NK : NK ;
+fun iiris_NK : NK ;
+fun iisi_AK : AK ;
+--+ fun iisisti_AdvK : AdvK ;
+fun iisoppi_NK : NK ;
+fun iivana_NK : NK ;
+fun ikebana_NK : NK ;
+fun ikiaika_NK : NK ;
+fun iki_ihastunut_NK : NK ;
+fun ikimaailmassa_AdvK : AdvK ;
+fun ikinen_NK : NK ;
+fun ikina'_AdvK : AdvK ;
+fun ikipa'iviksi_AdvK : AdvK ;
+fun ikipa'ivina'_AdvK : AdvK ;
+fun ikipa'iva'na'_AdvK : AdvK ;
+fun ikkuna_NK : NK ;
+fun ikkunainen_NK : NK ;
+fun ikkunallinen_NK : NK ;
+fun ikkunanhaka_NK : NK ;
+fun ikkunanpesija'_NK : NK ;
+fun ikkunoida_VK : VK ;
+fun ikkunointi_NK : NK ;
+fun ikoni_NK : NK ;
+fun ikoninen_NK : NK ;
+fun ikonisuus_NK : NK ;
+fun ikonostaasi_NK : NK ;
+fun iktyonomi_NK : NK ;
+fun ikuinen_AK : AK ;
+--+ fun ikuisesti_AdvK : AdvK ;
+fun ikuistaa_VK : VK ;
+fun ikuisuus_NK : NK ;
+fun ika'_NK : NK ;
+fun ika'inen_NK : NK ;
+fun ika'johtaminen_NK : NK ;
+fun ika'na'_AdvK : AdvK ;
+fun ika'vissa'a'n_AdvK : AdvK ;
+--+ fun ika'vystyneesti_AdvK : AdvK ;
+fun ika'vystyneisyys_NK : NK ;
+fun ika'vystynyt_AK : AK ;
+fun ika'vystytta'vyys_NK : NK ;
+fun ika'vystytta'va'_AK : AK ;
+--+ fun ika'vystytta'va'sti_AdvK : AdvK ;
+fun ika'vystytta'a'_VK : VK ;
+fun ika'vystya'_VK : VK ;
+fun ika'vyys_NK : NK ;
+fun ika'va'_AK : AK ;
+--+ fun ika'va'sti_AdvK : AdvK ;
+fun ika'vo'ida'_VK : VK ;
+fun ika'vo'inti_NK : NK ;
+fun ika'ys_NK : NK ;
+fun ika'a'n_AdvK : AdvK ;
+fun ika'a'n_kuin_AdvK : AdvK ;
+fun ika'a'ntya'_VK : VK ;
+fun ilahduttaa_VK : VK ;
+fun ilahtua_VK : VK ;
+fun ilakoida_VK : VK ;
+fun ilakointi_NK : NK ;
+fun iljanko_NK : NK ;
+fun iljankoinen_NK : NK ;
+fun iljanne_NK : NK ;
+fun iljanteinen_NK : NK ;
+fun iljetta'vyys_NK : NK ;
+fun iljetta'va'_AK : AK ;
+--+ fun iljetta'va'sti_AdvK : AdvK ;
+fun iljetta'a'_VK : VK ;
+fun iljetys_NK : NK ;
+fun iljeta'_VK : VK ;
+fun ilkamoida_VK : VK ;
+fun ilkamointi_NK : NK ;
+fun ilkeilla'_VK : VK ;
+fun ilkeily_NK : NK ;
+fun ilkeys_NK : NK ;
+fun ilkea'_AK : AK ;
+--+ fun ilkea'sti_AdvK : AdvK ;
+fun ilki_AdvK : AdvK ;
+fun ilkikurinen_AK : AK ;
+--+ fun ilkikurisesti_AdvK : AdvK ;
+fun ilkikurisuus_NK : NK ;
+fun ilkimys_NK : NK ;
+fun ilkinen_NK : NK ;
+--+ fun ilkivaltaisesti_AdvK : AdvK ;
+fun ilkio'_NK : NK ;
+fun ilkkua_VK : VK ;
+fun ilkosen_AdvK : AdvK ;
+fun ilkosillaan_AdvK : AdvK ;
+fun ilkosilleen_AdvK : AdvK ;
+fun illakko_NK : NK ;
+fun illallinen_NK : NK ;
+fun illastaa_VK : VK ;
+fun illatiivi_NK : NK ;
+--? fun illatsut_NK : NK ;
+fun illemmaksi_AdvK : AdvK ;
+fun illemmalla_AdvK : AdvK ;
+fun illempana_AdvK : AdvK ;
+fun illusorinen_NK : NK ;
+fun illustraatio_NK : NK ;
+fun illustroida_VK : VK ;
+fun illuusio_NK : NK ;
+fun ilma_NK : NK ;
+fun ilmaantua_VK : VK ;
+fun ilmaantuvuus_NK : NK ;
+fun ilmailla_VK : VK ;
+fun ilmailu_NK : NK ;
+fun ilmainen_NK : NK ;
+fun ilmaisanti_NK : NK ;
+fun ilmaiseksi_AdvK : AdvK ;
+fun ilmaisija_NK : NK ;
+fun ilmaisin_NK : NK ;
+fun ilmaisosakeanti_NK : NK ;
+fun ilmaista_VK : VK ;
+fun ilmaisu_NK : NK ;
+fun ilmaisullinen_NK : NK ;
+fun ilmajuuri_NK : NK ;
+fun ilman_AdvK : AdvK ;
+--+ fun ilmanpita'va'sti_AdvK : AdvK ;
+fun ilmastaa_VK : VK ;
+fun ilmaste_NK : NK ;
+fun ilmastin_NK : NK ;
+fun ilmasto_NK : NK ;
+fun ilmastoida_VK : VK ;
+fun ilmastoinen_NK : NK ;
+fun ilmastointi_NK : NK ;
+fun ilmastollinen_AK : AK ;
+--+ fun ilmastollisesti_AdvK : AdvK ;
+fun ilmastua_VK : VK ;
+fun ilmastus_NK : NK ;
+fun ilmata_VK : VK ;
+fun ilmaton_NK : NK ;
+fun ilmaus_NK : NK ;
+fun ilmava_AK : AK ;
+--+ fun ilmavasti_AdvK : AdvK ;
+fun ilmavuus_NK : NK ;
+fun ilme_NK : NK ;
+fun ilmeetto'myys_NK : NK ;
+fun ilmeetto'ma'sti_AdvK : AdvK ;
+fun ilmeeto'n_NK : NK ;
+fun ilmehdinta'_NK : NK ;
+fun ilmehtia'_VK : VK ;
+fun ilmeikkyys_NK : NK ;
+--+ fun ilmeikka'a'sti_AdvK : AdvK ;
+fun ilmeika's_AK : AK ;
+fun ilmeilla'_VK : VK ;
+fun ilmeily_NK : NK ;
+fun ilmeinen_1_AK : AK ;
+fun ilmeinen_2_AK : AK ;
+--+ fun ilmeisesti_AdvK : AdvK ;
+fun ilmeitta'a'_VK : VK ;
+fun ilmenema'_NK : NK ;
+fun ilmennys_NK : NK ;
+fun ilmentyma'_NK : NK ;
+fun ilmentya'_VK : VK ;
+fun ilmenta'a'_VK : VK ;
+fun ilmestymisaika_NK : NK ;
+fun ilmestys_NK : NK ;
+fun ilmestya'_VK : VK ;
+fun ilmetty_NK : NK ;
+fun ilmeta'_VK : VK ;
+fun ilmi_AdvK : AdvK ;
+fun ilmio'_NK : NK ;
+fun ilmio'ma'inen_AK : AK ;
+--+ fun ilmio'ma'isesti_AdvK : AdvK ;
+fun ilmio'ma'isyys_NK : NK ;
+fun ilmoinen_AdvK : AdvK ;
+fun ilmoitella_VK : VK ;
+fun ilmoitse_AdvK : AdvK ;
+fun ilmoittaa_VK : VK ;
+fun ilmoittaja_NK : NK ;
+fun ilmoittautua_VK : VK ;
+fun ilmoittautumisaika_NK : NK ;
+fun ilmoittelu_NK : NK ;
+fun ilmoittua_VK : VK ;
+fun ilmoitus_NK : NK ;
+fun ilo_NK : NK ;
+fun iloinen_AK : AK ;
+--+ fun iloisesti_AdvK : AdvK ;
+fun iloissaan_AdvK : AdvK ;
+fun iloisuus_NK : NK ;
+fun iloita_VK : VK ;
+fun ilostua_VK : VK ;
+fun ilostuttaa_VK : VK ;
+fun ilotella_VK : VK ;
+fun iloton_NK : NK ;
+fun ilottelu_NK : NK ;
+fun ilottomasti_AdvK : AdvK ;
+fun ilottomuus_NK : NK ;
+fun ilta_NK : NK ;
+fun iltainen_NK : NK ;
+fun iltaisin_AdvK : AdvK ;
+fun iltama_NK : NK ;
+fun iltanen_NK : NK ;
+fun iltasella_AdvK : AdvK ;
+fun iltti_NK : NK ;
+fun ilve_NK : NK ;
+fun ilvehtia'_VK : VK ;
+fun ilveilija'_NK : NK ;
+fun ilveilla'_VK : VK ;
+fun ilveily_NK : NK ;
+fun ilves_NK : NK ;
+fun imaami_NK : NK ;
+fun image_NK : NK ;
+fun imaginaarinen_NK : NK ;
+fun imago_NK : NK ;
+fun imaista_VK : VK ;
+fun imaisu_NK : NK ;
+fun imarre_NK : NK ;
+fun imarrella_VK : VK ;
+fun imartelu_NK : NK ;
+fun imbesilli_NK : NK ;
+fun imeksia'_VK : VK ;
+fun imelle_NK : NK ;
+fun imellys_NK : NK ;
+fun imellytta'a'_VK : VK ;
+fun imeltya'_VK : VK ;
+fun imelta'a'_VK : VK ;
+fun imelyys_NK : NK ;
+fun imela'_AK : AK ;
+--+ fun imela'sti_AdvK : AdvK ;
+fun imelo'itta'a'_VK : VK ;
+fun imeskella'_VK : VK ;
+fun imetta'ja'_NK : NK ;
+fun imetta'va'inen_NK : NK ;
+fun imetta'a'_VK : VK ;
+fun imetys_NK : NK ;
+fun imetysaika_NK : NK ;
+fun imeva'inen_NK : NK ;
+fun imeytta'a'_VK : VK ;
+fun imeytys_NK : NK ;
+fun imeytya'_VK : VK ;
+fun imea'_VK : VK ;
+fun imikka'_NK : NK ;
+fun imitaatio_NK : NK ;
+fun imitaattori_NK : NK ;
+fun imitoida_VK : VK ;
+fun imitoija_NK : NK ;
+fun imitointi_NK : NK ;
+fun immateriaalinen_NK : NK ;
+fun immunisaatio_NK : NK ;
+fun immunisoida_VK : VK ;
+fun immunisointi_NK : NK ;
+fun immunisoitua_VK : VK ;
+fun immuniteetti_NK : NK ;
+fun immunologia_NK : NK ;
+fun immunologinen_NK : NK ;
+fun immuuni_NK : NK ;
+fun immuunistaa_VK : VK ;
+fun immuunistua_VK : VK ;
+fun immuunius_NK : NK ;
+fun immyt_NK : NK ;
+fun impata_VK : VK ;
+fun impedanssi_NK : NK ;
+fun imperatiivi_NK : NK ;
+fun imperfekti_NK : NK ;
+fun imperialismi_NK : NK ;
+fun imperialisti_NK : NK ;
+fun imperialistinen_NK : NK ;
+fun imperiumi_NK : NK ;
+fun impi_NK : NK ;
+fun impivaaralainen_NK : NK ;
+fun impivaaralaisuus_NK : NK ;
+fun implantaatio_NK : NK ;
+fun implantaatti_NK : NK ;
+fun implantoida_VK : VK ;
+fun implantti_NK : NK ;
+fun implikoida_VK : VK ;
+fun implisiittinen_AK : AK ;
+--+ fun implisiittisesti_AdvK : AdvK ;
+fun implisiittisyys_NK : NK ;
+fun implisoida_VK : VK ;
+fun imponoida_VK : VK ;
+fun impotenssi_NK : NK ;
+fun impotentti_NK : NK ;
+fun imppaus_NK : NK ;
+fun impregnoida_VK : VK ;
+fun impregnointi_NK : NK ;
+fun impressaari_NK : NK ;
+fun impressaario_NK : NK ;
+fun impressionismi_NK : NK ;
+fun impressionisti_NK : NK ;
+fun impressionistinen_NK : NK ;
+fun improbatur_NK : NK ;
+fun impromptu_NK : NK ;
+fun improvisaatio_NK : NK ;
+fun improvisatorinen_NK : NK ;
+fun improvisoida_VK : VK ;
+fun improvisointi_NK : NK ;
+fun impulsiivinen_AK : AK ;
+--+ fun impulsiivisesti_AdvK : AdvK ;
+fun impulsiivisuus_NK : NK ;
+fun impulssi_NK : NK ;
+fun imu_NK : NK ;
+fun imuke_NK : NK ;
+fun imuri_NK : NK ;
+fun imuroida_VK : VK ;
+fun imurointi_NK : NK ;
+fun in_AdvK : AdvK ;
+fun inahdus_NK : NK ;
+fun inahtaa_VK : VK ;
+fun indefiniittinen_NK : NK ;
+fun indeksi_NK : NK ;
+fun indeksoida_VK : VK ;
+fun indifferenssi_NK : NK ;
+fun indifferentti_NK : NK ;
+fun indigo_NK : NK ;
+fun indiisi_NK : NK ;
+fun indikaatio_NK : NK ;
+fun indikaattori_NK : NK ;
+fun indikatiivi_NK : NK ;
+fun indikoida_VK : VK ;
+fun indisio_NK : NK ;
+fun indisoida_VK : VK ;
+fun indium_NK : NK ;
+fun individi_NK : NK ;
+fun individuaalinen_NK : NK ;
+fun individuaalistaa_VK : VK ;
+fun individualismi_NK : NK ;
+fun individualisoida_VK : VK ;
+fun individualisti_NK : NK ;
+fun individualistinen_AK : AK ;
+--+ fun individualistisesti_AdvK : AdvK ;
+fun indoiranilainen_NK : NK ;
+fun indoktrinaatio_NK : NK ;
+fun indoktrinoida_VK : VK ;
+fun indoktrinointi_NK : NK ;
+fun induktanssi_NK : NK ;
+fun induktiivinen_NK : NK ;
+fun induktio_NK : NK ;
+fun indusoida_VK : VK ;
+fun indusoitua_VK : VK ;
+fun industrialismi_NK : NK ;
+fun industrialistinen_NK : NK ;
+fun inertia_NK : NK ;
+fun inertti_NK : NK ;
+fun inessiivi_NK : NK ;
+fun infantiili_NK : NK ;
+fun infantiilius_NK : NK ;
+fun infantilismi_NK : NK ;
+fun infarkti_NK : NK ;
+fun infektio_NK : NK ;
+fun infektoida_VK : VK ;
+fun infektoitua_VK : VK ;
+fun infernaalinen_NK : NK ;
+fun infertiili_NK : NK ;
+fun infinitiivi_NK : NK ;
+fun inflaatio_NK : NK ;
+fun inflatorinen_NK : NK ;
+fun influenssa_NK : NK ;
+fun info_NK : NK ;
+fun infokratia_NK : NK ;
+fun informaatikko_NK : NK ;
+fun informaatio_NK : NK ;
+fun informalismi_NK : NK ;
+fun informalisti_NK : NK ;
+fun informalistinen_NK : NK ;
+fun informatiikka_NK : NK ;
+fun informatiivinen_NK : NK ;
+fun informatorinen_NK : NK ;
+fun informoida_VK : VK ;
+fun informointi_NK : NK ;
+fun infuusio_NK : NK ;
+fun ingressi_NK : NK ;
+fun inhalaatio_NK : NK ;
+fun inhalaattori_NK : NK ;
+fun inhaloida_VK : VK ;
+fun inhalointi_NK : NK ;
+fun inhibiittori_NK : NK ;
+fun inhibitio_NK : NK ;
+fun inhibitorinen_NK : NK ;
+fun inhiboida_VK : VK ;
+fun inhiboitua_VK : VK ;
+fun inhimillinen_AK : AK ;
+--+ fun inhimillisesti_AdvK : AdvK ;
+fun inhimillistya'_VK : VK ;
+fun inhimillista'a'_VK : VK ;
+fun inhimillisyys_NK : NK ;
+fun inho_NK : NK ;
+fun inhota_VK : VK ;
+fun inhottaa_VK : VK ;
+fun inhottava_AK : AK ;
+--+ fun inhottavasti_AdvK : AdvK ;
+fun inhottavuus_NK : NK ;
+fun inhotus_NK : NK ;
+fun inina'_NK : NK ;
+fun inista'_VK : VK ;
+fun initiaatio_NK : NK ;
+fun injektio_NK : NK ;
+fun injektoida_VK : VK ;
+fun inka_NK : NK ;
+fun inkarnaatio_NK : NK ;
+fun inkarnoitua_VK : VK ;
+fun inkerikko_NK : NK ;
+fun inkerila'inen_NK : NK ;
+fun inkeroinen_NK : NK ;
+fun inkiva'a'ri_NK : NK ;
+fun inkkari_NK : NK ;
+fun inkognito_AdvK : AdvK ;
+fun inkongruenssi_NK : NK ;
+fun inkontinenssi_NK : NK ;
+fun inkubaatioaika_NK : NK ;
+fun inkubaattori_NK : NK ;
+fun inkvisiittori_NK : NK ;
+fun inkvisitio_NK : NK ;
+fun innoissaan_AdvK : AdvK ;
+fun innoite_NK : NK ;
+fun innoittaa_VK : VK ;
+fun innoittaja_NK : NK ;
+fun innoittua_VK : VK ;
+fun innoitus_NK : NK ;
+fun innokas_AK : AK ;
+--+ fun innokkaasti_AdvK : AdvK ;
+fun innokkuus_NK : NK ;
+fun innostaa_VK : VK ;
+fun innostaja_NK : NK ;
+fun innostua_VK : VK ;
+fun innostuksissaan_AdvK : AdvK ;
+--+ fun innostuneesti_AdvK : AdvK ;
+fun innostuneisuus_NK : NK ;
+fun innostunut_AK : AK ;
+fun innostus_NK : NK ;
+fun innostuttaa_VK : VK ;
+fun innota_VK : VK ;
+fun innoton_NK : NK ;
+fun innottomasti_AdvK : AdvK ;
+fun innottomuus_NK : NK ;
+fun innovaatio_NK : NK ;
+fun innovatiivinen_NK : NK ;
+fun innovatiivisuus_NK : NK ;
+fun innovoida_VK : VK ;
+fun innovointi_NK : NK ;
+fun input_NK : NK ;
+fun insatsi_NK : NK ;
+fun insertti_NK : NK ;
+fun insesti_NK : NK ;
+fun insidenssi_NK : NK ;
+fun insino'o'ri_NK : NK ;
+fun inspehtori_NK : NK ;
+fun inspiraatio_NK : NK ;
+fun inspiroida_VK : VK ;
+fun inspiroitua_VK : VK ;
+fun inssi_NK : NK ;
+fun installaatio_NK : NK ;
+fun installoida_VK : VK ;
+fun installointi_NK : NK ;
+fun instanssi_NK : NK ;
+fun institutionaalinen_NK : NK ;
+fun institutionaalistua_VK : VK ;
+fun institutionalisoitua_VK : VK ;
+fun instituutio_NK : NK ;
+fun instituutti_NK : NK ;
+fun instruktiivi_NK : NK ;
+fun instrumentaalinen_NK : NK ;
+fun instrumentaatio_NK : NK ;
+fun instrumentalisti_NK : NK ;
+fun instrumentoida_VK : VK ;
+fun instrumentointi_NK : NK ;
+fun instrumentti_NK : NK ;
+fun insuffisienssi_NK : NK ;
+fun insuliini_NK : NK ;
+fun integraali_NK : NK ;
+fun integraatio_NK : NK ;
+fun integroida_VK : VK ;
+fun integrointi_NK : NK ;
+fun integroitua_VK : VK ;
+fun intellektuaalinen_NK : NK ;
+fun intellektualismi_NK : NK ;
+fun intellektualisti_NK : NK ;
+fun intellektualistinen_NK : NK ;
+fun intellektuelli_NK : NK ;
+fun intelligenssi_NK : NK ;
+fun intelligentsija_NK : NK ;
+fun intelligentti_NK : NK ;
+fun intendentti_NK : NK ;
+fun intendentuuri_NK : NK ;
+fun intensiivinen_AK : AK ;
+--+ fun intensiivisesti_AdvK : AdvK ;
+fun intensiivisyys_NK : NK ;
+fun intensiteetti_NK : NK ;
+fun intentio_NK : NK ;
+fun interferenssi_NK : NK ;
+fun interferoni_NK : NK ;
+fun interio'o'ri_NK : NK ;
+fun interjektio_NK : NK ;
+fun intermezzo_NK : NK ;
+fun intermittoiva_NK : NK ;
+fun internaatti_NK : NK ;
+fun internationaali_NK : NK ;
+fun internationalismi_NK : NK ;
+fun internoida_VK : VK ;
+fun internointi_NK : NK ;
+fun interrailaaja_NK : NK ;
+fun interrailata_VK : VK ;
+fun interreilaaja_NK : NK ;
+fun interreilata_VK : VK ;
+fun interrogatiivinen_NK : NK ;
+fun intertekstuaalinen_AK : AK ;
+--+ fun intertekstuaalisesti_AdvK : AdvK ;
+fun intertekstuaalisuus_NK : NK ;
+fun intervalli_NK : NK ;
+fun interventio_NK : NK ;
+fun intiaani_NK : NK ;
+fun intialainen_NK : NK ;
+fun intianpuuvilla_NK : NK ;
+fun intiimi_AK : AK ;
+--+ fun intiimisti_AdvK : AdvK ;
+fun intiimiys_NK : NK ;
+fun intimiteetti_NK : NK ;
+fun into_NK : NK ;
+--+ fun intohimoisesti_AdvK : AdvK ;
+fun intohimoisuus_NK : NK ;
+fun intohimoton_NK : NK ;
+fun intohimottomasti_AdvK : AdvK ;
+fun intohimottomuus_NK : NK ;
+fun intoilija_NK : NK ;
+fun intoilla_VK : VK ;
+fun intoilu_NK : NK ;
+fun intoinen_NK : NK ;
+--+ fun intomielisesti_AdvK : AdvK ;
+fun intonaatio_NK : NK ;
+fun intos_NK : NK ;
+fun intoutua_VK : VK ;
+fun intransitiivinen_NK : NK ;
+fun intresantti_NK : NK ;
+fun intressi_NK : NK ;
+fun intrigi_NK : NK ;
+fun intrigoida_VK : VK ;
+fun intrigointi_NK : NK ;
+fun intro_NK : NK ;
+fun introduktio_NK : NK ;
+fun introspektio_NK : NK ;
+fun introvertti_NK : NK ;
+fun intti_NK : NK ;
+fun intta'a'_VK : VK ;
+fun intuitiivinen_AK : AK ;
+--+ fun intuitiivisesti_AdvK : AdvK ;
+fun intuitiivisuus_NK : NK ;
+fun intuitio_NK : NK ;
+fun inuiitti_NK : NK ;
+fun inuitti_NK : NK ;
+fun invaasio_NK : NK ;
+fun invalidi_NK : NK ;
+fun invalidisoida_VK : VK ;
+fun invalidisoitua_VK : VK ;
+fun invaliditeetti_NK : NK ;
+fun invalidius_NK : NK ;
+fun invalidoida_VK : VK ;
+fun invalidoitua_VK : VK ;
+fun invarianssi_NK : NK ;
+fun invariantti_NK : NK ;
+fun inventaari_NK : NK ;
+fun inventaario_NK : NK ;
+fun inventoida_VK : VK ;
+fun inventointi_NK : NK ;
+fun investoida_VK : VK ;
+fun investointi_NK : NK ;
+fun ioni_NK : NK ;
+fun ionisaatio_NK : NK ;
+fun ionisaattori_NK : NK ;
+fun ionisoida_VK : VK ;
+fun ionisoitua_VK : VK ;
+fun ionosfa'a'ri_NK : NK ;
+fun ipana_NK : NK ;
+fun iridium_NK : NK ;
+fun irkata_VK : VK ;
+fun irlantilainen_NK : NK ;
+fun irokeesi_NK : NK ;
+fun ironia_NK : NK ;
+fun ironikko_NK : NK ;
+fun ironinen_AK : AK ;
+--+ fun ironisesti_AdvK : AdvK ;
+fun ironisoida_VK : VK ;
+fun ironisuus_NK : NK ;
+fun irrallaan_AdvK : AdvK ;
+fun irralleen_AdvK : AdvK ;
+fun irrallinen_AK : AK ;
+--+ fun irrallisesti_AdvK : AdvK ;
+fun irrallisuus_NK : NK ;
+fun irrationaali_NK : NK ;
+fun irrationaalinen_AK : AK ;
+--+ fun irrationaalisesti_AdvK : AdvK ;
+fun irrationaalisuus_NK : NK ;
+fun irreaalinen_NK : NK ;
+fun irreaalisuus_NK : NK ;
+fun irrelevantti_NK : NK ;
+fun irrota_VK : VK ;
+fun irrotella_VK : VK ;
+fun irrottaa_VK : VK ;
+fun irrottautua_VK : VK ;
+fun irrottua_VK : VK ;
+fun irrotus_NK : NK ;
+--+ fun irstaasti_AdvK : AdvK ;
+fun irstailija_NK : NK ;
+fun irstailla_VK : VK ;
+fun irstailu_NK : NK ;
+fun irstainen_NK : NK ;
+fun irstas_AK : AK ;
+fun irstaus_NK : NK ;
+fun irtaantua_VK : VK ;
+fun irtaimisto_NK : NK ;
+fun irtain_NK : NK ;
+fun irtauma_NK : NK ;
+fun irtautua_VK : VK ;
+fun irtautuma_NK : NK ;
+fun irti_AdvK : AdvK ;
+fun irtisanomisaika_NK : NK ;
+fun irtisanomissuoja_NK : NK ;
+fun irtolainen_NK : NK ;
+fun irtonainen_AK : AK ;
+--+ fun irtonaisesti_AdvK : AdvK ;
+fun irtonaisuus_NK : NK ;
+fun irtovuori_NK : NK ;
+fun irvailla_VK : VK ;
+fun irvailu_NK : NK ;
+fun irveen_AdvK : AdvK ;
+fun irvessa'_AdvK : AdvK ;
+fun irviin_AdvK : AdvK ;
+fun irvissa'_AdvK : AdvK ;
+fun irvistelija'_NK : NK ;
+fun irvistella'_VK : VK ;
+fun irvistely_NK : NK ;
+fun irvistys_NK : NK ;
+fun irvistytta'a'_VK : VK ;
+fun irvista'a'_VK : VK ;
+fun irvia'_VK : VK ;
+fun irvokas_AK : AK ;
+--+ fun irvokkaasti_AdvK : AdvK ;
+fun irvokkuus_NK : NK ;
+fun isi_NK : NK ;
+fun iskelma'_NK : NK ;
+fun iskema'_NK : NK ;
+fun iskenta'_NK : NK ;
+fun isketta'a'_VK : VK ;
+fun iskevyys_NK : NK ;
+fun iskeva'_AK : AK ;
+--+ fun iskeva'sti_AdvK : AdvK ;
+fun iskeytya'_VK : VK ;
+fun iskea'_VK : VK ;
+fun iskias_NK : NK ;
+fun iskija'_NK : NK ;
+fun iskostaa_VK : VK ;
+fun iskostua_VK : VK ;
+fun isku_NK : NK ;
+fun iskuhaava_NK : NK ;
+fun iskuinen_NK : NK ;
+fun iskullinen_NK : NK ;
+fun iskuri_NK : NK ;
+fun iskuttaa_VK : VK ;
+fun iska'_NK : NK ;
+fun islam_NK : NK ;
+fun islamilainen_NK : NK ;
+fun islamilaisuus_NK : NK ;
+fun islamisti_NK : NK ;
+fun islamistinen_NK : NK ;
+fun islanti_NK : NK ;
+fun ismi_NK : NK ;
+fun iso_1_AK : AK ;
+fun iso_2_AK : AK ;
+fun isoinen_NK : NK ;
+fun isolaatio_NK : NK ;
+fun isoloida_VK : VK ;
+fun isolointi_NK : NK ;
+fun isoloitua_VK : VK ;
+fun isomorfia_NK : NK ;
+fun isontaa_VK : VK ;
+fun isontua_VK : VK ;
+--+ fun isosti_AdvK : AdvK ;
+fun isota_1_VK : VK ;
+fun isota_2_VK : VK ;
+fun isotella_VK : VK ;
+fun isotooppi_NK : NK ;
+fun isottelu_NK : NK ;
+fun isous_NK : NK ;
+fun israelilainen_NK : NK ;
+fun issikka_1_NK : NK ;
+fun issikka_2_NK : NK ;
+fun istahtaa_VK : VK ;
+fun istua_VK : VK ;
+fun istualla_AdvK : AdvK ;
+fun istuallaan_AdvK : AdvK ;
+fun istualle_AdvK : AdvK ;
+fun istualleen_AdvK : AdvK ;
+fun istualta_AdvK : AdvK ;
+fun istualtaan_AdvK : AdvK ;
+fun istuin_NK : NK ;
+fun istukallinen_NK : NK ;
+fun istukas_NK : NK ;
+fun istukka_NK : NK ;
+fun istuksia_VK : VK ;
+fun istuma_AdvK : AdvK ;
+fun istumalla_AdvK : AdvK ;
+fun istumalta_AdvK : AdvK ;
+fun istunta_NK : NK ;
+fun istunto_NK : NK ;
+fun istuskella_VK : VK ;
+fun istuskelu_NK : NK ;
+fun istute_NK : NK ;
+fun istuttaa_VK : VK ;
+fun istutus_NK : NK ;
+fun istutusaika_NK : NK ;
+fun istuutua_VK : VK ;
+fun istuvilla_AdvK : AdvK ;
+fun istuvillaan_AdvK : AdvK ;
+fun istuville_AdvK : AdvK ;
+fun istuvilleen_AdvK : AdvK ;
+fun istuvilta_AdvK : AdvK ;
+fun istuviltaan_AdvK : AdvK ;
+fun istuvuus_NK : NK ;
+fun isukki_NK : NK ;
+fun isyys_NK : NK ;
+fun isa'_NK : NK ;
+fun isa'llinen_AK : AK ;
+--+ fun isa'llisesti_AdvK : AdvK ;
+fun isa'meida'n_AdvK : AdvK ;
+fun isa'meita'_AdvK : AdvK ;
+--+ fun isa'nmaallisesti_AdvK : AdvK ;
+fun isa'nnisto'_NK : NK ;
+fun isa'nnyys_NK : NK ;
+fun isa'nna'to'n_NK : NK ;
+fun isa'nno'ida'_VK : VK ;
+fun isa'nno'itsija'_NK : NK ;
+fun isa'nta'_NK : NK ;
+fun isa'to'n_NK : NK ;
+fun IT_AdvK : AdvK ;
+fun italia_NK : NK ;
+fun italiaano_NK : NK ;
+fun italiankumina_NK : NK ;
+fun itara_NK : NK ;
+fun itarasti_AdvK : AdvK ;
+fun itaruus_NK : NK ;
+fun itikka_NK : NK ;
+fun itio'_NK : NK ;
+fun itkeskella'_VK : VK ;
+fun itkeskely_NK : NK ;
+fun itkettynyt_NK : NK ;
+fun itketta'a'_VK : VK ;
+fun itkea'_VK : VK ;
+fun itkija'_NK : NK ;
+fun itku_NK : NK ;
+fun itkuinen_NK : NK ;
+fun itkusilmin_AdvK : AdvK ;
+fun itsari_NK : NK ;
+fun itse_NK : NK ;
+fun itseja'ljenta'va'_NK : NK ;
+fun itsekantava_NK : NK ;
+fun itsekiillottuva_NK : NK ;
+fun itsekiinnittyva'_NK : NK ;
+fun itsekkyys_NK : NK ;
+--+ fun itsekka'a'sti_AdvK : AdvK ;
+fun itsekseen_AdvK : AdvK ;
+fun itse_kukin_AdvK : AdvK ;
+fun itseka's_AK : AK ;
+fun itseliimautuva_NK : NK ;
+fun itsellinen_NK : NK ;
+fun itseneuvova_NK : NK ;
+fun itsensa'paljastaminen_NK : NK ;
+fun itsena'inen_AK : AK ;
+--+ fun itsena'isesti_AdvK : AdvK ;
+fun itsena'istytta'a'_VK : VK ;
+fun itsena'istya'_VK : VK ;
+fun itsena'ista'a'_VK : VK ;
+fun itsena'isyys_NK : NK ;
+fun itseohjaava_NK : NK ;
+fun itseohjautuva_NK : NK ;
+--+ fun itsepintaisesti_AdvK : AdvK ;
+--+ fun itsepa'isesti_AdvK : AdvK ;
+fun itsepa'isyys_NK : NK ;
+--+ fun itserakkaasti_AdvK : AdvK ;
+fun itseriittoinen_AK : AK ;
+--+ fun itseriittoisesti_AdvK : AdvK ;
+fun itsesilia'va'_NK : NK ;
+fun itsessa'a'n_AdvK : AdvK ;
+fun itsesta'a'n_AdvK : AdvK ;
+fun itsesyttyminen_NK : NK ;
+fun itsesytynta'_NK : NK ;
+fun itsesa'a'tyva'_NK : NK ;
+fun itsetuhoinen_NK : NK ;
+fun itsetypistys_NK : NK ;
+fun itsevalaiseva_NK : NK ;
+--+ fun itsevaltaisesti_AdvK : AdvK ;
+--+ fun itsevaltiaasti_AdvK : AdvK ;
+fun itsevoiteleva_NK : NK ;
+fun itu_NK : NK ;
+fun ita'_NK : NK ;
+fun ita'inen_NK : NK ;
+fun ita'misaika_NK : NK ;
+fun ita'valtalainen_NK : NK ;
+fun ita'vyys_NK : NK ;
+fun ita'a'_VK : VK ;
+fun iva_NK : NK ;
+fun ivailla_VK : VK ;
+fun ivailu_NK : NK ;
+fun ivallinen_AK : AK ;
+--+ fun ivallisesti_AdvK : AdvK ;
+fun ivata_VK : VK ;
+fun ia'inen_AK : AK ;
+--+ fun ia'isesti_AdvK : AdvK ;
+fun ia'isyys_NK : NK ;
+fun ia'kkyys_NK : NK ;
+fun ia'ksi_AdvK : AdvK ;
+fun ia'ka's_NK : NK ;
+fun ia'n_kaiken_AdvK : AdvK ;
+fun ia'ti_AdvK : AdvK ;
+fun ia'ta'_VK : VK ;
+fun ia'to'n_NK : NK ;
+fun ja_AdvK : AdvK ;
+fun jaa_AdvK : AdvK ;
+fun jaaha_AdvK : AdvK ;
+fun jaala_NK : NK ;
+fun jaanata_VK : VK ;
+fun jaardi_NK : NK ;
+fun jaaritella_VK : VK ;
+fun jaarittelu_NK : NK ;
+fun jaaritus_NK : NK ;
+fun jaarli_NK : NK ;
+fun jacquard_NK : NK ;
+fun jade_NK : NK ;
+fun jae_NK : NK ;
+fun jaella_VK : VK ;
+fun jaettava_NK : NK ;
+fun jaguaari_NK : NK ;
+fun jaha_AdvK : AdvK ;
+fun jahdata_VK : VK ;
+fun jahka_AdvK : AdvK ;
+fun jahkailla_VK : VK ;
+fun jahkailu_NK : NK ;
+fun jahkata_VK : VK ;
+fun jahnata_VK : VK ;
+fun jahti_1_NK : NK ;
+fun jahti_2_NK : NK ;
+fun jakaa_VK : VK ;
+fun jakaantua_VK : VK ;
+fun jakaja_NK : NK ;
+fun jakamaton_NK : NK ;
+fun jakamo_NK : NK ;
+fun jakaranda_NK : NK ;
+fun jakardi_NK : NK ;
+fun jakauma_NK : NK ;
+fun jakaus_NK : NK ;
+fun jakautua_VK : VK ;
+fun jakautuma_NK : NK ;
+fun jakelija_NK : NK ;
+fun jakelu_NK : NK ;
+fun jakkara_NK : NK ;
+fun jakki_1_NK : NK ;
+fun jakki_2_NK : NK ;
+fun jakku_NK : NK ;
+fun jako_NK : NK ;
+fun jakobiini_NK : NK ;
+fun jakoinen_NK : NK ;
+fun jaksaa_VK : VK ;
+fun jaksella_VK : VK ;
+fun jakso_NK : NK ;
+fun jaksoinen_NK : NK ;
+fun jaksoittain_AdvK : AdvK ;
+fun jaksoittainen_AK : AK ;
+--+ fun jaksoittaisesti_AdvK : AdvK ;
+fun jaksoittaisuus_NK : NK ;
+fun jaksollinen_NK : NK ;
+fun jaksollisuus_NK : NK ;
+fun jaksonaika_NK : NK ;
+fun jaksotella_VK : VK ;
+fun jaksottaa_VK : VK ;
+fun jaksottua_VK : VK ;
+fun jaksotus_NK : NK ;
+fun jakuutti_NK : NK ;
+fun jalake_NK : NK ;
+fun jalallinen_NK : NK ;
+fun jalan_AdvK : AdvK ;
+fun jalapeno_NK : NK ;
+fun jalas_NK : NK ;
+fun jalava_NK : NK ;
+fun jalka_NK : NK ;
+fun jalkainen_NK : NK ;
+fun jalkaisin_AdvK : AdvK ;
+fun jalkapatikka_NK : NK ;
+fun jalkauttaa_VK : VK ;
+fun jalkautua_VK : VK ;
+fun jalkava_NK : NK ;
+fun jalkavuus_NK : NK ;
+fun jalkeilla_AdvK : AdvK ;
+fun jalkeille_AdvK : AdvK ;
+fun jalkine_NK : NK ;
+fun jalkio_NK : NK ;
+fun jallittaa_VK : VK ;
+fun jallitus_NK : NK ;
+fun jalo_NK : NK ;
+fun jaloitella_VK : VK ;
+fun jaloittelu_NK : NK ;
+fun jalokivihioja_NK : NK ;
+--+ fun jalomielisesti_AdvK : AdvK ;
+fun jalonnus_NK : NK ;
+fun jalontaa_VK : VK ;
+fun jalostaa_VK : VK ;
+fun jalostamo_NK : NK ;
+fun jaloste_NK : NK ;
+fun jalostua_VK : VK ;
+fun jalostus_NK : NK ;
+fun jalus_NK : NK ;
+fun jalusta_NK : NK ;
+fun jalustaa_VK : VK ;
+fun jalustin_NK : NK ;
+fun jamaan_AdvK : AdvK ;
+fun jamassa_AdvK : AdvK ;
+fun jambi_NK : NK ;
+fun jamboree_NK : NK ;
+fun jamit_NK : NK ;
+fun jammailla_VK : VK ;
+fun jammata_VK : VK ;
+fun jam_session_NK : NK ;
+fun jamssi_NK : NK ;
+fun jana_NK : NK ;
+fun janitsaari_NK : NK ;
+fun jankata_VK : VK ;
+fun jankko_NK : NK ;
+fun jankkuri_NK : NK ;
+fun jankuttaa_VK : VK ;
+fun jankutus_NK : NK ;
+fun jannu_NK : NK ;
+fun jano_NK : NK ;
+fun janoinen_NK : NK ;
+fun janota_VK : VK ;
+fun janottaa_VK : VK ;
+fun jaoke_NK : NK ;
+fun jaokkeeton_NK : NK ;
+fun jaokkeinen_NK : NK ;
+fun jaollinen_NK : NK ;
+fun jaollisuus_NK : NK ;
+fun jaos_NK : NK ;
+fun jaosto_NK : NK ;
+fun jaotella_VK : VK ;
+fun jaoton_NK : NK ;
+fun jaottaa_VK : VK ;
+fun jaottelu_NK : NK ;
+fun jaotus_NK : NK ;
+fun japani_NK : NK ;
+fun japaninlakka_NK : NK ;
+fun japanitar_NK : NK ;
+fun japsi_NK : NK ;
+fun jarru_NK : NK ;
+fun jarruttaa_VK : VK ;
+fun jarrutus_NK : NK ;
+fun jarruuntua_VK : VK ;
+fun jasmiini_NK : NK ;
+fun jasmike_NK : NK ;
+fun jaspis_NK : NK ;
+fun jassoo_AdvK : AdvK ;
+fun jata_NK : NK ;
+fun jatkaa_VK : VK ;
+fun jatkaja_NK : NK ;
+fun jatkavuus_NK : NK ;
+fun jatke_NK : NK ;
+fun jatko_NK : NK ;
+fun jatkoaika_NK : NK ;
+fun jatkokohta_NK : NK ;
+fun jatkos_NK : NK ;
+fun jatkua_VK : VK ;
+fun jatkumo_NK : NK ;
+fun jatkuva_AK : AK ;
+fun jatkuvajuoninen_NK : NK ;
+--+ fun jatkuvasti_AdvK : AdvK ;
+fun jatkuvuus_NK : NK ;
+fun jatsari_NK : NK ;
+fun jatsi_NK : NK ;
+fun jauhaa_VK : VK ;
+fun jauhaantua_VK : VK ;
+fun jauhattaa_VK : VK ;
+fun jauhatus_NK : NK ;
+fun jauhautua_VK : VK ;
+fun jauhe_NK : NK ;
+fun jauhennin_NK : NK ;
+fun jauhentaa_VK : VK ;
+fun jauhentua_VK : VK ;
+fun jauhiainen_NK : NK ;
+fun jauhin_NK : NK ;
+fun jauho_NK : NK ;
+fun jauhoinen_NK : NK ;
+fun jauhottaa_VK : VK ;
+fun jazz_NK : NK ;
+fun jeeppi_NK : NK ;
+fun jeesata_VK : VK ;
+fun jeesus_NK : NK ;
+fun jeesustella_VK : VK ;
+fun jeesustelu_NK : NK ;
+fun jeeveli_NK : NK ;
+fun jehu_NK : NK ;
+fun jekku_NK : NK ;
+fun jekkuilla_VK : VK ;
+fun jellona_NK : NK ;
+fun jelpata_VK : VK ;
+fun jelppia'_VK : VK ;
+fun jemma_NK : NK ;
+fun jemmata_VK : VK ;
+fun jengi_NK : NK ;
+fun jengila'inen_NK : NK ;
+fun jengiytya'_VK : VK ;
+fun jeni_NK : NK ;
+fun jenka_NK : NK ;
+fun jenkka_NK : NK ;
+fun jenkki_NK : NK ;
+fun jenkkila'_NK : NK ;
+fun jenkkila'inen_NK : NK ;
+fun jep_AdvK : AdvK ;
+fun jepari_NK : NK ;
+fun jeppe_NK : NK ;
+fun jeremiadi_NK : NK ;
+fun jermu_NK : NK ;
+fun jersey_NK : NK ;
+fun jessus_AdvK : AdvK ;
+fun jestas_AdvK : AdvK ;
+fun jesuiitta_NK : NK ;
+fun jet_lag_NK : NK ;
+fun jet_set_NK : NK ;
+fun jetsetti_NK : NK ;
+fun jetsulleen_AdvK : AdvK ;
+fun jetti_NK : NK ;
+fun jiddi_NK : NK ;
+fun jiddi__NK : NK ;
+fun jiirata_VK : VK ;
+fun jiiri_NK : NK ;
+fun jippo_NK : NK ;
+fun jippoilla_VK : VK ;
+fun jippoilu_NK : NK ;
+fun jiujitsu_NK : NK ;
+fun jive_NK : NK ;
+fun jo_AdvK : AdvK ;
+fun jobbari_NK : NK ;
+fun jobinposti_NK : NK ;
+fun jockey_NK : NK ;
+fun jodi_NK : NK ;
+fun jodidi_NK : NK ;
+fun jodioida_VK : VK ;
+fun jodittaa_VK : VK ;
+fun jodlata_VK : VK ;
+fun jodlaus_NK : NK ;
+fun jogurtti_NK : NK ;
+fun johanniitta_NK : NK ;
+fun johdannainen_NK : NK ;
+fun johdanto_NK : NK ;
+fun johdate_NK : NK ;
+fun johdatella_VK : VK ;
+fun johdatin_NK : NK ;
+fun johdattaa_VK : VK ;
+fun johdatus_NK : NK ;
+fun johde_NK : NK ;
+fun johdin_NK : NK ;
+fun johdonmukaistaa_VK : VK ;
+fun johdos_NK : NK ;
+fun johdosta_AdvK : AdvK ;
+fun johdottaa_VK : VK ;
+fun johdotus_NK : NK ;
+fun johonkin_AdvK : AdvK ;
+fun johtaa_VK : VK ;
+fun johtaja_NK : NK ;
+fun johtajatar_NK : NK ;
+fun johtajisto_NK : NK ;
+fun johtajuus_NK : NK ;
+fun johtava_NK : NK ;
+fun johtavuus_NK : NK ;
+fun johteinen_NK : NK ;
+fun johto_NK : NK ;
+fun johtoinen_NK : NK ;
+fun johtua_VK : VK ;
+fun joiata_VK : VK ;
+fun joikata_VK : VK ;
+fun joikaus_NK : NK ;
+fun joiku_NK : NK ;
+fun joikua_VK : VK ;
+fun joisto_NK : NK ;
+fun joiunta_NK : NK ;
+fun jojo_NK : NK ;
+fun jojolaihduttaminen_NK : NK ;
+fun joka_1_AdvK : AdvK ;
+fun jokainen_NK : NK ;
+fun jokellella_VK : VK ;
+fun jokellus_NK : NK ;
+fun jokeltaa_VK : VK ;
+fun jokeri_NK : NK ;
+fun joki_NK : NK ;
+fun joko_AdvK : AdvK ;
+fun jokseenkin_AdvK : AdvK ;
+fun jokunen_NK : NK ;
+fun jolkutella_VK : VK ;
+fun jolkuttaa_VK : VK ;
+fun jolla_NK : NK ;
+fun jollainen_NK : NK ;
+fun jollei_AdvK : AdvK ;
+fun jolloin_AdvK : AdvK ;
+fun jolloinkin_AdvK : AdvK ;
+fun jollottaa_VK : VK ;
+fun jolma_NK : NK ;
+fun jolppi_NK : NK ;
+fun joltinen_NK : NK ;
+fun joltinenkin_NK : NK ;
+fun joltisestikin_AdvK : AdvK ;
+fun jommoinen_NK : NK ;
+fun jommoinenkin_NK : NK ;
+fun jomottaa_VK : VK ;
+fun jonglo'o'ri_NK : NK ;
+fun jonkalainen_NK : NK ;
+fun jonkinlainen_NK : NK ;
+fun jonkinmoinen_NK : NK ;
+fun jonkunlainen_NK : NK ;
+fun jonkunmoinen_NK : NK ;
+fun jonne_AdvK : AdvK ;
+fun jonnekin_AdvK : AdvK ;
+fun jono_NK : NK ;
+fun jonottaa_VK : VK ;
+fun jonotus_NK : NK ;
+fun jonouttaa_VK : VK ;
+fun joo_AdvK : AdvK ;
+fun jooga_NK : NK ;
+fun joogata_VK : VK ;
+fun joogi_NK : NK ;
+fun jooli_NK : NK ;
+fun joonialainen_NK : NK ;
+fun jopa_AdvK : AdvK ;
+fun jopi_NK : NK ;
+fun jorata_VK : VK ;
+fun joriini_NK : NK ;
+fun jorina_NK : NK ;
+fun jorista_VK : VK ;
+fun joro_NK : NK ;
+fun jorottaa_VK : VK ;
+fun jorotus_NK : NK ;
+fun jorpakko_NK : NK ;
+--? fun jortsut_NK : NK ;
+fun jos_AdvK : AdvK ;
+fun joskaan_AdvK : AdvK ;
+fun joskin_AdvK : AdvK ;
+fun joskus_AdvK : AdvK ;
+fun jospa_AdvK : AdvK ;
+fun jossain_AdvK : AdvK ;
+fun jossakin_AdvK : AdvK ;
+fun jossitella_VK : VK ;
+fun jossittelu_NK : NK ;
+fun jostain_AdvK : AdvK ;
+fun jostakin_AdvK : AdvK ;
+fun jota_AdvK : AdvK ;
+fun jotakuinkin_AdvK : AdvK ;
+fun joten_AdvK : AdvK ;
+fun jotenkin_AdvK : AdvK ;
+fun jotensakin_AdvK : AdvK ;
+fun joteskin_AdvK : AdvK ;
+fun jotos_NK : NK ;
+fun jotta_1_AdvK : AdvK ;
+fun jotta__2_AdvK : AdvK ;
+fun jouduttaa_VK : VK ;
+fun jouhea_AK : AK ;
+--+ fun jouheasti_AdvK : AdvK ;
+fun jouheus_NK : NK ;
+fun jouhi_NK : NK ;
+fun jouhikko_NK : NK ;
+fun joukkio_NK : NK ;
+fun joukko_NK : NK ;
+fun joukkoeroaminen_NK : NK ;
+fun joukkoerottaminen_NK : NK ;
+fun joukkoesiintyminen_NK : NK ;
+fun joukkoirtisanominen_NK : NK ;
+fun joukkoirtisanoutuminen_NK : NK ;
+fun joukkotuhonta_NK : NK ;
+fun joukkue_NK : NK ;
+fun joukkueinen_NK : NK ;
+fun joukoittain_AdvK : AdvK ;
+fun joule_NK : NK ;
+fun joulu_NK : NK ;
+fun jouluaika_NK : NK ;
+fun jouluinen_NK : NK ;
+fun joulunaika_NK : NK ;
+fun journalismi_NK : NK ;
+fun journalisti_NK : NK ;
+fun journalistiikka_NK : NK ;
+fun journalistinen_NK : NK ;
+fun jousi_NK : NK ;
+fun jousinen_NK : NK ;
+fun jousisto_NK : NK ;
+fun jousittaa_VK : VK ;
+fun jousitus_NK : NK ;
+fun joustaa_VK : VK ;
+fun joustamaton_NK : NK ;
+fun joustava_AK : AK ;
+--+ fun joustavasti_AdvK : AdvK ;
+fun joustavoida_VK : VK ;
+fun joustavoittaa_VK : VK ;
+fun joustavuus_NK : NK ;
+fun joustin_NK : NK ;
+fun jousto_NK : NK ;
+fun joustoaika_NK : NK ;
+fun joutaa_VK : VK ;
+fun joutava_NK : NK ;
+fun jouten_AdvK : AdvK ;
+fun joutessa_AdvK : AdvK ;
+fun joutessaan_AdvK : AdvK ;
+fun joutilaisuus_NK : NK ;
+fun joutilas_NK : NK ;
+fun joutoaika_NK : NK ;
+fun joutsen_NK : NK ;
+fun joutua_VK : VK ;
+fun joutuin_AdvK : AdvK ;
+fun joutuisa_AK : AK ;
+--+ fun joutuisasti_AdvK : AdvK ;
+fun joviaali_NK : NK ;
+fun joystick_NK : NK ;
+fun judata_VK : VK ;
+fun judo_NK : NK ;
+fun judogi_NK : NK ;
+fun judoka_NK : NK ;
+fun jugend_NK : NK ;
+fun jugoslaavi_NK : NK ;
+fun jugoslavialainen_NK : NK ;
+fun jugurtti_NK : NK ;
+fun juhannus_NK : NK ;
+fun juhla_NK : NK ;
+fun juhlaliputettu_NK : NK ;
+fun juhlallinen_AK : AK ;
+--+ fun juhlallisesti_AdvK : AdvK ;
+fun juhlallisuus_NK : NK ;
+fun juhlava_AK : AK ;
+fun juhlavalaistu_NK : NK ;
+--+ fun juhlavasti_AdvK : AdvK ;
+fun juhlavuus_NK : NK ;
+fun juhlia_VK : VK ;
+fun juhlija_NK : NK ;
+fun juhlinta_NK : NK ;
+fun juhlistaa_VK : VK ;
+fun juhta_NK : NK ;
+fun juippi_NK : NK ;
+fun juju_NK : NK ;
+fun jujuttaa_VK : VK ;
+fun jukeboksi_NK : NK ;
+fun jukebox_NK : NK ;
+fun jukka_NK : NK ;
+fun jukolaut_AdvK : AdvK ;
+fun jukolauta_AdvK : AdvK ;
+fun jukoliste_AdvK : AdvK ;
+fun jukra_AdvK : AdvK ;
+fun juksata_VK : VK ;
+fun juku_AdvK : AdvK ;
+fun jukurtti_NK : NK ;
+fun juliaaninen_NK : NK ;
+fun julistaa_VK : VK ;
+fun julistaja_NK : NK ;
+fun julistautua_VK : VK ;
+fun juliste_NK : NK ;
+fun julistus_NK : NK ;
+fun juljeta_VK : VK ;
+fun julkaisematon_NK : NK ;
+fun julkaisija_NK : NK ;
+fun julkaista_VK : VK ;
+fun julkaisu_NK : NK ;
+fun julkea_AK : AK ;
+--+ fun julkeasti_AdvK : AdvK ;
+fun julkeus_NK : NK ;
+fun julki_AdvK : AdvK ;
+fun julkimo_NK : NK ;
+fun julkinen_AK : AK ;
+fun julkipanna_VK : VK ;
+--+ fun julkisesti_AdvK : AdvK ;
+fun julkistaa_VK : VK ;
+fun julkisuus_NK : NK ;
+fun julkkis_NK : NK ;
+fun julkku_NK : NK ;
+fun julli_NK : NK ;
+fun jullikka_NK : NK ;
+fun julma_AK : AK ;
+--+ fun julmasti_AdvK : AdvK ;
+fun julmettu_NK : NK ;
+fun julmetusti_AdvK : AdvK ;
+fun julmistella_VK : VK ;
+fun julmistua_VK : VK ;
+fun julmuri_NK : NK ;
+fun julmuus_NK : NK ;
+fun jumala_NK : NK ;
+fun jumalaapelka'a'va'_NK : NK ;
+fun jumalainen_AK : AK ;
+--+ fun jumalaisesti_AdvK : AdvK ;
+fun jumalallinen_NK : NK ;
+fun jumalankielta'minen_NK : NK ;
+fun jumalanluoma_NK : NK ;
+fun jumalatar_NK : NK ;
+fun jumalaton_NK : NK ;
+fun jumalattomasti_AdvK : AdvK ;
+fun jumalaut_AdvK : AdvK ;
+fun jumalauta_AdvK : AdvK ;
+fun jumalinen_AK : AK ;
+--+ fun jumalisesti_AdvK : AdvK ;
+fun jumaliste_AdvK : AdvK ;
+fun jumalisuus_NK : NK ;
+fun jumaloida_VK : VK ;
+fun jumalointi_NK : NK ;
+fun jumaluus_NK : NK ;
+fun jumbo_NK : NK ;
+fun jumbokoko_NK : NK ;
+fun jumi_NK : NK ;
+fun jumiin_AdvK : AdvK ;
+fun jumiintua_VK : VK ;
+fun jumissa_AdvK : AdvK ;
+fun jumittaa_VK : VK ;
+fun jumittua_VK : VK ;
+fun jumiuttaa_VK : VK ;
+fun jumiutua_VK : VK ;
+fun jumpata_VK : VK ;
+fun jumppa_NK : NK ;
+fun jumpperi_NK : NK ;
+fun jumputtaa_VK : VK ;
+fun jumputus_NK : NK ;
+fun juna_NK : NK ;
+fun junailija_NK : NK ;
+fun junailla_VK : VK ;
+fun jungmanni_NK : NK ;
+fun junior_NK : NK ;
+fun juniori_NK : NK ;
+fun junk_food_NK : NK ;
+fun junkkari_NK : NK ;
+fun junnata_VK : VK ;
+fun junnu_NK : NK ;
+fun juntata_1_VK : VK ;
+fun juntata_2_VK : VK ;
+fun juntta_1_NK : NK ;
+fun juntta_2_NK : NK ;
+fun junttaus_NK : NK ;
+fun juntti_NK : NK ;
+fun juntturassa_AdvK : AdvK ;
+fun juoda_VK : VK ;
+fun juohea_AK : AK ;
+--+ fun juoheasti_AdvK : AdvK ;
+fun juoheus_NK : NK ;
+fun juoheva_AK : AK ;
+--+ fun juohevasti_AdvK : AdvK ;
+fun juohevuus_NK : NK ;
+fun juohtua_VK : VK ;
+fun juoksennella_VK : VK ;
+fun juoksete_NK : NK ;
+fun juoksettaa_VK : VK ;
+fun juoksettua_VK : VK ;
+fun juokseva_AK : AK ;
+--+ fun juoksevasti_AdvK : AdvK ;
+fun juoksevuus_NK : NK ;
+fun juoksija_NK : NK ;
+fun juoksu_NK : NK ;
+fun juoksuaika_NK : NK ;
+fun juoksuinen_NK : NK ;
+fun juoksujalkaa_AdvK : AdvK ;
+fun juoksute_NK : NK ;
+fun juoksutin_NK : NK ;
+fun juoksuttaa_VK : VK ;
+fun juoksutus_NK : NK ;
+fun juolahtaa_VK : VK ;
+fun juolua_NK : NK ;
+fun juolukka_NK : NK ;
+fun juoma_NK : NK ;
+fun juomari_NK : NK ;
+fun juominen_NK : NK ;
+fun juomingit_NK : NK ;
+fun juomu_NK : NK ;
+fun juomuinen_NK : NK ;
+fun juonellinen_AK : AK ;
+--+ fun juonellisesti_AdvK : AdvK ;
+fun juoni_NK : NK ;
+fun juonia_VK : VK ;
+fun juonikas_AK : AK ;
+--+ fun juonikkaasti_AdvK : AdvK ;
+fun juonikkuus_NK : NK ;
+fun juonitella_VK : VK ;
+fun juonittelija_NK : NK ;
+fun juonittelu_NK : NK ;
+fun juonne_NK : NK ;
+fun juontaa_VK : VK ;
+fun juontaja_NK : NK ;
+fun juonteikas_NK : NK ;
+fun juonti_NK : NK ;
+fun juonto_NK : NK ;
+fun juontua_VK : VK ;
+fun juopa_NK : NK ;
+fun juoponnapissa_AdvK : AdvK ;
+fun juoponnappiin_AdvK : AdvK ;
+fun juopotella_VK : VK ;
+fun juopottelu_NK : NK ;
+fun juoppo_NK : NK ;
+fun juoppolalli_NK : NK ;
+fun juoppous_NK : NK ;
+fun juopua_VK : VK ;
+fun juopumus_NK : NK ;
+fun juopunut_NK : NK ;
+fun juoru_NK : NK ;
+fun juoruilla_VK : VK ;
+fun juoruilu_NK : NK ;
+fun juorukki_NK : NK ;
+fun juoruta_VK : VK ;
+fun juosta_VK : VK ;
+fun juoste_NK : NK ;
+fun juotava_NK : NK ;
+fun juote_NK : NK ;
+fun juotikas_NK : NK ;
+fun juotin_NK : NK ;
+fun juotos_NK : NK ;
+fun juottaa_VK : VK ;
+fun juotto_NK : NK ;
+fun juottola_NK : NK ;
+fun juova_NK : NK ;
+fun juovainen_NK : NK ;
+fun juovikas_NK : NK ;
+fun juovittaa_VK : VK ;
+fun juovitus_NK : NK ;
+fun juovukkeeseen_AdvK : AdvK ;
+fun juovukkeessa_AdvK : AdvK ;
+fun juovuksiin_AdvK : AdvK ;
+fun juovuksissa_AdvK : AdvK ;
+fun juovuspa'issa'_AdvK : AdvK ;
+fun juovuttaa_VK : VK ;
+fun jupakka_NK : NK ;
+fun jupina_NK : NK ;
+fun jupista_VK : VK ;
+fun juppi_NK : NK ;
+fun juppiutua_VK : VK ;
+fun juridiikka_NK : NK ;
+fun juridinen_AK : AK ;
+--+ fun juridisesti_AdvK : AdvK ;
+fun juristeria_NK : NK ;
+fun juristi_NK : NK ;
+fun jurnuttaa_VK : VK ;
+fun jurnutus_NK : NK ;
+fun juro_AK : AK ;
+fun juroa_VK : VK ;
+--+ fun jurosti_AdvK : AdvK ;
+fun jurottaa_VK : VK ;
+fun jurous_NK : NK ;
+fun juroutua_VK : VK ;
+fun jurppia_VK : VK ;
+fun jurrata_VK : VK ;
+fun jurri_NK : NK ;
+fun jurrikka_NK : NK ;
+fun jury_NK : NK ;
+fun Jussi_NK : NK ;
+fun jussi_NK : NK ;
+fun just_AdvK : AdvK ;
+fun justeerata_VK : VK ;
+fun justeeraus_NK : NK ;
+fun justeeri_NK : NK ;
+fun justiin_AdvK : AdvK ;
+fun justiinsa_AdvK : AdvK ;
+fun jutaa_AdvK : AdvK ;
+fun jutella_VK : VK ;
+fun jutku_NK : NK ;
+fun jutsku_NK : NK ;
+fun juttelu_NK : NK ;
+fun juttu_NK : NK ;
+fun juttusilla_AdvK : AdvK ;
+fun juttusille_AdvK : AdvK ;
+fun jutustaa_VK : VK ;
+fun jutustella_VK : VK ;
+fun jutustelu_NK : NK ;
+fun jututtaa_VK : VK ;
+fun juu_AdvK : AdvK ;
+fun juudas_NK : NK ;
+fun juurehtia_VK : VK ;
+fun juurekas_NK : NK ;
+fun juures_NK : NK ;
+fun juureton_NK : NK ;
+fun juurettomuus_NK : NK ;
+fun juureva_NK : NK ;
+fun juurevuus_NK : NK ;
+fun juuri_1_NK : NK ;
+fun juuri_2_AdvK : AdvK ;
+fun juuria_VK : VK ;
+fun juurinen_NK : NK ;
+fun juuristo_NK : NK ;
+fun juurittaa_VK : VK ;
+fun juurrettava_NK : NK ;
+fun juurruttaa_VK : VK ;
+fun juurrutus_NK : NK ;
+fun juurtaa_VK : VK ;
+fun juurta_jaksaen_AdvK : AdvK ;
+fun juurta_jaksain_AdvK : AdvK ;
+fun juurtua_VK : VK ;
+fun juusto_NK : NK ;
+fun juustola_NK : NK ;
+fun juustottua_VK : VK ;
+fun juustouma_NK : NK ;
+fun juustouttaa_VK : VK ;
+fun juustoutua_VK : VK ;
+fun juustoutuma_NK : NK ;
+fun juutalainen_NK : NK ;
+fun juutalaisuus_NK : NK ;
+fun juutas_NK : NK ;
+fun juutti_1_NK : NK ;
+fun juutti_2_NK : NK ;
+fun juuttua_VK : VK ;
+fun jyda'ta'_VK : VK ;
+fun jyhkeys_NK : NK ;
+fun jyhkea'_AK : AK ;
+--+ fun jyhkea'sti_AdvK : AdvK ;
+fun jykerta'a'_VK : VK ;
+fun jykevyys_NK : NK ;
+fun jykeva'_AK : AK ;
+--+ fun jykeva'sti_AdvK : AdvK ;
+fun jylheta'_VK : VK ;
+fun jylhistya'_VK : VK ;
+fun jylhyys_NK : NK ;
+fun jylha'_AK : AK ;
+--+ fun jylha'sti_AdvK : AdvK ;
+fun jylina'_NK : NK ;
+fun jylista'_VK : VK ;
+fun jylla'ta'_VK : VK ;
+fun jyly_NK : NK ;
+fun jymina'_NK : NK ;
+fun jymista'_VK : VK ;
+fun jymista'a'_VK : VK ;
+fun jymy_NK : NK ;
+fun jyma'hdella'_VK : VK ;
+fun jyma'hdys_NK : NK ;
+fun jyma'hta'a'_VK : VK ;
+fun jyma'ys_NK : NK ;
+fun jyma'ytella'_VK : VK ;
+fun jyma'ytta'a'_VK : VK ;
+fun jynssa'ta'_VK : VK ;
+fun jynssa'ys_NK : NK ;
+fun jyrina'_NK : NK ;
+fun jyristella'_VK : VK ;
+fun jyrista'_VK : VK ;
+fun jyrista'a'_VK : VK ;
+fun jyrisytta'a'_VK : VK ;
+fun jyrkentya'_VK : VK ;
+fun jyrkenta'a'_VK : VK ;
+fun jyrketa'_VK : VK ;
+fun jyrkistya'_VK : VK ;
+fun jyrkista'a'_VK : VK ;
+fun jyrkkyys_NK : NK ;
+fun jyrkka'_NK : NK ;
+fun jyrka'nne_NK : NK ;
+fun jyrka'sti_AdvK : AdvK ;
+fun jyrra'ta'_VK : VK ;
+fun jyrsija'_NK : NK ;
+fun jyrsin_NK : NK ;
+fun jyrsinta'_NK : NK ;
+fun jyrsia'_VK : VK ;
+fun jyry_NK : NK ;
+fun jyryta'_VK : VK ;
+fun jyryytta'a'_VK : VK ;
+fun jyra'_NK : NK ;
+fun jyra'hdella'_VK : VK ;
+fun jyra'hdys_NK : NK ;
+fun jyra'htely_NK : NK ;
+fun jyra'hta'a'_VK : VK ;
+fun jyra'ta'_VK : VK ;
+fun jyra'ys_1_NK : NK ;
+fun jyra'ys_2_NK : NK ;
+fun jyra'ytta'a'_1_VK : VK ;
+fun jyra'ytta'a'_2_VK : VK ;
+fun jyske_NK : NK ;
+fun jyskina'_NK : NK ;
+fun jyskia'_VK : VK ;
+fun jyskytella'_VK : VK ;
+fun jyskytta'a'_VK : VK ;
+fun jyskytys_NK : NK ;
+fun jyskya'_VK : VK ;
+fun jyska'hta'a'_VK : VK ;
+fun jyska'a'_VK : VK ;
+fun jysa'hdella'_VK : VK ;
+fun jysa'hdys_NK : NK ;
+fun jysa'hta'a'_VK : VK ;
+fun jysa'ys_NK : NK ;
+fun jysa'ytta'a'_VK : VK ;
+fun jytina'_NK : NK ;
+fun jytista'_VK : VK ;
+fun jytista'a'_VK : VK ;
+fun jytke_NK : NK ;
+fun jytkytta'a'_VK : VK ;
+fun jytkytys_NK : NK ;
+fun jytka'hta'a'_VK : VK ;
+fun jyty_NK : NK ;
+fun jytyytta'a'_VK : VK ;
+fun jyta'_NK : NK ;
+fun jyta'a'_AdvK : AdvK ;
+fun jyvitta'a'_VK : VK ;
+fun jyvitys_NK : NK ;
+fun jyva'_NK : NK ;
+fun jyva'inen_NK : NK ;
+fun jyva'jemmari_NK : NK ;
+fun jyva'nen_NK : NK ;
+fun jyysta'a'_VK : VK ;
+fun ja'hmettyma'_NK : NK ;
+fun ja'hmettya'_VK : VK ;
+fun ja'hmetta'a'_VK : VK ;
+fun ja'hmeta'_VK : VK ;
+fun ja'hmeys_NK : NK ;
+fun ja'hmea'_AK : AK ;
+--+ fun ja'hmea'sti_AdvK : AdvK ;
+fun ja'inen_NK : NK ;
+fun ja'itse_AdvK : AdvK ;
+fun ja'kki_NK : NK ;
+fun ja'kka'ra'_NK : NK ;
+fun ja'ka'likko'_NK : NK ;
+fun ja'ka'listo'_NK : NK ;
+fun ja'ka'la'_NK : NK ;
+fun ja'ka'la'inen_NK : NK ;
+fun ja'ka'lo'itya'_VK : VK ;
+fun ja'ka'tta'a'_VK : VK ;
+fun ja'ka'tys_NK : NK ;
+fun ja'ljekka'in_AdvK : AdvK ;
+fun ja'ljelle_AdvK : AdvK ;
+fun ja'ljella'_AdvK : AdvK ;
+fun ja'ljemma'_AdvK : AdvK ;
+fun ja'ljemma'ksi_AdvK : AdvK ;
+fun ja'ljemma's_AdvK : AdvK ;
+fun ja'ljempa'na'_AdvK : AdvK ;
+fun ja'ljempa'a'_AdvK : AdvK ;
+fun ja'ljenne_NK : NK ;
+fun ja'ljennys_NK : NK ;
+fun ja'ljenno's_NK : NK ;
+fun ja'ljentya'_VK : VK ;
+fun ja'ljenta'mo'_NK : NK ;
+fun ja'ljenta'a'_VK : VK ;
+fun ja'ljessa'_AdvK : AdvK ;
+fun ja'ljesta'_AdvK : AdvK ;
+fun ja'ljesta'a'_VK : VK ;
+fun ja'ljetysten_AdvK : AdvK ;
+fun ja'ljeto'n_NK : NK ;
+fun ja'ljille_AdvK : AdvK ;
+fun ja'ljilla'_AdvK : AdvK ;
+fun ja'ljilta'_AdvK : AdvK ;
+fun ja'ljitella'_VK : VK ;
+fun ja'ljitelma'_NK : NK ;
+fun ja'ljittelema'to'n_NK : NK ;
+fun ja'ljittely_NK : NK ;
+fun ja'ljitta'a'_VK : VK ;
+fun ja'ljitys_NK : NK ;
+fun ja'lkeen_AdvK : AdvK ;
+fun ja'lkeenja'a'neisyys_NK : NK ;
+fun ja'lkeenja'a'nyt_NK : NK ;
+fun ja'lkeinen_NK : NK ;
+fun ja'lkela'inen_NK : NK ;
+fun ja'lki_NK : NK ;
+fun ja'lkija'tto'inen_NK : NK ;
+fun ja'lkija'tto'isyys_NK : NK ;
+fun ja'lkika'teen_AdvK : AdvK ;
+fun ja'lkimma'inen_NK : NK ;
+fun ja'lkka'ri_NK : NK ;
+fun ja'lleen_AdvK : AdvK ;
+fun ja'lleenna'keminen_NK : NK ;
+fun ja'lleensyntyminen_NK : NK ;
+fun ja'lsi_NK : NK ;
+fun ja'meryys_NK : NK ;
+fun ja'mera'_AK : AK ;
+--+ fun ja'mera'sti_AdvK : AdvK ;
+fun ja'mpti_AK : AK ;
+--+ fun ja'mptisti_AdvK : AdvK ;
+fun ja'mtti_AK : AK ;
+--+ fun ja'mttisti_AdvK : AdvK ;
+fun ja'ma'_NK : NK ;
+fun ja'ma'hta'a'_VK : VK ;
+fun ja'ma'kkyys_NK : NK ;
+fun ja'ma'kka'_NK : NK ;
+fun ja'ma'ka'sti_AdvK : AdvK ;
+fun ja'ma'ko'itya'_VK : VK ;
+fun ja'nis_NK : NK ;
+fun ja'nishousu_NK : NK ;
+fun ja'nista'a'_VK : VK ;
+fun ja'nka'_NK : NK ;
+fun ja'nka'sirria'inen_NK : NK ;
+fun ja'nne_NK : NK ;
+fun ja'nnite_NK : NK ;
+fun ja'nnitteeto'n_NK : NK ;
+fun ja'nnitteinen_NK : NK ;
+fun ja'nnitteisyys_NK : NK ;
+fun ja'nnittyneisyys_NK : NK ;
+fun ja'nnittya'_VK : VK ;
+fun ja'nnitta'ja'_NK : NK ;
+fun ja'nnitta'vyys_NK : NK ;
+fun ja'nnitta'va'_AK : AK ;
+--+ fun ja'nnitta'va'sti_AdvK : AdvK ;
+fun ja'nnitta'a'_VK : VK ;
+fun ja'nnitys_NK : NK ;
+fun ja'nna'_AK : AK ;
+fun ja'nna'ri_NK : NK ;
+--+ fun ja'nna'sti_AdvK : AdvK ;
+fun ja'nna'ta'_VK : VK ;
+fun ja'nska'_AK : AK ;
+--+ fun ja'nska'sti_AdvK : AdvK ;
+fun ja'nteika's_NK : NK ;
+fun ja'nteinen_NK : NK ;
+fun ja'nteisyys_NK : NK ;
+fun ja'ntere_NK : NK ;
+fun ja'ntevyys_NK : NK ;
+fun ja'nteva'_AK : AK ;
+--+ fun ja'nteva'sti_AdvK : AdvK ;
+fun ja'ntevo'ida'_VK : VK ;
+fun ja'ntevo'itta'a'_VK : VK ;
+fun ja'ntevo'itya'_VK : VK ;
+fun ja'nteys_NK : NK ;
+fun ja'nttera'_NK : NK ;
+fun ja'no'_NK : NK ;
+fun ja'no'nen_NK : NK ;
+fun ja'reys_NK : NK ;
+fun ja'reytya'_VK : VK ;
+fun ja'rea'_AK : AK ;
+--+ fun ja'rea'sti_AdvK : AdvK ;
+fun ja'rin_AdvK : AdvK ;
+fun ja'rina'_NK : NK ;
+fun ja'ristys_NK : NK ;
+fun ja'rista'_VK : VK ;
+fun ja'risytta'a'_VK : VK ;
+fun ja'rjellinen_AK : AK ;
+--+ fun ja'rjellisesti_AdvK : AdvK ;
+fun ja'rjellisyys_NK : NK ;
+fun ja'rjesteilla'_AdvK : AdvK ;
+fun ja'rjestella'_VK : VK ;
+fun ja'rjestelma'_NK : NK ;
+fun ja'rjestelma'llinen_AK : AK ;
+--+ fun ja'rjestelma'llisesti_AdvK : AdvK ;
+fun ja'rjestelma'llista'a'_VK : VK ;
+fun ja'rjestelma'llisyys_NK : NK ;
+fun ja'rjestely_NK : NK ;
+fun ja'rjestyma'to'n_NK : NK ;
+fun ja'rjestys_NK : NK ;
+fun ja'rjestya'_VK : VK ;
+fun ja'rjesta'ja'_NK : NK ;
+fun ja'rjesta'ytya'_VK : VK ;
+fun ja'rjesta'a'_VK : VK ;
+fun ja'rjesta'a'n_AdvK : AdvK ;
+fun ja'rjesto'_NK : NK ;
+fun ja'rjesto'llinen_NK : NK ;
+fun ja'rjetto'myys_NK : NK ;
+fun ja'rjetto'ma'sti_AdvK : AdvK ;
+fun ja'rjeto'n_NK : NK ;
+fun ja'rkeilla'_VK : VK ;
+fun ja'rkeily_NK : NK ;
+fun ja'rkeistya'_VK : VK ;
+fun ja'rkeista'a'_VK : VK ;
+fun ja'rkevyys_NK : NK ;
+fun ja'rkeva'_AK : AK ;
+--+ fun ja'rkeva'sti_AdvK : AdvK ;
+fun ja'rkevo'itya'_VK : VK ;
+fun ja'rki_NK : NK ;
+fun ja'rkiinnytta'a'_VK : VK ;
+fun ja'rkiintya'_VK : VK ;
+fun ja'rkinen_NK : NK ;
+--+ fun ja'rkipera'isesti_AdvK : AdvK ;
+fun ja'rkipera'istya'_VK : VK ;
+fun ja'rkipera'ista'a'_VK : VK ;
+fun ja'rkia'a'n_AdvK : AdvK ;
+fun ja'rkky_NK : NK ;
+fun ja'rkkyma'tto'myys_NK : NK ;
+fun ja'rkkyma'tto'ma'sti_AdvK : AdvK ;
+fun ja'rkkyma'to'n_NK : NK ;
+fun ja'rkkya'_VK : VK ;
+fun ja'rkyttya'_VK : VK ;
+fun ja'rkytta'vyys_NK : NK ;
+fun ja'rkytta'va'_AK : AK ;
+--+ fun ja'rkytta'va'sti_AdvK : AdvK ;
+fun ja'rkytta'a'_VK : VK ;
+fun ja'rkytys_NK : NK ;
+fun ja'rka'hta'ma'tto'myys_NK : NK ;
+fun ja'rka'hta'ma'tto'ma'sti_AdvK : AdvK ;
+fun ja'rka'hta'ma'to'n_NK : NK ;
+fun ja'rka'hta'a'_VK : VK ;
+fun ja'rka'le_NK : NK ;
+fun ja'rka'ta'_VK : VK ;
+fun ja'rsia'_VK : VK ;
+fun ja'rvi_NK : NK ;
+fun ja'rvinen_NK : NK ;
+fun ja'ra'hdella'_VK : VK ;
+fun ja'ra'htely_NK : NK ;
+fun ja'ra'hta'a'_VK : VK ;
+fun ja'ra'ytta'a'_VK : VK ;
+fun ja'sen_NK : NK ;
+fun ja'seninen_NK : NK ;
+fun ja'senisto'_NK : NK ;
+fun ja'sennella'_VK : VK ;
+fun ja'sennys_NK : NK ;
+fun ja'sentely_NK : NK ;
+fun ja'sentya'_VK : VK ;
+fun ja'senta'a'_VK : VK ;
+fun ja'senyys_NK : NK ;
+fun ja'ssikka'_NK : NK ;
+fun ja'te_NK : NK ;
+fun ja'tka'_NK : NK ;
+fun ja'tski_NK : NK ;
+fun ja'tti_NK : NK ;
+fun ja'ttila'inen_NK : NK ;
+fun ja'ttila'isma'inen_NK : NK ;
+fun ja'ttima'inen_NK : NK ;
+fun ja'tta'ytya'_VK : VK ;
+fun ja'tta'a'_VK : VK ;
+fun ja'tto'_NK : NK ;
+fun ja'tto'aika_NK : NK ;
+fun ja'ta'tta'a'_VK : VK ;
+fun ja'to's_NK : NK ;
+fun ja'yhyys_NK : NK ;
+fun ja'yha'_AK : AK ;
+--+ fun ja'yha'sti_AdvK : AdvK ;
+fun ja'ykentya'_VK : VK ;
+fun ja'ykenta'a'_VK : VK ;
+fun ja'yketa'_VK : VK ;
+fun ja'ykiste_NK : NK ;
+fun ja'ykistella'_VK : VK ;
+fun ja'ykistely_NK : NK ;
+fun ja'ykistyma'_NK : NK ;
+fun ja'ykistys_NK : NK ;
+fun ja'ykistya'_VK : VK ;
+fun ja'ykista'a'_VK : VK ;
+fun ja'ykkyys_NK : NK ;
+fun ja'ykka'_NK : NK ;
+fun ja'yka'sti_AdvK : AdvK ;
+fun ja'yna'_NK : NK ;
+fun ja'ysta'a'_VK : VK ;
+fun ja'yta'a'_VK : VK ;
+fun ja'a'_NK : NK ;
+fun ja'a'aika_NK : NK ;
+fun ja'a'dyke_NK : NK ;
+fun ja'a'dytta'mo'_NK : NK ;
+fun ja'a'dytta'a'_VK : VK ;
+fun ja'a'dytys_NK : NK ;
+fun ja'a'da'_VK : VK ;
+fun ja'a'hdyke_NK : NK ;
+fun ja'a'hdyte_NK : NK ;
+fun ja'a'hdytella'_VK : VK ;
+fun ja'a'hdytin_NK : NK ;
+fun ja'a'hdytteinen_NK : NK ;
+fun ja'a'hdyttely_NK : NK ;
+fun ja'a'hdytta'ja'_NK : NK ;
+fun ja'a'hdytta'mo'_NK : NK ;
+fun ja'a'hdytta'a'_VK : VK ;
+fun ja'a'hdytys_NK : NK ;
+fun ja'a'htya'_VK : VK ;
+fun ja'a'hy_NK : NK ;
+--? fun ja'a'hyva'iset_NK : NK ;
+fun ja'a'kiekkoilu_NK : NK ;
+fun ja'a'ka'ri_NK : NK ;
+fun ja'a'misto'_NK : NK ;
+fun ja'a'ma'_NK : NK ;
+fun ja'a'nne_NK : NK ;
+fun ja'a'nno'ksetto'ma'sti_AdvK : AdvK ;
+fun ja'a'nno'kseto'n_NK : NK ;
+fun ja'a'nno's_NK : NK ;
+fun ja'a'nti_NK : NK ;
+fun ja'a'ra'_NK : NK ;
+--+ fun ja'a'ra'pa'isesti_AdvK : AdvK ;
+fun ja'a'ra'pa'isyys_NK : NK ;
+fun ja'a'telo'_NK : NK ;
+fun ja'a'tikko'_NK : NK ;
+fun ja'a'tikko'inen_NK : NK ;
+fun ja'a'tiko'itya'_VK : VK ;
+fun ja'a'tyma'_NK : NK ;
+fun ja'a'tya'_VK : VK ;
+fun ja'a'ta'va'_AK : AK ;
+--+ fun ja'a'ta'va'sti_AdvK : AdvK ;
+fun ja'a'ta'a'_VK : VK ;
+fun ja'a'vahvistettu_NK : NK ;
+fun ja'a'vi_NK : NK ;
+fun ja'a'vito'n_NK : NK ;
+fun ja'a'viys_NK : NK ;
+fun ja'a'va'ta'_VK : VK ;
+fun jo'ko'tta'a'_VK : VK ;
+fun jo'rrikka'_NK : NK ;
+fun jo'ro'_NK : NK ;
+fun jo'ro'tta'a'_VK : VK ;
+fun jo'ssikka'_NK : NK ;
+fun jo'tikka'_NK : NK ;
+fun jo'o'_NK : NK ;
+fun kaadanta_NK : NK ;
+fun kaadattaa_VK : VK ;
+fun kaade_NK : NK ;
+fun kaadella_VK : VK ;
+fun kaaderi_NK : NK ;
+fun kaadin_NK : NK ;
+fun kaahaaja_NK : NK ;
+fun kaahailija_NK : NK ;
+fun kaahailla_VK : VK ;
+fun kaahailu_NK : NK ;
+fun kaahari_NK : NK ;
+fun kaahata_VK : VK ;
+fun kaahaus_NK : NK ;
+fun kaakao_NK : NK ;
+fun kaakaovoi_NK : NK ;
+fun kaakattaa_VK : VK ;
+fun kaakatus_NK : NK ;
+fun kaakeli_NK : NK ;
+fun kaakeloida_VK : VK ;
+fun kaakelointi_NK : NK ;
+fun kaakertaa_VK : VK ;
+fun kaakki_NK : NK ;
+fun kaakko_NK : NK ;
+fun kaakkoinen_NK : NK ;
+fun kaakkoisraja_NK : NK ;
+fun kaakku_NK : NK ;
+fun kaakkuri_NK : NK ;
+fun kaali_NK : NK ;
+fun kaalirapi_NK : NK ;
+fun kaamea_AK : AK ;
+--+ fun kaameasti_AdvK : AdvK ;
+fun kaameus_NK : NK ;
+fun kaamos_NK : NK ;
+fun kaamosaika_NK : NK ;
+fun kaanon_NK : NK ;
+fun kaaoksellinen_NK : NK ;
+fun kaaos_NK : NK ;
+fun kaapaista_VK : VK ;
+fun kaapata_VK : VK ;
+fun kaapeli_NK : NK ;
+fun kaapeloida_VK : VK ;
+fun kaapia_VK : VK ;
+fun kaapisto_NK : NK ;
+fun kaappaaja_NK : NK ;
+fun kaappari_NK : NK ;
+fun kaappaus_NK : NK ;
+fun kaappi_NK : NK ;
+fun kaapu_NK : NK ;
+fun kaaputtaa_VK : VK ;
+fun kaaputus_NK : NK ;
+fun kaara_NK : NK ;
+fun kaareke_NK : NK ;
+fun kaareutua_VK : VK ;
+fun kaareva_AK : AK ;
+--+ fun kaarevasti_AdvK : AdvK ;
+fun kaarevuus_NK : NK ;
+fun kaari_1_NK : NK ;
+fun kaari_2_NK : NK ;
+fun kaarinen_NK : NK ;
+fun kaarna_NK : NK ;
+fun kaarne_NK : NK ;
+fun kaarnikka_NK : NK ;
+fun kaarnoittua_VK : VK ;
+fun kaarre_NK : NK ;
+fun kaarrella_VK : VK ;
+fun kaarroke_NK : NK ;
+fun kaarros_NK : NK ;
+fun kaartaa_VK : VK ;
+fun kaarteinen_NK : NK ;
+fun kaartelu_NK : NK ;
+fun kaarti_NK : NK ;
+fun kaarto_NK : NK ;
+fun kaartua_VK : VK ;
+fun kaartuma_NK : NK ;
+fun kaaso_NK : NK ;
+fun kaasu_NK : NK ;
+fun kaasus_NK : NK ;
+fun kaasute_NK : NK ;
+fun kaasutella_VK : VK ;
+fun kaasutin_NK : NK ;
+fun kaasuttaa_VK : VK ;
+fun kaasuttua_VK : VK ;
+fun kaasutus_NK : NK ;
+fun kaasuuntua_VK : VK ;
+fun kaataa_VK : VK ;
+fun kaataja_NK : NK ;
+fun kaateinen_NK : NK ;
+fun kaato_NK : NK ;
+fun kaatua_VK : VK ;
+fun kaava_NK : NK ;
+fun kaavaaja_NK : NK ;
+fun kaavailla_VK : VK ;
+fun kaavailu_NK : NK ;
+fun kaavain_NK : NK ;
+fun kaavake_NK : NK ;
+--+ fun kaavamaisesti_AdvK : AdvK ;
+fun kaavamaistaa_VK : VK ;
+fun kaavamaisuus_NK : NK ;
+fun kaavata_VK : VK ;
+fun kaaviloida_VK : VK ;
+fun kaavin_NK : NK ;
+fun kaavinta_NK : NK ;
+fun kaavio_NK : NK ;
+fun kaavioida_VK : VK ;
+fun kaaviointi_NK : NK ;
+fun kaavoittaa_VK : VK ;
+fun kaavoittua_VK : VK ;
+fun kaavoittuma_NK : NK ;
+fun kaavoittuneisuus_NK : NK ;
+fun kaavoitus_NK : NK ;
+fun kabaree_NK : NK ;
+fun kabinetti_NK : NK ;
+fun kabotaasi_NK : NK ;
+fun kade_NK : NK ;
+fun kadehtia_VK : VK ;
+fun kadehtija_NK : NK ;
+fun kadenssi_NK : NK ;
+fun kadetti_NK : NK ;
+fun kadmium_NK : NK ;
+fun kadoksiin_AdvK : AdvK ;
+fun kadoksissa_AdvK : AdvK ;
+fun kadota_VK : VK ;
+fun kadottaa_VK : VK ;
+fun kadotus_NK : NK ;
+fun kaduttaa_VK : VK ;
+fun kafeteria_NK : NK ;
+fun kaftaani_NK : NK ;
+fun kahahdus_NK : NK ;
+fun kahahtaa_VK : VK ;
+fun kahakka_NK : NK ;
+fun kahakoida_VK : VK ;
+fun kahakointi_NK : NK ;
+fun kahareisin_AdvK : AdvK ;
+fun kahdeksainen_NK : NK ;
+fun kahdeksan_NK : NK ;
+fun kahdeksannes_NK : NK ;
+fun kahdeksas_NK : NK ;
+fun kahdeksikko_NK : NK ;
+fun kahdeksisen_AdvK : AdvK ;
+fun kahdeksisenkymmenta'_AdvK : AdvK ;
+fun kahden_AdvK : AdvK ;
+fun kahdenistuttava_NK : NK ;
+fun kahden_kesken_AdvK : AdvK ;
+--+ fun kahdenkeskisesti_AdvK : AdvK ;
+fun kahdenmaattava_NK : NK ;
+fun kahdennus_NK : NK ;
+fun kahdentaa_VK : VK ;
+fun kahdentua_VK : VK ;
+fun kahdes_NK : NK ;
+fun kahdestaan_AdvK : AdvK ;
+fun kahdesti_AdvK : AdvK ;
+fun kaheli_NK : NK ;
+fun kahina_NK : NK ;
+fun kahinoida_VK : VK ;
+fun kahinointi_NK : NK ;
+fun kahista_VK : VK ;
+fun kahisuttaa_VK : VK ;
+fun kahjo_NK : NK ;
+fun kahju_NK : NK ;
+fun kahlaaja_NK : NK ;
+fun kahlaamo_NK : NK ;
+fun kahlata_VK : VK ;
+fun kahlaus_NK : NK ;
+fun kahle_NK : NK ;
+fun kahlehtia_VK : VK ;
+fun kahlehtimaton_NK : NK ;
+fun kahlita_VK : VK ;
+fun kahlitsematon_NK : NK ;
+fun kahluu_NK : NK ;
+fun kahmaista_VK : VK ;
+fun kahmaisu_NK : NK ;
+fun kahmalo_NK : NK ;
+fun kahmalokaupalla_AdvK : AdvK ;
+fun kahmalollinen_NK : NK ;
+fun kahmari_NK : NK ;
+fun kahmia_VK : VK ;
+fun kahnaus_NK : NK ;
+fun kahta_AdvK : AdvK ;
+fun kahtaalla_AdvK : AdvK ;
+fun kahtaalle_AdvK : AdvK ;
+fun kahtaalta_AdvK : AdvK ;
+fun kahtaanne_AdvK : AdvK ;
+fun kahtaistaittuminen_NK : NK ;
+fun kahtalaisuus_NK : NK ;
+fun kahtapuolin_AdvK : AdvK ;
+fun kahtia_AdvK : AdvK ;
+fun kahuta'hka'isyys_NK : NK ;
+fun kahva_NK : NK ;
+fun kahveli_NK : NK ;
+fun kahvi_NK : NK ;
+fun kahviaika_NK : NK ;
+fun kahvila_NK : NK ;
+fun kahvinjuoja_NK : NK ;
+fun kahvinporo_NK : NK ;
+fun kahvinselvike_NK : NK ;
+fun kahvio_NK : NK ;
+fun kahvitella_VK : VK ;
+fun kahvittaa_VK : VK ;
+fun kahvittelu_NK : NK ;
+fun kahvitus_NK : NK ;
+fun kahvituttaa_VK : VK ;
+fun kai_AdvK : AdvK ;
+fun kaide_NK : NK ;
+fun kaihdella_VK : VK ;
+fun kaihdin_NK : NK ;
+fun kaiherrus_NK : NK ;
+fun kaihertaa_VK : VK ;
+fun kaihi_NK : NK ;
+fun kaiho_NK : NK ;
+fun kaihoisa_AK : AK ;
+--+ fun kaihoisasti_AdvK : AdvK ;
+fun kaihota_VK : VK ;
+fun kaihtaa_VK : VK ;
+fun kaikaa_VK : VK ;
+fun kaiken_kaikkiaan_AdvK : AdvK ;
+fun kaikenlainen_NK : NK ;
+fun kaikenmoinen_NK : NK ;
+fun kaiketi_AdvK : AdvK ;
+fun kaikin_AdvK : AdvK ;
+fun kaikista_AdvK : AdvK ;
+fun kaikitenkin_AdvK : AdvK ;
+fun kaikkein_AdvK : AdvK ;
+fun kaikkeus_NK : NK ;
+fun kaikki_NK : NK ;
+fun kaikkiaan_AdvK : AdvK ;
+fun kaikkialla_AdvK : AdvK ;
+fun kaikkialle_AdvK : AdvK ;
+fun kaikkialta_AdvK : AdvK ;
+fun kaikkianne_AdvK : AdvK ;
+fun kaikkinieleva'_NK : NK ;
+fun kaikkivoipuus_NK : NK ;
+fun kaikota_VK : VK ;
+fun kaiku_NK : NK ;
+fun kaikua_VK : VK ;
+fun kaikuisa_NK : NK ;
+fun kaikuisuus_NK : NK ;
+--+ fun kaikuvasti_AdvK : AdvK ;
+fun kaikuvuus_NK : NK ;
+fun kailottaa_VK : VK ;
+fun kailotus_NK : NK ;
+fun kaima_NK : NK ;
+fun kaimaani_NK : NK ;
+--? fun kaimakset_NK : NK ;
+fun kainalo_NK : NK ;
+fun kainaloinen_NK : NK ;
+fun kaino_AK : AK ;
+fun kainostelematon_NK : NK ;
+fun kainostella_VK : VK ;
+--+ fun kainosti_AdvK : AdvK ;
+fun kainostuttaa_VK : VK ;
+fun kainous_NK : NK ;
+fun kainulainen_NK : NK ;
+fun kainuulainen_NK : NK ;
+fun kaipailla_VK : VK ;
+fun kaipaus_NK : NK ;
+fun kaira_1_NK : NK ;
+fun kaira_2_NK : NK ;
+fun kairata_VK : VK ;
+fun kairaus_NK : NK ;
+fun kaisla_NK : NK ;
+fun kaislikko_NK : NK ;
+fun kaislikkoinen_NK : NK ;
+fun kaislisto_NK : NK ;
+fun kaista_NK : NK ;
+fun kaistainen_NK : NK ;
+fun kaistale_NK : NK ;
+fun kait_AdvK : AdvK ;
+fun kaita_1_NK : NK ;
+fun kaita_2_VK : VK ;
+fun kaitainen_NK : NK ;
+fun kaitsea_VK : VK ;
+fun kaitselmus_NK : NK ;
+fun kaiunta_NK : NK ;
+fun kaiutella_VK : VK ;
+fun kaiutin_NK : NK ;
+fun kaiuton_NK : NK ;
+fun kaiuttaa_VK : VK ;
+fun kaivaa_VK : VK ;
+fun kaivannainen_NK : NK ;
+fun kaivanto_NK : NK ;
+fun kaivata_VK : VK ;
+fun kaivattaa_VK : VK ;
+fun kaivaus_NK : NK ;
+fun kaivauttaa_VK : VK ;
+fun kaivautua_VK : VK ;
+fun kaivella_VK : VK ;
+fun kaiverre_NK : NK ;
+fun kaiverrin_NK : NK ;
+fun kaiverros_NK : NK ;
+fun kaiverrus_NK : NK ;
+fun kaiverruttaa_VK : VK ;
+fun kaivertaa_VK : VK ;
+fun kaivertaja_NK : NK ;
+fun kaivin_NK : NK ;
+fun kaivo_NK : NK ;
+fun kaivos_NK : NK ;
+fun kaivu_NK : NK ;
+fun kaivuri_NK : NK ;
+fun kajaali_NK : NK ;
+fun kajahdella_VK : VK ;
+fun kajahdus_NK : NK ;
+fun kajahduttaa_VK : VK ;
+fun kajahtaa_VK : VK ;
+fun kajahtelu_NK : NK ;
+fun kajakki_NK : NK ;
+fun kajal_NK : NK ;
+fun kajastaa_VK : VK ;
+fun kajastella_VK : VK ;
+fun kajastua_VK : VK ;
+fun kajastus_NK : NK ;
+fun kajaus_NK : NK ;
+fun kajautella_VK : VK ;
+fun kajauttaa_VK : VK ;
+fun kajava_NK : NK ;
+fun kaje_NK : NK ;
+fun kajentaa_VK : VK ;
+fun kajetto_NK : NK ;
+fun kajo_NK : NK ;
+fun kajota_VK : VK ;
+fun kajottaa_VK : VK ;
+fun kajuutallinen_NK : NK ;
+fun kajuutta_NK : NK ;
+fun kakadu_NK : NK ;
+fun kakaista_VK : VK ;
+fun kakara_NK : NK ;
+fun kakata_VK : VK ;
+fun kakattaa_VK : VK ;
+fun kaki_NK : NK ;
+fun kakistaa_VK : VK ;
+fun kakistella_VK : VK ;
+fun kakistelu_NK : NK ;
+fun kakka_NK : NK ;
+fun kakkainen_NK : NK ;
+fun kakkara_NK : NK ;
+fun kakkia_VK : VK ;
+fun kakkonen_NK : NK ;
+fun kakku_NK : NK ;
+--? fun kakkulat_NK : NK ;
+fun kakluuni_NK : NK ;
+fun kakofonia_NK : NK ;
+fun kakofoninen_NK : NK ;
+fun kakru_NK : NK ;
+fun kaks_AdvK : AdvK ;
+fun kaksari_NK : NK ;
+fun kaksi_NK : NK ;
+fun kaksijakoisuus_NK : NK ;
+fun kaksikasvoisuus_NK : NK ;
+fun kaksikielistya'_VK : VK ;
+fun kaksikko_NK : NK ;
+fun kaksikotinen_NK : NK ;
+fun kaksikotisuus_NK : NK ;
+fun kaksika'sitteinen_NK : NK ;
+fun kaksilappeinen_NK : NK ;
+fun kaksiminuuttinen_NK : NK ;
+fun kaksin_AdvK : AdvK ;
+fun kaksinaamaisuus_NK : NK ;
+--+ fun kaksinapaisesti_AdvK : AdvK ;
+fun kaksinen_NK : NK ;
+fun kaksineuvoisuus_NK : NK ;
+--+ fun kaksinkertaisesti_AdvK : AdvK ;
+fun kaksinkertaistaa_VK : VK ;
+fun kaksinkertaistua_VK : VK ;
+fun kaksinnaiminen_NK : NK ;
+fun kaksinnus_NK : NK ;
+fun kaksintaa_VK : VK ;
+fun kaksio_NK : NK ;
+fun kaksistaan_AdvK : AdvK ;
+fun kaksisukupuolisuus_NK : NK ;
+fun kaksittain_AdvK : AdvK ;
+fun kaksoisvoltti_NK : NK ;
+fun kaksonen_NK : NK ;
+fun kaksospari_NK : NK ;
+fun kaktus_NK : NK ;
+fun kakuttaa_VK : VK ;
+fun kala_NK : NK ;
+fun kalaasi_NK : NK ;
+fun kalabaliikki_NK : NK ;
+fun kalahdella_VK : VK ;
+fun kalahdus_NK : NK ;
+fun kalahtaa_VK : VK ;
+fun kalainen_NK : NK ;
+fun kalaisa_NK : NK ;
+fun kalaisuus_NK : NK ;
+fun kalanteri_NK : NK ;
+fun kalanteroida_VK : VK ;
+fun kalastaa_VK : VK ;
+fun kalastaja_NK : NK ;
+fun kalastavuus_NK : NK ;
+fun kalastella_VK : VK ;
+fun kalastelu_NK : NK ;
+fun kalasto_NK : NK ;
+fun kalastus_NK : NK ;
+fun kalauttaa_VK : VK ;
+fun kale_NK : NK ;
+fun kaleeri_NK : NK ;
+fun kaleidoskooppi_NK : NK ;
+fun kalendaarinen_NK : NK ;
+fun kalendaario_NK : NK ;
+fun kalenteri_NK : NK ;
+fun kalevalainen_NK : NK ;
+fun kalhu_NK : NK ;
+fun kali_NK : NK ;
+fun kalibroida_VK : VK ;
+fun kalibrointi_NK : NK ;
+fun kalifi_NK : NK ;
+fun kaliiberi_NK : NK ;
+fun kaliiberinen_NK : NK ;
+fun kaliiperi_NK : NK ;
+fun kaliiperinen_NK : NK ;
+fun kalikka_NK : NK ;
+fun kalina_NK : NK ;
+fun kalista_VK : VK ;
+fun kalistaa_VK : VK ;
+fun kalistella_VK : VK ;
+fun kalistin_NK : NK ;
+fun kalisuttaa_VK : VK ;
+fun kalium_NK : NK ;
+fun kalja_NK : NK ;
+fun kaljaasi_NK : NK ;
+fun kaljama_NK : NK ;
+fun kaljoitella_VK : VK ;
+fun kalju_NK : NK ;
+fun kaljupa'isyys_NK : NK ;
+fun kaljuuntua_VK : VK ;
+fun kaljuus_NK : NK ;
+fun kalkattaa_VK : VK ;
+fun kalkatus_NK : NK ;
+fun kalke_NK : NK ;
+fun kalkita_VK : VK ;
+fun kalkitus_NK : NK ;
+fun kalkkaa_VK : VK ;
+fun kalkkeuma_NK : NK ;
+fun kalkkeutua_VK : VK ;
+fun kalkkeutuma_NK : NK ;
+fun kalkki_1_NK : NK ;
+fun kalkki_2_NK : NK ;
+fun kalkkis_NK : NK ;
+fun kalkkiuma_NK : NK ;
+fun kalkkiutua_VK : VK ;
+fun kalkkiutuma_NK : NK ;
+fun kalkkuna_NK : NK ;
+fun kalkutella_VK : VK ;
+fun kalkuttaa_VK : VK ;
+fun kalkuttelu_NK : NK ;
+fun kalkutus_NK : NK ;
+fun kalkyloida_VK : VK ;
+fun kalkyyli_NK : NK ;
+fun kalla_NK : NK ;
+fun kallas_NK : NK ;
+fun kalle_NK : NK ;
+fun kallellaan_AdvK : AdvK ;
+fun kallelleen_AdvK : AdvK ;
+fun kalleus_NK : NK ;
+fun kallio_NK : NK ;
+fun kallioinen_NK : NK ;
+fun kallionlaki_NK : NK ;
+fun kallis_NK : NK ;
+fun kallistaa_1_VK : VK ;
+fun kallistaa_2_VK : VK ;
+fun kallistella_VK : VK ;
+fun kallistelu_NK : NK ;
+fun kallistua_1_VK : VK ;
+fun kallistua_2_VK : VK ;
+fun kallistus_NK : NK ;
+fun kallistuvakorinen_NK : NK ;
+fun kallo_NK : NK ;
+fun kalloinen_NK : NK ;
+fun kallollinen_NK : NK ;
+fun kallonkutistaja_NK : NK ;
+fun kalma_NK : NK ;
+fun kalmannos_NK : NK ;
+fun kalmari_NK : NK ;
+fun kalmetoida_VK : VK ;
+fun kalmisto_NK : NK ;
+fun kalmo_NK : NK ;
+fun kalmojuuri_NK : NK ;
+fun kalmukki_NK : NK ;
+fun kalopsi_NK : NK ;
+fun kalori_NK : NK ;
+fun kalorinen_NK : NK ;
+fun kaloriton_NK : NK ;
+fun kalossi_NK : NK ;
+fun kalotti_NK : NK ;
+fun kalpa_NK : NK ;
+fun kalpaten_AdvK : AdvK ;
+fun kalpea_NK : NK ;
+fun kalpeus_NK : NK ;
+fun kalppia_VK : VK ;
+fun kalsa_NK : NK ;
+fun kalsareisillaan_AdvK : AdvK ;
+fun kalsareisilleen_AdvK : AdvK ;
+fun kalsarisillaan_AdvK : AdvK ;
+fun kalsarisilleen_AdvK : AdvK ;
+--? fun kalsarit_NK : NK ;
+fun kalsea_AK : AK ;
+--+ fun kalseasti_AdvK : AdvK ;
+fun kalseus_NK : NK ;
+fun kalsium_NK : NK ;
+fun kalsiumkloridi_NK : NK ;
+fun kalskahtaa_VK : VK ;
+fun kalske_NK : NK ;
+fun kalsongit_NK : NK ;
+fun kaltainen_NK : NK ;
+fun kaltaistaa_VK : VK ;
+fun kaltaisuus_NK : NK ;
+fun kaltata_VK : VK ;
+--? fun kalterit_NK : NK ;
+fun kalteva_NK : NK ;
+fun kaltevoida_VK : VK ;
+fun kaltevointi_NK : NK ;
+fun kaltevuus_NK : NK ;
+fun kaltio_NK : NK ;
+fun kaltoin_AdvK : AdvK ;
+fun kalttaus_NK : NK ;
+fun kalu_NK : NK ;
+fun kalustaa_VK : VK ;
+fun kalustamaton_NK : NK ;
+fun kaluste_NK : NK ;
+fun kalusto_NK : NK ;
+fun kalustus_NK : NK ;
+fun kaluta_VK : VK ;
+fun kaluuna_NK : NK ;
+fun kalvaa_VK : VK ;
+fun kalvakka_NK : NK ;
+fun kalvakkuus_NK : NK ;
+fun kalvas_NK : NK ;
+fun kalventaa_VK : VK ;
+fun kalveta_VK : VK ;
+fun kalvia_VK : VK ;
+fun kalvin_NK : NK ;
+fun kalvinilainen_NK : NK ;
+fun kalvinilaisuus_NK : NK ;
+fun kalvinisti_NK : NK ;
+fun kalvinistinen_NK : NK ;
+fun kalvinta_NK : NK ;
+fun kalvo_NK : NK ;
+fun kalvosin_NK : NK ;
+fun kama_NK : NK ;
+fun kamala_AK : AK ;
+--+ fun kamalasti_AdvK : AdvK ;
+fun kamaluus_NK : NK ;
+fun kamana_NK : NK ;
+fun kamara_NK : NK ;
+fun kamari_NK : NK ;
+fun kamarinen_NK : NK ;
+fun kambri_NK : NK ;
+fun kambrinen_NK : NK ;
+fun kamee_NK : NK ;
+fun kameleontti_NK : NK ;
+fun kameli_NK : NK ;
+fun kamelia_NK : NK ;
+fun kamera_NK : NK ;
+fun kamferi_NK : NK ;
+fun kamiina_NK : NK ;
+fun kammata_VK : VK ;
+fun kammeta_VK : VK ;
+fun kammio_NK : NK ;
+fun kammioinen_NK : NK ;
+fun kammitsoida_VK : VK ;
+fun kammo_NK : NK ;
+fun kammoa_VK : VK ;
+fun kammoksua_VK : VK ;
+fun kammoksuttaa_VK : VK ;
+fun kammota_VK : VK ;
+fun kammottaa_VK : VK ;
+fun kammottava_AK : AK ;
+--+ fun kammottavasti_AdvK : AdvK ;
+fun kammottavuus_NK : NK ;
+fun kamomilla_NK : NK ;
+fun kampa_NK : NK ;
+fun kampaaja_NK : NK ;
+fun kampaamo_NK : NK ;
+fun kampanja_NK : NK ;
+fun kampanjoida_VK : VK ;
+fun kampanjointi_NK : NK ;
+fun kampata_VK : VK ;
+fun kampaus_NK : NK ;
+fun kampauttaa_VK : VK ;
+fun kampe_NK : NK ;
+fun kampela_NK : NK ;
+fun kampeutua_VK : VK ;
+fun kampi_NK : NK ;
+fun kampittaa_VK : VK ;
+fun kampitus_NK : NK ;
+fun kamppailla_VK : VK ;
+fun kamppailu_NK : NK ;
+fun kamppaus_NK : NK ;
+--? fun kamppeet_NK : NK ;
+fun kamppi_NK : NK ;
+--? fun kamppiaiset_NK : NK ;
+--? fun kampsut_NK : NK ;
+fun kampura_NK : NK ;
+fun kampus_NK : NK ;
+fun kamreeri_NK : NK ;
+fun kamu_NK : NK ;
+fun kana_NK : NK ;
+fun kanaali_NK : NK ;
+fun kanadalainen_NK : NK ;
+fun kanala_NK : NK ;
+fun kanalisaatio_NK : NK ;
+fun kanalisoida_VK : VK ;
+fun kanalisoitua_VK : VK ;
+fun kanalja_NK : NK ;
+--+ fun kanamaisesti_AdvK : AdvK ;
+fun kanamaisuus_NK : NK ;
+fun kanava_NK : NK ;
+fun kanavisto_NK : NK ;
+fun kanavoida_VK : VK ;
+fun kanavoitua_VK : VK ;
+fun kandeerata_VK : VK ;
+fun kandela_NK : NK ;
+fun kandi_NK : NK ;
+fun kandidaatti_NK : NK ;
+fun kaneli_NK : NK ;
+fun kanelinkuori_NK : NK ;
+fun kanerva_NK : NK ;
+fun kanervikko_NK : NK ;
+fun kanervisto_NK : NK ;
+fun kangas_1_NK : NK ;
+fun kangas_2_NK : NK ;
+fun kangastaa_VK : VK ;
+fun kangastella_VK : VK ;
+fun kangastua_VK : VK ;
+fun kangastus_NK : NK ;
+fun kangerrella_VK : VK ;
+fun kangerrus_NK : NK ;
+fun kangertaa_VK : VK ;
+fun kangertelu_NK : NK ;
+fun kangeta_VK : VK ;
+fun kangistaa_VK : VK ;
+fun kangistua_VK : VK ;
+fun kangistuttaa_VK : VK ;
+fun kani_1_NK : NK ;
+fun kani_2_NK : NK ;
+fun kaniini_NK : NK ;
+fun kanisteri_NK : NK ;
+fun kanittaa_VK : VK ;
+fun kanjoni_NK : NK ;
+fun kankainen_1_NK : NK ;
+fun kankainen_2_NK : NK ;
+fun kankare_NK : NK ;
+fun kankea_AK : AK ;
+--+ fun kankeasti_AdvK : AdvK ;
+fun kankeus_NK : NK ;
+fun kankeuttaa_VK : VK ;
+fun kanki_NK : NK ;
+fun kankku_NK : NK ;
+fun kankkunen_NK : NK ;
+fun kankuri_NK : NK ;
+fun kanna_1_NK : NK ;
+fun kanna_2_NK : NK ;
+fun kannabis_NK : NK ;
+fun kannakselainen_NK : NK ;
+fun kannalla_AdvK : AdvK ;
+fun kannalle_AdvK : AdvK ;
+fun kannallinen_NK : NK ;
+fun kannalta_AdvK : AdvK ;
+fun kannas_NK : NK ;
+fun kannassa_AdvK : AdvK ;
+fun kannasta_AdvK : AdvK ;
+fun kannate_NK : NK ;
+fun kannatella_VK : VK ;
+fun kannatin_NK : NK ;
+fun kannattaa_VK : VK ;
+fun kannattaja_NK : NK ;
+fun kannattamaton_NK : NK ;
+fun kannattava_NK : NK ;
+fun kannattavuus_NK : NK ;
+fun kannatus_NK : NK ;
+fun kanne_NK : NK ;
+fun kanneaika_NK : NK ;
+fun kannel_NK : NK ;
+fun kannella_VK : VK ;
+fun kannellinen_NK : NK ;
+fun kanneloni_NK : NK ;
+fun kannibaali_NK : NK ;
+fun kannibaalinen_NK : NK ;
+fun kannibalismi_NK : NK ;
+fun kannike_NK : NK ;
+fun kannikka_NK : NK ;
+fun kannin_NK : NK ;
+fun kanniskella_VK : VK ;
+fun kannoilla_AdvK : AdvK ;
+fun kannoille_AdvK : AdvK ;
+fun kannoilta_AdvK : AdvK ;
+fun kannokko_NK : NK ;
+fun kannokkoinen_NK : NK ;
+fun kannu_NK : NK ;
+fun kannuittain_AdvK : AdvK ;
+fun kannullinen_NK : NK ;
+fun kannus_1_NK : NK ;
+fun kannus_2_NK : NK ;
+fun kannustaa_VK : VK ;
+fun kannustaja_NK : NK ;
+fun kannuste_NK : NK ;
+fun kannustin_NK : NK ;
+fun kannustus_NK : NK ;
+fun kanoninen_NK : NK ;
+fun kanonisoida_VK : VK ;
+fun kanonisoitua_VK : VK ;
+fun kanonistaa_VK : VK ;
+fun kanooppi_NK : NK ;
+fun kanootti_NK : NK ;
+fun kanotisti_NK : NK ;
+fun kanotoida_VK : VK ;
+fun kansa_NK : NK ;
+--+ fun kansainva'lisesti_AdvK : AdvK ;
+fun kansainva'listya'_VK : VK ;
+fun kansainva'lista'a'_VK : VK ;
+fun kansainva'lisyys_NK : NK ;
+fun kansalaisuudeton_NK : NK ;
+fun kansalaisuudettomuus_NK : NK ;
+fun kansalaisuus_NK : NK ;
+fun kansallinen_AK : AK ;
+--+ fun kansallisesti_AdvK : AdvK ;
+fun kansallistaa_VK : VK ;
+fun kansallisuus_NK : NK ;
+--+ fun kansanomaisesti_AdvK : AdvK ;
+fun kansantajuistaa_VK : VK ;
+--+ fun kansanvaltaisesti_AdvK : AdvK ;
+fun kansanvaltaistaa_VK : VK ;
+fun kansanvaltaistua_VK : VK ;
+fun kanserogeeni_NK : NK ;
+fun kanserogeeninen_NK : NK ;
+fun kansi_NK : NK ;
+fun kansinen_NK : NK ;
+fun kansio_NK : NK ;
+fun kansioida_VK : VK ;
+fun kansittaa_VK : VK ;
+fun kansitus_NK : NK ;
+fun kansleri_NK : NK ;
+fun kanslia_NK : NK ;
+fun kanslisti_NK : NK ;
+fun kansoittaa_VK : VK ;
+fun kansoittua_VK : VK ;
+fun kanssa_AdvK : AdvK ;
+fun kanta_NK : NK ;
+fun kantaa_VK : VK ;
+fun kantaan_AdvK : AdvK ;
+fun kantaatti_NK : NK ;
+fun kantainen_NK : NK ;
+fun kantaisuus_NK : NK ;
+fun kantaja_NK : NK ;
+fun kantama_NK : NK ;
+fun kantamaton_NK : NK ;
+fun kantamuksellinen_NK : NK ;
+fun kantamuksittain_AdvK : AdvK ;
+fun kantamus_NK : NK ;
+fun kantarelli_NK : NK ;
+fun kantata_VK : VK ;
+fun kantautua_VK : VK ;
+fun kantavuus_NK : NK ;
+fun kantele_NK : NK ;
+fun kantelija_NK : NK ;
+fun kantelu_NK : NK ;
+fun kantinen_NK : NK ;
+fun kantio_NK : NK ;
+fun kanto_1_NK : NK ;
+fun kanto_2_NK : NK ;
+fun kantoaika_NK : NK ;
+fun kantoinen_1_NK : NK ;
+fun kantoinen_2_NK : NK ;
+fun kantoisuus_NK : NK ;
+fun kantoni_NK : NK ;
+fun kantri_NK : NK ;
+fun kanttarelli_NK : NK ;
+fun kanttaus_NK : NK ;
+fun kantti_NK : NK ;
+fun kanttiini_NK : NK ;
+fun kanttori_NK : NK ;
+fun kanttura_NK : NK ;
+fun kanttuvei_AdvK : AdvK ;
+fun kanukka_NK : NK ;
+fun kanuuna_NK : NK ;
+fun kanveesi_NK : NK ;
+fun kanyloida_VK : VK ;
+fun kanyyli_NK : NK ;
+fun kaoliini_NK : NK ;
+fun kaoottinen_AK : AK ;
+--+ fun kaoottisesti_AdvK : AdvK ;
+fun kapaista_VK : VK ;
+fun kapakka_NK : NK ;
+fun kapakoitsija_NK : NK ;
+fun kapallinen_NK : NK ;
+fun kapalo_NK : NK ;
+fun kapaloida_VK : VK ;
+fun kapalointi_NK : NK ;
+fun kapasitanssi_NK : NK ;
+fun kapasiteetti_NK : NK ;
+fun kapea_AK : AK ;
+--+ fun kapeasti_AdvK : AdvK ;
+fun kapeikko_NK : NK ;
+fun kapeikkoinen_NK : NK ;
+fun kapeus_NK : NK ;
+fun kapeuttaa_VK : VK ;
+fun kapeutua_VK : VK ;
+fun kapi_NK : NK ;
+fun kapiainen_NK : NK ;
+fun kapillaari_NK : NK ;
+fun kapillaarinen_AK : AK ;
+--+ fun kapillaarisesti_AdvK : AdvK ;
+fun kapillaarisuus_NK : NK ;
+fun kapina_NK : NK ;
+fun kapinallinen_NK : NK ;
+fun kapinallisuus_NK : NK ;
+fun kapine_NK : NK ;
+fun kapinen_NK : NK ;
+fun kapinoida_VK : VK ;
+fun kapinoija_NK : NK ;
+fun kapinointi_NK : NK ;
+fun kapinoitsija_NK : NK ;
+--? fun kapiot_NK : NK ;
+fun kapistus_NK : NK ;
+fun kapitaali_NK : NK ;
+fun kapitalismi_NK : NK ;
+fun kapitalisoida_VK : VK ;
+fun kapitalisointi_NK : NK ;
+fun kapitalisti_NK : NK ;
+fun kapitalistinen_NK : NK ;
+fun kapitaloida_VK : VK ;
+fun kapitalointi_NK : NK ;
+fun kapiteeli_NK : NK ;
+fun kapiteloida_VK : VK ;
+fun kapitulantti_NK : NK ;
+fun kaplas_NK : NK ;
+fun kaplastaa_VK : VK ;
+fun kapoinen_NK : NK ;
+fun kapoittain_AdvK : AdvK ;
+fun kapokki_NK : NK ;
+fun kappa_1_NK : NK ;
+fun kappa_2_NK : NK ;
+fun kappa_3_NK : NK ;
+fun kappale_NK : NK ;
+fun kappaleittain_AdvK : AdvK ;
+fun kappaleittainen_NK : NK ;
+fun kappas_AdvK : AdvK ;
+fun kappeli_NK : NK ;
+fun kappi_NK : NK ;
+fun kapriisi_NK : NK ;
+fun kapris_NK : NK ;
+fun kapsaa_VK : VK ;
+fun kapsahdella_VK : VK ;
+fun kapsahdus_NK : NK ;
+fun kapsahtaa_VK : VK ;
+fun kapsahtelu_NK : NK ;
+fun kapse_NK : NK ;
+fun kapsehtia_VK : VK ;
+fun kapsekki_NK : NK ;
+fun kapseli_NK : NK ;
+fun kapseloida_VK : VK ;
+fun kapseloitua_VK : VK ;
+fun kapsyyli_NK : NK ;
+fun kapsa'kki_NK : NK ;
+fun kapteeni_NK : NK ;
+fun kapula_NK : NK ;
+fun kapuloida_VK : VK ;
+fun kapusiini_NK : NK ;
+fun kapusta_NK : NK ;
+fun kaput_AdvK : AdvK ;
+fun kara_NK : NK ;
+fun karaatti_NK : NK ;
+fun karaattinen_NK : NK ;
+fun karabiini_NK : NK ;
+fun karabinieeri_NK : NK ;
+fun karahdella_VK : VK ;
+fun karahdus_NK : NK ;
+fun karahka_NK : NK ;
+fun karahtaa_VK : VK ;
+fun karahteerata_VK : VK ;
+fun karahvi_NK : NK ;
+fun karaista_1_VK : VK ;
+fun karaista_2_VK : VK ;
+fun karaistua_VK : VK ;
+fun karaisu_NK : NK ;
+fun karakteri_NK : NK ;
+fun karakterisoida_VK : VK ;
+fun karakteristiikka_NK : NK ;
+fun karakteristika_NK : NK ;
+fun karakteristinen_NK : NK ;
+fun karakteristisuus_NK : NK ;
+fun karakta'a'ri_NK : NK ;
+fun karambola_NK : NK ;
+fun karamelli_NK : NK ;
+fun karanteeni_NK : NK ;
+fun karaoke_NK : NK ;
+fun karata_VK : VK ;
+fun karate_NK : NK ;
+fun karateka_NK : NK ;
+fun karautella_VK : VK ;
+fun karauttaa_VK : VK ;
+fun karavaanari_NK : NK ;
+fun karavaani_NK : NK ;
+fun karbidi_NK : NK ;
+fun karbiini_NK : NK ;
+fun karbonaatti_NK : NK ;
+fun kardaani_NK : NK ;
+fun kardaaninen_NK : NK ;
+fun kardemumma_NK : NK ;
+fun kardinaali_NK : NK ;
+fun kardiologi_NK : NK ;
+fun kardiologia_NK : NK ;
+fun kardiologinen_NK : NK ;
+fun kardoni_NK : NK ;
+fun kare_NK : NK ;
+fun karehtia_VK : VK ;
+fun kareilla_VK : VK ;
+fun kareilu_NK : NK ;
+fun karelianismi_NK : NK ;
+fun karenssi_NK : NK ;
+fun karenssiaika_NK : NK ;
+fun karhe_NK : NK ;
+fun karhea_AK : AK ;
+--+ fun karheasti_AdvK : AdvK ;
+fun karheikko_NK : NK ;
+fun karhenne_NK : NK ;
+fun karhennos_NK : NK ;
+fun karhennus_NK : NK ;
+fun karhentaa_VK : VK ;
+fun karhentua_VK : VK ;
+fun karheta_VK : VK ;
+fun karheus_NK : NK ;
+fun karheuttaa_VK : VK ;
+fun karheutua_VK : VK ;
+fun karhi_NK : NK ;
+fun karhiainen_NK : NK ;
+fun karhinta_NK : NK ;
+fun karhita_VK : VK ;
+fun karho_NK : NK ;
+fun karhu_NK : NK ;
+fun karhuaja_NK : NK ;
+fun karhukainen_NK : NK ;
+fun karhunkoppi_NK : NK ;
+fun karhuntalja_NK : NK ;
+fun karhuta_VK : VK ;
+fun kari_NK : NK ;
+fun karibu_NK : NK ;
+fun karies_NK : NK ;
+fun karikatyyri_NK : NK ;
+fun karike_NK : NK ;
+fun karikko_NK : NK ;
+fun karikkoinen_NK : NK ;
+fun karikkoisuus_NK : NK ;
+fun karikoida_VK : VK ;
+fun karinen_NK : NK ;
+fun karioitua_VK : VK ;
+fun karioottinen_NK : NK ;
+fun karioottisuus_NK : NK ;
+fun karisma_NK : NK ;
+fun karismaattinen_NK : NK ;
+fun karista_VK : VK ;
+fun karistaa_VK : VK ;
+fun kariste_NK : NK ;
+fun karistella_VK : VK ;
+fun karistelu_NK : NK ;
+fun karistus_NK : NK ;
+fun karisuttaa_VK : VK ;
+fun karisuus_NK : NK ;
+fun karitsa_NK : NK ;
+fun karitsanvilla_NK : NK ;
+fun karitsoida_VK : VK ;
+fun karitsoittaa_VK : VK ;
+fun kariuttaa_VK : VK ;
+fun kariutua_VK : VK ;
+fun karja_NK : NK ;
+fun karja_aura_NK : NK ;
+fun karjahdella_VK : VK ;
+fun karjahdus_NK : NK ;
+fun karjahtaa_VK : VK ;
+fun karjaista_VK : VK ;
+fun karjaisu_NK : NK ;
+fun karjakko_NK : NK ;
+fun karjala_NK : NK ;
+fun karjalaisittain_AdvK : AdvK ;
+fun karjalaisuus_NK : NK ;
+fun karjaton_NK : NK ;
+fun karjeta_VK : VK ;
+fun karju_NK : NK ;
+fun karjua_VK : VK ;
+fun karjunta_NK : NK ;
+fun karkailla_VK : VK ;
+fun karkailu_NK : NK ;
+fun karkaisematon_NK : NK ;
+fun karkaisija_NK : NK ;
+fun karkaisimo_NK : NK ;
+fun karkaista_VK : VK ;
+fun karkaistua_VK : VK ;
+fun karkaisu_NK : NK ;
+fun karkaus_NK : NK ;
+fun karkea_AK : AK ;
+--+ fun karkeasti_AdvK : AdvK ;
+fun karkeistaa_VK : VK ;
+fun karkeistae_NK : NK ;
+fun karkeistus_NK : NK ;
+fun karkelo_NK : NK ;
+fun karkeloida_VK : VK ;
+fun karkelointi_NK : NK ;
+fun karkenee_VK : VK ;
+fun karkeus_NK : NK ;
+fun karkeuttaa_VK : VK ;
+fun karkeutua_VK : VK ;
+fun karkki_NK : NK ;
+fun karkota_VK : VK ;
+fun karkote_NK : NK ;
+fun karkottaa_VK : VK ;
+fun karkotus_NK : NK ;
+fun karku_AdvK : AdvK ;
+fun karkuri_NK : NK ;
+fun karkuruus_NK : NK ;
+fun karkuteille_AdvK : AdvK ;
+fun karkuteilla'_AdvK : AdvK ;
+fun karkuteilta'_AdvK : AdvK ;
+fun karkuun_AdvK : AdvK ;
+fun karma_NK : NK ;
+fun karmaiseva_NK : NK ;
+fun karmaista_VK : VK ;
+fun karmea_AK : AK ;
+--+ fun karmeasti_AdvK : AdvK ;
+fun karmeliitta_NK : NK ;
+fun karmeus_NK : NK ;
+fun karmi_NK : NK ;
+fun karmia_VK : VK ;
+fun karmiini_NK : NK ;
+fun karmiva_NK : NK ;
+fun karneoli_NK : NK ;
+fun karnevaali_NK : NK ;
+fun karnevaaliaika_NK : NK ;
+fun karnevalisoida_VK : VK ;
+fun karnevalisointi_NK : NK ;
+fun karnevalisoitua_VK : VK ;
+fun karoliini_NK : NK ;
+fun karoliininen_NK : NK ;
+fun karolingi_NK : NK ;
+fun karolinginen_NK : NK ;
+fun karonkka_NK : NK ;
+fun karoteeni_NK : NK ;
+fun karpaasi_NK : NK ;
+fun karpalo_NK : NK ;
+fun karppi_NK : NK ;
+fun karrella_AdvK : AdvK ;
+fun karrelle_AdvK : AdvK ;
+fun karri_NK : NK ;
+fun karrieeri_NK : NK ;
+fun karrieristi_NK : NK ;
+fun karrikatyyri_NK : NK ;
+fun karrikoida_VK : VK ;
+fun karrikointi_NK : NK ;
+--+ fun karsaasti_AdvK : AdvK ;
+fun karsas_AK : AK ;
+fun karsastaa_VK : VK ;
+fun karsastus_NK : NK ;
+fun karsaus_NK : NK ;
+fun karsea_NK : NK ;
+fun karsi_NK : NK ;
+fun karsia_VK : VK ;
+fun karsiintua_VK : VK ;
+fun karsija_NK : NK ;
+fun karsikko_NK : NK ;
+fun karsina_NK : NK ;
+fun karsinogeeni_NK : NK ;
+fun karsinogeeninen_NK : NK ;
+fun karsinogeenisuus_NK : NK ;
+fun karsinoida_VK : VK ;
+fun karsinointi_NK : NK ;
+fun karsinoitua_VK : VK ;
+fun karsinooma_NK : NK ;
+fun karsinta_NK : NK ;
+fun karsiutua_VK : VK ;
+fun karski_AK : AK ;
+--+ fun karskisti_AdvK : AdvK ;
+fun karskius_NK : NK ;
+fun karsta_1_NK : NK ;
+fun karsta_2_NK : NK ;
+fun karstaaja_NK : NK ;
+fun karstaamo_NK : NK ;
+fun karstaantua_1_VK : VK ;
+fun karstaantua_2_VK : VK ;
+fun karstainen_NK : NK ;
+fun karstata_VK : VK ;
+fun karstaus_NK : NK ;
+fun karstautua_1_VK : VK ;
+fun karstautua_2_VK : VK ;
+fun karsti_NK : NK ;
+fun karstoittua_VK : VK ;
+fun kartano_NK : NK ;
+fun kartasto_NK : NK ;
+fun kartella_VK : VK ;
+fun kartelli_NK : NK ;
+fun kartelloitua_VK : VK ;
+fun karting_NK : NK ;
+fun kartio_NK : NK ;
+fun kartiokas_NK : NK ;
+fun kartografia_NK : NK ;
+fun kartografinen_AK : AK ;
+--+ fun kartografisesti_AdvK : AdvK ;
+fun kartogrammi_NK : NK ;
+fun kartoitin_NK : NK ;
+fun kartoittaa_VK : VK ;
+fun kartoittaja_NK : NK ;
+fun kartoitus_NK : NK ;
+fun kartonki_NK : NK ;
+fun kartta_NK : NK ;
+fun karttaa_VK : VK ;
+fun karttelu_NK : NK ;
+fun karttu_NK : NK ;
+fun karttua_VK : VK ;
+fun karttuisa_NK : NK ;
+fun kartturi_NK : NK ;
+fun karttusilla_AdvK : AdvK ;
+fun kartunta_NK : NK ;
+fun kartusiaani_NK : NK ;
+fun kartuttaa_VK : VK ;
+fun kartutus_NK : NK ;
+fun karu_AK : AK ;
+fun karukko_NK : NK ;
+fun karussa_AdvK : AdvK ;
+--+ fun karusti_AdvK : AdvK ;
+fun karuuntua_VK : VK ;
+fun karuus_NK : NK ;
+fun karva_NK : NK ;
+--+ fun karvaasti_AdvK : AdvK ;
+fun karvainen_NK : NK ;
+fun karvainen_NK : NK ;
+fun karvaisuus_NK : NK ;
+fun karvallinen_NK : NK ;
+fun karvanjuuri_NK : NK ;
+fun karvari_NK : NK ;
+fun karvas_AK : AK ;
+fun karvastella_VK : VK ;
+fun karvastelu_NK : NK ;
+fun karvasto_NK : NK ;
+fun karvata_VK : VK ;
+fun karvaus_1_NK : NK ;
+fun karvaus_2_NK : NK ;
+fun karve_NK : NK ;
+fun karviainen_NK : NK ;
+fun karvoa_VK : VK ;
+fun karvoittua_VK : VK ;
+fun karvoitus_NK : NK ;
+fun kas_AdvK : AdvK ;
+fun kasa_NK : NK ;
+fun kasaantua_VK : VK ;
+fun kasaantuma_NK : NK ;
+fun kasailla_VK : VK ;
+fun kasapa'issa'_AdvK : AdvK ;
+fun kasari_NK : NK ;
+fun kasarmi_NK : NK ;
+fun kasata_VK : VK ;
+fun kasauma_NK : NK ;
+fun kasautua_VK : VK ;
+fun kasautuma_NK : NK ;
+fun kaseerata_VK : VK ;
+fun kaseeraus_NK : NK ;
+fun kaseiini_NK : NK ;
+fun kasematti_NK : NK ;
+fun kasetoida_VK : VK ;
+fun kasetointi_NK : NK ;
+fun kasetti_NK : NK ;
+fun kasi_NK : NK ;
+fun kasiainen_NK : NK ;
+fun kasino_NK : NK ;
+fun kaskas_NK : NK ;
+fun kaskelotti_NK : NK ;
+fun kasketa_VK : VK ;
+fun kaski_NK : NK ;
+fun kasko_NK : NK ;
+fun kasku_NK : NK ;
+fun kasleri_NK : NK ;
+fun ka_mir_NK : NK ;
+fun ka_miri_NK : NK ;
+fun ka_mirvilla_NK : NK ;
+fun kasoittain_AdvK : AdvK ;
+fun kassa_NK : NK ;
+fun kassi_NK : NK ;
+fun kassler_NK : NK ;
+fun kastaa_VK : VK ;
+--? fun kastajaiset_NK : NK ;
+fun kastanja_NK : NK ;
+fun kastanjetit_NK : NK ;
+fun kastattaa_VK : VK ;
+fun kastautua_VK : VK ;
+fun kaste_NK : NK ;
+fun kastella_VK : VK ;
+fun kastelli_NK : NK ;
+fun kastelu_NK : NK ;
+fun kasti_1_NK : NK ;
+fun kasti_2_NK : NK ;
+fun kastikas_NK : NK ;
+fun kastike_NK : NK ;
+fun kastraatio_NK : NK ;
+fun kastraatti_NK : NK ;
+fun kastroida_VK : VK ;
+fun kastrointi_NK : NK ;
+fun kastua_VK : VK ;
+fun kasuaari_NK : NK ;
+fun kasuistiikka_NK : NK ;
+fun kasuistinen_NK : NK ;
+fun kasukka_NK : NK ;
+fun kasvaa_VK : VK ;
+fun kasvain_NK : NK ;
+fun kasvannainen_NK : NK ;
+fun kasvanta_NK : NK ;
+fun kasvattaa_VK : VK ;
+fun kasvattaja_NK : NK ;
+fun kasvattamo_NK : NK ;
+fun kasvatuksellinen_NK : NK ;
+fun kasvatus_NK : NK ;
+fun kasvettua_VK : VK ;
+fun kasvettuma_NK : NK ;
+fun kasvi_NK : NK ;
+fun kasvillisuus_NK : NK ;
+fun kasvio_NK : NK ;
+fun kasvis_NK : NK ;
+fun kasvisto_NK : NK ;
+fun kasvittaa_VK : VK ;
+fun kasvittua_VK : VK ;
+fun kasvo_NK : NK ;
+fun kasvokkain_AdvK : AdvK ;
+--? fun kasvot_NK : NK ;
+fun kasvoton_NK : NK ;
+fun kasvottomuus_NK : NK ;
+fun kasvotuksin_AdvK : AdvK ;
+fun kasvotusten_AdvK : AdvK ;
+fun kasvu_NK : NK ;
+fun kasvuaika_NK : NK ;
+fun kasvuinen_NK : NK ;
+fun kasvuisuus_NK : NK ;
+fun kasvullinen_NK : NK ;
+fun kasvullisuus_NK : NK ;
+fun kasvusto_NK : NK ;
+fun katafalkki_NK : NK ;
+fun kataja_NK : NK ;
+fun katajainen_NK : NK ;
+fun katajikko_NK : NK ;
+fun katajisto_NK : NK ;
+fun katakombi_NK : NK ;
+fun katala_AK : AK ;
+fun katalaani_NK : NK ;
+--+ fun katalasti_AdvK : AdvK ;
+fun katalonia_NK : NK ;
+fun kataluus_NK : NK ;
+fun katalysaattori_NK : NK ;
+fun katalysoida_VK : VK ;
+fun katalyysi_NK : NK ;
+fun katalyytti_NK : NK ;
+fun katalyyttinen_NK : NK ;
+fun katamaraani_NK : NK ;
+fun katapultti_NK : NK ;
+fun katarri_NK : NK ;
+fun katarsis_NK : NK ;
+fun katastrofaalinen_NK : NK ;
+fun katastrofi_NK : NK ;
+fun kate_NK : NK ;
+fun katedraali_NK : NK ;
+fun kateederi_NK : NK ;
+fun kateeksi_AdvK : AdvK ;
+fun kateellinen_NK : NK ;
+fun kateellisuus_NK : NK ;
+fun kateetti_NK : NK ;
+fun kategoria_NK : NK ;
+fun kategorinen_AK : AK ;
+--+ fun kategorisesti_AdvK : AdvK ;
+fun kategorisuus_NK : NK ;
+fun kateisiin_AdvK : AdvK ;
+fun kateissa_AdvK : AdvK ;
+fun kateissaan_AdvK : AdvK ;
+fun katekeetta_NK : NK ;
+fun katekismus_NK : NK ;
+fun katerpillari_NK : NK ;
+fun katetri_NK : NK ;
+fun katetroida_VK : VK ;
+fun katetrointi_NK : NK ;
+fun kateus_NK : NK ;
+fun katgutti_NK : NK ;
+fun kationi_NK : NK ;
+fun katiska_NK : NK ;
+fun katka_NK : NK ;
+fun katkaisija_NK : NK ;
+fun katkaisin_NK : NK ;
+fun katkaista_VK : VK ;
+fun katkaisu_NK : NK ;
+fun katkaisukohta_NK : NK ;
+fun katkeama_NK : NK ;
+fun katkeamaton_NK : NK ;
+fun katkeamiskohta_NK : NK ;
+fun katkeilla_VK : VK ;
+fun katkelma_NK : NK ;
+fun katkelmallinen_NK : NK ;
+fun katkelmallisuus_NK : NK ;
+fun katkera_AK : AK ;
+--+ fun katkerasti_AdvK : AdvK ;
+fun katkero_NK : NK ;
+fun katkeroittaa_VK : VK ;
+fun katkeroitua_VK : VK ;
+fun katkeruus_NK : NK ;
+fun katketa_VK : VK ;
+fun katki_AdvK : AdvK ;
+fun katkismus_NK : NK ;
+fun katko_1_NK : NK ;
+fun katko_2_NK : NK ;
+fun katkoa_VK : VK ;
+fun katkoja_NK : NK ;
+fun katkola_NK : NK ;
+--+ fun katkonaisesti_AdvK : AdvK ;
+fun katkonta_NK : NK ;
+fun katkos_NK : NK ;
+fun katku_NK : NK ;
+fun katkuinen_NK : NK ;
+fun kato_NK : NK ;
+fun katoamaton_NK : NK ;
+fun katoamattomuus_NK : NK ;
+fun katoava_NK : NK ;
+fun katoavainen_NK : NK ;
+fun katoavaisuus_NK : NK ;
+fun katoavuus_NK : NK ;
+fun katodi_NK : NK ;
+fun katoksellinen_NK : NK ;
+fun katolilainen_NK : NK ;
+fun katolilaisuus_NK : NK ;
+fun katolinen_NK : NK ;
+fun katolisuus_NK : NK ;
+fun katollinen_NK : NK ;
+fun katonraja_NK : NK ;
+fun katos_NK : NK ;
+fun katras_NK : NK ;
+fun katrilli_NK : NK ;
+fun katsahdus_NK : NK ;
+fun katsahtaa_VK : VK ;
+fun katsanto_NK : NK ;
+fun katsastaa_VK : VK ;
+fun katsastaja_NK : NK ;
+fun katsastamaton_NK : NK ;
+fun katsastus_NK : NK ;
+fun katsastuttaa_VK : VK ;
+fun katsaus_NK : NK ;
+fun katse_NK : NK ;
+fun katseinen_NK : NK ;
+fun katseisuus_NK : NK ;
+fun katselija_NK : NK ;
+fun katsella_VK : VK ;
+fun katselmus_NK : NK ;
+fun katselu_NK : NK ;
+fun katsoa_VK : VK ;
+fun katsoja_NK : NK ;
+--? fun katsojaiset_NK : NK ;
+fun katsoma_NK : NK ;
+fun katsomo_NK : NK ;
+fun katsomus_NK : NK ;
+fun katsonta_NK : NK ;
+fun kattaa_VK : VK ;
+fun kattamus_NK : NK ;
+fun kattara_NK : NK ;
+fun katteeton_NK : NK ;
+fun katteikko_NK : NK ;
+fun katteinen_NK : NK ;
+fun katti_NK : NK ;
+fun kattila_NK : NK ;
+fun kattilallinen_NK : NK ;
+fun katto_NK : NK ;
+fun kattoinen_NK : NK ;
+fun katu_NK : NK ;
+fun katua_VK : VK ;
+fun katumus_NK : NK ;
+fun katuvainen_NK : NK ;
+fun katve_NK : NK ;
+fun katveikko_NK : NK ;
+fun katveinen_NK : NK ;
+fun kauaksi_AdvK : AdvK ;
+fun kauan_AdvK : AdvK ;
+fun kauas_AdvK : AdvK ;
+fun kauaskantava_NK : NK ;
+fun kauemma_AdvK : AdvK ;
+fun kauemmaksi_AdvK : AdvK ;
+fun kauemmas_AdvK : AdvK ;
+fun kauemmin_AdvK : AdvK ;
+fun kauempaa_AdvK : AdvK ;
+fun kauempana_AdvK : AdvK ;
+fun kauha_NK : NK ;
+fun kauhallinen_NK : NK ;
+fun kauhduttaa_VK : VK ;
+fun kauhea_AK : AK ;
+--+ fun kauheasti_AdvK : AdvK ;
+fun kauheus_NK : NK ;
+fun kauhistaa_VK : VK ;
+fun kauhistella_VK : VK ;
+fun kauhistua_VK : VK ;
+fun kauhistus_NK : NK ;
+fun kauhistuttaa_VK : VK ;
+fun kauhoa_VK : VK ;
+fun kauhtana_NK : NK ;
+fun kauhtua_VK : VK ;
+fun kauhu_NK : NK ;
+fun kauhuissaan_AdvK : AdvK ;
+fun kauimma_AdvK : AdvK ;
+fun kauimmainen_NK : NK ;
+fun kauimmaksi_AdvK : AdvK ;
+fun kauimmas_AdvK : AdvK ;
+fun kauimmin_AdvK : AdvK ;
+fun kauimpaa_AdvK : AdvK ;
+fun kauimpana_AdvK : AdvK ;
+fun kauintaan_AdvK : AdvK ;
+fun kaukaa_AdvK : AdvK ;
+fun kaukainen_NK : NK ;
+fun kaukaisuus_NK : NK ;
+fun kaukalo_NK : NK ;
+fun kaukana_AdvK : AdvK ;
+fun kaukasialainen_NK : NK ;
+fun kaukokantoinen_NK : NK ;
+fun kaukokatseisuus_NK : NK ;
+fun kaukokulkeutuminen_NK : NK ;
+fun kaukona'ko'isesti_AdvK : AdvK ;
+fun kauko_ohjattu_NK : NK ;
+fun kaukorakastuminen_NK : NK ;
+fun kaula_NK : NK ;
+fun kaulailla_VK : VK ;
+fun kaulailu_NK : NK ;
+fun kaulain_NK : NK ;
+fun kaulainen_NK : NK ;
+fun kaulakkain_AdvK : AdvK ;
+fun kaulata_VK : VK ;
+fun kaulatuksin_AdvK : AdvK ;
+fun kaulatusten_AdvK : AdvK ;
+fun kaulaus_NK : NK ;
+fun kaulia_VK : VK ;
+fun kaulin_NK : NK ;
+fun kaulita_VK : VK ;
+fun kauluksinen_NK : NK ;
+fun kauluri_NK : NK ;
+fun kaulus_NK : NK ;
+fun kauna_NK : NK ;
+fun kaunainen_NK : NK ;
+fun kaunaisuus_NK : NK ;
+fun kauneudellinen_NK : NK ;
+fun kauneus_NK : NK ;
+--+ fun kauniisti_AdvK : AdvK ;
+fun kaunis_AK : AK ;
+fun kaunistaa_VK : VK ;
+fun kaunistautua_VK : VK ;
+fun kauniste_NK : NK ;
+fun kaunistelematon_NK : NK ;
+fun kaunistella_VK : VK ;
+fun kaunistelu_NK : NK ;
+fun kaunistua_VK : VK ;
+fun kaunistus_NK : NK ;
+fun kaunoinen_NK : NK ;
+fun kaunokainen_NK : NK ;
+fun kaunokki_NK : NK ;
+--+ fun kaunopuheisesti_AdvK : AdvK ;
+fun kaunopuheisuus_NK : NK ;
+fun kaunotar_NK : NK ;
+fun kaupaksi_ka'yma'to'n_NK : NK ;
+fun kaupalla_AdvK : AdvK ;
+fun kaupallinen_AK : AK ;
+--+ fun kaupallisesti_AdvK : AdvK ;
+fun kaupallistaa_VK : VK ;
+fun kaupallistua_VK : VK ;
+fun kaupallisuus_NK : NK ;
+fun kaupata_VK : VK ;
+fun kaupinta_NK : NK ;
+fun kaupita_VK : VK ;
+fun kaupitella_VK : VK ;
+fun kaupitsija_NK : NK ;
+fun kaupittaja_NK : NK ;
+fun kaupittelija_NK : NK ;
+fun kaupittelu_NK : NK ;
+fun kauppa_NK : NK ;
+fun kauppaaja_NK : NK ;
+fun kauppala_NK : NK ;
+fun kauppausanssi_NK : NK ;
+fun kauppias_NK : NK ;
+fun kaupungeittain_AdvK : AdvK ;
+fun kaupungistaa_VK : VK ;
+fun kaupungistua_VK : VK ;
+fun kaupunki_NK : NK ;
+--+ fun kaupunkilaisesti_AdvK : AdvK ;
+fun kaupunkilaisittain_AdvK : AdvK ;
+fun kaupunkilaistua_VK : VK ;
+fun kaupunkimaistaa_VK : VK ;
+fun kaupunkimaistua_VK : VK ;
+fun kaupustelija_NK : NK ;
+fun kaupustella_VK : VK ;
+fun kaupustelu_NK : NK ;
+fun kaura_NK : NK ;
+fun kauris_NK : NK ;
+fun kausaalilaki_NK : NK ;
+fun kausaalinen_NK : NK ;
+fun kausaalisuus_NK : NK ;
+fun kausaliteetti_NK : NK ;
+fun kausi_NK : NK ;
+fun kausittain_AdvK : AdvK ;
+fun kausittainen_NK : NK ;
+fun kaustinen_NK : NK ;
+fun kautinen_NK : NK ;
+fun kautsu_NK : NK ;
+fun kautta_AdvK : AdvK ;
+fun kauttaaltaan_AdvK : AdvK ;
+fun kauttaaltainen_NK : NK ;
+fun kautta_rantain_AdvK : AdvK ;
+fun kavahtaa_VK : VK ;
+fun kavala_AK : AK ;
+--+ fun kavalasti_AdvK : AdvK ;
+fun kavaljeeri_NK : NK ;
+fun kavalkadi_NK : NK ;
+fun kavallus_NK : NK ;
+fun kavaltaa_VK : VK ;
+fun kavaltaja_NK : NK ;
+fun kavaluus_NK : NK ;
+fun kaveerata_VK : VK ;
+fun kavennus_NK : NK ;
+fun kaventaa_VK : VK ;
+fun kaventua_VK : VK ;
+fun kaventuma_NK : NK ;
+fun kaveri_NK : NK ;
+--? fun kaverukset_NK : NK ;
+fun kaveta_VK : VK ;
+fun kaviaari_NK : NK ;
+fun kavio_NK : NK ;
+fun kavuta_VK : VK ;
+fun kebab_NK : NK ;
+fun keeppi_NK : NK ;
+fun kefalosporiini_NK : NK ;
+fun kefiiri_NK : NK ;
+fun kehaista_VK : VK ;
+fun kehaisu_NK : NK ;
+fun kehdata_VK : VK ;
+fun kehikko_NK : NK ;
+fun kehite_NK : NK ;
+fun kehitella'_VK : VK ;
+fun kehitelma'_NK : NK ;
+fun kehitin_NK : NK ;
+fun kehitteille_AdvK : AdvK ;
+fun kehitteilla'_AdvK : AdvK ;
+fun kehittelija'_NK : NK ;
+fun kehittely_NK : NK ;
+fun kehittyma'_NK : NK ;
+fun kehittyma'tto'myys_NK : NK ;
+fun kehittyma'to'n_NK : NK ;
+fun kehittyneisyys_NK : NK ;
+fun kehittynyt_NK : NK ;
+fun kehittya'_VK : VK ;
+fun kehitta'ja'_NK : NK ;
+fun kehitta'va'_NK : NK ;
+fun kehitta'a'_VK : VK ;
+fun kehitys_NK : NK ;
+fun kehitytta'a'_VK : VK ;
+fun kehia'_VK : VK ;
+fun kehjeta'_VK : VK ;
+fun kehkeyma'_NK : NK ;
+fun kehkeytyma'_NK : NK ;
+fun kehkeytya'_VK : VK ;
+fun kehno_AK : AK ;
+fun kehnontaa_VK : VK ;
+fun kehnontua_VK : VK ;
+--+ fun kehnosti_AdvK : AdvK ;
+fun kehnota_VK : VK ;
+fun kehnous_NK : NK ;
+fun kehna'_NK : NK ;
+fun kehna'ta'_VK : VK ;
+fun keho_NK : NK ;
+fun kehollinen_NK : NK ;
+fun kehotella_VK : VK ;
+fun kehottaa_VK : VK ;
+fun kehotus_NK : NK ;
+fun kehruu_NK : NK ;
+--? fun kehruukset_NK : NK ;
+fun kehruuttaa_VK : VK ;
+fun kehra'_NK : NK ;
+fun kehra's_NK : NK ;
+fun kehra'ta'_VK : VK ;
+fun kehra'ys_NK : NK ;
+fun kehra'ytta'a'_VK : VK ;
+fun kehra'a'ja'_NK : NK ;
+fun kehra'a'mo'_NK : NK ;
+fun kehto_NK : NK ;
+fun kehu_NK : NK ;
+fun kehua_VK : VK ;
+fun kehuja_NK : NK ;
+fun kehunta_NK : NK ;
+fun kehuskella_VK : VK ;
+fun kehuskelu_NK : NK ;
+fun kehuttava_AK : AK ;
+--+ fun kehuttavasti_AdvK : AdvK ;
+fun kehveli_NK : NK ;
+fun kehyksellinen_NK : NK ;
+fun kehykseto'n_NK : NK ;
+fun kehyksinen_NK : NK ;
+fun kehys_NK : NK ;
+fun kehyste_NK : NK ;
+fun kehystys_NK : NK ;
+fun kehysta'mo'_NK : NK ;
+fun kehysta'a'_VK : VK ;
+fun keha'_NK : NK ;
+fun keidas_NK : NK ;
+fun keiha's_NK : NK ;
+fun keiha'sma'inen_NK : NK ;
+fun keiha'stys_NK : NK ;
+fun keiha'sta'a'_VK : VK ;
+fun keija_NK : NK ;
+fun keiju_NK : NK ;
+fun keijukainen_NK : NK ;
+fun keijusto_NK : NK ;
+fun keikahdus_NK : NK ;
+fun keikahtaa_VK : VK ;
+fun keikailija_NK : NK ;
+fun keikailla_VK : VK ;
+fun keikailu_NK : NK ;
+fun keikari_NK : NK ;
+fun keikaroida_VK : VK ;
+fun keikaroija_NK : NK ;
+fun keikarointi_NK : NK ;
+fun keikaus_NK : NK ;
+fun keikauttaa_VK : VK ;
+fun keikistella'_VK : VK ;
+fun keikistely_NK : NK ;
+fun keikista'a'_VK : VK ;
+fun keikka_NK : NK ;
+fun keikkailla_VK : VK ;
+fun keikkailu_NK : NK ;
+fun keikkua_VK : VK ;
+fun keikunta_NK : NK ;
+fun keikutella_VK : VK ;
+fun keikuttaa_VK : VK ;
+fun keikuttelu_NK : NK ;
+fun keikutus_NK : NK ;
+fun keila_NK : NK ;
+fun keilaaja_NK : NK ;
+fun keilailla_VK : VK ;
+fun keilailu_NK : NK ;
+fun keilata_VK : VK ;
+fun keimailija_NK : NK ;
+fun keimailla_VK : VK ;
+fun keimailu_NK : NK ;
+fun keimit_NK : NK ;
+fun keinahdella_VK : VK ;
+fun keinahdus_NK : NK ;
+fun keinahtaa_VK : VK ;
+fun keinauttaa_VK : VK ;
+fun keino_NK : NK ;
+fun keinollinen_NK : NK ;
+--+ fun keinotekoisesti_AdvK : AdvK ;
+fun keinotella_VK : VK ;
+fun keinottelija_NK : NK ;
+fun keinottelu_NK : NK ;
+fun keinu_NK : NK ;
+fun keinua_VK : VK ;
+fun keinunta_NK : NK ;
+fun keinutella_VK : VK ;
+fun keinuttaa_VK : VK ;
+fun keinutus_NK : NK ;
+fun keisari_NK : NK ;
+fun keisariaika_NK : NK ;
+fun keisarillinen_NK : NK ;
+fun keisarinna_NK : NK ;
+fun keisarius_NK : NK ;
+fun keiso_NK : NK ;
+fun keitella'_VK : VK ;
+fun keitin_NK : NK ;
+fun keitos_NK : NK ;
+fun keitraus_NK : NK ;
+fun keittimo'_NK : NK ;
+fun keittio'_NK : NK ;
+fun keitto_NK : NK ;
+fun keittoaika_NK : NK ;
+fun keittola_NK : NK ;
+fun keittya'_VK : VK ;
+fun keitta'ja'_NK : NK ;
+fun keitta'mo'_NK : NK ;
+fun keitta'a'_VK : VK ;
+fun keita'tta'a'_VK : VK ;
+fun kekata_VK : VK ;
+fun kekkale_NK : NK ;
+fun kekkaloida_VK : VK ;
+--? fun kekkerit_NK : NK ;
+fun kekkuli_NK : NK ;
+fun kekkuloida_VK : VK ;
+fun keko_NK : NK ;
+fun kekri_NK : NK ;
+fun keksaista_VK : VK ;
+fun kekselia'isyys_NK : NK ;
+fun kekselia's_AK : AK ;
+--+ fun kekselia'a'sti_AdvK : AdvK ;
+fun keksi_1_NK : NK ;
+fun keksi_2_NK : NK ;
+fun keksija'_NK : NK ;
+fun keksinto'_NK : NK ;
+fun keksia'_VK : VK ;
+fun keka'le_NK : NK ;
+fun kela_NK : NK ;
+fun kelastaa_VK : VK ;
+fun kelastus_NK : NK ;
+fun kelata_VK : VK ;
+fun kelaus_NK : NK ;
+fun kelautua_VK : VK ;
+fun keli_NK : NK ;
+fun keliaakikko_NK : NK ;
+fun keliakia_NK : NK ;
+fun kelirikkoinen_NK : NK ;
+fun kelju_AK : AK ;
+fun keljuilija_NK : NK ;
+fun keljuilla_VK : VK ;
+fun keljuilu_NK : NK ;
+fun keljumaisuus_NK : NK ;
+--+ fun keljusti_AdvK : AdvK ;
+fun keljuttaa_VK : VK ;
+fun keljuus_NK : NK ;
+fun kelkka_NK : NK ;
+fun kelkkailija_NK : NK ;
+fun kelkkailla_VK : VK ;
+fun kelkkailu_NK : NK ;
+fun kellahdella_VK : VK ;
+fun kellahdus_NK : NK ;
+fun kellahduttaa_VK : VK ;
+fun kellahtaa_VK : VK ;
+fun kellahtava_NK : NK ;
+fun kellari_NK : NK ;
+fun kellaroida_VK : VK ;
+fun kellarointi_NK : NK ;
+fun kellastaa_VK : VK ;
+fun kellastua_VK : VK ;
+fun kellastuttaa_VK : VK ;
+fun kellata_VK : VK ;
+fun kellauttaa_VK : VK ;
+fun kellelleen_AdvK : AdvK ;
+fun kellella'a'n_AdvK : AdvK ;
+fun kellertya'_VK : VK ;
+fun kellerta'va'_NK : NK ;
+fun kellerta'a'_VK : VK ;
+fun kellerva'_NK : NK ;
+fun kellistya'_VK : VK ;
+fun kellista'a'_VK : VK ;
+fun kellia'_VK : VK ;
+fun kello_NK : NK ;
+fun kelloaika_NK : NK ;
+fun kellokas_NK : NK ;
+fun kellonaika_NK : NK ;
+fun kellonlyo'ma'_NK : NK ;
+fun kellontikitys_NK : NK ;
+fun kellottaa_1_VK : VK ;
+fun kellottaa_2_VK : VK ;
+fun kellottaa_3_VK : VK ;
+fun kellua_VK : VK ;
+fun kelluke_NK : NK ;
+fun kellukka_NK : NK ;
+fun kellunta_NK : NK ;
+fun kellute_NK : NK ;
+fun kelluttaa_VK : VK ;
+fun kellutus_NK : NK ;
+fun kelluvuus_NK : NK ;
+fun kelmentya'_VK : VK ;
+fun kelmenta'a'_VK : VK ;
+fun kelmeta'_VK : VK ;
+fun kelmeys_NK : NK ;
+fun kelmea'_NK : NK ;
+fun kelmi_NK : NK ;
+fun kelmu_NK : NK ;
+fun kelo_NK : NK ;
+fun kelokko_NK : NK ;
+fun kelottua_VK : VK ;
+fun keloutua_VK : VK ;
+fun kelpo_NK : NK ;
+fun kelpoinen_NK : NK ;
+fun kelpoisuus_NK : NK ;
+fun kelpoisuusaika_NK : NK ;
+fun kelpuuttaa_VK : VK ;
+fun kelpuutus_NK : NK ;
+fun kelsiturkki_NK : NK ;
+fun kelta_NK : NK ;
+fun keltainen_NK : NK ;
+fun keltaisuus_NK : NK ;
+fun keltamo_NK : NK ;
+fun keltano_NK : NK ;
+fun kelteisilleen_AdvK : AdvK ;
+fun kelteisilla'a'n_AdvK : AdvK ;
+fun keltia'inen_NK : NK ;
+fun keltti_NK : NK ;
+fun kelttila'inen_NK : NK ;
+fun keltuainen_NK : NK ;
+fun kelvata_VK : VK ;
+fun kelvin_NK : NK ;
+fun kelvokas_NK : NK ;
+fun kelvollinen_AK : AK ;
+--+ fun kelvollisesti_AdvK : AdvK ;
+fun kelvollisuus_NK : NK ;
+fun kelvoton_NK : NK ;
+fun kelvottomasti_AdvK : AdvK ;
+fun kelvottomuus_NK : NK ;
+fun kemia_NK : NK ;
+fun kemiallinen_AK : AK ;
+--+ fun kemiallisesti_AdvK : AdvK ;
+fun kemigrafi_NK : NK ;
+fun kemigrafia_NK : NK ;
+fun kemigrafinen_NK : NK ;
+fun kemikaali_NK : NK ;
+fun kemisti_NK : NK ;
+fun kemppi_NK : NK ;
+--? fun kemut_NK : NK ;
+fun kendo_NK : NK ;
+fun kengitta'ja'_NK : NK ;
+fun kengitta'a'_VK : VK ;
+fun kengitys_NK : NK ;
+fun kenga'nkiillottaja_NK : NK ;
+fun kenkku_NK : NK ;
+fun kenkkuilla_VK : VK ;
+fun kenkuttaa_VK : VK ;
+fun kenka'_NK : NK ;
+fun kenka'in_NK : NK ;
+fun kenka'inen_NK : NK ;
+fun kennel_NK : NK ;
+fun kenno_NK : NK ;
+fun kenollaan_AdvK : AdvK ;
+fun kenoon_AdvK : AdvK ;
+fun kenossa_AdvK : AdvK ;
+fun kenotsooinen_NK : NK ;
+fun kenottaa_VK : VK ;
+fun kenraali_NK : NK ;
+fun kenraalisto_NK : NK ;
+fun kenraalitar_NK : NK ;
+fun kentauri_NK : NK ;
+fun kenties_AdvK : AdvK ;
+fun kentta'_NK : NK ;
+fun kenta'llinen_NK : NK ;
+fun kepakko_NK : NK ;
+fun kepeys_NK : NK ;
+fun kepea'_AK : AK ;
+--+ fun kepea'sti_AdvK : AdvK ;
+fun kepitta'a'_VK : VK ;
+fun kepitys_NK : NK ;
+fun keplotella_VK : VK ;
+fun keplottelu_NK : NK ;
+fun keppana_NK : NK ;
+fun keppi_NK : NK ;
+fun kepponen_NK : NK ;
+fun kepulainen_NK : NK ;
+fun kepuli_AK : AK ;
+--+ fun kepulisti_AdvK : AdvK ;
+fun kera_AdvK : AdvK ;
+fun keraami_NK : NK ;
+fun keraamikko_NK : NK ;
+fun keraaminen_NK : NK ;
+fun kerake_NK : NK ;
+fun keralla_AdvK : AdvK ;
+fun keralle_AdvK : AdvK ;
+fun keratiini_NK : NK ;
+fun kerberos_NK : NK ;
+fun kerettila'inen_NK : NK ;
+fun kerettila'isyys_NK : NK ;
+fun kereta'_VK : VK ;
+fun kerho_NK : NK ;
+fun kerinta'_1_NK : NK ;
+fun kerinta'_2_NK : NK ;
+fun keripukki_NK : NK ;
+--? fun keritsimet_NK : NK ;
+fun kerita'_1_VK : VK ;
+fun kerita'_2_VK : VK ;
+fun keriytya'_VK : VK ;
+fun keria'_VK : VK ;
+fun kerjeta'_VK : VK ;
+fun kerjuu_NK : NK ;
+fun kerja'la'inen_NK : NK ;
+fun kerja'la'isyys_NK : NK ;
+fun kerja'ta'_VK : VK ;
+fun kerja'ys_NK : NK ;
+fun kerkeys_NK : NK ;
+fun kerkea'_AK : AK ;
+--+ fun kerkea'sti_AdvK : AdvK ;
+fun kerkka'_NK : NK ;
+fun kerma_NK : NK ;
+fun kermainen_NK : NK ;
+fun kermakko_NK : NK ;
+fun kermoa_VK : VK ;
+fun kermoittua_VK : VK ;
+fun kernaasti_AdvK : AdvK ;
+fun kerni_NK : NK ;
+fun kero_NK : NK ;
+fun kerosiini_NK : NK ;
+fun kerppu_NK : NK ;
+fun kerrakseen_AdvK : AdvK ;
+fun kerralla_AdvK : AdvK ;
+fun kerrallaan_AdvK : AdvK ;
+fun kerrallinen_NK : NK ;
+fun kerrallisuus_NK : NK ;
+fun kerran_AdvK : AdvK ;
+fun kerrassaan_AdvK : AdvK ;
+fun kerrasto_NK : NK ;
+fun kerrata_VK : VK ;
+fun kerroin_1_NK : NK ;
+fun kerroin_2_AdvK : AdvK ;
+fun kerroksellinen_NK : NK ;
+fun kerroksellisuus_NK : NK ;
+fun kerroksinen_NK : NK ;
+fun kerroksisuus_NK : NK ;
+fun kerroksittain_AdvK : AdvK ;
+fun kerroksittainen_NK : NK ;
+fun kerronnallinen_NK : NK ;
+fun kerronta_NK : NK ;
+fun kerros_NK : NK ;
+fun kerrospukeutuminen_NK : NK ;
+fun kerrostaa_VK : VK ;
+fun kerrostaloasuminen_NK : NK ;
+fun kerrosteisuus_NK : NK ;
+fun kerrostua_VK : VK ;
+fun kerrottava_NK : NK ;
+fun kerrotunlainen_NK : NK ;
+fun kersa_NK : NK ;
+fun kersantti_NK : NK ;
+fun kerska_NK : NK ;
+fun kerskailija_NK : NK ;
+fun kerskailla_VK : VK ;
+fun kerskailu_NK : NK ;
+fun kerskata_VK : VK ;
+fun kerskua_VK : VK ;
+fun kerskuja_NK : NK ;
+fun kerskuri_NK : NK ;
+fun kerta_NK : NK ;
+fun kertaakaan_AdvK : AdvK ;
+fun kertaalleen_AdvK : AdvK ;
+fun kertaantua_VK : VK ;
+fun kertaheitolla_AdvK : AdvK ;
+fun kertainen_AK : AK ;
+--+ fun kertaisesti_AdvK : AdvK ;
+fun kertaistaa_VK : VK ;
+fun kertaistua_VK : VK ;
+fun kerta_kaikkiaan_AdvK : AdvK ;
+fun kertakaikkinen_AK : AK ;
+--+ fun kertakaikkisesti_AdvK : AdvK ;
+fun kertauma_NK : NK ;
+fun kertaus_NK : NK ;
+fun kertautua_VK : VK ;
+fun kerto_NK : NK ;
+fun kertoa_VK : VK ;
+fun kertoilla_VK : VK ;
+fun kertoja_NK : NK ;
+fun kertoma_NK : NK ;
+fun kertomus_NK : NK ;
+fun kerttu_NK : NK ;
+fun kerttunen_NK : NK ;
+fun kertyma'_NK : NK ;
+fun kertya'_VK : VK ;
+fun kerubi_NK : NK ;
+fun keruu_NK : NK ;
+fun kera'_NK : NK ;
+fun kera'elma'_NK : NK ;
+fun kera'ilija'_NK : NK ;
+fun kera'illa'_VK : VK ;
+fun kera'ily_NK : NK ;
+fun kera'ta'_VK : VK ;
+fun kera'yma'_NK : NK ;
+fun kera'ys_NK : NK ;
+fun kera'ytyma'_NK : NK ;
+fun kera'ytya'_VK : VK ;
+fun kera'a'ja'_NK : NK ;
+fun kera'a'ntya'_VK : VK ;
+fun kesakko_NK : NK ;
+fun kesakkoinen_NK : NK ;
+fun kesannoida_VK : VK ;
+fun kesannointi_NK : NK ;
+fun kesannoitua_VK : VK ;
+fun kesanto_NK : NK ;
+fun kesemma'ksi_AdvK : AdvK ;
+fun kesemma'lle_AdvK : AdvK ;
+fun kesemma'lla'_AdvK : AdvK ;
+fun kesempa'na'_AdvK : AdvK ;
+fun kesia'_VK : VK ;
+fun keskari_NK : NK ;
+fun keskeen_AdvK : AdvK ;
+fun keskeinen_AK : AK ;
+--+ fun keskeisesti_AdvK : AdvK ;
+fun keskeisyys_NK : NK ;
+fun keskelle_AdvK : AdvK ;
+fun keskella'_AdvK : AdvK ;
+fun keskelta'_AdvK : AdvK ;
+fun keskemma'_AdvK : AdvK ;
+fun keskemma'ksi_AdvK : AdvK ;
+fun keskemma'lle_AdvK : AdvK ;
+fun keskemma'lla'_AdvK : AdvK ;
+fun keskemma'lta'_AdvK : AdvK ;
+fun keskemma's_AdvK : AdvK ;
+fun keskempa'na'_AdvK : AdvK ;
+fun keskempa'a'_AdvK : AdvK ;
+fun kesken_AdvK : AdvK ;
+fun keskenera'inen_NK : NK ;
+fun keskenera'isyys_NK : NK ;
+fun keskena'a'n_AdvK : AdvK ;
+fun keskessa'_AdvK : AdvK ;
+fun keskesta'_AdvK : AdvK ;
+fun keskeyksiin_AdvK : AdvK ;
+fun keskeyksissa'_AdvK : AdvK ;
+fun keskeyte_NK : NK ;
+fun keskeytta'a'_VK : VK ;
+fun keskeytykseto'n_NK : NK ;
+fun keskeytyksiin_AdvK : AdvK ;
+fun keskeytyksissa'_AdvK : AdvK ;
+fun keskeytyma'to'n_NK : NK ;
+fun keskeytys_NK : NK ;
+fun keskeytya'_VK : VK ;
+fun keskiaika_NK : NK ;
+fun keskiaurinkoaika_NK : NK ;
+--+ fun keskihakuisesti_AdvK : AdvK ;
+fun keski_ika'istya'_VK : VK ;
+fun keskikohta_NK : NK ;
+fun keskikoko_NK : NK ;
+fun keskiluokkaistua_VK : VK ;
+fun keskimma'inen_NK : NK ;
+fun keskima'a'rin_AdvK : AdvK ;
+fun keskinen_NK : NK ;
+--+ fun keskinkertaisesti_AdvK : AdvK ;
+fun keskinkertaisuus_NK : NK ;
+fun keskina'inen_AK : AK ;
+--+ fun keskina'isesti_AdvK : AdvK ;
+fun keskina'isyys_NK : NK ;
+fun keskipakoinen_AK : AK ;
+--+ fun keskipakoisesti_AdvK : AdvK ;
+fun keskipakoisuus_NK : NK ;
+fun keskisarka_NK : NK ;
+fun keskitse_AdvK : AdvK ;
+fun keskittyma'_NK : NK ;
+fun keskittya'_VK : VK ;
+fun keskitta'a'_VK : VK ;
+fun keskitys_NK : NK ;
+fun keskivaiheilla_AdvK : AdvK ;
+fun keskivaiheille_AdvK : AdvK ;
+fun keskivaiheilta_AdvK : AdvK ;
+fun keskiviikkoisin_AdvK : AdvK ;
+fun keskio'_NK : NK ;
+fun keskonen_NK : NK ;
+fun keskosuus_NK : NK ;
+fun keskus_NK : NK ;
+fun keskusta_NK : NK ;
+fun keskustelija_NK : NK ;
+fun keskustella_VK : VK ;
+fun keskustelu_NK : NK ;
+fun keskuudessa_AdvK : AdvK ;
+fun keskuudesta_AdvK : AdvK ;
+fun keskuuteen_AdvK : AdvK ;
+fun kessu_1_NK : NK ;
+fun kessu_2_NK : NK ;
+fun kessutella_VK : VK ;
+fun kessuttaa_VK : VK ;
+fun kesti_NK : NK ;
+fun kestitta'a'_VK : VK ;
+fun kestitys_NK : NK ;
+fun kestita'_VK : VK ;
+fun kesto_NK : NK ;
+fun kestoaika_NK : NK ;
+fun kestoinen_NK : NK ;
+fun kesta'ma'tto'myys_NK : NK ;
+fun kesta'ma'to'n_NK : NK ;
+fun kesta'vyys_NK : NK ;
+fun kesta'va'_AK : AK ;
+--+ fun kesta'va'sti_AdvK : AdvK ;
+fun kesta'vo'ida'_VK : VK ;
+fun kesta'vo'inti_NK : NK ;
+fun kesta'a'_VK : VK ;
+fun kesy_AK : AK ;
+--+ fun kesysti_AdvK : AdvK ;
+fun kesyttya'_VK : VK ;
+fun kesytta'ja'_NK : NK ;
+fun kesytta'ma'to'n_NK : NK ;
+fun kesytta'a'_VK : VK ;
+fun kesytto'myys_NK : NK ;
+fun kesytys_NK : NK ;
+fun kesyto'n_NK : NK ;
+fun kesyyntya'_VK : VK ;
+fun kesyys_NK : NK ;
+fun kesa'_NK : NK ;
+fun kesa'aika_NK : NK ;
+fun kesa'asuttava_NK : NK ;
+fun kesa'inen_AK : AK ;
+--+ fun kesa'isesti_AdvK : AdvK ;
+fun kesa'isin_AdvK : AdvK ;
+fun kesa'llinen_NK : NK ;
+fun ketale_NK : NK ;
+fun ketara_NK : NK ;
+fun ketchup_NK : NK ;
+fun ketju_NK : NK ;
+fun ketjullinen_NK : NK ;
+fun ketjuttaa_VK : VK ;
+fun ketjutus_NK : NK ;
+fun ketjuuntua_VK : VK ;
+fun ketjuutua_VK : VK ;
+fun ketjuva'lityksinen_NK : NK ;
+fun ketkale_NK : NK ;
+fun ketku_NK : NK ;
+fun ketlaaja_NK : NK ;
+fun ketlata_VK : VK ;
+fun keto_NK : NK ;
+fun ketoni_NK : NK ;
+fun ketoosi_1_NK : NK ;
+fun ketoosi_2_NK : NK ;
+fun ketsi_NK : NK ;
+fun ketsuppi_NK : NK ;
+fun ketteryys_NK : NK ;
+fun kettera'_AK : AK ;
+--+ fun kettera'sti_AdvK : AdvK ;
+fun kettinki_NK : NK ;
+fun ketto_NK : NK ;
+fun kettu_NK : NK ;
+fun ketuttaa_VK : VK ;
+fun keuhko_NK : NK ;
+fun keula_NK : NK ;
+fun keulemmaksi_AdvK : AdvK ;
+fun keulemmas_AdvK : AdvK ;
+fun keulempaa_AdvK : AdvK ;
+fun keulempana_AdvK : AdvK ;
+fun keulimmainen_NK : NK ;
+fun kevennys_NK : NK ;
+fun keventya'_VK : VK ;
+fun keventa'a'_VK : VK ;
+fun keveta'_VK : VK ;
+fun keveys_NK : NK ;
+fun kevea'_AK : AK ;
+--+ fun kevea'sti_AdvK : AdvK ;
+fun kevyesti_AdvK : AdvK ;
+fun kevyt_NK : NK ;
+--+ fun kevytmielisesti_AdvK : AdvK ;
+fun keva'in_NK : NK ;
+fun keva'inen_AK : AK ;
+--+ fun keva'isesti_AdvK : AdvK ;
+fun keva'isin_AdvK : AdvK ;
+fun keva'istys_NK : NK ;
+fun keva'ista'a'_VK : VK ;
+--? fun keva't_NK : NK ;
+fun keva'taika_NK : NK ;
+fun keva'a'llinen_NK : NK ;
+fun keva'a'mma'ksi_AdvK : AdvK ;
+fun keva'a'mma'lle_AdvK : AdvK ;
+fun keva'a'mma'lla'_AdvK : AdvK ;
+fun keva'a'mma's_AdvK : AdvK ;
+fun keva'a'mpa'na'_AdvK : AdvK ;
+fun khaki_NK : NK ;
+fun khii_NK : NK ;
+fun khmer_NK : NK ;
+fun kibbutsi_NK : NK ;
+fun kide_NK : NK ;
+fun kidnapata_VK : VK ;
+fun kidnappaaja_NK : NK ;
+fun kidnappaus_NK : NK ;
+--? fun kidukset_NK : NK ;
+fun kiduttaa_VK : VK ;
+fun kiduttaja_NK : NK ;
+fun kidutus_NK : NK ;
+fun kiedonta_NK : NK ;
+fun kiehahdus_NK : NK ;
+fun kiehahtaa_VK : VK ;
+fun kiehauttaa_VK : VK ;
+fun kiehautus_NK : NK ;
+fun kiehkura_NK : NK ;
+fun kiehna'ta'_VK : VK ;
+fun kiehtoa_VK : VK ;
+fun kiehtova_AK : AK ;
+--+ fun kiehtovasti_AdvK : AdvK ;
+fun kiehtovuus_NK : NK ;
+fun kiehua_VK : VK ;
+fun kiehunta_NK : NK ;
+fun kiehuttaa_VK : VK ;
+fun kiehutus_NK : NK ;
+fun kieha'ta'_VK : VK ;
+fun kiekaista_VK : VK ;
+fun kiekaisu_NK : NK ;
+fun kiekaus_NK : NK ;
+fun kiekko_NK : NK ;
+fun kiekkoilija_NK : NK ;
+fun kiekkoilla_VK : VK ;
+fun kiekoton_NK : NK ;
+fun kiekua_VK : VK ;
+fun kiekuja_NK : NK ;
+fun kiekuna_NK : NK ;
+fun kiekura_NK : NK ;
+fun kiekurainen_NK : NK ;
+fun kieleke_NK : NK ;
+fun kielekkeinen_NK : NK ;
+fun kielellinen_AK : AK ;
+--+ fun kielellisesti_AdvK : AdvK ;
+fun kielenta'a'_VK : VK ;
+fun kieleva'_AK : AK ;
+--+ fun kieleva'sti_AdvK : AdvK ;
+fun kieli_NK : NK ;
+fun kielija'_NK : NK ;
+fun kielima'inen_NK : NK ;
+fun kielinen_NK : NK ;
+fun kielisyys_NK : NK ;
+fun kielia'_VK : VK ;
+fun kiellella'_VK : VK ;
+fun kielletty_NK : NK ;
+fun kielo_NK : NK ;
+fun kielteinen_AK : AK ;
+--+ fun kielteisesti_AdvK : AdvK ;
+fun kielteistya'_VK : VK ;
+fun kielteisyys_NK : NK ;
+fun kieltely_NK : NK ;
+fun kielto_NK : NK ;
+fun kielta'ja'_NK : NK ;
+fun kielta'ma'tta'_AdvK : AdvK ;
+fun kielta'ma'to'n_NK : NK ;
+fun kielta'va'_NK : NK ;
+fun kielta'ymyksellinen_NK : NK ;
+fun kielta'ymys_NK : NK ;
+fun kielta'ytyja'_NK : NK ;
+fun kielta'ytya'_VK : VK ;
+fun kielta'a'_VK : VK ;
+fun kiemura_NK : NK ;
+fun kiemurainen_NK : NK ;
+fun kiemurrella_VK : VK ;
+fun kiemurtaa_VK : VK ;
+fun kiemurtelu_NK : NK ;
+fun kiepahdus_NK : NK ;
+fun kiepahtaa_VK : VK ;
+fun kiepaus_NK : NK ;
+fun kiepauttaa_VK : VK ;
+fun kiepautus_NK : NK ;
+fun kieppeille_AdvK : AdvK ;
+fun kieppeilla'_AdvK : AdvK ;
+fun kieppeissa'_AdvK : AdvK ;
+fun kieppi_NK : NK ;
+fun kieppua_VK : VK ;
+fun kiepsahdella_VK : VK ;
+fun kiepsahdus_NK : NK ;
+fun kiepsahtaa_VK : VK ;
+fun kiepsaus_NK : NK ;
+fun kiepsauttaa_VK : VK ;
+fun kiepunta_NK : NK ;
+fun kieputella_VK : VK ;
+fun kieputtaa_VK : VK ;
+fun kierinta'_NK : NK ;
+fun kieriskella'_VK : VK ;
+fun kieritella'_VK : VK ;
+fun kieritta'a'_VK : VK ;
+fun kieritys_NK : NK ;
+fun kieria'_VK : VK ;
+fun kiero_AK : AK ;
+fun kieroilija_NK : NK ;
+fun kieroilla_VK : VK ;
+fun kieroilu_NK : NK ;
+fun kieroontua_VK : VK ;
+--+ fun kierosti_AdvK : AdvK ;
+fun kierous_NK : NK ;
+fun kierouttaa_VK : VK ;
+fun kieroutua_VK : VK ;
+fun kieroutuma_NK : NK ;
+fun kieroutuneisuus_NK : NK ;
+fun kierre_NK : NK ;
+fun kierrella'_VK : VK ;
+fun kierrin_NK : NK ;
+fun kierroksinen_NK : NK ;
+fun kierroksittain_AdvK : AdvK ;
+fun kierros_NK : NK ;
+fun kierrosaika_NK : NK ;
+fun kierryksiin_AdvK : AdvK ;
+fun kierryksissa'_AdvK : AdvK ;
+fun kierryksista'_AdvK : AdvK ;
+fun kierra'nta'_NK : NK ;
+fun kierra'tta'a'_VK : VK ;
+fun kierra'tys_NK : NK ;
+fun kierteellinen_NK : NK ;
+fun kierteinen_AK : AK ;
+--+ fun kierteisesti_AdvK : AdvK ;
+fun kierteisyys_NK : NK ;
+fun kierteitta'a'_VK : VK ;
+fun kierteitys_NK : NK ;
+fun kiertelema'to'n_NK : NK ;
+fun kierteleva'_NK : NK ;
+fun kiertelija'_NK : NK ;
+fun kiertely_NK : NK ;
+fun kierto_NK : NK ;
+fun kiertoaika_NK : NK ;
+fun kiertolaisuus_NK : NK ;
+fun kiertue_NK : NK ;
+fun kiertyma'_NK : NK ;
+fun kiertya'_VK : VK ;
+fun kierta'ja'_NK : NK ;
+fun kierta'ma'to'n_NK : NK ;
+fun kierta'a'_VK : VK ;
+fun kierukka_NK : NK ;
+fun kierukkainen_NK : NK ;
+fun kieryys_NK : NK ;
+fun kiera'_NK : NK ;
+fun kiera'hdella'_VK : VK ;
+fun kiera'hdys_NK : NK ;
+fun kiera'hta'a'_VK : VK ;
+fun kiera'ytta'a'_VK : VK ;
+fun kiesit_NK : NK ;
+fun kietaista_VK : VK ;
+fun kietaisu_NK : NK ;
+fun kietoa_VK : VK ;
+fun kietoontua_VK : VK ;
+fun kietouma_NK : NK ;
+fun kietoutua_VK : VK ;
+fun kietoutuma_NK : NK ;
+fun kieunta_NK : NK ;
+fun kievari_NK : NK ;
+fun kihahdus_NK : NK ;
+fun kihahtaa_1_VK : VK ;
+fun kihahtaa_2_VK : VK ;
+fun kihara_NK : NK ;
+fun kiharaan_AdvK : AdvK ;
+fun kiharainen_NK : NK ;
+fun kiharassa_AdvK : AdvK ;
+fun kiharrin_NK : NK ;
+fun kihartaa_VK : VK ;
+fun kihartua_VK : VK ;
+fun kiharuus_NK : NK ;
+fun kihaus_NK : NK ;
+fun kihdata_VK : VK ;
+fun kihelmo'ida'_VK : VK ;
+fun kihelmo'inti_NK : NK ;
+fun kiherrella'_VK : VK ;
+fun kiherrys_NK : NK ;
+fun kiherta'a'_VK : VK ;
+fun kihina'_NK : NK ;
+fun kihista'_VK : VK ;
+--? fun kihlajaiset_NK : NK ;
+fun kihlapari_NK : NK ;
+--? fun kihlat_NK : NK ;
+fun kihlata_VK : VK ;
+fun kihlattu_NK : NK ;
+fun kihlaus_NK : NK ;
+fun kihlausaika_NK : NK ;
+fun kihlautua_VK : VK ;
+fun kihloihin_AdvK : AdvK ;
+fun kihloissa_AdvK : AdvK ;
+fun kihnutella_VK : VK ;
+fun kihnuttaa_VK : VK ;
+fun kihnutus_NK : NK ;
+fun kiho_NK : NK ;
+fun kihokki_NK : NK ;
+fun kihota_VK : VK ;
+fun kihti_NK : NK ;
+fun kihu_NK : NK ;
+fun kihveli_NK : NK ;
+fun kii_AdvK : AdvK ;
+fun kiida'tta'a'_VK : VK ;
+fun kiihdyksiin_AdvK : AdvK ;
+fun kiihdyksissa'_AdvK : AdvK ;
+fun kiihdyksissa'a'n_AdvK : AdvK ;
+fun kiihdytin_NK : NK ;
+fun kiihdytta'a'_VK : VK ;
+fun kiihdytys_NK : NK ;
+fun kiihkeys_NK : NK ;
+fun kiihkea'_AK : AK ;
+--+ fun kiihkea'sti_AdvK : AdvK ;
+fun kiihko_NK : NK ;
+fun kiihkoilija_NK : NK ;
+fun kiihkoilla_VK : VK ;
+fun kiihkoilu_NK : NK ;
+fun kiihkoinen_NK : NK ;
+fun kiihkoisa_AK : AK ;
+--+ fun kiihkoisasti_AdvK : AdvK ;
+fun kiihkoisuus_NK : NK ;
+fun kiihkota_VK : VK ;
+fun kiihkoton_NK : NK ;
+fun kiihkottomasti_AdvK : AdvK ;
+fun kiihkottomuus_NK : NK ;
+fun kiihkoutua_VK : VK ;
+fun kiihoke_NK : NK ;
+fun kiihote_NK : NK ;
+fun kiihotin_NK : NK ;
+fun kiihottaa_VK : VK ;
+fun kiihottaja_NK : NK ;
+fun kiihottua_VK : VK ;
+fun kiihottuneisuus_NK : NK ;
+fun kiihottuvuus_NK : NK ;
+fun kiihotus_NK : NK ;
+fun kiihtymys_NK : NK ;
+fun kiihtyneisyys_NK : NK ;
+fun kiihtyvyys_NK : NK ;
+fun kiihtya'_VK : VK ;
+fun kiikaroida_VK : VK ;
+fun kiikarointi_NK : NK ;
+fun kiikastaa_VK : VK ;
+fun kiikissa'_AdvK : AdvK ;
+fun kiikista'_AdvK : AdvK ;
+fun kiikkeryys_NK : NK ;
+fun kiikkera'_NK : NK ;
+fun kiikkiin_AdvK : AdvK ;
+fun kiikku_NK : NK ;
+fun kiikkua_VK : VK ;
+fun kiikun_kaakun_AdvK : AdvK ;
+fun kiikutella_VK : VK ;
+fun kiikuttaa_VK : VK ;
+fun kiila_NK : NK ;
+fun kiilata_VK : VK ;
+fun kiilaus_NK : NK ;
+fun kiilautua_VK : VK ;
+fun kiilia'inen_NK : NK ;
+fun kiille_NK : NK ;
+fun kiillella'_VK : VK ;
+fun kiilloke_NK : NK ;
+fun kiillote_NK : NK ;
+fun kiillotin_NK : NK ;
+fun kiillottaa_VK : VK ;
+fun kiillottua_VK : VK ;
+fun kiillotus_NK : NK ;
+fun kiiltely_NK : NK ;
+fun kiilto_NK : NK ;
+fun kiiltoinen_NK : NK ;
+fun kiilta'vyys_NK : NK ;
+fun kiilta'va'_NK : NK ;
+fun kiilta'a'_VK : VK ;
+fun kiilu_NK : NK ;
+fun kiilua_VK : VK ;
+fun kiilukainen_NK : NK ;
+fun kiima_NK : NK ;
+fun kiima_aika_NK : NK ;
+fun kiimattomuus_NK : NK ;
+fun kiina_NK : NK ;
+fun kiinailla_VK : VK ;
+fun kiinata_VK : VK ;
+fun kiinne_NK : NK ;
+fun kiinnekohta_NK : NK ;
+fun kiinnemma'ksi_AdvK : AdvK ;
+fun kiinnemma's_AdvK : AdvK ;
+fun kiinnempa'na'_AdvK : AdvK ;
+fun kiinneta'_VK : VK ;
+fun kiinni_AdvK : AdvK ;
+fun kiinnikasvama_NK : NK ;
+fun kiinnike_NK : NK ;
+fun kiinnite_NK : NK ;
+fun kiinnitin_NK : NK ;
+fun kiinnitteinen_NK : NK ;
+fun kiinnittya'_VK : VK ;
+fun kiinnitta'ytya'_VK : VK ;
+fun kiinnitta'a'_VK : VK ;
+fun kiinnityksinen_NK : NK ;
+fun kiinnitys_NK : NK ;
+fun kiinnityskohta_NK : NK ;
+fun kiinnostaa_VK : VK ;
+fun kiinnostava_AK : AK ;
+--+ fun kiinnostavasti_AdvK : AdvK ;
+fun kiinnostavuus_NK : NK ;
+fun kiinnostua_VK : VK ;
+fun kiinnostus_NK : NK ;
+fun kiinteisto'_NK : NK ;
+fun kiinteys_NK : NK ;
+fun kiinteytta'a'_VK : VK ;
+fun kiinteytya'_VK : VK ;
+fun kiintea'_AK : AK ;
+--+ fun kiintea'sti_AdvK : AdvK ;
+fun kiintio'_NK : NK ;
+fun kiintio'ida'_VK : VK ;
+fun kiintio'inti_NK : NK ;
+fun kiintoisa_AK : AK ;
+--+ fun kiintoisasti_AdvK : AdvK ;
+fun kiintoisuus_NK : NK ;
+fun kiintonainen_NK : NK ;
+fun kiintymys_NK : NK ;
+fun kiintyneisyys_NK : NK ;
+fun kiintya'_VK : VK ;
+fun kiipeilija'_NK : NK ;
+fun kiipeilla'_VK : VK ;
+fun kiipeily_NK : NK ;
+fun kiipija'_NK : NK ;
+fun kiire_1_AK : AK ;
+fun kiire_2_AK : AK ;
+fun kiireellinen_AK : AK ;
+--+ fun kiireellisesti_AdvK : AdvK ;
+fun kiireellisyys_NK : NK ;
+--+ fun kiireesti_AdvK : AdvK ;
+fun kiireetto'myys_NK : NK ;
+fun kiireetto'ma'sti_AdvK : AdvK ;
+fun kiireeto'n_NK : NK ;
+fun kiirehtia'_VK : VK ;
+fun kiirehta'a'_VK : VK ;
+fun kiireimmiten_AdvK : AdvK ;
+fun kiireinen_AK : AK ;
+--+ fun kiireisesti_AdvK : AdvK ;
+fun kiireys_NK : NK ;
+fun kiiri_NK : NK ;
+fun kiiria'_VK : VK ;
+fun kiiru_NK : NK ;
+fun kiiruhtaa_VK : VK ;
+fun kiiruna_NK : NK ;
+fun kiiruusti_AdvK : AdvK ;
+fun kiiski_NK : NK ;
+fun kiisseli_NK : NK ;
+fun kiista_NK : NK ;
+fun kiistainen_NK : NK ;
+fun kiistaton_NK : NK ;
+fun kiistattomasti_AdvK : AdvK ;
+fun kiistattomuus_NK : NK ;
+fun kiistella'_VK : VK ;
+fun kiistely_NK : NK ;
+fun kiista'ma'tta'_AdvK : AdvK ;
+fun kiista'ma'tto'myys_NK : NK ;
+fun kiista'ma'tto'ma'sti_AdvK : AdvK ;
+fun kiista'ma'to'n_NK : NK ;
+fun kiista'a'_VK : VK ;
+fun kiisu_NK : NK ;
+fun kiitella'_VK : VK ;
+fun kiitetta'vyys_NK : NK ;
+fun kiitetta'va'_AK : AK ;
+--+ fun kiitetta'va'sti_AdvK : AdvK ;
+fun kiito_NK : NK ;
+fun kiitollinen_NK : NK ;
+fun kiitollisuus_NK : NK ;
+fun kiitos_NK : NK ;
+fun kiitti_AdvK : AdvK ;
+--? fun kiittimet_NK : NK ;
+fun kiitta'ja'_NK : NK ;
+fun kiitta'ma'tto'myys_NK : NK ;
+fun kiitta'ma'tto'ma'sti_AdvK : AdvK ;
+fun kiitta'ma'to'n_NK : NK ;
+fun kiitta'a'_VK : VK ;
+fun kiita'ja'_NK : NK ;
+fun kiita'ja'inen_NK : NK ;
+fun kiita'a'_VK : VK ;
+--+ fun kiivaasti_AdvK : AdvK ;
+fun kiivailija_NK : NK ;
+fun kiivailla_VK : VK ;
+fun kiivailu_NK : NK ;
+fun kiivas_AK : AK ;
+fun kiivastelija_NK : NK ;
+fun kiivastella_VK : VK ;
+fun kiivastua_VK : VK ;
+fun kiivastuttaa_VK : VK ;
+fun kiivaus_NK : NK ;
+fun kiiveta'_VK : VK ;
+fun kiivi_NK : NK ;
+fun kikatella_VK : VK ;
+fun kikattaa_VK : VK ;
+fun kikatus_NK : NK ;
+fun kikka_NK : NK ;
+fun kikkailla_VK : VK ;
+fun kikkailu_NK : NK ;
+fun kikkara_1_NK : NK ;
+fun kikkara_2_NK : NK ;
+fun kikkeli_NK : NK ;
+fun kiksauttaa_VK : VK ;
+fun kikuju_NK : NK ;
+fun kilahdella_VK : VK ;
+fun kilahdus_NK : NK ;
+fun kilahtaa_VK : VK ;
+fun kilaus_NK : NK ;
+fun kilauttaa_VK : VK ;
+fun kili_NK : NK ;
+fun kiliasmi_NK : NK ;
+fun kiliasti_NK : NK ;
+fun kiliastinen_NK : NK ;
+fun kilina'_NK : NK ;
+fun kilistella'_VK : VK ;
+fun kilista'_VK : VK ;
+fun kilista'a'_VK : VK ;
+fun kilisytta'a'_VK : VK ;
+fun kiljahdella_VK : VK ;
+fun kiljahdus_NK : NK ;
+fun kiljahtaa_VK : VK ;
+fun kiljaista_VK : VK ;
+fun kiljaisu_NK : NK ;
+fun kiljaus_NK : NK ;
+fun kiljoona_NK : NK ;
+fun kilju_NK : NK ;
+fun kiljua_VK : VK ;
+fun kiljunta_NK : NK ;
+fun kiljuva_NK : NK ;
+fun kilkattaa_VK : VK ;
+fun kilkatus_NK : NK ;
+fun kilke_NK : NK ;
+fun kilkka_NK : NK ;
+fun kilkkaa_VK : VK ;
+fun kilkki_NK : NK ;
+fun kilkuttaa_VK : VK ;
+fun kilkutus_NK : NK ;
+fun killilla'a'n_AdvK : AdvK ;
+fun killinki_NK : NK ;
+fun killistella'_VK : VK ;
+fun killitella'_VK : VK ;
+fun killitta'a'_VK : VK ;
+fun killua_VK : VK ;
+fun killutin_NK : NK ;
+fun kilo_1_NK : NK ;
+fun kilo_2_NK : NK ;
+fun kiloinen_NK : NK ;
+fun kiloittain_AdvK : AdvK ;
+fun kilometrinnielija'_NK : NK ;
+fun kilottaa_VK : VK ;
+fun kilpa_NK : NK ;
+fun kilpaa_AdvK : AdvK ;
+fun kilpa_ammunta_NK : NK ;
+fun kilpailija_NK : NK ;
+fun kilpailla_VK : VK ;
+fun kilpailu_NK : NK ;
+fun kilpailuaika_NK : NK ;
+fun kilpailullinen_NK : NK ;
+fun kilpailuttaa_VK : VK ;
+fun kilpalaulanta_NK : NK ;
+fun kilpasilla_AdvK : AdvK ;
+fun kilpasille_AdvK : AdvK ;
+fun kilpi_NK : NK ;
+fun kilpistya'_VK : VK ;
+fun kilpukka_NK : NK ;
+fun kilsa_NK : NK ;
+fun kilta_NK : NK ;
+fun kiltisti_AdvK : AdvK ;
+fun kiltsi_NK : NK ;
+fun kiltteys_NK : NK ;
+fun kiltti_1_NK : NK ;
+fun kiltti_2_NK : NK ;
+fun kilttiys_NK : NK ;
+fun kilu_NK : NK ;
+fun kilvan_AdvK : AdvK ;
+fun kilvaten_AdvK : AdvK ;
+fun kilvoitella_VK : VK ;
+fun kilvoittelija_NK : NK ;
+fun kilvoittelu_NK : NK ;
+fun kilvoitus_NK : NK ;
+fun kimaira_NK : NK ;
+fun kimakasti_AdvK : AdvK ;
+fun kimakka_NK : NK ;
+fun kimakkuus_NK : NK ;
+fun kimalainen_NK : NK ;
+fun kimalle_NK : NK ;
+fun kimallella_VK : VK ;
+fun kimallus_NK : NK ;
+fun kimaltaa_VK : VK ;
+fun kimalteinen_NK : NK ;
+fun kimaltelu_NK : NK ;
+fun kimara_NK : NK ;
+fun kimbri_NK : NK ;
+fun kimeys_NK : NK ;
+fun kimea'_AK : AK ;
+--+ fun kimea'sti_AdvK : AdvK ;
+fun kimitta'a'_VK : VK ;
+fun kimitys_NK : NK ;
+fun kimma_NK : NK ;
+fun kimmahdus_NK : NK ;
+fun kimmahduttaa_VK : VK ;
+fun kimmahtaa_VK : VK ;
+fun kimmastua_VK : VK ;
+fun kimmastus_NK : NK ;
+fun kimmastuttaa_VK : VK ;
+fun kimmauttaa_VK : VK ;
+fun kimmelle_NK : NK ;
+fun kimmellella'_VK : VK ;
+fun kimmellys_NK : NK ;
+fun kimmeltely_NK : NK ;
+fun kimmelta'a'_VK : VK ;
+fun kimmoinen_NK : NK ;
+fun kimmoisa_AK : AK ;
+--+ fun kimmoisasti_AdvK : AdvK ;
+fun kimmoisuus_NK : NK ;
+fun kimmoke_NK : NK ;
+fun kimmokerroin_NK : NK ;
+fun kimmoraja_NK : NK ;
+fun kimmota_VK : VK ;
+fun kimmoton_NK : NK ;
+fun kimmottomuus_NK : NK ;
+fun kimnaasi_NK : NK ;
+fun kimo_NK : NK ;
+fun kimono_NK : NK ;
+fun kimpaannus_NK : NK ;
+fun kimpaantua_VK : VK ;
+fun kimpale_NK : NK ;
+fun kimpi_NK : NK ;
+fun kimpoilla_VK : VK ;
+fun kimppa_NK : NK ;
+fun kimppu_NK : NK ;
+fun kimppuun_AdvK : AdvK ;
+fun kimppuuntua_VK : VK ;
+--? fun kimpsut_NK : NK ;
+fun kimpuittain_AdvK : AdvK ;
+fun kimpussa_AdvK : AdvK ;
+fun kimpusta_AdvK : AdvK ;
+fun kimputtaa_VK : VK ;
+fun kimputus_NK : NK ;
+fun kimro'o'kki_NK : NK ;
+fun kimuli_NK : NK ;
+fun kimurantti_NK : NK ;
+fun kina_1_NK : NK ;
+fun kina_2_NK : NK ;
+fun kinailla_VK : VK ;
+fun kinailu_NK : NK ;
+fun kinastella_VK : VK ;
+fun kinastelu_NK : NK ;
+fun kinata_VK : VK ;
+fun kineettinen_NK : NK ;
+fun kinemaattinen_NK : NK ;
+fun kinematiikka_NK : NK ;
+fun kinesteettinen_NK : NK ;
+fun kinetiikka_NK : NK ;
+fun kingi_NK : NK ;
+fun kiniini_NK : NK ;
+fun kinkata_VK : VK ;
+--? fun kinkerit_NK : NK ;
+fun kinkkinen_NK : NK ;
+fun kinkku_NK : NK ;
+fun kinnas_NK : NK ;
+fun kinner_NK : NK ;
+fun kino_NK : NK ;
+fun kinos_NK : NK ;
+fun kinostaa_VK : VK ;
+fun kinostua_VK : VK ;
+fun kintere_NK : NK ;
+fun kintereille_AdvK : AdvK ;
+fun kintereilla'_AdvK : AdvK ;
+fun kintereilta'_AdvK : AdvK ;
+fun kinttu_NK : NK ;
+fun kinttuinen_NK : NK ;
+fun kinua_VK : VK ;
+fun kinuski_NK : NK ;
+fun kinuta_VK : VK ;
+fun kioski_NK : NK ;
+fun kipaista_VK : VK ;
+fun kipaisu_NK : NK ;
+fun kipakasti_AdvK : AdvK ;
+fun kipakka_NK : NK ;
+fun kipakkuus_NK : NK ;
+fun kipale_NK : NK ;
+fun kipata_VK : VK ;
+fun kipeno'ida'_VK : VK ;
+fun kipertya'_VK : VK ;
+fun kiperta'a'_VK : VK ;
+fun kiperyys_NK : NK ;
+fun kipera'_AK : AK ;
+--+ fun kipera'sti_AdvK : AdvK ;
+fun kipeys_NK : NK ;
+fun kipeytta'a'_VK : VK ;
+fun kipeytya'_VK : VK ;
+fun kipea'_AK : AK ;
+--+ fun kipea'sti_AdvK : AdvK ;
+fun kipin_kapin_AdvK : AdvK ;
+fun kipina'_NK : NK ;
+fun kipino'ida'_VK : VK ;
+fun kipino'inti_NK : NK ;
+fun kipitella'_VK : VK ;
+fun kipitta'a'_VK : VK ;
+fun kipollinen_NK : NK ;
+fun kippari_NK : NK ;
+fun kipparoida_VK : VK ;
+fun kippi_NK : NK ;
+fun kippis_AdvK : AdvK ;
+fun kippo_NK : NK ;
+fun kippura_NK : NK ;
+fun kippuraan_AdvK : AdvK ;
+fun kippurainen_NK : NK ;
+fun kippurassa_AdvK : AdvK ;
+fun kipristella'_VK : VK ;
+fun kipristya'_VK : VK ;
+fun kiprista'a'_VK : VK ;
+fun kipsa_NK : NK ;
+fun kipsaantua_VK : VK ;
+fun kipsata_VK : VK ;
+fun kipsaus_NK : NK ;
+fun kipsi_NK : NK ;
+fun kipsinen_NK : NK ;
+fun kipu_NK : NK ;
+fun kipuilla_VK : VK ;
+fun kipuna_NK : NK ;
+fun kipunoida_VK : VK ;
+fun kirahdus_NK : NK ;
+fun kirahtaa_VK : VK ;
+fun kirahvi_NK : NK ;
+fun kiramo_NK : NK ;
+fun kireta'_VK : VK ;
+fun kireys_NK : NK ;
+fun kirea'_AK : AK ;
+fun kirea'lle_AdvK : AdvK ;
+fun kirea'lla'_AdvK : AdvK ;
+fun kirea'pipoinen_NK : NK ;
+fun kirea'ssa'_AdvK : AdvK ;
+--+ fun kirea'sti_AdvK : AdvK ;
+fun kirgiisi_NK : NK ;
+fun kiri_NK : NK ;
+fun kirimoija_NK : NK ;
+fun kiristeinen_NK : NK ;
+fun kiristella'_VK : VK ;
+fun kiristely_NK : NK ;
+fun kiristin_NK : NK ;
+fun kiristyksissa'_AdvK : AdvK ;
+fun kiristys_NK : NK ;
+fun kiristya'_VK : VK ;
+fun kirista'ja'_NK : NK ;
+fun kirista'a'_VK : VK ;
+fun kiritta'ja'_NK : NK ;
+fun kiritta'a'_VK : VK ;
+fun kiria'_VK : VK ;
+fun kirja_NK : NK ;
+fun kirjaamo_NK : NK ;
+fun kirjailija_NK : NK ;
+fun kirjailla_VK : VK ;
+fun kirjailu_NK : NK ;
+fun kirjaimelleen_AdvK : AdvK ;
+fun kirjaimellinen_AK : AK ;
+--+ fun kirjaimellisesti_AdvK : AdvK ;
+fun kirjaiminen_NK : NK ;
+fun kirjaimisto_NK : NK ;
+fun kirjain_NK : NK ;
+fun kirjainkoko_NK : NK ;
+fun kirjake_NK : NK ;
+fun kirjallinen_AK : AK ;
+--+ fun kirjallisesti_AdvK : AdvK ;
+fun kirjallisuus_NK : NK ;
+fun kirjanen_NK : NK ;
+fun kirjanpidollinen_AK : AK ;
+--+ fun kirjanpidollisesti_AdvK : AdvK ;
+fun kirjasin_NK : NK ;
+fun kirjasinkoko_NK : NK ;
+fun kirjasto_NK : NK ;
+fun kirjata_VK : VK ;
+fun kirjaus_NK : NK ;
+fun kirjauttaa_VK : VK ;
+fun kirjava_AK : AK ;
+--+ fun kirjavasti_AdvK : AdvK ;
+fun kirjavoida_VK : VK ;
+fun kirjavoittaa_VK : VK ;
+fun kirjavoitua_VK : VK ;
+fun kirjavuus_NK : NK ;
+fun kirje_NK : NK ;
+fun kirjeellinen_AK : AK ;
+--+ fun kirjeellisesti_AdvK : AdvK ;
+fun kirjeitse_AdvK : AdvK ;
+fun kirjelma'_NK : NK ;
+fun kirjelmo'ida'_VK : VK ;
+fun kirjelmo'inti_NK : NK ;
+fun kirjo_NK : NK ;
+fun kirjoa_VK : VK ;
+fun kirjoinen_NK : NK ;
+fun kirjoite_NK : NK ;
+fun kirjoitella_VK : VK ;
+fun kirjoitelma_NK : NK ;
+fun kirjoitin_NK : NK ;
+fun kirjoittaa_VK : VK ;
+fun kirjoittaja_NK : NK ;
+fun kirjoittamaton_NK : NK ;
+fun kirjoittautua_VK : VK ;
+fun kirjoittelu_NK : NK ;
+fun kirjoittua_VK : VK ;
+fun kirjoitus_NK : NK ;
+fun kirjoituttaa_VK : VK ;
+fun kirjomus_NK : NK ;
+fun kirjonta_NK : NK ;
+fun kirjontainen_NK : NK ;
+fun kirjuri_NK : NK ;
+fun kirkaista_VK : VK ;
+fun kirkaisu_NK : NK ;
+fun kirkas_AK : AK ;
+fun kirkastaa_VK : VK ;
+fun kirkaste_NK : NK ;
+fun kirkastua_VK : VK ;
+fun kirkastus_NK : NK ;
+fun kirkastuttaa_VK : VK ;
+fun kirkasvaloinen_NK : NK ;
+--+ fun kirkkaasti_AdvK : AdvK ;
+fun kirkkaus_NK : NK ;
+fun kirkko_NK : NK ;
+fun kirkkoaika_NK : NK ;
+fun kirkollinen_AK : AK ;
+--+ fun kirkollisesti_AdvK : AdvK ;
+fun kirkollisuus_NK : NK ;
+fun kirkonaika_NK : NK ;
+fun kirkua_VK : VK ;
+fun kirkuna_NK : NK ;
+fun kirkuva_NK : NK ;
+fun kirmailla_VK : VK ;
+fun kirmaista_VK : VK ;
+fun kirmata_VK : VK ;
+fun kirnu_NK : NK ;
+fun kirnuta_VK : VK ;
+fun kirnuuntua_VK : VK ;
+fun kirnuutua_VK : VK ;
+fun kiro_NK : NK ;
+fun kiroilija_NK : NK ;
+fun kiroilla_VK : VK ;
+fun kiroilu_NK : NK ;
+fun kiroiluttaa_VK : VK ;
+fun kirota_VK : VK ;
+fun kirottu_NK : NK ;
+fun kirotusti_AdvK : AdvK ;
+fun kirous_NK : NK ;
+fun kirpaista_VK : VK ;
+fun kirpaisu_NK : NK ;
+fun kirpakka_NK : NK ;
+fun kirpeys_NK : NK ;
+fun kirpeytta'a'_VK : VK ;
+fun kirpeytya'_VK : VK ;
+fun kirpea'_AK : AK ;
+--+ fun kirpea'sti_AdvK : AdvK ;
+fun kirppa_NK : NK ;
+fun kirppari_NK : NK ;
+fun kirppis_NK : NK ;
+fun kirppu_NK : NK ;
+fun kirroosi_NK : NK ;
+fun kirroottinen_NK : NK ;
+fun kirsi_NK : NK ;
+fun kirsikka_NK : NK ;
+fun kirskahdus_NK : NK ;
+fun kirskahtaa_VK : VK ;
+fun kirskaus_NK : NK ;
+fun kirskauttaa_VK : VK ;
+fun kirskua_VK : VK ;
+fun kirskuna_NK : NK ;
+fun kirskunta_NK : NK ;
+fun kirskuttaa_VK : VK ;
+fun kirskutus_NK : NK ;
+fun kirstu_NK : NK ;
+fun kirsu_NK : NK ;
+fun kirurgi_NK : NK ;
+fun kirurgia_NK : NK ;
+fun kirurginen_AK : AK ;
+--+ fun kirurgisesti_AdvK : AdvK ;
+fun kirva_NK : NK ;
+fun kirveli_NK : NK ;
+fun kirvellys_NK : NK ;
+fun kirvella'_VK : VK ;
+fun kirvelta'a'_VK : VK ;
+fun kirvely_NK : NK ;
+fun kirves_NK : NK ;
+fun kirvinen_NK : NK ;
+fun kirvoittaa_VK : VK ;
+fun kirvota_VK : VK ;
+fun kis_AdvK : AdvK ;
+fun kisa_NK : NK ;
+fun kisailija_NK : NK ;
+fun kisailla_VK : VK ;
+fun kisailu_NK : NK ;
+fun kisata_VK : VK ;
+fun kiska_NK : NK ;
+fun kiskaista_VK : VK ;
+fun kiskaisu_NK : NK ;
+fun kisko_NK : NK ;
+fun kiskoa_VK : VK ;
+fun kiskoinen_1_NK : NK ;
+fun kiskoinen_2_NK : NK ;
+fun kiskoja_NK : NK ;
+fun kiskonta_NK : NK ;
+fun kiskotella_VK : VK ;
+fun kiskottaa_1_VK : VK ;
+fun kiskottaa_2_VK : VK ;
+fun kiskottelu_NK : NK ;
+fun kiskotus_NK : NK ;
+fun kiskoutua_VK : VK ;
+fun kismitta'a'_VK : VK ;
+fun kissa_NK : NK ;
+fun kissanha'nna'nveto_NK : NK ;
+fun kissus_NK : NK ;
+fun kisu_NK : NK ;
+fun kita_NK : NK ;
+fun kitara_NK : NK ;
+fun kitata_VK : VK ;
+fun kiteeto'n_NK : NK ;
+fun kiteinen_NK : NK ;
+fun kiteisyys_NK : NK ;
+fun kiteyma'_NK : NK ;
+fun kiteytta'a'_VK : VK ;
+fun kiteytyma'_NK : NK ;
+fun kiteytys_NK : NK ;
+fun kiteytya'_VK : VK ;
+fun kitiini_NK : NK ;
+fun kitina'_NK : NK ;
+fun kitistya'_VK : VK ;
+fun kitista'_VK : VK ;
+fun kitka_NK : NK ;
+fun kitkainen_NK : NK ;
+fun kitkakerroin_NK : NK ;
+fun kitkaton_NK : NK ;
+fun kitkattomasti_AdvK : AdvK ;
+fun kitkenta'_NK : NK ;
+fun kitkeryys_NK : NK ;
+fun kitkera'_AK : AK ;
+--+ fun kitkera'sti_AdvK : AdvK ;
+fun kitkero'_NK : NK ;
+fun kitkero'itta'a'_VK : VK ;
+fun kitkero'itya'_VK : VK ;
+fun kitkea'_VK : VK ;
+fun kitku_NK : NK ;
+fun kitkutella_VK : VK ;
+fun kitkuttaa_VK : VK ;
+fun kitkutus_NK : NK ;
+--+ fun kitsaasti_AdvK : AdvK ;
+fun kitsas_AK : AK ;
+fun kitsastella_VK : VK ;
+fun kitsastelu_NK : NK ;
+fun kitsaus_NK : NK ;
+fun kitsch_NK : NK ;
+fun kitsi_1_NK : NK ;
+fun kitsi_2_NK : NK ;
+fun kittaus_NK : NK ;
+fun kitti_NK : NK ;
+fun kitua_VK : VK ;
+fun kitukuusi_NK : NK ;
+--+ fun kituliaasti_AdvK : AdvK ;
+fun kituliaisuus_NK : NK ;
+fun kitulias_AK : AK ;
+fun kitupiikki_NK : NK ;
+--? fun kituset_NK : NK ;
+fun kituuttaa_VK : VK ;
+fun kiuas_NK : NK ;
+fun kiukku_NK : NK ;
+fun kiukkuilla_VK : VK ;
+fun kiukkuinen_AK : AK ;
+--+ fun kiukkuisesti_AdvK : AdvK ;
+fun kiukuissaan_AdvK : AdvK ;
+fun kiukustua_VK : VK ;
+fun kiukutella_VK : VK ;
+fun kiukuttaa_VK : VK ;
+fun kiukuttelija_NK : NK ;
+fun kiukuttelu_NK : NK ;
+fun kiulu_NK : NK ;
+fun kiulukka_NK : NK ;
+fun kiuru_NK : NK ;
+fun kiusa_NK : NK ;
+fun kiusaaja_NK : NK ;
+fun kiusaantua_VK : VK ;
+fun kiusallinen_AK : AK ;
+--+ fun kiusallisesti_AdvK : AdvK ;
+fun kiusallisuus_NK : NK ;
+fun kiusata_VK : VK ;
+fun kiusaus_NK : NK ;
+fun kiusoitella_VK : VK ;
+fun kiusoittelu_NK : NK ;
+fun kiva_AK : AK ;
+fun kivahdus_NK : NK ;
+fun kivahtaa_VK : VK ;
+--+ fun kivasti_AdvK : AdvK ;
+fun kivelio'_NK : NK ;
+fun kivellinen_NK : NK ;
+fun kivenhioja_NK : NK ;
+fun kivennuoliainen_NK : NK ;
+fun kivenna'inen_NK : NK ;
+fun kivertya'_VK : VK ;
+fun kiverta'a'_VK : VK ;
+fun kiveryys_NK : NK ;
+fun kivera'_AK : AK ;
+--+ fun kivera'sti_AdvK : AdvK ;
+fun kives_NK : NK ;
+fun kivesta'a'_VK : VK ;
+fun kivettyma'_NK : NK ;
+fun kivettyneisyys_NK : NK ;
+fun kivettya'_VK : VK ;
+fun kivetta'a'_VK : VK ;
+fun kivetys_NK : NK ;
+fun kiveta'_VK : VK ;
+fun kiveyma'_NK : NK ;
+fun kiveys_NK : NK ;
+fun kiveytyma'_NK : NK ;
+fun kivi_NK : NK ;
+fun kiwi_NK : NK ;
+fun kivikko_NK : NK ;
+fun kivikkoinen_NK : NK ;
+fun kivikkoisuus_NK : NK ;
+fun kivinen_NK : NK ;
+fun kivipiira_NK : NK ;
+fun kivistys_NK : NK ;
+fun kivista'a'_VK : VK ;
+fun kivisyys_NK : NK ;
+fun kivitta'a'_VK : VK ;
+fun kivitys_NK : NK ;
+--+ fun kivuliaasti_AdvK : AdvK ;
+fun kivulias_AK : AK ;
+fun kivullinen_NK : NK ;
+fun kivulloinen_NK : NK ;
+fun kivulloisuus_NK : NK ;
+fun kivuta_VK : VK ;
+fun kivuton_NK : NK ;
+fun kivuttomasti_AdvK : AdvK ;
+fun kivuttomuus_NK : NK ;
+fun kiva'a'ri_NK : NK ;
+fun klaani_NK : NK ;
+fun klaarata_VK : VK ;
+fun klaava_NK : NK ;
+fun klaavi_NK : NK ;
+fun klaffi_NK : NK ;
+fun klahvi_NK : NK ;
+fun klamydia_NK : NK ;
+fun klani_NK : NK ;
+fun klapi_NK : NK ;
+fun klappi_NK : NK ;
+fun klarinetisti_NK : NK ;
+fun klarinetti_NK : NK ;
+fun klarkia_NK : NK ;
+fun klassifikaatio_NK : NK ;
+fun klassifioida_VK : VK ;
+fun klassifiointi_NK : NK ;
+fun klassikko_NK : NK ;
+fun klassillinen_NK : NK ;
+fun klassinen_AK : AK ;
+--+ fun klassisesti_AdvK : AdvK ;
+fun klassisismi_NK : NK ;
+fun klassisistinen_NK : NK ;
+fun klassisuus_NK : NK ;
+fun klaustrofobia_NK : NK ;
+fun klausuuli_NK : NK ;
+fun klematis_NK : NK ;
+fun klementiini_NK : NK ;
+fun klemmari_NK : NK ;
+fun kleptomaani_NK : NK ;
+fun kleptomaaninen_NK : NK ;
+fun kleptomania_NK : NK ;
+fun kliimaksi_NK : NK ;
+fun kliinikko_NK : NK ;
+fun kliininen_AK : AK ;
+--+ fun kliinisesti_AdvK : AdvK ;
+fun kliivia_NK : NK ;
+fun klikata_VK : VK ;
+fun klikki_NK : NK ;
+fun klikkiytya'_VK : VK ;
+fun klimakteerinen_NK : NK ;
+fun klimakterium_NK : NK ;
+fun klimatologia_NK : NK ;
+fun klimppi_NK : NK ;
+fun klimppiytya'_VK : VK ;
+fun klinikka_NK : NK ;
+fun klinkkeri_NK : NK ;
+fun klipsi_NK : NK ;
+fun klisee_NK : NK ;
+fun kliseytya'_VK : VK ;
+fun klitoris_NK : NK ;
+fun kloaakki_NK : NK ;
+fun kloonata_VK : VK ;
+fun kloonaus_NK : NK ;
+fun klooni_NK : NK ;
+fun kloorata_VK : VK ;
+fun klooraus_NK : NK ;
+fun kloori_NK : NK ;
+fun kloorittaa_VK : VK ;
+fun klooritus_NK : NK ;
+fun klootti_NK : NK ;
+fun kloppi_NK : NK ;
+fun klorofylli_NK : NK ;
+fun klosetti_NK : NK ;
+fun klovni_NK : NK ;
+fun klubi_NK : NK ;
+fun klusteri_NK : NK ;
+fun kluutti_NK : NK ;
+fun klo'ntti_NK : NK ;
+fun knalli_NK : NK ;
+fun knesset_NK : NK ;
+fun knock_out_NK : NK ;
+fun knoppi_NK : NK ;
+fun knoppologia_NK : NK ;
+fun knorri_NK : NK ;
+fun know_how_NK : NK ;
+fun koagulaatio_NK : NK ;
+fun koaguloida_VK : VK ;
+fun koagulointi_NK : NK ;
+fun koaguloitua_VK : VK ;
+fun koaksiaalinen_NK : NK ;
+fun koala_NK : NK ;
+fun koalitio_NK : NK ;
+fun koboltti_NK : NK ;
+fun kobra_NK : NK ;
+fun kodeiini_NK : NK ;
+fun kodifikaatio_NK : NK ;
+fun kodifioida_VK : VK ;
+fun kodifiointi_NK : NK ;
+fun kodikas_AK : AK ;
+--+ fun kodikkaasti_AdvK : AdvK ;
+fun kodikkuus_NK : NK ;
+fun koditon_NK : NK ;
+fun kodittomuus_NK : NK ;
+fun koe_NK : NK ;
+fun koeaika_NK : NK ;
+fun koeffisientti_NK : NK ;
+fun koestaa_VK : VK ;
+fun koestus_NK : NK ;
+fun koetella_VK : VK ;
+fun koetin_NK : NK ;
+fun koettaa_VK : VK ;
+fun koetteeksi_AdvK : AdvK ;
+fun koetteella_AdvK : AdvK ;
+fun koetteelle_AdvK : AdvK ;
+fun koetteilla_AdvK : AdvK ;
+fun koetteille_AdvK : AdvK ;
+fun koettelemus_NK : NK ;
+fun koettelu_NK : NK ;
+fun koetus_NK : NK ;
+fun kofeiini_NK : NK ;
+fun kognitiivinen_NK : NK ;
+fun kognitio_NK : NK ;
+fun kohahdella_VK : VK ;
+fun kohahdus_NK : NK ;
+fun kohahduttaa_VK : VK ;
+fun kohahtaa_VK : VK ;
+fun kohaus_NK : NK ;
+fun kohautella_VK : VK ;
+fun kohauttaa_1_VK : VK ;
+fun kohauttaa_2_VK : VK ;
+fun kohautus_NK : NK ;
+fun kohdakkain_AdvK : AdvK ;
+fun kohdakkoin_AdvK : AdvK ;
+fun kohdata_VK : VK ;
+fun kohdatusten_AdvK : AdvK ;
+fun kohde_NK : NK ;
+fun kohdella_VK : VK ;
+fun kohden_AdvK : AdvK ;
+fun kohdentaa_VK : VK ;
+fun kohdentua_VK : VK ;
+fun kohdistaa_VK : VK ;
+fun kohdistin_NK : NK ;
+fun kohdistua_VK : VK ;
+fun kohdistus_NK : NK ;
+fun kohdittain_AdvK : AdvK ;
+fun kohdittainen_NK : NK ;
+fun koheesio_NK : NK ;
+fun koheli_NK : NK ;
+fun kohelo_NK : NK ;
+fun koheloida_VK : VK ;
+fun koheltaa_VK : VK ;
+fun kohennella_VK : VK ;
+fun kohennus_NK : NK ;
+fun kohentaa_VK : VK ;
+fun kohentua_VK : VK ;
+fun koherenssi_NK : NK ;
+fun koherentti_NK : NK ;
+fun koheta_VK : VK ;
+fun kohina_NK : NK ;
+fun kohista_VK : VK ;
+fun kohmeeseen_AdvK : AdvK ;
+fun kohmeessa_AdvK : AdvK ;
+fun kohmeinen_NK : NK ;
+fun kohmelo_NK : NK ;
+fun kohmeloinen_NK : NK ;
+fun kohmettaa_VK : VK ;
+fun kohmettua_VK : VK ;
+fun kohmetus_NK : NK ;
+fun koho_NK : NK ;
+fun kohoama_NK : NK ;
+fun kohoilla_VK : VK ;
+fun kohokas_NK : NK ;
+fun kohokki_NK : NK ;
+fun kohokohta_NK : NK ;
+fun koholla_AdvK : AdvK ;
+fun kohollaan_AdvK : AdvK ;
+fun koholle_AdvK : AdvK ;
+fun koholleen_AdvK : AdvK ;
+fun kohortti_NK : NK ;
+fun kohota_VK : VK ;
+fun kohottaa_VK : VK ;
+fun kohottaja_NK : NK ;
+fun kohottautua_VK : VK ;
+fun kohotus_NK : NK ;
+fun kohouma_NK : NK ;
+fun kohoutuma_NK : NK ;
+fun kohta_1_NK : NK ;
+fun kohta_2_AdvK : AdvK ;
+fun kohtaan_AdvK : AdvK ;
+fun kohtainen_AK : AK ;
+--+ fun kohtaisesti_AdvK : AdvK ;
+fun kohtaisuus_NK : NK ;
+--+ fun kohtalaisesti_AdvK : AdvK ;
+fun kohtalo_NK : NK ;
+fun kohtalokas_AK : AK ;
+--+ fun kohtalokkaasti_AdvK : AdvK ;
+fun kohtalokkuus_NK : NK ;
+fun kohtalotar_NK : NK ;
+fun kohtapuoliin_AdvK : AdvK ;
+fun kohtapuolin_AdvK : AdvK ;
+fun kohtauksittain_AdvK : AdvK ;
+fun kohtauksittainen_NK : NK ;
+fun kohtaus_NK : NK ;
+--+ fun kohteliaasti_AdvK : AdvK ;
+fun kohteliaisuus_NK : NK ;
+fun kohtelias_AK : AK ;
+fun kohtelu_NK : NK ;
+fun kohti_AdvK : AdvK ;
+fun kohtio_NK : NK ;
+fun kohtu_NK : NK ;
+fun kohtuullinen_AK : AK ;
+--+ fun kohtuullisesti_AdvK : AdvK ;
+fun kohtuullisuus_NK : NK ;
+fun kohtuus_NK : NK ;
+fun kohtuuton_NK : NK ;
+fun kohtuuttomasti_AdvK : AdvK ;
+fun kohtuuttomuus_NK : NK ;
+fun kohu_NK : NK ;
+fun kohuta_VK : VK ;
+fun kohva_NK : NK ;
+fun koi_1_NK : NK ;
+fun koi_2_NK : NK ;
+fun koikkelehtia_VK : VK ;
+fun koillinen_NK : NK ;
+fun koilliskolkka_NK : NK ;
+fun koinsyo'ma'_NK : NK ;
+fun koipeliini_NK : NK ;
+fun koipi_NK : NK ;
+fun koipinen_NK : NK ;
+fun koira_NK : NK ;
+fun koirankeksi_NK : NK ;
+fun koirankoppi_NK : NK ;
+fun koiras_NK : NK ;
+fun koiruus_NK : NK ;
+fun koisa_NK : NK ;
+fun koisata_VK : VK ;
+fun koisia_VK : VK ;
+fun koiso_NK : NK ;
+fun koite_NK : NK ;
+fun koitos_NK : NK ;
+fun koittaa_VK : VK ;
+fun koitto_NK : NK ;
+fun koitua_VK : VK ;
+fun koitus_NK : NK ;
+fun koivikko_NK : NK ;
+fun koivikkoinen_NK : NK ;
+fun koivisto_NK : NK ;
+fun koivu_NK : NK ;
+fun koivuinen_NK : NK ;
+fun koje_NK : NK ;
+fun kojeistaa_VK : VK ;
+fun kojeisto_NK : NK ;
+fun kojootti_NK : NK ;
+fun koju_NK : NK ;
+fun kokaiini_NK : NK ;
+fun kokainismi_NK : NK ;
+fun kokainisti_NK : NK ;
+fun kokardi_NK : NK ;
+fun kokata_VK : VK ;
+fun kokea_VK : VK ;
+fun kokeeksi_AdvK : AdvK ;
+fun kokeellinen_AK : AK ;
+--+ fun kokeellisesti_AdvK : AdvK ;
+fun kokeilla_VK : VK ;
+fun kokeilu_NK : NK ;
+fun kokelas_NK : NK ;
+fun kokelasaika_NK : NK ;
+fun kokematon_NK : NK ;
+fun kokemattomuus_NK : NK ;
+fun kokemus_NK : NK ;
+--+ fun kokemuspera'isesti_AdvK : AdvK ;
+--+ fun kokeneesti_AdvK : AdvK ;
+fun kokeneisuus_NK : NK ;
+fun kokenut_AK : AK ;
+fun koketeerata_VK : VK ;
+fun koketteria_NK : NK ;
+fun koketti_NK : NK ;
+fun kokka_NK : NK ;
+fun kokkaaja_NK : NK ;
+fun kokkailla_VK : VK ;
+fun kokkainen_NK : NK ;
+fun kokkare_NK : NK ;
+fun kokkareinen_NK : NK ;
+--? fun kokkarit_NK : NK ;
+fun kokkaroitua_VK : VK ;
+fun kokkaus_NK : NK ;
+fun kokkeli_NK : NK ;
+fun kokki_1_NK : NK ;
+fun kokki_2_NK : NK ;
+fun kokko_1_NK : NK ;
+fun kokko_2_NK : NK ;
+fun koko_1_NK : NK ;
+fun koko_2_AdvK : AdvK ;
+fun kokoaja_NK : NK ;
+fun kokoelma_NK : NK ;
+fun kokoilla_VK : VK ;
+fun kokoinen_NK : NK ;
+fun kokonaan_AdvK : AdvK ;
+--+ fun kokonaisvaltaisesti_AdvK : AdvK ;
+fun kokoomus_NK : NK ;
+fun kokoon_AdvK : AdvK ;
+fun kokoonpanna_VK : VK ;
+fun kokoonpantava_NK : NK ;
+fun kokoontaitettava_NK : NK ;
+fun kokoontua_VK : VK ;
+fun kokopa'iva'toiminen_NK : NK ;
+fun kokotti_NK : NK ;
+fun kokouma_NK : NK ;
+fun kokous_NK : NK ;
+fun kokoustaa_VK : VK ;
+fun kokoutua_VK : VK ;
+fun kokoutuma_NK : NK ;
+fun koksaamo_NK : NK ;
+fun koksata_VK : VK ;
+fun koksautua_VK : VK ;
+fun koksi_NK : NK ;
+fun koksiintua_VK : VK ;
+fun koksittaa_VK : VK ;
+fun koksittamo_NK : NK ;
+fun koksittua_VK : VK ;
+fun koksiutua_VK : VK ;
+fun koktaili_NK : NK ;
+fun kola_NK : NK ;
+fun kolahdella_VK : VK ;
+fun kolahdus_NK : NK ;
+fun kolahtaa_VK : VK ;
+fun kolari_NK : NK ;
+fun kolaroida_VK : VK ;
+fun kolaroimaton_NK : NK ;
+fun kolata_VK : VK ;
+fun kolaus_NK : NK ;
+fun kolauttaa_VK : VK ;
+fun kolea_AK : AK ;
+--+ fun koleasti_AdvK : AdvK ;
+fun koleerikko_NK : NK ;
+fun koleerinen_NK : NK ;
+fun kolehti_NK : NK ;
+fun kolera_NK : NK ;
+fun kolesteroli_NK : NK ;
+fun koleus_NK : NK ;
+fun kolhaista_VK : VK ;
+fun kolhaisu_NK : NK ;
+fun kolhia_VK : VK ;
+fun kolhiintua_VK : VK ;
+fun kolhiintuma_NK : NK ;
+fun kolhiutua_VK : VK ;
+fun kolhiutuma_NK : NK ;
+fun kolho_NK : NK ;
+fun kolhoosi_NK : NK ;
+fun kolhu_NK : NK ;
+fun kolibri_NK : NK ;
+fun koliikki_NK : NK ;
+fun kolikko_NK : NK ;
+fun kolina_1_NK : NK ;
+fun kolina_2_NK : NK ;
+fun kolista_VK : VK ;
+fun kolistaa_VK : VK ;
+fun kolistella_VK : VK ;
+fun kolisuttaa_VK : VK ;
+fun kolja_NK : NK ;
+fun koljatti_NK : NK ;
+fun kolkata_1_VK : VK ;
+fun kolkata_2_VK : VK ;
+fun kolke_NK : NK ;
+fun kolkka_1_NK : NK ;
+fun kolkka_2_NK : NK ;
+fun kolkkaa_VK : VK ;
+fun kolkko_NK : NK ;
+fun kolkkous_NK : NK ;
+fun kolkosti_AdvK : AdvK ;
+fun kolkutella_VK : VK ;
+fun kolkutin_NK : NK ;
+fun kolkuttaa_VK : VK ;
+fun kolkutus_NK : NK ;
+fun kollaasi_NK : NK ;
+fun kollageeni_NK : NK ;
+fun kollapsi_NK : NK ;
+fun kollata_VK : VK ;
+fun kollega_NK : NK ;
+fun kollegiaalinen_NK : NK ;
+fun kolleginen_NK : NK ;
+fun kollegio_NK : NK ;
+fun kollektiivi_NK : NK ;
+fun kollektiivinen_AK : AK ;
+--+ fun kollektiivisesti_AdvK : AdvK ;
+fun kollektiivisuus_NK : NK ;
+fun kollektivismi_NK : NK ;
+fun kollektivisoida_VK : VK ;
+fun kollektivisti_NK : NK ;
+fun kollektivistinen_NK : NK ;
+fun kollektivoida_VK : VK ;
+fun kollektori_NK : NK ;
+fun kolli_1_NK : NK ;
+fun kolli_2_NK : NK ;
+fun kollo_NK : NK ;
+fun kolloidi_NK : NK ;
+fun kolloidinen_NK : NK ;
+fun kollokvio_NK : NK ;
+fun kollokviumi_NK : NK ;
+fun kollottaa_VK : VK ;
+fun kollotus_NK : NK ;
+fun kolmannes_NK : NK ;
+fun kolmas_NK : NK ;
+fun kolmasti_AdvK : AdvK ;
+fun kolme_AK : AK ;
+fun kolmestaan_AdvK : AdvK ;
+--+ fun kolmesti_AdvK : AdvK ;
+fun kolmia_AdvK : AdvK ;
+fun kolmijakoisuus_NK : NK ;
+fun kolmikko_NK : NK ;
+fun kolmiloikkaaja_NK : NK ;
+fun kolminainen_NK : NK ;
+fun kolminaisuus_NK : NK ;
+fun kolminapainen_NK : NK ;
+--+ fun kolminkertaisesti_AdvK : AdvK ;
+fun kolminkertaistaa_VK : VK ;
+fun kolminkertaistua_VK : VK ;
+fun kolmio_NK : NK ;
+fun kolmioida_VK : VK ;
+fun kolmiointi_NK : NK ;
+fun kolmisen_AdvK : AdvK ;
+fun kolmisenkymmenta'_AdvK : AdvK ;
+fun kolmisin_AdvK : AdvK ;
+fun kolmistaan_AdvK : AdvK ;
+fun kolmittain_AdvK : AdvK ;
+fun kolmituumainen_NK : NK ;
+--+ fun kolmia'a'nisesti_AdvK : AdvK ;
+fun kolmoisvoltti_NK : NK ;
+fun kolmonen_NK : NK ;
+fun kolo_NK : NK ;
+fun koloa_VK : VK ;
+fun koloinen_NK : NK ;
+fun kolonia_NK : NK ;
+fun kolonialismi_NK : NK ;
+fun kolonialisti_NK : NK ;
+fun kolonialistinen_NK : NK ;
+fun kolonna_NK : NK ;
+fun kolonni_NK : NK ;
+fun koloratuuri_NK : NK ;
+fun kolorismi_NK : NK ;
+fun koloristinen_NK : NK ;
+fun kolossaalinen_NK : NK ;
+fun kolossi_NK : NK ;
+fun kolottaa_VK : VK ;
+fun kolotus_NK : NK ;
+fun kolpakko_NK : NK ;
+fun kolpakollinen_NK : NK ;
+fun koltiainen_NK : NK ;
+fun koltta_NK : NK ;
+fun kolttonen_NK : NK ;
+fun kolttu_NK : NK ;
+fun kolumbaario_NK : NK ;
+fun kolumni_NK : NK ;
+fun kolumnisti_NK : NK ;
+fun koluta_VK : VK ;
+fun kolvi_NK : NK ;
+fun kombinaatio_NK : NK ;
+fun kombinaatti_NK : NK ;
+fun kombinoida_VK : VK ;
+fun kombinointi_NK : NK ;
+fun kombinoitua_VK : VK ;
+fun komea_AK : AK ;
+--+ fun komeasti_AdvK : AdvK ;
+fun komedia_NK : NK ;
+fun komedienne_NK : NK ;
+fun komeetta_NK : NK ;
+fun komeilla_VK : VK ;
+fun komeilu_NK : NK ;
+fun komendantti_NK : NK ;
+fun komennella_VK : VK ;
+fun komennus_NK : NK ;
+fun komentaa_VK : VK ;
+fun komentaja_NK : NK ;
+fun komentelu_NK : NK ;
+fun komento_NK : NK ;
+fun komero_NK : NK ;
+fun komeus_NK : NK ;
+fun komi_NK : NK ;
+fun komiikka_NK : NK ;
+fun komisario_NK : NK ;
+fun komissaari_NK : NK ;
+fun komissio_NK : NK ;
+fun komissiona'a'ri_NK : NK ;
+fun komistaa_VK : VK ;
+fun komistua_VK : VK ;
+fun komistus_NK : NK ;
+fun komitatiivi_NK : NK ;
+fun komitea_NK : NK ;
+fun kommari_NK : NK ;
+fun kommellus_NK : NK ;
+fun kommentaari_NK : NK ;
+fun kommentaattori_NK : NK ;
+fun kommentoida_VK : VK ;
+fun kommentoija_NK : NK ;
+fun kommentti_NK : NK ;
+fun kommervenkki_NK : NK ;
+fun kommodori_NK : NK ;
+fun kommunikaatio_NK : NK ;
+fun kommunikea_NK : NK ;
+fun kommunikoida_VK : VK ;
+fun kommunismi_NK : NK ;
+fun kommunisti_NK : NK ;
+fun kommunistinen_NK : NK ;
+fun kommutaatio_NK : NK ;
+fun kommutaattori_NK : NK ;
+fun kommutoida_VK : VK ;
+fun kommuuni_NK : NK ;
+fun kommuuniasuminen_NK : NK ;
+fun kompa_NK : NK ;
+fun kompakti_NK : NK ;
+fun komparaatio_NK : NK ;
+fun komparatiivi_NK : NK ;
+fun komparatiivinen_NK : NK ;
+fun komparoida_VK : VK ;
+fun kompassi_NK : NK ;
+fun kompastella_VK : VK ;
+fun kompastelu_NK : NK ;
+fun kompastua_VK : VK ;
+fun kompastus_NK : NK ;
+fun kompastuttaa_VK : VK ;
+fun kompata_VK : VK ;
+fun kompensaatio_NK : NK ;
+fun kompensatorinen_NK : NK ;
+fun kompensoida_VK : VK ;
+fun kompensoitua_VK : VK ;
+fun kompetenssi_NK : NK ;
+fun kompetentti_NK : NK ;
+fun kompleksi_NK : NK ;
+fun kompleksikas_NK : NK ;
+fun kompleksinen_NK : NK ;
+fun kompleksisuus_NK : NK ;
+fun komplementaarinen_NK : NK ;
+fun komplementti_NK : NK ;
+fun komplikaatio_NK : NK ;
+fun komplisoida_VK : VK ;
+fun komplisoitua_VK : VK ;
+fun komponentti_NK : NK ;
+fun kompositio_NK : NK ;
+fun komposti_NK : NK ;
+fun kompostoida_VK : VK ;
+fun kompostointi_NK : NK ;
+fun kompostori_NK : NK ;
+fun kompotti_NK : NK ;
+fun komppania_NK : NK ;
+fun komppi_NK : NK ;
+fun kompressi_NK : NK ;
+fun kompressori_NK : NK ;
+fun kompromettoida_VK : VK ;
+fun kompromissi_NK : NK ;
+fun kompura_NK : NK ;
+fun kompuroida_VK : VK ;
+fun kompus_NK : NK ;
+fun kondensaatio_NK : NK ;
+fun kondensaattori_NK : NK ;
+fun kondensoida_VK : VK ;
+fun kondensoitua_VK : VK ;
+fun kondiittori_NK : NK ;
+fun kondis_NK : NK ;
+fun konditionaali_NK : NK ;
+fun konditionaalinen_NK : NK ;
+fun konditoria_NK : NK ;
+fun kondomi_NK : NK ;
+fun kondori_NK : NK ;
+fun kondukto'o'ri_NK : NK ;
+fun kondylooma_NK : NK ;
+fun kone_NK : NK ;
+fun koneellinen_AK : AK ;
+--+ fun koneellisesti_AdvK : AdvK ;
+fun koneellistaa_VK : VK ;
+fun koneellistua_VK : VK ;
+fun koneellisuus_NK : NK ;
+fun koneikko_NK : NK ;
+fun koneinen_NK : NK ;
+fun koneistaa_VK : VK ;
+fun koneistaja_NK : NK ;
+fun koneisto_NK : NK ;
+fun koneistua_VK : VK ;
+fun koneistus_NK : NK ;
+fun konekoodinen_NK : NK ;
+fun koneka'a'nta'minen_NK : NK ;
+--+ fun konemaisesti_AdvK : AdvK ;
+fun konferenssi_NK : NK ;
+fun konfirmaatio_NK : NK ;
+fun konfirmandi_NK : NK ;
+fun konfirmoida_VK : VK ;
+fun konflikti_NK : NK ;
+fun konfutselainen_NK : NK ;
+fun konfutselaisuus_NK : NK ;
+fun kongressi_NK : NK ;
+fun kongruenssi_NK : NK ;
+fun kongruentti_NK : NK ;
+fun kongruoida_VK : VK ;
+fun koni_NK : NK ;
+fun konjakki_NK : NK ;
+fun konjugaatio_NK : NK ;
+fun konjugoida_VK : VK ;
+fun konjugointi_NK : NK ;
+fun konjunktio_NK : NK ;
+fun konjunktuuri_NK : NK ;
+fun konkari_NK : NK ;
+fun konkata_VK : VK ;
+fun konkelo_NK : NK ;
+fun konki_NK : NK ;
+fun konkistadori_NK : NK ;
+fun konkka_NK : NK ;
+fun konkkaronkka_NK : NK ;
+fun konklaavi_NK : NK ;
+fun konkordanssi_NK : NK ;
+fun konkreettinen_AK : AK ;
+--+ fun konkreettisesti_AdvK : AdvK ;
+fun konkreettistaa_VK : VK ;
+fun konkreettistua_VK : VK ;
+fun konkreettisuus_NK : NK ;
+fun konkretia_NK : NK ;
+fun konkretismi_NK : NK ;
+fun konkretisoida_VK : VK ;
+fun konkretisoitua_VK : VK ;
+fun konkretisti_NK : NK ;
+fun konkurrenssi_NK : NK ;
+fun konkurssi_NK : NK ;
+fun konna_NK : NK ;
+fun konnari_NK : NK ;
+fun konnuus_NK : NK ;
+fun konossementti_NK : NK ;
+fun konsa_AdvK : AdvK ;
+fun konsaan_AdvK : AdvK ;
+fun konsanaan_AdvK : AdvK ;
+fun konsensus_NK : NK ;
+fun konsentraatio_NK : NK ;
+fun konsentraatti_NK : NK ;
+fun konsentroida_VK : VK ;
+fun konsentrointi_NK : NK ;
+fun konsentroitua_VK : VK ;
+fun konsepti_NK : NK ;
+fun konserni_NK : NK ;
+fun konsertoida_VK : VK ;
+fun konsertti_NK : NK ;
+fun konsertto_NK : NK ;
+fun konservaattori_NK : NK ;
+fun konservatiivi_NK : NK ;
+fun konservatiivinen_AK : AK ;
+--+ fun konservatiivisesti_AdvK : AdvK ;
+fun konservatiivisuus_NK : NK ;
+fun konservatismi_NK : NK ;
+fun konservatorio_NK : NK ;
+fun konservoida_VK : VK ;
+fun konservoija_NK : NK ;
+fun konsiili_NK : NK ;
+fun konsistenssi_NK : NK ;
+fun konsistori_NK : NK ;
+fun konsoli_NK : NK ;
+fun konsonantti_NK : NK ;
+fun konsortio_NK : NK ;
+fun konstaapeli_NK : NK ;
+fun konstailija_NK : NK ;
+fun konstailla_VK : VK ;
+fun konstanssi_NK : NK ;
+fun konstantti_NK : NK ;
+fun konsti_NK : NK ;
+fun konstikas_AK : AK ;
+--+ fun konstikkaasti_AdvK : AdvK ;
+fun konstikkuus_NK : NK ;
+fun konstitutionaalinen_NK : NK ;
+fun konstitutionalismi_NK : NK ;
+fun konstituutio_NK : NK ;
+fun konstruktiivinen_NK : NK ;
+fun konstruktio_NK : NK ;
+fun konstruktivismi_NK : NK ;
+fun konstruoida_VK : VK ;
+fun konstruointi_NK : NK ;
+fun konsulaatti_NK : NK ;
+fun konsulentti_NK : NK ;
+fun konsuli_NK : NK ;
+fun konsultaatio_NK : NK ;
+fun konsultatiivinen_NK : NK ;
+fun konsultoida_VK : VK ;
+fun konsultointi_NK : NK ;
+fun konsultti_NK : NK ;
+fun konsumerismi_NK : NK ;
+fun konsumeristinen_NK : NK ;
+fun kontakti_NK : NK ;
+fun kontallaan_AdvK : AdvK ;
+fun kontalleen_AdvK : AdvK ;
+fun kontata_VK : VK ;
+fun konteineri_NK : NK ;
+fun konteksti_NK : NK ;
+fun kontillaan_AdvK : AdvK ;
+fun kontilleen_AdvK : AdvK ;
+fun kontingentti_NK : NK ;
+fun kontinuumi_NK : NK ;
+fun kontio_NK : NK ;
+fun kontrahti_NK : NK ;
+fun kontrapunkti_NK : NK ;
+fun kontrapunktinen_NK : NK ;
+fun kontrasti_NK : NK ;
+fun kontrastoida_VK : VK ;
+fun kontrolli_NK : NK ;
+fun kontrolloida_VK : VK ;
+fun kontrollointi_NK : NK ;
+fun konttailla_VK : VK ;
+fun konttaus_NK : NK ;
+fun kontti_1_NK : NK ;
+fun kontti_2_NK : NK ;
+fun kontti_3_NK : NK ;
+fun kontto_NK : NK ;
+fun konttori_NK : NK ;
+fun konttoristua_VK : VK ;
+fun kontu_NK : NK ;
+fun konvehti_NK : NK ;
+fun konventio_NK : NK ;
+fun konventionaalinen_NK : NK ;
+fun konventti_NK : NK ;
+fun konvergenssi_NK : NK ;
+fun konvergentti_NK : NK ;
+fun konversio_NK : NK ;
+fun koodaaja_NK : NK ;
+fun koodata_VK : VK ;
+fun koodaus_NK : NK ;
+fun koodeksi_NK : NK ;
+fun koodi_NK : NK ;
+fun koodittaa_VK : VK ;
+fun koodittaja_NK : NK ;
+fun kooditus_NK : NK ;
+fun kookas_NK : NK ;
+fun kookosvoi_NK : NK ;
+fun koolata_VK : VK ;
+fun koolaus_NK : NK ;
+fun koolinki_NK : NK ;
+fun koolla_AdvK : AdvK ;
+fun koolle_AdvK : AdvK ;
+fun kooma_NK : NK ;
+fun koomikko_NK : NK ;
+fun koominen_AK : AK ;
+--+ fun koomisesti_AdvK : AdvK ;
+fun koomisuus_NK : NK ;
+fun koommin_AdvK : AdvK ;
+fun koonnos_NK : NK ;
+fun koontaa_VK : VK ;
+fun koonti_NK : NK ;
+fun kooperaatio_NK : NK ;
+fun kooperatiivinen_NK : NK ;
+fun koordinaatio_NK : NK ;
+fun koordinaatisto_NK : NK ;
+fun koordinaatta_NK : NK ;
+fun koordinaatti_NK : NK ;
+fun koordinaattori_NK : NK ;
+fun koordinoida_VK : VK ;
+fun koordinoija_NK : NK ;
+fun koordinointi_NK : NK ;
+fun koossa_AdvK : AdvK ;
+fun koostaa_VK : VK ;
+fun kooste_NK : NK ;
+fun koosteinen_NK : NK ;
+fun koostelma_NK : NK ;
+fun koosto_NK : NK ;
+fun koostua_VK : VK ;
+fun koostumus_NK : NK ;
+fun koota_VK : VK ;
+fun kop_AdvK : AdvK ;
+fun kopahdella_VK : VK ;
+fun kopahdus_NK : NK ;
+fun kopahtaa_VK : VK ;
+fun kopallinen_NK : NK ;
+fun kopata_VK : VK ;
+fun kopaus_NK : NK ;
+fun kopautella_VK : VK ;
+fun kopauttaa_VK : VK ;
+fun kopautus_NK : NK ;
+fun kopea_AK : AK ;
+--+ fun kopeasti_AdvK : AdvK ;
+fun kopeekka_NK : NK ;
+fun kopeilla_VK : VK ;
+fun kopeloida_VK : VK ;
+fun kopernikaaninen_NK : NK ;
+fun kopeus_NK : NK ;
+fun kopina_NK : NK ;
+fun kopio_NK : NK ;
+fun kopioida_VK : VK ;
+fun kopioija_NK : NK ;
+fun kopiointi_NK : NK ;
+fun kopista_VK : VK ;
+fun kopistaa_VK : VK ;
+fun kopistella_VK : VK ;
+fun kopisti_NK : NK ;
+fun kopisuttaa_VK : VK ;
+fun kopla_NK : NK ;
+fun koplata_VK : VK ;
+fun koppa_NK : NK ;
+fun koppava_AK : AK ;
+--+ fun koppavasti_AdvK : AdvK ;
+fun koppavuus_NK : NK ;
+fun koppelo_NK : NK ;
+fun koppero_NK : NK ;
+fun koppi_1_NK : NK ;
+fun koppi_2_NK : NK ;
+fun koppura_NK : NK ;
+fun koppurainen_NK : NK ;
+fun kopra_NK : NK ;
+fun kopsaa_VK : VK ;
+fun kopsahdella_VK : VK ;
+fun kopsahdus_NK : NK ;
+fun kopsahtaa_VK : VK ;
+fun kopsata_VK : VK ;
+fun kopsaus_1_NK : NK ;
+fun kopsaus_2_NK : NK ;
+fun kopsauttaa_VK : VK ;
+fun kopse_NK : NK ;
+fun kopsu_1_NK : NK ;
+fun kopsu_2_NK : NK ;
+fun kopteri_NK : NK ;
+fun kopti_NK : NK ;
+fun kopukka_NK : NK ;
+fun koputella_VK : VK ;
+fun koputtaa_VK : VK ;
+fun koputtelu_NK : NK ;
+fun koputus_NK : NK ;
+fun koraali_NK : NK ;
+fun Koraani_NK : NK ;
+fun korahdella_VK : VK ;
+fun korahdus_NK : NK ;
+fun korahtaa_VK : VK ;
+fun koralli_NK : NK ;
+fun korallinen_NK : NK ;
+fun korea_1_AK : AK ;
+fun korea_2_AK : AK ;
+--+ fun koreasti_AdvK : AdvK ;
+fun koreilla_VK : VK ;
+fun koreilu_NK : NK ;
+fun koreittain_AdvK : AdvK ;
+fun korento_NK : NK ;
+fun koreografi_NK : NK ;
+fun koreografia_NK : NK ;
+fun koreografinen_NK : NK ;
+fun koreus_NK : NK ;
+fun kori_NK : NK ;
+fun korianteri_NK : NK ;
+fun korillinen_NK : NK ;
+fun korina_NK : NK ;
+fun korintti_NK : NK ;
+fun korinttolainen_NK : NK ;
+fun koris_NK : NK ;
+fun korista_VK : VK ;
+fun koristaa_VK : VK ;
+fun koristautua_VK : VK ;
+fun koriste_NK : NK ;
+fun koristeellinen_AK : AK ;
+--+ fun koristeellisesti_AdvK : AdvK ;
+fun koristeellisuus_NK : NK ;
+fun koristella_VK : VK ;
+fun koristelu_NK : NK ;
+fun koristus_NK : NK ;
+fun korjaaja_NK : NK ;
+fun korjaamaton_NK : NK ;
+fun korjaamattomasti_AdvK : AdvK ;
+fun korjaamo_NK : NK ;
+fun korjaantua_VK : VK ;
+fun korjailla_VK : VK ;
+fun korjailu_NK : NK ;
+fun korjain_NK : NK ;
+fun korjata_VK : VK ;
+fun korjaus_NK : NK ;
+fun korjauttaa_VK : VK ;
+fun korjautua_VK : VK ;
+fun korjussa_AdvK : AdvK ;
+fun korjuu_NK : NK ;
+fun korjuuaika_NK : NK ;
+fun korjuun_AdvK : AdvK ;
+fun korjuuseen_AdvK : AdvK ;
+fun korjuussa_AdvK : AdvK ;
+fun korjuuttaa_VK : VK ;
+fun korkata_VK : VK ;
+fun korkea_AK : AK ;
+fun korkealla_AdvK : AdvK ;
+fun korkealle_AdvK : AdvK ;
+fun korkealta_AdvK : AdvK ;
+--+ fun korkeasti_AdvK : AdvK ;
+fun korkeimmillaan_AdvK : AdvK ;
+fun korkeimmilleen_AdvK : AdvK ;
+fun korkeintaan_AdvK : AdvK ;
+fun korkenee_VK : VK ;
+fun korkeus_NK : NK ;
+fun korkillinen_NK : NK ;
+fun korkita_VK : VK ;
+fun korkittaa_VK : VK ;
+fun korkitus_NK : NK ;
+fun korkkaamaton_NK : NK ;
+fun korkki_NK : NK ;
+fun korkkiintua_VK : VK ;
+fun korkkinen_NK : NK ;
+fun korkkiutua_VK : VK ;
+fun korko_NK : NK ;
+fun korkoinen_NK : NK ;
+fun korkuinen_NK : NK ;
+fun kornetisti_NK : NK ;
+fun kornetti_NK : NK ;
+fun korni_NK : NK ;
+fun korohoro_NK : NK ;
+fun koroke_NK : NK ;
+fun korollinen_NK : NK ;
+fun korona_NK : NK ;
+fun koronkiskominen_NK : NK ;
+fun korostaa_VK : VK ;
+fun koroste_NK : NK ;
+fun korosteinen_AK : AK ;
+--+ fun korosteisesti_AdvK : AdvK ;
+fun korosteisuus_NK : NK ;
+fun korostua_VK : VK ;
+fun korostus_NK : NK ;
+fun koroton_NK : NK ;
+fun korottaa_VK : VK ;
+fun korotus_NK : NK ;
+fun korotuttaa_VK : VK ;
+fun korpeentua_VK : VK ;
+fun korpi_NK : NK ;
+fun korporaatio_NK : NK ;
+fun korporatiivinen_NK : NK ;
+fun korporativismi_NK : NK ;
+fun korppi_1_NK : NK ;
+fun korppi_2_NK : NK ;
+fun korppu_NK : NK ;
+fun korpraali_NK : NK ;
+fun korpus_NK : NK ;
+fun korrehtuuri_NK : NK ;
+fun korrekti_AK : AK ;
+--+ fun korrektisti_AdvK : AdvK ;
+fun korrektius_NK : NK ;
+fun korrelaatio_NK : NK ;
+fun korrelaatiokerroin_NK : NK ;
+fun korrelaatti_NK : NK ;
+fun korreloida_VK : VK ;
+fun korreloitua_VK : VK ;
+fun korrepetiittori_NK : NK ;
+fun korroosio_NK : NK ;
+fun korruptio_NK : NK ;
+fun korruptoitua_VK : VK ;
+fun korseletti_NK : NK ;
+fun korsetti_NK : NK ;
+fun korsi_NK : NK ;
+fun korsinen_NK : NK ;
+fun korska_NK : NK ;
+fun korskahdella_VK : VK ;
+fun korskahdus_NK : NK ;
+fun korskahtaa_VK : VK ;
+fun korskea_AK : AK ;
+--+ fun korskeasti_AdvK : AdvK ;
+fun korskeilla_VK : VK ;
+fun korskua_VK : VK ;
+fun korskuna_NK : NK ;
+fun korskunta_NK : NK ;
+fun korsteeni_NK : NK ;
+fun korsto_NK : NK ;
+fun korsu_NK : NK ;
+fun korte_NK : NK ;
+fun kortinen_NK : NK ;
+fun kortisoni_NK : NK ;
+fun kortisto_NK : NK ;
+fun kortistoida_VK : VK ;
+fun kortistointi_NK : NK ;
+fun kortittaa_VK : VK ;
+fun kortonki_NK : NK ;
+fun kortteeri_NK : NK ;
+fun kortteikko_NK : NK ;
+fun kortteli_NK : NK ;
+fun kortti_NK : NK ;
+fun koru_NK : NK ;
+fun korundi_NK : NK ;
+fun koruton_NK : NK ;
+fun koruttomasti_AdvK : AdvK ;
+fun koruttomuus_NK : NK ;
+fun korva_NK : NK ;
+fun korvaaja_NK : NK ;
+fun korvaamaton_NK : NK ;
+fun korvaantua_VK : VK ;
+fun korvainen_NK : NK ;
+fun korvake_NK : NK ;
+fun korvallinen_NK : NK ;
+fun korvapuusti_NK : NK ;
+fun korvata_VK : VK ;
+fun korvatillikka_NK : NK ;
+fun korvaus_NK : NK ;
+fun korvautua_VK : VK ;
+fun korvennus_NK : NK ;
+fun korventaa_VK : VK ;
+fun korventua_VK : VK ;
+fun korveta_VK : VK ;
+fun korvetti_NK : NK ;
+fun korviahuumaava_NK : NK ;
+fun korviasa'rkeva'_NK : NK ;
+fun korviavihlova_NK : NK ;
+fun korvike_NK : NK ;
+fun korvilla_AdvK : AdvK ;
+fun korville_AdvK : AdvK ;
+fun korvinkuultava_NK : NK ;
+fun korvis_NK : NK ;
+fun korvissa_AdvK : AdvK ;
+fun korvo_NK : NK ;
+fun korvus_NK : NK ;
+fun kosekantti_NK : NK ;
+fun ko_er_NK : NK ;
+fun kosia_VK : VK ;
+fun kosija_NK : NK ;
+fun kosini_NK : NK ;
+fun kosinta_NK : NK ;
+fun kosiskelija_NK : NK ;
+fun kosiskella_VK : VK ;
+fun kosiskelu_NK : NK ;
+fun koska_AdvK : AdvK ;
+fun koskaan_AdvK : AdvK ;
+fun koskea_VK : VK ;
+fun koskelo_NK : NK ;
+fun koskematon_NK : NK ;
+fun koskemattomuus_NK : NK ;
+fun kosketella_VK : VK ;
+fun kosketin_NK : NK ;
+fun koskettaa_VK : VK ;
+fun koskettelu_NK : NK ;
+fun koskettimisto_NK : NK ;
+fun kosketus_NK : NK ;
+fun kosketuskohta_NK : NK ;
+fun koski_NK : NK ;
+fun koskinen_NK : NK ;
+fun koskisuus_NK : NK ;
+fun kosmeettinen_NK : NK ;
+fun kosmetiikka_NK : NK ;
+fun kosmetologi_NK : NK ;
+fun kosmetologia_NK : NK ;
+fun kosminen_NK : NK ;
+fun kosmogonia_NK : NK ;
+fun kosmogoninen_NK : NK ;
+fun kosmologia_NK : NK ;
+fun kosmologinen_NK : NK ;
+fun kosmonautti_NK : NK ;
+fun kosmopoliitti_NK : NK ;
+fun kosmopoliittinen_NK : NK ;
+fun kosmopoliittisuus_NK : NK ;
+fun kosmos_NK : NK ;
+fun kosolti_AdvK : AdvK ;
+fun kostaa_VK : VK ;
+fun kostaja_NK : NK ;
+fun kostautua_VK : VK ;
+fun koste_NK : NK ;
+fun kostea_AK : AK ;
+--+ fun kosteasti_AdvK : AdvK ;
+fun kosteikko_NK : NK ;
+fun kosteus_NK : NK ;
+fun kosteuttaa_VK : VK ;
+fun kosto_NK : NK ;
+fun kostua_1_VK : VK ;
+fun kostua_2_VK : VK ;
+fun kostuke_NK : NK ;
+fun kostute_NK : NK ;
+fun kostutin_NK : NK ;
+fun kostuttaa_VK : VK ;
+fun kostutus_NK : NK ;
+fun kostyymi_NK : NK ;
+fun kota_NK : NK ;
+fun kotangentti_NK : NK ;
+fun kotelo_NK : NK ;
+fun koteloida_VK : VK ;
+fun koteloitua_VK : VK ;
+fun koti_NK : NK ;
+fun kotia_AdvK : AdvK ;
+fun kotiin_AdvK : AdvK ;
+fun kotilo_NK : NK ;
+fun kotilonkuori_NK : NK ;
+fun kotimaistaa_VK : VK ;
+fun kotimaistua_VK : VK ;
+fun kotimaisuus_NK : NK ;
+fun kotipolttoinen_NK : NK ;
+fun kotiuttaa_VK : VK ;
+fun kotiuttaja_NK : NK ;
+fun kotiutua_VK : VK ;
+fun kotka_NK : NK ;
+fun kotkata_VK : VK ;
+fun kotkaus_NK : NK ;
+fun kotkottaa_VK : VK ;
+fun kotkotus_NK : NK ;
+fun kotletti_NK : NK ;
+fun koto_1_NK : NK ;
+fun koto_2_NK : NK ;
+fun kotoa_AdvK : AdvK ;
+fun kotoinen_AK : AK ;
+fun kotoisa_NK : NK ;
+--+ fun kotoisesti_AdvK : AdvK ;
+fun kotoisin_AdvK : AdvK ;
+fun kotoisuus_NK : NK ;
+fun kotona_AdvK : AdvK ;
+fun kotosalla_AdvK : AdvK ;
+fun kotosalle_AdvK : AdvK ;
+fun kotosalta_AdvK : AdvK ;
+fun kotsa_NK : NK ;
+fun kottarainen_NK : NK ;
+fun kottero_NK : NK ;
+fun koturni_NK : NK ;
+fun kotva_NK : NK ;
+fun kotvanen_NK : NK ;
+fun kouho_NK : NK ;
+fun kouhottaa_VK : VK ;
+fun koukata_VK : VK ;
+fun koukero_NK : NK ;
+fun koukeroida_VK : VK ;
+fun koukeroinen_NK : NK ;
+fun koukerrella_VK : VK ;
+fun koukertelu_NK : NK ;
+fun koukistaa_VK : VK ;
+fun koukistaja_NK : NK ;
+fun koukistua_VK : VK ;
+fun koukistuma_NK : NK ;
+fun koukistus_NK : NK ;
+fun koukkaus_NK : NK ;
+fun koukku_NK : NK ;
+fun koukkuinen_NK : NK ;
+fun koukkuun_AdvK : AdvK ;
+fun koukussa_AdvK : AdvK ;
+fun koukuta_VK : VK ;
+fun koulata_VK : VK ;
+fun koulia_VK : VK ;
+fun kouliintua_VK : VK ;
+fun koulinta_NK : NK ;
+fun kouliutua_VK : VK ;
+fun koulu_NK : NK ;
+fun kouluaika_NK : NK ;
+fun kouluaka'yma'to'n_NK : NK ;
+fun koulukiusaaminen_NK : NK ;
+fun koulukiusattu_NK : NK ;
+fun koulunka'yma'to'n_NK : NK ;
+fun koulunka'ynyt_NK : NK ;
+fun kouluttaa_VK : VK ;
+fun kouluttaja_NK : NK ;
+fun kouluttamaton_NK : NK ;
+fun kouluttautua_VK : VK ;
+fun kouluttua_VK : VK ;
+fun koulutuksellinen_NK : NK ;
+fun koulutus_NK : NK ;
+fun koulutusaika_NK : NK ;
+fun koura_NK : NK ;
+fun kourainen_NK : NK ;
+fun kouraista_VK : VK ;
+fun kouraisu_NK : NK ;
+fun kourallinen_NK : NK ;
+fun kouria_VK : VK ;
+fun kouristaa_VK : VK ;
+fun kouristeinen_NK : NK ;
+fun kouristella_VK : VK ;
+fun kouristelu_NK : NK ;
+fun kouristua_VK : VK ;
+fun kouristuksellinen_NK : NK ;
+--+ fun kouristuksenomaisesti_AdvK : AdvK ;
+fun kouristus_NK : NK ;
+fun kouru_NK : NK ;
+fun kouruilla_VK : VK ;
+fun kouruttaa_VK : VK ;
+fun kouruuntua_VK : VK ;
+fun koutsi_NK : NK ;
+fun kova_AK : AK ;
+fun kovaa_AdvK : AdvK ;
+fun kovaan_AdvK : AdvK ;
+fun kovakorvaisuus_NK : NK ;
+--+ fun kovakouraisesti_AdvK : AdvK ;
+fun kovakouraisuus_NK : NK ;
+fun kovaksikeitetty_NK : NK ;
+--+ fun kovaka'tisesti_AdvK : AdvK ;
+fun kovalla_AdvK : AdvK ;
+fun kovalle_AdvK : AdvK ;
+fun kovapanosammunta_NK : NK ;
+fun kovasin_NK : NK ;
+fun kovassa_AdvK : AdvK ;
+--+ fun kovasti_AdvK : AdvK ;
+--+ fun kovasyda'misesti_AdvK : AdvK ;
+--+ fun kovaa'a'nisesti_AdvK : AdvK ;
+fun kovennus_NK : NK ;
+fun koventaa_VK : VK ;
+fun koventua_VK : VK ;
+fun kovera_NK : NK ;
+fun koverre_NK : NK ;
+fun koverrin_NK : NK ;
+fun koverrus_NK : NK ;
+fun kovertaa_VK : VK ;
+fun kovertua_VK : VK ;
+fun kovertuma_NK : NK ;
+fun koveruus_NK : NK ;
+fun koveta_VK : VK ;
+fun kovete_NK : NK ;
+fun kovettaa_VK : VK ;
+fun kovettua_VK : VK ;
+fun kovettuma_NK : NK ;
+fun kovetus_NK : NK ;
+fun kovike_NK : NK ;
+fun kovilla_AdvK : AdvK ;
+fun koville_AdvK : AdvK ;
+fun kovin_AdvK : AdvK ;
+fun kovis_NK : NK ;
+fun kovistaa_VK : VK ;
+fun kovistella_VK : VK ;
+fun kovite_NK : NK ;
+fun kovittaa_VK : VK ;
+fun kovitus_NK : NK ;
+fun kovuinen_NK : NK ;
+fun kovuus_NK : NK ;
+fun kraana_NK : NK ;
+fun kraatteri_NK : NK ;
+fun kraavata_VK : VK ;
+fun kraavi_NK : NK ;
+fun kraiveli_NK : NK ;
+fun krakata_VK : VK ;
+fun krakkaamo_NK : NK ;
+fun krakkaus_NK : NK ;
+fun krakkeri_NK : NK ;
+fun kramppi_NK : NK ;
+fun kranaatti_NK : NK ;
+fun kranssi_NK : NK ;
+fun kranttu_NK : NK ;
+fun krappi_NK : NK ;
+fun krapu_NK : NK ;
+fun krapula_NK : NK ;
+fun krassi_NK : NK ;
+fun kravatti_NK : NK ;
+fun kreatiivinen_NK : NK ;
+fun kreationismi_NK : NK ;
+fun kreationisti_NK : NK ;
+fun kreationistinen_NK : NK ;
+fun krediitti_NK : NK ;
+fun kredit_NK : NK ;
+fun kreditoida_VK : VK ;
+fun kreemi_NK : NK ;
+fun kreikatar_NK : NK ;
+fun kreikka_NK : NK ;
+fun kreikkalaisuus_NK : NK ;
+fun kreisi_NK : NK ;
+fun kreivi_NK : NK ;
+fun kreivillinen_NK : NK ;
+fun kreivita'r_NK : NK ;
+fun krematoida_VK : VK ;
+fun krematointi_NK : NK ;
+fun krematorio_NK : NK ;
+fun kremlologi_NK : NK ;
+fun kremlologia_NK : NK ;
+fun kremppa_NK : NK ;
+fun krenato'o'ri_NK : NK ;
+fun kreoli_NK : NK ;
+fun krepata_VK : VK ;
+fun kreppaus_NK : NK ;
+fun kreppi_NK : NK ;
+fun krepsi_NK : NK ;
+fun kretliini_NK : NK ;
+fun kretonki_NK : NK ;
+fun kriikuna_NK : NK ;
+fun kriisi_NK : NK ;
+fun kriisiaika_NK : NK ;
+fun kriitikko_NK : NK ;
+fun kriittinen_AK : AK ;
+--+ fun kriittisesti_AdvK : AdvK ;
+fun kriittisyys_NK : NK ;
+fun kriketti_NK : NK ;
+fun krilli_NK : NK ;
+fun krimi_NK : NK ;
+fun kriminaalinen_NK : NK ;
+fun kriminaalistaa_VK : VK ;
+fun kriminalisoida_VK : VK ;
+fun kriminalisointi_NK : NK ;
+fun kriminalisti_NK : NK ;
+fun kriminalistiikka_NK : NK ;
+fun kriminologi_NK : NK ;
+fun kriminologia_NK : NK ;
+fun kriminologinen_NK : NK ;
+fun krinoliini_NK : NK ;
+fun kristalli_NK : NK ;
+fun kristallinen_NK : NK ;
+fun kristallisoida_VK : VK ;
+fun kristallisoitua_VK : VK ;
+fun kristalloida_VK : VK ;
+fun kristalloitua_VK : VK ;
+fun kristillinen_AK : AK ;
+--+ fun kristillisesti_AdvK : AdvK ;
+fun kristillisyys_NK : NK ;
+fun kristitty_NK : NK ;
+fun kristologia_NK : NK ;
+fun kriteeri_NK : NK ;
+fun kritiikitto'myys_NK : NK ;
+fun kritiikitto'ma'sti_AdvK : AdvK ;
+fun kritiikito'n_NK : NK ;
+fun kritiikki_NK : NK ;
+fun kritikoida_VK : VK ;
+fun kritikointi_NK : NK ;
+fun kritisoida_VK : VK ;
+fun kritisointi_NK : NK ;
+fun kroaatti_NK : NK ;
+fun kroatia_NK : NK ;
+fun kroisos_NK : NK ;
+fun kroissantti_NK : NK ;
+fun krokaani_NK : NK ;
+fun kroketti_NK : NK ;
+fun krokotiili_NK : NK ;
+fun kromaattinen_NK : NK ;
+fun kromata_VK : VK ;
+fun kromaus_NK : NK ;
+fun kromi_NK : NK ;
+fun kromioida_VK : VK ;
+fun kromittaa_VK : VK ;
+fun kromitus_NK : NK ;
+fun kromosomi_NK : NK ;
+fun kromosomisto_NK : NK ;
+fun kronikka_NK : NK ;
+fun kronikoida_VK : VK ;
+fun kronikoitsija_NK : NK ;
+fun kronkeli_NK : NK ;
+fun kronologia_NK : NK ;
+fun kronologinen_AK : AK ;
+--+ fun kronologisesti_AdvK : AdvK ;
+fun kronometri_NK : NK ;
+fun krookus_NK : NK ;
+fun kroolata_VK : VK ;
+fun krooli_NK : NK ;
+fun kroonikko_NK : NK ;
+fun krooninen_AK : AK ;
+--+ fun kroonisesti_AdvK : AdvK ;
+fun kroonistaa_VK : VK ;
+fun kroonistua_VK : VK ;
+fun kroonisuus_NK : NK ;
+fun kroppa_NK : NK ;
+fun krossi_NK : NK ;
+fun krouvi_1_NK : NK ;
+fun krouvi_2_NK : NK ;
+fun kruksata_VK : VK ;
+fun kruksi_NK : NK ;
+fun krumeluuri_NK : NK ;
+fun krupieeri_NK : NK ;
+fun krusifiksi_NK : NK ;
+fun kruska_NK : NK ;
+fun krustadi_NK : NK ;
+fun kruuna_NK : NK ;
+fun kruunaaja_NK : NK ;
+fun kruunaamaton_NK : NK ;
+--? fun kruunajaiset_NK : NK ;
+fun kruunata_VK : VK ;
+fun kruunaus_NK : NK ;
+fun kruunauttaa_VK : VK ;
+fun kruunu_NK : NK ;
+fun kruusailla_VK : VK ;
+fun kruusailu_NK : NK ;
+fun kruusata_VK : VK ;
+fun kruusaus_NK : NK ;
+fun krypta_NK : NK ;
+fun kryptata_VK : VK ;
+fun kryptaus_NK : NK ;
+fun krypto_NK : NK ;
+fun krypton_NK : NK ;
+fun krysanteemi_NK : NK ;
+fun kryssi_NK : NK ;
+fun kra'kki_NK : NK ;
+fun kra'na'_NK : NK ;
+fun kra'na'ta'_VK : VK ;
+fun kra'a'sa'_NK : NK ;
+fun ksenon_NK : NK ;
+fun kserografia_NK : NK ;
+fun ksylitoli_NK : NK ;
+fun ksylofoni_NK : NK ;
+fun kubismi_NK : NK ;
+fun kubisti_NK : NK ;
+fun kubistinen_NK : NK ;
+fun kude_NK : NK ;
+fun kudelma_NK : NK ;
+fun kudin_NK : NK ;
+fun kudoksinen_NK : NK ;
+fun kudonnainen_NK : NK ;
+fun kudonta_NK : NK ;
+fun kudontainen_NK : NK ;
+fun kudos_NK : NK ;
+fun kuha_NK : NK ;
+fun kuherrella_VK : VK ;
+fun kuherrus_NK : NK ;
+fun kuhertaa_VK : VK ;
+fun kuhertelu_NK : NK ;
+fun kuhilas_NK : NK ;
+fun kuhina_NK : NK ;
+fun kuhista_VK : VK ;
+fun kuhkia_VK : VK ;
+fun kuhmu_NK : NK ;
+fun kuhmuinen_NK : NK ;
+fun kuhmura_NK : NK ;
+fun kuhmurainen_NK : NK ;
+fun kuhmuuntua_VK : VK ;
+fun kuhnailija_NK : NK ;
+fun kuhnailla_VK : VK ;
+fun kuhnailu_NK : NK ;
+fun kuhnia_VK : VK ;
+fun kuhnuri_NK : NK ;
+fun kuhnus_NK : NK ;
+fun kuhnustella_VK : VK ;
+fun kuhun_AdvK : AdvK ;
+fun kuhunka_AdvK : AdvK ;
+fun kuidusto_NK : NK ;
+fun kuidutin_NK : NK ;
+fun kuiduttaa_VK : VK ;
+fun kuidutus_NK : NK ;
+fun kuihduttaa_VK : VK ;
+fun kuihtua_VK : VK ;
+fun kuihtumaton_NK : NK ;
+fun kuihtumus_NK : NK ;
+fun kuikelo_NK : NK ;
+fun kuikka_NK : NK ;
+fun kuikuilla_VK : VK ;
+fun kuikuilu_NK : NK ;
+fun kuilu_NK : NK ;
+fun kuin_AdvK : AdvK ;
+fun kuinen_NK : NK ;
+fun kuinka_AdvK : AdvK ;
+fun kuinkaan_AdvK : AdvK ;
+fun kuiri_NK : NK ;
+fun kuirimo_NK : NK ;
+fun kuiskaaja_NK : NK ;
+fun kuiskailla_VK : VK ;
+fun kuiskailu_NK : NK ;
+fun kuiskata_VK : VK ;
+fun kuiskaus_NK : NK ;
+fun kuiske_NK : NK ;
+fun kuiskia_VK : VK ;
+fun kuiskina_NK : NK ;
+fun kuiskinta_NK : NK ;
+fun kuiskutella_VK : VK ;
+fun kuiskuttaa_VK : VK ;
+fun kuiskuttelu_NK : NK ;
+fun kuiskutus_NK : NK ;
+fun kuisma_NK : NK ;
+fun kuisti_NK : NK ;
+fun kuitata_VK : VK ;
+fun kuitenkaan_AdvK : AdvK ;
+fun kuitenkin_AdvK : AdvK ;
+fun kuittaantua_VK : VK ;
+fun kuittaus_NK : NK ;
+fun kuittautua_VK : VK ;
+fun kuitti_NK : NK ;
+fun kuitu_NK : NK ;
+fun kuituinen_NK : NK ;
+fun kuiva_AK : AK ;
+fun kuivaa_VK : VK ;
+fun kuivaaja_NK : NK ;
+fun kuivaamo_NK : NK ;
+fun kuivahtaa_VK : VK ;
+fun kuivailla_VK : VK ;
+fun kuivain_NK : NK ;
+fun kuivakas_NK : NK ;
+--+ fun kuivakiskoisesti_AdvK : AdvK ;
+fun kuivakiskoisuus_NK : NK ;
+fun kuivakka_NK : NK ;
+--+ fun kuivasti_AdvK : AdvK ;
+fun kuivata_VK : VK ;
+fun kuivate_NK : NK ;
+fun kuivatella_VK : VK ;
+fun kuivatin_NK : NK ;
+fun kuivattaa_VK : VK ;
+fun kuivattamo_NK : NK ;
+fun kuivatus_NK : NK ;
+fun kuivaus_NK : NK ;
+fun kuivettaa_VK : VK ;
+fun kuivettua_VK : VK ;
+fun kuiviin_AdvK : AdvK ;
+fun kuivike_NK : NK ;
+fun kuivilla_AdvK : AdvK ;
+fun kuiville_AdvK : AdvK ;
+fun kuiviltaan_AdvK : AdvK ;
+fun kuivio_NK : NK ;
+fun kuivua_VK : VK ;
+fun kuivumisaika_NK : NK ;
+fun kuivuri_NK : NK ;
+fun kuivuus_NK : NK ;
+fun kuja_NK : NK ;
+fun kujanne_NK : NK ;
+fun kuje_NK : NK ;
+fun kujeellinen_AK : AK ;
+--+ fun kujeellisesti_AdvK : AdvK ;
+fun kujeilija_NK : NK ;
+fun kujeilla_VK : VK ;
+fun kujeilu_NK : NK ;
+fun kujerrus_NK : NK ;
+fun kujertaa_VK : VK ;
+fun kukahdus_NK : NK ;
+fun kukahtaa_VK : VK ;
+fun kukallinen_NK : NK ;
+fun kukerrus_NK : NK ;
+fun kukertaa_VK : VK ;
+fun kukertava_NK : NK ;
+fun kukikas_NK : NK ;
+fun kukinta_NK : NK ;
+fun kukinta_aika_NK : NK ;
+fun kukintainen_NK : NK ;
+fun kukinto_NK : NK ;
+fun kukistaa_VK : VK ;
+fun kukistua_VK : VK ;
+fun kukittaa_VK : VK ;
+fun kukka_NK : NK ;
+fun kukkainen_NK : NK ;
+fun kukkaisa_NK : NK ;
+fun kukkanen_NK : NK ;
+fun kukkaro_NK : NK ;
+fun kukkea_NK : NK ;
+fun kukkeus_NK : NK ;
+fun kukkia_VK : VK ;
+fun kukkimisaika_NK : NK ;
+fun kukko_NK : NK ;
+fun kukkoilla_VK : VK ;
+fun kukkoilu_NK : NK ;
+fun kukkonen_NK : NK ;
+fun kukku_AdvK : AdvK ;
+fun kukkua_VK : VK ;
+fun kukkula_NK : NK ;
+fun kukkura_NK : NK ;
+fun kukkurainen_NK : NK ;
+fun kukkurallaan_AdvK : AdvK ;
+fun kukkuralleen_AdvK : AdvK ;
+fun kukkuranaan_AdvK : AdvK ;
+fun kukkuroillaan_AdvK : AdvK ;
+fun kukkuroilleen_AdvK : AdvK ;
+fun kukkuu_AdvK : AdvK ;
+fun kukoistaa_VK : VK ;
+fun kukoistus_NK : NK ;
+fun kukoistusaika_NK : NK ;
+fun kuksa_NK : NK ;
+fun kukunta_NK : NK ;
+fun kukuttaa_VK : VK ;
+fun kulahtaa_1_VK : VK ;
+fun kulahtaa_2_VK : VK ;
+fun kulakki_NK : NK ;
+fun kulauksittain_AdvK : AdvK ;
+fun kulaus_NK : NK ;
+fun kulautella_VK : VK ;
+fun kulauttaa_VK : VK ;
+fun kuleksia_VK : VK ;
+fun kulho_NK : NK ;
+fun kulhollinen_NK : NK ;
+fun kuli_NK : NK ;
+fun kulinaarinen_NK : NK ;
+fun kulinarismi_NK : NK ;
+fun kulinaristi_NK : NK ;
+fun kulissi_NK : NK ;
+fun kuljeksia_VK : VK ;
+fun kuljeksija_NK : NK ;
+fun kuljeksinta_NK : NK ;
+fun kuljeskelija_NK : NK ;
+fun kuljeskella_VK : VK ;
+fun kuljeskelu_NK : NK ;
+fun kuljetella_VK : VK ;
+fun kuljetin_NK : NK ;
+fun kuljettaa_VK : VK ;
+fun kuljettaja_NK : NK ;
+fun kuljettajankoppi_NK : NK ;
+fun kuljetus_NK : NK ;
+fun kuljetuttaa_VK : VK ;
+fun kulju_NK : NK ;
+fun kulkea_VK : VK ;
+fun kulkeentua_VK : VK ;
+fun kulkeilla_AdvK : AdvK ;
+fun kulkeille_AdvK : AdvK ;
+fun kulkeuma_NK : NK ;
+fun kulkeutua_VK : VK ;
+fun kulkija_NK : NK ;
+fun kulku_NK : NK ;
+fun kulkuaika_NK : NK ;
+fun kulkue_NK : NK ;
+fun kulkuinen_NK : NK ;
+fun kulkunen_NK : NK ;
+fun kulkuri_NK : NK ;
+fun kulkusalla_AdvK : AdvK ;
+fun kulkusalle_AdvK : AdvK ;
+fun kullastaa_VK : VK ;
+fun kullata_VK : VK ;
+fun kullero_NK : NK ;
+fun kulli_NK : NK ;
+fun kulloinenkin_NK : NK ;
+fun kulloinkin_AdvK : AdvK ;
+fun kulma_NK : NK ;
+fun kulmainen_NK : NK ;
+fun kulmakerroin_NK : NK ;
+fun kulmata_VK : VK ;
+fun kulmatusten_AdvK : AdvK ;
+fun kulmaus_NK : NK ;
+fun kulmikas_AK : AK ;
+--+ fun kulmikkaasti_AdvK : AdvK ;
+fun kulmikkuus_NK : NK ;
+fun kulminaatio_NK : NK ;
+fun kulminoitua_VK : VK ;
+fun kulmio_NK : NK ;
+fun kulmittain_AdvK : AdvK ;
+fun kulmittainen_NK : NK ;
+fun kulmuri_NK : NK ;
+fun kulo_NK : NK ;
+fun kulottaa_VK : VK ;
+fun kulottua_VK : VK ;
+fun kulotus_NK : NK ;
+fun kuloutua_VK : VK ;
+fun kulta_NK : NK ;
+fun kulta_aika_NK : NK ;
+fun kultainen_AK : AK ;
+--+ fun kultaisesti_AdvK : AdvK ;
+fun kultaisuus_NK : NK ;
+fun kultakutri_NK : NK ;
+fun kultala_NK : NK ;
+fun kultanen_AdvK : AdvK ;
+fun kultaus_NK : NK ;
+fun kultautua_VK : VK ;
+fun kulti_NK : NK ;
+fun kultivaattori_NK : NK ;
+fun kultivoida_VK : VK ;
+fun kultivoitua_VK : VK ;
+fun kultti_NK : NK ;
+fun kulttuuri_NK : NK ;
+fun kulttuurillinen_NK : NK ;
+fun kulttuurinen_AK : AK ;
+fun kulttuurinkarttaja_NK : NK ;
+--+ fun kulttuurisesti_AdvK : AdvK ;
+fun kulturelli_NK : NK ;
+fun kulu_NK : NK ;
+fun kulua_VK : VK ;
+fun kuluma_NK : NK ;
+fun kulumisvika_NK : NK ;
+fun kuluneisuus_NK : NK ;
+fun kulunki_NK : NK ;
+fun kulussa_AdvK : AdvK ;
+fun kuluttaa_VK : VK ;
+fun kuluttaja_NK : NK ;
+fun kuluttajansuoja_NK : NK ;
+fun kulutus_NK : NK ;
+fun kulo'o'ri_NK : NK ;
+fun kumahdella_VK : VK ;
+fun kumahdus_NK : NK ;
+fun kumahtaa_VK : VK ;
+fun kumajaa_VK : VK ;
+fun kumara_NK : NK ;
+fun kumaraan_AdvK : AdvK ;
+fun kumarainen_NK : NK ;
+fun kumarassa_AdvK : AdvK ;
+fun kumariini_NK : NK ;
+fun kumarrella_VK : VK ;
+fun kumarruksiin_AdvK : AdvK ;
+fun kumarruksissa_AdvK : AdvK ;
+fun kumarrus_NK : NK ;
+fun kumartaa_VK : VK ;
+fun kumartua_VK : VK ;
+fun kumaruus_NK : NK ;
+fun kumaus_NK : NK ;
+fun kumauttaa_1_VK : VK ;
+fun kumauttaa_2_VK : VK ;
+fun kumea_AK : AK ;
+--+ fun kumeasti_AdvK : AdvK ;
+fun kumi_NK : NK ;
+fun kumina_1_NK : NK ;
+fun kumina_2_NK : NK ;
+fun kuminen_NK : NK ;
+fun kumissi_NK : NK ;
+fun kumista_VK : VK ;
+fun kumistin_NK : NK ;
+fun kumisuttaa_VK : VK ;
+fun kumittaa_VK : VK ;
+fun kumkvatti_NK : NK ;
+fun kumma_AK : AK ;
+fun kummajainen_NK : NK ;
+fun kummaksua_VK : VK ;
+fun kummallinen_AK : AK ;
+--+ fun kummallisesti_AdvK : AdvK ;
+fun kummallisuus_NK : NK ;
+fun kummankinlainen_NK : NK ;
+fun kummanne_AdvK : AdvK ;
+--? fun kummarit_NK : NK ;
+fun kummastella_VK : VK ;
+fun kummastelu_NK : NK ;
+--+ fun kummasti_AdvK : AdvK ;
+fun kummastua_VK : VK ;
+fun kummastuksissaan_AdvK : AdvK ;
+fun kummastus_NK : NK ;
+fun kummastuttaa_VK : VK ;
+fun kummata_VK : VK ;
+fun kummeksia_VK : VK ;
+fun kummeksua_VK : VK ;
+fun kummeksuttaa_VK : VK ;
+fun kummeli_NK : NK ;
+fun kummeta_VK : VK ;
+fun kummi_NK : NK ;
+fun kumminkaan_AdvK : AdvK ;
+fun kumminkin_AdvK : AdvK ;
+fun kummissaan_AdvK : AdvK ;
+fun kummitella_VK : VK ;
+fun kummittelu_NK : NK ;
+fun kummitus_NK : NK ;
+fun kummoinen_NK : NK ;
+fun kummuta_VK : VK ;
+fun kumoamaton_NK : NK ;
+fun kumoamattomasti_AdvK : AdvK ;
+fun kumoamattomuus_NK : NK ;
+fun kumollaan_AdvK : AdvK ;
+fun kumolleen_AdvK : AdvK ;
+fun kumoon_AdvK : AdvK ;
+fun kumossa_AdvK : AdvK ;
+fun kumota_VK : VK ;
+fun kumottaa_VK : VK ;
+fun kumotus_NK : NK ;
+fun kumouksellinen_NK : NK ;
+fun kumouksellisuus_NK : NK ;
+fun kumous_NK : NK ;
+fun kumoutua_VK : VK ;
+fun kumpainen_NK : NK ;
+fun kumpainenkaan_NK : NK ;
+fun kumpainenkin_NK : NK ;
+fun kumpare_NK : NK ;
+fun kumpareikko_NK : NK ;
+fun kumpareinen_NK : NK ;
+fun kumpeli_NK : NK ;
+fun kumpi_NK : NK ;
+fun kumpikaan_NK : NK ;
+fun kumpikin_NK : NK ;
+fun kumppani_NK : NK ;
+--? fun kumppanukset_NK : NK ;
+fun kumppanuus_NK : NK ;
+fun kumpu_NK : NK ;
+fun kumpuilla_VK : VK ;
+fun kumpuinen_NK : NK ;
+fun kumu_1_NK : NK ;
+fun kumu_2_NK : NK ;
+fun kumulaatio_NK : NK ;
+fun kumulatiivinen_NK : NK ;
+fun kumuloida_VK : VK ;
+fun kumuloitua_VK : VK ;
+fun kumuri_NK : NK ;
+fun kun_AdvK : AdvK ;
+fun kundi_NK : NK ;
+fun kung_fu_NK : NK ;
+fun kungfutselainen_NK : NK ;
+fun kungfutselaisuus_NK : NK ;
+fun kuningas_NK : NK ;
+fun kuningasaika_NK : NK ;
+fun kuningatar_NK : NK ;
+fun kuninkaallinen_AK : AK ;
+--+ fun kuninkaallisesti_AdvK : AdvK ;
+fun kuninkaallisuus_NK : NK ;
+fun kuninkuus_NK : NK ;
+fun kunkku_NK : NK ;
+fun kunnallinen_NK : NK ;
+fun kunnallistaa_VK : VK ;
+fun kunnari_NK : NK ;
+fun kunnas_NK : NK ;
+fun kunne_AdvK : AdvK ;
+fun kunnekaan_AdvK : AdvK ;
+fun kunnekin_AdvK : AdvK ;
+fun kunnes_AdvK : AdvK ;
+fun kunnia_NK : NK ;
+fun kunniakas_AK : AK ;
+--+ fun kunniakkaasti_AdvK : AdvK ;
+fun kunniakkuus_NK : NK ;
+fun kunniallinen_AK : AK ;
+--+ fun kunniallisesti_AdvK : AdvK ;
+fun kunniallisuus_NK : NK ;
+--+ fun kunnianhimoisesti_AdvK : AdvK ;
+fun kunniaton_NK : NK ;
+fun kunniattomasti_AdvK : AdvK ;
+fun kunnioitettava_AK : AK ;
+--+ fun kunnioitettavasti_AdvK : AdvK ;
+fun kunnioitettavuus_NK : NK ;
+fun kunnioittaa_VK : VK ;
+fun kunnioittava_AK : AK ;
+--+ fun kunnioittavasti_AdvK : AdvK ;
+fun kunnioitus_NK : NK ;
+fun kunnittain_AdvK : AdvK ;
+fun kunnittainen_NK : NK ;
+fun kunnokas_NK : NK ;
+fun kunnolla_AdvK : AdvK ;
+fun kunnollinen_AK : AK ;
+--+ fun kunnollisesti_AdvK : AdvK ;
+fun kunnollisuus_NK : NK ;
+fun kunnon_AdvK : AdvK ;
+fun kunnossa_AdvK : AdvK ;
+fun kunnostaa_VK : VK ;
+fun kunnostamo_NK : NK ;
+fun kunnostautua_VK : VK ;
+fun kunnostus_NK : NK ;
+fun kunnoton_NK : NK ;
+fun kunpa_AdvK : AdvK ;
+fun kunta_NK : NK ;
+fun kunto_NK : NK ;
+fun kuntoilija_NK : NK ;
+fun kuntoilla_VK : VK ;
+fun kuntoilu_NK : NK ;
+fun kuntoisuus_NK : NK ;
+fun kuntoon_AdvK : AdvK ;
+fun kuntouttaa_VK : VK ;
+fun kuntoutua_VK : VK ;
+fun kuntoutus_NK : NK ;
+fun kuntta_NK : NK ;
+fun kuoha_NK : NK ;
+fun kuohahdella_VK : VK ;
+fun kuohahtaa_VK : VK ;
+fun kuohari_1_NK : NK ;
+fun kuohari_2_NK : NK ;
+fun kuohia_VK : VK ;
+fun kuohilas_NK : NK ;
+fun kuohinta_NK : NK ;
+fun kuohita_VK : VK ;
+fun kuohitsija_NK : NK ;
+fun kuohkea_NK : NK ;
+fun kuohketa_VK : VK ;
+fun kuohkeus_NK : NK ;
+fun kuohkeuttaa_VK : VK ;
+fun kuohkeutua_VK : VK ;
+fun kuohu_NK : NK ;
+fun kuohua_VK : VK ;
+fun kuohuinen_NK : NK ;
+fun kuohuksiin_AdvK : AdvK ;
+fun kuohuksissa_AdvK : AdvK ;
+fun kuohunta_NK : NK ;
+fun kuohuta_VK : VK ;
+fun kuohuttaa_VK : VK ;
+fun kuokinta_NK : NK ;
+fun kuokka_NK : NK ;
+fun kuokkia_VK : VK ;
+fun kuokkija_NK : NK ;
+fun kuola_NK : NK ;
+--? fun kuolaimet_NK : NK ;
+fun kuolainen_NK : NK ;
+fun kuolata_VK : VK ;
+fun kuoleentua_VK : VK ;
+fun kuolema_NK : NK ;
+fun kuolemaantuomittu_NK : NK ;
+fun kuolemanvaara_NK : NK ;
+fun kuolematon_NK : NK ;
+fun kuolemattomuus_NK : NK ;
+fun kuolettaa_VK : VK ;
+fun kuolettava_AK : AK ;
+--+ fun kuolettavasti_AdvK : AdvK ;
+fun kuolettavuus_NK : NK ;
+fun kuoletus_NK : NK ;
+fun kuoletusaika_NK : NK ;
+fun kuoleutua_VK : VK ;
+fun kuolevainen_NK : NK ;
+fun kuolevaisuus_NK : NK ;
+fun kuolevuus_NK : NK ;
+fun kuoliaaksi_AdvK : AdvK ;
+fun kuoliaana_AdvK : AdvK ;
+fun kuolinaika_NK : NK ;
+fun kuolio_NK : NK ;
+fun kuolioinen_NK : NK ;
+fun kuolioitua_VK : VK ;
+fun kuolla_VK : VK ;
+fun kuolleeton_NK : NK ;
+fun kuolleisuus_NK : NK ;
+fun kuollut_NK : NK ;
+fun kuolo_NK : NK ;
+fun kuolokohta_NK : NK ;
+fun kuoma_NK : NK ;
+fun kuomu_NK : NK ;
+fun kuona_NK : NK ;
+fun kuonnuttaa_VK : VK ;
+fun kuono_NK : NK ;
+fun kuonoinen_NK : NK ;
+fun kuontalo_NK : NK ;
+fun kuontua_VK : VK ;
+fun kuopaista_VK : VK ;
+fun kuopake_NK : NK ;
+fun kuopanne_NK : NK ;
+fun kuopata_VK : VK ;
+fun kuopia_VK : VK ;
+fun kuoppa_NK : NK ;
+fun kuoppaantua_VK : VK ;
+fun kuoppainen_NK : NK ;
+fun kuoppautua_VK : VK ;
+fun kuopsuttaa_VK : VK ;
+fun kuopus_NK : NK ;
+fun kuoputtaa_VK : VK ;
+fun kuore_NK : NK ;
+fun kuorettua_VK : VK ;
+fun kuorettuma_NK : NK ;
+fun kuoreutua_VK : VK ;
+fun kuoreutuma_NK : NK ;
+fun kuori_1_NK : NK ;
+fun kuori_2_NK : NK ;
+fun kuoria_VK : VK ;
+fun kuoriainen_NK : NK ;
+fun kuorike_NK : NK ;
+fun kuorikko_NK : NK ;
+fun kuorimo_NK : NK ;
+fun kuorinen_NK : NK ;
+fun kuorinta_NK : NK ;
+fun kuorittaa_VK : VK ;
+fun kuoriutua_VK : VK ;
+fun kuorma_NK : NK ;
+fun kuormaaja_NK : NK ;
+fun kuormain_NK : NK ;
+fun kuormallinen_NK : NK ;
+fun kuormasto_NK : NK ;
+fun kuormata_VK : VK ;
+fun kuormittaa_VK : VK ;
+fun kuormittain_AdvK : AdvK ;
+fun kuormitteinen_NK : NK ;
+fun kuormittua_VK : VK ;
+fun kuormitus_NK : NK ;
+fun kuormuri_NK : NK ;
+fun kuoro_NK : NK ;
+fun kuorrute_NK : NK ;
+fun kuorruttaa_VK : VK ;
+fun kuorrutus_NK : NK ;
+fun kuorsata_VK : VK ;
+fun kuorsaus_NK : NK ;
+fun kuortua_VK : VK ;
+fun kuortuma_NK : NK ;
+fun kuorukka_NK : NK ;
+fun kuosi_NK : NK ;
+fun kuosiinkudottu_NK : NK ;
+fun kuosiinneulottu_NK : NK ;
+fun kuosikas_NK : NK ;
+fun kuosillinen_NK : NK ;
+fun kuosinen_NK : NK ;
+fun kuosittaa_VK : VK ;
+fun kuositus_NK : NK ;
+fun kuovi_NK : NK ;
+fun kupari_NK : NK ;
+fun kuparinen_NK : NK ;
+fun kuparoida_VK : VK ;
+fun kuparointi_NK : NK ;
+fun kupata_VK : VK ;
+fun kupeella_AdvK : AdvK ;
+fun kupeelle_AdvK : AdvK ;
+fun kupeelta_AdvK : AdvK ;
+fun kupeeseen_AdvK : AdvK ;
+fun kupeessa_AdvK : AdvK ;
+fun kupeesta_AdvK : AdvK ;
+fun kupeinen_NK : NK ;
+fun kupera_NK : NK ;
+fun kuperkeikka_NK : NK ;
+fun kupertaa_VK : VK ;
+fun kupertua_VK : VK ;
+fun kupillinen_NK : NK ;
+fun kupla_NK : NK ;
+fun kuplainen_NK : NK ;
+fun kupletti_NK : NK ;
+fun kuplia_VK : VK ;
+fun kupo_NK : NK ;
+fun kupoli_NK : NK ;
+fun kupolinen_NK : NK ;
+fun kuponki_NK : NK ;
+fun kuppa_NK : NK ;
+fun kuppaaja_NK : NK ;
+fun kuppainen_NK : NK ;
+fun kuppari_NK : NK ;
+fun kuppaus_NK : NK ;
+fun kuppauttaa_VK : VK ;
+fun kuppi_NK : NK ;
+fun kuppikoko_NK : NK ;
+fun kuppila_NK : NK ;
+fun kupponen_NK : NK ;
+fun kupriitti_NK : NK ;
+fun kupristaa_VK : VK ;
+fun kupristua_VK : VK ;
+fun kupro_NK : NK ;
+fun kupru_NK : NK ;
+fun kupruilla_VK : VK ;
+fun kupsahtaa_VK : VK ;
+fun kupu_NK : NK ;
+fun kupula_NK : NK ;
+fun kupura_NK : NK ;
+fun kupurainen_NK : NK ;
+fun kura_NK : NK ;
+fun kuraantua_VK : VK ;
+fun kuraattori_NK : NK ;
+fun kurainen_NK : NK ;
+fun kurantti_NK : NK ;
+fun kurare_NK : NK ;
+fun kurata_VK : VK ;
+fun kurdi_NK : NK ;
+fun kure_NK : NK ;
+fun kureinen_NK : NK ;
+fun kureutua_VK : VK ;
+fun kurho_NK : NK ;
+fun kuri_NK : NK ;
+fun kuriiri_NK : NK ;
+fun kurikka_NK : NK ;
+fun kurillaan_AdvK : AdvK ;
+fun kurillinen_AK : AK ;
+--+ fun kurillisesti_AdvK : AdvK ;
+fun kurimus_NK : NK ;
+fun kurin_AdvK : AdvK ;
+fun kurina_NK : NK ;
+fun kurinpidollinen_NK : NK ;
+fun kuriositeetti_NK : NK ;
+fun kurista_VK : VK ;
+fun kuristaa_VK : VK ;
+fun kuristaja_NK : NK ;
+fun kuristin_NK : NK ;
+fun kuristua_VK : VK ;
+fun kuristus_NK : NK ;
+fun kuriton_NK : NK ;
+fun kurittaa_VK : VK ;
+fun kurittaja_NK : NK ;
+fun kurittomasti_AdvK : AdvK ;
+fun kurittomuus_NK : NK ;
+fun kuritus_NK : NK ;
+fun kurja_AK : AK ;
+fun kurjalisto_NK : NK ;
+--+ fun kurjasti_AdvK : AdvK ;
+fun kurjimus_NK : NK ;
+fun kurjistaa_VK : VK ;
+fun kurjistua_VK : VK ;
+fun kurjuus_NK : NK ;
+fun kurkata_VK : VK ;
+fun kurki_NK : NK ;
+fun kurkistaa_VK : VK ;
+fun kurkistelija_NK : NK ;
+fun kurkistella_VK : VK ;
+fun kurkistus_NK : NK ;
+fun kurkkailla_VK : VK ;
+fun kurkkia_VK : VK ;
+fun kurkku_1_NK : NK ;
+fun kurkku_2_NK : NK ;
+fun kurkkuinen_NK : NK ;
+fun kurko_NK : NK ;
+fun kurkotella_VK : VK ;
+fun kurkottaa_VK : VK ;
+fun kurkottautua_VK : VK ;
+fun kurkuma_NK : NK ;
+fun kurlata_VK : VK ;
+fun kurlaus_NK : NK ;
+fun kurmitsa_NK : NK ;
+fun kurnia_VK : VK ;
+fun kurnuttaa_VK : VK ;
+fun kuroa_VK : VK ;
+fun kurotella_VK : VK ;
+fun kurottaa_VK : VK ;
+fun kurottautua_VK : VK ;
+fun kurottua_VK : VK ;
+fun kurouma_NK : NK ;
+fun kuroutua_VK : VK ;
+fun kuroutuma_NK : NK ;
+fun kurpitsa_NK : NK ;
+fun kurppa_NK : NK ;
+fun kurra_NK : NK ;
+fun kurre_NK : NK ;
+fun kurri_NK : NK ;
+fun kursailematon_NK : NK ;
+fun kursailla_VK : VK ;
+fun kursailu_NK : NK ;
+fun kursastella_VK : VK ;
+fun kursia_VK : VK ;
+fun kursiivi_NK : NK ;
+fun kursivoida_VK : VK ;
+fun kursivointi_NK : NK ;
+fun kursori_NK : NK ;
+fun kursorinen_AK : AK ;
+--+ fun kursorisesti_AdvK : AdvK ;
+fun kurssi_NK : NK ;
+fun kurssittaa_VK : VK ;
+fun kurtiisi_NK : NK ;
+fun kurtisaani_NK : NK ;
+fun kurtiseerata_VK : VK ;
+fun kurtistaa_VK : VK ;
+fun kurtistua_VK : VK ;
+fun kurttu_NK : NK ;
+fun kurttuinen_NK : NK ;
+fun kuru_NK : NK ;
+fun kurva_NK : NK ;
+fun kurvailla_VK : VK ;
+fun kurvainen_NK : NK ;
+fun kurvata_VK : VK ;
+fun kurvi_NK : NK ;
+fun kurvikas_NK : NK ;
+fun kurvikkuus_NK : NK ;
+fun kurvinen_NK : NK ;
+fun kusaista_VK : VK ;
+fun kuseksia_VK : VK ;
+fun kuseskella_VK : VK ;
+fun kusettaa_VK : VK ;
+fun kusettaja_NK : NK ;
+fun kusi_NK : NK ;
+fun kusiainen_NK : NK ;
+fun kusinen_NK : NK ;
+fun kuskailla_VK : VK ;
+fun kuskata_VK : VK ;
+fun kuskaus_NK : NK ;
+fun kuski_NK : NK ;
+fun kuskus_NK : NK ;
+fun kussa_AdvK : AdvK ;
+fun kusta_1_AdvK : AdvK ;
+fun kusta_2_VK : VK ;
+fun kustanne_NK : NK ;
+fun kustannus_NK : NK ;
+fun kustantaa_VK : VK ;
+fun kustantaja_NK : NK ;
+fun kustantamo_NK : NK ;
+fun kustavilainen_NK : NK ;
+fun kustavilaisaika_NK : NK ;
+fun kustos_NK : NK ;
+fun kuta_AdvK : AdvK ;
+fun kutakuinkin_AdvK : AdvK ;
+fun kutale_NK : NK ;
+fun kutea_VK : VK ;
+fun kuteilla_AdvK : AdvK ;
+fun kuteille_AdvK : AdvK ;
+fun kuteinen_NK : NK ;
+fun kuteloida_VK : VK ;
+fun kuten_AdvK : AdvK ;
+fun kuti_1_NK : NK ;
+fun kuti_2_AdvK : AdvK ;
+fun kuti_3_AdvK : AdvK ;
+fun kutiaa_AdvK : AdvK ;
+fun kutina_NK : NK ;
+fun kutista_VK : VK ;
+fun kutistaa_VK : VK ;
+fun kutistua_VK : VK ;
+fun kutistuma_NK : NK ;
+fun kutistumiskerroin_NK : NK ;
+fun kutistus_NK : NK ;
+fun kutistuvuus_NK : NK ;
+fun kutitella_VK : VK ;
+fun kutittaa_VK : VK ;
+fun kutitus_NK : NK ;
+fun kutka_NK : NK ;
+fun kutkuta_VK : VK ;
+fun kutkutella_VK : VK ;
+fun kutkuttaa_VK : VK ;
+fun kutoa_VK : VK ;
+fun kutoinen_NK : NK ;
+fun kutoja_NK : NK ;
+fun kutomo_NK : NK ;
+fun kutonen_NK : NK ;
+fun kutoutua_VK : VK ;
+fun kutrinen_NK : NK ;
+fun kutrit_NK : NK ;
+fun kutsu_NK : NK ;
+fun kutsua_VK : VK ;
+fun kutsuja_NK : NK ;
+fun kutsumaton_NK : NK ;
+fun kutsumus_NK : NK ;
+fun kutsunta_NK : NK ;
+fun kutsuttaa_VK : VK ;
+fun kutteri_1_NK : NK ;
+fun kutteri_2_NK : NK ;
+fun kuttu_NK : NK ;
+fun kuttula_NK : NK ;
+fun kutu_NK : NK ;
+fun kutuaika_NK : NK ;
+fun kutuinen_NK : NK ;
+fun kutyymi_NK : NK ;
+fun kuu_NK : NK ;
+fun kuudennes_NK : NK ;
+fun kuudes_NK : NK ;
+fun kuudesti_AdvK : AdvK ;
+fun kuudestilaukeava_NK : NK ;
+fun kuukahtaa_VK : VK ;
+fun kuukausittain_AdvK : AdvK ;
+fun kuukausittainen_NK : NK ;
+fun kuukautissuoja_NK : NK ;
+fun kuukkeli_NK : NK ;
+fun kuukkia_VK : VK ;
+fun kuukunen_NK : NK ;
+fun kuula_NK : NK ;
+fun kuulakas_NK : NK ;
+fun kuulakkuus_NK : NK ;
+fun kuulalaakeroida_VK : VK ;
+fun kuulas_NK : NK ;
+fun kuulaus_NK : NK ;
+fun kuulema_AdvK : AdvK ;
+fun kuulematon_NK : NK ;
+fun kuulemattomuus_NK : NK ;
+fun kuulemiin_AdvK : AdvK ;
+fun kuulemma_AdvK : AdvK ;
+fun kuuliainen_AK : AK ;
+--+ fun kuuliaisesti_AdvK : AdvK ;
+--? fun kuuliaiset_NK : NK ;
+fun kuuliaisuus_NK : NK ;
+fun kuulija_NK : NK ;
+fun kuulla_VK : VK ;
+fun kuullottaa_VK : VK ;
+fun kuullotus_NK : NK ;
+fun kuulo_NK : NK ;
+fun kuuloke_NK : NK ;
+fun kuulonheikkenema'_NK : NK ;
+fun kuulostaa_VK : VK ;
+fun kuulostella_VK : VK ;
+fun kuulostus_NK : NK ;
+fun kuultaa_VK : VK ;
+fun kuultava_1_AK : AK ;
+fun kuultava_2_AK : AK ;
+--+ fun kuultavasti_AdvK : AdvK ;
+fun kuultavuus_1_NK : NK ;
+fun kuultavuus_2_NK : NK ;
+fun kuulto_NK : NK ;
+fun kuulu_NK : NK ;
+fun kuulua_VK : VK ;
+fun kuuluisa_NK : NK ;
+fun kuuluisuus_NK : NK ;
+fun kuulumaton_NK : NK ;
+fun kuulumattomasti_AdvK : AdvK ;
+fun kuulumattomiin_AdvK : AdvK ;
+fun kuulumattomissa_AdvK : AdvK ;
+--? fun kuulumiset_NK : NK ;
+fun kuulustelija_NK : NK ;
+fun kuulustella_VK : VK ;
+fun kuulusteltava_NK : NK ;
+fun kuulustelu_NK : NK ;
+fun kuuluttaa_VK : VK ;
+fun kuuluttaja_NK : NK ;
+fun kuuluttamo_NK : NK ;
+fun kuulutus_NK : NK ;
+fun kuuluva_AK : AK ;
+--+ fun kuuluvasti_AdvK : AdvK ;
+fun kuuluviin_AdvK : AdvK ;
+fun kuuluvilla_AdvK : AdvK ;
+fun kuuluville_AdvK : AdvK ;
+fun kuuluvilta_AdvK : AdvK ;
+fun kuuluvissa_AdvK : AdvK ;
+fun kuuluvista_AdvK : AdvK ;
+fun kuuluvuus_NK : NK ;
+fun kuuma_AK : AK ;
+--+ fun kuumasti_AdvK : AdvK ;
+fun kuumavalssata_VK : VK ;
+fun kuume_NK : NK ;
+fun kuumeeton_NK : NK ;
+fun kuumeilla_VK : VK ;
+fun kuumeilu_NK : NK ;
+fun kuumeinen_AK : AK ;
+--+ fun kuumeisesti_AdvK : AdvK ;
+fun kuumennin_NK : NK ;
+fun kuumennus_NK : NK ;
+fun kuumentaa_VK : VK ;
+fun kuumenteinen_NK : NK ;
+fun kuumentua_VK : VK ;
+fun kuumeta_VK : VK ;
+fun kuumiltaan_AdvK : AdvK ;
+fun kuumissaan_AdvK : AdvK ;
+fun kuumoittaa_VK : VK ;
+fun kuumoitus_NK : NK ;
+fun kuumottaa_VK : VK ;
+fun kuumua_VK : VK ;
+fun kuumuus_NK : NK ;
+fun kuunaan_AdvK : AdvK ;
+fun kuunari_NK : NK ;
+fun kuunnella_VK : VK ;
+fun kuunnelma_NK : NK ;
+fun kuuntelija_NK : NK ;
+fun kuuntelu_NK : NK ;
+fun kuupallinen_1_NK : NK ;
+fun kuupallinen_2_NK : NK ;
+fun kuuppa_1_NK : NK ;
+fun kuuppa_2_NK : NK ;
+fun kuura_NK : NK ;
+fun kuurainen_NK : NK ;
+fun kuuraus_NK : NK ;
+fun kuuri_1_NK : NK ;
+fun kuuri_2_NK : NK ;
+fun kuuria_NK : NK ;
+fun kuurna_NK : NK ;
+fun kuurnita_VK : VK ;
+fun kuurnittaa_VK : VK ;
+fun kuurnitus_NK : NK ;
+fun kuuro_1_NK : NK ;
+fun kuuro_2_NK : NK ;
+fun kuuroittain_AdvK : AdvK ;
+fun kuuroittainen_NK : NK ;
+fun kuurous_NK : NK ;
+fun kuurouttaa_VK : VK ;
+fun kuuroutua_VK : VK ;
+fun kuusettua_VK : VK ;
+fun kuusi_1_NK : NK ;
+fun kuusi_2_NK : NK ;
+fun kuusikko_1_NK : NK ;
+fun kuusikko_2_NK : NK ;
+fun kuusilo_NK : NK ;
+fun kuusinen_NK : NK ;
+fun kuusio_1_NK : NK ;
+fun kuusio_2_NK : NK ;
+fun kuusisto_NK : NK ;
+fun kuutamo_NK : NK ;
+fun kuutamoinen_NK : NK ;
+fun kuutio_NK : NK ;
+fun kuutioida_VK : VK ;
+fun kuutioinen_NK : NK ;
+fun kuutiointi_NK : NK ;
+fun kuutioittain_AdvK : AdvK ;
+fun kuutiojuuri_NK : NK ;
+fun kuutiollinen_AK : AK ;
+--+ fun kuutiollisesti_AdvK : AdvK ;
+--+ fun kuutiomaisesti_AdvK : AdvK ;
+fun kuutiomaisuus_NK : NK ;
+fun kuutisen_AdvK : AdvK ;
+fun kuutisenkymmenta'_AdvK : AdvK ;
+fun kuuton_NK : NK ;
+fun kuutonen_NK : NK ;
+fun kuutti_1_NK : NK ;
+fun kuutti_2_NK : NK ;
+fun kuva_NK : NK ;
+fun kuvaaja_NK : NK ;
+fun kuvaamaton_NK : NK ;
+fun kuvaamattomasti_AdvK : AdvK ;
+fun kuvaamo_NK : NK ;
+fun kuvaannollinen_AK : AK ;
+--+ fun kuvaannollisesti_AdvK : AdvK ;
+fun kuvaava_NK : NK ;
+fun kuvaelma_NK : NK ;
+fun kuvailla_VK : VK ;
+fun kuvailu_NK : NK ;
+fun kuvainraastaja_NK : NK ;
+fun kuvajainen_NK : NK ;
+fun kuvake_NK : NK ;
+fun kuvakoko_NK : NK ;
+fun kuvallinen_AK : AK ;
+--+ fun kuvallisesti_AdvK : AdvK ;
+fun kuvallisuus_NK : NK ;
+fun kuvantaa_VK : VK ;
+fun kuvantua_VK : VK ;
+fun kuvanveista'ja'_NK : NK ;
+fun kuvas_NK : NK ;
+fun kuvastaa_VK : VK ;
+fun kuvastaja_NK : NK ;
+fun kuvastella_VK : VK ;
+fun kuvastin_NK : NK ;
+fun kuvasto_NK : NK ;
+fun kuvastua_VK : VK ;
+fun kuvastus_NK : NK ;
+fun kuvata_VK : VK ;
+fun kuvatus_NK : NK ;
+fun kuvauksellinen_NK : NK ;
+fun kuvaus_NK : NK ;
+fun kuvauttaa_VK : VK ;
+fun kuvautua_VK : VK ;
+fun kuve_NK : NK ;
+fun kuvernementti_NK : NK ;
+fun kuverno'o'ri_NK : NK ;
+fun kuvertti_NK : NK ;
+fun kuvio_NK : NK ;
+fun kuvioida_VK : VK ;
+fun kuvioinen_NK : NK ;
+fun kuviointi_NK : NK ;
+fun kuvioitus_NK : NK ;
+fun kuviollinen_NK : NK ;
+fun kuviopainettu_NK : NK ;
+fun kuvitella_VK : VK ;
+fun kuvitelma_NK : NK ;
+fun kuvittaa_VK : VK ;
+fun kuvittaja_NK : NK ;
+fun kuvitteellinen_NK : NK ;
+fun kuvittelu_NK : NK ;
+fun kuvitus_NK : NK ;
+fun kuvottaa_VK : VK ;
+fun kuvotus_NK : NK ;
+fun kvadriljoona_NK : NK ;
+fun kvadrofonia_NK : NK ;
+fun kvalifikaatio_NK : NK ;
+fun kvalifioida_VK : VK ;
+fun kvalifiointi_NK : NK ;
+fun kvalitatiivinen_AK : AK ;
+--+ fun kvalitatiivisesti_AdvK : AdvK ;
+fun kvaliteetti_NK : NK ;
+fun kvantifioida_VK : VK ;
+fun kvantifiointi_NK : NK ;
+fun kvantitatiivinen_AK : AK ;
+--+ fun kvantitatiivisesti_AdvK : AdvK ;
+fun kvantiteetti_NK : NK ;
+fun kvantittua_VK : VK ;
+fun kvantti_NK : NK ;
+fun kvanttiutua_VK : VK ;
+fun kvarkki_1_NK : NK ;
+fun kvarkki_2_NK : NK ;
+fun kvartetti_NK : NK ;
+fun kvartetto_NK : NK ;
+fun kvartsi_NK : NK ;
+fun kvartsiitti_NK : NK ;
+fun kvartsinen_NK : NK ;
+fun kvartti_NK : NK ;
+fun kvarta'a'ri_NK : NK ;
+fun kvarta'a'rinen_NK : NK ;
+fun kvasaari_NK : NK ;
+fun kveekari_NK : NK ;
+fun kveeni_NK : NK ;
+fun kverulantti_NK : NK ;
+fun kvintetti_NK : NK ;
+fun kvintetto_NK : NK ;
+fun kvintiljoona_NK : NK ;
+fun kvintti_NK : NK ;
+fun kvitteni_NK : NK ;
+fun kyberneetikko_NK : NK ;
+fun kyberneettinen_NK : NK ;
+fun kybernetiikka_NK : NK ;
+fun kyborgi_NK : NK ;
+fun kydo'tta'a'_VK : VK ;
+fun kydo'tys_NK : NK ;
+fun kyeta'_VK : VK ;
+fun kyhjo'tta'a'_VK : VK ;
+fun kyhmy_NK : NK ;
+fun kyhmyinen_NK : NK ;
+fun kyhnytella'_VK : VK ;
+fun kyhnytta'a'_VK : VK ;
+fun kyha'elma'_NK : NK ;
+fun kyha'illa'_VK : VK ;
+fun kyha'ily_NK : NK ;
+fun kyha'ta'_VK : VK ;
+fun kyha'ys_NK : NK ;
+fun kyinen_NK : NK ;
+fun kykenema'tto'myys_NK : NK ;
+fun kykenema'to'n_NK : NK ;
+fun kykenevyys_NK : NK ;
+fun kykeneva'_NK : NK ;
+fun kykkia'_VK : VK ;
+fun kyklooppi_NK : NK ;
+fun kyky_NK : NK ;
+fun kykyinen_NK : NK ;
+fun kyljekka'in_AdvK : AdvK ;
+fun kyljelleen_AdvK : AdvK ;
+fun kyljella'a'n_AdvK : AdvK ;
+fun kyljes_NK : NK ;
+fun kyljitta'in_AdvK : AdvK ;
+fun kyljitysten_AdvK : AdvK ;
+fun kyljys_NK : NK ;
+fun kylki_NK : NK ;
+fun kylkimyyrya'_AdvK : AdvK ;
+fun kylkinen_NK : NK ;
+fun kylkia'inen_NK : NK ;
+fun kylliksi_AdvK : AdvK ;
+fun kyllin_AdvK : AdvK ;
+fun kyllyys_NK : NK ;
+fun kylla'_AdvK : AdvK ;
+fun kylla'inen_NK : NK ;
+fun kylla'ste_NK : NK ;
+fun kylla'steinen_NK : NK ;
+fun kylla'stymisraja_NK : NK ;
+fun kylla'stys_NK : NK ;
+fun kylla'stytta'a'_VK : VK ;
+fun kylla'stya'_VK : VK ;
+fun kylla'sta'mo'_NK : NK ;
+fun kylla'sta'a'_VK : VK ;
+fun kylla'a'nnytta'a'_VK : VK ;
+fun kylla'a'ntya'_VK : VK ;
+fun kylmentya'_VK : VK ;
+fun kylmenta'a'_VK : VK ;
+fun kylmettya'_VK : VK ;
+fun kylmetta'a'_VK : VK ;
+fun kylmetytta'a'_VK : VK ;
+fun kylmeta'_VK : VK ;
+fun kylmilleen_AdvK : AdvK ;
+fun kylmilla'a'n_AdvK : AdvK ;
+fun kylmilta'a'n_AdvK : AdvK ;
+fun kylmissa'a'n_AdvK : AdvK ;
+fun kylmio'_NK : NK ;
+fun kylmyys_NK : NK ;
+fun kylma'_AK : AK ;
+--+ fun kylma'kiskoisesti_AdvK : AdvK ;
+fun kylma'kiskoisuus_NK : NK ;
+fun kylma'kko'_NK : NK ;
+--+ fun kylma'pa'isesti_AdvK : AdvK ;
+fun kylma'pa'isyys_NK : NK ;
+--+ fun kylma'sti_AdvK : AdvK ;
+--+ fun kylma'syda'misesti_AdvK : AdvK ;
+fun kylma'ta'_VK : VK ;
+fun kylma'valssata_VK : VK ;
+fun kylpea'_VK : VK ;
+fun kylpija'_NK : NK ;
+fun kylppa'ri_NK : NK ;
+fun kylpy_NK : NK ;
+fun kylpyla'_NK : NK ;
+fun kyltti_NK : NK ;
+fun kyltyma'tto'myys_NK : NK ;
+fun kyltyma'to'n_NK : NK ;
+fun kyltya'_VK : VK ;
+fun kylvetta'ja'_NK : NK ;
+fun kylvetta'a'_VK : VK ;
+fun kylvetys_NK : NK ;
+fun kylva'ja'_NK : NK ;
+fun kylva'a'_VK : VK ;
+fun kylvo'_NK : NK ;
+fun kylvo'aika_NK : NK ;
+fun kylvo's_NK : NK ;
+fun kyly_NK : NK ;
+fun kyla'_NK : NK ;
+fun kyla'illa'_VK : VK ;
+fun kyla'ily_NK : NK ;
+fun kyla'la'inen_NK : NK ;
+fun kyla'ssa'_AdvK : AdvK ;
+fun kyla'sta'_AdvK : AdvK ;
+fun kyla'a'n_AdvK : AdvK ;
+fun kymi_NK : NK ;
+fun kymmen_NK : NK ;
+fun kymmenen_NK : NK ;
+fun kymmenennes_NK : NK ;
+fun kymmenes_1_NK : NK ;
+fun kymmenes_2_NK : NK ;
+fun kymmenesti_AdvK : AdvK ;
+fun kymmenikko'_NK : NK ;
+fun kymmeninen_NK : NK ;
+fun kymmenisen_AdvK : AdvK ;
+fun kymmenisentuhatta_AdvK : AdvK ;
+fun kymmenitta'in_AdvK : AdvK ;
+fun kymmenys_NK : NK ;
+fun kymnaasi_NK : NK ;
+fun kymnasisti_NK : NK ;
+fun kymppi_NK : NK ;
+fun kymppinen_NK : NK ;
+fun kymri_NK : NK ;
+fun kynia'_VK : VK ;
+fun kynnenjuuri_NK : NK ;
+fun kynnys_NK : NK ;
+fun kynna's_NK : NK ;
+fun kynno's_NK : NK ;
+fun kynsi_NK : NK ;
+fun kynsika's_NK : NK ;
+fun kynsimo'_NK : NK ;
+fun kynsia'_VK : VK ;
+fun kynsa'ista'_VK : VK ;
+fun kynte_NK : NK ;
+fun kynteli_NK : NK ;
+fun kyntinen_NK : NK ;
+fun kyntteli_NK : NK ;
+fun kynttelikko'_NK : NK ;
+fun kynttila'_NK : NK ;
+fun kyntta'a'_VK : VK ;
+fun kynta'ja'_NK : NK ;
+fun kynta'a'_VK : VK ;
+fun kynto'_NK : NK ;
+fun kynto'aika_NK : NK ;
+fun kyna'_NK : NK ;
+fun kyna'ilija'_NK : NK ;
+fun kyna'illa'_VK : VK ;
+fun kyna'ily_NK : NK ;
+fun kyna'inen_NK : NK ;
+fun kyna'nveto_NK : NK ;
+fun kypsennys_NK : NK ;
+fun kypsentya'_VK : VK ;
+fun kypsenta'a'_VK : VK ;
+fun kypseta'_VK : VK ;
+fun kypsi_AdvK : AdvK ;
+fun kypsyma'tto'myys_NK : NK ;
+fun kypsyma'to'n_NK : NK ;
+fun kypsytella'_VK : VK ;
+fun kypsyttely_NK : NK ;
+fun kypsytta'mo'_NK : NK ;
+fun kypsytta'a'_VK : VK ;
+fun kypsytys_NK : NK ;
+fun kypsyys_NK : NK ;
+fun kypsya'_VK : VK ;
+fun kypsa'_AK : AK ;
+--+ fun kypsa'sti_AdvK : AdvK ;
+fun kypa'ra'_NK : NK ;
+fun kyrillinen_NK : NK ;
+fun kyrmyssa'_AdvK : AdvK ;
+fun kyrmyyn_AdvK : AdvK ;
+fun kyrpiintya'_VK : VK ;
+fun kyrpa'_NK : NK ;
+fun kyrsa'_NK : NK ;
+fun kyrva'hta'a'_VK : VK ;
+fun kyrva'ytta'a'_VK : VK ;
+fun kyra'illa'_VK : VK ;
+fun kyra'ily_NK : NK ;
+fun kyse_AdvK : AdvK ;
+fun kyseenalaistaa_VK : VK ;
+fun kyseenalaistua_VK : VK ;
+fun kyseinen_NK : NK ;
+fun kyselija'_NK : NK ;
+fun kysella'_VK : VK ;
+fun kysely_NK : NK ;
+fun kyssa'_NK : NK ;
+fun kysta_NK : NK ;
+fun kystiitti_NK : NK ;
+fun kystoskooppi_NK : NK ;
+fun kystoskopia_NK : NK ;
+fun kysta'_AdvK : AdvK ;
+fun kysyja'_NK : NK ;
+fun kysymys_NK : NK ;
+fun kysyma'_NK : NK ;
+fun kysynta'_NK : NK ;
+fun kysyva'_AK : AK ;
+--+ fun kysyva'sti_AdvK : AdvK ;
+fun kysya'_VK : VK ;
+fun kysa'ista'_VK : VK ;
+fun kytea'_VK : VK ;
+fun kytis_NK : NK ;
+fun kytkenta'_NK : NK ;
+fun kytkeyma'_NK : NK ;
+fun kytkeytya'_VK : VK ;
+fun kytkea'_VK : VK ;
+fun kytkin_NK : NK ;
+fun kytky_NK : NK ;
+fun kytkyt_NK : NK ;
+fun kytko's_NK : NK ;
+fun kyttyra'_NK : NK ;
+fun kyttyra'inen_NK : NK ;
+fun kytta'_NK : NK ;
+fun kytta'illa'_VK : VK ;
+fun kytta'ily_NK : NK ;
+fun kytta'ys_NK : NK ;
+fun kytta'a'ja'_NK : NK ;
+fun kyta'ta'_VK : VK ;
+fun kyto'_NK : NK ;
+fun kyvykkyys_NK : NK ;
+fun kyvyka's_NK : NK ;
+fun kyvytto'myys_NK : NK ;
+fun kyvyto'n_NK : NK ;
+fun kyy_NK : NK ;
+fun kyyditsija'_NK : NK ;
+fun kyyditta'a'_VK : VK ;
+fun kyyditys_NK : NK ;
+fun kyydita'_VK : VK ;
+fun kyyhky_NK : NK ;
+fun kyyhkyla'inen_NK : NK ;
+fun kyyhkynen_NK : NK ;
+fun kyyhkyslakka_NK : NK ;
+fun kyyhkysparvi_NK : NK ;
+fun kyyho'tta'a'_VK : VK ;
+fun kyykistys_NK : NK ;
+fun kyykistya'_VK : VK ;
+fun kyykkia'_VK : VK ;
+fun kyykky_NK : NK ;
+fun kyykkysilleen_AdvK : AdvK ;
+fun kyykkysilla'a'n_AdvK : AdvK ;
+fun kyykkysilta'a'n_AdvK : AdvK ;
+fun kyykkyyn_AdvK : AdvK ;
+fun kyykka'_NK : NK ;
+fun kyykylleen_AdvK : AdvK ;
+fun kyykylla'a'n_AdvK : AdvK ;
+fun kyykylta'a'n_AdvK : AdvK ;
+fun kyykyssa'_AdvK : AdvK ;
+fun kyykysta'_AdvK : AdvK ;
+fun kyykytys_NK : NK ;
+fun kyyko'tta'a'_VK : VK ;
+fun kyyla'_NK : NK ;
+fun kyyla'ta'_VK : VK ;
+fun kyynel_NK : NK ;
+fun kyynele_NK : NK ;
+fun kyynelehtia'_VK : VK ;
+fun kyyneleinen_NK : NK ;
+fun kyyneltya'_VK : VK ;
+fun kyynelo'ida'_VK : VK ;
+fun kyynelo'itya'_VK : VK ;
+fun kyynikko_NK : NK ;
+fun kyyninen_AK : AK ;
+--+ fun kyynisesti_AdvK : AdvK ;
+fun kyynisyys_NK : NK ;
+fun kyyppari_NK : NK ;
+fun kyyppi_1_NK : NK ;
+fun kyyppi_2_NK : NK ;
+fun kyyristella'_VK : VK ;
+fun kyyristely_NK : NK ;
+fun kyyristya'_VK : VK ;
+fun kyyrista'a'_VK : VK ;
+fun kyyry_NK : NK ;
+fun kyyrylleen_AdvK : AdvK ;
+fun kyyrylla'a'n_AdvK : AdvK ;
+fun kyyrylta'a'n_AdvK : AdvK ;
+fun kyyryssa'_AdvK : AdvK ;
+fun kyyrysta'_AdvK : AdvK ;
+fun kyyryyn_AdvK : AdvK ;
+fun kyyro'tta'a'_VK : VK ;
+fun kyyti_NK : NK ;
+fun kyytia'_VK : VK ;
+fun kyytto'_NK : NK ;
+fun kyo'kki_NK : NK ;
+fun kyo'my_NK : NK ;
+fun kyo'peli_NK : NK ;
+fun kyo'pelinvuori_NK : NK ;
+fun kyo'ra'ta'_VK : VK ;
+fun ka'dellinen_NK : NK ;
+fun ka'den_ka'a'nteessa'_AdvK : AdvK ;
+fun ka'deto'n_NK : NK ;
+fun ka'herrys_NK : NK ;
+fun ka'hertya'_VK : VK ;
+fun ka'herta'a'_VK : VK ;
+fun ka'heta'_VK : VK ;
+fun ka'heys_NK : NK ;
+fun ka'heytya'_VK : VK ;
+fun ka'hea'_AK : AK ;
+--+ fun ka'hea'sti_AdvK : AdvK ;
+fun ka'hina'_NK : NK ;
+fun ka'hista'_VK : VK ;
+fun ka'hminta'_NK : NK ;
+fun ka'hmia'_VK : VK ;
+fun ka'hvellys_NK : NK ;
+fun ka'hvelta'a'_VK : VK ;
+fun ka'ha'hdys_NK : NK ;
+fun ka'ha'hta'a'_VK : VK ;
+fun ka'ha'ryys_NK : NK ;
+fun ka'ha'ra'_NK : NK ;
+fun ka'ha'ra'inen_NK : NK ;
+fun ka'ki_NK : NK ;
+fun ka'kkyra'_NK : NK ;
+fun ka'kka'ra'_NK : NK ;
+fun ka'ka'tta'a'_VK : VK ;
+fun ka'ka'tys_NK : NK ;
+fun ka'ko'_NK : NK ;
+fun ka'ko'nen_NK : NK ;
+fun ka'ly_NK : NK ;
+--? fun ka'lykset_NK : NK ;
+fun ka'mmekka'_NK : NK ;
+fun ka'mmen_NK : NK ;
+fun ka'mmenenlevyinen_NK : NK ;
+fun ka'mmenta'a'_VK : VK ;
+fun ka'mppa'_NK : NK ;
+fun ka'nina'_NK : NK ;
+fun ka'nista'_VK : VK ;
+fun ka'nni_NK : NK ;
+fun ka'nninen_NK : NK ;
+fun ka'nnipa'issa'_AdvK : AdvK ;
+fun ka'nny_NK : NK ;
+fun ka'nnykka'_NK : NK ;
+fun ka'nna'ta'_VK : VK ;
+fun ka'nsistya'_VK : VK ;
+fun ka'nsittya'_VK : VK ;
+fun ka'nsa'_NK : NK ;
+fun ka'nsa'inen_NK : NK ;
+fun ka'ntty_NK : NK ;
+fun ka'na'_NK : NK ;
+fun ka'pertya'_VK : VK ;
+fun ka'perta'a'_VK : VK ;
+fun ka'ppyra'_NK : NK ;
+fun ka'ppyra'inen_NK : NK ;
+fun ka'ppa'illa'_VK : VK ;
+fun ka'ppa'ily_NK : NK ;
+fun ka'ppa'na'_NK : NK ;
+fun ka'pristella'_VK : VK ;
+fun ka'pristya'_VK : VK ;
+fun ka'prista'a'_VK : VK ;
+fun ka'psehtia'_VK : VK ;
+fun ka'py_NK : NK ;
+fun ka'pykaartilaisuus_NK : NK ;
+fun ka'pa'la'_NK : NK ;
+fun ka'pa'lo'ida'_VK : VK ;
+fun ka'pa'lo'inti_NK : NK ;
+fun ka'pa'ta'_VK : VK ;
+fun ka'reys_NK : NK ;
+fun ka'rea'_NK : NK ;
+fun ka'rhi_NK : NK ;
+fun ka'rha'ma'_NK : NK ;
+fun ka'rha'mo'ida'_VK : VK ;
+fun ka'rha'mo'inti_NK : NK ;
+fun ka'rho'_NK : NK ;
+fun ka'rina'_NK : NK ;
+fun ka'riste_NK : NK ;
+fun ka'ristys_NK : NK ;
+fun ka'ristya'_VK : VK ;
+fun ka'rista'_VK : VK ;
+fun ka'rista'a'_VK : VK ;
+fun ka'rjekkyys_NK : NK ;
+--+ fun ka'rjekka'a'sti_AdvK : AdvK ;
+fun ka'rjeka's_AK : AK ;
+fun ka'rjellinen_NK : NK ;
+fun ka'rjimma'inen_NK : NK ;
+fun ka'rjistyma'_NK : NK ;
+fun ka'rjistys_NK : NK ;
+fun ka'rjistya'_VK : VK ;
+fun ka'rjista'a'_VK : VK ;
+fun ka'rkevyys_NK : NK ;
+fun ka'rkeva'_AK : AK ;
+--+ fun ka'rkeva'sti_AdvK : AdvK ;
+fun ka'rki_NK : NK ;
+fun ka'rkiaika_NK : NK ;
+fun ka'rkinen_NK : NK ;
+fun ka'rkkyja'_NK : NK ;
+fun ka'rkkya'_VK : VK ;
+fun ka'rkka'ys_NK : NK ;
+--+ fun ka'rkka'a'sti_AdvK : AdvK ;
+fun ka'rkynta'_NK : NK ;
+fun ka'rka's_AK : AK ;
+fun ka'rppa'_NK : NK ;
+fun ka'rppa'ma'inen_NK : NK ;
+fun ka'rpa'nen_NK : NK ;
+fun ka'rpa'sparvi_NK : NK ;
+fun ka'rri_NK : NK ;
+fun ka'rry_NK : NK ;
+fun ka'rra'ri_NK : NK ;
+fun ka'rra'ta'_VK : VK ;
+fun ka'rra'ys_NK : NK ;
+fun ka'rra'a'ja'_NK : NK ;
+fun ka'rsija'_NK : NK ;
+fun ka'rsimys_NK : NK ;
+fun ka'rsima'tto'myys_NK : NK ;
+fun ka'rsima'tto'ma'sti_AdvK : AdvK ;
+fun ka'rsima'to'n_NK : NK ;
+fun ka'rsiva'llinen_AK : AK ;
+--+ fun ka'rsiva'llisesti_AdvK : AdvK ;
+fun ka'rsiva'llisyys_NK : NK ;
+fun ka'rsia'_VK : VK ;
+fun ka'rsa'_NK : NK ;
+fun ka'rsa'ka's_NK : NK ;
+fun ka'rsa'mo'_NK : NK ;
+fun ka'rttyinen_NK : NK ;
+fun ka'rttyisyys_NK : NK ;
+fun ka'rttyisa'_AK : AK ;
+--+ fun ka'rttyisa'sti_AdvK : AdvK ;
+fun ka'rtta'a'_VK : VK ;
+fun ka'rtyinen_NK : NK ;
+fun ka'rtyisa'_NK : NK ;
+fun ka'rvennys_NK : NK ;
+fun ka'rventya'_VK : VK ;
+fun ka'rventa'a'_VK : VK ;
+fun ka'rvistella'_VK : VK ;
+fun ka'ry_NK : NK ;
+fun ka'ryinen_NK : NK ;
+fun ka'rytta'a'_VK : VK ;
+fun ka'rytys_NK : NK ;
+fun ka'ryta'_VK : VK ;
+fun ka'ra'hta'a'_VK : VK ;
+--? fun ka'ra'ja't_NK : NK ;
+fun ka'ra'jo'ida'_VK : VK ;
+fun ka'ra'jo'inti_NK : NK ;
+fun ka'ra'ytta'a'_VK : VK ;
+fun ka'si_NK : NK ;
+fun ka'siaika_NK : NK ;
+fun ka'sikaulaa_AdvK : AdvK ;
+fun ka'sikka'in_AdvK : AdvK ;
+fun ka'sikopelolla_AdvK : AdvK ;
+fun ka'sikopelolta_AdvK : AdvK ;
+fun ka'siksi_AdvK : AdvK ;
+fun ka'sikynkka'_AdvK : AdvK ;
+fun ka'sika'hma'_NK : NK ;
+fun ka'sille_AdvK : AdvK ;
+fun ka'silla'_AdvK : AdvK ;
+fun ka'sin_AdvK : AdvK ;
+fun ka'sine_NK : NK ;
+fun ka'sinkohonta_NK : NK ;
+fun ka'sipohjaa_AdvK : AdvK ;
+fun ka'sissa'_AdvK : AdvK ;
+fun ka'site_NK : NK ;
+fun ka'sitella'_VK : VK ;
+fun ka'sitelta'vyys_NK : NK ;
+fun ka'sitetta'vyys_NK : NK ;
+fun ka'sitteellinen_AK : AK ;
+--+ fun ka'sitteellisesti_AdvK : AdvK ;
+fun ka'sitteellista'a'_VK : VK ;
+fun ka'sitteellisyys_NK : NK ;
+fun ka'sitteinen_NK : NK ;
+fun ka'sitteista'a'_VK : VK ;
+fun ka'sitteisto'_NK : NK ;
+fun ka'sittelema'to'n_NK : NK ;
+fun ka'sittelija'_NK : NK ;
+fun ka'sittely_NK : NK ;
+fun ka'sitta'ma'tto'myys_NK : NK ;
+fun ka'sitta'ma'tto'ma'sti_AdvK : AdvK ;
+fun ka'sitta'ma'to'n_NK : NK ;
+fun ka'sitta'a'_VK : VK ;
+fun ka'sityksin_AdvK : AdvK ;
+fun ka'sitys_NK : NK ;
+fun ka'sitysten_AdvK : AdvK ;
+--+ fun ka'sivaraisesti_AdvK : AdvK ;
+fun ka'sketta'a'_VK : VK ;
+fun ka'skea'_VK : VK ;
+fun ka'skija'_NK : NK ;
+fun ka'sky_NK : NK ;
+fun ka'skyla'inen_NK : NK ;
+fun ka'skytta'a'_VK : VK ;
+fun ka'skytys_NK : NK ;
+fun ka'sna'_NK : NK ;
+fun ka'ssa'ta'_VK : VK ;
+fun ka'teinen_NK : NK ;
+fun ka'tella'_VK : VK ;
+fun ka'tevyys_NK : NK ;
+fun ka'teva'_AK : AK ;
+--+ fun ka'teva'sti_AdvK : AdvK ;
+fun ka'tilo'_NK : NK ;
+fun ka'tilo'ida'_VK : VK ;
+fun ka'tinen_AK : AK ;
+--+ fun ka'tisesti_AdvK : AdvK ;
+fun ka'tisyys_NK : NK ;
+fun ka'tkenta'_NK : NK ;
+fun ka'tkeytya'_VK : VK ;
+fun ka'tkea'_VK : VK ;
+fun ka'tkija'_NK : NK ;
+fun ka'tkyt_NK : NK ;
+fun ka'tko'_NK : NK ;
+fun ka'ttely_NK : NK ;
+fun ka'ttenpa'a'llepaneminen_NK : NK ;
+fun ka'tyri_NK : NK ;
+fun ka'to'nen_NK : NK ;
+fun ka'veleskella'_VK : VK ;
+fun ka'velija'_NK : NK ;
+fun ka'vella'_VK : VK ;
+fun ka'vely_NK : NK ;
+fun ka'velytta'a'_VK : VK ;
+fun ka'vija'_NK : NK ;
+fun ka'va'ista'_VK : VK ;
+fun ka'va'isy_NK : NK ;
+fun ka'yda'_VK : VK ;
+fun ka'yminen_NK : NK ;
+fun ka'yma'jalkaa_AdvK : AdvK ;
+fun ka'yma'la'_NK : NK ;
+fun ka'yma'selta'_AdvK : AdvK ;
+fun ka'yma'selta'a'n_AdvK : AdvK ;
+fun ka'ynniste_NK : NK ;
+fun ka'ynnisteinen_NK : NK ;
+fun ka'ynnistin_NK : NK ;
+fun ka'ynnistys_NK : NK ;
+fun ka'ynnistyvyys_NK : NK ;
+fun ka'ynnistya'_VK : VK ;
+fun ka'ynnista'ja'_NK : NK ;
+fun ka'ynnista'a'_VK : VK ;
+fun ka'ynti_NK : NK ;
+fun ka'yntiaika_NK : NK ;
+fun ka'yntinen_NK : NK ;
+fun ka'ypyys_NK : NK ;
+fun ka'ypa'_NK : NK ;
+fun ka'yristyma'_NK : NK ;
+fun ka'yristys_NK : NK ;
+fun ka'yristya'_VK : VK ;
+fun ka'yrista'a'_VK : VK ;
+fun ka'yryys_NK : NK ;
+fun ka'yra'_NK : NK ;
+fun ka'yra'sto'_NK : NK ;
+fun ka'yskella'_VK : VK ;
+fun ka'yskennella'_VK : VK ;
+fun ka'yskentely_NK : NK ;
+fun ka'yte_NK : NK ;
+fun ka'ytella'_VK : VK ;
+fun ka'ytetty_NK : NK ;
+fun ka'ytetta'vyys_NK : NK ;
+fun ka'yttely_NK : NK ;
+fun ka'ytta'jisto'_NK : NK ;
+fun ka'ytta'ja'_NK : NK ;
+fun ka'ytta'ytyminen_NK : NK ;
+fun ka'ytta'ytyma'_NK : NK ;
+fun ka'ytta'ytya'_VK : VK ;
+fun ka'ytta'a'_VK : VK ;
+fun ka'ytto'_NK : NK ;
+fun ka'ytto'aika_NK : NK ;
+fun ka'ytto'inen_NK : NK ;
+fun ka'yta'nne_NK : NK ;
+fun ka'yta'nno'llinen_AK : AK ;
+--+ fun ka'yta'nno'llisesti_AdvK : AdvK ;
+fun ka'yta'nno'llistya'_VK : VK ;
+fun ka'yta'nno'llista'a'_VK : VK ;
+fun ka'yta'nno'llisyys_NK : NK ;
+fun ka'yta'nto'_NK : NK ;
+fun ka'yta'va'_NK : NK ;
+fun ka'yto'ksinen_NK : NK ;
+fun ka'yto's_NK : NK ;
+fun ka'yvyys_NK : NK ;
+fun ka'yva'_AK : AK ;
+--+ fun ka'yva'sti_AdvK : AdvK ;
+--? fun ka'a'dyt_NK : NK ;
+fun ka'a'kka'_NK : NK ;
+fun ka'a'mi_NK : NK ;
+fun ka'a'minta'_NK : NK ;
+fun ka'a'mitys_NK : NK ;
+fun ka'a'mia'_VK : VK ;
+fun ka'a'nne_NK : NK ;
+fun ka'a'nnekohta_NK : NK ;
+fun ka'a'nnella'_VK : VK ;
+fun ka'a'nnin_NK : NK ;
+fun ka'a'nnynna'inen_NK : NK ;
+fun ka'a'nnytta'a'_VK : VK ;
+fun ka'a'nnytys_NK : NK ;
+fun ka'a'nna'hdella'_VK : VK ;
+fun ka'a'nna'hdys_NK : NK ;
+fun ka'a'nna'hta'a'_VK : VK ;
+fun ka'a'nna'tta'a'_VK : VK ;
+fun ka'a'nno's_NK : NK ;
+--+ fun ka'a'nteentekeva'sti_AdvK : AdvK ;
+fun ka'a'nteinen_AK : AK ;
+fun ka'a'nteinen_AK : AK ;
+--+ fun ka'a'nteisesti_AdvK : AdvK ;
+fun ka'a'ntelehtia'_VK : VK ;
+fun ka'a'ntely_NK : NK ;
+fun ka'a'ntyilla'_VK : VK ;
+fun ka'a'ntymys_NK : NK ;
+fun ka'a'ntya'_VK : VK ;
+fun ka'a'nta'ja'_NK : NK ;
+fun ka'a'nta'a'_VK : VK ;
+fun ka'a'nto'_NK : NK ;
+fun ka'a'pio'_NK : NK ;
+fun ka'a'pio'ida'_VK : VK ;
+fun ka'a'pio'itya'_VK : VK ;
+fun ka'a'pa'_NK : NK ;
+fun ka'a're_NK : NK ;
+fun ka'a'riintya'_VK : VK ;
+fun ka'a'rinta'_NK : NK ;
+fun ka'a'riytya'_VK : VK ;
+fun ka'a'ria'_VK : VK ;
+fun ka'a'ria'inen_NK : NK ;
+fun ka'a'rme_NK : NK ;
+fun ka'a'rmeissa'a'n_AdvK : AdvK ;
+fun ka'a'rmema'inen_NK : NK ;
+fun ka'a'ryle_NK : NK ;
+fun ka'a'ra'ista'_VK : VK ;
+fun ka'a'ro'_NK : NK ;
+fun ka'a'ty_NK : NK ;
+fun ka'a'va'ka's_NK : NK ;
+fun ko'hina'_NK : NK ;
+fun ko'hista'_VK : VK ;
+fun ko'hitta'a'_VK : VK ;
+fun ko'hia'_VK : VK ;
+fun ko'ha'_NK : NK ;
+fun ko'kko'_NK : NK ;
+fun ko'ko'tta'a'_VK : VK ;
+fun ko'li_NK : NK ;
+fun ko'lillinen_NK : NK ;
+fun ko'lli_1_NK : NK ;
+fun ko'lli_2_NK : NK ;
+fun ko'llikka'_NK : NK ;
+fun ko'lla'hta'a'_VK : VK ;
+fun ko'llo'tella'_VK : VK ;
+fun ko'llo'ttely_NK : NK ;
+fun ko'llo'tta'a'_VK : VK ;
+fun ko'mma'hdys_NK : NK ;
+fun ko'mma'hta'a'_VK : VK ;
+fun ko'mpelyys_NK : NK ;
+fun ko'mpelo'_AK : AK ;
+fun ko'mpelo'itya'_VK : VK ;
+--+ fun ko'mpelo'sti_AdvK : AdvK ;
+fun ko'mpia'_VK : VK ;
+fun ko'nga's_NK : NK ;
+fun ko'niin_AdvK : AdvK ;
+fun ko'nnila'inen_NK : NK ;
+fun ko'ntti_NK : NK ;
+fun ko'ntta'_NK : NK ;
+fun ko'ntys_NK : NK ;
+fun ko'ntysta'a'_VK : VK ;
+fun ko'nyta'_VK : VK ;
+fun ko'no'tta'a'_VK : VK ;
+fun ko'pelo'sti_AdvK : AdvK ;
+fun ko'pitella'_VK : VK ;
+fun ko'pitta'a'_VK : VK ;
+fun ko'rila's_NK : NK ;
+fun ko'rttila'inen_NK : NK ;
+fun ko'rttila'isyys_NK : NK ;
+fun ko'ro'tella'_VK : VK ;
+fun ko'ro'tta'a'_VK : VK ;
+fun ko'ssi_1_NK : NK ;
+fun ko'ssi_2_NK : NK ;
+fun ko'ydenveto_NK : NK ;
+fun ko'yhdytta'a'_VK : VK ;
+fun ko'yhentya'_VK : VK ;
+fun ko'yheta'_VK : VK ;
+fun ko'yhtyneisyys_NK : NK ;
+fun ko'yhtya'_VK : VK ;
+fun ko'yhyys_NK : NK ;
+fun ko'yha'_AK : AK ;
+fun ko'yha'illa'_VK : VK ;
+fun ko'yha'ily_NK : NK ;
+fun ko'yha'listo'_NK : NK ;
+--+ fun ko'yha'sti_AdvK : AdvK ;
+fun ko'ykistella'_VK : VK ;
+fun ko'ykistya'_VK : VK ;
+fun ko'ykista'a'_VK : VK ;
+fun ko'ykkyyn_AdvK : AdvK ;
+fun ko'ykyssa'_AdvK : AdvK ;
+fun ko'ykysta'_AdvK : AdvK ;
+fun ko'yka'inen_AK : AK ;
+--+ fun ko'yka'isesti_AdvK : AdvK ;
+fun ko'yka'isyys_NK : NK ;
+fun ko'ynnehtia'_VK : VK ;
+fun ko'ynnelia's_NK : NK ;
+fun ko'ynno's_NK : NK ;
+fun ko'ynno'sta'a'_VK : VK ;
+fun ko'yristella'_VK : VK ;
+fun ko'yristya'_VK : VK ;
+fun ko'yrista'a'_VK : VK ;
+fun ko'yry_NK : NK ;
+fun ko'yryssa'_AdvK : AdvK ;
+fun ko'yrysta'_AdvK : AdvK ;
+fun ko'yryyn_AdvK : AdvK ;
+fun ko'ysi_NK : NK ;
+fun ko'ysisto'_NK : NK ;
+fun ko'ysitta'a'_VK : VK ;
+fun ko'yte_NK : NK ;
+fun ko'ytta'a'_VK : VK ;
+fun ko'yto's_NK : NK ;
+fun ko'o'_NK : NK ;
+fun ko'o'ri_NK : NK ;
+fun laadinta_NK : NK ;
+fun laadukas_AK : AK ;
+--+ fun laadukkaasti_AdvK : AdvK ;
+fun laadukkuus_NK : NK ;
+fun laadullinen_AK : AK ;
+--+ fun laadullisesti_AdvK : AdvK ;
+fun laadullistaa_VK : VK ;
+fun laaduton_NK : NK ;
+fun laahaantua_VK : VK ;
+fun laahata_VK : VK ;
+fun laahaus_NK : NK ;
+fun laahautua_VK : VK ;
+fun laahia_VK : VK ;
+fun laahus_NK : NK ;
+fun laahustaa_VK : VK ;
+fun laahustin_NK : NK ;
+fun laaja_AK : AK ;
+fun laajalti_AdvK : AdvK ;
+fun laajaspektrinen_NK : NK ;
+--+ fun laajasti_AdvK : AdvK ;
+fun laajenema_NK : NK ;
+fun laajenemiskerroin_NK : NK ;
+fun laajennelma_NK : NK ;
+fun laajennos_NK : NK ;
+fun laajennus_NK : NK ;
+fun laajentaa_VK : VK ;
+fun laajentua_VK : VK ;
+fun laajentuma_NK : NK ;
+fun laajeta_VK : VK ;
+fun laajuinen_NK : NK ;
+fun laajuus_NK : NK ;
+fun laaka_NK : NK ;
+fun laakea_NK : NK ;
+fun laakeri_1_NK : NK ;
+fun laakeri_2_NK : NK ;
+fun laakeroida_1_VK : VK ;
+fun laakeroida_2_VK : VK ;
+fun laakerointi_NK : NK ;
+fun laaki_NK : NK ;
+fun laakio_NK : NK ;
+fun laakso_NK : NK ;
+fun laaksoinen_NK : NK ;
+fun laama_1_NK : NK ;
+fun laama_2_NK : NK ;
+fun laamanni_NK : NK ;
+fun laannuttaa_VK : VK ;
+fun laantua_VK : VK ;
+fun laapis_NK : NK ;
+fun laardi_NK : NK ;
+fun laari_NK : NK ;
+fun laasta_VK : VK ;
+fun laastari_NK : NK ;
+fun laastaroida_VK : VK ;
+fun laastarointi_NK : NK ;
+fun laasti_NK : NK ;
+fun laastita_VK : VK ;
+fun laastitus_NK : NK ;
+fun laata_VK : VK ;
+fun laatia_VK : VK ;
+fun laatija_NK : NK ;
+fun laatikko_NK : NK ;
+fun laatikkoonkanto_NK : NK ;
+fun laatikoida_VK : VK ;
+fun laatikollinen_NK : NK ;
+fun laatikosto_NK : NK ;
+fun laatoittaa_VK : VK ;
+fun laatoitus_NK : NK ;
+fun laatta_NK : NK ;
+fun laatu_NK : NK ;
+fun laatuaika_NK : NK ;
+fun laatuinen_NK : NK ;
+fun laatuisa_NK : NK ;
+fun laatuisuus_NK : NK ;
+fun laava_NK : NK ;
+fun laavu_NK : NK ;
+fun labiili_AK : AK ;
+--+ fun labiilisti_AdvK : AdvK ;
+fun labiilius_NK : NK ;
+fun laboraattori_NK : NK ;
+fun laborantti_NK : NK ;
+fun laboratorio_NK : NK ;
+fun laboroida_VK : VK ;
+fun laborointi_NK : NK ;
+fun labradori_NK : NK ;
+fun labradoriitti_NK : NK ;
+fun labyrintti_NK : NK ;
+fun ladata_1_VK : VK ;
+fun ladata_2_VK : VK ;
+fun ladella_VK : VK ;
+fun ladelma_NK : NK ;
+fun ladonta_NK : NK ;
+fun lados_NK : NK ;
+fun lady_NK : NK ;
+fun ladylike_NK : NK ;
+fun lafka_NK : NK ;
+fun laguuni_NK : NK ;
+fun lahdata_VK : VK ;
+fun lahdeke_NK : NK ;
+fun lahdelma_NK : NK ;
+fun lahja_NK : NK ;
+fun lahjainen_NK : NK ;
+fun lahjaisuus_NK : NK ;
+fun lahjakas_AK : AK ;
+--+ fun lahjakkaasti_AdvK : AdvK ;
+fun lahjakkuus_NK : NK ;
+fun lahjaton_NK : NK ;
+fun lahjattomuus_NK : NK ;
+fun lahje_NK : NK ;
+fun lahjoa_VK : VK ;
+fun lahjoittaa_VK : VK ;
+fun lahjoittaja_NK : NK ;
+fun lahjoitus_NK : NK ;
+fun lahjoma_NK : NK ;
+fun lahjomaton_NK : NK ;
+fun lahjomattomasti_AdvK : AdvK ;
+fun lahjomattomuus_NK : NK ;
+fun lahjonta_NK : NK ;
+fun lahjottavuus_NK : NK ;
+fun lahjus_NK : NK ;
+fun lahkeinen_NK : NK ;
+fun lahko_NK : NK ;
+fun lahkolaisuus_NK : NK ;
+fun lahna_NK : NK ;
+fun laho_NK : NK ;
+fun lahokas_NK : NK ;
+fun lahokka_NK : NK ;
+fun lahota_VK : VK ;
+fun lahottaa_VK : VK ;
+fun lahottaja_NK : NK ;
+fun lahouma_NK : NK ;
+fun lahous_NK : NK ;
+fun lahoutua_VK : VK ;
+fun lahtari_NK : NK ;
+fun lahti_1_NK : NK ;
+fun lahti_2_NK : NK ;
+fun laidallinen_NK : NK ;
+fun laidemmaksi_AdvK : AdvK ;
+fun laidemmalla_AdvK : AdvK ;
+fun laidemmalle_AdvK : AdvK ;
+fun laidemmalta_AdvK : AdvK ;
+fun laidemmas_AdvK : AdvK ;
+fun laidempaa_AdvK : AdvK ;
+fun laidempana_AdvK : AdvK ;
+fun laidempi_NK : NK ;
+fun laidoittaa_VK : VK ;
+fun laidoitus_NK : NK ;
+fun laidun_NK : NK ;
+fun laiduntaa_VK : VK ;
+fun laiha_NK : NK ;
+fun laihduttaa_VK : VK ;
+fun laihduttaja_NK : NK ;
+fun laihdutus_NK : NK ;
+fun laiheliini_NK : NK ;
+fun laihentaa_VK : VK ;
+fun laihentua_VK : VK ;
+fun laiho_NK : NK ;
+fun laihtua_VK : VK ;
+fun laihuus_NK : NK ;
+fun laikka_NK : NK ;
+fun laikku_NK : NK ;
+fun laikkuinen_NK : NK ;
+fun laikkuisuus_NK : NK ;
+fun laikkuri_NK : NK ;
+fun laikuittain_AdvK : AdvK ;
+fun laikukas_NK : NK ;
+fun laikullinen_NK : NK ;
+fun laikuttaa_VK : VK ;
+fun laikutus_NK : NK ;
+fun lailla_AdvK : AdvK ;
+fun laillinen_AK : AK ;
+--+ fun laillisesti_AdvK : AdvK ;
+fun laillistaa_VK : VK ;
+fun laillistua_VK : VK ;
+fun laillistus_NK : NK ;
+fun laillistuttaa_VK : VK ;
+fun laillisuus_NK : NK ;
+fun laimea_NK : NK ;
+fun laimenne_NK : NK ;
+fun laimennos_NK : NK ;
+fun laimennus_NK : NK ;
+fun laimentaa_VK : VK ;
+fun laimentua_VK : VK ;
+fun laimeta_VK : VK ;
+fun laimeus_NK : NK ;
+fun laimi_NK : NK ;
+fun laimin_AdvK : AdvK ;
+fun laimistaa_VK : VK ;
+fun laimistua_VK : VK ;
+fun lain_AdvK : AdvK ;
+fun laina_NK : NK ;
+fun laina_aika_NK : NK ;
+fun lainaaja_NK : NK ;
+fun lainaamo_NK : NK ;
+fun lainailla_VK : VK ;
+fun lainasto_NK : NK ;
+fun lainata_VK : VK ;
+fun lainaus_NK : NK ;
+fun lainausaika_NK : NK ;
+fun lainautua_VK : VK ;
+fun laine_NK : NK ;
+fun lainehdinta_NK : NK ;
+fun lainehtia_VK : VK ;
+fun laineikas_NK : NK ;
+fun laineittaa_VK : VK ;
+fun lainen_NK : NK ;
+fun lainhuudatus_NK : NK ;
+fun lainkaan_AdvK : AdvK ;
+fun lainkohta_NK : NK ;
+fun lainoittaa_VK : VK ;
+fun lainoitteinen_NK : NK ;
+fun lainoitus_NK : NK ;
+fun lainsa'a'da'nno'llinen_NK : NK ;
+fun laipio_NK : NK ;
+fun laipoittaa_VK : VK ;
+fun laippa_NK : NK ;
+fun laisin_AdvK : AdvK ;
+fun laisinkaan_AdvK : AdvK ;
+fun laiska_AK : AK ;
+fun laiskajaakko_NK : NK ;
+fun laiskanpulskea_NK : NK ;
+--+ fun laiskasti_AdvK : AdvK ;
+fun laiskiainen_NK : NK ;
+fun laiskiintua_VK : VK ;
+fun laiskimus_NK : NK ;
+fun laiskistaa_VK : VK ;
+fun laiskistua_VK : VK ;
+fun laiskotella_VK : VK ;
+fun laiskottaa_VK : VK ;
+fun laiskottelu_NK : NK ;
+fun laiskuri_NK : NK ;
+fun laiskuus_NK : NK ;
+fun laistaa_VK : VK ;
+fun laisto_NK : NK ;
+fun laita_NK : NK ;
+fun laitainen_NK : NK ;
+fun laitama_NK : NK ;
+fun laitattaa_VK : VK ;
+fun laite_NK : NK ;
+fun laitella_VK : VK ;
+fun laitimmainen_NK : NK ;
+fun laiton_NK : NK ;
+fun laitos_NK : NK ;
+fun laitostaa_VK : VK ;
+fun laitostua_VK : VK ;
+fun laittaa_VK : VK ;
+fun laittamattomasti_AdvK : AdvK ;
+fun laittautua_VK : VK ;
+fun laitteisto_NK : NK ;
+fun laitto_NK : NK ;
+fun laittomasti_AdvK : AdvK ;
+fun laittomuus_NK : NK ;
+fun laituri_1_NK : NK ;
+fun laituri_2_NK : NK ;
+fun laiva_NK : NK ;
+fun laivaaja_NK : NK ;
+fun laivainen_NK : NK ;
+fun laivalastillinen_NK : NK ;
+fun laivasto_NK : NK ;
+fun laivata_VK : VK ;
+fun laivaus_NK : NK ;
+fun laivue_NK : NK ;
+fun laivuri_NK : NK ;
+fun laji_NK : NK ;
+fun lajikas_NK : NK ;
+fun lajike_NK : NK ;
+fun lajinen_NK : NK ;
+fun lajisto_NK : NK ;
+fun lajite_NK : NK ;
+fun lajitella_VK : VK ;
+fun lajitelma_NK : NK ;
+fun lajitin_NK : NK ;
+fun lajittaa_VK : VK ;
+fun lajittamo_NK : NK ;
+fun lajittelija_NK : NK ;
+fun lajittelu_NK : NK ;
+fun lajittua_VK : VK ;
+fun lajiutua_VK : VK ;
+fun lakaisija_NK : NK ;
+fun lakaista_VK : VK ;
+fun lakaisu_NK : NK ;
+fun lakana_NK : NK ;
+fun lakastua_VK : VK ;
+fun lakastuttaa_VK : VK ;
+fun lakata_1_VK : VK ;
+fun lakata_2_VK : VK ;
+fun lakea_NK : NK ;
+fun lakeeri_NK : NK ;
+fun lakeija_NK : NK ;
+fun lakeinen_NK : NK ;
+fun lakeus_NK : NK ;
+fun laki_1_NK : NK ;
+fun laki_2_NK : NK ;
+fun lakiasa'a'ta'va'_NK : NK ;
+fun lakinen_1_NK : NK ;
+fun lakinen_2_NK : NK ;
+fun lakittaa_VK : VK ;
+fun lakka_1_NK : NK ;
+fun lakka_2_NK : NK ;
+fun lakka_3_NK : NK ;
+fun lakkaamaton_1_NK : NK ;
+fun lakkaamaton_2_NK : NK ;
+fun lakkaamatta_AdvK : AdvK ;
+fun lakkaus_NK : NK ;
+fun lakkauttaa_1_VK : VK ;
+fun lakkauttaa_2_VK : VK ;
+fun lakkautus_NK : NK ;
+fun lakki_NK : NK ;
+--? fun lakkiaiset_NK : NK ;
+fun lakkinen_NK : NK ;
+fun lakko_NK : NK ;
+fun lakkoilla_VK : VK ;
+fun lakkoilu_NK : NK ;
+fun lakmus_NK : NK ;
+fun lako_NK : NK ;
+fun lakoinen_NK : NK ;
+fun lakoisuus_NK : NK ;
+fun lakoninen_AK : AK ;
+--+ fun lakonisesti_AdvK : AdvK ;
+fun lakonisuus_NK : NK ;
+fun lakoontua_VK : VK ;
+fun lakoutua_VK : VK ;
+fun lakritsa_NK : NK ;
+fun lakritsi_NK : NK ;
+fun lakritsijuuri_NK : NK ;
+fun laksatiivi_NK : NK ;
+fun laktaasi_NK : NK ;
+fun laktoosi_NK : NK ;
+fun laktoosi_intoleranssi_NK : NK ;
+fun laktoosi_intolerantti_NK : NK ;
+fun laktoositon_NK : NK ;
+fun laku_NK : NK ;
+fun lallatella_VK : VK ;
+fun lallattaa_VK : VK ;
+fun lallukka_NK : NK ;
+fun lama_1_NK : NK ;
+fun lama_2_NK : NK ;
+fun lamaan_AdvK : AdvK ;
+fun lamaannus_NK : NK ;
+fun lamaannuttaa_VK : VK ;
+fun lamaantua_VK : VK ;
+fun lamaantuneisuus_NK : NK ;
+fun lamalaisuus_NK : NK ;
+fun lamarckismi_NK : NK ;
+fun lamassa_AdvK : AdvK ;
+fun lamasta_AdvK : AdvK ;
+fun lamata_VK : VK ;
+fun lamauttaa_VK : VK ;
+fun lamautua_VK : VK ;
+fun lambada_NK : NK ;
+fun lamee_NK : NK ;
+fun lamelli_NK : NK ;
+fun laminaatti_NK : NK ;
+fun laminoida_VK : VK ;
+fun laminointi_NK : NK ;
+fun lammas_NK : NK ;
+--+ fun lammasmaisesti_AdvK : AdvK ;
+fun lammasmaisuus_NK : NK ;
+fun lammikko_NK : NK ;
+fun lamoava_NK : NK ;
+fun lampaantalja_NK : NK ;
+fun lampaanvilla_NK : NK ;
+fun lampare_NK : NK ;
+fun lampetti_NK : NK ;
+fun lampi_NK : NK ;
+fun lampola_NK : NK ;
+fun lamppu_NK : NK ;
+fun lampsia_VK : VK ;
+fun lampuoti_NK : NK ;
+fun lampuri_NK : NK ;
+fun lana_NK : NK ;
+fun lanata_VK : VK ;
+fun lanaus_NK : NK ;
+fun lande_NK : NK ;
+fun langata_VK : VK ;
+fun langaton_NK : NK ;
+fun langeta_VK : VK ;
+fun langettaa_VK : VK ;
+fun langoittaa_VK : VK ;
+fun langoitus_NK : NK ;
+--? fun langokset_NK : NK ;
+fun langusti_NK : NK ;
+fun lanka_NK : NK ;
+fun lankainen_NK : NK ;
+fun lankata_VK : VK ;
+fun lankaus_NK : NK ;
+fun lankeemus_NK : NK ;
+fun lankkaus_NK : NK ;
+fun lankki_NK : NK ;
+fun lankku_NK : NK ;
+fun lanko_NK : NK ;
+fun lankonki_NK : NK ;
+fun lankous_NK : NK ;
+fun lankuttaa_VK : VK ;
+fun lankutus_NK : NK ;
+fun lanne_NK : NK ;
+fun lannistaa_VK : VK ;
+fun lannistua_VK : VK ;
+fun lannoite_NK : NK ;
+fun lannoitin_NK : NK ;
+fun lannoittaa_VK : VK ;
+fun lannoittua_VK : VK ;
+fun lannoitus_NK : NK ;
+fun lannos_NK : NK ;
+fun lanoliini_NK : NK ;
+fun lanseerata_VK : VK ;
+fun lanseeraus_NK : NK ;
+fun lansetti_NK : NK ;
+fun lanssi_NK : NK ;
+fun lanta_NK : NK ;
+fun lantaani_NK : NK ;
+fun lantainen_NK : NK ;
+fun lantaisuus_NK : NK ;
+fun lantala_NK : NK ;
+fun lantata_VK : VK ;
+fun lanteinen_NK : NK ;
+fun lantinki_NK : NK ;
+fun lantio_NK : NK ;
+fun lantioinen_NK : NK ;
+fun lantrata_VK : VK ;
+fun lantrinki_NK : NK ;
+--? fun lantsarit_NK : NK ;
+fun lantti_NK : NK ;
+fun lantto_NK : NK ;
+fun lanttu_NK : NK ;
+fun laossa_AdvK : AdvK ;
+fun laota_VK : VK ;
+fun laottaa_VK : VK ;
+fun lapa_NK : NK ;
+fun lapainen_NK : NK ;
+fun lapakko_NK : NK ;
+fun lapanen_NK : NK ;
+fun laparoskopia_NK : NK ;
+fun lape_NK : NK ;
+fun lapidaarinen_NK : NK ;
+fun lapikas_NK : NK ;
+fun lapio_NK : NK ;
+fun lapioida_VK : VK ;
+fun lapiointi_NK : NK ;
+fun lappaa_VK : VK ;
+fun lappalainen_NK : NK ;
+fun lappautua_VK : VK ;
+fun lappeellaan_AdvK : AdvK ;
+fun lappeelleen_AdvK : AdvK ;
+fun lappi_NK : NK ;
+fun lappo_NK : NK ;
+fun lappologi_NK : NK ;
+fun lappu_NK : NK ;
+fun lappuliisa_NK : NK ;
+fun lappunen_NK : NK ;
+fun lapsekas_AK : AK ;
+--+ fun lapsekkaasti_AdvK : AdvK ;
+fun lapsekkuus_NK : NK ;
+fun lapseksiottaminen_NK : NK ;
+fun lapsellinen_AK : AK ;
+--+ fun lapsellisesti_AdvK : AdvK ;
+fun lapsellisuus_NK : NK ;
+fun lapsenkina_NK : NK ;
+--+ fun lapsenomaisesti_AdvK : AdvK ;
+fun lapseton_NK : NK ;
+fun lapsettaa_VK : VK ;
+fun lapsettomuus_NK : NK ;
+fun lapseus_NK : NK ;
+fun lapsi_NK : NK ;
+fun lapsinen_NK : NK ;
+fun lapsivuodeaika_NK : NK ;
+fun lapsonen_NK : NK ;
+fun lapsukainen_NK : NK ;
+fun lapsus_NK : NK ;
+fun lapsuudenaika_NK : NK ;
+fun lapsuus_NK : NK ;
+fun lapsuusaika_NK : NK ;
+fun laputtaa_1_VK : VK ;
+fun laputtaa_2_VK : VK ;
+fun largo_NK : NK ;
+fun lari_1_NK : NK ;
+fun lari_2_NK : NK ;
+fun lasagne_NK : NK ;
+fun lasaretti_NK : NK ;
+fun laseerata_VK : VK ;
+fun laseeraus_NK : NK ;
+fun laseittain_AdvK : AdvK ;
+fun laser_NK : NK ;
+fun laseri_NK : NK ;
+fun lasi_NK : NK ;
+fun lasiainen_NK : NK ;
+fun lasikko_NK : NK ;
+fun lasillinen_NK : NK ;
+fun lasinen_NK : NK ;
+fun lasinhioja_NK : NK ;
+fun lasintyo'sta'ja'_NK : NK ;
+fun lasisto_NK : NK ;
+fun lasite_NK : NK ;
+fun lasittaa_VK : VK ;
+fun lasittaja_NK : NK ;
+fun lasittua_VK : VK ;
+fun lasitus_NK : NK ;
+fun laskea_VK : VK ;
+fun laskelma_NK : NK ;
+fun laskelmoida_VK : VK ;
+fun laskelmointi_NK : NK ;
+fun laskennallinen_AK : AK ;
+--+ fun laskennallisesti_AdvK : AdvK ;
+fun laskenta_NK : NK ;
+fun laskento_NK : NK ;
+fun laskeskella_VK : VK ;
+fun lasketella_VK : VK ;
+fun laskettaa_VK : VK ;
+fun laskettelija_NK : NK ;
+fun laskettelu_NK : NK ;
+fun laskeuma_NK : NK ;
+fun laskeutua_VK : VK ;
+fun laskeutuma_NK : NK ;
+fun laskiainen_NK : NK ;
+fun laskija_NK : NK ;
+fun laskimo_NK : NK ;
+fun laskin_NK : NK ;
+fun lasko_NK : NK ;
+fun laskoksinen_NK : NK ;
+fun laskos_NK : NK ;
+fun laskostaa_VK : VK ;
+fun laskostua_VK : VK ;
+fun laskostus_NK : NK ;
+fun lasku_NK : NK ;
+fun laskuinen_NK : NK ;
+fun laskukohta_NK : NK ;
+fun laskuri_NK : NK ;
+fun laskuttaa_VK : VK ;
+fun laskutus_NK : NK ;
+fun lassi_NK : NK ;
+fun lassie_NK : NK ;
+fun lasso_NK : NK ;
+fun lassota_VK : VK ;
+fun lasta_NK : NK ;
+fun lastaaja_NK : NK ;
+fun lastain_NK : NK ;
+fun lastata_VK : VK ;
+fun lastaus_NK : NK ;
+fun lastauttaa_VK : VK ;
+fun lasti_NK : NK ;
+fun lastoittaa_VK : VK ;
+fun lastoitus_NK : NK ;
+fun lastu_NK : NK ;
+fun lastuta_VK : VK ;
+fun lata_NK : NK ;
+fun lataamo_NK : NK ;
+fun latauma_NK : NK ;
+fun lataus_NK : NK ;
+fun latautua_VK : VK ;
+fun latautuma_NK : NK ;
+fun latautuneisuus_NK : NK ;
+fun lateksi_NK : NK ;
+fun latelu_NK : NK ;
+fun latenssi_NK : NK ;
+fun latenssiaika_NK : NK ;
+fun latentti_NK : NK ;
+fun lateraalinen_NK : NK ;
+fun lati_NK : NK ;
+fun latina_NK : NK ;
+fun latinaistaa_VK : VK ;
+fun latinalaistaa_VK : VK ;
+fun latinantaa_VK : VK ;
+fun latinismi_NK : NK ;
+fun latinki_NK : NK ;
+fun latino_NK : NK ;
+fun latinoida_VK : VK ;
+fun latistaa_VK : VK ;
+fun latistua_VK : VK ;
+fun latitudi_NK : NK ;
+fun latkia_VK : VK ;
+fun lato_NK : NK ;
+fun latoa_VK : VK ;
+fun latoja_NK : NK ;
+fun latomo_NK : NK ;
+fun latomus_NK : NK ;
+fun latta_NK : NK ;
+fun lattana_NK : NK ;
+fun lattari_NK : NK ;
+fun lattea_AK : AK ;
+--+ fun latteasti_AdvK : AdvK ;
+fun latteus_NK : NK ;
+fun lattia_NK : NK ;
+fun lattianraja_NK : NK ;
+fun latu_NK : NK ;
+fun laturi_NK : NK ;
+fun latuska_NK : NK ;
+fun latuskainen_NK : NK ;
+fun latva_NK : NK ;
+fun latvainen_NK : NK ;
+fun latvia_NK : NK ;
+fun latvimmainen_NK : NK ;
+fun latvoa_VK : VK ;
+fun latvonta_NK : NK ;
+fun latvuksinen_NK : NK ;
+fun latvus_NK : NK ;
+fun latvusto_NK : NK ;
+fun lauantai_NK : NK ;
+fun lauantainen_NK : NK ;
+fun lauantaisin_AdvK : AdvK ;
+fun laudatur_NK : NK ;
+fun laude_NK : NK ;
+fun laudoittaa_VK : VK ;
+fun laudoittaja_NK : NK ;
+fun laudoitus_NK : NK ;
+fun laueta_VK : VK ;
+fun lauha_1_NK : NK ;
+fun lauha_2_NK : NK ;
+fun lauhde_NK : NK ;
+fun lauhdutin_NK : NK ;
+fun lauhduttaa_VK : VK ;
+fun lauhdutus_NK : NK ;
+fun lauhentaa_VK : VK ;
+fun lauheta_VK : VK ;
+fun lauhkea_AK : AK ;
+--+ fun lauhkeasti_AdvK : AdvK ;
+fun lauhkeus_NK : NK ;
+fun lauhtua_VK : VK ;
+fun laukaisija_NK : NK ;
+fun laukaisin_NK : NK ;
+fun laukaista_VK : VK ;
+fun laukaisu_NK : NK ;
+fun laukata_VK : VK ;
+fun laukaus_NK : NK ;
+fun laukka_1_NK : NK ;
+fun laukka_2_NK : NK ;
+fun laukki_NK : NK ;
+fun laukkoa_VK : VK ;
+fun laukku_NK : NK ;
+fun laukoa_VK : VK ;
+fun laulaa_VK : VK ;
+fun laulaja_NK : NK ;
+fun laulajatar_NK : NK ;
+fun laulajisto_NK : NK ;
+fun laulattaa_VK : VK ;
+fun laulava_AK : AK ;
+--+ fun laulavasti_AdvK : AdvK ;
+fun laulella_VK : VK ;
+fun laulelma_NK : NK ;
+fun lauleskella_VK : VK ;
+fun laulu_NK : NK ;
+fun laulullinen_NK : NK ;
+fun lauma_NK : NK ;
+fun laumoittain_AdvK : AdvK ;
+fun laupeus_NK : NK ;
+--+ fun laupiaasti_AdvK : AdvK ;
+fun laupias_AK : AK ;
+fun lausahdus_NK : NK ;
+fun lausahtaa_VK : VK ;
+fun lause_NK : NK ;
+fun lauseinen_NK : NK ;
+fun lauseke_NK : NK ;
+fun lauselma_NK : NK ;
+fun lausua_VK : VK ;
+fun lausuja_NK : NK ;
+fun lausuma_NK : NK ;
+fun lausunta_NK : NK ;
+fun lausunto_NK : NK ;
+fun lauta_NK : NK ;
+fun lautailija_NK : NK ;
+fun lautailla_VK : VK ;
+fun lautailu_NK : NK ;
+fun lautainen_NK : NK ;
+fun lautanen_NK : NK ;
+fun lautasaura_NK : NK ;
+fun lautasellinen_NK : NK ;
+fun lautasmainen_NK : NK ;
+fun lautata_VK : VK ;
+--? fun lauteet_NK : NK ;
+fun lautta_NK : NK ;
+fun lauttaus_NK : NK ;
+fun lautturi_NK : NK ;
+fun lautuma_NK : NK ;
+fun lava_NK : NK ;
+fun lavainen_NK : NK ;
+fun lavallinen_NK : NK ;
+fun lavastaa_VK : VK ;
+fun lavastaja_NK : NK ;
+fun lavastamo_NK : NK ;
+fun lavaste_NK : NK ;
+fun lavastus_NK : NK ;
+fun lavea_AK : AK ;
+--+ fun laveasanaisesti_AdvK : AdvK ;
+--+ fun laveasti_AdvK : AdvK ;
+fun laveerata_VK : VK ;
+fun laveeraus_NK : NK ;
+fun laventaa_VK : VK ;
+fun laventaja_NK : NK ;
+fun laventeli_NK : NK ;
+fun laventua_VK : VK ;
+fun laveri_NK : NK ;
+fun laverrella_VK : VK ;
+fun lavetti_NK : NK ;
+fun laviini_NK : NK ;
+fun lavitsa_NK : NK ;
+fun lavuaari_NK : NK ;
+fun layout_NK : NK ;
+fun leasing_NK : NK ;
+fun LED_NK : NK ;
+fun ledi_NK : NK ;
+fun leegio_NK : NK ;
+fun leffa_NK : NK ;
+fun legaalinen_NK : NK ;
+fun legaalistaa_VK : VK ;
+fun legaatti_NK : NK ;
+fun legalisoida_VK : VK ;
+fun legato_NK : NK ;
+fun legenda_NK : NK ;
+fun legendaarinen_NK : NK ;
+fun leggingsit_NK : NK ;
+fun leghorn_NK : NK ;
+fun legioona_NK : NK ;
+fun legitiimi_NK : NK ;
+fun legitiimiys_NK : NK ;
+fun legitimoida_VK : VK ;
+fun legitimointi_NK : NK ;
+fun leguaani_NK : NK ;
+fun lehahdella_VK : VK ;
+fun lehahdus_NK : NK ;
+fun lehahtaa_VK : VK ;
+fun lehaus_NK : NK ;
+fun lehauttaa_VK : VK ;
+--? fun lehdekset_NK : NK ;
+fun lehdesta'a'_VK : VK ;
+fun lehdisto'_NK : NK ;
+fun lehdokki_NK : NK ;
+fun lehdykka'_NK : NK ;
+fun lehika'inen_NK : NK ;
+fun lehmihaka_NK : NK ;
+fun lehmus_NK : NK ;
+fun lehma'_NK : NK ;
+fun lehteilla'_VK : VK ;
+fun lehteri_NK : NK ;
+fun lehtevyys_NK : NK ;
+fun lehteva'_NK : NK ;
+fun lehti_NK : NK ;
+fun lehtinen_NK : NK ;
+fun lehtinen_NK : NK ;
+fun lehtia'_VK : VK ;
+fun lehtia'inen_NK : NK ;
+fun lehtio'_NK : NK ;
+fun lehto_NK : NK ;
+fun lehtoraatti_NK : NK ;
+fun lehtori_NK : NK ;
+fun lehvisto'_NK : NK ;
+fun lehva'_NK : NK ;
+fun lehva'inen_NK : NK ;
+fun lehva'sto'_NK : NK ;
+fun lei_NK : NK ;
+fun leidi_NK : NK ;
+fun leija_NK : NK ;
+fun leijailla_VK : VK ;
+fun leijailu_NK : NK ;
+fun leijata_1_VK : VK ;
+fun leijata_2_VK : VK ;
+fun leijona_NK : NK ;
+fun leijua_VK : VK ;
+fun leijuma_NK : NK ;
+fun leijunta_NK : NK ;
+fun leijuttaa_VK : VK ;
+fun leikata_VK : VK ;
+fun leike_NK : NK ;
+fun leikella'_VK : VK ;
+fun leikillinen_AK : AK ;
+--+ fun leikillisesti_AdvK : AdvK ;
+fun leikillisyys_NK : NK ;
+fun leikilla'a'n_AdvK : AdvK ;
+fun leikisti_AdvK : AdvK ;
+fun leikitella'_VK : VK ;
+fun leikiten_AdvK : AdvK ;
+fun leikittely_NK : NK ;
+fun leikitta'a'_VK : VK ;
+fun leikkaaja_NK : NK ;
+fun leikkaamo_NK : NK ;
+fun leikkaantua_VK : VK ;
+fun leikkaavuus_NK : NK ;
+fun leikkain_NK : NK ;
+fun leikkaus_NK : NK ;
+fun leikkaushaava_NK : NK ;
+fun leikkauttaa_VK : VK ;
+fun leikkautua_VK : VK ;
+fun leikkele_NK : NK ;
+fun leikki_NK : NK ;
+fun leikkija'_NK : NK ;
+fun leikkisyys_NK : NK ;
+fun leikkisa'_AK : AK ;
+--+ fun leikkisa'sti_AdvK : AdvK ;
+fun leikkia'_VK : VK ;
+fun leikkuri_NK : NK ;
+fun leikkuu_NK : NK ;
+fun leikkuuttaa_VK : VK ;
+fun leili_NK : NK ;
+fun leima_NK : NK ;
+fun leimaa_antava_NK : NK ;
+fun leimaaja_NK : NK ;
+fun leimahdella_VK : VK ;
+fun leimahdus_NK : NK ;
+fun leimahtaa_VK : VK ;
+fun leimahtelu_NK : NK ;
+fun leimasin_NK : NK ;
+fun leimata_VK : VK ;
+fun leimaus_1_NK : NK ;
+fun leimaus_2_NK : NK ;
+fun leimauttaa_1_VK : VK ;
+fun leimauttaa_2_VK : VK ;
+fun leimautua_VK : VK ;
+fun leimu_NK : NK ;
+fun leimuta_VK : VK ;
+fun leini_NK : NK ;
+fun leinikki_NK : NK ;
+fun leipoa_VK : VK ;
+fun leipoja_NK : NK ;
+fun leipomus_NK : NK ;
+fun leipoutua_VK : VK ;
+fun leipuri_NK : NK ;
+fun leipa'_NK : NK ;
+fun leipa'a'ntya'_VK : VK ;
+fun leireilla'_VK : VK ;
+fun leiri_NK : NK ;
+fun leirila'inen_NK : NK ;
+fun leirinta'_NK : NK ;
+fun leiritta'a'_VK : VK ;
+fun leiritys_NK : NK ;
+fun leiriytya'_VK : VK ;
+fun leiskahdus_NK : NK ;
+fun leiskahtaa_VK : VK ;
+fun leiskaus_NK : NK ;
+fun leiskauttaa_VK : VK ;
+fun leiskua_VK : VK ;
+fun leiskunta_NK : NK ;
+fun leiviska'_NK : NK ;
+fun leivite_NK : NK ;
+fun leivitta'a'_VK : VK ;
+fun leivitys_NK : NK ;
+fun leivo_NK : NK ;
+fun leivonen_NK : NK ;
+fun leivonnainen_NK : NK ;
+fun leivonta_NK : NK ;
+fun leivos_NK : NK ;
+fun leiva'nkuori_NK : NK ;
+fun leiva'to'n_NK : NK ;
+fun lejeerata_VK : VK ;
+fun lejeerinki_NK : NK ;
+fun leka_NK : NK ;
+fun lekkeri_NK : NK ;
+fun lekotella_VK : VK ;
+fun lekottaa_VK : VK ;
+fun leksikaalinen_NK : NK ;
+fun leksikko_NK : NK ;
+fun leksikografi_NK : NK ;
+fun leksikografia_NK : NK ;
+fun leksikologia_NK : NK ;
+fun lelli_NK : NK ;
+fun lellikki_NK : NK ;
+fun lellitella'_VK : VK ;
+fun lellittely_NK : NK ;
+fun lellia'_VK : VK ;
+fun lellua_VK : VK ;
+fun lelu_NK : NK ;
+fun lemahdella_VK : VK ;
+fun lemahdus_NK : NK ;
+fun lemahtaa_VK : VK ;
+fun lemmekkyys_NK : NK ;
+--+ fun lemmekka'a'sti_AdvK : AdvK ;
+fun lemmeka's_AK : AK ;
+fun lemmikki_NK : NK ;
+fun lemmiskella'_VK : VK ;
+fun lemmiskely_NK : NK ;
+fun lemmitty_NK : NK ;
+fun lempata_VK : VK ;
+fun lempeys_NK : NK ;
+fun lempea'_AK : AK ;
+--+ fun lempea'sti_AdvK : AdvK ;
+fun lempi_NK : NK ;
+fun lempia'_VK : VK ;
+fun lempo_NK : NK ;
+fun lemppari_NK : NK ;
+--? fun lemput_NK : NK ;
+fun lemu_NK : NK ;
+fun lemuta_VK : VK ;
+fun leninila'inen_NK : NK ;
+fun leninila'isyys_NK : NK ;
+fun leninismi_NK : NK ;
+fun leninisti_NK : NK ;
+fun leninki_NK : NK ;
+fun lenkata_VK : VK ;
+fun lenkkari_NK : NK ;
+fun lenkkeilija'_NK : NK ;
+fun lenkkeilla'_VK : VK ;
+fun lenkkeily_NK : NK ;
+fun lenkki_NK : NK ;
+fun lenko_NK : NK ;
+fun lenkous_NK : NK ;
+fun lennella'_VK : VK ;
+fun lennin_NK : NK ;
+fun lennokas_AK : AK ;
+--+ fun lennokkaasti_AdvK : AdvK ;
+fun lennokki_NK : NK ;
+fun lennokkuus_NK : NK ;
+fun lennosto_NK : NK ;
+fun lenna'hdella'_VK : VK ;
+fun lenna'hta'a'_VK : VK ;
+fun lenna'tella'_VK : VK ;
+fun lenna'tin_NK : NK ;
+fun lenna'tta'a'_VK : VK ;
+fun lenna'tys_NK : NK ;
+fun lensea'_NK : NK ;
+fun lentely_NK : NK ;
+fun lentis_NK : NK ;
+fun lento_1_NK : NK ;
+fun lento_2_NK : NK ;
+fun lentoaika_NK : NK ;
+fun lentoinen_NK : NK ;
+fun lentoonammunta_NK : NK ;
+fun lentsu_NK : NK ;
+fun lentue_NK : NK ;
+fun lenta'ja'_NK : NK ;
+fun lenta'va'_NK : NK ;
+fun lenta'a'_VK : VK ;
+fun leopardi_NK : NK ;
+fun lepakko_NK : NK ;
+fun lepattaa_VK : VK ;
+fun lepatus_NK : NK ;
+fun leperrella'_VK : VK ;
+fun leperrys_NK : NK ;
+fun lepertely_NK : NK ;
+fun leperta'a'_VK : VK ;
+fun lepikko_NK : NK ;
+fun lepikkoinen_NK : NK ;
+fun lepikko'_NK : NK ;
+fun lepinka'inen_NK : NK ;
+fun lepisto'_NK : NK ;
+fun lepo_NK : NK ;
+fun lepoaika_NK : NK ;
+fun leppeys_NK : NK ;
+fun leppea'_AK : AK ;
+--+ fun leppea'sti_AdvK : AdvK ;
+fun leppoisa_AK : AK ;
+--+ fun leppoisasti_AdvK : AdvK ;
+fun leppoisuus_NK : NK ;
+fun leppyma'tto'myys_NK : NK ;
+fun leppyma'tto'ma'sti_AdvK : AdvK ;
+fun leppyma'to'n_NK : NK ;
+fun leppya'_VK : VK ;
+fun leppa'_NK : NK ;
+fun leppa'inen_NK : NK ;
+fun leppa'pirkko_NK : NK ;
+fun lepra_NK : NK ;
+fun lepsu_AK : AK ;
+fun lepsuilla_VK : VK ;
+fun lepsuilu_NK : NK ;
+--+ fun lepsusti_AdvK : AdvK ;
+fun lepsuus_NK : NK ;
+fun leptoni_NK : NK ;
+fun lepuuttaa_VK : VK ;
+fun lepuuttaja_NK : NK ;
+fun lepuutus_NK : NK ;
+fun lepytella'_VK : VK ;
+fun lepytta'a'_VK : VK ;
+fun lepytys_NK : NK ;
+fun lepa'illa'_VK : VK ;
+fun lepa'nkuori_NK : NK ;
+fun lerpahtaa_VK : VK ;
+fun lerpalla_AdvK : AdvK ;
+fun lerpallaan_AdvK : AdvK ;
+fun lerpalle_AdvK : AdvK ;
+fun lerpalleen_AdvK : AdvK ;
+fun lerpattaa_VK : VK ;
+fun lerppu_NK : NK ;
+fun lerppua_VK : VK ;
+fun lesbismi_NK : NK ;
+fun lesbo_NK : NK ;
+fun lesbolaisuus_NK : NK ;
+fun lesbous_NK : NK ;
+fun lese_NK : NK ;
+fun lesema'to'n_NK : NK ;
+fun lesitiini_NK : NK ;
+fun lesia'inen_NK : NK ;
+fun leskeys_NK : NK ;
+fun leski_NK : NK ;
+fun lespata_VK : VK ;
+fun lespaus_NK : NK ;
+fun lestadiolainen_NK : NK ;
+fun lestadiolaisuus_NK : NK ;
+fun lesti_NK : NK ;
+fun lesty_NK : NK ;
+fun lesta'_VK : VK ;
+fun letitta'a'_VK : VK ;
+fun letka_NK : NK ;
+fun letkahtaa_VK : VK ;
+fun letkaus_NK : NK ;
+fun letkautella_VK : VK ;
+fun letkauttaa_VK : VK ;
+fun letkautus_NK : NK ;
+fun letkeys_NK : NK ;
+fun letkea'_AK : AK ;
+--+ fun letkea'sti_AdvK : AdvK ;
+fun letkis_NK : NK ;
+fun letku_NK : NK ;
+fun letti_NK : NK ;
+fun letto_NK : NK ;
+fun lettu_NK : NK ;
+fun letukka_NK : NK ;
+fun leuanveto_NK : NK ;
+fun leudontaa_VK : VK ;
+fun leudontua_VK : VK ;
+fun leudosti_AdvK : AdvK ;
+fun leudota_VK : VK ;
+fun leuhahtaa_VK : VK ;
+fun leuhauttaa_VK : VK ;
+fun leuhka_AK : AK ;
+--+ fun leuhkasti_AdvK : AdvK ;
+fun leuhkia_VK : VK ;
+fun leuhkuus_NK : NK ;
+fun leuhottaa_VK : VK ;
+fun leuka_NK : NK ;
+fun leukailla_VK : VK ;
+fun leukailu_NK : NK ;
+fun leukainen_NK : NK ;
+fun leukava_AK : AK ;
+--+ fun leukavasti_AdvK : AdvK ;
+fun leukavuus_NK : NK ;
+fun leukemia_NK : NK ;
+fun leukoija_NK : NK ;
+fun leukosyytti_NK : NK ;
+fun leuku_NK : NK ;
+fun leuto_NK : NK ;
+fun leutous_NK : NK ;
+fun leveilla'_VK : VK ;
+fun leveily_NK : NK ;
+fun levennella'_VK : VK ;
+fun levennys_NK : NK ;
+fun leventely_NK : NK ;
+fun leventya'_VK : VK ;
+fun leventa'a'_VK : VK ;
+fun leveta'_VK : VK ;
+fun leveys_NK : NK ;
+fun levea'_AK : AK ;
+fun levea'lti_AdvK : AdvK ;
+--+ fun levea'sti_AdvK : AdvK ;
+fun levike_NK : NK ;
+fun levikki_NK : NK ;
+fun levikkinen_NK : NK ;
+fun levinneisyys_NK : NK ;
+fun levinta'_NK : NK ;
+fun levinta'inen_NK : NK ;
+fun levitaatio_NK : NK ;
+fun levite_NK : NK ;
+fun levitella'_VK : VK ;
+fun levitin_NK : NK ;
+fun levitoida_VK : VK ;
+fun levittya'_VK : VK ;
+fun levitta'ytya'_VK : VK ;
+fun levitta'a'_VK : VK ;
+fun levitys_NK : NK ;
+fun levita'_VK : VK ;
+fun levia'in_NK : NK ;
+fun levollinen_AK : AK ;
+--+ fun levollisesti_AdvK : AdvK ;
+fun levollisuus_NK : NK ;
+fun levoton_NK : NK ;
+fun levottomasti_AdvK : AdvK ;
+fun levottomuus_NK : NK ;
+fun levy_NK : NK ;
+fun levyinen_1_NK : NK ;
+fun levyinen_2_NK : NK ;
+fun levyke_NK : NK ;
+fun levyri_NK : NK ;
+fun levysto'_NK : NK ;
+fun levyte_NK : NK ;
+fun levytta'a'_VK : VK ;
+fun levytys_NK : NK ;
+fun leva'_NK : NK ;
+fun leva'hdys_NK : NK ;
+fun leva'hta'a'_1_VK : VK ;
+fun leva'hta'a'_2_VK : VK ;
+fun leva'kko'_NK : NK ;
+fun leva'lleen_AdvK : AdvK ;
+fun leva'lla'a'n_AdvK : AdvK ;
+--+ fun leva'pera'isesti_AdvK : AdvK ;
+fun leva'ta'_VK : VK ;
+fun leva'ytta'a'_VK : VK ;
+fun leyhka'_NK : NK ;
+fun leyhytella'_VK : VK ;
+fun leyhytta'a'_VK : VK ;
+fun leyhya'_VK : VK ;
+fun leyha'hdella'_VK : VK ;
+fun leyha'hdys_NK : NK ;
+fun leyha'hta'a'_VK : VK ;
+fun leyha'ytta'a'_VK : VK ;
+fun liaani_NK : NK ;
+fun liata_VK : VK ;
+fun liberaali_AK : AK ;
+fun liberaalinen_AK : AK ;
+--+ fun liberaalisesti_AdvK : AdvK ;
+fun liberaalistaa_VK : VK ;
+--+ fun liberaalisti_AdvK : AdvK ;
+fun liberaalistua_VK : VK ;
+fun liberaalisuus_NK : NK ;
+fun liberaalius_NK : NK ;
+fun liberalismi_NK : NK ;
+fun liberalisoida_VK : VK ;
+fun liberalisoitua_VK : VK ;
+fun liberalisti_NK : NK ;
+fun liberalistinen_NK : NK ;
+fun libero_NK : NK ;
+fun libido_NK : NK ;
+fun libretto_NK : NK ;
+fun libristi_NK : NK ;
+fun lie_AdvK : AdvK ;
+fun lied_NK : NK ;
+fun liehahdus_NK : NK ;
+fun liehahtaa_VK : VK ;
+fun liehakas_AK : AK ;
+fun liehakka_NK : NK ;
+--+ fun liehakkaasti_AdvK : AdvK ;
+fun liehakko_NK : NK ;
+fun liehakoida_VK : VK ;
+fun liehakoija_NK : NK ;
+fun liehakointi_NK : NK ;
+fun liehauttaa_VK : VK ;
+fun liehitella'_VK : VK ;
+fun liehittelija'_NK : NK ;
+fun liehittely_NK : NK ;
+fun liehtoa_VK : VK ;
+fun liehua_VK : VK ;
+fun liehuke_NK : NK ;
+fun liehutella_VK : VK ;
+fun liehuttaa_VK : VK ;
+fun lieju_NK : NK ;
+fun liejuinen_NK : NK ;
+fun liejuisuus_NK : NK ;
+fun liejukko_NK : NK ;
+fun liejuuntua_VK : VK ;
+fun lieka_NK : NK ;
+fun liekehdinta'_NK : NK ;
+fun liekehtia'_VK : VK ;
+fun liekitta'a'_VK : VK ;
+fun liekki_NK : NK ;
+fun lieko_NK : NK ;
+fun liekutella_VK : VK ;
+fun liekuttaa_VK : VK ;
+fun liemi_NK : NK ;
+fun lienee_AdvK : AdvK ;
+fun liennytta'a'_VK : VK ;
+fun liennytys_NK : NK ;
+fun lientya'_VK : VK ;
+fun lienta'a'_VK : VK ;
+fun liepeille_AdvK : AdvK ;
+fun liepeilla'_AdvK : AdvK ;
+fun liepeilta'_AdvK : AdvK ;
+fun liepeinen_NK : NK ;
+fun liereys_NK : NK ;
+fun lierea'_NK : NK ;
+fun lieri_NK : NK ;
+fun lierinen_NK : NK ;
+fun lierio'_NK : NK ;
+fun liero_NK : NK ;
+fun lieroilla_VK : VK ;
+fun lieroilu_NK : NK ;
+fun liesi_NK : NK ;
+fun lieska_NK : NK ;
+fun liesma_NK : NK ;
+fun liestya'_VK : VK ;
+fun liesu_1_NK : NK ;
+fun liesu_2_NK : NK ;
+fun liesuta_VK : VK ;
+fun liete_NK : NK ;
+fun lietso_NK : NK ;
+fun lietsoa_VK : VK ;
+fun lietsoin_NK : NK ;
+fun lietsoja_NK : NK ;
+fun lietsu_NK : NK ;
+fun lietsuta_VK : VK ;
+fun lietteinen_NK : NK ;
+fun lietto_NK : NK ;
+fun liettua_NK : NK ;
+fun liettyma'_NK : NK ;
+fun liettya'_VK : VK ;
+fun lietta'a'_VK : VK ;
+fun lieve_NK : NK ;
+fun lievennys_NK : NK ;
+fun lieventya'_VK : VK ;
+fun lieventa'a'_VK : VK ;
+fun lieveta'_VK : VK ;
+fun lievike_NK : NK ;
+fun lievittya'_VK : VK ;
+fun lievitta'a'_VK : VK ;
+fun lievitys_NK : NK ;
+fun lievyys_NK : NK ;
+fun lieva'_AK : AK ;
+--+ fun lieva'sti_AdvK : AdvK ;
+fun liftaaja_NK : NK ;
+fun liftari_NK : NK ;
+fun liftata_VK : VK ;
+fun liftaus_NK : NK ;
+fun lifti_NK : NK ;
+fun ligniini_NK : NK ;
+fun liha_NK : NK ;
+fun lihainen_NK : NK ;
+fun lihaisa_NK : NK ;
+fun lihakas_NK : NK ;
+fun lihaksekas_NK : NK ;
+fun lihaksikas_NK : NK ;
+fun lihaksinen_NK : NK ;
+fun lihaksisto_NK : NK ;
+fun lihallinen_NK : NK ;
+fun lihas_NK : NK ;
+fun lihasvena'htyma'_NK : NK ;
+fun lihava_NK : NK ;
+fun lihavoida_VK : VK ;
+fun lihavuus_NK : NK ;
+fun lihoa_VK : VK ;
+fun lihota_VK : VK ;
+fun lihottaa_VK : VK ;
+fun lihotus_NK : NK ;
+fun liiaksi_AdvK : AdvK ;
+fun liiallinen_NK : NK ;
+fun liiallisuus_NK : NK ;
+fun liialti_AdvK : AdvK ;
+fun liian_AdvK : AdvK ;
+fun liidella'_VK : VK ;
+fun liidin_NK : NK ;
+fun liidokki_NK : NK ;
+fun liiduta_VK : VK ;
+fun liiemmin_AdvK : AdvK ;
+fun liiemma'lti_AdvK : AdvK ;
+fun liieta'_VK : VK ;
+fun liiga_NK : NK ;
+fun liigautua_VK : VK ;
+fun liihotella_VK : VK ;
+fun liihottaa_VK : VK ;
+fun liika_NK : NK ;
+fun liikaa_AdvK : AdvK ;
+fun liikahdella_VK : VK ;
+fun liikahdus_NK : NK ;
+fun liikahduttaa_VK : VK ;
+fun liikahtaa_VK : VK ;
+fun liikakansoitus_NK : NK ;
+fun liikarasittunut_NK : NK ;
+fun liikata_VK : VK ;
+fun liikauttaa_VK : VK ;
+fun liike_NK : NK ;
+fun liikeaika_NK : NK ;
+fun liikehdinta'_NK : NK ;
+fun liikehtia'_VK : VK ;
+fun liikenne_NK : NK ;
+fun liikenno'ida'_VK : VK ;
+fun liikenno'ija'_NK : NK ;
+fun liikenno'inti_NK : NK ;
+fun liikenno'itsija'_NK : NK ;
+fun liikenteinen_NK : NK ;
+fun liikkeelle_AdvK : AdvK ;
+fun liikkeellepaneva_NK : NK ;
+fun liikkeella'_AdvK : AdvK ;
+fun liikkeessa'_AdvK : AdvK ;
+fun liikkeinen_NK : NK ;
+fun liikkeisyys_NK : NK ;
+fun liikkis_NK : NK ;
+fun liikkua_VK : VK ;
+fun liikkuja_NK : NK ;
+fun liikkumaton_NK : NK ;
+fun liikkumattomuus_NK : NK ;
+fun liikkuva_AK : AK ;
+fun liikkuvainen_NK : NK ;
+--+ fun liikkuvasti_AdvK : AdvK ;
+fun liikkuvuus_NK : NK ;
+fun liikunnallinen_NK : NK ;
+fun liikunta_NK : NK ;
+fun liikuskella_VK : VK ;
+fun liikuskelu_NK : NK ;
+fun liikutella_VK : VK ;
+fun liikuttaa_VK : VK ;
+fun liikuttava_AK : AK ;
+--+ fun liikuttavasti_AdvK : AdvK ;
+fun liikuttavuus_NK : NK ;
+fun liikuttelu_NK : NK ;
+fun liikuttua_VK : VK ;
+fun liikutus_NK : NK ;
+fun liila_NK : NK ;
+fun liima_NK : NK ;
+fun liimaantua_VK : VK ;
+fun liimata_VK : VK ;
+fun liimaus_NK : NK ;
+fun liimautua_VK : VK ;
+fun liimoite_NK : NK ;
+fun liimoittaa_VK : VK ;
+fun liimoittua_VK : VK ;
+fun liimoitus_NK : NK ;
+fun liina_NK : NK ;
+fun liinakko_NK : NK ;
+fun liioin_AdvK : AdvK ;
+fun liioitella_VK : VK ;
+fun liioittelu_NK : NK ;
+fun liipaisin_NK : NK ;
+fun liipaista_VK : VK ;
+fun liipaisu_NK : NK ;
+fun liipata_VK : VK ;
+fun liipotin_NK : NK ;
+fun liippa_NK : NK ;
+fun liippari_NK : NK ;
+fun liira_NK : NK ;
+fun liirata_VK : VK ;
+fun liirto_NK : NK ;
+fun liirta'a'_VK : VK ;
+fun liirumlaarum_NK : NK ;
+fun liirumlaarumi_NK : NK ;
+fun liisata_VK : VK ;
+fun liisaus_NK : NK ;
+fun liiskaksi_AdvK : AdvK ;
+fun liiskana_AdvK : AdvK ;
+fun liisteri_NK : NK ;
+fun liistero'ida'_VK : VK ;
+fun liistero'inti_NK : NK ;
+fun liistero'itya'_VK : VK ;
+fun liisukka_NK : NK ;
+fun liite_NK : NK ;
+fun liitely_NK : NK ;
+fun liiteri_NK : NK ;
+fun liitin_NK : NK ;
+fun liito_NK : NK ;
+fun liitokiekkoilu_NK : NK ;
+fun liitonarkki_NK : NK ;
+fun liitos_NK : NK ;
+fun liitoskohta_NK : NK ;
+fun liitostaa_VK : VK ;
+fun liitto_NK : NK ;
+fun liittolaisuus_NK : NK ;
+fun liittouma_NK : NK ;
+fun liittoutua_VK : VK ;
+fun liittoutuma_NK : NK ;
+fun liittoutumaton_NK : NK ;
+fun liittoutuneet_NK : NK ;
+fun liittyma'_NK : NK ;
+fun liittyma'kohta_NK : NK ;
+fun liittya'_VK : VK ;
+fun liitta'a'_VK : VK ;
+fun liitu_NK : NK ;
+fun liitynta'_NK : NK ;
+fun liita'nna'inen_NK : NK ;
+fun liita'nta'_NK : NK ;
+fun liita'a'_VK : VK ;
+fun liivakko_NK : NK ;
+fun liivari_NK : NK ;
+fun liivate_NK : NK ;
+fun liivi_1_NK : NK ;
+fun liivi_2_NK : NK ;
+fun liivila'inen_NK : NK ;
+fun lika_NK : NK ;
+fun likaahylkiva'_NK : NK ;
+fun likaaja_NK : NK ;
+fun likaantua_VK : VK ;
+fun likainen_NK : NK ;
+fun likeinen_AK : AK ;
+--+ fun likeisesti_AdvK : AdvK ;
+fun likeisyys_NK : NK ;
+fun likekka'in_AdvK : AdvK ;
+fun likekka'inen_NK : NK ;
+fun likelle_AdvK : AdvK ;
+fun likella'_AdvK : AdvK ;
+fun likelta'_AdvK : AdvK ;
+fun likemmin_AdvK : AdvK ;
+fun likemma'ksi_AdvK : AdvK ;
+fun likemma's_AdvK : AdvK ;
+fun likempi_NK : NK ;
+fun likempa'na'_AdvK : AdvK ;
+fun likempa'a'_AdvK : AdvK ;
+fun likennella'_VK : VK ;
+fun likentya'_VK : VK ;
+fun likenta'a'_VK : VK ;
+fun liki_AdvK : AdvK ;
+fun likika'a'n_AdvK : AdvK ;
+fun likimailla_AdvK : AdvK ;
+fun likimaille_AdvK : AdvK ;
+fun likimailta_AdvK : AdvK ;
+fun likimainkaan_AdvK : AdvK ;
+fun likimma'ksi_AdvK : AdvK ;
+fun likimma's_AdvK : AdvK ;
+fun likimpa'na'_AdvK : AdvK ;
+fun likimpa'a'_AdvK : AdvK ;
+fun likima'a'rin_AdvK : AdvK ;
+fun likin_NK : NK ;
+fun likinna'_AdvK : AdvK ;
+fun likistella'_VK : VK ;
+fun likistys_NK : NK ;
+fun likistya'_VK : VK ;
+fun likista'ytya'_VK : VK ;
+fun likista'a'_VK : VK ;
+fun likka_NK : NK ;
+fun likoon_AdvK : AdvK ;
+fun liksa_NK : NK ;
+fun likusteri_NK : NK ;
+fun likvidi_NK : NK ;
+fun likviditeetti_NK : NK ;
+fun likvidoida_VK : VK ;
+fun likvidointi_NK : NK ;
+fun likvori_NK : NK ;
+fun liko'o'ri_NK : NK ;
+fun lila_NK : NK ;
+fun lilja_NK : NK ;
+fun lilliputti_NK : NK ;
+fun lillia'_VK : VK ;
+fun lillua_VK : VK ;
+fun lillukka_NK : NK ;
+fun lima_NK : NK ;
+fun limaantua_VK : VK ;
+fun limainen_NK : NK ;
+fun limakko_NK : NK ;
+fun limaska_NK : NK ;
+fun limata_VK : VK ;
+fun limautua_VK : VK ;
+fun limbo_NK : NK ;
+fun limboilla_VK : VK ;
+fun limboilu_NK : NK ;
+fun lime_NK : NK ;
+fun limetti_NK : NK ;
+fun limiitti_NK : NK ;
+fun limikka'in_AdvK : AdvK ;
+fun limisaumainen_NK : NK ;
+fun limitin_NK : NK ;
+fun limittya'_VK : VK ;
+fun limitta'in_AdvK : AdvK ;
+fun limitta'inen_NK : NK ;
+fun limitta'a'_VK : VK ;
+fun limitys_NK : NK ;
+fun limitysten_AdvK : AdvK ;
+fun limninen_NK : NK ;
+fun limnologi_NK : NK ;
+fun limnologia_NK : NK ;
+fun limoittua_VK : VK ;
+fun limonaati_NK : NK ;
+fun limonadi_NK : NK ;
+fun limppari_NK : NK ;
+fun limppu_NK : NK ;
+fun limsa_NK : NK ;
+fun limska_NK : NK ;
+fun limu_NK : NK ;
+fun limusiini_NK : NK ;
+fun lineaarinen_NK : NK ;
+fun lingota_VK : VK ;
+fun lingvisti_NK : NK ;
+fun lingvistiikka_NK : NK ;
+fun lingvistinen_NK : NK ;
+fun linimentti_NK : NK ;
+fun linja_NK : NK ;
+fun linjainen_NK : NK ;
+fun linjakas_AK : AK ;
+--+ fun linjakkaasti_AdvK : AdvK ;
+fun linjakkuus_NK : NK ;
+fun linjamentti_NK : NK ;
+fun linjanveto_NK : NK ;
+fun linjata_VK : VK ;
+fun linjaton_NK : NK ;
+fun linjaus_NK : NK ;
+fun linjoittaa_VK : VK ;
+fun linjuri_NK : NK ;
+fun linkata_VK : VK ;
+fun linkitta'a'_VK : VK ;
+fun linkitys_NK : NK ;
+fun linkki_NK : NK ;
+fun linkku_NK : NK ;
+fun linko_NK : NK ;
+fun linkous_NK : NK ;
+fun linkoutua_VK : VK ;
+fun linkuttaa_VK : VK ;
+fun linna_NK : NK ;
+fun linnake_NK : NK ;
+fun linni_NK : NK ;
+fun linnoite_NK : NK ;
+fun linnoittaa_VK : VK ;
+fun linnoittautua_VK : VK ;
+fun linnoittua_VK : VK ;
+fun linnoitus_NK : NK ;
+fun linnustaa_VK : VK ;
+fun linnustaja_NK : NK ;
+fun linnusto_NK : NK ;
+fun linnustus_NK : NK ;
+fun lino_NK : NK ;
+fun linoleumi_NK : NK ;
+fun linoli_NK : NK ;
+fun linssi_NK : NK ;
+fun linssisto'_NK : NK ;
+fun lintallaan_AdvK : AdvK ;
+fun lintalleen_AdvK : AdvK ;
+fun lintassa_AdvK : AdvK ;
+fun lintsaaja_NK : NK ;
+fun lintsari_NK : NK ;
+fun lintsata_VK : VK ;
+fun lintsaus_NK : NK ;
+fun linttaan_AdvK : AdvK ;
+fun lintu_NK : NK ;
+fun lintunen_NK : NK ;
+fun lintuniisikangas_NK : NK ;
+fun liossa_AdvK : AdvK ;
+fun liosta_AdvK : AdvK ;
+fun liota_VK : VK ;
+fun liotella_VK : VK ;
+fun liottaa_VK : VK ;
+fun liotus_NK : NK ;
+fun lipaista_VK : VK ;
+fun lipaisu_NK : NK ;
+fun lipallinen_NK : NK ;
+fun lipare_NK : NK ;
+fun lipas_NK : NK ;
+fun lipasto_NK : NK ;
+fun lipeinen_NK : NK ;
+fun liperi_1_NK : NK ;
+fun liperi_2_NK : NK ;
+--? fun liperit_NK : NK ;
+fun lipettiin_AdvK : AdvK ;
+fun lipevyys_NK : NK ;
+fun lipeva'_AK : AK ;
+--+ fun lipeva'sti_AdvK : AdvK ;
+fun lipea'_NK : NK ;
+fun lipea'inen_NK : NK ;
+fun lipidi_NK : NK ;
+fun lipilaari_NK : NK ;
+fun lipitta'a'_VK : VK ;
+fun lipitys_NK : NK ;
+fun liplattaa_VK : VK ;
+fun liplatus_NK : NK ;
+fun lipoa_VK : VK ;
+fun lipoidi_NK : NK ;
+fun lipokas_NK : NK ;
+fun lipota_VK : VK ;
+fun lippa_NK : NK ;
+fun lippi_NK : NK ;
+fun lippis_NK : NK ;
+fun lippo_NK : NK ;
+fun lippu_NK : NK ;
+fun lippue_NK : NK ;
+fun lippunen_NK : NK ;
+fun lipsahdella_VK : VK ;
+fun lipsahdus_NK : NK ;
+fun lipsahduttaa_VK : VK ;
+fun lipsahtaa_VK : VK ;
+fun lipsahtelu_NK : NK ;
+fun lipsaus_NK : NK ;
+fun lipsauttaa_VK : VK ;
+fun lipsua_VK : VK ;
+fun lipua_VK : VK ;
+fun lipuke_NK : NK ;
+fun liputtaa_VK : VK ;
+fun liputus_NK : NK ;
+fun lirahdella_VK : VK ;
+fun lirahdus_NK : NK ;
+fun lirahtaa_VK : VK ;
+fun liraus_NK : NK ;
+fun lirautella_VK : VK ;
+fun lirauttaa_VK : VK ;
+fun liri_NK : NK ;
+fun lirina'_NK : NK ;
+fun lirista'_VK : VK ;
+fun liritta'a'_VK : VK ;
+fun liritys_NK : NK ;
+fun liria'_VK : VK ;
+fun lirkutella_VK : VK ;
+fun lirkuttaa_VK : VK ;
+fun lirkuttelu_NK : NK ;
+fun lirkutus_NK : NK ;
+fun liro_NK : NK ;
+fun lirputella_VK : VK ;
+fun lirputtaa_VK : VK ;
+fun liru_NK : NK ;
+fun lirua_VK : VK ;
+fun lirunlaru_NK : NK ;
+fun liruttaa_VK : VK ;
+fun lirutus_NK : NK ;
+fun lisensiaatti_NK : NK ;
+fun lisensioida_VK : VK ;
+fun lisensiointi_NK : NK ;
+fun lisensoida_VK : VK ;
+fun lisensointi_NK : NK ;
+fun lisenssi_NK : NK ;
+fun lisko_1_NK : NK ;
+fun lisko_2_NK : NK ;
+fun lista_NK : NK ;
+fun listake_NK : NK ;
+fun listata_VK : VK ;
+fun listaus_NK : NK ;
+fun listauttaa_VK : VK ;
+fun listautua_VK : VK ;
+fun listia'_VK : VK ;
+fun listoittaa_VK : VK ;
+fun listoitus_NK : NK ;
+fun lisuke_NK : NK ;
+fun lisa'_NK : NK ;
+fun lisa'aika_NK : NK ;
+fun lisa'illa'_VK : VK ;
+fun lisa'juuri_NK : NK ;
+fun lisa'ke_NK : NK ;
+fun lisa'ksi_AdvK : AdvK ;
+fun lisa'lyo'ntisyys_NK : NK ;
+fun lisa'ta'_VK : VK ;
+fun lisa'ys_NK : NK ;
+fun lisa'ytya'_VK : VK ;
+fun lisa'a'_AdvK : AdvK ;
+fun lisa'a'ntyvyys_NK : NK ;
+fun lisa'a'ntya'_VK : VK ;
+fun litania_NK : NK ;
+fun liti_NK : NK ;
+fun litina'_NK : NK ;
+fun litistyksiin_AdvK : AdvK ;
+fun litistyksissa'_AdvK : AdvK ;
+fun litistyma'_NK : NK ;
+fun litistys_NK : NK ;
+fun litistya'_VK : VK ;
+fun litista'_VK : VK ;
+fun litista'a'_VK : VK ;
+fun litium_NK : NK ;
+fun litkia'_VK : VK ;
+fun litku_NK : NK ;
+fun lito_NK : NK ;
+fun litografia_NK : NK ;
+fun litografinen_NK : NK ;
+fun litra_NK : NK ;
+fun litroittain_AdvK : AdvK ;
+fun litsa_NK : NK ;
+fun litsahdella_VK : VK ;
+fun litsahtaa_VK : VK ;
+fun litsi_1_NK : NK ;
+fun litsi_2_NK : NK ;
+fun littera_NK : NK ;
+fun litteroida_VK : VK ;
+fun litteys_NK : NK ;
+fun littea'_NK : NK ;
+fun litu_NK : NK ;
+fun litukka_NK : NK ;
+fun liturgi_NK : NK ;
+fun liturgia_NK : NK ;
+fun liturginen_NK : NK ;
+fun lituskainen_NK : NK ;
+fun liudennus_NK : NK ;
+fun liudentaa_VK : VK ;
+fun liudentua_VK : VK ;
+fun liueta_VK : VK ;
+fun liukas_AK : AK ;
+fun liukastaa_VK : VK ;
+fun liukaste_NK : NK ;
+fun liukastella_VK : VK ;
+fun liukastua_VK : VK ;
+fun liukastus_NK : NK ;
+fun liukastuttaa_VK : VK ;
+fun liukenematon_NK : NK ;
+fun liukenemattomuus_NK : NK ;
+fun liukenevuus_NK : NK ;
+--+ fun liukkaasti_AdvK : AdvK ;
+fun liukkaus_NK : NK ;
+fun liukoinen_NK : NK ;
+fun liukoisuus_NK : NK ;
+fun liuku_NK : NK ;
+fun liukua_VK : VK ;
+fun liukuma_NK : NK ;
+fun liukuri_NK : NK ;
+fun liukuvasti_AdvK : AdvK ;
+fun liukuvuus_NK : NK ;
+fun liuos_NK : NK ;
+fun liuota_VK : VK ;
+fun liuote_NK : NK ;
+fun liuotin_NK : NK ;
+fun liuottaa_VK : VK ;
+fun liuotus_NK : NK ;
+fun liuska_NK : NK ;
+fun liuskainen_NK : NK ;
+fun liuske_NK : NK ;
+fun liuskeinen_NK : NK ;
+fun liuskoittaa_VK : VK ;
+fun liuskoittua_VK : VK ;
+fun liuta_NK : NK ;
+fun liu_unta_NK : NK ;
+fun liu_uttaa_VK : VK ;
+fun livahtaa_VK : VK ;
+fun livautella_VK : VK ;
+fun livauttaa_VK : VK ;
+fun live_1_NK : NK ;
+fun live_2_AdvK : AdvK ;
+fun liverrella'_VK : VK ;
+fun liverrys_NK : NK ;
+fun livertely_NK : NK ;
+fun liverta'a'_VK : VK ;
+fun livetta'a'_VK : VK ;
+fun liveta'_VK : VK ;
+fun livista'a'_VK : VK ;
+fun livohkaan_AdvK : AdvK ;
+fun livree_NK : NK ;
+fun loafer_NK : NK ;
+fun loata_VK : VK ;
+fun lobata_VK : VK ;
+fun lobbaaja_NK : NK ;
+fun lobbailla_VK : VK ;
+fun lobbari_NK : NK ;
+fun lobbaus_NK : NK ;
+fun lobbismi_NK : NK ;
+fun lobbisti_NK : NK ;
+fun lobby_NK : NK ;
+fun lobelia_NK : NK ;
+fun loden_NK : NK ;
+fun logaritmi_NK : NK ;
+fun logaritminen_NK : NK ;
+fun logiikka_NK : NK ;
+fun logistiikka_1_NK : NK ;
+fun logistiikka_2_NK : NK ;
+fun logistikko_NK : NK ;
+fun logo_NK : NK ;
+fun logonomi_NK : NK ;
+fun logopedi_NK : NK ;
+fun logopedia_NK : NK ;
+fun lohduke_NK : NK ;
+fun lohdullinen_NK : NK ;
+fun lohdutella_VK : VK ;
+fun lohduton_NK : NK ;
+fun lohduttaa_VK : VK ;
+fun lohduttautua_VK : VK ;
+fun lohduttomasti_AdvK : AdvK ;
+fun lohduttomuus_NK : NK ;
+fun lohdutus_NK : NK ;
+fun lohestaa_VK : VK ;
+fun lohi_NK : NK ;
+fun lohjeta_VK : VK ;
+fun lohkaista_VK : VK ;
+fun lohkaisu_NK : NK ;
+fun lohkare_NK : NK ;
+fun lohkareinen_NK : NK ;
+fun lohkeama_NK : NK ;
+fun lohkeavuus_NK : NK ;
+fun lohkeilla_VK : VK ;
+fun lohko_NK : NK ;
+fun lohkoa_VK : VK ;
+fun lohkoinen_NK : NK ;
+fun lohkoontua_VK : VK ;
+fun lohkoutua_VK : VK ;
+fun lohtu_NK : NK ;
+fun loihtia_VK : VK ;
+fun loikata_VK : VK ;
+fun loikka_NK : NK ;
+fun loikkari_NK : NK ;
+fun loikkaus_NK : NK ;
+fun loikkia_VK : VK ;
+fun loikko_NK : NK ;
+fun loikoa_VK : VK ;
+fun loikoilla_VK : VK ;
+fun loikoilu_NK : NK ;
+fun loilottaa_VK : VK ;
+fun loilotus_NK : NK ;
+fun loimahtaa_VK : VK ;
+fun loimi_NK : NK ;
+fun loiminen_NK : NK ;
+fun loimottaa_VK : VK ;
+fun loimotus_NK : NK ;
+fun loimu_NK : NK ;
+fun loimuta_VK : VK ;
+fun loimuttaa_VK : VK ;
+fun loinen_NK : NK ;
+fun loisia_VK : VK ;
+fun loiskahdella_VK : VK ;
+fun loiskahdus_NK : NK ;
+fun loiskahtaa_VK : VK ;
+fun loiskaus_NK : NK ;
+fun loiskauttaa_VK : VK ;
+fun loiske_NK : NK ;
+fun loiskia_VK : VK ;
+fun loiskina_NK : NK ;
+fun loiskinta_NK : NK ;
+fun loiskua_VK : VK ;
+fun loiskuna_NK : NK ;
+fun loiskunta_NK : NK ;
+fun loiskuta_VK : VK ;
+fun loiskutella_VK : VK ;
+fun loiskuttaa_VK : VK ;
+fun loistaa_VK : VK ;
+fun loistava_AK : AK ;
+--+ fun loistavasti_AdvK : AdvK ;
+fun loistavuus_NK : NK ;
+fun loiste_NK : NK ;
+--+ fun loisteliaasti_AdvK : AdvK ;
+fun loisteliaisuus_NK : NK ;
+fun loistelias_AK : AK ;
+fun loisto_NK : NK ;
+fun loistoaika_NK : NK ;
+fun loistokas_NK : NK ;
+fun loitolla_AdvK : AdvK ;
+fun loitolle_AdvK : AdvK ;
+fun loitolta_AdvK : AdvK ;
+fun loitommaksi_AdvK : AdvK ;
+fun loitommas_AdvK : AdvK ;
+fun loitompaa_AdvK : AdvK ;
+fun loitompana_AdvK : AdvK ;
+fun loitonnus_NK : NK ;
+fun loitontaa_VK : VK ;
+fun loitontua_VK : VK ;
+fun loitota_VK : VK ;
+fun loitsia_VK : VK ;
+fun loitsu_NK : NK ;
+fun loiva_AK : AK ;
+--+ fun loivasti_AdvK : AdvK ;
+fun loivennus_NK : NK ;
+fun loiventaa_VK : VK ;
+fun loiventua_VK : VK ;
+fun loiveta_VK : VK ;
+fun loivuus_NK : NK ;
+fun lojaali_AK : AK ;
+fun lojaalinen_AK : AK ;
+--+ fun lojaalisesti_AdvK : AdvK ;
+--+ fun lojaalisti_AdvK : AdvK ;
+fun lojaalisuus_NK : NK ;
+fun lojaalius_NK : NK ;
+fun lojahdus_NK : NK ;
+fun lojahtaa_VK : VK ;
+fun lojaliteetti_NK : NK ;
+fun lojua_VK : VK ;
+fun loka_NK : NK ;
+--+ fun lokaalisesti_AdvK : AdvK ;
+fun lokaalisuus_NK : NK ;
+fun lokainen_NK : NK ;
+fun lokalisaatio_NK : NK ;
+fun lokalisoida_VK : VK ;
+fun lokalisoitua_VK : VK ;
+fun lokari_NK : NK ;
+fun lokerikko_NK : NK ;
+fun lokero_NK : NK ;
+fun lokeroida_VK : VK ;
+fun lokeroinen_NK : NK ;
+fun lokerointi_NK : NK ;
+fun lokeroitua_VK : VK ;
+fun lokerosto_NK : NK ;
+fun loki_NK : NK ;
+fun lokki_NK : NK ;
+fun lokoisa_AK : AK ;
+--+ fun lokoisasti_AdvK : AdvK ;
+fun lokomotiivi_NK : NK ;
+fun loksaa_VK : VK ;
+fun loksahdella_VK : VK ;
+fun loksahdus_NK : NK ;
+fun loksahtaa_VK : VK ;
+fun loksauttaa_VK : VK ;
+fun lokse_NK : NK ;
+fun loksua_VK : VK ;
+fun loksuttaa_VK : VK ;
+fun lokvatti_NK : NK ;
+fun lolita_NK : NK ;
+fun loma_NK : NK ;
+fun loma_aika_NK : NK ;
+fun lomaan_AdvK : AdvK ;
+fun lomailija_NK : NK ;
+fun lomailla_VK : VK ;
+fun lomailu_NK : NK ;
+fun lomake_NK : NK ;
+fun lomakkain_AdvK : AdvK ;
+fun lomassa_AdvK : AdvK ;
+fun lomasta_AdvK : AdvK ;
+fun lomatusten_AdvK : AdvK ;
+fun lomauttaa_VK : VK ;
+fun lomautus_NK : NK ;
+fun lomikkain_AdvK : AdvK ;
+fun lomitse_AdvK : AdvK ;
+fun lomittaa_VK : VK ;
+fun lomittain_AdvK : AdvK ;
+fun lomittainen_NK : NK ;
+fun lomittaja_NK : NK ;
+fun lomittua_VK : VK ;
+fun lomitus_NK : NK ;
+fun lomitusten_AdvK : AdvK ;
+fun lommo_NK : NK ;
+fun lommoilla_VK : VK ;
+fun lommoinen_NK : NK ;
+fun lommoontua_VK : VK ;
+fun lommoutua_VK : VK ;
+fun lompakko_NK : NK ;
+fun lompsa_NK : NK ;
+fun long_drink_NK : NK ;
+fun longerrella_VK : VK ;
+fun longertaa_VK : VK ;
+fun longitudi_NK : NK ;
+fun lonka_NK : NK ;
+fun lonkero_1_NK : NK ;
+fun lonkero_2_NK : NK ;
+fun lonkeroinen_NK : NK ;
+fun lonkka_NK : NK ;
+fun lonksahtaa_VK : VK ;
+fun lonksua_VK : VK ;
+fun lonksuttaa_VK : VK ;
+fun lonksutus_NK : NK ;
+fun lonkuttaa_VK : VK ;
+fun lonkutus_NK : NK ;
+fun looginen_AK : AK ;
+--+ fun loogisesti_AdvK : AdvK ;
+fun loogisuus_NK : NK ;
+fun look_NK : NK ;
+fun loosi_NK : NK ;
+fun loota_NK : NK ;
+fun lootus_NK : NK ;
+fun lopahtaa_VK : VK ;
+--? fun loparit_NK : NK ;
+fun lopen_AdvK : AdvK ;
+fun lopetella_VK : VK ;
+fun lopettaa_VK : VK ;
+--? fun lopettajaiset_NK : NK ;
+fun lopetus_NK : NK ;
+fun loppiainen_NK : NK ;
+fun loppiaisaika_NK : NK ;
+fun loppu_NK : NK ;
+fun loppua_VK : VK ;
+fun loppuaika_NK : NK ;
+fun loppuinen_NK : NK ;
+fun loppukaneetti_NK : NK ;
+fun loppumaton_NK : NK ;
+fun loppumattomasti_AdvK : AdvK ;
+fun loppuun_AdvK : AdvK ;
+fun lopuillaan_AdvK : AdvK ;
+fun lopuke_NK : NK ;
+fun lopuksi_AdvK : AdvK ;
+fun lopulla_AdvK : AdvK ;
+fun lopullaan_AdvK : AdvK ;
+fun lopullinen_AK : AK ;
+--+ fun lopullisesti_AdvK : AdvK ;
+fun lopullisuus_NK : NK ;
+fun lopulta_AdvK : AdvK ;
+fun lopussa_AdvK : AdvK ;
+fun loputon_NK : NK ;
+fun loputtomasti_AdvK : AdvK ;
+fun loputtomiin_AdvK : AdvK ;
+fun loputtomuus_NK : NK ;
+fun lorahdus_NK : NK ;
+fun lorahtaa_VK : VK ;
+fun loraus_NK : NK ;
+fun lorauttaa_VK : VK ;
+fun lordi_NK : NK ;
+fun lordoosi_NK : NK ;
+fun lorina_NK : NK ;
+fun lorista_VK : VK ;
+fun lornjetti_NK : NK ;
+fun lorottaa_VK : VK ;
+fun loru_NK : NK ;
+fun loruilla_VK : VK ;
+fun lorvailla_VK : VK ;
+fun lorvailu_NK : NK ;
+fun lorvehtia_VK : VK ;
+fun lorvia_VK : VK ;
+fun loska_NK : NK ;
+fun loskaantua_VK : VK ;
+fun loskainen_NK : NK ;
+fun losottaa_VK : VK ;
+fun lossata_1_VK : VK ;
+fun lossata_2_VK : VK ;
+fun lossi_NK : NK ;
+fun lossiksi_AdvK : AdvK ;
+fun lotina_NK : NK ;
+fun lotion_NK : NK ;
+fun lotista_VK : VK ;
+fun lotja_NK : NK ;
+fun lotkauttaa_VK : VK ;
+fun lotota_VK : VK ;
+fun lotrata_VK : VK ;
+fun lotta_1_NK : NK ;
+fun lotta_2_NK : NK ;
+fun lotto_NK : NK ;
+fun lottoaja_NK : NK ;
+fun louferi_NK : NK ;
+fun louhe_NK : NK ;
+fun louhia_VK : VK ;
+fun louhikko_NK : NK ;
+fun louhikkoinen_NK : NK ;
+fun louhimo_NK : NK ;
+fun louhinta_NK : NK ;
+fun louhos_NK : NK ;
+fun loukata_VK : VK ;
+fun loukkaamaton_NK : NK ;
+fun loukkaantua_VK : VK ;
+fun loukkaus_NK : NK ;
+fun loukkautua_VK : VK ;
+fun loukko_NK : NK ;
+fun loukku_NK : NK ;
+fun loukuttaa_VK : VK ;
+fun lounainen_NK : NK ;
+fun lounas_NK : NK ;
+fun lounasaika_NK : NK ;
+fun lounastaa_VK : VK ;
+fun louske_NK : NK ;
+fun louskua_VK : VK ;
+fun louskutella_VK : VK ;
+fun louskuttaa_VK : VK ;
+fun lovellinen_NK : NK ;
+fun loveta_VK : VK ;
+fun loveus_NK : NK ;
+fun lovi_NK : NK ;
+fun lovinen_NK : NK ;
+fun lovittaa_VK : VK ;
+fun lovitus_NK : NK ;
+fun lude_NK : NK ;
+fun lueksia_VK : VK ;
+fun luennoida_VK : VK ;
+fun luennoija_NK : NK ;
+fun luennoitsija_NK : NK ;
+fun luenta_NK : NK ;
+fun luento_NK : NK ;
+fun lues_NK : NK ;
+fun lueskella_VK : VK ;
+fun luetella_VK : VK ;
+fun luetelma_NK : NK ;
+fun luettaa_VK : VK ;
+fun luettava_NK : NK ;
+fun luettavuus_NK : NK ;
+fun luettelo_NK : NK ;
+fun luetteloida_VK : VK ;
+fun luettelointi_NK : NK ;
+fun luetuttaa_VK : VK ;
+fun luhistaa_VK : VK ;
+fun luhistua_VK : VK ;
+fun luhistuma_NK : NK ;
+fun luhta_NK : NK ;
+fun luhtahuitti_NK : NK ;
+fun luhti_NK : NK ;
+fun luihu_AK : AK ;
+--+ fun luihusti_AdvK : AdvK ;
+fun luikahtaa_VK : VK ;
+fun luikata_VK : VK ;
+fun luikauttaa_VK : VK ;
+fun luikero_NK : NK ;
+fun luikerrella_VK : VK ;
+fun luikertaa_VK : VK ;
+fun luikka_NK : NK ;
+fun luikkia_VK : VK ;
+fun luiku_NK : NK ;
+fun luikuri_NK : NK ;
+fun luimistaa_VK : VK ;
+fun luimistella_VK : VK ;
+fun luimussa_AdvK : AdvK ;
+fun luimuun_AdvK : AdvK ;
+fun luinen_NK : NK ;
+fun luiru_NK : NK ;
+fun luiseva_NK : NK ;
+fun luiska_NK : NK ;
+fun luiskahdus_NK : NK ;
+fun luiskahtaa_VK : VK ;
+fun luiskata_VK : VK ;
+fun luiskauttaa_VK : VK ;
+fun luistaa_VK : VK ;
+fun luistattaa_VK : VK ;
+fun luistava_NK : NK ;
+fun luistelija_NK : NK ;
+fun luistella_VK : VK ;
+fun luistelu_NK : NK ;
+fun luisti_NK : NK ;
+fun luistin_NK : NK ;
+fun luisto_NK : NK ;
+fun luistoinen_NK : NK ;
+fun luisu_NK : NK ;
+fun luisua_VK : VK ;
+fun luisuttaa_VK : VK ;
+fun luja_AK : AK ;
+fun lujaa_AdvK : AdvK ;
+fun lujaan_AdvK : AdvK ;
+--+ fun lujaka'tisesti_AdvK : AdvK ;
+fun lujalla_AdvK : AdvK ;
+fun lujalle_AdvK : AdvK ;
+fun lujassa_AdvK : AdvK ;
+fun lujasta_AdvK : AdvK ;
+--+ fun lujasti_AdvK : AdvK ;
+fun lujentaa_VK : VK ;
+fun lujentua_VK : VK ;
+fun lujeta_VK : VK ;
+fun lujike_NK : NK ;
+fun lujilla_AdvK : AdvK ;
+fun lujille_AdvK : AdvK ;
+fun lujite_NK : NK ;
+fun lujittaa_VK : VK ;
+fun lujittua_VK : VK ;
+fun lujuus_NK : NK ;
+fun lukaali_NK : NK ;
+fun lukaista_VK : VK ;
+fun lukea_VK : VK ;
+fun lukema_NK : NK ;
+fun lukematon_NK : NK ;
+fun lukeminen_NK : NK ;
+fun lukemisto_NK : NK ;
+fun lukeneisto_NK : NK ;
+fun lukeneisuus_NK : NK ;
+fun lukeutua_VK : VK ;
+fun lukien_AdvK : AdvK ;
+fun lukija_NK : NK ;
+fun lukio_NK : NK ;
+fun lukita_VK : VK ;
+fun lukitsin_NK : NK ;
+fun lukittua_VK : VK ;
+fun lukitus_NK : NK ;
+fun lukkari_NK : NK ;
+fun lukkaroida_VK : VK ;
+fun lukki_NK : NK ;
+fun lukkiinnuttaa_VK : VK ;
+fun lukkiintua_VK : VK ;
+fun lukkiuttaa_VK : VK ;
+fun lukkiutua_VK : VK ;
+fun lukkiutuma_NK : NK ;
+fun lukkiutumaton_NK : NK ;
+fun lukko_NK : NK ;
+fun lukkoon_AdvK : AdvK ;
+fun lukkoutua_VK : VK ;
+fun lukollinen_NK : NK ;
+fun lukossa_AdvK : AdvK ;
+fun lukosta_AdvK : AdvK ;
+fun luksaatio_NK : NK ;
+fun luksi_NK : NK ;
+fun luksus_NK : NK ;
+fun luksuttaa_VK : VK ;
+fun luku_NK : NK ;
+fun lukuinen_NK : NK ;
+fun lukuisa_AK : AK ;
+--+ fun lukuisasti_AdvK : AdvK ;
+--? fun lukuset_NK : NK ;
+fun lukuun_ottamatta_AdvK : AdvK ;
+fun lulla_NK : NK ;
+fun lullukka_NK : NK ;
+fun lume_NK : NK ;
+fun lumen_NK : NK ;
+fun lumeta_VK : VK ;
+fun lumettaa_VK : VK ;
+fun lumettua_VK : VK ;
+fun lumetus_NK : NK ;
+fun lumeutua_VK : VK ;
+fun lumi_NK : NK ;
+fun lumikko_NK : NK ;
+fun luminanssi_NK : NK ;
+fun luminen_NK : NK ;
+fun luminesenssi_NK : NK ;
+fun lumittaa_VK : VK ;
+fun lumme_NK : NK ;
+fun lumo_NK : NK ;
+fun lumoava_NK : NK ;
+fun lumoojatar_NK : NK ;
+fun lumota_VK : VK ;
+fun lumous_NK : NK ;
+fun lumoutua_VK : VK ;
+fun lumpeikko_NK : NK ;
+fun lumpio_NK : NK ;
+fun lumppari_NK : NK ;
+fun lumppu_NK : NK ;
+fun lumpsahtaa_VK : VK ;
+fun lumpsauttaa_VK : VK ;
+fun lunastaa_VK : VK ;
+fun lunastaja_NK : NK ;
+fun lunastus_NK : NK ;
+fun lunki_AK : AK ;
+--+ fun lunkisti_AdvK : AdvK ;
+--? fun lunnaat_NK : NK ;
+fun lunni_NK : NK ;
+fun luntata_VK : VK ;
+fun luntta_NK : NK ;
+fun lunttaus_NK : NK ;
+fun luntti_NK : NK ;
+fun lunttu_1_NK : NK ;
+fun lunttu_2_NK : NK ;
+fun luo_AdvK : AdvK ;
+fun luoda_VK : VK ;
+fun luodata_VK : VK ;
+fun luode_1_NK : NK ;
+fun luode_2_NK : NK ;
+fun luodikko_NK : NK ;
+fun luoja_NK : NK ;
+fun luokallinen_NK : NK ;
+fun luokaton_NK : NK ;
+fun luokattomuus_NK : NK ;
+fun luokitella_VK : VK ;
+fun luokittaa_VK : VK ;
+fun luokittelu_NK : NK ;
+fun luokittua_VK : VK ;
+fun luokitus_NK : NK ;
+fun luokka_1_NK : NK ;
+fun luokka_2_NK : NK ;
+fun luokkainen_NK : NK ;
+fun luokkaisuus_NK : NK ;
+fun luokki_NK : NK ;
+fun luoko_NK : NK ;
+fun luokse_AdvK : AdvK ;
+fun luola_NK : NK ;
+fun luolasto_NK : NK ;
+fun luoma_NK : NK ;
+fun luomi_1_NK : NK ;
+fun luomi_2_NK : NK ;
+fun luomus_NK : NK ;
+fun luona_AdvK : AdvK ;
+fun luonne_NK : NK ;
+fun luonnehdinta_NK : NK ;
+fun luonnehtia_VK : VK ;
+fun luonnikas_AK : AK ;
+--+ fun luonnikkaasti_AdvK : AdvK ;
+fun luonnikkuus_NK : NK ;
+fun luonnistaa_VK : VK ;
+fun luonnistua_VK : VK ;
+fun luonnollinen_AK : AK ;
+--+ fun luonnollisesti_AdvK : AdvK ;
+fun luonnollisuus_NK : NK ;
+fun luonnonlaki_NK : NK ;
+fun luonnontilainen_NK : NK ;
+fun luonnos_NK : NK ;
+fun luonnostaan_AdvK : AdvK ;
+fun luonnostella_VK : VK ;
+fun luonnostelu_NK : NK ;
+fun luonnoton_NK : NK ;
+fun luonnottomasti_AdvK : AdvK ;
+fun luonnottomuus_NK : NK ;
+fun luonnuttaa_VK : VK ;
+fun luontainen_AK : AK ;
+--+ fun luontaisesti_AdvK : AdvK ;
+--+ fun luonteenomaisesti_AdvK : AdvK ;
+fun luonteenomaisuus_NK : NK ;
+fun luonteeton_NK : NK ;
+fun luonteettomuus_NK : NK ;
+fun luonteikas_NK : NK ;
+fun luonteinen_AK : AK ;
+--+ fun luonteisesti_AdvK : AdvK ;
+fun luonteisuus_NK : NK ;
+fun luonteva_AK : AK ;
+--+ fun luontevasti_AdvK : AdvK ;
+fun luontevuus_NK : NK ;
+fun luonti_NK : NK ;
+fun luonto_NK : NK ;
+fun luontoinen_NK : NK ;
+fun luontoisuus_NK : NK ;
+fun luontojaan_AdvK : AdvK ;
+fun luontua_VK : VK ;
+fun luopio_NK : NK ;
+fun luopua_VK : VK ;
+fun luopumus_NK : NK ;
+fun luostari_NK : NK ;
+fun luota_AdvK : AdvK ;
+fun luotaantyo'nta'va'_AK : AK ;
+--+ fun luotaantyo'nta'va'sti_AdvK : AdvK ;
+fun luotella_VK : VK ;
+fun luotettava_AK : AK ;
+--+ fun luotettavasti_AdvK : AdvK ;
+fun luotettavuus_NK : NK ;
+fun luotettu_NK : NK ;
+fun luoti_NK : NK ;
+fun luoto_NK : NK ;
+fun luotollinen_NK : NK ;
+fun luotottaa_VK : VK ;
+fun luotottaja_NK : NK ;
+fun luototus_NK : NK ;
+fun luotsailla_VK : VK ;
+fun luotsata_VK : VK ;
+fun luotsaus_NK : NK ;
+fun luotsi_NK : NK ;
+fun luotta_NK : NK ;
+fun luottaa_VK : VK ;
+fun luottamuksellinen_AK : AK ;
+--+ fun luottamuksellisesti_AdvK : AdvK ;
+fun luottamuksellisuus_NK : NK ;
+fun luottamus_NK : NK ;
+fun luottavainen_AK : AK ;
+--+ fun luottavaisesti_AdvK : AdvK ;
+fun luottelu_NK : NK ;
+fun luotti_NK : NK ;
+fun luotto_NK : NK ;
+fun luova_AK : AK ;
+--+ fun luovasti_AdvK : AdvK ;
+fun luovi_NK : NK ;
+fun luovia_VK : VK ;
+fun luovuttaa_VK : VK ;
+fun luovuttaja_NK : NK ;
+fun luovuttamaton_NK : NK ;
+fun luovutus_NK : NK ;
+fun luovuus_NK : NK ;
+fun lupa_NK : NK ;
+fun lupaava_AK : AK ;
+--+ fun lupaavasti_AdvK : AdvK ;
+fun lupailla_VK : VK ;
+fun lupaus_NK : NK ;
+fun lupautua_VK : VK ;
+fun lupiini_NK : NK ;
+fun luppi_NK : NK ;
+fun luppo_NK : NK ;
+fun luppoaika_NK : NK ;
+fun lupsahdella_VK : VK ;
+fun lupsahtaa_VK : VK ;
+fun lupsakas_AK : AK ;
+fun lupsakasti_AdvK : AdvK ;
+fun lupsakka_NK : NK ;
+--+ fun lupsakkaasti_AdvK : AdvK ;
+fun lupsakkuus_NK : NK ;
+fun lurahtaa_VK : VK ;
+fun luraus_NK : NK ;
+fun lurauttaa_VK : VK ;
+fun luritella_VK : VK ;
+fun lurittaa_VK : VK ;
+fun luritus_NK : NK ;
+fun lurjus_NK : NK ;
+--+ fun lurjusmaisesti_AdvK : AdvK ;
+fun lurjustella_VK : VK ;
+fun lurpalla_AdvK : AdvK ;
+fun lurpallaan_AdvK : AdvK ;
+fun lurpalle_AdvK : AdvK ;
+fun lurpalleen_AdvK : AdvK ;
+fun lurpassa_AdvK : AdvK ;
+fun lurppaan_AdvK : AdvK ;
+fun luserni_NK : NK ;
+fun lusia_VK : VK ;
+fun lusikallinen_NK : NK ;
+fun lusikka_NK : NK ;
+fun lusikoida_VK : VK ;
+fun lusmuilija_NK : NK ;
+fun luste_NK : NK ;
+fun lusto_NK : NK ;
+fun luterilainen_NK : NK ;
+fun luterilaisuus_NK : NK ;
+fun luti_NK : NK ;
+fun lutikka_NK : NK ;
+fun lutka_NK : NK ;
+fun lutkuttaa_VK : VK ;
+fun lutkutus_NK : NK ;
+fun lutukka_NK : NK ;
+fun lutunen_NK : NK ;
+fun lutviutua_VK : VK ;
+fun luu_NK : NK ;
+fun luudas_NK : NK ;
+fun luuhata_VK : VK ;
+fun luukku_NK : NK ;
+fun luukkuunkanto_NK : NK ;
+fun luukuttaa_VK : VK ;
+fun luulla_VK : VK ;
+fun luulo_NK : NK ;
+fun luuloisuus_NK : NK ;
+fun luulotella_VK : VK ;
+fun luulottelu_NK : NK ;
+fun luultava_AK : AK ;
+--+ fun luultavasti_AdvK : AdvK ;
+fun luumen_NK : NK ;
+fun luumu_NK : NK ;
+fun luuppi_NK : NK ;
+fun luurata_VK : VK ;
+fun luuri_NK : NK ;
+fun luuseri_NK : NK ;
+fun luuska_NK : NK ;
+fun luusto_NK : NK ;
+fun luustoinen_NK : NK ;
+fun luuta_NK : NK ;
+fun luutia_VK : VK ;
+fun luutnantti_NK : NK ;
+fun luuton_NK : NK ;
+fun luuttu_1_NK : NK ;
+fun luuttu_2_NK : NK ;
+fun luutua_VK : VK ;
+fun luutuneisuus_NK : NK ;
+fun luututa_VK : VK ;
+fun luvallinen_AK : AK ;
+--+ fun luvallisesti_AdvK : AdvK ;
+fun luvallistaa_VK : VK ;
+fun luvallisuus_NK : NK ;
+fun luvanvaraistaa_VK : VK ;
+fun luvata_VK : VK ;
+fun luvaton_NK : NK ;
+fun luvattomasti_AdvK : AdvK ;
+fun luvattomuus_NK : NK ;
+fun luvuton_NK : NK ;
+fun luvuttomasti_AdvK : AdvK ;
+fun lux_NK : NK ;
+fun lyhde_NK : NK ;
+fun lyhenema'_NK : NK ;
+fun lyhenne_NK : NK ;
+fun lyhennella'_VK : VK ;
+fun lyhennelma'_NK : NK ;
+fun lyhennys_NK : NK ;
+fun lyhentyma'_NK : NK ;
+fun lyhentya'_VK : VK ;
+fun lyhenta'ma'to'n_NK : NK ;
+fun lyhenta'a'_VK : VK ;
+fun lyheta'_VK : VK ;
+fun LYHKI_NK : NK ;
+fun lyhka'inen_NK : NK ;
+fun lyhty_NK : NK ;
+fun lyhyeen_AdvK : AdvK ;
+fun lyhyelle_AdvK : AdvK ;
+fun lyhyella'_AdvK : AdvK ;
+fun lyhyelti_AdvK : AdvK ;
+fun lyhyenla'nta'_NK : NK ;
+fun lyhyesti_AdvK : AdvK ;
+fun lyhyka'inen_AK : AK ;
+--+ fun lyhyka'isesti_AdvK : AdvK ;
+fun lyhyka'isyys_NK : NK ;
+fun lyhyt_NK : NK ;
+--+ fun lyhytja'nnitteisesti_AdvK : AdvK ;
+--+ fun lyhytja'nteisesti_AdvK : AdvK ;
+--+ fun lyhytna'ko'isesti_AdvK : AdvK ;
+--+ fun lyhytsanaisesti_AdvK : AdvK ;
+fun lyhyys_NK : NK ;
+fun lyijy_NK : NK ;
+fun lyijyke_NK : NK ;
+fun lyijytta'a'_VK : VK ;
+fun lyijyta'_VK : VK ;
+fun lyijyto'n_NK : NK ;
+fun lykkia'_VK : VK ;
+fun lykky_NK : NK ;
+fun lykka'ys_NK : NK ;
+fun lykka'ytya'_VK : VK ;
+fun lykka'a'ntya'_VK : VK ;
+fun lyka'sta'a'_VK : VK ;
+fun lyka'ta'_VK : VK ;
+fun lyllerta'a'_VK : VK ;
+fun lyllero'_NK : NK ;
+fun lyllya'_VK : VK ;
+fun lyly_NK : NK ;
+fun lylynlykkija'_NK : NK ;
+fun lymfa_NK : NK ;
+fun lymfaattinen_NK : NK ;
+fun lymfooma_NK : NK ;
+fun lymfosyytti_NK : NK ;
+fun lymyilla'_VK : VK ;
+fun lymyta'_VK : VK ;
+fun lynkata_VK : VK ;
+fun lynkkaus_NK : NK ;
+fun lypsy_NK : NK ;
+fun lypsyinen_NK : NK ;
+fun lypsa'ja'_NK : NK ;
+fun lypsa'tta'a'_VK : VK ;
+fun lypsa'tys_NK : NK ;
+fun lypsa'a'_VK : VK ;
+fun lyriikka_NK : NK ;
+fun lyseo_NK : NK ;
+fun lysoli_NK : NK ;
+fun lysteri_NK : NK ;
+fun lysti_NK : NK ;
+fun lystikkyys_NK : NK ;
+--+ fun lystikka'a'sti_AdvK : AdvK ;
+fun lystika's_AK : AK ;
+fun lysta'ta'_VK : VK ;
+fun lysyssa'_AdvK : AdvK ;
+fun lysyyn_AdvK : AdvK ;
+fun lysa'hta'a'_VK : VK ;
+fun lytista'a'_VK : VK ;
+fun lyttyyn_AdvK : AdvK ;
+fun lytyssa'_AdvK : AdvK ;
+fun lyydi_NK : NK ;
+fun lyydila'inen_NK : NK ;
+fun lyyhistya'_VK : VK ;
+fun lyyhista'a'_VK : VK ;
+fun lyykistya'_VK : VK ;
+fun lyykista'a'_VK : VK ;
+fun lyyka'hta'a'_VK : VK ;
+fun lyyra_NK : NK ;
+fun lyyrikko_NK : NK ;
+fun lyyrinen_AK : AK ;
+--+ fun lyyrisesti_AdvK : AdvK ;
+fun lyyrisyys_NK : NK ;
+fun lyo'da'_VK : VK ;
+fun lyo'ja'_NK : NK ;
+fun lyo'ma'to'n_NK : NK ;
+fun lyo'nti_NK : NK ;
+fun lyo'ntinen_NK : NK ;
+fun lyo'ttyma'_NK : NK ;
+fun lyo'ttya'_VK : VK ;
+fun lyo'tta'ytya'_VK : VK ;
+fun lyo'tta'a'_VK : VK ;
+fun lyo'ta'tta'a'_VK : VK ;
+fun la'hde_NK : NK ;
+fun la'hdetta'a'_VK : VK ;
+fun la'hdetys_NK : NK ;
+fun la'heinen_AK : AK ;
+--+ fun la'heisesti_AdvK : AdvK ;
+fun la'heisyys_NK : NK ;
+fun la'hekka'in_AdvK : AdvK ;
+fun la'hekka'inen_NK : NK ;
+fun la'hekka'isyys_NK : NK ;
+fun la'helle_AdvK : AdvK ;
+fun la'hella'_AdvK : AdvK ;
+fun la'helta'_AdvK : AdvK ;
+fun la'hemmin_AdvK : AdvK ;
+fun la'hemma'_AdvK : AdvK ;
+fun la'hemma'ksi_AdvK : AdvK ;
+fun la'hemma's_AdvK : AdvK ;
+fun la'hempi_NK : NK ;
+fun la'hempa'na'_AdvK : AdvK ;
+fun la'hempa'a'_AdvK : AdvK ;
+fun la'hennella'_VK : VK ;
+fun la'hentely_NK : NK ;
+fun la'hentya'_VK : VK ;
+fun la'henta'ja'_NK : NK ;
+fun la'henta'a'_VK : VK ;
+fun la'hes_AdvK : AdvK ;
+fun la'heska'a'n_AdvK : AdvK ;
+fun la'hestulkoon_AdvK : AdvK ;
+fun la'hestulkoonkaan_AdvK : AdvK ;
+fun la'hestya'_VK : VK ;
+fun la'hete_NK : NK ;
+fun la'hetella'_VK : VK ;
+fun la'hetin_NK : NK ;
+fun la'hetti_NK : NK ;
+fun la'hettila's_NK : NK ;
+fun la'hettyville_AdvK : AdvK ;
+fun la'hettyvilla'_AdvK : AdvK ;
+fun la'hettyvilta'_AdvK : AdvK ;
+fun la'hetta'ja'_NK : NK ;
+fun la'hetta'mo'_NK : NK ;
+fun la'hetta'a'_VK : VK ;
+fun la'hetys_NK : NK ;
+fun la'hetysaika_NK : NK ;
+fun la'hetysten_AdvK : AdvK ;
+fun la'hetysto'_NK : NK ;
+fun la'heta'_VK : VK ;
+fun la'hiaika_NK : NK ;
+fun la'himailla_AdvK : AdvK ;
+fun la'himaille_AdvK : AdvK ;
+fun la'himailta_AdvK : AdvK ;
+fun la'himain_AdvK : AdvK ;
+fun la'himainkaan_AdvK : AdvK ;
+fun la'himmin_AdvK : AdvK ;
+fun la'himma'inen_NK : NK ;
+fun la'himma'ksi_AdvK : AdvK ;
+fun la'himma's_AdvK : AdvK ;
+fun la'himpa'na'_AdvK : AdvK ;
+fun la'himpa'a'_AdvK : AdvK ;
+fun la'hin_1_NK : NK ;
+fun la'hin_2_AdvK : AdvK ;
+fun la'hinna'_AdvK : AdvK ;
+fun la'histo'_NK : NK ;
+fun la'hio'_NK : NK ;
+fun la'hio'asuminen_NK : NK ;
+fun la'htema'tto'ma'sti_AdvK : AdvK ;
+fun la'htema'to'n_NK : NK ;
+fun la'htea'_VK : VK ;
+fun la'htien_AdvK : AdvK ;
+fun la'htija'_NK : NK ;
+--? fun la'htia'iset_NK : NK ;
+fun la'hto'_NK : NK ;
+fun la'hto'aika_NK : NK ;
+fun la'hto'inen_NK : NK ;
+fun la'hto'isin_AdvK : AdvK ;
+fun la'hto'kohta_NK : NK ;
+fun la'ike_NK : NK ;
+fun la'ikehtia'_VK : VK ;
+fun la'ikika's_NK : NK ;
+fun la'ikkya'_VK : VK ;
+fun la'ikka'_NK : NK ;
+fun la'ikka'inen_NK : NK ;
+fun la'ikynta'_NK : NK ;
+fun la'ikytta'a'_VK : VK ;
+fun la'ikytys_NK : NK ;
+fun la'ika'hdella'_VK : VK ;
+fun la'ika'hdys_NK : NK ;
+fun la'ika'hta'a'_VK : VK ;
+fun la'ika'ytta'a'_VK : VK ;
+fun la'imia'_VK : VK ;
+fun la'ima'hdella'_VK : VK ;
+fun la'ima'hdys_NK : NK ;
+fun la'ima'hta'a'_VK : VK ;
+fun la'ima'ista'_VK : VK ;
+fun la'ima'isy_NK : NK ;
+fun la'ima'ta'_VK : VK ;
+fun la'ima'ys_NK : NK ;
+fun la'ima'ytella'_VK : VK ;
+fun la'ima'ytta'a'_VK : VK ;
+fun la'iske_NK : NK ;
+fun la'iskika's_NK : NK ;
+fun la'iskinta'_NK : NK ;
+fun la'iskina'_NK : NK ;
+fun la'iskia'_VK : VK ;
+fun la'iskytella'_VK : VK ;
+fun la'iskytta'a'_VK : VK ;
+fun la'iskytys_NK : NK ;
+fun la'iskya'_VK : VK ;
+fun la'iska'_NK : NK ;
+fun la'iska'hdella'_VK : VK ;
+fun la'iska'hdys_NK : NK ;
+fun la'iska'htely_NK : NK ;
+fun la'iska'hta'a'_VK : VK ;
+fun la'iska'inen_NK : NK ;
+fun la'iska'ista'_VK : VK ;
+fun la'iska'ys_NK : NK ;
+fun la'iska'ytella'_VK : VK ;
+fun la'iska'ytta'a'_VK : VK ;
+fun la'jitta'in_AdvK : AdvK ;
+fun la'jitta'a'_VK : VK ;
+fun la'jitys_NK : NK ;
+fun la'ja'_NK : NK ;
+fun la'ja'hdella'_VK : VK ;
+fun la'ja'hdys_NK : NK ;
+fun la'ja'hta'a'_VK : VK ;
+fun la'ja'pa'issa'_AdvK : AdvK ;
+fun la'ja'ta'_VK : VK ;
+fun la'ja'ys_1_NK : NK ;
+fun la'ja'ys_2_NK : NK ;
+fun la'ja'ytta'a'_VK : VK ;
+fun la'kki_NK : NK ;
+--? fun la'ksia'iset_NK : NK ;
+fun la'ksy_NK : NK ;
+fun la'ksytta'a'_VK : VK ;
+fun la'ksytys_NK : NK ;
+fun la'ka'hdyksiin_AdvK : AdvK ;
+fun la'ka'hdyksissa'_AdvK : AdvK ;
+fun la'ka'hdyksissa'a'n_AdvK : AdvK ;
+fun la'ka'hdytta'a'_VK : VK ;
+fun la'ka'htya'_VK : VK ;
+fun la'lly_NK : NK ;
+fun la'lla'ri_NK : NK ;
+fun la'mmeta'_VK : VK ;
+fun la'mmike_NK : NK ;
+fun la'mmin_NK : NK ;
+fun la'mmitella'_VK : VK ;
+fun la'mmitin_NK : NK ;
+fun la'mmitteinen_NK : NK ;
+fun la'mmittely_NK : NK ;
+fun la'mmitta'ja'_NK : NK ;
+fun la'mmitta'a'_VK : VK ;
+fun la'mmitys_NK : NK ;
+fun la'mmita'_VK : VK ;
+fun la'mpimikseen_AdvK : AdvK ;
+fun la'mpimilta'a'n_AdvK : AdvK ;
+fun la'mpimyys_NK : NK ;
+fun la'mpima'inen_NK : NK ;
+fun la'mpima'lta'a'n_AdvK : AdvK ;
+fun la'mpima'sti_AdvK : AdvK ;
+fun la'mpio'_NK : NK ;
+fun la'mpa're_NK : NK ;
+fun la'mpo'_NK : NK ;
+fun la'mpo'inen_AK : AK ;
+--+ fun la'mpo'isesti_AdvK : AdvK ;
+fun la'mpo'laajeneminen_NK : NK ;
+fun la'mpo'laajenemiskerroin_NK : NK ;
+fun la'mpo'tilakerroin_NK : NK ;
+fun la'ma'ri_NK : NK ;
+fun la'ma'ta'_VK : VK ;
+--? fun la'nget_NK : NK ;
+fun la'nkka'ri_NK : NK ;
+fun la'nnemma'ksi_AdvK : AdvK ;
+fun la'nnemma's_AdvK : AdvK ;
+fun la'nnempa'na'_AdvK : AdvK ;
+fun la'nnempa'a'_AdvK : AdvK ;
+fun la'nnettya'_VK : VK ;
+fun la'nsi_NK : NK ;
+--+ fun la'nsimaisesti_AdvK : AdvK ;
+fun la'nsimaistua_VK : VK ;
+fun la'nsimaisuus_NK : NK ;
+fun la'ntinen_NK : NK ;
+fun la'ntistya'_VK : VK ;
+fun la'ntti_NK : NK ;
+fun la'ntta'a'n_AdvK : AdvK ;
+fun la'nta'lleen_AdvK : AdvK ;
+fun la'nta'lla'a'n_AdvK : AdvK ;
+fun la'nta'ssa'_AdvK : AdvK ;
+fun la'nta'ta'_VK : VK ;
+fun la'peensa'_AdvK : AdvK ;
+fun la'pi_1_AdvK : AdvK ;
+fun la'pi_2_NK : NK ;
+fun la'pikotainen_AK : AK ;
+--+ fun la'pikotaisesti_AdvK : AdvK ;
+fun la'pikotaisin_AdvK : AdvK ;
+fun la'pikuultamaton_NK : NK ;
+fun la'pikuultamattomuus_NK : NK ;
+fun la'pisa'velletty_NK : NK ;
+fun la'pitunkema_NK : NK ;
+fun la'pitunkematon_NK : NK ;
+fun la'pitunkeva_AK : AK ;
+--+ fun la'pitunkevasti_AdvK : AdvK ;
+fun la'pivientikohta_NK : NK ;
+fun la'ppa'_1_NK : NK ;
+fun la'ppa'_2_NK : NK ;
+fun la'ppa'_3_NK : NK ;
+fun la'pse_NK : NK ;
+fun la'psia'_VK : VK ;
+fun la'psytella'_VK : VK ;
+fun la'psytta'a'_VK : VK ;
+fun la'psytys_NK : NK ;
+fun la'psya'_VK : VK ;
+fun la'psa'hdella'_VK : VK ;
+fun la'psa'hdys_NK : NK ;
+fun la'psa'hta'a'_VK : VK ;
+fun la'psa'ys_NK : NK ;
+fun la'psa'ytta'a'_VK : VK ;
+fun la'psa'ytys_NK : NK ;
+fun la'psa'a'_VK : VK ;
+fun la'pyska'_NK : NK ;
+fun la'pytta'a'_VK : VK ;
+fun la'pytys_NK : NK ;
+fun la'pa'isema'tto'myys_NK : NK ;
+fun la'pa'isema'to'n_NK : NK ;
+fun la'pa'isevyys_NK : NK ;
+fun la'pa'ista'_VK : VK ;
+fun la'pa'isy_NK : NK ;
+fun la'pa'llinen_NK : NK ;
+fun la'pa'tta'a'_VK : VK ;
+fun la'pa'tys_NK : NK ;
+fun la'pa'ytta'a'_VK : VK ;
+fun la'rvi_NK : NK ;
+fun la'si_NK : NK ;
+fun la'sia'_VK : VK ;
+fun la'ski_NK : NK ;
+fun la'skimooses_NK : NK ;
+fun la'skinen_NK : NK ;
+fun la'sna'_AdvK : AdvK ;
+fun la'ssy_NK : NK ;
+fun la'ssytta'ja'_NK : NK ;
+fun la'ssytta'a'_VK : VK ;
+fun la'ssytys_NK : NK ;
+fun la'ssa'hta'a'_VK : VK ;
+fun la'tina'_NK : NK ;
+fun la'tista'_VK : VK ;
+fun la'tkinta'_NK : NK ;
+fun la'tkia'_VK : VK ;
+fun la'tka'_NK : NK ;
+fun la'tka'ista'_VK : VK ;
+fun la'tka'ytta'a'_VK : VK ;
+fun la'tra'ta'_VK : VK ;
+fun la'tsa'_NK : NK ;
+fun la'tsa'hdys_NK : NK ;
+fun la'tsa'hta'a'_VK : VK ;
+fun la'tti_1_NK : NK ;
+fun la'tti_2_NK : NK ;
+fun la'ttila'inen_NK : NK ;
+fun la'tty_NK : NK ;
+fun la'tta'na'_NK : NK ;
+fun la'ta'kko'_NK : NK ;
+fun la'ta'kko'inen_NK : NK ;
+fun la'vikko'_NK : NK ;
+fun la'viste_NK : NK ;
+fun la'vistin_NK : NK ;
+fun la'vistys_NK : NK ;
+fun la'vista'ja'_NK : NK ;
+fun la'vista'a'_VK : VK ;
+fun la'vitse_AdvK : AdvK ;
+fun la'va'hta'a'_VK : VK ;
+fun la'va'ytta'a'_VK : VK ;
+fun la'a'ha'tta'a'_VK : VK ;
+fun la'a'ha'tys_NK : NK ;
+fun la'a'ke_NK : NK ;
+fun la'a'kinna'llinen_NK : NK ;
+fun la'a'kinta'_NK : NK ;
+fun la'a'kitys_NK : NK ;
+fun la'a'kita'_VK : VK ;
+fun la'a'kkeellinen_NK : NK ;
+fun la'a'ka'ri_NK : NK ;
+fun la'a'neitta'in_AdvK : AdvK ;
+fun la'a'ni_NK : NK ;
+fun la'a'ninraja_NK : NK ;
+fun la'a'nitta'a'_VK : VK ;
+fun la'a'nitys_NK : NK ;
+fun la'a'ppia'_VK : VK ;
+fun la'a'pa'lleen_AdvK : AdvK ;
+fun la'a'pa'lla'a'n_AdvK : AdvK ;
+fun la'a'te_NK : NK ;
+fun la'a'va'_NK : NK ;
+fun lo'ho'illa'_VK : VK ;
+fun lo'ho'ily_NK : NK ;
+fun lo'ho'ta'_VK : VK ;
+fun lo'ka'po'ksy_NK : NK ;
+fun lo'ko'tta'a'_VK : VK ;
+fun lo'llya'_VK : VK ;
+fun lo'llo'_NK : NK ;
+fun lo'nkytella'_VK : VK ;
+fun lo'nkytta'a'_VK : VK ;
+fun lo'ntti_NK : NK ;
+fun lo'ntystella'_VK : VK ;
+fun lo'ntysta'a'_VK : VK ;
+fun lo'peryys_NK : NK ;
+fun lo'pero'_AK : AK ;
+--+ fun lo'pero'sti_AdvK : AdvK ;
+fun lo'pina'_NK : NK ;
+fun lo'pista'_VK : VK ;
+fun lo'po'_1_NK : NK ;
+fun lo'po'_2_NK : NK ;
+fun lo'rppo'_NK : NK ;
+fun lo'rpo'tella'_VK : VK ;
+fun lo'rpo'ttely_NK : NK ;
+fun lo'rpo'tta'a'_VK : VK ;
+fun lo'rpo'tys_NK : NK ;
+fun lo'rtsy_NK : NK ;
+fun lo'ssi_1_NK : NK ;
+fun lo'ssi_2_NK : NK ;
+fun lo'tko'_NK : NK ;
+fun lo'tko'tella'_VK : VK ;
+fun lo'tko'tta'a'_VK : VK ;
+fun lo'ydo's_NK : NK ;
+fun lo'yhdytta'a'_VK : VK ;
+fun lo'yhennys_NK : NK ;
+fun lo'yhentya'_VK : VK ;
+fun lo'yhenta'a'_VK : VK ;
+fun lo'yheta'_VK : VK ;
+fun lo'yhka'_NK : NK ;
+fun lo'yhka'ta'_VK : VK ;
+fun lo'yhtya'_VK : VK ;
+fun lo'yhytella'_VK : VK ;
+fun lo'yhytta'a'_VK : VK ;
+fun lo'yhyys_NK : NK ;
+fun lo'yha'_AK : AK ;
+fun lo'yha'hta'a'_VK : VK ;
+--+ fun lo'yha'sti_AdvK : AdvK ;
+fun lo'yly_NK : NK ;
+fun lo'ylynlyo'ma'_NK : NK ;
+fun lo'ylytta'a'_VK : VK ;
+fun lo'ylytys_NK : NK ;
+fun lo'ysentya'_VK : VK ;
+fun lo'ysenta'a'_VK : VK ;
+fun lo'ystytta'a'_VK : VK ;
+fun lo'ystya'_VK : VK ;
+fun lo'ysyys_NK : NK ;
+fun lo'ysa'_AK : AK ;
+--+ fun lo'ysa'sti_AdvK : AdvK ;
+fun lo'ysa'ta'_VK : VK ;
+fun lo'ytyma'tto'miin_AdvK : AdvK ;
+fun lo'ytyma'tto'missa'_AdvK : AdvK ;
+fun lo'ytya'_VK : VK ;
+fun lo'yta'ja'_NK : NK ;
+fun lo'yta'a'_VK : VK ;
+fun lo'yto'_NK : NK ;
+fun lo'o'peri_NK : NK ;
+fun lo'o'ppi_NK : NK ;
+fun ma_AdvK : AdvK ;
+fun maa_NK : NK ;
+fun maadoittaa_VK : VK ;
+fun maadoitus_NK : NK ;
+fun maaduttaa_VK : VK ;
+fun maagi_NK : NK ;
+fun maagikko_NK : NK ;
+fun maaginen_AK : AK ;
+--+ fun maagisesti_AdvK : AdvK ;
+fun maagisuus_NK : NK ;
+--? fun maahanpaniaiset_NK : NK ;
+fun maahantunkeutuminen_NK : NK ;
+fun maaherratar_NK : NK ;
+fun maahikas_NK : NK ;
+fun maahinen_NK : NK ;
+fun maahockey_NK : NK ;
+fun maailmallinen_NK : NK ;
+fun maailmallistua_VK : VK ;
+fun maailmallisuus_NK : NK ;
+fun maailmanaika_NK : NK ;
+fun maailmanenna'tysaika_NK : NK ;
+--+ fun maailmanhistoriallisesti_AdvK : AdvK ;
+fun maailmankatsomuksellinen_NK : NK ;
+fun maailmankolkka_NK : NK ;
+--+ fun maailmanlaajuisesti_AdvK : AdvK ;
+fun maalaamaton_NK : NK ;
+fun maalaamo_NK : NK ;
+fun maalailla_VK : VK ;
+fun maalailu_NK : NK ;
+--+ fun maalaisesti_AdvK : AdvK ;
+fun maalaisittain_AdvK : AdvK ;
+fun maalaismainen_AK : AK ;
+--+ fun maalaismaisesti_AdvK : AdvK ;
+fun maalaismaisuus_NK : NK ;
+fun maalaistua_VK : VK ;
+fun maalaisuus_NK : NK ;
+fun maalaisvoi_NK : NK ;
+fun maalata_1_VK : VK ;
+fun maalata_2_VK : VK ;
+fun maalauksellinen_AK : AK ;
+--+ fun maalauksellisesti_AdvK : AdvK ;
+fun maalauksellisuus_NK : NK ;
+fun maalaus_1_NK : NK ;
+fun maalaus_2_NK : NK ;
+fun maalauttaa_VK : VK ;
+fun maali_1_NK : NK ;
+fun maali_2_NK : NK ;
+fun maalinen_1_NK : NK ;
+fun maalinen_2_NK : NK ;
+fun maaliskuinen_NK : NK ;
+fun maaliton_1_NK : NK ;
+fun maaliton_2_NK : NK ;
+fun maallikko_NK : NK ;
+fun maallinen_NK : NK ;
+fun maallistua_VK : VK ;
+fun maallisuus_NK : NK ;
+fun maammo_NK : NK ;
+fun maamo_NK : NK ;
+fun maanantai_NK : NK ;
+fun maanantainen_NK : NK ;
+fun maanantaisin_AdvK : AdvK ;
+fun maanikko_NK : NK ;
+fun maaninen_NK : NK ;
+fun maanitella_VK : VK ;
+fun maanittelu_NK : NK ;
+fun maankohoaminen_NK : NK ;
+fun maankolkka_NK : NK ;
+fun maankuori_NK : NK ;
+fun maanlaki_NK : NK ;
+fun maannos_NK : NK ;
+fun maannostua_VK : VK ;
+fun maannousema_NK : NK ;
+fun maanraja_NK : NK ;
+fun maantaa_VK : VK ;
+fun maapa'hkina'voi_NK : NK ;
+fun maar_AdvK : AdvK ;
+fun maarin_AdvK : AdvK ;
+fun maaru_NK : NK ;
+fun maasai_NK : NK ;
+fun maastaveto_NK : NK ;
+fun maasto_NK : NK ;
+fun maastoinen_NK : NK ;
+fun maastoitse_AdvK : AdvK ;
+fun maastonkohta_NK : NK ;
+fun maastouttaa_VK : VK ;
+fun maastoutua_VK : VK ;
+fun maasturi_NK : NK ;
+fun maata_VK : VK ;
+fun maate_AdvK : AdvK ;
+fun maatiaismainen_NK : NK ;
+fun maaton_NK : NK ;
+fun maattaa_VK : VK ;
+fun maatto_NK : NK ;
+fun maatua_VK : VK ;
+fun machiavellilainen_NK : NK ;
+fun machiavellismi_NK : NK ;
+fun machiavellisti_NK : NK ;
+fun machiavellistinen_NK : NK ;
+fun macho_NK : NK ;
+fun machoilla_VK : VK ;
+fun machoilu_NK : NK ;
+fun madallus_NK : NK ;
+fun madaltaa_VK : VK ;
+fun madaltua_VK : VK ;
+fun madame_NK : NK ;
+fun made_NK : NK ;
+fun madeira_NK : NK ;
+fun madella_VK : VK ;
+fun madonna_NK : NK ;
+fun madonsyo'ma'_NK : NK ;
+fun madottaa_VK : VK ;
+fun madotus_NK : NK ;
+fun madras_NK : NK ;
+fun madrigaali_NK : NK ;
+fun maestoso_AdvK : AdvK ;
+fun maestro_NK : NK ;
+fun mafia_NK : NK ;
+fun mafioso_NK : NK ;
+fun magia_NK : NK ;
+fun magiikka_NK : NK ;
+fun magma_NK : NK ;
+fun magmaattinen_NK : NK ;
+fun magna_NK : NK ;
+fun magnaatti_NK : NK ;
+fun magneetiton_NK : NK ;
+fun magneetittomuus_NK : NK ;
+fun magneetti_NK : NK ;
+fun magneettinen_AK : AK ;
+--+ fun magneettisesti_AdvK : AdvK ;
+fun magneettisuus_NK : NK ;
+fun magneetto_NK : NK ;
+fun magnesiitti_NK : NK ;
+fun magnesium_NK : NK ;
+fun magnetiitti_NK : NK ;
+fun magnetismi_NK : NK ;
+fun magnetisoida_VK : VK ;
+fun magnetisointi_NK : NK ;
+fun magnetisoitua_VK : VK ;
+fun magnetofoni_NK : NK ;
+fun magnetoida_VK : VK ;
+fun magnetointi_NK : NK ;
+fun magnetoitua_VK : VK ;
+fun magnetoitumaton_NK : NK ;
+fun magnolia_NK : NK ;
+fun maha_NK : NK ;
+fun mahahaava_NK : NK ;
+fun mahainen_NK : NK ;
+fun mahakas_NK : NK ;
+fun mahatma_NK : NK ;
+fun mahdikas_AK : AK ;
+--+ fun mahdikkaasti_AdvK : AdvK ;
+fun mahdikkuus_NK : NK ;
+fun mahdollinen_AK : AK ;
+--+ fun mahdollisesti_AdvK : AdvK ;
+fun mahdollistaa_VK : VK ;
+fun mahdollistua_VK : VK ;
+fun mahdollisuus_NK : NK ;
+fun mahdoton_NK : NK ;
+fun mahdottomasti_AdvK : AdvK ;
+fun mahdottomuus_NK : NK ;
+fun mahduttaa_VK : VK ;
+fun mahis_NK : NK ;
+fun mahjong_NK : NK ;
+fun mahla_NK : NK ;
+fun mahlainen_NK : NK ;
+fun maho_NK : NK ;
+fun mahonia_NK : NK ;
+fun mahonki_NK : NK ;
+fun mahonkinen_NK : NK ;
+fun mahorkka_NK : NK ;
+fun mahous_NK : NK ;
+fun mahtaa_VK : VK ;
+fun mahtailevasti_AdvK : AdvK ;
+fun mahtailija_NK : NK ;
+fun mahtailla_VK : VK ;
+fun mahtailu_NK : NK ;
+fun mahtaja_NK : NK ;
+fun mahtava_AK : AK ;
+--+ fun mahtavasti_AdvK : AdvK ;
+fun mahtavuus_NK : NK ;
+fun mahti_NK : NK ;
+fun mahtipontinen_AK : AK ;
+--+ fun mahtipontisesti_AdvK : AdvK ;
+fun mahtipontisuus_NK : NK ;
+fun mahtua_VK : VK ;
+fun maihari_NK : NK ;
+fun maihin_AdvK : AdvK ;
+fun maija_NK : NK ;
+fun maikka_NK : NK ;
+fun maikki_NK : NK ;
+fun maila_NK : NK ;
+fun mailanen_NK : NK ;
+fun maileri_NK : NK ;
+fun maili_1_NK : NK ;
+fun maili_2_NK : NK ;
+fun main_AdvK : AdvK ;
+fun mainari_NK : NK ;
+fun maine_NK : NK ;
+fun mainehikas_NK : NK ;
+fun maineikas_AK : AK ;
+--+ fun maineikkaasti_AdvK : AdvK ;
+fun maineikkuus_NK : NK ;
+fun maineinen_NK : NK ;
+fun mainen_NK : NK ;
+fun maininki_NK : NK ;
+fun maininta_NK : NK ;
+fun mainio_NK : NK ;
+fun mainita_VK : VK ;
+fun mainitsematon_NK : NK ;
+fun mainittava_AK : AK ;
+--+ fun mainittavasti_AdvK : AdvK ;
+fun mainitunlainen_NK : NK ;
+fun mainonnallinen_AK : AK ;
+--+ fun mainonnallisesti_AdvK : AdvK ;
+fun mainonta_NK : NK ;
+fun mainos_NK : NK ;
+fun mainosaika_NK : NK ;
+fun mainostaa_VK : VK ;
+fun mainostus_NK : NK ;
+fun mainstream_NK : NK ;
+fun mairea_AK : AK ;
+--+ fun maireasti_AdvK : AdvK ;
+fun maireus_NK : NK ;
+fun mairitella_VK : VK ;
+fun mairittelevasti_AdvK : AdvK ;
+fun mairittelu_NK : NK ;
+fun maisema_NK : NK ;
+fun maisemallinen_NK : NK ;
+fun maisemoida_VK : VK ;
+fun maisemointi_NK : NK ;
+fun maiskahdus_NK : NK ;
+fun maiskahtaa_VK : VK ;
+fun maiskaus_NK : NK ;
+fun maiskauttaa_VK : VK ;
+fun maiskutella_VK : VK ;
+fun maiskuttaa_VK : VK ;
+fun maiskuttelu_NK : NK ;
+fun maiskutus_NK : NK ;
+fun maissa_AdvK : AdvK ;
+fun maissi_NK : NK ;
+fun maista_AdvK : AdvK ;
+fun maistaa_VK : VK ;
+fun maistaja_NK : NK ;
+--? fun maistajaiset_NK : NK ;
+fun maistella_VK : VK ;
+fun maisteri_NK : NK ;
+fun maisti_NK : NK ;
+--? fun maistiaiset_NK : NK ;
+fun maistraatti_NK : NK ;
+fun maistua_VK : VK ;
+fun maiti_NK : NK ;
+fun maitiainen_NK : NK ;
+fun maitikka_NK : NK ;
+fun maito_NK : NK ;
+fun maitoinen_NK : NK ;
+fun maitse_AdvK : AdvK ;
+fun maittaa_VK : VK ;
+fun maittain_AdvK : AdvK ;
+fun maja_NK : NK ;
+fun majailla_VK : VK ;
+fun majailu_NK : NK ;
+fun majakka_NK : NK ;
+fun majava_NK : NK ;
+fun majavanhausta_NK : NK ;
+fun majesteetillinen_NK : NK ;
+fun majesteetti_NK : NK ;
+fun majesteettinen_AK : AK ;
+--+ fun majesteettisesti_AdvK : AdvK ;
+fun majesteettisuus_NK : NK ;
+fun majesteettius_NK : NK ;
+fun majoittaa_VK : VK ;
+fun majoittaja_NK : NK ;
+fun majoittautua_VK : VK ;
+fun majoittua_VK : VK ;
+fun majoitus_NK : NK ;
+fun majolika_NK : NK ;
+fun majoneesi_NK : NK ;
+fun majoriteetti_NK : NK ;
+fun majuri_NK : NK ;
+fun makaaberi_NK : NK ;
+fun makailla_VK : VK ;
+fun makaki_NK : NK ;
+fun makaroni_NK : NK ;
+fun makasiini_NK : NK ;
+fun makaus_NK : NK ;
+fun makauttaa_VK : VK ;
+fun makea_AK : AK ;
+fun makeahko_NK : NK ;
+--+ fun makeasti_AdvK : AdvK ;
+fun makeilla_VK : VK ;
+fun makeilu_NK : NK ;
+fun makeinen_NK : NK ;
+fun make_up_NK : NK ;
+fun makeus_NK : NK ;
+fun makeute_NK : NK ;
+fun makeuttaa_VK : VK ;
+fun makeutus_NK : NK ;
+fun makkara_NK : NK ;
+fun makkarankuori_NK : NK ;
+fun makkari_NK : NK ;
+fun makki_NK : NK ;
+fun makoilla_VK : VK ;
+fun makoilu_NK : NK ;
+fun makoinen_NK : NK ;
+fun makoisa_NK : NK ;
+fun makramee_NK : NK ;
+fun makrilli_NK : NK ;
+fun makro_NK : NK ;
+fun makrobiootikko_NK : NK ;
+fun makrobioottinen_NK : NK ;
+fun makroskooppinen_NK : NK ;
+fun maksa_NK : NK ;
+fun maksaa_VK : VK ;
+fun maksaja_NK : NK ;
+fun maksamaton_NK : NK ;
+fun maksattaa_VK : VK ;
+fun maksatus_NK : NK ;
+fun maksella_VK : VK ;
+fun maksi_NK : NK ;
+fun maksiimi_NK : NK ;
+fun maksimi_NK : NK ;
+fun maksimoida_VK : VK ;
+fun maksimointi_NK : NK ;
+fun maksoittua_VK : VK ;
+fun maksoittuma_NK : NK ;
+fun maksu_NK : NK ;
+fun maksuaika_NK : NK ;
+fun maksullinen_NK : NK ;
+fun maksullistaa_VK : VK ;
+fun maksuton_NK : NK ;
+fun maksuttomasti_AdvK : AdvK ;
+fun maksuttomuus_NK : NK ;
+fun maksuunpanna_VK : VK ;
+fun maku_NK : NK ;
+fun makuinen_NK : NK ;
+fun makulatuuri_NK : NK ;
+fun makuloida_VK : VK ;
+fun makustella_VK : VK ;
+fun makuu_NK : NK ;
+fun makuuhaava_NK : NK ;
+fun makuulla_AdvK : AdvK ;
+fun makuulle_AdvK : AdvK ;
+fun makuulta_AdvK : AdvK ;
+fun makuus_NK : NK ;
+fun makuuttaa_VK : VK ;
+fun malaga_NK : NK ;
+fun malaiji_NK : NK ;
+fun malakiitti_NK : NK ;
+fun malaria_NK : NK ;
+fun maleksia_VK : VK ;
+fun maleksija_NK : NK ;
+fun mali_NK : NK ;
+fun maligni_NK : NK ;
+fun malignisoitua_VK : VK ;
+fun malignistua_VK : VK ;
+fun maligniteetti_NK : NK ;
+fun malignoitua_VK : VK ;
+fun malikka_NK : NK ;
+fun malja_NK : NK ;
+fun maljakas_NK : NK ;
+fun maljakko_NK : NK ;
+fun malka_NK : NK ;
+fun mallas_NK : NK ;
+fun mallastaa_VK : VK ;
+fun mallastamo_NK : NK ;
+fun mallastus_NK : NK ;
+fun mallata_VK : VK ;
+fun malli_NK : NK ;
+fun mallikas_AK : AK ;
+--+ fun mallikelpoisesti_AdvK : AdvK ;
+--+ fun mallikkaasti_AdvK : AdvK ;
+fun mallikkuus_NK : NK ;
+fun malline_NK : NK ;
+fun mallinen_NK : NK ;
+fun mallinnus_NK : NK ;
+fun mallintaa_VK : VK ;
+fun mallisto_NK : NK ;
+fun mallisuojattu_NK : NK ;
+fun mallittaa_VK : VK ;
+fun malluainen_NK : NK ;
+fun malmi_NK : NK ;
+fun malmikas_NK : NK ;
+fun malminen_NK : NK ;
+fun malmio_NK : NK ;
+--? fun maltaat_NK : NK ;
+fun maltillinen_AK : AK ;
+--+ fun maltillisesti_AdvK : AdvK ;
+fun maltillistua_VK : VK ;
+fun maltillisuus_NK : NK ;
+fun maltiton_NK : NK ;
+fun maltittomasti_AdvK : AdvK ;
+fun maltittomuus_NK : NK ;
+fun malto_NK : NK ;
+fun maltoinen_NK : NK ;
+fun maltoosi_NK : NK ;
+fun maltsa_NK : NK ;
+fun malttaa_VK : VK ;
+fun malttamaton_NK : NK ;
+fun malttamattomasti_AdvK : AdvK ;
+fun malttamattomuus_NK : NK ;
+fun maltti_NK : NK ;
+fun malva_NK : NK ;
+fun malvikki_NK : NK ;
+fun mamba_NK : NK ;
+fun mambo_NK : NK ;
+fun mamero_NK : NK ;
+fun mamma_NK : NK ;
+fun mammografia_NK : NK ;
+fun mammona_NK : NK ;
+fun mammutti_NK : NK ;
+fun mamselli_NK : NK ;
+fun mana_1_NK : NK ;
+fun mana_2_NK : NK ;
+fun manaaja_NK : NK ;
+fun management_NK : NK ;
+fun manageri_NK : NK ;
+fun manailla_VK : VK ;
+fun manailu_NK : NK ;
+fun manala_NK : NK ;
+fun manata_VK : VK ;
+fun manaus_NK : NK ;
+fun mandaatti_NK : NK ;
+fun mandariini_1_NK : NK ;
+fun mandariini_2_NK : NK ;
+fun mandoliini_NK : NK ;
+fun mandrilli_NK : NK ;
+fun maneeri_NK : NK ;
+--+ fun maneerimaisesti_AdvK : AdvK ;
+fun maneerimaisuus_NK : NK ;
+fun maneeristua_VK : VK ;
+fun maneesi_NK : NK ;
+fun maneetti_NK : NK ;
+fun mangaani_NK : NK ;
+fun mango_NK : NK ;
+fun mangoldi_NK : NK ;
+fun mangostani_NK : NK ;
+fun mangrove_NK : NK ;
+fun mangunta_NK : NK ;
+fun mani_NK : NK ;
+fun mania_NK : NK ;
+fun manifestaatio_NK : NK ;
+fun manifesti_NK : NK ;
+fun manifestinen_NK : NK ;
+fun manifestoida_VK : VK ;
+fun manifestoitua_VK : VK ;
+fun manikyristi_NK : NK ;
+fun manikyyri_NK : NK ;
+fun manila_NK : NK ;
+fun manilla_NK : NK ;
+fun manipulaatio_NK : NK ;
+fun manipulaattori_NK : NK ;
+fun manipuloida_VK : VK ;
+fun manipuloija_NK : NK ;
+fun manipulointi_NK : NK ;
+fun mankeli_NK : NK ;
+fun mankeloida_VK : VK ;
+fun mankelointi_NK : NK ;
+fun mankka_NK : NK ;
+fun mankku_NK : NK ;
+fun mankua_VK : VK ;
+fun mankuja_NK : NK ;
+fun manna_NK : NK ;
+fun manne_NK : NK ;
+fun mannekiini_NK : NK ;
+fun manner_NK : NK ;
+fun mannerliikunto_NK : NK ;
+--+ fun mannermaisesti_AdvK : AdvK ;
+fun mannermaisuus_NK : NK ;
+fun manometri_NK : NK ;
+fun mansetti_NK : NK ;
+fun mansi_NK : NK ;
+fun mansikka_NK : NK ;
+fun mansikka_aika_NK : NK ;
+fun manteli_NK : NK ;
+fun mantere_NK : NK ;
+fun mantereinen_NK : NK ;
+fun mantereisuus_NK : NK ;
+fun mantilja_NK : NK ;
+fun mantissa_NK : NK ;
+fun manto_NK : NK ;
+fun mantra_NK : NK ;
+fun manttaali_NK : NK ;
+fun mantteli_NK : NK ;
+fun mantu_NK : NK ;
+fun manu_NK : NK ;
+fun manuaali_NK : NK ;
+fun manuaalinen_AK : AK ;
+--+ fun manuaalisesti_AdvK : AdvK ;
+fun mano'veroida_VK : VK ;
+fun mano'verointi_NK : NK ;
+fun mano'vroida_VK : VK ;
+fun mano'o'veri_NK : NK ;
+fun maoismi_NK : NK ;
+fun maolainen_NK : NK ;
+fun maolaisuus_NK : NK ;
+fun mapillinen_NK : NK ;
+fun mapittaa_VK : VK ;
+fun mapitus_NK : NK ;
+fun mappi_NK : NK ;
+fun mar_AdvK : AdvK ;
+fun marakas_NK : NK ;
+fun marakatti_NK : NK ;
+fun maraton_NK : NK ;
+fun maratoonari_NK : NK ;
+fun marenki_NK : NK ;
+fun margariini_NK : NK ;
+fun marginaali_NK : NK ;
+fun marginaalinen_NK : NK ;
+fun marhaminta_NK : NK ;
+fun mari_NK : NK ;
+fun marihuana_NK : NK ;
+fun marimba_NK : NK ;
+fun marina_1_NK : NK ;
+fun marina_2_NK : NK ;
+fun marinadi_NK : NK ;
+fun marinoida_VK : VK ;
+fun marinointi_NK : NK ;
+fun marinoitua_VK : VK ;
+fun marionetti_NK : NK ;
+fun marista_VK : VK ;
+fun marja_NK : NK ;
+fun marja_aika_NK : NK ;
+fun marjainen_NK : NK ;
+fun marjaisa_NK : NK ;
+fun marjastaa_VK : VK ;
+fun marjastaja_NK : NK ;
+fun marjastus_NK : NK ;
+fun marjoa_VK : VK ;
+fun marjonta_NK : NK ;
+fun market_NK : NK ;
+fun marketti_NK : NK ;
+fun markiisi_NK : NK ;
+fun markiisitar_NK : NK ;
+fun markka_NK : NK ;
+fun markkanen_NK : NK ;
+fun markkeerata_VK : VK ;
+fun markkeri_NK : NK ;
+fun markkina_NK : NK ;
+--? fun markkinat_NK : NK ;
+fun markkinoida_VK : VK ;
+fun markkinoija_NK : NK ;
+fun markkinointi_NK : NK ;
+fun marksilainen_NK : NK ;
+fun marksilais_leninila'inen_NK : NK ;
+fun marksilaisuus_NK : NK ;
+fun marksismi_NK : NK ;
+fun marksismi_leninismi_NK : NK ;
+fun marksisti_NK : NK ;
+fun marmattaa_VK : VK ;
+fun marmatus_NK : NK ;
+fun marmelaati_NK : NK ;
+fun marmeladi_NK : NK ;
+fun marmori_NK : NK ;
+fun marmorinen_NK : NK ;
+fun marmoroida_VK : VK ;
+fun marmorointi_NK : NK ;
+fun marmoroitua_VK : VK ;
+fun marras_NK : NK ;
+fun marraskesi_NK : NK ;
+fun mars_AdvK : AdvK ;
+fun marsalkka_NK : NK ;
+fun marsilainen_NK : NK ;
+fun marsipaani_NK : NK ;
+fun marski_1_NK : NK ;
+fun marski_2_NK : NK ;
+fun marssi_NK : NK ;
+fun marssia_VK : VK ;
+fun marssinta_NK : NK ;
+fun marssittaa_VK : VK ;
+fun marsu_NK : NK ;
+fun martini_NK : NK ;
+fun martio_NK : NK ;
+fun martioida_VK : VK ;
+fun martiointi_NK : NK ;
+fun marto_NK : NK ;
+fun martous_NK : NK ;
+fun martta_NK : NK ;
+fun marttyyri_NK : NK ;
+fun marttyyriaika_NK : NK ;
+fun marttyyrius_NK : NK ;
+fun marttyyriys_NK : NK ;
+fun maruna_NK : NK ;
+fun marxilainen_NK : NK ;
+fun marxilais_leninila'inen_NK : NK ;
+fun marxilaisuus_NK : NK ;
+fun marxismi_NK : NK ;
+fun marxismi_leninismi_NK : NK ;
+fun marxisti_NK : NK ;
+fun masariini_NK : NK ;
+fun masennus_NK : NK ;
+fun masentaa_VK : VK ;
+fun masentava_NK : NK ;
+fun masentua_VK : VK ;
+--+ fun masentuneesti_AdvK : AdvK ;
+fun masentuneisuus_NK : NK ;
+fun masentunut_AK : AK ;
+fun masi_NK : NK ;
+fun masiina_NK : NK ;
+fun masinoida_VK : VK ;
+fun masinointi_NK : NK ;
+fun maskara_NK : NK ;
+fun maskata_VK : VK ;
+fun maskeeraaja_NK : NK ;
+fun maskeerata_VK : VK ;
+fun maski_NK : NK ;
+fun maskotti_NK : NK ;
+fun maskuliini_NK : NK ;
+fun maskuliininen_NK : NK ;
+fun maskuliinisuus_NK : NK ;
+fun masmalo_NK : NK ;
+fun masokismi_NK : NK ;
+fun masokisti_NK : NK ;
+fun masokistinen_AK : AK ;
+--+ fun masokistisesti_AdvK : AdvK ;
+fun massa_NK : NK ;
+fun massainen_NK : NK ;
+fun massata_VK : VK ;
+fun massaus_NK : NK ;
+fun massi_NK : NK ;
+fun massiivi_NK : NK ;
+fun massiivinen_AK : AK ;
+--+ fun massiivisesti_AdvK : AdvK ;
+fun massiivisuus_NK : NK ;
+fun massoitella_VK : VK ;
+fun massoittain_AdvK : AdvK ;
+fun massoittelu_NK : NK ;
+fun massu_NK : NK ;
+fun masto_NK : NK ;
+fun mastodontti_NK : NK ;
+fun mastoinen_NK : NK ;
+fun masturbaatio_NK : NK ;
+fun masturboida_VK : VK ;
+fun masturbointi_NK : NK ;
+fun masu_NK : NK ;
+fun masurkka_NK : NK ;
+fun mataa_VK : VK ;
+fun matadori_NK : NK ;
+fun matala_NK : NK ;
+fun matalalla_AdvK : AdvK ;
+fun matalalle_AdvK : AdvK ;
+fun matalalta_AdvK : AdvK ;
+--+ fun matalamielisesti_AdvK : AdvK ;
+fun matalikko_NK : NK ;
+fun mataloittaa_VK : VK ;
+fun mataloitua_VK : VK ;
+fun mataluus_NK : NK ;
+fun matami_NK : NK ;
+fun matara_NK : NK ;
+fun mateleva_AK : AK ;
+--+ fun matelevasti_AdvK : AdvK ;
+fun matelija_NK : NK ;
+fun matelu_NK : NK ;
+fun matemaatikko_NK : NK ;
+fun matemaattinen_NK : NK ;
+fun matemaattistaa_VK : VK ;
+fun matemaattistua_VK : VK ;
+fun matematiikka_NK : NK ;
+fun matematisoida_VK : VK ;
+fun matematisoitua_VK : VK ;
+fun materia_NK : NK ;
+fun materiaali_NK : NK ;
+fun materiaalistaa_VK : VK ;
+fun materiaalistua_VK : VK ;
+fun materialisaatio_NK : NK ;
+fun materialismi_NK : NK ;
+fun materialisoida_VK : VK ;
+fun materialisoitua_VK : VK ;
+fun materialisti_NK : NK ;
+fun materialistinen_AK : AK ;
+--+ fun materialistisesti_AdvK : AdvK ;
+fun matikka_1_NK : NK ;
+fun matikka_2_NK : NK ;
+fun matinea_NK : NK ;
+fun matka_NK : NK ;
+fun matka_aika_NK : NK ;
+fun matkaaja_NK : NK ;
+fun matkailija_NK : NK ;
+fun matkailla_VK : VK ;
+fun matkailu_NK : NK ;
+fun matkailullinen_AK : AK ;
+--+ fun matkailullisesti_AdvK : AdvK ;
+fun matkainen_NK : NK ;
+fun matkata_VK : VK ;
+fun matkia_VK : VK ;
+fun matkija_NK : NK ;
+fun matkue_NK : NK ;
+fun matkustaa_VK : VK ;
+fun matkustaja_NK : NK ;
+fun matkustamo_NK : NK ;
+fun matkustella_VK : VK ;
+fun matkustelu_NK : NK ;
+fun matkustus_NK : NK ;
+fun mato_NK : NK ;
+fun matoinen_NK : NK ;
+fun matonen_NK : NK ;
+fun matriarkaalinen_NK : NK ;
+fun matriarkaatti_NK : NK ;
+fun matriarkka_NK : NK ;
+fun matriisi_NK : NK ;
+fun matrikkeli_NK : NK ;
+fun matronyymi_NK : NK ;
+fun matroona_NK : NK ;
+fun matruusi_NK : NK ;
+fun matsi_NK : NK ;
+fun matsku_NK : NK ;
+fun matta_NK : NK ;
+fun matti_1_NK : NK ;
+fun matti_2_NK : NK ;
+fun matto_NK : NK ;
+fun maturiteetti_NK : NK ;
+fun mau_AdvK : AdvK ;
+fun maukas_AK : AK ;
+--+ fun maukkaasti_AdvK : AdvK ;
+fun maukkaus_NK : NK ;
+fun maukkuus_NK : NK ;
+fun maukua_VK : VK ;
+fun maukuna_NK : NK ;
+fun mauri_NK : NK ;
+fun mauriainen_NK : NK ;
+fun mausoleumi_NK : NK ;
+fun maustaa_VK : VK ;
+fun mauste_NK : NK ;
+fun mausteikko_NK : NK ;
+fun mausteinen_NK : NK ;
+fun maustevoi_NK : NK ;
+fun maustua_VK : VK ;
+fun mauton_NK : NK ;
+fun mauttomasti_AdvK : AdvK ;
+fun mauttomuus_NK : NK ;
+fun mau_unta_NK : NK ;
+fun maya_NK : NK ;
+fun medaljonki_NK : NK ;
+fun media_NK : NK ;
+fun mediaani_NK : NK ;
+fun medisiina_NK : NK ;
+fun medisiinari_NK : NK ;
+fun medisiininen_NK : NK ;
+fun meditaatio_NK : NK ;
+fun meditoida_VK : VK ;
+fun meditointi_NK : NK ;
+fun meduusa_NK : NK ;
+fun meedio_NK : NK ;
+fun meetvursti_NK : NK ;
+fun mefistomainen_NK : NK ;
+fun megafoni_NK : NK ;
+fun megalopoli_NK : NK ;
+fun mehevyys_NK : NK ;
+fun meheva'_AK : AK ;
+--+ fun meheva'sti_AdvK : AdvK ;
+fun mehevo'itta'a'_VK : VK ;
+fun mehevo'itya'_VK : VK ;
+fun mehila'inen_NK : NK ;
+fun mehila'isparvi_NK : NK ;
+fun mehu_NK : NK ;
+fun mehuinen_NK : NK ;
+fun mehuisa_NK : NK ;
+fun mehukas_AK : AK ;
+--+ fun mehukkaasti_AdvK : AdvK ;
+fun mehukkuus_NK : NK ;
+fun mehustaa_VK : VK ;
+fun mehuste_NK : NK ;
+fun mehustin_NK : NK ;
+fun mehustua_VK : VK ;
+fun mehustus_NK : NK ;
+fun meijeri_NK : NK ;
+fun meijeristi_NK : NK ;
+fun meijerivoi_NK : NK ;
+fun meikata_VK : VK ;
+fun meikkaaja_NK : NK ;
+fun meikkaus_NK : NK ;
+fun meikki_NK : NK ;
+fun meikku_NK : NK ;
+fun meika'_NK : NK ;
+fun meika'la'inen_NK : NK ;
+fun meika'la'isitta'in_AdvK : AdvK ;
+fun meinata_VK : VK ;
+fun meininki_NK : NK ;
+fun meioosi_NK : NK ;
+fun meirami_NK : NK ;
+fun meislata_VK : VK ;
+fun meisseli_NK : NK ;
+fun meisti_NK : NK ;
+fun meista'a'_VK : VK ;
+fun meitsi_NK : NK ;
+fun mekaanikko_NK : NK ;
+fun mekaaninen_AK : AK ;
+--+ fun mekaanisesti_AdvK : AdvK ;
+fun mekaanistaa_VK : VK ;
+fun mekaanistua_VK : VK ;
+fun mekaanisuus_NK : NK ;
+fun mekaniikka_NK : NK ;
+fun mekanismi_NK : NK ;
+fun mekanisoida_VK : VK ;
+fun mekanisoitua_VK : VK ;
+fun mekanistinen_NK : NK ;
+fun mekastaa_VK : VK ;
+fun mekastus_NK : NK ;
+fun mekatroniikka_NK : NK ;
+fun mekatroninen_NK : NK ;
+fun mekkala_NK : NK ;
+fun mekkaloida_VK : VK ;
+fun mekko_NK : NK ;
+fun meklari_NK : NK ;
+fun meksikolainen_NK : NK ;
+fun mela_NK : NK ;
+fun melamiini_NK : NK ;
+fun melankolia_NK : NK ;
+fun melankolikko_NK : NK ;
+fun melankolinen_AK : AK ;
+--+ fun melankolisesti_AdvK : AdvK ;
+fun melankolisuus_NK : NK ;
+fun melanooma_NK : NK ;
+fun melassi_NK : NK ;
+fun melatoniini_NK : NK ;
+fun meleerata_VK : VK ;
+fun meleeraus_NK : NK ;
+fun melkein_AdvK : AdvK ;
+fun melko_AdvK : AdvK ;
+fun melkoinen_AK : AK ;
+--+ fun melkoisesti_AdvK : AdvK ;
+fun mellakka_NK : NK ;
+fun mellakoida_VK : VK ;
+fun mellakoija_NK : NK ;
+fun mellakointi_NK : NK ;
+fun mellakoitsija_NK : NK ;
+fun mellastaa_VK : VK ;
+fun mellastus_NK : NK ;
+fun mellottaa_VK : VK ;
+fun mellottua_VK : VK ;
+fun mellotus_NK : NK ;
+fun meloa_VK : VK ;
+fun melodia_NK : NK ;
+fun melodiikka_NK : NK ;
+fun melodinen_AK : AK ;
+--+ fun melodisesti_AdvK : AdvK ;
+fun melodisuus_NK : NK ;
+--+ fun melodramaattisesti_AdvK : AdvK ;
+fun meloja_NK : NK ;
+fun meloni_NK : NK ;
+fun melonta_NK : NK ;
+fun melskata_VK : VK ;
+fun melske_NK : NK ;
+fun melskeinen_NK : NK ;
+fun melto_NK : NK ;
+fun melu_NK : NK ;
+fun meluaja_NK : NK ;
+fun meluinen_NK : NK ;
+fun meluisa_AK : AK ;
+--+ fun meluisasti_AdvK : AdvK ;
+fun meluisuus_NK : NK ;
+fun meluta_VK : VK ;
+fun membraani_NK : NK ;
+fun memorandumi_NK : NK ;
+fun mendelismi_NK : NK ;
+fun mendelistinen_NK : NK ;
+fun mendelo'ida'_VK : VK ;
+fun menehdyksiin_AdvK : AdvK ;
+fun menehdyksissa'_AdvK : AdvK ;
+fun menehdyksissa'a'n_AdvK : AdvK ;
+fun menehtya'_VK : VK ;
+fun meneilla'_AdvK : AdvK ;
+fun meneilla'a'n_AdvK : AdvK ;
+fun menekinedista'minen_NK : NK ;
+fun menekki_NK : NK ;
+fun menekkinen_NK : NK ;
+fun menestyksekkyys_NK : NK ;
+--+ fun menestyksekka'a'sti_AdvK : AdvK ;
+fun menestykseka's_AK : AK ;
+fun menestyksellinen_AK : AK ;
+--+ fun menestyksellisesti_AdvK : AdvK ;
+fun menestyksellisyys_NK : NK ;
+fun menestykseto'n_NK : NK ;
+fun menestyma'to'n_NK : NK ;
+fun menestys_NK : NK ;
+fun menestya'_VK : VK ;
+fun menetella'_VK : VK ;
+fun menetelma'_NK : NK ;
+fun menetelma'llinen_NK : NK ;
+fun menettely_NK : NK ;
+fun menetta'a'_VK : VK ;
+fun menetys_NK : NK ;
+fun meneva'_NK : NK ;
+fun menija'_NK : NK ;
+--? fun menkat_NK : NK ;
+--? fun menkut_NK : NK ;
+fun menneisyys_NK : NK ;
+fun mennessa'_AdvK : AdvK ;
+fun menninka'inen_NK : NK ;
+fun mennyt_NK : NK ;
+fun menna'_VK : VK ;
+fun meno_NK : NK ;
+fun menota_VK : VK ;
+--? fun mensikset_NK : NK ;
+fun menstruaatio_NK : NK ;
+fun menstruoida_VK : VK ;
+--? fun mensut_NK : NK ;
+fun mentaalinen_AK : AK ;
+--+ fun mentaalisesti_AdvK : AdvK ;
+fun mentalismi_NK : NK ;
+fun mentaliteetti_NK : NK ;
+fun mentoli_NK : NK ;
+fun mentori_NK : NK ;
+fun mentorointi_NK : NK ;
+fun menu_NK : NK ;
+fun menuetti_NK : NK ;
+fun menyy_NK : NK ;
+fun merellinen_NK : NK ;
+fun merellisyys_NK : NK ;
+fun merenlahti_NK : NK ;
+fun meri_NK : NK ;
+fun meridiaani_NK : NK ;
+fun meriitti_NK : NK ;
+fun merila'inen_NK : NK ;
+fun merino_NK : NK ;
+fun meritoitua_VK : VK ;
+fun meritokraatti_NK : NK ;
+fun meritokraattinen_NK : NK ;
+fun meritokratia_NK : NK ;
+fun meritse_AdvK : AdvK ;
+fun merkantiilinen_NK : NK ;
+fun merkantilismi_NK : NK ;
+fun merkantilisti_NK : NK ;
+fun merkantilistinen_NK : NK ;
+fun merkantti_NK : NK ;
+fun merkaptaani_NK : NK ;
+fun merkata_VK : VK ;
+fun merkeli_NK : NK ;
+fun merkillinen_AK : AK ;
+--+ fun merkillisesti_AdvK : AdvK ;
+fun merkillisyys_NK : NK ;
+fun merkinta'_NK : NK ;
+fun merkinta'inen_NK : NK ;
+fun merkinto'_NK : NK ;
+fun merkisto'_NK : NK ;
+fun merkitsevyys_NK : NK ;
+fun merkitseva'_AK : AK ;
+--+ fun merkitseva'sti_AdvK : AdvK ;
+fun merkitsija'_NK : NK ;
+fun merkitta'vyys_NK : NK ;
+fun merkitta'va'_AK : AK ;
+--+ fun merkitta'va'sti_AdvK : AdvK ;
+fun merkitta'a'_VK : VK ;
+fun merkitykseka's_NK : NK ;
+fun merkityksellinen_NK : NK ;
+fun merkitykseto'n_NK : NK ;
+fun merkityksinen_NK : NK ;
+fun merkityksisyys_NK : NK ;
+fun merkitys_NK : NK ;
+fun merkitytta'a'_VK : VK ;
+fun merkita'_VK : VK ;
+fun merkito'n_NK : NK ;
+fun merkkaus_NK : NK ;
+fun merkki_NK : NK ;
+fun merkkinen_NK : NK ;
+fun merkonomi_NK : NK ;
+fun merseroida_VK : VK ;
+fun merserointi_NK : NK ;
+fun merta_NK : NK ;
+fun mesenaatti_NK : NK ;
+fun mesi_NK : NK ;
+fun mesikka'_NK : NK ;
+fun mesia'inen_NK : NK ;
+fun meskaliini_NK : NK ;
+fun mesoa_VK : VK ;
+fun mesoni_NK : NK ;
+fun mesota_VK : VK ;
+fun mesotsooinen_NK : NK ;
+fun messi_NK : NK ;
+fun messiaaninen_NK : NK ;
+fun messianismi_NK : NK ;
+fun messias_NK : NK ;
+fun messingo'ida'_VK : VK ;
+fun messingo'inti_NK : NK ;
+fun messinki_NK : NK ;
+fun messinkinen_NK : NK ;
+fun messu_NK : NK ;
+fun messuta_VK : VK ;
+fun mesta_NK : NK ;
+fun mestaaja_NK : NK ;
+fun mestari_NK : NK ;
+fun mestarillinen_AK : AK ;
+--+ fun mestarillisesti_AdvK : AdvK ;
+fun mestarillisuus_NK : NK ;
+fun mestarius_NK : NK ;
+fun mestaroida_VK : VK ;
+fun mestaroija_NK : NK ;
+fun mestarointi_NK : NK ;
+fun mestaruus_NK : NK ;
+fun mestata_VK : VK ;
+fun mestaus_NK : NK ;
+fun mestauttaa_VK : VK ;
+fun mestitsi_NK : NK ;
+fun mesu_NK : NK ;
+fun metaani_NK : NK ;
+fun metabolia_NK : NK ;
+fun metabolinen_NK : NK ;
+fun metadoni_NK : NK ;
+fun metafora_NK : NK ;
+fun metaforinen_AK : AK ;
+--+ fun metaforisesti_AdvK : AdvK ;
+fun metakka_NK : NK ;
+fun metalli_NK : NK ;
+fun metallinen_NK : NK ;
+fun metallisoida_VK : VK ;
+fun metalloida_VK : VK ;
+fun metallointi_NK : NK ;
+fun metallurgi_NK : NK ;
+fun metallurgia_NK : NK ;
+fun metallurginen_NK : NK ;
+fun metamorfoosi_NK : NK ;
+fun metanoli_NK : NK ;
+fun metastaasi_NK : NK ;
+fun metastaattinen_NK : NK ;
+fun metastasoida_VK : VK ;
+fun metastasointi_NK : NK ;
+fun meteli_NK : NK ;
+fun metelo'ida'_VK : VK ;
+fun metelo'ija'_NK : NK ;
+fun metelo'inti_NK : NK ;
+fun metelo'itsija'_NK : NK ;
+fun meteori_NK : NK ;
+fun meteoriitti_NK : NK ;
+fun meteoroidi_NK : NK ;
+fun meteorologi_NK : NK ;
+fun meteorologia_NK : NK ;
+fun meteorologinen_NK : NK ;
+fun metinen_NK : NK ;
+fun metka_AK : AK ;
+--+ fun metkasti_AdvK : AdvK ;
+fun metku_NK : NK ;
+fun metkuilla_VK : VK ;
+fun metkuilu_NK : NK ;
+fun metodi_NK : NK ;
+fun metodiikka_NK : NK ;
+fun metodinen_AK : AK ;
+--+ fun metodisesti_AdvK : AdvK ;
+fun metodismi_NK : NK ;
+fun metodisti_NK : NK ;
+fun metodistinen_NK : NK ;
+fun metodologia_NK : NK ;
+fun metodologinen_NK : NK ;
+fun metreitta'in_AdvK : AdvK ;
+fun metri_NK : NK ;
+fun metri_NK : NK ;
+fun metriikka_NK : NK ;
+fun metrinen_NK : NK ;
+fun metro_NK : NK ;
+fun metrologia_NK : NK ;
+fun metrologinen_NK : NK ;
+fun metronomi_NK : NK ;
+fun metropoliitta_NK : NK ;
+fun metsikko'_NK : NK ;
+fun metsittya'_VK : VK ;
+fun metsitta'a'_VK : VK ;
+fun metsitys_NK : NK ;
+fun metso_NK : NK ;
+fun metsuri_NK : NK ;
+fun metsa'_NK : NK ;
+fun metsa'inen_NK : NK ;
+fun metsa'kaartilaisuus_NK : NK ;
+fun metsa'la'inen_NK : NK ;
+fun metsa'lo'_NK : NK ;
+fun metsa'narvioiminen_NK : NK ;
+--+ fun metsa'nhoidollisesti_AdvK : AdvK ;
+fun metsa'nleimaus_NK : NK ;
+fun metsa'nraja_NK : NK ;
+fun metsa'stella'_VK : VK ;
+fun metsa'stys_NK : NK ;
+fun metsa'sta'ja'_NK : NK ;
+fun metsa'sta'a'_VK : VK ;
+fun mettinen_NK : NK ;
+fun metvursti_NK : NK ;
+fun meuhkata_VK : VK ;
+fun mezzoforte_NK : NK ;
+fun mezzopiano_NK : NK ;
+fun mezzotinto_NK : NK ;
+fun mi_AdvK : AdvK ;
+fun miau_AdvK : AdvK ;
+fun midi_1_NK : NK ;
+fun midi_2_NK : NK ;
+fun miedonnos_NK : NK ;
+fun miedonnus_NK : NK ;
+fun miedontaa_VK : VK ;
+fun miedontua_VK : VK ;
+fun miedosti_AdvK : AdvK ;
+fun miehekkyys_NK : NK ;
+--+ fun miehekka'a'sti_AdvK : AdvK ;
+fun mieheka's_AK : AK ;
+fun miehela'ssa'_AdvK : AdvK ;
+fun miehela'a'n_AdvK : AdvK ;
+fun miehennielija'_NK : NK ;
+fun miehevyys_NK : NK ;
+fun mieheva'_AK : AK ;
+--+ fun mieheva'sti_AdvK : AdvK ;
+fun mieheys_NK : NK ;
+fun miehinen_NK : NK ;
+fun miehistya'_VK : VK ;
+fun miehisto'_NK : NK ;
+fun miehisyys_NK : NK ;
+fun miehittya'_VK : VK ;
+fun miehitta'ja'_NK : NK ;
+fun miehitta'ma'to'n_NK : NK ;
+fun miehitta'a'_VK : VK ;
+fun miehitys_NK : NK ;
+fun miehusta_NK : NK ;
+fun miehuullinen_AK : AK ;
+--+ fun miehuullisesti_AdvK : AdvK ;
+fun miehuullisuus_NK : NK ;
+fun miehuus_NK : NK ;
+fun miehyys_NK : NK ;
+fun miekannielija'_NK : NK ;
+fun miekka_NK : NK ;
+fun miekkailija_NK : NK ;
+fun miekkailla_VK : VK ;
+fun miekkailu_NK : NK ;
+fun miekkonen_NK : NK ;
+fun mieleen_AdvK : AdvK ;
+fun mieleenjohtuma_NK : NK ;
+fun mieleenpainuva_NK : NK ;
+fun mieleinen_NK : NK ;
+fun mielekkyys_NK : NK ;
+--+ fun mielekka'a'sti_AdvK : AdvK ;
+fun mieleka's_AK : AK ;
+fun mielella'a'n_AdvK : AdvK ;
+fun mielenkiinnoton_NK : NK ;
+fun mielenkiinnottomasti_AdvK : AdvK ;
+fun mielenkiinto_NK : NK ;
+fun mielenkiintoinen_AK : AK ;
+--+ fun mielenkiintoisesti_AdvK : AdvK ;
+fun mielenkiintoisuus_NK : NK ;
+fun mielenosoituksellinen_AK : AK ;
+--+ fun mielenosoituksellisesti_AdvK : AdvK ;
+--+ fun mielenterveydellisesti_AdvK : AdvK ;
+fun mielesta'_AdvK : AdvK ;
+fun mieletto'myys_NK : NK ;
+fun mieletto'ma'sti_AdvK : AdvK ;
+fun mieleto'n_NK : NK ;
+fun mieleva'_AK : AK ;
+--+ fun mieleva'sti_AdvK : AdvK ;
+fun mieli_NK : NK ;
+fun mieliinpainuva_NK : NK ;
+fun mielikseen_AdvK : AdvK ;
+fun mieliksi_AdvK : AdvK ;
+fun mielikuvituksekas_AK : AK ;
+--+ fun mielikuvituksekkaasti_AdvK : AdvK ;
+fun mielikuvituksellinen_NK : NK ;
+fun mielikuvituksellisuus_NK : NK ;
+fun mielinen_NK : NK ;
+fun mielin_kielin_AdvK : AdvK ;
+fun mielin_ma'a'rin_AdvK : AdvK ;
+fun mielipide_NK : NK ;
+--+ fun mielipuolisesti_AdvK : AdvK ;
+fun mielipuolisuus_NK : NK ;
+fun mielisesti_AdvK : AdvK ;
+fun mielissa'a'n_AdvK : AdvK ;
+fun mielistelija'_NK : NK ;
+fun mielistella'_VK : VK ;
+fun mielistely_NK : NK ;
+fun mielistya'_VK : VK ;
+fun mielisyys_NK : NK ;
+fun mielitella'_VK : VK ;
+--+ fun mielivaltaisesti_AdvK : AdvK ;
+fun mielia'_VK : VK ;
+fun mielle_NK : NK ;
+fun miellytta'vyys_NK : NK ;
+fun miellytta'va'_AK : AK ;
+--+ fun miellytta'va'sti_AdvK : AdvK ;
+fun miellytta'a'_VK : VK ;
+fun mieltymys_NK : NK ;
+fun mieltya'_VK : VK ;
+fun mielta'a'_VK : VK ;
+fun mieluimmin_AdvK : AdvK ;
+fun mieluinen_AK : AK ;
+fun mieluisa_AK : AK ;
+--+ fun mieluisasti_AdvK : AdvK ;
+--+ fun mieluisesti_AdvK : AdvK ;
+fun mieluisuus_NK : NK ;
+fun mieluiten_AdvK : AdvK ;
+fun mieluummin_AdvK : AdvK ;
+fun mieluusti_AdvK : AdvK ;
+fun miero_NK : NK ;
+fun mies_NK : NK ;
+--+ fun mieskohtaisesti_AdvK : AdvK ;
+--+ fun mieslukuisesti_AdvK : AdvK ;
+fun miesmuistiin_AdvK : AdvK ;
+fun miesma'inen_AK : AK ;
+--+ fun miesma'isesti_AdvK : AdvK ;
+fun miesma'isyys_NK : NK ;
+fun miestennielija'_NK : NK ;
+fun miete_NK : NK ;
+fun mietelma'_NK : NK ;
+fun mietinta'_NK : NK ;
+fun mietinta'aika_NK : NK ;
+fun mietinto'_NK : NK ;
+fun mietiskelija'_NK : NK ;
+fun mietiskella'_VK : VK ;
+fun mietiskely_NK : NK ;
+fun mietitytta'a'_VK : VK ;
+fun mieto_NK : NK ;
+fun mietous_NK : NK ;
+fun mietteinen_NK : NK ;
+fun miettelia'isyys_NK : NK ;
+fun miettelia's_AK : AK ;
+--+ fun miettelia'a'sti_AdvK : AdvK ;
+fun miettimisaika_NK : NK ;
+fun miettiva'inen_AK : AK ;
+--+ fun miettiva'isesti_AdvK : AdvK ;
+fun miettia'_VK : VK ;
+fun migmatiitti_NK : NK ;
+fun migraatio_NK : NK ;
+fun migreeni_NK : NK ;
+fun mihin_AdvK : AdvK ;
+fun mihinkin_AdvK : AdvK ;
+fun mihinka'_AdvK : AdvK ;
+fun mihinka'a'n_AdvK : AdvK ;
+fun miikka_NK : NK ;
+fun miilu_NK : NK ;
+fun miimikko_NK : NK ;
+fun miiminen_AK : AK ;
+--+ fun miimisesti_AdvK : AdvK ;
+fun miina_NK : NK ;
+fun miinaaja_NK : NK ;
+fun miinata_VK : VK ;
+fun miinoite_NK : NK ;
+fun miinoittaa_VK : VK ;
+fun miinoitus_NK : NK ;
+fun miinus_NK : NK ;
+fun miinustaa_VK : VK ;
+fun miitinki_NK : NK ;
+fun mikkeli_NK : NK ;
+fun mikki_NK : NK ;
+fun mikko_NK : NK ;
+fun mikro_NK : NK ;
+fun mikrobi_NK : NK ;
+fun mikrofoni_NK : NK ;
+fun mikroni_NK : NK ;
+fun mikroskooppi_NK : NK ;
+fun mikroskooppinen_AK : AK ;
+--+ fun mikroskooppisesti_AdvK : AdvK ;
+fun mikroskopia_NK : NK ;
+fun mikroskopoida_VK : VK ;
+fun mikroskopointi_NK : NK ;
+fun mikrotomi_NK : NK ;
+fun miksaaja_NK : NK ;
+fun miksata_VK : VK ;
+fun miksaus_NK : NK ;
+fun mikseri_NK : NK ;
+fun miksi_AdvK : AdvK ;
+fun mikstuura_NK : NK ;
+fun mika'kin_AdvK : AdvK ;
+fun mika'li_AdvK : AdvK ;
+fun miliisi_NK : NK ;
+fun militaarinen_NK : NK ;
+fun militantti_NK : NK ;
+fun militarismi_NK : NK ;
+fun militarisoida_VK : VK ;
+fun militaristi_NK : NK ;
+fun militaristinen_NK : NK ;
+fun milita'a'ri_NK : NK ;
+fun milita'a'rinen_NK : NK ;
+fun miljardi_NK : NK ;
+fun miljardo'o'ri_NK : NK ;
+fun miljona'a'ri_NK : NK ;
+fun miljoona_NK : NK ;
+fun miljoonainen_NK : NK ;
+fun miljoonas_NK : NK ;
+fun miljoonikko_NK : NK ;
+fun miljoonittain_AdvK : AdvK ;
+fun miljo'o'_NK : NK ;
+fun milk_shake_NK : NK ;
+fun millainen_NK : NK ;
+fun milli_NK : NK ;
+fun millinen_NK : NK ;
+fun millivoltti_NK : NK ;
+fun milloin_AdvK : AdvK ;
+fun milloinka_AdvK : AdvK ;
+fun milloinkaan_AdvK : AdvK ;
+fun milloinkin_AdvK : AdvK ;
+fun milla'nsa'ka'a'n_AdvK : AdvK ;
+fun milla'a'n_AdvK : AdvK ;
+fun milla'a'nka'a'n_AdvK : AdvK ;
+fun miltei_AdvK : AdvK ;
+fun mimiikka_NK : NK ;
+fun mimmi_NK : NK ;
+fun mimmoinen_NK : NK ;
+fun mimoosa_NK : NK ;
+fun minareetti_NK : NK ;
+fun minariini_NK : NK ;
+fun mineraali_NK : NK ;
+fun mineraalinen_NK : NK ;
+fun mineraalistua_VK : VK ;
+fun mineralisoitua_VK : VK ;
+fun mineralogi_NK : NK ;
+fun mineralogia_NK : NK ;
+fun mineraloginen_NK : NK ;
+fun minestrone_NK : NK ;
+fun mini_NK : NK ;
+fun miniatyristi_NK : NK ;
+fun miniatyyri_NK : NK ;
+fun miniatyyrikoko_NK : NK ;
+fun minicross_NK : NK ;
+fun minimalismi_NK : NK ;
+fun minimalisti_NK : NK ;
+fun minimalistinen_NK : NK ;
+fun minimi_NK : NK ;
+fun minimiaika_NK : NK ;
+fun minimikoko_NK : NK ;
+fun minimoida_VK : VK ;
+fun minimointi_NK : NK ;
+fun ministeri_NK : NK ;
+fun ministeristo'_NK : NK ;
+fun ministeriys_NK : NK ;
+fun ministerio'_NK : NK ;
+fun minia'_NK : NK ;
+fun minkinlainen_NK : NK ;
+fun minkki_NK : NK ;
+fun minka'lainen_NK : NK ;
+fun minka'_takia_AdvK : AdvK ;
+fun minka'_ta'hden_AdvK : AdvK ;
+fun minka'_vuoksi_AdvK : AdvK ;
+fun minka'a'nlainen_NK : NK ;
+fun minne_AdvK : AdvK ;
+fun minnekin_AdvK : AdvK ;
+fun minneka'_AdvK : AdvK ;
+fun minneka'a'n_AdvK : AdvK ;
+fun minoriteetti_NK : NK ;
+fun minttu_NK : NK ;
+fun minunlaiseni_NK : NK ;
+fun minuus_NK : NK ;
+fun minuuteittain_AdvK : AdvK ;
+fun minuutti_NK : NK ;
+fun minuuttinen_NK : NK ;
+fun mirha_NK : NK ;
+fun mirhami_NK : NK ;
+fun mirri_NK : NK ;
+fun misogynia_NK : NK ;
+fun misogyyni_NK : NK ;
+fun misogyyninen_NK : NK ;
+fun mispeli_NK : NK ;
+fun miss_AdvK : AdvK ;
+fun missata_VK : VK ;
+fun misseys_NK : NK ;
+fun missi_NK : NK ;
+fun missio_NK : NK ;
+fun missiys_NK : NK ;
+fun misteli_NK : NK ;
+fun mista'_AdvK : AdvK ;
+fun mista'kin_AdvK : AdvK ;
+fun mista'a'n_AdvK : AdvK ;
+fun misu_NK : NK ;
+fun misa'a'ri_NK : NK ;
+fun mitali_NK : NK ;
+fun mitalisti_NK : NK ;
+fun mitallinen_NK : NK ;
+fun mitata_VK : VK ;
+fun mitella_NK : NK ;
+fun mitella'_VK : VK ;
+fun miten_AdvK : AdvK ;
+fun mitenkin_AdvK : AdvK ;
+fun mitenka'_AdvK : AdvK ;
+fun mitenka'a'n_AdvK : AdvK ;
+fun miten_pa'in_AdvK : AdvK ;
+fun mitoittaa_VK : VK ;
+fun mitoitus_NK : NK ;
+fun mitoosi_NK : NK ;
+fun mitoottinen_NK : NK ;
+fun mitra_NK : NK ;
+fun mitta_NK : NK ;
+fun mittaaja_NK : NK ;
+fun mittaamaton_NK : NK ;
+fun mittaamattomasti_AdvK : AdvK ;
+fun mittaamattomuus_NK : NK ;
+fun mittailla_VK : VK ;
+fun mittailu_NK : NK ;
+fun mittain_NK : NK ;
+fun mittainen_NK : NK ;
+fun mittakaavainen_NK : NK ;
+fun mittari_NK : NK ;
+fun mittaristo_NK : NK ;
+fun mittaus_NK : NK ;
+fun mittauttaa_VK : VK ;
+fun mittava_NK : NK ;
+fun mittavuus_NK : NK ;
+fun mittely_NK : NK ;
+fun mittelo'_NK : NK ;
+fun mita'_AdvK : AdvK ;
+fun mita'tto'myys_NK : NK ;
+fun mita'to'ida'_VK : VK ;
+fun mita'to'inti_NK : NK ;
+fun mita'to'itya'_VK : VK ;
+fun mita'to'n_NK : NK ;
+fun mita'to'ntya'_VK : VK ;
+fun mita'to'nta'a'_VK : VK ;
+fun moaree_NK : NK ;
+fun mobata_VK : VK ;
+fun mobbata_VK : VK ;
+fun mobbaus_NK : NK ;
+fun mobile_NK : NK ;
+fun mobilisaatio_NK : NK ;
+fun mobilisoida_VK : VK ;
+fun mobilisointi_NK : NK ;
+fun mobiliteetti_NK : NK ;
+fun modaali_NK : NK ;
+fun modaalinen_NK : NK ;
+fun modeemi_NK : NK ;
+fun moderato_NK : NK ;
+fun moderni_AK : AK ;
+fun modernismi_NK : NK ;
+fun modernisoida_VK : VK ;
+fun modernisoitua_VK : VK ;
+fun modernistaa_VK : VK ;
+fun modernisti_1_NK : NK ;
+--+ fun modernisti_2_AdvK : AdvK ;
+fun modernistinen_NK : NK ;
+fun modernistua_VK : VK ;
+fun modernius_NK : NK ;
+fun modifikaatio_NK : NK ;
+fun modifioida_VK : VK ;
+fun modifiointi_NK : NK ;
+fun modifioitua_VK : VK ;
+fun modisti_NK : NK ;
+fun modulaarinen_NK : NK ;
+fun modulaatio_NK : NK ;
+fun modulaattori_NK : NK ;
+fun moduloida_VK : VK ;
+fun modulointi_NK : NK ;
+fun moduloitua_VK : VK ;
+fun modus_NK : NK ;
+fun moduuli_NK : NK ;
+fun moguli_NK : NK ;
+fun mohair_NK : NK ;
+fun mohikaani_NK : NK ;
+fun moi_AdvK : AdvK ;
+fun moikaa_VK : VK ;
+fun moikata_VK : VK ;
+fun moike_NK : NK ;
+fun moikua_VK : VK ;
+fun moinen_NK : NK ;
+fun moir__NK : NK ;
+fun moisio_NK : NK ;
+fun moiskahdus_NK : NK ;
+fun moiskahtaa_VK : VK ;
+fun moiskaus_NK : NK ;
+fun moiskauttaa_VK : VK ;
+fun moite_NK : NK ;
+fun moiteaika_NK : NK ;
+fun moitiskella_VK : VK ;
+fun moitiskelu_NK : NK ;
+fun moitittava_AK : AK ;
+--+ fun moitittavasti_AdvK : AdvK ;
+fun moitittavuus_NK : NK ;
+fun moitteeton_NK : NK ;
+fun moitteettomasti_AdvK : AdvK ;
+fun moitteettomuus_NK : NK ;
+fun moittia_VK : VK ;
+fun moittija_NK : NK ;
+fun moittivasti_AdvK : AdvK ;
+fun mojahdus_NK : NK ;
+fun mojahtaa_VK : VK ;
+fun mojauttaa_VK : VK ;
+fun mojova_NK : NK ;
+fun moka_NK : NK ;
+fun mokata_VK : VK ;
+fun mokaus_NK : NK ;
+fun mokka_1_NK : NK ;
+fun mokka_2_NK : NK ;
+fun mokkainen_NK : NK ;
+fun mokkasiini_NK : NK ;
+fun mokoma_NK : NK ;
+fun moksahdus_NK : NK ;
+fun moksahtaa_VK : VK ;
+fun moksaus_NK : NK ;
+fun moksauttaa_VK : VK ;
+fun moksiskaan_AdvK : AdvK ;
+fun molaalisuus_NK : NK ;
+fun molaarinen_NK : NK ;
+fun molaarisuus_NK : NK ;
+fun molari_NK : NK ;
+fun molekulaarinen_NK : NK ;
+fun molekylaarinen_NK : NK ;
+fun molekyyli_NK : NK ;
+--? fun molemmat_NK : NK ;
+--+ fun molemminpuolisesti_AdvK : AdvK ;
+fun molemminpuolisuus_NK : NK ;
+fun mollata_VK : VK ;
+fun mollaus_NK : NK ;
+fun molli_NK : NK ;
+fun mollottaa_VK : VK ;
+fun molottaa_VK : VK ;
+fun molotus_NK : NK ;
+fun molskahdella_VK : VK ;
+fun molskahdus_NK : NK ;
+fun molskahtaa_VK : VK ;
+fun molskaus_NK : NK ;
+fun molskauttaa_VK : VK ;
+fun molske_NK : NK ;
+fun molski_NK : NK ;
+fun molskia_VK : VK ;
+fun molskina_NK : NK ;
+fun molybdeeni_NK : NK ;
+fun momentaaninen_NK : NK ;
+fun momentti_NK : NK ;
+fun monarkia_NK : NK ;
+fun monarkismi_NK : NK ;
+fun monarkisti_NK : NK ;
+fun monarkistinen_NK : NK ;
+fun monarkki_NK : NK ;
+fun monarkkinen_NK : NK ;
+fun monasti_AdvK : AdvK ;
+fun monenlainen_NK : NK ;
+fun monenmoinen_NK : NK ;
+fun monentaa_VK : VK ;
+fun mones_NK : NK ;
+--+ fun monesti_AdvK : AdvK ;
+fun monetaarinen_NK : NK ;
+fun monetarismi_NK : NK ;
+fun monetaristi_NK : NK ;
+fun monetaristinen_NK : NK ;
+fun moneus_NK : NK ;
+fun mongerrus_NK : NK ;
+fun mongertaa_VK : VK ;
+fun mongoli_NK : NK ;
+fun mongolidi_NK : NK ;
+fun mongolidinen_NK : NK ;
+fun mongolismi_NK : NK ;
+fun mongoloidi_NK : NK ;
+fun moni_AK : AK ;
+fun moniaalla_AdvK : AdvK ;
+fun moniaalle_AdvK : AdvK ;
+fun moniaalta_AdvK : AdvK ;
+fun monialaistua_VK : VK ;
+fun monias_NK : NK ;
+fun moni_ilmeinen_NK : NK ;
+fun monijumalaisuus_NK : NK ;
+fun monikansainen_NK : NK ;
+fun monikko_NK : NK ;
+fun monikollinen_NK : NK ;
+fun monikollisuus_NK : NK ;
+--+ fun monilukuisesti_AdvK : AdvK ;
+fun monilukuisuus_NK : NK ;
+--+ fun monimielisesti_AdvK : AdvK ;
+fun monimuotoistua_VK : VK ;
+fun monimutkaistaa_VK : VK ;
+fun monimutkaistua_VK : VK ;
+fun moninaistaa_VK : VK ;
+fun moninaistua_VK : VK ;
+--+ fun moninkertaisesti_AdvK : AdvK ;
+fun monipersoonaisuus_NK : NK ;
+--+ fun monipuolisesti_AdvK : AdvK ;
+fun monipuolistaa_VK : VK ;
+fun monipuolistua_VK : VK ;
+fun monipuolisuus_NK : NK ;
+--+ fun monisanaisesti_AdvK : AdvK ;
+--+ fun monisatakertaisesti_AdvK : AdvK ;
+fun monisikio'inen_NK : NK ;
+fun monismi_NK : NK ;
+fun monistaa_VK : VK ;
+fun monistamo_NK : NK ;
+fun moniste_NK : NK ;
+fun monisti_NK : NK ;
+fun monistinen_NK : NK ;
+fun monistua_VK : VK ;
+fun monistus_NK : NK ;
+fun monistuttaa_VK : VK ;
+fun monisa'rma'isyys_NK : NK ;
+fun monitasoisuus_NK : NK ;
+fun monitieteisyys_NK : NK ;
+fun monitoroida_VK : VK ;
+fun monitorointi_NK : NK ;
+--+ fun monituhatkertaisesti_AdvK : AdvK ;
+fun monituinen_NK : NK ;
+fun monivaimoisuus_NK : NK ;
+fun monkua_VK : VK ;
+fun mono_1_NK : NK ;
+fun mono_2_NK : NK ;
+fun monofonia_NK : NK ;
+fun monofoninen_NK : NK ;
+fun monogaaminen_NK : NK ;
+fun monogamia_NK : NK ;
+fun monografia_NK : NK ;
+fun monogrammi_NK : NK ;
+fun monogynia_NK : NK ;
+fun monogyyninen_NK : NK ;
+fun monokkeli_NK : NK ;
+fun monoliitti_NK : NK ;
+fun monoliittinen_NK : NK ;
+fun monologi_NK : NK ;
+fun monopolisoida_VK : VK ;
+fun monopolisoitua_VK : VK ;
+fun monopolistinen_NK : NK ;
+fun monopoloida_VK : VK ;
+fun monopoloitua_VK : VK ;
+fun monotonia_NK : NK ;
+fun monotoninen_AK : AK ;
+--+ fun monotonisesti_AdvK : AdvK ;
+fun monotonisuus_NK : NK ;
+fun monottaa_VK : VK ;
+fun monotypia_NK : NK ;
+fun monstrumi_NK : NK ;
+fun monsuuni_NK : NK ;
+fun monta_AdvK : AdvK ;
+fun montaa_AdvK : AdvK ;
+fun montaasi_NK : NK ;
+fun montteerata_VK : VK ;
+fun monttu_NK : NK ;
+fun montto'o'ri_NK : NK ;
+fun monumentaalinen_AK : AK ;
+--+ fun monumentaalisesti_AdvK : AdvK ;
+fun monumentaalisuus_NK : NK ;
+fun monumentti_NK : NK ;
+fun moodi_NK : NK ;
+fun mooli_NK : NK ;
+fun moolisuus_NK : NK ;
+fun moottori_NK : NK ;
+fun moottorillinen_NK : NK ;
+fun moottorinen_NK : NK ;
+fun moottoroida_VK : VK ;
+fun moottorointi_NK : NK ;
+fun moottoroitua_VK : VK ;
+fun mopata_VK : VK ;
+fun mopedi_NK : NK ;
+fun mopo_NK : NK ;
+fun mopoilija_NK : NK ;
+fun mopoilla_VK : VK ;
+fun moppaus_NK : NK ;
+fun moppi_NK : NK ;
+fun mopsi_NK : NK ;
+fun moraali_NK : NK ;
+fun moraalinen_AK : AK ;
+--+ fun moraalisesti_AdvK : AdvK ;
+fun moraalisuus_NK : NK ;
+fun moraaliton_NK : NK ;
+fun moraalittomasti_AdvK : AdvK ;
+fun moraalittomuus_NK : NK ;
+fun moralismi_NK : NK ;
+fun moralisoida_VK : VK ;
+fun moralisointi_NK : NK ;
+fun moralisti_NK : NK ;
+fun moralistinen_NK : NK ;
+fun moraliteetti_NK : NK ;
+fun moratorio_NK : NK ;
+fun mordva_NK : NK ;
+fun moreeni_NK : NK ;
+fun morfeemi_NK : NK ;
+fun morfiini_NK : NK ;
+fun morfinismi_NK : NK ;
+fun morfinisti_NK : NK ;
+fun morfologia_NK : NK ;
+fun morfologinen_NK : NK ;
+fun morjens_AdvK : AdvK ;
+fun morjensta_AdvK : AdvK ;
+fun morjenstaa_VK : VK ;
+fun morjes_AdvK : AdvK ;
+fun morjesta_AdvK : AdvK ;
+fun morjestaa_VK : VK ;
+fun morkata_VK : VK ;
+fun morkkaaja_NK : NK ;
+fun morkkaus_NK : NK ;
+fun morkkis_NK : NK ;
+fun mormoni_NK : NK ;
+fun mormyska_NK : NK ;
+fun moro_1_NK : NK ;
+fun moro_2_AdvK : AdvK ;
+fun moron_AdvK : AdvK ;
+fun morsettaa_VK : VK ;
+fun morsetus_NK : NK ;
+fun morsian_NK : NK ;
+fun morsio_NK : NK ;
+fun morsiuspari_NK : NK ;
+fun mortadella_NK : NK ;
+fun mortaliteetti_NK : NK ;
+fun mortteli_NK : NK ;
+fun morula_NK : NK ;
+fun mosaiikki_NK : NK ;
+fun mosel_NK : NK ;
+fun moska_NK : NK ;
+fun moskainen_NK : NK ;
+fun moskaisuus_NK : NK ;
+fun moskeija_NK : NK ;
+fun moskiitto_NK : NK ;
+fun motata_VK : VK ;
+fun motelli_NK : NK ;
+fun motetti_NK : NK ;
+fun motiivi_NK : NK ;
+fun motittaa_VK : VK ;
+fun motivaatio_NK : NK ;
+fun motivoida_VK : VK ;
+fun motivoimaton_NK : NK ;
+fun motivointi_NK : NK ;
+fun motivoitua_VK : VK ;
+fun motkottaa_VK : VK ;
+fun moto_NK : NK ;
+fun motocross_NK : NK ;
+fun motoriikka_NK : NK ;
+fun motorinen_NK : NK ;
+fun motorisoida_VK : VK ;
+fun motorisoitua_VK : VK ;
+fun motskari_NK : NK ;
+fun motti_1_NK : NK ;
+fun motti_2_NK : NK ;
+fun motto_NK : NK ;
+fun moukari_NK : NK ;
+fun moukaroida_VK : VK ;
+fun moukka_NK : NK ;
+--+ fun moukkamaisesti_AdvK : AdvK ;
+fun moukkamaisuus_NK : NK ;
+fun moukku_NK : NK ;
+fun moukua_VK : VK ;
+fun mouruta_VK : VK ;
+fun moussakas_NK : NK ;
+fun mousse_NK : NK ;
+fun muassa_AdvK : AdvK ;
+fun muffini_NK : NK ;
+fun muhamettilainen_NK : NK ;
+fun muhamettilaisuus_NK : NK ;
+fun muhea_NK : NK ;
+fun muhennos_NK : NK ;
+fun muhennus_NK : NK ;
+fun muhentaa_VK : VK ;
+fun muhentua_VK : VK ;
+fun muheva_NK : NK ;
+fun muhevuus_NK : NK ;
+fun muhia_VK : VK ;
+fun muhina_NK : NK ;
+fun muhinoida_VK : VK ;
+fun muhinointi_NK : NK ;
+fun muhkea_AK : AK ;
+--+ fun muhkeasti_AdvK : AdvK ;
+fun muhkeus_NK : NK ;
+fun muhkura_NK : NK ;
+fun muhkurainen_NK : NK ;
+fun muhoilla_VK : VK ;
+fun muhvi_NK : NK ;
+fun muija_NK : NK ;
+fun muikea_AK : AK ;
+--+ fun muikeasti_AdvK : AdvK ;
+fun muikistaa_VK : VK ;
+fun muikistella_VK : VK ;
+fun muikku_NK : NK ;
+fun muiluttaa_VK : VK ;
+fun muiluttaja_NK : NK ;
+fun muilutus_NK : NK ;
+fun muinainen_NK : NK ;
+fun muinaisaika_NK : NK ;
+fun muinaisuus_NK : NK ;
+fun muinoin_AdvK : AdvK ;
+fun muinoinen_NK : NK ;
+fun muiskauttaa_VK : VK ;
+fun muisku_NK : NK ;
+fun muistaa_VK : VK ;
+fun muistama_NK : NK ;
+fun muistamaton_NK : NK ;
+fun muistamattomuus_NK : NK ;
+fun muistella_VK : VK ;
+fun muistelma_NK : NK ;
+fun muistelo_NK : NK ;
+fun muistelu_NK : NK ;
+fun muistelus_NK : NK ;
+fun muistettava_NK : NK ;
+fun muisti_NK : NK ;
+fun muistiinpanna_VK : VK ;
+fun muistinen_NK : NK ;
+fun muistio_NK : NK ;
+fun muistisuus_NK : NK ;
+fun muistittomuus_NK : NK ;
+fun muisto_NK : NK ;
+fun muistoinen_NK : NK ;
+fun muistoisa_NK : NK ;
+fun muistua_VK : VK ;
+fun muistuma_NK : NK ;
+fun muistutella_VK : VK ;
+fun muistuttaa_VK : VK ;
+fun muistutus_NK : NK ;
+fun muka_AdvK : AdvK ;
+fun mukaa_AdvK : AdvK ;
+fun mukaan_AdvK : AdvK ;
+fun mukaan_luettuna_AdvK : AdvK ;
+fun mukaan_lukien_AdvK : AdvK ;
+fun mukaansatempaava_AK : AK ;
+--+ fun mukaansatempaavasti_AdvK : AdvK ;
+fun mukaansatempaavuus_NK : NK ;
+fun mukaantua_VK : VK ;
+fun mukaantuva_NK : NK ;
+fun mukaelma_NK : NK ;
+fun mukailla_VK : VK ;
+fun mukailu_NK : NK ;
+fun mukainen_AK : AK ;
+--+ fun mukaisesti_AdvK : AdvK ;
+fun mukaisuus_NK : NK ;
+fun mukamas_AdvK : AdvK ;
+fun mukana_AdvK : AdvK ;
+fun mukauma_NK : NK ;
+fun mukauttaa_VK : VK ;
+fun mukautua_VK : VK ;
+fun mukautuma_NK : NK ;
+fun mukautuva_NK : NK ;
+fun mukautuvainen_NK : NK ;
+fun mukautuvaisuus_NK : NK ;
+fun mukautuvuus_NK : NK ;
+fun mukava_AK : AK ;
+--+ fun mukavasti_AdvK : AdvK ;
+fun mukavoittaa_VK : VK ;
+fun mukavoitua_VK : VK ;
+fun mukavuus_NK : NK ;
+fun muki_NK : NK ;
+fun mukiin_AdvK : AdvK ;
+--+ fun mukiinmeneva'sti_AdvK : AdvK ;
+fun mukillinen_NK : NK ;
+fun mukiloida_VK : VK ;
+fun mukilointi_NK : NK ;
+fun mukina_NK : NK ;
+fun mukista_VK : VK ;
+fun mukkelis_makkelis_AdvK : AdvK ;
+fun muksahdus_NK : NK ;
+fun muksahtaa_VK : VK ;
+fun muksaus_NK : NK ;
+fun muksauttaa_VK : VK ;
+fun muksia_VK : VK ;
+fun muksu_NK : NK ;
+fun mukula_NK : NK ;
+fun mukulainen_NK : NK ;
+fun mukulajuuri_NK : NK ;
+fun mukuloida_VK : VK ;
+fun mukura_NK : NK ;
+fun mulahdus_NK : NK ;
+fun mulahtaa_VK : VK ;
+fun mulatti_NK : NK ;
+fun muli_NK : NK ;
+fun muljahdella_VK : VK ;
+fun muljahdus_NK : NK ;
+fun muljahtaa_VK : VK ;
+fun muljaus_NK : NK ;
+fun muljautella_VK : VK ;
+fun muljauttaa_VK : VK ;
+fun mulkaista_VK : VK ;
+fun mulkku_NK : NK ;
+fun mulkoilla_VK : VK ;
+fun mullas_NK : NK ;
+fun mullata_VK : VK ;
+fun mulli_NK : NK ;
+fun mullikka_NK : NK ;
+fun mullin_mallin_AdvK : AdvK ;
+fun mullistaa_VK : VK ;
+fun mullistava_AK : AK ;
+--+ fun mullistavasti_AdvK : AdvK ;
+fun mullistavuus_NK : NK ;
+fun mullistua_VK : VK ;
+fun mullistus_NK : NK ;
+fun mullittaa_VK : VK ;
+fun mullitus_NK : NK ;
+fun mullos_NK : NK ;
+fun mulskahdus_NK : NK ;
+fun mulskahtaa_VK : VK ;
+fun multa_NK : NK ;
+fun multaantua_VK : VK ;
+fun multainen_NK : NK ;
+fun multaus_NK : NK ;
+fun multautua_VK : VK ;
+fun multava_NK : NK ;
+fun multavuus_NK : NK ;
+fun multilateraalinen_NK : NK ;
+fun multippeli_NK : NK ;
+fun multivisio_NK : NK ;
+fun mumina_NK : NK ;
+fun mumista_VK : VK ;
+fun mummeli_NK : NK ;
+fun mummi_NK : NK ;
+fun mummo_NK : NK ;
+fun mummola_NK : NK ;
+fun mummu_NK : NK ;
+fun muna_NK : NK ;
+fun munainen_NK : NK ;
+fun munakas_NK : NK ;
+fun munankuori_NK : NK ;
+fun munaskuu_NK : NK ;
+fun munata_VK : VK ;
+fun munaus_NK : NK ;
+fun munavoi_NK : NK ;
+fun munia_VK : VK ;
+fun muninta_NK : NK ;
+fun munittaa_VK : VK ;
+fun munitus_NK : NK ;
+fun munkisto_NK : NK ;
+fun munkki_NK : NK ;
+fun munkkius_NK : NK ;
+fun munuainen_NK : NK ;
+fun munuaiskera'nen_NK : NK ;
+fun munuaismainen_NK : NK ;
+fun muodikas_AK : AK ;
+--+ fun muodikkaasti_AdvK : AdvK ;
+fun muodikkuus_NK : NK ;
+fun muodistaa_VK : VK ;
+fun muodokas_NK : NK ;
+fun muodollinen_AK : AK ;
+--+ fun muodollisesti_AdvK : AdvK ;
+fun muodollisuus_NK : NK ;
+fun muodonta_NK : NK ;
+fun muodontaa_VK : VK ;
+fun muodostaa_VK : VK ;
+fun muodostaja_NK : NK ;
+fun muodoste_NK : NK ;
+fun muodosteilla_AdvK : AdvK ;
+fun muodostella_VK : VK ;
+fun muodostelma_NK : NK ;
+fun muodostelu_NK : NK ;
+fun muodostua_VK : VK ;
+fun muodostuma_NK : NK ;
+fun muodostus_NK : NK ;
+fun muodota_VK : VK ;
+fun muodoton_NK : NK ;
+fun muodottomuus_NK : NK ;
+fun muokata_VK : VK ;
+fun muokattavuus_NK : NK ;
+fun muokkaaja_NK : NK ;
+fun muokkaantua_VK : VK ;
+fun muokkain_NK : NK ;
+fun muokkaus_NK : NK ;
+fun muokkautua_VK : VK ;
+fun muokkautuvuus_NK : NK ;
+fun muona_NK : NK ;
+fun muonittaa_VK : VK ;
+fun muonittamo_NK : NK ;
+fun muonitus_NK : NK ;
+fun muori_NK : NK ;
+fun muorinen_AdvK : AdvK ;
+fun muoti_NK : NK ;
+fun muoto_NK : NK ;
+fun muotoilija_NK : NK ;
+fun muotoilla_VK : VK ;
+fun muotoilu_NK : NK ;
+fun muotoinen_NK : NK ;
+fun muotoisuus_NK : NK ;
+fun muotoutua_VK : VK ;
+fun muotoutuma_NK : NK ;
+fun muotti_NK : NK ;
+fun muovaantua_VK : VK ;
+fun muovailla_VK : VK ;
+fun muovailu_NK : NK ;
+fun muovata_VK : VK ;
+fun muovauma_NK : NK ;
+fun muovaus_NK : NK ;
+fun muovautua_VK : VK ;
+fun muovautuma_NK : NK ;
+fun muovautuva_NK : NK ;
+fun muovautuvuus_NK : NK ;
+fun muovi_NK : NK ;
+fun muovinen_NK : NK ;
+fun muovittaa_VK : VK ;
+fun muovitus_NK : NK ;
+fun mura_NK : NK ;
+fun murahdella_VK : VK ;
+fun murahdus_NK : NK ;
+fun murahtaa_VK : VK ;
+fun murahtelu_NK : NK ;
+fun muratti_NK : NK ;
+fun murea_NK : NK ;
+fun mureena_NK : NK ;
+fun murehduttaa_VK : VK ;
+fun murehtia_VK : VK ;
+fun mureke_NK : NK ;
+fun muren_NK : NK ;
+fun murena_NK : NK ;
+fun murene_NK : NK ;
+fun murennus_NK : NK ;
+fun murentaa_VK : VK ;
+fun murentua_VK : VK ;
+fun mureta_VK : VK ;
+fun mureus_NK : NK ;
+fun mureuttaa_VK : VK ;
+fun mureutua_VK : VK ;
+fun murha_NK : NK ;
+fun murhaaja_NK : NK ;
+fun murhaava_AK : AK ;
+--+ fun murhaavasti_AdvK : AdvK ;
+fun murhata_VK : VK ;
+fun murhauttaa_VK : VK ;
+fun murhe_NK : NK ;
+fun murheellinen_AK : AK ;
+--+ fun murheellisesti_AdvK : AdvK ;
+fun murheellisuus_NK : NK ;
+fun murheenkryyni_NK : NK ;
+fun murheinen_NK : NK ;
+fun murheissaan_AdvK : AdvK ;
+fun murhemielelle_AdvK : AdvK ;
+fun murhemielella'_AdvK : AdvK ;
+fun murhemielin_AdvK : AdvK ;
+fun murikka_NK : NK ;
+fun murina_NK : NK ;
+fun murista_VK : VK ;
+fun murjaani_NK : NK ;
+fun murjaista_VK : VK ;
+fun murjoa_VK : VK ;
+fun murjottaa_VK : VK ;
+fun murjottaja_NK : NK ;
+fun murjotus_NK : NK ;
+fun murjoutua_VK : VK ;
+fun murju_NK : NK ;
+fun murkina_NK : NK ;
+fun murkinoida_VK : VK ;
+fun murkinointi_NK : NK ;
+fun murkku_1_NK : NK ;
+fun murkku_2_NK : NK ;
+fun murmeli_NK : NK ;
+fun muro_NK : NK ;
+fun murre_NK : NK ;
+fun murrokko_NK : NK ;
+fun murros_NK : NK ;
+fun murrosaika_NK : NK ;
+fun murrostaa_VK : VK ;
+fun murroste_NK : NK ;
+fun murrostus_NK : NK ;
+fun murska_NK : NK ;
+fun murskaaja_NK : NK ;
+fun murskaamo_NK : NK ;
+fun murskaantua_VK : VK ;
+fun murskaava_AK : AK ;
+--+ fun murskaavasti_AdvK : AdvK ;
+fun murskain_NK : NK ;
+fun murskaksi_AdvK : AdvK ;
+fun murskana_AdvK : AdvK ;
+fun murskata_VK : VK ;
+fun murskaus_NK : NK ;
+fun murskautua_VK : VK ;
+fun murske_NK : NK ;
+fun mursu_NK : NK ;
+fun murtaa_VK : VK ;
+fun murtaja_NK : NK ;
+fun murtautua_VK : VK ;
+fun murtautuja_NK : NK ;
+fun murteellinen_AK : AK ;
+--+ fun murteellisesti_AdvK : AdvK ;
+fun murteellisuus_NK : NK ;
+fun murteinen_NK : NK ;
+fun murteisto_NK : NK ;
+fun murteittain_AdvK : AdvK ;
+fun murto_NK : NK ;
+fun murtokohta_NK : NK ;
+fun murtsikka_NK : NK ;
+fun murtua_VK : VK ;
+fun murtuma_NK : NK ;
+fun murtumakohta_NK : NK ;
+fun murtumaton_NK : NK ;
+fun murtumattomuus_NK : NK ;
+fun murtuvuus_NK : NK ;
+fun muru_NK : NK ;
+fun muruinen_NK : NK ;
+fun murunen_NK : NK ;
+fun murustaa_VK : VK ;
+fun murustua_VK : VK ;
+fun musa_NK : NK ;
+fun musaka_NK : NK ;
+fun museaalinen_NK : NK ;
+fun museo_NK : NK ;
+fun museoida_VK : VK ;
+fun museointi_NK : NK ;
+fun museoitua_VK : VK ;
+fun musertaa_VK : VK ;
+fun musertava_NK : NK ;
+fun musertua_VK : VK ;
+fun musiikillinen_AK : AK ;
+--+ fun musiikillisesti_AdvK : AdvK ;
+fun musiikki_NK : NK ;
+fun musikaali_NK : NK ;
+fun musikaalinen_AK : AK ;
+--+ fun musikaalisesti_AdvK : AdvK ;
+fun musikaalisuus_NK : NK ;
+fun musikantti_NK : NK ;
+fun musikka_NK : NK ;
+fun musikologia_NK : NK ;
+fun musisoida_VK : VK ;
+fun musisointi_NK : NK ;
+fun muskatelli_NK : NK ;
+fun muskatti_NK : NK ;
+fun muskeli_NK : NK ;
+fun musketti_NK : NK ;
+fun musketo'o'ri_NK : NK ;
+fun muskotti_NK : NK ;
+fun musliini_NK : NK ;
+fun muslimi_NK : NK ;
+fun mussu_NK : NK ;
+fun mussuttaa_VK : VK ;
+fun must_AdvK : AdvK ;
+fun musta_NK : NK ;
+fun mustajuuri_NK : NK ;
+fun mustamaalata_VK : VK ;
+fun mustangi_NK : NK ;
+fun mustasukkainen_AK : AK ;
+--+ fun mustasukkaisesti_AdvK : AdvK ;
+fun mustasukkaisuus_NK : NK ;
+fun mustata_VK : VK ;
+fun muste_NK : NK ;
+fun mustelma_NK : NK ;
+fun mustenee_VK : VK ;
+fun mustentaa_VK : VK ;
+fun musteta_VK : VK ;
+fun mustikka_NK : NK ;
+fun mustikkainen_NK : NK ;
+fun mustua_VK : VK ;
+fun mustuainen_NK : NK ;
+fun mustuma_NK : NK ;
+fun mustuttaa_VK : VK ;
+fun mustuus_NK : NK ;
+fun mut_AdvK : AdvK ;
+fun muta_NK : NK ;
+fun mutaatio_NK : NK ;
+fun mutageeninen_NK : NK ;
+fun mutageenisuus_NK : NK ;
+fun mutainen_NK : NK ;
+fun mutantti_NK : NK ;
+fun mutatoitua_VK : VK ;
+fun mutina_NK : NK ;
+fun mutista_VK : VK ;
+fun mutka_NK : NK ;
+fun mutkainen_NK : NK ;
+fun mutkallinen_NK : NK ;
+fun mutkaton_NK : NK ;
+fun mutkattomasti_AdvK : AdvK ;
+fun mutkikas_AK : AK ;
+--+ fun mutkikkaasti_AdvK : AdvK ;
+fun mutkikkuus_NK : NK ;
+fun mutkistaa_VK : VK ;
+fun mutkistua_VK : VK ;
+fun mutkistuttaa_VK : VK ;
+fun mutkitella_VK : VK ;
+fun mutristaa_VK : VK ;
+fun mutristella_VK : VK ;
+fun mutruilla_VK : VK ;
+fun mutrulla_AdvK : AdvK ;
+fun mutrullaan_AdvK : AdvK ;
+fun mutrulle_AdvK : AdvK ;
+fun mutrulleen_AdvK : AdvK ;
+fun mutrussa_AdvK : AdvK ;
+fun mutruun_AdvK : AdvK ;
+fun mutsi_NK : NK ;
+fun mutta_AdvK : AdvK ;
+fun mutteri_NK : NK ;
+fun mutu_1_NK : NK ;
+fun mutu_2_NK : NK ;
+fun mutustaa_VK : VK ;
+fun mutustella_VK : VK ;
+fun mutustelu_NK : NK ;
+fun muu_NK : NK ;
+fun muualla_AdvK : AdvK ;
+fun muualle_AdvK : AdvK ;
+fun muualta_AdvK : AdvK ;
+fun muuanne_AdvK : AdvK ;
+fun muukalaisittain_AdvK : AdvK ;
+fun muukalaispassi_NK : NK ;
+fun muukalaistua_VK : VK ;
+fun muuli_NK : NK ;
+fun muulloin_AdvK : AdvK ;
+fun muumio_NK : NK ;
+fun muumioida_VK : VK ;
+fun muumioitua_VK : VK ;
+fun muunlainen_NK : NK ;
+fun muun_muassa_AdvK : AdvK ;
+fun muunnella_VK : VK ;
+fun muunnelma_NK : NK ;
+fun muunnin_NK : NK ;
+fun muunnos_NK : NK ;
+fun muuntaa_VK : VK ;
+fun muuntaja_NK : NK ;
+fun muuntamo_NK : NK ;
+fun muuntautua_VK : VK ;
+fun muuntelu_NK : NK ;
+fun muunto_NK : NK ;
+fun muuntokerroin_NK : NK ;
+fun muuntua_VK : VK ;
+fun muurahainen_NK : NK ;
+fun muurain_NK : NK ;
+fun muurari_NK : NK ;
+fun muurata_VK : VK ;
+fun muuraus_NK : NK ;
+fun muurautua_VK : VK ;
+fun muuri_NK : NK ;
+fun muurittaa_VK : VK ;
+fun muusa_NK : NK ;
+fun muusata_VK : VK ;
+fun muusi_NK : NK ;
+fun muusikko_NK : NK ;
+fun muusikkous_NK : NK ;
+fun muutama_NK : NK ;
+fun muutattaa_VK : VK ;
+fun muutella_VK : VK ;
+fun muuten_AdvK : AdvK ;
+fun muutoin_AdvK : AdvK ;
+fun muutos_NK : NK ;
+fun muuttaa_VK : VK ;
+fun muuttaja_NK : NK ;
+fun muutto_NK : NK ;
+fun muuttoaika_NK : NK ;
+fun muuttua_VK : VK ;
+fun muuttuja_NK : NK ;
+fun muuttuma_NK : NK ;
+fun muuttumaton_NK : NK ;
+fun muuttumattomuus_NK : NK ;
+fun muuttuvainen_NK : NK ;
+fun muuttuvaisuus_NK : NK ;
+fun muuttuvuus_NK : NK ;
+fun myhky_NK : NK ;
+fun myhkyra'_NK : NK ;
+fun myha'hdella'_VK : VK ;
+fun myha'hdys_NK : NK ;
+fun myha'hta'a'_VK : VK ;
+fun myha'illa'_VK : VK ;
+fun myha'ily_NK : NK ;
+fun mykero'_NK : NK ;
+fun mykistytta'a'_VK : VK ;
+fun mykistya'_VK : VK ;
+fun mykista'a'_VK : VK ;
+fun mykio'_NK : NK ;
+fun mykkyra'_NK : NK ;
+fun mykkyys_NK : NK ;
+fun mykka'_NK : NK ;
+fun mykologia_NK : NK ;
+fun mykorritsa_NK : NK ;
+fun myky_NK : NK ;
+fun myllerrys_NK : NK ;
+fun myllerta'a'_VK : VK ;
+fun mylly_NK : NK ;
+fun myllytta'a'_VK : VK ;
+fun myllytys_NK : NK ;
+fun mylla'kka'_NK : NK ;
+fun mylla'ri_NK : NK ;
+fun mylla'ta'_VK : VK ;
+fun mylvinta'_NK : NK ;
+fun mylvina'_NK : NK ;
+fun mylvia'_VK : VK ;
+fun mylva'hdys_NK : NK ;
+fun mylva'hta'a'_VK : VK ;
+fun mynka'a'n_AdvK : AdvK ;
+fun myntti_NK : NK ;
+fun myooma_NK : NK ;
+fun myrha_NK : NK ;
+fun myriadi_NK : NK ;
+fun myrkky_NK : NK ;
+fun myrkyllinen_AK : AK ;
+--+ fun myrkyllisesti_AdvK : AdvK ;
+fun myrkyllisyys_NK : NK ;
+fun myrkyttya'_VK : VK ;
+fun myrkytta'a'_VK : VK ;
+fun myrkytys_NK : NK ;
+fun myrkyto'n_NK : NK ;
+fun myrsky_NK : NK ;
+fun myrskyinen_NK : NK ;
+--+ fun myrskyisa'sti_AdvK : AdvK ;
+fun myrskyta'_VK : VK ;
+fun myrtsi_NK : NK ;
+fun myrtti_NK : NK ;
+fun myrtya'_VK : VK ;
+fun myra'kka'_NK : NK ;
+fun myski_NK : NK ;
+fun mysli_NK : NK ;
+fun myssy_NK : NK ;
+fun mysteeri_NK : NK ;
+fun mysteerio_NK : NK ;
+fun mystifikaatio_NK : NK ;
+fun mystifioida_VK : VK ;
+fun mystifiointi_NK : NK ;
+fun mystiikka_NK : NK ;
+fun mystikko_NK : NK ;
+fun mystinen_AK : AK ;
+--+ fun mystisesti_AdvK : AdvK ;
+fun mystisyys_NK : NK ;
+fun mytologi_NK : NK ;
+fun mytologia_NK : NK ;
+fun mytologinen_NK : NK ;
+fun mytty_NK : NK ;
+fun myyda'_VK : VK ;
+fun myyja'_NK : NK ;
+--? fun myyja'iset_NK : NK ;
+fun myyja'ta'r_NK : NK ;
+fun myyma'la'_NK : NK ;
+fun myynninedista'minen_NK : NK ;
+fun myynti_NK : NK ;
+fun myyra'_NK : NK ;
+fun myytillinen_NK : NK ;
+fun myytisto'_NK : NK ;
+fun myytti_NK : NK ;
+fun myyttinen_NK : NK ;
+fun myyttisyys_NK : NK ;
+fun myyty_NK : NK ;
+fun myo'den_AdvK : AdvK ;
+fun myo'da'_VK : VK ;
+fun myo'da'ta'_VK : VK ;
+fun myo'hemmin_AdvK : AdvK ;
+fun myo'hemma'_AdvK : AdvK ;
+fun myo'hemma'ksi_AdvK : AdvK ;
+fun myo'hemma's_AdvK : AdvK ;
+fun myo'hempa'a'n_AdvK : AdvK ;
+fun myo'hentya'_VK : VK ;
+fun myo'henta'a'_VK : VK ;
+fun myo'ha'_NK : NK ;
+fun myo'ha'inen_NK : NK ;
+fun myo'ha'iseen_AdvK : AdvK ;
+fun myo'ha'isglasiaaliaika_NK : NK ;
+fun myo'ha'isglasiaalinen_NK : NK ;
+fun myo'ha'isinta'a'n_AdvK : AdvK ;
+fun myo'ha'iskeskiaika_NK : NK ;
+fun myo'ha'lle_AdvK : AdvK ;
+fun myo'ha'lla'_AdvK : AdvK ;
+fun myo'ha'ssa'_AdvK : AdvK ;
+fun myo'ha'stella'_VK : VK ;
+fun myo'ha'stymisaika_NK : NK ;
+fun myo'ha'stytta'a'_VK : VK ;
+fun myo'ha'stya'_VK : VK ;
+fun myo'ha'a'n_AdvK : AdvK ;
+fun myo'nnella'_VK : VK ;
+fun myo'nnytella'_VK : VK ;
+fun myo'nnytys_NK : NK ;
+fun myo'nteinen_AK : AK ;
+--+ fun myo'nteisesti_AdvK : AdvK ;
+fun myo'nteisyys_NK : NK ;
+fun myo'ntymys_NK : NK ;
+fun myo'ntyma'tto'myys_NK : NK ;
+fun myo'ntyma'to'n_NK : NK ;
+fun myo'ntyvyys_NK : NK ;
+fun myo'ntyva'_AK : AK ;
+fun myo'ntyva'inen_NK : NK ;
+--+ fun myo'ntyva'sti_AdvK : AdvK ;
+fun myo'ntya'_VK : VK ;
+fun myo'nta'ja'_NK : NK ;
+fun myo'nta'va'_AK : AK ;
+--+ fun myo'nta'va'sti_AdvK : AdvK ;
+fun myo'nta'a'_VK : VK ;
+fun myo'nto'_NK : NK ;
+fun myo's_AdvK : AdvK ;
+fun myo'skin_AdvK : AdvK ;
+fun myo'ska'a'n_AdvK : AdvK ;
+fun myo'sta'a'_VK : VK ;
+fun myo'sto'_NK : NK ;
+fun myo'ten_AdvK : AdvK ;
+fun myo'ta'_AdvK : AdvK ;
+fun myo'ta'ilija'_NK : NK ;
+fun myo'ta'illa'_VK : VK ;
+fun myo'ta'ily_NK : NK ;
+fun myo'ta'inen_AK : AK ;
+--+ fun myo'ta'isesti_AdvK : AdvK ;
+--? fun myo'ta'ja'iset_NK : NK ;
+fun myo'ta'karvaan_AdvK : AdvK ;
+fun myo'ta'le_NK : NK ;
+--+ fun myo'ta'mielisesti_AdvK : AdvK ;
+fun myo'ta'pa'iva'a'n_AdvK : AdvK ;
+fun myo'ta'sukaan_AdvK : AdvK ;
+--+ fun myo'ta'tuntoisesti_AdvK : AdvK ;
+fun myo'ta'a'nsa'_AdvK : AdvK ;
+fun ma'da'nnytta'a'_VK : VK ;
+fun ma'da'nna'inen_NK : NK ;
+fun ma'da'nna'isyys_NK : NK ;
+fun ma'da'ntya'_VK : VK ;
+fun ma'da'tta'mo'_NK : NK ;
+fun ma'da'tta'a'_VK : VK ;
+fun ma'da'tys_NK : NK ;
+fun ma'da'ta'_VK : VK ;
+fun ma'hka'_NK : NK ;
+fun ma'iha'_NK : NK ;
+fun ma'ike_NK : NK ;
+fun ma'ikya'_VK : VK ;
+fun ma'ika'a'_VK : VK ;
+fun ma'iske_NK : NK ;
+fun ma'iskia'_VK : VK ;
+fun ma'iskytta'a'_VK : VK ;
+fun ma'iskytys_NK : NK ;
+fun ma'iskya'_VK : VK ;
+fun ma'iska'hdella'_VK : VK ;
+fun ma'iska'hdys_NK : NK ;
+fun ma'iska'hta'a'_VK : VK ;
+fun ma'iska'ys_NK : NK ;
+fun ma'iska'ytta'a'_VK : VK ;
+fun ma'iska'a'_VK : VK ;
+fun ma'ja'hdella'_VK : VK ;
+fun ma'ja'hdys_NK : NK ;
+fun ma'ja'hta'a'_VK : VK ;
+fun ma'ja'ys_NK : NK ;
+fun ma'ja'ytta'a'_VK : VK ;
+fun ma'ki_NK : NK ;
+fun ma'kinen_NK : NK ;
+fun ma'kisyys_NK : NK ;
+fun ma'ka'ra'_NK : NK ;
+fun ma'ka'ra'inen_NK : NK ;
+fun ma'ka'tta'a'_VK : VK ;
+fun ma'ka'tys_NK : NK ;
+fun ma'lli_1_NK : NK ;
+fun ma'lli_2_NK : NK ;
+fun ma'lla'ta'_VK : VK ;
+fun ma'lsa'_NK : NK ;
+fun ma'mmi_NK : NK ;
+fun ma'nnikko'_NK : NK ;
+fun ma'nnisto'_NK : NK ;
+fun ma'ntti_1_NK : NK ;
+fun ma'ntti_2_NK : NK ;
+fun ma'nty_NK : NK ;
+fun ma'ntyinen_NK : NK ;
+fun ma'nta'_NK : NK ;
+fun ma'rehtija'_NK : NK ;
+fun ma'rehtia'_VK : VK ;
+fun ma'rkile_NK : NK ;
+fun ma'rkia'_VK : VK ;
+fun ma'rkyys_NK : NK ;
+fun ma'rka'_NK : NK ;
+fun ma'rka'inen_NK : NK ;
+fun ma'rssy_NK : NK ;
+fun ma'sis_NK : NK ;
+fun ma'ski_NK : NK ;
+fun ma'ska'ksi_AdvK : AdvK ;
+fun ma'ska'na'_AdvK : AdvK ;
+fun ma'ska'ta'_VK : VK ;
+fun ma'ska'ys_NK : NK ;
+fun ma'ssytta'a'_VK : VK ;
+fun ma'ssa'ilija'_NK : NK ;
+fun ma'ssa'illa'_VK : VK ;
+fun ma'ssa'ily_NK : NK ;
+fun ma'ssa'ta'_VK : VK ;
+fun ma'ssa'ys_NK : NK ;
+fun ma'sa'_NK : NK ;
+fun ma'ti_NK : NK ;
+fun ma'tkia'_VK : VK ;
+fun ma'tky_NK : NK ;
+fun ma'tka'hdella'_VK : VK ;
+fun ma'tka'hdys_NK : NK ;
+fun ma'tka'hta'a'_VK : VK ;
+fun ma'tka'ista'_VK : VK ;
+fun ma'tka'ta'_VK : VK ;
+fun ma'tka'ys_NK : NK ;
+fun ma'tka'ytta'a'_VK : VK ;
+fun ma'tka'ytys_NK : NK ;
+fun ma'tta'ikko'_NK : NK ;
+fun ma'tta'inen_NK : NK ;
+fun ma'tta'a'_VK : VK ;
+fun ma'ta'_NK : NK ;
+fun ma'ta'inen_NK : NK ;
+fun ma'ta's_NK : NK ;
+fun ma'ta'stys_NK : NK ;
+fun ma'ta'stya'_VK : VK ;
+fun ma'ta'sta'va'_NK : NK ;
+fun ma'ta'sta'a'_VK : VK ;
+fun ma'yra'_NK : NK ;
+fun ma'ystin_NK : NK ;
+fun ma'a'inta'_NK : NK ;
+fun ma'a'kina'_NK : NK ;
+fun ma'a'kia'_VK : VK ;
+fun ma'a'kya'_VK : VK ;
+fun ma'a're_NK : NK ;
+fun ma'a'rite_NK : NK ;
+fun ma'a'ritella'_VK : VK ;
+fun ma'a'ritelma'_NK : NK ;
+fun ma'a'rittelema'to'n_NK : NK ;
+fun ma'a'rittely_NK : NK ;
+fun ma'a'ritta'a'_VK : VK ;
+fun ma'a'ritys_NK : NK ;
+fun ma'a'rly_NK : NK ;
+fun ma'a'ra'_NK : NK ;
+fun ma'a'ra'aika_NK : NK ;
+fun ma'a'ra'ileva'_AK : AK ;
+--+ fun ma'a'ra'ileva'sti_AdvK : AdvK ;
+fun ma'a'ra'illa'_VK : VK ;
+fun ma'a'ra'ily_NK : NK ;
+fun ma'a'ra'inen_AK : AK ;
+--+ fun ma'a'ra'isesti_AdvK : AdvK ;
+fun ma'a'ra'koko_NK : NK ;
+fun ma'a'ra'llinen_AK : AK ;
+--+ fun ma'a'ra'llisesti_AdvK : AdvK ;
+fun ma'a'ra'tty_NK : NK ;
+fun ma'a'ra'tto'ma'sti_AdvK : AdvK ;
+fun ma'a'ra'ta'_VK : VK ;
+fun ma'a'ra'to'n_NK : NK ;
+fun ma'a'ra'ys_NK : NK ;
+fun ma'a'ra'ytya'_VK : VK ;
+fun ma'a'ra'a'ja'_NK : NK ;
+fun ma'a'ra'a'ma'to'n_NK : NK ;
+fun ma'a'ra'a'va'_AK : AK ;
+--+ fun ma'a'ra'a'va'sti_AdvK : AdvK ;
+fun mo'hka'le_NK : NK ;
+fun mo'hlia'_VK : VK ;
+fun mo'hla'ta'_VK : VK ;
+fun mo'hla'ys_NK : NK ;
+fun mo'kellys_NK : NK ;
+fun mo'kelta'a'_VK : VK ;
+fun mo'kkeilla'_VK : VK ;
+fun mo'kkeily_NK : NK ;
+fun mo'kki_NK : NK ;
+fun mo'kkila'inen_NK : NK ;
+fun mo'ka'_NK : NK ;
+fun mo'ko'tta'ja'_NK : NK ;
+fun mo'ko'tta'a'_VK : VK ;
+fun mo'ko'tys_NK : NK ;
+fun mo'lina'_NK : NK ;
+fun mo'lista'_VK : VK ;
+fun mo'lli_NK : NK ;
+fun mo'llo'tta'a'_VK : VK ;
+fun mo'ly_NK : NK ;
+fun mo'lyta'_VK : VK ;
+fun mo'la'hdys_NK : NK ;
+fun mo'la'hta'a'_VK : VK ;
+fun mo'la'ytta'a'_VK : VK ;
+fun mo'lo'tta'a'_VK : VK ;
+fun mo'lo'tys_NK : NK ;
+fun mo'mmo'_NK : NK ;
+fun mo'nja'_NK : NK ;
+fun mo'nja'ta'_VK : VK ;
+fun mo'nkija'_NK : NK ;
+fun mo'nkia'_VK : VK ;
+fun mo'nkia'inen_NK : NK ;
+fun mo'nka'a'n_AdvK : AdvK ;
+fun mo'rea'_NK : NK ;
+fun mo'rina'_NK : NK ;
+fun mo'rista'_VK : VK ;
+fun mo'rkki_NK : NK ;
+fun mo'rko'_NK : NK ;
+fun mo'rsky_NK : NK ;
+fun mo'rska'_NK : NK ;
+fun mo'rssa'ri_NK : NK ;
+fun mo'ra'hdys_NK : NK ;
+fun mo'ra'hta'a'_VK : VK ;
+fun mo'ra'kka'_NK : NK ;
+fun mo'ro'ko'lli_NK : NK ;
+fun mo'sso'_NK : NK ;
+fun mo'tikka'_NK : NK ;
+fun mo'tti_NK : NK ;
+fun mo'yhennin_NK : NK ;
+fun mo'yhennys_NK : NK ;
+fun mo'yhenta'a'_VK : VK ;
+fun mo'yhea'_NK : NK ;
+fun mo'yhia'_VK : VK ;
+fun mo'yhy_NK : NK ;
+fun mo'ykky_NK : NK ;
+fun mo'ykkyinen_NK : NK ;
+fun mo'ykka'_NK : NK ;
+fun mo'yka'ta'_VK : VK ;
+fun mo'yrinta'_NK : NK ;
+fun mo'yrina'_NK : NK ;
+fun mo'yria'_VK : VK ;
+fun mo'yryta'_VK : VK ;
+fun mo'o'peli_NK : NK ;
+fun naakka_NK : NK ;
+fun naali_NK : NK ;
+fun naama_NK : NK ;
+fun naamainen_NK : NK ;
+fun naamari_NK : NK ;
+--? fun naamiaiset_NK : NK ;
+fun naamio_NK : NK ;
+fun naamioida_VK : VK ;
+fun naamioija_NK : NK ;
+fun naamiointi_NK : NK ;
+fun naamioitsija_NK : NK ;
+fun naamioitua_VK : VK ;
+fun naapukka_NK : NK ;
+fun naapuri_NK : NK ;
+fun naapuristo_NK : NK ;
+--? fun naapurukset_NK : NK ;
+fun naapurusto_NK : NK ;
+fun naapuruus_NK : NK ;
+fun naara_NK : NK ;
+fun naaras_NK : NK ;
+fun naarata_VK : VK ;
+fun naaraus_NK : NK ;
+fun naarmu_NK : NK ;
+fun naarmuinen_NK : NK ;
+fun naarmuttaa_VK : VK ;
+fun naarmuttua_VK : VK ;
+fun naarmutus_NK : NK ;
+fun naarmuuntua_VK : VK ;
+fun naatti_NK : NK ;
+fun naava_NK : NK ;
+fun naavainen_NK : NK ;
+fun naavoittua_VK : VK ;
+fun nafta_NK : NK ;
+fun naftaleeni_NK : NK ;
+fun naftaliini_NK : NK ;
+fun nafti_AK : AK ;
+--+ fun naftisti_AdvK : AdvK ;
+fun nahas_NK : NK ;
+fun nahikas_NK : NK ;
+fun nahina_NK : NK ;
+fun nahinoida_VK : VK ;
+fun nahinointi_NK : NK ;
+fun nahista_VK : VK ;
+fun nahistella_VK : VK ;
+fun nahistelu_NK : NK ;
+fun nahistua_VK : VK ;
+fun nahjus_NK : NK ;
+fun nahjustella_VK : VK ;
+fun nahka_NK : NK ;
+fun nahkainen_NK : NK ;
+fun nahkaisuus_NK : NK ;
+fun nahkea_NK : NK ;
+fun nahkiainen_NK : NK ;
+fun nahkoa_VK : VK ;
+fun nahkuri_NK : NK ;
+fun nahoittaa_VK : VK ;
+fun nahoitus_NK : NK ;
+fun naida_VK : VK ;
+fun naiivi_AK : AK ;
+--+ fun naiivisti_AdvK : AdvK ;
+fun naiivius_NK : NK ;
+fun naikkonen_NK : NK ;
+fun nailon_NK : NK ;
+fun nailoninen_NK : NK ;
+fun naimaton_NK : NK ;
+fun naimattomuus_NK : NK ;
+fun naimisiin_AdvK : AdvK ;
+fun naimisissa_AdvK : AdvK ;
+fun nainen_NK : NK ;
+fun nainti_NK : NK ;
+fun nainut_NK : NK ;
+fun naisellinen_AK : AK ;
+--+ fun naisellisesti_AdvK : AdvK ;
+fun naisellisuus_NK : NK ;
+fun naiseus_NK : NK ;
+fun naisisto_NK : NK ;
+fun naisistua_VK : VK ;
+fun naismainen_AK : AK ;
+--+ fun naismaisesti_AdvK : AdvK ;
+fun naismaisuus_NK : NK ;
+fun naispari_NK : NK ;
+fun naistennaurattaja_NK : NK ;
+fun naistenvihaaja_NK : NK ;
+fun naisuus_NK : NK ;
+fun naisvaltaistua_VK : VK ;
+fun naittaa_VK : VK ;
+fun naittaja_NK : NK ;
+fun naivismi_NK : NK ;
+fun naivisti_NK : NK ;
+fun naivistinen_NK : NK ;
+fun nakata_VK : VK ;
+fun nakella_VK : VK ;
+fun nakerrella_VK : VK ;
+fun nakerrus_NK : NK ;
+fun nakertaa_VK : VK ;
+fun nakkelu_NK : NK ;
+fun nakki_1_NK : NK ;
+fun nakki_2_NK : NK ;
+fun nakki_3_NK : NK ;
+fun nakki_4_NK : NK ;
+fun naksaa_VK : VK ;
+fun naksahdella_VK : VK ;
+fun naksahdus_NK : NK ;
+fun naksahtaa_VK : VK ;
+fun naksaus_NK : NK ;
+fun naksautella_VK : VK ;
+fun naksauttaa_VK : VK ;
+fun naksautus_NK : NK ;
+fun naksu_NK : NK ;
+fun naksua_VK : VK ;
+fun naksutella_VK : VK ;
+fun naksuttaa_VK : VK ;
+fun naku_NK : NK ;
+fun nakutella_VK : VK ;
+fun nakuttaa_VK : VK ;
+fun nakutus_NK : NK ;
+fun naljailija_NK : NK ;
+fun naljailla_VK : VK ;
+fun naljailu_NK : NK ;
+fun nalkissa_AdvK : AdvK ;
+fun nalkkiin_AdvK : AdvK ;
+fun nalkuttaa_VK : VK ;
+fun nalkutus_NK : NK ;
+fun nalle_NK : NK ;
+fun nalli_1_NK : NK ;
+fun nalli_2_NK : NK ;
+fun nallikka_NK : NK ;
+fun nami_NK : NK ;
+fun namikka_NK : NK ;
+fun namu_NK : NK ;
+fun namunen_NK : NK ;
+fun nanna_NK : NK ;
+fun napa_NK : NK ;
+fun napainen_NK : NK ;
+fun napaisuus_NK : NK ;
+fun napakasti_AdvK : AdvK ;
+fun napakka_NK : NK ;
+fun napalm_NK : NK ;
+fun napanteri_NK : NK ;
+fun napata_VK : VK ;
+fun napataatta_NK : NK ;
+fun napaus_NK : NK ;
+fun napauttaa_VK : VK ;
+fun napautus_NK : NK ;
+fun napeerata_VK : VK ;
+fun napero_NK : NK ;
+fun napillinen_NK : NK ;
+fun napina_NK : NK ;
+fun napinla'pi_NK : NK ;
+fun napisija_NK : NK ;
+fun napista_VK : VK ;
+fun napittaa_VK : VK ;
+fun napitus_NK : NK ;
+fun napostella_VK : VK ;
+fun napostelu_NK : NK ;
+fun nappa_NK : NK ;
+fun nappailla_VK : VK ;
+fun nappi_NK : NK ;
+fun nappinen_NK : NK ;
+fun nappo_NK : NK ;
+fun nappula_NK : NK ;
+fun naprapaatti_NK : NK ;
+fun naprapatia_NK : NK ;
+fun napsaa_VK : VK ;
+fun napsahdella_VK : VK ;
+fun napsahdus_NK : NK ;
+fun napsahtaa_VK : VK ;
+fun napsaus_NK : NK ;
+fun napsautella_VK : VK ;
+fun napsauttaa_VK : VK ;
+fun napsia_VK : VK ;
+fun napsu_NK : NK ;
+fun napsua_VK : VK ;
+fun napsutella_VK : VK ;
+fun napsuttaa_VK : VK ;
+fun napukka_NK : NK ;
+fun naputella_VK : VK ;
+fun naputtaa_VK : VK ;
+fun naputus_NK : NK ;
+fun narahdella_VK : VK ;
+fun narahdus_NK : NK ;
+fun narahtaa_VK : VK ;
+fun narauttaa_VK : VK ;
+fun narikka_NK : NK ;
+fun narina_NK : NK ;
+fun narista_VK : VK ;
+fun narisuttaa_VK : VK ;
+fun narkata_VK : VK ;
+fun narkkari_NK : NK ;
+fun narkkaus_NK : NK ;
+fun narkkis_NK : NK ;
+fun narkomaani_NK : NK ;
+fun narkomania_NK : NK ;
+fun narkoosi_NK : NK ;
+fun narkoottinen_NK : NK ;
+fun narrailla_VK : VK ;
+fun narrata_VK : VK ;
+fun narraus_NK : NK ;
+fun narri_NK : NK ;
+--+ fun narrimaisesti_AdvK : AdvK ;
+fun narrimaisuus_NK : NK ;
+fun narrius_NK : NK ;
+fun narsismi_NK : NK ;
+fun narsissi_NK : NK ;
+fun narsisti_NK : NK ;
+fun narsistinen_AK : AK ;
+--+ fun narsistisesti_AdvK : AdvK ;
+fun narsistisuus_NK : NK ;
+fun narskahdella_VK : VK ;
+fun narskahdus_NK : NK ;
+fun narskahtaa_VK : VK ;
+fun narskauttaa_VK : VK ;
+fun narske_NK : NK ;
+fun narsku_NK : NK ;
+fun narskua_VK : VK ;
+fun narskunta_NK : NK ;
+fun narskuttaa_VK : VK ;
+fun narskutus_NK : NK ;
+fun narttu_NK : NK ;
+fun naru_NK : NK ;
+fun naruttaa_VK : VK ;
+fun narutus_NK : NK ;
+fun nasakka_NK : NK ;
+fun nasaretilainen_NK : NK ;
+fun naseva_AK : AK ;
+--+ fun nasevasti_AdvK : AdvK ;
+fun nasevoida_VK : VK ;
+fun nasevoittaa_VK : VK ;
+fun nasevoitua_VK : VK ;
+fun nasevuus_NK : NK ;
+fun naskali_1_NK : NK ;
+fun naskali_2_NK : NK ;
+fun nassakka_NK : NK ;
+fun nasse_NK : NK ;
+fun nassikka_NK : NK ;
+fun nassu_1_NK : NK ;
+fun nassu_2_NK : NK ;
+fun nasta_NK : NK ;
+fun nastata_VK : VK ;
+fun nastaus_NK : NK ;
+fun nastoittaa_VK : VK ;
+fun nastoitus_NK : NK ;
+fun nasu_NK : NK ;
+fun nata_NK : NK ;
+fun nataliteetti_NK : NK ;
+fun natina_NK : NK ;
+fun nationalismi_NK : NK ;
+fun nationalisti_NK : NK ;
+fun nationalistinen_NK : NK ;
+fun natista_VK : VK ;
+fun natisuttaa_VK : VK ;
+fun nato_NK : NK ;
+fun natrium_NK : NK ;
+fun natriumkloridi_NK : NK ;
+fun natsa_NK : NK ;
+fun natsata_VK : VK ;
+fun natsi_NK : NK ;
+fun natsismi_NK : NK ;
+fun naturalismi_NK : NK ;
+fun naturalisti_NK : NK ;
+fun naturalistinen_NK : NK ;
+fun naturismi_NK : NK ;
+fun naturisti_NK : NK ;
+fun natustaa_VK : VK ;
+fun natustella_VK : VK ;
+fun naudikas_NK : NK ;
+fun nauha_NK : NK ;
+fun nauhoite_NK : NK ;
+fun nauhoittaa_VK : VK ;
+fun nauhoitus_NK : NK ;
+fun nauhuri_NK : NK ;
+fun naukaista_VK : VK ;
+fun naukaisu_NK : NK ;
+fun naukata_VK : VK ;
+fun naukkailla_VK : VK ;
+fun naukkailu_NK : NK ;
+fun naukku_NK : NK ;
+fun naukua_VK : VK ;
+fun naula_NK : NK ;
+fun naulain_NK : NK ;
+fun naulakko_NK : NK ;
+fun naulata_VK : VK ;
+fun naulaus_NK : NK ;
+fun nauliintua_VK : VK ;
+fun naulita_VK : VK ;
+fun nauliutua_VK : VK ;
+fun nauraa_VK : VK ;
+fun naurahdella_VK : VK ;
+fun naurahdus_NK : NK ;
+fun naurahtaa_VK : VK ;
+fun nauraja_NK : NK ;
+fun naurattaa_VK : VK ;
+fun naurattaja_NK : NK ;
+fun naureskella_VK : VK ;
+fun naureskelu_NK : NK ;
+fun naurettava_AK : AK ;
+--+ fun naurettavasti_AdvK : AdvK ;
+fun naurettavuus_NK : NK ;
+fun nauris_NK : NK ;
+fun nauru_NK : NK ;
+fun naurunalainen_NK : NK ;
+fun naurunalaistaa_VK : VK ;
+fun naurusuin_AdvK : AdvK ;
+fun nauta_NK : NK ;
+fun nautiikka_NK : NK ;
+fun nautinnokas_NK : NK ;
+fun nautinnollinen_AK : AK ;
+--+ fun nautinnollisesti_AdvK : AdvK ;
+fun nautinnollisuus_NK : NK ;
+fun nautinta_NK : NK ;
+fun nautinta_aika_NK : NK ;
+fun nautinto_NK : NK ;
+fun nautiskelija_NK : NK ;
+fun nautiskella_VK : VK ;
+fun nautiskelu_NK : NK ;
+fun nautittava_AK : AK ;
+--+ fun nautittavasti_AdvK : AdvK ;
+fun nautittavuus_NK : NK ;
+fun nauttia_VK : VK ;
+fun nauttija_NK : NK ;
+fun nau_unta_NK : NK ;
+fun navaho_NK : NK ;
+fun navajo_NK : NK ;
+fun navakasti_AdvK : AdvK ;
+fun navakka_NK : NK ;
+fun navakkuus_NK : NK ;
+fun navakoitua_VK : VK ;
+fun navallisuus_NK : NK ;
+fun navetta_NK : NK ;
+fun navigaatio_NK : NK ;
+fun navigaattori_NK : NK ;
+fun navigoida_VK : VK ;
+fun navigoija_NK : NK ;
+fun navigointi_NK : NK ;
+fun neekeri_NK : NK ;
+fun nega_NK : NK ;
+fun negaatio_NK : NK ;
+fun negatiivi_NK : NK ;
+fun negatiivinen_AK : AK ;
+--+ fun negatiivisesti_AdvK : AdvK ;
+fun negatiivisuus_NK : NK ;
+fun negridinen_NK : NK ;
+fun negrospirituaali_NK : NK ;
+fun neiditella'_VK : VK ;
+fun neilikka_NK : NK ;
+fun neiti_NK : NK ;
+fun neito_NK : NK ;
+fun neitokainen_NK : NK ;
+fun neitonen_NK : NK ;
+fun neitseellinen_AK : AK ;
+--+ fun neitseellisesti_AdvK : AdvK ;
+fun neitseellisyys_NK : NK ;
+fun neitsyt_NK : NK ;
+fun neitsyys_NK : NK ;
+fun nekku_NK : NK ;
+fun nekrologi_NK : NK ;
+fun nekroosi_NK : NK ;
+fun nekroottinen_NK : NK ;
+fun nekrotisoitua_VK : VK ;
+fun nekru_NK : NK ;
+fun nektari_NK : NK ;
+fun nektariini_NK : NK ;
+fun neli_1_NK : NK ;
+fun nelikanavainen_NK : NK ;
+fun nelikko_NK : NK ;
+fun nelikko'_NK : NK ;
+--+ fun nelika'tisesti_AdvK : AdvK ;
+fun nelilappeinen_NK : NK ;
+fun nelilo'_NK : NK ;
+--+ fun nelinkertaisesti_AdvK : AdvK ;
+fun nelinkertaistaa_VK : VK ;
+fun nelinkertaistua_VK : VK ;
+fun nelinkontin_AdvK : AdvK ;
+fun nelipyo'ra'veto_NK : NK ;
+fun nelisen_AdvK : AdvK ;
+fun nelisenkymmenta'_AdvK : AdvK ;
+fun nelisin_AdvK : AdvK ;
+fun neliskanttinen_NK : NK ;
+fun nelista'a'_VK : VK ;
+fun nelista'a'n_AdvK : AdvK ;
+fun nelitta'in_AdvK : AdvK ;
+--+ fun nelia'a'nisesti_AdvK : AdvK ;
+fun nelio'_NK : NK ;
+fun nelio'ida'_VK : VK ;
+fun nelio'inti_NK : NK ;
+fun nelio'itta'in_AdvK : AdvK ;
+fun nelio'juuri_NK : NK ;
+fun nelja'_NK : NK ;
+fun nelja'ka's_NK : NK ;
+fun nelja'nnes_NK : NK ;
+fun nelja's_NK : NK ;
+fun nelja'sti_AdvK : AdvK ;
+fun nelja'sta'a'n_AdvK : AdvK ;
+fun nelkku_NK : NK ;
+fun nelonen_NK : NK ;
+fun nelson_NK : NK ;
+fun nenetsi_NK : NK ;
+fun nenu_NK : NK ;
+fun nena'_NK : NK ;
+fun nena'inen_NK : NK ;
+fun nena'kkyys_NK : NK ;
+fun nena'kka'in_AdvK : AdvK ;
+--+ fun nena'kka'a'sti_AdvK : AdvK ;
+fun nena'ka's_AK : AK ;
+fun nena'njuuri_NK : NK ;
+fun nena'tti_NK : NK ;
+fun nena'tysten_AdvK : AdvK ;
+fun neodyymi_NK : NK ;
+fun neoliittinen_NK : NK ;
+fun neologismi_NK : NK ;
+fun neon_NK : NK ;
+fun nepata_VK : VK ;
+fun nepitta'a'_VK : VK ;
+fun nepotismi_NK : NK ;
+fun neppari_NK : NK ;
+fun neppaus_NK : NK ;
+fun neppi_NK : NK ;
+fun nero_NK : NK ;
+fun nerokas_AK : AK ;
+--+ fun nerokkaasti_AdvK : AdvK ;
+fun nerokkuus_NK : NK ;
+fun neronleimaus_NK : NK ;
+fun nerous_NK : NK ;
+fun nesessa'a'ri_NK : NK ;
+fun neste_NK : NK ;
+fun nesteinen_NK : NK ;
+fun nestema'inen_NK : NK ;
+fun nesteytin_NK : NK ;
+fun nesteytta'a'_VK : VK ;
+fun nesteytys_NK : NK ;
+fun nesteytya'_VK : VK ;
+fun nestor_NK : NK ;
+fun netiketti_NK : NK ;
+fun netota_VK : VK ;
+fun netto_NK : NK ;
+fun nettoaika_NK : NK ;
+fun neukku_NK : NK ;
+fun neula_NK : NK ;
+fun neulanen_NK : NK ;
+fun neulasisto_NK : NK ;
+fun neulasto_NK : NK ;
+fun neulata_VK : VK ;
+fun neule_NK : NK ;
+fun neuleinen_NK : NK ;
+fun neuloa_VK : VK ;
+fun neuloja_NK : NK ;
+fun neulomus_NK : NK ;
+fun neulonta_NK : NK ;
+fun neulos_NK : NK ;
+fun neuluri_NK : NK ;
+fun neuralgia_NK : NK ;
+fun neuralginen_NK : NK ;
+fun neurasteenikko_NK : NK ;
+fun neurasteeninen_NK : NK ;
+fun neurastenia_NK : NK ;
+fun neuriitti_NK : NK ;
+fun neurologi_NK : NK ;
+fun neurologia_NK : NK ;
+fun neurologinen_NK : NK ;
+fun neuroni_NK : NK ;
+fun neuroosi_NK : NK ;
+fun neurootikko_NK : NK ;
+fun neuroottinen_NK : NK ;
+fun neuroottistua_VK : VK ;
+fun neuroottisuus_NK : NK ;
+fun neurotisoitua_VK : VK ;
+fun neutraali_AK : AK ;
+fun neutraalistaa_VK : VK ;
+--+ fun neutraalisti_AdvK : AdvK ;
+fun neutraalistua_VK : VK ;
+fun neutraalisuus_NK : NK ;
+fun neutraalius_NK : NK ;
+fun neutralisaatio_NK : NK ;
+fun neutralisoida_VK : VK ;
+fun neutralisoitua_VK : VK ;
+fun neutraliteetti_NK : NK ;
+fun neutraloida_VK : VK ;
+fun neutralointi_NK : NK ;
+fun neutraloitua_VK : VK ;
+fun neutri_NK : NK ;
+fun neutriino_NK : NK ;
+fun neutroni_NK : NK ;
+fun neuvo_NK : NK ;
+fun neuvoa_VK : VK ;
+fun neuvoa_antava_NK : NK ;
+fun neuvoinen_NK : NK ;
+fun neuvoja_NK : NK ;
+fun neuvokas_AK : AK ;
+--+ fun neuvokkaasti_AdvK : AdvK ;
+fun neuvokki_NK : NK ;
+fun neuvokkuus_NK : NK ;
+fun neuvoksetar_NK : NK ;
+fun neuvola_NK : NK ;
+fun neuvonta_NK : NK ;
+fun neuvos_NK : NK ;
+fun neuvosto_NK : NK ;
+fun neuvotella_VK : VK ;
+fun neuvoton_NK : NK ;
+fun neuvotteilla_AdvK : AdvK ;
+fun neuvottelija_NK : NK ;
+fun neuvottelu_NK : NK ;
+fun neuvottomuus_NK : NK ;
+fun neva_NK : NK ;
+fun nevoittua_VK : VK ;
+fun newton_NK : NK ;
+fun nide_NK : NK ;
+fun nidoksinen_NK : NK ;
+fun nidoksittain_AdvK : AdvK ;
+fun nidonta_NK : NK ;
+fun nidos_NK : NK ;
+fun niekka_NK : NK ;
+fun nielaista_VK : VK ;
+fun nielaisu_NK : NK ;
+fun nielaus_NK : NK ;
+fun nieleksia'_VK : VK ;
+fun nieleskella'_VK : VK ;
+fun niella'_VK : VK ;
+fun nielu_NK : NK ;
+fun nieluinen_NK : NK ;
+fun niemeke_NK : NK ;
+fun niemi_NK : NK ;
+fun nieria'_NK : NK ;
+fun nietos_NK : NK ;
+fun nietostaa_VK : VK ;
+fun nietostua_VK : VK ;
+fun nihilismi_NK : NK ;
+fun nihilisti_NK : NK ;
+fun nihilistinen_NK : NK ;
+fun nihkeys_NK : NK ;
+fun nihkea'_AK : AK ;
+--+ fun nihkea'sti_AdvK : AdvK ;
+fun nihti_NK : NK ;
+fun niiata_VK : VK ;
+fun niiaus_NK : NK ;
+fun niin_AdvK : AdvK ;
+fun niini_NK : NK ;
+fun niin_ika'a'n_AdvK : AdvK ;
+fun niininen_NK : NK ;
+fun niinku_AdvK : AdvK ;
+fun niin_kuin_AdvK : AdvK ;
+fun niin_pa'in_AdvK : AdvK ;
+fun niin_sanotusti_AdvK : AdvK ;
+fun niisi_NK : NK ;
+fun niisitta'a'_VK : VK ;
+fun niisitys_NK : NK ;
+fun niisia'_VK : VK ;
+fun niiskauttaa_VK : VK ;
+fun niiskuttaa_VK : VK ;
+fun niiskutus_NK : NK ;
+fun niista'a'_VK : VK ;
+fun niitata_VK : VK ;
+fun niitinen_NK : NK ;
+fun niittaus_NK : NK ;
+fun niitti_NK : NK ;
+fun niitto_NK : NK ;
+fun niitty_NK : NK ;
+fun niitta'a'_VK : VK ;
+fun nikama_NK : NK ;
+fun nikkari_NK : NK ;
+fun nikkaroida_VK : VK ;
+fun nikkeli_NK : NK ;
+fun nikkelinen_NK : NK ;
+fun nikkelo'ida'_VK : VK ;
+fun nikkelo'inti_NK : NK ;
+fun niklata_VK : VK ;
+fun nikotella_VK : VK ;
+fun nikotiini_NK : NK ;
+fun nikotinisti_NK : NK ;
+fun nikottaa_VK : VK ;
+fun nikottelu_NK : NK ;
+fun nikotus_NK : NK ;
+fun nikotuttaa_VK : VK ;
+fun niksaa_VK : VK ;
+fun niksahdella_VK : VK ;
+fun niksahdus_NK : NK ;
+fun niksahtaa_VK : VK ;
+fun niksaus_NK : NK ;
+fun niksauttaa_VK : VK ;
+fun niksauttaja_NK : NK ;
+fun niksi_NK : NK ;
+fun niksua_VK : VK ;
+fun nila_NK : NK ;
+fun nilelle_AdvK : AdvK ;
+fun nilella'_AdvK : AdvK ;
+fun niljaantua_VK : VK ;
+fun niljainen_NK : NK ;
+fun niljakas_NK : NK ;
+fun niljakkuus_NK : NK ;
+fun nilkka_NK : NK ;
+fun nilkkain_NK : NK ;
+fun nilkkainen_NK : NK ;
+fun nilkki_NK : NK ;
+fun nilkku_NK : NK ;
+fun nilkkuri_NK : NK ;
+fun nilkutella_VK : VK ;
+fun nilkuttaa_VK : VK ;
+fun nilkutus_NK : NK ;
+fun nilvia'inen_NK : NK ;
+fun nimeke_NK : NK ;
+fun nimekkyys_NK : NK ;
+fun nimeka's_NK : NK ;
+fun nimellinen_AK : AK ;
+--+ fun nimellisesti_AdvK : AdvK ;
+fun nimenomaan_AdvK : AdvK ;
+--+ fun nimenomaisesti_AdvK : AdvK ;
+fun nimetto'myys_NK : NK ;
+fun nimeta'_VK : VK ;
+fun nimeto'n_NK : NK ;
+fun nimea'ma'to'n_NK : NK ;
+fun nimi_NK : NK ;
+fun nimike_NK : NK ;
+fun nimikkeisto'_NK : NK ;
+fun nimikko_NK : NK ;
+fun nimikoida_VK : VK ;
+fun nimikointi_NK : NK ;
+fun niminen_NK : NK ;
+fun nimisto'_NK : NK ;
+fun nimitella'_VK : VK ;
+fun nimittely_NK : NK ;
+fun nimitta'in_AdvK : AdvK ;
+fun nimitta'ja'_NK : NK ;
+fun nimitta'a'_VK : VK ;
+fun nimitys_NK : NK ;
+--? fun nimia'iset_NK : NK ;
+fun nimio'_NK : NK ;
+fun nimio'ida'_VK : VK ;
+fun nimmari_NK : NK ;
+fun nimppari_NK : NK ;
+fun niobi_NK : NK ;
+fun niobium_NK : NK ;
+fun nipin_napin_AdvK : AdvK ;
+fun nipistella'_VK : VK ;
+fun nipistely_NK : NK ;
+fun nipistin_NK : NK ;
+fun nipistys_NK : NK ;
+fun nipista'a'_VK : VK ;
+fun nipottaa_VK : VK ;
+fun nipottaja_NK : NK ;
+fun nipotus_NK : NK ;
+fun nippa_NK : NK ;
+fun nippa_nappa_AdvK : AdvK ;
+fun nippeli_NK : NK ;
+fun nippu_NK : NK ;
+fun nipsahdus_NK : NK ;
+fun nipsahtaa_VK : VK ;
+fun nipsaus_NK : NK ;
+fun nipsauttaa_VK : VK ;
+fun nipuittain_AdvK : AdvK ;
+fun nipukka_NK : NK ;
+fun niputtaa_VK : VK ;
+fun niputus_NK : NK ;
+fun nirhaista_VK : VK ;
+fun nirhama_NK : NK ;
+fun nirhata_VK : VK ;
+fun nirkko_NK : NK ;
+fun nirpalla_AdvK : AdvK ;
+fun nirpallaan_AdvK : AdvK ;
+fun nirpassa_AdvK : AdvK ;
+fun nirri_NK : NK ;
+fun nirskahtaa_VK : VK ;
+fun nirskua_VK : VK ;
+fun nirskunta_NK : NK ;
+fun nirskutella_VK : VK ;
+fun nirskuttaa_VK : VK ;
+fun nirskuttelu_NK : NK ;
+fun nirskutus_NK : NK ;
+fun nirso_AK : AK ;
+fun nirsoilla_VK : VK ;
+--+ fun nirsosti_AdvK : AdvK ;
+fun nirvana_NK : NK ;
+fun niska_NK : NK ;
+fun niskainen_NK : NK ;
+fun niskoitella_VK : VK ;
+fun niskoittelija_NK : NK ;
+fun niskoittelu_NK : NK ;
+fun niskuri_NK : NK ;
+fun niskuroida_VK : VK ;
+fun nisse_NK : NK ;
+fun nisti_NK : NK ;
+fun nisu_NK : NK ;
+fun nisa'_NK : NK ;
+fun nisa'ka's_NK : NK ;
+fun nitina'_NK : NK ;
+fun nitista'_VK : VK ;
+fun nitista'a'_VK : VK ;
+fun nitoa_VK : VK ;
+fun nitoja_NK : NK ;
+fun nitraatti_NK : NK ;
+fun nitriitti_NK : NK ;
+fun nitro_NK : NK ;
+fun nituri_NK : NK ;
+fun niuho_NK : NK ;
+fun niuhottaa_VK : VK ;
+fun niuhottaja_NK : NK ;
+fun niuhotus_NK : NK ;
+fun niukahdus_NK : NK ;
+fun niukahtaa_VK : VK ;
+fun niukalti_AdvK : AdvK ;
+fun niukasti_AdvK : AdvK ;
+fun niukentaa_VK : VK ;
+fun niukentua_VK : VK ;
+fun niuketa_VK : VK ;
+fun niukin_naukin_AdvK : AdvK ;
+fun niukka_NK : NK ;
+--+ fun niukkasanaisesti_AdvK : AdvK ;
+fun niukkuus_NK : NK ;
+fun niva_NK : NK ;
+fun nivaska_NK : NK ;
+fun nivel_NK : NK ;
+fun nivelika's_NK : NK ;
+fun nivelinen_NK : NK ;
+fun nivelisto'_NK : NK ;
+fun nivelka'rsa'inen_NK : NK ;
+fun niveltya'_VK : VK ;
+fun nivelta'a'_VK : VK ;
+fun nivoa_VK : VK ;
+fun nivoutua_VK : VK ;
+--? fun nivuset_NK : NK ;
+fun no_AdvK : AdvK ;
+fun nobelisti_NK : NK ;
+fun noduuli_NK : NK ;
+fun noeta_VK : VK ;
+fun noh_AdvK : AdvK ;
+fun noin_AdvK : AdvK ;
+fun noin_pa'in_AdvK : AdvK ;
+fun noisetti_NK : NK ;
+fun noita_NK : NK ;
+fun noitua_VK : VK ;
+fun noituus_NK : NK ;
+fun noja_NK : NK ;
+fun nojaan_AdvK : AdvK ;
+fun nojailla_VK : VK ;
+fun nojalla_AdvK : AdvK ;
+fun nojallaan_AdvK : AdvK ;
+fun nojalleen_AdvK : AdvK ;
+fun nojassa_AdvK : AdvK ;
+fun nojata_VK : VK ;
+fun nojautua_VK : VK ;
+fun nokakkain_AdvK : AdvK ;
+fun nokallinen_NK : NK ;
+fun nokare_NK : NK ;
+fun nokatusten_AdvK : AdvK ;
+fun nokeentua_VK : VK ;
+fun nokeutua_VK : VK ;
+fun noki_NK : NK ;
+fun nokikkain_AdvK : AdvK ;
+fun nokinen_NK : NK ;
+fun nokittaa_VK : VK ;
+fun nokittain_AdvK : AdvK ;
+fun nokitus_NK : NK ;
+fun nokitusten_AdvK : AdvK ;
+fun nokka_NK : NK ;
+fun nokkainen_NK : NK ;
+fun nokkaista_VK : VK ;
+fun nokkava_AK : AK ;
+--+ fun nokkavasti_AdvK : AdvK ;
+fun nokkavuus_NK : NK ;
+fun nokkela_AK : AK ;
+--+ fun nokkelasti_AdvK : AdvK ;
+fun nokkeluus_NK : NK ;
+fun nokkia_VK : VK ;
+fun nokkonen_NK : NK ;
+--? fun nokoset_NK : NK ;
+fun nolata_VK : VK ;
+fun nolla_NK : NK ;
+fun nollaantua_VK : VK ;
+fun nollakohta_NK : NK ;
+fun nollakoko_NK : NK ;
+fun nollas_NK : NK ;
+fun nollata_VK : VK ;
+fun nollaus_NK : NK ;
+fun nollautua_VK : VK ;
+fun nolo_AK : AK ;
+fun noloissaan_AdvK : AdvK ;
+--+ fun nolosti_AdvK : AdvK ;
+fun nolostua_VK : VK ;
+fun nolostuttaa_VK : VK ;
+fun nolottaa_VK : VK ;
+fun nolous_NK : NK ;
+fun nomadi_NK : NK ;
+fun nomenklatuura_NK : NK ;
+fun nomenklatuuri_NK : NK ;
+fun nominatiivi_NK : NK ;
+fun nomini_NK : NK ;
+fun nonfiguratiivinen_NK : NK ;
+fun non_food_NK : NK ;
+fun non_iron_NK : NK ;
+fun nonparelli_NK : NK ;
+fun nonstop_NK : NK ;
+fun non_woven_NK : NK ;
+fun nootti_NK : NK ;
+fun nopea_AK : AK ;
+--+ fun nopeasti_AdvK : AdvK ;
+fun nopeuksinen_NK : NK ;
+fun nopeus_NK : NK ;
+fun nopeuttaa_VK : VK ;
+fun nopeutua_VK : VK ;
+fun noppa_NK : NK ;
+fun nopsa_AK : AK ;
+fun nopsaan_AdvK : AdvK ;
+--+ fun nopsasti_AdvK : AdvK ;
+fun norahtaa_VK : VK ;
+fun nordisti_NK : NK ;
+fun nordistiikka_NK : NK ;
+fun norja_1_NK : NK ;
+fun norja_2_NK : NK ;
+fun norjatar_NK : NK ;
+fun norjentaa_VK : VK ;
+fun norjentua_VK : VK ;
+fun norjeta_VK : VK ;
+fun norjistaa_VK : VK ;
+fun norjistua_VK : VK ;
+fun norkko_NK : NK ;
+fun norkoilija_NK : NK ;
+fun norkoilla_VK : VK ;
+fun norkoilu_NK : NK ;
+fun normaali_AK : AK ;
+fun normaalikoko_NK : NK ;
+fun normaalistaa_VK : VK ;
+--+ fun normaalisti_AdvK : AdvK ;
+fun normaalistua_VK : VK ;
+fun normaalisuus_NK : NK ;
+fun normaalius_NK : NK ;
+fun normalisoida_VK : VK ;
+fun normalisointi_NK : NK ;
+fun normalisoitua_VK : VK ;
+fun normanni_NK : NK ;
+fun normatiivinen_NK : NK ;
+fun normatiivisuus_NK : NK ;
+fun normi_NK : NK ;
+fun normisto_NK : NK ;
+fun normittaa_VK : VK ;
+fun normitus_NK : NK ;
+fun noro_NK : NK ;
+fun norppa_NK : NK ;
+fun norri_NK : NK ;
+fun norssi_1_NK : NK ;
+fun norssi_2_NK : NK ;
+fun norsu_NK : NK ;
+fun norua_VK : VK ;
+fun nostaa_VK : VK ;
+fun nostaja_NK : NK ;
+fun nostalgia_NK : NK ;
+fun nostalginen_AK : AK ;
+--+ fun nostalgisesti_AdvK : AdvK ;
+fun nostalgisuus_NK : NK ;
+fun nostattaa_VK : VK ;
+fun nostatus_NK : NK ;
+fun noste_NK : NK ;
+fun nostella_VK : VK ;
+fun nostelu_NK : NK ;
+fun nostin_NK : NK ;
+fun nosto_NK : NK ;
+fun nosturi_NK : NK ;
+fun notaari_NK : NK ;
+fun notariaatti_NK : NK ;
+fun noteerata_VK : VK ;
+fun noteeraus_NK : NK ;
+fun notkahdella_VK : VK ;
+fun notkahdus_NK : NK ;
+fun notkahtaa_VK : VK ;
+fun notkauttaa_VK : VK ;
+fun notkea_AK : AK ;
+--+ fun notkeasti_AdvK : AdvK ;
+fun notkelma_NK : NK ;
+fun notkeus_NK : NK ;
+fun notkeuttaa_VK : VK ;
+fun notkeutua_VK : VK ;
+fun notkistaa_VK : VK ;
+fun notkistua_VK : VK ;
+fun notko_NK : NK ;
+fun notkua_VK : VK ;
+fun notkunta_NK : NK ;
+fun notkutella_VK : VK ;
+fun notkuttaa_VK : VK ;
+fun noudatella_VK : VK ;
+fun noudattaa_VK : VK ;
+--? fun nougat_NK : NK ;
+fun noukkia_VK : VK ;
+fun nousija_NK : NK ;
+fun nousta_VK : VK ;
+fun nousu_NK : NK ;
+fun nousuinen_NK : NK ;
+fun nousukas_NK : NK ;
+--+ fun nousukasmaisesti_AdvK : AdvK ;
+fun nousukasmaisuus_NK : NK ;
+fun noutaa_VK : VK ;
+fun noutaja_NK : NK ;
+fun nouto_NK : NK ;
+fun nova_NK : NK ;
+fun novelli_NK : NK ;
+fun novellisti_NK : NK ;
+fun novellistiikka_NK : NK ;
+fun novellistinen_NK : NK ;
+fun noviisi_NK : NK ;
+fun nudismi_NK : NK ;
+fun nudisti_NK : NK ;
+fun nugaa_NK : NK ;
+fun nugetti_NK : NK ;
+fun nuha_NK : NK ;
+fun nuhainen_NK : NK ;
+fun nuhde_NK : NK ;
+fun nuhdella_VK : VK ;
+fun nuhjaantua_VK : VK ;
+fun nuhjata_VK : VK ;
+fun nuhraantua_VK : VK ;
+fun nuhraantuneisuus_NK : NK ;
+fun nuhrata_VK : VK ;
+fun nuhrautua_VK : VK ;
+fun nuhruinen_NK : NK ;
+fun nuhteeton_NK : NK ;
+fun nuhteettomasti_AdvK : AdvK ;
+fun nuhteettomuus_NK : NK ;
+fun nuhtelu_NK : NK ;
+fun nuija_NK : NK ;
+fun nuijakas_NK : NK ;
+fun nuijia_VK : VK ;
+fun nuiva_AK : AK ;
+--+ fun nuivasti_AdvK : AdvK ;
+fun nuivuus_NK : NK ;
+fun nujakka_NK : NK ;
+fun nujakoida_VK : VK ;
+fun nujakointi_NK : NK ;
+fun nujerrus_NK : NK ;
+fun nujertaa_VK : VK ;
+fun nujertua_VK : VK ;
+fun nujuta_VK : VK ;
+fun nujuuttaa_VK : VK ;
+fun nukahdella_VK : VK ;
+fun nukahdus_NK : NK ;
+fun nukahtaa_VK : VK ;
+fun nukallinen_NK : NK ;
+fun nukata_VK : VK ;
+fun nukittaa_VK : VK ;
+fun nukitus_NK : NK ;
+fun nukka_NK : NK ;
+fun nukkaantua_VK : VK ;
+fun nukkaantumaton_NK : NK ;
+fun nukkainen_NK : NK ;
+fun nukkaus_NK : NK ;
+fun nukkautua_VK : VK ;
+fun nukkavieru_NK : NK ;
+fun nukke_NK : NK ;
+fun nukki_NK : NK ;
+fun nukkua_VK : VK ;
+fun nukkuja_NK : NK ;
+fun nukkumaanmenoaika_NK : NK ;
+fun nukkumatti_NK : NK ;
+fun nukleoni_NK : NK ;
+fun nukuksiin_AdvK : AdvK ;
+fun nukuksissa_AdvK : AdvK ;
+fun nukula_NK : NK ;
+fun nukute_NK : NK ;
+fun nukuttaa_VK : VK ;
+fun nukutus_NK : NK ;
+fun nulikka_NK : NK ;
+fun nuljahdella_VK : VK ;
+fun nuljahtaa_VK : VK ;
+fun nuljaska_NK : NK ;
+fun nulju_NK : NK ;
+fun nulkki_NK : NK ;
+fun numeerinen_NK : NK ;
+fun numeeristaa_VK : VK ;
+fun numeraali_NK : NK ;
+fun numero_NK : NK ;
+fun numeroida_VK : VK ;
+fun numeroinen_NK : NK ;
+fun numerointi_NK : NK ;
+fun numerollinen_AK : AK ;
+--+ fun numerollisesti_AdvK : AdvK ;
+fun numerologia_NK : NK ;
+fun numerus_NK : NK ;
+fun numismaatikko_NK : NK ;
+fun numismaattinen_NK : NK ;
+fun numismatiikka_NK : NK ;
+fun nummi_NK : NK ;
+fun nunna_NK : NK ;
+fun nuohooja_NK : NK ;
+fun nuohota_VK : VK ;
+fun nuohous_NK : NK ;
+fun nuokahdella_VK : VK ;
+fun nuokahtaa_VK : VK ;
+fun nuokkua_VK : VK ;
+fun nuokuksiin_AdvK : AdvK ;
+fun nuokuksissa_AdvK : AdvK ;
+fun nuolaista_VK : VK ;
+fun nuolaisu_NK : NK ;
+fun nuoleksia_VK : VK ;
+fun nuoleskelija_NK : NK ;
+fun nuoleskella_VK : VK ;
+fun nuoleskelu_NK : NK ;
+fun nuoli_NK : NK ;
+fun nuoliainen_NK : NK ;
+fun nuolijuuri_NK : NK ;
+fun nuolla_VK : VK ;
+fun nuolu_NK : NK ;
+fun nuora_NK : NK ;
+fun nuorekas_AK : AK ;
+--+ fun nuorekkaasti_AdvK : AdvK ;
+fun nuorekkuus_NK : NK ;
+fun nuoremmakseen_AdvK : AdvK ;
+fun nuoremmuuttaan_AdvK : AdvK ;
+fun nuorennus_NK : NK ;
+fun nuorentaa_VK : VK ;
+fun nuorentua_VK : VK ;
+fun nuoreta_VK : VK ;
+fun nuori_NK : NK ;
+fun nuorimmainen_NK : NK ;
+fun nuoriso_NK : NK ;
+fun nuorittaa_VK : VK ;
+fun nuoritus_NK : NK ;
+fun nuorruttaa_VK : VK ;
+fun nuorrutus_NK : NK ;
+fun nuortea_NK : NK ;
+fun nuortua_VK : VK ;
+fun nuorukainen_NK : NK ;
+fun nuoruudenaika_NK : NK ;
+fun nuoruus_NK : NK ;
+fun nuoruusaika_NK : NK ;
+fun nuoska_NK : NK ;
+fun nuoskainen_NK : NK ;
+fun nuotanveto_NK : NK ;
+fun nuotata_VK : VK ;
+fun nuotillinen_NK : NK ;
+fun nuotinnos_NK : NK ;
+fun nuotintaa_VK : VK ;
+fun nuotio_NK : NK ;
+fun nuotisto_NK : NK ;
+fun nuotittaa_VK : VK ;
+fun nuotitus_NK : NK ;
+fun nuotta_NK : NK ;
+fun nuottaus_NK : NK ;
+fun nuotti_NK : NK ;
+fun nupi_NK : NK ;
+fun nupo_NK : NK ;
+fun nuppi_NK : NK ;
+fun nuppu_NK : NK ;
+fun nuppuinen_NK : NK ;
+fun nupu_NK : NK ;
+fun nupukki_NK : NK ;
+fun nupula_NK : NK ;
+fun nupura_NK : NK ;
+fun nurea_NK : NK ;
+fun nureissaan_AdvK : AdvK ;
+fun nurin_AdvK : AdvK ;
+fun nurina_NK : NK ;
+fun nurinkurinen_AK : AK ;
+--+ fun nurinkurisesti_AdvK : AdvK ;
+fun nurin_pa'in_AdvK : AdvK ;
+fun nurista_VK : VK ;
+fun nurja_AK : AK ;
+fun nurjahdus_NK : NK ;
+fun nurjahtaa_VK : VK ;
+--+ fun nurjamielisesti_AdvK : AdvK ;
+--+ fun nurjasti_AdvK : AdvK ;
+fun nurjaton_NK : NK ;
+fun nurkakkain_AdvK : AdvK ;
+fun nurkata_VK : VK ;
+fun nurkikkain_AdvK : AdvK ;
+fun nurkilla_AdvK : AdvK ;
+fun nurkille_AdvK : AdvK ;
+fun nurkittain_AdvK : AdvK ;
+fun nurkka_NK : NK ;
+fun nurkkaaja_NK : NK ;
+fun nurkkainen_NK : NK ;
+fun nurkkakuntainen_NK : NK ;
+fun nurkkakuntaisuus_NK : NK ;
+fun nurkkaus_NK : NK ;
+fun nurkua_VK : VK ;
+fun nurmettaa_VK : VK ;
+fun nurmettua_VK : VK ;
+fun nurmi_NK : NK ;
+fun nurmikka_NK : NK ;
+fun nurmikko_NK : NK ;
+fun nurmikkoinen_NK : NK ;
+fun nurminen_NK : NK ;
+fun nussia_VK : VK ;
+fun nuti_NK : NK ;
+fun nutistaa_VK : VK ;
+fun nutria_NK : NK ;
+fun nuttu_NK : NK ;
+fun nuttura_NK : NK ;
+fun nutukas_NK : NK ;
+fun nuudeli_NK : NK ;
+fun nuuduksissa_AdvK : AdvK ;
+fun nuuduttaa_VK : VK ;
+fun nuuhkaista_VK : VK ;
+fun nuuhkia_VK : VK ;
+fun nuuka_AK : AK ;
+fun nuukahdella_VK : VK ;
+fun nuukahtaa_VK : VK ;
+fun nuukailla_VK : VK ;
+fun nuukailu_NK : NK ;
+--+ fun nuukasti_AdvK : AdvK ;
+fun nuukuus_NK : NK ;
+fun nuuska_NK : NK ;
+fun nuuskaista_VK : VK ;
+fun nuuskata_VK : VK ;
+fun nuuskia_VK : VK ;
+fun nuuskija_NK : NK ;
+fun nuutata_VK : VK ;
+fun nuuttaus_NK : NK ;
+fun nuutua_VK : VK ;
+fun nyansoida_VK : VK ;
+fun nyansointi_NK : NK ;
+fun nyanssi_NK : NK ;
+fun nyherta'a'_VK : VK ;
+fun nyhja'illa'_VK : VK ;
+fun nyhja'ista'_VK : VK ;
+fun nyhja'ta'_VK : VK ;
+fun nyhjo'tta'a'_VK : VK ;
+fun nyhra'ta'_VK : VK ;
+fun nyhta'ista'_VK : VK ;
+fun nyhta'isy_NK : NK ;
+fun nyhta'a'_VK : VK ;
+fun nyhvero'_NK : NK ;
+fun nyinta'_NK : NK ;
+fun nykerta'a'_VK : VK ;
+fun nykero'_NK : NK ;
+fun nykia'_VK : VK ;
+fun nykyaika_NK : NK ;
+--+ fun nykyaikaisesti_AdvK : AdvK ;
+fun nykyinen_NK : NK ;
+fun nykyiselleen_AdvK : AdvK ;
+fun nykyisella'a'n_AdvK : AdvK ;
+fun nykyisin_AdvK : AdvK ;
+fun nykyisyys_NK : NK ;
+fun nykyja'a'n_AdvK : AdvK ;
+fun nykytta'a'_VK : VK ;
+fun nykytys_NK : NK ;
+fun nykya'_AdvK : AdvK ;
+fun nykya'a'n_AdvK : AdvK ;
+fun nyka'ista'_VK : VK ;
+fun nyka'isy_NK : NK ;
+fun nyka'yksitta'in_AdvK : AdvK ;
+fun nyka'yksitta'inen_NK : NK ;
+fun nyka'ys_NK : NK ;
+fun nyljenta'_NK : NK ;
+fun nylkea'_VK : VK ;
+fun nylky_NK : NK ;
+fun nylkyri_NK : NK ;
+fun nylkytta'a'_VK : VK ;
+fun nylon_NK : NK ;
+fun nymfetti_NK : NK ;
+fun nymfi_NK : NK ;
+fun nymfomaani_NK : NK ;
+fun nymfomaaninen_NK : NK ;
+fun nymfomania_NK : NK ;
+fun nynnero'_NK : NK ;
+fun nynnia'_VK : VK ;
+fun nynny_NK : NK ;
+fun nynnyilla'_VK : VK ;
+fun nynnyily_NK : NK ;
+fun nypelo'ida'_VK : VK ;
+fun nypla'ta'_VK : VK ;
+fun nypla'ys_NK : NK ;
+fun nyppia'_VK : VK ;
+fun nyppy_NK : NK ;
+fun nyppyinen_NK : NK ;
+fun nyppyla'_NK : NK ;
+fun nyppyyntya'_VK : VK ;
+fun nyppa'ista'_VK : VK ;
+fun nypykka'_NK : NK ;
+fun nypyla'_NK : NK ;
+fun nypa'ta'_VK : VK ;
+fun nyreissa'a'n_AdvK : AdvK ;
+fun nyreys_NK : NK ;
+fun nyrea'_AK : AK ;
+--+ fun nyrea'sti_AdvK : AdvK ;
+fun nyrhia'_VK : VK ;
+fun nyrja'hdys_NK : NK ;
+fun nyrja'hdytta'a'_VK : VK ;
+fun nyrja'hta'a'_VK : VK ;
+fun nyrja'ytta'a'_VK : VK ;
+fun nyrkista'a'_VK : VK ;
+fun nyrkkeilija'_NK : NK ;
+fun nyrkkeilla'_VK : VK ;
+fun nyrkkeily_NK : NK ;
+fun nyrkki_NK : NK ;
+fun nyrkkitappelija_NK : NK ;
+fun nyrpeissa'a'n_AdvK : AdvK ;
+fun nyrpeys_NK : NK ;
+fun nyrpea'_AK : AK ;
+--+ fun nyrpea'sti_AdvK : AdvK ;
+fun nyrpistella'_VK : VK ;
+fun nyrpistya'_VK : VK ;
+fun nyrpista'a'_VK : VK ;
+fun nyssykka'_NK : NK ;
+fun nyssa'kka'_NK : NK ;
+fun nysterma'_NK : NK ;
+fun nysterma'inen_NK : NK ;
+fun nysty_NK : NK ;
+fun nystyra'_NK : NK ;
+fun nystyra'inen_NK : NK ;
+fun nysa'_NK : NK ;
+fun nyt_AdvK : AdvK ;
+fun nytkia'_VK : VK ;
+fun nytkytta'a'_VK : VK ;
+fun nytkytys_NK : NK ;
+fun nytkya'_VK : VK ;
+fun nytka'hdella'_VK : VK ;
+fun nytka'hdys_NK : NK ;
+fun nytka'hta'a'_VK : VK ;
+fun nytka'ys_NK : NK ;
+fun nyttemmin_AdvK : AdvK ;
+fun nytten_AdvK : AdvK ;
+fun nyyhke_NK : NK ;
+fun nyyhkia'_VK : VK ;
+fun nyyhky_NK : NK ;
+fun nyyhkytta'a'_VK : VK ;
+fun nyyhkytys_NK : NK ;
+fun nyyhka'ista'_VK : VK ;
+fun nyyhka'isy_NK : NK ;
+fun nyyhka'ys_NK : NK ;
+fun nyyka'hta'a'_VK : VK ;
+fun nyysia'_VK : VK ;
+fun nyytti_NK : NK ;
+--? fun nyytta'rit_NK : NK ;
+fun nyo'kkia'_VK : VK ;
+fun nyo'kka'illa'_VK : VK ;
+fun nyo'kka'ys_NK : NK ;
+fun nyo'kytella'_VK : VK ;
+fun nyo'kytta'a'_VK : VK ;
+fun nyo'ka'hdella'_VK : VK ;
+fun nyo'ka'hdys_NK : NK ;
+fun nyo'ka'hta'a'_VK : VK ;
+fun nyo'ka'ta'_VK : VK ;
+fun nyo'ka'ytta'a'_VK : VK ;
+fun nyo'ri_NK : NK ;
+fun nyo'ritta'a'_VK : VK ;
+fun nyo'ritys_NK : NK ;
+fun na'emma'_AdvK : AdvK ;
+fun na'enna'inen_AK : AK ;
+--+ fun na'enna'isesti_AdvK : AdvK ;
+fun na'es_AdvK : AdvK ;
+fun na'et_AdvK : AdvK ;
+fun na'hden_AdvK : AdvK ;
+fun na'hda'_VK : VK ;
+fun na'hda'kseen_AdvK : AdvK ;
+fun na'hka'a's_AdvK : AdvK ;
+fun na'hta'viin_AdvK : AdvK ;
+fun na'hta'ville_AdvK : AdvK ;
+fun na'hta'villa'_AdvK : AdvK ;
+fun na'hta'vissa'_AdvK : AdvK ;
+fun na'hta'vyys_NK : NK ;
+fun na'hta'va'_AK : AK ;
+--+ fun na'hta'va'sti_AdvK : AdvK ;
+fun na'in_AdvK : AdvK ;
+fun na'ivettya'_VK : VK ;
+fun na'ivetta'a'_VK : VK ;
+fun na'ivetys_NK : NK ;
+fun na'kemiin_AdvK : AdvK ;
+fun na'kemyksellinen_NK : NK ;
+fun na'kemyksinen_NK : NK ;
+fun na'kemys_NK : NK ;
+fun na'kema'_NK : NK ;
+fun na'kema'to'n_NK : NK ;
+fun na'keva'_NK : NK ;
+fun na'kija'_NK : NK ;
+--? fun na'kimet_NK : NK ;
+fun na'kinkuori_NK : NK ;
+fun na'kki_NK : NK ;
+fun na'kka'ri_NK : NK ;
+fun na'ky_NK : NK ;
+fun na'kyma'_NK : NK ;
+fun na'kyma'tto'miin_AdvK : AdvK ;
+fun na'kyma'tto'missa'_AdvK : AdvK ;
+fun na'kyma'tto'myys_NK : NK ;
+fun na'kyma'tto'ma'sti_AdvK : AdvK ;
+fun na'kyma'to'n_NK : NK ;
+fun na'kyviin_AdvK : AdvK ;
+fun na'kyville_AdvK : AdvK ;
+fun na'kyvilla'_AdvK : AdvK ;
+fun na'kyvilta'_AdvK : AdvK ;
+fun na'kyvissa'_AdvK : AdvK ;
+fun na'kyvista'_AdvK : AdvK ;
+fun na'kyvyys_NK : NK ;
+fun na'kyva'_AK : AK ;
+--+ fun na'kyva'sti_AdvK : AdvK ;
+fun na'kya'_VK : VK ;
+--? fun na'ka'ra'iset_NK : NK ;
+fun na'ko'_NK : NK ;
+fun na'ko'alaton_NK : NK ;
+fun na'ko'alattomuus_NK : NK ;
+fun na'ko'inen_NK : NK ;
+fun na'ko'ja'a'n_AdvK : AdvK ;
+fun na'ko'kohta_NK : NK ;
+fun na'ko'sa'lle_AdvK : AdvK ;
+fun na'ko'sa'lla'_AdvK : AdvK ;
+fun na'ko'sa'lta'_AdvK : AdvK ;
+fun na'lissa'a'n_AdvK : AdvK ;
+fun na'lkiinnytta'a'_VK : VK ;
+fun na'lkiintya'_VK : VK ;
+fun na'lka'_NK : NK ;
+fun na'lka'inen_NK : NK ;
+fun na'lvia'_VK : VK ;
+fun na'lva'ista'_VK : VK ;
+fun na'lva'isy_NK : NK ;
+fun na'la'tta'a'_VK : VK ;
+fun na'nni_NK : NK ;
+fun na'pelo'ida'_VK : VK ;
+fun na'pelo'inti_NK : NK ;
+fun na'perrella'_VK : VK ;
+fun na'perrys_NK : NK ;
+fun na'pertely_NK : NK ;
+fun na'perta'a'_VK : VK ;
+fun na'pistelija'_NK : NK ;
+fun na'pistella'_VK : VK ;
+fun na'pistely_NK : NK ;
+fun na'pistys_NK : NK ;
+fun na'pista'a'_VK : VK ;
+fun na'pla'ta'_VK : VK ;
+fun na'ppi_NK : NK ;
+fun na'ppy_NK : NK ;
+fun na'ppyinen_NK : NK ;
+fun na'ppyla'_NK : NK ;
+fun na'ppyla'inen_NK : NK ;
+fun na'ppa'ilija'_NK : NK ;
+fun na'ppa'illa'_VK : VK ;
+fun na'ppa'ily_NK : NK ;
+fun na'ppa'imisto'_NK : NK ;
+fun na'ppa'in_NK : NK ;
+fun na'ppa'ryys_NK : NK ;
+fun na'ppa'ra'_AK : AK ;
+--+ fun na'ppa'ra'sti_AdvK : AdvK ;
+fun na'ppa'ys_NK : NK ;
+fun na'pra'illa'_VK : VK ;
+fun na'pra'ta'_VK : VK ;
+fun na'psytta'a'_VK : VK ;
+fun na'psa'_AK : AK ;
+fun na'psa'kka'_NK : NK ;
+fun na'psa'ka'sti_AdvK : AdvK ;
+--+ fun na'psa'sti_AdvK : AdvK ;
+fun na'psa'ys_NK : NK ;
+fun na'psa'ytta'a'_VK : VK ;
+fun na'psa'ytys_NK : NK ;
+fun na'py_NK : NK ;
+fun na'pa'kka'_NK : NK ;
+fun na'pa'ka'sti_AdvK : AdvK ;
+fun na'pa'ta'_VK : VK ;
+fun na'pa'ys_NK : NK ;
+fun na'pa'ytella'_VK : VK ;
+fun na'pa'ytta'a'_VK : VK ;
+fun na'pa'ytys_NK : NK ;
+fun na're_NK : NK ;
+fun na'reikko'_NK : NK ;
+fun na'rhi_NK : NK ;
+fun na'rka'stys_NK : NK ;
+fun na'rka'stytta'a'_VK : VK ;
+fun na'rka'stya'_VK : VK ;
+fun na'rva'na'_NK : NK ;
+fun na'ra'_NK : NK ;
+fun na'ra'stys_NK : NK ;
+fun na'ra'sta'a'_VK : VK ;
+fun na'sia'_NK : NK ;
+fun na'tisti_AdvK : AdvK ;
+fun na'tkelma'_NK : NK ;
+fun na'tti_NK : NK ;
+fun na'veri_NK : NK ;
+fun na'verrin_NK : NK ;
+fun na'verta'a'_VK : VK ;
+fun na'ykkia'_VK : VK ;
+fun na'ykka'ista'_VK : VK ;
+fun na'yka'ta'_VK : VK ;
+fun na'yte_NK : NK ;
+fun na'ytella'_VK : VK ;
+fun na'ytelma'_NK : NK ;
+fun na'ytelma'llinen_NK : NK ;
+fun na'ytille_AdvK : AdvK ;
+fun na'ytilla'_AdvK : AdvK ;
+fun na'ytin_NK : NK ;
+fun na'ytteille_AdvK : AdvK ;
+fun na'ytteilla'_AdvK : AdvK ;
+fun na'yttelija'_NK : NK ;
+fun na'yttelija'ta'r_NK : NK ;
+fun na'yttely_NK : NK ;
+fun na'ytta'ma'_NK : NK ;
+fun na'ytta'mo'_NK : NK ;
+fun na'ytta'mo'llinen_NK : NK ;
+fun na'ytta'va'_NK : NK ;
+fun na'ytta'ytya'_VK : VK ;
+fun na'ytta'a'_VK : VK ;
+fun na'ytto'_NK : NK ;
+fun na'ytto'inen_NK : NK ;
+fun na'yta'nto'_NK : NK ;
+fun na'yto'ksinen_NK : NK ;
+fun na'yto's_NK : NK ;
+fun na'a'mma'_AdvK : AdvK ;
+fun na'a'nnyksiin_AdvK : AdvK ;
+fun na'a'nnyksissa'_AdvK : AdvK ;
+fun na'a'nnytta'a'_VK : VK ;
+fun na'a'ntymys_NK : NK ;
+fun na'a'ntya'_VK : VK ;
+fun na'a's_AdvK : AdvK ;
+fun na'a't_AdvK : AdvK ;
+fun na'a'tsen_AdvK : AdvK ;
+fun na'a'ta'_NK : NK ;
+fun no'f_AdvK : AdvK ;
+fun no'ko'tta'a'_VK : VK ;
+fun no'rtti_NK : NK ;
+fun no'sso'_NK : NK ;
+fun no'yhta'_NK : NK ;
+fun no'yhta'inen_NK : NK ;
+fun no'yhta'ytya'_VK : VK ;
+fun no'yhta'a'ntya'_VK : VK ;
+fun no'yristella'_VK : VK ;
+fun no'yristely_NK : NK ;
+fun no'yrrytta'a'_VK : VK ;
+fun no'yrtymys_NK : NK ;
+fun no'yrtya'_VK : VK ;
+fun no'yryys_NK : NK ;
+fun no'yryytta'a'_VK : VK ;
+fun no'yryytys_NK : NK ;
+fun no'yra'_AK : AK ;
+--+ fun no'yra'sti_AdvK : AdvK ;
+fun oas_NK : NK ;
+fun obduktio_NK : NK ;
+fun obeliski_NK : NK ;
+fun objekti_NK : NK ;
+fun objektiivi_NK : NK ;
+fun objektiivinen_AK : AK ;
+--+ fun objektiivisesti_AdvK : AdvK ;
+fun objektiivisuus_NK : NK ;
+fun obligaatio_NK : NK ;
+fun obligatorinen_NK : NK ;
+fun oboe_NK : NK ;
+fun oboisti_NK : NK ;
+fun observatorio_NK : NK ;
+fun observoida_VK : VK ;
+fun observoija_NK : NK ;
+fun observointi_NK : NK ;
+fun obstruktio_NK : NK ;
+fun odelma_NK : NK ;
+fun odelmikko_NK : NK ;
+fun odontologi_NK : NK ;
+fun odontologia_NK : NK ;
+fun odontologinen_NK : NK ;
+fun odotella_VK : VK ;
+fun odotetusti_AdvK : AdvK ;
+fun odottaa_VK : VK ;
+fun odottamaton_NK : NK ;
+fun odottamatta_AdvK : AdvK ;
+fun odottamattomasti_AdvK : AdvK ;
+fun odotus_NK : NK ;
+fun odotusaika_NK : NK ;
+fun odotuttaa_VK : VK ;
+fun odysseia_NK : NK ;
+fun offensiivi_NK : NK ;
+fun offensiivinen_NK : NK ;
+fun offset_NK : NK ;
+fun oh_AdvK : AdvK ;
+fun ohari_NK : NK ;
+fun ohdake_NK : NK ;
+fun ohdakkeinen_NK : NK ;
+fun oheen_AdvK : AdvK ;
+fun oheinen_NK : NK ;
+fun oheistaa_VK : VK ;
+fun ohella_AdvK : AdvK ;
+fun ohenne_NK : NK ;
+fun ohennus_NK : NK ;
+fun ohentaa_VK : VK ;
+fun ohenteinen_NK : NK ;
+fun ohentua_VK : VK ;
+fun ohentuma_NK : NK ;
+fun ohessa_AdvK : AdvK ;
+fun ohesta_AdvK : AdvK ;
+fun oheta_VK : VK ;
+fun ohhoh_AdvK : AdvK ;
+fun ohhoijaa_AdvK : AdvK ;
+fun ohi_AdvK : AdvK ;
+fun ohikiita'va'_NK : NK ;
+--+ fun ohimeneva'sti_AdvK : AdvK ;
+fun ohimennen_AdvK : AdvK ;
+fun ohimo_NK : NK ;
+fun ohitella_VK : VK ;
+fun ohitse_AdvK : AdvK ;
+fun ohittaa_VK : VK ;
+fun ohittelu_NK : NK ;
+fun ohittua_VK : VK ;
+fun ohitus_NK : NK ;
+fun ohja_NK : NK ;
+fun ohjaaja_NK : NK ;
+fun ohjaamo_NK : NK ;
+fun ohjailla_VK : VK ;
+fun ohjailu_NK : NK ;
+fun ohjain_NK : NK ;
+fun ohjanta_NK : NK ;
+fun ohjas_NK : NK ;
+fun ohjastaa_VK : VK ;
+fun ohjastaja_NK : NK ;
+fun ohjastus_NK : NK ;
+fun ohjata_VK : VK ;
+fun ohjattava_NK : NK ;
+fun ohjattavuus_NK : NK ;
+fun ohjauksinen_NK : NK ;
+fun ohjaus_NK : NK ;
+fun ohjautua_VK : VK ;
+fun ohjautuvuus_NK : NK ;
+fun ohje_NK : NK ;
+fun ohjeellinen_NK : NK ;
+fun ohjeistaa_VK : VK ;
+fun ohjeisto_NK : NK ;
+fun ohjeistus_NK : NK ;
+fun ohjelma_NK : NK ;
+fun ohjelmainen_NK : NK ;
+fun ohjelmallinen_AK : AK ;
+--+ fun ohjelmallisesti_AdvK : AdvK ;
+fun ohjelmallisuus_NK : NK ;
+fun ohjelmisto_NK : NK ;
+fun ohjelmoida_VK : VK ;
+fun ohjelmoija_NK : NK ;
+fun ohjelmointi_NK : NK ;
+fun ohjus_NK : NK ;
+fun ohkainen_NK : NK ;
+fun ohmi_NK : NK ;
+fun oho_AdvK : AdvK ;
+fun ohoh_AdvK : AdvK ;
+fun ohoi_AdvK : AdvK ;
+fun ohra_NK : NK ;
+fun ohrainen_AK : AK ;
+--+ fun ohraisesti_AdvK : AdvK ;
+fun ohrana_NK : NK ;
+fun ohuelti_AdvK : AdvK ;
+fun ohuesti_AdvK : AdvK ;
+fun ohuinen_NK : NK ;
+fun ohukainen_NK : NK ;
+fun ohukas_NK : NK ;
+fun ohut_NK : NK ;
+fun ohuus_NK : NK ;
+fun oi_AdvK : AdvK ;
+fun oidipaalinen_NK : NK ;
+fun oieta_VK : VK ;
+fun oijoi_AdvK : AdvK ;
+fun oikaista_VK : VK ;
+fun oikaisu_NK : NK ;
+fun oikea_AK : AK ;
+--+ fun oikea_aikaisesti_AdvK : AdvK ;
+fun oikeaan_AdvK : AdvK ;
+fun oikealla_AdvK : AdvK ;
+fun oikealle_AdvK : AdvK ;
+fun oikealta_AdvK : AdvK ;
+--+ fun oikeamielisesti_AdvK : AdvK ;
+fun oikeammin_AdvK : AdvK ;
+fun oikeanlainen_NK : NK ;
+--+ fun oikeaoppisesti_AdvK : AdvK ;
+fun oikeassa_AdvK : AdvK ;
+fun oikeastaan_AdvK : AdvK ;
+--+ fun oikeasti_AdvK : AdvK ;
+fun oikeellinen_NK : NK ;
+fun oikeellisuus_NK : NK ;
+fun oikein_AdvK : AdvK ;
+fun oikein_pa'in_AdvK : AdvK ;
+fun oikeisto_NK : NK ;
+fun oikeistolaistua_VK : VK ;
+fun oikeistolaisuus_NK : NK ;
+fun oikeudellinen_AK : AK ;
+--+ fun oikeudellisesti_AdvK : AdvK ;
+fun oikeudeton_NK : NK ;
+fun oikeudettomasti_AdvK : AdvK ;
+fun oikeus_NK : NK ;
+fun oikeutettu_NK : NK ;
+fun oikeutetusti_AdvK : AdvK ;
+fun oikeuttaa_VK : VK ;
+fun oikeutus_NK : NK ;
+fun oikku_NK : NK ;
+fun oikkuilija_NK : NK ;
+fun oikkuilla_VK : VK ;
+fun oikkuilu_NK : NK ;
+fun oikoa_VK : VK ;
+fun oikoilla_VK : VK ;
+fun oikoinen_NK : NK ;
+fun oikoisenaan_AdvK : AdvK ;
+fun oikopa'a'ta'_AdvK : AdvK ;
+fun oikukas_AK : AK ;
+--+ fun oikukkaasti_AdvK : AdvK ;
+fun oikukkuus_NK : NK ;
+fun oikullinen_AK : AK ;
+--+ fun oikullisesti_AdvK : AdvK ;
+fun oikullisuus_NK : NK ;
+fun oikutella_VK : VK ;
+fun oikuttelija_NK : NK ;
+fun oikuttelu_NK : NK ;
+fun oinas_NK : NK ;
+fun oionta_NK : NK ;
+fun oire_NK : NK ;
+fun oireellinen_NK : NK ;
+fun oireeton_NK : NK ;
+fun oirehtia_VK : VK ;
+fun oireilla_VK : VK ;
+fun oireilu_NK : NK ;
+fun oireinen_NK : NK ;
+fun oireisto_NK : NK ;
+fun oitis_AdvK : AdvK ;
+fun oiva_NK : NK ;
+fun oivallinen_AK : AK ;
+--+ fun oivallisesti_AdvK : AdvK ;
+fun oivallisuus_NK : NK ;
+fun oivallus_NK : NK ;
+fun oivaltaa_VK : VK ;
+fun oja_NK : NK ;
+fun oja_aura_NK : NK ;
+fun ojasto_NK : NK ;
+fun ojennella_VK : VK ;
+fun ojennus_NK : NK ;
+fun ojentaa_VK : VK ;
+fun ojentaja_NK : NK ;
+fun ojentautua_VK : VK ;
+fun ojentua_VK : VK ;
+fun ojikko_NK : NK ;
+fun ojittaa_VK : VK ;
+fun ojitus_NK : NK ;
+fun ojolla_AdvK : AdvK ;
+fun ojollaan_AdvK : AdvK ;
+fun ojolle_AdvK : AdvK ;
+fun ojolleen_AdvK : AdvK ;
+fun ojoon_AdvK : AdvK ;
+fun ojossa_AdvK : AdvK ;
+fun ojuke_NK : NK ;
+fun OK_AdvK : AdvK ;
+fun oka_NK : NK ;
+fun okainen_NK : NK ;
+fun okariina_NK : NK ;
+fun okei_AdvK : AdvK ;
+fun okkultismi_NK : NK ;
+fun okkultisti_NK : NK ;
+fun okkulttinen_NK : NK ;
+fun okra_1_NK : NK ;
+fun okra_2_NK : NK ;
+fun oksa_NK : NK ;
+fun oksainen_NK : NK ;
+fun oksaisuus_NK : NK ;
+fun oksakas_NK : NK ;
+fun oksastaa_VK : VK ;
+fun oksasto_NK : NK ;
+fun oksennella_VK : VK ;
+fun oksennus_NK : NK ;
+fun oksennuttaa_VK : VK ;
+fun oksentaa_VK : VK ;
+fun oksentelu_NK : NK ;
+fun oksete_NK : NK ;
+fun oksettaa_VK : VK ;
+fun oksetus_NK : NK ;
+fun oksia_VK : VK ;
+fun oksidi_NK : NK ;
+fun oksidoida_VK : VK ;
+fun oksidoitua_VK : VK ;
+fun oksinta_NK : NK ;
+fun oksisto_NK : NK ;
+fun oktaani_NK : NK ;
+fun oktaaninen_NK : NK ;
+fun oktaavi_NK : NK ;
+fun oktaedri_NK : NK ;
+fun oktetti_NK : NK ;
+fun oktetto_NK : NK ;
+fun okulaari_NK : NK ;
+fun olake_NK : NK ;
+fun olakkain_AdvK : AdvK ;
+fun olas_NK : NK ;
+fun oleanteri_NK : NK ;
+fun oleellinen_NK : NK ;
+fun oleilla_VK : VK ;
+fun oleilu_NK : NK ;
+fun oleksia_VK : VK ;
+fun olematon_NK : NK ;
+fun olemattomuus_NK : NK ;
+fun olemus_NK : NK ;
+fun olennainen_AK : AK ;
+--+ fun olennaisesti_AdvK : AdvK ;
+fun olennaisuus_NK : NK ;
+fun olento_NK : NK ;
+fun oleskella_VK : VK ;
+fun oleskelu_NK : NK ;
+fun oletettavasti_AdvK : AdvK ;
+fun olettaa_VK : VK ;
+fun olettamus_NK : NK ;
+fun oletus_NK : NK ;
+fun oleva_NK : NK ;
+fun olevainen_NK : NK ;
+fun olevaisuus_NK : NK ;
+fun olevinaan_AdvK : AdvK ;
+fun oligarkia_NK : NK ;
+fun oligarkkinen_NK : NK ;
+fun oligopoli_NK : NK ;
+fun oliivi_NK : NK ;
+fun olija_NK : NK ;
+fun olio_NK : NK ;
+fun olka_NK : NK ;
+fun olkaimellinen_NK : NK ;
+fun olkaiminen_NK : NK ;
+fun olkain_NK : NK ;
+fun olki_NK : NK ;
+fun olkinen_NK : NK ;
+fun olla_VK : VK ;
+fun ollenkaan_AdvK : AdvK ;
+fun olletikaan_AdvK : AdvK ;
+fun olletikin_AdvK : AdvK ;
+fun olmi_NK : NK ;
+fun olo_NK : NK ;
+fun oloaika_NK : NK ;
+fun oloinen_NK : NK ;
+--? fun oltavat_NK : NK ;
+fun oltermanni_NK : NK ;
+fun olut_NK : NK ;
+fun olvi_NK : NK ;
+fun olympiadi_NK : NK ;
+--? fun olympialaiset_NK : NK ;
+fun olympolainen_NK : NK ;
+fun oma_NK : NK ;
+--+ fun oma_aloitteisesti_AdvK : AdvK ;
+fun oma_aloitteisuus_NK : NK ;
+--+ fun omaehtoisesti_AdvK : AdvK ;
+fun omaharkintainen_NK : NK ;
+fun omahyva'inen_AK : AK ;
+--+ fun omahyva'isesti_AdvK : AdvK ;
+fun omahyva'isyys_NK : NK ;
+fun omainen_AK : AK ;
+fun omainen_AK : AK ;
+--+ fun omaisesti_AdvK : AdvK ;
+fun omaisuus_NK : NK ;
+fun omaisuus_NK : NK ;
+--+ fun omakohtaisesti_AdvK : AdvK ;
+fun omaksua_VK : VK ;
+--+ fun omaka'tisesti_AdvK : AdvK ;
+--+ fun omalaatuisesti_AdvK : AdvK ;
+fun omaleimaisuus_NK : NK ;
+fun omanlainen_NK : NK ;
+--+ fun omapera'isesti_AdvK : AdvK ;
+--+ fun omapa'isesti_AdvK : AdvK ;
+fun omapa'isyys_NK : NK ;
+fun omata_VK : VK ;
+--+ fun omatoimisesti_AdvK : AdvK ;
+fun omatoimisuus_NK : NK ;
+fun omavaloinen_NK : NK ;
+--+ fun omavaltaisesti_AdvK : AdvK ;
+fun omavaraistaa_VK : VK ;
+fun omavaraistua_VK : VK ;
+--+ fun omavastuisesti_AdvK : AdvK ;
+fun omavastuuaika_NK : NK ;
+fun omeletti_NK : NK ;
+fun omena_NK : NK ;
+fun ometta_NK : NK ;
+fun omia_VK : VK ;
+fun omiaan_AdvK : AdvK ;
+fun omiansa_AdvK : AdvK ;
+fun omillaan_AdvK : AdvK ;
+fun omilleen_AdvK : AdvK ;
+fun ominainen_AK : AK ;
+--+ fun ominaisesti_AdvK : AdvK ;
+fun ominaisuus_NK : NK ;
+fun omintakeinen_AK : AK ;
+--+ fun omintakeisesti_AdvK : AdvK ;
+fun omintakeisuus_NK : NK ;
+fun omistaa_VK : VK ;
+fun omistaja_NK : NK ;
+fun omistautua_VK : VK ;
+fun omiste_NK : NK ;
+fun omisteinen_NK : NK ;
+fun omistus_NK : NK ;
+--+ fun omistushaluisesti_AdvK : AdvK ;
+fun omistusliitteellinen_NK : NK ;
+fun omistusliitteeto'n_NK : NK ;
+fun omistusliitteinen_NK : NK ;
+fun omituinen_AK : AK ;
+--+ fun omituisesti_AdvK : AdvK ;
+fun omituisuus_NK : NK ;
+fun ommel_NK : NK ;
+fun ommella_VK : VK ;
+fun omnipotenssi_NK : NK ;
+fun ompele_NK : NK ;
+fun ompeleinen_NK : NK ;
+fun ompelija_NK : NK ;
+fun ompelimo_NK : NK ;
+fun ompelu_NK : NK ;
+fun ompelus_NK : NK ;
+fun ompeluttaa_VK : VK ;
+fun omppu_NK : NK ;
+fun onania_NK : NK ;
+fun onanoida_VK : VK ;
+fun ongelma_NK : NK ;
+fun ongelmainen_NK : NK ;
+fun ongelmallinen_AK : AK ;
+--+ fun ongelmallisesti_AdvK : AdvK ;
+fun ongelmallisuus_NK : NK ;
+fun ongelmaton_NK : NK ;
+fun ongelmisto_NK : NK ;
+fun onginta_NK : NK ;
+fun onkalo_NK : NK ;
+fun onki_NK : NK ;
+fun onkia_VK : VK ;
+fun onkija_NK : NK ;
+fun onkogeeninen_NK : NK ;
+fun onkogeenisuus_NK : NK ;
+fun onkologia_NK : NK ;
+fun onnahdella_VK : VK ;
+fun onnahdus_NK : NK ;
+fun onnahtaa_VK : VK ;
+fun onnahtelu_NK : NK ;
+fun onnekas_AK : AK ;
+--+ fun onnekkaasti_AdvK : AdvK ;
+fun onnekkuus_NK : NK ;
+fun onneksi_AdvK : AdvK ;
+fun onnela_NK : NK ;
+fun onnellinen_AK : AK ;
+--+ fun onnellisesti_AdvK : AdvK ;
+fun onnellistaa_VK : VK ;
+fun onnellistuttaa_VK : VK ;
+fun onnellisuus_NK : NK ;
+fun onnenaika_NK : NK ;
+fun onnenkantamoinen_NK : NK ;
+fun onnenpotkaus_NK : NK ;
+fun onnenpotku_NK : NK ;
+fun onnentoivottaja_NK : NK ;
+fun onnestaa_VK : VK ;
+fun onnetar_NK : NK ;
+fun onneton_NK : NK ;
+fun onnettomasti_AdvK : AdvK ;
+fun onnettomuus_NK : NK ;
+fun onni_NK : NK ;
+fun onnikka_NK : NK ;
+fun onninen_NK : NK ;
+fun onnistaa_VK : VK ;
+fun onnistua_VK : VK ;
+--+ fun onnistuneesti_AdvK : AdvK ;
+fun onnistuneisuus_NK : NK ;
+fun onnistunut_AK : AK ;
+fun onnitella_VK : VK ;
+fun onnittelija_NK : NK ;
+fun onnittelu_NK : NK ;
+fun onomastiikka_NK : NK ;
+fun onomatopoeettinen_NK : NK ;
+fun onomatopoieettinen_NK : NK ;
+fun ontelo_NK : NK ;
+fun onteloida_VK : VK ;
+fun onteloinen_NK : NK ;
+fun onteloitua_VK : VK ;
+fun ontosti_AdvK : AdvK ;
+fun ontto_NK : NK ;
+fun onttous_NK : NK ;
+fun ontua_VK : VK ;
+fun onyksi_NK : NK ;
+fun oodi_NK : NK ;
+fun oomega_NK : NK ;
+fun oopiumi_NK : NK ;
+fun ooppera_NK : NK ;
+fun ootrata_VK : VK ;
+fun ootraus_NK : NK ;
+fun opaakki_NK : NK ;
+fun opaali_NK : NK ;
+fun opalisoida_VK : VK ;
+fun opas_NK : NK ;
+fun opastaa_VK : VK ;
+fun opastaja_NK : NK ;
+fun opaste_NK : NK ;
+fun opastin_NK : NK ;
+fun opastus_NK : NK ;
+fun ope_NK : NK ;
+fun open_house_NK : NK ;
+fun operaatio_NK : NK ;
+fun operaattori_NK : NK ;
+fun operatiivinen_AK : AK ;
+--+ fun operatiivisesti_AdvK : AdvK ;
+fun operationaalinen_NK : NK ;
+fun operato'o'ri_NK : NK ;
+fun operetti_NK : NK ;
+fun operoida_VK : VK ;
+fun operoija_NK : NK ;
+fun operointi_NK : NK ;
+fun opetella_VK : VK ;
+fun opettaa_VK : VK ;
+fun opettaja_NK : NK ;
+fun opettajainen_NK : NK ;
+fun opettajatar_NK : NK ;
+fun opettajisto_NK : NK ;
+fun opettava_AK : AK ;
+fun opettavainen_AK : AK ;
+--+ fun opettavaisesti_AdvK : AdvK ;
+fun opettavaisuus_NK : NK ;
+--+ fun opettavasti_AdvK : AdvK ;
+fun opettavuus_NK : NK ;
+fun opettelu_NK : NK ;
+fun opetuksellinen_NK : NK ;
+fun opetus_NK : NK ;
+fun opiaatti_NK : NK ;
+fun opillinen_AK : AK ;
+--+ fun opillisesti_AdvK : AdvK ;
+--? fun opinnot_NK : NK ;
+fun opiskelija_NK : NK ;
+fun opiskella_VK : VK ;
+fun opiskelu_NK : NK ;
+fun opiskeluaika_NK : NK ;
+fun opisto_NK : NK ;
+fun opo_NK : NK ;
+fun opossumi_NK : NK ;
+fun oppi_NK : NK ;
+fun oppia_VK : VK ;
+fun oppiaika_NK : NK ;
+fun oppilas_NK : NK ;
+fun oppimaton_NK : NK ;
+--+ fun oppineesti_AdvK : AdvK ;
+fun oppineisto_NK : NK ;
+fun oppineisuus_NK : NK ;
+fun oppinen_NK : NK ;
+fun oppinut_AK : AK ;
+fun oppisopimusaika_NK : NK ;
+fun oppisuus_NK : NK ;
+fun oppivainen_NK : NK ;
+fun opponentti_NK : NK ;
+fun opponoida_VK : VK ;
+fun opponointi_NK : NK ;
+fun opportunismi_NK : NK ;
+fun opportunisti_NK : NK ;
+fun opportunistinen_NK : NK ;
+fun oppositio_NK : NK ;
+fun optiikka_NK : NK ;
+fun optikko_NK : NK ;
+fun optimaalinen_NK : NK ;
+fun optimi_NK : NK ;
+fun optimismi_NK : NK ;
+fun optimisti_NK : NK ;
+fun optimistinen_AK : AK ;
+--+ fun optimistisesti_AdvK : AdvK ;
+fun optimistisuus_NK : NK ;
+fun optimoida_VK : VK ;
+fun optimointi_NK : NK ;
+fun optinen_AK : AK ;
+fun optio_NK : NK ;
+--+ fun optisesti_AdvK : AdvK ;
+fun optometria_NK : NK ;
+fun opuntia_NK : NK ;
+fun opus_NK : NK ;
+fun ora_NK : NK ;
+fun oraakkeli_NK : NK ;
+--+ fun oraakkelimaisesti_AdvK : AdvK ;
+fun orakas_NK : NK ;
+fun orangutangi_NK : NK ;
+fun oranki_NK : NK ;
+fun oranssi_NK : NK ;
+fun oranssinen_NK : NK ;
+fun oras_NK : NK ;
+fun orastaa_VK : VK ;
+fun orastua_VK : VK ;
+fun orastus_NK : NK ;
+fun oratorio_NK : NK ;
+fun orava_NK : NK ;
+fun ordinaatta_NK : NK ;
+fun ordoviikki_NK : NK ;
+fun ordoviikkinen_NK : NK ;
+fun oregano_NK : NK ;
+fun orgaani_NK : NK ;
+fun orgaaninen_AK : AK ;
+--+ fun orgaanisesti_AdvK : AdvK ;
+fun organdi_NK : NK ;
+fun organisaatio_NK : NK ;
+fun organisaattori_NK : NK ;
+fun organisatorinen_NK : NK ;
+fun organismi_NK : NK ;
+fun organisoida_VK : VK ;
+fun organisoija_NK : NK ;
+fun organisointi_NK : NK ;
+fun organisoitua_VK : VK ;
+fun organogeeninen_NK : NK ;
+fun orgasmi_NK : NK ;
+fun orgastinen_NK : NK ;
+--? fun orgiat_NK : NK ;
+fun orhi_NK : NK ;
+fun ori_NK : NK ;
+fun oribletti_NK : NK ;
+fun orientaalinen_NK : NK ;
+fun orientaatio_NK : NK ;
+fun orientalisti_NK : NK ;
+fun orientalistiikka_NK : NK ;
+fun orientoida_VK : VK ;
+fun orientointi_NK : NK ;
+fun orientoitua_VK : VK ;
+fun orientti_NK : NK ;
+fun originaali_NK : NK ;
+fun originaalinen_NK : NK ;
+fun originaalisuus_NK : NK ;
+fun originaliteetti_NK : NK ;
+fun originelli_NK : NK ;
+fun origo_NK : NK ;
+fun orja_NK : NK ;
+fun orjailla_VK : VK ;
+fun orjailu_NK : NK ;
+fun orjallinen_AK : AK ;
+--+ fun orjallisesti_AdvK : AdvK ;
+--+ fun orjamaisesti_AdvK : AdvK ;
+fun orjanlaakeri_NK : NK ;
+fun orjuus_NK : NK ;
+fun orjuuttaa_VK : VK ;
+fun orjuutus_NK : NK ;
+fun orkesteri_NK : NK ;
+fun orkestraatio_NK : NK ;
+fun orkestroida_VK : VK ;
+fun orkestrointi_NK : NK ;
+fun orkidea_NK : NK ;
+fun orkku_NK : NK ;
+fun ornamentaalinen_NK : NK ;
+fun ornamentiikka_NK : NK ;
+fun ornamentti_NK : NK ;
+fun ornitologi_NK : NK ;
+fun ornitologia_NK : NK ;
+fun ornitologinen_NK : NK ;
+fun orpana_NK : NK ;
+fun orpo_NK : NK ;
+fun orpous_NK : NK ;
+fun orsi_NK : NK ;
+fun ortodoksi_NK : NK ;
+fun ortodoksia_NK : NK ;
+fun ortodoksinen_NK : NK ;
+fun ortodoksisuus_NK : NK ;
+fun ortografia_NK : NK ;
+fun ortopedi_NK : NK ;
+fun ortopedia_NK : NK ;
+fun ortopedinen_NK : NK ;
+fun orvaskesi_NK : NK ;
+fun orvokki_NK : NK ;
+fun osa_NK : NK ;
+fun osaaja_NK : NK ;
+fun osaaminen_NK : NK ;
+--+ fun osaaottavasti_AdvK : AdvK ;
+fun osainen_NK : NK ;
+fun osaisuus_NK : NK ;
+fun osakas_NK : NK ;
+fun osake_NK : NK ;
+fun osakesa'a'sta'minen_NK : NK ;
+fun osakkeisto_NK : NK ;
+fun osakkuus_NK : NK ;
+fun osakseen_AdvK : AdvK ;
+fun osaksi_AdvK : AdvK ;
+fun osallinen_NK : NK ;
+fun osallistua_VK : VK ;
+fun osallistuja_NK : NK ;
+fun osallisuus_NK : NK ;
+fun osanen_NK : NK ;
+fun osapuilleen_AdvK : AdvK ;
+--+ fun osapa'iva'toimisesti_AdvK : AdvK ;
+fun osasto_NK : NK ;
+fun osastoida_VK : VK ;
+fun osastoinen_NK : NK ;
+fun osata_VK : VK ;
+fun osaton_NK : NK ;
+fun osattomuus_NK : NK ;
+fun oseanologia_NK : NK ;
+fun oselotti_NK : NK ;
+fun osin_AdvK : AdvK ;
+fun osinko_NK : NK ;
+fun osio_NK : NK ;
+fun ositella_VK : VK ;
+fun ositettava_NK : NK ;
+fun osittaa_VK : VK ;
+fun osittain_AdvK : AdvK ;
+fun osittainen_NK : NK ;
+fun osittelu_NK : NK ;
+fun ositus_NK : NK ;
+fun oskillaatio_NK : NK ;
+fun oskillaattori_NK : NK ;
+fun oskilloskooppi_NK : NK ;
+fun osmium_NK : NK ;
+fun osmoosi_NK : NK ;
+fun osmoottinen_NK : NK ;
+fun osoite_NK : NK ;
+fun osoitella_VK : VK ;
+fun osoitin_NK : NK ;
+fun osoittaa_VK : VK ;
+fun osoittaja_NK : NK ;
+fun osoittautua_VK : VK ;
+fun osoitteisto_NK : NK ;
+fun osoittelu_NK : NK ;
+fun osoitus_NK : NK ;
+fun ossi_NK : NK ;
+fun osso_buco_NK : NK ;
+fun ostaa_VK : VK ;
+fun ostaja_NK : NK ;
+fun ostari_NK : NK ;
+fun ostattaa_VK : VK ;
+fun ostella_VK : VK ;
+fun ostelu_NK : NK ;
+fun osteomalasia_NK : NK ;
+fun osteopaatti_NK : NK ;
+fun osteopatia_NK : NK ;
+fun osteoporoosi_NK : NK ;
+fun osteri_NK : NK ;
+fun ostjakki_NK : NK ;
+fun osto_NK : NK ;
+fun ostos_NK : NK ;
+fun osua_VK : VK ;
+fun osuma_NK : NK ;
+fun osuttaa_VK : VK ;
+fun osuus_NK : NK ;
+fun osuva_AK : AK ;
+--+ fun osuvasti_AdvK : AdvK ;
+fun osuvuus_NK : NK ;
+fun osviitta_NK : NK ;
+fun ota_NK : NK ;
+fun otakilokki_NK : NK ;
+fun otaksua_VK : VK ;
+fun otaksuma_NK : NK ;
+fun otaksuttavasti_AdvK : AdvK ;
+fun otanta_NK : NK ;
+fun otattaa_VK : VK ;
+fun ote_NK : NK ;
+fun otella_VK : VK ;
+fun otin_NK : NK ;
+fun otollinen_AK : AK ;
+--+ fun otollisesti_AdvK : AdvK ;
+fun otollisuus_NK : NK ;
+fun otos_NK : NK ;
+fun otsa_NK : NK ;
+fun otsainen_NK : NK ;
+fun otsake_NK : NK ;
+fun otselotti_NK : NK ;
+fun otsikko_NK : NK ;
+fun otsikoida_VK : VK ;
+fun otsikointi_NK : NK ;
+fun otso_NK : NK ;
+fun otsoni_NK : NK ;
+fun otsonisoida_VK : VK ;
+fun otsonoida_VK : VK ;
+fun otsonointi_NK : NK ;
+fun ottaa_VK : VK ;
+fun ottaja_NK : NK ;
+fun ottamo_NK : NK ;
+fun ottava_NK : NK ;
+fun otteinen_NK : NK ;
+fun ottelija_NK : NK ;
+fun ottelu_NK : NK ;
+fun otteluaika_NK : NK ;
+fun otto_NK : NK ;
+fun ottomaani_NK : NK ;
+fun otus_NK : NK ;
+fun oudokseltaan_AdvK : AdvK ;
+fun oudoksua_VK : VK ;
+fun oudoksunta_NK : NK ;
+fun oudoksuttaa_VK : VK ;
+fun oudostella_VK : VK ;
+fun oudosti_AdvK : AdvK ;
+fun oudostuttaa_VK : VK ;
+fun ounastella_VK : VK ;
+fun out_AdvK : AdvK ;
+fun outo_NK : NK ;
+fun outous_NK : NK ;
+fun output_NK : NK ;
+fun outsider_NK : NK ;
+fun ouzo_NK : NK ;
+fun ovaali_NK : NK ;
+fun ovaario_NK : NK ;
+fun ovariaalinen_NK : NK ;
+fun ovela_AK : AK ;
+--+ fun ovelasti_AdvK : AdvK ;
+fun oveluus_NK : NK ;
+fun ovenripa_NK : NK ;
+fun ovi_NK : NK ;
+fun ovinen_NK : NK ;
+fun ovipaarinen_NK : NK ;
+fun ovulaatio_NK : NK ;
+fun paaduttaa_VK : VK ;
+fun paahde_NK : NK ;
+fun paahdin_NK : NK ;
+fun paahtaa_VK : VK ;
+fun paahteinen_NK : NK ;
+fun paahtimo_NK : NK ;
+fun paahto_NK : NK ;
+fun paahtua_VK : VK ;
+fun paakari_NK : NK ;
+fun paakku_NK : NK ;
+fun paakkuinen_NK : NK ;
+fun paakkuuntua_VK : VK ;
+fun paalain_NK : NK ;
+fun paalata_VK : VK ;
+fun paalaus_NK : NK ;
+fun paali_NK : NK ;
+fun paalittaa_VK : VK ;
+fun paalitus_NK : NK ;
+fun paalu_NK : NK ;
+fun paaluttaa_VK : VK ;
+fun paalutus_NK : NK ;
+fun paanne_NK : NK ;
+fun paanu_NK : NK ;
+fun paanuttaa_VK : VK ;
+fun paanutus_NK : NK ;
+fun paapattaa_VK : VK ;
+fun paapatus_NK : NK ;
+fun paapero_NK : NK ;
+fun paapoa_VK : VK ;
+fun paappa_NK : NK ;
+fun paapuuri_NK : NK ;
+fun paaria_NK : NK ;
+fun paarit_NK : NK ;
+fun paarma_NK : NK ;
+fun paasata_VK : VK ;
+fun paasi_NK : NK ;
+fun paa_i_NK : NK ;
+fun paasto_NK : NK ;
+fun paastonaika_NK : NK ;
+fun paastota_VK : VK ;
+fun paatoksekas_NK : NK ;
+fun paatoksellinen_AK : AK ;
+--+ fun paatoksellisesti_AdvK : AdvK ;
+fun paatos_NK : NK ;
+fun paatsama_NK : NK ;
+fun paatti_NK : NK ;
+fun paatua_VK : VK ;
+fun paatumus_NK : NK ;
+fun paatuneisuus_NK : NK ;
+fun paatunut_NK : NK ;
+fun paavi_NK : NK ;
+fun paavillinen_NK : NK ;
+fun paavius_NK : NK ;
+fun padallinen_NK : NK ;
+fun padota_VK : VK ;
+fun paella_NK : NK ;
+fun paeta_VK : VK ;
+fun pagodi_NK : NK ;
+fun paha_AK : AK ;
+fun pahainen_NK : NK ;
+fun pahaksua_VK : VK ;
+fun pahamaineisuus_NK : NK ;
+fun pahanen_NK : NK ;
+--+ fun pahanilkisesti_AdvK : AdvK ;
+fun pahanilkisyys_NK : NK ;
+fun pahankurinen_AK : AK ;
+--+ fun pahankurisesti_AdvK : AdvK ;
+fun pahankurisuus_NK : NK ;
+fun pahanlaatuistua_VK : VK ;
+fun pahanlainen_AK : AK ;
+--+ fun pahanlaisesti_AdvK : AdvK ;
+--+ fun pahanpa'iva'isesti_AdvK : AdvK ;
+fun pahansuopaisuus_NK : NK ;
+fun pahansuopuus_NK : NK ;
+fun pahansuovasti_AdvK : AdvK ;
+--+ fun pahantuulisesti_AdvK : AdvK ;
+--+ fun pahasti_AdvK : AdvK ;
+fun pahastua_VK : VK ;
+fun pahastuttaa_VK : VK ;
+fun pahe_NK : NK ;
+fun paheellinen_AK : AK ;
+--+ fun paheellisesti_AdvK : AdvK ;
+fun paheellisuus_NK : NK ;
+fun paheksua_VK : VK ;
+fun paheksunta_NK : NK ;
+fun pahemmin_AdvK : AdvK ;
+fun pahennus_NK : NK ;
+fun pahentaa_VK : VK ;
+fun pahentua_VK : VK ;
+fun paheta_VK : VK ;
+fun pahimmillaan_AdvK : AdvK ;
+fun pahimmilleen_AdvK : AdvK ;
+fun pahimmin_AdvK : AdvK ;
+fun pahimmoiksi_AdvK : AdvK ;
+fun pahimmoillaan_AdvK : AdvK ;
+fun pahimmoilleen_AdvK : AdvK ;
+fun pahiten_AdvK : AdvK ;
+fun pahitteeksi_AdvK : AdvK ;
+fun pahka_NK : NK ;
+fun pahkaa_AdvK : AdvK ;
+fun pahkainen_NK : NK ;
+fun pahki_AdvK : AdvK ;
+fun pahkura_NK : NK ;
+fun pahkurainen_NK : NK ;
+fun pahna_NK : NK ;
+fun pahnue_NK : NK ;
+fun pahoillaan_AdvK : AdvK ;
+fun pahoilleen_AdvK : AdvK ;
+fun pahoin_AdvK : AdvK ;
+fun pahoinpitelija'_NK : NK ;
+fun pahoinvoiva_NK : NK ;
+fun pahoitella_VK : VK ;
+fun pahoittaa_VK : VK ;
+fun pahoittua_VK : VK ;
+fun paholainen_NK : NK ;
+fun pahuksenmoinen_NK : NK ;
+fun pahuksesti_AdvK : AdvK ;
+fun pahus_NK : NK ;
+fun pahuus_NK : NK ;
+fun pahvi_NK : NK ;
+fun pahvinen_NK : NK ;
+fun pai_1_NK : NK ;
+fun pai_2_AdvK : AdvK ;
+fun paidanpesija'_NK : NK ;
+fun paidaton_NK : NK ;
+fun paijata_VK : VK ;
+fun paijaus_NK : NK ;
+fun paikalla_AdvK : AdvK ;
+fun paikallaan_AdvK : AdvK ;
+fun paikalle_AdvK : AdvK ;
+fun paikalleen_AdvK : AdvK ;
+fun paikallinen_AK : AK ;
+fun paikallisaika_NK : NK ;
+--+ fun paikallisesti_AdvK : AdvK ;
+fun paikallistaa_VK : VK ;
+fun paikallistua_VK : VK ;
+fun paikallisuus_NK : NK ;
+fun paikalta_AdvK : AdvK ;
+fun paikaltaan_AdvK : AdvK ;
+fun paikanna'ytta'ja'_NK : NK ;
+fun paikantaa_VK : VK ;
+fun paikantua_VK : VK ;
+fun paikata_VK : VK ;
+fun paikka_NK : NK ;
+fun paikkailla_VK : VK ;
+fun paikkailu_NK : NK ;
+fun paikkainen_NK : NK ;
+fun paikkamaalata_VK : VK ;
+fun paikka_paikoin_AdvK : AdvK ;
+fun paikkaus_NK : NK ;
+fun paikkauttaa_VK : VK ;
+fun paikkeilla_AdvK : AdvK ;
+fun paikkeille_AdvK : AdvK ;
+fun paikkeilta_AdvK : AdvK ;
+fun paikko_NK : NK ;
+fun paikkuu_NK : NK ;
+fun paikkuuttaa_VK : VK ;
+fun paikoillaan_AdvK : AdvK ;
+fun paikoilleen_AdvK : AdvK ;
+fun paikoiltaan_AdvK : AdvK ;
+fun paikoin_AdvK : AdvK ;
+fun paikoitellen_AdvK : AdvK ;
+fun paikoittaa_VK : VK ;
+fun paikoittain_AdvK : AdvK ;
+fun paikoittainen_NK : NK ;
+fun paimen_NK : NK ;
+fun paimennus_NK : NK ;
+fun paimentaa_VK : VK ;
+fun paimentolainen_NK : NK ;
+fun paimentolaisuus_NK : NK ;
+fun painaa_VK : VK ;
+fun painaja_NK : NK ;
+fun painajainen_NK : NK ;
+fun painajaismainen_NK : NK ;
+fun painallus_NK : NK ;
+fun painaltaa_VK : VK ;
+fun painama_NK : NK ;
+fun painamaton_NK : NK ;
+fun painanne_NK : NK ;
+fun painanta_NK : NK ;
+fun painate_NK : NK ;
+fun painattaa_VK : VK ;
+fun painatus_NK : NK ;
+fun painauma_NK : NK ;
+fun painautua_VK : VK ;
+fun painautuma_NK : NK ;
+fun painava_AK : AK ;
+--+ fun painavasti_AdvK : AdvK ;
+fun painavuus_NK : NK ;
+fun paine_NK : NK ;
+fun paineellinen_NK : NK ;
+fun paineinen_NK : NK ;
+fun paineistaa_VK : VK ;
+fun paineistus_NK : NK ;
+fun painella_VK : VK ;
+fun painelu_NK : NK ;
+fun paini_NK : NK ;
+fun painia_VK : VK ;
+fun painija_NK : NK ;
+fun painike_NK : NK ;
+fun painin_NK : NK ;
+fun painiskella_VK : VK ;
+fun painiskelu_NK : NK ;
+fun paino_NK : NK ;
+fun painoaika_NK : NK ;
+fun painoinen_AK : AK ;
+--+ fun painoisesti_AdvK : AdvK ;
+fun painoisuus_NK : NK ;
+fun painokas_AK : AK ;
+fun painokerroin_NK : NK ;
+--+ fun painokkaasti_AdvK : AdvK ;
+fun painokkuus_NK : NK ;
+fun painollinen_NK : NK ;
+fun painos_NK : NK ;
+fun painostaa_VK : VK ;
+fun painostus_NK : NK ;
+fun painoton_NK : NK ;
+fun painottaa_VK : VK ;
+fun painotteinen_AK : AK ;
+--+ fun painotteisesti_AdvK : AdvK ;
+fun painotteisuus_NK : NK ;
+fun painottomuus_NK : NK ;
+fun painottua_VK : VK ;
+fun painotus_NK : NK ;
+fun painua_VK : VK ;
+fun painuksiin_AdvK : AdvK ;
+fun painuksissa_AdvK : AdvK ;
+fun painuksista_AdvK : AdvK ;
+fun painuma_NK : NK ;
+fun paise_NK : NK ;
+fun paiskata_VK : VK ;
+fun paiskautua_VK : VK ;
+fun paiskella_VK : VK ;
+fun paiskia_VK : VK ;
+fun paiskoa_VK : VK ;
+fun paistaa_VK : VK ;
+fun paistatella_VK : VK ;
+fun paistattaa_VK : VK ;
+fun paiste_NK : NK ;
+fun paisteinen_NK : NK ;
+fun paisti_NK : NK ;
+fun paistikas_NK : NK ;
+fun paistike_NK : NK ;
+fun paisto_NK : NK ;
+fun paistoaika_NK : NK ;
+fun paistos_NK : NK ;
+fun paistua_VK : VK ;
+fun paisua_VK : VK ;
+fun paisuksiin_AdvK : AdvK ;
+fun paisuksissa_AdvK : AdvK ;
+fun paisutella_VK : VK ;
+fun paisuttaa_VK : VK ;
+fun paisuttelu_NK : NK ;
+fun paisutus_NK : NK ;
+fun paisuvainen_NK : NK ;
+fun paita_NK : NK ;
+fun paitahihasillaan_AdvK : AdvK ;
+fun paitahihasilleen_AdvK : AdvK ;
+fun paitainen_NK : NK ;
+fun paitasillaan_AdvK : AdvK ;
+fun paitasilleen_AdvK : AdvK ;
+fun paitis_NK : NK ;
+fun paitsi_AdvK : AdvK ;
+fun paitsio_NK : NK ;
+fun paja_NK : NK ;
+fun pajatso_NK : NK ;
+fun pajattaa_VK : VK ;
+fun pajatus_NK : NK ;
+fun paju_NK : NK ;
+fun pajukko_NK : NK ;
+fun pajukoitua_VK : VK ;
+fun pakaasi_NK : NK ;
+fun pakahduksiin_AdvK : AdvK ;
+fun pakahduksissa_AdvK : AdvK ;
+fun pakahduksissaan_AdvK : AdvK ;
+fun pakahduttaa_VK : VK ;
+fun pakahtua_VK : VK ;
+fun pakana_AK : AK ;
+fun pakanallinen_NK : NK ;
+--+ fun pakanasti_AdvK : AdvK ;
+fun pakanuudenaika_NK : NK ;
+fun pakanuus_NK : NK ;
+fun pakara_NK : NK ;
+fun pakari_NK : NK ;
+fun pakastaa_VK : VK ;
+fun pakastamo_NK : NK ;
+fun pakaste_NK : NK ;
+fun pakastin_NK : NK ;
+fun pakastua_VK : VK ;
+fun pakastus_NK : NK ;
+fun pakata_1_VK : VK ;
+fun pakata_2_VK : VK ;
+fun pakeilla_AdvK : AdvK ;
+fun pakeillaan_AdvK : AdvK ;
+fun pakeille_AdvK : AdvK ;
+fun pakeilleen_AdvK : AdvK ;
+fun pakeilta_AdvK : AdvK ;
+fun pakeiltaan_AdvK : AdvK ;
+fun pakenija_NK : NK ;
+fun pakerrus_NK : NK ;
+fun pakertaa_VK : VK ;
+fun pakertaja_NK : NK ;
+fun paketillinen_NK : NK ;
+fun paketoida_VK : VK ;
+fun paketoija_NK : NK ;
+fun paketointi_NK : NK ;
+fun paketti_NK : NK ;
+fun pakina_NK : NK ;
+fun pakinoida_VK : VK ;
+fun pakinoija_NK : NK ;
+fun pakinointi_NK : NK ;
+fun pakinoitsija_NK : NK ;
+fun pakista_VK : VK ;
+fun pakka_1_NK : NK ;
+fun pakka_2_NK : NK ;
+fun pakkaaja_NK : NK ;
+fun pakkaamo_NK : NK ;
+fun pakkaantua_VK : VK ;
+fun pakkanen_NK : NK ;
+fun pakkasrapautuminen_NK : NK ;
+fun pakkaus_NK : NK ;
+fun pakkauttaa_VK : VK ;
+fun pakkautua_VK : VK ;
+fun pakkeli_NK : NK ;
+fun pakki_1_NK : NK ;
+fun pakki_2_NK : NK ;
+fun pakko_NK : NK ;
+fun pakkonaiminen_NK : NK ;
+fun pakkota'yta'nto'_NK : NK ;
+fun paklata_VK : VK ;
+fun paklaus_NK : NK ;
+fun pako_NK : NK ;
+fun pakoilla_VK : VK ;
+fun pakoilu_NK : NK ;
+fun pakoinen_NK : NK ;
+fun pakokauhuinen_NK : NK ;
+fun pakolaisuus_NK : NK ;
+fun pakollinen_NK : NK ;
+fun pakollistaa_VK : VK ;
+fun pakollisuus_NK : NK ;
+fun pakoon_AdvK : AdvK ;
+fun pakosalla_AdvK : AdvK ;
+fun pakosalle_AdvK : AdvK ;
+fun pakostakin_AdvK : AdvK ;
+fun pakote_NK : NK ;
+fun pakoton_NK : NK ;
+fun pakottaa_VK : VK ;
+fun pakottamaton_NK : NK ;
+fun pakottautua_VK : VK ;
+fun pakottava_NK : NK ;
+fun pakottomasti_AdvK : AdvK ;
+fun pakottomuus_NK : NK ;
+fun pakotus_NK : NK ;
+fun paksu_AK : AK ;
+fun paksuinen_NK : NK ;
+fun paksukainen_NK : NK ;
+fun paksulti_AdvK : AdvK ;
+fun paksunema_NK : NK ;
+fun paksunnos_NK : NK ;
+fun paksuntaa_VK : VK ;
+fun paksuntua_VK : VK ;
+fun paksuntuma_NK : NK ;
+--+ fun paksusti_AdvK : AdvK ;
+fun paksuta_VK : VK ;
+fun paksuuntua_VK : VK ;
+fun paksuuntuma_NK : NK ;
+fun paksuus_NK : NK ;
+fun pakti_NK : NK ;
+fun pala_NK : NK ;
+fun palaa_VK : VK ;
+fun palailla_VK : VK ;
+fun palamaton_NK : NK ;
+fun palanen_NK : NK ;
+fun palata_VK : VK ;
+fun palatsi_NK : NK ;
+fun palauma_NK : NK ;
+fun palaute_NK : NK ;
+fun palauttaa_VK : VK ;
+fun palautua_VK : VK ;
+fun palautuma_NK : NK ;
+fun palautus_NK : NK ;
+fun palava_NK : NK ;
+fun palavissaan_AdvK : AdvK ;
+fun palella_VK : VK ;
+fun palelluksissa_AdvK : AdvK ;
+fun palelluksissaan_AdvK : AdvK ;
+fun palelluttaa_VK : VK ;
+fun paleltaa_VK : VK ;
+fun paleltua_VK : VK ;
+fun paleltuma_NK : NK ;
+fun paleontologia_NK : NK ;
+fun paleontologinen_NK : NK ;
+fun paleotsooinen_NK : NK ;
+fun paletti_NK : NK ;
+fun palho_NK : NK ;
+fun palikka_NK : NK ;
+fun palindromi_NK : NK ;
+fun palisanteri_NK : NK ;
+fun paljaaltaan_AdvK : AdvK ;
+fun paljakka_NK : NK ;
+fun paljas_NK : NK ;
+fun paljasjaloin_AdvK : AdvK ;
+fun paljastaa_VK : VK ;
+fun paljastaja_NK : NK ;
+--? fun paljastajaiset_NK : NK ;
+fun paljastin_NK : NK ;
+fun paljastua_VK : VK ;
+fun paljastus_NK : NK ;
+fun palje_NK : NK ;
+fun paljetti_NK : NK ;
+fun paljin_NK : NK ;
+fun paljo_NK : NK ;
+fun paljoksua_VK : VK ;
+fun paljolta_AdvK : AdvK ;
+fun paljolti_AdvK : AdvK ;
+fun paljon_AdvK : AdvK ;
+fun paljous_NK : NK ;
+fun palju_NK : NK ;
+fun palkallinen_NK : NK ;
+fun palkanansaitsija_NK : NK ;
+fun palkata_VK : VK ;
+fun palkaton_NK : NK ;
+fun palkattomasti_AdvK : AdvK ;
+fun palkinto_NK : NK ;
+fun palkisto_NK : NK ;
+fun palkita_VK : VK ;
+fun palkka_NK : NK ;
+fun palkkainen_NK : NK ;
+fun palkkaisuus_NK : NK ;
+fun palkkaus_NK : NK ;
+fun palkki_NK : NK ;
+fun palkkio_NK : NK ;
+fun palko_NK : NK ;
+fun palkollinen_NK : NK ;
+fun palladium_NK : NK ;
+fun pallas_NK : NK ;
+fun palle_1_NK : NK ;
+fun palle_2_NK : NK ;
+fun pallea_NK : NK ;
+fun pallero_NK : NK ;
+fun palleroinen_NK : NK ;
+fun palli_1_NK : NK ;
+fun palli_2_NK : NK ;
+fun palliatiivinen_NK : NK ;
+fun pallo_NK : NK ;
+fun palloilija_NK : NK ;
+fun palloilla_VK : VK ;
+fun palloilu_NK : NK ;
+fun pallokas_NK : NK ;
+fun pallonen_NK : NK ;
+fun pallosilla_AdvK : AdvK ;
+fun pallosille_AdvK : AdvK ;
+fun pallotella_VK : VK ;
+fun pallottaa_VK : VK ;
+fun pallottelu_NK : NK ;
+fun pallotus_NK : NK ;
+fun pallukka_NK : NK ;
+fun palmikko_NK : NK ;
+fun palmikkoinen_NK : NK ;
+fun palmikoida_VK : VK ;
+fun palmikointi_NK : NK ;
+fun palmu_NK : NK ;
+fun palo_NK : NK ;
+fun paloa_VK : VK ;
+fun palohaava_NK : NK ;
+fun paloilmoitin_NK : NK ;
+fun paloitella_VK : VK ;
+fun paloittain_AdvK : AdvK ;
+fun paloittelu_NK : NK ;
+fun paloton_NK : NK ;
+fun palpaatio_NK : NK ;
+fun palpakko_NK : NK ;
+fun palpoida_VK : VK ;
+fun palpointi_NK : NK ;
+fun palsa_1_NK : NK ;
+fun palsa_2_NK : NK ;
+fun palsami_NK : NK ;
+fun palsamoida_VK : VK ;
+fun palsamointi_NK : NK ;
+fun palsta_NK : NK ;
+fun palstainen_NK : NK ;
+fun palsternakka_NK : NK ;
+fun palstoittaa_VK : VK ;
+fun palstoittain_AdvK : AdvK ;
+fun palstoitus_NK : NK ;
+fun paltata_VK : VK ;
+fun palte_NK : NK ;
+fun palttaa_VK : VK ;
+fun palttina_NK : NK ;
+fun palttoo_NK : NK ;
+fun palttu_1_NK : NK ;
+fun palttu_2_NK : NK ;
+fun palturi_NK : NK ;
+fun paluu_NK : NK ;
+fun palvata_VK : VK ;
+fun palvaus_NK : NK ;
+fun palvelija_NK : NK ;
+fun palvelijatar_NK : NK ;
+fun palvella_VK : VK ;
+fun palvelu_NK : NK ;
+fun palveluasuminen_NK : NK ;
+fun palvelus_NK : NK ;
+fun palvelusaika_NK : NK ;
+fun palvi_1_NK : NK ;
+fun palvi_2_NK : NK ;
+fun palvoa_VK : VK ;
+fun palvoja_NK : NK ;
+fun palvonta_NK : NK ;
+fun palvovasti_AdvK : AdvK ;
+fun pamahdella_VK : VK ;
+fun pamahdus_NK : NK ;
+fun pamahtaa_VK : VK ;
+fun pamaus_NK : NK ;
+fun pamautella_VK : VK ;
+fun pamauttaa_VK : VK ;
+fun pamfletti_NK : NK ;
+fun pamista_VK : VK ;
+fun pampa_NK : NK ;
+fun pampattaa_VK : VK ;
+fun pamppailla_VK : VK ;
+fun pamppu_1_NK : NK ;
+fun pamppu_2_NK : NK ;
+fun pampula_NK : NK ;
+fun pamputtaa_VK : VK ;
+fun pamputus_NK : NK ;
+fun panama_NK : NK ;
+fun panamerikanismi_NK : NK ;
+fun panarabismi_NK : NK ;
+fun panda_NK : NK ;
+fun pandeeminen_NK : NK ;
+fun pandemia_NK : NK ;
+fun paneeli_NK : NK ;
+fun paneerata_VK : VK ;
+fun paneeraus_NK : NK ;
+fun panelisti_NK : NK ;
+fun paneloida_VK : VK ;
+fun panelointi_NK : NK ;
+fun paneroida_VK : VK ;
+fun panerointi_NK : NK ;
+fun panetella_VK : VK ;
+fun panettaa_VK : VK ;
+fun panettelija_NK : NK ;
+fun panettelu_NK : NK ;
+fun paneutua_VK : VK ;
+--? fun paniaiset_NK : NK ;
+fun paniikki_NK : NK ;
+fun panija_NK : NK ;
+fun panimo_NK : NK ;
+fun panini_NK : NK ;
+fun pankki_NK : NK ;
+fun pankkiaika_NK : NK ;
+fun pankkiiri_NK : NK ;
+fun pankkisa'a'sta'minen_NK : NK ;
+fun pankko_NK : NK ;
+fun panna_1_VK : VK ;
+fun panna_2_NK : NK ;
+fun pannahinen_NK : NK ;
+fun pannari_NK : NK ;
+fun pannu_NK : NK ;
+fun pannullinen_NK : NK ;
+fun pano_NK : NK ;
+fun panoraama_NK : NK ;
+fun panoroida_VK : VK ;
+fun panorointi_NK : NK ;
+fun panos_NK : NK ;
+fun panostaa_VK : VK ;
+fun panostaja_NK : NK ;
+fun panostus_NK : NK ;
+fun panslavismi_NK : NK ;
+fun panslavisti_NK : NK ;
+fun panslavistinen_NK : NK ;
+fun panssari_NK : NK ;
+fun panssaroida_VK : VK ;
+fun panssarointi_NK : NK ;
+fun panssaroitua_VK : VK ;
+fun panta_NK : NK ;
+fun pantata_VK : VK ;
+fun panteismi_NK : NK ;
+fun panteisti_NK : NK ;
+fun panteistinen_NK : NK ;
+fun pantomiimi_NK : NK ;
+fun pantomiimikko_NK : NK ;
+fun panttaus_NK : NK ;
+fun pantteri_NK : NK ;
+fun pantti_NK : NK ;
+fun paossa_AdvK : AdvK ;
+fun papaija_NK : NK ;
+fun papana_NK : NK ;
+fun paparazzi_NK : NK ;
+fun papattaa_VK : VK ;
+fun papatti_NK : NK ;
+fun papatus_NK : NK ;
+fun paperi_NK : NK ;
+fun paperikko_NK : NK ;
+fun paperikoko_NK : NK ;
+fun paperinen_NK : NK ;
+fun paperiton_NK : NK ;
+fun paperoida_VK : VK ;
+fun paperointi_NK : NK ;
+fun paperossi_NK : NK ;
+fun papiksivihkiminen_NK : NK ;
+fun papiljotti_NK : NK ;
+fun papilla_NK : NK ;
+fun papilli_NK : NK ;
+fun papillinen_AK : AK ;
+--+ fun papillisesti_AdvK : AdvK ;
+fun papillisuus_NK : NK ;
+fun papillooma_NK : NK ;
+fun papisto_NK : NK ;
+fun papitar_NK : NK ;
+fun paplari_NK : NK ;
+fun pappa_NK : NK ;
+fun papparainen_NK : NK ;
+fun pappenheimilainen_NK : NK ;
+fun pappeus_NK : NK ;
+fun pappi_NK : NK ;
+fun pappila_NK : NK ;
+fun paprika_NK : NK ;
+fun papu_NK : NK ;
+fun papukaija_NK : NK ;
+fun papyrus_NK : NK ;
+fun par_NK : NK ;
+fun para_NK : NK ;
+fun paraabeli_NK : NK ;
+fun paraati_NK : NK ;
+fun parabellum_NK : NK ;
+fun parabolinen_NK : NK ;
+fun paraboloidi_NK : NK ;
+fun paradigma_NK : NK ;
+fun paradoksaalinen_AK : AK ;
+--+ fun paradoksaalisesti_AdvK : AdvK ;
+fun paradoksaalisuus_NK : NK ;
+fun paradoksi_NK : NK ;
+fun paradoksinen_NK : NK ;
+fun paradoksisuus_NK : NK ;
+fun parafinoida_VK : VK ;
+fun parafinointi_NK : NK ;
+fun parafoida_VK : VK ;
+fun parafointi_NK : NK ;
+fun paragrafi_NK : NK ;
+fun parahdus_NK : NK ;
+fun parahiksi_AdvK : AdvK ;
+fun parahin_NK : NK ;
+fun parahtaa_VK : VK ;
+fun parahultainen_NK : NK ;
+fun paraikaa_AdvK : AdvK ;
+fun paraiksi_AdvK : AdvK ;
+fun paraillaan_AdvK : AdvK ;
+fun paraiten_AdvK : AdvK ;
+fun parakki_NK : NK ;
+fun parallaksi_NK : NK ;
+fun paralleelinen_NK : NK ;
+fun paralleelisuus_NK : NK ;
+fun paralleelius_NK : NK ;
+fun parallelismi_NK : NK ;
+--? fun paralympialaiset_NK : NK ;
+fun paranee_VK : VK ;
+fun parannella_VK : VK ;
+fun parannus_NK : NK ;
+fun paranoia_NK : NK ;
+fun paranoidi_NK : NK ;
+fun paranoidinen_NK : NK ;
+fun paranooikko_NK : NK ;
+fun paranooinen_NK : NK ;
+fun parantaa_VK : VK ;
+fun parantelu_NK : NK ;
+fun parantola_NK : NK ;
+fun parantua_VK : VK ;
+fun parantumaton_NK : NK ;
+fun parantumattomasti_AdvK : AdvK ;
+fun parantumattomuus_NK : NK ;
+fun paras_NK : NK ;
+fun parasiitti_NK : NK ;
+fun parastaikaa_AdvK : AdvK ;
+fun parata_1_VK : VK ;
+fun parata_2_AdvK : AdvK ;
+fun paratiisi_NK : NK ;
+fun paratkoon_AdvK : AdvK ;
+fun par_avion_AdvK : AdvK ;
+fun pareittain_AdvK : AdvK ;
+fun pareittainen_NK : NK ;
+fun paremmin_AdvK : AdvK ;
+fun paremmuus_NK : NK ;
+fun parempi_NK : NK ;
+--? fun parfait_NK : NK ;
+fun parfee_NK : NK ;
+fun parfymeria_NK : NK ;
+fun parfymoida_VK : VK ;
+fun parfymointi_NK : NK ;
+fun parfyymi_NK : NK ;
+fun parhaastaan_AdvK : AdvK ;
+fun parhaiksi_AdvK : AdvK ;
+fun parhaillaan_AdvK : AdvK ;
+fun parhaimmillaan_AdvK : AdvK ;
+fun parhaimmin_AdvK : AdvK ;
+fun parhaimmisto_NK : NK ;
+fun parhain_NK : NK ;
+fun parhaisto_NK : NK ;
+fun parhaiten_AdvK : AdvK ;
+fun pari_1_NK : NK ;
+fun pari_2_NK : NK ;
+fun pariin_AdvK : AdvK ;
+fun pariisitar_NK : NK ;
+fun parikki_NK : NK ;
+fun parila_NK : NK ;
+fun parilehdykka'inen_NK : NK ;
+fun parillinen_NK : NK ;
+fun pariloida_VK : VK ;
+fun parinen_NK : NK ;
+fun parisen_AdvK : AdvK ;
+fun parisenkymmenta'_AdvK : AdvK ;
+fun parisensataa_AdvK : AdvK ;
+fun parissa_AdvK : AdvK ;
+fun parista_AdvK : AdvK ;
+fun paristo_NK : NK ;
+fun pariteetti_NK : NK ;
+fun paritella_VK : VK ;
+fun pariton_NK : NK ;
+fun parittaa_VK : VK ;
+fun parittain_AdvK : AdvK ;
+fun parittainen_NK : NK ;
+fun parittaja_NK : NK ;
+fun parittelu_NK : NK ;
+fun paritteluaika_NK : NK ;
+fun paritus_NK : NK ;
+fun paritusten_AdvK : AdvK ;
+fun pariutua_VK : VK ;
+fun parjaaja_NK : NK ;
+fun parjata_VK : VK ;
+fun parjaus_NK : NK ;
+fun parka_1_NK : NK ;
+fun parka_2_NK : NK ;
+fun parkaista_VK : VK ;
+fun parkaisu_NK : NK ;
+fun parketoida_VK : VK ;
+fun parketti_NK : NK ;
+fun parkinsonismi_NK : NK ;
+fun parkinta_NK : NK ;
+fun parkita_VK : VK ;
+fun parkitsimo_NK : NK ;
+fun parkitus_NK : NK ;
+fun parkkeerata_VK : VK ;
+fun parkkeeraus_NK : NK ;
+fun parkki_1_NK : NK ;
+fun parkki_2_NK : NK ;
+fun parkki_3_NK : NK ;
+fun parkki_4_NK : NK ;
+fun parkkiintua_VK : VK ;
+fun parkkiutua_VK : VK ;
+fun parku_NK : NK ;
+fun parkua_VK : VK ;
+fun parkuna_NK : NK ;
+fun parlamentaarikko_NK : NK ;
+fun parlamentaarinen_AK : AK ;
+--+ fun parlamentaarisesti_AdvK : AdvK ;
+fun parlamentaarisuus_NK : NK ;
+fun parlamentarismi_NK : NK ;
+fun parlamentti_NK : NK ;
+fun parmesaani_NK : NK ;
+fun parnasso_NK : NK ;
+fun parodia_NK : NK ;
+fun parodinen_AK : AK ;
+fun parodioida_VK : VK ;
+fun parodiointi_NK : NK ;
+--+ fun parodisesti_AdvK : AdvK ;
+fun parodisuus_NK : NK ;
+fun paroni_NK : NK ;
+fun paronitar_NK : NK ;
+fun parras_NK : NK ;
+fun parraton_NK : NK ;
+fun parroittua_VK : VK ;
+fun parru_NK : NK ;
+fun parsa_NK : NK ;
+fun parsek_NK : NK ;
+fun parsi_NK : NK ;
+fun parsia_VK : VK ;
+fun parsimus_NK : NK ;
+fun parsinta_NK : NK ;
+fun parta_NK : NK ;
+fun partaalla_AdvK : AdvK ;
+fun partaalle_AdvK : AdvK ;
+fun partainen_NK : NK ;
+fun partasuinen_NK : NK ;
+fun partavaahdoke_NK : NK ;
+fun partenogeneesi_NK : NK ;
+fun partenogeneettinen_NK : NK ;
+fun partia_NK : NK ;
+fun partikkeli_NK : NK ;
+fun partio_NK : NK ;
+fun partioida_VK : VK ;
+fun partiointi_NK : NK ;
+fun partisaani_NK : NK ;
+fun partisiippi_NK : NK ;
+fun partitiivi_NK : NK ;
+fun partituuri_NK : NK ;
+fun partneri_NK : NK ;
+fun parturi_NK : NK ;
+fun parturoida_VK : VK ;
+fun parturointi_NK : NK ;
+fun party_NK : NK ;
+fun parveilla_VK : VK ;
+fun parveilu_NK : NK ;
+fun parveiluaika_NK : NK ;
+fun parveke_NK : NK ;
+fun parvellinen_NK : NK ;
+fun parveutua_VK : VK ;
+fun parvi_1_NK : NK ;
+fun parvi_2_NK : NK ;
+fun parvittain_AdvK : AdvK ;
+fun pas_AdvK : AdvK ;
+fun pasaati_NK : NK ;
+fun pascal_NK : NK ;
+fun paseerailla_VK : VK ;
+fun paseerata_VK : VK ;
+fun pasha_NK : NK ;
+fun pasianssi_NK : NK ;
+fun pasifismi_NK : NK ;
+fun pasifisti_NK : NK ;
+fun pasifistinen_AK : AK ;
+--+ fun pasifistisesti_AdvK : AdvK ;
+fun pasifistisuus_NK : NK ;
+fun paska_NK : NK ;
+fun paskainen_NK : NK ;
+fun paskantaa_VK : VK ;
+fun paskiainen_NK : NK ;
+fun pasma_NK : NK ;
+fun pasmata_VK : VK ;
+fun passata_1_VK : VK ;
+fun passata_2_VK : VK ;
+fun passauttaa_VK : VK ;
+fun passeli_NK : NK ;
+--? fun passepartout_NK : NK ;
+fun passi_1_NK : NK ;
+fun passi_2_NK : NK ;
+fun passi_3_NK : NK ;
+fun passi_4_NK : NK ;
+--? fun passiivat_NK : NK ;
+fun passiivi_NK : NK ;
+fun passiivinen_AK : AK ;
+--+ fun passiivisesti_AdvK : AdvK ;
+fun passiivistaa_VK : VK ;
+fun passiivistua_VK : VK ;
+fun passiivisuus_NK : NK ;
+fun passio_NK : NK ;
+fun passittaa_VK : VK ;
+fun passitus_NK : NK ;
+fun passivoida_VK : VK ;
+fun passivoitua_VK : VK ;
+fun passus_NK : NK ;
+fun pasta_NK : NK ;
+fun pasteerailla_VK : VK ;
+fun pasteerata_VK : VK ;
+fun pasteija_NK : NK ;
+fun pastelli_NK : NK ;
+fun pastoraali_NK : NK ;
+fun pastoraalinen_NK : NK ;
+fun pasto'roida_VK : VK ;
+fun pasto'rointi_NK : NK ;
+fun pasunisti_NK : NK ;
+fun pasuri_NK : NK ;
+fun pasuttaa_VK : VK ;
+fun pasutus_NK : NK ;
+fun pasuuna_NK : NK ;
+fun pata_1_NK : NK ;
+fun pata_2_NK : NK ;
+fun pataani_NK : NK ;
+fun pataljoona_NK : NK ;
+fun pataluhaksi_AdvK : AdvK ;
+fun patee_NK : NK ;
+fun pateetikko_NK : NK ;
+fun pateettinen_AK : AK ;
+--+ fun pateettisesti_AdvK : AdvK ;
+fun pateettisuus_NK : NK ;
+fun patentoida_VK : VK ;
+fun patentointi_NK : NK ;
+fun patentti_NK : NK ;
+fun patenttisuoja_NK : NK ;
+fun patiini_NK : NK ;
+fun patikoida_VK : VK ;
+fun patikointi_NK : NK ;
+fun patina_NK : NK ;
+fun patinoida_VK : VK ;
+fun patinointi_NK : NK ;
+fun patinoitua_VK : VK ;
+fun patio_NK : NK ;
+fun patistaa_VK : VK ;
+fun patistella_VK : VK ;
+fun patistus_NK : NK ;
+fun patja_NK : NK ;
+fun pato_NK : NK ;
+fun patogeeninen_NK : NK ;
+fun patologi_NK : NK ;
+fun patologia_NK : NK ;
+fun patologinen_NK : NK ;
+fun patonki_NK : NK ;
+fun patouma_NK : NK ;
+fun patous_NK : NK ;
+fun patoutua_VK : VK ;
+fun patoutuma_NK : NK ;
+fun patriarkaalinen_NK : NK ;
+fun patriarkaatti_NK : NK ;
+fun patriarkallinen_NK : NK ;
+fun patriarkka_NK : NK ;
+fun patriisi_NK : NK ;
+fun patriootti_NK : NK ;
+fun patrioottinen_NK : NK ;
+fun patriotismi_NK : NK ;
+fun patronyymi_NK : NK ;
+fun patruuna_1_NK : NK ;
+fun patruuna_2_NK : NK ;
+fun patsas_NK : NK ;
+fun patsastella_VK : VK ;
+fun patsastelu_NK : NK ;
+fun patteri_NK : NK ;
+fun patteristi_NK : NK ;
+fun patteristo_NK : NK ;
+fun patti_1_NK : NK ;
+fun patti_2_NK : NK ;
+fun patu_NK : NK ;
+fun patukka_NK : NK ;
+fun pauhata_VK : VK ;
+fun pauhina_NK : NK ;
+fun pauhu_NK : NK ;
+fun paukahdella_VK : VK ;
+fun paukahdus_NK : NK ;
+fun paukahtaa_VK : VK ;
+fun paukama_NK : NK ;
+fun paukaus_NK : NK ;
+fun paukautella_VK : VK ;
+fun paukauttaa_VK : VK ;
+fun pauke_NK : NK ;
+fun paukkaa_VK : VK ;
+fun paukkina_NK : NK ;
+fun paukku_NK : NK ;
+fun paukkua_VK : VK ;
+fun paukutella_VK : VK ;
+fun paukuttaa_VK : VK ;
+fun paukuttelu_NK : NK ;
+fun paukutus_NK : NK ;
+fun paula_NK : NK ;
+fun pauloittaa_VK : VK ;
+fun pauloitus_NK : NK ;
+fun pauna_NK : NK ;
+fun paunikko_NK : NK ;
+fun paussi_NK : NK ;
+fun paviaani_NK : NK ;
+fun paviljonki_NK : NK ;
+fun pedaali_NK : NK ;
+fun pedagogi_NK : NK ;
+fun pedagogia_NK : NK ;
+fun pedagogiikka_NK : NK ;
+fun pedagoginen_AK : AK ;
+--+ fun pedagogisesti_AdvK : AdvK ;
+fun pedantti_NK : NK ;
+fun pedanttinen_AK : AK ;
+--+ fun pedanttisesti_AdvK : AdvK ;
+fun pedanttisuus_NK : NK ;
+fun pedata_VK : VK ;
+fun pederasti_NK : NK ;
+fun pederastia_NK : NK ;
+fun pederastinen_NK : NK ;
+fun pediatri_NK : NK ;
+fun pediatria_NK : NK ;
+fun pedikyristi_NK : NK ;
+fun pedikyyri_NK : NK ;
+fun pedofiili_NK : NK ;
+fun pedofiilinen_NK : NK ;
+fun pedofilia_NK : NK ;
+fun pee_NK : NK ;
+fun peeaa_NK : NK ;
+fun peesata_VK : VK ;
+fun peesi_NK : NK ;
+fun peevelinmoinen_NK : NK ;
+--+ fun peevelisti_AdvK : AdvK ;
+fun peea'rra'_NK : NK ;
+fun peffa_NK : NK ;
+fun pegasos_NK : NK ;
+fun pegmatiitti_NK : NK ;
+fun peherrys_NK : NK ;
+fun peherta'a'_VK : VK ;
+fun pehko_NK : NK ;
+fun pehku_NK : NK ;
+fun pehmeikko'_NK : NK ;
+fun pehmennys_NK : NK ;
+fun pehmentya'_VK : VK ;
+fun pehmenta'a'_VK : VK ;
+fun pehmeta'_VK : VK ;
+fun pehmeys_NK : NK ;
+fun pehmea'_AK : AK ;
+--+ fun pehmea'sti_AdvK : AdvK ;
+fun pehmike_NK : NK ;
+fun pehmis_NK : NK ;
+fun pehmite_NK : NK ;
+fun pehmitin_NK : NK ;
+fun pehmittya'_VK : VK ;
+fun pehmitta'a'_VK : VK ;
+fun pehmitys_NK : NK ;
+fun pehmita'_VK : VK ;
+fun pehmo_NK : NK ;
+fun pehmoilija_NK : NK ;
+fun pehmoilla_VK : VK ;
+fun pehmoilu_NK : NK ;
+fun pehmoinen_NK : NK ;
+fun pehmustaa_VK : VK ;
+fun pehmuste_NK : NK ;
+fun pehmustus_NK : NK ;
+fun pehmyt_NK : NK ;
+fun pehtori_NK : NK ;
+fun pehva_NK : NK ;
+--? fun peijaiset_NK : NK ;
+fun peijakas_AK : AK ;
+fun peijakkaanmoinen_NK : NK ;
+--+ fun peijakkaasti_AdvK : AdvK ;
+fun peijooni_NK : NK ;
+fun peikko_NK : NK ;
+fun peilailla_VK : VK ;
+fun peilata_1_VK : VK ;
+fun peilata_2_VK : VK ;
+fun peilaus_NK : NK ;
+fun peilautua_VK : VK ;
+fun peili_NK : NK ;
+fun peipata_VK : VK ;
+fun peippaus_NK : NK ;
+fun peippi_NK : NK ;
+fun peippo_NK : NK ;
+fun peipponen_NK : NK ;
+fun peitata_VK : VK ;
+fun peite_NK : NK ;
+fun peitellysti_AdvK : AdvK ;
+fun peitella'_VK : VK ;
+fun peitetysti_AdvK : AdvK ;
+fun peitossa_AdvK : AdvK ;
+fun peitosta_AdvK : AdvK ;
+fun peitota_VK : VK ;
+fun peitsari_NK : NK ;
+fun peitsata_VK : VK ;
+fun peitsaus_NK : NK ;
+fun peitsi_1_NK : NK ;
+fun peitsi_2_NK : NK ;
+fun peitta_NK : NK ;
+fun peittaus_NK : NK ;
+fun peitteinen_NK : NK ;
+fun peittelema'to'n_NK : NK ;
+fun peittely_NK : NK ;
+fun peitto_NK : NK ;
+fun peittoon_AdvK : AdvK ;
+fun peittya'_VK : VK ;
+fun peitta'a'_VK : VK ;
+fun pejoratiivinen_NK : NK ;
+fun pekari_NK : NK ;
+fun pekka_NK : NK ;
+fun pekoni_NK : NK ;
+fun pelaaja_NK : NK ;
+fun pelailla_VK : VK ;
+fun pelakuu_NK : NK ;
+fun pelargoni_NK : NK ;
+fun pelastaa_VK : VK ;
+fun pelastaja_NK : NK ;
+fun pelastautua_VK : VK ;
+fun pelastua_VK : VK ;
+fun pelastus_NK : NK ;
+fun pelastusarmeijalainen_NK : NK ;
+fun pelata_VK : VK ;
+fun pelehtia'_VK : VK ;
+fun peleriini_NK : NK ;
+fun peli_NK : NK ;
+fun peliaika_NK : NK ;
+fun pelikaani_NK : NK ;
+fun pelimanni_NK : NK ;
+fun pelja'ta'_VK : VK ;
+fun pelkiste_NK : NK ;
+fun pelkistin_NK : NK ;
+fun pelkistys_NK : NK ;
+fun pelkistya'_VK : VK ;
+fun pelkista'a'_VK : VK ;
+fun pelkka_NK : NK ;
+fun pelkka'_NK : NK ;
+fun pelko_NK : NK ;
+fun pelkuri_NK : NK ;
+--+ fun pelkurimaisesti_AdvK : AdvK ;
+fun pelkuruus_NK : NK ;
+fun pelka'sta'a'n_AdvK : AdvK ;
+fun pelka'a'ja'_NK : NK ;
+fun pelka'a'ma'to'n_NK : NK ;
+fun pelka'a'va'inen_NK : NK ;
+fun pellava_NK : NK ;
+fun pellavainen_NK : NK ;
+fun pelle_NK : NK ;
+fun pelleilla'_VK : VK ;
+fun pelleily_NK : NK ;
+fun pelleriini_NK : NK ;
+fun pelletoida_VK : VK ;
+fun pelletointi_NK : NK ;
+fun pelletti_NK : NK ;
+fun pellillinen_NK : NK ;
+fun pellitta'a'_VK : VK ;
+fun pelmahdella_VK : VK ;
+fun pelmahtaa_VK : VK ;
+fun pelmeni_NK : NK ;
+fun pelmuta_VK : VK ;
+fun pelmuttaa_VK : VK ;
+fun pelokas_AK : AK ;
+--+ fun pelokkaasti_AdvK : AdvK ;
+fun pelokkuus_NK : NK ;
+fun pelote_NK : NK ;
+fun pelotella_VK : VK ;
+fun pelotin_NK : NK ;
+fun peloton_NK : NK ;
+fun pelottaa_VK : VK ;
+fun pelottava_AK : AK ;
+--+ fun pelottavasti_AdvK : AdvK ;
+fun pelottavuus_NK : NK ;
+fun pelottelu_NK : NK ;
+fun pelottomasti_AdvK : AdvK ;
+fun pelottomuus_NK : NK ;
+fun pelotus_NK : NK ;
+fun pelti_NK : NK ;
+fun peltinen_NK : NK ;
+fun pelto_NK : NK ;
+fun peltoinen_NK : NK ;
+fun peluri_NK : NK ;
+fun peluu_NK : NK ;
+fun peluuttaa_VK : VK ;
+fun pela'stys_NK : NK ;
+fun pela'stytta'a'_VK : VK ;
+fun pela'stya'_VK : VK ;
+fun pela'tin_NK : NK ;
+fun pela'tti_NK : NK ;
+fun pela'ta'_VK : VK ;
+fun pemppu_NK : NK ;
+fun penaali_NK : NK ;
+fun pendeli_NK : NK ;
+fun pendyyli_NK : NK ;
+fun penetraatio_NK : NK ;
+fun penetranssi_NK : NK ;
+fun penetroida_VK : VK ;
+fun penger_NK : NK ;
+fun pengerma'_NK : NK ;
+fun pengerma'inen_NK : NK ;
+fun pengerrys_NK : NK ;
+fun pengerta'a'_VK : VK ;
+fun pengonta_NK : NK ;
+fun peni_NK : NK ;
+fun penikka_NK : NK ;
+--+ fun penikkamaisesti_AdvK : AdvK ;
+fun penikkamaisuus_NK : NK ;
+fun penikoida_VK : VK ;
+fun penikointi_NK : NK ;
+fun penis_NK : NK ;
+fun penisilliini_NK : NK ;
+fun penkere_NK : NK ;
+fun penkereinen_NK : NK ;
+--? fun penkinpainajaiset_NK : NK ;
+fun penkka_NK : NK ;
+--? fun penkkarit_NK : NK ;
+fun penkki_NK : NK ;
+fun penkoa_VK : VK ;
+fun pennalismi_NK : NK ;
+fun penne_NK : NK ;
+fun penni_NK : NK ;
+fun penninen_NK : NK ;
+fun pennito'n_NK : NK ;
+fun pennonen_NK : NK ;
+fun penny_NK : NK ;
+fun pensa_NK : NK ;
+fun pensaikko_NK : NK ;
+fun pensaikkoinen_NK : NK ;
+fun pensainen_NK : NK ;
+fun pensaisto_NK : NK ;
+fun pensas_NK : NK ;
+--+ fun pensasmaisesti_AdvK : AdvK ;
+fun pensasmaisuus_NK : NK ;
+fun pensastaa_VK : VK ;
+fun pensasto_NK : NK ;
+fun pensastua_VK : VK ;
+fun penseys_NK : NK ;
+fun pensea'_AK : AK ;
+--+ fun pensea'sti_AdvK : AdvK ;
+fun pensionaatti_NK : NK ;
+fun penska_NK : NK ;
+fun penslata_VK : VK ;
+fun penslaus_NK : NK ;
+fun pensoa_VK : VK ;
+fun pensoittua_VK : VK ;
+fun pensseli_NK : NK ;
+fun pensselo'ida'_VK : VK ;
+fun pentaani_NK : NK ;
+fun pentaedri_NK : NK ;
+fun pentagoni_NK : NK ;
+fun pentagrammi_NK : NK ;
+fun pentametri_NK : NK ;
+fun pentele_AK : AK ;
+--+ fun penteleesti_AdvK : AdvK ;
+fun pentteri_NK : NK ;
+fun pentu_NK : NK ;
+fun pentue_NK : NK ;
+--+ fun pentumaisesti_AdvK : AdvK ;
+fun pentumaisuus_NK : NK ;
+fun pena'ta'_VK : VK ;
+fun peoni_1_NK : NK ;
+fun peoni_2_NK : NK ;
+fun pepino_NK : NK ;
+fun peppu_NK : NK ;
+fun pepsiini_NK : NK ;
+fun peptidi_NK : NK ;
+fun per_AdvK : AdvK ;
+fun perata_VK : VK ;
+fun perehdytta'ja'_NK : NK ;
+fun perehdytta'a'_VK : VK ;
+fun perehtymys_NK : NK ;
+fun perehtyneisyys_NK : NK ;
+fun perehtya'_VK : VK ;
+fun peremma'_AdvK : AdvK ;
+fun peremma'ksi_AdvK : AdvK ;
+fun peremma'lle_AdvK : AdvK ;
+fun peremma'lla'_AdvK : AdvK ;
+fun peremma'lta'_AdvK : AdvK ;
+fun peremma's_AdvK : AdvK ;
+fun perempi_NK : NK ;
+fun perempa'na'_AdvK : AdvK ;
+fun perempa'a'_AdvK : AdvK ;
+fun perenna_NK : NK ;
+fun perennoida_VK : VK ;
+fun perestroika_NK : NK ;
+fun perfekti_NK : NK ;
+fun perfektionismi_NK : NK ;
+fun perfektionisti_NK : NK ;
+fun perfektionistinen_NK : NK ;
+fun perforaatio_NK : NK ;
+fun performanssi_NK : NK ;
+fun perforoida_VK : VK ;
+fun perforointi_NK : NK ;
+fun pergamentti_NK : NK ;
+fun pergamiini_NK : NK ;
+fun pergola_NK : NK ;
+fun perhananmoinen_NK : NK ;
+--+ fun perhanasti_AdvK : AdvK ;
+fun perhe_NK : NK ;
+fun perheellinen_NK : NK ;
+fun perheeto'n_NK : NK ;
+fun perheinen_NK : NK ;
+fun perheitta'in_AdvK : AdvK ;
+fun perho_NK : NK ;
+fun perhonen_NK : NK ;
+fun perhostaa_VK : VK ;
+fun perhostella_VK : VK ;
+fun periaatteeton_NK : NK ;
+fun periaatteettomuus_NK : NK ;
+fun periaatteinen_NK : NK ;
+fun peridotiitti_NK : NK ;
+fun perifeerinen_NK : NK ;
+fun perifeerisyys_NK : NK ;
+fun periferia_NK : NK ;
+fun perija'_NK : NK ;
+fun perija'ta'r_NK : NK ;
+fun periksi_AdvK : AdvK ;
+fun perille_AdvK : AdvK ;
+fun perillinen_NK : NK ;
+fun perilla'_AdvK : AdvK ;
+fun perimmilta'a'n_AdvK : AdvK ;
+fun perimma'inen_NK : NK ;
+fun perimma'lta'_AdvK : AdvK ;
+fun perimma'lta'a'n_AdvK : AdvK ;
+fun perimys_NK : NK ;
+fun perima'_NK : NK ;
+fun perin_1_AdvK : AdvK ;
+fun perin_2_AdvK : AdvK ;
+fun perinataaliaika_NK : NK ;
+fun perinataalinen_NK : NK ;
+fun perinatologia_NK : NK ;
+fun perin_juurin_AdvK : AdvK ;
+fun perinne_NK : NK ;
+fun perinna'inen_AK : AK ;
+--+ fun perinna'isesti_AdvK : AdvK ;
+fun perinno'llinen_NK : NK ;
+fun perinno'llisyys_NK : NK ;
+fun perinno'nja'tta'ja'_NK : NK ;
+fun perinno'to'n_NK : NK ;
+--+ fun perinpohjaisesti_AdvK : AdvK ;
+fun perin_pohjin_AdvK : AdvK ;
+fun perinteellinen_AK : AK ;
+--+ fun perinteellisesti_AdvK : AdvK ;
+fun perinteellisyys_NK : NK ;
+fun perinteika's_NK : NK ;
+--+ fun perinteisesti_AdvK : AdvK ;
+fun perinteisyys_NK : NK ;
+fun perinta'_NK : NK ;
+fun perinto'_NK : NK ;
+fun periodeittain_AdvK : AdvK ;
+fun periodi_NK : NK ;
+fun periodinen_AK : AK ;
+--+ fun periodisesti_AdvK : AdvK ;
+fun periodisuus_NK : NK ;
+fun peripohjalaisuus_NK : NK ;
+fun periskooppi_NK : NK ;
+fun peristaltiikka_NK : NK ;
+fun peristalttinen_NK : NK ;
+fun periytta'a'_VK : VK ;
+fun periytya'_VK : VK ;
+fun peria'_VK : VK ;
+fun perjantai_NK : NK ;
+fun perjantainen_NK : NK ;
+fun perjantaisin_AdvK : AdvK ;
+fun perkaaja_NK : NK ;
+fun perkaus_NK : NK ;
+--? fun perkeet_NK : NK ;
+fun perkele_AK : AK ;
+fun perkeleellinen_NK : NK ;
+fun perkeleenmoinen_NK : NK ;
+--+ fun perkeleesti_AdvK : AdvK ;
+fun perkio'_NK : NK ;
+fun perkule_NK : NK ;
+fun perkussio_NK : NK ;
+fun permanentata_VK : VK ;
+fun permanentti_NK : NK ;
+fun permeaabeli_NK : NK ;
+fun permeabiliteetti_NK : NK ;
+fun permila'inen_NK : NK ;
+fun permis_NK : NK ;
+fun perna_NK : NK ;
+fun pernisioosi_NK : NK ;
+fun pernisioosinen_NK : NK ;
+fun pernisio'o'si_NK : NK ;
+fun peroksidaasi_NK : NK ;
+fun persaukinen_NK : NK ;
+--? fun persaukset_NK : NK ;
+fun perse_NK : NK ;
+fun perseennuolija_NK : NK ;
+fun persia_NK : NK ;
+fun persikka_NK : NK ;
+fun persilja_NK : NK ;
+fun persiljavoi_NK : NK ;
+fun persimoni_NK : NK ;
+--? fun perskat_NK : NK ;
+fun persla'pi_NK : NK ;
+fun persnetto_NK : NK ;
+fun perso_NK : NK ;
+fun personifikaatio_NK : NK ;
+fun personifioida_VK : VK ;
+fun personifiointi_NK : NK ;
+fun personoida_VK : VK ;
+fun personointi_NK : NK ;
+fun personoitua_VK : VK ;
+fun personoituma_NK : NK ;
+fun persoona_NK : NK ;
+fun persoonainen_NK : NK ;
+fun persoonallinen_AK : AK ;
+--+ fun persoonallisesti_AdvK : AdvK ;
+fun persoonallisuus_NK : NK ;
+fun persoonaton_NK : NK ;
+fun persoonattomasti_AdvK : AdvK ;
+fun persoonattomuus_NK : NK ;
+fun perspektiivi_NK : NK ;
+fun perspektiivinen_NK : NK ;
+--? fun persukset_NK : NK ;
+--? fun persuukset_NK : NK ;
+fun peru_NK : NK ;
+fun perua_VK : VK ;
+fun peruke_NK : NK ;
+fun perukka_NK : NK ;
+fun peruna_NK : NK ;
+fun perunankuori_NK : NK ;
+fun perus_NK : NK ;
+fun perusta_NK : NK ;
+fun perustaa_VK : VK ;
+fun perustainen_NK : NK ;
+fun perustaja_NK : NK ;
+fun perustanta_NK : NK ;
+fun peruste_NK : NK ;
+fun perusteellinen_AK : AK ;
+--+ fun perusteellisesti_AdvK : AdvK ;
+fun perusteellisuus_NK : NK ;
+fun perusteeton_NK : NK ;
+fun perusteettomasti_AdvK : AdvK ;
+fun perusteettomuus_NK : NK ;
+fun perusteilla_AdvK : AdvK ;
+fun perustella_VK : VK ;
+fun perustelu_NK : NK ;
+fun perustua_VK : VK ;
+fun perustus_NK : NK ;
+fun peruuntua_VK : VK ;
+fun peruuttaa_VK : VK ;
+fun peruuttamaton_NK : NK ;
+fun peruuttamattomasti_AdvK : AdvK ;
+fun peruuttamattomuus_NK : NK ;
+fun peruutua_VK : VK ;
+fun peruutus_NK : NK ;
+fun perversiteetti_NK : NK ;
+fun perverssi_NK : NK ;
+fun perverssiys_NK : NK ;
+fun pervo_NK : NK ;
+fun pera'_NK : NK ;
+fun pera'inen_NK : NK ;
+fun pera'isin_AdvK : AdvK ;
+fun pera'kanaa_AdvK : AdvK ;
+fun pera'kaneetti_NK : NK ;
+fun pera'kka'in_AdvK : AdvK ;
+fun pera'kka'inen_AK : AK ;
+--+ fun pera'kka'isesti_AdvK : AdvK ;
+fun pera'kka'isyys_NK : NK ;
+fun pera'lle_AdvK : AdvK ;
+fun pera'llinen_NK : NK ;
+fun pera'lla'_AdvK : AdvK ;
+fun pera'lta'_AdvK : AdvK ;
+fun pera'miehellinen_NK : NK ;
+fun pera'mieheto'n_NK : NK ;
+fun pera'prutku_NK : NK ;
+fun pera'pukama_NK : NK ;
+fun pera'sin_NK : NK ;
+fun pera'ssa'_AdvK : AdvK ;
+fun pera'sta'_AdvK : AdvK ;
+fun pera'ti_AdvK : AdvK ;
+fun pera'tta'in_AdvK : AdvK ;
+fun pera'tta'inen_AK : AK ;
+--+ fun pera'tta'isesti_AdvK : AdvK ;
+fun pera'tta'isyys_NK : NK ;
+fun pera'tto'myys_NK : NK ;
+fun pera'tto'ma'sti_AdvK : AdvK ;
+fun pera'tuuppari_NK : NK ;
+fun pera'tyksin_AdvK : AdvK ;
+fun pera'tysten_AdvK : AdvK ;
+fun pera'ta'_VK : VK ;
+fun pera'to'n_NK : NK ;
+fun pera'ytta'a'_VK : VK ;
+fun pera'ytya'_VK : VK ;
+fun pera'a'n_AdvK : AdvK ;
+fun pera'a'nantamaton_NK : NK ;
+fun pera'a'nantamattomasti_AdvK : AdvK ;
+fun pera'a'nantamattomuus_NK : NK ;
+fun pera'a'nantava_NK : NK ;
+fun pera'a'ntya'_VK : VK ;
+fun pesaista_VK : VK ;
+fun peseta_NK : NK ;
+fun pesetta'a'_VK : VK ;
+fun peseytya'_VK : VK ;
+fun pesiintya'_VK : VK ;
+fun pesija'_1_NK : NK ;
+fun pesija'_2_NK : NK ;
+fun pesima'aika_NK : NK ;
+fun pesin_NK : NK ;
+fun pesinta'_NK : NK ;
+fun pesis_NK : NK ;
+fun pesiytya'_VK : VK ;
+fun pesia'_VK : VK ;
+fun peski_NK : NK ;
+fun peso_NK : NK ;
+fun pessaari_NK : NK ;
+fun pessimismi_NK : NK ;
+fun pessimisti_NK : NK ;
+fun pessimistinen_AK : AK ;
+--+ fun pessimistisesti_AdvK : AdvK ;
+fun pessimistisyys_NK : NK ;
+fun pestata_VK : VK ;
+fun pestaus_NK : NK ;
+fun pestautua_VK : VK ;
+fun pesti_NK : NK ;
+fun pestisidi_NK : NK ;
+fun pesto_NK : NK ;
+fun pestuu_NK : NK ;
+fun pesta'_VK : VK ;
+fun pesu_NK : NK ;
+fun pesue_NK : NK ;
+fun pesula_NK : NK ;
+fun pesuri_NK : NK ;
+fun pesye_NK : NK ;
+fun pesa'_NK : NK ;
+fun pesa'juuri_NK : NK ;
+fun pesa'ke_NK : NK ;
+fun pesa'llinen_NK : NK ;
+fun pesa'pallisti_NK : NK ;
+fun petankisti_NK : NK ;
+fun petankki_NK : NK ;
+fun petanque_NK : NK ;
+fun petata_VK : VK ;
+fun petaus_NK : NK ;
+fun peti_NK : NK ;
+fun petiitti_NK : NK ;
+fun petkel_NK : NK ;
+fun petkele_NK : NK ;
+fun petkuttaa_VK : VK ;
+fun petkuttaja_NK : NK ;
+fun petkutus_NK : NK ;
+fun peto_NK : NK ;
+fun petoksellinen_AK : AK ;
+--+ fun petoksellisesti_AdvK : AdvK ;
+fun petollinen_AK : AK ;
+--+ fun petollisesti_AdvK : AdvK ;
+fun petollisuus_NK : NK ;
+--+ fun petomaisesti_AdvK : AdvK ;
+fun petomaisuus_NK : NK ;
+fun petos_NK : NK ;
+fun petrata_VK : VK ;
+fun petraus_NK : NK ;
+fun petroli_NK : NK ;
+fun petrologi_NK : NK ;
+fun petrologia_NK : NK ;
+fun petrologinen_NK : NK ;
+fun petsata_VK : VK ;
+fun petsaus_NK : NK ;
+fun petsi_NK : NK ;
+fun petting_NK : NK ;
+fun pettu_NK : NK ;
+fun petturi_NK : NK ;
+fun petturuus_NK : NK ;
+fun pettymys_NK : NK ;
+fun pettya'_VK : VK ;
+fun petta'ja'_NK : NK ;
+fun petta'ma'tto'ma'sti_AdvK : AdvK ;
+fun petta'ma'to'n_NK : NK ;
+fun petta'a'_VK : VK ;
+fun petunia_NK : NK ;
+fun peta'jikko'_NK : NK ;
+fun peta'jisto'_NK : NK ;
+fun peta'ja'_NK : NK ;
+fun peta'ja'inen_NK : NK ;
+fun peta'ja'nkuori_NK : NK ;
+fun peuhata_VK : VK ;
+fun peukalo_NK : NK ;
+fun peukaloida_VK : VK ;
+fun peukaloinen_NK : NK ;
+fun peukalokyytila'inen_NK : NK ;
+fun peukku_NK : NK ;
+fun peura_NK : NK ;
+fun peuranvasa_NK : NK ;
+fun pH_AdvK : AdvK ;
+fun phui_AdvK : AdvK ;
+fun phyi_AdvK : AdvK ;
+fun piakkoin_AdvK : AdvK ;
+fun pian_AdvK : AdvK ;
+fun pianissimo_NK : NK ;
+fun pianisti_NK : NK ;
+fun pianistinen_NK : NK ;
+fun piano_NK : NK ;
+fun piccolo_NK : NK ;
+fun pick_up_NK : NK ;
+fun picnic_NK : NK ;
+fun pidella'_VK : VK ;
+fun pidennys_NK : NK ;
+fun pidentyma'_NK : NK ;
+fun pidentya'_VK : VK ;
+fun pidenta'a'_VK : VK ;
+fun pideta'_VK : VK ;
+fun pidike_NK : NK ;
+fun pidin_NK : NK ;
+--? fun pidot_NK : NK ;
+fun pida'ke_NK : NK ;
+fun pida'kkeetto'ma'sti_AdvK : AdvK ;
+fun pida'kkeeto'n_NK : NK ;
+fun pida'tella'_VK : VK ;
+fun pida'tetty_NK : NK ;
+fun pida'tin_NK : NK ;
+fun pida'ttynyt_NK : NK ;
+fun pida'ttyvyys_NK : NK ;
+fun pida'ttyva'_AK : AK ;
+fun pida'ttyva'inen_AK : AK ;
+--+ fun pida'ttyva'isesti_AdvK : AdvK ;
+--+ fun pida'ttyva'sti_AdvK : AdvK ;
+fun pida'ttya'_VK : VK ;
+fun pida'tta'ytya'_VK : VK ;
+fun pida'tta'a'_VK : VK ;
+fun pida'tys_NK : NK ;
+fun pida'tytta'a'_VK : VK ;
+fun piehtaroida_VK : VK ;
+fun piehtarointi_NK : NK ;
+fun piekana_NK : NK ;
+fun pieksu_NK : NK ;
+fun pieksa'nta'_NK : NK ;
+fun pieksa'a'_VK : VK ;
+fun pieles_NK : NK ;
+fun pielestys_NK : NK ;
+fun pielesta'a'_VK : VK ;
+fun pieli_NK : NK ;
+fun pielikki_NK : NK ;
+fun pielus_NK : NK ;
+fun piena_NK : NK ;
+fun pieneksya'_VK : VK ;
+fun pienennys_NK : NK ;
+fun pienenno's_NK : NK ;
+fun pienentya'_VK : VK ;
+fun pienenta'a'_VK : VK ;
+fun pieneta'_VK : VK ;
+fun pieni_NK : NK ;
+fun pienia'_VK : VK ;
+fun piennar_NK : NK ;
+fun pienoinen_NK : NK ;
+fun pienoiskoko_NK : NK ;
+fun pienoismaalaus_NK : NK ;
+fun pienoisralli_NK : NK ;
+fun pienokainen_NK : NK ;
+fun pientare_NK : NK ;
+fun pienuus_NK : NK ;
+fun pieraista_VK : VK ;
+fun piereksia'_VK : VK ;
+fun piereskella'_VK : VK ;
+fun pieretta'a'_VK : VK ;
+fun pierra'_VK : VK ;
+fun pieru_NK : NK ;
+fun piesta'_VK : VK ;
+fun pieteetti_NK : NK ;
+fun pieteettinen_AK : AK ;
+--+ fun pieteettisesti_AdvK : AdvK ;
+fun pieti_NK : NK ;
+fun pietismi_NK : NK ;
+fun pietisti_NK : NK ;
+fun pietistinen_NK : NK ;
+fun pieta'_VK : VK ;
+fun piffata_VK : VK ;
+fun pigmentoitua_VK : VK ;
+fun pigmentti_NK : NK ;
+fun pigmenttinen_NK : NK ;
+fun piha_NK : NK ;
+fun pihahdella_VK : VK ;
+fun pihahdus_NK : NK ;
+fun pihahtaa_VK : VK ;
+fun pihatto_NK : NK ;
+fun pihaus_NK : NK ;
+fun pihdata_VK : VK ;
+fun pihdit_NK : NK ;
+fun pihi_NK : NK ;
+fun pihina'_NK : NK ;
+fun pihistella'_VK : VK ;
+fun pihista'_VK : VK ;
+fun pihista'a'_VK : VK ;
+fun pihia'_VK : VK ;
+fun pihka_NK : NK ;
+fun pihkaantua_VK : VK ;
+fun pihkainen_NK : NK ;
+fun pihkoittua_VK : VK ;
+fun pihlaja_NK : NK ;
+fun pihta_NK : NK ;
+fun pihtaaja_NK : NK ;
+fun pihtari_NK : NK ;
+fun pihtima'inen_NK : NK ;
+fun pihtipolvisuus_NK : NK ;
+fun pihvi_NK : NK ;
+fun pii_1_NK : NK ;
+fun pii_2_NK : NK ;
+fun pii_3_NK : NK ;
+fun piidioksidi_NK : NK ;
+fun piihin_AdvK : AdvK ;
+fun piika_NK : NK ;
+fun piikata_VK : VK ;
+fun piikikkyys_NK : NK ;
+--+ fun piikikka'a'sti_AdvK : AdvK ;
+fun piikika's_AK : AK ;
+fun piikitella'_VK : VK ;
+fun piikittely_NK : NK ;
+fun piikitta'a'_VK : VK ;
+fun piikitys_NK : NK ;
+fun piikkari_NK : NK ;
+fun piikkaus_NK : NK ;
+fun piikki_NK : NK ;
+fun piikkinen_NK : NK ;
+fun piikko_NK : NK ;
+fun piikoa_VK : VK ;
+fun piileksija'_NK : NK ;
+fun piileksia'_VK : VK ;
+fun piileskelija'_NK : NK ;
+fun piileskella'_VK : VK ;
+fun piilevyys_NK : NK ;
+fun piilla'_VK : VK ;
+fun piilo_NK : NK ;
+fun piilokas_NK : NK ;
+fun piilokiveksisyys_NK : NK ;
+fun piilosilla_AdvK : AdvK ;
+fun piilotella_VK : VK ;
+fun piilottaa_VK : VK ;
+fun piilottautua_VK : VK ;
+fun piiloutua_VK : VK ;
+fun piilovaikuttaminen_NK : NK ;
+fun piilu_NK : NK ;
+fun piiluta_VK : VK ;
+fun piimitta'a'_VK : VK ;
+fun piimia'_VK : VK ;
+fun piima'_NK : NK ;
+fun piima'inen_NK : NK ;
+fun piina_NK : NK ;
+fun piinallinen_AK : AK ;
+--+ fun piinallisesti_AdvK : AdvK ;
+fun piinallisuus_NK : NK ;
+fun piinata_VK : VK ;
+fun piintymys_NK : NK ;
+fun piintyma'_NK : NK ;
+fun piintya'_VK : VK ;
+fun piip_AdvK : AdvK ;
+fun piipahdus_NK : NK ;
+fun piipahtaa_VK : VK ;
+fun piipata_1_VK : VK ;
+fun piipata_2_VK : VK ;
+fun piiperrys_NK : NK ;
+fun piiperta'a'_VK : VK ;
+fun piipitta'a'_VK : VK ;
+fun piipitys_NK : NK ;
+fun piipottaa_VK : VK ;
+fun piippaus_1_NK : NK ;
+fun piippaus_2_NK : NK ;
+fun piippo_NK : NK ;
+fun piippu_NK : NK ;
+fun piipullinen_NK : NK ;
+fun piiputtaa_VK : VK ;
+fun piiranen_NK : NK ;
+fun piiras_NK : NK ;
+fun piireitta'in_AdvK : AdvK ;
+fun piiri_NK : NK ;
+fun piiritta'ja'_NK : NK ;
+fun piiritta'a'_VK : VK ;
+fun piiritys_NK : NK ;
+fun piironki_NK : NK ;
+fun piirre_NK : NK ;
+fun piirrella'_VK : VK ;
+fun piirrin_NK : NK ;
+fun piirros_NK : NK ;
+fun piirra'tta'a'_VK : VK ;
+fun piirteinen_NK : NK ;
+fun piirtely_NK : NK ;
+fun piirto_NK : NK ;
+fun piirturi_NK : NK ;
+fun piirtya'_VK : VK ;
+fun piirta'ja'_NK : NK ;
+fun piirta'a'_VK : VK ;
+fun piiru_1_NK : NK ;
+fun piiru_2_NK : NK ;
+fun piirustaa_VK : VK ;
+fun piirustella_VK : VK ;
+fun piirustuksellinen_NK : NK ;
+fun piirustus_NK : NK ;
+fun piisami_NK : NK ;
+fun piisata_VK : VK ;
+fun piisi_1_NK : NK ;
+fun piisi_2_NK : NK ;
+fun piiska_NK : NK ;
+fun piiskata_VK : VK ;
+fun piiskaus_NK : NK ;
+fun piisku_NK : NK ;
+fun piiskuri_NK : NK ;
+fun piiskuttaa_VK : VK ;
+fun piisoni_NK : NK ;
+fun piispa_NK : NK ;
+fun piispatar_NK : NK ;
+fun piispuus_NK : NK ;
+fun piissa'_AdvK : AdvK ;
+fun piitata_VK : VK ;
+fun piittaamaton_NK : NK ;
+fun piittaamattomasti_AdvK : AdvK ;
+fun piittaamattomuus_NK : NK ;
+fun pikaa_AdvK : AdvK ;
+fun pikainen_AK : AK ;
+--+ fun pikaisesti_AdvK : AdvK ;
+fun pikaistua_VK : VK ;
+fun pikaistuksissa_AdvK : AdvK ;
+fun pikaistuksissaan_AdvK : AdvK ;
+fun pikantisti_AdvK : AdvK ;
+fun pikantti_NK : NK ;
+fun pikanttius_NK : NK ;
+fun pikapuoliin_AdvK : AdvK ;
+fun pikapuolin_AdvK : AdvK ;
+fun pikari_NK : NK ;
+fun pikarillinen_NK : NK ;
+fun pikee_NK : NK ;
+fun pikeentya'_VK : VK ;
+fun pikemmin_AdvK : AdvK ;
+fun pikeys_NK : NK ;
+fun pikeytya'_VK : VK ;
+fun piki_NK : NK ;
+fun pikiintya'_VK : VK ;
+fun pikimmilta'_AdvK : AdvK ;
+fun pikimmilta'a'n_AdvK : AdvK ;
+fun pikimmin_AdvK : AdvK ;
+fun pikimmiten_AdvK : AdvK ;
+fun pikimma'lta'_AdvK : AdvK ;
+fun pikimma'lta'a'n_AdvK : AdvK ;
+fun pikinen_NK : NK ;
+fun pikkainen_NK : NK ;
+fun pikkanen_NK : NK ;
+fun pikkarainen_NK : NK ;
+fun pikkelssi_NK : NK ;
+fun pikkiriikkinen_NK : NK ;
+fun pikkolo_NK : NK ;
+fun pikku_AdvK : AdvK ;
+fun pikkuinen_NK : NK ;
+fun pikkuisen_AdvK : AdvK ;
+fun pikkulilli_NK : NK ;
+--+ fun pikkumaisesti_AdvK : AdvK ;
+fun pikkumaisuus_NK : NK ;
+fun pikkupurtava_NK : NK ;
+fun pikkuriikkinen_NK : NK ;
+fun pikkurilli_NK : NK ;
+fun pikkuruikkuinen_NK : NK ;
+fun pikkuruinen_NK : NK ;
+fun pikkutakkisillaan_AdvK : AdvK ;
+--+ fun pikkuvanhasti_AdvK : AdvK ;
+fun piknikki_NK : NK ;
+fun pila_NK : NK ;
+fun pilaaja_NK : NK ;
+fun pilaantua_VK : VK ;
+fun pilahvi_NK : NK ;
+fun pilailla_VK : VK ;
+fun pilailu_NK : NK ;
+fun pilalla_AdvK : AdvK ;
+fun pilalle_AdvK : AdvK ;
+fun pilallinen_NK : NK ;
+fun pilari_NK : NK ;
+fun pilaristo_NK : NK ;
+fun pilasteri_NK : NK ;
+fun pilata_VK : VK ;
+fun piletti_NK : NK ;
+fun pilipali_NK : NK ;
+fun pilkahdella_VK : VK ;
+fun pilkahdus_NK : NK ;
+fun pilkahtaa_VK : VK ;
+fun pilkallaan_AdvK : AdvK ;
+fun pilkallinen_AK : AK ;
+--+ fun pilkallisesti_AdvK : AdvK ;
+fun pilkallisuus_NK : NK ;
+fun pilkata_VK : VK ;
+fun pilke_1_NK : NK ;
+fun pilke_2_NK : NK ;
+fun pilkinta'_NK : NK ;
+fun pilkistella'_VK : VK ;
+fun pilkistys_NK : NK ;
+fun pilkista'a'_VK : VK ;
+fun pilkka_1_NK : NK ;
+fun pilkka_2_NK : NK ;
+fun pilkkaaja_NK : NK ;
+fun pilkki_NK : NK ;
+fun pilkkija'_NK : NK ;
+fun pilkkia'_VK : VK ;
+fun pilkkoa_VK : VK ;
+fun pilkkoisen_AdvK : AdvK ;
+fun pilkkoja_NK : NK ;
+fun pilkkoutua_VK : VK ;
+fun pilkku_NK : NK ;
+fun pilkkuinen_NK : NK ;
+fun pilkkumi_NK : NK ;
+fun pilkoittaa_VK : VK ;
+fun pilkoitus_NK : NK ;
+fun pilkottaa_VK : VK ;
+fun pilkukas_NK : NK ;
+fun pilkullinen_NK : NK ;
+fun pilkuttaa_VK : VK ;
+fun pilkutus_NK : NK ;
+fun pillahtaa_VK : VK ;
+fun pillastua_VK : VK ;
+fun pilleri_NK : NK ;
+fun pillerinpyo'ritta'ja'_NK : NK ;
+fun pilleristi_NK : NK ;
+fun pilli_NK : NK ;
+fun pillike_NK : NK ;
+fun pillipiipari_NK : NK ;
+fun pillisto'_NK : NK ;
+fun pillitta'ja'_NK : NK ;
+fun pillitta'a'_VK : VK ;
+fun pillu_NK : NK ;
+fun piloilla_AdvK : AdvK ;
+fun piloillaan_AdvK : AdvK ;
+fun piloille_AdvK : AdvK ;
+fun pilotti_NK : NK ;
+fun pilsneri_NK : NK ;
+fun pilssi_NK : NK ;
+fun piltti_NK : NK ;
+fun pilttuinen_NK : NK ;
+fun pilttuu_NK : NK ;
+fun pilveilla'_VK : VK ;
+fun pilveta'_VK : VK ;
+fun pilveto'n_NK : NK ;
+fun pilvi_NK : NK ;
+fun pilvinen_NK : NK ;
+fun pilvistya'_VK : VK ;
+fun pilvisyys_NK : NK ;
+fun pimahtaa_VK : VK ;
+fun pimennys_NK : NK ;
+fun pimento_NK : NK ;
+fun pimentya'_VK : VK ;
+fun pimenta'a'_VK : VK ;
+fun pimeta'_VK : VK ;
+fun pimeys_NK : NK ;
+fun pimea'_AK : AK ;
+--+ fun pimea'sti_AdvK : AdvK ;
+fun pimitta'a'_VK : VK ;
+fun pimitys_NK : NK ;
+fun pimio'_NK : NK ;
+fun pimppi_NK : NK ;
+fun pimputtaa_VK : VK ;
+fun pimputus_NK : NK ;
+fun pimu_NK : NK ;
+fun pinaatti_NK : NK ;
+fun pineeni_NK : NK ;
+fun pingis_NK : NK ;
+fun pingotin_NK : NK ;
+fun pingottaa_VK : VK ;
+fun pingottaja_NK : NK ;
+fun pingottua_VK : VK ;
+fun pingotus_NK : NK ;
+fun pingpong_NK : NK ;
+fun pingviini_NK : NK ;
+fun pinja_NK : NK ;
+fun pinkaista_VK : VK ;
+fun pinkka_NK : NK ;
+fun pinkki_NK : NK ;
+fun pinko_NK : NK ;
+fun pinkoa_VK : VK ;
+fun pinkoittain_AdvK : AdvK ;
+fun pinna_NK : NK ;
+fun pinnaaja_NK : NK ;
+fun pinnakkain_AdvK : AdvK ;
+fun pinnakkainen_NK : NK ;
+fun pinnallinen_AK : AK ;
+--+ fun pinnallisesti_AdvK : AdvK ;
+fun pinnallistaa_VK : VK ;
+fun pinnallistua_VK : VK ;
+fun pinnallisuus_NK : NK ;
+fun pinnari_NK : NK ;
+fun pinnata_VK : VK ;
+fun pinnaus_NK : NK ;
+fun pinne_NK : NK ;
+fun pinnemmaksi_AdvK : AdvK ;
+fun pinnemmalla_AdvK : AdvK ;
+fun pinnemmalle_AdvK : AdvK ;
+fun pinnemmalta_AdvK : AdvK ;
+fun pinnemmassa_AdvK : AdvK ;
+fun pinnemmasta_AdvK : AdvK ;
+fun pinnempaa_AdvK : AdvK ;
+fun pinnempaan_AdvK : AdvK ;
+fun pinnempana_AdvK : AdvK ;
+fun pinni_NK : NK ;
+fun pinnistella'_VK : VK ;
+fun pinnistys_NK : NK ;
+fun pinnistya'_VK : VK ;
+fun pinnista'a'_VK : VK ;
+fun pinnia'_VK : VK ;
+fun pinnoite_NK : NK ;
+fun pinnoittaa_VK : VK ;
+fun pinnoitteinen_NK : NK ;
+fun pinnoitus_NK : NK ;
+fun pino_NK : NK ;
+fun pinota_VK : VK ;
+fun pinseri_NK : NK ;
+fun pinsetit_NK : NK ;
+fun pinssi_NK : NK ;
+fun pinta_NK : NK ;
+fun pintahaava_NK : NK ;
+fun pintainen_NK : NK ;
+fun pintaisuus_NK : NK ;
+--+ fun pintapuolisesti_AdvK : AdvK ;
+fun pintapuolisuus_NK : NK ;
+fun pintautua_VK : VK ;
+fun pintava'reily_NK : NK ;
+fun pinteeseen_AdvK : AdvK ;
+fun pinteessa'_AdvK : AdvK ;
+fun pinteesta'_AdvK : AdvK ;
+fun pinttyma'_NK : NK ;
+fun pinttya'_VK : VK ;
+fun pinyin_NK : NK ;
+fun pioneeri_NK : NK ;
+fun pioni_1_NK : NK ;
+fun pioni_2_NK : NK ;
+fun pipana_NK : NK ;
+fun pipari_NK : NK ;
+fun piparjuuri_NK : NK ;
+fun piperrys_NK : NK ;
+fun piperta'a'_VK : VK ;
+fun pipetoida_VK : VK ;
+fun pipetti_NK : NK ;
+fun pipi_NK : NK ;
+fun piplia_NK : NK ;
+fun pipo_NK : NK ;
+--? fun pippalot_NK : NK ;
+fun pippeli_NK : NK ;
+fun pippuri_NK : NK ;
+fun pippurinen_NK : NK ;
+fun pippuroida_VK : VK ;
+fun piraatti_NK : NK ;
+fun pirahdella_VK : VK ;
+fun pirahdus_NK : NK ;
+fun pirahtaa_VK : VK ;
+fun piraija_NK : NK ;
+fun piratismi_NK : NK ;
+fun piraus_NK : NK ;
+fun pirauttaa_VK : VK ;
+fun pirina'_NK : NK ;
+fun piripinnassa_AdvK : AdvK ;
+fun piripintaan_AdvK : AdvK ;
+fun piripintanaan_AdvK : AdvK ;
+fun piriste_NK : NK ;
+fun piristys_NK : NK ;
+fun piristya'_VK : VK ;
+fun pirista'_VK : VK ;
+fun pirista'ytya'_VK : VK ;
+fun pirista'a'_VK : VK ;
+fun pirkkalainen_NK : NK ;
+fun pirpana_NK : NK ;
+fun pirskahdella_VK : VK ;
+fun pirskahdus_NK : NK ;
+fun pirskahtaa_VK : VK ;
+fun pirskatti_NK : NK ;
+fun pirskauttaa_VK : VK ;
+fun pirske_NK : NK ;
+fun pirskottaa_VK : VK ;
+fun pirskotus_NK : NK ;
+fun pirskua_VK : VK ;
+fun pirssi_NK : NK ;
+fun pirsta_NK : NK ;
+fun pirstale_NK : NK ;
+fun pirstaloitua_VK : VK ;
+fun pirstoa_VK : VK ;
+fun pirstoutua_VK : VK ;
+fun pirta_NK : NK ;
+fun pirtelo'_NK : NK ;
+fun pirteys_NK : NK ;
+fun pirtea'_NK : NK ;
+fun pirtti_NK : NK ;
+fun pirtu_NK : NK ;
+fun piru_AK : AK ;
+fun piruetti_NK : NK ;
+fun piruilla_VK : VK ;
+fun piruilu_NK : NK ;
+fun pirullinen_AK : AK ;
+--+ fun pirullisesti_AdvK : AdvK ;
+fun pirullisuus_NK : NK ;
+fun pirunmoinen_NK : NK ;
+--+ fun pirusti_AdvK : AdvK ;
+fun piruuksissaan_AdvK : AdvK ;
+fun piruuntua_VK : VK ;
+fun piruuttaan_AdvK : AdvK ;
+fun pisama_NK : NK ;
+fun pisamainen_NK : NK ;
+fun pisara_NK : NK ;
+fun pisaroida_VK : VK ;
+fun pisarointi_NK : NK ;
+fun pisi_NK : NK ;
+fun pisia'_VK : VK ;
+fun piski_NK : NK ;
+fun piskuinen_NK : NK ;
+fun pisoaari_NK : NK ;
+fun pissa_NK : NK ;
+fun pissata_VK : VK ;
+fun pissattaa_VK : VK ;
+fun pissi_NK : NK ;
+fun pissitta'a'_VK : VK ;
+fun pissia'_VK : VK ;
+fun pistaasi_NK : NK ;
+fun piste_NK : NK ;
+fun pisteellinen_NK : NK ;
+fun pisteitta'a'_VK : VK ;
+fun pisteitys_NK : NK ;
+fun pistelia'isyys_NK : NK ;
+fun pistelia's_AK : AK ;
+--+ fun pistelia'a'sti_AdvK : AdvK ;
+fun pistella'_VK : VK ;
+fun pistely_NK : NK ;
+fun pistema'inen_NK : NK ;
+fun pisteytta'a'_VK : VK ;
+fun pistin_NK : NK ;
+fun pistia'inen_NK : NK ;
+fun pisto_NK : NK ;
+fun pistohaava_NK : NK ;
+fun pistokas_NK : NK ;
+fun pistoke_NK : NK ;
+fun pistooli_NK : NK ;
+fun pistos_NK : NK ;
+fun pistouvata_VK : VK ;
+fun pista'ma'to'n_NK : NK ;
+fun pista'va'_NK : NK ;
+fun pista'ytya'_VK : VK ;
+fun pista'a'_VK : VK ;
+fun pisu_NK : NK ;
+fun pitaali_NK : NK ;
+fun pitaalinen_NK : NK ;
+fun pitali_NK : NK ;
+fun pitalinen_NK : NK ;
+fun pitelema'to'n_NK : NK ;
+fun pitely_NK : NK ;
+fun pitennys_NK : NK ;
+fun pitentyma'_NK : NK ;
+fun pitentya'_VK : VK ;
+fun pitenta'a'_VK : VK ;
+--? fun pitkikset_NK : NK ;
+fun pitkin_AdvK : AdvK ;
+fun pitkistya'_VK : VK ;
+fun pitkittya'_VK : VK ;
+fun pitkitta'in_AdvK : AdvK ;
+fun pitkitta'inen_NK : NK ;
+fun pitkitta'israita_NK : NK ;
+fun pitkitta'a'_VK : VK ;
+fun pitkitys_NK : NK ;
+fun pitko_NK : NK ;
+fun pitkulainen_NK : NK ;
+fun pitka'_AK : AK ;
+fun pitka'inen_NK : NK ;
+--+ fun pitka'ja'nnitteisesti_AdvK : AdvK ;
+--+ fun pitka'ja'nteisesti_AdvK : AdvK ;
+fun pitka'kseen_AdvK : AdvK ;
+fun pitka'lettinen_NK : NK ;
+fun pitka'lle_AdvK : AdvK ;
+fun pitka'lleen_AdvK : AdvK ;
+fun pitka'llinen_NK : NK ;
+fun pitka'lla'_AdvK : AdvK ;
+fun pitka'lla'a'n_AdvK : AdvK ;
+fun pitka'lti_AdvK : AdvK ;
+--+ fun pitka'mielisesti_AdvK : AdvK ;
+fun pitka'na'a'n_AdvK : AdvK ;
+--+ fun pitka'piima'isesti_AdvK : AdvK ;
+fun pitka'ripainen_NK : NK ;
+--+ fun pitka'sti_AdvK : AdvK ;
+fun pitka'stytta'va'_AK : AK ;
+--+ fun pitka'stytta'va'sti_AdvK : AdvK ;
+fun pitka'stytta'a'_VK : VK ;
+fun pitka'stya'_VK : VK ;
+fun pitka'tukkaisuus_NK : NK ;
+fun pitka'veteinen_AK : AK ;
+--+ fun pitka'veteisesti_AdvK : AdvK ;
+fun pitka'veteisyys_NK : NK ;
+fun pitka'a'n_AdvK : AdvK ;
+fun pito_NK : NK ;
+fun pitoinen_NK : NK ;
+fun pitoisuus_NK : NK ;
+fun pitsa_NK : NK ;
+fun pitseria_NK : NK ;
+fun pitsi_NK : NK ;
+fun pittoreski_NK : NK ;
+fun pituinen_NK : NK ;
+fun pituus_NK : NK ;
+fun pita'en_AdvK : AdvK ;
+fun pita'ja'_NK : NK ;
+fun pita'ja'la'inen_NK : NK ;
+fun pita'mys_NK : NK ;
+fun pita'ma'_NK : NK ;
+fun pita'ma'to'n_NK : NK ;
+fun pita'vyys_NK : NK ;
+fun pita'va'_NK : NK ;
+fun pita'ytya'_VK : VK ;
+fun pita'a'_VK : VK ;
+fun piuha_NK : NK ;
+fun piukasti_AdvK : AdvK ;
+fun piukea_NK : NK ;
+fun piukka_NK : NK ;
+fun piukkuus_NK : NK ;
+fun piupaut_AdvK : AdvK ;
+fun pivo_NK : NK ;
+fun pizza_NK : NK ;
+fun pizzeria_NK : NK ;
+fun pizzicato_NK : NK ;
+fun plaanata_VK : VK ;
+fun plaani_NK : NK ;
+fun plagiaatti_NK : NK ;
+fun plagioida_VK : VK ;
+fun plagioija_NK : NK ;
+fun plagiointi_NK : NK ;
+fun plakaatti_NK : NK ;
+fun plaketti_NK : NK ;
+fun plakkari_NK : NK ;
+fun plakki_NK : NK ;
+fun planeetta_NK : NK ;
+fun planetaarinen_NK : NK ;
+fun planetaario_NK : NK ;
+fun planetoidi_NK : NK ;
+fun plankata_VK : VK ;
+fun plankkaus_NK : NK ;
+fun plankki_NK : NK ;
+fun plankton_NK : NK ;
+fun planssi_NK : NK ;
+fun plantaasi_NK : NK ;
+fun planttu_NK : NK ;
+fun plarata_VK : VK ;
+fun plari_NK : NK ;
+fun plasebo_NK : NK ;
+fun plaseerata_VK : VK ;
+fun plaseeraus_NK : NK ;
+fun plasma_NK : NK ;
+fun plasmidi_NK : NK ;
+fun plasmosyytti_NK : NK ;
+fun plastidi_NK : NK ;
+fun plastiikka_NK : NK ;
+fun plastinen_AK : AK ;
+--+ fun plastisesti_AdvK : AdvK ;
+fun plastisuus_NK : NK ;
+fun plataani_NK : NK ;
+fun platina_NK : NK ;
+fun platinoida_VK : VK ;
+fun platinointi_NK : NK ;
+fun platonilainen_NK : NK ;
+fun platonilaisuus_NK : NK ;
+fun platoninen_NK : NK ;
+fun platonismi_NK : NK ;
+fun platy_NK : NK ;
+fun playback_NK : NK ;
+fun playboy_NK : NK ;
+fun playoff_NK : NK ;
+fun plebeiji_NK : NK ;
+fun pleenumi_NK : NK ;
+fun plektra_NK : NK ;
+fun pleonasmi_NK : NK ;
+fun pleonastinen_NK : NK ;
+fun pliisu_NK : NK ;
+fun plikka_NK : NK ;
+fun pliseerata_VK : VK ;
+fun pliseeraus_NK : NK ;
+fun plombi_NK : NK ;
+fun plombittaa_VK : VK ;
+fun plootu_NK : NK ;
+fun plumpsahdus_NK : NK ;
+fun plumpsahtaa_VK : VK ;
+fun pluraali_NK : NK ;
+fun pluralismi_NK : NK ;
+fun pluralisti_NK : NK ;
+fun pluralistinen_NK : NK ;
+fun plus_AdvK : AdvK ;
+fun pluskvamperfekti_NK : NK ;
+fun plussa_NK : NK ;
+fun plussata_VK : VK ;
+fun plutonium_NK : NK ;
+fun plutoona_NK : NK ;
+fun plyymi_NK : NK ;
+fun plyysi_NK : NK ;
+fun pla'kki_NK : NK ;
+fun pla'si_NK : NK ;
+fun plo'rina'_NK : NK ;
+fun plo'ro'_NK : NK ;
+fun pneumaattinen_AK : AK ;
+--+ fun pneumaattisesti_AdvK : AdvK ;
+fun pneumatiikka_NK : NK ;
+fun pneumonia_NK : NK ;
+fun podsoli_NK : NK ;
+fun poeettinen_NK : NK ;
+fun poetiikka_NK : NK ;
+fun pogromi_NK : NK ;
+fun pohatta_NK : NK ;
+fun pohdin_NK : NK ;
+fun pohdinta_NK : NK ;
+fun pohdiskella_VK : VK ;
+fun pohdiskelu_NK : NK ;
+fun pohja_NK : NK ;
+fun pohja_aika_NK : NK ;
+fun pohjainen_AK : AK ;
+--+ fun pohjaisesti_AdvK : AdvK ;
+fun pohjaisuus_NK : NK ;
+fun pohjalaisittain_AdvK : AdvK ;
+fun pohjallinen_NK : NK ;
+fun pohjamaalata_VK : VK ;
+fun pohjata_VK : VK ;
+fun pohjaton_NK : NK ;
+fun pohjattomasti_AdvK : AdvK ;
+fun pohjaus_NK : NK ;
+fun pohjauttaa_VK : VK ;
+fun pohjautua_VK : VK ;
+fun pohje_NK : NK ;
+fun pohjemmaksi_AdvK : AdvK ;
+fun pohjemmalla_AdvK : AdvK ;
+fun pohjemmalle_AdvK : AdvK ;
+fun pohjemmalta_AdvK : AdvK ;
+fun pohjempaa_AdvK : AdvK ;
+fun pohjempana_AdvK : AdvK ;
+fun pohjimmainen_NK : NK ;
+fun pohjimmaksi_AdvK : AdvK ;
+fun pohjimmalla_AdvK : AdvK ;
+fun pohjimmalle_AdvK : AdvK ;
+fun pohjimmalta_AdvK : AdvK ;
+fun pohjimmaltaan_AdvK : AdvK ;
+fun pohjimmiltaan_AdvK : AdvK ;
+fun pohjimpaa_AdvK : AdvK ;
+fun pohjimpana_AdvK : AdvK ;
+fun pohjittaa_VK : VK ;
+fun pohjoinen_NK : NK ;
+fun pohjoisemmaksi_AdvK : AdvK ;
+fun pohjoisemmas_AdvK : AdvK ;
+fun pohjoisempaa_AdvK : AdvK ;
+fun pohjoisempana_AdvK : AdvK ;
+fun pohjoisraja_NK : NK ;
+fun pohjoisvaltalainen_NK : NK ;
+fun pohjoisviitta_NK : NK ;
+fun pohjola_NK : NK ;
+fun pohjukka_NK : NK ;
+fun pohjus_NK : NK ;
+fun pohjustaa_VK : VK ;
+fun pohjuste_NK : NK ;
+fun pohjustus_NK : NK ;
+fun pohkeinen_NK : NK ;
+fun pohtia_VK : VK ;
+fun poies_AdvK : AdvK ;
+fun poi_inta_NK : NK ;
+fun poi_ittaa_VK : VK ;
+fun poi_itus_NK : NK ;
+fun poiju_NK : NK ;
+fun poijuttaa_VK : VK ;
+fun poijutus_NK : NK ;
+fun poika_NK : NK ;
+--+ fun poikamaisesti_AdvK : AdvK ;
+fun poikamaisuus_NK : NK ;
+fun poikanen_NK : NK ;
+fun poiketa_VK : VK ;
+fun poikia_VK : VK ;
+fun poikittain_AdvK : AdvK ;
+fun poikittainen_NK : NK ;
+fun poikittaisraita_NK : NK ;
+fun poikkaista_VK : VK ;
+fun poikkeama_NK : NK ;
+fun poikkeava_AK : AK ;
+--+ fun poikkeavasti_AdvK : AdvK ;
+fun poikkeavuus_NK : NK ;
+fun poikkeuksellinen_AK : AK ;
+--+ fun poikkeuksellisesti_AdvK : AdvK ;
+fun poikkeuksellisuus_NK : NK ;
+fun poikkeuma_NK : NK ;
+fun poikkeus_NK : NK ;
+fun poikkeuttaa_VK : VK ;
+fun poikki_AdvK : AdvK ;
+fun poikkipuolin_AdvK : AdvK ;
+fun poikkitelainen_NK : NK ;
+fun poikkiteloin_AdvK : AdvK ;
+fun poikue_NK : NK ;
+fun poikuus_NK : NK ;
+fun poikuusaika_NK : NK ;
+fun poimia_VK : VK ;
+fun poimielma_NK : NK ;
+fun poimija_NK : NK ;
+fun poiminta_NK : NK ;
+fun poiminto_NK : NK ;
+fun poimiskella_VK : VK ;
+fun poimu_NK : NK ;
+fun poimuilla_VK : VK ;
+fun poimuinen_NK : NK ;
+fun poimukas_NK : NK ;
+fun poimullinen_NK : NK ;
+fun poimuri_NK : NK ;
+fun poimuttaa_VK : VK ;
+fun poimuttua_VK : VK ;
+fun poimutus_NK : NK ;
+fun poimuuntua_VK : VK ;
+fun pointillismi_NK : NK ;
+fun pointillisti_NK : NK ;
+fun pointillistinen_NK : NK ;
+fun pointsi_NK : NK ;
+fun pointteri_NK : NK ;
+fun pointti_NK : NK ;
+fun pois_AdvK : AdvK ;
+fun poisnukkunut_NK : NK ;
+fun poisoppiminen_NK : NK ;
+fun poispilattu_NK : NK ;
+fun poissa_AdvK : AdvK ;
+fun poistaa_VK : VK ;
+fun poistattaa_VK : VK ;
+fun poiste_NK : NK ;
+fun poistin_NK : NK ;
+fun poisto_NK : NK ;
+fun poistua_VK : VK ;
+fun poitsu_NK : NK ;
+fun poju_NK : NK ;
+fun poka_NK : NK ;
+fun pokaali_NK : NK ;
+fun pokata_1_VK : VK ;
+fun pokata_2_VK : VK ;
+fun pokeri_NK : NK ;
+fun pokka_NK : NK ;
+fun pokkailla_VK : VK ;
+fun pokkari_NK : NK ;
+fun pokkuroida_VK : VK ;
+fun pokkurointi_NK : NK ;
+fun poksahdus_NK : NK ;
+fun poksahtaa_VK : VK ;
+fun poksauttaa_VK : VK ;
+fun poksi_NK : NK ;
+fun pokstaavi_NK : NK ;
+fun pola_NK : NK ;
+fun polaarinen_NK : NK ;
+fun polaarisuus_NK : NK ;
+fun polakka_NK : NK ;
+fun polanne_NK : NK ;
+fun polanteinen_NK : NK ;
+fun polanteisuus_NK : NK ;
+fun polarisaatio_NK : NK ;
+fun polarisoida_VK : VK ;
+fun polarisoitua_VK : VK ;
+fun polariteetti_NK : NK ;
+fun polaroida_VK : VK ;
+fun polaroitua_VK : VK ;
+fun poleemikko_NK : NK ;
+fun poleeminen_AK : AK ;
+--+ fun poleemisesti_AdvK : AdvK ;
+fun poleemisuus_NK : NK ;
+fun polemiikki_NK : NK ;
+fun polemikoida_VK : VK ;
+fun polemikointi_NK : NK ;
+fun polemisoida_VK : VK ;
+fun polemisointi_NK : NK ;
+fun poletti_NK : NK ;
+fun poli_NK : NK ;
+fun poliitikko_NK : NK ;
+fun poliittinen_AK : AK ;
+--+ fun poliittisesti_AdvK : AdvK ;
+fun poliittistaa_VK : VK ;
+fun poliittistua_VK : VK ;
+fun poliittisuus_NK : NK ;
+--+ fun polikliinisesti_AdvK : AdvK ;
+fun polio_NK : NK ;
+fun politbyroo_NK : NK ;
+fun politiikka_NK : NK ;
+fun politikoida_VK : VK ;
+fun politikointi_NK : NK ;
+fun politisoida_VK : VK ;
+fun politisointi_NK : NK ;
+fun politisoitua_VK : VK ;
+fun politologi_NK : NK ;
+fun politologia_NK : NK ;
+fun poljennollinen_AK : AK ;
+--+ fun poljennollisesti_AdvK : AdvK ;
+fun poljenta_NK : NK ;
+fun poljento_NK : NK ;
+fun poljin_NK : NK ;
+fun polkaista_VK : VK ;
+fun polkaisu_NK : NK ;
+fun polkea_VK : VK ;
+fun polkeutua_VK : VK ;
+fun polkka_NK : NK ;
+fun polku_NK : NK ;
+fun polkusin_NK : NK ;
+fun polla_NK : NK ;
+fun pollari_1_NK : NK ;
+fun pollari_2_NK : NK ;
+fun polle_NK : NK ;
+fun pollea_NK : NK ;
+fun polo_NK : NK ;
+fun poloinen_NK : NK ;
+fun poloneesi_NK : NK ;
+fun polonium_NK : NK ;
+fun polottaa_VK : VK ;
+fun polotus_NK : NK ;
+fun polska_NK : NK ;
+fun polskahdus_NK : NK ;
+fun polskahtaa_VK : VK ;
+fun polskaus_NK : NK ;
+fun polskauttaa_VK : VK ;
+fun polski_NK : NK ;
+fun polskia_VK : VK ;
+fun polskuttaa_VK : VK ;
+fun polstari_NK : NK ;
+fun polsteri_NK : NK ;
+fun poltattaa_VK : VK ;
+fun polte_NK : NK ;
+fun poltella_VK : VK ;
+fun polterabend_NK : NK ;
+fun poltergeist_NK : NK ;
+fun poltin_NK : NK ;
+fun polttaa_VK : VK ;
+fun polttaja_NK : NK ;
+fun polttama_NK : NK ;
+--? fun polttarit_NK : NK ;
+fun polttava_NK : NK ;
+fun polttiainen_NK : NK ;
+fun polttimo_NK : NK ;
+fun poltto_NK : NK ;
+fun polttolakata_VK : VK ;
+fun polttomaalata_VK : VK ;
+--? fun polvarit_NK : NK ;
+fun polveilla_VK : VK ;
+fun polveke_NK : NK ;
+fun polveutua_VK : VK ;
+fun polvi_NK : NK ;
+fun polvillaan_AdvK : AdvK ;
+fun polvilleen_AdvK : AdvK ;
+fun polviltaan_AdvK : AdvK ;
+fun polvinen_NK : NK ;
+fun polvistaa_VK : VK ;
+fun polvistua_VK : VK ;
+fun polyamidi_NK : NK ;
+fun polyesteri_NK : NK ;
+fun polyeteeni_NK : NK ;
+fun polyfonia_NK : NK ;
+fun polyfoninen_NK : NK ;
+fun polygaaminen_NK : NK ;
+fun polygamia_NK : NK ;
+fun polyglotti_NK : NK ;
+fun polygoni_NK : NK ;
+fun polymeeri_NK : NK ;
+fun polymeria_NK : NK ;
+fun polymerisaatio_NK : NK ;
+fun polymerisoida_VK : VK ;
+fun polymerisoitua_VK : VK ;
+fun polymeroida_VK : VK ;
+fun polymeroitua_VK : VK ;
+fun polymorfia_NK : NK ;
+fun polynomi_NK : NK ;
+fun polypropeeni_NK : NK ;
+fun polystyreeni_NK : NK ;
+fun polyteismi_NK : NK ;
+fun polyteisti_NK : NK ;
+fun polyteistinen_NK : NK ;
+fun polyuretaani_NK : NK ;
+fun polyyppi_NK : NK ;
+fun pomada_NK : NK ;
+fun pomelo_NK : NK ;
+fun pomeranssi_NK : NK ;
+fun pomeranssinkuori_NK : NK ;
+fun pomiloida_VK : VK ;
+fun pomilointi_NK : NK ;
+fun pommi_1_NK : NK ;
+fun pommi_2_NK : NK ;
+fun pommitella_VK : VK ;
+fun pommittaa_VK : VK ;
+fun pommittaja_NK : NK ;
+fun pommitus_NK : NK ;
+fun pomo_NK : NK ;
+fun pomoilla_VK : VK ;
+fun pomoilu_NK : NK ;
+fun pompahdella_VK : VK ;
+fun pompahdus_NK : NK ;
+fun pompahtaa_VK : VK ;
+fun pompata_VK : VK ;
+fun pompottaa_VK : VK ;
+fun pompotus_NK : NK ;
+fun pomppa_NK : NK ;
+fun pomppaus_NK : NK ;
+fun pomppia_VK : VK ;
+fun pomppoilla_VK : VK ;
+fun pomppu_NK : NK ;
+fun pompula_NK : NK ;
+fun pomsi_NK : NK ;
+fun poncho_NK : NK ;
+fun pondi_NK : NK ;
+fun poni_NK : NK ;
+fun ponkaista_VK : VK ;
+fun ponkaisu_NK : NK ;
+fun ponnahdus_NK : NK ;
+fun ponnahduttaa_VK : VK ;
+fun ponnahtaa_VK : VK ;
+fun ponnauttaa_VK : VK ;
+fun ponnekas_AK : AK ;
+--+ fun ponnekkaasti_AdvK : AdvK ;
+fun ponnekkuus_NK : NK ;
+fun ponneton_NK : NK ;
+fun ponnin_NK : NK ;
+fun ponnistaa_VK : VK ;
+fun ponnistautua_VK : VK ;
+fun ponnistella_VK : VK ;
+fun ponnistelu_NK : NK ;
+fun ponnistus_NK : NK ;
+fun ponsi_NK : NK ;
+fun ponssari_NK : NK ;
+fun pontata_VK : VK ;
+fun ponteva_AK : AK ;
+--+ fun pontevasti_AdvK : AdvK ;
+fun pontevuus_NK : NK ;
+fun pontikka_NK : NK ;
+fun ponttaus_NK : NK ;
+fun pontti_NK : NK ;
+fun ponttoni_NK : NK ;
+fun pooli_1_NK : NK ;
+fun pooli_2_NK : NK ;
+fun poolo_NK : NK ;
+fun pop_NK : NK ;
+fun popata_1_VK : VK ;
+fun popata_2_VK : VK ;
+fun popcorn_NK : NK ;
+fun popliini_NK : NK ;
+fun poplore_NK : NK ;
+fun poppa_NK : NK ;
+fun poppana_NK : NK ;
+fun poppoo_NK : NK ;
+fun popsia_VK : VK ;
+fun populaari_NK : NK ;
+fun populaaristaa_VK : VK ;
+fun populaarius_NK : NK ;
+fun populaatio_NK : NK ;
+fun popularisoida_VK : VK ;
+fun populariteetti_NK : NK ;
+fun populismi_NK : NK ;
+fun populisti_NK : NK ;
+fun populistinen_NK : NK ;
+fun popula'a'ri_NK : NK ;
+fun pora_NK : NK ;
+fun poraaja_NK : NK ;
+fun porari_NK : NK ;
+fun porata_1_VK : VK ;
+fun porata_2_VK : VK ;
+fun poraus_NK : NK ;
+fun porautua_VK : VK ;
+fun pore_NK : NK ;
+fun poreilla_VK : VK ;
+fun poreilu_NK : NK ;
+fun poreinen_NK : NK ;
+fun poretin_NK : NK ;
+fun porfiini_NK : NK ;
+fun porfyriini_NK : NK ;
+fun porfyyri_NK : NK ;
+fun porfyyrinen_NK : NK ;
+fun porhaltaa_VK : VK ;
+fun porho_NK : NK ;
+fun porilainen_NK : NK ;
+fun porina_NK : NK ;
+fun porista_VK : VK ;
+fun porkka_NK : NK ;
+fun porkkana_NK : NK ;
+fun pormestari_NK : NK ;
+fun pornahtava_NK : NK ;
+fun porno_NK : NK ;
+fun pornografia_NK : NK ;
+fun pornografinen_NK : NK ;
+fun poro_1_NK : NK ;
+fun poro_2_NK : NK ;
+fun poroinen_NK : NK ;
+fun porottaa_VK : VK ;
+fun porotus_NK : NK ;
+fun porras_NK : NK ;
+fun porrastaa_VK : VK ;
+--+ fun porrasteisesti_AdvK : AdvK ;
+fun porrasteisuus_NK : NK ;
+fun porrastua_VK : VK ;
+fun porrastus_NK : NK ;
+fun porsas_NK : NK ;
+--+ fun porsasmaisesti_AdvK : AdvK ;
+fun porsastella_VK : VK ;
+fun porsastelu_NK : NK ;
+fun porsia_VK : VK ;
+fun porsittaa_VK : VK ;
+fun porsitus_NK : NK ;
+fun porskutella_VK : VK ;
+fun porskuttaa_VK : VK ;
+fun porstua_NK : NK ;
+fun portaali_NK : NK ;
+fun portaaton_NK : NK ;
+fun portaattomasti_AdvK : AdvK ;
+fun portaikko_NK : NK ;
+fun portainen_NK : NK ;
+fun portaittain_AdvK : AdvK ;
+fun portaittainen_NK : NK ;
+fun portfolio_NK : NK ;
+fun portieeri_NK : NK ;
+--? fun port_salut_NK : NK ;
+fun portsari_NK : NK ;
+fun portteri_NK : NK ;
+fun portti_NK : NK ;
+fun portto_NK : NK ;
+fun porttola_NK : NK ;
+fun portugali_NK : NK ;
+fun portviini_NK : NK ;
+fun poru_NK : NK ;
+fun porukka_NK : NK ;
+fun porukoida_VK : VK ;
+fun porvari_NK : NK ;
+fun porvarillinen_AK : AK ;
+--+ fun porvarillisesti_AdvK : AdvK ;
+fun porvarillistaa_VK : VK ;
+fun porvarillistua_VK : VK ;
+fun porvarillisuus_NK : NK ;
+fun porvarismi_NK : NK ;
+fun porvaristo_NK : NK ;
+fun posahdus_NK : NK ;
+fun posahtaa_VK : VK ;
+fun posaus_NK : NK ;
+fun posauttaa_VK : VK ;
+fun pose_NK : NK ;
+fun poseerata_VK : VK ;
+fun poseeraus_NK : NK ;
+fun posetiivari_NK : NK ;
+fun posetiivi_NK : NK ;
+fun positiivi_NK : NK ;
+fun positiivinen_AK : AK ;
+--+ fun positiivisesti_AdvK : AdvK ;
+fun positiivisuus_NK : NK ;
+fun positio_NK : NK ;
+fun positivismi_NK : NK ;
+fun positivisti_NK : NK ;
+fun positivistinen_NK : NK ;
+fun positroni_NK : NK ;
+fun poskeinen_NK : NK ;
+fun posketon_NK : NK ;
+fun poskettomasti_AdvK : AdvK ;
+fun poski_NK : NK ;
+fun poskinen_NK : NK ;
+fun posliini_NK : NK ;
+fun posliininen_NK : NK ;
+fun posliininmaalaus_NK : NK ;
+fun posmittaa_VK : VK ;
+fun posottaa_VK : VK ;
+fun possessiivinen_NK : NK ;
+fun possu_NK : NK ;
+fun poste_restante_NK : NK ;
+fun posteri_NK : NK ;
+fun posti_1_NK : NK ;
+fun posti_2_NK : NK ;
+fun posti_3_NK : NK ;
+fun postiljooni_NK : NK ;
+fun postilla_NK : NK ;
+fun postimerkitta'a'_VK : VK ;
+fun postimerkkeilija'_NK : NK ;
+fun postimerkkeilla'_VK : VK ;
+fun postimerkkeily_NK : NK ;
+fun postinkanto_NK : NK ;
+fun postite_NK : NK ;
+fun postitse_AdvK : AdvK ;
+fun postittaa_VK : VK ;
+fun postitus_NK : NK ;
+fun postpositio_NK : NK ;
+fun postulaatti_NK : NK ;
+fun postuloida_VK : VK ;
+fun postuumi_NK : NK ;
+fun potaatti_NK : NK ;
+fun potaska_NK : NK ;
+fun potea_VK : VK ;
+fun potensoida_VK : VK ;
+fun potensoitua_VK : VK ;
+fun potenssi_NK : NK ;
+fun potentiaali_NK : NK ;
+fun potentiaalinen_AK : AK ;
+--+ fun potentiaalisesti_AdvK : AdvK ;
+fun potentiometri_NK : NK ;
+fun potentti_NK : NK ;
+fun potero_NK : NK ;
+fun potilas_NK : NK ;
+fun potka_NK : NK ;
+fun potkaista_VK : VK ;
+fun potkaisu_NK : NK ;
+fun potkaus_NK : NK ;
+fun potkia_VK : VK ;
+--? fun potkiaiset_NK : NK ;
+fun potkija_NK : NK ;
+fun potkiskella_VK : VK ;
+fun potku_1_NK : NK ;
+fun potku_2_NK : NK ;
+fun potkuinen_NK : NK ;
+fun potkuri_NK : NK ;
+fun potkurinen_NK : NK ;
+fun potpuri_NK : NK ;
+fun potra_NK : NK ;
+fun potretti_NK : NK ;
+fun potta_NK : NK ;
+fun potti_1_NK : NK ;
+fun potti_2_NK : NK ;
+fun pottu_1_NK : NK ;
+fun pottu_2_NK : NK ;
+fun pottuilla_VK : VK ;
+fun pottuilu_NK : NK ;
+--+ fun pottumaisesti_AdvK : AdvK ;
+fun pottuuntua_VK : VK ;
+fun potuttaa_VK : VK ;
+fun poukahdella_VK : VK ;
+fun poukahdus_NK : NK ;
+fun poukahtaa_VK : VK ;
+fun poukahtelu_NK : NK ;
+fun poukama_NK : NK ;
+fun poukata_VK : VK ;
+fun poukauttaa_VK : VK ;
+fun poukkoilla_VK : VK ;
+fun poukkoilu_NK : NK ;
+fun pouta_NK : NK ;
+fun poutainen_NK : NK ;
+fun poutia_VK : VK ;
+fun povaaja_NK : NK ;
+fun povailla_VK : VK ;
+fun povari_1_NK : NK ;
+fun povari_2_NK : NK ;
+fun povata_VK : VK ;
+fun povaus_NK : NK ;
+fun povauttaa_VK : VK ;
+fun poveton_NK : NK ;
+fun povi_NK : NK ;
+fun povinen_NK : NK ;
+fun PR_AdvK : AdvK ;
+fun praasniekka_NK : NK ;
+fun pragmaatikko_NK : NK ;
+fun pragmaattinen_AK : AK ;
+--+ fun pragmaattisesti_AdvK : AdvK ;
+fun pragmaattisuus_NK : NK ;
+fun pragmatiikka_NK : NK ;
+fun pragmatismi_NK : NK ;
+fun pragmatisti_NK : NK ;
+fun prakata_VK : VK ;
+fun praksis_NK : NK ;
+fun praktiikka_NK : NK ;
+fun praktikko_NK : NK ;
+fun praktikoida_VK : VK ;
+fun praktikumi_NK : NK ;
+fun praktinen_NK : NK ;
+fun praktisoida_VK : VK ;
+fun praliini_NK : NK ;
+fun pramea_AK : AK ;
+--+ fun prameasti_AdvK : AdvK ;
+fun prameilla_VK : VK ;
+fun prameilu_NK : NK ;
+fun prameus_NK : NK ;
+fun predestinaatio_NK : NK ;
+fun predestinoida_VK : VK ;
+fun predestinoitua_VK : VK ;
+fun predikaatti_NK : NK ;
+fun predikatiivi_NK : NK ;
+fun preemio_NK : NK ;
+fun preeria_NK : NK ;
+fun preesens_NK : NK ;
+fun prefekti_NK : NK ;
+fun preferenssi_NK : NK ;
+fun prefiksi_NK : NK ;
+fun prejudikaatti_NK : NK ;
+fun prekambrinen_NK : NK ;
+fun prelaatti_NK : NK ;
+fun prelimina'a'ri_NK : NK ;
+fun preludi_NK : NK ;
+fun premissi_NK : NK ;
+fun prenataalinen_NK : NK ;
+fun prenikka_NK : NK ;
+fun preparaatti_NK : NK ;
+fun preparaattori_NK : NK ;
+fun preparoida_VK : VK ;
+fun prepata_VK : VK ;
+fun prepositio_NK : NK ;
+fun preppaus_NK : NK ;
+fun presbyteeri_NK : NK ;
+fun presbyteerila'inen_NK : NK ;
+fun presbyteerinen_NK : NK ;
+fun presbyteriaani_NK : NK ;
+fun presidentti_NK : NK ;
+fun presidenttiys_NK : NK ;
+fun presidiumi_NK : NK ;
+fun presiis_AdvK : AdvK ;
+fun presisoida_VK : VK ;
+fun presisointi_NK : NK ;
+fun pressa_NK : NK ;
+fun pressi_NK : NK ;
+fun pressu_NK : NK ;
+fun prestiisi_NK : NK ;
+fun presto_AdvK : AdvK ;
+fun preteriti_NK : NK ;
+fun preussi_NK : NK ;
+fun preussilaisuus_NK : NK ;
+fun prevalenssi_NK : NK ;
+fun preventiivinen_NK : NK ;
+fun preventio_NK : NK ;
+fun priima_NK : NK ;
+fun priimas_NK : NK ;
+fun priimi_NK : NK ;
+fun priimus_NK : NK ;
+fun prikaati_NK : NK ;
+fun priki_NK : NK ;
+fun prikka_NK : NK ;
+fun prikku_NK : NK ;
+fun prikulleen_AdvK : AdvK ;
+fun prillit_NK : NK ;
+fun primaari_AK : AK ;
+fun primaarinen_AK : AK ;
+--+ fun primaarisesti_AdvK : AdvK ;
+--+ fun primaaristi_AdvK : AdvK ;
+fun primaarisuus_NK : NK ;
+fun primaarius_NK : NK ;
+fun primadonna_NK : NK ;
+fun prima_vista_NK : NK ;
+fun primitiivinen_AK : AK ;
+--+ fun primitiivisesti_AdvK : AdvK ;
+fun primitiivisyys_NK : NK ;
+fun primitivismi_NK : NK ;
+fun primitivisti_NK : NK ;
+fun primus_motor_NK : NK ;
+fun prima'a'ri_NK : NK ;
+fun prima'a'rinen_NK : NK ;
+fun prinkkala_NK : NK ;
+fun prinsessa_NK : NK ;
+fun prinsiippi_NK : NK ;
+fun prinssi_NK : NK ;
+fun printata_VK : VK ;
+fun printtaus_NK : NK ;
+fun printteri_NK : NK ;
+fun printti_NK : NK ;
+fun priorisoida_VK : VK ;
+fun priorisointi_NK : NK ;
+fun prioriteetti_NK : NK ;
+fun prisma_NK : NK ;
+fun privaatisti_AdvK : AdvK ;
+fun privaatti_NK : NK ;
+fun privatisoida_VK : VK ;
+fun privatisoitua_VK : VK ;
+fun privilegi_NK : NK ;
+fun privilegio_NK : NK ;
+fun pro_AdvK : AdvK ;
+fun probleema_NK : NK ;
+fun probleemi_NK : NK ;
+fun problemaattinen_AK : AK ;
+--+ fun problemaattisesti_AdvK : AdvK ;
+fun problemaattisuus_NK : NK ;
+fun problematiikka_NK : NK ;
+fun problematisoida_VK : VK ;
+fun problematisoitua_VK : VK ;
+fun produktiivinen_NK : NK ;
+fun produktiivistua_VK : VK ;
+fun produktiivisuus_NK : NK ;
+fun produktio_NK : NK ;
+fun produktiviteetti_NK : NK ;
+fun produsoida_VK : VK ;
+fun produsointi_NK : NK ;
+fun profaani_NK : NK ;
+fun profanoida_VK : VK ;
+fun profanoitua_VK : VK ;
+fun profeetallinen_AK : AK ;
+--+ fun profeetallisesti_AdvK : AdvK ;
+fun profeetallisuus_NK : NK ;
+fun profeetta_NK : NK ;
+fun professionaalinen_NK : NK ;
+fun professori_NK : NK ;
+fun professuuri_NK : NK ;
+fun profetia_NK : NK ;
+fun profetoida_VK : VK ;
+fun proffa_NK : NK ;
+fun profiili_NK : NK ;
+fun profiloida_VK : VK ;
+fun profilointi_NK : NK ;
+fun profiloitua_VK : VK ;
+fun profylaksi_NK : NK ;
+fun profylaksia_NK : NK ;
+fun profylaktinen_AK : AK ;
+--+ fun profylaktisesti_AdvK : AdvK ;
+fun profylaktisuus_NK : NK ;
+fun progesteroni_NK : NK ;
+fun progestiini_NK : NK ;
+fun prognoosi_NK : NK ;
+fun prognostinen_NK : NK ;
+fun progredioida_VK : VK ;
+fun progressiivinen_AK : AK ;
+--+ fun progressiivisesti_AdvK : AdvK ;
+fun progressiivisuus_NK : NK ;
+fun progressio_NK : NK ;
+fun projekti_NK : NK ;
+fun projektiili_NK : NK ;
+fun projektiivinen_NK : NK ;
+fun projektio_NK : NK ;
+fun projektori_NK : NK ;
+fun projisioida_VK : VK ;
+fun projisiointi_NK : NK ;
+fun projisoida_VK : VK ;
+fun projisointi_NK : NK ;
+fun prokuristi_NK : NK ;
+fun prolaktiini_NK : NK ;
+fun prolatiivi_NK : NK ;
+fun proletaari_NK : NK ;
+fun proletaarinen_NK : NK ;
+fun proletaaristaa_VK : VK ;
+fun proletaaristua_VK : VK ;
+fun proletariaatti_NK : NK ;
+fun proletarisoida_VK : VK ;
+fun proletarisoitua_VK : VK ;
+fun prologi_NK : NK ;
+fun promemoria_NK : NK ;
+fun promenadi_NK : NK ;
+fun promille_NK : NK ;
+fun promiskuiteetti_NK : NK ;
+fun promootio_NK : NK ;
+fun promovendi_NK : NK ;
+fun promovoida_VK : VK ;
+fun pronominaali_NK : NK ;
+fun pronominaalinen_NK : NK ;
+fun pronssata_VK : VK ;
+fun pronssaus_NK : NK ;
+fun pronssi_NK : NK ;
+fun pronssinen_NK : NK ;
+fun pronssittaa_VK : VK ;
+fun pronssitus_NK : NK ;
+fun proomu_NK : NK ;
+--+ fun proosallisesti_AdvK : AdvK ;
+fun propaani_NK : NK ;
+fun propaganda_NK : NK ;
+fun propagandisti_NK : NK ;
+fun propagandistinen_NK : NK ;
+fun propagoida_VK : VK ;
+fun propagoija_NK : NK ;
+fun propagointi_NK : NK ;
+fun propanoli_NK : NK ;
+fun propata_VK : VK ;
+fun propelli_NK : NK ;
+fun proportionaalinen_NK : NK ;
+fun proppu_NK : NK ;
+fun propri_NK : NK ;
+fun propsi_NK : NK ;
+fun prosaisti_NK : NK ;
+fun proseduuri_NK : NK ;
+fun prosentiton_NK : NK ;
+--+ fun prosenttisesti_AdvK : AdvK ;
+fun prosentuaalinen_AK : AK ;
+--+ fun prosentuaalisesti_AdvK : AdvK ;
+fun prosessi_NK : NK ;
+fun prosessikirjoittaminen_NK : NK ;
+fun prosessoida_VK : VK ;
+fun prosessointi_NK : NK ;
+fun prosessori_NK : NK ;
+fun prosit_AdvK : AdvK ;
+fun prospekti_NK : NK ;
+fun prossa_NK : NK ;
+fun prostaglandiini_NK : NK ;
+fun prostata_NK : NK ;
+fun prostituoida_VK : VK ;
+fun prostituointi_NK : NK ;
+fun prostituoitu_NK : NK ;
+fun prostituoitua_VK : VK ;
+fun prostituutio_NK : NK ;
+fun protektionismi_NK : NK ;
+fun protektionisti_NK : NK ;
+fun protektionistinen_NK : NK ;
+fun protektoraatti_NK : NK ;
+fun protestantismi_NK : NK ;
+fun protestantti_NK : NK ;
+fun protestanttinen_NK : NK ;
+fun protestanttisuus_NK : NK ;
+fun protestoida_VK : VK ;
+fun protestointi_NK : NK ;
+fun protium_NK : NK ;
+fun proto_NK : NK ;
+fun protokolla_NK : NK ;
+fun protoni_NK : NK ;
+fun proviisori_NK : NK ;
+fun provinsiaalinen_NK : NK ;
+fun provinsialismi_NK : NK ;
+fun provisorinen_NK : NK ;
+fun provokaatio_NK : NK ;
+fun provokaattori_NK : NK ;
+fun provokatiivinen_AK : AK ;
+--+ fun provokatiivisesti_AdvK : AdvK ;
+fun provokatiivisuus_NK : NK ;
+fun provokatorinen_AK : AK ;
+--+ fun provokatorisesti_AdvK : AdvK ;
+fun provokatorisuus_NK : NK ;
+fun provosoida_VK : VK ;
+fun provosointi_NK : NK ;
+fun provosoitua_VK : VK ;
+fun prutkuttaa_VK : VK ;
+fun prutkutus_NK : NK ;
+fun pra'ntti_NK : NK ;
+fun pra'ssi_NK : NK ;
+fun pra'ssa'ta'_VK : VK ;
+fun pra'ssa'ys_NK : NK ;
+fun pra'ssa'ytta'a'_VK : VK ;
+fun pra'ssa'ytya'_VK : VK ;
+fun pra'ssa'a'mo'_NK : NK ;
+fun pra'tka'_NK : NK ;
+fun pro'ysta'illa'_VK : VK ;
+fun pro'ysta'ily_NK : NK ;
+fun psalmi_NK : NK ;
+fun psalttari_NK : NK ;
+fun pseudokruppi_NK : NK ;
+fun pseudonyymi_NK : NK ;
+fun psori_NK : NK ;
+fun psoriaatikko_NK : NK ;
+fun psoriasis_NK : NK ;
+fun psykedeelinen_NK : NK ;
+fun psykiatri_NK : NK ;
+fun psykiatria_NK : NK ;
+fun psykiatrinen_NK : NK ;
+fun psykofarmaka_NK : NK ;
+fun psykogeeninen_NK : NK ;
+fun psykokinesia_NK : NK ;
+fun psykologi_NK : NK ;
+fun psykologia_NK : NK ;
+fun psykologinen_AK : AK ;
+fun psykologioida_VK : VK ;
+fun psykologiointi_NK : NK ;
+--+ fun psykologisesti_AdvK : AdvK ;
+fun psykologisoida_VK : VK ;
+fun psykometriikka_NK : NK ;
+fun psykometrinen_NK : NK ;
+fun psykoosi_NK : NK ;
+fun psykoottinen_AK : AK ;
+--+ fun psykoottisesti_AdvK : AdvK ;
+fun psykoottisuus_NK : NK ;
+fun psykopaatti_NK : NK ;
+fun psykopaattinen_NK : NK ;
+fun psykopatia_NK : NK ;
+fun psykopatologia_NK : NK ;
+fun psykosomaattinen_NK : NK ;
+fun psyykata_VK : VK ;
+fun psyyke_NK : NK ;
+fun psyykkaus_NK : NK ;
+fun psyykkinen_AK : AK ;
+--+ fun psyykkisesti_AdvK : AdvK ;
+fun ptolemaiolainen_NK : NK ;
+fun ptruu_AdvK : AdvK ;
+fun pub_NK : NK ;
+fun puberteetti_NK : NK ;
+fun pubi_NK : NK ;
+fun publiikki_NK : NK ;
+fun publikaani_NK : NK ;
+fun publisiteetti_NK : NK ;
+fun pudas_NK : NK ;
+fun pudistaa_VK : VK ;
+fun pudistella_VK : VK ;
+fun pudistus_NK : NK ;
+fun pudokas_NK : NK ;
+fun pudota_VK : VK ;
+fun pudotella_VK : VK ;
+fun pudottaa_VK : VK ;
+fun pudottautua_VK : VK ;
+fun pudotus_NK : NK ;
+fun pueskella_VK : VK ;
+fun puettaa_VK : VK ;
+fun puffata_VK : VK ;
+fun puffi_NK : NK ;
+fun pugilismi_NK : NK ;
+fun pugilisti_NK : NK ;
+fun puhahtaa_VK : VK ;
+fun puhallella_VK : VK ;
+fun puhallin_NK : NK ;
+fun puhallus_NK : NK ;
+fun puhalluttaa_VK : VK ;
+fun puhallutus_NK : NK ;
+fun puhaltaa_VK : VK ;
+fun puhaltaja_NK : NK ;
+fun puhdas_NK : NK ;
+fun puhdasrotuisuus_NK : NK ;
+fun puhde_NK : NK ;
+fun puhdistaa_VK : VK ;
+fun puhdistaja_NK : NK ;
+fun puhdistamo_NK : NK ;
+fun puhdistautua_VK : VK ;
+fun puhdiste_NK : NK ;
+fun puhdistin_NK : NK ;
+fun puhdistua_VK : VK ;
+fun puhdistuma_NK : NK ;
+fun puhdistus_NK : NK ;
+fun puhdistuttaa_VK : VK ;
+fun puhe_NK : NK ;
+fun puheilla_AdvK : AdvK ;
+fun puheille_AdvK : AdvK ;
+fun puheilta_AdvK : AdvK ;
+fun puheinen_NK : NK ;
+fun puheisiin_AdvK : AdvK ;
+fun puheissa_AdvK : AdvK ;
+fun puheliaisuus_NK : NK ;
+fun puhelias_NK : NK ;
+fun puhelimitse_AdvK : AdvK ;
+fun puhelin_NK : NK ;
+fun puhella_VK : VK ;
+fun puhelu_NK : NK ;
+fun puhina_NK : NK ;
+fun puhista_VK : VK ;
+fun puhjeta_VK : VK ;
+fun puhkaa_VK : VK ;
+fun puhkaista_VK : VK ;
+fun puhkaisu_NK : NK ;
+fun puhkeama_NK : NK ;
+fun puhkeilla_VK : VK ;
+fun puhki_AdvK : AdvK ;
+fun puhkia_VK : VK ;
+fun puhkina_NK : NK ;
+fun puhkinta_NK : NK ;
+fun puhkoa_VK : VK ;
+fun puhkonta_NK : NK ;
+fun puhkua_VK : VK ;
+fun puhkunta_NK : NK ;
+fun puhtaasti_AdvK : AdvK ;
+fun puhtaus_NK : NK ;
+fun puhti_NK : NK ;
+fun puhtoinen_NK : NK ;
+fun puhua_VK : VK ;
+fun puhuja_NK : NK ;
+fun puhumaton_NK : NK ;
+fun puhumattomuus_NK : NK ;
+fun puhunta_NK : NK ;
+fun puhuri_NK : NK ;
+fun puhutella_VK : VK ;
+fun puhuttaa_VK : VK ;
+fun puhuttelija_NK : NK ;
+fun puhuttelu_NK : NK ;
+fun puhuva_NK : NK ;
+fun puhveli_NK : NK ;
+fun puhvetti_NK : NK ;
+fun puhvi_NK : NK ;
+fun puida_VK : VK ;
+fun puija_NK : NK ;
+fun puijata_VK : VK ;
+fun puijaus_NK : NK ;
+fun puikahtaa_VK : VK ;
+fun puikea_NK : NK ;
+fun puikkari_NK : NK ;
+fun puikkaroida_VK : VK ;
+fun puikkarointi_NK : NK ;
+fun puikkaus_NK : NK ;
+fun puikkelehtia_VK : VK ;
+fun puikkia_VK : VK ;
+fun puikko_NK : NK ;
+fun puimala_NK : NK ;
+fun puimuri_NK : NK ;
+fun puin_NK : NK ;
+fun puinen_NK : NK ;
+fun puinti_NK : NK ;
+fun puiseva_AK : AK ;
+--+ fun puisevasti_AdvK : AdvK ;
+fun puisevuus_NK : NK ;
+fun puistaa_VK : VK ;
+fun puistattaa_VK : VK ;
+fun puistatus_NK : NK ;
+fun puistikko_NK : NK ;
+fun puistikkoinen_NK : NK ;
+fun puisto_NK : NK ;
+fun puite_NK : NK ;
+fun puitteinen_NK : NK ;
+fun pujahtaa_VK : VK ;
+fun pujo_NK : NK ;
+fun pujoa_VK : VK ;
+fun pujoke_NK : NK ;
+fun pujonta_NK : NK ;
+fun pujos_NK : NK ;
+fun pujotella_VK : VK ;
+fun pujottaa_VK : VK ;
+fun pujottautua_VK : VK ;
+fun pujottelija_NK : NK ;
+fun pujottelu_NK : NK ;
+fun pujottua_VK : VK ;
+fun pujotus_NK : NK ;
+fun pukahtaa_VK : VK ;
+fun pukari_NK : NK ;
+fun pukata_VK : VK ;
+fun pukea_VK : VK ;
+--? fun pukeet_NK : NK ;
+fun puketti_NK : NK ;
+fun pukeutua_VK : VK ;
+fun pukija_NK : NK ;
+fun pukimo_NK : NK ;
+fun pukine_NK : NK ;
+fun pukinjuuri_NK : NK ;
+fun pukinkontti_NK : NK ;
+fun pukittaa_VK : VK ;
+fun pukkailla_VK : VK ;
+fun pukkari_NK : NK ;
+fun pukkaus_NK : NK ;
+fun pukki_1_NK : NK ;
+fun pukki_2_NK : NK ;
+fun puksuttaa_VK : VK ;
+fun puksutus_NK : NK ;
+fun puku_NK : NK ;
+fun pukuinen_NK : NK ;
+fun pula_NK : NK ;
+fun pula_aika_NK : NK ;
+fun pulahdus_NK : NK ;
+fun pulahtaa_VK : VK ;
+fun pulaus_NK : NK ;
+fun pulauttaa_VK : VK ;
+fun pulautus_NK : NK ;
+fun puleerata_VK : VK ;
+fun puleeraus_NK : NK ;
+fun puli_1_NK : NK ;
+fun puli_2_NK : NK ;
+fun puli_3_NK : NK ;
+fun pulikka_NK : NK ;
+fun pulikoida_VK : VK ;
+fun pulikointi_NK : NK ;
+fun pulina_NK : NK ;
+fun pulisonki_NK : NK ;
+fun pulista_VK : VK ;
+fun pulittaa_VK : VK ;
+fun puliveivari_NK : NK ;
+fun puliveivata_VK : VK ;
+fun pulja_NK : NK ;
+fun pulju_NK : NK ;
+fun pulkka_1_NK : NK ;
+fun pulkka_2_NK : NK ;
+fun pulla_NK : NK ;
+fun pullahtaa_VK : VK ;
+fun pullauttaa_VK : VK ;
+fun pullea_NK : NK ;
+fun pulliainen_NK : NK ;
+fun pullikoida_VK : VK ;
+fun pullikointi_NK : NK ;
+fun pullistaa_VK : VK ;
+fun pullistella_VK : VK ;
+fun pullistelu_NK : NK ;
+fun pullistua_VK : VK ;
+fun pullistuma_NK : NK ;
+fun pullistus_NK : NK ;
+fun pullo_NK : NK ;
+fun pulloittain_AdvK : AdvK ;
+fun pullollaan_AdvK : AdvK ;
+fun pullolleen_AdvK : AdvK ;
+fun pullollinen_NK : NK ;
+fun pullote_NK : NK ;
+fun pullottaa_VK : VK ;
+fun pullottamo_NK : NK ;
+fun pullotus_NK : NK ;
+fun pullukka_NK : NK ;
+fun pulma_NK : NK ;
+fun pulmallinen_NK : NK ;
+fun pulmallisuus_NK : NK ;
+fun pulmu_NK : NK ;
+fun pulmunen_NK : NK ;
+fun pulpahdella_VK : VK ;
+fun pulpahtaa_VK : VK ;
+fun pulpetti_NK : NK ;
+fun pulppuilla_VK : VK ;
+fun pulputa_VK : VK ;
+fun pulputtaa_VK : VK ;
+fun pulputus_NK : NK ;
+fun pulsaatio_NK : NK ;
+fun pulsaattori_NK : NK ;
+fun pulsari_NK : NK ;
+fun pulska_AK : AK ;
+--+ fun pulskasti_AdvK : AdvK ;
+fun pulskistaa_VK : VK ;
+fun pulskistua_VK : VK ;
+fun pulssi_NK : NK ;
+fun pultata_VK : VK ;
+fun pulteri_NK : NK ;
+fun pultittaa_VK : VK ;
+fun pultsari_NK : NK ;
+fun pulttaus_NK : NK ;
+fun pultti_1_NK : NK ;
+fun pultti_2_NK : NK ;
+fun pulu_NK : NK ;
+fun pulveri_NK : NK ;
+fun pulverisaattori_NK : NK ;
+fun pulveroida_VK : VK ;
+fun pulveroitua_VK : VK ;
+fun pumasiini_NK : NK ;
+fun pumaska_NK : NK ;
+fun pummata_VK : VK ;
+fun pummaus_NK : NK ;
+fun pummi_NK : NK ;
+fun pumpata_VK : VK ;
+fun pumpernikkeli_NK : NK ;
+fun pumppaamo_NK : NK ;
+fun pumppaus_NK : NK ;
+fun pumppu_NK : NK ;
+fun pumppuamo_NK : NK ;
+fun pumpuli_NK : NK ;
+fun pumpulinen_NK : NK ;
+fun pumputa_VK : VK ;
+fun puna_NK : NK ;
+fun punahehkuinen_NK : NK ;
+fun punahelttainen_NK : NK ;
+fun punainen_NK : NK ;
+fun punaisuus_NK : NK ;
+fun punajuuri_NK : NK ;
+fun punakka_NK : NK ;
+fun punakko_NK : NK ;
+fun punakkuus_NK : NK ;
+fun punakoitua_VK : VK ;
+fun punastella_VK : VK ;
+fun punastelu_NK : NK ;
+fun punastua_VK : VK ;
+fun punastus_NK : NK ;
+fun punastuttaa_VK : VK ;
+fun punata_VK : VK ;
+fun punatulkku_NK : NK ;
+fun punaus_NK : NK ;
+fun punavaloinen_NK : NK ;
+fun pune_NK : NK ;
+fun punehtia_VK : VK ;
+fun punehtua_VK : VK ;
+fun punehtuma_NK : NK ;
+fun punerrus_NK : NK ;
+fun punerruttaa_VK : VK ;
+fun punertaa_VK : VK ;
+fun punertava_NK : NK ;
+fun punertua_VK : VK ;
+fun punerva_NK : NK ;
+fun punikki_NK : NK ;
+fun punk_NK : NK ;
+fun punka_NK : NK ;
+fun punkka_1_NK : NK ;
+fun punkka_2_NK : NK ;
+fun punkki_1_NK : NK ;
+fun punkki_2_NK : NK ;
+fun punkku_NK : NK ;
+fun punkteerata_VK : VK ;
+fun punktio_NK : NK ;
+fun punktoida_VK : VK ;
+fun punnerrus_NK : NK ;
+fun punnertaa_VK : VK ;
+fun punninta_NK : NK ;
+fun punnita_VK : VK ;
+fun punnitus_NK : NK ;
+fun punnus_NK : NK ;
+fun punoa_VK : VK ;
+fun punoittaa_VK : VK ;
+fun punoittua_VK : VK ;
+fun punoitus_NK : NK ;
+fun punoja_NK : NK ;
+fun punonnainen_NK : NK ;
+fun punonta_NK : NK ;
+fun punontainen_NK : NK ;
+fun punos_NK : NK ;
+fun punoutua_VK : VK ;
+fun punssi_NK : NK ;
+fun punta_NK : NK ;
+fun puntari_NK : NK ;
+fun puntaroida_VK : VK ;
+fun puntarointi_NK : NK ;
+fun puntata_VK : VK ;
+fun puntis_NK : NK ;
+fun puntti_1_NK : NK ;
+fun puntti_2_NK : NK ;
+fun puntti_3_NK : NK ;
+fun puola_1_NK : NK ;
+fun puola_2_NK : NK ;
+fun puola_3_NK : NK ;
+fun puolain_NK : NK ;
+fun puolainen_NK : NK ;
+fun puolalaisuus_NK : NK ;
+fun puolantaa_VK : VK ;
+fun puolasto_NK : NK ;
+fun puolata_VK : VK ;
+fun puolaus_NK : NK ;
+fun puoleen_AdvK : AdvK ;
+fun puoleinen_AK : AK ;
+--+ fun puoleisesti_AdvK : AdvK ;
+fun puoleksi_AdvK : AdvK ;
+fun puolesta_AdvK : AdvK ;
+fun puoli_NK : NK ;
+fun puoliaika_NK : NK ;
+fun puolihorroksiin_AdvK : AdvK ;
+fun puolihorroksissa_AdvK : AdvK ;
+fun puolihorroksista_AdvK : AdvK ;
+fun puoliintua_VK : VK ;
+fun puoliintumisaika_NK : NK ;
+fun puolijuoksua_AdvK : AdvK ;
+fun puolikas_NK : NK ;
+fun puoliksi_AdvK : AdvK ;
+fun puolillaan_AdvK : AdvK ;
+fun puolilleen_AdvK : AdvK ;
+fun puolila'pa'iseva'_NK : NK ;
+fun puolimmainen_NK : NK ;
+fun puolima'essa'_AdvK : AdvK ;
+fun puolima'esta'_AdvK : AdvK ;
+fun puolima'keen_AdvK : AdvK ;
+--+ fun puolinaisesti_AdvK : AdvK ;
+fun puolinen_NK : NK ;
+fun puolipolveen_AdvK : AdvK ;
+fun puolipukeinen_NK : NK ;
+fun puolipukeissa_AdvK : AdvK ;
+fun puolipukeissaan_AdvK : AdvK ;
+fun puolireidessa'_AdvK : AdvK ;
+fun puolireiteen_AdvK : AdvK ;
+fun puoliselka'a'n_AdvK : AdvK ;
+fun puolisela'ssa'_AdvK : AdvK ;
+fun puolisela'sta'_AdvK : AdvK ;
+fun puolisen_AdvK : AdvK ;
+fun puolisenkymmenta'_AdvK : AdvK ;
+fun puolisensataa_AdvK : AdvK ;
+fun puolisentoista_AdvK : AdvK ;
+fun puolisentoistasataa_AdvK : AdvK ;
+fun puolisko_NK : NK ;
+fun puoliso_NK : NK ;
+fun puolisa'a'reen_AdvK : AdvK ;
+fun puolisa'a'ressa'_AdvK : AdvK ;
+fun puolisa'a'resta'_AdvK : AdvK ;
+fun puolitalveen_AdvK : AdvK ;
+fun puolitalvessa_AdvK : AdvK ;
+fun puolitalvesta_AdvK : AdvK ;
+fun puolitangossa_AdvK : AdvK ;
+fun puolitankoon_AdvK : AdvK ;
+fun puolitiehen_AdvK : AdvK ;
+fun puolitiessa'_AdvK : AdvK ;
+fun puolitiesta'_AdvK : AdvK ;
+fun puolitonnari_NK : NK ;
+fun puolitse_AdvK : AdvK ;
+fun puolittaa_VK : VK ;
+fun puolittain_AdvK : AdvK ;
+fun puolittainen_NK : NK ;
+fun puolittua_VK : VK ;
+fun puolitus_NK : NK ;
+fun puoliuneen_AdvK : AdvK ;
+fun puoliunessa_AdvK : AdvK ;
+fun puoliutua_VK : VK ;
+fun puolivahingossa_AdvK : AdvK ;
+fun puolivaiheilla_AdvK : AdvK ;
+fun puolivaiheille_AdvK : AdvK ;
+--+ fun puolivillaisesti_AdvK : AdvK ;
+fun puolivillaisuus_NK : NK ;
+fun puolivoltti_NK : NK ;
+fun puoltaa_VK : VK ;
+fun puoltaja_NK : NK ;
+fun puolto_NK : NK ;
+fun puolue_NK : NK ;
+fun puolueellinen_AK : AK ;
+--+ fun puolueellisesti_AdvK : AdvK ;
+fun puolueellisuus_NK : NK ;
+fun puolueeton_NK : NK ;
+fun puolueettomasti_AdvK : AdvK ;
+fun puolueettomuus_NK : NK ;
+fun puolueinen_NK : NK ;
+fun puolueittain_AdvK : AdvK ;
+fun puolukka_NK : NK ;
+fun puolustaa_VK : VK ;
+fun puolustaja_NK : NK ;
+fun puolustamaton_NK : NK ;
+fun puolustautua_VK : VK ;
+fun puolustella_VK : VK ;
+fun puolustelu_NK : NK ;
+fun puolustuksellinen_AK : AK ;
+--+ fun puolustuksellisesti_AdvK : AdvK ;
+fun puolustuksellisuus_NK : NK ;
+fun puolustus_NK : NK ;
+fun puomi_NK : NK ;
+fun puomittaa_VK : VK ;
+fun puomitus_NK : NK ;
+fun puoshaka_NK : NK ;
+fun puoskari_NK : NK ;
+fun puoskaroida_VK : VK ;
+fun puoskaroija_NK : NK ;
+fun puoskarointi_NK : NK ;
+fun puosu_NK : NK ;
+fun puoti_NK : NK ;
+fun puotipuksu_NK : NK ;
+fun pupellus_NK : NK ;
+fun pupeltaa_VK : VK ;
+fun pupilli_NK : NK ;
+fun puppu_NK : NK ;
+fun pupu_NK : NK ;
+fun puputtaa_VK : VK ;
+fun puraista_VK : VK ;
+fun puraisu_NK : NK ;
+fun purasin_NK : NK ;
+fun purattaa_VK : VK ;
+fun pureksia_VK : VK ;
+fun purema_NK : NK ;
+fun puremahaava_NK : NK ;
+fun purenta_NK : NK ;
+fun pureskelija_NK : NK ;
+fun pureskella_VK : VK ;
+fun pureskelu_NK : NK ;
+fun pureutua_VK : VK ;
+fun pureva_AK : AK ;
+--+ fun purevasti_AdvK : AdvK ;
+fun purevuus_NK : NK ;
+fun purija_NK : NK ;
+fun purilainen_NK : NK ;
+fun purilas_NK : NK ;
+fun purismi_NK : NK ;
+fun puristaa_VK : VK ;
+fun puristautua_VK : VK ;
+fun puriste_NK : NK ;
+fun puristeinen_AK : AK ;
+--+ fun puristeisesti_AdvK : AdvK ;
+fun puristeisuus_NK : NK ;
+fun puristella_VK : VK ;
+fun puristelu_NK : NK ;
+fun puristi_NK : NK ;
+fun puristin_NK : NK ;
+fun puristinen_AK : AK ;
+--+ fun puristisesti_AdvK : AdvK ;
+fun puristisuus_NK : NK ;
+fun puristua_VK : VK ;
+fun puristuma_NK : NK ;
+fun puristus_NK : NK ;
+fun puristuvuus_NK : NK ;
+fun puritaani_NK : NK ;
+fun puritaaninen_AK : AK ;
+--+ fun puritaanisesti_AdvK : AdvK ;
+fun puritaanisuus_NK : NK ;
+fun puritanismi_NK : NK ;
+fun purje_NK : NK ;
+fun purjehdus_NK : NK ;
+fun purjehtia_VK : VK ;
+fun purjehtija_NK : NK ;
+fun purjeinen_NK : NK ;
+fun purjo_NK : NK ;
+fun purkaa_VK : VK ;
+fun purkaantua_VK : VK ;
+fun purkaja_NK : NK ;
+fun purkamo_NK : NK ;
+fun purkauma_NK : NK ;
+fun purkaus_NK : NK ;
+fun purkautua_VK : VK ;
+fun purkautuma_NK : NK ;
+fun purkillinen_NK : NK ;
+fun purkittaa_VK : VK ;
+fun purkka_NK : NK ;
+fun purkki_NK : NK ;
+fun purku_NK : NK ;
+fun purnaaja_NK : NK ;
+fun purnari_NK : NK ;
+fun purnata_VK : VK ;
+fun purnaus_NK : NK ;
+fun purnukka_NK : NK ;
+fun puro_NK : NK ;
+fun purppura_NK : NK ;
+fun purppurainen_NK : NK ;
+fun purppuri_NK : NK ;
+fun purppuroida_VK : VK ;
+fun purpura_NK : NK ;
+fun purpuri_NK : NK ;
+fun purra_VK : VK ;
+fun purse_NK : NK ;
+fun purseri_NK : NK ;
+fun pursi_NK : NK ;
+fun purskahdella_VK : VK ;
+fun purskahdus_NK : NK ;
+fun purskahtaa_VK : VK ;
+fun purskaus_NK : NK ;
+fun purskauttaa_VK : VK ;
+fun purskua_VK : VK ;
+fun purskutella_VK : VK ;
+fun purskuttaa_VK : VK ;
+fun purskutus_NK : NK ;
+fun purso_NK : NK ;
+fun pursotin_NK : NK ;
+fun pursottaa_VK : VK ;
+fun pursotus_NK : NK ;
+fun pursu_NK : NK ;
+fun pursua_VK : VK ;
+fun pursuilla_VK : VK ;
+fun pursuta_VK : VK ;
+fun purtilo_NK : NK ;
+fun purtojuuri_NK : NK ;
+fun puru_NK : NK ;
+fun pus_AdvK : AdvK ;
+fun pusata_VK : VK ;
+fun puseroinen_NK : NK ;
+fun puseroisillaan_AdvK : AdvK ;
+fun puseroisilleen_AdvK : AdvK ;
+fun puserrin_NK : NK ;
+fun puserrus_NK : NK ;
+fun pusertaa_VK : VK ;
+fun pusertautua_VK : VK ;
+fun pusertua_VK : VK ;
+fun pusi_AdvK : AdvK ;
+fun pusia_VK : VK ;
+fun pusikko_NK : NK ;
+fun puska_NK : NK ;
+fun puskea_VK : VK ;
+fun puskeutua_VK : VK ;
+fun puskija_NK : NK ;
+fun puskikko_NK : NK ;
+fun puskin_NK : NK ;
+fun pusku_NK : NK ;
+fun puskuroida_VK : VK ;
+fun pussailla_VK : VK ;
+fun pussailu_NK : NK ;
+fun pussata_VK : VK ;
+fun pusseittain_AdvK : AdvK ;
+fun pussi_NK : NK ;
+fun pussikko_NK : NK ;
+fun pussillinen_NK : NK ;
+fun pussittaa_VK : VK ;
+fun pussitus_NK : NK ;
+fun pussiutuma_NK : NK ;
+fun pusta_NK : NK ;
+fun pustula_NK : NK ;
+fun pusu_NK : NK ;
+fun putata_VK : VK ;
+fun puteli_NK : NK ;
+fun putelli_NK : NK ;
+fun putiikki_NK : NK ;
+fun putinki_NK : NK ;
+fun putka_NK : NK ;
+fun putkahdella_VK : VK ;
+fun putkahtaa_VK : VK ;
+fun putki_NK : NK ;
+fun putkilo_NK : NK ;
+fun putkinen_NK : NK ;
+fun putkisto_NK : NK ;
+fun putkittaa_VK : VK ;
+fun putkitus_NK : NK ;
+fun putkiyhde_NK : NK ;
+fun putoaja_NK : NK ;
+fun putoama_NK : NK ;
+fun putoilla_VK : VK ;
+fun putous_NK : NK ;
+fun putsata_VK : VK ;
+fun putsaus_NK : NK ;
+fun puttaus_NK : NK ;
+fun putti_NK : NK ;
+fun putto_NK : NK ;
+fun puu_NK : NK ;
+fun puudeli_NK : NK ;
+fun puuduksiin_AdvK : AdvK ;
+fun puuduksissa_AdvK : AdvK ;
+fun puudute_NK : NK ;
+fun puuduttaa_VK : VK ;
+fun puudutus_NK : NK ;
+fun puuha_NK : NK ;
+fun puuhaaja_NK : NK ;
+fun puuhailija_NK : NK ;
+fun puuhailla_VK : VK ;
+fun puuhailu_NK : NK ;
+fun puuhakas_AK : AK ;
+--+ fun puuhakkaasti_AdvK : AdvK ;
+fun puuhakkuus_NK : NK ;
+fun puuhastella_VK : VK ;
+fun puuhastelu_NK : NK ;
+fun puuhata_VK : VK ;
+fun puuhka_NK : NK ;
+fun puukko_NK : NK ;
+fun puukonhaava_NK : NK ;
+fun puukottaa_VK : VK ;
+fun puukottaja_NK : NK ;
+fun puukotus_NK : NK ;
+fun puuma_NK : NK ;
+fun puunilainen_NK : NK ;
+fun puunjuuri_NK : NK ;
+fun puunkuori_NK : NK ;
+fun puunto_NK : NK ;
+fun puuro_NK : NK ;
+fun puuroinen_NK : NK ;
+fun puurouttaa_VK : VK ;
+fun puuroutua_VK : VK ;
+fun puurtaa_VK : VK ;
+fun puusee_NK : NK ;
+fun puuska_NK : NK ;
+fun puuskahtaa_VK : VK ;
+fun puuskainen_NK : NK ;
+fun puuskassa_AdvK : AdvK ;
+fun puuskittain_AdvK : AdvK ;
+fun puuskittainen_AK : AK ;
+--+ fun puuskittaisesti_AdvK : AdvK ;
+fun puuskuttaa_VK : VK ;
+fun puuskutus_NK : NK ;
+fun puustelli_NK : NK ;
+fun puusto_NK : NK ;
+fun puute_NK : NK ;
+fun puuteri_NK : NK ;
+fun puuteroida_VK : VK ;
+fun puuton_NK : NK ;
+fun puutos_NK : NK ;
+fun puutteellinen_AK : AK ;
+--+ fun puutteellisesti_AdvK : AdvK ;
+fun puutteellisuus_NK : NK ;
+fun puuttua_VK : VK ;
+fun puutua_VK : VK ;
+fun puutumus_NK : NK ;
+fun puvustaa_VK : VK ;
+fun puvustaja_NK : NK ;
+fun puvustamo_NK : NK ;
+fun puvusto_NK : NK ;
+fun puzzle_NK : NK ;
+fun pygmi_NK : NK ;
+fun pyh_AdvK : AdvK ;
+fun pyhimys_NK : NK ;
+fun pyhisin_AdvK : AdvK ;
+fun pyhitta'ytya'_VK : VK ;
+fun pyhitta'a'_VK : VK ;
+fun pyhitys_NK : NK ;
+fun pyhyys_NK : NK ;
+fun pyha'_AK : AK ;
+fun pyha'inen_NK : NK ;
+fun pyha'isin_AdvK : AdvK ;
+fun pyha'kko'_NK : NK ;
+fun pyha'llinen_NK : NK ;
+fun pyha'pukeissaan_AdvK : AdvK ;
+--+ fun pyha'sti_AdvK : AdvK ;
+fun pyha'tto'_NK : NK ;
+fun pyjama_NK : NK ;
+fun pyjamaisillaan_AdvK : AdvK ;
+fun pykima'_NK : NK ;
+fun pykia'_VK : VK ;
+fun pyknikko_NK : NK ;
+fun pykninen_NK : NK ;
+fun pyka'_NK : NK ;
+fun pyka'lika's_NK : NK ;
+fun pyka'litta'in_AdvK : AdvK ;
+fun pyka'la'_NK : NK ;
+fun pyka'la'inen_NK : NK ;
+fun pyka'lo'ida'_VK : VK ;
+fun pyka'lo'inti_NK : NK ;
+fun pyka'ta'_VK : VK ;
+fun pylkka'_NK : NK ;
+fun pyllistella'_VK : VK ;
+fun pyllistys_NK : NK ;
+fun pyllista'a'_VK : VK ;
+fun pylly_NK : NK ;
+fun pylla'hta'a'_VK : VK ;
+fun pylla'ytta'a'_VK : VK ;
+fun pyloni_NK : NK ;
+fun pylpyra'_NK : NK ;
+fun pylva'ikko'_NK : NK ;
+fun pylva'inen_NK : NK ;
+fun pylva'isto'_NK : NK ;
+fun pylva's_NK : NK ;
+fun pyntta'ytya'_VK : VK ;
+fun pynta'ta'_VK : VK ;
+fun pyramidi_NK : NK ;
+fun pyree_NK : NK ;
+fun pyriitti_NK : NK ;
+fun pyrinta'_NK : NK ;
+fun pyrinto'_NK : NK ;
+fun pyristella'_VK : VK ;
+fun pyristely_NK : NK ;
+fun pyrkija'_NK : NK ;
+fun pyrkimys_NK : NK ;
+fun pyrkia'_VK : VK ;
+fun pyrky_NK : NK ;
+fun pyrkyri_NK : NK ;
+fun pyrkyryys_NK : NK ;
+fun pyromaani_NK : NK ;
+fun pyromania_NK : NK ;
+fun pyrskia'_VK : VK ;
+fun pyrska'hdella'_VK : VK ;
+fun pyrska'hdys_NK : NK ;
+fun pyrska'hta'a'_VK : VK ;
+fun pyrsto'_NK : NK ;
+fun pyrsto'inen_NK : NK ;
+fun pyrsto'ka's_NK : NK ;
+fun pyrsto'llinen_NK : NK ;
+fun pyry_NK : NK ;
+fun pyryinen_NK : NK ;
+fun pyrytella'_VK : VK ;
+fun pyryttya'_VK : VK ;
+fun pyrytta'a'_VK : VK ;
+fun pyryta'_VK : VK ;
+fun pyra'hdella'_VK : VK ;
+fun pyra'hdys_NK : NK ;
+fun pyra'hta'a'_VK : VK ;
+fun pyssy_NK : NK ;
+fun pyssytta'a'_VK : VK ;
+fun pysti_NK : NK ;
+fun pystis_NK : NK ;
+fun pysty_NK : NK ;
+fun pystyma'to'n_NK : NK ;
+fun pystyssa'_AdvK : AdvK ;
+fun pystysta'_AdvK : AdvK ;
+fun pystytella'_VK : VK ;
+fun pystytta'a'_VK : VK ;
+fun pystytys_NK : NK ;
+fun pystyvyys_NK : NK ;
+fun pystyva'_NK : NK ;
+fun pystyyn_AdvK : AdvK ;
+fun pystya'_VK : VK ;
+fun pysto'_NK : NK ;
+fun pysyma'to'n_NK : NK ;
+fun pysytella'_VK : VK ;
+fun pysytta'ytya'_VK : VK ;
+fun pysytta'a'_VK : VK ;
+fun pysyvyys_NK : NK ;
+fun pysyva'_NK : NK ;
+fun pysyva'inen_AK : AK ;
+--+ fun pysyva'isesti_AdvK : AdvK ;
+fun pysya'_VK : VK ;
+fun pysa'hdella'_VK : VK ;
+fun pysa'hdys_NK : NK ;
+fun pysa'hdysaika_NK : NK ;
+fun pysa'htyneisyys_NK : NK ;
+fun pysa'htya'_VK : VK ;
+fun pysa'kki_NK : NK ;
+fun pysa'ko'ida'_VK : VK ;
+fun pysa'ko'inti_NK : NK ;
+fun pysa'ys_NK : NK ;
+fun pysa'ytella'_VK : VK ;
+fun pysa'ytin_NK : NK ;
+fun pysa'ytta'a'_VK : VK ;
+fun pysa'ytys_NK : NK ;
+fun pytinki_NK : NK ;
+fun pyton_NK : NK ;
+fun pytty_NK : NK ;
+fun pyttyilla'_VK : VK ;
+fun pyttyma'inen_NK : NK ;
+fun pyttyyntya'_VK : VK ;
+fun pytyllinen_NK : NK ;
+fun pytytta'a'_VK : VK ;
+fun pyy_NK : NK ;
+fun pyyde_NK : NK ;
+fun pyydella'_VK : VK ;
+fun pyydys_NK : NK ;
+fun pyydystella'_VK : VK ;
+fun pyydystys_NK : NK ;
+fun pyydysta'ja'_NK : NK ;
+fun pyydysta'a'_VK : VK ;
+fun pyyhe_NK : NK ;
+fun pyyhin_NK : NK ;
+fun pyyhinta'_NK : NK ;
+fun pyyhkiytya'_VK : VK ;
+fun pyyhkia'_VK : VK ;
+fun pyyhka'ista'_VK : VK ;
+fun pyyhka'isy_NK : NK ;
+fun pyyha'lta'a'_VK : VK ;
+fun pyykinpesija'_NK : NK ;
+fun pyykitta'a'_VK : VK ;
+fun pyykitys_NK : NK ;
+fun pyykki_1_NK : NK ;
+fun pyykki_2_NK : NK ;
+fun pyykka'ri_NK : NK ;
+fun pyyka'ta'_VK : VK ;
+fun pyylevyys_NK : NK ;
+fun pyylevo'itya'_VK : VK ;
+fun pyynti_NK : NK ;
+fun pyyntiaika_NK : NK ;
+fun pyynto'_NK : NK ;
+fun pyyteellinen_NK : NK ;
+fun pyyteellisyys_NK : NK ;
+fun pyyteetto'ma'sti_AdvK : AdvK ;
+fun pyyteeto'n_NK : NK ;
+fun pyyta'ja'_NK : NK ;
+fun pyyta'a'_VK : VK ;
+fun pya'llinen_NK : NK ;
+fun pya'llys_NK : NK ;
+fun pya'lta'a'_VK : VK ;
+fun pyo'kki_NK : NK ;
+fun pyo'kkinen_NK : NK ;
+fun pyo'renta'a'_VK : VK ;
+fun pyo'reta'_VK : VK ;
+fun pyo'reys_NK : NK ;
+fun pyo'rea'_AK : AK ;
+--+ fun pyo'rea'sti_AdvK : AdvK ;
+fun pyo'rinta'_NK : NK ;
+fun pyo'rina'_NK : NK ;
+fun pyo'riskella'_VK : VK ;
+fun pyo'ristys_NK : NK ;
+fun pyo'ristya'_VK : VK ;
+fun pyo'rista'a'_VK : VK ;
+fun pyo'ritella'_VK : VK ;
+fun pyo'rittely_NK : NK ;
+fun pyo'ritta'a'_VK : VK ;
+fun pyo'ritys_NK : NK ;
+fun pyo'ria'_VK : VK ;
+fun pyo'ria'inen_NK : NK ;
+fun pyo'rio'_NK : NK ;
+fun pyo'rre_NK : NK ;
+fun pyo'rryksiin_AdvK : AdvK ;
+fun pyo'rryksissa'_AdvK : AdvK ;
+fun pyo'rryksista'_AdvK : AdvK ;
+fun pyo'rrytta'a'_VK : VK ;
+fun pyo'rrytys_NK : NK ;
+fun pyo'rteinen_NK : NK ;
+fun pyo'rtyilla'_VK : VK ;
+fun pyo'rtya'_VK : VK ;
+fun pyo'rtya'inen_NK : NK ;
+fun pyo'rta'a'_VK : VK ;
+fun pyo'ry_NK : NK ;
+fun pyo'rykka'_NK : NK ;
+fun pyo'ryla'_NK : NK ;
+fun pyo'ra'_NK : NK ;
+fun pyo'ra'hdella'_VK : VK ;
+fun pyo'ra'hdys_NK : NK ;
+fun pyo'ra'hdytta'a'_VK : VK ;
+fun pyo'ra'hta'a'_VK : VK ;
+fun pyo'ra'ilija'_NK : NK ;
+fun pyo'ra'illa'_VK : VK ;
+fun pyo'ra'ily_NK : NK ;
+fun pyo'ra'inen_NK : NK ;
+fun pyo'ra'lle_AdvK : AdvK ;
+fun pyo'ra'llinen_NK : NK ;
+fun pyo'ra'lla'_AdvK : AdvK ;
+fun pyo'ra'npuola_NK : NK ;
+fun pyo'ra'sto'_NK : NK ;
+fun pyo'ra'ys_NK : NK ;
+fun pyo'ra'ytta'a'_VK : VK ;
+fun pyo'ro'_NK : NK ;
+fun pyo'veli_NK : NK ;
+fun pa'hkina'_NK : NK ;
+fun pa'hkina'hakki_NK : NK ;
+fun pa'hkina'nkuori_NK : NK ;
+fun pa'hkia'_VK : VK ;
+fun pa'hkyla'_NK : NK ;
+fun pa'hka'illa'_VK : VK ;
+fun pa'hka'ily_NK : NK ;
+fun pa'hka'mo'_NK : NK ;
+fun pa'ihde_NK : NK ;
+fun pa'ihdyksiin_AdvK : AdvK ;
+fun pa'ihdyksissa'_AdvK : AdvK ;
+fun pa'ihdytta'a'_VK : VK ;
+fun pa'ihitta'a'_VK : VK ;
+fun pa'ihtymys_NK : NK ;
+fun pa'ihtynyt_NK : NK ;
+fun pa'ihtya'_VK : VK ;
+fun pa'ikka'in_AdvK : AdvK ;
+fun pa'ikseen_AdvK : AdvK ;
+fun pa'ilya'_VK : VK ;
+fun pa'in_AdvK : AdvK ;
+fun pa'inen_NK : NK ;
+fun pa'insa'_AdvK : AdvK ;
+fun pa'issa'a'n_AdvK : AdvK ;
+fun pa'iste_NK : NK ;
+fun pa'istikkaa_AdvK : AdvK ;
+fun pa'iten_AdvK : AdvK ;
+--? fun pa'itset_NK : NK ;
+fun pa'itta'in_AdvK : AdvK ;
+fun pa'itta'inen_NK : NK ;
+fun pa'ivemma'ksi_AdvK : AdvK ;
+fun pa'ivemma'lla'_AdvK : AdvK ;
+fun pa'ivempa'na'_AdvK : AdvK ;
+fun pa'ivettya'_VK : VK ;
+fun pa'ivetta'a'_VK : VK ;
+fun pa'ivetys_NK : NK ;
+fun pa'ivikki_NK : NK ;
+fun pa'ivisin_AdvK : AdvK ;
+fun pa'ivitella'_VK : VK ;
+fun pa'ivittely_NK : NK ;
+fun pa'ivitta'in_AdvK : AdvK ;
+fun pa'ivitta'inen_NK : NK ;
+fun pa'ivitta'a'_VK : VK ;
+fun pa'ivitys_NK : NK ;
+fun pa'ivyri_NK : NK ;
+fun pa'ivystys_NK : NK ;
+fun pa'ivysta'ja'_NK : NK ;
+fun pa'ivysta'a'_VK : VK ;
+fun pa'iva'_NK : NK ;
+fun pa'iva'aika_NK : NK ;
+fun pa'iva'inen_NK : NK ;
+fun pa'iva'lleen_AdvK : AdvK ;
+fun pa'iva'llinen_NK : NK ;
+fun pa'iva'llisaika_NK : NK ;
+fun pa'iva'nsini_NK : NK ;
+fun pa'iva'saikaan_AdvK : AdvK ;
+fun pa'iva'selta'a'n_AdvK : AdvK ;
+fun pa'iva'ta'_VK : VK ;
+fun pa'iva'ys_NK : NK ;
+fun pa'kista'a'_VK : VK ;
+fun pa'kia'_NK : NK ;
+fun pa'kia'inen_NK : NK ;
+fun pa'lka'hta'a'_VK : VK ;
+fun pa'lka'ha'sta'_AdvK : AdvK ;
+fun pa'llistelija'_NK : NK ;
+fun pa'llistella'_VK : VK ;
+fun pa'llistely_NK : NK ;
+fun pa'lpa'tta'a'_VK : VK ;
+fun pa'lpa'tys_NK : NK ;
+fun pa'lvi_NK : NK ;
+fun pa'lvitta'in_AdvK : AdvK ;
+fun pa'lyilla'_VK : VK ;
+fun pa'lyily_NK : NK ;
+fun pa'la'tta'a'_VK : VK ;
+fun pa'la'tys_NK : NK ;
+fun pa'mpa'ta'_VK : VK ;
+fun pa'nnia'_VK : VK ;
+fun pa'nna'_NK : NK ;
+fun pa'ntta'ys_NK : NK ;
+fun pa'nta'ta'_VK : VK ;
+fun pa're_NK : NK ;
+fun pa'repihti_NK : NK ;
+fun pa'rina'_NK : NK ;
+fun pa'rista'_VK : VK ;
+fun pa'rista'a'_VK : VK ;
+fun pa'risytta'a'_VK : VK ;
+fun pa'rja'illa'_VK : VK ;
+fun pa'rja'ta'_VK : VK ;
+fun pa'rpa'tta'a'_VK : VK ;
+fun pa'rpa'tys_NK : NK ;
+fun pa'rske_NK : NK ;
+fun pa'rskina'_NK : NK ;
+fun pa'rskia'_VK : VK ;
+fun pa'rsky_NK : NK ;
+fun pa'rskytella'_VK : VK ;
+fun pa'rskytta'a'_VK : VK ;
+fun pa'rskya'_VK : VK ;
+fun pa'rska'hdella'_VK : VK ;
+fun pa'rska'hdys_NK : NK ;
+fun pa'rska'hta'a'_VK : VK ;
+fun pa'rska'juuri_NK : NK ;
+fun pa'rska'ytta'a'_VK : VK ;
+fun pa'rska'a'_VK : VK ;
+fun pa'rsta'_NK : NK ;
+fun pa'rsta'kerroin_NK : NK ;
+fun pa'ra'hdys_NK : NK ;
+fun pa'ra'hta'a'_VK : VK ;
+fun pa'ra'ytta'a'_VK : VK ;
+fun pa'ssi_NK : NK ;
+--? fun pa'ssinpo'kkima't_NK : NK ;
+fun pa'tema'tto'myys_NK : NK ;
+fun pa'tema'to'n_NK : NK ;
+fun pa'tevyinen_NK : NK ;
+fun pa'tevyys_NK : NK ;
+fun pa'teva'_NK : NK ;
+fun pa'tevo'ida'_VK : VK ;
+fun pa'tevo'itymisaika_NK : NK ;
+fun pa'tevo'itya'_VK : VK ;
+fun pa'tea'_VK : VK ;
+fun pa'tkitta'in_AdvK : AdvK ;
+fun pa'tkia'_VK : VK ;
+fun pa'tka'_NK : NK ;
+fun pa'tka'ista'_VK : VK ;
+fun pa'tsi_NK : NK ;
+fun pa'a'_NK : NK ;
+fun pa'a'dyitse_AdvK : AdvK ;
+fun pa'a'dyitta'in_AdvK : AdvK ;
+fun pa'a'dytysten_AdvK : AdvK ;
+fun pa'a'hine_NK : NK ;
+fun pa'a'ha'n_AdvK : AdvK ;
+fun pa'a'ha'npa'lka'hdys_NK : NK ;
+fun pa'a'juuri_NK : NK ;
+fun pa'a'kka'in_AdvK : AdvK ;
+fun pa'a'kohta_NK : NK ;
+fun pa'a'ksytysten_AdvK : AdvK ;
+fun pa'a'lle_AdvK : AdvK ;
+fun pa'a'llekka'in_AdvK : AdvK ;
+fun pa'a'llekka'inen_NK : NK ;
+fun pa'a'llekka'isyys_NK : NK ;
+fun pa'a'llepantava_NK : NK ;
+fun pa'a'llepa'sma'ri_NK : NK ;
+fun pa'a'lletta'in_AdvK : AdvK ;
+fun pa'a'lletta'inen_NK : NK ;
+fun pa'a'lletysten_AdvK : AdvK ;
+fun pa'a'llikkyys_NK : NK ;
+fun pa'a'llikko'_NK : NK ;
+fun pa'a'llimmiten_AdvK : AdvK ;
+fun pa'a'llimma'inen_NK : NK ;
+fun pa'a'llimpa'na'_AdvK : AdvK ;
+fun pa'a'llinen_NK : NK ;
+fun pa'a'lliskangas_NK : NK ;
+fun pa'a'llitse_AdvK : AdvK ;
+fun pa'a'llyksinen_NK : NK ;
+fun pa'a'llys_NK : NK ;
+fun pa'a'llyste_NK : NK ;
+fun pa'a'llystys_NK : NK ;
+fun pa'a'llysta'_NK : NK ;
+fun pa'a'llysta'a'_VK : VK ;
+fun pa'a'llysto'_NK : NK ;
+fun pa'a'lla'_AdvK : AdvK ;
+fun pa'a'lta'_AdvK : AdvK ;
+fun pa'a'nnyo'ka'ytys_NK : NK ;
+fun pa'a'omavaltaistua_VK : VK ;
+fun pa'a'omittaa_VK : VK ;
+--+ fun pa'a'piirteisesti_AdvK : AdvK ;
+fun pa'a'piirteitta'in_AdvK : AdvK ;
+fun pa'a'piirteitta'inen_NK : NK ;
+fun pa'a'ri_NK : NK ;
+fun pa'a'rly_NK : NK ;
+fun pa'a'rme_NK : NK ;
+fun pa'a'rmeinen_NK : NK ;
+fun pa'a'rma'ta'_VK : VK ;
+fun pa'a'rma'ys_NK : NK ;
+fun pa'a'ryna'_NK : NK ;
+fun pa'a'sema'to'n_NK : NK ;
+fun pa'a'sia'inen_NK : NK ;
+fun pa'a'sia'isaika_NK : NK ;
+fun pa'a'sky_NK : NK ;
+fun pa'a'skynen_NK : NK ;
+fun pa'a'skysparvi_NK : NK ;
+fun pa'a'ssa'_AdvK : AdvK ;
+fun pa'a'stella'_VK : VK ;
+fun pa'a'sta'_1_VK : VK ;
+fun pa'a'sta'_2_AdvK : AdvK ;
+fun pa'a'sta'inen_NK : NK ;
+fun pa'a'sta'a'_VK : VK ;
+fun pa'a'sto'_NK : NK ;
+fun pa'a'sy_NK : NK ;
+fun pa'a'sa'a'nto'isesti_AdvK : AdvK ;
+fun pa'a'te_NK : NK ;
+fun pa'a'tekohta_NK : NK ;
+fun pa'a'tella'_VK : VK ;
+fun pa'a'telma'_NK : NK ;
+fun pa'a'tteellinen_NK : NK ;
+fun pa'a'tteeto'n_NK : NK ;
+fun pa'a'tteinen_NK : NK ;
+fun pa'a'ttely_NK : NK ;
+fun pa'a'ttymisaika_NK : NK ;
+fun pa'a'ttyma'to'n_NK : NK ;
+fun pa'a'ttya'_VK : VK ;
+fun pa'a'tta'ja'_NK : NK ;
+--? fun pa'a'tta'ja'iset_NK : NK ;
+fun pa'a'tta'ma'tto'myys_NK : NK ;
+fun pa'a'tta'ma'to'n_NK : NK ;
+fun pa'a'tta'ri_NK : NK ;
+fun pa'a'tta'vyys_NK : NK ;
+fun pa'a'tta'va'_AK : AK ;
+fun pa'a'tta'va'inen_AK : AK ;
+--+ fun pa'a'tta'va'isesti_AdvK : AdvK ;
+--+ fun pa'a'tta'va'sti_AdvK : AdvK ;
+fun pa'a'tta'a'_VK : VK ;
+fun pa'a'tto'myys_NK : NK ;
+fun pa'a'tto'ma'sti_AdvK : AdvK ;
+fun pa'a'ty_NK : NK ;
+fun pa'a'tya'_VK : VK ;
+fun pa'a'ta'nta'_NK : NK ;
+fun pa'a'ta'_pahkaa_AdvK : AdvK ;
+fun pa'a'ta'pahkainen_NK : NK ;
+fun pa'a'to'n_NK : NK ;
+fun pa'a'to's_NK : NK ;
+fun po'heikko'_NK : NK ;
+fun po'hko'_NK : NK ;
+fun po'hna'_NK : NK ;
+fun po'hna'inen_NK : NK ;
+fun po'ho'_NK : NK ;
+fun po'ho'inen_NK : NK ;
+fun po'ho'ttyma'_NK : NK ;
+fun po'ho'ttya'_VK : VK ;
+fun po'ho'tta'a'_VK : VK ;
+fun po'ho'tys_NK : NK ;
+fun po'kerryksiin_AdvK : AdvK ;
+fun po'kerryksissa'_AdvK : AdvK ;
+fun po'kerryksista'_AdvK : AdvK ;
+fun po'kerrytta'a'_VK : VK ;
+fun po'kertya'_VK : VK ;
+fun po'kkelo'_NK : NK ;
+fun po'kkia'_VK : VK ;
+fun po'kko'_NK : NK ;
+fun po'ksyinen_NK : NK ;
+--? fun po'ksyt_NK : NK ;
+fun po'ka'le_NK : NK ;
+--? fun po'ka't_NK : NK ;
+fun po'ka'ta'_VK : VK ;
+fun po'lho'_NK : NK ;
+fun po'lina'_1_NK : NK ;
+fun po'lina'_2_NK : NK ;
+fun po'lista'_1_VK : VK ;
+fun po'lista'_2_VK : VK ;
+fun po'lja'_NK : NK ;
+fun po'lkky_NK : NK ;
+fun po'lli_NK : NK ;
+fun po'llia'_VK : VK ;
+fun po'lly_NK : NK ;
+fun po'llytella'_VK : VK ;
+fun po'llytta'a'_VK : VK ;
+fun po'llytys_NK : NK ;
+fun po'llyta'_VK : VK ;
+fun po'lla'hdella'_VK : VK ;
+fun po'lla'hta'a'_VK : VK ;
+fun po'lla'mystya'_VK : VK ;
+fun po'lla'ytta'a'_VK : VK ;
+fun po'llo'_AK : AK ;
+--+ fun po'llo'sti_AdvK : AdvK ;
+fun po'lpo'tta'a'_VK : VK ;
+fun po'lpo'tys_NK : NK ;
+fun po'lva'sti_NK : NK ;
+fun po'ly_NK : NK ;
+fun po'lyinen_NK : NK ;
+fun po'lyte_NK : NK ;
+fun po'lytteinen_NK : NK ;
+fun po'lyttya'_VK : VK ;
+fun po'lytta'a'_VK : VK ;
+fun po'lytys_NK : NK ;
+fun po'lyta'_VK : VK ;
+fun po'lyyntya'_VK : VK ;
+fun po'lyytta'a'_VK : VK ;
+fun po'la'hdella'_VK : VK ;
+fun po'la'hdys_NK : NK ;
+fun po'la'hta'a'_VK : VK ;
+fun po'la'ys_NK : NK ;
+fun po'la'ytta'a'_VK : VK ;
+fun po'mpeli_NK : NK ;
+fun po'mpo'lla'a'n_AdvK : AdvK ;
+fun po'mpo'tta'a'_VK : VK ;
+fun po'nkitta'a'_VK : VK ;
+fun po'nkka'_NK : NK ;
+fun po'ntto'_NK : NK ;
+fun po'na'kkyys_NK : NK ;
+fun po'na'kka'_NK : NK ;
+fun po'na'ko'itya'_VK : VK ;
+fun po'pelikko'_NK : NK ;
+fun po'pero'_NK : NK ;
+fun po'pi_NK : NK ;
+fun po'pina'_NK : NK ;
+fun po'pista'_VK : VK ;
+fun po'ppero'inen_NK : NK ;
+fun po'ppero'ssa'_AdvK : AdvK ;
+fun po'po'_NK : NK ;
+fun po'po'tta'a'_VK : VK ;
+fun po'rhea'_NK : NK ;
+fun po'rhistella'_VK : VK ;
+fun po'rhistya'_VK : VK ;
+fun po'rhista'a'_VK : VK ;
+fun po'rho'inen_NK : NK ;
+fun po'rho'lle_AdvK : AdvK ;
+fun po'rho'lleen_AdvK : AdvK ;
+fun po'rho'lla'_AdvK : AdvK ;
+fun po'rho'lla'a'n_AdvK : AdvK ;
+fun po'rho'ssa'_AdvK : AdvK ;
+fun po'rho'o'n_AdvK : AdvK ;
+fun po'rina'_NK : NK ;
+fun po'rista'_VK : VK ;
+fun po'rria'inen_NK : NK ;
+fun po'rra'illa'_VK : VK ;
+fun po'rra'ta'_VK : VK ;
+fun po'rro'_NK : NK ;
+fun po'rro'inen_NK : NK ;
+fun po'rro'lle_AdvK : AdvK ;
+fun po'rro'lleen_AdvK : AdvK ;
+fun po'rro'lla'_AdvK : AdvK ;
+fun po'rro'lla'a'n_AdvK : AdvK ;
+fun po'rro'ssa'_AdvK : AdvK ;
+fun po'rro'ttya'_VK : VK ;
+fun po'rro'tta'a'_VK : VK ;
+fun po'rro'o'n_AdvK : AdvK ;
+fun po'rssi_NK : NK ;
+fun po'rssiaika_NK : NK ;
+fun po'rssinoteerattu_NK : NK ;
+fun po'so'_NK : NK ;
+fun po'tkia'_VK : VK ;
+fun po'tky_NK : NK ;
+fun po'tko'_NK : NK ;
+fun po'tko'lleen_AdvK : AdvK ;
+fun po'tko'lla'a'n_AdvK : AdvK ;
+fun po'tko'tta'a'_VK : VK ;
+fun po'tsi_NK : NK ;
+fun po'ty_NK : NK ;
+fun po'yda'llinen_NK : NK ;
+fun po'yda'ta'_VK : VK ;
+fun po'yheys_NK : NK ;
+fun po'yhea'_NK : NK ;
+fun po'yhin_NK : NK ;
+fun po'yhistella'_VK : VK ;
+fun po'yhistya'_VK : VK ;
+fun po'yhista'a'_VK : VK ;
+fun po'yhia'_VK : VK ;
+fun po'yhkeilija'_NK : NK ;
+fun po'yhkeilla'_VK : VK ;
+fun po'yhkeily_NK : NK ;
+fun po'yhkeys_NK : NK ;
+fun po'yhkea'_AK : AK ;
+--+ fun po'yhkea'sti_AdvK : AdvK ;
+fun po'yho'lle_AdvK : AdvK ;
+fun po'yho'lleen_AdvK : AdvK ;
+fun po'yho'lla'_AdvK : AdvK ;
+fun po'yho'lla'a'n_AdvK : AdvK ;
+fun po'yho'tta'a'_VK : VK ;
+fun po'yristytta'a'_VK : VK ;
+fun po'ytye_NK : NK ;
+fun po'yta'_NK : NK ;
+fun po'yta'voi_NK : NK ;
+fun quasi_AdvK : AdvK ;
+fun quenelle_NK : NK ;
+fun quiche_NK : NK ;
+fun quickstep_NK : NK ;
+fun quisling_NK : NK ;
+fun raa_asti_AdvK : AdvK ;
+fun raadanta_NK : NK ;
+fun raadella_VK : VK ;
+fun raadollinen_NK : NK ;
+fun raadollisuus_NK : NK ;
+fun raaentaa_VK : VK ;
+fun raaentua_VK : VK ;
+fun raahaantua_VK : VK ;
+fun raahata_VK : VK ;
+fun raahaus_NK : NK ;
+fun raahautua_VK : VK ;
+fun raahustaa_VK : VK ;
+fun raaistaa_VK : VK ;
+fun raaistua_VK : VK ;
+fun raaistuttaa_VK : VK ;
+fun raaja_NK : NK ;
+fun raajainen_NK : NK ;
+fun raajarikkoinen_NK : NK ;
+fun raaka_1_NK : NK ;
+fun raaka_2_NK : NK ;
+fun raakalaismainen_NK : NK ;
+fun raakalaisuus_NK : NK ;
+fun raakata_1_VK : VK ;
+fun raakata_2_VK : VK ;
+fun raakile_NK : NK ;
+fun raakilemaisuus_NK : NK ;
+fun raakimus_NK : NK ;
+fun raakki_NK : NK ;
+fun raakku_NK : NK ;
+fun raakkua_VK : VK ;
+fun raakua_VK : VK ;
+fun raakuus_NK : NK ;
+fun Raamattu_NK : NK ;
+fun raamatullinen_NK : NK ;
+fun raamatunkohta_NK : NK ;
+fun raami_NK : NK ;
+fun raamikas_NK : NK ;
+fun raamittaa_VK : VK ;
+fun raamitus_NK : NK ;
+fun raana_NK : NK ;
+fun raani_NK : NK ;
+fun raanu_NK : NK ;
+fun raapaista_VK : VK ;
+fun raapaisu_NK : NK ;
+fun raapata_VK : VK ;
+fun raape_NK : NK ;
+fun raapia_VK : VK ;
+fun raapiintua_VK : VK ;
+fun raapiutua_VK : VK ;
+fun raappa_NK : NK ;
+fun raappia_VK : VK ;
+fun raappiintua_VK : VK ;
+fun raappiutua_VK : VK ;
+fun raapustaa_VK : VK ;
+fun raaputella_VK : VK ;
+fun raaputin_NK : NK ;
+fun raaputtaa_VK : VK ;
+fun raaputus_NK : NK ;
+fun raaskia_VK : VK ;
+fun raastaa_VK : VK ;
+fun raaste_NK : NK ;
+fun raastin_NK : NK ;
+fun raastupa_NK : NK ;
+fun raasu_NK : NK ;
+fun raataa_VK : VK ;
+fun raataja_NK : NK ;
+fun raate_NK : NK ;
+fun raatelu_NK : NK ;
+fun raati_NK : NK ;
+fun raato_NK : NK ;
+fun raatsia_VK : VK ;
+fun raavas_NK : NK ;
+fun raavin_NK : NK ;
+fun raavinta_NK : NK ;
+fun rabbi_NK : NK ;
+fun rabbiini_NK : NK ;
+fun rabies_NK : NK ;
+fun rabulismi_NK : NK ;
+fun rabulisti_NK : NK ;
+fun rabulistinen_NK : NK ;
+fun raclette_NK : NK ;
+fun radeerata_VK : VK ;
+fun radeeraus_NK : NK ;
+fun radiaalinen_NK : NK ;
+fun radiaani_NK : NK ;
+fun radiaattori_NK : NK ;
+fun radicchio_NK : NK ;
+fun radikaali_AK : AK ;
+fun radikaalinen_AK : AK ;
+--+ fun radikaalisesti_AdvK : AdvK ;
+fun radikaalistaa_VK : VK ;
+--+ fun radikaalisti_AdvK : AdvK ;
+fun radikaalistua_VK : VK ;
+fun radikaalisuus_NK : NK ;
+fun radikaalius_NK : NK ;
+fun radikalismi_NK : NK ;
+fun radikalisoida_VK : VK ;
+fun radikalisoitua_VK : VK ;
+fun radio_NK : NK ;
+fun radioesiintyminen_NK : NK ;
+fun radioida_VK : VK ;
+fun radiointi_NK : NK ;
+fun radioitse_AdvK : AdvK ;
+fun radiologi_NK : NK ;
+fun radiologia_NK : NK ;
+fun radiolyysi_NK : NK ;
+fun radiosuuntiminen_NK : NK ;
+fun radisti_NK : NK ;
+fun radium_NK : NK ;
+fun radon_NK : NK ;
+fun rad_a_NK : NK ;
+fun rae_NK : NK ;
+fun raekoko_NK : NK ;
+fun raffinoida_VK : VK ;
+fun raffinointi_NK : NK ;
+fun raffinoitua_VK : VK ;
+fun raffinoitunut_NK : NK ;
+fun rafla_NK : NK ;
+fun raflaava_AK : AK ;
+--+ fun raflaavasti_AdvK : AdvK ;
+fun raflaavuus_NK : NK ;
+fun raggari_NK : NK ;
+--? fun rago_t_NK : NK ;
+fun ragtime_NK : NK ;
+fun raguu_NK : NK ;
+fun raha_NK : NK ;
+fun rahakas_NK : NK ;
+fun rahake_NK : NK ;
+fun rahallinen_AK : AK ;
+--+ fun rahallisesti_AdvK : AdvK ;
+fun rahastaa_VK : VK ;
+fun rahastaja_NK : NK ;
+fun rahasto_NK : NK ;
+fun rahastoida_VK : VK ;
+fun rahastointi_NK : NK ;
+fun rahastus_NK : NK ;
+fun rahaton_NK : NK ;
+fun rahattomuus_NK : NK ;
+fun rahdata_VK : VK ;
+fun rahdittaa_VK : VK ;
+fun rahditus_NK : NK ;
+fun rahi_NK : NK ;
+fun rahina_NK : NK ;
+fun rahista_VK : VK ;
+fun rahje_NK : NK ;
+fun rahjus_NK : NK ;
+fun rahjustaa_VK : VK ;
+fun rahka_NK : NK ;
+--? fun rahkeet_NK : NK ;
+fun rahkoittua_VK : VK ;
+fun rahna_NK : NK ;
+fun rahoittaa_VK : VK ;
+fun rahoittaja_NK : NK ;
+fun rahoitteinen_NK : NK ;
+fun rahoitus_NK : NK ;
+fun rahtaaja_NK : NK ;
+fun rahtari_NK : NK ;
+fun rahtaus_NK : NK ;
+fun rahti_NK : NK ;
+fun rahtu_NK : NK ;
+fun rahtunen_NK : NK ;
+--+ fun rahvaanomaisesti_AdvK : AdvK ;
+fun rahvas_NK : NK ;
+fun raidakas_NK : NK ;
+fun raidallinen_NK : NK ;
+fun raide_NK : NK ;
+fun raidoittaa_VK : VK ;
+fun raidoitus_NK : NK ;
+fun raihnaantua_VK : VK ;
+fun raihnainen_AK : AK ;
+--+ fun raihnaisesti_AdvK : AdvK ;
+fun raihnaisuus_NK : NK ;
+fun raihnas_NK : NK ;
+fun raihnaus_NK : NK ;
+fun raihnautua_VK : VK ;
+fun raijata_VK : VK ;
+fun raikaa_VK : VK ;
+fun raikas_NK : NK ;
+fun raikastaa_VK : VK ;
+fun raikaste_NK : NK ;
+fun raikastin_NK : NK ;
+fun raikua_VK : VK ;
+fun raikuli_NK : NK ;
+fun railakas_AK : AK ;
+fun railakka_NK : NK ;
+--+ fun railakkaasti_AdvK : AdvK ;
+fun railakkuus_NK : NK ;
+fun railata_VK : VK ;
+fun railo_NK : NK ;
+fun railoilla_VK : VK ;
+fun railoinen_NK : NK ;
+fun raina_NK : NK ;
+fun rainata_VK : VK ;
+fun rainaus_NK : NK ;
+fun raippa_NK : NK ;
+fun raiska_NK : NK ;
+fun raiskaaja_NK : NK ;
+fun raiskaantua_VK : VK ;
+fun raiskata_VK : VK ;
+fun raiskaus_NK : NK ;
+fun raiskautua_VK : VK ;
+fun raiskio_NK : NK ;
+fun raisu_AK : AK ;
+--+ fun raisusti_AdvK : AdvK ;
+fun raisuus_NK : NK ;
+fun raita_1_NK : NK ;
+fun raita_2_NK : NK ;
+fun raita_3_NK : NK ;
+fun raitainen_NK : NK ;
+fun raiteilla_VK : VK ;
+fun raiteinen_NK : NK ;
+fun raiteisto_NK : NK ;
+fun raitis_NK : NK ;
+fun raitistaa_VK : VK ;
+fun raitistella_VK : VK ;
+fun raitistua_VK : VK ;
+fun raito_NK : NK ;
+fun raitsikka_NK : NK ;
+fun raitti_NK : NK ;
+fun raittiisti_AdvK : AdvK ;
+fun raittius_NK : NK ;
+fun raivaaja_NK : NK ;
+fun raivaamaton_NK : NK ;
+fun raivain_NK : NK ;
+fun raivari_NK : NK ;
+fun raivata_VK : VK ;
+fun raivaus_NK : NK ;
+fun raivauttaa_VK : VK ;
+fun raivautua_VK : VK ;
+fun raivio_NK : NK ;
+fun raivo_NK : NK ;
+fun raivoihinsa_AdvK : AdvK ;
+fun raivoisa_AK : AK ;
+--+ fun raivoisasti_AdvK : AdvK ;
+fun raivoissaan_AdvK : AdvK ;
+fun raivokas_AK : AK ;
+--+ fun raivokkaasti_AdvK : AdvK ;
+fun raivokkuus_NK : NK ;
+fun raivostua_VK : VK ;
+fun raivostuttaa_VK : VK ;
+fun raivota_VK : VK ;
+fun raivotar_NK : NK ;
+fun raivuri_NK : NK ;
+fun raja_1_NK : NK ;
+fun raja_2_NK : NK ;
+fun rajain_NK : NK ;
+fun rajainen_NK : NK ;
+fun rajakkain_AdvK : AdvK ;
+fun rajakkainen_NK : NK ;
+fun rajakohta_NK : NK ;
+fun rajallinen_AK : AK ;
+--+ fun rajallisesti_AdvK : AdvK ;
+fun rajallisuus_NK : NK ;
+fun rajanveto_NK : NK ;
+fun rajata_VK : VK ;
+fun rajaton_NK : NK ;
+fun rajattomasti_AdvK : AdvK ;
+fun rajattomuus_NK : NK ;
+fun rajatuksin_AdvK : AdvK ;
+fun rajatusten_AdvK : AdvK ;
+fun rajaus_NK : NK ;
+fun rajautua_VK : VK ;
+fun rajoite_NK : NK ;
+fun rajoitettu_NK : NK ;
+fun rajoitetusti_AdvK : AdvK ;
+fun rajoitin_NK : NK ;
+fun rajoittaa_VK : VK ;
+fun rajoittamaton_NK : NK ;
+fun rajoitteinen_NK : NK ;
+fun rajoittua_VK : VK ;
+fun rajoitus_NK : NK ;
+fun rajoni_NK : NK ;
+fun raju_AK : AK ;
+--+ fun rajusti_AdvK : AdvK ;
+fun rajuus_NK : NK ;
+fun rakas_NK : NK ;
+fun rakastaa_VK : VK ;
+fun rakastaja_NK : NK ;
+fun rakastajatar_NK : NK ;
+fun rakastavainen_NK : NK ;
+fun rakastella_VK : VK ;
+fun rakastelu_NK : NK ;
+fun rakastettava_AK : AK ;
+--+ fun rakastettavasti_AdvK : AdvK ;
+fun rakastettu_NK : NK ;
+fun rakastua_VK : VK ;
+fun rakeinen_NK : NK ;
+fun rakeistaa_VK : VK ;
+fun rakeisuus_NK : NK ;
+fun rakenne_NK : NK ;
+fun rakennella_VK : VK ;
+fun rakennelma_NK : NK ;
+fun rakennus_NK : NK ;
+fun rakennuttaa_VK : VK ;
+fun rakennuttaja_NK : NK ;
+fun rakentaa_VK : VK ;
+fun rakentaja_NK : NK ;
+fun rakentamaton_NK : NK ;
+fun rakentaminen_NK : NK ;
+fun rakentava_NK : NK ;
+fun rakenteellinen_AK : AK ;
+--+ fun rakenteellisesti_AdvK : AdvK ;
+fun rakenteilla_AdvK : AdvK ;
+fun rakenteille_AdvK : AdvK ;
+fun rakenteinen_NK : NK ;
+fun rakenteistaa_VK : VK ;
+fun rakenteisuus_NK : NK ;
+fun rakentelu_NK : NK ;
+fun rakentua_VK : VK ;
+fun raketti_NK : NK ;
+fun raki_NK : NK ;
+fun rakka_NK : NK ;
+fun rakkaudeton_NK : NK ;
+fun rakkaudettomuus_NK : NK ;
+fun rakkaus_NK : NK ;
+fun rakki_NK : NK ;
+fun rakkine_NK : NK ;
+fun rakko_NK : NK ;
+fun rakkoinen_NK : NK ;
+fun rakkula_NK : NK ;
+fun rakkulainen_NK : NK ;
+fun rakletti_NK : NK ;
+fun rako_NK : NK ;
+fun rakoilematon_NK : NK ;
+fun rakoilla_VK : VK ;
+fun rakoilu_NK : NK ;
+fun rakoinen_NK : NK ;
+fun rakonen_NK : NK ;
+fun rakosellaan_AdvK : AdvK ;
+fun rakottua_VK : VK ;
+fun raksa_NK : NK ;
+fun raksaa_VK : VK ;
+fun raksahdella_VK : VK ;
+fun raksahdus_NK : NK ;
+fun raksahtaa_VK : VK ;
+fun raksahtelu_NK : NK ;
+fun raksauttaa_VK : VK ;
+fun raksi_NK : NK ;
+fun raksia_VK : VK ;
+fun raksua_VK : VK ;
+fun raksuttaa_VK : VK ;
+fun raksutus_NK : NK ;
+fun rakuuna_1_NK : NK ;
+fun rakuuna_2_NK : NK ;
+fun rallatella_VK : VK ;
+fun rallattaa_VK : VK ;
+fun rallattelu_NK : NK ;
+fun rallatus_NK : NK ;
+fun ralli_1_NK : NK ;
+fun ralli_2_NK : NK ;
+fun ralli_3_NK : NK ;
+fun rallicross_NK : NK ;
+fun ramadan_NK : NK ;
+fun ramaista_VK : VK ;
+fun rambo_NK : NK ;
+fun rambutani_NK : NK ;
+fun ramina_NK : NK ;
+fun rampa_NK : NK ;
+fun rampaantua_VK : VK ;
+fun rampata_VK : VK ;
+fun rampauttaa_VK : VK ;
+fun rampautua_VK : VK ;
+fun ramppi_NK : NK ;
+fun rampuus_NK : NK ;
+fun rangaista_VK : VK ;
+fun rangaistava_NK : NK ;
+fun rangaistavuus_NK : NK ;
+fun rangaistus_NK : NK ;
+fun rangaistusaika_NK : NK ;
+fun rangi_NK : NK ;
+fun ranka_AK : AK ;
+fun rankaisija_NK : NK ;
+fun rankaisu_NK : NK ;
+--+ fun rankasti_AdvK : AdvK ;
+fun rankata_VK : VK ;
+fun ranketa_VK : VK ;
+fun ranki_NK : NK ;
+fun rankka_NK : NK ;
+fun rankkari_NK : NK ;
+fun rankkaus_NK : NK ;
+fun rankki_NK : NK ;
+fun rankkuri_NK : NK ;
+fun ranko_NK : NK ;
+fun rannansiirtyminen_NK : NK ;
+fun rannaton_NK : NK ;
+fun ranne_NK : NK ;
+fun ranneke_NK : NK ;
+fun rannemmaksi_AdvK : AdvK ;
+fun rannemmalla_AdvK : AdvK ;
+fun rannemmalle_AdvK : AdvK ;
+fun rannemmalta_AdvK : AdvK ;
+fun rannemmas_AdvK : AdvK ;
+fun rannempaa_AdvK : AdvK ;
+fun rannempana_AdvK : AdvK ;
+fun rannikki_NK : NK ;
+fun rannikko_NK : NK ;
+fun rannimmainen_NK : NK ;
+fun rannimmaksi_AdvK : AdvK ;
+fun rannimmas_AdvK : AdvK ;
+fun rannimpaa_AdvK : AdvK ;
+fun rannimpana_AdvK : AdvK ;
+fun ranska_NK : NK ;
+fun ranskalaistaa_VK : VK ;
+fun ranskalaistua_VK : VK ;
+fun ranskannos_NK : NK ;
+fun ranskantaa_VK : VK ;
+fun ranskatar_NK : NK ;
+fun ranskis_NK : NK ;
+fun ranta_NK : NK ;
+fun rantaantua_VK : VK ;
+fun rantainen_NK : NK ;
+fun rantama_NK : NK ;
+fun rantasipi_NK : NK ;
+fun rantautua_VK : VK ;
+fun rantsu_NK : NK ;
+fun ranttaliksi_AdvK : AdvK ;
+fun rantu_NK : NK ;
+fun raollaan_AdvK : AdvK ;
+fun raolleen_AdvK : AdvK ;
+fun raotella_VK : VK ;
+fun raottaa_VK : VK ;
+fun raottua_VK : VK ;
+fun rap_NK : NK ;
+fun rapa_NK : NK ;
+fun rapainen_NK : NK ;
+fun rapakko_NK : NK ;
+fun raparperi_NK : NK ;
+fun rapata_1_VK : VK ;
+fun rapata_2_VK : VK ;
+fun rapauttaa_VK : VK ;
+fun rapautua_VK : VK ;
+fun rapea_NK : NK ;
+fun rapeus_NK : NK ;
+fun rapeutua_VK : VK ;
+fun rapiat_AdvK : AdvK ;
+fun rapina_NK : NK ;
+fun rapista_VK : VK ;
+fun rapistella_VK : VK ;
+fun rapistua_VK : VK ;
+fun rapisuttaa_VK : VK ;
+fun raplata_VK : VK ;
+fun raportoida_VK : VK ;
+fun raportointi_NK : NK ;
+fun raportti_NK : NK ;
+fun rappaaja_NK : NK ;
+fun rappaus_NK : NK ;
+fun rappeuma_NK : NK ;
+fun rappeuttaa_VK : VK ;
+fun rappeutua_VK : VK ;
+fun rappeutuma_NK : NK ;
+fun rappio_NK : NK ;
+fun rappioittaa_VK : VK ;
+fun rappioitua_VK : VK ;
+fun rappu_NK : NK ;
+fun rappunen_NK : NK ;
+fun rapsaa_VK : VK ;
+fun rapsahdella_VK : VK ;
+fun rapsahdus_NK : NK ;
+fun rapsahtaa_VK : VK ;
+fun rapsaus_NK : NK ;
+fun rapsauttaa_VK : VK ;
+fun rapse_NK : NK ;
+fun rapsi_NK : NK ;
+fun rapsia_VK : VK ;
+fun rapsodia_NK : NK ;
+fun rapsodinen_NK : NK ;
+fun rapsu_NK : NK ;
+fun rapsutella_VK : VK ;
+fun rapsuttaa_VK : VK ;
+fun rapsutus_NK : NK ;
+fun rapu_NK : NK ;
+fun rapuvoi_NK : NK ;
+fun rariteetti_NK : NK ;
+fun rasahdella_VK : VK ;
+fun rasahdus_NK : NK ;
+fun rasahtaa_VK : VK ;
+fun rasahtelu_NK : NK ;
+fun rasi_NK : NK ;
+fun rasia_NK : NK ;
+fun rasiallinen_NK : NK ;
+fun rasismi_NK : NK ;
+fun rasisti_NK : NK ;
+fun rasistinen_AK : AK ;
+--+ fun rasistisesti_AdvK : AdvK ;
+fun rasistisuus_NK : NK ;
+fun rasite_NK : NK ;
+fun rasittaa_VK : VK ;
+fun rasittava_AK : AK ;
+--+ fun rasittavasti_AdvK : AdvK ;
+fun rasittavuus_NK : NK ;
+fun rasitteinen_NK : NK ;
+fun rasittua_VK : VK ;
+fun rasitus_NK : NK ;
+--+ fun raskaasti_AdvK : AdvK ;
+fun raskas_AK : AK ;
+fun raskaudenaika_NK : NK ;
+fun raskaus_NK : NK ;
+fun raskausaika_NK : NK ;
+fun raskauttaa_VK : VK ;
+fun raskauttava_NK : NK ;
+fun raskia_VK : VK ;
+fun rasko_NK : NK ;
+fun raspi_NK : NK ;
+fun rassailla_VK : VK ;
+fun rassata_VK : VK ;
+fun rassaus_NK : NK ;
+fun rassi_NK : NK ;
+fun rassu_NK : NK ;
+fun rassukka_NK : NK ;
+fun rasta_NK : NK ;
+fun rastafari_NK : NK ;
+fun rastas_NK : NK ;
+fun rasteri_NK : NK ;
+fun rasteroida_VK : VK ;
+fun rasterointi_NK : NK ;
+fun rasti_NK : NK ;
+fun rastia_VK : VK ;
+fun rastittaa_VK : VK ;
+fun rasva_NK : NK ;
+fun rasvaantua_VK : VK ;
+fun rasvainen_NK : NK ;
+fun rasvaisuus_NK : NK ;
+fun rasvata_VK : VK ;
+fun rasvaton_NK : NK ;
+fun rasvaus_NK : NK ;
+fun rasvautua_VK : VK ;
+fun rasvis_NK : NK ;
+fun rasvoittaa_VK : VK ;
+fun rasvoittua_VK : VK ;
+fun rata_NK : NK ;
+fun ratainen_NK : NK ;
+fun ratamo_NK : NK ;
+fun ratas_NK : NK ;
+fun ratatouille_NK : NK ;
+fun ratatui_NK : NK ;
+fun ratautua_VK : VK ;
+fun ratifioida_VK : VK ;
+fun ratifiointi_NK : NK ;
+fun ratikka_NK : NK ;
+fun ratina_NK : NK ;
+fun rating_NK : NK ;
+fun rationaalinen_AK : AK ;
+--+ fun rationaalisesti_AdvK : AdvK ;
+fun rationaalistaa_VK : VK ;
+fun rationaalistua_VK : VK ;
+fun rationaalisuus_NK : NK ;
+fun rationalismi_NK : NK ;
+fun rationalisoida_VK : VK ;
+fun rationalisointi_NK : NK ;
+fun rationalisoitua_VK : VK ;
+fun rationalisti_NK : NK ;
+fun rationalistinen_NK : NK ;
+fun ratista_VK : VK ;
+fun ratkaisematon_NK : NK ;
+fun ratkaiseva_AK : AK ;
+--+ fun ratkaisevasti_AdvK : AdvK ;
+fun ratkaisija_NK : NK ;
+fun ratkaista_VK : VK ;
+fun ratkaisu_NK : NK ;
+fun ratkeama_NK : NK ;
+fun ratkeilla_VK : VK ;
+fun ratketa_VK : VK ;
+fun ratki_AdvK : AdvK ;
+fun ratkoa_VK : VK ;
+fun ratkoja_NK : NK ;
+fun ratsailla_AdvK : AdvK ;
+fun ratsaille_AdvK : AdvK ;
+fun ratsailta_AdvK : AdvK ;
+fun ratsain_AdvK : AdvK ;
+fun ratsastaa_VK : VK ;
+fun ratsastaja_NK : NK ;
+fun ratsastella_VK : VK ;
+fun ratsastus_NK : NK ;
+fun ratsata_VK : VK ;
+fun ratsautua_VK : VK ;
+fun ratsia_NK : NK ;
+fun ratsu_NK : NK ;
+fun ratsukko_NK : NK ;
+--? fun rattaat_NK : NK ;
+fun rattaisto_NK : NK ;
+fun ratti_1_NK : NK ;
+fun ratti_2_NK : NK ;
+fun ratto_NK : NK ;
+fun rattoisa_AK : AK ;
+--+ fun rattoisasti_AdvK : AdvK ;
+fun ratustaa_VK : VK ;
+fun ratustella_VK : VK ;
+fun raudikko_NK : NK ;
+fun raudoite_NK : NK ;
+fun raudoittaa_VK : VK ;
+fun raudoittaja_NK : NK ;
+fun raudoitus_NK : NK ;
+fun raueta_VK : VK ;
+fun rauha_NK : NK ;
+fun rauhaanpakottaminen_NK : NK ;
+fun rauhainen_NK : NK ;
+fun rauhaisa_NK : NK ;
+fun rauhallinen_AK : AK ;
+--+ fun rauhallisesti_AdvK : AdvK ;
+fun rauhallisuus_NK : NK ;
+fun rauhanaika_NK : NK ;
+fun rauhanen_NK : NK ;
+fun rauhaton_NK : NK ;
+fun rauhattomasti_AdvK : AdvK ;
+fun rauhattomuus_NK : NK ;
+fun rauhoite_NK : NK ;
+fun rauhoitella_VK : VK ;
+fun rauhoittaa_VK : VK ;
+fun rauhoittua_VK : VK ;
+fun rauhoitus_NK : NK ;
+fun rauhoitusaika_NK : NK ;
+fun raukaista_VK : VK ;
+fun raukea_AK : AK ;
+--+ fun raukeasti_AdvK : AdvK ;
+fun raukeus_NK : NK ;
+fun raukka_NK : NK ;
+--+ fun raukkamaisesti_AdvK : AdvK ;
+fun raukkamaisuus_NK : NK ;
+fun raukkis_NK : NK ;
+fun raunikki_NK : NK ;
+fun raunio_NK : NK ;
+fun raunioinen_NK : NK ;
+fun raunioittaa_VK : VK ;
+fun raunioitua_VK : VK ;
+fun rausku_NK : NK ;
+fun rauta_NK : NK ;
+fun rautainen_AK : AK ;
+--+ fun rautaisesti_AdvK : AdvK ;
+fun rautatiela'inen_NK : NK ;
+fun rautiainen_NK : NK ;
+fun rautias_NK : NK ;
+fun rautu_NK : NK ;
+fun ravakasti_AdvK : AdvK ;
+fun ravakka_NK : NK ;
+fun ravata_VK : VK ;
+fun ravauttaa_1_VK : VK ;
+fun ravauttaa_2_VK : VK ;
+--? fun ravet_NK : NK ;
+fun ravi_NK : NK ;
+fun ravinne_NK : NK ;
+fun ravinnollinen_NK : NK ;
+fun ravinteikas_NK : NK ;
+fun ravinteinen_NK : NK ;
+fun ravinteisuus_NK : NK ;
+fun ravinto_NK : NK ;
+fun ravintoinen_NK : NK ;
+fun ravintola_NK : NK ;
+fun ravintoloitsija_NK : NK ;
+fun ravioli_NK : NK ;
+fun ravistaa_VK : VK ;
+fun ravistella_VK : VK ;
+fun ravistelu_NK : NK ;
+fun ravistin_NK : NK ;
+fun ravistua_VK : VK ;
+fun ravistuttaa_VK : VK ;
+fun ravita_VK : VK ;
+fun ravitsemuksellinen_NK : NK ;
+fun ravitsemus_NK : NK ;
+fun ravitseva_NK : NK ;
+fun ravitsevuus_NK : NK ;
+fun ravuri_NK : NK ;
+fun ravustaa_VK : VK ;
+fun ravustaja_NK : NK ;
+fun ravustus_NK : NK ;
+--+ fun reaaliaikaisesti_AdvK : AdvK ;
+fun reaalinen_NK : NK ;
+fun reaalistaa_VK : VK ;
+fun reaalistua_VK : VK ;
+fun reagenssi_NK : NK ;
+fun reagoida_VK : VK ;
+fun reagointi_NK : NK ;
+fun reaktiivinen_NK : NK ;
+fun reaktio_NK : NK ;
+fun reaktioaika_NK : NK ;
+fun reaktori_NK : NK ;
+fun realisaatio_NK : NK ;
+fun realismi_NK : NK ;
+fun realisoida_VK : VK ;
+fun realisointi_NK : NK ;
+fun realisoitua_VK : VK ;
+fun realisti_NK : NK ;
+fun realistinen_AK : AK ;
+--+ fun realistisesti_AdvK : AdvK ;
+fun realistisuus_NK : NK ;
+fun realiteetti_NK : NK ;
+fun redi_NK : NK ;
+fun reduktio_NK : NK ;
+fun reduktiojakautuminen_NK : NK ;
+fun redundanssi_NK : NK ;
+fun redundantti_NK : NK ;
+fun redusoida_VK : VK ;
+fun redusointi_NK : NK ;
+fun redusoitua_VK : VK ;
+fun reelinki_NK : NK ;
+fun reesus_NK : NK ;
+fun referaatti_NK : NK ;
+fun referee_NK : NK ;
+fun referenssi_NK : NK ;
+fun referentti_NK : NK ;
+fun referoida_VK : VK ;
+fun referoija_NK : NK ;
+fun referointi_NK : NK ;
+fun refilli_NK : NK ;
+fun reflaatio_NK : NK ;
+fun refleksi_NK : NK ;
+fun refleksiivinen_NK : NK ;
+fun reflektorinen_AK : AK ;
+--+ fun reflektorisesti_AdvK : AdvK ;
+fun reflektorisuus_NK : NK ;
+fun reformaatio_NK : NK ;
+fun reformaattori_NK : NK ;
+fun reformatorinen_NK : NK ;
+fun reformi_NK : NK ;
+fun reformismi_NK : NK ;
+fun reformisti_NK : NK ;
+fun reformistinen_NK : NK ;
+fun reformoida_VK : VK ;
+fun reformointi_NK : NK ;
+fun refrengi_NK : NK ;
+fun regatta_NK : NK ;
+fun regeneraatio_NK : NK ;
+fun regeneraattori_NK : NK ;
+fun regeneroida_VK : VK ;
+fun regenerointi_NK : NK ;
+fun regeneroitua_VK : VK ;
+fun reggae_NK : NK ;
+fun regionaalinen_NK : NK ;
+fun regionalismi_NK : NK ;
+fun regressiivinen_NK : NK ;
+fun regressio_NK : NK ;
+fun rehabilitoida_VK : VK ;
+fun rehabilitointi_NK : NK ;
+fun rehdisti_AdvK : AdvK ;
+fun rehellinen_AK : AK ;
+--+ fun rehellisesti_AdvK : AdvK ;
+fun rehellisyys_NK : NK ;
+fun rehennella'_VK : VK ;
+fun rehentelija'_NK : NK ;
+fun rehentely_NK : NK ;
+fun rehevyys_NK : NK ;
+fun reheva'_AK : AK ;
+--+ fun reheva'sti_AdvK : AdvK ;
+fun rehevo'itta'a'_VK : VK ;
+fun rehevo'itya'_VK : VK ;
+fun rehkia'_VK : VK ;
+fun rehottaa_VK : VK ;
+fun rehti_NK : NK ;
+fun rehtiys_NK : NK ;
+fun rehtori_NK : NK ;
+fun rehtorius_NK : NK ;
+fun rehu_NK : NK ;
+fun rehustaa_VK : VK ;
+fun rehustus_NK : NK ;
+fun rehvakas_AK : AK ;
+fun rehvakka_NK : NK ;
+--+ fun rehvakkaasti_AdvK : AdvK ;
+fun rehvakkuus_NK : NK ;
+fun rehvastelija_NK : NK ;
+fun rehvastella_VK : VK ;
+fun rehvastelu_NK : NK ;
+fun rei_ika's_NK : NK ;
+fun rei_ite_NK : NK ;
+fun rei_itin_NK : NK ;
+fun rei_itta'a'_VK : VK ;
+fun rei_itys_NK : NK ;
+fun reikeli_NK : NK ;
+fun reiki_NK : NK ;
+fun reikiintya'_VK : VK ;
+fun reika'_NK : NK ;
+fun reika'inen_NK : NK ;
+fun reilaaja_NK : NK ;
+fun reilaan_AdvK : AdvK ;
+fun reilassa_AdvK : AdvK ;
+fun reilata_VK : VK ;
+fun reilu_AK : AK ;
+--+ fun reilusti_AdvK : AdvK ;
+fun reiluus_NK : NK ;
+fun reima_NK : NK ;
+fun reimari_NK : NK ;
+fun reininviini_NK : NK ;
+fun reinkarnaatio_NK : NK ;
+fun reipas_NK : NK ;
+fun reipastua_VK : VK ;
+fun reippaasti_AdvK : AdvK ;
+fun reippailija_NK : NK ;
+fun reippailla_VK : VK ;
+fun reippailu_NK : NK ;
+fun reippaus_NK : NK ;
+fun reisi_NK : NK ;
+fun reissata_VK : VK ;
+fun reissu_NK : NK ;
+fun reistailla_VK : VK ;
+fun reistata_VK : VK ;
+fun reitinen_NK : NK ;
+fun reititta'a'_VK : VK ;
+fun reittaus_NK : NK ;
+fun reitti_NK : NK ;
+fun reivaaja_NK : NK ;
+fun reivata_VK : VK ;
+fun reivaus_NK : NK ;
+fun reivi_NK : NK ;
+fun reivit_NK : NK ;
+fun reia'ka's_NK : NK ;
+fun reia'llinen_NK : NK ;
+fun rejekti_NK : NK ;
+fun rekallinen_NK : NK ;
+fun reki_NK : NK ;
+fun rekisteri_NK : NK ;
+fun rekistero'ida'_VK : VK ;
+fun rekistero'inti_NK : NK ;
+fun rekka_1_NK : NK ;
+fun rekka_2_NK : NK ;
+fun rekkari_NK : NK ;
+fun rekki_NK : NK ;
+fun reklamaatio_NK : NK ;
+fun reklamoida_VK : VK ;
+fun reklamointi_NK : NK ;
+fun rekonstruktio_NK : NK ;
+fun rekonstruoida_VK : VK ;
+fun rekonstruointi_NK : NK ;
+fun rekrytoida_VK : VK ;
+fun rekrytointi_NK : NK ;
+fun reksi_NK : NK ;
+fun rektio_NK : NK ;
+fun rekviemi_NK : NK ;
+fun rekvisiitta_NK : NK ;
+fun rekyyli_NK : NK ;
+fun rekyylito'n_NK : NK ;
+fun rela_NK : NK ;
+fun relaatio_NK : NK ;
+fun relaksantti_NK : NK ;
+fun relata_VK : VK ;
+fun relatiivinen_NK : NK ;
+fun relativismi_NK : NK ;
+fun relativistinen_NK : NK ;
+fun rele_NK : NK ;
+fun relevanssi_NK : NK ;
+fun reliefi_NK : NK ;
+fun reliikki_NK : NK ;
+fun relikti_NK : NK ;
+fun relissi_NK : NK ;
+fun rellestys_NK : NK ;
+fun rellesta'a'_VK : VK ;
+fun remahdus_NK : NK ;
+fun remahtaa_VK : VK ;
+fun remakasti_AdvK : AdvK ;
+fun remakka_NK : NK ;
+fun remburssi_NK : NK ;
+fun remissi_NK : NK ;
+fun remissio_NK : NK ;
+fun remmi_NK : NK ;
+fun remontoida_VK : VK ;
+fun remontointi_NK : NK ;
+fun remontteerata_VK : VK ;
+fun remontti_NK : NK ;
+fun rempallaan_AdvK : AdvK ;
+fun rempalleen_AdvK : AdvK ;
+fun rempata_VK : VK ;
+fun rempseys_NK : NK ;
+fun rempsea'_AK : AK ;
+--+ fun rempsea'sti_AdvK : AdvK ;
+fun remu_NK : NK ;
+fun remuisa_NK : NK ;
+fun remuta_VK : VK ;
+fun renessanssi_NK : NK ;
+fun renessanssiaika_NK : NK ;
+fun rengas_NK : NK ;
+fun rengastaa_VK : VK ;
+fun rengastaja_NK : NK ;
+fun rengastus_NK : NK ;
+fun renkainen_NK : NK ;
+fun renki_NK : NK ;
+fun renksu_NK : NK ;
+fun renkuttaa_VK : VK ;
+fun renkutus_NK : NK ;
+fun rennosti_AdvK : AdvK ;
+fun rento_NK : NK ;
+fun rentous_NK : NK ;
+fun rentoute_NK : NK ;
+fun rentouttaa_VK : VK ;
+fun rentoutua_VK : VK ;
+fun rentoutus_NK : NK ;
+fun renttu_NK : NK ;
+fun renttuilla_VK : VK ;
+fun renttuilu_NK : NK ;
+fun rentukka_NK : NK ;
+fun repale_NK : NK ;
+fun repaleinen_NK : NK ;
+fun repaleisuus_NK : NK ;
+fun repata_VK : VK ;
+fun repeentya'_VK : VK ;
+fun repeilla'_VK : VK ;
+fun repertoaari_NK : NK ;
+fun repeytyma'_NK : NK ;
+fun repeytya'_VK : VK ;
+fun repea'ma'_NK : NK ;
+fun repia'_VK : VK ;
+fun repliikki_NK : NK ;
+fun replika_NK : NK ;
+fun replikoida_VK : VK ;
+fun replikointi_NK : NK ;
+fun repo_NK : NK ;
+fun reportaasi_NK : NK ;
+fun reportteri_NK : NK ;
+fun repostella_VK : VK ;
+fun repostelu_NK : NK ;
+fun reppana_NK : NK ;
+fun reppu_NK : NK ;
+fun reppuri_NK : NK ;
+fun repro_NK : NK ;
+fun reproduktio_NK : NK ;
+fun reprodusoida_VK : VK ;
+fun repsahdus_NK : NK ;
+fun repsahtaa_VK : VK ;
+fun repsikka_NK : NK ;
+fun repsottaa_VK : VK ;
+fun republikaani_NK : NK ;
+fun republikaaninen_NK : NK ;
+fun repullinen_NK : NK ;
+fun reputtaa_VK : VK ;
+fun repa'isevyys_NK : NK ;
+fun repa'iseva'_AK : AK ;
+--+ fun repa'iseva'sti_AdvK : AdvK ;
+fun repa'ista'_VK : VK ;
+fun repa'isy_NK : NK ;
+fun requiem_NK : NK ;
+fun reseda_NK : NK ;
+fun resepti_NK : NK ;
+fun reseptio_NK : NK ;
+fun reseptori_NK : NK ;
+fun reseptorinen_NK : NK ;
+fun reservaatio_NK : NK ;
+fun reservaatti_NK : NK ;
+fun reservi_NK : NK ;
+fun reservila'inen_NK : NK ;
+fun resessiivinen_NK : NK ;
+fun residenssi_NK : NK ;
+fun resignaatio_NK : NK ;
+fun resignoitua_VK : VK ;
+fun resiina_NK : NK ;
+fun resiprookkinen_NK : NK ;
+fun resistanssi_NK : NK ;
+fun resistenssi_NK : NK ;
+fun resistentti_NK : NK ;
+fun resistiivisyys_NK : NK ;
+fun resitaali_NK : NK ;
+fun resitaatio_NK : NK ;
+fun resitatiivi_NK : NK ;
+fun resitatiivinen_AK : AK ;
+--+ fun resitatiivisesti_AdvK : AdvK ;
+fun resitoida_VK : VK ;
+fun reskontra_NK : NK ;
+fun resonaattori_NK : NK ;
+fun resonanssi_NK : NK ;
+fun resonoida_VK : VK ;
+fun resonointi_NK : NK ;
+fun resori_NK : NK ;
+fun respa_NK : NK ;
+fun respekti_NK : NK ;
+fun respiitti_NK : NK ;
+fun respiittiaika_NK : NK ;
+fun respiraattori_NK : NK ;
+fun ressu_NK : NK ;
+fun ressukka_NK : NK ;
+fun restauroida_VK : VK ;
+fun restaurointi_NK : NK ;
+fun restonomi_NK : NK ;
+fun resu_NK : NK ;
+fun resuinen_NK : NK ;
+fun resultantti_NK : NK ;
+fun resursoida_VK : VK ;
+fun resurssit_NK : NK ;
+fun resuta_VK : VK ;
+fun retale_NK : NK ;
+fun retea'_AK : AK ;
+--+ fun retea'sti_AdvK : AdvK ;
+fun reti_NK : NK ;
+fun retikka_NK : NK ;
+fun retkahdella_VK : VK ;
+fun retkahdus_NK : NK ;
+fun retkahtaa_VK : VK ;
+fun retkeilija'_NK : NK ;
+fun retkeilla'_VK : VK ;
+fun retkeily_NK : NK ;
+fun retkela'inen_NK : NK ;
+fun retki_NK : NK ;
+fun retkottaa_VK : VK ;
+fun retku_NK : NK ;
+fun retkua_VK : VK ;
+fun retkue_NK : NK ;
+fun retliini_NK : NK ;
+fun retoriikka_NK : NK ;
+fun retorinen_AK : AK ;
+--+ fun retorisesti_AdvK : AdvK ;
+fun retorisuus_NK : NK ;
+fun retoromaani_NK : NK ;
+fun retoromaaninen_NK : NK ;
+fun retortti_NK : NK ;
+fun retostaa_VK : VK ;
+fun retostella_VK : VK ;
+fun retriitti_NK : NK ;
+fun retrospektiivinen_NK : NK ;
+fun retsina_NK : NK ;
+fun rettelo'_NK : NK ;
+fun rettelo'ida'_VK : VK ;
+fun rettelo'ija'_NK : NK ;
+fun rettelo'inti_NK : NK ;
+fun rettelo'itsija'_NK : NK ;
+fun retusoida_VK : VK ;
+fun retusointi_NK : NK ;
+fun retustaa_VK : VK ;
+fun retuuttaa_VK : VK ;
+fun reuhake_NK : NK ;
+fun reuhata_VK : VK ;
+fun reuhka_NK : NK ;
+fun reuhottaa_VK : VK ;
+fun reuhtoa_VK : VK ;
+fun reuma_NK : NK ;
+fun reumaantua_VK : VK ;
+fun reumaatikko_NK : NK ;
+fun reumaattinen_NK : NK ;
+fun reumatismi_NK : NK ;
+fun reumatologia_NK : NK ;
+fun reuna_NK : NK ;
+fun reunainen_NK : NK ;
+fun reunake_NK : NK ;
+fun reunama_NK : NK ;
+fun reunemmaksi_AdvK : AdvK ;
+fun reunemmalla_AdvK : AdvK ;
+fun reunemmalle_AdvK : AdvK ;
+fun reunemmalta_AdvK : AdvK ;
+fun reunemmas_AdvK : AdvK ;
+fun reunempaa_AdvK : AdvK ;
+fun reunempana_AdvK : AdvK ;
+fun reunimmainen_NK : NK ;
+fun reunimmaksi_AdvK : AdvK ;
+fun reunimmalla_AdvK : AdvK ;
+fun reunimmalle_AdvK : AdvK ;
+fun reunimmalta_AdvK : AdvK ;
+fun reunimmas_AdvK : AdvK ;
+fun reunimpaa_AdvK : AdvK ;
+fun reunimpana_AdvK : AdvK ;
+fun reunuksinen_NK : NK ;
+fun reunus_NK : NK ;
+fun reunusta_NK : NK ;
+fun reunustaa_VK : VK ;
+fun reunuste_NK : NK ;
+fun reunustus_NK : NK ;
+fun reutoa_VK : VK ;
+fun revalvaatio_NK : NK ;
+fun revalvoida_VK : VK ;
+fun revalvointi_NK : NK ;
+fun revalvoitua_VK : VK ;
+fun revansismi_NK : NK ;
+fun revansisti_NK : NK ;
+fun revansistinen_NK : NK ;
+fun revanssi_NK : NK ;
+fun revari_NK : NK ;
+fun reversiibeli_NK : NK ;
+fun reveta'_VK : VK ;
+fun reviiri_NK : NK ;
+fun reviisori_NK : NK ;
+fun revinna'inen_NK : NK ;
+fun revinta'_NK : NK ;
+fun revisio_NK : NK ;
+fun revisionismi_NK : NK ;
+fun revisionistinen_NK : NK ;
+fun revitella'_VK : VK ;
+fun revittely_NK : NK ;
+fun revitta'a'_VK : VK ;
+fun revitys_NK : NK ;
+fun revitytta'a'_VK : VK ;
+fun revohka_NK : NK ;
+fun revolutionisti_NK : NK ;
+fun revoluutio_NK : NK ;
+fun revolveri_NK : NK ;
+fun revyy_NK : NK ;
+fun reva'hdys_NK : NK ;
+fun reva'hdytta'a'_VK : VK ;
+fun reva'htyma'_NK : NK ;
+fun reva'hta'a'_VK : VK ;
+fun reva'ista'_VK : VK ;
+fun reva'ytta'a'_VK : VK ;
+fun rhesus_NK : NK ;
+fun rhododendron_NK : NK ;
+fun rial_NK : NK ;
+fun riboflaviini_NK : NK ;
+fun rieha_NK : NK ;
+fun riehaannuttaa_VK : VK ;
+fun riehaantua_VK : VK ;
+fun riehakas_AK : AK ;
+fun riehakka_NK : NK ;
+--+ fun riehakkaasti_AdvK : AdvK ;
+fun riehakkuus_NK : NK ;
+fun riehua_VK : VK ;
+fun riehunta_NK : NK ;
+fun riekale_NK : NK ;
+fun riekaleinen_NK : NK ;
+fun riekko_NK : NK ;
+fun riekkua_VK : VK ;
+--? fun riekkujaiset_NK : NK ;
+fun riemastua_VK : VK ;
+fun riemastus_NK : NK ;
+fun riemastuttaa_VK : VK ;
+fun riemu_NK : NK ;
+fun riemuinen_NK : NK ;
+fun riemuisa_AK : AK ;
+--+ fun riemuisasti_AdvK : AdvK ;
+fun riemuissaan_AdvK : AdvK ;
+fun riemuita_VK : VK ;
+fun riemukas_AK : AK ;
+--+ fun riemukkaasti_AdvK : AdvK ;
+fun riemukkuus_NK : NK ;
+fun riemullinen_NK : NK ;
+fun riemurinnoin_AdvK : AdvK ;
+fun riena_NK : NK ;
+fun rienaaja_NK : NK ;
+fun rienata_VK : VK ;
+fun rienaus_NK : NK ;
+fun riento_NK : NK ;
+fun rienta'a'_VK : VK ;
+fun riepoa_VK : VK ;
+fun riepotella_VK : VK ;
+fun riepottaa_VK : VK ;
+fun riepottelu_NK : NK ;
+fun riepotus_NK : NK ;
+fun riepu_NK : NK ;
+fun riesa_NK : NK ;
+fun rieska_NK : NK ;
+fun rietas_NK : NK ;
+fun rietastella_VK : VK ;
+fun rietastelu_NK : NK ;
+fun riettaasti_AdvK : AdvK ;
+fun riettaus_NK : NK ;
+fun rieva'_NK : NK ;
+fun riff_NK : NK ;
+fun rigorismi_NK : NK ;
+fun rigoristi_NK : NK ;
+fun rigoristinen_AK : AK ;
+--+ fun rigoristisesti_AdvK : AdvK ;
+fun rigoristisuus_NK : NK ;
+fun rihkama_NK : NK ;
+fun rihla_NK : NK ;
+fun rihlata_VK : VK ;
+fun rihlaus_NK : NK ;
+fun rihma_NK : NK ;
+fun rihmasto_NK : NK ;
+fun riiailla_VK : VK ;
+fun riiata_VK : VK ;
+fun riidaton_NK : NK ;
+fun riidella'_VK : VK ;
+fun riihi_NK : NK ;
+fun riihitta'a'_VK : VK ;
+fun riimi_NK : NK ;
+fun riimillinen_NK : NK ;
+fun riimitella'_VK : VK ;
+fun riimitelma'_NK : NK ;
+fun riimittely_NK : NK ;
+fun riimitta'a'_VK : VK ;
+fun riimitys_NK : NK ;
+fun riimito'n_NK : NK ;
+fun riimu_1_NK : NK ;
+fun riimu_2_NK : NK ;
+fun riimuttaa_VK : VK ;
+fun riimutus_NK : NK ;
+fun riipaiseva_AK : AK ;
+--+ fun riipaisevasti_AdvK : AdvK ;
+fun riipaista_VK : VK ;
+fun riipalla_AdvK : AdvK ;
+fun riipallaan_AdvK : AdvK ;
+fun riipalle_AdvK : AdvK ;
+fun riipalleen_AdvK : AdvK ;
+fun riipia'_VK : VK ;
+fun riipoa_VK : VK ;
+fun riippa_NK : NK ;
+fun riippua_VK : VK ;
+fun riippuma_NK : NK ;
+fun riippumaton_NK : NK ;
+fun riippumatta_AdvK : AdvK ;
+fun riippumattomasti_AdvK : AdvK ;
+fun riippumattomuus_NK : NK ;
+fun riippuva_NK : NK ;
+fun riippuvainen_NK : NK ;
+fun riippuvaisuus_NK : NK ;
+fun riippuvuus_NK : NK ;
+fun riipuksiin_AdvK : AdvK ;
+fun riipuksissa_AdvK : AdvK ;
+fun riipunta_NK : NK ;
+fun riipus_NK : NK ;
+fun riipustaa_VK : VK ;
+fun riiputtaa_VK : VK ;
+fun riiputus_NK : NK ;
+fun riisi_1_NK : NK ;
+fun riisi_2_NK : NK ;
+fun riista_NK : NK ;
+fun riistainen_NK : NK ;
+fun riistamaaliammunta_NK : NK ;
+fun riisto_NK : NK ;
+fun riista'ja'_NK : NK ;
+fun riista'ytya'_VK : VK ;
+fun riista'a'_VK : VK ;
+fun riisua_VK : VK ;
+fun riisunta_NK : NK ;
+fun riisuuntua_VK : VK ;
+fun riisuutua_VK : VK ;
+fun riita_NK : NK ;
+fun riitaannuttaa_VK : VK ;
+fun riitaantua_VK : VK ;
+fun riitainen_AK : AK ;
+fun riitaisa_NK : NK ;
+--+ fun riitaisesti_AdvK : AdvK ;
+fun riitaisuus_NK : NK ;
+fun riitauttaa_VK : VK ;
+fun riitautua_VK : VK ;
+fun riite_NK : NK ;
+fun riitelija'_NK : NK ;
+fun riitely_NK : NK ;
+fun riitinki_NK : NK ;
+fun riitteinen_NK : NK ;
+fun riitti_NK : NK ;
+fun riittoisa_AK : AK ;
+--+ fun riittoisasti_AdvK : AdvK ;
+fun riittoisuus_NK : NK ;
+fun riittya'_VK : VK ;
+fun riitta'miin_AdvK : AdvK ;
+fun riitta'ma'tto'myys_NK : NK ;
+fun riitta'ma'tto'ma'sti_AdvK : AdvK ;
+fun riitta'ma'to'n_NK : NK ;
+fun riitta'vyys_NK : NK ;
+fun riitta'va'_AK : AK ;
+--+ fun riitta'va'sti_AdvK : AdvK ;
+fun riitta'a'_1_VK : VK ;
+fun riitta'a'_2_VK : VK ;
+fun riiustaa_VK : VK ;
+fun riiustella_VK : VK ;
+fun riiustelu_NK : NK ;
+fun riiuu_NK : NK ;
+fun riivaaja_NK : NK ;
+fun riivata_VK : VK ;
+fun riivattu_NK : NK ;
+fun riivatunmoinen_NK : NK ;
+fun riivatusti_AdvK : AdvK ;
+fun riivio'_NK : NK ;
+fun rikas_AK : AK ;
+fun rikastaa_VK : VK ;
+fun rikastamo_NK : NK ;
+fun rikaste_NK : NK ;
+fun rikastin_NK : NK ;
+fun rikastua_VK : VK ;
+fun rikastus_NK : NK ;
+fun rikastuttaa_VK : VK ;
+fun rikastuttaja_NK : NK ;
+fun rike_NK : NK ;
+fun riki_NK : NK ;
+fun rikka_NK : NK ;
+--+ fun rikkaasti_AdvK : AdvK ;
+fun rikkaus_NK : NK ;
+fun rikkeeto'n_NK : NK ;
+fun rikki_1_NK : NK ;
+fun rikki_2_AdvK : AdvK ;
+fun rikkidioksidi_NK : NK ;
+fun rikkina'inen_NK : NK ;
+fun rikkina'isyys_NK : NK ;
+fun rikko_NK : NK ;
+fun rikkoa_VK : VK ;
+fun rikkoja_NK : NK ;
+--? fun rikkojaiset_NK : NK ;
+fun rikkomaton_NK : NK ;
+fun rikkomattomuus_NK : NK ;
+fun rikkomus_NK : NK ;
+fun rikkoontua_VK : VK ;
+fun rikkouma_NK : NK ;
+fun rikkoutua_VK : VK ;
+fun rikkoutuma_NK : NK ;
+fun rikkua_VK : VK ;
+fun rikkumaton_NK : NK ;
+fun rikkuri_NK : NK ;
+fun rikollinen_AK : AK ;
+--+ fun rikollisesti_AdvK : AdvK ;
+fun rikollisuus_NK : NK ;
+fun rikos_NK : NK ;
+fun riksa_NK : NK ;
+fun rik_a_NK : NK ;
+fun riksahtaa_VK : VK ;
+fun riksi_NK : NK ;
+fun rillit_NK : NK ;
+fun rillutella_VK : VK ;
+fun rilluttelu_NK : NK ;
+fun rima_NK : NK ;
+fun rimoittaa_VK : VK ;
+fun rimoitus_NK : NK ;
+fun rimpi_NK : NK ;
+fun rimpsa_NK : NK ;
+fun rimpsu_NK : NK ;
+fun rimpuilla_VK : VK ;
+fun rimpuilu_NK : NK ;
+fun rimputella_VK : VK ;
+fun rimputtaa_VK : VK ;
+fun rimputus_NK : NK ;
+fun rimssu_NK : NK ;
+fun rimsu_NK : NK ;
+fun ringette_NK : NK ;
+fun rinkeli_NK : NK ;
+fun rinki_NK : NK ;
+fun rinkila'_NK : NK ;
+fun rinkka_NK : NK ;
+fun rinkula_NK : NK ;
+fun rinnakkain_AdvK : AdvK ;
+fun rinnakkainen_AK : AK ;
+--+ fun rinnakkaisesti_AdvK : AdvK ;
+fun rinnakkaisuus_NK : NK ;
+fun rinnalla_AdvK : AdvK ;
+fun rinnalle_AdvK : AdvK ;
+fun rinnalta_AdvK : AdvK ;
+fun rinnan_AdvK : AdvK ;
+fun rinnastaa_VK : VK ;
+fun rinnasteinen_NK : NK ;
+fun rinnasteisuus_NK : NK ;
+fun rinnastua_VK : VK ;
+fun rinnastus_NK : NK ;
+fun rinnatusten_AdvK : AdvK ;
+fun rinne_NK : NK ;
+fun rinnus_NK : NK ;
+fun rinnusta_NK : NK ;
+fun rinnustin_NK : NK ;
+fun rinta_NK : NK ;
+fun rintainen_NK : NK ;
+fun rintama_NK : NK ;
+fun rintamus_NK : NK ;
+fun rintarossi_NK : NK ;
+fun rintava_NK : NK ;
+fun rintavuus_NK : NK ;
+fun rinteinen_NK : NK ;
+--? fun rintsikat_NK : NK ;
+fun ripa_1_NK : NK ;
+fun ripa_2_NK : NK ;
+fun ripari_NK : NK ;
+fun ripaska_NK : NK ;
+fun ripaus_NK : NK ;
+fun ripauttaa_VK : VK ;
+fun ripe_NK : NK ;
+fun ripeksia'_VK : VK ;
+fun ripellys_NK : NK ;
+fun ripeys_NK : NK ;
+fun ripeytta'a'_VK : VK ;
+fun ripeytya'_VK : VK ;
+fun ripea'_AK : AK ;
+--+ fun ripea'sti_AdvK : AdvK ;
+fun ripina'_NK : NK ;
+fun ripista'_VK : VK ;
+fun ripitta'ytyja'_NK : NK ;
+fun ripitta'ytya'_VK : VK ;
+fun ripitta'a'_VK : VK ;
+fun ripitys_NK : NK ;
+fun ripotella_VK : VK ;
+fun ripottaa_VK : VK ;
+fun rippi_NK : NK ;
+fun rippikoulunka'yma'to'n_NK : NK ;
+fun rippis_NK : NK ;
+fun rippu_NK : NK ;
+fun rippunen_NK : NK ;
+fun ripsahdella_VK : VK ;
+fun ripsahdus_NK : NK ;
+fun ripsahtaa_VK : VK ;
+fun ripsaus_NK : NK ;
+fun ripsauttaa_VK : VK ;
+fun ripsi_1_NK : NK ;
+fun ripsi_2_NK : NK ;
+fun ripsinen_1_NK : NK ;
+fun ripsinen_2_NK : NK ;
+fun ripsia'_VK : VK ;
+fun ripsia'inen_NK : NK ;
+fun ripsu_NK : NK ;
+fun ripsua_VK : VK ;
+fun ripuli_NK : NK ;
+fun ripulinen_NK : NK ;
+fun ripuloida_VK : VK ;
+fun ripulointi_NK : NK ;
+fun ripustaa_VK : VK ;
+fun ripustautua_VK : VK ;
+fun ripustin_NK : NK ;
+fun ripustus_NK : NK ;
+fun risa_1_NK : NK ;
+fun risa_2_NK : NK ;
+fun risahdella_VK : VK ;
+fun risahdus_NK : NK ;
+fun risahtaa_VK : VK ;
+fun risahtelu_NK : NK ;
+fun risainen_NK : NK ;
+fun risakas_NK : NK ;
+fun risaus_NK : NK ;
+fun risauttaa_VK : VK ;
+fun risiini_NK : NK ;
+fun riskaabeli_NK : NK ;
+fun riskeerata_VK : VK ;
+fun riski_1_NK : NK ;
+fun riski_2_NK : NK ;
+fun riskila'_NK : NK ;
+fun riskinen_NK : NK ;
+fun riskito'n_NK : NK ;
+fun risoa_VK : VK ;
+fun risotto_NK : NK ;
+fun rispaantua_VK : VK ;
+fun rispautua_VK : VK ;
+fun risteilija'_NK : NK ;
+fun risteilla'_VK : VK ;
+fun risteily_NK : NK ;
+fun risteta'_VK : VK ;
+fun risteyma'_NK : NK ;
+fun risteys_NK : NK ;
+fun risteyskohta_NK : NK ;
+fun risteytta'a'_VK : VK ;
+fun risteytyma'_NK : NK ;
+fun risteytys_NK : NK ;
+fun risteytya'_VK : VK ;
+fun risti_NK : NK ;
+fun ristiin_AdvK : AdvK ;
+fun ristiinpukeutuminen_NK : NK ;
+fun ristiin_rastiin_AdvK : AdvK ;
+fun ristikki_NK : NK ;
+fun ristikko_NK : NK ;
+fun ristikka'in_AdvK : AdvK ;
+fun ristikka'inen_AK : AK ;
+--+ fun ristikka'isesti_AdvK : AdvK ;
+fun ristikka'isyys_NK : NK ;
+fun ristikoida_VK : VK ;
+fun ristikollinen_NK : NK ;
+fun ristima'inen_NK : NK ;
+fun ristissa'_AdvK : AdvK ;
+fun ristia'_VK : VK ;
+--? fun ristia'iset_NK : NK ;
+fun risu_NK : NK ;
+fun risukko_NK : NK ;
+fun risukkoinen_NK : NK ;
+fun rita_NK : NK ;
+fun ritari_NK : NK ;
+fun ritarillinen_AK : AK ;
+--+ fun ritarillisesti_AdvK : AdvK ;
+fun ritarillisuus_NK : NK ;
+fun ritaristo_NK : NK ;
+fun ritila'_NK : NK ;
+fun ritina'_NK : NK ;
+fun ritista'_VK : VK ;
+fun ritsa_NK : NK ;
+fun rituaali_NK : NK ;
+fun rituaalinen_NK : NK ;
+fun ritva_NK : NK ;
+fun riuduttaa_VK : VK ;
+fun riuhtaista_VK : VK ;
+fun riuhtaisu_NK : NK ;
+fun riuhtoa_VK : VK ;
+fun riuku_NK : NK ;
+fun riuna_NK : NK ;
+fun riuska_AK : AK ;
+--+ fun riuskasti_AdvK : AdvK ;
+fun riuskuus_NK : NK ;
+fun riutta_NK : NK ;
+fun riuttainen_NK : NK ;
+fun riutua_VK : VK ;
+fun rivaali_NK : NK ;
+fun rivakasti_AdvK : AdvK ;
+fun rivakka_NK : NK ;
+fun rivakkuus_NK : NK ;
+fun riveitta'in_AdvK : AdvK ;
+fun rivi_NK : NK ;
+fun rivinen_NK : NK ;
+fun rivisto'_NK : NK ;
+fun rivitta'in_AdvK : AdvK ;
+fun rivitta'a'_VK : VK ;
+fun rivitys_NK : NK ;
+fun rivo_NK : NK ;
+fun rivous_NK : NK ;
+fun robotiikka_NK : NK ;
+fun robotisoida_VK : VK ;
+fun robotisointi_NK : NK ;
+fun robotisoitua_VK : VK ;
+fun robotoida_VK : VK ;
+fun robotointi_NK : NK ;
+fun robotti_NK : NK ;
+fun robusti_NK : NK ;
+fun rock_NK : NK ;
+fun rock_and_roll_NK : NK ;
+fun rodeo_NK : NK ;
+fun rodium_NK : NK ;
+fun rodullinen_AK : AK ;
+--+ fun rodullisesti_AdvK : AdvK ;
+fun rohdin_NK : NK ;
+fun rohdos_NK : NK ;
+fun rohduksissa_AdvK : AdvK ;
+fun rohina_NK : NK ;
+fun rohista_VK : VK ;
+fun rohjake_NK : NK ;
+fun rohjeta_VK : VK ;
+fun rohjo_NK : NK ;
+fun rohkaista_VK : VK ;
+fun rohkaistua_VK : VK ;
+fun rohkaisu_NK : NK ;
+fun rohkea_AK : AK ;
+--+ fun rohkeasti_AdvK : AdvK ;
+fun rohkeus_NK : NK ;
+fun rohmu_NK : NK ;
+fun rohmuaja_NK : NK ;
+fun rohmuta_VK : VK ;
+fun rohtiminen_NK : NK ;
+fun rohto_NK : NK ;
+fun rohtua_VK : VK ;
+fun rohtuma_NK : NK ;
+fun roihahtaa_VK : VK ;
+fun roihu_NK : NK ;
+fun roihuta_VK : VK ;
+fun roikaa_VK : VK ;
+fun roikale_NK : NK ;
+fun roikka_NK : NK ;
+fun roikko_NK : NK ;
+fun roikku_NK : NK ;
+fun roikkua_VK : VK ;
+fun roikotella_VK : VK ;
+fun roikottaa_VK : VK ;
+fun roikua_VK : VK ;
+fun roilo_NK : NK ;
+fun roima_AK : AK ;
+--+ fun roimasti_AdvK : AdvK ;
+fun roimia_VK : VK ;
+fun roina_NK : NK ;
+fun roisi_NK : NK ;
+fun roiskahdella_VK : VK ;
+fun roiskahdus_NK : NK ;
+fun roiskahtaa_VK : VK ;
+fun roiskaista_VK : VK ;
+fun roiskaus_NK : NK ;
+fun roiskautella_VK : VK ;
+fun roiskauttaa_VK : VK ;
+fun roiske_NK : NK ;
+fun roiskia_VK : VK ;
+fun roiskua_VK : VK ;
+fun roiskutella_VK : VK ;
+fun roiskuttaa_VK : VK ;
+fun roiskutus_NK : NK ;
+fun roisto_NK : NK ;
+--+ fun roistomaisesti_AdvK : AdvK ;
+fun roistomaisuus_NK : NK ;
+fun rojahdus_NK : NK ;
+fun rojahtaa_VK : VK ;
+fun rojalismi_NK : NK ;
+fun rojalisti_NK : NK ;
+fun rojalistinen_NK : NK ;
+fun rojalti_NK : NK ;
+fun rojaus_NK : NK ;
+fun rojauttaa_VK : VK ;
+fun rojottaa_VK : VK ;
+fun roju_NK : NK ;
+fun rojuinen_NK : NK ;
+fun rokahtua_VK : VK ;
+fun rokahtuma_NK : NK ;
+fun rokata_VK : VK ;
+fun rokka_NK : NK ;
+fun rokkari_NK : NK ;
+fun rokki_NK : NK ;
+fun rokko_NK : NK ;
+fun rokkoinen_NK : NK ;
+fun rokokoo_NK : NK ;
+fun rokokooaika_NK : NK ;
+fun rokote_NK : NK ;
+fun rokottaa_VK : VK ;
+fun rokotus_NK : NK ;
+fun rokuli_NK : NK ;
+fun rollaattori_NK : NK ;
+fun roll_on_NK : NK ;
+fun romaani_NK : NK ;
+fun romaaninen_NK : NK ;
+fun romadur_NK : NK ;
+fun romahdus_NK : NK ;
+--+ fun romahdusmaisesti_AdvK : AdvK ;
+fun romahduttaa_VK : VK ;
+fun romahtaa_VK : VK ;
+fun romani_NK : NK ;
+fun romania_NK : NK ;
+fun romanisti_NK : NK ;
+fun romanistiikka_NK : NK ;
+fun romanssi_NK : NK ;
+fun romantiikka_NK : NK ;
+fun romantikko_NK : NK ;
+fun romantisoida_VK : VK ;
+fun romanttinen_AK : AK ;
+--+ fun romanttisesti_AdvK : AdvK ;
+fun romanttisuus_NK : NK ;
+fun romauttaa_VK : VK ;
+fun rombi_NK : NK ;
+fun rombinen_NK : NK ;
+fun romina_NK : NK ;
+fun romista_VK : VK ;
+fun rommi_1_NK : NK ;
+fun rommi_2_NK : NK ;
+fun rommi_3_NK : NK ;
+fun rompe_NK : NK ;
+fun romppu_NK : NK ;
+fun rompsu_NK : NK ;
+fun romsku_NK : NK ;
+fun romu_NK : NK ;
+fun romuttaa_VK : VK ;
+fun romuttamo_NK : NK ;
+fun romuttua_VK : VK ;
+fun romutus_NK : NK ;
+fun rondi_NK : NK ;
+fun rondo_NK : NK ;
+fun ronkeli_NK : NK ;
+fun ronkkia_VK : VK ;
+fun ronski_AK : AK ;
+--+ fun ronskisti_AdvK : AdvK ;
+fun rontti_NK : NK ;
+fun ronttonen_NK : NK ;
+fun rooli_NK : NK ;
+fun roomalainen_NK : NK ;
+fun roomatar_NK : NK ;
+fun roosa_NK : NK ;
+fun roottori_NK : NK ;
+fun ropeloida_VK : VK ;
+fun ropina_NK : NK ;
+fun ropista_VK : VK ;
+fun ropisuttaa_VK : VK ;
+fun ropo_NK : NK ;
+fun roponen_NK : NK ;
+fun roppakaupalla_AdvK : AdvK ;
+fun ropsahdella_VK : VK ;
+fun ropsahdus_NK : NK ;
+fun ropsahtaa_VK : VK ;
+fun ropsaus_NK : NK ;
+fun ropsautella_VK : VK ;
+fun ropsauttaa_VK : VK ;
+fun ropse_NK : NK ;
+fun ropsia_VK : VK ;
+fun roquefort_NK : NK ;
+fun ros__NK : NK ;
+fun rosee_NK : NK ;
+fun roseeviini_NK : NK ;
+fun rosetti_NK : NK ;
+fun ros_viini_NK : NK ;
+fun roska_NK : NK ;
+fun roskaaja_NK : NK ;
+fun roskaantua_VK : VK ;
+fun roskainen_NK : NK ;
+fun roskaisuus_NK : NK ;
+fun roskata_VK : VK ;
+fun roskis_NK : NK ;
+fun roskisdyykkari_NK : NK ;
+fun rosmariini_NK : NK ;
+fun roso_NK : NK ;
+fun rosoinen_AK : AK ;
+--+ fun rosoisesti_AdvK : AdvK ;
+fun rosoisuus_NK : NK ;
+fun rosolli_NK : NK ;
+fun rospuutto_NK : NK ;
+fun rospuuttoaika_NK : NK ;
+fun rosti_NK : NK ;
+fun rosvo_NK : NK ;
+fun rosvoilla_VK : VK ;
+fun rosvoilu_NK : NK ;
+fun rosvota_VK : VK ;
+fun rosvous_NK : NK ;
+fun rotaatio_NK : NK ;
+fun rotari_NK : NK ;
+fun roteva_NK : NK ;
+fun rotisko_NK : NK ;
+fun rotko_NK : NK ;
+fun rotsi_NK : NK ;
+fun rotta_NK : NK ;
+fun rottelo_NK : NK ;
+fun rottinki_NK : NK ;
+fun rottinkinen_NK : NK ;
+fun rottweiler_NK : NK ;
+fun rotu_NK : NK ;
+fun rotuinen_NK : NK ;
+fun roudari_NK : NK ;
+fun roudata_VK : VK ;
+fun roudittua_VK : VK ;
+fun rouhaista_VK : VK ;
+fun rouhe_NK : NK ;
+fun rouhea_NK : NK ;
+fun rouheinen_NK : NK ;
+fun rouhentaa_VK : VK ;
+fun rouhia_VK : VK ;
+fun rouhiintua_VK : VK ;
+fun rouhin_NK : NK ;
+fun rouhinta_NK : NK ;
+fun rouhiutua_VK : VK ;
+fun rouskahtaa_VK : VK ;
+fun rouske_NK : NK ;
+fun rousku_NK : NK ;
+fun rouskua_VK : VK ;
+fun rouskutella_VK : VK ;
+fun rouskuttaa_VK : VK ;
+fun rouskutus_NK : NK ;
+fun rouste_NK : NK ;
+fun routa_NK : NK ;
+fun routaannuttaa_VK : VK ;
+fun routaantua_VK : VK ;
+fun routainen_NK : NK ;
+fun routia_VK : VK ;
+fun routiintua_VK : VK ;
+fun rouva_NK : NK ;
+fun rouvakoko_NK : NK ;
+fun rouvitella_VK : VK ;
+fun rouvittelu_NK : NK ;
+fun rovasti_NK : NK ;
+fun rovastinna_NK : NK ;
+fun rove_NK : NK ;
+fun rovio_NK : NK ;
+fun royalty_NK : NK ;
+fun rubato_NK : NK ;
+fun rubiini_NK : NK ;
+fun rubriikki_NK : NK ;
+fun rudimentaarinen_NK : NK ;
+fun rudimentti_NK : NK ;
+fun rugby_NK : NK ;
+fun ruhje_NK : NK ;
+fun ruhjoa_VK : VK ;
+fun ruhjoontua_VK : VK ;
+fun ruhjouma_NK : NK ;
+fun ruhjoutua_VK : VK ;
+fun ruhjoutuma_NK : NK ;
+fun ruho_NK : NK ;
+fun ruhtinaallinen_AK : AK ;
+--+ fun ruhtinaallisesti_AdvK : AdvK ;
+fun ruhtinaallisuus_NK : NK ;
+fun ruhtinas_NK : NK ;
+fun ruhtinatar_NK : NK ;
+fun ruijalainen_NK : NK ;
+fun ruikata_VK : VK ;
+fun ruikkia_VK : VK ;
+fun ruikuttaa_VK : VK ;
+fun ruikuttaja_NK : NK ;
+fun ruikutus_NK : NK ;
+fun ruinata_VK : VK ;
+fun ruipelo_NK : NK ;
+fun ruis_NK : NK ;
+fun ruiskahdus_NK : NK ;
+fun ruiskahtaa_VK : VK ;
+fun ruiskaista_VK : VK ;
+fun ruiskaus_NK : NK ;
+fun ruiskautella_VK : VK ;
+fun ruiskauttaa_VK : VK ;
+fun ruiske_NK : NK ;
+fun ruiskia_VK : VK ;
+fun ruisku_NK : NK ;
+fun ruiskulakata_VK : VK ;
+fun ruiskumaalata_VK : VK ;
+fun ruiskuta_VK : VK ;
+fun ruiskute_NK : NK ;
+fun ruiskuttaa_VK : VK ;
+fun ruiskutus_NK : NK ;
+fun ruisra'a'kka'_NK : NK ;
+fun rujo_NK : NK ;
+fun rujous_NK : NK ;
+fun rukata_VK : VK ;
+fun rukiinen_NK : NK ;
+fun rukka_NK : NK ;
+fun rukkanen_NK : NK ;
+fun rukkaus_NK : NK ;
+fun rukkauttaa_VK : VK ;
+fun rukki_1_NK : NK ;
+fun rukki_2_NK : NK ;
+fun ruko_NK : NK ;
+fun rukoilevainen_NK : NK ;
+fun rukoilevaisuus_NK : NK ;
+fun rukoilija_NK : NK ;
+fun rukoilla_VK : VK ;
+fun rukoilu_NK : NK ;
+fun rukous_NK : NK ;
+fun ruksata_VK : VK ;
+fun ruksi_NK : NK ;
+fun ruladi_NK : NK ;
+fun ruletti_NK : NK ;
+fun ruljanssi_NK : NK ;
+fun rulla_NK : NK ;
+fun rullailla_VK : VK ;
+fun rullakko_NK : NK ;
+fun rullata_VK : VK ;
+fun rullaus_NK : NK ;
+fun rullautua_VK : VK ;
+fun ruma_AK : AK ;
+--+ fun rumasti_AdvK : AdvK ;
+fun rumba_NK : NK ;
+fun rumeliini_NK : NK ;
+fun rumennus_NK : NK ;
+fun rumentaa_VK : VK ;
+fun rumentua_VK : VK ;
+fun rumeta_VK : VK ;
+fun rumilus_NK : NK ;
+fun rumistaa_VK : VK ;
+fun rumistua_VK : VK ;
+fun rummusto_NK : NK ;
+fun rummuttaa_VK : VK ;
+fun rummutus_NK : NK ;
+fun rumpali_NK : NK ;
+fun rumpu_NK : NK ;
+fun rumuus_NK : NK ;
+fun rundi_NK : NK ;
+fun runebergila'inen_NK : NK ;
+fun runkata_VK : VK ;
+fun runkkari_NK : NK ;
+fun runkkaus_NK : NK ;
+fun runko_NK : NK ;
+fun runkoinen_NK : NK ;
+fun runnata_VK : VK ;
+fun runnella_VK : VK ;
+fun runnoa_VK : VK ;
+fun runo_NK : NK ;
+fun runoelma_NK : NK ;
+fun runoilija_NK : NK ;
+fun runoilla_VK : VK ;
+fun runoilu_NK : NK ;
+fun runollinen_AK : AK ;
+--+ fun runollisesti_AdvK : AdvK ;
+fun runollisuus_NK : NK ;
+fun runosto_NK : NK ;
+fun runotar_NK : NK ;
+fun runoton_NK : NK ;
+fun runottomuus_NK : NK ;
+fun runous_NK : NK ;
+--+ fun runsaasti_AdvK : AdvK ;
+fun runsaiten_AdvK : AdvK ;
+fun runsas_AK : AK ;
+fun runsashappinen_NK : NK ;
+--+ fun runsaska'tisesti_AdvK : AdvK ;
+--+ fun runsaslukuisesti_AdvK : AdvK ;
+fun runsastua_VK : VK ;
+fun runsaus_NK : NK ;
+fun runtata_VK : VK ;
+fun runtelu_NK : NK ;
+fun ruoanlaittaja_NK : NK ;
+fun ruode_NK : NK ;
+fun ruodinta_NK : NK ;
+fun ruodis_NK : NK ;
+fun ruohikko_NK : NK ;
+fun ruoho_NK : NK ;
+fun ruohoinen_NK : NK ;
+fun ruohottua_VK : VK ;
+fun ruoikko_NK : NK ;
+fun ruoisto_NK : NK ;
+fun ruoja_NK : NK ;
+fun ruoka_NK : NK ;
+fun ruoka_aika_NK : NK ;
+fun ruokailija_NK : NK ;
+fun ruokailla_VK : VK ;
+fun ruokailu_NK : NK ;
+fun ruokailuaika_NK : NK ;
+fun ruokainen_NK : NK ;
+fun ruokaisa_NK : NK ;
+fun ruokaisuus_NK : NK ;
+fun ruokala_NK : NK ;
+fun ruokinta_NK : NK ;
+fun ruokinta_aika_NK : NK ;
+fun ruokis_NK : NK ;
+fun ruokki_NK : NK ;
+fun ruokkia_VK : VK ;
+fun ruokko_NK : NK ;
+fun ruokkoamaton_NK : NK ;
+fun ruoko_NK : NK ;
+fun ruokoinen_NK : NK ;
+fun ruokota_VK : VK ;
+fun ruokoton_NK : NK ;
+fun ruokottomuus_NK : NK ;
+fun ruopata_VK : VK ;
+fun ruopia_VK : VK ;
+fun ruoppaaja_NK : NK ;
+fun ruoppaus_NK : NK ;
+fun ruoputtaa_VK : VK ;
+fun ruori_NK : NK ;
+fun ruoska_NK : NK ;
+fun ruoskia_VK : VK ;
+fun ruoste_NK : NK ;
+fun ruosteinen_NK : NK ;
+fun ruosteisuus_NK : NK ;
+fun ruostua_VK : VK ;
+fun ruostumaton_NK : NK ;
+fun ruostuttaa_VK : VK ;
+fun ruoti_NK : NK ;
+fun ruotia_VK : VK ;
+fun ruoto_NK : NK ;
+fun ruotoinen_NK : NK ;
+fun ruotsalainen_NK : NK ;
+fun ruotsalaisittain_AdvK : AdvK ;
+fun ruotsalaistaa_VK : VK ;
+fun ruotsalaistua_VK : VK ;
+fun ruotsalaisuus_NK : NK ;
+fun ruotsi_NK : NK ;
+fun ruotsinnos_NK : NK ;
+fun ruotsintaa_VK : VK ;
+fun ruotsintaja_NK : NK ;
+--+ fun ruotsinvoittoisesti_AdvK : AdvK ;
+fun ruotu_NK : NK ;
+fun ruovikko_NK : NK ;
+fun ruovisto_NK : NK ;
+fun rupatella_VK : VK ;
+fun rupattelu_NK : NK ;
+fun rupeama_NK : NK ;
+fun rupeutua_VK : VK ;
+fun rupeutuma_NK : NK ;
+fun rupi_NK : NK ;
+fun rupia_NK : NK ;
+fun rupinen_NK : NK ;
+fun rupla_NK : NK ;
+fun rupsahtaa_VK : VK ;
+fun rusahdella_VK : VK ;
+fun rusahdus_NK : NK ;
+fun rusahtaa_VK : VK ;
+fun rusakko_NK : NK ;
+fun rusaus_NK : NK ;
+fun rusauttaa_VK : VK ;
+fun rusehtava_NK : NK ;
+fun rusennus_NK : NK ;
+fun rusentaa_VK : VK ;
+fun rusentua_VK : VK ;
+fun rusetti_NK : NK ;
+fun rusikoida_VK : VK ;
+fun rusikointi_NK : NK ;
+fun rusina_NK : NK ;
+fun ruska_NK : NK ;
+fun ruskaa_VK : VK ;
+fun ruska_aika_NK : NK ;
+fun ruskea_NK : NK ;
+fun ruskehtava_NK : NK ;
+fun ruskettaa_VK : VK ;
+fun ruskettua_VK : VK ;
+fun rusketus_NK : NK ;
+fun ruskeuttaa_VK : VK ;
+fun ruskeutua_VK : VK ;
+fun ruskistaa_VK : VK ;
+fun ruskistua_VK : VK ;
+fun ruskistus_NK : NK ;
+fun rusko_NK : NK ;
+fun ruskottaa_VK : VK ;
+fun ruskotus_NK : NK ;
+fun ruskua_VK : VK ;
+fun ruskuainen_NK : NK ;
+fun ruso_NK : NK ;
+fun rusojuuri_NK : NK ;
+fun rusokas_NK : NK ;
+fun rusokki_NK : NK ;
+fun rusottaa_VK : VK ;
+fun rusotus_NK : NK ;
+fun russakka_NK : NK ;
+fun russisti_NK : NK ;
+fun russistiikka_NK : NK ;
+fun rustailla_VK : VK ;
+fun rustailu_NK : NK ;
+fun rustata_VK : VK ;
+fun rustaus_NK : NK ;
+fun rusthollari_NK : NK ;
+fun rustholli_NK : NK ;
+fun rustiikka_NK : NK ;
+fun rustiikki_NK : NK ;
+fun rustinki_NK : NK ;
+fun rusto_NK : NK ;
+fun rustoinen_NK : NK ;
+fun rustottua_VK : VK ;
+fun rustottuma_NK : NK ;
+fun rustoutua_VK : VK ;
+fun rutata_VK : VK ;
+fun rutenium_NK : NK ;
+fun rutiini_NK : NK ;
+--+ fun rutiinimaisesti_AdvK : AdvK ;
+fun rutiinimaisuus_NK : NK ;
+fun rutina_NK : NK ;
+fun rutinoitu_NK : NK ;
+fun rutinoitua_VK : VK ;
+fun rutista_VK : VK ;
+fun rutistaa_VK : VK ;
+fun rutistua_VK : VK ;
+fun rutistus_NK : NK ;
+fun rutjake_NK : NK ;
+fun rutka_AK : AK ;
+--+ fun rutkasti_AdvK : AdvK ;
+fun rutosti_AdvK : AdvK ;
+fun ruttaantua_VK : VK ;
+fun ruttautua_VK : VK ;
+fun rutto_NK : NK ;
+fun ruttoinen_NK : NK ;
+fun ruttojuuri_NK : NK ;
+fun ruttu_NK : NK ;
+fun ruttuinen_NK : NK ;
+fun ruttuun_AdvK : AdvK ;
+fun rutussa_AdvK : AdvK ;
+fun ruudikas_NK : NK ;
+fun ruuduittain_AdvK : AdvK ;
+fun ruudukas_NK : NK ;
+fun ruudukko_NK : NK ;
+fun ruudullinen_NK : NK ;
+fun ruuduttaa_VK : VK ;
+fun ruudutus_NK : NK ;
+fun ruuhi_NK : NK ;
+fun ruuhka_NK : NK ;
+fun ruuhka_aika_NK : NK ;
+fun ruuhkaantua_VK : VK ;
+fun ruuhkainen_NK : NK ;
+fun ruuhkaisuus_NK : NK ;
+fun ruuhkata_VK : VK ;
+fun ruuhkauma_NK : NK ;
+fun ruuhkauttaa_VK : VK ;
+fun ruuhkautua_VK : VK ;
+fun ruuhkautuma_NK : NK ;
+fun ruukki_NK : NK ;
+fun ruukku_NK : NK ;
+fun ruukuttaa_VK : VK ;
+fun ruukutus_NK : NK ;
+fun ruuma_NK : NK ;
+fun ruumen_NK : NK ;
+fun ruumiillinen_AK : AK ;
+--+ fun ruumiillisesti_AdvK : AdvK ;
+fun ruumiillistua_VK : VK ;
+fun ruumiillistuma_NK : NK ;
+fun ruumiillisuus_NK : NK ;
+fun ruumiinen_NK : NK ;
+fun ruumiinpesija'_NK : NK ;
+fun ruumiistapoistuminen_NK : NK ;
+fun ruumiiton_NK : NK ;
+fun ruumis_NK : NK ;
+fun ruumistua_VK : VK ;
+fun ruuna_NK : NK ;
+fun ruunikko_NK : NK ;
+fun ruustinna_NK : NK ;
+fun ruusu_NK : NK ;
+fun ruusuinen_NK : NK ;
+fun ruusuke_NK : NK ;
+fun ruusukkeinen_NK : NK ;
+fun ruususto_NK : NK ;
+fun ruutana_NK : NK ;
+fun ruuti_NK : NK ;
+fun ruutu_NK : NK ;
+fun ruutuinen_NK : NK ;
+fun ruuvailla_VK : VK ;
+fun ruuvata_VK : VK ;
+fun ruuvi_NK : NK ;
+fun ruuvipihti_NK : NK ;
+fun ruveta_VK : VK ;
+fun ruvettua_VK : VK ;
+fun ruvettuma_NK : NK ;
+fun ryhdikkyys_NK : NK ;
+--+ fun ryhdikka'a'sti_AdvK : AdvK ;
+fun ryhdika's_AK : AK ;
+fun ryhdistya'_VK : VK ;
+fun ryhdista'ytya'_VK : VK ;
+fun ryhdista'a'_VK : VK ;
+fun ryhditto'myys_NK : NK ;
+fun ryhditto'ma'sti_AdvK : AdvK ;
+fun ryhdito'n_NK : NK ;
+fun ryhelma'_NK : NK ;
+fun ryhmitella'_VK : VK ;
+fun ryhmitelma'_NK : NK ;
+fun ryhmittely_NK : NK ;
+fun ryhmittyma'_NK : NK ;
+fun ryhmittya'_VK : VK ;
+fun ryhmitta'in_AdvK : AdvK ;
+fun ryhmitta'inen_NK : NK ;
+fun ryhmitta'ytya'_VK : VK ;
+fun ryhmitta'a'_VK : VK ;
+fun ryhmitys_NK : NK ;
+fun ryhmy_NK : NK ;
+fun ryhmyinen_NK : NK ;
+fun ryhmyri_NK : NK ;
+fun ryhma'_NK : NK ;
+fun ryhma'koko_NK : NK ;
+fun ryhti_NK : NK ;
+fun ryhtinen_NK : NK ;
+fun ryhtymys_NK : NK ;
+fun ryhtya'_VK : VK ;
+fun ryijy_NK : NK ;
+fun ryinta'_NK : NK ;
+fun ryiskella'_VK : VK ;
+fun ryiskely_NK : NK ;
+fun ryitta'a'_VK : VK ;
+fun rykelmitta'in_AdvK : AdvK ;
+fun rykelma'_NK : NK ;
+fun rykima'aika_NK : NK ;
+fun rykia'_VK : VK ;
+fun rykmentti_NK : NK ;
+fun ryka'ista'_VK : VK ;
+fun ryka'isy_NK : NK ;
+fun rymina'_NK : NK ;
+fun rymistella'_VK : VK ;
+fun rymistely_NK : NK ;
+fun rymistys_NK : NK ;
+fun rymista'_VK : VK ;
+fun rymista'a'_VK : VK ;
+fun rymisytta'a'_VK : VK ;
+fun rymy_NK : NK ;
+fun rymyta'_VK : VK ;
+fun ryma'hdys_NK : NK ;
+fun ryma'hta'a'_VK : VK ;
+fun rynkky_1_NK : NK ;
+fun rynkky_2_NK : NK ;
+fun rynkytta'a'_VK : VK ;
+fun rynkytys_NK : NK ;
+fun rynnistys_NK : NK ;
+fun rynnista'a'_VK : VK ;
+fun rynnia'_VK : VK ;
+fun rynna'kko'_NK : NK ;
+fun rynna'ko'ida'_VK : VK ;
+fun rynna'ko'inti_NK : NK ;
+fun rynna'ri_NK : NK ;
+fun rynna's_NK : NK ;
+fun rynna'ta'_VK : VK ;
+--? fun ryntteet_NK : NK ;
+--? fun rynttyyt_NK : NK ;
+fun rynta'illa'_VK : VK ;
+fun rynta'ily_NK : NK ;
+fun rynta'ys_NK : NK ;
+fun rynto'_NK : NK ;
+fun rypea'_VK : VK ;
+fun rypistella'_VK : VK ;
+fun rypistyma'to'n_NK : NK ;
+fun rypistys_NK : NK ;
+fun rypistya'_VK : VK ;
+fun rypista'a'_VK : VK ;
+fun ryppy_NK : NK ;
+fun ryppyilla'_VK : VK ;
+fun ryppyily_NK : NK ;
+fun ryppyinen_NK : NK ;
+--+ fun ryppyotsaisesti_AdvK : AdvK ;
+fun ryppyotsaisuus_NK : NK ;
+fun rypsi_NK : NK ;
+fun rypytta'a'_VK : VK ;
+fun rypytys_NK : NK ;
+fun rypa'le_NK : NK ;
+fun rypa's_NK : NK ;
+fun ryske_NK : NK ;
+fun ryskina'_NK : NK ;
+fun ryskia'_VK : VK ;
+fun ryskytta'a'_VK : VK ;
+fun ryskytys_NK : NK ;
+fun ryskya'_VK : VK ;
+fun ryska'ta'_VK : VK ;
+fun ryska'a'_VK : VK ;
+fun ryssa'_NK : NK ;
+fun rysty_NK : NK ;
+fun rystynen_NK : NK ;
+fun rysy_NK : NK ;
+fun rysa'_NK : NK ;
+fun rysa'hdella'_VK : VK ;
+fun rysa'hdys_NK : NK ;
+fun rysa'htely_NK : NK ;
+fun rysa'hta'a'_VK : VK ;
+fun rysa'ys_NK : NK ;
+fun rysa'ytta'a'_VK : VK ;
+fun ryteikko'_NK : NK ;
+fun ryteikko'inen_NK : NK ;
+fun ryti_NK : NK ;
+fun rytina'_NK : NK ;
+fun rytista'_VK : VK ;
+fun rytista'a'_VK : VK ;
+fun rytke_NK : NK ;
+fun rytky_NK : NK ;
+fun rytkytta'a'_VK : VK ;
+fun rytkytys_NK : NK ;
+fun rytkya'_VK : VK ;
+fun rytka'hta'a'_VK : VK ;
+fun rytmi_NK : NK ;
+fun rytmiikka_NK : NK ;
+fun rytmikkyys_NK : NK ;
+--+ fun rytmikka'a'sti_AdvK : AdvK ;
+fun rytmika's_AK : AK ;
+fun rytmillinen_AK : AK ;
+--+ fun rytmillisesti_AdvK : AdvK ;
+fun rytmillisyys_NK : NK ;
+fun rytminen_AK : AK ;
+--+ fun rytmisesti_AdvK : AdvK ;
+fun rytmisyys_NK : NK ;
+fun rytmittya'_VK : VK ;
+fun rytmitta'a'_VK : VK ;
+fun rytmitys_NK : NK ;
+fun rytyytta'a'_VK : VK ;
+fun ryta'kka'_NK : NK ;
+fun ryto'_NK : NK ;
+fun ryvettya'_VK : VK ;
+fun ryvetta'a'_VK : VK ;
+fun ryva's_NK : NK ;
+fun ryva'stya'_VK : VK ;
+fun ryyditta'a'_VK : VK ;
+fun ryyni_NK : NK ;
+fun ryypiskelija'_NK : NK ;
+fun ryypiskella'_VK : VK ;
+fun ryypiskely_NK : NK ;
+fun ryyppy_NK : NK ;
+--? fun ryyppa'ja'iset_NK : NK ;
+fun ryypyksiin_AdvK : AdvK ;
+fun ryypyksissa'_AdvK : AdvK ;
+fun ryypytin_NK : NK ;
+fun ryypa'ta'_VK : VK ;
+fun ryysis_NK : NK ;
+fun ryysia'_VK : VK ;
+fun ryysta'a'_VK : VK ;
+fun ryysy_NK : NK ;
+fun ryysyinen_NK : NK ;
+fun ryysyla'inen_NK : NK ;
+fun ryysa'ta'_VK : VK ;
+fun ryyti_NK : NK ;
+fun ryytya'_VK : VK ;
+fun ryo'ha'hta'a'_VK : VK ;
+fun ryo'ha'ta'_VK : VK ;
+fun ryo'ka'le_NK : NK ;
+fun ryo'minta'_NK : NK ;
+fun ryo'mia'_VK : VK ;
+fun ryo'na'_NK : NK ;
+fun ryo'ppy_NK : NK ;
+fun ryo'ppa'ys_NK : NK ;
+fun ryo'psa'hdella'_VK : VK ;
+fun ryo'psa'hdys_NK : NK ;
+fun ryo'psa'hta'a'_VK : VK ;
+fun ryo'psa'ys_NK : NK ;
+fun ryo'psa'ytta'a'_VK : VK ;
+fun ryo'pytta'a'_VK : VK ;
+fun ryo'pytys_NK : NK ;
+fun ryo'pyta'_VK : VK ;
+fun ryo'pa'ta'_VK : VK ;
+fun ryo'sta'ja'_NK : NK ;
+fun ryo'sta'ytya'_VK : VK ;
+fun ryo'sta'a'_VK : VK ;
+fun ryo'sto'_NK : NK ;
+fun ryo'va'ri_NK : NK ;
+fun ryo'va'ta'_VK : VK ;
+fun ryo'va'ys_NK : NK ;
+fun ra'hina'_NK : NK ;
+fun ra'hino'ida'_VK : VK ;
+fun ra'hino'inti_NK : NK ;
+fun ra'hino'itsija'_NK : NK ;
+fun ra'hista'_VK : VK ;
+fun ra'hja'_NK : NK ;
+fun ra'hja'inen_NK : NK ;
+fun ra'hja'ta'_VK : VK ;
+fun ra'hja'ytya'_VK : VK ;
+fun ra'hja'a'ntya'_VK : VK ;
+fun ra'hmia'_VK : VK ;
+fun ra'hma'_NK : NK ;
+fun ra'hma'inen_NK : NK ;
+fun ra'hma'lleen_AdvK : AdvK ;
+fun ra'hma'lla'a'n_AdvK : AdvK ;
+fun ra'hma'lta'a'n_AdvK : AdvK ;
+fun ra'ha'hdys_NK : NK ;
+fun ra'ha'hta'a'_VK : VK ;
+fun ra'ha'kka'_NK : NK ;
+fun ra'ha'tta'a'_VK : VK ;
+fun ra'ha'tys_NK : NK ;
+fun ra'ike_NK : NK ;
+fun ra'ikeys_NK : NK ;
+fun ra'ikea'_AK : AK ;
+--+ fun ra'ikea'sti_AdvK : AdvK ;
+fun ra'ikina'_NK : NK ;
+fun ra'ikka'_NK : NK ;
+fun ra'ikyna'_NK : NK ;
+fun ra'ikya'_VK : VK ;
+fun ra'ika'a'_VK : VK ;
+fun ra'iske_NK : NK ;
+fun ra'iskinta'_NK : NK ;
+fun ra'iskina'_NK : NK ;
+fun ra'iskia'_VK : VK ;
+fun ra'iskynta'_NK : NK ;
+fun ra'iskyna'_NK : NK ;
+fun ra'iskytella'_VK : VK ;
+fun ra'iskytta'a'_VK : VK ;
+fun ra'iskytys_NK : NK ;
+fun ra'iskyva'_AK : AK ;
+--+ fun ra'iskyva'sti_AdvK : AdvK ;
+fun ra'iskya'_VK : VK ;
+fun ra'iska'hdella'_VK : VK ;
+fun ra'iska'hdys_NK : NK ;
+fun ra'iska'htely_NK : NK ;
+fun ra'iska'hta'a'_VK : VK ;
+fun ra'iska'le_NK : NK ;
+fun ra'iska'ys_NK : NK ;
+fun ra'iska'ytta'a'_VK : VK ;
+fun ra'ja'hde_NK : NK ;
+fun ra'ja'hdella'_VK : VK ;
+fun ra'ja'hdys_NK : NK ;
+fun ra'ja'hdysma'inen_AK : AK ;
+--+ fun ra'ja'hdysma'isesti_AdvK : AdvK ;
+fun ra'ja'hta'a'_VK : VK ;
+fun ra'ja'ytin_NK : NK ;
+fun ra'ja'ytta'a'_VK : VK ;
+fun ra'ja'ytys_NK : NK ;
+fun ra'kia'_VK : VK ;
+fun ra'kki_NK : NK ;
+fun ra'kna'ta'_VK : VK ;
+fun ra'kna'ys_NK : NK ;
+fun ra'ksytta'a'_VK : VK ;
+fun ra'ksytys_NK : NK ;
+fun ra'kytta'a'_VK : VK ;
+fun ra'kytys_NK : NK ;
+fun ra'ka'_NK : NK ;
+fun ra'ka'inen_AK : AK ;
+--+ fun ra'ka'isesti_AdvK : AdvK ;
+fun ra'ka'ista'_VK : VK ;
+fun ra'ka'la'_NK : NK ;
+fun ra'ka'tti_NK : NK ;
+fun ra'ka'tta'a'_VK : VK ;
+fun ra'ka'tys_NK : NK ;
+fun ra'lla'sta'a'_VK : VK ;
+fun ra'lla'ta'_VK : VK ;
+fun ra'lssi_NK : NK ;
+fun ra'me_NK : NK ;
+fun ra'meikko'_NK : NK ;
+fun ra'meinen_NK : NK ;
+fun ra'mettya'_VK : VK ;
+fun ra'metta'a'_VK : VK ;
+fun ra'meys_NK : NK ;
+fun ra'mea'_AK : AK ;
+--+ fun ra'mea'sti_AdvK : AdvK ;
+fun ra'mina'_NK : NK ;
+fun ra'mistella'_VK : VK ;
+fun ra'mistys_NK : NK ;
+fun ra'mista'_VK : VK ;
+fun ra'mista'a'_VK : VK ;
+fun ra'misytta'a'_VK : VK ;
+fun ra'mpia'_VK : VK ;
+fun ra'mpsy_NK : NK ;
+fun ra'mpytta'a'_VK : VK ;
+fun ra'mpytys_NK : NK ;
+fun ra'ma'_NK : NK ;
+fun ra'ma'hdys_NK : NK ;
+fun ra'ma'hdytta'a'_VK : VK ;
+fun ra'ma'hta'a'_VK : VK ;
+fun ra'ma'kkyys_NK : NK ;
+fun ra'ma'kka'_NK : NK ;
+fun ra'ma'ka'sti_AdvK : AdvK ;
+--+ fun ra'ma'pa'isesti_AdvK : AdvK ;
+fun ra'ma'pa'isyys_NK : NK ;
+fun ra'ma'ys_NK : NK ;
+fun ra'ma'ytta'a'_VK : VK ;
+fun ra'nni_NK : NK ;
+fun ra'nsistytta'a'_VK : VK ;
+fun ra'nsistya'_VK : VK ;
+fun ra'nsista'a'_VK : VK ;
+fun ra'nstya'_VK : VK ;
+fun ra'nta'_NK : NK ;
+fun ra'pellys_NK : NK ;
+fun ra'pelta'a'_VK : VK ;
+fun ra'piko'ida'_VK : VK ;
+fun ra'piko'inti_NK : NK ;
+fun ra'piska'_NK : NK ;
+fun ra'pisko'_NK : NK ;
+fun ra'pistella'_VK : VK ;
+fun ra'pistely_NK : NK ;
+fun ra'pla'ta'_VK : VK ;
+fun ra'ppi_NK : NK ;
+fun ra'ppa'na'_NK : NK ;
+fun ra'ppa'ri_NK : NK ;
+fun ra'pse_NK : NK ;
+fun ra'psinta'_NK : NK ;
+fun ra'psia'_VK : VK ;
+fun ra'psytella'_VK : VK ;
+fun ra'psytta'a'_VK : VK ;
+fun ra'psytys_NK : NK ;
+fun ra'psya'_VK : VK ;
+fun ra'psa'hdella'_VK : VK ;
+fun ra'psa'hdys_NK : NK ;
+fun ra'psa'htely_NK : NK ;
+fun ra'psa'hta'a'_VK : VK ;
+fun ra'psa'ys_NK : NK ;
+fun ra'psa'ytta'a'_VK : VK ;
+fun ra'pyla'_NK : NK ;
+fun ra'pytella'_VK : VK ;
+fun ra'pytta'a'_VK : VK ;
+fun ra'pytys_NK : NK ;
+fun ra'pa'tta'ja'_NK : NK ;
+fun ra'pa'tta'a'_VK : VK ;
+fun ra'pa'ta'_1_VK : VK ;
+fun ra'pa'ta'_2_VK : VK ;
+fun ra'pa'ys_NK : NK ;
+fun ra'pa'ytta'a'_VK : VK ;
+fun ra'sti_NK : NK ;
+fun ra'stiintya'_VK : VK ;
+fun ra'stiytya'_VK : VK ;
+fun ra'sy_NK : NK ;
+fun ra'syinen_NK : NK ;
+fun ra'sa'hdella'_VK : VK ;
+fun ra'sa'hdys_NK : NK ;
+fun ra'sa'htely_NK : NK ;
+fun ra'sa'hta'a'_VK : VK ;
+fun ra'sa'ys_NK : NK ;
+fun ra'sa'ytta'a'_VK : VK ;
+fun ra'tinki_NK : NK ;
+fun ra'tina'_NK : NK ;
+fun ra'tista'_VK : VK ;
+fun ra'tisytta'a'_VK : VK ;
+fun ra'tkia'_VK : VK ;
+fun ra'tkytta'a'_VK : VK ;
+fun ra'tkytys_NK : NK ;
+fun ra'tka'hdys_NK : NK ;
+fun ra'tka'hta'a'_VK : VK ;
+fun ra'tka'ista'_VK : VK ;
+fun ra'tka'ta'_VK : VK ;
+fun ra'tka'ytta'a'_VK : VK ;
+fun ra'tsa'hta'a'_VK : VK ;
+fun ra'tti_NK : NK ;
+fun ra'tva'kka'_NK : NK ;
+fun ra'tva'na'_NK : NK ;
+fun ra'va'hta'a'_VK : VK ;
+fun ra'va'kkyys_NK : NK ;
+fun ra'va'kka'_NK : NK ;
+fun ra'va'ka'sti_AdvK : AdvK ;
+fun ra'va'ytta'a'_VK : VK ;
+fun ra'yha'ka's_NK : NK ;
+fun ra'yha'ta'_VK : VK ;
+fun ra'yha'a'ja'_NK : NK ;
+fun ra'yske_NK : NK ;
+fun ra'yskia'_VK : VK ;
+fun ra'yskytta'a'_VK : VK ;
+fun ra'yskytys_NK : NK ;
+fun ra'yska'_1_NK : NK ;
+fun ra'yska'_2_NK : NK ;
+fun ra'ysta'inen_NK : NK ;
+fun ra'ysta's_NK : NK ;
+fun ra'ytya'_VK : VK ;
+fun ra'a'kki_NK : NK ;
+fun ra'a'kkya'_VK : VK ;
+fun ra'a'kka'ys_NK : NK ;
+fun ra'a'kka'ytya'_VK : VK ;
+fun ra'a'kka'a'ja'_NK : NK ;
+fun ra'a'kka'a'ntya'_VK : VK ;
+fun ra'a'kynta'_NK : NK ;
+fun ra'a'kyna'_NK : NK ;
+fun ra'a'kya'_VK : VK ;
+fun ra'a'ka'ista'_VK : VK ;
+fun ra'a'ka'isy_NK : NK ;
+fun ra'a'ka'ta'_VK : VK ;
+fun ra'a'pia'_VK : VK ;
+--? fun ra'a'pia'iset_NK : NK ;
+--? fun ra'a'ppeet_NK : NK ;
+fun ra'a'ppia'_VK : VK ;
+--? fun ra'a'ppia'iset_NK : NK ;
+fun ra'a'pa'le_NK : NK ;
+fun ra'a'seikko'_NK : NK ;
+fun ra'a'sy_NK : NK ;
+fun ra'a'syinen_NK : NK ;
+fun ra'a'syla'inen_NK : NK ;
+fun ra'a'tikka'_NK : NK ;
+fun ra'a'ta'li_NK : NK ;
+fun ra'a'ta'lo'ida'_VK : VK ;
+fun ra'a'ta'lo'inti_NK : NK ;
+fun ra'a'vi_NK : NK ;
+fun ra'a'vitto'myys_NK : NK ;
+fun ra'a'vitto'ma'sti_AdvK : AdvK ;
+fun ra'a'vito'n_NK : NK ;
+--+ fun ra'a'va'suisesti_AdvK : AdvK ;
+fun ra'a'va'suisuus_NK : NK ;
+fun ra'a'ynta'_NK : NK ;
+fun ra'a'ytta'a'_VK : VK ;
+fun ro'h_AdvK : AdvK ;
+fun ro'hina'_NK : NK ;
+fun ro'hista'_VK : VK ;
+fun ro'hkina'_NK : NK ;
+fun ro'hkia'_VK : VK ;
+fun ro'hka'ista'_VK : VK ;
+fun ro'hka'isy_NK : NK ;
+fun ro'hno'tta'a'_VK : VK ;
+fun ro'ha'hdella'_VK : VK ;
+fun ro'ha'hdys_NK : NK ;
+fun ro'ha'hta'a'_VK : VK ;
+fun ro'ho'tta'a'_VK : VK ;
+fun ro'kitta'a'_VK : VK ;
+fun ro'kitys_NK : NK ;
+fun ro'kkiin_AdvK : AdvK ;
+fun ro'kkiinsa'_AdvK : AdvK ;
+fun ro'lli_NK : NK ;
+fun ro'meys_NK : NK ;
+fun ro'mea'_AK : AK ;
+--+ fun ro'mea'sti_AdvK : AdvK ;
+fun ro'ma'kka'_NK : NK ;
+fun ro'nsy_NK : NK ;
+fun ro'nsyilla'_VK : VK ;
+fun ro'nsyily_NK : NK ;
+fun ro'nsyinen_NK : NK ;
+fun ro'ntgen_NK : NK ;
+fun ro'ntgenologi_NK : NK ;
+fun ro'ntgenologia_NK : NK ;
+fun ro'ntgenologinen_NK : NK ;
+fun ro'pelo'inen_NK : NK ;
+fun ro'sti_NK : NK ;
+fun ro'tiska'_NK : NK ;
+fun ro'tisko'_NK : NK ;
+fun ro'tka'le_NK : NK ;
+fun ro'tko'tta'a'_VK : VK ;
+fun ro'ttelo'_NK : NK ;
+fun ro'to's_NK : NK ;
+fun ro'to'stella'_VK : VK ;
+fun ro'to'stely_NK : NK ;
+fun ro'yhelo'_NK : NK ;
+fun ro'yhelo'inen_NK : NK ;
+fun ro'yhistella'_VK : VK ;
+fun ro'yhistely_NK : NK ;
+fun ro'yhistys_NK : NK ;
+fun ro'yhista'a'_VK : VK ;
+fun ro'yhkeys_NK : NK ;
+fun ro'yhkea'_AK : AK ;
+--+ fun ro'yhkea'sti_AdvK : AdvK ;
+fun ro'yhta'illa'_VK : VK ;
+fun ro'yhta'ily_NK : NK ;
+fun ro'yhta'ista'_VK : VK ;
+fun ro'yhta'isy_NK : NK ;
+fun ro'yhta'ys_NK : NK ;
+fun ro'yhta'ytta'a'_VK : VK ;
+fun ro'yhta'ytys_NK : NK ;
+fun ro'yhy_NK : NK ;
+fun ro'yhyinen_NK : NK ;
+fun ro'yhytella'_VK : VK ;
+fun ro'yhytta'a'_VK : VK ;
+fun ro'yhyta'_VK : VK ;
+fun ro'yha'hdys_NK : NK ;
+fun ro'yha'hta'a'_VK : VK ;
+fun ro'ykkio'_NK : NK ;
+fun ro'ykkio'itta'in_AdvK : AdvK ;
+fun ro'ykytta'a'_VK : VK ;
+fun ro'ykytys_NK : NK ;
+fun ro'o'ki_NK : NK ;
+fun ro'o'ri_NK : NK ;
+fun sa_AdvK : AdvK ;
+fun saada_VK : VK ;
+fun saaga_NK : NK ;
+fun saago_NK : NK ;
+fun _aahi_NK : NK ;
+fun saaja_NK : NK ;
+fun saakeli_AK : AK ;
+fun saakelinmoinen_NK : NK ;
+--+ fun saakelisti_AdvK : AdvK ;
+fun saakka_AdvK : AdvK ;
+fun saakuri_AK : AK ;
+--+ fun saakuristi_AdvK : AdvK ;
+fun saali_NK : NK ;
+fun saalinki_NK : NK ;
+fun saalis_NK : NK ;
+fun saalistaa_VK : VK ;
+fun saalistaja_NK : NK ;
+fun saalistus_NK : NK ;
+fun saamari_AK : AK ;
+fun saamarinmoinen_NK : NK ;
+--+ fun saamaristi_AdvK : AdvK ;
+fun saamaton_NK : NK ;
+fun saamattomuus_NK : NK ;
+fun saame_NK : NK ;
+fun saaminen_NK : NK ;
+fun saanne_NK : NK ;
+fun saanti_NK : NK ;
+fun saanto_NK : NK ;
+fun saapas_NK : NK ;
+fun saapastella_VK : VK ;
+fun saapikas_NK : NK ;
+fun saappaannuolija_NK : NK ;
+fun saapua_VK : VK ;
+fun saapumisaika_NK : NK ;
+fun saapuvilla_AdvK : AdvK ;
+fun saapuville_AdvK : AdvK ;
+fun saarekas_NK : NK ;
+fun saareke_NK : NK ;
+fun saarelainen_NK : NK ;
+fun saarelma_NK : NK ;
+fun saari_NK : NK ;
+fun saarinen_NK : NK ;
+fun saaristo_NK : NK ;
+fun saaristoinen_NK : NK ;
+fun saarna_NK : NK ;
+fun saarnaaja_NK : NK ;
+fun saarnata_VK : VK ;
+fun saarni_NK : NK ;
+fun saarros_NK : NK ;
+fun saarrostaa_VK : VK ;
+fun saarrostus_NK : NK ;
+fun saartaa_VK : VK ;
+fun saarto_NK : NK ;
+fun saasta_NK : NK ;
+fun saastainen_NK : NK ;
+fun saastaisuus_NK : NK ;
+fun saastata_VK : VK ;
+fun saastaton_NK : NK ;
+fun saaste_NK : NK ;
+fun saasteeton_NK : NK ;
+fun saasteettomuus_NK : NK ;
+fun saasteinen_NK : NK ;
+fun saasteisuus_NK : NK ;
+fun saastua_VK : VK ;
+fun saastuke_NK : NK ;
+fun saastuma_NK : NK ;
+fun saastunta_NK : NK ;
+fun saastute_NK : NK ;
+fun saastuttaa_VK : VK ;
+fun saastuttaja_NK : NK ;
+fun saastutus_NK : NK ;
+fun saatana_AK : AK ;
+fun saatanallinen_NK : NK ;
+fun saatananmoinen_NK : NK ;
+--+ fun saatanasti_AdvK : AdvK ;
+fun saatava_NK : NK ;
+fun saatavana_AdvK : AdvK ;
+fun saatavilla_AdvK : AdvK ;
+fun saataville_AdvK : AdvK ;
+fun saatavilta_AdvK : AdvK ;
+fun saatavissa_AdvK : AdvK ;
+fun saatavuus_NK : NK ;
+fun saate_NK : NK ;
+fun saatella_VK : VK ;
+fun saati_AdvK : AdvK ;
+fun saatikka_AdvK : AdvK ;
+fun saatille_AdvK : AdvK ;
+fun saattaa_VK : VK ;
+fun saattaja_NK : NK ;
+fun saattelija_NK : NK ;
+fun saattelu_NK : NK ;
+fun saatto_NK : NK ;
+fun saattue_NK : NK ;
+fun saavi_NK : NK ;
+fun saavillinen_NK : NK ;
+fun saavutettavuus_NK : NK ;
+fun saavuttaa_VK : VK ;
+fun saavuttamaton_NK : NK ;
+fun saavuttamattomiin_AdvK : AdvK ;
+fun saavuttamattomissa_AdvK : AdvK ;
+fun saavutus_NK : NK ;
+fun sabatti_NK : NK ;
+fun sabloni_NK : NK ;
+fun sabluuna_NK : NK ;
+fun sabotaasi_NK : NK ;
+fun sabotoida_VK : VK ;
+fun sabotoija_NK : NK ;
+fun sabotointi_NK : NK ;
+fun saboto'o'ri_NK : NK ;
+fun sabra_NK : NK ;
+fun sadannes_NK : NK ;
+fun sadanta_NK : NK ;
+fun sadas_NK : NK ;
+fun sadasti_AdvK : AdvK ;
+fun sadatella_VK : VK ;
+fun sadattelu_NK : NK ;
+fun sadatus_NK : NK ;
+fun saddukeus_NK : NK ;
+fun sade_NK : NK ;
+fun sadeaika_NK : NK ;
+fun sadella_VK : VK ;
+fun sadetin_NK : NK ;
+fun sadettaa_VK : VK ;
+fun sadettaja_NK : NK ;
+fun sadetus_NK : NK ;
+fun sadin_NK : NK ;
+fun sadismi_NK : NK ;
+fun sadisti_NK : NK ;
+fun sadistinen_AK : AK ;
+--+ fun sadistisesti_AdvK : AdvK ;
+fun sadistisuus_NK : NK ;
+fun sadoittain_AdvK : AdvK ;
+fun sadonkorjuuaika_NK : NK ;
+--+ fun sadunomaisesti_AdvK : AdvK ;
+fun sadusto_NK : NK ;
+fun saeta_VK : VK ;
+fun safari_NK : NK ;
+fun safiiri_NK : NK ;
+fun safka_NK : NK ;
+fun safkata_VK : VK ;
+fun safkis_NK : NK ;
+fun saflori_NK : NK ;
+fun saframi_NK : NK ;
+fun saha_NK : NK ;
+fun sahaaja_NK : NK ;
+fun sahata_VK : VK ;
+fun sahaus_NK : NK ;
+fun sahauttaa_VK : VK ;
+fun sahautua_VK : VK ;
+fun sahra_NK : NK ;
+fun sahrami_NK : NK ;
+fun sahti_NK : NK ;
+fun sahuri_NK : NK ;
+fun sahuu_NK : NK ;
+fun sahuuttaa_VK : VK ;
+fun saidasti_AdvK : AdvK ;
+fun saikka_NK : NK ;
+fun saintpaulia_NK : NK ;
+fun saippo_NK : NK ;
+fun saippua_NK : NK ;
+fun saippuainen_NK : NK ;
+fun saippuoida_VK : VK ;
+fun saippuoittaa_VK : VK ;
+fun saippuoitua_VK : VK ;
+fun sairaala_NK : NK ;
+fun sairaalloinen_AK : AK ;
+--+ fun sairaalloisesti_AdvK : AdvK ;
+fun sairaalloisuus_NK : NK ;
+--+ fun sairaasti_AdvK : AdvK ;
+fun sairas_AK : AK ;
+fun sairastaa_VK : VK ;
+fun sairastavuus_NK : NK ;
+fun sairastella_VK : VK ;
+fun sairastelu_NK : NK ;
+fun sairastua_VK : VK ;
+fun sairastuttaa_VK : VK ;
+fun sairastuvuus_NK : NK ;
+fun sairaus_NK : NK ;
+fun sairausaika_NK : NK ;
+fun saita_NK : NK ;
+fun saituri_NK : NK ;
+fun saituus_NK : NK ;
+fun saivar_NK : NK ;
+fun saivare_NK : NK ;
+fun saivarrella_VK : VK ;
+fun saivartaja_NK : NK ;
+fun saivartelija_NK : NK ;
+fun saivartelu_NK : NK ;
+fun saju_NK : NK ;
+fun sakaali_NK : NK ;
+fun sakara_NK : NK ;
+fun sakarainen_NK : NK ;
+fun sakariini_NK : NK ;
+fun sakaristo_NK : NK ;
+fun sakasti_NK : NK ;
+fun sakata_VK : VK ;
+fun _akata_VK : VK ;
+fun sake_NK : NK ;
+fun sakea_NK : NK ;
+fun sakemanni_NK : NK ;
+fun saketti_NK : NK ;
+fun sakeute_NK : NK ;
+fun sakeuttaa_VK : VK ;
+fun sakeutua_VK : VK ;
+fun sakeutus_NK : NK ;
+fun sakka_NK : NK ;
+fun sakkaantua_VK : VK ;
+fun sakkaridi_NK : NK ;
+fun sakkariini_NK : NK ;
+fun sakkaroosi_NK : NK ;
+fun sakkauma_NK : NK ;
+fun sakkaus_NK : NK ;
+fun _akkaus_NK : NK ;
+fun sakkauttaa_VK : VK ;
+fun sakkautua_VK : VK ;
+fun sakkautuma_NK : NK ;
+fun sakkautus_NK : NK ;
+fun sakkeli_NK : NK ;
+fun sakki_NK : NK ;
+fun _akki_NK : NK ;
+fun sakko_NK : NK ;
+fun sakottaa_VK : VK ;
+fun sakotus_NK : NK ;
+fun sakoutua_VK : VK ;
+fun sakraalinen_NK : NK ;
+fun sakramentti_NK : NK ;
+fun saksa_NK : NK ;
+fun saksalainen_NK : NK ;
+fun saksankumina_NK : NK ;
+fun saksankuusi_NK : NK ;
+fun saksannos_NK : NK ;
+fun saksantaa_VK : VK ;
+fun saksata_VK : VK ;
+fun saksaus_NK : NK ;
+--? fun sakset_NK : NK ;
+fun saksia_VK : VK ;
+fun saksipotku_NK : NK ;
+fun saksmanni_NK : NK ;
+fun saksofoni_NK : NK ;
+fun saksofonisti_NK : NK ;
+fun saku_NK : NK ;
+fun sakuska_NK : NK ;
+fun sala_NK : NK ;
+fun salaa_AdvK : AdvK ;
+fun salaan_AdvK : AdvK ;
+fun salaatti_NK : NK ;
+fun salailla_VK : VK ;
+fun salailu_NK : NK ;
+fun salainen_AK : AK ;
+--+ fun salaisesti_AdvK : AdvK ;
+fun salaisuus_NK : NK ;
+fun salakka_NK : NK ;
+fun salaka'hma'inen_AK : AK ;
+--+ fun salaka'hma'isesti_AdvK : AdvK ;
+fun salaka'hma'isyys_NK : NK ;
+fun salama_NK : NK ;
+fun salamanleimaus_NK : NK ;
+fun salamanteri_NK : NK ;
+fun salami_NK : NK ;
+fun salamoida_VK : VK ;
+fun salamointi_NK : NK ;
+fun salamyhka'inen_AK : AK ;
+--+ fun salamyhka'isesti_AdvK : AdvK ;
+fun salamyhka'isyys_NK : NK ;
+--+ fun salapera'isesti_AdvK : AdvK ;
+fun salassa_AdvK : AdvK ;
+fun salassapitoaika_NK : NK ;
+fun salata_VK : VK ;
+fun salaus_NK : NK ;
+fun salava_NK : NK ;
+fun salavihkaa_AdvK : AdvK ;
+fun salavihkainen_AK : AK ;
+--+ fun salavihkaisesti_AdvK : AdvK ;
+fun salavihkaisuus_NK : NK ;
+fun salavuoteus_NK : NK ;
+fun saldo_NK : NK ;
+fun saletti_NK : NK ;
+fun sali_NK : NK ;
+fun salibandy_NK : NK ;
+fun salisylaatti_NK : NK ;
+fun salkku_NK : NK ;
+fun salko_NK : NK ;
+fun salkuton_NK : NK ;
+fun sallia_VK : VK ;
+fun sallimus_NK : NK ;
+fun sallittu_NK : NK ;
+fun salliva_AK : AK ;
+--+ fun sallivasti_AdvK : AdvK ;
+fun sallivuus_NK : NK ;
+fun salmeke_NK : NK ;
+fun salmi_NK : NK ;
+fun salmiakki_NK : NK ;
+fun salmonella_NK : NK ;
+fun salmonelloosi_NK : NK ;
+fun salo_NK : NK ;
+fun salon_AdvK : AdvK ;
+fun salonki_NK : NK ;
+--+ fun salonkikelpoisesti_AdvK : AdvK ;
+fun salpa_NK : NK ;
+fun salpaaja_NK : NK ;
+fun salpaantua_VK : VK ;
+fun salpauma_NK : NK ;
+fun salpaus_NK : NK ;
+fun salpautua_VK : VK ;
+fun salpautuma_NK : NK ;
+fun salpietari_NK : NK ;
+fun salsa_NK : NK ;
+fun salskea_NK : NK ;
+fun saluki_NK : NK ;
+fun salusiini_NK : NK ;
+fun saluuna_NK : NK ;
+fun salva_NK : NK ;
+fun salvaa_VK : VK ;
+fun salvain_NK : NK ;
+fun salvata_VK : VK ;
+fun salvia_NK : NK ;
+fun salvoa_VK : VK ;
+fun salvoin_NK : NK ;
+fun salvos_NK : NK ;
+fun sama_NK : NK ;
+fun samaani_NK : NK ;
+fun _amaani_NK : NK ;
+fun samaanne_AdvK : AdvK ;
+fun samainen_NK : NK ;
+fun samaistaa_VK : VK ;
+fun samaistua_VK : VK ;
+fun samalla_AdvK : AdvK ;
+--+ fun samanaikaisesti_AdvK : AdvK ;
+fun samanhintaisuus_NK : NK ;
+fun samanismi_NK : NK ;
+fun _amanismi_NK : NK ;
+fun samanistinen_NK : NK ;
+fun _amanistinen_NK : NK ;
+--+ fun samankaltaisesti_AdvK : AdvK ;
+fun samankaltaistua_VK : VK ;
+fun samankaltaistus_NK : NK ;
+--+ fun samankeskisesti_AdvK : AdvK ;
+fun samankeskisyys_NK : NK ;
+fun samanlainen_NK : NK ;
+fun samanlaistaa_VK : VK ;
+fun samanlaistua_VK : VK ;
+fun samanlaisuus_NK : NK ;
+fun samanne_AdvK : AdvK ;
+fun _amanoida_VK : VK ;
+fun samansuuntaistaa_VK : VK ;
+fun samansuuntaistua_VK : VK ;
+fun samansuuntaistus_NK : NK ;
+fun saman_tien_AdvK : AdvK ;
+fun saman_verran_AdvK : AdvK ;
+fun samaperinta'inen_NK : NK ;
+fun samarialainen_NK : NK ;
+fun samassa_AdvK : AdvK ;
+fun samastaa_VK : VK ;
+fun samastua_VK : VK ;
+fun samastus_NK : NK ;
+fun samaten_AdvK : AdvK ;
+fun samba_NK : NK ;
+fun sambata_VK : VK ;
+fun sambo_NK : NK ;
+fun samea_NK : NK ;
+fun samentaa_VK : VK ;
+fun samentua_VK : VK ;
+fun samentuma_NK : NK ;
+fun sameta_VK : VK ;
+fun sametti_NK : NK ;
+fun samettinen_NK : NK ;
+fun sameus_NK : NK ;
+fun sameuttaa_VK : VK ;
+fun sameutua_VK : VK ;
+fun sammahtaa_VK : VK ;
+fun sammakko_NK : NK ;
+fun sammal_NK : NK ;
+fun sammaleinen_NK : NK ;
+fun sammalikko_NK : NK ;
+fun sammalinen_NK : NK ;
+fun sammalisto_NK : NK ;
+fun sammallus_NK : NK ;
+fun sammaloitua_VK : VK ;
+fun sammaltaa_VK : VK ;
+fun sammaltua_VK : VK ;
+--? fun sammarit_NK : NK ;
+fun sammas_NK : NK ;
+fun sammio_NK : NK ;
+fun sammota_VK : VK ;
+fun sammua_VK : VK ;
+fun sammuke_NK : NK ;
+fun sammuksiin_AdvK : AdvK ;
+fun sammuksissa_AdvK : AdvK ;
+fun sammumaton_NK : NK ;
+fun sammute_NK : NK ;
+fun sammutin_NK : NK ;
+fun sammuttaa_VK : VK ;
+fun sammuttaja_NK : NK ;
+fun sammutus_NK : NK ;
+fun samoilija_NK : NK ;
+fun samoilla_VK : VK ;
+fun samoilu_NK : NK ;
+fun samoin_AdvK : AdvK ;
+fun samoinajatteleva_NK : NK ;
+fun samojedi_NK : NK ;
+fun samooja_NK : NK ;
+fun samota_VK : VK ;
+fun samotti_NK : NK ;
+fun samovaari_NK : NK ;
+fun sampaani_NK : NK ;
+fun samperi_AK : AK ;
+fun samperinmoinen_NK : NK ;
+--+ fun samperisti_AdvK : AdvK ;
+fun sampi_NK : NK ;
+fun sampinjoni_NK : NK ;
+fun sampioni_NK : NK ;
+fun samplata_VK : VK ;
+fun samplaus_NK : NK ;
+fun sampleri_NK : NK ;
+fun sampo_NK : NK ;
+fun sampoo_NK : NK ;
+fun samppanja_NK : NK ;
+fun samum_NK : NK ;
+fun samurai_NK : NK ;
+fun samuus_NK : NK ;
+fun sana_NK : NK ;
+fun sanaharkka_NK : NK ;
+fun sanailla_VK : VK ;
+fun sanailu_NK : NK ;
+fun sanainen_AK : AK ;
+--+ fun sanaisesti_AdvK : AdvK ;
+fun sanaisuus_NK : NK ;
+fun sanalleen_AdvK : AdvK ;
+fun sanallinen_AK : AK ;
+--+ fun sanallisesti_AdvK : AdvK ;
+fun sanallistaa_VK : VK ;
+fun sananen_NK : NK ;
+fun sananraja_NK : NK ;
+fun sanasilla_AdvK : AdvK ;
+fun sanasille_AdvK : AdvK ;
+fun sanastaa_VK : VK ;
+fun sanasto_NK : NK ;
+fun sanastollinen_NK : NK ;
+fun sanastus_NK : NK ;
+fun sanaton_NK : NK ;
+fun sanatorio_NK : NK ;
+fun sanattomasti_AdvK : AdvK ;
+fun sanattomuus_NK : NK ;
+fun sandaali_NK : NK ;
+fun sandaletti_NK : NK ;
+fun sandinisti_NK : NK ;
+fun sandwich_NK : NK ;
+fun sane_NK : NK ;
+fun saneerata_VK : VK ;
+fun saneeraus_NK : NK ;
+fun sanelin_NK : NK ;
+fun sanella_VK : VK ;
+fun sanelu_NK : NK ;
+fun sanforoida_VK : VK ;
+fun sanforointi_NK : NK ;
+fun sangallinen_NK : NK ;
+fun sangen_AdvK : AdvK ;
+fun sangollinen_NK : NK ;
+fun sangria_NK : NK ;
+fun saniainen_NK : NK ;
+fun sanikkainen_NK : NK ;
+fun sanka_AK : AK ;
+fun sankainen_NK : NK ;
+fun sankari_NK : NK ;
+fun sankarillinen_AK : AK ;
+--+ fun sankarillisesti_AdvK : AdvK ;
+fun sankarillisuus_NK : NK ;
+fun sankaritar_NK : NK ;
+fun sankarius_NK : NK ;
+fun sankaruus_NK : NK ;
+--+ fun sankasti_AdvK : AdvK ;
+fun sankentua_VK : VK ;
+fun sanketa_VK : VK ;
+fun sankka_NK : NK ;
+fun sankkeri_NK : NK ;
+fun sankkuus_NK : NK ;
+fun sanko_NK : NK ;
+fun sanktio_NK : NK ;
+fun sanktioida_VK : VK ;
+fun sanktiointi_NK : NK ;
+fun sannikas_NK : NK ;
+fun sannoittaa_VK : VK ;
+fun sannoitus_NK : NK ;
+fun sanoa_VK : VK ;
+fun sanoittaa_VK : VK ;
+fun sanoittaja_NK : NK ;
+fun sanoitus_NK : NK ;
+fun sanoja_NK : NK ;
+fun sanoma_NK : NK ;
+fun sanomaton_NK : NK ;
+fun sanomattomasti_AdvK : AdvK ;
+fun sanomus_NK : NK ;
+fun sanonnallinen_NK : NK ;
+fun sanonta_NK : NK ;
+fun sanottava_AK : AK ;
+--+ fun sanottavasti_AdvK : AdvK ;
+fun sanottu_NK : NK ;
+fun sanoutua_VK : VK ;
+fun sanskrit_NK : NK ;
+fun sanskritisti_NK : NK ;
+fun santa_NK : NK ;
+fun santarmi_NK : NK ;
+fun santsari_NK : NK ;
+fun santsata_VK : VK ;
+fun santsaus_NK : NK ;
+fun _antung_NK : NK ;
+fun sanue_NK : NK ;
+fun saos_NK : NK ;
+fun saostaa_VK : VK ;
+fun saoste_NK : NK ;
+fun saostin_NK : NK ;
+fun saostua_VK : VK ;
+fun saostus_NK : NK ;
+fun saota_VK : VK ;
+fun saparo_NK : NK ;
+fun sapatti_NK : NK ;
+fun sapekas_AK : AK ;
+--+ fun sapekkaasti_AdvK : AdvK ;
+fun sapekkuus_NK : NK ;
+fun sapeli_NK : NK ;
+fun sapelinkalistaja_NK : NK ;
+fun sapelinkalistelija_NK : NK ;
+fun sapelinkalistelu_NK : NK ;
+fun sapettaa_VK : VK ;
+fun sapiska_NK : NK ;
+fun sapluuna_NK : NK ;
+fun sappi_NK : NK ;
+fun sapuska_NK : NK ;
+fun sara_NK : NK ;
+fun saraikko_NK : NK ;
+fun sarake_NK : NK ;
+fun sarana_NK : NK ;
+fun saranallinen_NK : NK ;
+fun saranoida_VK : VK ;
+fun saranointi_NK : NK ;
+fun sarastaa_VK : VK ;
+fun sarastus_NK : NK ;
+fun sardelli_NK : NK ;
+fun sardiini_NK : NK ;
+fun sardoninen_NK : NK ;
+fun sari_NK : NK ;
+fun sarja_NK : NK ;
+fun sarjainen_NK : NK ;
+fun sarjallinen_NK : NK ;
+fun sarjis_NK : NK ;
+fun sarjoa_VK : VK ;
+fun sarjoittaa_VK : VK ;
+fun sarjoittain_AdvK : AdvK ;
+fun sarjoitus_NK : NK ;
+fun sarka_1_NK : NK ;
+fun sarka_2_NK : NK ;
+fun sarkain_NK : NK ;
+fun sarkainen_1_NK : NK ;
+fun sarkainen_2_NK : NK ;
+fun sarkainkohta_NK : NK ;
+fun sarkasmi_NK : NK ;
+fun sarkastinen_AK : AK ;
+--+ fun sarkastisesti_AdvK : AdvK ;
+fun sarkastisuus_NK : NK ;
+fun sarkaus_NK : NK ;
+fun sarkofagi_NK : NK ;
+fun sarkooma_NK : NK ;
+fun _armo'o'ri_NK : NK ;
+fun sarpio_NK : NK ;
+fun sarveistua_VK : VK ;
+fun sarveistuma_NK : NK ;
+fun sarvekas_NK : NK ;
+fun sarveke_NK : NK ;
+fun sarvellinen_NK : NK ;
+fun sarvi_NK : NK ;
+fun sarvijaakko_NK : NK ;
+fun sarvikuonokas_NK : NK ;
+fun sarvinen_NK : NK ;
+fun saslikki_NK : NK ;
+fun sassiin_AdvK : AdvK ;
+fun sata_NK : NK ;
+fun sataa_VK : VK ;
+fun satainen_NK : NK ;
+--+ fun satakertaisesti_AdvK : AdvK ;
+fun satama_NK : NK ;
+fun satama'a'rin_AdvK : AdvK ;
+fun satanen_NK : NK ;
+fun satanismi_NK : NK ;
+fun satanistinen_NK : NK ;
+fun sateensuoja_NK : NK ;
+fun sateinen_NK : NK ;
+fun sateisuus_NK : NK ;
+fun satelliitti_NK : NK ;
+fun satiainen_NK : NK ;
+fun satiini_NK : NK ;
+fun satiiri_NK : NK ;
+fun satiirikko_NK : NK ;
+fun satiirinen_NK : NK ;
+fun satikuti_NK : NK ;
+fun sato_NK : NK ;
+fun satoinen_NK : NK ;
+fun satoisa_NK : NK ;
+fun satoisuus_NK : NK ;
+fun satraappi_NK : NK ;
+fun satsata_VK : VK ;
+fun satsaus_NK : NK ;
+fun satsi_NK : NK ;
+fun satsuma_NK : NK ;
+fun sattua_VK : VK ;
+fun sattuma_NK : NK ;
+fun sattumalta_AdvK : AdvK ;
+--+ fun sattumanvaraisesti_AdvK : AdvK ;
+fun sattumoisin_AdvK : AdvK ;
+fun sattumus_NK : NK ;
+fun sattuva_AK : AK ;
+--+ fun sattuvasti_AdvK : AdvK ;
+fun sattuvuus_NK : NK ;
+fun satu_NK : NK ;
+fun satuilija_NK : NK ;
+fun satuilla_VK : VK ;
+fun satuilu_NK : NK ;
+fun satula_NK : NK ;
+fun satuloida_VK : VK ;
+fun satulointi_NK : NK ;
+fun satunnainen_AK : AK ;
+--+ fun satunnaisesti_AdvK : AdvK ;
+fun satunnaistaa_VK : VK ;
+fun satunnaisuus_NK : NK ;
+fun saturainen_NK : NK ;
+fun saturoida_VK : VK ;
+fun saturointi_NK : NK ;
+fun satuttaa_VK : VK ;
+fun satyyri_NK : NK ;
+fun saudi_NK : NK ;
+fun sauhu_NK : NK ;
+fun sauhuta_VK : VK ;
+fun sauhutella_VK : VK ;
+fun sauhuttaa_VK : VK ;
+fun sauhuttelu_NK : NK ;
+fun saukko_NK : NK ;
+fun sauma_NK : NK ;
+fun saumaaja_NK : NK ;
+fun saumain_NK : NK ;
+fun saumakohta_NK : NK ;
+fun saumallinen_NK : NK ;
+fun saumari_NK : NK ;
+fun saumata_VK : VK ;
+fun saumaton_NK : NK ;
+fun saumattomasti_AdvK : AdvK ;
+fun saumattomuus_NK : NK ;
+fun saumaus_NK : NK ;
+fun saumautua_VK : VK ;
+fun saumoittaa_VK : VK ;
+fun saumuri_NK : NK ;
+fun sauna_NK : NK ;
+fun saunavasta_NK : NK ;
+fun saundi_NK : NK ;
+fun saunio_NK : NK ;
+fun saunoa_VK : VK ;
+fun saunoja_NK : NK ;
+fun saunotella_VK : VK ;
+fun saunottaa_VK : VK ;
+fun saunottaja_NK : NK ;
+fun saunotus_NK : NK ;
+fun sauramo_NK : NK ;
+fun sauro_NK : NK ;
+fun sauva_NK : NK ;
+fun sauvoa_VK : VK ;
+fun sauvoin_NK : NK ;
+fun sauvonta_NK : NK ;
+fun savakko_NK : NK ;
+fun savanni_NK : NK ;
+fun savariini_NK : NK ;
+fun saves_NK : NK ;
+fun saveta_VK : VK ;
+fun savettaa_VK : VK ;
+fun savettua_VK : VK ;
+fun savetus_NK : NK ;
+fun saveus_NK : NK ;
+fun saveutua_VK : VK ;
+fun savi_NK : NK ;
+fun savikka_NK : NK ;
+fun savikko_NK : NK ;
+fun savinen_NK : NK ;
+fun savo_NK : NK ;
+fun savolaisittain_AdvK : AdvK ;
+fun savolaisuus_NK : NK ;
+fun savotoida_VK : VK ;
+fun savotointi_NK : NK ;
+fun savotta_NK : NK ;
+fun savu_NK : NK ;
+fun savuinen_NK : NK ;
+fun savuke_NK : NK ;
+fun savustaa_VK : VK ;
+fun savustamo_NK : NK ;
+fun savustin_NK : NK ;
+fun savustua_VK : VK ;
+fun savustus_NK : NK ;
+fun savuta_VK : VK ;
+fun savuton_NK : NK ;
+fun savuttaa_VK : VK ;
+fun savuttua_VK : VK ;
+fun savutus_NK : NK ;
+fun scherzo_NK : NK ;
+fun scha'fer_NK : NK ;
+fun science_fiction_NK : NK ;
+fun scifi_NK : NK ;
+fun seassa_AdvK : AdvK ;
+fun seasta_AdvK : AdvK ;
+fun seborrea_NK : NK ;
+fun seborrooinen_NK : NK ;
+fun sedatiivi_NK : NK ;
+fun sedimentoitua_VK : VK ;
+fun sedimentti_NK : NK ;
+fun seditella'_VK : VK ;
+fun seemila'inen_NK : NK ;
+fun seepia_NK : NK ;
+fun seepra_NK : NK ;
+fun seerumi_NK : NK ;
+fun sees_AdvK : AdvK ;
+fun seesam_AdvK : AdvK ;
+fun seesami_NK : NK ;
+fun seesteisyys_NK : NK ;
+fun seestya'_VK : VK ;
+fun seesta'a'_VK : VK ;
+fun segmentaatio_NK : NK ;
+fun segmentoida_VK : VK ;
+fun segmentointi_NK : NK ;
+fun segmentoitua_VK : VK ;
+fun segmentti_NK : NK ;
+fun sei_NK : NK ;
+fun seikka_NK : NK ;
+fun seikkailija_NK : NK ;
+fun seikkailijatar_NK : NK ;
+fun seikkailla_VK : VK ;
+fun seikkailu_NK : NK ;
+fun seikkailukas_NK : NK ;
+--+ fun seikkapera'isesti_AdvK : AdvK ;
+fun _eikki_NK : NK ;
+fun seilailla_VK : VK ;
+fun seilata_VK : VK ;
+fun seili_NK : NK ;
+fun seimi_NK : NK ;
+fun seinemma'ksi_AdvK : AdvK ;
+fun seinemma'lle_AdvK : AdvK ;
+fun seinemma'lla'_AdvK : AdvK ;
+fun seinemma's_AdvK : AdvK ;
+fun seinempa'na'_AdvK : AdvK ;
+fun seinus_NK : NK ;
+fun seinusta_NK : NK ;
+fun seinustaa_VK : VK ;
+fun seina'_NK : NK ;
+fun seina'inen_NK : NK ;
+fun seina'ke_NK : NK ;
+fun seina'kka'in_AdvK : AdvK ;
+fun seina'kka'inen_NK : NK ;
+fun seina'llinen_NK : NK ;
+fun seina'maalaus_NK : NK ;
+fun seina'ma'_NK : NK ;
+fun seina'syvennys_NK : NK ;
+fun seina'tyksin_AdvK : AdvK ;
+fun seina'tysten_AdvK : AdvK ;
+fun seipi_NK : NK ;
+fun seireeni_NK : NK ;
+fun seis_AdvK : AdvK ;
+fun seisaalla_AdvK : AdvK ;
+fun seisaallaan_AdvK : AdvK ;
+fun seisaalle_AdvK : AdvK ;
+fun seisaalleen_AdvK : AdvK ;
+fun seisaalta_AdvK : AdvK ;
+fun seisaaltaan_AdvK : AdvK ;
+fun seisahduksissa_AdvK : AdvK ;
+fun seisahdus_NK : NK ;
+fun seisahduttaa_VK : VK ;
+fun seisahtaa_VK : VK ;
+fun seisahtua_VK : VK ;
+fun seisake_NK : NK ;
+fun seisauksiin_AdvK : AdvK ;
+fun seisauksissa_AdvK : AdvK ;
+fun seisaus_NK : NK ;
+fun seisautella_VK : VK ;
+fun seisauttaa_VK : VK ;
+fun seisauttaja_NK : NK ;
+fun seiska_NK : NK ;
+fun seisminen_NK : NK ;
+fun seismografi_NK : NK ;
+fun seismogrammi_NK : NK ;
+fun seismologia_NK : NK ;
+fun seismologinen_NK : NK ;
+fun seisoa_VK : VK ;
+fun seisoalla_AdvK : AdvK ;
+fun seisoallaan_AdvK : AdvK ;
+fun seisoalle_AdvK : AdvK ;
+fun seisoalleen_AdvK : AdvK ;
+fun seisoalta_AdvK : AdvK ;
+fun seisoaltaan_AdvK : AdvK ;
+fun seisoja_NK : NK ;
+fun seisoksia_VK : VK ;
+fun seisomalta_AdvK : AdvK ;
+fun seisomisaika_NK : NK ;
+fun seisonta_aika_NK : NK ;
+fun seisoskella_VK : VK ;
+fun seisottaa_VK : VK ;
+fun seisotus_NK : NK ;
+fun seisova_NK : NK ;
+fun seisovilla_AdvK : AdvK ;
+fun seisovillaan_AdvK : AdvK ;
+fun seisoville_AdvK : AdvK ;
+fun seisovilleen_AdvK : AdvK ;
+fun seisovilta_AdvK : AdvK ;
+fun seisoviltaan_AdvK : AdvK ;
+fun seista'_VK : VK ;
+fun seita_NK : NK ;
+fun seiti_NK : NK ;
+fun seitikko_NK : NK ;
+fun seitonen_NK : NK ;
+fun seitsemisen_AdvK : AdvK ;
+fun seitsema'inen_NK : NK ;
+fun seitsema'n_NK : NK ;
+fun seitsema'nnes_NK : NK ;
+fun seitsema's_NK : NK ;
+fun seitsema'sti_AdvK : AdvK ;
+fun seitsikko_NK : NK ;
+fun seitti_NK : NK ;
+fun seiva's_NK : NK ;
+fun seiva'stys_NK : NK ;
+fun seiva'sta'a'_VK : VK ;
+fun sekaan_AdvK : AdvK ;
+fun sekaannus_NK : NK ;
+fun sekaannuttaa_VK : VK ;
+fun sekaantua_VK : VK ;
+fun sekainen_AK : AK ;
+--+ fun sekaisesti_AdvK : AdvK ;
+fun sekaisin_AdvK : AdvK ;
+fun sekaisuus_NK : NK ;
+fun sekakoosteisuus_NK : NK ;
+fun sekalainen_NK : NK ;
+fun sekalaisuus_NK : NK ;
+fun sekamelska_NK : NK ;
+fun sekantti_NK : NK ;
+--+ fun sekapa'isesti_AdvK : AdvK ;
+fun sekapa'isyys_NK : NK ;
+fun sekarengasteinen_NK : NK ;
+fun sekarotuisuus_NK : NK ;
+fun sekasortoinen_AK : AK ;
+--+ fun sekasortoisesti_AdvK : AdvK ;
+fun sekasortoisuus_NK : NK ;
+fun sekauma_NK : NK ;
+fun sekautua_VK : VK ;
+fun sekautuma_NK : NK ;
+fun sekava_AK : AK ;
+--+ fun sekavasti_AdvK : AdvK ;
+fun sekavoittaa_VK : VK ;
+fun sekavuus_NK : NK ;
+fun sekeli_NK : NK ;
+fun sekka_NK : NK ;
+fun sekki_NK : NK ;
+fun _ekki_NK : NK ;
+fun sekoilija_NK : NK ;
+fun sekoilla_VK : VK ;
+fun sekoilu_NK : NK ;
+fun sekoite_NK : NK ;
+fun sekoitella_VK : VK ;
+fun sekoitelma_NK : NK ;
+fun sekoitin_NK : NK ;
+fun sekoittaa_VK : VK ;
+fun sekoittaja_NK : NK ;
+fun sekoitteinen_NK : NK ;
+fun sekoittua_VK : VK ;
+fun sekoittuma_NK : NK ;
+fun sekoitus_NK : NK ;
+fun seksi_NK : NK ;
+fun seksikkyys_NK : NK ;
+--+ fun seksikka'a'sti_AdvK : AdvK ;
+fun seksika's_AK : AK ;
+fun seksismi_NK : NK ;
+fun seksisti_NK : NK ;
+fun seksistinen_NK : NK ;
+fun seksologi_NK : NK ;
+fun seksologia_NK : NK ;
+fun seksologinen_NK : NK ;
+fun sekstantti_NK : NK ;
+fun sekstetti_NK : NK ;
+fun sekstetto_NK : NK ;
+fun seksti_NK : NK ;
+fun seksuaalinen_AK : AK ;
+--+ fun seksuaalisesti_AdvK : AdvK ;
+fun seksuaalistua_VK : VK ;
+fun seksuaalisuus_NK : NK ;
+fun seksualiteetti_NK : NK ;
+fun _ektaus_NK : NK ;
+fun sektio_NK : NK ;
+fun sektori_NK : NK ;
+fun sekulaari_NK : NK ;
+fun sekulaarinen_NK : NK ;
+fun sekulaaristaa_VK : VK ;
+fun sekulaaristua_VK : VK ;
+fun sekularisaatio_NK : NK ;
+fun sekularismi_NK : NK ;
+fun sekularisoida_VK : VK ;
+fun sekularisoitua_VK : VK ;
+fun sekularisti_NK : NK ;
+fun sekularistinen_AK : AK ;
+--+ fun sekularistisesti_AdvK : AdvK ;
+fun sekularistisuus_NK : NK ;
+fun sekuli_NK : NK ;
+fun sekunda_NK : NK ;
+fun sekundaari_AK : AK ;
+fun sekundaarinen_AK : AK ;
+--+ fun sekundaarisesti_AdvK : AdvK ;
+--+ fun sekundaaristi_AdvK : AdvK ;
+fun sekundaarisuus_NK : NK ;
+fun sekundaarius_NK : NK ;
+fun sekundaattori_NK : NK ;
+fun sekundantti_NK : NK ;
+fun sekunda'a'ri_NK : NK ;
+fun sekunda'a'rinen_NK : NK ;
+fun sekunti_NK : NK ;
+fun sekuntikaupalla_AdvK : AdvK ;
+fun sekuntinen_NK : NK ;
+fun sekvensoida_VK : VK ;
+fun sekvenssi_NK : NK ;
+fun seka'_AdvK : AdvK ;
+fun selailla_VK : VK ;
+fun selailu_NK : NK ;
+fun selata_VK : VK ;
+fun selaus_NK : NK ;
+fun seleeni_NK : NK ;
+fun selektiivinen_AK : AK ;
+--+ fun selektiivisesti_AdvK : AdvK ;
+fun selektiivisyys_NK : NK ;
+fun selektio_NK : NK ;
+fun selektiviteetti_NK : NK ;
+fun _elfi_NK : NK ;
+fun self_made_man_NK : NK ;
+fun selibaatti_NK : NK ;
+fun selikka'in_AdvK : AdvK ;
+fun selin_AdvK : AdvK ;
+fun selite_NK : NK ;
+fun selitella'_VK : VK ;
+fun selitelma'_NK : NK ;
+fun selitteinen_NK : NK ;
+fun selittely_NK : NK ;
+fun selittya'_VK : VK ;
+fun selitta'in_AdvK : AdvK ;
+fun selitta'ja'_NK : NK ;
+fun selitta'ma'tto'myys_NK : NK ;
+fun selitta'ma'tto'ma'sti_AdvK : AdvK ;
+fun selitta'ma'to'n_NK : NK ;
+fun selitta'a'_VK : VK ;
+fun selitys_NK : NK ;
+fun selita'_VK : VK ;
+fun selja_NK : NK ;
+fun seljanka_NK : NK ;
+fun seljeta'_VK : VK ;
+fun selkeennytta'a'_VK : VK ;
+fun selkeentya'_VK : VK ;
+fun selkeys_NK : NK ;
+fun selkeytin_NK : NK ;
+fun selkeytta'a'_VK : VK ;
+fun selkeytyma'to'n_NK : NK ;
+fun selkeytys_NK : NK ;
+fun selkeytya'_VK : VK ;
+fun selkea'_AK : AK ;
+--+ fun selkea'sti_AdvK : AdvK ;
+fun selkiinnytta'a'_VK : VK ;
+fun selkiintya'_VK : VK ;
+fun selkis_AdvK : AdvK ;
+fun selkiytta'a'_VK : VK ;
+fun selkiytyma'to'n_NK : NK ;
+fun selkiytys_NK : NK ;
+fun selkiytya'_VK : VK ;
+fun selkkaus_NK : NK ;
+fun selko_NK : NK ;
+fun selkoinen_NK : NK ;
+fun selkonen_NK : NK ;
+fun selkosen_AdvK : AdvK ;
+fun selka'_NK : NK ;
+fun selka'in_NK : NK ;
+fun selka'inen_AK : AK ;
+--+ fun selka'isesti_AdvK : AdvK ;
+fun selka'mys_NK : NK ;
+fun selka'nojallinen_NK : NK ;
+fun selka'rangaton_NK : NK ;
+fun selka'rangattomasti_AdvK : AdvK ;
+fun selka'rangattomuus_NK : NK ;
+fun selka'rankainen_NK : NK ;
+fun sellainen_NK : NK ;
+fun sellakka_NK : NK ;
+fun selleri_NK : NK ;
+fun selli_NK : NK ;
+fun sellisti_NK : NK ;
+fun sellistinen_NK : NK ;
+fun sello_NK : NK ;
+fun sellofaani_NK : NK ;
+fun sellu_NK : NK ;
+fun selluliitti_NK : NK ;
+fun selluloidi_NK : NK ;
+fun selluloosa_NK : NK ;
+fun selostaa_VK : VK ;
+fun selostaja_NK : NK ;
+fun selostamo_NK : NK ;
+fun seloste_NK : NK ;
+fun selostus_NK : NK ;
+fun selstoffi_NK : NK ;
+fun selus_NK : NK ;
+fun selusta_NK : NK ;
+fun selustainen_NK : NK ;
+fun selustin_NK : NK ;
+fun selvennys_NK : NK ;
+fun selvenno's_NK : NK ;
+fun selventya'_VK : VK ;
+fun selventa'a'_VK : VK ;
+fun selveta'_VK : VK ;
+fun selville_AdvK : AdvK ;
+fun selvilla'_AdvK : AdvK ;
+fun selvitella'_VK : VK ;
+fun selvittely_NK : NK ;
+fun selvitta'ja'_NK : NK ;
+fun selvitta'ma'to'n_NK : NK ;
+fun selvitta'a'_VK : VK ;
+fun selvitys_NK : NK ;
+fun selvitytta'a'_VK : VK ;
+fun selvita'_VK : VK ;
+fun selviytyja'_NK : NK ;
+fun selviytya'_VK : VK ;
+fun selvio'_NK : NK ;
+fun selvyys_NK : NK ;
+fun selva'_AK : AK ;
+--+ fun selva'kielisesti_AdvK : AdvK ;
+--+ fun selva'na'ko'isesti_AdvK : AdvK ;
+--+ fun selva'piirteisesti_AdvK : AdvK ;
+fun selva'piirteisyys_NK : NK ;
+--+ fun selva'sanaisesti_AdvK : AdvK ;
+--+ fun selva'sti_AdvK : AdvK ;
+fun selva'ta'_VK : VK ;
+fun selys_NK : NK ;
+fun sela'ke_NK : NK ;
+fun sela'kka'in_AdvK : AdvK ;
+fun sela'lleen_AdvK : AdvK ;
+fun sela'lla'a'n_AdvK : AdvK ;
+fun sela'nne_NK : NK ;
+fun sela'nteinen_NK : NK ;
+fun sela'tta'a'_VK : VK ;
+fun sela'tyksin_AdvK : AdvK ;
+fun sela'tys_NK : NK ;
+fun sela'tysten_AdvK : AdvK ;
+fun sela'to'n_NK : NK ;
+fun semafori_NK : NK ;
+fun semantiikka_NK : NK ;
+fun semanttinen_NK : NK ;
+fun sembra_NK : NK ;
+fun sementoida_VK : VK ;
+fun sementointi_NK : NK ;
+fun sementti_NK : NK ;
+fun semi_NK : NK ;
+fun seminaari_NK : NK ;
+fun seminologi_NK : NK ;
+fun semiootikko_NK : NK ;
+fun semioottinen_NK : NK ;
+fun semiotiikka_NK : NK ;
+fun semminkin_AdvK : AdvK ;
+fun semminka'a'n_AdvK : AdvK ;
+fun semmoinen_NK : NK ;
+fun sen_AdvK : AdvK ;
+fun senaatti_NK : NK ;
+fun senaattori_NK : NK ;
+fun seniili_NK : NK ;
+fun seniiliys_NK : NK ;
+fun seniliteetti_NK : NK ;
+fun senior_NK : NK ;
+fun seniori_NK : NK ;
+fun senkin_AdvK : AdvK ;
+fun senkka_NK : NK ;
+fun senkki_NK : NK ;
+fun sensaatio_NK : NK ;
+fun sen_sijaan_AdvK : AdvK ;
+fun sensitiivinen_AK : AK ;
+--+ fun sensitiivisesti_AdvK : AdvK ;
+fun sensitiivisyys_NK : NK ;
+fun sensori_NK : NK ;
+fun sensorinen_NK : NK ;
+fun senssit_NK : NK ;
+fun sensuaalinen_NK : NK ;
+fun sensuaalisuus_NK : NK ;
+fun sensualismi_NK : NK ;
+fun sensuelli_NK : NK ;
+fun sensuroida_VK : VK ;
+fun sensuroimaton_NK : NK ;
+fun sensurointi_NK : NK ;
+fun sen_takia_AdvK : AdvK ;
+fun sentata_VK : VK ;
+fun sentimentaali_NK : NK ;
+fun sentimentaalinen_AK : AK ;
+--+ fun sentimentaalisesti_AdvK : AdvK ;
+fun sentimentaalisuus_NK : NK ;
+fun sentraalisantra_NK : NK ;
+fun sentralismi_NK : NK ;
+fun sentralisoida_VK : VK ;
+fun sentralisointi_NK : NK ;
+fun sentrifugi_NK : NK ;
+fun sentrifugoida_VK : VK ;
+fun senttari_NK : NK ;
+fun senttaus_NK : NK ;
+fun sentteri_NK : NK ;
+fun sentti_NK : NK ;
+fun senttinen_NK : NK ;
+fun senturia_NK : NK ;
+fun senturio_NK : NK ;
+fun sen_ta'hden_AdvK : AdvK ;
+fun senta'a'n_AdvK : AdvK ;
+fun sen_verran_AdvK : AdvK ;
+fun sen_vuoksi_AdvK : AdvK ;
+fun seos_NK : NK ;
+fun seostaa_VK : VK ;
+fun seoste_NK : NK ;
+fun seostus_NK : NK ;
+fun seota_VK : VK ;
+fun sepalus_NK : NK ;
+fun separaattori_NK : NK ;
+fun separatismi_NK : NK ;
+fun separatisti_NK : NK ;
+fun separatistinen_AK : AK ;
+--+ fun separatistisesti_AdvK : AdvK ;
+fun separatistisuus_NK : NK ;
+fun separoida_VK : VK ;
+fun separointi_NK : NK ;
+fun sepeli_NK : NK ;
+fun sepelikko'_NK : NK ;
+fun sepellys_NK : NK ;
+fun sepelo'ida'_VK : VK ;
+fun sepelo'inti_NK : NK ;
+fun sepite_NK : NK ;
+fun sepitella'_VK : VK ;
+fun sepitelma'_NK : NK ;
+fun sepitteellinen_NK : NK ;
+fun sepitteinen_NK : NK ;
+fun sepittely_NK : NK ;
+fun sepitta'ja'_NK : NK ;
+fun sepitta'a'_VK : VK ;
+fun sepitys_NK : NK ;
+fun sepiva'_NK : NK ;
+fun seppel_NK : NK ;
+fun seppele_NK : NK ;
+--? fun seppeleensitojaiset_NK : NK ;
+fun seppeleensitojatar_NK : NK ;
+fun seppelo'ida'_VK : VK ;
+fun seppelo'inti_NK : NK ;
+fun seppo_NK : NK ;
+fun sepposen_AdvK : AdvK ;
+fun seppa'_NK : NK ;
+fun sepsis_NK : NK ;
+fun septetti_NK : NK ;
+fun septetto_NK : NK ;
+fun septimi_NK : NK ;
+fun septinen_NK : NK ;
+fun sepustaa_VK : VK ;
+fun sepustus_NK : NK ;
+fun serbetti_NK : NK ;
+fun serbi_NK : NK ;
+fun seremonia_NK : NK ;
+fun seremoniallinen_AK : AK ;
+--+ fun seremoniallisesti_AdvK : AdvK ;
+fun seremoniallisuus_NK : NK ;
+fun serenadi_NK : NK ;
+fun seriffi_NK : NK ;
+fun serigrafia_NK : NK ;
+fun serkku_NK : NK ;
+fun serkkuus_NK : NK ;
+fun serkus_NK : NK ;
+fun sermi_NK : NK ;
+fun serologi_NK : NK ;
+fun serologia_NK : NK ;
+fun serologinen_NK : NK ;
+fun serotoniini_NK : NK ;
+fun serpentiini_NK : NK ;
+fun serri_NK : NK ;
+fun sertifikaatti_NK : NK ;
+fun sertifioida_VK : VK ;
+fun sertifiointi_NK : NK ;
+fun sertinki_NK : NK ;
+fun serveerata_VK : VK ;
+fun servelaati_NK : NK ;
+fun serveri_NK : NK ;
+fun servietti_NK : NK ;
+fun serviisi_NK : NK ;
+fun servo_NK : NK ;
+fun seslonki_NK : NK ;
+fun sesonki_NK : NK ;
+fun sessio_NK : NK ;
+fun sestoa_VK : VK ;
+fun sesuura_NK : NK ;
+fun seteli_NK : NK ;
+fun setelisto'_NK : NK ;
+fun setlementti_NK : NK ;
+fun setri_NK : NK ;
+fun setsuuri_NK : NK ;
+fun setteri_NK : NK ;
+fun setti_NK : NK ;
+fun setvinta'_NK : NK ;
+fun setvia'_VK : VK ;
+fun seta'_NK : NK ;
+fun seta'ma'inen_AK : AK ;
+--+ fun seta'ma'isesti_AdvK : AdvK ;
+fun seta'ma'isyys_NK : NK ;
+fun seuduilla_AdvK : AdvK ;
+fun seudulla_AdvK : AdvK ;
+fun seudullinen_AK : AK ;
+--+ fun seudullisesti_AdvK : AdvK ;
+fun seula_NK : NK ;
+fun seuloa_VK : VK ;
+fun seulonta_NK : NK ;
+fun seulos_NK : NK ;
+fun seuloutua_VK : VK ;
+fun seura_NK : NK ;
+fun seuraaja_NK : NK ;
+fun seuraamus_NK : NK ;
+fun seuraava_AK : AK ;
+fun seuraavanlainen_NK : NK ;
+--+ fun seuraavasti_AdvK : AdvK ;
+fun seurailija_NK : NK ;
+fun seurailla_VK : VK ;
+fun seurailu_NK : NK ;
+fun seurallinen_NK : NK ;
+fun seurallisuus_NK : NK ;
+--+ fun seuranhaluisesti_AdvK : AdvK ;
+fun seurannainen_NK : NK ;
+fun seuranta_NK : NK ;
+fun seurata_VK : VK ;
+fun seuraus_NK : NK ;
+fun seurue_NK : NK ;
+fun seurustella_VK : VK ;
+fun seurustelu_NK : NK ;
+fun seurusteluaika_NK : NK ;
+fun seuruu_NK : NK ;
+fun seutu_NK : NK ;
+fun seutuvilla_AdvK : AdvK ;
+fun seutuville_AdvK : AdvK ;
+fun seutuvilta_AdvK : AdvK ;
+fun seviotti_NK : NK ;
+fun sfinksi_NK : NK ;
+fun sfa'a'ri_NK : NK ;
+fun shakki_NK : NK ;
+fun sherry_NK : NK ;
+fun shetlanninvilla_NK : NK ;
+fun shop_NK : NK ;
+fun shopata_VK : VK ;
+fun shoppailla_VK : VK ;
+fun shoppailu_NK : NK ;
+fun shortsit_NK : NK ;
+fun show_NK : NK ;
+fun sial_NK : NK ;
+fun sialma_NK : NK ;
+fun siamilainen_NK : NK ;
+fun side_NK : NK ;
+fun sidoksiin_AdvK : AdvK ;
+fun sidoksinen_NK : NK ;
+fun sidoksissa_AdvK : AdvK ;
+fun sidonnainen_NK : NK ;
+fun sidonnaisuus_NK : NK ;
+fun sidonta_NK : NK ;
+fun sidos_NK : NK ;
+fun sidottaa_VK : VK ;
+fun sidotus_NK : NK ;
+fun siedetta'vyys_NK : NK ;
+fun siedetta'va'_AK : AK ;
+--+ fun siedetta'va'sti_AdvK : AdvK ;
+fun siekailematon_NK : NK ;
+fun siekailematta_AdvK : AdvK ;
+fun siekailemattomasti_AdvK : AdvK ;
+fun siekailemattomuus_NK : NK ;
+fun siekailla_VK : VK ;
+fun sielikko'_NK : NK ;
+fun siella'_AdvK : AdvK ;
+fun sielta'_AdvK : AdvK ;
+fun sielu_NK : NK ;
+fun sieluinen_NK : NK ;
+fun sieluisuus_NK : NK ;
+fun sielukas_AK : AK ;
+--+ fun sielukkaasti_AdvK : AdvK ;
+fun sielukkuus_NK : NK ;
+fun sielullinen_AK : AK ;
+--+ fun sielullisesti_AdvK : AdvK ;
+fun sielullistaa_VK : VK ;
+fun sieluton_NK : NK ;
+fun sieluttaa_VK : VK ;
+fun sielutus_NK : NK ;
+fun siemaista_VK : VK ;
+fun siemaisu_NK : NK ;
+fun siemaus_NK : NK ;
+fun siemen_NK : NK ;
+fun siemenellinen_NK : NK ;
+fun siemeneto'n_NK : NK ;
+fun siemeninen_NK : NK ;
+fun siemennys_NK : NK ;
+fun siementya'_VK : VK ;
+fun siementa'ja'_NK : NK ;
+fun siementa'a'_VK : VK ;
+fun sienestys_NK : NK ;
+fun sienesta'ja'_NK : NK ;
+fun sienesta'a'_VK : VK ;
+fun sienettya'_VK : VK ;
+fun sieni_NK : NK ;
+fun sieniaika_NK : NK ;
+fun sienijuuri_NK : NK ;
+fun sienima'inen_NK : NK ;
+fun sienimo'_NK : NK ;
+fun siepata_VK : VK ;
+fun sieppaaja_NK : NK ;
+fun sieppari_NK : NK ;
+fun sieppaus_NK : NK ;
+fun sieppo_NK : NK ;
+fun siera_NK : NK ;
+fun sieraiminen_NK : NK ;
+fun sierain_NK : NK ;
+fun sierettyma'_NK : NK ;
+fun sierettya'_VK : VK ;
+fun sieretta'a'_VK : VK ;
+fun sierottua_VK : VK ;
+fun sierottuma_NK : NK ;
+fun siesta_NK : NK ;
+fun sieto_NK : NK ;
+fun sietoinen_NK : NK ;
+fun sieta'_1_VK : VK ;
+fun sieta'_2_VK : VK ;
+fun sieta'ma'tto'myys_NK : NK ;
+fun sieta'ma'tto'ma'sti_AdvK : AdvK ;
+fun sieta'ma'to'n_NK : NK ;
+fun sieta'a'_VK : VK ;
+fun sievennys_NK : NK ;
+fun sieventya'_VK : VK ;
+fun sieventa'a'_VK : VK ;
+fun sieveta'_VK : VK ;
+fun sievikki_NK : NK ;
+fun sievistelema'to'n_NK : NK ;
+fun sievistelija'_NK : NK ;
+fun sievistella'_VK : VK ;
+fun sievistely_NK : NK ;
+fun sievistya'_VK : VK ;
+fun sievista'a'_VK : VK ;
+fun sievoinen_NK : NK ;
+fun sievyys_NK : NK ;
+fun sieva'_AK : AK ;
+--+ fun sieva'sti_AdvK : AdvK ;
+fun sifoni_NK : NK ;
+fun sifonki_NK : NK ;
+fun sigarillo_NK : NK ;
+fun sightseeing_NK : NK ;
+fun sigma_NK : NK ;
+fun signaali_NK : NK ;
+fun signeerata_VK : VK ;
+fun signeeraus_NK : NK ;
+fun signumi_NK : NK ;
+fun sihahdella_VK : VK ;
+fun sihahdus_NK : NK ;
+fun sihahtaa_VK : VK ;
+fun sihaus_NK : NK ;
+fun sihauttaa_VK : VK ;
+fun sihdata_1_VK : VK ;
+fun sihdata_2_VK : VK ;
+fun sihina'_NK : NK ;
+fun sihista'_VK : VK ;
+fun sihtailla_VK : VK ;
+fun sihtailu_NK : NK ;
+fun sihtaus_1_NK : NK ;
+fun sihtaus_2_NK : NK ;
+fun sihteeri_NK : NK ;
+fun sihteerikko'_NK : NK ;
+fun sihteeristo'_NK : NK ;
+fun sihteeriys_NK : NK ;
+fun sihti_1_NK : NK ;
+fun sihti_2_NK : NK ;
+fun _iialainen_NK : NK ;
+fun _iialaisuus_NK : NK ;
+fun siideri_NK : NK ;
+fun siihen_AdvK : AdvK ;
+fun siihenastinen_NK : NK ;
+fun siika_NK : NK ;
+fun siilata_VK : VK ;
+fun siilautua_VK : VK ;
+fun siili_1_NK : NK ;
+fun siili_2_NK : NK ;
+fun siilo_NK : NK ;
+fun siima_NK : NK ;
+fun siimes_NK : NK ;
+fun siinnella'_VK : VK ;
+fun siinto_NK : NK ;
+fun siintoinen_NK : NK ;
+fun siinta'a'_VK : VK ;
+fun siina'_AdvK : AdvK ;
+fun siipeilija'_NK : NK ;
+fun siipeilla'_VK : VK ;
+fun siipi_NK : NK ;
+fun siipinen_NK : NK ;
+fun siipirikkoinen_NK : NK ;
+fun siippa_1_NK : NK ;
+fun siippa_2_NK : NK ;
+fun siira_NK : NK ;
+fun siirappi_NK : NK ;
+fun siirappinen_NK : NK ;
+fun siirottaa_VK : VK ;
+fun siirre_NK : NK ;
+fun siirrella'_VK : VK ;
+fun siirrin_NK : NK ;
+fun siirros_NK : NK ;
+fun siirrostaa_VK : VK ;
+fun siirrostus_NK : NK ;
+fun siirrynta'_NK : NK ;
+fun siirra'hta'a'_VK : VK ;
+fun siirra'nna'inen_NK : NK ;
+fun siirra'nta'_NK : NK ;
+fun siirra'tta'a'_VK : VK ;
+fun siirtely_NK : NK ;
+fun siirto_NK : NK ;
+fun siirtogeeninen_NK : NK ;
+fun siirtoinen_NK : NK ;
+fun siirtokuormaus_NK : NK ;
+fun siirtola_NK : NK ;
+fun siirtolaisuus_NK : NK ;
+fun siirtyilla'_VK : VK ;
+fun siirtyma'_NK : NK ;
+fun siirtyma'aika_NK : NK ;
+fun siirtya'_VK : VK ;
+fun siirta'ja'_NK : NK ;
+fun siirta'ma'to'n_NK : NK ;
+fun siirta'a'_VK : VK ;
+fun siis_AdvK : AdvK ;
+fun siistata_VK : VK ;
+fun siisteys_NK : NK ;
+fun siisti_AK : AK ;
+--+ fun siististi_AdvK : AdvK ;
+fun siistiytya'_VK : VK ;
+fun siistia'_VK : VK ;
+fun siitake_NK : NK ;
+fun siitin_NK : NK ;
+fun siitos_NK : NK ;
+fun siittio'_NK : NK ;
+fun siittoinen_NK : NK ;
+fun siittola_NK : NK ;
+fun siitta'ja'_NK : NK ;
+fun siitta'a'_VK : VK ;
+fun siita'_1_VK : VK ;
+fun siita'_2_AdvK : AdvK ;
+fun siiveke_NK : NK ;
+fun siiveka's_NK : NK ;
+fun siivellinen_NK : NK ;
+fun siiveto'n_NK : NK ;
+fun siivila'_NK : NK ;
+fun siivilo'ida'_VK : VK ;
+fun siivilo'inti_NK : NK ;
+fun siivilo'itya'_VK : VK ;
+fun siivittya'_VK : VK ;
+fun siivitta'ja'_NK : NK ;
+fun siivitta'a'_VK : VK ;
+fun siivo_AK : AK ;
+fun siivolla_AdvK : AdvK ;
+--+ fun siivosti_AdvK : AdvK ;
+fun siivota_VK : VK ;
+fun siivoton_NK : NK ;
+fun siivottomasti_AdvK : AdvK ;
+fun siivottomuus_NK : NK ;
+fun siivous_NK : NK ;
+fun siivu_NK : NK ;
+fun siivuttaa_VK : VK ;
+fun sija_NK : NK ;
+fun sijainen_NK : NK ;
+fun sijainti_NK : NK ;
+fun sijaisuus_NK : NK ;
+fun sijaita_VK : VK ;
+fun sijata_VK : VK ;
+fun sijaton_NK : NK ;
+fun sijaus_NK : NK ;
+fun sijoilla_AdvK : AdvK ;
+fun sijoillaan_AdvK : AdvK ;
+fun sijoille_AdvK : AdvK ;
+fun sijoilleen_AdvK : AdvK ;
+fun sijoilta_AdvK : AdvK ;
+fun sijoiltaan_AdvK : AdvK ;
+fun sijoittaa_VK : VK ;
+fun sijoittaja_NK : NK ;
+fun sijoittamaton_NK : NK ;
+fun sijoittautua_VK : VK ;
+fun sijoitteinen_NK : NK ;
+fun sijoittelu_NK : NK ;
+fun sijoittua_VK : VK ;
+fun sijoitus_NK : NK ;
+fun sika_NK : NK ;
+fun _ikaani_NK : NK ;
+fun sikailla_VK : VK ;
+fun sikailu_NK : NK ;
+fun sikala_NK : NK ;
+--+ fun sikamaisesti_AdvK : AdvK ;
+fun sikamaisuus_NK : NK ;
+fun sikari_NK : NK ;
+fun sikerma'_NK : NK ;
+fun sikeys_NK : NK ;
+fun sikeytya'_VK : VK ;
+fun sikea'_AK : AK ;
+--+ fun sikea'sti_AdvK : AdvK ;
+fun sikhi_NK : NK ;
+fun sikhila'isyys_NK : NK ;
+fun sikin_sokin_AdvK : AdvK ;
+fun sikisi_AdvK : AdvK ;
+fun sikia'in_NK : NK ;
+fun sikia'vyys_NK : NK ;
+fun sikia'a'_AdvK : AdvK ;
+fun sikio'_NK : NK ;
+fun sikio'aika_NK : NK ;
+fun sikkara_NK : NK ;
+fun sikkaraan_AdvK : AdvK ;
+fun sikkaralla_AdvK : AdvK ;
+fun sikkarallaan_AdvK : AdvK ;
+fun sikkaralle_AdvK : AdvK ;
+fun sikkaralleen_AdvK : AdvK ;
+fun sikkarassa_AdvK : AdvK ;
+fun sikkatiivi_NK : NK ;
+fun sikkura_NK : NK ;
+fun sikkuraan_AdvK : AdvK ;
+fun sikkuralla_AdvK : AdvK ;
+fun sikkurallaan_AdvK : AdvK ;
+fun sikkuralle_AdvK : AdvK ;
+fun sikkuralleen_AdvK : AdvK ;
+fun sikkurassa_AdvK : AdvK ;
+fun siklata_VK : VK ;
+fun sikli_NK : NK ;
+fun sikola'tti_NK : NK ;
+fun siksakata_VK : VK ;
+fun siksakki_NK : NK ;
+fun sikseen_AdvK : AdvK ;
+fun siksi_AdvK : AdvK ;
+fun sikuna_NK : NK ;
+fun sikuri_NK : NK ;
+fun sika'li_AdvK : AdvK ;
+fun sika'la'inen_NK : NK ;
+fun silakka_NK : NK ;
+--? fun silat_NK : NK ;
+fun silata_VK : VK ;
+fun silaus_NK : NK ;
+fun silava_NK : NK ;
+fun silavainen_NK : NK ;
+fun silavoida_VK : VK ;
+fun sileta'_VK : VK ;
+fun sileys_NK : NK ;
+fun silea'_AK : AK ;
+--+ fun silea'sti_AdvK : AdvK ;
+fun silikaatti_NK : NK ;
+fun silikoni_NK : NK ;
+fun silikoosi_NK : NK ;
+fun silinteri_NK : NK ;
+fun silitella'_VK : VK ;
+fun silittya'_VK : VK ;
+fun silitta'a'_VK : VK ;
+fun silitys_NK : NK ;
+fun silitytta'a'_VK : VK ;
+fun silita'_VK : VK ;
+fun siliytya'_VK : VK ;
+fun silia'vyys_NK : NK ;
+fun silkinhohtava_NK : NK ;
+fun silkka_NK : NK ;
+fun silkki_NK : NK ;
+fun silkkinen_NK : NK ;
+fun silko_AdvK : AdvK ;
+fun silkoinen_NK : NK ;
+fun silla_NK : NK ;
+fun sillaikaa_AdvK : AdvK ;
+fun silleen_AdvK : AdvK ;
+fun silli_NK : NK ;
+fun _illinki_NK : NK ;
+fun silloin_AdvK : AdvK ;
+fun silloinen_NK : NK ;
+fun silloittaa_VK : VK ;
+fun silloitus_NK : NK ;
+fun silla'_AdvK : AdvK ;
+fun silla'_lailla_AdvK : AdvK ;
+fun silla'_tapaa_AdvK : AdvK ;
+fun silla'_tavoin_AdvK : AdvK ;
+fun silla'_va'lin_AdvK : AdvK ;
+fun silla'a'n_AdvK : AdvK ;
+fun silmiinpista'vyys_NK : NK ;
+--+ fun silmiinpista'va'sti_AdvK : AdvK ;
+fun silmikko_NK : NK ;
+fun silmikka'in_AdvK : AdvK ;
+fun silmikoida_VK : VK ;
+fun silmikointi_NK : NK ;
+fun silmikoitua_VK : VK ;
+fun silmitto'ma'sti_AdvK : AdvK ;
+fun silmityksin_AdvK : AdvK ;
+fun silmitysten_AdvK : AdvK ;
+fun silmito'n_NK : NK ;
+fun silmu_NK : NK ;
+fun silmukka_NK : NK ;
+fun silmukkainen_NK : NK ;
+fun silmukoida_VK : VK ;
+fun silmukointi_NK : NK ;
+fun silmuri_NK : NK ;
+fun silmus_NK : NK ;
+fun silmuttaa_VK : VK ;
+fun silmutus_NK : NK ;
+fun silma'_NK : NK ;
+fun silma'illa'_VK : VK ;
+fun silma'ily_NK : NK ;
+fun silma'inen_AK : AK ;
+--+ fun silma'isesti_AdvK : AdvK ;
+fun silma'ista'_VK : VK ;
+fun silma'isy_NK : NK ;
+fun silma'ke_NK : NK ;
+fun silma'kka'in_AdvK : AdvK ;
+fun silma'koko_NK : NK ;
+fun silma'llinen_NK : NK ;
+fun silma'lla'_pita'en_AdvK : AdvK ;
+fun silma'nra'pa'yksellinen_NK : NK ;
+fun silma'tyksin_AdvK : AdvK ;
+fun silma'tysten_AdvK : AdvK ;
+fun silma'ta'_VK : VK ;
+fun silma'ys_NK : NK ;
+fun siloinen_AK : AK ;
+--+ fun siloisesti_AdvK : AdvK ;
+fun siloisuus_NK : NK ;
+fun silote_NK : NK ;
+fun silotella_VK : VK ;
+fun silottaa_VK : VK ;
+fun silottua_VK : VK ;
+fun silotus_NK : NK ;
+fun silpia'_VK : VK ;
+fun silpoa_VK : VK ;
+fun silpoutua_VK : VK ;
+fun silppu_NK : NK ;
+fun silppuri_NK : NK ;
+fun silppuuntua_VK : VK ;
+fun silputa_VK : VK ;
+fun silsa_NK : NK ;
+fun silta_NK : NK ;
+fun silti_AdvK : AdvK ;
+fun siltti_NK : NK ;
+fun silta'a'n_AdvK : AdvK ;
+fun siluetti_NK : NK ;
+fun siluuri_NK : NK ;
+fun siluurinen_NK : NK ;
+fun silvonta_NK : NK ;
+fun sima_NK : NK ;
+fun simahdus_NK : NK ;
+fun simahtaa_VK : VK ;
+--? fun simmarit_NK : NK ;
+fun simpanssi_NK : NK ;
+fun simppeli_AK : AK ;
+--+ fun simppelisti_AdvK : AdvK ;
+fun simppu_NK : NK ;
+fun simpukankuori_NK : NK ;
+fun simpukka_NK : NK ;
+fun simputtaa_VK : VK ;
+fun simputtaja_NK : NK ;
+fun simputus_NK : NK ;
+fun simsalabim_NK : NK ;
+fun simsetti_NK : NK ;
+fun simulaatio_NK : NK ;
+fun simulaattori_NK : NK ;
+fun simuloida_VK : VK ;
+fun simulointi_NK : NK ;
+fun simultaani_AK : AK ;
+fun simultaaninen_AK : AK ;
+--+ fun simultaanisesti_AdvK : AdvK ;
+--+ fun simultaanisti_AdvK : AdvK ;
+fun simultaanisuus_NK : NK ;
+fun simultaanius_NK : NK ;
+fun sinappi_NK : NK ;
+fun sinelma'_NK : NK ;
+fun sineraria_NK : NK ;
+fun sinerrys_NK : NK ;
+fun sinertya'_VK : VK ;
+fun sinerta'va'_NK : NK ;
+fun sinerta'a'_VK : VK ;
+fun sinerva'_NK : NK ;
+fun sinetti_NK : NK ;
+fun sineto'ida'_VK : VK ;
+fun sineto'inti_NK : NK ;
+fun sineto'itya'_VK : VK ;
+fun sinfonia_NK : NK ;
+fun sinfonietta_NK : NK ;
+fun sinfonikko_NK : NK ;
+fun sinfoninen_NK : NK ;
+fun singahdella_VK : VK ;
+fun singahduttaa_VK : VK ;
+fun singahtaa_VK : VK ;
+fun singlata_VK : VK ;
+fun singlaus_NK : NK ;
+fun single_NK : NK ;
+fun singota_VK : VK ;
+fun singulaari_NK : NK ;
+fun singulariteetti_NK : NK ;
+fun sini_1_NK : NK ;
+fun sini_2_NK : NK ;
+fun sininen_NK : NK ;
+--+ fun sinisilma'isesti_AdvK : AdvK ;
+fun sinistyma'_NK : NK ;
+fun sinistys_NK : NK ;
+fun sinistya'_VK : VK ;
+fun sinista'a'_VK : VK ;
+fun sinisyys_NK : NK ;
+fun sinkata_VK : VK ;
+fun sinkautella_VK : VK ;
+fun sinkauttaa_VK : VK ;
+fun sinkila'_NK : NK ;
+fun sinkilo'ida'_VK : VK ;
+fun sinkilo'inti_NK : NK ;
+fun sinkitys_NK : NK ;
+fun sinkita'_VK : VK ;
+fun sinkkaus_NK : NK ;
+fun sinkki_NK : NK ;
+fun sinkkinen_NK : NK ;
+fun sinkku_NK : NK ;
+fun sinko_NK : NK ;
+fun sinkoilla_VK : VK ;
+fun sinkoutua_VK : VK ;
+fun sinne_AdvK : AdvK ;
+fun sinnemma'_AdvK : AdvK ;
+fun sinnemma'ksi_AdvK : AdvK ;
+fun sinnemma's_AdvK : AdvK ;
+fun sinnempa'na'_AdvK : AdvK ;
+fun sinnempa'a'_AdvK : AdvK ;
+fun sinnikkyys_NK : NK ;
+--+ fun sinnikka'a'sti_AdvK : AdvK ;
+fun sinnika's_AK : AK ;
+fun sinnitella'_VK : VK ;
+fun sinnittely_NK : NK ;
+fun sinologi_NK : NK ;
+fun sinologia_NK : NK ;
+fun sinooberi_NK : NK ;
+fun sinooperi_NK : NK ;
+fun sinsilla_NK : NK ;
+fun _into_NK : NK ;
+fun _intolainen_NK : NK ;
+fun _intolaisuus_NK : NK ;
+fun sintraantua_VK : VK ;
+fun sintrata_VK : VK ;
+fun sintraus_NK : NK ;
+fun sintrautua_VK : VK ;
+fun sintsi_NK : NK ;
+fun sintti_NK : NK ;
+fun sinuiksi_AdvK : AdvK ;
+fun sinuksi_AdvK : AdvK ;
+fun sinunlaisesi_NK : NK ;
+fun sinut_AdvK : AdvK ;
+fun sinutella_VK : VK ;
+fun sinuttelu_NK : NK ;
+fun sina'lleen_AdvK : AdvK ;
+fun sina'lla'a'n_AdvK : AdvK ;
+fun sina'lta'a'n_AdvK : AdvK ;
+fun sina'nsa'_AdvK : AdvK ;
+fun sionismi_NK : NK ;
+fun sionisti_NK : NK ;
+fun sionistinen_NK : NK ;
+fun sioux_NK : NK ;
+fun sipaista_VK : VK ;
+fun sipaisu_NK : NK ;
+fun sipata_VK : VK ;
+fun sipatti_NK : NK ;
+fun siperianhusky_NK : NK ;
+fun siperianlehtikuusi_NK : NK ;
+fun sipina'_NK : NK ;
+fun sipista'_VK : VK ;
+fun sipsi_NK : NK ;
+fun sipsutella_VK : VK ;
+fun sipsuttaa_VK : VK ;
+fun sipsutus_NK : NK ;
+fun sipuli_NK : NK ;
+fun sipulinkuori_NK : NK ;
+fun sirahdella_VK : VK ;
+fun sirahdus_NK : NK ;
+fun sirahtaa_VK : VK ;
+fun sireeni_1_NK : NK ;
+fun sireeni_2_NK : NK ;
+fun sirina'_NK : NK ;
+fun siristella'_VK : VK ;
+fun siristely_NK : NK ;
+fun siristys_NK : NK ;
+fun sirista'_VK : VK ;
+fun sirista'a'_VK : VK ;
+fun siritta'ja'_NK : NK ;
+fun siritta'a'_VK : VK ;
+fun siritys_NK : NK ;
+fun sirkea'_NK : NK ;
+fun sirkka_1_NK : NK ;
+fun sirkka_2_NK : NK ;
+fun sirkka_3_NK : NK ;
+fun sirkkainen_NK : NK ;
+fun sirkkajuuri_NK : NK ;
+fun sirkkeli_NK : NK ;
+fun sirkku_NK : NK ;
+fun sirklata_VK : VK ;
+fun sirklaus_NK : NK ;
+fun sirkoni_NK : NK ;
+fun sirkonium_NK : NK ;
+fun sirkumfleksi_NK : NK ;
+fun sirkus_NK : NK ;
+fun sirkuttaa_VK : VK ;
+fun sirkutus_NK : NK ;
+fun siro_NK : NK ;
+fun sironta_NK : NK ;
+fun sirostella_VK : VK ;
+fun sirota_VK : VK ;
+fun sirote_NK : NK ;
+fun sirotella_VK : VK ;
+fun sirotin_NK : NK ;
+fun sirottaa_VK : VK ;
+fun sirottelu_NK : NK ;
+fun sirottua_VK : VK ;
+fun sirotus_NK : NK ;
+fun sirpakka_NK : NK ;
+fun sirpale_NK : NK ;
+fun sirpaleinen_NK : NK ;
+fun sirpaloitua_VK : VK ;
+fun sirppi_NK : NK ;
+fun sirri_NK : NK ;
+fun sirriin_AdvK : AdvK ;
+fun sirrille_AdvK : AdvK ;
+fun sirrilleen_AdvK : AdvK ;
+fun sirrilla'_AdvK : AdvK ;
+fun sirrilla'a'n_AdvK : AdvK ;
+fun sirrissa'_AdvK : AdvK ;
+fun sirtaki_NK : NK ;
+fun siru_NK : NK ;
+fun sirunen_NK : NK ;
+fun sisal_NK : NK ;
+fun sisali_NK : NK ;
+fun sisar_NK : NK ;
+--? fun sisarekset_NK : NK ;
+fun sisarellinen_AK : AK ;
+--+ fun sisarellisesti_AdvK : AdvK ;
+fun sisarus_NK : NK ;
+fun sisaruus_NK : NK ;
+fun siselo'ida'_VK : VK ;
+fun siselo'inti_NK : NK ;
+fun sisemma'_AdvK : AdvK ;
+fun sisemma'ksi_AdvK : AdvK ;
+fun sisemma'lle_AdvK : AdvK ;
+fun sisemma'lla'_AdvK : AdvK ;
+fun sisemma'lta'_AdvK : AdvK ;
+fun sisemma's_AdvK : AdvK ;
+fun sisempi_NK : NK ;
+fun sisempa'na'_AdvK : AdvK ;
+fun sisempa'a'_AdvK : AdvK ;
+fun sisennys_NK : NK ;
+fun sisenta'a'_VK : VK ;
+fun siseta'_VK : VK ;
+fun sisilisko_NK : NK ;
+fun sisimma'inen_NK : NK ;
+fun sisimma'ksi_AdvK : AdvK ;
+fun sisimma'lle_AdvK : AdvK ;
+fun sisimma'lla'_AdvK : AdvK ;
+fun sisimma'lta'_AdvK : AdvK ;
+fun sisimma'lta'a'n_AdvK : AdvK ;
+fun sisimma's_AdvK : AdvK ;
+fun sisimpa'na'_AdvK : AdvK ;
+fun sisimpa'a'_AdvK : AdvK ;
+fun sisin_NK : NK ;
+fun sisinna'_AdvK : AdvK ;
+fun sisko_NK : NK ;
+--? fun siskokset_NK : NK ;
+fun siskous_NK : NK ;
+fun sissi_NK : NK ;
+fun sisterssila'inen_NK : NK ;
+fun sisu_NK : NK ;
+fun sisuinen_NK : NK ;
+fun sisukas_AK : AK ;
+--+ fun sisukkaasti_AdvK : AdvK ;
+fun sisukkuus_NK : NK ;
+fun sisus_NK : NK ;
+fun sisusta_NK : NK ;
+fun sisustaa_VK : VK ;
+fun sisustainen_NK : NK ;
+fun sisustaja_NK : NK ;
+fun sisuste_NK : NK ;
+fun sisustus_NK : NK ;
+fun sisuuntua_VK : VK ;
+fun sisa'eritteinen_NK : NK ;
+fun sisa'inen_AK : AK ;
+--+ fun sisa'isesti_AdvK : AdvK ;
+fun sisa'istys_NK : NK ;
+fun sisa'istya'_VK : VK ;
+fun sisa'ista'a'_VK : VK ;
+fun sisa'kka'in_AdvK : AdvK ;
+fun sisa'kka'inen_NK : NK ;
+fun sisa'kko'_NK : NK ;
+fun sisa'lle_AdvK : AdvK ;
+fun sisa'llisesti_AdvK : AdvK ;
+fun sisa'llykseka's_NK : NK ;
+fun sisa'llyksellinen_NK : NK ;
+fun sisa'llykseto'n_NK : NK ;
+fun sisa'llyksinen_NK : NK ;
+fun sisa'llys_NK : NK ;
+fun sisa'llytta'a'_VK : VK ;
+fun sisa'lla'_AdvK : AdvK ;
+fun sisa'llo'ka's_NK : NK ;
+fun sisa'llo'llinen_NK : NK ;
+fun sisa'llo'to'n_NK : NK ;
+--? fun sisa'lmykset_NK : NK ;
+fun sisa'lokasuoja_NK : NK ;
+fun sisa'ltya'_VK : VK ;
+fun sisa'lta'_AdvK : AdvK ;
+fun sisa'lta'a'_VK : VK ;
+fun sisa'lto'_NK : NK ;
+fun sisa'lto'inen_NK : NK ;
+fun sisa'maalaus_NK : NK ;
+fun sisa'maali_NK : NK ;
+fun sisa'renkaaton_NK : NK ;
+fun sisa'ssa'_AdvK : AdvK ;
+fun sisa'sta'_AdvK : AdvK ;
+fun sisa'tta'in_AdvK : AdvK ;
+fun sisa'tta'inen_NK : NK ;
+fun sisa'turkki_NK : NK ;
+fun sisa'tyksin_AdvK : AdvK ;
+fun sisa'tysten_AdvK : AdvK ;
+fun sisa'a'n_AdvK : AdvK ;
+fun sisa'a'nla'mpia'va'_NK : NK ;
+fun sisa'a'nrakennettu_NK : NK ;
+fun sitaatti_NK : NK ;
+fun sitaista_VK : VK ;
+fun sitaisu_NK : NK ;
+fun sitar_NK : NK ;
+fun sitcom_NK : NK ;
+fun siteerata_VK : VK ;
+fun siteeraus_NK : NK ;
+fun siteinen_NK : NK ;
+fun siten_AdvK : AdvK ;
+fun sitkaan_AdvK : AdvK ;
+--+ fun sitkaasti_AdvK : AdvK ;
+fun sitkas_AK : AK ;
+fun sitketa'_VK : VK ;
+fun sitkeys_NK : NK ;
+fun sitkeytta'a'_VK : VK ;
+fun sitkeytya'_VK : VK ;
+fun sitkea'_AK : AK ;
+--+ fun sitkea'sti_AdvK : AdvK ;
+fun sitkistya'_VK : VK ;
+fun sitkista'a'_VK : VK ;
+fun sitko_NK : NK ;
+fun sitkostaa_VK : VK ;
+fun sitoa_VK : VK ;
+fun sitoja_NK : NK ;
+fun sitomaton_NK : NK ;
+fun sitomo_NK : NK ;
+fun sitoumus_NK : NK ;
+fun sitoutua_VK : VK ;
+fun sitoutumaton_NK : NK ;
+fun sitoutumattomuus_NK : NK ;
+fun sitovasti_AdvK : AdvK ;
+fun sitovuus_NK : NK ;
+fun sitra_NK : NK ;
+fun sitronaatti_NK : NK ;
+fun sitruuna_NK : NK ;
+fun sitruunamelissa_NK : NK ;
+fun sitruunankuori_NK : NK ;
+fun sitsi_NK : NK ;
+fun sittemmin_AdvK : AdvK ;
+fun sitten_AdvK : AdvK ;
+fun sittenkin_AdvK : AdvK ;
+fun sittenka'a'n_AdvK : AdvK ;
+fun sittia'inen_NK : NK ;
+fun sita'_AdvK : AdvK ;
+fun siunaama_NK : NK ;
+fun siunaamaton_NK : NK ;
+fun siunaantua_VK : VK ;
+fun siunailla_VK : VK ;
+fun siunailu_NK : NK ;
+fun siunata_VK : VK ;
+fun siunauksekas_NK : NK ;
+fun siunauksellinen_NK : NK ;
+fun siunauksellisuus_NK : NK ;
+fun siunaus_NK : NK ;
+fun siunautua_VK : VK ;
+fun sivakka_NK : NK ;
+fun sivakoida_VK : VK ;
+fun sivallella_VK : VK ;
+fun sivallus_NK : NK ;
+fun sivaltaa_VK : VK ;
+fun sivari_NK : NK ;
+fun siveellinen_AK : AK ;
+--+ fun siveellisesti_AdvK : AdvK ;
+fun siveellisyys_NK : NK ;
+fun siveetto'myys_NK : NK ;
+fun siveetto'ma'sti_AdvK : AdvK ;
+fun siveeto'n_NK : NK ;
+fun sivellin_NK : NK ;
+fun sivella'_VK : VK ;
+fun sivelteinen_NK : NK ;
+fun siveltimenveto_NK : NK ;
+fun sively_NK : NK ;
+fun siveys_NK : NK ;
+fun sivea'_AK : AK ;
+--+ fun sivea'sti_AdvK : AdvK ;
+fun siviili_NK : NK ;
+fun siviilivihkiminen_NK : NK ;
+fun sivilisaatio_NK : NK ;
+fun sivilisoitua_VK : VK ;
+fun sivistyksellinen_NK : NK ;
+fun sivistyma'tto'myys_NK : NK ;
+fun sivistyma'tto'ma'sti_AdvK : AdvK ;
+fun sivistyma'to'n_NK : NK ;
+--+ fun sivistyneesti_AdvK : AdvK ;
+fun sivistyneisto'_NK : NK ;
+fun sivistyneisyys_NK : NK ;
+fun sivistynyt_AK : AK ;
+fun sivistys_NK : NK ;
+fun sivistya'_VK : VK ;
+fun sivista'a'_VK : VK ;
+fun sivu_NK : NK ;
+fun sivuaja_NK : NK ;
+fun sivuinen_NK : NK ;
+fun sivuitse_AdvK : AdvK ;
+fun sivuittain_AdvK : AdvK ;
+fun sivuittainen_NK : NK ;
+fun sivukaupalla_AdvK : AdvK ;
+fun sivukautta_AdvK : AdvK ;
+fun sivukkain_AdvK : AdvK ;
+fun sivulla_AdvK : AdvK ;
+fun sivulle_AdvK : AdvK ;
+fun sivullinen_NK : NK ;
+fun sivullisuus_NK : NK ;
+fun sivulta_AdvK : AdvK ;
+fun sivumennen_AdvK : AdvK ;
+fun sivummaksi_AdvK : AdvK ;
+fun sivummalla_AdvK : AdvK ;
+fun sivummalle_AdvK : AdvK ;
+fun sivummalta_AdvK : AdvK ;
+fun sivummas_AdvK : AdvK ;
+fun sivummassa_AdvK : AdvK ;
+fun sivummasta_AdvK : AdvK ;
+fun sivumpaa_AdvK : AdvK ;
+fun sivumpaan_AdvK : AdvK ;
+fun sivumpana_AdvK : AdvK ;
+fun sivussa_AdvK : AdvK ;
+fun sivusta_1_NK : NK ;
+fun sivusta_2_AdvK : AdvK ;
+fun sivustavedetta'va'_NK : NK ;
+fun sivuta_VK : VK ;
+fun sivuttaa_VK : VK ;
+fun sivuttain_AdvK : AdvK ;
+fun sivuttainen_NK : NK ;
+fun sivuun_AdvK : AdvK ;
+fun sivuuttaa_VK : VK ;
+fun sivuutus_NK : NK ;
+fun sivuvaunullinen_NK : NK ;
+fun skaala_NK : NK ;
+fun skalpeerata_VK : VK ;
+fun skalpeeraus_NK : NK ;
+fun skalpelli_NK : NK ;
+fun skandaali_NK : NK ;
+fun skandalisoida_VK : VK ;
+fun skandaloida_VK : VK ;
+fun skandeerata_VK : VK ;
+fun skandeeraus_NK : NK ;
+fun skandinaavi_NK : NK ;
+fun skandinaavinen_NK : NK ;
+fun skandinaaviska_NK : NK ;
+fun skandinavialainen_NK : NK ;
+fun skandinavismi_NK : NK ;
+fun skannata_VK : VK ;
+fun skannaus_NK : NK ;
+fun skanneri_NK : NK ;
+fun skanssi_NK : NK ;
+fun skarpata_VK : VK ;
+fun skarppi_NK : NK ;
+fun skeema_NK : NK ;
+fun skeet_NK : NK ;
+fun skeet_ammunta_NK : NK ;
+fun skeida_NK : NK ;
+fun skeitata_VK : VK ;
+fun skeittaaja_NK : NK ;
+fun skeittaus_NK : NK ;
+fun skeitti_NK : NK ;
+fun skemaattinen_NK : NK ;
+fun skematisoida_VK : VK ;
+fun skematisointi_NK : NK ;
+fun skenaario_NK : NK ;
+fun skenaristi_NK : NK ;
+fun skepsis_NK : NK ;
+fun skeptikko_NK : NK ;
+fun skeptinen_AK : AK ;
+--+ fun skeptisesti_AdvK : AdvK ;
+fun skeptisismi_NK : NK ;
+fun skeptisyys_NK : NK ;
+fun sketsi_NK : NK ;
+fun skientismi_NK : NK ;
+fun skientologi_NK : NK ;
+fun skientologia_NK : NK ;
+fun skimba_NK : NK ;
+fun skimbata_VK : VK ;
+fun skimbaus_NK : NK ;
+fun skinhead_NK : NK ;
+fun skini_NK : NK ;
+fun skisma_NK : NK ;
+fun skitsi_NK : NK ;
+fun skitso_NK : NK ;
+fun skitsofreeni_NK : NK ;
+fun skitsofreenikko_NK : NK ;
+fun skitsofreeninen_AK : AK ;
+--+ fun skitsofreenisesti_AdvK : AdvK ;
+fun skitsofrenia_NK : NK ;
+fun skleroosi_NK : NK ;
+fun skolastiikka_NK : NK ;
+fun skolastikko_NK : NK ;
+fun skolastinen_NK : NK ;
+fun skolioosi_NK : NK ;
+fun skonssi_NK : NK ;
+fun skool_AdvK : AdvK ;
+fun skoolata_VK : VK ;
+fun skoolaus_NK : NK ;
+fun skootteri_NK : NK ;
+fun skorpioni_NK : NK ;
+fun skotlantilainen_NK : NK ;
+fun skotooma_NK : NK ;
+fun skotti_NK : NK ;
+fun skribentti_NK : NK ;
+fun skripta_NK : NK ;
+fun skruuvi_NK : NK ;
+fun skulata_VK : VK ;
+fun skunkki_NK : NK ;
+fun skuuppi_NK : NK ;
+fun slaageri_NK : NK ;
+fun slaavi_NK : NK ;
+fun slaavilaisuus_NK : NK ;
+fun slalom_NK : NK ;
+fun slammata_VK : VK ;
+fun slammaus_NK : NK ;
+fun slangi_NK : NK ;
+fun slapstick_NK : NK ;
+fun slavisti_NK : NK ;
+fun slavistiikka_NK : NK ;
+fun sliipata_VK : VK ;
+fun sliippari_NK : NK ;
+fun sliippaus_NK : NK ;
+fun slipoveri_NK : NK ;
+fun slivovits_NK : NK ;
+fun slobo_NK : NK ;
+fun slogaani_NK : NK ;
+fun slovakialainen_NK : NK ;
+fun slovakki_NK : NK ;
+fun sloveeni_NK : NK ;
+fun slovenialainen_NK : NK ;
+fun slummi_NK : NK ;
+fun slummiutua_VK : VK ;
+fun small_talk_NK : NK ;
+fun smaragdi_NK : NK ;
+fun smetana_NK : NK ;
+fun sminkata_VK : VK ;
+fun sminkki_NK : NK ;
+fun smirgeli_NK : NK ;
+fun smirgelo'ida'_VK : VK ;
+fun smirgelo'inti_NK : NK ;
+fun smog_NK : NK ;
+fun smoking_NK : NK ;
+fun smokki_NK : NK ;
+fun snacks_NK : NK ;
+fun snadi_NK : NK ;
+fun snapsi_NK : NK ;
+fun snautseri_NK : NK ;
+fun snobbailla_VK : VK ;
+fun snobbailu_NK : NK ;
+fun snobi_NK : NK ;
+fun snobismi_NK : NK ;
+fun snobistinen_AK : AK ;
+--+ fun snobistisesti_AdvK : AdvK ;
+fun snobistisuus_NK : NK ;
+fun snooker_NK : NK ;
+fun snorkkeli_NK : NK ;
+fun so_AdvK : AdvK ;
+fun sodanvaara_NK : NK ;
+fun sodomia_NK : NK ;
+fun soeta_VK : VK ;
+fun sofista_NK : NK ;
+fun sofisti_NK : NK ;
+fun sofistiikka_NK : NK ;
+fun sofistikoitunut_NK : NK ;
+fun sofistinen_NK : NK ;
+fun softa_NK : NK ;
+fun soft_ice_NK : NK ;
+fun software_NK : NK ;
+fun sohaista_VK : VK ;
+fun sohia_VK : VK ;
+fun sohjo_NK : NK ;
+fun sohjoinen_NK : NK ;
+fun sohjoontua_VK : VK ;
+fun sohjoutua_VK : VK ;
+fun sohlata_VK : VK ;
+fun sohva_NK : NK ;
+fun sohvautua_VK : VK ;
+fun soida_VK : VK ;
+fun soidin_NK : NK ;
+fun soihtu_NK : NK ;
+fun soija_NK : NK ;
+fun soikea_NK : NK ;
+fun soikeus_NK : NK ;
+fun soikio_NK : NK ;
+fun soikko_NK : NK ;
+fun soilikki_NK : NK ;
+fun soimata_VK : VK ;
+fun soimaus_NK : NK ;
+fun soinen_NK : NK ;
+fun soinnahdus_NK : NK ;
+fun soinnahtaa_VK : VK ;
+fun soinnikas_AK : AK ;
+--+ fun soinnikkaasti_AdvK : AdvK ;
+fun soinnikkuus_NK : NK ;
+fun soinnillinen_AK : AK ;
+--+ fun soinnillisesti_AdvK : AdvK ;
+fun soinnillisuus_NK : NK ;
+fun soinniton_NK : NK ;
+fun soinnittomasti_AdvK : AdvK ;
+fun soinnittomuus_NK : NK ;
+fun soinnukas_AK : AK ;
+--+ fun soinnukkaasti_AdvK : AdvK ;
+fun soinnukkuus_NK : NK ;
+fun soinnullinen_AK : AK ;
+--+ fun soinnullisesti_AdvK : AdvK ;
+fun soinnullisuus_NK : NK ;
+fun soinnutella_VK : VK ;
+fun soinnuton_NK : NK ;
+fun soinnuttaa_VK : VK ;
+fun soinnutus_NK : NK ;
+fun sointi_NK : NK ;
+fun sointinen_NK : NK ;
+fun sointu_NK : NK ;
+fun sointua_VK : VK ;
+fun sointuinen_NK : NK ;
+fun sointuisa_NK : NK ;
+fun soiro_NK : NK ;
+fun soistaa_VK : VK ;
+fun soistua_VK : VK ;
+fun soistuma_NK : NK ;
+fun soisuus_NK : NK ;
+fun soitannollinen_NK : NK ;
+fun soitanta_NK : NK ;
+fun soitanto_NK : NK ;
+fun soitella_VK : VK ;
+fun soitin_NK : NK ;
+fun soitinnus_NK : NK ;
+fun soitintaa_VK : VK ;
+fun soittaa_VK : VK ;
+fun soittaja_NK : NK ;
+fun soittajisto_NK : NK ;
+fun soittelu_NK : NK ;
+fun soittimellinen_NK : NK ;
+fun soittimisto_NK : NK ;
+fun soitto_NK : NK ;
+fun sojolla_AdvK : AdvK ;
+fun sojollaan_AdvK : AdvK ;
+fun sojolle_AdvK : AdvK ;
+fun sojolleen_AdvK : AdvK ;
+fun sojoon_AdvK : AdvK ;
+fun sojossa_AdvK : AdvK ;
+fun sojottaa_VK : VK ;
+fun sokaista_VK : VK ;
+fun sokaistua_VK : VK ;
+fun sokea_AK : AK ;
+--+ fun sokeasti_AdvK : AdvK ;
+fun sokeentua_VK : VK ;
+fun sokeerata_VK : VK ;
+fun _okeerata_VK : VK ;
+fun sokellus_NK : NK ;
+fun sokeltaa_VK : VK ;
+fun sokeri_NK : NK ;
+fun sokerikko_NK : NK ;
+fun sokerinen_NK : NK ;
+fun sokeristua_VK : VK ;
+fun sokeriton_NK : NK ;
+fun sokeroida_VK : VK ;
+fun sokerointi_NK : NK ;
+fun sokeroittaa_VK : VK ;
+fun sokeroitua_VK : VK ;
+fun sokeus_NK : NK ;
+fun sokeuttaa_VK : VK ;
+fun sokeutua_VK : VK ;
+fun sokka_NK : NK ;
+fun sokkeli_NK : NK ;
+fun sokkelo_NK : NK ;
+fun sokkeloinen_NK : NK ;
+fun sokkeloisuus_NK : NK ;
+fun sokki_NK : NK ;
+fun _okki_NK : NK ;
+fun sokko_NK : NK ;
+fun sokkosilla_AdvK : AdvK ;
+fun sokkosille_AdvK : AdvK ;
+fun sola_NK : NK ;
+fun solaarinen_NK : NK ;
+fun solaario_NK : NK ;
+fun solahdus_NK : NK ;
+fun solahtaa_VK : VK ;
+fun solakka_NK : NK ;
+fun solakkuus_NK : NK ;
+fun solakoittaa_VK : VK ;
+fun solakoitua_VK : VK ;
+fun solariumi_NK : NK ;
+fun solauttaa_VK : VK ;
+fun solenoidi_NK : NK ;
+fun solidaarinen_AK : AK ;
+--+ fun solidaarisesti_AdvK : AdvK ;
+fun solidaarisuus_NK : NK ;
+fun solidariteetti_NK : NK ;
+fun solidi_NK : NK ;
+fun solidius_NK : NK ;
+fun solina_NK : NK ;
+fun solista_VK : VK ;
+fun solisti_NK : NK ;
+fun solistinen_NK : NK ;
+fun soljahtaa_VK : VK ;
+fun soljua_VK : VK ;
+fun soljuttaa_VK : VK ;
+fun solkata_VK : VK ;
+fun solkenaan_AdvK : AdvK ;
+fun solki_NK : NK ;
+fun solkinen_NK : NK ;
+fun solkkaus_NK : NK ;
+fun solkottaa_VK : VK ;
+fun solkotus_NK : NK ;
+fun solmeilla_VK : VK ;
+fun solmeilu_NK : NK ;
+fun solmia_VK : VK ;
+fun solminta_NK : NK ;
+fun solmio_NK : NK ;
+fun solmita_VK : VK ;
+fun solmiutua_VK : VK ;
+fun solmu_NK : NK ;
+fun solmuinen_NK : NK ;
+fun solmuke_NK : NK ;
+fun solmukki_NK : NK ;
+fun solmukohta_NK : NK ;
+fun solttu_NK : NK ;
+fun solu_NK : NK ;
+fun solua_VK : VK ;
+fun soluinen_NK : NK ;
+fun solukko_NK : NK ;
+fun solunjakautuminen_NK : NK ;
+fun solusitkos_NK : NK ;
+fun soluttaa_VK : VK ;
+fun soluttautua_VK : VK ;
+fun solutus_NK : NK ;
+fun soluutio_NK : NK ;
+fun solvata_VK : VK ;
+fun solvaus_NK : NK ;
+fun soma_AK : AK ;
+fun somaattinen_NK : NK ;
+fun somali_NK : NK ;
+--+ fun somasti_AdvK : AdvK ;
+fun somatisaatio_NK : NK ;
+fun somatisoida_VK : VK ;
+fun somatisointi_NK : NK ;
+fun sombrero_NK : NK ;
+fun somentaa_VK : VK ;
+fun somentua_VK : VK ;
+fun somerikko_NK : NK ;
+fun somero_NK : NK ;
+fun somistaa_VK : VK ;
+fun somistaja_NK : NK ;
+fun somistamo_NK : NK ;
+fun somistautua_VK : VK ;
+fun somiste_NK : NK ;
+fun somisteinen_NK : NK ;
+fun somistua_VK : VK ;
+fun somistus_NK : NK ;
+fun sommitella_VK : VK ;
+fun sommitelma_NK : NK ;
+fun sommittelu_NK : NK ;
+fun sompa_NK : NK ;
+fun sompailla_VK : VK ;
+fun sonaatti_NK : NK ;
+fun sonatiini_NK : NK ;
+fun sondeerata_VK : VK ;
+fun sondi_NK : NK ;
+fun sonetti_NK : NK ;
+fun sonni_NK : NK ;
+fun sonnustaa_VK : VK ;
+fun sonnustautua_VK : VK ;
+fun sonnustus_NK : NK ;
+fun sonorinen_NK : NK ;
+fun sonta_NK : NK ;
+fun sontainen_NK : NK ;
+fun sontia_VK : VK ;
+fun sontiainen_NK : NK ;
+fun sontikka_NK : NK ;
+fun sontsa_NK : NK ;
+fun sooda_NK : NK ;
+fun soolo_NK : NK ;
+fun sooloilija_NK : NK ;
+fun sooloilla_VK : VK ;
+fun sooloilu_NK : NK ;
+fun sooma_NK : NK ;
+fun sooni_NK : NK ;
+fun soopa_AdvK : AdvK ;
+fun soopeli_NK : NK ;
+fun soosi_NK : NK ;
+fun sopa_NK : NK ;
+fun soperrella_VK : VK ;
+fun soperrus_NK : NK ;
+fun sopertaa_VK : VK ;
+fun sopertelu_NK : NK ;
+fun sopeuma_NK : NK ;
+fun sopeuttaa_VK : VK ;
+fun sopeutua_VK : VK ;
+fun sopeutuja_NK : NK ;
+fun sopeutuma_NK : NK ;
+fun sopeutumaton_NK : NK ;
+fun sopeutumattomuus_NK : NK ;
+fun sopeutumislevitta'ytyminen_NK : NK ;
+fun sopeutus_NK : NK ;
+fun sopeutuva_NK : NK ;
+fun sopeutuvainen_NK : NK ;
+fun sopeutuvaisuus_NK : NK ;
+fun sopeutuvuus_NK : NK ;
+fun sopia_VK : VK ;
+fun sopimaton_NK : NK ;
+fun sopimattomasti_AdvK : AdvK ;
+fun sopimattomuus_NK : NK ;
+fun sopimuksellinen_NK : NK ;
+fun sopimukseton_NK : NK ;
+fun sopimus_NK : NK ;
+fun sopimusaika_NK : NK ;
+fun sopiva_AK : AK ;
+fun sopivaisuus_NK : NK ;
+--+ fun sopivasti_AdvK : AdvK ;
+fun sopivuus_NK : NK ;
+fun sopottaa_VK : VK ;
+fun soppa_NK : NK ;
+fun soppi_NK : NK ;
+fun soppinen_NK : NK ;
+fun sopraano_NK : NK ;
+fun sopu_NK : NK ;
+fun sopuilla_VK : VK ;
+fun sopuilu_NK : NK ;
+fun sopuisa_AK : AK ;
+--+ fun sopuisasti_AdvK : AdvK ;
+fun sopuisuus_NK : NK ;
+fun sopukka_NK : NK ;
+fun sopuli_NK : NK ;
+fun sopuloida_VK : VK ;
+fun sopulointi_NK : NK ;
+--+ fun sopusointuisesti_AdvK : AdvK ;
+fun sopusointuisuus_NK : NK ;
+--+ fun sopusuhtaisesti_AdvK : AdvK ;
+fun sora_NK : NK ;
+fun sorahdella_VK : VK ;
+fun sorahdus_NK : NK ;
+fun sorahduttaa_VK : VK ;
+fun sorahtaa_VK : VK ;
+fun sorainen_NK : NK ;
+fun sora_r_AdvK : AdvK ;
+fun sorastaa_VK : VK ;
+fun sorastus_NK : NK ;
+fun sorata_VK : VK ;
+fun soraus_NK : NK ;
+fun sorauttaa_1_VK : VK ;
+fun sorauttaa_2_VK : VK ;
+fun sorautua_VK : VK ;
+fun sorbetti_NK : NK ;
+fun sorbitoli_NK : NK ;
+fun sordiino_NK : NK ;
+fun sorea_AK : AK ;
+--+ fun soreasti_AdvK : AdvK ;
+fun soreus_NK : NK ;
+fun sori_AdvK : AdvK ;
+fun sorina_NK : NK ;
+fun sorista_VK : VK ;
+fun sorittaa_VK : VK ;
+fun soritus_NK : NK ;
+fun sorja_NK : NK ;
+fun sorjeta_VK : VK ;
+fun sorjistua_VK : VK ;
+fun sorkka_NK : NK ;
+fun sorkkia_VK : VK ;
+fun sormeilla_VK : VK ;
+fun sormeilu_NK : NK ;
+fun sormellinen_NK : NK ;
+fun sormi_NK : NK ;
+fun sormijatkoinen_NK : NK ;
+fun sormikas_NK : NK ;
+fun sormilehdykka'inen_NK : NK ;
+fun sorminen_NK : NK ;
+fun sormio_NK : NK ;
+fun sormitus_NK : NK ;
+fun sormus_NK : NK ;
+fun sormustimellinen_NK : NK ;
+fun sormustin_NK : NK ;
+fun soroptimisti_NK : NK ;
+fun sorry_AdvK : AdvK ;
+fun sorsa_NK : NK ;
+fun sorsastaa_VK : VK ;
+fun sorsastus_NK : NK ;
+fun sorsetti_NK : NK ;
+fun sorsia_VK : VK ;
+fun sorsimo_NK : NK ;
+fun sorsinta_NK : NK ;
+fun sortaa_VK : VK ;
+fun sortaja_NK : NK ;
+fun sortimentti_NK : NK ;
+fun sorto_NK : NK ;
+fun sortsit_NK : NK ;
+fun sortti_NK : NK ;
+fun sorttinen_NK : NK ;
+fun sortua_VK : VK ;
+fun sortuma_NK : NK ;
+fun sorva_NK : NK ;
+fun sorvaaja_NK : NK ;
+fun sorvaamo_NK : NK ;
+fun sorvailla_VK : VK ;
+fun sorvailu_NK : NK ;
+fun sorvari_NK : NK ;
+fun sorvata_VK : VK ;
+fun sorvaus_NK : NK ;
+fun sorvi_NK : NK ;
+fun sose_NK : NK ;
+fun soseuttaa_VK : VK ;
+fun soseutua_VK : VK ;
+fun sosiaalinen_AK : AK ;
+--+ fun sosiaalisesti_AdvK : AdvK ;
+fun sosiaalistaa_VK : VK ;
+fun sosiaalistua_VK : VK ;
+fun sosiaalisuus_NK : NK ;
+fun sosialisaatio_NK : NK ;
+fun sosialismi_NK : NK ;
+fun sosialisoida_VK : VK ;
+fun sosialisointi_NK : NK ;
+fun sosialisti_NK : NK ;
+fun sosialistinen_NK : NK ;
+fun sosieteetti_NK : NK ;
+fun sosiologi_NK : NK ;
+fun sosiologia_NK : NK ;
+fun sosiologinen_NK : NK ;
+fun sosionomi_NK : NK ;
+fun sossu_NK : NK ;
+fun sota_NK : NK ;
+fun sota_aika_NK : NK ;
+fun sotainen_AK : AK ;
+fun sotaisa_AK : AK ;
+--+ fun sotaisasti_AdvK : AdvK ;
+--+ fun sotaisesti_AdvK : AdvK ;
+fun sotaisuus_NK : NK ;
+fun sotajalalla_AdvK : AdvK ;
+fun sotajalalle_AdvK : AdvK ;
+fun sotapolulla_AdvK : AdvK ;
+fun sotapolulle_AdvK : AdvK ;
+fun sotasilla_AdvK : AdvK ;
+fun sotasille_AdvK : AdvK ;
+fun sotata_VK : VK ;
+fun sotia_VK : VK ;
+fun sotiisi_NK : NK ;
+fun sotija_NK : NK ;
+fun sotilaallinen_AK : AK ;
+--+ fun sotilaallisesti_AdvK : AdvK ;
+fun sotilaallistaa_VK : VK ;
+fun sotilaallisuus_NK : NK ;
+fun sotilas_NK : NK ;
+fun sotka_NK : NK ;
+fun sotkea_VK : VK ;
+fun sotkeentua_VK : VK ;
+fun sotkeuksiin_AdvK : AdvK ;
+fun sotkeuksissa_AdvK : AdvK ;
+fun sotkeuksista_AdvK : AdvK ;
+fun sotkeuma_NK : NK ;
+fun sotkeutua_VK : VK ;
+fun sotkeutuma_NK : NK ;
+fun sotkoksiin_AdvK : AdvK ;
+fun sotkoksissa_AdvK : AdvK ;
+fun sotkoksista_AdvK : AdvK ;
+fun sotkos_NK : NK ;
+fun sotku_NK : NK ;
+fun sotkuinen_AK : AK ;
+--+ fun sotkuisesti_AdvK : AdvK ;
+fun sotkuisuus_NK : NK ;
+fun sotkuksiin_AdvK : AdvK ;
+fun sotkuksissa_AdvK : AdvK ;
+fun sotkuksista_AdvK : AdvK ;
+fun sotkussa_AdvK : AdvK ;
+fun sotkusta_AdvK : AdvK ;
+fun sotkuun_AdvK : AdvK ;
+fun sottaantua_VK : VK ;
+fun sottainen_NK : NK ;
+fun sottiisi_NK : NK ;
+fun sotu_NK : NK ;
+fun soturi_NK : NK ;
+fun soudattaa_VK : VK ;
+fun soudella_VK : VK ;
+fun soukennus_NK : NK ;
+fun soukentaa_VK : VK ;
+fun soukentua_VK : VK ;
+fun souketa_VK : VK ;
+fun soukistaa_VK : VK ;
+fun soukistua_VK : VK ;
+fun soukka_NK : NK ;
+fun soul_NK : NK ;
+fun soundi_NK : NK ;
+fun soutaa_VK : VK ;
+fun soutaja_NK : NK ;
+fun soutelu_NK : NK ;
+fun soutu_NK : NK ;
+fun soutuinen_NK : NK ;
+fun souvi_NK : NK ;
+fun soveliaisuus_NK : NK ;
+fun sovelias_NK : NK ;
+fun sovellus_NK : NK ;
+fun sovellutus_NK : NK ;
+fun soveltaa_VK : VK ;
+fun soveltua_VK : VK ;
+fun soveltuvuus_NK : NK ;
+fun sovhoosi_NK : NK ;
+fun sovinismi_NK : NK ;
+fun sovinisti_NK : NK ;
+fun sovinistinen_AK : AK ;
+--+ fun sovinistisesti_AdvK : AdvK ;
+fun sovinistisuus_NK : NK ;
+fun sovinnainen_AK : AK ;
+--+ fun sovinnaisesti_AdvK : AdvK ;
+fun sovinnaisuus_NK : NK ;
+fun sovinnolla_AdvK : AdvK ;
+fun sovinnollinen_AK : AK ;
+--+ fun sovinnollisesti_AdvK : AdvK ;
+fun sovinnollisuus_NK : NK ;
+fun sovinto_NK : NK ;
+fun sovite_NK : NK ;
+fun sovitella_VK : VK ;
+fun sovitin_NK : NK ;
+fun sovittaa_VK : VK ;
+fun sovittaja_NK : NK ;
+fun sovittamaton_NK : NK ;
+fun sovittautua_VK : VK ;
+fun sovitteinen_NK : NK ;
+fun sovitteleva_AK : AK ;
+--+ fun sovittelevasti_AdvK : AdvK ;
+fun sovittelija_NK : NK ;
+fun sovittelu_NK : NK ;
+fun sovitus_NK : NK ;
+fun spaatteli_NK : NK ;
+fun spagaatti_NK : NK ;
+fun spagetti_NK : NK ;
+fun spakaatti_NK : NK ;
+fun spakkeli_NK : NK ;
+fun spaklata_VK : VK ;
+fun spanieli_NK : NK ;
+fun sparraaja_NK : NK ;
+fun sparrata_VK : VK ;
+fun sparraus_NK : NK ;
+fun spartalainen_NK : NK ;
+fun spasmi_NK : NK ;
+fun spastikko_NK : NK ;
+fun spastinen_NK : NK ;
+fun spastisuus_NK : NK ;
+fun spatiaalinen_AK : AK ;
+--+ fun spatiaalisesti_AdvK : AdvK ;
+fun spatiaalisuus_NK : NK ;
+fun speedway_NK : NK ;
+fun speksi_1_NK : NK ;
+fun speksi_2_NK : NK ;
+fun spektaakkeli_NK : NK ;
+fun spektri_NK : NK ;
+fun spektroliitti_NK : NK ;
+fun spektrometri_NK : NK ;
+fun spektroskopia_NK : NK ;
+fun spekulaatio_NK : NK ;
+fun spekulantti_NK : NK ;
+fun spekulatiivinen_NK : NK ;
+fun spekuloida_VK : VK ;
+fun spekulointi_NK : NK ;
+fun speltti_NK : NK ;
+fun sperma_NK : NK ;
+fun spermisidi_NK : NK ;
+fun spesiaalinen_NK : NK ;
+fun spesiaalistaa_VK : VK ;
+fun spesiaalistua_VK : VK ;
+fun spesialisoida_VK : VK ;
+fun spesialisointi_NK : NK ;
+fun spesialisoitua_VK : VK ;
+fun spesialisti_NK : NK ;
+fun spesialiteetti_NK : NK ;
+fun spesies_NK : NK ;
+fun spesifikaatio_NK : NK ;
+fun spesifinen_NK : NK ;
+fun spesifioida_VK : VK ;
+fun spesifiointi_NK : NK ;
+fun spiccato_NK : NK ;
+fun spiikata_VK : VK ;
+fun spiikkaus_NK : NK ;
+fun spiikkeri_NK : NK ;
+fun spiikki_NK : NK ;
+fun spinaakkeri_NK : NK ;
+fun spinaalinen_NK : NK ;
+fun spinetti_NK : NK ;
+fun spinnata_VK : VK ;
+fun spinnaus_NK : NK ;
+fun spiraali_NK : NK ;
+fun spiritismi_NK : NK ;
+fun spiritisti_NK : NK ;
+fun spiritistinen_NK : NK ;
+fun spiritualismi_NK : NK ;
+fun spiritualisti_NK : NK ;
+fun spiritualistinen_NK : NK ;
+fun spirituelli_NK : NK ;
+fun spiritus_NK : NK ;
+fun spitaali_NK : NK ;
+fun spitaalinen_NK : NK ;
+fun splitata_VK : VK ;
+fun splittaus_NK : NK ;
+fun spoileri_NK : NK ;
+fun spondee_NK : NK ;
+fun sponsori_NK : NK ;
+fun sponsoroida_VK : VK ;
+fun sponsorointi_NK : NK ;
+fun sponssata_VK : VK ;
+fun sponssaus_NK : NK ;
+fun spontaani_AK : AK ;
+--+ fun spontaanisti_AdvK : AdvK ;
+fun spontaanisuus_NK : NK ;
+fun spontaanius_NK : NK ;
+fun spora_NK : NK ;
+fun sporadinen_AK : AK ;
+--+ fun sporadisesti_AdvK : AdvK ;
+fun sporadisuus_NK : NK ;
+fun sportteli_NK : NK ;
+fun sportti_NK : NK ;
+fun sporttinen_AK : AK ;
+--+ fun sporttisesti_AdvK : AdvK ;
+fun sporttisuus_NK : NK ;
+fun spotti_NK : NK ;
+fun spray_NK : NK ;
+fun spreijata_VK : VK ;
+fun sprii_NK : NK ;
+fun sprinkleri_NK : NK ;
+fun sprintteri_NK : NK ;
+fun spurgu_NK : NK ;
+fun spurtata_VK : VK ;
+fun spurtti_NK : NK ;
+fun squash_NK : NK ;
+fun squash_halli_NK : NK ;
+fun staaki_NK : NK ;
+fun staalo_NK : NK ;
+fun staattinen_AK : AK ;
+--+ fun staattisesti_AdvK : AdvK ;
+fun staattisuus_NK : NK ;
+fun staattori_NK : NK ;
+fun stabiili_NK : NK ;
+fun stabiilius_NK : NK ;
+fun stabilisoida_VK : VK ;
+fun stabiliteetti_NK : NK ;
+fun stabiloida_VK : VK ;
+fun stabilointi_NK : NK ;
+fun stadi_NK : NK ;
+fun stadion_NK : NK ;
+fun stafylokokki_NK : NK ;
+fun stagflaatio_NK : NK ;
+fun stagnaatio_NK : NK ;
+fun staili_NK : NK ;
+fun stalinismi_NK : NK ;
+fun stalinisti_NK : NK ;
+fun stalinistinen_NK : NK ;
+fun standaari_NK : NK ;
+fun standardi_NK : NK ;
+fun standardikoko_NK : NK ;
+fun standardisoida_VK : VK ;
+fun standardisoitua_VK : VK ;
+fun standardoida_VK : VK ;
+fun standardointi_NK : NK ;
+fun standardoitua_VK : VK ;
+fun standartti_NK : NK ;
+fun stannioli_NK : NK ;
+fun stanssata_VK : VK ;
+fun stanssi_NK : NK ;
+fun startata_VK : VK ;
+fun starttaus_NK : NK ;
+fun startti_NK : NK ;
+fun statiikka_NK : NK ;
+fun statiivi_NK : NK ;
+fun statisti_NK : NK ;
+fun statistiikka_NK : NK ;
+fun statistinen_NK : NK ;
+fun status_NK : NK ;
+fun statuutti_NK : NK ;
+fun steariini_NK : NK ;
+fun stemma_NK : NK ;
+fun stemmata_VK : VK ;
+fun stepata_VK : VK ;
+fun steppaaja_NK : NK ;
+fun steppaus_NK : NK ;
+fun stepperi_NK : NK ;
+fun steppi_1_NK : NK ;
+fun steppi_2_NK : NK ;
+fun stereo_NK : NK ;
+fun stereofonia_NK : NK ;
+fun stereofoninen_NK : NK ;
+fun stereoskooppi_NK : NK ;
+fun stereoskooppinen_NK : NK ;
+fun stereotypia_NK : NK ;
+--+ fun stereotyyppisesti_AdvK : AdvK ;
+fun stereotyyppisyys_NK : NK ;
+fun steriili_AK : AK ;
+--+ fun steriilisti_AdvK : AdvK ;
+fun steriilisyys_NK : NK ;
+fun steriiliys_NK : NK ;
+fun sterilaattori_NK : NK ;
+fun sterilisaatio_NK : NK ;
+fun sterilisaattori_NK : NK ;
+fun sterilisoida_VK : VK ;
+fun sterilisointi_NK : NK ;
+fun steriliteetti_NK : NK ;
+fun steriloida_VK : VK ;
+fun sterilointi_NK : NK ;
+fun steroidi_NK : NK ;
+fun stetoskooppi_NK : NK ;
+fun stidi_NK : NK ;
+fun stigma_NK : NK ;
+fun stiiknafuulia_NK : NK ;
+fun stikki_NK : NK ;
+fun stiletti_NK : NK ;
+fun stilisoida_VK : VK ;
+fun stilisointi_NK : NK ;
+fun stilisti_NK : NK ;
+fun stilistiikka_NK : NK ;
+fun stilistinen_NK : NK ;
+fun still_drink_NK : NK ;
+fun stilleben_NK : NK ;
+fun stimulaatio_NK : NK ;
+fun stimulanssi_NK : NK ;
+fun stimulantti_NK : NK ;
+fun stimuloida_VK : VK ;
+fun stimulointi_NK : NK ;
+fun stipendi_NK : NK ;
+fun stipendiaatti_NK : NK ;
+fun stoalainen_AK : AK ;
+--+ fun stoalaisesti_AdvK : AdvK ;
+fun stoalaisuus_NK : NK ;
+fun stoola_NK : NK ;
+fun stoori_NK : NK ;
+fun stop_NK : NK ;
+fun stoppi_NK : NK ;
+fun stout_NK : NK ;
+fun stradivarius_NK : NK ;
+fun strassi_NK : NK ;
+fun strategi_NK : NK ;
+fun strategia_NK : NK ;
+fun strateginen_AK : AK ;
+--+ fun strategisesti_AdvK : AdvK ;
+fun stratosfa'a'ri_NK : NK ;
+fun streikata_VK : VK ;
+fun streptokokki_NK : NK ;
+fun stressaantua_VK : VK ;
+fun stressata_VK : VK ;
+fun stressautua_VK : VK ;
+fun stressi_NK : NK ;
+fun stretching_NK : NK ;
+fun stripata_VK : VK ;
+fun strippari_NK : NK ;
+fun striptease_NK : NK ;
+fun stroganov_NK : NK ;
+fun strontium_NK : NK ;
+fun strukturaalinen_NK : NK ;
+fun strukturalismi_NK : NK ;
+fun strukturalisti_NK : NK ;
+fun strukturalistinen_AK : AK ;
+--+ fun strukturalistisesti_AdvK : AdvK ;
+fun strukturoida_VK : VK ;
+fun strukturointi_NK : NK ;
+fun struktuuri_NK : NK ;
+fun strutsi_NK : NK ;
+fun struudeli_NK : NK ;
+fun struuma_NK : NK ;
+fun strykniini_NK : NK ;
+fun stro'sseli_NK : NK ;
+fun studio_NK : NK ;
+fun stuertti_NK : NK ;
+fun stukki_NK : NK ;
+fun stukko_NK : NK ;
+fun stuntman_NK : NK ;
+fun suahili_NK : NK ;
+fun subarktinen_NK : NK ;
+fun subjekti_NK : NK ;
+fun subjektiivinen_AK : AK ;
+--+ fun subjektiivisesti_AdvK : AdvK ;
+fun subjektiivisuus_NK : NK ;
+fun subjektivismi_NK : NK ;
+fun subjektivistinen_NK : NK ;
+fun sublimaatio_NK : NK ;
+fun sublimoida_VK : VK ;
+fun sublimointi_NK : NK ;
+fun sublimoitua_VK : VK ;
+fun subretti_NK : NK ;
+fun subsidiariteetti_NK : NK ;
+fun substanssi_NK : NK ;
+fun substantiivi_NK : NK ;
+fun substantiivinen_NK : NK ;
+fun substituoida_VK : VK ;
+fun substituoitua_VK : VK ;
+fun substituutio_NK : NK ;
+fun substituutti_NK : NK ;
+fun subtrooppinen_NK : NK ;
+fun subventio_NK : NK ;
+fun subventoida_VK : VK ;
+fun subventointi_NK : NK ;
+fun sueta_VK : VK ;
+fun suffiksi_NK : NK ;
+fun suffragetti_NK : NK ;
+fun suflee_NK : NK ;
+fun suggeroida_VK : VK ;
+fun suggeroitavuus_NK : NK ;
+fun suggeroitua_VK : VK ;
+fun suggestiivinen_AK : AK ;
+--+ fun suggestiivisesti_AdvK : AdvK ;
+fun suggestiivisuus_NK : NK ;
+fun suggestio_NK : NK ;
+fun suggestopedia_NK : NK ;
+fun suggestopedinen_NK : NK ;
+fun suhahdella_VK : VK ;
+fun suhahdus_NK : NK ;
+fun suhahtaa_VK : VK ;
+fun suhahtelu_NK : NK ;
+fun suhailla_VK : VK ;
+fun suhari_NK : NK ;
+fun suhata_VK : VK ;
+fun suhaus_1_NK : NK ;
+fun suhaus_2_NK : NK ;
+fun suhauttaa_VK : VK ;
+fun suhdanne_NK : NK ;
+fun suhdaton_NK : NK ;
+fun suhde_NK : NK ;
+fun suhdittaa_VK : VK ;
+fun suhdittua_VK : VK ;
+fun suhditus_NK : NK ;
+fun suhina_NK : NK ;
+fun suhista_VK : VK ;
+fun suht_AdvK : AdvK ;
+fun suhta_NK : NK ;
+fun suhtainen_NK : NK ;
+fun suhtaisuus_NK : NK ;
+fun suhtauttaa_VK : VK ;
+fun suhtautua_VK : VK ;
+fun suhteellinen_AK : AK ;
+--+ fun suhteellisesti_AdvK : AdvK ;
+fun suhteellistaa_VK : VK ;
+fun suhteellisuus_NK : NK ;
+fun suhteen_AdvK : AdvK ;
+fun suhteeton_NK : NK ;
+fun suhteettomasti_AdvK : AdvK ;
+fun suhteettomuus_NK : NK ;
+fun suhteinen_NK : NK ;
+fun suhteittaa_VK : VK ;
+fun suhteuttaa_VK : VK ;
+fun suhteutua_VK : VK ;
+fun suhtkoht_AdvK : AdvK ;
+fun suihkari_NK : NK ;
+fun suihkata_VK : VK ;
+fun suihkaus_NK : NK ;
+fun suihke_NK : NK ;
+fun suihkia_VK : VK ;
+fun suihku_NK : NK ;
+fun suihkuta_VK : VK ;
+fun suihkute_NK : NK ;
+fun suihkutin_NK : NK ;
+fun suihkuttaa_VK : VK ;
+fun suihkutus_NK : NK ;
+fun suikale_NK : NK ;
+fun suikaloida_VK : VK ;
+fun suikalointi_NK : NK ;
+fun suikata_VK : VK ;
+fun suikea_NK : NK ;
+fun suikerrella_VK : VK ;
+fun suikertaa_VK : VK ;
+fun suikka_NK : NK ;
+fun suikula_NK : NK ;
+fun suikulainen_NK : NK ;
+fun suinen_NK : NK ;
+fun suinkaan_AdvK : AdvK ;
+fun suinkin_AdvK : AdvK ;
+fun suin_pa'in_AdvK : AdvK ;
+fun suipentaa_VK : VK ;
+fun suipentua_VK : VK ;
+fun suipeta_VK : VK ;
+fun suipistaa_VK : VK ;
+fun suipistella_VK : VK ;
+fun suipistua_VK : VK ;
+fun suippo_NK : NK ;
+fun suippu_NK : NK ;
+fun suisidaalinen_NK : NK ;
+fun suistaa_VK : VK ;
+fun suisto_NK : NK ;
+fun suistua_VK : VK ;
+fun suitsait_AdvK : AdvK ;
+fun suitsea_VK : VK ;
+--? fun suitset_NK : NK ;
+fun suitsia_VK : VK ;
+fun suitsittaa_VK : VK ;
+fun suitsuke_NK : NK ;
+fun suitsuta_VK : VK ;
+fun suitsute_NK : NK ;
+fun suitsuttaa_VK : VK ;
+fun suitsutus_NK : NK ;
+fun suivaantua_VK : VK ;
+fun suivautua_VK : VK ;
+fun sujahdella_VK : VK ;
+fun sujahdus_NK : NK ;
+fun sujahtaa_VK : VK ;
+fun sujakka_NK : NK ;
+fun sujaus_NK : NK ;
+fun sujautella_VK : VK ;
+fun sujauttaa_VK : VK ;
+fun sujua_VK : VK ;
+fun sujut_AdvK : AdvK ;
+fun sujutella_VK : VK ;
+fun sujuttaa_VK : VK ;
+fun sujuttautua_VK : VK ;
+fun sujuva_AK : AK ;
+--+ fun sujuvasti_AdvK : AdvK ;
+fun sujuvoittaa_VK : VK ;
+fun sujuvuus_NK : NK ;
+fun suka_NK : NK ;
+fun sukaatti_NK : NK ;
+fun sukainen_NK : NK ;
+fun sukaista_VK : VK ;
+fun sukanen_NK : NK ;
+fun sukellella_VK : VK ;
+fun sukelluksiin_AdvK : AdvK ;
+fun sukelluksissa_AdvK : AdvK ;
+fun sukelluksista_AdvK : AdvK ;
+fun sukellus_NK : NK ;
+fun sukelluttaa_VK : VK ;
+fun sukeltaa_VK : VK ;
+fun sukeltaja_NK : NK ;
+fun sukeltautua_VK : VK ;
+fun sukeutua_VK : VK ;
+fun sukia_VK : VK ;
+fun sukijaki_NK : NK ;
+fun sukka_NK : NK ;
+fun sukkaatti_NK : NK ;
+fun sukkajalassa_AdvK : AdvK ;
+fun sukkasillaan_AdvK : AdvK ;
+fun sukkasilleen_AdvK : AdvK ;
+fun sukkela_AK : AK ;
+fun sukkelaan_AdvK : AdvK ;
+--+ fun sukkelasti_AdvK : AdvK ;
+fun sukkeluus_NK : NK ;
+fun sukkessio_NK : NK ;
+--? fun sukkikset_NK : NK ;
+fun sukkula_NK : NK ;
+fun sukkuloida_VK : VK ;
+fun sukkulointi_NK : NK ;
+fun suklaa_NK : NK ;
+fun suklaakuorrutteinen_NK : NK ;
+fun suksee_NK : NK ;
+fun suksessio_NK : NK ;
+fun suksi_NK : NK ;
+fun suksia_VK : VK ;
+fun suku_NK : NK ;
+fun sukuinen_NK : NK ;
+fun sukuisin_AdvK : AdvK ;
+fun sukuisuus_NK : NK ;
+fun sukujuuri_NK : NK ;
+fun sukulaistua_VK : VK ;
+fun sukulaisuus_NK : NK ;
+fun sukuloida_VK : VK ;
+fun sukupuolenma'a'ra'ytyminen_NK : NK ;
+fun sukupuoleton_NK : NK ;
+--+ fun sukupuolisesti_AdvK : AdvK ;
+fun sukupuolisuus_NK : NK ;
+fun sukupuutto_NK : NK ;
+fun sukurutsa_NK : NK ;
+fun sukurutsainen_NK : NK ;
+fun sukurutsaus_NK : NK ;
+fun sula_NK : NK ;
+fun sulaa_VK : VK ;
+fun sulake_NK : NK ;
+fun sulate_NK : NK ;
+fun sulatella_VK : VK ;
+fun sulattaa_VK : VK ;
+fun sulattamo_NK : NK ;
+fun sulatteinen_NK : NK ;
+fun sulattimo_NK : NK ;
+fun sulatto_NK : NK ;
+fun sulatus_NK : NK ;
+fun sulauma_NK : NK ;
+fun sulauttaa_VK : VK ;
+fun sulautua_VK : VK ;
+fun sulautuma_NK : NK ;
+fun sulava_AK : AK ;
+--+ fun sulavasti_AdvK : AdvK ;
+fun sulavuus_NK : NK ;
+fun sulfa_NK : NK ;
+fun sulfaatti_NK : NK ;
+fun sulfidi_NK : NK ;
+fun sulfiitti_NK : NK ;
+fun sulfonamidi_NK : NK ;
+fun sulhanen_NK : NK ;
+fun sulho_NK : NK ;
+fun sulittaa_VK : VK ;
+fun sulitus_NK : NK ;
+fun sulje_NK : NK ;
+fun suljin_NK : NK ;
+fun sulka_NK : NK ;
+fun sulkainen_NK : NK ;
+fun sulkava_NK : NK ;
+fun sulkea_VK : VK ;
+fun sulkeinen_NK : NK ;
+fun sulkemisaika_NK : NK ;
+fun sulkeuksiin_AdvK : AdvK ;
+fun sulkeuksissa_AdvK : AdvK ;
+fun sulkeuma_NK : NK ;
+fun sulkeutua_VK : VK ;
+fun sulkeutuma_NK : NK ;
+fun sulkeutuneisuus_NK : NK ;
+fun sulkeutunut_NK : NK ;
+fun sulkia_VK : VK ;
+fun sulkija_NK : NK ;
+fun sulku_NK : NK ;
+fun sulloa_VK : VK ;
+fun sullonta_NK : NK ;
+fun sulloutua_VK : VK ;
+fun sulo_AK : AK ;
+fun suloinen_AK : AK ;
+fun suloisa_NK : NK ;
+--+ fun suloisesti_AdvK : AdvK ;
+fun suloisuus_NK : NK ;
+fun sulokas_AK : AK ;
+--+ fun sulokkaasti_AdvK : AdvK ;
+fun sulokkuus_NK : NK ;
+fun sulostaa_VK : VK ;
+--+ fun sulosti_AdvK : AdvK ;
+fun sulostuttaa_VK : VK ;
+fun sulotar_NK : NK ;
+fun suloton_NK : NK ;
+fun sulottomuus_NK : NK ;
+fun sulous_NK : NK ;
+fun sulppu_NK : NK ;
+fun sulputtaa_VK : VK ;
+fun sulputus_NK : NK ;
+fun sultsina_NK : NK ;
+fun sulttaani_NK : NK ;
+fun sulute_NK : NK ;
+fun suluttaa_VK : VK ;
+fun sulutus_NK : NK ;
+fun suma_NK : NK ;
+fun sumautua_VK : VK ;
+fun sumea_NK : NK ;
+fun sumeilematon_NK : NK ;
+fun sumeilematta_AdvK : AdvK ;
+fun sumeilla_VK : VK ;
+fun sumentaa_VK : VK ;
+fun sumentua_VK : VK ;
+fun sumeri_NK : NK ;
+fun sumeta_VK : VK ;
+fun sumeus_NK : NK ;
+fun summa_NK : NK ;
+fun summaarinen_AK : AK ;
+--+ fun summaarisesti_AdvK : AdvK ;
+fun summaarisuus_NK : NK ;
+fun summainen_NK : NK ;
+fun summamutikassa_AdvK : AdvK ;
+fun summanmutikassa_AdvK : AdvK ;
+fun summassa_AdvK : AdvK ;
+fun summata_VK : VK ;
+fun summatiivinen_NK : NK ;
+fun summaton_NK : NK ;
+fun summattomasti_AdvK : AdvK ;
+fun summattomuus_NK : NK ;
+fun summaus_NK : NK ;
+fun summautua_VK : VK ;
+fun summeerata_VK : VK ;
+fun summeri_NK : NK ;
+fun summittain_AdvK : AdvK ;
+fun summittainen_AK : AK ;
+--+ fun summittaisesti_AdvK : AdvK ;
+fun summittaisuus_NK : NK ;
+fun sumo_NK : NK ;
+fun sumplata_VK : VK ;
+fun sumplaus_NK : NK ;
+fun sumplia_VK : VK ;
+fun sumppi_NK : NK ;
+fun sumppu_NK : NK ;
+fun sumppuuntua_VK : VK ;
+fun sumputtaa_VK : VK ;
+fun sumputus_NK : NK ;
+fun sumu_NK : NK ;
+fun sumuinen_NK : NK ;
+fun sumuta_VK : VK ;
+fun sumute_NK : NK ;
+fun sumutin_NK : NK ;
+fun sumuttaa_VK : VK ;
+fun sumuttua_VK : VK ;
+fun sumutus_NK : NK ;
+fun sumuuntua_VK : VK ;
+fun sun_AdvK : AdvK ;
+fun sunna_NK : NK ;
+fun sunnalaisuus_NK : NK ;
+fun sunni_NK : NK ;
+fun sunnuntai_NK : NK ;
+fun sunnuntainen_NK : NK ;
+fun sunnuntaisin_AdvK : AdvK ;
+fun suntio_NK : NK ;
+fun suntis_NK : NK ;
+fun suntti_NK : NK ;
+fun suo_NK : NK ;
+fun suoda_VK : VK ;
+fun suodatin_NK : NK ;
+fun suodattaa_VK : VK ;
+fun suodattua_VK : VK ;
+fun suodatus_NK : NK ;
+fun suodin_NK : NK ;
+fun suodos_NK : NK ;
+fun suoja_1_NK : NK ;
+fun suoja_2_NK : NK ;
+fun suoja_3_NK : NK ;
+fun suoja_aika_NK : NK ;
+fun suojaamaton_NK : NK ;
+fun suojaeristetty_NK : NK ;
+fun suojain_NK : NK ;
+fun suojainen_1_NK : NK ;
+fun suojainen_2_NK : NK ;
+fun suojaisa_NK : NK ;
+fun suojakerroin_NK : NK ;
+fun suojata_VK : VK ;
+fun suojaton_NK : NK ;
+fun suojatti_NK : NK ;
+fun suojaus_NK : NK ;
+fun suojautua_VK : VK ;
+fun suojelija_NK : NK ;
+fun suojella_VK : VK ;
+fun suojelu_NK : NK ;
+fun suojelus_NK : NK ;
+fun suojus_NK : NK ;
+fun suola_NK : NK ;
+fun suolaantua_VK : VK ;
+fun suolaisuus_NK : NK ;
+fun suolata_VK : VK ;
+fun suolaton_NK : NK ;
+fun suolaus_NK : NK ;
+fun suolautua_VK : VK ;
+fun suoli_NK : NK ;
+fun suolinkainen_NK : NK ;
+fun suolistaa_VK : VK ;
+fun suolisto_NK : NK ;
+fun suoltaa_VK : VK ;
+fun suoltua_VK : VK ;
+fun suomalainen_AK : AK ;
+--+ fun suomalaisesti_AdvK : AdvK ;
+fun suomalaisittain_AdvK : AdvK ;
+fun suomalaistaa_VK : VK ;
+fun suomalaistua_VK : VK ;
+fun suomalaistuttaa_VK : VK ;
+fun suomalaisuus_NK : NK ;
+fun suomennos_NK : NK ;
+fun suomennus_NK : NK ;
+fun suomentaa_VK : VK ;
+fun suomentaja_NK : NK ;
+fun suomentua_VK : VK ;
+fun suomettaa_VK : VK ;
+fun suomettua_VK : VK ;
+fun suomi_NK : NK ;
+fun suomia_VK : VK ;
+fun suomu_NK : NK ;
+fun suomuinen_NK : NK ;
+fun suomus_NK : NK ;
+fun suomustaa_VK : VK ;
+fun suomustin_NK : NK ;
+fun suomustus_NK : NK ;
+fun suonekas_NK : NK ;
+fun suonenveto_NK : NK ;
+fun suoni_NK : NK ;
+fun suonikalvosto_NK : NK ;
+fun suonikas_NK : NK ;
+fun suonikohju_NK : NK ;
+fun suoninen_NK : NK ;
+fun suonisto_NK : NK ;
+fun suonitus_NK : NK ;
+fun suopa_NK : NK ;
+fun suopea_AK : AK ;
+--+ fun suopeasti_AdvK : AdvK ;
+fun suopeus_NK : NK ;
+fun suopua_VK : VK ;
+fun suopunki_NK : NK ;
+fun suora_AK : AK ;
+fun suora_ammunta_NK : NK ;
+fun suoraan_AdvK : AdvK ;
+fun suoraa_pa'a'ta'_AdvK : AdvK ;
+fun suoranaan_AdvK : AdvK ;
+--+ fun suoranaisesti_AdvK : AdvK ;
+fun suorastaan_AdvK : AdvK ;
+--+ fun suorasti_AdvK : AdvK ;
+--+ fun suorasukaisesti_AdvK : AdvK ;
+fun suorasukaisuus_NK : NK ;
+--+ fun suoraviivaisesti_AdvK : AdvK ;
+fun suorentaa_VK : VK ;
+fun suoreta_VK : VK ;
+fun suoria_VK : VK ;
+fun suoristaa_VK : VK ;
+fun suoristautua_VK : VK ;
+fun suoristella_VK : VK ;
+fun suoristelu_NK : NK ;
+fun suoristua_VK : VK ;
+fun suoristus_NK : NK ;
+fun suorite_NK : NK ;
+fun suoritella_VK : VK ;
+fun suoritin_NK : NK ;
+fun suorittaa_VK : VK ;
+fun suorittaja_NK : NK ;
+fun suoritus_NK : NK ;
+fun suoritusaika_NK : NK ;
+fun suorituttaa_VK : VK ;
+fun suoriutua_VK : VK ;
+fun suortua_VK : VK ;
+fun suortuva_NK : NK ;
+fun suoruus_NK : NK ;
+fun suosia_VK : VK ;
+fun suosikki_NK : NK ;
+fun suosinta_NK : NK ;
+fun suosio_NK : NK ;
+fun suosiollinen_AK : AK ;
+--+ fun suosiollisesti_AdvK : AdvK ;
+fun suosiollisuus_NK : NK ;
+fun suositella_VK : VK ;
+fun suosittaa_VK : VK ;
+fun suosittaja_NK : NK ;
+fun suosittelija_NK : NK ;
+fun suosittu_NK : NK ;
+fun suosittuus_NK : NK ;
+fun suosituimmuus_NK : NK ;
+fun suositus_NK : NK ;
+fun suostua_VK : VK ;
+fun suostumus_NK : NK ;
+fun suostutella_VK : VK ;
+fun suostuttaa_VK : VK ;
+fun suostuttelu_NK : NK ;
+fun suostuvainen_NK : NK ;
+fun suotaa_VK : VK ;
+fun suotautua_VK : VK ;
+fun suotava_NK : NK ;
+fun suotavuus_NK : NK ;
+fun suotta_AdvK : AdvK ;
+fun suotuinen_NK : NK ;
+fun suotuisa_AK : AK ;
+--+ fun suotuisasti_AdvK : AdvK ;
+fun suotuisuus_NK : NK ;
+fun suova_NK : NK ;
+fun supatella_VK : VK ;
+fun supattaa_VK : VK ;
+fun supattelu_NK : NK ;
+fun supatus_NK : NK ;
+fun superlatiivi_NK : NK ;
+fun superlatiivinen_NK : NK ;
+fun superlatiivisuus_NK : NK ;
+fun supersooninen_NK : NK ;
+fun supeta_VK : VK ;
+fun supi_NK : NK ;
+fun supina_NK : NK ;
+fun supista_VK : VK ;
+fun supistaa_VK : VK ;
+fun supistaja_NK : NK ;
+fun supistella_VK : VK ;
+fun supistelma_NK : NK ;
+fun supistelu_NK : NK ;
+fun supistua_VK : VK ;
+fun supistuma_NK : NK ;
+fun supistus_NK : NK ;
+fun suplementti_NK : NK ;
+fun supliikki_NK : NK ;
+fun suppa_NK : NK ;
+fun suppea_AK : AK ;
+--+ fun suppeasti_AdvK : AdvK ;
+fun suppeuma_NK : NK ;
+fun suppeus_NK : NK ;
+fun suppeuttaa_VK : VK ;
+fun suppeutua_VK : VK ;
+fun suppeutuma_NK : NK ;
+fun suppilo_NK : NK ;
+fun suppo_1_NK : NK ;
+fun suppo_2_NK : NK ;
+fun supportiivinen_NK : NK ;
+fun suppositorio_NK : NK ;
+fun suppuun_AdvK : AdvK ;
+fun supukka_NK : NK ;
+fun supulla_AdvK : AdvK ;
+fun supullaan_AdvK : AdvK ;
+fun supulle_AdvK : AdvK ;
+fun supulleen_AdvK : AdvK ;
+fun supussa_AdvK : AdvK ;
+fun suputtaa_VK : VK ;
+fun surahdella_VK : VK ;
+fun surahtaa_VK : VK ;
+fun sureksia_VK : VK ;
+fun surettaa_VK : VK ;
+fun sureva_NK : NK ;
+fun surfailija_NK : NK ;
+fun surfaus_NK : NK ;
+fun surffaaja_NK : NK ;
+fun surffailija_NK : NK ;
+fun surffailla_VK : VK ;
+fun surffailu_NK : NK ;
+fun surffata_VK : VK ;
+fun surffaus_NK : NK ;
+fun surina_NK : NK ;
+fun surista_VK : VK ;
+fun surkastaa_VK : VK ;
+fun surkastua_VK : VK ;
+fun surkastuma_NK : NK ;
+fun surkastuttaa_VK : VK ;
+fun surkea_AK : AK ;
+--+ fun surkeasti_AdvK : AdvK ;
+fun surkeilematon_NK : NK ;
+fun surkeilla_VK : VK ;
+fun surkeilu_NK : NK ;
+fun surkeus_NK : NK ;
+fun surkimus_NK : NK ;
+fun surku_AdvK : AdvK ;
+fun surkutella_VK : VK ;
+fun surkuttelu_NK : NK ;
+fun surma_NK : NK ;
+fun surmaaja_NK : NK ;
+fun surmata_VK : VK ;
+fun surmauttaa_VK : VK ;
+fun surra_VK : VK ;
+fun surrata_VK : VK ;
+fun surrealismi_NK : NK ;
+fun surrealisti_NK : NK ;
+fun surrealistinen_NK : NK ;
+fun surrogaatti_NK : NK ;
+fun suru_NK : NK ;
+fun suruaika_NK : NK ;
+fun suruinen_NK : NK ;
+fun surullinen_AK : AK ;
+--+ fun surullisesti_AdvK : AdvK ;
+fun surullisuus_NK : NK ;
+fun surumielella'_AdvK : AdvK ;
+fun surumielin_AdvK : AdvK ;
+--+ fun surumielisesti_AdvK : AdvK ;
+fun suruton_NK : NK ;
+fun suruttomasti_AdvK : AdvK ;
+fun suruttomuus_NK : NK ;
+fun survaista_VK : VK ;
+fun survaisu_NK : NK ;
+fun surve_NK : NK ;
+fun surviainen_NK : NK ;
+fun survin_NK : NK ;
+fun survoa_VK : VK ;
+fun survoin_NK : NK ;
+fun survos_NK : NK ;
+fun survoutua_VK : VK ;
+fun sus_AdvK : AdvK ;
+fun susi_NK : NK ;
+fun suspensio_NK : NK ;
+fun sussu_NK : NK ;
+fun sutaista_VK : VK ;
+fun sutata_VK : VK ;
+fun suteno'o'ri_NK : NK ;
+fun suti_NK : NK ;
+fun sutia_VK : VK ;
+fun sutjakasti_AdvK : AdvK ;
+fun sutjakka_NK : NK ;
+fun sutkaus_NK : NK ;
+fun sutkauttaa_VK : VK ;
+fun sutki_NK : NK ;
+fun suttaantua_VK : VK ;
+fun suttautua_VK : VK ;
+fun suttu_NK : NK ;
+fun suttuinen_NK : NK ;
+fun suttura_NK : NK ;
+fun suu_NK : NK ;
+fun suude_NK : NK ;
+fun suudella_VK : VK ;
+fun suudelma_NK : NK ;
+fun suudita_VK : VK ;
+fun suuhinen_NK : NK ;
+fun suuhunpantava_NK : NK ;
+fun suukko_NK : NK ;
+fun suukkonen_NK : NK ;
+fun suukopu_NK : NK ;
+fun suula_NK : NK ;
+--+ fun suulaasti_AdvK : AdvK ;
+fun suulake_NK : NK ;
+fun suulas_AK : AK ;
+fun suulaus_NK : NK ;
+fun suullinen_AK : AK ;
+--+ fun suullisesti_AdvK : AdvK ;
+fun suullisuus_NK : NK ;
+fun suunnanna'ytta'ja'_NK : NK ;
+fun suunnata_VK : VK ;
+fun suunnaton_NK : NK ;
+fun suunnattomasti_AdvK : AdvK ;
+fun suunnattomuus_NK : NK ;
+fun suunnikas_NK : NK ;
+fun suunnilleen_AdvK : AdvK ;
+fun suunnilleenkaan_AdvK : AdvK ;
+fun suunniltaan_AdvK : AdvK ;
+fun suunnin_NK : NK ;
+fun suunnistaa_VK : VK ;
+fun suunnistaja_NK : NK ;
+fun suunnistautua_VK : VK ;
+fun suunnistus_NK : NK ;
+fun suunnite_NK : NK ;
+fun suunnitella_VK : VK ;
+fun suunnitelma_NK : NK ;
+fun suunnitelmallinen_AK : AK ;
+--+ fun suunnitelmallisesti_AdvK : AdvK ;
+fun suunnitelmallisuus_NK : NK ;
+fun suunnitteilla_AdvK : AdvK ;
+fun suunnittelematon_NK : NK ;
+fun suunnittelemattomasti_AdvK : AdvK ;
+fun suunnittelemattomuus_NK : NK ;
+fun suunnittelija_NK : NK ;
+fun suunnittelu_NK : NK ;
+fun suunpieksenta'_NK : NK ;
+fun suunpieksa'ja'_NK : NK ;
+fun suunta_NK : NK ;
+fun suuntain_NK : NK ;
+fun suuntainen_AK : AK ;
+--+ fun suuntaisesti_AdvK : AdvK ;
+fun suuntaisuus_NK : NK ;
+fun suuntaus_NK : NK ;
+fun suuntautua_VK : VK ;
+fun suuntautumistaipuminen_NK : NK ;
+fun suuntia_VK : VK ;
+fun suuntima_NK : NK ;
+fun suupaltti_NK : NK ;
+fun suupuhallettu_NK : NK ;
+fun suura_NK : NK ;
+fun suure_NK : NK ;
+fun suurellinen_AK : AK ;
+--+ fun suurellisesti_AdvK : AdvK ;
+fun suurellisuus_NK : NK ;
+fun suurenmoinen_AK : AK ;
+--+ fun suurenmoisesti_AdvK : AdvK ;
+fun suurenmoisuus_NK : NK ;
+fun suurennella_VK : VK ;
+fun suurennos_NK : NK ;
+fun suurennus_NK : NK ;
+fun suurennuttaa_VK : VK ;
+fun suurentaa_VK : VK ;
+fun suurentua_VK : VK ;
+fun suurentuma_NK : NK ;
+--+ fun suuresti_AdvK : AdvK ;
+fun suureta_VK : VK ;
+fun suuri_AK : AK ;
+--+ fun suurieleisesti_AdvK : AdvK ;
+fun suurimo_NK : NK ;
+fun suurimolekyylinen_NK : NK ;
+fun suurin_piirtein_AdvK : AdvK ;
+--+ fun suurisanaisesti_AdvK : AdvK ;
+--+ fun suurisuisesti_AdvK : AdvK ;
+fun suurisuisuus_NK : NK ;
+fun suurito'isyys_NK : NK ;
+--+ fun suuria'a'nisesti_AdvK : AdvK ;
+--+ fun suurpiirteisesti_AdvK : AdvK ;
+fun suurpiirteisyys_NK : NK ;
+fun suursiivous_NK : NK ;
+fun suuruinen_NK : NK ;
+fun suurus_NK : NK ;
+fun suurustaa_VK : VK ;
+fun suuruste_NK : NK ;
+fun suurustus_NK : NK ;
+fun suuruus_NK : NK ;
+fun suurvalta_aika_NK : NK ;
+fun suurvisiiri_NK : NK ;
+fun suustaladattava_NK : NK ;
+fun suutahtaa_VK : VK ;
+fun suutari_NK : NK ;
+fun suutaroida_VK : VK ;
+fun suutarointi_NK : NK ;
+fun suute_NK : NK ;
+fun suutelo_NK : NK ;
+fun suutelu_NK : NK ;
+fun suutia_VK : VK ;
+fun suutin_NK : NK ;
+fun suuttua_VK : VK ;
+fun suuttumus_NK : NK ;
+fun suutuksiin_AdvK : AdvK ;
+fun suutuksissa_AdvK : AdvK ;
+fun suutuksissaan_AdvK : AdvK ;
+fun suutuspa'issa'_AdvK : AdvK ;
+fun suututtaa_VK : VK ;
+fun suvaita_VK : VK ;
+fun suvaitsematon_NK : NK ;
+fun suvaitsemattomasti_AdvK : AdvK ;
+fun suvaitsemattomuus_NK : NK ;
+fun suvaitseva_AK : AK ;
+fun suvaitsevainen_AK : AK ;
+--+ fun suvaitsevaisesti_AdvK : AdvK ;
+fun suvaitsevaisuus_NK : NK ;
+--+ fun suvaitsevasti_AdvK : AdvK ;
+fun suvaitsevuus_NK : NK ;
+fun suvanto_NK : NK ;
+fun suvantoinen_NK : NK ;
+fun suvehtia_VK : VK ;
+fun suvereeni_AK : AK ;
+fun suvereeninen_AK : AK ;
+--+ fun suvereenisesti_AdvK : AdvK ;
+--+ fun suvereenisti_AdvK : AdvK ;
+fun suvereenisuus_NK : NK ;
+fun suvereenius_NK : NK ;
+fun suvereniteetti_NK : NK ;
+fun suvi_NK : NK ;
+fun suvinen_NK : NK ;
+fun suvuittain_AdvK : AdvK ;
+fun suvullinen_AK : AK ;
+--+ fun suvullisesti_AdvK : AdvK ;
+fun suvullisuus_NK : NK ;
+fun suvuton_NK : NK ;
+fun suvuttomasti_AdvK : AdvK ;
+fun suvuttomuus_NK : NK ;
+fun swap_NK : NK ;
+fun sveitsila'inen_NK : NK ;
+fun svekomaani_NK : NK ;
+fun svengata_VK : VK ;
+fun svengi_NK : NK ;
+fun svetari_NK : NK ;
+fun svetisismi_NK : NK ;
+fun sviitti_NK : NK ;
+fun swing_NK : NK ;
+fun svingi_NK : NK ;
+fun syaani_NK : NK ;
+fun syanidi_NK : NK ;
+fun syankalium_NK : NK ;
+fun syda'mellinen_AK : AK ;
+--+ fun syda'mellisesti_AdvK : AdvK ;
+fun syda'mellisyys_NK : NK ;
+fun syda'metto'myys_NK : NK ;
+fun syda'metto'ma'sti_AdvK : AdvK ;
+fun syda'meto'n_NK : NK ;
+fun syda'minen_NK : NK ;
+fun syda'mistya'_VK : VK ;
+fun syda'misyys_NK : NK ;
+fun syda'mys_NK : NK ;
+fun syda'mystya'_VK : VK ;
+fun syda'n_NK : NK ;
+fun syda'nhermovika_NK : NK ;
+fun syda'nka'pynen_NK : NK ;
+fun syda'ntya'_VK : VK ;
+fun syfilis_NK : NK ;
+fun syinen_NK : NK ;
+fun syke_NK : NK ;
+fun sykertya'_VK : VK ;
+fun sykerta'a'_VK : VK ;
+fun sykero'_NK : NK ;
+fun sykero'itya'_VK : VK ;
+fun sykinta'_NK : NK ;
+fun sykkeinen_NK : NK ;
+fun sykkeisyys_NK : NK ;
+fun sykkia'_VK : VK ;
+fun sykkyra'_NK : NK ;
+fun sykka'illa'_VK : VK ;
+fun sykka'a'_VK : VK ;
+fun syklaami_NK : NK ;
+fun syklamaatti_NK : NK ;
+fun sykli_NK : NK ;
+fun syklinen_NK : NK ;
+fun sykloni_NK : NK ;
+fun syksy_NK : NK ;
+fun syksyinen_NK : NK ;
+fun syksyisin_AdvK : AdvK ;
+fun syksyllinen_NK : NK ;
+fun syksymma'ksi_AdvK : AdvK ;
+fun syksymma'lle_AdvK : AdvK ;
+fun syksymma'lla'_AdvK : AdvK ;
+fun syksymma's_AdvK : AdvK ;
+fun syksympa'na'_AdvK : AdvK ;
+fun syka'hdella'_VK : VK ;
+fun syka'hdys_NK : NK ;
+fun syka'hdytta'a'_VK : VK ;
+fun syka'hta'a'_VK : VK ;
+fun syka'ys_NK : NK ;
+fun syleilla'_VK : VK ;
+fun syleily_NK : NK ;
+fun syli_NK : NK ;
+fun sylikka'in_AdvK : AdvK ;
+fun sylillinen_NK : NK ;
+fun sylinteri_NK : NK ;
+fun sylinterinen_NK : NK ;
+fun sylitta'in_AdvK : AdvK ;
+fun sylityksin_AdvK : AdvK ;
+fun sylitysten_AdvK : AdvK ;
+fun syljeksia'_VK : VK ;
+fun syljeskella'_VK : VK ;
+fun syljeskely_NK : NK ;
+fun syljetta'a'_VK : VK ;
+fun sylkea'_VK : VK ;
+fun sylki_NK : NK ;
+fun sylky_NK : NK ;
+fun sylka'ista'_VK : VK ;
+fun sylka'isy_NK : NK ;
+fun syllogismi_NK : NK ;
+fun syllogistinen_NK : NK ;
+fun syltty_NK : NK ;
+fun sylta'_NK : NK ;
+fun sylta'inen_NK : NK ;
+fun sylyksellinen_NK : NK ;
+fun sylys_NK : NK ;
+fun symbiontti_NK : NK ;
+fun symbioosi_NK : NK ;
+fun symbioottinen_AK : AK ;
+--+ fun symbioottisesti_AdvK : AdvK ;
+fun symbioottisuus_NK : NK ;
+fun symboli_NK : NK ;
+fun symboliikka_NK : NK ;
+fun symbolinen_AK : AK ;
+--+ fun symbolisesti_AdvK : AdvK ;
+fun symbolismi_NK : NK ;
+fun symbolisoida_VK : VK ;
+fun symbolisuus_NK : NK ;
+fun symboloida_VK : VK ;
+fun symmetria_NK : NK ;
+fun symmetrinen_AK : AK ;
+--+ fun symmetrisesti_AdvK : AdvK ;
+fun symmetrisyys_NK : NK ;
+fun sympaattinen_AK : AK ;
+--+ fun sympaattisesti_AdvK : AdvK ;
+fun sympaattisuus_NK : NK ;
+fun sympatia_NK : NK ;
+fun sympatisoida_VK : VK ;
+fun symposio_NK : NK ;
+fun symposiumi_NK : NK ;
+fun symppis_NK : NK ;
+fun symptomaattinen_NK : NK ;
+fun symptomi_NK : NK ;
+fun synagoga_NK : NK ;
+fun synapsi_NK : NK ;
+fun syndikaatti_NK : NK ;
+fun syndikalismi_NK : NK ;
+fun syndikalisti_NK : NK ;
+fun syndikalistinen_NK : NK ;
+fun syndrooma_NK : NK ;
+fun synergeettinen_NK : NK ;
+fun synergia_NK : NK ;
+fun synerginen_NK : NK ;
+fun synergismi_NK : NK ;
+fun synergisti_NK : NK ;
+fun synergistinen_NK : NK ;
+fun synkassa_AdvK : AdvK ;
+fun synkata_VK : VK ;
+fun synkentya'_VK : VK ;
+fun synkenta'a'_VK : VK ;
+fun synketa'_VK : VK ;
+fun synkeys_NK : NK ;
+fun synkea'_NK : NK ;
+fun synkistella'_VK : VK ;
+fun synkistely_NK : NK ;
+fun synkistya'_VK : VK ;
+fun synkista'a'_VK : VK ;
+fun synkkaan_AdvK : AdvK ;
+fun synkkyys_NK : NK ;
+fun synkka'_NK : NK ;
+fun synkooppi_NK : NK ;
+fun synkopoida_VK : VK ;
+fun synkopointi_NK : NK ;
+fun synkretismi_NK : NK ;
+fun synkretistinen_NK : NK ;
+fun synkroninen_NK : NK ;
+fun synkronismi_NK : NK ;
+fun synkronisoida_VK : VK ;
+fun synkronisointi_NK : NK ;
+fun synkronoida_VK : VK ;
+fun synkronointi_NK : NK ;
+fun synka'sti_AdvK : AdvK ;
+fun synnillinen_AK : AK ;
+--+ fun synnillisesti_AdvK : AdvK ;
+fun synnillisyys_NK : NK ;
+fun synnito'n_NK : NK ;
+fun synnynna'inen_AK : AK ;
+--+ fun synnynna'isesti_AdvK : AdvK ;
+fun synnynna'isyys_NK : NK ;
+--? fun synnyttimet_NK : NK ;
+fun synnytta'ja'_NK : NK ;
+fun synnytta'a'_VK : VK ;
+fun synnytys_NK : NK ;
+fun synodi_NK : NK ;
+fun synonymia_NK : NK ;
+fun synonyymi_NK : NK ;
+fun synonyyminen_NK : NK ;
+fun synopsis_NK : NK ;
+fun syntaksi_NK : NK ;
+fun syntaktinen_NK : NK ;
+fun synteesi_NK : NK ;
+fun synteettinen_AK : AK ;
+--+ fun synteettisesti_AdvK : AdvK ;
+fun synteettisyys_NK : NK ;
+fun syntesoida_VK : VK ;
+fun syntesointi_NK : NK ;
+fun syntesoitua_VK : VK ;
+fun syntetisaattori_NK : NK ;
+fun syntetisoida_VK : VK ;
+fun syntetisointi_NK : NK ;
+fun syntetisoitua_VK : VK ;
+fun synti_NK : NK ;
+fun syntinen_AK : AK ;
+--+ fun syntisesti_AdvK : AdvK ;
+fun syntisyys_NK : NK ;
+--? fun syntta'rit_NK : NK ;
+fun synty_NK : NK ;
+fun syntyaika_NK : NK ;
+fun syntyinen_AK : AK ;
+--+ fun syntyisesti_AdvK : AdvK ;
+fun syntyisin_AdvK : AdvK ;
+fun syntyja'a'n_AdvK : AdvK ;
+fun syntyma'_NK : NK ;
+fun syntyma'aika_NK : NK ;
+fun syntyma'to'n_NK : NK ;
+fun syntyneisyys_NK : NK ;
+fun syntyvyys_NK : NK ;
+fun syntya'_VK : VK ;
+fun syntya'a'n_AdvK : AdvK ;
+fun sypressi_NK : NK ;
+fun syreeni_NK : NK ;
+fun syrjemma'ksi_AdvK : AdvK ;
+fun syrjemma'lle_AdvK : AdvK ;
+fun syrjemma'lla'_AdvK : AdvK ;
+fun syrjemma'lta'_AdvK : AdvK ;
+fun syrjemma's_AdvK : AdvK ;
+fun syrjemma'ssa'_AdvK : AdvK ;
+fun syrjemma'sta'_AdvK : AdvK ;
+fun syrjempa'na'_AdvK : AdvK ;
+fun syrjempa'a'_AdvK : AdvK ;
+fun syrjempa'a'n_AdvK : AdvK ;
+fun syrjinta'_NK : NK ;
+fun syrjitta'in_AdvK : AdvK ;
+fun syrjia'_VK : VK ;
+fun syrja'_NK : NK ;
+fun syrja'inen_NK : NK ;
+fun syrja'karein_AdvK : AdvK ;
+fun syrja'lleen_AdvK : AdvK ;
+fun syrja'lla'a'n_AdvK : AdvK ;
+fun syrja'silmin_AdvK : AdvK ;
+fun syrja'silma'lla'_AdvK : AdvK ;
+fun syrja'ssa'_AdvK : AdvK ;
+fun syrja'sta'_AdvK : AdvK ;
+fun syrja'ytta'a'_VK : VK ;
+fun syrja'ytys_NK : NK ;
+fun syrja'ytya'_VK : VK ;
+fun syrja'a'n_AdvK : AdvK ;
+fun syrja'a'ni_NK : NK ;
+fun sysi_NK : NK ;
+fun sysia'_VK : VK ;
+fun syssyyn_AdvK : AdvK ;
+fun systeemi_NK : NK ;
+fun systeeminen_AK : AK ;
+--+ fun systeemisesti_AdvK : AdvK ;
+fun systeemisyys_NK : NK ;
+fun systemaatikko_NK : NK ;
+fun systemaattinen_AK : AK ;
+--+ fun systemaattisesti_AdvK : AdvK ;
+fun systemaattisuus_NK : NK ;
+fun systematiikka_NK : NK ;
+fun systematisoida_VK : VK ;
+fun systematisointi_NK : NK ;
+fun systemoida_VK : VK ;
+fun systemointi_NK : NK ;
+fun systeri_NK : NK ;
+fun systolinen_NK : NK ;
+fun sysa'ta'_VK : VK ;
+fun sysa'yksitta'in_AdvK : AdvK ;
+fun sysa'yksitta'inen_NK : NK ;
+fun sysa'ys_NK : NK ;
+fun sytkytta'a'_VK : VK ;
+fun sytkytys_NK : NK ;
+fun sytka'ri_NK : NK ;
+fun sytologia_NK : NK ;
+fun sytostaatti_NK : NK ;
+fun sytotoksinen_NK : NK ;
+fun syttyma'to'n_NK : NK ;
+fun syttyvyys_NK : NK ;
+fun syttya'_VK : VK ;
+fun sytyke_NK : NK ;
+fun sytytin_NK : NK ;
+fun sytytteinen_NK : NK ;
+fun sytytta'ja'_NK : NK ;
+fun sytytta'a'_VK : VK ;
+fun sytytyksinen_NK : NK ;
+fun sytytys_NK : NK ;
+fun syvemma'ksi_AdvK : AdvK ;
+fun syvemma'lle_AdvK : AdvK ;
+fun syvemma'lla'_AdvK : AdvK ;
+fun syvemma'lta'_AdvK : AdvK ;
+fun syvemma's_AdvK : AdvK ;
+fun syvempa'na'_AdvK : AdvK ;
+fun syvempa'a'_AdvK : AdvK ;
+fun syvennys_NK : NK ;
+fun syventya'_VK : VK ;
+fun syventa'a'_VK : VK ;
+fun syveta'_VK : VK ;
+fun syvyinen_NK : NK ;
+fun syvyys_NK : NK ;
+fun syvyytta'a'_VK : VK ;
+fun syvyytys_NK : NK ;
+fun syva'_AK : AK ;
+fun syva'lle_AdvK : AdvK ;
+fun syva'llinen_AK : AK ;
+--+ fun syva'llisesti_AdvK : AdvK ;
+fun syva'llisyys_NK : NK ;
+fun syva'lla'_AdvK : AdvK ;
+fun syva'lti_AdvK : AdvK ;
+fun syva'lta'_AdvK : AdvK ;
+fun syva'nko'_NK : NK ;
+fun syva'nne_NK : NK ;
+fun syva'ssa'_AdvK : AdvK ;
+--+ fun syva'sti_AdvK : AdvK ;
+fun syva'sta'_AdvK : AdvK ;
+fun syva'ys_NK : NK ;
+fun syva'a'n_AdvK : AdvK ;
+fun syy_1_NK : NK ;
+fun syy_2_NK : NK ;
+fun syydvesti_NK : NK ;
+fun syyhelma'_NK : NK ;
+fun syyhy_NK : NK ;
+fun syyhytta'a'_VK : VK ;
+fun syyhyta'_VK : VK ;
+fun syyhya'_VK : VK ;
+fun syylinki_NK : NK ;
+fun syyllinen_NK : NK ;
+fun syyllistya'_VK : VK ;
+fun syyllista'a'_VK : VK ;
+fun syyllisyys_NK : NK ;
+fun syyla'_NK : NK ;
+fun syyla'juuri_NK : NK ;
+fun syyni_NK : NK ;
+fun syyntakeeton_NK : NK ;
+fun syyntakeettomuus_NK : NK ;
+fun syyntakeinen_NK : NK ;
+fun syyntakeisuus_NK : NK ;
+fun syyna'ta'_VK : VK ;
+fun syyna'ys_NK : NK ;
+fun syys_AdvK : AdvK ;
+fun syyte_NK : NK ;
+fun syytella'_VK : VK ;
+fun syytetty_NK : NK ;
+fun syytinkivaari_NK : NK ;
+fun syyttely_NK : NK ;
+fun syytta'jisto'_NK : NK ;
+fun syytta'ja'_NK : NK ;
+fun syytta'a'_VK : VK ;
+fun syytto'myys_NK : NK ;
+fun syytto'ma'sti_AdvK : AdvK ;
+fun syyta'a'_VK : VK ;
+fun syyto'n_NK : NK ;
+fun syyto's_NK : NK ;
+fun syo'da'_VK : VK ;
+fun syo'ja'_NK : NK ;
+fun syo'ja'ta'r_NK : NK ;
+fun syo'ksy_NK : NK ;
+fun syo'ksyilla'_VK : VK ;
+fun syo'ksya'_VK : VK ;
+fun syo'ksa'hdella'_VK : VK ;
+fun syo'ksa'hdys_NK : NK ;
+fun syo'ksa'hta'a'_VK : VK ;
+fun syo'minen_NK : NK ;
+fun syo'mingit_NK : NK ;
+fun syo'ma'ri_NK : NK ;
+fun syo'ma'tto'myys_NK : NK ;
+fun syo'ma'to'n_NK : NK ;
+fun syo'nnilla'_AdvK : AdvK ;
+fun syo'nnilla'a'n_AdvK : AdvK ;
+fun syo'nno's_NK : NK ;
+fun syo'nti_NK : NK ;
+fun syo'ntiaika_NK : NK ;
+fun syo'ppo'_NK : NK ;
+fun syo'ppo'ys_NK : NK ;
+fun syo'pyma'_NK : NK ;
+fun syo'pyma'tto'myys_NK : NK ;
+fun syo'pyma'to'n_NK : NK ;
+fun syo'pya'_VK : VK ;
+fun syo'pa'_NK : NK ;
+fun syo'pa'inen_NK : NK ;
+fun syo'pa'la'inen_NK : NK ;
+fun syo'po'tella'_VK : VK ;
+fun syo'po'ttely_NK : NK ;
+fun syo'sta'_VK : VK ;
+fun syo'sta'va'_NK : NK ;
+fun syo'tella'_VK : VK ;
+fun syo'tin_NK : NK ;
+fun syo'titta'a'_VK : VK ;
+fun syo'titys_NK : NK ;
+fun syo'tti_NK : NK ;
+fun syo'tta'ja'_NK : NK ;
+fun syo'tta'a'_VK : VK ;
+fun syo'tto'_NK : NK ;
+fun syo'tto'inen_NK : NK ;
+fun syo'ta'va'_NK : NK ;
+fun syo'veri_NK : NK ;
+fun syo'vyte_NK : NK ;
+fun syo'vytta'a'_VK : VK ;
+fun syo'vytys_NK : NK ;
+fun sa'de_NK : NK ;
+fun sa'dehtia'_VK : VK ;
+fun sa'detin_NK : NK ;
+fun sa'detta'a'_VK : VK ;
+fun sa'detys_NK : NK ;
+fun sa'e_NK : NK ;
+fun sa'en_NK : NK ;
+fun sa'esteinen_NK : NK ;
+fun sa'estyksinen_NK : NK ;
+fun sa'estys_NK : NK ;
+fun sa'esta'ja'_NK : NK ;
+fun sa'esta'a'_VK : VK ;
+fun sa'hellys_NK : NK ;
+fun sa'helta'a'_VK : VK ;
+fun sa'hika'inen_NK : NK ;
+fun sa'hinka'inen_NK : NK ;
+fun sa'hina'_NK : NK ;
+fun sa'hista'_VK : VK ;
+fun sa'hke_NK : NK ;
+fun sa'hkeitse_AdvK : AdvK ;
+fun sa'hko'_NK : NK ;
+fun sa'hko'inen_AK : AK ;
+--+ fun sa'hko'isesti_AdvK : AdvK ;
+fun sa'hko'istys_NK : NK ;
+fun sa'hko'istya'_VK : VK ;
+fun sa'hko'ista'a'_VK : VK ;
+fun sa'hko'punktuuri_NK : NK ;
+fun sa'hko'tta'ja'_NK : NK ;
+fun sa'hko'tta'a'_VK : VK ;
+fun sa'hko'tys_NK : NK ;
+fun sa'hlinki_NK : NK ;
+fun sa'hlia'_VK : VK ;
+fun sa'hly_NK : NK ;
+fun sa'hla'ri_NK : NK ;
+fun sa'hla'ta'_VK : VK ;
+fun sa'hla'ys_NK : NK ;
+fun sa'hla'a'ja'_NK : NK ;
+fun sa'ha'hdys_NK : NK ;
+fun sa'ha'hta'a'_VK : VK ;
+fun sa'ha'kkyys_NK : NK ;
+fun sa'ha'kka'_NK : NK ;
+fun sa'ha'ka'sti_AdvK : AdvK ;
+fun sa'ie_NK : NK ;
+fun sa'ihke_NK : NK ;
+fun sa'ihkya'_VK : VK ;
+fun sa'ikeinen_NK : NK ;
+fun sa'ikeisyys_NK : NK ;
+fun sa'ikky_NK : NK ;
+fun sa'ikkya'_VK : VK ;
+fun sa'ikytella'_VK : VK ;
+fun sa'ikyttely_NK : NK ;
+fun sa'ikytta'a'_VK : VK ;
+fun sa'ika'hdys_NK : NK ;
+fun sa'ika'hdytta'a'_VK : VK ;
+fun sa'ika'htya'_VK : VK ;
+fun sa'ika'hta'a'_VK : VK ;
+fun sa'ika'ys_NK : NK ;
+fun sa'ika'ytella'_VK : VK ;
+fun sa'ika'ytta'a'_VK : VK ;
+fun sa'ile_NK : NK ;
+fun sa'ilio'_NK : NK ;
+fun sa'ilio'ida'_VK : VK ;
+fun sa'ilio'inti_NK : NK ;
+fun sa'ilyke_NK : NK ;
+fun sa'ilyte_NK : NK ;
+fun sa'ilytteille_AdvK : AdvK ;
+fun sa'ilytteilla'_AdvK : AdvK ;
+fun sa'ilytta'ja'_NK : NK ;
+fun sa'ilytta'a'_VK : VK ;
+fun sa'ilytys_NK : NK ;
+fun sa'ilyvyys_NK : NK ;
+fun sa'ilya'_VK : VK ;
+fun sa'ila'_NK : NK ;
+fun sa'ilo'_NK : NK ;
+fun sa'ilo'nta'_NK : NK ;
+fun sa'ilo'te_NK : NK ;
+fun sa'ilo'a'_VK : VK ;
+fun sa'keinen_NK : NK ;
+fun sa'keisto'_NK : NK ;
+fun sa'keisto'inen_NK : NK ;
+fun sa'keitta'in_1_AdvK : AdvK ;
+fun sa'keitta'in_2_AdvK : AdvK ;
+fun sa'kene_NK : NK ;
+fun sa'keno'ida'_VK : VK ;
+fun sa'keno'iva'_NK : NK ;
+fun sa'killinen_NK : NK ;
+fun sa'kitta'a'_VK : VK ;
+fun sa'kitys_NK : NK ;
+fun sa'kki_NK : NK ;
+fun sa'kka'ra'_NK : NK ;
+fun sa'ksa'tta'a'_VK : VK ;
+fun sa'ksa'tys_NK : NK ;
+fun sa'ka'_1_NK : NK ;
+fun sa'ka'_2_NK : NK ;
+fun sa'ka'tta'a'_VK : VK ;
+fun sa'ka'tys_NK : NK ;
+fun sa'le_NK : NK ;
+fun sa'leikko'_NK : NK ;
+fun sa'lli_NK : NK ;
+fun sa'lpa'_NK : NK ;
+fun sa'ly_NK : NK ;
+fun sa'lytta'a'_VK : VK ;
+fun sa'lytys_NK : NK ;
+fun sa'la'_NK : NK ;
+fun sa'la'hdys_NK : NK ;
+fun sa'la'hta'a'_VK : VK ;
+fun sa'lo'_NK : NK ;
+fun sa'lo'inen_NK : NK ;
+fun sa'mpleri_NK : NK ;
+fun sa'mpla'ta'_VK : VK ;
+fun sa'mpla'ys_NK : NK ;
+fun sa'mpyla'_NK : NK ;
+fun sa'nki_NK : NK ;
+fun sa'nky_NK : NK ;
+fun sa'nna'ta'_VK : VK ;
+fun sa'ntilleen_AdvK : AdvK ;
+fun sa'ntillinen_AK : AK ;
+--+ fun sa'ntillisesti_AdvK : AdvK ;
+fun sa'ntillisyys_NK : NK ;
+fun sa'nta'illa'_VK : VK ;
+fun sa'nta'ily_NK : NK ;
+fun sa'pina'_NK : NK ;
+fun sa'pista'_VK : VK ;
+fun sa'ppi_NK : NK ;
+fun sa'psa'hdella'_VK : VK ;
+fun sa'psa'hdys_NK : NK ;
+fun sa'psa'hdytta'a'_VK : VK ;
+fun sa'psa'htely_NK : NK ;
+fun sa'psa'hta'a'_VK : VK ;
+fun sa'psa'ytta'a'_VK : VK ;
+fun sa'pa'le_NK : NK ;
+fun sa'rina'_NK : NK ;
+fun sa'rista'_VK : VK ;
+fun sa'rkea'_VK : VK ;
+fun sa'rki_NK : NK ;
+fun sa'rkija'_NK : NK ;
+fun sa'rkka'_NK : NK ;
+fun sa'rky_NK : NK ;
+fun sa'rkya'_VK : VK ;
+fun sa'rmi_NK : NK ;
+fun sa'rmikkyys_NK : NK ;
+--+ fun sa'rmikka'a'sti_AdvK : AdvK ;
+fun sa'rmika's_AK : AK ;
+fun sa'rmio'_NK : NK ;
+fun sa'rma'_NK : NK ;
+fun sa'rma'inen_NK : NK ;
+fun sa'rma'ta'_VK : VK ;
+fun sa'rma'ys_NK : NK ;
+fun sa'rpia'_VK : VK ;
+fun sa'rvin_NK : NK ;
+fun sa'ra'hdella'_VK : VK ;
+fun sa'ra'hdys_NK : NK ;
+fun sa'ra'hta'a'_VK : VK ;
+fun sa'ro'_NK : NK ;
+fun sa'ro'illa'_VK : VK ;
+fun sa'ro'ily_NK : NK ;
+fun sa'ro'inen_NK : NK ;
+fun sa'ro'to'n_NK : NK ;
+fun sa'ro'ytya'_VK : VK ;
+fun sa'teilija'_NK : NK ;
+fun sa'teilin_NK : NK ;
+fun sa'teilla'_VK : VK ;
+fun sa'teily_NK : NK ;
+fun sa'teilytin_NK : NK ;
+fun sa'teilytta'a'_VK : VK ;
+fun sa'teilytys_NK : NK ;
+fun sa'teinen_NK : NK ;
+fun sa'teitta'in_AdvK : AdvK ;
+fun sa'teitta'inen_AK : AK ;
+--+ fun sa'teitta'isesti_AdvK : AdvK ;
+fun sa'teri_1_NK : NK ;
+fun sa'teri_2_NK : NK ;
+fun sa'tkin_NK : NK ;
+fun sa'tkia'_VK : VK ;
+fun sa'tky_NK : NK ;
+fun sa'tkytella'_VK : VK ;
+fun sa'tkyttely_NK : NK ;
+fun sa'tkytta'a'_VK : VK ;
+fun sa'tkytys_NK : NK ;
+fun sa'tka'_NK : NK ;
+fun sa'tka'tta'a'_VK : VK ;
+fun sa'tka'tys_NK : NK ;
+fun sa'ttia'_VK : VK ;
+fun sa'vel_NK : NK ;
+fun sa'vellys_NK : NK ;
+fun sa'velmisto'_NK : NK ;
+fun sa'velma'_NK : NK ;
+fun sa'velta'ja'_NK : NK ;
+fun sa'velta'a'_VK : VK ;
+fun sa'vy_NK : NK ;
+fun sa'vyinen_AK : AK ;
+--+ fun sa'vyisesti_AdvK : AdvK ;
+--+ fun sa'vyisa'sti_AdvK : AdvK ;
+fun sa'vykkyys_NK : NK ;
+fun sa'vyka's_NK : NK ;
+fun sa'vyte_NK : NK ;
+fun sa'vytteinen_NK : NK ;
+fun sa'vyttya'_VK : VK ;
+fun sa'vytta'a'_VK : VK ;
+fun sa'vytys_NK : NK ;
+fun sa'vyto'n_NK : NK ;
+fun sa'va'hdys_NK : NK ;
+fun sa'va'hdytta'a'_VK : VK ;
+fun sa'va'hta'a'_VK : VK ;
+fun sa'va'ys_NK : NK ;
+fun sa'va'ytta'a'_VK : VK ;
+fun sa'yne_NK : NK ;
+fun sa'yna'va'_NK : NK ;
+fun sa'yseys_NK : NK ;
+fun sa'ysea'_AK : AK ;
+--+ fun sa'ysea'sti_AdvK : AdvK ;
+fun sa'a'_NK : NK ;
+fun sa'a'de_NK : NK ;
+fun sa'a'della'_VK : VK ;
+fun sa'a'din_NK : NK ;
+fun sa'a'dyllinen_AK : AK ;
+--+ fun sa'a'dyllisesti_AdvK : AdvK ;
+fun sa'a'dyllisyys_NK : NK ;
+fun sa'a'dytto'myys_NK : NK ;
+fun sa'a'dytto'ma'sti_AdvK : AdvK ;
+fun sa'a'dyto'n_NK : NK ;
+fun sa'a'da'nna'inen_NK : NK ;
+fun sa'a'da'nta'_NK : NK ;
+fun sa'a'da'nto'_NK : NK ;
+fun sa'a'da'tta'a'_VK : VK ;
+fun sa'a'da'tys_NK : NK ;
+fun sa'a'do's_NK : NK ;
+fun sa'a'ksi_NK : NK ;
+fun sa'a'li_NK : NK ;
+fun sa'a'lima'tto'myys_NK : NK ;
+fun sa'a'lima'tto'ma'sti_AdvK : AdvK ;
+fun sa'a'lima'to'n_NK : NK ;
+fun sa'a'litella'_VK : VK ;
+fun sa'a'litta'va'_NK : NK ;
+fun sa'a'litta'a'_VK : VK ;
+fun sa'a'liva'inen_NK : NK ;
+fun sa'a'lia'_1_VK : VK ;
+fun sa'a'lia'_2_VK : VK ;
+fun sa'a'llinen_AK : AK ;
+--+ fun sa'a'llisesti_AdvK : AdvK ;
+fun sa'a'llisyys_NK : NK ;
+fun sa'a'miska'_NK : NK ;
+fun sa'a'nnella'_VK : VK ;
+fun sa'a'nno'llinen_AK : AK ;
+--+ fun sa'a'nno'llisesti_AdvK : AdvK ;
+fun sa'a'nno'llistya'_VK : VK ;
+fun sa'a'nno'llista'a'_VK : VK ;
+fun sa'a'nno'llisyys_NK : NK ;
+fun sa'a'nno's_NK : NK ;
+fun sa'a'nno'stella'_VK : VK ;
+fun sa'a'nno'stely_NK : NK ;
+fun sa'a'nno'sto'_NK : NK ;
+fun sa'a'nno'tella'_VK : VK ;
+fun sa'a'nno'tta'a'_VK : VK ;
+fun sa'a'nno'tto'myys_NK : NK ;
+fun sa'a'nno'tto'ma'sti_AdvK : AdvK ;
+fun sa'a'nno'to'n_NK : NK ;
+fun sa'a'ntelija'_NK : NK ;
+fun sa'a'ntely_NK : NK ;
+fun sa'a'nto'_NK : NK ;
+fun sa'a'ri_NK : NK ;
+fun sa'a'rihaava_NK : NK ;
+fun sa'a'rinen_NK : NK ;
+fun sa'a'risyys_NK : NK ;
+fun sa'a'rys_NK : NK ;
+fun sa'a'rystin_NK : NK ;
+fun sa'a'ski_NK : NK ;
+fun sa'a'stelia'isyys_NK : NK ;
+fun sa'a'stelia's_AK : AK ;
+--+ fun sa'a'stelia'a'sti_AdvK : AdvK ;
+fun sa'a'stella'_VK : VK ;
+fun sa'a'stio'_NK : NK ;
+fun sa'a'styma'_NK : NK ;
+fun sa'a'stya'_VK : VK ;
+fun sa'a'sta'ja'_NK : NK ;
+fun sa'a'sta'nta'_NK : NK ;
+fun sa'a'sta'vyys_NK : NK ;
+fun sa'a'sta'va'inen_AK : AK ;
+--+ fun sa'a'sta'va'isesti_AdvK : AdvK ;
+fun sa'a'sta'va'isyys_NK : NK ;
+fun sa'a'sta'a'_VK : VK ;
+fun sa'a'sto'_NK : NK ;
+fun sa'a'telija'_NK : NK ;
+fun sa'a'tely_NK : NK ;
+fun sa'a'tio'_NK : NK ;
+fun sa'a'tio'ida'_VK : VK ;
+fun sa'a'tio'inti_NK : NK ;
+fun sa'a'ty_NK : NK ;
+fun sa'a'tyinen_NK : NK ;
+fun sa'a'tyla'inen_NK : NK ;
+fun sa'a'tya'_VK : VK ;
+fun sa'a'ta'ja'_NK : NK ;
+fun sa'a'ta'a'_VK : VK ;
+fun sa'a'to'_NK : NK ;
+--+ fun sa'a'to'isesti_AdvK : AdvK ;
+fun so'hlia'_VK : VK ;
+fun so'hla'ta'_VK : VK ;
+fun so'ko'_NK : NK ;
+fun so'nkko'_NK : NK ;
+fun so'nka'ta'_VK : VK ;
+fun so'nko'tta'ja'_NK : NK ;
+fun so'nko'tta'a'_VK : VK ;
+fun so'nko'tys_NK : NK ;
+fun so'po'_AK : AK ;
+fun so'po'illa'_VK : VK ;
+fun so'po'ily_NK : NK ;
+fun so'po'liini_NK : NK ;
+fun so'po'la'inen_NK : NK ;
+--+ fun so'po'sti_AdvK : AdvK ;
+fun so'po'tta'a'_VK : VK ;
+fun so'po'tys_NK : NK ;
+fun so'rkkia'_VK : VK ;
+fun so'rsseli_NK : NK ;
+fun so'rssa'ta'_VK : VK ;
+fun so'sso'_NK : NK ;
+fun so'sso'tta'ja'_NK : NK ;
+fun so'sso'tta'a'_VK : VK ;
+fun so'sso'tys_NK : NK ;
+fun so'o'tisti_AdvK : AdvK ;
+fun so'o'tti_NK : NK ;
+fun taa_AdvK : AdvK ;
+fun taaemma_AdvK : AdvK ;
+fun taaemmas_AdvK : AdvK ;
+fun taaempana_AdvK : AdvK ;
+fun taaempi_NK : NK ;
+fun taaimmainen_NK : NK ;
+fun taaimmaksi_AdvK : AdvK ;
+fun taaimpaa_AdvK : AdvK ;
+fun taaimpana_AdvK : AdvK ;
+fun taain_NK : NK ;
+fun taaja_AK : AK ;
+fun taajaan_AdvK : AdvK ;
+fun taajalti_AdvK : AdvK ;
+fun taajama_NK : NK ;
+fun taajassa_AdvK : AdvK ;
+--+ fun taajasti_AdvK : AdvK ;
+fun taajentaa_VK : VK ;
+fun taajentua_VK : VK ;
+fun taajeta_VK : VK ;
+fun taajuinen_NK : NK ;
+fun taajuus_NK : NK ;
+fun taakka_NK : NK ;
+fun taakse_AdvK : AdvK ;
+fun taala_NK : NK ;
+fun taaleri_NK : NK ;
+fun taamma_AdvK : AdvK ;
+fun taammaksi_AdvK : AdvK ;
+fun taammas_AdvK : AdvK ;
+fun taampaa_AdvK : AdvK ;
+fun taampana_AdvK : AdvK ;
+fun taannehtia_VK : VK ;
+fun taannoin_AdvK : AdvK ;
+fun taannoinen_NK : NK ;
+fun taannuttaa_VK : VK ;
+fun taantua_VK : VK ;
+fun taantuma_NK : NK ;
+fun taantumuksellinen_AK : AK ;
+--+ fun taantumuksellisesti_AdvK : AdvK ;
+fun taantumuksellisuus_NK : NK ;
+fun taantumus_NK : NK ;
+fun taapero_NK : NK ;
+fun taaperrella_VK : VK ;
+fun taapertaa_VK : VK ;
+fun taaplata_VK : VK ;
+fun taara_NK : NK ;
+fun taas_AdvK : AdvK ;
+fun taasen_AdvK : AdvK ;
+fun taata_1_VK : VK ;
+fun taata_2_NK : NK ;
+fun taatto_NK : NK ;
+fun taattu_NK : NK ;
+fun taatusti_AdvK : AdvK ;
+fun taavetti_NK : NK ;
+fun tabasko_NK : NK ;
+fun tabbule_NK : NK ;
+fun tabletti_NK : NK ;
+fun tabloidi_NK : NK ;
+fun tabloidikoko_NK : NK ;
+fun tabu_1_NK : NK ;
+fun tabu_2_NK : NK ;
+fun tabulaattori_NK : NK ;
+fun tabuloida_VK : VK ;
+fun tabulointi_NK : NK ;
+fun taco_NK : NK ;
+fun taconkuori_NK : NK ;
+fun tadikko_NK : NK ;
+fun tae_1_NK : NK ;
+fun tae_2_NK : NK ;
+fun taekwondo_NK : NK ;
+fun taemma_AdvK : AdvK ;
+fun taemmaksi_AdvK : AdvK ;
+fun taemmas_AdvK : AdvK ;
+fun taempaa_AdvK : AdvK ;
+fun taempana_AdvK : AdvK ;
+fun taempi_NK : NK ;
+fun taeta_VK : VK ;
+fun tafti_NK : NK ;
+fun tag_NK : NK ;
+fun tagi_NK : NK ;
+fun tagliatelle_NK : NK ;
+fun tahallaan_AdvK : AdvK ;
+fun tahallinen_AK : AK ;
+--+ fun tahallisesti_AdvK : AdvK ;
+fun tahallisuus_NK : NK ;
+fun tahansa_AdvK : AdvK ;
+fun tahaton_NK : NK ;
+fun tahattomasti_AdvK : AdvK ;
+fun tahattomuus_NK : NK ;
+fun tahdas_NK : NK ;
+fun tahdikas_AK : AK ;
+--+ fun tahdikkaasti_AdvK : AdvK ;
+fun tahdikkuus_NK : NK ;
+fun tahdistaa_VK : VK ;
+fun tahdistaja_NK : NK ;
+fun tahdistin_NK : NK ;
+fun tahdistua_VK : VK ;
+fun tahdistus_NK : NK ;
+fun tahditon_NK : NK ;
+fun tahdittaa_VK : VK ;
+fun tahdittomasti_AdvK : AdvK ;
+fun tahdittomuus_NK : NK ;
+fun tahditus_NK : NK ;
+fun tahdoton_NK : NK ;
+fun tahi_AdvK : AdvK ;
+fun tahikka_AdvK : AdvK ;
+fun tahko_NK : NK ;
+fun tahkoinen_NK : NK ;
+fun tahkoontua_VK : VK ;
+fun tahkota_VK : VK ;
+fun tahkoutua_VK : VK ;
+fun tahma_NK : NK ;
+fun tahmaannuttaa_VK : VK ;
+fun tahmaantua_VK : VK ;
+fun tahmainen_NK : NK ;
+fun tahmata_VK : VK ;
+fun tahmautua_VK : VK ;
+fun tahmea_AK : AK ;
+--+ fun tahmeasti_AdvK : AdvK ;
+fun tahmentaa_VK : VK ;
+fun tahmentua_VK : VK ;
+fun tahmeta_VK : VK ;
+fun tahmettaa_VK : VK ;
+fun tahmettua_VK : VK ;
+fun tahmeus_NK : NK ;
+fun tahna_NK : NK ;
+fun taho_NK : NK ;
+fun tahoinen_NK : NK ;
+fun tahokas_NK : NK ;
+fun tahra_NK : NK ;
+fun tahraamaton_NK : NK ;
+fun tahraantua_VK : VK ;
+fun tahraantumaton_NK : NK ;
+fun tahrainen_NK : NK ;
+fun tahraisuus_NK : NK ;
+fun tahrata_VK : VK ;
+fun tahraton_NK : NK ;
+fun tahrautua_VK : VK ;
+fun tahria_VK : VK ;
+fun tahriintua_VK : VK ;
+fun tahriintumaton_NK : NK ;
+fun tahrimaton_NK : NK ;
+fun tahriutua_VK : VK ;
+fun tahti_NK : NK ;
+fun tahtinen_NK : NK ;
+fun tahto_NK : NK ;
+fun tahtoa_VK : VK ;
+fun tahtoinen_AK : AK ;
+--+ fun tahtoisesti_AdvK : AdvK ;
+fun tahtoisuus_NK : NK ;
+fun tahtomattaan_AdvK : AdvK ;
+fun tai_AdvK : AdvK ;
+--+ fun taianomaisesti_AdvK : AdvK ;
+fun taide_NK : NK ;
+--+ fun taidehistoriallisesti_AdvK : AdvK ;
+fun taidokas_AK : AK ;
+--+ fun taidokkaasti_AdvK : AdvK ;
+fun taidokkuus_NK : NK ;
+fun taidollinen_AK : AK ;
+--+ fun taidollisesti_AdvK : AdvK ;
+fun taidoton_NK : NK ;
+fun taidottomasti_AdvK : AdvK ;
+fun taidottomuus_NK : NK ;
+fun taifuuni_NK : NK ;
+fun taiga_NK : NK ;
+fun taiji_NK : NK ;
+fun taika_NK : NK ;
+--+ fun taikauskoisesti_AdvK : AdvK ;
+fun taikinainen_NK : NK ;
+fun taikinanjuuri_NK : NK ;
+fun taikinoida_VK : VK ;
+fun taikinointi_NK : NK ;
+fun taikka_AdvK : AdvK ;
+fun taikoa_VK : VK ;
+fun taikuus_NK : NK ;
+fun taimen_NK : NK ;
+fun taimettaa_VK : VK ;
+fun taimettua_VK : VK ;
+fun taimetus_NK : NK ;
+fun taimi_NK : NK ;
+fun taimia_VK : VK ;
+fun taimisto_NK : NK ;
+fun taimmainen_NK : NK ;
+fun taimmaksi_AdvK : AdvK ;
+fun taimmas_AdvK : AdvK ;
+fun taimpaa_AdvK : AdvK ;
+fun taimpana_AdvK : AdvK ;
+fun tain_NK : NK ;
+fun tainnoksiin_AdvK : AdvK ;
+fun tainnoksissa_AdvK : AdvK ;
+fun tainnoksista_AdvK : AdvK ;
+fun tainnuksiin_AdvK : AdvK ;
+fun tainnuksissa_AdvK : AdvK ;
+fun tainnuksista_AdvK : AdvK ;
+fun tainnuttaa_VK : VK ;
+fun tainnutus_NK : NK ;
+fun taintua_VK : VK ;
+fun taionta_NK : NK ;
+fun taipale_NK : NK ;
+fun taipeinen_NK : NK ;
+fun taipua_VK : VK ;
+fun taipuilla_VK : VK ;
+fun taipuisa_AK : AK ;
+--+ fun taipuisasti_AdvK : AdvK ;
+fun taipuisuus_NK : NK ;
+fun taipuma_NK : NK ;
+fun taipumaton_NK : NK ;
+fun taipumattomuus_NK : NK ;
+fun taipumus_NK : NK ;
+fun taipuva_NK : NK ;
+fun taipuvainen_NK : NK ;
+fun taipuvaisuus_NK : NK ;
+fun taipuvuus_NK : NK ;
+fun taistelija_NK : NK ;
+fun taistella_VK : VK ;
+fun taistelu_NK : NK ;
+fun taisto_NK : NK ;
+fun taistolaisuus_NK : NK ;
+fun taita_AdvK : AdvK ;
+fun taitaa_VK : VK ;
+fun taitaja_NK : NK ;
+fun taitamaton_NK : NK ;
+fun taitamattomasti_AdvK : AdvK ;
+fun taitamattomuus_NK : NK ;
+fun taitava_AK : AK ;
+--+ fun taitavasti_AdvK : AdvK ;
+fun taitavuus_NK : NK ;
+fun taite_NK : NK ;
+fun taiteellinen_AK : AK ;
+--+ fun taiteellisesti_AdvK : AdvK ;
+fun taiteellisuus_NK : NK ;
+fun taiteikas_NK : NK ;
+fun taiteilija_NK : NK ;
+fun taiteilijatar_NK : NK ;
+fun taiteilla_VK : VK ;
+fun taiteilu_NK : NK ;
+fun taitekerroin_NK : NK ;
+fun taitekohta_NK : NK ;
+fun taitella_VK : VK ;
+fun taiten_AdvK : AdvK ;
+fun taito_NK : NK ;
+fun taitos_NK : NK ;
+fun taitoskohta_NK : NK ;
+fun taitse_AdvK : AdvK ;
+fun taittaa_VK : VK ;
+fun taittaja_NK : NK ;
+fun taitteinen_NK : NK ;
+fun taitteisuus_NK : NK ;
+fun taitto_NK : NK ;
+fun taittoinen_NK : NK ;
+fun taittoisuus_NK : NK ;
+fun taittua_VK : VK ;
+fun taittuma_NK : NK ;
+fun taittumakohta_NK : NK ;
+fun taituri_NK : NK ;
+fun taiturillinen_AK : AK ;
+--+ fun taiturillisesti_AdvK : AdvK ;
+fun taiturillisuus_NK : NK ;
+--+ fun taiturimaisesti_AdvK : AdvK ;
+fun taiturimaisuus_NK : NK ;
+fun taituroida_VK : VK ;
+fun taiturointi_NK : NK ;
+fun taituruus_NK : NK ;
+fun taivaallinen_AK : AK ;
+--+ fun taivaallisesti_AdvK : AdvK ;
+fun taivaallisuus_NK : NK ;
+fun taivaanlaki_NK : NK ;
+fun taivaansini_NK : NK ;
+fun taivaaseenastuminen_NK : NK ;
+fun taival_NK : NK ;
+fun taivallus_NK : NK ;
+fun taivaltaa_VK : VK ;
+fun taivaltaja_NK : NK ;
+fun taivas_NK : NK ;
+fun taivastelija_NK : NK ;
+fun taivastella_VK : VK ;
+fun taivastelu_NK : NK ;
+fun taive_NK : NK ;
+fun taivekohta_NK : NK ;
+fun taivo_NK : NK ;
+fun taivukas_NK : NK ;
+fun taivuksiin_AdvK : AdvK ;
+fun taivuksissa_AdvK : AdvK ;
+fun taivutella_VK : VK ;
+fun taivutin_NK : NK ;
+fun taivuttaa_VK : VK ;
+fun taivuttautua_VK : VK ;
+fun taivutus_NK : NK ;
+fun taju_NK : NK ;
+fun tajuamaton_NK : NK ;
+fun tajuinen_AK : AK ;
+--+ fun tajuisesti_AdvK : AdvK ;
+fun tajuisuus_NK : NK ;
+fun tajunta_NK : NK ;
+fun tajuta_VK : VK ;
+fun tajuton_NK : NK ;
+fun tajuttomasti_AdvK : AdvK ;
+fun tajuttomuus_NK : NK ;
+fun taka_NK : NK ;
+fun takaa_AdvK : AdvK ;
+fun takaaja_NK : NK ;
+fun takaaladattava_NK : NK ;
+fun takainen_NK : NK ;
+fun takaisin_AdvK : AdvK ;
+fun takakenoinen_NK : NK ;
+fun takaka'teen_AdvK : AdvK ;
+fun takalisto_NK : NK ;
+fun takallinen_NK : NK ;
+fun takamus_NK : NK ;
+fun takana_AdvK : AdvK ;
+fun takapajuinen_AK : AK ;
+--+ fun takapajuisesti_AdvK : AdvK ;
+fun takapajuisuus_NK : NK ;
+fun takapajula_NK : NK ;
+fun takapenkkila'inen_NK : NK ;
+fun takaperin_AdvK : AdvK ;
+fun takaperoinen_AK : AK ;
+--+ fun takaperoisesti_AdvK : AdvK ;
+fun takaperoisuus_NK : NK ;
+fun takatuuppari_NK : NK ;
+fun takauma_NK : NK ;
+fun takaus_NK : NK ;
+fun takautua_VK : VK ;
+fun takautuma_NK : NK ;
+fun takavarikoida_VK : VK ;
+fun takavarikointi_NK : NK ;
+fun takellella_VK : VK ;
+fun takeneva_NK : NK ;
+fun takerrella_VK : VK ;
+fun takerrus_NK : NK ;
+fun takertaa_VK : VK ;
+fun takertua_VK : VK ;
+fun takertuma_NK : NK ;
+fun takia_AdvK : AdvK ;
+fun takiainen_NK : NK ;
+fun takila_NK : NK ;
+fun takiloida_VK : VK ;
+fun takilointi_NK : NK ;
+fun takimmainen_NK : NK ;
+fun takka_1_NK : NK ;
+fun takka_2_NK : NK ;
+fun takki_NK : NK ;
+fun takkinen_NK : NK ;
+fun takku_NK : NK ;
+fun takkuilla_VK : VK ;
+fun takkuilu_NK : NK ;
+fun takkuinen_AK : AK ;
+--+ fun takkuisesti_AdvK : AdvK ;
+fun takkuisuus_NK : NK ;
+fun takkuuntua_VK : VK ;
+fun taklaaja_NK : NK ;
+fun taklata_VK : VK ;
+fun taklaus_NK : NK ;
+fun takoa_VK : VK ;
+fun takoja_NK : NK ;
+fun takomo_NK : NK ;
+fun taksa_NK : NK ;
+fun taksari_NK : NK ;
+fun taksi_NK : NK ;
+fun taksia_NK : NK ;
+fun taksoittaa_VK : VK ;
+fun taksoitus_NK : NK ;
+fun taksonomia_NK : NK ;
+fun taksva'rkki_NK : NK ;
+fun taktiikka_NK : NK ;
+fun taktikko_NK : NK ;
+fun taktikoida_VK : VK ;
+fun taktikoija_NK : NK ;
+fun taktikointi_NK : NK ;
+fun taktinen_AK : AK ;
+--+ fun taktisesti_AdvK : AdvK ;
+fun taktisuus_NK : NK ;
+fun takuta_VK : VK ;
+fun takuu_NK : NK ;
+fun takuuaika_NK : NK ;
+fun talamus_NK : NK ;
+fun talari_NK : NK ;
+fun talas_NK : NK ;
+fun tali_NK : NK ;
+fun talidomidi_NK : NK ;
+fun talikko_NK : NK ;
+fun talismaani_NK : NK ;
+fun talja_1_NK : NK ;
+fun talja_2_NK : NK ;
+fun talkita_VK : VK ;
+fun talkkari_NK : NK ;
+fun talkki_NK : NK ;
+fun talkkuna_NK : NK ;
+fun talkoilla_VK : VK ;
+fun talkoo_NK : NK ;
+--? fun talkoot_NK : NK ;
+fun talla_1_NK : NK ;
+fun talla_2_NK : NK ;
+fun tallaaja_NK : NK ;
+fun tallaantua_VK : VK ;
+fun tallailla_VK : VK ;
+fun tallata_VK : VK ;
+fun tallaus_NK : NK ;
+fun tallautua_VK : VK ;
+fun tallella_AdvK : AdvK ;
+fun tallenne_NK : NK ;
+fun tallennin_NK : NK ;
+fun tallennus_NK : NK ;
+fun tallentaa_VK : VK ;
+fun tallentua_VK : VK ;
+fun tallessa_AdvK : AdvK ;
+fun tallesta_AdvK : AdvK ;
+fun tallete_NK : NK ;
+fun tallettaa_VK : VK ;
+fun tallettaja_NK : NK ;
+fun talletus_NK : NK ;
+fun talli_NK : NK ;
+fun tallium_NK : NK ;
+fun talloa_VK : VK ;
+fun tallukas_NK : NK ;
+fun tallukka_NK : NK ;
+fun tallustaa_VK : VK ;
+fun tallustella_VK : VK ;
+fun talmud_NK : NK ;
+fun talo_NK : NK ;
+fun talollinen_NK : NK ;
+fun talonki_NK : NK ;
+fun talonpoikainen_NK : NK ;
+fun talonpoikaisto_NK : NK ;
+fun talonpojisto_NK : NK ;
+fun talonviini_NK : NK ;
+fun talosilla_AdvK : AdvK ;
+fun talosille_AdvK : AdvK ;
+fun taloton_NK : NK ;
+fun taloudellinen_AK : AK ;
+--+ fun taloudellisesti_AdvK : AdvK ;
+fun taloudellistaa_VK : VK ;
+fun taloudellisuus_NK : NK ;
+fun talous_NK : NK ;
+fun talsia_VK : VK ;
+fun taltata_VK : VK ;
+fun talteen_AdvK : AdvK ;
+fun taltio_NK : NK ;
+fun taltioida_VK : VK ;
+fun taltiointi_NK : NK ;
+fun taltta_NK : NK ;
+fun talttaus_NK : NK ;
+fun talttua_VK : VK ;
+fun talttumaton_NK : NK ;
+fun taltuttaa_VK : VK ;
+fun taltuttamaton_NK : NK ;
+fun talutella_VK : VK ;
+fun talutin_NK : NK ;
+fun taluttaa_VK : VK ;
+fun taluttaja_NK : NK ;
+fun talveentua_VK : VK ;
+fun talvehdittaa_VK : VK ;
+fun talvehtia_VK : VK ;
+fun talvehtija_NK : NK ;
+fun talvehtimaton_NK : NK ;
+fun talvellinen_NK : NK ;
+fun talvemmaksi_AdvK : AdvK ;
+fun talvemmalla_AdvK : AdvK ;
+fun talvemmalle_AdvK : AdvK ;
+fun talvempana_AdvK : AdvK ;
+fun talveuttaa_VK : VK ;
+fun talveutua_VK : VK ;
+fun talvi_NK : NK ;
+fun talviaika_NK : NK ;
+fun talviasuttava_NK : NK ;
+fun talvikki_NK : NK ;
+fun talvinen_NK : NK ;
+fun talvio_NK : NK ;
+fun talvisaika_NK : NK ;
+fun talvisin_AdvK : AdvK ;
+fun tamburiini_NK : NK ;
+--? fun tamineet_NK : NK ;
+fun tamma_NK : NK ;
+fun tammi_1_NK : NK ;
+fun tammi_2_NK : NK ;
+fun tammi_3_NK : NK ;
+fun tamminen_NK : NK ;
+fun tammisto_NK : NK ;
+fun tammukka_NK : NK ;
+fun tampata_1_VK : VK ;
+fun tampata_2_VK : VK ;
+fun tamponi_NK : NK ;
+fun tamponoida_VK : VK ;
+fun tamppi_NK : NK ;
+fun tampuuri_NK : NK ;
+fun tanaan_AdvK : AdvK ;
+fun tanakasti_AdvK : AdvK ;
+fun tanakka_NK : NK ;
+fun tanakkuus_NK : NK ;
+fun tanakoitua_VK : VK ;
+fun tanassa_AdvK : AdvK ;
+fun tanatologi_NK : NK ;
+fun tanatologia_NK : NK ;
+fun tandem_NK : NK ;
+--? fun tangat_NK : NK ;
+fun tangeerata_VK : VK ;
+fun tangeeraus_NK : NK ;
+fun tangelo_NK : NK ;
+fun tangentiaalinen_NK : NK ;
+fun tangentti_NK : NK ;
+fun tango_NK : NK ;
+fun tanhu_NK : NK ;
+fun tanhua_NK : NK ;
+fun tanhuaja_NK : NK ;
+fun tanhuta_VK : VK ;
+fun tanhuvilla_AdvK : AdvK ;
+fun tanka_NK : NK ;
+fun tankata_1_VK : VK ;
+fun tankata_2_VK : VK ;
+fun tankea_NK : NK ;
+fun tankkailla_VK : VK ;
+fun tankkaus_1_NK : NK ;
+fun tankkaus_2_NK : NK ;
+fun tankkeri_NK : NK ;
+fun tankki_NK : NK ;
+fun tanko_NK : NK ;
+fun tanner_NK : NK ;
+fun tanniini_NK : NK ;
+fun tanska_NK : NK ;
+fun tanskandoggi_NK : NK ;
+fun tanskannos_NK : NK ;
+fun tanskantaa_VK : VK ;
+fun tanskatar_NK : NK ;
+fun tanssata_VK : VK ;
+fun tanssi_NK : NK ;
+fun tanssia_VK : VK ;
+--? fun tanssiaiset_NK : NK ;
+fun tanssija_NK : NK ;
+fun tanssijatar_NK : NK ;
+fun tanssillinen_NK : NK ;
+fun tanssitella_VK : VK ;
+fun tanssittaa_VK : VK ;
+fun tanssittaja_NK : NK ;
+fun tantaali_NK : NK ;
+fun tantere_NK : NK ;
+fun tantieemi_NK : NK ;
+fun tantta_NK : NK ;
+--+ fun tanttamaisesti_AdvK : AdvK ;
+fun tanttamaisuus_NK : NK ;
+fun tantti_NK : NK ;
+fun tanu_NK : NK ;
+fun taoismi_NK : NK ;
+fun taolainen_NK : NK ;
+fun taolaisuus_NK : NK ;
+fun taonnainen_NK : NK ;
+fun taonta_NK : NK ;
+fun taos_NK : NK ;
+fun taottaa_VK : VK ;
+fun taottavuus_NK : NK ;
+fun tapa_NK : NK ;
+fun tapaama_AdvK : AdvK ;
+fun tapaaminen_NK : NK ;
+fun tapahtua_VK : VK ;
+fun tapahtuma_NK : NK ;
+fun tapahtumainen_NK : NK ;
+fun tapahtumaton_NK : NK ;
+fun tapailla_VK : VK ;
+fun tapailu_NK : NK ;
+fun tapainen_AK : AK ;
+--+ fun tapaisesti_AdvK : AdvK ;
+fun tapaisuus_NK : NK ;
+fun tapani_NK : NK ;
+fun tapattaa_VK : VK ;
+fun tapaturmainen_AK : AK ;
+--+ fun tapaturmaisesti_AdvK : AdvK ;
+fun tapaturmaisuus_NK : NK ;
+fun tapatus_NK : NK ;
+fun tapauksekas_NK : NK ;
+fun tapaukseton_NK : NK ;
+fun tapauksinen_NK : NK ;
+fun tapauksittain_AdvK : AdvK ;
+fun tapauksittainen_NK : NK ;
+fun tapaus_NK : NK ;
+fun tapella_VK : VK ;
+fun tapetoida_VK : VK ;
+fun tapetointi_NK : NK ;
+fun tapetti_NK : NK ;
+fun tapiiri_NK : NK ;
+fun tapisoida_VK : VK ;
+fun tapittaa_VK : VK ;
+fun tapitus_NK : NK ;
+fun tappaa_VK : VK ;
+fun tappaja_NK : NK ;
+--? fun tappajaiset_NK : NK ;
+fun tappara_NK : NK ;
+fun tappelu_NK : NK ;
+fun tappelus_NK : NK ;
+fun tappi_NK : NK ;
+fun tappio_NK : NK ;
+fun tappiollinen_AK : AK ;
+--+ fun tappiollisesti_AdvK : AdvK ;
+fun tappiollisuus_NK : NK ;
+fun tappo_NK : NK ;
+fun tappura_NK : NK ;
+fun tapsi_NK : NK ;
+fun tapuli_NK : NK ;
+fun taputella_VK : VK ;
+fun taputtaa_VK : VK ;
+fun taputus_NK : NK ;
+fun tarakka_NK : NK ;
+fun taranteli_NK : NK ;
+fun tarantella_NK : NK ;
+fun tarha_NK : NK ;
+fun tarhaaja_NK : NK ;
+fun tarhata_VK : VK ;
+fun tarhaus_NK : NK ;
+fun tarhuri_NK : NK ;
+fun tariffi_NK : NK ;
+fun tariffoida_VK : VK ;
+fun tariffointi_NK : NK ;
+fun tarina_NK : NK ;
+fun tarinoida_VK : VK ;
+fun tarinoija_NK : NK ;
+fun tarinointi_NK : NK ;
+fun tarita_VK : VK ;
+fun tarjeta_VK : VK ;
+fun tarjoaja_NK : NK ;
+fun tarjoilija_NK : NK ;
+fun tarjoilijatar_NK : NK ;
+fun tarjoilla_VK : VK ;
+fun tarjoilu_NK : NK ;
+fun tarjokas_NK : NK ;
+fun tarjolla_AdvK : AdvK ;
+fun tarjolle_AdvK : AdvK ;
+fun tarjona_AdvK : AdvK ;
+fun tarjonta_NK : NK ;
+fun tarjooja_NK : NK ;
+fun tarjota_VK : VK ;
+fun tarjotin_NK : NK ;
+fun tarjous_NK : NK ;
+fun tarjoutua_VK : VK ;
+fun tarkalla_AdvK : AdvK ;
+fun tarkalle_AdvK : AdvK ;
+fun tarkalleen_AdvK : AdvK ;
+fun tarkastaa_VK : VK ;
+fun tarkastaja_NK : NK ;
+fun tarkastamo_NK : NK ;
+fun tarkastelija_NK : NK ;
+fun tarkastella_VK : VK ;
+fun tarkastelu_NK : NK ;
+fun tarkasti_AdvK : AdvK ;
+fun tarkastus_NK : NK ;
+fun tarkastuttaa_VK : VK ;
+fun tarkata_VK : VK ;
+fun tarke_NK : NK ;
+fun tarkemmin_AdvK : AdvK ;
+fun tarkennus_NK : NK ;
+fun tarkentaa_VK : VK ;
+fun tarkentua_VK : VK ;
+fun tarkimmin_AdvK : AdvK ;
+fun tarkistaa_VK : VK ;
+fun tarkistaja_NK : NK ;
+fun tarkistus_NK : NK ;
+fun tarkistuttaa_VK : VK ;
+fun tarkka_NK : NK ;
+fun tarkkaaja_NK : NK ;
+fun tarkkaamaton_NK : NK ;
+fun tarkkaamattomasti_AdvK : AdvK ;
+fun tarkkaamattomuus_NK : NK ;
+fun tarkkaamo_NK : NK ;
+fun tarkkaan_AdvK : AdvK ;
+fun tarkkaava_AK : AK ;
+fun tarkkaavainen_AK : AK ;
+--+ fun tarkkaavaisesti_AdvK : AdvK ;
+fun tarkkaavaisuus_NK : NK ;
+--+ fun tarkkaavasti_AdvK : AdvK ;
+fun tarkkaavuus_NK : NK ;
+fun tarkkailija_NK : NK ;
+fun tarkkailla_VK : VK ;
+fun tarkkailu_NK : NK ;
+--+ fun tarkkaka'tisesti_AdvK : AdvK ;
+--+ fun tarkkana'ko'isesti_AdvK : AdvK ;
+fun tarkkarajaisuus_NK : NK ;
+--+ fun tarkkasilma'isesti_AdvK : AdvK ;
+fun tarkkuus_NK : NK ;
+fun tarkkuuttaa_VK : VK ;
+fun tarkoin_AdvK : AdvK ;
+fun tarkoite_NK : NK ;
+fun tarkoittaa_VK : VK ;
+fun tarkoituksellinen_AK : AK ;
+--+ fun tarkoituksellisesti_AdvK : AdvK ;
+fun tarkoituksellisuus_NK : NK ;
+fun tarkoituksenmukaistaa_VK : VK ;
+fun tarkoituksenmukaistua_VK : VK ;
+fun tarkoitukseton_NK : NK ;
+fun tarkoituksettomasti_AdvK : AdvK ;
+fun tarkoituksettomuus_NK : NK ;
+fun tarkoitus_NK : NK ;
+--+ fun tarkoitushakuisesti_AdvK : AdvK ;
+fun tarmo_NK : NK ;
+fun tarmoinen_NK : NK ;
+fun tarmokas_AK : AK ;
+--+ fun tarmokkaasti_AdvK : AdvK ;
+fun tarmokkuus_NK : NK ;
+fun tarmoton_NK : NK ;
+fun tarokki_NK : NK ;
+fun tarot_NK : NK ;
+fun tarpeeksi_AdvK : AdvK ;
+fun tarpeellinen_NK : NK ;
+fun tarpeellisuus_NK : NK ;
+fun tarpeen_AdvK : AdvK ;
+fun tarpeeton_NK : NK ;
+fun tarpeettomasti_AdvK : AdvK ;
+fun tarpeettomuus_NK : NK ;
+fun tarpeinen_NK : NK ;
+fun tarpeisto_NK : NK ;
+fun tarpoa_VK : VK ;
+fun tarra_NK : NK ;
+fun tarrain_NK : NK ;
+fun tarrata_VK : VK ;
+fun tarrautua_VK : VK ;
+fun tartaani_NK : NK ;
+fun tarteletti_NK : NK ;
+fun tarttua_VK : VK ;
+fun tarttuma_NK : NK ;
+fun tartunnanlevitta'ja'_NK : NK ;
+fun tartunta_NK : NK ;
+fun tartuttaa_VK : VK ;
+fun tartutus_NK : NK ;
+fun taru_NK : NK ;
+--+ fun tarunomaisesti_AdvK : AdvK ;
+fun tarusto_NK : NK ;
+fun tarve_NK : NK ;
+fun tarveharkintainen_NK : NK ;
+fun tarvike_NK : NK ;
+fun tarvikkeisto_NK : NK ;
+fun tarvis_AdvK : AdvK ;
+fun tarvita_VK : VK ;
+fun tarvitsija_NK : NK ;
+fun tasaaja_NK : NK ;
+fun tasaan_AdvK : AdvK ;
+fun tasaannuttaa_VK : VK ;
+fun tasaantua_VK : VK ;
+fun tasa_arvoisesti_AdvK : AdvK ;
+fun tasa_arvoistaa_VK : VK ;
+fun tasa_arvoistua_VK : VK ;
+fun tasain_NK : NK ;
+fun tasainen_AK : AK ;
+--+ fun tasaisesti_AdvK : AdvK ;
+fun tasaisuus_NK : NK ;
+fun tasajakoisuus_NK : NK ;
+fun tasajalkaa_AdvK : AdvK ;
+fun tasajatkuinen_AK : AK ;
+--+ fun tasajatkuisesti_AdvK : AdvK ;
+fun tasajatkuisuus_NK : NK ;
+fun tasakkain_AdvK : AdvK ;
+fun tasakokoisuus_NK : NK ;
+fun tasakoosteisuus_NK : NK ;
+fun tasaka'pa'la'a'_AdvK : AdvK ;
+fun tasalakinen_NK : NK ;
+fun tasalevyinen_NK : NK ;
+fun tasalla_AdvK : AdvK ;
+fun tasalle_AdvK : AdvK ;
+fun tasalta_AdvK : AdvK ;
+--+ fun tasamittaisesti_AdvK : AdvK ;
+fun tasamittaisuus_NK : NK ;
+fun tasan_AdvK : AdvK ;
+fun tasanko_NK : NK ;
+fun tasanne_NK : NK ;
+fun tasapainoilla_VK : VK ;
+fun tasapainoilu_NK : NK ;
+--+ fun tasapainoisesti_AdvK : AdvK ;
+fun tasapainottomasti_AdvK : AdvK ;
+fun tasapari_NK : NK ;
+fun tasapituisuus_NK : NK ;
+--+ fun tasapuolisesti_AdvK : AdvK ;
+fun tasapuolistaa_VK : VK ;
+fun tasapuolistua_VK : VK ;
+fun tasapuolistus_NK : NK ;
+fun tasapuolisuus_NK : NK ;
+--+ fun tasapa'isesti_AdvK : AdvK ;
+fun tasapa'ista'a'_VK : VK ;
+fun tasapa'isyys_NK : NK ;
+fun tasareunaisuus_NK : NK ;
+fun tasassa_AdvK : AdvK ;
+fun tasasta_AdvK : AdvK ;
+--+ fun tasasuhtaisesti_AdvK : AdvK ;
+fun tasasuuntaaja_NK : NK ;
+fun tasata_VK : VK ;
+--+ fun tasatahtisesti_AdvK : AdvK ;
+fun tasatahtisuus_NK : NK ;
+fun tasatusten_AdvK : AdvK ;
+fun tasaus_NK : NK ;
+fun tasauttaa_VK : VK ;
+fun tasautua_VK : VK ;
+fun tasautus_NK : NK ;
+fun tasavaltainen_AK : AK ;
+--+ fun tasavaltaisesti_AdvK : AdvK ;
+--+ fun tasava'kisesti_AdvK : AdvK ;
+fun tasava'kisyys_NK : NK ;
+fun tasava'lisyys_NK : NK ;
+fun tase_NK : NK ;
+fun tasinko_NK : NK ;
+fun tasku_NK : NK ;
+fun taskukoko_NK : NK ;
+fun taso_NK : NK ;
+fun tasoihin_AdvK : AdvK ;
+fun tasoinen_NK : NK ;
+fun tasoissa_AdvK : AdvK ;
+fun tasoite_NK : NK ;
+fun tasoitella_VK : VK ;
+fun tasoitin_NK : NK ;
+fun tasoittaa_VK : VK ;
+fun tasoittua_VK : VK ;
+fun tasoitus_NK : NK ;
+fun tasokas_NK : NK ;
+fun tasouttaa_VK : VK ;
+fun tasoutus_NK : NK ;
+fun tassi_NK : NK ;
+fun tassu_NK : NK ;
+fun tassutella_VK : VK ;
+fun tassuttaa_VK : VK ;
+fun tataari_NK : NK ;
+fun tatami_NK : NK ;
+fun tatar_NK : NK ;
+fun tatska_NK : NK ;
+fun tattari_1_NK : NK ;
+fun tattari_2_NK : NK ;
+fun tatti_NK : NK ;
+fun tattis_AdvK : AdvK ;
+fun tattista_AdvK : AdvK ;
+fun tatuoida_VK : VK ;
+fun tatuointi_NK : NK ;
+fun tatuoittaa_VK : VK ;
+fun tau_NK : NK ;
+fun taudinlevitta'ja'_NK : NK ;
+fun tauditon_NK : NK ;
+fun tauhka_NK : NK ;
+fun tauko_NK : NK ;
+fun taukoamaton_NK : NK ;
+fun taukoamatta_AdvK : AdvK ;
+fun taula_NK : NK ;
+fun taulu_NK : NK ;
+fun taulukoida_VK : VK ;
+fun taulukointi_NK : NK ;
+fun tauota_VK : VK ;
+fun tauoton_NK : NK ;
+fun tauottaa_VK : VK ;
+fun tauottomasti_AdvK : AdvK ;
+fun tauottomuus_NK : NK ;
+fun taus_NK : NK ;
+fun tausta_NK : NK ;
+fun taustaa_VK : VK ;
+fun taustoittaa_VK : VK ;
+fun taustoitus_NK : NK ;
+fun tauti_NK : NK ;
+fun tautinen_AK : AK ;
+--+ fun tautisesti_AdvK : AdvK ;
+fun tautisuus_NK : NK ;
+fun tautofonia_NK : NK ;
+fun tautofoninen_NK : NK ;
+fun tautologia_NK : NK ;
+fun tautologinen_NK : NK ;
+fun tautta_AdvK : AdvK ;
+fun tavailla_VK : VK ;
+fun tavailu_NK : NK ;
+fun tavallaan_AdvK : AdvK ;
+fun tavallinen_AK : AK ;
+--+ fun tavallisesti_AdvK : AdvK ;
+fun tavallisuus_NK : NK ;
+--+ fun tavanomaisesti_AdvK : AdvK ;
+fun tavan_takaa_AdvK : AdvK ;
+fun tavara_NK : NK ;
+fun tavata_1_VK : VK ;
+fun tavata_2_VK : VK ;
+fun tavata_3_VK : VK ;
+fun tavaton_NK : NK ;
+fun tavattomasti_AdvK : AdvK ;
+fun tavattomuus_NK : NK ;
+fun taverna_NK : NK ;
+fun tavi_NK : NK ;
+fun taviokuurna_NK : NK ;
+fun tavis_NK : NK ;
+fun tavoin_AdvK : AdvK ;
+fun tavoite_NK : NK ;
+fun tavoitejohtaminen_NK : NK ;
+fun tavoitella_VK : VK ;
+fun tavoitesa'a'sta'minen_NK : NK ;
+fun tavoittaa_VK : VK ;
+fun tavoittamaton_NK : NK ;
+fun tavoittamattomiin_AdvK : AdvK ;
+fun tavoittamattomissa_AdvK : AdvK ;
+fun tavoittamattomuus_NK : NK ;
+fun tavoittavuus_NK : NK ;
+fun tavoitteellinen_AK : AK ;
+--+ fun tavoitteellisesti_AdvK : AdvK ;
+fun tavoitteellisuus_NK : NK ;
+fun tavoitteinen_NK : NK ;
+fun tavoittelija_NK : NK ;
+fun tavoittelu_NK : NK ;
+fun tavoitus_NK : NK ;
+fun tavu_NK : NK ;
+fun tavuinen_NK : NK ;
+fun tavunraja_NK : NK ;
+fun tavuttaa_VK : VK ;
+fun tavutus_NK : NK ;
+fun tax_free_NK : NK ;
+fun teak_NK : NK ;
+fun teatraalinen_AK : AK ;
+--+ fun teatraalisesti_AdvK : AdvK ;
+fun teatraalisuus_NK : NK ;
+fun teatteri_NK : NK ;
+fun teddy_1_NK : NK ;
+fun teddy_2_NK : NK ;
+fun tee_NK : NK ;
+fun teekkari_NK : NK ;
+fun teelmys_NK : NK ;
+fun teelma'_NK : NK ;
+fun teema_NK : NK ;
+fun teemoittaa_VK : VK ;
+fun teemoitus_NK : NK ;
+fun teenjuoja_NK : NK ;
+fun teenna'inen_AK : AK ;
+--+ fun teenna'isesti_AdvK : AdvK ;
+fun teenna'isyys_NK : NK ;
+fun teeri_NK : NK ;
+fun teesi_NK : NK ;
+fun teeskella'_VK : VK ;
+fun teeskennella'_VK : VK ;
+fun teeskentelema'tto'myys_NK : NK ;
+fun teeskentelema'tto'ma'sti_AdvK : AdvK ;
+fun teeskentelema'to'n_NK : NK ;
+fun teeskentelija'_NK : NK ;
+fun teeskentely_NK : NK ;
+fun teetto_NK : NK ;
+fun teetta'ja'_NK : NK ;
+fun teetta'a'_VK : VK ;
+fun teeta'tta'a'_VK : VK ;
+fun teevee_NK : NK ;
+fun tehdas_NK : NK ;
+--+ fun tehdasmaisesti_AdvK : AdvK ;
+fun tehdasmaistua_VK : VK ;
+fun tehdasmaisuus_NK : NK ;
+fun tehda'_VK : VK ;
+fun teho_NK : NK ;
+fun tehoaika_NK : NK ;
+fun tehoinen_AK : AK ;
+fun tehoisa_NK : NK ;
+--+ fun tehoisesti_AdvK : AdvK ;
+fun tehoisuus_NK : NK ;
+fun tehokas_AK : AK ;
+--+ fun tehokkaasti_AdvK : AdvK ;
+fun tehokkuus_NK : NK ;
+fun tehollinen_NK : NK ;
+fun tehostaa_VK : VK ;
+fun tehostaja_NK : NK ;
+fun tehoste_NK : NK ;
+fun tehosteinen_NK : NK ;
+fun tehostin_NK : NK ;
+fun tehostua_VK : VK ;
+fun tehostus_NK : NK ;
+fun tehota_VK : VK ;
+fun tehote_NK : NK ;
+fun tehoton_NK : NK ;
+fun tehottaa_VK : VK ;
+fun tehottomasti_AdvK : AdvK ;
+fun tehottomuus_NK : NK ;
+fun tehotus_NK : NK ;
+fun tehtailija_NK : NK ;
+fun tehtailla_VK : VK ;
+fun tehtailu_NK : NK ;
+fun tehta'va'_NK : NK ;
+fun teiini_NK : NK ;
+fun teikaroida_VK : VK ;
+fun teikarointi_NK : NK ;
+fun teikata_VK : VK ;
+fun teikkaus_NK : NK ;
+fun teikki_NK : NK ;
+fun teika'la'inen_NK : NK ;
+fun teika'la'isitta'in_AdvK : AdvK ;
+fun teilata_VK : VK ;
+fun teilaus_NK : NK ;
+fun teili_NK : NK ;
+fun teinen_NK : NK ;
+fun teini_NK : NK ;
+fun teipata_VK : VK ;
+fun teippaus_NK : NK ;
+fun teippi_NK : NK ;
+fun teismi_NK : NK ;
+fun teisti_1_NK : NK ;
+fun teisti_2_NK : NK ;
+fun teistinen_NK : NK ;
+fun teititella'_VK : VK ;
+fun teitittely_NK : NK ;
+fun teitse_AdvK : AdvK ;
+fun tekaista_VK : VK ;
+--? fun tekarit_NK : NK ;
+fun tekeille_AdvK : AdvK ;
+fun tekeilla'_AdvK : AdvK ;
+fun tekele_NK : NK ;
+fun tekeminen_NK : NK ;
+fun tekema'to'n_NK : NK ;
+fun tekeva'_NK : NK ;
+fun tekeytya'_VK : VK ;
+fun tekija'_NK : NK ;
+fun tekija'inen_NK : NK ;
+--? fun tekia'iset_NK : NK ;
+fun teknetium_NK : NK ;
+fun tekniikka_NK : NK ;
+fun teknikko_NK : NK ;
+fun teknillinen_NK : NK ;
+fun tekninen_AK : AK ;
+--+ fun teknisesti_AdvK : AdvK ;
+fun teknistya'_VK : VK ;
+fun teknista'a'_VK : VK ;
+fun teknisyys_NK : NK ;
+fun tekno_NK : NK ;
+fun teknokraatti_NK : NK ;
+fun teknokraattinen_NK : NK ;
+fun teknokratia_NK : NK ;
+fun teknologi_NK : NK ;
+fun teknologia_NK : NK ;
+fun teknologinen_NK : NK ;
+fun teko_NK : NK ;
+fun tekoinen_AK : AK ;
+--+ fun tekoisesti_AdvK : AdvK ;
+fun tekoisuus_NK : NK ;
+fun tekonen_NK : NK ;
+fun teksasilainen_NK : NK ;
+fun tekstaaja_NK : NK ;
+fun tekstata_VK : VK ;
+fun tekstaus_NK : NK ;
+fun teksti_NK : NK ;
+fun tekstiili_NK : NK ;
+fun tekstinen_NK : NK ;
+fun tekstinno's_NK : NK ;
+fun tekstinta'a'_VK : VK ;
+fun tekstitta'ja'_NK : NK ;
+fun tekstitta'a'_VK : VK ;
+fun tekstitys_NK : NK ;
+fun teksturi_NK : NK ;
+fun teksturoida_VK : VK ;
+fun teksturointi_NK : NK ;
+fun tekstuuri_NK : NK ;
+fun tektoniikka_NK : NK ;
+fun tektoninen_NK : NK ;
+fun teku_NK : NK ;
+fun tela_NK : NK ;
+fun telakka_NK : NK ;
+fun telakoida_VK : VK ;
+fun telakointi_NK : NK ;
+fun telakoitua_VK : VK ;
+fun telata_VK : VK ;
+fun tele_NK : NK ;
+fun telefoni_NK : NK ;
+fun telekineesi_NK : NK ;
+fun telekinesia_NK : NK ;
+fun teleksi_NK : NK ;
+fun telemaattinen_NK : NK ;
+fun telemark_NK : NK ;
+fun telematiikka_NK : NK ;
+fun telemetria_NK : NK ;
+fun teleologia_NK : NK ;
+fun teleologinen_NK : NK ;
+fun telepaattinen_NK : NK ;
+fun telepatia_NK : NK ;
+fun teleskooppi_NK : NK ;
+fun teleskooppinen_AK : AK ;
+--+ fun teleskooppisesti_AdvK : AdvK ;
+fun televisioesiintyminen_NK : NK ;
+fun televisioida_VK : VK ;
+fun televisioitse_AdvK : AdvK ;
+fun teli_NK : NK ;
+fun teline_NK : NK ;
+fun telje_NK : NK ;
+fun teljeta'_VK : VK ;
+fun teljo_NK : NK ;
+fun telki_NK : NK ;
+fun telkka_NK : NK ;
+fun telkkari_NK : NK ;
+fun telkku_NK : NK ;
+fun telkka'_NK : NK ;
+fun tellinki_NK : NK ;
+fun telluuri_NK : NK ;
+fun telluurinen_NK : NK ;
+fun telluurio_NK : NK ;
+fun telmia'_VK : VK ;
+fun telma'ta'_VK : VK ;
+fun telma'a'_VK : VK ;
+fun teloa_VK : VK ;
+fun teloilla_AdvK : AdvK ;
+fun teloillaan_AdvK : AdvK ;
+fun teloille_AdvK : AdvK ;
+fun teloilleen_AdvK : AdvK ;
+fun teloilta_AdvK : AdvK ;
+fun teloiltaan_AdvK : AdvK ;
+fun teloittaa_VK : VK ;
+fun teloittaja_NK : NK ;
+fun teloitus_NK : NK ;
+fun teloituttaa_VK : VK ;
+fun teltta_NK : NK ;
+fun telttailija_NK : NK ;
+fun telttailla_VK : VK ;
+fun telttailu_NK : NK ;
+fun temaattinen_NK : NK ;
+fun tematiikka_NK : NK ;
+fun temmata_VK : VK ;
+fun temmellys_NK : NK ;
+fun temmelta'a'_VK : VK ;
+fun tempaantua_VK : VK ;
+fun tempaista_VK : VK ;
+fun tempaisu_NK : NK ;
+fun tempaus_NK : NK ;
+fun tempautua_VK : VK ;
+fun tempera_NK : NK ;
+fun temperamentikas_NK : NK ;
+fun temperamentti_NK : NK ;
+fun temperamenttinen_NK : NK ;
+fun temperamenttisuus_NK : NK ;
+fun temperoida_VK : VK ;
+fun tempo_NK : NK ;
+fun tempoa_VK : VK ;
+fun tempoilla_VK : VK ;
+fun tempoilu_NK : NK ;
+fun tempoinen_NK : NK ;
+fun temporaalinen_NK : NK ;
+fun temporaarinen_NK : NK ;
+fun temppeli_NK : NK ;
+fun temppu_NK : NK ;
+fun temppuilija_NK : NK ;
+fun temppuilla_VK : VK ;
+fun temppuilu_NK : NK ;
+fun tempus_NK : NK ;
+fun tenava_NK : NK ;
+fun tendenssi_NK : NK ;
+fun tenho_NK : NK ;
+fun tenhota_VK : VK ;
+fun tenkkapoo_NK : NK ;
+fun tennari_NK : NK ;
+fun tennis_NK : NK ;
+fun tenori_NK : NK ;
+fun tensidi_NK : NK ;
+fun tensio_NK : NK ;
+fun tentaattori_NK : NK ;
+fun tentata_VK : VK ;
+fun tenttaaja_NK : NK ;
+fun tenttaus_NK : NK ;
+fun tentti_NK : NK ;
+fun tenttija'_NK : NK ;
+fun tenttia'_VK : VK ;
+fun tenttu_NK : NK ;
+fun tenu_NK : NK ;
+fun tena'_AdvK : AdvK ;
+fun tena'ta'_VK : VK ;
+fun teodoliitti_NK : NK ;
+fun teokraattinen_NK : NK ;
+fun teokratia_NK : NK ;
+fun teollinen_AK : AK ;
+--+ fun teollisesti_AdvK : AdvK ;
+fun teollistaa_VK : VK ;
+fun teollistua_VK : VK ;
+fun teollisuus_NK : NK ;
+fun teologi_NK : NK ;
+fun teologia_NK : NK ;
+fun teologinen_NK : NK ;
+fun teoreema_NK : NK ;
+fun teoreetikko_NK : NK ;
+fun teoreettinen_AK : AK ;
+--+ fun teoreettisesti_AdvK : AdvK ;
+fun teoreettisuus_NK : NK ;
+fun teoretisoida_VK : VK ;
+fun teoria_NK : NK ;
+fun teorioida_VK : VK ;
+fun teoriointi_NK : NK ;
+fun teos_NK : NK ;
+fun teosofi_NK : NK ;
+fun teosofia_NK : NK ;
+fun teosofinen_NK : NK ;
+fun tepastella_VK : VK ;
+fun tepastelu_NK : NK ;
+fun tepponen_NK : NK ;
+fun tepsia'_VK : VK ;
+fun tepsutella_VK : VK ;
+fun tepsuttaa_VK : VK ;
+fun tepsutus_NK : NK ;
+fun tequila_NK : NK ;
+fun terapeutti_NK : NK ;
+fun terapeuttinen_NK : NK ;
+fun terapia_NK : NK ;
+fun terapoida_VK : VK ;
+fun terapointi_NK : NK ;
+fun terassi_NK : NK ;
+fun teratogeeni_NK : NK ;
+fun teratogeeninen_NK : NK ;
+fun tere_NK : NK ;
+fun terhakas_AK : AK ;
+fun terhakasti_AdvK : AdvK ;
+fun terhakka_NK : NK ;
+--+ fun terhakkaasti_AdvK : AdvK ;
+fun terhakkuus_NK : NK ;
+fun terhennella'_VK : VK ;
+fun terhentely_NK : NK ;
+fun terho_NK : NK ;
+fun teritta'a'_VK : VK ;
+fun teritys_NK : NK ;
+fun terio'_NK : NK ;
+fun terio'inen_NK : NK ;
+--? fun terkut_NK : NK ;
+fun termari_NK : NK ;
+fun termi_NK : NK ;
+fun termiikki_NK : NK ;
+fun termiini_NK : NK ;
+fun termiitti_1_NK : NK ;
+fun termiitti_2_NK : NK ;
+fun terminen_NK : NK ;
+fun terminoida_VK : VK ;
+fun terminointi_NK : NK ;
+fun terminologia_NK : NK ;
+fun terminologinen_NK : NK ;
+fun termistori_NK : NK ;
+fun termisto'_NK : NK ;
+fun termonukleaarinen_NK : NK ;
+fun termopari_NK : NK ;
+fun termos_NK : NK ;
+fun termostaatti_NK : NK ;
+fun teroitin_NK : NK ;
+fun teroittaa_VK : VK ;
+fun teroittaja_NK : NK ;
+fun teroittua_VK : VK ;
+fun teroitus_NK : NK ;
+fun terpeeni_NK : NK ;
+fun terraario_NK : NK ;
+fun terrakotta_NK : NK ;
+fun terrasti_NK : NK ;
+fun terrieri_NK : NK ;
+fun terriini_NK : NK ;
+fun territoriaalinen_NK : NK ;
+fun territorio_NK : NK ;
+fun terrori_NK : NK ;
+fun terrorismi_NK : NK ;
+fun terrorisoida_VK : VK ;
+fun terroristi_NK : NK ;
+fun terroristinen_NK : NK ;
+fun terska_NK : NK ;
+fun terssi_NK : NK ;
+fun tertia'a'ri_NK : NK ;
+fun tertia'a'rinen_NK : NK ;
+fun tertsetti_NK : NK ;
+fun terttu_NK : NK ;
+fun terva_NK : NK ;
+fun tervaantua_VK : VK ;
+fun tervainen_NK : NK ;
+fun tervakko_NK : NK ;
+fun tervaksinen_NK : NK ;
+fun tervas_NK : NK ;
+fun tervata_VK : VK ;
+fun tervaus_NK : NK ;
+fun tervautua_VK : VK ;
+fun terve_AK : AK ;
+fun terveellinen_AK : AK ;
+--+ fun terveellisesti_AdvK : AdvK ;
+fun terveellisyys_NK : NK ;
+--+ fun terveesti_AdvK : AdvK ;
+fun tervehdys_NK : NK ;
+fun tervehdytta'a'_VK : VK ;
+fun tervehtija'_NK : NK ;
+fun tervehtia'_VK : VK ;
+fun tervehtya'_VK : VK ;
+fun tervehta'a'_VK : VK ;
+--? fun terveiset_NK : NK ;
+fun tervemenoa_AdvK : AdvK ;
+fun tervetullut_NK : NK ;
+fun tervetuloa_AdvK : AdvK ;
+fun terveydellinen_NK : NK ;
+fun terveys_NK : NK ;
+fun terveytta'a'_VK : VK ;
+fun terveytys_NK : NK ;
+fun tera'_NK : NK ;
+fun tera'inen_NK : NK ;
+fun tera'ksinen_NK : NK ;
+fun tera'ka's_NK : NK ;
+fun tera's_NK : NK ;
+fun tera'ste_NK : NK ;
+fun tera'stys_NK : NK ;
+fun tera'stya'_VK : VK ;
+fun tera'sta'ytya'_VK : VK ;
+fun tera'sta'a'_VK : VK ;
+fun tera'sto'_NK : NK ;
+fun tera'svaari_NK : NK ;
+fun tera'vyys_NK : NK ;
+fun tera'va'_AK : AK ;
+fun tera'va'ja'rkisesti_AdvK : AdvK ;
+fun tera'va'ja'rkisyys_NK : NK ;
+fun tera'va'katseisesti_AdvK : AdvK ;
+fun tera'va'kielisesti_AdvK : AdvK ;
+fun tera'va'na'ko'isesti_AdvK : AdvK ;
+fun tera'va'sanaisesti_AdvK : AdvK ;
+--+ fun tera'va'sti_AdvK : AdvK ;
+fun tera'vo'itta'a'_VK : VK ;
+fun tera'vo'itya'_VK : VK ;
+fun tesaurus_NK : NK ;
+fun tesla_NK : NK ;
+fun tesma_NK : NK ;
+fun testaaja_NK : NK ;
+fun testamentata_VK : VK ;
+fun testamenttaaja_NK : NK ;
+fun testamenttaus_NK : NK ;
+fun testamentti_NK : NK ;
+fun testata_VK : VK ;
+fun testaus_NK : NK ;
+fun testeri_NK : NK ;
+fun testi_NK : NK ;
+fun testikkeli_NK : NK ;
+fun testisto'_NK : NK ;
+fun testosteroni_NK : NK ;
+fun tetanus_NK : NK ;
+fun tetra_NK : NK ;
+fun tetraedri_NK : NK ;
+fun tetrasykliini_NK : NK ;
+fun teuhata_VK : VK ;
+fun teuras_NK : NK ;
+fun teurastaa_VK : VK ;
+fun teurastaja_NK : NK ;
+fun teurastamo_NK : NK ;
+fun teurastus_NK : NK ;
+fun teutaroida_VK : VK ;
+fun teutoni_NK : NK ;
+fun texasilainen_NK : NK ;
+fun thai_NK : NK ;
+fun theeta_NK : NK ;
+fun thorax_NK : NK ;
+fun tiaara_NK : NK ;
+fun tiainen_NK : NK ;
+fun tic_NK : NK ;
+fun tie_NK : NK ;
+fun tie_break_NK : NK ;
+fun tiede_NK : NK ;
+fun tiedollinen_NK : NK ;
+fun tiedostaa_VK : VK ;
+fun tiedostamaton_NK : NK ;
+fun tiedostamattomuus_NK : NK ;
+fun tiedosto_NK : NK ;
+fun tiedostua_VK : VK ;
+fun tiedote_NK : NK ;
+fun tiedoton_NK : NK ;
+fun tiedottaa_VK : VK ;
+fun tiedottaja_NK : NK ;
+fun tiedottomasti_AdvK : AdvK ;
+fun tiedottomuus_NK : NK ;
+fun tiedotus_NK : NK ;
+fun tiedustaa_VK : VK ;
+fun tiedustelija_NK : NK ;
+fun tiedustella_VK : VK ;
+fun tiedustelu_NK : NK ;
+fun tiehensa'_AdvK : AdvK ;
+fun tiehyellinen_NK : NK ;
+fun tiehyeto'n_NK : NK ;
+fun tiehyt_NK : NK ;
+fun tienaaja_NK : NK ;
+fun tienailla_VK : VK ;
+fun tienata_VK : VK ;
+fun tienesti_NK : NK ;
+fun tienna'ytta'ja'_NK : NK ;
+fun tienoo_NK : NK ;
+fun tienviitta_NK : NK ;
+fun tiepuolessa_AdvK : AdvK ;
+fun tiera_NK : NK ;
+fun ties_AdvK : AdvK ;
+fun tiessa'a'n_AdvK : AdvK ;
+fun tiesto'_NK : NK ;
+fun tieteellinen_AK : AK ;
+--+ fun tieteellisesti_AdvK : AdvK ;
+fun tieteellistya'_VK : VK ;
+fun tieteellista'a'_VK : VK ;
+fun tieteellisyys_NK : NK ;
+fun tieteilija'_NK : NK ;
+fun tieteilla'_VK : VK ;
+fun tieteily_NK : NK ;
+fun tieten_AdvK : AdvK ;
+fun tietenkin_AdvK : AdvK ;
+fun tietenka'a'n_AdvK : AdvK ;
+fun tieto_NK : NK ;
+--+ fun tietoisesti_AdvK : AdvK ;
+fun tietoisuus_NK : NK ;
+--+ fun tietokoneavusteisesti_AdvK : AdvK ;
+--+ fun tietopuolisesti_AdvK : AdvK ;
+fun tietous_NK : NK ;
+fun tietty_NK : NK ;
+fun tietta'va'ksi_AdvK : AdvK ;
+fun tietta'va'sti_AdvK : AdvK ;
+fun tietue_NK : NK ;
+fun tieturi_NK : NK ;
+fun tietyma'to'n_NK : NK ;
+fun tietynlainen_NK : NK ;
+fun tietysti_AdvK : AdvK ;
+fun tieta'_AdvK : AdvK ;
+fun tieta'ja'_NK : NK ;
+fun tieta'mys_NK : NK ;
+fun tieta'ma'_AdvK : AdvK ;
+fun tieta'ma'tto'myys_NK : NK ;
+fun tieta'ma'to'n_NK : NK ;
+fun tieta'vyys_NK : NK ;
+fun tieta'va'_AK : AK ;
+--+ fun tieta'va'sti_AdvK : AdvK ;
+fun tieta'a'_VK : VK ;
+fun tieta'a'kseen_AdvK : AdvK ;
+fun tieto'n_NK : NK ;
+fun tiheikko'_NK : NK ;
+fun tihennys_NK : NK ;
+fun tihentyma'_NK : NK ;
+fun tihentya'_VK : VK ;
+fun tihenta'a'_VK : VK ;
+fun tiherta'a'_VK : VK ;
+fun tiheta'_VK : VK ;
+fun tiheys_NK : NK ;
+fun tihea'_AK : AK ;
+fun tihea'ssa'_AdvK : AdvK ;
+--+ fun tihea'sti_AdvK : AdvK ;
+fun tihea'a'n_AdvK : AdvK ;
+fun tihku_NK : NK ;
+fun tihkua_VK : VK ;
+fun tihkuinen_NK : NK ;
+fun tihkuta_VK : VK ;
+fun tihkuttaa_VK : VK ;
+fun tihruinen_NK : NK ;
+fun tihrullaan_AdvK : AdvK ;
+fun tihrussa_AdvK : AdvK ;
+fun tihu_NK : NK ;
+fun tihutella_VK : VK ;
+fun tihuttaa_VK : VK ;
+fun tihutus_NK : NK ;
+fun tihuuttaa_VK : VK ;
+fun tii_NK : NK ;
+fun tiibet_NK : NK ;
+fun tiibetila'inen_NK : NK ;
+fun tiikeri_NK : NK ;
+fun tiikki_NK : NK ;
+fun tiikkinen_NK : NK ;
+fun tiili_NK : NK ;
+fun tiilinen_NK : NK ;
+fun tiima_NK : NK ;
+fun tiimellys_NK : NK ;
+fun tiimi_NK : NK ;
+fun tiimoilta_AdvK : AdvK ;
+fun tiine_NK : NK ;
+fun tiinehtia'_VK : VK ;
+fun tiinehtya'_VK : VK ;
+fun tiinehta'a'_VK : VK ;
+fun tiineys_NK : NK ;
+fun tiineysaika_NK : NK ;
+fun tiineytta'a'_VK : VK ;
+fun tiinu_NK : NK ;
+fun tiira_NK : NK ;
+fun tiirailla_VK : VK ;
+fun tiirailu_NK : NK ;
+fun tiirata_VK : VK ;
+fun tiirikoida_VK : VK ;
+fun tiirikointi_NK : NK ;
+fun tiistai_NK : NK ;
+fun tiistainen_NK : NK ;
+fun tiistaisin_AdvK : AdvK ;
+fun tiitia'inen_NK : NK ;
+fun tiiveys_NK : NK ;
+--+ fun tiiviisti_AdvK : AdvK ;
+fun tiivis_AK : AK ;
+fun tiiviste_NK : NK ;
+fun tiivistelma'_NK : NK ;
+fun tiivistyma'_NK : NK ;
+fun tiivistys_NK : NK ;
+fun tiivistya'_VK : VK ;
+fun tiivista'a'_VK : VK ;
+fun tiiviys_NK : NK ;
+fun tiivio'_NK : NK ;
+fun tikahtua_VK : VK ;
+fun tikankontti_NK : NK ;
+fun tikari_NK : NK ;
+fun tikata_VK : VK ;
+fun tiketti_NK : NK ;
+fun tikitta'a'_VK : VK ;
+fun tikka_NK : NK ;
+--? fun tikkaat_NK : NK ;
+fun tikkari_NK : NK ;
+fun tikkaus_NK : NK ;
+fun tikki_NK : NK ;
+fun tikku_NK : NK ;
+fun tikkuinen_NK : NK ;
+fun tikkuri_1_NK : NK ;
+fun tikkuri_2_NK : NK ;
+fun tikli_NK : NK ;
+fun tila_NK : NK ;
+fun tilaaja_NK : NK ;
+fun tilaisuus_NK : NK ;
+fun tilakoko_NK : NK ;
+fun tilallinen_NK : NK ;
+fun tilanahtaus_NK : NK ;
+fun tilanne_NK : NK ;
+--+ fun tilapa'isesti_AdvK : AdvK ;
+fun tilapa'issuoja_NK : NK ;
+fun tilapa'isyys_NK : NK ;
+fun tilasto_NK : NK ;
+fun tilastoaika_NK : NK ;
+fun tilastoida_VK : VK ;
+fun tilastoija_NK : NK ;
+fun tilastointi_NK : NK ;
+fun tilastollinen_AK : AK ;
+--+ fun tilastollisesti_AdvK : AdvK ;
+fun tilata_VK : VK ;
+fun tilaton_NK : NK ;
+fun tilaus_NK : NK ;
+fun tilausaika_NK : NK ;
+fun tilava_AK : AK ;
+--+ fun tilavasti_AdvK : AdvK ;
+fun tilavuinen_NK : NK ;
+fun tilavuus_NK : NK ;
+fun tilde_NK : NK ;
+fun tilhi_NK : NK ;
+fun tili_NK : NK ;
+fun tilinpidollinen_NK : NK ;
+fun tilitta'ja'_NK : NK ;
+fun tilitta'a'_VK : VK ;
+fun tilitys_NK : NK ;
+fun tilio'ida'_VK : VK ;
+fun tilio'inti_NK : NK ;
+fun tilke_NK : NK ;
+fun tilkinta'_NK : NK ;
+fun tilkitys_NK : NK ;
+fun tilkita'_VK : VK ;
+fun tilkka_NK : NK ;
+fun tilkkanen_NK : NK ;
+fun tilkku_NK : NK ;
+fun tilli_NK : NK ;
+fun tillitta'a'_VK : VK ;
+fun tilpeho'o'ri_NK : NK ;
+fun tilsa_NK : NK ;
+fun tilsit_NK : NK ;
+fun tiltaltti_NK : NK ;
+fun tilus_NK : NK ;
+fun timantti_NK : NK ;
+fun timanttinen_NK : NK ;
+fun timbaali_NK : NK ;
+fun timjami_NK : NK ;
+fun timotei_NK : NK ;
+fun timperi_NK : NK ;
+fun timpermanni_NK : NK ;
+fun timpuri_NK : NK ;
+fun tina_NK : NK ;
+fun tinainen_NK : NK ;
+fun tinata_VK : VK ;
+fun tinaus_NK : NK ;
+fun tingassa_AdvK : AdvK ;
+fun tingata_VK : VK ;
+fun tingeltangeli_NK : NK ;
+fun tinka_NK : NK ;
+fun tinkaaja_NK : NK ;
+fun tinkaan_AdvK : AdvK ;
+fun tinki_NK : NK ;
+fun tinkima'tto'myys_NK : NK ;
+fun tinkima'tto'ma'sti_AdvK : AdvK ;
+fun tinkima'to'n_NK : NK ;
+fun tinkia'_VK : VK ;
+fun tinktuura_NK : NK ;
+fun tinneri_NK : NK ;
+fun tinnerismi_NK : NK ;
+fun tinneristi_NK : NK ;
+fun tintata_VK : VK ;
+fun tintti_NK : NK ;
+fun tipahdella_VK : VK ;
+fun tipahdus_NK : NK ;
+fun tipahtaa_VK : VK ;
+fun tipauttaa_VK : VK ;
+fun tipoittain_AdvK : AdvK ;
+fun tippa_NK : NK ;
+fun tippari_NK : NK ;
+fun tippi_NK : NK ;
+fun tippua_VK : VK ;
+fun tippuri_NK : NK ;
+fun tipsuttaa_VK : VK ;
+fun tipsutus_NK : NK ;
+fun tiptop_AdvK : AdvK ;
+fun tipu_NK : NK ;
+fun tiputella_VK : VK ;
+fun tiputtaa_VK : VK ;
+fun tiputus_NK : NK ;
+fun tirahdella_VK : VK ;
+fun tirahdus_NK : NK ;
+fun tirahtaa_VK : VK ;
+fun tiraus_NK : NK ;
+fun tirauttaa_VK : VK ;
+fun tirehto'o'ri_NK : NK ;
+fun tiristys_NK : NK ;
+fun tirista'_VK : VK ;
+fun tirista'a'_VK : VK ;
+fun tirkistelija'_NK : NK ;
+fun tirkistella'_VK : VK ;
+fun tirkistely_NK : NK ;
+fun tirkistys_NK : NK ;
+fun tirkista'a'_VK : VK ;
+fun tirri_NK : NK ;
+--? fun tirsat_NK : NK ;
+fun tirskahdella_VK : VK ;
+fun tirskahdus_NK : NK ;
+fun tirskahtaa_VK : VK ;
+fun tirskaus_NK : NK ;
+fun tirskauttaa_VK : VK ;
+fun tirskua_VK : VK ;
+fun tirskutella_VK : VK ;
+fun tirskuttaa_VK : VK ;
+fun tirskutus_NK : NK ;
+fun tirsua_VK : VK ;
+fun tiskaaja_NK : NK ;
+fun tiskari_NK : NK ;
+fun tiskata_VK : VK ;
+fun tiskaus_NK : NK ;
+fun tiski_NK : NK ;
+fun tislaamo_NK : NK ;
+fun tislaantua_VK : VK ;
+fun tislain_NK : NK ;
+fun tislata_VK : VK ;
+fun tislaus_NK : NK ;
+fun tislautua_VK : VK ;
+fun tisle_NK : NK ;
+fun tismalleen_AdvK : AdvK ;
+fun tissi_NK : NK ;
+fun tissutella_VK : VK ;
+fun tissuttaa_VK : VK ;
+fun tissuttelu_NK : NK ;
+fun tisu_NK : NK ;
+fun tisuri_NK : NK ;
+fun titaani_NK : NK ;
+fun titaaninen_NK : NK ;
+fun titityy_AdvK : AdvK ;
+fun titrata_VK : VK ;
+fun titraus_NK : NK ;
+fun titteli_NK : NK ;
+fun titteri_NK : NK ;
+fun tituleerata_VK : VK ;
+fun tituloida_VK : VK ;
+fun titulointi_NK : NK ;
+fun tiu_NK : NK ;
+fun tiuha_NK : NK ;
+fun tiuhentaa_VK : VK ;
+fun tiuhentua_VK : VK ;
+fun tiuheta_VK : VK ;
+fun tiukalla_AdvK : AdvK ;
+fun tiukalle_AdvK : AdvK ;
+fun tiukassa_AdvK : AdvK ;
+fun tiukasti_AdvK : AdvK ;
+fun tiukata_VK : VK ;
+fun tiukentaa_VK : VK ;
+fun tiukentua_VK : VK ;
+fun tiuketa_VK : VK ;
+fun tiukilla_AdvK : AdvK ;
+fun tiukille_AdvK : AdvK ;
+fun tiukka_NK : NK ;
+fun tiukkaan_AdvK : AdvK ;
+fun tiukkapipoinen_AK : AK ;
+--+ fun tiukkapipoisesti_AdvK : AdvK ;
+fun tiukkapipoisuus_NK : NK ;
+fun tiukkua_VK : VK ;
+fun tiukkuus_NK : NK ;
+fun tiukoilla_AdvK : AdvK ;
+fun tiukoille_AdvK : AdvK ;
+fun tiuku_NK : NK ;
+fun tiuskahdella_VK : VK ;
+fun tiuskaista_VK : VK ;
+fun tiuskia_VK : VK ;
+fun tivata_VK : VK ;
+fun tivoli_NK : NK ;
+fun toaletti_NK : NK ;
+fun toccata_NK : NK ;
+fun todella_AdvK : AdvK ;
+fun todellinen_AK : AK ;
+--+ fun todellisesti_AdvK : AdvK ;
+fun todellistaa_VK : VK ;
+fun todellistua_VK : VK ;
+fun todellisuus_NK : NK ;
+fun todellisuuspakoisuus_NK : NK ;
+fun todennus_NK : NK ;
+--+ fun todenna'ko'isesti_AdvK : AdvK ;
+fun todentaa_VK : VK ;
+fun todentua_VK : VK ;
+fun todesta_AdvK : AdvK ;
+fun todesti_AdvK : AdvK ;
+fun todeta_VK : VK ;
+fun todistaa_VK : VK ;
+fun todistaja_NK : NK ;
+fun todistamaton_NK : NK ;
+fun todiste_NK : NK ;
+fun todisteellinen_AK : AK ;
+--+ fun todisteellisesti_AdvK : AdvK ;
+fun todisteellisuus_NK : NK ;
+fun todistella_VK : VK ;
+fun todistelu_NK : NK ;
+fun todistua_VK : VK ;
+fun todistus_NK : NK ;
+fun todistuttaa_VK : VK ;
+fun toeta_VK : VK ;
+fun toffee_NK : NK ;
+fun tofu_NK : NK ;
+fun toga_NK : NK ;
+fun tohelo_NK : NK ;
+fun toheloida_VK : VK ;
+fun tohelointi_NK : NK ;
+fun toheltaa_VK : VK ;
+fun tohina_NK : NK ;
+fun tohista_VK : VK ;
+fun tohjoksi_AdvK : AdvK ;
+fun tohjona_AdvK : AdvK ;
+fun tohkeissaan_AdvK : AdvK ;
+fun tohtia_VK : VK ;
+fun tohtori_NK : NK ;
+fun tohtoroida_VK : VK ;
+fun tohtorointi_NK : NK ;
+fun tohtoroitua_VK : VK ;
+fun tohveli_NK : NK ;
+fun toikkaroida_VK : VK ;
+fun toikkarointi_NK : NK ;
+fun toilailla_VK : VK ;
+fun toilailu_NK : NK ;
+fun toilaus_NK : NK ;
+fun toimeenpanna_VK : VK ;
+fun toimekas_AK : AK ;
+--+ fun toimekkaasti_AdvK : AdvK ;
+fun toimekkuus_NK : NK ;
+--+ fun toimeliaasti_AdvK : AdvK ;
+fun toimeliaisuus_NK : NK ;
+fun toimelias_AK : AK ;
+fun toimenpide_NK : NK ;
+fun toimeton_NK : NK ;
+fun toimi_NK : NK ;
+fun toimia_VK : VK ;
+fun toimiaika_NK : NK ;
+fun toimija_NK : NK ;
+fun toimikas_NK : NK ;
+fun toiminen_NK : NK ;
+fun toiminnallinen_NK : NK ;
+fun toiminne_NK : NK ;
+fun toiminta_NK : NK ;
+fun toiminta_aika_NK : NK ;
+fun toimintainen_NK : NK ;
+fun toiminto_NK : NK ;
+fun toimisto_NK : NK ;
+fun toimistoaika_NK : NK ;
+fun toimite_NK : NK ;
+fun toimitella_VK : VK ;
+fun toimitsija_NK : NK ;
+fun toimittaa_VK : VK ;
+fun toimittaja_NK : NK ;
+fun toimitteilla_AdvK : AdvK ;
+fun toimitus_NK : NK ;
+fun toimitusaika_NK : NK ;
+fun toimituttaa_VK : VK ;
+fun toimiva_NK : NK ;
+fun toinen_NK : NK ;
+fun tointua_VK : VK ;
+fun toipilaisuus_NK : NK ;
+fun toipilas_NK : NK ;
+fun toipilasaika_NK : NK ;
+fun toipua_VK : VK ;
+fun toipumisaika_NK : NK ;
+fun toisaalla_AdvK : AdvK ;
+fun toisaalle_AdvK : AdvK ;
+fun toisaalta_AdvK : AdvK ;
+fun toisaanne_AdvK : AdvK ;
+fun toisekseen_AdvK : AdvK ;
+fun toiseksi_AdvK : AdvK ;
+fun toisenlainen_NK : NK ;
+fun toisenmoinen_NK : NK ;
+fun toiseus_NK : NK ;
+fun toisin_AdvK : AdvK ;
+fun toisinaan_AdvK : AdvK ;
+fun toisinajatteleva_NK : NK ;
+fun toisinnos_NK : NK ;
+fun toisintaa_VK : VK ;
+fun toisinto_NK : NK ;
+fun toissa_AdvK : AdvK ;
+--+ fun toissijaisesti_AdvK : AdvK ;
+fun toistaa_VK : VK ;
+fun toistainen_NK : NK ;
+fun toistaiseksi_AdvK : AdvK ;
+fun toistamiseen_AdvK : AdvK ;
+fun toiste_1_AdvK : AdvK ;
+fun toiste_2_NK : NK ;
+fun toistella_VK : VK ;
+fun toisto_NK : NK ;
+fun toistua_VK : VK ;
+fun toistuvasti_AdvK : AdvK ;
+fun toistuvuus_NK : NK ;
+fun toitottaa_VK : VK ;
+fun toitottaja_NK : NK ;
+fun toitotus_NK : NK ;
+fun toive_NK : NK ;
+fun toiveikas_AK : AK ;
+--+ fun toiveikkaasti_AdvK : AdvK ;
+fun toiveikkuus_NK : NK ;
+fun toivo_NK : NK ;
+fun toivoa_VK : VK ;
+fun toivomus_NK : NK ;
+fun toivotella_VK : VK ;
+fun toivoton_NK : NK ;
+fun toivottaa_VK : VK ;
+fun toivottava_AK : AK ;
+--+ fun toivottavasti_AdvK : AdvK ;
+fun toivottomasti_AdvK : AdvK ;
+fun toivottomuus_NK : NK ;
+fun toivottu_NK : NK ;
+fun toivotus_NK : NK ;
+fun toka_NK : NK ;
+fun tokaista_VK : VK ;
+fun tokaisu_NK : NK ;
+fun tokaji_NK : NK ;
+fun tokajinviini_NK : NK ;
+fun toki_AdvK : AdvK ;
+fun tokka_1_NK : NK ;
+fun tokka_2_NK : NK ;
+fun tokko_AdvK : AdvK ;
+fun tokkura_NK : NK ;
+fun tokkurainen_NK : NK ;
+fun toksemia_NK : NK ;
+fun toksiini_NK : NK ;
+fun toksikologia_NK : NK ;
+fun toksinen_NK : NK ;
+fun tola_NK : NK ;
+fun tolalla_AdvK : AdvK ;
+fun tolallaan_AdvK : AdvK ;
+fun tolalle_AdvK : AdvK ;
+fun tolalleen_AdvK : AdvK ;
+fun tolalta_AdvK : AdvK ;
+fun tolaltaan_AdvK : AdvK ;
+fun toleranssi_NK : NK ;
+fun tolerantisti_AdvK : AdvK ;
+fun tolerantti_NK : NK ;
+fun tolilla_AdvK : AdvK ;
+fun tolillaan_AdvK : AdvK ;
+fun tolille_AdvK : AdvK ;
+fun tolilleen_AdvK : AdvK ;
+fun tolilta_AdvK : AdvK ;
+fun toliltaan_AdvK : AdvK ;
+fun toljailla_VK : VK ;
+fun toljottaa_VK : VK ;
+fun toljotus_NK : NK ;
+fun tolkku_NK : NK ;
+fun tolkulla_AdvK : AdvK ;
+fun tolkuton_NK : NK ;
+fun tolkuttaa_VK : VK ;
+fun tolkuttomasti_AdvK : AdvK ;
+fun tolkuttomuus_NK : NK ;
+fun tolkutus_NK : NK ;
+fun tollo_NK : NK ;
+fun tollottaa_VK : VK ;
+fun tollotus_NK : NK ;
+fun tolppa_NK : NK ;
+fun tolstoilainen_NK : NK ;
+fun tolstoilaisuus_NK : NK ;
+fun tolueeni_NK : NK ;
+fun tolvana_NK : NK ;
+fun tomaatti_NK : NK ;
+fun tomahawk_NK : NK ;
+fun tomera_AK : AK ;
+--+ fun tomerasti_AdvK : AdvK ;
+fun tomeruus_NK : NK ;
+fun tommoinen_NK : NK ;
+fun tomografi_NK : NK ;
+fun tomografia_NK : NK ;
+fun tomppeli_NK : NK ;
+fun tomtom_NK : NK ;
+fun tomu_NK : NK ;
+fun tomuinen_NK : NK ;
+fun tomuta_VK : VK ;
+fun tomuttaa_VK : VK ;
+fun tomuttua_VK : VK ;
+fun tomutus_NK : NK ;
+fun tonaalinen_AK : AK ;
+--+ fun tonaalisesti_AdvK : AdvK ;
+fun tonaalisuus_NK : NK ;
+fun tonaliteetti_NK : NK ;
+fun tongit_NK : NK ;
+fun tonic_water_NK : NK ;
+fun tonikki_NK : NK ;
+fun tonkia_VK : VK ;
+fun tonkka_NK : NK ;
+fun tonne_AdvK : AdvK ;
+fun tonneittain_AdvK : AdvK ;
+fun tonni_NK : NK ;
+fun tonnisto_NK : NK ;
+fun tonsilla_NK : NK ;
+fun tonsilliitti_NK : NK ;
+fun tonsuuri_NK : NK ;
+fun tontittaa_VK : VK ;
+fun tontitus_NK : NK ;
+fun tontti_NK : NK ;
+fun tonttu_NK : NK ;
+fun tonttuilla_VK : VK ;
+fun tonttuilu_NK : NK ;
+fun tonus_NK : NK ;
+fun tooga_NK : NK ;
+fun toonika_NK : NK ;
+fun toope_NK : NK ;
+fun toora_NK : NK ;
+fun toosa_NK : NK ;
+fun top_AdvK : AdvK ;
+fun topakasti_AdvK : AdvK ;
+fun topakkuus_NK : NK ;
+fun topata_1_VK : VK ;
+fun topata_2_VK : VK ;
+fun topeliaaninen_NK : NK ;
+fun topless_NK : NK ;
+fun topografi_NK : NK ;
+fun topografia_NK : NK ;
+fun topografinen_AK : AK ;
+--+ fun topografisesti_AdvK : AdvK ;
+fun toppa_NK : NK ;
+fun toppaus_NK : NK ;
+fun toppi_1_NK : NK ;
+fun toppi_2_NK : NK ;
+fun toppis_NK : NK ;
+fun toppuutella_VK : VK ;
+fun toppuuttaa_VK : VK ;
+fun toppuuttelu_NK : NK ;
+fun toppuutus_NK : NK ;
+fun tora_NK : NK ;
+fun torailla_VK : VK ;
+fun torailu_NK : NK ;
+fun torainen_NK : NK ;
+fun toraisa_NK : NK ;
+fun torakka_NK : NK ;
+fun toreadori_NK : NK ;
+fun torero_NK : NK ;
+fun tori_NK : NK ;
+fun toriaika_NK : NK ;
+fun torium_NK : NK ;
+fun torjua_VK : VK ;
+fun torjunta_NK : NK ;
+fun torjuva_AK : AK ;
+--+ fun torjuvasti_AdvK : AdvK ;
+fun torkahdella_VK : VK ;
+fun torkahdus_NK : NK ;
+fun torkahtaa_VK : VK ;
+fun torkahtelu_NK : NK ;
+fun torke_NK : NK ;
+fun torkku_NK : NK ;
+fun torkkua_VK : VK ;
+fun torkuksissa_AdvK : AdvK ;
+fun tornado_NK : NK ;
+fun torni_NK : NK ;
+fun torninen_NK : NK ;
+fun tornittaa_VK : VK ;
+fun tornitus_NK : NK ;
+fun torpedo_NK : NK ;
+fun torpedoida_VK : VK ;
+fun torpedointi_NK : NK ;
+fun torppa_NK : NK ;
+fun torppari_NK : NK ;
+fun torrakko_NK : NK ;
+fun torsio_NK : NK ;
+fun torso_NK : NK ;
+fun torstai_NK : NK ;
+fun torstainen_NK : NK ;
+fun torstaisin_AdvK : AdvK ;
+fun tortelliini_NK : NK ;
+fun tortilla_NK : NK ;
+fun torttu_NK : NK ;
+fun torua_VK : VK ;
+--? fun torut_NK : NK ;
+fun torveilla_VK : VK ;
+fun torveilu_NK : NK ;
+fun torvelo_NK : NK ;
+fun torvi_NK : NK ;
+fun tosi_NK : NK ;
+fun tosiaan_AdvK : AdvK ;
+fun tosikko_NK : NK ;
+--+ fun tosikkomaisesti_AdvK : AdvK ;
+fun tosikkomaisuus_NK : NK ;
+fun tosimielessa'_AdvK : AdvK ;
+fun tosin_AdvK : AdvK ;
+fun tosio_NK : NK ;
+fun tosissaan_AdvK : AdvK ;
+fun tosite_NK : NK ;
+fun tosittaa_VK : VK ;
+fun tossu_NK : NK ;
+fun totaali_NK : NK ;
+fun totaalinen_AK : AK ;
+--+ fun totaalisesti_AdvK : AdvK ;
+fun totaalisuus_NK : NK ;
+fun totalisaattori_NK : NK ;
+fun totalitaarinen_AK : AK ;
+--+ fun totalitaarisesti_AdvK : AdvK ;
+fun totalitaarisuus_NK : NK ;
+fun totalitarismi_NK : NK ;
+fun totalitaristinen_NK : NK ;
+fun toteama_NK : NK ;
+fun toteamus_NK : NK ;
+fun toteemi_NK : NK ;
+fun toteen_AdvK : AdvK ;
+fun totella_VK : VK ;
+fun totemismi_NK : NK ;
+fun totemistinen_NK : NK ;
+fun toteuma_NK : NK ;
+fun toteuttaa_VK : VK ;
+fun toteuttaja_NK : NK ;
+fun toteutua_VK : VK ;
+fun toteutuma_NK : NK ;
+fun toteutus_NK : NK ;
+fun toti_NK : NK ;
+fun totinen_AK : AK ;
+--+ fun totisesti_AdvK : AdvK ;
+fun totisuus_NK : NK ;
+fun toto_NK : NK ;
+fun totoaja_NK : NK ;
+fun totota_VK : VK ;
+fun totta_AdvK : AdvK ;
+fun tottelematon_NK : NK ;
+fun tottelemattomasti_AdvK : AdvK ;
+fun tottelemattomuus_NK : NK ;
+fun tottelevainen_AK : AK ;
+--+ fun tottelevaisesti_AdvK : AdvK ;
+fun tottelevaisuus_NK : NK ;
+fun tottua_VK : VK ;
+fun tottumaton_NK : NK ;
+fun tottumattomuus_NK : NK ;
+fun tottumus_NK : NK ;
+fun tottuneisuus_NK : NK ;
+fun totunnainen_NK : NK ;
+fun totutella_VK : VK ;
+fun totuttaa_VK : VK ;
+fun totuttautua_VK : VK ;
+fun totuudellinen_AK : AK ;
+--+ fun totuudellisesti_AdvK : AdvK ;
+fun totuudellisuus_NK : NK ;
+fun totuus_NK : NK ;
+fun touhottaa_VK : VK ;
+fun touhotus_NK : NK ;
+fun touhu_NK : NK ;
+fun touhuilija_NK : NK ;
+fun touhuilla_VK : VK ;
+fun touhuilu_NK : NK ;
+fun touhukas_AK : AK ;
+--+ fun touhukkaasti_AdvK : AdvK ;
+fun touhukkuus_NK : NK ;
+fun touhuta_VK : VK ;
+fun toukka_NK : NK ;
+fun toukkainen_NK : NK ;
+fun touko_NK : NK ;
+fun toukoaika_NK : NK ;
+fun tournedos_NK : NK ;
+fun toutain_NK : NK ;
+fun touvi_NK : NK ;
+fun toveri_NK : NK ;
+fun toverillinen_AK : AK ;
+--+ fun toverillisesti_AdvK : AdvK ;
+fun toverillisuus_NK : NK ;
+--? fun toverukset_NK : NK ;
+fun toveruus_NK : NK ;
+fun tovi_NK : NK ;
+fun traagikko_NK : NK ;
+fun traaginen_AK : AK ;
+--+ fun traagisesti_AdvK : AdvK ;
+fun traagisuus_NK : NK ;
+fun traani_NK : NK ;
+fun tradenomi_NK : NK ;
+fun traditio_NK : NK ;
+fun traditionaalinen_AK : AK ;
+--+ fun traditionaalisesti_AdvK : AdvK ;
+fun traditionaalisuus_NK : NK ;
+fun trafiikki_NK : NK ;
+fun trafikisti_NK : NK ;
+fun tragedia_NK : NK ;
+fun tragedienne_NK : NK ;
+fun tragiikka_NK : NK ;
+fun trahteerata_VK : VK ;
+fun traileri_NK : NK ;
+fun traktaatti_NK : NK ;
+fun traktori_NK : NK ;
+fun tralli_NK : NK ;
+fun trampata_VK : VK ;
+fun trampoliini_NK : NK ;
+fun trance_NK : NK ;
+fun transeerata_VK : VK ;
+fun transferenssi_NK : NK ;
+fun transformaatio_NK : NK ;
+fun transformoida_VK : VK ;
+fun transformointi_NK : NK ;
+fun transgeeninen_NK : NK ;
+fun transistori_NK : NK ;
+fun transistoroida_VK : VK ;
+fun transithalli_NK : NK ;
+fun transitiivinen_NK : NK ;
+fun transito_NK : NK ;
+fun transkriboida_VK : VK ;
+fun transkriptio_NK : NK ;
+fun translatiivi_NK : NK ;
+fun translitteraatio_NK : NK ;
+fun translitteroida_VK : VK ;
+fun translitterointi_NK : NK ;
+fun transparentti_NK : NK ;
+fun transplantaatio_NK : NK ;
+fun transplantaatti_NK : NK ;
+fun transplantoida_VK : VK ;
+fun transplantointi_NK : NK ;
+fun transponoida_VK : VK ;
+fun transponointi_NK : NK ;
+fun transseksuaali_NK : NK ;
+fun transseksualismi_NK : NK ;
+fun transsendenssi_NK : NK ;
+fun transsendentti_NK : NK ;
+fun transsendenttinen_NK : NK ;
+fun transsi_NK : NK ;
+fun transu_NK : NK ;
+fun transvestiitti_NK : NK ;
+fun transvestismi_NK : NK ;
+fun transvestitismi_NK : NK ;
+fun trap_NK : NK ;
+fun trap_ammunta_NK : NK ;
+fun trapetsi_NK : NK ;
+fun trassaatti_NK : NK ;
+fun trassata_VK : VK ;
+fun trasseerata_VK : VK ;
+fun trasseli_NK : NK ;
+fun trassentti_NK : NK ;
+fun tratta_NK : NK ;
+fun tratti_NK : NK ;
+fun trauma_NK : NK ;
+fun traumaattinen_NK : NK ;
+fun treasury_NK : NK ;
+fun treema_NK : NK ;
+fun treenata_VK : VK ;
+fun treenaus_NK : NK ;
+fun treeni_NK : NK ;
+fun treffata_VK : VK ;
+fun treffit_NK : NK ;
+fun tremolo_NK : NK ;
+fun trenchcoat_NK : NK ;
+fun trendi_NK : NK ;
+fun trendikkyys_NK : NK ;
+--+ fun trendikka'a'sti_AdvK : AdvK ;
+fun trendika's_AK : AK ;
+fun trenssi_NK : NK ;
+fun trial_NK : NK ;
+fun triangeli_NK : NK ;
+fun triatlon_NK : NK ;
+fun tribunaali_NK : NK ;
+fun tribuuni_NK : NK ;
+fun triennaali_NK : NK ;
+fun trigonometria_NK : NK ;
+fun trigonometrinen_NK : NK ;
+fun trikiini_NK : NK ;
+fun trikinoosi_NK : NK ;
+fun trikki_NK : NK ;
+fun trikoinen_NK : NK ;
+fun trikolori_NK : NK ;
+fun trikomoonas_NK : NK ;
+fun trikoo_NK : NK ;
+fun triljoona_NK : NK ;
+fun trilleri_NK : NK ;
+fun trilli_NK : NK ;
+fun trilogia_NK : NK ;
+fun trimaraani_NK : NK ;
+fun trimmata_VK : VK ;
+fun trimmaus_NK : NK ;
+fun trio_NK : NK ;
+fun trioli_NK : NK ;
+fun tripla_NK : NK ;
+fun trippi_NK : NK ;
+fun triptyykki_NK : NK ;
+fun triumfi_NK : NK ;
+fun triumviraatti_NK : NK ;
+fun triviaali_AK : AK ;
+fun triviaalistaa_VK : VK ;
+--+ fun triviaalisti_AdvK : AdvK ;
+fun triviaalius_NK : NK ;
+fun trivialisoida_VK : VK ;
+fun trivialiteetti_NK : NK ;
+fun troikka_NK : NK ;
+fun trokari_NK : NK ;
+fun trokata_VK : VK ;
+fun trokaus_NK : NK ;
+fun trokee_NK : NK ;
+fun trombi_NK : NK ;
+fun trombosyytti_NK : NK ;
+fun troolari_NK : NK ;
+fun troolata_VK : VK ;
+fun troolaus_NK : NK ;
+fun trooli_NK : NK ;
+fun trooppinen_NK : NK ;
+fun tropiikki_NK : NK ;
+fun tropismi_NK : NK ;
+fun troposfa'a'ri_NK : NK ;
+fun troppi_NK : NK ;
+fun trotskilainen_NK : NK ;
+fun trotskilaisuus_NK : NK ;
+fun trotskismi_NK : NK ;
+fun trotyyli_NK : NK ;
+fun trubaduuri_NK : NK ;
+fun truismi_NK : NK ;
+fun truistinen_NK : NK ;
+fun trukki_NK : NK ;
+fun trulli_NK : NK ;
+fun trumpetisti_NK : NK ;
+fun trumpetti_NK : NK ;
+fun trusti_NK : NK ;
+fun trustiutua_VK : VK ;
+fun truutata_VK : VK ;
+fun truutta_NK : NK ;
+fun tryffeli_NK : NK ;
+fun tsaari_NK : NK ;
+fun tsaarillinen_NK : NK ;
+fun tsaarinaika_NK : NK ;
+fun tsaaritar_NK : NK ;
+fun t_ador_NK : NK ;
+fun tsarismi_NK : NK ;
+fun tsaristinen_NK : NK ;
+fun tsasouna_NK : NK ;
+fun tsatsiki_NK : NK ;
+fun tse_AdvK : AdvK ;
+fun tsekata_VK : VK ;
+fun tsekkaus_NK : NK ;
+fun t_ekki_NK : NK ;
+fun t_ekkila'inen_NK : NK ;
+fun tsempata_VK : VK ;
+fun tsemppi_NK : NK ;
+fun tsepto__AdvK : AdvK ;
+fun t_eremissi_NK : NK ;
+fun t_et_eeni_NK : NK ;
+fun tsiikata_VK : VK ;
+fun tsinuski_NK : NK ;
+fun tsuhna_NK : NK ;
+fun tsuppari_NK : NK ;
+fun tsygootti_NK : NK ;
+fun tsa'tti_NK : NK ;
+fun tuberkuliini_NK : NK ;
+fun tuberkuloosi_NK : NK ;
+fun tuberkuloottinen_NK : NK ;
+fun tuberoosa_NK : NK ;
+fun tubi_NK : NK ;
+fun tuenta_NK : NK ;
+fun tuftata_VK : VK ;
+fun tuhahdella_VK : VK ;
+fun tuhahdus_NK : NK ;
+fun tuhahtaa_VK : VK ;
+fun tuhannen_AdvK : AdvK ;
+fun tuhannes_NK : NK ;
+fun tuhannesti_AdvK : AdvK ;
+fun tuhansittain_AdvK : AdvK ;
+fun tuhantinen_NK : NK ;
+fun tuhantisen_AdvK : AdvK ;
+--? fun tuhat_NK : NK ;
+fun tuhatkauno_NK : NK ;
+--+ fun tuhatkertaisesti_AdvK : AdvK ;
+fun tuhatma'a'rin_AdvK : AdvK ;
+fun tuhaus_NK : NK ;
+fun tuhauttaa_VK : VK ;
+fun tuhdisti_AdvK : AdvK ;
+fun tuherrella_VK : VK ;
+fun tuherrus_NK : NK ;
+fun tuhertaa_VK : VK ;
+fun tuhina_NK : NK ;
+fun tuhista_VK : VK ;
+fun tuhistaa_VK : VK ;
+fun tuhisuttaa_VK : VK ;
+fun tuhka_NK : NK ;
+fun tuhkata_VK : VK ;
+fun tuhkaus_NK : NK ;
+fun tuhkauttaa_VK : VK ;
+fun tuhkelo_NK : NK ;
+fun tuhkimo_NK : NK ;
+fun tuhkuri_NK : NK ;
+fun tuhlaaja_NK : NK ;
+fun tuhlaantua_VK : VK ;
+fun tuhlaavainen_NK : NK ;
+fun tuhlailla_VK : VK ;
+fun tuhlari_NK : NK ;
+fun tuhlata_VK : VK ;
+fun tuhlaus_NK : NK ;
+fun tuhlautua_VK : VK ;
+fun tuhma_AK : AK ;
+--+ fun tuhmasti_AdvK : AdvK ;
+fun tuhmuus_NK : NK ;
+fun tuho_NK : NK ;
+fun tuhoaja_NK : NK ;
+fun tuhoisa_AK : AK ;
+--+ fun tuhoisasti_AdvK : AdvK ;
+fun tuhoisuus_NK : NK ;
+fun tuholaisuus_NK : NK ;
+fun tuhota_VK : VK ;
+fun tuhoton_NK : NK ;
+fun tuhottomasti_AdvK : AdvK ;
+fun tuhoutua_VK : VK ;
+fun tuhraantua_VK : VK ;
+fun tuhrata_VK : VK ;
+fun tuhrautua_VK : VK ;
+fun tuhria_VK : VK ;
+fun tuhriintua_VK : VK ;
+fun tuhriutua_VK : VK ;
+fun tuhru_NK : NK ;
+fun tuhruinen_AK : AK ;
+--+ fun tuhruisesti_AdvK : AdvK ;
+fun tuhruisuus_NK : NK ;
+fun tuhti_NK : NK ;
+fun tuhto_NK : NK ;
+fun tuhutella_VK : VK ;
+fun tuhuttaa_VK : VK ;
+fun tuhutus_NK : NK ;
+fun tuhuuttaa_VK : VK ;
+fun tuija_NK : NK ;
+fun tuijotella_VK : VK ;
+fun tuijottaa_VK : VK ;
+fun tuiju_NK : NK ;
+fun tuikahdella_VK : VK ;
+fun tuikahdus_NK : NK ;
+fun tuikahtaa_VK : VK ;
+fun tuikahtelu_NK : NK ;
+fun tuikata_VK : VK ;
+fun tuike_NK : NK ;
+fun tuikea_AK : AK ;
+--+ fun tuikeasti_AdvK : AdvK ;
+fun tuikehtia_VK : VK ;
+fun tuikeus_NK : NK ;
+fun tuiki_AdvK : AdvK ;
+fun tuikinta_NK : NK ;
+fun tuikkaa_VK : VK ;
+fun tuikkaus_NK : NK ;
+fun tuikkia_VK : VK ;
+fun tuikku_NK : NK ;
+fun tuikuttaa_VK : VK ;
+fun tuikutus_NK : NK ;
+fun tuima_AK : AK ;
+--+ fun tuimasti_AdvK : AdvK ;
+fun tuimentaa_VK : VK ;
+fun tuimentua_VK : VK ;
+fun tuimeta_VK : VK ;
+fun tuimistaa_VK : VK ;
+fun tuimistua_VK : VK ;
+fun tuimuus_NK : NK ;
+fun tuiskahdella_VK : VK ;
+fun tuiskahtaa_VK : VK ;
+fun tuiske_NK : NK ;
+fun tuiskia_VK : VK ;
+fun tuiskina_NK : NK ;
+fun tuiskinta_NK : NK ;
+fun tuisku_NK : NK ;
+fun tuiskuta_VK : VK ;
+fun tuiskuttaa_VK : VK ;
+fun tuiteriin_AdvK : AdvK ;
+fun tuiterissa_AdvK : AdvK ;
+fun tuittuilla_VK : VK ;
+fun tuittuilu_NK : NK ;
+--+ fun tuittupa'isesti_AdvK : AdvK ;
+fun tuiverrella_VK : VK ;
+fun tuiverrus_NK : NK ;
+fun tuivertaa_VK : VK ;
+fun tujaus_NK : NK ;
+fun tukahduksiin_AdvK : AdvK ;
+fun tukahduksissa_AdvK : AdvK ;
+fun tukahduttaa_VK : VK ;
+fun tukahtua_VK : VK ;
+fun tukala_AK : AK ;
+--+ fun tukalasti_AdvK : AdvK ;
+fun tukaloitua_VK : VK ;
+fun tukaluus_NK : NK ;
+fun tukanraja_NK : NK ;
+fun tuke_NK : NK ;
+fun tukea_VK : VK ;
+fun tukehduksiin_AdvK : AdvK ;
+fun tukehduksissa_AdvK : AdvK ;
+fun tukehduttaa_VK : VK ;
+fun tukehtua_VK : VK ;
+fun tuketa_VK : VK ;
+fun tukeutua_VK : VK ;
+fun tukeva_AK : AK ;
+--+ fun tukevasti_AdvK : AdvK ;
+fun tukevoitua_VK : VK ;
+fun tukevuus_NK : NK ;
+fun tuki_NK : NK ;
+fun tukiainen_NK : NK ;
+fun tukija_NK : NK ;
+fun tukikohta_NK : NK ;
+fun tukistaa_VK : VK ;
+fun tukistus_NK : NK ;
+fun tukka_NK : NK ;
+fun tukkainen_NK : NK ;
+fun tukkanuottasilla_AdvK : AdvK ;
+fun tukkanuottasille_AdvK : AdvK ;
+fun tukkeentua_VK : VK ;
+fun tukkeeseen_AdvK : AdvK ;
+fun tukkeessa_AdvK : AdvK ;
+fun tukkeuksiin_AdvK : AdvK ;
+fun tukkeuksissa_AdvK : AdvK ;
+fun tukkeuma_NK : NK ;
+fun tukkeuttaa_VK : VK ;
+fun tukkeutua_VK : VK ;
+fun tukkeutuma_NK : NK ;
+fun tukki_NK : NK ;
+fun tukkia_VK : VK ;
+fun tukkiintua_VK : VK ;
+fun tukko_1_NK : NK ;
+fun tukko_2_NK : NK ;
+fun tukkoinen_AK : AK ;
+--+ fun tukkoisesti_AdvK : AdvK ;
+fun tukkoisuus_NK : NK ;
+fun tukkoon_AdvK : AdvK ;
+fun tukku_NK : NK ;
+fun tukkuri_NK : NK ;
+fun tukos_NK : NK ;
+fun tukossa_AdvK : AdvK ;
+fun tuku_AdvK : AdvK ;
+fun tukuittain_AdvK : AdvK ;
+fun tularemia_NK : NK ;
+fun tuleennuttaa_VK : VK ;
+fun tuleentua_VK : VK ;
+fun tulehduksellinen_NK : NK ;
+fun tulehdus_NK : NK ;
+fun tulehduttaa_VK : VK ;
+fun tulehtua_VK : VK ;
+fun tulennielija'_NK : NK ;
+fun tuleva_NK : NK ;
+fun tulevainen_NK : NK ;
+fun tulevaisuus_NK : NK ;
+fun tuli_NK : NK ;
+fun tuliainen_NK : NK ;
+fun tulija_NK : NK ;
+fun tuliluikku_NK : NK ;
+fun tulimmainen_NK : NK ;
+fun tulinen_AK : AK ;
+--+ fun tulisesti_AdvK : AdvK ;
+fun tulisijallinen_NK : NK ;
+fun tulistaa_VK : VK ;
+fun tulistin_NK : NK ;
+fun tulistua_VK : VK ;
+fun tulistus_NK : NK ;
+fun tulistuttaa_VK : VK ;
+fun tulisuus_NK : NK ;
+fun tulite_NK : NK ;
+fun tulittaa_VK : VK ;
+fun tulitus_NK : NK ;
+fun tulkata_VK : VK ;
+fun tulkinnallinen_NK : NK ;
+--+ fun tulkinnanvaraisesti_AdvK : AdvK ;
+fun tulkinta_NK : NK ;
+fun tulkintainen_NK : NK ;
+fun tulkintaisuus_NK : NK ;
+fun tulkita_VK : VK ;
+fun tulkitsija_NK : NK ;
+fun tulkka_NK : NK ;
+fun tulkkaus_NK : NK ;
+fun tulkki_1_NK : NK ;
+fun tulkki_2_NK : NK ;
+fun tulla_VK : VK ;
+fun tullata_VK : VK ;
+fun tullaus_NK : NK ;
+fun tullauttaa_VK : VK ;
+fun tulli_NK : NK ;
+fun tullinkanto_NK : NK ;
+fun tulliton_NK : NK ;
+fun tullittomasti_AdvK : AdvK ;
+fun tullittomuus_NK : NK ;
+fun tulo_NK : NK ;
+fun tuloaika_NK : NK ;
+fun tuloinen_NK : NK ;
+fun tulokas_NK : NK ;
+fun tuloksekas_AK : AK ;
+--+ fun tuloksekkaasti_AdvK : AdvK ;
+fun tuloksekkuus_NK : NK ;
+fun tuloksellinen_AK : AK ;
+--+ fun tuloksellisesti_AdvK : AdvK ;
+fun tuloksellisuus_NK : NK ;
+fun tulokseton_NK : NK ;
+fun tuloksinen_NK : NK ;
+fun tulos_NK : NK ;
+fun tulosjohtaminen_NK : NK ;
+fun tulostaa_VK : VK ;
+fun tuloste_NK : NK ;
+fun tulostin_NK : NK ;
+fun tulostua_VK : VK ;
+fun tulostus_NK : NK ;
+fun tuloton_NK : NK ;
+fun tulouttaa_VK : VK ;
+fun tuloutus_NK : NK ;
+fun tulpata_VK : VK ;
+fun tulpita_VK : VK ;
+fun tulpittaa_VK : VK ;
+fun tulppa_NK : NK ;
+fun tulppaani_NK : NK ;
+fun tulppautua_VK : VK ;
+--? fun tulukset_NK : NK ;
+fun tulva_NK : NK ;
+fun tulvahdella_VK : VK ;
+fun tulvahtaa_VK : VK ;
+fun tulvainen_NK : NK ;
+fun tulvehtia_VK : VK ;
+fun tulvia_VK : VK ;
+fun tuma_NK : NK ;
+fun tumainen_NK : NK ;
+fun tumake_NK : NK ;
+fun tumallinen_NK : NK ;
+fun tumanjakautuminen_NK : NK ;
+fun tumma_NK : NK ;
+fun tummaverikko'_NK : NK ;
+fun tummennos_NK : NK ;
+fun tummennus_NK : NK ;
+fun tummentaa_VK : VK ;
+fun tummentua_VK : VK ;
+fun tummeta_VK : VK ;
+fun tummua_VK : VK ;
+fun tumpata_VK : VK ;
+fun tumpelo_NK : NK ;
+fun tumpeloida_VK : VK ;
+fun tumpelointi_NK : NK ;
+fun tumppi_NK : NK ;
+fun tumppu_NK : NK ;
+fun tumpula_NK : NK ;
+fun tunari_NK : NK ;
+fun tunaroida_VK : VK ;
+fun tunarointi_NK : NK ;
+fun tundra_NK : NK ;
+fun tungeksia_VK : VK ;
+fun tungetella_VK : VK ;
+fun tungetteleva_AK : AK ;
+--+ fun tungettelevasti_AdvK : AdvK ;
+fun tungettelevuus_NK : NK ;
+fun tungettelija_NK : NK ;
+fun tungettelu_NK : NK ;
+fun tungos_NK : NK ;
+fun tungosaika_NK : NK ;
+fun tunika_NK : NK ;
+fun tunkea_VK : VK ;
+fun tunkeileva_AK : AK ;
+--+ fun tunkeilevasti_AdvK : AdvK ;
+fun tunkeilevuus_NK : NK ;
+fun tunkeilija_NK : NK ;
+fun tunkeilla_VK : VK ;
+fun tunkeilu_NK : NK ;
+fun tunkeutua_VK : VK ;
+fun tunkeutuja_NK : NK ;
+fun tunkio_NK : NK ;
+fun tunkkaantua_VK : VK ;
+fun tunkkainen_NK : NK ;
+fun tunkkaisuus_NK : NK ;
+fun tunkkautua_VK : VK ;
+fun tunkki_NK : NK ;
+fun tunkrahvi_NK : NK ;
+fun tunku_NK : NK ;
+fun tunnari_NK : NK ;
+fun tunne_NK : NK ;
+fun tunneittain_AdvK : AdvK ;
+--+ fun tunnekylla'isesti_AdvK : AdvK ;
+fun tunneli_NK : NK ;
+fun tunnelma_NK : NK ;
+fun tunnelmainen_NK : NK ;
+fun tunnelmallinen_NK : NK ;
+fun tunnelmoida_VK : VK ;
+fun tunnelmointi_NK : NK ;
+fun tunneloida_VK : VK ;
+fun tunnelointi_NK : NK ;
+--+ fun tunnepera'isesti_AdvK : AdvK ;
+fun tunnestautua_VK : VK ;
+fun tunnettu_NK : NK ;
+fun tunnettuisuus_NK : NK ;
+fun tunnettuus_NK : NK ;
+fun tunnetusti_AdvK : AdvK ;
+fun tunnistaa_VK : VK ;
+fun tunniste_NK : NK ;
+fun tunnistin_NK : NK ;
+fun tunnokas_AK : AK ;
+--+ fun tunnokkaasti_AdvK : AdvK ;
+fun tunnokkuus_NK : NK ;
+fun tunnollinen_AK : AK ;
+--+ fun tunnollisesti_AdvK : AdvK ;
+fun tunnollisuus_NK : NK ;
+fun tunnoton_NK : NK ;
+fun tunnottomasti_AdvK : AdvK ;
+fun tunnottomuus_NK : NK ;
+fun tunnus_NK : NK ;
+fun tunnustaa_VK : VK ;
+fun tunnustaja_NK : NK ;
+fun tunnustamaton_NK : NK ;
+fun tunnustautua_VK : VK ;
+fun tunnuste_NK : NK ;
+fun tunnustelija_NK : NK ;
+fun tunnustella_VK : VK ;
+fun tunnustelu_NK : NK ;
+fun tunnustin_NK : NK ;
+fun tunnustuksellinen_AK : AK ;
+--+ fun tunnustuksellisesti_AdvK : AdvK ;
+fun tunnustuksellisuus_NK : NK ;
+fun tunnustukseton_NK : NK ;
+fun tunnustus_NK : NK ;
+fun tunnuttaa_VK : VK ;
+fun tunnutus_NK : NK ;
+fun tuntea_VK : VK ;
+fun tunteellinen_AK : AK ;
+--+ fun tunteellisesti_AdvK : AdvK ;
+fun tunteellisuus_NK : NK ;
+--+ fun tunteenomaisesti_AdvK : AdvK ;
+fun tunteeton_NK : NK ;
+fun tunteettomasti_AdvK : AdvK ;
+fun tunteettomuus_NK : NK ;
+fun tunteikas_AK : AK ;
+--+ fun tunteikkaasti_AdvK : AdvK ;
+fun tunteikkuus_NK : NK ;
+fun tunteilla_VK : VK ;
+fun tunteilu_NK : NK ;
+fun tunteinen_AK : AK ;
+--+ fun tunteisesti_AdvK : AdvK ;
+fun tunteisuus_NK : NK ;
+fun tuntematon_NK : NK ;
+fun tuntemattomuus_NK : NK ;
+fun tuntemus_NK : NK ;
+fun tunti_NK : NK ;
+fun tuntija_NK : NK ;
+fun tuntinen_NK : NK ;
+fun tunto_NK : NK ;
+fun tuntoinen_AK : AK ;
+--+ fun tuntoisesti_AdvK : AdvK ;
+fun tuntoisuus_NK : NK ;
+fun tuntokera'nen_NK : NK ;
+fun tuntu_NK : NK ;
+fun tuntua_VK : VK ;
+fun tuntuinen_AK : AK ;
+--+ fun tuntuisesti_AdvK : AdvK ;
+fun tuntuisuus_NK : NK ;
+fun tuntuma_NK : NK ;
+fun tunturi_NK : NK ;
+fun tunturinlaki_NK : NK ;
+fun tuntuva_AK : AK ;
+--+ fun tuntuvasti_AdvK : AdvK ;
+fun tuntuvuus_NK : NK ;
+fun tuoda_VK : VK ;
+fun tuohduksiin_AdvK : AdvK ;
+fun tuohduksissa_AdvK : AdvK ;
+fun tuohduksissaan_AdvK : AdvK ;
+fun tuohduttaa_VK : VK ;
+fun tuohestaa_VK : VK ;
+fun tuohi_NK : NK ;
+fun tuohia_VK : VK ;
+fun tuohinen_NK : NK ;
+fun tuohon_AdvK : AdvK ;
+fun tuohtua_VK : VK ;
+fun tuohus_NK : NK ;
+fun tuoja_NK : NK ;
+fun tuokio_NK : NK ;
+fun tuokkonen_NK : NK ;
+fun tuoksahdella_VK : VK ;
+fun tuoksahdus_NK : NK ;
+fun tuoksahtaa_VK : VK ;
+fun tuoksahtelu_NK : NK ;
+fun tuoksina_NK : NK ;
+fun tuoksu_NK : NK ;
+fun tuoksua_VK : VK ;
+fun tuoksuinen_NK : NK ;
+fun tuoksusimake_NK : NK ;
+fun tuoksuta_VK : VK ;
+fun tuoksuton_NK : NK ;
+fun tuoksuttaa_VK : VK ;
+fun tuoli_NK : NK ;
+fun tuolla_AdvK : AdvK ;
+fun tuollaan_AdvK : AdvK ;
+fun tuollainen_NK : NK ;
+fun tuolleen_AdvK : AdvK ;
+fun tuolloin_AdvK : AdvK ;
+fun tuolloinen_NK : NK ;
+fun tuolta_AdvK : AdvK ;
+fun tuoltaan_AdvK : AdvK ;
+fun tuomaristo_NK : NK ;
+fun tuomas_NK : NK ;
+fun tuomenkehra'a'ja'koi_NK : NK ;
+fun tuomi_NK : NK ;
+fun tuominen_NK : NK ;
+fun tuomio_NK : NK ;
+fun tuomita_VK : VK ;
+fun tuomitsija_NK : NK ;
+fun tuommoinen_NK : NK ;
+fun tuonela_NK : NK ;
+fun tuoni_NK : NK ;
+fun tuonne_AdvK : AdvK ;
+fun tuonnemma_AdvK : AdvK ;
+fun tuonnemmaksi_AdvK : AdvK ;
+fun tuonnemmas_AdvK : AdvK ;
+fun tuonnempaa_AdvK : AdvK ;
+fun tuonnempana_AdvK : AdvK ;
+fun tuonnimmainen_NK : NK ;
+fun tuonnimmaksi_AdvK : AdvK ;
+fun tuonnimmas_AdvK : AdvK ;
+fun tuonnimpaa_AdvK : AdvK ;
+fun tuonnimpana_AdvK : AdvK ;
+fun tuonnoin_AdvK : AdvK ;
+fun tuonnoinen_NK : NK ;
+fun tuonti_NK : NK ;
+fun tuopeittain_AdvK : AdvK ;
+fun tuopillinen_NK : NK ;
+fun tuoppi_NK : NK ;
+fun tuore_AK : AK ;
+fun tuoreeltaan_AdvK : AdvK ;
+--+ fun tuoreesti_AdvK : AdvK ;
+fun tuoreus_NK : NK ;
+fun tuoreuttaa_VK : VK ;
+fun tuoreutua_VK : VK ;
+fun tuossa_AdvK : AdvK ;
+fun tuosta_AdvK : AdvK ;
+fun tuotannollinen_NK : NK ;
+fun tuotanto_NK : NK ;
+fun tuotantoinen_NK : NK ;
+fun tuote_NK : NK ;
+fun tuotos_NK : NK ;
+fun tuottaa_VK : VK ;
+fun tuottaja_NK : NK ;
+fun tuottamaton_NK : NK ;
+fun tuottamattomasti_AdvK : AdvK ;
+fun tuottamattomuus_NK : NK ;
+fun tuottamuksellinen_AK : AK ;
+--+ fun tuottamuksellisesti_AdvK : AdvK ;
+fun tuottamuksellisuus_NK : NK ;
+fun tuottamus_NK : NK ;
+fun tuottava_AK : AK ;
+--+ fun tuottavasti_AdvK : AdvK ;
+fun tuottavuus_NK : NK ;
+fun tuotteistaa_VK : VK ;
+fun tuotteistua_VK : VK ;
+fun tuotteistus_NK : NK ;
+--+ fun tuotteliaasti_AdvK : AdvK ;
+fun tuotteliaisuus_NK : NK ;
+fun tuottelias_AK : AK ;
+fun tuotto_NK : NK ;
+fun tuottoinen_NK : NK ;
+fun tuottoisa_AK : AK ;
+--+ fun tuottoisasti_AdvK : AdvK ;
+fun tuottoisuus_NK : NK ;
+fun tupa_NK : NK ;
+fun tupakaton_NK : NK ;
+fun tupakka_NK : NK ;
+fun tupakki_NK : NK ;
+fun tupakoida_VK : VK ;
+fun tupakoija_NK : NK ;
+fun tupakoimaton_NK : NK ;
+fun tupakoimattomuus_NK : NK ;
+fun tupakointi_NK : NK ;
+fun tupakoitsija_NK : NK ;
+fun tupas_NK : NK ;
+fun tupastaa_VK : VK ;
+fun tupata_VK : VK ;
+fun tupee_NK : NK ;
+fun tupeerata_VK : VK ;
+fun tupeeraus_NK : NK ;
+fun tupeksia_VK : VK ;
+fun tupellinen_NK : NK ;
+fun tupla_AK : AK ;
+--+ fun tuplasti_AdvK : AdvK ;
+fun tuplata_VK : VK ;
+fun tupo_NK : NK ;
+fun tuppaantua_VK : VK ;
+fun tuppautua_VK : VK ;
+fun tuppeuma_NK : NK ;
+fun tuppeutua_VK : VK ;
+fun tuppi_NK : NK ;
+fun tuppilo_NK : NK ;
+fun tuppo_NK : NK ;
+fun tuprahdella_VK : VK ;
+fun tuprahdus_NK : NK ;
+fun tuprahtaa_VK : VK ;
+fun tupraus_NK : NK ;
+fun tuprauttaa_VK : VK ;
+fun tupruta_VK : VK ;
+fun tuprutella_VK : VK ;
+fun tupruttaa_VK : VK ;
+fun tupruttelu_NK : NK ;
+fun tuprutus_NK : NK ;
+fun tupsahdus_NK : NK ;
+fun tupsahtaa_VK : VK ;
+fun tupsu_NK : NK ;
+fun tupsullinen_NK : NK ;
+fun tupsuttaa_1_VK : VK ;
+fun tupsuttaa_2_VK : VK ;
+fun tupsutus_NK : NK ;
+fun tuputtaa_VK : VK ;
+fun tuputus_NK : NK ;
+fun turbaani_NK : NK ;
+fun turbiini_NK : NK ;
+fun turbo_NK : NK ;
+fun turboahdettu_NK : NK ;
+fun turboahtimellinen_NK : NK ;
+fun turbulenssi_NK : NK ;
+fun turbulentti_NK : NK ;
+fun turbulenttinen_NK : NK ;
+fun turha_NK : NK ;
+fun turhaan_AdvK : AdvK ;
+fun turhaantua_VK : VK ;
+--+ fun turhamaisesti_AdvK : AdvK ;
+fun turhamaisuus_NK : NK ;
+fun turhauma_NK : NK ;
+fun turhauttaa_VK : VK ;
+fun turhautua_VK : VK ;
+fun turhautuma_NK : NK ;
+fun turhennus_NK : NK ;
+fun turhentaa_VK : VK ;
+fun turhuus_NK : NK ;
+fun turilas_NK : NK ;
+fun turina_NK : NK ;
+fun turinoida_VK : VK ;
+fun turinointi_NK : NK ;
+fun turismi_NK : NK ;
+fun turista_VK : VK ;
+fun turistaa_VK : VK ;
+fun turisti_NK : NK ;
+fun turistus_NK : NK ;
+fun turjake_NK : NK ;
+fun turkanen_AK : AK ;
+fun turkasenmoinen_NK : NK ;
+--+ fun turkasesti_AdvK : AdvK ;
+fun turkis_NK : NK ;
+fun turkistaa_VK : VK ;
+fun turkki_1_NK : NK ;
+fun turkki_2_NK : NK ;
+fun turkki_3_NK : NK ;
+fun turkkilo_NK : NK ;
+fun turkkinen_NK : NK ;
+fun turkkuri_NK : NK ;
+fun turkmeeni_NK : NK ;
+fun turkologi_NK : NK ;
+fun turkologia_NK : NK ;
+fun turkoosi_NK : NK ;
+fun turku_NK : NK ;
+fun turma_NK : NK ;
+fun turmaliini_NK : NK ;
+fun turmelematon_NK : NK ;
+fun turmella_VK : VK ;
+fun turmeltua_VK : VK ;
+fun turmeltumaton_NK : NK ;
+fun turmeltumattomuus_NK : NK ;
+fun turmelu_NK : NK ;
+fun turmelus_NK : NK ;
+fun turmio_NK : NK ;
+fun turmiollinen_AK : AK ;
+--+ fun turmiollisesti_AdvK : AdvK ;
+fun turmiollisuus_NK : NK ;
+--? fun turnajaiset_NK : NK ;
+fun turnaus_NK : NK ;
+fun turnee_NK : NK ;
+fun turnipsi_NK : NK ;
+fun turnyyri_NK : NK ;
+fun turo_NK : NK ;
+fun turpa_1_NK : NK ;
+fun turpa_2_NK : NK ;
+fun turpainen_NK : NK ;
+fun turpea_NK : NK ;
+fun turpiini_NK : NK ;
+fun turpoama_NK : NK ;
+fun turri_NK : NK ;
+fun turruksiin_AdvK : AdvK ;
+fun turruksissa_AdvK : AdvK ;
+fun turruttaa_VK : VK ;
+fun turrutus_NK : NK ;
+fun tursas_NK : NK ;
+fun turska_NK : NK ;
+fun turskahtaa_VK : VK ;
+fun turski_NK : NK ;
+fun turskua_VK : VK ;
+fun turso_NK : NK ;
+fun tursua_VK : VK ;
+fun tursuta_VK : VK ;
+fun turta_NK : NK ;
+fun turtua_VK : VK ;
+fun turtumus_NK : NK ;
+fun turva_NK : NK ;
+fun turvaaja_NK : NK ;
+fun turvaamaton_NK : NK ;
+fun turvaisa_NK : NK ;
+fun turvallinen_AK : AK ;
+--+ fun turvallisesti_AdvK : AdvK ;
+fun turvallistaa_VK : VK ;
+fun turvallisuus_NK : NK ;
+fun turvata_VK : VK ;
+fun turvaton_NK : NK ;
+fun turvatti_NK : NK ;
+fun turvattomuus_NK : NK ;
+fun turvautua_VK : VK ;
+fun turve_NK : NK ;
+fun turvettua_VK : VK ;
+fun turvin_AdvK : AdvK ;
+fun turvoksiin_AdvK : AdvK ;
+fun turvoksissa_AdvK : AdvK ;
+fun turvota_VK : VK ;
+fun turvottaa_VK : VK ;
+fun turvottua_VK : VK ;
+fun turvotus_NK : NK ;
+fun tusina_NK : NK ;
+fun tusinoittain_AdvK : AdvK ;
+fun tuska_NK : NK ;
+fun tuskaannuttaa_VK : VK ;
+fun tuskaantua_VK : VK ;
+fun tuskailla_VK : VK ;
+fun tuskailu_NK : NK ;
+fun tuskainen_AK : AK ;
+fun tuskaisa_AK : AK ;
+--+ fun tuskaisasti_AdvK : AdvK ;
+--+ fun tuskaisesti_AdvK : AdvK ;
+fun tuskaisuus_NK : NK ;
+fun tuskallinen_AK : AK ;
+--+ fun tuskallisesti_AdvK : AdvK ;
+fun tuskallisuus_NK : NK ;
+fun tuskastua_VK : VK ;
+fun tuskastuttaa_VK : VK ;
+fun tuskaton_NK : NK ;
+fun tuskattomasti_AdvK : AdvK ;
+fun tuskattomuus_NK : NK ;
+fun tuskautua_VK : VK ;
+fun tuskin_AdvK : AdvK ;
+fun tuskitella_VK : VK ;
+fun tussahdus_NK : NK ;
+fun tussahtaa_VK : VK ;
+fun tussari_NK : NK ;
+fun tussata_VK : VK ;
+fun tussaus_NK : NK ;
+fun tussi_NK : NK ;
+fun tussu_NK : NK ;
+fun tussukka_NK : NK ;
+fun tuta_AdvK : AdvK ;
+fun tutia_VK : VK ;
+fun tutina_NK : NK ;
+fun tutista_VK : VK ;
+fun tutisuttaa_VK : VK ;
+fun tutka_NK : NK ;
+fun tutkailija_NK : NK ;
+fun tutkailla_VK : VK ;
+fun tutkain_NK : NK ;
+fun tutkata_VK : VK ;
+fun tutkaus_NK : NK ;
+fun tutkia_VK : VK ;
+fun tutkielma_NK : NK ;
+fun tutkija_NK : NK ;
+fun tutkimaton_NK : NK ;
+fun tutkimattomuus_NK : NK ;
+fun tutkimus_NK : NK ;
+fun tutkinnallinen_NK : NK ;
+fun tutkinta_NK : NK ;
+fun tutkinto_NK : NK ;
+fun tutkiskella_VK : VK ;
+fun tutkiskelu_NK : NK ;
+fun tutkistella_VK : VK ;
+fun tutkistelu_NK : NK ;
+fun tutkittaa_VK : VK ;
+fun tutkituttaa_VK : VK ;
+fun tutkiva_AK : AK ;
+--+ fun tutkivasti_AdvK : AdvK ;
+fun tutor_NK : NK ;
+fun tutsi_NK : NK ;
+fun tuttava_NK : NK ;
+fun tuttavallinen_AK : AK ;
+--+ fun tuttavallisesti_AdvK : AdvK ;
+fun tuttavallisuus_NK : NK ;
+--? fun tuttavukset_NK : NK ;
+fun tuttavuus_NK : NK ;
+fun tutti_1_NK : NK ;
+fun tutti_2_NK : NK ;
+fun tuttu_NK : NK ;
+fun tuttuus_NK : NK ;
+fun tutua_VK : VK ;
+--+ fun tutunomaisesti_AdvK : AdvK ;
+fun tutustaa_VK : VK ;
+fun tutustella_VK : VK ;
+fun tutusti_AdvK : AdvK ;
+fun tutustua_VK : VK ;
+fun tutustuttaa_VK : VK ;
+fun tuuba_NK : NK ;
+fun tuubi_NK : NK ;
+fun tuuditella_VK : VK ;
+fun tuudittaa_VK : VK ;
+fun tuudittautua_VK : VK ;
+fun tuuhea_NK : NK ;
+fun tuuhennus_NK : NK ;
+fun tuuhentaa_VK : VK ;
+fun tuuhentua_VK : VK ;
+fun tuuheta_VK : VK ;
+fun tuuhettua_VK : VK ;
+fun tuuheutua_VK : VK ;
+fun tuuhistua_VK : VK ;
+fun tuulahdella_VK : VK ;
+fun tuulahdus_NK : NK ;
+fun tuulahtaa_VK : VK ;
+fun tuulas_NK : NK ;
+fun tuulastaa_VK : VK ;
+fun tuuleentua_VK : VK ;
+fun tuulenhaistelija_NK : NK ;
+fun tuulenhalkoja_NK : NK ;
+fun tuulennaukuja_NK : NK ;
+--+ fun tuulenpita'va'sti_AdvK : AdvK ;
+fun tuulensuoja_NK : NK ;
+fun tuuletella_VK : VK ;
+fun tuuletin_NK : NK ;
+fun tuuleton_NK : NK ;
+fun tuulettaa_VK : VK ;
+fun tuulettaja_NK : NK ;
+fun tuulettua_VK : VK ;
+fun tuuletus_NK : NK ;
+fun tuuli_NK : NK ;
+fun tuuliajolla_AdvK : AdvK ;
+fun tuuliajolle_AdvK : AdvK ;
+fun tuulinen_NK : NK ;
+fun tuulisuus_NK : NK ;
+fun tuulla_VK : VK ;
+fun tuulonen_NK : NK ;
+fun tuultaa_VK : VK ;
+fun tuultua_VK : VK ;
+fun tuuma_1_NK : NK ;
+fun tuuma_2_NK : NK ;
+fun tuumailla_VK : VK ;
+fun tuumailu_NK : NK ;
+fun tuumainen_1_NK : NK ;
+fun tuumainen_2_NK : NK ;
+fun tuumakoko_NK : NK ;
+fun tuumata_VK : VK ;
+fun tuumaus_NK : NK ;
+fun tuumia_VK : VK ;
+fun tuumiskella_VK : VK ;
+fun tuumori_NK : NK ;
+fun tuupata_VK : VK ;
+fun tuuperruksiin_AdvK : AdvK ;
+fun tuuperruksissa_AdvK : AdvK ;
+fun tuuperruksista_AdvK : AdvK ;
+fun tuuperruttaa_VK : VK ;
+fun tuupertua_VK : VK ;
+fun tuuppia_VK : VK ;
+fun tuura_NK : NK ;
+fun tuuraaja_NK : NK ;
+fun tuurata_1_VK : VK ;
+fun tuurata_2_VK : VK ;
+fun tuuri_NK : NK ;
+fun tuurna_NK : NK ;
+fun tuusan_AdvK : AdvK ;
+fun tuut_AdvK : AdvK ;
+fun tuutata_VK : VK ;
+fun tuutia_VK : VK ;
+fun tuutti_NK : NK ;
+fun tuutua_VK : VK ;
+fun tuututtaa_VK : VK ;
+fun tv_AdvK : AdvK ;
+fun tweed_NK : NK ;
+fun tvilli_NK : NK ;
+fun twist_NK : NK ;
+fun twistata_VK : VK ;
+fun tyhjennella'_VK : VK ;
+fun tyhjennys_NK : NK ;
+fun tyhjennytta'a'_VK : VK ;
+fun tyhjentyma'to'n_NK : NK ;
+fun tyhjentya'_VK : VK ;
+fun tyhjenta'vyys_NK : NK ;
+fun tyhjenta'va'_AK : AK ;
+--+ fun tyhjenta'va'sti_AdvK : AdvK ;
+fun tyhjenta'a'_VK : VK ;
+fun tyhjeta'_VK : VK ;
+fun tyhjiin_AdvK : AdvK ;
+fun tyhjilleen_AdvK : AdvK ;
+fun tyhjilla'a'n_AdvK : AdvK ;
+fun tyhjilta'a'n_AdvK : AdvK ;
+fun tyhjio'_NK : NK ;
+fun tyhjyys_NK : NK ;
+fun tyhja'_NK : NK ;
+--+ fun tyhja'npa'iva'isesti_AdvK : AdvK ;
+fun tyhja'npa'iva'isyys_NK : NK ;
+fun tyhja'taskuinen_NK : NK ;
+fun tyhja'ta'_VK : VK ;
+fun tyhjo'_NK : NK ;
+fun tyhmeliini_NK : NK ;
+fun tyhmentya'_VK : VK ;
+fun tyhmenta'a'_VK : VK ;
+fun tyhmeta'_VK : VK ;
+fun tyhmistella'_VK : VK ;
+fun tyhmistely_NK : NK ;
+fun tyhmistya'_VK : VK ;
+fun tyhmista'a'_VK : VK ;
+fun tyhmyri_NK : NK ;
+fun tyhmyys_NK : NK ;
+fun tyhma'_AK : AK ;
+--+ fun tyhma'sti_AdvK : AdvK ;
+fun tykisto'_NK : NK ;
+fun tykitta'ja'_NK : NK ;
+fun tykitta'a'_VK : VK ;
+fun tykitys_NK : NK ;
+fun tykki_1_NK : NK ;
+fun tykki_2_NK : NK ;
+fun tykky_NK : NK ;
+fun tykka'na'a'n_AdvK : AdvK ;
+fun tykka'a'ntya'_VK : VK ;
+fun tykytta'a'_VK : VK ;
+fun tykytys_NK : NK ;
+fun tyka'stya'_VK : VK ;
+fun tyka'ta'_VK : VK ;
+fun tyko'_AdvK : AdvK ;
+fun tyko'istuva_NK : NK ;
+fun tyko'na'_AdvK : AdvK ;
+fun tyko'a'_AdvK : AdvK ;
+fun tyllero'_NK : NK ;
+fun tylli_1_NK : NK ;
+fun tylli_2_NK : NK ;
+fun tylpentya'_VK : VK ;
+fun tylpenta'a'_VK : VK ;
+fun tylpeta'_VK : VK ;
+fun tylpistys_NK : NK ;
+fun tylpistya'_VK : VK ;
+fun tylpista'a'_VK : VK ;
+fun tylppyys_NK : NK ;
+fun tylppa'_NK : NK ;
+fun tylpa'sti_AdvK : AdvK ;
+fun tylsentya'_VK : VK ;
+fun tylsenta'a'_VK : VK ;
+fun tylseta'_VK : VK ;
+fun tylsimys_NK : NK ;
+fun tylsistytta'a'_VK : VK ;
+fun tylsistya'_VK : VK ;
+fun tylsista'a'_VK : VK ;
+fun tylstytta'a'_VK : VK ;
+fun tylstya'_VK : VK ;
+fun tylsytta'a'_VK : VK ;
+fun tylsyys_NK : NK ;
+fun tylsya'_VK : VK ;
+fun tylsa'_NK : NK ;
+fun tyly_AK : AK ;
+--+ fun tylysti_AdvK : AdvK ;
+fun tylyys_NK : NK ;
+fun tympeys_NK : NK ;
+fun tympeytta'a'_VK : VK ;
+fun tympeytya'_VK : VK ;
+fun tympea'_AK : AK ;
+--+ fun tympea'sti_AdvK : AdvK ;
+fun tympia'_VK : VK ;
+fun tympa'ista'_VK : VK ;
+fun tympa'a'nnytta'a'_VK : VK ;
+fun tympa'a'ntya'_VK : VK ;
+fun tympo'nen_NK : NK ;
+fun tynka'_NK : NK ;
+fun tynnyreitta'in_AdvK : AdvK ;
+fun tynnyri_NK : NK ;
+fun tynnyrillinen_NK : NK ;
+fun typeka's_NK : NK ;
+fun typerryksiin_AdvK : AdvK ;
+fun typerryksissa'_AdvK : AdvK ;
+fun typerryksista'_AdvK : AdvK ;
+fun typerrys_NK : NK ;
+fun typerrytta'a'_VK : VK ;
+fun typertya'_VK : VK ;
+fun typerys_NK : NK ;
+fun typeryys_NK : NK ;
+fun typera'_AK : AK ;
+--+ fun typera'sti_AdvK : AdvK ;
+fun typetta'a'_VK : VK ;
+fun typetys_NK : NK ;
+fun typistya'_VK : VK ;
+fun typista'a'_VK : VK ;
+fun typografi_NK : NK ;
+fun typografia_NK : NK ;
+fun typografinen_NK : NK ;
+fun typologia_NK : NK ;
+fun typologinen_NK : NK ;
+fun typpi_NK : NK ;
+fun typpioksiduuli_NK : NK ;
+fun typykka'_NK : NK ;
+fun typa's_NK : NK ;
+fun typo'_AdvK : AdvK ;
+fun tyranni_NK : NK ;
+fun tyrannia_NK : NK ;
+--+ fun tyrannimaisesti_AdvK : AdvK ;
+fun tyrannimaisuus_NK : NK ;
+fun tyrannisoida_VK : VK ;
+fun tyrannius_NK : NK ;
+fun tyrannoida_VK : VK ;
+fun tyrannosaurus_NK : NK ;
+fun tyrehdyksiin_AdvK : AdvK ;
+fun tyrehdyksissa'_AdvK : AdvK ;
+fun tyrehdytta'a'_VK : VK ;
+fun tyrehtya'_VK : VK ;
+fun tyristori_NK : NK ;
+fun tyria'_VK : VK ;
+fun tyrkkia'_VK : VK ;
+fun tyrkylle_AdvK : AdvK ;
+fun tyrkylla'_AdvK : AdvK ;
+fun tyrkytta'ytya'_VK : VK ;
+fun tyrkytta'a'_VK : VK ;
+fun tyrka'ta'_VK : VK ;
+fun tyrmistys_NK : NK ;
+fun tyrmistytta'a'_VK : VK ;
+fun tyrmistya'_VK : VK ;
+fun tyrma'_NK : NK ;
+fun tyrma'ta'_VK : VK ;
+fun tyrma'ys_NK : NK ;
+fun tyrma'a'ja'_NK : NK ;
+fun tyrni_NK : NK ;
+fun tyrske_NK : NK ;
+fun tyrskinta'_NK : NK ;
+fun tyrskina'_NK : NK ;
+fun tyrskia'_VK : VK ;
+fun tyrsky_NK : NK ;
+fun tyrskyinen_NK : NK ;
+fun tyrskyta'_VK : VK ;
+fun tyrska'hdella'_VK : VK ;
+fun tyrska'hdys_NK : NK ;
+fun tyrska'hta'a'_VK : VK ;
+fun tyra'_NK : NK ;
+fun tyra'kki_NK : NK ;
+fun tyra'ys_NK : NK ;
+fun tyssa'hta'a'_VK : VK ;
+fun tyssa'ta'_VK : VK ;
+fun tyssa'ys_NK : NK ;
+fun tytina'_NK : NK ;
+fun tytista'_VK : VK ;
+fun tytteli_NK : NK ;
+fun tytti_NK : NK ;
+fun tytto'_NK : NK ;
+fun tytto'aika_NK : NK ;
+fun tytto'istya'_VK : VK ;
+fun tytto'ma'inen_AK : AK ;
+--+ fun tytto'ma'isesti_AdvK : AdvK ;
+fun tytto'ma'isyys_NK : NK ;
+fun tytto'nen_NK : NK ;
+fun tytto'ys_NK : NK ;
+fun tyta'r_NK : NK ;
+fun tyto'tella'_VK : VK ;
+fun tyto'ttely_NK : NK ;
+fun tyvekkyys_NK : NK ;
+fun tyveka's_NK : NK ;
+fun tyven_NK : NK ;
+fun tyventya'_VK : VK ;
+fun tyveta'_1_VK : VK ;
+fun tyveta'_2_VK : VK ;
+fun tyveys_NK : NK ;
+fun tyvi_NK : NK ;
+fun tyvinen_NK : NK ;
+fun tyydyke_NK : NK ;
+fun tyydytin_NK : NK ;
+fun tyydyttyma'to'n_NK : NK ;
+fun tyydyttya'_VK : VK ;
+fun tyydytta'ja'_NK : NK ;
+fun tyydytta'ma'to'n_NK : NK ;
+fun tyydytta'va'_AK : AK ;
+--+ fun tyydytta'va'sti_AdvK : AdvK ;
+fun tyydytta'a'_VK : VK ;
+fun tyydytys_NK : NK ;
+fun tyyfus_NK : NK ;
+fun tyyli_NK : NK ;
+fun tyylikkyys_NK : NK ;
+--+ fun tyylikka'a'sti_AdvK : AdvK ;
+fun tyylika's_AK : AK ;
+fun tyylillinen_AK : AK ;
+--+ fun tyylillisesti_AdvK : AdvK ;
+fun tyylinen_AK : AK ;
+--+ fun tyylisesti_AdvK : AdvK ;
+fun tyylisyys_NK : NK ;
+fun tyylitella'_VK : VK ;
+fun tyylitelma'_NK : NK ;
+fun tyylitto'myys_NK : NK ;
+fun tyylitto'ma'sti_AdvK : AdvK ;
+fun tyylito'n_NK : NK ;
+--+ fun tyynesti_AdvK : AdvK ;
+fun tyyneys_NK : NK ;
+fun tyyni_AK : AK ;
+fun tyynni_AdvK : AdvK ;
+fun tyynnytella'_VK : VK ;
+fun tyynnytta'a'_VK : VK ;
+fun tyyntya'_VK : VK ;
+fun tyyny_NK : NK ;
+fun tyypeitta'in_AdvK : AdvK ;
+fun tyypillinen_AK : AK ;
+--+ fun tyypillisesti_AdvK : AdvK ;
+fun tyypillisyys_NK : NK ;
+fun tyypisto'_NK : NK ;
+fun tyypitella'_VK : VK ;
+fun tyypittely_NK : NK ;
+fun tyypitta'a'_VK : VK ;
+fun tyypitys_NK : NK ;
+fun tyyppi_NK : NK ;
+fun tyyppinen_NK : NK ;
+fun tyyris_NK : NK ;
+fun tyyrpuuri_NK : NK ;
+fun tyyssija_NK : NK ;
+fun tyystin_AdvK : AdvK ;
+fun tyyt_AdvK : AdvK ;
+fun tyyten_AdvK : AdvK ;
+fun tyytta'ys_NK : NK ;
+fun tyytyma'tto'myys_NK : NK ;
+fun tyytyma'tto'ma'sti_AdvK : AdvK ;
+fun tyytyma'to'n_NK : NK ;
+fun tyytyva'inen_AK : AK ;
+--+ fun tyytyva'isesti_AdvK : AdvK ;
+fun tyytyva'isyys_NK : NK ;
+fun tyytya'_VK : VK ;
+fun tyyta'ta'_VK : VK ;
+fun tyo'_NK : NK ;
+fun tyo'aika_NK : NK ;
+fun tyo'llinen_NK : NK ;
+fun tyo'llistys_NK : NK ;
+fun tyo'llistya'_VK : VK ;
+fun tyo'llista'a'_VK : VK ;
+fun tyo'llisyys_NK : NK ;
+fun tyo'la'inen_NK : NK ;
+fun tyo'la's_AK : AK ;
+fun tyo'la'stytta'a'_VK : VK ;
+fun tyo'la'stya'_VK : VK ;
+fun tyo'la'ys_NK : NK ;
+--+ fun tyo'la'a'sti_AdvK : AdvK ;
+fun tyo'njohdollinen_NK : NK ;
+fun tyo'nnella'_VK : VK ;
+fun tyo'nna'lta'a'_VK : VK ;
+fun tyo'ntely_NK : NK ;
+fun tyo'ntya'_VK : VK ;
+fun tyo'nta'ja'_NK : NK ;
+fun tyo'nta'ytya'_VK : VK ;
+fun tyo'nta'a'_VK : VK ;
+fun tyo'nto'_NK : NK ;
+fun tyo'nto'kytkye_NK : NK ;
+fun tyo'skennella'_VK : VK ;
+fun tyo'skentely_NK : NK ;
+fun tyo'sopimusaika_NK : NK ;
+fun tyo'ssa'oppiminen_NK : NK ;
+fun tyo'sta'a'_VK : VK ;
+fun tyo'sto'_NK : NK ;
+fun tyo'suojelullinen_NK : NK ;
+fun tyo'telia'isyys_NK : NK ;
+fun tyo'telia's_NK : NK ;
+fun tyo'tto'myys_NK : NK ;
+fun tyo'to'n_NK : NK ;
+fun ta'ditella'_VK : VK ;
+fun ta'dittely_NK : NK ;
+fun ta'dyke_NK : NK ;
+fun ta'gi_NK : NK ;
+fun ta'hde_NK : NK ;
+fun ta'hdeka's_NK : NK ;
+fun ta'hdelle_AdvK : AdvK ;
+fun ta'hdellinen_AK : AK ;
+--+ fun ta'hdellisesti_AdvK : AdvK ;
+fun ta'hdellisyys_NK : NK ;
+fun ta'hden_AdvK : AdvK ;
+fun ta'hdennys_NK : NK ;
+fun ta'hdentya'_VK : VK ;
+fun ta'hdenta'a'_VK : VK ;
+fun ta'hdeto'n_NK : NK ;
+fun ta'hdikki_NK : NK ;
+fun ta'hdika's_NK : NK ;
+fun ta'hdisto'_NK : NK ;
+fun ta'hda'ta'_VK : VK ;
+fun ta'hkia'_VK : VK ;
+fun ta'hkio'_NK : NK ;
+fun ta'hkyla'_NK : NK ;
+fun ta'hka'_NK : NK ;
+fun ta'hka'ida'nta'_NK : NK ;
+fun ta'hka'inen_NK : NK ;
+fun ta'hteys_NK : NK ;
+fun ta'hti_NK : NK ;
+fun ta'htiaika_NK : NK ;
+fun ta'htima'inen_NK : NK ;
+fun ta'htimo'_NK : NK ;
+fun ta'htinen_NK : NK ;
+fun ta'hta'illa'_VK : VK ;
+fun ta'hta'in_NK : NK ;
+fun ta'hta'ys_NK : NK ;
+fun ta'hto'nen_NK : NK ;
+fun ta'hyilla'_VK : VK ;
+fun ta'hyily_NK : NK ;
+fun ta'hysteinen_AK : AK ;
+--+ fun ta'hysteisesti_AdvK : AdvK ;
+fun ta'hystella'_VK : VK ;
+fun ta'hystely_NK : NK ;
+fun ta'hystin_NK : NK ;
+fun ta'hystys_NK : NK ;
+fun ta'hysta'ja'_NK : NK ;
+fun ta'hysta'a'_VK : VK ;
+fun ta'hyta'_VK : VK ;
+fun ta'ha'n_AdvK : AdvK ;
+fun ta'ha'nastinen_NK : NK ;
+fun ta'i_NK : NK ;
+fun ta'kki_1_NK : NK ;
+fun ta'kki_2_NK : NK ;
+fun ta'ky_NK : NK ;
+fun ta'ka'la'inen_NK : NK ;
+fun ta'ka'na'_NK : NK ;
+fun ta'llainen_NK : NK ;
+fun ta'lleen_AdvK : AdvK ;
+fun ta'lli_NK : NK ;
+fun ta'lla'ta'_VK : VK ;
+fun ta'lla'ytya'_VK : VK ;
+fun ta'lla'a'n_AdvK : AdvK ;
+fun ta'llo'in_AdvK : AdvK ;
+fun ta'llo'inen_NK : NK ;
+fun ta'lta'a'n_AdvK : AdvK ;
+fun ta'mmo'inen_NK : NK ;
+fun ta'ma'nlainen_NK : NK ;
+fun ta'ma'nmoinen_NK : NK ;
+fun ta'nne_AdvK : AdvK ;
+fun ta'nnemma'_AdvK : AdvK ;
+fun ta'nnemma'ksi_AdvK : AdvK ;
+fun ta'nnemma's_AdvK : AdvK ;
+fun ta'nnempa'na'_AdvK : AdvK ;
+fun ta'nnempa'a'_AdvK : AdvK ;
+fun ta'nnimma'inen_NK : NK ;
+fun ta'nnimma'ksi_AdvK : AdvK ;
+fun ta'nnimma's_AdvK : AdvK ;
+fun ta'nnimpa'na'_AdvK : AdvK ;
+fun ta'nnimpa'a'_AdvK : AdvK ;
+fun ta'na'inen_NK : NK ;
+fun ta'na'a'n_AdvK : AdvK ;
+fun ta'plika's_NK : NK ;
+fun ta'plittya'_VK : VK ;
+fun ta'plitta'a'_VK : VK ;
+fun ta'pla'_NK : NK ;
+fun ta'pla'inen_NK : NK ;
+fun ta'pa'ryys_NK : NK ;
+fun ta'pa'ra'_AK : AK ;
+--+ fun ta'pa'ra'sti_AdvK : AdvK ;
+fun ta'po'_AdvK : AdvK ;
+fun ta'po'sen_AdvK : AdvK ;
+fun ta'rina'_NK : NK ;
+fun ta'ristys_NK : NK ;
+fun ta'rista'_VK : VK ;
+fun ta'rista'a'_VK : VK ;
+fun ta'risytta'a'_VK : VK ;
+fun ta'rkeileva'sti_AdvK : AdvK ;
+fun ta'rkeilla'_VK : VK ;
+fun ta'rkeily_NK : NK ;
+fun ta'rkeys_NK : NK ;
+fun ta'rkea'_AK : AK ;
+--+ fun ta'rkea'sti_AdvK : AdvK ;
+fun ta'rkkelys_NK : NK ;
+fun ta'rkki_NK : NK ;
+fun ta'rka'ta'_VK : VK ;
+fun ta'rppi_NK : NK ;
+fun ta'rppia'_VK : VK ;
+fun ta'rpa'tti_NK : NK ;
+fun ta'rpa'ta'_VK : VK ;
+fun ta'rsky_NK : NK ;
+fun ta'rskya'_VK : VK ;
+fun ta'rska'hdella'_VK : VK ;
+fun ta'rska'hdys_NK : NK ;
+fun ta'rska'hta'a'_VK : VK ;
+fun ta'rska'ys_NK : NK ;
+fun ta'rska'ytta'a'_VK : VK ;
+fun ta'rvelija'_NK : NK ;
+fun ta'rvella'_VK : VK ;
+fun ta'rveltya'_VK : VK ;
+fun ta'rva'ta'_VK : VK ;
+fun ta'rva'ytya'_VK : VK ;
+fun ta'rva'a'ntya'_VK : VK ;
+fun ta'ry_NK : NK ;
+fun ta'rytin_NK : NK ;
+fun ta'rytta'a'_VK : VK ;
+fun ta'rytys_NK : NK ;
+fun ta'ra'hdella'_VK : VK ;
+fun ta'ra'hdys_NK : NK ;
+fun ta'ra'hdytta'a'_VK : VK ;
+fun ta'ra'htely_NK : NK ;
+fun ta'ra'hta'a'_VK : VK ;
+fun ta'ra'ys_NK : NK ;
+fun ta'ra'ytta'a'_VK : VK ;
+fun ta'smennys_NK : NK ;
+fun ta'smentya'_VK : VK ;
+fun ta'smenta'a'_VK : VK ;
+fun ta'sma'lleen_AdvK : AdvK ;
+fun ta'sma'llinen_AK : AK ;
+--+ fun ta'sma'llisesti_AdvK : AdvK ;
+fun ta'sma'llistya'_VK : VK ;
+fun ta'sma'llista'a'_VK : VK ;
+fun ta'sma'llisyys_NK : NK ;
+fun ta'sma'ta'_VK : VK ;
+fun ta'sma'ys_NK : NK ;
+fun ta'sma'ytta'a'_VK : VK ;
+fun ta'sma'ytys_NK : NK ;
+fun ta'ssa'_AdvK : AdvK ;
+fun ta'sta'_AdvK : AdvK ;
+fun ta'ten_AdvK : AdvK ;
+fun ta'ti_NK : NK ;
+fun ta'tima'inen_AK : AK ;
+--+ fun ta'tima'isesti_AdvK : AdvK ;
+fun ta'tima'isyys_NK : NK ;
+fun ta'ydelleen_AdvK : AdvK ;
+fun ta'ydellinen_AK : AK ;
+--+ fun ta'ydellisesti_AdvK : AdvK ;
+fun ta'ydellistyma'_NK : NK ;
+fun ta'ydellistytta'a'_VK : VK ;
+fun ta'ydellistya'_VK : VK ;
+fun ta'ydellista'a'_VK : VK ;
+fun ta'ydellisyys_NK : NK ;
+fun ta'ydennella'_VK : VK ;
+fun ta'ydennys_NK : NK ;
+fun ta'ydentya'_VK : VK ;
+fun ta'ydenta'ja'_NK : NK ;
+fun ta'ydenta'a'_VK : VK ;
+fun ta'ydesti_AdvK : AdvK ;
+fun ta'ynna'_AdvK : AdvK ;
+fun ta'ysi_NK : NK ;
+fun ta'ysikokoisuus_NK : NK ;
+fun ta'ysilla'_AdvK : AdvK ;
+--+ fun ta'ysilukuisesti_AdvK : AdvK ;
+fun ta'ysilukuisuus_NK : NK ;
+--+ fun ta'ysimittaisesti_AdvK : AdvK ;
+fun ta'ysimittaisuus_NK : NK ;
+fun ta'ysin_AdvK : AdvK ;
+fun ta'ysinpalvellut_NK : NK ;
+fun ta'ysina'inen_NK : NK ;
+fun ta'ysina'isyys_NK : NK ;
+--+ fun ta'ysipainoisesti_AdvK : AdvK ;
+--+ fun ta'ysipa'iva'isesti_AdvK : AdvK ;
+fun ta'ysipa'iva'isyys_NK : NK ;
+--+ fun ta'ysitehoisesti_AdvK : AdvK ;
+--+ fun ta'ysivaltaisesti_AdvK : AdvK ;
+--+ fun ta'ysivoimaisesti_AdvK : AdvK ;
+fun ta'yskanttinen_NK : NK ;
+--+ fun ta'yspa'isesti_AdvK : AdvK ;
+fun ta'yspa'isyys_NK : NK ;
+--+ fun ta'yspa'iva'isesti_AdvK : AdvK ;
+fun ta'yspa'iva'isyys_NK : NK ;
+fun ta'yte_NK : NK ;
+fun ta'yteen_AdvK : AdvK ;
+fun ta'yteinen_NK : NK ;
+fun ta'ytella'_VK : VK ;
+fun ta'ytela'inen_AK : AK ;
+--+ fun ta'ytela'isesti_AdvK : AdvK ;
+fun ta'ytela'istya'_VK : VK ;
+fun ta'ytela'ista'a'_VK : VK ;
+fun ta'ytela'isyys_NK : NK ;
+fun ta'ytinen_NK : NK ;
+fun ta'ytteellinen_NK : NK ;
+fun ta'ytteinen_NK : NK ;
+fun ta'yttymys_NK : NK ;
+fun ta'yttyma'to'n_NK : NK ;
+fun ta'yttya'_VK : VK ;
+fun ta'ytta'ja'_NK : NK ;
+fun ta'ytta'ma'to'n_NK : NK ;
+fun ta'ytta'a'_VK : VK ;
+fun ta'ytto'_NK : NK ;
+fun ta'ytya'_VK : VK ;
+fun ta'yta'nto'o'n_AdvK : AdvK ;
+fun ta'yta'nto'o'npaneva_NK : NK ;
+fun ta'a'lla'_AdvK : AdvK ;
+fun ta'a'lta'_AdvK : AdvK ;
+fun to'herrella'_VK : VK ;
+fun to'herrys_NK : NK ;
+fun to'herta'a'_VK : VK ;
+fun to'hka'_NK : NK ;
+fun to'hriintya'_VK : VK ;
+fun to'hrija'_NK : NK ;
+fun to'hriytya'_VK : VK ;
+fun to'hria'_VK : VK ;
+fun to'hryinen_AK : AK ;
+--+ fun to'hryisesti_AdvK : AdvK ;
+fun to'hra'ta'_VK : VK ;
+fun to'hra'ytya'_VK : VK ;
+fun to'hra'a'ntya'_VK : VK ;
+fun to'inen_NK : NK ;
+fun to'kero'_AK : AK ;
+--+ fun to'kero'sti_AdvK : AdvK ;
+fun to'kkia'_VK : VK ;
+fun to'kka'ista'_VK : VK ;
+fun to'ksa'hdella'_VK : VK ;
+fun to'ksa'hta'a'_VK : VK ;
+fun to'ksa'ytta'a'_VK : VK ;
+fun to'ka'ta'_VK : VK ;
+fun to'ko'tti_NK : NK ;
+fun to'ko'tta'a'_VK : VK ;
+fun to'lkillinen_NK : NK ;
+fun to'lkitta'a'_VK : VK ;
+fun to'lkitys_NK : NK ;
+fun to'lkki_NK : NK ;
+fun to'lli_NK : NK ;
+fun to'llistelija'_NK : NK ;
+fun to'llistella'_VK : VK ;
+fun to'llistely_NK : NK ;
+fun to'lla'ta'_VK : VK ;
+fun to'llo'tin_NK : NK ;
+fun to'llo'tta'a'_VK : VK ;
+fun to'llo'tys_NK : NK ;
+fun to'lvia'_VK : VK ;
+fun to'lva'ista'_VK : VK ;
+fun to'lva'isy_NK : NK ;
+fun to'lva'ta'_VK : VK ;
+fun to'lva'ys_NK : NK ;
+fun to'mina'_NK : NK ;
+fun to'mistella'_VK : VK ;
+fun to'mista'_VK : VK ;
+fun to'mista'a'_VK : VK ;
+fun to'misytella'_VK : VK ;
+fun to'misytta'a'_VK : VK ;
+fun to'ma'hdella'_VK : VK ;
+fun to'ma'hdys_NK : NK ;
+fun to'ma'hta'a'_VK : VK ;
+fun to'ma'kka'_NK : NK ;
+fun to'ma'ys_NK : NK ;
+fun to'ma'ytta'a'_VK : VK ;
+fun to'nia'_VK : VK ;
+fun to'nkko'_NK : NK ;
+fun to'na'ista'_VK : VK ;
+fun to'na'isy_NK : NK ;
+fun to'no'_NK : NK ;
+fun to'peksinta'_NK : NK ;
+fun to'peksia'_VK : VK ;
+fun to'pina'_NK : NK ;
+fun to'ppa'illa'_VK : VK ;
+fun to'ppa'ily_NK : NK ;
+fun to'ppa'ys_NK : NK ;
+fun to'ppo'illa'_VK : VK ;
+fun to'ppo'ily_NK : NK ;
+fun to'ppo'nen_NK : NK ;
+fun to'ppo'silleen_AdvK : AdvK ;
+fun to'ppo'silla'a'n_AdvK : AdvK ;
+fun to'ppo'silta'a'n_AdvK : AdvK ;
+fun to'pseli_NK : NK ;
+fun to'pa'ta'_VK : VK ;
+fun to'po'_NK : NK ;
+fun to'po'tta'a'_VK : VK ;
+fun to'po'tys_NK : NK ;
+fun to'rkeilla'_VK : VK ;
+fun to'rkeily_NK : NK ;
+fun to'rkeys_NK : NK ;
+fun to'rkea'_AK : AK ;
+--+ fun to'rkea'sti_AdvK : AdvK ;
+fun to'rkimys_NK : NK ;
+fun to'rkkia'_VK : VK ;
+fun to'rky_NK : NK ;
+fun to'rkyinen_AK : AK ;
+--+ fun to'rkyisesti_AdvK : AdvK ;
+fun to'rka'ta'_VK : VK ;
+fun to'rma'_NK : NK ;
+fun to'rma'illa'_VK : VK ;
+fun to'rma'ily_NK : NK ;
+fun to'rma'nne_NK : NK ;
+fun to'rma'ta'_VK : VK ;
+fun to'rma'ys_NK : NK ;
+fun to'rma'ytin_NK : NK ;
+fun to'rma'ytta'a'_VK : VK ;
+fun to'rma'ytys_NK : NK ;
+fun to'rppo'_NK : NK ;
+fun to'rppo'illa'_VK : VK ;
+fun to'rppo'ily_NK : NK ;
+fun to'rro'lle_AdvK : AdvK ;
+fun to'rro'lleen_AdvK : AdvK ;
+fun to'rro'lla'_AdvK : AdvK ;
+fun to'rro'lla'a'n_AdvK : AdvK ;
+fun to'rro'tta'a'_VK : VK ;
+fun to'rro'tys_NK : NK ;
+fun to'rsa'ta'_VK : VK ;
+fun to'rsa'ys_NK : NK ;
+fun to'rtto'_NK : NK ;
+fun to'rtto'illa'_VK : VK ;
+fun to'rtto'ily_NK : NK ;
+fun to'ra'hdys_NK : NK ;
+fun to'ra'hdytta'a'_VK : VK ;
+fun to'ra'hta'a'_VK : VK ;
+fun to'ra'ys_NK : NK ;
+fun to'ra'ytta'a'_VK : VK ;
+fun to'ro'_NK : NK ;
+fun to'ro'lle_AdvK : AdvK ;
+fun to'ro'lleen_AdvK : AdvK ;
+fun to'ro'lla'_AdvK : AdvK ;
+fun to'ro'lla'a'n_AdvK : AdvK ;
+fun to'ro'ssa'_AdvK : AdvK ;
+fun to'ro'sta'_AdvK : AdvK ;
+fun to'ro'tta'a'_VK : VK ;
+fun to'ro'o'n_AdvK : AdvK ;
+fun to'tsa'_NK : NK ;
+fun to'ttero'_NK : NK ;
+fun to'yda'ta'_VK : VK ;
+fun to'yhdo'llinen_NK : NK ;
+fun to'yhto'_NK : NK ;
+fun to'yhto'hyyppa'_NK : NK ;
+fun to'ykeys_NK : NK ;
+fun to'ykea'_AK : AK ;
+--+ fun to'ykea'sti_AdvK : AdvK ;
+fun to'ykkia'_VK : VK ;
+fun to'yka'ta'_VK : VK ;
+fun to'yry_NK : NK ;
+fun to'yra'nne_NK : NK ;
+fun to'yra's_NK : NK ;
+fun to'yssy_NK : NK ;
+fun to'yssytta'a'_VK : VK ;
+fun to'yssa'hdella'_VK : VK ;
+fun to'yssa'hdys_NK : NK ;
+fun to'yssa'htely_NK : NK ;
+fun to'yssa'hta'a'_VK : VK ;
+fun to'yta'illa'_VK : VK ;
+fun to'yta'ista'_VK : VK ;
+fun to'yta'isy_NK : NK ;
+fun to'o't_AdvK : AdvK ;
+fun to'o'ta'ta'_VK : VK ;
+fun to'o'to'tta'a'_VK : VK ;
+fun ubikinoni_NK : NK ;
+fun udar_NK : NK ;
+fun udella_VK : VK ;
+fun udmurtti_NK : NK ;
+fun ufo_NK : NK ;
+fun ufoilla_VK : VK ;
+fun ufoilu_NK : NK ;
+fun ufologi_NK : NK ;
+fun ugrilainen_NK : NK ;
+fun ugristi_NK : NK ;
+fun ugristiikka_NK : NK ;
+fun uhalla_AdvK : AdvK ;
+fun uhallaan_AdvK : AdvK ;
+fun uhata_VK : VK ;
+fun uhitella_VK : VK ;
+fun uhittelu_NK : NK ;
+fun uhka_NK : NK ;
+fun uhkaaja_NK : NK ;
+fun uhkaava_AK : AK ;
+--+ fun uhkaavasti_AdvK : AdvK ;
+fun uhkaavuus_NK : NK ;
+fun uhkailla_VK : VK ;
+fun uhkailu_NK : NK ;
+fun uhkaus_NK : NK ;
+fun uhkea_AK : AK ;
+--+ fun uhkeasti_AdvK : AdvK ;
+fun uhkeus_NK : NK ;
+fun uhku_NK : NK ;
+fun uhkua_VK : VK ;
+fun uhma_NK : NK ;
+fun uhmainen_NK : NK ;
+fun uhmaisa_NK : NK ;
+fun uhmakas_AK : AK ;
+--+ fun uhmakkaasti_AdvK : AdvK ;
+fun uhmakkuus_NK : NK ;
+--+ fun uhmamielisesti_AdvK : AdvK ;
+--+ fun uhmapa'isesti_AdvK : AdvK ;
+fun uhmapa'isyys_NK : NK ;
+fun uhmata_VK : VK ;
+fun uho_NK : NK ;
+fun uhota_VK : VK ;
+fun uhrata_VK : VK ;
+fun uhraus_NK : NK ;
+fun uhrautua_VK : VK ;
+fun uhrautuva_AK : AK ;
+fun uhrautuvainen_NK : NK ;
+--+ fun uhrautuvasti_AdvK : AdvK ;
+fun uhrautuvuus_NK : NK ;
+fun uhri_NK : NK ;
+fun uida_VK : VK ;
+fun uiguuri_NK : NK ;
+fun uija_NK : NK ;
+--? fun uikkarit_NK : NK ;
+fun uikku_NK : NK ;
+fun uikuttaa_VK : VK ;
+fun uikutus_NK : NK ;
+fun uimahalli_NK : NK ;
+fun uimakoppi_NK : NK ;
+fun uimala_NK : NK ;
+fun uimapukusillaan_AdvK : AdvK ;
+fun uimapukusilleen_AdvK : AdvK ;
+fun uimari_NK : NK ;
+fun uimasillaan_AdvK : AdvK ;
+fun uimasilleen_AdvK : AdvK ;
+fun uimuri_NK : NK ;
+fun uinahdus_NK : NK ;
+fun uinahtaa_VK : VK ;
+fun uinailla_VK : VK ;
+fun uinailu_NK : NK ;
+fun uinti_NK : NK ;
+fun uinua_VK : VK ;
+fun uiskennella_VK : VK ;
+fun uisko_NK : NK ;
+fun uistaa_VK : VK ;
+fun uistelija_NK : NK ;
+fun uistella_VK : VK ;
+fun uistelu_NK : NK ;
+fun uistin_NK : NK ;
+fun uitella_VK : VK ;
+fun uittaa_VK : VK ;
+fun uitto_NK : NK ;
+fun uiva_NK : NK ;
+fun uivelo_NK : NK ;
+fun ujellus_NK : NK ;
+fun ujeltaa_VK : VK ;
+fun ujo_AK : AK ;
+fun ujoilla_VK : VK ;
+fun ujoilu_NK : NK ;
+fun ujostelematon_NK : NK ;
+fun ujostelemattomasti_AdvK : AdvK ;
+fun ujostelemattomuus_NK : NK ;
+fun ujostella_VK : VK ;
+fun ujostelu_NK : NK ;
+--+ fun ujosti_AdvK : AdvK ;
+fun ujostuttaa_VK : VK ;
+fun ujous_NK : NK ;
+fun ujua_VK : VK ;
+fun ujuttaa_VK : VK ;
+fun ujuttautua_VK : VK ;
+fun ujutus_NK : NK ;
+fun ukaasi_NK : NK ;
+fun ukkeli_NK : NK ;
+fun ukki_NK : NK ;
+fun ukko_NK : NK ;
+fun ukkonen_NK : NK ;
+fun ukkoontua_VK : VK ;
+fun ukkoskuuro_NK : NK ;
+fun ukkostaa_VK : VK ;
+fun ukkoutua_VK : VK ;
+fun ukottua_VK : VK ;
+fun ukraina_NK : NK ;
+fun uksi_NK : NK ;
+fun ukulele_NK : NK ;
+fun ukuli_NK : NK ;
+fun ula_NK : NK ;
+fun ulahdus_NK : NK ;
+fun ulahtaa_VK : VK ;
+fun ulappa_NK : NK ;
+fun ulettua_VK : VK ;
+fun ulina_NK : NK ;
+fun ulista_VK : VK ;
+--+ fun uljaasti_AdvK : AdvK ;
+fun uljas_AK : AK ;
+fun uljuus_NK : NK ;
+fun ulkoa_AdvK : AdvK ;
+fun ulkoilija_NK : NK ;
+fun ulkoilla_VK : VK ;
+fun ulkoilu_NK : NK ;
+fun ulkoiluttaa_VK : VK ;
+fun ulkoiluttaja_NK : NK ;
+fun ulkoilutus_NK : NK ;
+fun ulkoinen_AK : AK ;
+--+ fun ulkoisesti_AdvK : AdvK ;
+fun ulkoistaa_VK : VK ;
+fun ulkoistus_NK : NK ;
+--+ fun ulkokohtaisesti_AdvK : AdvK ;
+fun ulkokullattu_NK : NK ;
+fun ulkokuori_NK : NK ;
+fun ulkolainen_NK : NK ;
+fun ulkomaalaus_NK : NK ;
+fun ulkomaali_NK : NK ;
+fun ulkomaanpassi_NK : NK ;
+fun ulkomainen_NK : NK ;
+fun ulkomaisuus_NK : NK ;
+fun ulkona_AdvK : AdvK ;
+fun ulkonainen_AK : AK ;
+--+ fun ulkonaisesti_AdvK : AdvK ;
+fun ulkonee_VK : VK ;
+fun ulkonema_NK : NK ;
+fun ulkoneva_NK : NK ;
+fun ulkosalla_AdvK : AdvK ;
+fun ulkosalle_AdvK : AdvK ;
+fun ulkosalta_AdvK : AdvK ;
+fun ullakko_NK : NK ;
+fun uloimmainen_NK : NK ;
+fun uloimmaksi_AdvK : AdvK ;
+fun uloimmas_AdvK : AdvK ;
+fun uloimpaa_AdvK : AdvK ;
+fun uloimpana_AdvK : AdvK ;
+fun uloin_NK : NK ;
+fun uloinna_AdvK : AdvK ;
+fun uloke_NK : NK ;
+fun ulommainen_NK : NK ;
+fun ulommaksi_AdvK : AdvK ;
+fun ulommas_AdvK : AdvK ;
+fun ulompaa_AdvK : AdvK ;
+fun ulompana_AdvK : AdvK ;
+fun ulompi_NK : NK ;
+fun ulonnus_NK : NK ;
+fun ulontaa_VK : VK ;
+fun ulos_AdvK : AdvK ;
+fun ulosla'mpia'va'_NK : NK ;
+fun ulostaa_VK : VK ;
+fun uloste_NK : NK ;
+fun ulostus_NK : NK ;
+fun ulostuttaa_VK : VK ;
+fun ulota_VK : VK ;
+fun ulottaa_VK : VK ;
+fun ulottautua_VK : VK ;
+fun ulotteikas_NK : NK ;
+fun ulotteinen_NK : NK ;
+fun ulotteisuus_NK : NK ;
+fun ulottua_VK : VK ;
+fun ulottuma_NK : NK ;
+fun ulottumattomiin_AdvK : AdvK ;
+fun ulottumattomissa_AdvK : AdvK ;
+fun ulottuviin_AdvK : AdvK ;
+fun ulottuvilla_AdvK : AdvK ;
+fun ulottuville_AdvK : AdvK ;
+fun ulottuvilta_AdvK : AdvK ;
+fun ulottuvissa_AdvK : AdvK ;
+fun ulottuvista_AdvK : AdvK ;
+fun ulottuvuus_NK : NK ;
+fun ulpukka_NK : NK ;
+fun ulsteri_NK : NK ;
+fun ultimaatumi_NK : NK ;
+fun ultramariini_NK : NK ;
+fun ulvahdella_VK : VK ;
+fun ulvahdus_NK : NK ;
+fun ulvahtaa_VK : VK ;
+fun ulvaista_VK : VK ;
+fun ulvoa_VK : VK ;
+fun ulvonta_NK : NK ;
+fun ulvottaa_VK : VK ;
+fun umbra_NK : NK ;
+fun ummehtua_VK : VK ;
+fun ummehtuneisuus_NK : NK ;
+fun ummessa_AdvK : AdvK ;
+fun ummet_AdvK : AdvK ;
+fun ummetus_NK : NK ;
+fun ummikko_NK : NK ;
+fun ummistaa_VK : VK ;
+fun umpeen_AdvK : AdvK ;
+fun umpeentua_VK : VK ;
+fun umpeuttaa_VK : VK ;
+fun umpeutua_VK : VK ;
+fun umpi_NK : NK ;
+fun umpieritteinen_NK : NK ;
+--+ fun umpimielisesti_AdvK : AdvK ;
+fun umpima'hka'inen_AK : AK ;
+--+ fun umpima'hka'isesti_AdvK : AdvK ;
+fun umpima'hka'isyys_NK : NK ;
+fun umpima'hka'a'n_AdvK : AdvK ;
+--+ fun umpinaisesti_AdvK : AdvK ;
+fun umpio_NK : NK ;
+fun umpioida_VK : VK ;
+fun umpiointi_NK : NK ;
+fun umpioitua_VK : VK ;
+fun umpisukkeloon_AdvK : AdvK ;
+fun umpisukkelossa_AdvK : AdvK ;
+fun umpisukkelosta_AdvK : AdvK ;
+fun umpiunessa_AdvK : AdvK ;
+fun umpu_NK : NK ;
+fun underground_NK : NK ;
+fun understatement_NK : NK ;
+fun undulaatti_NK : NK ;
+fun uneksia_VK : VK ;
+fun uneksija_NK : NK ;
+fun uneksinta_NK : NK ;
+--+ fun uneliaasti_AdvK : AdvK ;
+fun uneliaisuus_NK : NK ;
+fun unelias_AK : AK ;
+fun unelma_NK : NK ;
+fun unelmoida_VK : VK ;
+fun unelmointi_NK : NK ;
+fun uneton_NK : NK ;
+fun unettaa_VK : VK ;
+fun unettomuus_NK : NK ;
+fun unho_NK : NK ;
+fun unhoittaa_VK : VK ;
+fun unhoittua_VK : VK ;
+fun unhola_NK : NK ;
+fun unhottaa_VK : VK ;
+fun unhottua_VK : VK ;
+fun uni_NK : NK ;
+fun uniikki_NK : NK ;
+fun unikko_NK : NK ;
+fun uninen_AK : AK ;
+fun unioni_NK : NK ;
+--+ fun unisesti_AdvK : AdvK ;
+fun unissaan_AdvK : AdvK ;
+fun unisuus_NK : NK ;
+fun universaalinen_NK : NK ;
+fun universaalistua_VK : VK ;
+fun universiadit_NK : NK ;
+fun universumi_NK : NK ;
+fun univormu_NK : NK ;
+fun unkari_NK : NK ;
+fun unkarinnos_NK : NK ;
+fun unkarintaa_VK : VK ;
+fun unohdella_VK : VK ;
+fun unohdus_NK : NK ;
+fun unohtaa_VK : VK ;
+fun unohtavainen_NK : NK ;
+fun unohtavaisuus_NK : NK ;
+fun unohtelu_NK : NK ;
+fun unohtua_VK : VK ;
+fun unohtumaton_NK : NK ;
+fun unohtumattomasti_AdvK : AdvK ;
+fun unssi_NK : NK ;
+fun untuva_NK : NK ;
+fun untuvainen_NK : NK ;
+fun untuvikko_NK : NK ;
+fun uoma_NK : NK ;
+fun upea_AK : AK ;
+--+ fun upeasti_AdvK : AdvK ;
+fun upeus_NK : NK ;
+fun upokas_NK : NK ;
+fun upoksiin_AdvK : AdvK ;
+fun upoksissa_AdvK : AdvK ;
+fun upoksista_AdvK : AdvK ;
+fun upota_VK : VK ;
+fun upote_NK : NK ;
+fun upottaa_VK : VK ;
+fun upotteinen_NK : NK ;
+fun upotus_NK : NK ;
+fun uppeluksiin_AdvK : AdvK ;
+fun uppeluksissa_AdvK : AdvK ;
+--+ fun uppiniskaisesti_AdvK : AdvK ;
+fun uppiniskaisuus_NK : NK ;
+fun uppista_AdvK : AdvK ;
+fun uppoama_NK : NK ;
+fun uppoamaton_NK : NK ;
+fun uppouma_NK : NK ;
+fun uppoutua_VK : VK ;
+fun ups_AdvK : AdvK ;
+fun upseeri_NK : NK ;
+fun upseeristo_NK : NK ;
+fun upsis_AdvK : AdvK ;
+fun upsista_AdvK : AdvK ;
+fun ura_NK : NK ;
+fun uraani_NK : NK ;
+fun uraauurtava_AK : AK ;
+--+ fun uraauurtavasti_AdvK : AdvK ;
+fun urahdus_NK : NK ;
+fun urahtaa_VK : VK ;
+fun urakka_NK : NK ;
+fun urakoida_VK : VK ;
+fun urakoija_NK : NK ;
+fun urakointi_NK : NK ;
+fun urakoitsija_NK : NK ;
+fun uralilainen_NK : NK ;
+fun uranuurtaja_NK : NK ;
+fun urauttaa_VK : VK ;
+fun urautua_VK : VK ;
+fun urbaani_AK : AK ;
+fun urbaaninen_AK : AK ;
+--+ fun urbaanisesti_AdvK : AdvK ;
+--+ fun urbaanisti_AdvK : AdvK ;
+fun urbaanistua_VK : VK ;
+fun urbaanisuus_NK : NK ;
+fun urbaanius_NK : NK ;
+fun urbanisaatio_NK : NK ;
+fun urbanisoitua_VK : VK ;
+fun urea_NK : NK ;
+fun urhea_AK : AK ;
+--+ fun urheasti_AdvK : AdvK ;
+fun urheilija_NK : NK ;
+fun urheilla_VK : VK ;
+fun urheilu_NK : NK ;
+fun urheilullinen_NK : NK ;
+fun urheus_NK : NK ;
+fun urho_NK : NK ;
+fun urhoollinen_AK : AK ;
+--+ fun urhoollisesti_AdvK : AdvK ;
+fun urhoollisuus_NK : NK ;
+fun urina_NK : NK ;
+fun urinaali_NK : NK ;
+fun urista_VK : VK ;
+fun urittaa_VK : VK ;
+fun uritus_NK : NK ;
+fun urjeta_VK : VK ;
+fun urkinta_NK : NK ;
+fun urkkia_VK : VK ;
+fun urkkija_NK : NK ;
+fun urkuparvi_NK : NK ;
+fun urkuri_NK : NK ;
+fun urologi_NK : NK ;
+fun urologia_NK : NK ;
+fun urologinen_NK : NK ;
+fun uros_NK : NK ;
+fun urpiainen_NK : NK ;
+fun urpu_NK : NK ;
+fun urputtaa_VK : VK ;
+fun urputus_NK : NK ;
+fun urtikaria_NK : NK ;
+--? fun urut_NK : NK ;
+fun usalainen_NK : NK ;
+fun usea_AK : AK ;
+fun useammanlainen_NK : NK ;
+fun useanlainen_NK : NK ;
+--+ fun useasti_AdvK : AdvK ;
+fun useimmiten_AdvK : AdvK ;
+fun usein_AdvK : AdvK ;
+fun useus_NK : NK ;
+--+ fun uskaliaasti_AdvK : AdvK ;
+fun uskaliaisuus_NK : NK ;
+fun uskalias_AK : AK ;
+fun uskalikko_NK : NK ;
+fun uskallus_NK : NK ;
+fun uskaltaa_VK : VK ;
+fun uskaltautua_VK : VK ;
+fun usko_NK : NK ;
+fun uskoa_VK : VK ;
+fun uskoinen_AK : AK ;
+--+ fun uskoisesti_AdvK : AdvK ;
+fun uskoisuus_NK : NK ;
+fun uskollinen_AK : AK ;
+--+ fun uskollisesti_AdvK : AdvK ;
+fun uskollisuus_NK : NK ;
+fun uskomaton_NK : NK ;
+fun uskomattomasti_AdvK : AdvK ;
+fun uskomattomuus_NK : NK ;
+fun uskomus_NK : NK ;
+fun uskonnollinen_AK : AK ;
+--+ fun uskonnollisesti_AdvK : AdvK ;
+fun uskonnollisuus_NK : NK ;
+fun uskonto_NK : NK ;
+fun uskotella_VK : VK ;
+fun uskoton_NK : NK ;
+fun uskottava_AK : AK ;
+--+ fun uskottavasti_AdvK : AdvK ;
+fun uskottavuus_NK : NK ;
+fun uskottelu_NK : NK ;
+fun uskottomuus_NK : NK ;
+fun uskottu_NK : NK ;
+fun uskoutua_VK : VK ;
+fun uskova_NK : NK ;
+fun uskovainen_NK : NK ;
+fun ussa_NK : NK ;
+fun usuttaa_VK : VK ;
+fun usutus_NK : NK ;
+fun usva_NK : NK ;
+fun usvainen_NK : NK ;
+fun usvaisuus_NK : NK ;
+fun utare_NK : NK ;
+--+ fun uteliaasti_AdvK : AdvK ;
+fun uteliaisuus_NK : NK ;
+fun utelias_AK : AK ;
+fun utelija_NK : NK ;
+fun utelu_NK : NK ;
+fun utilitarismi_NK : NK ;
+fun utilitaristi_NK : NK ;
+fun utilitaristinen_NK : NK ;
+fun utooppinen_NK : NK ;
+fun utopia_NK : NK ;
+fun utopisti_NK : NK ;
+fun utopistinen_AK : AK ;
+--+ fun utopistisesti_AdvK : AdvK ;
+fun utopistisuus_NK : NK ;
+fun utu_NK : NK ;
+fun utuinen_NK : NK ;
+fun uudelleen_AdvK : AdvK ;
+fun uudenlainen_NK : NK ;
+fun uudennos_NK : NK ;
+fun uudennus_NK : NK ;
+fun uudentaa_VK : VK ;
+fun uudentua_VK : VK ;
+fun uudestaan_AdvK : AdvK ;
+fun uudestisyntyminen_NK : NK ;
+fun uudestisyntynyt_NK : NK ;
+fun uudin_NK : NK ;
+fun uudistaa_VK : VK ;
+fun uudistaja_NK : NK ;
+fun uudistua_VK : VK ;
+fun uudistumaton_NK : NK ;
+fun uudistus_NK : NK ;
+fun uuhi_NK : NK ;
+fun uuma_NK : NK ;
+fun uumen_NK : NK ;
+fun uumoilla_VK : VK ;
+fun uumoilu_NK : NK ;
+fun uuni_NK : NK ;
+fun uunillinen_NK : NK ;
+fun uuno_NK : NK ;
+fun uupua_VK : VK ;
+fun uupumaton_NK : NK ;
+fun uupumattomasti_AdvK : AdvK ;
+fun uupumattomuus_NK : NK ;
+fun uupumus_NK : NK ;
+fun uuras_NK : NK ;
+fun uurastaa_VK : VK ;
+fun uurastaja_NK : NK ;
+fun uurastus_NK : NK ;
+fun uurna_NK : NK ;
+fun uurre_NK : NK ;
+fun uurros_NK : NK ;
+fun uurrostaa_VK : VK ;
+fun uurrostus_NK : NK ;
+fun uurtaa_VK : VK ;
+fun uurteellinen_NK : NK ;
+fun uurteinen_NK : NK ;
+fun uurteisuus_NK : NK ;
+fun uurto_NK : NK ;
+fun uusi_NK : NK ;
+fun uusia_VK : VK ;
+fun uusija_NK : NK ;
+fun uusinta_NK : NK ;
+fun uusinto_NK : NK ;
+fun uusiseelantilainen_NK : NK ;
+fun uusitestamentillinen_NK : NK ;
+fun uusiutua_VK : VK ;
+--+ fun uusrahvaanomaisesti_AdvK : AdvK ;
+fun uute_NK : NK ;
+fun uutinen_NK : NK ;
+fun uutismotti_NK : NK ;
+fun uutisoida_VK : VK ;
+fun uuttaa_VK : VK ;
+fun uuttera_AK : AK ;
+--+ fun uutterasti_AdvK : AdvK ;
+fun uutteruus_NK : NK ;
+fun uutto_NK : NK ;
+fun uuttu_NK : NK ;
+fun uutukainen_NK : NK ;
+fun uutuus_NK : NK ;
+fun uuvahdus_NK : NK ;
+fun uuvahtaa_VK : VK ;
+fun uuvuksiin_AdvK : AdvK ;
+fun uuvuksissa_AdvK : AdvK ;
+fun uuvuttaa_VK : VK ;
+fun uuvutus_NK : NK ;
+fun vaade_NK : NK ;
+fun vaadin_NK : NK ;
+fun vaahdota_VK : VK ;
+fun vaahdote_NK : NK ;
+fun vaahdotin_NK : NK ;
+fun vaahdottaa_VK : VK ;
+fun vaahdotus_NK : NK ;
+fun vaahtera_NK : NK ;
+fun vaahto_NK : NK ;
+fun vaahtoinen_NK : NK ;
+fun vaahtoisuus_NK : NK ;
+fun vaahtoutua_VK : VK ;
+fun vaaita_VK : VK ;
+fun vaaitus_NK : NK ;
+fun vaaka_NK : NK ;
+fun vaakkua_VK : VK ;
+fun vaaksa_NK : NK ;
+fun vaaksiainen_NK : NK ;
+fun vaakuna_NK : NK ;
+fun vaalea_NK : NK ;
+fun vaaleaverikko'_NK : NK ;
+fun vaalennus_NK : NK ;
+fun vaalentaa_VK : VK ;
+fun vaalentua_VK : VK ;
+fun vaaleta_VK : VK ;
+fun vaaleus_NK : NK ;
+fun vaali_NK : NK ;
+fun vaalia_VK : VK ;
+fun vaalinta_NK : NK ;
+fun vaan_AdvK : AdvK ;
+fun vaania_VK : VK ;
+fun vaanija_NK : NK ;
+fun vaaninta_NK : NK ;
+fun vaapertaa_VK : VK ;
+fun vaappu_NK : NK ;
+fun vaappua_VK : VK ;
+fun vaapsahainen_NK : NK ;
+fun vaapsiainen_NK : NK ;
+fun vaapukka_NK : NK ;
+fun vaapunta_NK : NK ;
+fun vaaputtaa_VK : VK ;
+fun vaaputus_NK : NK ;
+fun vaara_1_NK : NK ;
+fun vaara_2_NK : NK ;
+fun vaarain_NK : NK ;
+fun vaarainen_NK : NK ;
+fun vaarallinen_AK : AK ;
+--+ fun vaarallisesti_AdvK : AdvK ;
+fun vaarallisuus_NK : NK ;
+fun vaaranlaki_NK : NK ;
+fun vaarantaa_VK : VK ;
+fun vaarantua_VK : VK ;
+fun vaaraton_NK : NK ;
+fun vaarattomuus_NK : NK ;
+fun vaari_1_NK : NK ;
+fun vaari_2_AdvK : AdvK ;
+fun vaarna_NK : NK ;
+fun vaarnata_VK : VK ;
+fun vaarnaus_NK : NK ;
+fun vaarua_VK : VK ;
+fun vaarunta_NK : NK ;
+fun vaasi_NK : NK ;
+fun vaata_VK : VK ;
+fun vaate_NK : NK ;
+fun vaatehtia_VK : VK ;
+fun vaatehtimo_NK : NK ;
+--+ fun vaateliaasti_AdvK : AdvK ;
+fun vaateliaisuus_NK : NK ;
+fun vaatelias_AK : AK ;
+fun vaatettaa_VK : VK ;
+fun vaatetus_NK : NK ;
+fun vaatia_VK : VK ;
+fun vaatija_NK : NK ;
+fun vaatimaton_NK : NK ;
+fun vaatimattomasti_AdvK : AdvK ;
+fun vaatimattomuus_NK : NK ;
+fun vaatimus_NK : NK ;
+fun vaativa_AK : AK ;
+fun vaativainen_NK : NK ;
+--+ fun vaativasti_AdvK : AdvK ;
+fun vaativuus_NK : NK ;
+fun vaatteinen_NK : NK ;
+fun vaatturi_NK : NK ;
+fun vadelma_NK : NK ;
+fun vadelmikko_NK : NK ;
+fun vadi_NK : NK ;
+fun vadillinen_NK : NK ;
+fun vaellella_VK : VK ;
+fun vaellus_NK : NK ;
+fun vaeltaa_VK : VK ;
+fun vaeltaja_NK : NK ;
+fun vaeltelu_NK : NK ;
+fun vagina_NK : NK ;
+fun vaginismi_NK : NK ;
+fun vaha_NK : NK ;
+fun vahakas_NK : NK ;
+fun vahata_VK : VK ;
+fun vahaus_NK : NK ;
+fun vahdata_VK : VK ;
+fun vahdinta_NK : NK ;
+fun vahingoittaa_VK : VK ;
+fun vahingoittua_VK : VK ;
+fun vahingoittuma_NK : NK ;
+fun vahingoittumaton_NK : NK ;
+fun vahingollinen_AK : AK ;
+--+ fun vahingollisesti_AdvK : AdvK ;
+fun vahingollisuus_NK : NK ;
+fun vahinko_NK : NK ;
+fun vahti_NK : NK ;
+fun vahtia_VK : VK ;
+fun vahva_AK : AK ;
+fun vahvalti_AdvK : AdvK ;
+--+ fun vahvasti_AdvK : AdvK ;
+fun vahvennos_NK : NK ;
+fun vahvennus_NK : NK ;
+fun vahventaa_VK : VK ;
+fun vahventua_VK : VK ;
+fun vahventuma_NK : NK ;
+fun vahvero_NK : NK ;
+fun vahveta_VK : VK ;
+fun vahvike_NK : NK ;
+fun vahvikkeinen_NK : NK ;
+fun vahvistaa_VK : VK ;
+fun vahvistaja_NK : NK ;
+fun vahvistamaton_NK : NK ;
+fun vahviste_NK : NK ;
+fun vahvisteinen_NK : NK ;
+fun vahvistin_NK : NK ;
+fun vahvistua_VK : VK ;
+fun vahvistus_NK : NK ;
+fun vahvistuttaa_VK : VK ;
+fun vahvuinen_NK : NK ;
+fun vahvuus_NK : NK ;
+fun vai_AdvK : AdvK ;
+fun vaiennus_NK : NK ;
+fun vaientaa_VK : VK ;
+fun vaientua_VK : VK ;
+fun vaieta_VK : VK ;
+fun vaihdanta_NK : NK ;
+fun vaihde_NK : NK ;
+fun vaihdella_VK : VK ;
+fun vaihdettava_NK : NK ;
+fun vaihdettavuus_NK : NK ;
+fun vaihdin_NK : NK ;
+fun vaihdokas_NK : NK ;
+fun vaihdokki_NK : NK ;
+fun vaihdos_NK : NK ;
+fun vaihdunta_NK : NK ;
+fun vaihe_NK : NK ;
+fun vaiheikas_NK : NK ;
+fun vaiheikkuus_NK : NK ;
+fun vaiheinen_NK : NK ;
+fun vaiheistaa_VK : VK ;
+fun vaiheistus_NK : NK ;
+fun vaiheittaa_VK : VK ;
+fun vaiheittain_AdvK : AdvK ;
+fun vaiheittainen_AK : AK ;
+--+ fun vaiheittaisesti_AdvK : AdvK ;
+fun vaihtaa_VK : VK ;
+fun vaihtaja_NK : NK ;
+fun vaihteinen_NK : NK ;
+fun vaihteisto_NK : NK ;
+fun vaihtelu_NK : NK ;
+fun vaihto_NK : NK ;
+--+ fun vaihtoehtoisesti_AdvK : AdvK ;
+fun vaihtosuuntaaja_NK : NK ;
+fun vaihtua_VK : VK ;
+fun vaihtuvuus_NK : NK ;
+fun vaijeri_NK : NK ;
+fun vaikea_AK : AK ;
+--+ fun vaikeaselkoisesti_AdvK : AdvK ;
+fun vaikeaselkoisuus_NK : NK ;
+--+ fun vaikeasti_AdvK : AdvK ;
+fun vaikeroida_VK : VK ;
+fun vaikerointi_NK : NK ;
+fun vaikerrella_VK : VK ;
+fun vaikerrus_NK : NK ;
+fun vaikertaa_VK : VK ;
+fun vaikeus_NK : NK ;
+fun vaikeuttaa_VK : VK ;
+fun vaikeutua_VK : VK ;
+fun vaikeutus_NK : NK ;
+fun vaikka_AdvK : AdvK ;
+fun vaikku_NK : NK ;
+fun vaikute_NK : NK ;
+fun vaikutelma_NK : NK ;
+fun vaikutin_NK : NK ;
+fun vaikuttaa_VK : VK ;
+fun vaikuttaja_NK : NK ;
+fun vaikuttava_AK : AK ;
+--+ fun vaikuttavasti_AdvK : AdvK ;
+fun vaikuttavuus_NK : NK ;
+fun vaikutteinen_AK : AK ;
+--+ fun vaikutteisesti_AdvK : AdvK ;
+fun vaikutteisuus_NK : NK ;
+fun vaikuttua_VK : VK ;
+fun vaikutuksinen_NK : NK ;
+fun vaikutus_NK : NK ;
+fun vaikutusaika_NK : NK ;
+fun vailla_AdvK : AdvK ;
+fun vaille_AdvK : AdvK ;
+fun vaillinainen_AK : AK ;
+--+ fun vaillinaisesti_AdvK : AdvK ;
+fun vaillinaisuus_NK : NK ;
+fun vaillinki_NK : NK ;
+fun vaimea_NK : NK ;
+fun vaimennin_NK : NK ;
+fun vaimennus_NK : NK ;
+fun vaimentaa_VK : VK ;
+fun vaimentua_VK : VK ;
+fun vaimeta_VK : VK ;
+fun vaimo_NK : NK ;
+fun vain_AdvK : AdvK ;
+fun vainaa_NK : NK ;
+fun vainaja_NK : NK ;
+fun vainen_AdvK : AdvK ;
+fun vaineskaan_AdvK : AdvK ;
+fun vainio_NK : NK ;
+fun vaino_NK : NK ;
+fun vainoaja_NK : NK ;
+fun vainoharhaisuus_NK : NK ;
+fun vainota_VK : VK ;
+fun vainu_NK : NK ;
+fun vainuinen_NK : NK ;
+fun vainuta_VK : VK ;
+fun vaippa_NK : NK ;
+fun vaippainen_NK : NK ;
+fun vaipua_VK : VK ;
+fun vaisto_NK : NK ;
+fun vaistoinen_AK : AK ;
+--+ fun vaistoisesti_AdvK : AdvK ;
+fun vaistoisuus_NK : NK ;
+--+ fun vaistomaisesti_AdvK : AdvK ;
+fun vaistomaisuus_NK : NK ;
+--+ fun vaistonvaraisesti_AdvK : AdvK ;
+fun vaistota_VK : VK ;
+fun vaisu_AK : AK ;
+--+ fun vaisusti_AdvK : AdvK ;
+fun vaisuus_NK : NK ;
+--+ fun vaiteliaasti_AdvK : AdvK ;
+fun vaiteliaisuus_NK : NK ;
+fun vaitelias_AK : AK ;
+fun vaiti_AdvK : AdvK ;
+fun vaitonainen_AK : AK ;
+--+ fun vaitonaisesti_AdvK : AdvK ;
+fun vaitonaisuus_NK : NK ;
+fun vaiva_NK : NK ;
+fun vaivaaja_NK : NK ;
+fun vaivaantua_VK : VK ;
+fun vaivainen_AK : AK ;
+--+ fun vaivaisesti_AdvK : AdvK ;
+fun vaivalloinen_AK : AK ;
+--+ fun vaivalloisesti_AdvK : AdvK ;
+fun vaivalloisuus_NK : NK ;
+fun vaivata_VK : VK ;
+fun vaivaton_NK : NK ;
+fun vaivattomasti_AdvK : AdvK ;
+fun vaivattomuus_NK : NK ;
+fun vaivaus_NK : NK ;
+fun vaivautua_VK : VK ;
+fun vaivihkaa_AdvK : AdvK ;
+fun vaivihkainen_NK : NK ;
+fun vaivoin_AdvK : AdvK ;
+fun vaivuttaa_VK : VK ;
+fun vaivutus_NK : NK ;
+fun vaja_NK : NK ;
+fun vajaa_NK : NK ;
+fun vajaala'mpo'isyys_NK : NK ;
+fun vajaamittaisuus_NK : NK ;
+fun vajaasa'rma'isyys_NK : NK ;
+--+ fun vajaatehoisesti_AdvK : AdvK ;
+--+ fun vajanaisesti_AdvK : AdvK ;
+fun vajauksellinen_NK : NK ;
+fun vajauksellisuus_NK : NK ;
+fun vajaus_NK : NK ;
+fun vajauttaa_VK : VK ;
+fun vajava_NK : NK ;
+fun vajavainen_AK : AK ;
+--+ fun vajavaisesti_AdvK : AdvK ;
+fun vajavuus_NK : NK ;
+fun vaje_NK : NK ;
+fun vajennus_NK : NK ;
+fun vajentaa_VK : VK ;
+fun vajentua_VK : VK ;
+fun vajeta_VK : VK ;
+fun vajoama_NK : NK ;
+fun vajota_VK : VK ;
+fun vajottaa_VK : VK ;
+fun vajuuttaa_VK : VK ;
+fun vaka_AdvK : AdvK ;
+fun vakaa_AK : AK ;
+fun vakaaja_NK : NK ;
+fun vakaannuttaa_VK : VK ;
+fun vakaantua_VK : VK ;
+--+ fun vakaasti_AdvK : AdvK ;
+fun vakain_NK : NK ;
+fun vakainen_NK : NK ;
+fun vakallinen_NK : NK ;
+fun vakanssi_NK : NK ;
+fun vakaumuksellinen_AK : AK ;
+--+ fun vakaumuksellisesti_AdvK : AdvK ;
+fun vakaumuksellisuus_NK : NK ;
+fun vakaumus_NK : NK ;
+fun vakaus_1_NK : NK ;
+fun vakaus_2_NK : NK ;
+fun vakauttaa_1_VK : VK ;
+fun vakauttaa_2_VK : VK ;
+fun vakautua_VK : VK ;
+fun vakautus_NK : NK ;
+fun vakava_AK : AK ;
+fun vakavaraistua_VK : VK ;
+--+ fun vakavasti_AdvK : AdvK ;
+fun vakavissaan_AdvK : AdvK ;
+fun vakavoida_VK : VK ;
+fun vakavoittaa_VK : VK ;
+fun vakavoitua_VK : VK ;
+fun vakavuus_NK : NK ;
+fun vakiinnuttaa_VK : VK ;
+fun vakiinnutus_NK : NK ;
+fun vakiintua_VK : VK ;
+fun vakinainen_AK : AK ;
+--+ fun vakinaisesti_AdvK : AdvK ;
+fun vakinaistaa_VK : VK ;
+fun vakinaistua_VK : VK ;
+fun vakinaistuttaa_VK : VK ;
+fun vakinaisuus_NK : NK ;
+fun vakio_NK : NK ;
+fun vakioida_VK : VK ;
+fun vakioinen_NK : NK ;
+fun vakiointi_NK : NK ;
+fun vakioisuus_NK : NK ;
+fun vakioitua_VK : VK ;
+fun vakiokoko_NK : NK ;
+fun vakiopistooliammunta_NK : NK ;
+fun vakiovarusteinen_NK : NK ;
+fun vakituinen_AK : AK ;
+--+ fun vakituisesti_AdvK : AdvK ;
+fun vakka_NK : NK ;
+fun vako_NK : NK ;
+fun vakoilija_NK : NK ;
+fun vakoilla_VK : VK ;
+fun vakoilu_NK : NK ;
+fun vaksi_NK : NK ;
+fun vakuudellinen_NK : NK ;
+fun vakuumi_NK : NK ;
+fun vakuus_NK : NK ;
+fun vakuutella_VK : VK ;
+fun vakuutettu_NK : NK ;
+fun vakuuttaa_VK : VK ;
+fun vakuuttamaton_NK : NK ;
+fun vakuuttautua_VK : VK ;
+fun vakuuttava_AK : AK ;
+--+ fun vakuuttavasti_AdvK : AdvK ;
+fun vakuuttavuus_NK : NK ;
+fun vakuuttelu_NK : NK ;
+fun vakuuttua_VK : VK ;
+fun vakuutus_NK : NK ;
+fun vakuutusaika_NK : NK ;
+fun vala_NK : NK ;
+fun valaa_VK : VK ;
+--+ fun valaehtoisesti_AdvK : AdvK ;
+fun valahdus_NK : NK ;
+fun valahtaa_VK : VK ;
+fun valaisin_NK : NK ;
+fun valaista_VK : VK ;
+fun valaistua_VK : VK ;
+fun valaistus_NK : NK ;
+fun valaisu_NK : NK ;
+fun valaja_NK : NK ;
+fun valakka_NK : NK ;
+fun valallinen_NK : NK ;
+fun valannainen_NK : NK ;
+fun valannos_NK : NK ;
+fun valanta_NK : NK ;
+fun valantehnyt_NK : NK ;
+fun valanvannoja_NK : NK ;
+fun valapatto_NK : NK ;
+fun valapattoinen_NK : NK ;
+fun valapattoisuus_NK : NK ;
+fun valas_NK : NK ;
+fun vale_NK : NK ;
+fun valehdella_VK : VK ;
+fun valehtelija_NK : NK ;
+fun valehtelu_NK : NK ;
+fun valella_VK : VK ;
+fun valelma_NK : NK ;
+fun valelu_NK : NK ;
+fun valenssi_NK : NK ;
+fun valeriaana_NK : NK ;
+fun valhe_NK : NK ;
+fun valheellinen_AK : AK ;
+--+ fun valheellisesti_AdvK : AdvK ;
+fun valheellisuus_NK : NK ;
+fun validi_NK : NK ;
+fun validiteetti_NK : NK ;
+fun validius_NK : NK ;
+fun valikko_NK : NK ;
+fun valikoida_VK : VK ;
+fun valikoima_NK : NK ;
+fun valikoimaton_NK : NK ;
+fun valikointi_NK : NK ;
+fun valikoitua_VK : VK ;
+fun valimo_NK : NK ;
+fun valin_NK : NK ;
+--+ fun valinnaisesti_AdvK : AdvK ;
+fun valinta_NK : NK ;
+fun valintainen_NK : NK ;
+fun valio_NK : NK ;
+fun valistaa_VK : VK ;
+fun valistaja_NK : NK ;
+fun valistua_VK : VK ;
+fun valistus_NK : NK ;
+fun valistusaika_NK : NK ;
+fun valita_VK : VK ;
+fun valitella_VK : VK ;
+fun valitettava_AK : AK ;
+--+ fun valitettavasti_AdvK : AdvK ;
+fun valitettavuus_NK : NK ;
+fun valitsija_NK : NK ;
+fun valitsin_NK : NK ;
+fun valittaa_VK : VK ;
+fun valittaja_NK : NK ;
+fun valittelu_NK : NK ;
+fun valitus_NK : NK ;
+fun valitusaika_NK : NK ;
+fun valituttaa_VK : VK ;
+fun valiutua_VK : VK ;
+--? fun valjaat_NK : NK ;
+fun valjakko_NK : NK ;
+fun valjastaa_VK : VK ;
+fun valjastus_NK : NK ;
+fun valjeta_VK : VK ;
+fun valju_AK : AK ;
+--+ fun valjusti_AdvK : AdvK ;
+fun valjuus_NK : NK ;
+fun valkaisematon_NK : NK ;
+fun valkaisimo_NK : NK ;
+fun valkaista_VK : VK ;
+fun valkaisu_NK : NK ;
+fun valkama_NK : NK ;
+fun valkata_VK : VK ;
+fun valkea_NK : NK ;
+fun valkeus_NK : NK ;
+fun valkkaus_NK : NK ;
+fun valkki_NK : NK ;
+fun valkohapsinen_NK : NK ;
+fun valkohehkuinen_NK : NK ;
+fun valkoinen_NK : NK ;
+fun valkoisuus_NK : NK ;
+fun valkokangas_NK : NK ;
+fun valkolainen_NK : NK ;
+fun valkomulperi_NK : NK ;
+fun valkopyykki_NK : NK ;
+fun valkopa'lvisyys_NK : NK ;
+fun valkosipulivoi_NK : NK ;
+fun valkosormisuus_NK : NK ;
+fun valkota'hka'isyys_NK : NK ;
+fun valkovatsuri_NK : NK ;
+fun valkoviini_NK : NK ;
+fun valkuainen_NK : NK ;
+fun valkuaisinen_NK : NK ;
+fun valkuaisvirtsaisuus_NK : NK ;
+fun valkyria_NK : NK ;
+fun vallalla_AdvK : AdvK ;
+fun vallalle_AdvK : AdvK ;
+fun vallan_AdvK : AdvK ;
+fun vallankaan_AdvK : AdvK ;
+fun vallankin_AdvK : AdvK ;
+--+ fun vallankumouksellisesti_AdvK : AdvK ;
+fun vallassa_AdvK : AdvK ;
+fun vallasta_AdvK : AdvK ;
+fun vallata_VK : VK ;
+fun vallaton_NK : NK ;
+fun vallattomasti_AdvK : AdvK ;
+fun vallattomuus_NK : NK ;
+fun vallesmanni_NK : NK ;
+fun valli_NK : NK ;
+fun vallita_VK : VK ;
+fun vallitseva_AK : AK ;
+--+ fun vallitsevasti_AdvK : AdvK ;
+fun valloillaan_AdvK : AdvK ;
+fun valloilleen_AdvK : AdvK ;
+fun valloittaa_VK : VK ;
+fun valloittaja_NK : NK ;
+fun valloittamaton_NK : NK ;
+fun valloittava_AK : AK ;
+--+ fun valloittavasti_AdvK : AdvK ;
+fun valloitus_NK : NK ;
+fun valloni_NK : NK ;
+fun valmennus_NK : NK ;
+fun valmentaa_VK : VK ;
+fun valmentaja_NK : NK ;
+fun valmentautua_VK : VK ;
+fun valmis_NK : NK ;
+fun valmistaa_VK : VK ;
+fun valmistaja_NK : NK ;
+fun valmistamo_NK : NK ;
+fun valmistautua_VK : VK ;
+fun valmistava_AK : AK ;
+--+ fun valmistavasti_AdvK : AdvK ;
+fun valmiste_NK : NK ;
+fun valmisteilla_AdvK : AdvK ;
+fun valmisteille_AdvK : AdvK ;
+fun valmistelija_NK : NK ;
+fun valmistella_VK : VK ;
+fun valmistelu_NK : NK ;
+fun valmistua_VK : VK ;
+fun valmistumisaika_NK : NK ;
+fun valmistus_NK : NK ;
+fun valmistusaika_NK : NK ;
+fun valmius_NK : NK ;
+fun valmu_NK : NK ;
+fun valmuska_NK : NK ;
+fun valo_NK : NK ;
+fun valoisa_AK : AK ;
+--+ fun valoisasti_AdvK : AdvK ;
+fun valoisuus_NK : NK ;
+--+ fun valokuvauksellisesti_AdvK : AdvK ;
+fun valokuvauksellisuus_NK : NK ;
+fun valonleimaus_NK : NK ;
+fun valo_ohjattu_NK : NK ;
+fun valopakoisuus_NK : NK ;
+fun valos_NK : NK ;
+fun valostua_VK : VK ;
+fun valottaa_VK : VK ;
+fun valottua_VK : VK ;
+fun valotus_NK : NK ;
+fun valotusaika_NK : NK ;
+fun valpas_NK : NK ;
+fun valpastua_VK : VK ;
+fun valppaasti_AdvK : AdvK ;
+fun valppaus_NK : NK ;
+fun valssaaja_NK : NK ;
+fun valssaamo_NK : NK ;
+fun valssain_NK : NK ;
+fun valssata_1_VK : VK ;
+fun valssata_2_VK : VK ;
+fun valssaus_1_NK : NK ;
+fun valssaus_2_NK : NK ;
+fun valssi_1_NK : NK ;
+fun valssi_2_NK : NK ;
+fun valta_NK : NK ;
+fun valtaaja_NK : NK ;
+fun valtaan_AdvK : AdvK ;
+fun valtainen_AK : AK ;
+fun valtainen_AK : AK ;
+fun valtaisa_AK : AK ;
+--+ fun valtaisasti_AdvK : AdvK ;
+--+ fun valtaisesti_AdvK : AdvK ;
+fun valtaisuus_NK : NK ;
+fun valtakunnallisesti_AdvK : AdvK ;
+fun valtakunnallisuus_NK : NK ;
+fun valtakunnanraja_NK : NK ;
+fun valtaus_NK : NK ;
+fun valtava_AK : AK ;
+--+ fun valtavasti_AdvK : AdvK ;
+fun valtavirtaistus_NK : NK ;
+fun valtavuus_NK : NK ;
+fun valtias_NK : NK ;
+fun valtiatar_NK : NK ;
+fun valtikka_NK : NK ;
+fun valtimo_NK : NK ;
+fun valtio_NK : NK ;
+fun valtiollinen_NK : NK ;
+fun valtiollistaa_VK : VK ;
+fun valtiollistua_VK : VK ;
+fun valtioton_NK : NK ;
+fun valtius_NK : NK ;
+fun valtoimenaan_AdvK : AdvK ;
+fun valtoimesti_AdvK : AdvK ;
+fun valtoin_NK : NK ;
+fun valtti_NK : NK ;
+fun valtuus_NK : NK ;
+fun valtuusto_NK : NK ;
+fun valtuutettu_NK : NK ;
+fun valtuuttaa_VK : VK ;
+fun valtuuttaja_NK : NK ;
+fun valtuutus_NK : NK ;
+fun valu_NK : NK ;
+fun valua_VK : VK ;
+fun valuma_NK : NK ;
+fun valunta_NK : NK ;
+fun valuttaa_VK : VK ;
+fun valutus_NK : NK ;
+fun valuutta_NK : NK ;
+fun valvatti_NK : NK ;
+fun valve_NK : NK ;
+fun valveilla_AdvK : AdvK ;
+fun valveille_AdvK : AdvK ;
+fun valveuttaa_VK : VK ;
+fun valveutua_VK : VK ;
+fun valvoa_VK : VK ;
+fun valvoja_NK : NK ;
+--? fun valvojaiset_NK : NK ;
+fun valvomo_NK : NK ;
+fun valvonta_NK : NK ;
+fun valvoskella_VK : VK ;
+fun valvottaa_VK : VK ;
+fun valvotus_NK : NK ;
+fun valvuri_NK : NK ;
+fun valo'o'ri_NK : NK ;
+fun vamma_NK : NK ;
+fun vammainen_NK : NK ;
+fun vammaisuus_NK : NK ;
+fun vammauttaa_VK : VK ;
+fun vammautua_VK : VK ;
+fun vampata_VK : VK ;
+fun vamppaus_NK : NK ;
+fun vamppi_NK : NK ;
+fun vampyyri_NK : NK ;
+fun vana_NK : NK ;
+fun vanadiini_NK : NK ;
+fun vanamo_NK : NK ;
+fun vandaali_NK : NK ;
+fun vandalismi_NK : NK ;
+fun vandalisoida_VK : VK ;
+fun vandalisointi_NK : NK ;
+fun vaneri_NK : NK ;
+fun vanerinen_NK : NK ;
+fun vangita_VK : VK ;
+fun vangitsija_NK : NK ;
+fun vangituttaa_VK : VK ;
+fun vanha_NK : NK ;
+fun vanhahtava_AK : AK ;
+--+ fun vanhahtavasti_AdvK : AdvK ;
+fun vanhahtavuus_NK : NK ;
+--+ fun vanhanaikaisesti_AdvK : AdvK ;
+fun vanhastaan_AdvK : AdvK ;
+fun vanhastava_NK : NK ;
+fun vanhatestamentillinen_NK : NK ;
+fun vanhemmiten_AdvK : AdvK ;
+fun vanhemmuus_NK : NK ;
+fun vanhemmuuttaan_AdvK : AdvK ;
+fun vanhempi_NK : NK ;
+fun vanhennus_NK : NK ;
+fun vanhentaa_VK : VK ;
+fun vanhentua_VK : VK ;
+fun vanheta_VK : VK ;
+fun vanhin_NK : NK ;
+fun vanhoillaan_AdvK : AdvK ;
+fun vanhoillinen_AK : AK ;
+--+ fun vanhoillisesti_AdvK : AdvK ;
+fun vanhoillisuus_NK : NK ;
+fun vanhurskas_NK : NK ;
+fun vanhurskaus_NK : NK ;
+fun vanhurskauttaa_VK : VK ;
+fun vanhus_NK : NK ;
+fun vanhuus_NK : NK ;
+fun vanikka_NK : NK ;
+fun vanilja_NK : NK ;
+fun vanilliini_NK : NK ;
+fun vanja_NK : NK ;
+fun vankasti_AdvK : AdvK ;
+fun vankennus_NK : NK ;
+fun vankentaa_VK : VK ;
+fun vankentua_VK : VK ;
+fun vanketa_VK : VK ;
+fun vankeus_NK : NK ;
+fun vanki_NK : NK ;
+fun vankila_NK : NK ;
+fun vankistaa_VK : VK ;
+fun vankistua_VK : VK ;
+fun vankistus_NK : NK ;
+fun vankka_NK : NK ;
+fun vankkumaton_NK : NK ;
+fun vankkumatta_AdvK : AdvK ;
+fun vankkumattomasti_AdvK : AdvK ;
+fun vankkumattomuus_NK : NK ;
+--? fun vankkurit_NK : NK ;
+fun vankkuus_NK : NK ;
+fun vanna_NK : NK ;
+fun vannas_NK : NK ;
+fun vanne_NK : NK ;
+fun vannehtia_VK : VK ;
+fun vannike_NK : NK ;
+fun vannoa_VK : VK ;
+fun vannonta_NK : NK ;
+fun vannottaa_VK : VK ;
+fun vannotus_NK : NK ;
+fun vannoutunut_NK : NK ;
+fun vanttera_NK : NK ;
+fun vantteruus_NK : NK ;
+fun vantti_NK : NK ;
+fun vanttu_NK : NK ;
+fun vantus_NK : NK ;
+fun vanu_NK : NK ;
+fun vanua_VK : VK ;
+fun vanukas_NK : NK ;
+fun vanumaton_NK : NK ;
+fun vanumattomuus_NK : NK ;
+fun vanuttaa_VK : VK ;
+fun vanuttua_VK : VK ;
+fun vanutus_NK : NK ;
+fun vapa_NK : NK ;
+fun vapaa_AK : AK ;
+fun vapaa_aika_NK : NK ;
+--+ fun vapaaehtoisesti_AdvK : AdvK ;
+fun vapaaherratar_NK : NK ;
+--+ fun vapaamielisesti_AdvK : AdvK ;
+fun vapaamielistya'_VK : VK ;
+--+ fun vapaamuotoisesti_AdvK : AdvK ;
+fun vapaamuurarius_NK : NK ;
+--+ fun vapaasti_AdvK : AdvK ;
+fun vapahdus_NK : NK ;
+fun vapahtaa_VK : VK ;
+fun vapahtaja_NK : NK ;
+fun vapari_NK : NK ;
+fun vapaus_NK : NK ;
+fun vapauttaa_VK : VK ;
+fun vapauttaja_NK : NK ;
+fun vapautua_VK : VK ;
+fun vapautus_NK : NK ;
+fun vapina_NK : NK ;
+fun vapista_VK : VK ;
+fun vapisuttaa_VK : VK ;
+fun vapiti_NK : NK ;
+fun vappu_NK : NK ;
+fun vara_NK : NK ;
+fun varaaja_NK : NK ;
+fun varaamo_NK : NK ;
+fun varaan_AdvK : AdvK ;
+fun varaani_NK : NK ;
+fun varainen_AK : AK ;
+--+ fun varaisesti_AdvK : AdvK ;
+fun varaisuus_NK : NK ;
+fun varakas_AK : AK ;
+--+ fun varakkaasti_AdvK : AdvK ;
+fun varakkuus_NK : NK ;
+fun varalla_AdvK : AdvK ;
+fun varalle_AdvK : AdvK ;
+fun varallisuus_NK : NK ;
+fun varalta_AdvK : AdvK ;
+fun varanto_NK : NK ;
+fun varas_NK : NK ;
+fun varassa_AdvK : AdvK ;
+fun varasta_AdvK : AdvK ;
+fun varastaa_VK : VK ;
+fun varastella_VK : VK ;
+fun varastelu_NK : NK ;
+fun varasto_NK : NK ;
+fun varastoida_VK : VK ;
+fun varastointi_NK : NK ;
+fun varastointiaika_NK : NK ;
+fun varastoitua_VK : VK ;
+fun varata_VK : VK ;
+fun varaton_NK : NK ;
+fun varattomuus_NK : NK ;
+fun varauksellinen_AK : AK ;
+--+ fun varauksellisesti_AdvK : AdvK ;
+fun varauksellisuus_NK : NK ;
+fun varaukseton_NK : NK ;
+fun varauksettomasti_AdvK : AdvK ;
+fun varauksinen_NK : NK ;
+fun varauma_NK : NK ;
+fun varaus_NK : NK ;
+fun varautua_VK : VK ;
+fun varautuvuus_NK : NK ;
+fun varhain_AdvK : AdvK ;
+fun varhainen_NK : NK ;
+fun varhaisintaan_AdvK : AdvK ;
+fun varhaiskeskiaika_NK : NK ;
+fun varhaistoteaminen_NK : NK ;
+fun varhaisuus_NK : NK ;
+fun varhemmin_AdvK : AdvK ;
+fun varhempi_NK : NK ;
+fun varhennus_NK : NK ;
+fun varhentaa_VK : VK ;
+fun varhentua_VK : VK ;
+fun varho_NK : NK ;
+fun vari_1_NK : NK ;
+fun vari_2_NK : NK ;
+fun variaabeli_NK : NK ;
+fun variaatio_NK : NK ;
+fun varianssi_NK : NK ;
+fun variantti_NK : NK ;
+fun varietee_NK : NK ;
+fun varikko_NK : NK ;
+fun varioida_VK : VK ;
+fun variointi_NK : NK ;
+fun varis_NK : NK ;
+fun varista_VK : VK ;
+fun varistaa_VK : VK ;
+fun variste_NK : NK ;
+fun varistella_VK : VK ;
+fun varistelu_NK : NK ;
+fun varistus_NK : NK ;
+fun varjagi_NK : NK ;
+fun varjella_VK : VK ;
+fun varjeltua_VK : VK ;
+fun varjelu_NK : NK ;
+fun varjelus_NK : NK ;
+fun varjo_NK : NK ;
+fun varjoinen_NK : NK ;
+fun varjoisa_NK : NK ;
+fun varjoisuus_NK : NK ;
+fun varjolla_AdvK : AdvK ;
+fun varjostaa_VK : VK ;
+fun varjostaja_NK : NK ;
+fun varjostin_NK : NK ;
+fun varjostua_VK : VK ;
+fun varjostuma_NK : NK ;
+fun varjostus_NK : NK ;
+fun varjota_VK : VK ;
+fun varkain_AdvK : AdvK ;
+fun varkaisiin_AdvK : AdvK ;
+fun varkaissa_AdvK : AdvK ;
+fun varkaista_AdvK : AdvK ;
+fun varkaus_NK : NK ;
+fun varma_AK : AK ;
+fun varmaan_AdvK : AdvK ;
+--+ fun varmasti_AdvK : AdvK ;
+fun varmenne_NK : NK ;
+fun varmennus_NK : NK ;
+fun varmentaa_VK : VK ;
+fun varmentaja_NK : NK ;
+fun varmentua_VK : VK ;
+fun varmeta_VK : VK ;
+fun varmistaa_VK : VK ;
+fun varmistautua_VK : VK ;
+fun varmiste_NK : NK ;
+fun varmistella_VK : VK ;
+fun varmistelu_NK : NK ;
+fun varmistin_NK : NK ;
+fun varmistua_VK : VK ;
+fun varmistus_NK : NK ;
+fun varmuus_NK : NK ;
+fun varoa_VK : VK ;
+fun varoaika_NK : NK ;
+fun varoiksi_AdvK : AdvK ;
+fun varoitella_VK : VK ;
+fun varoitin_NK : NK ;
+fun varoittaa_VK : VK ;
+fun varoittelu_NK : NK ;
+fun varoitus_NK : NK ;
+fun varoitusaika_NK : NK ;
+fun varoke_NK : NK ;
+fun varomaton_NK : NK ;
+fun varomattomasti_AdvK : AdvK ;
+fun varomattomuus_NK : NK ;
+fun varottava_NK : NK ;
+fun varova_AK : AK ;
+fun varovainen_AK : AK ;
+--+ fun varovaisesti_AdvK : AdvK ;
+fun varovaisuus_NK : NK ;
+--+ fun varovasti_AdvK : AdvK ;
+fun varovuus_NK : NK ;
+fun varpailla_AdvK : AdvK ;
+fun varpaillaan_AdvK : AdvK ;
+fun varpaille_AdvK : AdvK ;
+fun varpailleen_AdvK : AdvK ;
+fun varpainen_NK : NK ;
+--? fun varpaiset_NK : NK ;
+fun varpaisillaan_AdvK : AdvK ;
+fun varpaisilleen_AdvK : AdvK ;
+--? fun varpajaiset_NK : NK ;
+fun varpata_VK : VK ;
+fun varpio_NK : NK ;
+fun varppaus_NK : NK ;
+fun varppi_NK : NK ;
+fun varpu_NK : NK ;
+fun varpunen_NK : NK ;
+fun varpusparvi_NK : NK ;
+fun varrantti_NK : NK ;
+fun varras_NK : NK ;
+fun varrekas_NK : NK ;
+fun varrella_AdvK : AdvK ;
+fun varrelle_AdvK : AdvK ;
+fun varrellinen_NK : NK ;
+fun varrelta_AdvK : AdvK ;
+fun varrennos_NK : NK ;
+fun varrennus_NK : NK ;
+fun varrentaa_VK : VK ;
+fun varressa_AdvK : AdvK ;
+fun varresta_AdvK : AdvK ;
+fun varrota_VK : VK ;
+fun varsa_NK : NK ;
+fun varsi_NK : NK ;
+fun varsin_AdvK : AdvK ;
+--+ fun varsinaisesti_AdvK : AdvK ;
+fun varsinen_NK : NK ;
+fun varsinkaan_AdvK : AdvK ;
+fun varsinkin_AdvK : AdvK ;
+fun varsisto_NK : NK ;
+fun varsoa_VK : VK ;
+fun varsottaa_VK : VK ;
+fun varsotus_NK : NK ;
+fun varsta_NK : NK ;
+fun vartalo_NK : NK ;
+fun vartaloinen_NK : NK ;
+fun varta_vasten_AdvK : AdvK ;
+fun vartavastinen_NK : NK ;
+fun varte_NK : NK ;
+fun varteen_AdvK : AdvK ;
+fun varteenotettava_NK : NK ;
+fun varten_AdvK : AdvK ;
+fun varteva_NK : NK ;
+fun vartevuus_NK : NK ;
+fun vartija_NK : NK ;
+fun vartinen_NK : NK ;
+fun vartio_NK : NK ;
+fun vartioida_VK : VK ;
+fun vartioimaton_NK : NK ;
+fun vartiointi_NK : NK ;
+fun vartiosto_NK : NK ;
+fun vartoa_VK : VK ;
+fun varttaa_VK : VK ;
+fun vartti_NK : NK ;
+fun varttua_VK : VK ;
+fun varuillaan_AdvK : AdvK ;
+fun varuilleen_AdvK : AdvK ;
+fun varus_NK : NK ;
+fun varusmiesaika_NK : NK ;
+fun varustaa_VK : VK ;
+fun varustaja_NK : NK ;
+fun varustamo_NK : NK ;
+fun varustautua_VK : VK ;
+fun varuste_NK : NK ;
+fun varustella_VK : VK ;
+fun varustelu_NK : NK ;
+fun varustus_NK : NK ;
+fun varvas_NK : NK ;
+fun varvi_NK : NK ;
+fun varvikko_NK : NK ;
+fun varvisto_NK : NK ;
+fun varvukko_NK : NK ;
+fun varvusto_NK : NK ;
+fun varvuttua_VK : VK ;
+fun vasa_1_NK : NK ;
+fun vasa_2_NK : NK ;
+fun vasalli_NK : NK ;
+fun vasallius_NK : NK ;
+fun vasama_NK : NK ;
+fun vasara_NK : NK ;
+fun vasaroida_VK : VK ;
+fun vasarointi_NK : NK ;
+fun vasektomia_NK : NK ;
+fun vaseliini_NK : NK ;
+fun vasemmalla_AdvK : AdvK ;
+fun vasemmalle_AdvK : AdvK ;
+fun vasemmalta_AdvK : AdvK ;
+fun vasemmisto_NK : NK ;
+--+ fun vasemmistolaisesti_AdvK : AdvK ;
+fun vasemmistolaistua_VK : VK ;
+fun vasemmistolaisuus_NK : NK ;
+fun vasempaan_AdvK : AdvK ;
+fun vasen_NK : NK ;
+--+ fun vasenka'tisesti_AdvK : AdvK ;
+fun vasikka_NK : NK ;
+fun vasikoida_VK : VK ;
+fun vasikointi_NK : NK ;
+fun vasiten_AdvK : AdvK ;
+fun vasituinen_AK : AK ;
+--+ fun vasituisesti_AdvK : AdvK ;
+fun vaskata_VK : VK ;
+fun vaskaus_NK : NK ;
+fun vaski_NK : NK ;
+fun vaskinen_NK : NK ;
+fun vaskitsa_NK : NK ;
+fun vaskooli_NK : NK ;
+fun vaskulaarinen_NK : NK ;
+fun vasoa_VK : VK ;
+fun vasoittaa_VK : VK ;
+fun vasoitus_NK : NK ;
+fun vasomotorinen_NK : NK ;
+fun vasonta_NK : NK ;
+fun vasta_1_NK : NK ;
+fun vasta_2_AdvK : AdvK ;
+fun vastaaja_NK : NK ;
+fun vastaamaton_NK : NK ;
+fun vastaan_AdvK : AdvK ;
+fun vastaanhangoittelu_NK : NK ;
+--? fun vastaanottajaiset_NK : NK ;
+fun vastaanottavainen_AK : AK ;
+--+ fun vastaanottavaisesti_AdvK : AdvK ;
+fun vastaanottavaisuus_NK : NK ;
+--+ fun vastaanottavasti_AdvK : AdvK ;
+fun vastaanottavuus_NK : NK ;
+fun vastaava_AK : AK ;
+fun vastaavanlainen_AK : AK ;
+--+ fun vastaavanlaisesti_AdvK : AdvK ;
+--+ fun vastaavasti_AdvK : AdvK ;
+fun vastaavuus_NK : NK ;
+fun vastahakoinen_AK : AK ;
+--+ fun vastahakoisesti_AdvK : AdvK ;
+fun vastahakoisuus_NK : NK ;
+fun vastahankaisuus_NK : NK ;
+fun vastailla_VK : VK ;
+fun vastainen_AK : AK ;
+--+ fun vastaisesti_AdvK : AdvK ;
+fun vastaisuus_NK : NK ;
+fun vastakarvaan_AdvK : AdvK ;
+fun vastake_NK : NK ;
+fun vastakkain_AdvK : AdvK ;
+fun vastakkainen_AK : AK ;
+--+ fun vastakkaisesti_AdvK : AdvK ;
+fun vastakkaisuus_NK : NK ;
+fun vastakohta_NK : NK ;
+fun vastaleivottu_NK : NK ;
+fun vastapa'iva'a'n_AdvK : AdvK ;
+fun vastapa'a'ta'_AdvK : AdvK ;
+fun vastas_NK : NK ;
+fun vastassa_AdvK : AdvK ;
+fun vastasukaan_AdvK : AdvK ;
+fun vastasyntynyt_NK : NK ;
+fun vastata_VK : VK ;
+fun vastattava_NK : NK ;
+fun vastatuksin_AdvK : AdvK ;
+fun vastatusten_AdvK : AdvK ;
+fun vastaus_NK : NK ;
+fun vastavihitty_NK : NK ;
+--+ fun vastavuoroisesti_AdvK : AdvK ;
+fun vastavuoroisuus_NK : NK ;
+fun vastavuoroon_AdvK : AdvK ;
+fun vastava'itta'ja'_NK : NK ;
+fun vaste_NK : NK ;
+fun vasten_AdvK : AdvK ;
+--+ fun vastenmielisesti_AdvK : AdvK ;
+--+ fun vastentahtoisesti_AdvK : AdvK ;
+fun vastike_NK : NK ;
+fun vastikkeellinen_NK : NK ;
+fun vastikkeellisuus_NK : NK ;
+fun vastikkeeton_NK : NK ;
+fun vastikkeettomuus_NK : NK ;
+fun vastin_NK : NK ;
+fun vastine_NK : NK ;
+fun vastoa_VK : VK ;
+fun vastoin_AdvK : AdvK ;
+fun vastuinen_AK : AK ;
+--+ fun vastuisesti_AdvK : AdvK ;
+fun vastuksellinen_AK : AK ;
+--+ fun vastuksellisesti_AdvK : AdvK ;
+fun vastuksellisuus_NK : NK ;
+fun vastukseton_NK : NK ;
+fun vastuksinen_NK : NK ;
+fun vastus_NK : NK ;
+fun vastustaa_VK : VK ;
+fun vastustaja_NK : NK ;
+fun vastustamaton_NK : NK ;
+fun vastustamattomasti_AdvK : AdvK ;
+fun vastustamattomuus_NK : NK ;
+fun vastustella_VK : VK ;
+fun vastustelu_NK : NK ;
+fun vastustus_NK : NK ;
+--+ fun vastustushaluisesti_AdvK : AdvK ;
+fun vastuu_NK : NK ;
+fun vastuullinen_AK : AK ;
+--+ fun vastuullisesti_AdvK : AdvK ;
+fun vastuullisuus_NK : NK ;
+--+ fun vastuuntuntoisesti_AdvK : AdvK ;
+fun vastuuton_NK : NK ;
+fun vastuuttomasti_AdvK : AdvK ;
+fun vastuuttomuus_NK : NK ;
+fun vasu_NK : NK ;
+fun vasuri_NK : NK ;
+fun vati_NK : NK ;
+fun vatiini_NK : NK ;
+fun vatja_NK : NK ;
+fun vatkaantua_VK : VK ;
+fun vatkain_NK : NK ;
+fun vatkata_VK : VK ;
+fun vatkaus_NK : NK ;
+fun vatkautua_VK : VK ;
+fun vatkuli_NK : NK ;
+fun vatkuttaa_VK : VK ;
+fun vatkutus_NK : NK ;
+fun vatsa_NK : NK ;
+fun vatsahaava_NK : NK ;
+fun vatsainen_NK : NK ;
+fun vatsakas_NK : NK ;
+fun vatsakkuus_NK : NK ;
+fun vatsastapuhuminen_NK : NK ;
+fun vatti_NK : NK ;
+fun watti_NK : NK ;
+fun vattu_NK : NK ;
+fun vatukka_NK : NK ;
+fun vatukko_NK : NK ;
+fun vatupassi_NK : NK ;
+fun vatvoa_VK : VK ;
+fun vau_AdvK : AdvK ;
+fun vaudeville_NK : NK ;
+fun vauhdikas_AK : AK ;
+--+ fun vauhdikkaasti_AdvK : AdvK ;
+fun vauhdikkuus_NK : NK ;
+fun vauhdillinen_NK : NK ;
+fun vauhditon_NK : NK ;
+fun vauhdittaa_VK : VK ;
+fun vauhdittua_VK : VK ;
+fun vauhditus_NK : NK ;
+fun vauhko_NK : NK ;
+fun vauhkoilla_VK : VK ;
+fun vauhkoilu_NK : NK ;
+fun vauhkoontua_VK : VK ;
+fun vauhkoutua_VK : VK ;
+fun vauhti_NK : NK ;
+fun vauhtinen_NK : NK ;
+fun vaunu_NK : NK ;
+fun vaunulastillinen_NK : NK ;
+fun vaununlastillinen_NK : NK ;
+--+ fun vauraasti_AdvK : AdvK ;
+fun vauras_AK : AK ;
+fun vaurastaa_VK : VK ;
+fun vaurastua_VK : VK ;
+fun vaurastuttaa_VK : VK ;
+fun vauraus_NK : NK ;
+fun vaurio_NK : NK ;
+fun vaurioittaa_VK : VK ;
+fun vaurioitua_VK : VK ;
+fun vauva_NK : NK ;
+fun vavahdella_VK : VK ;
+fun vavahdus_NK : NK ;
+fun vavahduttaa_VK : VK ;
+fun vavahtaa_VK : VK ;
+fun vavista_VK : VK ;
+fun vavistus_NK : NK ;
+fun vavisuttaa_VK : VK ;
+fun WC_AdvK : AdvK ;
+fun weber_NK : NK ;
+fun vedekkyys_NK : NK ;
+fun vedeka's_NK : NK ;
+fun vedella'_VK : VK ;
+fun vedenpaisumus_NK : NK ;
+fun vedenpita'va'sti_AdvK : AdvK ;
+fun vedenraja_NK : NK ;
+fun vedeto'n_NK : NK ;
+fun vedike_NK : NK ;
+fun vedin_NK : NK ;
+fun vedos_NK : NK ;
+fun vedostaa_VK : VK ;
+fun vedostua_VK : VK ;
+fun vedostus_NK : NK ;
+fun vedota_VK : VK ;
+fun veda'tta'a'_VK : VK ;
+fun veda'tys_NK : NK ;
+fun veda'tytta'a'_VK : VK ;
+fun vegaani_NK : NK ;
+fun vegetaari_NK : NK ;
+fun vegetaarinen_NK : NK ;
+fun vegetariaani_NK : NK ;
+fun vegetarianismi_NK : NK ;
+fun vegetarismi_NK : NK ;
+fun vegetaristi_NK : NK ;
+fun vegetatiivinen_NK : NK ;
+fun vehdata_VK : VK ;
+fun vehje_NK : NK ;
+fun vehka_NK : NK ;
+fun vehkeilija'_NK : NK ;
+fun vehkeilla'_VK : VK ;
+fun vehkeily_NK : NK ;
+fun vehmas_NK : NK ;
+fun vehmaus_NK : NK ;
+fun vehna'_NK : NK ;
+fun vehna'inen_NK : NK ;
+fun vehna'nen_NK : NK ;
+fun vehreys_NK : NK ;
+fun vehrea'_NK : NK ;
+fun vehtailla_VK : VK ;
+fun vehtaus_NK : NK ;
+fun veijari_NK : NK ;
+fun veikata_VK : VK ;
+fun veikeilla'_VK : VK ;
+fun veikeys_NK : NK ;
+fun veikea'_AK : AK ;
+--+ fun veikea'sti_AdvK : AdvK ;
+fun veikistelija'_NK : NK ;
+fun veikistella'_VK : VK ;
+fun veikistely_NK : NK ;
+fun veikka_1_NK : NK ;
+fun veikka_2_NK : NK ;
+fun veikkaaja_NK : NK ;
+fun veikkailla_VK : VK ;
+fun veikkailu_NK : NK ;
+fun veikkaus_NK : NK ;
+fun veikko_NK : NK ;
+fun veikkonen_NK : NK ;
+fun veisata_VK : VK ;
+fun veisaus_NK : NK ;
+fun veisauttaa_VK : VK ;
+fun veistella'_VK : VK ;
+fun veistely_NK : NK ;
+fun veisto_NK : NK ;
+fun veistoksellinen_NK : NK ;
+fun veistoksellisuus_NK : NK ;
+fun veistos_NK : NK ;
+fun veista'mo'_NK : NK ;
+fun veista'a'_VK : VK ;
+fun veisu_NK : NK ;
+fun veisuu_NK : NK ;
+fun veisuuttaa_VK : VK ;
+fun veitera'_NK : NK ;
+fun veitikka_NK : NK ;
+--+ fun veitikkamaisesti_AdvK : AdvK ;
+fun veitikkamaisuus_NK : NK ;
+fun veitsi_NK : NK ;
+fun veivata_VK : VK ;
+fun veivaus_NK : NK ;
+fun veivi_NK : NK ;
+fun vek_AdvK : AdvK ;
+fun vekara_NK : NK ;
+fun vekata_VK : VK ;
+fun veke_AdvK : AdvK ;
+fun vekkaus_NK : NK ;
+fun vekki_NK : NK ;
+fun veks_AdvK : AdvK ;
+fun vekseli_NK : NK ;
+fun velallinen_NK : NK ;
+fun velaton_NK : NK ;
+fun velattomuus_NK : NK ;
+fun velho_NK : NK ;
+fun veli_NK : NK ;
+fun velinen_AdvK : AdvK ;
+fun veljeilla'_VK : VK ;
+fun veljeily_NK : NK ;
+fun veljellinen_AK : AK ;
+--+ fun veljellisesti_AdvK : AdvK ;
+fun veljellisyys_NK : NK ;
+fun veljes_NK : NK ;
+fun veljesto'_NK : NK ;
+fun veljeys_NK : NK ;
+fun veljisto'_NK : NK ;
+fun veljyys_NK : NK ;
+fun velka_NK : NK ;
+fun velkaannuttaa_VK : VK ;
+fun velkaantua_VK : VK ;
+fun velkainen_NK : NK ;
+fun velkaisuus_NK : NK ;
+fun velkauttaa_VK : VK ;
+fun velkautua_VK : VK ;
+fun velkoa_VK : VK ;
+fun velkoja_NK : NK ;
+fun velkomus_NK : NK ;
+fun wellerismi_NK : NK ;
+fun velli_NK : NK ;
+fun velloa_VK : VK ;
+fun vellonta_NK : NK ;
+fun velmu_AK : AK ;
+fun velmuilija_NK : NK ;
+fun velmuilla_VK : VK ;
+fun velmuilu_NK : NK ;
+--+ fun velmusti_AdvK : AdvK ;
+fun velodromi_NK : NK ;
+fun veloittaa_VK : VK ;
+fun veloitus_NK : NK ;
+fun veltostaa_VK : VK ;
+fun veltosti_AdvK : AdvK ;
+fun veltostua_VK : VK ;
+fun veltostuttaa_VK : VK ;
+fun veltto_NK : NK ;
+fun velttoilla_VK : VK ;
+fun velttoilu_NK : NK ;
+fun velttous_NK : NK ;
+fun velttoutua_VK : VK ;
+fun veluuri_NK : NK ;
+fun velvoite_NK : NK ;
+fun velvoitetyo'llistetta'va'_NK : NK ;
+fun velvoittaa_VK : VK ;
+fun velvoittavuus_NK : NK ;
+fun velvoitus_NK : NK ;
+fun velvollinen_NK : NK ;
+--+ fun velvollisuudentuntoisesti_AdvK : AdvK ;
+fun velvollisuus_NK : NK ;
+fun vemmel_NK : NK ;
+fun vempain_NK : NK ;
+fun vempele_NK : NK ;
+fun vemputin_NK : NK ;
+fun venakko_NK : NK ;
+fun venata_VK : VK ;
+fun vene_NK : NK ;
+fun veneenveista'ja'_NK : NK ;
+fun veneerinen_NK : NK ;
+fun veneilija'_NK : NK ;
+fun veneilla'_VK : VK ;
+fun veneily_NK : NK ;
+fun venelastillinen_NK : NK ;
+fun venerologi_NK : NK ;
+fun venerologia_NK : NK ;
+fun venerologinen_NK : NK ;
+fun venesektio_NK : NK ;
+fun venhe_NK : NK ;
+fun venho_NK : NK ;
+fun venkoilla_VK : VK ;
+fun venkoilu_NK : NK ;
+fun venkoli_NK : NK ;
+fun venonen_NK : NK ;
+fun ventata_VK : VK ;
+fun ventilaatio_NK : NK ;
+fun ventilaattori_NK : NK ;
+fun ventiloida_VK : VK ;
+fun ventilointi_NK : NK ;
+fun ventti_NK : NK ;
+fun venttiili_NK : NK ;
+fun venyke_NK : NK ;
+fun venyma'_NK : NK ;
+fun venytella'_VK : VK ;
+fun venyttya'_VK : VK ;
+fun venytta'ytya'_VK : VK ;
+fun venytta'a'_VK : VK ;
+fun venytys_NK : NK ;
+fun venyvyys_NK : NK ;
+fun venya'_VK : VK ;
+fun vena'hdys_NK : NK ;
+fun vena'hdytta'a'_VK : VK ;
+fun vena'hta'a'_VK : VK ;
+fun vena'ja'_NK : NK ;
+fun vena'ja'nno's_NK : NK ;
+fun vena'ja'nta'a'_VK : VK ;
+fun vena'la'inen_NK : NK ;
+fun vena'la'istya'_VK : VK ;
+fun vena'la'ista'a'_VK : VK ;
+fun vena'la'isyys_NK : NK ;
+--? fun vena't_NK : NK ;
+fun vena'ytta'a'_VK : VK ;
+fun vena'ytys_NK : NK ;
+fun veppi_NK : NK ;
+fun vepsa'_NK : NK ;
+fun vepsa'la'inen_NK : NK ;
+fun veranta_NK : NK ;
+fun verbaalinen_NK : NK ;
+fun verbaalistaa_VK : VK ;
+fun verbalisoida_VK : VK ;
+fun verbalisointi_NK : NK ;
+fun verbi_NK : NK ;
+fun vereentya'_VK : VK ;
+fun verekkyys_NK : NK ;
+fun verekselta'a'n_AdvK : AdvK ;
+fun vereka's_NK : NK ;
+--+ fun verenhimoisesti_AdvK : AdvK ;
+fun verenhimoisuus_NK : NK ;
+fun verenimija'_NK : NK ;
+fun verenveto_NK : NK ;
+fun veres_NK : NK ;
+fun vereslihalla_AdvK : AdvK ;
+fun vereslihalle_AdvK : AdvK ;
+fun verestys_NK : NK ;
+fun verestya'_VK : VK ;
+fun veresta'a'_VK : VK ;
+fun vereto'n_NK : NK ;
+fun vereva'_NK : NK ;
+fun verevo'itta'a'_VK : VK ;
+fun verhio'_NK : NK ;
+fun verho_NK : NK ;
+fun verhoamaton_NK : NK ;
+fun verhoilija_NK : NK ;
+fun verhoilla_VK : VK ;
+fun verhoilu_NK : NK ;
+fun verhoomo_NK : NK ;
+fun verhota_VK : VK ;
+fun verhous_NK : NK ;
+fun verhoutua_VK : VK ;
+fun veri_NK : NK ;
+fun verifikaatio_NK : NK ;
+fun verifikaatti_NK : NK ;
+fun verifioida_VK : VK ;
+fun verifiointi_NK : NK ;
+fun verihaava_NK : NK ;
+fun verijuuri_NK : NK ;
+fun verinen_AK : AK ;
+--+ fun verisesti_AdvK : AdvK ;
+fun verissa'a'n_AdvK : AdvK ;
+fun veristya'_VK : VK ;
+fun verista'a'_VK : VK ;
+fun verisyys_NK : NK ;
+fun verivirtsaisuus_NK : NK ;
+fun verka_NK : NK ;
+fun verkainen_NK : NK ;
+fun verkalleen_AdvK : AdvK ;
+fun verkilo'_NK : NK ;
+fun verkkaan_AdvK : AdvK ;
+fun verkkainen_AK : AK ;
+fun verkkaisa_AK : AK ;
+--+ fun verkkaisasti_AdvK : AdvK ;
+--+ fun verkkaisesti_AdvK : AdvK ;
+fun verkkaisuus_NK : NK ;
+fun verkkari_NK : NK ;
+fun verkko_NK : NK ;
+fun verkkoinen_NK : NK ;
+fun verkkoutua_VK : VK ;
+fun verkoitse_AdvK : AdvK ;
+fun verkosto_NK : NK ;
+fun verkostoitua_VK : VK ;
+fun verkostua_VK : VK ;
+fun verkottaa_VK : VK ;
+fun verkottua_VK : VK ;
+fun verkotus_NK : NK ;
+fun vermiselli_NK : NK ;
+fun vermutti_NK : NK ;
+fun vernissa_NK : NK ;
+fun vernissata_VK : VK ;
+fun vernissaus_NK : NK ;
+fun vero_NK : NK ;
+fun veroinen_AK : AK ;
+--+ fun veroisesti_AdvK : AdvK ;
+fun veroisuus_NK : NK ;
+fun verollinen_NK : NK ;
+fun verollisuus_NK : NK ;
+fun veronalainen_2_NK : NK ;
+fun veronkanto_NK : NK ;
+fun veroton_NK : NK ;
+fun verottaa_VK : VK ;
+fun verottaja_NK : NK ;
+fun verottomuus_NK : NK ;
+fun verotuksellinen_AK : AK ;
+--+ fun verotuksellisesti_AdvK : AdvK ;
+fun verotus_NK : NK ;
+fun verran_AdvK : AdvK ;
+fun verrannollinen_AK : AK ;
+--+ fun verrannollisesti_AdvK : AdvK ;
+fun verrannollisuus_NK : NK ;
+fun verranto_NK : NK ;
+fun verrari_NK : NK ;
+fun verrata_VK : VK ;
+fun verraten_AdvK : AdvK ;
+fun verraton_NK : NK ;
+fun verrattain_AdvK : AdvK ;
+fun verrattomasti_AdvK : AdvK ;
+fun verrattomuus_NK : NK ;
+fun verroin_AdvK : AdvK ;
+fun verrokki_NK : NK ;
+fun verrytella'_VK : VK ;
+fun verryttely_NK : NK ;
+fun verrytta'a'_VK : VK ;
+fun verrytys_NK : NK ;
+fun versaali_NK : NK ;
+fun versio_NK : NK ;
+fun verso_NK : NK ;
+fun versoa_VK : VK ;
+fun versojuuri_NK : NK ;
+fun versonta_NK : NK ;
+fun verstas_NK : NK ;
+fun verta_AdvK : AdvK ;
+fun vertahyyta'va'_NK : NK ;
+fun vertailla_VK : VK ;
+fun vertailu_NK : NK ;
+fun vertailukohta_NK : NK ;
+fun vertainen_AK : AK ;
+--+ fun vertaisesti_AdvK : AdvK ;
+fun vertaisuus_NK : NK ;
+fun vertaus_NK : NK ;
+fun vertauskohta_NK : NK ;
+fun vertautua_VK : VK ;
+fun vertikaali_NK : NK ;
+fun vertikaalinen_NK : NK ;
+fun verto_NK : NK ;
+fun vertoja_AdvK : AdvK ;
+fun vertya'_VK : VK ;
+fun veruke_NK : NK ;
+fun vera'ja'_NK : NK ;
+fun vesa_NK : NK ;
+fun vesaikko_NK : NK ;
+fun vesakko_NK : NK ;
+fun vesakkoinen_NK : NK ;
+fun vesakkoisuus_NK : NK ;
+fun vesakoitua_VK : VK ;
+fun vesata_VK : VK ;
+fun vesaus_NK : NK ;
+fun vesi_NK : NK ;
+fun vesikauhuinen_NK : NK ;
+fun vesikko_NK : NK ;
+fun vesinen_NK : NK ;
+fun vesipa'isyys_NK : NK ;
+fun vesisto'_NK : NK ;
+fun vesisto'inen_NK : NK ;
+fun vesitse_AdvK : AdvK ;
+fun vesittya'_VK : VK ;
+fun vesitta'a'_VK : VK ;
+fun vesitys_NK : NK ;
+fun veska_NK : NK ;
+fun veskari_NK : NK ;
+fun veski_NK : NK ;
+fun vesoa_VK : VK ;
+fun vesoittua_VK : VK ;
+fun vesper_NK : NK ;
+fun vessa_NK : NK ;
+fun vesseli_NK : NK ;
+fun wessi_NK : NK ;
+fun western_NK : NK ;
+fun vesuri_NK : NK ;
+fun vetehinen_NK : NK ;
+fun vetelehtija'_NK : NK ;
+fun vetelehtia'_VK : VK ;
+fun vetely_NK : NK ;
+fun vetelys_NK : NK ;
+fun vetelyys_NK : NK ;
+fun vetela'_NK : NK ;
+fun vetela'sti_AdvK : AdvK ;
+fun vetelo'itta'a'_VK : VK ;
+fun vetelo'itya'_VK : VK ;
+fun veteraani_NK : NK ;
+fun vetinen_NK : NK ;
+fun vetistella'_VK : VK ;
+fun vetistely_NK : NK ;
+fun vetistya'_VK : VK ;
+fun vetista'a'_VK : VK ;
+fun vetkutella_VK : VK ;
+fun veto_1_NK : NK ;
+fun veto_2_NK : NK ;
+fun veto_3_NK : NK ;
+fun vetoaja_NK : NK ;
+fun vetoinen_NK : NK ;
+fun vetoisa_NK : NK ;
+fun vetoisuus_NK : NK ;
+fun vetoomus_NK : NK ;
+fun vetreytta'a'_VK : VK ;
+fun vetreytys_NK : NK ;
+fun vetreytya'_VK : VK ;
+fun vetrea'_NK : NK ;
+fun vetristys_NK : NK ;
+fun vetristya'_VK : VK ;
+fun vetrista'a'_VK : VK ;
+fun vetskari_NK : NK ;
+fun vettya'_VK : VK ;
+fun vetta'hylkiva'_NK : NK ;
+fun vetta'la'pa'iseva'_NK : NK ;
+fun veturi_NK : NK ;
+fun vety_NK : NK ;
+fun veta'ista'_VK : VK ;
+fun veta'isy_NK : NK ;
+fun veta'ja'_NK : NK ;
+fun veta'ma'to'n_NK : NK ;
+fun veta'vyys_NK : NK ;
+fun veta'va'_AK : AK ;
+--+ fun veta'va'sti_AdvK : AdvK ;
+fun veta'ytya'_VK : VK ;
+fun veta'a'_VK : VK ;
+fun veta'a'ntya'_VK : VK ;
+fun veuhtoa_VK : VK ;
+fun whippet_NK : NK ;
+fun whisky_NK : NK ;
+fun via_AdvK : AdvK ;
+fun viallinen_NK : NK ;
+fun viallisuus_NK : NK ;
+fun viaton_NK : NK ;
+fun viattomasti_AdvK : AdvK ;
+fun viattomuus_NK : NK ;
+fun vibraatio_NK : NK ;
+fun vibraattori_NK : NK ;
+fun vibrafoni_NK : NK ;
+fun vibrafonisti_NK : NK ;
+fun vibrato_NK : NK ;
+fun vichy_NK : NK ;
+fun video_NK : NK ;
+fun videoida_VK : VK ;
+fun videointi_NK : NK ;
+fun videoteekki_NK : NK ;
+fun videoteksi_NK : NK ;
+fun vidiootti_NK : NK ;
+fun vieda'_VK : VK ;
+fun viehe_NK : NK ;
+fun viehkeys_NK : NK ;
+fun viehkea'_AK : AK ;
+--+ fun viehkea'sti_AdvK : AdvK ;
+fun viehko_AK : AK ;
+--+ fun viehkosti_AdvK : AdvK ;
+fun viehtymys_NK : NK ;
+fun viehtya'_VK : VK ;
+fun vieha'ttya'_VK : VK ;
+fun vieha'tta'vyys_NK : NK ;
+fun vieha'tta'va'_AK : AK ;
+--+ fun vieha'tta'va'sti_AdvK : AdvK ;
+fun vieha'tta'a'_VK : VK ;
+fun vieha'tys_NK : NK ;
+fun vieja'_NK : NK ;
+fun viekas_AK : AK ;
+fun viekastella_VK : VK ;
+fun viekastelu_NK : NK ;
+--+ fun viekkaasti_AdvK : AdvK ;
+fun viekkaus_NK : NK ;
+fun viekoitella_VK : VK ;
+fun viekoittaa_VK : VK ;
+fun viekoittelu_NK : NK ;
+fun viekoitus_NK : NK ;
+fun viela'_AdvK : AdvK ;
+fun vieminen_NK : NK ;
+fun viema'ri_NK : NK ;
+fun viema'risto'_NK : NK ;
+fun viema'ro'ida'_VK : VK ;
+fun viema'ro'inti_NK : NK ;
+fun wienervalssi_NK : NK ;
+fun wienila'isvalssi_NK : NK ;
+fun vieno_NK : NK ;
+fun vienosti_AdvK : AdvK ;
+fun vienous_NK : NK ;
+fun vienti_NK : NK ;
+fun vieraannuttaa_VK : VK ;
+fun vieraantua_VK : VK ;
+fun vieraantuneisuus_NK : NK ;
+--+ fun vieraanvaraisesti_AdvK : AdvK ;
+--+ fun vieraanvoittoisesti_AdvK : AdvK ;
+fun vierailija_NK : NK ;
+fun vierailla_VK : VK ;
+fun vierailu_NK : NK ;
+fun vierailuaika_NK : NK ;
+fun vieraisilla_AdvK : AdvK ;
+fun vieraisille_AdvK : AdvK ;
+fun vieraisilta_AdvK : AdvK ;
+fun vieraissa_AdvK : AdvK ;
+fun vieras_NK : NK ;
+fun vierastaa_VK : VK ;
+fun vierastuttaa_VK : VK ;
+fun vieraus_NK : NK ;
+fun vierauttaa_VK : VK ;
+fun vierautua_VK : VK ;
+fun viereen_AdvK : AdvK ;
+fun viereinen_NK : NK ;
+fun vierekka'in_AdvK : AdvK ;
+fun vierekka'inen_NK : NK ;
+fun vierekka'isyys_NK : NK ;
+fun viereksia'_VK : VK ;
+fun vierelle_AdvK : AdvK ;
+fun vierella'_AdvK : AdvK ;
+fun vierelta'_AdvK : AdvK ;
+fun vierema'_NK : NK ;
+fun vieressa'_AdvK : AdvK ;
+fun vieresta'_AdvK : AdvK ;
+fun vieretta'in_AdvK : AdvK ;
+fun vieretyksin_AdvK : AdvK ;
+fun vieretysten_AdvK : AdvK ;
+fun vieri_NK : NK ;
+fun vierinta'laakeri_NK : NK ;
+fun vieritse_AdvK : AdvK ;
+fun vieritta'ytya'_VK : VK ;
+fun vieritta'a'_VK : VK ;
+fun vieritys_NK : NK ;
+fun vieria'_VK : VK ;
+fun vieroa_VK : VK ;
+fun vieroittaa_VK : VK ;
+fun vieroittautua_VK : VK ;
+fun vieroittua_VK : VK ;
+fun vieroitus_NK : NK ;
+fun vieroitusaika_NK : NK ;
+fun vieroksua_VK : VK ;
+fun vieroksunta_NK : NK ;
+fun vierre_NK : NK ;
+fun vierus_NK : NK ;
+fun vierusta_NK : NK ;
+fun viera'hdys_NK : NK ;
+fun viera'hta'a'_VK : VK ;
+fun viera'ytta'a'_VK : VK ;
+fun viesti_NK : NK ;
+fun viestin_NK : NK ;
+fun viestinta'_NK : NK ;
+fun viestittya'_VK : VK ;
+fun viestitta'ja'_NK : NK ;
+fun viestitta'a'_VK : VK ;
+fun viestitys_NK : NK ;
+fun viestia'_VK : VK ;
+fun vietella'_VK : VK ;
+fun vieteri_NK : NK ;
+fun viettelevyys_NK : NK ;
+fun vietteleva'_AK : AK ;
+--+ fun vietteleva'sti_AdvK : AdvK ;
+fun viettelija'_NK : NK ;
+fun viettelija'ta'r_NK : NK ;
+fun viettely_NK : NK ;
+fun viettelys_NK : NK ;
+fun vietti_NK : NK ;
+fun vietto_NK : NK ;
+fun viettymys_NK : NK ;
+fun vietta'ja'_NK : NK ;
+fun vietta'a'_VK : VK ;
+fun vieta'va'_AK : AK ;
+fun vieta'va'nmoinen_NK : NK ;
+--+ fun vieta'va'sti_AdvK : AdvK ;
+fun vigilia_NK : NK ;
+fun wigwam_NK : NK ;
+fun vigvami_NK : NK ;
+fun viha_NK : NK ;
+fun vihaaja_NK : NK ;
+fun vihainen_AK : AK ;
+--+ fun vihaisesti_AdvK : AdvK ;
+fun vihaisuus_NK : NK ;
+--+ fun vihamielisesti_AdvK : AdvK ;
+fun vihannes_NK : NK ;
+fun vihannoida_VK : VK ;
+fun vihanta_NK : NK ;
+fun vihapa'issa'_AdvK : AdvK ;
+fun vihastua_VK : VK ;
+fun vihastus_NK : NK ;
+fun vihastuttaa_VK : VK ;
+fun vihata_VK : VK ;
+fun vihdas_NK : NK ;
+fun vihdoin_AdvK : AdvK ;
+fun vihdonta_NK : NK ;
+fun vihelia'inen_AK : AK ;
+--+ fun vihelia'isesti_AdvK : AdvK ;
+fun vihelia'isyys_NK : NK ;
+fun vihellella'_VK : VK ;
+fun vihellys_NK : NK ;
+fun vihelta'ja'_NK : NK ;
+fun vihelta'a'_VK : VK ;
+fun viherio'_NK : NK ;
+fun viherio'ida'_VK : VK ;
+fun viherio'inti_NK : NK ;
+fun viherio'itta'a'_VK : VK ;
+fun viherrys_NK : NK ;
+fun vihertya'_VK : VK ;
+fun viherta'va'_NK : NK ;
+fun viherta'a'_VK : VK ;
+fun viherva'_NK : NK ;
+fun vihi_NK : NK ;
+fun vihille_AdvK : AdvK ;
+fun vihilla'_AdvK : AdvK ;
+fun vihilta'_AdvK : AdvK ;
+fun vihitta'a'_VK : VK ;
+fun vihitytta'a'_VK : VK ;
+fun vihjailla_VK : VK ;
+fun vihjailu_NK : NK ;
+fun vihjaista_VK : VK ;
+fun vihjata_VK : VK ;
+fun vihjaus_NK : NK ;
+fun vihje_NK : NK ;
+fun vihkaista_VK : VK ;
+fun vihkija'_NK : NK ;
+fun vihkimys_NK : NK ;
+fun vihkima'to'n_NK : NK ;
+fun vihkipalli_NK : NK ;
+fun vihkipari_NK : NK ;
+fun vihkiytyma'to'n_NK : NK ;
+fun vihkiytya'_VK : VK ;
+fun vihkia'_VK : VK ;
+--? fun vihkia'iset_NK : NK ;
+fun vihko_NK : NK ;
+fun vihkoittain_AdvK : AdvK ;
+fun vihkollinen_NK : NK ;
+fun vihkonen_NK : NK ;
+fun vihlaista_VK : VK ;
+fun vihlaisu_NK : NK ;
+fun vihloa_VK : VK ;
+fun vihma_1_NK : NK ;
+fun vihma_2_NK : NK ;
+fun vihmainen_NK : NK ;
+fun vihmin_NK : NK ;
+fun vihmoa_VK : VK ;
+fun vihmoitin_NK : NK ;
+fun vihmoittaa_VK : VK ;
+fun vihmoitus_NK : NK ;
+fun vihne_NK : NK ;
+fun vihoissa_AdvK : AdvK ;
+fun vihoissaan_AdvK : AdvK ;
+fun vihoitella_VK : VK ;
+fun vihoittaa_VK : VK ;
+fun vihoittain_AdvK : AdvK ;
+fun vihoittelu_NK : NK ;
+fun viholainen_NK : NK ;
+fun vihollinen_NK : NK ;
+fun vihollisuus_NK : NK ;
+fun vihonviimein_AdvK : AdvK ;
+fun vihoviimein_AdvK : AdvK ;
+fun vihreys_NK : NK ;
+fun vihrea'_NK : NK ;
+fun vihta_NK : NK ;
+fun vihtahousu_NK : NK ;
+fun vihtoa_VK : VK ;
+fun vihtori_NK : NK ;
+fun vihtrilli_NK : NK ;
+fun vihulainen_NK : NK ;
+fun vihuri_NK : NK ;
+fun vihvila'_NK : NK ;
+fun viidakko_NK : NK ;
+fun viidennes_NK : NK ;
+fun viides_NK : NK ;
+fun viidesti_AdvK : AdvK ;
+fun viihde_NK : NK ;
+fun viihdyke_NK : NK ;
+fun viihdyte_NK : NK ;
+fun viihdytta'ja'_NK : NK ;
+fun viihdytta'a'_VK : VK ;
+fun viihdytys_NK : NK ;
+fun viihteellinen_AK : AK ;
+--+ fun viihteellisesti_AdvK : AdvK ;
+fun viihteellistya'_VK : VK ;
+fun viihteellisyys_NK : NK ;
+fun viihtyisyys_NK : NK ;
+fun viihtyisa'_AK : AK ;
+--+ fun viihtyisa'sti_AdvK : AdvK ;
+fun viihtymys_NK : NK ;
+fun viihtyvyys_NK : NK ;
+fun viihtya'_VK : VK ;
+fun viikari_NK : NK ;
+fun viikata_VK : VK ;
+fun viikate_NK : NK ;
+fun viikinki_NK : NK ;
+fun viikinkiaika_NK : NK ;
+fun viikkaus_NK : NK ;
+fun viikko_NK : NK ;
+fun viikkoinen_NK : NK ;
+fun viikoittain_AdvK : AdvK ;
+fun viikoittainen_NK : NK ;
+fun viikonloppuisin_AdvK : AdvK ;
+fun viikseka's_NK : NK ;
+fun viiksi_NK : NK ;
+fun viiksika's_NK : NK ;
+fun viiksinen_NK : NK ;
+fun viikuna_NK : NK ;
+fun viila_NK : NK ;
+fun viilaaja_NK : NK ;
+fun viilari_1_NK : NK ;
+fun viilari_2_NK : NK ;
+fun viilata_VK : VK ;
+fun viilaus_NK : NK ;
+fun viileke_NK : NK ;
+fun viilennys_NK : NK ;
+fun viilentya'_VK : VK ;
+fun viilenta'a'_VK : VK ;
+fun viileskella'_VK : VK ;
+fun viileskely_NK : NK ;
+fun viiletella'_VK : VK ;
+fun viiletta'a'_VK : VK ;
+fun viiletys_NK : NK ;
+fun viileta'_VK : VK ;
+fun viileys_NK : NK ;
+fun viileytta'a'_VK : VK ;
+fun viilea'_AK : AK ;
+--+ fun viilea'sti_AdvK : AdvK ;
+fun viili_NK : NK ;
+fun viille_NK : NK ;
+fun viillella'_VK : VK ;
+fun viillokki_NK : NK ;
+fun viillos_NK : NK ;
+fun viillytta'a'_VK : VK ;
+fun viilokki_NK : NK ;
+fun viilto_NK : NK ;
+fun viiltohaava_NK : NK ;
+fun viilta'a'_VK : VK ;
+fun viilu_NK : NK ;
+fun viiluttaa_VK : VK ;
+fun viilutus_NK : NK ;
+fun viima_NK : NK ;
+fun viimainen_NK : NK ;
+fun viime_AdvK : AdvK ;
+fun viimeinen_NK : NK ;
+fun viimeiseksi_AdvK : AdvK ;
+fun viimeisilla'a'n_AdvK : AdvK ;
+fun viimeiste_NK : NK ;
+fun viimeistelema'to'n_NK : NK ;
+fun viimeistella'_VK : VK ;
+fun viimeistely_NK : NK ;
+fun viimeistys_NK : NK ;
+fun viimeista'a'_VK : VK ;
+fun viimeista'a'n_AdvK : AdvK ;
+fun viimeksi_AdvK : AdvK ;
+fun viimemainittu_NK : NK ;
+fun viina_NK : NK ;
+fun viinainen_NK : NK ;
+--? fun viinakset_NK : NK ;
+fun viinapa'issa'_AdvK : AdvK ;
+fun viinaton_NK : NK ;
+fun viineri_NK : NK ;
+fun viini_1_NK : NK ;
+fun viini_2_NK : NK ;
+fun viinitta'a'_VK : VK ;
+fun viinuri_NK : NK ;
+fun viipale_NK : NK ;
+fun viipaloida_VK : VK ;
+fun viipalointi_NK : NK ;
+fun viipottaa_VK : VK ;
+fun viipotus_NK : NK ;
+fun viipyilla'_VK : VK ;
+fun viipyma'_NK : NK ;
+fun viipyma'tta'_AdvK : AdvK ;
+fun viipyma'to'n_NK : NK ;
+fun viipya'_VK : VK ;
+fun viira_NK : NK ;
+fun viirata_VK : VK ;
+fun viiri_NK : NK ;
+fun viiria'inen_NK : NK ;
+fun viiru_NK : NK ;
+fun viiruinen_NK : NK ;
+fun viirukas_NK : NK ;
+fun viirullinen_NK : NK ;
+fun viis_AdvK : AdvK ;
+--+ fun viisaasti_AdvK : AdvK ;
+fun viisari_NK : NK ;
+fun viisas_AK : AK ;
+fun viisastaa_VK : VK ;
+fun viisastelija_NK : NK ;
+fun viisastella_VK : VK ;
+fun viisastua_VK : VK ;
+fun viisastuttaa_VK : VK ;
+fun viisaus_NK : NK ;
+fun viisi_1_NK : NK ;
+fun viisi_2_AdvK : AdvK ;
+fun viisikko_NK : NK ;
+fun viiste_NK : NK ;
+fun viisto_AK : AK ;
+fun viistoon_AdvK : AdvK ;
+fun viistossa_AdvK : AdvK ;
+fun viistosta_AdvK : AdvK ;
+--+ fun viistosti_AdvK : AdvK ;
+fun viistota_VK : VK ;
+fun viistous_NK : NK ;
+fun viistoutua_VK : VK ;
+fun viista'a'_VK : VK ;
+fun viisu_NK : NK ;
+fun viisumi_NK : NK ;
+fun viita_NK : NK ;
+fun viitata_VK : VK ;
+fun viite_NK : NK ;
+fun viitisen_AdvK : AdvK ;
+fun viitisenkymmenta'_AdvK : AdvK ;
+fun viitoittaa_VK : VK ;
+fun viitoitus_NK : NK ;
+fun viitonen_NK : NK ;
+fun viitselia'isyys_NK : NK ;
+fun viitselia's_AK : AK ;
+--+ fun viitselia'a'sti_AdvK : AdvK ;
+fun viitsia'_VK : VK ;
+fun viitta_1_NK : NK ;
+fun viitta_2_NK : NK ;
+fun viittailla_VK : VK ;
+fun viittauksellinen_NK : NK ;
+fun viittaus_NK : NK ;
+fun viitteellinen_AK : AK ;
+--+ fun viitteellisesti_AdvK : AdvK ;
+fun viitteellisyys_NK : NK ;
+fun viittilo'ida'_VK : VK ;
+fun viittilo'inti_NK : NK ;
+fun viittoa_VK : VK ;
+fun viittoilla_VK : VK ;
+fun viittoilu_NK : NK ;
+fun viittoja_NK : NK ;
+fun viittoma_NK : NK ;
+fun viiva_NK : NK ;
+fun viivain_NK : NK ;
+fun viivainen_AK : AK ;
+--+ fun viivaisesti_AdvK : AdvK ;
+fun viivaisuus_NK : NK ;
+fun viivallinen_NK : NK ;
+fun viivasto_NK : NK ;
+fun viivata_VK : VK ;
+fun viivaus_NK : NK ;
+fun viive_NK : NK ;
+fun viivoitin_NK : NK ;
+fun viivoittaa_VK : VK ;
+fun viivoitus_NK : NK ;
+fun viivytella'_VK : VK ;
+fun viivyttely_NK : NK ;
+fun viivytta'a'_VK : VK ;
+fun viivytys_NK : NK ;
+fun viiva'hta'a'_VK : VK ;
+fun viiva'stella'_VK : VK ;
+fun viiva'stely_NK : NK ;
+fun viiva'stymisaika_NK : NK ;
+fun viiva'styma'_NK : NK ;
+fun viiva'stys_NK : NK ;
+fun viiva'stytta'a'_VK : VK ;
+fun viiva'stya'_VK : VK ;
+fun viiva'sta'a'_VK : VK ;
+fun vika_1_NK : NK ;
+fun vika_2_NK : NK ;
+fun vikaantua_VK : VK ;
+fun vikainen_NK : NK ;
+fun vikaisuus_NK : NK ;
+fun vikautua_VK : VK ;
+fun vikina'_NK : NK ;
+fun vikista'_VK : VK ;
+fun vikitella'_VK : VK ;
+fun vikittely_NK : NK ;
+fun vikkelyys_NK : NK ;
+fun vikkela'_AK : AK ;
+--+ fun vikkela'sti_AdvK : AdvK ;
+fun vikkela'a'n_AdvK : AdvK ;
+fun viklo_NK : NK ;
+fun viktoriaani_NK : NK ;
+fun viktoriaaninen_AK : AK ;
+--+ fun viktoriaanisesti_AdvK : AdvK ;
+fun viktoriaanisuus_NK : NK ;
+fun vikuri_NK : NK ;
+fun vikuroida_VK : VK ;
+fun vikurointi_NK : NK ;
+fun vikuuttaa_VK : VK ;
+fun vilahdella_VK : VK ;
+fun vilahdus_NK : NK ;
+fun vilahduttaa_VK : VK ;
+fun vilahtaa_VK : VK ;
+fun vilaus_NK : NK ;
+fun vilautella_VK : VK ;
+fun vilauttaa_VK : VK ;
+fun vilautus_NK : NK ;
+fun vilina'_NK : NK ;
+fun vilistella'_VK : VK ;
+fun vilista'_VK : VK ;
+fun vilista'a'_VK : VK ;
+fun vilja_NK : NK ;
+fun viljalti_AdvK : AdvK ;
+fun viljava_NK : NK ;
+fun viljavuus_NK : NK ;
+fun viljelema'to'n_NK : NK ;
+fun viljelija'_NK : NK ;
+fun viljella'_VK : VK ;
+fun viljelma'_NK : NK ;
+fun viljeltya'_VK : VK ;
+fun viljely_NK : NK ;
+fun viljelys_NK : NK ;
+fun vilkahdella_VK : VK ;
+fun vilkahdus_NK : NK ;
+fun vilkahtaa_VK : VK ;
+fun vilkahtelu_NK : NK ;
+fun vilkaista_VK : VK ;
+fun vilkaisu_NK : NK ;
+fun vilkas_AK : AK ;
+fun vilkastaa_VK : VK ;
+fun vilkastua_VK : VK ;
+fun vilkastuttaa_VK : VK ;
+fun vilkaus_NK : NK ;
+fun vilke_NK : NK ;
+fun vilkkaa_AdvK : AdvK ;
+--+ fun vilkkaasti_AdvK : AdvK ;
+fun vilkkaus_NK : NK ;
+fun vilkku_NK : NK ;
+fun vilkkua_VK : VK ;
+fun vilkuilla_VK : VK ;
+fun vilkuilu_NK : NK ;
+fun vilkunta_NK : NK ;
+fun vilkutella_VK : VK ;
+fun vilkuttaa_VK : VK ;
+fun vilkutus_NK : NK ;
+fun villa_1_NK : NK ;
+fun villa_2_NK : NK ;
+fun villainen_NK : NK ;
+fun villakko_NK : NK ;
+fun villaro'ijy_NK : NK ;
+fun villava_NK : NK ;
+fun villeys_NK : NK ;
+fun villi_AK : AK ;
+fun villiinnytta'a'_VK : VK ;
+fun villiintya'_VK : VK ;
+fun villikko_NK : NK ;
+--+ fun villisti_AdvK : AdvK ;
+fun villitsija'_NK : NK ;
+fun villitys_NK : NK ;
+fun villita'_VK : VK ;
+fun villiys_NK : NK ;
+fun villiytya'_VK : VK ;
+fun villoittaa_VK : VK ;
+fun villoitus_NK : NK ;
+fun vilpas_NK : NK ;
+fun vilpillinen_NK : NK ;
+fun vilpistelija'_NK : NK ;
+fun vilpistella'_VK : VK ;
+fun vilpistely_NK : NK ;
+fun vilpitto'myys_NK : NK ;
+fun vilpitto'ma'sti_AdvK : AdvK ;
+fun vilpito'n_NK : NK ;
+fun vilpoinen_AK : AK ;
+fun vilpoisa_AK : AK ;
+--+ fun vilpoisasti_AdvK : AdvK ;
+--+ fun vilpoisesti_AdvK : AdvK ;
+fun vilpoisuus_NK : NK ;
+fun vilpola_NK : NK ;
+fun vilppi_NK : NK ;
+fun vilske_NK : NK ;
+fun viltti_NK : NK ;
+fun vilu_NK : NK ;
+fun viluinen_NK : NK ;
+fun vilukko_NK : NK ;
+fun vilustaa_VK : VK ;
+fun vilustua_VK : VK ;
+fun vilustuttaa_VK : VK ;
+fun viluttaa_VK : VK ;
+fun vilutus_NK : NK ;
+fun vilvoitella_VK : VK ;
+fun vilvoittaa_VK : VK ;
+fun vilvoittautua_VK : VK ;
+fun vilvoittelu_NK : NK ;
+fun vilvoittua_VK : VK ;
+fun vilvoitus_NK : NK ;
+fun vimma_NK : NK ;
+fun vimmainen_AK : AK ;
+fun vimmaisa_NK : NK ;
+--+ fun vimmaisesti_AdvK : AdvK ;
+fun vimmaisuus_NK : NK ;
+fun vimmastua_VK : VK ;
+fun vimmastuksissa_AdvK : AdvK ;
+fun vimmastuksissaan_AdvK : AdvK ;
+fun vimmastus_NK : NK ;
+fun vimmastuttaa_VK : VK ;
+fun vimmattu_NK : NK ;
+fun vimmatusti_AdvK : AdvK ;
+fun vimpain_NK : NK ;
+fun vinaigrette_NK : NK ;
+fun vingahdella_VK : VK ;
+fun vingahdus_NK : NK ;
+fun vingahtaa_VK : VK ;
+fun vingerpori_NK : NK ;
+fun vingunta_NK : NK ;
+fun vinguttaa_VK : VK ;
+fun vinguttaja_NK : NK ;
+fun vingutus_NK : NK ;
+fun vinha_AK : AK ;
+--+ fun vinhasti_AdvK : AdvK ;
+fun vinjetti_NK : NK ;
+fun vinka_1_NK : NK ;
+fun vinka_2_NK : NK ;
+fun vinkaista_VK : VK ;
+fun vinkaisu_NK : NK ;
+fun vinkata_VK : VK ;
+fun vinkaus_NK : NK ;
+fun vinkeys_NK : NK ;
+fun vinkea'_AK : AK ;
+--+ fun vinkea'sti_AdvK : AdvK ;
+fun vinkkari_NK : NK ;
+fun vinkkeli_NK : NK ;
+fun vinkki_NK : NK ;
+fun vinksahdus_NK : NK ;
+fun vinksahtaa_VK : VK ;
+fun vinksin_vonksin_AdvK : AdvK ;
+fun vinku_NK : NK ;
+fun vinkua_VK : VK ;
+fun vino_AK : AK ;
+fun vinoilla_VK : VK ;
+fun vinoilu_NK : NK ;
+fun vinoittain_AdvK : AdvK ;
+fun vinoittainen_NK : NK ;
+fun vinokas_NK : NK ;
+fun vinoon_AdvK : AdvK ;
+fun vinossa_AdvK : AdvK ;
+--+ fun vinosti_AdvK : AdvK ;
+fun vinottain_AdvK : AdvK ;
+fun vinottainen_NK : NK ;
+fun vinouma_NK : NK ;
+fun vinous_NK : NK ;
+fun vinouttaa_VK : VK ;
+fun vinoutua_VK : VK ;
+fun vinoutuma_NK : NK ;
+fun vinssata_VK : VK ;
+fun vinssi_NK : NK ;
+fun vintata_VK : VK ;
+fun vintila'_NK : NK ;
+fun vintio'_NK : NK ;
+fun vintti_1_NK : NK ;
+fun vintti_2_NK : NK ;
+fun vintturi_NK : NK ;
+fun vinyyli_NK : NK ;
+fun vioittaa_VK : VK ;
+fun vioittua_VK : VK ;
+fun vioittuma_NK : NK ;
+fun viola_NK : NK ;
+fun violetti_NK : NK ;
+fun violisti_NK : NK ;
+fun VIP_AdvK : AdvK ;
+fun vipajaa_VK : VK ;
+fun vipata_1_VK : VK ;
+fun vipata_2_VK : VK ;
+fun vipata_3_VK : VK ;
+fun vipattaa_VK : VK ;
+fun vipatus_NK : NK ;
+fun vipellys_NK : NK ;
+fun vipelta'a'_VK : VK ;
+fun vipina'_NK : NK ;
+fun vipista'_VK : VK ;
+fun vippa_NK : NK ;
+fun vippailla_VK : VK ;
+fun vippaus_NK : NK ;
+fun vippi_1_NK : NK ;
+fun vippi_2_NK : NK ;
+fun vippi_3_NK : NK ;
+fun vipu_NK : NK ;
+fun vipusin_NK : NK ;
+fun viraapeli_NK : NK ;
+fun virallinen_AK : AK ;
+--+ fun virallisesti_AdvK : AdvK ;
+fun virallistaa_VK : VK ;
+fun virallistua_VK : VK ;
+fun virallisuus_NK : NK ;
+fun virasto_NK : NK ;
+fun virastoaika_NK : NK ;
+fun viraton_NK : NK ;
+fun vire_NK : NK ;
+fun vireille_AdvK : AdvK ;
+fun vireilla'_AdvK : AdvK ;
+fun vireinen_NK : NK ;
+fun vireys_NK : NK ;
+fun vireytta'a'_VK : VK ;
+fun vireytya'_VK : VK ;
+fun virea'_AK : AK ;
+--+ fun virea'sti_AdvK : AdvK ;
+fun virhe_NK : NK ;
+fun virheellinen_AK : AK ;
+--+ fun virheellisesti_AdvK : AdvK ;
+fun virheellisyys_NK : NK ;
+fun virheetto'myys_NK : NK ;
+fun virheeto'n_NK : NK ;
+fun virheinen_NK : NK ;
+fun viri_NK : NK ;
+fun viriili_NK : NK ;
+fun virike_NK : NK ;
+fun virikkeellinen_NK : NK ;
+fun virikkeeto'n_NK : NK ;
+fun virikkeinen_NK : NK ;
+fun virikkeisyys_NK : NK ;
+fun viritella'_VK : VK ;
+fun viritelma'_NK : NK ;
+fun viritin_NK : NK ;
+fun viritteinen_NK : NK ;
+fun virittya'_VK : VK ;
+fun viritta'ja'_NK : NK ;
+fun viritta'ma'to'n_NK : NK ;
+fun viritta'ytya'_VK : VK ;
+fun viritta'a'_VK : VK ;
+fun viritys_NK : NK ;
+fun virita'_VK : VK ;
+fun virio'_NK : NK ;
+fun virka_NK : NK ;
+fun virka_aika_NK : NK ;
+--? fun virkaanasettajaiset_NK : NK ;
+--? fun virkaanastujaiset_NK : NK ;
+fun virkaa_toimittava_NK : NK ;
+fun virkailija_NK : NK ;
+fun virkailla_VK : VK ;
+--+ fun virkaintoisesti_AdvK : AdvK ;
+fun virkata_VK : VK ;
+--+ fun virkavaltaisesti_AdvK : AdvK ;
+fun virke_NK : NK ;
+fun virkeys_NK : NK ;
+fun virkea'_AK : AK ;
+--+ fun virkea'sti_AdvK : AdvK ;
+fun virkiste_NK : NK ;
+fun virkistys_NK : NK ;
+fun virkistya'_VK : VK ;
+fun virkista'ytya'_VK : VK ;
+fun virkista'a'_VK : VK ;
+fun virkkaa_VK : VK ;
+fun virkkaus_NK : NK ;
+fun virkku_NK : NK ;
+fun virkkuu_NK : NK ;
+fun virmajuuri_NK : NK ;
+fun virna_NK : NK ;
+fun virne_NK : NK ;
+fun virnistella'_VK : VK ;
+fun virnistely_NK : NK ;
+fun virnistys_NK : NK ;
+fun virnista'a'_VK : VK ;
+fun virnuilla_VK : VK ;
+fun viro_NK : NK ;
+fun virolaisittain_AdvK : AdvK ;
+fun virologi_NK : NK ;
+fun virologia_NK : NK ;
+fun virologinen_NK : NK ;
+fun vironnos_NK : NK ;
+fun virontaa_VK : VK ;
+fun virota_VK : VK ;
+fun virottaa_VK : VK ;
+fun virpi_NK : NK ;
+fun virpoa_VK : VK ;
+fun virpoja_NK : NK ;
+fun virrata_VK : VK ;
+fun virroitin_NK : NK ;
+fun virroittaa_VK : VK ;
+fun virroitus_NK : NK ;
+fun virsi_NK : NK ;
+fun virsinki_NK : NK ;
+fun virsta_NK : NK ;
+fun virsu_NK : NK ;
+fun virta_NK : NK ;
+fun virtaama_NK : NK ;
+fun virtailla_VK : VK ;
+fun virtainen_NK : NK ;
+fun virtaisa_NK : NK ;
+fun virtanaan_AdvK : AdvK ;
+fun virtanen_NK : NK ;
+fun virtaska_NK : NK ;
+fun virtaus_NK : NK ;
+fun virtaviivaistaa_VK : VK ;
+fun virtaviivaistus_NK : NK ;
+fun virtsa_NK : NK ;
+fun virtsata_VK : VK ;
+fun virttya'_VK : VK ;
+fun virtuaalistaa_VK : VK ;
+fun virtuoosi_NK : NK ;
+fun virtuoosinen_NK : NK ;
+fun virtuoosisuus_NK : NK ;
+fun virtuositeetti_NK : NK ;
+fun virua_VK : VK ;
+fun virulenssi_NK : NK ;
+fun virulentti_NK : NK ;
+fun virus_NK : NK ;
+fun viruttaa_VK : VK ;
+fun virutus_NK : NK ;
+fun virveli_1_NK : NK ;
+fun virveli_2_NK : NK ;
+fun virvelo'ida'_VK : VK ;
+fun virvelo'inti_NK : NK ;
+fun virvila'_NK : NK ;
+fun virvoitella_VK : VK ;
+fun virvoittaa_VK : VK ;
+fun virvoittua_VK : VK ;
+fun virvoitus_NK : NK ;
+fun virvoke_NK : NK ;
+fun visa_NK : NK ;
+fun visailla_VK : VK ;
+fun visailu_NK : NK ;
+fun visainen_NK : NK ;
+fun visautua_VK : VK ;
+fun viserrella'_VK : VK ;
+fun viserrys_NK : NK ;
+fun viserta'ja'_NK : NK ;
+fun viserta'a'_VK : VK ;
+fun visiiri_1_NK : NK ;
+fun visiiri_2_NK : NK ;
+fun visiitti_NK : NK ;
+fun visio_NK : NK ;
+fun visioida_VK : VK ;
+fun visiointi_NK : NK ;
+fun visionaarinen_NK : NK ;
+fun visiona'a'rinen_NK : NK ;
+fun viskaali_NK : NK ;
+fun viskata_VK : VK ;
+fun viskautua_VK : VK ;
+fun viskella'_VK : VK ;
+fun viskely_NK : NK ;
+fun viski_NK : NK ;
+fun viskoa_VK : VK ;
+fun viskonta_NK : NK ;
+fun viskoosi_NK : NK ;
+fun viskoosinen_NK : NK ;
+fun viskoosisuus_NK : NK ;
+fun viskoosius_NK : NK ;
+fun viskositeetti_NK : NK ;
+fun viskoutua_VK : VK ;
+fun vislata_VK : VK ;
+fun vislaus_NK : NK ;
+fun vismutti_NK : NK ;
+fun visoittua_VK : VK ;
+fun vispaantua_VK : VK ;
+fun vispata_VK : VK ;
+fun vispaus_NK : NK ;
+fun vispautua_VK : VK ;
+fun vispila'_NK : NK ;
+fun vispilo'ida'_VK : VK ;
+fun vissi_AK : AK ;
+fun vissiin_AdvK : AdvK ;
+--+ fun vissisti_AdvK : AdvK ;
+fun vissy_NK : NK ;
+fun visti_NK : NK ;
+fun visu_AK : AK ;
+fun visuaalinen_AK : AK ;
+--+ fun visuaalisesti_AdvK : AdvK ;
+fun visuaalistaa_VK : VK ;
+fun visuaalisuus_NK : NK ;
+fun visualisoida_VK : VK ;
+fun visualisoija_NK : NK ;
+fun visualisointi_NK : NK ;
+--+ fun visusti_AdvK : AdvK ;
+fun visva_NK : NK ;
+fun visvainen_NK : NK ;
+fun vita_NK : NK ;
+fun vitaali_NK : NK ;
+--+ fun vitaalisesti_AdvK : AdvK ;
+fun vitaalisuus_NK : NK ;
+fun vitaalius_NK : NK ;
+fun vitalismi_NK : NK ;
+fun vitalistinen_NK : NK ;
+fun vitaliteetti_NK : NK ;
+fun vitamiini_NK : NK ;
+fun vitamiinikas_NK : NK ;
+fun vitamiininen_NK : NK ;
+fun vitaminoida_VK : VK ;
+fun vitaminointi_NK : NK ;
+fun viti_NK : NK ;
+fun vitja_NK : NK ;
+fun vitka_NK : NK ;
+fun vitkaan_AdvK : AdvK ;
+fun vitkailla_VK : VK ;
+fun vitkallinen_NK : NK ;
+fun vitkastelija_NK : NK ;
+fun vitkastella_VK : VK ;
+fun vitkastelu_NK : NK ;
+fun vitkutella_VK : VK ;
+fun vitkuttaa_VK : VK ;
+fun vitkuttelu_NK : NK ;
+fun vitoa_VK : VK ;
+fun vitonen_NK : NK ;
+fun vitriini_NK : NK ;
+fun vitsa_NK : NK ;
+fun vitsailija_NK : NK ;
+fun vitsailla_VK : VK ;
+fun vitsailu_NK : NK ;
+fun vitsas_NK : NK ;
+fun vitsaus_NK : NK ;
+fun vitsi_NK : NK ;
+fun vitsikkyys_NK : NK ;
+--+ fun vitsikka'a'sti_AdvK : AdvK ;
+fun vitsika's_AK : AK ;
+fun vitsoa_VK : VK ;
+fun vittu_NK : NK ;
+fun vittuilla_VK : VK ;
+fun vittuilu_NK : NK ;
+--+ fun vittumaisesti_AdvK : AdvK ;
+fun vittumaisuus_NK : NK ;
+fun vittuuntua_VK : VK ;
+fun vituraan_AdvK : AdvK ;
+fun viturallaan_AdvK : AdvK ;
+fun vituralleen_AdvK : AdvK ;
+fun viturassa_AdvK : AdvK ;
+fun vituttaa_VK : VK ;
+fun vitutus_NK : NK ;
+fun viuhahdella_VK : VK ;
+fun viuhahdus_NK : NK ;
+fun viuhahtaa_VK : VK ;
+fun viuhauttaa_VK : VK ;
+fun viuhina_NK : NK ;
+fun viuhka_NK : NK ;
+--+ fun viuhkamaisesti_AdvK : AdvK ;
+fun viuhkamaisuus_NK : NK ;
+fun viuhke_NK : NK ;
+fun viuhko_NK : NK ;
+fun viuhottaa_VK : VK ;
+fun viuhtoa_VK : VK ;
+fun viuhua_VK : VK ;
+fun viuhuttaa_VK : VK ;
+fun viulisti_NK : NK ;
+fun viulu_NK : NK ;
+fun vivace_NK : NK ;
+fun vivahde_NK : NK ;
+fun vivahduksekas_NK : NK ;
+fun vivahdukseton_NK : NK ;
+fun vivahdus_NK : NK ;
+fun vivahtaa_VK : VK ;
+fun vivahteeton_NK : NK ;
+fun vivahteettomasti_AdvK : AdvK ;
+fun vivahteettomuus_NK : NK ;
+fun vivahteikas_NK : NK ;
+fun vivahteikkaasti_AdvK : AdvK ;
+fun vivahteikkuus_NK : NK ;
+fun vivahteinen_NK : NK ;
+fun vivipaarinen_NK : NK ;
+fun vivisektio_NK : NK ;
+fun vivuta_VK : VK ;
+fun voda_NK : NK ;
+fun vodka_NK : NK ;
+fun voguli_NK : NK ;
+fun vohkia_VK : VK ;
+fun vohla_NK : NK ;
+fun vohveli_NK : NK ;
+fun voi_1_NK : NK ;
+fun voi_2_AdvK : AdvK ;
+fun voida_VK : VK ;
+fun voide_NK : NK ;
+fun voidella_VK : VK ;
+fun voihkaista_VK : VK ;
+fun voihkaisu_NK : NK ;
+fun voihke_NK : NK ;
+fun voihkia_VK : VK ;
+fun voihkina_NK : NK ;
+fun voikka_NK : NK ;
+fun voilee_NK : NK ;
+fun voima_NK : NK ;
+fun voimailija_NK : NK ;
+fun voimailu_NK : NK ;
+--+ fun voimaisesti_AdvK : AdvK ;
+fun voimaisuus_NK : NK ;
+fun voimakas_AK : AK ;
+--+ fun voimakkaasti_AdvK : AdvK ;
+fun voimakkuus_NK : NK ;
+fun voimala_NK : NK ;
+--+ fun voimallisesti_AdvK : AdvK ;
+fun voimallisuus_NK : NK ;
+--+ fun voimapera'isesti_AdvK : AdvK ;
+fun voimassaoloaika_NK : NK ;
+fun voimaton_NK : NK ;
+fun voimattomasti_AdvK : AdvK ;
+fun voimattomuus_NK : NK ;
+fun voimistaa_VK : VK ;
+fun voimistelija_NK : NK ;
+fun voimistella_VK : VK ;
+fun voimistelu_NK : NK ;
+fun voimistua_VK : VK ;
+fun voimistus_NK : NK ;
+fun voimistuttaa_VK : VK ;
+fun voinen_NK : NK ;
+fun vointi_NK : NK ;
+fun vointinen_NK : NK ;
+fun vointisuus_NK : NK ;
+fun voipa_NK : NK ;
+fun voipua_VK : VK ;
+fun voipumus_NK : NK ;
+fun voitava_NK : NK ;
+fun voitelu_NK : NK ;
+fun voitokas_AK : AK ;
+--+ fun voitokkaasti_AdvK : AdvK ;
+fun voitokkuus_NK : NK ;
+fun voitollinen_AK : AK ;
+--+ fun voitollisesti_AdvK : AdvK ;
+--+ fun voitonriemuisesti_AdvK : AdvK ;
+fun voittaa_VK : VK ;
+fun voittaja_NK : NK ;
+fun voittamaton_NK : NK ;
+fun voittamattomuus_NK : NK ;
+fun voitto_NK : NK ;
+fun voittoaika_NK : NK ;
+fun voittoinen_AK : AK ;
+fun voittoisa_AK : AK ;
+--+ fun voittoisasti_AdvK : AdvK ;
+--+ fun voittoisesti_AdvK : AdvK ;
+fun voittoisuus_NK : NK ;
+fun voittopuolisesti_AdvK : AdvK ;
+fun voivotella_VK : VK ;
+fun voivottaa_VK : VK ;
+fun voivottelu_NK : NK ;
+fun voivotus_NK : NK ;
+fun voivuksiin_AdvK : AdvK ;
+fun voivuksissa_AdvK : AdvK ;
+fun voivuttaa_VK : VK ;
+fun voivutus_NK : NK ;
+fun wok_NK : NK ;
+fun vokaali_NK : NK ;
+fun vokalisti_NK : NK ;
+fun vokki_NK : NK ;
+fun vokotella_VK : VK ;
+fun vokottaa_VK : VK ;
+fun vokottelu_NK : NK ;
+fun volatiliteetti_NK : NK ;
+fun vol_au_vent_NK : NK ;
+fun volframi_NK : NK ;
+fun volgalainen_NK : NK ;
+fun vollottaa_VK : VK ;
+fun vollotus_NK : NK ;
+fun voltata_VK : VK ;
+fun voltti_1_NK : NK ;
+fun voltti_2_NK : NK ;
+fun volyymi_NK : NK ;
+fun vongahtaa_VK : VK ;
+fun vongunta_NK : NK ;
+fun vonkale_NK : NK ;
+fun vonkua_VK : VK ;
+fun voodoo_NK : NK ;
+fun vooninki_NK : NK ;
+fun vooninkinen_NK : NK ;
+fun workshop_NK : NK ;
+fun vormu_NK : NK ;
+fun voro_NK : NK ;
+fun vorschmack_NK : NK ;
+fun vosikka_NK : NK ;
+fun vossikka_NK : NK ;
+fun votjakki_NK : NK ;
+fun votka_NK : NK ;
+fun voucher_NK : NK ;
+fun vouhake_NK : NK ;
+fun vouhkata_VK : VK ;
+fun vouhottaa_VK : VK ;
+fun vouhottaja_NK : NK ;
+fun vouhotus_NK : NK ;
+fun vouti_NK : NK ;
+fun voyeurismi_NK : NK ;
+fun voyeuristi_NK : NK ;
+fun vulgaari_NK : NK ;
+fun vulgaaristaa_VK : VK ;
+fun vulgarismi_NK : NK ;
+fun vulgarisoida_VK : VK ;
+fun vulgarisointi_NK : NK ;
+fun vulga'a'ri_NK : NK ;
+fun vulkaani_NK : NK ;
+fun vulkaaninen_NK : NK ;
+fun vulkaniitti_NK : NK ;
+fun vulkanoida_VK : VK ;
+fun vulkanointi_NK : NK ;
+fun vulkanoitua_VK : VK ;
+fun vulkanologi_NK : NK ;
+fun vulkanologia_NK : NK ;
+fun vulva_NK : NK ;
+fun vuo_NK : NK ;
+fun vuodattaa_VK : VK ;
+fun vuodatus_NK : NK ;
+fun vuode_NK : NK ;
+fun vuodenaika_NK : NK ;
+fun vuohenvilla_NK : NK ;
+fun vuohi_NK : NK ;
+fun vuohikas_NK : NK ;
+fun vuohinen_NK : NK ;
+fun vuoka_NK : NK ;
+fun vuokko_NK : NK ;
+fun vuokra_NK : NK ;
+fun vuokra_aika_NK : NK ;
+fun vuokraaja_NK : NK ;
+fun vuokraamo_NK : NK ;
+fun vuokrainen_NK : NK ;
+fun vuokrata_VK : VK ;
+fun vuokraus_NK : NK ;
+fun vuoksi_1_NK : NK ;
+fun vuoksi_2_AdvK : AdvK ;
+--+ fun vuolaasti_AdvK : AdvK ;
+fun vuolas_AK : AK ;
+--+ fun vuolassanaisesti_AdvK : AdvK ;
+fun vuolaus_NK : NK ;
+fun vuoleskella_VK : VK ;
+fun vuoliainen_NK : NK ;
+fun vuolla_VK : VK ;
+fun vuolle_NK : NK ;
+fun vuolu_NK : NK ;
+fun vuona_NK : NK ;
+fun vuonia_VK : VK ;
+fun vuonna_AdvK : AdvK ;
+fun vuono_NK : NK ;
+fun vuonoinen_NK : NK ;
+fun vuorata_VK : VK ;
+fun vuoraus_NK : NK ;
+fun vuori_1_NK : NK ;
+fun vuori_2_NK : NK ;
+fun vuorillinen_NK : NK ;
+fun vuorinen_1_NK : NK ;
+fun vuorinen_2_NK : NK ;
+fun vuoristo_NK : NK ;
+fun vuoristoinen_NK : NK ;
+fun vuoristoisuus_NK : NK ;
+fun vuoriton_NK : NK ;
+fun vuorittaa_VK : VK ;
+fun vuoritus_NK : NK ;
+fun vuoro_NK : NK ;
+fun vuoroinen_NK : NK ;
+fun vuoroittain_AdvK : AdvK ;
+fun vuoroittainen_NK : NK ;
+fun vuoroittaisuus_NK : NK ;
+fun vuorokaudenaika_NK : NK ;
+fun vuoron_pera'a'n_AdvK : AdvK ;
+fun vuorostaan_AdvK : AdvK ;
+fun vuorotella_VK : VK ;
+fun vuorottaa_VK : VK ;
+fun vuorottaja_NK : NK ;
+fun vuorottelu_NK : NK ;
+fun vuorotus_NK : NK ;
+--+ fun vuorovaikutteisesti_AdvK : AdvK ;
+fun vuosi_NK : NK ;
+fun vuosiluokittain_AdvK : AdvK ;
+fun vuosinelja'nneksitta'in_AdvK : AdvK ;
+fun vuosittain_AdvK : AdvK ;
+fun vuosittainen_NK : NK ;
+fun vuota_NK : NK ;
+fun vuotaa_VK : VK ;
+fun vuotamaton_NK : NK ;
+fun vuotias_NK : NK ;
+fun vuotinen_NK : NK ;
+fun vuoto_NK : NK ;
+fun vuotokohta_NK : NK ;
+fun vuotuinen_NK : NK ;
+fun WWW_AdvK : AdvK ;
+fun vyyhdeta'_VK : VK ;
+fun vyyhti_NK : NK ;
+fun vyyhtia'_VK : VK ;
+fun vyo'_NK : NK ;
+fun vyo'hyke_NK : NK ;
+fun vyo'hykkeinen_NK : NK ;
+fun vyo'hykkeisyys_NK : NK ;
+fun vyo'llinen_NK : NK ;
+fun vyo'ry_NK : NK ;
+fun vyo'ryma'_NK : NK ;
+fun vyo'rytta'a'_VK : VK ;
+fun vyo'rytys_NK : NK ;
+fun vyo'rya'_VK : VK ;
+fun vyo'ra'hta'a'_VK : VK ;
+fun vyo'te_NK : NK ;
+fun vyo'tia'inen_NK : NK ;
+fun vyo'tta'ytya'_VK : VK ;
+fun vyo'tta'a'_VK : VK ;
+--? fun vyo'ta'iset_NK : NK ;
+fun vyo'ta'ro'_NK : NK ;
+fun vyo'ta'ro'inen_NK : NK ;
+fun vyo'to'n_NK : NK ;
+fun va'eka's_NK : NK ;
+fun va'esto'_NK : NK ;
+fun va'esto'inen_NK : NK ;
+fun va'esto'llinen_NK : NK ;
+fun va'esto'nsuoja_NK : NK ;
+fun va'eto'n_NK : NK ;
+fun va'heksynta'_NK : NK ;
+fun va'heksya'_VK : VK ;
+fun va'hemmisto'_NK : NK ;
+fun va'hemmisto'la'inen_NK : NK ;
+fun va'hemmyys_NK : NK ;
+fun va'hemma'n_AdvK : AdvK ;
+fun va'hempi_NK : NK ;
+fun va'hennella'_VK : VK ;
+fun va'hennetta'va'_NK : NK ;
+fun va'hennys_NK : NK ;
+fun va'hennysjakautuminen_NK : NK ;
+fun va'hentyma'_NK : NK ;
+fun va'hentya'_VK : VK ;
+fun va'henta'ja'_NK : NK ;
+fun va'henta'a'_VK : VK ;
+fun va'heta'_VK : VK ;
+fun va'hiin_AdvK : AdvK ;
+fun va'himmin_AdvK : AdvK ;
+fun va'himma'isaika_NK : NK ;
+fun va'himma'israja_NK : NK ;
+fun va'himma'ista'a'_VK : VK ;
+fun va'hin_AdvK : AdvK ;
+fun va'hinta'a'n_AdvK : AdvK ;
+fun va'hissa'_AdvK : AdvK ;
+fun va'hitellen_AdvK : AdvK ;
+fun va'hiten_AdvK : AdvK ;
+fun va'hitta'in_AdvK : AdvK ;
+fun va'hitta'inen_NK : NK ;
+fun va'hyys_NK : NK ;
+fun va'ha'_NK : NK ;
+--+ fun va'ha'eleisesti_AdvK : AdvK ;
+fun va'ha'happinen_NK : NK ;
+fun va'ha'ilmeisyys_NK : NK ;
+fun va'ha'inen_NK : NK ;
+fun va'ha'isen_AdvK : AdvK ;
+fun va'ha'ja'rkisyys_NK : NK ;
+fun va'ha'ksya'_VK : VK ;
+--+ fun va'ha'lukuisesti_AdvK : AdvK ;
+fun va'ha'lukuisuus_NK : NK ;
+fun va'ha'la'nta'_NK : NK ;
+fun va'ha'n_AdvK : AdvK ;
+fun va'ha'nla'nta'_NK : NK ;
+fun va'ha'n_va'lia'_AdvK : AdvK ;
+fun va'ha'pa'to'inen_NK : NK ;
+fun va'ha'pa'to'isyys_NK : NK ;
+fun va'ha'tella'_VK : VK ;
+fun va'ha'telma'_NK : NK ;
+fun va'ha'a'ka'a'n_AdvK : AdvK ;
+fun va'ijyksiin_AdvK : AdvK ;
+fun va'ijyksissa'_AdvK : AdvK ;
+fun va'ijyksista'_AdvK : AdvK ;
+fun va'ijynta'_NK : NK ;
+fun va'ijytys_NK : NK ;
+fun va'ijya'_VK : VK ;
+fun va'ikehtia'_VK : VK ;
+fun va'ikkya'_VK : VK ;
+fun va'istella'_VK : VK ;
+fun va'istin_NK : NK ;
+fun va'istyva'_AK : AK ;
+--+ fun va'istyva'sti_AdvK : AdvK ;
+fun va'istya'_VK : VK ;
+fun va'ista'ma'tta'_AdvK : AdvK ;
+fun va'ista'ma'tto'myys_NK : NK ;
+fun va'ista'ma'tto'ma'sti_AdvK : AdvK ;
+fun va'ista'ma'to'n_NK : NK ;
+fun va'ista'a'_VK : VK ;
+fun va'isto'_NK : NK ;
+fun va'ite_NK : NK ;
+fun va'itella'_VK : VK ;
+fun va'ittelija'_NK : NK ;
+fun va'ittely_NK : NK ;
+--? fun va'itta'ja'iset_NK : NK ;
+fun va'itta'ma'_NK : NK ;
+fun va'itta'a'_VK : VK ;
+fun va'ito's_NK : NK ;
+fun va'ive_NK : NK ;
+fun va'kevyinen_NK : NK ;
+fun va'kevyys_NK : NK ;
+fun va'keva'_AK : AK ;
+--+ fun va'keva'sti_AdvK : AdvK ;
+fun va'kevo'ida'_VK : VK ;
+fun va'kevo'inti_NK : NK ;
+fun va'kevo'ite_NK : NK ;
+fun va'kevo'itta'a'_VK : VK ;
+fun va'kevo'itya'_VK : VK ;
+fun va'ki_NK : NK ;
+fun va'kinen_NK : NK ;
+fun va'kina'inen_AK : AK ;
+--+ fun va'kina'isesti_AdvK : AdvK ;
+fun va'kina'isyys_NK : NK ;
+fun va'kisella'_AdvK : AdvK ;
+fun va'kisin_AdvK : AdvK ;
+fun va'kisinmakaaminen_NK : NK ;
+fun va'kisten_AdvK : AdvK ;
+fun va'kivalloin_AdvK : AdvK ;
+--+ fun va'kivaltaisesti_AdvK : AdvK ;
+fun va'kka'ra'_NK : NK ;
+fun va'ka'_NK : NK ;
+fun va'ka'nen_NK : NK ;
+fun va'ka'sellinen_NK : NK ;
+fun va'li_NK : NK ;
+fun va'liaika_NK : NK ;
+--+ fun va'liaikaisesti_AdvK : AdvK ;
+fun va'liin_AdvK : AdvK ;
+fun va'like_NK : NK ;
+fun va'likko'_NK : NK ;
+fun va'likohta_NK : NK ;
+fun va'likoko_NK : NK ;
+fun va'lilaskuton_NK : NK ;
+fun va'lille_AdvK : AdvK ;
+fun va'lillinen_AK : AK ;
+--+ fun va'lillisesti_AdvK : AdvK ;
+fun va'lillisyys_NK : NK ;
+fun va'lilla'_AdvK : AdvK ;
+fun va'lilta'_AdvK : AdvK ;
+fun va'limailla_AdvK : AdvK ;
+fun va'limaille_AdvK : AdvK ;
+fun va'limailta_AdvK : AdvK ;
+fun va'line_NK : NK ;
+fun va'lineellinen_NK : NK ;
+fun va'lineellistya'_VK : VK ;
+fun va'lineellista'a'_VK : VK ;
+fun va'lineista'a'_VK : VK ;
+fun va'lineisto'_NK : NK ;
+fun va'linen_NK : NK ;
+fun va'linen_NK : NK ;
+fun va'linpita'ma'tto'myys_NK : NK ;
+fun va'linpita'ma'tto'ma'sti_AdvK : AdvK ;
+fun va'lissa'_AdvK : AdvK ;
+fun va'lista'_AdvK : AdvK ;
+fun va'litse_AdvK : AdvK ;
+fun va'litteinen_NK : NK ;
+fun va'littya'_VK : VK ;
+fun va'litta'ja'_NK : NK ;
+fun va'litta'a'_VK : VK ;
+fun va'litto'myys_NK : NK ;
+fun va'litto'ma'sti_AdvK : AdvK ;
+fun va'lityksinen_NK : NK ;
+fun va'litys_NK : NK ;
+fun va'lito'n_NK : NK ;
+fun va'ljennys_NK : NK ;
+fun va'ljentya'_VK : VK ;
+fun va'ljenta'a'_VK : VK ;
+fun va'ljeta'_VK : VK ;
+fun va'ljyys_NK : NK ;
+fun va'lja'_AK : AK ;
+fun va'lja'htya'_VK : VK ;
+fun va'lja'hta'a'_VK : VK ;
+fun va'lja'lti_AdvK : AdvK ;
+--+ fun va'lja'sti_AdvK : AdvK ;
+fun va'lke_NK : NK ;
+fun va'lkehtia'_VK : VK ;
+fun va'lkkeinen_NK : NK ;
+fun va'lkky_NK : NK ;
+fun va'lkkya'_VK : VK ;
+fun va'lkka'_NK : NK ;
+fun va'lkka'ri_NK : NK ;
+fun va'lkynta'_NK : NK ;
+fun va'lkytta'a'_VK : VK ;
+fun va'lka'hdella'_VK : VK ;
+fun va'lka'hdys_NK : NK ;
+fun va'lka'hta'a'_VK : VK ;
+--? fun va'llyt_NK : NK ;
+fun va'lppa'_NK : NK ;
+fun va'lppa'ys_NK : NK ;
+fun va'lpa'ta'_VK : VK ;
+fun va'lska'ri_NK : NK ;
+fun va'ltella'_VK : VK ;
+fun va'lttya'_VK : VK ;
+fun va'ltta'ma'tta'_AdvK : AdvK ;
+fun va'ltta'ma'tto'myys_NK : NK ;
+fun va'ltta'ma'tto'ma'sti_AdvK : AdvK ;
+fun va'ltta'ma'to'n_NK : NK ;
+fun va'ltta'va'_NK : NK ;
+fun va'ltta'a'_VK : VK ;
+fun va'ltto'_NK : NK ;
+fun va'lys_NK : NK ;
+fun va'la'hdella'_VK : VK ;
+fun va'la'hdyksellinen_NK : NK ;
+fun va'la'hdyksitta'in_AdvK : AdvK ;
+fun va'la'hdys_NK : NK ;
+fun va'la'hdytta'a'_VK : VK ;
+fun va'la'htely_NK : NK ;
+fun va'la'hta'a'_VK : VK ;
+fun va'la'yksellinen_NK : NK ;
+fun va'la'yksitta'in_AdvK : AdvK ;
+fun va'la'ys_NK : NK ;
+fun va'la'ytella'_VK : VK ;
+fun va'la'ytta'a'_VK : VK ;
+fun va'nga'lla'_AdvK : AdvK ;
+fun va'nga'ta'_VK : VK ;
+fun va'nrikki_NK : NK ;
+fun va'pa'tta'a'_VK : VK ;
+fun va'pa'tys_NK : NK ;
+fun va're_NK : NK ;
+fun va'rehtia'_VK : VK ;
+fun va'reilla'_VK : VK ;
+fun va'ri_NK : NK ;
+fun va'rikkyys_NK : NK ;
+--+ fun va'rikka'a'sti_AdvK : AdvK ;
+--+ fun va'rikylla'isesti_AdvK : AdvK ;
+fun va'rika's_AK : AK ;
+fun va'rillinen_NK : NK ;
+fun va'rillisyys_NK : NK ;
+fun va'rinen_NK : NK ;
+fun va'rina'_NK : NK ;
+fun va'ristys_NK : NK ;
+fun va'rista'_VK : VK ;
+fun va'rista'a'_VK : VK ;
+fun va'risytta'a'_VK : VK ;
+fun va'risyys_NK : NK ;
+fun va'ritteinen_NK : NK ;
+fun va'rittya'_VK : VK ;
+fun va'ritta'a'_VK : VK ;
+fun va'ritto'myys_NK : NK ;
+fun va'ritto'ma'sti_AdvK : AdvK ;
+fun va'rityksinen_NK : NK ;
+fun va'ritys_NK : NK ;
+fun va'rito'n_NK : NK ;
+fun va'ria'pa'a'sta'va'_NK : NK ;
+fun va'rjya'_VK : VK ;
+fun va'rja'ri_NK : NK ;
+fun va'rja'ta'_VK : VK ;
+fun va'rja'ys_NK : NK ;
+fun va'rja'ytta'a'_VK : VK ;
+fun va'rja'ytyma'to'n_NK : NK ;
+fun va'rja'ytya'_VK : VK ;
+fun va'rja'a'ja'_NK : NK ;
+fun va'rja'a'ma'to'n_NK : NK ;
+fun va'rja'a'mo'_NK : NK ;
+fun va'rja'a'ntya'_VK : VK ;
+fun va'rjo'tella'_VK : VK ;
+fun va'rjo'tta'a'_VK : VK ;
+fun va'rkki_NK : NK ;
+fun va'rkka'ys_NK : NK ;
+fun va'rka'ta'_VK : VK ;
+fun va'rssy_NK : NK ;
+fun va'rttina'_NK : NK ;
+fun va'rve_NK : NK ;
+fun va'rva'ri_NK : NK ;
+fun va'rva'ta'_VK : VK ;
+fun va'rva'ys_NK : NK ;
+fun va'rva'ytya'_VK : VK ;
+fun va'rva'a'ja'_NK : NK ;
+fun va'ra'hdella'_VK : VK ;
+fun va'ra'hdys_NK : NK ;
+fun va'ra'hdytta'a'_VK : VK ;
+fun va'ra'htely_NK : NK ;
+fun va'ra'hta'ma'to'n_NK : NK ;
+fun va'ra'hta'a'_VK : VK ;
+fun va'ra'ytta'a'_VK : VK ;
+fun va'sky_NK : NK ;
+fun va'skyna'_NK : NK ;
+fun va'stinki_NK : NK ;
+fun va'sta'ra'kki_NK : NK ;
+fun va'sy_NK : NK ;
+fun va'syksiin_AdvK : AdvK ;
+fun va'syksissa'_AdvK : AdvK ;
+fun va'symys_NK : NK ;
+fun va'syma'tto'myys_NK : NK ;
+fun va'syma'tto'ma'sti_AdvK : AdvK ;
+fun va'syma'to'n_NK : NK ;
+--+ fun va'syneesti_AdvK : AdvK ;
+fun va'synyt_AK : AK ;
+fun va'sytta'a'_VK : VK ;
+fun va'sytys_NK : NK ;
+fun va'sya'_VK : VK ;
+fun va'sa'hdys_NK : NK ;
+fun va'sa'hta'a'_VK : VK ;
+fun va'sa'ta'_VK : VK ;
+fun va'sa'ys_NK : NK ;
+fun va'tys_NK : NK ;
+fun va'tystella'_VK : VK ;
+fun va'vy_NK : NK ;
+fun va'yla'_NK : NK ;
+fun va'yla'sto'_NK : NK ;
+fun va'a'ja'a'ma'tta'_AdvK : AdvK ;
+fun va'a'ja'a'ma'tto'myys_NK : NK ;
+fun va'a'ja'a'ma'tto'ma'sti_AdvK : AdvK ;
+fun va'a'ja'a'ma'to'n_NK : NK ;
+fun va'a'nne_NK : NK ;
+fun va'a'nnella'_VK : VK ;
+fun va'a'nnin_NK : NK ;
+fun va'a'nnyksiin_AdvK : AdvK ;
+fun va'a'nnyksissa'_AdvK : AdvK ;
+fun va'a'nno's_NK : NK ;
+fun va'a'ntelehtia'_VK : VK ;
+fun va'a'ntely_NK : NK ;
+fun va'a'ntyilla'_VK : VK ;
+fun va'a'ntyma'_NK : NK ;
+fun va'a'ntya'_VK : VK ;
+fun va'a'nta'ja'_NK : NK ;
+fun va'a'nta'ytya'_VK : VK ;
+fun va'a'nta'a'_VK : VK ;
+fun va'a'nto'_NK : NK ;
+fun va'a'peli_NK : NK ;
+fun va'a'rennys_NK : NK ;
+fun va'a'renno's_NK : NK ;
+fun va'a'renta'ja'_NK : NK ;
+fun va'a'renta'ma'to'n_NK : NK ;
+fun va'a'renta'a'_VK : VK ;
+fun va'a'rin_AdvK : AdvK ;
+fun va'a'rin_pa'in_AdvK : AdvK ;
+fun va'a'ristelema'to'n_NK : NK ;
+fun va'a'ristella'_VK : VK ;
+fun va'a'ristely_NK : NK ;
+fun va'a'ristyma'_NK : NK ;
+fun va'a'ristys_NK : NK ;
+fun va'a'ristya'_VK : VK ;
+fun va'a'rista'a'_VK : VK ;
+fun va'a'rti_NK : NK ;
+fun va'a'rtti_NK : NK ;
+fun va'a'ryys_NK : NK ;
+fun va'a'ra'_NK : NK ;
+--+ fun va'a'ra'mielisesti_AdvK : AdvK ;
+fun ydin_NK : NK ;
+fun ydinkohta_NK : NK ;
+fun yhdeksikko'_NK : NK ;
+fun yhdeksisen_AdvK : AdvK ;
+fun yhdeksisenkymmenta'_AdvK : AdvK ;
+fun yhdeksa'inen_NK : NK ;
+fun yhdeksa'n_NK : NK ;
+fun yhdeksa'nnes_NK : NK ;
+fun yhdeksa's_NK : NK ;
+fun yhdelma'_NK : NK ;
+fun yhdenlainen_NK : NK ;
+fun yhdenmukaistaa_VK : VK ;
+fun yhdenmukaistua_VK : VK ;
+fun yhdensuuntaistaa_VK : VK ;
+fun yhdensuuntaistua_VK : VK ;
+fun yhdensuuntaistus_NK : NK ;
+fun yhdentya'_VK : VK ;
+fun yhdenta'a'_VK : VK ;
+fun yhdes_NK : NK ;
+fun yhdessa'_AdvK : AdvK ;
+fun yhdesti_AdvK : AdvK ;
+fun yhdeta'_VK : VK ;
+fun yhdiste_NK : NK ;
+fun yhdistella'_VK : VK ;
+fun yhdistelma'_NK : NK ;
+fun yhdistely_NK : NK ;
+fun yhdistetty_NK : NK ;
+fun yhdistyma'_NK : NK ;
+fun yhdistys_NK : NK ;
+fun yhdistya'_VK : VK ;
+fun yhdista'ja'_NK : NK ;
+fun yhdista'a'_VK : VK ;
+fun yhdynta'_NK : NK ;
+fun yhdysvaltalainen_NK : NK ;
+fun yhdytta'a'_VK : VK ;
+fun yhtaikaa_AdvK : AdvK ;
+--+ fun yhtaikaisesti_AdvK : AdvK ;
+fun yhteen_AdvK : AdvK ;
+fun yhteenkuuluvaisuus_NK : NK ;
+fun yhteenlaskettu_NK : NK ;
+fun yhteensa'_AdvK : AdvK ;
+fun yhteinen_AK : AK ;
+fun yhteisesiintyminen_NK : NK ;
+--+ fun yhteisesti_AdvK : AdvK ;
+--+ fun yhteiskunnallisesti_AdvK : AdvK ;
+fun yhteiskunnallisuus_NK : NK ;
+fun yhteismitaton_NK : NK ;
+fun yhteismitattomuus_NK : NK ;
+fun yhteistoimivuus_NK : NK ;
+fun yhteistuumin_AdvK : AdvK ;
+fun yhteisvastuisesti_AdvK : AdvK ;
+fun yhteisvoimin_AdvK : AdvK ;
+fun yhteisyys_NK : NK ;
+fun yhteiso'_NK : NK ;
+fun yhteiso'asuminen_NK : NK ;
+fun yhteiso'llinen_NK : NK ;
+fun yhtenevyys_NK : NK ;
+fun yhteneva'_NK : NK ;
+fun yhtena'inen_AK : AK ;
+--+ fun yhtena'isesti_AdvK : AdvK ;
+fun yhtena'istytta'a'_VK : VK ;
+fun yhtena'istya'_VK : VK ;
+fun yhtena'ista'a'_VK : VK ;
+fun yhtena'isyys_NK : NK ;
+fun yhtena'a'n_AdvK : AdvK ;
+fun yhteys_NK : NK ;
+fun yhteytta'ja'_NK : NK ;
+fun yhteytta'a'_VK : VK ;
+fun yhteytys_NK : NK ;
+fun yhtika's_AdvK : AdvK ;
+fun yhtio'_NK : NK ;
+fun yhtio'itta'a'_VK : VK ;
+fun yhtye_NK : NK ;
+fun yhtyma'_NK : NK ;
+fun yhtyma'kohta_NK : NK ;
+fun yhtya'_VK : VK ;
+fun yhta'_AdvK : AdvK ;
+fun yhta'_aikaa_AdvK : AdvK ;
+--+ fun yhta'aikaisesti_AdvK : AdvK ;
+--+ fun yhta'jaksoisesti_AdvK : AdvK ;
+fun yhta'jaksoisuus_NK : NK ;
+fun yhta'_kaikki_AdvK : AdvK ;
+fun yhta'kkinen_AK : AK ;
+--+ fun yhta'kkisesti_AdvK : AdvK ;
+fun yhta'kkisyys_NK : NK ;
+fun yhta'_kuin_AdvK : AdvK ;
+fun yhta'_lailla_AdvK : AdvK ;
+fun yhta'la'inen_AK : AK ;
+--+ fun yhta'la'isesti_AdvK : AdvK ;
+fun yhta'la'istya'_VK : VK ;
+fun yhta'la'ista'a'_VK : VK ;
+fun yhta'la'isyys_NK : NK ;
+fun yhta'lo'_NK : NK ;
+fun yhta'_mittaa_AdvK : AdvK ;
+--+ fun yhta'mittaisesti_AdvK : AdvK ;
+fun yhta'mittaisuus_NK : NK ;
+fun yhta'pita'va'sti_AdvK : AdvK ;
+fun yhta'_pa'a'ta'_AdvK : AdvK ;
+fun yhta'a'lle_AdvK : AdvK ;
+fun yhta'a'lla'_AdvK : AdvK ;
+fun yhta'a'lta'_AdvK : AdvK ;
+fun yhta'a'n_AdvK : AdvK ;
+fun yhta'a'nne_AdvK : AdvK ;
+fun yha'_AdvK : AdvK ;
+fun yha'ti_AdvK : AdvK ;
+fun ykko'nen_NK : NK ;
+fun yks_AdvK : AdvK ;
+fun ykseys_NK : NK ;
+fun yksi_NK : NK ;
+fun yksi_ilmeinen_NK : NK ;
+fun yksiin_AdvK : AdvK ;
+fun yksijumalaisuus_NK : NK ;
+fun yksikko'_NK : NK ;
+fun yksikko'inen_NK : NK ;
+fun yksikotinen_NK : NK ;
+fun yksikotisuus_NK : NK ;
+fun yksikseen_AdvK : AdvK ;
+fun yksiko'itta'in_AdvK : AdvK ;
+fun yksiko'itta'a'_VK : VK ;
+fun yksiko'llinen_NK : NK ;
+fun yksilappeinen_NK : NK ;
+fun yksilo'_NK : NK ;
+fun yksilo'ida'_VK : VK ;
+fun yksilo'inti_NK : NK ;
+fun yksilo'itta'in_AdvK : AdvK ;
+fun yksilo'itta'inen_NK : NK ;
+fun yksilo'itya'_VK : VK ;
+--+ fun yksilo'kohtaisesti_AdvK : AdvK ;
+fun yksilo'llinen_AK : AK ;
+--+ fun yksilo'llisesti_AdvK : AdvK ;
+fun yksilo'llistya'_VK : VK ;
+fun yksilo'llista'a'_VK : VK ;
+fun yksilo'llisyys_NK : NK ;
+fun yksilo'ys_NK : NK ;
+--+ fun yksimielisesti_AdvK : AdvK ;
+fun yksin_AdvK : AdvK ;
+fun yksineuvoisuus_NK : NK ;
+fun yksinhuoltajuus_NK : NK ;
+--+ fun yksinkertaisesti_AdvK : AdvK ;
+fun yksinkertaisuus_NK : NK ;
+fun yksinomaan_AdvK : AdvK ;
+--+ fun yksinomaisesti_AdvK : AdvK ;
+fun yksin_tein_AdvK : AdvK ;
+--+ fun yksinvaltaisesti_AdvK : AdvK ;
+--+ fun yksinvaltiaasti_AdvK : AdvK ;
+fun yksina'inen_NK : NK ;
+fun yksina'istya'_VK : VK ;
+fun yksina'isyys_NK : NK ;
+fun yksina'a'n_AdvK : AdvK ;
+--+ fun yksioikoisesti_AdvK : AdvK ;
+fun yksioikoisuus_NK : NK ;
+--+ fun yksipuolisesti_AdvK : AdvK ;
+fun yksipuolistaa_VK : VK ;
+fun yksipuolistua_VK : VK ;
+fun yksipuolisuus_NK : NK ;
+--+ fun yksiselitteisesti_AdvK : AdvK ;
+fun yksiselitteisyys_NK : NK ;
+--+ fun yksisilma'isesti_AdvK : AdvK ;
+fun yksissa'_AdvK : AdvK ;
+fun yksista'a'n_AdvK : AdvK ;
+fun yksisuuntaistaa_VK : VK ;
+fun yksitellen_AdvK : AdvK ;
+fun yksitoikkoinen_AK : AK ;
+--+ fun yksitoikkoisesti_AdvK : AdvK ;
+fun yksitoikkoisuus_NK : NK ;
+fun yksitoistikko_NK : NK ;
+fun yksitta'in_AdvK : AdvK ;
+fun yksitta'inen_AK : AK ;
+--+ fun yksitta'isesti_AdvK : AdvK ;
+fun yksitta'ispakattu_NK : NK ;
+fun yksitta'isyys_NK : NK ;
+--+ fun yksituumaisesti_AdvK : AdvK ;
+fun yksituumaisuus_NK : NK ;
+fun yksityinen_AK : AK ;
+--+ fun yksityisesti_AdvK : AdvK ;
+fun yksityiskohta_NK : NK ;
+--+ fun yksityiskohtaisesti_AdvK : AdvK ;
+fun yksityistya'_VK : VK ;
+fun yksityista'a'_VK : VK ;
+fun yksityisyys_NK : NK ;
+fun yksivaimoinen_NK : NK ;
+fun yksivaimoisuus_NK : NK ;
+--+ fun yksivakaisesti_AdvK : AdvK ;
+fun yksivakaisuus_NK : NK ;
+--+ fun yksiviivaisesti_AdvK : AdvK ;
+fun yksiymma'rteinen_NK : NK ;
+fun yksio'_NK : NK ;
+fun yleensa'_AdvK : AdvK ;
+fun yleinen_AK : AK ;
+fun yleisaika_NK : NK ;
+--+ fun yleisesti_AdvK : AdvK ;
+--+ fun yleismaailmallisesti_AdvK : AdvK ;
+--+ fun yleispa'teva'sti_AdvK : AdvK ;
+fun yleissivista'va'_NK : NK ;
+fun yleistajuistaa_VK : VK ;
+fun yleistys_NK : NK ;
+fun yleistya'_VK : VK ;
+fun yleista'a'_VK : VK ;
+fun yleisyys_NK : NK ;
+fun yleiso'_NK : NK ;
+fun yleiso'esiintyminen_NK : NK ;
+fun ylellinen_AK : AK ;
+--+ fun ylellisesti_AdvK : AdvK ;
+fun ylellistya'_VK : VK ;
+fun ylellisyys_NK : NK ;
+fun ylemmyys_NK : NK ;
+fun ylemma'_AdvK : AdvK ;
+fun ylemma'ksi_AdvK : AdvK ;
+fun ylemma's_AdvK : AdvK ;
+fun ylempi_NK : NK ;
+fun ylempa'na'_AdvK : AdvK ;
+fun ylempa'a'_AdvK : AdvK ;
+fun ylen_AdvK : AdvK ;
+fun ylenannattaa_VK : VK ;
+fun ylenkatseellinen_NK : NK ;
+fun ylenkatseellisesti_AdvK : AdvK ;
+fun ylenkatseellisuus_NK : NK ;
+fun ylen_ma'a'rin_AdvK : AdvK ;
+fun ylennys_NK : NK ;
+fun ylenpalttinen_AK : AK ;
+--+ fun ylenpalttisesti_AdvK : AdvK ;
+fun ylenpalttisuus_NK : NK ;
+fun ylentya'_VK : VK ;
+fun ylenta'a'_VK : VK ;
+fun ylettyville_AdvK : AdvK ;
+fun ylettyvilla'_AdvK : AdvK ;
+fun ylettyvilta'_AdvK : AdvK ;
+fun ylettya'_VK : VK ;
+fun yletta'a'_VK : VK ;
+fun yletto'myys_NK : NK ;
+fun yletto'ma'sti_AdvK : AdvK ;
+fun yleta'_VK : VK ;
+fun yleto'n_NK : NK ;
+fun ylevyys_NK : NK ;
+fun yleva'_NK : NK ;
+fun ylevo'ida'_VK : VK ;
+fun ylevo'itta'a'_VK : VK ;
+fun ylevo'itys_NK : NK ;
+fun ylevo'itya'_VK : VK ;
+fun ylha'inen_AK : AK ;
+--+ fun ylha'isesti_AdvK : AdvK ;
+fun ylha'isyys_NK : NK ;
+fun ylha'iso'_NK : NK ;
+fun ylha'a'lle_AdvK : AdvK ;
+fun ylha'a'lla'_AdvK : AdvK ;
+fun ylha'a'lta'_AdvK : AdvK ;
+fun yli_AdvK : AdvK ;
+fun yliaika_NK : NK ;
+fun yliammuttu_NK : NK ;
+fun yliampuva_NK : NK ;
+fun yliedustettu_NK : NK ;
+fun ylihuolehtiva_NK : NK ;
+fun yli_ika'istya'_VK : VK ;
+fun ylija'a'ma'inen_NK : NK ;
+fun ylikansoitettu_NK : NK ;
+fun ylikansoitus_NK : NK ;
+fun ylikiihottunut_NK : NK ;
+fun ylikoulutettu_NK : NK ;
+fun ylikukkinut_NK : NK ;
+fun ylika'yma'to'n_NK : NK ;
+--+ fun ylimaallisesti_AdvK : AdvK ;
+fun ylimainostettu_NK : NK ;
+fun ylimalkaan_AdvK : AdvK ;
+fun ylimalkainen_AK : AK ;
+--+ fun ylimalkaisesti_AdvK : AdvK ;
+fun ylimalkaisuus_NK : NK ;
+fun ylimenoaika_NK : NK ;
+--+ fun ylimielisesti_AdvK : AdvK ;
+fun ylimina'_NK : NK ;
+fun ylimmilleen_AdvK : AdvK ;
+fun ylimmilla'a'n_AdvK : AdvK ;
+fun ylimma'_AdvK : AdvK ;
+fun ylimma'inen_NK : NK ;
+fun ylimma'ksi_AdvK : AdvK ;
+fun ylimma's_AdvK : AdvK ;
+fun ylimpa'na'_AdvK : AdvK ;
+--+ fun ylimuistoisesti_AdvK : AdvK ;
+fun ylimyksellinen_AK : AK ;
+--+ fun ylimyksellisesti_AdvK : AdvK ;
+fun ylimyksellisyys_NK : NK ;
+fun ylimys_NK : NK ;
+fun ylimysto'_NK : NK ;
+fun ylin_NK : NK ;
+fun ylinen_NK : NK ;
+fun yliohjautuva_NK : NK ;
+fun yliolkainen_AK : AK ;
+--+ fun yliolkaisesti_AdvK : AdvK ;
+fun yliolkaisuus_NK : NK ;
+fun yliopistollinen_NK : NK ;
+fun ylioppiminen_NK : NK ;
+fun ylipursuava_NK : NK ;
+fun ylipursuva_NK : NK ;
+fun ylipa'a'nsa'_AdvK : AdvK ;
+fun ylipa'a'ta'a'n_AdvK : AdvK ;
+fun ylirasittunut_NK : NK ;
+fun ylistella'_VK : VK ;
+fun ylistys_NK : NK ;
+fun ylista'a'_VK : VK ;
+fun ylisummaan_AdvK : AdvK ;
+fun ylite_NK : NK ;
+fun ylitse_AdvK : AdvK ;
+fun ylitsevuotava_NK : NK ;
+fun ylittya'_VK : VK ;
+fun ylitta'ja'_NK : NK ;
+fun ylitta'ma'to'n_NK : NK ;
+fun ylitta'a'_VK : VK ;
+fun ylitulvimissuoja_NK : NK ;
+fun ylitys_NK : NK ;
+--+ fun ylivoimaisesti_AdvK : AdvK ;
+fun ylio'_NK : NK ;
+fun ylka'_NK : NK ;
+fun ylle_AdvK : AdvK ;
+fun yllin_kyllin_AdvK : AdvK ;
+fun yllyke_NK : NK ;
+fun yllytin_NK : NK ;
+fun yllytta'ja'_NK : NK ;
+fun yllytta'a'_VK : VK ;
+fun yllytys_NK : NK ;
+fun ylla'_AdvK : AdvK ;
+fun ylla'kko'_NK : NK ;
+fun ylla'ttya'_VK : VK ;
+fun ylla'tta'ja'_NK : NK ;
+fun ylla'tta'vyys_NK : NK ;
+fun ylla'tta'va'_AK : AK ;
+--+ fun ylla'tta'va'sti_AdvK : AdvK ;
+fun ylla'tta'a'_VK : VK ;
+fun ylla'tykseka's_NK : NK ;
+fun ylla'tyksellinen_AK : AK ;
+--+ fun ylla'tyksellisesti_AdvK : AdvK ;
+fun ylla'tyksellisyys_NK : NK ;
+fun ylla'tykseto'n_NK : NK ;
+fun ylla'tys_NK : NK ;
+fun ylpeilla'_VK : VK ;
+fun ylpeily_NK : NK ;
+fun ylpeys_NK : NK ;
+fun ylpea'_AK : AK ;
+--+ fun ylpea'sti_AdvK : AdvK ;
+fun ylpistya'_VK : VK ;
+fun ylpista'a'_VK : VK ;
+--+ fun yltio'pa'isesti_AdvK : AdvK ;
+fun yltio'pa'isyys_NK : NK ;
+fun yltya'_VK : VK ;
+fun ylta'_AdvK : AdvK ;
+--+ fun ylta'kylla'isesti_AdvK : AdvK ;
+fun ylta'_pa'a'lta'_AdvK : AdvK ;
+fun ylta'a'_VK : VK ;
+fun ylva's_AK : AK ;
+fun ylva'stelija'_NK : NK ;
+fun ylva'stella'_VK : VK ;
+fun ylva'stely_NK : NK ;
+fun ylva'ys_NK : NK ;
+--+ fun ylva'a'sti_AdvK : AdvK ;
+fun yla'ika'raja_NK : NK ;
+fun yla'kantissa_AdvK : AdvK ;
+fun yla'kanttiin_AdvK : AdvK ;
+fun yla'nko'_NK : NK ;
+fun yla'nne_NK : NK ;
+fun yla'raja_NK : NK ;
+fun yla'va'_NK : NK ;
+fun ylo's_AdvK : AdvK ;
+fun ylo'salaisin_AdvK : AdvK ;
+fun ylo'snouseminen_NK : NK ;
+fun ylo'snousemus_NK : NK ;
+fun ylo'sotettu_NK : NK ;
+fun ylo'ssuin_AdvK : AdvK ;
+fun ymmyrka'inen_NK : NK ;
+fun ymma'lle_AdvK : AdvK ;
+fun ymma'lleen_AdvK : AdvK ;
+fun ymma'lla'_AdvK : AdvK ;
+fun ymma'lla'a'n_AdvK : AdvK ;
+fun ymma'rretta'vyys_NK : NK ;
+fun ymma'rretta'va'_AK : AK ;
+--+ fun ymma'rretta'va'sti_AdvK : AdvK ;
+fun ymma'rryksellinen_NK : NK ;
+fun ymma'rrys_NK : NK ;
+fun ymma'rteinen_NK : NK ;
+fun ymma'rteisyys_NK : NK ;
+fun ymma'rta'mys_NK : NK ;
+fun ymma'rta'ma'tto'myys_NK : NK ;
+fun ymma'rta'ma'tto'ma'sti_AdvK : AdvK ;
+fun ymma'rta'ma'to'n_NK : NK ;
+fun ymma'rta'va'_AK : AK ;
+fun ymma'rta'va'inen_AK : AK ;
+--+ fun ymma'rta'va'isesti_AdvK : AdvK ;
+--+ fun ymma'rta'va'sti_AdvK : AdvK ;
+fun ymma'rta'a'_VK : VK ;
+fun ymppa'ys_NK : NK ;
+fun ympyria'inen_NK : NK ;
+fun ympyra'_NK : NK ;
+fun ympyro'ida'_VK : VK ;
+fun ympyro'inti_NK : NK ;
+fun ympa'ri_AdvK : AdvK ;
+fun ympa'riinsa'_AdvK : AdvK ;
+fun ympa'rille_AdvK : AdvK ;
+fun ympa'rilla'_AdvK : AdvK ;
+fun ympa'rilta'_AdvK : AdvK ;
+fun ympa'risto'_NK : NK ;
+fun ympa'rys_NK : NK ;
+fun ympa'rysta'_NK : NK ;
+fun ympa'ro'ida'_VK : VK ;
+fun ympa'ro'inti_NK : NK ;
+fun ympa'ta'_VK : VK ;
+fun ynina'_NK : NK ;
+fun ynista'_VK : VK ;
+fun ynna'_AdvK : AdvK ;
+fun ynna'ta'_VK : VK ;
+fun ynna'ys_NK : NK ;
+fun ynseys_NK : NK ;
+fun ynsea'_AK : AK ;
+--+ fun ynsea'sti_AdvK : AdvK ;
+fun yna'hdys_NK : NK ;
+fun yna'hta'a'_VK : VK ;
+fun yritella'_VK : VK ;
+fun yritelma'_NK : NK ;
+fun yrittelia'isyys_NK : NK ;
+fun yrittelia's_AK : AK ;
+--+ fun yrittelia'a'sti_AdvK : AdvK ;
+fun yritta'jyys_NK : NK ;
+fun yritta'ja'_NK : NK ;
+fun yritta'ma'_NK : NK ;
+fun yritta'a'_VK : VK ;
+fun yritys_NK : NK ;
+fun yrjo'_NK : NK ;
+fun yrjo'tta'a'_VK : VK ;
+fun yrjo'ta'_VK : VK ;
+fun yrmeys_NK : NK ;
+fun yrmea'_AK : AK ;
+--+ fun yrmea'sti_AdvK : AdvK ;
+fun yrtti_NK : NK ;
+fun ysi_NK : NK ;
+fun yskinta'_NK : NK ;
+fun yskina'_NK : NK ;
+fun yskiskella'_VK : VK ;
+fun yskitta'a'_VK : VK ;
+fun yskia'_VK : VK ;
+fun yska'_NK : NK ;
+fun yska'hdella'_VK : VK ;
+fun yska'hdys_NK : NK ;
+fun yska'hta'a'_VK : VK ;
+fun yska'inen_NK : NK ;
+fun yska'ista'_VK : VK ;
+fun yska'isy_NK : NK ;
+fun ysko's_NK : NK ;
+--? fun ysta'vykset_NK : NK ;
+fun ysta'vystya'_VK : VK ;
+fun ysta'vyys_NK : NK ;
+fun ysta'va'_NK : NK ;
+fun ysta'va'inen_NK : NK ;
+fun ysta'va'llinen_AK : AK ;
+--+ fun ysta'va'llisesti_AdvK : AdvK ;
+--+ fun ysta'va'llismielisesti_AdvK : AdvK ;
+fun ysta'va'llisyys_NK : NK ;
+fun ysta'va'ta'r_NK : NK ;
+fun YT_AdvK : AdvK ;
+fun ytimekkyys_NK : NK ;
+--+ fun ytimekka'a'sti_AdvK : AdvK ;
+fun ytimeka's_AK : AK ;
+fun ytimenna'verta'ja'_NK : NK ;
+fun yty_NK : NK ;
+fun yo'_NK : NK ;
+fun yo'aika_NK : NK ;
+fun yo'baari_NK : NK ;
+fun yo'jalassa_AdvK : AdvK ;
+fun yo'jalkaan_AdvK : AdvK ;
+fun yo'k_AdvK : AdvK ;
+fun yo'kka'ys_NK : NK ;
+fun yo'kko'_NK : NK ;
+fun yo'kko'nen_NK : NK ;
+fun yo'ka'ta'_VK : VK ;
+fun yo'ko'tta'a'_VK : VK ;
+fun yo'lento_NK : NK ;
+fun yo'llinen_NK : NK ;
+fun yo'pukusillaan_AdvK : AdvK ;
+fun yo'pukusilleen_AdvK : AdvK ;
+fun yo'pyja'_NK : NK ;
+fun yo'pya'_VK : VK ;
+fun yo'to'n_NK : NK ;
+fun yo'vilkka_NK : NK ;
+fun yo'vynta'_NK : NK ;
+fun zambo_NK : NK ;
+fun zen_NK : NK ;
+fun zeniitti_NK : NK ;
+fun zeppeliini_NK : NK ;
+fun zirkoni_NK : NK ;
+fun zirkonium_NK : NK ;
+fun zloty_NK : NK ;
+fun zombi_NK : NK ;
+fun zombie_NK : NK ;
+fun zoologi_NK : NK ;
+fun zoologia_NK : NK ;
+fun zoologinen_NK : NK ;
+fun zoomata_VK : VK ;
+fun zoomaus_NK : NK ;
+fun zoomi_NK : NK ;
+fun zoonoosi_NK : NK ;
+fun zucchini_NK : NK ;
+fun zulu_NK : NK ;
+fun _ngstro'm_NK : NK ;
+fun a'es_NK : NK ;
+fun a'estys_NK : NK ;
+fun a'esta'a'_VK : VK ;
+fun a'hellys_NK : NK ;
+fun a'helta'a'_VK : VK ;
+fun a'hina'_NK : NK ;
+fun a'hista'_VK : VK ;
+fun a'hke_NK : NK ;
+fun a'hkina'_NK : NK ;
+fun a'hkia'_VK : VK ;
+fun a'hky_NK : NK ;
+fun a'hkya'_VK : VK ;
+fun a'hka'ista'_VK : VK ;
+fun a'hka'isy_NK : NK ;
+fun a'hka'a'_VK : VK ;
+fun a'ha'kutti_AdvK : AdvK ;
+fun a'ha'piti_AdvK : AdvK ;
+fun a'idillinen_AK : AK ;
+--+ fun a'idillisesti_AdvK : AdvK ;
+fun a'idillisyys_NK : NK ;
+fun a'iditella'_VK : VK ;
+fun a'idito'n_NK : NK ;
+fun a'ija'_NK : NK ;
+fun a'imistella'_VK : VK ;
+fun a'imistya'_VK : VK ;
+fun a'ima'_1_NK : NK ;
+fun a'ima'_2_NK : NK ;
+fun a'iska'_NK : NK ;
+fun a'itelyys_NK : NK ;
+fun a'itela'_AK : AK ;
+--+ fun a'itela'sti_AdvK : AdvK ;
+fun a'iti_NK : NK ;
+fun a'itiys_NK : NK ;
+fun a'itya'_VK : VK ;
+fun a'keilla'_VK : VK ;
+fun a'keissa'a'n_AdvK : AdvK ;
+fun a'keys_NK : NK ;
+fun a'kea'_AK : AK ;
+--+ fun a'kea'sti_AdvK : AdvK ;
+fun a'kikselta'_AdvK : AdvK ;
+fun a'kikselta'a'n_AdvK : AdvK ;
+fun a'killinen_AK : AK ;
+--+ fun a'killisesti_AdvK : AdvK ;
+fun a'killisyys_NK : NK ;
+fun a'kimmin_AdvK : AdvK ;
+fun a'kimmiten_AdvK : AdvK ;
+fun a'kisti_AdvK : AdvK ;
+fun a'kkiarvaamatta_AdvK : AdvK ;
+fun a'kkina'inen_NK : NK ;
+fun a'kkipikaisuus_NK : NK ;
+fun a'kkipa'a'ta'_AdvK : AdvK ;
+fun a'kkiselta'_AdvK : AdvK ;
+fun a'kkiselta'a'n_AdvK : AdvK ;
+fun a'kkia'_AdvK : AdvK ;
+fun a'kseerata_VK : VK ;
+fun a'kseeraus_NK : NK ;
+fun a'ksiisi_NK : NK ;
+fun a'ksy_AK : AK ;
+fun a'ksyilla'_VK : VK ;
+fun a'ksyily_NK : NK ;
+--+ fun a'ksysti_AdvK : AdvK ;
+fun a'ksyys_NK : NK ;
+fun a'ka'illa'_VK : VK ;
+fun a'ka'ily_NK : NK ;
+fun a'ka'inen_AK : AK ;
+--+ fun a'ka'isesti_AdvK : AdvK ;
+fun a'ka'isyys_NK : NK ;
+fun a'ka'myksissa'a'n_AdvK : AdvK ;
+fun a'ka'mys_NK : NK ;
+fun a'ka'mystytta'a'_VK : VK ;
+fun a'ka'mystya'_VK : VK ;
+fun a'ka'ma'_NK : NK ;
+fun a'ka'ta'_VK : VK ;
+fun a'ka'a'ntya'_VK : VK ;
+fun a'lina'_NK : NK ;
+fun a'lista'_VK : VK ;
+fun a'lka'a'_AdvK : AdvK ;
+fun a'lka'a'mme_AdvK : AdvK ;
+fun a'lko'o'n_AdvK : AdvK ;
+fun a'lko'o't_AdvK : AdvK ;
+fun a'lli_NK : NK ;
+fun a'llika'lla'_AdvK : AdvK ;
+fun a'llistella'_VK : VK ;
+fun a'llistely_NK : NK ;
+fun a'llistyksissa'a'n_AdvK : AdvK ;
+fun a'llistys_NK : NK ;
+fun a'llistytta'a'_VK : VK ;
+fun a'llistya'_VK : VK ;
+fun a'llo'tta'a'_VK : VK ;
+fun a'llo'tys_NK : NK ;
+fun a'ly_NK : NK ;
+fun a'lyinen_NK : NK ;
+fun a'lykkyys_NK : NK ;
+fun a'lykko'_NK : NK ;
+fun a'lyka's_NK : NK ;
+fun a'lyllinen_AK : AK ;
+--+ fun a'lyllisesti_AdvK : AdvK ;
+fun a'lyllistya'_VK : VK ;
+fun a'lyllista'a'_VK : VK ;
+fun a'lyllisyys_NK : NK ;
+fun a'lymysto'_NK : NK ;
+--+ fun a'lypera'isesti_AdvK : AdvK ;
+fun a'lytta'a'_VK : VK ;
+fun a'lytto'myys_NK : NK ;
+fun a'lytto'ma'sti_AdvK : AdvK ;
+fun a'lytys_NK : NK ;
+fun a'lyta'_VK : VK ;
+fun a'lyto'n_NK : NK ;
+fun a'la'_AdvK : AdvK ;
+fun a'la'hdys_NK : NK ;
+fun a'la'hta'a'_VK : VK ;
+fun a'la'kka'_NK : NK ;
+fun a'mma'_NK : NK ;
+fun a'mpa'reitta'in_AdvK : AdvK ;
+fun a'mpa'ri_NK : NK ;
+fun a'mpa'rillinen_NK : NK ;
+fun a'myri_NK : NK ;
+fun a'ngelma'_NK : NK ;
+fun a'ngeta'_VK : VK ;
+fun a'nkka'_NK : NK ;
+fun a'nkyra'_NK : NK ;
+fun a'nkytta'ja'_NK : NK ;
+fun a'nkytta'a'_VK : VK ;
+fun a'nkytys_NK : NK ;
+fun a'nka'ta'_VK : VK ;
+fun _O_AdvK : AdvK ;
+fun a'pa're_NK : NK ;
+fun a'pa'rikko'_NK : NK ;
+fun a'pa'ra'_NK : NK ;
+fun a'reissa'a'n_AdvK : AdvK ;
+fun a'reys_NK : NK ;
+fun a'rea'_AK : AK ;
+--+ fun a'rea'sti_AdvK : AdvK ;
+fun a'rhennella'_VK : VK ;
+fun a'rhentely_NK : NK ;
+fun a'rha'kkyys_NK : NK ;
+fun a'rha'kka'_NK : NK ;
+fun a'rha'ka's_NK : NK ;
+fun a'rha'ka'sti_AdvK : AdvK ;
+fun a'rina'_NK : NK ;
+fun a'rista'_VK : VK ;
+fun a'rjy_NK : NK ;
+fun a'rjynta'_NK : NK ;
+fun a'rjya'_VK : VK ;
+fun a'rja'hdys_NK : NK ;
+fun a'rja'hta'a'_VK : VK ;
+fun a'rja'ista'_VK : VK ;
+fun a'rja'isy_NK : NK ;
+fun a'rra'vika_NK : NK ;
+fun a'rsyke_NK : NK ;
+fun a'rsyttya'_VK : VK ;
+fun a'rsytta'a'_VK : VK ;
+fun a'rsytys_NK : NK ;
+fun a'rsyyntya'_VK : VK ;
+fun a'rtyinen_NK : NK ;
+fun a'rtyisyys_NK : NK ;
+fun a'rtyisa'_AK : AK ;
+--+ fun a'rtyisa'sti_AdvK : AdvK ;
+fun a'rtymys_NK : NK ;
+fun a'rtyma'_NK : NK ;
+fun a'rtyneisyys_NK : NK ;
+fun a'rtyvyys_NK : NK ;
+fun a'rtya'_VK : VK ;
+fun a'ra'hdys_NK : NK ;
+fun a'ra'hta'a'_VK : VK ;
+fun a'skeinen_NK : NK ;
+fun a'sken_AdvK : AdvK ;
+fun a'sketta'in_AdvK : AdvK ;
+fun a'sketta'inen_NK : NK ;
+fun a'ssa'_1_NK : NK ;
+fun a'ssa'_2_NK : NK ;
+fun a'veria'isyys_NK : NK ;
+fun a'veria's_NK : NK ;
+fun a'verio'itya'_VK : VK ;
+fun a'yri_NK : NK ;
+fun a'yria'inen_NK : NK ;
+fun a'yra'mo'inen_NK : NK ;
+fun a'yra's_NK : NK ;
+fun a'yskinta'_NK : NK ;
+fun a'yskia'_VK : VK ;
+fun a'yska'ista'_VK : VK ;
+fun a'yska'ri_NK : NK ;
+fun a'yska'ro'ida'_VK : VK ;
+fun a'yska'ro'inti_NK : NK ;
+fun a'a'lio'_NK : NK ;
+fun a'a'lio'ma'inen_AK : AK ;
+--+ fun a'a'lio'ma'isesti_AdvK : AdvK ;
+fun a'a'lio'ma'isyys_NK : NK ;
+fun a'a'neen_AdvK : AdvK ;
+fun a'a'nekkyys_NK : NK ;
+--+ fun a'a'nekka'a'sti_AdvK : AdvK ;
+fun a'a'neka's_AK : AK ;
+fun a'a'nellinen_NK : NK ;
+--+ fun a'a'nenpita'va'sti_AdvK : AdvK ;
+fun a'a'nes_NK : NK ;
+fun a'a'nestys_NK : NK ;
+fun a'a'nesta'ja'_NK : NK ;
+fun a'a'nesta'a'_VK : VK ;
+fun a'a'neti_AdvK : AdvK ;
+fun a'a'netto'myys_NK : NK ;
+fun a'a'netto'ma'sti_AdvK : AdvK ;
+fun a'a'neto'n_NK : NK ;
+fun a'a'ni_NK : NK ;
+fun a'a'ninen_AK : AK ;
+--+ fun a'a'nisesti_AdvK : AdvK ;
+fun a'a'nisyys_NK : NK ;
+fun a'a'nite_NK : NK ;
+fun a'a'nitta'ja'_NK : NK ;
+fun a'a'nitta'mo'_NK : NK ;
+fun a'a'nitta'a'_VK : VK ;
+fun a'a'nitys_NK : NK ;
+fun a'a'nne_NK : NK ;
+fun a'a'nnella'_VK : VK ;
+fun a'a'nna'hdys_NK : NK ;
+fun a'a'nna'hta'a'_VK : VK ;
+fun a'a'nteellinen_NK : NK ;
+fun a'a'ntely_NK : NK ;
+fun a'a'ntio'_NK : NK ;
+fun a'a'ntya'_VK : VK ;
+fun a'a'nta'mys_NK : NK ;
+fun a'a'nta'a'_VK : VK ;
+fun a'a'nto'_NK : NK ;
+fun a'a'nto'inen_NK : NK ;
+fun a'a'reen_AdvK : AdvK ;
+fun a'a'reinen_NK : NK ;
+fun a'a'relle_AdvK : AdvK ;
+fun a'a'rellinen_NK : NK ;
+fun a'a'rellisyys_NK : NK ;
+fun a'a'rella'_AdvK : AdvK ;
+fun a'a'relta'_AdvK : AdvK ;
+fun a'a'ressa'_AdvK : AdvK ;
+fun a'a'resta'_AdvK : AdvK ;
+fun a'a'retto'myys_NK : NK ;
+fun a'a'retto'ma'sti_AdvK : AdvK ;
+fun a'a'reto'n_NK : NK ;
+fun a'a'ri_NK : NK ;
+fun a'a'rimmilleen_AdvK : AdvK ;
+fun a'a'rimmilla'a'n_AdvK : AdvK ;
+fun a'a'rimma'inen_NK : NK ;
+fun a'a'rimma'isyys_NK : NK ;
+fun o'deema_NK : NK ;
+fun o'inen_NK : NK ;
+fun o'isin_AdvK : AdvK ;
+fun o'ky_AdvK : AdvK ;
+fun o'lina'_NK : NK ;
+fun o'lista'_VK : VK ;
+fun o'ljy_NK : NK ;
+fun o'ljyinen_NK : NK ;
+fun o'ljyma'inen_NK : NK ;
+fun o'ljyttya'_VK : VK ;
+fun o'ljyta'_VK : VK ;
+fun o'ljyva'rimaalaus_NK : NK ;
+fun o'ljyyntya'_VK : VK ;
+fun o'rina'_NK : NK ;
+fun o'rista'_VK : VK ;
+fun o'ra'hdys_NK : NK ;
+fun o'ra'hta'a'_VK : VK ;
+fun o'to'kka'_NK : NK ;
+fun o'ykka'ri_NK : NK ;
+fun o'ykka'rima'inen_AK : AK ;
+--+ fun o'ykka'rima'isesti_AdvK : AdvK ;
+fun o'ykka'rima'isyys_NK : NK ;
+fun o'ykka'ro'ida'_VK : VK ;
+fun o'ykka'ro'inti_NK : NK ;
+fun o'yla'tti_NK : NK ;
+}
diff --git a/lib/src/finnish/ExtraFin.gf b/lib/src/finnish/ExtraFin.gf
--- a/lib/src/finnish/ExtraFin.gf
+++ b/lib/src/finnish/ExtraFin.gf
@@ -1,7 +1,7 @@
 --# -path=.:abstract:common:prelude
 
 concrete ExtraFin of ExtraFinAbs = CatFin ** 
-  open ResFin, MorphoFin, Coordination, Prelude, NounFin, StructuralFin in {
+  open ResFin, MorphoFin, Coordination, Prelude, NounFin, StructuralFin, (R = ParamX) in {
 
   lin
     GenNP np = {
@@ -27,7 +27,7 @@
 
     AdvExistNP adv np = 
       mkClause (\_ -> adv.s) np.a (insertObj 
-        (\\_,b,_ => np.s ! NPCase Nom) (predV (verbOlla ** {sc = NPCase Nom ; qp = "ko"}))) ;
+        (\\_,b,_ => np.s ! NPCase Nom) (predV (verbOlla ** {sc = NPCase Nom ; qp = True}))) ;
 
     RelExistNP prep rp np = {
       s = \\t,ant,bo,ag => 
@@ -38,7 +38,7 @@
           np.a 
           (insertObj 
             (\\_,b,_ => np.s ! NPCase Nom) 
-            (predV (verbOlla ** {sc = NPCase Nom ; qp = "ko"}))) ;
+            (predV (verbOlla ** {sc = NPCase Nom ; qp = True}))) ;
       in 
       cl.s ! t ! ant ! bo ! SDecl ;
       c = NPCase Nom
@@ -48,7 +48,7 @@
       mkClause (\_ -> adv.s) np.a (insertObj 
         (\\_,b,_ => np.s ! NPCase Nom) (predV v)) ;
 
-    i_implicPron = mkPronoun [] "minun" "minua" "minuna" "minuun" Sg P1 ;
+--    i_implicPron = mkPronoun [] "minun" "minua" "minuna" "minuun" Sg P1 ;
     whatPart_IP = {
       s = table {
         NPCase Nom | NPAcc => "mitä" ;
@@ -103,4 +103,59 @@
       isPoss = True ;
       isDef = True  --- "minun kolme autoani ovat" ; thus "...on" is missing
       } ;
+
+  lincat 
+    ClPlus, ClPlusObj, ClPlusAdv = ClausePlus ;
+    Part = {s : Bool => Str} ;
+
+  lin 
+    S_SVO part t p clp = 
+      let 
+         cl = clp.s ! t.t ! t.a ! p.p ;
+         pa = part.s ! True ----
+      in
+      {s = t.s ++ p.s ++ cl.subj ++ pa ++ cl.fin ++ cl.inf ++ cl.compl ++ cl.adv ++ cl.ext} ; 
+    S_OSV part t p clp = 
+      let 
+         cl = clp.s ! t.t ! t.a ! p.p ;
+         pa = part.s ! True ----
+      in
+      {s = t.s ++ p.s ++ cl.compl ++ pa ++ cl.subj ++ cl.fin ++ cl.inf ++ cl.adv ++ cl.ext} ; 
+    S_VSO part t p clp = 
+      let 
+         cl = clp.s ! t.t ! t.a ! p.p ;
+         pa = part.s ! cl.qp
+      in
+      {s = t.s ++ p.s ++ cl.fin ++ pa ++ cl.subj ++ cl.inf ++ cl.compl ++ cl.adv ++ cl.ext} ; 
+    S_ASV part t p clp = 
+      let 
+         cl = clp.s ! t.t ! t.a ! p.p ;
+         pa = part.s ! cl.qp
+      in
+      {s = t.s ++ p.s ++ cl.adv ++ pa ++ cl.subj ++ cl.fin ++ cl.inf ++ cl.compl ++ cl.ext} ; 
+
+    PredClPlus np vp = mkClausePlus (subjForm np vp.sc) np.a vp ;
+    PredClPlusFocSubj np vp = insertKinClausePlus 0 (mkClausePlus (subjForm np vp.sc) np.a vp) ;
+    PredClPlusFocVerb np vp = insertKinClausePlus 1 (mkClausePlus (subjForm np vp.sc) np.a vp) ;
+    PredClPlusObj  np vps obj = 
+      insertObjClausePlus 0 False (\\b => appCompl True b vps.c2 obj) (mkClausePlus (subjForm np vps.sc) np.a vps) ;
+    PredClPlusFocObj  np vps obj = 
+      insertObjClausePlus 0 True (\\b => appCompl True b vps.c2 obj) (mkClausePlus (subjForm np vps.sc) np.a vps) ;
+    PredClPlusAdv  np vp  adv = 
+      insertObjClausePlus 1 False (\\_ => adv.s) (mkClausePlus (subjForm np vp.sc) np.a vp) ;
+    PredClPlusFocAdv  np vp  adv = 
+      insertObjClausePlus 1 True (\\_ => adv.s) (mkClausePlus (subjForm np vp.sc) np.a vp) ;
+
+    ClPlusWithObj c = c ;
+    ClPlusWithAdv c = c ;
+
+  noPart     = {s = \\_ => []} ;
+  han_Part   = mkPart "han" "hän" ;
+  pa_Part    = mkPart "pa" "pä" ;
+  pas_Part   = mkPart "pas" "päs" ;
+  ko_Part    = mkPart "ko" "kö" ;
+  kos_Part   = mkPart "kos" "kös" ;
+  kohan_Part = mkPart "kohan" "köhän" ;
+  pahan_Part = mkPart "pahan" "pähän" ;
+
 } 
diff --git a/lib/src/finnish/ExtraFinAbs.gf b/lib/src/finnish/ExtraFinAbs.gf
--- a/lib/src/finnish/ExtraFinAbs.gf
+++ b/lib/src/finnish/ExtraFinAbs.gf
@@ -8,7 +8,7 @@
 
     RelExistNP : Prep -> RP -> NP -> RCl ; -- jossa on jazzia
 
-    i_implicPron : Pron ;                 -- (minä), minut, ...
+--    i_implicPron : Pron ;                 -- (minä), minut, ...
     whatPart_IP : IP ;
 
     PartCN : CN -> NP ;                   -- olutta
@@ -18,5 +18,36 @@
     CompPartAP : AP -> Comp ;             -- kahvi on valmista
 
     ProDropPoss : Pron -> Quant ;         -- vaimoni
+
+  cat
+    ClPlus ;      -- clause with more variation
+    ClPlusObj ;   -- which has a focusable object
+    ClPlusAdv ;   -- which has a focusable adverb
+    Part ;        -- discourse particle
+
+  fun
+    S_SVO  : Part -> Temp -> Pol -> ClPlus     -> S ;  -- mepäs juomme maitoa nyt
+    S_OSV  : Part -> Temp -> Pol -> ClPlusObj  -> S ;  -- maitoapas me juomme nyt
+    S_VSO  : Part -> Temp -> Pol -> ClPlus     -> S ;  -- juommepas me maitoa nyt
+    S_ASV  : Part -> Temp -> Pol -> ClPlusAdv  -> S ;  -- nytpäs me juomme maitoa
+
+--    S_SOV  : Part -> Temp -> Pol -> ClPlus  -> S ;  -- mepäs maitoa juomme
+--    S_OVS  : Part -> Temp -> Pol -> ClPlus  -> S ;  -- maitoapas juomme me
+--    S_VOS  : Part -> Temp -> Pol -> ClPlus  -> S ;  -- juommepas maitoa me
+
+
+    PredClPlus        : NP -> VP            -> ClPlus ;      -- me nukumme
+    PredClPlusFocSubj : NP -> VP            -> ClPlus ;      -- mekin nukumme
+    PredClPlusFocVerb : NP -> VP            -> ClPlus ;      -- me nukummekin
+    PredClPlusObj     : NP -> VPSlash -> NP -> ClPlusObj ;   -- maitoa me juomme
+    PredClPlusFocObj  : NP -> VPSlash -> NP -> ClPlusObj ;   -- maitoakin me juomme
+    PredClPlusAdv     : NP -> VP -> Adv     -> ClPlusAdv ;   -- nyt me nukumme
+    PredClPlusFocAdv  : NP -> VP -> Adv     -> ClPlusAdv ;   -- nytkin me nukumme
+
+    ClPlusWithObj : ClPlusObj -> ClPlus ;   -- to make non-fronted obj focusable
+    ClPlusWithAdv : ClPlusAdv -> ClPlus ;   -- to make non-fronted adv focusable
+
+    noPart, han_Part, pa_Part, pas_Part, ko_Part, kos_Part, 
+      kohan_Part, pahan_Part : Part ; 
 
 }
diff --git a/lib/src/finnish/IdiomFin.gf b/lib/src/finnish/IdiomFin.gf
--- a/lib/src/finnish/IdiomFin.gf
+++ b/lib/src/finnish/IdiomFin.gf
@@ -40,6 +40,7 @@
     GenericCl vp = mkClause noSubj (agrP3 Sg) {
       s = \\_ => vp.s ! VIPass ;
       s2 = vp.s2 ;
+      adv = vp.adv ;
       ext = vp.ext ;
       sc = vp.sc ; 
       qp = vp.qp
@@ -52,6 +53,7 @@
       in {
         s = on.s ;
         s2 = \\b,p,a => inf ++ vp.s2 ! b ! p ! a ;
+        adv = vp.adv ;
         ext = vp.ext ;
         sc = vp.sc ; 
         qp = vp.qp
@@ -68,7 +70,7 @@
     } ;
 
   oper
-    olla = verbOlla ** {sc = NPCase Nom ; qp = "ko"} ;
+    olla = verbOlla ** {sc = NPCase Nom ; qp = True} ;
 
     noSubj : Polarity -> Str = \_ -> [] ;
 }
diff --git a/lib/src/finnish/IrregFin.gf b/lib/src/finnish/IrregFin.gf
new file mode 100644
--- /dev/null
+++ b/lib/src/finnish/IrregFin.gf
@@ -0,0 +1,21 @@
+
+kayda_V = 
+  let kay = Predef.tk 2 s ; kavi = init kay + "vi" in
+      vForms12 s (kay + "n") kay (kay + "vät") (kay + "kää") (kay + "dään")
+        (kavi + "n") kavi (kavi + "si") (kay + "nyt") (kay + "tty")
+        (kay + "nee") ;
+tuntea_V =
+  let tunte = init s ; tunne = weakGrade tunte ; tuns = Predef.tk 2 tunte + "s" in
+      vForms12 s (tunne + "n") (tunte + "e") (tunte + "vat") (tunte + "kaa") (tunne + "taan")
+        (tuns + "in") (tuns + "i") (init tunte + "isi") (tunte + "nut") (tunne + "ttu")
+        (tunte + "nee") ;
+nahda_V
+
+tehda_V
+
+tietaa_V
+
+taitaa_V
+
+siita_V
+
diff --git a/lib/src/finnish/Kotus.gf b/lib/src/finnish/Kotus.gf
new file mode 100644
--- /dev/null
+++ b/lib/src/finnish/Kotus.gf
@@ -0,0 +1,312 @@
+--# -path=.:alltenses
+
+resource Kotus = open MorphoFin, Prelude in {
+
+-- interpretations of paradigms in KOTUS word list, used in DictFin.
+
+oper vowelHarmony = vowHarmony ;
+
+oper
+
+  d01 : Str -> NForms -- 1780 öljy
+    = \s -> dUkko s (s + "n") ;
+  d01A : Str -> NForms -- 166 yökkö
+    = \s -> dUkko s (weakGrade s + "n") ;
+  d02 : Str -> NForms -- 1189 ääntely
+    = \s -> dSilakka s (s + "n") (s + "j" + getHarmony (last s)) ;
+  d03 : Str -> NForms -- 481 ääntiö
+    = \s -> dSilakka s (s + "n") (s + "it" + vowelHarmony s) ;
+  d04A : Str -> NForms -- 273 äpärikkö
+    = \s -> let ws = weakGrade s in 
+      dSilakka s (ws + "n") (ws + "it" + getHarmony (last s)) ;
+  d05 : Str -> NForms -- 3212 öljymaali
+    = \s -> case last s of {
+              "i" => dPaatti s (s + "n") ;
+              _   => dUnix s
+              } ;
+  d05A : Str -> NForms -- 1959 öylätti
+    = \s -> dPaatti s (weakGrade s + "n") ;
+  d06 : Str -> NForms -- 1231 öykkäri
+    = \s -> dTohtori s ;
+  d07 : Str -> NForms -- 81 vuoksi
+    = \s -> dArpi s (init s + "en") ;
+  d07A : Str -> NForms -- 70 väki
+    = \s -> dArpi s (init (weakGrade s) + "en") ;
+  d08 : Str -> NForms -- 99 à la carte
+    = \s -> dNukke s (s + "n") ;
+  d08A : Str -> NForms -- 5 vinaigrette
+    = \s -> dNukke s (weakGrade s + "n") ;
+  d09 : Str -> NForms -- 696 ääriraja
+    = \s -> let a = last s in dSilakka s         
+              (s + "n")
+              (init s + case a of {"a" => "o" ; _ => "ö"} + "j" + a) ;
+  d09A : Str -> NForms -- 1040 ääniraita
+    = \s -> let a = last s in dSilakka s         
+              (weakGrade s + "n")
+              (init s + case a of {"a" => "o" ; _ => "ö"} + "j" + a) ;
+  d10 : Str -> NForms -- 2119 äänittäjä
+    = \s -> dSilakka s (s + "n") (init s + "i" + vowelHarmony (last s)) ;
+  d10A : Str -> NForms -- 284 änkkä
+    = \s -> dSilakka s (weakGrade s + "n") (init s + "i" + vowelHarmony (last s)) ;
+  d11 : Str -> NForms -- 46 ödeema
+    = \s -> dSilakka s (weakGrade s + "n") (init s + "i" + vowelHarmony (last s)) ;
+  d12 : Str -> NForms -- 1125 örinä
+    = \s -> let a = vowelHarmony (last s) in 
+      dSilakka s (s + "n") 
+        (init s + case a of {"a" => "o" ; _ => "ö"} + "it" + a) ;
+  d13 : Str -> NForms -- 157 virtaska
+    = \s -> let a = vowelHarmony (last s) in 
+      dSilakka s (s + "n") 
+        (init s + case a of {"a" => "o" ; _ => "ö"} + "j" + a) ;
+  d14A : Str -> NForms -- 244 ötökkä
+    = \s -> let a = vowelHarmony (last s) ; ws = weakGrade s in 
+      dSilakka s (ws + "n") 
+        (init ws + case a of {"a" => "o" ; _ => "ö"} + "it" + a) ;
+  d15 : Str -> NForms -- 170 äreä
+    = dKorkea ;
+  d16 : Str -> NForms -- 2 kumpikin --?
+    = \s -> let kumpi = Predef.take 5 s ; kin = Predef.drop 5 s in 
+         \\i => (dSuurempi kumpi ! i + kin) ;
+  d16A : Str -> NForms -- 20 ylempi
+    = dSuurempi ;
+  d17 : Str -> NForms -- 38 virkkuu
+    = dPaluu ;
+  d18 : Str -> NForms -- voi, tee, sää
+    = dPuu ;
+  d19 : Str -> NForms -- 6 yö
+    = dSuo  ;
+  d20 : Str -> NForms -- 46 voodoo
+    = dPaluu ;
+  d21 : Str -> NForms -- 22 tax-free --? rosé
+    = dPuu ;
+  d22 : Str -> NForms -- 13 tournedos
+    = \s -> nForms10
+      s (s + "'n") (s + "'ta") (s + "'na") (s + "'hon")
+      (s + "'iden") (s + "'ita") (s + "'ina") (s + "'issa") (s + "'ihin") ;
+  d23 : Str -> NForms -- 9 vuohi
+    = \s -> dArpi s (init s + "en") ;
+  d24 : Str -> NForms -- 20 uni
+    = \s -> dArpi s (init s + "en") ;
+  d25 : Str -> NForms -- 9 tuomi
+    = \s -> dArpi s (init s + "en") ;
+  d26 : Str -> NForms -- 113 ääri
+    = \s -> dArpi s (init s + "en") ;
+  d27 : Str -> NForms -- 23 vuosi
+    = \s -> dArpi s (Predef.tk 2 s + "den") ;
+  d28 : Str -> NForms -- 13 virsi
+    = \s -> dArpi s (Predef.tk 2 s + "ren") ;
+  d28A : Str -> NForms -- 1 jälsi
+    = \s -> dArpi s (Predef.tk 2 s + "len") ;
+  d29 : Str -> NForms -- 1 lapsi
+    = \s -> let lapsi = dArpi s (init s + "en") in 
+       table {2 => Predef.tk 3 s + "ta" ; i => lapsi ! i} ;
+  d30 : Str -> NForms -- 2 veitsi
+    = \s -> let lapsi = dArpi s (init s + "en") in 
+       table {2 => Predef.tk 3 s + "stä" ; i => lapsi ! i} ;
+  d31 : Str -> NForms -- 3 yksi
+    = \s -> let 
+        y = Predef.tk 3 s ;
+        a = vowelHarmony y
+      in nForms10
+        s (y + "hden") (y + "ht" + a) (y + "hten" + a) (y + "hteen")
+        (s + "en") (s + a) (s + "n" + a) (s + "ss" + a) (s + "in") ;
+  d32 : Str -> NForms -- 20 uumen
+    = \s -> dPiennar s (s + "en") ;
+  d32A : Str -> NForms -- 54 ystävätär
+    = \s -> dPiennar s (strongGrade (init s) + last s + "en") ;
+  d33 : Str -> NForms -- 168 väistin
+    = \s -> dLiitin s (init s + "men") ;
+  d33A : Str -> NForms -- 181 yllytin
+    = \s -> dLiitin s (strongGrade (init s) + "men") ;
+  d34 : Str -> NForms -- 1 alaston
+    = \s -> let alastom = init s in 
+      nForms10
+        s (alastom + "an") (s + "ta") (alastom + "ana") (alastom + "aan")
+        (alastom + "ien") (alastom + "ia") (alastom + "ina") (alastom + "issa")
+        (alastom + "iin") ;
+  d34A : Str -> NForms -- 569 ääretön
+    = dOnneton ;
+  d35A : Str -> NForms -- 1 lämmin
+    = \s -> let lämpim = strongGrade (init s) + "m" in
+      nForms10
+        s (lämpim + "än") (s + "tä") (lämpim + "änä") (lämpim + "ään")
+        (lämpim + "ien") (lämpim + "iä") (lämpim + "inä") (lämpim + "issä")
+        (lämpim + "iin") ;
+  d36 : Str -> NForms -- 11 ylin
+    = dSuurin ;
+  d37 : Str -> NForms -- 1 vasen
+    = \s -> let vasem = init s + "m" in 
+      nForms10
+        s (vasem + "man") (s + "ta") (vasem + "pana") (vasem + "paan")
+        (vasem + "pien") (vasem + "pia") (vasem + "pina") (vasem + "missa")
+        (vasem + "piin") ;
+  d38 : Str -> NForms -- 4195 öykkärimäinen
+    = dNainen ;
+  d39 : Str -> NForms -- 2730 örähdys
+    = dJalas ;
+  d40 : Str -> NForms -- 2482 öykkärimäisyys
+    = dLujuus  ;
+  d41 : Str -> NForms -- 127 äyräs
+    = \s -> let is = init s in dRae s (is + last is + "n") ;
+  d41A : Str -> NForms -- 401 öljykangas
+    = \s -> let is = init s in dRae s (strongGrade is + last is + "n") ;
+  d42 : Str -> NForms -- 1 mies
+    = \s -> let mieh = init s + "s" in 
+      nForms10
+        s (mieh + "en") (s + "tä") (mieh + "enä") (mieh + "een")
+        (s + "ten") (mieh + "iä") (mieh + "inä") (mieh + "issä")
+        (mieh + "iin") ;
+  d43 : Str -> NForms -- 11 tiehyt
+    = \s -> dRae s (init s + "en") ;
+  d43A : Str -> NForms -- 1 immyt
+    = \s -> dRae s (strongGrade (init s) + "en") ;
+  d44 : Str -> NForms -- 1 kevät
+    = \s -> let kevä = init s in 
+      nForms10
+        s (kevä + "än") (s + "tä") (kevä + "änä") (kevä + "äseen")
+        (s + "iden") (kevä + "itä") (kevä + "inä") (kevä + "issä")
+        (kevä + "isiin") ;
+  d45 : Str -> NForms -- 23 yhdes
+    = \s -> let yhde = init s ; a = vowelHarmony s in 
+      nForms10
+        s (yhde + "nnen") (yhde + "tt" + a) (yhde + "nten" + a) (yhde + "nteen")
+        (yhde + "nsien") (yhde + "nsi" + a) (yhde + "nsin" + a) (yhde + "nsiss" + a)
+        (yhde + "nsiin") ;
+  d46 : Str -> NForms -- 1 tuhat
+    = \s -> let tuha = init s ; a = vowelHarmony s in 
+      nForms10
+        s (tuha + "nnen") (tuha + "tt" + a) (tuha + "nten" + a) (tuha + "nteen")
+        (tuha + "nsien") (tuha + "nsi" + a) (tuha + "nsin" + a) (tuha + "nsiss" + a)
+        (tuha + "nsiin") ;
+  d47 : Str -> NForms -- 46 ylirasittunut
+    = dOttanut ;
+  d48 : Str -> NForms -- 346 äpäre
+    = \s -> dRae s (s + last s + "n") ;
+  d48A : Str -> NForms -- 481 äänne
+    = \s -> dRae s (strongGrade s + "en") ;
+  d49 : Str -> NForms -- 31 vempele
+    = \s -> case last s of {
+         "e" => dRae s (s + "en") ;
+         _ => dPiennar s (s + "en")
+        } ;
+  d49A : Str -> NForms -- 11 vemmel
+    = \s -> dPiennar s (strongGrade (init s) + "len") ;
+{-
+  d50 : Str -> NForms -- 520 vääräsääri
+    = \s ->  ;
+  d51 : Str -> NForms -- 62 vierasmies
+    = \s ->  ;
+-}
+  c52 : Str -> VForms -- 667 ärjyä
+    = \s -> cHukkua s (init s + "n") ;
+  c52A : Str -> VForms -- 1568 öljyyntyä
+    = \s -> cHukkua s (weakGrade (init s) + "n")  ;
+  c53 : Str -> VForms -- 605 äänestää
+    = \s -> let ott = Predef.tk 2 s in 
+            cOttaa s (init s + "n") (ott + "in") (ott + "i")  ;
+  c53A : Str -> VForms -- 2121 örähtää
+    = \s -> let ota = weakGrade (init s) in
+            cOttaa s (ota + "n") (init ota + "in") (Predef.tk 2 s + "i")  ;
+  c54 : Str -> VForms -- 2 pieksää
+    = \s -> let ott = Predef.tk 2 s in 
+            cOttaa s (init s + "n") (ott + "in") (ott + "i")  ;
+  c54A : Str -> VForms -- 316 ääntää
+    = \s -> let ota = weakGrade (init s) ; o = Predef.tk 2 ota in
+            cOttaa s (ota + "n") (o + "sin") (o + "si")  ;
+  c55A : Str -> VForms -- 7 yltää
+    = c54A  ; --? diff: variation ylti/ylsi
+  c56 : Str -> VForms -- 22 valaa
+    = \s -> let val = Predef.tk 2 s in 
+            cOttaa s (init s + "n") (val + "oin") (val + "oi")  ; -- never ö
+  c56A : Str -> VForms -- 28 virkkaa
+    = \s -> let ota = weakGrade (init s) ; ot = init ota in
+            cOttaa s (ota + "n") (ot + "oin") (ot + "oi")  ;
+  c57A : Str -> VForms -- 3 saartaa
+    = c56A ; --? diff: saartoi/saarsi
+  c58 : Str -> VForms -- 13 suitsea
+    = \s -> cHukkua s (init s + "n") ;
+  c58A : Str -> VForms -- 19 tunkea
+    = \s -> cHukkua s (weakGrade (init s) + "n") ;
+  c59A : Str -> VForms -- 1 tuntea
+    = \s -> let tunte = init s ; tunne = weakGrade tunte ; tuns = Predef.tk 2 tunte + "s" in
+      vForms12 s (tunne + "n") (tunte + "e") (tunte + "vat") (tunte + "kaa") (tunne + "taan")
+        (tuns + "in") (tuns + "i") (init tunte + "isi") (tunte + "nut") (tunne + "ttu")
+        (tunte + "nee") ; -- just one verb
+  c60A : Str -> VForms -- 1 lähteä
+    = c58A ; --? diff lähti/läksi, just one verb
+  c61 : Str -> VForms -- 249 äyskiä
+    = \s -> cHukkua s (init s  + "n") ;
+  c61A : Str -> VForms -- 153 vääntelehtiä
+    = \s -> cHukkua s (weakGrade (init s)  + "n") ;
+  c62 : Str -> VForms -- 684 öykkäröidä
+    = \s -> cJuoda s ;
+  c63 : Str -> VForms -- 3 saada
+    = c62  ;
+  c64 : Str -> VForms -- 8 viedä
+    = c62  ;
+  c65 : Str -> VForms -- 1 käydä
+    = \s -> let kay = Predef.tk 2 s ; kavi = init kay + "vi" in
+      vForms12 s (kay + "n") kay (kay + "vät") (kay + "kää") (kay + "dään")
+        (kavi + "n") kavi (kavi + "si") (kay + "nyt") (kay + "tty")
+        (kay + "nee") ; -- just one verb
+  c66 : Str -> VForms -- 268 öristä
+    = \s -> cKuunnella s (Predef.tk 2 s + "in") ;
+  c66A : Str -> VForms -- 3 vavista
+    = \s -> cKuunnella s (strongGrade (Predef.tk 3 s) + "sin") ;
+  c67 : Str -> VForms -- 704 ällistellä
+    = \s -> cKuunnella s (Predef.tk 2 s + "in") ;
+  c67A : Str -> VForms -- 634 äännellä
+    = \s -> cKuunnella s (strongGrade (Predef.tk 3 s) + "lin") ;
+  c68 : Str -> VForms -- 49 viheriöidä
+    = c62 ; -- diff viheriöin/viheriöitsen
+  c69 : Str -> VForms -- 48 villitä
+    = \s -> cHarkita s ;
+  c70 : Str -> VForms -- 3 syöstä
+    = \s -> cJuosta s (Predef.tk 3 s + "ksen") ;
+  c71 : Str -> VForms -- 2 tehdä
+    = \s -> let te = Predef.tk 3 s in
+      vForms12 s (te + "en") (te + "kee") (te + "kevät") (te + "hkää") (te + "hdään")
+        (te + "en") (te + "ki") (te + "kisi") (te + "hnyt") (te + "hty")
+        (te + "hnee") ; -- just two verbs: nähdä, tehdä
+  c72 : Str -> VForms -- 93 yletä
+    = \s -> cValjeta s (Predef.tk 2 s + "ni") ;
+  c72A : Str -> VForms -- 52 yhdetä
+    = \s -> cValjeta s (strongGrade (Predef.tk 2 s) + "ni") ;
+  c73 : Str -> VForms -- 600 äkseerata
+    = \s -> cPudota s (Predef.tk 2 s + "si") ;
+  c73A : Str -> VForms -- 313 änkätä
+    = \s -> cPudota s (strongGrade (Predef.tk 2 s) + "si") ;
+  c74 : Str -> VForms -- 99 öljytä
+    = \s -> cPudota s (Predef.tk 2 s + "si") ;
+  c74A : Str -> VForms -- 72 ängetä
+    = \s -> cPudota s (strongGrade (Predef.tk 2 s) + "si") ;
+  c75 : Str -> VForms -- 39 viritä
+    = \s -> cPudota s (Predef.tk 2 s + "si") ;
+  c75A : Str -> VForms -- 9 siitä
+    = \s -> cPudota s (strongGrade (Predef.tk 2 s) + "si") ;
+  c76A : Str -> VForms -- 2 tietää
+    = \s -> let tieta = init s ; tieda = weakGrade tieta ; ties = Predef.tk 2 tieta + "s" in 
+      cOttaa s (tieda + "n") (ties + "in") (ties + "i") ; -- only tietaa, taitaa
+-- defective verbs
+  c77 : Str -> VForms -- 3 vipajaa
+    = c56A ; ----
+  c78 : Str -> VForms -- 31 ähkää
+    = c56A ; ----
+  c78A : Str -> VForms -- 1 tuikkaa
+    = c56A ; ----
+  c99 : Str -> Str -- 5453 öykkärimäisesti
+    = \s -> s ;
+
+  c101 : Str -> Str -- pronouns etc
+    = c99 ; -- dummy
+
+-- compound nouns, latter part inflected
+  compoundNK : Str -> NForms -> NForms = \x,y -> 
+    \\v => x + y ! v ;
+
+--- this is a lot slower
+  fcompoundNK : (Str -> NForms) -> Str -> Str -> NForms = \d,x,y -> 
+    let ys = d y in \\v => x + ys ! v ;
+
+}
+
diff --git a/lib/src/finnish/LangFin.gf b/lib/src/finnish/LangFin.gf
--- a/lib/src/finnish/LangFin.gf
+++ b/lib/src/finnish/LangFin.gf
@@ -1,7 +1,8 @@
 --# -path=.:../abstract:../common:../prelude
 
 concrete LangFin of Lang = 
-  GrammarFin,
+--  GrammarFin - [SlashV2VNP,SlashVV], ---- to speed up compilation
+  GrammarFin, 
   LexiconFin
   ** {
 
diff --git a/lib/src/finnish/LexiconFin.gf b/lib/src/finnish/LexiconFin.gf
--- a/lib/src/finnish/LexiconFin.gf
+++ b/lib/src/finnish/LexiconFin.gf
@@ -67,10 +67,10 @@
   doctor_N = mk2N "tohtori" "tohtoreita" ;
   dog_N = mkN "koira" ;
   door_N = mkN "ovi" "ovia" ;
-  drink_V2 = mkV2 (mkV "juoda") ;
+  drink_V2 = mkV2 (mkV "juoda") (casePrep partitive) ;
   easy_A2V = mkA2 (mkA (mkN "helppo") "helpompi" "helpoin") 
     (casePrep allative) ;
-  eat_V2 = mkV2 (mkV "syödä") ;
+  eat_V2 = mkV2 (mkV "syödä") (casePrep partitive) ;
   empty_A = mkA (mkN "tyhjä") "tyhjempi" "tyhjin" ;
   enemy_N = mkN "vihollinen" ;
   factory_N = mkN "tehdas" ;
@@ -147,7 +147,7 @@
   policeman_N = mkN "poliisi" ;
   priest_N = mkN "pappi" ;
   probable_AS = mkAS --- for vowel harmony
-    (mkA (mkN "todennäköinen") "tonennäköisempi" "todennälöisin") ; ---- sta
+    (mkA (mkN "todennäköinen") "tonennäköisempi" "todennäköisin") ; ---- sta
   queen_N = mkN "kuningatar" ;
   radio_N = mk2N "radio" "radioita" ;
   rain_V0 = mkV0 (mk2V "sataa" "satoi") ;
diff --git a/lib/src/finnish/MorphoFin.gf b/lib/src/finnish/MorphoFin.gf
--- a/lib/src/finnish/MorphoFin.gf
+++ b/lib/src/finnish/MorphoFin.gf
@@ -196,6 +196,10 @@
         raetta = case <rae : Str> of {
           _ + "e" => 
             <rae + "tt" + a, rakee + "seen"> ;  -- raetta,rakeeseen
+          _ + "u" => 
+            <rae + "tt" + a, rakee + "seen"> ;  -- kiiru, kiiruuseen
+          _ + "i" => 
+            <rae + "tt" + a, rakee + "seen"> ;  -- ori, oriin
           _ + "s" => 
             <rae + "t" + a,  rakee + "seen"> ;  -- rengasta,renkaaseen
           _ + "t" => 
@@ -273,7 +277,7 @@
 
   dSDP : Str -> NForms = \SDP ->
     let 
-      c = case last SDP of {
+      c = case Predef.toUpper (last SDP) of {
         "A" => 
            <"n","ta","na","han","iden","ita","ina","issa","ihin"> ;
         "B" | "C" | "D" | "E" | "G" | "P" | "T" | "V" | "W" => 
@@ -292,6 +296,8 @@
            <"n","tä","nä","hän","iden","itä","inä","issä","ihin"> ;
         "Ö" => 
            <"n","tä","nä","hön","iden","itä","inä","issä","ihin"> ;
+        "Y" => 
+           <"n","tä","nä","hyn","iden","itä","inä","issä","ihin"> ;
         _ => Predef.error (["illegal abbreviation"] ++ SDP)
         } ;
     in nForms10
@@ -643,6 +649,7 @@
       kuunnel = Predef.tk 2 kuunnella ;
       kuuntel = Predef.tk 2 kuuntelin ;
       u       = uyHarmony a ;
+      l       = last kuunnel
     in vForms12
       kuunnella
       (kuuntel + "en")
@@ -653,9 +660,9 @@
       (kuuntel + "in")
       (kuuntel + "i")
       (kuuntel + "isi")
-      (kuunnel + "l" + u + "t")
+      (kuunnel + l + u + "t")
       (kuunnel + "t" + u)
-      (kuunnel + "lee") ;
+      (kuunnel + l + "ee") ;
 
 -- auxiliaries
 
@@ -683,7 +690,7 @@
        11 => lienee
       } ;
 
-    vforms2V : VForms -> Verb ** {qp : Str} = \vh -> 
+    vforms2V : VForms -> Verb ** {qp : Bool} = \vh -> 
     let
       tulla = vh ! 0 ; 
       tulen = vh ! 1 ; 
@@ -748,7 +755,7 @@
       Inf Inf3Abess => tulema + "tt" + a 
       } ;
     sc = NPCase Nom ;
-    qp = Predef.dp 2 tulko ;
+    qp = pbool2bool (Predef.eqStr (last tulko) "o") ;
     lock_V = <>
     } ;
 
@@ -803,9 +810,12 @@
       "ll" + a => "lt" + a ;
       h@("h" | "l") + "je" + e => h + "ke" ; -- pohje/lahje impossible
       ("tk" | "hk" | "sk" | "sp" | "st") + _ => nke ;       -- viuhke,kuiske 
-      a + k@("k"|"p"|"t") + e@("e"|"a"|"ä"|"u"|"i"|"o"|"ö")  => a + k + k + e ;
+      a + k@("k"|"p"|"t") + e@("e"|"a"|"ä"|"u"|"y"|"i"|"o"|"ö")  => a + k + k + e ;
       a + "d" + e@("e"|"a"|"ä"|"u"|"i"|"o"|"ö")  => a + "t" + e ; 
       s + a@("a" | "ä") + "e" => s + a + "ke" ;       -- säe, tae
+      s + "ui"                      => s + "uki" ;     -- ruis
+      s + "aa"                      => s + "aka" ;       -- taata
+      s + "i" + a@("a" | "e" | "i") => s + "ik" + a ;       -- liata, siitä, pietä
       a + "v" + e@("e"|"a"|"ä"|"u"|"i") => a + "p" + e ;  -- taive/toive imposs
       ase => ase
       } ;
diff --git a/lib/src/finnish/ParadigmsFin.gf b/lib/src/finnish/ParadigmsFin.gf
--- a/lib/src/finnish/ParadigmsFin.gf
+++ b/lib/src/finnish/ParadigmsFin.gf
@@ -69,6 +69,11 @@
   postGenPrep :         Str -> Prep ;  -- genitive postposition, e.g. "takana"
   casePrep    : Case ->        Prep ;  -- just case, e.g. adessive
 
+  NK : Type ;   -- Noun from DictFin (Kotus)
+  AK : Type ;   -- Adjective from DictFin (Kotus)
+  VK : Type ;   -- Verb from DictFin (Kotus)
+  AdvK : Type ; -- Adverb from DictFin (Kotus)
+
 --2 Nouns
 
 -- The worst case gives ten forms.
@@ -97,6 +102,7 @@
     mkN : (olo,n,a,na,oon,jen,ja,ina,issa,ihin : Str) -> N ; -- worst case, 10 forms
     mkN : (pika : Str) -> (juna  : N) -> N ; -- compound with invariable prefix
     mkN : (oma : N)    -> (tunto : N) -> N ; -- compound with inflecting prefix
+    mkN : NK -> N ;  -- noun from DictFin (Kotus)
   } ;
 
 -- Nouns used as functions need a case, of which the default is
@@ -131,6 +137,7 @@
     mkA : N -> A ;    -- any noun made into adjective
     mkA : N -> (kivempi,kivin : Str) -> A ; -- deviating comparison forms
     mkA : (hyva,prmpi,pras : N) -> (hyvin,pmmin,prhten : Str) -> A ; -- worst case adj
+    mkA : AK -> A ;  -- adjective from DictFin (Kotus)
   } ;
 
 -- Two-place adjectives need a case for the second argument.
@@ -152,6 +159,7 @@
     mkV : (huutaa,huusi : Str) -> V ; -- deviating past 3sg
     mkV : (huutaa,huudan,huusi : Str) -> V ; -- also deviating pres. 1sg
     mkV : (huutaa,dan,taa,tavat,takaa,detaan,sin,si,sisi,tanut,dettu,tanee : Str) -> V ; -- worst-case verb
+    mkV : VK -> V ;  -- verb from DictFin (Kotus)
   } ;
 
 -- All the patterns above have $nominative$ as subject case.
@@ -253,6 +261,12 @@
     \c -> {c = NPCase c ; s = [] ; isPre = True ; lock_Prep = <>} ;
   accPrep =  {c = NPAcc ; s = [] ; isPre = True ; lock_Prep = <>} ;
 
+  NK = {s : NForms ; lock_NK : {}} ;
+  AK = {s : NForms ; lock_AK : {}} ;
+  VK = {s : VForms ; lock_VK : {}} ;
+  AdvK = {s : Str ; lock_AdvK : {}} ;
+
+
   mkN = overload {
     mkN : (talo : Str) -> N = mk1N ;
     --  \s -> nForms2N (nForms1 s) ;
@@ -267,6 +281,7 @@
         : Str) -> N = mk10N ;
     mkN : (sora : Str) -> (tie : N) -> N = mkStrN ;
     mkN : (oma,tunto : N) -> N = mkNN ;
+    mkN : (sana : NK) -> N = \w -> nForms2N w.s ;
   } ;
 
   mk1A : Str -> A = \jalo -> aForms2A (nforms2aforms (nForms1 jalo)) ;
@@ -350,6 +365,7 @@
         ukon = weakGrade ukko + "n" ;
       in
       case <ukko,ukkoja> of {
+        <_, _ + ":" + ? + ("a" | "ä")> => dSDP ukko ;
         <_ + "ea", _ + "oita"> => 
           dSilakka ukko ukon ukkoja ;  -- idea, but not korkea
         <_ + ("aa" | "ee" | "ii" | "oo" | "uu" | "yy" | "ää" | "öö" | 
@@ -365,7 +381,6 @@
         <_ + ("ut" | "yt"),_ + ("uita" | "yitä")>  => dRae ukko (init ukko + "en") ;
         <_ + "e", nuk + ("eja" | "ejä")> => 
           dNukke ukko ukon ;
-        <_, _ + ":" + _ + ("a" | "ä")> => dSDP ukko ;
         <_ + ("l" | "n" | "r" | "s"), _ + ("eja" | "ejä")> => dUnix ukko ;
         <_, _ + ("a" | "ä")> => ukot ;
         _ => 
@@ -379,6 +394,7 @@
         ukot = nForms2 ukko ukkoja ;
       in
       case <ukko,ukon> of {
+        <_, _ + ":n"> => dSDP ukko ;
         <_ + ("aa" | "ee" | "ii" | "oo" | "uu" | "yy" | "ää" | "öö" | 
               "ie" | "uo" | "yö" | "ea" | "eä" | 
               "ia" | "iä" | "io" | "iö" | "ja" | "jä"), _ + "n"> => 
@@ -394,7 +410,6 @@
         <nukk + "e", nuk + "een"> => dRae ukko ukon ;
         <arp + "i", arv + "en"> => dArpi ukko ukon ;
         <_ + ("us" | "ys"), _ + "den"> => dLujuus ukko ;
-        <_, _ + ":n"> => dSDP ukko ;
         <_, _ + "n"> => ukot ;
         _ => 
           Predef.error (["second argument should end in n, not"] ++ ukon)
@@ -446,6 +461,8 @@
     mkA : Str -> A  = mkA_1 ;
     mkA : N -> A = \n -> noun2adjDeg n ** {lock_A = <>} ;
     mkA : N -> (kivempaa,kivinta : Str) -> A = regAdjective ;
+    mkA : (sana : AK) -> A = \w -> noun2adjDeg (nForms2N w.s) ;
+
 --    mkA : (hyva,parempi,paras : N) -> (hyvin,paremmin,parhaiten : Str) -> A ;
   } ;
 
@@ -483,6 +500,7 @@
     mkV : (
       huutaa,huudan,huutaa,huutavat,huutakaa,huudetaan,
       huusin,huusi,huusisi,huutanut,huudettu,huutanee : Str) -> V = mk12V ;
+    mkV : (sana : VK) -> V = \w -> vforms2V w.s ** {sc = NPCase Nom ; lock_V = <>} ;
   } ;
 
   mk1V : Str -> V = \s -> 
@@ -560,13 +578,16 @@
 
   caseV c v = {s = v.s ; sc = NPCase c ; qp = v.qp ; lock_V = <>} ;
 
-  vOlla = verbOlla ** {sc = NPCase Nom ; qp = "ko" ; lock_V = <>} ; ---- lieneekö
+  vOlla = verbOlla ** {sc = NPCase Nom ; qp = True ; lock_V = <>} ; ---- lieneekö
 
   mk2V2 : V -> Prep -> V2 = \v,c -> v ** {c2 = c ; lock_V2 = <>} ;
   caseV2 : V -> Case -> V2 = \v,c -> mk2V2 v (casePrep c) ; 
   dirV2 v = mk2V2 v accPrep ;
 
-  mkAdv : Str -> Adv = \s -> {s = s ; lock_Adv = <>} ;
+  mkAdv = overload { 
+    mkAdv : Str -> Adv = \s -> {s = s ; lock_Adv = <>} ;
+    mkAdv : AdvK -> Adv = \s -> {s = s.s ; lock_Adv = <>} ;
+    } ;
 
   mkV2 = overload {
     mkV2 : Str -> V2 = \s -> dirV2 (mk1V s) ;
diff --git a/lib/src/finnish/QuestionFin.gf b/lib/src/finnish/QuestionFin.gf
--- a/lib/src/finnish/QuestionFin.gf
+++ b/lib/src/finnish/QuestionFin.gf
@@ -31,7 +31,7 @@
     QuestIComp icomp np = {
       s = \\t,a,p => 
         let 
-          vp = predV (verbOlla ** {sc = NPCase Nom ; qp = "ko"}) ;
+          vp = predV (verbOlla ** {sc = NPCase Nom ; qp = True}) ;
           cl = mkClause (subjForm np vp.sc) np.a vp ;
         in
         icomp.s ! np.a ++ cl.s ! t ! a ! p ! SDecl
diff --git a/lib/src/finnish/ResFin.gf b/lib/src/finnish/ResFin.gf
--- a/lib/src/finnish/ResFin.gf
+++ b/lib/src/finnish/ResFin.gf
@@ -185,12 +185,13 @@
   VP = {
     s   : VIForm => Anteriority => Polarity => Agr => {fin, inf : Str} ; 
     s2  : Bool => Polarity => Agr => Str ; -- talo/talon/taloa
+    adv : Polarity => Str ; -- ainakin/ainakaan
     ext : Str ;
     sc  : NPForm ;
-    qp  : Str
+    qp  : Bool -- True = back vowel
     } ;
     
-  predV : (Verb ** {sc : NPForm ; qp : Str}) -> VP = \verb -> {
+  predV : (Verb ** {sc : NPForm ; qp : Bool}) -> VP = \verb -> {
     s = \\vi,ant,b,agr0 => 
       let
 
@@ -248,6 +249,7 @@
         } ;
 
     s2 = \\_,_,_ => [] ;
+    adv = \\_ => [] ;
     ext = [] ;
     sc = verb.sc ;
     qp = verb.qp
@@ -256,6 +258,7 @@
   insertObj : (Bool => Polarity => Agr => Str) -> VP -> VP = \obj,vp -> {
     s = vp.s ;
     s2 = \\fin,b,a => vp.s2 ! fin ! b ! a  ++ obj ! fin ! b ! a ;
+    adv = vp.adv ;
     ext = vp.ext ;
     sc = vp.sc ; 
     qp = vp.qp
@@ -264,15 +267,26 @@
   insertObjPre : (Bool => Polarity => Agr => Str) -> VP -> VP = \obj,vp -> {
     s = vp.s ;
     s2 = \\fin,b,a => obj ! fin ! b ! a ++ vp.s2 ! fin ! b ! a ;
+    adv = vp.adv ;
     ext = vp.ext ;
     sc = vp.sc ; 
     qp = vp.qp
     } ;
 
+  insertAdv : (Polarity => Str) -> VP -> VP = \adv,vp -> {
+    s = vp.s ;
+    s2 = vp.s2 ;
+    ext = vp.ext ;
+    adv = \\b => vp.adv ! b ++ adv ! b ;
+    sc = vp.sc ; 
+    qp = vp.qp
+    } ;
+
   insertExtrapos : Str -> VP -> VP = \obj,vp -> {
     s = vp.s ;
     s2 = vp.s2 ;
     ext = vp.ext ++ obj ;
+    adv = vp.adv ;
     sc = vp.sc ; 
     qp = vp.qp
     } ;
@@ -283,34 +297,86 @@
     s : Tense => Anteriority => Polarity => SType => Str
     } ;
 
-  mkClause : (Polarity -> Str) -> Agr -> VP -> Clause =
+  ClausePlus : Type = {
+    s : Tense => Anteriority => Polarity => {subj,fin,inf,compl,adv,ext : Str ; qp : Bool}
+    } ;
+
+  mkClause : (Polarity -> Str) -> Agr -> VP -> Clause = 
     \sub,agr,vp -> {
-      s = \\t,a,b,o => 
+      s = \\t,a,b => let c = (mkClausePlus sub agr vp).s ! t ! a ! b in 
+         table {
+           SDecl  => c.subj ++ c.fin ++ c.inf ++ c.compl ++ c.adv ++ c.ext ;
+           SQuest => c.fin ++ BIND ++ questPart c.qp ++ c.subj ++ c.inf ++ c.compl ++ c.adv ++ c.ext
+           }
+      } ;
+
+  mkClausePlus : (Polarity -> Str) -> Agr -> VP -> ClausePlus =
+    \sub,agr,vp -> {
+      s = \\t,a,b => 
         let 
-          subj = sub b ;
           agrfin = case vp.sc of {
                     NPCase Nom => <agr,True> ;
                     _ => <agrP3 Sg,False>      -- minun täytyy, minulla on
                     } ;
           verb  = vp.s ! VIFin t ! a ! b ! agrfin.p1 ;
-          compl = vp.s2 ! agrfin.p2 ! b ! agr ++ vp.ext
-        in
-        case o of {
-          SDecl  => subj ++ verb.fin ++ verb.inf ++ compl ;
-          SQuest => questPart vp a b verb.fin ++ subj ++ verb.inf ++ compl
-          }
+        in {subj = sub b ; 
+            fin  = verb.fin ; 
+            inf  = verb.inf ; 
+            compl = vp.s2 ! agrfin.p2 ! b ! agr ;
+            adv  = vp.adv ! b ; 
+            ext  = vp.ext ; 
+            qp   = selectPart vp a b
+            }
+     } ;
+
+  insertKinClausePlus : Predef.Ints 1 -> ClausePlus -> ClausePlus = \p,cl -> { 
+    s = \\t,a,b =>
+      let 
+         c = cl.s ! t ! a ! b   
+      in
+      case p of {
+         0 => {subj = c.subj ++ kin b True ; fin = c.fin ; inf = c.inf ;  -- Jussikin nukkuu
+               compl = c.compl ; adv = c.adv ; ext = c.ext ; qp = c.qp} ;
+         1 => {subj = c.subj ; fin = c.fin ++ kin b c.qp ; inf = c.inf ;  -- Jussi nukkuukin
+               compl = c.compl ; adv = c.adv ; ext = c.ext ; qp = c.qp}
+         }
     } ;
 
+  insertObjClausePlus : Predef.Ints 1 -> Bool -> (Polarity => Str) -> ClausePlus -> ClausePlus = 
+   \p,ifKin,obj,cl -> { 
+    s = \\t,a,b =>
+      let 
+         c = cl.s ! t ! a ! b ;
+         co = obj ! b ++ if_then_Str ifKin (kin b True) [] ;
+      in case p of {
+         0 => {subj = c.subj ; fin = c.fin ; inf = c.inf ; 
+               compl = co ; adv = c.compl ++ c.adv ; ext = c.ext ; qp = c.qp} ; -- Jussi juo maitoakin
+         1 => {subj = c.subj ; fin = c.fin ; inf = c.inf ; 
+               compl = c.compl ; adv = co ; ext = c.adv ++ c.ext ; qp = c.qp}   -- Jussi nukkuu nytkin
+         }
+     } ;
+
+  kin : Polarity -> Bool -> Str  = 
+    \p,b -> case p of {Pos => (mkPart "kin" "kin").s ! b ; Neg => (mkPart "kaan" "kään").s ! b} ;
+
+  mkPart : Str -> Str -> {s : Bool => Str} = \ko,koe ->
+    {s = table {True => glueTok ko ; False => glueTok koe}} ;
+
+  glueTok : Str -> Str = \s -> "&+" ++ s ;
+
+
 -- This is used for subjects of passives: therefore isFin in False.
 
   subjForm : NP -> NPForm -> Polarity -> Str = \np,sc,b -> 
     appCompl False b {s = [] ; c = sc ; isPre = True} np ;
 
-  questPart : VP -> Anteriority -> Polarity -> Str -> Str = \vp,a,p,on -> on ++ BIND ++ 
+  questPart : Bool -> Str = \b -> if_then_Str b "ko" "kö" ;
+
+  selectPart : VP -> Anteriority -> Polarity -> Bool = \vp,a,p -> 
     case p of {
-      Neg => "kö" ;  -- eikö tule
+      Neg => False ;  -- eikö tule
       _ => case a of {
-        Anter => "ko" ; -- onko mennyt --# notpresent
+        Anter => True ; -- onko mennyt --# notpresent
         _ => vp.qp  -- tuleeko, meneekö
         }
       } ;
diff --git a/lib/src/finnish/SentenceFin.gf b/lib/src/finnish/SentenceFin.gf
--- a/lib/src/finnish/SentenceFin.gf
+++ b/lib/src/finnish/SentenceFin.gf
@@ -60,6 +60,7 @@
     } ;
 
     AdvS a s = {s = a.s ++ s.s} ;
+    ExtAdvS a s = {s = a.s ++ "," ++ s.s} ;
 
     RelS s r = {s = s.s ++ "," ++ r.s ! agrP3 Sg} ; ---- mikä
 
diff --git a/lib/src/finnish/StructuralFin.gf b/lib/src/finnish/StructuralFin.gf
--- a/lib/src/finnish/StructuralFin.gf
+++ b/lib/src/finnish/StructuralFin.gf
@@ -108,6 +108,7 @@
           } ;
     s2 = [] ; isNum,isPoss = False ; isDef = True ; 
     } ;
+  that_Subj = ss "että" ;
   there_Adv = ss "siellä" ; --- tuolla
   there7to_Adv = ss "sinne" ;
   there7from_Adv = ss "sieltä" ;
diff --git a/lib/src/finnish/VerbFin.gf b/lib/src/finnish/VerbFin.gf
--- a/lib/src/finnish/VerbFin.gf
+++ b/lib/src/finnish/VerbFin.gf
@@ -53,7 +53,7 @@
     ComplSlash vp np = insertObjPre (\\fin,b,_ => appCompl fin b vp.c2 np) vp ;
 
     UseComp comp = 
-      insertObj (\\_,_ => comp.s) (predV (verbOlla ** {sc = NPCase Nom ; qp = "ko"})) ;
+      insertObj (\\_,_ => comp.s) (predV (verbOlla ** {sc = NPCase Nom ; qp = True})) ;
 
     SlashVV v vp = 
       insertObj 
@@ -73,15 +73,16 @@
                       infVP v.sc b a vp v.vi) 
           (predV v) ** {c2 = vp.c2} ;
 
-    AdvVP vp adv = insertObj (\\_,_,_ => adv.s) vp ;
+    AdvVP vp adv = insertAdv (\\_ => adv.s) vp ;
 
-    AdVVP adv vp = insertObj (\\_,_,_ => adv.s) vp ;
+    AdVVP adv vp = insertAdv (\\_ => adv.s) vp ;
 
     ReflVP v = insertObjPre (\\fin,b,agr => appCompl fin b v.c2 (reflPron agr)) v ;
 
     PassV2 v = let vp = predV v in {
       s = \\_ => vp.s ! VIPass ;
       s2 = \\_,_,_ => [] ;
+      adv = \\_ => [] ;
       ext = [] ;
       qp = v.qp ;
       sc = v.c2.c  -- minut valitaan ; minua rakastetaan ; minulle kuiskataan 
diff --git a/lib/src/finnish/frequency/Freq.hs b/lib/src/finnish/frequency/Freq.hs
new file mode 100644
--- /dev/null
+++ b/lib/src/finnish/frequency/Freq.hs
@@ -0,0 +1,68 @@
+import qualified Data.Set as S
+
+main = do
+  src   <- readFile "src/suomen-sanomalehtikielen-taajuussanasto-utf8.txt"
+  kotus <- readFile "kotusfuns.txt"
+  let funSet = S.fromList (map (head . words) (lines kotus))
+  mapM_ putStrLn $ concatMap (prEntry funSet . mkOne) $ lines src
+
+stoplist = S.fromList 
+  ["ei","olla","ei_ihme","eikä","ettei","ellei","vaikkei","muttei","miksei","jollei","jottei"]
+
+prEntry funSet (f,c,w,p@(k,n),i) = if n == 0 then [] else [
+   unwords ["fun",f, " : ", c,";"],
+   unwords ["lin",f, "=", para,";"]
+  ]
+ where
+  para = case n of
+    2 -> let kf = i ++ "_" ++ k in
+         if S.member kf funSet 
+           then "mk" ++ c ++ " " ++ kf
+           else "mk" ++ c ++ " " ++ quoted w
+    _ -> "mk" ++ k ++ " " ++ quoted w
+
+
+mkOne line = case words line of
+  _:_:_:w:c0:_ | S.member w stoplist -> none
+  _:_:_:w:c0:_ -> let c = mkCat c0 in (mkFun w c, c, w, mkLin c0, mkId w)
+  _ -> none
+
+none = ("","","",("",0),"")
+
+quoted s = "\"" ++ s ++ "\""
+
+mkCat = fst . catlin
+mkLin = snd . catlin
+
+catlin c = case c of
+  "(adjektiivi)" -> kotus "A"
+  "(adverbi)" -> rep "Adv"
+  "(erisnimi)" -> rep "PN"
+  "(interjektio)" -> hide "Interj"
+  "(konjunktio)" -> hide "Conj"
+  "(lukusana)" -> hide "Numeral"
+  "(lyhenne)"  -> hide "Abbr"
+  "(prepositio)" -> hide "Prep"
+  "(pronomini)" -> hide "Pron"
+  "(substantiivi)" -> kotus "N"
+  "(verbi)" -> kotus "V"
+  _ -> hide "Junk"
+
+
+rep s = (s,(s,1))
+kotus s = (s,(s ++ "K",2))
+--- for entries not to be included
+hide s = (s,(s,0))
+
+mkFun w c = mkId w ++ "_" ++ c
+
+mkId = concatMap trim where
+  trim c = case fromEnum c of
+    32 -> "_" -- space
+    45 -> "_" -- -
+    224 -> "a''" -- à
+    228 -> "a'" -- ä
+    246 -> "o'" -- ö
+    252 -> "u'" -- ü
+    x | x < 65 || (x > 90 && x < 97) || x > 122 -> "_"
+    _   -> [c]
diff --git a/lib/src/finnish/frequency/FreqGrammarFin.gf b/lib/src/finnish/frequency/FreqGrammarFin.gf
new file mode 100644
--- /dev/null
+++ b/lib/src/finnish/frequency/FreqGrammarFin.gf
@@ -0,0 +1,73 @@
+--# -path=.:alltenses:..
+
+concrete FreqGrammarFin of FreqGrammarFinAbs = 
+  LexiconFin, ---
+  StructuralFin - ---
+--- FreqFin -
+[
+ everybody_NP,
+ everything_NP,
+-- somebody_NP
+-- something_NP
+ nobody_NP,
+ nothing_NP
+],
+TenseX
+** open SyntaxFin, (P = ParadigmsFin), (R = ParamX), Prelude in {
+
+lincat
+  Clause  = {subj : NP ; vp : VP} ;
+  Part    = Adv ;
+
+lin
+  ClauseS part temp pol cl = 
+    mkS temp pol (mkCl (mkNP cl.subj part) cl.vp) ;
+  SubjKinS part temp pol cl = 
+    mkS temp pol (mkCl (mkNP (mkNP cl.subj (kin.s ! pol.p)) part) cl.vp) ;
+  VerbKinS part temp pol cl = 
+    mkS temp pol (mkCl (mkNP cl.subj part) (mkVP cl.vp (kin.s ! pol.p))) ;
+  AdvKinS  part temp pol adv cl = 
+    mkS temp pol (mkCl (mkNP cl.subj part) (mkVP (mkVP cl.vp adv) (kin.s ! pol.p))) ;
+  PreAdvS part temp pol adv cl = 
+    mkS adv (mkS part (mkS temp pol (mkCl cl.subj cl.vp))) ;
+  PreAdvKinS part temp pol adv cl = 
+    mkS adv (mkS part (mkS (kin.s ! pol.p) (mkS temp pol (mkCl cl.subj cl.vp)))) ;
+  PreAdvSubjKinS  part temp pol adv cl = 
+    mkS adv (mkS part (mkS temp pol (mkCl (mkNP cl.subj (kin.s ! pol.p)) cl.vp))) ;
+  PreAdvVerbKinS  part temp pol adv cl = 
+    mkS adv (mkS part (mkS temp pol (mkCl cl.subj (mkVP cl.vp (kin.s ! pol.p))))) ;
+  PreAdvAdvKinS  part temp pol adv1 adv2 cl = 
+    mkS adv1 (mkS part (mkS temp pol (mkCl cl.subj (mkVP (mkVP cl.vp adv2) (kin.s ! pol.p))))) ;
+
+
+---  AnterVerbS part kin t pol cl = 
+---    mkS t anteriorAnt pol (mkCl (mkNP cl.subj part) (mkVP cl.vp (kin.s ! pol.p))) ;
+
+  PredV np v = {subj = np ; vp = mkVP v} ;
+
+  FPrepNP prep np = mkAdv prep np ;
+  FDetCN cn = mkNP the_Det (lin CN cn) ;
+  FAdjCN a cn = mkCN (lin A a) (lin CN cn) ;
+
+  FUsePron p = mkNP p ;
+  FUseN n = mkCN n ;
+
+---  TransV v = P.mkV2 (lin V v) ;
+
+  noPart     = P.mkAdv [] ;
+  han_Part   = P.mkAdv (glueTok "han") ;
+  pa_Part    = P.mkAdv (glueTok "pa") ;
+  pas_Part   = P.mkAdv (glueTok "pas") ;
+  ko_Part    = P.mkAdv (glueTok "ko") ;
+  kos_Part   = P.mkAdv (glueTok "kos") ;
+  kohan_Part = P.mkAdv (glueTok "kohan") ;
+  pahan_Part = P.mkAdv (glueTok "pahan") ;
+
+
+oper 
+  kin : {s : R.Polarity => Adv}  = 
+    {s = table {R.Pos => P.mkAdv (glueTok "kin") ; R.Neg => P.mkAdv (glueTok "kaan")}} ;
+
+  glueTok : Str -> Str = \s -> "&!" ++ s ;
+
+}
diff --git a/lib/src/finnish/frequency/FreqGrammarFinAbs.gf b/lib/src/finnish/frequency/FreqGrammarFinAbs.gf
new file mode 100644
--- /dev/null
+++ b/lib/src/finnish/frequency/FreqGrammarFinAbs.gf
@@ -0,0 +1,50 @@
+abstract FreqGrammarFinAbs = 
+  Lexicon, ---
+  Structural - ---
+---  FreqFinAbs -
+[
+ everybody_NP,
+ everything_NP,
+-- somebody_NP
+-- something_NP
+ nobody_NP,
+ nothing_NP
+],
+Tense
+** {
+
+flags startcat = S ;
+
+cat
+  Clause ; Part ;
+
+fun 
+  ClauseS        : Part -> Temp -> Pol -> Clause -> S ;        -- arihan juo nyt
+  SubjKinS       : Part -> Temp -> Pol -> Clause -> S ;        -- arikinhan juo nyt
+  VerbKinS       : Part -> Temp -> Pol -> Clause -> S ;        -- arihan juokin nyt
+  AdvKinS        : Part -> Temp -> Pol -> Adv -> Clause -> S ; -- arihan juo nytkin
+  PreAdvKinS     : Part -> Temp -> Pol -> Adv -> Clause -> S ; -- nytkinhän ari juo
+  PreAdvS        : Part -> Temp -> Pol -> Adv -> Clause -> S ; -- nythän ari juo
+  PreAdvSubjKinS : Part -> Temp -> Pol -> Adv -> Clause -> S ; -- nythän arikin juo
+  PreAdvVerbKinS : Part -> Temp -> Pol -> Adv -> Clause -> S ; -- nythän ari juokin
+  PreAdvAdvKinS  : Part -> Temp -> Pol -> Adv -> Adv -> Clause -> S ; -- nythän ari juo täälläkin
+
+--- AnterVerbS : Part -> PartKin -> Tense -> Pol -> Clause -> S ; -- arihan onkin juonut
+--- doesn't put in right place
+
+  PredV     : NP -> V -> Clause ;
+  PredV2    : NP -> V2 -> NP -> Clause ;
+  PredObjV2 : NP -> V2 -> NP -> Clause ;
+
+  FPrepNP : Prep -> NP -> Adv ;
+  FDetCN  : CN -> NP ;
+  FAdjCN  : A -> CN -> CN ;
+
+  FUsePron : Pron -> NP ;
+  FUseN   : N -> CN ;
+
+---  TransV  : V -> V2 ;
+
+  noPart, han_Part, pa_Part, pas_Part, ko_Part, kos_Part, kohan_Part, pahan_Part : Part ; 
+
+}
diff --git a/lib/src/finnish/frequency/Makefile b/lib/src/finnish/frequency/Makefile
new file mode 100644
--- /dev/null
+++ b/lib/src/finnish/frequency/Makefile
@@ -0,0 +1,14 @@
+all: freq
+
+funs:
+	echo "pg -funs | wf -file=kotusfuns.txt" | gf -run ../DictCompFinAbs.gf
+
+freq:
+	runghc Freq.hs >src.tmp
+	cp prelFreqFinAbs FreqFinAbs.gf
+	grep ":" src.tmp >>FreqFinAbs.gf
+	echo "}" >>FreqFinAbs.gf
+	cp prelFreqFin FreqFin.gf
+	grep "=" src.tmp >>FreqFin.gf
+	echo "}" >>FreqFin.gf
+
diff --git a/lib/src/finnish/frequency/prelFreqFin b/lib/src/finnish/frequency/prelFreqFin
new file mode 100644
--- /dev/null
+++ b/lib/src/finnish/frequency/prelFreqFin
@@ -0,0 +1,6 @@
+--# -path=.:alltenses:..
+
+concrete FreqFin of FreqFinAbs = CatFin, StructuralFin ** open ParadigmsFin, DictCompFin in {
+
+flags coding = utf8 ;
+
diff --git a/lib/src/finnish/frequency/prelFreqFinAbs b/lib/src/finnish/frequency/prelFreqFinAbs
new file mode 100644
--- /dev/null
+++ b/lib/src/finnish/frequency/prelFreqFinAbs
@@ -0,0 +1,2 @@
+abstract FreqFinAbs = Cat, Structural ** {
+
diff --git a/lib/src/finnish/frequency/src/README b/lib/src/finnish/frequency/src/README
new file mode 100644
--- /dev/null
+++ b/lib/src/finnish/frequency/src/README
@@ -0,0 +1,8 @@
+10,000 most frequent words from Finnish newspaper corpus
+
+Source: http://www.csc.fi/tutkimus/alat/kielitiede/taajuussanasto-B9996/view
+
+License: 
+   Creative Commons
+   Nimeä-Epäkaupallinen-Ei muutettuja teoksia 1.0 Suomi-lisenssi
+   http://creativecommons.org/licenses/by-nd-nc/1.0/fi/
diff --git a/lib/src/finnish/frequency/src/suomen-sanomalehtikielen-taajuussanasto-utf8.txt b/lib/src/finnish/frequency/src/suomen-sanomalehtikielen-taajuussanasto-utf8.txt
new file mode 100644
--- /dev/null
+++ b/lib/src/finnish/frequency/src/suomen-sanomalehtikielen-taajuussanasto-utf8.txt
@@ -0,0 +1,10005 @@
+                   Sanahakemisto (laskevan taajuuden mukaan)
+
+   N        Abs   Rel    Uppslagsord
+   1    2716396 4,614851 olla (verbi)
+   2    1566108 2,660641 ja (konjunktio)
+   3     593462 1,008225 ei (verbi)
+   4     538609 0,915036 se (pronomini)
+   5     443301 0,753118 että (konjunktio)
+   6     417984 0,710108 joka (pronomini)
+   7     344927 0,585992 vuosi (substantiivi)
+   8     302803 0,514428 hän (pronomini)
+   9     267015 0,453628 myös (adverbi)
+   10    248176 0,421623 saada (verbi)
+   11    217016 0,368686 mutta (konjunktio)
+   12    209851 0,356513 tämä (pronomini)
+   13    197072 0,334803 voida (verbi)
+   14    192327 0,326742 tulla (verbi)
+   15    181128 0,307716 suomi (erisnimi)
+   16    171406 0,291199 tehdä (verbi)
+   17    165584 0,281309 kun (konjunktio)
+   18    161237 0,273923 pitää (verbi)
+   19    157837 0,268147 mukaan (prepositio)
+   20    149954 0,254755 uusi (adjektiivi)
+   21    141886 0,241048 jo (adverbi)
+   22    136565 0,232009 kuin (konjunktio)
+   23    133250 0,226377 hyvä (adjektiivi)
+   24    131524 0,223444 ne (pronomini)
+   25    128156 0,217723 sanoa (verbi)
+   26    117073 0,198894 kaikki (pronomini)
+   27    113699 0,193162 markka (substantiivi)
+   28    110896 0,188400 nyt (adverbi)
+   29    110368 0,187503 suuri (adjektiivi)
+   30    108963 0,185116 kertoa (verbi)
+   31    108891 0,184994 tai (konjunktio)
+   32    105813 0,179764 vain (adverbi)
+   33    105013 0,178405 paljon (adverbi)
+   34    103663 0,176112 muu (pronomini)
+   35    102866 0,174758 vielä (adverbi)
+   36    101149 0,171841 niin (adverbi)
+   37     99266 0,168642 oma (adjektiivi)
+   38     98684 0,167653 sekä (konjunktio)
+   39     98423 0,167210 mikä (pronomini)
+   40     96134 0,163321 maa (substantiivi)
+   41     95576 0,162373 kaksi (lukusana)
+   42     91546 0,155526 jos (konjunktio)
+   43     90391 0,153564 asia (substantiivi)
+   44     88709 0,150707 yksi (lukusana)
+   45     87324 0,148354 viime (adjektiivi)
+   46     86477 0,146915 he (pronomini)
+   47     84397 0,143381 prosentti (substantiivi)
+   48     83223 0,141386 ihminen (substantiivi)
+   49     82441 0,140058 kuitenkin (adverbi)
+   50     81839 0,139035 jälkeen (prepositio)
+   51     81135 0,137839 mies (substantiivi)
+   52     78233 0,132909 kanssa (prepositio)
+   53     77381 0,131462 aika (substantiivi)
+   54     75702 0,128609 noin (adverbi)
+   55     72808 0,123693 hyvin (adverbi)
+   56     71933 0,122206 ensimmäinen (lukusana)
+   57     70908 0,120465 jäädä (verbi)
+   58     69724 0,118453 työ (substantiivi)
+   59     69564 0,118181 ottaa (verbi)
+   60     68470 0,116323 me (pronomini)
+   61     68220 0,115898 antaa (verbi)
+   62     67877 0,115315 mieli (substantiivi)
+   63     66664 0,113255 helsinki (erisnimi)
+   64     66342 0,112708 haluta (verbi)
+   65     65887 0,111935 alkaa (verbi)
+   66     64598 0,109745 eu (lyhenne)
+   67     64470 0,109527 itse (pronomini)
+   68     63509 0,107895 moni (pronomini)
+   69     63018 0,107060 käydä (verbi)
+   70     62508 0,106194 kaupunki (substantiivi)
+   71     60963 0,103569 kolme (lukusana)
+   72     60603 0,102958 miljoona (lukusana)
+   73     59883 0,101734 osa (substantiivi)
+   74     59654 0,101345 stt (lyhenne)
+   75     59409 0,100929 alue (substantiivi)
+   76     59039 0,100301 eikä (verbi)
+   77     58672 0,099677 mm (lyhenne)
+   78     58046 0,098614 päästä (verbi)
+   79     57749 0,098109 vaikka (konjunktio)
+   80     57087 0,096984 lapsi (substantiivi)
+   81     56949 0,096750 päivä (substantiivi)
+   82     56157 0,095404 hallitus (substantiivi)
+   83     56059 0,095238 toimia (verbi)
+   84     54787 0,093077 sama (pronomini)
+   85     54158 0,092008 koko (adjektiivi)
+   86     52413 0,089044 pieni (adjektiivi)
+   87     52314 0,088876 ettei (verbi)
+   88     52289 0,088833 mennä (verbi)
+   89     51953 0,088262 ensi (adjektiivi)
+   90     51750 0,087917 kunta (substantiivi)
+   91     51698 0,087829 toinen (lukusana)
+   92     51438 0,087387 sillä (konjunktio)
+   93     51376 0,087282 joutua (verbi)
+   94     51217 0,087012 käyttää (verbi)
+   95     50664 0,086072 tampere (erisnimi)
+   96     50311 0,085473 kuulua (verbi)
+   97     50022 0,084982 mikään (pronomini)
+   98     49693 0,084423 nainen (substantiivi)
+   99     49495 0,084086 toinen (pronomini)
+   100    49203 0,083590 viikko (substantiivi)
+   101    48893 0,083064 esimerkiksi (adverbi)
+   102    48838 0,082970 lähteä (verbi)
+   103    47589 0,080848 eli (konjunktio)
+   104    47585 0,080842 tarvita (verbi)
+   105    46105 0,078327 yli (adverbi)
+   106    45522 0,077337 koska (konjunktio)
+   107    45513 0,077321 venäjä (erisnimi)
+   108    45193 0,076778 turku (erisnimi)
+   109    45167 0,076734 luku (substantiivi)
+   110    44857 0,076207 vanha (adjektiivi)
+   111    44764 0,076049 nousta (verbi)
+   112    44608 0,075784 nähdä (verbi)
+   113    44277 0,075222 kerta (substantiivi)
+   114    43427 0,073778 jokin (pronomini)
+   115    43415 0,073757 todeta (verbi)
+   116    43220 0,073426 aikana (prepositio)
+   117    43110 0,073239 yritys (substantiivi)
+   118    42865 0,072823 minä (pronomini)
+   119    42375 0,071990 nämä (pronomini)
+   120    42351 0,071950 seurata (verbi)
+   121    40265 0,068406 tärkeä (adjektiivi)
+   122    40142 0,068197 alku (substantiivi)
+   123    39902 0,067789 paikka (substantiivi)
+   124    39679 0,067410 vaan (konjunktio)
+   125    39409 0,066951 tilanne (substantiivi)
+   126    39157 0,066523 presidentti (substantiivi)
+   127    39151 0,066513 tieto (substantiivi)
+   128    38445 0,065314 loppu (substantiivi)
+   129    38409 0,065253 tietää (verbi)
+   130    38183 0,064869 tapa (substantiivi)
+   131    38138 0,064792 maailma (substantiivi)
+   132    38136 0,064789 aina (adverbi)
+   133    37877 0,064349 määrä (substantiivi)
+   134    37589 0,063859 maksaa (verbi)
+   135    37555 0,063802 vaatia (verbi)
+   136    37381 0,063506 puheenjohtaja (substantiivi)
+   137    37319 0,063401 löytyä (verbi)
+   138    37172 0,063151 lähes (adverbi)
+   139    37022 0,062896 tuoda (verbi)
+   140    36840 0,062587 uskoa (verbi)
+   141    36575 0,062137 esittää (verbi)
+   142    36245 0,061576 ennen (prepositio)
+   143    36153 0,061420 ts (lyhenne)
+   144    35846 0,060898 neljä (lukusana)
+   145    35835 0,060880 oulu (erisnimi)
+   146    35672 0,060603 usea (pronomini)
+   147    35367 0,060085 poliisi (substantiivi)
+   148    35258 0,059899 kisa (substantiivi)
+   149    35223 0,059840 enää (adverbi)
+   150    35218 0,059831 sitten (adverbi)
+   151    34981 0,059429 auto (substantiivi)
+   152    34949 0,059374 odottaa (verbi)
+   153    34825 0,059164 toiminta (substantiivi)
+   154    34708 0,058965 eri (adjektiivi)
+   155    34673 0,058906 entinen (adjektiivi)
+   156    34651 0,058868 näyttää (verbi)
+   157    34608 0,058795 syntyä (verbi)
+   158    34590 0,058765 eurooppa (erisnimi)
+   159    34272 0,058224 tulos (substantiivi)
+   160    34048 0,057844 raha (substantiivi)
+   161    33798 0,057419 päättää (verbi)
+   162    33691 0,057237 saattaa (verbi)
+   163    33605 0,057091 päätös (substantiivi)
+   164    33590 0,057066 suomalainen (adjektiivi)
+   165    33412 0,056763 käyttö (substantiivi)
+   166    33139 0,056299 aloittaa (verbi)
+   167    32895 0,055885 syy (substantiivi)
+   168    32840 0,055791 sitten (prepositio)
+   169    32780 0,055690 kasvaa (verbi)
+   170    32629 0,055433 elämä (substantiivi)
+   171    32488 0,055193 järjestää (verbi)
+   172    32043 0,054437 johtaa (verbi)
+   173    31943 0,054268 kilpailu (substantiivi)
+   174    31932 0,054249 koulu (substantiivi)
+   175    31875 0,054152 kesä (substantiivi)
+   176    31817 0,054053 vuotias (adjektiivi)
+   177    31689 0,053836 ongelma (substantiivi)
+   178    31688 0,053834 yhtiö (substantiivi)
+   179    31683 0,053826 valita (verbi)
+   180    31653 0,053775 joukkue (substantiivi)
+   181    31643 0,053758 viisi (lukusana)
+   182    31599 0,053683 nuori (substantiivi)
+   183    31563 0,053622 vähän (adverbi)
+   184    31554 0,053607 mahdollisuus (substantiivi)
+   185    31527 0,053561 muutama (pronomini)
+   186    31459 0,053445 kausi (substantiivi)
+   187    31176 0,052965 ainakin (adverbi)
+   188    31017 0,052694 jatkaa (verbi)
+   189    30971 0,052616 suomalainen (substantiivi)
+   190    30899 0,052494 jopa (adverbi)
+   191    30676 0,052115 kymmenen (lukusana)
+   192    30646 0,052064 voittaa (verbi)
+   193    30555 0,051910 valtio (substantiivi)
+   194    30313 0,051498 pelata (verbi)
+   195    30213 0,051328 viedä (verbi)
+   196    30205 0,051315 kuva (substantiivi)
+   197    30186 0,051283 sopia (verbi)
+   198    30101 0,051138 viimeinen (adjektiivi)
+   199    30064 0,051075 nimi (substantiivi)
+   200    29988 0,050946 puoli (lukusana)
+   201    29960 0,050899 mukaan (adverbi)
+   202    29811 0,050646 nykyinen (adjektiivi)
+   203    29707 0,050469 arvioida (verbi)
+   204    29652 0,050375 edelleen (adverbi)
+   205    29581 0,050255 mukana (adverbi)
+   206    29529 0,050166 juuri (adverbi)
+   207    29516 0,050144 joukko (substantiivi)
+   208    29003 0,049273 pitkä (adjektiivi)
+   209    28963 0,049205 sellainen (adjektiivi)
+   210    28933 0,049154 johtaja (substantiivi)
+   211    28779 0,048892 katsoa (verbi)
+   212    28685 0,048733 vastata (verbi)
+   213    28593 0,048576 näin (adverbi)
+   214    28518 0,048449 lisäksi (prepositio)
+   215    28490 0,048401 riittää (verbi)
+   216    28334 0,048136 kansainvälinen (adjektiivi)
+   217    28202 0,047912 ajaa (verbi)
+   218    28115 0,047764 kova (adjektiivi)
+   219    28103 0,047744 tuntea (verbi)
+   220    27868 0,047345 ruotsi (erisnimi)
+   221    27860 0,047331 yhdysvallat (erisnimi)
+   222    27842 0,047300 puhua (verbi)
+   223    27745 0,047136 rakentaa (verbi)
+   224    27677 0,047020 pystyä (verbi)
+   225    27440 0,046617 tila (substantiivi)
+   226    27373 0,046504 apu (substantiivi)
+   227    27290 0,046363 lisäksi (adverbi)
+   228    27025 0,045912 vasta (adverbi)
+   229    26906 0,045710 miten (adverbi)
+   230    26893 0,045688 ryhmä (substantiivi)
+   231    26797 0,045525 hetki (substantiivi)
+   232    26796 0,045523 tehtävä (substantiivi)
+   233    26767 0,045474 puolue (substantiivi)
+   234    26760 0,045462 liittyä (verbi)
+   235    26731 0,045413 kosovo (erisnimi)
+   236    26656 0,045286 tapahtua (verbi)
+   237    26625 0,045233 tavoite (substantiivi)
+   238    26523 0,045060 voitto (substantiivi)
+   239    26454 0,044942 matka (substantiivi)
+   240    26389 0,044832 kauppa (substantiivi)
+   241    26267 0,044625 ottelu (substantiivi)
+   242    26234 0,044569 sopimus (substantiivi)
+   243    26175 0,044468 jatkua (verbi)
+   244    26060 0,044273 maanantai (substantiivi)
+   245    25928 0,044049 hinta (substantiivi)
+   246    25809 0,043847 kyllä (adverbi)
+   247    25803 0,043836 lisätä (verbi)
+   248    25745 0,043738 sunnuntai (substantiivi)
+   249    25683 0,043633 kuten (konjunktio)
+   250    25627 0,043537 taas (adverbi)
+   251    25456 0,043247 sarja (substantiivi)
+   252    25431 0,043204 perjantai (substantiivi)
+   253    25356 0,043077 puoli (substantiivi)
+   254    25331 0,043035 lauantai (substantiivi)
+   255    25269 0,042929 jättää (verbi)
+   256    25212 0,042832 saksa (erisnimi)
+   257    25212 0,042832 yhteistyö (substantiivi)
+   258    25174 0,042768 jäsen (substantiivi)
+   259    25009 0,042487 laskea (verbi)
+   260    24849 0,042216 tutkimus (substantiivi)
+   261    24798 0,042129 kuitenkaan (adverbi)
+   262    24788 0,042112 yrittää (verbi)
+   263    24777 0,042093 tuntua (verbi)
+   264    24712 0,041983 joensuu (erisnimi)
+   265    24671 0,041913 syksy (substantiivi)
+   266    24518 0,041653 vaikea (adjektiivi)
+   267    24492 0,041609 torstai (substantiivi)
+   268    24465 0,041563 vaikuttaa (verbi)
+   269    24433 0,041509 nuori (adjektiivi)
+   270    24406 0,041463 mahdollinen (adjektiivi)
+   271    24270 0,041232 tiistai (substantiivi)
+   272    24238 0,041178 keskiviikko (substantiivi)
+   273    24211 0,041132 kysymys (substantiivi)
+   274    24205 0,041122 ilmoittaa (verbi)
+   275    24125 0,040986 aivan (adverbi)
+   276    24121 0,040979 löytää (verbi)
+   277    23998 0,040770 talo (substantiivi)
+   278    23869 0,040551 kuukausi (substantiivi)
+   279    23801 0,040435 oy (lyhenne)
+   280    23781 0,040401 pyrkiä (verbi)
+   281    23660 0,040196 tarjota (verbi)
+   282    23623 0,040133 kannattaa (verbi)
+   283    23380 0,039720 kolmas (lukusana)
+   284    23333 0,039640 ohjelma (substantiivi)
+   285    23282 0,039553 ratkaisu (substantiivi)
+   286    23214 0,039438 vastaan (prepositio)
+   287    23063 0,039181 peli (substantiivi)
+   288    23035 0,039134 hoitaa (verbi)
+   289    23009 0,039090 kirja (substantiivi)
+   290    22776 0,038694 hyväksyä (verbi)
+   291    22679 0,038529 myöntää (verbi)
+   292    22618 0,038425 tuki (substantiivi)
+   293    22590 0,038378 jyväskylä (erisnimi)
+   294    22575 0,038352 poika (substantiivi)
+   295    22536 0,038286 esitys (substantiivi)
+   296    22431 0,038108 muun_muassa (adverbi)
+   297    22380 0,038021 siirtyä (verbi)
+   298    22343 0,037958 aiheuttaa (verbi)
+   299    22319 0,037917 aikoa (verbi)
+   300    22264 0,037824 hakea (verbi)
+   301    22209 0,037731 muuttaa (verbi)
+   302    22160 0,037647 pari (lukusana)
+   303    22128 0,037593 edustaja (substantiivi)
+   304    22083 0,037517 ala (substantiivi)
+   305    22081 0,037513 myydä (verbi)
+   306    22018 0,037406 nostaa (verbi)
+   307    21893 0,037194 yhä (adverbi)
+   308    21846 0,037114 tie (substantiivi)
+   309    21751 0,036952 perhe (substantiivi)
+   310    21625 0,036738 kestää (verbi)
+   311    21455 0,036450 pysyä (verbi)
+   312    21447 0,036436 metri (substantiivi)
+   313    21436 0,036417 muistuttaa (verbi)
+   314    21426 0,036400 ilman (prepositio)
+   315    21414 0,036380 korkea (adjektiivi)
+   316    21376 0,036315 jokainen (pronomini)
+   317    21356 0,036281 elää (verbi)
+   318    21289 0,036168 osallistua (verbi)
+   319    21272 0,036139 liian (adverbi)
+   320    21205 0,036025 koskea (verbi)
+   321    21173 0,035971 onnistua (verbi)
+   322    21168 0,035962 oikeus (substantiivi)
+   323    21157 0,035943 matti (erisnimi)
+   324    21084 0,035819 iso (adjektiivi)
+   325    21071 0,035797 asema (substantiivi)
+   326    20980 0,035643 elokuva (substantiivi)
+   327    20955 0,035600 voima (substantiivi)
+   328    20921 0,035542 tarkoitus (substantiivi)
+   329    20909 0,035522 edes (adverbi)
+   330    20887 0,035485 maali (substantiivi)
+   331    20871 0,035457 toivoa (verbi)
+   332    20824 0,035378 johto (substantiivi)
+   333    20788 0,035316 muutos (substantiivi)
+   334    20765 0,035277 silloin (adverbi)
+   335    20592 0,034983 ehkä (adverbi)
+   336    20579 0,034961 selvittää (verbi)
+   337    20574 0,034953 pekka (erisnimi)
+   338    20545 0,034904 erilainen (adjektiivi)
+   339    20507 0,034839 tunti (substantiivi)
+   340    20412 0,034678 tapahtuma (substantiivi)
+   341    20292 0,034474 joten (adverbi)
+   342    20268 0,034433 hanke (substantiivi)
+   343    20243 0,034391 yhteinen (adjektiivi)
+   344    20241 0,034387 reuters (erisnimi)
+   345    20239 0,034384 kevät (substantiivi)
+   346    20068 0,034093 piste (substantiivi)
+   347    20061 0,034081 kokous (substantiivi)
+   348    19939 0,033874 vesi (substantiivi)
+   349    19708 0,033482 liitto (substantiivi)
+   350    19662 0,033404 tulevaisuus (substantiivi)
+   351    19593 0,033286 ääni (substantiivi)
+   352    19476 0,033088 kuusi (lukusana)
+   353    19455 0,033052 palvelu (substantiivi)
+   354    19387 0,032936 juttu (substantiivi)
+   355    19325 0,032831 kunto (substantiivi)
+   356    19293 0,032777 taso (substantiivi)
+   357    19229 0,032668 pääministeri (substantiivi)
+   358    19198 0,032615 muuttua (verbi)
+   359    19068 0,032394 usein (adverbi)
+   360    19000 0,032279 tulo (substantiivi)
+   361    18986 0,032255 keskusta (substantiivi)
+   362    18933 0,032165 joku (pronomini)
+   363    18927 0,032155 sata (lukusana)
+   364    18903 0,032114 jolloin (adverbi)
+   365    18823 0,031978 nato (erisnimi)
+   366    18813 0,031961 näkyä (verbi)
+   367    18813 0,031961 työntekijä (substantiivi)
+   368    18769 0,031886 valmis (adjektiivi)
+   369    18747 0,031849 osuus (substantiivi)
+   370    18740 0,031837 samalla (adverbi)
+   371    18708 0,031783 käsi (substantiivi)
+   372    18704 0,031776 kautta (prepositio)
+   373    18677 0,031730 heti (adverbi)
+   374    18614 0,031623 miljardi (lukusana)
+   375    18606 0,031609 poliittinen (adjektiivi)
+   376    18563 0,031536 ehtiä (verbi)
+   377    18540 0,031497 asua (verbi)
+   378    18392 0,031246 osoittaa (verbi)
+   379    18385 0,031234 lehti (substantiivi)
+   380    18380 0,031226 siellä (adverbi)
+   381    18344 0,031164 aiemmin (adverbi)
+   382    18293 0,031078 ostaa (verbi)
+   383    18292 0,031076 asiakas (substantiivi)
+   384    18235 0,030979 tällainen (adjektiivi)
+   385    18226 0,030964 henkilö (substantiivi)
+   386    18197 0,030915 sivu (substantiivi)
+   387    18098 0,030746 kirjoittaa (verbi)
+   388    18068 0,030695 klo (substantiivi)
+   389    18032 0,030634 raja (substantiivi)
+   390    18028 0,030628 toimitusjohtaja (substantiivi)
+   391    18008 0,030594 musiikki (substantiivi)
+   392    17982 0,030549 teos (substantiivi)
+   393    17966 0,030522 kasvu (substantiivi)
+   394    17740 0,030138 talous (substantiivi)
+   395    17739 0,030137 sota (substantiivi)
+   396    17669 0,030018 erityisesti (adverbi)
+   397    17619 0,029933 koti (substantiivi)
+   398    17479 0,029695 perustaa (verbi)
+   399    17436 0,029622 jakaa (verbi)
+   400    17363 0,029498 kokea (verbi)
+   401    17293 0,029379 kilometri (substantiivi)
+   402    17247 0,029301 palata (verbi)
+   403    17227 0,029267 asukas (substantiivi)
+   404    17116 0,029078 korostaa (verbi)
+   405    17089 0,029032 käytäntö (substantiivi)
+   406    17086 0,029027 paha (adjektiivi)
+   407    17085 0,029025 luoda (verbi)
+   408    16998 0,028878 vuoksi (prepositio)
+   409    16986 0,028857 vaali (substantiivi)
+   410    16860 0,028643 kari (erisnimi)
+   411    16823 0,028580 kirkko (substantiivi)
+   412    16801 0,028543 suunnitella (verbi)
+   413    16793 0,028529 hieman (adverbi)
+   414    16720 0,028405 minuutti (substantiivi)
+   415    16706 0,028382 keskustelu (substantiivi)
+   416    16642 0,028273 päättyä (verbi)
+   417    16587 0,028179 tutkia (verbi)
+   418    16515 0,028057 oikea (adjektiivi)
+   419    16425 0,027904 tapaus (substantiivi)
+   420    16410 0,027879 siis (adverbi)
+   421    16400 0,027862 osata (verbi)
+   422    16397 0,027857 eduskunta (substantiivi)
+   423    16339 0,027758 ero (substantiivi)
+   424    16233 0,027578 lipponen (erisnimi)
+   425    16185 0,027496 arvo (substantiivi)
+   426    16067 0,027296 henki (substantiivi)
+   427    16032 0,027237 vahva (adjektiivi)
+   428    15963 0,027119 yleensä (adverbi)
+   429    15894 0,027002 tukea (verbi)
+   430    15876 0,026972 molemmat (pronomini)
+   431    15822 0,026880 neuvottelu (substantiivi)
+   432    15813 0,026865 seura (substantiivi)
+   433    15696 0,026666 vaihe (substantiivi)
+   434    15634 0,026560 kuulla (verbi)
+   435    15615 0,026528 tarkoittaa (verbi)
+   436    15597 0,026498 pankki (substantiivi)
+   437    15569 0,026450 tuhat (lukusana)
+   438    15559 0,026433 kuinka (adverbi)
+   439    15554 0,026424 vetää (verbi)
+   440    15527 0,026379 kuka (pronomini)
+   441    15511 0,026351 juha (erisnimi)
+   442    15507 0,026345 koulutus (substantiivi)
+   443    15441 0,026233 lisää (adverbi)
+   444    15398 0,026159 jotta (konjunktio)
+   445    15365 0,026103 miljoona (substantiivi)
+   446    15321 0,026029 selvä (adjektiivi)
+   447    15302 0,025996 puolestaan (adverbi)
+   448    15260 0,025925 tuottaa (verbi)
+   449    15233 0,025879 nopeasti (adverbi)
+   450    15226 0,025867 ainoa (adjektiivi)
+   451    15187 0,025801 myöhemmin (adverbi)
+   452    15172 0,025776 silti (adverbi)
+   453    15156 0,025748 työpaikka (substantiivi)
+   454    15109 0,025668 vaikka (adverbi)
+   455    15046 0,025561 rakentaminen (substantiivi)
+   456    15005 0,025492 ymmärtää (verbi)
+   457    14991 0,025468 täysin (adverbi)
+   458    14934 0,025371 sen_sijaan (adverbi)
+   459    14931 0,025366 sijaita (verbi)
+   460    14915 0,025339 käsitellä (verbi)
+   461    14912 0,025334 helppo (adjektiivi)
+   462    14908 0,025327 mika (erisnimi)
+   463    14896 0,025307 merkitä (verbi)
+   464    14896 0,025307 suhde (substantiivi)
+   465    14852 0,025232 historia (substantiivi)
+   466    14852 0,025232 komissio (substantiivi)
+   467    14852 0,025232 laki (substantiivi)
+   468    14841 0,025213 selvästi (adverbi)
+   469    14826 0,025188 pelaaja (substantiivi)
+   470    14783 0,025115 tänään (adverbi)
+   471    14764 0,025082 takia (prepositio)
+   472    14744 0,025048 ratkaista (verbi)
+   473    14741 0,025043 kello (substantiivi)
+   474    14713 0,024996 muuten (adverbi)
+   475    14705 0,024982 ihan (adverbi)
+   476    14698 0,024970 näyttely (substantiivi)
+   477    14671 0,024924 yhteys (substantiivi)
+   478    14646 0,024882 todella (adverbi)
+   479    14567 0,024748 kokemus (substantiivi)
+   480    14500 0,024634 ehdokas (substantiivi)
+   481    14495 0,024625 laaja (adjektiivi)
+   482    14475 0,024591 kulua (verbi)
+   483    14472 0,024586 asunto (substantiivi)
+   484    14467 0,024578 kehitys (substantiivi)
+   485    14423 0,024503 osake (substantiivi)
+   486    14408 0,024478 huomio (substantiivi)
+   487    14395 0,024455 ranska (erisnimi)
+   488    14379 0,024428 äiti (substantiivi)
+   489    14350 0,024379 yleisö (substantiivi)
+   490    14335 0,024354 siksi (adverbi)
+   491    14295 0,024286 etsiä (verbi)
+   492    14283 0,024265 asettaa (verbi)
+   493    14266 0,024236 huono (adjektiivi)
+   494    14233 0,024180 myynti (substantiivi)
+   495    14228 0,024172 kiinni (adverbi)
+   496    14219 0,024156 pohtia (verbi)
+   497    14109 0,023970 hoito (substantiivi)
+   498    14101 0,023956 tarve (substantiivi)
+   499    14096 0,023948 yleinen (adjektiivi)
+   500    14076 0,023914 ryhtyä (verbi)
+   501    14045 0,023861 erittäin (adverbi)
+   502    14041 0,023854 tuttu (adjektiivi)
+   503    14038 0,023849 luvata (verbi)
+   504    14017 0,023813 ajatella (verbi)
+   505    14008 0,023798 suunta (substantiivi)
+   506    13998 0,023781 kukaan (pronomini)
+   507    13981 0,023752 lupa (substantiivi)
+   508    13946 0,023693 ajatus (substantiivi)
+   509    13945 0,023691 tosin (adverbi)
+   510    13944 0,023689 hankkia (verbi)
+   511    13936 0,023676 kulkea (verbi)
+   512    13909 0,023630 kysyä (verbi)
+   513    13888 0,023594 tyttö (substantiivi)
+   514    13882 0,023584 miettiä (verbi)
+   515    13872 0,023567 varten (prepositio)
+   516    13781 0,023412 edellinen (adjektiivi)
+   517    13775 0,023402 avata (verbi)
+   518    13765 0,023385 yhdessä (adverbi)
+   519    13752 0,023363 saapua (verbi)
+   520    13749 0,023358 kohde (substantiivi)
+   521    13729 0,023324 muistaa (verbi)
+   522    13724 0,023316 sm (lyhenne)
+   523    13712 0,023295 tuote (substantiivi)
+   524    13692 0,023261 kone (substantiivi)
+   525    13670 0,023224 välinen (adjektiivi)
+   526    13609 0,023120 opettaja (substantiivi)
+   527    13608 0,023118 epäillä (verbi)
+   528    13575 0,023062 ilta (substantiivi)
+   529    13567 0,023049 nokia (erisnimi)
+   530    13566 0,023047 maakunta (substantiivi)
+   531    13542 0,023006 markkinat (substantiivi)
+   532    13491 0,022920 timo (erisnimi)
+   533    13424 0,022806 yhteensä (adverbi)
+   534    13379 0,022729 kieli (substantiivi)
+   535    13348 0,022677 täällä (adverbi)
+   536    13341 0,022665 ahtisaari (erisnimi)
+   537    13317 0,022624 vuosikymmen (substantiivi)
+   538    13305 0,022604 tekijä (substantiivi)
+   539    13288 0,022575 tavallinen (adjektiivi)
+   540    13275 0,022553 kansa (substantiivi)
+   541    13257 0,022522 seitsemän (lukusana)
+   542    13255 0,022519 merkittävä (adjektiivi)
+   543    13253 0,022515 yö (substantiivi)
+   544    13237 0,022488 sana (substantiivi)
+   545    13168 0,022371 huolimatta (prepositio)
+   546    13166 0,022368 asti (prepositio)
+   547    13127 0,022301 vaihtoehto (substantiivi)
+   548    13122 0,022293 tv (lyhenne)
+   549    13104 0,022262 puuttua (verbi)
+   550    13036 0,022147 auttaa (verbi)
+   551    13016 0,022113 merkitys (substantiivi)
+   552    13014 0,022109 valmistua (verbi)
+   553    13006 0,022096 isä (substantiivi)
+   554    12993 0,022074 runsas (adjektiivi)
+   555    12968 0,022031 saakka (prepositio)
+   556    12919 0,021948 jugoslavia (erisnimi)
+   557    12896 0,021909 jukka (erisnimi)
+   558    12893 0,021904 koskaan (adverbi)
+   559    12875 0,021873 yk (lyhenne)
+   560    12853 0,021836 kerätä (verbi)
+   561    12839 0,021812 yhtä (adverbi)
+   562    12792 0,021732 kuolla (verbi)
+   563    12770 0,021695 liike (substantiivi)
+   564    12740 0,021644 takaisin (adverbi)
+   565    12735 0,021635 suunnitelma (substantiivi)
+   566    12700 0,021576 esiintyä (verbi)
+   567    12693 0,021564 vakuuttaa (verbi)
+   568    12636 0,021467 tuotanto (substantiivi)
+   569    12630 0,021457 valmentaja (substantiivi)
+   570    12592 0,021392 malli (substantiivi)
+   571    12569 0,021353 parlamentti (substantiivi)
+   572    12566 0,021348 kansalainen (substantiivi)
+   573    12550 0,021321 pää (substantiivi)
+   574    12550 0,021321 toteuttaa (verbi)
+   575    12530 0,021287 kuvata (verbi)
+   576    12525 0,021279 vanhempi (substantiivi)
+   577    12513 0,021258 esitellä (verbi)
+   578    12511 0,021255 aihe (substantiivi)
+   579    12489 0,021217 talvi (substantiivi)
+   580    12488 0,021216 vauhti (substantiivi)
+   581    12478 0,021199 yhteiskunta (substantiivi)
+   582    12464 0,021175 kiina (erisnimi)
+   583    12460 0,021168 eräs (pronomini)
+   584    12459 0,021166 siirtää (verbi)
+   585    12425 0,021109 lähettää (verbi)
+   586    12414 0,021090 lukea (verbi)
+   587    12412 0,021087 varmasti (adverbi)
+   588    12409 0,021081 kahdeksan (lukusana)
+   589    12354 0,020988 toisaalta (adverbi)
+   590    12347 0,020976 täyttää (verbi)
+   591    12343 0,020969 meno (substantiivi)
+   592    12316 0,020923 vahvistaa (verbi)
+   593    12285 0,020871 vaikutus (substantiivi)
+   594    12229 0,020776 perinteinen (adjektiivi)
+   595    12198 0,020723 kok (lyhenne)
+   596    12186 0,020703 hannu (erisnimi)
+   597    12169 0,020674 rakennus (substantiivi)
+   598    12155 0,020650 taloudellinen (adjektiivi)
+   599    12154 0,020648 kehittää (verbi)
+   600    12146 0,020635 pois (adverbi)
+   601    12134 0,020614 edustaa (verbi)
+   602    12075 0,020514 pitkään (adverbi)
+   603    12073 0,020511 kylä (substantiivi)
+   604    12034 0,020444 kanta (substantiivi)
+   605    12006 0,020397 nopea (adjektiivi)
+   606    12004 0,020393 opiskelija (substantiivi)
+   607    11947 0,020297 vai (konjunktio)
+   608    11924 0,020258 tavata (verbi)
+   609    11887 0,020195 kannalta (prepositio)
+   610    11882 0,020186 huomata (verbi)
+   611    11877 0,020178 varsin (adverbi)
+   612    11843 0,020120 jari (erisnimi)
+   613    11835 0,020106 metsä (substantiivi)
+   614    11814 0,020071 lisääntyä (verbi)
+   615    11801 0,020049 liikenne (substantiivi)
+   616    11777 0,020008 työskennellä (verbi)
+   617    11760 0,019979 kovin (adverbi)
+   618    11750 0,019962 hallita (verbi)
+   619    11722 0,019914 tutkija (substantiivi)
+   620    11678 0,019840 pyytää (verbi)
+   621    11638 0,019772 miksi (adverbi)
+   622    11617 0,019736 ensin (adverbi)
+   623    11604 0,019714 laji (substantiivi)
+   624    11598 0,019704 ohjata (verbi)
+   625    11562 0,019643 oikein (adverbi)
+   626    11553 0,019627 vastuu (substantiivi)
+   627    11534 0,019595 kansanedustaja (substantiivi)
+   628    11502 0,019541 rooli (substantiivi)
+   629    11477 0,019498 alle (adverbi)
+   630    11463 0,019474 lähinnä (adverbi)
+   631    11457 0,019464 tyytyväinen (adjektiivi)
+   632    11452 0,019456 norja (erisnimi)
+   633    11419 0,019400 järjestö (substantiivi)
+   634    11401 0,019369 paikallinen (adjektiivi)
+   635    11386 0,019344 kärsiä (verbi)
+   636    11386 0,019344 puu (substantiivi)
+   637    11379 0,019332 etu (substantiivi)
+   638    11373 0,019321 liikkua (verbi)
+   639    11342 0,019269 professori (substantiivi)
+   640    11291 0,019182 luokka (substantiivi)
+   641    11287 0,019175 täytyä (verbi)
+   642    11237 0,019090 linja (substantiivi)
+   643    11231 0,019080 julkaista (verbi)
+   644    11208 0,019041 istua (verbi)
+   645    11206 0,019038 perusteella (prepositio)
+   646    11182 0,018997 elokuu (substantiivi)
+   647    11181 0,018995 joskus (adverbi)
+   648    11162 0,018963 paavo (erisnimi)
+   649    11142 0,018929 tuo (pronomini)
+   650    11133 0,018914 martti (erisnimi)
+   651    11113 0,018880 menettää (verbi)
+   652    11107 0,018870 viettää (verbi)
+   653    11085 0,018832 panna (verbi)
+   654    11075 0,018815 selvitä (verbi)
+   655    11062 0,018793 sattua (verbi)
+   656    11032 0,018742 antti (erisnimi)
+   657    10980 0,018654 soittaa (verbi)
+   658    10960 0,018620 politiikka (substantiivi)
+   659    10950 0,018603 seutu (substantiivi)
+   660    10936 0,018579 aho (erisnimi)
+   661    10936 0,018579 kiinnostaa (verbi)
+   662    10934 0,018576 keskittyä (verbi)
+   663    10929 0,018567 oppilas (substantiivi)
+   664    10913 0,018540 kierros (substantiivi)
+   665    10911 0,018537 kesäkuu (substantiivi)
+   666    10897 0,018513 piiri (substantiivi)
+   667    10880 0,018484 avoin (adjektiivi)
+   668    10880 0,018484 valinta (substantiivi)
+   669    10871 0,018469 varsinainen (adjektiivi)
+   670    10863 0,018455 euro (substantiivi)
+   671    10852 0,018436 puhe (substantiivi)
+   672    10849 0,018431 kulttuuri (substantiivi)
+   673    10834 0,018406 perustua (verbi)
+   674    10832 0,018402 kaikkiaan (adverbi)
+   675    10802 0,018351 kutsua (verbi)
+   676    10797 0,018343 ura (substantiivi)
+   677    10779 0,018312 huoli (substantiivi)
+   678    10747 0,018258 jälleen (adverbi)
+   679    10721 0,018214 valtuusto (substantiivi)
+   680    10715 0,018204 pohjois-karjala (erisnimi)
+   681    10707 0,018190 kohti (prepositio)
+   682    10704 0,018185 vastaan (adverbi)
+   683    10689 0,018159 heikki (erisnimi)
+   684    10672 0,018131 arvella (verbi)
+   685    10589 0,017990 viro (erisnimi)
+   686    10585 0,017983 julkinen (adjektiivi)
+   687    10578 0,017971 liiga (substantiivi)
+   688    10570 0,017957 kokoomus (substantiivi)
+   689    10547 0,017918 kehittäminen (substantiivi)
+   690    10536 0,017899 pelätä (verbi)
+   691    10531 0,017891 tuore (adjektiivi)
+   692    10523 0,017877 hävitä (verbi)
+   693    10506 0,017849 ns (lyhenne)
+   694    10506 0,017849 omistaja (substantiivi)
+   695    10504 0,017845 silmä (substantiivi)
+   696    10489 0,017820 projekti (substantiivi)
+   697    10484 0,017811 yhdistys (substantiivi)
+   698    10389 0,017650 nousu (substantiivi)
+   699    10353 0,017589 uhata (verbi)
+   700    10350 0,017583 viranomainen (substantiivi)
+   701    10345 0,017575 kenttä (substantiivi)
+   702    10325 0,017541 erä (substantiivi)
+   703    10315 0,017524 mennessä (prepositio)
+   704    10307 0,017510 aikaisin (adverbi)
+   705    10278 0,017461 tarina (substantiivi)
+   706    10254 0,017420 tiukka (adjektiivi)
+   707    10252 0,017417 teatteri (substantiivi)
+   708    10239 0,017395 väki (substantiivi)
+   709    10234 0,017386 omistaa (verbi)
+   710    10226 0,017373 kerran (adverbi)
+   711    10151 0,017245 tekeminen (substantiivi)
+   712    10146 0,017237 täysi (adjektiivi)
+   713    10128 0,017206 puolesta (prepositio)
+   714    10115 0,017184 hyvinkää (erisnimi)
+   715    10114 0,017183 tässä (adverbi)
+   716    10112 0,017179 yllättää (verbi)
+   717    10104 0,017166 huomauttaa (verbi)
+   718    10096 0,017152 keskeinen (adjektiivi)
+   719    10090 0,017142 kokonaan (adverbi)
+   720    10068 0,017104 yrittäjä (substantiivi)
+   721    10053 0,017079 keskustella (verbi)
+   722    10041 0,017059 kotimainen (adjektiivi)
+   723    10033 0,017045 ministeri (substantiivi)
+   724    10015 0,017014 varsinkin (adverbi)
+   725     9995 0,016980 tietysti (adverbi)
+   726     9986 0,016965 kustannus (substantiivi)
+   727     9979 0,016953 sairaala (substantiivi)
+   728     9976 0,016948 johtua (verbi)
+   729     9955 0,016912 afp (lyhenne)
+   730     9943 0,016892 syyskuu (substantiivi)
+   731     9933 0,016875 kansallinen (adjektiivi)
+   732     9933 0,016875 merkki (substantiivi)
+   733     9932 0,016873 välillä (prepositio)
+   734     9880 0,016785 tuomita (verbi)
+   735     9879 0,016783 keskus (substantiivi)
+   736     9869 0,016766 lopettaa (verbi)
+   737     9863 0,016756 lokakuu (substantiivi)
+   738     9848 0,016731 internet (erisnimi)
+   739     9833 0,016705 markku (erisnimi)
+   740     9829 0,016698 oppia (verbi)
+   741     9802 0,016652 seppo (erisnimi)
+   742     9781 0,016617 yli (prepositio)
+   743     9753 0,016569 sekunti (substantiivi)
+   744     9743 0,016552 lopulta (adverbi)
+   745     9733 0,016535 onni (substantiivi)
+   746     9704 0,016486 mikäli (konjunktio)
+   747     9701 0,016481 parantaa (verbi)
+   748     9694 0,016469 luonto (substantiivi)
+   749     9682 0,016449 valta (substantiivi)
+   750     9673 0,016433 ympäristö (substantiivi)
+   751     9670 0,016428 pohja (substantiivi)
+   752     9653 0,016399 todellinen (adjektiivi)
+   753     9647 0,016389 myötä (prepositio)
+   754     9640 0,016377 kantaa (verbi)
+   755     9627 0,016355 toukokuu (substantiivi)
+   756     9609 0,016325 keino (substantiivi)
+   757     9603 0,016314 taiteilija (substantiivi)
+   758     9600 0,016309 aika (adverbi)
+   759     9584 0,016282 erkki (erisnimi)
+   760     9574 0,016265 uudelleen (adverbi)
+   761     9562 0,016245 sd (lyhenne)
+   762     9535 0,016199 valmistaa (verbi)
+   763     9508 0,016153 tehdas (substantiivi)
+   764     9489 0,016121 mikko (erisnimi)
+   765     9454 0,016061 edetä (verbi)
+   766     9439 0,016036 perustella (verbi)
+   767     9409 0,015985 kieltää (verbi)
+   768     9403 0,015975 suoraan (adverbi)
+   769     9403 0,015975 toimittaja (substantiivi)
+   770     9375 0,015927 lyhyt (adjektiivi)
+   771     9342 0,015871 maaliskuu (substantiivi)
+   772     9320 0,015834 nykyisin (adverbi)
+   773     9300 0,015800 estää (verbi)
+   774     9299 0,015798 pian (adverbi)
+   775     9297 0,015795 ruoka (substantiivi)
+   776     9279 0,015764 lappi (erisnimi)
+   777     9272 0,015752 toistaiseksi (adverbi)
+   778     9268 0,015745 takana (prepositio)
+   779     9259 0,015730 heinäkuu (substantiivi)
+   780     9254 0,015722 tammikuu (substantiivi)
+   781     9243 0,015703 virka (substantiivi)
+   782     9233 0,015686 edellyttää (verbi)
+   783     9188 0,015609 pelkkä (adjektiivi)
+   784     9180 0,015596 yhdistää (verbi)
+   785     9168 0,015575 kriisi (substantiivi)
+   786     9166 0,015572 moskova (erisnimi)
+   787     9159 0,015560 mainita (verbi)
+   788     9156 0,015555 neljäs (lukusana)
+   789     9152 0,015548 vara (substantiivi)
+   790     9114 0,015484 varma (adjektiivi)
+   791     9111 0,015479 tausta (substantiivi)
+   792     9103 0,015465 helposti (adverbi)
+   793     9077 0,015421 vas (lyhenne)
+   794     9075 0,015417 joulukuu (substantiivi)
+   795     9063 0,015397 aamulehti (erisnimi)
+   796     9052 0,015378 kallis (adjektiivi)
+   797     9045 0,015366 yliopisto (substantiivi)
+   798     9040 0,015358 selvitys (substantiivi)
+   799     9026 0,015334 yhteydessä (prepositio)
+   800     9016 0,015317 vaihtaa (verbi)
+   801     8984 0,015263 lääkäri (substantiivi)
+   802     8984 0,015263 vähentää (verbi)
+   803     8981 0,015258 koota (verbi)
+   804     8980 0,015256 dollari (substantiivi)
+   805     8977 0,015251 siten (adverbi)
+   806     8977 0,015251 turkki (erisnimi)
+   807     8955 0,015214 sija (substantiivi)
+   808     8947 0,015200 mestaruus (substantiivi)
+   809     8945 0,015197 italia (erisnimi)
+   810     8937 0,015183 marraskuu (substantiivi)
+   811     8932 0,015174 koko_ajan (adverbi)
+   812     8916 0,015147 saavuttaa (verbi)
+   813     8912 0,015140 sdp (lyhenne)
+   814     8892 0,015107 sijoittaa (verbi)
+   815     8891 0,015105 tilaisuus (substantiivi)
+   816     8882 0,015090 olo (substantiivi)
+   817     8875 0,015078 ystävä (substantiivi)
+   818     8870 0,015069 jalka (substantiivi)
+   819     8841 0,015020 palkinto (substantiivi)
+   820     8839 0,015016 konsertti (substantiivi)
+   821     8828 0,014998 esko (erisnimi)
+   822     8819 0,014982 rauha (substantiivi)
+   823     8789 0,014932 katsoja (substantiivi)
+   824     8776 0,014909 jorma (erisnimi)
+   825     8766 0,014892 pakolainen (substantiivi)
+   826     8765 0,014891 ulkomaa (substantiivi)
+   827     8756 0,014875 niinistö (erisnimi)
+   828     8751 0,014867 palkka (substantiivi)
+   829     8746 0,014858 keski-suomi (erisnimi)
+   830     8745 0,014857 vapaa (adjektiivi)
+   831     8736 0,014841 juhla (substantiivi)
+   832     8736 0,014841 levy (substantiivi)
+   833     8724 0,014821 vajaa (adjektiivi)
+   834     8717 0,014809 järjestelmä (substantiivi)
+   835     8713 0,014802 toimi (substantiivi)
+   836     8703 0,014785 julkisuus (substantiivi)
+   837     8702 0,014784 sulkea (verbi)
+   838     8696 0,014774 määrätä (verbi)
+   839     8644 0,014685 teko (substantiivi)
+   840     8638 0,014675 mk (lyhenne)
+   841     8635 0,014670 lasku (substantiivi)
+   842     8633 0,014666 halonen (erisnimi)
+   843     8620 0,014644 kyse (substantiivi)
+   844     8592 0,014597 vieras (substantiivi)
+   845     8589 0,014592 kaivata (verbi)
+   846     8588 0,014590 ennen (adverbi)
+   847     8578 0,014573 potilas (substantiivi)
+   848     8572 0,014563 alla (prepositio)
+   849     8556 0,014536 ovi (substantiivi)
+   850     8541 0,014510 äänestää (verbi)
+   851     8532 0,014495 pudota (verbi)
+   852     8491 0,014425 budjetti (substantiivi)
+   853     8485 0,014415 laitos (substantiivi)
+   854     8485 0,014415 varata (verbi)
+   855     8455 0,014364 lyödä (verbi)
+   856     8439 0,014337 tarkka (adjektiivi)
+   857     8438 0,014335 sijoittua (verbi)
+   858     8437 0,014334 näytelmä (substantiivi)
+   859     8431 0,014323 israel (erisnimi)
+   860     8414 0,014294 menestys (substantiivi)
+   861     8378 0,014233 arvio (substantiivi)
+   862     8364 0,014209 rata (substantiivi)
+   863     8353 0,014191 kirjailija (substantiivi)
+   864     8352 0,014189 voittaja (substantiivi)
+   865     8348 0,014182 kappale (substantiivi)
+   866     8344 0,014176 turvallisuus (substantiivi)
+   867     8277 0,014062 nimittää (verbi)
+   868     8258 0,014029 ilmestyä (verbi)
+   869     8256 0,014026 lähtö (substantiivi)
+   870     8251 0,014018 britannia (erisnimi)
+   871     8247 0,014011 ainakaan (adverbi)
+   872     8237 0,013994 ranta (substantiivi)
+   873     8230 0,013982 televisio (substantiivi)
+   874     8208 0,013944 luopua (verbi)
+   875     8203 0,013936 ulkoministeri (substantiivi)
+   876     8177 0,013892 janne (erisnimi)
+   877     8175 0,013888 heittää (verbi)
+   878     8152 0,013849 esimerkki (substantiivi)
+   879     8142 0,013832 herättää (verbi)
+   880     8139 0,013827 etenkin (adverbi)
+   881     8134 0,013819 teksti (substantiivi)
+   882     8125 0,013803 vakava (adjektiivi)
+   883     8122 0,013798 lahti (erisnimi)
+   884     8115 0,013786 taistelu (substantiivi)
+   885     8093 0,013749 sujua (verbi)
+   886     8090 0,013744 salo (erisnimi)
+   887     8089 0,013742 vaatimus (substantiivi)
+   888     8077 0,013722 sisältää (verbi)
+   889     8073 0,013715 seurakunta (substantiivi)
+   890     8066 0,013703 kaunis (adjektiivi)
+   891     8066 0,013703 tekninen (adjektiivi)
+   892     8063 0,013698 kurssi (substantiivi)
+   893     8061 0,013695 armeija (substantiivi)
+   894     8061 0,013695 työryhmä (substantiivi)
+   895     8056 0,013686 vaikeus (substantiivi)
+   896     8052 0,013679 pois (prepositio)
+   897     8046 0,013669 ehto (substantiivi)
+   898     8046 0,013669 taide (substantiivi)
+   899     8043 0,013664 kuopio (erisnimi)
+   900     8040 0,013659 ehdotus (substantiivi)
+   901     8036 0,013652 korvata (verbi)
+   902     8033 0,013647 mäkinen (erisnimi)
+   903     8032 0,013645 jeltsin (erisnimi)
+   904     8028 0,013639 jälki (substantiivi)
+   905     8011 0,013610 katu (substantiivi)
+   906     8003 0,013596 ilmeisesti (adverbi)
+   907     8003 0,013596 muoto (substantiivi)
+   908     7998 0,013588 tappio (substantiivi)
+   909     7982 0,013561 ka (lyhenne)
+   910     7978 0,013554 syyttää (verbi)
+   911     7974 0,013547 jatko (substantiivi)
+   912     7947 0,013501 hämeenlinna (erisnimi)
+   913     7945 0,013498 näkemys (substantiivi)
+   914     7932 0,013476 yhdeksän (lukusana)
+   915     7930 0,013472 väittää (verbi)
+   916     7907 0,013433 mestari (substantiivi)
+   917     7907 0,013433 virallinen (adjektiivi)
+   918     7891 0,013406 tuskin (adverbi)
+   919     7882 0,013391 suhtautua (verbi)
+   920     7877 0,013382 syödä (verbi)
+   921     7871 0,013372 mahdollisimman (adverbi)
+   922     7867 0,013365 teollisuus (substantiivi)
+   923     7861 0,013355 kilo (substantiivi)
+   924     7853 0,013341 käsittely (substantiivi)
+   925     7844 0,013326 peräti (adverbi)
+   926     7843 0,013324 ihmetellä (verbi)
+   927     7822 0,013289 vastustaa (verbi)
+   928     7801 0,013253 vaimo (substantiivi)
+   929     7782 0,013221 nauttia (verbi)
+   930     7779 0,013216 tunne (substantiivi)
+   931     7776 0,013211 säilyä (verbi)
+   932     7736 0,013143 usa (erisnimi)
+   933     7731 0,013134 helmikuu (substantiivi)
+   934     7731 0,013134 kohdata (verbi)
+   935     7723 0,013121 ote (substantiivi)
+   936     7717 0,013110 huhtikuu (substantiivi)
+   937     7700 0,013081 verrattuna (prepositio)
+   938     7684 0,013054 uhri (substantiivi)
+   939     7680 0,013047 idea (substantiivi)
+   940     7668 0,013027 suosia (verbi)
+   941     7652 0,013000 esillä (adverbi)
+   942     7642 0,012983 ohella (prepositio)
+   943     7630 0,012963 rahoitus (substantiivi)
+   944     7630 0,012963 reilu (adjektiivi)
+   945     7627 0,012957 kertyä (verbi)
+   946     7626 0,012956 viikonloppu (substantiivi)
+   947     7621 0,012947 liikevaihto (substantiivi)
+   948     7614 0,012935 kärki (substantiivi)
+   949     7607 0,012923 laulu (substantiivi)
+   950     7604 0,012918 eläke (substantiivi)
+   951     7604 0,012918 laatu (substantiivi)
+   952     7600 0,012912 risto (erisnimi)
+   953     7582 0,012881 muodostaa (verbi)
+   954     7570 0,012861 koira (substantiivi)
+   955     7561 0,012845 vähintään (adverbi)
+   956     7558 0,012840 runsaasti (adverbi)
+   957     7556 0,012837 ampua (verbi)
+   958     7549 0,012825 vastaus (substantiivi)
+   959     7543 0,012815 seuraus (substantiivi)
+   960     7538 0,012806 mukana (prepositio)
+   961     7515 0,012767 loppua (verbi)
+   962     7492 0,012728 havaita (verbi)
+   963     7491 0,012726 ylittää (verbi)
+   964     7488 0,012721 joulu (substantiivi)
+   965     7481 0,012709 painaa (verbi)
+   966     7470 0,012691 työttömyys (substantiivi)
+   967     7466 0,012684 kotimaa (substantiivi)
+   968     7443 0,012645 lähtien (prepositio)
+   969     7443 0,012645 yksityinen (adjektiivi)
+   970     7431 0,012624 väli (substantiivi)
+   971     7429 0,012621 toki (adverbi)
+   972     7427 0,012618 lista (substantiivi)
+   973     7425 0,012614 karjalainen (erisnimi)
+   974     7425 0,012614 kehittyä (verbi)
+   975     7414 0,012596 häkkinen (erisnimi)
+   976     7412 0,012592 iskeä (verbi)
+   977     7391 0,012556 valo (substantiivi)
+   978     7384 0,012545 jakso (substantiivi)
+   979     7381 0,012539 kuluttua (prepositio)
+   980     7367 0,012516 välillä (adverbi)
+   981     7364 0,012511 vuosituhat (substantiivi)
+   982     7357 0,012499 raskas (adjektiivi)
+   983     7341 0,012472 riitta (erisnimi)
+   984     7330 0,012453 toteutua (verbi)
+   985     7328 0,012449 venäläinen (substantiivi)
+   986     7327 0,012448 neuvotella (verbi)
+   987     7308 0,012415 palkita (verbi)
+   988     7289 0,012383 vastaava (adjektiivi)
+   989     7288 0,012381 kilpailla (verbi)
+   990     7284 0,012375 lausunto (substantiivi)
+   991     7282 0,012371 sinne (adverbi)
+   992     7281 0,012370 osalta (prepositio)
+   993     7276 0,012361 tietty (adjektiivi)
+   994     7270 0,012351 julkistaa (verbi)
+   995     7268 0,012348 kaupunginhallitus (substantiivi)
+   996     7265 0,012342 virhe (substantiivi)
+   997     7229 0,012281 ilkka (erisnimi)
+   998     7227 0,012278 asiantuntija (substantiivi)
+   999     7213 0,012254 kuljettaja (substantiivi)
+   1000    7210 0,012249 eurooppalainen (adjektiivi)
+   1001    7206 0,012242 amerikkalainen (adjektiivi)
+   1002    7206 0,012242 onnettomuus (substantiivi)
+   1003    7199 0,012230 eläin (substantiivi)
+   1004    7195 0,012223 uudistus (substantiivi)
+   1005    7158 0,012161 ase (substantiivi)
+   1006    7152 0,012150 korvaus (substantiivi)
+   1007    7147 0,012142 pelkästään (adverbi)
+   1008    7142 0,012133 päätyä (verbi)
+   1009    7140 0,012130 heikko (adjektiivi)
+   1010    7133 0,012118 säilyttää (verbi)
+   1011    7127 0,012108 kyetä (verbi)
+   1012    7118 0,012093 ulkomainen (adjektiivi)
+   1013    7105 0,012071 vastustaja (substantiivi)
+   1014    7099 0,012060 esiin (adverbi)
+   1015    7095 0,012054 ellei (verbi)
+   1016    7092 0,012049 käräjäoikeus (substantiivi)
+   1017    7081 0,012030 eilen (adverbi)
+   1018    7079 0,012026 harri (erisnimi)
+   1019    7067 0,012006 hieno (adjektiivi)
+   1020    7062 0,011998 ennen_kuin (konjunktio)
+   1021    7059 0,011992 työtön (substantiivi)
+   1022    7052 0,011981 ilma (substantiivi)
+   1023    7038 0,011957 new (erisnimi)
+   1024    7031 0,011945 kyseessä (adverbi)
+   1025    7022 0,011930 kiertää (verbi)
+   1026    7018 0,011923 tukholma (erisnimi)
+   1027    7017 0,011921 taitaa (verbi)
+   1028    7012 0,011913 sotilas (substantiivi)
+   1029    7009 0,011908 tunnelma (substantiivi)
+   1030    7005 0,011901 aikainen (adjektiivi)
+   1031    6999 0,011891 pääkaupunki (substantiivi)
+   1032    6994 0,011882 voimakas (adjektiivi)
+   1033    6945 0,011799 japani (erisnimi)
+   1034    6945 0,011799 kokonaisuus (substantiivi)
+   1035    6943 0,011795 tutustua (verbi)
+   1036    6923 0,011761 tunnustaa (verbi)
+   1037    6920 0,011756 venäläinen (adjektiivi)
+   1038    6915 0,011748 viesti (substantiivi)
+   1039    6910 0,011739 ravintola (substantiivi)
+   1040    6907 0,011734 ainoastaan (adverbi)
+   1041    6902 0,011726 espanja (erisnimi)
+   1042    6895 0,011714 ehdottaa (verbi)
+   1043    6890 0,011705 sallia (verbi)
+   1044    6883 0,011693 paljastaa (verbi)
+   1045    6875 0,011680 tshetshenia (erisnimi)
+   1046    6874 0,011678 kasvattaa (verbi)
+   1047    6867 0,011666 vero (substantiivi)
+   1048    6866 0,011665 aamu (substantiivi)
+   1049    6864 0,011661 clinton (erisnimi)
+   1050    6853 0,011642 vuosittain (adverbi)
+   1051    6841 0,011622 kuolema (substantiivi)
+   1052    6836 0,011614 englanti (erisnimi)
+   1053    6833 0,011608 pinta (substantiivi)
+   1054    6832 0,011607 kadota (verbi)
+   1055    6829 0,011602 opiskella (verbi)
+   1056    6821 0,011588 alle (prepositio)
+   1057    6821 0,011588 taito (substantiivi)
+   1058    6794 0,011542 huomattavasti (adverbi)
+   1059    6788 0,011532 henkilökunta (substantiivi)
+   1060    6786 0,011529 ari (erisnimi)
+   1061    6786 0,011529 nykyään (adverbi)
+   1062    6782 0,011522 aiempi (adjektiivi)
+   1063    6781 0,011520 puute (substantiivi)
+   1064    6780 0,011518 ohjaaja (substantiivi)
+   1065    6780 0,011518 parhaillaan (adverbi)
+   1066    6776 0,011512 laatia (verbi)
+   1067    6771 0,011503 tuolloin (adverbi)
+   1068    6770 0,011501 juosta (verbi)
+   1069    6769 0,011500 vierailla (verbi)
+   1070    6763 0,011490 halpa (adjektiivi)
+   1071    6758 0,011481 pari (substantiivi)
+   1072    6756 0,011478 vaara (substantiivi)
+   1073    6755 0,011476 laittaa (verbi)
+   1074    6753 0,011473 yksin (adverbi)
+   1075    6752 0,011471 em (lyhenne)
+   1076    6752 0,011471 poistaa (verbi)
+   1077    6748 0,011464 lähellä (prepositio)
+   1078    6747 0,011462 juhani (erisnimi)
+   1079    6744 0,011457 turha (adjektiivi)
+   1080    6734 0,011440 esille (adverbi)
+   1081    6729 0,011432 ikä (substantiivi)
+   1082    6698 0,011379 maksu (substantiivi)
+   1083    6692 0,011369 riski (substantiivi)
+   1084    6679 0,011347 tanska (erisnimi)
+   1085    6668 0,011328 työnantaja (substantiivi)
+   1086    6665 0,011323 luovuttaa (verbi)
+   1087    6664 0,011321 pentti (erisnimi)
+   1088    6661 0,011316 myönteinen (adjektiivi)
+   1089    6652 0,011301 joko (konjunktio)
+   1090    6649 0,011296 kylmä (adjektiivi)
+   1091    6646 0,011291 numero (substantiivi)
+   1092    6637 0,011276 vanhus (substantiivi)
+   1093    6630 0,011264 liikaa (adverbi)
+   1094    6625 0,011255 huippukokous (substantiivi)
+   1095    6615 0,011238 eteenpäin (adverbi)
+   1096    6596 0,011206 selkeä (adjektiivi)
+   1097    6592 0,011199 läpi (adverbi)
+   1098    6584 0,011185 osapuoli (substantiivi)
+   1099    6577 0,011174 samanlainen (adjektiivi)
+   1100    6570 0,011162 korjata (verbi)
+   1101    6565 0,011153 vuosisata (substantiivi)
+   1102    6564 0,011151 painottaa (verbi)
+   1103    6553 0,011133 jatkossa (adverbi)
+   1104    6549 0,011126 mielipide (substantiivi)
+   1105    6549 0,011126 taistella (verbi)
+   1106    6547 0,011123 pohjola (erisnimi)
+   1107    6546 0,011121 jussi (erisnimi)
+   1108    6540 0,011111 kuunnella (verbi)
+   1109    6533 0,011099 juhlia (verbi)
+   1110    6529 0,011092 lontoo (erisnimi)
+   1111    6525 0,011085 samoin (adverbi)
+   1112    6522 0,011080 keskimäärin (adverbi)
+   1113    6511 0,011061 taata (verbi)
+   1114    6506 0,011053 kuluttaja (substantiivi)
+   1115    6506 0,011053 tuomio (substantiivi)
+   1116    6498 0,011039 erityisen (adverbi)
+   1117    6493 0,011031 lopullinen (adjektiivi)
+   1118    6488 0,011022 väärä (adjektiivi)
+   1119    6484 0,011016 kesken (prepositio)
+   1120    6480 0,011009 laulaa (verbi)
+   1121    6476 0,011002 paperi (substantiivi)
+   1122    6465 0,010983 esa (erisnimi)
+   1123    6455 0,010966 yllätys (substantiivi)
+   1124    6454 0,010965 toimittaa (verbi)
+   1125    6452 0,010961 viides (lukusana)
+   1126    6445 0,010949 harkita (verbi)
+   1127    6435 0,010932 tekniikka (substantiivi)
+   1128    6424 0,010914 toiseksi (adverbi)
+   1129    6420 0,010907 kumpikin (pronomini)
+   1130    6395 0,010864 pertti (erisnimi)
+   1131    6390 0,010856 verkko (substantiivi)
+   1132    6386 0,010849 jatkuvasti (adverbi)
+   1133    6386 0,010849 mihin (adverbi)
+   1134    6385 0,010847 jaksaa (verbi)
+   1135    6377 0,010834 opetus (substantiivi)
+   1136    6374 0,010829 kirjoittaja (substantiivi)
+   1137    6373 0,010827 selittää (verbi)
+   1138    6367 0,010817 pirkanmaa (erisnimi)
+   1139    6359 0,010803 suosio (substantiivi)
+   1140    6343 0,010776 lääni (substantiivi)
+   1141    6341 0,010773 vastainen (adjektiivi)
+   1142    6319 0,010735 kaatua (verbi)
+   1143    6317 0,010732 vuoro (substantiivi)
+   1144    6310 0,010720 kokeilla (verbi)
+   1145    6306 0,010713 isku (substantiivi)
+   1146    6300 0,010703 sami (erisnimi)
+   1147    6292 0,010689 melko (adverbi)
+   1148    6283 0,010674 ry (lyhenne)
+   1149    6281 0,010671 kattaa (verbi)
+   1150    6274 0,010659 pakko (substantiivi)
+   1151    6266 0,010645 kokoontua (verbi)
+   1152    6248 0,010615 pasi (erisnimi)
+   1153    6246 0,010611 summa (substantiivi)
+   1154    6244 0,010608 pääjohtaja (substantiivi)
+   1155    6241 0,010603 tarjolla (adverbi)
+   1156    6217 0,010562 melkein (adverbi)
+   1157    6211 0,010552 aikuinen (substantiivi)
+   1158    6208 0,010547 mitali (substantiivi)
+   1159    6206 0,010543 henkilöstö (substantiivi)
+   1160    6198 0,010530 tontti (substantiivi)
+   1161    6196 0,010526 millainen (adjektiivi)
+   1162    6195 0,010525 peruste (substantiivi)
+   1163    6188 0,010513 valtakunnallinen (adjektiivi)
+   1164    6186 0,010509 edessä (prepositio)
+   1165    6176 0,010492 kiinnostunut (adjektiivi)
+   1166    6151 0,010450 viitata (verbi)
+   1167    6144 0,010438 suostua (verbi)
+   1168    6137 0,010426 arvostaa (verbi)
+   1169    6133 0,010419 osua (verbi)
+   1170    6132 0,010418 lukio (substantiivi)
+   1171    6124 0,010404 valmistella (verbi)
+   1172    6120 0,010397 viimeksi (adverbi)
+   1173    6094 0,010353 kuollut (adjektiivi)
+   1174    6093 0,010351 päälle (prepositio)
+   1175    6090 0,010346 varmistaa (verbi)
+   1176    6078 0,010326 torjua (verbi)
+   1177    6067 0,010307 aikataulu (substantiivi)
+   1178    6066 0,010305 suorittaa (verbi)
+   1179    6065 0,010304 pitkälle (adverbi)
+   1180    6055 0,010287 mahtua (verbi)
+   1181    6053 0,010283 sääntö (substantiivi)
+   1182    6048 0,010275 normaali (adjektiivi)
+   1183    6046 0,010271 tavara (substantiivi)
+   1184    6044 0,010268 menestyä (verbi)
+   1185    6043 0,010266 rikos (substantiivi)
+   1186    6030 0,010244 aikaan (adverbi)
+   1187    6021 0,010229 ulos (adverbi)
+   1188    6020 0,010227 suora (adjektiivi)
+   1189    6010 0,010210 finaali (substantiivi)
+   1190    5988 0,010173 kääntyä (verbi)
+   1191    5984 0,010166 kunnia (substantiivi)
+   1192    5983 0,010164 käynti (substantiivi)
+   1193    5971 0,010144 kaveri (substantiivi)
+   1194    5956 0,010119 todennäköisesti (adverbi)
+   1195    5952 0,010112 sieltä (adverbi)
+   1196    5951 0,010110 vahinko (substantiivi)
+   1197    5946 0,010102 virkamies (substantiivi)
+   1198    5940 0,010091 tehokas (adjektiivi)
+   1199    5937 0,010086 perinne (substantiivi)
+   1200    5936 0,010085 mukava (adjektiivi)
+   1201    5924 0,010064 valittaa (verbi)
+   1202    5917 0,010052 saari (substantiivi)
+   1203    5916 0,010051 uutinen (substantiivi)
+   1204    5914 0,010047 kimmo (erisnimi)
+   1205    5914 0,010047 york (erisnimi)
+   1206    5912 0,010044 muistella (verbi)
+   1207    5912 0,010044 raimo (erisnimi)
+   1208    5904 0,010030 kysyntä (substantiivi)
+   1209    5901 0,010025 näyttelijä (substantiivi)
+   1210    5896 0,010017 välttämättä (adverbi)
+   1211    5895 0,010015 unohtaa (verbi)
+   1212    5882 0,009993 kiinnittää (verbi)
+   1213    5880 0,009989 poliitikko (substantiivi)
+   1214    5877 0,009984 demari (substantiivi)
+   1215    5876 0,009983 liisa (erisnimi)
+   1216    5869 0,009971 loukkaantua (verbi)
+   1217    5865 0,009964 jäsenmaa (substantiivi)
+   1218    5855 0,009947 mitata (verbi)
+   1219    5854 0,009945 huolehtia (verbi)
+   1220    5851 0,009940 kotona (adverbi)
+   1221    5841 0,009923 naapuri (substantiivi)
+   1222    5838 0,009918 paine (substantiivi)
+   1223    5828 0,009901 sisällä (prepositio)
+   1224    5825 0,009896 puhdas (adjektiivi)
+   1225    5808 0,009867 mielenkiintoinen (adjektiivi)
+   1226    5808 0,009867 ruotsalainen (adjektiivi)
+   1227    5801 0,009855 mukaisesti (prepositio)
+   1228    5800 0,009854 yksikkö (substantiivi)
+   1229    5798 0,009850 maaseutu (substantiivi)
+   1230    5796 0,009847 muu_kuin (pronomini)
+   1231    5796 0,009847 osasto (substantiivi)
+   1232    5782 0,009823 sydän (substantiivi)
+   1233    5779 0,009818 laite (substantiivi)
+   1234    5776 0,009813 raportti (substantiivi)
+   1235    5773 0,009808 kukin (pronomini)
+   1236    5772 0,009806 bryssel (erisnimi)
+   1237    5768 0,009799 henkilökohtainen (adjektiivi)
+   1238    5764 0,009792 intia (erisnimi)
+   1239    5753 0,009774 samaan_aikaan (adverbi)
+   1240    5753 0,009774 väri (substantiivi)
+   1241    5750 0,009769 lentää (verbi)
+   1242    5735 0,009743 niinkuin (konjunktio)
+   1243    5727 0,009730 valvoa (verbi)
+   1244    5719 0,009716 jää (substantiivi)
+   1245    5713 0,009706 piha (substantiivi)
+   1246    5712 0,009704 sisäinen (adjektiivi)
+   1247    5710 0,009701 marko (erisnimi)
+   1248    5707 0,009696 haaste (substantiivi)
+   1249    5706 0,009694 erota (verbi)
+   1250    5702 0,009687 vaihdella (verbi)
+   1251    5695 0,009675 tyyli (substantiivi)
+   1252    5686 0,009660 kuu (substantiivi)
+   1253    5685 0,009658 nieminen (erisnimi)
+   1254    5685 0,009658 tytär (substantiivi)
+   1255    5669 0,009631 ykkönen (substantiivi)
+   1256    5667 0,009628 päässä (prepositio)
+   1257    5665 0,009624 hämäläinen (erisnimi)
+   1258    5657 0,009611 noudattaa (verbi)
+   1259    5654 0,009606 kuljettaa (verbi)
+   1260    5653 0,009604 käsitys (substantiivi)
+   1261    5638 0,009578 näkökulma (substantiivi)
+   1262    5635 0,009573 luulla (verbi)
+   1263    5635 0,009573 tuuli (substantiivi)
+   1264    5633 0,009570 opettaa (verbi)
+   1265    5631 0,009566 ylimääräinen (adjektiivi)
+   1266    5629 0,009563 hyöty (substantiivi)
+   1267    5629 0,009563 taakse (prepositio)
+   1268    5625 0,009556 isäntä (substantiivi)
+   1269    5625 0,009556 tarja (erisnimi)
+   1270    5623 0,009553 muualla (adverbi)
+   1271    5618 0,009544 vähäinen (adjektiivi)
+   1272    5617 0,009543 ennätys (substantiivi)
+   1273    5604 0,009521 kauan (adverbi)
+   1274    5604 0,009521 suu (substantiivi)
+   1275    5604 0,009521 sähkö (substantiivi)
+   1276    5601 0,009515 uusia (verbi)
+   1277    5591 0,009498 kala (substantiivi)
+   1278    5591 0,009498 yhteisö (substantiivi)
+   1279    5585 0,009488 saksalainen (adjektiivi)
+   1280    5582 0,009483 investointi (substantiivi)
+   1281    5582 0,009483 pöytä (substantiivi)
+   1282    5581 0,009481 turnaus (substantiivi)
+   1283    5578 0,009476 nimetä (verbi)
+   1284    5575 0,009471 kohtalo (substantiivi)
+   1285    5573 0,009468 tietokone (substantiivi)
+   1286    5570 0,009463 palo (substantiivi)
+   1287    5557 0,009441 maatalous (substantiivi)
+   1288    5555 0,009437 nimenomaan (adverbi)
+   1289    5554 0,009436 miljardi (substantiivi)
+   1290    5547 0,009424 aine (substantiivi)
+   1291    5536 0,009405 yhtään (adverbi)
+   1292    5533 0,009400 itävalta (erisnimi)
+   1293    5529 0,009393 tarkasti (adverbi)
+   1294    5528 0,009391 vihreä (substantiivi)
+   1295    5527 0,009390 toive (substantiivi)
+   1296    5523 0,009383 tamperelainen (adjektiivi)
+   1297    5517 0,009373 petri (erisnimi)
+   1298    5511 0,009363 kilpailija (substantiivi)
+   1299    5507 0,009356 haastattelu (substantiivi)
+   1300    5503 0,009349 sosiaali (yhdyssanan osa)
+   1301    5501 0,009346 paikkakunta (substantiivi)
+   1302    5489 0,009325 kehottaa (verbi)
+   1303    5485 0,009318 rakkaus (substantiivi)
+   1304    5483 0,009315 serbi (substantiivi)
+   1305    5480 0,009310 korko (substantiivi)
+   1306    5480 0,009310 vesa (erisnimi)
+   1307    5477 0,009305 jaakko (erisnimi)
+   1308    5477 0,009305 turvata (verbi)
+   1309    5468 0,009290 suunnata (verbi)
+   1310    5467 0,009288 auki (adverbi)
+   1311    5458 0,009273 unioni (substantiivi)
+   1312    5446 0,009252 henkinen (adjektiivi)
+   1313    5443 0,009247 harvinainen (adjektiivi)
+   1314    5439 0,009240 harjoitus (substantiivi)
+   1315    5439 0,009240 luottaa (verbi)
+   1316    5434 0,009232 verotus (substantiivi)
+   1317    5432 0,009228 kohtaan (prepositio)
+   1318    5431 0,009227 korhonen (erisnimi)
+   1319    5422 0,009211 lippu (substantiivi)
+   1320    5417 0,009203 pallo (substantiivi)
+   1321    5416 0,009201 yhtye (substantiivi)
+   1322    5414 0,009198 vaihtua (verbi)
+   1323    5408 0,009188 yksittäinen (adjektiivi)
+   1324    5403 0,009179 albaani (substantiivi)
+   1325    5395 0,009165 määritellä (verbi)
+   1326    5392 0,009160 enemmistö (substantiivi)
+   1327    5391 0,009159 sisältö (substantiivi)
+   1328    5389 0,009155 leikata (verbi)
+   1329    5387 0,009152 halli (substantiivi)
+   1330    5382 0,009143 vaihde (substantiivi)
+   1331    5380 0,009140 the (erisnimi)
+   1332    5379 0,009138 rovaniemi (erisnimi)
+   1333    5377 0,009135 lääke (substantiivi)
+   1334    5374 0,009130 palvella (verbi)
+   1335    5356 0,009099 laina (substantiivi)
+   1336    5349 0,009087 väkivalta (substantiivi)
+   1337    5348 0,009086 silta (substantiivi)
+   1338    5347 0,009084 hylätä (verbi)
+   1339    5347 0,009084 paikalle (adverbi)
+   1340    5345 0,009081 aste (substantiivi)
+   1341    5345 0,009081 juuri (substantiivi)
+   1342    5336 0,009065 suunnittelu (substantiivi)
+   1343    5330 0,009055 syyte (substantiivi)
+   1344    5328 0,009052 tapio (erisnimi)
+   1345    5322 0,009041 maalivahti (substantiivi)
+   1346    5321 0,009040 tahti (substantiivi)
+   1347    5315 0,009030 mahdoton (adjektiivi)
+   1348    5306 0,009014 jarmo (erisnimi)
+   1349    5306 0,009014 syvä (adjektiivi)
+   1350    5305 0,009013 kouluttaa (verbi)
+   1351    5304 0,009011 lämmin (adjektiivi)
+   1352    5302 0,009008 hevonen (substantiivi)
+   1353    5297 0,008999 karjala (erisnimi)
+   1354    5295 0,008996 julistaa (verbi)
+   1355    5283 0,008975 mukainen (adjektiivi)
+   1356    5282 0,008974 sosiaalinen (adjektiivi)
+   1357    5274 0,008960 maailmancup (substantiivi)
+   1358    5262 0,008940 pietari (erisnimi)
+   1359    5261 0,008938 ennustaa (verbi)
+   1360    5254 0,008926 kohdalla (prepositio)
+   1361    5254 0,008926 pori (erisnimi)
+   1362    5254 0,008926 turkulainen (adjektiivi)
+   1363    5245 0,008911 ansiosta (prepositio)
+   1364    5235 0,008894 lainkaan (adverbi)
+   1365    5230 0,008885 urheilu (substantiivi)
+   1366    5228 0,008882 neuvostoliitto (erisnimi)
+   1367    5226 0,008878 seinä (substantiivi)
+   1368    5213 0,008856 huume (substantiivi)
+   1369    5213 0,008856 pelko (substantiivi)
+   1370    5208 0,008848 cup (substantiivi)
+   1371    5206 0,008844 vierailu (substantiivi)
+   1372    5199 0,008833 muodostua (verbi)
+   1373    5190 0,008817 työllistää (verbi)
+   1374    5187 0,008812 liki (adverbi)
+   1375    5186 0,008810 virtanen (erisnimi)
+   1376    5180 0,008800 purkaa (verbi)
+   1377    5178 0,008797 kunnanhallitus (substantiivi)
+   1378    5174 0,008790 houkutella (verbi)
+   1379    5169 0,008782 tyhjä (adjektiivi)
+   1380    5168 0,008780 lumi (substantiivi)
+   1381    5165 0,008775 indonesia (erisnimi)
+   1382    5160 0,008766 hotelli (substantiivi)
+   1383    5160 0,008766 päivi (erisnimi)
+   1384    5157 0,008761 ilo (substantiivi)
+   1385    5157 0,008761 yltää (verbi)
+   1386    5154 0,008756 kirjasto (substantiivi)
+   1387    5151 0,008751 edessä (adverbi)
+   1388    5146 0,008742 jouko (erisnimi)
+   1389    5142 0,008736 sinä (pronomini)
+   1390    5140 0,008732 aikanaan (adverbi)
+   1391    5125 0,008707 homma (substantiivi)
+   1392    5111 0,008683 arvostella (verbi)
+   1393    5109 0,008680 tähti (substantiivi)
+   1394    5098 0,008661 kulta (substantiivi)
+   1395    5097 0,008659 olli (erisnimi)
+   1396    5092 0,008651 harjoitella (verbi)
+   1397    5090 0,008647 kohdistua (verbi)
+   1398    5088 0,008644 vaarallinen (adjektiivi)
+   1399    5087 0,008642 puhelin (substantiivi)
+   1400    5083 0,008635 katsella (verbi)
+   1401    5080 0,008630 kehua (verbi)
+   1402    5073 0,008618 v (lyhenne)
+   1403    5073 0,008618 ville (erisnimi)
+   1404    5072 0,008617 tasavalta (substantiivi)
+   1405    5070 0,008613 tavoitella (verbi)
+   1406    5069 0,008612 huippu (substantiivi)
+   1407    5068 0,008610 eero (erisnimi)
+   1408    5068 0,008610 palauttaa (verbi)
+   1409    5063 0,008601 omistus (substantiivi)
+   1410    5056 0,008590 valvonta (substantiivi)
+   1411    5053 0,008584 kysely (substantiivi)
+   1412    5053 0,008584 päättäjä (substantiivi)
+   1413    5052 0,008583 konserni (substantiivi)
+   1414    5050 0,008579 halu (substantiivi)
+   1415    5050 0,008579 leikkaus (substantiivi)
+   1416    5048 0,008576 hallinto (substantiivi)
+   1417    5044 0,008569 orkesteri (substantiivi)
+   1418    5042 0,008566 romaani (substantiivi)
+   1419    5041 0,008564 alkaen (prepositio)
+   1420    5041 0,008564 uskaltaa (verbi)
+   1421    5032 0,008549 hankala (adjektiivi)
+   1422    5032 0,008549 iltapäivä (substantiivi)
+   1423    5030 0,008545 vienti (substantiivi)
+   1424    5024 0,008535 teema (substantiivi)
+   1425    5021 0,008530 kiista (substantiivi)
+   1426    5020 0,008528 pörssi (substantiivi)
+   1427    5018 0,008525 allekirjoittaa (verbi)
+   1428    5010 0,008511 ympäri (prepositio)
+   1429    5009 0,008510 leiri (substantiivi)
+   1430    5005 0,008503 lautakunta (substantiivi)
+   1431    5005 0,008503 musta (adjektiivi)
+   1432    5004 0,008501 lieksa (erisnimi)
+   1433    5000 0,008494 kannatus (substantiivi)
+   1434    4998 0,008491 rakenne (substantiivi)
+   1435    4995 0,008486 läpi (prepositio)
+   1436    4995 0,008486 varoittaa (verbi)
+   1437    4988 0,008474 tottua (verbi)
+   1438    4986 0,008471 kaleva (erisnimi)
+   1439    4980 0,008460 sää (substantiivi)
+   1440    4976 0,008454 kirjata (verbi)
+   1441    4973 0,008449 mitä (adverbi)
+   1442    4973 0,008449 puolustaa (verbi)
+   1443    4967 0,008438 ministeriö (substantiivi)
+   1444    4966 0,008437 koivisto (erisnimi)
+   1445    4965 0,008435 kanada (erisnimi)
+   1446    4961 0,008428 vedota (verbi)
+   1447    4955 0,008418 hyökkäys (substantiivi)
+   1448    4953 0,008415 hehtaari (substantiivi)
+   1449    4949 0,008408 ruotsalainen (substantiivi)
+   1450    4935 0,008384 vähetä (verbi)
+   1451    4928 0,008372 puola (erisnimi)
+   1452    4925 0,008367 harrastus (substantiivi)
+   1453    4924 0,008365 helpottaa (verbi)
+   1454    4922 0,008362 loma (substantiivi)
+   1455    4919 0,008357 sveitsi (erisnimi)
+   1456    4914 0,008348 anna (erisnimi)
+   1457    4912 0,008345 juna (substantiivi)
+   1458    4909 0,008340 tietenkin (adverbi)
+   1459    4908 0,008338 kaataa (verbi)
+   1460    4906 0,008335 sijoitus (substantiivi)
+   1461    4893 0,008313 pidättää (verbi)
+   1462    4890 0,008308 tilasto (substantiivi)
+   1463    4888 0,008304 sali (substantiivi)
+   1464    4886 0,008301 pistää (verbi)
+   1465    4885 0,008299 asenne (substantiivi)
+   1466    4872 0,008277 lehtinen (erisnimi)
+   1467    4872 0,008277 maisema (substantiivi)
+   1468    4871 0,008275 meri (substantiivi)
+   1469    4867 0,008268 tahtoa (verbi)
+   1470    4866 0,008267 aluksi (adverbi)
+   1471    4862 0,008260 nimittäin (adverbi)
+   1472    4860 0,008257 perustaminen (substantiivi)
+   1473    4853 0,008245 tarjous (substantiivi)
+   1474    4847 0,008235 mielestä (prepositio)
+   1475    4847 0,008235 sen_verran (adverbi)
+   1476    4842 0,008226 leena (erisnimi)
+   1477    4834 0,008212 odotus (substantiivi)
+   1478    4831 0,008207 periaate (substantiivi)
+   1479    4830 0,008206 kääntää (verbi)
+   1480    4828 0,008202 alueellinen (adjektiivi)
+   1481    4820 0,008189 velka (substantiivi)
+   1482    4817 0,008184 turvallinen (adjektiivi)
+   1483    4814 0,008178 rikkoa (verbi)
+   1484    4812 0,008175 tarpeeksi (adverbi)
+   1485    4811 0,008173 materiaali (substantiivi)
+   1486    4810 0,008172 jäsenyys (substantiivi)
+   1487    4810 0,008172 laiva (substantiivi)
+   1488    4809 0,008170 museo (substantiivi)
+   1489    4805 0,008163 kirje (substantiivi)
+   1490    4800 0,008155 länsi (substantiivi)
+   1491    4799 0,008153 osaaminen (substantiivi)
+   1492    4797 0,008150 todellisuus (substantiivi)
+   1493    4796 0,008148 äänestys (substantiivi)
+   1494    4795 0,008146 arvokas (adjektiivi)
+   1495    4795 0,008146 laitinen (erisnimi)
+   1496    4792 0,008141 järvi (substantiivi)
+   1497    4791 0,008139 suomi (substantiivi)
+   1498    4786 0,008131 laajentaa (verbi)
+   1499    4785 0,008129 palvelus (substantiivi)
+   1500    4781 0,008122 kaupunginjohtaja (substantiivi)
+   1501    4780 0,008121 matkustaja (substantiivi)
+   1502    4777 0,008116 välittää (verbi)
+   1503    4772 0,008107 säästö (substantiivi)
+   1504    4770 0,008104 uhka (substantiivi)
+   1505    4768 0,008100 kiinteistö (substantiivi)
+   1506    4768 0,008100 tähän (adverbi)
+   1507    4767 0,008099 ennakoida (verbi)
+   1508    4766 0,008097 kanssa (adverbi)
+   1509    4762 0,008090 kohta (substantiivi)
+   1510    4762 0,008090 pohjoinen (adjektiivi)
+   1511    4761 0,008088 espoo (erisnimi)
+   1512    4757 0,008082 varapuheenjohtaja (substantiivi)
+   1513    4746 0,008063 kelvata (verbi)
+   1514    4746 0,008063 pohjoinen (substantiivi)
+   1515    4726 0,008029 osoittautua (verbi)
+   1516    4722 0,008022 riittävästi (adverbi)
+   1517    4716 0,008012 edellytys (substantiivi)
+   1518    4715 0,008010 viime_aikoina (adverbi)
+   1519    4714 0,008009 erottaa (verbi)
+   1520    4713 0,008007 merita (erisnimi)
+   1521    4708 0,007998 jouni (erisnimi)
+   1522    4707 0,007997 veikko (erisnimi)
+   1523    4704 0,007992 rehtori (substantiivi)
+   1524    4703 0,007990 käynnistyä (verbi)
+   1525    4690 0,007968 mahdollisesti (adverbi)
+   1526    4690 0,007968 vinkki (substantiivi)
+   1527    4688 0,007964 urheilija (substantiivi)
+   1528    4686 0,007961 erityinen (adjektiivi)
+   1529    4686 0,007961 kommentoida (verbi)
+   1530    4685 0,007959 kevyt (adjektiivi)
+   1531    4680 0,007951 väestö (substantiivi)
+   1532    4677 0,007946 rehn (erisnimi)
+   1533    4671 0,007936 reitti (substantiivi)
+   1534    4663 0,007922 järjestely (substantiivi)
+   1535    4663 0,007922 poiketa (verbi)
+   1536    4658 0,007913 usko (substantiivi)
+   1537    4655 0,007908 melkoinen (adjektiivi)
+   1538    4654 0,007907 hyväksi (prepositio)
+   1539    4649 0,007898 parikymmentä (lukusana)
+   1540    4649 0,007898 talli (substantiivi)
+   1541    4646 0,007893 edistää (verbi)
+   1542    4636 0,007876 posti (substantiivi)
+   1543    4632 0,007869 berliini (erisnimi)
+   1544    4632 0,007869 ilmoitus (substantiivi)
+   1545    4632 0,007869 ranskalainen (adjektiivi)
+   1546    4632 0,007869 sairaus (substantiivi)
+   1547    4630 0,007866 työelämä (substantiivi)
+   1548    4627 0,007861 joka_tapauksessa (adverbi)
+   1549    4625 0,007857 tarttua (verbi)
+   1550    4623 0,007854 päästää (verbi)
+   1551    4623 0,007854 rivi (substantiivi)
+   1552    4619 0,007847 taho (substantiivi)
+   1553    4615 0,007840 valtava (adjektiivi)
+   1554    4613 0,007837 kiinnostus (substantiivi)
+   1555    4612 0,007835 itsenäinen (adjektiivi)
+   1556    4601 0,007817 hyödyntää (verbi)
+   1557    4597 0,007810 arkisto (substantiivi)
+   1558    4591 0,007800 verrata (verbi)
+   1559    4587 0,007793 ohje (substantiivi)
+   1560    4584 0,007788 asettua (verbi)
+   1561    4584 0,007788 toimisto (substantiivi)
+   1562    4582 0,007784 matkustaa (verbi)
+   1563    4579 0,007779 levitä (verbi)
+   1564    4578 0,007778 kyky (substantiivi)
+   1565    4573 0,007769 keskellä (prepositio)
+   1566    4571 0,007766 kolmannes (substantiivi)
+   1567    4571 0,007766 pelastaa (verbi)
+   1568    4559 0,007745 porukka (substantiivi)
+   1569    4558 0,007744 etukäteen (adverbi)
+   1570    4545 0,007721 maria (erisnimi)
+   1571    4541 0,007715 pääosa (substantiivi)
+   1572    4539 0,007711 paikalla (adverbi)
+   1573    4533 0,007701 runo (substantiivi)
+   1574    4524 0,007686 vähä (adjektiivi)
+   1575    4512 0,007665 pariisi (erisnimi)
+   1576    4509 0,007660 työllisyys (substantiivi)
+   1577    4507 0,007657 alkuperäinen (adjektiivi)
+   1578    4506 0,007655 ahonen (erisnimi)
+   1579    4503 0,007650 lukija (substantiivi)
+   1580    4502 0,007648 tasainen (adjektiivi)
+   1581    4498 0,007642 maine (substantiivi)
+   1582    4495 0,007636 lauri (erisnimi)
+   1583    4485 0,007620 silloin_kun (konjunktio)
+   1584    4483 0,007616 kiire (substantiivi)
+   1585    4482 0,007614 luonnehtia (verbi)
+   1586    4479 0,007609 katto (substantiivi)
+   1587    4479 0,007609 puolustus (substantiivi)
+   1588    4468 0,007591 ulkopuolella (prepositio)
+   1589    4466 0,007587 vantaa (erisnimi)
+   1590    4463 0,007582 täynnä (adverbi)
+   1591    4462 0,007580 dpa (lyhenne)
+   1592    4462 0,007580 etelä (substantiivi)
+   1593    4461 0,007579 kuvitella (verbi)
+   1594    4452 0,007563 kortti (substantiivi)
+   1595    4450 0,007560 käyttäjä (substantiivi)
+   1596    4447 0,007555 päiväkoti (substantiivi)
+   1597    4447 0,007555 vaasa (erisnimi)
+   1598    4442 0,007546 amerikkalainen (substantiivi)
+   1599    4442 0,007546 tommi (erisnimi)
+   1600    4439 0,007541 raisio (erisnimi)
+   1601    4437 0,007538 muisto (substantiivi)
+   1602    4436 0,007536 lintu (substantiivi)
+   1603    4425 0,007518 salminen (erisnimi)
+   1604    4424 0,007516 tuhota (verbi)
+   1605    4423 0,007514 kannattaja (substantiivi)
+   1606    4417 0,007504 john (erisnimi)
+   1607    4412 0,007495 sitoutua (verbi)
+   1608    4411 0,007494 kiistää (verbi)
+   1609    4408 0,007489 ammatti (substantiivi)
+   1610    4408 0,007489 tappaa (verbi)
+   1611    4407 0,007487 satama (substantiivi)
+   1612    4401 0,007477 paeta (verbi)
+   1613    4398 0,007472 terveys (substantiivi)
+   1614    4394 0,007465 bändi (substantiivi)
+   1615    4394 0,007465 harrastaa (verbi)
+   1616    4391 0,007460 lakko (substantiivi)
+   1617    4385 0,007450 kalevi (erisnimi)
+   1618    4385 0,007450 pärjätä (verbi)
+   1619    4381 0,007443 työvoima (substantiivi)
+   1620    4379 0,007439 astua (verbi)
+   1621    4375 0,007433 hauska (adjektiivi)
+   1622    4371 0,007426 kampanja (substantiivi)
+   1623    4371 0,007426 tosi (substantiivi)
+   1624    4365 0,007416 milloin (adverbi)
+   1625    4365 0,007416 uosukainen (erisnimi)
+   1626    4363 0,007412 turunen (erisnimi)
+   1627    4360 0,007407 alus (substantiivi)
+   1628    4359 0,007405 hollanti (erisnimi)
+   1629    4359 0,007405 tauti (substantiivi)
+   1630    4355 0,007399 itsenäisyys (substantiivi)
+   1631    4349 0,007388 vahvasti (adverbi)
+   1632    4336 0,007366 kiitos (substantiivi)
+   1633    4331 0,007358 järjestäjä (substantiivi)
+   1634    4325 0,007348 periä (verbi)
+   1635    4325 0,007348 todistaa (verbi)
+   1636    4317 0,007334 oikeastaan (adverbi)
+   1637    4308 0,007319 tonni (substantiivi)
+   1638    4306 0,007315 tuottaja (substantiivi)
+   1639    4305 0,007314 neuvosto (substantiivi)
+   1640    4302 0,007309 karhu (substantiivi)
+   1641    4302 0,007309 soida (verbi)
+   1642    4296 0,007298 uutistoimisto (substantiivi)
+   1643    4294 0,007295 saarinen (erisnimi)
+   1644    4293 0,007293 radio (substantiivi)
+   1645    4290 0,007288 tulkita (verbi)
+   1646    4290 0,007288 ympäristökeskus (substantiivi)
+   1647    4289 0,007287 jo_nyt (adverbi)
+   1648    4288 0,007285 vapauttaa (verbi)
+   1649    4283 0,007276 ensi-ilta (substantiivi)
+   1650    4282 0,007275 ralli (substantiivi)
+   1651    4278 0,007268 maajoukkue (substantiivi)
+   1652    4274 0,007261 ilmetä (verbi)
+   1653    4267 0,007249 keksiä (verbi)
+   1654    4266 0,007247 koko (substantiivi)
+   1655    4265 0,007246 hiihto (substantiivi)
+   1656    4265 0,007246 jani (erisnimi)
+   1657    4253 0,007225 hallinta (substantiivi)
+   1658    4251 0,007222 australia (erisnimi)
+   1659    4249 0,007219 sitoa (verbi)
+   1660    4247 0,007215 oppositio (substantiivi)
+   1661    4246 0,007213 aloite (substantiivi)
+   1662    4242 0,007207 maalaus (substantiivi)
+   1663    4229 0,007185 johtava (adjektiivi)
+   1664    4211 0,007154 tulkinta (substantiivi)
+   1665    4209 0,007151 ikkuna (substantiivi)
+   1666    4208 0,007149 voimakkaasti (adverbi)
+   1667    4201 0,007137 hopea (substantiivi)
+   1668    4201 0,007137 kanava (substantiivi)
+   1669    4200 0,007135 valtiovarainministeri (substantiivi)
+   1670    4200 0,007135 varmaan (adverbi)
+   1671    4195 0,007127 liikunta (substantiivi)
+   1672    4192 0,007122 kaikkein (adverbi)
+   1673    4192 0,007122 kuuma (adjektiivi)
+   1674    4189 0,007117 ilmiö (substantiivi)
+   1675    4187 0,007113 itä-timor (erisnimi)
+   1676    4182 0,007105 avustus (substantiivi)
+   1677    4182 0,007105 historiallinen (adjektiivi)
+   1678    4176 0,007095 min (lyhenne)
+   1679    4175 0,007093 poistua (verbi)
+   1680    4175 0,007093 valtaosa (substantiivi)
+   1681    4170 0,007084 kysellä (verbi)
+   1682    4170 0,007084 päästä (prepositio)
+   1683    4169 0,007083 tänne (adverbi)
+   1684    4166 0,007078 irak (erisnimi)
+   1685    4164 0,007074 kirjallisuus (substantiivi)
+   1686    4164 0,007074 pitkin (prepositio)
+   1687    4163 0,007072 tuotto (substantiivi)
+   1688    4149 0,007049 heli (erisnimi)
+   1689    4147 0,007045 koostua (verbi)
+   1690    4146 0,007044 välttää (verbi)
+   1691    4145 0,007042 paluu (substantiivi)
+   1692    4140 0,007033 pakottaa (verbi)
+   1693    4139 0,007032 lama (substantiivi)
+   1694    4139 0,007032 sentään (adverbi)
+   1695    4138 0,007030 loistaa (verbi)
+   1696    4136 0,007027 kuvailla (verbi)
+   1697    4136 0,007027 paitsi (adverbi)
+   1698    4133 0,007022 tapaaminen (substantiivi)
+   1699    4132 0,007020 peter (erisnimi)
+   1700    4131 0,007018 jonkin_verran (adverbi)
+   1701    4129 0,007015 ennen_kaikkea (adverbi)
+   1702    4126 0,007010 ammattilainen (substantiivi)
+   1703    4126 0,007010 valmistautua (verbi)
+   1704    4124 0,007006 palkata (verbi)
+   1705    4121 0,007001 kesk (lyhenne)
+   1706    4117 0,006994 jääkiekko (substantiivi)
+   1707    4115 0,006991 aki (erisnimi)
+   1708    4114 0,006989 saaminen (substantiivi)
+   1709    4106 0,006976 huonosti (adverbi)
+   1710    4105 0,006974 tori (substantiivi)
+   1711    4102 0,006969 lopputulos (substantiivi)
+   1712    4101 0,006967 ansaita (verbi)
+   1713    4099 0,006964 rajoittaa (verbi)
+   1714    4097 0,006960 käynnistää (verbi)
+   1715    4096 0,006959 lähestyä (verbi)
+   1716    4087 0,006943 parata (verbi)
+   1717    4081 0,006933 vieras (adjektiivi)
+   1718    4077 0,006926 kasvot (substantiivi)
+   1719    4076 0,006925 vene (substantiivi)
+   1720    4075 0,006923 vuorokausi (substantiivi)
+   1721    4073 0,006920 hiukan (adverbi)
+   1722    4071 0,006916 manninen (erisnimi)
+   1723    4071 0,006916 nauraa (verbi)
+   1724    4069 0,006913 eteen (prepositio)
+   1725    4069 0,006913 michael (erisnimi)
+   1726    4064 0,006904 lähtökohta (substantiivi)
+   1727    4057 0,006892 alkoholi (substantiivi)
+   1728    4056 0,006891 sisältyä (verbi)
+   1729    4050 0,006880 kakkonen (substantiivi)
+   1730    4050 0,006880 mäkelä (erisnimi)
+   1731    4047 0,006875 ohi (adverbi)
+   1732    4046 0,006874 harva (pronomini)
+   1733    4046 0,006874 päällikkö (substantiivi)
+   1734    4043 0,006869 alkuvuosi (substantiivi)
+   1735    4042 0,006867 suhteen (prepositio)
+   1736    4039 0,006862 kiekko (substantiivi)
+   1737    4027 0,006841 puolitoista (lukusana)
+   1738    4023 0,006835 arto (erisnimi)
+   1739    4022 0,006833 pääsy (substantiivi)
+   1740    4020 0,006830 sak (lyhenne)
+   1741    4019 0,006828 heinonen (erisnimi)
+   1742    4018 0,006826 demokratia (substantiivi)
+   1743    4016 0,006823 aktiivinen (adjektiivi)
+   1744    4015 0,006821 ostaja (substantiivi)
+   1745    4011 0,006814 parantaminen (substantiivi)
+   1746    4009 0,006811 valkoinen (adjektiivi)
+   1747    4009 0,006811 yhteiskunnallinen (adjektiivi)
+   1748    4008 0,006809 sauli (erisnimi)
+   1749    4005 0,006804 ulkopuolinen (adjektiivi)
+   1750    4003 0,006801 väliin (prepositio)
+   1751    4002 0,006799 sentti (substantiivi)
+   1752    4002 0,006799 sukupolvi (substantiivi)
+   1753    4002 0,006799 valmiiksi (adverbi)
+   1754    4001 0,006797 kohota (verbi)
+   1755    4001 0,006797 turva (substantiivi)
+   1756    3999 0,006794 kaltainen (adjektiivi)
+   1757    3997 0,006790 tuomari (substantiivi)
+   1758    3997 0,006790 vaate (substantiivi)
+   1759    3995 0,006787 tilata (verbi)
+   1760    3993 0,006784 lukuunottamatta (prepositio)
+   1761    3992 0,006782 anne (erisnimi)
+   1762    3990 0,006779 varsi (substantiivi)
+   1763    3989 0,006777 luottamus (substantiivi)
+   1764    3987 0,006773 lento (substantiivi)
+   1765    3984 0,006768 iloinen (adjektiivi)
+   1766    3983 0,006767 rauma (erisnimi)
+   1767    3975 0,006753 tähdätä (verbi)
+   1768    3963 0,006733 kunnes (konjunktio)
+   1769    3962 0,006731 reijo (erisnimi)
+   1770    3958 0,006724 osittain (adverbi)
+   1771    3958 0,006724 väyrynen (erisnimi)
+   1772    3957 0,006722 pyöriä (verbi)
+   1773    3956 0,006721 koskinen (erisnimi)
+   1774    3948 0,006707 terve (adjektiivi)
+   1775    3934 0,006683 maku (substantiivi)
+   1776    3932 0,006680 pääkaupunkiseutu (substantiivi)
+   1777    3931 0,006678 oma (substantiivi)
+   1778    3927 0,006672 rahoittaa (verbi)
+   1779    3925 0,006668 viihtyä (verbi)
+   1780    3920 0,006660 suosikki (substantiivi)
+   1781    3918 0,006656 lukuisa (adjektiivi)
+   1782    3915 0,006651 kalle (erisnimi)
+   1783    3915 0,006651 taivas (substantiivi)
+   1784    3913 0,006648 surma (substantiivi)
+   1785    3912 0,006646 tyytyä (verbi)
+   1786    3908 0,006639 selkä (substantiivi)
+   1787    3906 0,006636 järjestäminen (substantiivi)
+   1788    3904 0,006632 palaa (verbi)
+   1789    3902 0,006629 pirjo (erisnimi)
+   1790    3901 0,006627 öljy (substantiivi)
+   1791    3899 0,006624 kiittää (verbi)
+   1792    3899 0,006624 pahasti (adverbi)
+   1793    3898 0,006622 korotus (substantiivi)
+   1794    3897 0,006621 säästää (verbi)
+   1795    3894 0,006615 joki (substantiivi)
+   1796    3893 0,006614 komea (adjektiivi)
+   1797    3886 0,006602 tuula (erisnimi)
+   1798    3884 0,006598 aikoinaan (adverbi)
+   1799    3881 0,006593 varautua (verbi)
+   1800    3875 0,006583 häme (erisnimi)
+   1801    3867 0,006570 ferrari (erisnimi)
+   1802    3866 0,006568 juoksu (substantiivi)
+   1803    3864 0,006565 minna (erisnimi)
+   1804    3857 0,006553 tanssia (verbi)
+   1805    3849 0,006539 ihme (substantiivi)
+   1806    3842 0,006527 te (pronomini)
+   1807    3837 0,006519 kyseinen (adjektiivi)
+   1808    3836 0,006517 kruunu (substantiivi)
+   1809    3832 0,006510 pohjoismaat (erisnimi)
+   1810    3819 0,006488 pääsihteeri (substantiivi)
+   1811    3817 0,006485 täydellinen (adjektiivi)
+   1812    3815 0,006481 ilves (erisnimi)
+   1813    3812 0,006476 aurinko (substantiivi)
+   1814    3811 0,006474 bussi (substantiivi)
+   1815    3808 0,006469 karsinta (substantiivi)
+   1816    3808 0,006469 ooppera (substantiivi)
+   1817    3804 0,006463 aito (adjektiivi)
+   1818    3804 0,006463 lehtikuva (substantiivi)
+   1819    3796 0,006449 äänestäjä (substantiivi)
+   1820    3795 0,006447 tähän_mennessä (adverbi)
+   1821    3793 0,006444 olosuhde (substantiivi)
+   1822    3792 0,006442 kulu (substantiivi)
+   1823    3791 0,006440 liittää (verbi)
+   1824    3789 0,006437 raju (adjektiivi)
+   1825    3788 0,006435 markkinointi (substantiivi)
+   1826    3778 0,006418 teemu (erisnimi)
+   1827    3776 0,006415 _percent (lyhenne)
+   1828    3771 0,006407 punainen (adjektiivi)
+   1829    3771 0,006407 päin (prepositio)
+   1830    3764 0,006395 maija (erisnimi)
+   1831    3761 0,006390 arki (substantiivi)
+   1832    3761 0,006390 syyttäjä (substantiivi)
+   1833    3761 0,006390 tuli (substantiivi)
+   1834    3756 0,006381 jämsä (erisnimi)
+   1835    3753 0,006376 ohjaus (substantiivi)
+   1836    3749 0,006369 mitta (substantiivi)
+   1837    3748 0,006367 presidenttiehdokas (substantiivi)
+   1838    3746 0,006364 pakkanen (substantiivi)
+   1839    3745 0,006362 erinomainen (adjektiivi)
+   1840    3743 0,006359 pohjois-suomi (erisnimi)
+   1841    3742 0,006357 huone (substantiivi)
+   1842    3741 0,006356 kajaani (erisnimi)
+   1843    3736 0,006347 raahe (erisnimi)
+   1844    3731 0,006339 kokoelma (substantiivi)
+   1845    3731 0,006339 kunnanjohtaja (substantiivi)
+   1846    3729 0,006335 välttämätön (adjektiivi)
+   1847    3724 0,006327 törmätä (verbi)
+   1848    3723 0,006325 kaavailla (verbi)
+   1849    3721 0,006322 festivaali (substantiivi)
+   1850    3714 0,006310 totuus (substantiivi)
+   1851    3714 0,006310 yhteen (adverbi)
+   1852    3713 0,006308 positiivinen (adjektiivi)
+   1853    3710 0,006303 kokeilu (substantiivi)
+   1854    3707 0,006298 koululainen (substantiivi)
+   1855    3705 0,006294 pääasiassa (adverbi)
+   1856    3705 0,006294 tanssi (substantiivi)
+   1857    3697 0,006281 viikonvaihde (substantiivi)
+   1858    3695 0,006277 ajo (substantiivi)
+   1859    3695 0,006277 kännykkä (substantiivi)
+   1860    3694 0,006276 eeva (erisnimi)
+   1861    3694 0,006276 kivi (substantiivi)
+   1862    3694 0,006276 monipuolinen (adjektiivi)
+   1863    3694 0,006276 toteuttaminen (substantiivi)
+   1864    3693 0,006274 panostaa (verbi)
+   1865    3692 0,006272 valitus (substantiivi)
+   1866    3688 0,006265 ulkopuolelle (prepositio)
+   1867    3688 0,006265 vallita (verbi)
+   1868    3683 0,006257 tohtori (substantiivi)
+   1869    3681 0,006254 polvi (substantiivi)
+   1870    3676 0,006245 herätä (verbi)
+   1871    3676 0,006245 pyörä (substantiivi)
+   1872    3675 0,006243 energia (substantiivi)
+   1873    3673 0,006240 hakija (substantiivi)
+   1874    3673 0,006240 kuudes (lukusana)
+   1875    3672 0,006238 salonen (erisnimi)
+   1876    3667 0,006230 vuotias (substantiivi)
+   1877    3666 0,006228 vakavasti (adverbi)
+   1878    3656 0,006211 myllylä (erisnimi)
+   1879    3656 0,006211 vasemmistoliitto (substantiivi)
+   1880    3652 0,006204 jonkinlainen (adjektiivi)
+   1881    3649 0,006199 kaukana (adverbi)
+   1882    3647 0,006196 järjestys (substantiivi)
+   1883    3645 0,006192 selkeästi (adverbi)
+   1884    3644 0,006191 este (substantiivi)
+   1885    3643 0,006189 seminaari (substantiivi)
+   1886    3641 0,006186 siirtyminen (substantiivi)
+   1887    3641 0,006186 tuntuma (substantiivi)
+   1888    3640 0,006184 anttila (erisnimi)
+   1889    3640 0,006184 laita (substantiivi)
+   1890    3639 0,006182 aiheutua (verbi)
+   1891    3636 0,006177 sari (erisnimi)
+   1892    3635 0,006175 liha (substantiivi)
+   1893    3633 0,006172 tuomioistuin (substantiivi)
+   1894    3632 0,006170 puisto (substantiivi)
+   1895    3632 0,006170 tarkistaa (verbi)
+   1896    3630 0,006167 seinäjoki (erisnimi)
+   1897    3623 0,006155 sinänsä (adverbi)
+   1898    3622 0,006153 alhainen (adjektiivi)
+   1899    3622 0,006153 viljelijä (substantiivi)
+   1900    3621 0,006152 talousarvio (substantiivi)
+   1901    3619 0,006148 näyttämö (substantiivi)
+   1902    3618 0,006147 harvoin (adverbi)
+   1903    3617 0,006145 viimeistään (adverbi)
+   1904    3616 0,006143 tili (substantiivi)
+   1905    3614 0,006140 verran (adverbi)
+   1906    3611 0,006135 puolivälissä (prepositio)
+   1907    3610 0,006133 puolustaja (substantiivi)
+   1908    3609 0,006131 litra (substantiivi)
+   1909    3608 0,006130 marja (erisnimi)
+   1910    3607 0,006128 yksinkertainen (adjektiivi)
+   1911    3606 0,006126 takaa (prepositio)
+   1912    3601 0,006118 sanomalehti (substantiivi)
+   1913    3595 0,006107 matkailu (substantiivi)
+   1914    3595 0,006107 omaisuus (substantiivi)
+   1915    3593 0,006104 pääosin (adverbi)
+   1916    3591 0,006101 odotella (verbi)
+   1917    3590 0,006099 lisääminen (substantiivi)
+   1918    3589 0,006097 liikkeelle (adverbi)
+   1919    3589 0,006097 mari (erisnimi)
+   1920    3588 0,006096 alas (adverbi)
+   1921    3587 0,006094 itä-suomi (erisnimi)
+   1922    3587 0,006094 remontti (substantiivi)
+   1923    3584 0,006089 ilmaista (verbi)
+   1924    3583 0,006087 neliö (substantiivi)
+   1925    3582 0,006085 tauko (substantiivi)
+   1926    3580 0,006082 hypätä (verbi)
+   1927    3578 0,006079 maailmanmestari (substantiivi)
+   1928    3574 0,006072 vapaus (substantiivi)
+   1929    3573 0,006070 polttaa (verbi)
+   1930    3571 0,006067 harjoittaa (verbi)
+   1931    3569 0,006063 vaihto (substantiivi)
+   1932    3568 0,006062 tarkastaa (verbi)
+   1933    3565 0,006057 david (erisnimi)
+   1934    3563 0,006053 messu (substantiivi)
+   1935    3561 0,006050 kreikka (erisnimi)
+   1936    3555 0,006040 oppilaitos (substantiivi)
+   1937    3555 0,006040 yläaste (substantiivi)
+   1938    3554 0,006038 vankila (substantiivi)
+   1939    3552 0,006034 näyttö (substantiivi)
+   1940    3551 0,006033 vilkas (adjektiivi)
+   1941    3535 0,006006 helena (erisnimi)
+   1942    3535 0,006006 terveydenhuolto (substantiivi)
+   1943    3532 0,006000 seisoa (verbi)
+   1944    3524 0,005987 terveyskeskus (substantiivi)
+   1945    3522 0,005983 laulaja (substantiivi)
+   1946    3522 0,005983 tahto (substantiivi)
+   1947    3520 0,005980 media (substantiivi)
+   1948    3519 0,005978 rantanen (erisnimi)
+   1949    3518 0,005977 kävellä (verbi)
+   1950    3517 0,005975 edullinen (adjektiivi)
+   1951    3517 0,005975 selviytyä (verbi)
+   1952    3507 0,005958 belgia (erisnimi)
+   1953    3505 0,005955 itse_asiassa (adverbi)
+   1954    3501 0,005948 kumpi (pronomini)
+   1955    3501 0,005948 riippua (verbi)
+   1956    3500 0,005946 paljastua (verbi)
+   1957    3494 0,005936 kiitellä (verbi)
+   1958    3491 0,005931 vuodenvaihde (substantiivi)
+   1959    3490 0,005929 mittainen (adjektiivi)
+   1960    3486 0,005922 rauhallinen (adjektiivi)
+   1961    3483 0,005917 hiljainen (adjektiivi)
+   1962    3483 0,005917 vallata (verbi)
+   1963    3482 0,005916 heikkilä (erisnimi)
+   1964    3480 0,005912 pysähtyä (verbi)
+   1965    3478 0,005909 kannanotto (substantiivi)
+   1966    3465 0,005887 mahdollistaa (verbi)
+   1967    3463 0,005883 päävalmentaja (substantiivi)
+   1968    3458 0,005875 osoite (substantiivi)
+   1969    3458 0,005875 schumacher (erisnimi)
+   1970    3452 0,005865 aikaan (prepositio)
+   1971    3449 0,005859 la (lyhenne)
+   1972    3447 0,005856 pelto (substantiivi)
+   1973    3446 0,005854 kolmanneksi (adverbi)
+   1974    3446 0,005854 sanoma (substantiivi)
+   1975    3445 0,005853 keskittää (verbi)
+   1976    3442 0,005848 vihreä (adjektiivi)
+   1977    3439 0,005842 riihimäki (erisnimi)
+   1978    3437 0,005839 satu (erisnimi)
+   1979    3433 0,005832 belgrad (erisnimi)
+   1980    3431 0,005829 keskeyttää (verbi)
+   1981    3430 0,005827 dokumentti (substantiivi)
+   1982    3429 0,005825 kuningas (substantiivi)
+   1983    3427 0,005822 organisaatio (substantiivi)
+   1984    3427 0,005822 outo (adjektiivi)
+   1985    3425 0,005819 upea (adjektiivi)
+   1986    3423 0,005815 kaava (substantiivi)
+   1987    3423 0,005815 washington (erisnimi)
+   1988    3419 0,005808 ohjelmisto (substantiivi)
+   1989    3415 0,005802 huomattava (adjektiivi)
+   1990    3412 0,005797 testata (verbi)
+   1991    3412 0,005797 varsinais-suomi (erisnimi)
+   1992    3403 0,005781 lukema (substantiivi)
+   1993    3396 0,005769 lava (substantiivi)
+   1994    3395 0,005768 hahmo (substantiivi)
+   1995    3392 0,005763 järkevä (adjektiivi)
+   1996    3389 0,005758 myöten (prepositio)
+   1997    3389 0,005758 operaatio (substantiivi)
+   1998    3388 0,005756 aaltonen (erisnimi)
+   1999    3388 0,005756 mikä_tahansa (pronomini)
+   2000    3384 0,005749 bosnia (erisnimi)
+   2001    3384 0,005749 pronssi (substantiivi)
+   2002    3384 0,005749 valkeakoski (erisnimi)
+   2003    3382 0,005746 kekkonen (erisnimi)
+   2004    3381 0,005744 ilmainen (adjektiivi)
+   2005    3380 0,005742 synnyttää (verbi)
+   2006    3378 0,005739 hankinta (substantiivi)
+   2007    3375 0,005734 kieltäytyä (verbi)
+   2008    3375 0,005734 urakka (substantiivi)
+   2009    3374 0,005732 hiihtää (verbi)
+   2010    3371 0,005727 jalkapallo (substantiivi)
+   2011    3368 0,005722 riittävän (adverbi)
+   2012    3365 0,005717 kristillinen (adjektiivi)
+   2013    3364 0,005715 filmi (substantiivi)
+   2014    3363 0,005713 etusivu (substantiivi)
+   2015    3361 0,005710 jyrki (erisnimi)
+   2016    3360 0,005708 edellisvuosi (substantiivi)
+   2017    3359 0,005707 kovasti (adverbi)
+   2018    3355 0,005700 leipä (substantiivi)
+   2019    3352 0,005695 presidentinvaali (substantiivi)
+   2020    3349 0,005690 toiminnanjohtaja (substantiivi)
+   2021    3349 0,005690 valmistelu (substantiivi)
+   2022    3348 0,005688 toimenpide (substantiivi)
+   2023    3347 0,005686 hovioikeus (substantiivi)
+   2024    3347 0,005686 täydentää (verbi)
+   2025    3345 0,005683 albania (erisnimi)
+   2026    3345 0,005683 solmia (verbi)
+   2027    3343 0,005679 törkeä (adjektiivi)
+   2028    3335 0,005666 sampo (erisnimi)
+   2029    3332 0,005661 tällöin (adverbi)
+   2030    3330 0,005657 vastaanotto (substantiivi)
+   2031    3328 0,005654 tarkastella (verbi)
+   2032    3328 0,005654 toivottavasti (adverbi)
+   2033    3326 0,005650 sijasta (prepositio)
+   2034    3324 0,005647 pudottaa (verbi)
+   2035    3322 0,005644 suku (substantiivi)
+   2036    3318 0,005637 keskenään (adverbi)
+   2037    3318 0,005637 ketju (substantiivi)
+   2038    3313 0,005628 niin_sanottu (adverbi)
+   2039    3311 0,005625 kuoro (substantiivi)
+   2040    3311 0,005625 lähde (substantiivi)
+   2041    3310 0,005623 vika (substantiivi)
+   2042    3309 0,005622 niemi (erisnimi)
+   2043    3306 0,005617 tiedotusväline (substantiivi)
+   2044    3303 0,005611 innostua (verbi)
+   2045    3299 0,005605 hanna (erisnimi)
+   2046    3295 0,005598 pituus (substantiivi)
+   2047    3293 0,005594 rangaistus (substantiivi)
+   2048    3287 0,005584 vasen (adjektiivi)
+   2049    3285 0,005581 helsinkiläinen (adjektiivi)
+   2050    3283 0,005577 kuluessa (prepositio)
+   2051    3282 0,005576 hifk (lyhenne)
+   2052    3282 0,005576 suoritus (substantiivi)
+   2053    3277 0,005567 unkari (erisnimi)
+   2054    3276 0,005566 korva (substantiivi)
+   2055    3273 0,005560 makedonia (erisnimi)
+   2056    3272 0,005559 yksilö (substantiivi)
+   2057    3271 0,005557 kunnioittaa (verbi)
+   2058    3270 0,005555 erillinen (adjektiivi)
+   2059    3270 0,005555 tiina (erisnimi)
+   2060    3267 0,005550 lentokenttä (substantiivi)
+   2061    3265 0,005547 sanna (erisnimi)
+   2062    3264 0,005545 säveltäjä (substantiivi)
+   2063    3263 0,005543 keskuspankki (substantiivi)
+   2064    3262 0,005542 lupaus (substantiivi)
+   2065    3258 0,005535 sektori (substantiivi)
+   2066    3257 0,005533 sotilaallinen (adjektiivi)
+   2067    3254 0,005528 johanna (erisnimi)
+   2068    3254 0,005528 opiskelu (substantiivi)
+   2069    3252 0,005525 kai (adverbi)
+   2070    3251 0,005523 hakemus (substantiivi)
+   2071    3250 0,005521 paitsi (konjunktio)
+   2072    3242 0,005508 haitata (verbi)
+   2073    3242 0,005508 kulutus (substantiivi)
+   2074    3239 0,005503 kauppias (substantiivi)
+   2075    3239 0,005503 keskuudessa (prepositio)
+   2076    3239 0,005503 vanki (substantiivi)
+   2077    3235 0,005496 suorastaan (adverbi)
+   2078    3234 0,005494 teho (substantiivi)
+   2079    3232 0,005491 oikeudenkäynti (substantiivi)
+   2080    3231 0,005489 herra (substantiivi)
+   2081    3231 0,005489 surmata (verbi)
+   2082    3229 0,005486 boris (erisnimi)
+   2083    3228 0,005484 moottori (substantiivi)
+   2084    3225 0,005479 eduskuntaryhmä (substantiivi)
+   2085    3224 0,005477 olavi (erisnimi)
+   2086    3222 0,005474 henkilöauto (substantiivi)
+   2087    3222 0,005474 takainen (adjektiivi)
+   2088    3221 0,005472 pommitus (substantiivi)
+   2089    3217 0,005465 kalevala (erisnimi)
+   2090    3215 0,005462 osallistuminen (substantiivi)
+   2091    3213 0,005459 vamma (substantiivi)
+   2092    3211 0,005455 ohi (prepositio)
+   2093    3211 0,005455 tosiasia (substantiivi)
+   2094    3210 0,005453 ruumis (substantiivi)
+   2095    3208 0,005450 outokumpu (erisnimi)
+   2096    3207 0,005448 arvoinen (adjektiivi)
+   2097    3205 0,005445 haitta (substantiivi)
+   2098    3205 0,005445 markus (erisnimi)
+   2099    3201 0,005438 luonne (substantiivi)
+   2100    3198 0,005433 elintarvike (substantiivi)
+   2101    3198 0,005433 eläkeläinen (substantiivi)
+   2102    3197 0,005431 kemi (erisnimi)
+   2103    3196 0,005430 jäljellä (adverbi)
+   2104    3195 0,005428 maalata (verbi)
+   2105    3194 0,005426 lehtonen (erisnimi)
+   2106    3190 0,005419 ehdoton (adjektiivi)
+   2107    3190 0,005419 elina (erisnimi)
+   2108    3190 0,005419 uudistaa (verbi)
+   2109    3189 0,005418 vähentyä (verbi)
+   2110    3189 0,005418 väite (substantiivi)
+   2111    3187 0,005414 päivittäin (adverbi)
+   2112    3183 0,005408 serbia (erisnimi)
+   2113    3181 0,005404 toiminto (substantiivi)
+   2114    3180 0,005402 kirsi (erisnimi)
+   2115    3179 0,005401 ajankohta (substantiivi)
+   2116    3176 0,005396 prosessi (substantiivi)
+   2117    3174 0,005392 tavoittaa (verbi)
+   2118    3173 0,005391 laine (erisnimi)
+   2119    3172 0,005389 valtioneuvosto (substantiivi)
+   2120    3171 0,005387 balkan (erisnimi)
+   2121    3170 0,005385 rahasto (substantiivi)
+   2122    3165 0,005377 kissa (substantiivi)
+   2123    3164 0,005375 tero (erisnimi)
+   2124    3162 0,005372 arja (erisnimi)
+   2125    3160 0,005368 bill (erisnimi)
+   2126    3160 0,005368 kirjoitus (substantiivi)
+   2127    3160 0,005368 tallinna (erisnimi)
+   2128    3157 0,005363 alentaa (verbi)
+   2129    3157 0,005363 matala (adjektiivi)
+   2130    3157 0,005363 ulottuvuus (substantiivi)
+   2131    3156 0,005362 myyjä (substantiivi)
+   2132    3154 0,005358 sade (substantiivi)
+   2133    3145 0,005343 osuma (substantiivi)
+   2134    3144 0,005341 myöhään (adverbi)
+   2135    3143 0,005340 epäonnistua (verbi)
+   2136    3140 0,005335 ulottua (verbi)
+   2137    3139 0,005333 kunnolla (adverbi)
+   2138    3132 0,005321 kinnunen (erisnimi)
+   2139    3132 0,005321 nukkua (verbi)
+   2140    3127 0,005312 mielellään (adverbi)
+   2141    3126 0,005311 kenraali (substantiivi)
+   2142    3124 0,005307 lasse (erisnimi)
+   2143    3122 0,005304 kotka (erisnimi)
+   2144    3122 0,005304 tähän_asti (adverbi)
+   2145    3121 0,005302 vuokrata (verbi)
+   2146    3115 0,005292 avautua (verbi)
+   2147    3108 0,005280 sijoittaja (substantiivi)
+   2148    3105 0,005275 todennäköinen (adjektiivi)
+   2149    3101 0,005268 ilomantsi (erisnimi)
+   2150    3099 0,005265 kela (erisnimi)
+   2151    3097 0,005261 jako (substantiivi)
+   2152    3096 0,005260 mattila (erisnimi)
+   2153    3093 0,005255 sonera (erisnimi)
+   2154    3092 0,005253 pohjoismainen (adjektiivi)
+   2155    3089 0,005248 tunnistaa (verbi)
+   2156    3089 0,005248 yksityiskohta (substantiivi)
+   2157    3088 0,005246 jokinen (erisnimi)
+   2158    3088 0,005246 tiukasti (adverbi)
+   2159    3087 0,005244 mieluusti (adverbi)
+   2160    3085 0,005241 kartta (substantiivi)
+   2161    3079 0,005231 maailmanmestaruus (substantiivi)
+   2162    3076 0,005226 sydney (erisnimi)
+   2163    3072 0,005219 keikka (substantiivi)
+   2164    3069 0,005214 pakistan (erisnimi)
+   2165    3068 0,005212 jokeri (erisnimi)
+   2166    3068 0,005212 määräraha (substantiivi)
+   2167    3065 0,005207 pohjalta (prepositio)
+   2168    3063 0,005204 pääoma (substantiivi)
+   2169    3062 0,005202 väitöskirja (substantiivi)
+   2170    3061 0,005200 mielenosoitus (substantiivi)
+   2171    3060 0,005199 afrikka (erisnimi)
+   2172    3058 0,005195 km (lyhenne)
+   2173    3057 0,005193 kaupunginvaltuusto (substantiivi)
+   2174    3056 0,005192 itse (substantiivi)
+   2175    3054 0,005188 paketti (substantiivi)
+   2176    3053 0,005187 ii (lyhenne)
+   2177    3051 0,005183 saavutus (substantiivi)
+   2178    3050 0,005182 kuvio (substantiivi)
+   2179    3048 0,005178 testi (substantiivi)
+   2180    3048 0,005178 tshekki (erisnimi)
+   2181    3044 0,005171 kannustaa (verbi)
+   2182    3044 0,005171 kitee (erisnimi)
+   2183    3044 0,005171 kokoonpano (substantiivi)
+   2184    3041 0,005166 pitkäaikainen (adjektiivi)
+   2185    3040 0,005165 ulkomaalainen (substantiivi)
+   2186    3039 0,005163 tuntematon (adjektiivi)
+   2187    3039 0,005163 yleisesti (adverbi)
+   2188    3037 0,005160 rengas (substantiivi)
+   2189    3035 0,005156 parissa (prepositio)
+   2190    3035 0,005156 säätiö (substantiivi)
+   2191    3032 0,005151 hautala (erisnimi)
+   2192    3032 0,005151 slovakia (erisnimi)
+   2193    3030 0,005148 lähivuosi (substantiivi)
+   2194    3027 0,005143 uusimaa (erisnimi)
+   2195    3024 0,005137 yllättävän (adverbi)
+   2196    3023 0,005136 mikkeli (erisnimi)
+   2197    3021 0,005132 kamppailu (substantiivi)
+   2198    3016 0,005124 veli (substantiivi)
+   2199    3015 0,005122 hyppy (substantiivi)
+   2200    3015 0,005122 viini (substantiivi)
+   2201    3014 0,005120 etelä-suomi (erisnimi)
+   2202    3013 0,005119 prosenttiyksikkö (substantiivi)
+   2203    3011 0,005115 amerikka (erisnimi)
+   2204    3009 0,005112 mökki (substantiivi)
+   2205    3008 0,005110 päätöksenteko (substantiivi)
+   2206    3007 0,005109 lainsäädäntö (substantiivi)
+   2207    3006 0,005107 puhemies (substantiivi)
+   2208    3004 0,005103 johannes (erisnimi)
+   2209    3004 0,005103 johtokunta (substantiivi)
+   2210    3004 0,005103 vankeus (substantiivi)
+   2211    3000 0,005097 osakilpailu (substantiivi)
+   2212    3000 0,005097 sauna (substantiivi)
+   2213    3000 0,005097 sundqvist (erisnimi)
+   2214    3000 0,005097 suositella (verbi)
+   2215    3000 0,005097 tehokkaasti (adverbi)
+   2216    2999 0,005095 periaatteessa (adverbi)
+   2217    2997 0,005092 karsia (verbi)
+   2218    2991 0,005081 luonnollisesti (adverbi)
+   2219    2989 0,005078 valtuutettu (substantiivi)
+   2220    2988 0,005076 kuusamo (erisnimi)
+   2221    2985 0,005071 eduskuntavaali (substantiivi)
+   2222    2984 0,005069 ala-aste (substantiivi)
+   2223    2984 0,005069 menetys (substantiivi)
+   2224    2984 0,005069 valokuva (substantiivi)
+   2225    2983 0,005068 parhaimmillaan (adverbi)
+   2226    2983 0,005068 sankari (substantiivi)
+   2227    2980 0,005063 olympialainen (substantiivi)
+   2228    2979 0,005061 maito (substantiivi)
+   2229    2978 0,005059 aasia (erisnimi)
+   2230    2975 0,005054 juoda (verbi)
+   2231    2975 0,005054 suoja (substantiivi)
+   2232    2974 0,005052 turisti (substantiivi)
+   2233    2973 0,005051 vihdoin (adverbi)
+   2234    2970 0,005046 autoilija (substantiivi)
+   2235    2970 0,005046 hyvinvointi (substantiivi)
+   2236    2970 0,005046 kävijä (substantiivi)
+   2237    2965 0,005037 emu (erisnimi)
+   2238    2965 0,005037 hidas (adjektiivi)
+   2239    2965 0,005037 ominaisuus (substantiivi)
+   2240    2962 0,005032 kertomus (substantiivi)
+   2241    2961 0,005030 nopeus (substantiivi)
+   2242    2958 0,005025 siirto (substantiivi)
+   2243    2958 0,005025 tyypillinen (adjektiivi)
+   2244    2957 0,005024 nähden (prepositio)
+   2245    2955 0,005020 lopullisesti (adverbi)
+   2246    2954 0,005019 vakuutusyhtiö (substantiivi)
+   2247    2952 0,005015 erikseen (adverbi)
+   2248    2945 0,005003 pirkko (erisnimi)
+   2249    2944 0,005002 tarjonta (substantiivi)
+   2250    2943 0,005000 lappeenranta (erisnimi)
+   2251    2943 0,005000 sibelius (erisnimi)
+   2252    2942 0,004998 jan (erisnimi)
+   2253    2941 0,004996 rikas (adjektiivi)
+   2254    2938 0,004991 ajautua (verbi)
+   2255    2938 0,004991 vähitellen (adverbi)
+   2256    2936 0,004988 päähän (prepositio)
+   2257    2934 0,004985 finnair (erisnimi)
+   2258    2934 0,004985 hurja (adjektiivi)
+   2259    2933 0,004983 kansanäänestys (substantiivi)
+   2260    2933 0,004983 mahtava (adjektiivi)
+   2261    2933 0,004983 nuo (pronomini)
+   2262    2932 0,004981 tarvittaessa (adverbi)
+   2263    2931 0,004979 paljoa (adverbi)
+   2264    2930 0,004978 kasvi (substantiivi)
+   2265    2927 0,004973 monenlainen (adjektiivi)
+   2266    2927 0,004973 niin_ikään (adverbi)
+   2267    2926 0,004971 englanti (substantiivi)
+   2268    2925 0,004969 käsittää (verbi)
+   2269    2924 0,004968 pyrkimys (substantiivi)
+   2270    2923 0,004966 ojala (erisnimi)
+   2271    2920 0,004961 tiivistää (verbi)
+   2272    2919 0,004959 rakastaa (verbi)
+   2273    2918 0,004957 olennainen (adjektiivi)
+   2274    2917 0,004956 kyyti (substantiivi)
+   2275    2917 0,004956 lahja (substantiivi)
+   2276    2916 0,004954 myös (konjunktio)
+   2277    2916 0,004954 päälle (adverbi)
+   2278    2914 0,004951 harjoittelu (substantiivi)
+   2279    2911 0,004945 latvia (erisnimi)
+   2280    2911 0,004945 ulkoministeriö (substantiivi)
+   2281    2911 0,004945 veri (substantiivi)
+   2282    2909 0,004942 menetelmä (substantiivi)
+   2283    2908 0,004940 jälkeinen (adjektiivi)
+   2284    2908 0,004940 kumppani (substantiivi)
+   2285    2903 0,004932 takana (adverbi)
+   2286    2901 0,004928 pettymys (substantiivi)
+   2287    2901 0,004928 pysäyttää (verbi)
+   2288    2896 0,004920 rouva (substantiivi)
+   2289    2896 0,004920 valtakunta (substantiivi)
+   2290    2895 0,004918 kuvaus (substantiivi)
+   2291    2895 0,004918 suhteellisen (adverbi)
+   2292    2892 0,004913 lähellä (adverbi)
+   2293    2892 0,004913 olettaa (verbi)
+   2294    2888 0,004906 kunnallinen (adjektiivi)
+   2295    2887 0,004905 sekoittaa (verbi)
+   2296    2885 0,004901 paino (substantiivi)
+   2297    2885 0,004901 syyllistyä (verbi)
+   2298    2883 0,004898 kallio (erisnimi)
+   2299    2883 0,004898 lopettaminen (substantiivi)
+   2300    2877 0,004888 murha (substantiivi)
+   2301    2877 0,004888 pommi (substantiivi)
+   2302    2876 0,004886 komitea (substantiivi)
+   2303    2868 0,004872 suojella (verbi)
+   2304    2866 0,004869 kuljetus (substantiivi)
+   2305    2865 0,004867 väline (substantiivi)
+   2306    2864 0,004866 hyökätä (verbi)
+   2307    2864 0,004866 keskinäinen (adjektiivi)
+   2308    2864 0,004866 räsänen (erisnimi)
+   2309    2863 0,004864 syttyä (verbi)
+   2310    2861 0,004861 määräys (substantiivi)
+   2311    2859 0,004857 onnellinen (adjektiivi)
+   2312    2855 0,004850 jonne (adverbi)
+   2313    2855 0,004850 menehtyä (verbi)
+   2314    2854 0,004849 into (substantiivi)
+   2315    2854 0,004849 karata (verbi)
+   2316    2854 0,004849 selitys (substantiivi)
+   2317    2849 0,004840 toivo (substantiivi)
+   2318    2846 0,004835 häiritä (verbi)
+   2319    2843 0,004830 mikkola (erisnimi)
+   2320    2841 0,004827 oppi (substantiivi)
+   2321    2840 0,004825 neljännes (substantiivi)
+   2322    2839 0,004823 kaarina (erisnimi)
+   2323    2837 0,004820 virallisesti (adverbi)
+   2324    2834 0,004815 osaltaan (adverbi)
+   2325    2834 0,004815 varasto (substantiivi)
+   2326    2827 0,004803 tunnustus (substantiivi)
+   2327    2826 0,004801 kuiva (adjektiivi)
+   2328    2826 0,004801 varjo (substantiivi)
+   2329    2826 0,004801 versio (substantiivi)
+   2330    2823 0,004796 antero (erisnimi)
+   2331    2822 0,004794 korottaa (verbi)
+   2332    2818 0,004787 vaativa (adjektiivi)
+   2333    2818 0,004787 väärin (adverbi)
+   2334    2815 0,004782 unelma (substantiivi)
+   2335    2813 0,004779 kuuluisa (adjektiivi)
+   2336    2812 0,004777 keskimääräinen (adjektiivi)
+   2337    2812 0,004777 tiivis (adjektiivi)
+   2338    2811 0,004776 järvinen (erisnimi)
+   2339    2810 0,004774 vaiva (substantiivi)
+   2340    2809 0,004772 kenties (adverbi)
+   2341    2809 0,004772 ohittaa (verbi)
+   2342    2806 0,004767 suhtautuminen (substantiivi)
+   2343    2805 0,004765 pimeä (adjektiivi)
+   2344    2803 0,004762 loppuottelu (substantiivi)
+   2345    2802 0,004760 tosi (adverbi)
+   2346    2797 0,004752 naantali (erisnimi)
+   2347    2793 0,004745 jännittää (verbi)
+   2348    2791 0,004742 tomi (erisnimi)
+   2349    2790 0,004740 kohta (adverbi)
+   2350    2789 0,004738 köyhä (adjektiivi)
+   2351    2788 0,004736 puoliso (substantiivi)
+   2352    2787 0,004735 huutaa (verbi)
+   2353    2786 0,004733 hoitaja (substantiivi)
+   2354    2785 0,004731 ratketa (verbi)
+   2355    2781 0,004725 italialainen (adjektiivi)
+   2356    2781 0,004725 simo (erisnimi)
+   2357    2780 0,004723 päteä (verbi)
+   2358    2779 0,004721 tulipalo (substantiivi)
+   2359    2777 0,004718 ay (lyhenne)
+   2360    2775 0,004714 omainen (adjektiivi)
+   2361    2771 0,004708 erikoinen (adjektiivi)
+   2362    2768 0,004703 opetusministeriö (substantiivi)
+   2363    2767 0,004701 kommunisti (substantiivi)
+   2364    2767 0,004701 voimavara (substantiivi)
+   2365    2765 0,004697 kiva (adjektiivi)
+   2366    2765 0,004697 vuokra (substantiivi)
+   2367    2765 0,004697 yle (erisnimi)
+   2368    2763 0,004694 ansio (substantiivi)
+   2369    2762 0,004692 palokunta (substantiivi)
+   2370    2759 0,004687 no (lyhenne)
+   2371    2759 0,004687 äskettäin (adverbi)
+   2372    2756 0,004682 kai (erisnimi)
+   2373    2756 0,004682 kapteeni (substantiivi)
+   2374    2756 0,004682 osin (adverbi)
+   2375    2755 0,004680 ilmi (adverbi)
+   2376    2755 0,004680 moderni (adjektiivi)
+   2377    2753 0,004677 havainto (substantiivi)
+   2378    2753 0,004677 tarpeellinen (adjektiivi)
+   2379    2753 0,004677 tt (lyhenne)
+   2380    2752 0,004675 schröder (erisnimi)
+   2381    2752 0,004675 sitä (adverbi)
+   2382    2751 0,004674 lääninhallitus (substantiivi)
+   2383    2750 0,004672 varrella (prepositio)
+   2384    2749 0,004670 ehdottomasti (adverbi)
+   2385    2749 0,004670 päinvastoin (adverbi)
+   2386    2749 0,004670 teknologia (substantiivi)
+   2387    2745 0,004663 ajankohtainen (adjektiivi)
+   2388    2745 0,004663 alunperin (adverbi)
+   2389    2738 0,004652 sevilla (erisnimi)
+   2390    2733 0,004643 ammatillinen (adjektiivi)
+   2391    2731 0,004640 piirre (substantiivi)
+   2392    2730 0,004638 komentaja (substantiivi)
+   2393    2730 0,004638 varustaa (verbi)
+   2394    2728 0,004635 perustelu (substantiivi)
+   2395    2726 0,004631 neuvoa (verbi)
+   2396    2724 0,004628 ilmoittautua (verbi)
+   2397    2724 0,004628 vastaaja (substantiivi)
+   2398    2722 0,004624 heikkinen (erisnimi)
+   2399    2722 0,004624 itämeri (erisnimi)
+   2400    2721 0,004623 entisestään (adverbi)
+   2401    2721 0,004623 muusikko (substantiivi)
+   2402    2719 0,004619 mittava (adjektiivi)
+   2403    2718 0,004618 valmius (substantiivi)
+   2404    2715 0,004612 haka (erisnimi)
+   2405    2715 0,004612 komissaari (substantiivi)
+   2406    2715 0,004612 luonnollinen (adjektiivi)
+   2407    2715 0,004612 pohjois-pohjanmaa (erisnimi)
+   2408    2714 0,004611 avustaja (substantiivi)
+   2409    2712 0,004607 viisas (adjektiivi)
+   2410    2709 0,004602 linna (substantiivi)
+   2411    2709 0,004602 veteraani (substantiivi)
+   2412    2706 0,004597 ilmapiiri (substantiivi)
+   2413    2705 0,004595 ruveta (verbi)
+   2414    2703 0,004592 valmistaja (substantiivi)
+   2415    2700 0,004587 muuttaminen (substantiivi)
+   2416    2699 0,004585 läntinen (adjektiivi)
+   2417    2698 0,004584 huumori (substantiivi)
+   2418    2698 0,004584 kirjallinen (adjektiivi)
+   2419    2698 0,004584 seuraavaksi (adverbi)
+   2420    2698 0,004584 tosissaan (adverbi)
+   2421    2697 0,004582 nuoriso (substantiivi)
+   2422    2695 0,004579 tähdentää (verbi)
+   2423    2693 0,004575 näköinen (adjektiivi)
+   2424    2692 0,004573 sosiaalidemokraatti (substantiivi)
+   2425    2691 0,004572 mänttä (erisnimi)
+   2426    2689 0,004568 suomalainen (erisnimi)
+   2427    2686 0,004563 sato (substantiivi)
+   2428    2685 0,004562 katsomo (substantiivi)
+   2429    2684 0,004560 jäte (substantiivi)
+   2430    2684 0,004560 tilaus (substantiivi)
+   2431    2683 0,004558 välierä (substantiivi)
+   2432    2681 0,004555 nurmes (erisnimi)
+   2433    2680 0,004553 näkymä (substantiivi)
+   2434    2679 0,004551 kotitalous (substantiivi)
+   2435    2679 0,004551 läheinen (adjektiivi)
+   2436    2679 0,004551 toni (erisnimi)
+   2437    2678 0,004550 ennallaan (adverbi)
+   2438    2678 0,004550 useimmiten (adverbi)
+   2439    2678 0,004550 vapautua (verbi)
+   2440    2675 0,004545 askel (substantiivi)
+   2441    2674 0,004543 herkkä (adjektiivi)
+   2442    2674 0,004543 sisään (adverbi)
+   2443    2673 0,004541 sakari (erisnimi)
+   2444    2672 0,004539 ilme (substantiivi)
+   2445    2669 0,004534 kahvi (substantiivi)
+   2446    2666 0,004529 laiton (adjektiivi)
+   2447    2663 0,004524 kerros (substantiivi)
+   2448    2662 0,004522 fyysinen (adjektiivi)
+   2449    2662 0,004522 tiedottaja (substantiivi)
+   2450    2661 0,004521 esim (adverbi)
+   2451    2661 0,004521 täyttyä (verbi)
+   2452    2660 0,004519 keittiö (substantiivi)
+   2453    2656 0,004512 alkupuoli (substantiivi)
+   2454    2656 0,004512 suinkaan (adverbi)
+   2455    2654 0,004509 hyväksi (adverbi)
+   2456    2653 0,004507 tehostaa (verbi)
+   2457    2652 0,004505 perustuslaki (substantiivi)
+   2458    2651 0,004504 haastaa (verbi)
+   2459    2651 0,004504 mitenkään (adverbi)
+   2460    2649 0,004500 kohtuullinen (adjektiivi)
+   2461    2649 0,004500 tyydyttää (verbi)
+   2462    2648 0,004499 keuruu (erisnimi)
+   2463    2647 0,004497 kahdesti (adverbi)
+   2464    2647 0,004497 katkaista (verbi)
+   2465    2646 0,004495 varassa (prepositio)
+   2466    2645 0,004494 vapaa-aika (substantiivi)
+   2467    2644 0,004492 tuho (substantiivi)
+   2468    2643 0,004490 välittömästi (adverbi)
+   2469    2641 0,004487 martin (erisnimi)
+   2470    2640 0,004485 kolmasosa (substantiivi)
+   2471    2640 0,004485 kommentti (substantiivi)
+   2472    2640 0,004485 olut (substantiivi)
+   2473    2640 0,004485 onnistuminen (substantiivi)
+   2474    2639 0,004483 resurssit (substantiivi)
+   2475    2635 0,004477 ollenkaan (adverbi)
+   2476    2635 0,004477 parantua (verbi)
+   2477    2631 0,004470 itä (substantiivi)
+   2478    2630 0,004468 kiertue (substantiivi)
+   2479    2627 0,004463 omakotitalo (substantiivi)
+   2480    2625 0,004460 uida (verbi)
+   2481    2619 0,004449 lämpö (substantiivi)
+   2482    2617 0,004446 jarkko (erisnimi)
+   2483    2615 0,004443 minkäänlainen (adjektiivi)
+   2484    2615 0,004443 pääte (substantiivi)
+   2485    2614 0,004441 napata (verbi)
+   2486    2613 0,004439 kuri (substantiivi)
+   2487    2613 0,004439 vetäytyä (verbi)
+   2488    2609 0,004432 maasto (substantiivi)
+   2489    2607 0,004429 opinto (substantiivi)
+   2490    2599 0,004415 pyhä (adjektiivi)
+   2491    2598 0,004414 heikentää (verbi)
+   2492    2598 0,004414 pikemmin (adverbi)
+   2493    2598 0,004414 yhä_enemmän (adverbi)
+   2494    2596 0,004410 korkeus (substantiivi)
+   2495    2595 0,004409 kaupunkilainen (substantiivi)
+   2496    2592 0,004404 mauri (erisnimi)
+   2497    2591 0,004402 rajata (verbi)
+   2498    2586 0,004393 hemilä (erisnimi)
+   2499    2586 0,004393 ristiriita (substantiivi)
+   2500    2583 0,004388 sittemmin (adverbi)
+   2501    2579 0,004381 iloita (verbi)
+   2502    2579 0,004381 seutukunta (substantiivi)
+   2503    2577 0,004378 valmistus (substantiivi)
+   2504    2575 0,004375 alustaa (verbi)
+   2505    2572 0,004370 hymyillä (verbi)
+   2506    2572 0,004370 kohden (prepositio)
+   2507    2572 0,004370 kukistaa (verbi)
+   2508    2567 0,004361 eteläinen (adjektiivi)
+   2509    2567 0,004361 parviainen (erisnimi)
+   2510    2566 0,004359 filosofia (substantiivi)
+   2511    2566 0,004359 tuomas (erisnimi)
+   2512    2559 0,004347 joukossa (prepositio)
+   2513    2559 0,004347 ritva (erisnimi)
+   2514    2558 0,004346 jumala (erisnimi)
+   2515    2557 0,004344 näytellä (verbi)
+   2516    2557 0,004344 tarkkaan (adverbi)
+   2517    2555 0,004341 laura (erisnimi)
+   2518    2554 0,004339 ympärille (prepositio)
+   2519    2553 0,004337 järki (substantiivi)
+   2520    2552 0,004336 valmentaa (verbi)
+   2521    2550 0,004332 jono (substantiivi)
+   2522    2550 0,004332 poissa (adverbi)
+   2523    2550 0,004332 ylivoimainen (adjektiivi)
+   2524    2549 0,004330 perinteisesti (adverbi)
+   2525    2547 0,004327 suojelu (substantiivi)
+   2526    2547 0,004327 valitettavasti (adverbi)
+   2527    2546 0,004325 virta (erisnimi)
+   2528    2545 0,004324 taiteellinen (adjektiivi)
+   2529    2544 0,004322 eija (erisnimi)
+   2530    2544 0,004322 hallussa (prepositio)
+   2531    2541 0,004317 kun_taas (konjunktio)
+   2532    2541 0,004317 poikkeuksellisen (adverbi)
+   2533    2539 0,004313 teettää (verbi)
+   2534    2538 0,004312 putki (substantiivi)
+   2535    2536 0,004308 yhtenäinen (adjektiivi)
+   2536    2534 0,004305 saksalainen (substantiivi)
+   2537    2533 0,004303 kesken (adverbi)
+   2538    2532 0,004302 miltei (adverbi)
+   2539    2532 0,004302 mäki (substantiivi)
+   2540    2531 0,004300 aalto (erisnimi)
+   2541    2531 0,004300 vangita (verbi)
+   2542    2530 0,004298 puoluekokous (substantiivi)
+   2543    2526 0,004291 ulla (erisnimi)
+   2544    2525 0,004290 aloittaminen (substantiivi)
+   2545    2525 0,004290 konttori (substantiivi)
+   2546    2524 0,004288 englantilainen (adjektiivi)
+   2547    2523 0,004286 yhteistyökumppani (substantiivi)
+   2548    2523 0,004286 ylläpitää (verbi)
+   2549    2521 0,004283 vieressä (prepositio)
+   2550    2519 0,004279 soveltaa (verbi)
+   2551    2518 0,004278 uni (substantiivi)
+   2552    2518 0,004278 unohtua (verbi)
+   2553    2517 0,004276 kotijoukkue (substantiivi)
+   2554    2515 0,004273 lentokone (substantiivi)
+   2555    2515 0,004273 palestiinalainen (adjektiivi)
+   2556    2514 0,004271 peruna (substantiivi)
+   2557    2511 0,004266 seitsemäs (lukusana)
+   2558    2510 0,004264 tietotekniikka (substantiivi)
+   2559    2507 0,004259 päätellä (verbi)
+   2560    2506 0,004257 firma (substantiivi)
+   2561    2506 0,004257 hitaasti (adverbi)
+   2562    2505 0,004256 päätoimittaja (substantiivi)
+   2563    2505 0,004256 salainen (adjektiivi)
+   2564    2503 0,004252 ikäänkuin (adverbi)
+   2565    2502 0,004251 kritiikki (substantiivi)
+   2566    2502 0,004251 puite (substantiivi)
+   2567    2501 0,004249 koe (substantiivi)
+   2568    2500 0,004247 vladimir (erisnimi)
+   2569    2499 0,004246 maailmansota (substantiivi)
+   2570    2499 0,004246 siviili (substantiivi)
+   2571    2498 0,004244 perusta (substantiivi)
+   2572    2497 0,004242 lehto (erisnimi)
+   2573    2497 0,004242 silloinen (adjektiivi)
+   2574    2492 0,004234 kuitata (verbi)
+   2575    2491 0,004232 puolustusministeri (substantiivi)
+   2576    2490 0,004230 klassinen (adjektiivi)
+   2577    2489 0,004229 paul (erisnimi)
+   2578    2487 0,004225 pyörittää (verbi)
+   2579    2486 0,004223 helikopteri (substantiivi)
+   2580    2486 0,004223 kaivaa (verbi)
+   2581    2483 0,004218 hyötyä (verbi)
+   2582    2480 0,004213 kaatopaikka (substantiivi)
+   2583    2480 0,004213 yksinkertaisesti (adverbi)
+   2584    2477 0,004208 harrastaja (substantiivi)
+   2585    2477 0,004208 suksi (substantiivi)
+   2586    2476 0,004206 piispa (substantiivi)
+   2587    2474 0,004203 teatteri (erisnimi)
+   2588    2472 0,004200 lapsuus (substantiivi)
+   2589    2470 0,004196 pariskunta (substantiivi)
+   2590    2470 0,004196 vahvuus (substantiivi)
+   2591    2469 0,004195 ylös (adverbi)
+   2592    2468 0,004193 pitkälti (adverbi)
+   2593    2468 0,004193 vr (lyhenne)
+   2594    2466 0,004189 vakaa (adjektiivi)
+   2595    2465 0,004188 virasto (substantiivi)
+   2596    2462 0,004183 valiokunta (substantiivi)
+   2597    2460 0,004179 ennuste (substantiivi)
+   2598    2457 0,004174 korjaus (substantiivi)
+   2599    2457 0,004174 kynnys (substantiivi)
+   2600    2456 0,004172 erikoistua (verbi)
+   2601    2455 0,004171 sopu (substantiivi)
+   2602    2451 0,004164 kerrostalo (substantiivi)
+   2603    2450 0,004162 albumi (substantiivi)
+   2604    2450 0,004162 kukka (substantiivi)
+   2605    2450 0,004162 sähköinen (adjektiivi)
+   2606    2449 0,004161 tuomo (erisnimi)
+   2607    2448 0,004159 piirtää (verbi)
+   2608    2448 0,004159 siimes (erisnimi)
+   2609    2446 0,004155 tappara (erisnimi)
+   2610    2445 0,004154 mtk (lyhenne)
+   2611    2443 0,004150 avaus (substantiivi)
+   2612    2443 0,004150 demokraattinen (adjektiivi)
+   2613    2442 0,004149 sakko (substantiivi)
+   2614    2440 0,004145 palkansaaja (substantiivi)
+   2615    2438 0,004142 ilves (substantiivi)
+   2616    2437 0,004140 asianajaja (substantiivi)
+   2617    2435 0,004137 ajattelu (substantiivi)
+   2618    2434 0,004135 hyökkääjä (substantiivi)
+   2619    2429 0,004127 muualle (adverbi)
+   2620    2428 0,004125 äänekoski (erisnimi)
+   2621    2427 0,004123 laajasti (adverbi)
+   2622    2427 0,004123 pettää (verbi)
+   2623    2427 0,004123 tavanomainen (adjektiivi)
+   2624    2427 0,004123 vertailu (substantiivi)
+   2625    2426 0,004122 lisäys (substantiivi)
+   2626    2426 0,004122 peltonen (erisnimi)
+   2627    2425 0,004120 hätä (substantiivi)
+   2628    2423 0,004116 richard (erisnimi)
+   2629    2421 0,004113 merkittävästi (adverbi)
+   2630    2420 0,004111 mainos (substantiivi)
+   2631    2416 0,004105 päällä (prepositio)
+   2632    2414 0,004101 irlanti (erisnimi)
+   2633    2413 0,004099 haave (substantiivi)
+   2634    2413 0,004099 oma (erisnimi)
+   2635    2412 0,004098 juhannus (substantiivi)
+   2636    2412 0,004098 kymmenkunta (lukusana)
+   2637    2411 0,004096 kielteinen (adjektiivi)
+   2638    2410 0,004094 rinnalla (prepositio)
+   2639    2409 0,004093 pappi (substantiivi)
+   2640    2408 0,004091 hirvi (substantiivi)
+   2641    2408 0,004091 karjalainen (substantiivi)
+   2642    2406 0,004088 kaikkialla (adverbi)
+   2643    2405 0,004086 kaupallinen (adjektiivi)
+   2644    2405 0,004086 matkapuhelin (substantiivi)
+   2645    2404 0,004084 sairastua (verbi)
+   2646    2403 0,004082 kotoisin (adverbi)
+   2647    2403 0,004082 loukata (verbi)
+   2648    2402 0,004081 robert (erisnimi)
+   2649    2402 0,004081 varastaa (verbi)
+   2650    2400 0,004077 kirkas (adjektiivi)
+   2651    2400 0,004077 lennonjohtaja (substantiivi)
+   2652    2400 0,004077 ympärillä (prepositio)
+   2653    2399 0,004076 esine (substantiivi)
+   2654    2397 0,004072 pelottaa (verbi)
+   2655    2396 0,004071 merja (erisnimi)
+   2656    2392 0,004064 mtv (lyhenne)
+   2657    2389 0,004059 ford (erisnimi)
+   2658    2386 0,004054 asiakirja (substantiivi)
+   2659    2382 0,004047 lohko (substantiivi)
+   2660    2380 0,004043 kokoinen (adjektiivi)
+   2661    2380 0,004043 lievä (adjektiivi)
+   2662    2379 0,004042 puheenvuoro (substantiivi)
+   2663    2378 0,004040 pikku (adjektiivi)
+   2664    2377 0,004038 markkinoida (verbi)
+   2665    2376 0,004037 kutsu (substantiivi)
+   2666    2375 0,004035 keskiarvo (substantiivi)
+   2667    2374 0,004033 maltillinen (adjektiivi)
+   2668    2373 0,004031 kuulostaa (verbi)
+   2669    2373 0,004031 peittää (verbi)
+   2670    2372 0,004030 laskelma (substantiivi)
+   2671    2371 0,004028 muutto (substantiivi)
+   2672    2371 0,004028 poikkeus (substantiivi)
+   2673    2371 0,004028 vaivata (verbi)
+   2674    2369 0,004025 talouskasvu (substantiivi)
+   2675    2364 0,004016 maisteri (substantiivi)
+   2676    2364 0,004016 väylä (substantiivi)
+   2677    2363 0,004014 orivesi (erisnimi)
+   2678    2363 0,004014 vakuutus (substantiivi)
+   2679    2362 0,004013 taloudellisesti (adverbi)
+   2680    2361 0,004011 lehmä (substantiivi)
+   2681    2360 0,004009 avioliitto (substantiivi)
+   2682    2360 0,004009 myymälä (substantiivi)
+   2683    2360 0,004009 paula (erisnimi)
+   2684    2359 0,004008 miellyttää (verbi)
+   2685    2358 0,004006 saari (erisnimi)
+   2686    2357 0,004004 puolustusvoima (substantiivi)
+   2687    2355 0,004001 inhimillinen (adjektiivi)
+   2688    2354 0,003999 pula (substantiivi)
+   2689    2353 0,003997 britti (substantiivi)
+   2690    2351 0,003994 enso (erisnimi)
+   2691    2350 0,003992 kaisa (erisnimi)
+   2692    2348 0,003989 seppänen (erisnimi)
+   2693    2348 0,003989 tuominen (substantiivi)
+   2694    2347 0,003987 keski-eurooppa (erisnimi)
+   2695    2347 0,003987 koskettaa (verbi)
+   2696    2347 0,003987 sissi (substantiivi)
+   2697    2345 0,003984 kaupunginteatteri (substantiivi)
+   2698    2344 0,003982 iran (erisnimi)
+   2699    2344 0,003982 katketa (verbi)
+   2700    2344 0,003982 kunnostaa (verbi)
+   2701    2342 0,003979 joka_päivä (adverbi)
+   2702    2341 0,003977 romahtaa (verbi)
+   2703    2341 0,003977 toistaa (verbi)
+   2704    2339 0,003974 aines (substantiivi)
+   2705    2339 0,003974 ankara (adjektiivi)
+   2706    2339 0,003974 suojata (verbi)
+   2707    2336 0,003969 tiedote (substantiivi)
+   2708    2334 0,003965 joukkoon (prepositio)
+   2709    2328 0,003955 jotenkin (adverbi)
+   2710    2326 0,003952 laajennus (substantiivi)
+   2711    2324 0,003948 lisääntyminen (substantiivi)
+   2712    2324 0,003948 osavaltio (substantiivi)
+   2713    2323 0,003947 ilmeinen (adjektiivi)
+   2714    2321 0,003943 huolestua (verbi)
+   2715    2321 0,003943 kuntalainen (substantiivi)
+   2716    2321 0,003943 liiketoiminta (substantiivi)
+   2717    2320 0,003941 entä (adverbi)
+   2718    2320 0,003941 veto (substantiivi)
+   2719    2319 0,003940 rajoitus (substantiivi)
+   2720    2318 0,003938 solisti (substantiivi)
+   2721    2317 0,003936 tasan (adverbi)
+   2722    2316 0,003935 työmarkkina (substantiivi)
+   2723    2315 0,003933 matkailija (substantiivi)
+   2724    2314 0,003931 innokas (adjektiivi)
+   2725    2314 0,003931 salmi (erisnimi)
+   2726    2313 0,003930 vaatimaton (adjektiivi)
+   2727    2312 0,003928 edusta (substantiivi)
+   2728    2312 0,003928 luominen (substantiivi)
+   2729    2312 0,003928 niminen (adjektiivi)
+   2730    2312 0,003928 normaalisti (adverbi)
+   2731    2312 0,003928 penni (substantiivi)
+   2732    2312 0,003928 pettyä (verbi)
+   2733    2312 0,003928 raaka-aine (substantiivi)
+   2734    2311 0,003926 telakka (substantiivi)
+   2735    2310 0,003924 ilmaisku (substantiivi)
+   2736    2310 0,003924 strategia (substantiivi)
+   2737    2309 0,003923 varmuus (substantiivi)
+   2738    2308 0,003921 muutoin (adverbi)
+   2739    2308 0,003921 peräisin (adverbi)
+   2740    2307 0,003919 torjunta (substantiivi)
+   2741    2306 0,003918 rikollisuus (substantiivi)
+   2742    2305 0,003916 ikäluokka (substantiivi)
+   2743    2305 0,003916 risteys (substantiivi)
+   2744    2304 0,003914 brasilia (erisnimi)
+   2745    2297 0,003902 rinne (substantiivi)
+   2746    2297 0,003902 valtiovarainministeriö (substantiivi)
+   2747    2296 0,003901 yhdistyä (verbi)
+   2748    2295 0,003899 cd (lyhenne)
+   2749    2290 0,003890 esiintyminen (substantiivi)
+   2750    2288 0,003887 heidi (erisnimi)
+   2751    2287 0,003885 joskin (konjunktio)
+   2752    2287 0,003885 kainuu (erisnimi)
+   2753    2284 0,003880 oikeuttaa (verbi)
+   2754    2283 0,003879 yleisurheilu (substantiivi)
+   2755    2282 0,003877 naurahtaa (verbi)
+   2756    2280 0,003873 vuotisjuhla (substantiivi)
+   2757    2278 0,003870 moittia (verbi)
+   2758    2277 0,003868 divisioona (substantiivi)
+   2759    2276 0,003867 fuusio (substantiivi)
+   2760    2274 0,003863 korkeintaan (adverbi)
+   2761    2274 0,003863 käsikirjoitus (substantiivi)
+   2762    2272 0,003860 uudestaan (adverbi)
+   2763    2271 0,003858 yhdistäminen (substantiivi)
+   2764    2270 0,003856 panos (substantiivi)
+   2765    2269 0,003855 aktiivisesti (adverbi)
+   2766    2269 0,003855 grafiikka (substantiivi)
+   2767    2268 0,003853 eräänlainen (adjektiivi)
+   2768    2268 0,003853 läheisyys (substantiivi)
+   2769    2268 0,003853 reilusti (adverbi)
+   2770    2268 0,003853 saarijärvi (erisnimi)
+   2771    2268 0,003853 säilyttäminen (substantiivi)
+   2772    2268 0,003853 ukraina (erisnimi)
+   2773    2267 0,003851 liittymä (substantiivi)
+   2774    2265 0,003848 sytyttää (verbi)
+   2775    2264 0,003846 tutkinto (substantiivi)
+   2776    2263 0,003845 muualta (adverbi)
+   2777    2262 0,003843 tarkkailija (substantiivi)
+   2778    2260 0,003839 kaikenlainen (adjektiivi)
+   2779    2260 0,003839 suuntautua (verbi)
+   2780    2259 0,003838 menneisyys (substantiivi)
+   2781    2258 0,003836 muisti (substantiivi)
+   2782    2257 0,003834 vaikeuttaa (verbi)
+   2783    2257 0,003834 yllä (adverbi)
+   2784    2256 0,003833 mmk (lyhenne)
+   2785    2255 0,003831 base (erisnimi)
+   2786    2255 0,003831 kriittinen (adjektiivi)
+   2787    2253 0,003828 arviointi (substantiivi)
+   2788    2252 0,003826 kansainvälinen (erisnimi)
+   2789    2251 0,003824 kontiolahti (erisnimi)
+   2790    2251 0,003824 puku (substantiivi)
+   2791    2251 0,003824 rauhansopimus (substantiivi)
+   2792    2250 0,003822 konkurssi (substantiivi)
+   2793    2250 0,003822 pehmeä (adjektiivi)
+   2794    2249 0,003821 ikävä (adjektiivi)
+   2795    2246 0,003816 räjähdys (substantiivi)
+   2796    2246 0,003816 valtuuskunta (substantiivi)
+   2797    2245 0,003814 suuruinen (adjektiivi)
+   2798    2243 0,003811 maistua (verbi)
+   2799    2241 0,003807 rankka (adjektiivi)
+   2800    2241 0,003807 seppälä (erisnimi)
+   2801    2240 0,003806 kilpa (substantiivi)
+   2802    2240 0,003806 konkreettinen (adjektiivi)
+   2803    2239 0,003804 levittää (verbi)
+   2804    2238 0,003802 katse (substantiivi)
+   2805    2237 0,003800 arkkitehti (substantiivi)
+   2806    2236 0,003799 suuruus (substantiivi)
+   2807    2235 0,003797 eino (erisnimi)
+   2808    2235 0,003797 vähentäminen (substantiivi)
+   2809    2234 0,003795 palaute (substantiivi)
+   2810    2233 0,003794 irrota (verbi)
+   2811    2232 0,003792 työsuhde (substantiivi)
+   2812    2231 0,003790 potku (substantiivi)
+   2813    2231 0,003790 sen_mukaan (adverbi)
+   2814    2230 0,003789 lehtikuva (erisnimi)
+   2815    2230 0,003789 sirpa (erisnimi)
+   2816    2230 0,003789 titteli (substantiivi)
+   2817    2227 0,003783 city (erisnimi)
+   2818    2224 0,003778 hallintoneuvosto (substantiivi)
+   2819    2222 0,003775 vahvistua (verbi)
+   2820    2221 0,003773 anu (erisnimi)
+   2821    2221 0,003773 lukko (substantiivi)
+   2822    2221 0,003773 peruskoulu (substantiivi)
+   2823    2220 0,003772 rkp (lyhenne)
+   2824    2219 0,003770 soitto (substantiivi)
+   2825    2218 0,003768 työaika (substantiivi)
+   2826    2215 0,003763 uskonto (substantiivi)
+   2827    2214 0,003761 yrjö (erisnimi)
+   2828    2212 0,003758 kuusi (substantiivi)
+   2829    2212 0,003758 liikanen (erisnimi)
+   2830    2211 0,003756 hirvonen (erisnimi)
+   2831    2211 0,003756 jääkiekkoilu (substantiivi)
+   2832    2210 0,003755 toimitus (substantiivi)
+   2833    2209 0,003753 huomenna (adverbi)
+   2834    2208 0,003751 leimata (verbi)
+   2835    2208 0,003751 tom (erisnimi)
+   2836    2207 0,003749 toimiala (substantiivi)
+   2837    2206 0,003748 kuulija (substantiivi)
+   2838    2202 0,003741 seikka (substantiivi)
+   2839    2202 0,003741 sihteeri (substantiivi)
+   2840    2201 0,003739 lahti (substantiivi)
+   2841    2201 0,003739 vapaa (substantiivi)
+   2842    2197 0,003732 kokonainen (adjektiivi)
+   2843    2197 0,003732 säätää (verbi)
+   2844    2197 0,003732 varaan (prepositio)
+   2845    2196 0,003731 tiede (substantiivi)
+   2846    2194 0,003727 aineisto (substantiivi)
+   2847    2194 0,003727 loimaa (erisnimi)
+   2848    2191 0,003722 laukaus (substantiivi)
+   2849    2191 0,003722 pelaaminen (substantiivi)
+   2850    2191 0,003722 tajuta (verbi)
+   2851    2189 0,003719 tilalle (prepositio)
+   2852    2188 0,003717 hakeutua (verbi)
+   2853    2187 0,003715 paistaa (verbi)
+   2854    2187 0,003715 posti (erisnimi)
+   2855    2186 0,003714 al (erisnimi)
+   2856    2186 0,003714 arvata (verbi)
+   2857    2186 0,003714 dosentti (substantiivi)
+   2858    2185 0,003712 huomioida (verbi)
+   2859    2184 0,003710 ikäinen (adjektiivi)
+   2860    2184 0,003710 sävy (substantiivi)
+   2861    2184 0,003710 tukeminen (substantiivi)
+   2862    2183 0,003709 kettunen (erisnimi)
+   2863    2183 0,003709 punainen (erisnimi)
+   2864    2182 0,003707 pudotuspeli (substantiivi)
+   2865    2181 0,003705 pullo (substantiivi)
+   2866    2178 0,003700 harmitella (verbi)
+   2867    2178 0,003700 pohjanmaa (erisnimi)
+   2868    2177 0,003698 sairaanhoitopiiri (substantiivi)
+   2869    2176 0,003697 haastatella (verbi)
+   2870    2171 0,003688 asuminen (substantiivi)
+   2871    2171 0,003688 inflaatio (substantiivi)
+   2872    2168 0,003683 katja (erisnimi)
+   2873    2167 0,003681 pystyttää (verbi)
+   2874    2166 0,003680 rajusti (adverbi)
+   2875    2165 0,003678 vankka (adjektiivi)
+   2876    2165 0,003678 välille (prepositio)
+   2877    2163 0,003675 kiinteä (adjektiivi)
+   2878    2162 0,003673 päivähoito (substantiivi)
+   2879    2162 0,003673 vetäjä (substantiivi)
+   2880    2161 0,003671 lattia (substantiivi)
+   2881    2161 0,003671 vastaavasti (adverbi)
+   2882    2160 0,003670 kamera (substantiivi)
+   2883    2152 0,003656 hullu (adjektiivi)
+   2884    2151 0,003654 seuraaja (substantiivi)
+   2885    2151 0,003654 tasapaino (substantiivi)
+   2886    2150 0,003653 tiettävästi (adverbi)
+   2887    2149 0,003651 lainata (verbi)
+   2888    2149 0,003651 lajunen (erisnimi)
+   2889    2146 0,003646 arvostelu (substantiivi)
+   2890    2145 0,003644 pirkkala (erisnimi)
+   2891    2145 0,003644 siipi (substantiivi)
+   2892    2145 0,003644 tasa-arvo (substantiivi)
+   2893    2144 0,003642 kuutio (substantiivi)
+   2894    2144 0,003642 laajeta (verbi)
+   2895    2144 0,003642 valmet (erisnimi)
+   2896    2143 0,003641 huolestuttaa (verbi)
+   2897    2142 0,003639 synkkä (adjektiivi)
+   2898    2141 0,003637 lisä (substantiivi)
+   2899    2140 0,003636 ihana (adjektiivi)
+   2900    2140 0,003636 jatkaminen (substantiivi)
+   2901    2140 0,003636 oire (substantiivi)
+   2902    2139 0,003634 uudenlainen (adjektiivi)
+   2903    2138 0,003632 johdosta (prepositio)
+   2904    2138 0,003632 velvollisuus (substantiivi)
+   2905    2137 0,003631 keijo (erisnimi)
+   2906    2135 0,003627 ajoneuvo (substantiivi)
+   2907    2134 0,003625 myrsky (substantiivi)
+   2908    2133 0,003624 lempäälä (erisnimi)
+   2909    2133 0,003624 mutta_jos (konjunktio)
+   2910    2131 0,003620 haavoittua (verbi)
+   2911    2130 0,003619 norjalainen (substantiivi)
+   2912    2128 0,003615 kerho (substantiivi)
+   2913    2125 0,003610 puheenjohtajuus (substantiivi)
+   2914    2125 0,003610 vauva (substantiivi)
+   2915    2123 0,003607 lehdistö (substantiivi)
+   2916    2123 0,003607 tanssija (substantiivi)
+   2917    2121 0,003603 brittiläinen (adjektiivi)
+   2918    2121 0,003603 tervetullut (adjektiivi)
+   2919    2121 0,003603 toisenlainen (adjektiivi)
+   2920    2120 0,003602 nuorukainen (substantiivi)
+   2921    2119 0,003600 ainutlaatuinen (adjektiivi)
+   2922    2119 0,003600 hammas (substantiivi)
+   2923    2119 0,003600 itsestään (adverbi)
+   2924    2119 0,003600 video (substantiivi)
+   2925    2118 0,003598 riita (substantiivi)
+   2926    2118 0,003598 rintama (substantiivi)
+   2927    2116 0,003595 duuma (substantiivi)
+   2928    2116 0,003595 polttoaine (substantiivi)
+   2929    2115 0,003593 soittaja (substantiivi)
+   2930    2114 0,003591 lähiaika (substantiivi)
+   2931    2113 0,003590 kirsti (erisnimi)
+   2932    2113 0,003590 minne (adverbi)
+   2933    2111 0,003586 ammattikorkeakoulu (substantiivi)
+   2934    2111 0,003586 että_kun (konjunktio)
+   2935    2111 0,003586 kiihtyä (verbi)
+   2936    2111 0,003586 nimitys (substantiivi)
+   2937    2108 0,003581 päämäärä (substantiivi)
+   2938    2106 0,003578 paikallaan (adverbi)
+   2939    2106 0,003578 vammala (erisnimi)
+   2940    2105 0,003576 elo (substantiivi)
+   2941    2105 0,003576 jälkeen (adverbi)
+   2942    2105 0,003576 sukulainen (substantiivi)
+   2943    2101 0,003569 kuorevesi (erisnimi)
+   2944    2101 0,003569 opastaa (verbi)
+   2945    2101 0,003569 taulu (substantiivi)
+   2946    2098 0,003564 harmittaa (verbi)
+   2947    2098 0,003564 jalkapalloilu (substantiivi)
+   2948    2097 0,003563 avajaiset (substantiivi)
+   2949    2095 0,003559 kasa (substantiivi)
+   2950    2094 0,003557 itäinen (adjektiivi)
+   2951    2094 0,003557 kiristää (verbi)
+   2952    2094 0,003557 marja (substantiivi)
+   2953    2093 0,003556 purra (verbi)
+   2954    2091 0,003552 maalaiskunta (substantiivi)
+   2955    2091 0,003552 s (lyhenne)
+   2956    2090 0,003551 petteri (erisnimi)
+   2957    2089 0,003549 kuntayhtymä (substantiivi)
+   2958    2089 0,003549 maanviljelijä (substantiivi)
+   2959    2089 0,003549 mainio (adjektiivi)
+   2960    2089 0,003549 tony (erisnimi)
+   2961    2088 0,003547 ikonen (erisnimi)
+   2962    2086 0,003544 laaksonen (erisnimi)
+   2963    2086 0,003544 pankki (erisnimi)
+   2964    2086 0,003544 yksimielisesti (adverbi)
+   2965    2085 0,003542 osto (substantiivi)
+   2966    2084 0,003540 aura (erisnimi)
+   2967    2084 0,003540 pia (erisnimi)
+   2968    2083 0,003539 suunnittelija (substantiivi)
+   2969    2083 0,003539 uudistaminen (substantiivi)
+   2970    2082 0,003537 alta (prepositio)
+   2971    2080 0,003534 linja-auto (substantiivi)
+   2972    2080 0,003534 los (erisnimi)
+   2973    2079 0,003532 etelä-afrikka (erisnimi)
+   2974    2079 0,003532 jean (erisnimi)
+   2975    2077 0,003529 edeltää (verbi)
+   2976    2077 0,003529 sataa (verbi)
+   2977    2077 0,003529 säveltää (verbi)
+   2978    2076 0,003527 lasi (substantiivi)
+   2979    2076 0,003527 virta (substantiivi)
+   2980    2071 0,003518 hiljaa (adverbi)
+   2981    2071 0,003518 tuhoutua (verbi)
+   2982    2070 0,003517 hoitaminen (substantiivi)
+   2983    2070 0,003517 innostaa (verbi)
+   2984    2069 0,003515 elinkeinoelämä (substantiivi)
+   2985    2068 0,003513 tuumia (verbi)
+   2986    2066 0,003510 hallitusohjelma (substantiivi)
+   2987    2066 0,003510 kassa (substantiivi)
+   2988    2066 0,003510 sairas (adjektiivi)
+   2989    2063 0,003505 jyrkkä (adjektiivi)
+   2990    2062 0,003503 avustaa (verbi)
+   2991    2062 0,003503 pahoinpitely (substantiivi)
+   2992    2061 0,003501 elisabeth (erisnimi)
+   2993    2060 0,003500 samanaikaisesti (adverbi)
+   2994    2058 0,003496 toipua (verbi)
+   2995    2058 0,003496 ylin (adjektiivi)
+   2996    2057 0,003495 näyte (substantiivi)
+   2997    2056 0,003493 hajota (verbi)
+   2998    2056 0,003493 irtisanominen (substantiivi)
+   2999    2056 0,003493 saalis (substantiivi)
+   3000    2056 0,003493 tarpeen (adverbi)
+   3001    2055 0,003491 esiintyjä (substantiivi)
+   3002    2055 0,003491 opetella (verbi)
+   3003    2055 0,003491 suositus (substantiivi)
+   3004    2054 0,003490 anneli (erisnimi)
+   3005    2053 0,003488 elämys (substantiivi)
+   3006    2052 0,003486 oslo (erisnimi)
+   3007    2051 0,003484 kehitellä (verbi)
+   3008    2050 0,003483 hiihtäjä (substantiivi)
+   3009    2050 0,003483 tuonti (substantiivi)
+   3010    2048 0,003479 leikki (substantiivi)
+   3011    2048 0,003479 liettua (erisnimi)
+   3012    2047 0,003478 koitua (verbi)
+   3013    2047 0,003478 vailla (prepositio)
+   3014    2046 0,003476 lahjoittaa (verbi)
+   3015    2045 0,003474 arvostus (substantiivi)
+   3016    2045 0,003474 jatkoaika (substantiivi)
+   3017    2045 0,003474 käsite (substantiivi)
+   3018    2044 0,003473 ihailla (verbi)
+   3019    2044 0,003473 kuhmo (erisnimi)
+   3020    2043 0,003471 irti (adverbi)
+   3021    2042 0,003469 salo (substantiivi)
+   3022    2041 0,003467 ihalainen (erisnimi)
+   3023    2040 0,003466 loukkaantuminen (substantiivi)
+   3024    2040 0,003466 turvaaminen (substantiivi)
+   3025    2040 0,003466 united (erisnimi)
+   3026    2038 0,003462 jyväskyläläinen (adjektiivi)
+   3027    2036 0,003459 mielikuva (substantiivi)
+   3028    2036 0,003459 tämän_päivän (adjektiivi)
+   3029    2034 0,003456 lakkauttaa (verbi)
+   3030    2034 0,003456 sirkka (erisnimi)
+   3031    2033 0,003454 rauhoittaa (verbi)
+   3032    2031 0,003450 johansson (erisnimi)
+   3033    2030 0,003449 enintään (adverbi)
+   3034    2030 0,003449 perässä (prepositio)
+   3035    2028 0,003445 anita (erisnimi)
+   3036    2028 0,003445 nykyaika (substantiivi)
+   3037    2028 0,003445 paita (substantiivi)
+   3038    2028 0,003445 verotulo (substantiivi)
+   3039    2027 0,003444 peltola (erisnimi)
+   3040    2025 0,003440 sormi (substantiivi)
+   3041    2023 0,003437 edestä (prepositio)
+   3042    2023 0,003437 kalusto (substantiivi)
+   3043    2023 0,003437 kipu (substantiivi)
+   3044    2023 0,003437 veljekset (substantiivi)
+   3045    2021 0,003433 ehdollinen (adjektiivi)
+   3046    2021 0,003433 halukas (adjektiivi)
+   3047    2021 0,003433 mielenkiinto (substantiivi)
+   3048    2016 0,003425 harmaa (adjektiivi)
+   3049    2014 0,003422 loppu (adjektiivi)
+   3050    2011 0,003416 maarit (erisnimi)
+   3051    2010 0,003415 pakollinen (adjektiivi)
+   3052    2009 0,003413 lähetys (substantiivi)
+   3053    2008 0,003411 lausua (verbi)
+   3054    2008 0,003411 liikkuminen (substantiivi)
+   3055    2006 0,003408 esivaali (substantiivi)
+   3056    2006 0,003408 junior (substantiivi)
+   3057    2004 0,003405 ammattiliitto (substantiivi)
+   3058    2004 0,003405 kehittyminen (substantiivi)
+   3059    2004 0,003405 kohdella (verbi)
+   3060    2004 0,003405 selänne (erisnimi)
+   3061    2003 0,003403 heino (erisnimi)
+   3062    2002 0,003401 ihmisoikeus (substantiivi)
+   3063    2000 0,003398 haavisto (erisnimi)
+   3064    1999 0,003396 hautausmaa (substantiivi)
+   3065    1999 0,003396 kilpailukyky (substantiivi)
+   3066    1999 0,003396 puhdistaa (verbi)
+   3067    1998 0,003394 kohtaaminen (substantiivi)
+   3068    1997 0,003393 korostua (verbi)
+   3069    1997 0,003393 uskonnollinen (adjektiivi)
+   3070    1994 0,003388 keskussairaala (substantiivi)
+   3071    1994 0,003388 kiehtoa (verbi)
+   3072    1994 0,003388 nostaminen (substantiivi)
+   3073    1993 0,003386 jones (erisnimi)
+   3074    1993 0,003386 latu (substantiivi)
+   3075    1993 0,003386 soveltua (verbi)
+   3076    1992 0,003384 valtatie (substantiivi)
+   3077    1992 0,003384 värikäs (adjektiivi)
+   3078    1991 0,003382 emäntä (substantiivi)
+   3079    1991 0,003382 valuutta (substantiivi)
+   3080    1990 0,003381 tilalle (adverbi)
+   3081    1990 0,003381 turvautua (verbi)
+   3082    1988 0,003377 vapaaehtoinen (adjektiivi)
+   3083    1986 0,003374 rannikko (substantiivi)
+   3084    1985 0,003372 susi (substantiivi)
+   3085    1985 0,003372 syöttö (substantiivi)
+   3086    1984 0,003371 jaana (erisnimi)
+   3087    1984 0,003371 pitkänen (erisnimi)
+   3088    1982 0,003367 ajoissa (adverbi)
+   3089    1982 0,003367 tarkkailla (verbi)
+   3090    1981 0,003365 perehtyä (verbi)
+   3091    1980 0,003364 rekka (substantiivi)
+   3092    1980 0,003364 tavallaan (adverbi)
+   3093    1974 0,003354 linjaus (substantiivi)
+   3094    1973 0,003352 kiistellä (verbi)
+   3095    1973 0,003352 pukeutua (verbi)
+   3096    1973 0,003352 sielu (substantiivi)
+   3097    1970 0,003347 vuotinen (adjektiivi)
+   3098    1968 0,003343 sen_vuoksi (adverbi)
+   3099    1967 0,003342 ahvenanmaa (erisnimi)
+   3100    1967 0,003342 heiketä (verbi)
+   3101    1967 0,003342 tupakka (substantiivi)
+   3102    1965 0,003338 kotonaan (adverbi)
+   3103    1964 0,003337 forssa (erisnimi)
+   3104    1964 0,003337 kankkunen (erisnimi)
+   3105    1964 0,003337 venyä (verbi)
+   3106    1963 0,003335 outi (erisnimi)
+   3107    1962 0,003333 ulkopuolinen (substantiivi)
+   3108    1961 0,003332 japanilainen (adjektiivi)
+   3109    1961 0,003332 voi (substantiivi)
+   3110    1960 0,003330 konferenssi (substantiivi)
+   3111    1960 0,003330 mittari (substantiivi)
+   3112    1958 0,003326 andersson (erisnimi)
+   3113    1958 0,003326 viinanen (erisnimi)
+   3114    1957 0,003325 turhan (adverbi)
+   3115    1957 0,003325 väsyä (verbi)
+   3116    1956 0,003323 kenkä (substantiivi)
+   3117    1956 0,003323 satu (substantiivi)
+   3118    1956 0,003323 väisänen (erisnimi)
+   3119    1955 0,003321 kahdeksas (lukusana)
+   3120    1955 0,003321 miehistö (substantiivi)
+   3121    1955 0,003321 vaalikausi (substantiivi)
+   3122    1955 0,003321 ympäristöministeriö (substantiivi)
+   3123    1954 0,003320 kansi (substantiivi)
+   3124    1954 0,003320 toteutuminen (substantiivi)
+   3125    1951 0,003315 jäähalli (substantiivi)
+   3126    1951 0,003315 ylöjärvi (erisnimi)
+   3127    1949 0,003311 metsäteollisuus (substantiivi)
+   3128    1949 0,003311 vakituinen (adjektiivi)
+   3129    1948 0,003309 ylivieska (erisnimi)
+   3130    1947 0,003308 huima (adjektiivi)
+   3131    1947 0,003308 maapallo (substantiivi)
+   3132    1946 0,003306 tulli (substantiivi)
+   3133    1945 0,003304 alempi (adjektiivi)
+   3134    1945 0,003304 tiedotustilaisuus (substantiivi)
+   3135    1945 0,003304 varhain (adverbi)
+   3136    1944 0,003303 barcelona (erisnimi)
+   3137    1944 0,003303 eväs (substantiivi)
+   3138    1944 0,003303 kuulemma (adverbi)
+   3139    1944 0,003303 pekkarinen (erisnimi)
+   3140    1942 0,003299 uutuus (substantiivi)
+   3141    1942 0,003299 väliaikainen (adjektiivi)
+   3142    1940 0,003296 nina (erisnimi)
+   3143    1940 0,003296 sittenkin (adverbi)
+   3144    1940 0,003296 syyllinen (adjektiivi)
+   3145    1940 0,003296 virus (substantiivi)
+   3146    1939 0,003294 useasti (adverbi)
+   3147    1938 0,003292 kautta (adverbi)
+   3148    1938 0,003292 tutkimuslaitos (substantiivi)
+   3149    1937 0,003291 kaksikko (substantiivi)
+   3150    1935 0,003287 anti (substantiivi)
+   3151    1935 0,003287 loppuvuosi (substantiivi)
+   3152    1934 0,003286 taina (erisnimi)
+   3153    1933 0,003284 ikaalinen (erisnimi)
+   3154    1933 0,003284 pala (substantiivi)
+   3155    1933 0,003284 reagoida (verbi)
+   3156    1931 0,003281 angeles (erisnimi)
+   3157    1931 0,003281 mikael (erisnimi)
+   3158    1931 0,003281 puheenjohtajamaa (substantiivi)
+   3159    1929 0,003277 ahdas (adjektiivi)
+   3160    1929 0,003277 istuttaa (verbi)
+   3161    1928 0,003275 edellä (adverbi)
+   3162    1928 0,003275 olympiakomitea (substantiivi)
+   3163    1925 0,003270 kymppi (substantiivi)
+   3164    1925 0,003270 nuoruus (substantiivi)
+   3165    1923 0,003267 korkeakoulu (substantiivi)
+   3166    1923 0,003267 sasi (erisnimi)
+   3167    1923 0,003267 teoria (substantiivi)
+   3168    1921 0,003264 tuomioja (erisnimi)
+   3169    1920 0,003262 lääketiede (substantiivi)
+   3170    1919 0,003260 sijaan (prepositio)
+   3171    1918 0,003258 kymmenes (lukusana)
+   3172    1918 0,003258 saaja (substantiivi)
+   3173    1918 0,003258 veijo (erisnimi)
+   3174    1917 0,003257 epävarma (adjektiivi)
+   3175    1917 0,003257 suru (substantiivi)
+   3176    1917 0,003257 ydin (substantiivi)
+   3177    1916 0,003255 niska (substantiivi)
+   3178    1915 0,003253 epävarmuus (substantiivi)
+   3179    1915 0,003253 normaali (substantiivi)
+   3180    1915 0,003253 sen_jälkeen_kun (konjunktio)
+   3181    1914 0,003252 ennen_muuta (adverbi)
+   3182    1914 0,003252 peruskorjaus (substantiivi)
+   3183    1914 0,003252 reuna (substantiivi)
+   3184    1912 0,003248 ikääntyä (verbi)
+   3185    1912 0,003248 jälkimmäinen (adjektiivi)
+   3186    1912 0,003248 syntymä (substantiivi)
+   3187    1912 0,003248 vapaasti (adverbi)
+   3188    1911 0,003247 karhu (erisnimi)
+   3189    1911 0,003247 kulma (substantiivi)
+   3190    1910 0,003245 lämpötila (substantiivi)
+   3191    1910 0,003245 repiä (verbi)
+   3192    1910 0,003245 tumma (adjektiivi)
+   3193    1910 0,003245 virrata (verbi)
+   3194    1909 0,003243 mustonen (erisnimi)
+   3195    1908 0,003241 savolainen (erisnimi)
+   3196    1908 0,003241 siitä_huolimatta (adverbi)
+   3197    1908 0,003241 suominen (erisnimi)
+   3198    1907 0,003240 varovainen (adjektiivi)
+   3199    1907 0,003240 välttyä (verbi)
+   3200    1906 0,003238 ydinvoima (substantiivi)
+   3201    1905 0,003236 ilmavoima (substantiivi)
+   3202    1905 0,003236 kapellimestari (substantiivi)
+   3203    1905 0,003236 portti (substantiivi)
+   3204    1904 0,003235 elementti (substantiivi)
+   3205    1903 0,003233 taksi (substantiivi)
+   3206    1902 0,003231 ammattitaito (substantiivi)
+   3207    1902 0,003231 dl (lyhenne)
+   3208    1902 0,003231 kielto (substantiivi)
+   3209    1900 0,003228 laajentuminen (substantiivi)
+   3210    1900 0,003228 muotoilla (verbi)
+   3211    1900 0,003228 rooma (erisnimi)
+   3212    1900 0,003228 toimeen (adverbi)
+   3213    1898 0,003224 raija (erisnimi)
+   3214    1898 0,003224 viimeistellä (verbi)
+   3215    1897 0,003223 ateena (erisnimi)
+   3216    1897 0,003223 häiriö (substantiivi)
+   3217    1897 0,003223 kohtuuton (adjektiivi)
+   3218    1896 0,003221 arviolta (adverbi)
+   3219    1894 0,003218 samoin_kuin (adverbi)
+   3220    1893 0,003216 arkipäivä (substantiivi)
+   3221    1892 0,003214 haku (substantiivi)
+   3222    1892 0,003214 kiinalainen (adjektiivi)
+   3223    1892 0,003214 sergei (erisnimi)
+   3224    1891 0,003213 yksimielinen (adjektiivi)
+   3225    1890 0,003211 palkkio (substantiivi)
+   3226    1888 0,003207 pykälä (substantiivi)
+   3227    1886 0,003204 fortum (erisnimi)
+   3228    1886 0,003204 sttk (lyhenne)
+   3229    1886 0,003204 tieteellinen (adjektiivi)
+   3230    1885 0,003202 ericsson (erisnimi)
+   3231    1884 0,003201 suurlähettiläs (substantiivi)
+   3232    1884 0,003201 tulva (substantiivi)
+   3233    1882 0,003197 epäily (substantiivi)
+   3234    1881 0,003196 laajentaminen (substantiivi)
+   3235    1879 0,003192 ympäröidä (verbi)
+   3236    1878 0,003191 maaperä (substantiivi)
+   3237    1877 0,003189 liitto (erisnimi)
+   3238    1877 0,003189 minkälainen (adjektiivi)
+   3239    1876 0,003187 litmanen (erisnimi)
+   3240    1875 0,003185 valtionosuus (substantiivi)
+   3241    1874 0,003184 kehitysmaa (substantiivi)
+   3242    1874 0,003184 oppiminen (substantiivi)
+   3243    1873 0,003182 in (lyhenne)
+   3244    1872 0,003180 sosialidemokraatti (substantiivi)
+   3245    1871 0,003179 kuluttaa (verbi)
+   3246    1870 0,003177 risti (erisnimi)
+   3247    1870 0,003177 ulkona (adverbi)
+   3248    1867 0,003172 sietää (verbi)
+   3249    1866 0,003170 rohkea (adjektiivi)
+   3250    1866 0,003170 sukupuoli (substantiivi)
+   3251    1865 0,003168 kesko (erisnimi)
+   3252    1865 0,003168 välityksellä (prepositio)
+   3253    1864 0,003167 riikka (erisnimi)
+   3254    1863 0,003165 kahvila (substantiivi)
+   3255    1863 0,003165 koivu (erisnimi)
+   3256    1862 0,003163 kunnanvaltuusto (substantiivi)
+   3257    1862 0,003163 opisto (substantiivi)
+   3258    1862 0,003163 sävellys (substantiivi)
+   3259    1861 0,003162 jazz (substantiivi)
+   3260    1861 0,003162 osanottaja (substantiivi)
+   3261    1861 0,003162 san (erisnimi)
+   3262    1860 0,003160 perua (verbi)
+   3263    1859 0,003158 neuvo (substantiivi)
+   3264    1857 0,003155 keli (substantiivi)
+   3265    1857 0,003155 välissä (prepositio)
+   3266    1856 0,003153 samalla_kun (konjunktio)
+   3267    1853 0,003148 jännitys (substantiivi)
+   3268    1853 0,003148 puheenjohtajakausi (substantiivi)
+   3269    1853 0,003148 sillanpää (erisnimi)
+   3270    1851 0,003145 luetella (verbi)
+   3271    1851 0,003145 wien (erisnimi)
+   3272    1850 0,003143 heitto (substantiivi)
+   3273    1848 0,003140 rinta (substantiivi)
+   3274    1847 0,003138 metalli (substantiivi)
+   3275    1846 0,003136 lämmittää (verbi)
+   3276    1845 0,003134 anja (erisnimi)
+   3277    1845 0,003134 marjatta (erisnimi)
+   3278    1844 0,003133 nurmi (erisnimi)
+   3279    1844 0,003133 vaikkei (verbi)
+   3280    1843 0,003131 kokonaisuudessaan (adverbi)
+   3281    1842 0,003129 arafat (erisnimi)
+   3282    1842 0,003129 kapinallinen (adjektiivi)
+   3283    1841 0,003128 maakunnallinen (adjektiivi)
+   3284    1838 0,003123 pyyntö (substantiivi)
+   3285    1838 0,003123 stadion (substantiivi)
+   3286    1837 0,003121 suo (substantiivi)
+   3287    1836 0,003119 selvittäminen (substantiivi)
+   3288    1835 0,003117 muttei (verbi)
+   3289    1835 0,003117 n (adverbi)
+   3290    1835 0,003117 toisin (adverbi)
+   3291    1834 0,003116 täältä (adverbi)
+   3292    1833 0,003114 runoilija (substantiivi)
+   3293    1831 0,003111 insinööri (substantiivi)
+   3294    1831 0,003111 koetella (verbi)
+   3295    1831 0,003111 kärsimys (substantiivi)
+   3296    1831 0,003111 systeemi (substantiivi)
+   3297    1830 0,003109 skotlanti (erisnimi)
+   3298    1829 0,003107 toistua (verbi)
+   3299    1828 0,003106 hauta (substantiivi)
+   3300    1828 0,003106 heijastua (verbi)
+   3301    1828 0,003106 kerrata (verbi)
+   3302    1828 0,003106 nurminen (erisnimi)
+   3303    1828 0,003106 reino (erisnimi)
+   3304    1827 0,003104 asetelma (substantiivi)
+   3305    1826 0,003102 lähelle (prepositio)
+   3306    1826 0,003102 puhaltaa (verbi)
+   3307    1826 0,003102 rock (substantiivi)
+   3308    1826 0,003102 ulkopolitiikka (substantiivi)
+   3309    1825 0,003100 epävirallinen (adjektiivi)
+   3310    1825 0,003100 vastaanottaa (verbi)
+   3311    1824 0,003099 kauko (erisnimi)
+   3312    1823 0,003097 hyväksyminen (substantiivi)
+   3313    1822 0,003095 alentaminen (substantiivi)
+   3314    1822 0,003095 edistäminen (substantiivi)
+   3315    1821 0,003094 lykätä (verbi)
+   3316    1821 0,003094 paljolti (adverbi)
+   3317    1820 0,003092 thomas (erisnimi)
+   3318    1818 0,003089 taiwan (erisnimi)
+   3319    1816 0,003085 järvenpää (erisnimi)
+   3320    1816 0,003085 vaalipiiri (substantiivi)
+   3321    1815 0,003083 haudata (verbi)
+   3322    1815 0,003083 taipua (verbi)
+   3323    1813 0,003080 lähin (adjektiivi)
+   3324    1810 0,003075 osmo (erisnimi)
+   3325    1810 0,003075 williams (erisnimi)
+   3326    1808 0,003072 siirtäminen (substantiivi)
+   3327    1808 0,003072 viina (substantiivi)
+   3328    1807 0,003070 räjähtää (verbi)
+   3329    1807 0,003070 tasaisesti (adverbi)
+   3330    1806 0,003068 lenkki (substantiivi)
+   3331    1806 0,003068 tyyppi (substantiivi)
+   3332    1806 0,003068 äärimmäisen (adverbi)
+   3333    1805 0,003066 runkosarja (substantiivi)
+   3334    1805 0,003066 syöttää (verbi)
+   3335    1804 0,003065 miettinen (erisnimi)
+   3336    1804 0,003065 suunnilleen (adverbi)
+   3337    1802 0,003061 james (erisnimi)
+   3338    1802 0,003061 olemassaolo (substantiivi)
+   3339    1801 0,003060 artikkeli (substantiivi)
+   3340    1801 0,003060 mannerheim (erisnimi)
+   3341    1800 0,003058 formula (substantiivi)
+   3342    1800 0,003058 istunto (substantiivi)
+   3343    1800 0,003058 viitasaari (erisnimi)
+   3344    1799 0,003056 työntää (verbi)
+   3345    1798 0,003055 olemus (substantiivi)
+   3346    1798 0,003055 puhelu (substantiivi)
+   3347    1798 0,003055 synty (substantiivi)
+   3348    1795 0,003050 kerrallaan (adverbi)
+   3349    1794 0,003048 rytmi (substantiivi)
+   3350    1793 0,003046 vähemmistö (substantiivi)
+   3351    1793 0,003046 yhdistelmä (substantiivi)
+   3352    1791 0,003043 huolto (substantiivi)
+   3353    1791 0,003043 turhaan (adverbi)
+   3354    1790 0,003041 johtopäätös (substantiivi)
+   3355    1789 0,003039 aikansa (adverbi)
+   3356    1788 0,003038 kati (erisnimi)
+   3357    1788 0,003038 puuttuminen (substantiivi)
+   3358    1787 0,003036 atk (lyhenne)
+   3359    1787 0,003036 lahtinen (erisnimi)
+   3360    1786 0,003034 huikea (adjektiivi)
+   3361    1785 0,003033 vuosikausi (substantiivi)
+   3362    1784 0,003031 parlamenttivaali (substantiivi)
+   3363    1783 0,003029 tango (substantiivi)
+   3364    1783 0,003029 upota (verbi)
+   3365    1782 0,003027 poistaminen (substantiivi)
+   3366    1782 0,003027 yhtymä (substantiivi)
+   3367    1780 0,003024 hiljaisuus (substantiivi)
+   3368    1780 0,003024 kansakunta (substantiivi)
+   3369    1779 0,003022 romania (erisnimi)
+   3370    1779 0,003022 ylpeä (adjektiivi)
+   3371    1778 0,003021 sotilasliitto (substantiivi)
+   3372    1778 0,003021 suosittu (adjektiivi)
+   3373    1777 0,003019 hankkiminen (substantiivi)
+   3374    1776 0,003017 finlandia (erisnimi)
+   3375    1776 0,003017 ohessa (adverbi)
+   3376    1775 0,003016 neljänneksi (adverbi)
+   3377    1775 0,003016 ruotsi (substantiivi)
+   3378    1774 0,003014 etsintä (substantiivi)
+   3379    1774 0,003014 käyttäytyminen (substantiivi)
+   3380    1772 0,003010 varmistua (verbi)
+   3381    1770 0,003007 upm-kymmene (erisnimi)
+   3382    1769 0,003005 kamppailla (verbi)
+   3383    1768 0,003004 kirjoittaminen (substantiivi)
+   3384    1767 0,003002 huhu (substantiivi)
+   3385    1766 0,003000 tornio (erisnimi)
+   3386    1766 0,003000 toteutus (substantiivi)
+   3387    1766 0,003000 varoitus (substantiivi)
+   3388    1765 0,002999 sitä_paitsi (adverbi)
+   3389    1763 0,002995 viidennes (substantiivi)
+   3390    1762 0,002993 asentaa (verbi)
+   3391    1762 0,002993 kyösti (erisnimi)
+   3392    1761 0,002992 hukkua (verbi)
+   3393    1761 0,002992 vastoin (prepositio)
+   3394    1760 0,002990 katastrofi (substantiivi)
+   3395    1760 0,002990 liikenneministeriö (substantiivi)
+   3396    1760 0,002990 salaisuus (substantiivi)
+   3397    1757 0,002985 identiteetti (substantiivi)
+   3398    1757 0,002985 kongressi (substantiivi)
+   3399    1757 0,002985 pulma (substantiivi)
+   3400    1756 0,002983 norjalainen (adjektiivi)
+   3401    1756 0,002983 tahansa (adverbi)
+   3402    1756 0,002983 työehtosopimus (substantiivi)
+   3403    1755 0,002982 aamupäivä (substantiivi)
+   3404    1754 0,002980 saha (substantiivi)
+   3405    1753 0,002978 länsimainen (adjektiivi)
+   3406    1753 0,002978 talvisota (substantiivi)
+   3407    1752 0,002976 irti (prepositio)
+   3408    1751 0,002975 verkosto (substantiivi)
+   3409    1750 0,002973 mittaan (prepositio)
+   3410    1749 0,002971 kärppä (erisnimi)
+   3411    1749 0,002971 moottoritie (substantiivi)
+   3412    1749 0,002971 tarkastus (substantiivi)
+   3413    1749 0,002971 tavallisesti (adverbi)
+   3414    1748 0,002970 pestä (verbi)
+   3415    1748 0,002970 riippumatta (prepositio)
+   3416    1747 0,002968 määräaikainen (adjektiivi)
+   3417    1747 0,002968 otsikko (substantiivi)
+   3418    1747 0,002968 sijainti (substantiivi)
+   3419    1746 0,002966 alainen (adjektiivi)
+   3420    1746 0,002966 lentäjä (substantiivi)
+   3421    1746 0,002966 portugal (erisnimi)
+   3422    1744 0,002963 kiivas (adjektiivi)
+   3423    1744 0,002963 pauli (erisnimi)
+   3424    1742 0,002959 liperi (erisnimi)
+   3425    1741 0,002958 alkuvaihe (substantiivi)
+   3426    1741 0,002958 tuska (substantiivi)
+   3427    1739 0,002954 kaksinkertainen (adjektiivi)
+   3428    1738 0,002953 mielenosoittaja (substantiivi)
+   3429    1738 0,002953 purkaminen (substantiivi)
+   3430    1737 0,002951 aukko (substantiivi)
+   3431    1737 0,002951 kylki (substantiivi)
+   3432    1735 0,002948 aita (substantiivi)
+   3433    1735 0,002948 alennus (substantiivi)
+   3434    1735 0,002948 hollywood (erisnimi)
+   3435    1734 0,002946 hakata (verbi)
+   3436    1734 0,002946 puutarha (substantiivi)
+   3437    1734 0,002946 tutkinta (substantiivi)
+   3438    1731 0,002941 leinonen (erisnimi)
+   3439    1731 0,002941 niukasti (adverbi)
+   3440    1731 0,002941 toivo (erisnimi)
+   3441    1730 0,002939 musta (substantiivi)
+   3442    1730 0,002939 perjantai-ilta (substantiivi)
+   3443    1730 0,002939 suola (substantiivi)
+   3444    1729 0,002937 nhl (lyhenne)
+   3445    1728 0,002936 kansainvälisesti (adverbi)
+   3446    1727 0,002934 hiltunen (erisnimi)
+   3447    1727 0,002934 käytettävissä (adverbi)
+   3448    1725 0,002931 kumota (verbi)
+   3449    1725 0,002931 menettely (substantiivi)
+   3450    1724 0,002929 sisäministeriö (substantiivi)
+   3451    1723 0,002927 finland (erisnimi)
+   3452    1723 0,002927 hakala (erisnimi)
+   3453    1723 0,002927 irtisanoa (verbi)
+   3454    1723 0,002927 kulku (substantiivi)
+   3455    1722 0,002925 juuri_nyt (adverbi)
+   3456    1719 0,002920 miksei (verbi)
+   3457    1719 0,002920 vuori (substantiivi)
+   3458    1718 0,002919 apuraha (substantiivi)
+   3459    1718 0,002919 ismo (erisnimi)
+   3460    1718 0,002919 matkata (verbi)
+   3461    1718 0,002919 ruutu (substantiivi)
+   3462    1718 0,002919 suuresti (adverbi)
+   3463    1718 0,002919 yleistyä (verbi)
+   3464    1717 0,002917 tienoo (substantiivi)
+   3465    1716 0,002915 poikkeuksellinen (adjektiivi)
+   3466    1715 0,002914 rakentaja (substantiivi)
+   3467    1714 0,002912 spr (lyhenne)
+   3468    1713 0,002910 kiusata (verbi)
+   3469    1713 0,002910 kolmikko (substantiivi)
+   3470    1713 0,002910 kuka_tahansa (pronomini)
+   3471    1712 0,002908 palander (erisnimi)
+   3472    1712 0,002908 penkki (substantiivi)
+   3473    1711 0,002907 mutka (substantiivi)
+   3474    1710 0,002905 osuuskunta (substantiivi)
+   3475    1710 0,002905 perille (adverbi)
+   3476    1710 0,002905 savonlinna (erisnimi)
+   3477    1710 0,002905 sovittaa (verbi)
+   3478    1709 0,002903 lapsiperhe (substantiivi)
+   3479    1708 0,002902 kaija (erisnimi)
+   3480    1708 0,002902 omata (verbi)
+   3481    1708 0,002902 pohjola (substantiivi)
+   3482    1706 0,002898 rauhallisesti (adverbi)
+   3483    1705 0,002897 maaherra (substantiivi)
+   3484    1705 0,002897 nurkka (substantiivi)
+   3485    1704 0,002895 hedelmä (substantiivi)
+   3486    1704 0,002895 rauhanturvaaja (substantiivi)
+   3487    1703 0,002893 leppänen (erisnimi)
+   3488    1703 0,002893 liittokansleri (substantiivi)
+   3489    1703 0,002893 vesistö (substantiivi)
+   3490    1702 0,002892 mauno (erisnimi)
+   3491    1702 0,002892 pohjois-irlanti (erisnimi)
+   3492    1701 0,002890 korjaaminen (substantiivi)
+   3493    1701 0,002890 köyhä (substantiivi)
+   3494    1701 0,002890 luotettava (adjektiivi)
+   3495    1701 0,002890 virolainen (substantiivi)
+   3496    1700 0,002888 pitäminen (substantiivi)
+   3497    1699 0,002886 jokeri (substantiivi)
+   3498    1699 0,002886 pyöräilijä (substantiivi)
+   3499    1699 0,002886 valua (verbi)
+   3500    1698 0,002885 cm (lyhenne)
+   3501    1697 0,002883 kummallinen (adjektiivi)
+   3502    1696 0,002881 lunastaa (verbi)
+   3503    1695 0,002880 alho (erisnimi)
+   3504    1695 0,002880 leikkiä (verbi)
+   3505    1694 0,002878 vaalia (verbi)
+   3506    1694 0,002878 villi (adjektiivi)
+   3507    1693 0,002876 haltuun (prepositio)
+   3508    1693 0,002876 pelisääntö (substantiivi)
+   3509    1692 0,002875 kauas (adverbi)
+   3510    1692 0,002875 lentoasema (substantiivi)
+   3511    1691 0,002873 johnson (erisnimi)
+   3512    1691 0,002873 kouvola (erisnimi)
+   3513    1690 0,002871 sinikka (erisnimi)
+   3514    1689 0,002869 markkinaosuus (substantiivi)
+   3515    1688 0,002868 kiirehtiä (verbi)
+   3516    1688 0,002868 tasapeli (substantiivi)
+   3517    1685 0,002863 hidastaa (verbi)
+   3518    1685 0,002863 oululainen (adjektiivi)
+   3519    1684 0,002861 puoliväli (substantiivi)
+   3520    1684 0,002861 turvallisuusneuvosto (substantiivi)
+   3521    1683 0,002859 instituutti (substantiivi)
+   3522    1682 0,002858 yksinäinen (adjektiivi)
+   3523    1681 0,002856 alun_perin (adverbi)
+   3524    1680 0,002854 monesti (adverbi)
+   3525    1680 0,002854 rekisteröidä (verbi)
+   3526    1680 0,002854 tiedekunta (substantiivi)
+   3527    1679 0,002852 pysytellä (verbi)
+   3528    1679 0,002852 päästö (substantiivi)
+   3529    1679 0,002852 soneran (erisnimi)
+   3530    1679 0,002852 varhainen (adjektiivi)
+   3531    1678 0,002851 palkankorotus (substantiivi)
+   3532    1678 0,002851 terävä (adjektiivi)
+   3533    1678 0,002851 viihde (substantiivi)
+   3534    1677 0,002849 kapea (adjektiivi)
+   3535    1677 0,002849 xa (erisnimi)
+   3536    1676 0,002847 tähtäin (substantiivi)
+   3537    1676 0,002847 viktor (erisnimi)
+   3538    1675 0,002846 marssia (verbi)
+   3539    1675 0,002846 yhdistyminen (substantiivi)
+   3540    1674 0,002844 hius (substantiivi)
+   3541    1674 0,002844 kannattavuus (substantiivi)
+   3542    1674 0,002844 lääninoikeus (substantiivi)
+   3543    1673 0,002842 metsänomistaja (substantiivi)
+   3544    1672 0,002841 asko (erisnimi)
+   3545    1672 0,002841 putin (erisnimi)
+   3546    1671 0,002839 ahola (erisnimi)
+   3547    1671 0,002839 laskeutua (verbi)
+   3548    1671 0,002839 nato (substantiivi)
+   3549    1670 0,002837 lomautus (substantiivi)
+   3550    1670 0,002837 sosiaaliturva (substantiivi)
+   3551    1669 0,002835 mukavasti (adverbi)
+   3552    1669 0,002835 tyrmätä (verbi)
+   3553    1669 0,002835 välittäjä (substantiivi)
+   3554    1668 0,002834 etninen (adjektiivi)
+   3555    1668 0,002834 toimikunta (substantiivi)
+   3556    1667 0,002832 aikakausi (substantiivi)
+   3557    1667 0,002832 ilmaisu (substantiivi)
+   3558    1666 0,002830 luokitella (verbi)
+   3559    1666 0,002830 tupo (substantiivi)
+   3560    1665 0,002829 kartano (substantiivi)
+   3561    1665 0,002829 leonian (erisnimi)
+   3562    1665 0,002829 liittyminen (substantiivi)
+   3563    1665 0,002829 lisensiaatti (substantiivi)
+   3564    1665 0,002829 palomies (substantiivi)
+   3565    1665 0,002829 todistaja (substantiivi)
+   3566    1664 0,002827 kaupunginorkesteri (substantiivi)
+   3567    1664 0,002827 riippuen (prepositio)
+   3568    1663 0,002825 tasoittaa (verbi)
+   3569    1663 0,002825 väkisin (adverbi)
+   3570    1663 0,002825 ylioppilas (substantiivi)
+   3571    1662 0,002824 paneutua (verbi)
+   3572    1662 0,002824 poimia (verbi)
+   3573    1662 0,002824 tuija (erisnimi)
+   3574    1661 0,002822 osallistuja (substantiivi)
+   3575    1661 0,002822 saaristo (substantiivi)
+   3576    1661 0,002822 yhtyä (verbi)
+   3577    1660 0,002820 innostunut (adjektiivi)
+   3578    1660 0,002820 työministeriö (substantiivi)
+   3579    1660 0,002820 uskottavuus (substantiivi)
+   3580    1659 0,002818 maailmanlaajuinen (adjektiivi)
+   3581    1659 0,002818 parannus (substantiivi)
+   3582    1658 0,002817 opas (substantiivi)
+   3583    1658 0,002817 tietoinen (adjektiivi)
+   3584    1656 0,002813 nykyaikainen (adjektiivi)
+   3585    1655 0,002812 george (erisnimi)
+   3586    1655 0,002812 hienosti (adverbi)
+   3587    1655 0,002812 olympiakisat (substantiivi)
+   3588    1655 0,002812 veronmaksaja (substantiivi)
+   3589    1654 0,002810 kirkonkylä (substantiivi)
+   3590    1654 0,002810 yhde (substantiivi)
+   3591    1652 0,002807 montenegro (erisnimi)
+   3592    1652 0,002807 työvoimatoimisto (substantiivi)
+   3593    1651 0,002805 demari (erisnimi)
+   3594    1650 0,002803 nagano (erisnimi)
+   3595    1650 0,002803 supistua (verbi)
+   3596    1649 0,002801 k (lyhenne)
+   3597    1649 0,002801 länsi-suomi (erisnimi)
+   3598    1648 0,002800 meksiko (erisnimi)
+   3599    1648 0,002800 syntyminen (substantiivi)
+   3600    1647 0,002798 asevoima (substantiivi)
+   3601    1647 0,002798 tshekki (substantiivi)
+   3602    1647 0,002798 ulkoinen (adjektiivi)
+   3603    1646 0,002796 ehkäistä (verbi)
+   3604    1645 0,002795 eilinen (adjektiivi)
+   3605    1645 0,002795 enimmäkseen (adverbi)
+   3606    1645 0,002795 leino (erisnimi)
+   3607    1645 0,002795 leo (erisnimi)
+   3608    1642 0,002790 vertailla (verbi)
+   3609    1641 0,002788 liikkeellä (adverbi)
+   3610    1640 0,002786 saarela (erisnimi)
+   3611    1640 0,002786 ydinvoimala (substantiivi)
+   3612    1639 0,002784 julkisesti (adverbi)
+   3613    1639 0,002784 sisäministeri (substantiivi)
+   3614    1636 0,002779 kipeä (adjektiivi)
+   3615    1635 0,002778 asu (substantiivi)
+   3616    1635 0,002778 kolmonen (substantiivi)
+   3617    1635 0,002778 komedia (substantiivi)
+   3618    1635 0,002778 oikeasti (adverbi)
+   3619    1634 0,002776 vaunu (substantiivi)
+   3620    1633 0,002774 loppupuoli (substantiivi)
+   3621    1633 0,002774 satsata (verbi)
+   3622    1633 0,002774 sortua (verbi)
+   3623    1633 0,002774 säännöllisesti (adverbi)
+   3624    1633 0,002774 tanskanen (erisnimi)
+   3625    1631 0,002771 elin (substantiivi)
+   3626    1631 0,002771 sininen (adjektiivi)
+   3627    1631 0,002771 tinkiä (verbi)
+   3628    1631 0,002771 vappu (substantiivi)
+   3629    1630 0,002769 laukkanen (erisnimi)
+   3630    1629 0,002767 kaupankäynti (substantiivi)
+   3631    1628 0,002766 aimo (erisnimi)
+   3632    1628 0,002766 häkämies (erisnimi)
+   3633    1628 0,002766 kaupata (verbi)
+   3634    1628 0,002766 tunkeutua (verbi)
+   3635    1628 0,002766 väkivaltainen (adjektiivi)
+   3636    1628 0,002766 yhdysvaltalainen (adjektiivi)
+   3637    1627 0,002764 pienetä (verbi)
+   3638    1627 0,002764 satakunta (erisnimi)
+   3639    1626 0,002762 kollega (substantiivi)
+   3640    1623 0,002757 muoti (substantiivi)
+   3641    1623 0,002757 vuosi (erisnimi)
+   3642    1622 0,002756 aueta (verbi)
+   3643    1622 0,002756 luona (prepositio)
+   3644    1622 0,002756 maanjäristys (substantiivi)
+   3645    1621 0,002754 erimielisyys (substantiivi)
+   3646    1621 0,002754 päähenkilö (substantiivi)
+   3647    1621 0,002754 päättyminen (substantiivi)
+   3648    1620 0,002752 su (lyhenne)
+   3649    1620 0,002752 vahvistus (substantiivi)
+   3650    1619 0,002750 helmi (substantiivi)
+   3651    1619 0,002750 takavuosi (substantiivi)
+   3652    1618 0,002749 erik (erisnimi)
+   3653    1617 0,002747 ensisijaisesti (adverbi)
+   3654    1617 0,002747 joensuulainen (adjektiivi)
+   3655    1617 0,002747 rasittaa (verbi)
+   3656    1613 0,002740 kolari (substantiivi)
+   3657    1613 0,002740 ohjus (substantiivi)
+   3658    1613 0,002740 sitä_kautta (adverbi)
+   3659    1613 0,002740 vanhainkoti (substantiivi)
+   3660    1612 0,002739 arsenal (erisnimi)
+   3661    1612 0,002739 edeltäjä (substantiivi)
+   3662    1611 0,002737 jne (lyhenne)
+   3663    1610 0,002735 aalto (substantiivi)
+   3664    1610 0,002735 häät (substantiivi)
+   3665    1610 0,002735 välitön (adjektiivi)
+   3666    1609 0,002734 kiristyä (verbi)
+   3667    1609 0,002734 kuisma (erisnimi)
+   3668    1606 0,002728 urho (erisnimi)
+   3669    1605 0,002727 rohkaista (verbi)
+   3670    1604 0,002725 kalastaja (substantiivi)
+   3671    1604 0,002725 osakas (substantiivi)
+   3672    1603 0,002723 hälyttää (verbi)
+   3673    1603 0,002723 työskentely (substantiivi)
+   3674    1601 0,002720 painopiste (substantiivi)
+   3675    1601 0,002720 palauttaminen (substantiivi)
+   3676    1601 0,002720 rauno (erisnimi)
+   3677    1600 0,002718 erinomaisesti (adverbi)
+   3678    1600 0,002718 saman_verran (adverbi)
+   3679    1600 0,002718 sijoittaminen (substantiivi)
+   3680    1600 0,002718 tiedottaa (verbi)
+   3681    1600 0,002718 väinö (erisnimi)
+   3682    1599 0,002717 vauhdittaa (verbi)
+   3683    1598 0,002715 kirkkoherra (substantiivi)
+   3684    1598 0,002715 painua (verbi)
+   3685    1598 0,002715 pilata (verbi)
+   3686    1598 0,002715 uusi (erisnimi)
+   3687    1596 0,002711 jakaminen (substantiivi)
+   3688    1595 0,002710 jerusalem (erisnimi)
+   3689    1595 0,002710 kiireinen (adjektiivi)
+   3690    1595 0,002710 todiste (substantiivi)
+   3691    1593 0,002706 meneillään (adverbi)
+   3692    1593 0,002706 volvo (erisnimi)
+   3693    1592 0,002705 amsterdam (erisnimi)
+   3694    1592 0,002705 maaottelu (substantiivi)
+   3695    1591 0,002703 levätä (verbi)
+   3696    1590 0,002701 projektipäällikkö (substantiivi)
+   3697    1590 0,002701 tuoli (substantiivi)
+   3698    1588 0,002698 kreml (erisnimi)
+   3699    1588 0,002698 rinnalle (prepositio)
+   3700    1587 0,002696 kaiken_kaikkiaan (adverbi)
+   3701    1587 0,002696 syöpä (substantiivi)
+   3702    1587 0,002696 toivottaa (verbi)
+   3703    1587 0,002696 vennamo (erisnimi)
+   3704    1586 0,002694 klassikko (substantiivi)
+   3705    1585 0,002693 kohtaus (substantiivi)
+   3706    1585 0,002693 täyteen (adverbi)
+   3707    1584 0,002691 direktiivi (substantiivi)
+   3708    1584 0,002691 luultavasti (adverbi)
+   3709    1584 0,002691 toronto (erisnimi)
+   3710    1584 0,002691 voimala (substantiivi)
+   3711    1583 0,002689 erottua (verbi)
+   3712    1581 0,002686 muokata (verbi)
+   3713    1580 0,002684 aikuinen (adjektiivi)
+   3714    1580 0,002684 blair (erisnimi)
+   3715    1579 0,002683 työväenpuolue (substantiivi)
+   3716    1578 0,002681 helpotus (substantiivi)
+   3717    1576 0,002677 länsimaa (substantiivi)
+   3718    1576 0,002677 viimevuotinen (adjektiivi)
+   3719    1575 0,002676 hakkarainen (erisnimi)
+   3720    1575 0,002676 lukumäärä (substantiivi)
+   3721    1574 0,002674 luotto (substantiivi)
+   3722    1574 0,002674 mainiosti (adverbi)
+   3723    1573 0,002672 asikainen (erisnimi)
+   3724    1573 0,002672 veistos (substantiivi)
+   3725    1573 0,002672 yksityinen (substantiivi)
+   3726    1572 0,002671 vapaaehtoinen (substantiivi)
+   3727    1571 0,002669 näillä_näkymin (adverbi)
+   3728    1570 0,002667 hylly (substantiivi)
+   3729    1570 0,002667 vakuuttua (verbi)
+   3730    1569 0,002666 heikentyä (verbi)
+   3731    1568 0,002664 rahaliitto (substantiivi)
+   3732    1567 0,002662 baltia (erisnimi)
+   3733    1567 0,002662 dallas (erisnimi)
+   3734    1567 0,002662 hallituspuolue (substantiivi)
+   3735    1567 0,002662 lauantai-ilta (substantiivi)
+   3736    1567 0,002662 vakaus (substantiivi)
+   3737    1565 0,002659 kohentaa (verbi)
+   3738    1565 0,002659 pk (lyhenne)
+   3739    1564 0,002657 varusmies (substantiivi)
+   3740    1563 0,002655 avain (substantiivi)
+   3741    1563 0,002655 moinen (adjektiivi)
+   3742    1563 0,002655 rakentua (verbi)
+   3743    1562 0,002654 poikia (verbi)
+   3744    1561 0,002652 milosevicin (erisnimi)
+   3745    1561 0,002652 soininen (erisnimi)
+   3746    1560 0,002650 kustantaa (verbi)
+   3747    1560 0,002650 maanomistaja (substantiivi)
+   3748    1559 0,002649 epäselvä (adjektiivi)
+   3749    1559 0,002649 maatila (substantiivi)
+   3750    1559 0,002649 sen_takia (adverbi)
+   3751    1559 0,002649 torstai-ilta (substantiivi)
+   3752    1558 0,002647 hiljattain (adverbi)
+   3753    1558 0,002647 kohtelu (substantiivi)
+   3754    1558 0,002647 taajama (substantiivi)
+   3755    1557 0,002645 vasten (prepositio)
+   3756    1555 0,002642 löytäminen (substantiivi)
+   3757    1554 0,002640 kaksikymmentä (lukusana)
+   3758    1553 0,002638 arvonlisävero (substantiivi)
+   3759    1553 0,002638 juhlavuosi (substantiivi)
+   3760    1553 0,002638 timonen (erisnimi)
+   3761    1553 0,002638 tytäryhtiö (substantiivi)
+   3762    1552 0,002637 osoitus (substantiivi)
+   3763    1552 0,002637 velvoittaa (verbi)
+   3764    1551 0,002635 galleria (substantiivi)
+   3765    1551 0,002635 julistus (substantiivi)
+   3766    1551 0,002635 pakata (verbi)
+   3767    1550 0,002633 aikaväli (substantiivi)
+   3768    1550 0,002633 piano (substantiivi)
+   3769    1550 0,002633 sopeutua (verbi)
+   3770    1550 0,002633 studio (substantiivi)
+   3771    1549 0,002632 ikuinen (adjektiivi)
+   3772    1549 0,002632 rangaista (verbi)
+   3773    1549 0,002632 ylempi (adjektiivi)
+   3774    1548 0,002630 anteeksi (adverbi)
+   3775    1548 0,002630 paksu (adjektiivi)
+   3776    1548 0,002630 toistakymmentä (lukusana)
+   3777    1548 0,002630 valloittaa (verbi)
+   3778    1547 0,002628 katri (erisnimi)
+   3779    1547 0,002628 m (lyhenne)
+   3780    1547 0,002628 silloin_tällöin (adverbi)
+   3781    1547 0,002628 vainio (erisnimi)
+   3782    1546 0,002626 aivot (substantiivi)
+   3783    1546 0,002626 valio (erisnimi)
+   3784    1545 0,002625 neste (erisnimi)
+   3785    1545 0,002625 viljellä (verbi)
+   3786    1544 0,002623 aleta (verbi)
+   3787    1544 0,002623 juoma (substantiivi)
+   3788    1543 0,002621 ajaminen (substantiivi)
+   3789    1542 0,002620 imago (substantiivi)
+   3790    1541 0,002618 jacques (erisnimi)
+   3791    1541 0,002618 miinus (substantiivi)
+   3792    1540 0,002616 ennakkoon (adverbi)
+   3793    1540 0,002616 kangasala (erisnimi)
+   3794    1540 0,002616 puhjeta (verbi)
+   3795    1540 0,002616 syyria (erisnimi)
+   3796    1540 0,002616 yhteenotto (substantiivi)
+   3797    1539 0,002615 analysoida (verbi)
+   3798    1539 0,002615 ilmaantua (verbi)
+   3799    1539 0,002615 lähistö (substantiivi)
+   3800    1539 0,002615 tukikohta (substantiivi)
+   3801    1539 0,002615 virolainen (adjektiivi)
+   3802    1539 0,002615 väkivaltaisuus (substantiivi)
+   3803    1537 0,002611 herkku (substantiivi)
+   3804    1537 0,002611 kartoittaa (verbi)
+   3805    1537 0,002611 kyläläinen (substantiivi)
+   3806    1536 0,002609 leonia (erisnimi)
+   3807    1535 0,002608 kangasniemi (erisnimi)
+   3808    1535 0,002608 kiinteistövero (substantiivi)
+   3809    1535 0,002608 marita (erisnimi)
+   3810    1535 0,002608 polku (substantiivi)
+   3811    1535 0,002608 suomenkielinen (adjektiivi)
+   3812    1534 0,002606 tuntuvasti (adverbi)
+   3813    1534 0,002606 vasemmisto (substantiivi)
+   3814    1533 0,002604 myönteisesti (adverbi)
+   3815    1532 0,002603 pääsiäinen (substantiivi)
+   3816    1530 0,002599 bakteeri (substantiivi)
+   3817    1530 0,002599 kohdistaa (verbi)
+   3818    1530 0,002599 kompromissi (substantiivi)
+   3819    1530 0,002599 mirja (erisnimi)
+   3820    1530 0,002599 toisin_kuin (konjunktio)
+   3821    1529 0,002598 perään (prepositio)
+   3822    1528 0,002596 nelonen (substantiivi)
+   3823    1528 0,002596 ongelmallinen (adjektiivi)
+   3824    1528 0,002596 prinsessa (substantiivi)
+   3825    1527 0,002594 anni (erisnimi)
+   3826    1527 0,002594 kultainen (adjektiivi)
+   3827    1526 0,002593 penttilä (erisnimi)
+   3828    1525 0,002591 elämäntapa (substantiivi)
+   3829    1525 0,002591 keskiviikkoilta (substantiivi)
+   3830    1525 0,002591 kurdi (substantiivi)
+   3831    1525 0,002591 saanti (substantiivi)
+   3832    1524 0,002589 nälkä (substantiivi)
+   3833    1523 0,002587 digitaalinen (adjektiivi)
+   3834    1523 0,002587 leveä (adjektiivi)
+   3835    1523 0,002587 rakas (adjektiivi)
+   3836    1523 0,002587 ylipäätään (adverbi)
+   3837    1522 0,002586 ehdokkuus (substantiivi)
+   3838    1522 0,002586 loppusuora (substantiivi)
+   3839    1522 0,002586 lyhentää (verbi)
+   3840    1522 0,002586 paasio (erisnimi)
+   3841    1521 0,002584 jakautua (verbi)
+   3842    1520 0,002582 tosi (adjektiivi)
+   3843    1517 0,002577 vasta_kun (konjunktio)
+   3844    1516 0,002576 vanha (erisnimi)
+   3845    1515 0,002574 tauno (erisnimi)
+   3846    1514 0,002572 eteneminen (substantiivi)
+   3847    1514 0,002572 kokkola (erisnimi)
+   3848    1514 0,002572 lukeutua (verbi)
+   3849    1513 0,002570 loppukilpailu (substantiivi)
+   3850    1513 0,002570 myöhä (adjektiivi)
+   3851    1513 0,002570 pienentää (verbi)
+   3852    1512 0,002569 björn (erisnimi)
+   3853    1512 0,002569 puolelta (prepositio)
+   3854    1511 0,002567 niukka (adjektiivi)
+   3855    1511 0,002567 vaikuttaja (substantiivi)
+   3856    1510 0,002565 biisi (substantiivi)
+   3857    1510 0,002565 kori (substantiivi)
+   3858    1510 0,002565 vihollinen (substantiivi)
+   3859    1509 0,002564 europarlamentaarikko (substantiivi)
+   3860    1509 0,002564 kanerva (erisnimi)
+   3861    1509 0,002564 rakennustyö (substantiivi)
+   3862    1509 0,002564 tikkanen (erisnimi)
+   3863    1507 0,002560 lähi-itä (erisnimi)
+   3864    1506 0,002559 hymy (substantiivi)
+   3865    1506 0,002559 jälleen_kerran (adverbi)
+   3866    1506 0,002559 samuli (erisnimi)
+   3867    1506 0,002559 vaarantaa (verbi)
+   3868    1505 0,002557 naiminen (substantiivi)
+   3869    1505 0,002557 puoltaa (verbi)
+   3870    1505 0,002557 tavaratalo (substantiivi)
+   3871    1504 0,002555 alkaminen (substantiivi)
+   3872    1504 0,002555 varoa (verbi)
+   3873    1502 0,002552 yhdeksäs (lukusana)
+   3874    1501 0,002550 käänne (substantiivi)
+   3875    1501 0,002550 muuri (substantiivi)
+   3876    1501 0,002550 seikkailu (substantiivi)
+   3877    1501 0,002550 vuotuinen (adjektiivi)
+   3878    1497 0,002543 nykypäivä (substantiivi)
+   3879    1495 0,002540 eila (erisnimi)
+   3880    1495 0,002540 lappalainen (erisnimi)
+   3881    1495 0,002540 niemelä (erisnimi)
+   3882    1494 0,002538 akatemia (erisnimi)
+   3883    1493 0,002536 hiipua (verbi)
+   3884    1493 0,002536 maanantai-ilta (substantiivi)
+   3885    1492 0,002535 paras_mahdollinen (adjektiivi)
+   3886    1492 0,002535 pommittaa (verbi)
+   3887    1492 0,002535 puolustusministeriö (substantiivi)
+   3888    1492 0,002535 tiistai-ilta (substantiivi)
+   3889    1491 0,002533 hioa (verbi)
+   3890    1491 0,002533 peräkkäin (adverbi)
+   3891    1490 0,002531 kasvatus (substantiivi)
+   3892    1490 0,002531 kaupunginosa (substantiivi)
+   3893    1489 0,002530 käyttäytyä (verbi)
+   3894    1489 0,002530 pituinen (adjektiivi)
+   3895    1489 0,002530 valikoima (substantiivi)
+   3896    1489 0,002530 vetoomus (substantiivi)
+   3897    1488 0,002528 ranta (erisnimi)
+   3898    1487 0,002526 asti (adverbi)
+   3899    1487 0,002526 lyhyesti (adverbi)
+   3900    1487 0,002526 tykätä (verbi)
+   3901    1487 0,002526 valoisa (adjektiivi)
+   3902    1486 0,002525 huovinen (erisnimi)
+   3903    1486 0,002525 oleellinen (adjektiivi)
+   3904    1484 0,002521 kalastus (substantiivi)
+   3905    1483 0,002519 lopuksi (adverbi)
+   3906    1483 0,002519 näin_ollen (adverbi)
+   3907    1481 0,002516 iäkäs (adjektiivi)
+   3908    1481 0,002516 oyj (lyhenne)
+   3909    1481 0,002516 pahoin (adverbi)
+   3910    1480 0,002514 draama (substantiivi)
+   3911    1480 0,002514 espanjalainen (adjektiivi)
+   3912    1480 0,002514 susanna (erisnimi)
+   3913    1479 0,002513 helle (substantiivi)
+   3914    1479 0,002513 tuomaristo (substantiivi)
+   3915    1479 0,002513 työpäivä (substantiivi)
+   3916    1479 0,002513 vilppula (erisnimi)
+   3917    1478 0,002511 pyhäjärvi (erisnimi)
+   3918    1478 0,002511 pyhäselkä (erisnimi)
+   3919    1478 0,002511 soitin (substantiivi)
+   3920    1478 0,002511 supistaa (verbi)
+   3921    1477 0,002509 julkaisu (substantiivi)
+   3922    1477 0,002509 ylivoima (substantiivi)
+   3923    1476 0,002508 väheneminen (substantiivi)
+   3924    1475 0,002506 henrik (erisnimi)
+   3925    1475 0,002506 pesä (substantiivi)
+   3926    1474 0,002504 bisnes (substantiivi)
+   3927    1474 0,002504 maata (verbi)
+   3928    1474 0,002504 mieliä (verbi)
+   3929    1474 0,002504 ottaminen (substantiivi)
+   3930    1471 0,002499 heti_kun (konjunktio)
+   3931    1471 0,002499 laadukas (adjektiivi)
+   3932    1471 0,002499 paikoin (adverbi)
+   3933    1471 0,002499 temppu (substantiivi)
+   3934    1470 0,002497 mainostaa (verbi)
+   3935    1470 0,002497 suoda (verbi)
+   3936    1469 0,002496 eettinen (adjektiivi)
+   3937    1469 0,002496 kauppinen (erisnimi)
+   3938    1469 0,002496 pitäjä (substantiivi)
+   3939    1469 0,002496 te-keskus (substantiivi)
+   3940    1468 0,002494 christian (erisnimi)
+   3941    1468 0,002494 kapanen (erisnimi)
+   3942    1468 0,002494 monimutkainen (adjektiivi)
+   3943    1466 0,002491 haaveilla (verbi)
+   3944    1466 0,002491 polvijärvi (erisnimi)
+   3945    1466 0,002491 yritystoiminta (substantiivi)
+   3946    1465 0,002489 laukoa (verbi)
+   3947    1465 0,002489 peruuttaa (verbi)
+   3948    1464 0,002487 kroatia (erisnimi)
+   3949    1464 0,002487 vastine (substantiivi)
+   3950    1463 0,002485 näytös (substantiivi)
+   3951    1463 0,002485 uinti (substantiivi)
+   3952    1463 0,002485 yhtä_hyvin (adverbi)
+   3953    1462 0,002484 keräys (substantiivi)
+   3954    1462 0,002484 milosevic (erisnimi)
+   3955    1462 0,002484 viestintä (substantiivi)
+   3956    1461 0,002482 aie (substantiivi)
+   3957    1460 0,002480 härmälä (erisnimi)
+   3958    1460 0,002480 koivu (substantiivi)
+   3959    1460 0,002480 liikevoitto (substantiivi)
+   3960    1459 0,002479 eva (erisnimi)
+   3961    1459 0,002479 luonteva (adjektiivi)
+   3962    1457 0,002475 edustajisto (substantiivi)
+   3963    1457 0,002475 verottaa (verbi)
+   3964    1456 0,002474 esittely (substantiivi)
+   3965    1456 0,002474 muna (substantiivi)
+   3966    1455 0,002472 hollantilainen (adjektiivi)
+   3967    1455 0,002472 mäenpää (erisnimi)
+   3968    1455 0,002472 naureskella (verbi)
+   3969    1455 0,002472 realistinen (adjektiivi)
+   3970    1455 0,002472 repo (erisnimi)
+   3971    1454 0,002470 hämmästyttää (verbi)
+   3972    1454 0,002470 matematiikka (substantiivi)
+   3973    1454 0,002470 moilanen (erisnimi)
+   3974    1454 0,002470 ravinto (substantiivi)
+   3975    1453 0,002468 innostus (substantiivi)
+   3976    1453 0,002468 köyhyys (substantiivi)
+   3977    1453 0,002468 to (lyhenne)
+   3978    1453 0,002468 väärinkäytös (substantiivi)
+   3979    1452 0,002467 optio (substantiivi)
+   3980    1452 0,002467 syytetty (substantiivi)
+   3981    1449 0,002462 hillitä (verbi)
+   3982    1448 0,002460 harju (erisnimi)
+   3983    1448 0,002460 honkanen (erisnimi)
+   3984    1447 0,002458 sairastaa (verbi)
+   3985    1446 0,002457 tarpeeton (adjektiivi)
+   3986    1446 0,002457 vapauttaminen (substantiivi)
+   3987    1445 0,002455 verta (substantiivi)
+   3988    1444 0,002453 tielaitos (substantiivi)
+   3989    1444 0,002453 tiiviisti (adverbi)
+   3990    1443 0,002451 jyrkästi (adverbi)
+   3991    1443 0,002451 karvonen (erisnimi)
+   3992    1443 0,002451 naapurimaa (substantiivi)
+   3993    1443 0,002451 ylistää (verbi)
+   3994    1442 0,002450 säilyminen (substantiivi)
+   3995    1441 0,002448 kunnostus (substantiivi)
+   3996    1441 0,002448 sotkamo (erisnimi)
+   3997    1438 0,002443 jazz (erisnimi)
+   3998    1438 0,002443 potti (substantiivi)
+   3999    1438 0,002443 vaihtelu (substantiivi)
+   4000    1437 0,002441 läheinen (substantiivi)
+   4001    1437 0,002441 savu (substantiivi)
+   4002    1437 0,002441 toijala (erisnimi)
+   4003    1436 0,002440 kriteeri (substantiivi)
+   4004    1436 0,002440 yllättyä (verbi)
+   4005    1435 0,002438 tämänvuotinen (adjektiivi)
+   4006    1434 0,002436 alpo (erisnimi)
+   4007    1433 0,002435 ruotsinkielinen (adjektiivi)
+   4008    1432 0,002433 kuningatar (substantiivi)
+   4009    1431 0,002431 investoida (verbi)
+   4010    1430 0,002429 reissu (substantiivi)
+   4011    1429 0,002428 apteekki (substantiivi)
+   4012    1429 0,002428 keltainen (adjektiivi)
+   4013    1429 0,002428 maahanmuuttaja (substantiivi)
+   4014    1429 0,002428 vakiintua (verbi)
+   4015    1429 0,002428 ylöspäin (adverbi)
+   4016    1428 0,002426 isometsä (erisnimi)
+   4017    1428 0,002426 pätkä (substantiivi)
+   4018    1427 0,002424 harmi (substantiivi)
+   4019    1427 0,002424 rikkominen (substantiivi)
+   4020    1426 0,002423 avoimesti (adverbi)
+   4021    1426 0,002423 esiopetus (substantiivi)
+   4022    1426 0,002423 harkinta (substantiivi)
+   4023    1426 0,002423 hervanta (erisnimi)
+   4024    1426 0,002423 keski-ikäinen (adjektiivi)
+   4025    1426 0,002423 metsästys (substantiivi)
+   4026    1426 0,002423 musikaali (substantiivi)
+   4027    1425 0,002421 blues (erisnimi)
+   4028    1425 0,002421 järistys (substantiivi)
+   4029    1425 0,002421 keho (substantiivi)
+   4030    1425 0,002421 puoluesihteeri (substantiivi)
+   4031    1424 0,002419 kovaa (adverbi)
+   4032    1424 0,002419 rauhanneuvottelu (substantiivi)
+   4033    1424 0,002419 ristiriitainen (adjektiivi)
+   4034    1424 0,002419 wsoy (lyhenne)
+   4035    1423 0,002418 istanbul (erisnimi)
+   4036    1422 0,002416 inter (erisnimi)
+   4037    1422 0,002416 juuka (erisnimi)
+   4038    1422 0,002416 markkinatalous (substantiivi)
+   4039    1421 0,002414 inari (erisnimi)
+   4040    1420 0,002412 tanskalainen (adjektiivi)
+   4041    1419 0,002411 kytkeä (verbi)
+   4042    1419 0,002411 myhäillä (verbi)
+   4043    1419 0,002411 vääntää (verbi)
+   4044    1418 0,002409 kallio (substantiivi)
+   4045    1417 0,002407 eurovaali (substantiivi)
+   4046    1417 0,002407 saku (erisnimi)
+   4047    1417 0,002407 vire (substantiivi)
+   4048    1416 0,002406 kangas (substantiivi)
+   4049    1416 0,002406 levottomuus (substantiivi)
+   4050    1416 0,002406 nenä (substantiivi)
+   4051    1416 0,002406 ulkomaalainen (adjektiivi)
+   4052    1415 0,002404 ajoittain (adverbi)
+   4053    1415 0,002404 esimies (substantiivi)
+   4054    1415 0,002404 yksimielisyys (substantiivi)
+   4055    1414 0,002402 tuntemus (substantiivi)
+   4056    1414 0,002402 varaus (substantiivi)
+   4057    1413 0,002401 etäisyys (substantiivi)
+   4058    1413 0,002401 koettaa (verbi)
+   4059    1413 0,002401 tieten (adverbi)
+   4060    1412 0,002399 kallistua (verbi)
+   4061    1412 0,002399 ruuhka (substantiivi)
+   4062    1411 0,002397 karttunen (erisnimi)
+   4063    1409 0,002394 sähköposti (substantiivi)
+   4064    1408 0,002392 edellä (prepositio)
+   4065    1407 0,002390 kaasu (substantiivi)
+   4066    1407 0,002390 murtaa (verbi)
+   4067    1407 0,002390 prinssi (substantiivi)
+   4068    1407 0,002390 yhtiökokous (substantiivi)
+   4069    1406 0,002389 euroalue (substantiivi)
+   4070    1406 0,002389 iho (substantiivi)
+   4071    1406 0,002389 nostattaa (verbi)
+   4072    1406 0,002389 teppo (erisnimi)
+   4073    1405 0,002387 kangas (erisnimi)
+   4074    1405 0,002387 painostaa (verbi)
+   4075    1404 0,002385 humanitaarinen (adjektiivi)
+   4076    1404 0,002385 kesäteatteri (substantiivi)
+   4077    1404 0,002385 kuorma-auto (substantiivi)
+   4078    1403 0,002384 hävittää (verbi)
+   4079    1403 0,002384 osinko (substantiivi)
+   4080    1403 0,002384 säännöllinen (adjektiivi)
+   4081    1402 0,002382 pako (substantiivi)
+   4082    1401 0,002380 katolinen (adjektiivi)
+   4083    1401 0,002380 kyllästyä (verbi)
+   4084    1401 0,002380 makea (adjektiivi)
+   4085    1401 0,002380 valtonen (erisnimi)
+   4086    1400 0,002378 heiskanen (erisnimi)
+   4087    1400 0,002378 jere (erisnimi)
+   4088    1399 0,002377 laillinen (adjektiivi)
+   4089    1398 0,002375 bensiini (substantiivi)
+   4090    1398 0,002375 herkästi (adverbi)
+   4091    1397 0,002373 alkuviikko (substantiivi)
+   4092    1397 0,002373 kohu (substantiivi)
+   4093    1397 0,002373 vahvistaminen (substantiivi)
+   4094    1397 0,002373 vammainen (substantiivi)
+   4095    1395 0,002370 kankaanpää (erisnimi)
+   4096    1395 0,002370 varkaus (substantiivi)
+   4097    1394 0,002368 riippumaton (adjektiivi)
+   4098    1393 0,002367 joustaa (verbi)
+   4099    1393 0,002367 käyttöönotto (substantiivi)
+   4100    1393 0,002367 raunio (substantiivi)
+   4101    1393 0,002367 yksilöllinen (adjektiivi)
+   4102    1392 0,002365 perusteellisesti (adverbi)
+   4103    1392 0,002365 uskomaton (adjektiivi)
+   4104    1391 0,002363 puhumattakaan (adverbi)
+   4105    1390 0,002361 eteen (adverbi)
+   4106    1390 0,002361 juutalainen (substantiivi)
+   4107    1389 0,002360 odotetusti (adverbi)
+   4108    1389 0,002360 poro (substantiivi)
+   4109    1388 0,002358 surkea (adjektiivi)
+   4110    1388 0,002358 toimeentulotuki (substantiivi)
+   4111    1388 0,002358 uusikaupunki (erisnimi)
+   4112    1388 0,002358 vallankumous (substantiivi)
+   4113    1387 0,002356 antaminen (substantiivi)
+   4114    1387 0,002356 aravirta (erisnimi)
+   4115    1387 0,002356 kera (prepositio)
+   4116    1386 0,002355 lehtori (substantiivi)
+   4117    1386 0,002355 muuttoliike (substantiivi)
+   4118    1386 0,002355 neliömetri (substantiivi)
+   4119    1386 0,002355 vastaava (substantiivi)
+   4120    1385 0,002353 islamilainen (adjektiivi)
+   4121    1385 0,002353 upseeri (substantiivi)
+   4122    1385 0,002353 yhteisymmärrys (substantiivi)
+   4123    1383 0,002350 bruttokansantuote (substantiivi)
+   4124    1383 0,002350 jutella (verbi)
+   4125    1383 0,002350 perintö (substantiivi)
+   4126    1383 0,002350 poikanen (substantiivi)
+   4127    1383 0,002350 toimihenkilö (substantiivi)
+   4128    1383 0,002350 tulija (substantiivi)
+   4129    1382 0,002348 hämärä (adjektiivi)
+   4130    1382 0,002348 kristiina (erisnimi)
+   4131    1382 0,002348 palsta (substantiivi)
+   4132    1382 0,002348 show (substantiivi)
+   4133    1382 0,002348 tasku (substantiivi)
+   4134    1381 0,002346 läsnä (adverbi)
+   4135    1381 0,002346 muistomerkki (substantiivi)
+   4136    1381 0,002346 riku (erisnimi)
+   4137    1380 0,002344 laukaa (erisnimi)
+   4138    1380 0,002344 ohut (adjektiivi)
+   4139    1380 0,002344 vilja (substantiivi)
+   4140    1379 0,002343 akava (erisnimi)
+   4141    1379 0,002343 kiteyttää (verbi)
+   4142    1379 0,002343 tunnus (substantiivi)
+   4143    1378 0,002341 hallinto-oikeus (substantiivi)
+   4144    1378 0,002341 laituri (substantiivi)
+   4145    1378 0,002341 talouspolitiikka (substantiivi)
+   4146    1377 0,002339 aluepolitiikka (substantiivi)
+   4147    1377 0,002339 lyönti (substantiivi)
+   4148    1377 0,002339 yhtä_aikaa (adverbi)
+   4149    1375 0,002336 liikenneministeri (substantiivi)
+   4150    1375 0,002336 madrid (erisnimi)
+   4151    1375 0,002336 selvitellä (verbi)
+   4152    1374 0,002334 puhtaasti (adverbi)
+   4153    1374 0,002334 sulkeminen (substantiivi)
+   4154    1373 0,002333 ollila (erisnimi)
+   4155    1373 0,002333 saakka (adverbi)
+   4156    1373 0,002333 tulokas (substantiivi)
+   4157    1373 0,002333 ylivoimaisesti (adverbi)
+   4158    1372 0,002331 aino (erisnimi)
+   4159    1372 0,002331 anoa (verbi)
+   4160    1372 0,002331 lakimies (substantiivi)
+   4161    1372 0,002331 marjo (erisnimi)
+   4162    1372 0,002331 nykänen (erisnimi)
+   4163    1372 0,002331 paavi (substantiivi)
+   4164    1372 0,002331 poliittisesti (adverbi)
+   4165    1371 0,002329 elinkeino (substantiivi)
+   4166    1371 0,002329 riemu (substantiivi)
+   4167    1371 0,002329 tarmo (erisnimi)
+   4168    1369 0,002326 järjestäytyä (verbi)
+   4169    1369 0,002326 ratkaiseminen (substantiivi)
+   4170    1369 0,002326 ulko (yhdyssanan osa)
+   4171    1368 0,002324 pulkkinen (erisnimi)
+   4172    1366 0,002321 ahti (erisnimi)
+   4173    1366 0,002321 kesäloma (substantiivi)
+   4174    1366 0,002321 oiva (adjektiivi)
+   4175    1365 0,002319 tyhjentää (verbi)
+   4176    1364 0,002317 fani (substantiivi)
+   4177    1364 0,002317 vaalikampanja (substantiivi)
+   4178    1363 0,002316 käsityö (substantiivi)
+   4179    1363 0,002316 laboratorio (substantiivi)
+   4180    1363 0,002316 punainen (substantiivi)
+   4181    1363 0,002316 rima (substantiivi)
+   4182    1363 0,002316 tupakointi (substantiivi)
+   4183    1362 0,002314 porvoo (erisnimi)
+   4184    1361 0,002312 ahkerasti (adverbi)
+   4185    1361 0,002312 hämeenkyrö (erisnimi)
+   4186    1361 0,002312 keskittyminen (substantiivi)
+   4187    1361 0,002312 lindström (erisnimi)
+   4188    1360 0,002310 arvokisa (substantiivi)
+   4189    1359 0,002309 market (substantiivi)
+   4190    1359 0,002309 rantala (erisnimi)
+   4191    1358 0,002307 annos (substantiivi)
+   4192    1358 0,002307 automaattisesti (adverbi)
+   4193    1358 0,002307 kuntoutus (substantiivi)
+   4194    1358 0,002307 nosto (substantiivi)
+   4195    1358 0,002307 ulkopuolelta (prepositio)
+   4196    1357 0,002305 alin (adjektiivi)
+   4197    1357 0,002305 balttia (erisnimi)
+   4198    1357 0,002305 kööpenhamina (erisnimi)
+   4199    1357 0,002305 lähetystö (substantiivi)
+   4200    1357 0,002305 patsas (substantiivi)
+   4201    1357 0,002305 william (erisnimi)
+   4202    1356 0,002304 loppujen_lopuksi (adverbi)
+   4203    1355 0,002302 grand (erisnimi)
+   4204    1355 0,002302 lehti (erisnimi)
+   4205    1355 0,002302 varis (erisnimi)
+   4206    1355 0,002302 yleisradio (erisnimi)
+   4207    1354 0,002300 erottaminen (substantiivi)
+   4208    1354 0,002300 kumma (adjektiivi)
+   4209    1354 0,002300 sairaanhoitaja (substantiivi)
+   4210    1353 0,002299 ihmeellinen (adjektiivi)
+   4211    1353 0,002299 rikollinen (substantiivi)
+   4212    1352 0,002297 helpottua (verbi)
+   4213    1352 0,002297 natura (erisnimi)
+   4214    1350 0,002293 luxemburg (erisnimi)
+   4215    1350 0,002293 niin_kauan_kuin (konjunktio)
+   4216    1350 0,002293 sisar (substantiivi)
+   4217    1350 0,002293 tamminen (erisnimi)
+   4218    1348 0,002290 kontakti (substantiivi)
+   4219    1347 0,002288 lakata (verbi)
+   4220    1347 0,002288 sikäli (adverbi)
+   4221    1346 0,002287 johtaminen (substantiivi)
+   4222    1346 0,002287 siemen (substantiivi)
+   4223    1345 0,002285 käyttäminen (substantiivi)
+   4224    1345 0,002285 laajuus (substantiivi)
+   4225    1345 0,002285 lahjoitus (substantiivi)
+   4226    1345 0,002285 sisään (prepositio)
+   4227    1345 0,002285 äidinkieli (substantiivi)
+   4228    1344 0,002283 aatto (substantiivi)
+   4229    1344 0,002283 vastaväittäjä (substantiivi)
+   4230    1344 0,002283 verottaja (substantiivi)
+   4231    1343 0,002282 leskinen (erisnimi)
+   4232    1343 0,002282 viulu (substantiivi)
+   4233    1342 0,002280 puristaa (verbi)
+   4234    1341 0,002278 kansantalous (substantiivi)
+   4235    1341 0,002278 mennyt (substantiivi)
+   4236    1341 0,002278 päivittäinen (adjektiivi)
+   4237    1341 0,002278 ruovesi (erisnimi)
+   4238    1340 0,002277 ilman_muuta (adverbi)
+   4239    1340 0,002277 kiriä (verbi)
+   4240    1340 0,002277 lähinnä (prepositio)
+   4241    1339 0,002275 sopivasti (adverbi)
+   4242    1338 0,002273 hongkong (erisnimi)
+   4243    1338 0,002273 päämaja (substantiivi)
+   4244    1337 0,002271 raaka (adjektiivi)
+   4245    1337 0,002271 tärkeys (substantiivi)
+   4246    1336 0,002270 liittoutua (verbi)
+   4247    1336 0,002270 omaksua (verbi)
+   4248    1336 0,002270 runko (substantiivi)
+   4249    1335 0,002268 carl (erisnimi)
+   4250    1335 0,002268 meijeri (substantiivi)
+   4251    1335 0,002268 oikeusasiamies (substantiivi)
+   4252    1335 0,002268 rekisteri (substantiivi)
+   4253    1334 0,002266 alusta_lähtien (adverbi)
+   4254    1334 0,002266 kehno (adjektiivi)
+   4255    1334 0,002266 oululainen (substantiivi)
+   4256    1334 0,002266 tehokkuus (substantiivi)
+   4257    1333 0,002265 moraali (substantiivi)
+   4258    1332 0,002263 saneeraus (substantiivi)
+   4259    1331 0,002261 avaaminen (substantiivi)
+   4260    1330 0,002260 bulgaria (erisnimi)
+   4261    1330 0,002260 kypsä (adjektiivi)
+   4262    1330 0,002260 persoona (substantiivi)
+   4263    1330 0,002260 pohjavesi (substantiivi)
+   4264    1329 0,002258 henkisesti (adverbi)
+   4265    1329 0,002258 reippaasti (adverbi)
+   4266    1329 0,002258 tunneli (substantiivi)
+   4267    1329 0,002258 viipuri (erisnimi)
+   4268    1328 0,002256 allas (substantiivi)
+   4269    1328 0,002256 konsultti (substantiivi)
+   4270    1327 0,002254 hintataso (substantiivi)
+   4271    1327 0,002254 kritisoida (verbi)
+   4272    1327 0,002254 sokeri (substantiivi)
+   4273    1326 0,002253 gerhard (erisnimi)
+   4274    1325 0,002251 reipas (adjektiivi)
+   4275    1324 0,002249 itkeä (verbi)
+   4276    1323 0,002248 armo (substantiivi)
+   4277    1322 0,002246 salkku (substantiivi)
+   4278    1321 0,002244 konflikti (substantiivi)
+   4279    1319 0,002241 alakerta (substantiivi)
+   4280    1319 0,002241 esikuva (substantiivi)
+   4281    1319 0,002241 viitanen (erisnimi)
+   4282    1318 0,002239 helminen (erisnimi)
+   4283    1318 0,002239 itä (erisnimi)
+   4284    1318 0,002239 kaukalo (substantiivi)
+   4285    1318 0,002239 kivuta (verbi)
+   4286    1317 0,002237 arkkipiispa (substantiivi)
+   4287    1317 0,002237 lause (substantiivi)
+   4288    1317 0,002237 työmaa (substantiivi)
+   4289    1316 0,002236 ahkera (adjektiivi)
+   4290    1316 0,002236 massa (substantiivi)
+   4291    1316 0,002236 päällä (adverbi)
+   4292    1316 0,002236 seuranta (substantiivi)
+   4293    1316 0,002236 tanskalainen (substantiivi)
+   4294    1315 0,002234 kitara (substantiivi)
+   4295    1314 0,002232 lohi (substantiivi)
+   4296    1314 0,002232 salt (erisnimi)
+   4297    1314 0,002232 valtuus (substantiivi)
+   4298    1313 0,002231 kypsyä (verbi)
+   4299    1313 0,002231 piikki (substantiivi)
+   4300    1313 0,002231 teltta (substantiivi)
+   4301    1313 0,002231 vastapaino (substantiivi)
+   4302    1312 0,002229 laatikko (substantiivi)
+   4303    1312 0,002229 tappara (substantiivi)
+   4304    1312 0,002229 terhi (erisnimi)
+   4305    1311 0,002227 yliopistollinen (adjektiivi)
+   4306    1311 0,002227 ärsyttää (verbi)
+   4307    1310 0,002226 kimppuun (prepositio)
+   4308    1310 0,002226 mittaus (substantiivi)
+   4309    1310 0,002226 oja (substantiivi)
+   4310    1310 0,002226 vähennys (substantiivi)
+   4311    1309 0,002224 kortteli (substantiivi)
+   4312    1309 0,002224 kyseenalainen (adjektiivi)
+   4313    1309 0,002224 pikaisesti (adverbi)
+   4314    1308 0,002222 antonio (erisnimi)
+   4315    1308 0,002222 epäonnistuminen (substantiivi)
+   4316    1308 0,002222 hänninen (erisnimi)
+   4317    1308 0,002222 kanadalainen (adjektiivi)
+   4318    1308 0,002222 säännös (substantiivi)
+   4319    1307 0,002220 huipentua (verbi)
+   4320    1307 0,002220 seksi (substantiivi)
+   4321    1306 0,002219 kim (erisnimi)
+   4322    1306 0,002219 polkupyörä (substantiivi)
+   4323    1306 0,002219 sulaa (verbi)
+   4324    1305 0,002217 jeesus (erisnimi)
+   4325    1305 0,002217 visio (substantiivi)
+   4326    1304 0,002215 jokela (erisnimi)
+   4327    1304 0,002215 reaktio (substantiivi)
+   4328    1304 0,002215 sveitsiläinen (adjektiivi)
+   4329    1303 0,002214 henkilökohtaisesti (adverbi)
+   4330    1303 0,002214 huittinen (erisnimi)
+   4331    1303 0,002214 puhuttaa (verbi)
+   4332    1303 0,002214 retki (substantiivi)
+   4333    1303 0,002214 sotkea (verbi)
+   4334    1303 0,002214 vaalea (adjektiivi)
+   4335    1302 0,002212 metsähallitus (substantiivi)
+   4336    1302 0,002212 montreal (erisnimi)
+   4337    1302 0,002212 pohjois-korea (erisnimi)
+   4338    1301 0,002210 kulmala (erisnimi)
+   4339    1300 0,002209 lahjakas (adjektiivi)
+   4340    1300 0,002209 lähialue (substantiivi)
+   4341    1300 0,002209 murhata (verbi)
+   4342    1300 0,002209 vuosikate (substantiivi)
+   4343    1299 0,002207 häggman (erisnimi)
+   4344    1299 0,002207 pianisti (substantiivi)
+   4345    1299 0,002207 suurlähetystö (substantiivi)
+   4346    1298 0,002205 media (erisnimi)
+   4347    1298 0,002205 slovenia (erisnimi)
+   4348    1298 0,002205 ähtäri (erisnimi)
+   4349    1297 0,002203 ostos (substantiivi)
+   4350    1297 0,002203 petos (substantiivi)
+   4351    1297 0,002203 turvapaikka (substantiivi)
+   4352    1296 0,002202 keskelle (prepositio)
+   4353    1295 0,002200 kokkonen (erisnimi)
+   4354    1295 0,002200 stora (erisnimi)
+   4355    1295 0,002200 terveysministeriö (substantiivi)
+   4356    1294 0,002198 perusteellinen (adjektiivi)
+   4357    1293 0,002197 egypti (erisnimi)
+   4358    1293 0,002197 kuin_mitä (konjunktio)
+   4359    1293 0,002197 määräaika (substantiivi)
+   4360    1293 0,002197 pussi (substantiivi)
+   4361    1292 0,002195 igor (erisnimi)
+   4362    1291 0,002193 varas (substantiivi)
+   4363    1291 0,002193 viiva (substantiivi)
+   4364    1290 0,002192 järkyttää (verbi)
+   4365    1289 0,002190 praha (erisnimi)
+   4366    1289 0,002190 säästyä (verbi)
+   4367    1289 0,002190 tilinpäätös (substantiivi)
+   4368    1288 0,002188 afganistan (erisnimi)
+   4369    1288 0,002188 hyvinkääläinen (adjektiivi)
+   4370    1288 0,002188 juho (erisnimi)
+   4371    1288 0,002188 steve (erisnimi)
+   4372    1287 0,002186 kauhu (substantiivi)
+   4373    1287 0,002186 valtiovalta (substantiivi)
+   4374    1286 0,002185 klubi (substantiivi)
+   4375    1286 0,002185 taktiikka (substantiivi)
+   4376    1286 0,002185 tuominen (erisnimi)
+   4377    1286 0,002185 uimahalli (substantiivi)
+   4378    1285 0,002183 kohl (erisnimi)
+   4379    1285 0,002183 liikemies (substantiivi)
+   4380    1285 0,002183 rohkeus (substantiivi)
+   4381    1285 0,002183 strateginen (adjektiivi)
+   4382    1285 0,002183 tukija (substantiivi)
+   4383    1285 0,002183 vuori (erisnimi)
+   4384    1284 0,002181 luopuminen (substantiivi)
+   4385    1284 0,002181 äkkiä (adverbi)
+   4386    1283 0,002180 diana (erisnimi)
+   4387    1283 0,002180 toimija (substantiivi)
+   4388    1283 0,002180 työstää (verbi)
+   4389    1282 0,002178 karjala (substantiivi)
+   4390    1282 0,002178 rehellinen (adjektiivi)
+   4391    1282 0,002178 syvyys (substantiivi)
+   4392    1282 0,002178 vuorinen (erisnimi)
+   4393    1281 0,002176 vaille (prepositio)
+   4394    1279 0,002173 kauneus (substantiivi)
+   4395    1279 0,002173 laajentua (verbi)
+   4396    1279 0,002173 pohjautua (verbi)
+   4397    1279 0,002173 työttömyysaste (substantiivi)
+   4398    1278 0,002171 vetäytyminen (substantiivi)
+   4399    1277 0,002169 gramma (substantiivi)
+   4400    1277 0,002169 kotikaupunki (substantiivi)
+   4401    1276 0,002168 immonen (erisnimi)
+   4402    1275 0,002166 yksitoista (lukusana)
+   4403    1274 0,002164 arkinen (adjektiivi)
+   4404    1274 0,002164 lukeminen (substantiivi)
+   4405    1274 0,002164 miehittää (verbi)
+   4406    1274 0,002164 oikeusministeri (substantiivi)
+   4407    1273 0,002163 jääskeläinen (erisnimi)
+   4408    1273 0,002163 kuulustelu (substantiivi)
+   4409    1273 0,002163 niin (konjunktio)
+   4410    1273 0,002163 rautatie (substantiivi)
+   4411    1273 0,002163 toimeentulo (substantiivi)
+   4412    1273 0,002163 ylilääkäri (substantiivi)
+   4413    1272 0,002161 alko (erisnimi)
+   4414    1272 0,002161 teuvo (erisnimi)
+   4415    1271 0,002159 kioski (substantiivi)
+   4416    1271 0,002159 kuski (substantiivi)
+   4417    1271 0,002159 valtiollinen (adjektiivi)
+   4418    1270 0,002158 masennus (substantiivi)
+   4419    1270 0,002158 yhtäkkiä (adverbi)
+   4420    1269 0,002156 lavastus (substantiivi)
+   4421    1268 0,002154 peräkkäinen (adjektiivi)
+   4422    1268 0,002154 rajamäki (erisnimi)
+   4423    1267 0,002152 jordan (erisnimi)
+   4424    1266 0,002151 auttaminen (substantiivi)
+   4425    1265 0,002149 etelä-korea (erisnimi)
+   4426    1265 0,002149 hussein (erisnimi)
+   4427    1265 0,002149 kaukainen (adjektiivi)
+   4428    1265 0,002149 leijona (substantiivi)
+   4429    1265 0,002149 listata (verbi)
+   4430    1263 0,002146 lake (erisnimi)
+   4431    1263 0,002146 toimivuus (substantiivi)
+   4432    1262 0,002144 eloranta (erisnimi)
+   4433    1261 0,002142 hannele (erisnimi)
+   4434    1261 0,002142 juntunen (erisnimi)
+   4435    1260 0,002141 lukko (erisnimi)
+   4436    1260 0,002141 melu (substantiivi)
+   4437    1260 0,002141 ostaminen (substantiivi)
+   4438    1260 0,002141 sisällissota (substantiivi)
+   4439    1260 0,002141 vaaliliitto (substantiivi)
+   4440    1259 0,002139 joulupukki (substantiivi)
+   4441    1259 0,002139 korkeatasoinen (adjektiivi)
+   4442    1259 0,002139 raportoida (verbi)
+   4443    1258 0,002137 ranskalainen (substantiivi)
+   4444    1258 0,002137 tietoyhteiskunta (substantiivi)
+   4445    1258 0,002137 valko-venäjä (erisnimi)
+   4446    1257 0,002136 jokapäiväinen (adjektiivi)
+   4447    1257 0,002136 prodi (erisnimi)
+   4448    1257 0,002136 työtön (adjektiivi)
+   4449    1257 0,002136 vaieta (verbi)
+   4450    1256 0,002134 hälytys (substantiivi)
+   4451    1256 0,002134 kohtalainen (adjektiivi)
+   4452    1255 0,002132 ilahduttaa (verbi)
+   4453    1255 0,002132 kainu (erisnimi)
+   4454    1255 0,002132 kustannusarvio (substantiivi)
+   4455    1255 0,002132 ortodoksinen (adjektiivi)
+   4456    1254 0,002130 avoimuus (substantiivi)
+   4457    1253 0,002129 valaista (verbi)
+   4458    1252 0,002127 ivanov (erisnimi)
+   4459    1252 0,002127 keittää (verbi)
+   4460    1252 0,002127 kunnollinen (adjektiivi)
+   4461    1252 0,002127 kurkku (substantiivi)
+   4462    1251 0,002125 hassi (erisnimi)
+   4463    1251 0,002125 niskanen (erisnimi)
+   4464    1251 0,002125 sunnuntai-ilta (substantiivi)
+   4465    1251 0,002125 säädellä (verbi)
+   4466    1251 0,002125 toivonen (erisnimi)
+   4467    1250 0,002124 esittäytyä (verbi)
+   4468    1250 0,002124 göteborg (erisnimi)
+   4469    1250 0,002124 maantie (substantiivi)
+   4470    1250 0,002124 metsätalousministeriö (substantiivi)
+   4471    1250 0,002124 valmistuminen (substantiivi)
+   4472    1250 0,002124 vuorovaikutus (substantiivi)
+   4473    1249 0,002122 jatkuminen (substantiivi)
+   4474    1248 0,002120 itsemurha (substantiivi)
+   4475    1248 0,002120 paavola (erisnimi)
+   4476    1247 0,002119 liittovaltio (substantiivi)
+   4477    1247 0,002119 persson (erisnimi)
+   4478    1246 0,002117 atlanta (erisnimi)
+   4479    1246 0,002117 yhteisövero (substantiivi)
+   4480    1245 0,002115 maa (erisnimi)
+   4481    1245 0,002115 selvillä (adverbi)
+   4482    1244 0,002113 keksintö (substantiivi)
+   4483    1244 0,002113 maksaminen (substantiivi)
+   4484    1244 0,002113 resepti (substantiivi)
+   4485    1244 0,002113 seija (erisnimi)
+   4486    1244 0,002113 tarjoilla (verbi)
+   4487    1243 0,002112 uusinta (substantiivi)
+   4488    1242 0,002110 törmäys (substantiivi)
+   4489    1241 0,002108 asiallinen (adjektiivi)
+   4490    1241 0,002108 malesia (erisnimi)
+   4491    1241 0,002108 muuttuminen (substantiivi)
+   4492    1240 0,002107 kohdallaan (adverbi)
+   4493    1240 0,002107 oikeusministeriö (substantiivi)
+   4494    1240 0,002107 vauhdikas (adjektiivi)
+   4495    1239 0,002105 estäminen (substantiivi)
+   4496    1238 0,002103 mielikuvitus (substantiivi)
+   4497    1236 0,002100 kiihdyttää (verbi)
+   4498    1236 0,002100 kypros (erisnimi)
+   4499    1236 0,002100 polkea (verbi)
+   4500    1236 0,002100 riehua (verbi)
+   4501    1236 0,002100 traktori (substantiivi)
+   4502    1235 0,002098 kohtuullisen (adverbi)
+   4503    1235 0,002098 metsätalous (substantiivi)
+   4504    1235 0,002098 nykyisellään (adverbi)
+   4505    1235 0,002098 täydellisesti (adverbi)
+   4506    1234 0,002096 ilman_että (konjunktio)
+   4507    1234 0,002096 valtti (substantiivi)
+   4508    1234 0,002096 viehättää (verbi)
+   4509    1233 0,002095 yksityistäminen (substantiivi)
+   4510    1232 0,002093 pysty (adjektiivi)
+   4511    1231 0,002091 leviäminen (substantiivi)
+   4512    1231 0,002091 sit (lyhenne)
+   4513    1230 0,002090 argentiina (erisnimi)
+   4514    1230 0,002090 haastaja (substantiivi)
+   4515    1230 0,002090 jumala (substantiivi)
+   4516    1230 0,002090 päin (adverbi)
+   4517    1229 0,002088 europarlamentti (substantiivi)
+   4518    1229 0,002088 jose (erisnimi)
+   4519    1229 0,002088 merkintä (substantiivi)
+   4520    1228 0,002086 kuuba (erisnimi)
+   4521    1228 0,002086 martikainen (erisnimi)
+   4522    1228 0,002086 motiivi (substantiivi)
+   4523    1228 0,002086 tunto (substantiivi)
+   4524    1228 0,002086 viisitoista (lukusana)
+   4525    1227 0,002085 hirvittää (verbi)
+   4526    1227 0,002085 mummo (substantiivi)
+   4527    1227 0,002085 raati (substantiivi)
+   4528    1227 0,002085 rauhanturvajoukko (substantiivi)
+   4529    1226 0,002083 hans (erisnimi)
+   4530    1226 0,002083 kantaesitys (substantiivi)
+   4531    1226 0,002083 sieni (substantiivi)
+   4532    1226 0,002083 vanhala (erisnimi)
+   4533    1225 0,002081 hyödyntäminen (substantiivi)
+   4534    1224 0,002079 portaat (substantiivi)
+   4535    1224 0,002079 tuttava (substantiivi)
+   4536    1224 0,002079 voutilainen (erisnimi)
+   4537    1224 0,002079 ylönen (erisnimi)
+   4538    1223 0,002078 dramaattinen (adjektiivi)
+   4539    1223 0,002078 lähettäminen (substantiivi)
+   4540    1223 0,002078 vastikään (adverbi)
+   4541    1222 0,002076 huoltoasema (substantiivi)
+   4542    1222 0,002076 kesämökki (substantiivi)
+   4543    1222 0,002076 niellä (verbi)
+   4544    1222 0,002076 paikata (verbi)
+   4545    1221 0,002074 jäähy (substantiivi)
+   4546    1220 0,002073 haju (substantiivi)
+   4547    1220 0,002073 ryöstö (substantiivi)
+   4548    1220 0,002073 suvi (erisnimi)
+   4549    1219 0,002071 kustantaja (substantiivi)
+   4550    1219 0,002071 urheilija (erisnimi)
+   4551    1218 0,002069 alkuperä (substantiivi)
+   4552    1218 0,002069 kolmisen (lukusana)
+   4553    1218 0,002069 lakkauttaminen (substantiivi)
+   4554    1217 0,002068 anssi (erisnimi)
+   4555    1216 0,002066 työkalu (substantiivi)
+   4556    1215 0,002064 iiro (erisnimi)
+   4557    1215 0,002064 keskusjärjestö (substantiivi)
+   4558    1215 0,002064 pohjois-amerikka (erisnimi)
+   4559    1214 0,002062 ateria (substantiivi)
+   4560    1214 0,002062 eronen (erisnimi)
+   4561    1214 0,002062 sekaisin (adverbi)
+   4562    1214 0,002062 vuosittainen (adjektiivi)
+   4563    1213 0,002061 aukio (substantiivi)
+   4564    1213 0,002061 kolmekymmentä (lukusana)
+   4565    1212 0,002059 itsetunto (substantiivi)
+   4566    1212 0,002059 koossa (adverbi)
+   4567    1212 0,002059 tuottaminen (substantiivi)
+   4568    1212 0,002059 väänänen (erisnimi)
+   4569    1210 0,002056 tuollainen (adjektiivi)
+   4570    1210 0,002056 varsinaisesti (adverbi)
+   4571    1210 0,002056 viereen (prepositio)
+   4572    1210 0,002056 vietnam (erisnimi)
+   4573    1209 0,002054 iso-britannia (erisnimi)
+   4574    1209 0,002054 kesto (substantiivi)
+   4575    1209 0,002054 kuvaaja (substantiivi)
+   4576    1209 0,002054 pesonen (erisnimi)
+   4577    1208 0,002052 asiantuntemus (substantiivi)
+   4578    1208 0,002052 makkara (substantiivi)
+   4579    1208 0,002052 puuha (substantiivi)
+   4580    1206 0,002049 ab (lyhenne)
+   4581    1206 0,002049 kynttilä (substantiivi)
+   4582    1206 0,002049 piirros (substantiivi)
+   4583    1205 0,002047 chile (erisnimi)
+   4584    1205 0,002047 itseluottamus (substantiivi)
+   4585    1205 0,002047 olli-pekka (erisnimi)
+   4586    1205 0,002047 pahimmillaan (adverbi)
+   4587    1205 0,002047 vannoa (verbi)
+   4588    1205 0,002047 vuokola (erisnimi)
+   4589    1204 0,002045 jaakonsaari (erisnimi)
+   4590    1204 0,002045 yksinomaan (adverbi)
+   4591    1203 0,002044 bonn (erisnimi)
+   4592    1203 0,002044 luistella (verbi)
+   4593    1203 0,002044 otava (erisnimi)
+   4594    1203 0,002044 saksa (substantiivi)
+   4595    1202 0,002042 kohti (adverbi)
+   4596    1202 0,002042 voitto (erisnimi)
+   4597    1201 0,002040 erikoiskoe (substantiivi)
+   4598    1200 0,002039 yhteistoiminta (substantiivi)
+   4599    1199 0,002037 passi (substantiivi)
+   4600    1199 0,002037 pommi-isku (substantiivi)
+   4601    1199 0,002037 profiili (substantiivi)
+   4602    1199 0,002037 siivota (verbi)
+   4603    1199 0,002037 sodankylä (erisnimi)
+   4604    1198 0,002035 keula (substantiivi)
+   4605    1198 0,002035 kuvataide (substantiivi)
+   4606    1198 0,002035 sänky (substantiivi)
+   4607    1197 0,002034 jätevesi (substantiivi)
+   4608    1196 0,002032 islanti (erisnimi)
+   4609    1196 0,002032 luonnos (substantiivi)
+   4610    1196 0,002032 vastustus (substantiivi)
+   4611    1195 0,002030 ottawa (erisnimi)
+   4612    1195 0,002030 vihr (lyhenne)
+   4613    1194 0,002028 kiinnostua (verbi)
+   4614    1194 0,002028 kosonen (erisnimi)
+   4615    1194 0,002028 tuhoisa (adjektiivi)
+   4616    1193 0,002027 pohjoisosa (substantiivi)
+   4617    1192 0,002025 carlos (erisnimi)
+   4618    1192 0,002025 syrjäyttää (verbi)
+   4619    1191 0,002023 kriitikko (substantiivi)
+   4620    1191 0,002023 mahtaa (verbi)
+   4621    1190 0,002022 kaula (substantiivi)
+   4622    1190 0,002022 sisätila (substantiivi)
+   4623    1190 0,002022 syli (substantiivi)
+   4624    1189 0,002020 karkottaa (verbi)
+   4625    1189 0,002020 teollisuusministeriö (substantiivi)
+   4626    1188 0,002018 manageri (substantiivi)
+   4627    1188 0,002018 syytös (substantiivi)
+   4628    1188 0,002018 turma (substantiivi)
+   4629    1188 0,002018 tutkiminen (substantiivi)
+   4630    1187 0,002017 huoata (verbi)
+   4631    1187 0,002017 liukas (adjektiivi)
+   4632    1187 0,002017 moraalinen (adjektiivi)
+   4633    1187 0,002017 palveluala (substantiivi)
+   4634    1187 0,002017 peking (erisnimi)
+   4635    1186 0,002015 nauru (substantiivi)
+   4636    1185 0,002013 enestam (erisnimi)
+   4637    1185 0,002013 jarru (substantiivi)
+   4638    1185 0,002013 satanen (substantiivi)
+   4639    1185 0,002013 seteli (substantiivi)
+   4640    1185 0,002013 vuokra-asunto (substantiivi)
+   4641    1184 0,002011 aurajoki (erisnimi)
+   4642    1184 0,002011 lieto (erisnimi)
+   4643    1184 0,002011 vartija (substantiivi)
+   4644    1183 0,002010 chirac (erisnimi)
+   4645    1183 0,002010 ilpo (erisnimi)
+   4646    1182 0,002008 neuvottelukunta (substantiivi)
+   4647    1182 0,002008 vaihtuminen (substantiivi)
+   4648    1181 0,002006 kehä (substantiivi)
+   4649    1181 0,002006 kuve (substantiivi)
+   4650    1181 0,002006 kynsi (substantiivi)
+   4651    1180 0,002005 kauhea (adjektiivi)
+   4652    1180 0,002005 valokuvaaja (substantiivi)
+   4653    1179 0,002003 alaspäin (adverbi)
+   4654    1179 0,002003 puhdistus (substantiivi)
+   4655    1179 0,002003 ulkopoliittinen (adjektiivi)
+   4656    1179 0,002003 voimalaitos (substantiivi)
+   4657    1178 0,002001 alaisuus (substantiivi)
+   4658    1178 0,002001 laakso (erisnimi)
+   4659    1178 0,002001 lammas (substantiivi)
+   4660    1178 0,002001 rasva (substantiivi)
+   4661    1177 0,002000 parkano (erisnimi)
+   4662    1177 0,002000 viimein (adverbi)
+   4663    1176 0,001998 kotiseutu (substantiivi)
+   4664    1176 0,001998 maraton (substantiivi)
+   4665    1176 0,001998 muslimi (substantiivi)
+   4666    1176 0,001998 oscar (erisnimi)
+   4667    1176 0,001998 painottua (verbi)
+   4668    1176 0,001998 tutkimuskeskus (substantiivi)
+   4669    1175 0,001996 aulis (erisnimi)
+   4670    1175 0,001996 liberaali (adjektiivi)
+   4671    1175 0,001996 painostus (substantiivi)
+   4672    1175 0,001996 pysyvästi (adverbi)
+   4673    1175 0,001996 tokio (erisnimi)
+   4674    1174 0,001994 luu (substantiivi)
+   4675    1174 0,001994 plussa (substantiivi)
+   4676    1174 0,001994 rakenteellinen (adjektiivi)
+   4677    1174 0,001994 työnteko (substantiivi)
+   4678    1173 0,001993 don (erisnimi)
+   4679    1173 0,001993 heikkous (substantiivi)
+   4680    1173 0,001993 kapasiteetti (substantiivi)
+   4681    1173 0,001993 osuuspankki (substantiivi)
+   4682    1173 0,001993 selville (adverbi)
+   4683    1173 0,001993 sisällä (adverbi)
+   4684    1173 0,001993 suhonen (erisnimi)
+   4685    1172 0,001991 eläminen (substantiivi)
+   4686    1172 0,001991 muotoilu (substantiivi)
+   4687    1171 0,001989 mikkonen (erisnimi)
+   4688    1171 0,001989 nielsen (erisnimi)
+   4689    1171 0,001989 rajala (erisnimi)
+   4690    1170 0,001988 imf (lyhenne)
+   4691    1170 0,001988 luterilainen (adjektiivi)
+   4692    1170 0,001988 sika (substantiivi)
+   4693    1170 0,001988 takaa-ajo (substantiivi)
+   4694    1169 0,001986 asetus (substantiivi)
+   4695    1169 0,001986 ennalta (adverbi)
+   4696    1169 0,001986 ennättää (verbi)
+   4697    1169 0,001986 jännite (substantiivi)
+   4698    1169 0,001986 maksuton (adjektiivi)
+   4699    1169 0,001986 sanoma (erisnimi)
+   4700    1169 0,001986 työreformi (substantiivi)
+   4701    1168 0,001984 navetta (substantiivi)
+   4702    1167 0,001983 henry (erisnimi)
+   4703    1167 0,001983 malttaa (verbi)
+   4704    1167 0,001983 matto (substantiivi)
+   4705    1167 0,001983 olematon (adjektiivi)
+   4706    1167 0,001983 perätä (verbi)
+   4707    1167 0,001983 takala (erisnimi)
+   4708    1166 0,001981 isännöidä (verbi)
+   4709    1166 0,001981 palestiinalainen (substantiivi)
+   4710    1166 0,001981 terttu (erisnimi)
+   4711    1166 0,001981 ulkonäkö (substantiivi)
+   4712    1165 0,001979 epäilys (substantiivi)
+   4713    1165 0,001979 kasvattaminen (substantiivi)
+   4714    1165 0,001979 oivaltaa (verbi)
+   4715    1165 0,001979 ylläpito (substantiivi)
+   4716    1164 0,001978 areena (substantiivi)
+   4717    1164 0,001978 kaksitoista (lukusana)
+   4718    1164 0,001978 läsnäolo (substantiivi)
+   4719    1164 0,001978 valmennus (substantiivi)
+   4720    1163 0,001976 aika-ajo (substantiivi)
+   4721    1163 0,001976 dennis (erisnimi)
+   4722    1163 0,001976 erikoissairaanhoito (substantiivi)
+   4723    1163 0,001976 kerralla (adverbi)
+   4724    1163 0,001976 kiihkeä (adjektiivi)
+   4725    1163 0,001976 kuutiometri (substantiivi)
+   4726    1163 0,001976 salmela (erisnimi)
+   4727    1163 0,001976 toyota (erisnimi)
+   4728    1163 0,001976 uudistua (verbi)
+   4729    1162 0,001974 lounais-suomi (erisnimi)
+   4730    1162 0,001974 poliisilaitos (substantiivi)
+   4731    1162 0,001974 sarjakuva (substantiivi)
+   4732    1162 0,001974 sinfonia (substantiivi)
+   4733    1161 0,001972 luettelo (substantiivi)
+   4734    1161 0,001972 pystyyn (adverbi)
+   4735    1160 0,001971 kisata (verbi)
+   4736    1160 0,001971 parainen (erisnimi)
+   4737    1159 0,001969 juoni (substantiivi)
+   4738    1159 0,001969 luvaton (adjektiivi)
+   4739    1158 0,001967 murhe (substantiivi)
+   4740    1158 0,001967 pilvi (substantiivi)
+   4741    1158 0,001967 pyynikki (erisnimi)
+   4742    1158 0,001967 seksuaalinen (adjektiivi)
+   4743    1158 0,001967 vatanen (erisnimi)
+   4744    1157 0,001966 irrottaa (verbi)
+   4745    1157 0,001966 keventää (verbi)
+   4746    1157 0,001966 ohessa (prepositio)
+   4747    1156 0,001964 kiloinen (adjektiivi)
+   4748    1156 0,001964 ladata (verbi)
+   4749    1156 0,001964 lehdistötilaisuus (substantiivi)
+   4750    1156 0,001964 teollinen (adjektiivi)
+   4751    1156 0,001964 times (erisnimi)
+   4752    1155 0,001962 kalajoki (erisnimi)
+   4753    1155 0,001962 koli (erisnimi)
+   4754    1155 0,001962 ruusu (substantiivi)
+   4755    1155 0,001962 viidenneksi (adverbi)
+   4756    1152 0,001957 hill (erisnimi)
+   4757    1152 0,001957 jääminen (substantiivi)
+   4758    1152 0,001957 senttinen (adjektiivi)
+   4759    1151 0,001955 sponsori (substantiivi)
+   4760    1150 0,001954 alatalo (erisnimi)
+   4761    1149 0,001952 kaavoitus (substantiivi)
+   4762    1149 0,001952 kunnallisvaali (substantiivi)
+   4763    1149 0,001952 linna (erisnimi)
+   4764    1149 0,001952 panostus (substantiivi)
+   4765    1149 0,001952 selonteko (substantiivi)
+   4766    1149 0,001952 tyylikäs (adjektiivi)
+   4767    1148 0,001950 nimimerkki (substantiivi)
+   4768    1147 0,001949 gustafsson (erisnimi)
+   4769    1147 0,001949 instituutio (substantiivi)
+   4770    1147 0,001949 sorsa (erisnimi)
+   4771    1147 0,001949 torni (substantiivi)
+   4772    1147 0,001949 virolainen (erisnimi)
+   4773    1146 0,001947 backman (erisnimi)
+   4774    1146 0,001947 siinä_missä (konjunktio)
+   4775    1146 0,001947 tiainen (erisnimi)
+   4776    1145 0,001945 lakiesitys (substantiivi)
+   4777    1145 0,001945 puuhata (verbi)
+   4778    1144 0,001944 myöhässä (adverbi)
+   4779    1144 0,001944 schmitt (erisnimi)
+   4780    1144 0,001944 virittää (verbi)
+   4781    1143 0,001942 laajeneminen (substantiivi)
+   4782    1142 0,001940 kommunistinen (adjektiivi)
+   4783    1142 0,001940 piillä (verbi)
+   4784    1141 0,001938 ap (lyhenne)
+   4785    1141 0,001938 indeksi (substantiivi)
+   4786    1141 0,001938 konservatorio (substantiivi)
+   4787    1141 0,001938 lampinen (erisnimi)
+   4788    1141 0,001938 metsästäjä (substantiivi)
+   4789    1141 0,001938 periksi (adverbi)
+   4790    1141 0,001938 startti (substantiivi)
+   4791    1141 0,001938 toisinaan (adverbi)
+   4792    1140 0,001937 luotsata (verbi)
+   4793    1140 0,001937 reuter (erisnimi)
+   4794    1140 0,001937 sipilä (erisnimi)
+   4795    1140 0,001937 suomi-yhtiö (erisnimi)
+   4796    1139 0,001935 pikainen (adjektiivi)
+   4797    1139 0,001935 sallinen (erisnimi)
+   4798    1139 0,001935 velvoite (substantiivi)
+   4799    1139 0,001935 viereinen (adjektiivi)
+   4800    1138 0,001933 eddie (erisnimi)
+   4801    1138 0,001933 ikinä (adverbi)
+   4802    1138 0,001933 international (erisnimi)
+   4803    1138 0,001933 kaiken_aikaa (adverbi)
+   4804    1138 0,001933 mike (erisnimi)
+   4805    1138 0,001933 sävel (substantiivi)
+   4806    1138 0,001933 vaisu (adjektiivi)
+   4807    1137 0,001932 hyväksyntä (substantiivi)
+   4808    1137 0,001932 karppinen (erisnimi)
+   4809    1137 0,001932 menestyminen (substantiivi)
+   4810    1137 0,001932 nolla (substantiivi)
+   4811    1136 0,001930 käsittämätön (adjektiivi)
+   4812    1136 0,001930 punta (substantiivi)
+   4813    1135 0,001928 tanja (erisnimi)
+   4814    1135 0,001928 tilapäinen (adjektiivi)
+   4815    1135 0,001928 touhu (substantiivi)
+   4816    1134 0,001927 group (erisnimi)
+   4817    1134 0,001927 mainonta (substantiivi)
+   4818    1134 0,001927 oksanen (erisnimi)
+   4819    1134 0,001927 vihje (substantiivi)
+   4820    1133 0,001925 kasvukeskus (substantiivi)
+   4821    1133 0,001925 pahoitella (verbi)
+   4822    1133 0,001925 suomenlahti (erisnimi)
+   4823    1133 0,001925 uskottava (adjektiivi)
+   4824    1132 0,001923 keski-ikä (substantiivi)
+   4825    1132 0,001923 pääsääntöisesti (adverbi)
+   4826    1132 0,001923 siisti (adjektiivi)
+   4827    1132 0,001923 toimintatapa (substantiivi)
+   4828    1131 0,001921 imatra (erisnimi)
+   4829    1131 0,001921 rautavaara (erisnimi)
+   4830    1131 0,001921 seurue (substantiivi)
+   4831    1131 0,001921 vartioida (verbi)
+   4832    1130 0,001920 aate (substantiivi)
+   4833    1130 0,001920 ihmiskunta (substantiivi)
+   4834    1130 0,001920 toivomus (substantiivi)
+   4835    1130 0,001920 vaja (substantiivi)
+   4836    1130 0,001920 vihkiä (verbi)
+   4837    1129 0,001918 koivula (erisnimi)
+   4838    1129 0,001918 nivala (erisnimi)
+   4839    1129 0,001918 sen_enempää (adverbi)
+   4840    1129 0,001918 söderman (erisnimi)
+   4841    1129 0,001918 tarkkuus (substantiivi)
+   4842    1129 0,001918 tilastokeskus (substantiivi)
+   4843    1128 0,001916 lievästi (adverbi)
+   4844    1128 0,001916 mietintö (substantiivi)
+   4845    1128 0,001916 serbijoukko (substantiivi)
+   4846    1127 0,001915 frank (erisnimi)
+   4847    1127 0,001915 kansliapäällikkö (substantiivi)
+   4848    1127 0,001915 ketola (erisnimi)
+   4849    1127 0,001915 leima (substantiivi)
+   4850    1127 0,001915 surullinen (adjektiivi)
+   4851    1127 0,001915 tammela (erisnimi)
+   4852    1126 0,001913 huonekalu (substantiivi)
+   4853    1126 0,001913 ratkoa (verbi)
+   4854    1126 0,001913 yrittäjyys (substantiivi)
+   4855    1125 0,001911 hidastua (verbi)
+   4856    1125 0,001911 käytävä (substantiivi)
+   4857    1125 0,001911 matikainen (erisnimi)
+   4858    1125 0,001911 radio (erisnimi)
+   4859    1125 0,001911 sievinen (erisnimi)
+   4860    1125 0,001911 vähätellä (verbi)
+   4861    1124 0,001910 koittaa (verbi)
+   4862    1124 0,001910 tarkastaja (substantiivi)
+   4863    1124 0,001910 vuotaa (verbi)
+   4864    1123 0,001908 itävaltalainen (adjektiivi)
+   4865    1122 0,001906 aviomies (substantiivi)
+   4866    1122 0,001906 raivata (verbi)
+   4867    1122 0,001906 reikä (substantiivi)
+   4868    1122 0,001906 suunnitteilla (adverbi)
+   4869    1121 0,001904 antautua (verbi)
+   4870    1121 0,001904 geneve (erisnimi)
+   4871    1121 0,001904 tarkentaa (verbi)
+   4872    1120 0,001903 aktiivisuus (substantiivi)
+   4873    1120 0,001903 kaupungintalo (substantiivi)
+   4874    1120 0,001903 perässä (adverbi)
+   4875    1119 0,001901 radikaali (adjektiivi)
+   4876    1119 0,001901 tässä_tapauksessa (adverbi)
+   4877    1119 0,001901 veroprosentti (substantiivi)
+   4878    1118 0,001899 australialainen (adjektiivi)
+   4879    1117 0,001898 oleminen (substantiivi)
+   4880    1116 0,001896 lentoyhtiö (substantiivi)
+   4881    1116 0,001896 numminen (erisnimi)
+   4882    1116 0,001896 ruokkia (verbi)
+   4883    1116 0,001896 strasbourg (erisnimi)
+   4884    1115 0,001894 murtua (verbi)
+   4885    1115 0,001894 tahvanainen (erisnimi)
+   4886    1115 0,001894 tk (lyhenne)
+   4887    1115 0,001894 öcalanin (erisnimi)
+   4888    1114 0,001893 epa (lyhenne)
+   4889    1114 0,001893 tshernomyrdin (erisnimi)
+   4890    1114 0,001893 turvallisuuspolitiikka (substantiivi)
+   4891    1114 0,001893 vankeusrangaistus (substantiivi)
+   4892    1114 0,001893 ääressä (prepositio)
+   4893    1113 0,001891 harva (adjektiivi)
+   4894    1113 0,001891 lea (erisnimi)
+   4895    1113 0,001891 meri (erisnimi)
+   4896    1113 0,001891 mäki (erisnimi)
+   4897    1112 0,001889 jalostaa (verbi)
+   4898    1112 0,001889 nopeuttaa (verbi)
+   4899    1112 0,001889 peili (substantiivi)
+   4900    1112 0,001889 työmarkkinajärjestö (substantiivi)
+   4901    1112 0,001889 uuni (substantiivi)
+   4902    1112 0,001889 viha (substantiivi)
+   4903    1112 0,001889 yllä (prepositio)
+   4904    1111 0,001887 kuori (substantiivi)
+   4905    1111 0,001887 noteerata (verbi)
+   4906    1110 0,001886 haltija (substantiivi)
+   4907    1110 0,001886 käsky (substantiivi)
+   4908    1110 0,001886 legendaarinen (adjektiivi)
+   4909    1109 0,001884 rautio (erisnimi)
+   4910    1109 0,001884 tuomiokirkko (substantiivi)
+   4911    1108 0,001882 tiedotus (substantiivi)
+   4912    1107 0,001881 kärkkäinen (erisnimi)
+   4913    1107 0,001881 pohdinta (substantiivi)
+   4914    1107 0,001881 savo (erisnimi)
+   4915    1107 0,001881 terroristi (substantiivi)
+   4916    1107 0,001881 tulopoliittinen (adjektiivi)
+   4917    1106 0,001879 itä-eurooppa (erisnimi)
+   4918    1106 0,001879 ojanen (erisnimi)
+   4919    1106 0,001879 riippuvainen (adjektiivi)
+   4920    1105 0,001877 kansalaisjärjestö (substantiivi)
+   4921    1105 0,001877 kuntaliitto (substantiivi)
+   4922    1104 0,001876 eristää (verbi)
+   4923    1103 0,001874 kaatuminen (substantiivi)
+   4924    1103 0,001874 keskusta (erisnimi)
+   4925    1103 0,001874 koski (substantiivi)
+   4926    1103 0,001874 oikeassa (adverbi)
+   4927    1103 0,001874 pyhä (erisnimi)
+   4928    1102 0,001872 uskollinen (adjektiivi)
+   4929    1102 0,001872 vitsi (substantiivi)
+   4930    1101 0,001870 aamuyö (substantiivi)
+   4931    1101 0,001870 julia (erisnimi)
+   4932    1100 0,001869 huttunen (erisnimi)
+   4933    1100 0,001869 klinikka (substantiivi)
+   4934    1100 0,001869 negatiivinen (adjektiivi)
+   4935    1100 0,001869 peruspalvelu (substantiivi)
+   4936    1100 0,001869 startata (verbi)
+   4937    1100 0,001869 tyytyväisyys (substantiivi)
+   4938    1099 0,001867 hitti (substantiivi)
+   4939    1098 0,001865 hiekka (substantiivi)
+   4940    1098 0,001865 kansallispuisto (substantiivi)
+   4941    1098 0,001865 vastus (substantiivi)
+   4942    1097 0,001864 byrokratia (substantiivi)
+   4943    1097 0,001864 nahka (substantiivi)
+   4944    1097 0,001864 rautatieasema (substantiivi)
+   4945    1097 0,001864 tienata (verbi)
+   4946    1096 0,001862 koripallo (substantiivi)
+   4947    1096 0,001862 lindberg (erisnimi)
+   4948    1096 0,001862 sipuli (substantiivi)
+   4949    1096 0,001862 tasoitus (substantiivi)
+   4950    1095 0,001860 tiedustella (verbi)
+   4951    1095 0,001860 vaikeasti (adverbi)
+   4952    1094 0,001859 juhlistaa (verbi)
+   4953    1094 0,001859 kalervo (erisnimi)
+   4954    1094 0,001859 perättäinen (adjektiivi)
+   4955    1093 0,001857 oikeudenmukainen (adjektiivi)
+   4956    1092 0,001855 puida (verbi)
+   4957    1092 0,001855 saara (erisnimi)
+   4958    1091 0,001853 saatavilla (adverbi)
+   4959    1090 0,001852 elimistö (substantiivi)
+   4960    1090 0,001852 hilkka (erisnimi)
+   4961    1090 0,001852 muovi (substantiivi)
+   4962    1090 0,001852 nousiainen (erisnimi)
+   4963    1090 0,001852 peliaika (substantiivi)
+   4964    1090 0,001852 tohmajärvi (erisnimi)
+   4965    1090 0,001852 tshetsheeni (substantiivi)
+   4966    1090 0,001852 valmistautuminen (substantiivi)
+   4967    1088 0,001848 asemakaava (substantiivi)
+   4968    1088 0,001848 budapest (erisnimi)
+   4969    1088 0,001848 kukkia (verbi)
+   4970    1088 0,001848 lähettiläs (substantiivi)
+   4971    1088 0,001848 nobel (erisnimi)
+   4972    1088 0,001848 tuumata (verbi)
+   4973    1087 0,001847 lampi (erisnimi)
+   4974    1087 0,001847 milj (lukusana)
+   4975    1087 0,001847 varatoimitusjohtaja (substantiivi)
+   4976    1086 0,001845 edistyä (verbi)
+   4977    1086 0,001845 enkeli (substantiivi)
+   4978    1086 0,001845 pukea (verbi)
+   4979    1086 0,001845 sattuma (substantiivi)
+   4980    1086 0,001845 vessa (substantiivi)
+   4981    1085 0,001843 arkkitehtuuri (substantiivi)
+   4982    1085 0,001843 charles (erisnimi)
+   4983    1085 0,001843 hattu (substantiivi)
+   4984    1085 0,001843 huomautus (substantiivi)
+   4985    1085 0,001843 jo (erisnimi)
+   4986    1085 0,001843 kiusallinen (adjektiivi)
+   4987    1085 0,001843 kävely (substantiivi)
+   4988    1084 0,001842 kertaakaan (adverbi)
+   4989    1084 0,001842 kuntaliitos (substantiivi)
+   4990    1084 0,001842 pikkupoika (substantiivi)
+   4991    1083 0,001840 uusiminen (substantiivi)
+   4992    1083 0,001840 vastalause (substantiivi)
+   4993    1082 0,001838 ikäihminen (substantiivi)
+   4994    1082 0,001838 lemmikki (substantiivi)
+   4995    1081 0,001836 alma (erisnimi)
+   4996    1080 0,001835 koponen (erisnimi)
+   4997    1080 0,001835 porkkana (substantiivi)
+   4998    1080 0,001835 syrjä (substantiivi)
+   4999    1079 0,001833 eurooppalainen (substantiivi)
+   5000    1079 0,001833 kansanpuolue (substantiivi)
+   5001    1079 0,001833 silminnäkijä (substantiivi)
+   5002    1078 0,001831 komeasti (adverbi)
+   5003    1077 0,001830 alamäki (erisnimi)
+   5004    1077 0,001830 komisario (substantiivi)
+   5005    1077 0,001830 kuusisto (erisnimi)
+   5006    1077 0,001830 muistutus (substantiivi)
+   5007    1077 0,001830 saavuttaminen (substantiivi)
+   5008    1077 0,001830 suomentaa (verbi)
+   5009    1076 0,001828 suvi-anne (erisnimi)
+   5010    1075 0,001826 avaruus (substantiivi)
+   5011    1075 0,001826 etäinen (adjektiivi)
+   5012    1075 0,001826 havitella (verbi)
+   5013    1075 0,001826 hengellinen (adjektiivi)
+   5014    1075 0,001826 hermo (substantiivi)
+   5015    1075 0,001826 kansa (erisnimi)
+   5016    1075 0,001826 keihäs (substantiivi)
+   5017    1075 0,001826 koolla (adverbi)
+   5018    1074 0,001825 kummola (erisnimi)
+   5019    1074 0,001825 stalin (erisnimi)
+   5020    1074 0,001825 todistus (substantiivi)
+   5021    1073 0,001823 päämies (substantiivi)
+   5022    1072 0,001821 erlund (erisnimi)
+   5023    1072 0,001821 poikki (adverbi)
+   5024    1072 0,001821 tolvanen (erisnimi)
+   5025    1072 0,001821 venäjä (substantiivi)
+   5026    1071 0,001820 ammattitaitoinen (adjektiivi)
+   5027    1071 0,001820 muurame (erisnimi)
+   5028    1071 0,001820 näky (substantiivi)
+   5029    1071 0,001820 rauta (substantiivi)
+   5030    1071 0,001820 senaatti (substantiivi)
+   5031    1071 0,001820 tippua (verbi)
+   5032    1070 0,001818 aina_kun (konjunktio)
+   5033    1070 0,001818 blues (substantiivi)
+   5034    1070 0,001818 virheellinen (adjektiivi)
+   5035    1069 0,001816 huoneisto (substantiivi)
+   5036    1069 0,001816 hämmästellä (verbi)
+   5037    1069 0,001816 pohdiskella (verbi)
+   5038    1069 0,001816 romanttinen (adjektiivi)
+   5039    1069 0,001816 tervo (erisnimi)
+   5040    1069 0,001816 tukkia (verbi)
+   5041    1068 0,001814 linjata (verbi)
+   5042    1068 0,001814 rasti (substantiivi)
+   5043    1068 0,001814 taidemuseo (substantiivi)
+   5044    1067 0,001813 jalankulkija (substantiivi)
+   5045    1067 0,001813 jarno (erisnimi)
+   5046    1067 0,001813 kilpailukykyinen (adjektiivi)
+   5047    1067 0,001813 kymmenisen (lukusana)
+   5048    1067 0,001813 rauhanprosessi (substantiivi)
+   5049    1067 0,001813 risti (substantiivi)
+   5050    1067 0,001813 virpi (erisnimi)
+   5051    1066 0,001811 kuvataiteilija (substantiivi)
+   5052    1066 0,001811 osastopäällikkö (substantiivi)
+   5053    1065 0,001809 eteläosa (substantiivi)
+   5054    1065 0,001809 vastaanottokeskus (substantiivi)
+   5055    1064 0,001808 parveke (substantiivi)
+   5056    1064 0,001808 taideteos (substantiivi)
+   5057    1063 0,001806 sijainen (substantiivi)
+   5058    1062 0,001804 groznyi (erisnimi)
+   5059    1062 0,001804 julki (adverbi)
+   5060    1062 0,001804 kenia (erisnimi)
+   5061    1062 0,001804 mönkäre (erisnimi)
+   5062    1062 0,001804 takki (substantiivi)
+   5063    1061 0,001803 fysiikka (substantiivi)
+   5064    1061 0,001803 uotila (erisnimi)
+   5065    1061 0,001803 vasta_sitten (adverbi)
+   5066    1060 0,001801 agentti (substantiivi)
+   5067    1060 0,001801 syrjäytyminen (substantiivi)
+   5068    1059 0,001799 hakkuu (substantiivi)
+   5069    1059 0,001799 honka (erisnimi)
+   5070    1059 0,001799 povata (verbi)
+   5071    1059 0,001799 syöksyä (verbi)
+   5072    1058 0,001797 humala (substantiivi)
+   5073    1057 0,001796 luja (adjektiivi)
+   5074    1057 0,001796 näet (adverbi)
+   5075    1057 0,001796 pyöreä (adjektiivi)
+   5076    1056 0,001794 perustaja (substantiivi)
+   5077    1056 0,001794 rohkeasti (adverbi)
+   5078    1056 0,001794 tiepiiri (substantiivi)
+   5079    1055 0,001792 hissi (substantiivi)
+   5080    1055 0,001792 israelilainen (adjektiivi)
+   5081    1055 0,001792 jackson (erisnimi)
+   5082    1055 0,001792 roikkua (verbi)
+   5083    1055 0,001792 vaurio (substantiivi)
+   5084    1054 0,001791 arvosana (substantiivi)
+   5085    1054 0,001791 lars (erisnimi)
+   5086    1054 0,001791 maatalousministeri (substantiivi)
+   5087    1054 0,001791 takavarikoida (verbi)
+   5088    1054 0,001791 tätä_nykyä (adverbi)
+   5089    1054 0,001791 ylijäämä (substantiivi)
+   5090    1053 0,001789 jarruttaa (verbi)
+   5091    1053 0,001789 musiikillinen (adjektiivi)
+   5092    1053 0,001789 vaalitulos (substantiivi)
+   5093    1052 0,001787 manchester (erisnimi)
+   5094    1052 0,001787 varttua (verbi)
+   5095    1051 0,001786 ben (erisnimi)
+   5096    1051 0,001786 nevalainen (erisnimi)
+   5097    1051 0,001786 tuleminen (substantiivi)
+   5098    1051 0,001786 tähänastinen (adjektiivi)
+   5099    1050 0,001784 kalliomäki (erisnimi)
+   5100    1050 0,001784 kasata (verbi)
+   5101    1050 0,001784 köln (erisnimi)
+   5102    1049 0,001782 kertoma (substantiivi)
+   5103    1049 0,001782 myrkky (substantiivi)
+   5104    1049 0,001782 nappi (substantiivi)
+   5105    1049 0,001782 tiivistyä (verbi)
+   5106    1049 0,001782 tilastokeskus (erisnimi)
+   5107    1048 0,001780 itsenäisyyspäivä (substantiivi)
+   5108    1048 0,001780 kotisivu (substantiivi)
+   5109    1048 0,001780 suunnistus (substantiivi)
+   5110    1048 0,001780 symboli (substantiivi)
+   5111    1048 0,001780 äänestysprosentti (substantiivi)
+   5112    1047 0,001779 huolellisesti (adverbi)
+   5113    1047 0,001779 tietoverkko (substantiivi)
+   5114    1046 0,001777 pohjoismaa (substantiivi)
+   5115    1045 0,001775 heikosti (adverbi)
+   5116    1045 0,001775 jumalanpalvelus (substantiivi)
+   5117    1045 0,001775 perin (adverbi)
+   5118    1045 0,001775 vanhentua (verbi)
+   5119    1044 0,001774 kohtalokas (adjektiivi)
+   5120    1044 0,001774 täsmentää (verbi)
+   5121    1043 0,001772 florida (erisnimi)
+   5122    1043 0,001772 väistyä (verbi)
+   5123    1042 0,001770 makkonen (erisnimi)
+   5124    1042 0,001770 siinä_mielessä (adverbi)
+   5125    1042 0,001770 ylijohtaja (substantiivi)
+   5126    1041 0,001769 artisti (substantiivi)
+   5127    1041 0,001769 imeä (verbi)
+   5128    1041 0,001769 kateissa (adverbi)
+   5129    1041 0,001769 nauha (substantiivi)
+   5130    1041 0,001769 parisataa (lukusana)
+   5131    1041 0,001769 tarjoutua (verbi)
+   5132    1040 0,001767 puutteellinen (adjektiivi)
+   5133    1039 0,001765 kauppahinta (substantiivi)
+   5134    1039 0,001765 rakennusala (substantiivi)
+   5135    1039 0,001765 toimitila (substantiivi)
+   5136    1038 0,001763 hävittäjä (substantiivi)
+   5137    1038 0,001763 kongo (erisnimi)
+   5138    1038 0,001763 sitoutuminen (substantiivi)
+   5139    1037 0,001762 aseellinen (adjektiivi)
+   5140    1037 0,001762 kirjain (substantiivi)
+   5141    1037 0,001762 korruptio (substantiivi)
+   5142    1036 0,001760 ajella (verbi)
+   5143    1036 0,001760 asutus (substantiivi)
+   5144    1036 0,001760 sandell (erisnimi)
+   5145    1036 0,001760 talteen (adverbi)
+   5146    1035 0,001758 diplomaatti (substantiivi)
+   5147    1035 0,001758 edesmennä (verbi)
+   5148    1035 0,001758 karu (adjektiivi)
+   5149    1035 0,001758 salla (erisnimi)
+   5150    1035 0,001758 tylsä (adjektiivi)
+   5151    1035 0,001758 viestittää (verbi)
+   5152    1035 0,001758 viljely (substantiivi)
+   5153    1034 0,001757 loputon (adjektiivi)
+   5154    1034 0,001757 punnita (verbi)
+   5155    1034 0,001757 sammuttaa (verbi)
+   5156    1034 0,001757 vastakkain (adverbi)
+   5157    1033 0,001755 vesilaitos (substantiivi)
+   5158    1032 0,001753 kypärä (substantiivi)
+   5159    1032 0,001753 räty (erisnimi)
+   5160    1032 0,001753 vakinainen (adjektiivi)
+   5161    1031 0,001752 akateeminen (adjektiivi)
+   5162    1031 0,001752 daniel (erisnimi)
+   5163    1031 0,001752 etyjin (erisnimi)
+   5164    1031 0,001752 ilmari (erisnimi)
+   5165    1031 0,001752 muodostaminen (substantiivi)
+   5166    1031 0,001752 niina (erisnimi)
+   5167    1031 0,001752 tyytymätön (adjektiivi)
+   5168    1031 0,001752 viisaus (substantiivi)
+   5169    1030 0,001750 di (lyhenne)
+   5170    1030 0,001750 hämmentää (verbi)
+   5171    1030 0,001750 myöntäminen (substantiivi)
+   5172    1030 0,001750 pariin (prepositio)
+   5173    1030 0,001750 satatuhatta (lukusana)
+   5174    1030 0,001750 valtionyhtiö (substantiivi)
+   5175    1030 0,001750 ystävyys (substantiivi)
+   5176    1029 0,001748 haapajärvi (erisnimi)
+   5177    1029 0,001748 kivi (erisnimi)
+   5178    1029 0,001748 maustaa (verbi)
+   5179    1029 0,001748 tarkoin (adverbi)
+   5180    1028 0,001746 asuinalue (substantiivi)
+   5181    1028 0,001746 eversti (substantiivi)
+   5182    1028 0,001746 pääasia (substantiivi)
+   5183    1028 0,001746 rauhala (erisnimi)
+   5184    1028 0,001746 rupla (substantiivi)
+   5185    1028 0,001746 vastaavanlainen (adjektiivi)
+   5186    1027 0,001745 ainut (adjektiivi)
+   5187    1027 0,001745 ajokortti (substantiivi)
+   5188    1027 0,001745 saman_tien (adverbi)
+   5189    1027 0,001745 takuu (substantiivi)
+   5190    1026 0,001743 abdullah (erisnimi)
+   5191    1025 0,001741 jollainen (adjektiivi)
+   5192    1025 0,001741 murre (substantiivi)
+   5193    1025 0,001741 puhelimitse (adverbi)
+   5194    1025 0,001741 puolivälierä (substantiivi)
+   5195    1025 0,001741 vääntö (substantiivi)
+   5196    1024 0,001740 berg (erisnimi)
+   5197    1024 0,001740 jonottaa (verbi)
+   5198    1024 0,001740 kansalaisopisto (substantiivi)
+   5199    1024 0,001740 vaikute (substantiivi)
+   5200    1023 0,001738 kierrellä (verbi)
+   5201    1023 0,001738 koru (substantiivi)
+   5202    1023 0,001738 partanen (erisnimi)
+   5203    1023 0,001738 pinta-ala (substantiivi)
+   5204    1022 0,001736 geeni (substantiivi)
+   5205    1022 0,001736 kosketus (substantiivi)
+   5206    1022 0,001736 käytös (substantiivi)
+   5207    1022 0,001736 sisarus (substantiivi)
+   5208    1022 0,001736 tyhmä (adjektiivi)
+   5209    1022 0,001736 vireillä (adverbi)
+   5210    1021 0,001735 käsin (prepositio)
+   5211    1021 0,001735 mantere (substantiivi)
+   5212    1020 0,001733 aikaisintaan (adverbi)
+   5213    1020 0,001733 hajottaa (verbi)
+   5214    1020 0,001733 ilmasto (substantiivi)
+   5215    1020 0,001733 lehtola (erisnimi)
+   5216    1020 0,001733 niinikään (adverbi)
+   5217    1020 0,001733 toimipiste (substantiivi)
+   5218    1020 0,001733 väsymys (substantiivi)
+   5219    1019 0,001731 taival (substantiivi)
+   5220    1019 0,001731 ulf (erisnimi)
+   5221    1018 0,001729 kuivuus (substantiivi)
+   5222    1018 0,001729 nurmijärvi (erisnimi)
+   5223    1018 0,001729 rahoittaja (substantiivi)
+   5224    1018 0,001729 tartunta (substantiivi)
+   5225    1018 0,001729 teknisesti (adverbi)
+   5226    1018 0,001729 valottaa (verbi)
+   5227    1017 0,001728 hyvissä_ajoin (adverbi)
+   5228    1017 0,001728 kaventaa (verbi)
+   5229    1017 0,001728 loppuminen (substantiivi)
+   5230    1016 0,001726 kaksinkertaistua (verbi)
+   5231    1016 0,001726 lähitulevaisuus (substantiivi)
+   5232    1016 0,001726 pe (lyhenne)
+   5233    1016 0,001726 sopiminen (substantiivi)
+   5234    1016 0,001726 tietoisuus (substantiivi)
+   5235    1015 0,001724 erikoisuus (substantiivi)
+   5236    1015 0,001724 espanjalainen (substantiivi)
+   5237    1014 0,001723 juontaa (verbi)
+   5238    1014 0,001723 nojata (verbi)
+   5239    1014 0,001723 pihtipudas (erisnimi)
+   5240    1014 0,001723 puhakka (erisnimi)
+   5241    1013 0,001721 albright (erisnimi)
+   5242    1013 0,001721 ehjä (adjektiivi)
+   5243    1013 0,001721 hallitusneuvottelu (substantiivi)
+   5244    1013 0,001721 hitler (erisnimi)
+   5245    1013 0,001721 kiihtelysvaara (erisnimi)
+   5246    1013 0,001721 liverpool (erisnimi)
+   5247    1013 0,001721 maksa (substantiivi)
+   5248    1013 0,001721 tl (lyhenne)
+   5249    1011 0,001718 tiedostaa (verbi)
+   5250    1011 0,001718 vainaja (substantiivi)
+   5251    1010 0,001716 pieksämäki (erisnimi)
+   5252    1009 0,001714 kierrätys (substantiivi)
+   5253    1009 0,001714 kultamitali (substantiivi)
+   5254    1009 0,001714 lämmetä (verbi)
+   5255    1009 0,001714 satunnainen (adjektiivi)
+   5256    1008 0,001712 colorado (erisnimi)
+   5257    1008 0,001712 kaivo (substantiivi)
+   5258    1008 0,001712 koskela (erisnimi)
+   5259    1008 0,001712 taatusti (adverbi)
+   5260    1007 0,001711 evakuoida (verbi)
+   5261    1007 0,001711 hyödyllinen (adjektiivi)
+   5262    1007 0,001711 kurki (erisnimi)
+   5263    1007 0,001711 palautua (verbi)
+   5264    1007 0,001711 piilo (substantiivi)
+   5265    1007 0,001711 varuskunta (substantiivi)
+   5266    1006 0,001709 epäkohta (substantiivi)
+   5267    1006 0,001709 ihmissuhde (substantiivi)
+   5268    1006 0,001709 takaisku (substantiivi)
+   5269    1006 0,001709 valkoinen (erisnimi)
+   5270    1005 0,001707 haukkua (verbi)
+   5271    1005 0,001707 tervehtiä (verbi)
+   5272    1004 0,001706 luovuus (substantiivi)
+   5273    1004 0,001706 myöhäinen (adjektiivi)
+   5274    1004 0,001706 sivuun (adverbi)
+   5275    1003 0,001704 haava (substantiivi)
+   5276    1003 0,001704 harte (substantiivi)
+   5277    1003 0,001704 pelinjohtaja (substantiivi)
+   5278    1003 0,001704 tul (lyhenne)
+   5279    1002 0,001702 jäsenvaltio (substantiivi)
+   5280    1002 0,001702 varuste (substantiivi)
+   5281    1001 0,001701 kaappi (substantiivi)
+   5282    1001 0,001701 olennaisesti (adverbi)
+   5283    1001 0,001701 tennis (substantiivi)
+   5284    1001 0,001701 voimaantulla (verbi)
+   5285    1000 0,001699 eksyä (verbi)
+   5286    1000 0,001699 hietanen (erisnimi)
+   5287    1000 0,001699 lihas (substantiivi)
+   5288    1000 0,001699 mylly (substantiivi)
+   5289    1000 0,001699 pidätys (substantiivi)
+   5290    1000 0,001699 semmoinen (adjektiivi)
+   5291     999 0,001697 ltk (lyhenne)
+   5292     999 0,001697 lundh (erisnimi)
+   5293     999 0,001697 rajoittua (verbi)
+   5294     999 0,001697 syntymäpäivä (substantiivi)
+   5295     999 0,001697 talouskriisi (substantiivi)
+   5296     998 0,001695 lähiö (substantiivi)
+   5297     998 0,001695 maailma (erisnimi)
+   5298     997 0,001694 intohimo (substantiivi)
+   5299     997 0,001694 laukaista (verbi)
+   5300     997 0,001694 maila (substantiivi)
+   5301     997 0,001694 päinvastainen (adjektiivi)
+   5302     997 0,001694 tammi (substantiivi)
+   5303     996 0,001692 analyysi (substantiivi)
+   5304     996 0,001692 areena (erisnimi)
+   5305     996 0,001692 huhtamäki (erisnimi)
+   5306     996 0,001692 mark (erisnimi)
+   5307     996 0,001692 mieluisa (adjektiivi)
+   5308     996 0,001692 pieli (substantiivi)
+   5309     996 0,001692 viitisen (lukusana)
+   5310     995 0,001690 haitallinen (adjektiivi)
+   5311     995 0,001690 kauppi (erisnimi)
+   5312     995 0,001690 kempele (erisnimi)
+   5313     995 0,001690 thaimaa (erisnimi)
+   5314     994 0,001689 belgialainen (adjektiivi)
+   5315     994 0,001689 laurila (erisnimi)
+   5316     994 0,001689 rauhoittua (verbi)
+   5317     994 0,001689 tarkastelu (substantiivi)
+   5318     993 0,001687 painos (substantiivi)
+   5319     993 0,001687 vierailija (substantiivi)
+   5320     992 0,001685 pakkaus (substantiivi)
+   5321     992 0,001685 siunata (verbi)
+   5322     992 0,001685 tuulikki (erisnimi)
+   5323     992 0,001685 vastuullinen (adjektiivi)
+   5324     991 0,001684 alusta_alkaen (adverbi)
+   5325     991 0,001684 askele (substantiivi)
+   5326     991 0,001684 myyminen (substantiivi)
+   5327     991 0,001684 persoonallinen (adjektiivi)
+   5328     991 0,001684 saatava (substantiivi)
+   5329     990 0,001682 asuntolaina (substantiivi)
+   5330     990 0,001682 esite (substantiivi)
+   5331     990 0,001682 nuori (erisnimi)
+   5332     989 0,001680 hautajaiset (substantiivi)
+   5333     989 0,001680 konservatiivi (substantiivi)
+   5334     989 0,001680 potea (verbi)
+   5335     989 0,001680 sisälle (adverbi)
+   5336     989 0,001680 teollisuusmaa (substantiivi)
+   5337     988 0,001679 kuntaliitto (erisnimi)
+   5338     988 0,001679 naama (substantiivi)
+   5339     988 0,001679 simola (erisnimi)
+   5340     988 0,001679 taloyhtiö (substantiivi)
+   5341     987 0,001677 edustus (substantiivi)
+   5342     987 0,001677 opetusministeri (substantiivi)
+   5343     986 0,001675 ennestään (adverbi)
+   5344     986 0,001675 pelikielto (substantiivi)
+   5345     986 0,001675 vaikutelma (substantiivi)
+   5346     985 0,001673 haapala (erisnimi)
+   5347     985 0,001673 jane (erisnimi)
+   5348     985 0,001673 kontio (erisnimi)
+   5349     985 0,001673 mieltää (verbi)
+   5350     985 0,001673 motivaatio (substantiivi)
+   5351     985 0,001673 pihapiiri (substantiivi)
+   5352     985 0,001673 pikkuinen (adjektiivi)
+   5353     985 0,001673 suoranainen (adjektiivi)
+   5354     983 0,001670 grönholm (erisnimi)
+   5355     983 0,001670 juoksija (substantiivi)
+   5356     983 0,001670 käskeä (verbi)
+   5357     983 0,001670 skandaali (substantiivi)
+   5358     983 0,001670 virkailija (substantiivi)
+   5359     982 0,001668 jollei (verbi)
+   5360     982 0,001668 keskiaika (substantiivi)
+   5361     982 0,001668 keskisuuri (adjektiivi)
+   5362     982 0,001668 poika (erisnimi)
+   5363     982 0,001668 voittaminen (substantiivi)
+   5364     982 0,001668 vuodenaika (substantiivi)
+   5365     981 0,001667 kannalla (prepositio)
+   5366     981 0,001667 kiivetä (verbi)
+   5367     981 0,001667 maanosa (substantiivi)
+   5368     981 0,001667 mars (erisnimi)
+   5369     981 0,001667 puoluehallitus (substantiivi)
+   5370     981 0,001667 rento (adjektiivi)
+   5371     981 0,001667 stefan (erisnimi)
+   5372     981 0,001667 valo (erisnimi)
+   5373     980 0,001665 epäilemättä (adverbi)
+   5374     980 0,001665 lähelle (adverbi)
+   5375     980 0,001665 mauste (substantiivi)
+   5376     980 0,001665 työllistäminen (substantiivi)
+   5377     979 0,001663 aurinkoinen (adjektiivi)
+   5378     979 0,001663 osakeyhtiö (substantiivi)
+   5379     979 0,001663 sanella (verbi)
+   5380     979 0,001663 tuupovaara (erisnimi)
+   5381     979 0,001663 upottaa (verbi)
+   5382     978 0,001662 juri (erisnimi)
+   5383     978 0,001662 oleellisesti (adverbi)
+   5384     978 0,001662 trendi (substantiivi)
+   5385     978 0,001662 vaurioitua (verbi)
+   5386     977 0,001660 kellari (substantiivi)
+   5387     977 0,001660 säädös (substantiivi)
+   5388     977 0,001660 yleissitovuus (substantiivi)
+   5389     976 0,001658 jakelu (substantiivi)
+   5390     976 0,001658 rautiainen (erisnimi)
+   5391     976 0,001658 rissanen (erisnimi)
+   5392     976 0,001658 romahdus (substantiivi)
+   5393     976 0,001658 salata (verbi)
+   5394     976 0,001658 tehostaminen (substantiivi)
+   5395     975 0,001656 harkimo (erisnimi)
+   5396     975 0,001656 kaapata (verbi)
+   5397     975 0,001656 kokoomuslainen (adjektiivi)
+   5398     975 0,001656 langeta (verbi)
+   5399     975 0,001656 roska (substantiivi)
+   5400     974 0,001655 lelu (substantiivi)
+   5401     974 0,001655 puukko (substantiivi)
+   5402     974 0,001655 ruma (adjektiivi)
+   5403     973 0,001653 kerääntyä (verbi)
+   5404     973 0,001653 löytö (substantiivi)
+   5405     973 0,001653 olympiavoittaja (substantiivi)
+   5406     973 0,001653 pankinjohtaja (substantiivi)
+   5407     973 0,001653 ylitys (substantiivi)
+   5408     972 0,001651 kandidaatti (substantiivi)
+   5409     972 0,001651 läpimurto (substantiivi)
+   5410     971 0,001650 kaaos (substantiivi)
+   5411     971 0,001650 kate (substantiivi)
+   5412     971 0,001650 mirkku (erisnimi)
+   5413     971 0,001650 sosiaalidemokraattinen (adjektiivi)
+   5414     971 0,001650 turkulainen (erisnimi)
+   5415     971 0,001650 vahingoittaa (verbi)
+   5416     970 0,001648 ennenaikainen (adjektiivi)
+   5417     970 0,001648 kohottaa (verbi)
+   5418     970 0,001648 lanka (substantiivi)
+   5419     970 0,001648 mario (erisnimi)
+   5420     970 0,001648 talouselämä (substantiivi)
+   5421     970 0,001648 tutkimustulos (substantiivi)
+   5422     970 0,001648 vieri (substantiivi)
+   5423     969 0,001646 ensimmäiseksi (adverbi)
+   5424     969 0,001646 kuusela (erisnimi)
+   5425     969 0,001646 ministerineuvosto (substantiivi)
+   5426     969 0,001646 nato-jäsenyys (erisnimi)
+   5427     969 0,001646 palvelukeskus (substantiivi)
+   5428     969 0,001646 rahoituserä (substantiivi)
+   5429     969 0,001646 rainer (erisnimi)
+   5430     969 0,001646 ratkaisevasti (adverbi)
+   5431     969 0,001646 ravi (substantiivi)
+   5432     969 0,001646 sitkeä (adjektiivi)
+   5433     969 0,001646 suostumus (substantiivi)
+   5434     968 0,001645 housut (substantiivi)
+   5435     968 0,001645 möller (erisnimi)
+   5436     968 0,001645 yrittäminen (substantiivi)
+   5437     967 0,001643 coulthard (erisnimi)
+   5438     967 0,001643 etiopia (erisnimi)
+   5439     967 0,001643 kokko (erisnimi)
+   5440     967 0,001643 sarajevo (erisnimi)
+   5441     966 0,001641 automaatti (substantiivi)
+   5442     966 0,001641 hehkuttaa (verbi)
+   5443     966 0,001641 katkera (adjektiivi)
+   5444     966 0,001641 palo (erisnimi)
+   5445     966 0,001641 pohjoispuoli (substantiivi)
+   5446     966 0,001641 urheiluseura (substantiivi)
+   5447     966 0,001641 vanheta (verbi)
+   5448     966 0,001641 yläpuolella (prepositio)
+   5449     965 0,001639 ahdistaa (verbi)
+   5450     965 0,001639 suomalaisuus (substantiivi)
+   5451     965 0,001639 terveellinen (adjektiivi)
+   5452     964 0,001638 asuinpaikka (substantiivi)
+   5453     964 0,001638 ekologinen (adjektiivi)
+   5454     964 0,001638 kesäinen (adjektiivi)
+   5455     964 0,001638 prix (erisnimi)
+   5456     964 0,001638 äärellä (prepositio)
+   5457     963 0,001636 harry (erisnimi)
+   5458     963 0,001636 kinkku (substantiivi)
+   5459     963 0,001636 pesäpallo (substantiivi)
+   5460     963 0,001636 varsinkin_kun (konjunktio)
+   5461     962 0,001634 aidosti (adverbi)
+   5462     962 0,001634 kilpailuvirasto (substantiivi)
+   5463     962 0,001634 tuotekehitys (substantiivi)
+   5464     961 0,001633 jordania (erisnimi)
+   5465     961 0,001633 suuntaus (substantiivi)
+   5466     960 0,001631 elokuvateatteri (substantiivi)
+   5467     960 0,001631 lohja (erisnimi)
+   5468     960 0,001631 mansikka (substantiivi)
+   5469     960 0,001631 samaranch (erisnimi)
+   5470     959 0,001629 holkeri (erisnimi)
+   5471     959 0,001629 mäntylä (erisnimi)
+   5472     959 0,001629 terveiset (substantiivi)
+   5473     959 0,001629 turkkilainen (adjektiivi)
+   5474     959 0,001629 ymmärrys (substantiivi)
+   5475     958 0,001628 alkukesä (substantiivi)
+   5476     958 0,001628 kaukaa (adverbi)
+   5477     957 0,001626 agenda (erisnimi)
+   5478     957 0,001626 biologinen (adjektiivi)
+   5479     957 0,001626 ensinnä (adverbi)
+   5480     957 0,001626 juan (erisnimi)
+   5481     957 0,001626 tiimi (substantiivi)
+   5482     956 0,001624 etyj (erisnimi)
+   5483     956 0,001624 oikeudenmukaisuus (substantiivi)
+   5484     956 0,001624 poisto (substantiivi)
+   5485     955 0,001622 intressi (substantiivi)
+   5486     955 0,001622 kuninkaallinen (adjektiivi)
+   5487     955 0,001622 pyrintö (erisnimi)
+   5488     955 0,001622 soini (erisnimi)
+   5489     954 0,001621 ensisijainen (adjektiivi)
+   5490     954 0,001621 korkealla (adverbi)
+   5491     954 0,001621 tasapainoinen (adjektiivi)
+   5492     954 0,001621 tuoksu (substantiivi)
+   5493     954 0,001621 uhrata (verbi)
+   5494     953 0,001619 holopainen (erisnimi)
+   5495     953 0,001619 kerroin (substantiivi)
+   5496     953 0,001619 liekki (substantiivi)
+   5497     953 0,001619 pääsarja (substantiivi)
+   5498     953 0,001619 tyystin (adverbi)
+   5499     952 0,001617 fyysisesti (adverbi)
+   5500     951 0,001616 ennenkuin (konjunktio)
+   5501     951 0,001616 lähipäivä (substantiivi)
+   5502     951 0,001616 tapani (erisnimi)
+   5503     950 0,001614 kide (substantiivi)
+   5504     950 0,001614 kouluttaja (substantiivi)
+   5505     950 0,001614 tähti (erisnimi)
+   5506     950 0,001614 viime_kädessä (adverbi)
+   5507     949 0,001612 budjettiesitys (substantiivi)
+   5508     949 0,001612 mäkihyppy (substantiivi)
+   5509     949 0,001612 puoluejohtaja (substantiivi)
+   5510     949 0,001612 serbia (substantiivi)
+   5511     949 0,001612 verinen (adjektiivi)
+   5512     949 0,001612 wahlroos (erisnimi)
+   5513     948 0,001611 jättäminen (substantiivi)
+   5514     948 0,001611 melkoisesti (adverbi)
+   5515     948 0,001611 pystyssä (adverbi)
+   5516     948 0,001611 väistämättä (adverbi)
+   5517     947 0,001609 kaivos (substantiivi)
+   5518     947 0,001609 kalenteri (substantiivi)
+   5519     947 0,001609 teija (erisnimi)
+   5520     946 0,001607 heikkeneminen (substantiivi)
+   5521     946 0,001607 mänty (substantiivi)
+   5522     946 0,001607 olkapää (substantiivi)
+   5523     946 0,001607 pitkäaikaistyötön (substantiivi)
+   5524     946 0,001607 sairasloma (substantiivi)
+   5525     945 0,001605 nyman (erisnimi)
+   5526     945 0,001605 ostovoima (substantiivi)
+   5527     945 0,001605 pikkuhiljaa (adverbi)
+   5528     945 0,001605 putoaminen (substantiivi)
+   5529     945 0,001605 rkl (lyhenne)
+   5530     945 0,001605 vatsa (substantiivi)
+   5531     945 0,001605 veli (erisnimi)
+   5532     945 0,001605 ystävällinen (adjektiivi)
+   5533     944 0,001604 piitata (verbi)
+   5534     944 0,001604 taipale (erisnimi)
+   5535     944 0,001604 tietoisesti (adverbi)
+   5536     944 0,001604 tämänhetkinen (adjektiivi)
+   5537     944 0,001604 vaihtoehtoinen (adjektiivi)
+   5538     944 0,001604 ylitarkastaja (substantiivi)
+   5539     943 0,001602 ilmarinen (erisnimi)
+   5540     943 0,001602 kaavoittaa (verbi)
+   5541     943 0,001602 parisuhde (substantiivi)
+   5542     943 0,001602 rakastua (verbi)
+   5543     943 0,001602 sen_paremmin (adverbi)
+   5544     943 0,001602 tosiaan (adverbi)
+   5545     943 0,001602 työpaja (substantiivi)
+   5546     942 0,001600 mervi (erisnimi)
+   5547     942 0,001600 novelli (substantiivi)
+   5548     942 0,001600 penttinen (erisnimi)
+   5549     942 0,001600 portugali (erisnimi)
+   5550     942 0,001600 päätösvalta (substantiivi)
+   5551     942 0,001600 vapaaehtoisesti (adverbi)
+   5552     941 0,001599 katselmus (substantiivi)
+   5553     941 0,001599 kulttuuriministeri (substantiivi)
+   5554     941 0,001599 lentopallo (substantiivi)
+   5555     941 0,001599 synnytys (substantiivi)
+   5556     941 0,001599 tasokas (adjektiivi)
+   5557     940 0,001597 ajaja (substantiivi)
+   5558     940 0,001597 juusto (substantiivi)
+   5559     940 0,001597 kaari (substantiivi)
+   5560     940 0,001597 lääketieteellinen (adjektiivi)
+   5561     940 0,001597 mielekäs (adjektiivi)
+   5562     940 0,001597 osakkeenomistaja (substantiivi)
+   5563     940 0,001597 valtakunnallisesti (adverbi)
+   5564     939 0,001595 likainen (adjektiivi)
+   5565     939 0,001595 vahingonkorvaus (substantiivi)
+   5566     938 0,001594 etumatka (substantiivi)
+   5567     938 0,001594 kierto (substantiivi)
+   5568     938 0,001594 meininki (substantiivi)
+   5569     938 0,001594 paisua (verbi)
+   5570     938 0,001594 sammua (verbi)
+   5571     938 0,001594 äänioikeutettu (substantiivi)
+   5572     938 0,001594 äärimmäinen (adjektiivi)
+   5573     937 0,001592 eno (erisnimi)
+   5574     937 0,001592 luostari (substantiivi)
+   5575     937 0,001592 pietilä (erisnimi)
+   5576     937 0,001592 rinne (erisnimi)
+   5577     937 0,001592 uusiutua (verbi)
+   5578     936 0,001590 fischer (erisnimi)
+   5579     936 0,001590 käännös (substantiivi)
+   5580     936 0,001590 rutiini (substantiivi)
+   5581     936 0,001590 uusivuosi (substantiivi)
+   5582     936 0,001590 valvoja (substantiivi)
+   5583     935 0,001588 intialainen (adjektiivi)
+   5584     935 0,001588 julkilausuma (substantiivi)
+   5585     935 0,001588 länsi (erisnimi)
+   5586     934 0,001587 eteläpuoli (substantiivi)
+   5587     934 0,001587 lounas (substantiivi)
+   5588     934 0,001587 murskata (verbi)
+   5589     934 0,001587 taannoin (adverbi)
+   5590     934 0,001587 tyyppinen (adjektiivi)
+   5591     934 0,001587 veturi (substantiivi)
+   5592     934 0,001587 vuoropuhelu (substantiivi)
+   5593     933 0,001585 eksoottinen (adjektiivi)
+   5594     933 0,001585 elvis (erisnimi)
+   5595     933 0,001585 heinä (substantiivi)
+   5596     933 0,001585 kirves (erisnimi)
+   5597     933 0,001585 puhuminen (substantiivi)
+   5598     932 0,001583 henri (erisnimi)
+   5599     932 0,001583 keskisuomalainen (erisnimi)
+   5600     932 0,001583 liimatainen (erisnimi)
+   5601     932 0,001583 näkyvissä (adverbi)
+   5602     932 0,001583 ryöstää (verbi)
+   5603     932 0,001583 suotuisa (adjektiivi)
+   5604     931 0,001582 kokoon (adverbi)
+   5605     931 0,001582 vastaisuus (substantiivi)
+   5606     930 0,001580 elektroniikka (substantiivi)
+   5607     930 0,001580 etsiminen (substantiivi)
+   5608     930 0,001580 keskinen (erisnimi)
+   5609     930 0,001580 kolumbia (erisnimi)
+   5610     930 0,001580 kuivua (verbi)
+   5611     930 0,001580 pastori (substantiivi)
+   5612     930 0,001580 tulkki (substantiivi)
+   5613     930 0,001580 uupua (verbi)
+   5614     930 0,001580 veikata (verbi)
+   5615     929 0,001578 jälkikäteen (adverbi)
+   5616     929 0,001578 kantelu (substantiivi)
+   5617     929 0,001578 kantola (erisnimi)
+   5618     929 0,001578 päätalo (erisnimi)
+   5619     929 0,001578 summata (verbi)
+   5620     928 0,001577 eriksson (erisnimi)
+   5621     928 0,001577 hakeminen (substantiivi)
+   5622     928 0,001577 halme (erisnimi)
+   5623     928 0,001577 louis (erisnimi)
+   5624     928 0,001577 lupailla (verbi)
+   5625     928 0,001577 saastua (verbi)
+   5626     928 0,001577 tuusula (erisnimi)
+   5627     928 0,001577 uimari (substantiivi)
+   5628     928 0,001577 viileä (adjektiivi)
+   5629     927 0,001575 ikävä (substantiivi)
+   5630     927 0,001575 innokkaasti (adverbi)
+   5631     927 0,001575 poissaolo (substantiivi)
+   5632     926 0,001573 muotokuva (substantiivi)
+   5633     926 0,001573 pattijoki (erisnimi)
+   5634     926 0,001573 tiski (substantiivi)
+   5635     925 0,001571 erehtyä (verbi)
+   5636     925 0,001571 kukkaro (substantiivi)
+   5637     925 0,001571 päällimmäinen (adjektiivi)
+   5638     925 0,001571 riisua (verbi)
+   5639     924 0,001570 huuto (substantiivi)
+   5640     924 0,001570 säestää (verbi)
+   5641     923 0,001568 aleksandr (erisnimi)
+   5642     923 0,001568 bach (erisnimi)
+   5643     923 0,001568 liikennöidä (verbi)
+   5644     923 0,001568 protesti (substantiivi)
+   5645     923 0,001568 ratti (substantiivi)
+   5646     923 0,001568 yhtymä (erisnimi)
+   5647     922 0,001566 göran (erisnimi)
+   5648     922 0,001566 jokseenkin (adverbi)
+   5649     922 0,001566 kelkka (substantiivi)
+   5650     922 0,001566 lukiolainen (substantiivi)
+   5651     922 0,001566 maailmanennätys (substantiivi)
+   5652     922 0,001566 veli-matti (erisnimi)
+   5653     922 0,001566 ydinase (substantiivi)
+   5654     921 0,001565 keskustalainen (adjektiivi)
+   5655     921 0,001565 paasilinna (erisnimi)
+   5656     921 0,001565 potkia (verbi)
+   5657     920 0,001563 otto (erisnimi)
+   5658     920 0,001563 terho (erisnimi)
+   5659     920 0,001563 toimilupa (substantiivi)
+   5660     919 0,001561 ajokki (substantiivi)
+   5661     919 0,001561 kana (substantiivi)
+   5662     919 0,001561 patistaa (verbi)
+   5663     919 0,001561 tempaus (substantiivi)
+   5664     919 0,001561 vankeustuomio (substantiivi)
+   5665     918 0,001560 hermostua (verbi)
+   5666     918 0,001560 ihastella (verbi)
+   5667     918 0,001560 kymmenentuhatta (lukusana)
+   5668     918 0,001560 naapurikunta (substantiivi)
+   5669     918 0,001560 organisoida (verbi)
+   5670     918 0,001560 parkkipaikka (substantiivi)
+   5671     918 0,001560 piirainen (erisnimi)
+   5672     918 0,001560 tapainen (adjektiivi)
+   5673     917 0,001558 kireä (adjektiivi)
+   5674     917 0,001558 kosteus (substantiivi)
+   5675     917 0,001558 lamavuosi (substantiivi)
+   5676     917 0,001558 metsäyhtiö (substantiivi)
+   5677     917 0,001558 paheksua (verbi)
+   5678     917 0,001558 päivystää (verbi)
+   5679     917 0,001558 silja (erisnimi)
+   5680     917 0,001558 valtavasti (adverbi)
+   5681     916 0,001556 alkukausi (substantiivi)
+   5682     916 0,001556 erilaisuus (substantiivi)
+   5683     916 0,001556 karstula (erisnimi)
+   5684     916 0,001556 kristitty (substantiivi)
+   5685     916 0,001556 paikalle (prepositio)
+   5686     916 0,001556 saatavuus (substantiivi)
+   5687     916 0,001556 tuijottaa (verbi)
+   5688     915 0,001554 koreografi (substantiivi)
+   5689     915 0,001554 naurattaa (verbi)
+   5690     915 0,001554 palloseura (erisnimi)
+   5691     914 0,001553 energiayhtiö (substantiivi)
+   5692     914 0,001553 karvinen (erisnimi)
+   5693     914 0,001553 perho (erisnimi)
+   5694     914 0,001553 psykologi (substantiivi)
+   5695     914 0,001553 puhuja (substantiivi)
+   5696     914 0,001553 ympäristöministeri (substantiivi)
+   5697     913 0,001551 joonas (erisnimi)
+   5698     913 0,001551 kehittämishanke (substantiivi)
+   5699     913 0,001551 kunnostautua (verbi)
+   5700     913 0,001551 pesti (substantiivi)
+   5701     913 0,001551 varikko (substantiivi)
+   5702     913 0,001551 viipyä (verbi)
+   5703     911 0,001548 luento (substantiivi)
+   5704     911 0,001548 tuomi (erisnimi)
+   5705     910 0,001546 erja (erisnimi)
+   5706     910 0,001546 kutistua (verbi)
+   5707     910 0,001546 lewis (erisnimi)
+   5708     910 0,001546 microsoft (erisnimi)
+   5709     910 0,001546 paananen (erisnimi)
+   5710     910 0,001546 uusitalo (erisnimi)
+   5711     909 0,001544 marja-liisa (erisnimi)
+   5712     909 0,001544 sunnuntainen (adjektiivi)
+   5713     908 0,001543 kuvanveistäjä (substantiivi)
+   5714     908 0,001543 kymmene (erisnimi)
+   5715     908 0,001543 terrorismi (substantiivi)
+   5716     907 0,001541 aarne (erisnimi)
+   5717     907 0,001541 esittäjä (substantiivi)
+   5718     907 0,001541 jyrätä (verbi)
+   5719     907 0,001541 kätkeä (verbi)
+   5720     907 0,001541 raami (substantiivi)
+   5721     907 0,001541 vapautusarmeija (substantiivi)
+   5722     906 0,001539 linda (erisnimi)
+   5723     906 0,001539 pudotus (substantiivi)
+   5724     906 0,001539 tällä_haavaa (adverbi)
+   5725     906 0,001539 unto (erisnimi)
+   5726     905 0,001537 algeria (erisnimi)
+   5727     905 0,001537 kaista (substantiivi)
+   5728     904 0,001536 aikoihin (adverbi)
+   5729     904 0,001536 jäätyä (verbi)
+   5730     904 0,001536 krista (erisnimi)
+   5731     904 0,001536 yksityiskohtainen (adjektiivi)
+   5732     904 0,001536 ässä (erisnimi)
+   5733     903 0,001534 kolumni (substantiivi)
+   5734     902 0,001532 kesäisin (adverbi)
+   5735     902 0,001532 mozart (erisnimi)
+   5736     902 0,001532 pomo (substantiivi)
+   5737     902 0,001532 yhteistyösopimus (substantiivi)
+   5738     901 0,001531 toistuvasti (adverbi)
+   5739     901 0,001531 vihannes (substantiivi)
+   5740     901 0,001531 viimeaikainen (adjektiivi)
+   5741     900 0,001529 erotuomari (substantiivi)
+   5742     900 0,001529 ma (lyhenne)
+   5743     900 0,001529 marssi (substantiivi)
+   5744     900 0,001529 netti (substantiivi)
+   5745     899 0,001527 sellaisenaan (adverbi)
+   5746     899 0,001527 valaistus (substantiivi)
+   5747     898 0,001526 arka (adjektiivi)
+   5748     898 0,001526 kemiallinen (adjektiivi)
+   5749     898 0,001526 smith (erisnimi)
+   5750     898 0,001526 suhteellinen (adjektiivi)
+   5751     898 0,001526 terveystoimi (substantiivi)
+   5752     898 0,001526 valtiontalous (substantiivi)
+   5753     897 0,001524 epämääräinen (adjektiivi)
+   5754     897 0,001524 kemppainen (erisnimi)
+   5755     897 0,001524 mä (erisnimi)
+   5756     896 0,001522 arvoitus (substantiivi)
+   5757     896 0,001522 haag (erisnimi)
+   5758     896 0,001522 kitaristi (substantiivi)
+   5759     896 0,001522 koreografia (substantiivi)
+   5760     896 0,001522 kukkonen (erisnimi)
+   5761     896 0,001522 kunnioitus (substantiivi)
+   5762     896 0,001522 puoliaika (substantiivi)
+   5763     896 0,001522 saldo (substantiivi)
+   5764     895 0,001521 hukata (verbi)
+   5765     895 0,001521 kemia (substantiivi)
+   5766     895 0,001521 luottamushenkilö (substantiivi)
+   5767     895 0,001521 purkautua (verbi)
+   5768     895 0,001521 rautaruukki (erisnimi)
+   5769     895 0,001521 tuottavuus (substantiivi)
+   5770     895 0,001521 työnhakija (substantiivi)
+   5771     894 0,001519 paimio (erisnimi)
+   5772     894 0,001519 panttivanki (substantiivi)
+   5773     894 0,001519 ranska (substantiivi)
+   5774     894 0,001519 tulitauko (substantiivi)
+   5775     893 0,001517 doping (substantiivi)
+   5776     893 0,001517 elinkeinokeskus (substantiivi)
+   5777     893 0,001517 kyläkoulu (substantiivi)
+   5778     893 0,001517 massiivinen (adjektiivi)
+   5779     893 0,001517 viihdyttää (verbi)
+   5780     892 0,001515 joni (erisnimi)
+   5781     892 0,001515 mielipidemittaus (substantiivi)
+   5782     892 0,001515 sekava (adjektiivi)
+   5783     892 0,001515 stressi (substantiivi)
+   5784     892 0,001515 ylläpitäminen (substantiivi)
+   5785     891 0,001514 aluejohtaja (substantiivi)
+   5786     891 0,001514 ampuja (substantiivi)
+   5787     891 0,001514 eskola (erisnimi)
+   5788     891 0,001514 haapavesi (erisnimi)
+   5789     891 0,001514 hamina (erisnimi)
+   5790     891 0,001514 jonna (erisnimi)
+   5791     891 0,001514 näkyvyys (substantiivi)
+   5792     891 0,001514 valittu (substantiivi)
+   5793     890 0,001512 kiintiö (substantiivi)
+   5794     890 0,001512 kuolemantuomio (substantiivi)
+   5795     890 0,001512 rasismi (substantiivi)
+   5796     890 0,001512 tolonen (erisnimi)
+   5797     889 0,001510 ehkäisy (substantiivi)
+   5798     889 0,001510 koura (substantiivi)
+   5799     889 0,001510 kyltti (substantiivi)
+   5800     889 0,001510 laitila (erisnimi)
+   5801     889 0,001510 lähteenmäki (erisnimi)
+   5802     889 0,001510 mestari (erisnimi)
+   5803     889 0,001510 piirustus (substantiivi)
+   5804     889 0,001510 selostaa (verbi)
+   5805     888 0,001509 apulaiskaupunginjohtaja (substantiivi)
+   5806     888 0,001509 huutokauppa (substantiivi)
+   5807     888 0,001509 langettaa (verbi)
+   5808     888 0,001509 meinata (verbi)
+   5809     888 0,001509 taivalkoski (erisnimi)
+   5810     888 0,001509 tamma (substantiivi)
+   5811     887 0,001507 ahdistus (substantiivi)
+   5812     887 0,001507 barak (erisnimi)
+   5813     887 0,001507 siekkinen (erisnimi)
+   5814     887 0,001507 telia (erisnimi)
+   5815     886 0,001505 hirveä (adjektiivi)
+   5816     886 0,001505 itäraja (substantiivi)
+   5817     885 0,001504 autio (erisnimi)
+   5818     885 0,001504 heinola (erisnimi)
+   5819     885 0,001504 jatkuvuus (substantiivi)
+   5820     885 0,001504 joukkoliikenne (substantiivi)
+   5821     885 0,001504 kielitaito (substantiivi)
+   5822     885 0,001504 kulttuurinen (adjektiivi)
+   5823     885 0,001504 luonnonvara (substantiivi)
+   5824     885 0,001504 säteily (substantiivi)
+   5825     885 0,001504 talkoot (substantiivi)
+   5826     884 0,001502 frankfurt (erisnimi)
+   5827     884 0,001502 veikkaus (erisnimi)
+   5828     883 0,001500 itsehallinto (substantiivi)
+   5829     883 0,001500 miikka (erisnimi)
+   5830     883 0,001500 moro (erisnimi)
+   5831     883 0,001500 nimetön (adjektiivi)
+   5832     883 0,001500 onneton (adjektiivi)
+   5833     883 0,001500 sosialisti (substantiivi)
+   5834     883 0,001500 varalta (prepositio)
+   5835     883 0,001500 ääreen (prepositio)
+   5836     882 0,001498 jämsänkoski (erisnimi)
+   5837     882 0,001498 katariina (erisnimi)
+   5838     882 0,001498 kilpailuttaminen (substantiivi)
+   5839     882 0,001498 puolisotilaallinen (adjektiivi)
+   5840     882 0,001498 star (erisnimi)
+   5841     881 0,001497 isänmaa (substantiivi)
+   5842     881 0,001497 valitella (verbi)
+   5843     880 0,001495 puskea (verbi)
+   5844     880 0,001495 raili (erisnimi)
+   5845     880 0,001495 tulovero (substantiivi)
+   5846     880 0,001495 vanhanaikainen (adjektiivi)
+   5847     879 0,001493 ajoittua (verbi)
+   5848     879 0,001493 aloitus (substantiivi)
+   5849     879 0,001493 eliitti (substantiivi)
+   5850     879 0,001493 kulkija (substantiivi)
+   5851     879 0,001493 metsähallitus (erisnimi)
+   5852     879 0,001493 suora (substantiivi)
+   5853     878 0,001492 aktivisti (substantiivi)
+   5854     878 0,001492 anders (erisnimi)
+   5855     878 0,001492 koivuniemi (erisnimi)
+   5856     878 0,001492 legenda (substantiivi)
+   5857     878 0,001492 päätöslauselma (substantiivi)
+   5858     878 0,001492 vesioikeus (substantiivi)
+   5859     877 0,001490 esittäminen (substantiivi)
+   5860     877 0,001490 kansallisooppera (erisnimi)
+   5861     877 0,001490 runous (substantiivi)
+   5862     877 0,001490 suolahti (erisnimi)
+   5863     877 0,001490 vaikutusvalta (substantiivi)
+   5864     876 0,001488 aistia (verbi)
+   5865     876 0,001488 baari (substantiivi)
+   5866     876 0,001488 jakarta (erisnimi)
+   5867     876 0,001488 kalastaa (verbi)
+   5868     876 0,001488 kotiottelu (substantiivi)
+   5869     876 0,001488 paikan_päällä (adverbi)
+   5870     876 0,001488 pidentää (verbi)
+   5871     876 0,001488 ylinopeus (substantiivi)
+   5872     875 0,001487 hoitua (verbi)
+   5873     875 0,001487 katsaus (substantiivi)
+   5874     875 0,001487 oksa (substantiivi)
+   5875     875 0,001487 raketti (substantiivi)
+   5876     875 0,001487 tyttöystävä (substantiivi)
+   5877     874 0,001485 kokoomus (erisnimi)
+   5878     874 0,001485 liiallinen (adjektiivi)
+   5879     874 0,001485 liitos (substantiivi)
+   5880     874 0,001485 lind (erisnimi)
+   5881     874 0,001485 muka (adverbi)
+   5882     874 0,001485 tappo (substantiivi)
+   5883     873 0,001483 asialista (substantiivi)
+   5884     873 0,001483 huvittaa (verbi)
+   5885     873 0,001483 siirtymä (substantiivi)
+   5886     873 0,001483 terveysasema (substantiivi)
+   5887     872 0,001481 lausanne (erisnimi)
+   5888     872 0,001481 musiikkiopisto (substantiivi)
+   5889     872 0,001481 määrittää (verbi)
+   5890     872 0,001481 pm (lyhenne)
+   5891     871 0,001480 kataja (erisnimi)
+   5892     871 0,001480 kosto (substantiivi)
+   5893     871 0,001480 kotikenttä (substantiivi)
+   5894     871 0,001480 kunnostaminen (substantiivi)
+   5895     871 0,001480 oikaisu (substantiivi)
+   5896     871 0,001480 pyöräily (substantiivi)
+   5897     871 0,001480 solu (substantiivi)
+   5898     871 0,001480 välimeri (erisnimi)
+   5899     870 0,001478 hehkua (verbi)
+   5900     870 0,001478 kelpuuttaa (verbi)
+   5901     870 0,001478 leffa (substantiivi)
+   5902     869 0,001476 heilua (verbi)
+   5903     869 0,001476 maltti (substantiivi)
+   5904     869 0,001476 pohjoiskarjalainen (adjektiivi)
+   5905     869 0,001476 vuokralainen (substantiivi)
+   5906     868 0,001475 aikamoinen (adjektiivi)
+   5907     868 0,001475 hyttinen (erisnimi)
+   5908     868 0,001475 julma (adjektiivi)
+   5909     868 0,001475 kaupunginteatteri (erisnimi)
+   5910     868 0,001475 valmistaminen (substantiivi)
+   5911     867 0,001473 ahdinko (substantiivi)
+   5912     867 0,001473 härkönen (erisnimi)
+   5913     867 0,001473 sovitus (substantiivi)
+   5914     867 0,001473 termi (substantiivi)
+   5915     866 0,001471 kakku (substantiivi)
+   5916     866 0,001471 kehitysvammainen (substantiivi)
+   5917     866 0,001471 moottoripyörä (substantiivi)
+   5918     866 0,001471 olohuone (substantiivi)
+   5919     866 0,001471 paljas (adjektiivi)
+   5920     866 0,001471 surra (verbi)
+   5921     866 0,001471 tiukentaa (verbi)
+   5922     865 0,001470 eläkeikä (substantiivi)
+   5923     865 0,001470 ennakkoluulo (substantiivi)
+   5924     865 0,001470 ennätyksellinen (adjektiivi)
+   5925     865 0,001470 kasvatti (substantiivi)
+   5926     865 0,001470 nelonen (erisnimi)
+   5927     865 0,001470 valaa (verbi)
+   5928     864 0,001468 englanninkielinen (adjektiivi)
+   5929     864 0,001468 leipoa (verbi)
+   5930     864 0,001468 line (erisnimi)
+   5931     864 0,001468 ojentaa (verbi)
+   5932     863 0,001466 sisä (substantiivi)
+   5933     862 0,001464 chicago (erisnimi)
+   5934     862 0,001464 hakukomitea (substantiivi)
+   5935     862 0,001464 minkä_vuoksi (adverbi)
+   5936     862 0,001464 op (lyhenne)
+   5937     862 0,001464 promille (substantiivi)
+   5938     862 0,001464 puolalainen (adjektiivi)
+   5939     862 0,001464 raamattu (erisnimi)
+   5940     862 0,001464 rajoittaminen (substantiivi)
+   5941     862 0,001464 tekstiili (substantiivi)
+   5942     861 0,001463 ennakkotieto (substantiivi)
+   5943     861 0,001463 gallup (substantiivi)
+   5944     861 0,001463 lahtela (erisnimi)
+   5945     861 0,001463 lepo (substantiivi)
+   5946     861 0,001463 pasanen (erisnimi)
+   5947     861 0,001463 pikamatka (substantiivi)
+   5948     861 0,001463 pkk (lyhenne)
+   5949     861 0,001463 sopraano (substantiivi)
+   5950     861 0,001463 suunnistaa (verbi)
+   5951     861 0,001463 työministeri (substantiivi)
+   5952     860 0,001461 informaatio (substantiivi)
+   5953     860 0,001461 suuri (erisnimi)
+   5954     859 0,001459 hirveän (adverbi)
+   5955     859 0,001459 irvi (erisnimi)
+   5956     859 0,001459 piristää (verbi)
+   5957     859 0,001459 purjehtia (verbi)
+   5958     859 0,001459 pääluottamusmies (substantiivi)
+   5959     859 0,001459 rokote (substantiivi)
+   5960     859 0,001459 toimesta (prepositio)
+   5961     858 0,001458 koivunen (erisnimi)
+   5962     858 0,001458 puh (lyhenne)
+   5963     858 0,001458 soitella (verbi)
+   5964     857 0,001456 janakkala (erisnimi)
+   5965     857 0,001456 lindholm (erisnimi)
+   5966     857 0,001456 luontevasti (adverbi)
+   5967     857 0,001456 metsä-serla (erisnimi)
+   5968     857 0,001456 metsästää (verbi)
+   5969     857 0,001456 perillä (adverbi)
+   5970     857 0,001456 päärakennus (substantiivi)
+   5971     857 0,001456 pörssiyhtiö (substantiivi)
+   5972     857 0,001456 rääkkylä (erisnimi)
+   5973     857 0,001456 taakka (substantiivi)
+   5974     857 0,001456 varapääministeri (substantiivi)
+   5975     856 0,001454 palvelutalo (substantiivi)
+   5976     856 0,001454 yläkerta (substantiivi)
+   5977     855 0,001453 iltaisin (adverbi)
+   5978     855 0,001453 kalifornia (erisnimi)
+   5979     855 0,001453 lentoliikenne (substantiivi)
+   5980     855 0,001453 p (lyhenne)
+   5981     855 0,001453 piipahtaa (verbi)
+   5982     855 0,001453 valtionapu (substantiivi)
+   5983     855 0,001453 viljanen (erisnimi)
+   5984     854 0,001451 ey (lyhenne)
+   5985     854 0,001451 heittäytyä (verbi)
+   5986     854 0,001451 menetellä (verbi)
+   5987     854 0,001451 raskaus (substantiivi)
+   5988     854 0,001451 rask (erisnimi)
+   5989     853 0,001449 ammunta (substantiivi)
+   5990     853 0,001449 juliste (substantiivi)
+   5991     853 0,001449 radiolinja (erisnimi)
+   5992     852 0,001447 astia (substantiivi)
+   5993     852 0,001447 kivelä (erisnimi)
+   5994     852 0,001447 kääriäinen (erisnimi)
+   5995     852 0,001447 märkä (adjektiivi)
+   5996     852 0,001447 naudanliha (substantiivi)
+   5997     852 0,001447 puolueeton (adjektiivi)
+   5998     852 0,001447 sellu (substantiivi)
+   5999     851 0,001446 bank (erisnimi)
+   6000     851 0,001446 hankaluus (substantiivi)
+   6001     851 0,001446 hellittää (verbi)
+   6002     851 0,001446 rakennemuutos (substantiivi)
+   6003     851 0,001446 tilittää (verbi)
+   6004     851 0,001446 villa (erisnimi)
+   6005     850 0,001444 sosialidemokraattinen (adjektiivi)
+   6006     849 0,001442 boston (erisnimi)
+   6007     849 0,001442 otollinen (adjektiivi)
+   6008     849 0,001442 paasikivi (erisnimi)
+   6009     849 0,001442 poski (substantiivi)
+   6010     849 0,001442 sisällyttää (verbi)
+   6011     849 0,001442 talletus (substantiivi)
+   6012     849 0,001442 välikohtaus (substantiivi)
+   6013     848 0,001441 laskeskella (verbi)
+   6014     848 0,001441 lasti (substantiivi)
+   6015     848 0,001441 päihde (substantiivi)
+   6016     848 0,001441 sampo (substantiivi)
+   6017     848 0,001441 tallentaa (verbi)
+   6018     848 0,001441 väitellä (verbi)
+   6019     847 0,001439 ensi_kerran (adverbi)
+   6020     847 0,001439 forssell (erisnimi)
+   6021     847 0,001439 jaksaminen (substantiivi)
+   6022     847 0,001439 julkistaminen (substantiivi)
+   6023     847 0,001439 kashmir (erisnimi)
+   6024     847 0,001439 kotoa (adverbi)
+   6025     847 0,001439 nukke (substantiivi)
+   6026     847 0,001439 näsijärvi (erisnimi)
+   6027     847 0,001439 painoarvo (substantiivi)
+   6028     847 0,001439 palanen (substantiivi)
+   6029     847 0,001439 pallo (erisnimi)
+   6030     847 0,001439 sinfoniaorkesteri (substantiivi)
+   6031     846 0,001437 konkari (substantiivi)
+   6032     846 0,001437 kuultaa (verbi)
+   6033     846 0,001437 laiminlyönti (substantiivi)
+   6034     846 0,001437 sosiaalityöntekijä (substantiivi)
+   6035     846 0,001437 xc (erisnimi)
+   6036     845 0,001436 atlantti (erisnimi)
+   6037     845 0,001436 lukuvuosi (substantiivi)
+   6038     845 0,001436 näyttävästi (adverbi)
+   6039     845 0,001436 perä (substantiivi)
+   6040     845 0,001436 pito (substantiivi)
+   6041     845 0,001436 puoleinen (adjektiivi)
+   6042     845 0,001436 viikonloppuisin (adverbi)
+   6043     844 0,001434 alittaa (verbi)
+   6044     844 0,001434 katua (verbi)
+   6045     844 0,001434 lapua (erisnimi)
+   6046     844 0,001434 sosiaalitoimi (substantiivi)
+   6047     843 0,001432 andy (erisnimi)
+   6048     843 0,001432 hauho (erisnimi)
+   6049     843 0,001432 luottamusmies (substantiivi)
+   6050     843 0,001432 puumalainen (erisnimi)
+   6051     842 0,001430 alex (erisnimi)
+   6052     842 0,001430 finlayson (erisnimi)
+   6053     842 0,001430 kaksivuotinen (adjektiivi)
+   6054     842 0,001430 kummastella (verbi)
+   6055     842 0,001430 omituinen (adjektiivi)
+   6056     841 0,001429 neuvottelija (substantiivi)
+   6057     841 0,001429 nilkka (substantiivi)
+   6058     841 0,001429 väkiluku (substantiivi)
+   6059     840 0,001427 kastike (substantiivi)
+   6060     840 0,001427 kauniisti (adverbi)
+   6061     840 0,001427 nikula (erisnimi)
+   6062     840 0,001427 ponnistus (substantiivi)
+   6063     840 0,001427 rotu (substantiivi)
+   6064     839 0,001425 hiihtoliitto (substantiivi)
+   6065     839 0,001425 markkinavoima (substantiivi)
+   6066     838 0,001424 asettaminen (substantiivi)
+   6067     838 0,001424 huveta (verbi)
+   6068     838 0,001424 kyrö (erisnimi)
+   6069     838 0,001424 niko (erisnimi)
+   6070     838 0,001424 tähden (prepositio)
+   6071     838 0,001424 varteenottaa (verbi)
+   6072     838 0,001424 vuotispäivä (substantiivi)
+   6073     837 0,001422 ensiksi (adverbi)
+   6074     837 0,001422 jenni (erisnimi)
+   6075     837 0,001422 pakolaisleiri (substantiivi)
+   6076     837 0,001422 puoleen (prepositio)
+   6077     837 0,001422 saatto (substantiivi)
+   6078     837 0,001422 sisko (substantiivi)
+   6079     837 0,001422 tulittaa (verbi)
+   6080     837 0,001422 tämän_vuoksi (adverbi)
+   6081     836 0,001420 peitto (substantiivi)
+   6082     836 0,001420 phoenix (erisnimi)
+   6083     836 0,001420 pohjois (erisnimi)
+   6084     836 0,001420 pääkonttori (substantiivi)
+   6085     835 0,001419 lohduttaa (verbi)
+   6086     835 0,001419 monica (erisnimi)
+   6087     835 0,001419 omena (substantiivi)
+   6088     835 0,001419 suojelualue (substantiivi)
+   6089     835 0,001419 vetovoima (substantiivi)
+   6090     834 0,001417 aukioloaika (substantiivi)
+   6091     834 0,001417 hiki (substantiivi)
+   6092     834 0,001417 kerma (substantiivi)
+   6093     834 0,001417 syyllisyys (substantiivi)
+   6094     834 0,001417 tuloratkaisu (substantiivi)
+   6095     833 0,001415 golf (substantiivi)
+   6096     833 0,001415 hallinnollinen (adjektiivi)
+   6097     833 0,001415 helvetti (substantiivi)
+   6098     833 0,001415 hiljalleen (adverbi)
+   6099     833 0,001415 hyväksikäyttö (substantiivi)
+   6100     833 0,001415 irja (erisnimi)
+   6101     833 0,001415 läheltä (prepositio)
+   6102     833 0,001415 takoa (verbi)
+   6103     832 0,001413 asiamies (substantiivi)
+   6104     832 0,001413 kruunata (verbi)
+   6105     832 0,001413 venäläisjoukko (substantiivi)
+   6106     831 0,001412 selviytyminen (substantiivi)
+   6107     831 0,001412 viitsiä (verbi)
+   6108     830 0,001410 eturivi (substantiivi)
+   6109     830 0,001410 ihastua (verbi)
+   6110     830 0,001410 maininta (substantiivi)
+   6111     830 0,001410 mieluiten (adverbi)
+   6112     830 0,001410 määttä (erisnimi)
+   6113     830 0,001410 ominainen (adjektiivi)
+   6114     830 0,001410 turvallisesti (adverbi)
+   6115     830 0,001410 valtuustoryhmä (substantiivi)
+   6116     829 0,001408 johtoryhmä (substantiivi)
+   6117     829 0,001408 jortikka (erisnimi)
+   6118     829 0,001408 kriisinhallinta (substantiivi)
+   6119     829 0,001408 maksullinen (adjektiivi)
+   6120     829 0,001408 mononen (erisnimi)
+   6121     829 0,001408 rivitalo (substantiivi)
+   6122     829 0,001408 toisensa_jälkeen (adverbi)
+   6123     829 0,001408 voittomaali (substantiivi)
+   6124     828 0,001407 heijastaa (verbi)
+   6125     828 0,001407 lieventää (verbi)
+   6126     828 0,001407 liikuttaa (verbi)
+   6127     828 0,001407 meriläinen (erisnimi)
+   6128     828 0,001407 muhkea (adjektiivi)
+   6129     828 0,001407 psykiatrinen (adjektiivi)
+   6130     828 0,001407 remontoida (verbi)
+   6131     828 0,001407 siperia (erisnimi)
+   6132     828 0,001407 uimaranta (substantiivi)
+   6133     827 0,001405 kolmisenkymmentä (lukusana)
+   6134     827 0,001405 kunnossapito (substantiivi)
+   6135     827 0,001405 kylpylä (substantiivi)
+   6136     827 0,001405 ori (substantiivi)
+   6137     827 0,001405 päiväkirja (substantiivi)
+   6138     826 0,001403 keskisuomalainen (adjektiivi)
+   6139     826 0,001403 painajainen (substantiivi)
+   6140     826 0,001403 pöly (substantiivi)
+   6141     826 0,001403 varallisuus (substantiivi)
+   6142     826 0,001403 ydinkeskusta (substantiivi)
+   6143     825 0,001402 arvostelija (substantiivi)
+   6144     825 0,001402 kynä (substantiivi)
+   6145     825 0,001402 maineikas (adjektiivi)
+   6146     825 0,001402 nyt_kun (konjunktio)
+   6147     825 0,001402 psyykkinen (adjektiivi)
+   6148     825 0,001402 väkevä (adjektiivi)
+   6149     824 0,001400 hyvinvointivaltio (substantiivi)
+   6150     824 0,001400 katoaminen (substantiivi)
+   6151     824 0,001400 klaus (erisnimi)
+   6152     824 0,001400 lakisääteinen (adjektiivi)
+   6153     824 0,001400 luo (prepositio)
+   6154     824 0,001400 mieliala (substantiivi)
+   6155     824 0,001400 puolustusvoimat (substantiivi)
+   6156     824 0,001400 pyyhkiä (verbi)
+   6157     823 0,001398 bensa (substantiivi)
+   6158     823 0,001398 luokse (prepositio)
+   6159     823 0,001398 marco (erisnimi)
+   6160     823 0,001398 muhos (erisnimi)
+   6161     823 0,001398 petroskoi (erisnimi)
+   6162     823 0,001398 tiedemies (substantiivi)
+   6163     823 0,001398 tielaitos (erisnimi)
+   6164     822 0,001396 asento (substantiivi)
+   6165     822 0,001396 jahdata (verbi)
+   6166     822 0,001396 karja (substantiivi)
+   6167     822 0,001396 nimekäs (adjektiivi)
+   6168     822 0,001396 sikäläinen (adjektiivi)
+   6169     821 0,001395 asioida (verbi)
+   6170     821 0,001395 korea (erisnimi)
+   6171     821 0,001395 painia (verbi)
+   6172     821 0,001395 puhdistamo (substantiivi)
+   6173     821 0,001395 puhutella (verbi)
+   6174     821 0,001395 syvästi (adverbi)
+   6175     821 0,001395 työyhteisö (substantiivi)
+   6176     821 0,001395 ulosajo (substantiivi)
+   6177     820 0,001393 etelä-pohjanmaa (erisnimi)
+   6178     820 0,001393 ivo (erisnimi)
+   6179     820 0,001393 kirjava (adjektiivi)
+   6180     820 0,001393 kommunismi (substantiivi)
+   6181     820 0,001393 normi (substantiivi)
+   6182     820 0,001393 pääseminen (substantiivi)
+   6183     820 0,001393 tehota (verbi)
+   6184     820 0,001393 tupa (substantiivi)
+   6185     819 0,001391 kujala (erisnimi)
+   6186     819 0,001391 kuvitus (substantiivi)
+   6187     819 0,001391 omalta_osaltaan (adverbi)
+   6188     819 0,001391 rattijuoppo (substantiivi)
+   6189     819 0,001391 rikollinen (adjektiivi)
+   6190     819 0,001391 selänne (substantiivi)
+   6191     819 0,001391 sulattaa (verbi)
+   6192     819 0,001391 vastarinta (substantiivi)
+   6193     818 0,001390 aila (erisnimi)
+   6194     818 0,001390 hajoaminen (substantiivi)
+   6195     818 0,001390 kerronta (substantiivi)
+   6196     818 0,001390 länsiranta (erisnimi)
+   6197     818 0,001390 marja-leena (erisnimi)
+   6198     818 0,001390 oiva (erisnimi)
+   6199     818 0,001390 tottakai (adverbi)
+   6200     817 0,001388 albaanipakolainen (substantiivi)
+   6201     817 0,001388 meteli (substantiivi)
+   6202     817 0,001388 muuan (pronomini)
+   6203     817 0,001388 pormestari (substantiivi)
+   6204     817 0,001388 tyly (adjektiivi)
+   6205     816 0,001386 isoisä (substantiivi)
+   6206     816 0,001386 jääkiekkoilija (substantiivi)
+   6207     816 0,001386 rahapolitiikka (substantiivi)
+   6208     816 0,001386 ylittyä (verbi)
+   6209     816 0,001386 älykäs (adjektiivi)
+   6210     815 0,001385 jan-erik (erisnimi)
+   6211     815 0,001385 jäsenistö (substantiivi)
+   6212     815 0,001385 mikin (pronomini)
+   6213     815 0,001385 suihku (substantiivi)
+   6214     815 0,001385 työtoveri (substantiivi)
+   6215     814 0,001383 jonnekin (adverbi)
+   6216     814 0,001383 marika (erisnimi)
+   6217     814 0,001383 uhkaus (substantiivi)
+   6218     814 0,001383 unkari (substantiivi)
+   6219     814 0,001383 yt (lyhenne)
+   6220     813 0,001381 ennakkosuosikki (substantiivi)
+   6221     813 0,001381 kuivata (verbi)
+   6222     813 0,001381 käynnistäminen (substantiivi)
+   6223     813 0,001381 laatiminen (substantiivi)
+   6224     813 0,001381 seura (erisnimi)
+   6225     813 0,001381 suurin_piirtein (adverbi)
+   6226     813 0,001381 urheiluliitto (erisnimi)
+   6227     812 0,001379 kiinalainen (substantiivi)
+   6228     812 0,001379 osa-alue (substantiivi)
+   6229     812 0,001379 päijänne (erisnimi)
+   6230     812 0,001379 saab (erisnimi)
+   6231     812 0,001379 teollisuusministeri (substantiivi)
+   6232     812 0,001379 viisikymmentä (lukusana)
+   6233     812 0,001379 åbo (erisnimi)
+   6234     811 0,001378 armstrong (erisnimi)
+   6235     811 0,001378 järjestellä (verbi)
+   6236     811 0,001378 sairaalahoito (substantiivi)
+   6237     811 0,001378 varoitella (verbi)
+   6238     810 0,001376 japanilainen (substantiivi)
+   6239     810 0,001376 järjestyä (verbi)
+   6240     810 0,001376 jäädyttää (verbi)
+   6241     810 0,001376 kyseenalaistaa (verbi)
+   6242     810 0,001376 moninkertainen (adjektiivi)
+   6243     810 0,001376 taisto (erisnimi)
+   6244     809 0,001374 aleksander (erisnimi)
+   6245     809 0,001374 hyvärinen (erisnimi)
+   6246     809 0,001374 ostotarjous (substantiivi)
+   6247     809 0,001374 rahallinen (adjektiivi)
+   6248     809 0,001374 taisto (substantiivi)
+   6249     809 0,001374 vuokrasopimus (substantiivi)
+   6250     809 0,001374 ykkössija (substantiivi)
+   6251     808 0,001373 heitellä (verbi)
+   6252     808 0,001373 kaksipäiväinen (adjektiivi)
+   6253     808 0,001373 lassila (erisnimi)
+   6254     808 0,001373 levyttää (verbi)
+   6255     808 0,001373 planeetta (substantiivi)
+   6256     808 0,001373 pudasjärvi (erisnimi)
+   6257     808 0,001373 seattle (erisnimi)
+   6258     808 0,001373 skandia (erisnimi)
+   6259     808 0,001373 työväki (erisnimi)
+   6260     808 0,001373 valtiosihteeri (substantiivi)
+   6261     808 0,001373 väliaika (substantiivi)
+   6262     807 0,001371 esitutkinta (substantiivi)
+   6263     807 0,001371 herkullinen (adjektiivi)
+   6264     807 0,001371 kuuluminen (substantiivi)
+   6265     807 0,001371 oikeisto (substantiivi)
+   6266     807 0,001371 pispala (erisnimi)
+   6267     806 0,001369 etupäässä (adverbi)
+   6268     806 0,001369 hyvönen (erisnimi)
+   6269     806 0,001369 traaginen (adjektiivi)
+   6270     806 0,001369 tyytymättömyys (substantiivi)
+   6271     805 0,001368 edelle (prepositio)
+   6272     805 0,001368 puolinen (adjektiivi)
+   6273     805 0,001368 urpo (erisnimi)
+   6274     804 0,001366 eläinlääkäri (substantiivi)
+   6275     804 0,001366 hiv (lyhenne)
+   6276     804 0,001366 hyödyttää (verbi)
+   6277     804 0,001366 kanslia (substantiivi)
+   6278     804 0,001366 pienentyä (verbi)
+   6279     804 0,001366 wilson (erisnimi)
+   6280     803 0,001364 kontrolli (substantiivi)
+   6281     803 0,001364 miika (erisnimi)
+   6282     803 0,001364 molemmin_puolin (prepositio)
+   6283     803 0,001364 morsian (substantiivi)
+   6284     803 0,001364 selkkaus (substantiivi)
+   6285     802 0,001363 elektroninen (adjektiivi)
+   6286     802 0,001363 pysyminen (substantiivi)
+   6287     802 0,001363 rapu (substantiivi)
+   6288     802 0,001363 taas_kerran (adverbi)
+   6289     802 0,001363 tungos (substantiivi)
+   6290     802 0,001363 vaihtaminen (substantiivi)
+   6291     801 0,001361 asumistuki (substantiivi)
+   6292     801 0,001361 kristus (erisnimi)
+   6293     801 0,001361 pakote (substantiivi)
+   6294     801 0,001361 pohja (erisnimi)
+   6295     801 0,001361 tarpeellisuus (substantiivi)
+   6296     800 0,001359 lujaa (adverbi)
+   6297     800 0,001359 näkö (substantiivi)
+   6298     800 0,001359 rynnätä (verbi)
+   6299     800 0,001359 uusi-seelanti (erisnimi)
+   6300     799 0,001357 air (erisnimi)
+   6301     799 0,001357 hahmottaa (verbi)
+   6302     799 0,001357 hylky (substantiivi)
+   6303     799 0,001357 lähtöisin (adverbi)
+   6304     799 0,001357 parkkinen (erisnimi)
+   6305     799 0,001357 sotatoimi (substantiivi)
+   6306     799 0,001357 tae (substantiivi)
+   6307     799 0,001357 tunkea (verbi)
+   6308     799 0,001357 vaeltaa (verbi)
+   6309     798 0,001356 analyytikko (substantiivi)
+   6310     798 0,001356 kuume (substantiivi)
+   6311     798 0,001356 lippo (erisnimi)
+   6312     798 0,001356 omiaan (adverbi)
+   6313     798 0,001356 paikkainen (adjektiivi)
+   6314     798 0,001356 varsinkaan (adverbi)
+   6315     798 0,001356 vastuualue (substantiivi)
+   6316     798 0,001356 vuositaso (substantiivi)
+   6317     798 0,001356 yrittäjä (erisnimi)
+   6318     797 0,001354 hurme (erisnimi)
+   6319     797 0,001354 jatkosota (substantiivi)
+   6320     797 0,001354 ässä (substantiivi)
+   6321     796 0,001352 diktaattori (substantiivi)
+   6322     796 0,001352 ponnistaa (verbi)
+   6323     796 0,001352 saarikangas (erisnimi)
+   6324     796 0,001352 sanonta (substantiivi)
+   6325     796 0,001352 täsmälleen (adverbi)
+   6326     796 0,001352 vastassa (adverbi)
+   6327     795 0,001351 ahokas (erisnimi)
+   6328     795 0,001351 kymmenys (substantiivi)
+   6329     795 0,001351 nato-maa (erisnimi)
+   6330     795 0,001351 poikkeuslupa (substantiivi)
+   6331     795 0,001351 sihvonen (erisnimi)
+   6332     795 0,001351 stipendi (substantiivi)
+   6333     795 0,001351 talouspoliittinen (adjektiivi)
+   6334     795 0,001351 tekeillä (adverbi)
+   6335     795 0,001351 tuuri (substantiivi)
+   6336     794 0,001349 fakta (substantiivi)
+   6337     794 0,001349 ideoida (verbi)
+   6338     794 0,001349 libanon (erisnimi)
+   6339     794 0,001349 nopeusrajoitus (substantiivi)
+   6340     794 0,001349 raikas (adjektiivi)
+   6341     794 0,001349 turve (substantiivi)
+   6342     794 0,001349 vesterinen (erisnimi)
+   6343     794 0,001349 yksinäisyys (substantiivi)
+   6344     793 0,001347 ira (lyhenne)
+   6345     793 0,001347 kihlakunta (substantiivi)
+   6346     793 0,001347 lapsi (erisnimi)
+   6347     793 0,001347 lauantainen (adjektiivi)
+   6348     793 0,001347 näyttäytyä (verbi)
+   6349     793 0,001347 tunnetusti (adverbi)
+   6350     793 0,001347 yhteistyöjärjestö (substantiivi)
+   6351     793 0,001347 yleiskokous (substantiivi)
+   6352     792 0,001346 kk (lyhenne)
+   6353     792 0,001346 perusasia (substantiivi)
+   6354     792 0,001346 saapuminen (substantiivi)
+   6355     792 0,001346 suosittaa (verbi)
+   6356     792 0,001346 uhanalainen (adjektiivi)
+   6357     792 0,001346 vuokatti (erisnimi)
+   6358     791 0,001344 alihankkija (substantiivi)
+   6359     791 0,001344 kevyesti (adverbi)
+   6360     791 0,001344 king (erisnimi)
+   6361     791 0,001344 monaco (erisnimi)
+   6362     791 0,001344 neuvonantaja (substantiivi)
+   6363     791 0,001344 stakes (erisnimi)
+   6364     791 0,001344 vaikutusvaltainen (adjektiivi)
+   6365     790 0,001342 flunssa (substantiivi)
+   6366     790 0,001342 yritysjohtaja (substantiivi)
+   6367     789 0,001340 pimeys (substantiivi)
+   6368     788 0,001339 itsenäistyminen (substantiivi)
+   6369     788 0,001339 kiri (erisnimi)
+   6370     788 0,001339 kuudenneksi (adverbi)
+   6371     788 0,001339 liike-elämä (substantiivi)
+   6372     788 0,001339 reservi (substantiivi)
+   6373     787 0,001337 entuudestaan (adverbi)
+   6374     787 0,001337 irma (erisnimi)
+   6375     787 0,001337 joustavuus (substantiivi)
+   6376     787 0,001337 jäljessä (prepositio)
+   6377     787 0,001337 koski (erisnimi)
+   6378     787 0,001337 puhelinyhtiö (substantiivi)
+   6379     787 0,001337 tapiola (erisnimi)
+   6380     786 0,001335 kennedy (erisnimi)
+   6381     786 0,001335 kuorma (substantiivi)
+   6382     786 0,001335 multia (erisnimi)
+   6383     786 0,001335 määräytyä (verbi)
+   6384     786 0,001335 puolisko (substantiivi)
+   6385     786 0,001335 sailas (erisnimi)
+   6386     785 0,001334 huolissaan (adverbi)
+   6387     785 0,001334 marokko (erisnimi)
+   6388     785 0,001334 saastamoinen (erisnimi)
+   6389     785 0,001334 unkarilainen (adjektiivi)
+   6390     785 0,001334 varkaus (erisnimi)
+   6391     784 0,001332 arktinen (adjektiivi)
+   6392     784 0,001332 kehys (substantiivi)
+   6393     784 0,001332 maksaja (substantiivi)
+   6394     784 0,001332 perheenjäsen (substantiivi)
+   6395     784 0,001332 vähittäiskauppa (substantiivi)
+   6396     783 0,001330 häntä (substantiivi)
+   6397     783 0,001330 joukkuekilpailu (substantiivi)
+   6398     783 0,001330 kaikesta_huolimatta (adverbi)
+   6399     783 0,001330 kiusaaminen (substantiivi)
+   6400     783 0,001330 konsertoida (verbi)
+   6401     783 0,001330 kuvastaa (verbi)
+   6402     783 0,001330 lahjakkuus (substantiivi)
+   6403     783 0,001330 selittyä (verbi)
+   6404     783 0,001330 taitaja (substantiivi)
+   6405     783 0,001330 toivanen (erisnimi)
+   6406     783 0,001330 tp (lyhenne)
+   6407     783 0,001330 uusimaa (substantiivi)
+   6408     783 0,001330 vt (lyhenne)
+   6409     782 0,001329 diplomi-insinööri (substantiivi)
+   6410     782 0,001329 epäselvyys (substantiivi)
+   6411     782 0,001329 kuvernööri (substantiivi)
+   6412     782 0,001329 näkyvästi (adverbi)
+   6413     782 0,001329 opastus (substantiivi)
+   6414     782 0,001329 rumpu (substantiivi)
+   6415     782 0,001329 samainen (adjektiivi)
+   6416     782 0,001329 sota-aika (substantiivi)
+   6417     782 0,001329 terveyspalvelu (substantiivi)
+   6418     782 0,001329 toiminnallinen (adjektiivi)
+   6419     781 0,001327 epidemia (substantiivi)
+   6420     781 0,001327 treenata (verbi)
+   6421     780 0,001325 chris (erisnimi)
+   6422     780 0,001325 filosofi (substantiivi)
+   6423     780 0,001325 kertoja (substantiivi)
+   6424     780 0,001325 kho (lyhenne)
+   6425     780 0,001325 liioitella (verbi)
+   6426     780 0,001325 ponnistelu (substantiivi)
+   6427     780 0,001325 raide (substantiivi)
+   6428     780 0,001325 suistua (verbi)
+   6429     779 0,001323 benjamin (erisnimi)
+   6430     779 0,001323 kainulainen (erisnimi)
+   6431     779 0,001323 kapina (substantiivi)
+   6432     779 0,001323 osakekauppa (substantiivi)
+   6433     779 0,001323 säkylä (erisnimi)
+   6434     778 0,001322 ammattioppilaitos (substantiivi)
+   6435     778 0,001322 elintarviketeollisuus (substantiivi)
+   6436     778 0,001322 irlantilainen (adjektiivi)
+   6437     778 0,001322 jauhaa (verbi)
+   6438     778 0,001322 kestävyys (substantiivi)
+   6439     778 0,001322 ossi (erisnimi)
+   6440     778 0,001322 pankkipalvelu (substantiivi)
+   6441     778 0,001322 romani (substantiivi)
+   6442     778 0,001322 sijoituspaikka (substantiivi)
+   6443     778 0,001322 yllättäjä (substantiivi)
+   6444     777 0,001320 hiili (substantiivi)
+   6445     777 0,001320 huima (erisnimi)
+   6446     777 0,001320 kohdalleen (adverbi)
+   6447     777 0,001320 kotipaikka (substantiivi)
+   6448     777 0,001320 määttänen (erisnimi)
+   6449     777 0,001320 neuvonta (substantiivi)
+   6450     777 0,001320 siepata (verbi)
+   6451     777 0,001320 tulvia (verbi)
+   6452     777 0,001320 turvallisuuspoliittinen (adjektiivi)
+   6453     777 0,001320 valtio (erisnimi)
+   6454     776 0,001318 ali (erisnimi)
+   6455     776 0,001318 etelä (erisnimi)
+   6456     776 0,001318 huominen (adjektiivi)
+   6457     776 0,001318 laskeminen (substantiivi)
+   6458     776 0,001318 lomauttaa (verbi)
+   6459     776 0,001318 niilo (erisnimi)
+   6460     776 0,001318 oecd (lyhenne)
+   6461     776 0,001318 stanley (erisnimi)
+   6462     776 0,001318 visuaalinen (adjektiivi)
+   6463     776 0,001318 väistää (verbi)
+   6464     775 0,001317 aloitella (verbi)
+   6465     775 0,001317 cup (erisnimi)
+   6466     775 0,001317 eura (erisnimi)
+   6467     775 0,001317 juuttua (verbi)
+   6468     775 0,001317 kettu (substantiivi)
+   6469     775 0,001317 kilpailuttaa (verbi)
+   6470     775 0,001317 persoonallisuus (substantiivi)
+   6471     775 0,001317 saddam (erisnimi)
+   6472     775 0,001317 täyttäminen (substantiivi)
+   6473     775 0,001317 yhteenlaskea (verbi)
+   6474     774 0,001315 kyllönen (erisnimi)
+   6475     774 0,001315 lennättää (verbi)
+   6476     774 0,001315 luontainen (adjektiivi)
+   6477     774 0,001315 sisustus (substantiivi)
+   6478     774 0,001315 viritellä (verbi)
+   6479     774 0,001315 öcalan (erisnimi)
+   6480     773 0,001313 fiilis (substantiivi)
+   6481     773 0,001313 istutus (substantiivi)
+   6482     773 0,001313 jälkeenpäin (adverbi)
+   6483     773 0,001313 kesälahti (erisnimi)
+   6484     773 0,001313 paniikki (substantiivi)
+   6485     773 0,001313 paraneminen (substantiivi)
+   6486     773 0,001313 pienimuotoinen (adjektiivi)
+   6487     773 0,001313 siunaus (substantiivi)
+   6488     773 0,001313 suhdanne (substantiivi)
+   6489     773 0,001313 trio (substantiivi)
+   6490     773 0,001313 ympyrä (substantiivi)
+   6491     772 0,001312 asuinrakennus (substantiivi)
+   6492     772 0,001312 kolikko (substantiivi)
+   6493     772 0,001312 käräjät (substantiivi)
+   6494     772 0,001312 mänttäri (erisnimi)
+   6495     772 0,001312 nordbankenin (erisnimi)
+   6496     771 0,001310 monimuotoisuus (substantiivi)
+   6497     771 0,001310 natsi (substantiivi)
+   6498     771 0,001310 oaj (lyhenne)
+   6499     771 0,001310 oikeuskansleri (substantiivi)
+   6500     771 0,001310 sujuvasti (adverbi)
+   6501     770 0,001308 ala (erisnimi)
+   6502     770 0,001308 burns (erisnimi)
+   6503     770 0,001308 jääkaappi (substantiivi)
+   6504     770 0,001308 shakespeare (erisnimi)
+   6505     770 0,001308 vaajakoski (erisnimi)
+   6506     770 0,001308 yksinään (adverbi)
+   6507     770 0,001308 ymmärtäminen (substantiivi)
+   6508     769 0,001306 johdattaa (verbi)
+   6509     769 0,001306 kansalaisuus (substantiivi)
+   6510     769 0,001306 kvartetti (substantiivi)
+   6511     769 0,001306 moite (substantiivi)
+   6512     769 0,001306 osaaja (substantiivi)
+   6513     769 0,001306 parlamentaarikko (substantiivi)
+   6514     769 0,001306 ruuska (erisnimi)
+   6515     769 0,001306 yhä_useammin (adverbi)
+   6516     768 0,001305 eritoten (adverbi)
+   6517     768 0,001305 myytti (substantiivi)
+   6518     768 0,001305 nuorsuomalainen (substantiivi)
+   6519     768 0,001305 rikkaus (substantiivi)
+   6520     767 0,001303 etappi (substantiivi)
+   6521     767 0,001303 koolle (adverbi)
+   6522     767 0,001303 kunnianhimoinen (adjektiivi)
+   6523     767 0,001303 nainen (erisnimi)
+   6524     767 0,001303 takaraja (substantiivi)
+   6525     766 0,001301 avausjakso (substantiivi)
+   6526     766 0,001301 joukkomurha (substantiivi)
+   6527     766 0,001301 kyllin (adverbi)
+   6528     766 0,001301 läpäistä (verbi)
+   6529     766 0,001301 maanantainen (adjektiivi)
+   6530     766 0,001301 mitsubishi (erisnimi)
+   6531     766 0,001301 varalle (prepositio)
+   6532     765 0,001300 kehu (substantiivi)
+   6533     765 0,001300 nigeria (erisnimi)
+   6534     765 0,001300 siivu (substantiivi)
+   6535     765 0,001300 sula (adjektiivi)
+   6536     765 0,001300 ylpeys (substantiivi)
+   6537     764 0,001298 kiistaton (adjektiivi)
+   6538     764 0,001298 lindroos (erisnimi)
+   6539     764 0,001298 seuraaminen (substantiivi)
+   6540     764 0,001298 side (substantiivi)
+   6541     764 0,001298 siirtolainen (substantiivi)
+   6542     764 0,001298 suurkaupunki (substantiivi)
+   6543     764 0,001298 taipumus (substantiivi)
+   6544     764 0,001298 vieminen (substantiivi)
+   6545     764 0,001298 viite (substantiivi)
+   6546     763 0,001296 alla (adverbi)
+   6547     763 0,001296 jäljelle (adverbi)
+   6548     763 0,001296 kaurismäki (erisnimi)
+   6549     763 0,001296 keskellä (adverbi)
+   6550     763 0,001296 liikenneonnettomuus (substantiivi)
+   6551     763 0,001296 marttila (erisnimi)
+   6552     763 0,001296 oivallinen (adjektiivi)
+   6553     763 0,001296 osaksi (adverbi)
+   6554     763 0,001296 partio (substantiivi)
+   6555     763 0,001296 perhonen (substantiivi)
+   6556     763 0,001296 suomussalmi (erisnimi)
+   6557     763 0,001296 venyttää (verbi)
+   6558     763 0,001296 äänimäärä (substantiivi)
+   6559     762 0,001295 kahtia (adverbi)
+   6560     762 0,001295 osallinen (adjektiivi)
+   6561     762 0,001295 pelastuslaitos (substantiivi)
+   6562     762 0,001295 pohjois (adjektiivi)
+   6563     762 0,001295 varatuomari (substantiivi)
+   6564     761 0,001293 joutuminen (substantiivi)
+   6565     761 0,001293 kierrättää (verbi)
+   6566     761 0,001293 salaatti (substantiivi)
+   6567     761 0,001293 taidemaalari (substantiivi)
+   6568     761 0,001293 työhuone (substantiivi)
+   6569     760 0,001291 kittilä (erisnimi)
+   6570     760 0,001291 pataljoona (substantiivi)
+   6571     760 0,001291 skp (lyhenne)
+   6572     760 0,001291 työmatka (substantiivi)
+   6573     759 0,001289 auvinen (erisnimi)
+   6574     759 0,001289 brown (erisnimi)
+   6575     759 0,001289 italialainen (substantiivi)
+   6576     759 0,001289 kiireellinen (adjektiivi)
+   6577     759 0,001289 tiedottaminen (substantiivi)
+   6578     759 0,001289 vallan (adverbi)
+   6579     759 0,001289 yksityishenkilö (substantiivi)
+   6580     758 0,001288 askarruttaa (verbi)
+   6581     758 0,001288 joe (erisnimi)
+   6582     758 0,001288 sitä_vastoin (adverbi)
+   6583     758 0,001288 toimipaikka (substantiivi)
+   6584     758 0,001288 varovasti (adverbi)
+   6585     758 0,001288 yhteydenotto (substantiivi)
+   6586     757 0,001286 emma (erisnimi)
+   6587     757 0,001286 kierre (substantiivi)
+   6588     757 0,001286 lyhentäminen (substantiivi)
+   6589     757 0,001286 sivuta (verbi)
+   6590     757 0,001286 street (erisnimi)
+   6591     756 0,001284 boström (erisnimi)
+   6592     756 0,001284 keskikenttä (substantiivi)
+   6593     756 0,001284 kohentua (verbi)
+   6594     756 0,001284 kulissit (substantiivi)
+   6595     756 0,001284 luukku (substantiivi)
+   6596     756 0,001284 löysä (adjektiivi)
+   6597     756 0,001284 metrinen (adjektiivi)
+   6598     755 0,001283 keskisuomalainen (substantiivi)
+   6599     755 0,001283 keskusrikospoliisi (substantiivi)
+   6600     755 0,001283 kohokohta (substantiivi)
+   6601     755 0,001283 kopio (substantiivi)
+   6602     755 0,001283 kuulustella (verbi)
+   6603     755 0,001283 musiikkijuhla (substantiivi)
+   6604     755 0,001283 patrick (erisnimi)
+   6605     755 0,001283 pesu (substantiivi)
+   6606     755 0,001283 pielinen (erisnimi)
+   6607     755 0,001283 ristiä (verbi)
+   6608     755 0,001283 suurvalta (substantiivi)
+   6609     755 0,001283 toistamiseen (adverbi)
+   6610     755 0,001283 työnjako (substantiivi)
+   6611     755 0,001283 vakuus (substantiivi)
+   6612     755 0,001283 vasemmistoliitto (erisnimi)
+   6613     754 0,001281 korottaminen (substantiivi)
+   6614     754 0,001281 nykytilanne (substantiivi)
+   6615     754 0,001281 sovittelu (substantiivi)
+   6616     754 0,001281 totta_kai (interjektio)
+   6617     754 0,001281 vuorineuvos (substantiivi)
+   6618     753 0,001279 aikomus (substantiivi)
+   6619     753 0,001279 alustavasti (adverbi)
+   6620     753 0,001279 kainalo (substantiivi)
+   6621     753 0,001279 komentaa (verbi)
+   6622     753 0,001279 operaattori (substantiivi)
+   6623     752 0,001278 ammentaa (verbi)
+   6624     752 0,001278 avauserä (substantiivi)
+   6625     752 0,001278 ensikertalainen (adjektiivi)
+   6626     752 0,001278 jätehuolto (substantiivi)
+   6627     752 0,001278 kateus (substantiivi)
+   6628     752 0,001278 per (konjunktio)
+   6629     752 0,001278 pikkukaupunki (substantiivi)
+   6630     752 0,001278 pirkka (erisnimi)
+   6631     752 0,001278 rohjeta (verbi)
+   6632     752 0,001278 vitamiini (substantiivi)
+   6633     751 0,001276 haukiputaa (erisnimi)
+   6634     751 0,001276 hengittää (verbi)
+   6635     751 0,001276 räjäyttää (verbi)
+   6636     751 0,001276 sivistys (substantiivi)
+   6637     750 0,001274 ammattiyhdistysliike (substantiivi)
+   6638     750 0,001274 kerttu (erisnimi)
+   6639     750 0,001274 laakkonen (erisnimi)
+   6640     750 0,001274 maanantaiaamu (substantiivi)
+   6641     750 0,001274 ratsastaa (verbi)
+   6642     750 0,001274 tomaatti (substantiivi)
+   6643     750 0,001274 toveri (substantiivi)
+   6644     749 0,001272 häpeä (substantiivi)
+   6645     749 0,001272 juhlinta (substantiivi)
+   6646     749 0,001272 kostea (adjektiivi)
+   6647     749 0,001272 liiaksi (adverbi)
+   6648     749 0,001272 lopputurnaus (substantiivi)
+   6649     749 0,001272 prosenttisesti (adverbi)
+   6650     749 0,001272 sola (erisnimi)
+   6651     749 0,001272 taitavasti (adverbi)
+   6652     749 0,001272 tiistainen (adjektiivi)
+   6653     749 0,001272 viivästyä (verbi)
+   6654     749 0,001272 vuosi_vuodelta (adverbi)
+   6655     748 0,001271 aineellinen (adjektiivi)
+   6656     748 0,001271 ammattimainen (adjektiivi)
+   6657     748 0,001271 ilman (adverbi)
+   6658     748 0,001271 kansainvälistyminen (substantiivi)
+   6659     748 0,001271 kari (substantiivi)
+   6660     748 0,001271 koordinoida (verbi)
+   6661     748 0,001271 laivasto (substantiivi)
+   6662     748 0,001271 peto (substantiivi)
+   6663     748 0,001271 prikaati (substantiivi)
+   6664     748 0,001271 ympäristölautakunta (substantiivi)
+   6665     747 0,001269 alkuerä (substantiivi)
+   6666     747 0,001269 kuivalainen (erisnimi)
+   6667     747 0,001269 sattumalta (adverbi)
+   6668     746 0,001267 club (erisnimi)
+   6669     746 0,001267 ele (substantiivi)
+   6670     746 0,001267 hankasalmi (erisnimi)
+   6671     746 0,001267 hoitopaikka (substantiivi)
+   6672     746 0,001267 lindfors (erisnimi)
+   6673     746 0,001267 toiveikas (adjektiivi)
+   6674     746 0,001267 torstainen (adjektiivi)
+   6675     745 0,001266 alistaa (verbi)
+   6676     745 0,001266 asukasluku (substantiivi)
+   6677     745 0,001266 bildt (erisnimi)
+   6678     745 0,001266 juva (erisnimi)
+   6679     745 0,001266 kononen (erisnimi)
+   6680     745 0,001266 levy-yhtiö (substantiivi)
+   6681     744 0,001264 myyntipäällikkö (substantiivi)
+   6682     744 0,001264 oikeuslaitos (substantiivi)
+   6683     744 0,001264 piia (erisnimi)
+   6684     744 0,001264 ruokavalio (substantiivi)
+   6685     744 0,001264 tämänkertainen (adjektiivi)
+   6686     744 0,001264 vihjata (verbi)
+   6687     743 0,001262 alijäämä (substantiivi)
+   6688     743 0,001262 kuolonuhri (substantiivi)
+   6689     743 0,001262 kuru (erisnimi)
+   6690     743 0,001262 metsä (erisnimi)
+   6691     743 0,001262 tukka (substantiivi)
+   6692     743 0,001262 valtiotiede (substantiivi)
+   6693     742 0,001261 asianmukainen (adjektiivi)
+   6694     742 0,001261 erikoislääkäri (substantiivi)
+   6695     742 0,001261 korpela (erisnimi)
+   6696     742 0,001261 lukien (prepositio)
+   6697     742 0,001261 neste (substantiivi)
+   6698     742 0,001261 raiskaus (substantiivi)
+   6699     742 0,001261 suuryritys (substantiivi)
+   6700     742 0,001261 tippa (substantiivi)
+   6701     742 0,001261 veitsi (substantiivi)
+   6702     742 0,001261 zyskowicz (erisnimi)
+   6703     741 0,001259 antiikki (substantiivi)
+   6704     741 0,001259 hatanpää (erisnimi)
+   6705     741 0,001259 holmén (erisnimi)
+   6706     741 0,001259 kuuleminen (substantiivi)
+   6707     741 0,001259 luovuttaminen (substantiivi)
+   6708     741 0,001259 mäntyniemi (erisnimi)
+   6709     741 0,001259 tarvainen (erisnimi)
+   6710     740 0,001257 liukko (erisnimi)
+   6711     740 0,001257 murtautua (verbi)
+   6712     740 0,001257 suullinen (adjektiivi)
+   6713     739 0,001255 edmonton (erisnimi)
+   6714     739 0,001255 elintaso (substantiivi)
+   6715     739 0,001255 muassa (prepositio)
+   6716     739 0,001255 pitkästä_aikaa (adverbi)
+   6717     739 0,001255 saariselkä (erisnimi)
+   6718     739 0,001255 tase (substantiivi)
+   6719     739 0,001255 välittyä (verbi)
+   6720     739 0,001255 yleisradio (substantiivi)
+   6721     738 0,001254 beatles (erisnimi)
+   6722     738 0,001254 hiiri (substantiivi)
+   6723     738 0,001254 ihanne (substantiivi)
+   6724     738 0,001254 lahko (substantiivi)
+   6725     738 0,001254 markkinointipäällikkö (substantiivi)
+   6726     738 0,001254 rikki (adverbi)
+   6727     737 0,001252 aluesairaala (substantiivi)
+   6728     737 0,001252 noudattaminen (substantiivi)
+   6729     736 0,001250 aleksei (erisnimi)
+   6730     736 0,001250 irene (erisnimi)
+   6731     736 0,001250 kipinä (substantiivi)
+   6732     736 0,001250 kreikkalainen (adjektiivi)
+   6733     736 0,001250 puhtaus (substantiivi)
+   6734     736 0,001250 realismi (substantiivi)
+   6735     736 0,001250 vihainen (adjektiivi)
+   6736     735 0,001249 eric (erisnimi)
+   6737     735 0,001249 kiri (substantiivi)
+   6738     735 0,001249 kivistö (erisnimi)
+   6739     735 0,001249 koulutusohjelma (substantiivi)
+   6740     735 0,001249 nyrkki (substantiivi)
+   6741     735 0,001249 vaivautua (verbi)
+   6742     735 0,001249 vapo (erisnimi)
+   6743     734 0,001247 aarre (substantiivi)
+   6744     734 0,001247 aavistus (substantiivi)
+   6745     734 0,001247 jalkapalloliiga (substantiivi)
+   6746     734 0,001247 kemira (erisnimi)
+   6747     734 0,001247 loimu (erisnimi)
+   6748     734 0,001247 nokka (substantiivi)
+   6749     734 0,001247 oivallus (substantiivi)
+   6750     734 0,001247 world (erisnimi)
+   6751     733 0,001245 edesauttaa (verbi)
+   6752     733 0,001245 murehtia (verbi)
+   6753     733 0,001245 palolaitos (substantiivi)
+   6754     732 0,001244 ankkuri (substantiivi)
+   6755     732 0,001244 keisari (substantiivi)
+   6756     732 0,001244 merkillinen (adjektiivi)
+   6757     732 0,001244 perimmäinen (adjektiivi)
+   6758     732 0,001244 saneerata (verbi)
+   6759     731 0,001242 kananmuna (substantiivi)
+   6760     731 0,001242 liperi (substantiivi)
+   6761     731 0,001242 pakolaisjärjestö (substantiivi)
+   6762     731 0,001242 täti (substantiivi)
+   6763     731 0,001242 yhtä_lailla (adverbi)
+   6764     730 0,001240 jenkki (substantiivi)
+   6765     730 0,001240 kasvattaja (substantiivi)
+   6766     730 0,001240 loppukesä (substantiivi)
+   6767     730 0,001240 mukaan_lukien (adverbi)
+   6768     730 0,001240 riekkinen (erisnimi)
+   6769     730 0,001240 syvällinen (adjektiivi)
+   6770     729 0,001238 sangen (adverbi)
+   6771     729 0,001238 siinä_määrin (adverbi)
+   6772     729 0,001238 tusina (substantiivi)
+   6773     728 0,001237 jalkakäytävä (substantiivi)
+   6774     728 0,001237 korpi (erisnimi)
+   6775     728 0,001237 kuusivuotias (adjektiivi)
+   6776     728 0,001237 lähipiiri (substantiivi)
+   6777     728 0,001237 palatsi (substantiivi)
+   6778     728 0,001237 tragedia (substantiivi)
+   6779     728 0,001237 tuuri (erisnimi)
+   6780     728 0,001237 wimbledon (erisnimi)
+   6781     727 0,001235 kesäaika (substantiivi)
+   6782     727 0,001235 selventää (verbi)
+   6783     727 0,001235 säästäminen (substantiivi)
+   6784     727 0,001235 voimistua (verbi)
+   6785     726 0,001233 ampuminen (substantiivi)
+   6786     726 0,001233 karjalainen (adjektiivi)
+   6787     726 0,001233 kylvää (verbi)
+   6788     726 0,001233 muualla_kuin (adverbi)
+   6789     726 0,001233 priha (erisnimi)
+   6790     726 0,001233 puinen (adjektiivi)
+   6791     726 0,001233 sairanen (erisnimi)
+   6792     725 0,001232 aika_ajoin (adverbi)
+   6793     725 0,001232 carlo (erisnimi)
+   6794     725 0,001232 korkotaso (substantiivi)
+   6795     725 0,001232 muistelma (substantiivi)
+   6796     725 0,001232 sulkeutua (verbi)
+   6797     725 0,001232 yo (adverbi)
+   6798     724 0,001230 detroit (erisnimi)
+   6799     724 0,001230 huonokuntoinen (adjektiivi)
+   6800     724 0,001230 kojonkoski (erisnimi)
+   6801     724 0,001230 menekki (substantiivi)
+   6802     724 0,001230 menestyksekäs (adjektiivi)
+   6803     724 0,001230 mopo (substantiivi)
+   6804     724 0,001230 otella (verbi)
+   6805     724 0,001230 periaatepäätös (substantiivi)
+   6806     724 0,001230 rasitus (substantiivi)
+   6807     724 0,001230 roope (erisnimi)
+   6808     724 0,001230 sukeltaa (verbi)
+   6809     724 0,001230 syrjäytyä (verbi)
+   6810     724 0,001230 työläs (adjektiivi)
+   6811     724 0,001230 velallinen (substantiivi)
+   6812     724 0,001230 vilkkaasti (adverbi)
+   6813     723 0,001228 aseistaa (verbi)
+   6814     723 0,001228 haikailla (verbi)
+   6815     723 0,001228 jätkä (substantiivi)
+   6816     723 0,001228 kirvesniemi (erisnimi)
+   6817     723 0,001228 kustaa (erisnimi)
+   6818     723 0,001228 loppi (erisnimi)
+   6819     723 0,001228 urjala (erisnimi)
+   6820     723 0,001228 varmistaminen (substantiivi)
+   6821     723 0,001228 varovaisesti (adverbi)
+   6822     722 0,001227 alainen (substantiivi)
+   6823     722 0,001227 ensio (erisnimi)
+   6824     722 0,001227 iso (erisnimi)
+   6825     722 0,001227 kaupunginvaltuutettu (substantiivi)
+   6826     722 0,001227 kohderyhmä (substantiivi)
+   6827     722 0,001227 kouvo (erisnimi)
+   6828     722 0,001227 siinä_tapauksessa (adverbi)
+   6829     722 0,001227 tuoreeltaan (adverbi)
+   6830     722 0,001227 vietto (substantiivi)
+   6831     722 0,001227 vyöhyke (substantiivi)
+   6832     721 0,001225 enemmän_tai_vähemmän (adverbi)
+   6833     721 0,001225 inkeri (erisnimi)
+   6834     721 0,001225 sovitella (verbi)
+   6835     721 0,001225 syrjintä (substantiivi)
+   6836     720 0,001223 etelä-amerikka (erisnimi)
+   6837     720 0,001223 laitoshoito (substantiivi)
+   6838     720 0,001223 swanljung (erisnimi)
+   6839     720 0,001223 tapella (verbi)
+   6840     720 0,001223 tilaaja (substantiivi)
+   6841     720 0,001223 yhteenliittymä (substantiivi)
+   6842     719 0,001221 istuin (substantiivi)
+   6843     719 0,001221 jonny (erisnimi)
+   6844     719 0,001221 kakkossija (substantiivi)
+   6845     719 0,001221 miss (erisnimi)
+   6846     719 0,001221 onnitella (verbi)
+   6847     719 0,001221 painotus (substantiivi)
+   6848     719 0,001221 trondheim (erisnimi)
+   6849     718 0,001220 apuväline (substantiivi)
+   6850     718 0,001220 lyhytaikainen (adjektiivi)
+   6851     718 0,001220 milli (substantiivi)
+   6852     718 0,001220 sunnuntaiaamu (substantiivi)
+   6853     717 0,001218 davis (erisnimi)
+   6854     717 0,001218 horjua (verbi)
+   6855     717 0,001218 kohentaminen (substantiivi)
+   6856     717 0,001218 leif (erisnimi)
+   6857     717 0,001218 loistavasti (adverbi)
+   6858     717 0,001218 palopäällikkö (substantiivi)
+   6859     717 0,001218 päivämäärä (substantiivi)
+   6860     717 0,001218 taittua (verbi)
+   6861     716 0,001216 alta (adverbi)
+   6862     716 0,001216 georgia (erisnimi)
+   6863     716 0,001216 hattula (erisnimi)
+   6864     716 0,001216 iisalmi (erisnimi)
+   6865     716 0,001216 itsenäisesti (adverbi)
+   6866     716 0,001216 joukosta (prepositio)
+   6867     716 0,001216 karttua (verbi)
+   6868     716 0,001216 kokoaminen (substantiivi)
+   6869     716 0,001216 onni (erisnimi)
+   6870     716 0,001216 päivystys (substantiivi)
+   6871     716 0,001216 ryhmittymä (substantiivi)
+   6872     716 0,001216 suomennos (substantiivi)
+   6873     716 0,001216 teknillinen (adjektiivi)
+   6874     716 0,001216 valkokangas (substantiivi)
+   6875     715 0,001215 avioero (substantiivi)
+   6876     715 0,001215 ihmetyttää (verbi)
+   6877     715 0,001215 katsastaa (verbi)
+   6878     715 0,001215 löytyminen (substantiivi)
+   6879     715 0,001215 mandela (erisnimi)
+   6880     715 0,001215 oppositiojohtaja (substantiivi)
+   6881     715 0,001215 perjantainen (adjektiivi)
+   6882     715 0,001215 viestiä (verbi)
+   6883     714 0,001213 anastaa (verbi)
+   6884     714 0,001213 for (lyhenne)
+   6885     714 0,001213 joutsa (erisnimi)
+   6886     714 0,001213 kanne (substantiivi)
+   6887     714 0,001213 karku (substantiivi)
+   6888     714 0,001213 koheta (verbi)
+   6889     714 0,001213 leski (substantiivi)
+   6890     714 0,001213 pohjustaa (verbi)
+   6891     713 0,001211 arveluttaa (verbi)
+   6892     713 0,001211 hannula (erisnimi)
+   6893     713 0,001211 kirjo (substantiivi)
+   6894     713 0,001211 läheltä (adverbi)
+   6895     713 0,001211 miehinen (adjektiivi)
+   6896     713 0,001211 siivittää (verbi)
+   6897     713 0,001211 taaksepäin (adverbi)
+   6898     713 0,001211 tampella (erisnimi)
+   6899     713 0,001211 ti (lyhenne)
+   6900     713 0,001211 toimintamalli (substantiivi)
+   6901     713 0,001211 verilöyly (substantiivi)
+   6902     712 0,001210 annikki (erisnimi)
+   6903     712 0,001210 kaari (erisnimi)
+   6904     712 0,001210 kotka (substantiivi)
+   6905     712 0,001210 lisätieto (substantiivi)
+   6906     712 0,001210 niemi (substantiivi)
+   6907     712 0,001210 selvittely (substantiivi)
+   6908     711 0,001208 harju (substantiivi)
+   6909     711 0,001208 kfor (erisnimi)
+   6910     711 0,001208 laitahyökkääjä (substantiivi)
+   6911     711 0,001208 lähiviikko (substantiivi)
+   6912     711 0,001208 muotoutua (verbi)
+   6913     711 0,001208 optimistinen (adjektiivi)
+   6914     711 0,001208 panu (erisnimi)
+   6915     711 0,001208 pohjonen (erisnimi)
+   6916     711 0,001208 sirkka-liisa (erisnimi)
+   6917     711 0,001208 ykkönen (erisnimi)
+   6918     710 0,001206 armas (erisnimi)
+   6919     710 0,001206 kelpo (adjektiivi)
+   6920     710 0,001206 me_kaikki (pronomini)
+   6921     710 0,001206 neljäsosa (substantiivi)
+   6922     710 0,001206 sotia (verbi)
+   6923     710 0,001206 veroton (adjektiivi)
+   6924     709 0,001205 koripalloilu (substantiivi)
+   6925     709 0,001205 lassi (erisnimi)
+   6926     709 0,001205 sisälle (prepositio)
+   6927     708 0,001203 abb (lyhenne)
+   6928     708 0,001203 marttinen (erisnimi)
+   6929     708 0,001203 miina (substantiivi)
+   6930     708 0,001203 muinainen (adjektiivi)
+   6931     708 0,001203 oloinen (adjektiivi)
+   6932     708 0,001203 päivittäistavarakauppa (substantiivi)
+   6933     708 0,001203 päätavoite (substantiivi)
+   6934     708 0,001203 siivous (substantiivi)
+   6935     708 0,001203 työväki (substantiivi)
+   6936     708 0,001203 varsova (erisnimi)
+   6937     708 0,001203 viaton (adjektiivi)
+   6938     707 0,001201 lumisade (substantiivi)
+   6939     707 0,001201 osakepääoma (substantiivi)
+   6940     707 0,001201 pöytäkirja (substantiivi)
+   6941     707 0,001201 teoreettinen (adjektiivi)
+   6942     707 0,001201 ympäristövaikutus (substantiivi)
+   6943     706 0,001199 allakka (substantiivi)
+   6944     706 0,001199 lautanen (substantiivi)
+   6945     705 0,001198 kulkeutua (verbi)
+   6946     705 0,001198 kuoria (verbi)
+   6947     705 0,001198 kärjistyä (verbi)
+   6948     705 0,001198 kävelykatu (substantiivi)
+   6949     705 0,001198 milla (erisnimi)
+   6950     705 0,001198 nissinen (erisnimi)
+   6951     705 0,001198 oulainen (erisnimi)
+   6952     705 0,001198 pelastus (substantiivi)
+   6953     705 0,001198 sak:lainen (adjektiivi)
+   6954     705 0,001198 tapaturma (substantiivi)
+   6955     705 0,001198 topi (erisnimi)
+   6956     705 0,001198 valistus (substantiivi)
+   6957     705 0,001198 varjostaa (verbi)
+   6958     705 0,001198 väärentää (verbi)
+   6959     704 0,001196 aleksi (erisnimi)
+   6960     704 0,001196 alusta (substantiivi)
+   6961     704 0,001196 joutsen (substantiivi)
+   6962     704 0,001196 kupittaa (erisnimi)
+   6963     704 0,001196 parisen (lukusana)
+   6964     704 0,001196 pato (substantiivi)
+   6965     704 0,001196 pitoisuus (substantiivi)
+   6966     704 0,001196 siilinjärvi (erisnimi)
+   6967     704 0,001196 valtionpäämies (substantiivi)
+   6968     703 0,001194 aula (substantiivi)
+   6969     703 0,001194 intiaani (substantiivi)
+   6970     703 0,001194 metso (erisnimi)
+   6971     703 0,001194 rannikko (erisnimi)
+   6972     703 0,001194 suppea (adjektiivi)
+   6973     703 0,001194 tukku (substantiivi)
+   6974     702 0,001193 kastaa (verbi)
+   6975     702 0,001193 rakennuttaa (verbi)
+   6976     702 0,001193 samankaltainen (adjektiivi)
+   6977     702 0,001193 synti (substantiivi)
+   6978     702 0,001193 tolppa (substantiivi)
+   6979     701 0,001191 hammaslääkäri (substantiivi)
+   6980     701 0,001191 henna (erisnimi)
+   6981     701 0,001191 jakaantua (verbi)
+   6982     701 0,001191 kärppä (substantiivi)
+   6983     701 0,001191 maajoukko (substantiivi)
+   6984     701 0,001191 puheenjohtajuuskausi (substantiivi)
+   6985     701 0,001191 ralf (erisnimi)
+   6986     701 0,001191 sas (lyhenne)
+   6987     701 0,001191 vetäminen (substantiivi)
+   6988     701 0,001191 ympäristöasia (substantiivi)
+   6989     700 0,001189 asuttaa (verbi)
+   6990     700 0,001189 heljä (erisnimi)
+   6991     700 0,001189 karkea (adjektiivi)
+   6992     700 0,001189 käsiala (substantiivi)
+   6993     700 0,001189 lupautua (verbi)
+   6994     700 0,001189 tiheä (adjektiivi)
+   6995     700 0,001189 työläinen (substantiivi)
+   6996     700 0,001189 ympärillä (adverbi)
+   6997     699 0,001188 honda (erisnimi)
+   6998     699 0,001188 jälkeläinen (substantiivi)
+   6999     699 0,001188 liittokohtainen (adjektiivi)
+   7000     699 0,001188 pakettiauto (substantiivi)
+   7001     699 0,001188 setä (substantiivi)
+   7002     699 0,001188 tiedustelu (substantiivi)
+   7003     698 0,001186 aiheuttaja (substantiivi)
+   7004     698 0,001186 itsenäistyä (verbi)
+   7005     698 0,001186 kansallisuus (substantiivi)
+   7006     698 0,001186 laantua (verbi)
+   7007     698 0,001186 leila (erisnimi)
+   7008     698 0,001186 majoitus (substantiivi)
+   7009     698 0,001186 varakas (adjektiivi)
+   7010     698 0,001186 veli-pekka (erisnimi)
+   7011     697 0,001184 jiang (erisnimi)
+   7012     697 0,001184 kopteri (substantiivi)
+   7013     697 0,001184 työtehtävä (substantiivi)
+   7014     696 0,001182 akt (lyhenne)
+   7015     696 0,001182 anatoli (erisnimi)
+   7016     696 0,001182 annika (erisnimi)
+   7017     696 0,001182 kiitollinen (adjektiivi)
+   7018     696 0,001182 liittolainen (substantiivi)
+   7019     696 0,001182 maahantuoja (substantiivi)
+   7020     696 0,001182 pirteä (adjektiivi)
+   7021     696 0,001182 tappiollinen (adjektiivi)
+   7022     696 0,001182 vastapuoli (substantiivi)
+   7023     695 0,001181 jasser (erisnimi)
+   7024     695 0,001181 kuumuus (substantiivi)
+   7025     695 0,001181 matkatoimisto (substantiivi)
+   7026     695 0,001181 sinnitellä (verbi)
+   7027     695 0,001181 smp (lyhenne)
+   7028     695 0,001181 tekes (erisnimi)
+   7029     694 0,001179 esikunta (substantiivi)
+   7030     694 0,001179 jäseninen (adjektiivi)
+   7031     694 0,001179 länsi-eurooppa (erisnimi)
+   7032     694 0,001179 maailmanlaajuisesti (adverbi)
+   7033     694 0,001179 maalinteko (substantiivi)
+   7034     693 0,001177 alexander (erisnimi)
+   7035     693 0,001177 hausjärvi (erisnimi)
+   7036     693 0,001177 huuli (substantiivi)
+   7037     693 0,001177 kuunnelma (substantiivi)
+   7038     693 0,001177 rahapula (substantiivi)
+   7039     693 0,001177 väitös (substantiivi)
+   7040     693 0,001177 west (erisnimi)
+   7041     692 0,001176 aprikoida (verbi)
+   7042     692 0,001176 keskiosa (substantiivi)
+   7043     692 0,001176 laakso (substantiivi)
+   7044     692 0,001176 poiketen (prepositio)
+   7045     692 0,001176 tehy (erisnimi)
+   7046     691 0,001174 elinympäristö (substantiivi)
+   7047     691 0,001174 harvinaisuus (substantiivi)
+   7048     691 0,001174 jonkin_aikaa (adverbi)
+   7049     691 0,001174 oikeistolainen (adjektiivi)
+   7050     691 0,001174 sointi (substantiivi)
+   7051     691 0,001174 uhkailla (verbi)
+   7052     690 0,001172 aikaansaada (verbi)
+   7053     690 0,001172 aku (erisnimi)
+   7054     690 0,001172 keinotekoinen (adjektiivi)
+   7055     690 0,001172 palkkaaminen (substantiivi)
+   7056     690 0,001172 rami (erisnimi)
+   7057     690 0,001172 reppu (substantiivi)
+   7058     690 0,001172 silkka (adjektiivi)
+   7059     689 0,001171 illansuu (substantiivi)
+   7060     689 0,001171 isoäiti (substantiivi)
+   7061     689 0,001171 jack (erisnimi)
+   7062     689 0,001171 loppuviikko (substantiivi)
+   7063     689 0,001171 nelisen (lukusana)
+   7064     689 0,001171 pelkonen (erisnimi)
+   7065     689 0,001171 perään (adverbi)
+   7066     688 0,001169 arvovalta (substantiivi)
+   7067     688 0,001169 hinnoittelu (substantiivi)
+   7068     688 0,001169 kaj (erisnimi)
+   7069     688 0,001169 kuula (substantiivi)
+   7070     688 0,001169 kävijämäärä (substantiivi)
+   7071     688 0,001169 määritelmä (substantiivi)
+   7072     688 0,001169 oikeudellinen (adjektiivi)
+   7073     688 0,001169 porvarillinen (adjektiivi)
+   7074     688 0,001169 räätälöidä (verbi)
+   7075     688 0,001169 stockmann (erisnimi)
+   7076     688 0,001169 syrjäinen (adjektiivi)
+   7077     688 0,001169 tiistaiaamu (substantiivi)
+   7078     687 0,001167 basso (substantiivi)
+   7079     687 0,001167 kuosmanen (erisnimi)
+   7080     687 0,001167 posio (erisnimi)
+   7081     687 0,001167 ryöstäjä (substantiivi)
+   7082     687 0,001167 sopeutuminen (substantiivi)
+   7083     687 0,001167 taimi (substantiivi)
+   7084     686 0,001165 alapuolella (prepositio)
+   7085     686 0,001165 hukkaan (adverbi)
+   7086     686 0,001165 hulkko (erisnimi)
+   7087     686 0,001165 keskiaikainen (adjektiivi)
+   7088     686 0,001165 koulunkäynti (substantiivi)
+   7089     686 0,001165 neuvottelupöytä (substantiivi)
+   7090     686 0,001165 päätoiminen (adjektiivi)
+   7091     686 0,001165 tilintarkastaja (substantiivi)
+   7092     685 0,001164 kattila (substantiivi)
+   7093     685 0,001164 konsti (substantiivi)
+   7094     685 0,001164 oulunsalo (erisnimi)
+   7095     685 0,001164 paja (substantiivi)
+   7096     685 0,001164 pujottelu (substantiivi)
+   7097     685 0,001164 vihata (verbi)
+   7098     685 0,001164 vilho (erisnimi)
+   7099     685 0,001164 yläpuolelle (prepositio)
+   7100     684 0,001162 auto (erisnimi)
+   7101     684 0,001162 järeä (adjektiivi)
+   7102     684 0,001162 kirjanpito (substantiivi)
+   7103     684 0,001162 korpilahti (erisnimi)
+   7104     684 0,001162 madeleine (erisnimi)
+   7105     684 0,001162 mia (erisnimi)
+   7106     684 0,001162 r (lyhenne)
+   7107     684 0,001162 tähtinen (erisnimi)
+   7108     683 0,001160 komento (substantiivi)
+   7109     683 0,001160 kristian (erisnimi)
+   7110     683 0,001160 laitteisto (substantiivi)
+   7111     683 0,001160 putina (erisnimi)
+   7112     683 0,001160 sivuuttaa (verbi)
+   7113     683 0,001160 soul (erisnimi)
+   7114     683 0,001160 teollisuusalue (substantiivi)
+   7115     683 0,001160 terveydenhoito (substantiivi)
+   7116     683 0,001160 tokaista (verbi)
+   7117     683 0,001160 tämmöinen (adjektiivi)
+   7118     682 0,001159 erehdys (substantiivi)
+   7119     682 0,001159 kansanmusiikki (substantiivi)
+   7120     682 0,001159 kylätoimikunta (substantiivi)
+   7121     682 0,001159 murros (substantiivi)
+   7122     682 0,001159 perussuomalainen (substantiivi)
+   7123     682 0,001159 puijo (erisnimi)
+   7124     682 0,001159 puolustaminen (substantiivi)
+   7125     682 0,001159 rauhanomainen (adjektiivi)
+   7126     682 0,001159 rintala (erisnimi)
+   7127     682 0,001159 sosialismi (substantiivi)
+   7128     682 0,001159 vartiainen (erisnimi)
+   7129     681 0,001157 ambulanssi (substantiivi)
+   7130     681 0,001157 disney (erisnimi)
+   7131     681 0,001157 koistinen (erisnimi)
+   7132     681 0,001157 mehu (substantiivi)
+   7133     681 0,001157 psykologinen (adjektiivi)
+   7134     680 0,001155 hakijamaa (substantiivi)
+   7135     680 0,001155 hylkääminen (substantiivi)
+   7136     680 0,001155 kasvis (substantiivi)
+   7137     680 0,001155 kolmivuotinen (adjektiivi)
+   7138     680 0,001155 maanmies (substantiivi)
+   7139     680 0,001155 paheta (verbi)
+   7140     680 0,001155 santeri (erisnimi)
+   7141     680 0,001155 syöminen (substantiivi)
+   7142     679 0,001154 elämäntyö (substantiivi)
+   7143     679 0,001154 eurajoki (erisnimi)
+   7144     679 0,001154 hallintojohtaja (substantiivi)
+   7145     679 0,001154 näkymätön (adjektiivi)
+   7146     679 0,001154 pelkistää (verbi)
+   7147     679 0,001154 pesiä (verbi)
+   7148     679 0,001154 päiväsakko (substantiivi)
+   7149     679 0,001154 rahoittaminen (substantiivi)
+   7150     679 0,001154 ravistella (verbi)
+   7151     678 0,001152 kipeästi (adverbi)
+   7152     678 0,001152 lauta (substantiivi)
+   7153     678 0,001152 pohjantähti (erisnimi)
+   7154     677 0,001150 ankarasti (adverbi)
+   7155     677 0,001150 heimo (erisnimi)
+   7156     677 0,001150 huvila (substantiivi)
+   7157     677 0,001150 ihanteellinen (adjektiivi)
+   7158     677 0,001150 ivalo (erisnimi)
+   7159     677 0,001150 kehitystyö (substantiivi)
+   7160     677 0,001150 kerääminen (substantiivi)
+   7161     677 0,001150 palkkaus (substantiivi)
+   7162     677 0,001150 skandinavia (erisnimi)
+   7163     677 0,001150 tutustuminen (substantiivi)
+   7164     677 0,001150 työvoimapula (substantiivi)
+   7165     677 0,001150 varvas (substantiivi)
+   7166     677 0,001150 välistä (prepositio)
+   7167     677 0,001150 välittäminen (substantiivi)
+   7168     676 0,001148 arvonimi (substantiivi)
+   7169     676 0,001148 fiksu (adjektiivi)
+   7170     676 0,001148 hivenen (adverbi)
+   7171     676 0,001148 jänis (substantiivi)
+   7172     676 0,001148 lampi (substantiivi)
+   7173     676 0,001148 pn (lyhenne)
+   7174     676 0,001148 puutalo (substantiivi)
+   7175     676 0,001148 utelias (adjektiivi)
+   7176     675 0,001147 edistys (substantiivi)
+   7177     675 0,001147 hiippakunta (substantiivi)
+   7178     675 0,001147 konepaja (substantiivi)
+   7179     675 0,001147 kristinusko (substantiivi)
+   7180     675 0,001147 luottavainen (adjektiivi)
+   7181     675 0,001147 sara (substantiivi)
+   7182     675 0,001147 sisältä (prepositio)
+   7183     675 0,001147 tarha (substantiivi)
+   7184     674 0,001145 avustusjärjestö (substantiivi)
+   7185     674 0,001145 jalonen (erisnimi)
+   7186     674 0,001145 jossain_määrin (adverbi)
+   7187     674 0,001145 luoma (erisnimi)
+   7188     674 0,001145 merkkipäivä (substantiivi)
+   7189     674 0,001145 satakunta (lukusana)
+   7190     674 0,001145 toimeksianto (substantiivi)
+   7191     674 0,001145 tämä_kaikki (pronomini)
+   7192     673 0,001143 elvyttää (verbi)
+   7193     673 0,001143 etuus (substantiivi)
+   7194     673 0,001143 ira (erisnimi)
+   7195     673 0,001143 kirjakauppa (substantiivi)
+   7196     673 0,001143 liikkuvuus (substantiivi)
+   7197     673 0,001143 nikolai (erisnimi)
+   7198     673 0,001143 tammerkoski (erisnimi)
+   7199     673 0,001143 tavalla_tai_toisella (adverbi)
+   7200     672 0,001142 albert (erisnimi)
+   7201     672 0,001142 diplomaattinen (adjektiivi)
+   7202     672 0,001142 elektroniikkateollisuus (substantiivi)
+   7203     672 0,001142 kerava (erisnimi)
+   7204     672 0,001142 kevin (erisnimi)
+   7205     672 0,001142 mclaren (erisnimi)
+   7206     672 0,001142 nurmi (substantiivi)
+   7207     672 0,001142 pyörätie (substantiivi)
+   7208     672 0,001142 somero (erisnimi)
+   7209     671 0,001140 alaikäinen (substantiivi)
+   7210     671 0,001140 enin (adjektiivi)
+   7211     671 0,001140 eskelinen (erisnimi)
+   7212     671 0,001140 hyppääjä (substantiivi)
+   7213     671 0,001140 laiha (adjektiivi)
+   7214     671 0,001140 maalintekijä (substantiivi)
+   7215     671 0,001140 miehitys (substantiivi)
+   7216     671 0,001140 paikoilleen (adverbi)
+   7217     671 0,001140 pr (lyhenne)
+   7218     671 0,001140 primakov (erisnimi)
+   7219     671 0,001140 ripustaa (verbi)
+   7220     671 0,001140 talouskehitys (substantiivi)
+   7221     671 0,001140 toivoton (adjektiivi)
+   7222     670 0,001138 baletti (substantiivi)
+   7223     670 0,001138 ennen_pitkää (adverbi)
+   7224     670 0,001138 harha (substantiivi)
+   7225     670 0,001138 julkkis (substantiivi)
+   7226     670 0,001138 kaustinen (erisnimi)
+   7227     670 0,001138 kuopiolainen (adjektiivi)
+   7228     670 0,001138 pilkkoa (verbi)
+   7229     670 0,001138 välttäminen (substantiivi)
+   7230     669 0,001137 hakulinen (erisnimi)
+   7231     669 0,001137 paikalleen (adverbi)
+   7232     669 0,001137 pitkäjänteinen (adjektiivi)
+   7233     669 0,001137 subaru (erisnimi)
+   7234     668 0,001135 kaikua (verbi)
+   7235     668 0,001135 kanto (substantiivi)
+   7236     668 0,001135 pentu (substantiivi)
+   7237     668 0,001135 sinivalkoinen (adjektiivi)
+   7238     668 0,001135 todennäköisyys (substantiivi)
+   7239     668 0,001135 turvallisuusjoukko (substantiivi)
+   7240     667 0,001133 horjuttaa (verbi)
+   7241     667 0,001133 leikkaaminen (substantiivi)
+   7242     667 0,001133 pakarinen (erisnimi)
+   7243     667 0,001133 scott (erisnimi)
+   7244     667 0,001133 valmiste (substantiivi)
+   7245     666 0,001131 alhaalla (adverbi)
+   7246     666 0,001131 kadottaa (verbi)
+   7247     666 0,001131 nuorisotyö (substantiivi)
+   7248     666 0,001131 pensas (substantiivi)
+   7249     666 0,001131 romuttaa (verbi)
+   7250     666 0,001131 rumpali (substantiivi)
+   7251     666 0,001131 vaikeutua (verbi)
+   7252     665 0,001130 ins (lyhenne)
+   7253     665 0,001130 koristella (verbi)
+   7254     665 0,001130 käväistä (verbi)
+   7255     665 0,001130 logiikka (substantiivi)
+   7256     665 0,001130 vartalo (substantiivi)
+   7257     664 0,001128 alanen (erisnimi)
+   7258     664 0,001128 huvi (substantiivi)
+   7259     664 0,001128 hyytyä (verbi)
+   7260     664 0,001128 ideologia (substantiivi)
+   7261     664 0,001128 julmuus (substantiivi)
+   7262     664 0,001128 kauppakeskus (substantiivi)
+   7263     664 0,001128 keskiviikkoinen (adjektiivi)
+   7264     664 0,001128 kirves (substantiivi)
+   7265     664 0,001128 poistuma (substantiivi)
+   7266     664 0,001128 postipankki (erisnimi)
+   7267     664 0,001128 sekaantua (verbi)
+   7268     664 0,001128 suomalaisyritys (substantiivi)
+   7269     664 0,001128 urakoitsija (substantiivi)
+   7270     663 0,001126 brasilialainen (adjektiivi)
+   7271     663 0,001126 galleria (erisnimi)
+   7272     663 0,001126 hahmotella (verbi)
+   7273     663 0,001126 syventää (verbi)
+   7274     663 0,001126 tarkistus (substantiivi)
+   7275     663 0,001126 tuomainen (erisnimi)
+   7276     663 0,001126 vala (substantiivi)
+   7277     663 0,001126 ylle (prepositio)
+   7278     662 0,001125 amfetamiini (substantiivi)
+   7279     662 0,001125 halutessaan (adverbi)
+   7280     662 0,001125 jalkapalloilija (substantiivi)
+   7281     662 0,001125 jyri (erisnimi)
+   7282     662 0,001125 monipuolisesti (adverbi)
+   7283     662 0,001125 museovirasto (substantiivi)
+   7284     662 0,001125 pukki (substantiivi)
+   7285     662 0,001125 riippuvuus (substantiivi)
+   7286     662 0,001125 terveysministeri (substantiivi)
+   7287     661 0,001123 hämmästyä (verbi)
+   7288     661 0,001123 juhlasali (substantiivi)
+   7289     661 0,001123 jukola (erisnimi)
+   7290     661 0,001123 keskittäminen (substantiivi)
+   7291     661 0,001123 mekaaninen (adjektiivi)
+   7292     661 0,001123 suurelta_osin (adverbi)
+   7293     661 0,001123 turvapaikanhakija (substantiivi)
+   7294     660 0,001121 julkaiseminen (substantiivi)
+   7295     660 0,001121 kaarlo (erisnimi)
+   7296     660 0,001121 kolminkertainen (adjektiivi)
+   7297     660 0,001121 maist (lyhenne)
+   7298     660 0,001121 markkina-arvo (substantiivi)
+   7299     660 0,001121 myller (erisnimi)
+   7300     660 0,001121 sairastuminen (substantiivi)
+   7301     660 0,001121 sinilevä (substantiivi)
+   7302     660 0,001121 taittaa (verbi)
+   7303     660 0,001121 tutkimustyö (substantiivi)
+   7304     660 0,001121 vaalitaistelu (substantiivi)
+   7305     659 0,001120 juontaja (substantiivi)
+   7306     659 0,001120 kuuluttaa (verbi)
+   7307     659 0,001120 näköpiiri (substantiivi)
+   7308     659 0,001120 oppikirja (substantiivi)
+   7309     659 0,001120 sinällään (adverbi)
+   7310     659 0,001120 topelius (erisnimi)
+   7311     658 0,001118 aggressiivinen (adjektiivi)
+   7312     658 0,001118 epäilyttää (verbi)
+   7313     658 0,001118 lailla (prepositio)
+   7314     658 0,001118 myöhästyä (verbi)
+   7315     658 0,001118 rehu (substantiivi)
+   7316     658 0,001118 rossi (erisnimi)
+   7317     658 0,001118 tuotantolaitos (substantiivi)
+   7318     658 0,001118 vastakkainen (adjektiivi)
+   7319     657 0,001116 armenia (erisnimi)
+   7320     657 0,001116 heiluttaa (verbi)
+   7321     657 0,001116 instrumentti (substantiivi)
+   7322     657 0,001116 koetus (substantiivi)
+   7323     657 0,001116 lähtijä (substantiivi)
+   7324     657 0,001116 metsäkeskus (substantiivi)
+   7325     657 0,001116 pelastustoimi (substantiivi)
+   7326     657 0,001116 ruissalo (erisnimi)
+   7327     657 0,001116 team (erisnimi)
+   7328     657 0,001116 umpeen (adverbi)
+   7329     656 0,001114 aro (erisnimi)
+   7330     656 0,001114 hautamäki (erisnimi)
+   7331     656 0,001114 kansainvälisyys (substantiivi)
+   7332     656 0,001114 kilpailukielto (substantiivi)
+   7333     656 0,001114 kurja (adjektiivi)
+   7334     656 0,001114 rakennushanke (substantiivi)
+   7335     656 0,001114 sähköyhtiö (substantiivi)
+   7336     656 0,001114 talousalue (substantiivi)
+   7337     655 0,001113 kanssakäyminen (substantiivi)
+   7338     655 0,001113 kokonaismäärä (substantiivi)
+   7339     655 0,001113 käsiksi (adverbi)
+   7340     655 0,001113 pauliina (erisnimi)
+   7341     655 0,001113 ratas (substantiivi)
+   7342     655 0,001113 saati (konjunktio)
+   7343     655 0,001113 skotti (substantiivi)
+   7344     655 0,001113 taidetoimikunta (substantiivi)
+   7345     655 0,001113 teräs (substantiivi)
+   7346     655 0,001113 vajota (verbi)
+   7347     654 0,001111 akademi (erisnimi)
+   7348     654 0,001111 järjetön (adjektiivi)
+   7349     654 0,001111 kaluste (substantiivi)
+   7350     654 0,001111 kihlakunnansyyttäjä (substantiivi)
+   7351     654 0,001111 kärki (erisnimi)
+   7352     654 0,001111 luottamustehtävä (substantiivi)
+   7353     654 0,001111 monopoli (substantiivi)
+   7354     654 0,001111 niittää (verbi)
+   7355     654 0,001111 sohva (substantiivi)
+   7356     654 0,001111 suhteuttaa (verbi)
+   7357     654 0,001111 ym (lyhenne)
+   7358     653 0,001109 helmut (erisnimi)
+   7359     653 0,001109 kulttuurikeskus (substantiivi)
+   7360     653 0,001109 vuosikokous (substantiivi)
+   7361     652 0,001108 marianne (erisnimi)
+   7362     652 0,001108 näyttelytila (substantiivi)
+   7363     652 0,001108 rakennuslupa (substantiivi)
+   7364     652 0,001108 torjuminen (substantiivi)
+   7365     652 0,001108 tuhlata (verbi)
+   7366     652 0,001108 vihti (erisnimi)
+   7367     652 0,001108 väljä (adjektiivi)
+   7368     651 0,001106 elinikäinen (adjektiivi)
+   7369     651 0,001106 gsm (lyhenne)
+   7370     651 0,001106 herua (verbi)
+   7371     651 0,001106 hormoni (substantiivi)
+   7372     651 0,001106 keränen (erisnimi)
+   7373     651 0,001106 kokonaisvaltainen (adjektiivi)
+   7374     651 0,001106 murto (substantiivi)
+   7375     651 0,001106 palautus (substantiivi)
+   7376     651 0,001106 perusturva (substantiivi)
+   7377     651 0,001106 pietarsaari (erisnimi)
+   7378     651 0,001106 ronkainen (erisnimi)
+   7379     651 0,001106 sortavala (erisnimi)
+   7380     651 0,001106 supistus (substantiivi)
+   7381     651 0,001106 tempo (substantiivi)
+   7382     651 0,001106 toimikausi (substantiivi)
+   7383     651 0,001106 väärinkäyttö (substantiivi)
+   7384     651 0,001106 äänioikeus (substantiivi)
+   7385     650 0,001104 bbc (lyhenne)
+   7386     650 0,001104 donner (erisnimi)
+   7387     650 0,001104 iloisesti (adverbi)
+   7388     650 0,001104 jim (erisnimi)
+   7389     650 0,001104 joseph (erisnimi)
+   7390     650 0,001104 jukka-pekka (erisnimi)
+   7391     650 0,001104 karl (erisnimi)
+   7392     650 0,001104 kieltäminen (substantiivi)
+   7393     650 0,001104 kokki (substantiivi)
+   7394     650 0,001104 puntaroida (verbi)
+   7395     649 0,001103 kuulu (adjektiivi)
+   7396     649 0,001103 nordbanken (erisnimi)
+   7397     649 0,001103 opel (erisnimi)
+   7398     649 0,001103 rajallinen (adjektiivi)
+   7399     649 0,001103 tiihonen (erisnimi)
+   7400     649 0,001103 yhtenäisyys (substantiivi)
+   7401     648 0,001101 akatemia (substantiivi)
+   7402     648 0,001101 bond (erisnimi)
+   7403     648 0,001101 hävetä (verbi)
+   7404     648 0,001101 iaaf (lyhenne)
+   7405     648 0,001101 irmeli (erisnimi)
+   7406     648 0,001101 kivijärvi (erisnimi)
+   7407     648 0,001101 käsikirjoittaja (substantiivi)
+   7408     648 0,001101 pörssikurssi (substantiivi)
+   7409     648 0,001101 risteily (substantiivi)
+   7410     648 0,001101 saatavissa (adverbi)
+   7411     648 0,001101 sotarikos (substantiivi)
+   7412     648 0,001101 tarjouskilpailu (substantiivi)
+   7413     648 0,001101 tasavertainen (adjektiivi)
+   7414     648 0,001101 varonen (erisnimi)
+   7415     647 0,001099 lehikoinen (erisnimi)
+   7416     647 0,001099 liikennelaitos (substantiivi)
+   7417     647 0,001099 oikeusturva (substantiivi)
+   7418     647 0,001099 pinna (substantiivi)
+   7419     647 0,001099 rasite (substantiivi)
+   7420     647 0,001099 rotta (substantiivi)
+   7421     647 0,001099 sakka (substantiivi)
+   7422     647 0,001099 valuuttarahasto (substantiivi)
+   7423     646 0,001097 alvar (erisnimi)
+   7424     646 0,001097 elättää (verbi)
+   7425     646 0,001097 keskushyökkääjä (substantiivi)
+   7426     646 0,001097 kyllikki (erisnimi)
+   7427     646 0,001097 liioin (adverbi)
+   7428     646 0,001097 mafia (substantiivi)
+   7429     646 0,001097 ryynänen (erisnimi)
+   7430     645 0,001096 haja-asutusalue (substantiivi)
+   7431     645 0,001096 häviäjä (substantiivi)
+   7432     645 0,001096 ikäraja (substantiivi)
+   7433     645 0,001096 jalkapalloliitto (substantiivi)
+   7434     645 0,001096 jansson (erisnimi)
+   7435     645 0,001096 jussila (erisnimi)
+   7436     645 0,001096 lafontaine (erisnimi)
+   7437     645 0,001096 pyörätuoli (substantiivi)
+   7438     645 0,001096 tilikausi (substantiivi)
+   7439     644 0,001094 arpoa (verbi)
+   7440     644 0,001094 haista (verbi)
+   7441     644 0,001094 huom (interjektio)
+   7442     644 0,001094 jengi (substantiivi)
+   7443     644 0,001094 leijona (erisnimi)
+   7444     644 0,001094 mullistaa (verbi)
+   7445     644 0,001094 ohikulkija (substantiivi)
+   7446     644 0,001094 opetushallitus (substantiivi)
+   7447     644 0,001094 pääesikunta (substantiivi)
+   7448     644 0,001094 riesa (substantiivi)
+   7449     644 0,001094 viritä (verbi)
+   7450     643 0,001092 kantaja (substantiivi)
+   7451     643 0,001092 keskeneräinen (adjektiivi)
+   7452     643 0,001092 kärkipaikka (substantiivi)
+   7453     643 0,001092 miljöö (substantiivi)
+   7454     643 0,001092 missään_nimessä (adverbi)
+   7455     643 0,001092 nuutinen (erisnimi)
+   7456     643 0,001092 sauma (substantiivi)
+   7457     643 0,001092 terä (substantiivi)
+   7458     643 0,001092 traditio (substantiivi)
+   7459     642 0,001091 ankea (adjektiivi)
+   7460     642 0,001091 ensiapu (substantiivi)
+   7461     642 0,001091 ikääntyminen (substantiivi)
+   7462     642 0,001091 itku (substantiivi)
+   7463     642 0,001091 itä-saksa (erisnimi)
+   7464     642 0,001091 jäsenyysneuvottelu (substantiivi)
+   7465     642 0,001091 kotihoito (substantiivi)
+   7466     642 0,001091 ktm (lyhenne)
+   7467     642 0,001091 marjamäki (erisnimi)
+   7468     642 0,001091 tilalla (adverbi)
+   7469     642 0,001091 työttömyysturva (substantiivi)
+   7470     641 0,001089 ajanjakso (substantiivi)
+   7471     641 0,001089 alakohtainen (adjektiivi)
+   7472     641 0,001089 asuintalo (substantiivi)
+   7473     641 0,001089 colin (erisnimi)
+   7474     641 0,001089 huotari (erisnimi)
+   7475     641 0,001089 iskelmä (substantiivi)
+   7476     641 0,001089 jalkanen (erisnimi)
+   7477     641 0,001089 kilpakumppani (substantiivi)
+   7478     641 0,001089 kummasti (adverbi)
+   7479     641 0,001089 luoja (substantiivi)
+   7480     641 0,001089 luoti (substantiivi)
+   7481     641 0,001089 mihail (erisnimi)
+   7482     641 0,001089 myrkyllinen (adjektiivi)
+   7483     641 0,001089 parras (substantiivi)
+   7484     641 0,001089 pelastaja (substantiivi)
+   7485     641 0,001089 riidellä (verbi)
+   7486     641 0,001089 takaus (substantiivi)
+   7487     641 0,001089 tupakoida (verbi)
+   7488     641 0,001089 vihreä (erisnimi)
+   7489     641 0,001089 vähän_aikaa (adverbi)
+   7490     640 0,001087 airaksinen (erisnimi)
+   7491     640 0,001087 etusija (substantiivi)
+   7492     640 0,001087 omaperäinen (adjektiivi)
+   7493     640 0,001087 piilottaa (verbi)
+   7494     640 0,001087 singapore (erisnimi)
+   7495     640 0,001087 taistelija (substantiivi)
+   7496     639 0,001086 autonomia (substantiivi)
+   7497     639 0,001086 hyypiä (erisnimi)
+   7498     639 0,001086 itää (verbi)
+   7499     639 0,001086 lindgren (erisnimi)
+   7500     639 0,001086 _poundsign (lyhenne)
+   7501     639 0,001086 soile (erisnimi)
+   7502     639 0,001086 sovinto (substantiivi)
+   7503     639 0,001086 säästöpankki (substantiivi)
+   7504     639 0,001086 torstaiaamu (substantiivi)
+   7505     639 0,001086 vaihdos (substantiivi)
+   7506     639 0,001086 äkillinen (adjektiivi)
+   7507     638 0,001084 fantasia (substantiivi)
+   7508     638 0,001084 helenius (erisnimi)
+   7509     638 0,001084 jokunen (pronomini)
+   7510     638 0,001084 lautta (substantiivi)
+   7511     638 0,001084 liukua (verbi)
+   7512     638 0,001084 puhelinnumero (substantiivi)
+   7513     638 0,001084 sosialistinen (adjektiivi)
+   7514     638 0,001084 vaalivoitto (substantiivi)
+   7515     638 0,001084 valtimo (erisnimi)
+   7516     637 0,001082 maakaasu (substantiivi)
+   7517     637 0,001082 tukialue (substantiivi)
+   7518     636 0,001080 akku (substantiivi)
+   7519     636 0,001080 allekirjoitus (substantiivi)
+   7520     636 0,001080 andrei (erisnimi)
+   7521     636 0,001080 houkuttaa (verbi)
+   7522     636 0,001080 partek (erisnimi)
+   7523     636 0,001080 pohjois-savo (erisnimi)
+   7524     636 0,001080 ripeästi (adverbi)
+   7525     636 0,001080 sympaattinen (adjektiivi)
+   7526     636 0,001080 taikina (substantiivi)
+   7527     636 0,001080 tiedotuspäällikkö (substantiivi)
+   7528     636 0,001080 ympäristönsuojelu (substantiivi)
+   7529     635 0,001079 foorumi (substantiivi)
+   7530     635 0,001079 hei (interjektio)
+   7531     635 0,001079 keppi (substantiivi)
+   7532     635 0,001079 lamppu (substantiivi)
+   7533     635 0,001079 philadelphia (erisnimi)
+   7534     634 0,001077 adams (erisnimi)
+   7535     634 0,001077 automaattinen (adjektiivi)
+   7536     634 0,001077 hiihtokeskus (substantiivi)
+   7537     634 0,001077 loviisa (erisnimi)
+   7538     634 0,001077 masentaa (verbi)
+   7539     634 0,001077 puolikas (substantiivi)
+   7540     634 0,001077 suomi-yhtiö (substantiivi)
+   7541     634 0,001077 täkäläinen (adjektiivi)
+   7542     634 0,001077 veikkaus (substantiivi)
+   7543     633 0,001075 gustav (erisnimi)
+   7544     633 0,001075 koitos (substantiivi)
+   7545     633 0,001075 lotta (erisnimi)
+   7546     633 0,001075 maa-alue (substantiivi)
+   7547     633 0,001075 rikoskomisario (substantiivi)
+   7548     633 0,001075 solidaarisuus (substantiivi)
+   7549     633 0,001075 työtaistelu (substantiivi)
+   7550     633 0,001075 viljo (erisnimi)
+   7551     633 0,001075 viranhaltija (substantiivi)
+   7552     633 0,001075 vuokko (erisnimi)
+   7553     633 0,001075 ynnä (konjunktio)
+   7554     632 0,001074 korvaaminen (substantiivi)
+   7555     632 0,001074 piakkoin (adverbi)
+   7556     632 0,001074 rikosilmoitus (substantiivi)
+   7557     631 0,001072 epätodennäköinen (adjektiivi)
+   7558     631 0,001072 etiikka (substantiivi)
+   7559     631 0,001072 keskeytys (substantiivi)
+   7560     631 0,001072 mikä_vain (pronomini)
+   7561     631 0,001072 multa (substantiivi)
+   7562     631 0,001072 pankkitili (substantiivi)
+   7563     631 0,001072 saalistaa (verbi)
+   7564     631 0,001072 salama (substantiivi)
+   7565     631 0,001072 sirviö (erisnimi)
+   7566     631 0,001072 tarvike (substantiivi)
+   7567     631 0,001072 tipahtaa (verbi)
+   7568     631 0,001072 yksipuolinen (adjektiivi)
+   7569     630 0,001070 forum (erisnimi)
+   7570     630 0,001070 iskulause (substantiivi)
+   7571     630 0,001070 kioto (erisnimi)
+   7572     630 0,001070 konstaapeli (substantiivi)
+   7573     630 0,001070 koriste (substantiivi)
+   7574     630 0,001070 kuha (substantiivi)
+   7575     630 0,001070 kuten_esimerkiksi (adverbi)
+   7576     630 0,001070 levoton (adjektiivi)
+   7577     630 0,001070 mittakaava (substantiivi)
+   7578     630 0,001070 noutaa (verbi)
+   7579     630 0,001070 tallberg (erisnimi)
+   7580     630 0,001070 talvinen (adjektiivi)
+   7581     630 0,001070 yhtään_mikään (pronomini)
+   7582     629 0,001069 aiheellinen (adjektiivi)
+   7583     629 0,001069 haastateltu (substantiivi)
+   7584     629 0,001069 ilkivalta (substantiivi)
+   7585     629 0,001069 juvonen (erisnimi)
+   7586     629 0,001069 onnettomuuspaikka (substantiivi)
+   7587     629 0,001069 raja-asema (substantiivi)
+   7588     629 0,001069 ranua (erisnimi)
+   7589     628 0,001067 avohoito (substantiivi)
+   7590     628 0,001067 hauki (substantiivi)
+   7591     628 0,001067 kotiutua (verbi)
+   7592     628 0,001067 laajalti (adverbi)
+   7593     628 0,001067 nippu (substantiivi)
+   7594     628 0,001067 palvelupiste (substantiivi)
+   7595     628 0,001067 pankkikriisi (substantiivi)
+   7596     627 0,001065 jättämä (substantiivi)
+   7597     627 0,001065 kolehmainen (erisnimi)
+   7598     627 0,001065 lindén (erisnimi)
+   7599     627 0,001065 paperiteollisuus (substantiivi)
+   7600     627 0,001065 samppa (erisnimi)
+   7601     627 0,001065 sinetöidä (verbi)
+   7602     627 0,001065 ulottaa (verbi)
+   7603     627 0,001065 vanhuus (substantiivi)
+   7604     626 0,001064 hoidella (verbi)
+   7605     626 0,001064 maankäyttö (substantiivi)
+   7606     626 0,001064 mielenterveys (substantiivi)
+   7607     626 0,001064 määrittely (substantiivi)
+   7608     626 0,001064 neljäkymmentä (lukusana)
+   7609     626 0,001064 oikeudenkäyntikulu (substantiivi)
+   7610     626 0,001064 oppositiopuolue (substantiivi)
+   7611     626 0,001064 pälkäne (erisnimi)
+   7612     626 0,001064 ulkoa (adverbi)
+   7613     626 0,001064 verovapaa (adjektiivi)
+   7614     625 0,001062 anna-liisa (erisnimi)
+   7615     625 0,001062 hirveästi (adverbi)
+   7616     625 0,001062 kauhanen (erisnimi)
+   7617     625 0,001062 kummi (substantiivi)
+   7618     625 0,001062 lehtimäki (erisnimi)
+   7619     625 0,001062 leppoisa (adjektiivi)
+   7620     625 0,001062 loppusumma (substantiivi)
+   7621     625 0,001062 sonninen (erisnimi)
+   7622     625 0,001062 uhkakuva (substantiivi)
+   7623     625 0,001062 uurainen (erisnimi)
+   7624     625 0,001062 vastaanottaja (substantiivi)
+   7625     624 0,001060 laukku (substantiivi)
+   7626     624 0,001060 monte (erisnimi)
+   7627     624 0,001060 virkistää (verbi)
+   7628     623 0,001058 arsenalin (erisnimi)
+   7629     623 0,001058 beethoven (erisnimi)
+   7630     623 0,001058 hiihtoliitto (erisnimi)
+   7631     623 0,001058 keskiviikkoaamu (substantiivi)
+   7632     623 0,001058 kiitää (verbi)
+   7633     623 0,001058 kukkula (substantiivi)
+   7634     623 0,001058 ole (erisnimi)
+   7635     623 0,001058 seikkailla (verbi)
+   7636     623 0,001058 taannoinen (adjektiivi)
+   7637     623 0,001058 voimakkuus (substantiivi)
+   7638     622 0,001057 autokauppa (substantiivi)
+   7639     622 0,001057 kaipuu (substantiivi)
+   7640     622 0,001057 kehittäjä (substantiivi)
+   7641     622 0,001057 siihen_asti (adverbi)
+   7642     622 0,001057 skinnari (erisnimi)
+   7643     622 0,001057 tartto (erisnimi)
+   7644     621 0,001055 aleksanteri (erisnimi)
+   7645     621 0,001055 auli (erisnimi)
+   7646     621 0,001055 itkonen (erisnimi)
+   7647     621 0,001055 kotiyleisö (substantiivi)
+   7648     621 0,001055 matkustaminen (substantiivi)
+   7649     621 0,001055 myllykoski (erisnimi)
+   7650     621 0,001055 neito (substantiivi)
+   7651     621 0,001055 rattijuopumus (substantiivi)
+   7652     621 0,001055 ruokailu (substantiivi)
+   7653     620 0,001053 alistua (verbi)
+   7654     620 0,001053 arvailla (verbi)
+   7655     620 0,001053 asiakaspalvelu (substantiivi)
+   7656     620 0,001053 dj (lyhenne)
+   7657     620 0,001053 harald (erisnimi)
+   7658     620 0,001053 hornet (erisnimi)
+   7659     620 0,001053 irvine (erisnimi)
+   7660     620 0,001053 korjaustyö (substantiivi)
+   7661     620 0,001053 lahjus (substantiivi)
+   7662     620 0,001053 mellakka (substantiivi)
+   7663     620 0,001053 oikaista (verbi)
+   7664     620 0,001053 peitellä (verbi)
+   7665     620 0,001053 perustuslakivaliokunta (substantiivi)
+   7666     620 0,001053 siitonen (erisnimi)
+   7667     620 0,001053 taru (erisnimi)
+   7668     619 0,001052 bob (erisnimi)
+   7669     619 0,001052 konkreettisesti (adverbi)
+   7670     619 0,001052 lauantaiaamu (substantiivi)
+   7671     619 0,001052 otos (substantiivi)
+   7672     619 0,001052 petra (erisnimi)
+   7673     619 0,001052 terassi (substantiivi)
+   7674     619 0,001052 tommy (erisnimi)
+   7675     619 0,001052 valkea (adjektiivi)
+   7676     618 0,001050 alentua (verbi)
+   7677     618 0,001050 isäntämaa (substantiivi)
+   7678     618 0,001050 kassi (substantiivi)
+   7679     618 0,001050 max (erisnimi)
+   7680     618 0,001050 pyörähtää (verbi)
+   7681     618 0,001050 talousjohtaja (substantiivi)
+   7682     618 0,001050 toimiminen (substantiivi)
+   7683     618 0,001050 vilkastua (verbi)
+   7684     617 0,001048 budjettiriihi (substantiivi)
+   7685     617 0,001048 globaali (adjektiivi)
+   7686     617 0,001048 jauho (substantiivi)
+   7687     617 0,001048 koneisto (substantiivi)
+   7688     617 0,001048 koristaa (verbi)
+   7689     617 0,001048 mies (erisnimi)
+   7690     617 0,001048 pätevyys (substantiivi)
+   7691     617 0,001048 pääomatulo (substantiivi)
+   7692     617 0,001048 riikonen (erisnimi)
+   7693     617 0,001048 sello (substantiivi)
+   7694     617 0,001048 seutu (erisnimi)
+   7695     616 0,001047 pakki (substantiivi)
+   7696     616 0,001047 salama (erisnimi)
+   7697     616 0,001047 tikkakoski (erisnimi)
+   7698     616 0,001047 tuulettaa (verbi)
+   7699     616 0,001047 urut (substantiivi)
+   7700     616 0,001047 yhteisesti (adverbi)
+   7701     615 0,001045 edward (erisnimi)
+   7702     615 0,001045 kaisu (erisnimi)
+   7703     615 0,001045 keski (erisnimi)
+   7704     615 0,001045 kohtuullisesti (adverbi)
+   7705     615 0,001045 kukoistaa (verbi)
+   7706     615 0,001045 lilja (erisnimi)
+   7707     615 0,001045 pierre (erisnimi)
+   7708     615 0,001045 puoluevaltuusto (substantiivi)
+   7709     615 0,001045 puristus (substantiivi)
+   7710     615 0,001045 salaa (adverbi)
+   7711     615 0,001045 sankka (adjektiivi)
+   7712     615 0,001045 sitoumus (substantiivi)
+   7713     614 0,001043 eri_tavoin (adverbi)
+   7714     614 0,001043 itsestäänselvyys (substantiivi)
+   7715     614 0,001043 kansakoulu (substantiivi)
+   7716     614 0,001043 siirtymäkausi (substantiivi)
+   7717     614 0,001043 tasata (verbi)
+   7718     614 0,001043 viihtyisä (adjektiivi)
+   7719     613 0,001041 allergia (substantiivi)
+   7720     613 0,001041 evakko (substantiivi)
+   7721     613 0,001041 happi (substantiivi)
+   7722     613 0,001041 katukuva (substantiivi)
+   7723     613 0,001041 lindell (erisnimi)
+   7724     613 0,001041 olympiapaikka (substantiivi)
+   7725     613 0,001041 onnekas (adjektiivi)
+   7726     612 0,001040 aikaansaaminen (substantiivi)
+   7727     612 0,001040 angola (erisnimi)
+   7728     612 0,001040 huolettaa (verbi)
+   7729     612 0,001040 jupakka (substantiivi)
+   7730     612 0,001040 sulander (erisnimi)
+   7731     612 0,001040 suomalaisittain (adverbi)
+   7732     612 0,001040 suvi (substantiivi)
+   7733     612 0,001040 toisinajattelija (substantiivi)
+   7734     612 0,001040 usko (erisnimi)
+   7735     611 0,001038 epätoivoinen (adjektiivi)
+   7736     611 0,001038 kaikki_tämä (pronomini)
+   7737     611 0,001038 käyttökelpoinen (adjektiivi)
+   7738     611 0,001038 maailmantalous (substantiivi)
+   7739     611 0,001038 metalliteollisuus (substantiivi)
+   7740     611 0,001038 sainz (erisnimi)
+   7741     611 0,001038 syke (substantiivi)
+   7742     611 0,001038 väläyttää (verbi)
+   7743     611 0,001038 ylioppilaskunta (substantiivi)
+   7744     611 0,001038 yläraja (substantiivi)
+   7745     610 0,001036 hieroa (verbi)
+   7746     610 0,001036 ktv (lyhenne)
+   7747     610 0,001036 mercedes (erisnimi)
+   7748     610 0,001036 peugeot (erisnimi)
+   7749     610 0,001036 pätkätyö (substantiivi)
+   7750     610 0,001036 signaali (substantiivi)
+   7751     610 0,001036 tahallaan (adverbi)
+   7752     610 0,001036 toimintakyky (substantiivi)
+   7753     609 0,001035 herkkyys (substantiivi)
+   7754     609 0,001035 jacob (erisnimi)
+   7755     609 0,001035 kilpailutilanne (substantiivi)
+   7756     609 0,001035 leningrad (erisnimi)
+   7757     609 0,001035 metsäpalo (substantiivi)
+   7758     609 0,001035 paikalta (prepositio)
+   7759     609 0,001035 reima (erisnimi)
+   7760     609 0,001035 toisaalla (adverbi)
+   7761     608 0,001033 afrikkalainen (adjektiivi)
+   7762     608 0,001033 bonus (substantiivi)
+   7763     608 0,001033 maailmanlista (substantiivi)
+   7764     608 0,001033 osakeanti (substantiivi)
+   7765     608 0,001033 republikaani (substantiivi)
+   7766     608 0,001033 tyylikkäästi (adverbi)
+   7767     608 0,001033 ukko (substantiivi)
+   7768     608 0,001033 unicef (erisnimi)
+   7769     607 0,001031 kiivaasti (adverbi)
+   7770     607 0,001031 kirkollinen (adjektiivi)
+   7771     607 0,001031 konservatiivinen (adjektiivi)
+   7772     607 0,001031 leipomo (substantiivi)
+   7773     607 0,001031 luovutus (substantiivi)
+   7774     607 0,001031 puheenaihe (substantiivi)
+   7775     607 0,001031 talkootyö (substantiivi)
+   7776     607 0,001031 yksiselitteinen (adjektiivi)
+   7777     606 0,001030 fil (lyhenne)
+   7778     606 0,001030 keski-pohjanmaa (erisnimi)
+   7779     606 0,001030 keskitaso (substantiivi)
+   7780     606 0,001030 maarianhamina (erisnimi)
+   7781     606 0,001030 perjantaiaamu (substantiivi)
+   7782     606 0,001030 puukauppa (substantiivi)
+   7783     606 0,001030 satelliitti (substantiivi)
+   7784     606 0,001030 selvitystyö (substantiivi)
+   7785     606 0,001030 sivistyä (verbi)
+   7786     606 0,001030 tiia (erisnimi)
+   7787     606 0,001030 vaikuttaminen (substantiivi)
+   7788     606 0,001030 valtuuttaa (verbi)
+   7789     606 0,001030 villa (substantiivi)
+   7790     606 0,001030 yhdistellä (verbi)
+   7791     605 0,001028 juristi (substantiivi)
+   7792     605 0,001028 katsastus (substantiivi)
+   7793     605 0,001028 liikenneturvallisuus (substantiivi)
+   7794     605 0,001028 liminka (erisnimi)
+   7795     605 0,001028 passari (substantiivi)
+   7796     605 0,001028 sotku (substantiivi)
+   7797     605 0,001028 teline (substantiivi)
+   7798     605 0,001028 tiitinen (erisnimi)
+   7799     605 0,001028 vasala (erisnimi)
+   7800     604 0,001026 ammattikoulu (substantiivi)
+   7801     604 0,001026 halukkuus (substantiivi)
+   7802     604 0,001026 magnus (erisnimi)
+   7803     604 0,001026 monikansallinen (adjektiivi)
+   7804     604 0,001026 otsa (substantiivi)
+   7805     604 0,001026 peruskorjata (verbi)
+   7806     604 0,001026 sateinen (adjektiivi)
+   7807     604 0,001026 säteillä (verbi)
+   7808     604 0,001026 tass (erisnimi)
+   7809     604 0,001026 testamentti (substantiivi)
+   7810     604 0,001026 turpeinen (erisnimi)
+   7811     604 0,001026 tyyni (adjektiivi)
+   7812     604 0,001026 vtt (lyhenne)
+   7813     603 0,001024 aseistautua (verbi)
+   7814     603 0,001024 halvari (erisnimi)
+   7815     603 0,001024 nojalla (prepositio)
+   7816     603 0,001024 ohjastaa (verbi)
+   7817     603 0,001024 perusoikeus (substantiivi)
+   7818     603 0,001024 sven (erisnimi)
+   7819     603 0,001024 valikoida (verbi)
+   7820     602 0,001023 aihepiiri (substantiivi)
+   7821     602 0,001023 demokraatti (substantiivi)
+   7822     602 0,001023 elämäntilanne (substantiivi)
+   7823     602 0,001023 häipyä (verbi)
+   7824     602 0,001023 kevättalvi (substantiivi)
+   7825     602 0,001023 lee (erisnimi)
+   7826     602 0,001023 sisko (erisnimi)
+   7827     602 0,001023 taipale (substantiivi)
+   7828     602 0,001023 vaala (erisnimi)
+   7829     601 0,001021 armoton (adjektiivi)
+   7830     601 0,001021 elintärkeä (adjektiivi)
+   7831     601 0,001021 hampuri (erisnimi)
+   7832     601 0,001021 heroiini (substantiivi)
+   7833     601 0,001021 hymähtää (verbi)
+   7834     601 0,001021 kasvatustiede (substantiivi)
+   7835     601 0,001021 kiprusoff (erisnimi)
+   7836     601 0,001021 kokonaiskustannus (substantiivi)
+   7837     601 0,001021 pohjata (verbi)
+   7838     601 0,001021 rikkoutua (verbi)
+   7839     601 0,001021 vastedes (adverbi)
+   7840     600 0,001019 ilotulitus (substantiivi)
+   7841     600 0,001019 maallinen (adjektiivi)
+   7842     600 0,001019 mantila (erisnimi)
+   7843     600 0,001019 muikku (substantiivi)
+   7844     600 0,001019 pub (substantiivi)
+   7845     600 0,001019 teloittaa (verbi)
+   7846     600 0,001019 ylipäänsä (adverbi)
+   7847     599 0,001018 ammattijärjestö (substantiivi)
+   7848     599 0,001018 julkisivu (substantiivi)
+   7849     599 0,001018 koveta (verbi)
+   7850     599 0,001018 lönnrot (erisnimi)
+   7851     599 0,001018 muodollinen (adjektiivi)
+   7852     599 0,001018 äänite (substantiivi)
+   7853     598 0,001016 ennakkoäänestys (substantiivi)
+   7854     598 0,001016 jalo (adjektiivi)
+   7855     598 0,001016 jokin_aika_sitten (adverbi)
+   7856     598 0,001016 juhlapuhe (substantiivi)
+   7857     598 0,001016 nurin (adverbi)
+   7858     598 0,001016 pestata (verbi)
+   7859     598 0,001016 stepashin (erisnimi)
+   7860     598 0,001016 toimintaedellytys (substantiivi)
+   7861     598 0,001016 vakiinnuttaa (verbi)
+   7862     598 0,001016 vattenfall (erisnimi)
+   7863     597 0,001014 aarnio (erisnimi)
+   7864     597 0,001014 alv (lyhenne)
+   7865     597 0,001014 budjetoida (verbi)
+   7866     597 0,001014 farssi (substantiivi)
+   7867     597 0,001014 jäsenmäärä (substantiivi)
+   7868     597 0,001014 metsuri (substantiivi)
+   7869     597 0,001014 petäjävesi (erisnimi)
+   7870     597 0,001014 pienyritys (substantiivi)
+   7871     597 0,001014 piiloset (erisnimi)
+   7872     597 0,001014 puolikymmentä (lukusana)
+   7873     597 0,001014 pätäri (erisnimi)
+   7874     597 0,001014 savela (erisnimi)
+   7875     597 0,001014 sirkus (substantiivi)
+   7876     597 0,001014 tervehdys (substantiivi)
+   7877     596 0,001013 kuulo (substantiivi)
+   7878     596 0,001013 loppuvaihe (substantiivi)
+   7879     596 0,001013 pappila (substantiivi)
+   7880     596 0,001013 pyöritellä (verbi)
+   7881     595 0,001011 kiitettävästi (adverbi)
+   7882     595 0,001011 kpl (lyhenne)
+   7883     595 0,001011 kädenvääntö (substantiivi)
+   7884     595 0,001011 lohtu (substantiivi)
+   7885     595 0,001011 lähetä (verbi)
+   7886     595 0,001011 miia (erisnimi)
+   7887     595 0,001011 mörttinen (erisnimi)
+   7888     595 0,001011 oinonen (erisnimi)
+   7889     595 0,001011 omistusosuus (substantiivi)
+   7890     595 0,001011 pääty (substantiivi)
+   7891     595 0,001011 vuoristo (substantiivi)
+   7892     594 0,001009 ampumahiihto (substantiivi)
+   7893     594 0,001009 eno (substantiivi)
+   7894     594 0,001009 harkinnanvarainen (adjektiivi)
+   7895     594 0,001009 huoltaa (verbi)
+   7896     594 0,001009 maakuntajohtaja (substantiivi)
+   7897     594 0,001009 parantainen (erisnimi)
+   7898     594 0,001009 savolainen (adjektiivi)
+   7899     594 0,001009 standardi (substantiivi)
+   7900     593 0,001007 hassinen (erisnimi)
+   7901     593 0,001007 henkilöllisyys (substantiivi)
+   7902     593 0,001007 hienoinen (adjektiivi)
+   7903     593 0,001007 kantautua (verbi)
+   7904     593 0,001007 kylmyys (substantiivi)
+   7905     593 0,001007 maatalouspolitiikka (substantiivi)
+   7906     593 0,001007 nurmikko (substantiivi)
+   7907     593 0,001007 rikkomus (substantiivi)
+   7908     593 0,001007 tuhoaminen (substantiivi)
+   7909     593 0,001007 tuloero (substantiivi)
+   7910     593 0,001007 umpikuja (substantiivi)
+   7911     593 0,001007 äänivalta (substantiivi)
+   7912     592 0,001006 ahlström (erisnimi)
+   7913     592 0,001006 etujärjestö (substantiivi)
+   7914     592 0,001006 haastateltava (substantiivi)
+   7915     592 0,001006 kuhmoinen (erisnimi)
+   7916     592 0,001006 marttiina (erisnimi)
+   7917     592 0,001006 paratiisi (substantiivi)
+   7918     592 0,001006 pienehkö (adjektiivi)
+   7919     592 0,001006 potentiaalinen (adjektiivi)
+   7920     592 0,001006 santer (erisnimi)
+   7921     592 0,001006 tietämys (substantiivi)
+   7922     592 0,001006 turvatoimi (substantiivi)
+   7923     592 0,001006 ulospäin (adverbi)
+   7924     592 0,001006 yhteishenki (substantiivi)
+   7925     591 0,001004 beijing (erisnimi)
+   7926     591 0,001004 haapanen (erisnimi)
+   7927     591 0,001004 majuri (substantiivi)
+   7928     591 0,001004 piirittää (verbi)
+   7929     591 0,001004 sijoittuminen (substantiivi)
+   7930     591 0,001004 sähkölaitos (substantiivi)
+   7931     590 0,001002 heinilä (erisnimi)
+   7932     590 0,001002 hovi (substantiivi)
+   7933     590 0,001002 järkyttyä (verbi)
+   7934     590 0,001002 kariutua (verbi)
+   7935     590 0,001002 kotikunta (substantiivi)
+   7936     590 0,001002 maakuntahallitus (substantiivi)
+   7937     590 0,001002 miller (erisnimi)
+   7938     590 0,001002 musta (erisnimi)
+   7939     590 0,001002 paperitehdas (substantiivi)
+   7940     590 0,001002 porilainen (adjektiivi)
+   7941     590 0,001002 pukeutuminen (substantiivi)
+   7942     590 0,001002 rakennusmestari (substantiivi)
+   7943     590 0,001002 särkänniemi (erisnimi)
+   7944     590 0,001002 taidenäyttely (substantiivi)
+   7945     590 0,001002 toimittaminen (substantiivi)
+   7946     590 0,001002 toissa (adjektiivi)
+   7947     589 0,001001 avainasema (substantiivi)
+   7948     589 0,001001 innoittaa (verbi)
+   7949     589 0,001001 jäykkä (adjektiivi)
+   7950     589 0,001001 ministerivaliokunta (substantiivi)
+   7951     589 0,001001 pinochetin (erisnimi)
+   7952     589 0,001001 päällystää (verbi)
+   7953     589 0,001001 tasapuolisesti (adverbi)
+   7954     589 0,001001 turkka (erisnimi)
+   7955     588 0,000999 ajattelutapa (substantiivi)
+   7956     588 0,000999 avausmaali (substantiivi)
+   7957     588 0,000999 kantti (substantiivi)
+   7958     588 0,000999 kunnallispolitiikka (substantiivi)
+   7959     588 0,000999 laiminlyödä (verbi)
+   7960     588 0,000999 oikealla (adverbi)
+   7961     588 0,000999 rasistinen (adjektiivi)
+   7962     588 0,000999 selvitysmies (substantiivi)
+   7963     588 0,000999 suojanen (erisnimi)
+   7964     588 0,000999 suolata (verbi)
+   7965     588 0,000999 valehdella (verbi)
+   7966     587 0,000997 kallis (erisnimi)
+   7967     587 0,000997 kehotus (substantiivi)
+   7968     587 0,000997 kontrolloida (verbi)
+   7969     587 0,000997 muurinen (erisnimi)
+   7970     587 0,000997 onnistuneesti (adverbi)
+   7971     587 0,000997 psykologia (substantiivi)
+   7972     587 0,000997 ratkaisija (substantiivi)
+   7973     587 0,000997 riemuita (verbi)
+   7974     587 0,000997 riika (erisnimi)
+   7975     587 0,000997 ripeä (adjektiivi)
+   7976     587 0,000997 romantiikka (substantiivi)
+   7977     587 0,000997 velkoja (substantiivi)
+   7978     587 0,000997 yltyä (verbi)
+   7979     587 0,000997 ääri (substantiivi)
+   7980     586 0,000996 asianomainen (adjektiivi)
+   7981     586 0,000996 maanalainen (adjektiivi)
+   7982     586 0,000996 metsänhoitoyhdistys (substantiivi)
+   7983     586 0,000996 mieto (adjektiivi)
+   7984     586 0,000996 sara (erisnimi)
+   7985     586 0,000996 sotaveteraani (substantiivi)
+   7986     586 0,000996 sysätä (verbi)
+   7987     586 0,000996 vammainen (adjektiivi)
+   7988     586 0,000996 ydinjäte (substantiivi)
+   7989     585 0,000994 aleksis (erisnimi)
+   7990     585 0,000994 hannes (erisnimi)
+   7991     585 0,000994 heimo (substantiivi)
+   7992     585 0,000994 hietala (erisnimi)
+   7993     585 0,000994 juomavesi (substantiivi)
+   7994     585 0,000994 puoluejohto (substantiivi)
+   7995     585 0,000994 suhteellisesti (adverbi)
+   7996     585 0,000994 ties (adverbi)
+   7997     585 0,000994 täyte (substantiivi)
+   7998     585 0,000994 vapaaehtoistyö (substantiivi)
+   7999     585 0,000994 wc (lyhenne)
+   8000     584 0,000992 alasajo (substantiivi)
+   8001     584 0,000992 dialogi (substantiivi)
+   8002     584 0,000992 hellitä (verbi)
+   8003     584 0,000992 jaakkola (erisnimi)
+   8004     584 0,000992 kunnas (erisnimi)
+   8005     584 0,000992 kähkönen (erisnimi)
+   8006     584 0,000992 milano (erisnimi)
+   8007     584 0,000992 rakennuslaki (substantiivi)
+   8008     584 0,000992 ravata (verbi)
+   8009     584 0,000992 tim (erisnimi)
+   8010     584 0,000992 tuloveroprosentti (substantiivi)
+   8011     583 0,000990 clark (erisnimi)
+   8012     583 0,000990 erikoistutkija (substantiivi)
+   8013     583 0,000990 kauppakamari (substantiivi)
+   8014     583 0,000990 kirkkovaltuusto (substantiivi)
+   8015     583 0,000990 lompakko (substantiivi)
+   8016     583 0,000990 pristinan (erisnimi)
+   8017     583 0,000990 välimaa (erisnimi)
+   8018     582 0,000989 antibiootti (substantiivi)
+   8019     582 0,000989 keventäminen (substantiivi)
+   8020     582 0,000989 lukematon (pronomini)
+   8021     582 0,000989 menettäminen (substantiivi)
+   8022     582 0,000989 nauta (substantiivi)
+   8023     582 0,000989 nykytaide (substantiivi)
+   8024     582 0,000989 poutiainen (erisnimi)
+   8025     582 0,000989 primakovin (erisnimi)
+   8026     582 0,000989 työkyky (substantiivi)
+   8027     581 0,000987 allen (erisnimi)
+   8028     581 0,000987 andreas (erisnimi)
+   8029     581 0,000987 blairin (erisnimi)
+   8030     581 0,000987 forsberg (erisnimi)
+   8031     581 0,000987 hakanen (erisnimi)
+   8032     581 0,000987 maja (substantiivi)
+   8033     581 0,000987 malinen (erisnimi)
+   8034     581 0,000987 osittainen (adjektiivi)
+   8035     581 0,000987 rokottaa (verbi)
+   8036     581 0,000987 ruskea (adjektiivi)
+   8037     581 0,000987 siihen_aikaan (adverbi)
+   8038     581 0,000987 sukka (substantiivi)
+   8039     581 0,000987 tappelu (substantiivi)
+   8040     581 0,000987 valioliiga (substantiivi)
+   8041     581 0,000987 vs (lyhenne)
+   8042     581 0,000987 vuodesta_toiseen (adverbi)
+   8043     581 0,000987 yksityisyys (substantiivi)
+   8044     580 0,000985 elanto (substantiivi)
+   8045     580 0,000985 elpyä (verbi)
+   8046     580 0,000985 kartoitus (substantiivi)
+   8047     580 0,000985 kuumentaa (verbi)
+   8048     580 0,000985 liigajoukkue (substantiivi)
+   8049     580 0,000985 ministerikokous (substantiivi)
+   8050     580 0,000985 saattaminen (substantiivi)
+   8051     580 0,000985 sesonki (substantiivi)
+   8052     580 0,000985 solmu (substantiivi)
+   8053     580 0,000985 taite (substantiivi)
+   8054     580 0,000985 tuloverotus (substantiivi)
+   8055     580 0,000985 tunturi (substantiivi)
+   8056     579 0,000984 brian (erisnimi)
+   8057     579 0,000984 haalia (verbi)
+   8058     579 0,000984 hanko (erisnimi)
+   8059     579 0,000984 menettelytapa (substantiivi)
+   8060     579 0,000984 osa-aikainen (adjektiivi)
+   8061     579 0,000984 palaveri (substantiivi)
+   8062     579 0,000984 pelastua (verbi)
+   8063     579 0,000984 rahkonen (erisnimi)
+   8064     579 0,000984 sierra (erisnimi)
+   8065     579 0,000984 suojatti (substantiivi)
+   8066     579 0,000984 super (erisnimi)
+   8067     579 0,000984 taksa (substantiivi)
+   8068     579 0,000984 vaaratilanne (substantiivi)
+   8069     579 0,000984 viestin (substantiivi)
+   8070     578 0,000982 altis (adjektiivi)
+   8071     578 0,000982 jauho (erisnimi)
+   8072     578 0,000982 kookas (adjektiivi)
+   8073     578 0,000982 nissilä (erisnimi)
+   8074     578 0,000982 saamelainen (substantiivi)
+   8075     578 0,000982 taimen (substantiivi)
+   8076     578 0,000982 yrtti (substantiivi)
+   8077     577 0,000980 andrew (erisnimi)
+   8078     577 0,000980 ekonomisti (substantiivi)
+   8079     577 0,000980 graafinen (adjektiivi)
+   8080     577 0,000980 hämeenkadun (erisnimi)
+   8081     577 0,000980 imu (substantiivi)
+   8082     577 0,000980 riisi (substantiivi)
+   8083     577 0,000980 rio (erisnimi)
+   8084     577 0,000980 siimes (substantiivi)
+   8085     577 0,000980 suorittaminen (substantiivi)
+   8086     577 0,000980 viimeistely (substantiivi)
+   8087     577 0,000980 wärtsilä (erisnimi)
+   8088     576 0,000979 isku (erisnimi)
+   8089     576 0,000979 kapitalismi (substantiivi)
+   8090     576 0,000979 kenneth (erisnimi)
+   8091     576 0,000979 periaatteellinen (adjektiivi)
+   8092     576 0,000979 saastuttaa (verbi)
+   8093     576 0,000979 vakaasti (adverbi)
+   8094     576 0,000979 vaurioittaa (verbi)
+   8095     576 0,000979 vpk (lyhenne)
+   8096     576 0,000979 vähintään_yhtä (adverbi)
+   8097     575 0,000977 erillään (adverbi)
+   8098     575 0,000977 hautakivi (substantiivi)
+   8099     575 0,000977 hunaja (substantiivi)
+   8100     575 0,000977 hyväkuntoinen (adjektiivi)
+   8101     575 0,000977 johnny (erisnimi)
+   8102     575 0,000977 kokonaistuotanto (substantiivi)
+   8103     575 0,000977 pohjoiskarjalainen (substantiivi)
+   8104     575 0,000977 sund (erisnimi)
+   8105     575 0,000977 syyteharkinta (substantiivi)
+   8106     575 0,000977 vanhustenhuolto (substantiivi)
+   8107     575 0,000977 yöpyä (verbi)
+   8108     574 0,000975 buffalo (erisnimi)
+   8109     574 0,000975 hurmata (verbi)
+   8110     574 0,000975 isi (substantiivi)
+   8111     574 0,000975 kansanvalta (substantiivi)
+   8112     574 0,000975 kärsivällisyys (substantiivi)
+   8113     574 0,000975 lehtoranta (erisnimi)
+   8114     574 0,000975 liputtaa (verbi)
+   8115     574 0,000975 ruusu (erisnimi)
+   8116     573 0,000973 alkusyksy (substantiivi)
+   8117     573 0,000973 falun (erisnimi)
+   8118     573 0,000973 ikävuosi (substantiivi)
+   8119     573 0,000973 juhlaviikko (substantiivi)
+   8120     573 0,000973 kehaista (verbi)
+   8121     573 0,000973 kriittisesti (adverbi)
+   8122     573 0,000973 kuilu (substantiivi)
+   8123     573 0,000973 kyyjärvi (erisnimi)
+   8124     573 0,000973 opiskelupaikka (substantiivi)
+   8125     573 0,000973 porvari (substantiivi)
+   8126     573 0,000973 sofia (erisnimi)
+   8127     573 0,000973 talonpoika (erisnimi)
+   8128     573 0,000973 ylityö (substantiivi)
+   8129     572 0,000972 aikakauslehti (substantiivi)
+   8130     572 0,000972 banaani (substantiivi)
+   8131     572 0,000972 euro (erisnimi)
+   8132     572 0,000972 hex (lyhenne)
+   8133     572 0,000972 huumausaine (substantiivi)
+   8134     572 0,000972 ilmakehä (substantiivi)
+   8135     572 0,000972 kielteisesti (adverbi)
+   8136     572 0,000972 luonnonsuojelu (substantiivi)
+   8137     572 0,000972 päihittää (verbi)
+   8138     572 0,000972 umpeutua (verbi)
+   8139     571 0,000970 aikuiskoulutuskeskus (substantiivi)
+   8140     571 0,000970 huoltamo (substantiivi)
+   8141     571 0,000970 kuntosali (substantiivi)
+   8142     571 0,000970 loppukausi (substantiivi)
+   8143     571 0,000970 lähtöpaikka (substantiivi)
+   8144     571 0,000970 ponsi (substantiivi)
+   8145     571 0,000970 snellman (erisnimi)
+   8146     571 0,000970 soittaminen (substantiivi)
+   8147     570 0,000968 hirvi (erisnimi)
+   8148     570 0,000968 irviä (verbi)
+   8149     570 0,000968 kauppahalli (substantiivi)
+   8150     570 0,000968 levypallo (substantiivi)
+   8151     570 0,000968 mäkiviikko (substantiivi)
+   8152     570 0,000968 nousukausi (substantiivi)
+   8153     570 0,000968 pahiten (adverbi)
+   8154     570 0,000968 rikospoliisi (substantiivi)
+   8155     570 0,000968 terveydenhoitaja (substantiivi)
+   8156     570 0,000968 vapautuminen (substantiivi)
+   8157     570 0,000968 virsi (substantiivi)
+   8158     570 0,000968 voimistelu (substantiivi)
+   8159     569 0,000967 bmw (lyhenne)
+   8160     569 0,000967 ikäryhmä (substantiivi)
+   8161     569 0,000967 kuntatalous (substantiivi)
+   8162     569 0,000967 määrätietoinen (adjektiivi)
+   8163     569 0,000967 ongelmajäte (substantiivi)
+   8164     569 0,000967 sopimaton (adjektiivi)
+   8165     569 0,000967 veronalennus (substantiivi)
+   8166     569 0,000967 4h (lukusana)
+   8167     568 0,000965 edelläkävijä (substantiivi)
+   8168     568 0,000965 entisellään (adverbi)
+   8169     568 0,000965 erämaa (substantiivi)
+   8170     568 0,000965 ilmastointi (substantiivi)
+   8171     568 0,000965 kaarre (substantiivi)
+   8172     568 0,000965 kuoliaaksi (adverbi)
+   8173     568 0,000965 mr (lyhenne)
+   8174     568 0,000965 nyrkkeily (substantiivi)
+   8175     568 0,000965 parhaimmisto (substantiivi)
+   8176     568 0,000965 tammi (erisnimi)
+   8177     568 0,000965 virkakausi (substantiivi)
+   8178     568 0,000965 vuosineljännes (substantiivi)
+   8179     567 0,000963 huolehtiminen (substantiivi)
+   8180     567 0,000963 javier (erisnimi)
+   8181     567 0,000963 kristillisdemokraatti (substantiivi)
+   8182     567 0,000963 mustavalkoinen (adjektiivi)
+   8183     567 0,000963 närhi (erisnimi)
+   8184     567 0,000963 ruohonen (erisnimi)
+   8185     567 0,000963 toisin_sanoen (konjunktio)
+   8186     567 0,000963 täysosuma (substantiivi)
+   8187     566 0,000962 bo (erisnimi)
+   8188     566 0,000962 havu (erisnimi)
+   8189     566 0,000962 kehittely (substantiivi)
+   8190     566 0,000962 keväinen (adjektiivi)
+   8191     566 0,000962 lähempänä (prepositio)
+   8192     566 0,000962 markkanen (erisnimi)
+   8193     566 0,000962 päätöserä (substantiivi)
+   8194     566 0,000962 reini (erisnimi)
+   8195     566 0,000962 teijo (erisnimi)
+   8196     566 0,000962 tukeutua (verbi)
+   8197     566 0,000962 öisin (adverbi)
+   8198     565 0,000960 antoisa (adjektiivi)
+   8199     565 0,000960 bush (erisnimi)
+   8200     565 0,000960 laiho (erisnimi)
+   8201     565 0,000960 lähimmäinen (substantiivi)
+   8202     565 0,000960 marie (erisnimi)
+   8203     565 0,000960 pokka (erisnimi)
+   8204     565 0,000960 rakennelma (substantiivi)
+   8205     565 0,000960 seurakuntayhtymä (substantiivi)
+   8206     564 0,000958 ennen_kokematon (adjektiivi)
+   8207     564 0,000958 haulikko (substantiivi)
+   8208     564 0,000958 kajava (erisnimi)
+   8209     564 0,000958 käsikirjoittaa (verbi)
+   8210     564 0,000958 myyntivoitto (substantiivi)
+   8211     564 0,000958 salakuljetus (substantiivi)
+   8212     564 0,000958 siltanen (erisnimi)
+   8213     564 0,000958 sunnuntaisin (adverbi)
+   8214     564 0,000958 tietynlainen (adjektiivi)
+   8215     564 0,000958 värtsilä (erisnimi)
+   8216     563 0,000956 ahneus (substantiivi)
+   8217     563 0,000956 asianomistaja (substantiivi)
+   8218     563 0,000956 bergman (erisnimi)
+   8219     563 0,000956 epäonni (substantiivi)
+   8220     563 0,000956 hääriä (verbi)
+   8221     563 0,000956 isotalo (erisnimi)
+   8222     563 0,000956 mary (erisnimi)
+   8223     562 0,000955 edunvalvonta (substantiivi)
+   8224     562 0,000955 huvipuisto (substantiivi)
+   8225     562 0,000955 järvi (erisnimi)
+   8226     562 0,000955 karttaa (verbi)
+   8227     562 0,000955 keskus (erisnimi)
+   8228     562 0,000955 koulutuskeskus (substantiivi)
+   8229     562 0,000955 lailla (adverbi)
+   8230     562 0,000955 masku (erisnimi)
+   8231     562 0,000955 sanottaa (verbi)
+   8232     562 0,000955 vapaapäivä (substantiivi)
+   8233     561 0,000953 alkuaika (substantiivi)
+   8234     561 0,000953 eläinaktivisti (substantiivi)
+   8235     561 0,000953 emoyhtiö (substantiivi)
+   8236     561 0,000953 jäljittää (verbi)
+   8237     561 0,000953 kanta-häme (erisnimi)
+   8238     561 0,000953 luistin (substantiivi)
+   8239     561 0,000953 mystinen (adjektiivi)
+   8240     561 0,000953 nelisenkymmentä (lukusana)
+   8241     561 0,000953 paalupaikka (substantiivi)
+   8242     561 0,000953 sekoitus (substantiivi)
+   8243     561 0,000953 uskaltautua (verbi)
+   8244     561 0,000953 viulisti (substantiivi)
+   8245     561 0,000953 vuoto (substantiivi)
+   8246     561 0,000953 väliaikaisesti (adverbi)
+   8247     560 0,000951 alkulohko (substantiivi)
+   8248     560 0,000951 elämäkerta (substantiivi)
+   8249     560 0,000951 hillitty (adjektiivi)
+   8250     560 0,000951 jatke (substantiivi)
+   8251     560 0,000951 johtopaikka (substantiivi)
+   8252     560 0,000951 kehkeytyä (verbi)
+   8253     560 0,000951 malmö (erisnimi)
+   8254     560 0,000951 peräänkuuluttaa (verbi)
+   8255     560 0,000951 pyöräillä (verbi)
+   8256     560 0,000951 senaattori (substantiivi)
+   8257     560 0,000951 sivuinen (adjektiivi)
+   8258     560 0,000951 tellervo (erisnimi)
+   8259     560 0,000951 verho (substantiivi)
+   8260     560 0,000951 vyö (substantiivi)
+   8261     559 0,000950 juhana (erisnimi)
+   8262     559 0,000950 jussilainen (erisnimi)
+   8263     559 0,000950 kiintoisa (adjektiivi)
+   8264     559 0,000950 liittokierros (substantiivi)
+   8265     559 0,000950 lumivyöry (substantiivi)
+   8266     559 0,000950 oppitunti (substantiivi)
+   8267     559 0,000950 persianlahti (erisnimi)
+   8268     559 0,000950 saatella (verbi)
+   8269     559 0,000950 sulo (erisnimi)
+   8270     559 0,000950 viking (erisnimi)
+   8271     558 0,000948 citymarket (erisnimi)
+   8272     558 0,000948 kapakka (substantiivi)
+   8273     558 0,000948 kieliä (verbi)
+   8274     558 0,000948 lähestymiskielto (substantiivi)
+   8275     558 0,000948 maailmankuva (substantiivi)
+   8276     558 0,000948 mieleinen (adjektiivi)
+   8277     558 0,000948 nuotti (substantiivi)
+   8278     558 0,000948 nyttemmin (adverbi)
+   8279     558 0,000948 oleskella (verbi)
+   8280     558 0,000948 pahentaa (verbi)
+   8281     558 0,000948 riittämätön (adjektiivi)
+   8282     558 0,000948 selvyys (substantiivi)
+   8283     558 0,000948 valistaa (verbi)
+   8284     557 0,000946 den (lyhenne)
+   8285     557 0,000946 ehkäiseminen (substantiivi)
+   8286     557 0,000946 huijata (verbi)
+   8287     557 0,000946 hyötykäyttö (substantiivi)
+   8288     557 0,000946 ko (adverbi)
+   8289     557 0,000946 niin_myös (konjunktio)
+   8290     557 0,000946 nurmela (erisnimi)
+   8291     557 0,000946 parlamentaarinen (adjektiivi)
+   8292     557 0,000946 pidellä (verbi)
+   8293     557 0,000946 pirinen (erisnimi)
+   8294     557 0,000946 postimerkki (substantiivi)
+   8295     557 0,000946 puutavara (substantiivi)
+   8296     557 0,000946 tietojärjestelmä (substantiivi)
+   8297     557 0,000946 varmuuden_vuoksi (adverbi)
+   8298     557 0,000946 varustamo (substantiivi)
+   8299     556 0,000945 epäluulo (substantiivi)
+   8300     556 0,000945 johtoasema (substantiivi)
+   8301     556 0,000945 lisäaika (substantiivi)
+   8302     556 0,000945 lämmitys (substantiivi)
+   8303     556 0,000945 otto (substantiivi)
+   8304     556 0,000945 rinnastaa (verbi)
+   8305     556 0,000945 tietenkään (adverbi)
+   8306     556 0,000945 varjella (verbi)
+   8307     556 0,000945 värittää (verbi)
+   8308     555 0,000943 kelvollinen (adjektiivi)
+   8309     555 0,000943 kohdalle (prepositio)
+   8310     555 0,000943 muistio (substantiivi)
+   8311     555 0,000943 mönkkönen (erisnimi)
+   8312     555 0,000943 yit (lyhenne)
+   8313     554 0,000941 ilmailulaitos (substantiivi)
+   8314     554 0,000941 junttila (erisnimi)
+   8315     554 0,000941 kiljunen (erisnimi)
+   8316     554 0,000941 koditon (adjektiivi)
+   8317     554 0,000941 lammi (erisnimi)
+   8318     554 0,000941 rauhansuunnitelma (substantiivi)
+   8319     554 0,000941 tapahtumapaikka (substantiivi)
+   8320     554 0,000941 tshekkoslovakia (erisnimi)
+   8321     554 0,000941 urheilullinen (adjektiivi)
+   8322     553 0,000939 hallitsija (substantiivi)
+   8323     553 0,000939 hietalahti (erisnimi)
+   8324     553 0,000939 hokkanen (erisnimi)
+   8325     553 0,000939 itsestään_selvä (adjektiivi)
+   8326     553 0,000939 kolmesti (adverbi)
+   8327     553 0,000939 kurssilainen (substantiivi)
+   8328     553 0,000939 laukata (verbi)
+   8329     553 0,000939 luotettavuus (substantiivi)
+   8330     553 0,000939 marcus (erisnimi)
+   8331     553 0,000939 pelastaminen (substantiivi)
+   8332     553 0,000939 turvavyö (substantiivi)
+   8333     553 0,000939 valtaisa (adjektiivi)
+   8334     553 0,000939 yrityskauppa (substantiivi)
+   8335     552 0,000938 heinänen (erisnimi)
+   8336     552 0,000938 jymy (erisnimi)
+   8337     552 0,000938 nautinto (substantiivi)
+   8338     552 0,000938 rosberg (erisnimi)
+   8339     552 0,000938 silvennoinen (erisnimi)
+   8340     552 0,000938 öljy-yhtiö (substantiivi)
+   8341     551 0,000936 bjarne (erisnimi)
+   8342     551 0,000936 kansanmurha (substantiivi)
+   8343     551 0,000936 namibia (erisnimi)
+   8344     551 0,000936 nöyrä (adjektiivi)
+   8345     551 0,000936 opetussuunnitelma (substantiivi)
+   8346     551 0,000936 pelipaikka (substantiivi)
+   8347     551 0,000936 salaperäinen (adjektiivi)
+   8348     551 0,000936 tarkkailu (substantiivi)
+   8349     551 0,000936 valtaus (substantiivi)
+   8350     551 0,000936 ylikuumeneminen (substantiivi)
+   8351     550 0,000934 ennätysmäärä (substantiivi)
+   8352     550 0,000934 hanki (substantiivi)
+   8353     550 0,000934 hassu (adjektiivi)
+   8354     550 0,000934 kiinnittyä (verbi)
+   8355     550 0,000934 kouluikäinen (adjektiivi)
+   8356     550 0,000934 laila (erisnimi)
+   8357     550 0,000934 maallikko (substantiivi)
+   8358     550 0,000934 pennanen (erisnimi)
+   8359     550 0,000934 sitkeästi (adverbi)
+   8360     550 0,000934 taloustilanne (substantiivi)
+   8361     550 0,000934 työsopimus (substantiivi)
+   8362     550 0,000934 viive (substantiivi)
+   8363     549 0,000933 ahven (substantiivi)
+   8364     549 0,000933 ilmatila (substantiivi)
+   8365     549 0,000933 jaatinen (erisnimi)
+   8366     549 0,000933 katko (substantiivi)
+   8367     549 0,000933 keskipiste (substantiivi)
+   8368     549 0,000933 kärjistää (verbi)
+   8369     549 0,000933 leirintäalue (substantiivi)
+   8370     549 0,000933 liittäminen (substantiivi)
+   8371     549 0,000933 lähiympäristö (substantiivi)
+   8372     549 0,000933 martta (erisnimi)
+   8373     549 0,000933 nelson (erisnimi)
+   8374     549 0,000933 oliver (erisnimi)
+   8375     549 0,000933 savuke (substantiivi)
+   8376     549 0,000933 tee (substantiivi)
+   8377     549 0,000933 tykki (substantiivi)
+   8378     548 0,000931 amnesty (erisnimi)
+   8379     548 0,000931 gaza (erisnimi)
+   8380     548 0,000931 green (erisnimi)
+   8381     548 0,000931 herra (erisnimi)
+   8382     548 0,000931 jatkopaikka (substantiivi)
+   8383     548 0,000931 järjestyssääntö (substantiivi)
+   8384     548 0,000931 linkki (substantiivi)
+   8385     548 0,000931 monin_paikoin (adverbi)
+   8386     548 0,000931 monipuolisuus (substantiivi)
+   8387     548 0,000931 mummu (substantiivi)
+   8388     548 0,000931 palestiina (erisnimi)
+   8389     548 0,000931 pulliainen (erisnimi)
+   8390     548 0,000931 pysäkki (substantiivi)
+   8391     548 0,000931 rukous (substantiivi)
+   8392     548 0,000931 tiuha (adjektiivi)
+   8393     548 0,000931 torino (erisnimi)
+   8394     548 0,000931 valtaoikeus (substantiivi)
+   8395     548 0,000931 vänskä (erisnimi)
+   8396     547 0,000929 hiljentää (verbi)
+   8397     547 0,000929 juhlapäivä (substantiivi)
+   8398     547 0,000929 juominen (substantiivi)
+   8399     547 0,000929 kartuttaa (verbi)
+   8400     547 0,000929 kilpi (erisnimi)
+   8401     547 0,000929 kiova (erisnimi)
+   8402     547 0,000929 koukku (substantiivi)
+   8403     547 0,000929 kätevä (adjektiivi)
+   8404     547 0,000929 maire (erisnimi)
+   8405     547 0,000929 pahoinpidellä (verbi)
+   8406     547 0,000929 puranen (erisnimi)
+   8407     547 0,000929 päänsärky (substantiivi)
+   8408     547 0,000929 ratkaiseva (adjektiivi)
+   8409     547 0,000929 rauni (erisnimi)
+   8410     547 0,000929 rovanperä (erisnimi)
+   8411     547 0,000929 suunnaton (adjektiivi)
+   8412     547 0,000929 temmata (verbi)
+   8413     547 0,000929 terveysala (substantiivi)
+   8414     547 0,000929 tynnyri (substantiivi)
+   8415     547 0,000929 työharjoittelu (substantiivi)
+   8416     546 0,000928 franz (erisnimi)
+   8417     546 0,000928 hakola (erisnimi)
+   8418     546 0,000928 huolia (verbi)
+   8419     546 0,000928 kuljettaminen (substantiivi)
+   8420     546 0,000928 mouhijärvi (erisnimi)
+   8421     546 0,000928 rangers (erisnimi)
+   8422     546 0,000928 tikka (erisnimi)
+   8423     546 0,000928 upeasti (adverbi)
+   8424     546 0,000928 vartti (substantiivi)
+   8425     546 0,000928 vetonaula (substantiivi)
+   8426     546 0,000928 wall (erisnimi)
+   8427     545 0,000926 ari-matti (erisnimi)
+   8428     545 0,000926 arkielämä (substantiivi)
+   8429     545 0,000926 ddr (lyhenne)
+   8430     545 0,000926 englantilainen (substantiivi)
+   8431     545 0,000926 hyvä (erisnimi)
+   8432     545 0,000926 itar (erisnimi)
+   8433     545 0,000926 kampanjoida (verbi)
+   8434     545 0,000926 lappu (substantiivi)
+   8435     545 0,000926 marjaana (erisnimi)
+   8436     545 0,000926 mitätön (adjektiivi)
+   8437     545 0,000926 motivoida (verbi)
+   8438     545 0,000926 paremmuus (substantiivi)
+   8439     545 0,000926 renault (erisnimi)
+   8440     545 0,000926 työpanos (substantiivi)
+   8441     545 0,000926 vierellä (prepositio)
+   8442     545 0,000926 viro (substantiivi)
+   8443     545 0,000926 ylikonstaapeli (substantiivi)
+   8444     544 0,000924 kasvuvauhti (substantiivi)
+   8445     544 0,000924 kuormitus (substantiivi)
+   8446     544 0,000924 kyteä (verbi)
+   8447     544 0,000924 pieni (erisnimi)
+   8448     544 0,000924 päivälehti (substantiivi)
+   8449     544 0,000924 pääjuhla (substantiivi)
+   8450     544 0,000924 radioasema (substantiivi)
+   8451     544 0,000924 uljas (adjektiivi)
+   8452     544 0,000924 valkosipuli (substantiivi)
+   8453     543 0,000922 ekonomi (substantiivi)
+   8454     543 0,000922 illallinen (substantiivi)
+   8455     543 0,000922 isänmaallinen (adjektiivi)
+   8456     543 0,000922 jottei (verbi)
+   8457     543 0,000922 kinnula (erisnimi)
+   8458     543 0,000922 koostumus (substantiivi)
+   8459     543 0,000922 kuvittaa (verbi)
+   8460     543 0,000922 ky (lyhenne)
+   8461     543 0,000922 muhia (verbi)
+   8462     543 0,000922 rata (erisnimi)
+   8463     543 0,000922 tämänkaltainen (adjektiivi)
+   8464     543 0,000922 uudisrakennus (substantiivi)
+   8465     542 0,000921 dählie (erisnimi)
+   8466     542 0,000921 kemikaali (substantiivi)
+   8467     542 0,000921 laulaminen (substantiivi)
+   8468     542 0,000921 raatikainen (erisnimi)
+   8469     542 0,000921 sairaanhoito (substantiivi)
+   8470     542 0,000921 salibandy (substantiivi)
+   8471     542 0,000921 toivakka (erisnimi)
+   8472     542 0,000921 tuuli (erisnimi)
+   8473     542 0,000921 välimäki (erisnimi)
+   8474     541 0,000919 ammus (substantiivi)
+   8475     541 0,000919 häkki (substantiivi)
+   8476     541 0,000919 joutaa (verbi)
+   8477     541 0,000919 laueta (verbi)
+   8478     541 0,000919 lauma (substantiivi)
+   8479     541 0,000919 neuvottelukierros (substantiivi)
+   8480     541 0,000919 oskar (erisnimi)
+   8481     541 0,000919 suojeleminen (substantiivi)
+   8482     541 0,000919 uutinen (erisnimi)
+   8483     541 0,000919 vasemmistopuolue (substantiivi)
+   8484     541 0,000919 viitasalo (erisnimi)
+   8485     540 0,000917 espoolainen (adjektiivi)
+   8486     540 0,000917 isännöitsijä (substantiivi)
+   8487     540 0,000917 karsiutua (verbi)
+   8488     540 0,000917 kasvaminen (substantiivi)
+   8489     540 0,000917 kurjuus (substantiivi)
+   8490     540 0,000917 niklas (erisnimi)
+   8491     540 0,000917 pelimies (substantiivi)
+   8492     540 0,000917 pumpata (verbi)
+   8493     540 0,000917 puuhamies (substantiivi)
+   8494     540 0,000917 stephen (erisnimi)
+   8495     540 0,000917 valkonen (erisnimi)
+   8496     540 0,000917 viitta (substantiivi)
+   8497     539 0,000916 alkoholijuoma (substantiivi)
+   8498     539 0,000916 ennemmin (adverbi)
+   8499     539 0,000916 epäröidä (verbi)
+   8500     539 0,000916 kempas (erisnimi)
+   8501     539 0,000916 puhti (substantiivi)
+   8502     539 0,000916 rasti (erisnimi)
+   8503     539 0,000916 tarpeen_mukaan (adverbi)
+   8504     538 0,000914 elokuvajuhla (substantiivi)
+   8505     538 0,000914 etätyö (substantiivi)
+   8506     538 0,000914 hyvitys (substantiivi)
+   8507     538 0,000914 jälleenrakennus (substantiivi)
+   8508     538 0,000914 kuitti (substantiivi)
+   8509     538 0,000914 laskettaa (verbi)
+   8510     538 0,000914 mitoittaa (verbi)
+   8511     538 0,000914 pyry (erisnimi)
+   8512     537 0,000912 avara (adjektiivi)
+   8513     537 0,000912 epätavallinen (adjektiivi)
+   8514     537 0,000912 journalismi (substantiivi)
+   8515     537 0,000912 levytys (substantiivi)
+   8516     537 0,000912 lukkari (substantiivi)
+   8517     537 0,000912 maalari (substantiivi)
+   8518     537 0,000912 me (lyhenne)
+   8519     537 0,000912 miekka (substantiivi)
+   8520     537 0,000912 muodikas (adjektiivi)
+   8521     537 0,000912 pop (substantiivi)
+   8522     537 0,000912 toipuminen (substantiivi)
+   8523     537 0,000912 vierastaa (verbi)
+   8524     537 0,000912 volyymi (substantiivi)
+   8525     536 0,000911 kastella (verbi)
+   8526     536 0,000911 maukas (adjektiivi)
+   8527     536 0,000911 moottorikelkka (substantiivi)
+   8528     536 0,000911 murmansk (erisnimi)
+   8529     536 0,000911 paavali (erisnimi)
+   8530     536 0,000911 paikallisesti (adverbi)
+   8531     536 0,000911 pc (lyhenne)
+   8532     536 0,000911 peura (substantiivi)
+   8533     536 0,000911 puolustuspeli (substantiivi)
+   8534     536 0,000911 pääkirjasto (substantiivi)
+   8535     536 0,000911 raine (erisnimi)
+   8536     536 0,000911 sininen (substantiivi)
+   8537     536 0,000911 sudan (erisnimi)
+   8538     536 0,000911 totinen (adjektiivi)
+   8539     536 0,000911 ylikansallinen (adjektiivi)
+   8540     535 0,000909 esikoinen (substantiivi)
+   8541     535 0,000909 karalahti (erisnimi)
+   8542     535 0,000909 kunnianosoitus (substantiivi)
+   8543     535 0,000909 luokanopettaja (substantiivi)
+   8544     535 0,000909 pikkutyttö (substantiivi)
+   8545     535 0,000909 pristinassa (erisnimi)
+   8546     535 0,000909 sianliha (substantiivi)
+   8547     535 0,000909 tasapainottaa (verbi)
+   8548     534 0,000907 erkkilä (erisnimi)
+   8549     534 0,000907 home (substantiivi)
+   8550     534 0,000907 huoltaja (substantiivi)
+   8551     534 0,000907 jäljellä_oleva (adjektiivi)
+   8552     534 0,000907 mestaruuskilpailu (substantiivi)
+   8553     534 0,000907 rasila (erisnimi)
+   8554     534 0,000907 tuotemerkki (substantiivi)
+   8555     533 0,000906 basisti (substantiivi)
+   8556     533 0,000906 delhi (erisnimi)
+   8557     533 0,000906 myötätuuli (substantiivi)
+   8558     533 0,000906 plus (adverbi)
+   8559     533 0,000906 produktio (substantiivi)
+   8560     533 0,000906 tarkoituksenmukainen (adjektiivi)
+   8561     533 0,000906 tavoittelu (substantiivi)
+   8562     533 0,000906 yhteisyritys (substantiivi)
+   8563     532 0,000904 ennustus (substantiivi)
+   8564     532 0,000904 haapamäki (erisnimi)
+   8565     532 0,000904 hajauttaa (verbi)
+   8566     532 0,000904 jutila (erisnimi)
+   8567     532 0,000904 kautta_aikojen (adverbi)
+   8568     532 0,000904 kiiminki (erisnimi)
+   8569     532 0,000904 käärme (substantiivi)
+   8570     532 0,000904 lajike (substantiivi)
+   8571     532 0,000904 melodia (substantiivi)
+   8572     532 0,000904 nikkilä (erisnimi)
+   8573     532 0,000904 paperiliitto (erisnimi)
+   8574     532 0,000904 piru (substantiivi)
+   8575     532 0,000904 purkki (substantiivi)
+   8576     532 0,000904 rahastaa (verbi)
+   8577     532 0,000904 siika (substantiivi)
+   8578     532 0,000904 vuode (substantiivi)
+   8579     532 0,000904 väli-suomi (erisnimi)
+   8580     532 0,000904 yhteydenpito (substantiivi)
+   8581     531 0,000902 frangi (substantiivi)
+   8582     531 0,000902 jälleenrakentaminen (substantiivi)
+   8583     531 0,000902 kesätyö (substantiivi)
+   8584     531 0,000902 kevennys (substantiivi)
+   8585     531 0,000902 kiehua (verbi)
+   8586     531 0,000902 kiekko (erisnimi)
+   8587     531 0,000902 kisapaikka (substantiivi)
+   8588     531 0,000902 myötäillä (verbi)
+   8589     531 0,000902 sitaatti (substantiivi)
+   8590     531 0,000902 valtionsyyttäjä (substantiivi)
+   8591     531 0,000902 verohelpotus (substantiivi)
+   8592     531 0,000902 yleisömäärä (substantiivi)
+   8593     530 0,000900 akuutti (adjektiivi)
+   8594     530 0,000900 de (erisnimi)
+   8595     530 0,000900 elämä (erisnimi)
+   8596     530 0,000900 hynninen (erisnimi)
+   8597     530 0,000900 häviö (substantiivi)
+   8598     530 0,000900 lukuinen (adjektiivi)
+   8599     530 0,000900 ontua (verbi)
+   8600     530 0,000900 pihamaa (substantiivi)
+   8601     530 0,000900 seitsemänneksi (adverbi)
+   8602     530 0,000900 tuovinen (erisnimi)
+   8603     530 0,000900 vanhanen (erisnimi)
+   8604     529 0,000899 asuntotuotanto (substantiivi)
+   8605     529 0,000899 ibrahim (erisnimi)
+   8606     529 0,000899 keskushallinto (substantiivi)
+   8607     529 0,000899 sauva (substantiivi)
+   8608     529 0,000899 tulitus (substantiivi)
+   8609     529 0,000899 työväentalo (substantiivi)
+   8610     529 0,000899 ukkola (erisnimi)
+   8611     528 0,000897 akateemikko (substantiivi)
+   8612     528 0,000897 hyytiäinen (erisnimi)
+   8613     528 0,000897 kakkonen (erisnimi)
+   8614     528 0,000897 lataus (substantiivi)
+   8615     528 0,000897 maistella (verbi)
+   8616     528 0,000897 murhaaja (substantiivi)
+   8617     528 0,000897 ok (lyhenne)
+   8618     528 0,000897 protestoida (verbi)
+   8619     528 0,000897 roiha (erisnimi)
+   8620     528 0,000897 samantyyppinen (adjektiivi)
+   8621     528 0,000897 seistä (verbi)
+   8622     528 0,000897 tasoinen (adjektiivi)
+   8623     528 0,000897 valtiopäivä (substantiivi)
+   8624     527 0,000895 ann (erisnimi)
+   8625     527 0,000895 eritellä (verbi)
+   8626     527 0,000895 everstiluutnantti (substantiivi)
+   8627     527 0,000895 finalisti (substantiivi)
+   8628     527 0,000895 greenpeace (erisnimi)
+   8629     527 0,000895 hulluus (substantiivi)
+   8630     527 0,000895 isovanhempi (substantiivi)
+   8631     527 0,000895 kehdata (verbi)
+   8632     527 0,000895 kemijärvi (erisnimi)
+   8633     527 0,000895 piikkiö (erisnimi)
+   8634     527 0,000895 rusi (erisnimi)
+   8635     527 0,000895 saapas (substantiivi)
+   8636     527 0,000895 seos (substantiivi)
+   8637     527 0,000895 siirtymäaika (substantiivi)
+   8638     527 0,000895 tutkailla (verbi)
+   8639     527 0,000895 typerä (adjektiivi)
+   8640     527 0,000895 yhteiskuntatiede (substantiivi)
+   8641     526 0,000894 arkku (substantiivi)
+   8642     526 0,000894 armi (erisnimi)
+   8643     526 0,000894 astella (verbi)
+   8644     526 0,000894 astma (substantiivi)
+   8645     526 0,000894 asuntoalue (substantiivi)
+   8646     526 0,000894 maistaa (verbi)
+   8647     526 0,000894 marketti (substantiivi)
+   8648     526 0,000894 pehkonen (erisnimi)
+   8649     526 0,000894 pohjoinen (erisnimi)
+   8650     526 0,000894 viidakko (substantiivi)
+   8651     525 0,000892 allan (erisnimi)
+   8652     525 0,000892 antila (erisnimi)
+   8653     525 0,000892 estradi (substantiivi)
+   8654     525 0,000892 johtajuus (substantiivi)
+   8655     525 0,000892 luomus (substantiivi)
+   8656     525 0,000892 palkkalista (substantiivi)
+   8657     525 0,000892 pelotella (verbi)
+   8658     525 0,000892 puukottaa (verbi)
+   8659     525 0,000892 päiväraha (substantiivi)
+   8660     525 0,000892 shell (erisnimi)
+   8661     525 0,000892 tahko (erisnimi)
+   8662     525 0,000892 tenori (substantiivi)
+   8663     525 0,000892 tutkimusryhmä (substantiivi)
+   8664     525 0,000892 verotoimisto (substantiivi)
+   8665     525 0,000892 viisivuotias (adjektiivi)
+   8666     525 0,000892 wto (erisnimi)
+   8667     524 0,000890 asianosainen (substantiivi)
+   8668     524 0,000890 helge (erisnimi)
+   8669     524 0,000890 häikäistä (verbi)
+   8670     524 0,000890 keitto (substantiivi)
+   8671     524 0,000890 leijua (verbi)
+   8672     524 0,000890 murtuma (substantiivi)
+   8673     524 0,000890 päärooli (substantiivi)
+   8674     524 0,000890 reetta (erisnimi)
+   8675     524 0,000890 terveydentila (substantiivi)
+   8676     524 0,000890 työikäinen (adjektiivi)
+   8677     524 0,000890 wales (erisnimi)
+   8678     524 0,000890 ympäriajo (substantiivi)
+   8679     523 0,000889 ajoitus (substantiivi)
+   8680     523 0,000889 huipputaso (substantiivi)
+   8681     523 0,000889 maahanmuutto (substantiivi)
+   8682     523 0,000889 millimetri (substantiivi)
+   8683     523 0,000889 nauvo (erisnimi)
+   8684     523 0,000889 nöyryyttää (verbi)
+   8685     523 0,000889 osuuspankkiryhmä (substantiivi)
+   8686     523 0,000889 paljastus (substantiivi)
+   8687     523 0,000889 sijoitusrahasto (substantiivi)
+   8688     523 0,000889 säiliö (substantiivi)
+   8689     523 0,000889 valtakunnansovittelija (substantiivi)
+   8690     523 0,000889 vastustaminen (substantiivi)
+   8691     523 0,000889 verenpaine (substantiivi)
+   8692     523 0,000889 viimeiseksi (adverbi)
+   8693     522 0,000887 asteittain (adverbi)
+   8694     522 0,000887 aukiolo (substantiivi)
+   8695     522 0,000887 biologia (substantiivi)
+   8696     522 0,000887 kaksonen (substantiivi)
+   8697     522 0,000887 kamala (adjektiivi)
+   8698     522 0,000887 kiviniemi (erisnimi)
+   8699     522 0,000887 kohdentaa (verbi)
+   8700     522 0,000887 lomake (substantiivi)
+   8701     522 0,000887 mikä_hyvänsä (pronomini)
+   8702     522 0,000887 näkökohta (substantiivi)
+   8703     522 0,000887 nälkäinen (adjektiivi)
+   8704     522 0,000887 paarma (erisnimi)
+   8705     522 0,000887 propaganda (substantiivi)
+   8706     522 0,000887 ray (erisnimi)
+   8707     522 0,000887 sananvapaus (substantiivi)
+   8708     522 0,000887 tamperelainen (substantiivi)
+   8709     522 0,000887 toimenkuva (substantiivi)
+   8710     522 0,000887 tshernomyrdinin (erisnimi)
+   8711     522 0,000887 turismi (substantiivi)
+   8712     522 0,000887 vahtia (verbi)
+   8713     522 0,000887 vakuuttavasti (adverbi)
+   8714     522 0,000887 vääryys (substantiivi)
+   8715     521 0,000885 eläkevakuutus (substantiivi)
+   8716     521 0,000885 kanttori (substantiivi)
+   8717     521 0,000885 keskeytyä (verbi)
+   8718     521 0,000885 lennart (erisnimi)
+   8719     521 0,000885 levittäytyä (verbi)
+   8720     521 0,000885 luonnonsuojelualue (substantiivi)
+   8721     521 0,000885 mielelläni (adverbi)
+   8722     521 0,000885 päivänvalo (substantiivi)
+   8723     521 0,000885 sadasosa (substantiivi)
+   8724     521 0,000885 säde (substantiivi)
+   8725     521 0,000885 viheltää (verbi)
+   8726     520 0,000883 harras (adjektiivi)
+   8727     520 0,000883 hinnoitella (verbi)
+   8728     520 0,000883 ikivanha (adjektiivi)
+   8729     520 0,000883 kokonaiskilpailu (substantiivi)
+   8730     520 0,000883 kolmio (substantiivi)
+   8731     520 0,000883 lupaava (adjektiivi)
+   8732     520 0,000883 opinahjo (substantiivi)
+   8733     520 0,000883 piippu (substantiivi)
+   8734     520 0,000883 raskaasti (adverbi)
+   8735     520 0,000883 sekoittua (verbi)
+   8736     520 0,000883 äänestyspaikka (substantiivi)
+   8737     519 0,000882 asustaa (verbi)
+   8738     519 0,000882 kamarimusiikki (substantiivi)
+   8739     519 0,000882 kivimäki (erisnimi)
+   8740     519 0,000882 kääntäjä (substantiivi)
+   8741     519 0,000882 lähemmäs (prepositio)
+   8742     519 0,000882 puolimatka (erisnimi)
+   8743     519 0,000882 reaktori (substantiivi)
+   8744     519 0,000882 saudi-arabia (erisnimi)
+   8745     519 0,000882 single (substantiivi)
+   8746     519 0,000882 sopupeli (substantiivi)
+   8747     519 0,000882 syrjiä (verbi)
+   8748     519 0,000882 vähyys (substantiivi)
+   8749     518 0,000880 aktivoida (verbi)
+   8750     518 0,000880 eritä (verbi)
+   8751     518 0,000880 hiljetä (verbi)
+   8752     518 0,000880 hyönteinen (substantiivi)
+   8753     518 0,000880 jousto (substantiivi)
+   8754     518 0,000880 kaivaus (substantiivi)
+   8755     518 0,000880 kotoinen (adjektiivi)
+   8756     518 0,000880 rutkasti (adverbi)
+   8757     517 0,000878 apulaisjohtaja (substantiivi)
+   8758     517 0,000878 eerola (erisnimi)
+   8759     517 0,000878 ehrnrooth (erisnimi)
+   8760     517 0,000878 fredrik (erisnimi)
+   8761     517 0,000878 hajanainen (adjektiivi)
+   8762     517 0,000878 hytönen (erisnimi)
+   8763     517 0,000878 joskaan (konjunktio)
+   8764     517 0,000878 kotilainen (erisnimi)
+   8765     517 0,000878 kuluttajahinta (substantiivi)
+   8766     517 0,000878 noita (substantiivi)
+   8767     517 0,000878 osavuosikatsaus (substantiivi)
+   8768     517 0,000878 pikataipale (substantiivi)
+   8769     517 0,000878 puusto (substantiivi)
+   8770     517 0,000878 räjähde (substantiivi)
+   8771     517 0,000878 samantapainen (adjektiivi)
+   8772     517 0,000878 seksuaalisuus (substantiivi)
+   8773     517 0,000878 suomenhevonen (substantiivi)
+   8774     517 0,000878 työväenopisto (substantiivi)
+   8775     516 0,000877 asiakaskunta (substantiivi)
+   8776     516 0,000877 barakin (erisnimi)
+   8777     516 0,000877 huuskonen (erisnimi)
+   8778     516 0,000877 kertainen (adjektiivi)
+   8779     516 0,000877 käsivarsi (substantiivi)
+   8780     516 0,000877 mittelö (substantiivi)
+   8781     516 0,000877 muuttaja (substantiivi)
+   8782     516 0,000877 partti (erisnimi)
+   8783     516 0,000877 pidetä (verbi)
+   8784     516 0,000877 rehellisyys (substantiivi)
+   8785     516 0,000877 rentoutua (verbi)
+   8786     516 0,000877 suorituskyky (substantiivi)
+   8787     516 0,000877 teheran (erisnimi)
+   8788     516 0,000877 tehopiste (substantiivi)
+   8789     516 0,000877 varamies (substantiivi)
+   8790     516 0,000877 viemäri (substantiivi)
+   8791     515 0,000875 glasgow (erisnimi)
+   8792     515 0,000875 jäätelö (substantiivi)
+   8793     515 0,000875 luistelu (substantiivi)
+   8794     515 0,000875 nähtävyys (substantiivi)
+   8795     515 0,000875 operoida (verbi)
+   8796     515 0,000875 polar (erisnimi)
+   8797     515 0,000875 puhdistaminen (substantiivi)
+   8798     515 0,000875 räisänen (erisnimi)
+   8799     515 0,000875 sk (lyhenne)
+   8800     515 0,000875 täysistunto (substantiivi)
+   8801     515 0,000875 viiala (erisnimi)
+   8802     514 0,000873 alahuone (substantiivi)
+   8803     514 0,000873 avauspäivä (substantiivi)
+   8804     514 0,000873 gorbatshov (erisnimi)
+   8805     514 0,000873 joulukuusi (substantiivi)
+   8806     514 0,000873 kansaneläke (substantiivi)
+   8807     514 0,000873 keskihinta (substantiivi)
+   8808     514 0,000873 kirjeenvaihtaja (substantiivi)
+   8809     514 0,000873 kirpputori (substantiivi)
+   8810     514 0,000873 laajamittainen (adjektiivi)
+   8811     514 0,000873 lukuisia (adverbi)
+   8812     514 0,000873 nordic (erisnimi)
+   8813     514 0,000873 nukketeatteri (substantiivi)
+   8814     514 0,000873 pistepörssi (substantiivi)
+   8815     514 0,000873 puro (substantiivi)
+   8816     514 0,000873 rehellisesti (adverbi)
+   8817     514 0,000873 siivonen (erisnimi)
+   8818     514 0,000873 totella (verbi)
+   8819     514 0,000873 turvattomuus (substantiivi)
+   8820     514 0,000873 vahvistuminen (substantiivi)
+   8821     514 0,000873 ympäri (adverbi)
+   8822     513 0,000872 keksijä (substantiivi)
+   8823     513 0,000872 laurikko (erisnimi)
+   8824     513 0,000872 naispuolinen (adjektiivi)
+   8825     513 0,000872 pyynti (substantiivi)
+   8826     513 0,000872 silakka (substantiivi)
+   8827     513 0,000872 tuoksua (verbi)
+   8828     513 0,000872 valtakirja (substantiivi)
+   8829     513 0,000872 veroinen (adjektiivi)
+   8830     512 0,000870 castro (erisnimi)
+   8831     512 0,000870 eklund (erisnimi)
+   8832     512 0,000870 ikuisesti (adverbi)
+   8833     512 0,000870 kiinteistöveroprosentti (substantiivi)
+   8834     512 0,000870 ohjaaminen (substantiivi)
+   8835     512 0,000870 osuuskauppa (substantiivi)
+   8836     512 0,000870 syyskausi (substantiivi)
+   8837     512 0,000870 sääliä (verbi)
+   8838     512 0,000870 täsmällinen (adjektiivi)
+   8839     512 0,000870 varapresidentti (substantiivi)
+   8840     511 0,000868 ajoittaa (verbi)
+   8841     511 0,000868 auriol (erisnimi)
+   8842     511 0,000868 elpyminen (substantiivi)
+   8843     511 0,000868 hyrynsalmi (erisnimi)
+   8844     511 0,000868 kaksoisvoitto (substantiivi)
+   8845     511 0,000868 kirjaimellisesti (adverbi)
+   8846     511 0,000868 komulainen (erisnimi)
+   8847     511 0,000868 loppuunmyydä (verbi)
+   8848     511 0,000868 lujasti (adverbi)
+   8849     511 0,000868 norrback (erisnimi)
+   8850     511 0,000868 perusteeton (adjektiivi)
+   8851     511 0,000868 pitkällä (adverbi)
+   8852     511 0,000868 päivitellä (verbi)
+   8853     511 0,000868 sitäpaitsi (adverbi)
+   8854     511 0,000868 tehoton (adjektiivi)
+   8855     511 0,000868 teurastamo (substantiivi)
+   8856     511 0,000868 työrauha (substantiivi)
+   8857     511 0,000868 työväline (substantiivi)
+   8858     511 0,000868 vasemmistolainen (adjektiivi)
+   8859     510 0,000866 bagdad (erisnimi)
+   8860     510 0,000866 esitelmä (substantiivi)
+   8861     510 0,000866 huippu-urheilu (substantiivi)
+   8862     510 0,000866 hätäkeskus (substantiivi)
+   8863     510 0,000866 jättäytyä (verbi)
+   8864     510 0,000866 kaavailu (substantiivi)
+   8865     510 0,000866 keikkua (verbi)
+   8866     510 0,000866 liikennevalo (substantiivi)
+   8867     510 0,000866 roine (erisnimi)
+   8868     510 0,000866 turhautua (verbi)
+   8869     510 0,000866 urakoida (verbi)
+   8870     510 0,000866 vakavuus (substantiivi)
+   8871     510 0,000866 venetsia (erisnimi)
+   8872     509 0,000865 finaalipaikka (substantiivi)
+   8873     509 0,000865 infrastruktuuri (substantiivi)
+   8874     509 0,000865 marc (erisnimi)
+   8875     509 0,000865 poistuminen (substantiivi)
+   8876     509 0,000865 puolustautua (verbi)
+   8877     509 0,000865 rakennustyömaa (substantiivi)
+   8878     509 0,000865 ruuna (substantiivi)
+   8879     509 0,000865 saima (erisnimi)
+   8880     509 0,000865 säästellä (verbi)
+   8881     509 0,000865 vastaisku (substantiivi)
+   8882     508 0,000863 faksi (substantiivi)
+   8883     508 0,000863 joensuulainen (substantiivi)
+   8884     508 0,000863 moninainen (adjektiivi)
+   8885     508 0,000863 oikeuskäsittely (substantiivi)
+   8886     508 0,000863 parikymppinen (adjektiivi)
+   8887     508 0,000863 peltoniemi (erisnimi)
+   8888     508 0,000863 pysäköidä (verbi)
+   8889     508 0,000863 pöyry (erisnimi)
+   8890     508 0,000863 rikastua (verbi)
+   8891     508 0,000863 saaste (substantiivi)
+   8892     508 0,000863 taju (substantiivi)
+   8893     508 0,000863 vakoilu (substantiivi)
+   8894     508 0,000863 vastakohta (substantiivi)
+   8895     507 0,000861 hallituspohja (substantiivi)
+   8896     507 0,000861 huippuluokka (substantiivi)
+   8897     507 0,000861 joo (adverbi)
+   8898     507 0,000861 kangasalla (erisnimi)
+   8899     507 0,000861 kasarmi (substantiivi)
+   8900     507 0,000861 koppi (substantiivi)
+   8901     507 0,000861 kääriä (verbi)
+   8902     507 0,000861 lähikunta (substantiivi)
+   8903     507 0,000861 orion (erisnimi)
+   8904     507 0,000861 oulujoki (erisnimi)
+   8905     507 0,000861 passiivinen (adjektiivi)
+   8906     507 0,000861 peluri (substantiivi)
+   8907     507 0,000861 salonius (erisnimi)
+   8908     507 0,000861 taika (substantiivi)
+   8909     507 0,000861 teologia (substantiivi)
+   8910     507 0,000861 walter (erisnimi)
+   8911     507 0,000861 who (lyhenne)
+   8912     506 0,000860 arkisin (adverbi)
+   8913     506 0,000860 edellä_mainittu (adjektiivi)
+   8914     506 0,000860 edistyminen (substantiivi)
+   8915     506 0,000860 evätä (verbi)
+   8916     506 0,000860 hiertää (verbi)
+   8917     506 0,000860 kunnallisjärjestö (substantiivi)
+   8918     506 0,000860 lempeä (adjektiivi)
+   8919     506 0,000860 oppiaine (substantiivi)
+   8920     506 0,000860 riistanhoitopiiri (substantiivi)
+   8921     506 0,000860 sos (lyhenne)
+   8922     506 0,000860 tunnusmerkki (substantiivi)
+   8923     506 0,000860 valkama (erisnimi)
+   8924     506 0,000860 viisumi (substantiivi)
+   8925     505 0,000858 arvomaailma (substantiivi)
+   8926     505 0,000858 claes (erisnimi)
+   8927     505 0,000858 gabriel (erisnimi)
+   8928     505 0,000858 hotellihuone (substantiivi)
+   8929     505 0,000858 joel (erisnimi)
+   8930     505 0,000858 kopioida (verbi)
+   8931     505 0,000858 lääkitys (substantiivi)
+   8932     505 0,000858 nelikko (substantiivi)
+   8933     505 0,000858 nimike (substantiivi)
+   8934     505 0,000858 tirana (erisnimi)
+   8935     505 0,000858 wallenius (erisnimi)
+   8936     505 0,000858 ylioppilaskirjoitus (substantiivi)
+   8937     504 0,000856 aune (erisnimi)
+   8938     504 0,000856 jo_ennestään (adverbi)
+   8939     504 0,000856 laatta (substantiivi)
+   8940     504 0,000856 lyseo (substantiivi)
+   8941     504 0,000856 mestaruussarja (substantiivi)
+   8942     504 0,000856 talvikisa (substantiivi)
+   8943     504 0,000856 varapuhemies (substantiivi)
+   8944     504 0,000856 waltari (erisnimi)
+   8945     504 0,000856 yksityistää (verbi)
+   8946     503 0,000855 anton (erisnimi)
+   8947     503 0,000855 emil (erisnimi)
+   8948     503 0,000855 havahtua (verbi)
+   8949     503 0,000855 joka_kertaa (adverbi)
+   8950     503 0,000855 journalisti (substantiivi)
+   8951     503 0,000855 kotimatka (substantiivi)
+   8952     503 0,000855 kunnallistekniikka (substantiivi)
+   8953     503 0,000855 kuutioinen (adjektiivi)
+   8954     503 0,000855 laittomasti (adverbi)
+   8955     503 0,000855 nauhoittaa (verbi)
+   8956     503 0,000855 oikeusjuttu (substantiivi)
+   8957     503 0,000855 omakotitontti (substantiivi)
+   8958     503 0,000855 parivaljakko (substantiivi)
+   8959     502 0,000853 alati (adverbi)
+   8960     502 0,000853 alppihiihto (substantiivi)
+   8961     502 0,000853 huttu-juntunen (erisnimi)
+   8962     502 0,000853 karsiminen (substantiivi)
+   8963     502 0,000853 kuwait (erisnimi)
+   8964     502 0,000853 laiska (adjektiivi)
+   8965     502 0,000853 metso (substantiivi)
+   8966     502 0,000853 motivoitua (verbi)
+   8967     502 0,000853 mrd (lukusana)
+   8968     502 0,000853 muotoinen (adjektiivi)
+   8969     502 0,000853 muutostyö (substantiivi)
+   8970     502 0,000853 pitkään_aikaan (adverbi)
+   8971     502 0,000853 uskomus (substantiivi)
+   8972     502 0,000853 viisikymppinen (adjektiivi)
+   8973     502 0,000853 yleiskaava (substantiivi)
+   8974     501 0,000851 aviopari (substantiivi)
+   8975     501 0,000851 eeva-liisa (erisnimi)
+   8976     501 0,000851 hyvinvointiyhteiskunta (substantiivi)
+   8977     501 0,000851 noora (erisnimi)
+   8978     501 0,000851 rugova (erisnimi)
+   8979     501 0,000851 saarikoski (erisnimi)
+   8980     501 0,000851 siteerata (verbi)
+   8981     501 0,000851 vancouver (erisnimi)
+   8982     501 0,000851 veneilijä (substantiivi)
+   8983     501 0,000851 viitisenkymmentä (lukusana)
+   8984     500 0,000849 divari (substantiivi)
+   8985     500 0,000849 ehdottoman (adverbi)
+   8986     500 0,000849 hämmennys (substantiivi)
+   8987     500 0,000849 iltapäivälehti (substantiivi)
+   8988     500 0,000849 itämainen (adjektiivi)
+   8989     500 0,000849 jäinen (adjektiivi)
+   8990     500 0,000849 keihäänheitto (substantiivi)
+   8991     500 0,000849 kiltti (adjektiivi)
+   8992     500 0,000849 komeilla (verbi)
+   8993     500 0,000849 kulta (erisnimi)
+   8994     500 0,000849 po (lyhenne)
+   8995     500 0,000849 prisma (erisnimi)
+   8996     500 0,000849 sävyttää (verbi)
+   8997     500 0,000849 talonmies (substantiivi)
+   8998     500 0,000849 vappu (erisnimi)
+   8999     499 0,000848 hartikainen (erisnimi)
+   9000     499 0,000848 kappeli (substantiivi)
+   9001     499 0,000848 kiilata (verbi)
+   9002     499 0,000848 kolmetoista (lukusana)
+   9003     499 0,000848 läntinen (erisnimi)
+   9004     499 0,000848 monza (erisnimi)
+   9005     499 0,000848 ommella (verbi)
+   9006     499 0,000848 pikkuveli (substantiivi)
+   9007     499 0,000848 puvustus (substantiivi)
+   9008     499 0,000848 talousvaikeus (substantiivi)
+   9009     499 0,000848 viidesosa (substantiivi)
+   9010     499 0,000848 välinpitämättömyys (substantiivi)
+   9011     498 0,000846 herätellä (verbi)
+   9012     498 0,000846 intiimi (adjektiivi)
+   9013     498 0,000846 kansallisooppera (substantiivi)
+   9014     498 0,000846 nelostie (substantiivi)
+   9015     498 0,000846 työnjohtaja (substantiivi)
+   9016     498 0,000846 vaellus (substantiivi)
+   9017     498 0,000846 vyöryä (verbi)
+   9018     498 0,000846 yksityiselämä (substantiivi)
+   9019     497 0,000844 alueellisesti (adverbi)
+   9020     497 0,000844 ammattimies (substantiivi)
+   9021     497 0,000844 ansiotulo (substantiivi)
+   9022     497 0,000844 huumausainerikos (substantiivi)
+   9023     497 0,000844 hämeenlinnalainen (adjektiivi)
+   9024     497 0,000844 integraatio (substantiivi)
+   9025     497 0,000844 kokonaisratkaisu (substantiivi)
+   9026     497 0,000844 käännyttää (verbi)
+   9027     497 0,000844 ruokapöytä (substantiivi)
+   9028     497 0,000844 siivooja (substantiivi)
+   9029     497 0,000844 tomas (erisnimi)
+   9030     497 0,000844 westerlund (erisnimi)
+   9031     496 0,000843 e (lyhenne)
+   9032     496 0,000843 hailuoto (erisnimi)
+   9033     496 0,000843 kauppila (erisnimi)
+   9034     496 0,000843 klo (lyhenne)
+   9035     496 0,000843 kurdijohtaja (substantiivi)
+   9036     496 0,000843 kärkipää (substantiivi)
+   9037     496 0,000843 omatunto (substantiivi)
+   9038     496 0,000843 paatelainen (erisnimi)
+   9039     496 0,000843 pulla (substantiivi)
+   9040     496 0,000843 punkalaidun (erisnimi)
+   9041     496 0,000843 suklaa (substantiivi)
+   9042     496 0,000843 tilalla (prepositio)
+   9043     496 0,000843 urheilukenttä (substantiivi)
+   9044     496 0,000843 vireä (adjektiivi)
+   9045     496 0,000843 yleishyödyllinen (adjektiivi)
+   9046     495 0,000841 agenda (substantiivi)
+   9047     495 0,000841 anderson (erisnimi)
+   9048     495 0,000841 hallituskausi (substantiivi)
+   9049     495 0,000841 hård (erisnimi)
+   9050     495 0,000841 ilmailulaitos (erisnimi)
+   9051     495 0,000841 kiekkoilu (substantiivi)
+   9052     495 0,000841 kisko (substantiivi)
+   9053     495 0,000841 lepistö (erisnimi)
+   9054     495 0,000841 liukkonen (erisnimi)
+   9055     495 0,000841 mikä_kaikki (pronomini)
+   9056     495 0,000841 pääkirjoitus (substantiivi)
+   9057     495 0,000841 sahata (verbi)
+   9058     495 0,000841 uhmata (verbi)
+   9059     495 0,000841 vahtimestari (substantiivi)
+   9060     495 0,000841 varustautua (verbi)
+   9061     495 0,000841 veroratkaisu (substantiivi)
+   9062     494 0,000839 dan (erisnimi)
+   9063     494 0,000839 hallinnoida (verbi)
+   9064     494 0,000839 hpy (lyhenne)
+   9065     494 0,000839 käyttötarkoitus (substantiivi)
+   9066     494 0,000839 lapsenlapsi (substantiivi)
+   9067     494 0,000839 liittokokous (substantiivi)
+   9068     494 0,000839 naaras (substantiivi)
+   9069     494 0,000839 pronssimitali (substantiivi)
+   9070     494 0,000839 siihen_mennessä (adverbi)
+   9071     494 0,000839 soppa (substantiivi)
+   9072     494 0,000839 sulautua (verbi)
+   9073     494 0,000839 terapia (substantiivi)
+   9074     494 0,000839 ulkoasu (substantiivi)
+   9075     494 0,000839 väistö (erisnimi)
+   9076     493 0,000838 hankaloittaa (verbi)
+   9077     493 0,000838 kalja (substantiivi)
+   9078     493 0,000838 levittäminen (substantiivi)
+   9079     493 0,000838 länsiosa (substantiivi)
+   9080     493 0,000838 maavoima (substantiivi)
+   9081     493 0,000838 neuvola (substantiivi)
+   9082     493 0,000838 normaalimatka (substantiivi)
+   9083     493 0,000838 pittsburgh (erisnimi)
+   9084     493 0,000838 strauss (erisnimi)
+   9085     493 0,000838 säikähtää (verbi)
+   9086     493 0,000838 terveyslautakunta (substantiivi)
+   9087     492 0,000836 ajallaan (adverbi)
+   9088     492 0,000836 barentsin (erisnimi)
+   9089     492 0,000836 dagestanin (erisnimi)
+   9090     492 0,000836 häämöttää (verbi)
+   9091     492 0,000836 ihmisyys (substantiivi)
+   9092     492 0,000836 juridinen (adjektiivi)
+   9093     492 0,000836 juutalainen (adjektiivi)
+   9094     492 0,000836 kofi (erisnimi)
+   9095     492 0,000836 libero (substantiivi)
+   9096     492 0,000836 margariini (substantiivi)
+   9097     492 0,000836 muodollisesti (adverbi)
+   9098     492 0,000836 per (erisnimi)
+   9099     492 0,000836 soveltaminen (substantiivi)
+   9100     492 0,000836 tuttavuus (substantiivi)
+   9101     491 0,000834 aikalisä (substantiivi)
+   9102     491 0,000834 alastaro (erisnimi)
+   9103     491 0,000834 alkupuolisko (substantiivi)
+   9104     491 0,000834 aluepoliittinen (adjektiivi)
+   9105     491 0,000834 fm (lyhenne)
+   9106     491 0,000834 harmaa (substantiivi)
+   9107     491 0,000834 järvelä (erisnimi)
+   9108     491 0,000834 kaukolämpö (substantiivi)
+   9109     491 0,000834 kuula (erisnimi)
+   9110     491 0,000834 metsätalousministeri (substantiivi)
+   9111     491 0,000834 opintotuki (substantiivi)
+   9112     491 0,000834 perheyritys (substantiivi)
+   9113     491 0,000834 roy (erisnimi)
+   9114     491 0,000834 tällä_erää (adverbi)
+   9115     491 0,000834 varastoida (verbi)
+   9116     491 0,000834 voimasuhde (substantiivi)
+   9117     491 0,000834 wagner (erisnimi)
+   9118     491 0,000834 yksinhuoltaja (substantiivi)
+   9119     490 0,000832 huolellinen (adjektiivi)
+   9120     490 0,000832 interfax (erisnimi)
+   9121     490 0,000832 kolari (erisnimi)
+   9122     490 0,000832 riistää (verbi)
+   9123     490 0,000832 syrjäseutu (substantiivi)
+   9124     490 0,000832 taikka (konjunktio)
+   9125     490 0,000832 tuskailla (verbi)
+   9126     490 0,000832 vesialue (substantiivi)
+   9127     490 0,000832 värvätä (verbi)
+   9128     490 0,000832 yleistyminen (substantiivi)
+   9129     489 0,000831 ankara (erisnimi)
+   9130     489 0,000831 asiallisesti (adverbi)
+   9131     489 0,000831 hanski (erisnimi)
+   9132     489 0,000831 helpottaminen (substantiivi)
+   9133     489 0,000831 kuuntelija (substantiivi)
+   9134     489 0,000831 rangersin (erisnimi)
+   9135     489 0,000831 romahtaminen (substantiivi)
+   9136     489 0,000831 tasapuolinen (adjektiivi)
+   9137     489 0,000831 uskomattoman (adverbi)
+   9138     489 0,000831 varovaisuus (substantiivi)
+   9139     488 0,000829 edullisesti (adverbi)
+   9140     488 0,000829 edustusto (substantiivi)
+   9141     488 0,000829 eläkepäivä (substantiivi)
+   9142     488 0,000829 koulukiusaaminen (substantiivi)
+   9143     488 0,000829 käytännöllinen (adjektiivi)
+   9144     488 0,000829 liika (adjektiivi)
+   9145     488 0,000829 liiketila (substantiivi)
+   9146     488 0,000829 loppukiri (substantiivi)
+   9147     488 0,000829 lähempänä (adverbi)
+   9148     488 0,000829 länsipuoli (substantiivi)
+   9149     488 0,000829 sisäistää (verbi)
+   9150     488 0,000829 särkyä (verbi)
+   9151     488 0,000829 vaalityö (substantiivi)
+   9152     488 0,000829 vauras (adjektiivi)
+   9153     487 0,000827 aids (lyhenne)
+   9154     487 0,000827 halki (prepositio)
+   9155     487 0,000827 hanska (substantiivi)
+   9156     487 0,000827 jaosto (substantiivi)
+   9157     487 0,000827 keke (erisnimi)
+   9158     487 0,000827 kutakuinkin (adverbi)
+   9159     487 0,000827 loppusarja (substantiivi)
+   9160     487 0,000827 olemassaoleva (adjektiivi)
+   9161     487 0,000827 pesäpalloilu (substantiivi)
+   9162     487 0,000827 real (erisnimi)
+   9163     487 0,000827 reviiri (substantiivi)
+   9164     486 0,000826 autoilu (substantiivi)
+   9165     486 0,000826 euromaa (substantiivi)
+   9166     486 0,000826 hirmumyrsky (substantiivi)
+   9167     486 0,000826 kaikkea_muuta_kuin (adverbi)
+   9168     486 0,000826 kansalainen (adjektiivi)
+   9169     486 0,000826 karsintaottelu (substantiivi)
+   9170     486 0,000826 kymmenesosa (substantiivi)
+   9171     486 0,000826 liigaottelu (substantiivi)
+   9172     486 0,000826 lomailla (verbi)
+   9173     486 0,000826 minimi (substantiivi)
+   9174     486 0,000826 myllys (erisnimi)
+   9175     486 0,000826 nilsson (erisnimi)
+   9176     486 0,000826 ohitse (prepositio)
+   9177     486 0,000826 palvelutaso (substantiivi)
+   9178     486 0,000826 prostituutio (substantiivi)
+   9179     486 0,000826 rankkasade (substantiivi)
+   9180     486 0,000826 ritari (substantiivi)
+   9181     486 0,000826 suomenruotsalainen (substantiivi)
+   9182     486 0,000826 tallikaveri (substantiivi)
+   9183     486 0,000826 vastapäätä (adverbi)
+   9184     485 0,000824 ankka (erisnimi)
+   9185     485 0,000824 haka (substantiivi)
+   9186     485 0,000824 kerta_kaikkiaan (adverbi)
+   9187     485 0,000824 koska (adverbi)
+   9188     485 0,000824 lajiliitto (substantiivi)
+   9189     485 0,000824 mäntsälä (erisnimi)
+   9190     485 0,000824 otaksua (verbi)
+   9191     485 0,000824 toimivalta (substantiivi)
+   9192     485 0,000824 tuhka (substantiivi)
+   9193     485 0,000824 vastoinkäyminen (substantiivi)
+   9194     485 0,000824 vesihuolto (substantiivi)
+   9195     485 0,000824 välimatka (substantiivi)
+   9196     485 0,000824 yhteenveto (substantiivi)
+   9197     484 0,000822 blue (erisnimi)
+   9198     484 0,000822 hallintokunta (substantiivi)
+   9199     484 0,000822 harjoittelija (substantiivi)
+   9200     484 0,000822 kilpailuviranomainen (substantiivi)
+   9201     484 0,000822 kolhu (substantiivi)
+   9202     484 0,000822 koulutoimi (substantiivi)
+   9203     484 0,000822 käsityöläinen (substantiivi)
+   9204     484 0,000822 selitellä (verbi)
+   9205     484 0,000822 taktinen (adjektiivi)
+   9206     484 0,000822 taneli (erisnimi)
+   9207     484 0,000822 tri (lyhenne)
+   9208     483 0,000821 black (erisnimi)
+   9209     483 0,000821 claude (erisnimi)
+   9210     483 0,000821 dagestan (erisnimi)
+   9211     483 0,000821 jersey (erisnimi)
+   9212     483 0,000821 juhlija (substantiivi)
+   9213     483 0,000821 naru (substantiivi)
+   9214     483 0,000821 panimo (substantiivi)
+   9215     483 0,000821 pärssinen (erisnimi)
+   9216     483 0,000821 valjastaa (verbi)
+   9217     483 0,000821 vastaisesti (adverbi)
+   9218     483 0,000821 värinen (adjektiivi)
+   9219     482 0,000819 ideologinen (adjektiivi)
+   9220     482 0,000819 juhlava (adjektiivi)
+   9221     482 0,000819 karlsson (erisnimi)
+   9222     482 0,000819 lahtelainen (substantiivi)
+   9223     482 0,000819 lajitella (verbi)
+   9224     482 0,000819 leveys (substantiivi)
+   9225     482 0,000819 psykiatri (substantiivi)
+   9226     482 0,000819 rytkönen (erisnimi)
+   9227     482 0,000819 saarelainen (erisnimi)
+   9228     482 0,000819 torvinen (erisnimi)
+   9229     482 0,000819 tuulla (verbi)
+   9230     482 0,000819 työväenyhdistys (substantiivi)
+   9231     482 0,000819 väkijoukko (substantiivi)
+   9232     481 0,000817 antaja (substantiivi)
+   9233     481 0,000817 asetella (verbi)
+   9234     481 0,000817 ennaltaehkäistä (verbi)
+   9235     481 0,000817 kansaneläkelaitos (erisnimi)
+   9236     481 0,000817 kauhistella (verbi)
+   9237     481 0,000817 kaunotar (substantiivi)
+   9238     481 0,000817 latvialainen (adjektiivi)
+   9239     481 0,000817 liikennemerkki (substantiivi)
+   9240     481 0,000817 mietiskellä (verbi)
+   9241     481 0,000817 nostalgia (substantiivi)
+   9242     481 0,000817 näkyviin (adverbi)
+   9243     481 0,000817 orimattila (erisnimi)
+   9244     481 0,000817 ruokakauppa (substantiivi)
+   9245     481 0,000817 samppanja (substantiivi)
+   9246     481 0,000817 sjöberg (erisnimi)
+   9247     481 0,000817 stewart (erisnimi)
+   9248     481 0,000817 tukahduttaa (verbi)
+   9249     481 0,000817 tulehdus (substantiivi)
+   9250     481 0,000817 uumoilla (verbi)
+   9251     481 0,000817 vakuutella (verbi)
+   9252     481 0,000817 yleisurheiluliitto (substantiivi)
+   9253     480 0,000815 aavistaa (verbi)
+   9254     480 0,000815 jo_jonkin_aikaa (adverbi)
+   9255     480 0,000815 juuso (erisnimi)
+   9256     480 0,000815 liikelaitos (substantiivi)
+   9257     480 0,000815 meikäläinen (substantiivi)
+   9258     480 0,000815 määrätietoisesti (adverbi)
+   9259     480 0,000815 nuorisoseura (substantiivi)
+   9260     480 0,000815 pro (erisnimi)
+   9261     480 0,000815 pulli (erisnimi)
+   9262     480 0,000815 suojatie (substantiivi)
+   9263     480 0,000815 uurna (substantiivi)
+   9264     480 0,000815 vapautus (substantiivi)
+   9265     479 0,000814 abstrakti (adjektiivi)
+   9266     479 0,000814 erkko (erisnimi)
+   9267     479 0,000814 jälkikasvu (substantiivi)
+   9268     479 0,000814 jäsenmaksu (substantiivi)
+   9269     479 0,000814 karjaa (erisnimi)
+   9270     479 0,000814 keskeltä (prepositio)
+   9271     479 0,000814 lähde (erisnimi)
+   9272     479 0,000814 mart (erisnimi)
+   9273     479 0,000814 mukaantulo (substantiivi)
+   9274     479 0,000814 näennäinen (adjektiivi)
+   9275     479 0,000814 pienoismalli (substantiivi)
+   9276     479 0,000814 suuttua (verbi)
+   9277     479 0,000814 utah (erisnimi)
+   9278     479 0,000814 väärässä (adverbi)
+   9279     478 0,000812 erinomaisen (adverbi)
+   9280     478 0,000812 haikea (adjektiivi)
+   9281     478 0,000812 kaksipeli (substantiivi)
+   9282     478 0,000812 konsepti (substantiivi)
+   9283     478 0,000812 langaton (adjektiivi)
+   9284     478 0,000812 opettaminen (substantiivi)
+   9285     478 0,000812 päältä (prepositio)
+   9286     478 0,000812 ruis (substantiivi)
+   9287     478 0,000812 samoihin_aikoihin (adverbi)
+   9288     478 0,000812 sebastian (erisnimi)
+   9289     478 0,000812 valhe (substantiivi)
+   9290     477 0,000810 arvailu (substantiivi)
+   9291     477 0,000810 asiantunteva (adjektiivi)
+   9292     477 0,000810 dagens (erisnimi)
+   9293     477 0,000810 hall (erisnimi)
+   9294     477 0,000810 kiinteistö (erisnimi)
+   9295     477 0,000810 livahtaa (verbi)
+   9296     477 0,000810 osaamiskeskus (substantiivi)
+   9297     477 0,000810 puurunen (erisnimi)
+   9298     477 0,000810 rako (substantiivi)
+   9299     477 0,000810 ranne (substantiivi)
+   9300     477 0,000810 suvaitsevaisuus (substantiivi)
+   9301     477 0,000810 tuottajahinta (substantiivi)
+   9302     477 0,000810 utsjoki (erisnimi)
+   9303     477 0,000810 uusnatsi (substantiivi)
+   9304     477 0,000810 viren (erisnimi)
+   9305     477 0,000810 vitsailla (verbi)
+   9306     477 0,000810 yksinkertaistaa (verbi)
+   9307     477 0,000810 ylähuone (substantiivi)
+   9308     476 0,000809 autourheilu (substantiivi)
+   9309     476 0,000809 ekaluokkalainen (adjektiivi)
+   9310     476 0,000809 esiintymä (substantiivi)
+   9311     476 0,000809 haavoittaa (verbi)
+   9312     476 0,000809 kaato (substantiivi)
+   9313     476 0,000809 kaksinkertaistaa (verbi)
+   9314     476 0,000809 kauppatori (substantiivi)
+   9315     476 0,000809 kodinkone (substantiivi)
+   9316     476 0,000809 matkustajamäärä (substantiivi)
+   9317     476 0,000809 näkeminen (substantiivi)
+   9318     476 0,000809 revetä (verbi)
+   9319     476 0,000809 taulukko (substantiivi)
+   9320     476 0,000809 teisko (erisnimi)
+   9321     476 0,000809 televisiokanava (substantiivi)
+   9322     476 0,000809 työmäärä (substantiivi)
+   9323     476 0,000809 vaania (verbi)
+   9324     475 0,000807 ei_ihme (verbi)
+   9325     475 0,000807 humalainen (adjektiivi)
+   9326     475 0,000807 huuma (substantiivi)
+   9327     475 0,000807 hämmentyä (verbi)
+   9328     475 0,000807 innovaatio (substantiivi)
+   9329     475 0,000807 joht (lyhenne)
+   9330     475 0,000807 kiristäminen (substantiivi)
+   9331     475 0,000807 madetoja (erisnimi)
+   9332     475 0,000807 myllyniemi (erisnimi)
+   9333     475 0,000807 pelastustyö (substantiivi)
+   9334     475 0,000807 raueta (verbi)
+   9335     475 0,000807 rauhoitella (verbi)
+   9336     475 0,000807 salmi (substantiivi)
+   9337     475 0,000807 sul (lyhenne)
+   9338     475 0,000807 veronkevennys (substantiivi)
+   9339     475 0,000807 välikysymys (substantiivi)
+   9340     474 0,000805 ansiokas (adjektiivi)
+   9341     474 0,000805 avausottelu (substantiivi)
+   9342     474 0,000805 hoitokoti (substantiivi)
+   9343     474 0,000805 johdonmukainen (adjektiivi)
+   9344     474 0,000805 kilpi (substantiivi)
+   9345     474 0,000805 kohdalla (adverbi)
+   9346     474 0,000805 kolesteroli (substantiivi)
+   9347     474 0,000805 käyttöaste (substantiivi)
+   9348     474 0,000805 maaginen (adjektiivi)
+   9349     474 0,000805 olento (substantiivi)
+   9350     474 0,000805 peru (substantiivi)
+   9351     474 0,000805 presidenttiehdokkuus (substantiivi)
+   9352     474 0,000805 päättäminen (substantiivi)
+   9353     474 0,000805 sodanjälkeinen (adjektiivi)
+   9354     474 0,000805 sotainvalidi (substantiivi)
+   9355     474 0,000805 svenska (erisnimi)
+   9356     474 0,000805 tuolla (adverbi)
+   9357     474 0,000805 tuomiokirkko (erisnimi)
+   9358     473 0,000804 hasis (substantiivi)
+   9359     473 0,000804 heinävesi (erisnimi)
+   9360     473 0,000804 jouluaatto (substantiivi)
+   9361     473 0,000804 ke (lyhenne)
+   9362     473 0,000804 keskustapuolue (substantiivi)
+   9363     473 0,000804 kirkastua (verbi)
+   9364     473 0,000804 kiusa (substantiivi)
+   9365     473 0,000804 luistaa (verbi)
+   9366     473 0,000804 nk (adverbi)
+   9367     473 0,000804 omakohtainen (adjektiivi)
+   9368     473 0,000804 rafael (erisnimi)
+   9369     473 0,000804 tallella (adverbi)
+   9370     473 0,000804 tarjoilija (substantiivi)
+   9371     473 0,000804 tiedosto (substantiivi)
+   9372     473 0,000804 tuhti (adjektiivi)
+   9373     473 0,000804 tupata (verbi)
+   9374     473 0,000804 tykistö (substantiivi)
+   9375     473 0,000804 ukrainalainen (adjektiivi)
+   9376     472 0,000802 anomus (substantiivi)
+   9377     472 0,000802 emu (substantiivi)
+   9378     472 0,000802 haarukka (substantiivi)
+   9379     472 0,000802 ikoni (substantiivi)
+   9380     472 0,000802 jaro (erisnimi)
+   9381     472 0,000802 kera (erisnimi)
+   9382     472 0,000802 kilpiäinen (erisnimi)
+   9383     472 0,000802 laimea (adjektiivi)
+   9384     472 0,000802 laukka (substantiivi)
+   9385     472 0,000802 mullistus (substantiivi)
+   9386     472 0,000802 oikeustiede (substantiivi)
+   9387     472 0,000802 pankkikortti (substantiivi)
+   9388     472 0,000802 paraikaa (adverbi)
+   9389     472 0,000802 pietarilainen (adjektiivi)
+   9390     472 0,000802 tajunta (substantiivi)
+   9391     472 0,000802 työvaliokunta (substantiivi)
+   9392     472 0,000802 uhkailu (substantiivi)
+   9393     472 0,000802 vilkaista (verbi)
+   9394     471 0,000800 halukas (substantiivi)
+   9395     471 0,000800 heti_perään (adverbi)
+   9396     471 0,000800 jäsenkunta (substantiivi)
+   9397     471 0,000800 kullervo (erisnimi)
+   9398     471 0,000800 lihava (adjektiivi)
+   9399     471 0,000800 linja-autoasema (substantiivi)
+   9400     471 0,000800 lisärakentaminen (substantiivi)
+   9401     471 0,000800 lisätila (substantiivi)
+   9402     471 0,000800 mallikkaasti (adverbi)
+   9403     471 0,000800 näköala (substantiivi)
+   9404     471 0,000800 oitis (adverbi)
+   9405     471 0,000800 pulittaa (verbi)
+   9406     471 0,000800 suuntaviiva (substantiivi)
+   9407     471 0,000800 touhuta (verbi)
+   9408     471 0,000800 tyrnävä (erisnimi)
+   9409     471 0,000800 täten (adverbi)
+   9410     471 0,000800 vitonen (substantiivi)
+   9411     470 0,000798 aula (erisnimi)
+   9412     470 0,000798 christer (erisnimi)
+   9413     470 0,000798 elli (erisnimi)
+   9414     470 0,000798 henkiä (verbi)
+   9415     470 0,000798 hipoa (verbi)
+   9416     470 0,000798 katselija (substantiivi)
+   9417     470 0,000798 kiristys (substantiivi)
+   9418     470 0,000798 kirjelmä (substantiivi)
+   9419     470 0,000798 kolmipäiväinen (adjektiivi)
+   9420     470 0,000798 korvausvaatimus (substantiivi)
+   9421     470 0,000798 laskuttaa (verbi)
+   9422     470 0,000798 n (lukusana)
+   9423     470 0,000798 palloliitto (erisnimi)
+   9424     470 0,000798 rajaton (adjektiivi)
+   9425     470 0,000798 ympäristöjärjestö (substantiivi)
+   9426     470 0,000798 äänestäminen (substantiivi)
+   9427     469 0,000797 auditorio (substantiivi)
+   9428     469 0,000797 islam (substantiivi)
+   9429     469 0,000797 itälä (erisnimi)
+   9430     469 0,000797 kuoppa (substantiivi)
+   9431     469 0,000797 lentopalloilu (substantiivi)
+   9432     469 0,000797 liittohallitus (substantiivi)
+   9433     469 0,000797 riina (erisnimi)
+   9434     469 0,000797 turtiainen (erisnimi)
+   9435     468 0,000795 ihmisoikeusjärjestö (substantiivi)
+   9436     468 0,000795 kahdeksanneksi (adverbi)
+   9437     468 0,000795 pääomistaja (substantiivi)
+   9438     468 0,000795 seat (erisnimi)
+   9439     468 0,000795 sävelmä (substantiivi)
+   9440     468 0,000795 tuotos (substantiivi)
+   9441     468 0,000795 vilpitön (adjektiivi)
+   9442     467 0,000793 fazer (erisnimi)
+   9443     467 0,000793 hoitotyö (substantiivi)
+   9444     467 0,000793 huimasti (adverbi)
+   9445     467 0,000793 irakilainen (adjektiivi)
+   9446     467 0,000793 jr (lyhenne)
+   9447     467 0,000793 jättimäinen (adjektiivi)
+   9448     467 0,000793 kutoa (verbi)
+   9449     467 0,000793 kuva (erisnimi)
+   9450     467 0,000793 lohkaista (verbi)
+   9451     467 0,000793 möttölä (erisnimi)
+   9452     467 0,000793 olga (erisnimi)
+   9453     467 0,000793 päätöspäivä (substantiivi)
+   9454     467 0,000793 romu (substantiivi)
+   9455     467 0,000793 uhota (verbi)
+   9456     467 0,000793 vakavaraisuus (substantiivi)
+   9457     467 0,000793 virtaus (substantiivi)
+   9458     466 0,000792 alkajaiset (substantiivi)
+   9459     466 0,000792 eläintarha (substantiivi)
+   9460     466 0,000792 haihtua (verbi)
+   9461     466 0,000792 kansallinen (erisnimi)
+   9462     466 0,000792 masentua (verbi)
+   9463     466 0,000792 meneillään_oleva (adjektiivi)
+   9464     466 0,000792 mynämäki (erisnimi)
+   9465     466 0,000792 nauttiminen (substantiivi)
+   9466     466 0,000792 panssarivaunu (substantiivi)
+   9467     466 0,000792 pappa (substantiivi)
+   9468     466 0,000792 perussopimus (substantiivi)
+   9469     466 0,000792 rakennuspaikka (substantiivi)
+   9470     466 0,000792 ripaus (substantiivi)
+   9471     466 0,000792 roimasti (adverbi)
+   9472     466 0,000792 runeberg (erisnimi)
+   9473     466 0,000792 sosiaaliala (substantiivi)
+   9474     466 0,000792 suojelija (substantiivi)
+   9475     466 0,000792 tansania (erisnimi)
+   9476     466 0,000792 tepsiä (verbi)
+   9477     466 0,000792 tunnistaminen (substantiivi)
+   9478     466 0,000792 työväenliike (substantiivi)
+   9479     466 0,000792 vastaehdokas (substantiivi)
+   9480     465 0,000790 annukka (erisnimi)
+   9481     465 0,000790 biojäte (substantiivi)
+   9482     465 0,000790 diesel (substantiivi)
+   9483     465 0,000790 greene (erisnimi)
+   9484     465 0,000790 itäosa (substantiivi)
+   9485     465 0,000790 kairo (erisnimi)
+   9486     465 0,000790 keskustora (erisnimi)
+   9487     465 0,000790 kovuus (substantiivi)
+   9488     465 0,000790 kuppi (substantiivi)
+   9489     465 0,000790 kurkistaa (verbi)
+   9490     465 0,000790 rakennusliike (substantiivi)
+   9491     465 0,000790 ruanda (erisnimi)
+   9492     465 0,000790 sok (lyhenne)
+   9493     465 0,000790 tanner (erisnimi)
+   9494     465 0,000790 treeni (substantiivi)
+   9495     465 0,000790 vuokraus (substantiivi)
+   9496     464 0,000788 ammattiosasto (substantiivi)
+   9497     464 0,000788 huhtala (erisnimi)
+   9498     464 0,000788 häirintä (substantiivi)
+   9499     464 0,000788 järkytys (substantiivi)
+   9500     464 0,000788 kiiltää (verbi)
+   9501     464 0,000788 kymmenvuotias (adjektiivi)
+   9502     464 0,000788 lajittelu (substantiivi)
+   9503     464 0,000788 menestyjä (substantiivi)
+   9504     464 0,000788 murto-osa (substantiivi)
+   9505     464 0,000788 pienyrittäjä (substantiivi)
+   9506     464 0,000788 purku (substantiivi)
+   9507     464 0,000788 talvikausi (substantiivi)
+   9508     463 0,000787 argentiinalainen (adjektiivi)
+   9509     463 0,000787 boikotti (substantiivi)
+   9510     463 0,000787 ilahtua (verbi)
+   9511     463 0,000787 jäänne (substantiivi)
+   9512     463 0,000787 kunniamerkki (substantiivi)
+   9513     463 0,000787 kymi (erisnimi)
+   9514     463 0,000787 kämppä (substantiivi)
+   9515     463 0,000787 libya (erisnimi)
+   9516     463 0,000787 loppiainen (substantiivi)
+   9517     463 0,000787 luennoida (verbi)
+   9518     463 0,000787 luonnontiede (substantiivi)
+   9519     463 0,000787 paluumuuttaja (substantiivi)
+   9520     463 0,000787 pääsylippu (substantiivi)
+   9521     463 0,000787 rakennerahasto (substantiivi)
+   9522     463 0,000787 rautamaa (erisnimi)
+   9523     463 0,000787 remonttiryhmä (substantiivi)
+   9524     463 0,000787 toimielin (substantiivi)
+   9525     463 0,000787 vanhemmuus (substantiivi)
+   9526     463 0,000787 viisikko (substantiivi)
+   9527     462 0,000785 dekkari (substantiivi)
+   9528     462 0,000785 huumeongelma (substantiivi)
+   9529     462 0,000785 hyvää_vauhtia (adverbi)
+   9530     462 0,000785 ilmentää (verbi)
+   9531     462 0,000785 kallela (erisnimi)
+   9532     462 0,000785 kirkkaasti (adverbi)
+   9533     462 0,000785 kotipalvelu (substantiivi)
+   9534     462 0,000785 laaja-alainen (adjektiivi)
+   9535     462 0,000785 lukita (verbi)
+   9536     462 0,000785 mielipidetiedustelu (substantiivi)
+   9537     462 0,000785 munkki (substantiivi)
+   9538     462 0,000785 osallisuus (substantiivi)
+   9539     462 0,000785 paraati (substantiivi)
+   9540     462 0,000785 presidentti (erisnimi)
+   9541     462 0,000785 sympatia (substantiivi)
+   9542     462 0,000785 tiilikainen (erisnimi)
+   9543     462 0,000785 viihtyvyys (substantiivi)
+   9544     461 0,000783 didier (erisnimi)
+   9545     461 0,000783 ensimmäisten_joukossa (adverbi)
+   9546     461 0,000783 kilponen (erisnimi)
+   9547     461 0,000783 kohtuus (substantiivi)
+   9548     461 0,000783 oppilasmäärä (substantiivi)
+   9549     461 0,000783 pari_kolme (lukusana)
+   9550     461 0,000783 peruskoulutus (substantiivi)
+   9551     461 0,000783 pt (lyhenne)
+   9552     461 0,000783 rosvo (substantiivi)
+   9553     461 0,000783 seppä (substantiivi)
+   9554     461 0,000783 toskala (erisnimi)
+   9555     461 0,000783 virike (substantiivi)
+   9556     461 0,000783 välttämättömyys (substantiivi)
+   9557     460 0,000781 arvovaltainen (adjektiivi)
+   9558     460 0,000781 dipl (lyhenne)
+   9559     460 0,000781 joukkohauta (substantiivi)
+   9560     460 0,000781 kiinteistöyhtiö (substantiivi)
+   9561     460 0,000781 kiskoa (verbi)
+   9562     460 0,000781 konsertto (substantiivi)
+   9563     460 0,000781 kyläkauppa (substantiivi)
+   9564     460 0,000781 kyynel (substantiivi)
+   9565     460 0,000781 kärkisija (substantiivi)
+   9566     460 0,000781 köysi (substantiivi)
+   9567     460 0,000781 makuuhuone (substantiivi)
+   9568     460 0,000781 palkkaratkaisu (substantiivi)
+   9569     460 0,000781 perttu (erisnimi)
+   9570     460 0,000781 perälä (erisnimi)
+   9571     460 0,000781 pilleri (substantiivi)
+   9572     460 0,000781 riski (erisnimi)
+   9573     460 0,000781 rudolf (erisnimi)
+   9574     460 0,000781 säestys (substantiivi)
+   9575     460 0,000781 tiedotus (erisnimi)
+   9576     460 0,000781 tietoliikenne (substantiivi)
+   9577     460 0,000781 valssi (substantiivi)
+   9578     459 0,000780 adolf (erisnimi)
+   9579     459 0,000780 filosofinen (adjektiivi)
+   9580     459 0,000780 kalastuskunta (substantiivi)
+   9581     459 0,000780 kalatalous (substantiivi)
+   9582     459 0,000780 kaupunkikuva (substantiivi)
+   9583     459 0,000780 laata (verbi)
+   9584     459 0,000780 luonnonmukainen (adjektiivi)
+   9585     459 0,000780 metro (substantiivi)
+   9586     459 0,000780 minä (substantiivi)
+   9587     459 0,000780 monimuotoinen (adjektiivi)
+   9588     459 0,000780 nuotio (substantiivi)
+   9589     459 0,000780 panna (substantiivi)
+   9590     459 0,000780 ps (lyhenne)
+   9591     459 0,000780 pääomavero (substantiivi)
+   9592     459 0,000780 radioaktiivinen (adjektiivi)
+   9593     459 0,000780 ratifioida (verbi)
+   9594     459 0,000780 räikkönen (erisnimi)
+   9595     459 0,000780 sininen (erisnimi)
+   9596     459 0,000780 tyynimeri (erisnimi)
+   9597     458 0,000778 hahmottua (verbi)
+   9598     458 0,000778 hintainen (adjektiivi)
+   9599     458 0,000778 hoiva (substantiivi)
+   9600     458 0,000778 häätää (verbi)
+   9601     458 0,000778 kaunis (erisnimi)
+   9602     458 0,000778 kc (erisnimi)
+   9603     458 0,000778 laulukilpailu (substantiivi)
+   9604     458 0,000778 liehua (verbi)
+   9605     458 0,000778 nenonen (erisnimi)
+   9606     458 0,000778 rassata (verbi)
+   9607     458 0,000778 roger (erisnimi)
+   9608     458 0,000778 samaranchin (erisnimi)
+   9609     458 0,000778 talouspäällikkö (substantiivi)
+   9610     458 0,000778 tiibet (erisnimi)
+   9611     458 0,000778 voittoaika (substantiivi)
+   9612     457 0,000776 elsa (erisnimi)
+   9613     457 0,000776 etelä-savo (erisnimi)
+   9614     457 0,000776 henkirikos (substantiivi)
+   9615     457 0,000776 kontiainen (erisnimi)
+   9616     457 0,000776 lehtimies (substantiivi)
+   9617     457 0,000776 rajanylityspaikka (substantiivi)
+   9618     457 0,000776 sariola (erisnimi)
+   9619     457 0,000776 testaus (substantiivi)
+   9620     457 0,000776 tuotekehittely (substantiivi)
+   9621     457 0,000776 työllistyminen (substantiivi)
+   9622     457 0,000776 veropetos (substantiivi)
+   9623     456 0,000775 baritoni (substantiivi)
+   9624     456 0,000775 dramatiikka (substantiivi)
+   9625     456 0,000775 edustusjoukkue (substantiivi)
+   9626     456 0,000775 gardemeister (erisnimi)
+   9627     456 0,000775 kokenut (adjektiivi)
+   9628     456 0,000775 kokoontuminen (substantiivi)
+   9629     456 0,000775 kommunistipuolue (substantiivi)
+   9630     456 0,000775 kroaatti (substantiivi)
+   9631     456 0,000775 kuitunen (erisnimi)
+   9632     456 0,000775 kunnioittaminen (substantiivi)
+   9633     456 0,000775 kysymysmerkki (substantiivi)
+   9634     456 0,000775 loimu (substantiivi)
+   9635     456 0,000775 luola (substantiivi)
+   9636     456 0,000775 luottotappio (substantiivi)
+   9637     456 0,000775 peruskirja (substantiivi)
+   9638     456 0,000775 pimetä (verbi)
+   9639     456 0,000775 puolesta (adverbi)
+   9640     456 0,000775 suunnistaja (substantiivi)
+   9641     456 0,000775 tuomisto (erisnimi)
+   9642     456 0,000775 työkaveri (substantiivi)
+   9643     455 0,000773 allekirjoittaja (substantiivi)
+   9644     455 0,000773 entisaika (substantiivi)
+   9645     455 0,000773 joululahja (substantiivi)
+   9646     455 0,000773 katkeruus (substantiivi)
+   9647     455 0,000773 kustos (substantiivi)
+   9648     455 0,000773 lapinlahti (erisnimi)
+   9649     455 0,000773 maailmanloppu (substantiivi)
+   9650     455 0,000773 miliisi (substantiivi)
+   9651     455 0,000773 mukanaolo (substantiivi)
+   9652     455 0,000773 olsson (erisnimi)
+   9653     455 0,000773 periytyä (verbi)
+   9654     455 0,000773 raiskata (verbi)
+   9655     455 0,000773 selkäranka (substantiivi)
+   9656     455 0,000773 tavaramerkki (substantiivi)
+   9657     455 0,000773 tältä_osin (adverbi)
+   9658     455 0,000773 vaaraton (adjektiivi)
+   9659     454 0,000771 ammattikunta (substantiivi)
+   9660     454 0,000771 huokua (verbi)
+   9661     454 0,000771 hyppiä (verbi)
+   9662     454 0,000771 konkurssipesä (substantiivi)
+   9663     454 0,000771 kultainen (erisnimi)
+   9664     454 0,000771 ohjautua (verbi)
+   9665     454 0,000771 pelicans (erisnimi)
+   9666     454 0,000771 puro (erisnimi)
+   9667     454 0,000771 samansuuntainen (adjektiivi)
+   9668     454 0,000771 taltioida (verbi)
+   9669     454 0,000771 tutkijaryhmä (substantiivi)
+   9670     454 0,000771 valtakausi (substantiivi)
+   9671     454 0,000771 yhteiskoulu (substantiivi)
+   9672     454 0,000771 ykköstila (substantiivi)
+   9673     453 0,000770 anthony (erisnimi)
+   9674     453 0,000770 deutsche (erisnimi)
+   9675     453 0,000770 enimmillään (adverbi)
+   9676     453 0,000770 karibia (erisnimi)
+   9677     453 0,000770 kerto (substantiivi)
+   9678     453 0,000770 kivinen (erisnimi)
+   9679     453 0,000770 kostautua (verbi)
+   9680     453 0,000770 käsillä (adverbi)
+   9681     453 0,000770 lastata (verbi)
+   9682     453 0,000770 murtovaara (erisnimi)
+   9683     453 0,000770 oppilainen (adjektiivi)
+   9684     453 0,000770 peikko (substantiivi)
+   9685     453 0,000770 perhe-elämä (substantiivi)
+   9686     453 0,000770 saamelainen (adjektiivi)
+   9687     453 0,000770 syksyinen (adjektiivi)
+   9688     453 0,000770 valitseminen (substantiivi)
+   9689     453 0,000770 varajäsen (substantiivi)
+   9690     453 0,000770 yksiselitteisesti (adverbi)
+   9691     452 0,000768 abortti (substantiivi)
+   9692     452 0,000768 ilmoittautuminen (substantiivi)
+   9693     452 0,000768 kirkko (erisnimi)
+   9694     452 0,000768 näppi (substantiivi)
+   9695     452 0,000768 näytteleminen (substantiivi)
+   9696     452 0,000768 orava (substantiivi)
+   9697     452 0,000768 paini (substantiivi)
+   9698     452 0,000768 perinteikäs (adjektiivi)
+   9699     452 0,000768 raivo (substantiivi)
+   9700     452 0,000768 syytön (adjektiivi)
+   9701     452 0,000768 tainio (erisnimi)
+   9702     452 0,000768 tilauskanta (substantiivi)
+   9703     452 0,000768 toimeenpano (substantiivi)
+   9704     452 0,000768 veropaketti (substantiivi)
+   9705     452 0,000768 viinijärvi (erisnimi)
+   9706     451 0,000766 ansioitua (verbi)
+   9707     451 0,000766 artikla (substantiivi)
+   9708     451 0,000766 asuntokauppa (substantiivi)
+   9709     451 0,000766 hikinen (adjektiivi)
+   9710     451 0,000766 hynynen (erisnimi)
+   9711     451 0,000766 hägglund (erisnimi)
+   9712     451 0,000766 jopa_niin (adverbi)
+   9713     451 0,000766 kansallisteatteri (erisnimi)
+   9714     451 0,000766 kulttuuritoimi (substantiivi)
+   9715     451 0,000766 lastentarhanopettaja (substantiivi)
+   9716     451 0,000766 lietsoa (verbi)
+   9717     451 0,000766 michel (erisnimi)
+   9718     451 0,000766 myyntihinta (substantiivi)
+   9719     451 0,000766 myötätunto (substantiivi)
+   9720     451 0,000766 passittaa (verbi)
+   9721     451 0,000766 pekkala (erisnimi)
+   9722     451 0,000766 puolustusliitto (substantiivi)
+   9723     451 0,000766 rakennusoikeus (substantiivi)
+   9724     450 0,000764 aika_lailla (adverbi)
+   9725     450 0,000764 auktoriteetti (substantiivi)
+   9726     450 0,000764 ervasti (erisnimi)
+   9727     450 0,000764 fiktio (substantiivi)
+   9728     450 0,000764 hirvensalo (erisnimi)
+   9729     450 0,000764 kaikkialle (adverbi)
+   9730     450 0,000764 kerstin (erisnimi)
+   9731     450 0,000764 kotityö (substantiivi)
+   9732     450 0,000764 kranaatti (substantiivi)
+   9733     450 0,000764 kvaerner (erisnimi)
+   9734     450 0,000764 lähteminen (substantiivi)
+   9735     450 0,000764 pellava (substantiivi)
+   9736     450 0,000764 rekisteröinti (substantiivi)
+   9737     450 0,000764 riista (substantiivi)
+   9738     450 0,000764 rinnakkain (adverbi)
+   9739     450 0,000764 tuskallinen (adjektiivi)
+   9740     450 0,000764 venähtää (verbi)
+   9741     450 0,000764 wayne (erisnimi)
+   9742     449 0,000763 elokuvaohjaaja (substantiivi)
+   9743     449 0,000763 kahmia (verbi)
+   9744     449 0,000763 kulkue (substantiivi)
+   9745     449 0,000763 kuroa (verbi)
+   9746     449 0,000763 kuuluisuus (substantiivi)
+   9747     449 0,000763 liukka (erisnimi)
+   9748     449 0,000763 megawatti (substantiivi)
+   9749     449 0,000763 paikalla (prepositio)
+   9750     449 0,000763 rehevä (adjektiivi)
+   9751     449 0,000763 sovellus (substantiivi)
+   9752     449 0,000763 uganda (erisnimi)
+   9753     449 0,000763 victor (erisnimi)
+   9754     448 0,000761 betoni (substantiivi)
+   9755     448 0,000761 biaudet (erisnimi)
+   9756     448 0,000761 disko (substantiivi)
+   9757     448 0,000761 kehittämiskeskus (substantiivi)
+   9758     448 0,000761 kooste (substantiivi)
+   9759     448 0,000761 liemi (substantiivi)
+   9760     448 0,000761 lähiseutu (substantiivi)
+   9761     448 0,000761 maantieteellinen (adjektiivi)
+   9762     448 0,000761 ms (lyhenne)
+   9763     448 0,000761 palm (erisnimi)
+   9764     448 0,000761 poliisipäällikkö (substantiivi)
+   9765     448 0,000761 prodin (erisnimi)
+   9766     448 0,000761 pureutua (verbi)
+   9767     448 0,000761 rapistua (verbi)
+   9768     448 0,000761 ruotia (verbi)
+   9769     448 0,000761 sisältä (adverbi)
+   9770     448 0,000761 taantuma (substantiivi)
+   9771     448 0,000761 tarkistaminen (substantiivi)
+   9772     448 0,000761 tuumailla (verbi)
+   9773     448 0,000761 varsinais (adjektiivi)
+   9774     448 0,000761 älytön (adjektiivi)
+   9775     447 0,000759 epäoikeudenmukainen (adjektiivi)
+   9776     447 0,000759 huolenaihe (substantiivi)
+   9777     447 0,000759 hätkähdyttää (verbi)
+   9778     447 0,000759 kenialainen (adjektiivi)
+   9779     447 0,000759 music (erisnimi)
+   9780     447 0,000759 psykiatria (substantiivi)
+   9781     447 0,000759 ratilainen (erisnimi)
+   9782     447 0,000759 soutaa (verbi)
+   9783     447 0,000759 status (substantiivi)
+   9784     447 0,000759 taka-ala (substantiivi)
+   9785     447 0,000759 takapiha (substantiivi)
+   9786     447 0,000759 tarjoaminen (substantiivi)
+   9787     447 0,000759 tieliikenne (substantiivi)
+   9788     447 0,000759 tiima (substantiivi)
+   9789     447 0,000759 valkoinen (substantiivi)
+   9790     446 0,000758 aerobic (substantiivi)
+   9791     446 0,000758 ari-pekka (erisnimi)
+   9792     446 0,000758 hartia (substantiivi)
+   9793     446 0,000758 koskenniska (erisnimi)
+   9794     446 0,000758 kouluttaminen (substantiivi)
+   9795     446 0,000758 levä (substantiivi)
+   9796     446 0,000758 lähennellä (verbi)
+   9797     446 0,000758 marju (erisnimi)
+   9798     446 0,000758 peura (erisnimi)
+   9799     446 0,000758 pistäytyä (verbi)
+   9800     446 0,000758 ruotsalainen (erisnimi)
+   9801     446 0,000758 sukeltaja (substantiivi)
+   9802     446 0,000758 tappaminen (substantiivi)
+   9803     446 0,000758 tarjoaja (substantiivi)
+   9804     446 0,000758 tiedonanto (substantiivi)
+   9805     445 0,000756 alkuilta (substantiivi)
+   9806     445 0,000756 esteettinen (adjektiivi)
+   9807     445 0,000756 eteinen (substantiivi)
+   9808     445 0,000756 gunnar (erisnimi)
+   9809     445 0,000756 huumekauppa (substantiivi)
+   9810     445 0,000756 höystää (verbi)
+   9811     445 0,000756 kärkimies (substantiivi)
+   9812     445 0,000756 laskenta (substantiivi)
+   9813     445 0,000756 lis (lyhenne)
+   9814     445 0,000756 lämpimästi (adverbi)
+   9815     445 0,000756 matka (erisnimi)
+   9816     445 0,000756 peilata (verbi)
+   9817     445 0,000756 ponnistella (verbi)
+   9818     445 0,000756 pääpaino (substantiivi)
+   9819     445 0,000756 sellutehdas (substantiivi)
+   9820     444 0,000754 aatteellinen (adjektiivi)
+   9821     444 0,000754 alapuolelle (prepositio)
+   9822     444 0,000754 eläytyä (verbi)
+   9823     444 0,000754 haasteellinen (adjektiivi)
+   9824     444 0,000754 itäpuoli (substantiivi)
+   9825     444 0,000754 jatkaja (substantiivi)
+   9826     444 0,000754 kaarle (erisnimi)
+   9827     444 0,000754 kansanedustajaehdokas (substantiivi)
+   9828     444 0,000754 kauppalehti (erisnimi)
+   9829     444 0,000754 kerä (substantiivi)
+   9830     444 0,000754 keveä (adjektiivi)
+   9831     444 0,000754 kidutus (substantiivi)
+   9832     444 0,000754 korkea (erisnimi)
+   9833     444 0,000754 käytettävissä (prepositio)
+   9834     444 0,000754 olemassa_oleva (adjektiivi)
+   9835     444 0,000754 optimismi (substantiivi)
+   9836     444 0,000754 palkintolautakunta (substantiivi)
+   9837     444 0,000754 päivätä (verbi)
+   9838     444 0,000754 räikeä (adjektiivi)
+   9839     444 0,000754 seassa (prepositio)
+   9840     444 0,000754 vaihteeksi (adverbi)
+   9841     444 0,000754 vaje (substantiivi)
+   9842     444 0,000754 veistää (verbi)
+   9843     444 0,000754 velloa (verbi)
+   9844     444 0,000754 volkswagen (erisnimi)
+   9845     444 0,000754 ympäristökunta (substantiivi)
+   9846     443 0,000753 akseli (erisnimi)
+   9847     443 0,000753 ironia (substantiivi)
+   9848     443 0,000753 kuihtua (verbi)
+   9849     443 0,000753 kyynele (substantiivi)
+   9850     443 0,000753 liepeillä (prepositio)
+   9851     443 0,000753 mattsson (erisnimi)
+   9852     443 0,000753 niukkuus (substantiivi)
+   9853     443 0,000753 pientalo (substantiivi)
+   9854     443 0,000753 poikkeuksellisesti (adverbi)
+   9855     443 0,000753 raha-automaattiyhdistys (erisnimi)
+   9856     443 0,000753 samalla_tavoin (adverbi)
+   9857     443 0,000753 sokea (adjektiivi)
+   9858     443 0,000753 sonnustautua (verbi)
+   9859     443 0,000753 suurpujottelu (substantiivi)
+   9860     443 0,000753 terminaali (substantiivi)
+   9861     443 0,000753 tätä_kautta (adverbi)
+   9862     443 0,000753 yhteensovittaminen (substantiivi)
+   9863     442 0,000751 ajorata (substantiivi)
+   9864     442 0,000751 asuntomessu (substantiivi)
+   9865     442 0,000751 gennadi (erisnimi)
+   9866     442 0,000751 houkutus (substantiivi)
+   9867     442 0,000751 ihastuttaa (verbi)
+   9868     442 0,000751 joki (erisnimi)
+   9869     442 0,000751 kaakkois-aasia (erisnimi)
+   9870     442 0,000751 kolkka (substantiivi)
+   9871     442 0,000751 kunniamaininta (substantiivi)
+   9872     442 0,000751 lenin (erisnimi)
+   9873     442 0,000751 loihtia (verbi)
+   9874     442 0,000751 luotsi (substantiivi)
+   9875     442 0,000751 maistraatti (substantiivi)
+   9876     442 0,000751 martta (substantiivi)
+   9877     442 0,000751 mieletön (adjektiivi)
+   9878     442 0,000751 osanotto (substantiivi)
+   9879     442 0,000751 reinikainen (erisnimi)
+   9880     442 0,000751 scania (erisnimi)
+   9881     442 0,000751 tilastoida (verbi)
+   9882     442 0,000751 työllistyä (verbi)
+   9883     441 0,000749 dublin (erisnimi)
+   9884     441 0,000749 elinolo (substantiivi)
+   9885     441 0,000749 jokioinen (erisnimi)
+   9886     441 0,000749 kansalaisliike (substantiivi)
+   9887     441 0,000749 kjell (erisnimi)
+   9888     441 0,000749 markkinointijohtaja (substantiivi)
+   9889     441 0,000749 myyntitulo (substantiivi)
+   9890     441 0,000749 nummela (erisnimi)
+   9891     441 0,000749 paljo (adjektiivi)
+   9892     441 0,000749 robinson (erisnimi)
+   9893     441 0,000749 saaristomeri (erisnimi)
+   9894     441 0,000749 sun (erisnimi)
+   9895     441 0,000749 sääli (substantiivi)
+   9896     441 0,000749 talvisin (adverbi)
+   9897     441 0,000749 tiivistäminen (substantiivi)
+   9898     441 0,000749 uhkaaja (substantiivi)
+   9899     441 0,000749 vauhdikkaasti (adverbi)
+   9900     440 0,000748 harjoittaminen (substantiivi)
+   9901     440 0,000748 hermes (erisnimi)
+   9902     440 0,000748 influenssa (substantiivi)
+   9903     440 0,000748 jalostus (substantiivi)
+   9904     440 0,000748 kamariorkesteri (substantiivi)
+   9905     440 0,000748 kiireesti (adverbi)
+   9906     440 0,000748 kulloinkin (adverbi)
+   9907     440 0,000748 lähestymistapa (substantiivi)
+   9908     440 0,000748 maalipaikka (substantiivi)
+   9909     440 0,000748 parannella (verbi)
+   9910     440 0,000748 pikku (erisnimi)
+   9911     440 0,000748 pysäköinti (substantiivi)
+   9912     440 0,000748 tuntuinen (adjektiivi)
+   9913     440 0,000748 voidella (verbi)
+   9914     439 0,000746 akseli (substantiivi)
+   9915     439 0,000746 hiihtoseura (erisnimi)
+   9916     439 0,000746 jätevedenpuhdistamo (substantiivi)
+   9917     439 0,000746 kaksisataa (lukusana)
+   9918     439 0,000746 kuohua (verbi)
+   9919     439 0,000746 li (erisnimi)
+   9920     439 0,000746 lisärakennus (substantiivi)
+   9921     439 0,000746 luzhkov (erisnimi)
+   9922     439 0,000746 palkintopalli (substantiivi)
+   9923     439 0,000746 palovaroitin (substantiivi)
+   9924     439 0,000746 pihkala (erisnimi)
+   9925     439 0,000746 porsche (erisnimi)
+   9926     439 0,000746 puoliyö (substantiivi)
+   9927     439 0,000746 sopeuttaa (verbi)
+   9928     439 0,000746 tammisaari (erisnimi)
+   9929     439 0,000746 tämän_takia (adverbi)
+   9930     439 0,000746 tämäntyyppinen (adjektiivi)
+   9931     439 0,000746 vaikutusmahdollisuus (substantiivi)
+   9932     438 0,000744 aittoniemi (erisnimi)
+   9933     438 0,000744 epätoivo (substantiivi)
+   9934     438 0,000744 isoveli (substantiivi)
+   9935     438 0,000744 ja_niin_edelleen (adverbi)
+   9936     438 0,000744 muovinen (adjektiivi)
+   9937     438 0,000744 park (erisnimi)
+   9938     438 0,000744 pistooli (substantiivi)
+   9939     438 0,000744 pitkäsoitto (substantiivi)
+   9940     438 0,000744 poikaystävä (substantiivi)
+   9941     438 0,000744 porvarihallitus (substantiivi)
+   9942     438 0,000744 seuraamus (substantiivi)
+   9943     438 0,000744 skop (erisnimi)
+   9944     438 0,000744 tukala (adjektiivi)
+   9945     438 0,000744 tunnustautua (verbi)
+   9946     437 0,000742 aisa (substantiivi)
+   9947     437 0,000742 atp (lyhenne)
+   9948     437 0,000742 cola (erisnimi)
+   9949     437 0,000742 esikoulu (substantiivi)
+   9950     437 0,000742 karmea (adjektiivi)
+   9951     437 0,000742 kauppakatu (erisnimi)
+   9952     437 0,000742 kollektiivinen (adjektiivi)
+   9953     437 0,000742 lindqvist (erisnimi)
+   9954     437 0,000742 mann (erisnimi)
+   9955     437 0,000742 markkina-alue (substantiivi)
+   9956     437 0,000742 notkahdus (substantiivi)
+   9957     437 0,000742 nyrkkeilijä (substantiivi)
+   9958     437 0,000742 paperikone (substantiivi)
+   9959     437 0,000742 pedro (erisnimi)
+   9960     437 0,000742 puolueettomuus (substantiivi)
+   9961     437 0,000742 raakaöljy (substantiivi)
+   9962     437 0,000742 silmäkulma (substantiivi)
+   9963     437 0,000742 supistaminen (substantiivi)
+   9964     437 0,000742 tyhjillään (adverbi)
+   9965     437 0,000742 tytti (erisnimi)
+   9966     437 0,000742 valittaja (substantiivi)
+   9967     437 0,000742 vastaanottaminen (substantiivi)
+   9968     437 0,000742 virkaveli (substantiivi)
+   9969     436 0,000741 ajanlasku (substantiivi)
+   9970     436 0,000741 apina (substantiivi)
+   9971     436 0,000741 auttaja (substantiivi)
+   9972     436 0,000741 kerrostaloasunto (substantiivi)
+   9973     436 0,000741 kohonen (erisnimi)
+   9974     436 0,000741 kotieläin (substantiivi)
+   9975     436 0,000741 lemminkäinen (erisnimi)
+   9976     436 0,000741 luokitus (substantiivi)
+   9977     436 0,000741 olkiluoto (erisnimi)
+   9978     436 0,000741 riitti (substantiivi)
+   9979     436 0,000741 ripotella (verbi)
+   9980     436 0,000741 ryhtyminen (substantiivi)
+   9981     436 0,000741 sisäpiiri (substantiivi)
+   9982     436 0,000741 tuliaiset (substantiivi)
+   9983     436 0,000741 valtiovierailu (substantiivi)
+   9984     436 0,000741 viikottain (adverbi)
+   9985     436 0,000741 ympärivuotinen (adjektiivi)
+   9986     417 0,000708 siren (erisnimi)
+   9987     393 0,000668 andre (erisnimi)
+   9988     324 0,000550 sirén (erisnimi)
+   9989     320 0,000544 gallen (erisnimi)
+   9990     306 0,000520 linden (erisnimi)
+   9991     280 0,000476 müller (erisnimi)
+   9992     215 0,000365 andré (erisnimi)
+   9993     135 0,000229 gallén (erisnimi)
+   9994      63 0,000107 holmen (erisnimi)
+   9995      45 0,000076 allén (erisnimi)
+   9996      28 0,000048 tomás (erisnimi)
+
+   Tämän teoksen käyttöoikeutta koskee Creative Commons
+   Nimeä-Epäkaupallinen-Ei muutettuja teoksia 1.0 Suomi-lisenssi
+   http://creativecommons.org/licenses/by-nd-nc/1.0/fi/
+
+   ©  2004  Kielipankki,  CSC  -  Tieteellinen laskenta Oy.
diff --git a/lib/src/finnish/kotus/Kotus.hs b/lib/src/finnish/kotus/Kotus.hs
new file mode 100644
--- /dev/null
+++ b/lib/src/finnish/kotus/Kotus.hs
@@ -0,0 +1,195 @@
+import qualified Data.Map as M
+import qualified Data.Set as S
+import System
+
+-- build DictFin from KOTUS word list. See Makefile for how to run
+-- AR 28/12/2010
+
+main = do
+  f:xx <- getArgs
+  ss  <- readFile f >>= return . lines
+  let dict0 = map getEntry ss
+  let dictList = [(word e,e) | e <- dict0]
+  let dictMap = M.fromAscList dictList
+  let adjList = [(adj,adv) | (adv,e) <- dictList, 
+                          cat e == catAdverb, -- kultamitali - kultamitalisti, hence need this
+                          Just adj <- [lookAdj adv dictMap]]
+---  mapM_ (\ (adj,adv) -> putStrLn (adv ++ " - " ++ adj)) adjList -- to see the adjectives
+  let compoundList = [(whole,(end,beg)) | (whole,e) <- dictList,
+                          elem (cat e) [catNoun,catAdjective],
+                          Just (end,beg) <- [lookCompound (whole,e) dictMap]]
+---  mapM_ (\ (x,(y,_)) -> putStrLn (unwords [x,"-", word y])) compoundList -- to see compounds
+  let (adjSet,advSet) = let (adjs,advs) = unzip adjList in (S.fromList adjs,S.fromList advs)
+  let compoundMap  = M.fromList compoundList
+  let dictList1    = map (mkAdjAdv adjSet advSet) dictList
+  let dictListComp = concatMap (mkCompound compoundMap) dictList1
+  let dictList2    = filter (flip M.notMember compoundMap . fst) dictList1
+  let dictList3 = case xx of 
+        "-compounds":_ -> dictListComp
+        "-all":_  -> dictList2 ++ dictListComp
+        _ -> dictList2
+  let dict3 = map snd dictList3
+  mapM_ mkRules dict3
+
+
+
+
+----------------------------------------------------------------
+-- identify the parts of compounds
+
+-- longest match, suffix length 3..10, prefix length at least 3, both parts exist
+-- this gives 36557 compounds...
+--- no recursion to multi-word compounds
+lookCompound :: (String, Entry) -> M.Map String Entry -> Maybe (Entry,String)
+lookCompound (w,ent) dict = 
+  looks [splitAt i w | let k = length w, i <- [k-3, k-4 .. max (k-10) 3]] 
+ where
+  looks ws = case [(e,u) | (u,v) <- ws, 
+                       Just e <- [M.lookup v dict], cat e == catNoun,
+                       Just _ <- [M.lookup u dict]] of
+    eu :_ -> return eu
+    _ -> Nothing
+
+-- return compounds
+mkCompound compMap (w,ent) = 
+  case M.lookup w compMap of
+    Just (e,b) -> return (w, ent {
+            word = word e,
+            tn = tn e, 
+            par = unwords ["compoundNK",par e,quoted b],
+            isDummy = tn e == 0
+            }
+          )
+    _ -> []
+
+
+----------------------------------------------------------------
+--
+-- for words ending "-sti", look for corresponding adjective. If found, mark the adjective
+-- as adjective, and eliminate the adverb.
+
+mkAdjAdv adjSet advSet (w,e) = 
+  if S.member w adjSet && (cat e == catNoun) 
+     then (w,e{cat = catAdjective, fun = take (length (fun e) - 2) (fun e) ++ "AK"})
+  else if S.member w advSet && (cat e == catAdverb) then (w,e{isDerived = True})
+  else (w,e)
+
+lookAdj adv dict = case splitAt (length adv - 3) adv of
+  (adj,"sti") -> case [e | a <- adjCandidates adj, 
+                       Just e <- [M.lookup a dict], cat e == catNoun] of
+    e :_ -> return $ word e
+    _ -> Nothing
+  _ -> Nothing
+
+adjCandidates adj = case reverse adj of
+  'e':'s': w -> [reverse w ++ "nen", adj]  -- vihainen - vihaisesti
+  'a':'a': 'k' : 'k' : w -> 
+    [reverse w ++ "kas",  adj]  -- halukas
+  'a':'a': w -> 
+    [init adj ++ "s",  adj]  -- hurskas - hurskaasti, suulas - suulaasti
+  v  : v': 'k' : 'k' : w | v == v' && fromEnum v == 228 -> 
+    [reverse w ++ "käs",  adj] -- nenäkäs - nenäkkäästi
+  v  : v': w | v == v' && fromEnum v == 228 -> 
+    [init adj ++ "s",  adj] -- ylväs - ylväästi
+  'e':'e': w -> let rw = reverse w in 
+                [rw ++ "e", rw ++ "ut", rw ++ "yt", adj]  -- terveesti, ahdistuneesti
+  'i':'i': w -> [reverse w ++ "is",  adj]  -- kaunis - kauniisti
+  'e':_      -> [init adj ++ "i", adj]     -- suuri - suuresti (not: suure - suuresti)
+  _ -> [adj]
+
+
+-------------------------------------------------
+-- produce rules
+
+mkRules e = do
+  putRule $ mkFun (fun e) (cat e)
+  putRule $ mkLin (fun e) (par e) (word e)
+ where
+   putRule
+    | isDummy e = const (return ()) -- putStrLn . ("-- " ++)
+    | isDerived e = putStrLn . ("--+ " ++)
+    | isPlurTant e = putStrLn . ("--? " ++)
+    | otherwise = putStrLn 
+
+mkFun fun cat = unwords ["fun",fun,":",cat,";"]
+mkLin fun par w = case words par of
+  f@"compoundNK":p:v:_ -> unwords ["lin",fun,"=","{s","=",f,v,"("++ p,quoted w ++")}",";"]
+  _ -> unwords ["lin",fun,"=","{s","=",par,quoted w ++"}",";"]
+
+mkId = concatMap trim where
+  trim c = case fromEnum c of
+    32 -> "_" -- space
+    45 -> "_" -- -
+    224 -> "a''" -- à
+    228 -> "a'" -- ä
+    246 -> "o'" -- ö
+    252 -> "u'" -- ü
+    x | x < 65 || (x > 90 && x < 97) || x > 122 -> "_"
+    _   -> [c]
+
+quoted s = "\"" ++ s ++ "\""
+
+-- analyse each line in KOTUS by this
+
+getEntry :: String -> Entry
+getEntry s = emptyEntry {
+  word = w,
+  tn   = p,
+  av   = g,
+  hn   = h,
+  fun  = mkId w ++ "_" ++ (if h=="0" then "" else h ++ "_") ++ c,
+  cat  = c,
+  par  = (if p < 52 then "d" else "c") ++ num p ++ (if g == "0" then "" else "A"),
+  isSuffix = suff,
+  isDummy = elem p [0,50,51,101],
+  isPlurTant = last w == 't' && notElem p [5,43,47,99]
+  } 
+ where
+  x = getTags s
+  (w,suff) = let w0 = tagged "s" x in if (head w0 == '-') then (tail w0, True) else (w0,False)
+  p = (read (tagged "tn" x) :: Int)
+  h = tagged "hn" x
+  g = tagged "av" x
+  c = if p < 50 then catNoun 
+      else if p < 99 then catVerb
+      else catAdverb
+  num p = if p < 10 then "0" ++ show p else show p
+
+
+tagged :: String -> Tags -> String
+tagged s x = maybe "0" id $ lookup s x
+
+-- get values of leave tags
+getTags :: String -> Tags
+getTags s = case s of
+  '<':rest -> case break (=='>') rest of
+     (tag,_:more) -> case break (=='<') more of
+       ([],_)  -> getTags more
+       (v,end) -> (tag,v):getTags end
+     _ -> []
+  _ -> []
+
+type Tags = [(String,String)]
+
+data Entry = Entry {
+  word :: String,
+  tn   :: Int,
+  av   :: String,
+  hn   :: String,
+  fun  :: String,
+  cat  :: String,
+  par  :: String,
+  comp1 :: String,  -- compound word with this as inflected first part
+  comp2 :: String,  -- compound word with this as last part
+  isSuffix :: Bool, -- used only as suffix, e.g. "-tekoinen"
+  isDummy :: Bool,  -- no inflection information, or compound, or pron, or adverb from adjective
+  isPlurTant :: Bool, -- plurale tantum, e.g. "sakset"
+  isDerived :: Bool   -- is derived from other words, e.g. adverb from adjective
+}
+
+emptyEntry = Entry "" 0 "" "" "" "" "" "" "" False False False False
+
+catNoun = "NK"
+catVerb = "VK"
+catAdjective = "AK"
+catAdverb = "AdvK"
diff --git a/lib/src/finnish/kotus/Makefile b/lib/src/finnish/kotus/Makefile
new file mode 100644
--- /dev/null
+++ b/lib/src/finnish/kotus/Makefile
@@ -0,0 +1,19 @@
+all: dict
+
+dict:
+	runghc Kotus.hs src/kotus-sanalista_v1.xml >src.tmp
+	cp prelDictFinAbs DictFinAbs.gf
+	grep ":" src.tmp >>DictFinAbs.gf
+	echo "}" >>DictFinAbs.gf
+	cp prelDictFin DictFin.gf
+	grep "=" src.tmp >>DictFin.gf
+	echo "}" >>DictFin.gf
+
+compounds:
+	runghc Kotus.hs src/kotus-sanalista_v1.xml -compounds >src-comp.tmp
+	cp prelDictCompFinAbs DictCompFinAbs.gf
+	grep ":" src-comp.tmp >>DictCompFinAbs.gf
+	echo "}" >>DictCompFinAbs.gf
+	cp prelDictCompFin DictCompFin.gf
+	grep "=" src-comp.tmp >>DictCompFin.gf
+	echo "}" >>DictCompFin.gf
diff --git a/lib/src/finnish/kotus/prelDictCompFin b/lib/src/finnish/kotus/prelDictCompFin
new file mode 100644
--- /dev/null
+++ b/lib/src/finnish/kotus/prelDictCompFin
@@ -0,0 +1,9 @@
+--# -path=.:alltenses
+
+concrete DictCompFin of DictCompFinAbs = DictFin ** open MorphoFin, Kotus, Prelude in {
+
+-- extracted from http://kaino.kotus.fi/sanat/nykysuomi/, licensed under LGPL
+-- non-compounds in DictFin (inherited)
+
+flags coding = utf8 ;
+
diff --git a/lib/src/finnish/kotus/prelDictCompFinAbs b/lib/src/finnish/kotus/prelDictCompFinAbs
new file mode 100644
--- /dev/null
+++ b/lib/src/finnish/kotus/prelDictCompFinAbs
@@ -0,0 +1,2 @@
+abstract DictCompFinAbs = DictFinAbs ** {
+
diff --git a/lib/src/finnish/kotus/prelDictFin b/lib/src/finnish/kotus/prelDictFin
new file mode 100644
--- /dev/null
+++ b/lib/src/finnish/kotus/prelDictFin
@@ -0,0 +1,11 @@
+--# -path=.:alltenses
+
+concrete DictFin of DictFinAbs = open MorphoFin, Kotus, Prelude in {
+
+-- extracted from http://kaino.kotus.fi/sanat/nykysuomi/, licensed under LGPL
+-- compounds in DictCompFin
+
+flags coding = utf8 ;
+
+lincat NK = {s : NForms} ; AK = {s : NForms} ; VK = {s : VForms} ; AdvK = {s : Str} ;
+
diff --git a/lib/src/finnish/kotus/prelDictFinAbs b/lib/src/finnish/kotus/prelDictFinAbs
new file mode 100644
--- /dev/null
+++ b/lib/src/finnish/kotus/prelDictFinAbs
@@ -0,0 +1,3 @@
+abstract DictFinAbs = {
+cat NK ; AK ; VK ; AdvK ;
+
diff --git a/lib/src/finnish/kotus/src/kotus-sanalista.dtd b/lib/src/finnish/kotus/src/kotus-sanalista.dtd
new file mode 100644
--- /dev/null
+++ b/lib/src/finnish/kotus/src/kotus-sanalista.dtd
@@ -0,0 +1,28 @@
+<!--
+Copyright (C) Kotimaisten kielten tutkimuskeskus 2006
+Kotimaisten kielten tutkimuskeskuksen nykysuomen sanalista, versio 1
+Julkaistu 15.12.2006
+
+Sanalista julkaistaan GNU LGPL -lisenssillä.
+Lisenssiteksti luettavissa osoitteessa http://www.gnu.org/licenses/lgpl.html
+Listaan perustuvien sovellusten mukana on aina toimitettava alkuperäinen
+sanalista lukukelpoisessa muodossaan.
+-->
+
+<!ELEMENT  kotus-sanalista  (st*) >
+
+<!ELEMENT  st  (s, hn?, t*) >
+                          
+<!ELEMENT  s  (#PCDATA) >
+            
+<!ELEMENT  hn  (#PCDATA) >
+             
+<!ELEMENT  t  (tn, av?)* >
+<!ATTLIST  t  taivutus CDATA #IMPLIED>
+
+<!ELEMENT  tn  (#PCDATA) >
+
+<!ELEMENT  av  (#PCDATA) >
+<!ATTLIST  av  astevaihtelu CDATA #IMPLIED>
+
+
diff --git a/lib/src/finnish/kotus/src/kotus-sanalista_v1.xml b/lib/src/finnish/kotus/src/kotus-sanalista_v1.xml
new file mode 100644
# file too large to diff: lib/src/finnish/kotus/src/kotus-sanalista_v1.xml
diff --git a/lib/src/finnish/kotus/uusisuomi/Makefile b/lib/src/finnish/kotus/uusisuomi/Makefile
new file mode 100644
--- /dev/null
+++ b/lib/src/finnish/kotus/uusisuomi/Makefile
@@ -0,0 +1,54 @@
+LEX=Omat
+CAT=N
+
+.PHONY: kotus
+
+all: nouns
+
+verbs: 
+	export CAT=V ; export LEX=VNSSK ; make -e tests
+	export CAT=V ; export LEX=VOmat ; make -e tests
+	export CAT=V ; export LEX=VSwadesh ; make -e tests
+	export CAT=V ; export LEX=VDictionary ; make -e tests
+	cat all-diff-V* >all-differences-V
+	cat all-differences-V
+
+nouns: 
+#	export LEX=NSSK ; make -e tests
+#	export LEX=Omat ; make -e tests
+	export LEX=Swadesh ; make -e tests
+	export LEX=Dictionary ; make -e tests
+	export LEX=Duodecim ; make -e tests
+	export LEX=Aino ; make -e tests
+	cat all-diff-* >all-differences
+	cat all-differences
+
+kotus: 
+	export LEX=KOTUS ; make -e tests
+	cat all-diff-KOTUS
+
+CSC: 
+	export LEX=NCSC ; make -e tests
+	cat all-diff-NCSC
+
+gf-files:
+	runghc MkLex.hs 0 $(CAT) $(LEX) > $(LEX)Abs.gf
+#	runghc MkLex.hs 1 $(CAT) $(LEX) > $(LEX)1.gf
+	runghc MkLex.hs 2 $(CAT) $(LEX) > $(LEX)2.gf
+	runghc MkLex.hs 3 $(CAT) $(LEX) > $(LEX)3.gf
+	runghc MkLex.hs 4 $(CAT) $(LEX) > $(LEX)4.gf
+
+experiments: gf-files
+#	echo "gt -cat=Utt | l | wf exper1-$(LEX).txt" | gf -s $(LEX)1.gf
+	echo "gt -cat=Utt | l | wf exper2-$(LEX).txt" | gf -s $(LEX)2.gf
+	echo "gt -cat=Utt | l | wf exper3-$(LEX).txt" | gf -s $(LEX)3.gf
+	echo "gt -cat=Utt | l | wf exper4-$(LEX).txt" | gf -s $(LEX)4.gf
+
+tests: experiments
+	runghc MyDiff.hs correct-$(LEX).txt  exper1-$(LEX).txt >diff1-$(LEX).txt
+	runghc MyDiff.hs correct-$(LEX).txt  exper2-$(LEX).txt >diff2-$(LEX).txt
+	runghc MyDiff.hs correct-$(LEX).txt  exper3-$(LEX).txt >diff3-$(LEX).txt
+	runghc MyDiff.hs correct-$(LEX).txt  exper4-$(LEX).txt >diff4-$(LEX).txt
+	date >all-diff-$(LEX)
+	echo $(LEX) >>all-diff-$(LEX)
+	wc -l diff?-$(LEX).txt >>all-diff-$(LEX)
diff --git a/lib/src/finnish/kotus/uusisuomi/MkLex.hs b/lib/src/finnish/kotus/uusisuomi/MkLex.hs
new file mode 100644
--- /dev/null
+++ b/lib/src/finnish/kotus/uusisuomi/MkLex.hs
@@ -0,0 +1,118 @@
+module Main where
+
+import System
+import Char
+
+-- generate Finnish lexicon implementations with 1 or more 
+-- characteristic arguments
+-- usage: runghc MkLex.hs 3 cat name
+
+main = do
+  i:cat:tgt:_ <- getArgs
+  let src = "correct-" ++ tgt ++ ".txt"
+  ss <- readFile src >>= return . filter (not . (all isSpace)) . lines
+  initiate tgt cat i
+  mapM_ (mkLex cat (read i) . uncurry (++)) (zip nums ss)
+  putStrLn "}"
+
+initiate tgt cat i = mapM_ putStrLn [
+  "--# -path=.:alltenses",
+  "",
+  header i,
+  ""
+  ]
+ where
+  header i = case i of
+    "0" -> unlines [
+      "abstract " ++ tgt ++ "Abs = Cat ** {",
+      "fun testN : N -> Utt ;",
+      "fun testV : V -> Utt ;"
+      ]
+    _ -> unlines [
+      "concrete " ++ tgt ++ i ++ 
+      " of " ++ tgt ++ 
+      "Abs = CatFin ** open Nominal, Verbal, ResFin, Prelude in {",
+      "",
+      "lin testN = showN ;",
+      "lin testV = showV ;"
+     ]
+
+nums = map prt [10001 ..] where
+----  prt i = (if i < 10 then "0" else "") ++ show i ++ ". "
+  prt i = show i ++ ". "
+
+-- W is the flag for mixed-class word lists
+mkLex "W" 0 line = case words line of
+  num:cat:sana:_ -> do
+    let nimi = "n" ++ init num ++ "_" ++ sana 
+    putStrLn $ "fun " ++ nimi ++ "_" ++ cat ++ " : " ++ cat ++ " ;"
+  _ -> return ()
+
+mkLex "W" 1 line = case words line of
+  num:cat:sanat@(sana:_) -> do
+    let nimi = "n" ++ init num ++ "_" ++ sana 
+    putStrLn $ "lin " ++ nimi ++ 
+               "_" ++ cat ++ " = mk" ++ cat ++ " " ++ 
+               unwords (map prQuoted sanat) ++" ;"
+  _ -> return ()
+
+mkLex cat 0 line = case words line of
+  num:sana:_ -> do
+    let nimi = "n" ++ init num ++ "_" ++ sana 
+    putStrLn $ "fun " ++ nimi ++ "_" ++ cat ++ " : " ++ cat ++ " ;"
+  _ -> return ()
+
+mkLex cat 1 line = case words line of
+  num:sana:_ -> do
+    let nimi = "n" ++ init num ++ "_" ++ sana 
+    putStrLn $ "lin " ++ nimi ++ 
+               "_" ++ cat ++ " = mk" ++ cat ++ " \"" ++ sana ++ "\" ;"
+  _ -> return ()
+
+mkLex "V" _ line = case words line of
+  num:sana:_:_:_:_:_:_:sanan:_ -> do
+    let nimi = "n" ++ init num ++ "_" ++ sana 
+    putStrLn $ "lin " ++ nimi ++ 
+      "_V = mkV \"" ++ sana ++ "\" \"" ++ sanan ++ "\" ;"
+  _ -> return ()
+
+mkLex "N" 2 line = case words line of
+--  num:sana:sanan:_ -> do
+  num:sana:_:_:_:_:_:sanan:_ -> do
+    let nimi = "n" ++ init num ++ "_" ++ sana 
+    putStrLn $ "lin " ++ nimi ++ 
+      "_N = mkN \"" ++ sana ++ "\" \"" ++ sanan ++ "\" ;"
+  _ -> return ()
+
+mkLex "N" 3 line = case words line of
+----  num:sana:sanan:sanoja:_ -> do
+  num:sana:sanan:_:_:_:_:sanoja:_ -> do
+    let nimi = "n" ++ init num ++ "_" ++ sana 
+    putStrLn $ "lin " ++ nimi ++ 
+      "_N = mkN \"" ++ sana ++ "\" \"" ++ sanan ++ "\" \"" ++ sanoja ++ "\" ;"
+  _ -> return ()
+
+mkLex "N" 4 line = case words line of
+  num:sana:sanan:sanaa:_:_:_:sanoja:_ -> do
+    let nimi = "n" ++ init num ++ "_" ++ sana 
+    putStrLn $ "lin " ++ nimi ++ 
+      "_N = mkN \"" ++ sana ++ "\" \"" ++ sanan ++ 
+                 "\" \"" ++ sanoja ++ "\" \"" ++ sanaa ++ "\" ;"
+  _ -> return ()
+
+-- to initiate from a noun list that has compounds
+
+mkLex "N" 11 line = case words line of
+  _:"--":_ -> return ()
+  num:sana0:_ -> do
+    let sana = uncompound sana0
+    let nimi = "n" ++ init num ++ "_" ++ sana 
+    putStrLn $ "fun " ++ nimi ++ "_N : N ;"
+    putStrLn $ "lin " ++ nimi ++ "_N = mkN \"" ++ sana ++ "\" ;"
+  _ -> return ()
+
+prQuoted s = concat ["\"",s,"\""]
+
+-- from sora+tie to tie
+
+uncompound = reverse . takeWhile (/= '+') . reverse
diff --git a/lib/src/finnish/kotus/uusisuomi/MyDiff.hs b/lib/src/finnish/kotus/uusisuomi/MyDiff.hs
new file mode 100644
--- /dev/null
+++ b/lib/src/finnish/kotus/uusisuomi/MyDiff.hs
@@ -0,0 +1,25 @@
+module Main where
+
+import System
+
+-- compare lines word-by-word, returning difference pairs with their positions
+
+main = do
+  x:y:_ <- getArgs
+  old <- readFile x >>= return . lines
+  new <- readFile y >>= return . lines
+  mapM_ comp (zip old new)
+
+comp (ws1,ws2) = do
+  let diffs = [form ++ ":" ++ w1 ++ "-" ++ w2 | 
+        (form,(w1,w2)) <- zip forms (zip (words ws1) (words ws2)), diff w2 w1]
+  putStr $ unwords diffs
+  if null diffs then return () else putStrLn ""
+
+forms = map show [1..]
+
+diff w ws = notElem w (chop ws) where
+  chop cs = case span (/='/') cs of
+    ([],_)  -> []
+    (w1,ww) -> w1:chop (drop 1 ww)
+
diff --git a/lib/src/finnish/kotus/uusisuomi/bootstrapping.txt b/lib/src/finnish/kotus/uusisuomi/bootstrapping.txt
new file mode 100644
--- /dev/null
+++ b/lib/src/finnish/kotus/uusisuomi/bootstrapping.txt
@@ -0,0 +1,45 @@
+1. write a word list - one noun per line, save in file correct-Foo.txt
+
+2. create a first compilable grammar:
+
+  % runghc MkLex.hs 0 Foo >FooAbs.gf
+  % runghc MkLex.hs 1 Foo >Foo1.gf
+
+3. compile this and create a first full-form word list
+
+  % gf Foo1.gf
+  > gt -cat=Utt | l | wf correct-Foo.txt
+
+4. manually correct some singular genitive forms (the largest error source)
+  
+  uutuus uutuuksen ...  => uutuus uutuuden ...
+
+5. create a second compilable grammar:
+
+  % runghc MkLex.hs 2 Foo >Foo2.gf
+
+6. compile this into a second full-form word list
+
+  % gf Foo2.gf
+  > gt -cat=Utt | l | wf correct-Foo.txt
+
+7. manually correct the remaining partitive forms (mostly plural)
+
+8. create yet another grammar:
+
+  % runghc MkLex.hs 4 Foo >Foo4.gf
+
+9. compile this into yet another full-form word list
+
+  % gf Foo4.gf
+  > gt -cat=Utt | l | wf correct-Foo.txt
+
+10. manually correct any remaining errors (which should be rare now)
+
+11. if relevant, run a test of the regularity of the vocabulary:
+
+  % export LEX=Foo ; make -e
+
+
+
+
diff --git a/lib/src/french/DiffFre.gf b/lib/src/french/DiffFre.gf
--- a/lib/src/french/DiffFre.gf
+++ b/lib/src/french/DiffFre.gf
@@ -47,10 +47,7 @@
       _ => prepCase c ++ artDef g Sg (CPrep P_de)
       } ;
 
-    conjunctCase : NPForm -> NPForm = \c -> case c of {
-      Aton k => Ton k ;
-      _ => c
-      } ;
+    conjunctCase : Case -> Case = \c -> c ;
 
     auxVerb : VType -> (VF => Str) = \vtyp -> case vtyp of {
       VHabere => avoir_V.s ;
diff --git a/lib/src/french/ExtraFre.gf b/lib/src/french/ExtraFre.gf
--- a/lib/src/french/ExtraFre.gf
+++ b/lib/src/french/ExtraFre.gf
@@ -56,5 +56,12 @@
       _   => elisQue
       } ;
 
+  lin
+    tout_Det = {
+    s  = \\g,c => prepCase c ++ genForms "tout" "toute" ! g ;
+    sp = \\g,c => prepCase c ++ genForms "tout" "toute" ! g ;
+    n = Sg ; 
+    s2 = []
+    } ;
 
 }
diff --git a/lib/src/french/ExtraFreAbs.gf b/lib/src/french/ExtraFreAbs.gf
--- a/lib/src/french/ExtraFreAbs.gf
+++ b/lib/src/french/ExtraFreAbs.gf
@@ -31,4 +31,8 @@
     youPl8fem_Pron : Pron ;
     youPol8fem_Pron : Pron ;
 
+-- The determiner "tout" in the special use "tout nombre"
+
+    tout_Det : Det ;
+
 }
diff --git a/lib/src/french/StructuralFre.gf b/lib/src/french/StructuralFre.gf
--- a/lib/src/french/StructuralFre.gf
+++ b/lib/src/french/StructuralFre.gf
@@ -34,7 +34,7 @@
   either7or_DConj = {s1,s2 = "ou" ; n = Pl} ;
   everybody_NP = pn2np (mkPN ["tout le monde"] Masc) ;
   every_Det = {
-    s  = \\_,_ => "chaque" ;
+    s  = \\_,c => prepCase c ++ "chaque" ;
     sp = \\g,c => prepCase c ++ genForms "chacun" "chacune" ! g ;
     n = Sg ; 
     s2 = []
@@ -91,7 +91,7 @@
   so_AdA = ss "si" ;
   somebody_NP = pn2np (mkPN ["quelqu'un"] Masc) ;
   somePl_Det = {s,sp = \\_,c => prepCase c ++ "quelques" ; n = Pl ; s2 = []} ; ---- sp
-  someSg_Det = {s,sp = \\_,c => prepCase c ++ elision "quelqu" ; n = Sg ; s2 = []} ; ----sp
+  someSg_Det = {s,sp = \\_,c => prepCase c ++ "quelque" ; n = Sg ; s2 = []} ; ----sp
   something_NP = pn2np (mkPN ["quelque chose"] Masc) ;
   somewhere_Adv = ss ["quelque part"] ; --- ne - pas
 
diff --git a/lib/src/german/ConjunctionGer.gf b/lib/src/german/ConjunctionGer.gf
--- a/lib/src/german/ConjunctionGer.gf
+++ b/lib/src/german/ConjunctionGer.gf
@@ -24,8 +24,15 @@
 
 -- These fun's are generated from the list cat's.
 
-    BaseS = twoTable Order ;
-    ConsS = consrTable Order comma ;
+    BaseS x y = { -- twoTable Order ;
+      s1 = x.s ;
+      s2 = table {Inv => y.s ! Main ; o => y.s ! o}
+      } ;
+    ConsS x xs = { -- consrTable Order comma ;
+      s1 = \\o => x.s ! Inv ++ comma ++ xs.s1 ! case o of {Inv => Main ; _ => o} ;
+      s2 = xs.s2
+      } ;
+
     BaseAdv = twoSS ;
     ConsAdv = consrSS comma ;
     BaseNP x y = twoTable PCase x y ** {a = conjAgr x.a y.a} ;
diff --git a/lib/src/german/IrregGer.gf b/lib/src/german/IrregGer.gf
--- a/lib/src/german/IrregGer.gf
+++ b/lib/src/german/IrregGer.gf
@@ -70,7 +70,7 @@
   lin glimmen_V =  irregV "glimmen" "glimmt" "glomm" "glimmte" "glömme" ;
   lin graben_V =  irregV "graben" "gräbt" "grub" "grübe" "gegraben" ;
   lin greifen_V =  irregV "greifen" "greift" "griff" "griffe" "gegriffen" ;
-  lin haben_V =  irregV "haben" "hat" "hatte" "hatte" "gehabt" ;
+  lin haben_V =  irregV "haben" "hat" "hatte" "hätte" "gehabt" ;
   lin halten_V =  irregV "halten" "hält" "hielt" "hielte" "gehalten" ;
   lin hängen_V =  irregV "hängen" "hängt" "hing" "hinge" "gehangen" ;
   lin hauen_V =  irregV "hauen" "haut" (variants {"haute" ; "hieb"}) (variants {"haute" ; "hiebe"}) "gehauen" ;
diff --git a/lib/src/german/ParadigmsGer.gf b/lib/src/german/ParadigmsGer.gf
--- a/lib/src/german/ParadigmsGer.gf
+++ b/lib/src/german/ParadigmsGer.gf
@@ -427,7 +427,10 @@
       frag    = stemVerb fragen ;
       fragt   = verbT frag ;
       fragte  = fragt + "e" ;
-      gefragt = "ge" + fragt ;
+      gefragt : Str = case frag of {
+        _ + "ier" => fragt ;
+        _ => "ge" + fragt
+        } ;
     in
     mk6V fragen fragt (frag + "e") fragte fragte gefragt ;
 
diff --git a/lib/src/german/SentenceGer.gf b/lib/src/german/SentenceGer.gf
--- a/lib/src/german/SentenceGer.gf
+++ b/lib/src/german/SentenceGer.gf
@@ -61,6 +61,8 @@
       } ;
 
     AdvS a s = {s = table {Sub => a.s ++ s.s ! Sub ; o => a.s ++ s.s ! Inv}} ;
+    ExtAdvS a s = 
+      {s = table {Sub => a.s ++ "," ++ s.s ! Sub ; o => a.s ++ "," ++ s.s ! Inv}} ;
 
     SSubjS a s b = {s = \\o => a.s ! o ++ "," ++ s.s ++ b.s ! Sub} ;
 
diff --git a/lib/src/hindustani/CatHindustani.gf b/lib/src/hindustani/CatHindustani.gf
--- a/lib/src/hindustani/CatHindustani.gf
+++ b/lib/src/hindustani/CatHindustani.gf
@@ -55,7 +55,8 @@
 
     CN = ResHindustani.Noun ;
     NP = CommonHindustani.NP ;
-    Pron = {s : Case => Str ; ps : Str ; a : Agr};
+ --   Pron = {s : Case => Str ; ps : Str ; gs : Str ; a : Agr};
+    Pron = {s : Case => Str ; ps : Number => Gender => Str ; a : Agr};
     Det = ResHindustani.Determiner ;
     Predet = {s : Str} ;
     Num  = {s : Str ; n : Number} ;
diff --git a/lib/src/hindustani/CommonHindustani.gf b/lib/src/hindustani/CommonHindustani.gf
--- a/lib/src/hindustani/CommonHindustani.gf
+++ b/lib/src/hindustani/CommonHindustani.gf
@@ -87,30 +87,30 @@
 		<CPresent,Pl,Pers2_Respect,_   > => "hyN" ;
         <CPresent,Pl,Pers3_Near,_   > => "hyN" ;
         <CPresent,Pl,Pers3_Distant,_   > => "hyN" ;
-		<CPast,Sg,Pers1,Masc   > => "th-a" ;
-		<CPast,Sg,Pers1,Fem   > => "th-y" ;
-        <CPast,Sg,Pers2_Casual,Masc   > => "th-a" ;
-		<CPast,Sg,Pers2_Casual,Fem   > => "th-y" ;
+		<CPast,Sg,Pers1,Masc   > => "th'a" ;
+		<CPast,Sg,Pers1,Fem   > => "th'y" ;
+        <CPast,Sg,Pers2_Casual,Masc   > => "th'a" ;
+		<CPast,Sg,Pers2_Casual,Fem   > => "th'y" ;
         <CPast,Sg,Pers2_Familiar,Masc   > => "th-a" ;
-		<CPast,Sg,Pers2_Familiar,Fem   > => "th-y" ;
-		<CPast,Sg,Pers2_Respect,Masc   > => "th-E" ;
-		<CPast,Sg,Pers2_Respect,Fem   > => "th-yN" ;
+		<CPast,Sg,Pers2_Familiar,Fem   > => "th'y" ;
+		<CPast,Sg,Pers2_Respect,Masc   > => "th'E" ;
+		<CPast,Sg,Pers2_Respect,Fem   > => "th'yN" ;
         <CPast,Sg,Pers3_Near,Masc   > => "th-a" ;
-		<CPast,Sg,Pers3_Near,Fem   > => "th-y" ;
+		<CPast,Sg,Pers3_Near,Fem   > => "th'y" ;
         <CPast,Sg,Pers3_Distant,Masc  > => "th-a" ;
-		<CPast,Sg,Pers3_Distant,Fem  > => "th-y" ;
-		<CPast,Pl,Pers1,Masc   > => "th-E" ;
-		<CPast,Pl,Pers1,Fem   > => "th-yN" ;
-        <CPast,Pl,Pers2_Casual,Masc   > => "th-E" ;
-		<CPast,Pl,Pers2_Casual,Fem   > => "th-yN" ;
-        <CPast,Pl,Pers2_Familiar,Masc   > => "th-E" ;
-		<CPast,Pl,Pers2_Familiar,Fem   > => "th-yN" ;
-		<CPast,Pl,Pers2_Respect,Masc   > => "th-E" ;
-		<CPast,Pl,Pers2_Respect,Fem   > => "th-yN" ;
-        <CPast,Pl,Pers3_Near,Masc   > => "th-E" ;
-		<CPast,Pl,Pers3_Near,Fem   > => "th-yN" ;
-		<CPast,Pl,Pers3_Distant,Masc   > => "th-E" ;
-		<CPast,Pl,Pers3_Distant,Fem   > => "th-yN" ;
+		<CPast,Sg,Pers3_Distant,Fem  > => "th'y" ;
+		<CPast,Pl,Pers1,Masc   > => "th'E" ;
+		<CPast,Pl,Pers1,Fem   > => "th'yN" ;
+        <CPast,Pl,Pers2_Casual,Masc   > => "th'E" ;
+		<CPast,Pl,Pers2_Casual,Fem   > => "th'yN" ;
+        <CPast,Pl,Pers2_Familiar,Masc   > => "th'E" ;
+		<CPast,Pl,Pers2_Familiar,Fem   > => "th'yN" ;
+		<CPast,Pl,Pers2_Respect,Masc   > => "th'E" ;
+		<CPast,Pl,Pers2_Respect,Fem   > => "th'yN" ;
+        <CPast,Pl,Pers3_Near,Masc   > => "th'E" ;
+		<CPast,Pl,Pers3_Near,Fem   > => "th'yN" ;
+		<CPast,Pl,Pers3_Distant,Masc   > => "th'E" ;
+		<CPast,Pl,Pers3_Distant,Fem   > => "th'yN" ;
 		<CFuture,Sg,Pers1,Masc   > => "ga" ;
 		<CFuture,Sg,Pers1,Fem   > => "gy" ;
         <CFuture,Sg,Pers2_Casual,Masc   > => "ga" ;
@@ -163,10 +163,11 @@
 						      (acch +"E")  ("bht" ++ acch + "E") ("sb sE" ++ acch + "E") (acch + "E") ("bht" ++ acch + "E") ("sb sE" ++ acch + "E") (acch + "E") ("bht" ++ acch + "E") ("sb sE" ++ acch + "E")
 		                                      (acch + "y") ("bht" ++ acch + "y") ("sb sE" ++ acch + "y") (acch + "y") ("bht" ++ acch + "y") ("sb sE" ++ acch + "y") (acch + "y") ("bht" ++ acch + "y") ("sb sE" ++ acch + "y");
 									
-                        _                 => mkAdjective  x x x x x x x x x
-                                                        x x x x x x x x x
-                                                        x x x x x x x x x
-                                                        x x x x x x x x x									 
+                        _                 => mkAdjective  x  ("bht" ++ x)  	("sb sE" ++ x)  x ("bht" ++ x) ("sb sE" ++ x) x ("bht" ++ x) ("sb sE" ++ x)
+							  x  ("bht" ++ x) 	("sb sE" ++ x) 	x ("bht" ++ x) ("sb sE" ++ x) x ("bht" ++ x) ("sb sE" ++ x)
+							  x  ("bht" ++ x) 	("sb sE" ++ x)  x ("bht" ++ x) ("sb sE" ++ x) x ("bht" ++ x) ("sb sE" ++ x)
+							  x  ("bht" ++ x) 	("sb sE" ++ x)  x ("bht" ++ x) ("sb sE" ++ x) x ("bht" ++ x) ("sb sE" ++ x)
+																 
                             }; 
 					 
 
@@ -247,6 +248,10 @@
                         }
                     }
             };
+	    
+   compoundAdj : Str -> Str -> Adjective = \s1,s2 -> mkCompoundAdj (regAdjective s1) (regAdjective s2) ;
+   mkCompoundAdj : Adjective -> Adjective -> Adjective ;
+   mkCompoundAdj adj1 adj2 = {s = \\n,g,c,d => adj1.s ! n ! g ! c ! d ++ adj2.s ! n ! g ! c ! d} ;
 	
    Verb : Type = {s : VerbForm => Str} ;
 
diff --git a/lib/src/hindustani/ExtraHindustani.gf b/lib/src/hindustani/ExtraHindustani.gf
--- a/lib/src/hindustani/ExtraHindustani.gf
+++ b/lib/src/hindustani/ExtraHindustani.gf
@@ -3,10 +3,17 @@
 incomplete concrete ExtraHindustani of ExtraHindustaniAbs = CatHindustani ** 
    open CommonHindustani,Coordination,ResHindustani, ParamX in {
   lin
-    GenNP np = {s = \\_,_,_ => np.s ! NPC Obl ++ "ka" ; a = np.a} ;
+--    GenNP np = {s = \\_,_,_ => np.s ! NPC Obl ++ "ka" ; a = np.a} ;
+   GenNP np = {s = \\n,g,c => 
+     case <n,g,c> of {
+     <_,Masc,_> => np.s ! NPC Obl ++ "ka" ;
+     <_,Fem,_> => np.s ! NPC Obl ++ "ky"
+     };
+     
+   a = np.a} ;
 
     each_Det = mkDet  "hr kwy" "hr kwy" "hr kwy" "hr kwy" Sg ;
-    have_V = mkV "rakh-na";
+    have_V = mkV "rakh'na";
     IAdvAdv adv = {s = "ktny" ++ adv.s} ;
     ICompAP ap = {s = "ktnE" ++ ap.s ! Sg ! Masc ! Dir ! Posit} ;
     cost_V = mkV "qymt" ;
diff --git a/lib/src/hindustani/NounHindustani.gf b/lib/src/hindustani/NounHindustani.gf
--- a/lib/src/hindustani/NounHindustani.gf
+++ b/lib/src/hindustani/NounHindustani.gf
@@ -36,13 +36,13 @@
 
     DetQuantOrd quant num ord = {
 --      s = \\ c => detquant2det quant.s num.s c  ++ ord.s ; 
-        s = \\n,g => quant.s!n!g!Dir ++ num.s ++ ord.s ;
+        s = \\n,g,c => quant.s!n!g!c ++ num.s ++ ord.s ;
       n = num.n
       } ;
 
     DetQuant quant num = {
 --      s = \\c => detquant2det quant.s num.s c; 
-        s = \\n,g => quant.s!n!g!Dir ++ num.s;
+        s = \\n,g,c => quant.s!n!g!c ++ num.s;
 	  n = num.n
       } ;
 
@@ -51,7 +51,12 @@
       a = agrP3 Masc Sg
       } ;
 
-    PossPron p = {s = \\_,_,_ => p.ps ; a = p.a} ;
+--    PossPron p = {s = \\n,g,_ => p.ps ! n ! g ; a = p.a} ;
+    PossPron p = {s = \\n,g,c =>  case c of {
+                                   Obl => p.ps ! Pl ! g ;
+				   _   => p.ps ! n ! g
+				   };
+		  a = p.a} ;
 
     NumSg = {s = []; n = Sg} ;
     NumPl = {s = []; n = Pl} ;
@@ -81,7 +86,7 @@
       } ;
 
     DefArt = {s = \\_,_,_ => [] ; a = defaultAgr} ;
-    IndefArt = {s = \\_,_,_ => [] ; a =defaultAgr } ;
+    IndefArt = {s = \\n,_,_ => case n of {Sg => indfArt ; Pl => []} ; a =defaultAgr } ;
 
     MassNP cn = {s = \\c => toNP (cn.s ! Sg) c ; a = agrP3 cn.g Sg} ;
 
diff --git a/lib/src/hindustani/ResHindustani.gf b/lib/src/hindustani/ResHindustani.gf
--- a/lib/src/hindustani/ResHindustani.gf
+++ b/lib/src/hindustani/ResHindustani.gf
@@ -44,7 +44,7 @@
     Preposition = {s : Gender => Str};
     DemPronForm = {s : Number => Gender => Case => Str};
     PossPronForm = {s : Number => Gender => Case => Str};
-    Determiner = {s : Number => Gender => Str ; n : Number};
+    Determiner = {s : Number => Gender => Case => Str ; n : Number};
   
 -- a useful oper
     eq : Str -> Str -> Bool = \s1,s2-> (pbool2bool (eqStr s1 s2)) ; 
@@ -63,14 +63,15 @@
       NPErg => pn !  Obl ++ "nE"
       } ;
   detcn2NP : (Determiner) -> Noun -> NPCase -> Number -> Str = \dt,cn,npc,nn -> case npc of {
-       NPC c => dt.s ! Sg ! Masc ++ cn.s ! nn ! c ;
-       NPObj => dt.s ! Sg ! Masc ++ cn.s ! nn ! Dir ;
-       NPErg => dt.s ! Sg ! Masc ++ cn.s ! nn ! Obl ++ "nE"
+--       NPC c => dt.s ! Sg ! Masc ++ cn.s ! nn ! c ; --changed while phrasebook e.g tyry beti where gender of determiner 'tyry' should be dependent on gender of common noum e.g 'beti' 
+       NPC c => dt.s ! nn ! cn.g ! c ++ cn.s ! nn ! c ;
+       NPObj => dt.s ! nn ! cn.g ! Obl ++ cn.s ! nn ! Dir ; 
+       NPErg => dt.s ! nn ! cn.g ! Obl ++ cn.s ! nn ! Obl ++ "nE"
       } ;  
   det2NP : (Determiner) -> NPCase -> Str = \dt,npc -> case npc of {
-       NPC c => dt.s ! Sg ! Masc ;
-       NPObj => dt.s ! Sg ! Masc ;
-       NPErg => dt.s ! Sg  ! Masc ++ "nE"
+       NPC c => dt.s ! Sg ! Masc ! c ;
+       NPObj => dt.s ! Sg ! Masc ! Dir ;
+       NPErg => dt.s ! Sg  ! Masc ! Obl ++ "nE"
       } ;    
 	  
 ------------------------------------------
diff --git a/lib/src/hindustani/SentenceHindustani.gf b/lib/src/hindustani/SentenceHindustani.gf
--- a/lib/src/hindustani/SentenceHindustani.gf
+++ b/lib/src/hindustani/SentenceHindustani.gf
@@ -98,6 +98,7 @@
     } ;
 
     AdvS a s = {s = a.s ! Masc ++ s.s} ;
+    ExtAdvS a s = {s = a.s ! Masc ++ "," ++ s.s} ;
 
     RelS s r = {s = s.s ++ r.s ! agrP3 Masc Sg} ;
     SSubjS s sj s = { s = s.s ++ sj.s ++ s.s};
diff --git a/lib/src/hindustani/StringsHindustani.gf b/lib/src/hindustani/StringsHindustani.gf
--- a/lib/src/hindustani/StringsHindustani.gf
+++ b/lib/src/hindustani/StringsHindustani.gf
@@ -16,5 +16,6 @@
   waN = "waN" ;
 
   comma = "," ;
+  indfArt = "ayk" ;
 
 }
diff --git a/lib/src/hindustani/SymbolHindustani.gf b/lib/src/hindustani/SymbolHindustani.gf
--- a/lib/src/hindustani/SymbolHindustani.gf
+++ b/lib/src/hindustani/SymbolHindustani.gf
@@ -15,7 +15,7 @@
     a = agrP3 cn.g Sg
     } ;
   CNSymbNP det cn xs = {
-    s = \\c => det.s!Sg!Masc ++ cn.s ! det.n ! Dir ++  xs.s ; 
+    s = \\c => det.s ! det.n ! Masc ! Dir ++ cn.s ! det.n ! Dir ++  xs.s ;  -- may be need to refine it i.e instead of using \\c should use table and then corresponding forms from det 
     a = agrP3 cn.g det.n
     } ;
   CNNumNP cn i = {
diff --git a/lib/src/italian/DiffIta.gf b/lib/src/italian/DiffIta.gf
--- a/lib/src/italian/DiffIta.gf
+++ b/lib/src/italian/DiffIta.gf
@@ -62,9 +62,9 @@
       _ => prepCase c ++ artDef g Sg (CPrep P_di)
       } ;
 
-    conjunctCase : NPForm -> NPForm = \c -> case c of {
-      Ton Nom | Aton Nom => Ton Nom ;
-      _ => Ton Acc 
+    conjunctCase : Case -> Case = \c -> case c of {
+      Nom => Nom ;
+      _ => Acc 
       } ;
 
     auxVerb : VType -> (VF => Str) = \vtyp -> case vtyp of {
diff --git a/lib/src/latvian/AdjectiveLav.gf b/lib/src/latvian/AdjectiveLav.gf
new file mode 100644
--- /dev/null
+++ b/lib/src/latvian/AdjectiveLav.gf
@@ -0,0 +1,53 @@
+concrete AdjectiveLav of Adjective = CatLav ** open ResLav, Prelude in {
+{-
+  lin
+
+    PositA  a = {
+      s = \\_ => a.s ! AAdj Posit Nom ;
+      isPre = True
+      } ;
+    ComparA a np = {
+      s = \\_ => a.s ! AAdj Compar Nom ++ "than" ++ np.s ! Nom ; 
+      isPre = False
+      } ;
+    UseComparA a = {
+      s = \\_ => a.s ! AAdj Compar Nom ; 
+      isPre = True
+      } ;
+
+    AdjOrd ord = {
+      s = \\_ => ord.s ! Nom ;
+      isPre = True
+      } ;
+
+    CAdvAP ad ap np = {
+      s = \\a => ad.s ++ ap.s ! a ++ ad.p ++ np.s ! Nom ; 
+      isPre = False
+      } ;
+
+    ComplA2 a np = {
+      s = \\_ => a.s ! AAdj Posit Nom ++ a.c2 ++ np.s ! Acc ; 
+      isPre = False
+      } ;
+
+    ReflA2 a = {
+      s = \\ag => a.s ! AAdj Posit Nom ++ a.c2 ++ reflPron ! ag ; 
+      isPre = False
+      } ;
+
+    SentAP ap sc = {
+      s = \\a => ap.s ! a ++ sc.s ; 
+      isPre = False
+      } ;
+
+    AdAP ada ap = {
+      s = \\a => ada.s ++ ap.s ! a ;
+      isPre = ap.isPre
+      } ;
+
+    UseA2 a = {
+      s = \\_ => a.s ! AAdj Posit Nom ;
+      isPre = True
+      } ;
+-}
+}
diff --git a/lib/src/latvian/AdverbLav.gf b/lib/src/latvian/AdverbLav.gf
new file mode 100644
--- /dev/null
+++ b/lib/src/latvian/AdverbLav.gf
@@ -0,0 +1,20 @@
+concrete AdverbLav of Adverb = CatLav ** open ResLav, Prelude in {
+{-
+  lin
+    PositAdvAdj a = {s = a.s ! AAdv} ;
+    ComparAdvAdj cadv a np = {
+      s = cadv.s ++ a.s ! AAdv ++ cadv.p ++ np.s ! Nom
+      } ;
+    ComparAdvAdjS cadv a s = {
+      s = cadv.s ++ a.s ! AAdv ++ cadv.p ++ s.s
+      } ;
+
+    PrepNP prep np = {s = prep.s ++ np.s ! Acc} ;
+
+    AdAdv = cc2 ;
+
+    SubjS = cc2 ;
+
+    AdnCAdv cadv = {s = cadv.s ++ cadv.p} ;
+-}
+}
diff --git a/lib/src/latvian/AllLav.gf b/lib/src/latvian/AllLav.gf
new file mode 100644
--- /dev/null
+++ b/lib/src/latvian/AllLav.gf
@@ -0,0 +1,9 @@
+--# -path=.:../abstract:../common:prelude
+
+concrete AllLav of AllLavAbs = 
+  LangLav,
+{-  IrregLav-[
+    blow_V,burn_V,come_V,dig_V,fall_V,fly_V,freeze_V,go_V,lie_V,run_V,
+    sew_V,sing_V,sit_V,sleep_V,spit_V,stand_V,swell_V,swim_V,think_V],  -}
+  ExtraLav
+  ** {} ;
diff --git a/lib/src/latvian/AllLavAbs.gf b/lib/src/latvian/AllLavAbs.gf
new file mode 100644
--- /dev/null
+++ b/lib/src/latvian/AllLavAbs.gf
@@ -0,0 +1,9 @@
+--# -path=.:../abstract:../common:prelude
+
+abstract AllLavAbs = 
+  Lang,
+{-  IrregLavAbs-[
+    blow_V,burn_V,come_V,dig_V,fall_V,fly_V,freeze_V,go_V,lie_V,run_V,
+    sew_V,sing_V,sit_V,sleep_V,spit_V,stand_V,swell_V,swim_V,think_V], -}
+  ExtraLavAbs
+  ** {} ;
diff --git a/lib/src/latvian/CatLav.gf b/lib/src/latvian/CatLav.gf
new file mode 100644
--- /dev/null
+++ b/lib/src/latvian/CatLav.gf
@@ -0,0 +1,104 @@
+concrete CatLav of Cat = CommonX ** open ResLav, Prelude in {
+
+  flags optimize=all_subs ;
+
+  lincat
+	N = {s : Number => Case => Str ; g : Gender} ;
+	A = {s : Degree => Definite => Gender => Number => Case => Str} ;
+	V = {s : Polarity => VerbForm => Str} ;
+	V2 = V ; 		-- ** {c : ResLav.Case} - valence
+	
+	
+	Cl = {s : VerbMood => Polarity => Str} ;
+	
+    CN  = {s : Definite => Number => Case => Str ; g : Gender} ;
+    Det = {s : Gender => Case => Str ; n : Number ; d: Definite} ;	
+    NP = {s : Case => Str ; g : Gender ; n : Number; p : Person} ;
+    VP = {v : V ; obj : ResLav.Agr => Str} ;
+--TODO - arî Quant jâpieliek    
+	
+{-  
+-- Tensed/Untensed
+
+    S  = {s : Str} ;
+    QS = {s : QForm => Str} ;
+    RS = {s : Agr => Str ; c : Case} ; -- c for it clefts
+    SSlash = {s : Str ; c2 : Str} ;
+
+-- Sentence
+
+    Cl = {s : ResEng.Tense => Anteriority => CPolarity => Order => Str} ;
+    ClSlash = {
+      s : ResEng.Tense => Anteriority => CPolarity => Order => Str ;
+      c2 : Str
+      } ;
+    Imp = {s : CPolarity => ImpForm => Str} ;
+
+-- Question
+
+    QCl = {s : ResEng.Tense => Anteriority => CPolarity => QForm => Str} ;
+    IP = {s : Case => Str ; n : Number} ;
+    IComp = {s : Str} ;    
+    IDet = {s : Str ; n : Number} ;
+    IQuant = {s : Number => Str} ;
+
+-- Relative
+
+    RCl = {
+      s : ResEng.Tense => Anteriority => CPolarity => Agr => Str ; 
+      c : Case
+      } ;
+    RP = {s : RCase => Str ; a : RAgr} ;
+
+-- Verb
+
+    VP = ResEng.VP ;
+    VPSlash = ResEng.VP ** {c2 : Str} ;
+    Comp = {s : Agr => Str} ; 
+
+-- Adjective
+
+    AP = {s : Agr => Str ; isPre : Bool} ; 
+
+-- Noun
+
+    CN = {s : Number => Case => Str ; g : Gender} ;
+    NP = {s : Case => Str ; a : Agr} ;
+    Pron = {s : Case => Str ; sp : Case => Str ; a : Agr} ;
+    Det = {s : Str ; sp : Case => Str ; n : Number} ;
+    Predet = {s : Str} ;
+    Ord = { s : Case => Str } ;
+    Num  = {s : Case => Str ; n : Number ; hasCard : Bool} ;
+    Card = {s : Case => Str ; n : Number} ;
+    Quant = {s : Bool => Number => Str ; sp : Bool => Number => Case => Str} ;
+
+-- Numeral
+
+    Numeral = {s : CardOrd => Case => Str ; n : Number} ;
+    Digits  = {s : CardOrd => Case => Str ; n : Number ; tail : DTail} ;
+
+-- Structural
+
+    Conj = {s1,s2 : Str ; n : Number} ;
+---b    Conj = {s : Str ; n : Number} ;
+---b    DConj = {s1,s2 : Str ; n : Number} ;
+    Subj = {s : Str} ;
+    Prep = {s : Str} ;
+
+-- Open lexical classes, e.g. Lexicon
+
+    V, VS, VQ, VA = Verb ; -- = {s : VForm => Str} ;
+    V2, V2A, V2Q, V2S = Verb ** {c2 : Str} ;
+    V3 = Verb ** {c2, c3 : Str} ;
+    VV = {s : VVForm => Str ; isAux : Bool} ;
+    V2V = Verb ** {c2 : Str ; isAux : Bool} ;
+
+    A = {s : AForm => Str} ;
+    A2 = {s : AForm => Str ; c2 : Str} ;
+
+    N = {s : Number => Case => Str ; g : Gender} ;
+    N2 = {s : Number => Case => Str ; g : Gender} ** {c2 : Str} ;
+    N3 = {s : Number => Case => Str ; g : Gender} ** {c2,c3 : Str} ;
+    PN = {s : Case => Str ; g : Gender} ;
+-}
+}
diff --git a/lib/src/latvian/ConjunctionLav.gf b/lib/src/latvian/ConjunctionLav.gf
new file mode 100644
--- /dev/null
+++ b/lib/src/latvian/ConjunctionLav.gf
@@ -0,0 +1,44 @@
+concrete ConjunctionLav of Conjunction = 
+  CatLav ** open ResLav, Coordination, Prelude in {
+{-
+  flags optimize=all_subs ;
+
+  lin
+
+    ConjS = conjunctDistrSS ;
+
+    ConjAdv = conjunctDistrSS ;
+
+    ConjNP conj ss = conjunctDistrTable Case conj ss ** {
+      a = conjAgr (agrP3 conj.n) ss.a
+      } ;
+
+    ConjAP conj ss = conjunctDistrTable Agr conj ss ** {
+      isPre = ss.isPre
+      } ;
+
+    ConjRS conj ss = conjunctDistrTable Agr conj ss ** {
+      c = ss.c
+      } ;
+
+-- These fun's are generated from the list cat's.
+
+    BaseS = twoSS ;
+    ConsS = consrSS comma ;
+    BaseAdv = twoSS ;
+    ConsAdv = consrSS comma ;
+    BaseNP x y = twoTable Case x y ** {a = conjAgr x.a y.a} ;
+    ConsNP xs x = consrTable Case comma xs x ** {a = conjAgr xs.a x.a} ;
+    BaseAP x y = twoTable Agr x y ** {isPre = andB x.isPre y.isPre} ;
+    ConsAP xs x = consrTable Agr comma xs x ** {isPre = andB xs.isPre x.isPre} ;
+    BaseRS x y = twoTable Agr x y ** {c = y.c} ;
+    ConsRS xs x = consrTable Agr comma xs x ** {c = xs.c} ;
+
+  lincat
+    [S] = {s1,s2 : Str} ;
+    [Adv] = {s1,s2 : Str} ;
+    [NP] = {s1,s2 : Case => Str ; a : Agr} ;
+    [AP] = {s1,s2 : Agr => Str ; isPre : Bool} ;
+    [RS] = {s1,s2 : Agr => Str ; c : Case} ;
+-}
+}
diff --git a/lib/src/latvian/DictLatAbs.gf b/lib/src/latvian/DictLatAbs.gf
new file mode 100644
--- /dev/null
+++ b/lib/src/latvian/DictLatAbs.gf
@@ -0,0 +1,43786 @@
+-- English lexicon for GF, produced from:
+-- Oxford advanced learner's dictionary of current English:
+--    expanded 'computer usable' version compiled by Roger Mitton
+-- The computer usable version is transcribed from:
+--   Oxford advanced learner's dictionary of current English
+--   A.S. Hornby ; with the assistance of A.P. Cowie [and] J. Windsor Lewis.
+--   3rd. ed., London : Oxford University Press, 1974.
+-- Distributed as 'dict0710' by:
+--   Oxford Text Archive
+--   Oxford University Computing Services
+--   13 Banbury Road
+--   Oxford
+--   OX2 6NN
+-- Under these conditions:
+--   Freely available for non-commercial use provided that this header is
+--   included in its entirety with any copy distributed.
+--
+-- GF version generated by asc2gf, Bjorn Bringert Nov 2008
+--    based on asc2lex, Matthew Purver Nov 2001
+--    http://www.stanford.edu/~mpurver/software.html
+
+abstract DictLavAbs = Cat ** {
+{-
+fun a_bomb_N : N;
+fun a_fortiori_Adv : Adv;
+fun a_level_N : N;
+fun a_posteriori_A : A;
+fun a_posteriori_Adv : Adv;
+fun a_priori_A : A;
+fun a_priori_Adv : Adv;
+fun aa_N : N;
+fun aachen_PN : PN;
+fun aarhus_PN : PN;
+fun ab_initio_Adv : Adv;
+fun aback_Adv : Adv;
+fun abacus_N : N;
+fun abaft_Adv : Adv;
+fun abandon_N : N;
+fun abandon_V2 : V2;
+fun abandoned_A : A;
+fun abandonment_N : N;
+fun abase_V2 : V2;
+fun abasement_N : N;
+fun abash_V2 : V2;
+fun abate_V : V;
+fun abate_V2 : V2;
+fun abatement_N : N;
+fun abattoir_N : N;
+fun abbess_N : N;
+fun abbey_N : N;
+fun abbot_N : N;
+fun abbreviate_V2 : V2;
+fun abbreviation_N : N;
+fun abbe_N : N;
+fun abc_N : N;
+fun abcs_N : N;
+fun abdicate_V : V;
+fun abdicate_V2 : V2;
+fun abdication_N : N;
+fun abdomen_N : N;
+fun abdominal_A : A;
+fun abduct_V2 : V2;
+fun abduction_N : N;
+fun abe_PN : PN;
+fun abeam_Adv : Adv;
+fun abed_Adv : Adv;
+fun abercarn_PN : PN;
+fun aberdare_PN : PN;
+fun aberdeen_PN : PN;
+fun abergavenny_PN : PN;
+fun abergele_PN : PN;
+fun aberrant_A : A;
+fun aberration_N : N;
+fun abertillery_PN : PN;
+fun aberystwyth_PN : PN;
+fun abet_V2 : V2;
+fun abeyance_N : N;
+fun abhor_V2 : V2;
+fun abhorrence_N : N;
+fun abhorrent_A : A;
+fun abide_V : V;
+fun abide_V2 : V2;
+fun abiding_A : A;
+fun ability_N : N;
+fun abingdon_PN : PN;
+fun abject_A : A;
+fun abjection_N : N;
+fun abjectly_Adv : Adv;
+fun abjuration_N : N;
+fun abjure_V2 : V2;
+fun ablative_A : A;
+fun ablative_N : N;
+fun ablaut_N : N;
+fun ablaze_A : A;
+fun ablaze_Adv : Adv;
+fun able_A : A;
+fun able_bodied_A : A;
+fun ablution_N : N;
+fun ably_Adv : Adv;
+fun abnegation_N : N;
+fun abnormal_A : A;
+fun abnormality_N : N;
+fun abnormally_Adv : Adv;
+fun abo_N : N;
+fun aboard_Adv : Adv;
+fun abode_N : N;
+fun abolish_V2 : V2;
+fun abolition_N : N;
+fun abolitionist_N : N;
+fun abominable_A : A;
+fun abominably_Adv : Adv;
+fun abominate_V2 : V2;
+fun abomination_N : N;
+fun aboriginal_A : A;
+fun aboriginal_N : N;
+fun aborigine_N : N;
+fun abort_V : V;
+fun abort_V2 : V2;
+fun abortion_N : N;
+fun abortionist_N : N;
+fun abortive_A : A;
+fun abortively_Adv : Adv;
+fun abound_V : V;
+fun about_Adv : Adv;
+fun about_face_N : N;
+fun about_face_V : V;
+fun above_Adv : Adv;
+fun above_board_A : A;
+fun above_board_Adv : Adv;
+fun above_mentioned_A : A;
+fun above_named_A : A;
+fun abracadabra_N : N;
+fun abrade_V2 : V2;
+fun abraham_PN : PN;
+fun abrasion_N : N;
+fun abrasive_A : A;
+fun abrasive_N : N;
+fun abreast_Adv : Adv;
+fun abridge_V2 : V2;
+fun abridgement_N : N;
+fun abridgment_N : N;
+fun abroad_Adv : Adv;
+fun abrogate_V2 : V2;
+fun abrogation_N : N;
+fun abrupt_A : A;
+fun abruptly_Adv : Adv;
+fun abruptness_N : N;
+fun abscess_N : N;
+fun abscond_V : V;
+fun absence_N : N;
+fun absent_A : A;
+fun absent_V2 : V2;
+fun absent_minded_A : A;
+fun absent_mindedly_Adv : Adv;
+fun absent_mindedness_N : N;
+fun absentee_N : N;
+fun absenteeism_N : N;
+fun absently_Adv : Adv;
+fun absinth_N : N;
+fun absinthe_N : N;
+fun absolute_A : A;
+fun absolutely_Adv : Adv;
+fun absolution_N : N;
+fun absolutism_N : N;
+fun absolve_V2 : V2;
+fun absorb_V2 : V2;
+fun absorbent_A : A;
+fun absorbent_N : N;
+fun absorption_N : N;
+fun abstain_V : V;
+fun abstainer_N : N;
+fun abstemious_A : A;
+fun abstemiously_Adv : Adv;
+fun abstemiousness_N : N;
+fun abstention_N : N;
+fun abstinence_N : N;
+fun abstract_A : A;
+fun abstract_N : N;
+fun abstract_V2 : V2;
+fun abstracted_A : A;
+fun abstractedly_Adv : Adv;
+fun abstraction_N : N;
+fun abstruse_A : A;
+fun abstrusely_Adv : Adv;
+fun abstruseness_N : N;
+fun absurd_A : A;
+fun absurdity_N : N;
+fun absurdly_Adv : Adv;
+fun abundance_N : N;
+fun abundant_A : A;
+fun abundantly_Adv : Adv;
+fun abuse_N : N;
+fun abuse_V2 : V2;
+fun abusive_A : A;
+fun abusively_Adv : Adv;
+fun abut_V : V;
+fun abutment_N : N;
+fun abysm_N : N;
+fun abysmal_A : A;
+fun abysmally_Adv : Adv;
+fun abyss_N : N;
+fun acacia_N : N;
+fun academic_A : A;
+fun academic_N : N;
+fun academically_Adv : Adv;
+fun academician_N : N;
+fun academy_N : N;
+fun accede_V : V;
+fun accelerando_A : A;
+fun accelerando_Adv : Adv;
+fun accelerando_N : N;
+fun accelerate_V : V;
+fun accelerate_V2 : V2;
+fun acceleration_N : N;
+fun accelerator_N : N;
+fun accent_N : N;
+fun accent_V2 : V2;
+fun accentuate_V2 : V2;
+fun accentuation_N : N;
+fun accept_V : V;
+fun accept_V2 : V2;
+fun acceptability_N : N;
+fun acceptable_A : A;
+fun acceptably_Adv : Adv;
+fun acceptance_N : N;
+fun acceptation_N : N;
+fun access_N : N;
+fun accessary_N : N;
+fun accessibility_N : N;
+fun accessible_A : A;
+fun accession_N : N;
+fun accessory_N : N;
+fun accidence_N : N;
+fun accident_N : N;
+fun accident_prone_A : A;
+fun accidental_A : A;
+fun accidentally_Adv : Adv;
+fun acclaim_N : N;
+fun acclaim_V2 : V2;
+fun acclamation_N : N;
+fun acclimate_V : V;
+fun acclimate_V2 : V2;
+fun acclimation_N : N;
+fun acclimatization_N : N;
+fun acclimatize_V : V;
+fun acclimatize_V2 : V2;
+fun acclivity_N : N;
+fun accolade_N : N;
+fun accommodate_V2 : V2;
+fun accommodating_A : A;
+fun accommodation_N : N;
+fun accompaniment_N : N;
+fun accompanist_N : N;
+fun accompany_V2 : V2;
+fun accomplice_N : N;
+fun accomplish_V2 : V2;
+fun accomplished_A : A;
+fun accomplishment_N : N;
+fun accord_N : N;
+fun accord_V : V;
+fun accord_V2 : V2;
+fun accordance_N : N;
+fun accordingly_Adv : Adv;
+fun accordion_N : N;
+fun accost_V2 : V2;
+fun accouchement_N : N;
+fun account_N : N;
+fun account_V : V;
+fun account_V2 : V2;
+fun accountable_A : A;
+fun accountancy_N : N;
+fun accountant_N : N;
+fun accra_PN : PN;
+fun accredit_V2 : V2;
+fun accredited_A : A;
+fun accretion_N : N;
+fun accrington_PN : PN;
+fun accrue_V : V;
+fun accumulate_V : V;
+fun accumulate_V2 : V2;
+fun accumulation_N : N;
+fun accumulative_A : A;
+fun accumulator_N : N;
+fun accuracy_N : N;
+fun accurate_A : A;
+fun accurately_Adv : Adv;
+fun accursed_A : A;
+fun accurst_A : A;
+fun accusation_N : N;
+fun accusative_A : A;
+fun accusative_N : N;
+fun accuse_V2 : V2;
+fun accuser_N : N;
+fun accusingly_Adv : Adv;
+fun accustom_V2 : V2;
+fun accustomed_A : A;
+fun ace_N : N;
+fun acerbity_N : N;
+fun acetate_N : N;
+fun acetic_A : A;
+fun acetylene_N : N;
+fun ache_N : N;
+fun ache_V : V;
+fun achievable_A : A;
+fun achieve_V2 : V2;
+fun achievement_N : N;
+fun achilles_PN : PN;
+fun acid_A : A;
+fun acid_N : N;
+fun acidic_A : A;
+fun acidify_V : V;
+fun acidify_V2 : V2;
+fun acidity_N : N;
+fun acidulated_A : A;
+fun acidulous_A : A;
+fun ack_ack_N : N;
+fun acknowledge_V2 : V2;
+fun acknowledgement_N : N;
+fun acme_N : N;
+fun acne_N : N;
+fun acolyte_N : N;
+fun aconite_N : N;
+fun acorn_N : N;
+fun acorn_cup_N : N;
+fun acoustic_A : A;
+fun acoustic_N : N;
+fun acoustics_N : N;
+fun acquaint_V2 : V2;
+fun acquaintance_N : N;
+fun acquaintanceship_N : N;
+fun acquiesce_V : V;
+fun acquiescence_N : N;
+fun acquiescent_A : A;
+fun acquire_V2 : V2;
+fun acquirement_N : N;
+fun acquisition_N : N;
+fun acquisitive_A : A;
+fun acquit_V2 : V2;
+fun acquittal_N : N;
+fun acre_N : N;
+fun acreage_N : N;
+fun acrid_A : A;
+fun acrimonious_A : A;
+fun acrimony_N : N;
+fun acrobat_N : N;
+fun acrobatic_A : A;
+fun acrobatics_N : N;
+fun acronym_N : N;
+fun acropolis_N : N;
+fun across_Adv : Adv;
+fun acrostic_N : N;
+fun acrylic_N : N;
+fun act_N : N;
+fun act_V : V;
+fun act_V2 : V2;
+fun acting_A : A;
+fun acting_N : N;
+fun actinic_A : A;
+fun actinism_N : N;
+fun action_N : N;
+fun actionable_A : A;
+fun activate_V2 : V2;
+fun activation_N : N;
+fun active_A : A;
+fun actively_Adv : Adv;
+fun activist_N : N;
+fun activity_N : N;
+fun actor_N : N;
+fun actress_N : N;
+fun actual_A : A;
+fun actuality_N : N;
+fun actually_Adv : Adv;
+fun actuarial_A : A;
+fun actuary_N : N;
+fun actuate_V2 : V2;
+fun acuity_N : N;
+fun acumen_N : N;
+fun acupuncture_N : N;
+fun acute_A : A;
+fun acutely_Adv : Adv;
+fun acuteness_N : N;
+fun ad_N : N;
+fun ad_PN : PN;
+fun ad_hoc_A : A;
+fun ad_hoc_Adv : Adv;
+fun ad_infinitum_Adv : Adv;
+fun ad_interim_Adv : Adv;
+fun ad_lib_A : A;
+fun ad_lib_Adv : Adv;
+fun ad_lib_V : V;
+fun ad_libitum_Adv : Adv;
+fun ad_man_N : N;
+fun ad_nauseam_Adv : Adv;
+fun ad_valorem_Adv : Adv;
+fun ada_PN : PN;
+fun adage_N : N;
+fun adagio_A : A;
+fun adagio_Adv : Adv;
+fun adagio_N : N;
+fun adam_PN : PN;
+fun adamant_A : A;
+fun adamant_N : N;
+fun adamantine_A : A;
+fun adapt_V2 : V2;
+fun adaptability_N : N;
+fun adaptable_A : A;
+fun adaptation_N : N;
+fun adapter_N : N;
+fun adaptor_N : N;
+fun add_V : V;
+fun add_V2 : V2;
+fun addendum_N : N;
+fun adder_N : N;
+fun addict_N : N;
+fun addict_V2 : V2;
+fun addiction_N : N;
+fun addictive_A : A;
+fun adding_machine_N : N;
+fun addis_ababa_PN : PN;
+fun addition_N : N;
+fun additional_A : A;
+fun additionally_Adv : Adv;
+fun additive_N : N;
+fun addle_A : A;
+fun addle_V : V;
+fun addle_V2 : V2;
+fun addle_brained_A : A;
+fun addle_head_N : N;
+fun addle_pated_A : A;
+fun address_N : N;
+fun address_V2 : V2;
+fun addressee_N : N;
+fun addressograph_N : N;
+fun adduce_V2 : V2;
+fun adelaide_PN : PN;
+fun adenoidal_A : A;
+fun adept_A : A;
+fun adept_N : N;
+fun adequacy_N : N;
+fun adequate_A : A;
+fun adequately_Adv : Adv;
+fun adhere_V : V;
+fun adherence_N : N;
+fun adherent_N : N;
+fun adhesion_N : N;
+fun adhesive_A : A;
+fun adhesive_N : N;
+fun adieu_N : N;
+fun adipose_A : A;
+fun adjacent_A : A;
+fun adjectival_A : A;
+fun adjective_N : N;
+fun adjoin_V : V;
+fun adjoin_V2 : V2;
+fun adjoining_A : A;
+fun adjourn_V : V;
+fun adjourn_V2 : V2;
+fun adjournment_N : N;
+fun adjudge_V2 : V2;
+fun adjudicate_V : V;
+fun adjudicate_V2 : V2;
+fun adjudication_N : N;
+fun adjudicator_N : N;
+fun adjunct_N : N;
+fun adjuration_N : N;
+fun adjure_V2 : V2;
+fun adjust_V2 : V2;
+fun adjustable_A : A;
+fun adjuster_N : N;
+fun adjustment_N : N;
+fun adjutant_N : N;
+fun admass_N : N;
+fun administer_V : V;
+fun administer_V2 : V2;
+fun administration_N : N;
+fun administrative_A : A;
+fun administratively_Adv : Adv;
+fun administrator_N : N;
+fun admirable_A : A;
+fun admirably_Adv : Adv;
+fun admiral_N : N;
+fun admiralty_N : N;
+fun admiration_N : N;
+fun admire_V2 : V2;
+fun admirer_N : N;
+fun admiring_A : A;
+fun admiringly_Adv : Adv;
+fun admissibility_N : N;
+fun admissible_A : A;
+fun admission_N : N;
+fun admit_V : V;
+fun admit_V2 : V2;
+fun admittance_N : N;
+fun admittedly_Adv : Adv;
+fun admix_V : V;
+fun admix_V2 : V2;
+fun admixture_N : N;
+fun admonish_V2 : V2;
+fun admonition_N : N;
+fun admonitory_A : A;
+fun ado_N : N;
+fun adobe_N : N;
+fun adolescence_N : N;
+fun adolescent_A : A;
+fun adolescent_N : N;
+fun adopt_V2 : V2;
+fun adoption_N : N;
+fun adoptive_A : A;
+fun adorable_A : A;
+fun adorably_Adv : Adv;
+fun adoration_N : N;
+fun adore_V2 : V2;
+fun adorer_N : N;
+fun adoring_A : A;
+fun adoringly_Adv : Adv;
+fun adorn_V2 : V2;
+fun adornment_N : N;
+fun adrenal_A : A;
+fun adrenalin_N : N;
+fun adrian_PN : PN;
+fun adrift_A : A;
+fun adrift_Adv : Adv;
+fun adroit_A : A;
+fun adroitly_Adv : Adv;
+fun adroitness_N : N;
+fun adulation_N : N;
+fun adult_A : A;
+fun adult_N : N;
+fun adulterant_N : N;
+fun adulterate_V2 : V2;
+fun adulteration_N : N;
+fun adulterer_N : N;
+fun adulteress_N : N;
+fun adulterous_A : A;
+fun adultery_N : N;
+fun adulthood_N : N;
+fun adumbrate_V2 : V2;
+fun advance_N : N;
+fun advance_V : V;
+fun advance_V2 : V2;
+fun advanced_A : A;
+fun advancement_N : N;
+fun advantage_N : N;
+fun advantage_V2 : V2;
+fun advantageous_A : A;
+fun advantageously_Adv : Adv;
+fun advent_N : N;
+fun adventist_N : N;
+fun adventitious_A : A;
+fun adventure_N : N;
+fun adventure_V2 : V2;
+fun adventurer_N : N;
+fun adventuresome_A : A;
+fun adventuress_N : N;
+fun adventurous_A : A;
+fun adverb_N : N;
+fun adverbial_A : A;
+fun adverbially_Adv : Adv;
+fun adversary_N : N;
+fun adverse_A : A;
+fun adversely_Adv : Adv;
+fun adversity_N : N;
+fun advert_N : N;
+fun advert_V : V;
+fun advertise_V : V;
+fun advertise_V2 : V2;
+fun advertisement_N : N;
+fun advertiser_N : N;
+fun advice_N : N;
+fun advisability_N : N;
+fun advisable_A : A;
+fun advise_V : V;
+fun advise_V2 : V2;
+fun advised_A : A;
+fun advisedly_Adv : Adv;
+fun adviser_N : N;
+fun advisory_A : A;
+fun advocacy_N : N;
+fun advocate_N : N;
+fun advocate_V2 : V2;
+fun advowson_N : N;
+fun adz_N : N;
+fun adze_N : N;
+fun aegis_N : N;
+fun aeon_N : N;
+fun aerate_V2 : V2;
+fun aeration_N : N;
+fun aerial_A : A;
+fun aerial_N : N;
+fun aerie_N : N;
+fun aerobatics_N : N;
+fun aerodrome_N : N;
+fun aerodynamic_A : A;
+fun aerodynamics_N : N;
+fun aeronaut_N : N;
+fun aeronautics_N : N;
+fun aeroplane_N : N;
+fun aerosol_N : N;
+fun aerospace_N : N;
+fun aertex_N : N;
+fun aery_N : N;
+fun aesthete_N : N;
+fun aesthetic_A : A;
+fun aesthetic_N : N;
+fun aesthetical_A : A;
+fun aesthetically_Adv : Adv;
+fun aesthetics_N : N;
+fun aether_N : N;
+fun aetiology_N : N;
+fun afar_Adv : Adv;
+fun affability_N : N;
+fun affable_A : A;
+fun affably_Adv : Adv;
+fun affair_N : N;
+fun affect_V2 : V2;
+fun affectation_N : N;
+fun affected_A : A;
+fun affecting_A : A;
+fun affectingly_Adv : Adv;
+fun affection_N : N;
+fun affectionate_A : A;
+fun affectionately_Adv : Adv;
+fun affiance_V2 : V2;
+fun affidavit_N : N;
+fun affiliate_V : V;
+fun affiliate_V2 : V2;
+fun affiliation_N : N;
+fun affinity_N : N;
+fun affirm_V : V;
+fun affirm_V2 : V2;
+fun affirmation_N : N;
+fun affirmative_A : A;
+fun affirmative_N : N;
+fun affix_N : N;
+fun affix_V2 : V2;
+fun afflatus_N : N;
+fun afflict_V2 : V2;
+fun affliction_N : N;
+fun affluence_N : N;
+fun affluent_A : A;
+fun affluent_N : N;
+fun afford_V2 : V2;
+fun afforest_V2 : V2;
+fun afforestation_N : N;
+fun affranchise_V2 : V2;
+fun affray_N : N;
+fun affront_N : N;
+fun affront_V2 : V2;
+fun afghan_A : A;
+fun afghan_N : N;
+fun afghanistan_PN : PN;
+fun afghanistani_A : A;
+fun afghanistani_N : N;
+fun afield_Adv : Adv;
+fun afire_A : A;
+fun aflame_A : A;
+fun afloat_A : A;
+fun afoot_A : A;
+fun afore_Adv : Adv;
+fun aforesaid_A : A;
+fun aforethought_Adv : Adv;
+fun afoul_Adv : Adv;
+fun afraid_A : A;
+fun afresh_Adv : Adv;
+fun africa_PN : PN;
+fun african_A : A;
+fun african_N : N;
+fun afrikaans_N : N;
+fun afrikaner_A : A;
+fun afrikaner_N : N;
+fun afro_american_N : N;
+fun afro_asian_A : A;
+fun afro_wig_N : N;
+fun aft_Adv : Adv;
+fun after_A : A;
+fun after_Adv : Adv;
+fun aftercare_N : N;
+fun afterdamp_N : N;
+fun aftereffect_N : N;
+fun afterglow_N : N;
+fun aftermath_N : N;
+fun afternoon_N : N;
+fun afterthought_N : N;
+fun afterwards_Adv : Adv;
+fun again_Adv : Adv;
+fun agape_A : A;
+fun agar_agar_N : N;
+fun agate_N : N;
+fun agatha_PN : PN;
+fun agave_N : N;
+fun age_N : N;
+fun age_V : V;
+fun age_V2 : V2;
+fun age_bracket_N : N;
+fun age_group_N : N;
+fun age_long_A : A;
+fun age_old_A : A;
+fun aged_A : A;
+fun ageing_N : N;
+fun ageless_A : A;
+fun agency_N : N;
+fun agenda_N : N;
+fun agent_N : N;
+fun agent_provocateur_N : N;
+fun aggie_PN : PN;
+fun agglomerate_A : A;
+fun agglomerate_V : V;
+fun agglomerate_V2 : V2;
+fun agglomeration_N : N;
+fun agglutinate_V2 : V2;
+fun agglutinative_A : A;
+fun aggrandize_V2 : V2;
+fun aggrandizement_N : N;
+fun aggravate_V2 : V2;
+fun aggravation_N : N;
+fun aggregate_N : N;
+fun aggregate_V : V;
+fun aggregate_V2 : V2;
+fun aggregation_N : N;
+fun aggression_N : N;
+fun aggressive_A : A;
+fun aggressively_Adv : Adv;
+fun aggressiveness_N : N;
+fun aggressor_N : N;
+fun aggrieve_V2 : V2;
+fun aggro_N : N;
+fun aghast_A : A;
+fun agile_A : A;
+fun agilely_Adv : Adv;
+fun agility_N : N;
+fun aging_N : N;
+fun agitate_V : V;
+fun agitate_V2 : V2;
+fun agitated_A : A;
+fun agitating_A : A;
+fun agitation_N : N;
+fun agitator_N : N;
+fun aglow_A : A;
+fun agm_N : N;
+fun agnail_N : N;
+fun agnes_PN : PN;
+fun agnostic_A : A;
+fun agnostic_N : N;
+fun agnosticism_N : N;
+fun ago_Adv : Adv;
+fun agog_A : A;
+fun agonized_A : A;
+fun agonizing_A : A;
+fun agonizingly_Adv : Adv;
+fun agony_N : N;
+fun agora_N : N;
+fun agoraphobia_N : N;
+fun agra_PN : PN;
+fun agrarian_A : A;
+fun agree_V : V;
+fun agree_V2 : V2;
+fun agreeable_A : A;
+fun agreeably_Adv : Adv;
+fun agreement_N : N;
+fun agricultural_A : A;
+fun agriculture_N : N;
+fun aground_A : A;
+fun aground_Adv : Adv;
+fun ague_N : N;
+fun ahead_Adv : Adv;
+fun ahmedabad_PN : PN;
+fun aid_N : N;
+fun aid_V2 : V2;
+fun aide_de_camp_N : N;
+fun aide_memoire_N : N;
+fun aids_N : N;
+fun aigret_N : N;
+fun aigrette_N : N;
+fun ail_V : V;
+fun ail_V2 : V2;
+fun aileron_N : N;
+fun ailment_N : N;
+fun aim_N : N;
+fun aim_V : V;
+fun aim_V2 : V2;
+fun aimless_A : A;
+fun aimlessly_Adv : Adv;
+fun air_N : N;
+fun air_V2 : V2;
+fun air_bladder_N : N;
+fun air_conditioned_A : A;
+fun air_conditioning_N : N;
+fun air_cooled_A : A;
+fun air_minded_A : A;
+fun air_pump_N : N;
+fun air_raid_N : N;
+fun air_shaft_N : N;
+fun air_sick_A : A;
+fun air_sickness_N : N;
+fun air_to_air_A : A;
+fun air_to_ground_A : A;
+fun airbed_N : N;
+fun airborne_A : A;
+fun airbrake_N : N;
+fun aircraft_N : N;
+fun aircraftman_N : N;
+fun aircrew_N : N;
+fun airdrie_PN : PN;
+fun airdrome_N : N;
+fun aireborough_PN : PN;
+fun airedale_N : N;
+fun airfield_N : N;
+fun airflow_N : N;
+fun airframe_N : N;
+fun airily_Adv : Adv;
+fun airing_N : N;
+fun airing_cupboard_N : N;
+fun airless_A : A;
+fun airline_N : N;
+fun airliner_N : N;
+fun airmail_N : N;
+fun airman_N : N;
+fun airplane_N : N;
+fun airport_N : N;
+fun airscrew_N : N;
+fun airship_N : N;
+fun airstrip_N : N;
+fun airtight_A : A;
+fun airway_N : N;
+fun airwoman_N : N;
+fun airworthiness_N : N;
+fun airworthy_A : A;
+fun airy_A : A;
+fun aisle_N : N;
+fun aitch_N : N;
+fun aitch_bone_N : N;
+fun ajar_A : A;
+fun akimbo_Adv : Adv;
+fun akin_A : A;
+fun akron_PN : PN;
+fun al_PN : PN;
+fun alabama_PN : PN;
+fun alabaster_A : A;
+fun alabaster_N : N;
+fun alacrity_N : N;
+fun alan_PN : PN;
+fun alarm_N : N;
+fun alarm_V2 : V2;
+fun alarm_clock_N : N;
+fun alarming_A : A;
+fun alarmingly_Adv : Adv;
+fun alarmist_N : N;
+fun alaska_PN : PN;
+fun alb_N : N;
+fun albania_PN : PN;
+fun albanian_A : A;
+fun albanian_N : N;
+fun albatross_N : N;
+fun albert_PN : PN;
+fun alberta_PN : PN;
+fun albino_N : N;
+fun album_N : N;
+fun albumen_N : N;
+fun alchemist_N : N;
+fun alchemy_N : N;
+fun alcohol_N : N;
+fun alcoholic_A : A;
+fun alcoholic_N : N;
+fun alcoholism_N : N;
+fun alcove_N : N;
+fun alder_N : N;
+fun alderman_N : N;
+fun aldermanic_A : A;
+fun aldershot_PN : PN;
+fun ale_N : N;
+fun ale_house_N : N;
+fun alee_A : A;
+fun alee_Adv : Adv;
+fun aleppo_PN : PN;
+fun alert_A : A;
+fun alert_N : N;
+fun alert_V2 : V2;
+fun alertly_Adv : Adv;
+fun alertness_N : N;
+fun alessandria_PN : PN;
+fun alex_PN : PN;
+fun alexander_PN : PN;
+fun alexandra_PN : PN;
+fun alexandria_PN : PN;
+fun alexandrine_N : N;
+fun alexia_N : N;
+fun alexic_A : A;
+fun alexic_N : N;
+fun alf_PN : PN;
+fun alfalfa_N : N;
+fun alfred_PN : PN;
+fun alfresco_A : A;
+fun alfresco_Adv : Adv;
+fun alfreton_PN : PN;
+fun alga_N : N;
+fun algebra_N : N;
+fun algebraic_A : A;
+fun algebraical_A : A;
+fun algebraically_Adv : Adv;
+fun alger_PN : PN;
+fun algeria_PN : PN;
+fun algerian_A : A;
+fun algerian_N : N;
+fun ali_PN : PN;
+fun alias_Adv : Adv;
+fun alias_N : N;
+fun alibi_N : N;
+fun alicante_PN : PN;
+fun alice_PN : PN;
+fun alien_A : A;
+fun alien_N : N;
+fun alienate_V2 : V2;
+fun alienation_N : N;
+fun alienist_N : N;
+fun alight_A : A;
+fun alight_V : V;
+fun align_V : V;
+fun align_V2 : V2;
+fun alignment_N : N;
+fun alike_A : A;
+fun alike_Adv : Adv;
+fun alimentary_A : A;
+fun alimony_N : N;
+fun alison_PN : PN;
+fun alive_A : A;
+fun alkali_N : N;
+fun alkaline_A : A;
+fun all_mains_A : A;
+fun all_round_A : A;
+fun all_rounder_N : N;
+fun allah_PN : PN;
+fun allahabad_PN : PN;
+fun allan_PN : PN;
+fun allay_V2 : V2;
+fun allegation_N : N;
+fun allege_V2 : V2;
+fun allegedly_Adv : Adv;
+fun allegiance_N : N;
+fun allegoric_A : A;
+fun allegorical_A : A;
+fun allegory_N : N;
+fun allegretto_A : A;
+fun allegretto_Adv : Adv;
+fun allegretto_N : N;
+fun allegro_A : A;
+fun allegro_Adv : Adv;
+fun allegro_N : N;
+fun allen_PN : PN;
+fun allergen_N : N;
+fun allergic_A : A;
+fun allergy_N : N;
+fun alleviate_V2 : V2;
+fun alleviation_N : N;
+fun alley_N : N;
+fun alleyway_N : N;
+fun alliance_N : N;
+fun alligator_N : N;
+fun alliteration_N : N;
+fun alliterative_A : A;
+fun alliteratively_Adv : Adv;
+fun alloa_PN : PN;
+fun allocate_V2 : V2;
+fun allocation_N : N;
+fun allot_V2 : V2;
+fun allotment_N : N;
+fun allow_V : V;
+fun allow_V2 : V2;
+fun allowable_A : A;
+fun allowance_N : N;
+fun alloy_N : N;
+fun alloy_V2 : V2;
+fun allspice_N : N;
+fun allude_V : V;
+fun allure_N : N;
+fun allure_V2 : V2;
+fun allurement_N : N;
+fun alluring_A : A;
+fun allusion_N : N;
+fun allusive_A : A;
+fun alluvial_A : A;
+fun ally_N : N;
+fun ally_V2 : V2;
+fun alma_ata_PN : PN;
+fun alma_mater_N : N;
+fun almanac_N : N;
+fun almeria_PN : PN;
+fun almighty_A : A;
+fun almighty_N : N;
+fun almond_N : N;
+fun almond_eyed_A : A;
+fun almoner_N : N;
+fun almost_Adv : Adv;
+fun alms_box_N : N;
+fun alms_giving_N : N;
+fun alms_house_N : N;
+fun alnwick_PN : PN;
+fun aloe_N : N;
+fun aloft_Adv : Adv;
+fun alone_A : A;
+fun alone_Adv : Adv;
+fun along_Adv : Adv;
+fun alongside_Adv : Adv;
+fun aloof_A : A;
+fun aloof_Adv : Adv;
+fun aloofness_N : N;
+fun aloud_Adv : Adv;
+fun alp_N : N;
+fun alpaca_N : N;
+fun alpenstock_N : N;
+fun alpha_N : N;
+fun alphabet_N : N;
+fun alphabetical_A : A;
+fun alphabetically_Adv : Adv;
+fun alpine_A : A;
+fun alpinist_N : N;
+fun already_Adv : Adv;
+fun alright_A : A;
+fun alright_Adv : Adv;
+fun alsatian_N : N;
+fun also_Adv : Adv;
+fun also_ran_N : N;
+fun altar_N : N;
+fun altar_piece_N : N;
+fun alter_V : V;
+fun alter_V2 : V2;
+fun alter_ego_N : N;
+fun alterable_A : A;
+fun alteration_N : N;
+fun altercation_N : N;
+fun alternate_A : A;
+fun alternate_V : V;
+fun alternate_V2 : V2;
+fun alternately_Adv : Adv;
+fun alternation_N : N;
+fun alternative_A : A;
+fun alternative_N : N;
+fun alternatively_Adv : Adv;
+fun altimeter_N : N;
+fun altitude_N : N;
+fun alto_N : N;
+fun altogether_Adv : Adv;
+fun alton_PN : PN;
+fun altrincham_PN : PN;
+fun altruism_N : N;
+fun altruist_N : N;
+fun altruistic_A : A;
+fun altruistically_Adv : Adv;
+fun alum_N : N;
+fun aluminium_N : N;
+fun alumna_N : N;
+fun alumnus_N : N;
+fun alvechurch_PN : PN;
+fun alveolar_A : A;
+fun alveolar_N : N;
+fun always_Adv : Adv;
+fun amah_N : N;
+fun amain_Adv : Adv;
+fun amalgam_N : N;
+fun amalgamate_V : V;
+fun amalgamate_V2 : V2;
+fun amalgamation_N : N;
+fun amanda_PN : PN;
+fun amanuensis_N : N;
+fun amaryllis_N : N;
+fun amass_V2 : V2;
+fun amateur_N : N;
+fun amateurish_A : A;
+fun amateurism_N : N;
+fun amatory_A : A;
+fun amaze_V2 : V2;
+fun amazement_N : N;
+fun amazing_A : A;
+fun amazingly_Adv : Adv;
+fun amazon_N : N;
+fun ambassador_N : N;
+fun ambassadorial_A : A;
+fun ambassadress_N : N;
+fun amber_N : N;
+fun ambergris_N : N;
+fun ambidextrous_A : A;
+fun ambience_N : N;
+fun ambient_A : A;
+fun ambiguity_N : N;
+fun ambiguous_A : A;
+fun ambiguously_Adv : Adv;
+fun ambit_N : N;
+fun ambition_N : N;
+fun ambitious_A : A;
+fun ambitiously_Adv : Adv;
+fun ambivalence_N : N;
+fun ambivalent_A : A;
+fun amble_N : N;
+fun amble_V : V;
+fun ambrosia_N : N;
+fun ambulance_N : N;
+fun ambuscade_N : N;
+fun ambuscade_V2 : V2;
+fun ambush_N : N;
+fun ambush_V2 : V2;
+fun ameba_N : N;
+fun ameer_N : N;
+fun ameliorate_V : V;
+fun ameliorate_V2 : V2;
+fun amelioration_N : N;
+fun amenable_A : A;
+fun amend_V : V;
+fun amend_V2 : V2;
+fun amendable_A : A;
+fun amendment_N : N;
+fun amenity_N : N;
+fun america_PN : PN;
+fun american_A : A;
+fun american_N : N;
+fun americanism_N : N;
+fun amesbury_PN : PN;
+fun amethyst_N : N;
+fun amharic_N : N;
+fun amiability_N : N;
+fun amiable_A : A;
+fun amiably_Adv : Adv;
+fun amicability_N : N;
+fun amicable_A : A;
+fun amicably_Adv : Adv;
+fun amidships_Adv : Adv;
+fun amiens_PN : PN;
+fun amir_N : N;
+fun amiss_A : A;
+fun amiss_Adv : Adv;
+fun amity_N : N;
+fun ammanford_PN : PN;
+fun ammeter_N : N;
+fun ammonia_N : N;
+fun ammoniated_A : A;
+fun ammonite_N : N;
+fun ammunition_N : N;
+fun amnesia_N : N;
+fun amnesty_N : N;
+fun amoeba_N : N;
+fun amoebic_A : A;
+fun amok_Adv : Adv;
+fun amoral_A : A;
+fun amorous_A : A;
+fun amorously_Adv : Adv;
+fun amorphous_A : A;
+fun amortization_N : N;
+fun amortize_V2 : V2;
+fun amount_N : N;
+fun amount_V : V;
+fun amour_N : N;
+fun amour_propre_N : N;
+fun amp_N : N;
+fun ampere_N : N;
+fun amphetamine_N : N;
+fun amphibian_N : N;
+fun amphibious_A : A;
+fun amphitheatre_N : N;
+fun amphora_N : N;
+fun ample_A : A;
+fun amplification_N : N;
+fun amplifier_N : N;
+fun amplify_V2 : V2;
+fun amplitude_N : N;
+fun amply_Adv : Adv;
+fun ampoule_N : N;
+fun amputate_V2 : V2;
+fun amputation_N : N;
+fun amsterdam_PN : PN;
+fun amuck_Adv : Adv;
+fun amulet_N : N;
+fun amuse_V2 : V2;
+fun amusement_N : N;
+fun amusing_A : A;
+fun amusingly_Adv : Adv;
+fun amy_PN : PN;
+fun anachronism_N : N;
+fun anachronistic_A : A;
+fun anaconda_N : N;
+fun anaemia_N : N;
+fun anaemic_A : A;
+fun anaesthesia_N : N;
+fun anaesthetic_A : A;
+fun anaesthetic_N : N;
+fun anaesthetist_N : N;
+fun anaesthetize_V2 : V2;
+fun anagram_N : N;
+fun anal_A : A;
+fun analgesia_N : N;
+fun analgesic_N : N;
+fun analog_N : N;
+fun analogous_A : A;
+fun analogously_Adv : Adv;
+fun analogue_N : N;
+fun analogy_N : N;
+fun analyse_V2 : V2;
+fun analysis_N : N;
+fun analyst_N : N;
+fun analytic_A : A;
+fun analytical_A : A;
+fun analytically_Adv : Adv;
+fun analyze_V2 : V2;
+fun anapaest_N : N;
+fun anapaestic_A : A;
+fun anarchic_A : A;
+fun anarchically_Adv : Adv;
+fun anarchism_N : N;
+fun anarchist_N : N;
+fun anarchy_N : N;
+fun anathema_N : N;
+fun anathematize_V : V;
+fun anathematize_V2 : V2;
+fun anatomical_A : A;
+fun anatomically_Adv : Adv;
+fun anatomist_N : N;
+fun anatomy_N : N;
+fun ancestor_N : N;
+fun ancestral_A : A;
+fun ancestress_N : N;
+fun ancestry_N : N;
+fun anchor_N : N;
+fun anchor_V : V;
+fun anchor_V2 : V2;
+fun anchorage_N : N;
+fun anchorite_N : N;
+fun anchorman_N : N;
+fun anchovy_N : N;
+fun ancient_A : A;
+fun ancillary_A : A;
+fun ancona_PN : PN;
+fun andante_A : A;
+fun andante_Adv : Adv;
+fun andante_N : N;
+fun andiron_N : N;
+fun andorra_PN : PN;
+fun andorran_A : A;
+fun andorran_N : N;
+fun andover_PN : PN;
+fun andrew_PN : PN;
+fun andy_PN : PN;
+fun anecdotal_A : A;
+fun anecdote_N : N;
+fun anemometer_N : N;
+fun anemone_N : N;
+fun aneroid_A : A;
+fun aneroid_N : N;
+fun anesthetic_A : A;
+fun anesthetic_N : N;
+fun anesthetist_N : N;
+fun anesthetize_V2 : V2;
+fun anew_Adv : Adv;
+fun angel_N : N;
+fun angela_PN : PN;
+fun angelic_A : A;
+fun angelica_N : N;
+fun angelically_Adv : Adv;
+fun angelus_N : N;
+fun anger_N : N;
+fun anger_V2 : V2;
+fun angers_PN : PN;
+fun angie_PN : PN;
+fun angina_N : N;
+fun angle_N : N;
+fun angle_V : V;
+fun angle_V2 : V2;
+fun angle_dozer_N : N;
+fun angle_iron_N : N;
+fun angle_park_V : V;
+fun angle_park_V2 : V2;
+fun angler_N : N;
+fun anglican_A : A;
+fun anglican_N : N;
+fun anglicism_N : N;
+fun anglicize_V2 : V2;
+fun angling_N : N;
+fun anglo_catholic_A : A;
+fun anglo_catholic_N : N;
+fun anglo_indian_A : A;
+fun anglo_indian_N : N;
+fun anglo_saxon_A : A;
+fun anglo_saxon_N : N;
+fun anglomania_N : N;
+fun anglophil_N : N;
+fun anglophile_N : N;
+fun anglophobe_N : N;
+fun anglophobia_N : N;
+fun angola_PN : PN;
+fun angolan_A : A;
+fun angolan_N : N;
+fun angora_N : N;
+fun angostura_N : N;
+fun angrily_Adv : Adv;
+fun angry_A : A;
+fun angst_N : N;
+fun anguilla_PN : PN;
+fun anguillan_A : A;
+fun anguillan_N : N;
+fun anguish_N : N;
+fun anguished_A : A;
+fun angular_A : A;
+fun angularity_N : N;
+fun angus_PN : PN;
+fun aniline_N : N;
+fun animadversion_N : N;
+fun animadvert_V : V;
+fun animal_N : N;
+fun animalcule_N : N;
+fun animate_A : A;
+fun animate_V2 : V2;
+fun animatedly_A : A;
+fun animation_N : N;
+fun animism_N : N;
+fun animosity_N : N;
+fun animus_N : N;
+fun anise_N : N;
+fun aniseed_N : N;
+fun anita_PN : PN;
+fun ankara_PN : PN;
+fun ankle_N : N;
+fun anklet_N : N;
+fun ann_PN : PN;
+fun anna_N : N;
+fun annabel_PN : PN;
+fun annalist_N : N;
+fun annan_PN : PN;
+fun anne_PN : PN;
+fun anneal_V2 : V2;
+fun annex_N : N;
+fun annex_V2 : V2;
+fun annexation_N : N;
+fun annexe_N : N;
+fun annfield_PN : PN;
+fun annfield_plain_PN : PN;
+fun annie_PN : PN;
+fun annihilate_V2 : V2;
+fun annihilation_N : N;
+fun anniversary_N : N;
+fun annotate_V2 : V2;
+fun annotation_N : N;
+fun announce_V2 : V2;
+fun announcement_N : N;
+fun announcer_N : N;
+fun annoy_V2 : V2;
+fun annoyance_N : N;
+fun annoying_A : A;
+fun annual_A : A;
+fun annual_N : N;
+fun annually_Adv : Adv;
+fun annuitant_N : N;
+fun annuity_N : N;
+fun annul_V2 : V2;
+fun annular_A : A;
+fun annulment_N : N;
+fun annunciate_V2 : V2;
+fun annunciation_N : N;
+fun anode_N : N;
+fun anodyne_A : A;
+fun anodyne_N : N;
+fun anoint_V2 : V2;
+fun anointment_N : N;
+fun anomalous_A : A;
+fun anomalously_Adv : Adv;
+fun anomaly_N : N;
+fun anon_Adv : Adv;
+fun anon_PN : PN;
+fun anonymity_N : N;
+fun anonymous_A : A;
+fun anonymously_Adv : Adv;
+fun anopheles_N : N;
+fun anorak_N : N;
+fun another_A : A;
+fun anshan_PN : PN;
+fun answer_N : N;
+fun answer_V : V;
+fun answer_V2 : V2;
+fun answerable_A : A;
+fun ant_N : N;
+fun ant_eater_N : N;
+fun ant_hill_N : N;
+fun antagonism_N : N;
+fun antagonist_N : N;
+fun antagonistic_A : A;
+fun antagonistically_Adv : Adv;
+fun antagonize_V2 : V2;
+fun antarctic_A : A;
+fun ante_N : N;
+fun ante_meridiem_Adv : Adv;
+fun antecedence_N : N;
+fun antecedent_A : A;
+fun antecedent_N : N;
+fun antechamber_N : N;
+fun antedate_V2 : V2;
+fun antediluvian_A : A;
+fun antediluvian_N : N;
+fun antelope_N : N;
+fun antenatal_A : A;
+fun antenna_N : N;
+fun antenuptial_A : A;
+fun antepenultimate_A : A;
+fun anterior_A : A;
+fun anteroom_N : N;
+fun anthea_PN : PN;
+fun anthem_N : N;
+fun anther_N : N;
+fun anthology_N : N;
+fun anthony_PN : PN;
+fun anthracite_N : N;
+fun anthrax_N : N;
+fun anthropoid_A : A;
+fun anthropoid_N : N;
+fun anthropological_A : A;
+fun anthropologist_N : N;
+fun anthropology_N : N;
+fun anti_aircraft_A : A;
+fun anti_hero_N : N;
+fun anti_personnel_A : A;
+fun anti_semite_A : A;
+fun anti_semite_N : N;
+fun anti_semitic_A : A;
+fun anti_semitism_N : N;
+fun antibiotic_A : A;
+fun antibiotic_N : N;
+fun antibody_N : N;
+fun antic_N : N;
+fun anticipate_V2 : V2;
+fun anticipation_N : N;
+fun anticipatory_A : A;
+fun anticlimax_N : N;
+fun anticlockwise_Adv : Adv;
+fun anticyclone_N : N;
+fun antidote_N : N;
+fun antifreeze_N : N;
+fun antigua_PN : PN;
+fun antiguan_A : A;
+fun antiguan_N : N;
+fun antiknock_N : N;
+fun antilogarithm_N : N;
+fun antimacassar_N : N;
+fun antimony_N : N;
+fun antipathetic_A : A;
+fun antipathy_N : N;
+fun antiquarian_A : A;
+fun antiquarian_N : N;
+fun antiquary_N : N;
+fun antiquated_A : A;
+fun antique_A : A;
+fun antique_N : N;
+fun antiquity_N : N;
+fun antirrhinum_N : N;
+fun antiseptic_A : A;
+fun antiseptic_N : N;
+fun antisocial_A : A;
+fun antitank_A : A;
+fun antithesis_N : N;
+fun antithetic_A : A;
+fun antithetical_A : A;
+fun antithetically_Adv : Adv;
+fun antitoxin_N : N;
+fun antitrade_A : A;
+fun antitrade_N : N;
+fun antler_N : N;
+fun antony_PN : PN;
+fun antonym_N : N;
+fun antrim_PN : PN;
+fun antwerp_PN : PN;
+fun anus_N : N;
+fun anvil_N : N;
+fun anxiety_N : N;
+fun anxious_A : A;
+fun anxiously_Adv : Adv;
+fun any_A : A;
+fun any_Adv : Adv;
+fun anybody_N : N;
+fun anyhow_Adv : Adv;
+fun anyone_N : N;
+fun anyplace_Adv : Adv;
+fun anything_N : N;
+fun anyway_Adv : Adv;
+fun anywhere_Adv : Adv;
+fun aorta_N : N;
+fun apace_Adv : Adv;
+fun apache_N : N;
+fun apanage_N : N;
+fun apart_Adv : Adv;
+fun apartheid_N : N;
+fun apartment_N : N;
+fun apathetic_A : A;
+fun apathetically_Adv : Adv;
+fun apathy_N : N;
+fun ape_N : N;
+fun ape_V2 : V2;
+fun apeldoorn_PN : PN;
+fun aperient_A : A;
+fun aperient_N : N;
+fun aperitif_N : N;
+fun aperture_N : N;
+fun apex_N : N;
+fun aphasia_N : N;
+fun aphid_N : N;
+fun aphis_N : N;
+fun aphorism_N : N;
+fun aphrodisiac_A : A;
+fun aphrodisiac_N : N;
+fun apiarist_N : N;
+fun apiary_N : N;
+fun apiculture_N : N;
+fun apiece_Adv : Adv;
+fun apish_A : A;
+fun aplomb_N : N;
+fun apocalypse_N : N;
+fun apocalyptic_A : A;
+fun apocrypha_N : N;
+fun apocryphal_A : A;
+fun apogee_N : N;
+fun apologetic_A : A;
+fun apologetically_Adv : Adv;
+fun apologetics_N : N;
+fun apologist_N : N;
+fun apologize_V : V;
+fun apology_N : N;
+fun apophthegm_N : N;
+fun apoplectic_A : A;
+fun apoplexy_N : N;
+fun apostasy_N : N;
+fun apostate_A : A;
+fun apostate_N : N;
+fun apostle_N : N;
+fun apostolic_A : A;
+fun apostrophe_N : N;
+fun apostrophize_V2 : V2;
+fun apothecary_N : N;
+fun apothegm_N : N;
+fun apotheosis_N : N;
+fun appal_V2 : V2;
+fun appalling_A : A;
+fun appallingly_Adv : Adv;
+fun appanage_N : N;
+fun apparatus_N : N;
+fun apparel_N : N;
+fun apparel_V2 : V2;
+fun apparent_A : A;
+fun apparently_Adv : Adv;
+fun apparition_N : N;
+fun appeal_N : N;
+fun appeal_V : V;
+fun appealing_A : A;
+fun appealingly_Adv : Adv;
+fun appear_V : V;
+fun appearance_N : N;
+fun appease_V2 : V2;
+fun appeasement_N : N;
+fun appellant_A : A;
+fun appellant_N : N;
+fun appellation_N : N;
+fun append_V2 : V2;
+fun appendage_N : N;
+fun appendectomy_N : N;
+fun appendicitis_N : N;
+fun appendix_N : N;
+fun appertain_V : V;
+fun appetite_N : N;
+fun appetizer_N : N;
+fun appetizing_A : A;
+fun applaud_V : V;
+fun applaud_V2 : V2;
+fun applause_N : N;
+fun apple_N : N;
+fun applejack_N : N;
+fun appliance_N : N;
+fun applicability_N : N;
+fun applicable_A : A;
+fun applicant_N : N;
+fun application_N : N;
+fun applied_A : A;
+fun applique_N : N;
+fun applique_V2 : V2;
+fun apply_V : V;
+fun apply_V2 : V2;
+fun appoint_V2 : V2;
+fun appointee_N : N;
+fun appointment_N : N;
+fun apportion_V2 : V2;
+fun apportionment_N : N;
+fun apposite_A : A;
+fun appositely_Adv : Adv;
+fun apposition_N : N;
+fun appraisal_N : N;
+fun appraise_V2 : V2;
+fun appreciable_A : A;
+fun appreciably_Adv : Adv;
+fun appreciate_V : V;
+fun appreciate_V2 : V2;
+fun appreciation_N : N;
+fun appreciative_A : A;
+fun appreciatively_Adv : Adv;
+fun apprehend_V2 : V2;
+fun apprehensible_A : A;
+fun apprehension_N : N;
+fun apprehensive_A : A;
+fun apprentice_N : N;
+fun apprentice_V2 : V2;
+fun apprenticeship_N : N;
+fun apprise_V2 : V2;
+fun appro_N : N;
+fun approach_N : N;
+fun approach_V : V;
+fun approach_V2 : V2;
+fun approachable_A : A;
+fun approbation_N : N;
+fun appropriate_A : A;
+fun appropriate_V2 : V2;
+fun appropriately_Adv : Adv;
+fun appropriation_N : N;
+fun approval_N : N;
+fun approve_V : V;
+fun approve_V2 : V2;
+fun approvingly_Adv : Adv;
+fun approx_PN : PN;
+fun approximate_A : A;
+fun approximate_V : V;
+fun approximate_V2 : V2;
+fun approximately_Adv : Adv;
+fun approximation_N : N;
+fun appurtenance_N : N;
+fun apr_PN : PN;
+fun apricot_N : N;
+fun april_N : N;
+fun april_PN : PN;
+fun apron_N : N;
+fun apropos_A : A;
+fun apropos_Adv : Adv;
+fun apres_ski_A : A;
+fun apse_N : N;
+fun apt_A : A;
+fun aptitude_N : N;
+fun aptly_Adv : Adv;
+fun aptness_N : N;
+fun aqualung_N : N;
+fun aquamarine_N : N;
+fun aquanaut_N : N;
+fun aquaplane_N : N;
+fun aquaplane_V : V;
+fun aquarium_N : N;
+fun aquarius_PN : PN;
+fun aquatic_A : A;
+fun aquatint_N : N;
+fun aquavit_N : N;
+fun aqueduct_N : N;
+fun aqueous_A : A;
+fun aquiline_A : A;
+fun arab_N : N;
+fun arabesque_N : N;
+fun arabian_A : A;
+fun arabian_N : N;
+fun arabic_A : A;
+fun arabic_N : N;
+fun arabist_N : N;
+fun arable_A : A;
+fun arachnid_N : N;
+fun arbiter_N : N;
+fun arbitrament_N : N;
+fun arbitrarily_Adv : Adv;
+fun arbitrary_A : A;
+fun arbitrate_V : V;
+fun arbitrate_V2 : V2;
+fun arbitration_N : N;
+fun arbitrator_N : N;
+fun arboreal_A : A;
+fun arbour_N : N;
+fun arbroath_PN : PN;
+fun arc_N : N;
+fun arc_lamp_N : N;
+fun arc_light_N : N;
+fun arcade_N : N;
+fun arcadian_A : A;
+fun arcadian_N : N;
+fun arcane_A : A;
+fun arch_A : A;
+fun arch_N : N;
+fun arch_V : V;
+fun arch_V2 : V2;
+fun archaeological_A : A;
+fun archaeologist_N : N;
+fun archaeology_N : N;
+fun archaic_A : A;
+fun archaism_N : N;
+fun archangel_N : N;
+fun archbishop_N : N;
+fun archbishopric_N : N;
+fun archdeacon_N : N;
+fun archdeaconry_N : N;
+fun archdiocese_N : N;
+fun archduke_N : N;
+fun archeology_N : N;
+fun archer_N : N;
+fun archery_N : N;
+fun archetypal_A : A;
+fun archetype_N : N;
+fun archimandrite_N : N;
+fun archipelago_N : N;
+fun architect_N : N;
+fun architectural_A : A;
+fun architecturally_Adv : Adv;
+fun architecture_N : N;
+fun archivist_N : N;
+fun archly_Adv : Adv;
+fun archway_N : N;
+fun arctic_A : A;
+fun ardent_A : A;
+fun ardently_Adv : Adv;
+fun ardour_N : N;
+fun ardrossan_PN : PN;
+fun arduous_A : A;
+fun arduously_Adv : Adv;
+fun are_N : N;
+fun area_N : N;
+fun areca_N : N;
+fun arena_N : N;
+fun argent_A : A;
+fun argent_N : N;
+fun argentina_PN : PN;
+fun argentine_PN : PN;
+fun argentinian_A : A;
+fun argentinian_N : N;
+fun argon_N : N;
+fun argonaut_N : N;
+fun argosy_N : N;
+fun argot_N : N;
+fun arguable_A : A;
+fun arguably_Adv : Adv;
+fun argue_V : V;
+fun argue_V2 : V2;
+fun argument_N : N;
+fun argumentation_N : N;
+fun argumentative_A : A;
+fun argus_N : N;
+fun argus_eyed_A : A;
+fun aria_N : N;
+fun arid_A : A;
+fun aridity_N : N;
+fun aries_PN : PN;
+fun aright_Adv : Adv;
+fun arise_V : V;
+fun aristocracy_N : N;
+fun aristocrat_N : N;
+fun aristocratic_A : A;
+fun aristocratically_Adv : Adv;
+fun arithmetic_N : N;
+fun arithmetical_A : A;
+fun arithmetically_Adv : Adv;
+fun arithmetician_N : N;
+fun arizona_PN : PN;
+fun ark_N : N;
+fun arkansas_PN : PN;
+fun arm_N : N;
+fun arm_V : V;
+fun arm_V2 : V2;
+fun arm_hole_N : N;
+fun armada_N : N;
+fun armadale_PN : PN;
+fun armadillo_N : N;
+fun armageddon_PN : PN;
+fun armagh_PN : PN;
+fun armament_N : N;
+fun armature_N : N;
+fun armband_N : N;
+fun armchair_N : N;
+fun armful_N : N;
+fun armistice_N : N;
+fun armlet_N : N;
+fun armoire_N : N;
+fun armorial_A : A;
+fun armour_N : N;
+fun armour_plate_N : N;
+fun armoured_A : A;
+fun armourer_N : N;
+fun armoury_N : N;
+fun armpit_N : N;
+fun arms_race_N : N;
+fun arms_runner_N : N;
+fun army_N : N;
+fun arnhem_PN : PN;
+fun arnica_N : N;
+fun arnold_PN : PN;
+fun aroma_N : N;
+fun aromatic_A : A;
+fun around_Adv : Adv;
+fun arouse_V2 : V2;
+fun arpeggio_N : N;
+fun arquebus_N : N;
+fun arr_PN : PN;
+fun arrack_N : N;
+fun arraign_V2 : V2;
+fun arraignment_N : N;
+fun arrange_V : V;
+fun arrange_V2 : V2;
+fun arrangement_N : N;
+fun arrant_A : A;
+fun arras_N : N;
+fun array_N : N;
+fun array_V2 : V2;
+fun arrest_N : N;
+fun arrest_V2 : V2;
+fun arrester_N : N;
+fun arresting_A : A;
+fun arrival_N : N;
+fun arrive_V : V;
+fun arriere_pensee_N : N;
+fun arrogance_N : N;
+fun arrogant_A : A;
+fun arrogantly_Adv : Adv;
+fun arrogate_V2 : V2;
+fun arrow_N : N;
+fun arrowhead_N : N;
+fun arrowroot_N : N;
+fun arse_N : N;
+fun arsehole_N : N;
+fun arsenal_N : N;
+fun arsenic_N : N;
+fun arson_N : N;
+fun art_N : N;
+fun art_PN : PN;
+fun artefact_N : N;
+fun arterial_A : A;
+fun arteriosclerosis_N : N;
+fun artery_N : N;
+fun artesian_A : A;
+fun artful_A : A;
+fun artfully_Adv : Adv;
+fun artfulness_N : N;
+fun arthritic_A : A;
+fun arthritis_N : N;
+fun arthur_PN : PN;
+fun artichoke_N : N;
+fun article_N : N;
+fun article_V2 : V2;
+fun articulate_A : A;
+fun articulate_V : V;
+fun articulate_V2 : V2;
+fun articulately_Adv : Adv;
+fun articulation_N : N;
+fun artie_PN : PN;
+fun artifact_N : N;
+fun artifice_N : N;
+fun artificer_N : N;
+fun artificial_A : A;
+fun artificially_Adv : Adv;
+fun artillery_N : N;
+fun artisan_N : N;
+fun artist_N : N;
+fun artiste_N : N;
+fun artistic_A : A;
+fun artistically_Adv : Adv;
+fun artistry_N : N;
+fun artless_A : A;
+fun artlessly_Adv : Adv;
+fun artlessness_N : N;
+fun arty_A : A;
+fun arty_crafty_A : A;
+fun arum_N : N;
+fun aryan_A : A;
+fun aryan_N : N;
+fun arete_N : N;
+fun asap_PN : PN;
+fun asbestos_N : N;
+fun ascend_V : V;
+fun ascend_V2 : V2;
+fun ascendancy_N : N;
+fun ascendant_N : N;
+fun ascendency_N : N;
+fun ascendent_N : N;
+fun ascension_N : N;
+fun ascent_N : N;
+fun ascertain_V2 : V2;
+fun ascertainable_A : A;
+fun ascetic_A : A;
+fun ascetic_N : N;
+fun ascetically_Adv : Adv;
+fun asceticism_N : N;
+fun ascorbic_A : A;
+fun ascot_PN : PN;
+fun ascribable_A : A;
+fun ascribe_V2 : V2;
+fun ascription_N : N;
+fun asdic_N : N;
+fun asepsis_N : N;
+fun aseptic_A : A;
+fun asexual_A : A;
+fun asexuality_N : N;
+fun ash_N : N;
+fun ash_bin_N : N;
+fun ash_can_N : N;
+fun ash_key_N : N;
+fun ash_pan_N : N;
+fun ashamed_A : A;
+fun ashamedly_Adv : Adv;
+fun ashbourne_PN : PN;
+fun ashby_PN : PN;
+fun ashby_de_la_zouch_PN : PN;
+fun ashby_woulds_PN : PN;
+fun ashen_A : A;
+fun ashford_PN : PN;
+fun ashington_PN : PN;
+fun ashore_Adv : Adv;
+fun ashton_in_makerfield_PN : PN;
+fun ashton_under_lyne_PN : PN;
+fun ashtray_N : N;
+fun ashy_A : A;
+fun asian_A : A;
+fun asian_N : N;
+fun asiatic_A : A;
+fun asiatic_N : N;
+fun aside_Adv : Adv;
+fun aside_N : N;
+fun asinine_A : A;
+fun ask_V : V;
+fun ask_V2 : V2;
+fun askance_Adv : Adv;
+fun askern_PN : PN;
+fun askew_A : A;
+fun askew_Adv : Adv;
+fun asking_N : N;
+fun aslant_Adv : Adv;
+fun asleep_A : A;
+fun asleep_Adv : Adv;
+fun asp_N : N;
+fun asparagus_N : N;
+fun aspect_N : N;
+fun aspectual_A : A;
+fun aspen_N : N;
+fun asperity_N : N;
+fun asperse_V2 : V2;
+fun aspersion_N : N;
+fun asphalt_N : N;
+fun asphalt_V2 : V2;
+fun asphodel_N : N;
+fun asphyxia_N : N;
+fun asphyxiate_V2 : V2;
+fun asphyxiation_N : N;
+fun aspic_N : N;
+fun aspidistra_N : N;
+fun aspirant_N : N;
+fun aspirate_N : N;
+fun aspirate_V2 : V2;
+fun aspiration_N : N;
+fun aspire_V : V;
+fun aspirin_N : N;
+fun aspull_PN : PN;
+fun ass_N : N;
+fun assagai_N : N;
+fun assail_V2 : V2;
+fun assailable_A : A;
+fun assailant_N : N;
+fun assassin_N : N;
+fun assassinate_V2 : V2;
+fun assassination_N : N;
+fun assault_N : N;
+fun assault_V2 : V2;
+fun assay_N : N;
+fun assay_V2 : V2;
+fun assegai_N : N;
+fun assemblage_N : N;
+fun assemble_V : V;
+fun assemble_V2 : V2;
+fun assembly_N : N;
+fun assent_N : N;
+fun assent_V : V;
+fun assert_V2 : V2;
+fun assertion_N : N;
+fun assertive_A : A;
+fun assertively_Adv : Adv;
+fun assess_V2 : V2;
+fun assessment_N : N;
+fun assessor_N : N;
+fun asset_N : N;
+fun asseverate_V2 : V2;
+fun asseveration_N : N;
+fun asshole_N : N;
+fun assiduity_N : N;
+fun assiduous_A : A;
+fun assiduously_Adv : Adv;
+fun assign_V2 : V2;
+fun assignable_A : A;
+fun assignation_N : N;
+fun assignment_N : N;
+fun assimilate_V : V;
+fun assimilate_V2 : V2;
+fun assimilation_N : N;
+fun assist_V : V;
+fun assist_V2 : V2;
+fun assistance_N : N;
+fun assistant_N : N;
+fun assize_N : N;
+fun assoc_N : N;
+fun associate_A : A;
+fun associate_N : N;
+fun associate_V : V;
+fun associate_V2 : V2;
+fun association_N : N;
+fun assonance_N : N;
+fun assorted_A : A;
+fun assortment_N : N;
+fun asst_N : N;
+fun assuage_V2 : V2;
+fun assume_V2 : V2;
+fun assumption_N : N;
+fun assurance_N : N;
+fun assure_V2 : V2;
+fun assured_A : A;
+fun assuredly_Adv : Adv;
+fun assuredness_N : N;
+fun aster_N : N;
+fun asterisk_N : N;
+fun astern_Adv : Adv;
+fun asteroid_N : N;
+fun asthma_N : N;
+fun asthmatic_A : A;
+fun astigmatic_A : A;
+fun astigmatism_N : N;
+fun astir_A : A;
+fun astir_Adv : Adv;
+fun aston_PN : PN;
+fun astonish_V2 : V2;
+fun astonishing_A : A;
+fun astonishingly_Adv : Adv;
+fun astonishment_N : N;
+fun astound_V2 : V2;
+fun astrakhan_N : N;
+fun astral_A : A;
+fun astray_A : A;
+fun astray_Adv : Adv;
+fun astride_A : A;
+fun astride_Adv : Adv;
+fun astringency_N : N;
+fun astringent_A : A;
+fun astringent_N : N;
+fun astrodome_N : N;
+fun astrolabe_N : N;
+fun astrologer_N : N;
+fun astrological_A : A;
+fun astrology_N : N;
+fun astronaut_N : N;
+fun astronautics_N : N;
+fun astronomer_N : N;
+fun astronomical_A : A;
+fun astronomically_Adv : Adv;
+fun astronomy_N : N;
+fun astrophysics_N : N;
+fun astute_A : A;
+fun astutely_Adv : Adv;
+fun astuteness_N : N;
+fun asunder_Adv : Adv;
+fun asylum_N : N;
+fun asymmetric_A : A;
+fun asymmetrical_A : A;
+fun asymmetrically_Adv : Adv;
+fun asymmetry_N : N;
+fun asymptote_N : N;
+fun asymptotic_A : A;
+fun asymptotically_Adv : Adv;
+fun at_home_N : N;
+fun atabrine_N : N;
+fun atavism_N : N;
+fun atavistic_A : A;
+fun atelier_N : N;
+fun atheism_N : N;
+fun atheist_N : N;
+fun atheistic_A : A;
+fun athenian_A : A;
+fun athenian_N : N;
+fun athens_PN : PN;
+fun atherstone_PN : PN;
+fun athirst_A : A;
+fun athlete_N : N;
+fun athletic_A : A;
+fun athletics_N : N;
+fun athlone_PN : PN;
+fun athwart_Adv : Adv;
+fun atlanta_PN : PN;
+fun atlantic_PN : PN;
+fun atlas_N : N;
+fun atmosphere_N : N;
+fun atmospheric_A : A;
+fun atmospherics_N : N;
+fun atoll_N : N;
+fun atom_N : N;
+fun atomic_A : A;
+fun atomize_V2 : V2;
+fun atomizer_N : N;
+fun atonal_A : A;
+fun atonality_N : N;
+fun atone_V : V;
+fun atonement_N : N;
+fun atop_Adv : Adv;
+fun atrabilious_A : A;
+fun atrocious_A : A;
+fun atrociously_Adv : Adv;
+fun atrocity_N : N;
+fun atrophy_N : N;
+fun atrophy_V : V;
+fun atrophy_V2 : V2;
+fun attach_V : V;
+fun attach_V2 : V2;
+fun attachment_N : N;
+fun attache_N : N;
+fun attack_N : N;
+fun attack_V2 : V2;
+fun attacker_N : N;
+fun attain_V : V;
+fun attain_V2 : V2;
+fun attainable_A : A;
+fun attainder_N : N;
+fun attainment_N : N;
+fun attar_N : N;
+fun attempt_N : N;
+fun attempt_V2 : V2;
+fun attend_V : V;
+fun attend_V2 : V2;
+fun attendance_N : N;
+fun attendant_A : A;
+fun attendant_N : N;
+fun attention_N : N;
+fun attentive_A : A;
+fun attentively_Adv : Adv;
+fun attentiveness_N : N;
+fun attenuate_V2 : V2;
+fun attenuation_N : N;
+fun attest_V : V;
+fun attest_V2 : V2;
+fun attic_A : A;
+fun attic_N : N;
+fun attire_N : N;
+fun attire_V2 : V2;
+fun attitude_N : N;
+fun attitudinize_V : V;
+fun attorney_N : N;
+fun attract_V2 : V2;
+fun attraction_N : N;
+fun attractive_A : A;
+fun attractively_Adv : Adv;
+fun attributable_A : A;
+fun attribute_N : N;
+fun attribute_V2 : V2;
+fun attribution_N : N;
+fun attributive_A : A;
+fun attributively_Adv : Adv;
+fun attrition_N : N;
+fun attune_V2 : V2;
+fun atypical_A : A;
+fun atypically_Adv : Adv;
+fun au_fait_A : A;
+fun au_fond_Adv : Adv;
+fun au_pair_N : N;
+fun aubergine_N : N;
+fun aubrietia_N : N;
+fun auburn_A : A;
+fun auckland_PN : PN;
+fun auction_N : N;
+fun auction_V2 : V2;
+fun auctioneer_N : N;
+fun audacious_A : A;
+fun audaciously_Adv : Adv;
+fun audacity_N : N;
+fun audibility_N : N;
+fun audible_A : A;
+fun audibly_Adv : Adv;
+fun audience_N : N;
+fun audio_lingual_A : A;
+fun audit_N : N;
+fun audit_V2 : V2;
+fun audition_N : N;
+fun audition_V2 : V2;
+fun auditor_N : N;
+fun auditorium_N : N;
+fun auditory_A : A;
+fun audley_PN : PN;
+fun audrey_PN : PN;
+fun aug_PN : PN;
+fun auger_N : N;
+fun aught_N : N;
+fun augment_V : V;
+fun augment_V2 : V2;
+fun augmentation_N : N;
+fun augsburg_PN : PN;
+fun augur_N : N;
+fun augur_V : V;
+fun augur_V2 : V2;
+fun augury_N : N;
+fun august_A : A;
+fun august_N : N;
+fun august_PN : PN;
+fun augustan_A : A;
+fun auk_N : N;
+fun auld_lang_syne_N : N;
+fun aunt_N : N;
+fun auntie_N : N;
+fun aunty_N : N;
+fun aura_N : N;
+fun aural_A : A;
+fun aureole_N : N;
+fun auricle_N : N;
+fun auricular_A : A;
+fun auriferous_A : A;
+fun aurora_N : N;
+fun auspicious_A : A;
+fun auspiciously_Adv : Adv;
+fun aussie_N : N;
+fun austere_A : A;
+fun austerely_Adv : Adv;
+fun austerity_N : N;
+fun australia_PN : PN;
+fun australian_A : A;
+fun australian_N : N;
+fun austria_PN : PN;
+fun austrian_A : A;
+fun austrian_N : N;
+fun autarchy_N : N;
+fun autarky_N : N;
+fun authentic_A : A;
+fun authentically_Adv : Adv;
+fun authenticate_V2 : V2;
+fun authentication_N : N;
+fun authenticity_N : N;
+fun author_N : N;
+fun authoress_N : N;
+fun authoritarian_A : A;
+fun authoritarian_N : N;
+fun authoritarianism_N : N;
+fun authoritative_A : A;
+fun authoritatively_Adv : Adv;
+fun authority_N : N;
+fun authorization_N : N;
+fun authorize_V2 : V2;
+fun authorship_N : N;
+fun autism_N : N;
+fun autistic_A : A;
+fun auto_N : N;
+fun auto_changer_N : N;
+fun auto_da_fe_N : N;
+fun autobahn_N : N;
+fun autobiographic_A : A;
+fun autobiographical_A : A;
+fun autobiography_N : N;
+fun autocracy_N : N;
+fun autocrat_N : N;
+fun autocratic_A : A;
+fun autocratically_Adv : Adv;
+fun autogiro_N : N;
+fun autograph_N : N;
+fun autograph_V2 : V2;
+fun autogyro_N : N;
+fun automat_N : N;
+fun automate_V2 : V2;
+fun automatic_A : A;
+fun automatic_N : N;
+fun automatically_Adv : Adv;
+fun automation_N : N;
+fun automaton_N : N;
+fun automobile_N : N;
+fun autonomous_A : A;
+fun autonomy_N : N;
+fun autopsy_N : N;
+fun autostrada_N : N;
+fun autumn_N : N;
+fun autumnal_A : A;
+fun auxiliary_A : A;
+fun auxiliary_N : N;
+fun avail_N : N;
+fun avail_V : V;
+fun avail_V2 : V2;
+fun availability_N : N;
+fun available_A : A;
+fun avalanche_N : N;
+fun avant_garde_N : N;
+fun avarice_N : N;
+fun avaricious_A : A;
+fun avariciously_Adv : Adv;
+fun avatar_N : N;
+fun ave_PN : PN;
+fun aveley_PN : PN;
+fun avenge_V2 : V2;
+fun avenger_N : N;
+fun avenue_N : N;
+fun aver_V2 : V2;
+fun average_A : A;
+fun average_N : N;
+fun average_V : V;
+fun average_V2 : V2;
+fun averse_A : A;
+fun aversion_N : N;
+fun avert_V2 : V2;
+fun aviary_N : N;
+fun aviation_N : N;
+fun aviator_N : N;
+fun avid_A : A;
+fun avidity_N : N;
+fun avidly_Adv : Adv;
+fun avignon_PN : PN;
+fun avocado_N : N;
+fun avocation_N : N;
+fun avoid_V2 : V2;
+fun avoidable_A : A;
+fun avoidance_N : N;
+fun avoirdupois_N : N;
+fun avon_PN : PN;
+fun avouch_V : V;
+fun avouch_V2 : V2;
+fun avow_V2 : V2;
+fun avowal_N : N;
+fun avowedly_Adv : Adv;
+fun avuncular_A : A;
+fun await_V2 : V2;
+fun awake_A : A;
+fun awake_V : V;
+fun awaken_V2 : V2;
+fun awakening_N : N;
+fun award_N : N;
+fun award_V2 : V2;
+fun aware_A : A;
+fun awareness_N : N;
+fun awash_A : A;
+fun away_A : A;
+fun away_Adv : Adv;
+fun awe_N : N;
+fun awe_V2 : V2;
+fun awe_inspiring_A : A;
+fun awe_stricken_A : A;
+fun awe_struck_A : A;
+fun aweigh_Adv : Adv;
+fun awesome_A : A;
+fun awful_A : A;
+fun awfully_Adv : Adv;
+fun awhile_Adv : Adv;
+fun awkward_A : A;
+fun awkwardly_Adv : Adv;
+fun awkwardness_N : N;
+fun awl_N : N;
+fun awning_N : N;
+fun awol_PN : PN;
+fun awry_A : A;
+fun awry_Adv : Adv;
+fun ax_N : N;
+fun ax_V2 : V2;
+fun axe_N : N;
+fun axe_V2 : V2;
+fun axiom_N : N;
+fun axiomatic_A : A;
+fun axiomatically_Adv : Adv;
+fun axis_N : N;
+fun axle_N : N;
+fun ay_Adv : Adv;
+fun ayah_N : N;
+fun aycliffe_PN : PN;
+fun aye_Adv : Adv;
+fun aylesbury_PN : PN;
+fun aylesford_PN : PN;
+fun ayr_PN : PN;
+fun azalea_N : N;
+fun azimuth_N : N;
+fun azure_A : A;
+fun azure_N : N;
+fun b_ed_N : N;
+fun ba_N : N;
+fun baa_N : N;
+fun baa_V : V;
+fun baa_lamb_N : N;
+fun baas_N : N;
+fun babble_N : N;
+fun babble_V : V;
+fun babble_V2 : V2;
+fun babbler_N : N;
+fun babe_N : N;
+fun babel_N : N;
+fun baboo_N : N;
+fun baboon_N : N;
+fun babs_PN : PN;
+fun babu_N : N;
+fun baby_N : N;
+fun baby_V2 : V2;
+fun baby_faced_A : A;
+fun baby_farmer_N : N;
+fun baby_minder_N : N;
+fun baby_talk_N : N;
+fun babyhood_N : N;
+fun babyish_A : A;
+fun babysit_V : V;
+fun babysitter_N : N;
+fun babysitting_N : N;
+fun baccalaureate_N : N;
+fun baccarat_N : N;
+fun bacchanal_A : A;
+fun bacchanal_N : N;
+fun bacchanalian_A : A;
+fun baccy_N : N;
+fun bachelor_N : N;
+fun bacillus_N : N;
+fun back_Adv : Adv;
+fun back_N : N;
+fun back_V : V;
+fun back_V2 : V2;
+fun back_breaking_A : A;
+fun back_down_N : N;
+fun back_formation_N : N;
+fun back_up_N : N;
+fun backache_N : N;
+fun backband_N : N;
+fun backbench_N : N;
+fun backbencher_N : N;
+fun backbite_V : V;
+fun backbite_V2 : V2;
+fun backbiter_N : N;
+fun backboard_N : N;
+fun backbone_N : N;
+fun backchat_N : N;
+fun backcloth_N : N;
+fun backdate_V2 : V2;
+fun backdoor_N : N;
+fun backdrop_N : N;
+fun backer_N : N;
+fun backfire_N : N;
+fun backfire_V : V;
+fun backgammon_N : N;
+fun background_N : N;
+fun backhand_A : A;
+fun backhanded_A : A;
+fun backing_N : N;
+fun backlash_N : N;
+fun backless_A : A;
+fun backlog_N : N;
+fun backmost_A : A;
+fun backpedal_V : V;
+fun backroom_N : N;
+fun backscratcher_N : N;
+fun backseat_N : N;
+fun backsheesh_N : N;
+fun backside_N : N;
+fun backslide_V : V;
+fun backspace_V : V;
+fun backstage_Adv : Adv;
+fun backstair_A : A;
+fun backstroke_N : N;
+fun backsword_N : N;
+fun backtalk_N : N;
+fun backward_A : A;
+fun backward_Adv : Adv;
+fun backwards_A : A;
+fun backwards_Adv : Adv;
+fun backwash_N : N;
+fun backwater_N : N;
+fun backwoodsman_N : N;
+fun backworth_PN : PN;
+fun bacon_N : N;
+fun bacterial_A : A;
+fun bacteriologist_N : N;
+fun bacteriology_N : N;
+fun bacterium_N : N;
+fun bacup_PN : PN;
+fun bad_A : A;
+fun bad_N : N;
+fun badajoz_PN : PN;
+fun badalona_PN : PN;
+fun badge_N : N;
+fun badger_N : N;
+fun badger_V2 : V2;
+fun badinage_N : N;
+fun badly_Adv : Adv;
+fun badly_behaved_A : A;
+fun badminton_N : N;
+fun badness_N : N;
+fun baffle_N : N;
+fun baffle_V2 : V2;
+fun bag_N : N;
+fun bag_V : V;
+fun bag_V2 : V2;
+fun bagatelle_N : N;
+fun baggage_N : N;
+fun baggy_A : A;
+fun baghdad_PN : PN;
+fun bagnio_N : N;
+fun bagpipe_N : N;
+fun bahamas_PN : PN;
+fun bahamian_A : A;
+fun bahamian_N : N;
+fun bahasa_N : N;
+fun bahrain_PN : PN;
+fun bahraini_A : A;
+fun bahraini_N : N;
+fun bail_N : N;
+fun bail_V : V;
+fun bail_V2 : V2;
+fun bailee_N : N;
+fun bailey_N : N;
+fun bailey_PN : PN;
+fun bailiff_N : N;
+fun bailment_N : N;
+fun bailor_N : N;
+fun bairn_N : N;
+fun bait_N : N;
+fun bait_V : V;
+fun bait_V2 : V2;
+fun baize_N : N;
+fun bake_V : V;
+fun bake_V2 : V2;
+fun bakelite_N : N;
+fun baker_N : N;
+fun bakery_N : N;
+fun baking_hot_A : A;
+fun baking_powder_N : N;
+fun baksheesh_N : N;
+fun baku_PN : PN;
+fun balaclava_N : N;
+fun balalaika_N : N;
+fun balance_N : N;
+fun balance_V : V;
+fun balance_V2 : V2;
+fun balance_sheet_N : N;
+fun balance_wheel_N : N;
+fun balconied_A : A;
+fun balcony_N : N;
+fun bald_A : A;
+fun bald_head_N : N;
+fun bald_pate_N : N;
+fun balderdash_N : N;
+fun baldly_Adv : Adv;
+fun baldness_N : N;
+fun baldock_PN : PN;
+fun baldric_N : N;
+fun bale_N : N;
+fun bale_V2 : V2;
+fun baleful_A : A;
+fun balefully_Adv : Adv;
+fun balk_N : N;
+fun balk_V : V;
+fun balk_V2 : V2;
+fun ball_N : N;
+fun ball_V : V;
+fun ball_V2 : V2;
+fun ball_cartridge_N : N;
+fun ball_dress_N : N;
+fun ballad_N : N;
+fun ballade_N : N;
+fun ballast_N : N;
+fun ballast_V2 : V2;
+fun ballbearing_N : N;
+fun ballcock_N : N;
+fun ballerina_N : N;
+fun ballet_N : N;
+fun ballet_dancer_N : N;
+fun ballet_skirt_N : N;
+fun ballistic_A : A;
+fun ballistics_N : N;
+fun ballock_N : N;
+fun balloon_N : N;
+fun balloon_V : V;
+fun balloonist_N : N;
+fun ballot_N : N;
+fun ballot_V : V;
+fun ballot_box_N : N;
+fun ballpen_N : N;
+fun ballpoint_N : N;
+fun ballpoint_pen_N : N;
+fun ballroom_N : N;
+fun balls_up_N : N;
+fun bally_A : A;
+fun bally_Adv : Adv;
+fun ballyhoo_N : N;
+fun balm_N : N;
+fun balmy_A : A;
+fun baloney_N : N;
+fun balsa_N : N;
+fun balsam_N : N;
+fun baltimore_PN : PN;
+fun baluster_N : N;
+fun balustrade_N : N;
+fun bambino_N : N;
+fun bamboo_N : N;
+fun bamboozle_V2 : V2;
+fun ban_N : N;
+fun ban_V2 : V2;
+fun banal_A : A;
+fun banality_N : N;
+fun banana_N : N;
+fun banbury_PN : PN;
+fun band_N : N;
+fun band_V : V;
+fun band_V2 : V2;
+fun band_saw_N : N;
+fun bandage_N : N;
+fun bandage_V2 : V2;
+fun bandanna_N : N;
+fun bandbox_N : N;
+fun bandeau_N : N;
+fun bandit_N : N;
+fun banditry_N : N;
+fun bandleader_N : N;
+fun bandmaster_N : N;
+fun bandoleer_N : N;
+fun bandolier_N : N;
+fun bandsman_N : N;
+fun bandstand_N : N;
+fun bandung_PN : PN;
+fun bandwagon_N : N;
+fun bandy_A : A;
+fun bandy_V2 : V2;
+fun bandy_legged_A : A;
+fun bane_N : N;
+fun baneful_A : A;
+fun banefully_Adv : Adv;
+fun bang_Adv : Adv;
+fun bang_N : N;
+fun bang_V : V;
+fun bang_V2 : V2;
+fun bangalore_PN : PN;
+fun banger_N : N;
+fun bangkok_PN : PN;
+fun bangladesh_PN : PN;
+fun bangladeshi_A : A;
+fun bangladeshi_N : N;
+fun bangle_N : N;
+fun bangor_PN : PN;
+fun banian_N : N;
+fun banian_tree_N : N;
+fun banish_V2 : V2;
+fun banishment_N : N;
+fun banister_N : N;
+fun banjo_N : N;
+fun bank_N : N;
+fun bank_V : V;
+fun bank_V2 : V2;
+fun bank_bill_N : N;
+fun bank_book_N : N;
+fun bank_draft_N : N;
+fun bank_rate_N : N;
+fun banker_N : N;
+fun banking_N : N;
+fun banknote_N : N;
+fun bankroll_N : N;
+fun bankrupt_A : A;
+fun bankrupt_N : N;
+fun bankrupt_V2 : V2;
+fun bankruptcy_N : N;
+fun banner_N : N;
+fun banning_order_N : N;
+fun bannister_N : N;
+fun bannock_N : N;
+fun bannockburn_PN : PN;
+fun banquet_N : N;
+fun banquet_V : V;
+fun banquet_V2 : V2;
+fun banshee_N : N;
+fun bant_V : V;
+fun bantam_N : N;
+fun banter_N : N;
+fun banter_V : V;
+fun banter_V2 : V2;
+fun bantering_A : A;
+fun banteringly_Adv : Adv;
+fun banting_N : N;
+fun bantry_PN : PN;
+fun bantu_A : A;
+fun bantu_N : N;
+fun banyan_N : N;
+fun baobab_N : N;
+fun baptism_N : N;
+fun baptismal_A : A;
+fun baptist_A : A;
+fun baptist_N : N;
+fun baptize_V2 : V2;
+fun bar_N : N;
+fun bar_V2 : V2;
+fun baracaldo_PN : PN;
+fun barb_N : N;
+fun barbadian_A : A;
+fun barbadian_N : N;
+fun barbados_PN : PN;
+fun barbara_PN : PN;
+fun barbarian_A : A;
+fun barbarian_N : N;
+fun barbaric_A : A;
+fun barbarism_N : N;
+fun barbarity_N : N;
+fun barbarize_V2 : V2;
+fun barbarous_A : A;
+fun barbarously_Adv : Adv;
+fun barbecue_N : N;
+fun barbecue_V2 : V2;
+fun barbed_A : A;
+fun barbel_N : N;
+fun barber_N : N;
+fun barbican_N : N;
+fun barbitone_N : N;
+fun barbiturate_N : N;
+fun barcarole_N : N;
+fun barcarolle_N : N;
+fun barcelona_PN : PN;
+fun bard_N : N;
+fun bardic_A : A;
+fun bardolatry_N : N;
+fun bare_A : A;
+fun bare_V2 : V2;
+fun bareback_Adv : Adv;
+fun barebacked_A : A;
+fun barebacked_Adv : Adv;
+fun barefaced_A : A;
+fun barefacedly_Adv : Adv;
+fun barefoot_Adv : Adv;
+fun barefooted_A : A;
+fun barefooted_Adv : Adv;
+fun bareheaded_A : A;
+fun barelegged_A : A;
+fun barely_Adv : Adv;
+fun bareness_N : N;
+fun bargain_N : N;
+fun bargain_V : V;
+fun bargain_V2 : V2;
+fun barge_N : N;
+fun barge_V : V;
+fun bargee_N : N;
+fun bargepole_N : N;
+fun bargoed_PN : PN;
+fun bari_PN : PN;
+fun baritone_N : N;
+fun barium_N : N;
+fun bark_N : N;
+fun bark_V : V;
+fun bark_V2 : V2;
+fun barker_N : N;
+fun barking_PN : PN;
+fun barley_N : N;
+fun barley_sugar_N : N;
+fun barley_water_N : N;
+fun barleycorn_N : N;
+fun barm_N : N;
+fun barmaid_N : N;
+fun barman_N : N;
+fun barmy_A : A;
+fun barn_N : N;
+fun barn_door_N : N;
+fun barnacle_N : N;
+fun barnard_castle_PN : PN;
+fun barnet_PN : PN;
+fun barnoldswick_PN : PN;
+fun barnsley_PN : PN;
+fun barnstaple_PN : PN;
+fun barnstorm_V : V;
+fun barnstormer_N : N;
+fun barnyard_N : N;
+fun barometer_N : N;
+fun barometric_A : A;
+fun baron_N : N;
+fun baronage_N : N;
+fun baroness_N : N;
+fun baronet_N : N;
+fun baronetcy_N : N;
+fun baronial_A : A;
+fun barony_N : N;
+fun baroque_A : A;
+fun baroque_N : N;
+fun barouche_N : N;
+fun barque_N : N;
+fun barrack_N : N;
+fun barrack_V : V;
+fun barrack_V2 : V2;
+fun barracking_N : N;
+fun barracuda_N : N;
+fun barrage_N : N;
+fun barranquilla_PN : PN;
+fun barrel_N : N;
+fun barrel_V2 : V2;
+fun barrelled_A : A;
+fun barren_A : A;
+fun barrenness_N : N;
+fun barrhead_PN : PN;
+fun barricade_N : N;
+fun barricade_V2 : V2;
+fun barrier_N : N;
+fun barrister_N : N;
+fun barrow_N : N;
+fun barrow_boy_N : N;
+fun barrow_in_furness_PN : PN;
+fun barrow_man_N : N;
+fun barry_PN : PN;
+fun bart_PN : PN;
+fun bartender_N : N;
+fun barter_N : N;
+fun barter_V : V;
+fun barter_V2 : V2;
+fun barterer_N : N;
+fun bartholomew_PN : PN;
+fun barton_upon_humber_PN : PN;
+fun bas_relief_N : N;
+fun basal_A : A;
+fun basalt_N : N;
+fun bascule_N : N;
+fun base_A : A;
+fun base_N : N;
+fun base_V2 : V2;
+fun baseball_N : N;
+fun baseboard_N : N;
+fun basel_PN : PN;
+fun baseless_A : A;
+fun basement_N : N;
+fun bash_N : N;
+fun bash_V2 : V2;
+fun bashful_A : A;
+fun bashfully_Adv : Adv;
+fun basic_A : A;
+fun basically_Adv : Adv;
+fun basil_N : N;
+fun basil_PN : PN;
+fun basildon_PN : PN;
+fun basilica_N : N;
+fun basilisk_N : N;
+fun basin_N : N;
+fun basingstoke_PN : PN;
+fun basis_N : N;
+fun bask_V : V;
+fun basket_N : N;
+fun basketball_N : N;
+fun basketry_N : N;
+fun bass_A : A;
+fun bass_N : N;
+fun bassinet_N : N;
+fun bassoon_N : N;
+fun bast_N : N;
+fun bastard_N : N;
+fun bastardize_V2 : V2;
+fun bastardy_N : N;
+fun baste_V2 : V2;
+fun bastinado_N : N;
+fun bastinado_V2 : V2;
+fun bastion_N : N;
+fun bat_N : N;
+fun bat_V : V;
+fun bat_V2 : V2;
+fun batch_N : N;
+fun bate_V2 : V2;
+fun bath_N : N;
+fun bath_PN : PN;
+fun bath_V : V;
+fun bath_V2 : V2;
+fun bath_chair_N : N;
+fun bathe_N : N;
+fun bathe_V : V;
+fun bathe_V2 : V2;
+fun bather_N : N;
+fun bathgate_PN : PN;
+fun bathing_N : N;
+fun bathing_cap_N : N;
+fun bathing_costume_N : N;
+fun bathing_machine_N : N;
+fun bathing_suit_N : N;
+fun bathos_N : N;
+fun bathrobe_N : N;
+fun bathroom_N : N;
+fun bathtub_N : N;
+fun bathysphere_N : N;
+fun batik_N : N;
+fun batiste_N : N;
+fun batley_PN : PN;
+fun batman_N : N;
+fun baton_N : N;
+fun bats_A : A;
+fun batsman_N : N;
+fun battalion_N : N;
+fun batten_N : N;
+fun batten_V : V;
+fun batten_V2 : V2;
+fun batter_N : N;
+fun batter_V : V;
+fun batter_V2 : V2;
+fun battery_N : N;
+fun batting_N : N;
+fun battle_N : N;
+fun battle_V : V;
+fun battle_axe_N : N;
+fun battle_cruiser_N : N;
+fun battledore_N : N;
+fun battledress_N : N;
+fun battlefield_N : N;
+fun battleground_N : N;
+fun battleship_N : N;
+fun battue_N : N;
+fun batty_A : A;
+fun bauble_N : N;
+fun baulk_N : N;
+fun baulk_V : V;
+fun baulk_V2 : V2;
+fun bauxite_N : N;
+fun bawbee_N : N;
+fun bawd_N : N;
+fun bawdily_Adv : Adv;
+fun bawdy_A : A;
+fun bawdy_N : N;
+fun bawl_V : V;
+fun bawl_V2 : V2;
+fun bay_A : A;
+fun bay_N : N;
+fun bay_V : V;
+fun bay_wreath_N : N;
+fun bayonet_N : N;
+fun bayonet_V2 : V2;
+fun bayou_N : N;
+fun bazaar_N : N;
+fun bazooka_N : N;
+fun bbc_PN : PN;
+fun beach_N : N;
+fun beach_V2 : V2;
+fun beachcomber_N : N;
+fun beachhead_N : N;
+fun beachwear_N : N;
+fun beacon_N : N;
+fun beacon_fire_N : N;
+fun beacon_light_N : N;
+fun beaconsfield_PN : PN;
+fun bead_N : N;
+fun beading_N : N;
+fun beadle_N : N;
+fun beady_A : A;
+fun beagle_N : N;
+fun beagling_N : N;
+fun beak_N : N;
+fun beaker_N : N;
+fun beam_N : N;
+fun beam_V : V;
+fun beam_V2 : V2;
+fun bean_N : N;
+fun beanfeast_N : N;
+fun beano_N : N;
+fun beanstalk_N : N;
+fun bear_N : N;
+fun bear_V : V;
+fun bear_V2 : V2;
+fun bearable_A : A;
+fun beard_N : N;
+fun beard_V2 : V2;
+fun bearded_A : A;
+fun beardless_A : A;
+fun bearer_N : N;
+fun bearing_N : N;
+fun bearish_A : A;
+fun bearsden_PN : PN;
+fun bearskin_N : N;
+fun beast_N : N;
+fun beastliness_N : N;
+fun beastly_A : A;
+fun beastly_Adv : Adv;
+fun beat_A : A;
+fun beat_N : N;
+fun beat_V : V;
+fun beat_V2 : V2;
+fun beaten_A : A;
+fun beater_N : N;
+fun beatific_A : A;
+fun beatification_N : N;
+fun beatify_V2 : V2;
+fun beating_N : N;
+fun beatitude_N : N;
+fun beatnik_N : N;
+fun beatrice_PN : PN;
+fun beau_N : N;
+fun beaujolais_N : N;
+fun beaumaris_PN : PN;
+fun beauteous_A : A;
+fun beautician_N : N;
+fun beautiful_A : A;
+fun beautifully_Adv : Adv;
+fun beautify_V2 : V2;
+fun beauty_N : N;
+fun beauty_parlour_N : N;
+fun beauty_salon_N : N;
+fun beauty_sleep_N : N;
+fun beauty_spot_N : N;
+fun beaver_N : N;
+fun beaver_V : V;
+fun bebington_PN : PN;
+fun becalmed_A : A;
+fun beccles_PN : PN;
+fun beck_N : N;
+fun beckon_V : V;
+fun beckon_V2 : V2;
+fun become_V : V;
+fun become_V2 : V2;
+fun becoming_A : A;
+fun becomingly_Adv : Adv;
+fun bed_N : N;
+fun bed_V2 : V2;
+fun bedaubed_A : A;
+fun bedbug_N : N;
+fun beddau_PN : PN;
+fun bedded_A : A;
+fun bedding_N : N;
+fun bedecked_A : A;
+fun bedevil_V2 : V2;
+fun bedevilment_N : N;
+fun bedewed_A : A;
+fun bedfellow_N : N;
+fun bedford_PN : PN;
+fun bedfordshire_PN : PN;
+fun bedimmed_A : A;
+fun bedlam_N : N;
+fun bedlington_PN : PN;
+fun bedouin_N : N;
+fun bedpan_N : N;
+fun bedpost_N : N;
+fun bedraggled_A : A;
+fun bedridden_A : A;
+fun bedrock_N : N;
+fun bedroll_N : N;
+fun bedroom_N : N;
+fun bedroomed_A : A;
+fun bedside_N : N;
+fun bedsit_N : N;
+fun bedsitter_N : N;
+fun bedsitting_room_N : N;
+fun bedsore_N : N;
+fun bedspread_N : N;
+fun bedstead_N : N;
+fun bedtime_N : N;
+fun beduin_N : N;
+fun bedwas_PN : PN;
+fun bee_N : N;
+fun beech_N : N;
+fun beef_N : N;
+fun beef_V : V;
+fun beefeater_N : N;
+fun beefsteak_N : N;
+fun beefy_A : A;
+fun beehive_N : N;
+fun beep_N : N;
+fun beer_N : N;
+fun beery_A : A;
+fun beeswax_N : N;
+fun beeswax_V2 : V2;
+fun beet_N : N;
+fun beetle_N : N;
+fun beetle_V : V;
+fun beetle_browed_A : A;
+fun beetroot_N : N;
+fun befall_V : V;
+fun befall_V2 : V2;
+fun befit_V2 : V2;
+fun befitting_A : A;
+fun befittingly_Adv : Adv;
+fun befogged_A : A;
+fun before_Adv : Adv;
+fun beforehand_A : A;
+fun beforehand_Adv : Adv;
+fun befoul_V2 : V2;
+fun befriend_V2 : V2;
+fun beg_V : V;
+fun beg_V2 : V2;
+fun beget_V2 : V2;
+fun begetter_N : N;
+fun beggar_N : N;
+fun beggar_V2 : V2;
+fun beggarly_A : A;
+fun beggarman_N : N;
+fun beggarwoman_N : N;
+fun beggary_N : N;
+fun begin_V : V;
+fun begin_V2 : V2;
+fun beginner_N : N;
+fun beginning_N : N;
+fun begonia_N : N;
+fun begrimed_A : A;
+fun begrudge_V2 : V2;
+fun beguile_V2 : V2;
+fun begum_N : N;
+fun behalf_N : N;
+fun behave_V : V;
+fun behaved_A : A;
+fun behaviour_N : N;
+fun behaviourism_N : N;
+fun behaviourist_N : N;
+fun behead_V2 : V2;
+fun behest_N : N;
+fun behind_Adv : Adv;
+fun behind_N : N;
+fun behindhand_A : A;
+fun behold_V2 : V2;
+fun beholden_A : A;
+fun beholder_N : N;
+fun behove_V2 : V2;
+fun beige_N : N;
+fun being_N : N;
+fun beirut_PN : PN;
+fun beith_PN : PN;
+fun bejewelled_A : A;
+fun belabour_V2 : V2;
+fun belated_A : A;
+fun belatedly_Adv : Adv;
+fun belay_N : N;
+fun belay_V2 : V2;
+fun belaying_pin_N : N;
+fun belch_N : N;
+fun belch_V : V;
+fun belch_V2 : V2;
+fun beldam_N : N;
+fun beldame_N : N;
+fun beleaguer_V2 : V2;
+fun belem_PN : PN;
+fun belfast_PN : PN;
+fun belfry_N : N;
+fun belgian_A : A;
+fun belgian_N : N;
+fun belgium_PN : PN;
+fun belgrade_PN : PN;
+fun belie_V2 : V2;
+fun belief_N : N;
+fun believable_A : A;
+fun believe_V : V;
+fun believe_V2 : V2;
+fun believer_N : N;
+fun believing_N : N;
+fun belike_Adv : Adv;
+fun belinda_PN : PN;
+fun belittle_V2 : V2;
+fun bell_N : N;
+fun bell_V2 : V2;
+fun bell_bottomed_A : A;
+fun bell_buoy_N : N;
+fun bell_flower_N : N;
+fun bell_founder_N : N;
+fun bell_foundry_N : N;
+fun bell_metal_N : N;
+fun bell_push_N : N;
+fun bell_ringer_N : N;
+fun bell_tent_N : N;
+fun bella_PN : PN;
+fun belladonna_N : N;
+fun bellboy_N : N;
+fun belle_N : N;
+fun belle_PN : PN;
+fun bellhop_N : N;
+fun bellicose_A : A;
+fun bellied_A : A;
+fun belligerency_N : N;
+fun belligerent_A : A;
+fun belligerent_N : N;
+fun belligerently_Adv : Adv;
+fun bellow_V : V;
+fun bellow_V2 : V2;
+fun bellshill_PN : PN;
+fun bellwether_N : N;
+fun belly_N : N;
+fun belly_V : V;
+fun belly_V2 : V2;
+fun bellyache_N : N;
+fun bellyache_V : V;
+fun bellyflop_N : N;
+fun bellyful_N : N;
+fun bellyland_V : V;
+fun bellylaugh_N : N;
+fun bellylaugh_V : V;
+fun belo_horizonte_PN : PN;
+fun belong_V : V;
+fun beloved_A : A;
+fun beloved_N : N;
+fun below_Adv : Adv;
+fun belper_PN : PN;
+fun belt_N : N;
+fun belt_V2 : V2;
+fun belting_N : N;
+fun bemoan_V2 : V2;
+fun bemused_A : A;
+fun ben_N : N;
+fun ben_PN : PN;
+fun bench_N : N;
+fun bend_N : N;
+fun bend_V : V;
+fun bend_V2 : V2;
+fun beneath_Adv : Adv;
+fun benedick_N : N;
+fun benedictine_A : A;
+fun benedictine_N : N;
+fun benediction_N : N;
+fun benefaction_N : N;
+fun benefactor_N : N;
+fun benefactress_N : N;
+fun benefice_N : N;
+fun beneficed_A : A;
+fun beneficence_N : N;
+fun beneficent_A : A;
+fun beneficial_A : A;
+fun beneficially_Adv : Adv;
+fun beneficiary_N : N;
+fun benefit_N : N;
+fun benefit_V : V;
+fun benefit_V2 : V2;
+fun benevolence_N : N;
+fun benevolent_A : A;
+fun benevolently_Adv : Adv;
+fun bengali_A : A;
+fun bengali_N : N;
+fun benighted_A : A;
+fun benign_A : A;
+fun benignant_A : A;
+fun benignantly_Adv : Adv;
+fun benignity_N : N;
+fun benignly_Adv : Adv;
+fun benin_PN : PN;
+fun beninese_A : A;
+fun beninese_N : N;
+fun benison_N : N;
+fun benjamin_PN : PN;
+fun benny_PN : PN;
+fun bent_A : A;
+fun bent_N : N;
+fun benumbed_A : A;
+fun benzedrine_N : N;
+fun benzene_N : N;
+fun benzine_N : N;
+fun benzol_N : N;
+fun beograd_PN : PN;
+fun bequeath_V2 : V2;
+fun bequest_N : N;
+fun berate_V2 : V2;
+fun bereave_V2 : V2;
+fun bereavement_N : N;
+fun beret_N : N;
+fun berg_N : N;
+fun bergamo_PN : PN;
+fun bergen_PN : PN;
+fun beri_beri_N : N;
+fun berkhamsted_PN : PN;
+fun berkshire_PN : PN;
+fun berlin_PN : PN;
+fun bermuda_PN : PN;
+fun bermudan_A : A;
+fun bermudan_N : N;
+fun bern_PN : PN;
+fun bernard_PN : PN;
+fun bernie_PN : PN;
+fun berry_N : N;
+fun berserk_A : A;
+fun bert_PN : PN;
+fun berth_N : N;
+fun berth_V : V;
+fun berth_V2 : V2;
+fun bertha_PN : PN;
+fun bertie_PN : PN;
+fun berwick_upon_tweed_PN : PN;
+fun beryl_N : N;
+fun beryl_PN : PN;
+fun beseech_V2 : V2;
+fun beseeching_A : A;
+fun beseechingly_Adv : Adv;
+fun beseem_V2 : V2;
+fun beset_V2 : V2;
+fun beshrew_V2 : V2;
+fun besides_Adv : Adv;
+fun besiege_V2 : V2;
+fun besieger_N : N;
+fun besmear_V2 : V2;
+fun besmirch_V2 : V2;
+fun besom_N : N;
+fun besotted_A : A;
+fun bespangled_A : A;
+fun bespattered_A : A;
+fun bespeak_V2 : V2;
+fun bespectacled_A : A;
+fun bess_PN : PN;
+fun bessie_PN : PN;
+fun best_Adv : Adv;
+fun best_V2 : V2;
+fun best_seller_N : N;
+fun bestial_A : A;
+fun bestiality_N : N;
+fun bestially_Adv : Adv;
+fun bestiary_N : N;
+fun bestir_V2 : V2;
+fun bestow_V2 : V2;
+fun bestowal_N : N;
+fun bestrew_V2 : V2;
+fun bestride_V2 : V2;
+fun bet_N : N;
+fun bet_V : V;
+fun bet_V2 : V2;
+fun beta_N : N;
+fun betake_V2 : V2;
+fun betel_N : N;
+fun betel_nut_N : N;
+fun bethel_N : N;
+fun bethink_V2 : V2;
+fun bethune_PN : PN;
+fun betide_V2 : V2;
+fun betimes_Adv : Adv;
+fun betoken_V2 : V2;
+fun betray_V2 : V2;
+fun betrayal_N : N;
+fun betrayer_N : N;
+fun betroth_V2 : V2;
+fun betrothal_N : N;
+fun betrothed_N : N;
+fun betsy_PN : PN;
+fun better_Adv : Adv;
+fun better_N : N;
+fun better_V2 : V2;
+fun betterment_N : N;
+fun bettor_N : N;
+fun betty_PN : PN;
+fun between_Adv : Adv;
+fun betwixt_Adv : Adv;
+fun bevel_N : N;
+fun bevel_V2 : V2;
+fun beverage_N : N;
+fun beverley_PN : PN;
+fun bevy_N : N;
+fun bewail_V2 : V2;
+fun beware_V : V;
+fun beware_V2 : V2;
+fun bewdley_PN : PN;
+fun bewilder_V2 : V2;
+fun bewildering_A : A;
+fun bewilderment_N : N;
+fun bewitch_V2 : V2;
+fun bewitching_A : A;
+fun bewitchingly_Adv : Adv;
+fun bexhill_PN : PN;
+fun bexley_PN : PN;
+fun bey_N : N;
+fun beyond_Adv : Adv;
+fun bezique_N : N;
+fun bhang_N : N;
+fun bhutan_PN : PN;
+fun bhutani_A : A;
+fun bhutani_N : N;
+fun bias_N : N;
+fun bias_V2 : V2;
+fun bib_N : N;
+fun bib_V : V;
+fun bible_N : N;
+fun biblical_A : A;
+fun bibliographer_N : N;
+fun bibliography_N : N;
+fun bibliophile_N : N;
+fun bibulous_A : A;
+fun bicameral_A : A;
+fun bicarbonate_N : N;
+fun bicentenary_N : N;
+fun bicentennial_A : A;
+fun bicentennial_N : N;
+fun biceps_N : N;
+fun bicester_PN : PN;
+fun bicker_V : V;
+fun bicycle_N : N;
+fun bicycle_V : V;
+fun bid_N : N;
+fun bid_V : V;
+fun bid_V2 : V2;
+fun biddable_A : A;
+fun bidder_N : N;
+fun bidding_N : N;
+fun biddulph_PN : PN;
+fun bide_V2 : V2;
+fun bideford_PN : PN;
+fun bidet_N : N;
+fun bielefeld_PN : PN;
+fun biennial_A : A;
+fun biennial_N : N;
+fun biennially_Adv : Adv;
+fun bier_N : N;
+fun biff_N : N;
+fun biff_V2 : V2;
+fun bifocal_A : A;
+fun bifurcate_A : A;
+fun bifurcate_V : V;
+fun bifurcate_V2 : V2;
+fun bifurcated_A : A;
+fun bifurcation_N : N;
+fun big_A : A;
+fun big_boned_A : A;
+fun bigamist_N : N;
+fun bigamous_A : A;
+fun bigamy_N : N;
+fun biggleswade_PN : PN;
+fun bight_N : N;
+fun bigot_N : N;
+fun bigoted_A : A;
+fun bigotry_N : N;
+fun bigwig_N : N;
+fun bijou_A : A;
+fun bijou_N : N;
+fun bike_N : N;
+fun bike_V : V;
+fun bikini_N : N;
+fun bilabial_A : A;
+fun bilabial_N : N;
+fun bilateral_A : A;
+fun bilateralism_N : N;
+fun bilaterally_Adv : Adv;
+fun bilbao_PN : PN;
+fun bilberry_N : N;
+fun bile_N : N;
+fun bile_duct_N : N;
+fun bilge_N : N;
+fun bilge_water_N : N;
+fun bilharzia_N : N;
+fun bilingual_A : A;
+fun bilingual_N : N;
+fun bilious_A : A;
+fun biliousness_N : N;
+fun bilk_V2 : V2;
+fun bill_N : N;
+fun bill_PN : PN;
+fun bill_V : V;
+fun bill_V2 : V2;
+fun bill_poster_N : N;
+fun bill_sticker_N : N;
+fun billboard_N : N;
+fun billericay_PN : PN;
+fun billet_N : N;
+fun billet_V2 : V2;
+fun billet_doux_N : N;
+fun billfold_N : N;
+fun billhook_N : N;
+fun billiard_marker_N : N;
+fun billiard_player_N : N;
+fun billiard_room_N : N;
+fun billiard_table_N : N;
+fun billiards_N : N;
+fun billingsgate_N : N;
+fun billington_PN : PN;
+fun billion_A : A;
+fun billion_N : N;
+fun billionth_A : A;
+fun billionth_N : N;
+fun billow_N : N;
+fun billow_V : V;
+fun billowy_A : A;
+fun billy_N : N;
+fun billy_PN : PN;
+fun billy_goat_N : N;
+fun billy_ho_N : N;
+fun billy_o_N : N;
+fun biltong_N : N;
+fun bimetallic_A : A;
+fun bimetallism_N : N;
+fun bin_N : N;
+fun binary_A : A;
+fun bind_N : N;
+fun bind_V : V;
+fun bind_V2 : V2;
+fun binder_N : N;
+fun bindery_N : N;
+fun binding_A : A;
+fun bindweed_N : N;
+fun bine_N : N;
+fun binge_N : N;
+fun bingley_PN : PN;
+fun bingo_N : N;
+fun binnacle_N : N;
+fun binomial_A : A;
+fun biochemistry_N : N;
+fun biodegradable_A : A;
+fun biograph_N : N;
+fun biographer_N : N;
+fun biographic_A : A;
+fun biographical_A : A;
+fun biography_N : N;
+fun biological_A : A;
+fun biologically_Adv : Adv;
+fun biologist_N : N;
+fun biology_N : N;
+fun bioscope_N : N;
+fun bipartisan_A : A;
+fun biped_N : N;
+fun biplane_N : N;
+fun birch_N : N;
+fun birch_V2 : V2;
+fun birch_rod_N : N;
+fun bird's_eye_A : A;
+fun bird_N : N;
+fun bird_fancier_N : N;
+fun birdcage_N : N;
+fun birdlime_N : N;
+fun birdnesting_N : N;
+fun birdwatcher_N : N;
+fun biretta_N : N;
+fun birkenhead_PN : PN;
+fun biro_N : N;
+fun birstall_PN : PN;
+fun birth_N : N;
+fun birth_control_N : N;
+fun birthday_N : N;
+fun birthmark_N : N;
+fun birthplace_N : N;
+fun birthrate_N : N;
+fun birthright_N : N;
+fun birtley_PN : PN;
+fun biscuit_N : N;
+fun bisect_V2 : V2;
+fun bisection_N : N;
+fun bisexual_A : A;
+fun bisexual_N : N;
+fun bisexuality_N : N;
+fun bishop's_cleeve_PN : PN;
+fun bishop's_stortford_PN : PN;
+fun bishop_N : N;
+fun bishop_auckland_PN : PN;
+fun bishopbriggs_PN : PN;
+fun bishopric_N : N;
+fun bismuth_N : N;
+fun bison_N : N;
+fun bistro_N : N;
+fun bit_N : N;
+fun bitch_N : N;
+fun bitch_V : V;
+fun bitchy_A : A;
+fun bite_N : N;
+fun bite_V : V;
+fun bite_V2 : V2;
+fun biting_A : A;
+fun bitingly_Adv : Adv;
+fun bitter_A : A;
+fun bitter_N : N;
+fun bitter_sweet_A : A;
+fun bitterly_Adv : Adv;
+fun bittern_N : N;
+fun bitterness_N : N;
+fun bitumen_N : N;
+fun bituminous_A : A;
+fun bivalve_N : N;
+fun bivouac_N : N;
+fun bivouac_V : V;
+fun biz_N : N;
+fun bizarre_A : A;
+fun bizonal_A : A;
+fun blab_V : V;
+fun blab_V2 : V2;
+fun blabber_V : V;
+fun blabber_V2 : V2;
+fun blabbermouth_N : N;
+fun black_A : A;
+fun black_N : N;
+fun black_V2 : V2;
+fun black_beetle_N : N;
+fun black_lead_N : N;
+fun black_lead_V2 : V2;
+fun blackamoor_N : N;
+fun blackball_V2 : V2;
+fun blackberry_N : N;
+fun blackbird_N : N;
+fun blackboard_N : N;
+fun blackburn_PN : PN;
+fun blackcurrant_N : N;
+fun blacken_V : V;
+fun blacken_V2 : V2;
+fun blackguard_N : N;
+fun blackguard_V2 : V2;
+fun blackguardly_A : A;
+fun blackhall_PN : PN;
+fun blackhead_N : N;
+fun blacking_N : N;
+fun blackish_A : A;
+fun blackleg_N : N;
+fun blackleg_V : V;
+fun blackleg_V2 : V2;
+fun blacklist_N : N;
+fun blacklist_V2 : V2;
+fun blackmail_N : N;
+fun blackmail_V2 : V2;
+fun blackmailer_N : N;
+fun blackness_N : N;
+fun blackout_N : N;
+fun blackpool_PN : PN;
+fun blackshirt_N : N;
+fun blacksmith_N : N;
+fun blackthorn_N : N;
+fun blackwater_A : A;
+fun blackwood_PN : PN;
+fun bladder_N : N;
+fun blade_N : N;
+fun blaeberry_N : N;
+fun blaenau_ffestiniog_PN : PN;
+fun blaenavon_PN : PN;
+fun blaengwrach_PN : PN;
+fun blah_N : N;
+fun blaina_PN : PN;
+fun blairgowrie_PN : PN;
+fun blame_N : N;
+fun blame_V2 : V2;
+fun blameless_A : A;
+fun blamelessly_Adv : Adv;
+fun blameworthy_A : A;
+fun blanch_V : V;
+fun blanch_V2 : V2;
+fun blancmange_N : N;
+fun bland_A : A;
+fun blandishment_N : N;
+fun blandly_Adv : Adv;
+fun blandness_N : N;
+fun blank_A : A;
+fun blank_N : N;
+fun blanket_N : N;
+fun blanket_V2 : V2;
+fun blankly_Adv : Adv;
+fun blantyre_PN : PN;
+fun blare_N : N;
+fun blare_V : V;
+fun blare_V2 : V2;
+fun blarney_N : N;
+fun blaspheme_V : V;
+fun blaspheme_V2 : V2;
+fun blasphemer_N : N;
+fun blasphemous_A : A;
+fun blasphemously_Adv : Adv;
+fun blasphemy_N : N;
+fun blast_N : N;
+fun blast_V2 : V2;
+fun blast_furnace_N : N;
+fun blast_off_N : N;
+fun blasted_A : A;
+fun blase_A : A;
+fun blatant_A : A;
+fun blatantly_Adv : Adv;
+fun blather_N : N;
+fun blather_V : V;
+fun blaze_N : N;
+fun blaze_V : V;
+fun blaze_V2 : V2;
+fun blazer_N : N;
+fun blazing_A : A;
+fun blazon_N : N;
+fun blazon_V2 : V2;
+fun blazonry_N : N;
+fun bldg_PN : PN;
+fun bldgs_PN : PN;
+fun bleach_N : N;
+fun bleach_V : V;
+fun bleach_V2 : V2;
+fun bleaching_powder_N : N;
+fun bleak_A : A;
+fun bleakly_Adv : Adv;
+fun bleary_A : A;
+fun bleary_eyed_A : A;
+fun bleat_N : N;
+fun bleat_V : V;
+fun bleat_V2 : V2;
+fun bleed_V : V;
+fun bleed_V2 : V2;
+fun bleep_N : N;
+fun bleep_V : V;
+fun blemish_N : N;
+fun blemish_V2 : V2;
+fun blench_V : V;
+fun blend_N : N;
+fun blend_V : V;
+fun blend_V2 : V2;
+fun bless_V2 : V2;
+fun blessed_A : A;
+fun blessedness_N : N;
+fun blessing_N : N;
+fun bletchley_PN : PN;
+fun blether_N : N;
+fun blether_V : V;
+fun blidworth_PN : PN;
+fun blight_N : N;
+fun blight_V2 : V2;
+fun blighter_N : N;
+fun blighty_N : N;
+fun blimp_N : N;
+fun blind_A : A;
+fun blind_N : N;
+fun blind_V2 : V2;
+fun blindfold_A : A;
+fun blindfold_N : N;
+fun blindfold_V2 : V2;
+fun blindly_Adv : Adv;
+fun blindman's_buff_N : N;
+fun blindness_N : N;
+fun blink_N : N;
+fun blink_V : V;
+fun blink_V2 : V2;
+fun blinking_A : A;
+fun blip_N : N;
+fun bliss_N : N;
+fun blissful_A : A;
+fun blissfully_Adv : Adv;
+fun blister_N : N;
+fun blister_V : V;
+fun blister_V2 : V2;
+fun blithe_A : A;
+fun blithely_Adv : Adv;
+fun blithering_A : A;
+fun blithesome_A : A;
+fun blitz_N : N;
+fun blitz_V2 : V2;
+fun blizzard_N : N;
+fun bloated_A : A;
+fun bloater_N : N;
+fun blob_N : N;
+fun bloc_N : N;
+fun block_N : N;
+fun block_V2 : V2;
+fun blockade_N : N;
+fun blockade_V2 : V2;
+fun blockade_runner_N : N;
+fun blockage_N : N;
+fun blockbuster_N : N;
+fun blockhead_N : N;
+fun blockhouse_N : N;
+fun bloke_N : N;
+fun blond_A : A;
+fun blond_N : N;
+fun blonde_A : A;
+fun blonde_N : N;
+fun blood_N : N;
+fun blood_V2 : V2;
+fun blood_bath_N : N;
+fun blood_donor_N : N;
+fun blood_group_N : N;
+fun blood_heat_N : N;
+fun blood_letting_N : N;
+fun blood_money_N : N;
+fun blood_poisoning_N : N;
+fun blood_pressure_N : N;
+fun blood_relation_N : N;
+fun blood_transfusion_N : N;
+fun blood_type_N : N;
+fun blood_vessel_N : N;
+fun bloodcurdling_A : A;
+fun bloodhound_N : N;
+fun bloodless_A : A;
+fun bloodlessly_Adv : Adv;
+fun bloodlust_N : N;
+fun bloodshed_N : N;
+fun bloodshot_A : A;
+fun bloodstain_N : N;
+fun bloodstained_A : A;
+fun bloodstock_N : N;
+fun bloodsucker_N : N;
+fun bloodthirstiness_N : N;
+fun bloodthirsty_A : A;
+fun bloody_A : A;
+fun bloody_Adv : Adv;
+fun bloody_minded_A : A;
+fun bloom_N : N;
+fun bloom_V : V;
+fun bloomer_N : N;
+fun blooming_A : A;
+fun blossom_N : N;
+fun blossom_V : V;
+fun blot_N : N;
+fun blot_V2 : V2;
+fun blotch_N : N;
+fun blotter_N : N;
+fun blotting_paper_N : N;
+fun blotto_A : A;
+fun blouse_N : N;
+fun blow_N : N;
+fun blow_V : V;
+fun blow_V2 : V2;
+fun blow_dry_V2 : V2;
+fun blow_up_N : N;
+fun blowback_N : N;
+fun blower_N : N;
+fun blowfly_N : N;
+fun blowhole_N : N;
+fun blowing_up_N : N;
+fun blowlamp_N : N;
+fun blowout_N : N;
+fun blowpipe_N : N;
+fun blowtorch_N : N;
+fun blowzy_A : A;
+fun blubber_N : N;
+fun blubber_V : V;
+fun blubber_V2 : V2;
+fun bludgeon_N : N;
+fun bludgeon_V2 : V2;
+fun blue_A : A;
+fun blue_N : N;
+fun blue_V2 : V2;
+fun blue_collar_A : A;
+fun blue_jacket_N : N;
+fun blue_pencil_V2 : V2;
+fun bluebell_N : N;
+fun bluebottle_N : N;
+fun blueprint_N : N;
+fun bluestocking_N : N;
+fun bluff_A : A;
+fun bluff_N : N;
+fun bluff_V : V;
+fun bluff_V2 : V2;
+fun bluffer_N : N;
+fun bluffly_Adv : Adv;
+fun bluffness_N : N;
+fun bluish_A : A;
+fun blunder_N : N;
+fun blunder_V : V;
+fun blunder_V2 : V2;
+fun blunderbuss_N : N;
+fun blunderer_N : N;
+fun blunt_A : A;
+fun blunt_V2 : V2;
+fun bluntly_Adv : Adv;
+fun bluntness_N : N;
+fun blur_N : N;
+fun blur_V : V;
+fun blur_V2 : V2;
+fun blurb_N : N;
+fun blurt_V2 : V2;
+fun blush_N : N;
+fun blush_V : V;
+fun blushing_A : A;
+fun blushingly_Adv : Adv;
+fun bluster_N : N;
+fun bluster_V : V;
+fun bluster_V2 : V2;
+fun blustery_A : A;
+fun blvd_N : N;
+fun blyth_PN : PN;
+fun bma_N : N;
+fun bmus_N : N;
+fun bo'ness_PN : PN;
+fun bo'sn_N : N;
+fun bo'sun_N : N;
+fun boa_N : N;
+fun boa_constrictor_N : N;
+fun boar_N : N;
+fun board_N : N;
+fun board_V : V;
+fun board_V2 : V2;
+fun boarder_N : N;
+fun boarding_N : N;
+fun boarding_card_N : N;
+fun boarding_house_N : N;
+fun boarding_school_N : N;
+fun boardroom_N : N;
+fun boardwalk_N : N;
+fun boast_N : N;
+fun boast_V : V;
+fun boast_V2 : V2;
+fun boaster_N : N;
+fun boastful_A : A;
+fun boastfully_Adv : Adv;
+fun boat_N : N;
+fun boat_V : V;
+fun boat_hook_N : N;
+fun boat_house_N : N;
+fun boat_race_N : N;
+fun boat_train_N : N;
+fun boater_N : N;
+fun boatman_N : N;
+fun boatswain_N : N;
+fun bob_N : N;
+fun bob_PN : PN;
+fun bob_V : V;
+fun bob_V2 : V2;
+fun bobbin_N : N;
+fun bobby_N : N;
+fun bobby_PN : PN;
+fun bobby_soxer_N : N;
+fun bobolink_N : N;
+fun bobsled_N : N;
+fun bobsleigh_N : N;
+fun bobtail_N : N;
+fun boche_A : A;
+fun bochum_PN : PN;
+fun bode_V : V;
+fun bode_V2 : V2;
+fun bodice_N : N;
+fun bodied_A : A;
+fun bodily_A : A;
+fun bodily_Adv : Adv;
+fun boding_N : N;
+fun bodkin_N : N;
+fun bodmin_PN : PN;
+fun body_N : N;
+fun body_servant_N : N;
+fun body_snatcher_N : N;
+fun bodyguard_N : N;
+fun bodywork_N : N;
+fun boer_A : A;
+fun boer_N : N;
+fun boffin_N : N;
+fun bog_N : N;
+fun bog_V : V;
+fun bog_V2 : V2;
+fun bogey_N : N;
+fun bogeyman_N : N;
+fun boggle_V : V;
+fun boggy_A : A;
+fun bogie_N : N;
+fun bognor_PN : PN;
+fun bognor_regis_PN : PN;
+fun bogota_PN : PN;
+fun bogus_A : A;
+fun bogy_N : N;
+fun bohemian_A : A;
+fun bohemian_N : N;
+fun boil_N : N;
+fun boil_V : V;
+fun boil_V2 : V2;
+fun boiler_N : N;
+fun boilersuit_N : N;
+fun boiling_point_N : N;
+fun boisterous_A : A;
+fun boisterously_Adv : Adv;
+fun boisterousness_N : N;
+fun bold_A : A;
+fun boldly_Adv : Adv;
+fun boldness_N : N;
+fun boldon_PN : PN;
+fun bole_N : N;
+fun bolero_N : N;
+fun bolivia_PN : PN;
+fun bolivian_A : A;
+fun bolivian_N : N;
+fun boll_N : N;
+fun bollard_N : N;
+fun bollington_PN : PN;
+fun bollock_N : N;
+fun bologna_PN : PN;
+fun boloney_N : N;
+fun bolshevik_N : N;
+fun bolshy_A : A;
+fun bolsover_PN : PN;
+fun bolster_N : N;
+fun bolster_V2 : V2;
+fun bolt_Adv : Adv;
+fun bolt_N : N;
+fun bolt_V : V;
+fun bolt_V2 : V2;
+fun bolt_hole_N : N;
+fun bolton_PN : PN;
+fun bolton_le_sands_PN : PN;
+fun bolzano_PN : PN;
+fun bomb_N : N;
+fun bomb_V : V;
+fun bomb_V2 : V2;
+fun bomb_proof_A : A;
+fun bomb_sight_N : N;
+fun bomb_site_N : N;
+fun bombard_V2 : V2;
+fun bombardier_N : N;
+fun bombardment_N : N;
+fun bombast_N : N;
+fun bombastic_A : A;
+fun bombastically_Adv : Adv;
+fun bombay_PN : PN;
+fun bomber_N : N;
+fun bombshell_N : N;
+fun bon_mot_N : N;
+fun bona_fide_A : A;
+fun bona_fide_Adv : Adv;
+fun bonanza_N : N;
+fun bonbon_N : N;
+fun bond_N : N;
+fun bond_V2 : V2;
+fun bond_holder_N : N;
+fun bondage_N : N;
+fun bone_N : N;
+fun bone_V2 : V2;
+fun bone_dry_A : A;
+fun bone_head_N : N;
+fun bone_idle_A : A;
+fun bone_lazy_A : A;
+fun bone_setter_N : N;
+fun boneless_A : A;
+fun bonemeal_N : N;
+fun boner_N : N;
+fun boneshaker_N : N;
+fun bonfire_N : N;
+fun bongo_N : N;
+fun bonhomie_N : N;
+fun bonito_N : N;
+fun bonkers_A : A;
+fun bonn_PN : PN;
+fun bonnet_N : N;
+fun bonnily_Adv : Adv;
+fun bonny_A : A;
+fun bonnybridge_PN : PN;
+fun bonnyrigg_PN : PN;
+fun bonus_N : N;
+fun bony_A : A;
+fun boo_N : N;
+fun boo_V : V;
+fun boo_V2 : V2;
+fun boob_N : N;
+fun boob_V : V;
+fun booby_N : N;
+fun booby_trap_N : N;
+fun boogie_N : N;
+fun boogie_woogie_N : N;
+fun book_N : N;
+fun book_V2 : V2;
+fun book_end_N : N;
+fun book_keeper_N : N;
+fun bookable_A : A;
+fun bookcase_N : N;
+fun bookclub_N : N;
+fun bookie_N : N;
+fun booking_N : N;
+fun bookish_A : A;
+fun bookishness_N : N;
+fun bookkeeper_N : N;
+fun bookkeeping_N : N;
+fun booklet_N : N;
+fun bookmaker_N : N;
+fun bookmark_N : N;
+fun bookmarker_N : N;
+fun bookmobile_N : N;
+fun bookseller_N : N;
+fun bookshop_N : N;
+fun bookstall_N : N;
+fun bookworm_N : N;
+fun boom_N : N;
+fun boom_V : V;
+fun boom_V2 : V2;
+fun boomerang_N : N;
+fun boon_A : A;
+fun boon_N : N;
+fun boor_N : N;
+fun boorish_A : A;
+fun boorishly_Adv : Adv;
+fun boorishness_N : N;
+fun boost_N : N;
+fun boost_V2 : V2;
+fun booster_N : N;
+fun boot_N : N;
+fun boot_V2 : V2;
+fun booted_A : A;
+fun bootee_N : N;
+fun booth_N : N;
+fun bootlace_N : N;
+fun bootle_PN : PN;
+fun bootleg_V2 : V2;
+fun bootlegger_N : N;
+fun bootless_A : A;
+fun booty_N : N;
+fun booze_N : N;
+fun booze_V : V;
+fun booze_up_N : N;
+fun boozer_N : N;
+fun boozy_A : A;
+fun bopeep_N : N;
+fun boracic_A : A;
+fun borage_N : N;
+fun borax_N : N;
+fun bordeaux_N : N;
+fun bordeaux_PN : PN;
+fun border_N : N;
+fun border_V : V;
+fun border_V2 : V2;
+fun borderer_N : N;
+fun borderland_N : N;
+fun borderline_N : N;
+fun borders_PN : PN;
+fun bordon_PN : PN;
+fun bore_N : N;
+fun bore_V : V;
+fun bore_V2 : V2;
+fun bore_hole_N : N;
+fun boredom_N : N;
+fun borer_N : N;
+fun boric_A : A;
+fun boring_A : A;
+fun boris_PN : PN;
+fun boron_N : N;
+fun borough_N : N;
+fun borrow_V2 : V2;
+fun borrower_N : N;
+fun borsch_N : N;
+fun borstal_N : N;
+fun bortsch_N : N;
+fun borzoi_N : N;
+fun bosh_N : N;
+fun bosky_A : A;
+fun bosom_N : N;
+fun boss_N : N;
+fun boss_V2 : V2;
+fun boss_eyed_A : A;
+fun bossy_A : A;
+fun boston_PN : PN;
+fun botanical_A : A;
+fun botanist_N : N;
+fun botanize_V : V;
+fun botany_N : N;
+fun botch_N : N;
+fun botch_V2 : V2;
+fun botcher_N : N;
+fun both_A : A;
+fun both_Adv : Adv;
+fun bother_N : N;
+fun bother_V : V;
+fun bother_V2 : V2;
+fun bothersome_A : A;
+fun botswana_PN : PN;
+fun bottle_N : N;
+fun bottle_V2 : V2;
+fun bottle_fed_A : A;
+fun bottle_green_A : A;
+fun bottleneck_N : N;
+fun bottom_N : N;
+fun bottom_V : V;
+fun bottomless_A : A;
+fun bottrop_PN : PN;
+fun botulism_N : N;
+fun boudoir_N : N;
+fun bougainvillea_N : N;
+fun bough_N : N;
+fun bouillon_N : N;
+fun boulder_N : N;
+fun boulevard_N : N;
+fun bounce_N : N;
+fun bounce_V : V;
+fun bounce_V2 : V2;
+fun bouncing_A : A;
+fun bouncy_A : A;
+fun bound_A : A;
+fun bound_N : N;
+fun bound_V : V;
+fun bound_V2 : V2;
+fun boundary_N : N;
+fun bounden_A : A;
+fun bounder_N : N;
+fun boundless_A : A;
+fun boundlessly_Adv : Adv;
+fun bounteous_A : A;
+fun bounteously_Adv : Adv;
+fun bountiful_A : A;
+fun bountifully_Adv : Adv;
+fun bounty_N : N;
+fun bouquet_N : N;
+fun bourbon_N : N;
+fun bourgeois_A : A;
+fun bourgeois_N : N;
+fun bourgeoisie_N : N;
+fun bourn_N : N;
+fun bourne_N : N;
+fun bourne_PN : PN;
+fun bournemouth_PN : PN;
+fun bourse_N : N;
+fun bout_N : N;
+fun boutique_N : N;
+fun bovine_A : A;
+fun bovril_N : N;
+fun bow_N : N;
+fun bow_V : V;
+fun bow_V2 : V2;
+fun bow_wow_N : N;
+fun bowburn_PN : PN;
+fun bowdlerize_V2 : V2;
+fun bowel_N : N;
+fun bower_N : N;
+fun bowie_knife_N : N;
+fun bowing_N : N;
+fun bowl_N : N;
+fun bowl_V : V;
+fun bowl_V2 : V2;
+fun bowler_N : N;
+fun bowline_N : N;
+fun bowling_green_N : N;
+fun bowls_N : N;
+fun bowman_N : N;
+fun bowsprit_N : N;
+fun box_N : N;
+fun box_V : V;
+fun box_V2 : V2;
+fun box_kite_N : N;
+fun box_number_N : N;
+fun box_office_N : N;
+fun boxer_N : N;
+fun boxful_N : N;
+fun boxing_N : N;
+fun boxing_day_N : N;
+fun boxing_day_PN : PN;
+fun boxing_glove_N : N;
+fun boxing_match_N : N;
+fun boxwood_N : N;
+fun boy_N : N;
+fun boycott_N : N;
+fun boycott_V2 : V2;
+fun boyfriend_N : N;
+fun boyhood_N : N;
+fun boyish_A : A;
+fun boyishly_Adv : Adv;
+fun bra_N : N;
+fun brace_N : N;
+fun brace_V : V;
+fun brace_V2 : V2;
+fun bracelet_N : N;
+fun bracken_N : N;
+fun bracket_N : N;
+fun bracket_V2 : V2;
+fun brackish_A : A;
+fun bracknell_PN : PN;
+fun bract_N : N;
+fun brad_N : N;
+fun bradawl_N : N;
+fun bradford_PN : PN;
+fun bradford_on_avon_PN : PN;
+fun brae_N : N;
+fun brag_V : V;
+fun braggart_N : N;
+fun bragging_N : N;
+fun brahmin_N : N;
+fun braid_N : N;
+fun braid_V2 : V2;
+fun braille_N : N;
+fun brain_N : N;
+fun brain_V2 : V2;
+fun brain_fag_N : N;
+fun brain_teaser_N : N;
+fun brainchild_N : N;
+fun brainless_A : A;
+fun brainstorm_N : N;
+fun braintree_PN : PN;
+fun brainwash_V2 : V2;
+fun brainwashed_A : A;
+fun brainwashing_N : N;
+fun brainwave_N : N;
+fun brainy_A : A;
+fun braise_V2 : V2;
+fun brake_N : N;
+fun brake_V : V;
+fun brake_V2 : V2;
+fun brakeman_N : N;
+fun bramble_N : N;
+fun bran_N : N;
+fun bran_new_A : A;
+fun branch_N : N;
+fun branch_V : V;
+fun branchy_A : A;
+fun brand_N : N;
+fun brand_V2 : V2;
+fun brand_new_A : A;
+fun branderburgh_PN : PN;
+fun branding_iron_N : N;
+fun brandish_V2 : V2;
+fun brandy_N : N;
+fun brandy_ball_N : N;
+fun brandy_snap_N : N;
+fun brash_A : A;
+fun brasilia_PN : PN;
+fun brass_N : N;
+fun brassard_N : N;
+fun brasserie_N : N;
+fun brassiere_1_N : N;
+fun brassiere_2_N : N;
+fun brassy_A : A;
+fun brat_N : N;
+fun bratislava_PN : PN;
+fun braunschweig_PN : PN;
+fun braunton_PN : PN;
+fun bravado_N : N;
+fun brave_A : A;
+fun brave_N : N;
+fun brave_V2 : V2;
+fun bravely_Adv : Adv;
+fun bravery_N : N;
+fun bravo_N : N;
+fun brawl_N : N;
+fun brawl_V : V;
+fun brawler_N : N;
+fun brawn_N : N;
+fun brawny_A : A;
+fun bray_N : N;
+fun bray_V2 : V2;
+fun braze_V2 : V2;
+fun brazen_A : A;
+fun brazen_V2 : V2;
+fun brazen_faced_A : A;
+fun brazier_N : N;
+fun brazil_PN : PN;
+fun brazilian_A : A;
+fun brazilian_N : N;
+fun breach_N : N;
+fun breach_V2 : V2;
+fun bread_N : N;
+fun breadcrumb_N : N;
+fun breadfruit_N : N;
+fun breadline_N : N;
+fun breadth_N : N;
+fun breadthways_Adv : Adv;
+fun breadthwise_Adv : Adv;
+fun breadwinner_N : N;
+fun break_N : N;
+fun break_V : V;
+fun break_V2 : V2;
+fun break_in_N : N;
+fun break_up_N : N;
+fun breakable_A : A;
+fun breakage_N : N;
+fun breakaway_N : N;
+fun breakaways_N : N;
+fun breakdown_N : N;
+fun breaker_N : N;
+fun breakfast_N : N;
+fun breakfast_V : V;
+fun breakneck_A : A;
+fun breakthrough_N : N;
+fun breakwater_N : N;
+fun bream_N : N;
+fun breast_N : N;
+fun breast_V2 : V2;
+fun breast_deep_Adv : Adv;
+fun breast_fed_A : A;
+fun breast_high_Adv : Adv;
+fun breast_plate_N : N;
+fun breastfeed_V : V;
+fun breastfeed_V2 : V2;
+fun breaston_PN : PN;
+fun breaststroke_N : N;
+fun breastwork_N : N;
+fun breath_N : N;
+fun breathalyser_N : N;
+fun breathe_V : V;
+fun breathe_V2 : V2;
+fun breather_N : N;
+fun breathing_N : N;
+fun breathing_space_N : N;
+fun breathless_A : A;
+fun breathlessly_Adv : Adv;
+fun breathtaking_A : A;
+fun brecknock_PN : PN;
+fun breda_PN : PN;
+fun breech_N : N;
+fun breech_block_N : N;
+fun breeches_buoy_N : N;
+fun breed_N : N;
+fun breed_V : V;
+fun breed_V2 : V2;
+fun breeder_N : N;
+fun breeding_N : N;
+fun breedsall_PN : PN;
+fun breeze_N : N;
+fun breeze_V : V;
+fun breezily_Adv : Adv;
+fun breeziness_N : N;
+fun breezy_A : A;
+fun bremen_PN : PN;
+fun bremerhaven_PN : PN;
+fun bren_N : N;
+fun bren_gun_N : N;
+fun brenda_PN : PN;
+fun brent_PN : PN;
+fun brentwood_PN : PN;
+fun brescia_PN : PN;
+fun brest_PN : PN;
+fun breve_N : N;
+fun brevet_N : N;
+fun breviary_N : N;
+fun brevity_N : N;
+fun brew_N : N;
+fun brew_V : V;
+fun brew_V2 : V2;
+fun brewer_N : N;
+fun brewery_N : N;
+fun brian_PN : PN;
+fun briar_N : N;
+fun bribable_A : A;
+fun bribe_N : N;
+fun bribe_V2 : V2;
+fun bribery_N : N;
+fun bric_a_brac_N : N;
+fun brick_N : N;
+fun brick_V2 : V2;
+fun brick_field_N : N;
+fun brickbat_N : N;
+fun bricket_wood_PN : PN;
+fun brickkiln_N : N;
+fun bricklayer_N : N;
+fun brickwork_N : N;
+fun bridal_A : A;
+fun bridal_N : N;
+fun bride_N : N;
+fun bridecake_N : N;
+fun bridegroom_N : N;
+fun bridesmaid_N : N;
+fun bridge_N : N;
+fun bridge_V2 : V2;
+fun bridgehead_N : N;
+fun bridgend_PN : PN;
+fun bridget_PN : PN;
+fun bridgnorth_PN : PN;
+fun bridgwater_PN : PN;
+fun bridle_N : N;
+fun bridle_V : V;
+fun bridle_V2 : V2;
+fun bridle_path_N : N;
+fun bridle_road_N : N;
+fun bridlington_PN : PN;
+fun bridport_PN : PN;
+fun brief_A : A;
+fun brief_N : N;
+fun brief_V2 : V2;
+fun briefcase_N : N;
+fun briefing_N : N;
+fun briefly_Adv : Adv;
+fun brier_N : N;
+fun brig_N : N;
+fun brig_PN : PN;
+fun brigade_N : N;
+fun brigadier_N : N;
+fun brigand_N : N;
+fun brigantine_N : N;
+fun brighouse_PN : PN;
+fun bright_A : A;
+fun bright_Adv : Adv;
+fun brighten_V : V;
+fun brighten_V2 : V2;
+fun brightlingsea_PN : PN;
+fun brightly_Adv : Adv;
+fun brightness_N : N;
+fun brighton_PN : PN;
+fun brill_N : N;
+fun brilliance_N : N;
+fun brilliancy_N : N;
+fun brilliant_A : A;
+fun brilliantine_N : N;
+fun brilliantly_Adv : Adv;
+fun brim_N : N;
+fun brim_V : V;
+fun brimful_A : A;
+fun brimfull_A : A;
+fun brimstone_N : N;
+fun brindled_A : A;
+fun brine_N : N;
+fun bring_V2 : V2;
+fun brink_N : N;
+fun brinkmanship_N : N;
+fun briny_A : A;
+fun brioche_N : N;
+fun briquet_N : N;
+fun briquette_N : N;
+fun brisbane_PN : PN;
+fun brisk_A : A;
+fun brisket_N : N;
+fun briskly_Adv : Adv;
+fun bristle_N : N;
+fun bristle_V : V;
+fun bristly_A : A;
+fun bristol_PN : PN;
+fun brit_N : N;
+fun britain_PN : PN;
+fun britannic_A : A;
+fun british_A : A;
+fun britisher_N : N;
+fun briton_A : A;
+fun briton_N : N;
+fun brittle_A : A;
+fun brixham_PN : PN;
+fun brno_PN : PN;
+fun broach_V : V;
+fun broach_V2 : V2;
+fun broad_A : A;
+fun broad_N : N;
+fun broad_minded_A : A;
+fun broad_mindedness_N : N;
+fun broadcast_Adv : Adv;
+fun broadcast_N : N;
+fun broadcast_V : V;
+fun broadcast_V2 : V2;
+fun broadcasting_A : A;
+fun broadcasting_N : N;
+fun broadcloth_N : N;
+fun broaden_V : V;
+fun broaden_V2 : V2;
+fun broadly_Adv : Adv;
+fun broadness_N : N;
+fun broadsheet_N : N;
+fun broadside_N : N;
+fun broadways_Adv : Adv;
+fun broadwise_Adv : Adv;
+fun brocade_N : N;
+fun brocade_V2 : V2;
+fun broccoli_N : N;
+fun brochure_N : N;
+fun brogue_N : N;
+fun broil_V : V;
+fun broil_V2 : V2;
+fun broiler_N : N;
+fun broke_A : A;
+fun broken_hearted_A : A;
+fun broker_N : N;
+fun brokerage_N : N;
+fun brolly_N : N;
+fun bromide_N : N;
+fun bromine_N : N;
+fun bromley_PN : PN;
+fun bromsgrove_PN : PN;
+fun bronchial_A : A;
+fun bronchitic_A : A;
+fun bronchitis_N : N;
+fun bronchus_N : N;
+fun bronco_N : N;
+fun bronze_N : N;
+fun bronze_V : V;
+fun bronze_V2 : V2;
+fun brooch_N : N;
+fun brood_N : N;
+fun brood_V : V;
+fun brood_hen_N : N;
+fun brood_mare_N : N;
+fun broody_A : A;
+fun brook_N : N;
+fun brook_V2 : V2;
+fun broom_N : N;
+fun broomstick_N : N;
+fun bros_PN : PN;
+fun broth_N : N;
+fun brothel_N : N;
+fun brother_N : N;
+fun brother_in_law_N : N;
+fun brotherhood_N : N;
+fun brotherly_A : A;
+fun brougham_N : N;
+fun broughton_PN : PN;
+fun brouhaha_N : N;
+fun brow_N : N;
+fun browbeat_V2 : V2;
+fun brown_A : A;
+fun brown_V : V;
+fun brown_V2 : V2;
+fun brownie_N : N;
+fun brownish_A : A;
+fun brownstone_N : N;
+fun browse_N : N;
+fun browse_V : V;
+fun broxburn_PN : PN;
+fun bruce_PN : PN;
+fun bruges_PN : PN;
+fun bruin_N : N;
+fun bruise_N : N;
+fun bruise_V : V;
+fun bruise_V2 : V2;
+fun bruiser_N : N;
+fun bruit_V2 : V2;
+fun brunch_N : N;
+fun brunei_PN : PN;
+fun bruneian_A : A;
+fun bruneian_N : N;
+fun brunette_N : N;
+fun brunswick_PN : PN;
+fun brunt_N : N;
+fun brush_N : N;
+fun brush_V : V;
+fun brush_V2 : V2;
+fun brush_off_N : N;
+fun brush_up_N : N;
+fun brushwood_N : N;
+fun brushwork_N : N;
+fun brusque_A : A;
+fun brusquely_Adv : Adv;
+fun brusqueness_N : N;
+fun brussels_PN : PN;
+fun brutal_A : A;
+fun brutality_N : N;
+fun brutalize_V2 : V2;
+fun brutally_Adv : Adv;
+fun brute_N : N;
+fun brutish_A : A;
+fun brutishly_Adv : Adv;
+fun bryan_PN : PN;
+fun bsc_N : N;
+fun bst_PN : PN;
+fun bt_PN : PN;
+fun bubble_N : N;
+fun bubble_V : V;
+fun bubbly_A : A;
+fun bubbly_N : N;
+fun bubonic_A : A;
+fun bucarest_PN : PN;
+fun buccaneer_N : N;
+fun buck_N : N;
+fun buck_V : V;
+fun buck_V2 : V2;
+fun bucket_N : N;
+fun bucket_V : V;
+fun bucketful_N : N;
+fun buckhaven_PN : PN;
+fun buckie_PN : PN;
+fun buckingham_PN : PN;
+fun buckinghamshire_PN : PN;
+fun buckle_N : N;
+fun buckle_V : V;
+fun buckle_V2 : V2;
+fun buckler_N : N;
+fun buckley_PN : PN;
+fun buckram_N : N;
+fun bucksburn_PN : PN;
+fun buckshot_N : N;
+fun buckskin_N : N;
+fun bucktooth_N : N;
+fun buckwheat_N : N;
+fun bucolic_A : A;
+fun bucolics_N : N;
+fun bud_N : N;
+fun bud_V : V;
+fun budapest_PN : PN;
+fun buddhism_N : N;
+fun buddhist_N : N;
+fun budding_A : A;
+fun buddy_N : N;
+fun budge_V : V;
+fun budge_V2 : V2;
+fun budgerigar_N : N;
+fun budget_N : N;
+fun budget_V : V;
+fun budgetary_A : A;
+fun budgie_N : N;
+fun buenos_aires_PN : PN;
+fun buff_N : N;
+fun buff_V2 : V2;
+fun buffalo_N : N;
+fun buffalo_PN : PN;
+fun buffer_N : N;
+fun buffet_N : N;
+fun buffet_V : V;
+fun buffet_V2 : V2;
+fun buffoon_N : N;
+fun buffoonery_N : N;
+fun bug_N : N;
+fun bug_V2 : V2;
+fun bug_hunter_N : N;
+fun bugaboo_N : N;
+fun bugbear_N : N;
+fun bugger_N : N;
+fun bugger_V : V;
+fun bugger_V2 : V2;
+fun bugger_all_N : N;
+fun buggery_N : N;
+fun buggy_N : N;
+fun bugle_N : N;
+fun bugler_N : N;
+fun buhl_N : N;
+fun build_N : N;
+fun build_V : V;
+fun build_V2 : V2;
+fun build_up_N : N;
+fun builder_N : N;
+fun building_N : N;
+fun building_society_N : N;
+fun built_in_A : A;
+fun built_up_A : A;
+fun bulb_N : N;
+fun bulbous_A : A;
+fun bulbul_N : N;
+fun bulgaria_PN : PN;
+fun bulgarian_A : A;
+fun bulgarian_N : N;
+fun bulge_N : N;
+fun bulge_V : V;
+fun bulge_V2 : V2;
+fun bulk_N : N;
+fun bulk_V : V;
+fun bulkhead_N : N;
+fun bulkington_PN : PN;
+fun bulky_A : A;
+fun bull's_eye_N : N;
+fun bull_N : N;
+fun bull_headed_A : A;
+fun bull_neck_N : N;
+fun bull_terrier_N : N;
+fun bulldog_N : N;
+fun bulldoze_V2 : V2;
+fun bulldozer_N : N;
+fun bullet_N : N;
+fun bullet_headed_A : A;
+fun bulletin_N : N;
+fun bulletproof_A : A;
+fun bullfight_N : N;
+fun bullfighter_N : N;
+fun bullfinch_N : N;
+fun bullfrog_N : N;
+fun bullion_N : N;
+fun bullock_N : N;
+fun bullring_N : N;
+fun bullshit_N : N;
+fun bullshit_V : V;
+fun bully_A : A;
+fun bully_N : N;
+fun bully_V : V;
+fun bully_V2 : V2;
+fun bulrush_N : N;
+fun bulwark_N : N;
+fun bum_A : A;
+fun bum_N : N;
+fun bum_V : V;
+fun bum_V2 : V2;
+fun bumblebee_N : N;
+fun bumboat_N : N;
+fun bump_Adv : Adv;
+fun bump_N : N;
+fun bump_V : V;
+fun bump_V2 : V2;
+fun bumper_N : N;
+fun bumpkin_N : N;
+fun bumptious_A : A;
+fun bumptiously_Adv : Adv;
+fun bumptiousness_N : N;
+fun bumpy_A : A;
+fun bun_N : N;
+fun buna_N : N;
+fun bunch_N : N;
+fun bunch_V : V;
+fun bunch_V2 : V2;
+fun bundle_N : N;
+fun bundle_V : V;
+fun bundle_V2 : V2;
+fun bung_N : N;
+fun bung_V2 : V2;
+fun bung_hole_N : N;
+fun bungaloid_A : A;
+fun bungalow_N : N;
+fun bungle_N : N;
+fun bungle_V : V;
+fun bungle_V2 : V2;
+fun bungler_N : N;
+fun bunion_N : N;
+fun bunk_N : N;
+fun bunk_V : V;
+fun bunker_N : N;
+fun bunker_V : V;
+fun bunker_V2 : V2;
+fun bunkum_N : N;
+fun bunny_N : N;
+fun bunsen_N : N;
+fun bunting_N : N;
+fun buoy_N : N;
+fun buoy_V : V;
+fun buoyancy_N : N;
+fun buoyant_A : A;
+fun buoyantly_Adv : Adv;
+fun bur_N : N;
+fun burberry_N : N;
+fun burble_V : V;
+fun burden_N : N;
+fun burden_V2 : V2;
+fun burdensome_A : A;
+fun burdock_N : N;
+fun bureau_N : N;
+fun bureaucracy_N : N;
+fun bureaucrat_N : N;
+fun bureaucratic_A : A;
+fun bureaucratically_Adv : Adv;
+fun burette_N : N;
+fun burg_N : N;
+fun burgeon_V : V;
+fun burgess_N : N;
+fun burgess_PN : PN;
+fun burgh_N : N;
+fun burgher_N : N;
+fun burglar_N : N;
+fun burglar_alarm_N : N;
+fun burglar_proof_A : A;
+fun burglarious_A : A;
+fun burglary_N : N;
+fun burgle_V : V;
+fun burgle_V2 : V2;
+fun burgomaster_N : N;
+fun burgos_PN : PN;
+fun burgundy_N : N;
+fun burial_N : N;
+fun burial_ground_N : N;
+fun burke_V2 : V2;
+fun burlap_N : N;
+fun burlesque_N : N;
+fun burlesque_V2 : V2;
+fun burley_PN : PN;
+fun burly_A : A;
+fun burma_PN : PN;
+fun burmese_A : A;
+fun burmese_N : N;
+fun burn_N : N;
+fun burn_V : V;
+fun burn_V2 : V2;
+fun burn_up_N : N;
+fun burner_N : N;
+fun burnham_on_sea_PN : PN;
+fun burning_A : A;
+fun burnish_V : V;
+fun burnish_V2 : V2;
+fun burnley_PN : PN;
+fun burnouse_N : N;
+fun burntisland_PN : PN;
+fun burntwood_PN : PN;
+fun burp_N : N;
+fun burp_V : V;
+fun burp_V2 : V2;
+fun burr_N : N;
+fun burr_drill_N : N;
+fun burrow_N : N;
+fun burrow_V : V;
+fun burrow_V2 : V2;
+fun burry_port_PN : PN;
+fun bursar_N : N;
+fun bursary_N : N;
+fun burscough_PN : PN;
+fun burst_N : N;
+fun burst_V : V;
+fun burst_V2 : V2;
+fun burthen_N : N;
+fun burthen_V2 : V2;
+fun burton_N : N;
+fun burton_upon_trent_PN : PN;
+fun burundi_PN : PN;
+fun burundian_A : A;
+fun burundian_N : N;
+fun bury_PN : PN;
+fun bury_V2 : V2;
+fun bury_st__edmunds_PN : PN;
+fun burying_ground_N : N;
+fun bus_N : N;
+fun bus_V : V;
+fun bus_V2 : V2;
+fun busby_N : N;
+fun bush_N : N;
+fun bushel_N : N;
+fun bushman_N : N;
+fun bushy_A : A;
+fun busily_Adv : Adv;
+fun business_N : N;
+fun businesslike_A : A;
+fun businessman_N : N;
+fun busker_N : N;
+fun busman_N : N;
+fun bust_N : N;
+fun bust_V : V;
+fun bust_V2 : V2;
+fun bust_up_N : N;
+fun bustard_N : N;
+fun buster_N : N;
+fun bustle_N : N;
+fun bustle_V : V;
+fun bustle_V2 : V2;
+fun busy_A : A;
+fun busy_V2 : V2;
+fun busybody_N : N;
+fun but_Adv : Adv;
+fun butane_N : N;
+fun butch_A : A;
+fun butcher_N : N;
+fun butcher_V2 : V2;
+fun butchery_N : N;
+fun butler_N : N;
+fun butt_N : N;
+fun butt_V : V;
+fun butt_V2 : V2;
+fun butter_N : N;
+fun butter_V2 : V2;
+fun butterbean_N : N;
+fun buttercup_N : N;
+fun butterfingers_N : N;
+fun butterfly_N : N;
+fun buttermilk_N : N;
+fun butterscotch_N : N;
+fun buttery_N : N;
+fun buttock_N : N;
+fun button_N : N;
+fun button_V : V;
+fun button_V2 : V2;
+fun buttoned_up_A : A;
+fun buttonhole_N : N;
+fun buttonhole_V2 : V2;
+fun buttonhook_N : N;
+fun buttonwood_N : N;
+fun buttress_N : N;
+fun buttress_V2 : V2;
+fun buxom_A : A;
+fun buxton_PN : PN;
+fun buy_N : N;
+fun buy_V : V;
+fun buy_V2 : V2;
+fun buyer_N : N;
+fun buzz_N : N;
+fun buzz_V : V;
+fun buzz_V2 : V2;
+fun buzzard_N : N;
+fun buzzer_N : N;
+fun bvm_N : N;
+fun by_Adv : Adv;
+fun by_election_N : N;
+fun bye_N : N;
+fun bye_bye_N : N;
+fun bye_law_N : N;
+fun bygone_A : A;
+fun bylaw_N : N;
+fun bypass_N : N;
+fun bypass_V2 : V2;
+fun bypath_N : N;
+fun byplay_N : N;
+fun byproduct_N : N;
+fun byroad_N : N;
+fun bystander_N : N;
+fun byway_N : N;
+fun byword_N : N;
+fun bete_noire_N : N;
+fun c_in_c_PN : PN;
+fun c_of_e_N : N;
+fun ca'canny_N : N;
+fun cab_N : N;
+fun cab_rank_N : N;
+fun cabal_N : N;
+fun cabaret_N : N;
+fun cabbage_N : N;
+fun cabby_N : N;
+fun caber_N : N;
+fun cabin_N : N;
+fun cabinet_N : N;
+fun cabinet_maker_N : N;
+fun cable's_length_N : N;
+fun cable_N : N;
+fun cable_V : V;
+fun cable_V2 : V2;
+fun cable_car_N : N;
+fun cable_length_N : N;
+fun cable_railway_N : N;
+fun cablegram_N : N;
+fun cabman_N : N;
+fun caboodle_N : N;
+fun caboose_N : N;
+fun cabstand_N : N;
+fun cacao_N : N;
+fun cacao_bean_N : N;
+fun cacao_tree_N : N;
+fun cache_N : N;
+fun cache_V2 : V2;
+fun cachet_N : N;
+fun cachou_N : N;
+fun cackle_N : N;
+fun cackle_V : V;
+fun cackler_N : N;
+fun cacophonous_A : A;
+fun cacophony_N : N;
+fun cactus_N : N;
+fun cad_N : N;
+fun cadaver_N : N;
+fun cadaverous_A : A;
+fun caddie_N : N;
+fun caddish_A : A;
+fun caddy_N : N;
+fun cadence_N : N;
+fun cadenza_N : N;
+fun cadet_N : N;
+fun cadge_V : V;
+fun cadge_V2 : V2;
+fun cadger_N : N;
+fun cadiz_PN : PN;
+fun cadmium_N : N;
+fun cadre_N : N;
+fun caen_PN : PN;
+fun caerleon_PN : PN;
+fun caernarfon_PN : PN;
+fun caerphilly_PN : PN;
+fun caesar_N : N;
+fun caesarian_A : A;
+fun caesura_N : N;
+fun cafe_au_lait_N : N;
+fun cafeteria_N : N;
+fun caff_N : N;
+fun caffeine_N : N;
+fun caftan_N : N;
+fun cafe_N : N;
+fun cage_N : N;
+fun cage_V2 : V2;
+fun cagey_A : A;
+fun cagily_Adv : Adv;
+fun cagliari_PN : PN;
+fun cagoule_N : N;
+fun caiman_N : N;
+fun cairn_N : N;
+fun cairo_PN : PN;
+fun caisson_N : N;
+fun caitiff_N : N;
+fun cajole_V2 : V2;
+fun cajolery_N : N;
+fun cake_N : N;
+fun cake_V : V;
+fun cake_V2 : V2;
+fun calabash_N : N;
+fun calamitous_A : A;
+fun calamity_N : N;
+fun calcify_V : V;
+fun calcify_V2 : V2;
+fun calcination_N : N;
+fun calcine_V : V;
+fun calcine_V2 : V2;
+fun calcium_N : N;
+fun calculable_A : A;
+fun calculate_V : V;
+fun calculate_V2 : V2;
+fun calculating_A : A;
+fun calculation_N : N;
+fun calculator_N : N;
+fun calculus_N : N;
+fun calcutta_PN : PN;
+fun caldicot_PN : PN;
+fun caldron_N : N;
+fun calendar_N : N;
+fun calender_N : N;
+fun calender_V2 : V2;
+fun calf_N : N;
+fun calf_love_N : N;
+fun cali_PN : PN;
+fun calibrate_V2 : V2;
+fun calibration_N : N;
+fun calibre_N : N;
+fun calico_N : N;
+fun calif_N : N;
+fun california_PN : PN;
+fun californian_A : A;
+fun californian_N : N;
+fun caliph_N : N;
+fun caliphate_N : N;
+fun calisthenics_N : N;
+fun calk_N : N;
+fun calk_V2 : V2;
+fun call_N : N;
+fun call_V : V;
+fun call_V2 : V2;
+fun call_box_N : N;
+fun call_girl_N : N;
+fun call_over_N : N;
+fun call_up_N : N;
+fun caller_N : N;
+fun calligraphy_N : N;
+fun calling_N : N;
+fun calliope_N : N;
+fun callisthenics_N : N;
+fun callosity_N : N;
+fun callous_A : A;
+fun callousness_N : N;
+fun callow_A : A;
+fun callowness_N : N;
+fun callus_N : N;
+fun calm_A : A;
+fun calm_N : N;
+fun calm_V : V;
+fun calm_V2 : V2;
+fun calmly_Adv : Adv;
+fun calmness_N : N;
+fun calne_PN : PN;
+fun calomel_N : N;
+fun calor_PN : PN;
+fun calorie_N : N;
+fun calorific_A : A;
+fun calumniate_V2 : V2;
+fun calumny_N : N;
+fun calvary_N : N;
+fun calve_V : V;
+fun calverton_PN : PN;
+fun calvinism_N : N;
+fun calvinist_N : N;
+fun calypso_N : N;
+fun calyx_N : N;
+fun cam_N : N;
+fun camaraderie_N : N;
+fun camber_N : N;
+fun camber_V : V;
+fun camber_V2 : V2;
+fun cambodia_PN : PN;
+fun cambodian_A : A;
+fun cambodian_N : N;
+fun cambourne_PN : PN;
+fun cambric_N : N;
+fun cambridge_PN : PN;
+fun cambridgeshire_PN : PN;
+fun cambuslang_PN : PN;
+fun camden_PN : PN;
+fun camel_N : N;
+fun camel_hair_N : N;
+fun camellia_N : N;
+fun camembert_N : N;
+fun cameo_N : N;
+fun camera_N : N;
+fun cameraman_N : N;
+fun cameroon_PN : PN;
+fun cameroonian_A : A;
+fun cameroonian_N : N;
+fun camion_N : N;
+fun camomile_N : N;
+fun camouflage_N : N;
+fun camouflage_V2 : V2;
+fun camp_A : A;
+fun camp_N : N;
+fun camp_V : V;
+fun camp_V2 : V2;
+fun camp_bed_N : N;
+fun camp_chair_N : N;
+fun camp_fire_N : N;
+fun camp_follower_N : N;
+fun camp_stool_N : N;
+fun campaign_N : N;
+fun campaign_V : V;
+fun campaigner_N : N;
+fun campanile_N : N;
+fun campanula_N : N;
+fun campbeltown_PN : PN;
+fun camper_N : N;
+fun camphor_N : N;
+fun camphorated_A : A;
+fun camping_N : N;
+fun campion_N : N;
+fun campus_N : N;
+fun camshaft_N : N;
+fun can_N : N;
+fun can_V2 : V2;
+fun canada_PN : PN;
+fun canadian_A : A;
+fun canadian_N : N;
+fun canal_N : N;
+fun canalization_N : N;
+fun canalize_V2 : V2;
+fun canape_N : N;
+fun canard_N : N;
+fun canary_N : N;
+fun canary_bird_N : N;
+fun canary_wine_N : N;
+fun canasta_N : N;
+fun canberra_PN : PN;
+fun cancan_N : N;
+fun cancel_V : V;
+fun cancel_V2 : V2;
+fun cancellation_N : N;
+fun cancer_N : N;
+fun cancer_PN : PN;
+fun cancerous_A : A;
+fun candelabrum_N : N;
+fun candid_A : A;
+fun candidate_N : N;
+fun candidature_N : N;
+fun candidly_Adv : Adv;
+fun candied_A : A;
+fun candle_N : N;
+fun candle_power_N : N;
+fun candlelight_N : N;
+fun candlestick_N : N;
+fun candlewick_N : N;
+fun candour_N : N;
+fun candy_N : N;
+fun candy_V : V;
+fun candy_V2 : V2;
+fun candy_floss_N : N;
+fun candytuft_N : N;
+fun cane_N : N;
+fun cane_V2 : V2;
+fun canine_A : A;
+fun canister_N : N;
+fun canker_N : N;
+fun canker_V2 : V2;
+fun cankerous_A : A;
+fun canna_N : N;
+fun cannabis_N : N;
+fun canned_A : A;
+fun cannery_N : N;
+fun cannes_PN : PN;
+fun cannibal_N : N;
+fun cannibalism_N : N;
+fun cannibalistic_A : A;
+fun cannibalize_V2 : V2;
+fun cannily_Adv : Adv;
+fun cannock_PN : PN;
+fun cannon_N : N;
+fun cannon_fodder_N : N;
+fun cannonade_N : N;
+fun canny_A : A;
+fun canoe_N : N;
+fun canoe_V2 : V2;
+fun canoeist_N : N;
+fun canon_1_N : N;
+fun canonical_A : A;
+fun canonization_N : N;
+fun canonize_V2 : V2;
+fun canopied_A : A;
+fun canopy_N : N;
+fun cant_N : N;
+fun cant_V : V;
+fun cant_V2 : V2;
+fun cantab_PN : PN;
+fun cantaloup_N : N;
+fun cantaloupe_N : N;
+fun cantankerous_A : A;
+fun cantankerously_Adv : Adv;
+fun cantata_N : N;
+fun canteen_N : N;
+fun canter_N : N;
+fun canter_V : V;
+fun canter_V2 : V2;
+fun canterbury_PN : PN;
+fun canticle_N : N;
+fun cantilever_N : N;
+fun canto_N : N;
+fun canton_N : N;
+fun canton_PN : PN;
+fun cantonment_N : N;
+fun cantor_N : N;
+fun canuck_N : N;
+fun canvas_N : N;
+fun canvass_N : N;
+fun canvass_V : V;
+fun canvass_V2 : V2;
+fun canvey_PN : PN;
+fun canvey_island_PN : PN;
+fun canyon_N : N;
+fun cap_N : N;
+fun cap_V2 : V2;
+fun cap_a_pie_Adv : Adv;
+fun capability_N : N;
+fun capable_A : A;
+fun capably_Adv : Adv;
+fun capacious_A : A;
+fun capacity_N : N;
+fun caparison_N : N;
+fun caparison_V2 : V2;
+fun cape_N : N;
+fun cape_town_PN : PN;
+fun caper_N : N;
+fun caper_V : V;
+fun capillary_N : N;
+fun capital_A : A;
+fun capital_N : N;
+fun capitalism_A : A;
+fun capitalism_N : N;
+fun capitalist_N : N;
+fun capitalistic_A : A;
+fun capitalization_N : N;
+fun capitalize_V : V;
+fun capitalize_V2 : V2;
+fun capitation_N : N;
+fun capitol_N : N;
+fun capitulate_V2 : V2;
+fun capitulation_N : N;
+fun capon_N : N;
+fun caprice_N : N;
+fun capricious_A : A;
+fun capriciously_Adv : Adv;
+fun capriciousness_N : N;
+fun capricorn_PN : PN;
+fun capsicum_N : N;
+fun capsize_V : V;
+fun capsize_V2 : V2;
+fun capstan_N : N;
+fun capsule_N : N;
+fun capt_PN : PN;
+fun captain_N : N;
+fun captain_V2 : V2;
+fun caption_N : N;
+fun captious_A : A;
+fun captiously_Adv : Adv;
+fun captivate_V2 : V2;
+fun captive_A : A;
+fun captive_N : N;
+fun captivity_N : N;
+fun captor_N : N;
+fun capture_N : N;
+fun capture_V2 : V2;
+fun car_N : N;
+fun car_ferry_N : N;
+fun caracas_PN : PN;
+fun carafe_N : N;
+fun caramel_N : N;
+fun carapace_N : N;
+fun carat_N : N;
+fun caravan_N : N;
+fun caravanning_N : N;
+fun caravansary_N : N;
+fun caravanserai_N : N;
+fun caraway_N : N;
+fun carbide_N : N;
+fun carbine_N : N;
+fun carbohydrate_N : N;
+fun carbolic_A : A;
+fun carbon_N : N;
+fun carbon_paper_N : N;
+fun carbonated_A : A;
+fun carbonic_A : A;
+fun carboniferous_A : A;
+fun carbonization_N : N;
+fun carbonize_V2 : V2;
+fun carborundum_N : N;
+fun carboy_N : N;
+fun carbuncle_N : N;
+fun carburettor_N : N;
+fun carcase_N : N;
+fun carcass_N : N;
+fun card_N : N;
+fun card_V2 : V2;
+fun card_sharper_N : N;
+fun cardamom_N : N;
+fun cardboard_N : N;
+fun cardenden_PN : PN;
+fun cardiac_A : A;
+fun cardiff_PN : PN;
+fun cardigan_N : N;
+fun cardigan_PN : PN;
+fun cardinal_A : A;
+fun cardinal_N : N;
+fun care_N : N;
+fun care_V : V;
+fun careen_V : V;
+fun careen_V2 : V2;
+fun career_N : N;
+fun career_V : V;
+fun careerist_N : N;
+fun carefree_A : A;
+fun careful_A : A;
+fun carefully_Adv : Adv;
+fun carefulness_N : N;
+fun careladen_A : A;
+fun careless_A : A;
+fun carelessly_Adv : Adv;
+fun carelessness_N : N;
+fun caress_N : N;
+fun caress_V2 : V2;
+fun caressing_A : A;
+fun caressingly_Adv : Adv;
+fun caret_N : N;
+fun caretaker_N : N;
+fun careworn_A : A;
+fun cargo_N : N;
+fun caribou_N : N;
+fun caricature_N : N;
+fun caricature_V2 : V2;
+fun caricaturist_N : N;
+fun caries_N : N;
+fun carillon_N : N;
+fun carious_A : A;
+fun carl_PN : PN;
+fun carlisle_PN : PN;
+fun carlow_PN : PN;
+fun carluke_PN : PN;
+fun carmarthen_PN : PN;
+fun carmelite_A : A;
+fun carmelite_N : N;
+fun carmine_A : A;
+fun carmine_N : N;
+fun carnage_N : N;
+fun carnal_A : A;
+fun carnally_Adv : Adv;
+fun carnation_N : N;
+fun carnforth_PN : PN;
+fun carnival_N : N;
+fun carnivore_N : N;
+fun carnivorous_A : A;
+fun carnoustie_PN : PN;
+fun carol_N : N;
+fun carol_PN : PN;
+fun carol_V2 : V2;
+fun carole_PN : PN;
+fun carolina_PN : PN;
+fun caroline_PN : PN;
+fun caroller_N : N;
+fun carolyn_PN : PN;
+fun carousal_N : N;
+fun carouse_V2 : V2;
+fun carousel_N : N;
+fun carp_N : N;
+fun carp_V2 : V2;
+fun carpal_A : A;
+fun carpal_N : N;
+fun carpenter_N : N;
+fun carpentry_N : N;
+fun carpet_N : N;
+fun carpet_V2 : V2;
+fun carpet_beater_N : N;
+fun carpet_knight_N : N;
+fun carpet_sweeper_N : N;
+fun carpetbag_N : N;
+fun carpetbagger_N : N;
+fun carport_N : N;
+fun carriage_N : N;
+fun carriageway_N : N;
+fun carrie_PN : PN;
+fun carrier_N : N;
+fun carrier_bag_N : N;
+fun carrier_pigeon_N : N;
+fun carrion_N : N;
+fun carrion_crow_N : N;
+fun carron_PN : PN;
+fun carrot_N : N;
+fun carroty_A : A;
+fun carry_N : N;
+fun carry_V : V;
+fun carry_V2 : V2;
+fun carrycot_N : N;
+fun carsick_A : A;
+fun carsickness_N : N;
+fun cart_N : N;
+fun cart_V2 : V2;
+fun cart_track_N : N;
+fun cartage_N : N;
+fun cartagena_PN : PN;
+fun carte_blanche_N : N;
+fun cartel_N : N;
+fun carter_N : N;
+fun carthorse_N : N;
+fun cartilage_N : N;
+fun cartilaginous_A : A;
+fun cartload_N : N;
+fun cartographer_N : N;
+fun cartography_N : N;
+fun carton_N : N;
+fun cartoon_N : N;
+fun cartoon_V2 : V2;
+fun cartoonist_N : N;
+fun cartridge_N : N;
+fun cartridge_belt_N : N;
+fun cartridge_paper_N : N;
+fun cartroad_N : N;
+fun cartwheel_N : N;
+fun carve_V : V;
+fun carve_V2 : V2;
+fun carver_N : N;
+fun carving_N : N;
+fun carving_fork_N : N;
+fun carving_knife_N : N;
+fun caryatid_N : N;
+fun casablanca_PN : PN;
+fun cascade_N : N;
+fun cascade_V : V;
+fun case_N : N;
+fun case_V2 : V2;
+fun case_hardened_A : A;
+fun case_history_N : N;
+fun case_law_N : N;
+fun casebook_N : N;
+fun casein_N : N;
+fun casement_N : N;
+fun casework_N : N;
+fun cash_N : N;
+fun cash_V : V;
+fun cash_V2 : V2;
+fun cashable_A : A;
+fun cashew_N : N;
+fun cashier_N : N;
+fun cashier_V2 : V2;
+fun cashmere_N : N;
+fun casing_N : N;
+fun casino_N : N;
+fun cask_N : N;
+fun casket_N : N;
+fun cassava_N : N;
+fun casserole_N : N;
+fun cassette_N : N;
+fun cassock_N : N;
+fun cassowary_N : N;
+fun cast_N : N;
+fun cast_V : V;
+fun cast_V2 : V2;
+fun cast_iron_A : A;
+fun cast_off_A : A;
+fun castaway_N : N;
+fun caste_N : N;
+fun castellated_A : A;
+fun caster_N : N;
+fun castigate_V2 : V2;
+fun castigation_N : N;
+fun casting_N : N;
+fun castle_N : N;
+fun castle_V : V;
+fun castleford_PN : PN;
+fun castor_N : N;
+fun castor_oil_N : N;
+fun castrate_V2 : V2;
+fun castration_N : N;
+fun casual_A : A;
+fun casually_Adv : Adv;
+fun casualty_N : N;
+fun casuist_N : N;
+fun casuistic_A : A;
+fun casuistical_A : A;
+fun casuistry_N : N;
+fun casus_belli_N : N;
+fun cat_N : N;
+fun cat_nap_N : N;
+fun cat_o'_nine_tails_N : N;
+fun cat_sleep_N : N;
+fun cataclysm_N : N;
+fun cataclysmic_A : A;
+fun catafalque_N : N;
+fun catalan_A : A;
+fun catalan_N : N;
+fun catalepsy_N : N;
+fun cataleptic_A : A;
+fun cataleptic_N : N;
+fun catalogue_N : N;
+fun catalogue_V2 : V2;
+fun catalpa_N : N;
+fun catalysis_N : N;
+fun catalyst_N : N;
+fun catalytic_A : A;
+fun catamaran_N : N;
+fun catania_PN : PN;
+fun catapult_N : N;
+fun catapult_V2 : V2;
+fun cataract_N : N;
+fun catarrh_N : N;
+fun catastrophe_N : N;
+fun catastrophic_A : A;
+fun catastrophically_Adv : Adv;
+fun catcall_N : N;
+fun catcall_V : V;
+fun catch_N : N;
+fun catch_V : V;
+fun catch_V2 : V2;
+fun catch_crop_N : N;
+fun catcher_N : N;
+fun catching_A : A;
+fun catchment_N : N;
+fun catchment_area_N : N;
+fun catchment_basin_N : N;
+fun catchpenny_A : A;
+fun catchup_N : N;
+fun catchword_N : N;
+fun catchy_A : A;
+fun catechism_N : N;
+fun catechize_V2 : V2;
+fun categorical_A : A;
+fun categorically_Adv : Adv;
+fun categorize_V2 : V2;
+fun category_N : N;
+fun cater_V : V;
+fun caterer_N : N;
+fun caterpillar_N : N;
+fun caterwaul_N : N;
+fun caterwaul_V : V;
+fun catfish_N : N;
+fun catgut_N : N;
+fun cath_PN : PN;
+fun catharsis_N : N;
+fun cathartic_N : N;
+fun cathedral_N : N;
+fun catherine_PN : PN;
+fun cathode_N : N;
+fun catholic_A : A;
+fun catholic_N : N;
+fun catholicism_N : N;
+fun catholicity_N : N;
+fun cathy_PN : PN;
+fun catkin_N : N;
+fun catsup_N : N;
+fun cattiness_N : N;
+fun cattish_A : A;
+fun cattle_cake_N : N;
+fun cattleman_N : N;
+fun catty_A : A;
+fun catwalk_N : N;
+fun caucasian_A : A;
+fun caucasian_N : N;
+fun caucus_N : N;
+fun caul_N : N;
+fun cauldron_N : N;
+fun cauliflower_N : N;
+fun caulk_V2 : V2;
+fun causal_A : A;
+fun causality_N : N;
+fun causation_N : N;
+fun causative_A : A;
+fun cause_N : N;
+fun cause_V2 : V2;
+fun causeless_A : A;
+fun causerie_N : N;
+fun causeway_N : N;
+fun caustic_A : A;
+fun caustically_Adv : Adv;
+fun cauterize_V2 : V2;
+fun caution_N : N;
+fun caution_V2 : V2;
+fun cautionary_A : A;
+fun cautious_A : A;
+fun cautiously_Adv : Adv;
+fun cavalcade_N : N;
+fun cavalier_A : A;
+fun cavalier_N : N;
+fun cavalierly_Adv : Adv;
+fun cavalry_N : N;
+fun cavalryman_N : N;
+fun cavan_PN : PN;
+fun cave_N : N;
+fun cave_V : V;
+fun cave_V2 : V2;
+fun cave_dweller_N : N;
+fun cave_in_N : N;
+fun caveat_N : N;
+fun caveman_N : N;
+fun cavern_N : N;
+fun cavernous_A : A;
+fun caviar_N : N;
+fun caviare_N : N;
+fun cavil_V : V;
+fun cavity_N : N;
+fun cavort_V : V;
+fun caw_N : N;
+fun caw_V : V;
+fun caw_V2 : V2;
+fun cayenne_N : N;
+fun cayenne_pepper_N : N;
+fun cayman_N : N;
+fun canon_2_N : N;
+fun cbi_N : N;
+fun cc_N : N;
+fun cd_N : N;
+fun cdr_PN : PN;
+fun cdre_PN : PN;
+fun cease_N : N;
+fun cease_V : V;
+fun cease_V2 : V2;
+fun cease_fire_N : N;
+fun ceaseless_A : A;
+fun ceaselessly_Adv : Adv;
+fun cecil_PN : PN;
+fun cecilia_PN : PN;
+fun cecily_PN : PN;
+fun cedar_N : N;
+fun cede_V2 : V2;
+fun cedilla_N : N;
+fun cedric_PN : PN;
+fun cefn_mawr_PN : PN;
+fun ceiling_N : N;
+fun celandine_N : N;
+fun celebrant_N : N;
+fun celebrate_V2 : V2;
+fun celebrated_A : A;
+fun celebration_N : N;
+fun celebrity_N : N;
+fun celerity_N : N;
+fun celery_N : N;
+fun celestial_A : A;
+fun celia_PN : PN;
+fun celibacy_N : N;
+fun celibate_N : N;
+fun cell_N : N;
+fun cellar_N : N;
+fun cellarage_N : N;
+fun cellist_N : N;
+fun cello_N : N;
+fun cellophane_N : N;
+fun cellular_A : A;
+fun celluloid_N : N;
+fun cellulose_N : N;
+fun celt_N : N;
+fun celtic_A : A;
+fun celtic_N : N;
+fun cement_N : N;
+fun cement_V2 : V2;
+fun cement_mixer_N : N;
+fun cemetery_N : N;
+fun cenotaph_N : N;
+fun censer_N : N;
+fun censor_N : N;
+fun censor_V2 : V2;
+fun censorious_A : A;
+fun censorship_N : N;
+fun censure_N : N;
+fun censure_V2 : V2;
+fun census_N : N;
+fun cent_N : N;
+fun centaur_N : N;
+fun centenarian_A : A;
+fun centenarian_N : N;
+fun centenary_A : A;
+fun centenary_N : N;
+fun centennial_A : A;
+fun centennial_N : N;
+fun centennially_Adv : Adv;
+fun centigrade_A : A;
+fun centime_N : N;
+fun centimetre_N : N;
+fun centipede_N : N;
+fun central_A : A;
+fun central_N : N;
+fun centralization_N : N;
+fun centralize_V : V;
+fun centralize_V2 : V2;
+fun centrally_Adv : Adv;
+fun centre_N : N;
+fun centre_V : V;
+fun centre_V2 : V2;
+fun centre_bit_N : N;
+fun centre_board_N : N;
+fun centrepiece_N : N;
+fun centrifugal_A : A;
+fun centrifuge_N : N;
+fun centripetal_A : A;
+fun centurion_N : N;
+fun century_N : N;
+fun ceramic_A : A;
+fun ceramics_N : N;
+fun cereal_N : N;
+fun cerebral_A : A;
+fun cerebration_N : N;
+fun ceremonial_A : A;
+fun ceremonial_N : N;
+fun ceremonially_Adv : Adv;
+fun ceremonious_A : A;
+fun ceremoniously_Adv : Adv;
+fun ceremony_N : N;
+fun cerise_A : A;
+fun cerise_N : N;
+fun cert_N : N;
+fun certain_A : A;
+fun certainly_Adv : Adv;
+fun certainty_N : N;
+fun certifiable_A : A;
+fun certificate_N : N;
+fun certificate_V2 : V2;
+fun certificated_A : A;
+fun certification_N : N;
+fun certify_V : V;
+fun certify_V2 : V2;
+fun certitude_N : N;
+fun cerulean_A : A;
+fun cervical_A : A;
+fun cervix_N : N;
+fun cesarean_A : A;
+fun cessation_N : N;
+fun cession_N : N;
+fun cesspit_N : N;
+fun cesspool_N : N;
+fun ceylon_PN : PN;
+fun cf_PN : PN;
+fun chad_PN : PN;
+fun chadian_A : A;
+fun chadian_N : N;
+fun chafe_N : N;
+fun chafe_V : V;
+fun chafe_V2 : V2;
+fun chaff_N : N;
+fun chaff_V2 : V2;
+fun chaffinch_N : N;
+fun chafing_dish_N : N;
+fun chagrin_N : N;
+fun chagrin_V2 : V2;
+fun chain_N : N;
+fun chain_V2 : V2;
+fun chain_armour_N : N;
+fun chain_gang_N : N;
+fun chain_letter_N : N;
+fun chain_mail_N : N;
+fun chain_smoker_N : N;
+fun chain_stitch_N : N;
+fun chain_store_N : N;
+fun chair_N : N;
+fun chair_V2 : V2;
+fun chair_lift_N : N;
+fun chairman_N : N;
+fun chairmanship_N : N;
+fun chaise_N : N;
+fun chaise_longue_N : N;
+fun chalet_N : N;
+fun chalfont_PN : PN;
+fun chalfont_st_giles_PN : PN;
+fun chalfont_st_peter_PN : PN;
+fun chalice_N : N;
+fun chalk_N : N;
+fun chalk_V2 : V2;
+fun chalkpit_N : N;
+fun chalky_A : A;
+fun challenge_N : N;
+fun challenge_V2 : V2;
+fun challenger_N : N;
+fun chamber_N : N;
+fun chamberlain_N : N;
+fun chambermaid_N : N;
+fun chamberpot_N : N;
+fun chameleon_N : N;
+fun chammy_leather_N : N;
+fun chamois_N : N;
+fun chamois_leather_N : N;
+fun champ_N : N;
+fun champ_V : V;
+fun champ_V2 : V2;
+fun champagne_N : N;
+fun champion_A : A;
+fun champion_Adv : Adv;
+fun champion_N : N;
+fun champion_V2 : V2;
+fun championship_N : N;
+fun chance_N : N;
+fun chance_V : V;
+fun chance_V2 : V2;
+fun chancel_N : N;
+fun chancellery_N : N;
+fun chancellor_N : N;
+fun chancery_N : N;
+fun chancy_A : A;
+fun chandelier_N : N;
+fun chandler_N : N;
+fun changchun_PN : PN;
+fun change_N : N;
+fun change_V : V;
+fun change_V2 : V2;
+fun changeable_A : A;
+fun changeableness_N : N;
+fun changeful_A : A;
+fun changeless_A : A;
+fun changeling_N : N;
+fun changeover_N : N;
+fun changsha_PN : PN;
+fun channel_N : N;
+fun channel_V2 : V2;
+fun chant_N : N;
+fun chant_V : V;
+fun chant_V2 : V2;
+fun chaos_N : N;
+fun chaotic_A : A;
+fun chaotically_Adv : Adv;
+fun chap_N : N;
+fun chap_V : V;
+fun chap_V2 : V2;
+fun chapel_N : N;
+fun chapelgoer_N : N;
+fun chaperon_N : N;
+fun chaperon_V2 : V2;
+fun chapfallen_A : A;
+fun chaplain_N : N;
+fun chaplaincy_N : N;
+fun chaplet_N : N;
+fun chapman_N : N;
+fun chapter_N : N;
+fun chapterhouse_N : N;
+fun char_N : N;
+fun char_V : V;
+fun char_V2 : V2;
+fun charabanc_1_N : N;
+fun character_N : N;
+fun characteristic_A : A;
+fun characteristic_N : N;
+fun characteristically_Adv : Adv;
+fun characterization_N : N;
+fun characterize_V2 : V2;
+fun characterless_A : A;
+fun charade_N : N;
+fun charcoal_N : N;
+fun charcoal_burner_N : N;
+fun chard_N : N;
+fun chard_PN : PN;
+fun charge_N : N;
+fun charge_V : V;
+fun charge_V2 : V2;
+fun charge_account_N : N;
+fun charge_sheet_N : N;
+fun chargeable_A : A;
+fun charger_N : N;
+fun charge_d'affaires_N : N;
+fun charily_Adv : Adv;
+fun chariot_N : N;
+fun charioteer_N : N;
+fun charisma_N : N;
+fun charismatic_A : A;
+fun charitable_A : A;
+fun charitably_Adv : Adv;
+fun charity_N : N;
+fun charivari_N : N;
+fun charlady_N : N;
+fun charlatan_N : N;
+fun charles_PN : PN;
+fun charleston_N : N;
+fun charlie_PN : PN;
+fun charlock_N : N;
+fun charlotte_PN : PN;
+fun charm_N : N;
+fun charm_V : V;
+fun charm_V2 : V2;
+fun charmer_N : N;
+fun charming_A : A;
+fun charmingly_Adv : Adv;
+fun charnel_house_N : N;
+fun chart_N : N;
+fun chart_V2 : V2;
+fun charter_N : N;
+fun charter_V2 : V2;
+fun charter_party_N : N;
+fun chartism_N : N;
+fun chartist_N : N;
+fun chartreuse_N : N;
+fun charwoman_N : N;
+fun chary_A : A;
+fun charybdis_PN : PN;
+fun charabanc_2_N : N;
+fun chas_PN : PN;
+fun chase_N : N;
+fun chase_V : V;
+fun chase_V2 : V2;
+fun chaser_N : N;
+fun chasm_N : N;
+fun chassis_N : N;
+fun chaste_A : A;
+fun chastely_Adv : Adv;
+fun chasten_V2 : V2;
+fun chastise_V2 : V2;
+fun chastisement_N : N;
+fun chastity_N : N;
+fun chasuble_N : N;
+fun chat_N : N;
+fun chat_V : V;
+fun chat_V2 : V2;
+fun chatelaine_N : N;
+fun chatham_PN : PN;
+fun chattel_N : N;
+fun chatter_N : N;
+fun chatter_V : V;
+fun chatterbox_N : N;
+fun chattily_Adv : Adv;
+fun chatty_A : A;
+fun chauffeur_N : N;
+fun chauffeuse_N : N;
+fun chauvinism_N : N;
+fun chauvinist_N : N;
+fun chauvinistic_A : A;
+fun chaw_N : N;
+fun chaw_V2 : V2;
+fun chaw_bacon_N : N;
+fun cheadle_PN : PN;
+fun cheap_A : A;
+fun cheapen_V : V;
+fun cheapen_V2 : V2;
+fun cheapjack_A : A;
+fun cheaply_Adv : Adv;
+fun cheapness_N : N;
+fun cheat_N : N;
+fun cheat_V : V;
+fun cheat_V2 : V2;
+fun check_N : N;
+fun check_V : V;
+fun check_V2 : V2;
+fun checkbook_N : N;
+fun checked_A : A;
+fun checker_N : N;
+fun checker_V2 : V2;
+fun checkers_N : N;
+fun checklist_N : N;
+fun checkmate_N : N;
+fun checkmate_V2 : V2;
+fun checkout_N : N;
+fun checkpoint_N : N;
+fun checkroom_N : N;
+fun checkup_N : N;
+fun cheddar_N : N;
+fun cheek_N : N;
+fun cheek_V2 : V2;
+fun cheekbone_N : N;
+fun cheeked_A : A;
+fun cheekily_Adv : Adv;
+fun cheeky_A : A;
+fun cheep_N : N;
+fun cheep_V : V;
+fun cheer_N : N;
+fun cheer_V : V;
+fun cheer_V2 : V2;
+fun cheerful_A : A;
+fun cheerfully_Adv : Adv;
+fun cheerfulness_N : N;
+fun cheerily_Adv : Adv;
+fun cheering_A : A;
+fun cheering_N : N;
+fun cheerleader_N : N;
+fun cheerless_A : A;
+fun cheerlessly_Adv : Adv;
+fun cheerlessness_N : N;
+fun cheery_A : A;
+fun cheese_N : N;
+fun cheesecake_N : N;
+fun cheesecloth_N : N;
+fun cheeseparing_A : A;
+fun cheetah_N : N;
+fun chef_N : N;
+fun chef_d'oeuvre_N : N;
+fun chelmsford_PN : PN;
+fun chelsea_PN : PN;
+fun cheltenham_PN : PN;
+fun chelyabinsk_PN : PN;
+fun chemical_A : A;
+fun chemical_N : N;
+fun chemically_Adv : Adv;
+fun chemise_N : N;
+fun chemist_N : N;
+fun chemistry_N : N;
+fun chemotherapy_N : N;
+fun chengchow_PN : PN;
+fun chengtu_PN : PN;
+fun chenille_N : N;
+fun chepstow_PN : PN;
+fun cheque_N : N;
+fun chequebook_N : N;
+fun chequer_V2 : V2;
+fun cherish_V2 : V2;
+fun cheroot_N : N;
+fun cherry_A : A;
+fun cherry_N : N;
+fun cherub_N : N;
+fun cherubic_A : A;
+fun chervil_N : N;
+fun chesham_PN : PN;
+fun cheshire_PN : PN;
+fun chess_N : N;
+fun chessboard_N : N;
+fun chessman_N : N;
+fun chest_N : N;
+fun chester_PN : PN;
+fun chester_le_street_PN : PN;
+fun chesterfield_N : N;
+fun chesterfield_PN : PN;
+fun chestnut_N : N;
+fun cheval_glass_N : N;
+fun chevron_N : N;
+fun chew_N : N;
+fun chew_V : V;
+fun chew_V2 : V2;
+fun chewing_gum_N : N;
+fun chianti_N : N;
+fun chiaroscuro_N : N;
+fun chic_A : A;
+fun chic_N : N;
+fun chicago_PN : PN;
+fun chicanery_N : N;
+fun chichester_PN : PN;
+fun chichi_A : A;
+fun chick_N : N;
+fun chicken_N : N;
+fun chicken_hearted_A : A;
+fun chicken_run_N : N;
+fun chickenfeed_N : N;
+fun chickenpox_N : N;
+fun chickpea_N : N;
+fun chickweed_N : N;
+fun chicle_N : N;
+fun chicory_N : N;
+fun chide_V : V;
+fun chide_V2 : V2;
+fun chief_A : A;
+fun chief_N : N;
+fun chiefly_Adv : Adv;
+fun chieftain_N : N;
+fun chieftaincy_N : N;
+fun chiffon_N : N;
+fun chiffonier_N : N;
+fun chignon_N : N;
+fun chilblain_N : N;
+fun chilblained_A : A;
+fun child's_play_N : N;
+fun child_N : N;
+fun child_bearing_N : N;
+fun childbirth_N : N;
+fun childhood_N : N;
+fun childish_A : A;
+fun childishly_Adv : Adv;
+fun childless_A : A;
+fun childlike_A : A;
+fun chile_PN : PN;
+fun chilean_A : A;
+fun chilean_N : N;
+fun chill_A : A;
+fun chill_N : N;
+fun chill_V : V;
+fun chill_V2 : V2;
+fun chilli_N : N;
+fun chilly_A : A;
+fun chilly_N : N;
+fun chimaera_N : N;
+fun chime_N : N;
+fun chime_V : V;
+fun chime_V2 : V2;
+fun chimera_N : N;
+fun chimerical_A : A;
+fun chimney_N : N;
+fun chimney_sweep_N : N;
+fun chimneybreast_N : N;
+fun chimneypiece_N : N;
+fun chimneypot_N : N;
+fun chimneystack_N : N;
+fun chimneysweep_N : N;
+fun chimneysweeper_N : N;
+fun chimp_N : N;
+fun chimpanzee_N : N;
+fun chin_N : N;
+fun chin_strap_N : N;
+fun chin_wagging_N : N;
+fun china_N : N;
+fun china_PN : PN;
+fun china_closet_N : N;
+fun chinaware_N : N;
+fun chinchilla_N : N;
+fun chinchow_PN : PN;
+fun chine_N : N;
+fun chinese_A : A;
+fun chinese_N : N;
+fun chink_N : N;
+fun chink_V : V;
+fun chink_V2 : V2;
+fun chintz_N : N;
+fun chip_N : N;
+fun chip_V : V;
+fun chip_V2 : V2;
+fun chipboard_N : N;
+fun chipmunk_N : N;
+fun chippendale_N : N;
+fun chippenham_PN : PN;
+fun chiropodist_N : N;
+fun chiropody_N : N;
+fun chiropractor_N : N;
+fun chirp_N : N;
+fun chirp_V : V;
+fun chirp_V2 : V2;
+fun chirpily_Adv : Adv;
+fun chirpiness_N : N;
+fun chirpy_A : A;
+fun chirrup_N : N;
+fun chirrup_V : V;
+fun chirrup_V2 : V2;
+fun chisel_N : N;
+fun chisel_V2 : V2;
+fun chiseller_N : N;
+fun chit_N : N;
+fun chit_chat_N : N;
+fun chivalrous_A : A;
+fun chivalrously_Adv : Adv;
+fun chivalry_N : N;
+fun chive_N : N;
+fun chivvy_V2 : V2;
+fun chivy_V2 : V2;
+fun chloe_PN : PN;
+fun chloride_N : N;
+fun chlorinate_V2 : V2;
+fun chlorination_N : N;
+fun chlorine_N : N;
+fun chloroform_N : N;
+fun chlorophyll_N : N;
+fun choc_N : N;
+fun choc_ice_N : N;
+fun chock_N : N;
+fun chock_V2 : V2;
+fun chock_a_block_A : A;
+fun chock_a_block_Adv : Adv;
+fun chock_full_A : A;
+fun chocolate_N : N;
+fun choice_A : A;
+fun choice_N : N;
+fun choir_N : N;
+fun choir_school_N : N;
+fun choirboy_N : N;
+fun choke_N : N;
+fun choke_V : V;
+fun choke_V2 : V2;
+fun choke_damp_N : N;
+fun choker_N : N;
+fun chokey_N : N;
+fun choky_N : N;
+fun choler_N : N;
+fun cholera_N : N;
+fun choleric_A : A;
+fun choose_V : V;
+fun choose_V2 : V2;
+fun choosey_A : A;
+fun choosy_A : A;
+fun chop_N : N;
+fun chop_V : V;
+fun chop_V2 : V2;
+fun chop_chop_Adv : Adv;
+fun chop_house_N : N;
+fun chop_suey_N : N;
+fun chopper_N : N;
+fun choppy_A : A;
+fun chopwell_PN : PN;
+fun choral_A : A;
+fun chorale_N : N;
+fun chord_N : N;
+fun chore_N : N;
+fun choreographer_N : N;
+fun choreography_N : N;
+fun chorister_N : N;
+fun chorley_PN : PN;
+fun chortle_N : N;
+fun chortle_V : V;
+fun chorus_N : N;
+fun chorus_V2 : V2;
+fun chorus_girl_N : N;
+fun chow_N : N;
+fun chowder_N : N;
+fun chris_PN : PN;
+fun chrissie_PN : PN;
+fun chrissy_PN : PN;
+fun christ_PN : PN;
+fun christchurch_PN : PN;
+fun christen_V2 : V2;
+fun christendom_N : N;
+fun christening_N : N;
+fun christian_A : A;
+fun christian_N : N;
+fun christian_PN : PN;
+fun christianity_N : N;
+fun christina_PN : PN;
+fun christine_PN : PN;
+fun christlike_A : A;
+fun christmas_N : N;
+fun christmas_PN : PN;
+fun christmas_box_N : N;
+fun christmas_tree_N : N;
+fun christmastide_N : N;
+fun christmastime_N : N;
+fun christopher_PN : PN;
+fun chromatic_A : A;
+fun chrome_N : N;
+fun chromium_N : N;
+fun chromosome_N : N;
+fun chronic_A : A;
+fun chronically_Adv : Adv;
+fun chronicle_N : N;
+fun chronicle_V2 : V2;
+fun chronicler_N : N;
+fun chronological_A : A;
+fun chronologically_Adv : Adv;
+fun chronology_N : N;
+fun chronometer_N : N;
+fun chrysalis_N : N;
+fun chrysanthemum_N : N;
+fun chubby_A : A;
+fun chuck_N : N;
+fun chuck_V2 : V2;
+fun chucker_out_N : N;
+fun chuckle_N : N;
+fun chuckle_V : V;
+fun chug_N : N;
+fun chug_V : V;
+fun chukker_N : N;
+fun chum_N : N;
+fun chum_V : V;
+fun chummy_A : A;
+fun chump_N : N;
+fun chungking_PN : PN;
+fun chunk_N : N;
+fun chunky_A : A;
+fun church_N : N;
+fun churchgoer_N : N;
+fun churchman_N : N;
+fun churchwarden_N : N;
+fun churchyard_N : N;
+fun churl_N : N;
+fun churlish_A : A;
+fun churlishly_Adv : Adv;
+fun churn_N : N;
+fun churn_V : V;
+fun churn_V2 : V2;
+fun chute_N : N;
+fun chutney_N : N;
+fun chateau_N : N;
+fun cia_N : N;
+fun cicada_N : N;
+fun cicala_N : N;
+fun cicatrice_N : N;
+fun cicatrix_N : N;
+fun cicerone_N : N;
+fun cid_N : N;
+fun cider_N : N;
+fun ciderpress_N : N;
+fun cif_PN : PN;
+fun cigar_N : N;
+fun cigar_shaped_A : A;
+fun cigarette_N : N;
+fun cigarette_case_N : N;
+fun cigarette_holder_N : N;
+fun cigarette_paper_N : N;
+fun cinch_N : N;
+fun cinchona_N : N;
+fun cincinnati_PN : PN;
+fun cincture_N : N;
+fun cinder_N : N;
+fun cinder_track_N : N;
+fun cinderella_N : N;
+fun cinderford_PN : PN;
+fun cine_camera_N : N;
+fun cine_film_N : N;
+fun cine_projector_N : N;
+fun cinema_N : N;
+fun cinematic_A : A;
+fun cinematography_N : N;
+fun cinnamon_N : N;
+fun cinquefoil_N : N;
+fun cipher_N : N;
+fun cipher_V : V;
+fun cipher_V2 : V2;
+fun circle_N : N;
+fun circle_V : V;
+fun circle_V2 : V2;
+fun circlet_N : N;
+fun circuit_N : N;
+fun circuitous_A : A;
+fun circular_A : A;
+fun circular_N : N;
+fun circularity_N : N;
+fun circularize_V2 : V2;
+fun circulate_V : V;
+fun circulate_V2 : V2;
+fun circulation_N : N;
+fun circumcise_V2 : V2;
+fun circumcision_N : N;
+fun circumference_N : N;
+fun circumflex_N : N;
+fun circumlocution_N : N;
+fun circumnavigate_V2 : V2;
+fun circumnavigation_N : N;
+fun circumscribe_V2 : V2;
+fun circumscription_N : N;
+fun circumspect_A : A;
+fun circumspection_N : N;
+fun circumspectly_Adv : Adv;
+fun circumstance_N : N;
+fun circumstantial_A : A;
+fun circumstantially_Adv : Adv;
+fun circumvent_V2 : V2;
+fun circumvention_N : N;
+fun circus_N : N;
+fun cirencester_PN : PN;
+fun cirrhosis_N : N;
+fun cirrus_N : N;
+fun cissy_A : A;
+fun cissy_N : N;
+fun cistern_N : N;
+fun citadel_N : N;
+fun citation_N : N;
+fun cite_V2 : V2;
+fun citizen_N : N;
+fun citizenship_N : N;
+fun citric_A : A;
+fun citron_N : N;
+fun citrous_A : A;
+fun citrus_N : N;
+fun city_N : N;
+fun civet_N : N;
+fun civet_cat_N : N;
+fun civic_A : A;
+fun civics_N : N;
+fun civil_A : A;
+fun civilian_A : A;
+fun civilian_N : N;
+fun civility_N : N;
+fun civilization_N : N;
+fun civilize_V2 : V2;
+fun civilly_Adv : Adv;
+fun civvy_street_PN : PN;
+fun clack_N : N;
+fun clack_V : V;
+fun clackmannon_PN : PN;
+fun clacton_PN : PN;
+fun claim_N : N;
+fun claim_V : V;
+fun claim_V2 : V2;
+fun claimant_N : N;
+fun clairvoyance_N : N;
+fun clairvoyant_N : N;
+fun clam_N : N;
+fun clam_V : V;
+fun clambake_N : N;
+fun clamber_N : N;
+fun clamber_V : V;
+fun clammily_Adv : Adv;
+fun clammy_A : A;
+fun clamorous_A : A;
+fun clamour_N : N;
+fun clamour_V : V;
+fun clamour_V2 : V2;
+fun clamp_N : N;
+fun clamp_V : V;
+fun clamp_V2 : V2;
+fun clamp_down_N : N;
+fun clan_N : N;
+fun clandestine_A : A;
+fun clang_N : N;
+fun clang_V : V;
+fun clang_V2 : V2;
+fun clanger_N : N;
+fun clangorous_A : A;
+fun clangour_N : N;
+fun clank_N : N;
+fun clank_V : V;
+fun clank_V2 : V2;
+fun clannish_A : A;
+fun clannishly_Adv : Adv;
+fun clansman_N : N;
+fun clap_N : N;
+fun clap_V : V;
+fun clap_V2 : V2;
+fun clapboard_N : N;
+fun clapper_N : N;
+fun clapperboard_N : N;
+fun claptrap_N : N;
+fun claque_N : N;
+fun clare_PN : PN;
+fun claret_N : N;
+fun clarification_N : N;
+fun clarify_V : V;
+fun clarify_V2 : V2;
+fun clarinet_N : N;
+fun clarinetist_N : N;
+fun clarinettist_N : N;
+fun clarion_N : N;
+fun clarity_N : N;
+fun clarkston_PN : PN;
+fun clarrie_PN : PN;
+fun clash_N : N;
+fun clash_V : V;
+fun clash_V2 : V2;
+fun clasp_N : N;
+fun clasp_V : V;
+fun clasp_V2 : V2;
+fun clasp_knife_N : N;
+fun class_N : N;
+fun class_V2 : V2;
+fun class_conscious_A : A;
+fun class_feeling_N : N;
+fun class_fellow_N : N;
+fun class_list_N : N;
+fun class_warfare_N : N;
+fun classic_A : A;
+fun classic_N : N;
+fun classical_A : A;
+fun classically_Adv : Adv;
+fun classicism_N : N;
+fun classicist_N : N;
+fun classics_N : N;
+fun classifiable_A : A;
+fun classification_N : N;
+fun classified_A : A;
+fun classify_V2 : V2;
+fun classless_A : A;
+fun classmate_N : N;
+fun classroom_N : N;
+fun classy_A : A;
+fun clatter_N : N;
+fun clatter_V : V;
+fun clatter_V2 : V2;
+fun claud_PN : PN;
+fun claude_PN : PN;
+fun clause_N : N;
+fun claustrophobia_N : N;
+fun claustrophobic_A : A;
+fun clavichord_N : N;
+fun clavicle_N : N;
+fun claw_N : N;
+fun claw_V2 : V2;
+fun clawback_N : N;
+fun clawhammer_N : N;
+fun clay_N : N;
+fun clay_cross_PN : PN;
+fun clayey_A : A;
+fun clean_A : A;
+fun clean_Adv : Adv;
+fun clean_N : N;
+fun clean_V : V;
+fun clean_V2 : V2;
+fun clean_bowled_A : A;
+fun clean_cut_A : A;
+fun clean_limbed_A : A;
+fun clean_living_A : A;
+fun clean_shaven_A : A;
+fun clean_up_N : N;
+fun cleaner_N : N;
+fun cleanliness_N : N;
+fun cleanly_A : A;
+fun cleanly_Adv : Adv;
+fun cleanse_V2 : V2;
+fun cleanser_N : N;
+fun clear_A : A;
+fun clear_Adv : Adv;
+fun clear_N : N;
+fun clear_V : V;
+fun clear_V2 : V2;
+fun clear_cut_Adv : Adv;
+fun clear_headed_A : A;
+fun clear_sighted_A : A;
+fun clearance_N : N;
+fun clearing_N : N;
+fun clearing_house_N : N;
+fun clearly_Adv : Adv;
+fun clearness_N : N;
+fun clearway_N : N;
+fun cleat_N : N;
+fun cleator_moor_PN : PN;
+fun cleavage_N : N;
+fun cleave_V : V;
+fun cleave_V2 : V2;
+fun cleaver_N : N;
+fun cleethorpes_PN : PN;
+fun clef_N : N;
+fun cleft_N : N;
+fun clem_PN : PN;
+fun clematis_N : N;
+fun clemency_N : N;
+fun clement_A : A;
+fun clement_PN : PN;
+fun clench_V2 : V2;
+fun clerestory_N : N;
+fun clergy_N : N;
+fun clergyman_N : N;
+fun cleric_N : N;
+fun clerical_A : A;
+fun clerihew_N : N;
+fun clerk_N : N;
+fun clerk_V : V;
+fun clermont_ferrand_PN : PN;
+fun clevedon_PN : PN;
+fun cleveland_PN : PN;
+fun clever_A : A;
+fun cleverly_Adv : Adv;
+fun cleverness_N : N;
+fun clew_N : N;
+fun clew_V2 : V2;
+fun cliche_N : N;
+fun click_N : N;
+fun click_V : V;
+fun client_N : N;
+fun clientele_N : N;
+fun cliff_N : N;
+fun cliff_PN : PN;
+fun cliff_hanger_N : N;
+fun clifford_PN : PN;
+fun climacteric_N : N;
+fun climactic_A : A;
+fun climate_N : N;
+fun climatic_A : A;
+fun climatically_Adv : Adv;
+fun climatology_N : N;
+fun climax_N : N;
+fun climax_V : V;
+fun climax_V2 : V2;
+fun climb_N : N;
+fun climb_V : V;
+fun climb_V2 : V2;
+fun climb_down_N : N;
+fun climber_N : N;
+fun clime_N : N;
+fun clinch_N : N;
+fun clinch_V : V;
+fun clinch_V2 : V2;
+fun clincher_N : N;
+fun cling_V : V;
+fun clinic_N : N;
+fun clinical_A : A;
+fun clinically_Adv : Adv;
+fun clink_N : N;
+fun clink_V : V;
+fun clink_V2 : V2;
+fun clinker_N : N;
+fun clinker_built_A : A;
+fun clip_N : N;
+fun clip_V2 : V2;
+fun clip_joint_N : N;
+fun clip_on_A : A;
+fun clipper_N : N;
+fun clipping_N : N;
+fun clique_N : N;
+fun cliquish_A : A;
+fun clitheroe_PN : PN;
+fun clitoris_N : N;
+fun clive_PN : PN;
+fun cloak_N : N;
+fun cloak_V2 : V2;
+fun cloakroom_N : N;
+fun clobber_N : N;
+fun clobber_V2 : V2;
+fun cloche_N : N;
+fun clock_N : N;
+fun clock_V : V;
+fun clock_V2 : V2;
+fun clock_dial_N : N;
+fun clock_face_N : N;
+fun clock_golf_N : N;
+fun clock_tower_N : N;
+fun clock_watching_N : N;
+fun clockwise_Adv : Adv;
+fun clockwork_N : N;
+fun clod_N : N;
+fun clodhopper_N : N;
+fun clog_N : N;
+fun clog_V : V;
+fun clog_V2 : V2;
+fun clog_dance_N : N;
+fun cloggy_A : A;
+fun cloisonne_N : N;
+fun cloister_N : N;
+fun cloister_V2 : V2;
+fun clone_N : N;
+fun close_A : A;
+fun close_Adv : Adv;
+fun close_N : N;
+fun close_V : V;
+fun close_V2 : V2;
+fun close_cropped_A : A;
+fun close_cut_A : A;
+fun close_down_N : N;
+fun close_fisted_A : A;
+fun close_fitting_A : A;
+fun close_grained_A : A;
+fun close_hauled_A : A;
+fun close_set_A : A;
+fun close_up_N : N;
+fun closely_Adv : Adv;
+fun closeness_N : N;
+fun closet_A : A;
+fun closet_N : N;
+fun closet_V2 : V2;
+fun closure_N : N;
+fun clot_N : N;
+fun clot_V : V;
+fun clot_V2 : V2;
+fun cloth_N : N;
+fun clothe_V2 : V2;
+fun clothes_basket_N : N;
+fun clothes_hanger_N : N;
+fun clothes_moth_N : N;
+fun clothes_peg_N : N;
+fun clothes_pin_N : N;
+fun clotheshorse_N : N;
+fun clothesline_N : N;
+fun clothier_N : N;
+fun clothing_N : N;
+fun cloud_N : N;
+fun cloud_V : V;
+fun cloud_V2 : V2;
+fun cloud_bank_N : N;
+fun cloud_capped_A : A;
+fun cloud_cuckoo_land_N : N;
+fun cloudburst_N : N;
+fun cloudless_A : A;
+fun cloudy_A : A;
+fun clout_N : N;
+fun clout_V2 : V2;
+fun clove_N : N;
+fun clove_hitch_N : N;
+fun clover_N : N;
+fun cloverleaf_N : N;
+fun clown_N : N;
+fun clown_V : V;
+fun clowne_PN : PN;
+fun clownish_A : A;
+fun cloy_V : V;
+fun cloy_V2 : V2;
+fun club_N : N;
+fun club_V : V;
+fun club_V2 : V2;
+fun club_footed_A : A;
+fun clubbable_A : A;
+fun clubfoot_N : N;
+fun clubhouse_N : N;
+fun cluck_N : N;
+fun cluck_V : V;
+fun clue_N : N;
+fun clump_N : N;
+fun clump_V : V;
+fun clump_V2 : V2;
+fun clumsily_Adv : Adv;
+fun clumsiness_N : N;
+fun clumsy_A : A;
+fun clunk_N : N;
+fun clunk_V : V;
+fun cluster_N : N;
+fun cluster_V : V;
+fun clutch_N : N;
+fun clutch_V : V;
+fun clutch_V2 : V2;
+fun clutter_N : N;
+fun clutter_V2 : V2;
+fun clwyd_PN : PN;
+fun clydach_PN : PN;
+fun clydebank_PN : PN;
+fun cm_N : N;
+fun co_N : N;
+fun co_ed_N : N;
+fun co_op_N : N;
+fun co_opt_V2 : V2;
+fun co_respondent_N : N;
+fun co_star_N : N;
+fun co_star_V : V;
+fun co_star_V2 : V2;
+fun coach_N : N;
+fun coach_V : V;
+fun coach_V2 : V2;
+fun coach_builder_N : N;
+fun coachman_N : N;
+fun coagulate_V : V;
+fun coagulate_V2 : V2;
+fun coagulation_N : N;
+fun coal_N : N;
+fun coal_V : V;
+fun coal_V2 : V2;
+fun coal_gas_N : N;
+fun coal_hole_N : N;
+fun coal_house_N : N;
+fun coal_scuttle_N : N;
+fun coal_seam_N : N;
+fun coal_tar_N : N;
+fun coalesce_V : V;
+fun coalescence_N : N;
+fun coalface_N : N;
+fun coalfield_N : N;
+fun coaling_station_N : N;
+fun coalition_N : N;
+fun coalman_N : N;
+fun coalmine_N : N;
+fun coalpit_N : N;
+fun coalville_PN : PN;
+fun coaming_N : N;
+fun coarse_A : A;
+fun coarsely_Adv : Adv;
+fun coarsen_V : V;
+fun coarsen_V2 : V2;
+fun coarseness_N : N;
+fun coast_N : N;
+fun coast_V : V;
+fun coast_V2 : V2;
+fun coastal_A : A;
+fun coaster_N : N;
+fun coastguard_N : N;
+fun coastline_N : N;
+fun coastwise_A : A;
+fun coastwise_Adv : Adv;
+fun coat_N : N;
+fun coat_V2 : V2;
+fun coat_hanger_N : N;
+fun coatbridge_PN : PN;
+fun coatee_N : N;
+fun coating_N : N;
+fun coax_V : V;
+fun coax_V2 : V2;
+fun coaxing_N : N;
+fun coaxingly_Adv : Adv;
+fun cob_N : N;
+fun cob_nut_N : N;
+fun cobalt_N : N;
+fun cobber_N : N;
+fun cobble_N : N;
+fun cobble_V2 : V2;
+fun cobbler_N : N;
+fun cobblestone_N : N;
+fun cobham_PN : PN;
+fun cobra_N : N;
+fun cobweb_N : N;
+fun coca_cola_N : N;
+fun cocaine_N : N;
+fun cochineal_N : N;
+fun cochlea_N : N;
+fun cock_N : N;
+fun cock_V2 : V2;
+fun cock_a_doodle_doo_N : N;
+fun cock_a_hoop_A : A;
+fun cock_a_hoop_Adv : Adv;
+fun cock_crow_N : N;
+fun cockade_N : N;
+fun cockatoo_N : N;
+fun cockchafer_N : N;
+fun cocker_N : N;
+fun cockerel_N : N;
+fun cockermouth_PN : PN;
+fun cockeyed_A : A;
+fun cockfighting_N : N;
+fun cockhorse_N : N;
+fun cockle_N : N;
+fun cockleshell_N : N;
+fun cockney_A : A;
+fun cockney_N : N;
+fun cockpit_N : N;
+fun cockroach_N : N;
+fun cockscomb_N : N;
+fun cocksure_A : A;
+fun cocktail_N : N;
+fun cockup_N : N;
+fun cocky_A : A;
+fun coco_N : N;
+fun cocoa_N : N;
+fun coconut_N : N;
+fun cocoon_N : N;
+fun cocoon_V2 : V2;
+fun cocotte_N : N;
+fun cod_N : N;
+fun cod_PN : PN;
+fun cod_V : V;
+fun cod_V2 : V2;
+fun cod_liver_oil_N : N;
+fun coda_N : N;
+fun coddle_V2 : V2;
+fun code_N : N;
+fun code_V2 : V2;
+fun codeine_N : N;
+fun codex_N : N;
+fun codfish_N : N;
+fun codger_N : N;
+fun codicil_N : N;
+fun codification_N : N;
+fun codify_V2 : V2;
+fun codling_N : N;
+fun codpiece_N : N;
+fun codsall_PN : PN;
+fun coeducation_N : N;
+fun coeducational_A : A;
+fun coefficient_N : N;
+fun coerce_V2 : V2;
+fun coercion_N : N;
+fun coercive_A : A;
+fun coeval_A : A;
+fun coeval_N : N;
+fun coexist_V : V;
+fun coexistence_N : N;
+fun coffee_N : N;
+fun coffee_house_N : N;
+fun coffee_mill_N : N;
+fun coffee_stall_N : N;
+fun coffer_N : N;
+fun coffer_dam_N : N;
+fun coffin_N : N;
+fun cog_N : N;
+fun cogency_N : N;
+fun cogent_A : A;
+fun cogitate_V : V;
+fun cogitate_V2 : V2;
+fun cogitation_N : N;
+fun cognac_N : N;
+fun cognate_A : A;
+fun cognate_N : N;
+fun cognition_N : N;
+fun cognizance_N : N;
+fun cognizant_A : A;
+fun cognomen_N : N;
+fun cogwheel_N : N;
+fun cohabit_V : V;
+fun cohabitation_N : N;
+fun cohere_V : V;
+fun coherence_N : N;
+fun coherency_N : N;
+fun coherent_A : A;
+fun coherently_Adv : Adv;
+fun cohesion_N : N;
+fun cohesive_A : A;
+fun cohort_N : N;
+fun coif_N : N;
+fun coiffeur_N : N;
+fun coiffure_N : N;
+fun coign_N : N;
+fun coil_N : N;
+fun coil_V : V;
+fun coil_V2 : V2;
+fun coimbatore_PN : PN;
+fun coin_N : N;
+fun coin_V2 : V2;
+fun coinage_N : N;
+fun coincide_V : V;
+fun coincidence_N : N;
+fun coincident_A : A;
+fun coincidental_A : A;
+fun coiner_N : N;
+fun coir_N : N;
+fun coition_N : N;
+fun coitus_N : N;
+fun coke_N : N;
+fun coke_V2 : V2;
+fun col_N : N;
+fun col_PN : PN;
+fun cola_N : N;
+fun colander_N : N;
+fun colchester_PN : PN;
+fun cold_A : A;
+fun cold_N : N;
+fun cold_blooded_A : A;
+fun cold_hearted_A : A;
+fun cold_shoulder_V2 : V2;
+fun coldly_Adv : Adv;
+fun coldness_N : N;
+fun coleshill_PN : PN;
+fun coleslaw_N : N;
+fun colic_N : N;
+fun colin_PN : PN;
+fun colitis_N : N;
+fun coll_PN : PN;
+fun collaborate_V : V;
+fun collaboration_N : N;
+fun collaborationist_N : N;
+fun collaborator_N : N;
+fun collage_N : N;
+fun collapsable_A : A;
+fun collapse_N : N;
+fun collapse_V : V;
+fun collapsible_A : A;
+fun collar_N : N;
+fun collar_V2 : V2;
+fun collarbone_N : N;
+fun collate_V2 : V2;
+fun collateral_A : A;
+fun collateral_N : N;
+fun collation_N : N;
+fun colleague_N : N;
+fun collect_A : A;
+fun collect_Adv : Adv;
+fun collect_N : N;
+fun collect_V : V;
+fun collect_V2 : V2;
+fun collected_A : A;
+fun collectedly_Adv : Adv;
+fun collection_N : N;
+fun collective_A : A;
+fun collectivization_N : N;
+fun collectivize_V2 : V2;
+fun collector_N : N;
+fun colleen_N : N;
+fun college_N : N;
+fun collegiate_A : A;
+fun collide_V : V;
+fun collie_N : N;
+fun collier_N : N;
+fun colliery_N : N;
+fun collision_N : N;
+fun collocate_V : V;
+fun collocation_N : N;
+fun colloquial_A : A;
+fun colloquialism_N : N;
+fun colloquially_Adv : Adv;
+fun colloquy_N : N;
+fun collusion_N : N;
+fun collusive_A : A;
+fun colne_PN : PN;
+fun cologne_PN : PN;
+fun colombia_PN : PN;
+fun colombian_A : A;
+fun colombian_N : N;
+fun colombo_PN : PN;
+fun colon_N : N;
+fun colonel_N : N;
+fun colonial_A : A;
+fun colonial_N : N;
+fun colonialism_N : N;
+fun colonialist_N : N;
+fun colonist_N : N;
+fun colonization_N : N;
+fun colonize_V2 : V2;
+fun colonizer_N : N;
+fun colonnade_N : N;
+fun colonnaded_A : A;
+fun colony_N : N;
+fun colorado_PN : PN;
+fun coloratura_N : N;
+fun colossal_A : A;
+fun colossus_N : N;
+fun colour_N : N;
+fun colour_V : V;
+fun colour_V2 : V2;
+fun colour_bar_N : N;
+fun colour_blind_A : A;
+fun colour_wash_N : N;
+fun coloured_A : A;
+fun colourful_A : A;
+fun colouring_N : N;
+fun colourless_A : A;
+fun colt_N : N;
+fun coltish_A : A;
+fun columbia_PN : PN;
+fun columbine_N : N;
+fun columbus_PN : PN;
+fun column_N : N;
+fun columnist_N : N;
+fun colwyn_bay_PN : PN;
+fun coma_N : N;
+fun comatose_A : A;
+fun comb_N : N;
+fun comb_V : V;
+fun comb_V2 : V2;
+fun comb_out_N : N;
+fun combat_N : N;
+fun combat_V : V;
+fun combat_V2 : V2;
+fun combatant_A : A;
+fun combatant_N : N;
+fun combative_A : A;
+fun combatively_Adv : Adv;
+fun combination_N : N;
+fun combination_lock_N : N;
+fun combine_N : N;
+fun combine_V : V;
+fun combine_V2 : V2;
+fun combustible_A : A;
+fun combustible_N : N;
+fun combustion_N : N;
+fun come_V : V;
+fun come_at_able_A : A;
+fun come_on_N : N;
+fun comeback_N : N;
+fun comedian_N : N;
+fun comedienne_N : N;
+fun comedown_N : N;
+fun comedy_N : N;
+fun comeliness_N : N;
+fun comely_A : A;
+fun comer_N : N;
+fun comestible_N : N;
+fun comet_N : N;
+fun comfit_N : N;
+fun comfort_N : N;
+fun comfort_V2 : V2;
+fun comfortable_A : A;
+fun comfortably_Adv : Adv;
+fun comforter_N : N;
+fun comfortingly_Adv : Adv;
+fun comfortless_A : A;
+fun comfrey_N : N;
+fun comfy_A : A;
+fun comic_A : A;
+fun comic_N : N;
+fun comical_A : A;
+fun comically_Adv : Adv;
+fun coming_A : A;
+fun coming_N : N;
+fun comity_N : N;
+fun comma_N : N;
+fun command_N : N;
+fun command_V : V;
+fun command_V2 : V2;
+fun commandant_N : N;
+fun commandeer_V2 : V2;
+fun commander_N : N;
+fun commanding_A : A;
+fun commandment_N : N;
+fun commando_N : N;
+fun commemorate_V2 : V2;
+fun commemoration_N : N;
+fun commemorative_A : A;
+fun commence_V : V;
+fun commence_V2 : V2;
+fun commencement_N : N;
+fun commend_V2 : V2;
+fun commendable_A : A;
+fun commendation_N : N;
+fun commensurable_A : A;
+fun commensurate_A : A;
+fun comment_N : N;
+fun comment_V : V;
+fun commentary_N : N;
+fun commentate_V : V;
+fun commentator_N : N;
+fun commerce_N : N;
+fun commercial_A : A;
+fun commercial_N : N;
+fun commercialism_N : N;
+fun commercialize_V2 : V2;
+fun commercially_Adv : Adv;
+fun commination_N : N;
+fun comminatory_A : A;
+fun commingle_V : V;
+fun commingle_V2 : V2;
+fun commiserate_V : V;
+fun commiseration_N : N;
+fun commissar_N : N;
+fun commissariat_N : N;
+fun commissary_N : N;
+fun commission_N : N;
+fun commission_V2 : V2;
+fun commissionaire_N : N;
+fun commissioned_A : A;
+fun commissioner_N : N;
+fun commit_V2 : V2;
+fun commital_N : N;
+fun commitment_N : N;
+fun committee_N : N;
+fun commode_N : N;
+fun commodious_A : A;
+fun commodity_N : N;
+fun commodore_N : N;
+fun common_A : A;
+fun common_N : N;
+fun common_room_N : N;
+fun commonalty_N : N;
+fun commoner_N : N;
+fun commonly_Adv : Adv;
+fun commonplace_A : A;
+fun commonplace_N : N;
+fun commonwealth_N : N;
+fun commotion_N : N;
+fun communal_A : A;
+fun communally_Adv : Adv;
+fun commune_N : N;
+fun commune_V : V;
+fun communicable_A : A;
+fun communicant_N : N;
+fun communicate_V : V;
+fun communicate_V2 : V2;
+fun communication_N : N;
+fun communicative_A : A;
+fun communion_N : N;
+fun communique_N : N;
+fun communism_N : N;
+fun communist_A : A;
+fun communist_N : N;
+fun community_N : N;
+fun commutable_A : A;
+fun commutation_N : N;
+fun commutator_N : N;
+fun commute_V : V;
+fun commute_V2 : V2;
+fun commuter_N : N;
+fun compact_A : A;
+fun compact_N : N;
+fun compact_V2 : V2;
+fun compactly_Adv : Adv;
+fun compactness_N : N;
+fun companion_N : N;
+fun companionable_A : A;
+fun companionship_N : N;
+fun companionway_N : N;
+fun company_N : N;
+fun comparability_N : N;
+fun comparable_A : A;
+fun comparative_A : A;
+fun comparative_N : N;
+fun comparatively_Adv : Adv;
+fun compare_N : N;
+fun compare_V : V;
+fun compare_V2 : V2;
+fun comparison_N : N;
+fun compartment_N : N;
+fun compartmentalize_V2 : V2;
+fun compass_N : N;
+fun compass_V2 : V2;
+fun compassion_N : N;
+fun compassionate_A : A;
+fun compassionately_Adv : Adv;
+fun compatibility_N : N;
+fun compatible_A : A;
+fun compatibly_Adv : Adv;
+fun compatriot_N : N;
+fun compeer_N : N;
+fun compel_V2 : V2;
+fun compendious_A : A;
+fun compendium_N : N;
+fun compensate_V : V;
+fun compensate_V2 : V2;
+fun compensation_N : N;
+fun compensatory_A : A;
+fun compete_V : V;
+fun competence_N : N;
+fun competent_A : A;
+fun competently_Adv : Adv;
+fun competition_N : N;
+fun competitive_A : A;
+fun competitiveness_N : N;
+fun competitor_N : N;
+fun compilation_N : N;
+fun compile_V2 : V2;
+fun compiler_N : N;
+fun complacence_N : N;
+fun complacency_N : N;
+fun complacent_A : A;
+fun complacently_Adv : Adv;
+fun complain_V : V;
+fun complainant_N : N;
+fun complainingly_Adv : Adv;
+fun complaint_N : N;
+fun complaisance_N : N;
+fun complaisant_A : A;
+fun complement_N : N;
+fun complement_V2 : V2;
+fun complementary_A : A;
+fun complete_A : A;
+fun complete_V2 : V2;
+fun completely_Adv : Adv;
+fun completeness_N : N;
+fun completion_N : N;
+fun complex_A : A;
+fun complex_N : N;
+fun complexion_N : N;
+fun complexity_N : N;
+fun compliance_N : N;
+fun compliant_A : A;
+fun complicate_V2 : V2;
+fun complicated_A : A;
+fun complication_N : N;
+fun complicity_N : N;
+fun compliment_N : N;
+fun compliment_V2 : V2;
+fun complimentary_A : A;
+fun complin_N : N;
+fun compline_N : N;
+fun comply_V2 : V2;
+fun component_A : A;
+fun component_N : N;
+fun comport_V : V;
+fun comport_V2 : V2;
+fun comportment_N : N;
+fun compos_mentis_A : A;
+fun compose_V : V;
+fun compose_V2 : V2;
+fun composed_A : A;
+fun composedly_Adv : Adv;
+fun composer_N : N;
+fun composite_A : A;
+fun composition_N : N;
+fun compositor_N : N;
+fun compost_N : N;
+fun compost_V2 : V2;
+fun composure_N : N;
+fun compote_N : N;
+fun compound_A : A;
+fun compound_N : N;
+fun compound_V : V;
+fun compound_V2 : V2;
+fun comprehend_V2 : V2;
+fun comprehensibility_N : N;
+fun comprehensible_A : A;
+fun comprehension_N : N;
+fun comprehensive_A : A;
+fun comprehensively_Adv : Adv;
+fun comprehensiveness_N : N;
+fun compress_N : N;
+fun compress_V2 : V2;
+fun compression_N : N;
+fun compressor_N : N;
+fun comprise_V2 : V2;
+fun compromise_N : N;
+fun compromise_V : V;
+fun compromise_V2 : V2;
+fun comptroller_N : N;
+fun compulsion_N : N;
+fun compulsive_A : A;
+fun compulsively_Adv : Adv;
+fun compulsorily_Adv : Adv;
+fun compulsory_A : A;
+fun compunction_N : N;
+fun computation_N : N;
+fun computational_A : A;
+fun computationally_Adv : Adv;
+fun compute_V : V;
+fun compute_V2 : V2;
+fun computer_N : N;
+fun computerize_V2 : V2;
+fun compere_N : N;
+fun compere_V2 : V2;
+fun comrade_N : N;
+fun comradely_Adv : Adv;
+fun comradeship_N : N;
+fun con_Adv : Adv;
+fun con_N : N;
+fun con_V2 : V2;
+fun con_man_N : N;
+fun concatenation_N : N;
+fun concave_A : A;
+fun concavity_N : N;
+fun conceal_V2 : V2;
+fun concealment_N : N;
+fun concede_V2 : V2;
+fun conceit_N : N;
+fun conceited_A : A;
+fun conceitedly_Adv : Adv;
+fun conceivable_A : A;
+fun conceivably_Adv : Adv;
+fun conceive_V : V;
+fun conceive_V2 : V2;
+fun concentrate_N : N;
+fun concentrate_V : V;
+fun concentrate_V2 : V2;
+fun concentrated_A : A;
+fun concentration_N : N;
+fun concentric_A : A;
+fun concept_N : N;
+fun conception_N : N;
+fun conceptual_A : A;
+fun conceptually_Adv : Adv;
+fun concern_N : N;
+fun concern_V2 : V2;
+fun concerned_A : A;
+fun concernedly_Adv : Adv;
+fun concert_N : N;
+fun concert_V2 : V2;
+fun concert_hall_N : N;
+fun concerted_A : A;
+fun concertina_N : N;
+fun concerto_N : N;
+fun concession_N : N;
+fun concessionaire_N : N;
+fun concessive_A : A;
+fun conch_N : N;
+fun conchology_N : N;
+fun concierge_N : N;
+fun conciliate_V2 : V2;
+fun conciliation_N : N;
+fun conciliatory_A : A;
+fun concise_A : A;
+fun concisely_Adv : Adv;
+fun conciseness_N : N;
+fun conclave_N : N;
+fun conclude_V : V;
+fun conclude_V2 : V2;
+fun conclusion_N : N;
+fun conclusive_A : A;
+fun conclusively_Adv : Adv;
+fun concoct_V2 : V2;
+fun concoction_N : N;
+fun concomitant_A : A;
+fun concomitant_N : N;
+fun concord_N : N;
+fun concordance_N : N;
+fun concordant_A : A;
+fun concordat_N : N;
+fun concourse_N : N;
+fun concrete_A : A;
+fun concrete_N : N;
+fun concrete_V : V;
+fun concrete_V2 : V2;
+fun concretely_Adv : Adv;
+fun concretion_N : N;
+fun concubine_N : N;
+fun concupiscence_N : N;
+fun concur_V : V;
+fun concurrence_N : N;
+fun concurrent_A : A;
+fun concurrently_Adv : Adv;
+fun concuss_V2 : V2;
+fun concussion_N : N;
+fun condemn_V2 : V2;
+fun condemnation_N : N;
+fun condensation_N : N;
+fun condense_V : V;
+fun condense_V2 : V2;
+fun condenser_N : N;
+fun condescend_V : V;
+fun condescending_A : A;
+fun condescendingly_Adv : Adv;
+fun condescension_N : N;
+fun condign_A : A;
+fun condiment_N : N;
+fun condition_N : N;
+fun condition_V2 : V2;
+fun conditional_A : A;
+fun conditionally_Adv : Adv;
+fun conditioned_A : A;
+fun conditioner_N : N;
+fun condole_V : V;
+fun condolence_N : N;
+fun condominium_N : N;
+fun condonation_N : N;
+fun condone_V2 : V2;
+fun condor_N : N;
+fun conduce_V : V;
+fun conducive_A : A;
+fun conduct_N : N;
+fun conduct_V : V;
+fun conduct_V2 : V2;
+fun conduction_N : N;
+fun conductive_A : A;
+fun conductivity_N : N;
+fun conductor_N : N;
+fun conductress_N : N;
+fun conduit_N : N;
+fun cone_N : N;
+fun cone_V2 : V2;
+fun coney_N : N;
+fun confab_N : N;
+fun confab_V : V;
+fun confabulate_V : V;
+fun confabulation_N : N;
+fun confection_N : N;
+fun confectioner_N : N;
+fun confectionery_N : N;
+fun confederacy_N : N;
+fun confederate_A : A;
+fun confederate_N : N;
+fun confederate_V : V;
+fun confederate_V2 : V2;
+fun confederation_N : N;
+fun confer_V : V;
+fun confer_V2 : V2;
+fun conference_N : N;
+fun conferment_N : N;
+fun confess_V : V;
+fun confess_V2 : V2;
+fun confessedly_Adv : Adv;
+fun confession_N : N;
+fun confessional_N : N;
+fun confessor_N : N;
+fun confetti_N : N;
+fun confidant_N : N;
+fun confide_V : V;
+fun confide_V2 : V2;
+fun confidence_N : N;
+fun confident_A : A;
+fun confidential_A : A;
+fun confidentiality_N : N;
+fun confidentially_Adv : Adv;
+fun confidently_Adv : Adv;
+fun confiding_A : A;
+fun confidingly_Adv : Adv;
+fun configuration_N : N;
+fun configure_V2 : V2;
+fun configured_A : A;
+fun confine_V2 : V2;
+fun confined_A : A;
+fun confinement_N : N;
+fun confirm_V2 : V2;
+fun confirmation_N : N;
+fun confirmed_A : A;
+fun confiscate_V2 : V2;
+fun confiscation_N : N;
+fun conflagration_N : N;
+fun conflict_N : N;
+fun conflict_V : V;
+fun conflicting_A : A;
+fun confluence_N : N;
+fun confluent_A : A;
+fun conform_V : V;
+fun conform_V2 : V2;
+fun conformable_A : A;
+fun conformation_N : N;
+fun conformist_N : N;
+fun conformity_N : N;
+fun confound_V2 : V2;
+fun confounded_A : A;
+fun confoundedly_Adv : Adv;
+fun confront_V2 : V2;
+fun confrontation_N : N;
+fun confrere_N : N;
+fun confucian_A : A;
+fun confucian_N : N;
+fun confuse_V2 : V2;
+fun confusedly_Adv : Adv;
+fun confusion_N : N;
+fun confutation_N : N;
+fun confute_V2 : V2;
+fun congeal_V : V;
+fun congeal_V2 : V2;
+fun congenial_A : A;
+fun congenially_Adv : Adv;
+fun congenital_A : A;
+fun conger_N : N;
+fun conger_eel_N : N;
+fun congested_A : A;
+fun congestion_N : N;
+fun congleton_PN : PN;
+fun conglomerate_A : A;
+fun conglomerate_N : N;
+fun conglomerate_V : V;
+fun conglomerate_V2 : V2;
+fun conglomeration_N : N;
+fun congo_PN : PN;
+fun congolese_A : A;
+fun congolese_N : N;
+fun congratulate_V2 : V2;
+fun congratulation_N : N;
+fun congratulatory_A : A;
+fun congregate_V : V;
+fun congregate_V2 : V2;
+fun congregation_N : N;
+fun congregational_A : A;
+fun congress_N : N;
+fun congressional_A : A;
+fun congressman_N : N;
+fun congresswoman_N : N;
+fun congruent_A : A;
+fun congruous_A : A;
+fun conge_N : N;
+fun conic_A : A;
+fun conical_A : A;
+fun conifer_N : N;
+fun coniferous_A : A;
+fun conjectural_A : A;
+fun conjecture_N : N;
+fun conjecture_V : V;
+fun conjecture_V2 : V2;
+fun conjoin_V : V;
+fun conjoin_V2 : V2;
+fun conjoint_A : A;
+fun conjointly_Adv : Adv;
+fun conjugal_A : A;
+fun conjugally_Adv : Adv;
+fun conjugate_V : V;
+fun conjugate_V2 : V2;
+fun conjugation_N : N;
+fun conjunction_N : N;
+fun conjunctive_A : A;
+fun conjunctive_N : N;
+fun conjuncture_N : N;
+fun conjuration_N : N;
+fun conjure_V : V;
+fun conjure_V2 : V2;
+fun conjurer_N : N;
+fun conjuror_N : N;
+fun conk_N : N;
+fun conk_V : V;
+fun conker_N : N;
+fun connah's_quay_PN : PN;
+fun connaught_PN : PN;
+fun connect_V : V;
+fun connect_V2 : V2;
+fun connecticut_PN : PN;
+fun connection_N : N;
+fun connective_A : A;
+fun connective_N : N;
+fun connexion_N : N;
+fun connie_PN : PN;
+fun conning_A : A;
+fun connivance_N : N;
+fun connive_V : V;
+fun connoisseur_N : N;
+fun connotation_N : N;
+fun connote_V2 : V2;
+fun connubial_A : A;
+fun conquer_V2 : V2;
+fun conqueror_N : N;
+fun conquest_N : N;
+fun conquistador_N : N;
+fun cons_PN : PN;
+fun consanguinity_N : N;
+fun conscience_N : N;
+fun conscience_smitten_A : A;
+fun conscientious_A : A;
+fun conscientiously_Adv : Adv;
+fun conscientiousness_N : N;
+fun conscious_A : A;
+fun consciously_Adv : Adv;
+fun consciousness_N : N;
+fun conscript_N : N;
+fun conscript_V2 : V2;
+fun conscription_N : N;
+fun consecrate_V2 : V2;
+fun consecration_N : N;
+fun consecutive_A : A;
+fun consecutively_Adv : Adv;
+fun consensus_N : N;
+fun consent_N : N;
+fun consent_V : V;
+fun consequence_N : N;
+fun consequent_A : A;
+fun consequential_A : A;
+fun consequentially_Adv : Adv;
+fun consequently_Adv : Adv;
+fun conservancy_N : N;
+fun conservation_N : N;
+fun conservatism_N : N;
+fun conservative_A : A;
+fun conservative_N : N;
+fun conservatively_Adv : Adv;
+fun conservatoire_N : N;
+fun conservatory_N : N;
+fun conserve_N : N;
+fun conserve_V2 : V2;
+fun consett_PN : PN;
+fun consider_V2 : V2;
+fun considerable_A : A;
+fun considerably_Adv : Adv;
+fun considerate_A : A;
+fun considerately_Adv : Adv;
+fun considerateness_N : N;
+fun consideration_N : N;
+fun consign_V2 : V2;
+fun consignee_N : N;
+fun consigner_N : N;
+fun consignment_N : N;
+fun consignor_N : N;
+fun consist_V : V;
+fun consistence_N : N;
+fun consistency_N : N;
+fun consistent_A : A;
+fun consistently_Adv : Adv;
+fun consistory_N : N;
+fun consolable_A : A;
+fun consolation_N : N;
+fun consolatory_A : A;
+fun console_N : N;
+fun console_V2 : V2;
+fun consolidate_V : V;
+fun consolidate_V2 : V2;
+fun consolidation_N : N;
+fun consomme_N : N;
+fun consonance_N : N;
+fun consonant_A : A;
+fun consonant_N : N;
+fun consort_N : N;
+fun consort_V : V;
+fun consortium_N : N;
+fun conspectus_N : N;
+fun conspicuous_A : A;
+fun conspicuously_Adv : Adv;
+fun conspicuousness_N : N;
+fun conspiracy_N : N;
+fun conspirator_N : N;
+fun conspiratorial_A : A;
+fun conspire_V : V;
+fun conspire_V2 : V2;
+fun constable_N : N;
+fun constabulary_N : N;
+fun constance_PN : PN;
+fun constancy_N : N;
+fun constant_A : A;
+fun constant_N : N;
+fun constantly_Adv : Adv;
+fun constellation_N : N;
+fun consternation_N : N;
+fun constipate_V2 : V2;
+fun constipated_A : A;
+fun constipation_N : N;
+fun constituency_N : N;
+fun constituent_A : A;
+fun constituent_N : N;
+fun constitute_V2 : V2;
+fun constitution_N : N;
+fun constitutional_A : A;
+fun constitutional_N : N;
+fun constitutionalism_N : N;
+fun constitutionalist_N : N;
+fun constitutionalize_V2 : V2;
+fun constitutionally_Adv : Adv;
+fun constitutive_A : A;
+fun constrain_V2 : V2;
+fun constrained_A : A;
+fun constrainedly_Adv : Adv;
+fun constraint_N : N;
+fun constrict_V2 : V2;
+fun constriction_N : N;
+fun construct_V2 : V2;
+fun construction_N : N;
+fun constructional_A : A;
+fun constructive_A : A;
+fun constructively_Adv : Adv;
+fun constructor_N : N;
+fun construe_V : V;
+fun construe_V2 : V2;
+fun consubstantiation_N : N;
+fun consul_N : N;
+fun consular_A : A;
+fun consulate_N : N;
+fun consulship_N : N;
+fun consult_V : V;
+fun consult_V2 : V2;
+fun consultant_N : N;
+fun consultation_N : N;
+fun consultative_A : A;
+fun consume_V : V;
+fun consume_V2 : V2;
+fun consumer_N : N;
+fun consuming_A : A;
+fun consummate_A : A;
+fun consummate_V2 : V2;
+fun consummation_N : N;
+fun consumption_N : N;
+fun consumptive_A : A;
+fun consumptive_N : N;
+fun cont_PN : PN;
+fun contact_N : N;
+fun contact_V2 : V2;
+fun contagion_N : N;
+fun contagious_A : A;
+fun contagiously_Adv : Adv;
+fun contain_V2 : V2;
+fun container_N : N;
+fun containment_N : N;
+fun contaminant_N : N;
+fun contaminate_V2 : V2;
+fun contamination_N : N;
+fun contemn_V2 : V2;
+fun contemplate_V : V;
+fun contemplate_V2 : V2;
+fun contemplation_N : N;
+fun contemplative_A : A;
+fun contemporaneous_A : A;
+fun contemporaneously_Adv : Adv;
+fun contemporary_A : A;
+fun contemporary_N : N;
+fun contempt_N : N;
+fun contemptible_A : A;
+fun contemptuous_A : A;
+fun contemptuously_Adv : Adv;
+fun contend_V : V;
+fun contend_V2 : V2;
+fun contender_N : N;
+fun content_A : A;
+fun content_N : N;
+fun content_V2 : V2;
+fun contented_A : A;
+fun contentedly_Adv : Adv;
+fun contention_N : N;
+fun contentious_A : A;
+fun contentment_N : N;
+fun conterminous_A : A;
+fun contest_N : N;
+fun contest_V : V;
+fun contest_V2 : V2;
+fun contestant_N : N;
+fun context_N : N;
+fun contextual_A : A;
+fun contiguity_N : N;
+fun contiguous_A : A;
+fun contiguously_Adv : Adv;
+fun continence_N : N;
+fun continent_A : A;
+fun continent_N : N;
+fun continental_A : A;
+fun contingency_N : N;
+fun contingent_A : A;
+fun contingent_N : N;
+fun continual_A : A;
+fun continually_Adv : Adv;
+fun continuance_N : N;
+fun continuation_N : N;
+fun continue_V : V;
+fun continue_V2 : V2;
+fun continuity_N : N;
+fun continuous_A : A;
+fun continuously_Adv : Adv;
+fun contort_V2 : V2;
+fun contortion_N : N;
+fun contortionist_N : N;
+fun contour_N : N;
+fun contour_V2 : V2;
+fun contraband_N : N;
+fun contrabass_N : N;
+fun contraception_N : N;
+fun contraceptive_A : A;
+fun contraceptive_N : N;
+fun contract_N : N;
+fun contract_V : V;
+fun contract_V2 : V2;
+fun contractible_A : A;
+fun contractile_A : A;
+fun contraction_N : N;
+fun contractor_N : N;
+fun contractual_A : A;
+fun contradict_V2 : V2;
+fun contradiction_N : N;
+fun contradictory_A : A;
+fun contradistinction_N : N;
+fun contradistinguish_V2 : V2;
+fun contralto_N : N;
+fun contraption_N : N;
+fun contrapuntal_A : A;
+fun contrariety_N : N;
+fun contrarily_Adv : Adv;
+fun contrariness_N : N;
+fun contrariwise_Adv : Adv;
+fun contrary_A : A;
+fun contrary_N : N;
+fun contrast_N : N;
+fun contrast_V : V;
+fun contrast_V2 : V2;
+fun contrastingly_Adv : Adv;
+fun contravene_V2 : V2;
+fun contravention_N : N;
+fun contretemps_N : N;
+fun contribute_V : V;
+fun contribute_V2 : V2;
+fun contribution_N : N;
+fun contributor_N : N;
+fun contributory_A : A;
+fun contrite_A : A;
+fun contritely_Adv : Adv;
+fun contrition_N : N;
+fun contrivance_N : N;
+fun contrive_V : V;
+fun contrive_V2 : V2;
+fun contriver_N : N;
+fun control_N : N;
+fun control_V2 : V2;
+fun controllable_A : A;
+fun controller_N : N;
+fun controversial_A : A;
+fun controversialist_N : N;
+fun controversially_Adv : Adv;
+fun controversy_N : N;
+fun controvert_V2 : V2;
+fun contumacious_A : A;
+fun contumaciously_Adv : Adv;
+fun contumacy_N : N;
+fun contumelious_A : A;
+fun contumeliously_Adv : Adv;
+fun contumely_N : N;
+fun contuse_V2 : V2;
+fun contusion_N : N;
+fun conundrum_N : N;
+fun conurbation_N : N;
+fun convalesce_V : V;
+fun convalescence_N : N;
+fun convalescent_A : A;
+fun convalescent_N : N;
+fun convection_N : N;
+fun convector_N : N;
+fun convene_V : V;
+fun convene_V2 : V2;
+fun convener_N : N;
+fun convenience_N : N;
+fun convenient_A : A;
+fun conveniently_Adv : Adv;
+fun convent_N : N;
+fun conventicle_N : N;
+fun convention_N : N;
+fun conventional_A : A;
+fun conventionality_N : N;
+fun conventionally_Adv : Adv;
+fun converge_V : V;
+fun convergence_N : N;
+fun convergent_A : A;
+fun conversant_A : A;
+fun conversation_N : N;
+fun conversational_A : A;
+fun conversationalist_N : N;
+fun conversationally_Adv : Adv;
+fun converse_A : A;
+fun converse_N : N;
+fun converse_V : V;
+fun conversely_Adv : Adv;
+fun conversion_N : N;
+fun convert_N : N;
+fun convert_V2 : V2;
+fun converted_A : A;
+fun converter_N : N;
+fun convertibility_N : N;
+fun convertible_A : A;
+fun convertible_N : N;
+fun convex_A : A;
+fun convexity_N : N;
+fun convexly_Adv : Adv;
+fun convey_V2 : V2;
+fun conveyance_N : N;
+fun conveyancer_N : N;
+fun conveyer_N : N;
+fun conveyer_belt_N : N;
+fun conveyor_N : N;
+fun convict_N : N;
+fun convict_V2 : V2;
+fun conviction_N : N;
+fun convince_V2 : V2;
+fun convincible_A : A;
+fun convincing_A : A;
+fun convincingly_Adv : Adv;
+fun convivial_A : A;
+fun conviviality_N : N;
+fun convivially_Adv : Adv;
+fun convocation_N : N;
+fun convoke_V2 : V2;
+fun convoluted_A : A;
+fun convolution_N : N;
+fun convolvulus_N : N;
+fun convoy_N : N;
+fun convoy_V2 : V2;
+fun convulse_V2 : V2;
+fun convulsion_N : N;
+fun convulsive_A : A;
+fun convulsively_Adv : Adv;
+fun conwy_PN : PN;
+fun cony_N : N;
+fun coo_N : N;
+fun coo_V : V;
+fun coo_V2 : V2;
+fun cook_N : N;
+fun cook_V : V;
+fun cook_V2 : V2;
+fun cookbook_N : N;
+fun cooker_N : N;
+fun cookery_N : N;
+fun cookery_book_N : N;
+fun cookham_PN : PN;
+fun cookhouse_N : N;
+fun cookie_N : N;
+fun cooking_N : N;
+fun cooky_N : N;
+fun cool_A : A;
+fun cool_N : N;
+fun cool_V : V;
+fun cool_V2 : V2;
+fun cool_headed_A : A;
+fun coolant_N : N;
+fun cooler_N : N;
+fun coolie_N : N;
+fun cooling_tower_N : N;
+fun coolly_Adv : Adv;
+fun coolness_N : N;
+fun coon_N : N;
+fun coop_N : N;
+fun coop_V2 : V2;
+fun cooper_N : N;
+fun cooperate_V : V;
+fun cooperation_N : N;
+fun cooperative_A : A;
+fun cooperative_N : N;
+fun cooperator_N : N;
+fun coordinate_A : A;
+fun coordinate_N : N;
+fun coordinate_V2 : V2;
+fun coordinately_Adv : Adv;
+fun coordination_N : N;
+fun coordinator_N : N;
+fun coot_N : N;
+fun cop_N : N;
+fun cop_V : V;
+fun cop_V2 : V2;
+fun cop_out_N : N;
+fun copartner_N : N;
+fun copartnership_N : N;
+fun cope_N : N;
+fun cope_V : V;
+fun copeck_N : N;
+fun copenhagen_PN : PN;
+fun copernican_A : A;
+fun coping_N : N;
+fun coping_stone_N : N;
+fun copious_A : A;
+fun copiously_Adv : Adv;
+fun copper_N : N;
+fun copper_V2 : V2;
+fun copper_bottom_V2 : V2;
+fun copper_bottomed_A : A;
+fun copperhead_N : N;
+fun copperplate_N : N;
+fun coppersmith_N : N;
+fun coppice_N : N;
+fun coppull_PN : PN;
+fun copra_N : N;
+fun copse_N : N;
+fun copt_A : A;
+fun copt_N : N;
+fun coptic_N : N;
+fun copula_N : N;
+fun copulate_V : V;
+fun copulation_N : N;
+fun copulative_A : A;
+fun copulative_N : N;
+fun copy_N : N;
+fun copy_V : V;
+fun copy_V2 : V2;
+fun copybook_N : N;
+fun copycat_N : N;
+fun copyhold_N : N;
+fun copyholder_N : N;
+fun copyist_N : N;
+fun copyright_N : N;
+fun copyright_V2 : V2;
+fun copywriter_N : N;
+fun coquetry_N : N;
+fun coquette_N : N;
+fun coquettish_A : A;
+fun coquettishly_Adv : Adv;
+fun cor_anglais_N : N;
+fun coracle_N : N;
+fun coral_A : A;
+fun coral_N : N;
+fun coral_reef_N : N;
+fun corbel_N : N;
+fun corby_PN : PN;
+fun cord_N : N;
+fun cord_V2 : V2;
+fun cordage_N : N;
+fun cordial_A : A;
+fun cordial_N : N;
+fun cordiality_N : N;
+fun cordially_Adv : Adv;
+fun cordite_N : N;
+fun cordoba_PN : PN;
+fun cordon_N : N;
+fun cordon_V2 : V2;
+fun cordon_bleu_A : A;
+fun corduroy_N : N;
+fun core_N : N;
+fun core_V2 : V2;
+fun coreligionist_N : N;
+fun corgi_N : N;
+fun corinthian_A : A;
+fun corinthian_N : N;
+fun cork_N : N;
+fun cork_PN : PN;
+fun cork_V2 : V2;
+fun corkage_N : N;
+fun corked_A : A;
+fun corker_N : N;
+fun corkscrew_N : N;
+fun corm_N : N;
+fun cormorant_N : N;
+fun corn_N : N;
+fun corn_V2 : V2;
+fun corn_exchange_N : N;
+fun corncob_N : N;
+fun corncrake_N : N;
+fun cornea_N : N;
+fun cornelian_N : N;
+fun corner_N : N;
+fun corner_V : V;
+fun corner_V2 : V2;
+fun corner_kick_N : N;
+fun cornered_A : A;
+fun cornerstone_N : N;
+fun cornet_N : N;
+fun cornflake_N : N;
+fun cornflour_N : N;
+fun cornflower_N : N;
+fun cornice_N : N;
+fun cornpone_N : N;
+fun cornstarch_N : N;
+fun cornucopia_N : N;
+fun cornwall_PN : PN;
+fun corny_A : A;
+fun corolla_N : N;
+fun corollary_N : N;
+fun corona_N : N;
+fun coronary_A : A;
+fun coronary_N : N;
+fun coronation_N : N;
+fun coroner_N : N;
+fun coronet_N : N;
+fun corp_PN : PN;
+fun corporal_A : A;
+fun corporal_N : N;
+fun corporate_A : A;
+fun corporation_N : N;
+fun corporeal_A : A;
+fun corps_N : N;
+fun corps_de_ballet_N : N;
+fun corps_diplomatique_N : N;
+fun corpse_N : N;
+fun corpulence_N : N;
+fun corpulent_A : A;
+fun corpus_N : N;
+fun corpuscle_N : N;
+fun corral_N : N;
+fun corral_V2 : V2;
+fun correct_A : A;
+fun correct_V2 : V2;
+fun correction_N : N;
+fun correctitude_N : N;
+fun corrective_A : A;
+fun corrective_N : N;
+fun correctly_Adv : Adv;
+fun correctness_N : N;
+fun correlate_V : V;
+fun correlate_V2 : V2;
+fun correlation_N : N;
+fun correlative_A : A;
+fun correlative_N : N;
+fun correspond_V : V;
+fun correspondence_N : N;
+fun correspondent_N : N;
+fun corresponding_A : A;
+fun correspondingly_Adv : Adv;
+fun corridor_N : N;
+fun corrie_N : N;
+fun corrigendum_N : N;
+fun corrigible_A : A;
+fun corroborate_V2 : V2;
+fun corroboration_N : N;
+fun corroborative_A : A;
+fun corrode_V : V;
+fun corrode_V2 : V2;
+fun corrosion_N : N;
+fun corrosive_A : A;
+fun corrosive_N : N;
+fun corrugate_V : V;
+fun corrugate_V2 : V2;
+fun corrugation_N : N;
+fun corrupt_A : A;
+fun corrupt_V : V;
+fun corrupt_V2 : V2;
+fun corruptibility_N : N;
+fun corruptible_A : A;
+fun corruption_N : N;
+fun corruptly_Adv : Adv;
+fun corruptness_N : N;
+fun corsage_N : N;
+fun corsair_N : N;
+fun corse_N : N;
+fun corselet_N : N;
+fun corset_N : N;
+fun corsham_PN : PN;
+fun corslet_N : N;
+fun cortege_1_N : N;
+fun cortex_N : N;
+fun cortical_A : A;
+fun cortisone_N : N;
+fun cortege_2_N : N;
+fun corundum_N : N;
+fun corunna_PN : PN;
+fun coruscate_V : V;
+fun coruscation_N : N;
+fun corvette_N : N;
+fun corvee_N : N;
+fun cos_N : N;
+fun cosenza_PN : PN;
+fun cosh_N : N;
+fun cosh_V2 : V2;
+fun cosher_A : A;
+fun cosignatory_A : A;
+fun cosignatory_N : N;
+fun cosily_Adv : Adv;
+fun cosine_N : N;
+fun cosiness_N : N;
+fun cosmetic_A : A;
+fun cosmetic_N : N;
+fun cosmetician_N : N;
+fun cosmic_A : A;
+fun cosmogony_N : N;
+fun cosmonaut_N : N;
+fun cosmopolitan_A : A;
+fun cosmopolitan_N : N;
+fun cosmos_N : N;
+fun cosset_V2 : V2;
+fun cost_N : N;
+fun cost_V : V;
+fun cost_V2 : V2;
+fun costa_rica_PN : PN;
+fun costa_rican_A : A;
+fun costa_rican_N : N;
+fun costermonger_N : N;
+fun costing_N : N;
+fun costive_A : A;
+fun costliness_N : N;
+fun costly_A : A;
+fun costume_N : N;
+fun costumier_N : N;
+fun cosy_A : A;
+fun cosy_N : N;
+fun cot_N : N;
+fun cote_N : N;
+fun cotenant_N : N;
+fun coterie_N : N;
+fun coterminous_A : A;
+fun cotilion_N : N;
+fun cotillion_N : N;
+fun cottage_N : N;
+fun cottar_N : N;
+fun cotter_N : N;
+fun cotton_N : N;
+fun cotton_V : V;
+fun cotton_cake_N : N;
+fun cotton_plant_N : N;
+fun cotton_wool_N : N;
+fun cottontail_N : N;
+fun cotyledon_N : N;
+fun couch_N : N;
+fun couch_V : V;
+fun couch_V2 : V2;
+fun couch_grass_N : N;
+fun couchant_A : A;
+fun couchette_N : N;
+fun cougar_N : N;
+fun cough_N : N;
+fun cough_V : V;
+fun cough_V2 : V2;
+fun coulter_N : N;
+fun council_N : N;
+fun council_board_N : N;
+fun council_chamber_N : N;
+fun councillor_N : N;
+fun counsel_N : N;
+fun counsel_V2 : V2;
+fun counsellor_N : N;
+fun count_N : N;
+fun count_V : V;
+fun count_V2 : V2;
+fun countable_A : A;
+fun countdown_N : N;
+fun countenance_N : N;
+fun countenance_V2 : V2;
+fun counter_Adv : Adv;
+fun counter_N : N;
+fun counter_V : V;
+fun counter_V2 : V2;
+fun counter_example_N : N;
+fun counter_revolution_N : N;
+fun counter_revolutionary_A : A;
+fun counter_revolutionary_N : N;
+fun counteract_V2 : V2;
+fun counteraction_N : N;
+fun counterattack_N : N;
+fun counterattack_V : V;
+fun counterattack_V2 : V2;
+fun counterattraction_N : N;
+fun counterbalance_N : N;
+fun counterbalance_V2 : V2;
+fun counterblast_N : N;
+fun counterclaim_N : N;
+fun counterclockwise_Adv : Adv;
+fun counterespionage_N : N;
+fun counterfeit_A : A;
+fun counterfeit_N : N;
+fun counterfeit_V2 : V2;
+fun counterfeiter_N : N;
+fun counterfoil_N : N;
+fun counterintelligence_N : N;
+fun counterirritant_N : N;
+fun countermand_V2 : V2;
+fun countermine_N : N;
+fun countermine_V : V;
+fun countermine_V2 : V2;
+fun counteroffer_N : N;
+fun counterpane_N : N;
+fun counterpart_N : N;
+fun counterplot_N : N;
+fun counterplot_V : V;
+fun counterplot_V2 : V2;
+fun counterpoint_N : N;
+fun counterpoise_N : N;
+fun counterpoise_V2 : V2;
+fun countersign_N : N;
+fun countersign_V2 : V2;
+fun countersink_V2 : V2;
+fun countertenor_N : N;
+fun countervail_V : V;
+fun countervail_V2 : V2;
+fun countess_N : N;
+fun counting_house_N : N;
+fun countless_A : A;
+fun countrified_A : A;
+fun country_N : N;
+fun country_house_N : N;
+fun country_seat_N : N;
+fun countryman_N : N;
+fun countryside_N : N;
+fun countrywoman_N : N;
+fun county_N : N;
+fun coup_N : N;
+fun coup_d'etat_N : N;
+fun coup_de_grace_N : N;
+fun couple_N : N;
+fun couple_V : V;
+fun couple_V2 : V2;
+fun couplet_N : N;
+fun coupling_N : N;
+fun coupon_N : N;
+fun coupe_N : N;
+fun courage_N : N;
+fun courageous_A : A;
+fun courageously_Adv : Adv;
+fun courgette_N : N;
+fun courier_N : N;
+fun course_N : N;
+fun course_V : V;
+fun course_V2 : V2;
+fun courser_N : N;
+fun coursing_N : N;
+fun court_N : N;
+fun court_V : V;
+fun court_V2 : V2;
+fun court_card_N : N;
+fun court_martial_N : N;
+fun court_martial_V2 : V2;
+fun courteous_A : A;
+fun courteously_Adv : Adv;
+fun courtesan_N : N;
+fun courtesy_N : N;
+fun courtier_N : N;
+fun courtliness_N : N;
+fun courtly_A : A;
+fun courtroom_N : N;
+fun courtship_N : N;
+fun courtyard_N : N;
+fun cousin_N : N;
+fun cousinly_A : A;
+fun cove_N : N;
+fun coven_N : N;
+fun covenant_N : N;
+fun covenant_V : V;
+fun covenant_V2 : V2;
+fun coventry_PN : PN;
+fun cover_N : N;
+fun cover_V2 : V2;
+fun cover_up_N : N;
+fun coverage_N : N;
+fun covering_A : A;
+fun covering_N : N;
+fun coverlet_N : N;
+fun covert_A : A;
+fun covert_N : N;
+fun covertly_Adv : Adv;
+fun covet_V2 : V2;
+fun covetous_A : A;
+fun covetously_Adv : Adv;
+fun covetousness_N : N;
+fun covey_N : N;
+fun cow_N : N;
+fun cow_V2 : V2;
+fun coward_N : N;
+fun cowardice_N : N;
+fun cowardly_A : A;
+fun cowbell_N : N;
+fun cowboy_N : N;
+fun cowcatcher_N : N;
+fun cowdenbeath_PN : PN;
+fun cower_V : V;
+fun cowes_PN : PN;
+fun cowhand_N : N;
+fun cowherd_N : N;
+fun cowhide_N : N;
+fun cowhouse_N : N;
+fun cowl_N : N;
+fun cowling_N : N;
+fun cowman_N : N;
+fun cowpox_N : N;
+fun cowrie_N : N;
+fun cowshed_N : N;
+fun cowskin_N : N;
+fun cowslip_N : N;
+fun cox_N : N;
+fun cox_V : V;
+fun cox_V2 : V2;
+fun coxcomb_N : N;
+fun coxswain_N : N;
+fun coy_A : A;
+fun coyly_Adv : Adv;
+fun coyness_N : N;
+fun coyote_N : N;
+fun coypu_N : N;
+fun cozen_V2 : V2;
+fun cozy_A : A;
+fun cp_PN : PN;
+fun cpl_PN : PN;
+fun crab_N : N;
+fun crab_V : V;
+fun crab_V2 : V2;
+fun crab_apple_N : N;
+fun crabbed_A : A;
+fun crack_N : N;
+fun crack_V : V;
+fun crack_V2 : V2;
+fun crack_down_N : N;
+fun crack_up_N : N;
+fun cracker_N : N;
+fun crackers_A : A;
+fun crackle_N : N;
+fun crackle_V : V;
+fun crackle_china_N : N;
+fun crackleware_N : N;
+fun crackling_N : N;
+fun crackpot_N : N;
+fun cracksman_N : N;
+fun cradle_N : N;
+fun cradle_V2 : V2;
+fun craft_N : N;
+fun craftily_Adv : Adv;
+fun craftiness_N : N;
+fun craftsman_N : N;
+fun craftsmanship_N : N;
+fun crafty_A : A;
+fun crag_N : N;
+fun cragged_A : A;
+fun craggy_A : A;
+fun cragsman_N : N;
+fun crake_N : N;
+fun cram_V : V;
+fun cram_V2 : V2;
+fun cram_full_A : A;
+fun cram_full_Adv : Adv;
+fun cramlington_PN : PN;
+fun crammer_N : N;
+fun cramp_N : N;
+fun cramp_V2 : V2;
+fun cramp_iron_N : N;
+fun cramped_A : A;
+fun crampon_N : N;
+fun cranberry_N : N;
+fun crane_N : N;
+fun crane_V : V;
+fun crane_V2 : V2;
+fun crane_fly_N : N;
+fun cranial_A : A;
+fun cranium_N : N;
+fun crank_N : N;
+fun crank_V2 : V2;
+fun crankshaft_N : N;
+fun cranky_A : A;
+fun crannied_A : A;
+fun cranny_N : N;
+fun crap_N : N;
+fun crap_V : V;
+fun crap_shooting_N : N;
+fun crape_N : N;
+fun craps_N : N;
+fun crash_Adv : Adv;
+fun crash_N : N;
+fun crash_V : V;
+fun crash_V2 : V2;
+fun crash_dive_N : N;
+fun crash_dive_V : V;
+fun crash_helmet_N : N;
+fun crash_land_V : V;
+fun crash_land_V2 : V2;
+fun crash_landing_N : N;
+fun crass_A : A;
+fun crate_N : N;
+fun crate_V2 : V2;
+fun crater_N : N;
+fun cravat_N : N;
+fun crave_V : V;
+fun crave_V2 : V2;
+fun craven_A : A;
+fun craven_N : N;
+fun craving_N : N;
+fun crawfish_N : N;
+fun crawl_N : N;
+fun crawl_V : V;
+fun crawler_N : N;
+fun crawley_PN : PN;
+fun crayfish_N : N;
+fun crayon_N : N;
+fun crayon_V2 : V2;
+fun craze_N : N;
+fun crazed_A : A;
+fun crazily_Adv : Adv;
+fun craziness_N : N;
+fun crazy_A : A;
+fun creak_N : N;
+fun creak_V : V;
+fun creakily_Adv : Adv;
+fun creaky_A : A;
+fun cream_N : N;
+fun cream_V2 : V2;
+fun creamery_N : N;
+fun creamy_A : A;
+fun crease_N : N;
+fun crease_V : V;
+fun crease_V2 : V2;
+fun create_V2 : V2;
+fun creation_N : N;
+fun creative_A : A;
+fun creatively_Adv : Adv;
+fun creativeness_N : N;
+fun creator_N : N;
+fun creature_N : N;
+fun credence_N : N;
+fun credibility_N : N;
+fun credible_A : A;
+fun credibly_Adv : Adv;
+fun credit_N : N;
+fun credit_V2 : V2;
+fun credit_side_N : N;
+fun credit_worthiness_N : N;
+fun credit_worthy_A : A;
+fun creditable_A : A;
+fun creditably_Adv : Adv;
+fun creditor_N : N;
+fun credo_N : N;
+fun credulity_N : N;
+fun credulous_A : A;
+fun credulously_Adv : Adv;
+fun creed_N : N;
+fun creek_N : N;
+fun creel_N : N;
+fun creep_N : N;
+fun creep_V : V;
+fun creeper_N : N;
+fun creepy_A : A;
+fun cremate_V2 : V2;
+fun cremation_N : N;
+fun crematorium_N : N;
+fun crematory_N : N;
+fun crenellated_A : A;
+fun creole_A : A;
+fun creole_N : N;
+fun creosote_N : N;
+fun crepe_1_N : N;
+fun crepitate_V : V;
+fun crepitation_N : N;
+fun crepuscular_A : A;
+fun cres_PN : PN;
+fun crescendo_N : N;
+fun crescent_N : N;
+fun cress_N : N;
+fun crest_N : N;
+fun crest_V : V;
+fun crest_V2 : V2;
+fun crested_A : A;
+fun crestfallen_A : A;
+fun creswell_PN : PN;
+fun cretaceous_A : A;
+fun cretin_N : N;
+fun cretinous_A : A;
+fun cretonne_N : N;
+fun crevasse_N : N;
+fun crevice_N : N;
+fun crew_N : N;
+fun crew_V : V;
+fun crew_cut_N : N;
+fun crew_neck_N : N;
+fun crewe_PN : PN;
+fun crib_N : N;
+fun crib_V : V;
+fun crib_V2 : V2;
+fun cribbage_N : N;
+fun cribbage_board_N : N;
+fun crick_N : N;
+fun crick_V2 : V2;
+fun cricket_N : N;
+fun cricketer_N : N;
+fun crieff_PN : PN;
+fun crier_N : N;
+fun crime_N : N;
+fun crime_V2 : V2;
+fun criminal_A : A;
+fun criminal_N : N;
+fun criminally_Adv : Adv;
+fun criminology_N : N;
+fun crimp_V2 : V2;
+fun crimson_A : A;
+fun crimson_N : N;
+fun crimson_V : V;
+fun crimson_V2 : V2;
+fun cringe_V : V;
+fun crinkle_N : N;
+fun crinkle_V : V;
+fun crinkle_V2 : V2;
+fun crinkly_A : A;
+fun crinoline_N : N;
+fun cripple_N : N;
+fun cripple_V2 : V2;
+fun crisis_N : N;
+fun crisp_A : A;
+fun crisp_N : N;
+fun crisp_V : V;
+fun crisp_V2 : V2;
+fun crisply_Adv : Adv;
+fun crispness_N : N;
+fun crisscross_A : A;
+fun crisscross_Adv : Adv;
+fun crisscross_V : V;
+fun crisscross_V2 : V2;
+fun criterion_N : N;
+fun critic_N : N;
+fun critical_A : A;
+fun critically_Adv : Adv;
+fun criticism_N : N;
+fun criticize_V : V;
+fun criticize_V2 : V2;
+fun critique_N : N;
+fun croak_N : N;
+fun croak_V : V;
+fun croak_V2 : V2;
+fun crochet_N : N;
+fun crochet_V : V;
+fun crochet_V2 : V2;
+fun crochet_hook_N : N;
+fun crock_N : N;
+fun crock_V : V;
+fun crock_V2 : V2;
+fun crockery_N : N;
+fun crocodile_N : N;
+fun crocus_N : N;
+fun croesus_PN : PN;
+fun croft_N : N;
+fun crofter_N : N;
+fun cromer_PN : PN;
+fun cromlech_N : N;
+fun crone_N : N;
+fun crony_N : N;
+fun crook_N : N;
+fun crook_PN : PN;
+fun crook_V : V;
+fun crook_V2 : V2;
+fun crook_back_A : A;
+fun crook_backed_A : A;
+fun crooked_A : A;
+fun crookedly_Adv : Adv;
+fun crookedness_N : N;
+fun croon_V : V;
+fun croon_V2 : V2;
+fun crooner_N : N;
+fun crop_N : N;
+fun crop_V : V;
+fun crop_V2 : V2;
+fun crop_dusting_N : N;
+fun cropper_N : N;
+fun croquet_N : N;
+fun croquette_N : N;
+fun crore_N : N;
+fun crosby_PN : PN;
+fun crosier_N : N;
+fun cross_A : A;
+fun cross_N : N;
+fun cross_V : V;
+fun cross_V2 : V2;
+fun cross_bench_N : N;
+fun cross_bencher_N : N;
+fun cross_division_N : N;
+fun cross_examination_N : N;
+fun cross_examine_V2 : V2;
+fun cross_examiner_N : N;
+fun cross_fertilization_N : N;
+fun cross_fertilize_V2 : V2;
+fun cross_grained_A : A;
+fun cross_heading_N : N;
+fun cross_index_N : N;
+fun cross_index_V2 : V2;
+fun cross_legged_Adv : Adv;
+fun cross_question_V2 : V2;
+fun cross_reference_N : N;
+fun cross_section_N : N;
+fun cross_stitch_N : N;
+fun crossbar_N : N;
+fun crossbeam_N : N;
+fun crossbow_N : N;
+fun crossbred_A : A;
+fun crossbreed_N : N;
+fun crossbreed_V2 : V2;
+fun crosscheck_N : N;
+fun crosscheck_V : V;
+fun crosscheck_V2 : V2;
+fun crosscountry_A : A;
+fun crosscountry_Adv : Adv;
+fun crosscurrent_N : N;
+fun crosscut_A : A;
+fun crosscut_N : N;
+fun crosse_N : N;
+fun crosseyed_A : A;
+fun crossfire_N : N;
+fun crossing_N : N;
+fun crossly_Adv : Adv;
+fun crossness_N : N;
+fun crosspatch_N : N;
+fun crosspiece_N : N;
+fun crossroad_N : N;
+fun crosstalk_N : N;
+fun crosswalk_N : N;
+fun crosswind_N : N;
+fun crosswise_Adv : Adv;
+fun crossword_N : N;
+fun crotch_N : N;
+fun crotchet_N : N;
+fun crotchety_A : A;
+fun crouch_N : N;
+fun crouch_V : V;
+fun croup_N : N;
+fun croupier_N : N;
+fun crow's_nest_N : N;
+fun crow_N : N;
+fun crow_V : V;
+fun crowbar_N : N;
+fun crowborough_PN : PN;
+fun crowd_N : N;
+fun crowd_V : V;
+fun crowd_V2 : V2;
+fun crowded_A : A;
+fun crown_N : N;
+fun crown_V2 : V2;
+fun crown_land_N : N;
+fun crowning_A : A;
+fun crowthorne_PN : PN;
+fun croydon_PN : PN;
+fun crozier_N : N;
+fun crucial_A : A;
+fun crucially_Adv : Adv;
+fun crucible_N : N;
+fun crucifix_N : N;
+fun crucifixion_N : N;
+fun cruciform_A : A;
+fun crucify_V2 : V2;
+fun crude_A : A;
+fun crudely_Adv : Adv;
+fun crudeness_N : N;
+fun crudity_N : N;
+fun cruel_A : A;
+fun cruelly_Adv : Adv;
+fun cruelty_N : N;
+fun cruet_N : N;
+fun cruet_stand_N : N;
+fun cruise_N : N;
+fun cruise_V : V;
+fun cruiser_N : N;
+fun crumb_N : N;
+fun crumble_V : V;
+fun crumble_V2 : V2;
+fun crumbly_A : A;
+fun crumpet_N : N;
+fun crumple_V : V;
+fun crumple_V2 : V2;
+fun crunch_N : N;
+fun crunch_V : V;
+fun crunch_V2 : V2;
+fun crupper_N : N;
+fun crusade_N : N;
+fun crusade_V : V;
+fun crusader_N : N;
+fun cruse_N : N;
+fun crush_N : N;
+fun crush_V : V;
+fun crush_V2 : V2;
+fun crushing_A : A;
+fun crushingly_Adv : Adv;
+fun crust_N : N;
+fun crust_V : V;
+fun crust_V2 : V2;
+fun crustacean_N : N;
+fun crusted_A : A;
+fun crusty_A : A;
+fun crutch_N : N;
+fun crux_N : N;
+fun cruzeiro_N : N;
+fun cry_N : N;
+fun cry_V : V;
+fun cry_V2 : V2;
+fun crybaby_N : N;
+fun crying_A : A;
+fun crypt_N : N;
+fun cryptic_A : A;
+fun cryptically_Adv : Adv;
+fun cryptogram_N : N;
+fun crystal_N : N;
+fun crystal_gazing_N : N;
+fun crystalline_A : A;
+fun crystallization_N : N;
+fun crystallize_V : V;
+fun crystallize_V2 : V2;
+fun crystallography_N : N;
+fun creche_N : N;
+fun creme_de_menthe_N : N;
+fun crepe_2_N : N;
+fun cub_N : N;
+fun cuba_PN : PN;
+fun cuban_A : A;
+fun cuban_N : N;
+fun cubbyhole_N : N;
+fun cube_N : N;
+fun cube_V2 : V2;
+fun cubic_A : A;
+fun cubical_A : A;
+fun cubicle_N : N;
+fun cubism_N : N;
+fun cubist_N : N;
+fun cubit_N : N;
+fun cuckold_N : N;
+fun cuckold_V2 : V2;
+fun cuckoo_N : N;
+fun cuckoo_clock_N : N;
+fun cucumber_N : N;
+fun cud_N : N;
+fun cuddle_N : N;
+fun cuddle_V : V;
+fun cuddle_V2 : V2;
+fun cuddlesome_A : A;
+fun cuddly_A : A;
+fun cudgel_N : N;
+fun cudgel_V2 : V2;
+fun cudworth_PN : PN;
+fun cue_N : N;
+fun cuff_N : N;
+fun cuff_V2 : V2;
+fun cuffley_PN : PN;
+fun cuirass_N : N;
+fun cuirassier_N : N;
+fun cuisine_N : N;
+fun cul_de_sac_N : N;
+fun culcheth_PN : PN;
+fun culinary_A : A;
+fun cull_N : N;
+fun cull_V2 : V2;
+fun cullender_N : N;
+fun culminate_V2 : V2;
+fun culmination_N : N;
+fun culpability_N : N;
+fun culpable_A : A;
+fun culpably_Adv : Adv;
+fun culprit_N : N;
+fun cult_N : N;
+fun cultivable_A : A;
+fun cultivate_V2 : V2;
+fun cultivated_A : A;
+fun cultivation_N : N;
+fun cultivator_N : N;
+fun cultural_A : A;
+fun culture_N : N;
+fun cultured_A : A;
+fun culvert_N : N;
+fun cumber_V2 : V2;
+fun cumberland_PN : PN;
+fun cumbernauld_PN : PN;
+fun cumbersome_A : A;
+fun cumbria_PN : PN;
+fun cumbrous_A : A;
+fun cummerbund_N : N;
+fun cumnock_PN : PN;
+fun cumulative_A : A;
+fun cumulatively_Adv : Adv;
+fun cumulus_N : N;
+fun cuneiform_A : A;
+fun cunning_A : A;
+fun cunning_N : N;
+fun cunningly_Adv : Adv;
+fun cunt_N : N;
+fun cup_N : N;
+fun cup_V2 : V2;
+fun cup_bearer_N : N;
+fun cup_final_N : N;
+fun cup_tie_N : N;
+fun cupar_PN : PN;
+fun cupboard_N : N;
+fun cupboard_love_N : N;
+fun cupful_N : N;
+fun cupid_PN : PN;
+fun cupidity_N : N;
+fun cupola_N : N;
+fun cuppa_N : N;
+fun cupping_N : N;
+fun cupric_A : A;
+fun cupro_nickel_N : N;
+fun cur_N : N;
+fun curability_N : N;
+fun curable_A : A;
+fun curacy_N : N;
+fun curate_N : N;
+fun curative_A : A;
+fun curator_N : N;
+fun curacao_N : N;
+fun curacoa_N : N;
+fun curb_N : N;
+fun curb_V2 : V2;
+fun curd_N : N;
+fun curdle_V : V;
+fun curdle_V2 : V2;
+fun cure_1_N : N;
+fun cure_V : V;
+fun cure_V2 : V2;
+fun cure_all_N : N;
+fun curfew_N : N;
+fun curio_N : N;
+fun curiosity_N : N;
+fun curious_A : A;
+fun curiously_Adv : Adv;
+fun curitiba_PN : PN;
+fun curl_N : N;
+fun curl_V : V;
+fun curl_V2 : V2;
+fun curler_N : N;
+fun curlew_N : N;
+fun curling_N : N;
+fun curly_A : A;
+fun curmudgeon_N : N;
+fun currant_N : N;
+fun currency_N : N;
+fun current_A : A;
+fun current_N : N;
+fun currently_Adv : Adv;
+fun curriculum_N : N;
+fun curriculum_vitae_N : N;
+fun currie_PN : PN;
+fun currish_A : A;
+fun currishly_Adv : Adv;
+fun curry_N : N;
+fun curry_V2 : V2;
+fun curry_powder_N : N;
+fun curse_N : N;
+fun curse_V : V;
+fun curse_V2 : V2;
+fun cursed_A : A;
+fun cursedly_Adv : Adv;
+fun cursive_A : A;
+fun cursorily_Adv : Adv;
+fun cursory_A : A;
+fun curst_A : A;
+fun curt_A : A;
+fun curtail_V2 : V2;
+fun curtailment_N : N;
+fun curtain_N : N;
+fun curtain_V2 : V2;
+fun curtain_call_N : N;
+fun curtain_lecture_N : N;
+fun curtain_raiser_N : N;
+fun curtly_Adv : Adv;
+fun curtness_N : N;
+fun curtsey_N : N;
+fun curtsey_V : V;
+fun curtsy_N : N;
+fun curtsy_V : V;
+fun curvature_N : N;
+fun curve_N : N;
+fun curve_V : V;
+fun curve_V2 : V2;
+fun cure_2_N : N;
+fun cushion_N : N;
+fun cushion_V2 : V2;
+fun cushy_A : A;
+fun cusp_N : N;
+fun cuspidor_N : N;
+fun cuss_N : N;
+fun cussed_A : A;
+fun cussedly_Adv : Adv;
+fun cussedness_N : N;
+fun custard_N : N;
+fun custodial_A : A;
+fun custodian_N : N;
+fun custody_N : N;
+fun custom_N : N;
+fun custom_built_A : A;
+fun custom_made_A : A;
+fun customarily_Adv : Adv;
+fun customary_A : A;
+fun customer_N : N;
+fun cut_N : N;
+fun cut_V : V;
+fun cut_V2 : V2;
+fun cut_out_N : N;
+fun cut_price_A : A;
+fun cut_rate_A : A;
+fun cut_throat_A : A;
+fun cut_throat_N : N;
+fun cutback_N : N;
+fun cute_A : A;
+fun cutely_Adv : Adv;
+fun cuteness_N : N;
+fun cuticle_N : N;
+fun cutlass_N : N;
+fun cutler_N : N;
+fun cutlery_N : N;
+fun cutlet_N : N;
+fun cutpurse_N : N;
+fun cutter_N : N;
+fun cutting_A : A;
+fun cutting_N : N;
+fun cutting_room_N : N;
+fun cuttlefish_N : N;
+fun cutworm_N : N;
+fun cwmbran_PN : PN;
+fun cwt_N : N;
+fun cyanide_N : N;
+fun cybernetic_A : A;
+fun cybernetics_N : N;
+fun cyclamen_N : N;
+fun cycle_N : N;
+fun cycle_V : V;
+fun cyclic_A : A;
+fun cyclical_A : A;
+fun cyclist_N : N;
+fun cyclone_N : N;
+fun cyclonic_A : A;
+fun cyclopaedia_N : N;
+fun cyclopean_A : A;
+fun cyclostyle_N : N;
+fun cyclostyle_V2 : V2;
+fun cyclotron_N : N;
+fun cyder_N : N;
+fun cygnet_N : N;
+fun cylinder_N : N;
+fun cylindrical_A : A;
+fun cymbal_N : N;
+fun cynic_N : N;
+fun cynical_A : A;
+fun cynically_Adv : Adv;
+fun cynicism_N : N;
+fun cynosure_N : N;
+fun cynthia_PN : PN;
+fun cypher_N : N;
+fun cypher_V : V;
+fun cypher_V2 : V2;
+fun cypress_N : N;
+fun cyprian_A : A;
+fun cypriot_A : A;
+fun cypriot_N : N;
+fun cyprus_PN : PN;
+fun cyril_PN : PN;
+fun cyrillic_A : A;
+fun cyst_N : N;
+fun czar_N : N;
+fun czarina_N : N;
+fun czech_A : A;
+fun czech_N : N;
+fun czechoslovak_A : A;
+fun czechoslovak_N : N;
+fun czechoslovakia_PN : PN;
+fun czechoslovakian_A : A;
+fun czechoslovakian_N : N;
+fun d_day_PN : PN;
+fun dab_N : N;
+fun dab_V : V;
+fun dab_V2 : V2;
+fun dabble_V : V;
+fun dabble_V2 : V2;
+fun dabbler_N : N;
+fun dacca_PN : PN;
+fun dace_N : N;
+fun dacha_N : N;
+fun dachshund_N : N;
+fun dacoit_N : N;
+fun dacoity_N : N;
+fun dactyl_N : N;
+fun dactylic_A : A;
+fun dad_N : N;
+fun daddy_N : N;
+fun daddy_longlegs_N : N;
+fun dado_N : N;
+fun daemon_N : N;
+fun daffodil_N : N;
+fun daft_A : A;
+fun daftly_Adv : Adv;
+fun dagger_N : N;
+fun dago_N : N;
+fun daguerreotype_N : N;
+fun dahlia_N : N;
+fun dail_eireann_N : N;
+fun daily_A : A;
+fun daily_Adv : Adv;
+fun daily_N : N;
+fun daintily_Adv : Adv;
+fun daintiness_N : N;
+fun dainty_A : A;
+fun dainty_N : N;
+fun dairy_N : N;
+fun dairy_farm_N : N;
+fun dairy_farming_N : N;
+fun dairying_N : N;
+fun dairymaid_N : N;
+fun dairyman_N : N;
+fun dais_N : N;
+fun daisy_N : N;
+fun daisy_PN : PN;
+fun dakar_PN : PN;
+fun dakota_PN : PN;
+fun dale_N : N;
+fun dalesman_N : N;
+fun dalkeith_PN : PN;
+fun dallas_PN : PN;
+fun dalliance_N : N;
+fun dally_V : V;
+fun dalmatian_N : N;
+fun dalry_PN : PN;
+fun dalton_PN : PN;
+fun dam_N : N;
+fun dam_V2 : V2;
+fun damage_N : N;
+fun damage_V2 : V2;
+fun damascene_A : A;
+fun damascene_V2 : V2;
+fun damascus_PN : PN;
+fun damask_N : N;
+fun dame_N : N;
+fun damn_A : A;
+fun damn_Adv : Adv;
+fun damn_N : N;
+fun damn_V2 : V2;
+fun damnable_A : A;
+fun damnably_Adv : Adv;
+fun damnation_N : N;
+fun damned_A : A;
+fun damned_Adv : Adv;
+fun damocles_PN : PN;
+fun damp_A : A;
+fun damp_N : N;
+fun damp_V : V;
+fun damp_V2 : V2;
+fun dampen_V : V;
+fun dampen_V2 : V2;
+fun damper_N : N;
+fun dampish_A : A;
+fun damply_Adv : Adv;
+fun dampness_N : N;
+fun damsel_N : N;
+fun damson_N : N;
+fun dan_PN : PN;
+fun dance_N : N;
+fun dance_V : V;
+fun dance_V2 : V2;
+fun dance_band_N : N;
+fun dance_hall_N : N;
+fun dance_orchestra_N : N;
+fun dancer_N : N;
+fun dancing_A : A;
+fun dancing_N : N;
+fun dandelion_N : N;
+fun dander_N : N;
+fun dandified_A : A;
+fun dandle_V2 : V2;
+fun dandruff_N : N;
+fun dandy_A : A;
+fun dandy_N : N;
+fun dane_N : N;
+fun danger_N : N;
+fun dangerous_A : A;
+fun dangerously_Adv : Adv;
+fun dangle_V : V;
+fun dangle_V2 : V2;
+fun daniel_N : N;
+fun daniel_PN : PN;
+fun danish_A : A;
+fun danish_N : N;
+fun dank_A : A;
+fun danny_PN : PN;
+fun danse_macabre_N : N;
+fun daphne_N : N;
+fun daphne_PN : PN;
+fun dapper_A : A;
+fun dapple_V2 : V2;
+fun dapple_grey_A : A;
+fun dapple_grey_N : N;
+fun darby_PN : PN;
+fun dare_N : N;
+fun dare_V : V;
+fun dare_V2 : V2;
+fun daredevil_N : N;
+fun darenth_PN : PN;
+fun darfield_PN : PN;
+fun daring_A : A;
+fun daring_N : N;
+fun daringly_Adv : Adv;
+fun dark_A : A;
+fun dark_N : N;
+fun darken_V : V;
+fun darken_V2 : V2;
+fun darkey_N : N;
+fun darkie_N : N;
+fun darkly_Adv : Adv;
+fun darkness_N : N;
+fun darkroom_N : N;
+fun darky_N : N;
+fun darling_N : N;
+fun darlington_PN : PN;
+fun darmstadt_PN : PN;
+fun darn_N : N;
+fun darn_V : V;
+fun darn_V2 : V2;
+fun darning_N : N;
+fun darning_needle_N : N;
+fun dart_N : N;
+fun dart_V : V;
+fun dart_V2 : V2;
+fun dartford_PN : PN;
+fun dartmouth_PN : PN;
+fun darwen_PN : PN;
+fun dash_N : N;
+fun dash_V : V;
+fun dash_V2 : V2;
+fun dashboard_N : N;
+fun dashing_A : A;
+fun dashingly_Adv : Adv;
+fun dastard_N : N;
+fun dastardly_A : A;
+fun data_N : N;
+fun datable_A : A;
+fun date_N : N;
+fun date_V : V;
+fun date_V2 : V2;
+fun dated_A : A;
+fun dateless_A : A;
+fun dateline_N : N;
+fun dative_A : A;
+fun dative_N : N;
+fun datum_N : N;
+fun daub_N : N;
+fun daub_V : V;
+fun daub_V2 : V2;
+fun dauber_N : N;
+fun daughter_N : N;
+fun daughter_in_law_N : N;
+fun daughterly_A : A;
+fun daunt_V2 : V2;
+fun dauntless_A : A;
+fun dauntlessly_Adv : Adv;
+fun dauphin_N : N;
+fun dave_PN : PN;
+fun davenport_N : N;
+fun daventry_PN : PN;
+fun davey_PN : PN;
+fun david_PN : PN;
+fun davit_N : N;
+fun daw_N : N;
+fun dawdle_V : V;
+fun dawdle_V2 : V2;
+fun dawdler_N : N;
+fun dawley_PN : PN;
+fun dawlish_PN : PN;
+fun dawn_N : N;
+fun dawn_PN : PN;
+fun dawn_V : V;
+fun day_N : N;
+fun day_boarder_N : N;
+fun day_labourer_N : N;
+fun day_return_N : N;
+fun day_school_N : N;
+fun daybook_N : N;
+fun dayboy_N : N;
+fun daybreak_N : N;
+fun daydream_N : N;
+fun daydream_V : V;
+fun daygirl_N : N;
+fun daylight_N : N;
+fun daylight_saving_A : A;
+fun daylight_saving_N : N;
+fun daylong_A : A;
+fun daylong_Adv : Adv;
+fun dayspring_N : N;
+fun daytime_N : N;
+fun dayton_PN : PN;
+fun daze_N : N;
+fun daze_V2 : V2;
+fun dazedly_Adv : Adv;
+fun dazzle_N : N;
+fun dazzle_V2 : V2;
+fun ddt_N : N;
+fun de_escalate_V2 : V2;
+fun de_escalation_N : N;
+fun de_facto_A : A;
+fun de_facto_Adv : Adv;
+fun de_ice_V2 : V2;
+fun de_jure_A : A;
+fun de_jure_Adv : Adv;
+fun de_luxe_A : A;
+fun de_rigeur_A : A;
+fun de_trop_A : A;
+fun deacon_N : N;
+fun deaconess_N : N;
+fun dead_A : A;
+fun dead_Adv : Adv;
+fun deaden_V2 : V2;
+fun deadline_N : N;
+fun deadlock_N : N;
+fun deadlocked_A : A;
+fun deadly_A : A;
+fun deadly_Adv : Adv;
+fun deadpan_A : A;
+fun deaf_A : A;
+fun deaf_aid_N : N;
+fun deaf_mute_N : N;
+fun deafen_V2 : V2;
+fun deafness_N : N;
+fun deal_Adv : Adv;
+fun deal_N : N;
+fun deal_PN : PN;
+fun deal_V : V;
+fun deal_V2 : V2;
+fun dealer_N : N;
+fun dealing_N : N;
+fun dean_N : N;
+fun dean_PN : PN;
+fun deanery_N : N;
+fun dear_A : A;
+fun dear_Adv : Adv;
+fun dear_N : N;
+fun dearest_N : N;
+fun dearie_N : N;
+fun dearly_Adv : Adv;
+fun dearness_N : N;
+fun dearth_N : N;
+fun deary_N : N;
+fun death_N : N;
+fun death_mask_N : N;
+fun death_rate_N : N;
+fun death_roll_N : N;
+fun death_warrant_N : N;
+fun deathbed_N : N;
+fun deathblow_N : N;
+fun deathless_A : A;
+fun deathlike_A : A;
+fun deathly_A : A;
+fun deathly_Adv : Adv;
+fun deathtrap_N : N;
+fun deb_N : N;
+fun debag_V2 : V2;
+fun debar_V2 : V2;
+fun debark_V : V;
+fun debark_V2 : V2;
+fun debarkation_N : N;
+fun debase_V2 : V2;
+fun debasement_N : N;
+fun debatable_A : A;
+fun debate_N : N;
+fun debate_V : V;
+fun debate_V2 : V2;
+fun debater_N : N;
+fun debauch_N : N;
+fun debauch_V2 : V2;
+fun debauchee_N : N;
+fun debauchery_N : N;
+fun debbie_PN : PN;
+fun debby_PN : PN;
+fun debenture_N : N;
+fun debilitate_V2 : V2;
+fun debility_N : N;
+fun debit_N : N;
+fun debit_V2 : V2;
+fun debit_side_N : N;
+fun debonair_A : A;
+fun deborah_PN : PN;
+fun debouch_V : V;
+fun debouch_V2 : V2;
+fun debrief_V2 : V2;
+fun debris_1_N : N;
+fun debt_N : N;
+fun debtor_N : N;
+fun debug_V2 : V2;
+fun debunk_V2 : V2;
+fun debut_1_N : N;
+fun debutante_1_N : N;
+fun dec_PN : PN;
+fun decade_N : N;
+fun decadence_N : N;
+fun decadent_A : A;
+fun decadent_N : N;
+fun decalogue_N : N;
+fun decamp_V : V;
+fun decant_V2 : V2;
+fun decanter_N : N;
+fun decapitate_V2 : V2;
+fun decapitation_N : N;
+fun decarbonize_V2 : V2;
+fun decasyllabic_A : A;
+fun decasyllable_N : N;
+fun decay_N : N;
+fun decay_V : V;
+fun decease_N : N;
+fun decease_V : V;
+fun deceit_N : N;
+fun deceitful_A : A;
+fun deceitfully_Adv : Adv;
+fun deceitfulness_N : N;
+fun deceive_V2 : V2;
+fun deceiver_N : N;
+fun deceivingly_Adv : Adv;
+fun decelerate_V : V;
+fun decelerate_V2 : V2;
+fun december_N : N;
+fun december_PN : PN;
+fun decency_N : N;
+fun decent_A : A;
+fun decently_Adv : Adv;
+fun decentralization_N : N;
+fun decentralize_V2 : V2;
+fun deception_N : N;
+fun deceptive_A : A;
+fun deceptively_Adv : Adv;
+fun decibel_N : N;
+fun decide_V : V;
+fun decide_V2 : V2;
+fun decided_A : A;
+fun decidedly_Adv : Adv;
+fun deciduous_A : A;
+fun decimal_A : A;
+fun decimalization_N : N;
+fun decimalize_V2 : V2;
+fun decimate_V2 : V2;
+fun decipher_V2 : V2;
+fun decipherable_A : A;
+fun decision_N : N;
+fun decisive_A : A;
+fun decisively_Adv : Adv;
+fun deck_N : N;
+fun deck_V2 : V2;
+fun decker_N : N;
+fun deckle_edged_A : A;
+fun declaim_V : V;
+fun declaim_V2 : V2;
+fun declamation_N : N;
+fun declamatory_A : A;
+fun declarable_A : A;
+fun declaration_N : N;
+fun declare_V : V;
+fun declare_V2 : V2;
+fun declassification_N : N;
+fun declassify_V2 : V2;
+fun declension_N : N;
+fun declination_N : N;
+fun decline_N : N;
+fun decline_V : V;
+fun decline_V2 : V2;
+fun declivity_N : N;
+fun declutch_V : V;
+fun decode_V2 : V2;
+fun decoder_N : N;
+fun decoke_V2 : V2;
+fun decolonization_N : N;
+fun decolonize_V2 : V2;
+fun decompose_V : V;
+fun decompose_V2 : V2;
+fun decomposition_N : N;
+fun decompress_V2 : V2;
+fun decompression_N : N;
+fun decontaminate_V2 : V2;
+fun decontamination_N : N;
+fun decontrol_V2 : V2;
+fun decorate_V2 : V2;
+fun decoration_N : N;
+fun decorative_A : A;
+fun decorator_N : N;
+fun decorous_A : A;
+fun decorously_Adv : Adv;
+fun decorum_N : N;
+fun decoy_N : N;
+fun decoy_V2 : V2;
+fun decrease_N : N;
+fun decrease_V : V;
+fun decrease_V2 : V2;
+fun decree_N : N;
+fun decree_V2 : V2;
+fun decree_nisi_N : N;
+fun decrepit_A : A;
+fun decrepitude_N : N;
+fun decry_V2 : V2;
+fun dedicate_V2 : V2;
+fun dedication_N : N;
+fun deduce_V2 : V2;
+fun deduct_V2 : V2;
+fun deductible_A : A;
+fun deduction_N : N;
+fun deductive_A : A;
+fun deed_N : N;
+fun deed_box_N : N;
+fun deedpoll_N : N;
+fun deem_V2 : V2;
+fun deep_A : A;
+fun deep_Adv : Adv;
+fun deep_N : N;
+fun deep_freeze_N : N;
+fun deep_freeze_V2 : V2;
+fun deep_laid_A : A;
+fun deep_mined_A : A;
+fun deep_rooted_A : A;
+fun deep_sea_A : A;
+fun deep_seated_A : A;
+fun deep_water_A : A;
+fun deepen_V : V;
+fun deepen_V2 : V2;
+fun deeply_Adv : Adv;
+fun deepness_N : N;
+fun deer_N : N;
+fun deerskin_N : N;
+fun deerstalker_N : N;
+fun deerstalking_N : N;
+fun deface_V2 : V2;
+fun defacement_N : N;
+fun defalcation_N : N;
+fun defamation_N : N;
+fun defamatory_A : A;
+fun defame_V2 : V2;
+fun default_N : N;
+fun default_V : V;
+fun defaulter_N : N;
+fun defeat_N : N;
+fun defeat_V2 : V2;
+fun defeatism_N : N;
+fun defeatist_N : N;
+fun defecate_V : V;
+fun defecation_N : N;
+fun defect_N : N;
+fun defect_V : V;
+fun defection_N : N;
+fun defective_A : A;
+fun defectively_Adv : Adv;
+fun defectiveness_N : N;
+fun defector_N : N;
+fun defence_N : N;
+fun defenceless_A : A;
+fun defencelessly_Adv : Adv;
+fun defencelessness_N : N;
+fun defend_V2 : V2;
+fun defendant_N : N;
+fun defender_N : N;
+fun defensible_A : A;
+fun defensive_A : A;
+fun defensive_N : N;
+fun defensively_Adv : Adv;
+fun defer_V : V;
+fun defer_V2 : V2;
+fun deference_N : N;
+fun deferential_A : A;
+fun deferentially_Adv : Adv;
+fun deferment_N : N;
+fun defiance_N : N;
+fun defiant_A : A;
+fun defiantly_Adv : Adv;
+fun deficiency_N : N;
+fun deficient_A : A;
+fun deficit_N : N;
+fun defile_N : N;
+fun defile_V : V;
+fun defile_V2 : V2;
+fun defilement_N : N;
+fun definable_A : A;
+fun define_V2 : V2;
+fun definite_A : A;
+fun definitely_Adv : Adv;
+fun definition_N : N;
+fun definitive_A : A;
+fun deflate_V2 : V2;
+fun deflation_N : N;
+fun deflationary_A : A;
+fun deflect_V : V;
+fun deflect_V2 : V2;
+fun deflection_N : N;
+fun deflower_V2 : V2;
+fun defoliant_N : N;
+fun defoliate_V2 : V2;
+fun defoliation_N : N;
+fun deforest_V2 : V2;
+fun deform_V2 : V2;
+fun deformed_A : A;
+fun deformity_N : N;
+fun defraud_V2 : V2;
+fun defray_V2 : V2;
+fun defrayal_N : N;
+fun defrayment_N : N;
+fun defrock_V2 : V2;
+fun defrost_V2 : V2;
+fun defroster_N : N;
+fun deft_A : A;
+fun deftly_Adv : Adv;
+fun deftness_N : N;
+fun defunct_A : A;
+fun defuse_V2 : V2;
+fun defy_V2 : V2;
+fun degauss_V2 : V2;
+fun degeneracy_N : N;
+fun degenerate_A : A;
+fun degenerate_N : N;
+fun degenerate_V : V;
+fun degeneration_N : N;
+fun degradation_N : N;
+fun degrade_V2 : V2;
+fun degree_N : N;
+fun dehorn_V2 : V2;
+fun dehumanize_V2 : V2;
+fun dehydrate_V2 : V2;
+fun deification_N : N;
+fun deify_V2 : V2;
+fun deign_V : V;
+fun deirdre_PN : PN;
+fun deism_N : N;
+fun deist_N : N;
+fun deity_N : N;
+fun deject_V2 : V2;
+fun dejectedly_Adv : Adv;
+fun dejection_N : N;
+fun dekko_N : N;
+fun delaware_PN : PN;
+fun delay_N : N;
+fun delay_V : V;
+fun delay_V2 : V2;
+fun delayed_action_A : A;
+fun delayed_action_N : N;
+fun delectable_A : A;
+fun delectation_N : N;
+fun delegacy_N : N;
+fun delegate_N : N;
+fun delegate_V2 : V2;
+fun delegation_N : N;
+fun delete_V2 : V2;
+fun deleterious_A : A;
+fun deletion_N : N;
+fun delf_N : N;
+fun delft_N : N;
+fun delhi_PN : PN;
+fun deliberate_A : A;
+fun deliberate_V : V;
+fun deliberate_V2 : V2;
+fun deliberately_Adv : Adv;
+fun deliberation_N : N;
+fun deliberative_A : A;
+fun delicacy_N : N;
+fun delicate_A : A;
+fun delicately_Adv : Adv;
+fun delicatessen_N : N;
+fun delicious_A : A;
+fun deliciously_Adv : Adv;
+fun delight_N : N;
+fun delight_V : V;
+fun delight_V2 : V2;
+fun delightedly_Adv : Adv;
+fun delightful_A : A;
+fun delightfully_Adv : Adv;
+fun delimit_V2 : V2;
+fun delimitate_V2 : V2;
+fun delimitation_N : N;
+fun delineate_V2 : V2;
+fun delineation_N : N;
+fun delinquency_N : N;
+fun delinquent_A : A;
+fun delinquent_N : N;
+fun deliquescent_A : A;
+fun delirious_A : A;
+fun deliriously_Adv : Adv;
+fun delirium_N : N;
+fun delirium_tremens_N : N;
+fun deliver_V2 : V2;
+fun deliverance_N : N;
+fun deliverer_N : N;
+fun delivery_N : N;
+fun dell_N : N;
+fun delouse_V2 : V2;
+fun delphic_A : A;
+fun delphinium_N : N;
+fun delta_N : N;
+fun delude_V2 : V2;
+fun deluge_N : N;
+fun deluge_V2 : V2;
+fun delusion_N : N;
+fun delusive_A : A;
+fun delusively_Adv : Adv;
+fun delve_V : V;
+fun delve_V2 : V2;
+fun demagnetization_N : N;
+fun demagnetize_V2 : V2;
+fun demagogic_A : A;
+fun demagogue_N : N;
+fun demagogy_N : N;
+fun demand_N : N;
+fun demand_V2 : V2;
+fun demarcate_V2 : V2;
+fun demarcation_N : N;
+fun demean_V2 : V2;
+fun demeanour_N : N;
+fun demented_A : A;
+fun dementedly_Adv : Adv;
+fun demerara_N : N;
+fun demerit_N : N;
+fun demesne_N : N;
+fun demigod_N : N;
+fun demijohn_N : N;
+fun demilitarize_V2 : V2;
+fun demimondaine_N : N;
+fun demimonde_N : N;
+fun demise_N : N;
+fun demist_V2 : V2;
+fun demister_N : N;
+fun demo_N : N;
+fun demob_V2 : V2;
+fun demobilization_N : N;
+fun demobilize_V2 : V2;
+fun democracy_N : N;
+fun democrat_N : N;
+fun democratic_A : A;
+fun democratically_Adv : Adv;
+fun democratization_N : N;
+fun democratize_V2 : V2;
+fun demographic_A : A;
+fun demography_N : N;
+fun demolish_V2 : V2;
+fun demolition_N : N;
+fun demon_N : N;
+fun demonetization_N : N;
+fun demonetize_V2 : V2;
+fun demoniac_A : A;
+fun demoniac_N : N;
+fun demoniacal_A : A;
+fun demoniacally_Adv : Adv;
+fun demonic_A : A;
+fun demonstrability_N : N;
+fun demonstrable_A : A;
+fun demonstrably_Adv : Adv;
+fun demonstrate_V : V;
+fun demonstrate_V2 : V2;
+fun demonstration_N : N;
+fun demonstrative_A : A;
+fun demonstratively_Adv : Adv;
+fun demonstrator_N : N;
+fun demoralization_N : N;
+fun demoralize_V2 : V2;
+fun demote_V2 : V2;
+fun demotic_A : A;
+fun demotion_N : N;
+fun demur_N : N;
+fun demur_V : V;
+fun demure_A : A;
+fun demurely_Adv : Adv;
+fun demureness_N : N;
+fun den_N : N;
+fun denain_PN : PN;
+fun denary_A : A;
+fun denationalization_N : N;
+fun denationalize_V2 : V2;
+fun denatured_A : A;
+fun denbigh_PN : PN;
+fun deniable_A : A;
+fun denial_N : N;
+fun denier_N : N;
+fun denigrate_V2 : V2;
+fun denigration_N : N;
+fun denim_N : N;
+fun denis_PN : PN;
+fun denise_PN : PN;
+fun denizen_N : N;
+fun denmark_PN : PN;
+fun dennis_PN : PN;
+fun denny_PN : PN;
+fun denominate_V2 : V2;
+fun denomination_N : N;
+fun denominational_A : A;
+fun denominator_N : N;
+fun denote_V2 : V2;
+fun denounce_V2 : V2;
+fun dense_A : A;
+fun densely_Adv : Adv;
+fun denseness_N : N;
+fun density_N : N;
+fun dent_N : N;
+fun dent_V : V;
+fun dent_V2 : V2;
+fun dental_A : A;
+fun dentifrice_N : N;
+fun dentist_N : N;
+fun dentistry_N : N;
+fun denture_N : N;
+fun denudation_N : N;
+fun denude_V2 : V2;
+fun denunciation_N : N;
+fun denver_PN : PN;
+fun deny_V2 : V2;
+fun deodar_N : N;
+fun deodorant_N : N;
+fun deodorize_V2 : V2;
+fun dep_PN : PN;
+fun depart_V : V;
+fun departed_A : A;
+fun departed_N : N;
+fun department_N : N;
+fun departmental_A : A;
+fun departure_N : N;
+fun depend_V : V;
+fun dependable_A : A;
+fun dependant_N : N;
+fun dependence_N : N;
+fun dependency_N : N;
+fun dependent_A : A;
+fun dependent_N : N;
+fun depict_V2 : V2;
+fun depiction_N : N;
+fun depilatory_A : A;
+fun depilatory_N : N;
+fun deplane_V : V;
+fun deplete_V2 : V2;
+fun depletion_N : N;
+fun deplorable_A : A;
+fun deplorably_Adv : Adv;
+fun deplore_V2 : V2;
+fun deploy_V : V;
+fun deploy_V2 : V2;
+fun deployment_N : N;
+fun deponent_N : N;
+fun depopulate_V2 : V2;
+fun depopulation_N : N;
+fun deport_V2 : V2;
+fun deportation_N : N;
+fun deportee_N : N;
+fun deportment_N : N;
+fun depose_V : V;
+fun depose_V2 : V2;
+fun deposit_N : N;
+fun deposit_V2 : V2;
+fun deposition_N : N;
+fun depositor_N : N;
+fun depository_N : N;
+fun depot_N : N;
+fun deprave_V2 : V2;
+fun depravity_N : N;
+fun deprecate_V2 : V2;
+fun deprecation_N : N;
+fun depreciate_V : V;
+fun depreciate_V2 : V2;
+fun depreciation_N : N;
+fun depreciatory_A : A;
+fun depredation_N : N;
+fun depress_V2 : V2;
+fun depression_N : N;
+fun depressive_A : A;
+fun depressive_N : N;
+fun deprivation_N : N;
+fun deprive_V2 : V2;
+fun deprived_A : A;
+fun dept_PN : PN;
+fun depth_N : N;
+fun depth_bomb_N : N;
+fun depth_charge_N : N;
+fun deputation_N : N;
+fun depute_V2 : V2;
+fun deputize_V : V;
+fun deputy_N : N;
+fun derail_V2 : V2;
+fun derailment_N : N;
+fun derange_V2 : V2;
+fun derangement_N : N;
+fun derate_V2 : V2;
+fun derby_N : N;
+fun derby_PN : PN;
+fun derbyshire_PN : PN;
+fun dereham_PN : PN;
+fun derek_PN : PN;
+fun derelict_A : A;
+fun dereliction_N : N;
+fun derequisition_V2 : V2;
+fun derestrict_V2 : V2;
+fun deride_V2 : V2;
+fun derision_N : N;
+fun derisive_A : A;
+fun derisively_Adv : Adv;
+fun derisory_A : A;
+fun derivation_N : N;
+fun derivative_A : A;
+fun derivative_N : N;
+fun derive_V : V;
+fun derive_V2 : V2;
+fun dermatitis_N : N;
+fun dermatologist_N : N;
+fun dermatology_N : N;
+fun derogate_V : V;
+fun derogation_N : N;
+fun derogatory_A : A;
+fun derrick_N : N;
+fun derring_do_N : N;
+fun derv_N : N;
+fun dervish_N : N;
+fun des_N : N;
+fun des_PN : PN;
+fun desalinate_V2 : V2;
+fun desalination_N : N;
+fun desalinization_N : N;
+fun desalinize_V2 : V2;
+fun desalt_V2 : V2;
+fun descale_V2 : V2;
+fun descant_N : N;
+fun descant_V : V;
+fun descend_V : V;
+fun descend_V2 : V2;
+fun descendant_N : N;
+fun descent_N : N;
+fun describe_V2 : V2;
+fun description_N : N;
+fun descriptive_A : A;
+fun descriptively_Adv : Adv;
+fun descry_V2 : V2;
+fun desecrate_V2 : V2;
+fun desecration_N : N;
+fun desegregate_V2 : V2;
+fun desegregation_N : N;
+fun desensitization_N : N;
+fun desensitize_V2 : V2;
+fun desert_A : A;
+fun desert_N : N;
+fun desert_V : V;
+fun desert_V2 : V2;
+fun deserter_N : N;
+fun desertion_N : N;
+fun deserve_V : V;
+fun deserve_V2 : V2;
+fun deserved_A : A;
+fun deservedly_Adv : Adv;
+fun deserving_A : A;
+fun desiccant_N : N;
+fun desiccate_V2 : V2;
+fun desideratum_N : N;
+fun design_N : N;
+fun design_V : V;
+fun design_V2 : V2;
+fun designate_A : A;
+fun designate_V2 : V2;
+fun designation_N : N;
+fun designedly_Adv : Adv;
+fun designer_N : N;
+fun designing_A : A;
+fun designing_N : N;
+fun desirability_N : N;
+fun desirable_A : A;
+fun desire_N : N;
+fun desire_V2 : V2;
+fun desirous_A : A;
+fun desist_V : V;
+fun desk_N : N;
+fun desmond_PN : PN;
+fun desolate_A : A;
+fun desolate_V2 : V2;
+fun desolately_Adv : Adv;
+fun desolation_N : N;
+fun despair_N : N;
+fun despair_V : V;
+fun despairingly_Adv : Adv;
+fun despatch_N : N;
+fun despatch_V2 : V2;
+fun desperado_N : N;
+fun desperate_A : A;
+fun desperately_Adv : Adv;
+fun desperation_N : N;
+fun despicable_A : A;
+fun despicably_Adv : Adv;
+fun despise_V2 : V2;
+fun despite_N : N;
+fun despiteful_A : A;
+fun despitefully_Adv : Adv;
+fun despoil_V2 : V2;
+fun despondency_N : N;
+fun despondent_A : A;
+fun despondently_Adv : Adv;
+fun despot_N : N;
+fun despotic_A : A;
+fun despotism_N : N;
+fun dessau_PN : PN;
+fun dessert_N : N;
+fun dessertspoon_N : N;
+fun dessertspoonful_N : N;
+fun destination_N : N;
+fun destine_V2 : V2;
+fun destiny_N : N;
+fun destitute_A : A;
+fun destitution_N : N;
+fun destroy_V2 : V2;
+fun destroyer_N : N;
+fun destructibility_N : N;
+fun destructible_A : A;
+fun destruction_N : N;
+fun destructive_A : A;
+fun destructively_Adv : Adv;
+fun destructiveness_N : N;
+fun desuetude_N : N;
+fun desultory_A : A;
+fun detach_V2 : V2;
+fun detachable_A : A;
+fun detached_A : A;
+fun detachment_N : N;
+fun detail_N : N;
+fun detail_V2 : V2;
+fun detain_V2 : V2;
+fun detainee_N : N;
+fun detect_V2 : V2;
+fun detectable_A : A;
+fun detection_N : N;
+fun detective_N : N;
+fun detector_N : N;
+fun detention_N : N;
+fun deter_V2 : V2;
+fun detergent_A : A;
+fun detergent_N : N;
+fun deteriorate_V : V;
+fun deteriorate_V2 : V2;
+fun deterioration_N : N;
+fun determinable_A : A;
+fun determinant_A : A;
+fun determinant_N : N;
+fun determinate_A : A;
+fun determination_N : N;
+fun determinative_A : A;
+fun determinative_N : N;
+fun determine_V : V;
+fun determine_V2 : V2;
+fun determinedly_Adv : Adv;
+fun determiner_N : N;
+fun deterrent_A : A;
+fun deterrent_N : N;
+fun detest_V2 : V2;
+fun detestable_A : A;
+fun detestably_Adv : Adv;
+fun detestation_N : N;
+fun dethrone_V2 : V2;
+fun dethronement_N : N;
+fun detonate_V : V;
+fun detonate_V2 : V2;
+fun detonation_N : N;
+fun detonator_N : N;
+fun detour_N : N;
+fun detour_V2 : V2;
+fun detract_V : V;
+fun detraction_N : N;
+fun detractor_N : N;
+fun detrain_V : V;
+fun detrain_V2 : V2;
+fun detribalization_N : N;
+fun detribalize_V2 : V2;
+fun detriment_N : N;
+fun detrimental_A : A;
+fun detrimentally_Adv : Adv;
+fun detritus_N : N;
+fun detroit_PN : PN;
+fun deuce_N : N;
+fun deuced_A : A;
+fun deucedly_Adv : Adv;
+fun deutschmark_N : N;
+fun devaluate_V2 : V2;
+fun devaluation_N : N;
+fun devalue_V2 : V2;
+fun devastate_V2 : V2;
+fun devastation_N : N;
+fun develop_V : V;
+fun develop_V2 : V2;
+fun developer_N : N;
+fun development_N : N;
+fun deviant_A : A;
+fun deviant_N : N;
+fun deviate_V : V;
+fun deviation_N : N;
+fun deviationism_N : N;
+fun deviationist_N : N;
+fun device_N : N;
+fun devil_N : N;
+fun devil_V : V;
+fun devil_V2 : V2;
+fun devil_may_care_A : A;
+fun devilish_A : A;
+fun devilish_Adv : Adv;
+fun devilishly_Adv : Adv;
+fun devilment_N : N;
+fun devilry_N : N;
+fun devious_A : A;
+fun deviously_Adv : Adv;
+fun deviousness_N : N;
+fun devise_V2 : V2;
+fun devitalization_N : N;
+fun devitalize_V2 : V2;
+fun devizes_PN : PN;
+fun devoid_A : A;
+fun devolution_N : N;
+fun devolve_V : V;
+fun devolve_V2 : V2;
+fun devon_PN : PN;
+fun devote_V2 : V2;
+fun devoted_A : A;
+fun devotedly_Adv : Adv;
+fun devotee_N : N;
+fun devotion_N : N;
+fun devotional_A : A;
+fun devour_V2 : V2;
+fun devout_A : A;
+fun devoutly_Adv : Adv;
+fun devoutness_N : N;
+fun dew_N : N;
+fun dewlap_N : N;
+fun dewsbury_PN : PN;
+fun dewy_A : A;
+fun dexterity_N : N;
+fun dexterous_A : A;
+fun dexterously_Adv : Adv;
+fun dextrose_N : N;
+fun dextrous_A : A;
+fun dg_PN : PN;
+fun dhoti_N : N;
+fun dhow_N : N;
+fun di_PN : PN;
+fun diabetes_N : N;
+fun diabetic_A : A;
+fun diabetic_N : N;
+fun diabolic_A : A;
+fun diabolical_A : A;
+fun diabolically_Adv : Adv;
+fun diacritic_A : A;
+fun diacritic_N : N;
+fun diacritical_A : A;
+fun diadem_N : N;
+fun diaeresis_N : N;
+fun diagnose_V2 : V2;
+fun diagnosis_N : N;
+fun diagnostic_A : A;
+fun diagonal_A : A;
+fun diagonal_N : N;
+fun diagonally_Adv : Adv;
+fun diagram_N : N;
+fun diagrammatic_A : A;
+fun diagrammatical_A : A;
+fun diagrammatically_Adv : Adv;
+fun dial_N : N;
+fun dial_V2 : V2;
+fun dialect_N : N;
+fun dialectal_A : A;
+fun dialectic_N : N;
+fun dialectical_A : A;
+fun dialectician_N : N;
+fun dialogue_N : N;
+fun diameter_N : N;
+fun diametrically_Adv : Adv;
+fun diamond_N : N;
+fun diana_PN : PN;
+fun diaper_N : N;
+fun diaphanous_A : A;
+fun diaphragm_N : N;
+fun diarchy_N : N;
+fun diarist_N : N;
+fun diarrhea_N : N;
+fun diarrhoea_N : N;
+fun diary_N : N;
+fun diaspora_N : N;
+fun diatonic_A : A;
+fun diatribe_N : N;
+fun dibber_N : N;
+fun dibble_N : N;
+fun dibble_V2 : V2;
+fun dice_N : N;
+fun dice_V : V;
+fun dice_V2 : V2;
+fun dice_box_N : N;
+fun dicey_A : A;
+fun dichotomy_N : N;
+fun dick_PN : PN;
+fun dickens_N : N;
+fun dicker_V : V;
+fun dickey_N : N;
+fun dicky_A : A;
+fun dicky_N : N;
+fun dicky_PN : PN;
+fun dicky_seat_N : N;
+fun dickybird_N : N;
+fun dictaphone_N : N;
+fun dictate_N : N;
+fun dictate_V : V;
+fun dictate_V2 : V2;
+fun dictation_N : N;
+fun dictator_N : N;
+fun dictatorial_A : A;
+fun dictatorially_Adv : Adv;
+fun dictatorship_N : N;
+fun diction_N : N;
+fun dictionary_N : N;
+fun dictum_N : N;
+fun didactic_A : A;
+fun didactically_Adv : Adv;
+fun didcot_PN : PN;
+fun diddle_V2 : V2;
+fun die_N : N;
+fun die_V : V;
+fun die_cast_A : A;
+fun die_hard_N : N;
+fun dieresis_N : N;
+fun diesel_N : N;
+fun diet_N : N;
+fun diet_V : V;
+fun diet_V2 : V2;
+fun dietary_A : A;
+fun dietetics_N : N;
+fun dietician_N : N;
+fun dietitian_N : N;
+fun differ_V : V;
+fun difference_N : N;
+fun different_A : A;
+fun differential_A : A;
+fun differential_N : N;
+fun differentially_Adv : Adv;
+fun differentiate_V2 : V2;
+fun differentiation_N : N;
+fun differently_Adv : Adv;
+fun difficult_A : A;
+fun difficulty_N : N;
+fun diffidence_N : N;
+fun diffident_A : A;
+fun diffidently_Adv : Adv;
+fun diffract_V2 : V2;
+fun diffraction_N : N;
+fun diffuse_A : A;
+fun diffuse_V : V;
+fun diffuse_V2 : V2;
+fun diffusely_Adv : Adv;
+fun diffuseness_N : N;
+fun diffusion_N : N;
+fun dig_N : N;
+fun dig_V : V;
+fun dig_V2 : V2;
+fun digest_N : N;
+fun digest_V : V;
+fun digest_V2 : V2;
+fun digestibility_N : N;
+fun digestible_A : A;
+fun digestion_N : N;
+fun digestive_A : A;
+fun digger_N : N;
+fun digging_N : N;
+fun digit_N : N;
+fun digital_A : A;
+fun digitally_Adv : Adv;
+fun dignified_A : A;
+fun dignify_V2 : V2;
+fun dignitary_N : N;
+fun dignity_N : N;
+fun digraph_N : N;
+fun digress_V : V;
+fun digression_N : N;
+fun dijon_PN : PN;
+fun dike_N : N;
+fun dike_V : V;
+fun dike_V2 : V2;
+fun dilapidated_A : A;
+fun dilapidation_N : N;
+fun dilate_V : V;
+fun dilate_V2 : V2;
+fun dilation_N : N;
+fun dilatory_A : A;
+fun dilemma_N : N;
+fun dilettante_N : N;
+fun diligence_N : N;
+fun diligent_A : A;
+fun diligently_Adv : Adv;
+fun dill_N : N;
+fun dilly_dally_V : V;
+fun dilute_A : A;
+fun dilute_V2 : V2;
+fun dilution_N : N;
+fun dim_A : A;
+fun dim_V : V;
+fun dim_V2 : V2;
+fun dime_N : N;
+fun dimension_N : N;
+fun dimensional_A : A;
+fun diminish_V : V;
+fun diminish_V2 : V2;
+fun diminuendo_N : N;
+fun diminution_N : N;
+fun diminutive_A : A;
+fun diminutive_N : N;
+fun dimity_N : N;
+fun dimly_Adv : Adv;
+fun dimness_N : N;
+fun dimple_N : N;
+fun dimple_V : V;
+fun dimple_V2 : V2;
+fun din_N : N;
+fun din_V : V;
+fun din_V2 : V2;
+fun dinar_N : N;
+fun dine_V : V;
+fun dine_V2 : V2;
+fun diner_N : N;
+fun ding_dong_Adv : Adv;
+fun ding_dong_N : N;
+fun dinghy_N : N;
+fun dingily_Adv : Adv;
+fun dinginess_N : N;
+fun dingle_N : N;
+fun dingle_PN : PN;
+fun dingy_A : A;
+fun dining_car_N : N;
+fun dining_room_N : N;
+fun dining_table_N : N;
+fun dinky_A : A;
+fun dinner_N : N;
+fun dinner_jacket_N : N;
+fun dinner_party_N : N;
+fun dinner_service_N : N;
+fun dinner_set_N : N;
+fun dinnington_PN : PN;
+fun dinosaur_N : N;
+fun dint_N : N;
+fun diocesan_A : A;
+fun diocesan_N : N;
+fun diocese_N : N;
+fun dioxide_N : N;
+fun dip_N : N;
+fun dip_V : V;
+fun dip_V2 : V2;
+fun dip_ed_N : N;
+fun diphtheria_N : N;
+fun diphthong_N : N;
+fun diploma_N : N;
+fun diplomacy_N : N;
+fun diplomat_N : N;
+fun diplomatic_A : A;
+fun diplomatically_Adv : Adv;
+fun diplomatist_N : N;
+fun dipper_N : N;
+fun dipsomania_N : N;
+fun dipsomaniac_N : N;
+fun dipstick_N : N;
+fun diptych_N : N;
+fun dir_N : N;
+fun dire_A : A;
+fun direct_A : A;
+fun direct_Adv : Adv;
+fun direct_V : V;
+fun direct_V2 : V2;
+fun direction_N : N;
+fun direction_finder_N : N;
+fun directional_A : A;
+fun directive_N : N;
+fun directly_Adv : Adv;
+fun directness_N : N;
+fun director_N : N;
+fun directorate_N : N;
+fun directorship_N : N;
+fun directory_N : N;
+fun direful_A : A;
+fun direfully_Adv : Adv;
+fun dirge_N : N;
+fun dirigible_N : N;
+fun dirk_N : N;
+fun dirndl_N : N;
+fun dirt_N : N;
+fun dirt_cheap_A : A;
+fun dirt_track_N : N;
+fun dirtily_Adv : Adv;
+fun dirty_A : A;
+fun dirty_V : V;
+fun dirty_V2 : V2;
+fun disability_N : N;
+fun disable_V2 : V2;
+fun disablement_N : N;
+fun disabuse_V2 : V2;
+fun disadvantage_N : N;
+fun disadvantageous_A : A;
+fun disadvantageously_Adv : Adv;
+fun disaffected_A : A;
+fun disaffection_N : N;
+fun disafforest_V2 : V2;
+fun disagree_V2 : V2;
+fun disagreeable_A : A;
+fun disagreeableness_N : N;
+fun disagreeably_Adv : Adv;
+fun disagreement_N : N;
+fun disallow_V2 : V2;
+fun disappear_V : V;
+fun disappearance_N : N;
+fun disappoint_V2 : V2;
+fun disappointed_A : A;
+fun disappointedly_Adv : Adv;
+fun disappointing_A : A;
+fun disappointingly_Adv : Adv;
+fun disappointment_N : N;
+fun disapprobation_N : N;
+fun disapproval_N : N;
+fun disapprove_V : V;
+fun disapprove_V2 : V2;
+fun disapprovingly_Adv : Adv;
+fun disarm_V : V;
+fun disarm_V2 : V2;
+fun disarmament_N : N;
+fun disarrange_V2 : V2;
+fun disarrangement_N : N;
+fun disarray_N : N;
+fun disarray_V2 : V2;
+fun disassociate_V2 : V2;
+fun disaster_N : N;
+fun disastrous_A : A;
+fun disastrously_Adv : Adv;
+fun disavow_V2 : V2;
+fun disavowal_N : N;
+fun disband_V : V;
+fun disband_V2 : V2;
+fun disbandment_N : N;
+fun disbelief_N : N;
+fun disbelieve_V : V;
+fun disbelieve_V2 : V2;
+fun disbelievingly_Adv : Adv;
+fun disbud_V2 : V2;
+fun disburden_V2 : V2;
+fun disburse_V : V;
+fun disburse_V2 : V2;
+fun disbursement_N : N;
+fun disc_N : N;
+fun discard_N : N;
+fun discard_V2 : V2;
+fun discern_V2 : V2;
+fun discernible_A : A;
+fun discerning_A : A;
+fun discernment_N : N;
+fun discharge_N : N;
+fun discharge_V : V;
+fun discharge_V2 : V2;
+fun disciple_N : N;
+fun disciplinarian_N : N;
+fun disciplinary_A : A;
+fun discipline_N : N;
+fun discipline_V2 : V2;
+fun disclaim_V2 : V2;
+fun disclaimer_N : N;
+fun disclose_V2 : V2;
+fun disclosure_N : N;
+fun disco_N : N;
+fun discolour_V : V;
+fun discolour_V2 : V2;
+fun discolouration_N : N;
+fun discomfit_V2 : V2;
+fun discomfiture_N : N;
+fun discomfort_N : N;
+fun discommode_V2 : V2;
+fun discompose_V2 : V2;
+fun discomposure_N : N;
+fun disconcert_V2 : V2;
+fun disconcertingly_Adv : Adv;
+fun disconnect_V2 : V2;
+fun disconnected_A : A;
+fun disconsolate_A : A;
+fun disconsolately_Adv : Adv;
+fun discontent_N : N;
+fun discontent_V2 : V2;
+fun discontentedly_Adv : Adv;
+fun discontinuance_N : N;
+fun discontinue_V : V;
+fun discontinue_V2 : V2;
+fun discontinuity_N : N;
+fun discontinuous_A : A;
+fun discord_N : N;
+fun discordance_N : N;
+fun discordant_A : A;
+fun discordantly_Adv : Adv;
+fun discotheque_N : N;
+fun discount_N : N;
+fun discount_V2 : V2;
+fun discountenance_V2 : V2;
+fun discourage_V2 : V2;
+fun discouragement_N : N;
+fun discourse_N : N;
+fun discourse_V : V;
+fun discourteous_A : A;
+fun discourteously_Adv : Adv;
+fun discourtesy_N : N;
+fun discover_V2 : V2;
+fun discoverer_N : N;
+fun discovery_N : N;
+fun discredit_N : N;
+fun discredit_V2 : V2;
+fun discreditable_A : A;
+fun discreditably_Adv : Adv;
+fun discreet_A : A;
+fun discreetly_Adv : Adv;
+fun discrepancy_N : N;
+fun discrete_A : A;
+fun discreteness_N : N;
+fun discretion_N : N;
+fun discretionary_A : A;
+fun discriminate_V : V;
+fun discriminate_V2 : V2;
+fun discriminating_A : A;
+fun discrimination_N : N;
+fun discriminatory_A : A;
+fun discursive_A : A;
+fun discursively_Adv : Adv;
+fun discursiveness_N : N;
+fun discus_N : N;
+fun discuss_V2 : V2;
+fun discussion_N : N;
+fun disdain_N : N;
+fun disdain_V2 : V2;
+fun disdainful_A : A;
+fun disdainfully_Adv : Adv;
+fun disease_N : N;
+fun diseased_A : A;
+fun disembark_V : V;
+fun disembark_V2 : V2;
+fun disembarkation_N : N;
+fun disembarrass_V2 : V2;
+fun disembarrassment_N : N;
+fun disembody_V2 : V2;
+fun disembowel_V2 : V2;
+fun disenchant_V2 : V2;
+fun disenchantment_N : N;
+fun disencumber_V2 : V2;
+fun disenfranchise_V2 : V2;
+fun disengage_V : V;
+fun disengage_V2 : V2;
+fun disengagement_N : N;
+fun disentangle_V : V;
+fun disentangle_V2 : V2;
+fun disentanglement_N : N;
+fun disequilibrium_N : N;
+fun disestablish_V2 : V2;
+fun disestablishment_N : N;
+fun disfavour_N : N;
+fun disfavour_V2 : V2;
+fun disfigure_V2 : V2;
+fun disfigurement_N : N;
+fun disforest_V2 : V2;
+fun disfranchise_V2 : V2;
+fun disfranchisement_N : N;
+fun disgorge_V2 : V2;
+fun disgrace_N : N;
+fun disgrace_V2 : V2;
+fun disgraceful_A : A;
+fun disgracefully_Adv : Adv;
+fun disgruntled_A : A;
+fun disguise_N : N;
+fun disguise_V2 : V2;
+fun disgust_N : N;
+fun disgust_V2 : V2;
+fun disgustedly_Adv : Adv;
+fun disgusting_A : A;
+fun disgustingly_Adv : Adv;
+fun dish_N : N;
+fun dish_V2 : V2;
+fun dishabille_N : N;
+fun disharmonious_A : A;
+fun disharmony_N : N;
+fun dishcloth_N : N;
+fun dishearten_V2 : V2;
+fun dishevelled_A : A;
+fun dishful_N : N;
+fun dishonest_A : A;
+fun dishonestly_Adv : Adv;
+fun dishonesty_N : N;
+fun dishonour_N : N;
+fun dishonour_V2 : V2;
+fun dishonourable_A : A;
+fun dishonourably_Adv : Adv;
+fun dishwasher_N : N;
+fun dishwater_N : N;
+fun dishy_A : A;
+fun disillusion_N : N;
+fun disillusion_V2 : V2;
+fun disillusionment_N : N;
+fun disincentive_N : N;
+fun disinclination_N : N;
+fun disincline_V2 : V2;
+fun disinfect_V2 : V2;
+fun disinfectant_A : A;
+fun disinfectant_N : N;
+fun disinfection_N : N;
+fun disinfest_V2 : V2;
+fun disinfestation_N : N;
+fun disinflation_N : N;
+fun disingenuous_A : A;
+fun disingenuously_Adv : Adv;
+fun disingenuousness_N : N;
+fun disinherit_V2 : V2;
+fun disinheritance_N : N;
+fun disintegrate_V : V;
+fun disintegrate_V2 : V2;
+fun disintegration_N : N;
+fun disinter_V2 : V2;
+fun disinterested_A : A;
+fun disinterestedly_Adv : Adv;
+fun disinterestedness_N : N;
+fun disinterment_N : N;
+fun disjoint_V2 : V2;
+fun disjointed_A : A;
+fun disjointedly_Adv : Adv;
+fun disjointedness_N : N;
+fun disjunctive_A : A;
+fun disk_N : N;
+fun dislike_N : N;
+fun dislike_V2 : V2;
+fun dislocate_V2 : V2;
+fun dislocation_N : N;
+fun dislodge_V2 : V2;
+fun dislodgement_N : N;
+fun disloyal_A : A;
+fun disloyally_Adv : Adv;
+fun disloyalty_N : N;
+fun dismal_A : A;
+fun dismally_Adv : Adv;
+fun dismantle_V2 : V2;
+fun dismantlement_N : N;
+fun dismay_N : N;
+fun dismay_V2 : V2;
+fun dismember_V2 : V2;
+fun dismemberment_N : N;
+fun dismiss_V2 : V2;
+fun dismissal_N : N;
+fun dismount_V : V;
+fun dismount_V2 : V2;
+fun dismounted_A : A;
+fun disobedience_N : N;
+fun disobedient_A : A;
+fun disobediently_Adv : Adv;
+fun disobey_V2 : V2;
+fun disoblige_V2 : V2;
+fun disorder_N : N;
+fun disorder_V2 : V2;
+fun disorderly_A : A;
+fun disorganization_N : N;
+fun disorganize_V2 : V2;
+fun disorient_V2 : V2;
+fun disorientate_V2 : V2;
+fun disown_V2 : V2;
+fun disparage_V2 : V2;
+fun disparagement_N : N;
+fun disparagingly_Adv : Adv;
+fun disparate_A : A;
+fun disparity_N : N;
+fun dispassionate_A : A;
+fun dispassionately_Adv : Adv;
+fun dispassionateness_N : N;
+fun dispatch_N : N;
+fun dispatch_V2 : V2;
+fun dispatch_box_N : N;
+fun dispatch_rider_N : N;
+fun dispel_V2 : V2;
+fun dispensable_A : A;
+fun dispensary_N : N;
+fun dispensation_N : N;
+fun dispense_V : V;
+fun dispense_V2 : V2;
+fun dispenser_N : N;
+fun dispersal_N : N;
+fun disperse_V : V;
+fun disperse_V2 : V2;
+fun dispersion_N : N;
+fun dispirit_V2 : V2;
+fun dispiritedly_Adv : Adv;
+fun displace_V2 : V2;
+fun displacement_N : N;
+fun display_N : N;
+fun display_V2 : V2;
+fun displease_V2 : V2;
+fun displeasing_A : A;
+fun displeasingly_Adv : Adv;
+fun displeasure_N : N;
+fun disport_V2 : V2;
+fun disposable_A : A;
+fun disposal_N : N;
+fun dispose_V : V;
+fun dispose_V2 : V2;
+fun disposition_N : N;
+fun dispossess_V2 : V2;
+fun dispossession_N : N;
+fun disproof_N : N;
+fun disproportion_N : N;
+fun disproportionate_A : A;
+fun disproportionately_Adv : Adv;
+fun disprove_V2 : V2;
+fun disputable_A : A;
+fun disputant_N : N;
+fun disputation_N : N;
+fun disputatious_A : A;
+fun disputatiously_Adv : Adv;
+fun dispute_N : N;
+fun dispute_V : V;
+fun dispute_V2 : V2;
+fun disqualification_N : N;
+fun disqualify_V2 : V2;
+fun disquiet_N : N;
+fun disquiet_V2 : V2;
+fun disquieting_A : A;
+fun disquietingly_Adv : Adv;
+fun disquietude_N : N;
+fun disquisition_N : N;
+fun disregard_N : N;
+fun disregard_V2 : V2;
+fun disrepair_N : N;
+fun disreputable_A : A;
+fun disreputably_Adv : Adv;
+fun disrepute_N : N;
+fun disrespect_N : N;
+fun disrespectful_A : A;
+fun disrespectfully_Adv : Adv;
+fun disrobe_V : V;
+fun disrobe_V2 : V2;
+fun disrupt_V2 : V2;
+fun disruption_N : N;
+fun disruptive_A : A;
+fun dissatisfaction_N : N;
+fun dissatisfy_V2 : V2;
+fun dissect_V2 : V2;
+fun dissection_N : N;
+fun dissemble_V : V;
+fun dissemble_V2 : V2;
+fun dissembler_N : N;
+fun disseminate_V2 : V2;
+fun dissemination_N : N;
+fun dissension_N : N;
+fun dissent_N : N;
+fun dissent_V : V;
+fun dissenter_N : N;
+fun dissertation_N : N;
+fun disservice_N : N;
+fun dissever_V2 : V2;
+fun dissidence_N : N;
+fun dissident_A : A;
+fun dissident_N : N;
+fun dissimilar_A : A;
+fun dissimilarity_N : N;
+fun dissimilitude_N : N;
+fun dissimulate_V : V;
+fun dissimulate_V2 : V2;
+fun dissimulation_N : N;
+fun dissipate_V : V;
+fun dissipate_V2 : V2;
+fun dissipated_A : A;
+fun dissipation_N : N;
+fun dissociate_V2 : V2;
+fun dissociation_N : N;
+fun dissolubility_N : N;
+fun dissoluble_A : A;
+fun dissolute_A : A;
+fun dissolutely_Adv : Adv;
+fun dissolution_N : N;
+fun dissolve_V : V;
+fun dissolve_V2 : V2;
+fun dissonance_N : N;
+fun dissonant_A : A;
+fun dissuade_V2 : V2;
+fun dissuasion_N : N;
+fun dissyllable_N : N;
+fun distaff_N : N;
+fun distance_N : N;
+fun distance_V2 : V2;
+fun distant_A : A;
+fun distantly_Adv : Adv;
+fun distaste_N : N;
+fun distasteful_A : A;
+fun distastefully_Adv : Adv;
+fun distastefulness_N : N;
+fun distemper_N : N;
+fun distemper_V2 : V2;
+fun distend_V : V;
+fun distend_V2 : V2;
+fun distension_N : N;
+fun distil_V : V;
+fun distil_V2 : V2;
+fun distillation_N : N;
+fun distiller_N : N;
+fun distillery_N : N;
+fun distinct_A : A;
+fun distinction_N : N;
+fun distinctive_A : A;
+fun distinctively_Adv : Adv;
+fun distinctiveness_N : N;
+fun distinctly_Adv : Adv;
+fun distinctness_N : N;
+fun distinguish_V : V;
+fun distinguish_V2 : V2;
+fun distinguishable_A : A;
+fun distinguished_A : A;
+fun distort_V2 : V2;
+fun distortion_N : N;
+fun distract_V2 : V2;
+fun distracted_A : A;
+fun distractedly_Adv : Adv;
+fun distraction_N : N;
+fun distrain_V : V;
+fun distraint_N : N;
+fun distrait_A : A;
+fun distraught_A : A;
+fun distress_N : N;
+fun distress_V2 : V2;
+fun distressful_A : A;
+fun distressfully_Adv : Adv;
+fun distressing_A : A;
+fun distressingly_Adv : Adv;
+fun distribute_V2 : V2;
+fun distribution_N : N;
+fun distributive_A : A;
+fun distributively_Adv : Adv;
+fun distributor_N : N;
+fun district_N : N;
+fun distrust_N : N;
+fun distrust_V2 : V2;
+fun distrustful_A : A;
+fun distrustfully_Adv : Adv;
+fun distrustfulness_N : N;
+fun disturb_V2 : V2;
+fun disturbance_N : N;
+fun disturbingly_Adv : Adv;
+fun disunion_N : N;
+fun disunite_V : V;
+fun disunite_V2 : V2;
+fun disunity_N : N;
+fun disuse_N : N;
+fun disused_A : A;
+fun disyllabic_A : A;
+fun disyllable_N : N;
+fun ditch_N : N;
+fun ditch_V : V;
+fun ditch_V2 : V2;
+fun dither_N : N;
+fun dither_V : V;
+fun ditto_N : N;
+fun ditty_N : N;
+fun diurnal_A : A;
+fun divagate_V : V;
+fun divagation_N : N;
+fun divan_N : N;
+fun divan_bed_N : N;
+fun dive_N : N;
+fun dive_V : V;
+fun dive_bomb_V : V;
+fun dive_bomb_V2 : V2;
+fun dive_bomber_N : N;
+fun diver_N : N;
+fun diverge_V : V;
+fun divergence_N : N;
+fun divergency_N : N;
+fun divergent_A : A;
+fun divers_A : A;
+fun diverse_A : A;
+fun diversely_Adv : Adv;
+fun diversification_N : N;
+fun diversify_V2 : V2;
+fun diversion_N : N;
+fun diversionary_A : A;
+fun diversionist_N : N;
+fun diversity_N : N;
+fun divert_V2 : V2;
+fun diverting_A : A;
+fun divertingly_Adv : Adv;
+fun dives_PN : PN;
+fun divest_V2 : V2;
+fun divide_N : N;
+fun divide_V : V;
+fun divide_V2 : V2;
+fun dividend_N : N;
+fun dividend_warrant_N : N;
+fun divination_N : N;
+fun divine_A : A;
+fun divine_N : N;
+fun divine_V : V;
+fun divine_V2 : V2;
+fun divinely_Adv : Adv;
+fun diviner_N : N;
+fun diving_bell_N : N;
+fun diving_board_N : N;
+fun diving_dress_N : N;
+fun diving_suit_N : N;
+fun divinity_N : N;
+fun divisible_A : A;
+fun division_N : N;
+fun divisional_A : A;
+fun divisor_N : N;
+fun divorce_N : N;
+fun divorce_V2 : V2;
+fun divorcee_N : N;
+fun divot_N : N;
+fun divulge_V2 : V2;
+fun divulgence_N : N;
+fun divvy_N : N;
+fun dixie_N : N;
+fun diy_N : N;
+fun dizzily_Adv : Adv;
+fun dizziness_N : N;
+fun dizzy_A : A;
+fun dizzy_V2 : V2;
+fun dj_N : N;
+fun djibouti_PN : PN;
+fun djiboutian_A : A;
+fun djiboutian_N : N;
+fun djinn_N : N;
+fun djs_N : N;
+fun dlitt_N : N;
+fun dm_N : N;
+fun dna_N : N;
+fun dnepropetrovsk_PN : PN;
+fun do_N : N;
+fun do_V : V;
+fun do_V2 : V2;
+fun do_gooder_N : N;
+fun dobbin_N : N;
+fun docile_A : A;
+fun docility_N : N;
+fun dock_N : N;
+fun dock_V : V;
+fun dock_V2 : V2;
+fun docker_N : N;
+fun docket_N : N;
+fun docket_V2 : V2;
+fun dockyard_N : N;
+fun doctor_N : N;
+fun doctor_V2 : V2;
+fun doctorate_N : N;
+fun doctrinaire_A : A;
+fun doctrinaire_N : N;
+fun doctrinal_A : A;
+fun doctrine_N : N;
+fun document_N : N;
+fun document_V2 : V2;
+fun documentary_A : A;
+fun documentation_N : N;
+fun dodder_V : V;
+fun dodderer_N : N;
+fun doddering_A : A;
+fun doddery_A : A;
+fun dodge_N : N;
+fun dodge_V : V;
+fun dodge_V2 : V2;
+fun dodgem_N : N;
+fun dodger_N : N;
+fun dodgy_A : A;
+fun dodo_N : N;
+fun doe_N : N;
+fun doer_N : N;
+fun doff_V2 : V2;
+fun dog's_tooth_N : N;
+fun dog_N : N;
+fun dog_V2 : V2;
+fun dog_biscuit_N : N;
+fun dog_cart_N : N;
+fun dog_collar_N : N;
+fun dog_eared_A : A;
+fun dog_like_A : A;
+fun doge_N : N;
+fun dogfish_N : N;
+fun dogged_A : A;
+fun doggedly_Adv : Adv;
+fun doggedness_N : N;
+fun doggerel_N : N;
+fun doggie_N : N;
+fun doggo_Adv : Adv;
+fun doggy_N : N;
+fun doghouse_N : N;
+fun dogma_N : N;
+fun dogmatic_A : A;
+fun dogmatically_Adv : Adv;
+fun dogmatism_N : N;
+fun dogmatize_V : V;
+fun dogmatize_V2 : V2;
+fun dogsbody_N : N;
+fun dogtooth_N : N;
+fun dogtrot_N : N;
+fun dogwatch_N : N;
+fun dogwood_N : N;
+fun doh_N : N;
+fun doily_N : N;
+fun dole_N : N;
+fun dole_V2 : V2;
+fun doleful_A : A;
+fun dolefully_Adv : Adv;
+fun doll_N : N;
+fun doll_V : V;
+fun doll_V2 : V2;
+fun dollar_N : N;
+fun dollop_N : N;
+fun dolly_N : N;
+fun dolly_PN : PN;
+fun dolmen_N : N;
+fun dolour_N : N;
+fun dolourous_A : A;
+fun dolphin_N : N;
+fun dolt_N : N;
+fun doltish_A : A;
+fun domain_N : N;
+fun dome_N : N;
+fun domed_A : A;
+fun domesday_PN : PN;
+fun domestic_A : A;
+fun domestically_Adv : Adv;
+fun domesticate_V2 : V2;
+fun domestication_N : N;
+fun domesticity_N : N;
+fun domicile_N : N;
+fun domiciliary_A : A;
+fun dominance_N : N;
+fun dominant_A : A;
+fun dominantly_Adv : Adv;
+fun dominate_V : V;
+fun dominate_V2 : V2;
+fun domination_N : N;
+fun domineer_V : V;
+fun domineering_A : A;
+fun domineeringly_Adv : Adv;
+fun dominic_PN : PN;
+fun dominica_PN : PN;
+fun dominican_A : A;
+fun dominican_N : N;
+fun dominie_N : N;
+fun dominion_N : N;
+fun domino_N : N;
+fun don't_know_N : N;
+fun don_N : N;
+fun don_PN : PN;
+fun don_V2 : V2;
+fun donald_PN : PN;
+fun donate_V2 : V2;
+fun donation_N : N;
+fun doncaster_PN : PN;
+fun donegal_PN : PN;
+fun donetsk_PN : PN;
+fun donjon_N : N;
+fun donkey_N : N;
+fun donkey_jacket_N : N;
+fun donkey_work_N : N;
+fun donnish_A : A;
+fun donor_N : N;
+fun doodle_V : V;
+fun doodlebug_N : N;
+fun doom_N : N;
+fun doom_V2 : V2;
+fun doomsday_PN : PN;
+fun door_N : N;
+fun door_to_door_A : A;
+fun doorbell_N : N;
+fun doorcase_N : N;
+fun doorframe_N : N;
+fun doorhandle_N : N;
+fun doorkeeper_N : N;
+fun doorknob_N : N;
+fun doorknocker_N : N;
+fun doorman_N : N;
+fun doormat_N : N;
+fun doornail_N : N;
+fun doorplate_N : N;
+fun doorpost_N : N;
+fun doorstep_N : N;
+fun doorstopper_N : N;
+fun doorway_N : N;
+fun dope_N : N;
+fun dope_V2 : V2;
+fun dopey_A : A;
+fun dora_PN : PN;
+fun dorchester_PN : PN;
+fun dordrecht_PN : PN;
+fun doreen_PN : PN;
+fun doric_A : A;
+fun doris_PN : PN;
+fun dorking_PN : PN;
+fun dormant_A : A;
+fun dormer_N : N;
+fun dormer_window_N : N;
+fun dormitory_N : N;
+fun dormouse_N : N;
+fun dorothy_PN : PN;
+fun dorsal_A : A;
+fun dorset_PN : PN;
+fun dortmund_PN : PN;
+fun dory_N : N;
+fun dosage_N : N;
+fun dose_N : N;
+fun dose_V2 : V2;
+fun doss_V : V;
+fun doss_house_N : N;
+fun dosser_N : N;
+fun dossier_N : N;
+fun dot_N : N;
+fun dot_V2 : V2;
+fun dotage_N : N;
+fun dotard_N : N;
+fun dote_V : V;
+fun dottle_N : N;
+fun dotty_A : A;
+fun douai_PN : PN;
+fun double_A : A;
+fun double_Adv : Adv;
+fun double_N : N;
+fun double_V : V;
+fun double_V2 : V2;
+fun double_barrelled_A : A;
+fun double_bass_N : N;
+fun double_bedded_A : A;
+fun double_breasted_A : A;
+fun double_check_V2 : V2;
+fun double_cross_N : N;
+fun double_cross_V2 : V2;
+fun double_dealer_N : N;
+fun double_dealing_A : A;
+fun double_dealing_N : N;
+fun double_decker_N : N;
+fun double_dutch_N : N;
+fun double_dyed_A : A;
+fun double_edged_A : A;
+fun double_entry_N : N;
+fun double_faced_A : A;
+fun double_first_N : N;
+fun double_jointed_A : A;
+fun double_park_V : V;
+fun double_park_V2 : V2;
+fun double_quick_A : A;
+fun double_quick_Adv : Adv;
+fun double_spacing_N : N;
+fun double_talk_N : N;
+fun double_think_N : N;
+fun doublet_N : N;
+fun doubloon_N : N;
+fun doubly_Adv : Adv;
+fun doubt_N : N;
+fun doubt_V2 : V2;
+fun doubtful_A : A;
+fun doubtfully_Adv : Adv;
+fun doubtless_Adv : Adv;
+fun douche_N : N;
+fun doug_PN : PN;
+fun dough_N : N;
+fun doughnut_N : N;
+fun doughty_A : A;
+fun doughy_A : A;
+fun douglas_PN : PN;
+fun dour_A : A;
+fun dourly_Adv : Adv;
+fun douse_V2 : V2;
+fun dove_N : N;
+fun dovecote_N : N;
+fun dover_PN : PN;
+fun dovetail_N : N;
+fun dovetail_V : V;
+fun dovetail_V2 : V2;
+fun dowager_N : N;
+fun dowdily_Adv : Adv;
+fun dowdiness_N : N;
+fun dowdy_A : A;
+fun dowel_N : N;
+fun dower_N : N;
+fun dower_V2 : V2;
+fun down_Adv : Adv;
+fun down_N : N;
+fun down_PN : PN;
+fun down_V2 : V2;
+fun down_and_out_N : N;
+fun down_market_A : A;
+fun down_to_earth_A : A;
+fun downbeat_N : N;
+fun downcast_A : A;
+fun downfall_N : N;
+fun downgrade_V2 : V2;
+fun downhearted_A : A;
+fun downhill_Adv : Adv;
+fun downing_street_PN : PN;
+fun downpour_N : N;
+fun downright_A : A;
+fun downright_Adv : Adv;
+fun downrightness_N : N;
+fun downstair_A : A;
+fun downstairs_A : A;
+fun downstairs_Adv : Adv;
+fun downstream_A : A;
+fun downstream_Adv : Adv;
+fun downtown_Adv : Adv;
+fun downtrodden_A : A;
+fun downward_A : A;
+fun downward_Adv : Adv;
+fun downwards_Adv : Adv;
+fun downy_A : A;
+fun dowry_N : N;
+fun dowse_V2 : V2;
+fun dowser_N : N;
+fun dowsing_N : N;
+fun doxology_N : N;
+fun doyen_N : N;
+fun doyley_N : N;
+fun doyly_N : N;
+fun doz_N : N;
+fun doze_N : N;
+fun doze_V : V;
+fun dozen_N : N;
+fun dphil_N : N;
+fun dr_PN : PN;
+fun drab_A : A;
+fun drably_Adv : Adv;
+fun drabness_N : N;
+fun drachm_N : N;
+fun drachma_N : N;
+fun draconian_A : A;
+fun draft_N : N;
+fun draft_V2 : V2;
+fun draftee_N : N;
+fun drafting_N : N;
+fun draftsman_N : N;
+fun drag_N : N;
+fun drag_V : V;
+fun drag_V2 : V2;
+fun draggled_A : A;
+fun dragnet_N : N;
+fun dragoman_N : N;
+fun dragon_N : N;
+fun dragonfly_N : N;
+fun dragoon_N : N;
+fun dragoon_V2 : V2;
+fun drain_N : N;
+fun drain_V : V;
+fun drain_V2 : V2;
+fun drainage_N : N;
+fun drainage_basin_N : N;
+fun draining_board_N : N;
+fun drainpipe_N : N;
+fun drake_N : N;
+fun dram_N : N;
+fun drama_N : N;
+fun dramatic_A : A;
+fun dramatically_Adv : Adv;
+fun dramatics_N : N;
+fun dramatist_N : N;
+fun dramatization_N : N;
+fun dramatize_V2 : V2;
+fun drape_N : N;
+fun drape_V2 : V2;
+fun draper_N : N;
+fun drapery_N : N;
+fun drastic_A : A;
+fun drastically_Adv : Adv;
+fun drat_V2 : V2;
+fun draught_N : N;
+fun draught_V2 : V2;
+fun draught_horse_N : N;
+fun draughts_N : N;
+fun draughtsman_N : N;
+fun draughty_A : A;
+fun draw_N : N;
+fun draw_V : V;
+fun draw_V2 : V2;
+fun drawback_N : N;
+fun drawbridge_N : N;
+fun drawer_N : N;
+fun drawing_N : N;
+fun drawing_board_N : N;
+fun drawing_pin_N : N;
+fun drawing_room_N : N;
+fun drawl_N : N;
+fun drawl_V : V;
+fun drawl_V2 : V2;
+fun dray_N : N;
+fun drayton_PN : PN;
+fun dread_N : N;
+fun dread_V : V;
+fun dread_V2 : V2;
+fun dreaded_A : A;
+fun dreadful_A : A;
+fun dreadfully_Adv : Adv;
+fun dreadfulness_N : N;
+fun dreadnought_N : N;
+fun dream_N : N;
+fun dream_V : V;
+fun dream_V2 : V2;
+fun dreamer_N : N;
+fun dreamily_Adv : Adv;
+fun dreamland_N : N;
+fun dreamless_A : A;
+fun dreamlike_A : A;
+fun dreamworld_N : N;
+fun dreamy_A : A;
+fun drear_A : A;
+fun drearily_Adv : Adv;
+fun dreariness_N : N;
+fun dreary_A : A;
+fun dredge_N : N;
+fun dredge_V : V;
+fun dredge_V2 : V2;
+fun dredger_N : N;
+fun drench_V2 : V2;
+fun drenching_N : N;
+fun dresden_PN : PN;
+fun dress_N : N;
+fun dress_V : V;
+fun dress_V2 : V2;
+fun dress_hanger_N : N;
+fun dressage_N : N;
+fun dresser_N : N;
+fun dressing_N : N;
+fun dressing_case_N : N;
+fun dressing_down_N : N;
+fun dressing_gown_N : N;
+fun dressing_table_N : N;
+fun dressmaker_N : N;
+fun dressmaking_N : N;
+fun dressy_A : A;
+fun dribble_V : V;
+fun dribble_V2 : V2;
+fun dribbler_N : N;
+fun driblet_N : N;
+fun drier_N : N;
+fun driffield_PN : PN;
+fun drift_N : N;
+fun drift_V : V;
+fun drift_V2 : V2;
+fun drift_ice_N : N;
+fun drift_net_N : N;
+fun drift_wood_N : N;
+fun driftage_N : N;
+fun drifter_N : N;
+fun drill_N : N;
+fun drill_V : V;
+fun drill_V2 : V2;
+fun drily_Adv : Adv;
+fun drink_N : N;
+fun drink_V : V;
+fun drink_V2 : V2;
+fun drinkable_A : A;
+fun drinker_N : N;
+fun drinking_N : N;
+fun drinking_bout_N : N;
+fun drinking_fountain_N : N;
+fun drinking_song_N : N;
+fun drinking_water_N : N;
+fun drip_N : N;
+fun drip_V : V;
+fun drip_V2 : V2;
+fun drip_dry_A : A;
+fun drip_dry_V2 : V2;
+fun dripping_N : N;
+fun dripping_pan_N : N;
+fun drive_N : N;
+fun drive_V : V;
+fun drive_V2 : V2;
+fun drive_in_N : N;
+fun drivel_N : N;
+fun drivel_V : V;
+fun driveller_N : N;
+fun driver_N : N;
+fun driveway_N : N;
+fun driving_belt_N : N;
+fun driving_wheel_N : N;
+fun drizzle_N : N;
+fun drizzle_V : V;
+fun drizzly_A : A;
+fun drogheda_PN : PN;
+fun drogue_N : N;
+fun droitwich_PN : PN;
+fun droll_A : A;
+fun drollery_N : N;
+fun dromedary_N : N;
+fun drone_N : N;
+fun drone_V : V;
+fun drone_V2 : V2;
+fun dronfield_PN : PN;
+fun drool_V : V;
+fun droop_N : N;
+fun droop_V : V;
+fun droop_V2 : V2;
+fun droopingly_Adv : Adv;
+fun drop_N : N;
+fun drop_V : V;
+fun drop_V2 : V2;
+fun drop_curtain_N : N;
+fun drop_kick_N : N;
+fun dropout_N : N;
+fun dropping_zone_N : N;
+fun dropsical_A : A;
+fun dropsy_N : N;
+fun droshky_N : N;
+fun dross_N : N;
+fun drought_N : N;
+fun drove_N : N;
+fun drover_N : N;
+fun drown_V : V;
+fun drown_V2 : V2;
+fun drowse_N : N;
+fun drowse_V : V;
+fun drowse_V2 : V2;
+fun drowsily_Adv : Adv;
+fun drowsiness_N : N;
+fun drowsy_A : A;
+fun drub_V2 : V2;
+fun drubbing_N : N;
+fun drudge_N : N;
+fun drudge_V : V;
+fun drudgery_N : N;
+fun drug_N : N;
+fun drug_V2 : V2;
+fun drugget_N : N;
+fun druggist_N : N;
+fun drugstore_N : N;
+fun druid_N : N;
+fun drum_N : N;
+fun drum_V : V;
+fun drum_V2 : V2;
+fun drum_major_N : N;
+fun drum_majorette_N : N;
+fun drumfire_N : N;
+fun drumhead_A : A;
+fun drummer_N : N;
+fun drumstick_N : N;
+fun drunk_A : A;
+fun drunk_N : N;
+fun drunkard_N : N;
+fun drunken_A : A;
+fun drunkenly_Adv : Adv;
+fun drunkenness_N : N;
+fun drupe_N : N;
+fun dry_A : A;
+fun dry_V : V;
+fun dry_V2 : V2;
+fun dry_clean_V2 : V2;
+fun dry_cleaner_N : N;
+fun dry_cleaning_N : N;
+fun dry_shod_A : A;
+fun dry_walling_N : N;
+fun dryad_N : N;
+fun dryer_N : N;
+fun dryness_N : N;
+fun dsc_N : N;
+fun dss_N : N;
+fun dti_N : N;
+fun dts_N : N;
+fun dual_A : A;
+fun dub_V2 : V2;
+fun dubbin_N : N;
+fun dubiety_N : N;
+fun dubious_A : A;
+fun dubiously_Adv : Adv;
+fun dubiousness_N : N;
+fun dublin_PN : PN;
+fun dubliner_N : N;
+fun ducal_A : A;
+fun ducat_N : N;
+fun duce_N : N;
+fun duchess_N : N;
+fun duchy_N : N;
+fun duck_N : N;
+fun duck_V : V;
+fun duck_V2 : V2;
+fun duckbilled_A : A;
+fun ducking_N : N;
+fun ducking_stool_N : N;
+fun duckling_N : N;
+fun duckweed_N : N;
+fun ducky_N : N;
+fun duct_N : N;
+fun ductile_A : A;
+fun ductility_N : N;
+fun dud_A : A;
+fun dud_N : N;
+fun dude_N : N;
+fun dudgeon_N : N;
+fun dudley_PN : PN;
+fun due_A : A;
+fun due_Adv : Adv;
+fun due_N : N;
+fun duel_N : N;
+fun duel_V : V;
+fun duelist_N : N;
+fun duellist_N : N;
+fun duenna_N : N;
+fun duet_N : N;
+fun duffel_N : N;
+fun duffer_N : N;
+fun duffle_N : N;
+fun dug_N : N;
+fun dugong_N : N;
+fun dugout_N : N;
+fun duisburg_PN : PN;
+fun duke_N : N;
+fun dukedom_N : N;
+fun dukinfield_PN : PN;
+fun dulcet_A : A;
+fun dulcimer_N : N;
+fun dull_A : A;
+fun dull_V : V;
+fun dull_V2 : V2;
+fun dullard_N : N;
+fun dullness_N : N;
+fun dully_Adv : Adv;
+fun duly_Adv : Adv;
+fun dumb_A : A;
+fun dumbarton_PN : PN;
+fun dumbbell_N : N;
+fun dumbfound_V2 : V2;
+fun dumbly_Adv : Adv;
+fun dumbness_N : N;
+fun dumbwaiter_N : N;
+fun dumdum_N : N;
+fun dumfries_PN : PN;
+fun dummy_N : N;
+fun dump_N : N;
+fun dump_V2 : V2;
+fun dumper_N : N;
+fun dumpling_N : N;
+fun dumpy_A : A;
+fun dun_A : A;
+fun dun_N : N;
+fun dun_V2 : V2;
+fun dun_laoghaire_PN : PN;
+fun duncan_PN : PN;
+fun dunce_N : N;
+fun dundalk_PN : PN;
+fun dundee_PN : PN;
+fun dunderhead_N : N;
+fun dune_N : N;
+fun dunfermline_PN : PN;
+fun dung_N : N;
+fun dungeon_N : N;
+fun dunghill_N : N;
+fun dunk_V2 : V2;
+fun dunkirk_PN : PN;
+fun dunoon_PN : PN;
+fun dunstable_PN : PN;
+fun duodecimal_A : A;
+fun duodenal_A : A;
+fun duodenum_N : N;
+fun duologue_N : N;
+fun dupe_N : N;
+fun dupe_V2 : V2;
+fun dupl_PN : PN;
+fun duplex_A : A;
+fun duplicate_A : A;
+fun duplicate_N : N;
+fun duplicate_V2 : V2;
+fun duplication_N : N;
+fun duplicator_N : N;
+fun duplicity_N : N;
+fun durability_N : N;
+fun durable_A : A;
+fun durable_N : N;
+fun durance_N : N;
+fun duration_N : N;
+fun durban_PN : PN;
+fun durbar_N : N;
+fun duress_N : N;
+fun durham_PN : PN;
+fun durrington_PN : PN;
+fun dursley_PN : PN;
+fun dusk_N : N;
+fun dusky_A : A;
+fun dusseldorf_PN : PN;
+fun dust_N : N;
+fun dust_V2 : V2;
+fun dust_bowl_N : N;
+fun dust_coat_N : N;
+fun dust_jacket_N : N;
+fun dust_sheet_N : N;
+fun dust_up_N : N;
+fun dust_wrapper_N : N;
+fun dustbin_N : N;
+fun dustcart_N : N;
+fun duster_N : N;
+fun dustman_N : N;
+fun dustpan_N : N;
+fun dusty_A : A;
+fun dutch_A : A;
+fun dutch_N : N;
+fun dutchman_N : N;
+fun duteous_A : A;
+fun dutiable_A : A;
+fun dutiful_A : A;
+fun dutifully_Adv : Adv;
+fun duty_N : N;
+fun duty_free_A : A;
+fun duvet_N : N;
+fun dwarf_N : N;
+fun dwarf_V2 : V2;
+fun dwarfish_A : A;
+fun dwell_V : V;
+fun dweller_N : N;
+fun dwelling_N : N;
+fun dwelling_house_N : N;
+fun dwindle_V : V;
+fun dyarchy_N : N;
+fun dye_N : N;
+fun dye_V : V;
+fun dye_V2 : V2;
+fun dye_works_N : N;
+fun dyed_in_the_wool_A : A;
+fun dyer_N : N;
+fun dyestuff_N : N;
+fun dyfed_PN : PN;
+fun dyke_N : N;
+fun dyke_V : V;
+fun dyke_V2 : V2;
+fun dynamic_A : A;
+fun dynamic_N : N;
+fun dynamically_Adv : Adv;
+fun dynamism_N : N;
+fun dynamite_N : N;
+fun dynamite_V2 : V2;
+fun dynamo_N : N;
+fun dynast_N : N;
+fun dynastic_A : A;
+fun dynasty_N : N;
+fun dyne_N : N;
+fun dysentery_N : N;
+fun dyslexia_N : N;
+fun dyslexic_A : A;
+fun dyspepsia_N : N;
+fun dyspeptic_A : A;
+fun dyspeptic_N : N;
+fun debris_2_N : N;
+fun debut_2_N : N;
+fun debutante_2_N : N;
+fun debacle_N : N;
+fun decollete_A : A;
+fun decor_N : N;
+fun demarche_N : N;
+fun demode_A : A;
+fun denouement_N : N;
+fun deshabille_N : N;
+fun detente_N : N;
+fun e'en_Adv : Adv;
+fun e'er_Adv : Adv;
+fun each_A : A;
+fun eager_A : A;
+fun eagerly_Adv : Adv;
+fun eagerness_N : N;
+fun eagle_N : N;
+fun eagle_eyed_A : A;
+fun eaglescliffe_PN : PN;
+fun eaglet_N : N;
+fun ealing_PN : PN;
+fun ear_N : N;
+fun ear_trumpet_N : N;
+fun earache_N : N;
+fun eardrop_N : N;
+fun eardrum_N : N;
+fun earful_N : N;
+fun earl_N : N;
+fun earl_shilton_PN : PN;
+fun earldom_N : N;
+fun early_A : A;
+fun early_Adv : Adv;
+fun early_warning_A : A;
+fun earmark_N : N;
+fun earmark_V2 : V2;
+fun earn_V2 : V2;
+fun earnest_A : A;
+fun earnest_N : N;
+fun earnest_money_N : N;
+fun earnestly_Adv : Adv;
+fun earnestness_N : N;
+fun earphone_N : N;
+fun earpiece_N : N;
+fun earring_N : N;
+fun earshot_N : N;
+fun earth_N : N;
+fun earth_V2 : V2;
+fun earth_closet_N : N;
+fun earthen_A : A;
+fun earthenware_N : N;
+fun earthly_A : A;
+fun earthnut_N : N;
+fun earthquake_N : N;
+fun earthwork_N : N;
+fun earthworm_N : N;
+fun earthy_A : A;
+fun earwax_N : N;
+fun earwig_N : N;
+fun ease_N : N;
+fun ease_V : V;
+fun ease_V2 : V2;
+fun easel_N : N;
+fun easily_Adv : Adv;
+fun easington_PN : PN;
+fun east_Adv : Adv;
+fun east_N : N;
+fun east_dereham_PN : PN;
+fun east_grinstead_PN : PN;
+fun east_kilbride_PN : PN;
+fun east_retford_PN : PN;
+fun eastbourne_PN : PN;
+fun easter_N : N;
+fun easter_PN : PN;
+fun easterly_A : A;
+fun easterly_Adv : Adv;
+fun eastern_A : A;
+fun easternmost_A : A;
+fun eastleigh_PN : PN;
+fun eastward_A : A;
+fun eastward_Adv : Adv;
+fun eastwards_Adv : Adv;
+fun easy_A : A;
+fun easy_Adv : Adv;
+fun easygoing_A : A;
+fun eat_V : V;
+fun eat_V2 : V2;
+fun eatable_A : A;
+fun eatable_N : N;
+fun eater_N : N;
+fun eating_apple_N : N;
+fun eating_house_N : N;
+fun eau_de_cologne_N : N;
+fun eau_de_vie_N : N;
+fun eavesdrop_V : V;
+fun eavesdropper_N : N;
+fun ebb_N : N;
+fun ebb_V : V;
+fun ebbtide_N : N;
+fun ebbw_vale_PN : PN;
+fun ebonite_N : N;
+fun ebony_A : A;
+fun ebony_N : N;
+fun ebullience_N : N;
+fun ebullient_A : A;
+fun ebulliently_Adv : Adv;
+fun ec_N : N;
+fun eccentric_A : A;
+fun eccentric_N : N;
+fun eccentricity_N : N;
+fun eccles_PN : PN;
+fun ecclesiastic_N : N;
+fun ecclesiastical_A : A;
+fun ecclesiastically_Adv : Adv;
+fun echelon_N : N;
+fun echo_N : N;
+fun echo_V : V;
+fun echo_V2 : V2;
+fun echo_sounder_N : N;
+fun echo_sounding_N : N;
+fun eclectic_A : A;
+fun eclecticism_N : N;
+fun eclipse_N : N;
+fun eclipse_V2 : V2;
+fun ecliptic_N : N;
+fun ecological_A : A;
+fun ecologically_Adv : Adv;
+fun ecologist_N : N;
+fun ecology_N : N;
+fun economic_A : A;
+fun economical_A : A;
+fun economically_Adv : Adv;
+fun economics_N : N;
+fun economist_N : N;
+fun economize_V : V;
+fun economize_V2 : V2;
+fun economy_N : N;
+fun ecosystem_N : N;
+fun ecstasy_N : N;
+fun ecstatic_A : A;
+fun ecstatically_Adv : Adv;
+fun ectoplasm_N : N;
+fun ecuador_PN : PN;
+fun ecuadorian_A : A;
+fun ecuadorian_N : N;
+fun ecumenical_A : A;
+fun eczema_N : N;
+fun ed_PN : PN;
+fun eddie_PN : PN;
+fun eddy_N : N;
+fun eddy_PN : PN;
+fun eddy_V : V;
+fun edelweiss_N : N;
+fun eden_PN : PN;
+fun edenbridge_PN : PN;
+fun edgar_PN : PN;
+fun edge_N : N;
+fun edge_V : V;
+fun edge_V2 : V2;
+fun edgeways_Adv : Adv;
+fun edgewise_Adv : Adv;
+fun edging_N : N;
+fun edgy_A : A;
+fun edibility_N : N;
+fun edible_A : A;
+fun edible_N : N;
+fun edict_N : N;
+fun edification_N : N;
+fun edifice_N : N;
+fun edify_V2 : V2;
+fun edinburgh_PN : PN;
+fun edit_V2 : V2;
+fun edith_PN : PN;
+fun edition_N : N;
+fun editor_N : N;
+fun editorial_A : A;
+fun editorial_N : N;
+fun edmund_PN : PN;
+fun edp_N : N;
+fun educate_V2 : V2;
+fun education_N : N;
+fun educational_A : A;
+fun educationalist_N : N;
+fun educationally_Adv : Adv;
+fun educationist_N : N;
+fun educator_N : N;
+fun educe_V2 : V2;
+fun edward_PN : PN;
+fun edwardian_A : A;
+fun edwardian_N : N;
+fun eec_N : N;
+fun eeg_N : N;
+fun eel_N : N;
+fun eerie_A : A;
+fun eerily_Adv : Adv;
+fun eeriness_N : N;
+fun eery_A : A;
+fun eff_V : V;
+fun efface_V2 : V2;
+fun effacement_N : N;
+fun effect_N : N;
+fun effect_V2 : V2;
+fun effective_A : A;
+fun effectively_Adv : Adv;
+fun effectiveness_N : N;
+fun effectual_A : A;
+fun effectuality_N : N;
+fun effectually_Adv : Adv;
+fun effectualness_N : N;
+fun effeminacy_N : N;
+fun effeminate_A : A;
+fun effendi_N : N;
+fun effervesce_V : V;
+fun effervescence_N : N;
+fun effervescent_A : A;
+fun effete_A : A;
+fun effeteness_N : N;
+fun efficacious_A : A;
+fun efficaciously_Adv : Adv;
+fun efficacy_N : N;
+fun efficiency_N : N;
+fun efficient_A : A;
+fun efficiently_Adv : Adv;
+fun effigy_N : N;
+fun efflorescence_N : N;
+fun efflorescent_A : A;
+fun effluent_N : N;
+fun efflux_N : N;
+fun effort_N : N;
+fun effortless_A : A;
+fun effortlessly_Adv : Adv;
+fun effrontery_N : N;
+fun effulgence_N : N;
+fun effulgent_A : A;
+fun effusion_N : N;
+fun effusive_A : A;
+fun effusively_Adv : Adv;
+fun effusiveness_N : N;
+fun eft_N : N;
+fun efta_N : N;
+fun eg_PN : PN;
+fun egalitarian_A : A;
+fun egalitarian_N : N;
+fun egalitarianism_N : N;
+fun egg_N : N;
+fun egg_V2 : V2;
+fun egg_beater_N : N;
+fun egg_cup_N : N;
+fun egg_whisk_N : N;
+fun egghead_N : N;
+fun eggplant_N : N;
+fun eggshake_N : N;
+fun eggshell_N : N;
+fun eglantine_N : N;
+fun ego_N : N;
+fun egocentric_A : A;
+fun egoism_N : N;
+fun egoist_N : N;
+fun egoistic_A : A;
+fun egoistical_A : A;
+fun egotism_N : N;
+fun egotist_N : N;
+fun egotistic_A : A;
+fun egotistically_Adv : Adv;
+fun egotrip_N : N;
+fun egotrip_V : V;
+fun egregious_A : A;
+fun egremont_PN : PN;
+fun egress_N : N;
+fun egret_N : N;
+fun egypt_PN : PN;
+fun egyptian_A : A;
+fun egyptian_N : N;
+fun eiche_PN : PN;
+fun eiderdown_N : N;
+fun eightpence_N : N;
+fun eightpenny_A : A;
+fun eightsome_N : N;
+fun eileen_PN : PN;
+fun eindhoven_PN : PN;
+fun eisteddfod_N : N;
+fun either_A : A;
+fun either_Adv : Adv;
+fun ejaculate_V2 : V2;
+fun ejaculation_N : N;
+fun eject_V : V;
+fun eject_V2 : V2;
+fun ejection_N : N;
+fun ejector_N : N;
+fun ejector_seat_N : N;
+fun eke_V2 : V2;
+fun el_dorado_N : N;
+fun el_salvador_PN : PN;
+fun elaborate_A : A;
+fun elaborate_V2 : V2;
+fun elaborately_Adv : Adv;
+fun elaborateness_N : N;
+fun elaboration_N : N;
+fun elaine_PN : PN;
+fun eland_N : N;
+fun elapse_V : V;
+fun elastic_A : A;
+fun elastic_N : N;
+fun elasticity_N : N;
+fun elasticized_A : A;
+fun elastoplast_N : N;
+fun elate_V2 : V2;
+fun elation_N : N;
+fun elbow_N : N;
+fun elbow_V2 : V2;
+fun elder_N : N;
+fun elderly_A : A;
+fun elderslie_PN : PN;
+fun eleanor_PN : PN;
+fun elect_A : A;
+fun elect_V2 : V2;
+fun election_N : N;
+fun electioneering_N : N;
+fun elective_A : A;
+fun elector_N : N;
+fun electoral_A : A;
+fun electorate_N : N;
+fun electric_A : A;
+fun electrical_A : A;
+fun electrically_Adv : Adv;
+fun electrician_N : N;
+fun electricity_N : N;
+fun electrification_N : N;
+fun electrify_V2 : V2;
+fun electrocardiogram_N : N;
+fun electrocardiograph_N : N;
+fun electrochemistry_N : N;
+fun electrocute_V2 : V2;
+fun electrocution_N : N;
+fun electrode_N : N;
+fun electrolysis_N : N;
+fun electrolyte_N : N;
+fun electromagnet_N : N;
+fun electromagnetic_A : A;
+fun electromagnetism_N : N;
+fun electron_N : N;
+fun electronic_A : A;
+fun electronically_Adv : Adv;
+fun electronics_N : N;
+fun electroplate_N : N;
+fun electroplate_V2 : V2;
+fun electrostatic_A : A;
+fun eleemosynary_A : A;
+fun elegance_N : N;
+fun elegant_A : A;
+fun elegantly_Adv : Adv;
+fun elegiac_A : A;
+fun elegy_N : N;
+fun element_N : N;
+fun elemental_A : A;
+fun elementarily_Adv : Adv;
+fun elementary_A : A;
+fun elephant_N : N;
+fun elephantiasis_N : N;
+fun elephantine_A : A;
+fun elevate_V2 : V2;
+fun elevation_N : N;
+fun elevator_N : N;
+fun elf_N : N;
+fun elfin_A : A;
+fun elfish_A : A;
+fun elgin_PN : PN;
+fun elicit_V2 : V2;
+fun elicitation_N : N;
+fun elide_V2 : V2;
+fun eligibility_N : N;
+fun eligible_A : A;
+fun eliminate_V2 : V2;
+fun elimination_N : N;
+fun elision_N : N;
+fun elitism_N : N;
+fun elitist_N : N;
+fun elixir_N : N;
+fun eliza_PN : PN;
+fun elizabeth_PN : PN;
+fun elizabethan_A : A;
+fun elizabethan_N : N;
+fun elk_N : N;
+fun elland_PN : PN;
+fun ellen_PN : PN;
+fun ellesmere_PN : PN;
+fun ellesmere_port_PN : PN;
+fun ellie_PN : PN;
+fun ellipse_N : N;
+fun ellipsis_N : N;
+fun elliptic_A : A;
+fun elliptical_A : A;
+fun elloughton_PN : PN;
+fun elm_N : N;
+fun elocution_N : N;
+fun elocutionary_A : A;
+fun elocutionist_N : N;
+fun elongate_V : V;
+fun elongate_V2 : V2;
+fun elongation_N : N;
+fun elope_V : V;
+fun elopement_N : N;
+fun eloquence_N : N;
+fun eloquent_A : A;
+fun eloquently_Adv : Adv;
+fun else_Adv : Adv;
+fun elsewhere_Adv : Adv;
+fun elsie_PN : PN;
+fun elstree_PN : PN;
+fun elucidate_V2 : V2;
+fun elucidation_N : N;
+fun elude_V2 : V2;
+fun elusive_A : A;
+fun elver_N : N;
+fun elvish_A : A;
+fun ely_PN : PN;
+fun elysian_A : A;
+fun elysium_PN : PN;
+fun emaciate_V2 : V2;
+fun emaciation_N : N;
+fun emanate_V : V;
+fun emanation_N : N;
+fun emancipate_V2 : V2;
+fun emancipation_N : N;
+fun emasculate_V2 : V2;
+fun emasculation_N : N;
+fun embalm_V2 : V2;
+fun embalmment_N : N;
+fun embankment_N : N;
+fun embargo_N : N;
+fun embargo_V2 : V2;
+fun embark_V : V;
+fun embark_V2 : V2;
+fun embarkation_N : N;
+fun embarrass_V2 : V2;
+fun embarrassing_A : A;
+fun embarrassingly_Adv : Adv;
+fun embarrassment_N : N;
+fun embassy_N : N;
+fun embattled_A : A;
+fun embed_V2 : V2;
+fun embellish_V2 : V2;
+fun embellishment_N : N;
+fun ember_N : N;
+fun embezzle_V2 : V2;
+fun embezzlement_N : N;
+fun embitter_V2 : V2;
+fun embitterment_N : N;
+fun emblazon_V2 : V2;
+fun emblem_N : N;
+fun emblematic_A : A;
+fun embodiment_N : N;
+fun embody_V2 : V2;
+fun embolden_V2 : V2;
+fun embonpoint_A : A;
+fun embonpoint_N : N;
+fun emboss_V2 : V2;
+fun embrace_N : N;
+fun embrace_V : V;
+fun embrace_V2 : V2;
+fun embrasure_N : N;
+fun embrocation_N : N;
+fun embroider_V : V;
+fun embroider_V2 : V2;
+fun embroidery_N : N;
+fun embroil_V2 : V2;
+fun embryo_N : N;
+fun embryonic_A : A;
+fun emeer_N : N;
+fun emend_V2 : V2;
+fun emendation_N : N;
+fun emerald_N : N;
+fun emerge_V : V;
+fun emergence_N : N;
+fun emergency_N : N;
+fun emergent_A : A;
+fun emeritus_A : A;
+fun emery_N : N;
+fun emetic_N : N;
+fun emigrant_N : N;
+fun emigrate_V : V;
+fun emigration_N : N;
+fun emily_PN : PN;
+fun eminence_N : N;
+fun eminent_A : A;
+fun eminently_Adv : Adv;
+fun emir_N : N;
+fun emirate_N : N;
+fun emissary_N : N;
+fun emission_N : N;
+fun emit_V2 : V2;
+fun emma_PN : PN;
+fun emolument_N : N;
+fun emotion_N : N;
+fun emotional_A : A;
+fun emotionally_Adv : Adv;
+fun emotionless_A : A;
+fun emotive_A : A;
+fun empale_V2 : V2;
+fun empanel_V2 : V2;
+fun empathy_N : N;
+fun emperor_N : N;
+fun emphasis_N : N;
+fun emphasize_V2 : V2;
+fun emphatic_A : A;
+fun emphatically_Adv : Adv;
+fun empire_N : N;
+fun empiric_A : A;
+fun empirical_A : A;
+fun empirically_Adv : Adv;
+fun empiricism_N : N;
+fun empiricist_N : N;
+fun emplacement_N : N;
+fun emplane_V : V;
+fun emplane_V2 : V2;
+fun employ_N : N;
+fun employ_V2 : V2;
+fun employable_A : A;
+fun employee_N : N;
+fun employer_N : N;
+fun employment_N : N;
+fun emporium_N : N;
+fun empower_V2 : V2;
+fun empress_N : N;
+fun emptiness_N : N;
+fun empty_A : A;
+fun empty_N : N;
+fun empty_V : V;
+fun empty_V2 : V2;
+fun empty_handed_A : A;
+fun empty_headed_A : A;
+fun empurpled_A : A;
+fun empyrean_A : A;
+fun empyrean_N : N;
+fun emsworth_PN : PN;
+fun emu_N : N;
+fun emulate_V2 : V2;
+fun emulation_N : N;
+fun emulous_A : A;
+fun emulously_Adv : Adv;
+fun emulsify_V2 : V2;
+fun emulsion_N : N;
+fun en_clair_Adv : Adv;
+fun en_famille_Adv : Adv;
+fun en_masse_Adv : Adv;
+fun en_route_Adv : Adv;
+fun enable_V2 : V2;
+fun enabling_A : A;
+fun enact_V2 : V2;
+fun enactment_N : N;
+fun enamel_N : N;
+fun enamel_V2 : V2;
+fun enamour_V2 : V2;
+fun enc_PN : PN;
+fun encamp_V : V;
+fun encamp_V2 : V2;
+fun encampment_N : N;
+fun encase_V2 : V2;
+fun encaustic_A : A;
+fun encephalitis_N : N;
+fun enchain_V2 : V2;
+fun enchant_V2 : V2;
+fun enchanter_N : N;
+fun enchantingly_Adv : Adv;
+fun enchantment_N : N;
+fun enchantress_N : N;
+fun encircle_V2 : V2;
+fun encirclement_N : N;
+fun enclave_N : N;
+fun enclose_V2 : V2;
+fun enclosure_N : N;
+fun encode_V2 : V2;
+fun encomium_N : N;
+fun encompass_V2 : V2;
+fun encore_N : N;
+fun encore_V2 : V2;
+fun encounter_N : N;
+fun encounter_V2 : V2;
+fun encourage_V2 : V2;
+fun encouragement_N : N;
+fun encouragingly_Adv : Adv;
+fun encroach_V : V;
+fun encroachment_N : N;
+fun encrust_V : V;
+fun encrust_V2 : V2;
+fun encumber_V2 : V2;
+fun encumbrance_N : N;
+fun encyclical_A : A;
+fun encyclical_N : N;
+fun encyclopaedia_N : N;
+fun encyclopaedic_A : A;
+fun encyclopedia_N : N;
+fun encyclopedic_A : A;
+fun end_N : N;
+fun end_V : V;
+fun end_V2 : V2;
+fun end_all_N : N;
+fun endanger_V2 : V2;
+fun endear_V2 : V2;
+fun endearingly_Adv : Adv;
+fun endearment_N : N;
+fun endeavour_N : N;
+fun endeavour_V : V;
+fun endemic_A : A;
+fun endemic_N : N;
+fun ending_N : N;
+fun endive_N : N;
+fun endless_A : A;
+fun endlessly_Adv : Adv;
+fun endorse_V2 : V2;
+fun endorsement_N : N;
+fun endow_V2 : V2;
+fun endowment_N : N;
+fun endue_V2 : V2;
+fun endurable_A : A;
+fun endurance_N : N;
+fun endure_V : V;
+fun endure_V2 : V2;
+fun enduring_A : A;
+fun enduringly_Adv : Adv;
+fun endways_Adv : Adv;
+fun endwise_Adv : Adv;
+fun enema_N : N;
+fun enemy_N : N;
+fun energetic_A : A;
+fun energetically_Adv : Adv;
+fun energy_N : N;
+fun enervate_V2 : V2;
+fun enfant_terrible_N : N;
+fun enfeeble_V2 : V2;
+fun enfield_PN : PN;
+fun enfold_V2 : V2;
+fun enforce_V2 : V2;
+fun enforceable_A : A;
+fun enforcement_N : N;
+fun enfranchise_V2 : V2;
+fun enfranchisement_N : N;
+fun engage_V : V;
+fun engage_V2 : V2;
+fun engagement_N : N;
+fun engaging_A : A;
+fun engagingly_Adv : Adv;
+fun engender_V2 : V2;
+fun engine_N : N;
+fun engine_driver_N : N;
+fun engineer_N : N;
+fun engineer_V : V;
+fun engineer_V2 : V2;
+fun engineering_N : N;
+fun england_PN : PN;
+fun english_A : A;
+fun english_N : N;
+fun englishman_N : N;
+fun englishwoman_N : N;
+fun engraft_V2 : V2;
+fun engrave_V2 : V2;
+fun engraver_N : N;
+fun engraving_N : N;
+fun engross_V2 : V2;
+fun engulf_V2 : V2;
+fun enhance_V2 : V2;
+fun enhancement_N : N;
+fun enigma_N : N;
+fun enigmatic_A : A;
+fun enigmatically_Adv : Adv;
+fun enjoin_V2 : V2;
+fun enjoy_V2 : V2;
+fun enjoyable_A : A;
+fun enjoyably_Adv : Adv;
+fun enjoyment_N : N;
+fun enkindle_V2 : V2;
+fun enlarge_V : V;
+fun enlarge_V2 : V2;
+fun enlargement_N : N;
+fun enlighten_V2 : V2;
+fun enlightened_A : A;
+fun enlightenment_N : N;
+fun enlist_V : V;
+fun enlist_V2 : V2;
+fun enlistment_N : N;
+fun enliven_V2 : V2;
+fun enmesh_V2 : V2;
+fun enmity_N : N;
+fun ennoble_V2 : V2;
+fun ennoblement_N : N;
+fun ennui_N : N;
+fun enoch_PN : PN;
+fun enormity_N : N;
+fun enormous_A : A;
+fun enormously_Adv : Adv;
+fun enormousness_N : N;
+fun enough_A : A;
+fun enough_Adv : Adv;
+fun enough_N : N;
+fun enplane_V : V;
+fun enplane_V2 : V2;
+fun enquire_V : V;
+fun enquire_V2 : V2;
+fun enquirer_N : N;
+fun enquiringly_Adv : Adv;
+fun enquiry_N : N;
+fun enrage_V2 : V2;
+fun enrapture_V2 : V2;
+fun enrich_V2 : V2;
+fun enrichment_N : N;
+fun enrol_V : V;
+fun enrol_V2 : V2;
+fun enroll_V : V;
+fun enroll_V2 : V2;
+fun enrolment_N : N;
+fun enschede_PN : PN;
+fun ensconce_V2 : V2;
+fun ensemble_N : N;
+fun enshrine_V2 : V2;
+fun enshroud_V2 : V2;
+fun ensign_N : N;
+fun ensilage_N : N;
+fun enslave_V2 : V2;
+fun enslavement_N : N;
+fun ensnare_V2 : V2;
+fun ensue_V : V;
+fun ensure_V : V;
+fun ensure_V2 : V2;
+fun entail_N : N;
+fun entail_V2 : V2;
+fun entangle_V2 : V2;
+fun entanglement_N : N;
+fun entente_N : N;
+fun entente_cordiale_N : N;
+fun enter_V : V;
+fun enter_V2 : V2;
+fun enteric_A : A;
+fun enteritis_N : N;
+fun enterprise_N : N;
+fun enterprising_A : A;
+fun enterprisingly_Adv : Adv;
+fun entertain_V2 : V2;
+fun entertainer_N : N;
+fun entertaining_A : A;
+fun entertainingly_Adv : Adv;
+fun entertainment_N : N;
+fun enthral_V2 : V2;
+fun enthrall_V2 : V2;
+fun enthrone_V2 : V2;
+fun enthronement_N : N;
+fun enthuse_V : V;
+fun enthusiasm_N : N;
+fun enthusiast_N : N;
+fun enthusiastic_A : A;
+fun enthusiastically_Adv : Adv;
+fun entice_V2 : V2;
+fun enticement_N : N;
+fun entire_A : A;
+fun entirely_Adv : Adv;
+fun entirety_N : N;
+fun entitle_V2 : V2;
+fun entitlement_N : N;
+fun entity_N : N;
+fun entomb_V2 : V2;
+fun entomological_A : A;
+fun entomologist_N : N;
+fun entomology_N : N;
+fun entourage_N : N;
+fun entr'acte_N : N;
+fun entrain_V : V;
+fun entrain_V2 : V2;
+fun entrance_N : N;
+fun entrance_V2 : V2;
+fun entrance_fee_N : N;
+fun entrance_money_N : N;
+fun entrant_N : N;
+fun entrap_V2 : V2;
+fun entreat_V2 : V2;
+fun entreatingly_Adv : Adv;
+fun entreaty_N : N;
+fun entrench_V2 : V2;
+fun entrenchment_N : N;
+fun entrepot_N : N;
+fun entrepreneur_N : N;
+fun entrepreneurial_A : A;
+fun entrust_V2 : V2;
+fun entry_N : N;
+fun entree_N : N;
+fun entwine_V2 : V2;
+fun enumerate_V2 : V2;
+fun enumeration_N : N;
+fun enunciate_V : V;
+fun enunciate_V2 : V2;
+fun enunciation_N : N;
+fun envelop_V2 : V2;
+fun envelope_N : N;
+fun envelopment_N : N;
+fun envenom_V2 : V2;
+fun enviable_A : A;
+fun envious_A : A;
+fun enviously_Adv : Adv;
+fun environ_V2 : V2;
+fun environment_N : N;
+fun environmental_A : A;
+fun environmentally_Adv : Adv;
+fun envisage_V2 : V2;
+fun envoi_N : N;
+fun envoy_N : N;
+fun envy_N : N;
+fun envy_V2 : V2;
+fun enwrap_V2 : V2;
+fun enzyme_N : N;
+fun eon_N : N;
+fun epaulet_N : N;
+fun epaulette_N : N;
+fun ephemeral_A : A;
+fun epic_A : A;
+fun epic_N : N;
+fun epicentre_N : N;
+fun epicure_N : N;
+fun epicurean_A : A;
+fun epicurean_N : N;
+fun epidemic_A : A;
+fun epidemic_N : N;
+fun epidemiologist_N : N;
+fun epidemiology_N : N;
+fun epidermis_N : N;
+fun epidiascope_N : N;
+fun epiglottis_N : N;
+fun epigram_N : N;
+fun epigrammatic_A : A;
+fun epilepsy_N : N;
+fun epileptic_A : A;
+fun epileptic_N : N;
+fun epilogue_N : N;
+fun epiphany_PN : PN;
+fun episcopal_A : A;
+fun episcopalian_A : A;
+fun episcopalian_N : N;
+fun episode_N : N;
+fun episodic_A : A;
+fun epistle_N : N;
+fun epistolary_A : A;
+fun epitaph_N : N;
+fun epithet_N : N;
+fun epitome_N : N;
+fun epitomize_V2 : V2;
+fun epoch_N : N;
+fun epoch_making_A : A;
+fun epping_PN : PN;
+fun epsom_PN : PN;
+fun equable_A : A;
+fun equably_Adv : Adv;
+fun equal_A : A;
+fun equal_N : N;
+fun equal_V2 : V2;
+fun equalitarian_N : N;
+fun equality_N : N;
+fun equalization_N : N;
+fun equalize_V2 : V2;
+fun equalizer_N : N;
+fun equally_Adv : Adv;
+fun equanimity_N : N;
+fun equate_V2 : V2;
+fun equation_N : N;
+fun equator_N : N;
+fun equatorial_A : A;
+fun equerry_N : N;
+fun equestrian_A : A;
+fun equestrian_N : N;
+fun equidistant_A : A;
+fun equilateral_A : A;
+fun equilibrium_N : N;
+fun equine_A : A;
+fun equinoctial_A : A;
+fun equinox_N : N;
+fun equip_V2 : V2;
+fun equipage_N : N;
+fun equipment_N : N;
+fun equipoise_N : N;
+fun equitable_A : A;
+fun equitably_Adv : Adv;
+fun equity_N : N;
+fun equivalence_N : N;
+fun equivalent_A : A;
+fun equivalent_N : N;
+fun equivocal_A : A;
+fun equivocation_N : N;
+fun era_N : N;
+fun eradicate_V2 : V2;
+fun eradication_N : N;
+fun erase_V2 : V2;
+fun eraser_N : N;
+fun erasure_N : N;
+fun ere_Adv : Adv;
+fun erect_A : A;
+fun erect_V2 : V2;
+fun erectile_A : A;
+fun erection_N : N;
+fun erectly_Adv : Adv;
+fun erectness_N : N;
+fun eremite_N : N;
+fun erfurt_PN : PN;
+fun erg_N : N;
+fun ergo_Adv : Adv;
+fun ergonomics_N : N;
+fun eric_PN : PN;
+fun erica_PN : PN;
+fun erin_PN : PN;
+fun eritrea_PN : PN;
+fun eritrean_A : A;
+fun eritrean_N : N;
+fun erlangen_PN : PN;
+fun ermine_N : N;
+fun ernest_PN : PN;
+fun ernie_PN : PN;
+fun erode_V2 : V2;
+fun erogenous_A : A;
+fun erosion_N : N;
+fun erosive_A : A;
+fun erotic_A : A;
+fun eroticism_N : N;
+fun err_V : V;
+fun errand_N : N;
+fun errant_A : A;
+fun erratic_A : A;
+fun erratically_Adv : Adv;
+fun erratum_N : N;
+fun erroneous_A : A;
+fun erroneously_Adv : Adv;
+fun error_N : N;
+fun erse_N : N;
+fun eructation_N : N;
+fun erudite_A : A;
+fun eruditely_Adv : Adv;
+fun erudition_N : N;
+fun erupt_V : V;
+fun eruption_N : N;
+fun erysipelas_N : N;
+fun escalate_V : V;
+fun escalate_V2 : V2;
+fun escalation_N : N;
+fun escalator_N : N;
+fun escalope_N : N;
+fun escapade_N : N;
+fun escape_N : N;
+fun escape_V : V;
+fun escape_V2 : V2;
+fun escapee_N : N;
+fun escapement_N : N;
+fun escapism_N : N;
+fun escapist_N : N;
+fun escapologist_N : N;
+fun escarpment_N : N;
+fun eschatology_N : N;
+fun eschew_V2 : V2;
+fun escort_N : N;
+fun escort_V2 : V2;
+fun escritoire_N : N;
+fun escudo_N : N;
+fun escutcheon_N : N;
+fun esfahan_PN : PN;
+fun eskimo_N : N;
+fun esophagus_N : N;
+fun esoteric_A : A;
+fun esp_N : N;
+fun espalier_N : N;
+fun especial_A : A;
+fun especially_Adv : Adv;
+fun esperanto_N : N;
+fun espionage_N : N;
+fun esplanade_N : N;
+fun espousal_N : N;
+fun espouse_V2 : V2;
+fun espresso_N : N;
+fun esprit_N : N;
+fun esprit_de_corps_N : N;
+fun espy_V2 : V2;
+fun esq_PN : PN;
+fun esquire_N : N;
+fun essay_N : N;
+fun essay_V : V;
+fun essay_V2 : V2;
+fun essayist_N : N;
+fun essen_PN : PN;
+fun essence_N : N;
+fun essential_A : A;
+fun essential_N : N;
+fun essentially_Adv : Adv;
+fun essex_PN : PN;
+fun establish_V2 : V2;
+fun establishment_N : N;
+fun estaminet_N : N;
+fun estate_N : N;
+fun esteem_N : N;
+fun esteem_V2 : V2;
+fun esther_PN : PN;
+fun esthete_N : N;
+fun esthetic_A : A;
+fun esthetic_N : N;
+fun esthetical_A : A;
+fun esthetics_N : N;
+fun estimable_A : A;
+fun estimate_N : N;
+fun estimate_V : V;
+fun estimate_V2 : V2;
+fun estimation_N : N;
+fun estrange_V2 : V2;
+fun estrangement_N : N;
+fun estuary_N : N;
+fun et_al_PN : PN;
+fun et_seq_PN : PN;
+fun eta_N : N;
+fun etc_PN : PN;
+fun etch_V : V;
+fun etch_V2 : V2;
+fun etcher_N : N;
+fun etching_N : N;
+fun etd_N : N;
+fun eternal_A : A;
+fun eternally_Adv : Adv;
+fun eternity_N : N;
+fun ethel_PN : PN;
+fun ether_N : N;
+fun ethereal_A : A;
+fun ethic_N : N;
+fun ethical_A : A;
+fun ethically_Adv : Adv;
+fun ethics_N : N;
+fun ethiopia_PN : PN;
+fun ethiopian_A : A;
+fun ethiopian_N : N;
+fun ethnic_A : A;
+fun ethnically_Adv : Adv;
+fun ethnographer_N : N;
+fun ethnographic_A : A;
+fun ethnography_N : N;
+fun ethnological_A : A;
+fun ethnologist_N : N;
+fun ethnology_N : N;
+fun ethos_N : N;
+fun ethyl_N : N;
+fun etiology_N : N;
+fun etiquette_N : N;
+fun etymological_A : A;
+fun etymologist_N : N;
+fun etymology_N : N;
+fun eucalyptus_N : N;
+fun eucharist_N : N;
+fun euclidean_A : A;
+fun eugene_PN : PN;
+fun eugenics_N : N;
+fun eulogist_N : N;
+fun eulogistic_A : A;
+fun eulogize_V2 : V2;
+fun eulogy_N : N;
+fun eunice_PN : PN;
+fun eunuch_N : N;
+fun euphemism_N : N;
+fun euphemistic_A : A;
+fun euphemistically_Adv : Adv;
+fun euphonium_N : N;
+fun euphony_N : N;
+fun euphoria_N : N;
+fun euphoric_A : A;
+fun euphuism_N : N;
+fun eurasia_PN : PN;
+fun eurasian_A : A;
+fun eurasian_N : N;
+fun eurhythmics_N : N;
+fun eurodollar_N : N;
+fun europe_PN : PN;
+fun european_A : A;
+fun european_N : N;
+fun eurovision_PN : PN;
+fun eurythmics_N : N;
+fun eustachian_A : A;
+fun euthanasia_N : N;
+fun eva_PN : PN;
+fun evacuate_V2 : V2;
+fun evacuation_N : N;
+fun evacuee_N : N;
+fun evade_V2 : V2;
+fun evaluate_V2 : V2;
+fun evaluation_N : N;
+fun evaluative_A : A;
+fun evanescence_N : N;
+fun evanescent_A : A;
+fun evangelical_A : A;
+fun evangelicalism_N : N;
+fun evangelism_N : N;
+fun evangelist_N : N;
+fun evangelistic_A : A;
+fun evaporate_V : V;
+fun evaporate_V2 : V2;
+fun evaporation_N : N;
+fun evasion_N : N;
+fun evasive_A : A;
+fun evasively_Adv : Adv;
+fun evasiveness_N : N;
+fun eve_N : N;
+fun eve_PN : PN;
+fun evelyn_PN : PN;
+fun even_A : A;
+fun even_Adv : Adv;
+fun even_N : N;
+fun even_V2 : V2;
+fun even_handed_A : A;
+fun evening_N : N;
+fun evenly_Adv : Adv;
+fun evenness_N : N;
+fun evensong_N : N;
+fun event_N : N;
+fun eventful_A : A;
+fun eventide_N : N;
+fun eventual_A : A;
+fun eventuality_N : N;
+fun eventually_Adv : Adv;
+fun ever_Adv : Adv;
+fun evergreen_A : A;
+fun evergreen_N : N;
+fun everlasting_A : A;
+fun evermore_Adv : Adv;
+fun everyday_A : A;
+fun everyplace_Adv : Adv;
+fun evesham_PN : PN;
+fun evict_V2 : V2;
+fun eviction_N : N;
+fun evidence_N : N;
+fun evidence_V2 : V2;
+fun evident_A : A;
+fun evidently_Adv : Adv;
+fun evil_A : A;
+fun evil_N : N;
+fun evil_doer_N : N;
+fun evil_minded_A : A;
+fun evilly_Adv : Adv;
+fun evince_V2 : V2;
+fun eviscerate_V2 : V2;
+fun evocation_N : N;
+fun evocative_A : A;
+fun evoke_V2 : V2;
+fun evolution_N : N;
+fun evolutionary_A : A;
+fun evolve_V : V;
+fun evolve_V2 : V2;
+fun ewe_N : N;
+fun ewell_PN : PN;
+fun ewer_N : N;
+fun ex_directory_A : A;
+fun ex_gratia_A : A;
+fun ex_officio_A : A;
+fun ex_officio_Adv : Adv;
+fun ex_service_A : A;
+fun ex_serviceman_N : N;
+fun exacerbate_V2 : V2;
+fun exacerbation_N : N;
+fun exact_A : A;
+fun exact_V2 : V2;
+fun exacting_A : A;
+fun exaction_N : N;
+fun exactitude_N : N;
+fun exactly_Adv : Adv;
+fun exactness_N : N;
+fun exaggerate_V : V;
+fun exaggerate_V2 : V2;
+fun exaggeration_N : N;
+fun exalt_V2 : V2;
+fun exaltation_N : N;
+fun exalted_A : A;
+fun exam_N : N;
+fun examination_N : N;
+fun examine_V2 : V2;
+fun examiner_N : N;
+fun example_N : N;
+fun exasperate_V2 : V2;
+fun exasperation_N : N;
+fun excavate_V2 : V2;
+fun excavation_N : N;
+fun excavator_N : N;
+fun exceed_V2 : V2;
+fun exceedingly_Adv : Adv;
+fun excel_V : V;
+fun excel_V2 : V2;
+fun excellence_N : N;
+fun excellency_N : N;
+fun excellent_A : A;
+fun excellently_Adv : Adv;
+fun excelsior_N : N;
+fun except_V2 : V2;
+fun exception_N : N;
+fun exceptionable_A : A;
+fun exceptional_A : A;
+fun exceptionally_Adv : Adv;
+fun excerpt_N : N;
+fun excess_A : A;
+fun excess_N : N;
+fun excessive_A : A;
+fun excessively_Adv : Adv;
+fun exchange_N : N;
+fun exchange_V2 : V2;
+fun exchangeable_A : A;
+fun exchanger_N : N;
+fun exchequer_N : N;
+fun excise_N : N;
+fun excise_V2 : V2;
+fun exciseman_N : N;
+fun excision_N : N;
+fun excitability_N : N;
+fun excitable_A : A;
+fun excite_V2 : V2;
+fun excitedly_Adv : Adv;
+fun excitement_N : N;
+fun excitingly_Adv : Adv;
+fun excl_PN : PN;
+fun exclaim_V : V;
+fun exclaim_V2 : V2;
+fun exclamation_N : N;
+fun exclamatory_A : A;
+fun exclude_V2 : V2;
+fun exclusion_N : N;
+fun exclusive_A : A;
+fun exclusively_Adv : Adv;
+fun excogitate_V2 : V2;
+fun excogitation_N : N;
+fun excommunicate_V2 : V2;
+fun excommunication_N : N;
+fun excoriate_V2 : V2;
+fun excoriation_N : N;
+fun excrement_N : N;
+fun excrescence_N : N;
+fun excrete_V2 : V2;
+fun excretion_N : N;
+fun excruciating_A : A;
+fun excruciatingly_Adv : Adv;
+fun exculpate_V2 : V2;
+fun excursion_N : N;
+fun excursionist_N : N;
+fun excusable_A : A;
+fun excusably_Adv : Adv;
+fun excuse_N : N;
+fun excuse_V2 : V2;
+fun execrable_A : A;
+fun execrate_V2 : V2;
+fun execration_N : N;
+fun executant_N : N;
+fun execute_V2 : V2;
+fun execution_N : N;
+fun executioner_N : N;
+fun executive_A : A;
+fun executive_N : N;
+fun executor_N : N;
+fun executrix_N : N;
+fun exegesis_N : N;
+fun exemplary_A : A;
+fun exemplification_N : N;
+fun exemplify_V2 : V2;
+fun exempt_A : A;
+fun exempt_V2 : V2;
+fun exemption_N : N;
+fun exercise_N : N;
+fun exercise_V : V;
+fun exercise_V2 : V2;
+fun exert_V2 : V2;
+fun exertion_N : N;
+fun exeter_PN : PN;
+fun exhalation_N : N;
+fun exhale_V : V;
+fun exhale_V2 : V2;
+fun exhaust_N : N;
+fun exhaust_V2 : V2;
+fun exhaust_pipe_N : N;
+fun exhaustion_N : N;
+fun exhaustive_A : A;
+fun exhaustively_Adv : Adv;
+fun exhibit_N : N;
+fun exhibit_V2 : V2;
+fun exhibition_N : N;
+fun exhibitioner_N : N;
+fun exhibitionism_N : N;
+fun exhibitionist_N : N;
+fun exhibitor_N : N;
+fun exhilarate_V2 : V2;
+fun exhilaration_N : N;
+fun exhort_V2 : V2;
+fun exhortation_N : N;
+fun exhumation_N : N;
+fun exhume_V2 : V2;
+fun exigency_N : N;
+fun exigent_A : A;
+fun exiguous_A : A;
+fun exile_N : N;
+fun exile_V2 : V2;
+fun exist_V : V;
+fun existence_N : N;
+fun existent_A : A;
+fun existentialism_N : N;
+fun existentialist_N : N;
+fun exit_N : N;
+fun exit_V : V;
+fun exmouth_PN : PN;
+fun exodus_N : N;
+fun exonerate_V2 : V2;
+fun exoneration_N : N;
+fun exorbitance_N : N;
+fun exorbitant_A : A;
+fun exorbitantly_Adv : Adv;
+fun exorcize_V2 : V2;
+fun exotic_A : A;
+fun expand_V : V;
+fun expand_V2 : V2;
+fun expanse_N : N;
+fun expansion_N : N;
+fun expansive_A : A;
+fun expansively_Adv : Adv;
+fun expansiveness_N : N;
+fun expatiate_V : V;
+fun expatriate_N : N;
+fun expatriate_V2 : V2;
+fun expect_V2 : V2;
+fun expectancy_N : N;
+fun expectant_A : A;
+fun expectantly_Adv : Adv;
+fun expectation_N : N;
+fun expected_A : A;
+fun expectorant_N : N;
+fun expectorate_V : V;
+fun expectorate_V2 : V2;
+fun expedience_N : N;
+fun expediency_N : N;
+fun expedient_A : A;
+fun expedient_N : N;
+fun expediently_Adv : Adv;
+fun expedite_V2 : V2;
+fun expedition_N : N;
+fun expeditionary_A : A;
+fun expeditious_A : A;
+fun expeditiously_Adv : Adv;
+fun expel_V2 : V2;
+fun expend_V2 : V2;
+fun expendable_A : A;
+fun expenditure_N : N;
+fun expense_N : N;
+fun expensive_A : A;
+fun expensively_Adv : Adv;
+fun experience_N : N;
+fun experience_V2 : V2;
+fun experienced_A : A;
+fun experiment_N : N;
+fun experiment_V : V;
+fun experimental_A : A;
+fun experimentally_Adv : Adv;
+fun experimentation_N : N;
+fun experimenter_N : N;
+fun expert_A : A;
+fun expert_N : N;
+fun expertise_N : N;
+fun expertly_Adv : Adv;
+fun expertness_N : N;
+fun expiate_V2 : V2;
+fun expiation_N : N;
+fun expiration_N : N;
+fun expire_V : V;
+fun expiry_N : N;
+fun explain_V2 : V2;
+fun explanation_N : N;
+fun explanatory_A : A;
+fun expletive_N : N;
+fun explicable_A : A;
+fun explicate_V2 : V2;
+fun explicit_A : A;
+fun explicitly_Adv : Adv;
+fun explicitness_N : N;
+fun explode_V : V;
+fun explode_V2 : V2;
+fun exploit_N : N;
+fun exploit_V2 : V2;
+fun exploitation_N : N;
+fun exploration_N : N;
+fun exploratory_A : A;
+fun explore_V2 : V2;
+fun explorer_N : N;
+fun explosion_N : N;
+fun explosive_A : A;
+fun explosive_N : N;
+fun explosively_Adv : Adv;
+fun expo_N : N;
+fun exponent_N : N;
+fun exponential_A : A;
+fun exponential_N : N;
+fun exponentially_Adv : Adv;
+fun export_N : N;
+fun export_V2 : V2;
+fun exportable_A : A;
+fun exportation_N : N;
+fun exporter_N : N;
+fun expose_V2 : V2;
+fun exposition_N : N;
+fun expostulate_V : V;
+fun expostulation_N : N;
+fun exposure_N : N;
+fun expose_N : N;
+fun expound_V2 : V2;
+fun express_A : A;
+fun express_Adv : Adv;
+fun express_N : N;
+fun express_V2 : V2;
+fun expression_N : N;
+fun expressionism_N : N;
+fun expressionist_N : N;
+fun expressionless_A : A;
+fun expressive_A : A;
+fun expressively_Adv : Adv;
+fun expressly_Adv : Adv;
+fun expressway_N : N;
+fun expropriate_V2 : V2;
+fun expropriation_N : N;
+fun expulsion_N : N;
+fun expunge_V2 : V2;
+fun expurgate_V2 : V2;
+fun expurgation_N : N;
+fun exquisite_A : A;
+fun exquisitely_Adv : Adv;
+fun exquisiteness_N : N;
+fun extant_A : A;
+fun extemporaneous_A : A;
+fun extemporaneously_Adv : Adv;
+fun extemporarily_Adv : Adv;
+fun extemporary_A : A;
+fun extempore_A : A;
+fun extempore_Adv : Adv;
+fun extemporize_V : V;
+fun extemporize_V2 : V2;
+fun extend_V : V;
+fun extend_V2 : V2;
+fun extension_N : N;
+fun extensive_A : A;
+fun extensively_Adv : Adv;
+fun extent_N : N;
+fun extenuate_V2 : V2;
+fun extenuation_N : N;
+fun exterior_A : A;
+fun exterior_N : N;
+fun exteriorize_V2 : V2;
+fun exterminate_V2 : V2;
+fun extermination_N : N;
+fun external_A : A;
+fun external_N : N;
+fun externalize_V2 : V2;
+fun externally_Adv : Adv;
+fun exterritorial_A : A;
+fun extinct_A : A;
+fun extinction_N : N;
+fun extinguish_V2 : V2;
+fun extinguisher_N : N;
+fun extirpate_V2 : V2;
+fun extirpation_N : N;
+fun extol_V2 : V2;
+fun extort_V2 : V2;
+fun extortion_N : N;
+fun extortionate_A : A;
+fun extortionately_Adv : Adv;
+fun extra_A : A;
+fun extra_Adv : Adv;
+fun extra_N : N;
+fun extract_N : N;
+fun extract_V2 : V2;
+fun extraction_N : N;
+fun extracurricular_A : A;
+fun extradite_V2 : V2;
+fun extradition_N : N;
+fun extrajudicial_A : A;
+fun extramarital_A : A;
+fun extramural_A : A;
+fun extraneous_A : A;
+fun extraordinarily_Adv : Adv;
+fun extraordinary_A : A;
+fun extrapolate_V : V;
+fun extrapolate_V2 : V2;
+fun extrapolation_N : N;
+fun extrasensory_A : A;
+fun extraterritorial_A : A;
+fun extravagance_N : N;
+fun extravagant_A : A;
+fun extravagantly_Adv : Adv;
+fun extravaganza_N : N;
+fun extreme_A : A;
+fun extreme_N : N;
+fun extremely_Adv : Adv;
+fun extremist_N : N;
+fun extremity_N : N;
+fun extricable_A : A;
+fun extricate_V2 : V2;
+fun extrication_N : N;
+fun extrinsic_A : A;
+fun extroversion_N : N;
+fun extrovert_N : N;
+fun extrude_V2 : V2;
+fun extrusion_N : N;
+fun exuberance_N : N;
+fun exuberant_A : A;
+fun exuberantly_Adv : Adv;
+fun exude_V : V;
+fun exude_V2 : V2;
+fun exult_V : V;
+fun exultant_A : A;
+fun exultantly_Adv : Adv;
+fun exultation_N : N;
+fun eye_N : N;
+fun eye_V2 : V2;
+fun eye_catching_A : A;
+fun eye_opener_N : N;
+fun eye_shadow_N : N;
+fun eyeball_N : N;
+fun eyebath_N : N;
+fun eyebrow_N : N;
+fun eyecatching_A : A;
+fun eyecup_N : N;
+fun eyed_A : A;
+fun eyeful_N : N;
+fun eyeglass_N : N;
+fun eyelash_N : N;
+fun eyeless_A : A;
+fun eyelet_N : N;
+fun eyelid_N : N;
+fun eyepiece_N : N;
+fun eyeshot_N : N;
+fun eyesight_N : N;
+fun eyesore_N : N;
+fun eyestrain_N : N;
+fun eyetooth_N : N;
+fun eyewash_N : N;
+fun eyewitness_N : N;
+fun eyrie_N : N;
+fun eyry_N : N;
+fun fa_N : N;
+fun fab_A : A;
+fun fabian_A : A;
+fun fabian_N : N;
+fun fable_N : N;
+fun fabled_A : A;
+fun fabric_N : N;
+fun fabricate_V2 : V2;
+fun fabrication_N : N;
+fun fabulous_A : A;
+fun fabulously_Adv : Adv;
+fun face_N : N;
+fun face_V : V;
+fun face_V2 : V2;
+fun face_ache_N : N;
+fun face_card_N : N;
+fun face_cloth_N : N;
+fun face_cream_N : N;
+fun face_lift_N : N;
+fun face_lifting_N : N;
+fun face_pack_N : N;
+fun face_powder_N : N;
+fun face_saver_N : N;
+fun face_saving_A : A;
+fun face_saving_N : N;
+fun faceless_A : A;
+fun facer_N : N;
+fun facet_N : N;
+fun facetious_A : A;
+fun facetiously_Adv : Adv;
+fun facetiousness_N : N;
+fun facia_N : N;
+fun facial_A : A;
+fun facial_N : N;
+fun facile_A : A;
+fun facilitate_V2 : V2;
+fun facility_N : N;
+fun facing_N : N;
+fun facsimile_N : N;
+fun fact_N : N;
+fun fact_finding_A : A;
+fun faction_N : N;
+fun factious_A : A;
+fun factitious_A : A;
+fun factor_N : N;
+fun factorize_V2 : V2;
+fun factory_N : N;
+fun factotum_N : N;
+fun factual_A : A;
+fun factually_Adv : Adv;
+fun faculty_N : N;
+fun fad_N : N;
+fun faddily_Adv : Adv;
+fun faddy_A : A;
+fun fade_V : V;
+fun fade_V2 : V2;
+fun faerie_N : N;
+fun faery_N : N;
+fun fag_N : N;
+fun fag_V : V;
+fun fag_V2 : V2;
+fun fag_end_N : N;
+fun faggot_N : N;
+fun faience_N : N;
+fun fail_N : N;
+fun fail_V : V;
+fun fail_V2 : V2;
+fun fail_safe_A : A;
+fun failing_N : N;
+fun failure_N : N;
+fun fain_Adv : Adv;
+fun faint_A : A;
+fun faint_N : N;
+fun faint_V : V;
+fun faint_hearted_A : A;
+fun faintly_Adv : Adv;
+fun faintness_N : N;
+fun fair_A : A;
+fun fair_Adv : Adv;
+fun fair_N : N;
+fun fair_minded_A : A;
+fun fairground_N : N;
+fun fairish_A : A;
+fun fairly_Adv : Adv;
+fun fairness_N : N;
+fun fairway_N : N;
+fun fairy_N : N;
+fun fairyland_N : N;
+fun fairytale_N : N;
+fun fait_accompli_N : N;
+fun faith_N : N;
+fun faith_healing_N : N;
+fun faithful_A : A;
+fun faithfully_Adv : Adv;
+fun faithfulness_N : N;
+fun faithless_A : A;
+fun faithlessly_Adv : Adv;
+fun faithlessness_N : N;
+fun fake_N : N;
+fun fake_V2 : V2;
+fun fakir_N : N;
+fun falcon_N : N;
+fun falconry_N : N;
+fun falkirk_PN : PN;
+fun fall_N : N;
+fun fall_V : V;
+fun fallacious_A : A;
+fun fallacy_N : N;
+fun fallibility_N : N;
+fun fallible_A : A;
+fun fallopian_A : A;
+fun fallout_N : N;
+fun fallow_A : A;
+fun fallow_N : N;
+fun fallow_deer_N : N;
+fun falmouth_PN : PN;
+fun false_A : A;
+fun false_Adv : Adv;
+fun falsehood_N : N;
+fun falsely_Adv : Adv;
+fun falseness_N : N;
+fun falsetto_A : A;
+fun falsetto_N : N;
+fun falsification_N : N;
+fun falsify_V2 : V2;
+fun falsity_N : N;
+fun falter_V : V;
+fun falter_V2 : V2;
+fun falteringly_Adv : Adv;
+fun fame_N : N;
+fun famed_A : A;
+fun familiar_A : A;
+fun familiar_N : N;
+fun familiarity_N : N;
+fun familiarize_V2 : V2;
+fun familiarly_Adv : Adv;
+fun family_N : N;
+fun famine_N : N;
+fun famish_V : V;
+fun famish_V2 : V2;
+fun famous_A : A;
+fun famously_Adv : Adv;
+fun fan_N : N;
+fun fan_V : V;
+fun fan_V2 : V2;
+fun fan_belt_N : N;
+fun fanatic_A : A;
+fun fanatic_N : N;
+fun fanatical_A : A;
+fun fanatically_Adv : Adv;
+fun fanaticism_N : N;
+fun fancier_N : N;
+fun fanciful_A : A;
+fun fancifully_Adv : Adv;
+fun fancy_A : A;
+fun fancy_N : N;
+fun fancy_V2 : V2;
+fun fancy_free_A : A;
+fun fandango_N : N;
+fun fanfare_N : N;
+fun fang_N : N;
+fun fanlight_N : N;
+fun fanny_N : N;
+fun fanny_PN : PN;
+fun fantan_N : N;
+fun fantasia_N : N;
+fun fantastic_A : A;
+fun fantastically_Adv : Adv;
+fun fantasy_N : N;
+fun fao_N : N;
+fun far_A : A;
+fun far_Adv : Adv;
+fun far_famed_A : A;
+fun far_fetched_A : A;
+fun far_flung_A : A;
+fun far_off_A : A;
+fun far_reaching_A : A;
+fun far_seeing_A : A;
+fun far_sighted_A : A;
+fun faraway_A : A;
+fun farce_N : N;
+fun farcical_A : A;
+fun farcically_Adv : Adv;
+fun fare_N : N;
+fun fare_V : V;
+fun fare_stage_N : N;
+fun farewell_N : N;
+fun farinaceous_A : A;
+fun farm_N : N;
+fun farm_V : V;
+fun farm_V2 : V2;
+fun farmer_N : N;
+fun farmhand_N : N;
+fun farmhouse_N : N;
+fun farmstead_N : N;
+fun farmyard_N : N;
+fun farnham_PN : PN;
+fun farnworth_PN : PN;
+fun farrago_N : N;
+fun farrier_N : N;
+fun farrow_N : N;
+fun farrow_V : V;
+fun farsi_N : N;
+fun fart_N : N;
+fun fart_V : V;
+fun farther_Adv : Adv;
+fun farthest_Adv : Adv;
+fun farthing_N : N;
+fun fascia_N : N;
+fun fascinate_V2 : V2;
+fun fascinating_A : A;
+fun fascinatingly_Adv : Adv;
+fun fascination_N : N;
+fun fascism_N : N;
+fun fascist_A : A;
+fun fascist_N : N;
+fun fashion_N : N;
+fun fashion_V2 : V2;
+fun fashionable_A : A;
+fun fashionably_Adv : Adv;
+fun fast_A : A;
+fun fast_Adv : Adv;
+fun fast_N : N;
+fun fast_V : V;
+fun fasten_V : V;
+fun fasten_V2 : V2;
+fun fastener_N : N;
+fun fastening_N : N;
+fun fastidious_A : A;
+fun fastidiously_Adv : Adv;
+fun fastidiousness_N : N;
+fun fastness_N : N;
+fun fat_A : A;
+fun fat_N : N;
+fun fat_V2 : V2;
+fun fatal_A : A;
+fun fatalism_N : N;
+fun fatalist_N : N;
+fun fatalistic_A : A;
+fun fatality_N : N;
+fun fate_N : N;
+fun fate_V2 : V2;
+fun fateful_A : A;
+fun fatefully_Adv : Adv;
+fun fathead_N : N;
+fun father_N : N;
+fun father_V2 : V2;
+fun father_in_law_N : N;
+fun fatherhood_N : N;
+fun fatherland_N : N;
+fun fatherless_A : A;
+fun fatherly_A : A;
+fun fathom_N : N;
+fun fathom_V2 : V2;
+fun fathomless_A : A;
+fun fatigue_N : N;
+fun fatigue_V2 : V2;
+fun fatigue_party_N : N;
+fun fatless_A : A;
+fun fatness_N : N;
+fun fatten_V : V;
+fun fatten_V2 : V2;
+fun fattish_A : A;
+fun fatty_A : A;
+fun fatuity_N : N;
+fun fatuous_A : A;
+fun fatuously_Adv : Adv;
+fun fatuousness_N : N;
+fun faucet_N : N;
+fun fauldhouse_PN : PN;
+fun fault_N : N;
+fun fault_V2 : V2;
+fun fault_finder_N : N;
+fun fault_finding_N : N;
+fun faultily_Adv : Adv;
+fun faultless_A : A;
+fun faultlessly_Adv : Adv;
+fun faulty_A : A;
+fun faun_N : N;
+fun faux_pas_N : N;
+fun faversham_PN : PN;
+fun favour_N : N;
+fun favour_V2 : V2;
+fun favourable_A : A;
+fun favourably_Adv : Adv;
+fun favourite_A : A;
+fun favourite_N : N;
+fun favouritism_N : N;
+fun fawley_PN : PN;
+fun fawn_N : N;
+fun fawn_V : V;
+fun facade_N : N;
+fun fbi_PN : PN;
+fun fealty_N : N;
+fun fear_N : N;
+fun fear_V : V;
+fun fear_V2 : V2;
+fun fearful_A : A;
+fun fearfully_Adv : Adv;
+fun fearfulness_N : N;
+fun fearless_A : A;
+fun fearlessly_Adv : Adv;
+fun fearlessness_N : N;
+fun fearsome_A : A;
+fun fearsomely_Adv : Adv;
+fun feasibility_N : N;
+fun feasible_A : A;
+fun feast_N : N;
+fun feast_V : V;
+fun feast_V2 : V2;
+fun feast_day_N : N;
+fun feat_N : N;
+fun feather_N : N;
+fun feather_V2 : V2;
+fun feather_boa_N : N;
+fun featherbed_N : N;
+fun featherbed_V2 : V2;
+fun featherbrained_A : A;
+fun featherstone_PN : PN;
+fun featherweight_N : N;
+fun feathery_A : A;
+fun feature_N : N;
+fun feature_V2 : V2;
+fun featureless_A : A;
+fun feb_PN : PN;
+fun febrile_A : A;
+fun february_N : N;
+fun february_PN : PN;
+fun feckless_A : A;
+fun fecklessly_Adv : Adv;
+fun fecklessness_N : N;
+fun fecund_A : A;
+fun fecundity_N : N;
+fun fed_N : N;
+fun federal_A : A;
+fun federalism_N : N;
+fun federalist_N : N;
+fun federate_V : V;
+fun federate_V2 : V2;
+fun federation_N : N;
+fun fee_N : N;
+fun fee_V2 : V2;
+fun feeble_A : A;
+fun feeble_minded_A : A;
+fun feebleness_N : N;
+fun feebly_Adv : Adv;
+fun feed_N : N;
+fun feed_V : V;
+fun feed_V2 : V2;
+fun feedback_N : N;
+fun feeder_N : N;
+fun feeding_bottle_N : N;
+fun feel_N : N;
+fun feel_V : V;
+fun feel_V2 : V2;
+fun feeler_N : N;
+fun feeling_A : A;
+fun feeling_N : N;
+fun feelingly_Adv : Adv;
+fun feign_V2 : V2;
+fun feint_N : N;
+fun feint_V : V;
+fun feldspar_N : N;
+fun felicitate_V2 : V2;
+fun felicitation_N : N;
+fun felicitous_A : A;
+fun felicitously_Adv : Adv;
+fun felicity_N : N;
+fun felicity_PN : PN;
+fun feline_A : A;
+fun felix_PN : PN;
+fun felixstowe_PN : PN;
+fun fell_A : A;
+fun fell_V2 : V2;
+fun fellah_N : N;
+fun fellow_N : N;
+fun fellow_feeling_N : N;
+fun fellow_traveller_N : N;
+fun fellowship_N : N;
+fun felon_N : N;
+fun felonious_A : A;
+fun felony_N : N;
+fun felspar_N : N;
+fun felt_N : N;
+fun felucca_N : N;
+fun fem_PN : PN;
+fun female_A : A;
+fun female_N : N;
+fun feminine_A : A;
+fun femininity_N : N;
+fun feminism_N : N;
+fun feminist_N : N;
+fun femur_N : N;
+fun fen_N : N;
+fun fence_N : N;
+fun fence_V2 : V2;
+fun fencer_N : N;
+fun fencing_N : N;
+fun fend_V : V;
+fun fend_V2 : V2;
+fun fender_N : N;
+fun fennel_N : N;
+fun feoff_N : N;
+fun feral_A : A;
+fun fermanagh_PN : PN;
+fun ferment_N : N;
+fun ferment_V : V;
+fun ferment_V2 : V2;
+fun fermentation_N : N;
+fun fern_N : N;
+fun ferny_A : A;
+fun ferocious_A : A;
+fun ferociously_Adv : Adv;
+fun ferocity_N : N;
+fun ferrara_PN : PN;
+fun ferret_N : N;
+fun ferret_V : V;
+fun ferret_V2 : V2;
+fun ferroconcrete_N : N;
+fun ferrous_A : A;
+fun ferrule_N : N;
+fun ferry_N : N;
+fun ferry_V : V;
+fun ferry_V2 : V2;
+fun ferryboat_N : N;
+fun ferryhill_PN : PN;
+fun ferryman_N : N;
+fun fertile_A : A;
+fun fertility_N : N;
+fun fertilization_N : N;
+fun fertilize_V2 : V2;
+fun fertilizer_N : N;
+fun ferule_N : N;
+fun fervency_N : N;
+fun fervent_A : A;
+fun fervently_Adv : Adv;
+fun fervid_A : A;
+fun fervidly_Adv : Adv;
+fun fervour_N : N;
+fun festal_A : A;
+fun fester_V : V;
+fun festival_N : N;
+fun festive_A : A;
+fun festivity_N : N;
+fun festoon_N : N;
+fun festoon_V2 : V2;
+fun fetal_A : A;
+fun fetch_V : V;
+fun fetch_V2 : V2;
+fun fetching_A : A;
+fun fete_day_N : N;
+fun fetid_A : A;
+fun fetish_N : N;
+fun fetlock_N : N;
+fun fetter_N : N;
+fun fetter_V2 : V2;
+fun fettle_N : N;
+fun feud_N : N;
+fun feudal_A : A;
+fun feudalism_N : N;
+fun feudatory_A : A;
+fun feudatory_N : N;
+fun fever_N : N;
+fun fevered_A : A;
+fun feverish_A : A;
+fun feverishly_Adv : Adv;
+fun fewness_N : N;
+fun fey_A : A;
+fun fez_N : N;
+fun fiance_N : N;
+fun fiancee_N : N;
+fun fiasco_N : N;
+fun fiat_N : N;
+fun fib_N : N;
+fun fib_V : V;
+fun fibber_N : N;
+fun fibbing_N : N;
+fun fibre_N : N;
+fun fibreboard_N : N;
+fun fibreglass_N : N;
+fun fibrositis_N : N;
+fun fibrous_A : A;
+fun fibula_N : N;
+fun fickle_A : A;
+fun fickleness_N : N;
+fun fiction_N : N;
+fun fictional_A : A;
+fun fictitious_A : A;
+fun fiddle_N : N;
+fun fiddle_V2 : V2;
+fun fiddler_N : N;
+fun fiddlestick_N : N;
+fun fiddling_A : A;
+fun fidelity_N : N;
+fun fidget_N : N;
+fun fidget_V : V;
+fun fidget_V2 : V2;
+fun fidgety_A : A;
+fun fief_N : N;
+fun field_N : N;
+fun field_V : V;
+fun field_V2 : V2;
+fun field_hospital_N : N;
+fun field_officer_N : N;
+fun fielder_N : N;
+fun fieldsman_N : N;
+fun fieldwork_N : N;
+fun fiend_N : N;
+fun fiendish_A : A;
+fun fiendishly_Adv : Adv;
+fun fierce_A : A;
+fun fiercely_Adv : Adv;
+fun fierceness_N : N;
+fun fierily_Adv : Adv;
+fun fieriness_N : N;
+fun fiery_A : A;
+fun fiesta_N : N;
+fun fife_N : N;
+fun fife_PN : PN;
+fun fig_N : N;
+fun fig_leaf_N : N;
+fun fight_N : N;
+fun fight_V : V;
+fun fight_V2 : V2;
+fun fighter_N : N;
+fun fighting_N : N;
+fun figment_N : N;
+fun figurative_A : A;
+fun figuratively_Adv : Adv;
+fun figure_N : N;
+fun figure_V : V;
+fun figure_V2 : V2;
+fun figured_A : A;
+fun figurehead_N : N;
+fun fiji_PN : PN;
+fun fijian_A : A;
+fun fijian_N : N;
+fun filament_N : N;
+fun filature_N : N;
+fun filbert_N : N;
+fun filch_V2 : V2;
+fun file_N : N;
+fun file_V : V;
+fun file_V2 : V2;
+fun filial_A : A;
+fun filibuster_N : N;
+fun filibuster_V : V;
+fun filigree_N : N;
+fun filipino_A : A;
+fun filipino_N : N;
+fun fill_N : N;
+fun fill_V : V;
+fun fill_V2 : V2;
+fun fillet_N : N;
+fun fillet_V2 : V2;
+fun filling_N : N;
+fun fillip_N : N;
+fun filly_N : N;
+fun film_N : N;
+fun film_V : V;
+fun film_V2 : V2;
+fun film_star_N : N;
+fun filmable_A : A;
+fun filmy_A : A;
+fun filter_N : N;
+fun filter_V : V;
+fun filter_V2 : V2;
+fun filtertipped_A : A;
+fun filth_N : N;
+fun filthily_Adv : Adv;
+fun filthiness_N : N;
+fun filthy_A : A;
+fun filtrate_N : N;
+fun filtrate_V : V;
+fun filtrate_V2 : V2;
+fun filtration_N : N;
+fun fin_N : N;
+fun finable_A : A;
+fun final_A : A;
+fun final_N : N;
+fun finale_N : N;
+fun finalist_N : N;
+fun finality_N : N;
+fun finalize_V2 : V2;
+fun finally_Adv : Adv;
+fun finance_N : N;
+fun finance_V2 : V2;
+fun financial_A : A;
+fun financially_Adv : Adv;
+fun financier_N : N;
+fun finch_N : N;
+fun find_N : N;
+fun find_V2 : V2;
+fun finder_N : N;
+fun finding_N : N;
+fun fine_A : A;
+fun fine_Adv : Adv;
+fun fine_N : N;
+fun fine_V2 : V2;
+fun fine_tooth_A : A;
+fun fineable_A : A;
+fun finely_Adv : Adv;
+fun fineness_N : N;
+fun finery_N : N;
+fun finesse_N : N;
+fun finger_N : N;
+fun finger_V2 : V2;
+fun finger_alphabet_N : N;
+fun finger_bowl_N : N;
+fun finger_plate_N : N;
+fun finger_post_N : N;
+fun fingerboard_N : N;
+fun fingermark_N : N;
+fun fingernail_N : N;
+fun fingerprint_N : N;
+fun fingerstall_N : N;
+fun fingertip_N : N;
+fun finical_A : A;
+fun finicky_A : A;
+fun finis_N : N;
+fun finish_N : N;
+fun finish_V : V;
+fun finish_V2 : V2;
+fun finite_A : A;
+fun finland_PN : PN;
+fun finn_N : N;
+fun finnan_N : N;
+fun finnan_haddie_N : N;
+fun finnan_haddock_N : N;
+fun finnish_A : A;
+fun finnish_N : N;
+fun fiona_PN : PN;
+fun fiord_N : N;
+fun fir_N : N;
+fun fir_cone_N : N;
+fun fire_N : N;
+fun fire_V : V;
+fun fire_V2 : V2;
+fun fire_alarm_N : N;
+fun fire_brigade_N : N;
+fun fire_control_N : N;
+fun fire_eater_N : N;
+fun fire_engine_N : N;
+fun fire_escape_N : N;
+fun fire_extinguisher_N : N;
+fun fire_fighter_N : N;
+fun fire_hose_N : N;
+fun fire_power_N : N;
+fun fire_raising_N : N;
+fun fire_walker_N : N;
+fun fire_walking_N : N;
+fun fire_watcher_N : N;
+fun fire_watching_N : N;
+fun firearm_N : N;
+fun fireball_N : N;
+fun firebird_N : N;
+fun firebomb_N : N;
+fun firebox_N : N;
+fun firebrand_N : N;
+fun firebreak_N : N;
+fun firebrick_N : N;
+fun firebug_N : N;
+fun fireclay_N : N;
+fun firecracker_N : N;
+fun firedamp_N : N;
+fun firedog_N : N;
+fun firefly_N : N;
+fun fireguard_N : N;
+fun firelight_N : N;
+fun firelighter_N : N;
+fun fireman_N : N;
+fun firenze_PN : PN;
+fun fireplace_N : N;
+fun fireproof_A : A;
+fun fireside_N : N;
+fun firestone_N : N;
+fun firewater_N : N;
+fun firewood_N : N;
+fun firework_N : N;
+fun firing_line_N : N;
+fun firing_party_N : N;
+fun firing_squad_N : N;
+fun firkin_N : N;
+fun firm_A : A;
+fun firm_Adv : Adv;
+fun firm_N : N;
+fun firm_V : V;
+fun firm_V2 : V2;
+fun firmament_N : N;
+fun firmly_Adv : Adv;
+fun firmness_N : N;
+fun first_class_A : A;
+fun first_class_Adv : Adv;
+fun first_hand_A : A;
+fun first_hand_Adv : Adv;
+fun first_nighter_N : N;
+fun first_rate_A : A;
+fun first_rate_Adv : Adv;
+fun firstborn_A : A;
+fun firstborn_N : N;
+fun firstly_Adv : Adv;
+fun firth_N : N;
+fun fiscal_A : A;
+fun fish_N : N;
+fun fish_V : V;
+fun fish_V2 : V2;
+fun fish_hook_N : N;
+fun fish_knife_N : N;
+fun fish_slice_N : N;
+fun fishball_N : N;
+fun fishbone_N : N;
+fun fishcake_N : N;
+fun fisher_N : N;
+fun fisherman_N : N;
+fun fishery_N : N;
+fun fishing_N : N;
+fun fishing_line_N : N;
+fun fishing_rod_N : N;
+fun fishing_tackle_N : N;
+fun fishmonger_N : N;
+fun fishpaste_N : N;
+fun fishplate_N : N;
+fun fishwife_N : N;
+fun fishy_A : A;
+fun fissile_A : A;
+fun fission_N : N;
+fun fissionable_A : A;
+fun fissiparous_A : A;
+fun fissure_N : N;
+fun fist_N : N;
+fun fistula_N : N;
+fun fit_A : A;
+fun fit_N : N;
+fun fit_V : V;
+fun fit_V2 : V2;
+fun fitful_A : A;
+fun fitfully_Adv : Adv;
+fun fitly_Adv : Adv;
+fun fitment_N : N;
+fun fitness_N : N;
+fun fitter_N : N;
+fun fitting_A : A;
+fun fitting_N : N;
+fun fivefold_A : A;
+fun fivepence_N : N;
+fun fivepenny_A : A;
+fun fiver_N : N;
+fun fives_N : N;
+fun fix_N : N;
+fun fix_V : V;
+fun fix_V2 : V2;
+fun fixate_V2 : V2;
+fun fixation_N : N;
+fun fixative_N : N;
+fun fixed_A : A;
+fun fixedly_Adv : Adv;
+fun fixture_N : N;
+fun fizz_N : N;
+fun fizz_V : V;
+fun fizzle_V : V;
+fun fizzy_A : A;
+fun fjord_N : N;
+fun flabbergast_V2 : V2;
+fun flabbily_Adv : Adv;
+fun flabbiness_N : N;
+fun flabby_A : A;
+fun flaccid_A : A;
+fun flaccidity_N : N;
+fun flag_N : N;
+fun flag_V : V;
+fun flag_V2 : V2;
+fun flag_captain_N : N;
+fun flag_day_N : N;
+fun flagellant_N : N;
+fun flagellate_V2 : V2;
+fun flagellation_N : N;
+fun flageolet_N : N;
+fun flagon_N : N;
+fun flagpole_N : N;
+fun flagrant_A : A;
+fun flagrantly_Adv : Adv;
+fun flagship_N : N;
+fun flagstaff_N : N;
+fun flagstone_N : N;
+fun flail_N : N;
+fun flail_V2 : V2;
+fun flair_N : N;
+fun flak_N : N;
+fun flake_N : N;
+fun flake_V : V;
+fun flakiness_N : N;
+fun flaky_A : A;
+fun flambeau_N : N;
+fun flamboyance_N : N;
+fun flamboyant_A : A;
+fun flamboyantly_Adv : Adv;
+fun flame_N : N;
+fun flame_V : V;
+fun flamethrower_N : N;
+fun flaming_A : A;
+fun flamingo_N : N;
+fun flammable_A : A;
+fun flan_N : N;
+fun flange_N : N;
+fun flank_N : N;
+fun flank_V2 : V2;
+fun flannel_N : N;
+fun flannelette_N : N;
+fun flap_N : N;
+fun flap_V : V;
+fun flap_V2 : V2;
+fun flapjack_N : N;
+fun flapper_N : N;
+fun flare_N : N;
+fun flare_V : V;
+fun flare_V2 : V2;
+fun flare_path_N : N;
+fun flare_up_N : N;
+fun flash_N : N;
+fun flash_V : V;
+fun flash_V2 : V2;
+fun flashback_N : N;
+fun flashbulb_N : N;
+fun flashgun_N : N;
+fun flashily_Adv : Adv;
+fun flashlight_N : N;
+fun flashpoint_N : N;
+fun flashy_A : A;
+fun flask_N : N;
+fun flat_A : A;
+fun flat_Adv : Adv;
+fun flat_N : N;
+fun flat_bottomed_A : A;
+fun flat_car_N : N;
+fun flat_footed_A : A;
+fun flat_iron_N : N;
+fun flatfish_N : N;
+fun flatlet_N : N;
+fun flatly_Adv : Adv;
+fun flatness_N : N;
+fun flatten_V : V;
+fun flatten_V2 : V2;
+fun flatter_V2 : V2;
+fun flatterer_N : N;
+fun flattery_N : N;
+fun flattop_N : N;
+fun flatulence_N : N;
+fun flaunt_V : V;
+fun flaunt_V2 : V2;
+fun flautist_N : N;
+fun flavour_N : N;
+fun flavour_V2 : V2;
+fun flavouring_N : N;
+fun flavourless_A : A;
+fun flaw_N : N;
+fun flawed_A : A;
+fun flawless_A : A;
+fun flawlessly_Adv : Adv;
+fun flax_N : N;
+fun flaxen_A : A;
+fun flay_V2 : V2;
+fun flea_N : N;
+fun flea_bite_N : N;
+fun flea_bitten_A : A;
+fun fleapit_N : N;
+fun fleck_N : N;
+fun fleck_V2 : V2;
+fun fledged_A : A;
+fun fledgeling_N : N;
+fun fledgling_N : N;
+fun flee_V : V;
+fun flee_V2 : V2;
+fun fleece_N : N;
+fun fleece_V2 : V2;
+fun fleecy_A : A;
+fun fleet_A : A;
+fun fleet_N : N;
+fun fleet_PN : PN;
+fun fleet_street_PN : PN;
+fun fleeting_A : A;
+fun fleetly_Adv : Adv;
+fun fleetness_N : N;
+fun fleetwood_PN : PN;
+fun flemish_A : A;
+fun flemish_N : N;
+fun flesh_N : N;
+fun flesh_wound_N : N;
+fun fleshly_A : A;
+fun fleshy_A : A;
+fun fleur_de_lis_N : N;
+fun fleur_de_lys_N : N;
+fun flex_N : N;
+fun flex_V2 : V2;
+fun flexibility_N : N;
+fun flexible_A : A;
+fun flexibly_Adv : Adv;
+fun flibbertigibbet_N : N;
+fun flick_N : N;
+fun flick_V2 : V2;
+fun flick_knife_N : N;
+fun flicker_N : N;
+fun flicker_V : V;
+fun flier_N : N;
+fun flight_N : N;
+fun flight_V2 : V2;
+fun flightless_A : A;
+fun flighty_A : A;
+fun flimsily_Adv : Adv;
+fun flimsiness_N : N;
+fun flimsy_A : A;
+fun flimsy_N : N;
+fun flinch_V : V;
+fun fling_N : N;
+fun fling_V : V;
+fun fling_V2 : V2;
+fun flint_N : N;
+fun flint_PN : PN;
+fun flintstone_N : N;
+fun flinty_A : A;
+fun flip_A : A;
+fun flip_N : N;
+fun flip_V : V;
+fun flip_V2 : V2;
+fun flippancy_N : N;
+fun flippant_A : A;
+fun flippantly_Adv : Adv;
+fun flipper_N : N;
+fun flirt_N : N;
+fun flirt_V : V;
+fun flirtation_N : N;
+fun flirtatious_A : A;
+fun flit_N : N;
+fun flit_V : V;
+fun float_N : N;
+fun float_V : V;
+fun float_V2 : V2;
+fun floatation_N : N;
+fun floating_A : A;
+fun flock_N : N;
+fun flock_V : V;
+fun floe_N : N;
+fun flog_V2 : V2;
+fun flogging_N : N;
+fun flood_N : N;
+fun flood_V : V;
+fun flood_V2 : V2;
+fun flood_tide_N : N;
+fun floodgate_N : N;
+fun floodlight_V2 : V2;
+fun floor_N : N;
+fun floor_V2 : V2;
+fun floor_walker_N : N;
+fun floorboard_N : N;
+fun flooring_N : N;
+fun floozie_N : N;
+fun floozy_N : N;
+fun flop_Adv : Adv;
+fun flop_N : N;
+fun flop_V : V;
+fun flop_V2 : V2;
+fun floppy_A : A;
+fun flora_PN : PN;
+fun floral_A : A;
+fun florence_PN : PN;
+fun floriculture_N : N;
+fun florid_A : A;
+fun florida_PN : PN;
+fun floridly_Adv : Adv;
+fun florin_N : N;
+fun florist_N : N;
+fun florrie_PN : PN;
+fun floss_N : N;
+fun flotation_N : N;
+fun flotilla_N : N;
+fun flotsam_N : N;
+fun flounce_N : N;
+fun flounce_V : V;
+fun flounce_V2 : V2;
+fun flounder_N : N;
+fun flounder_V : V;
+fun flour_N : N;
+fun flour_V2 : V2;
+fun flourish_N : N;
+fun flourish_V : V;
+fun flourish_V2 : V2;
+fun floury_A : A;
+fun flout_V2 : V2;
+fun flow_N : N;
+fun flow_V : V;
+fun flower_N : N;
+fun flower_V : V;
+fun flower_girl_N : N;
+fun flowerbed_N : N;
+fun flowered_A : A;
+fun flowerless_A : A;
+fun flowerpot_N : N;
+fun flowery_A : A;
+fun flu_N : N;
+fun fluctuate_V : V;
+fun fluctuation_N : N;
+fun flue_N : N;
+fun fluency_N : N;
+fun fluent_A : A;
+fun fluently_Adv : Adv;
+fun fluff_N : N;
+fun fluff_V2 : V2;
+fun fluffy_A : A;
+fun fluid_A : A;
+fun fluid_N : N;
+fun fluidity_N : N;
+fun fluke_N : N;
+fun flume_N : N;
+fun flummox_V2 : V2;
+fun flunk_V : V;
+fun flunk_V2 : V2;
+fun flunkey_N : N;
+fun flunky_N : N;
+fun fluorescence_N : N;
+fun fluorescent_A : A;
+fun fluoridate_V2 : V2;
+fun fluoridation_N : N;
+fun fluoride_N : N;
+fun fluoridization_N : N;
+fun fluoridize_V2 : V2;
+fun fluorine_N : N;
+fun flurry_N : N;
+fun flurry_V2 : V2;
+fun flush_A : A;
+fun flush_N : N;
+fun flush_V : V;
+fun flush_V2 : V2;
+fun fluster_N : N;
+fun fluster_V2 : V2;
+fun flute_N : N;
+fun flute_V : V;
+fun flute_V2 : V2;
+fun fluting_N : N;
+fun flutist_N : N;
+fun flutter_N : N;
+fun flutter_V : V;
+fun flutter_V2 : V2;
+fun fluvial_A : A;
+fun flux_N : N;
+fun fly_A : A;
+fun fly_N : N;
+fun fly_V : V;
+fun fly_V2 : V2;
+fun fly_fish_V : V;
+fun fly_fishing_N : N;
+fun fly_swat_N : N;
+fun fly_swatter_N : N;
+fun flyblown_A : A;
+fun flycatcher_N : N;
+fun flyer_N : N;
+fun flying_A : A;
+fun flying_bomb_N : N;
+fun flying_fish_N : N;
+fun flying_fox_N : N;
+fun flying_squad_N : N;
+fun flyleaf_N : N;
+fun flyover_N : N;
+fun flypaper_N : N;
+fun flypast_N : N;
+fun flytrap_N : N;
+fun flyweight_N : N;
+fun flywheel_N : N;
+fun fm_N : N;
+fun fo'c'sle_N : N;
+fun fo_N : N;
+fun foal_N : N;
+fun foal_V : V;
+fun foam_N : N;
+fun foam_V : V;
+fun foam_rubber_N : N;
+fun foamy_A : A;
+fun fob_V2 : V2;
+fun focal_A : A;
+fun focus_N : N;
+fun focus_V : V;
+fun focus_V2 : V2;
+fun fodder_N : N;
+fun foe_N : N;
+fun foetal_A : A;
+fun foetus_N : N;
+fun fog_N : N;
+fun fog_V2 : V2;
+fun fogbank_N : N;
+fun fogbound_A : A;
+fun fogey_N : N;
+fun foggia_PN : PN;
+fun foggy_A : A;
+fun foghorn_N : N;
+fun foglamp_N : N;
+fun fogsignal_N : N;
+fun foible_N : N;
+fun foil_N : N;
+fun foil_V2 : V2;
+fun foist_V2 : V2;
+fun fold_N : N;
+fun fold_V : V;
+fun fold_V2 : V2;
+fun folder_N : N;
+fun foliage_N : N;
+fun folio_N : N;
+fun folk_N : N;
+fun folk_dance_N : N;
+fun folkestone_PN : PN;
+fun folklore_N : N;
+fun folksong_N : N;
+fun folksy_A : A;
+fun folktale_N : N;
+fun follow_V : V;
+fun follow_V2 : V2;
+fun follow_on_N : N;
+fun follow_through_N : N;
+fun follow_up_N : N;
+fun follower_N : N;
+fun following_A : A;
+fun following_N : N;
+fun folly_N : N;
+fun foment_V2 : V2;
+fun fomentation_N : N;
+fun fond_A : A;
+fun fondant_N : N;
+fun fondle_V2 : V2;
+fun fondly_Adv : Adv;
+fun fondness_N : N;
+fun font_N : N;
+fun foochow_PN : PN;
+fun food_N : N;
+fun foodless_A : A;
+fun foodstuff_N : N;
+fun fool_N : N;
+fun fool_V : V;
+fun fool_V2 : V2;
+fun foolery_N : N;
+fun foolhardiness_N : N;
+fun foolhardy_A : A;
+fun foolish_A : A;
+fun foolishly_Adv : Adv;
+fun foolishness_N : N;
+fun foolproof_A : A;
+fun foolscap_N : N;
+fun foot_N : N;
+fun foot_V : V;
+fun foot_V2 : V2;
+fun foot_and_mouth_A : A;
+fun foot_and_mouth_N : N;
+fun foot_bath_N : N;
+fun foot_pound_N : N;
+fun foot_race_N : N;
+fun foot_rot_N : N;
+fun footage_N : N;
+fun football_N : N;
+fun footballer_N : N;
+fun footboard_N : N;
+fun footbridge_N : N;
+fun footed_A : A;
+fun footer_N : N;
+fun footfall_N : N;
+fun footfault_N : N;
+fun foothold_N : N;
+fun footing_N : N;
+fun footle_V : V;
+fun footle_V2 : V2;
+fun footling_A : A;
+fun footloose_A : A;
+fun footman_N : N;
+fun footmark_N : N;
+fun footnote_N : N;
+fun footpath_N : N;
+fun footplate_N : N;
+fun footprint_N : N;
+fun footslog_V : V;
+fun footslogger_N : N;
+fun footsore_A : A;
+fun footstep_N : N;
+fun footstool_N : N;
+fun footsure_A : A;
+fun footwear_N : N;
+fun footwork_N : N;
+fun fop_N : N;
+fun foppish_A : A;
+fun forage_N : N;
+fun forage_V : V;
+fun foray_N : N;
+fun foray_V : V;
+fun forbear_N : N;
+fun forbear_V : V;
+fun forbear_V2 : V2;
+fun forbearance_N : N;
+fun forbid_V2 : V2;
+fun forbidding_A : A;
+fun forbiddingly_Adv : Adv;
+fun force_N : N;
+fun force_V2 : V2;
+fun force_feed_V2 : V2;
+fun force_land_V : V;
+fun force_land_V2 : V2;
+fun force_majeure_N : N;
+fun forceful_A : A;
+fun forcefully_Adv : Adv;
+fun forcefulness_N : N;
+fun forcemeat_N : N;
+fun forcible_A : A;
+fun forcibly_Adv : Adv;
+fun ford_N : N;
+fun ford_V2 : V2;
+fun fordable_A : A;
+fun fore_A : A;
+fun fore_Adv : Adv;
+fun fore_N : N;
+fun forearm_N : N;
+fun forearm_V2 : V2;
+fun forebode_V2 : V2;
+fun foreboding_N : N;
+fun forecast_N : N;
+fun forecast_V2 : V2;
+fun forecaster_N : N;
+fun forecastle_N : N;
+fun foreclose_V : V;
+fun foreclose_V2 : V2;
+fun foreclosure_N : N;
+fun forecourt_N : N;
+fun foredoom_V2 : V2;
+fun forefather_N : N;
+fun forefinger_N : N;
+fun forefoot_N : N;
+fun forefront_N : N;
+fun foregather_V : V;
+fun forego_V : V;
+fun forego_V2 : V2;
+fun foregoing_A : A;
+fun foregone_A : A;
+fun foreground_N : N;
+fun forehand_A : A;
+fun forehead_N : N;
+fun foreign_A : A;
+fun foreigner_N : N;
+fun foreknow_V : V;
+fun foreknow_V2 : V2;
+fun foreknowledge_N : N;
+fun foreland_N : N;
+fun foreleg_N : N;
+fun forelock_N : N;
+fun foreman_N : N;
+fun foremast_N : N;
+fun foremost_A : A;
+fun foremost_Adv : Adv;
+fun forename_N : N;
+fun forenoon_N : N;
+fun forensic_A : A;
+fun foreordain_V2 : V2;
+fun forerunner_N : N;
+fun foresail_N : N;
+fun foresee_V2 : V2;
+fun foreseeable_A : A;
+fun foreshadow_V2 : V2;
+fun foreshore_N : N;
+fun foreshorten_V2 : V2;
+fun foresight_N : N;
+fun foreskin_N : N;
+fun forest_N : N;
+fun forestall_V2 : V2;
+fun forester_N : N;
+fun forestry_N : N;
+fun foreswear_V2 : V2;
+fun foretaste_N : N;
+fun foretell_V2 : V2;
+fun forethought_N : N;
+fun foretop_N : N;
+fun forever_Adv : Adv;
+fun forewarn_V2 : V2;
+fun forewoman_N : N;
+fun foreword_N : N;
+fun forfar_PN : PN;
+fun forfeit_N : N;
+fun forfeit_V2 : V2;
+fun forfeiture_N : N;
+fun forgather_V : V;
+fun forge_N : N;
+fun forge_V : V;
+fun forge_V2 : V2;
+fun forger_N : N;
+fun forgery_N : N;
+fun forget_V : V;
+fun forget_V2 : V2;
+fun forget_me_not_N : N;
+fun forgetful_A : A;
+fun forgetfully_Adv : Adv;
+fun forgetfulness_N : N;
+fun forging_N : N;
+fun forgivable_A : A;
+fun forgivably_Adv : Adv;
+fun forgive_V : V;
+fun forgive_V2 : V2;
+fun forgiveness_N : N;
+fun forgiving_A : A;
+fun forgivingly_Adv : Adv;
+fun forgo_V2 : V2;
+fun fork_N : N;
+fun fork_V : V;
+fun fork_V2 : V2;
+fun forked_A : A;
+fun forli_PN : PN;
+fun forlorn_A : A;
+fun forlornly_Adv : Adv;
+fun forlornness_N : N;
+fun form_N : N;
+fun form_V : V;
+fun form_V2 : V2;
+fun formal_A : A;
+fun formaldehyde_N : N;
+fun formalin_N : N;
+fun formalism_N : N;
+fun formality_N : N;
+fun formalize_V2 : V2;
+fun formally_Adv : Adv;
+fun format_N : N;
+fun formation_N : N;
+fun formative_A : A;
+fun formby_PN : PN;
+fun former_A : A;
+fun formerly_Adv : Adv;
+fun formic_A : A;
+fun formica_N : N;
+fun formidable_A : A;
+fun formidably_Adv : Adv;
+fun formless_A : A;
+fun formlessly_Adv : Adv;
+fun formosa_PN : PN;
+fun formula_N : N;
+fun formulate_V2 : V2;
+fun formulation_N : N;
+fun fornicate_V : V;
+fun fornication_N : N;
+fun forrader_Adv : Adv;
+fun forsake_V2 : V2;
+fun forsooth_Adv : Adv;
+fun forswear_V2 : V2;
+fun forsythia_N : N;
+fun fort_N : N;
+fun fort_lauderdale_PN : PN;
+fun fort_william_PN : PN;
+fun fort_worth_PN : PN;
+fun fortaleza_PN : PN;
+fun forte_A : A;
+fun forte_Adv : Adv;
+fun forte_N : N;
+fun forth_Adv : Adv;
+fun forthcoming_A : A;
+fun forthright_A : A;
+fun forthwith_Adv : Adv;
+fun fortieth_A : A;
+fun fortieth_N : N;
+fun fortification_N : N;
+fun fortify_V2 : V2;
+fun fortissimo_A : A;
+fun fortissimo_Adv : Adv;
+fun fortitude_N : N;
+fun fortnight_N : N;
+fun fortnightly_A : A;
+fun fortnightly_Adv : Adv;
+fun fortress_N : N;
+fun fortuitous_A : A;
+fun fortuitously_Adv : Adv;
+fun fortunate_A : A;
+fun fortunately_Adv : Adv;
+fun fortune_N : N;
+fun forty_A : A;
+fun forty_N : N;
+fun fortyish_A : A;
+fun forum_N : N;
+fun forward_A : A;
+fun forward_Adv : Adv;
+fun forward_N : N;
+fun forward_V2 : V2;
+fun forwardness_N : N;
+fun forwards_Adv : Adv;
+fun fosse_N : N;
+fun fossil_N : N;
+fun fossilization_N : N;
+fun fossilize_V : V;
+fun fossilize_V2 : V2;
+fun foster_V2 : V2;
+fun foster_brother_N : N;
+fun foster_child_N : N;
+fun foster_father_N : N;
+fun foster_mother_N : N;
+fun foster_parent_N : N;
+fun foster_sister_N : N;
+fun foul_A : A;
+fun foul_N : N;
+fun foul_V : V;
+fun foul_V2 : V2;
+fun foul_mouthed_A : A;
+fun foul_spoken_A : A;
+fun foully_Adv : Adv;
+fun foulness_N : N;
+fun found_V2 : V2;
+fun foundation_N : N;
+fun foundation_stone_N : N;
+fun founder_N : N;
+fun founder_V : V;
+fun founder_V2 : V2;
+fun foundling_N : N;
+fun foundress_N : N;
+fun foundry_N : N;
+fun fount_N : N;
+fun fountain_N : N;
+fun fountain_head_N : N;
+fun fountain_pen_N : N;
+fun four_in_hand_N : N;
+fun four_part_A : A;
+fun four_ply_A : A;
+fun four_poster_N : N;
+fun four_pounder_N : N;
+fun four_wheeler_N : N;
+fun fourfold_A : A;
+fun fourfold_Adv : Adv;
+fun fourpence_N : N;
+fun fourpenny_A : A;
+fun fourscore_A : A;
+fun fourscore_N : N;
+fun foursome_N : N;
+fun foursquare_A : A;
+fun fowey_PN : PN;
+fun fowl_N : N;
+fun fowl_V : V;
+fun fowl_run_N : N;
+fun fowler_N : N;
+fun fowlingpiece_N : N;
+fun fowlpest_N : N;
+fun fox_N : N;
+fun fox_V2 : V2;
+fun fox_terrier_N : N;
+fun foxglove_N : N;
+fun foxhole_N : N;
+fun foxhound_N : N;
+fun foxhunt_N : N;
+fun foxhunt_V : V;
+fun foxhunter_N : N;
+fun foxtrot_N : N;
+fun foxy_A : A;
+fun foyer_N : N;
+fun fr_PN : PN;
+fun fracas_N : N;
+fun fraction_N : N;
+fun fractional_A : A;
+fun fractious_A : A;
+fun fractiously_Adv : Adv;
+fun fractiousness_N : N;
+fun fracture_N : N;
+fun fracture_V : V;
+fun fracture_V2 : V2;
+fun fragile_A : A;
+fun fragility_N : N;
+fun fragment_N : N;
+fun fragment_V : V;
+fun fragmentary_A : A;
+fun fragmentation_N : N;
+fun fragrance_N : N;
+fun fragrant_A : A;
+fun frail_A : A;
+fun frailty_N : N;
+fun frame_N : N;
+fun frame_V : V;
+fun frame_V2 : V2;
+fun frame_up_N : N;
+fun framework_N : N;
+fun frampton_cotterell_PN : PN;
+fun fran_PN : PN;
+fun franc_N : N;
+fun france_PN : PN;
+fun frances_PN : PN;
+fun franchise_N : N;
+fun francis_PN : PN;
+fun franciscan_A : A;
+fun franciscan_N : N;
+fun frank_A : A;
+fun frank_N : N;
+fun frank_PN : PN;
+fun frank_V2 : V2;
+fun frankfurt_PN : PN;
+fun frankfurter_N : N;
+fun frankie_PN : PN;
+fun frankincense_N : N;
+fun franking_machine_N : N;
+fun franklin_N : N;
+fun frankly_Adv : Adv;
+fun frankness_N : N;
+fun frantic_A : A;
+fun frantically_Adv : Adv;
+fun fraserburgh_PN : PN;
+fun fraternal_A : A;
+fun fraternally_Adv : Adv;
+fun fraternity_N : N;
+fun fraternization_N : N;
+fun fraternize_V : V;
+fun fratricide_N : N;
+fun frau_N : N;
+fun fraud_N : N;
+fun fraudulent_A : A;
+fun fraudulently_Adv : Adv;
+fun fraught_A : A;
+fun fray_N : N;
+fun fray_V : V;
+fun fray_V2 : V2;
+fun frazzle_N : N;
+fun freak_N : N;
+fun freak_V : V;
+fun freak_V2 : V2;
+fun freak_out_N : N;
+fun freakish_A : A;
+fun freakishly_Adv : Adv;
+fun freakishness_N : N;
+fun freaky_A : A;
+fun freckle_N : N;
+fun freckle_V : V;
+fun freckle_V2 : V2;
+fun freckleton_PN : PN;
+fun fred_PN : PN;
+fun freda_PN : PN;
+fun freddie_PN : PN;
+fun freddy_PN : PN;
+fun frederick_PN : PN;
+fun frederiksberg_PN : PN;
+fun free_A : A;
+fun free_V2 : V2;
+fun free_and_easy_A : A;
+fun free_for_all_N : N;
+fun free_handed_A : A;
+fun free_list_N : N;
+fun free_liver_N : N;
+fun free_living_N : N;
+fun free_range_A : A;
+fun free_spoken_A : A;
+fun free_standing_A : A;
+fun free_thinker_N : N;
+fun free_thinking_A : A;
+fun free_thought_N : N;
+fun free_trader_N : N;
+fun freebooter_N : N;
+fun freeborn_A : A;
+fun freedman_N : N;
+fun freedom_N : N;
+fun freehand_A : A;
+fun freehold_N : N;
+fun freeholder_N : N;
+fun freelance_N : N;
+fun freelance_V : V;
+fun freely_Adv : Adv;
+fun freeman_N : N;
+fun freemason_N : N;
+fun freemasonry_N : N;
+fun freesia_N : N;
+fun freestone_N : N;
+fun freestyle_N : N;
+fun freeway_N : N;
+fun freewheel_V : V;
+fun freewill_A : A;
+fun freeze_N : N;
+fun freeze_V : V;
+fun freeze_V2 : V2;
+fun freezer_N : N;
+fun freezing_mixture_N : N;
+fun freezing_point_N : N;
+fun freiburg_PN : PN;
+fun freight_N : N;
+fun freight_V2 : V2;
+fun freight_train_N : N;
+fun freighter_N : N;
+fun freightliner_N : N;
+fun french_A : A;
+fun french_N : N;
+fun frenchman_N : N;
+fun frenchwoman_N : N;
+fun frenetic_A : A;
+fun frenzied_A : A;
+fun frenziedly_Adv : Adv;
+fun frenzy_N : N;
+fun frequency_N : N;
+fun frequent_A : A;
+fun frequent_V2 : V2;
+fun frequently_Adv : Adv;
+fun fresco_N : N;
+fun fresco_V2 : V2;
+fun fresh_A : A;
+fun fresh_Adv : Adv;
+fun freshen_V : V;
+fun freshen_V2 : V2;
+fun fresher_N : N;
+fun freshly_Adv : Adv;
+fun freshman_N : N;
+fun freshness_N : N;
+fun freshwater_A : A;
+fun freshwater_PN : PN;
+fun fret_N : N;
+fun fret_V : V;
+fun fret_V2 : V2;
+fun fretful_A : A;
+fun fretfully_Adv : Adv;
+fun fretsaw_N : N;
+fun fretwork_N : N;
+fun freudian_A : A;
+fun fri_PN : PN;
+fun friability_N : N;
+fun friable_A : A;
+fun friar_N : N;
+fun fricassee_N : N;
+fun fricassee_V2 : V2;
+fun fricative_A : A;
+fun fricative_N : N;
+fun friction_N : N;
+fun friday_N : N;
+fun friday_PN : PN;
+fun fridge_N : N;
+fun friend_N : N;
+fun friendless_A : A;
+fun friendlessness_N : N;
+fun friendliness_N : N;
+fun friendly_A : A;
+fun friendship_N : N;
+fun frier_N : N;
+fun frieze_N : N;
+fun frigate_N : N;
+fun fright_N : N;
+fun fright_V2 : V2;
+fun frighten_V2 : V2;
+fun frightened_A : A;
+fun frightening_A : A;
+fun frighteningly_Adv : Adv;
+fun frightful_A : A;
+fun frightfully_Adv : Adv;
+fun frightfulness_N : N;
+fun frigid_A : A;
+fun frigidity_N : N;
+fun frigidly_Adv : Adv;
+fun frill_N : N;
+fun frilled_A : A;
+fun frilly_A : A;
+fun fringe_N : N;
+fun fringe_V2 : V2;
+fun frinton_PN : PN;
+fun frippery_N : N;
+fun frisk_V : V;
+fun frisk_V2 : V2;
+fun friskily_Adv : Adv;
+fun frisky_A : A;
+fun frisson_N : N;
+fun fritter_N : N;
+fun fritter_V2 : V2;
+fun frivol_V : V;
+fun frivol_V2 : V2;
+fun frivolity_N : N;
+fun frivolous_A : A;
+fun frivolously_Adv : Adv;
+fun frizz_V2 : V2;
+fun frizzle_V : V;
+fun frizzle_V2 : V2;
+fun frizzy_A : A;
+fun fro_Adv : Adv;
+fun frock_N : N;
+fun frock_coat_N : N;
+fun frodsham_PN : PN;
+fun frog_N : N;
+fun frogman_N : N;
+fun frogmarch_V2 : V2;
+fun frolic_N : N;
+fun frolic_V : V;
+fun frolicsome_A : A;
+fun frome_PN : PN;
+fun frond_N : N;
+fun front_N : N;
+fun front_V : V;
+fun front_V2 : V2;
+fun front_bench_N : N;
+fun front_bencher_N : N;
+fun frontage_N : N;
+fun frontal_A : A;
+fun frontier_N : N;
+fun frontiersman_N : N;
+fun frontispiece_N : N;
+fun frost_N : N;
+fun frost_V : V;
+fun frost_V2 : V2;
+fun frost_bound_A : A;
+fun frostbite_N : N;
+fun frostbitten_A : A;
+fun frostily_Adv : Adv;
+fun frostiness_N : N;
+fun frosting_N : N;
+fun frosty_A : A;
+fun froth_N : N;
+fun froth_V : V;
+fun frothily_Adv : Adv;
+fun frothiness_N : N;
+fun frothy_A : A;
+fun froward_A : A;
+fun frown_N : N;
+fun frown_V : V;
+fun frowningly_Adv : Adv;
+fun frowsty_A : A;
+fun frowzy_A : A;
+fun frs_N : N;
+fun fructification_N : N;
+fun fructify_V : V;
+fun fructify_V2 : V2;
+fun frugal_A : A;
+fun frugality_N : N;
+fun frugally_Adv : Adv;
+fun fruit_N : N;
+fun fruit_V : V;
+fun fruit_fly_N : N;
+fun fruitcake_N : N;
+fun fruiterer_N : N;
+fun fruitful_A : A;
+fun fruitfully_Adv : Adv;
+fun fruitfulness_N : N;
+fun fruition_N : N;
+fun fruitless_A : A;
+fun fruitlessly_Adv : Adv;
+fun fruitlessness_N : N;
+fun fruity_A : A;
+fun frump_N : N;
+fun frumpish_A : A;
+fun frumpy_A : A;
+fun frustrate_V2 : V2;
+fun frustration_N : N;
+fun fry_N : N;
+fun fry_V : V;
+fun fry_V2 : V2;
+fun fry_pan_N : N;
+fun fryer_N : N;
+fun frying_pan_N : N;
+fun fraulein_N : N;
+fun ft_PN : PN;
+fun fuchsia_N : N;
+fun fuck_V : V;
+fun fuck_V2 : V2;
+fun fuck_all_N : N;
+fun fucker_N : N;
+fun fucking_A : A;
+fun fuddle_V2 : V2;
+fun fuddy_duddy_N : N;
+fun fudge_N : N;
+fun fuel_N : N;
+fun fuel_V : V;
+fun fuel_V2 : V2;
+fun fug_N : N;
+fun fuggy_A : A;
+fun fugitive_A : A;
+fun fugitive_N : N;
+fun fugue_N : N;
+fun fulcrum_N : N;
+fun fulfil_V2 : V2;
+fun fulfilment_N : N;
+fun full_A : A;
+fun full_blooded_A : A;
+fun full_blown_A : A;
+fun full_dress_A : A;
+fun full_fashioned_A : A;
+fun full_fledged_A : A;
+fun full_grown_A : A;
+fun full_length_A : A;
+fun full_page_A : A;
+fun full_scale_A : A;
+fun full_time_A : A;
+fun full_time_Adv : Adv;
+fun fullback_N : N;
+fun fuller_N : N;
+fun fullness_N : N;
+fun fully_Adv : Adv;
+fun fully_fashioned_A : A;
+fun fully_fledged_A : A;
+fun fully_grown_A : A;
+fun fulmar_N : N;
+fun fulminate_V : V;
+fun fulmination_N : N;
+fun fulsome_A : A;
+fun fulsomely_Adv : Adv;
+fun fulsomeness_N : N;
+fun fumble_V : V;
+fun fumble_V2 : V2;
+fun fumbler_N : N;
+fun fume_N : N;
+fun fume_V : V;
+fun fume_V2 : V2;
+fun fumigate_V2 : V2;
+fun fumigation_N : N;
+fun fun_N : N;
+fun function_N : N;
+fun function_V : V;
+fun functional_A : A;
+fun functionalism_N : N;
+fun functionalist_N : N;
+fun functionally_Adv : Adv;
+fun functionary_N : N;
+fun fund_N : N;
+fun fund_V2 : V2;
+fun fundamental_A : A;
+fun fundamental_N : N;
+fun fundamentalism_N : N;
+fun fundamentalist_N : N;
+fun fundamentally_Adv : Adv;
+fun funeral_N : N;
+fun funereal_A : A;
+fun funfair_N : N;
+fun fungicide_N : N;
+fun fungoid_A : A;
+fun fungous_A : A;
+fun fungus_N : N;
+fun funicular_N : N;
+fun funk_N : N;
+fun funk_V : V;
+fun funk_V2 : V2;
+fun funky_A : A;
+fun funnel_N : N;
+fun funnel_V : V;
+fun funnel_V2 : V2;
+fun funnily_Adv : Adv;
+fun funniness_N : N;
+fun funny_A : A;
+fun funny_bone_N : N;
+fun fur_N : N;
+fun furbelow_N : N;
+fun furbish_V2 : V2;
+fun furious_A : A;
+fun furiously_Adv : Adv;
+fun furl_V : V;
+fun furl_V2 : V2;
+fun furlong_N : N;
+fun furlough_N : N;
+fun furnace_N : N;
+fun furnish_V2 : V2;
+fun furniture_N : N;
+fun furore_N : N;
+fun furrier_N : N;
+fun furrow_N : N;
+fun furrow_V2 : V2;
+fun furry_A : A;
+fun furth_PN : PN;
+fun further_Adv : Adv;
+fun further_V2 : V2;
+fun furtherance_N : N;
+fun furthermore_Adv : Adv;
+fun furthermost_A : A;
+fun furthest_A : A;
+fun furthest_Adv : Adv;
+fun furtive_A : A;
+fun furtively_Adv : Adv;
+fun furtiveness_N : N;
+fun fury_N : N;
+fun furze_N : N;
+fun fuse_N : N;
+fun fuse_V : V;
+fun fuse_V2 : V2;
+fun fuselage_N : N;
+fun fushun_PN : PN;
+fun fusilier_N : N;
+fun fusillade_N : N;
+fun fusion_N : N;
+fun fuss_N : N;
+fun fuss_V : V;
+fun fuss_V2 : V2;
+fun fussily_Adv : Adv;
+fun fussiness_N : N;
+fun fusspot_N : N;
+fun fussy_A : A;
+fun fustian_N : N;
+fun fusty_A : A;
+fun futile_A : A;
+fun futility_N : N;
+fun future_A : A;
+fun future_N : N;
+fun futureless_A : A;
+fun futurism_N : N;
+fun futurist_N : N;
+fun futurity_N : N;
+fun fuze_N : N;
+fun fuzz_N : N;
+fun fuzzy_A : A;
+fun fwd_PN : PN;
+fun fete_N : N;
+fun fete_V2 : V2;
+fun fuhrer_N : N;
+fun g_man_N : N;
+fun gab_N : N;
+fun gabardine_N : N;
+fun gabble_N : N;
+fun gabble_V : V;
+fun gabble_V2 : V2;
+fun gaberdine_N : N;
+fun gable_N : N;
+fun gabled_A : A;
+fun gabon_PN : PN;
+fun gabonese_A : A;
+fun gabonese_N : N;
+fun gad_V : V;
+fun gadabout_N : N;
+fun gadfly_N : N;
+fun gadget_N : N;
+fun gadgetry_N : N;
+fun gael_N : N;
+fun gaelic_A : A;
+fun gaelic_N : N;
+fun gaff_N : N;
+fun gaffe_N : N;
+fun gaffer_N : N;
+fun gag_N : N;
+fun gag_V : V;
+fun gag_V2 : V2;
+fun gaga_A : A;
+fun gage_N : N;
+fun gage_V2 : V2;
+fun gaggle_N : N;
+fun gaiety_N : N;
+fun gaily_Adv : Adv;
+fun gain_N : N;
+fun gain_V : V;
+fun gain_V2 : V2;
+fun gainful_A : A;
+fun gainfully_Adv : Adv;
+fun gainsay_V2 : V2;
+fun gainsborough_N : N;
+fun gainsborough_PN : PN;
+fun gait_N : N;
+fun gaiter_N : N;
+fun gal_N : N;
+fun gala_N : N;
+fun galactic_A : A;
+fun galantine_N : N;
+fun galashiels_PN : PN;
+fun galaxy_N : N;
+fun gale_N : N;
+fun gall_N : N;
+fun gall_V2 : V2;
+fun gallant_A : A;
+fun gallant_N : N;
+fun gallantly_Adv : Adv;
+fun gallantry_N : N;
+fun galleon_N : N;
+fun gallery_N : N;
+fun galley_N : N;
+fun galley_proof_N : N;
+fun galley_slave_N : N;
+fun gallic_A : A;
+fun gallicism_N : N;
+fun gallivant_V : V;
+fun gallon_N : N;
+fun gallop_N : N;
+fun gallop_V : V;
+fun gallop_V2 : V2;
+fun galloway_PN : PN;
+fun gallows_bird_N : N;
+fun gallstone_N : N;
+fun gallup_PN : PN;
+fun galore_Adv : Adv;
+fun galosh_N : N;
+fun galumph_V : V;
+fun galvanic_A : A;
+fun galvanism_N : N;
+fun galvanize_V2 : V2;
+fun galway_PN : PN;
+fun gambia_PN : PN;
+fun gambian_A : A;
+fun gambian_N : N;
+fun gambit_N : N;
+fun gamble_N : N;
+fun gamble_V : V;
+fun gamble_V2 : V2;
+fun gambler_N : N;
+fun gambling_N : N;
+fun gambling_den_N : N;
+fun gamboge_N : N;
+fun gambol_N : N;
+fun gambol_V : V;
+fun game_A : A;
+fun game_N : N;
+fun game_V : V;
+fun game_V2 : V2;
+fun game_bag_N : N;
+fun game_bird_N : N;
+fun game_licence_N : N;
+fun gamecock_N : N;
+fun gamekeeper_N : N;
+fun gamely_Adv : Adv;
+fun games_master_N : N;
+fun games_mistress_N : N;
+fun gamesmanship_N : N;
+fun gaming_house_N : N;
+fun gaming_table_N : N;
+fun gamma_N : N;
+fun gammon_N : N;
+fun gammy_A : A;
+fun gamp_N : N;
+fun gamut_N : N;
+fun gamy_A : A;
+fun gander_N : N;
+fun gang_N : N;
+fun gang_V : V;
+fun ganger_N : N;
+fun gangling_A : A;
+fun ganglion_N : N;
+fun gangplank_N : N;
+fun gangrene_N : N;
+fun gangrene_V : V;
+fun gangrene_V2 : V2;
+fun gangrenous_A : A;
+fun gangster_N : N;
+fun gangway_N : N;
+fun gannet_N : N;
+fun gantry_N : N;
+fun gaol_N : N;
+fun gaol_V2 : V2;
+fun gaolbird_N : N;
+fun gaolbreak_N : N;
+fun gaoler_N : N;
+fun gap_N : N;
+fun gap_toothed_A : A;
+fun gape_N : N;
+fun gape_V : V;
+fun garage_N : N;
+fun garage_V2 : V2;
+fun garb_N : N;
+fun garb_V2 : V2;
+fun garbage_N : N;
+fun garbage_can_N : N;
+fun garble_V2 : V2;
+fun garden_N : N;
+fun garden_V : V;
+fun garden_truck_N : N;
+fun gardener_N : N;
+fun gardenia_N : N;
+fun gardening_N : N;
+fun gareth_PN : PN;
+fun garforth_PN : PN;
+fun gargantuan_A : A;
+fun gargle_N : N;
+fun gargle_V : V;
+fun gargle_V2 : V2;
+fun gargoyle_N : N;
+fun garish_A : A;
+fun garishly_Adv : Adv;
+fun garland_N : N;
+fun garland_V2 : V2;
+fun garlic_N : N;
+fun garment_N : N;
+fun garner_N : N;
+fun garner_V2 : V2;
+fun garnet_N : N;
+fun garnish_N : N;
+fun garnish_V2 : V2;
+fun garotte_N : N;
+fun garotte_V2 : V2;
+fun garret_N : N;
+fun garrison_N : N;
+fun garrison_V2 : V2;
+fun garrotte_N : N;
+fun garrotte_V2 : V2;
+fun garrowhill_PN : PN;
+fun garrulity_N : N;
+fun garrulous_A : A;
+fun garter_N : N;
+fun gary_PN : PN;
+fun gas_N : N;
+fun gas_V : V;
+fun gas_V2 : V2;
+fun gas_bracket_N : N;
+fun gas_cooker_N : N;
+fun gas_engine_N : N;
+fun gas_fitter_N : N;
+fun gas_helmet_N : N;
+fun gas_holder_N : N;
+fun gas_mask_N : N;
+fun gas_meter_N : N;
+fun gas_oven_N : N;
+fun gas_ring_N : N;
+fun gas_station_N : N;
+fun gas_stove_N : N;
+fun gasbag_N : N;
+fun gaseous_A : A;
+fun gash_N : N;
+fun gash_V2 : V2;
+fun gasification_N : N;
+fun gasify_V : V;
+fun gasify_V2 : V2;
+fun gasket_N : N;
+fun gaslight_N : N;
+fun gasmask_N : N;
+fun gasolene_N : N;
+fun gasoline_N : N;
+fun gasometer_N : N;
+fun gasp_N : N;
+fun gasp_V : V;
+fun gasp_V2 : V2;
+fun gassy_A : A;
+fun gastric_A : A;
+fun gastritis_N : N;
+fun gastronomic_A : A;
+fun gastronomy_N : N;
+fun gasworks_N : N;
+fun gate_N : N;
+fun gate_V2 : V2;
+fun gatecrash_V2 : V2;
+fun gatecrasher_N : N;
+fun gatehouse_N : N;
+fun gatepost_N : N;
+fun gateshead_PN : PN;
+fun gateway_N : N;
+fun gather_V : V;
+fun gather_V2 : V2;
+fun gatherer_N : N;
+fun gathering_N : N;
+fun gatt_N : N;
+fun gauche_A : A;
+fun gaucherie_N : N;
+fun gaucho_N : N;
+fun gaud_N : N;
+fun gaudily_Adv : Adv;
+fun gaudy_A : A;
+fun gaudy_N : N;
+fun gauge_N : N;
+fun gauge_V2 : V2;
+fun gaul_N : N;
+fun gaunt_A : A;
+fun gauntlet_N : N;
+fun gauntness_N : N;
+fun gauze_N : N;
+fun gauzy_A : A;
+fun gavel_N : N;
+fun gavin_PN : PN;
+fun gavotte_N : N;
+fun gawk_N : N;
+fun gawkiness_N : N;
+fun gawky_A : A;
+fun gawp_V : V;
+fun gay_A : A;
+fun gay_N : N;
+fun gayness_N : N;
+fun gaze_N : N;
+fun gaze_V : V;
+fun gazelle_N : N;
+fun gazette_N : N;
+fun gazette_V2 : V2;
+fun gazetteer_N : N;
+fun gazump_V : V;
+fun gazump_V2 : V2;
+fun gb_PN : PN;
+fun gcse_N : N;
+fun gcses_N : N;
+fun gdansk_PN : PN;
+fun gdn_PN : PN;
+fun gdns_PN : PN;
+fun gear_N : N;
+fun gear_V : V;
+fun gear_V2 : V2;
+fun gear_case_N : N;
+fun gearbox_N : N;
+fun gearshift_N : N;
+fun gecko_N : N;
+fun gee_gee_N : N;
+fun geezer_N : N;
+fun geiger_N : N;
+fun geisha_N : N;
+fun gel_N : N;
+fun gel_V : V;
+fun gelatin_N : N;
+fun gelatine_N : N;
+fun gelatinous_A : A;
+fun geld_V2 : V2;
+fun gelding_N : N;
+fun gelignite_N : N;
+fun gelligaer_PN : PN;
+fun gelsenkirchen_PN : PN;
+fun gem_N : N;
+fun gemini_PN : PN;
+fun gemmed_A : A;
+fun gen_N : N;
+fun gen_PN : PN;
+fun gen_V2 : V2;
+fun gendarme_N : N;
+fun gendarmerie_N : N;
+fun gender_N : N;
+fun gene_N : N;
+fun gene_PN : PN;
+fun genealogical_A : A;
+fun genealogically_Adv : Adv;
+fun genealogist_N : N;
+fun genealogy_N : N;
+fun general_A : A;
+fun general_N : N;
+fun generalissimo_N : N;
+fun generality_N : N;
+fun generalization_N : N;
+fun generalize_V : V;
+fun generalize_V2 : V2;
+fun generally_Adv : Adv;
+fun generate_V2 : V2;
+fun generation_N : N;
+fun generative_A : A;
+fun generator_N : N;
+fun generic_A : A;
+fun generically_Adv : Adv;
+fun generosity_N : N;
+fun generous_A : A;
+fun generously_Adv : Adv;
+fun genesis_N : N;
+fun genetic_A : A;
+fun genetically_Adv : Adv;
+fun geneticist_N : N;
+fun genetics_N : N;
+fun geneva_PN : PN;
+fun genial_A : A;
+fun geniality_N : N;
+fun genially_Adv : Adv;
+fun genie_N : N;
+fun genital_A : A;
+fun genitive_A : A;
+fun genius_N : N;
+fun genius_loci_N : N;
+fun genoa_PN : PN;
+fun genocide_N : N;
+fun genova_PN : PN;
+fun genre_N : N;
+fun genre_painting_N : N;
+fun gent_N : N;
+fun genteel_A : A;
+fun genteelly_Adv : Adv;
+fun gentian_N : N;
+fun gentile_A : A;
+fun gentile_N : N;
+fun gentility_N : N;
+fun gentle_A : A;
+fun gentleman_N : N;
+fun gentleman_at_arms_N : N;
+fun gentlemanly_A : A;
+fun gentleness_N : N;
+fun gentlewoman_N : N;
+fun gently_Adv : Adv;
+fun gentry_N : N;
+fun genuflect_V : V;
+fun genuflection_N : N;
+fun genuflexion_N : N;
+fun genuine_A : A;
+fun genuinely_Adv : Adv;
+fun genuineness_N : N;
+fun genus_N : N;
+fun geocentric_A : A;
+fun geoff_PN : PN;
+fun geoffrey_PN : PN;
+fun geographer_N : N;
+fun geographical_A : A;
+fun geographically_Adv : Adv;
+fun geography_N : N;
+fun geological_A : A;
+fun geologically_Adv : Adv;
+fun geologist_N : N;
+fun geology_N : N;
+fun geometric_A : A;
+fun geometrical_A : A;
+fun geometrically_Adv : Adv;
+fun geometry_N : N;
+fun geophysical_A : A;
+fun geophysics_N : N;
+fun geopolitics_N : N;
+fun george_PN : PN;
+fun georgette_N : N;
+fun georgia_PN : PN;
+fun georgian_A : A;
+fun georgian_N : N;
+fun georgie_PN : PN;
+fun gerald_PN : PN;
+fun geraldine_PN : PN;
+fun geranium_N : N;
+fun gerard_PN : PN;
+fun geriatric_A : A;
+fun geriatrician_N : N;
+fun geriatrics_N : N;
+fun germ_N : N;
+fun german_A : A;
+fun german_N : N;
+fun germane_A : A;
+fun germanic_A : A;
+fun germany_PN : PN;
+fun germicide_N : N;
+fun germinate_V : V;
+fun germinate_V2 : V2;
+fun germination_N : N;
+fun gerontology_N : N;
+fun gerry_PN : PN;
+fun gerrymander_N : N;
+fun gerrymander_V2 : V2;
+fun gertie_PN : PN;
+fun gertrude_PN : PN;
+fun gerund_N : N;
+fun gestapo_N : N;
+fun gestation_N : N;
+fun gesticulate_V : V;
+fun gesticulation_N : N;
+fun gesture_N : N;
+fun gesture_V : V;
+fun get_V : V;
+fun get_V2 : V2;
+fun get_at_able_A : A;
+fun get_together_N : N;
+fun get_up_N : N;
+fun getaway_N : N;
+fun geum_N : N;
+fun geyser_N : N;
+fun ghana_PN : PN;
+fun ghanaian_A : A;
+fun ghanaian_N : N;
+fun gharry_N : N;
+fun ghastly_A : A;
+fun ghat_N : N;
+fun ghee_N : N;
+fun ghent_PN : PN;
+fun gherkin_N : N;
+fun ghetto_N : N;
+fun ghost_N : N;
+fun ghost_V : V;
+fun ghost_V2 : V2;
+fun ghost_writer_N : N;
+fun ghostliness_N : N;
+fun ghostly_A : A;
+fun ghoul_N : N;
+fun ghoulish_A : A;
+fun ghq_PN : PN;
+fun gi_N : N;
+fun giant_N : N;
+fun giantess_N : N;
+fun gibber_V : V;
+fun gibberish_N : N;
+fun gibbet_N : N;
+fun gibbet_V2 : V2;
+fun gibbon_N : N;
+fun gibbous_A : A;
+fun gibe_N : N;
+fun gibe_V : V;
+fun gibingly_Adv : Adv;
+fun gibraltar_PN : PN;
+fun gibraltarian_A : A;
+fun gibraltarian_N : N;
+fun giddily_Adv : Adv;
+fun giddiness_N : N;
+fun giddy_A : A;
+fun giffnock_PN : PN;
+fun gift_N : N;
+fun gift_V2 : V2;
+fun gifted_A : A;
+fun gig_N : N;
+fun gigantic_A : A;
+fun giggle_N : N;
+fun giggle_V : V;
+fun gigolo_N : N;
+fun gilbert_PN : PN;
+fun gilbertian_A : A;
+fun gild_N : N;
+fun gild_V2 : V2;
+fun gilder_N : N;
+fun gilding_N : N;
+fun giles_PN : PN;
+fun gilfach_goch_PN : PN;
+fun gill_N : N;
+fun gill_PN : PN;
+fun gillian_PN : PN;
+fun gillie_N : N;
+fun gillingham_PN : PN;
+fun gilt_N : N;
+fun gilt_edged_A : A;
+fun gimcrack_A : A;
+fun gimlet_N : N;
+fun gimmick_N : N;
+fun gin_N : N;
+fun gin_V2 : V2;
+fun gina_PN : PN;
+fun ginger_N : N;
+fun ginger_V2 : V2;
+fun gingerbread_N : N;
+fun gingerly_A : A;
+fun gingerly_Adv : Adv;
+fun gingham_N : N;
+fun gingko_N : N;
+fun ginseng_N : N;
+fun gipsy_N : N;
+fun giraffe_N : N;
+fun gird_V2 : V2;
+fun girder_N : N;
+fun girdle_N : N;
+fun girdle_V2 : V2;
+fun girl_N : N;
+fun girlfriend_N : N;
+fun girlhood_N : N;
+fun girlish_A : A;
+fun girlishly_Adv : Adv;
+fun girlishness_N : N;
+fun giro_N : N;
+fun girth_N : N;
+fun girvan_PN : PN;
+fun gis_N : N;
+fun gist_N : N;
+fun give_N : N;
+fun give_V : V;
+fun give_V2 : V2;
+fun giveaway_N : N;
+fun giver_N : N;
+fun gizzard_N : N;
+fun glacial_A : A;
+fun glacier_N : N;
+fun glace_A : A;
+fun glad_A : A;
+fun gladden_V2 : V2;
+fun glade_N : N;
+fun gladiator_N : N;
+fun gladiatorial_A : A;
+fun gladiolus_N : N;
+fun gladly_Adv : Adv;
+fun gladness_N : N;
+fun gladsome_A : A;
+fun gladys_PN : PN;
+fun glamorgan_PN : PN;
+fun glamorization_N : N;
+fun glamorize_V2 : V2;
+fun glamorous_A : A;
+fun glamour_N : N;
+fun glance_N : N;
+fun glance_V : V;
+fun glance_V2 : V2;
+fun gland_N : N;
+fun glanders_N : N;
+fun glandular_A : A;
+fun glare_N : N;
+fun glare_V : V;
+fun glare_V2 : V2;
+fun glaring_A : A;
+fun glasgow_PN : PN;
+fun glass_N : N;
+fun glass_V2 : V2;
+fun glass_blower_N : N;
+fun glass_cutter_N : N;
+fun glass_wool_N : N;
+fun glassful_N : N;
+fun glasshouse_N : N;
+fun glassware_N : N;
+fun glassworks_N : N;
+fun glassy_A : A;
+fun glastonbury_PN : PN;
+fun glaswegian_A : A;
+fun glaswegian_N : N;
+fun glaucoma_N : N;
+fun glaucous_A : A;
+fun glaze_N : N;
+fun glaze_V : V;
+fun glaze_V2 : V2;
+fun glazier_N : N;
+fun gleam_N : N;
+fun gleam_V : V;
+fun glean_V : V;
+fun glean_V2 : V2;
+fun gleaner_N : N;
+fun glebe_N : N;
+fun glee_N : N;
+fun gleeful_A : A;
+fun gleefully_Adv : Adv;
+fun glen_N : N;
+fun glen_PN : PN;
+fun glengarry_N : N;
+fun glenrothes_PN : PN;
+fun glib_A : A;
+fun glibly_Adv : Adv;
+fun glibness_N : N;
+fun glide_N : N;
+fun glide_V : V;
+fun glider_N : N;
+fun gliding_N : N;
+fun glimmer_N : N;
+fun glimmer_V : V;
+fun glimpse_N : N;
+fun glimpse_V2 : V2;
+fun glint_N : N;
+fun glint_V : V;
+fun glissade_N : N;
+fun glissade_V : V;
+fun glissando_A : A;
+fun glissando_Adv : Adv;
+fun glisten_V : V;
+fun glister_N : N;
+fun glister_V : V;
+fun glitter_N : N;
+fun glitter_V : V;
+fun glittering_A : A;
+fun gloaming_N : N;
+fun gloat_V : V;
+fun gloatingly_Adv : Adv;
+fun global_A : A;
+fun globe_N : N;
+fun globetrot_V : V;
+fun globetrotter_N : N;
+fun globular_A : A;
+fun globule_N : N;
+fun glockenspiel_N : N;
+fun gloom_N : N;
+fun gloomily_Adv : Adv;
+fun gloomy_A : A;
+fun gloria_PN : PN;
+fun glorification_N : N;
+fun glorify_V2 : V2;
+fun glorious_A : A;
+fun gloriously_Adv : Adv;
+fun glory_N : N;
+fun glory_V : V;
+fun glory_hole_N : N;
+fun gloss_N : N;
+fun gloss_V2 : V2;
+fun glossary_N : N;
+fun glossily_Adv : Adv;
+fun glossiness_N : N;
+fun glossop_PN : PN;
+fun glossy_A : A;
+fun glottal_A : A;
+fun glottis_N : N;
+fun gloucester_PN : PN;
+fun gloucestershire_PN : PN;
+fun glove_N : N;
+fun glove_compartment_N : N;
+fun gloved_A : A;
+fun glow_N : N;
+fun glow_V : V;
+fun glow_worm_N : N;
+fun glower_V : V;
+fun gloweringly_Adv : Adv;
+fun glowing_A : A;
+fun glowingly_Adv : Adv;
+fun glucose_N : N;
+fun glue_N : N;
+fun glue_V2 : V2;
+fun gluey_A : A;
+fun glum_A : A;
+fun glumly_Adv : Adv;
+fun glumness_N : N;
+fun glusburn_PN : PN;
+fun glut_N : N;
+fun glut_V2 : V2;
+fun gluten_N : N;
+fun glutinous_A : A;
+fun glutton_N : N;
+fun gluttonous_A : A;
+fun gluttonously_Adv : Adv;
+fun gluttony_N : N;
+fun glycerine_N : N;
+fun gmt_PN : PN;
+fun gnarled_A : A;
+fun gnash_V : V;
+fun gnash_V2 : V2;
+fun gnat_N : N;
+fun gnaw_V : V;
+fun gnaw_V2 : V2;
+fun gnome_N : N;
+fun gnp_N : N;
+fun gnu_N : N;
+fun go_N : N;
+fun go_V : V;
+fun go_ahead_N : N;
+fun go_as_you_please_A : A;
+fun go_between_N : N;
+fun go_by_N : N;
+fun go_cart_N : N;
+fun go_getter_N : N;
+fun go_kart_N : N;
+fun go_slow_N : N;
+fun go_to_meeting_A : A;
+fun goad_N : N;
+fun goad_V2 : V2;
+fun goal_N : N;
+fun goal_kick_N : N;
+fun goal_line_N : N;
+fun goalie_N : N;
+fun goalkeeper_N : N;
+fun goalless_A : A;
+fun goalmouth_N : N;
+fun goat_N : N;
+fun goatee_N : N;
+fun goatherd_N : N;
+fun goatskin_N : N;
+fun gob_N : N;
+fun gobbet_N : N;
+fun gobble_N : N;
+fun gobble_V : V;
+fun gobble_V2 : V2;
+fun gobbledygook_N : N;
+fun gobbler_N : N;
+fun goblet_N : N;
+fun goblin_N : N;
+fun god_N : N;
+fun god_PN : PN;
+fun god_damn_A : A;
+fun god_damned_A : A;
+fun godalming_PN : PN;
+fun godchild_N : N;
+fun goddam_A : A;
+fun goddam_Adv : Adv;
+fun goddaughter_N : N;
+fun goddess_N : N;
+fun godfather_N : N;
+fun godfearing_A : A;
+fun godforsaken_A : A;
+fun godfrey_PN : PN;
+fun godhead_N : N;
+fun godless_A : A;
+fun godlessness_N : N;
+fun godlike_A : A;
+fun godliness_N : N;
+fun godly_A : A;
+fun godmanchester_PN : PN;
+fun godmother_N : N;
+fun godown_N : N;
+fun godparent_N : N;
+fun godsend_N : N;
+fun godson_N : N;
+fun godspeed_N : N;
+fun goffs_oak_PN : PN;
+fun goggle_V : V;
+fun goggle_box_N : N;
+fun goggle_eyed_A : A;
+fun going_A : A;
+fun going_N : N;
+fun going_over_N : N;
+fun goitre_N : N;
+fun golbourne_PN : PN;
+fun gold_N : N;
+fun gold_beater_N : N;
+fun gold_digger_N : N;
+fun gold_dust_N : N;
+fun gold_foil_N : N;
+fun gold_leaf_N : N;
+fun gold_plate_N : N;
+fun gold_rush_N : N;
+fun golden_A : A;
+fun goldfield_N : N;
+fun goldfinch_N : N;
+fun goldfish_N : N;
+fun goldmine_N : N;
+fun goldsmith_N : N;
+fun golf_N : N;
+fun golf_V : V;
+fun golf_ball_N : N;
+fun golf_club_N : N;
+fun golf_course_N : N;
+fun golf_links_N : N;
+fun golfer_N : N;
+fun goliath_N : N;
+fun golliwog_N : N;
+fun golosh_N : N;
+fun gondola_N : N;
+fun gondolier_N : N;
+fun goner_N : N;
+fun gong_N : N;
+fun gong_V2 : V2;
+fun gonorrhea_N : N;
+fun gonorrhoea_N : N;
+fun goo_N : N;
+fun good_A : A;
+fun good_N : N;
+fun good_fellowship_N : N;
+fun good_for_naught_A : A;
+fun good_for_naught_N : N;
+fun good_for_nothing_A : A;
+fun good_for_nothing_N : N;
+fun good_humoured_A : A;
+fun good_looking_A : A;
+fun good_natured_A : A;
+fun good_neighbourliness_N : N;
+fun good_tempered_A : A;
+fun good_time_A : A;
+fun goodbye_N : N;
+fun goodish_A : A;
+fun goodly_A : A;
+fun goodness_N : N;
+fun goodwill_N : N;
+fun goody_N : N;
+fun goody_goody_A : A;
+fun goody_goody_N : N;
+fun gooey_A : A;
+fun goof_N : N;
+fun goof_V : V;
+fun goof_V2 : V2;
+fun goofy_A : A;
+fun googly_N : N;
+fun goole_PN : PN;
+fun goon_N : N;
+fun goose_N : N;
+fun goose_flesh_N : N;
+fun goose_step_N : N;
+fun gooseberry_N : N;
+fun gopher_N : N;
+fun gordian_A : A;
+fun gordon_PN : PN;
+fun gore_N : N;
+fun gore_V2 : V2;
+fun gorge_N : N;
+fun gorge_V : V;
+fun gorge_V2 : V2;
+fun gorgeous_A : A;
+fun gorgeously_Adv : Adv;
+fun gorgon_N : N;
+fun gorgonzola_N : N;
+fun gorilla_N : N;
+fun gorky_PN : PN;
+fun gormandize_V : V;
+fun gormless_A : A;
+fun gorse_N : N;
+fun gorseinon_PN : PN;
+fun gory_A : A;
+fun gosling_N : N;
+fun gospel_N : N;
+fun gosport_PN : PN;
+fun gossamer_N : N;
+fun gossip_N : N;
+fun gossip_V : V;
+fun goteborg_PN : PN;
+fun goth_N : N;
+fun gothenburg_PN : PN;
+fun gothic_A : A;
+fun gothic_N : N;
+fun gottingen_PN : PN;
+fun gouache_N : N;
+fun gouge_N : N;
+fun gouge_V2 : V2;
+fun goulash_N : N;
+fun gourd_N : N;
+fun gourmand_N : N;
+fun gourmet_N : N;
+fun gourock_PN : PN;
+fun gout_N : N;
+fun gouty_A : A;
+fun gov_PN : PN;
+fun govern_V : V;
+fun govern_V2 : V2;
+fun governance_N : N;
+fun governess_N : N;
+fun governing_A : A;
+fun government_N : N;
+fun governmental_A : A;
+fun governor_N : N;
+fun governor_general_N : N;
+fun govt_N : N;
+fun gown_N : N;
+fun gown_V2 : V2;
+fun gp's_N : N;
+fun gp_N : N;
+fun grab_N : N;
+fun grab_V : V;
+fun grab_V2 : V2;
+fun grabber_N : N;
+fun grace_N : N;
+fun grace_V2 : V2;
+fun graceful_A : A;
+fun gracefully_Adv : Adv;
+fun graceless_A : A;
+fun gracelessly_Adv : Adv;
+fun gracious_A : A;
+fun graciously_Adv : Adv;
+fun graciousness_N : N;
+fun gradation_N : N;
+fun grade_N : N;
+fun grade_V2 : V2;
+fun gradient_N : N;
+fun gradual_A : A;
+fun gradually_Adv : Adv;
+fun gradualness_N : N;
+fun graduate_N : N;
+fun graduate_V : V;
+fun graduate_V2 : V2;
+fun graduation_N : N;
+fun graffito_N : N;
+fun graft_N : N;
+fun graft_V : V;
+fun graft_V2 : V2;
+fun grail_N : N;
+fun grain_N : N;
+fun grained_A : A;
+fun gram_N : N;
+fun grammar_N : N;
+fun grammarian_N : N;
+fun grammatical_A : A;
+fun grammatically_Adv : Adv;
+fun gramme_N : N;
+fun gramophone_N : N;
+fun grampian_PN : PN;
+fun grampus_N : N;
+fun granada_PN : PN;
+fun granary_N : N;
+fun grand_A : A;
+fun grand_prix_N : N;
+fun grandad_N : N;
+fun grandaunt_N : N;
+fun grandchild_N : N;
+fun granddad_N : N;
+fun granddaughter_N : N;
+fun grandee_N : N;
+fun grandeur_N : N;
+fun grandfather_N : N;
+fun grandiloquence_N : N;
+fun grandiloquent_A : A;
+fun grandiose_A : A;
+fun grandly_Adv : Adv;
+fun grandma_N : N;
+fun grandmother_N : N;
+fun grandnephew_N : N;
+fun grandniece_N : N;
+fun grandpa_N : N;
+fun grandparent_N : N;
+fun grandson_N : N;
+fun grandstand_N : N;
+fun granduncle_N : N;
+fun grange_N : N;
+fun grangemouth_PN : PN;
+fun granite_N : N;
+fun grannie_N : N;
+fun granny_N : N;
+fun grant_N : N;
+fun grant_V2 : V2;
+fun grantham_PN : PN;
+fun granular_A : A;
+fun granularity_N : N;
+fun granulate_V : V;
+fun granulate_V2 : V2;
+fun granule_N : N;
+fun grape_N : N;
+fun grape_sugar_N : N;
+fun grapefruit_N : N;
+fun grapeshot_N : N;
+fun grapevine_N : N;
+fun graph_N : N;
+fun graphic_A : A;
+fun graphical_A : A;
+fun graphically_Adv : Adv;
+fun graphics_N : N;
+fun graphite_N : N;
+fun grapnel_N : N;
+fun grapple_V : V;
+fun grappling_iron_N : N;
+fun grasp_N : N;
+fun grasp_V : V;
+fun grasp_V2 : V2;
+fun grasping_A : A;
+fun grass_N : N;
+fun grass_V : V;
+fun grass_V2 : V2;
+fun grasshopper_N : N;
+fun grassland_N : N;
+fun grassy_A : A;
+fun grate_N : N;
+fun grate_V : V;
+fun grate_V2 : V2;
+fun grateful_A : A;
+fun gratefully_Adv : Adv;
+fun gratefulness_N : N;
+fun grater_N : N;
+fun gratification_N : N;
+fun gratify_V2 : V2;
+fun gratifying_A : A;
+fun grating_N : N;
+fun gratingly_Adv : Adv;
+fun gratis_A : A;
+fun gratis_Adv : Adv;
+fun gratitude_N : N;
+fun gratuitous_A : A;
+fun gratuitously_Adv : Adv;
+fun gratuity_N : N;
+fun grave_A : A;
+fun grave_N : N;
+fun grave_V2 : V2;
+fun gravel_N : N;
+fun gravel_V2 : V2;
+fun gravelly_A : A;
+fun gravely_Adv : Adv;
+fun graven_A : A;
+fun gravenhage_PN : PN;
+fun gravesend_PN : PN;
+fun gravestone_N : N;
+fun graveyard_N : N;
+fun graving_dock_N : N;
+fun gravitate_V : V;
+fun gravitation_N : N;
+fun gravity_N : N;
+fun gravure_N : N;
+fun gravy_N : N;
+fun gravy_boat_N : N;
+fun gray_A : A;
+fun gray_N : N;
+fun gray_V : V;
+fun gray_V2 : V2;
+fun graz_PN : PN;
+fun graze_N : N;
+fun graze_V : V;
+fun graze_V2 : V2;
+fun grazier_N : N;
+fun grazing_land_N : N;
+fun grease_N : N;
+fun grease_V2 : V2;
+fun grease_gun_N : N;
+fun greasepaint_N : N;
+fun greaseproof_A : A;
+fun greaser_N : N;
+fun greasily_Adv : Adv;
+fun greasiness_N : N;
+fun greasy_A : A;
+fun great_A : A;
+fun great_harwood_PN : PN;
+fun great_malvern_PN : PN;
+fun great_shelford_PN : PN;
+fun great_yarmouth_PN : PN;
+fun greatcoat_N : N;
+fun greatly_Adv : Adv;
+fun greatness_N : N;
+fun grebe_N : N;
+fun grecian_A : A;
+fun greece_PN : PN;
+fun greed_N : N;
+fun greedily_Adv : Adv;
+fun greediness_N : N;
+fun greedy_A : A;
+fun greek_A : A;
+fun greek_N : N;
+fun green_A : A;
+fun green_N : N;
+fun greenback_N : N;
+fun greenery_N : N;
+fun greeneyed_A : A;
+fun greenfly_N : N;
+fun greengage_N : N;
+fun greengrocer_N : N;
+fun greengrocery_N : N;
+fun greenhorn_N : N;
+fun greenhouse_N : N;
+fun greenish_A : A;
+fun greenishness_N : N;
+fun greenock_PN : PN;
+fun greensward_N : N;
+fun greenwich_PN : PN;
+fun greenwood_N : N;
+fun greet_V2 : V2;
+fun greeting_N : N;
+fun greg_PN : PN;
+fun gregarious_A : A;
+fun gregariously_Adv : Adv;
+fun gregariousness_N : N;
+fun gregorian_A : A;
+fun gregory_PN : PN;
+fun gremlin_N : N;
+fun grenada_PN : PN;
+fun grenade_N : N;
+fun grenadian_A : A;
+fun grenadian_N : N;
+fun grenadier_N : N;
+fun grey_A : A;
+fun grey_N : N;
+fun grey_V : V;
+fun grey_V2 : V2;
+fun grey_headed_A : A;
+fun greybeard_N : N;
+fun greyhound_N : N;
+fun greyish_A : A;
+fun greyly_Adv : Adv;
+fun grid_N : N;
+fun griddle_N : N;
+fun gridiron_N : N;
+fun grief_N : N;
+fun grievance_N : N;
+fun grieve_V : V;
+fun grieve_V2 : V2;
+fun grievous_A : A;
+fun grievously_Adv : Adv;
+fun griffin_N : N;
+fun griffon_N : N;
+fun grill_N : N;
+fun grill_V : V;
+fun grill_V2 : V2;
+fun grille_N : N;
+fun grillroom_N : N;
+fun grim_A : A;
+fun grimace_N : N;
+fun grimace_V : V;
+fun grime_N : N;
+fun grime_V2 : V2;
+fun grimethorpe_PN : PN;
+fun grimly_Adv : Adv;
+fun grimness_N : N;
+fun grimsby_PN : PN;
+fun grimy_A : A;
+fun grin_N : N;
+fun grin_V : V;
+fun grin_V2 : V2;
+fun grind_N : N;
+fun grind_V : V;
+fun grind_V2 : V2;
+fun grinder_N : N;
+fun grindstone_N : N;
+fun grinstead_PN : PN;
+fun grip_N : N;
+fun grip_V : V;
+fun grip_V2 : V2;
+fun grippe_N : N;
+fun gripsack_N : N;
+fun grisly_A : A;
+fun grist_N : N;
+fun gristle_N : N;
+fun grit_N : N;
+fun grit_V2 : V2;
+fun grits_N : N;
+fun gritty_A : A;
+fun grizzle_V : V;
+fun grizzled_A : A;
+fun grizzly_N : N;
+fun groan_N : N;
+fun groan_V : V;
+fun groan_V2 : V2;
+fun groat_N : N;
+fun grocer_N : N;
+fun grocery_N : N;
+fun grog_N : N;
+fun groggy_A : A;
+fun groin_N : N;
+fun groin_V2 : V2;
+fun groningen_PN : PN;
+fun groom_N : N;
+fun groom_V2 : V2;
+fun groove_N : N;
+fun groove_V2 : V2;
+fun groover_N : N;
+fun groovy_A : A;
+fun grope_V : V;
+fun grope_V2 : V2;
+fun gropingly_Adv : Adv;
+fun gross_A : A;
+fun gross_N : N;
+fun gross_V2 : V2;
+fun grossly_Adv : Adv;
+fun grossness_N : N;
+fun grot_N : N;
+fun grotesque_A : A;
+fun grotesque_N : N;
+fun grotesquely_Adv : Adv;
+fun grotesqueness_N : N;
+fun grotto_N : N;
+fun grotty_A : A;
+fun grouch_N : N;
+fun grouch_V : V;
+fun grouchy_A : A;
+fun ground_N : N;
+fun ground_V : V;
+fun ground_V2 : V2;
+fun ground_bait_N : N;
+fun ground_fish_N : N;
+fun ground_plan_N : N;
+fun ground_rent_N : N;
+fun grounding_N : N;
+fun groundless_A : A;
+fun groundnut_N : N;
+fun groundsel_N : N;
+fun groundsheet_N : N;
+fun groundsman_N : N;
+fun groundwork_N : N;
+fun group_N : N;
+fun group_V : V;
+fun group_V2 : V2;
+fun grouping_N : N;
+fun grouse_N : N;
+fun grouse_V : V;
+fun grove_N : N;
+fun grovel_V : V;
+fun groveller_N : N;
+fun grow_V : V;
+fun grow_V2 : V2;
+fun grower_N : N;
+fun growl_N : N;
+fun growl_V : V;
+fun growl_V2 : V2;
+fun growler_N : N;
+fun growlingly_Adv : Adv;
+fun grown_up_A : A;
+fun grown_up_N : N;
+fun growth_N : N;
+fun groyne_N : N;
+fun grub_N : N;
+fun grub_V : V;
+fun grub_V2 : V2;
+fun grubbiness_N : N;
+fun grubby_A : A;
+fun grudge_N : N;
+fun grudge_V2 : V2;
+fun grudgingly_Adv : Adv;
+fun gruel_N : N;
+fun gruelling_A : A;
+fun gruesome_A : A;
+fun gruesomely_Adv : Adv;
+fun gruesomeness_N : N;
+fun gruff_A : A;
+fun gruffly_Adv : Adv;
+fun gruffness_N : N;
+fun grumble_N : N;
+fun grumble_V : V;
+fun grumble_V2 : V2;
+fun grumbler_N : N;
+fun grumpily_Adv : Adv;
+fun grumpiness_N : N;
+fun grumpy_A : A;
+fun grundyism_N : N;
+fun grunt_N : N;
+fun grunt_V : V;
+fun grunt_V2 : V2;
+fun gryphon_N : N;
+fun guadalajara_PN : PN;
+fun guano_N : N;
+fun guarantee_N : N;
+fun guarantee_V2 : V2;
+fun guarantor_N : N;
+fun guaranty_N : N;
+fun guard_N : N;
+fun guard_V : V;
+fun guard_V2 : V2;
+fun guard_boat_N : N;
+fun guarded_A : A;
+fun guardedly_Adv : Adv;
+fun guardhouse_N : N;
+fun guardian_N : N;
+fun guardianship_N : N;
+fun guardrail_N : N;
+fun guardroom_N : N;
+fun guardship_N : N;
+fun guardsman_N : N;
+fun guatemala_PN : PN;
+fun guatemala_city_PN : PN;
+fun guatemalan_A : A;
+fun guatemalan_N : N;
+fun guava_N : N;
+fun guayaquil_PN : PN;
+fun gudgeon_N : N;
+fun guelder_rose_N : N;
+fun guerilla_N : N;
+fun guerrilla_N : N;
+fun guess_N : N;
+fun guess_V : V;
+fun guess_V2 : V2;
+fun guesstimate_N : N;
+fun guesswork_N : N;
+fun guest_N : N;
+fun guest_night_N : N;
+fun guesthouse_N : N;
+fun guestroom_N : N;
+fun guffaw_N : N;
+fun guffaw_V : V;
+fun guidance_N : N;
+fun guide_N : N;
+fun guide_V2 : V2;
+fun guidebook_N : N;
+fun guideline_N : N;
+fun guild_N : N;
+fun guild_hall_N : N;
+fun guilder_N : N;
+fun guildford_PN : PN;
+fun guildhall_N : N;
+fun guile_N : N;
+fun guileful_A : A;
+fun guileless_A : A;
+fun guillemot_N : N;
+fun guillotine_N : N;
+fun guillotine_V2 : V2;
+fun guilt_N : N;
+fun guiltily_Adv : Adv;
+fun guiltiness_N : N;
+fun guiltless_A : A;
+fun guilty_A : A;
+fun guinea_N : N;
+fun guinea_PN : PN;
+fun guinea_fowl_N : N;
+fun guinea_pig_N : N;
+fun guinean_A : A;
+fun guinean_N : N;
+fun guinness_N : N;
+fun guisborough_PN : PN;
+fun guise_N : N;
+fun guitar_N : N;
+fun guitarist_N : N;
+fun gulch_N : N;
+fun gulden_N : N;
+fun gulf_N : N;
+fun gull_N : N;
+fun gull_V2 : V2;
+fun gullet_N : N;
+fun gullibility_N : N;
+fun gullible_A : A;
+fun gully_N : N;
+fun gulp_N : N;
+fun gulp_V : V;
+fun gulp_V2 : V2;
+fun gum_N : N;
+fun gum_V2 : V2;
+fun gumbo_N : N;
+fun gumboil_N : N;
+fun gumboot_N : N;
+fun gummy_A : A;
+fun gumption_N : N;
+fun gumshoe_N : N;
+fun gun_N : N;
+fun gun_V2 : V2;
+fun gun_carriage_N : N;
+fun gunboat_N : N;
+fun guncotton_N : N;
+fun gundog_N : N;
+fun gunfire_N : N;
+fun gunman_N : N;
+fun gunmetal_N : N;
+fun gunner_N : N;
+fun gunnery_N : N;
+fun gunny_N : N;
+fun gunplay_N : N;
+fun gunpoint_N : N;
+fun gunpowder_N : N;
+fun gunroom_N : N;
+fun gunrunner_N : N;
+fun gunrunning_N : N;
+fun gunshot_N : N;
+fun gunsmith_N : N;
+fun gunwale_N : N;
+fun gurgle_N : N;
+fun gurgle_V : V;
+fun gurkha_N : N;
+fun guru_N : N;
+fun gush_N : N;
+fun gush_V : V;
+fun gusher_N : N;
+fun gushing_A : A;
+fun gushingly_Adv : Adv;
+fun gusset_N : N;
+fun gusseted_A : A;
+fun gust_N : N;
+fun gustation_N : N;
+fun gusto_N : N;
+fun gusty_A : A;
+fun gut_N : N;
+fun gut_V2 : V2;
+fun gutless_A : A;
+fun gutta_percha_N : N;
+fun gutter_N : N;
+fun gutter_V : V;
+fun guttersnipe_N : N;
+fun guttural_A : A;
+fun guttural_N : N;
+fun gutturally_Adv : Adv;
+fun guvnor_N : N;
+fun guy's_PN : PN;
+fun guy_N : N;
+fun guy_PN : PN;
+fun guy_V2 : V2;
+fun guyana_PN : PN;
+fun guyanese_A : A;
+fun guyanese_N : N;
+fun guzzle_V : V;
+fun guzzle_V2 : V2;
+fun guzzler_N : N;
+fun gwen_PN : PN;
+fun gwendoline_PN : PN;
+fun gwent_PN : PN;
+fun gwersyllt_PN : PN;
+fun gwynedd_PN : PN;
+fun gybe_V : V;
+fun gybe_V2 : V2;
+fun gym_N : N;
+fun gymkhana_N : N;
+fun gymnasium_N : N;
+fun gymnast_N : N;
+fun gymnastic_A : A;
+fun gymnastics_N : N;
+fun gymslip_N : N;
+fun gynaecological_A : A;
+fun gynaecologist_N : N;
+fun gynaecology_N : N;
+fun gynecological_A : A;
+fun gynecologist_N : N;
+fun gyp_N : N;
+fun gyp_V2 : V2;
+fun gypsum_N : N;
+fun gypsy_N : N;
+fun gyrate_V : V;
+fun gyration_N : N;
+fun gyro_N : N;
+fun gyroscope_N : N;
+fun gyroscopic_A : A;
+fun gateau_N : N;
+fun h'm_V : V;
+fun h_bomb_N : N;
+fun ha'p'orth_N : N;
+fun ha'penny_N : N;
+fun haarlem_PN : PN;
+fun habeas_corpus_N : N;
+fun haberdasher_N : N;
+fun haberdashery_N : N;
+fun habit_N : N;
+fun habitable_A : A;
+fun habitat_N : N;
+fun habitation_N : N;
+fun habitual_A : A;
+fun habitually_Adv : Adv;
+fun habituate_V2 : V2;
+fun habituation_N : N;
+fun habitude_N : N;
+fun habitue_N : N;
+fun hacienda_N : N;
+fun hack_N : N;
+fun hack_V : V;
+fun hack_V2 : V2;
+fun hackney_N : N;
+fun hackney_PN : PN;
+fun hackneyed_A : A;
+fun hacksaw_N : N;
+fun haddington_PN : PN;
+fun haddock_N : N;
+fun hades_PN : PN;
+fun hadji_N : N;
+fun haematite_N : N;
+fun haemoglobin_N : N;
+fun haemophilia_N : N;
+fun haemophiliac_N : N;
+fun haemorrhage_N : N;
+fun haft_N : N;
+fun hag_N : N;
+fun hag_ridden_A : A;
+fun hagen_PN : PN;
+fun haggard_A : A;
+fun haggis_N : N;
+fun haggle_V : V;
+fun hagiology_N : N;
+fun hagley_PN : PN;
+fun haha_N : N;
+fun hail_N : N;
+fun hail_V : V;
+fun hail_V2 : V2;
+fun hailsham_PN : PN;
+fun hailstone_N : N;
+fun hailstorm_N : N;
+fun haiphong_PN : PN;
+fun hair's_breadth_N : N;
+fun hair_N : N;
+fun hair_breadth_N : N;
+fun hair_dye_N : N;
+fun hair_oil_N : N;
+fun hair_raising_A : A;
+fun hair_shirt_N : N;
+fun hair_slide_N : N;
+fun hair_trigger_N : N;
+fun hairbrush_N : N;
+fun haircloth_N : N;
+fun haircut_N : N;
+fun hairdo_N : N;
+fun hairdresser_N : N;
+fun hairdressing_N : N;
+fun hairiness_N : N;
+fun hairless_A : A;
+fun hairlike_A : A;
+fun hairline_N : N;
+fun hairnet_N : N;
+fun hairpiece_N : N;
+fun hairpin_N : N;
+fun hairsplitting_A : A;
+fun hairsplitting_N : N;
+fun hairspring_N : N;
+fun hairstyle_N : N;
+fun hairstylist_N : N;
+fun hairy_A : A;
+fun haiti_PN : PN;
+fun haitian_A : A;
+fun haitian_N : N;
+fun hake_N : N;
+fun hal_PN : PN;
+fun halberd_N : N;
+fun halberdier_N : N;
+fun halcyon_A : A;
+fun hale_A : A;
+fun halesowen_PN : PN;
+fun half_N : N;
+fun half_baked_A : A;
+fun half_blood_N : N;
+fun half_breed_N : N;
+fun half_brother_N : N;
+fun half_caste_N : N;
+fun half_crazed_A : A;
+fun half_crown_N : N;
+fun half_hardy_A : A;
+fun half_hearted_A : A;
+fun half_heartedly_Adv : Adv;
+fun half_holiday_N : N;
+fun half_hour_N : N;
+fun half_hourly_A : A;
+fun half_hourly_Adv : Adv;
+fun half_length_A : A;
+fun half_pay_N : N;
+fun half_price_Adv : Adv;
+fun half_seas_over_A : A;
+fun half_sister_N : N;
+fun half_size_A : A;
+fun half_timbered_A : A;
+fun half_time_N : N;
+fun half_track_N : N;
+fun half_tracked_A : A;
+fun half_truth_N : N;
+fun half_volley_N : N;
+fun half_yearly_A : A;
+fun half_yearly_Adv : Adv;
+fun halfback_N : N;
+fun halfpenny_N : N;
+fun halfpennyworth_N : N;
+fun halftone_N : N;
+fun halfway_A : A;
+fun halfway_Adv : Adv;
+fun halfwit_N : N;
+fun halfwitted_A : A;
+fun halibut_N : N;
+fun halifax_PN : PN;
+fun halitosis_N : N;
+fun hall_N : N;
+fun hall_stand_N : N;
+fun halle_PN : PN;
+fun hallelujah_N : N;
+fun halliard_N : N;
+fun hallmark_N : N;
+fun halloo_N : N;
+fun halloo_V : V;
+fun hallow_N : N;
+fun hallow_V2 : V2;
+fun hallowe'en_N : N;
+fun hallowe'en_PN : PN;
+fun hallucination_N : N;
+fun hallucinatory_A : A;
+fun hallucinogenic_A : A;
+fun halma_N : N;
+fun halo_N : N;
+fun halstead_PN : PN;
+fun halt_A : A;
+fun halt_N : N;
+fun halt_V : V;
+fun halt_V2 : V2;
+fun halter_N : N;
+fun haltingly_Adv : Adv;
+fun halve_V2 : V2;
+fun halyard_N : N;
+fun ham_N : N;
+fun ham_V : V;
+fun ham_V2 : V2;
+fun ham_fisted_A : A;
+fun ham_handed_A : A;
+fun hamadryad_N : N;
+fun hamburg_PN : PN;
+fun hamburger_N : N;
+fun hamhung_PN : PN;
+fun hamilton_PN : PN;
+fun hamlet_N : N;
+fun hammer_N : N;
+fun hammer_V : V;
+fun hammer_V2 : V2;
+fun hammersmith_PN : PN;
+fun hammock_N : N;
+fun hamper_N : N;
+fun hamper_V2 : V2;
+fun hampreston_PN : PN;
+fun hampshire_PN : PN;
+fun hamster_N : N;
+fun hamstring_N : N;
+fun hamstring_V2 : V2;
+fun hand_N : N;
+fun hand_V2 : V2;
+fun hand_barrow_N : N;
+fun hand_grenade_N : N;
+fun hand_luggage_N : N;
+fun hand_me_down_N : N;
+fun hand_organ_N : N;
+fun hand_out_N : N;
+fun hand_picked_A : A;
+fun handbag_N : N;
+fun handbill_N : N;
+fun handbook_N : N;
+fun handbrake_N : N;
+fun handcart_N : N;
+fun handclap_N : N;
+fun handcuff_N : N;
+fun handcuff_V2 : V2;
+fun handful_N : N;
+fun handhold_N : N;
+fun handicap_N : N;
+fun handicap_V2 : V2;
+fun handicraft_N : N;
+fun handily_Adv : Adv;
+fun handiness_N : N;
+fun handiwork_N : N;
+fun handkerchief_N : N;
+fun handle_N : N;
+fun handle_V2 : V2;
+fun handlebar_N : N;
+fun handler_N : N;
+fun handmade_A : A;
+fun handmaid_N : N;
+fun handover_N : N;
+fun handrail_N : N;
+fun handsaw_N : N;
+fun handshake_N : N;
+fun handshaking_N : N;
+fun handsome_A : A;
+fun handsomely_Adv : Adv;
+fun handstand_N : N;
+fun handwork_N : N;
+fun handwriting_N : N;
+fun handy_A : A;
+fun handyman_N : N;
+fun hang_N : N;
+fun hang_V : V;
+fun hang_V2 : V2;
+fun hang_up_N : N;
+fun hangar_N : N;
+fun hangchon_PN : PN;
+fun hangdog_A : A;
+fun hanger_N : N;
+fun hanger_on_N : N;
+fun hanging_N : N;
+fun hangman_N : N;
+fun hangnail_N : N;
+fun hangover_N : N;
+fun hank_N : N;
+fun hanker_V : V;
+fun hankering_N : N;
+fun hanky_N : N;
+fun hanky_panky_N : N;
+fun hanoi_PN : PN;
+fun hanover_PN : PN;
+fun hansard_N : N;
+fun hansom_N : N;
+fun hap_N : N;
+fun hap_V : V;
+fun haphazard_A : A;
+fun haphazard_Adv : Adv;
+fun haphazardly_Adv : Adv;
+fun hapless_A : A;
+fun haply_Adv : Adv;
+fun happen_V : V;
+fun happening_N : N;
+fun happily_Adv : Adv;
+fun happiness_N : N;
+fun happy_A : A;
+fun happy_go_lucky_A : A;
+fun hara_kiri_N : N;
+fun harangue_N : N;
+fun harangue_V : V;
+fun harangue_V2 : V2;
+fun harass_V2 : V2;
+fun harassment_N : N;
+fun harbin_PN : PN;
+fun harbinger_N : N;
+fun harbour_N : N;
+fun harbour_V : V;
+fun harbour_V2 : V2;
+fun harbourage_N : N;
+fun hard_A : A;
+fun hard_Adv : Adv;
+fun hard_baked_A : A;
+fun hard_bitten_A : A;
+fun hard_boiled_A : A;
+fun hard_headed_A : A;
+fun hardback_N : N;
+fun hardbacked_A : A;
+fun hardboard_N : N;
+fun hardbound_A : A;
+fun hardcover_N : N;
+fun hardcovered_A : A;
+fun harden_V : V;
+fun harden_V2 : V2;
+fun hardhearted_A : A;
+fun hardhitting_A : A;
+fun hardihood_N : N;
+fun hardiness_N : N;
+fun hardliner_N : N;
+fun hardly_Adv : Adv;
+fun hardness_N : N;
+fun hardship_N : N;
+fun hardtop_N : N;
+fun hardware_N : N;
+fun hardwood_N : N;
+fun hardworking_A : A;
+fun hardy_A : A;
+fun hare_N : N;
+fun hare_V : V;
+fun harebell_N : N;
+fun harebrained_A : A;
+fun harelip_N : N;
+fun harem_N : N;
+fun haricot_N : N;
+fun haringey_PN : PN;
+fun hark_V : V;
+fun harlequin_N : N;
+fun harlequinade_N : N;
+fun harley_street_PN : PN;
+fun harlot_N : N;
+fun harlow_PN : PN;
+fun harm_N : N;
+fun harm_V2 : V2;
+fun harmattan_N : N;
+fun harmful_A : A;
+fun harmfully_Adv : Adv;
+fun harmless_A : A;
+fun harmlessly_Adv : Adv;
+fun harmonic_N : N;
+fun harmonica_N : N;
+fun harmonious_A : A;
+fun harmoniously_Adv : Adv;
+fun harmonium_N : N;
+fun harmonization_N : N;
+fun harmonize_V : V;
+fun harmonize_V2 : V2;
+fun harmony_N : N;
+fun harness_N : N;
+fun harness_V2 : V2;
+fun harold_PN : PN;
+fun harp_N : N;
+fun harp_V : V;
+fun harpenden_PN : PN;
+fun harper_N : N;
+fun harpist_N : N;
+fun harpoon_N : N;
+fun harpoon_V2 : V2;
+fun harpsichord_N : N;
+fun harpsichordist_N : N;
+fun harpy_N : N;
+fun harridan_N : N;
+fun harrier_N : N;
+fun harriet_PN : PN;
+fun harrogate_PN : PN;
+fun harrow_N : N;
+fun harrow_PN : PN;
+fun harrow_V2 : V2;
+fun harry_PN : PN;
+fun harry_V2 : V2;
+fun harsh_A : A;
+fun harshly_Adv : Adv;
+fun harshness_N : N;
+fun hart_N : N;
+fun hartlepool_PN : PN;
+fun hartley_PN : PN;
+fun harum_scarum_A : A;
+fun harum_scarum_N : N;
+fun harvest_N : N;
+fun harvest_V2 : V2;
+fun harvester_N : N;
+fun harvey_PN : PN;
+fun harwich_PN : PN;
+fun harwood_PN : PN;
+fun harworth_PN : PN;
+fun has_been_N : N;
+fun hash_N : N;
+fun hash_V2 : V2;
+fun hashish_N : N;
+fun haslemere_PN : PN;
+fun haslingden_PN : PN;
+fun hasp_N : N;
+fun hassle_N : N;
+fun hassle_V : V;
+fun hassle_V2 : V2;
+fun hassock_N : N;
+fun haste_N : N;
+fun hasten_V : V;
+fun hasten_V2 : V2;
+fun hastily_Adv : Adv;
+fun hastiness_N : N;
+fun hastings_PN : PN;
+fun hasty_A : A;
+fun hat_N : N;
+fun hatband_N : N;
+fun hatch_N : N;
+fun hatch_V : V;
+fun hatch_V2 : V2;
+fun hatchery_N : N;
+fun hatchet_N : N;
+fun hatching_N : N;
+fun hatchway_N : N;
+fun hate_N : N;
+fun hate_V2 : V2;
+fun hateful_A : A;
+fun hatefully_Adv : Adv;
+fun hatfield_PN : PN;
+fun hatful_N : N;
+fun hatless_A : A;
+fun hatpin_N : N;
+fun hatred_N : N;
+fun hatter_N : N;
+fun hauberk_N : N;
+fun haughtily_Adv : Adv;
+fun haughtiness_N : N;
+fun haughty_A : A;
+fun haul_N : N;
+fun haul_V : V;
+fun haul_V2 : V2;
+fun haulage_N : N;
+fun haulier_N : N;
+fun haulm_N : N;
+fun haunch_N : N;
+fun haunt_N : N;
+fun haunt_V2 : V2;
+fun hautboy_N : N;
+fun hauteur_N : N;
+fun havana_N : N;
+fun havana_PN : PN;
+fun haven_N : N;
+fun haverfordwest_PN : PN;
+fun haverhill_PN : PN;
+fun havering_PN : PN;
+fun haversack_N : N;
+fun havoc_N : N;
+fun haw_N : N;
+fun haw_V : V;
+fun haw_haw_N : N;
+fun hawaii_PN : PN;
+fun hawick_PN : PN;
+fun hawk_N : N;
+fun hawk_V2 : V2;
+fun hawk_eyed_A : A;
+fun hawke's_bay_PN : PN;
+fun hawker_N : N;
+fun hawser_N : N;
+fun hawthorn_N : N;
+fun hay_N : N;
+fun haycock_N : N;
+fun hayfork_N : N;
+fun hayling_PN : PN;
+fun haymaker_N : N;
+fun haymaking_N : N;
+fun hayrick_N : N;
+fun haystack_N : N;
+fun haywards_heath_PN : PN;
+fun haywire_A : A;
+fun haywire_N : N;
+fun hazard_N : N;
+fun hazard_V2 : V2;
+fun hazardous_A : A;
+fun haze_N : N;
+fun haze_V2 : V2;
+fun hazel_N : N;
+fun hazel_PN : PN;
+fun hazily_Adv : Adv;
+fun haziness_N : N;
+fun hazy_A : A;
+fun he_goat_N : N;
+fun he_man_N : N;
+fun head_N : N;
+fun head_V : V;
+fun head_V2 : V2;
+fun head_hunter_N : N;
+fun head_on_A : A;
+fun head_on_Adv : Adv;
+fun headache_N : N;
+fun headband_N : N;
+fun headdress_N : N;
+fun headed_A : A;
+fun header_N : N;
+fun headgear_N : N;
+fun heading_N : N;
+fun headlamp_N : N;
+fun headland_N : N;
+fun headless_A : A;
+fun headlight_N : N;
+fun headline_N : N;
+fun headlong_A : A;
+fun headlong_Adv : Adv;
+fun headman_N : N;
+fun headmaster_N : N;
+fun headmistress_N : N;
+fun headpiece_N : N;
+fun headrest_N : N;
+fun headroom_N : N;
+fun headset_N : N;
+fun headship_N : N;
+fun headstall_N : N;
+fun headstone_N : N;
+fun headstrong_A : A;
+fun headway_N : N;
+fun headwind_N : N;
+fun headword_N : N;
+fun heady_A : A;
+fun heal_V : V;
+fun heal_V2 : V2;
+fun healer_N : N;
+fun healing_A : A;
+fun health_N : N;
+fun healthful_A : A;
+fun healthily_Adv : Adv;
+fun healthy_A : A;
+fun heanor_PN : PN;
+fun heap_N : N;
+fun heap_V2 : V2;
+fun heaps_Adv : Adv;
+fun hear_V : V;
+fun hear_V2 : V2;
+fun hearer_N : N;
+fun hearing_N : N;
+fun hearing_aid_N : N;
+fun hearken_V : V;
+fun hearsay_N : N;
+fun hearse_N : N;
+fun heart's_ease_N : N;
+fun heart_N : N;
+fun heart_disease_N : N;
+fun heart_failure_N : N;
+fun heart_rending_A : A;
+fun heartache_N : N;
+fun heartbeat_N : N;
+fun heartbreak_N : N;
+fun heartbreaking_A : A;
+fun heartbroken_A : A;
+fun heartburn_N : N;
+fun heartburning_N : N;
+fun hearted_A : A;
+fun hearten_V2 : V2;
+fun heartfelt_A : A;
+fun hearth_N : N;
+fun hearthrug_N : N;
+fun heartily_Adv : Adv;
+fun heartless_A : A;
+fun heartlessly_Adv : Adv;
+fun heartlessness_N : N;
+fun heartsick_A : A;
+fun hearty_A : A;
+fun heat_N : N;
+fun heat_V : V;
+fun heat_V2 : V2;
+fun heat_flash_N : N;
+fun heated_A : A;
+fun heatedly_Adv : Adv;
+fun heater_N : N;
+fun heath_N : N;
+fun heathen_N : N;
+fun heathenish_A : A;
+fun heather_N : N;
+fun heather_PN : PN;
+fun heather_mixture_N : N;
+fun heating_N : N;
+fun heatspot_N : N;
+fun heatstroke_N : N;
+fun heatwave_N : N;
+fun heave_N : N;
+fun heave_V : V;
+fun heave_V2 : V2;
+fun heaven_N : N;
+fun heavenly_A : A;
+fun heavensent_A : A;
+fun heavenward_A : A;
+fun heavenward_Adv : Adv;
+fun heavenwards_A : A;
+fun heavenwards_Adv : Adv;
+fun heavily_Adv : Adv;
+fun heaviness_N : N;
+fun heaviside_PN : PN;
+fun heavy_A : A;
+fun heavy_Adv : Adv;
+fun heavy_handed_A : A;
+fun heavy_hearted_A : A;
+fun heavy_laden_A : A;
+fun heavyweight_N : N;
+fun hebden_royal_PN : PN;
+fun hebdomadal_A : A;
+fun hebraic_A : A;
+fun hebrew_A : A;
+fun hebrew_N : N;
+fun hecatomb_N : N;
+fun heck_N : N;
+fun heckle_V2 : V2;
+fun heckler_N : N;
+fun hectare_N : N;
+fun hectic_A : A;
+fun hector_V : V;
+fun hector_V2 : V2;
+fun hedge_N : N;
+fun hedge_V : V;
+fun hedge_V2 : V2;
+fun hedge_end_PN : PN;
+fun hedge_sparrow_N : N;
+fun hedgehog_N : N;
+fun hedgehop_V : V;
+fun hedgerow_N : N;
+fun hedonism_N : N;
+fun hedonist_N : N;
+fun hedonistic_A : A;
+fun heed_N : N;
+fun heed_V2 : V2;
+fun heedful_A : A;
+fun heedless_A : A;
+fun heehaw_N : N;
+fun heel_N : N;
+fun heel_V : V;
+fun heel_V2 : V2;
+fun hefty_A : A;
+fun hegemony_N : N;
+fun hegira_N : N;
+fun heidelburg_PN : PN;
+fun heifer_N : N;
+fun height_N : N;
+fun heighten_V : V;
+fun heighten_V2 : V2;
+fun heinous_A : A;
+fun heinously_Adv : Adv;
+fun heinousness_N : N;
+fun heir_N : N;
+fun heiress_N : N;
+fun heirloom_N : N;
+fun hejira_N : N;
+fun helen_PN : PN;
+fun helensburgh_PN : PN;
+fun helicopter_N : N;
+fun heliograph_N : N;
+fun heliograph_V2 : V2;
+fun heliotrope_N : N;
+fun heliport_N : N;
+fun helium_N : N;
+fun hell_N : N;
+fun hellcat_N : N;
+fun hellene_N : N;
+fun hellenic_A : A;
+fun hellish_A : A;
+fun helm_N : N;
+fun helmet_N : N;
+fun helmeted_A : A;
+fun helmsman_N : N;
+fun helot_N : N;
+fun help_N : N;
+fun help_V : V;
+fun help_V2 : V2;
+fun helper_N : N;
+fun helpful_A : A;
+fun helpfully_Adv : Adv;
+fun helpfulness_N : N;
+fun helping_N : N;
+fun helpless_A : A;
+fun helplessly_Adv : Adv;
+fun helplessness_N : N;
+fun helpmate_N : N;
+fun helpmeet_N : N;
+fun helsinki_PN : PN;
+fun helston_PN : PN;
+fun helter_skelter_Adv : Adv;
+fun helter_skelter_N : N;
+fun helve_N : N;
+fun hem_N : N;
+fun hem_V : V;
+fun hem_V2 : V2;
+fun hematite_N : N;
+fun hemel_hempstead_PN : PN;
+fun hemisphere_N : N;
+fun hemline_N : N;
+fun hemlock_N : N;
+fun hemming_stitch_N : N;
+fun hemoglobin_N : N;
+fun hemophilia_N : N;
+fun hemophiliac_N : N;
+fun hemorrhage_N : N;
+fun hemp_N : N;
+fun hempen_A : A;
+fun hemstitch_N : N;
+fun hemstitch_V2 : V2;
+fun hemsworth_PN : PN;
+fun hen_N : N;
+fun hen_party_N : N;
+fun henbane_N : N;
+fun hence_Adv : Adv;
+fun henceforth_Adv : Adv;
+fun henceforward_Adv : Adv;
+fun henchman_N : N;
+fun hencoop_N : N;
+fun henhouse_N : N;
+fun henley_on_thames_PN : PN;
+fun henna_N : N;
+fun hennaed_A : A;
+fun henpecked_A : A;
+fun henroost_N : N;
+fun henry_PN : PN;
+fun hep_A : A;
+fun hepatitis_N : N;
+fun heptagon_N : N;
+fun herald_N : N;
+fun herald_V2 : V2;
+fun heraldic_A : A;
+fun heraldry_N : N;
+fun herb_N : N;
+fun herb_PN : PN;
+fun herbaceous_A : A;
+fun herbage_N : N;
+fun herbal_A : A;
+fun herbalist_N : N;
+fun herbert_PN : PN;
+fun herbivorous_A : A;
+fun herculean_A : A;
+fun herd_N : N;
+fun herd_V : V;
+fun herd_V2 : V2;
+fun herdsman_N : N;
+fun hereabouts_Adv : Adv;
+fun hereafter_Adv : Adv;
+fun hereafter_N : N;
+fun hereby_Adv : Adv;
+fun hereditament_N : N;
+fun hereditary_A : A;
+fun heredity_N : N;
+fun hereford_PN : PN;
+fun herein_Adv : Adv;
+fun hereinafter_Adv : Adv;
+fun hereinbefore_Adv : Adv;
+fun hereof_Adv : Adv;
+fun heresy_N : N;
+fun heretic_N : N;
+fun heretical_A : A;
+fun hereto_Adv : Adv;
+fun heretofore_Adv : Adv;
+fun hereupon_Adv : Adv;
+fun herewith_Adv : Adv;
+fun heritable_A : A;
+fun heritage_N : N;
+fun hermaphrodite_N : N;
+fun hermetic_A : A;
+fun hermetically_Adv : Adv;
+fun hermit_N : N;
+fun hermitage_N : N;
+fun herne_PN : PN;
+fun herne_bay_PN : PN;
+fun hernia_N : N;
+fun hero_N : N;
+fun heroic_A : A;
+fun heroically_Adv : Adv;
+fun heroics_N : N;
+fun heroin_N : N;
+fun heroine_N : N;
+fun heroism_N : N;
+fun heron_N : N;
+fun heronry_N : N;
+fun herr_N : N;
+fun herring_N : N;
+fun herringbone_N : N;
+fun hertford_PN : PN;
+fun hertfordshire_PN : PN;
+fun hertz_N : N;
+fun hertzian_A : A;
+fun hesitance_N : N;
+fun hesitancy_N : N;
+fun hesitant_A : A;
+fun hesitantly_Adv : Adv;
+fun hesitate_V : V;
+fun hesitatingly_Adv : Adv;
+fun hesitation_N : N;
+fun hessian_N : N;
+fun het_up_A : A;
+fun heterodox_A : A;
+fun heterodoxy_N : N;
+fun heterogeneous_A : A;
+fun heterosexual_A : A;
+fun heterosexual_N : N;
+fun heterosexuality_N : N;
+fun hetton_PN : PN;
+fun heuristic_A : A;
+fun heuristics_N : N;
+fun hew_V : V;
+fun hew_V2 : V2;
+fun hewer_N : N;
+fun hexagon_N : N;
+fun hexagonal_A : A;
+fun hexameter_N : N;
+fun hexham_PN : PN;
+fun heyday_N : N;
+fun heysham_PN : PN;
+fun heywood_PN : PN;
+fun hi_fi_A : A;
+fun hi_fi_N : N;
+fun hiatus_N : N;
+fun hibernate_V : V;
+fun hibernation_N : N;
+fun hibiscus_N : N;
+fun hiccough_N : N;
+fun hiccough_V : V;
+fun hiccup_N : N;
+fun hiccup_V : V;
+fun hick_A : A;
+fun hick_N : N;
+fun hickory_N : N;
+fun hide_N : N;
+fun hide_V : V;
+fun hide_V2 : V2;
+fun hide_and_seek_N : N;
+fun hide_out_N : N;
+fun hideaway_N : N;
+fun hidebound_A : A;
+fun hideous_A : A;
+fun hideously_Adv : Adv;
+fun hiding_N : N;
+fun hiding_place_N : N;
+fun hie_V : V;
+fun hierarchic_A : A;
+fun hierarchical_A : A;
+fun hierarchy_N : N;
+fun hieroglyph_N : N;
+fun hieroglyphic_A : A;
+fun hieroglyphics_N : N;
+fun higgledy_piggledy_A : A;
+fun higgledy_piggledy_Adv : Adv;
+fun high_A : A;
+fun high_Adv : Adv;
+fun high_class_A : A;
+fun high_falutin_A : A;
+fun high_fidelity_A : A;
+fun high_fidelity_N : N;
+fun high_frequency_N : N;
+fun high_grade_A : A;
+fun high_handed_A : A;
+fun high_handedly_Adv : Adv;
+fun high_keyed_A : A;
+fun high_level_A : A;
+fun high_minded_A : A;
+fun high_mindedly_Adv : Adv;
+fun high_mindedness_N : N;
+fun high_necked_A : A;
+fun high_octane_A : A;
+fun high_pitched_A : A;
+fun high_powered_A : A;
+fun high_pressure_N : N;
+fun high_priced_A : A;
+fun high_principled_A : A;
+fun high_ranking_A : A;
+fun high_rise_A : A;
+fun high_sounding_A : A;
+fun high_speed_A : A;
+fun high_spen_PN : PN;
+fun high_spirited_A : A;
+fun high_tension_A : A;
+fun high_toned_A : A;
+fun high_up_N : N;
+fun high_wycombe_PN : PN;
+fun highball_N : N;
+fun highborn_A : A;
+fun highboy_N : N;
+fun highbrow_A : A;
+fun highbrow_N : N;
+fun highflier_N : N;
+fun highflown_A : A;
+fun highflyer_N : N;
+fun highflying_A : A;
+fun highjack_N : N;
+fun highjack_V2 : V2;
+fun highland_N : N;
+fun highland_PN : PN;
+fun highlander_N : N;
+fun highlight_N : N;
+fun highlight_V2 : V2;
+fun highly_Adv : Adv;
+fun highness_N : N;
+fun highroad_N : N;
+fun highway_N : N;
+fun highwayman_N : N;
+fun hijack_N : N;
+fun hijack_V2 : V2;
+fun hijacker_N : N;
+fun hike_N : N;
+fun hike_V : V;
+fun hiker_N : N;
+fun hilarious_A : A;
+fun hilariously_Adv : Adv;
+fun hilarity_N : N;
+fun hilary_PN : PN;
+fun hilda_PN : PN;
+fun hill_N : N;
+fun hill_billy_N : N;
+fun hillingdon_PN : PN;
+fun hillock_N : N;
+fun hillside_N : N;
+fun hilly_A : A;
+fun hilt_N : N;
+fun hinckley_PN : PN;
+fun hind_A : A;
+fun hind_N : N;
+fun hinder_V2 : V2;
+fun hindi_A : A;
+fun hindi_N : N;
+fun hindmost_A : A;
+fun hindrance_N : N;
+fun hindsight_N : N;
+fun hindu_A : A;
+fun hindu_N : N;
+fun hinduism_N : N;
+fun hindustani_A : A;
+fun hindustani_N : N;
+fun hinge_N : N;
+fun hinge_V : V;
+fun hinge_V2 : V2;
+fun hint_N : N;
+fun hint_V : V;
+fun hint_V2 : V2;
+fun hinterland_N : N;
+fun hip_A : A;
+fun hip_N : N;
+fun hip_bath_N : N;
+fun hip_flask_N : N;
+fun hip_pocket_N : N;
+fun hippie_N : N;
+fun hippo_N : N;
+fun hippocratic_A : A;
+fun hippodrome_N : N;
+fun hippopotamus_N : N;
+fun hippy_N : N;
+fun hire_N : N;
+fun hire_V2 : V2;
+fun hireling_N : N;
+fun hiroshima_PN : PN;
+fun hirsute_A : A;
+fun hiss_N : N;
+fun hiss_V : V;
+fun hiss_V2 : V2;
+fun histogram_N : N;
+fun historian_N : N;
+fun historic_A : A;
+fun historical_A : A;
+fun historically_Adv : Adv;
+fun history_N : N;
+fun histrionic_A : A;
+fun histrionics_N : N;
+fun hit_N : N;
+fun hit_V : V;
+fun hit_V2 : V2;
+fun hit_and_run_A : A;
+fun hitch_N : N;
+fun hitch_V : V;
+fun hitch_V2 : V2;
+fun hitchhike_V : V;
+fun hitchhiker_N : N;
+fun hitchin_PN : PN;
+fun hither_Adv : Adv;
+fun hitherto_Adv : Adv;
+fun hive_N : N;
+fun hive_V : V;
+fun hive_V2 : V2;
+fun hm_PN : PN;
+fun hmso_PN : PN;
+fun hoar_A : A;
+fun hoard_N : N;
+fun hoard_V : V;
+fun hoard_V2 : V2;
+fun hoarder_N : N;
+fun hoarding_N : N;
+fun hoarfrost_N : N;
+fun hoariness_N : N;
+fun hoarse_A : A;
+fun hoarsely_Adv : Adv;
+fun hoarseness_N : N;
+fun hoary_A : A;
+fun hoax_N : N;
+fun hoax_V2 : V2;
+fun hoaxer_N : N;
+fun hob_N : N;
+fun hobble_N : N;
+fun hobble_V : V;
+fun hobble_V2 : V2;
+fun hobble_skirt_N : N;
+fun hobbledehoy_N : N;
+fun hobby_N : N;
+fun hobbyhorse_N : N;
+fun hobgoblin_N : N;
+fun hobnail_N : N;
+fun hobnailed_A : A;
+fun hobnob_V : V;
+fun hobo_N : N;
+fun hobson_PN : PN;
+fun hock_N : N;
+fun hock_V2 : V2;
+fun hockey_N : N;
+fun hockley_PN : PN;
+fun hocus_pocus_N : N;
+fun hod_N : N;
+fun hoddesdon_PN : PN;
+fun hodgepodge_N : N;
+fun hoe_N : N;
+fun hoe_V : V;
+fun hoe_V2 : V2;
+fun hofei_PN : PN;
+fun hog_N : N;
+fun hog_V2 : V2;
+fun hoggish_A : A;
+fun hogmanay_N : N;
+fun hogmanay_PN : PN;
+fun hogshead_N : N;
+fun hogwash_N : N;
+fun hoist_N : N;
+fun hoist_V2 : V2;
+fun hoity_toity_A : A;
+fun hold_N : N;
+fun hold_V : V;
+fun hold_V2 : V2;
+fun hold_up_N : N;
+fun holdall_N : N;
+fun holder_N : N;
+fun holding_N : N;
+fun holdup_N : N;
+fun hole_N : N;
+fun hole_V : V;
+fun hole_V2 : V2;
+fun hole_and_corner_A : A;
+fun holiday_N : N;
+fun holiday_V : V;
+fun holiday_maker_N : N;
+fun holiness_N : N;
+fun holland_PN : PN;
+fun hollander_A : A;
+fun hollander_N : N;
+fun holler_V : V;
+fun holler_V2 : V2;
+fun holloa_N : N;
+fun hollow_A : A;
+fun hollow_N : N;
+fun hollow_V2 : V2;
+fun holly_N : N;
+fun hollyhock_N : N;
+fun hollywood_PN : PN;
+fun holm_oak_N : N;
+fun holmfirth_PN : PN;
+fun holocaust_N : N;
+fun holograph_N : N;
+fun holster_N : N;
+fun holy_A : A;
+fun holy_N : N;
+fun holyhead_PN : PN;
+fun holystone_N : N;
+fun holystone_V2 : V2;
+fun homage_N : N;
+fun home_Adv : Adv;
+fun home_N : N;
+fun home_baked_A : A;
+fun home_brewed_A : A;
+fun home_cured_A : A;
+fun home_farm_N : N;
+fun home_grown_A : A;
+fun home_made_A : A;
+fun homecoming_N : N;
+fun homeland_N : N;
+fun homeless_A : A;
+fun homelike_A : A;
+fun homeliness_N : N;
+fun homely_A : A;
+fun homeopath_N : N;
+fun homeopathic_A : A;
+fun homeric_A : A;
+fun homesick_A : A;
+fun homesickness_N : N;
+fun homespun_A : A;
+fun homespun_N : N;
+fun homestead_N : N;
+fun homeward_A : A;
+fun homeward_Adv : Adv;
+fun homewards_Adv : Adv;
+fun homework_N : N;
+fun homey_A : A;
+fun homicidal_A : A;
+fun homicide_N : N;
+fun homiletic_A : A;
+fun homiletics_N : N;
+fun homily_N : N;
+fun homing_A : A;
+fun hominy_N : N;
+fun homo_N : N;
+fun homo_sapiens_N : N;
+fun homoeopath_N : N;
+fun homoeopathy_N : N;
+fun homogeneity_N : N;
+fun homogeneous_A : A;
+fun homogenize_V2 : V2;
+fun homograph_N : N;
+fun homonym_N : N;
+fun homophone_N : N;
+fun homosexual_A : A;
+fun homosexual_N : N;
+fun homosexuality_N : N;
+fun hon_PN : PN;
+fun honduran_A : A;
+fun honduran_N : N;
+fun honduras_PN : PN;
+fun hone_N : N;
+fun hone_V2 : V2;
+fun honest_A : A;
+fun honestly_Adv : Adv;
+fun honesty_N : N;
+fun honey_N : N;
+fun honeybee_N : N;
+fun honeycomb_N : N;
+fun honeycomb_V2 : V2;
+fun honeydew_N : N;
+fun honeyed_A : A;
+fun honeymoon_N : N;
+fun honeymoon_V : V;
+fun honeysuckle_N : N;
+fun hong_kong_PN : PN;
+fun honiton_PN : PN;
+fun honk_N : N;
+fun honk_V : V;
+fun honorarium_N : N;
+fun honorary_A : A;
+fun honorific_A : A;
+fun honorific_N : N;
+fun honour_N : N;
+fun honour_V2 : V2;
+fun honourable_A : A;
+fun honourably_Adv : Adv;
+fun hoo_PN : PN;
+fun hooch_N : N;
+fun hood_N : N;
+fun hood_V2 : V2;
+fun hoodlum_N : N;
+fun hoodoo_N : N;
+fun hoodoo_V2 : V2;
+fun hoodwink_V2 : V2;
+fun hooey_N : N;
+fun hoof_N : N;
+fun hook_N : N;
+fun hook_V : V;
+fun hook_V2 : V2;
+fun hook_nosed_A : A;
+fun hook_up_N : N;
+fun hookah_N : N;
+fun hooked_A : A;
+fun hooker_N : N;
+fun hookworm_N : N;
+fun hooky_N : N;
+fun hooligan_N : N;
+fun hooliganism_N : N;
+fun hoop_N : N;
+fun hoop_V2 : V2;
+fun hoop_la_N : N;
+fun hoot_N : N;
+fun hoot_V : V;
+fun hoot_V2 : V2;
+fun hooter_N : N;
+fun hoover_N : N;
+fun hoover_V2 : V2;
+fun hop_N : N;
+fun hop_V : V;
+fun hop_V2 : V2;
+fun hop_field_N : N;
+fun hop_garden_N : N;
+fun hop_picker_N : N;
+fun hop_pole_N : N;
+fun hope_N : N;
+fun hope_PN : PN;
+fun hope_V : V;
+fun hope_V2 : V2;
+fun hopeful_A : A;
+fun hopefully_Adv : Adv;
+fun hopefulness_N : N;
+fun hopeless_A : A;
+fun hopelessly_Adv : Adv;
+fun hopelessness_N : N;
+fun hopped_up_A : A;
+fun hopper_N : N;
+fun hopscotch_N : N;
+fun horace_PN : PN;
+fun horde_N : N;
+fun horizon_N : N;
+fun horizontal_A : A;
+fun horizontally_Adv : Adv;
+fun horley_PN : PN;
+fun hormone_N : N;
+fun horn_N : N;
+fun horn_V : V;
+fun horn_rimmed_A : A;
+fun hornbeam_N : N;
+fun hornbill_N : N;
+fun horned_A : A;
+fun hornet_N : N;
+fun hornless_A : A;
+fun hornlike_A : A;
+fun hornpipe_N : N;
+fun hornsea_PN : PN;
+fun horny_A : A;
+fun horology_N : N;
+fun horoscope_N : N;
+fun horrible_A : A;
+fun horribly_Adv : Adv;
+fun horrid_A : A;
+fun horridly_Adv : Adv;
+fun horridness_N : N;
+fun horrific_A : A;
+fun horrify_V2 : V2;
+fun horrifyingly_Adv : Adv;
+fun horror_N : N;
+fun horror_stricken_A : A;
+fun horror_struck_A : A;
+fun hors_de_combat_A : A;
+fun horse_N : N;
+fun horse_chestnut_N : N;
+fun horse_laugh_N : N;
+fun horse_pond_N : N;
+fun horse_sense_N : N;
+fun horseback_N : N;
+fun horsebox_N : N;
+fun horseflesh_N : N;
+fun horsefly_N : N;
+fun horsehair_N : N;
+fun horseman_N : N;
+fun horsemanship_N : N;
+fun horsemeat_N : N;
+fun horseplay_N : N;
+fun horsepower_N : N;
+fun horserace_N : N;
+fun horseracing_N : N;
+fun horseradish_N : N;
+fun horseshoe_N : N;
+fun horsewhip_N : N;
+fun horsewhip_V2 : V2;
+fun horsewoman_N : N;
+fun horsham_PN : PN;
+fun horsley_PN : PN;
+fun horsy_A : A;
+fun hortative_A : A;
+fun horticultural_A : A;
+fun horticulture_N : N;
+fun horticulturist_N : N;
+fun horwich_PN : PN;
+fun hosanna_N : N;
+fun hose_N : N;
+fun hose_V2 : V2;
+fun hosepipe_N : N;
+fun hosier_N : N;
+fun hosiery_N : N;
+fun hosp_PN : PN;
+fun hospice_N : N;
+fun hospitable_A : A;
+fun hospitably_Adv : Adv;
+fun hospital_N : N;
+fun hospitality_N : N;
+fun hospitalization_N : N;
+fun hospitalize_V2 : V2;
+fun host_N : N;
+fun host_V2 : V2;
+fun hostage_N : N;
+fun hostel_N : N;
+fun hosteller_N : N;
+fun hostelry_N : N;
+fun hostess_N : N;
+fun hostile_A : A;
+fun hostilely_Adv : Adv;
+fun hostility_N : N;
+fun hot_A : A;
+fun hot_V : V;
+fun hot_V2 : V2;
+fun hot_blooded_A : A;
+fun hot_headed_A : A;
+fun hot_tempered_A : A;
+fun hot_water_bottle_N : N;
+fun hotbed_N : N;
+fun hotchpotch_N : N;
+fun hotel_N : N;
+fun hotelier_N : N;
+fun hotfoot_Adv : Adv;
+fun hotfoot_V : V;
+fun hothead_N : N;
+fun hothouse_N : N;
+fun hotly_Adv : Adv;
+fun hotplate_N : N;
+fun houghton_PN : PN;
+fun hound_N : N;
+fun hound_V2 : V2;
+fun hounslow_PN : PN;
+fun hour_N : N;
+fun hourglass_N : N;
+fun houri_N : N;
+fun hourly_A : A;
+fun hourly_Adv : Adv;
+fun house_N : N;
+fun house_V2 : V2;
+fun house_party_N : N;
+fun house_warming_N : N;
+fun houseboat_N : N;
+fun housebound_A : A;
+fun housebreaker_N : N;
+fun housecoat_N : N;
+fun housecraft_N : N;
+fun housedog_N : N;
+fun housefather_N : N;
+fun housefly_N : N;
+fun houseful_N : N;
+fun household_N : N;
+fun householder_N : N;
+fun housekeeper_N : N;
+fun housemaid_N : N;
+fun houseman_N : N;
+fun housemaster_N : N;
+fun housemother_N : N;
+fun houseproud_A : A;
+fun houseroom_N : N;
+fun housetop_N : N;
+fun housetrained_A : A;
+fun housewife_N : N;
+fun housewifely_A : A;
+fun housewifery_N : N;
+fun housework_N : N;
+fun housewrecker_N : N;
+fun housing_N : N;
+fun houston_PN : PN;
+fun hove_PN : PN;
+fun hovel_N : N;
+fun hover_V : V;
+fun hovercraft_N : N;
+fun how_Adv : Adv;
+fun how_d'ye_do_N : N;
+fun howard_PN : PN;
+fun howdah_N : N;
+fun however_Adv : Adv;
+fun howitzer_N : N;
+fun howl_N : N;
+fun howl_V : V;
+fun howl_V2 : V2;
+fun howler_N : N;
+fun howling_A : A;
+fun hoyden_N : N;
+fun hoydenish_A : A;
+fun hoylake_PN : PN;
+fun hoyland_nether_PN : PN;
+fun hp_N : N;
+fun hq_PN : PN;
+fun hrh_PN : PN;
+fun hub_N : N;
+fun hubble_bubble_N : N;
+fun hubbub_N : N;
+fun hubby_N : N;
+fun hubert_PN : PN;
+fun hubris_N : N;
+fun huckaback_N : N;
+fun huckleberry_N : N;
+fun hucknall_PN : PN;
+fun huckster_N : N;
+fun huddersfield_PN : PN;
+fun huddle_N : N;
+fun huddle_V : V;
+fun huddle_V2 : V2;
+fun hue_N : N;
+fun hued_A : A;
+fun huff_N : N;
+fun huff_V : V;
+fun huffily_Adv : Adv;
+fun huffish_A : A;
+fun huffy_A : A;
+fun hug_N : N;
+fun hug_V2 : V2;
+fun huge_A : A;
+fun hugely_Adv : Adv;
+fun hugger_mugger_A : A;
+fun hugger_mugger_Adv : Adv;
+fun hugger_mugger_N : N;
+fun hugh_PN : PN;
+fun hughie_PN : PN;
+fun huguenot_N : N;
+fun huhehot_PN : PN;
+fun hula_N : N;
+fun hulk_N : N;
+fun hulking_A : A;
+fun hull_N : N;
+fun hull_V2 : V2;
+fun hullabaloo_N : N;
+fun hum_N : N;
+fun hum_V : V;
+fun hum_V2 : V2;
+fun human_A : A;
+fun human_N : N;
+fun humane_A : A;
+fun humanely_Adv : Adv;
+fun humanism_N : N;
+fun humanist_N : N;
+fun humanitarian_A : A;
+fun humanitarian_N : N;
+fun humanitarianism_N : N;
+fun humanity_N : N;
+fun humanize_V : V;
+fun humanize_V2 : V2;
+fun humankind_N : N;
+fun humanly_Adv : Adv;
+fun humberside_PN : PN;
+fun humberston_PN : PN;
+fun humble_A : A;
+fun humble_V2 : V2;
+fun humbly_Adv : Adv;
+fun humbug_N : N;
+fun humbug_V2 : V2;
+fun humdinger_N : N;
+fun humdrum_A : A;
+fun humerus_N : N;
+fun humid_A : A;
+fun humidify_V2 : V2;
+fun humidity_N : N;
+fun humiliate_V2 : V2;
+fun humiliation_N : N;
+fun humility_N : N;
+fun humming_top_N : N;
+fun hummingbird_N : N;
+fun hummock_N : N;
+fun humorist_N : N;
+fun humorous_A : A;
+fun humorously_Adv : Adv;
+fun humour_N : N;
+fun humour_V2 : V2;
+fun humourist_N : N;
+fun humourless_A : A;
+fun hump_N : N;
+fun hump_V2 : V2;
+fun humpback_N : N;
+fun humpbacked_A : A;
+fun humphrey_PN : PN;
+fun humus_N : N;
+fun hun_N : N;
+fun hunch_N : N;
+fun hunch_V2 : V2;
+fun hunchback_A : A;
+fun hunchback_N : N;
+fun hunchbacked_A : A;
+fun hundredfold_Adv : Adv;
+fun hundredweight_N : N;
+fun hungarian_A : A;
+fun hungarian_N : N;
+fun hungary_PN : PN;
+fun hunger_N : N;
+fun hunger_V : V;
+fun hunger_march_N : N;
+fun hunger_marcher_N : N;
+fun hungrily_Adv : Adv;
+fun hungry_A : A;
+fun hunk_N : N;
+fun hunt_N : N;
+fun hunt_V : V;
+fun hunt_V2 : V2;
+fun hunter_N : N;
+fun hunting_N : N;
+fun hunting_crop_N : N;
+fun huntingdon_PN : PN;
+fun huntress_N : N;
+fun huntsman_N : N;
+fun hurdle_N : N;
+fun hurdle_V : V;
+fun hurdle_V2 : V2;
+fun hurdler_N : N;
+fun hurdy_gurdy_N : N;
+fun hurl_N : N;
+fun hurl_V2 : V2;
+fun hurling_N : N;
+fun hurly_burly_N : N;
+fun hurrah_V : V;
+fun hurricane_N : N;
+fun hurried_A : A;
+fun hurriedly_Adv : Adv;
+fun hurry_N : N;
+fun hurry_V : V;
+fun hurry_V2 : V2;
+fun hurstpierpoint_PN : PN;
+fun hurt_N : N;
+fun hurt_V : V;
+fun hurt_V2 : V2;
+fun hurtful_A : A;
+fun hurtle_V : V;
+fun husband_N : N;
+fun husband_V2 : V2;
+fun husbandman_N : N;
+fun husbandry_N : N;
+fun hush_N : N;
+fun hush_V : V;
+fun hush_V2 : V2;
+fun hush_hush_A : A;
+fun hush_money_N : N;
+fun husk_N : N;
+fun husk_V2 : V2;
+fun huskily_Adv : Adv;
+fun huskiness_N : N;
+fun husky_A : A;
+fun husky_N : N;
+fun hussar_N : N;
+fun hussy_N : N;
+fun hustle_N : N;
+fun hustle_V : V;
+fun hustle_V2 : V2;
+fun hustler_N : N;
+fun hut_N : N;
+fun hutch_N : N;
+fun hutment_N : N;
+fun hutted_A : A;
+fun hwainan_PN : PN;
+fun hyacinth_N : N;
+fun hyaena_N : N;
+fun hybrid_A : A;
+fun hybrid_N : N;
+fun hybridize_V : V;
+fun hybridize_V2 : V2;
+fun hyde_PN : PN;
+fun hyderabad_PN : PN;
+fun hydra_N : N;
+fun hydrangea_N : N;
+fun hydrant_N : N;
+fun hydrate_N : N;
+fun hydrate_V : V;
+fun hydrate_V2 : V2;
+fun hydraulic_A : A;
+fun hydraulicly_Adv : Adv;
+fun hydraulics_N : N;
+fun hydrocarbon_N : N;
+fun hydrochloric_A : A;
+fun hydroelectric_A : A;
+fun hydrofoil_N : N;
+fun hydrogen_N : N;
+fun hydropathic_A : A;
+fun hydropathy_N : N;
+fun hydrophobia_N : N;
+fun hydroplane_N : N;
+fun hydroponics_N : N;
+fun hyena_N : N;
+fun hygiene_N : N;
+fun hygienic_A : A;
+fun hygienically_Adv : Adv;
+fun hymen_N : N;
+fun hymn_N : N;
+fun hymn_V2 : V2;
+fun hymnal_N : N;
+fun hyperbola_N : N;
+fun hyperbole_N : N;
+fun hyperbolic_A : A;
+fun hypercritical_A : A;
+fun hypermarket_N : N;
+fun hypersensitive_A : A;
+fun hyphen_N : N;
+fun hyphen_V2 : V2;
+fun hyphenate_V2 : V2;
+fun hypnosis_N : N;
+fun hypnotic_A : A;
+fun hypnotism_N : N;
+fun hypnotist_N : N;
+fun hypnotize_V2 : V2;
+fun hypo_N : N;
+fun hypochondria_N : N;
+fun hypochondriac_A : A;
+fun hypochondriac_N : N;
+fun hypochondriacal_A : A;
+fun hypocrisy_N : N;
+fun hypocrite_N : N;
+fun hypocritical_A : A;
+fun hypocritically_Adv : Adv;
+fun hypodermic_A : A;
+fun hypodermic_N : N;
+fun hypotenuse_N : N;
+fun hypothecate_V2 : V2;
+fun hypothesis_N : N;
+fun hypothetical_A : A;
+fun hyssop_N : N;
+fun hysteria_N : N;
+fun hysterical_A : A;
+fun hysterically_Adv : Adv;
+fun hysterics_N : N;
+fun hythe_PN : PN;
+fun iamb_N : N;
+fun iambic_A : A;
+fun iambics_N : N;
+fun iambus_N : N;
+fun ian_PN : PN;
+fun iba_N : N;
+fun ibadan_PN : PN;
+fun ibex_N : N;
+fun ibid_PN : PN;
+fun ibidem_Adv : Adv;
+fun ibis_N : N;
+fun icbm_N : N;
+fun ice_N : N;
+fun ice_V : V;
+fun ice_V2 : V2;
+fun ice_axe_N : N;
+fun ice_cream_N : N;
+fun ice_lolly_N : N;
+fun ice_show_N : N;
+fun ice_skate_N : N;
+fun ice_skate_V : V;
+fun ice_skating_N : N;
+fun ice_tray_N : N;
+fun iceberg_N : N;
+fun iceboat_N : N;
+fun icebound_A : A;
+fun icebox_N : N;
+fun icebreaker_N : N;
+fun icecap_N : N;
+fun icecube_N : N;
+fun icefall_N : N;
+fun icefield_N : N;
+fun icefloe_N : N;
+fun icefree_A : A;
+fun icehouse_N : N;
+fun iceland_PN : PN;
+fun icelander_A : A;
+fun icelander_N : N;
+fun icelandic_A : A;
+fun icelandic_N : N;
+fun iceman_N : N;
+fun icepack_N : N;
+fun icepick_N : N;
+fun icerink_N : N;
+fun ichneumon_N : N;
+fun ichneumon_fly_N : N;
+fun icicle_N : N;
+fun icily_Adv : Adv;
+fun icing_N : N;
+fun icon_N : N;
+fun iconoclast_N : N;
+fun icy_A : A;
+fun id_N : N;
+fun ida_PN : PN;
+fun idaho_PN : PN;
+fun idea_N : N;
+fun ideal_A : A;
+fun ideal_N : N;
+fun idealism_N : N;
+fun idealist_N : N;
+fun idealistic_A : A;
+fun idealization_N : N;
+fun idealize_V2 : V2;
+fun ideally_Adv : Adv;
+fun idem_PN : PN;
+fun identical_A : A;
+fun identically_Adv : Adv;
+fun identifiable_A : A;
+fun identifiably_Adv : Adv;
+fun identification_N : N;
+fun identify_V2 : V2;
+fun identikit_N : N;
+fun identity_N : N;
+fun ideogram_N : N;
+fun ideograph_N : N;
+fun ideographic_A : A;
+fun ideological_A : A;
+fun ideologically_Adv : Adv;
+fun ideology_N : N;
+fun idiocy_N : N;
+fun idiolect_N : N;
+fun idiom_N : N;
+fun idiomatic_A : A;
+fun idiomatically_Adv : Adv;
+fun idiosyncrasy_N : N;
+fun idiosyncratic_A : A;
+fun idiot_N : N;
+fun idiotic_A : A;
+fun idiotically_Adv : Adv;
+fun idle_A : A;
+fun idle_V : V;
+fun idle_V2 : V2;
+fun idleness_N : N;
+fun idler_N : N;
+fun idly_Adv : Adv;
+fun idol_N : N;
+fun idolater_N : N;
+fun idolatress_N : N;
+fun idolatrous_A : A;
+fun idolatrously_Adv : Adv;
+fun idolatry_N : N;
+fun idolization_N : N;
+fun idolize_V2 : V2;
+fun idyll_N : N;
+fun idyllic_A : A;
+fun ie_PN : PN;
+fun igloo_N : N;
+fun igneous_A : A;
+fun ignis_fatuus_N : N;
+fun ignite_V : V;
+fun ignite_V2 : V2;
+fun ignition_N : N;
+fun ignoble_A : A;
+fun ignobly_Adv : Adv;
+fun ignominious_A : A;
+fun ignominiously_Adv : Adv;
+fun ignominy_N : N;
+fun ignoramus_N : N;
+fun ignorance_N : N;
+fun ignorant_A : A;
+fun ignorantly_Adv : Adv;
+fun ignore_V2 : V2;
+fun iguana_N : N;
+fun ikon_N : N;
+fun ilex_N : N;
+fun ilfracombe_PN : PN;
+fun ilk_N : N;
+fun ilkeston_PN : PN;
+fun ilkley_PN : PN;
+fun ill_A : A;
+fun ill_Adv : Adv;
+fun ill_N : N;
+fun ill_advised_A : A;
+fun ill_affected_A : A;
+fun ill_bred_A : A;
+fun ill_breeding_N : N;
+fun ill_disposed_A : A;
+fun ill_fated_A : A;
+fun ill_favoured_A : A;
+fun ill_gotten_A : A;
+fun ill_judged_A : A;
+fun ill_mannered_A : A;
+fun ill_natured_A : A;
+fun ill_omened_A : A;
+fun ill_starred_A : A;
+fun ill_timed_A : A;
+fun ill_treat_V2 : V2;
+fun ill_treatment_N : N;
+fun ill_usage_N : N;
+fun ill_use_V2 : V2;
+fun illegal_A : A;
+fun illegality_N : N;
+fun illegally_Adv : Adv;
+fun illegibility_N : N;
+fun illegible_A : A;
+fun illegibly_Adv : Adv;
+fun illegitimacy_N : N;
+fun illegitimate_A : A;
+fun illegitimate_N : N;
+fun illegitimately_Adv : Adv;
+fun illiberal_A : A;
+fun illiberality_N : N;
+fun illiberally_Adv : Adv;
+fun illicit_A : A;
+fun illicitly_Adv : Adv;
+fun illimitable_A : A;
+fun illinois_PN : PN;
+fun illiteracy_N : N;
+fun illiterate_A : A;
+fun illiterate_N : N;
+fun illness_N : N;
+fun illogical_A : A;
+fun illogicality_N : N;
+fun illogically_Adv : Adv;
+fun illogicalness_N : N;
+fun illume_V2 : V2;
+fun illuminate_V2 : V2;
+fun illumination_N : N;
+fun illumine_V2 : V2;
+fun illusion_N : N;
+fun illusionist_N : N;
+fun illusive_A : A;
+fun illusory_A : A;
+fun illustrate_V2 : V2;
+fun illustration_N : N;
+fun illustrative_A : A;
+fun illustrator_N : N;
+fun illustrious_A : A;
+fun illustriously_Adv : Adv;
+fun ilo_N : N;
+fun image_N : N;
+fun image_V2 : V2;
+fun imagery_N : N;
+fun imaginable_A : A;
+fun imaginary_A : A;
+fun imagination_N : N;
+fun imaginative_A : A;
+fun imaginatively_Adv : Adv;
+fun imagine_V2 : V2;
+fun imam_N : N;
+fun imbalance_N : N;
+fun imbecile_A : A;
+fun imbecile_N : N;
+fun imbecility_N : N;
+fun imbed_V2 : V2;
+fun imbibe_V2 : V2;
+fun imbroglio_N : N;
+fun imbue_V2 : V2;
+fun imf_N : N;
+fun imitate_V2 : V2;
+fun imitation_N : N;
+fun imitative_A : A;
+fun imitator_N : N;
+fun immaculate_A : A;
+fun immaculately_Adv : Adv;
+fun immanence_N : N;
+fun immanent_A : A;
+fun immaterial_A : A;
+fun immature_A : A;
+fun immaturity_N : N;
+fun immeasurable_A : A;
+fun immeasurably_Adv : Adv;
+fun immediacy_N : N;
+fun immediate_A : A;
+fun immediately_Adv : Adv;
+fun immemorial_A : A;
+fun immense_A : A;
+fun immensely_Adv : Adv;
+fun immensity_N : N;
+fun immerse_V2 : V2;
+fun immersion_N : N;
+fun immigrant_N : N;
+fun immigrate_V : V;
+fun immigration_N : N;
+fun imminence_N : N;
+fun imminent_A : A;
+fun imminently_Adv : Adv;
+fun immingham_PN : PN;
+fun immobile_A : A;
+fun immobility_N : N;
+fun immobilization_N : N;
+fun immobilize_V2 : V2;
+fun immoderate_A : A;
+fun immoderately_Adv : Adv;
+fun immodest_A : A;
+fun immodestly_Adv : Adv;
+fun immodesty_N : N;
+fun immolate_V2 : V2;
+fun immolation_N : N;
+fun immoral_A : A;
+fun immorality_N : N;
+fun immorally_Adv : Adv;
+fun immortal_A : A;
+fun immortal_N : N;
+fun immortality_N : N;
+fun immortalize_V2 : V2;
+fun immovable_A : A;
+fun immovably_Adv : Adv;
+fun immune_A : A;
+fun immunity_N : N;
+fun immunization_N : N;
+fun immunize_V2 : V2;
+fun immunology_N : N;
+fun immure_V2 : V2;
+fun immutability_N : N;
+fun immutable_A : A;
+fun immutably_Adv : Adv;
+fun imp_N : N;
+fun impact_N : N;
+fun impact_V2 : V2;
+fun impair_V2 : V2;
+fun impairment_N : N;
+fun impala_N : N;
+fun impale_V2 : V2;
+fun impalement_N : N;
+fun impalpable_A : A;
+fun impanel_V2 : V2;
+fun impart_V2 : V2;
+fun impartial_A : A;
+fun impartiality_N : N;
+fun impartially_Adv : Adv;
+fun impassable_A : A;
+fun impasse_N : N;
+fun impassioned_A : A;
+fun impassive_A : A;
+fun impassively_Adv : Adv;
+fun impassiveness_N : N;
+fun impassivity_N : N;
+fun impatience_N : N;
+fun impatient_A : A;
+fun impatiently_Adv : Adv;
+fun impeach_V2 : V2;
+fun impeachment_N : N;
+fun impeccable_A : A;
+fun impeccably_Adv : Adv;
+fun impecunious_A : A;
+fun impede_V2 : V2;
+fun impediment_N : N;
+fun impel_V2 : V2;
+fun impeller_N : N;
+fun impend_V : V;
+fun impenetrable_A : A;
+fun impenitence_N : N;
+fun impenitent_A : A;
+fun impenitently_Adv : Adv;
+fun imperative_A : A;
+fun imperatively_Adv : Adv;
+fun imperceptible_A : A;
+fun imperceptibly_Adv : Adv;
+fun imperfect_A : A;
+fun imperfect_N : N;
+fun imperfection_N : N;
+fun imperfectly_Adv : Adv;
+fun imperial_A : A;
+fun imperial_N : N;
+fun imperialism_N : N;
+fun imperialist_N : N;
+fun imperialistic_A : A;
+fun imperially_Adv : Adv;
+fun imperil_V2 : V2;
+fun imperious_A : A;
+fun imperiously_Adv : Adv;
+fun imperiousness_N : N;
+fun imperishable_A : A;
+fun impermanence_N : N;
+fun impermanent_A : A;
+fun impermeable_A : A;
+fun impersonal_A : A;
+fun impersonally_Adv : Adv;
+fun impersonate_V2 : V2;
+fun impersonation_N : N;
+fun impersonator_N : N;
+fun impertinence_N : N;
+fun impertinent_A : A;
+fun impertinently_Adv : Adv;
+fun imperturbability_N : N;
+fun imperturbable_A : A;
+fun impervious_A : A;
+fun impetigo_N : N;
+fun impetuosity_N : N;
+fun impetuous_A : A;
+fun impetuously_Adv : Adv;
+fun impetus_N : N;
+fun impiety_N : N;
+fun impinge_V : V;
+fun impingement_N : N;
+fun impious_A : A;
+fun impiously_Adv : Adv;
+fun impish_A : A;
+fun impishly_Adv : Adv;
+fun impishness_N : N;
+fun implacable_A : A;
+fun implant_V2 : V2;
+fun implausibility_N : N;
+fun implausible_A : A;
+fun implausibly_Adv : Adv;
+fun implement_N : N;
+fun implement_V2 : V2;
+fun implementation_N : N;
+fun implicate_V2 : V2;
+fun implication_N : N;
+fun implicit_A : A;
+fun implicitly_Adv : Adv;
+fun implore_V2 : V2;
+fun imploringly_Adv : Adv;
+fun implosion_N : N;
+fun imply_V2 : V2;
+fun impolite_A : A;
+fun impolitely_Adv : Adv;
+fun impoliteness_N : N;
+fun impolitic_A : A;
+fun imponderable_A : A;
+fun imponderable_N : N;
+fun import_N : N;
+fun import_V2 : V2;
+fun importance_N : N;
+fun important_A : A;
+fun importantly_Adv : Adv;
+fun importation_N : N;
+fun importer_N : N;
+fun importunate_A : A;
+fun importunately_Adv : Adv;
+fun importune_V2 : V2;
+fun importunity_N : N;
+fun impose_V : V;
+fun impose_V2 : V2;
+fun imposing_A : A;
+fun imposingly_Adv : Adv;
+fun imposition_N : N;
+fun impossibility_N : N;
+fun impossible_A : A;
+fun impossibly_Adv : Adv;
+fun impostor_N : N;
+fun imposture_N : N;
+fun impotence_N : N;
+fun impotent_A : A;
+fun impotently_Adv : Adv;
+fun impound_V2 : V2;
+fun impoverish_V2 : V2;
+fun impoverishment_N : N;
+fun impracticability_N : N;
+fun impracticable_A : A;
+fun impracticableness_N : N;
+fun impracticably_Adv : Adv;
+fun impractical_A : A;
+fun imprecate_V2 : V2;
+fun imprecation_N : N;
+fun imprecise_A : A;
+fun imprecisely_Adv : Adv;
+fun imprecision_N : N;
+fun impregnability_N : N;
+fun impregnable_A : A;
+fun impregnably_Adv : Adv;
+fun impregnate_V2 : V2;
+fun impresario_N : N;
+fun impress_N : N;
+fun impress_V2 : V2;
+fun impression_N : N;
+fun impressionable_A : A;
+fun impressionism_N : N;
+fun impressionist_N : N;
+fun impressionistic_A : A;
+fun impressive_A : A;
+fun impressively_Adv : Adv;
+fun impressiveness_N : N;
+fun imprimatur_N : N;
+fun imprint_N : N;
+fun imprint_V2 : V2;
+fun imprison_V2 : V2;
+fun imprisonment_N : N;
+fun improbability_N : N;
+fun improbable_A : A;
+fun improbably_Adv : Adv;
+fun impromptu_A : A;
+fun impromptu_Adv : Adv;
+fun impromptu_N : N;
+fun improper_A : A;
+fun improperly_Adv : Adv;
+fun impropriety_N : N;
+fun improve_V : V;
+fun improve_V2 : V2;
+fun improvement_N : N;
+fun improver_N : N;
+fun improvidence_N : N;
+fun improvident_A : A;
+fun improvidently_Adv : Adv;
+fun improvisation_N : N;
+fun improvise_V : V;
+fun improvise_V2 : V2;
+fun imprudence_N : N;
+fun imprudent_A : A;
+fun imprudently_Adv : Adv;
+fun impudence_N : N;
+fun impudent_A : A;
+fun impudently_Adv : Adv;
+fun impugn_V2 : V2;
+fun impulse_N : N;
+fun impulse_buy_V : V;
+fun impulse_buy_V2 : V2;
+fun impulsion_N : N;
+fun impulsive_A : A;
+fun impulsively_Adv : Adv;
+fun impulsiveness_N : N;
+fun impunity_N : N;
+fun impure_A : A;
+fun impurity_N : N;
+fun imputation_N : N;
+fun impute_V2 : V2;
+fun in_Adv : Adv;
+fun in_N : N;
+fun in_chief_A : A;
+fun in_fighting_N : N;
+fun in_loco_parentis_Adv : Adv;
+fun in_patient_N : N;
+fun in_service_A : A;
+fun in_situ_Adv : Adv;
+fun in_toto_Adv : Adv;
+fun in_tray_N : N;
+fun inability_N : N;
+fun inaccessibility_N : N;
+fun inaccessible_A : A;
+fun inaccuracy_N : N;
+fun inaccurate_A : A;
+fun inaccurately_Adv : Adv;
+fun inaction_N : N;
+fun inactivate_V2 : V2;
+fun inactive_A : A;
+fun inactivity_N : N;
+fun inadequacy_N : N;
+fun inadequate_A : A;
+fun inadequately_Adv : Adv;
+fun inadmissible_A : A;
+fun inadvertence_N : N;
+fun inadvertent_A : A;
+fun inadvertently_Adv : Adv;
+fun inadvisability_N : N;
+fun inadvisable_A : A;
+fun inadvisably_Adv : Adv;
+fun inalienable_A : A;
+fun inane_A : A;
+fun inanely_Adv : Adv;
+fun inanimate_A : A;
+fun inanition_N : N;
+fun inanity_N : N;
+fun inapplicable_A : A;
+fun inappreciable_A : A;
+fun inappropriate_A : A;
+fun inappropriately_Adv : Adv;
+fun inappropriateness_N : N;
+fun inapt_A : A;
+fun inaptitude_N : N;
+fun inarticulate_A : A;
+fun inasmuch_as_Adv : Adv;
+fun inattention_N : N;
+fun inattentive_A : A;
+fun inaudibility_N : N;
+fun inaudible_A : A;
+fun inaugural_A : A;
+fun inaugural_N : N;
+fun inaugurate_V2 : V2;
+fun inauguration_N : N;
+fun inauspicious_A : A;
+fun inauspiciously_Adv : Adv;
+fun inboard_A : A;
+fun inborn_A : A;
+fun inbound_A : A;
+fun inbred_A : A;
+fun inbreeding_N : N;
+fun inbuilt_A : A;
+fun inc_PN : PN;
+fun incalculable_A : A;
+fun incandescence_N : N;
+fun incandescent_A : A;
+fun incantation_N : N;
+fun incapability_N : N;
+fun incapable_A : A;
+fun incapacitate_V2 : V2;
+fun incapacity_N : N;
+fun incarcerate_V2 : V2;
+fun incarceration_N : N;
+fun incarnate_A : A;
+fun incarnate_V2 : V2;
+fun incarnation_N : N;
+fun incautious_A : A;
+fun incautiously_Adv : Adv;
+fun incendiarism_N : N;
+fun incendiary_N : N;
+fun incense_N : N;
+fun incense_V2 : V2;
+fun incentive_N : N;
+fun inception_N : N;
+fun incertitude_N : N;
+fun incessant_A : A;
+fun incessantly_Adv : Adv;
+fun incest_N : N;
+fun incestuous_A : A;
+fun inch_N : N;
+fun inch_V : V;
+fun inch_V2 : V2;
+fun inchoate_A : A;
+fun inchoative_A : A;
+fun inchon_PN : PN;
+fun incidence_N : N;
+fun incident_A : A;
+fun incident_N : N;
+fun incidental_A : A;
+fun incidentally_Adv : Adv;
+fun incinerate_V2 : V2;
+fun incineration_N : N;
+fun incinerator_N : N;
+fun incipient_A : A;
+fun incise_V2 : V2;
+fun incision_N : N;
+fun incisive_A : A;
+fun incisively_Adv : Adv;
+fun incisor_N : N;
+fun incite_V2 : V2;
+fun incitement_N : N;
+fun incivility_N : N;
+fun incl_PN : PN;
+fun inclemency_N : N;
+fun inclement_A : A;
+fun inclination_N : N;
+fun incline_N : N;
+fun incline_V : V;
+fun incline_V2 : V2;
+fun inclose_V2 : V2;
+fun inclosure_N : N;
+fun include_V2 : V2;
+fun inclusion_N : N;
+fun inclusive_A : A;
+fun inclusively_Adv : Adv;
+fun incognito_A : A;
+fun incognito_Adv : Adv;
+fun incoherence_N : N;
+fun incoherent_A : A;
+fun incoherently_Adv : Adv;
+fun incombustible_A : A;
+fun income_N : N;
+fun income_tax_N : N;
+fun incoming_A : A;
+fun incommensurable_A : A;
+fun incommensurate_A : A;
+fun incommode_V2 : V2;
+fun incommunicado_A : A;
+fun incomparable_A : A;
+fun incomparably_Adv : Adv;
+fun incompatibility_N : N;
+fun incompatible_A : A;
+fun incompetence_N : N;
+fun incompetency_N : N;
+fun incompetent_A : A;
+fun incompetently_Adv : Adv;
+fun incomplete_A : A;
+fun incompletely_Adv : Adv;
+fun incomprehensibility_N : N;
+fun incomprehensible_A : A;
+fun incomprehension_N : N;
+fun incompressible_A : A;
+fun inconceivable_A : A;
+fun inconclusive_A : A;
+fun inconclusively_Adv : Adv;
+fun incongruity_N : N;
+fun incongruous_A : A;
+fun incongruously_Adv : Adv;
+fun inconsequent_A : A;
+fun inconsequential_A : A;
+fun inconsequentially_Adv : Adv;
+fun inconsequently_Adv : Adv;
+fun inconsiderable_A : A;
+fun inconsiderate_A : A;
+fun inconsiderately_Adv : Adv;
+fun inconsistency_N : N;
+fun inconsistent_A : A;
+fun inconsistently_Adv : Adv;
+fun inconsolable_A : A;
+fun inconspicuous_A : A;
+fun inconspicuously_Adv : Adv;
+fun inconstancy_N : N;
+fun inconstant_A : A;
+fun incontestable_A : A;
+fun incontinence_N : N;
+fun incontinent_A : A;
+fun incontrovertible_A : A;
+fun inconvenience_N : N;
+fun inconvenience_V2 : V2;
+fun inconvenient_A : A;
+fun inconveniently_Adv : Adv;
+fun inconvertibility_N : N;
+fun inconvertible_A : A;
+fun incorporate_A : A;
+fun incorporate_V : V;
+fun incorporate_V2 : V2;
+fun incorporation_N : N;
+fun incorporeal_A : A;
+fun incorrect_A : A;
+fun incorrectly_Adv : Adv;
+fun incorrectness_N : N;
+fun incorrigible_A : A;
+fun incorruptibility_N : N;
+fun incorruptible_A : A;
+fun increase_N : N;
+fun increase_V : V;
+fun increase_V2 : V2;
+fun increasingly_Adv : Adv;
+fun incredibility_N : N;
+fun incredible_A : A;
+fun incredibly_Adv : Adv;
+fun incredulity_N : N;
+fun incredulous_A : A;
+fun incredulously_Adv : Adv;
+fun increment_N : N;
+fun incremental_A : A;
+fun incriminate_V2 : V2;
+fun incrustation_N : N;
+fun incubate_V : V;
+fun incubate_V2 : V2;
+fun incubation_N : N;
+fun incubator_N : N;
+fun incubus_N : N;
+fun inculcate_V2 : V2;
+fun inculpate_V2 : V2;
+fun incumbency_N : N;
+fun incumbent_A : A;
+fun incumbent_N : N;
+fun incur_V2 : V2;
+fun incurable_A : A;
+fun incurable_N : N;
+fun incurably_Adv : Adv;
+fun incurious_A : A;
+fun incursion_N : N;
+fun incurved_A : A;
+fun indebted_A : A;
+fun indebtedness_N : N;
+fun indecency_N : N;
+fun indecent_A : A;
+fun indecently_Adv : Adv;
+fun indecipherable_A : A;
+fun indecision_N : N;
+fun indecisive_A : A;
+fun indecisively_Adv : Adv;
+fun indecorous_A : A;
+fun indecorously_Adv : Adv;
+fun indecorum_N : N;
+fun indeed_Adv : Adv;
+fun indefatigable_A : A;
+fun indefeasible_A : A;
+fun indefensible_A : A;
+fun indefinable_A : A;
+fun indefinite_A : A;
+fun indefinitely_Adv : Adv;
+fun indelible_A : A;
+fun indelibly_Adv : Adv;
+fun indelicacy_N : N;
+fun indelicate_A : A;
+fun indemnification_N : N;
+fun indemnify_V2 : V2;
+fun indemnity_N : N;
+fun indent_N : N;
+fun indent_V : V;
+fun indent_V2 : V2;
+fun indentation_N : N;
+fun indenture_N : N;
+fun indenture_V2 : V2;
+fun independence_N : N;
+fun independent_A : A;
+fun independent_N : N;
+fun independently_Adv : Adv;
+fun indescribable_A : A;
+fun indescribably_Adv : Adv;
+fun indestructibility_N : N;
+fun indestructible_A : A;
+fun indeterminable_A : A;
+fun indeterminably_Adv : Adv;
+fun indeterminacy_N : N;
+fun indeterminate_A : A;
+fun index_N : N;
+fun index_V2 : V2;
+fun indexer_N : N;
+fun india_PN : PN;
+fun india_rubber_N : N;
+fun indiaman_N : N;
+fun indian_A : A;
+fun indian_N : N;
+fun indiana_PN : PN;
+fun indianapolis_PN : PN;
+fun indicate_V2 : V2;
+fun indication_N : N;
+fun indicative_A : A;
+fun indicator_N : N;
+fun indict_V2 : V2;
+fun indictable_A : A;
+fun indictment_N : N;
+fun indies_PN : PN;
+fun indifference_N : N;
+fun indifferent_A : A;
+fun indifferently_Adv : Adv;
+fun indigence_N : N;
+fun indigenous_A : A;
+fun indigent_A : A;
+fun indigestible_A : A;
+fun indigestion_N : N;
+fun indignant_A : A;
+fun indignantly_Adv : Adv;
+fun indignation_N : N;
+fun indignity_N : N;
+fun indigo_N : N;
+fun indirect_A : A;
+fun indirectly_Adv : Adv;
+fun indirectness_N : N;
+fun indiscernible_A : A;
+fun indiscipline_N : N;
+fun indiscreet_A : A;
+fun indiscreetly_Adv : Adv;
+fun indiscrete_A : A;
+fun indiscretion_N : N;
+fun indiscriminate_A : A;
+fun indiscriminately_Adv : Adv;
+fun indispensability_N : N;
+fun indispensable_A : A;
+fun indisposed_A : A;
+fun indisposition_N : N;
+fun indisputable_A : A;
+fun indissoluble_A : A;
+fun indistinct_A : A;
+fun indistinctly_Adv : Adv;
+fun indistinctness_N : N;
+fun indistinguishable_A : A;
+fun indite_V2 : V2;
+fun individual_A : A;
+fun individual_N : N;
+fun individualism_N : N;
+fun individualist_N : N;
+fun individualistic_A : A;
+fun individuality_N : N;
+fun individualize_V2 : V2;
+fun individually_Adv : Adv;
+fun indivisible_A : A;
+fun indo_european_A : A;
+fun indoctrinate_V2 : V2;
+fun indoctrination_N : N;
+fun indolence_N : N;
+fun indolent_A : A;
+fun indolently_Adv : Adv;
+fun indomitable_A : A;
+fun indonesia_PN : PN;
+fun indonesian_A : A;
+fun indonesian_N : N;
+fun indoor_A : A;
+fun indoors_Adv : Adv;
+fun indore_PN : PN;
+fun indorse_V2 : V2;
+fun indrawn_A : A;
+fun indubitable_A : A;
+fun indubitably_Adv : Adv;
+fun induce_V2 : V2;
+fun inducement_N : N;
+fun induct_V2 : V2;
+fun induction_N : N;
+fun inductive_A : A;
+fun indue_V2 : V2;
+fun indulge_V : V;
+fun indulge_V2 : V2;
+fun indulgence_N : N;
+fun indulgent_A : A;
+fun indulgently_Adv : Adv;
+fun industrial_A : A;
+fun industrialism_N : N;
+fun industrialist_N : N;
+fun industrialization_N : N;
+fun industrialized_A : A;
+fun industrious_A : A;
+fun industriously_Adv : Adv;
+fun industry_N : N;
+fun indwelling_A : A;
+fun inebriate_A : A;
+fun inebriate_N : N;
+fun inebriate_V2 : V2;
+fun inebriation_N : N;
+fun inebriety_N : N;
+fun inedible_A : A;
+fun ineffable_A : A;
+fun ineffably_Adv : Adv;
+fun ineffective_A : A;
+fun ineffectively_Adv : Adv;
+fun ineffectiveness_N : N;
+fun ineffectual_A : A;
+fun ineffectuality_N : N;
+fun ineffectually_Adv : Adv;
+fun inefficiency_N : N;
+fun inefficient_A : A;
+fun inefficiently_Adv : Adv;
+fun inelastic_A : A;
+fun inelegance_N : N;
+fun inelegant_A : A;
+fun inelegantly_Adv : Adv;
+fun ineligibility_N : N;
+fun ineligible_A : A;
+fun ineluctable_A : A;
+fun inept_A : A;
+fun ineptitude_N : N;
+fun ineptly_Adv : Adv;
+fun inequality_N : N;
+fun inequitable_A : A;
+fun inequity_N : N;
+fun ineradicable_A : A;
+fun inert_A : A;
+fun inertia_N : N;
+fun inescapable_A : A;
+fun inescapably_Adv : Adv;
+fun inessential_A : A;
+fun inessential_N : N;
+fun inestimable_A : A;
+fun inevitability_N : N;
+fun inevitable_A : A;
+fun inevitably_Adv : Adv;
+fun inexact_A : A;
+fun inexactitude_N : N;
+fun inexcusable_A : A;
+fun inexhaustible_A : A;
+fun inexorable_A : A;
+fun inexorably_Adv : Adv;
+fun inexpediency_N : N;
+fun inexpedient_A : A;
+fun inexpensive_A : A;
+fun inexpensively_Adv : Adv;
+fun inexperience_N : N;
+fun inexperienced_A : A;
+fun inexpert_A : A;
+fun inexpertly_Adv : Adv;
+fun inexpiable_A : A;
+fun inexplicable_A : A;
+fun inexpressible_A : A;
+fun inextinguishable_A : A;
+fun inextricable_A : A;
+fun inextricably_Adv : Adv;
+fun infallibility_N : N;
+fun infallible_A : A;
+fun infamous_A : A;
+fun infamy_N : N;
+fun infancy_N : N;
+fun infant_N : N;
+fun infanticide_N : N;
+fun infantile_A : A;
+fun infantilism_N : N;
+fun infantry_N : N;
+fun infantryman_N : N;
+fun infatuate_V2 : V2;
+fun infatuation_N : N;
+fun infect_V2 : V2;
+fun infection_N : N;
+fun infectious_A : A;
+fun infer_V2 : V2;
+fun inference_N : N;
+fun inferential_A : A;
+fun inferior_A : A;
+fun inferior_N : N;
+fun inferiority_N : N;
+fun infernal_A : A;
+fun infernally_Adv : Adv;
+fun inferno_N : N;
+fun infertile_A : A;
+fun infertility_N : N;
+fun infest_V2 : V2;
+fun infestation_N : N;
+fun infidel_N : N;
+fun infidelity_N : N;
+fun infield_N : N;
+fun infiltrate_V : V;
+fun infiltrate_V2 : V2;
+fun infiltration_N : N;
+fun infinite_A : A;
+fun infinitely_Adv : Adv;
+fun infinitesimal_A : A;
+fun infinitive_A : A;
+fun infinitive_N : N;
+fun infinitude_N : N;
+fun infinity_N : N;
+fun infirm_A : A;
+fun infirmary_N : N;
+fun infirmity_N : N;
+fun inflame_V : V;
+fun inflame_V2 : V2;
+fun inflammable_A : A;
+fun inflammation_N : N;
+fun inflammatory_A : A;
+fun inflatable_A : A;
+fun inflate_V2 : V2;
+fun inflation_N : N;
+fun inflationary_A : A;
+fun inflect_V2 : V2;
+fun inflection_N : N;
+fun inflectional_A : A;
+fun inflexibility_N : N;
+fun inflexible_A : A;
+fun inflexibly_Adv : Adv;
+fun inflexion_N : N;
+fun inflict_V2 : V2;
+fun infliction_N : N;
+fun inflorescence_N : N;
+fun inflow_N : N;
+fun influence_N : N;
+fun influence_V2 : V2;
+fun influential_A : A;
+fun influentially_Adv : Adv;
+fun influenza_N : N;
+fun influx_N : N;
+fun info_N : N;
+fun inform_V : V;
+fun inform_V2 : V2;
+fun informal_A : A;
+fun informality_N : N;
+fun informally_Adv : Adv;
+fun informant_N : N;
+fun information_N : N;
+fun informative_A : A;
+fun informatively_Adv : Adv;
+fun informer_N : N;
+fun infra_Adv : Adv;
+fun infra_dig_A : A;
+fun infra_red_A : A;
+fun infraction_N : N;
+fun infrastructure_N : N;
+fun infrequency_N : N;
+fun infrequent_A : A;
+fun infrequently_Adv : Adv;
+fun infringe_V : V;
+fun infringe_V2 : V2;
+fun infringement_N : N;
+fun infuriate_V2 : V2;
+fun infuse_V : V;
+fun infuse_V2 : V2;
+fun infusion_N : N;
+fun ingatestone_PN : PN;
+fun ingathering_N : N;
+fun ingenious_A : A;
+fun ingeniously_Adv : Adv;
+fun ingenuity_N : N;
+fun ingenuous_A : A;
+fun ingenuously_Adv : Adv;
+fun ingenuousness_N : N;
+fun ingest_V2 : V2;
+fun ingle_nook_N : N;
+fun inglorious_A : A;
+fun ingloriously_Adv : Adv;
+fun ingoing_A : A;
+fun ingot_N : N;
+fun ingraft_V2 : V2;
+fun ingrained_A : A;
+fun ingratiate_V2 : V2;
+fun ingratiatingly_Adv : Adv;
+fun ingratitude_N : N;
+fun ingredient_N : N;
+fun ingress_N : N;
+fun ingrid_PN : PN;
+fun ingrowing_A : A;
+fun ingenue_N : N;
+fun inhabit_V2 : V2;
+fun inhabitable_A : A;
+fun inhabitant_N : N;
+fun inhalation_N : N;
+fun inhale_V : V;
+fun inhale_V2 : V2;
+fun inhaler_N : N;
+fun inharmonious_A : A;
+fun inherent_A : A;
+fun inherently_Adv : Adv;
+fun inherit_V : V;
+fun inherit_V2 : V2;
+fun inheritance_N : N;
+fun inheritor_N : N;
+fun inhibit_V2 : V2;
+fun inhibition_N : N;
+fun inhibitor_N : N;
+fun inhibitory_A : A;
+fun inhospitable_A : A;
+fun inhuman_A : A;
+fun inhumane_A : A;
+fun inhumanely_Adv : Adv;
+fun inhumanity_N : N;
+fun inimical_A : A;
+fun inimitable_A : A;
+fun inimitably_Adv : Adv;
+fun iniquitous_A : A;
+fun iniquitously_Adv : Adv;
+fun iniquity_N : N;
+fun initial_A : A;
+fun initial_N : N;
+fun initial_V2 : V2;
+fun initially_Adv : Adv;
+fun initiate_A : A;
+fun initiate_N : N;
+fun initiate_V2 : V2;
+fun initiation_N : N;
+fun initiative_N : N;
+fun inject_V2 : V2;
+fun injection_N : N;
+fun injudicious_A : A;
+fun injudiciously_Adv : Adv;
+fun injunction_N : N;
+fun injure_V2 : V2;
+fun injured_A : A;
+fun injurious_A : A;
+fun injury_N : N;
+fun injustice_N : N;
+fun ink_N : N;
+fun ink_V2 : V2;
+fun ink_bottle_N : N;
+fun ink_pad_N : N;
+fun ink_pot_N : N;
+fun inkling_N : N;
+fun inkstand_N : N;
+fun inkwell_N : N;
+fun inky_A : A;
+fun inland_A : A;
+fun inland_Adv : Adv;
+fun inlay_N : N;
+fun inlay_V2 : V2;
+fun inlet_N : N;
+fun inmate_N : N;
+fun inmost_A : A;
+fun inn_N : N;
+fun innate_A : A;
+fun innately_Adv : Adv;
+fun inner_A : A;
+fun innermost_A : A;
+fun inning_N : N;
+fun innings_N : N;
+fun innkeeper_N : N;
+fun innocence_N : N;
+fun innocent_A : A;
+fun innocent_N : N;
+fun innocently_Adv : Adv;
+fun innocuous_A : A;
+fun innovate_V : V;
+fun innovation_N : N;
+fun innovator_N : N;
+fun innsbruck_PN : PN;
+fun innuendo_N : N;
+fun innumerable_A : A;
+fun inoculate_V2 : V2;
+fun inoculation_N : N;
+fun inoffensive_A : A;
+fun inoffensively_Adv : Adv;
+fun inoperable_A : A;
+fun inoperative_A : A;
+fun inopportune_A : A;
+fun inopportunely_Adv : Adv;
+fun inordinate_A : A;
+fun inordinately_Adv : Adv;
+fun inorganic_A : A;
+fun inorganically_Adv : Adv;
+fun inpouring_A : A;
+fun inpouring_N : N;
+fun input_N : N;
+fun inquest_N : N;
+fun inquietude_N : N;
+fun inquire_V : V;
+fun inquire_V2 : V2;
+fun inquirer_N : N;
+fun inquiring_A : A;
+fun inquiringly_Adv : Adv;
+fun inquiry_N : N;
+fun inquisition_N : N;
+fun inquisitive_A : A;
+fun inquisitively_Adv : Adv;
+fun inquisitiveness_N : N;
+fun inquisitor_N : N;
+fun inquisitorial_A : A;
+fun inroad_N : N;
+fun inrush_N : N;
+fun ins_N : N;
+fun insane_A : A;
+fun insanely_Adv : Adv;
+fun insanitary_A : A;
+fun insanity_N : N;
+fun insatiable_A : A;
+fun insatiably_Adv : Adv;
+fun insatiate_A : A;
+fun inscribe_V2 : V2;
+fun inscription_N : N;
+fun inscrutable_A : A;
+fun insect_N : N;
+fun insect_powder_N : N;
+fun insecticide_N : N;
+fun insectivorous_A : A;
+fun insecure_A : A;
+fun insecurely_Adv : Adv;
+fun insecurity_N : N;
+fun inseminate_V2 : V2;
+fun insemination_N : N;
+fun insensate_A : A;
+fun insensibility_N : N;
+fun insensible_A : A;
+fun insensibly_Adv : Adv;
+fun insensitive_A : A;
+fun insensitively_Adv : Adv;
+fun insensitivity_N : N;
+fun insentient_A : A;
+fun inseparable_A : A;
+fun insert_N : N;
+fun insert_V2 : V2;
+fun insertion_N : N;
+fun inset_N : N;
+fun inset_V2 : V2;
+fun inshore_A : A;
+fun inshore_Adv : Adv;
+fun inside_A : A;
+fun inside_Adv : Adv;
+fun inside_N : N;
+fun insider_N : N;
+fun insidious_A : A;
+fun insidiously_Adv : Adv;
+fun insidiousness_N : N;
+fun insight_N : N;
+fun insignificance_N : N;
+fun insignificant_A : A;
+fun insignificantly_Adv : Adv;
+fun insincere_A : A;
+fun insincerely_Adv : Adv;
+fun insincerity_N : N;
+fun insinuate_V2 : V2;
+fun insinuatingly_Adv : Adv;
+fun insinuation_N : N;
+fun insipid_A : A;
+fun insipidity_N : N;
+fun insipidly_Adv : Adv;
+fun insipidness_N : N;
+fun insist_V : V;
+fun insist_V2 : V2;
+fun insistence_N : N;
+fun insistent_A : A;
+fun insofar_Adv : Adv;
+fun insole_N : N;
+fun insolence_N : N;
+fun insolent_A : A;
+fun insolently_Adv : Adv;
+fun insoluble_A : A;
+fun insolvency_N : N;
+fun insolvent_A : A;
+fun insolvent_N : N;
+fun insomnia_N : N;
+fun insomniac_N : N;
+fun insomuch_Adv : Adv;
+fun insouciance_N : N;
+fun insouciant_A : A;
+fun inspan_V2 : V2;
+fun inspect_V2 : V2;
+fun inspection_N : N;
+fun inspector_N : N;
+fun inspectorate_N : N;
+fun inspiration_N : N;
+fun inspirational_A : A;
+fun inspirationally_Adv : Adv;
+fun inspire_V2 : V2;
+fun inspired_A : A;
+fun inst_PN : PN;
+fun instability_N : N;
+fun install_V2 : V2;
+fun installation_N : N;
+fun instalment_N : N;
+fun instance_N : N;
+fun instance_V2 : V2;
+fun instant_A : A;
+fun instant_N : N;
+fun instantaneous_A : A;
+fun instantaneously_Adv : Adv;
+fun instantly_Adv : Adv;
+fun instead_Adv : Adv;
+fun instep_N : N;
+fun instigate_V2 : V2;
+fun instigation_N : N;
+fun instigator_N : N;
+fun instil_V2 : V2;
+fun instillation_N : N;
+fun instinct_A : A;
+fun instinct_N : N;
+fun instinctive_A : A;
+fun instinctively_Adv : Adv;
+fun institute_N : N;
+fun institute_V2 : V2;
+fun institution_N : N;
+fun institutional_A : A;
+fun institutionalize_V2 : V2;
+fun institutionally_Adv : Adv;
+fun instruct_V2 : V2;
+fun instruction_N : N;
+fun instructional_A : A;
+fun instructive_A : A;
+fun instructively_Adv : Adv;
+fun instructor_N : N;
+fun instructress_N : N;
+fun instrument_N : N;
+fun instrumental_A : A;
+fun instrumentalist_N : N;
+fun instrumentality_N : N;
+fun instrumentation_N : N;
+fun insubordinate_A : A;
+fun insubordination_N : N;
+fun insubstantial_A : A;
+fun insubstantially_Adv : Adv;
+fun insufferable_A : A;
+fun insufficiency_N : N;
+fun insufficient_A : A;
+fun insufficiently_Adv : Adv;
+fun insular_A : A;
+fun insularism_N : N;
+fun insularity_N : N;
+fun insulate_V2 : V2;
+fun insulation_N : N;
+fun insulator_N : N;
+fun insulin_N : N;
+fun insult_N : N;
+fun insult_V2 : V2;
+fun insulting_A : A;
+fun insultingly_Adv : Adv;
+fun insuperable_A : A;
+fun insuperably_Adv : Adv;
+fun insupportable_A : A;
+fun insurance_N : N;
+fun insure_V2 : V2;
+fun insurgent_A : A;
+fun insurgent_N : N;
+fun insurmountable_A : A;
+fun insurrection_N : N;
+fun intact_A : A;
+fun intaglio_N : N;
+fun intake_N : N;
+fun intangibility_N : N;
+fun intangible_A : A;
+fun intangibles_N : N;
+fun integer_N : N;
+fun integral_A : A;
+fun integrally_Adv : Adv;
+fun integrate_V2 : V2;
+fun integration_N : N;
+fun integrity_N : N;
+fun integument_N : N;
+fun intellect_N : N;
+fun intellectual_A : A;
+fun intellectual_N : N;
+fun intellectually_Adv : Adv;
+fun intelligence_N : N;
+fun intelligent_A : A;
+fun intelligently_Adv : Adv;
+fun intelligentsia_N : N;
+fun intelligibility_N : N;
+fun intelligible_A : A;
+fun intelligibly_Adv : Adv;
+fun intemperance_N : N;
+fun intemperate_A : A;
+fun intemperately_Adv : Adv;
+fun intend_V2 : V2;
+fun intense_A : A;
+fun intensely_Adv : Adv;
+fun intensification_N : N;
+fun intensify_V : V;
+fun intensify_V2 : V2;
+fun intensity_N : N;
+fun intensive_A : A;
+fun intensively_Adv : Adv;
+fun intent_A : A;
+fun intent_N : N;
+fun intention_N : N;
+fun intentional_A : A;
+fun intentionally_Adv : Adv;
+fun intently_Adv : Adv;
+fun intentness_N : N;
+fun inter_V2 : V2;
+fun inter_alia_Adv : Adv;
+fun interact_V : V;
+fun interaction_N : N;
+fun interactive_A : A;
+fun interbreed_V : V;
+fun interbreed_V2 : V2;
+fun intercalary_A : A;
+fun intercede_V : V;
+fun intercept_V2 : V2;
+fun interception_N : N;
+fun interceptor_N : N;
+fun intercession_N : N;
+fun interchange_N : N;
+fun interchange_V2 : V2;
+fun interchangeable_A : A;
+fun interchangeably_Adv : Adv;
+fun intercollegiate_A : A;
+fun intercom_N : N;
+fun intercommunicate_V : V;
+fun intercommunication_N : N;
+fun intercommunion_N : N;
+fun interconnect_V : V;
+fun interconnect_V2 : V2;
+fun interconnectedness_N : N;
+fun interconnection_N : N;
+fun intercontinental_A : A;
+fun intercourse_N : N;
+fun interdenominational_A : A;
+fun interdepartmental_A : A;
+fun interdepartmentally_Adv : Adv;
+fun interdependence_N : N;
+fun interdependent_A : A;
+fun interdict_N : N;
+fun interdict_V2 : V2;
+fun interdiction_N : N;
+fun interdisciplinary_A : A;
+fun interest_N : N;
+fun interest_V2 : V2;
+fun interested_A : A;
+fun interesting_A : A;
+fun interestingly_Adv : Adv;
+fun interface_N : N;
+fun interfere_V : V;
+fun interference_N : N;
+fun interim_N : N;
+fun interior_A : A;
+fun interior_N : N;
+fun interject_V2 : V2;
+fun interjection_N : N;
+fun interlace_V : V;
+fun interlace_V2 : V2;
+fun interlard_V2 : V2;
+fun interleave_V2 : V2;
+fun interlink_V : V;
+fun interlink_V2 : V2;
+fun interlock_V : V;
+fun interlock_V2 : V2;
+fun interlocutor_N : N;
+fun interloper_N : N;
+fun interlude_N : N;
+fun intermarriage_N : N;
+fun intermarry_V : V;
+fun intermediary_N : N;
+fun intermediate_A : A;
+fun intermediate_N : N;
+fun intermediately_Adv : Adv;
+fun interment_N : N;
+fun intermezzo_N : N;
+fun interminable_A : A;
+fun interminably_Adv : Adv;
+fun intermingle_V : V;
+fun intermingle_V2 : V2;
+fun intermission_N : N;
+fun intermittent_A : A;
+fun intermittently_Adv : Adv;
+fun intermix_V : V;
+fun intermix_V2 : V2;
+fun intermixture_N : N;
+fun intern_N : N;
+fun intern_V2 : V2;
+fun internal_A : A;
+fun internalize_V2 : V2;
+fun internally_Adv : Adv;
+fun international_A : A;
+fun international_N : N;
+fun internationale_N : N;
+fun internationalism_N : N;
+fun internationalist_N : N;
+fun internationalization_N : N;
+fun internationalize_V2 : V2;
+fun internationally_Adv : Adv;
+fun interne_N : N;
+fun internecine_A : A;
+fun internee_N : N;
+fun internment_N : N;
+fun interpellate_V2 : V2;
+fun interpellation_N : N;
+fun interphone_N : N;
+fun interplanetary_A : A;
+fun interplay_N : N;
+fun interpol_PN : PN;
+fun interpolate_V2 : V2;
+fun interpolation_N : N;
+fun interpose_V : V;
+fun interpose_V2 : V2;
+fun interposition_N : N;
+fun interpret_V : V;
+fun interpret_V2 : V2;
+fun interpretation_N : N;
+fun interpretative_A : A;
+fun interpreter_N : N;
+fun interracial_A : A;
+fun interregnum_N : N;
+fun interrelate_V : V;
+fun interrelate_V2 : V2;
+fun interrelation_N : N;
+fun interrelationship_N : N;
+fun interrogate_V2 : V2;
+fun interrogation_N : N;
+fun interrogative_A : A;
+fun interrogative_N : N;
+fun interrogatively_Adv : Adv;
+fun interrogator_N : N;
+fun interrogatory_A : A;
+fun interrupt_V : V;
+fun interrupt_V2 : V2;
+fun interrupter_N : N;
+fun interruption_N : N;
+fun intersect_V : V;
+fun intersect_V2 : V2;
+fun intersection_N : N;
+fun intersperse_V2 : V2;
+fun interstate_A : A;
+fun interstellar_A : A;
+fun interstice_N : N;
+fun intertribal_A : A;
+fun intertwine_V : V;
+fun intertwine_V2 : V2;
+fun interval_N : N;
+fun intervene_V : V;
+fun intervention_N : N;
+fun interview_N : N;
+fun interview_V2 : V2;
+fun interviewer_N : N;
+fun interweave_V2 : V2;
+fun intestate_A : A;
+fun intestinal_A : A;
+fun intestine_N : N;
+fun intimacy_N : N;
+fun intimate_A : A;
+fun intimate_N : N;
+fun intimate_V2 : V2;
+fun intimately_Adv : Adv;
+fun intimation_N : N;
+fun intimidate_V2 : V2;
+fun intimidation_N : N;
+fun intolerable_A : A;
+fun intolerably_Adv : Adv;
+fun intolerance_N : N;
+fun intolerant_A : A;
+fun intolerantly_Adv : Adv;
+fun intonation_N : N;
+fun intone_V : V;
+fun intone_V2 : V2;
+fun intoxicant_A : A;
+fun intoxicant_N : N;
+fun intoxicate_V2 : V2;
+fun intoxication_N : N;
+fun intra_uterine_A : A;
+fun intractability_N : N;
+fun intractable_A : A;
+fun intramural_A : A;
+fun intransigence_N : N;
+fun intransigent_A : A;
+fun intransitive_A : A;
+fun intransitively_Adv : Adv;
+fun intravenous_A : A;
+fun intravenously_Adv : Adv;
+fun intrench_V2 : V2;
+fun intrepid_A : A;
+fun intrepidity_N : N;
+fun intrepidly_Adv : Adv;
+fun intricacy_N : N;
+fun intricate_A : A;
+fun intricately_Adv : Adv;
+fun intrigue_N : N;
+fun intrigue_V : V;
+fun intrigue_V2 : V2;
+fun intrinsic_A : A;
+fun intrinsically_Adv : Adv;
+fun intro_N : N;
+fun introduce_V2 : V2;
+fun introduction_N : N;
+fun introductory_A : A;
+fun introspect_V : V;
+fun introspection_N : N;
+fun introspective_A : A;
+fun introversion_N : N;
+fun introvert_N : N;
+fun introvert_V2 : V2;
+fun intrude_V : V;
+fun intrude_V2 : V2;
+fun intruder_N : N;
+fun intrusion_N : N;
+fun intrusive_A : A;
+fun intrust_V2 : V2;
+fun intuit_V : V;
+fun intuit_V2 : V2;
+fun intuition_N : N;
+fun intuitive_A : A;
+fun intuitively_Adv : Adv;
+fun intumescence_N : N;
+fun inundate_V2 : V2;
+fun inundation_N : N;
+fun inure_V2 : V2;
+fun invade_V2 : V2;
+fun invader_N : N;
+fun invalid_A : A;
+fun invalid_N : N;
+fun invalid_V2 : V2;
+fun invalidate_V2 : V2;
+fun invalidation_N : N;
+fun invalidism_N : N;
+fun invalidity_N : N;
+fun invaluable_A : A;
+fun invariable_A : A;
+fun invariably_Adv : Adv;
+fun invasion_N : N;
+fun invasive_A : A;
+fun invective_N : N;
+fun inveigh_V : V;
+fun inveigle_V2 : V2;
+fun invent_V2 : V2;
+fun invention_N : N;
+fun inventive_A : A;
+fun inventively_Adv : Adv;
+fun inventor_N : N;
+fun inventory_N : N;
+fun inverkeithing_PN : PN;
+fun inverness_PN : PN;
+fun inverse_A : A;
+fun inverse_N : N;
+fun inversely_Adv : Adv;
+fun inversion_N : N;
+fun invert_V2 : V2;
+fun invertebrate_A : A;
+fun invertebrate_N : N;
+fun inverurie_PN : PN;
+fun invest_V : V;
+fun invest_V2 : V2;
+fun investigate_V2 : V2;
+fun investigation_N : N;
+fun investigator_N : N;
+fun investiture_N : N;
+fun investment_N : N;
+fun investor_N : N;
+fun inveterate_A : A;
+fun invidious_A : A;
+fun invidiously_Adv : Adv;
+fun invigilate_V : V;
+fun invigilation_N : N;
+fun invigilator_N : N;
+fun invigorate_V2 : V2;
+fun invincibility_N : N;
+fun invincible_A : A;
+fun invincibly_Adv : Adv;
+fun inviolable_A : A;
+fun inviolate_A : A;
+fun invisibility_N : N;
+fun invisible_A : A;
+fun invisibly_Adv : Adv;
+fun invitation_N : N;
+fun invite_N : N;
+fun invite_V2 : V2;
+fun inviting_A : A;
+fun invitingly_Adv : Adv;
+fun invocation_N : N;
+fun invoice_N : N;
+fun invoice_V2 : V2;
+fun invoke_V2 : V2;
+fun involuntarily_Adv : Adv;
+fun involuntary_A : A;
+fun involute_A : A;
+fun involution_N : N;
+fun involve_V2 : V2;
+fun involved_A : A;
+fun involvement_N : N;
+fun invulnerable_A : A;
+fun inward_A : A;
+fun inward_Adv : Adv;
+fun inwardly_Adv : Adv;
+fun inwardness_N : N;
+fun inwards_Adv : Adv;
+fun inwrought_A : A;
+fun iodine_N : N;
+fun ion_N : N;
+fun ionic_A : A;
+fun ionization_N : N;
+fun ionize_V : V;
+fun ionize_V2 : V2;
+fun ionosphere_N : N;
+fun iota_N : N;
+fun iou_N : N;
+fun ious_N : N;
+fun iowa_PN : PN;
+fun ipse_dixit_N : N;
+fun ipso_facto_Adv : Adv;
+fun ipswich_PN : PN;
+fun iq_N : N;
+fun ira_N : N;
+fun iran_PN : PN;
+fun iranian_A : A;
+fun iranian_N : N;
+fun iraq_PN : PN;
+fun iraqi_A : A;
+fun iraqi_N : N;
+fun irascibility_N : N;
+fun irascible_A : A;
+fun irate_A : A;
+fun irately_Adv : Adv;
+fun ire_N : N;
+fun ireful_A : A;
+fun ireland_PN : PN;
+fun irene_PN : PN;
+fun iridescence_N : N;
+fun iridescent_A : A;
+fun iridium_N : N;
+fun iris_N : N;
+fun iris_PN : PN;
+fun irish_A : A;
+fun irish_N : N;
+fun irishman_N : N;
+fun irishwoman_N : N;
+fun irk_V2 : V2;
+fun irksome_A : A;
+fun iron_N : N;
+fun iron_V : V;
+fun iron_V2 : V2;
+fun iron_foundry_N : N;
+fun iron_grey_A : A;
+fun iron_grey_N : N;
+fun ironclad_A : A;
+fun ironic_A : A;
+fun ironical_A : A;
+fun ironically_Adv : Adv;
+fun ironing_board_N : N;
+fun ironmonger_N : N;
+fun ironmongery_N : N;
+fun ironmould_N : N;
+fun ironside_N : N;
+fun ironware_N : N;
+fun ironwork_N : N;
+fun ironworks_N : N;
+fun irony_N : N;
+fun irradiate_V2 : V2;
+fun irrational_A : A;
+fun irrationally_Adv : Adv;
+fun irreconcilable_A : A;
+fun irrecoverable_A : A;
+fun irredeemable_A : A;
+fun irredentist_N : N;
+fun irreducible_A : A;
+fun irrefutable_A : A;
+fun irregular_A : A;
+fun irregular_N : N;
+fun irregularity_N : N;
+fun irregularly_Adv : Adv;
+fun irrelevance_N : N;
+fun irrelevancy_N : N;
+fun irrelevant_A : A;
+fun irrelevantly_Adv : Adv;
+fun irreligious_A : A;
+fun irremediable_A : A;
+fun irremovable_A : A;
+fun irreparable_A : A;
+fun irreplaceable_A : A;
+fun irrepressible_A : A;
+fun irreproachable_A : A;
+fun irresistible_A : A;
+fun irresolute_A : A;
+fun irresolution_N : N;
+fun irrespective_A : A;
+fun irresponsibility_N : N;
+fun irresponsible_A : A;
+fun irretrievable_A : A;
+fun irretrievably_Adv : Adv;
+fun irreverence_N : N;
+fun irreverent_A : A;
+fun irreverently_Adv : Adv;
+fun irreversibility_N : N;
+fun irreversible_A : A;
+fun irreversibly_Adv : Adv;
+fun irrevocable_A : A;
+fun irridentism_N : N;
+fun irrigate_V2 : V2;
+fun irrigation_N : N;
+fun irritability_N : N;
+fun irritable_A : A;
+fun irritably_Adv : Adv;
+fun irritant_A : A;
+fun irritant_N : N;
+fun irritate_V2 : V2;
+fun irritation_N : N;
+fun irruption_N : N;
+fun irthlingborough_PN : PN;
+fun irvine_PN : PN;
+fun isaac_PN : PN;
+fun isabel_PN : PN;
+fun isabella_PN : PN;
+fun isinglass_N : N;
+fun islam_N : N;
+fun islamic_A : A;
+fun island_N : N;
+fun islander_N : N;
+fun isle_N : N;
+fun islet_N : N;
+fun islington_PN : PN;
+fun ism_N : N;
+fun isobar_N : N;
+fun isobel_PN : PN;
+fun isolate_V2 : V2;
+fun isolation_N : N;
+fun isolationism_N : N;
+fun isolationist_N : N;
+fun isosceles_A : A;
+fun isotherm_N : N;
+fun isotope_N : N;
+fun israel_PN : PN;
+fun israeli_A : A;
+fun israeli_N : N;
+fun issue_N : N;
+fun issue_V : V;
+fun issue_V2 : V2;
+fun istanbul_PN : PN;
+fun isthmus_N : N;
+fun italian_A : A;
+fun italian_N : N;
+fun italic_A : A;
+fun italicize_V2 : V2;
+fun italy_PN : PN;
+fun itch_N : N;
+fun itch_V : V;
+fun itchy_A : A;
+fun item_Adv : Adv;
+fun item_N : N;
+fun itemize_V2 : V2;
+fun iterate_V2 : V2;
+fun iteration_N : N;
+fun itinerant_A : A;
+fun itinerary_N : N;
+fun itv_N : N;
+fun iud_N : N;
+fun ivan_PN : PN;
+fun iver_PN : PN;
+fun ivied_A : A;
+fun ivor_PN : PN;
+fun ivory_N : N;
+fun ivy_N : N;
+fun ivy_PN : PN;
+fun izmir_PN : PN;
+fun jab_N : N;
+fun jab_V : V;
+fun jab_V2 : V2;
+fun jabalpur_PN : PN;
+fun jabber_N : N;
+fun jabber_V : V;
+fun jabber_V2 : V2;
+fun jabberer_N : N;
+fun jabot_N : N;
+fun jack_N : N;
+fun jack_PN : PN;
+fun jack_V2 : V2;
+fun jack_in_the_box_N : N;
+fun jack_knife_N : N;
+fun jack_knife_V : V;
+fun jack_o'_lantern_N : N;
+fun jack_plane_N : N;
+fun jackal_N : N;
+fun jackanapes_N : N;
+fun jackass_N : N;
+fun jackboot_N : N;
+fun jackdaw_N : N;
+fun jacket_N : N;
+fun jackie_PN : PN;
+fun jackpot_N : N;
+fun jacksonville_PN : PN;
+fun jacob_PN : PN;
+fun jacobean_A : A;
+fun jacobin_A : A;
+fun jacobin_N : N;
+fun jacobinism_N : N;
+fun jacobite_N : N;
+fun jacqueline_PN : PN;
+fun jade_N : N;
+fun jaded_A : A;
+fun jag_N : N;
+fun jag_V2 : V2;
+fun jagged_A : A;
+fun jaggy_A : A;
+fun jaguar_N : N;
+fun jail_N : N;
+fun jail_V2 : V2;
+fun jailer_N : N;
+fun jailor_N : N;
+fun jaipur_PN : PN;
+fun jakarta_PN : PN;
+fun jake_PN : PN;
+fun jakes_N : N;
+fun jalopy_N : N;
+fun jam_N : N;
+fun jam_V : V;
+fun jam_V2 : V2;
+fun jamaica_PN : PN;
+fun jamaican_A : A;
+fun jamaican_N : N;
+fun jamb_N : N;
+fun jamboree_N : N;
+fun james_PN : PN;
+fun jamjar_N : N;
+fun jampack_V2 : V2;
+fun jampot_N : N;
+fun jan_PN : PN;
+fun jane_PN : PN;
+fun janet_PN : PN;
+fun jangle_N : N;
+fun jangle_V : V;
+fun jangle_V2 : V2;
+fun janice_PN : PN;
+fun janie_PN : PN;
+fun janitor_N : N;
+fun january_N : N;
+fun january_PN : PN;
+fun janus_PN : PN;
+fun japan_PN : PN;
+fun japan_V2 : V2;
+fun japanese_A : A;
+fun japanese_N : N;
+fun jape_N : N;
+fun japonica_N : N;
+fun jar_N : N;
+fun jar_V : V;
+fun jar_V2 : V2;
+fun jarful_N : N;
+fun jargon_N : N;
+fun jarring_A : A;
+fun jarringly_Adv : Adv;
+fun jarrow_PN : PN;
+fun jasmine_N : N;
+fun jason_PN : PN;
+fun jasper_N : N;
+fun jaundice_N : N;
+fun jaundice_V2 : V2;
+fun jaunt_N : N;
+fun jaunt_V : V;
+fun jauntily_Adv : Adv;
+fun jauntiness_N : N;
+fun jaunting_car_N : N;
+fun jaunty_A : A;
+fun java_PN : PN;
+fun javanese_A : A;
+fun javanese_N : N;
+fun javelin_N : N;
+fun jaw_N : N;
+fun jaw_V : V;
+fun jawbone_N : N;
+fun jawbreaker_N : N;
+fun jay_N : N;
+fun jaywalk_V : V;
+fun jaywalker_N : N;
+fun jazz_N : N;
+fun jazz_V2 : V2;
+fun jazzy_A : A;
+fun jc_PN : PN;
+fun jealous_A : A;
+fun jealously_Adv : Adv;
+fun jealousy_N : N;
+fun jean_N : N;
+fun jean_PN : PN;
+fun jeanie_PN : PN;
+fun jedburgh_PN : PN;
+fun jeep_N : N;
+fun jeer_N : N;
+fun jeer_V : V;
+fun jeer_V2 : V2;
+fun jeeringly_Adv : Adv;
+fun jeff_PN : PN;
+fun jeffrey_PN : PN;
+fun jehovah_PN : PN;
+fun jejune_A : A;
+fun jejunely_Adv : Adv;
+fun jejuneness_N : N;
+fun jekyll_and_hyde_PN : PN;
+fun jell_V : V;
+fun jell_V2 : V2;
+fun jellaba_N : N;
+fun jellied_A : A;
+fun jelly_N : N;
+fun jelly_V : V;
+fun jelly_V2 : V2;
+fun jellyfish_N : N;
+fun jemmy_N : N;
+fun jennifer_PN : PN;
+fun jenny_N : N;
+fun jenny_PN : PN;
+fun jeopardize_V2 : V2;
+fun jeopardy_N : N;
+fun jerboa_N : N;
+fun jeremiad_N : N;
+fun jeremy_PN : PN;
+fun jerk_N : N;
+fun jerk_V : V;
+fun jerk_V2 : V2;
+fun jerkily_Adv : Adv;
+fun jerkin_N : N;
+fun jerkiness_N : N;
+fun jerky_A : A;
+fun jerome_PN : PN;
+fun jerry_N : N;
+fun jerry_PN : PN;
+fun jerry_builder_N : N;
+fun jerry_building_N : N;
+fun jerry_built_A : A;
+fun jersey_N : N;
+fun jersey_PN : PN;
+fun jess_PN : PN;
+fun jessica_PN : PN;
+fun jessie_PN : PN;
+fun jest_N : N;
+fun jest_V : V;
+fun jester_N : N;
+fun jesting_A : A;
+fun jestingly_Adv : Adv;
+fun jesuit_N : N;
+fun jesuitical_A : A;
+fun jesus_PN : PN;
+fun jet_N : N;
+fun jet_V : V;
+fun jet_V2 : V2;
+fun jet_black_A : A;
+fun jet_propelled_A : A;
+fun jetsam_N : N;
+fun jettison_V2 : V2;
+fun jetty_N : N;
+fun jew_N : N;
+fun jewel_N : N;
+fun jewel_V2 : V2;
+fun jeweller_N : N;
+fun jewellery_N : N;
+fun jewelry_N : N;
+fun jewess_N : N;
+fun jewish_A : A;
+fun jezebel_N : N;
+fun jib_N : N;
+fun jib_V : V;
+fun jib_boom_N : N;
+fun jibe_N : N;
+fun jibe_V : V;
+fun jiffy_N : N;
+fun jig_N : N;
+fun jig_V : V;
+fun jig_V2 : V2;
+fun jigger_N : N;
+fun jiggered_A : A;
+fun jiggery_pokery_N : N;
+fun jiggle_N : N;
+fun jiggle_V : V;
+fun jiggle_V2 : V2;
+fun jigsaw_N : N;
+fun jihad_N : N;
+fun jill_PN : PN;
+fun jilt_N : N;
+fun jilt_V2 : V2;
+fun jim_PN : PN;
+fun jim_crow_N : N;
+fun jimmy_N : N;
+fun jimmy_PN : PN;
+fun jingle_N : N;
+fun jingle_V : V;
+fun jingle_V2 : V2;
+fun jingo_N : N;
+fun jingoism_N : N;
+fun jingoist_N : N;
+fun jingoistic_A : A;
+fun jinks_N : N;
+fun jinn_N : N;
+fun jinx_N : N;
+fun jitney_N : N;
+fun jitterbug_N : N;
+fun jittery_A : A;
+fun jive_N : N;
+fun jive_V : V;
+fun jnr_PN : PN;
+fun jo_PN : PN;
+fun joan_PN : PN;
+fun joanie_PN : PN;
+fun joann_PN : PN;
+fun joanna_PN : PN;
+fun joanne_PN : PN;
+fun job_N : N;
+fun job_PN : PN;
+fun job_V : V;
+fun job_V2 : V2;
+fun jobber_N : N;
+fun jobbery_N : N;
+fun jocelyn_PN : PN;
+fun jockey_N : N;
+fun jockey_V : V;
+fun jockey_V2 : V2;
+fun jocose_A : A;
+fun jocosely_Adv : Adv;
+fun jocoseness_N : N;
+fun jocosity_N : N;
+fun jocular_A : A;
+fun jocularity_N : N;
+fun jocularly_Adv : Adv;
+fun jocund_A : A;
+fun jocundity_N : N;
+fun joe_PN : PN;
+fun joey_PN : PN;
+fun jog_N : N;
+fun jog_V : V;
+fun jog_V2 : V2;
+fun jog_trot_N : N;
+fun jogger_N : N;
+fun jogging_N : N;
+fun joggle_N : N;
+fun joggle_V : V;
+fun joggle_V2 : V2;
+fun johannesburg_PN : PN;
+fun john_N : N;
+fun john_PN : PN;
+fun john_bull_N : N;
+fun johnny_PN : PN;
+fun johnstone_PN : PN;
+fun joie_de_vivre_N : N;
+fun join_N : N;
+fun join_V : V;
+fun join_V2 : V2;
+fun joiner_N : N;
+fun joinery_N : N;
+fun joint_A : A;
+fun joint_N : N;
+fun joint_V2 : V2;
+fun jointly_Adv : Adv;
+fun jointure_N : N;
+fun joist_N : N;
+fun joke_N : N;
+fun joke_V : V;
+fun joker_N : N;
+fun jokingly_Adv : Adv;
+fun jollification_N : N;
+fun jollity_N : N;
+fun jolly_A : A;
+fun jolly_Adv : Adv;
+fun jolly_V2 : V2;
+fun jollyboat_N : N;
+fun jolt_N : N;
+fun jolt_V : V;
+fun jolt_V2 : V2;
+fun jolty_A : A;
+fun jonah_PN : PN;
+fun jonathan_PN : PN;
+fun jonquil_N : N;
+fun jordan_PN : PN;
+fun jordanian_A : A;
+fun jordanian_N : N;
+fun joseph_PN : PN;
+fun josephine_PN : PN;
+fun josh_PN : PN;
+fun joshua_PN : PN;
+fun joss_N : N;
+fun joss_house_N : N;
+fun joss_stick_N : N;
+fun jostle_V : V;
+fun jostle_V2 : V2;
+fun jot_N : N;
+fun jot_V2 : V2;
+fun jotter_N : N;
+fun joule_N : N;
+fun journal_N : N;
+fun journalese_N : N;
+fun journalism_N : N;
+fun journalist_N : N;
+fun journalistic_A : A;
+fun journalistically_Adv : Adv;
+fun journey_N : N;
+fun journey_V : V;
+fun journeyman_N : N;
+fun joust_N : N;
+fun joust_V : V;
+fun jove_PN : PN;
+fun jovial_A : A;
+fun joviality_N : N;
+fun jovially_Adv : Adv;
+fun jowl_N : N;
+fun jowly_A : A;
+fun joy_N : N;
+fun joy_PN : PN;
+fun joy_V : V;
+fun joy_ride_N : N;
+fun joy_stick_N : N;
+fun joyce_PN : PN;
+fun joyful_A : A;
+fun joyfully_Adv : Adv;
+fun joyfulness_N : N;
+fun joyless_A : A;
+fun joylessly_Adv : Adv;
+fun joylessness_N : N;
+fun joyous_A : A;
+fun joyously_Adv : Adv;
+fun joyousness_N : N;
+fun jp_N : N;
+fun ju_jitsu_N : N;
+fun jubilant_A : A;
+fun jubilantly_Adv : Adv;
+fun jubilation_N : N;
+fun jubilee_N : N;
+fun judaic_A : A;
+fun judaism_N : N;
+fun judas_N : N;
+fun judas_PN : PN;
+fun judder_V : V;
+fun judge_N : N;
+fun judge_V : V;
+fun judge_V2 : V2;
+fun judgement_N : N;
+fun judicature_N : N;
+fun judicial_A : A;
+fun judiciary_N : N;
+fun judicious_A : A;
+fun judiciously_Adv : Adv;
+fun judiciousness_N : N;
+fun judith_PN : PN;
+fun judo_N : N;
+fun judy_PN : PN;
+fun jug_N : N;
+fun jug_V2 : V2;
+fun jugful_N : N;
+fun juggernaut_N : N;
+fun juggle_V : V;
+fun juggle_V2 : V2;
+fun juggler_N : N;
+fun jugular_A : A;
+fun juice_N : N;
+fun juiciness_N : N;
+fun juicy_A : A;
+fun juju_N : N;
+fun jujube_N : N;
+fun jukebox_N : N;
+fun jul_PN : PN;
+fun julep_N : N;
+fun julia_PN : PN;
+fun julian_A : A;
+fun julian_PN : PN;
+fun julie_PN : PN;
+fun juliet_PN : PN;
+fun july_N : N;
+fun jumble_N : N;
+fun jumble_V : V;
+fun jumble_V2 : V2;
+fun jumble_sale_N : N;
+fun jumbo_A : A;
+fun jump_N : N;
+fun jump_V : V;
+fun jump_V2 : V2;
+fun jumped_up_A : A;
+fun jumper_N : N;
+fun jumpiness_N : N;
+fun jumpy_A : A;
+fun jun_PN : PN;
+fun junction_N : N;
+fun juncture_N : N;
+fun june_N : N;
+fun june_PN : PN;
+fun jungle_N : N;
+fun jungly_A : A;
+fun junior_A : A;
+fun junior_N : N;
+fun juniper_N : N;
+fun junk_N : N;
+fun junk_shop_N : N;
+fun junket_N : N;
+fun junket_V : V;
+fun junketing_N : N;
+fun junkie_N : N;
+fun junky_N : N;
+fun junoesque_A : A;
+fun junta_N : N;
+fun jupiter_PN : PN;
+fun juridical_A : A;
+fun jurisdiction_N : N;
+fun jurisprudence_N : N;
+fun jurist_N : N;
+fun juror_N : N;
+fun jury_N : N;
+fun jury_box_N : N;
+fun jury_mast_N : N;
+fun juryman_N : N;
+fun just_A : A;
+fun just_Adv : Adv;
+fun justice_N : N;
+fun justiciary_N : N;
+fun justifiable_A : A;
+fun justifiably_Adv : Adv;
+fun justification_N : N;
+fun justify_V2 : V2;
+fun justin_PN : PN;
+fun justly_Adv : Adv;
+fun justness_N : N;
+fun jut_V : V;
+fun jute_N : N;
+fun juvenile_A : A;
+fun juvenile_N : N;
+fun juxtapose_V2 : V2;
+fun juxtaposition_N : N;
+fun kaffir_N : N;
+fun kail_N : N;
+fun kaiser_N : N;
+fun kakemono_N : N;
+fun kale_N : N;
+fun kaleidoscope_N : N;
+fun kaleidoscopic_A : A;
+fun kalgan_PN : PN;
+fun kampong_N : N;
+fun kampuchea_PN : PN;
+fun kampuchean_A : A;
+fun kampuchean_N : N;
+fun kangaroo_N : N;
+fun kanpur_PN : PN;
+fun kansas_PN : PN;
+fun kansas_city_PN : PN;
+fun kaohsiung_PN : PN;
+fun kaolin_N : N;
+fun kapok_N : N;
+fun kaput_A : A;
+fun karachi_PN : PN;
+fun karaganda_PN : PN;
+fun karat_N : N;
+fun karate_N : N;
+fun karen_PN : PN;
+fun karlsruhe_PN : PN;
+fun karma_N : N;
+fun kashmir_PN : PN;
+fun kashmiri_A : A;
+fun kashmiri_N : N;
+fun kassel_PN : PN;
+fun kate_PN : PN;
+fun kath_PN : PN;
+fun katherine_PN : PN;
+fun kathy_PN : PN;
+fun katie_PN : PN;
+fun katowice_PN : PN;
+fun kava_N : N;
+fun kay_PN : PN;
+fun kayak_N : N;
+fun kazan_PN : PN;
+fun kebab_N : N;
+fun kedgeree_N : N;
+fun keel_N : N;
+fun keel_V : V;
+fun keel_V2 : V2;
+fun keen_A : A;
+fun keen_N : N;
+fun keen_V : V;
+fun keen_V2 : V2;
+fun keenly_Adv : Adv;
+fun keenness_N : N;
+fun keep_N : N;
+fun keep_V : V;
+fun keep_V2 : V2;
+fun keeper_N : N;
+fun keeping_N : N;
+fun keepsake_N : N;
+fun keg_N : N;
+fun keighley_PN : PN;
+fun keith_PN : PN;
+fun kelp_N : N;
+fun kelso_PN : PN;
+fun kelt_N : N;
+fun kelty_PN : PN;
+fun kemsing_PN : PN;
+fun ken_N : N;
+fun ken_PN : PN;
+fun ken_V2 : V2;
+fun kendal_PN : PN;
+fun kenilworth_PN : PN;
+fun kennel_N : N;
+fun kennel_V : V;
+fun kennel_V2 : V2;
+fun kenneth_PN : PN;
+fun kenny_PN : PN;
+fun kensington_PN : PN;
+fun kent_PN : PN;
+fun kentucky_PN : PN;
+fun kenya_PN : PN;
+fun kenyan_A : A;
+fun kenyan_N : N;
+fun kepi_N : N;
+fun kerb_N : N;
+fun kerbstone_N : N;
+fun kerchief_N : N;
+fun kernel_N : N;
+fun kerosene_N : N;
+fun kerry_PN : PN;
+fun kestrel_N : N;
+fun ketch_N : N;
+fun ketchup_N : N;
+fun kettering_PN : PN;
+fun kettle_N : N;
+fun kettledrum_N : N;
+fun kevin_PN : PN;
+fun key_N : N;
+fun key_V2 : V2;
+fun keyboard_N : N;
+fun keyhole_N : N;
+fun keyless_A : A;
+fun keynote_N : N;
+fun keynsham_PN : PN;
+fun keyring_N : N;
+fun keystone_N : N;
+fun keyword_N : N;
+fun keyworth_PN : PN;
+fun kg_N : N;
+fun kgb_N : N;
+fun khaki_A : A;
+fun khaki_N : N;
+fun khalka_N : N;
+fun khan_N : N;
+fun kharkov_PN : PN;
+fun khartoum_PN : PN;
+fun khmer_N : N;
+fun kibbutz_N : N;
+fun kibbutznik_N : N;
+fun kick_N : N;
+fun kick_V : V;
+fun kick_V2 : V2;
+fun kick_start_N : N;
+fun kick_starter_N : N;
+fun kickback_N : N;
+fun kickoff_N : N;
+fun kid_N : N;
+fun kid_V : V;
+fun kid_V2 : V2;
+fun kidderminster_PN : PN;
+fun kiddy_N : N;
+fun kidlington_PN : PN;
+fun kidnap_V2 : V2;
+fun kidnapper_N : N;
+fun kidney_N : N;
+fun kidney_bean_N : N;
+fun kidsgrove_PN : PN;
+fun kiev_PN : PN;
+fun kilbirnie_PN : PN;
+fun kildare_PN : PN;
+fun kilkenny_PN : PN;
+fun kill_N : N;
+fun kill_V : V;
+fun kill_V2 : V2;
+fun killarney_PN : PN;
+fun killer_N : N;
+fun killing_A : A;
+fun killing_N : N;
+fun killingly_Adv : Adv;
+fun killjoy_N : N;
+fun kilmarnock_PN : PN;
+fun kiln_N : N;
+fun kilo_N : N;
+fun kilocycle_N : N;
+fun kilogram_N : N;
+fun kilolitre_N : N;
+fun kilometre_N : N;
+fun kilowatt_N : N;
+fun kilsyth_PN : PN;
+fun kilt_N : N;
+fun kilwinning_PN : PN;
+fun kimberley_PN : PN;
+fun kimono_N : N;
+fun kind_A : A;
+fun kind_N : N;
+fun kind_hearted_A : A;
+fun kinda_Adv : Adv;
+fun kindergarten_N : N;
+fun kindle_V : V;
+fun kindle_V2 : V2;
+fun kindling_N : N;
+fun kindly_A : A;
+fun kindly_Adv : Adv;
+fun kindness_N : N;
+fun kindred_A : A;
+fun kindred_N : N;
+fun kinetic_A : A;
+fun kinetics_N : N;
+fun king's_lynn_PN : PN;
+fun king_N : N;
+fun king_size_A : A;
+fun king_sized_A : A;
+fun kingcup_N : N;
+fun kingdom_N : N;
+fun kingfisher_N : N;
+fun kinglike_A : A;
+fun kingly_A : A;
+fun kingpin_N : N;
+fun kingsbury_PN : PN;
+fun kingship_N : N;
+fun kingsteignton_PN : PN;
+fun kingston_PN : PN;
+fun kingston_upon_hull_PN : PN;
+fun kingston_upon_thames_PN : PN;
+fun kink_N : N;
+fun kink_V : V;
+fun kink_V2 : V2;
+fun kinky_A : A;
+fun kinshasa_PN : PN;
+fun kinship_N : N;
+fun kinsman_N : N;
+fun kinswoman_N : N;
+fun kiosk_N : N;
+fun kip_N : N;
+fun kip_V : V;
+fun kippax_PN : PN;
+fun kipper_N : N;
+fun kirin_PN : PN;
+fun kirk_N : N;
+fun kirkby_PN : PN;
+fun kirkby_in_ashfield_PN : PN;
+fun kirkcaldy_PN : PN;
+fun kirkham_PN : PN;
+fun kirkintilloch_PN : PN;
+fun kirkwall_PN : PN;
+fun kirsch_N : N;
+fun kirtle_N : N;
+fun kismet_N : N;
+fun kiss_N : N;
+fun kiss_V : V;
+fun kiss_V2 : V2;
+fun kisser_N : N;
+fun kit_N : N;
+fun kit_V2 : V2;
+fun kitakyushu_PN : PN;
+fun kitbag_N : N;
+fun kitchen_N : N;
+fun kitchenette_N : N;
+fun kite_N : N;
+fun kite_balloon_N : N;
+fun kitsch_A : A;
+fun kitten_N : N;
+fun kittenish_A : A;
+fun kitty_N : N;
+fun kitty_PN : PN;
+fun kiwi_N : N;
+fun klaxon_N : N;
+fun kleenex_N : N;
+fun kleptomania_N : N;
+fun kleptomaniac_N : N;
+fun km_N : N;
+fun knack_N : N;
+fun knacker_N : N;
+fun knap_V2 : V2;
+fun knapsack_N : N;
+fun knaresborough_PN : PN;
+fun knave_N : N;
+fun knavery_N : N;
+fun knavish_A : A;
+fun knavishly_Adv : Adv;
+fun knead_V2 : V2;
+fun knee_N : N;
+fun knee_deep_A : A;
+fun knee_deep_Adv : Adv;
+fun knee_high_A : A;
+fun knee_high_Adv : Adv;
+fun kneecap_N : N;
+fun kneel_V : V;
+fun knell_N : N;
+fun knesset_N : N;
+fun knick_knack_N : N;
+fun knife_N : N;
+fun knife_V2 : V2;
+fun knife_edge_N : N;
+fun knight_N : N;
+fun knight_V2 : V2;
+fun knight_errant_N : N;
+fun knighthood_N : N;
+fun knightly_A : A;
+fun knit_V : V;
+fun knit_V2 : V2;
+fun knitter_N : N;
+fun knitting_N : N;
+fun knitting_machine_N : N;
+fun knitting_needle_N : N;
+fun knitwear_N : N;
+fun knob_N : N;
+fun knobble_N : N;
+fun knobbly_A : A;
+fun knobkerrie_N : N;
+fun knock_N : N;
+fun knock_V : V;
+fun knock_V2 : V2;
+fun knock_kneed_A : A;
+fun knock_on_N : N;
+fun knockabout_A : A;
+fun knockdown_A : A;
+fun knocker_N : N;
+fun knockout_A : A;
+fun knockout_N : N;
+fun knoll_N : N;
+fun knot_N : N;
+fun knot_V : V;
+fun knot_V2 : V2;
+fun knothole_N : N;
+fun knottingley_PN : PN;
+fun knotty_A : A;
+fun knout_N : N;
+fun know_N : N;
+fun know_V : V;
+fun know_V2 : V2;
+fun know_all_N : N;
+fun know_how_N : N;
+fun knowing_A : A;
+fun knowingly_Adv : Adv;
+fun knowledge_N : N;
+fun knowledgeable_A : A;
+fun knuckle_N : N;
+fun knuckle_V : V;
+fun knutsford_PN : PN;
+fun ko_N : N;
+fun koala_N : N;
+fun kobe_PN : PN;
+fun koblenz_PN : PN;
+fun kobo_N : N;
+fun kohl_N : N;
+fun kohlrabi_N : N;
+fun kola_N : N;
+fun kola_nut_N : N;
+fun koln_PN : PN;
+fun kookaburra_N : N;
+fun kopeck_N : N;
+fun kopje_N : N;
+fun koppie_N : N;
+fun koran_N : N;
+fun koranic_A : A;
+fun korea_PN : PN;
+fun korean_A : A;
+fun korean_N : N;
+fun kosher_A : A;
+fun kosher_N : N;
+fun kotow_N : N;
+fun kotow_V : V;
+fun koumiss_N : N;
+fun kowtow_N : N;
+fun kowtow_V : V;
+fun kraal_N : N;
+fun krakow_PN : PN;
+fun krasnoyarsk_PN : PN;
+fun krefeld_PN : PN;
+fun kremlin_N : N;
+fun krivoi_rog_PN : PN;
+fun krona_N : N;
+fun krone_N : N;
+fun kudos_N : N;
+fun kumis_N : N;
+fun kung_fu_N : N;
+fun kunming_PN : PN;
+fun kuwait_PN : PN;
+fun kuwait_city_PN : PN;
+fun kuwaiti_A : A;
+fun kuwaiti_N : N;
+fun kuybyshev_PN : PN;
+fun kvass_N : N;
+fun kw_N : N;
+fun kwacha_N : N;
+fun kweiyang_PN : PN;
+fun kwela_N : N;
+fun kyoto_PN : PN;
+fun kummel_N : N;
+fun l_plate_N : N;
+fun la_N : N;
+fun la_PN : PN;
+fun la_di_da_A : A;
+fun la_habana_PN : PN;
+fun la_paz_PN : PN;
+fun la_plata_PN : PN;
+fun la_spezia_PN : PN;
+fun laager_N : N;
+fun lab_N : N;
+fun lab_PN : PN;
+fun label_N : N;
+fun label_V2 : V2;
+fun labial_A : A;
+fun laboratory_N : N;
+fun laborious_A : A;
+fun laboriously_Adv : Adv;
+fun labour_N : N;
+fun labour_V : V;
+fun labour_V2 : V2;
+fun labour_saving_A : A;
+fun laboured_A : A;
+fun labourer_N : N;
+fun labourite_N : N;
+fun labrador_PN : PN;
+fun laburnum_N : N;
+fun labyrinth_N : N;
+fun labyrinthine_A : A;
+fun lace_N : N;
+fun lace_V : V;
+fun lace_V2 : V2;
+fun lacerate_V2 : V2;
+fun laceration_N : N;
+fun lachrymal_A : A;
+fun lachrymose_A : A;
+fun lack_N : N;
+fun lack_V : V;
+fun lack_V2 : V2;
+fun lack_lustre_A : A;
+fun lackadaisical_A : A;
+fun lackadaisically_Adv : Adv;
+fun lackey_N : N;
+fun laconic_A : A;
+fun laconically_Adv : Adv;
+fun laconicism_N : N;
+fun laconism_N : N;
+fun lacquer_N : N;
+fun lacquer_V2 : V2;
+fun lacrosse_N : N;
+fun lactic_A : A;
+fun lacuna_N : N;
+fun lacy_A : A;
+fun lad_N : N;
+fun ladder_N : N;
+fun ladder_V : V;
+fun ladder_proof_A : A;
+fun laddie_N : N;
+fun lade_V2 : V2;
+fun laden_A : A;
+fun lading_N : N;
+fun ladle_N : N;
+fun ladle_V2 : V2;
+fun lady's_maid_N : N;
+fun lady_N : N;
+fun lady_chapel_N : N;
+fun lady_in_waiting_N : N;
+fun lady_killer_N : N;
+fun ladybird_N : N;
+fun ladylike_A : A;
+fun ladyship_N : N;
+fun lag_N : N;
+fun lag_V : V;
+fun lag_V2 : V2;
+fun lager_N : N;
+fun laggard_N : N;
+fun lagging_N : N;
+fun lagoon_N : N;
+fun lagos_PN : PN;
+fun lahore_PN : PN;
+fun laic_A : A;
+fun laicize_V2 : V2;
+fun lair_N : N;
+fun laird_N : N;
+fun laissez_faire_N : N;
+fun laity_N : N;
+fun lake_N : N;
+fun lakenheath_PN : PN;
+fun lakh_N : N;
+fun lam_V : V;
+fun lam_V2 : V2;
+fun lama_N : N;
+fun lamasery_N : N;
+fun lamb_N : N;
+fun lamb_V : V;
+fun lambaste_V2 : V2;
+fun lambency_N : N;
+fun lambent_A : A;
+fun lambeth_PN : PN;
+fun lambkin_N : N;
+fun lambskin_N : N;
+fun lame_A : A;
+fun lame_V2 : V2;
+fun lamely_Adv : Adv;
+fun lameness_N : N;
+fun lament_N : N;
+fun lament_V : V;
+fun lament_V2 : V2;
+fun lamentable_A : A;
+fun lamentably_Adv : Adv;
+fun lamentation_N : N;
+fun laminate_V : V;
+fun laminate_V2 : V2;
+fun lammas_N : N;
+fun lammas_PN : PN;
+fun lamp_N : N;
+fun lamp_black_N : N;
+fun lamplight_N : N;
+fun lamplighter_N : N;
+fun lamplit_A : A;
+fun lampoon_N : N;
+fun lampoon_V2 : V2;
+fun lamppost_N : N;
+fun lamprey_N : N;
+fun lampshade_N : N;
+fun lame_N : N;
+fun lanark_PN : PN;
+fun lancashire_PN : PN;
+fun lancaster_PN : PN;
+fun lancastrian_A : A;
+fun lancastrian_N : N;
+fun lance_N : N;
+fun lance_V2 : V2;
+fun lance_corporal_N : N;
+fun lancer_N : N;
+fun lancet_N : N;
+fun lanchow_PN : PN;
+fun lancing_PN : PN;
+fun land_N : N;
+fun land_V : V;
+fun land_V2 : V2;
+fun land_agent_N : N;
+fun landau_N : N;
+fun landed_A : A;
+fun landfall_N : N;
+fun landgrave_N : N;
+fun landholder_N : N;
+fun landing_N : N;
+fun landing_craft_N : N;
+fun landing_field_N : N;
+fun landing_gear_N : N;
+fun landing_net_N : N;
+fun landing_party_N : N;
+fun landing_place_N : N;
+fun landing_stage_N : N;
+fun landing_strip_N : N;
+fun landlady_N : N;
+fun landless_A : A;
+fun landlocked_A : A;
+fun landlord_N : N;
+fun landlubber_N : N;
+fun landmark_N : N;
+fun landmine_N : N;
+fun landowner_N : N;
+fun landrover_N : N;
+fun landscape_N : N;
+fun landscape_V2 : V2;
+fun landslide_N : N;
+fun landslip_N : N;
+fun landsman_N : N;
+fun landward_Adv : Adv;
+fun lane_N : N;
+fun langsyne_Adv : Adv;
+fun langsyne_N : N;
+fun language_N : N;
+fun languid_A : A;
+fun languidly_Adv : Adv;
+fun languish_V : V;
+fun languor_N : N;
+fun languorous_A : A;
+fun languorously_Adv : Adv;
+fun langur_N : N;
+fun lank_A : A;
+fun lanky_A : A;
+fun lanolin_N : N;
+fun lantern_N : N;
+fun lantern_jawed_A : A;
+fun lanyard_N : N;
+fun lao_N : N;
+fun laos_PN : PN;
+fun laotian_A : A;
+fun laotian_N : N;
+fun lap_N : N;
+fun lap_V : V;
+fun lap_V2 : V2;
+fun lap_dog_N : N;
+fun lapel_N : N;
+fun lapidary_A : A;
+fun lapidary_N : N;
+fun lapis_lazuli_N : N;
+fun lapse_N : N;
+fun lapse_V : V;
+fun lapwing_N : N;
+fun larboard_A : A;
+fun larboard_N : N;
+fun larceny_N : N;
+fun larch_N : N;
+fun lard_N : N;
+fun lard_V2 : V2;
+fun larder_N : N;
+fun large_A : A;
+fun large_Adv : Adv;
+fun large_N : N;
+fun large_scale_A : A;
+fun largely_Adv : Adv;
+fun largeness_N : N;
+fun largesse_N : N;
+fun largish_A : A;
+fun largo_N : N;
+fun largs_PN : PN;
+fun lariat_N : N;
+fun lark_N : N;
+fun lark_V : V;
+fun larkhall_PN : PN;
+fun larkspur_N : N;
+fun larn_V : V;
+fun larn_V2 : V2;
+fun larne_PN : PN;
+fun larry_PN : PN;
+fun larva_N : N;
+fun larval_A : A;
+fun laryngitis_N : N;
+fun larynx_N : N;
+fun las_palmas_PN : PN;
+fun lascar_N : N;
+fun lascivious_A : A;
+fun lasciviously_Adv : Adv;
+fun lasciviousness_N : N;
+fun laser_N : N;
+fun lash_N : N;
+fun lash_V : V;
+fun lash_V2 : V2;
+fun lash_up_N : N;
+fun lashing_N : N;
+fun lass_N : N;
+fun lassie_N : N;
+fun lassitude_N : N;
+fun lasso_N : N;
+fun lasso_V2 : V2;
+fun last_A : A;
+fun last_Adv : Adv;
+fun last_N : N;
+fun last_V : V;
+fun lasting_A : A;
+fun lastly_Adv : Adv;
+fun lat_N : N;
+fun latch_N : N;
+fun latch_V : V;
+fun latch_V2 : V2;
+fun latchkey_N : N;
+fun late_A : A;
+fun late_Adv : Adv;
+fun lateen_A : A;
+fun lately_Adv : Adv;
+fun latent_A : A;
+fun lateral_A : A;
+fun laterally_Adv : Adv;
+fun laterite_N : N;
+fun latex_N : N;
+fun lath_N : N;
+fun lathe_N : N;
+fun lather_N : N;
+fun lather_V : V;
+fun lather_V2 : V2;
+fun lathi_N : N;
+fun latin_A : A;
+fun latin_N : N;
+fun latinist_N : N;
+fun latinize_V2 : V2;
+fun latish_A : A;
+fun latitude_N : N;
+fun latitudes_N : N;
+fun latitudinal_A : A;
+fun latitudinarian_A : A;
+fun latitudinarian_N : N;
+fun latrine_N : N;
+fun latter_A : A;
+fun latter_day_A : A;
+fun latterly_Adv : Adv;
+fun lattice_N : N;
+fun latticed_A : A;
+fun laud_V2 : V2;
+fun laudable_A : A;
+fun laudably_Adv : Adv;
+fun laudanum_N : N;
+fun laudatory_A : A;
+fun laugh_N : N;
+fun laugh_V : V;
+fun laugh_V2 : V2;
+fun laughable_A : A;
+fun laughably_Adv : Adv;
+fun laughing_A : A;
+fun laughing_gas_N : N;
+fun laughing_stock_N : N;
+fun laughingly_Adv : Adv;
+fun laughter_N : N;
+fun launch_N : N;
+fun launch_V : V;
+fun launch_V2 : V2;
+fun launcher_N : N;
+fun launching_pad_N : N;
+fun launching_site_N : N;
+fun launder_V : V;
+fun launder_V2 : V2;
+fun launderette_N : N;
+fun laundress_N : N;
+fun laundry_N : N;
+fun laundryman_N : N;
+fun laundrywoman_N : N;
+fun laura_PN : PN;
+fun laureate_A : A;
+fun laureate_N : N;
+fun laurel_N : N;
+fun laurelled_A : A;
+fun laurence_PN : PN;
+fun lausanne_PN : PN;
+fun lav_N : N;
+fun lava_N : N;
+fun lavatory_N : N;
+fun lave_V2 : V2;
+fun lavender_N : N;
+fun lavish_A : A;
+fun lavish_V2 : V2;
+fun lavishly_Adv : Adv;
+fun law_N : N;
+fun law_abiding_A : A;
+fun law_officer_N : N;
+fun lawbreaker_N : N;
+fun lawful_A : A;
+fun lawfully_Adv : Adv;
+fun lawgiver_N : N;
+fun lawless_A : A;
+fun lawlessly_Adv : Adv;
+fun lawlessness_N : N;
+fun lawmaker_N : N;
+fun lawmaking_N : N;
+fun lawn_N : N;
+fun lawn_mower_N : N;
+fun lawrence_PN : PN;
+fun lawyer_N : N;
+fun lax_A : A;
+fun laxative_A : A;
+fun laxative_N : N;
+fun laxity_N : N;
+fun laxly_Adv : Adv;
+fun lay_A : A;
+fun lay_N : N;
+fun lay_V : V;
+fun lay_V2 : V2;
+fun lay_figure_N : N;
+fun lay_off_N : N;
+fun lay_out_N : N;
+fun layabout_N : N;
+fun layby_N : N;
+fun layer_N : N;
+fun layer_V2 : V2;
+fun layer_cake_N : N;
+fun layette_N : N;
+fun layman_N : N;
+fun layover_N : N;
+fun lazar_N : N;
+fun lazaret_N : N;
+fun lazarette_N : N;
+fun lazaretto_N : N;
+fun lazarus_N : N;
+fun lazarus_PN : PN;
+fun laze_V : V;
+fun laze_V2 : V2;
+fun lazily_Adv : Adv;
+fun laziness_N : N;
+fun lazy_A : A;
+fun lazybones_N : N;
+fun lb_N : N;
+fun lbs_N : N;
+fun lbw_PN : PN;
+fun le_havre_PN : PN;
+fun le_mans_PN : PN;
+fun lea_N : N;
+fun leach_V2 : V2;
+fun lead_N : N;
+fun lead_V : V;
+fun lead_V2 : V2;
+fun lead_in_N : N;
+fun lead_ore_N : N;
+fun leaded_A : A;
+fun leaden_A : A;
+fun leader_N : N;
+fun leaderless_A : A;
+fun leadership_N : N;
+fun leading_A : A;
+fun leading_N : N;
+fun leading_rein_N : N;
+fun leaf_N : N;
+fun leaf_V : V;
+fun leaf_bud_N : N;
+fun leaf_mould_N : N;
+fun leafless_A : A;
+fun leaflet_N : N;
+fun leafy_A : A;
+fun league_N : N;
+fun league_V : V;
+fun league_V2 : V2;
+fun leak_N : N;
+fun leak_V : V;
+fun leak_V2 : V2;
+fun leakage_N : N;
+fun leaky_A : A;
+fun leal_A : A;
+fun leamington_spa_PN : PN;
+fun lean_A : A;
+fun lean_N : N;
+fun lean_V : V;
+fun lean_V2 : V2;
+fun lean_to_N : N;
+fun leaning_N : N;
+fun leanness_N : N;
+fun leap_N : N;
+fun leap_V : V;
+fun leap_V2 : V2;
+fun leap_year_N : N;
+fun leapfrog_N : N;
+fun leapfrog_V2 : V2;
+fun learn_V : V;
+fun learn_V2 : V2;
+fun learned_A : A;
+fun learnedly_Adv : Adv;
+fun learner_N : N;
+fun learning_N : N;
+fun lease_N : N;
+fun lease_V2 : V2;
+fun lease_lend_N : N;
+fun leasehold_A : A;
+fun leasehold_N : N;
+fun leaseholder_N : N;
+fun leash_N : N;
+fun least_A : A;
+fun least_Adv : Adv;
+fun least_N : N;
+fun leastways_Adv : Adv;
+fun leastwise_Adv : Adv;
+fun leather_N : N;
+fun leather_jacket_N : N;
+fun leatherette_N : N;
+fun leatherhead_PN : PN;
+fun leatherneck_N : N;
+fun leatherwork_N : N;
+fun leathery_A : A;
+fun leave_N : N;
+fun leave_V : V;
+fun leave_V2 : V2;
+fun leave_taking_N : N;
+fun leaven_N : N;
+fun leaven_V2 : V2;
+fun lebanese_A : A;
+fun lebanese_N : N;
+fun lebanon_PN : PN;
+fun lecher_N : N;
+fun lecherous_A : A;
+fun lechery_N : N;
+fun lectern_N : N;
+fun lecture_N : N;
+fun lecture_V : V;
+fun lecture_V2 : V2;
+fun lecturer_N : N;
+fun lectureship_N : N;
+fun ledge_N : N;
+fun ledger_N : N;
+fun lee_N : N;
+fun leech_N : N;
+fun leeds_PN : PN;
+fun leek_N : N;
+fun leek_PN : PN;
+fun leer_N : N;
+fun leer_V : V;
+fun leeward_A : A;
+fun leeward_Adv : Adv;
+fun leeway_N : N;
+fun left_A : A;
+fun left_Adv : Adv;
+fun left_N : N;
+fun left_hand_A : A;
+fun left_handed_A : A;
+fun left_wing_N : N;
+fun left_winger_N : N;
+fun leftist_N : N;
+fun leg_N : N;
+fun leg_pull_N : N;
+fun leg_pulling_N : N;
+fun legacy_N : N;
+fun legal_A : A;
+fun legalism_N : N;
+fun legalistic_A : A;
+fun legality_N : N;
+fun legalization_N : N;
+fun legalize_V2 : V2;
+fun legally_Adv : Adv;
+fun legate_N : N;
+fun legatee_N : N;
+fun legation_N : N;
+fun legato_A : A;
+fun legato_Adv : Adv;
+fun legend_N : N;
+fun legendary_A : A;
+fun leger_line_N : N;
+fun legerdemain_N : N;
+fun legged_A : A;
+fun legging_N : N;
+fun leggy_A : A;
+fun leghorn_N : N;
+fun legibility_N : N;
+fun legible_A : A;
+fun legibly_Adv : Adv;
+fun legion_N : N;
+fun legionary_N : N;
+fun legislate_V : V;
+fun legislation_N : N;
+fun legislative_A : A;
+fun legislator_N : N;
+fun legislature_N : N;
+fun legitimacy_N : N;
+fun legitimate_A : A;
+fun legitimately_Adv : Adv;
+fun legitimatize_V2 : V2;
+fun legless_A : A;
+fun leguminous_A : A;
+fun lei_N : N;
+fun leicester_PN : PN;
+fun leicestershire_PN : PN;
+fun leiden_PN : PN;
+fun leigh_PN : PN;
+fun leighton_linslade_PN : PN;
+fun leinster_PN : PN;
+fun leipzig_PN : PN;
+fun leisure_N : N;
+fun leisured_A : A;
+fun leisurely_A : A;
+fun leisurely_Adv : Adv;
+fun leitrim_PN : PN;
+fun leix_PN : PN;
+fun lemming_N : N;
+fun lemon_N : N;
+fun lemonade_N : N;
+fun lemur_N : N;
+fun len_PN : PN;
+fun lend_V2 : V2;
+fun lender_N : N;
+fun lending_library_N : N;
+fun length_N : N;
+fun lengthen_V : V;
+fun lengthen_V2 : V2;
+fun lengthily_Adv : Adv;
+fun lengthways_A : A;
+fun lengthways_Adv : Adv;
+fun lengthwise_Adv : Adv;
+fun lengthy_A : A;
+fun lenience_N : N;
+fun leniency_N : N;
+fun lenient_A : A;
+fun leniently_Adv : Adv;
+fun leningrad_PN : PN;
+fun lenity_N : N;
+fun lenny_PN : PN;
+fun lens_N : N;
+fun lens_PN : PN;
+fun lent_N : N;
+fun lent_PN : PN;
+fun lenten_A : A;
+fun lentil_N : N;
+fun lento_A : A;
+fun lento_Adv : Adv;
+fun leo_PN : PN;
+fun leominster_PN : PN;
+fun leon_PN : PN;
+fun leonard_PN : PN;
+fun leonine_A : A;
+fun leopard_N : N;
+fun leopardess_N : N;
+fun leper_N : N;
+fun leprechaun_N : N;
+fun leprosy_N : N;
+fun leprous_A : A;
+fun lerwick_PN : PN;
+fun les_PN : PN;
+fun lesbian_N : N;
+fun lesbianism_N : N;
+fun lese_majesty_N : N;
+fun lesion_N : N;
+fun lesley_PN : PN;
+fun leslie_PN : PN;
+fun lesotho_PN : PN;
+fun less_A : A;
+fun less_Adv : Adv;
+fun less_N : N;
+fun lessee_N : N;
+fun lessen_V : V;
+fun lessen_V2 : V2;
+fun lesser_A : A;
+fun lesson_N : N;
+fun lessor_N : N;
+fun let_N : N;
+fun let_V : V;
+fun let_V2 : V2;
+fun let_down_N : N;
+fun let_up_N : N;
+fun letchworth_PN : PN;
+fun lethal_A : A;
+fun lethargic_A : A;
+fun lethargically_Adv : Adv;
+fun lethargy_N : N;
+fun lethe_PN : PN;
+fun letter_N : N;
+fun letter_box_N : N;
+fun letter_card_N : N;
+fun letter_case_N : N;
+fun lettered_A : A;
+fun letterhead_N : N;
+fun lettering_N : N;
+fun letterpress_N : N;
+fun letting_N : N;
+fun lettuce_N : N;
+fun leucocyte_N : N;
+fun leukaemia_N : N;
+fun levant_PN : PN;
+fun levant_V : V;
+fun levantine_A : A;
+fun levantine_N : N;
+fun levee_N : N;
+fun level_A : A;
+fun level_N : N;
+fun level_V : V;
+fun level_V2 : V2;
+fun level_headed_A : A;
+fun leveller_N : N;
+fun leven_PN : PN;
+fun lever_N : N;
+fun lever_V2 : V2;
+fun leverage_N : N;
+fun leveret_N : N;
+fun leverkusen_PN : PN;
+fun leviathan_N : N;
+fun levitate_V : V;
+fun levitate_V2 : V2;
+fun levitation_N : N;
+fun levity_N : N;
+fun levy_N : N;
+fun levy_V : V;
+fun levy_V2 : V2;
+fun lewd_A : A;
+fun lewdly_Adv : Adv;
+fun lewdness_N : N;
+fun lewes_PN : PN;
+fun lewis_PN : PN;
+fun lewisham_PN : PN;
+fun lexical_A : A;
+fun lexically_Adv : Adv;
+fun lexicographer_N : N;
+fun lexicography_N : N;
+fun lexicon_N : N;
+fun lexis_N : N;
+fun ley_N : N;
+fun leyland_PN : PN;
+fun liability_N : N;
+fun liable_A : A;
+fun liaise_V : V;
+fun liaison_N : N;
+fun liana_N : N;
+fun liar_N : N;
+fun lib_N : N;
+fun lib_PN : PN;
+fun libation_N : N;
+fun libel_N : N;
+fun libel_V2 : V2;
+fun libellous_A : A;
+fun liberal_A : A;
+fun liberal_N : N;
+fun liberalism_N : N;
+fun liberality_N : N;
+fun liberalization_N : N;
+fun liberalize_V2 : V2;
+fun liberally_Adv : Adv;
+fun liberate_V2 : V2;
+fun liberation_N : N;
+fun liberator_N : N;
+fun liberia_PN : PN;
+fun liberian_A : A;
+fun liberian_N : N;
+fun libertine_N : N;
+fun liberty_N : N;
+fun libidinous_A : A;
+fun libido_N : N;
+fun libra_PN : PN;
+fun librarian_N : N;
+fun librarianship_N : N;
+fun library_N : N;
+fun librettist_N : N;
+fun libretto_N : N;
+fun libya_PN : PN;
+fun libyan_A : A;
+fun libyan_N : N;
+fun licence_N : N;
+fun licence_V2 : V2;
+fun license_V2 : V2;
+fun licensee_N : N;
+fun licentiate_N : N;
+fun licentious_A : A;
+fun licentiously_Adv : Adv;
+fun licentiousness_N : N;
+fun lichee_N : N;
+fun lichen_N : N;
+fun lichfield_PN : PN;
+fun lichgate_N : N;
+fun lichi_N : N;
+fun licit_A : A;
+fun lick_N : N;
+fun lick_V : V;
+fun lick_V2 : V2;
+fun licking_N : N;
+fun lid_N : N;
+fun lidless_A : A;
+fun lido_N : N;
+fun lie_N : N;
+fun lie_V : V;
+fun lie_abed_N : N;
+fun lie_detector_N : N;
+fun lie_in_N : N;
+fun liechtenstein_PN : PN;
+fun liechtensteiner_A : A;
+fun liechtensteiner_N : N;
+fun lied_N : N;
+fun lieder_singer_N : N;
+fun lief_Adv : Adv;
+fun liege_A : A;
+fun liege_N : N;
+fun liege_PN : PN;
+fun liegeman_N : N;
+fun lien_N : N;
+fun lieu_N : N;
+fun lieutenancy_N : N;
+fun lieutenant_N : N;
+fun life_N : N;
+fun life_buoy_N : N;
+fun life_giving_A : A;
+fun life_jacket_N : N;
+fun life_office_N : N;
+fun life_preserver_N : N;
+fun life_raft_N : N;
+fun life_saver_N : N;
+fun life_size_A : A;
+fun life_sized_A : A;
+fun life_span_N : N;
+fun life_work_N : N;
+fun lifebelt_N : N;
+fun lifeblood_N : N;
+fun lifeboat_N : N;
+fun lifebuoy_N : N;
+fun lifeguard_N : N;
+fun lifeless_A : A;
+fun lifelessly_Adv : Adv;
+fun lifelike_A : A;
+fun lifeline_N : N;
+fun lifelong_A : A;
+fun lifer_N : N;
+fun lifetime_N : N;
+fun lift_N : N;
+fun lift_V : V;
+fun lift_V2 : V2;
+fun lift_off_N : N;
+fun liftman_N : N;
+fun ligament_N : N;
+fun ligature_N : N;
+fun light_A : A;
+fun light_Adv : Adv;
+fun light_N : N;
+fun light_V : V;
+fun light_V2 : V2;
+fun light_armed_A : A;
+fun light_coloured_A : A;
+fun light_fingered_A : A;
+fun light_handed_A : A;
+fun light_handedly_Adv : Adv;
+fun light_headed_A : A;
+fun light_headedly_Adv : Adv;
+fun light_headedness_N : N;
+fun light_hearted_A : A;
+fun light_heartedly_Adv : Adv;
+fun light_heartedness_N : N;
+fun light_heavyweight_N : N;
+fun light_minded_A : A;
+fun light_mindedness_N : N;
+fun light_o'_love_N : N;
+fun lighten_V : V;
+fun lighten_V2 : V2;
+fun lighter_N : N;
+fun lighter_V2 : V2;
+fun lighterage_N : N;
+fun lighthouse_N : N;
+fun lighting_up_A : A;
+fun lightly_Adv : Adv;
+fun lightness_N : N;
+fun lightning_N : N;
+fun lightning_conductor_N : N;
+fun lightning_rod_N : N;
+fun lightship_N : N;
+fun lightsome_A : A;
+fun lightsomely_Adv : Adv;
+fun lightsomeness_N : N;
+fun lightweight_A : A;
+fun lightweight_N : N;
+fun ligneous_A : A;
+fun lignite_N : N;
+fun likable_A : A;
+fun like_A : A;
+fun like_Adv : Adv;
+fun like_N : N;
+fun like_V2 : V2;
+fun like_minded_A : A;
+fun likeable_A : A;
+fun likelihood_N : N;
+fun likely_A : A;
+fun likely_Adv : Adv;
+fun liken_V2 : V2;
+fun likeness_N : N;
+fun likewise_Adv : Adv;
+fun liking_N : N;
+fun lilac_N : N;
+fun lilian_PN : PN;
+fun lille_PN : PN;
+fun lilliputian_A : A;
+fun lilliputian_N : N;
+fun lilt_N : N;
+fun lilt_V : V;
+fun lilt_V2 : V2;
+fun lily_N : N;
+fun lily_PN : PN;
+fun lily_livered_A : A;
+fun lily_white_A : A;
+fun lima_PN : PN;
+fun limb_N : N;
+fun limbed_A : A;
+fun limber_A : A;
+fun limber_V : V;
+fun limber_V2 : V2;
+fun limbless_A : A;
+fun limbo_N : N;
+fun lime_N : N;
+fun lime_V2 : V2;
+fun lime_tree_N : N;
+fun limejuice_N : N;
+fun limekiln_N : N;
+fun limelight_N : N;
+fun limerick_N : N;
+fun limerick_PN : PN;
+fun limestone_N : N;
+fun limey_N : N;
+fun limit_N : N;
+fun limit_V2 : V2;
+fun limitation_N : N;
+fun limitless_A : A;
+fun limn_V2 : V2;
+fun limoges_PN : PN;
+fun limousine_N : N;
+fun limp_A : A;
+fun limp_N : N;
+fun limp_V : V;
+fun limpet_N : N;
+fun limpid_A : A;
+fun limpidity_N : N;
+fun limpidly_Adv : Adv;
+fun limply_Adv : Adv;
+fun limpness_N : N;
+fun linchpin_N : N;
+fun lincoln_PN : PN;
+fun lincolnshire_PN : PN;
+fun linda_PN : PN;
+fun linden_N : N;
+fun linden_tree_N : N;
+fun line_N : N;
+fun line_V : V;
+fun line_V2 : V2;
+fun line_shooter_N : N;
+fun line_shooting_N : N;
+fun line_up_N : N;
+fun lineage_N : N;
+fun lineal_A : A;
+fun lineally_Adv : Adv;
+fun lineament_N : N;
+fun linear_A : A;
+fun linearly_Adv : Adv;
+fun lineman_N : N;
+fun linen_N : N;
+fun linen_draper_N : N;
+fun liner_N : N;
+fun liner_train_N : N;
+fun linesman_N : N;
+fun ling_N : N;
+fun lingam_N : N;
+fun linger_V : V;
+fun lingerer_N : N;
+fun lingerie_N : N;
+fun lingering_A : A;
+fun lingeringly_Adv : Adv;
+fun lingo_N : N;
+fun lingua_franca_N : N;
+fun lingual_A : A;
+fun linguist_N : N;
+fun linguistic_A : A;
+fun linguistically_Adv : Adv;
+fun linguistics_N : N;
+fun liniment_N : N;
+fun lining_N : N;
+fun link_N : N;
+fun link_V : V;
+fun link_V2 : V2;
+fun link_up_N : N;
+fun linkage_N : N;
+fun linkboy_N : N;
+fun linkman_N : N;
+fun links_N : N;
+fun linlithgow_PN : PN;
+fun linnet_N : N;
+fun lino_N : N;
+fun linocut_N : N;
+fun linoleum_N : N;
+fun linotype_N : N;
+fun linseed_N : N;
+fun linsey_woolsey_N : N;
+fun lint_N : N;
+fun lintel_N : N;
+fun linwood_PN : PN;
+fun linz_PN : PN;
+fun lion_N : N;
+fun lion_hearted_A : A;
+fun lion_hunter_N : N;
+fun lionel_PN : PN;
+fun lioness_N : N;
+fun lionize_V2 : V2;
+fun lip_N : N;
+fun lip_read_V2 : V2;
+fun lip_reading_N : N;
+fun lipped_A : A;
+fun lipstick_N : N;
+fun liquefaction_N : N;
+fun liquefy_V : V;
+fun liquefy_V2 : V2;
+fun liquescent_A : A;
+fun liqueur_N : N;
+fun liquid_A : A;
+fun liquid_N : N;
+fun liquidate_V : V;
+fun liquidate_V2 : V2;
+fun liquidation_N : N;
+fun liquidator_N : N;
+fun liquidity_N : N;
+fun liquidize_V2 : V2;
+fun liquidizer_N : N;
+fun liquor_N : N;
+fun liquorice_N : N;
+fun lira_N : N;
+fun lisa_PN : PN;
+fun lisbon_PN : PN;
+fun liskeard_PN : PN;
+fun lisle_N : N;
+fun lisp_N : N;
+fun lisp_V : V;
+fun lisp_V2 : V2;
+fun lispingly_Adv : Adv;
+fun lissom_A : A;
+fun lissome_A : A;
+fun lissomness_N : N;
+fun list_N : N;
+fun list_V : V;
+fun list_V2 : V2;
+fun list_price_N : N;
+fun listen_V : V;
+fun listener_N : N;
+fun listing_N : N;
+fun listless_A : A;
+fun listlessly_Adv : Adv;
+fun listlessness_N : N;
+fun litany_N : N;
+fun litchee_N : N;
+fun litchi_N : N;
+fun literacy_N : N;
+fun literal_A : A;
+fun literal_N : N;
+fun literally_Adv : Adv;
+fun literary_A : A;
+fun literate_A : A;
+fun literate_N : N;
+fun literature_N : N;
+fun lithe_A : A;
+fun lithograph_N : N;
+fun lithograph_V : V;
+fun lithograph_V2 : V2;
+fun lithographic_A : A;
+fun lithography_N : N;
+fun litigant_N : N;
+fun litigate_V : V;
+fun litigate_V2 : V2;
+fun litigation_N : N;
+fun litigious_A : A;
+fun litmus_N : N;
+fun litmus_paper_N : N;
+fun litotes_N : N;
+fun litre_N : N;
+fun litter_N : N;
+fun litter_V : V;
+fun litter_V2 : V2;
+fun litter_basket_N : N;
+fun litter_lout_N : N;
+fun litterbin_N : N;
+fun little_A : A;
+fun little_Adv : Adv;
+fun little_N : N;
+fun littlehampton_PN : PN;
+fun littleness_N : N;
+fun littoral_A : A;
+fun littoral_N : N;
+fun liturgical_A : A;
+fun liturgy_N : N;
+fun livable_A : A;
+fun live_A : A;
+fun live_Adv : Adv;
+fun live_V : V;
+fun live_V2 : V2;
+fun live_birth_N : N;
+fun liveable_A : A;
+fun livelihood_N : N;
+fun liveliness_N : N;
+fun livelong_A : A;
+fun lively_A : A;
+fun liven_V : V;
+fun liven_V2 : V2;
+fun liver_N : N;
+fun liveried_A : A;
+fun liverish_A : A;
+fun liverpool_PN : PN;
+fun liverpudlian_A : A;
+fun liverpudlian_N : N;
+fun liverwurst_N : N;
+fun livery_A : A;
+fun livery_N : N;
+fun liveryman_N : N;
+fun livestock_N : N;
+fun livid_A : A;
+fun lividly_Adv : Adv;
+fun living_A : A;
+fun living_N : N;
+fun living_room_N : N;
+fun living_space_N : N;
+fun livingston_PN : PN;
+fun livorno_PN : PN;
+fun liz_PN : PN;
+fun liza_PN : PN;
+fun lizard_N : N;
+fun lizzy_PN : PN;
+fun ljubljana_PN : PN;
+fun ll_N : N;
+fun llama_N : N;
+fun llandudno_PN : PN;
+fun llanelli_PN : PN;
+fun llangollen_PN : PN;
+fun llantrisant_PN : PN;
+fun llantwit_major_PN : PN;
+fun llb_N : N;
+fun lloyd's_PN : PN;
+fun load_N : N;
+fun load_V : V;
+fun load_V2 : V2;
+fun load_line_N : N;
+fun load_shedding_N : N;
+fun loaded_A : A;
+fun loader_N : N;
+fun loading_N : N;
+fun loadstar_N : N;
+fun loadstone_N : N;
+fun loaf_N : N;
+fun loaf_V : V;
+fun loaf_V2 : V2;
+fun loaf_sugar_N : N;
+fun loafer_N : N;
+fun loam_N : N;
+fun loamy_A : A;
+fun loan_N : N;
+fun loan_V2 : V2;
+fun loan_collection_N : N;
+fun loan_office_N : N;
+fun loanhead_PN : PN;
+fun loanword_N : N;
+fun loath_A : A;
+fun loathe_V2 : V2;
+fun loathing_N : N;
+fun loathly_A : A;
+fun loathsome_A : A;
+fun lob_N : N;
+fun lob_V : V;
+fun lob_V2 : V2;
+fun lobby_N : N;
+fun lobby_V : V;
+fun lobby_V2 : V2;
+fun lobbyist_N : N;
+fun lobe_N : N;
+fun lobed_A : A;
+fun lobster_N : N;
+fun lobster_pot_N : N;
+fun loc_cit_PN : PN;
+fun local_A : A;
+fun local_N : N;
+fun locale_N : N;
+fun localism_N : N;
+fun locality_N : N;
+fun localization_N : N;
+fun localize_V2 : V2;
+fun locally_Adv : Adv;
+fun locate_V2 : V2;
+fun location_N : N;
+fun loch_N : N;
+fun lochgelly_PN : PN;
+fun lock_N : N;
+fun lock_V : V;
+fun lock_V2 : V2;
+fun lock_gate_N : N;
+fun lock_keeper_N : N;
+fun locker_N : N;
+fun locket_N : N;
+fun lockjaw_N : N;
+fun locknut_N : N;
+fun lockout_N : N;
+fun locksmith_N : N;
+fun lockstitch_N : N;
+fun lockup_A : A;
+fun lockup_N : N;
+fun loco_A : A;
+fun locomotion_N : N;
+fun locomotive_A : A;
+fun locomotive_N : N;
+fun locum_N : N;
+fun locum_tenens_N : N;
+fun locus_N : N;
+fun locus_classicus_N : N;
+fun locust_N : N;
+fun locust_tree_N : N;
+fun locution_N : N;
+fun lode_N : N;
+fun lodestar_N : N;
+fun lodestone_N : N;
+fun lodge_N : N;
+fun lodge_V : V;
+fun lodge_V2 : V2;
+fun lodgement_N : N;
+fun lodger_N : N;
+fun lodging_N : N;
+fun lodging_house_N : N;
+fun lodgment_N : N;
+fun lodz_PN : PN;
+fun loess_N : N;
+fun loft_N : N;
+fun loft_V2 : V2;
+fun loftily_Adv : Adv;
+fun loftiness_N : N;
+fun loftus_PN : PN;
+fun lofty_A : A;
+fun log_N : N;
+fun log_V2 : V2;
+fun log_cabin_N : N;
+fun log_jam_N : N;
+fun log_rolling_N : N;
+fun loganberry_N : N;
+fun logarithm_N : N;
+fun logarithmic_A : A;
+fun logarithmically_Adv : Adv;
+fun logbook_N : N;
+fun loggerheads_N : N;
+fun loggia_N : N;
+fun logging_N : N;
+fun logic_N : N;
+fun logical_A : A;
+fun logicality_N : N;
+fun logically_Adv : Adv;
+fun logician_N : N;
+fun logistics_N : N;
+fun loin_N : N;
+fun loincloth_N : N;
+fun lois_PN : PN;
+fun loiter_V : V;
+fun loiter_V2 : V2;
+fun loiterer_N : N;
+fun loll_V : V;
+fun loll_V2 : V2;
+fun lollipop_N : N;
+fun lolly_N : N;
+fun london_PN : PN;
+fun londonderry_PN : PN;
+fun londoner_N : N;
+fun lone_A : A;
+fun loneliness_N : N;
+fun lonely_A : A;
+fun lonesome_A : A;
+fun long_A : A;
+fun long_Adv : Adv;
+fun long_N : N;
+fun long_V : V;
+fun long_distance_A : A;
+fun long_drawn_out_A : A;
+fun long_eaton_PN : PN;
+fun long_haired_A : A;
+fun long_headed_A : A;
+fun long_lived_A : A;
+fun long_play_A : A;
+fun long_playing_A : A;
+fun long_range_A : A;
+fun long_sighted_A : A;
+fun long_standing_A : A;
+fun long_suffering_A : A;
+fun long_term_A : A;
+fun long_time_A : A;
+fun long_winded_A : A;
+fun long_windedness_N : N;
+fun longboat_N : N;
+fun longbow_N : N;
+fun longer_Adv : Adv;
+fun longest_Adv : Adv;
+fun longevity_N : N;
+fun longhand_N : N;
+fun longing_A : A;
+fun longing_N : N;
+fun longingly_Adv : Adv;
+fun longish_A : A;
+fun longitude_N : N;
+fun longitudinal_A : A;
+fun longitudinally_Adv : Adv;
+fun longridge_PN : PN;
+fun longshoreman_N : N;
+fun longton_PN : PN;
+fun longways_Adv : Adv;
+fun longwise_Adv : Adv;
+fun loo_N : N;
+fun loofa_N : N;
+fun loofah_N : N;
+fun look_N : N;
+fun look_V : V;
+fun look_V2 : V2;
+fun look_over_N : N;
+fun looker_N : N;
+fun looker_on_N : N;
+fun looking_glass_N : N;
+fun lookout_N : N;
+fun loom_N : N;
+fun loom_V : V;
+fun loon_N : N;
+fun loony_A : A;
+fun loony_N : N;
+fun loonybin_N : N;
+fun loop_N : N;
+fun loop_V : V;
+fun loop_V2 : V2;
+fun loop_line_N : N;
+fun loophole_N : N;
+fun loopy_A : A;
+fun loose_A : A;
+fun loose_V2 : V2;
+fun loose_leaf_A : A;
+fun loosely_Adv : Adv;
+fun loosen_V : V;
+fun loosen_V2 : V2;
+fun loot_N : N;
+fun loot_V : V;
+fun loot_V2 : V2;
+fun looter_N : N;
+fun lop_V : V;
+fun lop_V2 : V2;
+fun lop_eared_A : A;
+fun lope_N : N;
+fun lope_V : V;
+fun lopsided_A : A;
+fun loquacious_A : A;
+fun loquaciously_Adv : Adv;
+fun loquaciousness_N : N;
+fun loquacity_N : N;
+fun loquat_N : N;
+fun lord_N : N;
+fun lord_V2 : V2;
+fun lordless_A : A;
+fun lordliness_N : N;
+fun lordly_A : A;
+fun lordship_N : N;
+fun lore_N : N;
+fun lorgnette_N : N;
+fun lorn_A : A;
+fun lorna_PN : PN;
+fun lorry_N : N;
+fun los_angeles_PN : PN;
+fun lose_V : V;
+fun lose_V2 : V2;
+fun loser_N : N;
+fun loss_N : N;
+fun loss_leader_N : N;
+fun lossiemouth_PN : PN;
+fun lot_N : N;
+fun loth_A : A;
+fun lothian_PN : PN;
+fun lotion_N : N;
+fun lottery_N : N;
+fun lotto_N : N;
+fun lotus_N : N;
+fun lotus_eater_N : N;
+fun loud_A : A;
+fun loud_Adv : Adv;
+fun loud_hailer_N : N;
+fun loudly_Adv : Adv;
+fun loudness_N : N;
+fun loudspeaker_N : N;
+fun lough_N : N;
+fun loughborough_PN : PN;
+fun louis_PN : PN;
+fun louise_PN : PN;
+fun louisiana_PN : PN;
+fun louisville_PN : PN;
+fun lounge_N : N;
+fun lounge_V : V;
+fun lounge_chair_N : N;
+fun lounge_lizard_N : N;
+fun lounge_suit_N : N;
+fun lounger_N : N;
+fun lour_V : V;
+fun louringly_Adv : Adv;
+fun louse_N : N;
+fun lousy_A : A;
+fun lout_N : N;
+fun louth_PN : PN;
+fun loutish_A : A;
+fun louvered_A : A;
+fun louvre_N : N;
+fun lovable_A : A;
+fun love_N : N;
+fun love_V2 : V2;
+fun love_affair_N : N;
+fun love_child_N : N;
+fun love_feast_N : N;
+fun love_knot_N : N;
+fun love_letter_N : N;
+fun love_match_N : N;
+fun love_philtre_N : N;
+fun love_potion_N : N;
+fun love_seat_N : N;
+fun love_song_N : N;
+fun love_story_N : N;
+fun love_token_N : N;
+fun lovebird_N : N;
+fun loveless_A : A;
+fun loveliness_N : N;
+fun lovelorn_A : A;
+fun lovely_A : A;
+fun lovemaking_N : N;
+fun lover_N : N;
+fun loverlike_A : A;
+fun lovesick_A : A;
+fun loving_A : A;
+fun loving_cup_N : N;
+fun loving_kindness_N : N;
+fun lovingly_Adv : Adv;
+fun low_A : A;
+fun low_Adv : Adv;
+fun low_N : N;
+fun low_V : V;
+fun low_down_A : A;
+fun low_keyed_A : A;
+fun low_pitched_A : A;
+fun low_relief_N : N;
+fun low_spirited_A : A;
+fun lowborn_A : A;
+fun lowbred_A : A;
+fun lowbrow_A : A;
+fun lowbrow_N : N;
+fun lower_Adv : Adv;
+fun lower_V : V;
+fun lower_V2 : V2;
+fun lowermost_A : A;
+fun lowest_Adv : Adv;
+fun lowestoft_PN : PN;
+fun lowlander_N : N;
+fun lowliness_N : N;
+fun lowly_A : A;
+fun lowness_N : N;
+fun loyal_A : A;
+fun loyalist_N : N;
+fun loyally_Adv : Adv;
+fun loyalty_N : N;
+fun loyang_PN : PN;
+fun lozenge_N : N;
+fun lp_N : N;
+fun lps_N : N;
+fun lsd_N : N;
+fun lt_PN : PN;
+fun ltd_PN : PN;
+fun lubber_N : N;
+fun lubberly_A : A;
+fun lubeck_PN : PN;
+fun lubricant_N : N;
+fun lubricate_V2 : V2;
+fun lubrication_N : N;
+fun lucent_A : A;
+fun lucerne_N : N;
+fun lucid_A : A;
+fun lucidity_N : N;
+fun lucidly_Adv : Adv;
+fun lucifer_N : N;
+fun luck_N : N;
+fun luckily_Adv : Adv;
+fun luckless_A : A;
+fun lucknow_PN : PN;
+fun lucky_A : A;
+fun lucrative_A : A;
+fun lucre_N : N;
+fun lucy_PN : PN;
+fun luddite_N : N;
+fun ludicrous_A : A;
+fun ludicrously_Adv : Adv;
+fun ludlow_PN : PN;
+fun ludo_N : N;
+fun ludwigshafen_PN : PN;
+fun luff_V : V;
+fun luff_V2 : V2;
+fun lug_N : N;
+fun lug_V2 : V2;
+fun luge_N : N;
+fun luggage_N : N;
+fun luggage_carrier_N : N;
+fun luggage_rack_N : N;
+fun luggage_van_N : N;
+fun lugger_N : N;
+fun lugsail_N : N;
+fun lugubrious_A : A;
+fun lugubriously_Adv : Adv;
+fun lugubriousness_N : N;
+fun luke_PN : PN;
+fun lukewarm_A : A;
+fun lukewarmly_Adv : Adv;
+fun lukewarmness_N : N;
+fun lull_N : N;
+fun lull_V : V;
+fun lull_V2 : V2;
+fun lullaby_N : N;
+fun lumbago_N : N;
+fun lumbar_A : A;
+fun lumber_N : N;
+fun lumber_V : V;
+fun lumber_V2 : V2;
+fun lumber_mill_N : N;
+fun lumberjack_N : N;
+fun lumberman_N : N;
+fun lumberroom_N : N;
+fun lumberyard_N : N;
+fun luminary_N : N;
+fun luminosity_N : N;
+fun luminous_A : A;
+fun lump_N : N;
+fun lump_V2 : V2;
+fun lumpish_A : A;
+fun lumpy_A : A;
+fun lunacy_N : N;
+fun lunar_A : A;
+fun lunatic_N : N;
+fun lunch_N : N;
+fun lunch_V : V;
+fun lunch_V2 : V2;
+fun luncheon_N : N;
+fun lunchtime_N : N;
+fun lung_N : N;
+fun lung_power_N : N;
+fun lunge_N : N;
+fun lunge_V : V;
+fun lupin_N : N;
+fun lurch_N : N;
+fun lurch_V : V;
+fun lurcher_N : N;
+fun lure_N : N;
+fun lure_V2 : V2;
+fun lurid_A : A;
+fun luridly_Adv : Adv;
+fun luridness_N : N;
+fun lurk_V : V;
+fun lurking_place_N : N;
+fun luscious_A : A;
+fun lusciously_Adv : Adv;
+fun lusciousness_N : N;
+fun lush_A : A;
+fun lush_N : N;
+fun lust_N : N;
+fun lust_V : V;
+fun lustful_A : A;
+fun lustfully_Adv : Adv;
+fun lustily_Adv : Adv;
+fun lustre_N : N;
+fun lustrous_A : A;
+fun lusty_A : A;
+fun luta_PN : PN;
+fun lutanist_N : N;
+fun lute_N : N;
+fun lutenist_N : N;
+fun lutheran_A : A;
+fun lutheran_N : N;
+fun luton_PN : PN;
+fun luxe_A : A;
+fun luxembourg_PN : PN;
+fun luxemburg_PN : PN;
+fun luxemburger_A : A;
+fun luxemburger_N : N;
+fun luxuriance_N : N;
+fun luxuriant_A : A;
+fun luxuriantly_Adv : Adv;
+fun luxuriate_V : V;
+fun luxurious_A : A;
+fun luxuriously_Adv : Adv;
+fun luxury_N : N;
+fun lvov_PN : PN;
+fun lyallpur_PN : PN;
+fun lyceum_N : N;
+fun lychee_N : N;
+fun lychgate_N : N;
+fun lycee_N : N;
+fun lydia_PN : PN;
+fun lydney_PN : PN;
+fun lye_N : N;
+fun lying_in_A : A;
+fun lymington_PN : PN;
+fun lymm_PN : PN;
+fun lymph_N : N;
+fun lymphatic_A : A;
+fun lynch_N : N;
+fun lynch_V2 : V2;
+fun lynchpin_N : N;
+fun lynn_PN : PN;
+fun lynne_PN : PN;
+fun lynx_N : N;
+fun lynx_eyed_A : A;
+fun lyons_PN : PN;
+fun lyre_N : N;
+fun lyre_bird_N : N;
+fun lyric_A : A;
+fun lyric_N : N;
+fun lyrical_A : A;
+fun lyrically_Adv : Adv;
+fun lyricism_N : N;
+fun lyricist_N : N;
+fun lysol_N : N;
+fun lytham_PN : PN;
+fun lytham_st_annes_PN : PN;
+fun ma'am_N : N;
+fun ma_N : N;
+fun maastricht_PN : PN;
+fun mabel_PN : PN;
+fun mac_N : N;
+fun macabre_A : A;
+fun macadam_N : N;
+fun macadamize_V2 : V2;
+fun macaroni_N : N;
+fun macaroon_N : N;
+fun macaw_N : N;
+fun macclesfield_PN : PN;
+fun mace_N : N;
+fun mace_bearer_N : N;
+fun macedonian_A : A;
+fun macedonian_N : N;
+fun macerate_V : V;
+fun macerate_V2 : V2;
+fun mach_PN : PN;
+fun machete_N : N;
+fun machiavellian_A : A;
+fun machination_N : N;
+fun machine_N : N;
+fun machine_V2 : V2;
+fun machine_gun_N : N;
+fun machine_made_A : A;
+fun machinery_N : N;
+fun machinist_N : N;
+fun machismo_N : N;
+fun mackerel_N : N;
+fun mackintosh_N : N;
+fun macrobiotic_A : A;
+fun macrocosm_N : N;
+fun mad_A : A;
+fun madagascan_A : A;
+fun madagascan_N : N;
+fun madagascar_PN : PN;
+fun madam_N : N;
+fun madame_N : N;
+fun madcap_N : N;
+fun madden_V2 : V2;
+fun madder_N : N;
+fun maddy_PN : PN;
+fun madeira_N : N;
+fun madeleine_PN : PN;
+fun mademoiselle_N : N;
+fun madge_PN : PN;
+fun madhouse_N : N;
+fun madly_Adv : Adv;
+fun madman_N : N;
+fun madness_N : N;
+fun madonna_N : N;
+fun madras_PN : PN;
+fun madrid_PN : PN;
+fun madrigal_N : N;
+fun madurai_PN : PN;
+fun madwoman_N : N;
+fun maecenas_PN : PN;
+fun maelstrom_N : N;
+fun maenad_N : N;
+fun maesteg_PN : PN;
+fun maestro_N : N;
+fun maffick_V : V;
+fun mafia_N : N;
+fun mag_N : N;
+fun magazine_N : N;
+fun magdeburg_PN : PN;
+fun magenta_A : A;
+fun magenta_N : N;
+fun maggie_PN : PN;
+fun maggot_N : N;
+fun maggoty_A : A;
+fun maghull_PN : PN;
+fun magic_A : A;
+fun magic_N : N;
+fun magical_A : A;
+fun magically_Adv : Adv;
+fun magician_N : N;
+fun magisterial_A : A;
+fun magisterially_Adv : Adv;
+fun magistracy_N : N;
+fun magistrate_N : N;
+fun magnanimity_N : N;
+fun magnanimous_A : A;
+fun magnanimously_Adv : Adv;
+fun magnate_N : N;
+fun magnesia_N : N;
+fun magnesium_N : N;
+fun magnet_N : N;
+fun magnetic_A : A;
+fun magnetically_Adv : Adv;
+fun magnetism_N : N;
+fun magnetization_N : N;
+fun magnetize_V2 : V2;
+fun magneto_N : N;
+fun magnificat_N : N;
+fun magnification_N : N;
+fun magnificence_N : N;
+fun magnificent_A : A;
+fun magnificently_Adv : Adv;
+fun magnifier_N : N;
+fun magnify_V2 : V2;
+fun magniloquence_N : N;
+fun magniloquent_A : A;
+fun magniloquently_Adv : Adv;
+fun magnitude_N : N;
+fun magnolia_N : N;
+fun magnum_N : N;
+fun magnum_opus_N : N;
+fun magpie_N : N;
+fun magyar_A : A;
+fun magyar_N : N;
+fun maharaja_N : N;
+fun maharajah_N : N;
+fun maharanee_N : N;
+fun mahatma_N : N;
+fun mahjong_N : N;
+fun mahogany_N : N;
+fun mahout_N : N;
+fun maid_N : N;
+fun maiden_A : A;
+fun maiden_N : N;
+fun maidenhair_N : N;
+fun maidenhead_N : N;
+fun maidenhead_PN : PN;
+fun maidenhood_N : N;
+fun maidenlike_A : A;
+fun maidenly_A : A;
+fun maidservant_N : N;
+fun maidstone_PN : PN;
+fun mail_N : N;
+fun mail_V2 : V2;
+fun mail_train_N : N;
+fun mailbag_N : N;
+fun mailboat_N : N;
+fun mailbox_N : N;
+fun mailed_A : A;
+fun mailing_card_N : N;
+fun mailing_list_N : N;
+fun mailman_N : N;
+fun maim_V2 : V2;
+fun main_A : A;
+fun main_N : N;
+fun maine_PN : PN;
+fun mainland_N : N;
+fun mainly_Adv : Adv;
+fun mainmast_N : N;
+fun mainspring_N : N;
+fun mainstay_N : N;
+fun mainstream_N : N;
+fun maintain_V2 : V2;
+fun maintainable_A : A;
+fun maintenance_N : N;
+fun mainz_PN : PN;
+fun maisonnette_N : N;
+fun maize_N : N;
+fun maj_PN : PN;
+fun majestic_A : A;
+fun majestically_Adv : Adv;
+fun majesty_N : N;
+fun majolica_N : N;
+fun major_A : A;
+fun major_N : N;
+fun major_V : V;
+fun major_domo_N : N;
+fun major_general_N : N;
+fun majority_N : N;
+fun make_N : N;
+fun make_V : V;
+fun make_V2 : V2;
+fun make_believe_N : N;
+fun make_up_N : N;
+fun maker_N : N;
+fun makeshift_N : N;
+fun makeweight_N : N;
+fun making_N : N;
+fun malacca_N : N;
+fun malachite_N : N;
+fun maladjusted_A : A;
+fun maladjustment_N : N;
+fun maladroit_A : A;
+fun maladroitly_Adv : Adv;
+fun maladroitness_N : N;
+fun malady_N : N;
+fun malaga_PN : PN;
+fun malaise_N : N;
+fun malapropism_N : N;
+fun malapropos_A : A;
+fun malapropos_Adv : Adv;
+fun malaria_N : N;
+fun malarial_A : A;
+fun malawi_PN : PN;
+fun malawian_A : A;
+fun malawian_N : N;
+fun malay_A : A;
+fun malay_N : N;
+fun malaya_PN : PN;
+fun malayan_A : A;
+fun malayan_N : N;
+fun malaysia_PN : PN;
+fun malaysian_A : A;
+fun malaysian_N : N;
+fun malcolm_PN : PN;
+fun malcontent_A : A;
+fun malcontent_N : N;
+fun maldon_PN : PN;
+fun male_A : A;
+fun male_N : N;
+fun malediction_N : N;
+fun malefactor_N : N;
+fun maleficent_A : A;
+fun malevolence_N : N;
+fun malevolent_A : A;
+fun malevolently_Adv : Adv;
+fun malfeasance_N : N;
+fun malformation_N : N;
+fun malformed_A : A;
+fun malfunction_N : N;
+fun malfunction_V : V;
+fun mali_PN : PN;
+fun malian_A : A;
+fun malian_N : N;
+fun malice_N : N;
+fun malicious_A : A;
+fun maliciously_Adv : Adv;
+fun malign_A : A;
+fun malign_V2 : V2;
+fun malignancy_N : N;
+fun malignant_A : A;
+fun malignantly_Adv : Adv;
+fun malignity_N : N;
+fun malinger_V : V;
+fun malingerer_N : N;
+fun mallard_N : N;
+fun malleability_N : N;
+fun malleable_A : A;
+fun mallet_N : N;
+fun mallow_N : N;
+fun mallow_PN : PN;
+fun malmo_PN : PN;
+fun malmsey_N : N;
+fun malnutrition_N : N;
+fun malodorous_A : A;
+fun malpractice_N : N;
+fun malt_N : N;
+fun malt_V : V;
+fun malt_V2 : V2;
+fun malta_PN : PN;
+fun maltby_PN : PN;
+fun maltese_A : A;
+fun maltese_N : N;
+fun malthusian_A : A;
+fun maltreat_V2 : V2;
+fun maltreatment_N : N;
+fun maltster_N : N;
+fun malvern_PN : PN;
+fun malversation_N : N;
+fun mama_N : N;
+fun mamba_N : N;
+fun mamie_PN : PN;
+fun mamma_N : N;
+fun mammal_N : N;
+fun mammon_N : N;
+fun mammoth_N : N;
+fun mammy_N : N;
+fun man_N : N;
+fun man_V2 : V2;
+fun man_at_arms_N : N;
+fun man_eater_N : N;
+fun man_hour_N : N;
+fun man_of_war_N : N;
+fun man_sized_A : A;
+fun manacle_N : N;
+fun manacle_V2 : V2;
+fun manage_V : V;
+fun manage_V2 : V2;
+fun manageability_N : N;
+fun manageable_A : A;
+fun manageably_Adv : Adv;
+fun management_N : N;
+fun manager_N : N;
+fun manageress_N : N;
+fun managerial_A : A;
+fun manatee_N : N;
+fun manchester_PN : PN;
+fun mancunian_A : A;
+fun mancunian_N : N;
+fun mandarin_N : N;
+fun mandatary_N : N;
+fun mandate_N : N;
+fun mandate_V2 : V2;
+fun mandatory_A : A;
+fun mandatory_N : N;
+fun mandible_N : N;
+fun mandolin_N : N;
+fun mandragora_N : N;
+fun mandrake_N : N;
+fun mandrill_N : N;
+fun mandy_PN : PN;
+fun mane_N : N;
+fun manful_A : A;
+fun manfully_Adv : Adv;
+fun manganese_N : N;
+fun mange_N : N;
+fun mangel_wurzel_N : N;
+fun manger_N : N;
+fun mangily_Adv : Adv;
+fun mangle_N : N;
+fun mangle_V2 : V2;
+fun mango_N : N;
+fun mangosteen_N : N;
+fun mangrove_N : N;
+fun mangy_A : A;
+fun manhandle_V2 : V2;
+fun manhattan_N : N;
+fun manhole_N : N;
+fun manhood_N : N;
+fun mania_N : N;
+fun maniac_N : N;
+fun maniacal_A : A;
+fun maniacally_Adv : Adv;
+fun manic_depressive_A : A;
+fun manic_depressive_N : N;
+fun manicure_N : N;
+fun manicure_V2 : V2;
+fun manicurist_N : N;
+fun manifest_A : A;
+fun manifest_N : N;
+fun manifest_V2 : V2;
+fun manifestation_N : N;
+fun manifestly_Adv : Adv;
+fun manifesto_N : N;
+fun manifold_A : A;
+fun manifold_N : N;
+fun manifold_V2 : V2;
+fun manikin_N : N;
+fun manila_PN : PN;
+fun manilla_N : N;
+fun manipulate_V2 : V2;
+fun manipulation_N : N;
+fun manipulative_A : A;
+fun manitoba_PN : PN;
+fun mankind_N : N;
+fun manlike_A : A;
+fun manliness_N : N;
+fun manly_A : A;
+fun manna_N : N;
+fun mannequin_N : N;
+fun manner_N : N;
+fun mannered_A : A;
+fun mannerism_N : N;
+fun mannerly_A : A;
+fun mannheim_PN : PN;
+fun mannish_A : A;
+fun manoeuvrability_N : N;
+fun manoeuvrable_A : A;
+fun manoeuvre_N : N;
+fun manoeuvre_V : V;
+fun manoeuvre_V2 : V2;
+fun manoeuvrer_N : N;
+fun manor_N : N;
+fun manor_house_N : N;
+fun manorial_A : A;
+fun manpower_N : N;
+fun mansard_N : N;
+fun manse_N : N;
+fun manservant_N : N;
+fun mansfield_PN : PN;
+fun mansion_N : N;
+fun manslaughter_N : N;
+fun mantel_N : N;
+fun mantelpiece_N : N;
+fun mantilla_N : N;
+fun mantis_N : N;
+fun mantle_N : N;
+fun mantle_V : V;
+fun mantle_V2 : V2;
+fun mantrap_N : N;
+fun manual_A : A;
+fun manual_N : N;
+fun manually_Adv : Adv;
+fun manufacture_N : N;
+fun manufacture_V2 : V2;
+fun manufacturer_N : N;
+fun manumission_N : N;
+fun manumit_V2 : V2;
+fun manure_N : N;
+fun manure_V2 : V2;
+fun manuscript_N : N;
+fun manx_A : A;
+fun manx_N : N;
+fun many_sided_A : A;
+fun maoism_N : N;
+fun maoist_N : N;
+fun maori_N : N;
+fun map_N : N;
+fun map_V2 : V2;
+fun map_reader_N : N;
+fun maple_N : N;
+fun maple_leaf_N : N;
+fun maquis_N : N;
+fun mar_PN : PN;
+fun mar_V2 : V2;
+fun marabou_N : N;
+fun maracaibo_PN : PN;
+fun maraschino_N : N;
+fun marathon_N : N;
+fun maraud_V : V;
+fun marauder_N : N;
+fun marble_N : N;
+fun marbled_A : A;
+fun marbling_N : N;
+fun march_N : N;
+fun march_PN : PN;
+fun march_V : V;
+fun march_V2 : V2;
+fun marcher_N : N;
+fun marchioness_N : N;
+fun mardi_gras_N : N;
+fun mare_N : N;
+fun margaret_PN : PN;
+fun margarine_N : N;
+fun margate_PN : PN;
+fun marge_N : N;
+fun marge_PN : PN;
+fun margery_PN : PN;
+fun margie_PN : PN;
+fun margin_N : N;
+fun marginal_A : A;
+fun marginally_Adv : Adv;
+fun margrave_N : N;
+fun marguerite_N : N;
+fun maria_PN : PN;
+fun marian_PN : PN;
+fun marie_PN : PN;
+fun marigold_N : N;
+fun marihuana_N : N;
+fun marijuana_N : N;
+fun marilyn_PN : PN;
+fun marimba_N : N;
+fun marina_N : N;
+fun marinade_N : N;
+fun marinade_V2 : V2;
+fun marinate_V2 : V2;
+fun marine_A : A;
+fun marine_N : N;
+fun mariner_N : N;
+fun marion_PN : PN;
+fun marionette_N : N;
+fun marital_A : A;
+fun maritime_A : A;
+fun marjoram_N : N;
+fun marjorie_PN : PN;
+fun mark_N : N;
+fun mark_PN : PN;
+fun mark_V2 : V2;
+fun mark_up_N : N;
+fun marked_A : A;
+fun markedly_Adv : Adv;
+fun marker_N : N;
+fun market_N : N;
+fun market_V : V;
+fun market_V2 : V2;
+fun market_cross_N : N;
+fun market_day_N : N;
+fun market_drayton_PN : PN;
+fun market_garden_N : N;
+fun market_gardening_N : N;
+fun market_harborough_PN : PN;
+fun market_square_N : N;
+fun market_town_N : N;
+fun marketable_A : A;
+fun marketing_N : N;
+fun marketplace_N : N;
+fun marking_N : N;
+fun marking_ink_N : N;
+fun marking_inks_N : N;
+fun marksman_N : N;
+fun marksmanship_N : N;
+fun marl_N : N;
+fun marlborough_PN : PN;
+fun marlene_PN : PN;
+fun marlinespike_N : N;
+fun marlow_PN : PN;
+fun marmalade_N : N;
+fun marmoreal_A : A;
+fun marmoset_N : N;
+fun marmot_N : N;
+fun marocain_N : N;
+fun maroon_A : A;
+fun maroon_N : N;
+fun maroon_V2 : V2;
+fun marple_PN : PN;
+fun marque_N : N;
+fun marquee_N : N;
+fun marquess_N : N;
+fun marquetry_N : N;
+fun marquis_N : N;
+fun marriage_N : N;
+fun marriageability_N : N;
+fun marriageable_A : A;
+fun married_A : A;
+fun marrow_N : N;
+fun marrowbone_N : N;
+fun marry_V : V;
+fun marry_V2 : V2;
+fun mars_PN : PN;
+fun marsala_N : N;
+fun marseillaise_N : N;
+fun marseilles_PN : PN;
+fun marsh_N : N;
+fun marshal_N : N;
+fun marshal_V2 : V2;
+fun marshalling_yard_N : N;
+fun marshmallow_N : N;
+fun marshy_A : A;
+fun marske_PN : PN;
+fun marsupial_A : A;
+fun marsupial_N : N;
+fun mart_N : N;
+fun marten_N : N;
+fun martha_PN : PN;
+fun martial_A : A;
+fun martially_Adv : Adv;
+fun martian_A : A;
+fun martian_N : N;
+fun martin_N : N;
+fun martin_PN : PN;
+fun martinet_N : N;
+fun martini_N : N;
+fun martyr_N : N;
+fun martyr_V2 : V2;
+fun martyrdom_N : N;
+fun marvel_N : N;
+fun marvel_V : V;
+fun marvellous_A : A;
+fun marvellously_Adv : Adv;
+fun marvelous_A : A;
+fun marvelously_Adv : Adv;
+fun marxism_N : N;
+fun marxist_N : N;
+fun mary_PN : PN;
+fun maryland_PN : PN;
+fun maryport_PN : PN;
+fun marzipan_N : N;
+fun masc_PN : PN;
+fun mascara_N : N;
+fun mascot_N : N;
+fun masculine_A : A;
+fun masculinity_N : N;
+fun maser_N : N;
+fun mash_N : N;
+fun mash_V2 : V2;
+fun masher_N : N;
+fun mask_N : N;
+fun mask_V2 : V2;
+fun masochism_N : N;
+fun masochist_N : N;
+fun masochistic_A : A;
+fun masochistically_Adv : Adv;
+fun mason_N : N;
+fun mason_dixon_PN : PN;
+fun masonic_A : A;
+fun masonry_N : N;
+fun masque_N : N;
+fun masquerade_N : N;
+fun masquerade_V : V;
+fun mass_N : N;
+fun mass_V : V;
+fun mass_V2 : V2;
+fun mass_produce_V2 : V2;
+fun massachusetts_PN : PN;
+fun massacre_N : N;
+fun massacre_V2 : V2;
+fun massage_N : N;
+fun massage_V2 : V2;
+fun masseur_N : N;
+fun masseuse_N : N;
+fun massif_N : N;
+fun massive_A : A;
+fun massively_Adv : Adv;
+fun massiveness_N : N;
+fun massy_A : A;
+fun mast_N : N;
+fun master_N : N;
+fun master_V2 : V2;
+fun master_at_arms_N : N;
+fun master_key_N : N;
+fun masterful_A : A;
+fun masterfully_Adv : Adv;
+fun masterless_A : A;
+fun masterly_A : A;
+fun mastermind_N : N;
+fun mastermind_V2 : V2;
+fun masterpiece_N : N;
+fun mastership_N : N;
+fun masterstroke_N : N;
+fun mastery_N : N;
+fun masthead_N : N;
+fun masticate_V2 : V2;
+fun mastication_N : N;
+fun mastiff_N : N;
+fun mastodon_N : N;
+fun mastoid_N : N;
+fun mastoiditis_N : N;
+fun masturbate_V : V;
+fun masturbate_V2 : V2;
+fun masturbation_N : N;
+fun mat_A : A;
+fun mat_N : N;
+fun mat_V : V;
+fun mat_V2 : V2;
+fun matador_N : N;
+fun match_N : N;
+fun match_V : V;
+fun match_V2 : V2;
+fun match_point_N : N;
+fun matchbox_N : N;
+fun matchet_N : N;
+fun matchless_A : A;
+fun matchlock_N : N;
+fun matchmaker_N : N;
+fun matchwood_N : N;
+fun mate_1_N : N;
+fun mate_V : V;
+fun mate_V2 : V2;
+fun material_A : A;
+fun material_N : N;
+fun materialism_N : N;
+fun materialist_N : N;
+fun materialistic_A : A;
+fun materialistically_Adv : Adv;
+fun materialization_N : N;
+fun materialize_V : V;
+fun materially_Adv : Adv;
+fun maternal_A : A;
+fun maternally_Adv : Adv;
+fun maternity_N : N;
+fun matey_A : A;
+fun mathematical_A : A;
+fun mathematically_Adv : Adv;
+fun mathematician_N : N;
+fun mathematics_N : N;
+fun maths_N : N;
+fun matinee_N : N;
+fun matlock_PN : PN;
+fun matriarch_N : N;
+fun matriarchal_A : A;
+fun matriarchy_N : N;
+fun matric_N : N;
+fun matricide_N : N;
+fun matriculate_V : V;
+fun matriculate_V2 : V2;
+fun matriculation_N : N;
+fun matrimonial_A : A;
+fun matrimony_N : N;
+fun matrix_N : N;
+fun matron_N : N;
+fun matronly_A : A;
+fun matt_A : A;
+fun matt_PN : PN;
+fun matted_A : A;
+fun matter_N : N;
+fun matter_V : V;
+fun matter_of_course_A : A;
+fun matter_of_fact_A : A;
+fun matthew_PN : PN;
+fun matting_N : N;
+fun mattock_N : N;
+fun mattress_N : N;
+fun maturate_V : V;
+fun maturation_N : N;
+fun mature_A : A;
+fun mature_V : V;
+fun mature_V2 : V2;
+fun maturely_Adv : Adv;
+fun maturity_N : N;
+fun matutinal_A : A;
+fun mate_2_N : N;
+fun maud_PN : PN;
+fun maudie_PN : PN;
+fun maudlin_A : A;
+fun maul_V2 : V2;
+fun maulstick_N : N;
+fun maunder_V : V;
+fun maundy_thursday_N : N;
+fun maundy_thursday_PN : PN;
+fun maureen_PN : PN;
+fun maurice_PN : PN;
+fun mauritania_PN : PN;
+fun mauritanian_A : A;
+fun mauritanian_N : N;
+fun mauritian_A : A;
+fun mauritian_N : N;
+fun mauritius_PN : PN;
+fun mausoleum_N : N;
+fun mauve_A : A;
+fun mauve_N : N;
+fun maverick_N : N;
+fun mavis_N : N;
+fun mavis_PN : PN;
+fun maw_N : N;
+fun mawkish_A : A;
+fun mawkishly_Adv : Adv;
+fun mawkishness_N : N;
+fun max_N : N;
+fun max_PN : PN;
+fun maxim_N : N;
+fun maximal_A : A;
+fun maximally_Adv : Adv;
+fun maximization_N : N;
+fun maximize_V2 : V2;
+fun maximum_A : A;
+fun maximum_N : N;
+fun maxine_PN : PN;
+fun may_N : N;
+fun may_PN : PN;
+fun may_beetle_N : N;
+fun may_bug_N : N;
+fun maybe_Adv : Adv;
+fun mayday_N : N;
+fun mayfair_PN : PN;
+fun mayfield_PN : PN;
+fun mayfly_N : N;
+fun mayhem_N : N;
+fun mayo_PN : PN;
+fun mayonnaise_N : N;
+fun mayor_N : N;
+fun mayoral_A : A;
+fun mayoralty_N : N;
+fun mayoress_N : N;
+fun maypole_N : N;
+fun maze_N : N;
+fun mazed_A : A;
+fun mazurka_N : N;
+fun mb_N : N;
+fun mc_N : N;
+fun mcc_N : N;
+fun mccarthyism_N : N;
+fun md_N : N;
+fun mead_N : N;
+fun meadow_N : N;
+fun meagre_A : A;
+fun meagrely_Adv : Adv;
+fun meagreness_N : N;
+fun meal_N : N;
+fun mealie_N : N;
+fun mealtime_N : N;
+fun mealy_A : A;
+fun mealy_bug_N : N;
+fun mealy_mouthed_A : A;
+fun mean_A : A;
+fun mean_N : N;
+fun mean_V2 : V2;
+fun meander_V : V;
+fun meanderingly_Adv : Adv;
+fun meanie_N : N;
+fun meaning_A : A;
+fun meaning_N : N;
+fun meaningful_A : A;
+fun meaningfully_Adv : Adv;
+fun meaningless_A : A;
+fun meaningly_Adv : Adv;
+fun meanly_Adv : Adv;
+fun meanness_N : N;
+fun meantime_Adv : Adv;
+fun meantime_N : N;
+fun meanwhile_Adv : Adv;
+fun meany_N : N;
+fun measles_N : N;
+fun measly_A : A;
+fun measurable_A : A;
+fun measurably_Adv : Adv;
+fun measure_N : N;
+fun measure_V : V;
+fun measure_V2 : V2;
+fun measured_A : A;
+fun measureless_A : A;
+fun measurement_N : N;
+fun meat_N : N;
+fun meat_safe_N : N;
+fun meatball_N : N;
+fun meath_PN : PN;
+fun meatless_A : A;
+fun meaty_A : A;
+fun mecca_PN : PN;
+fun mechanic_N : N;
+fun mechanical_A : A;
+fun mechanically_Adv : Adv;
+fun mechanics_N : N;
+fun mechanism_N : N;
+fun mechanistic_A : A;
+fun mechanistically_Adv : Adv;
+fun mechanization_N : N;
+fun mechanize_V2 : V2;
+fun med_N : N;
+fun medal_N : N;
+fun medalist_N : N;
+fun medallion_N : N;
+fun medallist_N : N;
+fun medan_PN : PN;
+fun meddle_V : V;
+fun meddler_N : N;
+fun meddlesome_A : A;
+fun medellin_PN : PN;
+fun mediaeval_A : A;
+fun medial_A : A;
+fun medially_Adv : Adv;
+fun median_A : A;
+fun median_N : N;
+fun mediate_V : V;
+fun mediate_V2 : V2;
+fun mediation_N : N;
+fun mediator_N : N;
+fun medic_N : N;
+fun medical_A : A;
+fun medical_N : N;
+fun medically_Adv : Adv;
+fun medicament_N : N;
+fun medicare_N : N;
+fun medicate_V2 : V2;
+fun medication_N : N;
+fun medicinal_A : A;
+fun medicine_N : N;
+fun medicine_ball_N : N;
+fun medicine_chest_N : N;
+fun medicine_man_N : N;
+fun medico_N : N;
+fun medieval_A : A;
+fun mediocre_A : A;
+fun mediocrity_N : N;
+fun meditate_V : V;
+fun meditate_V2 : V2;
+fun meditation_N : N;
+fun meditative_A : A;
+fun meditatively_Adv : Adv;
+fun mediterranean_A : A;
+fun medium_A : A;
+fun medium_N : N;
+fun medlar_N : N;
+fun medley_N : N;
+fun meed_N : N;
+fun meek_A : A;
+fun meekly_Adv : Adv;
+fun meekness_N : N;
+fun meerschaum_N : N;
+fun meet_A : A;
+fun meet_N : N;
+fun meet_V : V;
+fun meet_V2 : V2;
+fun meeting_N : N;
+fun meeting_house_N : N;
+fun meeting_place_N : N;
+fun meg_PN : PN;
+fun megacycle_N : N;
+fun megadeath_N : N;
+fun megalith_N : N;
+fun megalithic_A : A;
+fun megalomania_N : N;
+fun megalomaniac_N : N;
+fun megaphone_N : N;
+fun megaton_N : N;
+fun megrim_N : N;
+fun meiosis_N : N;
+fun melancholia_N : N;
+fun melancholic_A : A;
+fun melancholy_A : A;
+fun melancholy_N : N;
+fun melbourne_PN : PN;
+fun melcombe_PN : PN;
+fun melcombe_regis_PN : PN;
+fun meliorate_V : V;
+fun meliorate_V2 : V2;
+fun melioration_N : N;
+fun meliorism_N : N;
+fun melksham_PN : PN;
+fun mellifluous_A : A;
+fun mellow_A : A;
+fun mellow_V : V;
+fun mellow_V2 : V2;
+fun mellowly_Adv : Adv;
+fun mellowness_N : N;
+fun melodic_A : A;
+fun melodious_A : A;
+fun melodiously_Adv : Adv;
+fun melodiousness_N : N;
+fun melodrama_N : N;
+fun melodramatic_A : A;
+fun melodramatically_Adv : Adv;
+fun melody_N : N;
+fun melon_N : N;
+fun melt_V : V;
+fun melt_V2 : V2;
+fun meltham_PN : PN;
+fun melting_A : A;
+fun melting_point_N : N;
+fun melting_pot_N : N;
+fun melton_mowbray_PN : PN;
+fun member_N : N;
+fun membership_N : N;
+fun membrane_N : N;
+fun membranous_A : A;
+fun memento_N : N;
+fun memo_N : N;
+fun memoir_N : N;
+fun memorable_A : A;
+fun memorably_Adv : Adv;
+fun memorandum_N : N;
+fun memorial_N : N;
+fun memorialize_V2 : V2;
+fun memorize_V2 : V2;
+fun memory_N : N;
+fun memphis_PN : PN;
+fun memsahib_N : N;
+fun menace_N : N;
+fun menace_V2 : V2;
+fun menacingly_Adv : Adv;
+fun menagerie_N : N;
+fun mend_N : N;
+fun mend_V : V;
+fun mend_V2 : V2;
+fun mendacious_A : A;
+fun mendaciously_Adv : Adv;
+fun mendacity_N : N;
+fun mendelian_A : A;
+fun mender_N : N;
+fun mendicant_A : A;
+fun mendicant_N : N;
+fun mending_N : N;
+fun menial_A : A;
+fun menial_N : N;
+fun menially_Adv : Adv;
+fun meningitis_N : N;
+fun menopause_N : N;
+fun menstrual_A : A;
+fun menstruate_V : V;
+fun menstruation_N : N;
+fun mensurable_A : A;
+fun mensuration_N : N;
+fun mental_A : A;
+fun mentality_N : N;
+fun mentally_Adv : Adv;
+fun menthol_N : N;
+fun mentholated_A : A;
+fun mention_N : N;
+fun mention_V2 : V2;
+fun mentioned_A : A;
+fun mentor_N : N;
+fun menu_N : N;
+fun meopham_PN : PN;
+fun mephistophelian_A : A;
+fun mercantile_A : A;
+fun mercator_PN : PN;
+fun mercenary_A : A;
+fun mercenary_N : N;
+fun mercer_N : N;
+fun mercerize_V2 : V2;
+fun merchandise_N : N;
+fun merchant_N : N;
+fun merchantman_N : N;
+fun merciful_A : A;
+fun mercifully_Adv : Adv;
+fun merciless_A : A;
+fun mercilessly_Adv : Adv;
+fun mercurial_A : A;
+fun mercury_N : N;
+fun mercury_PN : PN;
+fun mercy_N : N;
+fun mere_A : A;
+fun mere_N : N;
+fun merely_Adv : Adv;
+fun meretricious_A : A;
+fun meretriciously_Adv : Adv;
+fun meretriciousness_N : N;
+fun merge_V : V;
+fun merge_V2 : V2;
+fun merger_N : N;
+fun meridian_N : N;
+fun meridional_A : A;
+fun meringue_N : N;
+fun merino_N : N;
+fun merino_sheep_N : N;
+fun merit_N : N;
+fun merit_V2 : V2;
+fun meritocracy_N : N;
+fun meritocratic_A : A;
+fun meritorious_A : A;
+fun meritoriously_Adv : Adv;
+fun mermaid_N : N;
+fun merman_N : N;
+fun merrily_Adv : Adv;
+fun merriment_N : N;
+fun merry_A : A;
+fun merry_go_round_N : N;
+fun merrymaker_N : N;
+fun merrymaking_N : N;
+fun merthyr_tydfil_PN : PN;
+fun merton_PN : PN;
+fun mescal_N : N;
+fun mescaline_N : N;
+fun meseems_Adv : Adv;
+fun mesh_N : N;
+fun mesh_V : V;
+fun mesh_V2 : V2;
+fun mesmeric_A : A;
+fun mesmerism_N : N;
+fun mesmerist_N : N;
+fun mesmerize_V2 : V2;
+fun meson_N : N;
+fun mess_N : N;
+fun mess_V : V;
+fun mess_V2 : V2;
+fun mess_jacket_N : N;
+fun mess_up_N : N;
+fun message_N : N;
+fun messenger_N : N;
+fun messiah_N : N;
+fun messianic_A : A;
+fun messily_Adv : Adv;
+fun messina_PN : PN;
+fun messiness_N : N;
+fun messmate_N : N;
+fun messuage_N : N;
+fun messy_A : A;
+fun met_PN : PN;
+fun metabolic_A : A;
+fun metabolism_N : N;
+fun metacarpal_A : A;
+fun metacarpal_N : N;
+fun metal_N : N;
+fun metal_V2 : V2;
+fun metallic_A : A;
+fun metallurgical_A : A;
+fun metallurgist_N : N;
+fun metallurgy_N : N;
+fun metalwork_N : N;
+fun metalworker_N : N;
+fun metamorphose_V : V;
+fun metamorphose_V2 : V2;
+fun metamorphosis_N : N;
+fun metaphor_N : N;
+fun metaphorical_A : A;
+fun metaphorically_Adv : Adv;
+fun metaphysical_A : A;
+fun metaphysically_Adv : Adv;
+fun metaphysics_N : N;
+fun metatarsal_A : A;
+fun metatarsal_N : N;
+fun mete_V2 : V2;
+fun meteor_N : N;
+fun meteoric_A : A;
+fun meteorite_N : N;
+fun meteorological_A : A;
+fun meteorologist_N : N;
+fun meteorology_N : N;
+fun meter_N : N;
+fun methane_N : N;
+fun methinks_Adv : Adv;
+fun method_N : N;
+fun methodical_A : A;
+fun methodically_Adv : Adv;
+fun methodism_N : N;
+fun methodist_A : A;
+fun methodist_N : N;
+fun methodological_A : A;
+fun methodologically_Adv : Adv;
+fun methodology_N : N;
+fun methought_Adv : Adv;
+fun methuselah_PN : PN;
+fun methyl_N : N;
+fun methylated_A : A;
+fun meticulous_A : A;
+fun meticulously_Adv : Adv;
+fun meticulousness_N : N;
+fun metre_N : N;
+fun metric_A : A;
+fun metrical_A : A;
+fun metrically_Adv : Adv;
+fun metrication_N : N;
+fun metricize_V2 : V2;
+fun metro_N : N;
+fun metronome_N : N;
+fun metropolis_N : N;
+fun metropolitan_A : A;
+fun metropolitan_N : N;
+fun mettle_N : N;
+fun mettlesome_A : A;
+fun metz_PN : PN;
+fun mew_N : N;
+fun mew_V : V;
+fun mews_N : N;
+fun mexican_A : A;
+fun mexican_N : N;
+fun mexico_PN : PN;
+fun mexico_city_PN : PN;
+fun mezzanine_A : A;
+fun mezzanine_N : N;
+fun mezzo_Adv : Adv;
+fun mezzo_soprano_N : N;
+fun mezzotint_N : N;
+fun mg_N : N;
+fun mgr_PN : PN;
+fun mi5_PN : PN;
+fun mi6_PN : PN;
+fun mi_N : N;
+fun miami_PN : PN;
+fun miaou_N : N;
+fun miaou_V : V;
+fun miaow_N : N;
+fun miaow_V : V;
+fun miasma_N : N;
+fun mica_N : N;
+fun michael_PN : PN;
+fun michaelmas_N : N;
+fun michaelmas_PN : PN;
+fun michelle_PN : PN;
+fun michigan_PN : PN;
+fun mick_PN : PN;
+fun mickey_N : N;
+fun mickey_PN : PN;
+fun mickle_N : N;
+fun micro_organism_N : N;
+fun microbe_N : N;
+fun microbiology_N : N;
+fun microcosm_N : N;
+fun microdot_N : N;
+fun microelectronics_N : N;
+fun microfiche_N : N;
+fun microfilm_N : N;
+fun microfilm_V2 : V2;
+fun micrometer_N : N;
+fun micron_N : N;
+fun microphone_N : N;
+fun microscope_N : N;
+fun microscopic_A : A;
+fun microscopical_A : A;
+fun microscopically_Adv : Adv;
+fun microscopy_N : N;
+fun microwave_N : N;
+fun mid_A : A;
+fun mid_off_N : N;
+fun mid_on_N : N;
+fun midday_N : N;
+fun midden_N : N;
+fun middle_N : N;
+fun middle_aged_A : A;
+fun middle_class_A : A;
+fun middle_distance_A : A;
+fun middle_of_the_road_A : A;
+fun middleman_N : N;
+fun middlesex_PN : PN;
+fun middleton_PN : PN;
+fun middleweight_A : A;
+fun middleweight_N : N;
+fun middlewich_PN : PN;
+fun middling_A : A;
+fun middling_Adv : Adv;
+fun middling_N : N;
+fun middy_N : N;
+fun midfield_N : N;
+fun midge_N : N;
+fun midget_N : N;
+fun midinette_N : N;
+fun midland_N : N;
+fun midlands_PN : PN;
+fun midmost_A : A;
+fun midmost_Adv : Adv;
+fun midnight_N : N;
+fun midriff_N : N;
+fun midshipman_N : N;
+fun midships_Adv : Adv;
+fun midst_N : N;
+fun midstream_N : N;
+fun midsummer_N : N;
+fun midway_A : A;
+fun midway_Adv : Adv;
+fun midweek_A : A;
+fun midweek_Adv : Adv;
+fun midwest_PN : PN;
+fun midwestern_A : A;
+fun midwife_N : N;
+fun midwifery_N : N;
+fun mien_N : N;
+fun might_N : N;
+fun might_have_been_N : N;
+fun mightily_Adv : Adv;
+fun mighty_A : A;
+fun mighty_Adv : Adv;
+fun mignonette_N : N;
+fun migraine_N : N;
+fun migrant_N : N;
+fun migrate_V : V;
+fun migration_N : N;
+fun migratory_A : A;
+fun mikado_N : N;
+fun mike_N : N;
+fun mike_PN : PN;
+fun milady_N : N;
+fun milage_N : N;
+fun milan_PN : PN;
+fun milano_PN : PN;
+fun milch_A : A;
+fun mild_A : A;
+fun mildenhall_PN : PN;
+fun mildew_N : N;
+fun mildew_V : V;
+fun mildew_V2 : V2;
+fun mildly_Adv : Adv;
+fun mildness_N : N;
+fun mildred_PN : PN;
+fun mile_N : N;
+fun mileage_N : N;
+fun mileometer_N : N;
+fun miler_N : N;
+fun miles_PN : PN;
+fun milestone_N : N;
+fun milford_PN : PN;
+fun milford_haven_PN : PN;
+fun milieu_N : N;
+fun militancy_N : N;
+fun militant_A : A;
+fun militant_N : N;
+fun militarily_Adv : Adv;
+fun militarism_N : N;
+fun militarist_N : N;
+fun militaristic_A : A;
+fun military_A : A;
+fun military_N : N;
+fun militate_V : V;
+fun militia_N : N;
+fun militiaman_N : N;
+fun milk_N : N;
+fun milk_V : V;
+fun milk_V2 : V2;
+fun milk_churn_N : N;
+fun milk_powder_N : N;
+fun milk_shake_N : N;
+fun milk_tooth_N : N;
+fun milk_white_A : A;
+fun milkbar_N : N;
+fun milking_machine_N : N;
+fun milkmaid_N : N;
+fun milkman_N : N;
+fun milkshake_N : N;
+fun milksop_N : N;
+fun milkweed_N : N;
+fun milky_A : A;
+fun mill_N : N;
+fun mill_V : V;
+fun mill_V2 : V2;
+fun mill_dam_N : N;
+fun mill_girl_N : N;
+fun mill_hand_N : N;
+fun millboard_N : N;
+fun millenarian_N : N;
+fun millennial_A : A;
+fun millennium_N : N;
+fun millepede_N : N;
+fun miller_N : N;
+fun millet_N : N;
+fun milliard_N : N;
+fun millibar_N : N;
+fun millicent_PN : PN;
+fun millie_PN : PN;
+fun milligram_N : N;
+fun millimetre_N : N;
+fun milliner_N : N;
+fun millinery_N : N;
+fun millionaire_N : N;
+fun millionairess_N : N;
+fun millionfold_Adv : Adv;
+fun millionth_A : A;
+fun millionth_N : N;
+fun millipede_N : N;
+fun millom_PN : PN;
+fun millpond_N : N;
+fun millrace_N : N;
+fun millstone_N : N;
+fun millwheel_N : N;
+fun millwright_N : N;
+fun milly_PN : PN;
+fun milngavie_PN : PN;
+fun milnrow_PN : PN;
+fun milometer_N : N;
+fun milord_N : N;
+fun milt_N : N;
+fun milton_keynes_PN : PN;
+fun milwaukee_PN : PN;
+fun mime_N : N;
+fun mime_V : V;
+fun mime_V2 : V2;
+fun mimeograph_N : N;
+fun mimeograph_V2 : V2;
+fun mimetic_A : A;
+fun mimic_A : A;
+fun mimic_N : N;
+fun mimic_V2 : V2;
+fun mimicry_N : N;
+fun mimosa_N : N;
+fun min_N : N;
+fun minaret_N : N;
+fun minatory_A : A;
+fun mince_N : N;
+fun mince_V : V;
+fun mince_V2 : V2;
+fun mince_pie_N : N;
+fun mincemeat_N : N;
+fun mincer_N : N;
+fun mincing_A : A;
+fun mincingly_Adv : Adv;
+fun mind_N : N;
+fun mind_V : V;
+fun mind_V2 : V2;
+fun mind_bending_A : A;
+fun mind_blowing_A : A;
+fun mind_boggling_A : A;
+fun mind_reader_N : N;
+fun minded_A : A;
+fun minder_N : N;
+fun mindful_A : A;
+fun mindfully_Adv : Adv;
+fun mindfulness_N : N;
+fun mindless_A : A;
+fun mindlessly_Adv : Adv;
+fun mindlessness_N : N;
+fun mine_A : A;
+fun mine_N : N;
+fun mine_V : V;
+fun mine_V2 : V2;
+fun mine_detector_N : N;
+fun mine_disposal_N : N;
+fun minefield_N : N;
+fun minehead_PN : PN;
+fun minelayer_N : N;
+fun minelaying_N : N;
+fun miner_N : N;
+fun mineral_A : A;
+fun mineral_N : N;
+fun mineralogist_N : N;
+fun mineralogy_N : N;
+fun minestrone_N : N;
+fun minesweeper_N : N;
+fun minesweeping_N : N;
+fun mineworker_N : N;
+fun mingle_V : V;
+fun mingle_V2 : V2;
+fun mingy_A : A;
+fun miniature_N : N;
+fun miniaturist_N : N;
+fun miniaturization_N : N;
+fun miniaturize_V2 : V2;
+fun minim_N : N;
+fun minimal_A : A;
+fun minimally_Adv : Adv;
+fun minimize_V2 : V2;
+fun minimum_A : A;
+fun minimum_N : N;
+fun mining_N : N;
+fun minion_N : N;
+fun minister_N : N;
+fun minister_V : V;
+fun ministerial_A : A;
+fun ministerially_Adv : Adv;
+fun ministrant_A : A;
+fun ministrant_N : N;
+fun ministration_N : N;
+fun ministry_N : N;
+fun miniver_N : N;
+fun mink_N : N;
+fun minneapolis_PN : PN;
+fun minnesota_PN : PN;
+fun minnow_N : N;
+fun minor_A : A;
+fun minor_N : N;
+fun minority_N : N;
+fun minotaur_N : N;
+fun minsk_PN : PN;
+fun minster_N : N;
+fun minster_in_sheppey_PN : PN;
+fun minstrel_N : N;
+fun minstrelsy_N : N;
+fun mint_N : N;
+fun mint_V2 : V2;
+fun minuet_N : N;
+fun minus_A : A;
+fun minus_N : N;
+fun minuscule_A : A;
+fun minute_A : A;
+fun minute_N : N;
+fun minute_V2 : V2;
+fun minute_book_N : N;
+fun minute_gun_N : N;
+fun minute_hand_N : N;
+fun minutely_Adv : Adv;
+fun minuteman_N : N;
+fun minuteness_N : N;
+fun minx_N : N;
+fun miracle_N : N;
+fun miraculous_A : A;
+fun miraculously_Adv : Adv;
+fun mirage_N : N;
+fun miranda_PN : PN;
+fun mire_N : N;
+fun mire_V : V;
+fun mire_V2 : V2;
+fun miriam_PN : PN;
+fun mirror_N : N;
+fun mirror_V2 : V2;
+fun mirth_N : N;
+fun mirthful_A : A;
+fun mirthfully_Adv : Adv;
+fun mirthless_A : A;
+fun miry_A : A;
+fun misadventure_N : N;
+fun misadvise_V2 : V2;
+fun misalliance_N : N;
+fun misanthrope_N : N;
+fun misanthropic_A : A;
+fun misanthropy_N : N;
+fun misapplication_N : N;
+fun misapply_V2 : V2;
+fun misapprehend_V2 : V2;
+fun misapprehension_N : N;
+fun misappropriate_V2 : V2;
+fun misappropriation_N : N;
+fun misbegotten_A : A;
+fun misbehave_V : V;
+fun misbehave_V2 : V2;
+fun misbehaviour_N : N;
+fun misc_PN : PN;
+fun miscalculate_V : V;
+fun miscalculate_V2 : V2;
+fun miscalculation_N : N;
+fun miscall_V2 : V2;
+fun miscarriage_N : N;
+fun miscarry_V2 : V2;
+fun miscast_V2 : V2;
+fun miscegenation_N : N;
+fun miscellaneous_A : A;
+fun miscellany_N : N;
+fun mischance_N : N;
+fun mischief_N : N;
+fun mischief_maker_N : N;
+fun mischief_making_N : N;
+fun mischievous_A : A;
+fun mischievously_Adv : Adv;
+fun mischievousness_N : N;
+fun misconceive_V : V;
+fun misconceive_V2 : V2;
+fun misconception_N : N;
+fun misconduct_N : N;
+fun misconduct_V2 : V2;
+fun misconstruction_N : N;
+fun misconstrue_V2 : V2;
+fun miscount_N : N;
+fun miscount_V : V;
+fun miscount_V2 : V2;
+fun miscreant_N : N;
+fun misdate_V2 : V2;
+fun misdeal_N : N;
+fun misdeal_V : V;
+fun misdeal_V2 : V2;
+fun misdeed_N : N;
+fun misdemeanour_N : N;
+fun misdirect_V2 : V2;
+fun misdirection_N : N;
+fun misdoing_N : N;
+fun mise_en_scene_N : N;
+fun miser_N : N;
+fun miserable_A : A;
+fun miserably_Adv : Adv;
+fun miserliness_N : N;
+fun miserly_A : A;
+fun misery_N : N;
+fun misfire_N : N;
+fun misfire_V : V;
+fun misfit_N : N;
+fun misfortune_N : N;
+fun misgive_V2 : V2;
+fun misgiving_N : N;
+fun misgovern_V2 : V2;
+fun misgovernment_N : N;
+fun misguide_V2 : V2;
+fun misguided_A : A;
+fun mishandle_V2 : V2;
+fun mishap_N : N;
+fun mishmash_N : N;
+fun misinform_V2 : V2;
+fun misinformation_N : N;
+fun misinterpret_V2 : V2;
+fun misinterpretation_N : N;
+fun misjudge_V : V;
+fun misjudge_V2 : V2;
+fun mislay_V2 : V2;
+fun mislead_V2 : V2;
+fun mismanage_V2 : V2;
+fun mismanagement_N : N;
+fun misname_V2 : V2;
+fun misnomer_N : N;
+fun misogynist_N : N;
+fun misplace_V2 : V2;
+fun misprint_N : N;
+fun misprint_V2 : V2;
+fun mispronounce_V2 : V2;
+fun mispronunciation_N : N;
+fun misquotation_N : N;
+fun misquote_V2 : V2;
+fun misread_V2 : V2;
+fun misrepresent_V2 : V2;
+fun misrepresentation_N : N;
+fun misrule_N : N;
+fun miss_N : N;
+fun miss_V : V;
+fun miss_V2 : V2;
+fun missal_N : N;
+fun misshapen_A : A;
+fun missile_N : N;
+fun missing_A : A;
+fun mission_N : N;
+fun missionary_N : N;
+fun missis_N : N;
+fun mississippi_PN : PN;
+fun missive_N : N;
+fun missouri_PN : PN;
+fun misspell_V2 : V2;
+fun misspelling_N : N;
+fun misspend_V2 : V2;
+fun misstate_V2 : V2;
+fun misstatement_N : N;
+fun missus_N : N;
+fun missy_N : N;
+fun mist_N : N;
+fun mist_V : V;
+fun mist_V2 : V2;
+fun mistake_N : N;
+fun mistake_V : V;
+fun mistake_V2 : V2;
+fun mistaken_A : A;
+fun mistakenly_Adv : Adv;
+fun mister_N : N;
+fun mistily_Adv : Adv;
+fun mistime_V2 : V2;
+fun mistiness_N : N;
+fun mistletoe_N : N;
+fun mistral_N : N;
+fun mistranslate_V2 : V2;
+fun mistranslation_N : N;
+fun mistress_N : N;
+fun mistrial_N : N;
+fun mistrust_N : N;
+fun mistrust_V2 : V2;
+fun mistrustful_A : A;
+fun mistrustfully_Adv : Adv;
+fun misty_A : A;
+fun misunderstand_V2 : V2;
+fun misunderstanding_N : N;
+fun misuse_N : N;
+fun misuse_V2 : V2;
+fun mite_N : N;
+fun mitigate_V2 : V2;
+fun mitigation_N : N;
+fun mitre_N : N;
+fun mitre_joint_N : N;
+fun mitt_N : N;
+fun mitten_N : N;
+fun mix_N : N;
+fun mix_V : V;
+fun mix_V2 : V2;
+fun mix_up_N : N;
+fun mixed_A : A;
+fun mixed_up_A : A;
+fun mixer_N : N;
+fun mixture_N : N;
+fun mizen_N : N;
+fun mizzen_N : N;
+fun mizzen_mast_N : N;
+fun mizzle_V : V;
+fun ml_N : N;
+fun mlle_PN : PN;
+fun mm_N : N;
+fun mme_PN : PN;
+fun mnemonic_A : A;
+fun mnemonics_N : N;
+fun mo_N : N;
+fun mo_PN : PN;
+fun moan_N : N;
+fun moan_V : V;
+fun moan_V2 : V2;
+fun moat_N : N;
+fun moated_A : A;
+fun mob_N : N;
+fun mob_V2 : V2;
+fun mobcap_N : N;
+fun mobile_A : A;
+fun mobile_N : N;
+fun mobility_N : N;
+fun mobilization_N : N;
+fun mobilize_V : V;
+fun mobilize_V2 : V2;
+fun mobster_N : N;
+fun moccasin_N : N;
+fun mocha_N : N;
+fun mock_A : A;
+fun mock_N : N;
+fun mock_V : V;
+fun mock_V2 : V2;
+fun mock_up_N : N;
+fun mocker_N : N;
+fun mockery_N : N;
+fun mockingly_Adv : Adv;
+fun mod_A : A;
+fun mod_N : N;
+fun mod_cons_N : N;
+fun modal_A : A;
+fun modality_N : N;
+fun mode_N : N;
+fun model_N : N;
+fun model_V : V;
+fun model_V2 : V2;
+fun modeler_N : N;
+fun modeller_N : N;
+fun modelling_N : N;
+fun modena_PN : PN;
+fun moderate_A : A;
+fun moderate_N : N;
+fun moderate_V : V;
+fun moderate_V2 : V2;
+fun moderately_Adv : Adv;
+fun moderation_N : N;
+fun moderator_N : N;
+fun modern_A : A;
+fun modern_N : N;
+fun modernism_N : N;
+fun modernist_N : N;
+fun modernistic_A : A;
+fun modernity_N : N;
+fun modernization_N : N;
+fun modernize_V2 : V2;
+fun modest_A : A;
+fun modestly_Adv : Adv;
+fun modesty_N : N;
+fun modicum_N : N;
+fun modification_N : N;
+fun modifier_N : N;
+fun modify_V2 : V2;
+fun modish_A : A;
+fun modishly_Adv : Adv;
+fun modiste_N : N;
+fun modular_A : A;
+fun modulate_V : V;
+fun modulate_V2 : V2;
+fun modulation_N : N;
+fun module_N : N;
+fun modus_operandi_N : N;
+fun modus_vivendi_N : N;
+fun mogul_N : N;
+fun mohair_N : N;
+fun mohammedan_N : N;
+fun moiety_N : N;
+fun moil_V : V;
+fun moira_PN : PN;
+fun moist_A : A;
+fun moisten_V : V;
+fun moisten_V2 : V2;
+fun moistly_Adv : Adv;
+fun moisture_N : N;
+fun moke_N : N;
+fun molar_A : A;
+fun molar_N : N;
+fun molasses_N : N;
+fun mold_PN : PN;
+fun moldy_A : A;
+fun mole_N : N;
+fun molecular_A : A;
+fun molecule_N : N;
+fun molehill_N : N;
+fun moleskin_N : N;
+fun molest_V2 : V2;
+fun molestation_N : N;
+fun moll_N : N;
+fun mollification_N : N;
+fun mollify_V2 : V2;
+fun mollusc_N : N;
+fun molly_PN : PN;
+fun mollycoddle_N : N;
+fun mollycoddle_V2 : V2;
+fun moloch_PN : PN;
+fun molto_Adv : Adv;
+fun molybdenum_N : N;
+fun moment_N : N;
+fun momentarily_Adv : Adv;
+fun momentary_A : A;
+fun momentous_A : A;
+fun momentously_Adv : Adv;
+fun momentousness_N : N;
+fun momentum_N : N;
+fun mon_PN : PN;
+fun monaco_PN : PN;
+fun monaghan_PN : PN;
+fun monarch_N : N;
+fun monarchic_A : A;
+fun monarchism_N : N;
+fun monarchist_N : N;
+fun monarchy_N : N;
+fun monastery_N : N;
+fun monastic_A : A;
+fun monasticism_N : N;
+fun monaural_A : A;
+fun monchengladbach_PN : PN;
+fun monday_N : N;
+fun monday_PN : PN;
+fun monegasque_A : A;
+fun monegasque_N : N;
+fun monetary_A : A;
+fun monetize_V2 : V2;
+fun money_N : N;
+fun money_grubber_N : N;
+fun money_order_N : N;
+fun money_spinner_N : N;
+fun moneybox_N : N;
+fun moneychanger_N : N;
+fun moneyed_A : A;
+fun moneylender_N : N;
+fun moneyless_A : A;
+fun monger_N : N;
+fun mongol_A : A;
+fun mongol_N : N;
+fun mongolia_PN : PN;
+fun mongolian_A : A;
+fun mongolian_N : N;
+fun mongolism_N : N;
+fun mongoose_N : N;
+fun mongrel_A : A;
+fun mongrel_N : N;
+fun monica_PN : PN;
+fun monifieth_PN : PN;
+fun monitor_N : N;
+fun monitor_V : V;
+fun monitor_V2 : V2;
+fun monk_N : N;
+fun monkey_N : N;
+fun monkey_V : V;
+fun monkey_jacket_N : N;
+fun monkey_nut_N : N;
+fun monkey_puzzle_N : N;
+fun monkey_wrench_N : N;
+fun monkish_A : A;
+fun monmouth_PN : PN;
+fun mono_A : A;
+fun monochrome_A : A;
+fun monochrome_N : N;
+fun monocle_N : N;
+fun monocled_A : A;
+fun monogamist_N : N;
+fun monogamous_A : A;
+fun monogamy_N : N;
+fun monogram_N : N;
+fun monograph_N : N;
+fun monolith_N : N;
+fun monolithic_A : A;
+fun monologue_N : N;
+fun monomania_N : N;
+fun monomaniac_N : N;
+fun monoplane_N : N;
+fun monopolist_N : N;
+fun monopolistic_A : A;
+fun monopolization_N : N;
+fun monopolize_V2 : V2;
+fun monopoly_N : N;
+fun monorail_N : N;
+fun monosyllabic_A : A;
+fun monosyllable_N : N;
+fun monotheism_N : N;
+fun monotheist_N : N;
+fun monotheistic_A : A;
+fun monotone_N : N;
+fun monotonous_A : A;
+fun monotonously_Adv : Adv;
+fun monotony_N : N;
+fun monotype_N : N;
+fun monoxide_N : N;
+fun monsieur_N : N;
+fun monsignor_N : N;
+fun monsoon_N : N;
+fun monster_N : N;
+fun monstrance_N : N;
+fun monstrosity_N : N;
+fun monstrous_A : A;
+fun monstrously_Adv : Adv;
+fun montage_N : N;
+fun montana_PN : PN;
+fun monterrey_PN : PN;
+fun montevideo_PN : PN;
+fun month_N : N;
+fun monthly_A : A;
+fun monthly_Adv : Adv;
+fun monthly_N : N;
+fun montreal_PN : PN;
+fun montrose_PN : PN;
+fun montserrat_PN : PN;
+fun montserratian_A : A;
+fun montserratian_N : N;
+fun monument_N : N;
+fun monumental_A : A;
+fun monza_PN : PN;
+fun moo_N : N;
+fun moo_V : V;
+fun moo_cow_N : N;
+fun mooch_V : V;
+fun mood_N : N;
+fun moodily_Adv : Adv;
+fun moodiness_N : N;
+fun moody_A : A;
+fun moon_N : N;
+fun moon_V : V;
+fun moon_V2 : V2;
+fun moonbeam_N : N;
+fun moonflower_N : N;
+fun moonless_A : A;
+fun moonlight_N : N;
+fun moonlit_A : A;
+fun moonshine_N : N;
+fun moonstone_N : N;
+fun moonstruck_A : A;
+fun moony_A : A;
+fun moor_N : N;
+fun moor_V2 : V2;
+fun moorcock_N : N;
+fun moorfowl_N : N;
+fun moorgame_N : N;
+fun moorhen_N : N;
+fun mooring_mast_N : N;
+fun moorish_A : A;
+fun moorland_N : N;
+fun moose_N : N;
+fun moot_A : A;
+fun moot_V2 : V2;
+fun mop_N : N;
+fun mop_V : V;
+fun mop_V2 : V2;
+fun mope_N : N;
+fun mope_V : V;
+fun moped_N : N;
+fun moquette_N : N;
+fun moraine_N : N;
+fun moral_A : A;
+fun moral_N : N;
+fun morale_N : N;
+fun moralist_N : N;
+fun moralistic_A : A;
+fun morality_N : N;
+fun moralize_V : V;
+fun moralize_V2 : V2;
+fun morally_Adv : Adv;
+fun morass_N : N;
+fun moratorium_N : N;
+fun morbid_A : A;
+fun morbidity_N : N;
+fun morbidly_Adv : Adv;
+fun morbidness_N : N;
+fun mordant_A : A;
+fun more_Adv : Adv;
+fun more_N : N;
+fun morecambe_PN : PN;
+fun morello_N : N;
+fun moreover_Adv : Adv;
+fun moresque_A : A;
+fun morganatic_A : A;
+fun morgue_N : N;
+fun moribund_A : A;
+fun morley_PN : PN;
+fun mormon_A : A;
+fun mormon_N : N;
+fun mormonism_N : N;
+fun morn_N : N;
+fun morning_N : N;
+fun morning_glory_N : N;
+fun morning_room_N : N;
+fun moroccan_A : A;
+fun moroccan_N : N;
+fun morocco_N : N;
+fun morocco_PN : PN;
+fun moron_N : N;
+fun moronic_A : A;
+fun morose_A : A;
+fun morosely_Adv : Adv;
+fun moroseness_N : N;
+fun morpeth_PN : PN;
+fun morpheme_N : N;
+fun morphemic_A : A;
+fun morpheus_PN : PN;
+fun morphia_N : N;
+fun morphine_N : N;
+fun morphological_A : A;
+fun morphologically_Adv : Adv;
+fun morphology_N : N;
+fun morris_dance_N : N;
+fun morrow_N : N;
+fun morse_N : N;
+fun morsel_N : N;
+fun mortal_A : A;
+fun mortal_N : N;
+fun mortality_N : N;
+fun mortally_Adv : Adv;
+fun mortar_N : N;
+fun mortar_V2 : V2;
+fun mortarboard_N : N;
+fun mortgage_N : N;
+fun mortgage_V2 : V2;
+fun mortgagee_N : N;
+fun mortgagor_N : N;
+fun mortice_N : N;
+fun mortice_V2 : V2;
+fun mortician_N : N;
+fun mortification_N : N;
+fun mortify_V : V;
+fun mortify_V2 : V2;
+fun mortise_N : N;
+fun mortise_V2 : V2;
+fun mortuary_N : N;
+fun mosaic_A : A;
+fun mosaic_N : N;
+fun moscow_PN : PN;
+fun moselle_N : N;
+fun mosey_V : V;
+fun moslem_A : A;
+fun moslem_N : N;
+fun mosque_N : N;
+fun mosquito_N : N;
+fun mosquito_craft_N : N;
+fun mosquito_net_N : N;
+fun moss_N : N;
+fun moss_grown_A : A;
+fun mossley_PN : PN;
+fun mossy_A : A;
+fun mostly_Adv : Adv;
+fun mote_N : N;
+fun motel_N : N;
+fun moth_N : N;
+fun moth_eaten_A : A;
+fun mothball_N : N;
+fun mother_N : N;
+fun mother_V2 : V2;
+fun mother_in_law_N : N;
+fun mother_of_pearl_N : N;
+fun motherhood_N : N;
+fun motherland_N : N;
+fun motherless_A : A;
+fun motherlike_A : A;
+fun motherliness_N : N;
+fun motherly_A : A;
+fun motherwell_PN : PN;
+fun mothproof_A : A;
+fun mothproof_V2 : V2;
+fun motif_N : N;
+fun motion_N : N;
+fun motion_V : V;
+fun motion_V2 : V2;
+fun motionless_A : A;
+fun motionlessly_Adv : Adv;
+fun motivate_V2 : V2;
+fun motivation_N : N;
+fun motive_A : A;
+fun motive_N : N;
+fun motiveless_A : A;
+fun motley_A : A;
+fun motley_N : N;
+fun motor_N : N;
+fun motor_V : V;
+fun motor_assisted_A : A;
+fun motorbike_N : N;
+fun motorboat_N : N;
+fun motorcade_N : N;
+fun motorcar_N : N;
+fun motorcoach_N : N;
+fun motorcycle_N : N;
+fun motorist_N : N;
+fun motorize_V2 : V2;
+fun motorman_N : N;
+fun motorway_N : N;
+fun mottle_V2 : V2;
+fun motto_N : N;
+fun moujik_N : N;
+fun mould_N : N;
+fun mould_V : V;
+fun mould_V2 : V2;
+fun moulder_V : V;
+fun moulding_N : N;
+fun mouldy_A : A;
+fun moult_N : N;
+fun moult_V : V;
+fun moult_V2 : V2;
+fun mound_N : N;
+fun mount_N : N;
+fun mount_V : V;
+fun mount_V2 : V2;
+fun mountain_N : N;
+fun mountain_ash_PN : PN;
+fun mountaineer_N : N;
+fun mountaineering_N : N;
+fun mountainous_A : A;
+fun mountebank_N : N;
+fun mountie_N : N;
+fun mourn_V : V;
+fun mourn_V2 : V2;
+fun mourner_N : N;
+fun mournful_A : A;
+fun mournfully_Adv : Adv;
+fun mourning_N : N;
+fun mourning_band_N : N;
+fun mourning_ring_N : N;
+fun mouse_N : N;
+fun mouse_V : V;
+fun mouser_N : N;
+fun mousetrap_N : N;
+fun mousse_N : N;
+fun moustache_N : N;
+fun mousy_A : A;
+fun mouth_N : N;
+fun mouth_V : V;
+fun mouth_V2 : V2;
+fun mouth_organ_N : N;
+fun mouth_watering_A : A;
+fun mouthful_N : N;
+fun mouthpiece_N : N;
+fun movable_A : A;
+fun move_N : N;
+fun move_V : V;
+fun move_V2 : V2;
+fun movement_N : N;
+fun mover_N : N;
+fun movie_N : N;
+fun mow_N : N;
+fun mow_V : V;
+fun mow_V2 : V2;
+fun mower_N : N;
+fun mozambican_A : A;
+fun mozambican_N : N;
+fun mozambique_PN : PN;
+fun mp's_N : N;
+fun mp_N : N;
+fun mpg_N : N;
+fun mph_N : N;
+fun mr_PN : PN;
+fun mrs_PN : PN;
+fun ms_N : N;
+fun ms_PN : PN;
+fun msc_N : N;
+fun mt_PN : PN;
+fun much_A : A;
+fun much_Adv : Adv;
+fun much_N : N;
+fun muchness_N : N;
+fun mucilage_N : N;
+fun muck_N : N;
+fun muck_V : V;
+fun muck_V2 : V2;
+fun muck_heap_N : N;
+fun muckle_N : N;
+fun muckraker_N : N;
+fun muckraking_N : N;
+fun mucky_A : A;
+fun mucous_A : A;
+fun mucus_N : N;
+fun mud_N : N;
+fun mud_V2 : V2;
+fun mud_bath_N : N;
+fun muddle_N : N;
+fun muddle_V : V;
+fun muddle_V2 : V2;
+fun muddle_headed_A : A;
+fun muddy_A : A;
+fun muddy_V2 : V2;
+fun mudguard_N : N;
+fun mudslinger_N : N;
+fun muesli_N : N;
+fun muezzin_N : N;
+fun muff_N : N;
+fun muff_V2 : V2;
+fun muffin_N : N;
+fun muffin_man_N : N;
+fun muffle_V2 : V2;
+fun muffler_N : N;
+fun mufti_N : N;
+fun mug_N : N;
+fun mug_V2 : V2;
+fun mugger_N : N;
+fun mugginess_N : N;
+fun mugging_N : N;
+fun muggins_N : N;
+fun muggy_A : A;
+fun mugwump_N : N;
+fun muhammad_PN : PN;
+fun muhammadan_A : A;
+fun muhammadan_N : N;
+fun muhammadanism_N : N;
+fun mukden_PN : PN;
+fun mulatto_N : N;
+fun mulberry_N : N;
+fun mulch_N : N;
+fun mulch_V2 : V2;
+fun mulct_V2 : V2;
+fun mule_N : N;
+fun muleteer_N : N;
+fun mulheim_PN : PN;
+fun mulhouse_PN : PN;
+fun mulish_A : A;
+fun mulishly_Adv : Adv;
+fun mulishness_N : N;
+fun mull_N : N;
+fun mull_V2 : V2;
+fun mullah_N : N;
+fun mullein_N : N;
+fun mullet_N : N;
+fun mulligatawny_N : N;
+fun mullion_N : N;
+fun mullioned_A : A;
+fun multan_PN : PN;
+fun multi_lingual_A : A;
+fun multifarious_A : A;
+fun multifariously_Adv : Adv;
+fun multiform_A : A;
+fun multilateral_A : A;
+fun multiple_A : A;
+fun multiple_N : N;
+fun multiplex_A : A;
+fun multiplication_N : N;
+fun multiplicity_N : N;
+fun multiply_V : V;
+fun multiply_V2 : V2;
+fun multitude_N : N;
+fun multitudinous_A : A;
+fun multum_in_parvo_N : N;
+fun mum_A : A;
+fun mum_N : N;
+fun mumble_V : V;
+fun mumble_V2 : V2;
+fun mumbo_jumbo_N : N;
+fun mummer_N : N;
+fun mummery_N : N;
+fun mummification_N : N;
+fun mummify_V2 : V2;
+fun mummy_N : N;
+fun mumps_N : N;
+fun munch_V : V;
+fun munch_V2 : V2;
+fun mundane_A : A;
+fun mundanely_Adv : Adv;
+fun munich_PN : PN;
+fun municipal_A : A;
+fun municipality_N : N;
+fun municipally_Adv : Adv;
+fun munificence_N : N;
+fun munificent_A : A;
+fun munificently_Adv : Adv;
+fun munition_N : N;
+fun munition_V2 : V2;
+fun munster_PN : PN;
+fun mural_A : A;
+fun mural_N : N;
+fun murder_N : N;
+fun murder_V2 : V2;
+fun murderer_N : N;
+fun murderess_N : N;
+fun murderous_A : A;
+fun murderously_Adv : Adv;
+fun muriel_PN : PN;
+fun murk_N : N;
+fun murkily_Adv : Adv;
+fun murky_A : A;
+fun murmur_N : N;
+fun murmur_V : V;
+fun murmur_V2 : V2;
+fun murphy_N : N;
+fun murrain_N : N;
+fun murton_PN : PN;
+fun muscatel_N : N;
+fun muscle_N : N;
+fun muscle_V : V;
+fun muscle_bound_A : A;
+fun muscleman_N : N;
+fun muscovite_A : A;
+fun muscovite_N : N;
+fun muscovy_N : N;
+fun muscular_A : A;
+fun muse_N : N;
+fun muse_V : V;
+fun museum_N : N;
+fun mush_N : N;
+fun mushroom_N : N;
+fun mushroom_V : V;
+fun mushy_A : A;
+fun music_N : N;
+fun music_box_N : N;
+fun music_hall_N : N;
+fun music_stand_N : N;
+fun music_stool_N : N;
+fun musical_A : A;
+fun musical_N : N;
+fun musical_box_N : N;
+fun musically_Adv : Adv;
+fun musician_N : N;
+fun musicianship_N : N;
+fun musingly_Adv : Adv;
+fun musk_N : N;
+fun musk_deer_N : N;
+fun musk_rose_N : N;
+fun musket_N : N;
+fun musketeer_N : N;
+fun musketry_N : N;
+fun muskrat_N : N;
+fun musky_A : A;
+fun muslim_N : N;
+fun muslin_N : N;
+fun musquash_N : N;
+fun muss_N : N;
+fun muss_V2 : V2;
+fun mussel_N : N;
+fun musselburgh_PN : PN;
+fun must_N : N;
+fun mustachio_N : N;
+fun mustang_N : N;
+fun mustard_N : N;
+fun muster_N : N;
+fun muster_V : V;
+fun muster_V2 : V2;
+fun mustiness_N : N;
+fun musty_A : A;
+fun mutability_N : N;
+fun mutable_A : A;
+fun mutation_N : N;
+fun mutatis_mutandis_Adv : Adv;
+fun mute_A : A;
+fun mute_N : N;
+fun mute_V2 : V2;
+fun mutely_Adv : Adv;
+fun mutilate_V2 : V2;
+fun mutilation_N : N;
+fun mutineer_N : N;
+fun mutinous_A : A;
+fun mutiny_N : N;
+fun mutiny_V : V;
+fun mutt_N : N;
+fun mutter_N : N;
+fun mutter_V : V;
+fun mutter_V2 : V2;
+fun mutterer_N : N;
+fun mutton_N : N;
+fun mutton_head_N : N;
+fun mutual_A : A;
+fun mutually_Adv : Adv;
+fun muzzle_N : N;
+fun muzzle_V2 : V2;
+fun muzzle_velocity_N : N;
+fun muzzy_A : A;
+fun mycology_N : N;
+fun myelitis_N : N;
+fun myna_N : N;
+fun mynah_N : N;
+fun myopia_N : N;
+fun myopic_A : A;
+fun myra_PN : PN;
+fun myriad_A : A;
+fun myriad_N : N;
+fun myrmidon_N : N;
+fun myrrh_N : N;
+fun myrtle_N : N;
+fun mysterious_A : A;
+fun mysteriously_Adv : Adv;
+fun mystery_N : N;
+fun mystic_A : A;
+fun mystic_N : N;
+fun mystical_A : A;
+fun mysticism_N : N;
+fun mystification_N : N;
+fun mystify_V2 : V2;
+fun mystique_N : N;
+fun myth_N : N;
+fun mythical_A : A;
+fun mythological_A : A;
+fun mythologist_N : N;
+fun mythology_N : N;
+fun myxomatosis_N : N;
+fun melange_N : N;
+fun menage_N : N;
+fun mesalliance_N : N;
+fun metier_N : N;
+fun melee_N : N;
+fun naafi_N : N;
+fun nab_V2 : V2;
+fun nabob_N : N;
+fun nacelle_N : N;
+fun nacre_N : N;
+fun nadir_N : N;
+fun nag_N : N;
+fun nag_V : V;
+fun nag_V2 : V2;
+fun nagger_N : N;
+fun nagoya_PN : PN;
+fun nagpur_PN : PN;
+fun naiad_N : N;
+fun nail_N : N;
+fun nail_V2 : V2;
+fun nail_polish_N : N;
+fun nail_varnish_N : N;
+fun nailbrush_N : N;
+fun nailfile_N : N;
+fun nailsea_PN : PN;
+fun nainsook_N : N;
+fun naira_N : N;
+fun nairn_PN : PN;
+fun nairobi_PN : PN;
+fun naive_1_A : A;
+fun naively_Adv : Adv;
+fun naivety_N : N;
+fun naivete_N : N;
+fun naked_A : A;
+fun nakedly_Adv : Adv;
+fun nakedness_N : N;
+fun namby_pamby_A : A;
+fun namby_pamby_N : N;
+fun name_N : N;
+fun name_V2 : V2;
+fun name_day_N : N;
+fun name_drop_V : V;
+fun name_dropping_N : N;
+fun name_part_N : N;
+fun nameless_A : A;
+fun namely_Adv : Adv;
+fun nameplate_N : N;
+fun namesake_N : N;
+fun namibia_PN : PN;
+fun namibian_A : A;
+fun namibian_N : N;
+fun nanchang_PN : PN;
+fun nancy_PN : PN;
+fun nankeen_N : N;
+fun nanking_PN : PN;
+fun nanning_PN : PN;
+fun nanny_N : N;
+fun nanny_goat_N : N;
+fun nantwich_PN : PN;
+fun naomi_PN : PN;
+fun nap_N : N;
+fun nap_V : V;
+fun napalm_N : N;
+fun nape_N : N;
+fun napery_N : N;
+fun naphtha_N : N;
+fun naphthalene_N : N;
+fun napkin_N : N;
+fun napkin_ring_N : N;
+fun naples_PN : PN;
+fun napoleonic_A : A;
+fun napoli_PN : PN;
+fun nappy_N : N;
+fun narborough_PN : PN;
+fun narcissism_N : N;
+fun narcissus_N : N;
+fun narcotic_A : A;
+fun narcotic_N : N;
+fun nark_N : N;
+fun nark_V2 : V2;
+fun narrate_V2 : V2;
+fun narration_N : N;
+fun narrative_N : N;
+fun narrator_N : N;
+fun narrow_A : A;
+fun narrow_N : N;
+fun narrow_V : V;
+fun narrow_V2 : V2;
+fun narrow_minded_A : A;
+fun narrow_mindedly_Adv : Adv;
+fun narrow_mindedness_N : N;
+fun narrowly_Adv : Adv;
+fun narrowness_N : N;
+fun narwhal_N : N;
+fun nasa_PN : PN;
+fun nasal_A : A;
+fun nasal_N : N;
+fun nasalize_V2 : V2;
+fun nascent_A : A;
+fun nastily_Adv : Adv;
+fun nastiness_N : N;
+fun nasturtium_N : N;
+fun nasty_A : A;
+fun nat_PN : PN;
+fun natal_A : A;
+fun natalie_PN : PN;
+fun nathaniel_PN : PN;
+fun nation_N : N;
+fun national_A : A;
+fun national_N : N;
+fun nationalism_N : N;
+fun nationalist_A : A;
+fun nationalist_N : N;
+fun nationalistic_A : A;
+fun nationality_N : N;
+fun nationalization_N : N;
+fun nationalize_V2 : V2;
+fun nationally_Adv : Adv;
+fun nationwide_A : A;
+fun nationwide_Adv : Adv;
+fun native_A : A;
+fun native_N : N;
+fun nativity_N : N;
+fun nato_PN : PN;
+fun natter_V : V;
+fun nattily_Adv : Adv;
+fun natty_A : A;
+fun natural_A : A;
+fun natural_N : N;
+fun naturalism_N : N;
+fun naturalist_N : N;
+fun naturalistic_A : A;
+fun naturalization_N : N;
+fun naturalize_V : V;
+fun naturalize_V2 : V2;
+fun naturally_Adv : Adv;
+fun naturalness_N : N;
+fun nature_N : N;
+fun naturism_N : N;
+fun naturist_N : N;
+fun naught_N : N;
+fun naughtily_Adv : Adv;
+fun naughtiness_N : N;
+fun naughty_A : A;
+fun nauru_PN : PN;
+fun nauruan_A : A;
+fun nauruan_N : N;
+fun nausea_N : N;
+fun nauseate_V2 : V2;
+fun nauseous_A : A;
+fun nautch_N : N;
+fun nautch_girl_N : N;
+fun nautical_A : A;
+fun nautilus_N : N;
+fun naval_A : A;
+fun nave_N : N;
+fun navel_N : N;
+fun navigability_N : N;
+fun navigable_A : A;
+fun navigate_V : V;
+fun navigate_V2 : V2;
+fun navigation_N : N;
+fun navigator_N : N;
+fun navvy_N : N;
+fun navy_N : N;
+fun nay_Adv : Adv;
+fun nazi_A : A;
+fun nazi_N : N;
+fun nazism_N : N;
+fun naive_2_A : A;
+fun nb_PN : PN;
+fun nco_N : N;
+fun ne'er_Adv : Adv;
+fun ne'er_do_well_N : N;
+fun ne_plus_ultra_N : N;
+fun neanderthal_A : A;
+fun neap_N : N;
+fun neap_tide_N : N;
+fun neapolitan_A : A;
+fun neapolitan_N : N;
+fun near_A : A;
+fun near_Adv : Adv;
+fun near_V : V;
+fun near_V2 : V2;
+fun near_sighted_A : A;
+fun nearby_A : A;
+fun nearer_Adv : Adv;
+fun nearest_Adv : Adv;
+fun nearly_Adv : Adv;
+fun nearness_N : N;
+fun nearside_N : N;
+fun neat_A : A;
+fun neath_PN : PN;
+fun neatly_Adv : Adv;
+fun neatness_N : N;
+fun nebraska_PN : PN;
+fun nebula_N : N;
+fun nebular_A : A;
+fun nebulous_A : A;
+fun necessarily_Adv : Adv;
+fun necessary_A : A;
+fun necessary_N : N;
+fun necessitate_V2 : V2;
+fun necessitous_A : A;
+fun necessity_N : N;
+fun neck_N : N;
+fun neck_V : V;
+fun neckband_N : N;
+fun neckcloth_N : N;
+fun neckerchief_N : N;
+fun necklace_N : N;
+fun necklet_N : N;
+fun neckline_N : N;
+fun necktie_N : N;
+fun neckwear_N : N;
+fun necromancer_N : N;
+fun necromancy_N : N;
+fun necropolis_N : N;
+fun nectar_N : N;
+fun nectarine_N : N;
+fun ned_PN : PN;
+fun neddy_PN : PN;
+fun need_N : N;
+fun need_V2 : V2;
+fun needful_A : A;
+fun needfully_Adv : Adv;
+fun needle_N : N;
+fun needle_V2 : V2;
+fun needlecraft_N : N;
+fun needless_A : A;
+fun needlessly_Adv : Adv;
+fun needlewoman_N : N;
+fun needlework_N : N;
+fun needs_Adv : Adv;
+fun needy_A : A;
+fun nefarious_A : A;
+fun nefariously_Adv : Adv;
+fun nefariousness_N : N;
+fun negate_V2 : V2;
+fun negation_N : N;
+fun negative_A : A;
+fun negative_N : N;
+fun negative_V2 : V2;
+fun negatively_Adv : Adv;
+fun neglect_N : N;
+fun neglect_V2 : V2;
+fun neglectful_A : A;
+fun neglectfully_Adv : Adv;
+fun neglectfulness_N : N;
+fun negligee_N : N;
+fun negligence_N : N;
+fun negligent_A : A;
+fun negligently_Adv : Adv;
+fun negligible_A : A;
+fun negotiable_A : A;
+fun negotiate_V : V;
+fun negotiate_V2 : V2;
+fun negotiation_N : N;
+fun negotiator_N : N;
+fun negress_N : N;
+fun negro_N : N;
+fun negroid_A : A;
+fun negroid_N : N;
+fun negus_N : N;
+fun neigh_N : N;
+fun neigh_V : V;
+fun neighbour_N : N;
+fun neighbour_V : V;
+fun neighbour_V2 : V2;
+fun neighbourhood_N : N;
+fun neighbourliness_N : N;
+fun neighbourly_A : A;
+fun neil_PN : PN;
+fun neither_A : A;
+fun neither_Adv : Adv;
+fun nell_PN : PN;
+fun nelly_N : N;
+fun nelly_PN : PN;
+fun nelson_PN : PN;
+fun nem_con_Adv : Adv;
+fun nemesis_N : N;
+fun neocolonialism_N : N;
+fun neolithic_A : A;
+fun neologism_N : N;
+fun neon_N : N;
+fun neophyte_N : N;
+fun neoplasm_N : N;
+fun nepal_PN : PN;
+fun nepalese_A : A;
+fun nepalese_N : N;
+fun nepali_A : A;
+fun nepali_N : N;
+fun nephew_N : N;
+fun nephritis_N : N;
+fun nepotism_N : N;
+fun neptune_PN : PN;
+fun nereid_N : N;
+fun nerve_N : N;
+fun nerve_V2 : V2;
+fun nerve_cell_N : N;
+fun nerve_centre_N : N;
+fun nerve_racking_A : A;
+fun nerveless_A : A;
+fun nervelessly_Adv : Adv;
+fun nervous_A : A;
+fun nervously_Adv : Adv;
+fun nervousness_N : N;
+fun nervy_A : A;
+fun nescience_N : N;
+fun nescient_A : A;
+fun ness_N : N;
+fun nest_N : N;
+fun nest_V : V;
+fun nest_egg_N : N;
+fun nestle_V : V;
+fun nestle_V2 : V2;
+fun nestling_N : N;
+fun neston_PN : PN;
+fun nestor_PN : PN;
+fun net_A : A;
+fun net_N : N;
+fun net_V2 : V2;
+fun netball_N : N;
+fun nether_A : A;
+fun netherlander_N : N;
+fun netherlands_PN : PN;
+fun nethermost_A : A;
+fun netley_PN : PN;
+fun nett_A : A;
+fun nett_V2 : V2;
+fun netting_N : N;
+fun nettle_N : N;
+fun nettle_V2 : V2;
+fun nettlerash_N : N;
+fun network_N : N;
+fun neural_A : A;
+fun neuralgia_N : N;
+fun neuralgic_A : A;
+fun neurasthenia_N : N;
+fun neurasthenic_A : A;
+fun neurasthenic_N : N;
+fun neuritis_N : N;
+fun neurologist_N : N;
+fun neurology_N : N;
+fun neurosis_N : N;
+fun neurotic_A : A;
+fun neurotic_N : N;
+fun neurotically_Adv : Adv;
+fun neuss_PN : PN;
+fun neuter_A : A;
+fun neuter_N : N;
+fun neuter_V2 : V2;
+fun neutral_A : A;
+fun neutral_N : N;
+fun neutrality_N : N;
+fun neutralization_N : N;
+fun neutralize_V2 : V2;
+fun neutron_N : N;
+fun nevada_PN : PN;
+fun never_Adv : Adv;
+fun nevermore_Adv : Adv;
+fun nevertheless_Adv : Adv;
+fun neville_PN : PN;
+fun new_A : A;
+fun new_Adv : Adv;
+fun new_cumnock_PN : PN;
+fun new_mills_PN : PN;
+fun new_orleans_PN : PN;
+fun new_tredegar_PN : PN;
+fun new_windsor_PN : PN;
+fun new_york_PN : PN;
+fun newark_PN : PN;
+fun newarthill_PN : PN;
+fun newbiggin_PN : PN;
+fun newbury_PN : PN;
+fun newcastle_PN : PN;
+fun newcastle_under_lyme_PN : PN;
+fun newcastle_upon_tyne_PN : PN;
+fun newcomer_N : N;
+fun newel_N : N;
+fun newfangled_A : A;
+fun newfoundland_PN : PN;
+fun newham_PN : PN;
+fun newhaven_PN : PN;
+fun newly_Adv : Adv;
+fun newlywed_N : N;
+fun newmains_PN : PN;
+fun newmarket_N : N;
+fun newmarket_PN : PN;
+fun newness_N : N;
+fun newport_PN : PN;
+fun newport_pagnell_PN : PN;
+fun newquay_PN : PN;
+fun newry_PN : PN;
+fun news_N : N;
+fun newsagent_N : N;
+fun newsboy_N : N;
+fun newscast_N : N;
+fun newscaster_N : N;
+fun newsdealer_N : N;
+fun newsflash_N : N;
+fun newsless_A : A;
+fun newsletter_N : N;
+fun newsmonger_N : N;
+fun newspaper_N : N;
+fun newspaperman_N : N;
+fun newsprint_N : N;
+fun newsreel_N : N;
+fun newsroom_N : N;
+fun newssheet_N : N;
+fun newsstand_N : N;
+fun newsvendor_N : N;
+fun newsworthy_A : A;
+fun newsy_A : A;
+fun newt_N : N;
+fun newton_abbot_PN : PN;
+fun newton_aycliffe_PN : PN;
+fun newton_le_willows_PN : PN;
+fun newton_mearns_PN : PN;
+fun newtonian_A : A;
+fun newtonian_N : N;
+fun newtown_PN : PN;
+fun next_A : A;
+fun next_Adv : Adv;
+fun next_N : N;
+fun nexus_N : N;
+fun nhs_N : N;
+fun nib_N : N;
+fun nibble_N : N;
+fun nibble_V : V;
+fun nibble_V2 : V2;
+fun nicaragua_PN : PN;
+fun nicaraguan_A : A;
+fun nicaraguan_N : N;
+fun nice_A : A;
+fun nice_PN : PN;
+fun nicely_Adv : Adv;
+fun niceness_N : N;
+fun nicety_N : N;
+fun niche_N : N;
+fun nicholas_PN : PN;
+fun nick_N : N;
+fun nick_PN : PN;
+fun nick_V2 : V2;
+fun nickel_N : N;
+fun nickel_V2 : V2;
+fun nicknack_N : N;
+fun nickname_N : N;
+fun nickname_V2 : V2;
+fun nicola_PN : PN;
+fun nicole_PN : PN;
+fun nicotine_N : N;
+fun niece_N : N;
+fun niff_N : N;
+fun niffy_A : A;
+fun nifty_A : A;
+fun nigel_PN : PN;
+fun niger_PN : PN;
+fun nigeria_PN : PN;
+fun nigerian_A : A;
+fun nigerian_N : N;
+fun nigerien_A : A;
+fun nigerien_N : N;
+fun niggard_N : N;
+fun niggardliness_N : N;
+fun niggardly_A : A;
+fun nigger_N : N;
+fun niggle_V : V;
+fun niggling_A : A;
+fun nigh_Adv : Adv;
+fun nigher_Adv : Adv;
+fun nighest_Adv : Adv;
+fun night_N : N;
+fun night_bell_N : N;
+fun night_bird_N : N;
+fun night_light_N : N;
+fun night_line_N : N;
+fun night_porter_N : N;
+fun night_soil_N : N;
+fun night_stop_N : N;
+fun night_time_N : N;
+fun night_watch_N : N;
+fun night_watchman_N : N;
+fun nightcap_N : N;
+fun nightclub_N : N;
+fun nightdress_N : N;
+fun nightfall_N : N;
+fun nightgown_N : N;
+fun nightie_N : N;
+fun nightingale_N : N;
+fun nightjar_N : N;
+fun nightlong_A : A;
+fun nightly_A : A;
+fun nightly_Adv : Adv;
+fun nightmare_N : N;
+fun nightmarish_A : A;
+fun nightshade_N : N;
+fun nightshirt_N : N;
+fun nightwork_N : N;
+fun nihilism_N : N;
+fun nihilist_N : N;
+fun nihilistic_A : A;
+fun nijmegen_PN : PN;
+fun nil_N : N;
+fun nilotic_A : A;
+fun nimble_A : A;
+fun nimbleness_N : N;
+fun nimbly_Adv : Adv;
+fun nimbus_N : N;
+fun niminy_piminy_A : A;
+fun nimrod_PN : PN;
+fun nincompoop_N : N;
+fun ninefold_A : A;
+fun ninefold_Adv : Adv;
+fun ninepence_N : N;
+fun ninepenny_A : A;
+fun ninepins_N : N;
+fun ninny_N : N;
+fun ninth_A : A;
+fun ninth_N : N;
+fun niobe_PN : PN;
+fun nip_N : N;
+fun nip_V : V;
+fun nip_V2 : V2;
+fun nipper_N : N;
+fun nipping_A : A;
+fun nipple_N : N;
+fun nipponese_A : A;
+fun nippy_A : A;
+fun nirvana_N : N;
+fun nisi_A : A;
+fun nissen_PN : PN;
+fun nit_N : N;
+fun nitrate_N : N;
+fun nitre_N : N;
+fun nitric_A : A;
+fun nitrochalk_N : N;
+fun nitrogen_N : N;
+fun nitroglycerin_N : N;
+fun nitroglycerine_N : N;
+fun nitrous_A : A;
+fun nitty_gritty_N : N;
+fun nitwit_N : N;
+fun nitwitted_A : A;
+fun nix_N : N;
+fun no_ball_N : N;
+fun no_go_A : A;
+fun no_man's_land_N : N;
+fun noah_PN : PN;
+fun nob_N : N;
+fun nobble_V2 : V2;
+fun nobel_PN : PN;
+fun nobility_N : N;
+fun noble_A : A;
+fun noble_N : N;
+fun noble_mindedness_N : N;
+fun nobleman_N : N;
+fun noblesse_N : N;
+fun noblesse_oblige_N : N;
+fun nobly_Adv : Adv;
+fun noctambulist_N : N;
+fun nocturnal_A : A;
+fun nocturne_N : N;
+fun nod_N : N;
+fun nod_V : V;
+fun nod_V2 : V2;
+fun noddle_N : N;
+fun node_N : N;
+fun nodular_A : A;
+fun nodulated_A : A;
+fun nodule_N : N;
+fun noel_N : N;
+fun noel_PN : PN;
+fun noggin_N : N;
+fun nohow_Adv : Adv;
+fun noise_N : N;
+fun noise_V2 : V2;
+fun noiseless_A : A;
+fun noiselessly_Adv : Adv;
+fun noiselessness_N : N;
+fun noisily_Adv : Adv;
+fun noisiness_N : N;
+fun noisome_A : A;
+fun noisy_A : A;
+fun nom_de_plume_N : N;
+fun nomad_N : N;
+fun nomadic_A : A;
+fun nomenclature_N : N;
+fun nominal_A : A;
+fun nominally_Adv : Adv;
+fun nominate_V2 : V2;
+fun nomination_N : N;
+fun nominative_A : A;
+fun nominative_N : N;
+fun nominee_N : N;
+fun non_compliance_N : N;
+fun non_compos_mentis_A : A;
+fun non_contentious_A : A;
+fun non_interference_N : N;
+fun non_sequitur_N : N;
+fun non_skid_A : A;
+fun non_u_A : A;
+fun nonage_N : N;
+fun nonagenarian_A : A;
+fun nonagenarian_N : N;
+fun nonaggression_N : N;
+fun nonalignment_N : N;
+fun nonce_N : N;
+fun nonce_word_N : N;
+fun nonchalance_N : N;
+fun nonchalant_A : A;
+fun nonchalantly_Adv : Adv;
+fun noncombatant_N : N;
+fun noncommissioned_A : A;
+fun noncommittal_A : A;
+fun nonconductor_N : N;
+fun nonconformist_N : N;
+fun nonconformity_N : N;
+fun nondescript_A : A;
+fun nondescript_N : N;
+fun none_Adv : Adv;
+fun nonentity_N : N;
+fun nonesuch_N : N;
+fun nonevent_N : N;
+fun nonfiction_N : N;
+fun nonflammable_A : A;
+fun nonintervention_N : N;
+fun nonmoral_A : A;
+fun nonobservance_N : N;
+fun nonpareil_A : A;
+fun nonpareil_N : N;
+fun nonpayment_N : N;
+fun nonplus_V2 : V2;
+fun nonresident_A : A;
+fun nonsense_N : N;
+fun nonsensical_A : A;
+fun nonsmoker_N : N;
+fun nonstarter_N : N;
+fun nonstick_A : A;
+fun nonstop_A : A;
+fun nonstop_Adv : Adv;
+fun nonsuch_N : N;
+fun nonunion_A : A;
+fun nonviolence_N : N;
+fun noodle_N : N;
+fun nook_N : N;
+fun noon_N : N;
+fun noonday_A : A;
+fun noontide_N : N;
+fun noose_N : N;
+fun noose_V2 : V2;
+fun nor'_east_Adv : Adv;
+fun nor'_east_N : N;
+fun nor'_nor'_east_Adv : Adv;
+fun nor'_nor'_east_N : N;
+fun nor'_nor'_west_Adv : Adv;
+fun nor'_nor'_west_N : N;
+fun nor'_west_Adv : Adv;
+fun nor'_west_N : N;
+fun nora_PN : PN;
+fun nordic_A : A;
+fun nordic_N : N;
+fun norfolk_PN : PN;
+fun norm_N : N;
+fun normal_A : A;
+fun normal_N : N;
+fun normalcy_N : N;
+fun normality_N : N;
+fun normalization_N : N;
+fun normalize_V2 : V2;
+fun normally_Adv : Adv;
+fun norman_A : A;
+fun norman_N : N;
+fun norman_PN : PN;
+fun normanton_PN : PN;
+fun normantown_PN : PN;
+fun normative_A : A;
+fun norse_A : A;
+fun norse_N : N;
+fun north_Adv : Adv;
+fun north_N : N;
+fun north_northeast_Adv : Adv;
+fun north_northeast_N : N;
+fun north_northwest_Adv : Adv;
+fun north_northwest_N : N;
+fun north_walsham_PN : PN;
+fun northallerton_PN : PN;
+fun northam_PN : PN;
+fun northampton_PN : PN;
+fun northamptonshire_PN : PN;
+fun northeast_Adv : Adv;
+fun northeast_N : N;
+fun northeaster_N : N;
+fun northeasterly_A : A;
+fun northeastern_A : A;
+fun northerly_A : A;
+fun northerly_Adv : Adv;
+fun northern_A : A;
+fun northerner_N : N;
+fun northernmost_A : A;
+fun northman_N : N;
+fun northumberland_PN : PN;
+fun northwards_Adv : Adv;
+fun northwest_Adv : Adv;
+fun northwest_N : N;
+fun northwester_N : N;
+fun northwesterly_A : A;
+fun northwestern_A : A;
+fun northwich_PN : PN;
+fun norton_PN : PN;
+fun norway_PN : PN;
+fun norwegian_A : A;
+fun norwegian_N : N;
+fun norwich_PN : PN;
+fun nos_N : N;
+fun nose_N : N;
+fun nose_V : V;
+fun nose_V2 : V2;
+fun nose_flute_N : N;
+fun nose_wheel_N : N;
+fun nosebag_N : N;
+fun nosebleed_N : N;
+fun nosecone_N : N;
+fun nosed_A : A;
+fun nosedive_N : N;
+fun nosedive_V : V;
+fun nosegay_N : N;
+fun nosering_N : N;
+fun nosey_A : A;
+fun nosh_N : N;
+fun nosh_V : V;
+fun nosh_up_N : N;
+fun nostalgia_N : N;
+fun nostalgic_A : A;
+fun nostalgically_Adv : Adv;
+fun nostril_N : N;
+fun nostrum_N : N;
+fun nosy_A : A;
+fun not_Adv : Adv;
+fun notability_N : N;
+fun notable_A : A;
+fun notable_N : N;
+fun notably_Adv : Adv;
+fun notary_N : N;
+fun notation_N : N;
+fun notch_N : N;
+fun notch_V2 : V2;
+fun note_N : N;
+fun note_V2 : V2;
+fun notebook_N : N;
+fun notecase_N : N;
+fun noted_A : A;
+fun notepaper_N : N;
+fun noteworthy_A : A;
+fun nothing_Adv : Adv;
+fun nothingness_N : N;
+fun notice_N : N;
+fun notice_V : V;
+fun notice_V2 : V2;
+fun notice_board_N : N;
+fun noticeable_A : A;
+fun noticeably_Adv : Adv;
+fun notifiable_A : A;
+fun notification_N : N;
+fun notify_V2 : V2;
+fun notion_N : N;
+fun notional_A : A;
+fun notoriety_N : N;
+fun notorious_A : A;
+fun notoriously_Adv : Adv;
+fun nottingham_PN : PN;
+fun nottinghamshire_PN : PN;
+fun notwithstanding_Adv : Adv;
+fun nougat_N : N;
+fun nought_N : N;
+fun noun_N : N;
+fun nourish_V2 : V2;
+fun nourishment_N : N;
+fun nous_N : N;
+fun nouveau_riche_N : N;
+fun nov_PN : PN;
+fun nova_N : N;
+fun nova_scotia_PN : PN;
+fun novara_PN : PN;
+fun novel_A : A;
+fun novel_N : N;
+fun novelette_N : N;
+fun novelist_N : N;
+fun novelty_N : N;
+fun november_N : N;
+fun november_PN : PN;
+fun novice_N : N;
+fun noviciate_N : N;
+fun novitiate_N : N;
+fun novokuznetsk_PN : PN;
+fun novosibirsk_PN : PN;
+fun now_Adv : Adv;
+fun nowadays_Adv : Adv;
+fun nowhere_Adv : Adv;
+fun nowise_Adv : Adv;
+fun noxious_A : A;
+fun noxiously_Adv : Adv;
+fun noxiousness_N : N;
+fun nozzle_N : N;
+fun nr_PN : PN;
+fun nspcc_N : N;
+fun nt_N : N;
+fun nuance_N : N;
+fun nub_N : N;
+fun nubile_A : A;
+fun nuclear_A : A;
+fun nucleic_A : A;
+fun nucleus_N : N;
+fun nude_A : A;
+fun nude_N : N;
+fun nudge_N : N;
+fun nudge_V2 : V2;
+fun nudism_N : N;
+fun nudist_N : N;
+fun nudity_N : N;
+fun nugatory_A : A;
+fun nugget_N : N;
+fun nuisance_N : N;
+fun null_A : A;
+fun nullification_N : N;
+fun nullify_V2 : V2;
+fun nullity_N : N;
+fun numb_A : A;
+fun numb_V2 : V2;
+fun number_N : N;
+fun number_V2 : V2;
+fun numberless_A : A;
+fun numberplate_N : N;
+fun numbly_Adv : Adv;
+fun numbness_N : N;
+fun numerable_A : A;
+fun numeracy_N : N;
+fun numeral_A : A;
+fun numeral_N : N;
+fun numerate_A : A;
+fun numeration_N : N;
+fun numerator_N : N;
+fun numeric_A : A;
+fun numerical_A : A;
+fun numerically_Adv : Adv;
+fun numerous_A : A;
+fun numinous_A : A;
+fun numismatics_N : N;
+fun numismatist_N : N;
+fun numskull_N : N;
+fun nun_N : N;
+fun nuncio_N : N;
+fun nuneaton_PN : PN;
+fun nunnery_N : N;
+fun nuptial_A : A;
+fun nurenburg_PN : PN;
+fun nurse_N : N;
+fun nurse_V2 : V2;
+fun nurseling_N : N;
+fun nursemaid_N : N;
+fun nursery_N : N;
+fun nurseryman_N : N;
+fun nursing_home_N : N;
+fun nursling_N : N;
+fun nurture_N : N;
+fun nurture_V2 : V2;
+fun nut_N : N;
+fun nut_V : V;
+fun nut_brown_A : A;
+fun nut_butter_N : N;
+fun nuthouse_N : N;
+fun nutmeg_N : N;
+fun nutria_N : N;
+fun nutrient_A : A;
+fun nutrient_N : N;
+fun nutriment_N : N;
+fun nutrition_N : N;
+fun nutritional_A : A;
+fun nutritionally_Adv : Adv;
+fun nutritious_A : A;
+fun nutritive_A : A;
+fun nuts_A : A;
+fun nutshell_N : N;
+fun nutty_A : A;
+fun nuzzle_V : V;
+fun nuzzle_V2 : V2;
+fun nylon_N : N;
+fun nymph_N : N;
+fun nymphet_N : N;
+fun nympho_N : N;
+fun nymphomania_N : N;
+fun nymphomaniac_A : A;
+fun nymphomaniac_N : N;
+fun nee_A : A;
+fun neglige_N : N;
+fun o'er_Adv : Adv;
+fun o_level_N : N;
+fun oaf_N : N;
+fun oafish_A : A;
+fun oak_N : N;
+fun oak_apple_N : N;
+fun oaken_A : A;
+fun oakengates_PN : PN;
+fun oakum_N : N;
+fun oap's_N : N;
+fun oap_N : N;
+fun oar_N : N;
+fun oarsman_N : N;
+fun oarsmanship_N : N;
+fun oarswoman_N : N;
+fun oasis_N : N;
+fun oast_N : N;
+fun oasthouse_N : N;
+fun oat_N : N;
+fun oatcake_N : N;
+fun oath_N : N;
+fun oatmeal_N : N;
+fun oau_N : N;
+fun ob_PN : PN;
+fun oban_PN : PN;
+fun obbligato_N : N;
+fun obduracy_N : N;
+fun obdurate_A : A;
+fun obdurately_Adv : Adv;
+fun obedience_N : N;
+fun obedient_A : A;
+fun obediently_Adv : Adv;
+fun obeisance_N : N;
+fun obelisk_N : N;
+fun oberhausen_PN : PN;
+fun obese_A : A;
+fun obesity_N : N;
+fun obey_V : V;
+fun obey_V2 : V2;
+fun obfuscate_V2 : V2;
+fun obi_N : N;
+fun obiter_dictum_N : N;
+fun obituary_N : N;
+fun object_N : N;
+fun object_V : V;
+fun object_V2 : V2;
+fun objection_N : N;
+fun objectionable_A : A;
+fun objectionably_Adv : Adv;
+fun objective_A : A;
+fun objective_N : N;
+fun objectively_Adv : Adv;
+fun objectivity_N : N;
+fun objector_N : N;
+fun objurgate_V2 : V2;
+fun objurgation_N : N;
+fun oblate_A : A;
+fun oblation_N : N;
+fun obligate_V2 : V2;
+fun obligation_N : N;
+fun obligatory_A : A;
+fun oblige_V2 : V2;
+fun obliging_A : A;
+fun obligingly_Adv : Adv;
+fun oblique_A : A;
+fun obliquely_Adv : Adv;
+fun obliquity_N : N;
+fun obliterate_V2 : V2;
+fun obliteration_N : N;
+fun oblivion_N : N;
+fun oblivious_A : A;
+fun oblong_A : A;
+fun oblong_N : N;
+fun obloquy_N : N;
+fun obnoxious_A : A;
+fun obnoxiously_Adv : Adv;
+fun obnoxiousness_N : N;
+fun oboe_N : N;
+fun oboist_N : N;
+fun obscene_A : A;
+fun obscenely_Adv : Adv;
+fun obscenity_N : N;
+fun obscurantism_N : N;
+fun obscurantist_N : N;
+fun obscure_A : A;
+fun obscure_V2 : V2;
+fun obscurely_Adv : Adv;
+fun obscurity_N : N;
+fun obsequious_A : A;
+fun obsequiously_Adv : Adv;
+fun obsequiousness_N : N;
+fun observable_A : A;
+fun observably_Adv : Adv;
+fun observance_N : N;
+fun observant_A : A;
+fun observantly_Adv : Adv;
+fun observation_N : N;
+fun observatory_N : N;
+fun observe_V : V;
+fun observe_V2 : V2;
+fun observer_N : N;
+fun observing_A : A;
+fun observingly_Adv : Adv;
+fun obsess_V2 : V2;
+fun obsession_N : N;
+fun obsessional_A : A;
+fun obsessionally_Adv : Adv;
+fun obsessive_A : A;
+fun obsessively_Adv : Adv;
+fun obsidian_N : N;
+fun obsolescence_N : N;
+fun obsolescent_A : A;
+fun obsolete_A : A;
+fun obstacle_N : N;
+fun obstetric_A : A;
+fun obstetrical_A : A;
+fun obstetrician_N : N;
+fun obstetrics_N : N;
+fun obstinacy_N : N;
+fun obstinate_A : A;
+fun obstinately_Adv : Adv;
+fun obstreperous_A : A;
+fun obstreperously_Adv : Adv;
+fun obstreperousness_N : N;
+fun obstruct_V2 : V2;
+fun obstruction_N : N;
+fun obstructionism_N : N;
+fun obstructionist_N : N;
+fun obstructive_A : A;
+fun obstructively_Adv : Adv;
+fun obtain_V : V;
+fun obtain_V2 : V2;
+fun obtainable_A : A;
+fun obtrude_V : V;
+fun obtrude_V2 : V2;
+fun obtrusive_A : A;
+fun obtrusively_Adv : Adv;
+fun obtuse_A : A;
+fun obtusely_Adv : Adv;
+fun obtuseness_N : N;
+fun obverse_N : N;
+fun obviate_V2 : V2;
+fun obvious_A : A;
+fun obviously_Adv : Adv;
+fun obviousness_N : N;
+fun ocarina_N : N;
+fun occasion_N : N;
+fun occasion_V2 : V2;
+fun occasional_A : A;
+fun occasionally_Adv : Adv;
+fun occident_PN : PN;
+fun occidental_A : A;
+fun occidental_N : N;
+fun occult_A : A;
+fun occult_N : N;
+fun occupancy_N : N;
+fun occupant_N : N;
+fun occupation_N : N;
+fun occupational_A : A;
+fun occupier_N : N;
+fun occupy_V2 : V2;
+fun occur_V : V;
+fun occurrence_N : N;
+fun ocean_N : N;
+fun oceanic_A : A;
+fun ochre_N : N;
+fun ockbrook_PN : PN;
+fun ockendon_PN : PN;
+fun oct_PN : PN;
+fun octagon_N : N;
+fun octagonal_A : A;
+fun octane_N : N;
+fun octave_N : N;
+fun octavo_N : N;
+fun octet_N : N;
+fun octette_N : N;
+fun october_N : N;
+fun october_PN : PN;
+fun octogenarian_A : A;
+fun octogenarian_N : N;
+fun octopus_N : N;
+fun octroi_N : N;
+fun ocular_A : A;
+fun oculist_N : N;
+fun odalisque_N : N;
+fun odd_A : A;
+fun odd_job_A : A;
+fun oddity_N : N;
+fun oddly_Adv : Adv;
+fun oddment_N : N;
+fun odds_on_A : A;
+fun odds_on_Adv : Adv;
+fun ode_N : N;
+fun odessa_PN : PN;
+fun odious_A : A;
+fun odiously_Adv : Adv;
+fun odium_N : N;
+fun odoriferous_A : A;
+fun odorous_A : A;
+fun odour_N : N;
+fun odourless_A : A;
+fun odyssey_N : N;
+fun oecd_N : N;
+fun oecumenical_A : A;
+fun oed_N : N;
+fun oedipus_PN : PN;
+fun oesophagus_N : N;
+fun off_A : A;
+fun off_Adv : Adv;
+fun off_day_N : N;
+fun off_licence_N : N;
+fun off_peak_A : A;
+fun off_putting_A : A;
+fun off_street_A : A;
+fun off_white_A : A;
+fun offal_N : N;
+fun offaly_PN : PN;
+fun offbeat_A : A;
+fun offenbach_PN : PN;
+fun offence_N : N;
+fun offenceless_A : A;
+fun offend_V : V;
+fun offend_V2 : V2;
+fun offender_N : N;
+fun offensive_A : A;
+fun offensive_N : N;
+fun offensively_Adv : Adv;
+fun offensiveness_N : N;
+fun offer_N : N;
+fun offer_V : V;
+fun offer_V2 : V2;
+fun offering_N : N;
+fun offertory_N : N;
+fun offhand_A : A;
+fun offhand_Adv : Adv;
+fun offhanded_A : A;
+fun offhanded_Adv : Adv;
+fun offhandedly_A : A;
+fun offhandedly_Adv : Adv;
+fun office_N : N;
+fun office_bearer_N : N;
+fun office_block_N : N;
+fun office_boy_N : N;
+fun office_holder_N : N;
+fun officer_N : N;
+fun official_A : A;
+fun official_N : N;
+fun officialdom_N : N;
+fun officialese_N : N;
+fun officially_Adv : Adv;
+fun officiate_V : V;
+fun officious_A : A;
+fun officiously_Adv : Adv;
+fun officiousness_N : N;
+fun offing_N : N;
+fun offish_A : A;
+fun offprint_N : N;
+fun offset_N : N;
+fun offset_V2 : V2;
+fun offshoot_N : N;
+fun offshore_A : A;
+fun offside_A : A;
+fun offside_Adv : Adv;
+fun offspring_N : N;
+fun offstage_A : A;
+fun offstage_Adv : Adv;
+fun oft_Adv : Adv;
+fun oft_times_Adv : Adv;
+fun often_Adv : Adv;
+fun oftener_Adv : Adv;
+fun ogle_V : V;
+fun ogle_V2 : V2;
+fun ogmore_valley_PN : PN;
+fun ogre_N : N;
+fun ogreish_A : A;
+fun ogress_N : N;
+fun ohio_PN : PN;
+fun ohm_N : N;
+fun oil_N : N;
+fun oil_V2 : V2;
+fun oil_bearing_A : A;
+fun oil_burner_N : N;
+fun oil_cake_N : N;
+fun oil_painting_N : N;
+fun oil_palm_N : N;
+fun oil_paper_N : N;
+fun oil_rig_N : N;
+fun oil_silk_N : N;
+fun oil_slick_N : N;
+fun oil_tanker_N : N;
+fun oil_well_N : N;
+fun oilcan_N : N;
+fun oilcloth_N : N;
+fun oiled_A : A;
+fun oiler_N : N;
+fun oilfield_N : N;
+fun oilfired_A : A;
+fun oiliness_N : N;
+fun oilskin_N : N;
+fun oily_A : A;
+fun ointment_N : N;
+fun okapi_N : N;
+fun okay_A : A;
+fun okay_Adv : Adv;
+fun okay_N : N;
+fun okay_V2 : V2;
+fun oklahoma_PN : PN;
+fun oklahoma_city_PN : PN;
+fun okra_N : N;
+fun old_A : A;
+fun old_N : N;
+fun old_fashioned_A : A;
+fun old_maidish_A : A;
+fun old_time_A : A;
+fun old_timer_N : N;
+fun old_windsor_PN : PN;
+fun old_womanish_A : A;
+fun old_world_A : A;
+fun olden_A : A;
+fun oldenburg_PN : PN;
+fun oldham_PN : PN;
+fun oldish_A : A;
+fun oldland_PN : PN;
+fun oldster_N : N;
+fun oleaginous_A : A;
+fun oleander_N : N;
+fun olfactory_A : A;
+fun oligarch_N : N;
+fun oligarchy_N : N;
+fun olive_A : A;
+fun olive_N : N;
+fun olive_PN : PN;
+fun olive_tree_N : N;
+fun oliver_PN : PN;
+fun olivia_PN : PN;
+fun ollerton_PN : PN;
+fun ollie_PN : PN;
+fun olympiad_N : N;
+fun olympian_A : A;
+fun olympian_N : N;
+fun olympic_A : A;
+fun olympics_PN : PN;
+fun oman_PN : PN;
+fun omani_A : A;
+fun omani_N : N;
+fun ombudsman_N : N;
+fun omega_N : N;
+fun omelet_N : N;
+fun omelette_N : N;
+fun omen_N : N;
+fun omen_V2 : V2;
+fun ominous_A : A;
+fun ominously_Adv : Adv;
+fun omission_N : N;
+fun omit_V2 : V2;
+fun omnibus_N : N;
+fun omnipotence_N : N;
+fun omnipotent_A : A;
+fun omniscience_N : N;
+fun omniscient_A : A;
+fun omnivorous_A : A;
+fun omsk_PN : PN;
+fun on_Adv : Adv;
+fun on_licence_N : N;
+fun once_Adv : Adv;
+fun oncoming_A : A;
+fun oncoming_N : N;
+fun one_armed_A : A;
+fun one_eyed_A : A;
+fun one_horse_A : A;
+fun one_idea'd_A : A;
+fun one_sided_A : A;
+fun one_step_N : N;
+fun one_time_A : A;
+fun one_upmanship_N : N;
+fun oneness_N : N;
+fun onerous_A : A;
+fun onerously_Adv : Adv;
+fun ongar_PN : PN;
+fun ongoing_A : A;
+fun onion_N : N;
+fun onlooker_N : N;
+fun only_A : A;
+fun only_Adv : Adv;
+fun onomatopoeia_N : N;
+fun onrush_N : N;
+fun onset_N : N;
+fun onshore_A : A;
+fun onshore_Adv : Adv;
+fun onslaught_N : N;
+fun ontario_PN : PN;
+fun ontology_N : N;
+fun onus_N : N;
+fun onward_A : A;
+fun onward_Adv : Adv;
+fun onwards_Adv : Adv;
+fun onyx_N : N;
+fun oomph_N : N;
+fun ooze_N : N;
+fun ooze_V : V;
+fun ooze_V2 : V2;
+fun oozy_A : A;
+fun op_PN : PN;
+fun op_art_N : N;
+fun op_cit_PN : PN;
+fun opacity_N : N;
+fun opal_N : N;
+fun opalescent_A : A;
+fun opaque_A : A;
+fun opaquely_Adv : Adv;
+fun opaqueness_N : N;
+fun opec_PN : PN;
+fun open_A : A;
+fun open_N : N;
+fun open_V : V;
+fun open_V2 : V2;
+fun open_air_A : A;
+fun open_ended_A : A;
+fun open_eyed_A : A;
+fun open_handed_A : A;
+fun open_hearted_A : A;
+fun open_minded_A : A;
+fun open_mouthed_A : A;
+fun opencast_A : A;
+fun opener_N : N;
+fun opening_A : A;
+fun opening_N : N;
+fun openly_Adv : Adv;
+fun openness_N : N;
+fun openwork_N : N;
+fun opera_N : N;
+fun opera_cloak_N : N;
+fun opera_hat_N : N;
+fun opera_house_N : N;
+fun operable_A : A;
+fun operate_V : V;
+fun operate_V2 : V2;
+fun operatic_A : A;
+fun operating_table_N : N;
+fun operating_theatre_N : N;
+fun operation_N : N;
+fun operational_A : A;
+fun operative_A : A;
+fun operative_N : N;
+fun operator_N : N;
+fun operetta_N : N;
+fun ophthalmia_N : N;
+fun ophthalmic_A : A;
+fun ophthalmoscope_N : N;
+fun opiate_N : N;
+fun opine_V2 : V2;
+fun opinion_N : N;
+fun opinionated_A : A;
+fun opinionative_A : A;
+fun opium_N : N;
+fun opium_den_N : N;
+fun opossum_N : N;
+fun opp_PN : PN;
+fun opponent_N : N;
+fun opportune_A : A;
+fun opportunely_Adv : Adv;
+fun opportunism_N : N;
+fun opportunist_N : N;
+fun opportunity_N : N;
+fun oppose_V2 : V2;
+fun opposite_A : A;
+fun opposite_N : N;
+fun opposition_N : N;
+fun oppress_V2 : V2;
+fun oppression_N : N;
+fun oppressive_A : A;
+fun oppressively_Adv : Adv;
+fun oppressor_N : N;
+fun opprobrious_A : A;
+fun opprobriously_Adv : Adv;
+fun opprobrium_N : N;
+fun oppugn_V2 : V2;
+fun opt_V : V;
+fun optative_A : A;
+fun optative_N : N;
+fun optic_A : A;
+fun optical_A : A;
+fun optically_Adv : Adv;
+fun optician_N : N;
+fun optics_N : N;
+fun optimal_A : A;
+fun optimally_Adv : Adv;
+fun optimism_N : N;
+fun optimist_N : N;
+fun optimistic_A : A;
+fun optimistically_Adv : Adv;
+fun optimum_N : N;
+fun option_N : N;
+fun optional_A : A;
+fun optionally_Adv : Adv;
+fun opulence_N : N;
+fun opulent_A : A;
+fun opulently_Adv : Adv;
+fun opus_N : N;
+fun oracle_N : N;
+fun oracular_A : A;
+fun oral_A : A;
+fun oral_N : N;
+fun orally_Adv : Adv;
+fun orang_outan_N : N;
+fun orang_outang_N : N;
+fun orang_utan_N : N;
+fun orange_A : A;
+fun orange_N : N;
+fun orangeade_N : N;
+fun orangeman_N : N;
+fun orate_V : V;
+fun oration_N : N;
+fun orator_N : N;
+fun oratorical_A : A;
+fun oratorio_N : N;
+fun oratory_N : N;
+fun orb_N : N;
+fun orbit_N : N;
+fun orbit_V : V;
+fun orbit_V2 : V2;
+fun orbital_A : A;
+fun orchard_N : N;
+fun orchestra_N : N;
+fun orchestral_A : A;
+fun orchestrate_V2 : V2;
+fun orchestration_N : N;
+fun orchid_N : N;
+fun orchis_N : N;
+fun ordain_V2 : V2;
+fun ordeal_N : N;
+fun order_N : N;
+fun order_V2 : V2;
+fun order_book_N : N;
+fun order_form_N : N;
+fun order_paper_N : N;
+fun ordering_N : N;
+fun orderliness_N : N;
+fun orderly_A : A;
+fun orderly_N : N;
+fun ordinal_A : A;
+fun ordinal_N : N;
+fun ordinance_N : N;
+fun ordinand_N : N;
+fun ordinarily_Adv : Adv;
+fun ordinary_A : A;
+fun ordination_N : N;
+fun ordnance_N : N;
+fun ordure_N : N;
+fun ore_N : N;
+fun oregon_PN : PN;
+fun organ_N : N;
+fun organ_blower_N : N;
+fun organ_grinder_N : N;
+fun organ_loft_N : N;
+fun organdie_N : N;
+fun organic_A : A;
+fun organically_Adv : Adv;
+fun organism_N : N;
+fun organist_N : N;
+fun organization_N : N;
+fun organizational_A : A;
+fun organizationally_Adv : Adv;
+fun organize_V2 : V2;
+fun organized_A : A;
+fun organizer_N : N;
+fun orgasm_N : N;
+fun orgiastic_A : A;
+fun orgy_N : N;
+fun oriel_N : N;
+fun orient_A : A;
+fun orient_N : N;
+fun orient_V2 : V2;
+fun oriental_A : A;
+fun oriental_N : N;
+fun orientalist_N : N;
+fun orientate_V2 : V2;
+fun orientation_N : N;
+fun orifice_N : N;
+fun origin_N : N;
+fun original_A : A;
+fun original_N : N;
+fun originality_N : N;
+fun originally_Adv : Adv;
+fun originate_V : V;
+fun originate_V2 : V2;
+fun originator_N : N;
+fun oriole_N : N;
+fun orison_N : N;
+fun orkney_PN : PN;
+fun orleans_PN : PN;
+fun orlop_N : N;
+fun ormolu_N : N;
+fun ormskirk_PN : PN;
+fun ornament_N : N;
+fun ornament_V2 : V2;
+fun ornamental_A : A;
+fun ornamentation_N : N;
+fun ornate_A : A;
+fun ornately_Adv : Adv;
+fun ornateness_N : N;
+fun ornery_A : A;
+fun ornithological_A : A;
+fun ornithologist_N : N;
+fun ornithology_N : N;
+fun orotund_A : A;
+fun orphan_N : N;
+fun orphan_V2 : V2;
+fun orphanage_N : N;
+fun orrisroot_N : N;
+fun orthodontic_A : A;
+fun orthodontics_N : N;
+fun orthodontist_N : N;
+fun orthodox_A : A;
+fun orthodoxy_N : N;
+fun orthogonal_A : A;
+fun orthogonally_Adv : Adv;
+fun orthographic_A : A;
+fun orthography_N : N;
+fun orthopaedic_A : A;
+fun orthopaedics_N : N;
+fun orthopedic_A : A;
+fun orthopedics_N : N;
+fun ortolan_N : N;
+fun oryx_N : N;
+fun osaka_PN : PN;
+fun oscar_N : N;
+fun oscar_PN : PN;
+fun oscillate_V : V;
+fun oscillate_V2 : V2;
+fun oscillation_N : N;
+fun oscillator_N : N;
+fun oscillograph_N : N;
+fun oscilloscope_N : N;
+fun osier_N : N;
+fun oslo_PN : PN;
+fun osnabruck_PN : PN;
+fun osprey_N : N;
+fun osseous_A : A;
+fun ossett_PN : PN;
+fun ossification_N : N;
+fun ossify_V : V;
+fun ossify_V2 : V2;
+fun ostensible_A : A;
+fun ostensibly_Adv : Adv;
+fun ostentation_N : N;
+fun ostentatious_A : A;
+fun ostentatiously_Adv : Adv;
+fun osteopath_N : N;
+fun osteopathy_N : N;
+fun ostler_N : N;
+fun ostracism_N : N;
+fun ostracize_V2 : V2;
+fun ostrich_N : N;
+fun oswald_PN : PN;
+fun oswestry_PN : PN;
+fun ot_N : N;
+fun otago_PN : PN;
+fun other_A : A;
+fun other_Adv : Adv;
+fun other_N : N;
+fun otherwise_Adv : Adv;
+fun otherworldly_A : A;
+fun otiose_A : A;
+fun otley_PN : PN;
+fun ottawa_PN : PN;
+fun otter_N : N;
+fun ottoman_N : N;
+fun oubliette_N : N;
+fun ouija_N : N;
+fun ouija_board_N : N;
+fun ounce_N : N;
+fun oust_V2 : V2;
+fun out_Adv : Adv;
+fun out_V2 : V2;
+fun out_herod_V2 : V2;
+fun out_of_date_A : A;
+fun out_of_door_A : A;
+fun out_of_doors_Adv : Adv;
+fun out_of_the_way_A : A;
+fun out_of_the_way_Adv : Adv;
+fun out_of_work_A : A;
+fun out_tray_N : N;
+fun outback_A : A;
+fun outback_N : N;
+fun outbalance_V2 : V2;
+fun outbid_V2 : V2;
+fun outboard_A : A;
+fun outbound_A : A;
+fun outbrave_V2 : V2;
+fun outbreak_N : N;
+fun outbuilding_N : N;
+fun outburst_N : N;
+fun outcast_A : A;
+fun outcast_N : N;
+fun outcaste_A : A;
+fun outcaste_N : N;
+fun outclass_V2 : V2;
+fun outcome_N : N;
+fun outcrop_N : N;
+fun outcry_N : N;
+fun outdated_A : A;
+fun outdistance_V2 : V2;
+fun outdo_V2 : V2;
+fun outdoor_A : A;
+fun outdoors_Adv : Adv;
+fun outer_A : A;
+fun outermost_A : A;
+fun outface_V2 : V2;
+fun outfall_N : N;
+fun outfield_N : N;
+fun outfielder_N : N;
+fun outfight_V2 : V2;
+fun outfit_N : N;
+fun outfit_V2 : V2;
+fun outfitter_N : N;
+fun outflank_V2 : V2;
+fun outflow_N : N;
+fun outfox_V2 : V2;
+fun outgo_N : N;
+fun outgo_V : V;
+fun outgoing_A : A;
+fun outgrow_V2 : V2;
+fun outgrowth_N : N;
+fun outhouse_N : N;
+fun outing_N : N;
+fun outlandish_A : A;
+fun outlandishly_Adv : Adv;
+fun outlandishness_N : N;
+fun outlast_V2 : V2;
+fun outlaw_N : N;
+fun outlaw_V2 : V2;
+fun outlawry_N : N;
+fun outlay_N : N;
+fun outlet_N : N;
+fun outlier_N : N;
+fun outline_N : N;
+fun outline_V2 : V2;
+fun outlive_V2 : V2;
+fun outlook_N : N;
+fun outlying_A : A;
+fun outmanoeuvre_V2 : V2;
+fun outmarch_V2 : V2;
+fun outmatch_V2 : V2;
+fun outmoded_A : A;
+fun outmost_A : A;
+fun outnumber_V2 : V2;
+fun outpatient_N : N;
+fun outplay_V2 : V2;
+fun outpoint_V2 : V2;
+fun outport_N : N;
+fun outpost_N : N;
+fun outpouring_N : N;
+fun output_N : N;
+fun outrage_N : N;
+fun outrage_V2 : V2;
+fun outrageous_A : A;
+fun outrageously_Adv : Adv;
+fun outrange_V2 : V2;
+fun outrank_V2 : V2;
+fun outride_V2 : V2;
+fun outrider_N : N;
+fun outrigged_A : A;
+fun outrigger_N : N;
+fun outright_A : A;
+fun outright_Adv : Adv;
+fun outrival_V2 : V2;
+fun outrun_V2 : V2;
+fun outre_A : A;
+fun outsail_V2 : V2;
+fun outset_N : N;
+fun outshine_V2 : V2;
+fun outside_A : A;
+fun outside_Adv : Adv;
+fun outside_N : N;
+fun outsider_N : N;
+fun outsize_A : A;
+fun outsmart_V2 : V2;
+fun outspan_V : V;
+fun outspan_V2 : V2;
+fun outspoken_A : A;
+fun outspokenly_Adv : Adv;
+fun outspokenness_N : N;
+fun outspread_A : A;
+fun outstanding_A : A;
+fun outstandingly_Adv : Adv;
+fun outstation_N : N;
+fun outstay_V2 : V2;
+fun outstretched_A : A;
+fun outstrip_V2 : V2;
+fun outvie_V2 : V2;
+fun outvote_V2 : V2;
+fun outward_A : A;
+fun outward_Adv : Adv;
+fun outwardly_Adv : Adv;
+fun outwards_Adv : Adv;
+fun outwear_V2 : V2;
+fun outweigh_V2 : V2;
+fun outwit_V2 : V2;
+fun outwork_N : N;
+fun ouzel_N : N;
+fun ouzo_N : N;
+fun oval_A : A;
+fun oval_N : N;
+fun ovary_N : N;
+fun ovation_N : N;
+fun oven_N : N;
+fun ovenware_N : N;
+fun over_Adv : Adv;
+fun over_N : N;
+fun over_abundance_N : N;
+fun over_ripe_A : A;
+fun overabundant_A : A;
+fun overact_V : V;
+fun overact_V2 : V2;
+fun overactive_A : A;
+fun overall_A : A;
+fun overall_N : N;
+fun overambitious_A : A;
+fun overanxiety_N : N;
+fun overanxious_A : A;
+fun overarch_V : V;
+fun overarch_V2 : V2;
+fun overarm_A : A;
+fun overarm_Adv : Adv;
+fun overawe_V2 : V2;
+fun overbalance_V : V;
+fun overbalance_V2 : V2;
+fun overbear_V2 : V2;
+fun overbearing_A : A;
+fun overbearingly_Adv : Adv;
+fun overbid_N : N;
+fun overbid_V : V;
+fun overbid_V2 : V2;
+fun overblown_A : A;
+fun overboard_Adv : Adv;
+fun overbold_A : A;
+fun overburden_N : N;
+fun overburden_V2 : V2;
+fun overbusy_A : A;
+fun overcall_V : V;
+fun overcall_V2 : V2;
+fun overcapitalization_N : N;
+fun overcapitalize_V2 : V2;
+fun overcareful_A : A;
+fun overcast_A : A;
+fun overcast_N : N;
+fun overcautious_A : A;
+fun overcharge_N : N;
+fun overcharge_V : V;
+fun overcharge_V2 : V2;
+fun overclothe_V2 : V2;
+fun overcloud_V : V;
+fun overcloud_V2 : V2;
+fun overcoat_N : N;
+fun overcome_V2 : V2;
+fun overconfidence_N : N;
+fun overconfident_A : A;
+fun overcook_V2 : V2;
+fun overcredulity_N : N;
+fun overcredulous_A : A;
+fun overcritical_A : A;
+fun overcrop_V2 : V2;
+fun overcrowd_V2 : V2;
+fun overcurious_A : A;
+fun overdelicate_A : A;
+fun overdo_V2 : V2;
+fun overdraft_N : N;
+fun overdraw_V : V;
+fun overdraw_V2 : V2;
+fun overdress_V : V;
+fun overdress_V2 : V2;
+fun overdrive_N : N;
+fun overdue_A : A;
+fun overeager_A : A;
+fun overeat_V : V;
+fun overemotional_A : A;
+fun overemphasis_N : N;
+fun overemphasize_V2 : V2;
+fun overenthusiastic_A : A;
+fun overestimate_V2 : V2;
+fun overexcited_A : A;
+fun overexert_V2 : V2;
+fun overexertion_N : N;
+fun overexpose_V2 : V2;
+fun overexposure_N : N;
+fun overfamiliar_A : A;
+fun overfeed_V : V;
+fun overfeed_V2 : V2;
+fun overfeeding_N : N;
+fun overflow_N : N;
+fun overflow_V : V;
+fun overflow_V2 : V2;
+fun overfly_V2 : V2;
+fun overfond_A : A;
+fun overfull_A : A;
+fun overgenerous_A : A;
+fun overgreedy_A : A;
+fun overgrown_A : A;
+fun overgrowth_N : N;
+fun overhand_A : A;
+fun overhang_N : N;
+fun overhang_V : V;
+fun overhang_V2 : V2;
+fun overhasty_A : A;
+fun overhaul_N : N;
+fun overhaul_V2 : V2;
+fun overhead_A : A;
+fun overhead_Adv : Adv;
+fun overhear_V2 : V2;
+fun overheat_V2 : V2;
+fun overindulge_V : V;
+fun overindulge_V2 : V2;
+fun overindulgence_N : N;
+fun overjealous_A : A;
+fun overjoyed_A : A;
+fun overkill_N : N;
+fun overladen_A : A;
+fun overland_A : A;
+fun overlap_N : N;
+fun overlap_V : V;
+fun overlap_V2 : V2;
+fun overlarge_A : A;
+fun overlay_N : N;
+fun overlay_V2 : V2;
+fun overleaf_Adv : Adv;
+fun overleap_V2 : V2;
+fun overlie_V : V;
+fun overload_V2 : V2;
+fun overlook_V2 : V2;
+fun overlord_N : N;
+fun overly_Adv : Adv;
+fun overmantel_N : N;
+fun overmaster_V2 : V2;
+fun overmodest_A : A;
+fun overmuch_A : A;
+fun overmuch_Adv : Adv;
+fun overnervous_A : A;
+fun overnight_A : A;
+fun overnight_Adv : Adv;
+fun overpass_N : N;
+fun overpay_V2 : V2;
+fun overpayment_N : N;
+fun overplay_V2 : V2;
+fun overplus_N : N;
+fun overpopulation_N : N;
+fun overpower_V2 : V2;
+fun overpowering_A : A;
+fun overpraise_V2 : V2;
+fun overprint_N : N;
+fun overprint_V2 : V2;
+fun overproduce_V : V;
+fun overproduce_V2 : V2;
+fun overproduction_N : N;
+fun overproud_A : A;
+fun overrate_V2 : V2;
+fun overreach_V2 : V2;
+fun override_V2 : V2;
+fun overripe_A : A;
+fun overrule_V2 : V2;
+fun overrun_V2 : V2;
+fun oversea_A : A;
+fun oversea_Adv : Adv;
+fun overseas_A : A;
+fun overseas_Adv : Adv;
+fun oversee_V2 : V2;
+fun overseer_N : N;
+fun oversensitive_A : A;
+fun overserious_A : A;
+fun oversew_V2 : V2;
+fun oversewn_A : A;
+fun oversexed_A : A;
+fun overshadow_V2 : V2;
+fun overshoe_N : N;
+fun overshoot_V2 : V2;
+fun overshot_A : A;
+fun overside_Adv : Adv;
+fun oversight_N : N;
+fun oversimplify_V2 : V2;
+fun oversize_A : A;
+fun overskirt_N : N;
+fun oversleep_V : V;
+fun overspend_V : V;
+fun overspend_V2 : V2;
+fun overspill_N : N;
+fun overstate_V2 : V2;
+fun overstatement_N : N;
+fun overstay_V2 : V2;
+fun overstep_V2 : V2;
+fun overstock_V2 : V2;
+fun overstrain_N : N;
+fun overstrain_V2 : V2;
+fun overstrung_A : A;
+fun overstuffed_A : A;
+fun oversubscribed_A : A;
+fun oversuspicious_A : A;
+fun overt_A : A;
+fun overtake_V2 : V2;
+fun overtax_V2 : V2;
+fun overthrow_N : N;
+fun overthrow_V2 : V2;
+fun overtime_Adv : Adv;
+fun overtime_N : N;
+fun overtly_Adv : Adv;
+fun overtolerance_N : N;
+fun overtone_N : N;
+fun overtop_V2 : V2;
+fun overtrump_V2 : V2;
+fun overture_N : N;
+fun overturn_V : V;
+fun overturn_V2 : V2;
+fun overvalue_V2 : V2;
+fun overweening_A : A;
+fun overweight_A : A;
+fun overweight_N : N;
+fun overweighted_A : A;
+fun overwhelm_V2 : V2;
+fun overwhelmingly_Adv : Adv;
+fun overwork_N : N;
+fun overwork_V : V;
+fun overwork_V2 : V2;
+fun overwrought_A : A;
+fun overzealous_A : A;
+fun oviduct_N : N;
+fun oviedo_PN : PN;
+fun oviparous_A : A;
+fun ovoid_A : A;
+fun ovoid_N : N;
+fun ovum_N : N;
+fun owe_V : V;
+fun owe_V2 : V2;
+fun owing_A : A;
+fun owl_N : N;
+fun owlet_N : N;
+fun owlish_A : A;
+fun owlishly_Adv : Adv;
+fun own_A : A;
+fun own_V : V;
+fun own_V2 : V2;
+fun owner_N : N;
+fun owner_driven_A : A;
+fun owner_driver_N : N;
+fun owner_occupied_A : A;
+fun owner_occupier_N : N;
+fun ownerless_A : A;
+fun ownership_N : N;
+fun ox_N : N;
+fun oxbridge_PN : PN;
+fun oxeye_N : N;
+fun oxeyed_A : A;
+fun oxford_PN : PN;
+fun oxfordshire_PN : PN;
+fun oxidation_N : N;
+fun oxide_N : N;
+fun oxidization_N : N;
+fun oxidize_V : V;
+fun oxidize_V2 : V2;
+fun oxon_PN : PN;
+fun oxonian_A : A;
+fun oxonian_N : N;
+fun oxtail_N : N;
+fun oxted_PN : PN;
+fun oxyacetylene_A : A;
+fun oxyacetylene_N : N;
+fun oxygen_N : N;
+fun oxygenate_V2 : V2;
+fun oxygenize_V2 : V2;
+fun oyster_N : N;
+fun oyster_bank_N : N;
+fun oyster_bar_N : N;
+fun oyster_bed_N : N;
+fun oyster_catcher_N : N;
+fun oz_N : N;
+fun ozone_N : N;
+fun ozzie_PN : PN;
+fun pa_N : N;
+fun pabulum_N : N;
+fun pace_N : N;
+fun pace_V : V;
+fun pace_V2 : V2;
+fun pacemaker_N : N;
+fun pacesetter_N : N;
+fun pachyderm_N : N;
+fun pacific_A : A;
+fun pacific_PN : PN;
+fun pacifically_Adv : Adv;
+fun pacification_N : N;
+fun pacifism_N : N;
+fun pacifist_N : N;
+fun pacify_V2 : V2;
+fun pack_N : N;
+fun pack_V : V;
+fun pack_V2 : V2;
+fun pack_animal_N : N;
+fun pack_saddle_N : N;
+fun pack_thread_N : N;
+fun package_N : N;
+fun package_V2 : V2;
+fun packer_N : N;
+fun packet_N : N;
+fun packet_boat_N : N;
+fun packhorse_N : N;
+fun packing_N : N;
+fun packing_case_N : N;
+fun packing_needle_N : N;
+fun pact_N : N;
+fun pad_N : N;
+fun pad_V : V;
+fun pad_V2 : V2;
+fun padding_N : N;
+fun paddle_N : N;
+fun paddle_V : V;
+fun paddle_V2 : V2;
+fun paddle_box_N : N;
+fun paddle_steamer_N : N;
+fun paddle_wheel_N : N;
+fun paddock_N : N;
+fun paddy_N : N;
+fun paddy_PN : PN;
+fun paddy_field_N : N;
+fun paddy_wagon_N : N;
+fun padlock_N : N;
+fun padlock_V2 : V2;
+fun padova_PN : PN;
+fun padre_N : N;
+fun padua_PN : PN;
+fun paean_N : N;
+fun paederasty_N : N;
+fun paediatrics_N : N;
+fun paeony_N : N;
+fun pagan_A : A;
+fun pagan_N : N;
+fun paganism_N : N;
+fun page_N : N;
+fun page_V2 : V2;
+fun pageant_N : N;
+fun pageantry_N : N;
+fun pagination_N : N;
+fun pagoda_N : N;
+fun pail_N : N;
+fun pailful_N : N;
+fun paillasse_N : N;
+fun pailliasse_N : N;
+fun pain_N : N;
+fun pain_V2 : V2;
+fun pained_A : A;
+fun painful_A : A;
+fun painfully_Adv : Adv;
+fun painkiller_N : N;
+fun painless_A : A;
+fun painlessly_Adv : Adv;
+fun painstaking_A : A;
+fun painstakingly_Adv : Adv;
+fun paint_N : N;
+fun paint_V : V;
+fun paint_V2 : V2;
+fun paintbox_N : N;
+fun paintbrush_N : N;
+fun painter_N : N;
+fun painting_N : N;
+fun pair_N : N;
+fun pair_V : V;
+fun pair_V2 : V2;
+fun paisley_N : N;
+fun paisley_PN : PN;
+fun pakistan_PN : PN;
+fun pakistani_A : A;
+fun pakistani_N : N;
+fun pal_N : N;
+fun pal_V : V;
+fun palace_N : N;
+fun paladin_N : N;
+fun palaeolithic_A : A;
+fun palaeontologist_N : N;
+fun palaeontology_N : N;
+fun palankeen_N : N;
+fun palanquin_N : N;
+fun palatable_A : A;
+fun palatably_Adv : Adv;
+fun palatal_A : A;
+fun palatal_N : N;
+fun palate_N : N;
+fun palatial_A : A;
+fun palatinate_N : N;
+fun palaver_N : N;
+fun palaver_V : V;
+fun pale_A : A;
+fun pale_N : N;
+fun pale_V : V;
+fun paleface_N : N;
+fun palely_Adv : Adv;
+fun palembang_PN : PN;
+fun paleness_N : N;
+fun paleolithic_A : A;
+fun paleontologist_N : N;
+fun paleontology_N : N;
+fun palermo_PN : PN;
+fun palestine_PN : PN;
+fun palestinian_A : A;
+fun palestinian_N : N;
+fun palette_N : N;
+fun palette_knife_N : N;
+fun palfrey_N : N;
+fun palimpsest_N : N;
+fun palindrome_N : N;
+fun paling_N : N;
+fun palisade_N : N;
+fun palisade_V2 : V2;
+fun palish_A : A;
+fun pall_N : N;
+fun pall_V : V;
+fun pallbearer_N : N;
+fun pallet_N : N;
+fun palliasse_N : N;
+fun palliate_V2 : V2;
+fun palliation_N : N;
+fun palliative_A : A;
+fun palliative_N : N;
+fun pallid_A : A;
+fun pallidly_Adv : Adv;
+fun pallidness_N : N;
+fun pallor_N : N;
+fun pally_A : A;
+fun palm_N : N;
+fun palm_V2 : V2;
+fun palm_oil_N : N;
+fun palmer_N : N;
+fun palmetto_N : N;
+fun palmist_N : N;
+fun palmistry_N : N;
+fun palmy_A : A;
+fun palpable_A : A;
+fun palpably_Adv : Adv;
+fun palpitate_V : V;
+fun palpitation_N : N;
+fun palsy_N : N;
+fun palsy_V2 : V2;
+fun palter_V : V;
+fun paltry_A : A;
+fun pam_PN : PN;
+fun pamela_PN : PN;
+fun pampas_grass_N : N;
+fun pamper_V2 : V2;
+fun pamphlet_N : N;
+fun pamphleteer_N : N;
+fun pamplona_PN : PN;
+fun pan_N : N;
+fun pan_V : V;
+fun pan_V2 : V2;
+fun panacea_N : N;
+fun panache_N : N;
+fun panama_N : N;
+fun panama_PN : PN;
+fun panamanian_A : A;
+fun panamanian_N : N;
+fun panatella_N : N;
+fun pancake_N : N;
+fun panchromatic_A : A;
+fun pancreas_N : N;
+fun pancreatic_A : A;
+fun panda_N : N;
+fun pandemic_A : A;
+fun pandemic_N : N;
+fun pandemonium_N : N;
+fun pander_N : N;
+fun pander_V : V;
+fun pane_N : N;
+fun panegyric_N : N;
+fun panel_N : N;
+fun panel_V2 : V2;
+fun panelling_N : N;
+fun pang_N : N;
+fun panga_N : N;
+fun panhandle_N : N;
+fun panhandle_V : V;
+fun panic_N : N;
+fun panic_V : V;
+fun panic_stricken_A : A;
+fun panicky_A : A;
+fun panjandrum_N : N;
+fun pannier_N : N;
+fun pannikin_N : N;
+fun panoplied_A : A;
+fun panoply_N : N;
+fun panoptic_A : A;
+fun panorama_N : N;
+fun panoramic_A : A;
+fun pansy_N : N;
+fun pant_N : N;
+fun pant_V : V;
+fun pant_V2 : V2;
+fun pantaloon_N : N;
+fun pantechnicon_N : N;
+fun pantheism_N : N;
+fun pantheist_N : N;
+fun pantheistic_A : A;
+fun pantheon_N : N;
+fun panther_N : N;
+fun pantile_N : N;
+fun pantingly_Adv : Adv;
+fun panto_N : N;
+fun pantograph_N : N;
+fun pantomime_N : N;
+fun pantry_N : N;
+fun pantryman_N : N;
+fun panty_hose_N : N;
+fun panzer_A : A;
+fun paotow_PN : PN;
+fun pap_N : N;
+fun papa_N : N;
+fun papacy_N : N;
+fun papal_A : A;
+fun papaw_N : N;
+fun papaya_N : N;
+fun paper_N : N;
+fun paper_V2 : V2;
+fun paper_chase_N : N;
+fun paperback_N : N;
+fun paperbacked_A : A;
+fun paperclip_N : N;
+fun paperhanger_N : N;
+fun paperknife_N : N;
+fun paperless_A : A;
+fun papermill_N : N;
+fun paperweight_N : N;
+fun paperwork_N : N;
+fun papier_mache_N : N;
+fun papist_A : A;
+fun papist_N : N;
+fun papoose_N : N;
+fun paprika_N : N;
+fun papua_PN : PN;
+fun papuan_A : A;
+fun papuan_N : N;
+fun papyrus_N : N;
+fun par_N : N;
+fun par_excellence_Adv : Adv;
+fun para_N : N;
+fun parable_N : N;
+fun parabola_N : N;
+fun parabolic_A : A;
+fun parabolical_A : A;
+fun parachute_N : N;
+fun parachute_V : V;
+fun parachute_V2 : V2;
+fun parachutist_N : N;
+fun parade_N : N;
+fun parade_V : V;
+fun parade_V2 : V2;
+fun parade_ground_N : N;
+fun paradigm_N : N;
+fun paradise_N : N;
+fun paradisiac_A : A;
+fun paradisiacal_A : A;
+fun paradox_N : N;
+fun paradoxical_A : A;
+fun paradoxically_Adv : Adv;
+fun paraffin_N : N;
+fun paragon_N : N;
+fun paragraph_N : N;
+fun paragraph_V2 : V2;
+fun paraguay_PN : PN;
+fun paraguayan_A : A;
+fun paraguayan_N : N;
+fun parakeet_N : N;
+fun parallel_A : A;
+fun parallel_N : N;
+fun parallel_V2 : V2;
+fun parallelism_N : N;
+fun parallelogram_N : N;
+fun paralyse_V2 : V2;
+fun paralysis_N : N;
+fun paralytic_A : A;
+fun paralytic_N : N;
+fun paralyze_V2 : V2;
+fun parameter_N : N;
+fun paramilitary_A : A;
+fun paramount_A : A;
+fun paramountcy_N : N;
+fun paramour_N : N;
+fun paranoia_N : N;
+fun paranoiac_N : N;
+fun paranoid_A : A;
+fun paranoid_N : N;
+fun parapet_N : N;
+fun paraphernalia_N : N;
+fun paraphrase_V2 : V2;
+fun paraplegia_N : N;
+fun paraplegic_A : A;
+fun paraplegic_N : N;
+fun parasite_N : N;
+fun parasitic_A : A;
+fun parasitical_A : A;
+fun parasol_N : N;
+fun paratrooper_N : N;
+fun paratyphoid_N : N;
+fun parboil_V2 : V2;
+fun parcel_N : N;
+fun parcel_V2 : V2;
+fun parch_V2 : V2;
+fun parchment_N : N;
+fun pardon_N : N;
+fun pardon_V2 : V2;
+fun pardonable_A : A;
+fun pardonably_Adv : Adv;
+fun pardoner_N : N;
+fun pare_V2 : V2;
+fun paregoric_N : N;
+fun parent_N : N;
+fun parentage_N : N;
+fun parental_A : A;
+fun parentally_Adv : Adv;
+fun parenthesis_N : N;
+fun parenthetic_A : A;
+fun parenthetical_A : A;
+fun parenthetically_Adv : Adv;
+fun pari_mutuel_N : N;
+fun pari_passu_Adv : Adv;
+fun pariah_N : N;
+fun pariah_dog_N : N;
+fun paris_PN : PN;
+fun parish_N : N;
+fun parishioner_N : N;
+fun parisian_A : A;
+fun parisian_N : N;
+fun parity_N : N;
+fun park_N : N;
+fun park_V : V;
+fun park_V2 : V2;
+fun parka_N : N;
+fun parking_N : N;
+fun parkinson's_A : A;
+fun parky_A : A;
+fun parlance_N : N;
+fun parley_N : N;
+fun parley_V : V;
+fun parliament_N : N;
+fun parliamentarian_N : N;
+fun parliamentary_A : A;
+fun parlour_N : N;
+fun parlour_car_N : N;
+fun parlous_A : A;
+fun parma_PN : PN;
+fun parmesan_N : N;
+fun parochial_A : A;
+fun parochialism_N : N;
+fun parochially_Adv : Adv;
+fun parodist_N : N;
+fun parody_N : N;
+fun parody_V2 : V2;
+fun parole_N : N;
+fun parole_V2 : V2;
+fun paroquet_N : N;
+fun paroxysm_N : N;
+fun parquet_N : N;
+fun parr_N : N;
+fun parricide_N : N;
+fun parrot_N : N;
+fun parry_N : N;
+fun parry_V2 : V2;
+fun parse_V2 : V2;
+fun parsee_N : N;
+fun parsimonious_A : A;
+fun parsimony_N : N;
+fun parsley_N : N;
+fun parsnip_N : N;
+fun parson_N : N;
+fun parsonage_N : N;
+fun part_Adv : Adv;
+fun part_N : N;
+fun part_V : V;
+fun part_V2 : V2;
+fun part_owner_N : N;
+fun part_singing_N : N;
+fun part_song_N : N;
+fun part_time_A : A;
+fun part_time_Adv : Adv;
+fun part_timer_N : N;
+fun partake_V : V;
+fun partake_V2 : V2;
+fun parterre_N : N;
+fun parthenogenesis_N : N;
+fun parthian_A : A;
+fun parti_coloured_A : A;
+fun partial_A : A;
+fun partiality_N : N;
+fun partially_Adv : Adv;
+fun participant_N : N;
+fun participate_V : V;
+fun participation_N : N;
+fun participial_A : A;
+fun participle_N : N;
+fun particle_N : N;
+fun particular_A : A;
+fun particular_N : N;
+fun particularity_N : N;
+fun particularize_V : V;
+fun particularize_V2 : V2;
+fun particularly_Adv : Adv;
+fun parting_N : N;
+fun partisan_A : A;
+fun partisan_N : N;
+fun partisanship_N : N;
+fun partition_N : N;
+fun partition_V2 : V2;
+fun partitive_A : A;
+fun partitive_N : N;
+fun partly_Adv : Adv;
+fun partner_N : N;
+fun partner_V2 : V2;
+fun partnership_N : N;
+fun partridge_N : N;
+fun parturition_N : N;
+fun party_N : N;
+fun party_spirit_N : N;
+fun party_spirited_A : A;
+fun party_wall_N : N;
+fun parvenu_N : N;
+fun paschal_A : A;
+fun pasha_N : N;
+fun pashto_N : N;
+fun pass_N : N;
+fun pass_V : V;
+fun pass_V2 : V2;
+fun passable_A : A;
+fun passably_Adv : Adv;
+fun passage_N : N;
+fun passageway_N : N;
+fun passbook_N : N;
+fun passenger_N : N;
+fun passepartout_N : N;
+fun passer_by_N : N;
+fun passim_Adv : Adv;
+fun passing_A : A;
+fun passing_Adv : Adv;
+fun passing_N : N;
+fun passing_out_A : A;
+fun passion_N : N;
+fun passion_flower_N : N;
+fun passionate_A : A;
+fun passionately_Adv : Adv;
+fun passionless_A : A;
+fun passive_A : A;
+fun passive_N : N;
+fun passively_Adv : Adv;
+fun passiveness_N : N;
+fun passivity_N : N;
+fun passkey_N : N;
+fun passover_N : N;
+fun passport_N : N;
+fun password_N : N;
+fun passe_A : A;
+fun passee_A : A;
+fun past_A : A;
+fun past_Adv : Adv;
+fun past_N : N;
+fun pasta_N : N;
+fun paste_N : N;
+fun paste_V2 : V2;
+fun paste_up_N : N;
+fun pasteboard_N : N;
+fun pastel_N : N;
+fun pastern_N : N;
+fun pasteurization_N : N;
+fun pasteurize_V2 : V2;
+fun pastiche_N : N;
+fun pastille_N : N;
+fun pastime_N : N;
+fun pasting_N : N;
+fun pastor_N : N;
+fun pastoral_A : A;
+fun pastoral_N : N;
+fun pastorate_N : N;
+fun pastry_N : N;
+fun pastry_cook_N : N;
+fun pasturage_N : N;
+fun pasture_N : N;
+fun pasture_V : V;
+fun pasture_V2 : V2;
+fun pasty_A : A;
+fun pasty_N : N;
+fun pat_Adv : Adv;
+fun pat_N : N;
+fun pat_PN : PN;
+fun pat_V : V;
+fun pat_V2 : V2;
+fun patch_N : N;
+fun patch_V2 : V2;
+fun patch_pocket_N : N;
+fun patchily_Adv : Adv;
+fun patchiness_N : N;
+fun patchouli_N : N;
+fun patchwork_N : N;
+fun patchy_A : A;
+fun pate_1_N : N;
+fun pate_de_foie_gras_N : N;
+fun patella_N : N;
+fun patent_A : A;
+fun patent_N : N;
+fun patent_V2 : V2;
+fun patentee_N : N;
+fun patently_Adv : Adv;
+fun paterfamilias_N : N;
+fun paternal_A : A;
+fun paternalism_N : N;
+fun paternally_Adv : Adv;
+fun paternity_N : N;
+fun paternoster_N : N;
+fun path_N : N;
+fun path_finder_N : N;
+fun pathetic_A : A;
+fun pathetically_Adv : Adv;
+fun pathless_A : A;
+fun pathogen_N : N;
+fun pathological_A : A;
+fun pathologically_Adv : Adv;
+fun pathologist_N : N;
+fun pathology_N : N;
+fun pathos_N : N;
+fun pathway_N : N;
+fun patience_N : N;
+fun patience_PN : PN;
+fun patient_A : A;
+fun patient_N : N;
+fun patiently_Adv : Adv;
+fun patina_N : N;
+fun patio_N : N;
+fun patisserie_N : N;
+fun patois_N : N;
+fun patrai_PN : PN;
+fun patrial_N : N;
+fun patriarch_N : N;
+fun patriarchal_A : A;
+fun patriarchate_N : N;
+fun patriarchy_N : N;
+fun patricia_PN : PN;
+fun patrician_A : A;
+fun patrician_N : N;
+fun patricide_N : N;
+fun patrick_PN : PN;
+fun patrimonial_A : A;
+fun patrimony_N : N;
+fun patriot_N : N;
+fun patriotic_A : A;
+fun patriotically_Adv : Adv;
+fun patriotism_N : N;
+fun patrol_N : N;
+fun patrol_V : V;
+fun patrol_V2 : V2;
+fun patrolman_N : N;
+fun patron_N : N;
+fun patronage_N : N;
+fun patroness_N : N;
+fun patronize_V2 : V2;
+fun patronizing_A : A;
+fun patronizingly_Adv : Adv;
+fun patronymic_A : A;
+fun patronymic_N : N;
+fun patten_N : N;
+fun patter_N : N;
+fun patter_V : V;
+fun patter_V2 : V2;
+fun pattern_N : N;
+fun pattern_V2 : V2;
+fun patty_N : N;
+fun patty_PN : PN;
+fun patty_pan_N : N;
+fun paucity_N : N;
+fun paul_PN : PN;
+fun paula_PN : PN;
+fun pauline_PN : PN;
+fun paunch_N : N;
+fun paunchiness_N : N;
+fun paunchy_A : A;
+fun pauper_N : N;
+fun pauperism_N : N;
+fun pauperization_N : N;
+fun pauperize_V2 : V2;
+fun pause_N : N;
+fun pause_V : V;
+fun pave_V2 : V2;
+fun pavement_N : N;
+fun pavilion_N : N;
+fun paving_stone_N : N;
+fun paw_N : N;
+fun paw_V2 : V2;
+fun pawkily_Adv : Adv;
+fun pawky_A : A;
+fun pawl_N : N;
+fun pawn_N : N;
+fun pawn_V2 : V2;
+fun pawn_ticket_N : N;
+fun pawnbroker_N : N;
+fun pawnshop_N : N;
+fun pawpaw_N : N;
+fun pax_N : N;
+fun pax_romana_N : N;
+fun pay_N : N;
+fun pay_V : V;
+fun pay_V2 : V2;
+fun pay_as_you_earn_N : N;
+fun pay_claim_N : N;
+fun pay_packet_N : N;
+fun pay_station_N : N;
+fun payable_A : A;
+fun payday_N : N;
+fun paydirt_N : N;
+fun paye_PN : PN;
+fun payee_N : N;
+fun payer_N : N;
+fun payload_N : N;
+fun paymaster_N : N;
+fun payment_N : N;
+fun paynim_N : N;
+fun payoff_N : N;
+fun payphone_N : N;
+fun payroll_N : N;
+fun paysheet_N : N;
+fun payslip_N : N;
+fun pc_PN : PN;
+fun pdsa_N : N;
+fun pe_N : N;
+fun pea_N : N;
+fun pea_chick_N : N;
+fun pea_flour_N : N;
+fun pea_green_A : A;
+fun pea_green_N : N;
+fun pea_jacket_N : N;
+fun pea_soup_N : N;
+fun peace_N : N;
+fun peace_offering_N : N;
+fun peaceable_A : A;
+fun peaceably_Adv : Adv;
+fun peaceful_A : A;
+fun peacefully_Adv : Adv;
+fun peacefulness_N : N;
+fun peacehaven_PN : PN;
+fun peacemaker_N : N;
+fun peacetime_N : N;
+fun peach_N : N;
+fun peach_V : V;
+fun peach_V2 : V2;
+fun peacock_N : N;
+fun peacock_blue_A : A;
+fun peacock_blue_N : N;
+fun peafowl_N : N;
+fun peahen_N : N;
+fun peak_N : N;
+fun peak_V : V;
+fun peaked_A : A;
+fun peaky_A : A;
+fun peal_N : N;
+fun peal_V : V;
+fun peal_V2 : V2;
+fun peanut_N : N;
+fun pear_N : N;
+fun pearl_N : N;
+fun pearl_PN : PN;
+fun pearl_V : V;
+fun pearl_barley_N : N;
+fun pearl_diver_N : N;
+fun pearl_fishery_N : N;
+fun pearl_oyster_N : N;
+fun pearl_sago_N : N;
+fun pearly_A : A;
+fun pearmain_N : N;
+fun peasant_N : N;
+fun peasantry_N : N;
+fun pease_N : N;
+fun pease_pudding_N : N;
+fun peashooter_N : N;
+fun peasouper_N : N;
+fun peat_N : N;
+fun peaty_A : A;
+fun pebble_N : N;
+fun pebbly_A : A;
+fun pecan_N : N;
+fun peccable_A : A;
+fun peccadillo_N : N;
+fun peccary_N : N;
+fun peck_N : N;
+fun peck_V : V;
+fun peck_V2 : V2;
+fun pecker_N : N;
+fun peckish_A : A;
+fun pectic_A : A;
+fun pectin_N : N;
+fun pectoral_A : A;
+fun peculate_V : V;
+fun peculate_V2 : V2;
+fun peculation_N : N;
+fun peculiar_A : A;
+fun peculiarity_N : N;
+fun peculiarly_Adv : Adv;
+fun pecuniary_A : A;
+fun pedagogic_A : A;
+fun pedagogical_A : A;
+fun pedagogue_N : N;
+fun pedagogy_N : N;
+fun pedal_A : A;
+fun pedal_N : N;
+fun pedal_V : V;
+fun pedal_V2 : V2;
+fun pedant_N : N;
+fun pedantic_A : A;
+fun pedantically_Adv : Adv;
+fun pedantry_N : N;
+fun peddle_V : V;
+fun peddle_V2 : V2;
+fun peddler_N : N;
+fun peddling_A : A;
+fun pederast_N : N;
+fun pederasty_N : N;
+fun pedestal_N : N;
+fun pedestrian_A : A;
+fun pedestrian_N : N;
+fun pediatrician_N : N;
+fun pediatrics_N : N;
+fun pedicab_N : N;
+fun pedicure_N : N;
+fun pedigree_N : N;
+fun pediment_N : N;
+fun pedlar_N : N;
+fun pedometer_N : N;
+fun pee_N : N;
+fun pee_V : V;
+fun peebles_PN : PN;
+fun peek_N : N;
+fun peek_V : V;
+fun peek_a_boo_N : N;
+fun peel_N : N;
+fun peel_V : V;
+fun peel_V2 : V2;
+fun peeler_N : N;
+fun peep_N : N;
+fun peep_V : V;
+fun peeper_N : N;
+fun peephole_N : N;
+fun peepshow_N : N;
+fun peepul_N : N;
+fun peer_N : N;
+fun peer_V : V;
+fun peerage_N : N;
+fun peeress_N : N;
+fun peerless_A : A;
+fun peeve_V2 : V2;
+fun peeved_A : A;
+fun peevish_A : A;
+fun peevishly_Adv : Adv;
+fun peevishness_N : N;
+fun peewit_N : N;
+fun peg_N : N;
+fun peg_PN : PN;
+fun peg_V : V;
+fun peg_V2 : V2;
+fun peggy_PN : PN;
+fun peignoir_N : N;
+fun pejorative_A : A;
+fun pejoratively_Adv : Adv;
+fun peke_N : N;
+fun pekinese_N : N;
+fun peking_PN : PN;
+fun pekoe_N : N;
+fun pelf_N : N;
+fun pelican_N : N;
+fun pelisse_N : N;
+fun pell_mell_Adv : Adv;
+fun pellet_N : N;
+fun pellucid_A : A;
+fun pellucidly_Adv : Adv;
+fun pelmet_N : N;
+fun pelota_N : N;
+fun pelt_N : N;
+fun pelt_V : V;
+fun pelt_V2 : V2;
+fun pelton_PN : PN;
+fun pelvic_A : A;
+fun pelvis_N : N;
+fun pembroke_PN : PN;
+fun pemmican_N : N;
+fun pen_N : N;
+fun pen_V2 : V2;
+fun pen_and_ink_N : N;
+fun pen_friend_N : N;
+fun pen_name_N : N;
+fun pen_pusher_N : N;
+fun penal_A : A;
+fun penalization_N : N;
+fun penalize_V2 : V2;
+fun penally_Adv : Adv;
+fun penalty_N : N;
+fun penance_N : N;
+fun penarth_PN : PN;
+fun penchant_N : N;
+fun pencil_N : N;
+fun pencil_V2 : V2;
+fun pendant_N : N;
+fun pendent_A : A;
+fun pending_A : A;
+fun pendlebury_PN : PN;
+fun pendulous_A : A;
+fun pendulum_N : N;
+fun penelope_PN : PN;
+fun penetrability_N : N;
+fun penetrable_A : A;
+fun penetrate_V : V;
+fun penetrate_V2 : V2;
+fun penetrating_A : A;
+fun penetratingly_Adv : Adv;
+fun penetration_N : N;
+fun penetrative_A : A;
+fun penguin_N : N;
+fun penicillin_N : N;
+fun penicuik_PN : PN;
+fun peninsula_N : N;
+fun peninsular_A : A;
+fun penis_N : N;
+fun penitence_N : N;
+fun penitent_A : A;
+fun penitent_N : N;
+fun penitential_A : A;
+fun penitentially_Adv : Adv;
+fun penitentiary_A : A;
+fun penitentiary_N : N;
+fun penitently_Adv : Adv;
+fun penki_PN : PN;
+fun penknife_N : N;
+fun penmanship_N : N;
+fun penn'orth_N : N;
+fun pennant_N : N;
+fun penniless_A : A;
+fun pennon_N : N;
+fun pennsylvania_PN : PN;
+fun penny_N : N;
+fun penny_PN : PN;
+fun pennyweight_N : N;
+fun pennyworth_N : N;
+fun penology_N : N;
+fun penrhyn_PN : PN;
+fun penrith_PN : PN;
+fun penryn_PN : PN;
+fun pension_N : N;
+fun pension_V2 : V2;
+fun pensionable_A : A;
+fun pensioner_N : N;
+fun pensive_A : A;
+fun pensively_Adv : Adv;
+fun pensiveness_N : N;
+fun penstock_N : N;
+fun pent_up_A : A;
+fun pentagon_N : N;
+fun pentagonal_A : A;
+fun pentameter_N : N;
+fun pentateuch_N : N;
+fun pentathlon_N : N;
+fun pentecost_N : N;
+fun pentecostal_A : A;
+fun penthouse_N : N;
+fun penultimate_A : A;
+fun penultimate_N : N;
+fun penumbra_N : N;
+fun penurious_A : A;
+fun penuriously_Adv : Adv;
+fun penuriousness_N : N;
+fun penury_N : N;
+fun penzance_PN : PN;
+fun peon_N : N;
+fun peonage_N : N;
+fun peony_N : N;
+fun people_N : N;
+fun people_V2 : V2;
+fun pep_N : N;
+fun pep_V2 : V2;
+fun pepper_N : N;
+fun pepper_V2 : V2;
+fun pepper_and_salt_N : N;
+fun pepper_mill_N : N;
+fun pepper_pot_N : N;
+fun peppercorn_N : N;
+fun peppermint_N : N;
+fun peppery_A : A;
+fun pepsin_N : N;
+fun peptic_A : A;
+fun peradventure_Adv : Adv;
+fun perambulate_V : V;
+fun perambulate_V2 : V2;
+fun perambulation_N : N;
+fun perambulator_N : N;
+fun perceivable_A : A;
+fun perceive_V2 : V2;
+fun perceiver_N : N;
+fun percent_N : N;
+fun percentage_N : N;
+fun perceptibility_N : N;
+fun perceptible_A : A;
+fun perceptibly_Adv : Adv;
+fun perception_N : N;
+fun perceptive_A : A;
+fun perceptively_Adv : Adv;
+fun perceptual_A : A;
+fun perceptually_Adv : Adv;
+fun perch_N : N;
+fun perch_V : V;
+fun perch_V2 : V2;
+fun perchance_Adv : Adv;
+fun percipient_A : A;
+fun percolate_V : V;
+fun percolate_V2 : V2;
+fun percolator_N : N;
+fun percussion_N : N;
+fun percussionist_N : N;
+fun percy_PN : PN;
+fun perdition_N : N;
+fun peregrination_N : N;
+fun peremptorily_Adv : Adv;
+fun peremptory_A : A;
+fun perennial_A : A;
+fun perennial_N : N;
+fun perennially_Adv : Adv;
+fun perfect_A : A;
+fun perfect_V2 : V2;
+fun perfectibility_N : N;
+fun perfectible_A : A;
+fun perfection_N : N;
+fun perfectionist_N : N;
+fun perfectly_Adv : Adv;
+fun perfervid_A : A;
+fun perfidious_A : A;
+fun perfidiously_Adv : Adv;
+fun perfidiousness_N : N;
+fun perfidy_N : N;
+fun perforate_V2 : V2;
+fun perforation_N : N;
+fun perforce_Adv : Adv;
+fun perform_V : V;
+fun perform_V2 : V2;
+fun performance_N : N;
+fun performer_N : N;
+fun perfume_N : N;
+fun perfume_V2 : V2;
+fun perfumer_N : N;
+fun perfunctorily_Adv : Adv;
+fun perfunctory_A : A;
+fun pergola_N : N;
+fun perhaps_Adv : Adv;
+fun peri_N : N;
+fun perigee_N : N;
+fun perihelion_N : N;
+fun peril_N : N;
+fun peril_V2 : V2;
+fun perilous_A : A;
+fun perilously_Adv : Adv;
+fun perimeter_N : N;
+fun period_N : N;
+fun periodic_A : A;
+fun periodical_A : A;
+fun periodical_N : N;
+fun periodically_Adv : Adv;
+fun peripatetic_A : A;
+fun peripheral_A : A;
+fun periphery_N : N;
+fun periphrasis_N : N;
+fun periphrastic_A : A;
+fun periscope_N : N;
+fun perish_V : V;
+fun perish_V2 : V2;
+fun perishable_A : A;
+fun perisher_N : N;
+fun peristyle_N : N;
+fun peritonitis_N : N;
+fun periwig_N : N;
+fun periwinkle_N : N;
+fun perjure_V2 : V2;
+fun perjurer_N : N;
+fun perjury_N : N;
+fun perk_N : N;
+fun perk_V : V;
+fun perk_V2 : V2;
+fun perkily_Adv : Adv;
+fun perkiness_N : N;
+fun perky_A : A;
+fun perm_N : N;
+fun perm_PN : PN;
+fun perm_V2 : V2;
+fun permafrost_N : N;
+fun permanence_N : N;
+fun permanency_N : N;
+fun permanent_A : A;
+fun permanently_Adv : Adv;
+fun permanganate_N : N;
+fun permeability_N : N;
+fun permeable_A : A;
+fun permeate_V : V;
+fun permeate_V2 : V2;
+fun permeation_N : N;
+fun permissible_A : A;
+fun permissibly_Adv : Adv;
+fun permission_N : N;
+fun permissive_A : A;
+fun permissiveness_N : N;
+fun permit_N : N;
+fun permit_V : V;
+fun permit_V2 : V2;
+fun permutation_N : N;
+fun permute_V2 : V2;
+fun pernicious_A : A;
+fun perniciously_Adv : Adv;
+fun perniciousness_N : N;
+fun pernickety_A : A;
+fun peroration_N : N;
+fun peroxide_N : N;
+fun perpendicular_A : A;
+fun perpendicular_N : N;
+fun perpendicularly_Adv : Adv;
+fun perpetrate_V2 : V2;
+fun perpetration_N : N;
+fun perpetrator_N : N;
+fun perpetual_A : A;
+fun perpetually_Adv : Adv;
+fun perpetuate_V2 : V2;
+fun perpetuation_N : N;
+fun perpetuity_N : N;
+fun perplex_V2 : V2;
+fun perplexed_A : A;
+fun perplexedly_Adv : Adv;
+fun perplexity_N : N;
+fun perquisite_N : N;
+fun perry_N : N;
+fun persecute_V2 : V2;
+fun persecution_N : N;
+fun persecutor_N : N;
+fun perseverance_N : N;
+fun persevere_V : V;
+fun persevering_A : A;
+fun perseveringly_Adv : Adv;
+fun pershore_PN : PN;
+fun persia_PN : PN;
+fun persian_A : A;
+fun persian_N : N;
+fun persiflage_N : N;
+fun persimmon_N : N;
+fun persist_V : V;
+fun persistence_N : N;
+fun persistent_A : A;
+fun persistently_Adv : Adv;
+fun person_N : N;
+fun persona_N : N;
+fun persona_grata_N : N;
+fun persona_non_grata_N : N;
+fun personable_A : A;
+fun personage_N : N;
+fun personal_A : A;
+fun personal_N : N;
+fun personality_N : N;
+fun personalize_V2 : V2;
+fun personally_Adv : Adv;
+fun personalty_N : N;
+fun personate_V2 : V2;
+fun personation_N : N;
+fun personification_N : N;
+fun personify_V2 : V2;
+fun perspective_N : N;
+fun perspex_N : N;
+fun perspicacious_A : A;
+fun perspicacity_N : N;
+fun perspicuity_N : N;
+fun perspicuous_A : A;
+fun perspicuously_Adv : Adv;
+fun perspicuousness_N : N;
+fun perspiration_N : N;
+fun perspire_V : V;
+fun persuadable_A : A;
+fun persuade_V2 : V2;
+fun persuasion_N : N;
+fun persuasive_A : A;
+fun persuasively_Adv : Adv;
+fun persuasiveness_N : N;
+fun pert_A : A;
+fun pertain_V : V;
+fun perth_PN : PN;
+fun pertinacious_A : A;
+fun pertinaciously_Adv : Adv;
+fun pertinacity_N : N;
+fun pertinence_N : N;
+fun pertinent_A : A;
+fun pertinently_Adv : Adv;
+fun pertly_Adv : Adv;
+fun pertness_N : N;
+fun perturb_V2 : V2;
+fun perturbation_N : N;
+fun peru_PN : PN;
+fun perugia_PN : PN;
+fun peruke_N : N;
+fun perusal_N : N;
+fun peruse_V2 : V2;
+fun peruvian_A : A;
+fun peruvian_N : N;
+fun pervade_V2 : V2;
+fun pervasion_N : N;
+fun pervasive_A : A;
+fun pervasively_Adv : Adv;
+fun pervasiveness_N : N;
+fun perverse_A : A;
+fun perversely_Adv : Adv;
+fun perverseness_N : N;
+fun perversion_N : N;
+fun perversity_N : N;
+fun pervert_N : N;
+fun pervert_V2 : V2;
+fun pescara_PN : PN;
+fun peseta_N : N;
+fun pesky_A : A;
+fun peso_N : N;
+fun pessary_N : N;
+fun pessimism_N : N;
+fun pessimist_N : N;
+fun pessimistic_A : A;
+fun pessimistically_Adv : Adv;
+fun pest_N : N;
+fun pester_V2 : V2;
+fun pesticide_N : N;
+fun pestiferous_A : A;
+fun pestilence_N : N;
+fun pestilent_A : A;
+fun pestilential_A : A;
+fun pestle_N : N;
+fun pestle_V2 : V2;
+fun pet_N : N;
+fun pet_V2 : V2;
+fun petal_N : N;
+fun petaled_A : A;
+fun petalled_A : A;
+fun petard_N : N;
+fun pete_PN : PN;
+fun peter_PN : PN;
+fun peter_V : V;
+fun peterborough_PN : PN;
+fun peterhead_PN : PN;
+fun peterlee_PN : PN;
+fun petersfield_PN : PN;
+fun petit_bourgeois_N : N;
+fun petite_A : A;
+fun petition_N : N;
+fun petition_V : V;
+fun petition_V2 : V2;
+fun petitioner_N : N;
+fun petrel_N : N;
+fun petrifaction_N : N;
+fun petrify_V : V;
+fun petrify_V2 : V2;
+fun petro_chemical_N : N;
+fun petrol_N : N;
+fun petroleum_N : N;
+fun petrology_N : N;
+fun petticoat_N : N;
+fun pettifogging_A : A;
+fun pettily_Adv : Adv;
+fun pettiness_N : N;
+fun pettish_A : A;
+fun pettishly_Adv : Adv;
+fun pettishness_N : N;
+fun petty_A : A;
+fun petulance_N : N;
+fun petulant_A : A;
+fun petulantly_Adv : Adv;
+fun petunia_N : N;
+fun pew_N : N;
+fun pew_opener_N : N;
+fun pewit_N : N;
+fun pewter_N : N;
+fun peyote_N : N;
+fun pfennig_N : N;
+fun phaeton_N : N;
+fun phagocyte_N : N;
+fun phalanx_N : N;
+fun phallic_A : A;
+fun phallus_N : N;
+fun phantasm_N : N;
+fun phantasmagoria_N : N;
+fun phantasmal_A : A;
+fun phantasy_N : N;
+fun phantom_N : N;
+fun pharaoh_N : N;
+fun pharisaic_A : A;
+fun pharisaical_A : A;
+fun pharisee_N : N;
+fun pharmaceutical_A : A;
+fun pharmacist_N : N;
+fun pharmacological_A : A;
+fun pharmacologically_Adv : Adv;
+fun pharmacologist_N : N;
+fun pharmacology_N : N;
+fun pharmacopoeia_N : N;
+fun pharmacy_N : N;
+fun pharos_N : N;
+fun pharyngitis_N : N;
+fun pharynx_N : N;
+fun phase_N : N;
+fun phase_V2 : V2;
+fun phd_N : N;
+fun pheasant_N : N;
+fun phenobarbitone_N : N;
+fun phenol_N : N;
+fun phenomenal_A : A;
+fun phenomenally_Adv : Adv;
+fun phenomenon_N : N;
+fun phial_N : N;
+fun phil_PN : PN;
+fun philadelphia_PN : PN;
+fun philander_V : V;
+fun philanderer_N : N;
+fun philanthropic_A : A;
+fun philanthropically_Adv : Adv;
+fun philanthropist_N : N;
+fun philanthropy_N : N;
+fun philatelic_A : A;
+fun philatelist_N : N;
+fun philately_N : N;
+fun philharmonic_A : A;
+fun philhellene_A : A;
+fun philhellene_N : N;
+fun philhellenic_A : A;
+fun philip_PN : PN;
+fun philippa_PN : PN;
+fun philippine_A : A;
+fun philippine_N : N;
+fun philippines_PN : PN;
+fun philistine_N : N;
+fun philistinism_N : N;
+fun philological_A : A;
+fun philologist_N : N;
+fun philology_N : N;
+fun philosopher_N : N;
+fun philosophic_A : A;
+fun philosophical_A : A;
+fun philosophically_Adv : Adv;
+fun philosophize_V : V;
+fun philosophy_N : N;
+fun philtre_N : N;
+fun phlebitis_N : N;
+fun phlegm_N : N;
+fun phlegmatic_A : A;
+fun phlegmatically_Adv : Adv;
+fun phlox_N : N;
+fun phnom_penh_PN : PN;
+fun phobia_N : N;
+fun phoebe_PN : PN;
+fun phoenix_N : N;
+fun phoenix_PN : PN;
+fun phone_N : N;
+fun phone_V : V;
+fun phone_V2 : V2;
+fun phone_in_N : N;
+fun phonebooth_N : N;
+fun phonecall_N : N;
+fun phoneme_N : N;
+fun phonemic_A : A;
+fun phonemics_N : N;
+fun phonetic_A : A;
+fun phonetically_Adv : Adv;
+fun phonetician_N : N;
+fun phonetics_N : N;
+fun phoney_A : A;
+fun phoney_N : N;
+fun phonic_A : A;
+fun phonics_N : N;
+fun phonograph_N : N;
+fun phonological_A : A;
+fun phonology_N : N;
+fun phony_A : A;
+fun phony_N : N;
+fun phosgene_N : N;
+fun phosphate_N : N;
+fun phosphorescence_N : N;
+fun phosphorescent_A : A;
+fun phosphoric_A : A;
+fun phosphorous_A : A;
+fun phosphorus_N : N;
+fun photo_N : N;
+fun photocopier_N : N;
+fun photocopy_N : N;
+fun photocopy_V2 : V2;
+fun photoelectric_A : A;
+fun photoflash_N : N;
+fun photogenic_A : A;
+fun photograph_N : N;
+fun photograph_V2 : V2;
+fun photographer_N : N;
+fun photographic_A : A;
+fun photographically_Adv : Adv;
+fun photography_N : N;
+fun photogravure_N : N;
+fun photolithography_N : N;
+fun photometer_N : N;
+fun photon_N : N;
+fun photosensitize_V2 : V2;
+fun photostat_N : N;
+fun photostat_V2 : V2;
+fun photosynthesis_N : N;
+fun phrasal_A : A;
+fun phrase_N : N;
+fun phrase_V2 : V2;
+fun phrase_book_N : N;
+fun phraseology_N : N;
+fun phrenetic_A : A;
+fun phrenologist_N : N;
+fun phrenology_N : N;
+fun phthisis_N : N;
+fun phut_Adv : Adv;
+fun phyllis_PN : PN;
+fun phylum_N : N;
+fun physic_N : N;
+fun physical_A : A;
+fun physically_Adv : Adv;
+fun physician_N : N;
+fun physicist_N : N;
+fun physics_N : N;
+fun physiognomy_N : N;
+fun physiological_A : A;
+fun physiologist_N : N;
+fun physiology_N : N;
+fun physiotherapist_N : N;
+fun physiotherapy_N : N;
+fun physique_N : N;
+fun pi_N : N;
+fun piacenza_PN : PN;
+fun pianissimo_A : A;
+fun pianissimo_Adv : Adv;
+fun pianist_N : N;
+fun piano_A : A;
+fun piano_Adv : Adv;
+fun piano_N : N;
+fun pianoforte_N : N;
+fun pianola_N : N;
+fun piastre_N : N;
+fun piazza_N : N;
+fun pibroch_N : N;
+fun pica_N : N;
+fun picador_N : N;
+fun picaresque_A : A;
+fun piccalilli_N : N;
+fun piccaninny_N : N;
+fun piccolo_N : N;
+fun pick_N : N;
+fun pick_V : V;
+fun pick_V2 : V2;
+fun pick_me_up_N : N;
+fun pick_up_N : N;
+fun pickaback_Adv : Adv;
+fun pickaxe_N : N;
+fun picker_N : N;
+fun pickerel_N : N;
+fun picket_N : N;
+fun picket_V : V;
+fun picket_V2 : V2;
+fun picking_N : N;
+fun pickle_N : N;
+fun pickle_V2 : V2;
+fun pickpocket_N : N;
+fun picnic_N : N;
+fun picnic_V : V;
+fun picnicker_N : N;
+fun picric_A : A;
+fun pictorial_A : A;
+fun pictorial_N : N;
+fun picture_N : N;
+fun picture_V2 : V2;
+fun picture_book_N : N;
+fun picture_card_N : N;
+fun picture_gallery_N : N;
+fun picturesque_A : A;
+fun picturesquely_Adv : Adv;
+fun picturesqueness_N : N;
+fun piddle_N : N;
+fun piddle_V : V;
+fun piddling_A : A;
+fun pidgin_N : N;
+fun pie_N : N;
+fun pie_crust_N : N;
+fun piebald_A : A;
+fun piece_N : N;
+fun piece_V2 : V2;
+fun piecemeal_A : A;
+fun piecemeal_Adv : Adv;
+fun piecework_N : N;
+fun pied_A : A;
+fun pied_a_terre_N : N;
+fun pier_N : N;
+fun pier_glass_N : N;
+fun pierce_V : V;
+fun pierce_V2 : V2;
+fun piercing_A : A;
+fun piercingly_Adv : Adv;
+fun pierrot_N : N;
+fun piety_N : N;
+fun pieta_N : N;
+fun piffle_N : N;
+fun piffle_V : V;
+fun piffling_A : A;
+fun pig_N : N;
+fun pig_V : V;
+fun pig_headed_A : A;
+fun pig_headedly_Adv : Adv;
+fun pig_headedness_N : N;
+fun pig_iron_N : N;
+fun pig_sticking_N : N;
+fun pigboat_N : N;
+fun pigeon_N : N;
+fun pigeon_breasted_A : A;
+fun pigeon_toed_A : A;
+fun pigeonhole_N : N;
+fun pigeonhole_V2 : V2;
+fun piggery_N : N;
+fun piggish_A : A;
+fun piggishly_Adv : Adv;
+fun piggishness_N : N;
+fun piggy_A : A;
+fun piggy_N : N;
+fun piggyback_N : N;
+fun piglet_N : N;
+fun pigment_N : N;
+fun pigmentation_N : N;
+fun pigmy_N : N;
+fun pigskin_N : N;
+fun pigsty_N : N;
+fun pigswill_N : N;
+fun pigtail_N : N;
+fun pigwash_N : N;
+fun pike_N : N;
+fun pikestaff_N : N;
+fun pilaf_N : N;
+fun pilaff_N : N;
+fun pilaster_N : N;
+fun pilau_N : N;
+fun pilchard_N : N;
+fun pile_N : N;
+fun pile_V : V;
+fun pile_V2 : V2;
+fun pile_driver_N : N;
+fun pile_dwelling_N : N;
+fun pile_up_N : N;
+fun piles_N : N;
+fun pilfer_V : V;
+fun pilfer_V2 : V2;
+fun pilferage_N : N;
+fun pilferer_N : N;
+fun pilgrim_N : N;
+fun pilgrimage_N : N;
+fun pill_N : N;
+fun pill_PN : PN;
+fun pillage_N : N;
+fun pillage_V2 : V2;
+fun pillager_N : N;
+fun pillar_N : N;
+fun pillar_box_N : N;
+fun pillared_A : A;
+fun pillbox_N : N;
+fun pillion_N : N;
+fun pillory_N : N;
+fun pillow_N : N;
+fun pillow_V2 : V2;
+fun pillow_fight_N : N;
+fun pillowcase_N : N;
+fun pillowslip_N : N;
+fun pilot_N : N;
+fun pilot_V2 : V2;
+fun pilot_boat_N : N;
+fun pilot_burner_N : N;
+fun pilot_cloth_N : N;
+fun pilot_engine_N : N;
+fun pilot_fish_N : N;
+fun pilot_light_N : N;
+fun pimento_N : N;
+fun pimp_N : N;
+fun pimp_V : V;
+fun pimpernel_N : N;
+fun pimple_N : N;
+fun pimpled_A : A;
+fun pimply_A : A;
+fun pin_N : N;
+fun pin_V2 : V2;
+fun pin_money_N : N;
+fun pin_table_N : N;
+fun pin_up_N : N;
+fun pinafore_N : N;
+fun pinball_N : N;
+fun pince_nez_N : N;
+fun pincer_N : N;
+fun pinch_N : N;
+fun pinch_V : V;
+fun pinch_V2 : V2;
+fun pinchbeck_A : A;
+fun pinchbeck_N : N;
+fun pincushion_N : N;
+fun pine_N : N;
+fun pine_V : V;
+fun pineal_A : A;
+fun pineapple_N : N;
+fun ping_N : N;
+fun ping_V : V;
+fun pingpong_N : N;
+fun pinhead_N : N;
+fun pinion_N : N;
+fun pinion_V2 : V2;
+fun pink_A : A;
+fun pink_N : N;
+fun pink_V : V;
+fun pink_V2 : V2;
+fun pinkish_A : A;
+fun pinnace_N : N;
+fun pinnacle_N : N;
+fun pinnacle_V2 : V2;
+fun pinnate_A : A;
+fun pinny_N : N;
+fun pinpoint_N : N;
+fun pinpoint_V2 : V2;
+fun pinprick_N : N;
+fun pinstripe_A : A;
+fun pint_N : N;
+fun pioneer_N : N;
+fun pioneer_V : V;
+fun pioneer_V2 : V2;
+fun pious_A : A;
+fun piously_Adv : Adv;
+fun pip_N : N;
+fun pip_V2 : V2;
+fun pipal_N : N;
+fun pipe_N : N;
+fun pipe_V : V;
+fun pipe_V2 : V2;
+fun pipe_organ_N : N;
+fun pipe_rack_N : N;
+fun pipeclay_N : N;
+fun pipedream_N : N;
+fun pipeful_N : N;
+fun pipeline_N : N;
+fun piper_N : N;
+fun pipette_N : N;
+fun pipework_N : N;
+fun piping_A : A;
+fun piping_Adv : Adv;
+fun piping_N : N;
+fun pippin_N : N;
+fun pipsqueak_N : N;
+fun piquancy_N : N;
+fun piquant_A : A;
+fun piquantly_Adv : Adv;
+fun pique_N : N;
+fun pique_V2 : V2;
+fun piquet_N : N;
+fun piracy_N : N;
+fun piraeus_PN : PN;
+fun piranha_N : N;
+fun pirate_N : N;
+fun pirate_V2 : V2;
+fun piratical_A : A;
+fun piratically_Adv : Adv;
+fun pirouette_N : N;
+fun pirouette_V : V;
+fun pis_aller_N : N;
+fun pisa_PN : PN;
+fun piscatorial_A : A;
+fun pisces_PN : PN;
+fun piss_N : N;
+fun piss_V : V;
+fun piss_V2 : V2;
+fun pissed_A : A;
+fun pistachio_N : N;
+fun pistil_N : N;
+fun pistol_N : N;
+fun piston_N : N;
+fun pit_N : N;
+fun pit_V2 : V2;
+fun pit_a_pat_Adv : Adv;
+fun pit_prop_N : N;
+fun pitch_N : N;
+fun pitch_V : V;
+fun pitch_V2 : V2;
+fun pitch_black_A : A;
+fun pitch_dark_A : A;
+fun pitchblende_N : N;
+fun pitcher_N : N;
+fun pitchfork_N : N;
+fun pitchfork_V2 : V2;
+fun piteous_A : A;
+fun piteously_Adv : Adv;
+fun pitfall_N : N;
+fun pith_N : N;
+fun pithead_N : N;
+fun pithily_Adv : Adv;
+fun pithy_A : A;
+fun pitiable_A : A;
+fun pitiably_Adv : Adv;
+fun pitiful_A : A;
+fun pitifully_Adv : Adv;
+fun pitiless_A : A;
+fun pitilessly_Adv : Adv;
+fun pitman_N : N;
+fun piton_N : N;
+fun pitsaw_N : N;
+fun pittance_N : N;
+fun pitter_patter_N : N;
+fun pittsburgh_PN : PN;
+fun pituitary_A : A;
+fun pituitary_N : N;
+fun pity_N : N;
+fun pity_V2 : V2;
+fun pitying_A : A;
+fun pityingly_Adv : Adv;
+fun pivot_N : N;
+fun pivot_V : V;
+fun pivot_V2 : V2;
+fun pivotal_A : A;
+fun pixie_N : N;
+fun pixilated_A : A;
+fun pixy_N : N;
+fun pizza_N : N;
+fun pizzicato_A : A;
+fun pizzicato_Adv : Adv;
+fun placard_N : N;
+fun placard_V2 : V2;
+fun placate_V2 : V2;
+fun placatingly_Adv : Adv;
+fun place_N : N;
+fun place_V2 : V2;
+fun place_bet_N : N;
+fun place_name_N : N;
+fun placebo_N : N;
+fun placeman_N : N;
+fun placement_N : N;
+fun placenta_N : N;
+fun placeseeker_N : N;
+fun placid_A : A;
+fun placidity_N : N;
+fun placidly_Adv : Adv;
+fun placing_N : N;
+fun placket_N : N;
+fun plage_N : N;
+fun plagiarism_N : N;
+fun plagiarist_N : N;
+fun plagiarize_V2 : V2;
+fun plague_N : N;
+fun plague_V2 : V2;
+fun plague_spot_N : N;
+fun plaguily_Adv : Adv;
+fun plaguy_A : A;
+fun plaice_N : N;
+fun plaid_N : N;
+fun plain_A : A;
+fun plain_Adv : Adv;
+fun plain_N : N;
+fun plain_V : V;
+fun plain_V2 : V2;
+fun plain_spoken_A : A;
+fun plainly_Adv : Adv;
+fun plainness_N : N;
+fun plainsman_N : N;
+fun plaint_N : N;
+fun plaintiff_N : N;
+fun plaintive_A : A;
+fun plaintively_Adv : Adv;
+fun plaintiveness_N : N;
+fun plait_N : N;
+fun plait_V2 : V2;
+fun plan_N : N;
+fun plan_V2 : V2;
+fun planchette_N : N;
+fun plane_N : N;
+fun plane_V : V;
+fun plane_V2 : V2;
+fun plane_tree_N : N;
+fun planet_N : N;
+fun planetarium_N : N;
+fun planetary_A : A;
+fun plangent_A : A;
+fun plank_N : N;
+fun plank_V2 : V2;
+fun plank_bed_N : N;
+fun planking_N : N;
+fun plankton_N : N;
+fun planless_A : A;
+fun planner_N : N;
+fun plant_N : N;
+fun plant_V2 : V2;
+fun plant_louse_N : N;
+fun plantain_N : N;
+fun plantation_N : N;
+fun planter_N : N;
+fun plaque_N : N;
+fun plash_N : N;
+fun plash_V : V;
+fun plash_V2 : V2;
+fun plasm_N : N;
+fun plasma_N : N;
+fun plaster_N : N;
+fun plaster_V2 : V2;
+fun plasterboard_N : N;
+fun plastered_A : A;
+fun plasterer_N : N;
+fun plastic_A : A;
+fun plastic_N : N;
+fun plastic_bomb_N : N;
+fun plasticine_N : N;
+fun plasticity_N : N;
+fun plastics_N : N;
+fun plate_N : N;
+fun plate_V2 : V2;
+fun plate_glass_N : N;
+fun plate_powder_N : N;
+fun plate_rack_N : N;
+fun plateau_N : N;
+fun plateful_N : N;
+fun platelayer_N : N;
+fun platform_N : N;
+fun plating_N : N;
+fun platinum_N : N;
+fun platitude_N : N;
+fun platitudinous_A : A;
+fun platonic_A : A;
+fun platoon_N : N;
+fun platter_N : N;
+fun platypus_N : N;
+fun plaudit_N : N;
+fun plausibility_N : N;
+fun plausible_A : A;
+fun plausibly_Adv : Adv;
+fun play_N : N;
+fun play_V : V;
+fun play_V2 : V2;
+fun play_acting_N : N;
+fun play_actor_N : N;
+fun play_box_N : N;
+fun play_off_N : N;
+fun play_reading_N : N;
+fun playback_N : N;
+fun playbill_N : N;
+fun playboy_N : N;
+fun player_N : N;
+fun player_piano_N : N;
+fun playfellow_N : N;
+fun playful_A : A;
+fun playfully_Adv : Adv;
+fun playfulness_N : N;
+fun playgoer_N : N;
+fun playground_N : N;
+fun playgroup_N : N;
+fun playhouse_N : N;
+fun playing_N : N;
+fun playing_card_N : N;
+fun playing_field_N : N;
+fun playlet_N : N;
+fun playmate_N : N;
+fun playpen_N : N;
+fun playroom_N : N;
+fun playschool_N : N;
+fun playsuit_N : N;
+fun plaything_N : N;
+fun playtime_N : N;
+fun playwright_N : N;
+fun plaza_N : N;
+fun plc_PN : PN;
+fun plea_N : N;
+fun pleach_V2 : V2;
+fun plead_V : V;
+fun plead_V2 : V2;
+fun pleadingly_Adv : Adv;
+fun pleasance_N : N;
+fun pleasant_A : A;
+fun pleasantly_Adv : Adv;
+fun pleasantness_N : N;
+fun pleasantry_N : N;
+fun please_V : V;
+fun please_V2 : V2;
+fun pleased_A : A;
+fun pleasing_A : A;
+fun pleasingly_Adv : Adv;
+fun pleasurable_A : A;
+fun pleasurably_Adv : Adv;
+fun pleasure_N : N;
+fun pleasure_boat_N : N;
+fun pleasure_craft_N : N;
+fun pleasure_ground_N : N;
+fun pleat_N : N;
+fun pleat_V2 : V2;
+fun pleb_N : N;
+fun plebeian_A : A;
+fun plebeian_N : N;
+fun plebiscite_N : N;
+fun plectrum_N : N;
+fun pledge_N : N;
+fun pledge_V2 : V2;
+fun plenarily_Adv : Adv;
+fun plenary_A : A;
+fun plenipotentiary_N : N;
+fun plenitude_N : N;
+fun plenteous_A : A;
+fun plenteously_Adv : Adv;
+fun plentiful_A : A;
+fun plentifully_Adv : Adv;
+fun plenty_Adv : Adv;
+fun plenty_N : N;
+fun pleonasm_N : N;
+fun plethora_N : N;
+fun pleurisy_N : N;
+fun plexus_N : N;
+fun pliability_N : N;
+fun pliable_A : A;
+fun pliancy_N : N;
+fun pliant_A : A;
+fun pliantly_Adv : Adv;
+fun plight_N : N;
+fun plight_V2 : V2;
+fun plimsoll_N : N;
+fun plinth_N : N;
+fun plod_V : V;
+fun plod_V2 : V2;
+fun plodder_N : N;
+fun plodding_A : A;
+fun ploddingly_Adv : Adv;
+fun plonk_Adv : Adv;
+fun plonk_N : N;
+fun plonk_V : V;
+fun plop_Adv : Adv;
+fun plop_N : N;
+fun plop_V : V;
+fun plosive_A : A;
+fun plosive_N : N;
+fun plot_N : N;
+fun plot_V : V;
+fun plot_V2 : V2;
+fun plotter_N : N;
+fun plough_N : N;
+fun plough_V : V;
+fun plough_V2 : V2;
+fun ploughboy_N : N;
+fun ploughman_N : N;
+fun ploughshare_N : N;
+fun plover_N : N;
+fun ploy_N : N;
+fun pluck_N : N;
+fun pluck_V : V;
+fun pluck_V2 : V2;
+fun pluckily_Adv : Adv;
+fun plucky_A : A;
+fun plug_N : N;
+fun plug_V : V;
+fun plug_V2 : V2;
+fun plughole_N : N;
+fun plum_N : N;
+fun plum_pudding_N : N;
+fun plumage_N : N;
+fun plumb_Adv : Adv;
+fun plumb_N : N;
+fun plumb_V2 : V2;
+fun plumbago_N : N;
+fun plumber_N : N;
+fun plumbing_N : N;
+fun plume_N : N;
+fun plume_V2 : V2;
+fun plummet_N : N;
+fun plummet_V : V;
+fun plummy_A : A;
+fun plump_A : A;
+fun plump_Adv : Adv;
+fun plump_N : N;
+fun plump_V : V;
+fun plump_V2 : V2;
+fun plunder_N : N;
+fun plunder_V : V;
+fun plunder_V2 : V2;
+fun plunderer_N : N;
+fun plunge_N : N;
+fun plunge_V : V;
+fun plunge_V2 : V2;
+fun plunger_N : N;
+fun plunk_N : N;
+fun pluperfect_A : A;
+fun pluperfect_N : N;
+fun plural_A : A;
+fun plural_N : N;
+fun pluralism_N : N;
+fun pluralist_N : N;
+fun plurality_N : N;
+fun plus_A : A;
+fun plus_N : N;
+fun plush_A : A;
+fun plush_N : N;
+fun plushy_A : A;
+fun pluto_PN : PN;
+fun plutocracy_N : N;
+fun plutocrat_N : N;
+fun plutocratic_A : A;
+fun plutonium_N : N;
+fun ply_N : N;
+fun ply_V : V;
+fun ply_V2 : V2;
+fun plymouth_PN : PN;
+fun plywood_N : N;
+fun pneumatic_A : A;
+fun pneumatically_Adv : Adv;
+fun pneumonia_N : N;
+fun po_N : N;
+fun poach_V : V;
+fun poach_V2 : V2;
+fun poacher_N : N;
+fun pock_N : N;
+fun pocked_A : A;
+fun pocket_N : N;
+fun pocket_V2 : V2;
+fun pocket_book_N : N;
+fun pocket_handkerchief_N : N;
+fun pocket_knife_N : N;
+fun pocket_money_N : N;
+fun pocketful_N : N;
+fun pockmarked_A : A;
+fun pod_N : N;
+fun pod_V : V;
+fun pod_V2 : V2;
+fun podgy_A : A;
+fun podiatry_N : N;
+fun podium_N : N;
+fun poem_N : N;
+fun poesy_N : N;
+fun poet_N : N;
+fun poetess_N : N;
+fun poetic_A : A;
+fun poetical_A : A;
+fun poetically_Adv : Adv;
+fun poetry_N : N;
+fun pogrom_N : N;
+fun poignancy_N : N;
+fun poignant_A : A;
+fun poignantly_Adv : Adv;
+fun poinsettia_N : N;
+fun point_N : N;
+fun point_V : V;
+fun point_V2 : V2;
+fun point_blank_A : A;
+fun point_blank_Adv : Adv;
+fun point_duty_N : N;
+fun pointed_A : A;
+fun pointedly_Adv : Adv;
+fun pointer_N : N;
+fun pointless_A : A;
+fun pointlessly_Adv : Adv;
+fun pointsman_N : N;
+fun poise_N : N;
+fun poise_V : V;
+fun poise_V2 : V2;
+fun poison_N : N;
+fun poison_V2 : V2;
+fun poison_gas_N : N;
+fun poison_ivy_N : N;
+fun poisoner_N : N;
+fun poisonous_A : A;
+fun poisonously_Adv : Adv;
+fun poke_N : N;
+fun poke_V : V;
+fun poke_V2 : V2;
+fun poke_bonnet_N : N;
+fun poker_N : N;
+fun poker_face_N : N;
+fun poky_A : A;
+fun poland_PN : PN;
+fun polar_A : A;
+fun polaris_N : N;
+fun polarity_N : N;
+fun polarization_N : N;
+fun polarize_V2 : V2;
+fun polaroid_N : N;
+fun pole_N : N;
+fun pole_jumping_N : N;
+fun pole_star_N : N;
+fun pole_vault_N : N;
+fun poleax_N : N;
+fun poleax_V2 : V2;
+fun poleaxe_N : N;
+fun poleaxe_V2 : V2;
+fun polecat_N : N;
+fun polemic_A : A;
+fun polemic_N : N;
+fun polemically_Adv : Adv;
+fun police_V2 : V2;
+fun police_office_N : N;
+fun police_officer_N : N;
+fun police_station_N : N;
+fun policeman_N : N;
+fun policewoman_N : N;
+fun policy_N : N;
+fun polio_N : N;
+fun poliomyelitis_N : N;
+fun polish_A : A;
+fun polish_N : N;
+fun polish_V : V;
+fun polish_V2 : V2;
+fun polisher_N : N;
+fun politburo_N : N;
+fun polite_A : A;
+fun politely_Adv : Adv;
+fun politeness_N : N;
+fun politic_A : A;
+fun political_A : A;
+fun politically_Adv : Adv;
+fun politician_N : N;
+fun politicize_V : V;
+fun politicize_V2 : V2;
+fun politick_V : V;
+fun politics_N : N;
+fun polity_N : N;
+fun polka_N : N;
+fun poll_N : N;
+fun poll_V : V;
+fun poll_V2 : V2;
+fun poll_tax_N : N;
+fun pollard_N : N;
+fun pollard_V2 : V2;
+fun pollen_N : N;
+fun pollinate_V2 : V2;
+fun pollination_N : N;
+fun polling_booth_N : N;
+fun polling_day_N : N;
+fun polling_station_N : N;
+fun pollster_N : N;
+fun pollutant_N : N;
+fun pollute_V2 : V2;
+fun pollution_N : N;
+fun polly_PN : PN;
+fun polo_N : N;
+fun polo_neck_A : A;
+fun polonaise_N : N;
+fun polony_N : N;
+fun poltergeist_N : N;
+fun poltroon_N : N;
+fun poltroonery_N : N;
+fun poly_N : N;
+fun polyandrous_A : A;
+fun polyandry_N : N;
+fun polyanthus_N : N;
+fun polygamist_N : N;
+fun polygamous_A : A;
+fun polygamy_N : N;
+fun polyglot_A : A;
+fun polyglot_N : N;
+fun polygon_N : N;
+fun polygonal_A : A;
+fun polymorphic_A : A;
+fun polymorphous_A : A;
+fun polynomial_A : A;
+fun polynomial_N : N;
+fun polyp_N : N;
+fun polyphonic_A : A;
+fun polyphony_N : N;
+fun polypus_N : N;
+fun polysyllabic_A : A;
+fun polysyllable_N : N;
+fun polytechnic_N : N;
+fun polytheism_N : N;
+fun polytheistic_A : A;
+fun polythene_N : N;
+fun pom_N : N;
+fun pomade_N : N;
+fun pomade_V2 : V2;
+fun pomegranate_N : N;
+fun pomelo_N : N;
+fun pommel_N : N;
+fun pommel_V2 : V2;
+fun pommy_N : N;
+fun pomp_N : N;
+fun pompon_N : N;
+fun pomposity_N : N;
+fun pompous_A : A;
+fun pompously_Adv : Adv;
+fun ponce_N : N;
+fun poncho_N : N;
+fun pond_N : N;
+fun ponder_V : V;
+fun ponder_V2 : V2;
+fun ponderable_A : A;
+fun ponderous_A : A;
+fun ponderously_Adv : Adv;
+fun pone_N : N;
+fun pongee_N : N;
+fun poniard_N : N;
+fun poniard_V2 : V2;
+fun pont_llan_fraith_PN : PN;
+fun pontardawe_PN : PN;
+fun pontardulais_PN : PN;
+fun pontefract_PN : PN;
+fun pontiff_N : N;
+fun pontifical_A : A;
+fun pontificate_N : N;
+fun pontificate_V : V;
+fun pontoon_N : N;
+fun pontycymmer_PN : PN;
+fun pontypool_PN : PN;
+fun pony_N : N;
+fun pony_trekking_N : N;
+fun ponytail_N : N;
+fun poodle_N : N;
+fun poof_N : N;
+fun pooh_pooh_V2 : V2;
+fun pool_N : N;
+fun pool_V2 : V2;
+fun poole_PN : PN;
+fun poolroom_N : N;
+fun poona_PN : PN;
+fun poop_N : N;
+fun poor_A : A;
+fun poor_box_N : N;
+fun poor_rate_N : N;
+fun poor_spirited_A : A;
+fun poorhouse_N : N;
+fun poorly_A : A;
+fun poorly_Adv : Adv;
+fun poorness_N : N;
+fun pop_A : A;
+fun pop_Adv : Adv;
+fun pop_N : N;
+fun pop_V : V;
+fun pop_V2 : V2;
+fun popcorn_N : N;
+fun pope_N : N;
+fun popery_N : N;
+fun popeyed_A : A;
+fun popgun_N : N;
+fun popinjay_N : N;
+fun popish_A : A;
+fun popishly_Adv : Adv;
+fun poplar_N : N;
+fun poplin_N : N;
+fun poppa_N : N;
+fun poppet_N : N;
+fun poppy_N : N;
+fun poppycock_N : N;
+fun populace_N : N;
+fun popular_A : A;
+fun popularity_N : N;
+fun popularization_N : N;
+fun popularize_V2 : V2;
+fun popularly_Adv : Adv;
+fun populate_V2 : V2;
+fun population_N : N;
+fun populism_N : N;
+fun populist_N : N;
+fun populous_A : A;
+fun porcelain_N : N;
+fun porch_N : N;
+fun porcine_A : A;
+fun porcupine_N : N;
+fun pore_N : N;
+fun pore_V : V;
+fun pork_N : N;
+fun pork_barrel_N : N;
+fun pork_butcher_N : N;
+fun porker_N : N;
+fun porn_N : N;
+fun pornographer_N : N;
+fun pornographic_A : A;
+fun pornography_N : N;
+fun porosity_N : N;
+fun porous_A : A;
+fun porousness_N : N;
+fun porphyry_N : N;
+fun porpoise_N : N;
+fun porridge_N : N;
+fun porringer_N : N;
+fun port_N : N;
+fun port_V2 : V2;
+fun port_glasgow_PN : PN;
+fun port_talbot_PN : PN;
+fun portability_N : N;
+fun portable_A : A;
+fun portage_N : N;
+fun portal_N : N;
+fun portcullis_N : N;
+fun porte_cochere_N : N;
+fun portend_V2 : V2;
+fun portent_N : N;
+fun portentous_A : A;
+fun portentously_Adv : Adv;
+fun porter_N : N;
+fun porterage_N : N;
+fun porterhouse_N : N;
+fun portfolio_N : N;
+fun porthcawl_PN : PN;
+fun porthmadog_PN : PN;
+fun porthole_N : N;
+fun portico_N : N;
+fun portion_N : N;
+fun portion_V2 : V2;
+fun portishead_PN : PN;
+fun portiere_N : N;
+fun portland_PN : PN;
+fun portly_A : A;
+fun portmanteau_N : N;
+fun porto_alegre_PN : PN;
+fun portrait_N : N;
+fun portraitist_N : N;
+fun portraiture_N : N;
+fun portray_V2 : V2;
+fun portrayal_N : N;
+fun portsmouth_PN : PN;
+fun portugal_PN : PN;
+fun portuguese_A : A;
+fun portuguese_N : N;
+fun pose_N : N;
+fun pose_V : V;
+fun pose_V2 : V2;
+fun poser_N : N;
+fun poseur_N : N;
+fun poseuse_N : N;
+fun posh_A : A;
+fun posh_V2 : V2;
+fun posit_V2 : V2;
+fun position_N : N;
+fun position_V2 : V2;
+fun positive_A : A;
+fun positive_N : N;
+fun positively_Adv : Adv;
+fun positiveness_N : N;
+fun positivism_N : N;
+fun positivist_N : N;
+fun posse_N : N;
+fun possess_V2 : V2;
+fun possession_N : N;
+fun possessive_A : A;
+fun possessively_Adv : Adv;
+fun possessiveness_N : N;
+fun possessor_N : N;
+fun posset_N : N;
+fun possibility_N : N;
+fun possible_A : A;
+fun possible_N : N;
+fun possibly_Adv : Adv;
+fun possum_N : N;
+fun post_N : N;
+fun post_V : V;
+fun post_V2 : V2;
+fun post_chaise_N : N;
+fun post_free_A : A;
+fun post_free_Adv : Adv;
+fun post_haste_Adv : Adv;
+fun post_horse_N : N;
+fun post_meridiem_Adv : Adv;
+fun post_mortem_A : A;
+fun post_mortem_N : N;
+fun post_paid_A : A;
+fun post_paid_Adv : Adv;
+fun postage_N : N;
+fun postage_stamp_N : N;
+fun postal_A : A;
+fun postbag_N : N;
+fun postbox_N : N;
+fun postcard_N : N;
+fun postcode_N : N;
+fun postdate_V2 : V2;
+fun poste_restante_N : N;
+fun poster_N : N;
+fun posterior_A : A;
+fun posterior_N : N;
+fun posterity_N : N;
+fun postern_N : N;
+fun postgraduate_A : A;
+fun postgraduate_N : N;
+fun posthumous_A : A;
+fun posthumously_Adv : Adv;
+fun postilion_N : N;
+fun postillion_N : N;
+fun postman_N : N;
+fun postmark_N : N;
+fun postmark_V2 : V2;
+fun postmaster_N : N;
+fun postmistress_N : N;
+fun postpone_V2 : V2;
+fun postponement_N : N;
+fun postprandial_A : A;
+fun postscript_N : N;
+fun postulant_N : N;
+fun postulate_N : N;
+fun postulate_V2 : V2;
+fun postural_A : A;
+fun posture_N : N;
+fun posture_V : V;
+fun posture_V2 : V2;
+fun posturing_N : N;
+fun posy_N : N;
+fun pot_N : N;
+fun pot_V : V;
+fun pot_V2 : V2;
+fun pot_shot_N : N;
+fun pot_trained_A : A;
+fun potable_A : A;
+fun potash_N : N;
+fun potassium_N : N;
+fun potation_N : N;
+fun potato_N : N;
+fun potbellied_A : A;
+fun potbelly_N : N;
+fun potboiler_N : N;
+fun potbound_A : A;
+fun potboy_N : N;
+fun poteen_N : N;
+fun potency_N : N;
+fun potent_A : A;
+fun potentate_N : N;
+fun potential_A : A;
+fun potential_N : N;
+fun potentiality_N : N;
+fun potentially_Adv : Adv;
+fun potently_Adv : Adv;
+fun pothead_N : N;
+fun pother_N : N;
+fun potherb_N : N;
+fun pothole_N : N;
+fun potholer_N : N;
+fun pothook_N : N;
+fun pothouse_N : N;
+fun pothunter_N : N;
+fun potion_N : N;
+fun potman_N : N;
+fun potpourri_N : N;
+fun potsdam_PN : PN;
+fun potsherd_N : N;
+fun pottage_N : N;
+fun potted_A : A;
+fun potter_N : N;
+fun potter_V : V;
+fun potterer_N : N;
+fun potters_bar_PN : PN;
+fun pottery_N : N;
+fun potty_A : A;
+fun potty_N : N;
+fun pouch_N : N;
+fun pouch_V2 : V2;
+fun pouf_N : N;
+fun pouffe_N : N;
+fun poulterer_N : N;
+fun poultice_N : N;
+fun poultice_V2 : V2;
+fun pounce_N : N;
+fun pounce_V : V;
+fun pound_N : N;
+fun pound_V : V;
+fun pound_V2 : V2;
+fun poundage_N : N;
+fun pounder_N : N;
+fun pour_V : V;
+fun pour_V2 : V2;
+fun pout_N : N;
+fun pout_V : V;
+fun pout_V2 : V2;
+fun poutingly_Adv : Adv;
+fun poverty_N : N;
+fun poverty_stricken_A : A;
+fun pow_N : N;
+fun powder_N : N;
+fun powder_V : V;
+fun powder_V2 : V2;
+fun powder_flask_N : N;
+fun powder_horn_N : N;
+fun powder_magazine_N : N;
+fun powder_puff_N : N;
+fun powder_room_N : N;
+fun powdered_A : A;
+fun powdery_A : A;
+fun power_N : N;
+fun power_V2 : V2;
+fun power_dive_N : N;
+fun power_dive_V2 : V2;
+fun power_point_N : N;
+fun power_station_N : N;
+fun powerboat_N : N;
+fun powered_A : A;
+fun powerful_A : A;
+fun powerfully_Adv : Adv;
+fun powerhouse_N : N;
+fun powerless_A : A;
+fun powerlessly_Adv : Adv;
+fun powwow_N : N;
+fun powwow_V : V;
+fun powys_PN : PN;
+fun pox_N : N;
+fun poynton_PN : PN;
+fun poznan_PN : PN;
+fun pp_N : N;
+fun pr_N : N;
+fun practicability_N : N;
+fun practicable_A : A;
+fun practicably_Adv : Adv;
+fun practical_A : A;
+fun practicality_N : N;
+fun practically_Adv : Adv;
+fun practice_N : N;
+fun practician_N : N;
+fun practise_V : V;
+fun practise_V2 : V2;
+fun practised_A : A;
+fun practitioner_N : N;
+fun praesidium_N : N;
+fun praetor_N : N;
+fun praetorian_A : A;
+fun pragmatic_A : A;
+fun pragmatically_Adv : Adv;
+fun pragmatism_N : N;
+fun pragmatist_N : N;
+fun prague_PN : PN;
+fun prairie_N : N;
+fun praise_N : N;
+fun praise_V2 : V2;
+fun praiseworthily_Adv : Adv;
+fun praiseworthiness_N : N;
+fun praiseworthy_A : A;
+fun pram_N : N;
+fun prance_N : N;
+fun prance_V : V;
+fun prank_N : N;
+fun prate_V : V;
+fun prato_PN : PN;
+fun prattle_N : N;
+fun prattle_V : V;
+fun prattler_N : N;
+fun prawn_N : N;
+fun prawn_V : V;
+fun pray_V : V;
+fun pray_V2 : V2;
+fun prayer_N : N;
+fun prayer_book_N : N;
+fun prayer_mat_N : N;
+fun prayer_meeting_N : N;
+fun prayer_rug_N : N;
+fun prayer_wheel_N : N;
+fun pre_eminence_N : N;
+fun pre_eminent_A : A;
+fun pre_eminently_Adv : Adv;
+fun pre_empt_V2 : V2;
+fun pre_emption_N : N;
+fun pre_emptive_A : A;
+fun pre_exist_V : V;
+fun pre_existence_N : N;
+fun pre_existent_A : A;
+fun pre_packaged_A : A;
+fun pre_raphaelite_A : A;
+fun pre_raphaelite_N : N;
+fun preach_V : V;
+fun preach_V2 : V2;
+fun preacher_N : N;
+fun preachify_V : V;
+fun preamble_N : N;
+fun prearrange_V2 : V2;
+fun prearrangement_N : N;
+fun prebend_N : N;
+fun prebendary_N : N;
+fun precarious_A : A;
+fun precariously_Adv : Adv;
+fun precariousness_N : N;
+fun precast_A : A;
+fun precaution_N : N;
+fun precautionary_A : A;
+fun precede_V : V;
+fun precede_V2 : V2;
+fun precedence_N : N;
+fun precedent_N : N;
+fun precedented_A : A;
+fun preceding_A : A;
+fun precentor_N : N;
+fun precept_N : N;
+fun preceptor_N : N;
+fun precession_N : N;
+fun precinct_N : N;
+fun preciosity_N : N;
+fun precious_A : A;
+fun precious_Adv : Adv;
+fun preciously_Adv : Adv;
+fun preciousness_N : N;
+fun precipice_N : N;
+fun precipitate_A : A;
+fun precipitate_N : N;
+fun precipitate_V2 : V2;
+fun precipitately_Adv : Adv;
+fun precipitation_N : N;
+fun precipitous_A : A;
+fun precipitously_Adv : Adv;
+fun precise_A : A;
+fun precisely_Adv : Adv;
+fun preciseness_N : N;
+fun precision_N : N;
+fun preclude_V2 : V2;
+fun preclusion_N : N;
+fun precocious_A : A;
+fun precociously_Adv : Adv;
+fun precociousness_N : N;
+fun precocity_N : N;
+fun precognition_N : N;
+fun preconceive_V2 : V2;
+fun preconception_N : N;
+fun preconcerted_A : A;
+fun precondition_N : N;
+fun preconditioned_A : A;
+fun precursor_N : N;
+fun precursory_A : A;
+fun predator_N : N;
+fun predatory_A : A;
+fun predecease_V2 : V2;
+fun predecessor_N : N;
+fun predestinate_A : A;
+fun predestinate_V2 : V2;
+fun predestination_N : N;
+fun predestine_V2 : V2;
+fun predetermination_N : N;
+fun predetermine_V2 : V2;
+fun predicament_N : N;
+fun predicate_N : N;
+fun predicate_V2 : V2;
+fun predicative_A : A;
+fun predict_V2 : V2;
+fun predictability_N : N;
+fun predictable_A : A;
+fun predictably_Adv : Adv;
+fun prediction_N : N;
+fun predictor_N : N;
+fun predigest_V2 : V2;
+fun predilection_N : N;
+fun predispose_V2 : V2;
+fun predisposition_N : N;
+fun predominance_N : N;
+fun predominant_A : A;
+fun predominantly_Adv : Adv;
+fun predominate_V : V;
+fun preen_V2 : V2;
+fun prefab_N : N;
+fun prefabricate_V2 : V2;
+fun prefabrication_N : N;
+fun preface_N : N;
+fun preface_V2 : V2;
+fun prefatory_A : A;
+fun prefect_N : N;
+fun prefectural_A : A;
+fun prefecture_N : N;
+fun prefer_V2 : V2;
+fun preferable_A : A;
+fun preferably_Adv : Adv;
+fun preference_N : N;
+fun preferential_A : A;
+fun preferment_N : N;
+fun prefigure_V2 : V2;
+fun prefix_N : N;
+fun prefix_V2 : V2;
+fun pregnancy_N : N;
+fun pregnant_A : A;
+fun preheat_V2 : V2;
+fun prehensile_A : A;
+fun prehistoric_A : A;
+fun prehistorical_A : A;
+fun prehistory_N : N;
+fun prejudge_V2 : V2;
+fun prejudgement_N : N;
+fun prejudice_N : N;
+fun prejudice_V2 : V2;
+fun prejudicial_A : A;
+fun prelacy_N : N;
+fun prelate_N : N;
+fun prelim_N : N;
+fun preliminary_A : A;
+fun preliminary_N : N;
+fun prelude_N : N;
+fun prelude_V2 : V2;
+fun premarital_A : A;
+fun premature_A : A;
+fun prematurely_Adv : Adv;
+fun premeditate_V2 : V2;
+fun premeditation_N : N;
+fun premier_A : A;
+fun premier_N : N;
+fun premiership_N : N;
+fun premise_N : N;
+fun premise_V2 : V2;
+fun premiss_N : N;
+fun premiss_V2 : V2;
+fun premium_N : N;
+fun premiere_N : N;
+fun premonition_N : N;
+fun premonitory_A : A;
+fun prenatal_A : A;
+fun prentice_N : N;
+fun preoccupation_N : N;
+fun preoccupy_V2 : V2;
+fun preordain_V2 : V2;
+fun prep_N : N;
+fun prepacked_A : A;
+fun preparation_N : N;
+fun preparatory_A : A;
+fun prepare_V : V;
+fun prepare_V2 : V2;
+fun preparedness_N : N;
+fun prepay_V2 : V2;
+fun preponderance_N : N;
+fun preponderant_A : A;
+fun preponderantly_Adv : Adv;
+fun preponderate_V : V;
+fun preposition_N : N;
+fun prepositional_A : A;
+fun prepossess_V2 : V2;
+fun prepossessing_A : A;
+fun prepossession_N : N;
+fun preposterous_A : A;
+fun preposterously_Adv : Adv;
+fun prepuce_N : N;
+fun prerecord_V2 : V2;
+fun prerequisite_A : A;
+fun prerequisite_N : N;
+fun prerogative_N : N;
+fun pres_N : N;
+fun presage_N : N;
+fun presage_V2 : V2;
+fun presbyter_N : N;
+fun presbyterian_A : A;
+fun presbyterian_N : N;
+fun presbyterianism_N : N;
+fun presbytery_N : N;
+fun prescience_N : N;
+fun prescient_A : A;
+fun presciently_Adv : Adv;
+fun prescot_PN : PN;
+fun prescribe_V : V;
+fun prescribe_V2 : V2;
+fun prescript_N : N;
+fun prescription_N : N;
+fun prescriptive_A : A;
+fun presence_N : N;
+fun present_A : A;
+fun present_N : N;
+fun present_V2 : V2;
+fun present_day_A : A;
+fun presentable_A : A;
+fun presentably_Adv : Adv;
+fun presentation_N : N;
+fun presentiment_N : N;
+fun presently_Adv : Adv;
+fun preservable_A : A;
+fun preservation_N : N;
+fun preservative_A : A;
+fun preservative_N : N;
+fun preserve_N : N;
+fun preserve_V2 : V2;
+fun preserver_N : N;
+fun preside_V : V;
+fun presidency_N : N;
+fun president_N : N;
+fun presidential_A : A;
+fun presidium_N : N;
+fun press_N : N;
+fun press_V : V;
+fun press_V2 : V2;
+fun press_agency_N : N;
+fun press_agent_N : N;
+fun press_box_N : N;
+fun press_clipping_N : N;
+fun press_cutting_N : N;
+fun press_gallery_N : N;
+fun press_gang_N : N;
+fun press_lord_N : N;
+fun press_photographer_N : N;
+fun press_stud_N : N;
+fun press_up_N : N;
+fun pressing_A : A;
+fun pressing_N : N;
+fun pressingly_Adv : Adv;
+fun pressman_N : N;
+fun pressmark_N : N;
+fun pressure_N : N;
+fun pressure_cooker_N : N;
+fun pressure_gauge_N : N;
+fun pressurized_A : A;
+fun prestatyn_PN : PN;
+fun prestidigitation_N : N;
+fun prestidigitator_N : N;
+fun prestige_N : N;
+fun prestigious_A : A;
+fun prestissimo_A : A;
+fun prestissimo_Adv : Adv;
+fun presto_A : A;
+fun presto_Adv : Adv;
+fun preston_PN : PN;
+fun prestonpans_PN : PN;
+fun prestressed_A : A;
+fun prestwich_PN : PN;
+fun prestwick_PN : PN;
+fun presumable_A : A;
+fun presumably_Adv : Adv;
+fun presume_V : V;
+fun presume_V2 : V2;
+fun presuming_A : A;
+fun presumption_N : N;
+fun presumptive_A : A;
+fun presumptively_Adv : Adv;
+fun presumptuous_A : A;
+fun presumptuously_Adv : Adv;
+fun presuppose_V2 : V2;
+fun presupposition_N : N;
+fun pretence_N : N;
+fun pretend_V : V;
+fun pretend_V2 : V2;
+fun pretendedly_Adv : Adv;
+fun pretender_N : N;
+fun pretension_N : N;
+fun pretentious_A : A;
+fun pretentiously_Adv : Adv;
+fun pretentiousness_N : N;
+fun preterit_A : A;
+fun preterit_N : N;
+fun preterite_A : A;
+fun preterite_N : N;
+fun preternatural_A : A;
+fun preternaturally_Adv : Adv;
+fun pretext_N : N;
+fun pretor_N : N;
+fun pretoria_PN : PN;
+fun prettify_V2 : V2;
+fun prettily_Adv : Adv;
+fun prettiness_N : N;
+fun pretty_A : A;
+fun pretty_Adv : Adv;
+fun pretty_N : N;
+fun pretty_pretty_A : A;
+fun pretzel_N : N;
+fun prevail_V : V;
+fun prevailing_A : A;
+fun prevalence_N : N;
+fun prevalent_A : A;
+fun prevaricate_V : V;
+fun prevarication_N : N;
+fun prevent_V2 : V2;
+fun preventable_A : A;
+fun preventative_N : N;
+fun prevention_N : N;
+fun preventive_A : A;
+fun preview_N : N;
+fun preview_V2 : V2;
+fun previous_A : A;
+fun previously_Adv : Adv;
+fun prevision_N : N;
+fun prey_N : N;
+fun prey_V : V;
+fun price_N : N;
+fun price_V2 : V2;
+fun price_control_N : N;
+fun price_controlled_A : A;
+fun priceless_A : A;
+fun pricelist_N : N;
+fun pricey_A : A;
+fun prick_N : N;
+fun prick_V : V;
+fun prick_V2 : V2;
+fun pricker_N : N;
+fun pricking_N : N;
+fun prickle_N : N;
+fun prickle_V : V;
+fun prickle_V2 : V2;
+fun prickly_A : A;
+fun pride_N : N;
+fun pride_V2 : V2;
+fun prie_dieu_N : N;
+fun priest_N : N;
+fun priest_ridden_A : A;
+fun priestcraft_N : N;
+fun priestess_N : N;
+fun priesthood_N : N;
+fun priestlike_A : A;
+fun priestly_A : A;
+fun prig_N : N;
+fun priggish_A : A;
+fun priggishly_Adv : Adv;
+fun priggishness_N : N;
+fun prim_A : A;
+fun prim_V2 : V2;
+fun prima_A : A;
+fun prima_ballerina_N : N;
+fun prima_donna_N : N;
+fun prima_facie_A : A;
+fun prima_facie_Adv : Adv;
+fun primacy_N : N;
+fun primaeval_A : A;
+fun primal_A : A;
+fun primarily_Adv : Adv;
+fun primary_A : A;
+fun primary_N : N;
+fun primate_N : N;
+fun prime_A : A;
+fun prime_N : N;
+fun prime_V2 : V2;
+fun primer_N : N;
+fun primeval_A : A;
+fun priming_N : N;
+fun primitive_A : A;
+fun primitive_N : N;
+fun primitively_Adv : Adv;
+fun primitiveness_N : N;
+fun primly_Adv : Adv;
+fun primness_N : N;
+fun primogeniture_N : N;
+fun primordial_A : A;
+fun primp_V2 : V2;
+fun primrose_N : N;
+fun primula_N : N;
+fun primus_N : N;
+fun prince_N : N;
+fun princedom_N : N;
+fun princely_A : A;
+fun princes_risborough_PN : PN;
+fun princess_N : N;
+fun principal_A : A;
+fun principal_N : N;
+fun principality_N : N;
+fun principally_Adv : Adv;
+fun principle_N : N;
+fun principled_A : A;
+fun prink_V2 : V2;
+fun print_N : N;
+fun print_V : V;
+fun print_V2 : V2;
+fun print_seller_N : N;
+fun print_shop_N : N;
+fun printable_A : A;
+fun printer_N : N;
+fun printing_N : N;
+fun printing_ink_N : N;
+fun printing_press_N : N;
+fun printout_N : N;
+fun prior_A : A;
+fun prior_N : N;
+fun prioress_N : N;
+fun priority_N : N;
+fun priory_N : N;
+fun priscilla_PN : PN;
+fun prise_V2 : V2;
+fun prism_N : N;
+fun prismatic_A : A;
+fun prison_N : N;
+fun prison_breaking_N : N;
+fun prisoner_N : N;
+fun pristine_A : A;
+fun privacy_N : N;
+fun private_A : A;
+fun private_N : N;
+fun privateer_N : N;
+fun privately_Adv : Adv;
+fun privation_N : N;
+fun privet_N : N;
+fun privilege_N : N;
+fun privileged_A : A;
+fun privily_Adv : Adv;
+fun privy_A : A;
+fun privy_N : N;
+fun prize_N : N;
+fun prize_V2 : V2;
+fun prize_fight_N : N;
+fun prize_money_N : N;
+fun prize_ring_N : N;
+fun pro_Adv : Adv;
+fun pro_N : N;
+fun pro_forma_A : A;
+fun pro_forma_Adv : Adv;
+fun pro_rata_Adv : Adv;
+fun pro_tem_Adv : Adv;
+fun pro_tempore_Adv : Adv;
+fun probabilistic_A : A;
+fun probabilistically_Adv : Adv;
+fun probability_N : N;
+fun probable_A : A;
+fun probable_N : N;
+fun probably_Adv : Adv;
+fun probate_N : N;
+fun probate_V2 : V2;
+fun probation_N : N;
+fun probationary_A : A;
+fun probationer_N : N;
+fun probe_N : N;
+fun probe_V2 : V2;
+fun probity_N : N;
+fun problem_N : N;
+fun problematic_A : A;
+fun problematically_Adv : Adv;
+fun proboscis_N : N;
+fun procedural_A : A;
+fun procedure_N : N;
+fun proceed_V : V;
+fun proceeding_N : N;
+fun process_N : N;
+fun process_V : V;
+fun process_V2 : V2;
+fun process_server_N : N;
+fun procession_N : N;
+fun processional_A : A;
+fun processor_N : N;
+fun proclaim_V2 : V2;
+fun proclamation_N : N;
+fun proclivity_N : N;
+fun proconsul_N : N;
+fun proconsular_A : A;
+fun proconsulate_N : N;
+fun procrastinate_V : V;
+fun procrastination_N : N;
+fun procreate_V2 : V2;
+fun procreation_N : N;
+fun proctor_N : N;
+fun procurable_A : A;
+fun procurator_N : N;
+fun procure_V2 : V2;
+fun procurement_N : N;
+fun procurer_N : N;
+fun procuress_N : N;
+fun prod_N : N;
+fun prod_V : V;
+fun prod_V2 : V2;
+fun prodigal_A : A;
+fun prodigal_N : N;
+fun prodigality_N : N;
+fun prodigally_Adv : Adv;
+fun prodigious_A : A;
+fun prodigiously_Adv : Adv;
+fun prodigy_N : N;
+fun produce_N : N;
+fun produce_V : V;
+fun produce_V2 : V2;
+fun producer_N : N;
+fun product_N : N;
+fun production_N : N;
+fun productive_A : A;
+fun productively_Adv : Adv;
+fun productivity_N : N;
+fun prof_PN : PN;
+fun profanation_N : N;
+fun profane_A : A;
+fun profane_V2 : V2;
+fun profanely_Adv : Adv;
+fun profaneness_N : N;
+fun profanity_N : N;
+fun profess_V : V;
+fun profess_V2 : V2;
+fun professed_A : A;
+fun professedly_Adv : Adv;
+fun profession_N : N;
+fun professional_A : A;
+fun professional_N : N;
+fun professionalism_N : N;
+fun professionally_Adv : Adv;
+fun professor_N : N;
+fun professorial_A : A;
+fun professorship_N : N;
+fun proffer_N : N;
+fun proffer_V2 : V2;
+fun proficiency_N : N;
+fun proficient_A : A;
+fun proficiently_Adv : Adv;
+fun profile_N : N;
+fun profile_V2 : V2;
+fun profit_N : N;
+fun profit_V : V;
+fun profit_V2 : V2;
+fun profit_margin_N : N;
+fun profit_sharing_N : N;
+fun profitable_A : A;
+fun profitably_Adv : Adv;
+fun profiteer_N : N;
+fun profiteer_V : V;
+fun profitless_A : A;
+fun profitlessly_Adv : Adv;
+fun profligacy_N : N;
+fun profligate_A : A;
+fun profligate_N : N;
+fun profound_A : A;
+fun profoundly_Adv : Adv;
+fun profundity_N : N;
+fun profuse_A : A;
+fun profusely_Adv : Adv;
+fun profuseness_N : N;
+fun profusion_N : N;
+fun progenitor_N : N;
+fun prognosis_N : N;
+fun prognostic_A : A;
+fun prognostic_N : N;
+fun prognosticate_V2 : V2;
+fun prognostication_N : N;
+fun program_N : N;
+fun program_V2 : V2;
+fun programme_N : N;
+fun programme_V2 : V2;
+fun programmer_N : N;
+fun progress_N : N;
+fun progress_V : V;
+fun progression_N : N;
+fun progressive_A : A;
+fun progressive_N : N;
+fun progressively_Adv : Adv;
+fun progressiveness_N : N;
+fun prohibit_V2 : V2;
+fun prohibition_N : N;
+fun prohibitionist_N : N;
+fun prohibitive_A : A;
+fun prohibitively_Adv : Adv;
+fun prohibitory_A : A;
+fun project_N : N;
+fun project_V : V;
+fun project_V2 : V2;
+fun projectile_A : A;
+fun projectile_N : N;
+fun projection_N : N;
+fun projectionist_N : N;
+fun projector_N : N;
+fun prolapse_N : N;
+fun prolapse_V : V;
+fun prole_N : N;
+fun proletarian_A : A;
+fun proletarian_N : N;
+fun proletariat_N : N;
+fun proliferate_V : V;
+fun proliferate_V2 : V2;
+fun proliferation_N : N;
+fun prolific_A : A;
+fun prolix_A : A;
+fun prolixity_N : N;
+fun prologue_N : N;
+fun prolong_V2 : V2;
+fun prolongation_N : N;
+fun prolonged_A : A;
+fun prom_N : N;
+fun promenade_N : N;
+fun promenade_V : V;
+fun promenade_V2 : V2;
+fun prominence_N : N;
+fun prominent_A : A;
+fun prominently_Adv : Adv;
+fun promiscuity_N : N;
+fun promiscuous_A : A;
+fun promiscuously_Adv : Adv;
+fun promise_N : N;
+fun promise_V : V;
+fun promise_V2 : V2;
+fun promising_A : A;
+fun promisingly_Adv : Adv;
+fun promissory_A : A;
+fun promontory_N : N;
+fun promote_V2 : V2;
+fun promoter_N : N;
+fun promotion_N : N;
+fun promotional_A : A;
+fun prompt_A : A;
+fun prompt_N : N;
+fun prompt_V2 : V2;
+fun prompt_box_N : N;
+fun prompt_copy_N : N;
+fun prompter_N : N;
+fun prompting_N : N;
+fun promptitude_N : N;
+fun promptly_Adv : Adv;
+fun promptness_N : N;
+fun promulgate_V2 : V2;
+fun promulgation_N : N;
+fun prone_A : A;
+fun proneness_N : N;
+fun prong_N : N;
+fun pronged_A : A;
+fun pronominal_A : A;
+fun pronoun_N : N;
+fun pronounce_V : V;
+fun pronounce_V2 : V2;
+fun pronounceable_A : A;
+fun pronounced_A : A;
+fun pronouncement_N : N;
+fun pronto_Adv : Adv;
+fun pronunciamento_N : N;
+fun pronunciation_N : N;
+fun proof_A : A;
+fun proof_N : N;
+fun proof_V2 : V2;
+fun proofread_V : V;
+fun proofread_V2 : V2;
+fun proofreader_N : N;
+fun prop_N : N;
+fun prop_V2 : V2;
+fun propaganda_N : N;
+fun propagandist_N : N;
+fun propagandize_V : V;
+fun propagate_V : V;
+fun propagate_V2 : V2;
+fun propagation_N : N;
+fun propagator_N : N;
+fun propane_N : N;
+fun propel_V2 : V2;
+fun propellant_A : A;
+fun propellant_N : N;
+fun propellent_A : A;
+fun propellent_N : N;
+fun propeller_N : N;
+fun propensity_N : N;
+fun proper_A : A;
+fun properly_Adv : Adv;
+fun propertied_A : A;
+fun property_N : N;
+fun property_man_N : N;
+fun property_master_N : N;
+fun prophecy_N : N;
+fun prophesy_V : V;
+fun prophesy_V2 : V2;
+fun prophet_N : N;
+fun prophetess_N : N;
+fun prophetic_A : A;
+fun prophetical_A : A;
+fun prophetically_Adv : Adv;
+fun prophylactic_A : A;
+fun prophylactic_N : N;
+fun prophylaxis_N : N;
+fun propinquity_N : N;
+fun propitiate_V2 : V2;
+fun propitiation_N : N;
+fun propitiatory_A : A;
+fun propitious_A : A;
+fun propitiously_Adv : Adv;
+fun proponent_N : N;
+fun proportion_N : N;
+fun proportion_V2 : V2;
+fun proportionable_A : A;
+fun proportional_A : A;
+fun proportionality_N : N;
+fun proportionally_Adv : Adv;
+fun proportionate_A : A;
+fun proportionately_Adv : Adv;
+fun proposal_N : N;
+fun propose_V : V;
+fun propose_V2 : V2;
+fun proposer_N : N;
+fun proposition_N : N;
+fun proposition_V2 : V2;
+fun propound_V2 : V2;
+fun proprietary_A : A;
+fun proprietor_N : N;
+fun proprietress_N : N;
+fun propriety_N : N;
+fun propulsion_N : N;
+fun propulsive_A : A;
+fun prorogation_N : N;
+fun prorogue_V2 : V2;
+fun prosaic_A : A;
+fun prosaically_Adv : Adv;
+fun proscenium_N : N;
+fun proscribe_V2 : V2;
+fun proscription_N : N;
+fun prose_N : N;
+fun prosecute_V2 : V2;
+fun prosecution_N : N;
+fun prosecutor_N : N;
+fun proselyte_N : N;
+fun proselytize_V : V;
+fun proselytize_V2 : V2;
+fun prosily_Adv : Adv;
+fun prosiness_N : N;
+fun prosody_N : N;
+fun prospect_N : N;
+fun prospect_V : V;
+fun prospective_A : A;
+fun prospector_N : N;
+fun prospectus_N : N;
+fun prosper_V : V;
+fun prosper_V2 : V2;
+fun prosperity_N : N;
+fun prosperous_A : A;
+fun prosperously_Adv : Adv;
+fun prostate_N : N;
+fun prostitute_N : N;
+fun prostitute_V2 : V2;
+fun prostitution_N : N;
+fun prostrate_A : A;
+fun prostrate_V2 : V2;
+fun prostration_N : N;
+fun prosy_A : A;
+fun protagonist_N : N;
+fun protean_A : A;
+fun protect_V2 : V2;
+fun protection_N : N;
+fun protectionism_N : N;
+fun protectionist_N : N;
+fun protective_A : A;
+fun protectively_Adv : Adv;
+fun protector_N : N;
+fun protectorate_N : N;
+fun protein_N : N;
+fun protest_N : N;
+fun protest_V : V;
+fun protest_V2 : V2;
+fun protestant_A : A;
+fun protestant_N : N;
+fun protestantism_N : N;
+fun protestation_N : N;
+fun protester_N : N;
+fun protestingly_Adv : Adv;
+fun protocol_N : N;
+fun proton_N : N;
+fun protoplasm_N : N;
+fun prototype_N : N;
+fun protract_V2 : V2;
+fun protraction_N : N;
+fun protractor_N : N;
+fun protrude_V : V;
+fun protrude_V2 : V2;
+fun protrusion_N : N;
+fun protrusive_A : A;
+fun protuberance_N : N;
+fun protuberant_A : A;
+fun protege_N : N;
+fun protegee_N : N;
+fun proud_A : A;
+fun proudly_Adv : Adv;
+fun provable_A : A;
+fun prove_V : V;
+fun prove_V2 : V2;
+fun provenance_N : N;
+fun provender_N : N;
+fun proverb_N : N;
+fun proverbial_A : A;
+fun proverbially_Adv : Adv;
+fun provide_V : V;
+fun provide_V2 : V2;
+fun providence_N : N;
+fun providence_PN : PN;
+fun provident_A : A;
+fun providential_A : A;
+fun providentially_Adv : Adv;
+fun providently_Adv : Adv;
+fun provider_N : N;
+fun province_N : N;
+fun provincial_A : A;
+fun provincial_N : N;
+fun provincialism_N : N;
+fun provincially_Adv : Adv;
+fun provision_N : N;
+fun provision_V2 : V2;
+fun provisional_A : A;
+fun provisionally_Adv : Adv;
+fun proviso_N : N;
+fun provisory_A : A;
+fun provocation_N : N;
+fun provocative_A : A;
+fun provocatively_Adv : Adv;
+fun provoke_V2 : V2;
+fun provoking_A : A;
+fun provokingly_Adv : Adv;
+fun provost_N : N;
+fun prow_N : N;
+fun prowess_N : N;
+fun prowl_N : N;
+fun prowl_V : V;
+fun prowl_V2 : V2;
+fun prowler_N : N;
+fun prox_Adv : Adv;
+fun proximate_A : A;
+fun proximity_N : N;
+fun proximo_A : A;
+fun proxy_N : N;
+fun pru_PN : PN;
+fun prude_N : N;
+fun prudence_N : N;
+fun prudence_PN : PN;
+fun prudent_A : A;
+fun prudential_A : A;
+fun prudently_Adv : Adv;
+fun prudery_N : N;
+fun prudhoe_PN : PN;
+fun prudish_A : A;
+fun prudishly_Adv : Adv;
+fun prune_N : N;
+fun prune_V2 : V2;
+fun pruning_N : N;
+fun pruning_hook_N : N;
+fun pruning_knife_N : N;
+fun pruning_saw_N : N;
+fun prurience_N : N;
+fun pruriency_N : N;
+fun prurient_A : A;
+fun pruriently_Adv : Adv;
+fun prussian_A : A;
+fun prussian_N : N;
+fun prussic_A : A;
+fun pry_V : V;
+fun pry_V2 : V2;
+fun pryingly_Adv : Adv;
+fun precis_N : N;
+fun precis_V2 : V2;
+fun psalm_N : N;
+fun psalmist_N : N;
+fun psalmody_N : N;
+fun psalter_N : N;
+fun psaltery_N : N;
+fun psephologist_N : N;
+fun psephology_N : N;
+fun pseud_N : N;
+fun pseudo_A : A;
+fun pseudo_N : N;
+fun pseudonym_N : N;
+fun pseudonymous_A : A;
+fun psittacosis_N : N;
+fun psyche_N : N;
+fun psychedelic_A : A;
+fun psychiatric_A : A;
+fun psychiatrist_N : N;
+fun psychiatry_N : N;
+fun psychic_A : A;
+fun psychic_N : N;
+fun psychical_A : A;
+fun psychoanalyse_V2 : V2;
+fun psychoanalysis_N : N;
+fun psychoanalyst_N : N;
+fun psychoanalytic_A : A;
+fun psychoanalytical_A : A;
+fun psychoanalyze_V2 : V2;
+fun psychological_A : A;
+fun psychologically_Adv : Adv;
+fun psychologist_N : N;
+fun psychology_N : N;
+fun psychopath_N : N;
+fun psychopathic_A : A;
+fun psychosis_N : N;
+fun psychosomatic_A : A;
+fun psychotherapy_N : N;
+fun psychotic_N : N;
+fun pt_N : N;
+fun pta_N : N;
+fun ptarmigan_N : N;
+fun pte_PN : PN;
+fun pterodactyl_N : N;
+fun pto_PN : PN;
+fun ptomaine_N : N;
+fun pty_PN : PN;
+fun pub_N : N;
+fun pub_crawl_N : N;
+fun pub_crawl_V : V;
+fun puberty_N : N;
+fun pubic_A : A;
+fun public_A : A;
+fun public_N : N;
+fun public_spirited_A : A;
+fun publican_N : N;
+fun publication_N : N;
+fun publicist_N : N;
+fun publicity_N : N;
+fun publicize_V2 : V2;
+fun publicly_Adv : Adv;
+fun publish_V2 : V2;
+fun publisher_N : N;
+fun puce_N : N;
+fun puck_N : N;
+fun pucker_N : N;
+fun pucker_V : V;
+fun pucker_V2 : V2;
+fun puckish_A : A;
+fun puckishly_Adv : Adv;
+fun pud_N : N;
+fun pudden_N : N;
+fun pudden_head_N : N;
+fun pudding_N : N;
+fun pudding_face_N : N;
+fun puddle_N : N;
+fun puddle_V2 : V2;
+fun puddler_N : N;
+fun pudgy_A : A;
+fun pudsey_PN : PN;
+fun pueblo_N : N;
+fun puerile_A : A;
+fun puerility_N : N;
+fun puerperal_A : A;
+fun puff_N : N;
+fun puff_V : V;
+fun puff_V2 : V2;
+fun puffball_N : N;
+fun puffin_N : N;
+fun puffiness_N : N;
+fun puffy_A : A;
+fun pug_N : N;
+fun pug_dog_N : N;
+fun pug_nose_A : A;
+fun pug_nose_N : N;
+fun pug_nosed_A : A;
+fun pugilism_N : N;
+fun pugilist_N : N;
+fun pugilistic_A : A;
+fun pugnacious_A : A;
+fun pugnaciously_Adv : Adv;
+fun pugnacity_N : N;
+fun puissance_N : N;
+fun puissant_A : A;
+fun puke_N : N;
+fun puke_V : V;
+fun puke_V2 : V2;
+fun pukka_A : A;
+fun pulchritude_N : N;
+fun pulchritudinous_A : A;
+fun pule_V : V;
+fun pull_N : N;
+fun pull_V : V;
+fun pull_V2 : V2;
+fun pull_in_N : N;
+fun pull_off_N : N;
+fun pull_out_N : N;
+fun pull_through_N : N;
+fun pull_up_N : N;
+fun pullet_N : N;
+fun pulley_N : N;
+fun pulley_block_N : N;
+fun pullman_N : N;
+fun pullover_N : N;
+fun pullulate_V : V;
+fun pulmonary_A : A;
+fun pulp_N : N;
+fun pulp_V : V;
+fun pulp_V2 : V2;
+fun pulpit_N : N;
+fun pulpy_A : A;
+fun pulque_N : N;
+fun pulsar_N : N;
+fun pulsate_V : V;
+fun pulsate_V2 : V2;
+fun pulsation_N : N;
+fun pulse_N : N;
+fun pulse_V : V;
+fun pulverize_V : V;
+fun pulverize_V2 : V2;
+fun puma_N : N;
+fun pumice_N : N;
+fun pumice_stone_N : N;
+fun pummel_V2 : V2;
+fun pump_N : N;
+fun pump_V : V;
+fun pump_V2 : V2;
+fun pump_room_N : N;
+fun pumpernickel_N : N;
+fun pumpkin_N : N;
+fun pun_N : N;
+fun pun_V : V;
+fun punch_N : N;
+fun punch_V2 : V2;
+fun punch_drunk_A : A;
+fun punch_up_N : N;
+fun punchball_N : N;
+fun punchbowl_N : N;
+fun punching_ball_N : N;
+fun punctilio_N : N;
+fun punctilious_A : A;
+fun punctiliously_Adv : Adv;
+fun punctiliousness_N : N;
+fun punctual_A : A;
+fun punctuality_N : N;
+fun punctually_Adv : Adv;
+fun punctuate_V2 : V2;
+fun punctuation_N : N;
+fun puncture_N : N;
+fun puncture_V : V;
+fun puncture_V2 : V2;
+fun pundit_N : N;
+fun pungency_N : N;
+fun pungent_A : A;
+fun pungently_Adv : Adv;
+fun punic_A : A;
+fun punily_Adv : Adv;
+fun punish_V2 : V2;
+fun punishable_A : A;
+fun punishment_N : N;
+fun punitive_A : A;
+fun punk_N : N;
+fun punkah_N : N;
+fun punnet_N : N;
+fun punster_N : N;
+fun punt_N : N;
+fun punt_V : V;
+fun punt_V2 : V2;
+fun punter_N : N;
+fun puny_A : A;
+fun pup_N : N;
+fun pupa_N : N;
+fun pupil_N : N;
+fun puppet_N : N;
+fun puppeteer_N : N;
+fun puppy_N : N;
+fun purblind_A : A;
+fun purchasable_A : A;
+fun purchase_N : N;
+fun purchase_V2 : V2;
+fun purchaser_N : N;
+fun purdah_N : N;
+fun pure_A : A;
+fun purely_Adv : Adv;
+fun pureness_N : N;
+fun purgation_N : N;
+fun purgative_A : A;
+fun purgative_N : N;
+fun purgatorial_A : A;
+fun purgatory_N : N;
+fun purge_N : N;
+fun purge_V2 : V2;
+fun purification_N : N;
+fun purifier_N : N;
+fun purify_V2 : V2;
+fun purist_N : N;
+fun puritan_A : A;
+fun puritan_N : N;
+fun puritanical_A : A;
+fun puritanically_Adv : Adv;
+fun puritanism_N : N;
+fun purity_N : N;
+fun purl_N : N;
+fun purl_V : V;
+fun purl_V2 : V2;
+fun purloin_V2 : V2;
+fun purple_A : A;
+fun purple_N : N;
+fun purplish_A : A;
+fun purport_N : N;
+fun purport_V2 : V2;
+fun purpose_N : N;
+fun purpose_V2 : V2;
+fun purpose_built_A : A;
+fun purposeful_A : A;
+fun purposefully_Adv : Adv;
+fun purposeless_A : A;
+fun purposelessly_Adv : Adv;
+fun purposely_Adv : Adv;
+fun purposive_A : A;
+fun purr_N : N;
+fun purr_V : V;
+fun purr_V2 : V2;
+fun purse_N : N;
+fun purse_V2 : V2;
+fun purse_proud_A : A;
+fun purser_N : N;
+fun pursuance_N : N;
+fun pursuant_A : A;
+fun pursue_V2 : V2;
+fun pursuer_N : N;
+fun pursuit_N : N;
+fun pursy_A : A;
+fun purulence_N : N;
+fun purulent_A : A;
+fun purvey_V : V;
+fun purvey_V2 : V2;
+fun purveyance_N : N;
+fun purveyor_N : N;
+fun purview_N : N;
+fun puree_N : N;
+fun pus_N : N;
+fun pusan_PN : PN;
+fun push_N : N;
+fun push_V : V;
+fun push_V2 : V2;
+fun push_bike_N : N;
+fun pushcart_N : N;
+fun pushchair_N : N;
+fun pusher_N : N;
+fun pushful_A : A;
+fun pushing_A : A;
+fun pushover_N : N;
+fun pusillanimity_N : N;
+fun pusillanimous_A : A;
+fun puss_N : N;
+fun pussy_N : N;
+fun pussycat_N : N;
+fun pussyfoot_V : V;
+fun pustule_N : N;
+fun put_N : N;
+fun put_V : V;
+fun put_V2 : V2;
+fun put_down_N : N;
+fun put_on_N : N;
+fun putative_A : A;
+fun putrefaction_N : N;
+fun putrefy_V : V;
+fun putrefy_V2 : V2;
+fun putrescence_N : N;
+fun putrescent_A : A;
+fun putrid_A : A;
+fun putridity_N : N;
+fun putsch_N : N;
+fun putt_N : N;
+fun putt_V : V;
+fun putt_V2 : V2;
+fun puttee_N : N;
+fun putter_V : V;
+fun putter_V2 : V2;
+fun putting_green_N : N;
+fun putting_iron_N : N;
+fun putty_N : N;
+fun putty_V2 : V2;
+fun puzzle_N : N;
+fun puzzle_V : V;
+fun puzzle_V2 : V2;
+fun puzzlement_N : N;
+fun puzzler_N : N;
+fun pwllheli_PN : PN;
+fun pygmy_N : N;
+fun pyjama_A : A;
+fun pyle_PN : PN;
+fun pylon_N : N;
+fun pyongyang_PN : PN;
+fun pyorrhoea_N : N;
+fun pyramid_N : N;
+fun pyre_N : N;
+fun pyrites_N : N;
+fun pyrotechnic_A : A;
+fun pyrrhic_A : A;
+fun python_N : N;
+fun pyx_N : N;
+fun pate_2_N : N;
+fun qatar_PN : PN;
+fun qatari_A : A;
+fun qatari_N : N;
+fun qc_N : N;
+fun qed_PN : PN;
+fun qt_N : N;
+fun quack_N : N;
+fun quack_V : V;
+fun quack_quack_N : N;
+fun quackery_N : N;
+fun quad_N : N;
+fun quadrangle_N : N;
+fun quadrangular_A : A;
+fun quadrant_N : N;
+fun quadratic_A : A;
+fun quadrilateral_A : A;
+fun quadrilateral_N : N;
+fun quadrille_N : N;
+fun quadrillion_N : N;
+fun quadrophonic_A : A;
+fun quadrophony_N : N;
+fun quadruped_N : N;
+fun quadruple_A : A;
+fun quadruple_N : N;
+fun quadruple_V : V;
+fun quadruple_V2 : V2;
+fun quadruplet_N : N;
+fun quadruplicate_A : A;
+fun quadruplicate_N : N;
+fun quadruplicate_V2 : V2;
+fun quaff_V : V;
+fun quaff_V2 : V2;
+fun quagga_N : N;
+fun quagmire_N : N;
+fun quai_d'orsay_N : N;
+fun quail_N : N;
+fun quail_V : V;
+fun quaint_A : A;
+fun quaintly_Adv : Adv;
+fun quaintness_N : N;
+fun quake_N : N;
+fun quake_V : V;
+fun quaker_N : N;
+fun qualification_N : N;
+fun qualified_A : A;
+fun qualifier_N : N;
+fun qualify_V : V;
+fun qualify_V2 : V2;
+fun qualitative_A : A;
+fun qualitatively_Adv : Adv;
+fun quality_N : N;
+fun qualm_N : N;
+fun quandary_N : N;
+fun quango_N : N;
+fun quantify_V2 : V2;
+fun quantitative_A : A;
+fun quantitatively_Adv : Adv;
+fun quantity_N : N;
+fun quantum_N : N;
+fun quarantine_N : N;
+fun quarantine_V2 : V2;
+fun quark_N : N;
+fun quarrel_N : N;
+fun quarrel_V : V;
+fun quarrelsome_A : A;
+fun quarry_N : N;
+fun quarry_V : V;
+fun quarry_V2 : V2;
+fun quarryman_N : N;
+fun quart_N : N;
+fun quarter_N : N;
+fun quarter_V2 : V2;
+fun quarter_day_N : N;
+fun quarter_deck_N : N;
+fun quarter_plate_N : N;
+fun quarterfinal_N : N;
+fun quartering_N : N;
+fun quarterlight_N : N;
+fun quarterly_A : A;
+fun quarterly_Adv : Adv;
+fun quarterly_N : N;
+fun quartermaster_N : N;
+fun quartermaster_general_N : N;
+fun quarterstaff_N : N;
+fun quartet_N : N;
+fun quarto_N : N;
+fun quartz_N : N;
+fun quasar_N : N;
+fun quash_V2 : V2;
+fun quassia_N : N;
+fun quatercentenary_N : N;
+fun quatrain_N : N;
+fun quattrocento_N : N;
+fun quaver_N : N;
+fun quaver_V : V;
+fun quaver_V2 : V2;
+fun quay_N : N;
+fun queasily_Adv : Adv;
+fun queasiness_N : N;
+fun queasy_A : A;
+fun quebec_PN : PN;
+fun queen_N : N;
+fun queen_V2 : V2;
+fun queenborough_in_sheppey_PN : PN;
+fun queenly_A : A;
+fun queensbury_PN : PN;
+fun queensferry_PN : PN;
+fun queensland_PN : PN;
+fun queer_A : A;
+fun queer_N : N;
+fun queer_V2 : V2;
+fun queerly_Adv : Adv;
+fun queerness_N : N;
+fun quell_V2 : V2;
+fun quench_V2 : V2;
+fun quenchless_A : A;
+fun quentin_PN : PN;
+fun quern_N : N;
+fun querulous_A : A;
+fun querulously_Adv : Adv;
+fun querulousness_N : N;
+fun query_N : N;
+fun query_V2 : V2;
+fun quest_N : N;
+fun quest_V : V;
+fun question_N : N;
+fun question_V2 : V2;
+fun question_mark_N : N;
+fun question_master_N : N;
+fun questionable_A : A;
+fun questionably_Adv : Adv;
+fun questioner_N : N;
+fun questioningly_Adv : Adv;
+fun questionnaire_N : N;
+fun quetzal_N : N;
+fun queue_N : N;
+fun queue_V : V;
+fun qui_vive_N : N;
+fun quibble_N : N;
+fun quibble_V : V;
+fun quibbler_N : N;
+fun quibbling_A : A;
+fun quiche_N : N;
+fun quick_A : A;
+fun quick_Adv : Adv;
+fun quick_N : N;
+fun quick_change_A : A;
+fun quick_eared_A : A;
+fun quick_eyed_A : A;
+fun quick_freeze_V2 : V2;
+fun quick_sighted_A : A;
+fun quick_tempered_A : A;
+fun quick_witted_A : A;
+fun quicken_V : V;
+fun quicken_V2 : V2;
+fun quicker_Adv : Adv;
+fun quickest_Adv : Adv;
+fun quickie_N : N;
+fun quicklime_N : N;
+fun quickly_Adv : Adv;
+fun quickness_N : N;
+fun quicksand_N : N;
+fun quickset_A : A;
+fun quicksilver_N : N;
+fun quickstep_N : N;
+fun quid_N : N;
+fun quid_pro_quo_N : N;
+fun quiescence_N : N;
+fun quiescent_A : A;
+fun quiescently_Adv : Adv;
+fun quiet_A : A;
+fun quiet_N : N;
+fun quiet_V : V;
+fun quiet_V2 : V2;
+fun quieten_V : V;
+fun quieten_V2 : V2;
+fun quietism_N : N;
+fun quietist_N : N;
+fun quietly_Adv : Adv;
+fun quietness_N : N;
+fun quietude_N : N;
+fun quietus_N : N;
+fun quiff_N : N;
+fun quill_N : N;
+fun quill_feather_N : N;
+fun quilt_N : N;
+fun quilt_V2 : V2;
+fun quin_N : N;
+fun quince_N : N;
+fun quincentenary_A : A;
+fun quincentenary_N : N;
+fun quinine_N : N;
+fun quinquagesima_N : N;
+fun quinquagesima_PN : PN;
+fun quinsy_N : N;
+fun quintal_N : N;
+fun quintessence_N : N;
+fun quintet_N : N;
+fun quintuplet_N : N;
+fun quip_N : N;
+fun quip_V : V;
+fun quire_N : N;
+fun quirk_N : N;
+fun quisling_N : N;
+fun quit_A : A;
+fun quit_V2 : V2;
+fun quito_PN : PN;
+fun quits_A : A;
+fun quittance_N : N;
+fun quitter_N : N;
+fun quiver_N : N;
+fun quiver_V : V;
+fun quiver_V2 : V2;
+fun quixotic_A : A;
+fun quixotically_Adv : Adv;
+fun quiz_N : N;
+fun quiz_V2 : V2;
+fun quizmaster_N : N;
+fun quizzical_A : A;
+fun quizzically_Adv : Adv;
+fun quoin_N : N;
+fun quoit_N : N;
+fun quonset_N : N;
+fun quorum_N : N;
+fun quota_N : N;
+fun quotability_N : N;
+fun quotable_A : A;
+fun quotation_N : N;
+fun quote_N : N;
+fun quote_V2 : V2;
+fun quotidian_A : A;
+fun quotient_N : N;
+fun qv_PN : PN;
+fun ra_N : N;
+fun rabbi_N : N;
+fun rabbinical_A : A;
+fun rabbit_N : N;
+fun rabbit_V : V;
+fun rabbit_burrow_N : N;
+fun rabbit_hole_N : N;
+fun rabbit_hutch_N : N;
+fun rabbit_punch_N : N;
+fun rabbit_warren_N : N;
+fun rabble_N : N;
+fun rabble_rousing_A : A;
+fun rabelaisian_A : A;
+fun rabid_A : A;
+fun rabies_N : N;
+fun raccoon_N : N;
+fun race_N : N;
+fun race_V : V;
+fun race_V2 : V2;
+fun race_meeting_N : N;
+fun racecard_N : N;
+fun racecourse_N : N;
+fun racehorse_N : N;
+fun raceme_N : N;
+fun racer_N : N;
+fun rachel_PN : PN;
+fun racial_A : A;
+fun racialism_N : N;
+fun racialist_N : N;
+fun racially_Adv : Adv;
+fun racily_Adv : Adv;
+fun raciness_N : N;
+fun racing_N : N;
+fun racism_N : N;
+fun racist_N : N;
+fun rack_N : N;
+fun rack_V2 : V2;
+fun rack_railway_N : N;
+fun rack_rent_N : N;
+fun racket_N : N;
+fun racket_V : V;
+fun racketeer_N : N;
+fun racketeering_N : N;
+fun raconteur_N : N;
+fun racoon_N : N;
+fun racquet_N : N;
+fun racy_A : A;
+fun rada_PN : PN;
+fun radar_N : N;
+fun radcliffe_PN : PN;
+fun radcliffe_on_trent_PN : PN;
+fun raddled_A : A;
+fun radial_A : A;
+fun radial_N : N;
+fun radially_Adv : Adv;
+fun radiance_N : N;
+fun radiant_A : A;
+fun radiantly_Adv : Adv;
+fun radiate_V : V;
+fun radiate_V2 : V2;
+fun radiation_N : N;
+fun radiator_N : N;
+fun radical_A : A;
+fun radical_N : N;
+fun radicalism_N : N;
+fun radically_Adv : Adv;
+fun radicle_N : N;
+fun radio_N : N;
+fun radio_gramophone_N : N;
+fun radio_location_N : N;
+fun radio_set_N : N;
+fun radio_telescope_N : N;
+fun radioactive_A : A;
+fun radioactivity_N : N;
+fun radiogram_N : N;
+fun radiograph_N : N;
+fun radiographer_N : N;
+fun radiography_N : N;
+fun radioisotope_N : N;
+fun radiologist_N : N;
+fun radiology_N : N;
+fun radiotherapist_N : N;
+fun radiotherapy_N : N;
+fun radish_N : N;
+fun radium_N : N;
+fun radius_N : N;
+fun radlett_PN : PN;
+fun radstock_PN : PN;
+fun raf_N : N;
+fun raffia_N : N;
+fun raffish_A : A;
+fun raffishly_Adv : Adv;
+fun raffle_N : N;
+fun raffle_V2 : V2;
+fun raft_N : N;
+fun raft_V : V;
+fun raft_V2 : V2;
+fun rafter_N : N;
+fun raftered_A : A;
+fun raftsman_N : N;
+fun rag_N : N;
+fun rag_V2 : V2;
+fun rag_day_N : N;
+fun ragamuffin_N : N;
+fun ragbag_N : N;
+fun rage_N : N;
+fun rage_V : V;
+fun ragged_A : A;
+fun raggedly_Adv : Adv;
+fun raggedness_N : N;
+fun raglan_N : N;
+fun ragout_N : N;
+fun ragtag_N : N;
+fun ragtime_N : N;
+fun raid_N : N;
+fun raid_V : V;
+fun raid_V2 : V2;
+fun raider_N : N;
+fun rail_N : N;
+fun rail_V : V;
+fun rail_V2 : V2;
+fun railcar_N : N;
+fun railhead_N : N;
+fun railing_N : N;
+fun raillery_N : N;
+fun railroad_N : N;
+fun railroad_V2 : V2;
+fun railway_N : N;
+fun railwayman_N : N;
+fun raiment_N : N;
+fun rain_N : N;
+fun rain_V : V;
+fun rain_V2 : V2;
+fun rain_gauge_N : N;
+fun rainbow_N : N;
+fun raincoat_N : N;
+fun raindrop_N : N;
+fun rainfall_N : N;
+fun rainford_PN : PN;
+fun rainproof_A : A;
+fun rainwater_N : N;
+fun rainy_A : A;
+fun raise_N : N;
+fun raise_V2 : V2;
+fun raiser_N : N;
+fun raisin_N : N;
+fun raison_d'etre_N : N;
+fun raj_N : N;
+fun rajah_N : N;
+fun rake_N : N;
+fun rake_V : V;
+fun rake_V2 : V2;
+fun rake_off_N : N;
+fun rakish_A : A;
+fun rakishly_Adv : Adv;
+fun rakishness_N : N;
+fun rallentando_A : A;
+fun rallentando_Adv : Adv;
+fun rally_N : N;
+fun rally_V : V;
+fun rally_V2 : V2;
+fun ralph_PN : PN;
+fun ram_N : N;
+fun ram_V2 : V2;
+fun ramadan_N : N;
+fun ramadan_PN : PN;
+fun ramble_N : N;
+fun ramble_V : V;
+fun rambler_N : N;
+fun rambling_A : A;
+fun rambunctious_A : A;
+fun ramification_N : N;
+fun ramify_V : V;
+fun ramify_V2 : V2;
+fun ramjet_N : N;
+fun ramp_N : N;
+fun ramp_V2 : V2;
+fun rampage_N : N;
+fun rampage_V : V;
+fun rampageous_A : A;
+fun rampant_A : A;
+fun rampantly_Adv : Adv;
+fun rampart_N : N;
+fun ramrod_N : N;
+fun ramsbottom_PN : PN;
+fun ramsgate_PN : PN;
+fun ramshackle_A : A;
+fun ranch_N : N;
+fun rancher_N : N;
+fun rancid_A : A;
+fun rancorous_A : A;
+fun rancour_N : N;
+fun rand_N : N;
+fun randolph_PN : PN;
+fun random_N : N;
+fun randomly_Adv : Adv;
+fun randomness_N : N;
+fun randy_A : A;
+fun ranee_N : N;
+fun range_N : N;
+fun range_V : V;
+fun range_V2 : V2;
+fun rangefinder_N : N;
+fun ranger_N : N;
+fun rangoon_PN : PN;
+fun rani_N : N;
+fun rank_A : A;
+fun rank_N : N;
+fun rank_V : V;
+fun rank_V2 : V2;
+fun ranker_N : N;
+fun ranking_N : N;
+fun rankle_V : V;
+fun rankly_Adv : Adv;
+fun rankness_N : N;
+fun ransack_V2 : V2;
+fun ransom_N : N;
+fun ransom_V2 : V2;
+fun rant_N : N;
+fun rant_V : V;
+fun rant_V2 : V2;
+fun ranter_N : N;
+fun rap_N : N;
+fun rap_V : V;
+fun rap_V2 : V2;
+fun rapacious_A : A;
+fun rapaciously_Adv : Adv;
+fun rapacity_N : N;
+fun rape_N : N;
+fun rape_V2 : V2;
+fun rapid_A : A;
+fun rapid_N : N;
+fun rapidity_N : N;
+fun rapidly_Adv : Adv;
+fun rapier_N : N;
+fun rapier_thrust_N : N;
+fun rapine_N : N;
+fun rapist_N : N;
+fun rapport_N : N;
+fun rapprochement_N : N;
+fun rapscallion_N : N;
+fun rapt_A : A;
+fun rapture_N : N;
+fun rapturous_A : A;
+fun rapturously_Adv : Adv;
+fun rare_A : A;
+fun rarebit_N : N;
+fun rarefaction_N : N;
+fun rarefy_V : V;
+fun rarefy_V2 : V2;
+fun rarely_Adv : Adv;
+fun rareness_N : N;
+fun raring_A : A;
+fun rarity_N : N;
+fun rascal_N : N;
+fun rascally_A : A;
+fun rase_V2 : V2;
+fun rash_A : A;
+fun rash_N : N;
+fun rasher_N : N;
+fun rashly_Adv : Adv;
+fun rashness_N : N;
+fun rasp_N : N;
+fun rasp_V : V;
+fun rasp_V2 : V2;
+fun raspberry_N : N;
+fun raspingly_Adv : Adv;
+fun rat_N : N;
+fun rat_V2 : V2;
+fun rat_a_tat_tat_N : N;
+fun rat_tat_N : N;
+fun ratability_N : N;
+fun ratable_A : A;
+fun ratan_N : N;
+fun ratch_N : N;
+fun ratchet_N : N;
+fun rate_N : N;
+fun rate_V : V;
+fun rate_V2 : V2;
+fun rateability_N : N;
+fun rateable_A : A;
+fun ratepayer_N : N;
+fun rather_Adv : Adv;
+fun ratification_N : N;
+fun ratify_V2 : V2;
+fun rating_N : N;
+fun ratio_N : N;
+fun ratiocination_N : N;
+fun ration_N : N;
+fun ration_V2 : V2;
+fun rational_A : A;
+fun rationale_N : N;
+fun rationalism_N : N;
+fun rationalist_N : N;
+fun rationalistic_A : A;
+fun rationality_N : N;
+fun rationalization_N : N;
+fun rationalize_V2 : V2;
+fun rationally_Adv : Adv;
+fun ratlin_N : N;
+fun ratline_N : N;
+fun rattan_N : N;
+fun ratter_N : N;
+fun rattle_N : N;
+fun rattle_V : V;
+fun rattle_V2 : V2;
+fun rattlebrained_A : A;
+fun rattlepated_A : A;
+fun rattler_N : N;
+fun rattlesnake_N : N;
+fun rattling_A : A;
+fun rattling_Adv : Adv;
+fun ratty_A : A;
+fun raucous_A : A;
+fun raucously_Adv : Adv;
+fun ravage_N : N;
+fun ravage_V : V;
+fun ravage_V2 : V2;
+fun rave_N : N;
+fun rave_V : V;
+fun rave_up_N : N;
+fun ravel_V : V;
+fun ravel_V2 : V2;
+fun raven_N : N;
+fun ravening_A : A;
+fun ravenna_PN : PN;
+fun ravenous_A : A;
+fun ravenously_Adv : Adv;
+fun raver_N : N;
+fun ravine_N : N;
+fun raving_A : A;
+fun raving_Adv : Adv;
+fun ravioli_N : N;
+fun ravish_V2 : V2;
+fun ravishingly_Adv : Adv;
+fun ravishment_N : N;
+fun raw_A : A;
+fun raw_N : N;
+fun rawboned_A : A;
+fun rawhide_A : A;
+fun rawtenstall_PN : PN;
+fun ray_N : N;
+fun ray_PN : PN;
+fun ray_V : V;
+fun ray_V2 : V2;
+fun raymond_PN : PN;
+fun rayon_N : N;
+fun raze_V2 : V2;
+fun razor_N : N;
+fun razor_V2 : V2;
+fun razor_edge_N : N;
+fun razorback_N : N;
+fun razorbacked_A : A;
+fun razorblade_N : N;
+fun razzle_N : N;
+fun razzle_dazzle_N : N;
+fun rc_PN : PN;
+fun rd_PN : PN;
+fun re_N : N;
+fun re_address_V2 : V2;
+fun re_afforest_V2 : V2;
+fun re_afforestation_N : N;
+fun re_count_N : N;
+fun re_count_V2 : V2;
+fun re_cover_V2 : V2;
+fun re_echo_N : N;
+fun re_echo_V : V;
+fun re_entry_N : N;
+fun re_form_V : V;
+fun re_form_V2 : V2;
+fun re_formation_N : N;
+fun re_join_V2 : V2;
+fun reach_N : N;
+fun reach_V : V;
+fun reach_V2 : V2;
+fun react_V : V;
+fun reaction_N : N;
+fun reactionary_N : N;
+fun reactor_N : N;
+fun read_N : N;
+fun read_V : V;
+fun read_V2 : V2;
+fun readability_N : N;
+fun readable_A : A;
+fun reader_N : N;
+fun readership_N : N;
+fun readily_Adv : Adv;
+fun readiness_N : N;
+fun reading_N : N;
+fun reading_PN : PN;
+fun reading_lamp_N : N;
+fun reading_room_N : N;
+fun readjust_V2 : V2;
+fun readjustment_N : N;
+fun readmission_N : N;
+fun readmit_V2 : V2;
+fun ready_A : A;
+fun ready_N : N;
+fun ready_made_A : A;
+fun reaffiliation_N : N;
+fun reaffirm_V2 : V2;
+fun reagent_N : N;
+fun real_A : A;
+fun real_N : N;
+fun realism_N : N;
+fun realist_N : N;
+fun realistic_A : A;
+fun realistically_Adv : Adv;
+fun reality_N : N;
+fun realizable_A : A;
+fun realization_N : N;
+fun realize_V2 : V2;
+fun reallocation_N : N;
+fun really_Adv : Adv;
+fun realm_N : N;
+fun realtor_N : N;
+fun realty_N : N;
+fun ream_N : N;
+fun reanimate_V2 : V2;
+fun reap_V : V;
+fun reap_V2 : V2;
+fun reaper_N : N;
+fun reaping_hook_N : N;
+fun reappear_V : V;
+fun reappearance_N : N;
+fun reappraisal_N : N;
+fun rear_N : N;
+fun rear_V : V;
+fun rear_V2 : V2;
+fun rear_admiral_N : N;
+fun rearguard_N : N;
+fun rearm_V : V;
+fun rearm_V2 : V2;
+fun rearmament_N : N;
+fun rearmost_A : A;
+fun rearrange_V2 : V2;
+fun rearrangement_N : N;
+fun rearward_N : N;
+fun rearwards_Adv : Adv;
+fun reason_N : N;
+fun reason_V : V;
+fun reason_V2 : V2;
+fun reasonable_A : A;
+fun reasonableness_N : N;
+fun reasonably_Adv : Adv;
+fun reasoning_N : N;
+fun reasonless_A : A;
+fun reassemble_V : V;
+fun reassemble_V2 : V2;
+fun reassess_V2 : V2;
+fun reassessment_N : N;
+fun reassurance_N : N;
+fun reassure_V2 : V2;
+fun reassuring_A : A;
+fun reassuringly_Adv : Adv;
+fun reattribute_V2 : V2;
+fun rebarbative_A : A;
+fun rebate_N : N;
+fun rebecca_PN : PN;
+fun rebel_N : N;
+fun rebel_V : V;
+fun rebellion_N : N;
+fun rebellious_A : A;
+fun rebelliously_Adv : Adv;
+fun rebelliousness_N : N;
+fun rebind_V2 : V2;
+fun rebirth_N : N;
+fun reborn_A : A;
+fun rebound_N : N;
+fun rebound_V : V;
+fun rebuff_N : N;
+fun rebuff_V2 : V2;
+fun rebuild_V2 : V2;
+fun rebuke_N : N;
+fun rebuke_V2 : V2;
+fun rebukingly_Adv : Adv;
+fun rebus_N : N;
+fun rebut_V2 : V2;
+fun rebuttal_N : N;
+fun rec_PN : PN;
+fun recalcitrance_N : N;
+fun recalcitrancy_N : N;
+fun recalcitrant_A : A;
+fun recall_N : N;
+fun recall_V2 : V2;
+fun recant_V : V;
+fun recant_V2 : V2;
+fun recantation_N : N;
+fun recap_N : N;
+fun recap_V : V;
+fun recap_V2 : V2;
+fun recapitulate_V : V;
+fun recapitulate_V2 : V2;
+fun recapitulation_N : N;
+fun recapture_V2 : V2;
+fun recast_V2 : V2;
+fun recce_N : N;
+fun recd_PN : PN;
+fun recede_V : V;
+fun receipt_N : N;
+fun receipt_V2 : V2;
+fun receivable_A : A;
+fun receive_V : V;
+fun receive_V2 : V2;
+fun received_A : A;
+fun receiver_N : N;
+fun receivership_N : N;
+fun receiving_set_N : N;
+fun recent_A : A;
+fun recently_Adv : Adv;
+fun receptacle_N : N;
+fun reception_N : N;
+fun reception_desk_N : N;
+fun receptionist_N : N;
+fun receptive_A : A;
+fun receptively_Adv : Adv;
+fun receptiveness_N : N;
+fun receptivity_N : N;
+fun recess_N : N;
+fun recess_V2 : V2;
+fun recession_N : N;
+fun recessional_A : A;
+fun recessional_N : N;
+fun recessive_A : A;
+fun recherche_A : A;
+fun recidivism_N : N;
+fun recidivist_N : N;
+fun recife_PN : PN;
+fun recipe_N : N;
+fun recipient_N : N;
+fun reciprocal_A : A;
+fun reciprocal_N : N;
+fun reciprocally_Adv : Adv;
+fun reciprocate_V : V;
+fun reciprocate_V2 : V2;
+fun reciprocation_N : N;
+fun reciprocity_N : N;
+fun recital_N : N;
+fun recitalist_N : N;
+fun recitation_N : N;
+fun recitative_N : N;
+fun recite_V : V;
+fun recite_V2 : V2;
+fun reckless_A : A;
+fun recklessly_Adv : Adv;
+fun recklessness_N : N;
+fun recklinghausen_PN : PN;
+fun reckon_V : V;
+fun reckon_V2 : V2;
+fun reckoner_N : N;
+fun reckoning_N : N;
+fun reclaim_V2 : V2;
+fun reclamation_N : N;
+fun recline_V : V;
+fun recline_V2 : V2;
+fun recluse_N : N;
+fun recognition_N : N;
+fun recognizable_A : A;
+fun recognizably_Adv : Adv;
+fun recognizance_N : N;
+fun recognize_V2 : V2;
+fun recoil_N : N;
+fun recoil_V : V;
+fun recollect_V : V;
+fun recollect_V2 : V2;
+fun recollection_N : N;
+fun recommend_V2 : V2;
+fun recommendation_N : N;
+fun recommit_V2 : V2;
+fun recompense_N : N;
+fun recompense_V2 : V2;
+fun reconcilable_A : A;
+fun reconcile_V2 : V2;
+fun reconciliation_N : N;
+fun recondite_A : A;
+fun recondition_V2 : V2;
+fun reconnaissance_N : N;
+fun reconnoitre_V : V;
+fun reconnoitre_V2 : V2;
+fun reconsecrate_V2 : V2;
+fun reconsider_V2 : V2;
+fun reconstruct_V2 : V2;
+fun reconstruction_N : N;
+fun reconvict_V2 : V2;
+fun record_N : N;
+fun record_V2 : V2;
+fun record_breaking_A : A;
+fun record_player_N : N;
+fun recorder_N : N;
+fun recording_N : N;
+fun recount_V2 : V2;
+fun recoup_V2 : V2;
+fun recourse_N : N;
+fun recover_V : V;
+fun recover_V2 : V2;
+fun recoverable_A : A;
+fun recovery_N : N;
+fun recreant_A : A;
+fun recreant_N : N;
+fun recreate_V2 : V2;
+fun recreation_N : N;
+fun recreational_A : A;
+fun recriminate_V : V;
+fun recrimination_N : N;
+fun recriminatory_A : A;
+fun recrudescence_N : N;
+fun recruit_N : N;
+fun recruit_V : V;
+fun recruit_V2 : V2;
+fun recruitment_N : N;
+fun rectal_A : A;
+fun rectangle_N : N;
+fun rectangular_A : A;
+fun rectification_N : N;
+fun rectifier_N : N;
+fun rectify_V2 : V2;
+fun rectilinear_A : A;
+fun rectitude_N : N;
+fun recto_N : N;
+fun rector_N : N;
+fun rectory_N : N;
+fun rectum_N : N;
+fun recumbent_A : A;
+fun recuperate_V : V;
+fun recuperate_V2 : V2;
+fun recuperation_N : N;
+fun recuperative_A : A;
+fun recur_V : V;
+fun recurrence_N : N;
+fun recurrent_A : A;
+fun recurve_V : V;
+fun recurve_V2 : V2;
+fun recusancy_N : N;
+fun recusant_A : A;
+fun recusant_N : N;
+fun recycle_V2 : V2;
+fun red_A : A;
+fun red_N : N;
+fun red_hot_A : A;
+fun red_rimmed_A : A;
+fun redact_V2 : V2;
+fun redaction_N : N;
+fun redbreast_N : N;
+fun redbrick_A : A;
+fun redbridge_PN : PN;
+fun redcap_N : N;
+fun redcoat_N : N;
+fun redden_V : V;
+fun redden_V2 : V2;
+fun reddish_A : A;
+fun redditch_PN : PN;
+fun redecorate_V2 : V2;
+fun redeem_V2 : V2;
+fun redeemable_A : A;
+fun redeemer_N : N;
+fun redefine_V2 : V2;
+fun redemption_N : N;
+fun redemptive_A : A;
+fun redeploy_V2 : V2;
+fun redeployment_N : N;
+fun redesign_V2 : V2;
+fun redevelop_V2 : V2;
+fun redevelopment_N : N;
+fun redhead_N : N;
+fun rediffusion_N : N;
+fun rediscover_V2 : V2;
+fun rediscovery_N : N;
+fun redisposition_N : N;
+fun redistribute_V2 : V2;
+fun redistribution_N : N;
+fun redness_N : N;
+fun redo_V2 : V2;
+fun redolence_N : N;
+fun redolent_A : A;
+fun redouble_V : V;
+fun redouble_V2 : V2;
+fun redoubt_N : N;
+fun redoubtable_A : A;
+fun redound_V : V;
+fun redress_N : N;
+fun redress_V2 : V2;
+fun redruth_PN : PN;
+fun redskin_N : N;
+fun reduce_V : V;
+fun reduce_V2 : V2;
+fun reducible_A : A;
+fun reductio_ad_absurdum_N : N;
+fun reduction_N : N;
+fun redundance_N : N;
+fun redundancy_N : N;
+fun redundant_A : A;
+fun reduplicate_V2 : V2;
+fun reduplication_N : N;
+fun redwing_N : N;
+fun redwood_N : N;
+fun reed_N : N;
+fun reedy_A : A;
+fun reef_N : N;
+fun reef_V2 : V2;
+fun reef_knot_N : N;
+fun reefer_N : N;
+fun reek_N : N;
+fun reek_V : V;
+fun reel_N : N;
+fun reel_V : V;
+fun reel_V2 : V2;
+fun reeve_N : N;
+fun ref_N : N;
+fun reface_V2 : V2;
+fun refashion_N : N;
+fun refashion_V2 : V2;
+fun refection_N : N;
+fun refectory_N : N;
+fun refer_V : V;
+fun refer_V2 : V2;
+fun referable_A : A;
+fun referee_N : N;
+fun referee_V : V;
+fun referee_V2 : V2;
+fun reference_N : N;
+fun referendum_N : N;
+fun referential_A : A;
+fun refill_N : N;
+fun refill_V2 : V2;
+fun refine_V : V;
+fun refine_V2 : V2;
+fun refinement_N : N;
+fun refiner_N : N;
+fun refinery_N : N;
+fun refit_N : N;
+fun refit_V : V;
+fun refit_V2 : V2;
+fun reflate_V2 : V2;
+fun reflation_N : N;
+fun reflect_V : V;
+fun reflect_V2 : V2;
+fun reflection_N : N;
+fun reflective_A : A;
+fun reflectively_Adv : Adv;
+fun reflector_N : N;
+fun reflex_A : A;
+fun reflex_N : N;
+fun reflexion_N : N;
+fun reflexive_A : A;
+fun reflexive_N : N;
+fun refloat_V : V;
+fun refloat_V2 : V2;
+fun reflux_N : N;
+fun reforest_V2 : V2;
+fun reforestation_N : N;
+fun reform_N : N;
+fun reform_V : V;
+fun reform_V2 : V2;
+fun reformation_N : N;
+fun reformatory_A : A;
+fun reformatory_N : N;
+fun reformer_N : N;
+fun refract_V2 : V2;
+fun refraction_N : N;
+fun refractory_A : A;
+fun refrain_N : N;
+fun refrain_V : V;
+fun refresh_V2 : V2;
+fun refresher_N : N;
+fun refreshing_A : A;
+fun refreshingly_Adv : Adv;
+fun refreshment_N : N;
+fun refrigerant_A : A;
+fun refrigerant_N : N;
+fun refrigerate_V2 : V2;
+fun refrigeration_N : N;
+fun refrigerator_N : N;
+fun refuel_V : V;
+fun refuel_V2 : V2;
+fun refuge_N : N;
+fun refugee_N : N;
+fun refulgence_N : N;
+fun refulgent_A : A;
+fun refund_N : N;
+fun refund_V2 : V2;
+fun refurbish_V2 : V2;
+fun refurnish_V2 : V2;
+fun refusal_N : N;
+fun refuse_N : N;
+fun refuse_V : V;
+fun refuse_V2 : V2;
+fun refuse_collector_N : N;
+fun refutable_A : A;
+fun refutation_N : N;
+fun refute_V2 : V2;
+fun reg_PN : PN;
+fun regain_V2 : V2;
+fun regal_A : A;
+fun regale_V2 : V2;
+fun regally_Adv : Adv;
+fun regard_N : N;
+fun regard_V2 : V2;
+fun regardful_A : A;
+fun regardless_A : A;
+fun regatta_N : N;
+fun regency_N : N;
+fun regenerate_A : A;
+fun regenerate_V : V;
+fun regenerate_V2 : V2;
+fun regeneration_N : N;
+fun regensburg_PN : PN;
+fun regent_A : A;
+fun regent_N : N;
+fun reggae_N : N;
+fun regicide_N : N;
+fun regime_1_N : N;
+fun regimen_N : N;
+fun regiment_N : N;
+fun regiment_V2 : V2;
+fun regimental_A : A;
+fun regimentation_N : N;
+fun regina_PN : PN;
+fun reginald_PN : PN;
+fun region_N : N;
+fun regional_A : A;
+fun regionally_Adv : Adv;
+fun register_N : N;
+fun register_V : V;
+fun register_V2 : V2;
+fun registrar_N : N;
+fun registration_N : N;
+fun registry_N : N;
+fun regnant_A : A;
+fun regress_V : V;
+fun regression_N : N;
+fun regressive_A : A;
+fun regret_N : N;
+fun regret_V2 : V2;
+fun regretful_A : A;
+fun regretfully_Adv : Adv;
+fun regrettable_A : A;
+fun regrettably_Adv : Adv;
+fun regroup_V : V;
+fun regroup_V2 : V2;
+fun regular_A : A;
+fun regular_N : N;
+fun regularity_N : N;
+fun regularization_N : N;
+fun regularize_V2 : V2;
+fun regularly_Adv : Adv;
+fun regulate_V2 : V2;
+fun regulation_N : N;
+fun regulator_N : N;
+fun regurgitate_V : V;
+fun regurgitate_V2 : V2;
+fun rehabilitate_V2 : V2;
+fun rehabilitation_N : N;
+fun rehash_N : N;
+fun rehash_V2 : V2;
+fun rehear_V2 : V2;
+fun rehearing_N : N;
+fun rehearsal_N : N;
+fun rehearse_V : V;
+fun rehearse_V2 : V2;
+fun rehouse_V2 : V2;
+fun reich_N : N;
+fun reigate_PN : PN;
+fun reign_N : N;
+fun reign_V : V;
+fun reimburse_V2 : V2;
+fun reimbursement_N : N;
+fun reimposition_N : N;
+fun rein_N : N;
+fun rein_V2 : V2;
+fun reincarnate_A : A;
+fun reincarnate_V2 : V2;
+fun reincarnation_N : N;
+fun reindeer_N : N;
+fun reinforce_V2 : V2;
+fun reinforcement_N : N;
+fun reinstate_V2 : V2;
+fun reinstatement_N : N;
+fun reinsurance_N : N;
+fun reinsure_V2 : V2;
+fun reintegrate_V2 : V2;
+fun reinterpret_V2 : V2;
+fun reinterpretation_N : N;
+fun reissue_N : N;
+fun reissue_V2 : V2;
+fun reiterate_V2 : V2;
+fun reiteration_N : N;
+fun reject_N : N;
+fun reject_V2 : V2;
+fun rejection_N : N;
+fun rejig_V2 : V2;
+fun rejoice_V : V;
+fun rejoice_V2 : V2;
+fun rejoicing_N : N;
+fun rejoin_V : V;
+fun rejoin_V2 : V2;
+fun rejoinder_N : N;
+fun rejuvenate_V : V;
+fun rejuvenate_V2 : V2;
+fun rejuvenation_N : N;
+fun rekindle_V : V;
+fun rekindle_V2 : V2;
+fun relapse_N : N;
+fun relapse_V : V;
+fun relate_V : V;
+fun relate_V2 : V2;
+fun relation_N : N;
+fun relationship_N : N;
+fun relative_A : A;
+fun relative_N : N;
+fun relatively_Adv : Adv;
+fun relativity_N : N;
+fun relax_V : V;
+fun relax_V2 : V2;
+fun relaxation_N : N;
+fun relay_N : N;
+fun relay_V2 : V2;
+fun release_N : N;
+fun release_V2 : V2;
+fun relegate_V2 : V2;
+fun relegation_N : N;
+fun relent_V : V;
+fun relentless_A : A;
+fun relentlessly_Adv : Adv;
+fun relevance_N : N;
+fun relevancy_N : N;
+fun relevant_A : A;
+fun relevantly_Adv : Adv;
+fun reliability_N : N;
+fun reliable_A : A;
+fun reliably_Adv : Adv;
+fun reliance_N : N;
+fun reliant_A : A;
+fun relic_N : N;
+fun relict_N : N;
+fun relief_N : N;
+fun relieve_V2 : V2;
+fun religion_N : N;
+fun religious_A : A;
+fun religious_N : N;
+fun religiously_Adv : Adv;
+fun reline_V2 : V2;
+fun relinquish_V2 : V2;
+fun reliquary_N : N;
+fun relish_N : N;
+fun relish_V2 : V2;
+fun relive_V2 : V2;
+fun relocate_V : V;
+fun relocate_V2 : V2;
+fun relocation_N : N;
+fun reluctance_N : N;
+fun reluctant_A : A;
+fun reluctantly_Adv : Adv;
+fun rely_V : V;
+fun remain_V : V;
+fun remainder_N : N;
+fun remake_N : N;
+fun remake_V2 : V2;
+fun remand_N : N;
+fun remand_V2 : V2;
+fun remark_N : N;
+fun remark_V : V;
+fun remark_V2 : V2;
+fun remarkable_A : A;
+fun remarkably_Adv : Adv;
+fun remarriage_N : N;
+fun remarry_V : V;
+fun remarry_V2 : V2;
+fun remediable_A : A;
+fun remedial_A : A;
+fun remedy_N : N;
+fun remedy_V2 : V2;
+fun remember_V : V;
+fun remember_V2 : V2;
+fun remembrance_N : N;
+fun remilitarization_N : N;
+fun remilitarize_V2 : V2;
+fun remind_V2 : V2;
+fun reminder_N : N;
+fun reminisce_V : V;
+fun reminiscence_N : N;
+fun reminiscent_A : A;
+fun reminiscently_Adv : Adv;
+fun remiss_A : A;
+fun remission_N : N;
+fun remissness_N : N;
+fun remit_V : V;
+fun remit_V2 : V2;
+fun remittance_N : N;
+fun remittent_A : A;
+fun remnant_N : N;
+fun remodel_V2 : V2;
+fun remonstrance_N : N;
+fun remonstrate_V : V;
+fun remorse_N : N;
+fun remorseful_A : A;
+fun remorsefully_Adv : Adv;
+fun remorseless_A : A;
+fun remorselessly_Adv : Adv;
+fun remote_A : A;
+fun remotely_Adv : Adv;
+fun remoteness_N : N;
+fun remould_V2 : V2;
+fun remount_N : N;
+fun remount_V : V;
+fun remount_V2 : V2;
+fun removable_A : A;
+fun removal_N : N;
+fun remove_N : N;
+fun remove_V : V;
+fun remove_V2 : V2;
+fun removed_A : A;
+fun remover_N : N;
+fun remscheid_PN : PN;
+fun remunerate_V2 : V2;
+fun remuneration_N : N;
+fun remunerative_A : A;
+fun renaissance_N : N;
+fun renal_A : A;
+fun rename_V2 : V2;
+fun renascence_N : N;
+fun renascent_A : A;
+fun rend_V2 : V2;
+fun render_V2 : V2;
+fun rendering_N : N;
+fun rendezvous_N : N;
+fun rendezvous_V : V;
+fun rendition_N : N;
+fun renegade_N : N;
+fun renegade_V : V;
+fun renege_V : V;
+fun renegue_V : V;
+fun renew_V2 : V2;
+fun renewable_A : A;
+fun renewal_N : N;
+fun renfrew_PN : PN;
+fun rennes_PN : PN;
+fun rennet_N : N;
+fun renounce_V2 : V2;
+fun renovate_V2 : V2;
+fun renovation_N : N;
+fun renovator_N : N;
+fun renown_N : N;
+fun renowned_A : A;
+fun rent_N : N;
+fun rent_V : V;
+fun rent_V2 : V2;
+fun rent_collector_N : N;
+fun rent_free_A : A;
+fun rent_free_Adv : Adv;
+fun rent_rebate_N : N;
+fun rent_roll_N : N;
+fun rentable_A : A;
+fun rental_N : N;
+fun rentier_N : N;
+fun renunciation_N : N;
+fun reopen_V : V;
+fun reopen_V2 : V2;
+fun reorganization_N : N;
+fun reorganize_V : V;
+fun reorganize_V2 : V2;
+fun reorient_V : V;
+fun reorient_V2 : V2;
+fun reorientate_V : V;
+fun reorientate_V2 : V2;
+fun reorientation_N : N;
+fun rep_N : N;
+fun repaint_V2 : V2;
+fun repair_N : N;
+fun repair_V : V;
+fun repair_V2 : V2;
+fun repairable_A : A;
+fun repairer_N : N;
+fun reparable_A : A;
+fun reparation_N : N;
+fun repartee_N : N;
+fun repast_N : N;
+fun repatriate_N : N;
+fun repatriate_V2 : V2;
+fun repatriation_N : N;
+fun repay_V : V;
+fun repay_V2 : V2;
+fun repayable_A : A;
+fun repayment_N : N;
+fun repeal_N : N;
+fun repeal_V2 : V2;
+fun repeat_N : N;
+fun repeat_V : V;
+fun repeat_V2 : V2;
+fun repeatable_A : A;
+fun repeated_A : A;
+fun repeatedly_Adv : Adv;
+fun repeater_N : N;
+fun repel_V2 : V2;
+fun repellent_A : A;
+fun repellent_N : N;
+fun repent_V : V;
+fun repent_V2 : V2;
+fun repentance_N : N;
+fun repentant_A : A;
+fun repentantly_Adv : Adv;
+fun repercussion_N : N;
+fun repertoire_N : N;
+fun repertory_N : N;
+fun repetition_N : N;
+fun repetitious_A : A;
+fun repetitive_A : A;
+fun repetitively_Adv : Adv;
+fun repine_V : V;
+fun replace_V2 : V2;
+fun replaceable_A : A;
+fun replacement_N : N;
+fun replant_V2 : V2;
+fun replay_N : N;
+fun replay_V2 : V2;
+fun replenish_V2 : V2;
+fun replenishment_N : N;
+fun replete_A : A;
+fun repletion_N : N;
+fun replica_N : N;
+fun reply_N : N;
+fun reply_V : V;
+fun reply_V2 : V2;
+fun reply_paid_A : A;
+fun repoint_V2 : V2;
+fun report_N : N;
+fun report_V : V;
+fun report_V2 : V2;
+fun reportable_A : A;
+fun reportage_N : N;
+fun reportedly_Adv : Adv;
+fun reporter_N : N;
+fun repose_N : N;
+fun repose_V : V;
+fun repose_V2 : V2;
+fun reposeful_A : A;
+fun repository_N : N;
+fun repot_V2 : V2;
+fun repp_N : N;
+fun reprehend_V2 : V2;
+fun reprehensible_A : A;
+fun reprehensibly_Adv : Adv;
+fun represent_V2 : V2;
+fun representation_N : N;
+fun representative_A : A;
+fun representative_N : N;
+fun repress_V2 : V2;
+fun repressed_A : A;
+fun repression_N : N;
+fun repressive_A : A;
+fun reprieve_N : N;
+fun reprieve_V2 : V2;
+fun reprimand_N : N;
+fun reprimand_V2 : V2;
+fun reprint_N : N;
+fun reprint_V2 : V2;
+fun reprisal_N : N;
+fun reproach_N : N;
+fun reproach_V2 : V2;
+fun reproachful_A : A;
+fun reproachfully_Adv : Adv;
+fun reprobate_N : N;
+fun reprobate_V2 : V2;
+fun reprobation_N : N;
+fun reproduce_V : V;
+fun reproduce_V2 : V2;
+fun reproducer_N : N;
+fun reproducible_A : A;
+fun reproduction_N : N;
+fun reproductive_A : A;
+fun reproof_N : N;
+fun reproof_V2 : V2;
+fun reprove_V2 : V2;
+fun reprovingly_Adv : Adv;
+fun reps_N : N;
+fun reptile_N : N;
+fun reptilian_A : A;
+fun reptilian_N : N;
+fun republic_N : N;
+fun republican_A : A;
+fun republican_N : N;
+fun republicanism_N : N;
+fun repudiate_V2 : V2;
+fun repudiation_N : N;
+fun repugnance_N : N;
+fun repugnant_A : A;
+fun repulse_N : N;
+fun repulse_V2 : V2;
+fun repulsion_N : N;
+fun repulsive_A : A;
+fun repulsively_Adv : Adv;
+fun reputable_A : A;
+fun reputably_Adv : Adv;
+fun reputation_N : N;
+fun repute_N : N;
+fun repute_V2 : V2;
+fun reputed_A : A;
+fun reputedly_Adv : Adv;
+fun request_N : N;
+fun request_V2 : V2;
+fun requiem_N : N;
+fun require_V2 : V2;
+fun requirement_N : N;
+fun requisite_A : A;
+fun requisite_N : N;
+fun requisition_N : N;
+fun requisition_V2 : V2;
+fun requital_N : N;
+fun requite_V2 : V2;
+fun reread_V2 : V2;
+fun reredos_N : N;
+fun rerun_N : N;
+fun rerun_V2 : V2;
+fun res_N : N;
+fun rescind_V2 : V2;
+fun rescript_N : N;
+fun rescue_N : N;
+fun rescue_V2 : V2;
+fun rescuer_N : N;
+fun research_N : N;
+fun research_V : V;
+fun researcher_N : N;
+fun reseat_V2 : V2;
+fun reseed_V2 : V2;
+fun resell_V2 : V2;
+fun resemblance_N : N;
+fun resemble_V2 : V2;
+fun resent_V2 : V2;
+fun resentful_A : A;
+fun resentfully_Adv : Adv;
+fun resentment_N : N;
+fun reservation_N : N;
+fun reserve_N : N;
+fun reserve_V2 : V2;
+fun reserved_A : A;
+fun reservedly_Adv : Adv;
+fun reservist_N : N;
+fun reservoir_N : N;
+fun reset_V2 : V2;
+fun resettle_V : V;
+fun resettle_V2 : V2;
+fun resettlement_N : N;
+fun reshape_V2 : V2;
+fun reshuffle_N : N;
+fun reshuffle_V2 : V2;
+fun reside_V : V;
+fun residence_N : N;
+fun residency_N : N;
+fun resident_A : A;
+fun resident_N : N;
+fun residential_A : A;
+fun residual_A : A;
+fun residuary_A : A;
+fun residue_N : N;
+fun resign_V : V;
+fun resign_V2 : V2;
+fun resignation_N : N;
+fun resigned_A : A;
+fun resignedly_Adv : Adv;
+fun resilience_N : N;
+fun resiliency_N : N;
+fun resilient_A : A;
+fun resin_N : N;
+fun resinated_A : A;
+fun resinous_A : A;
+fun resist_V : V;
+fun resist_V2 : V2;
+fun resistance_N : N;
+fun resistant_A : A;
+fun resister_N : N;
+fun resistive_A : A;
+fun resistivity_N : N;
+fun resistless_A : A;
+fun resistor_N : N;
+fun resole_V2 : V2;
+fun resolute_A : A;
+fun resolutely_Adv : Adv;
+fun resoluteness_N : N;
+fun resolution_N : N;
+fun resolvable_A : A;
+fun resolve_N : N;
+fun resolve_V : V;
+fun resolve_V2 : V2;
+fun resonance_N : N;
+fun resonant_A : A;
+fun resonate_V : V;
+fun resonate_V2 : V2;
+fun resonator_N : N;
+fun resort_N : N;
+fun resort_V : V;
+fun resound_V : V;
+fun resound_V2 : V2;
+fun resoundingly_Adv : Adv;
+fun resource_N : N;
+fun resourceful_A : A;
+fun resourcefully_Adv : Adv;
+fun resourceless_A : A;
+fun respect_N : N;
+fun respect_V2 : V2;
+fun respectability_N : N;
+fun respectable_A : A;
+fun respectably_Adv : Adv;
+fun respecter_N : N;
+fun respectful_A : A;
+fun respectfully_Adv : Adv;
+fun respective_A : A;
+fun respectively_Adv : Adv;
+fun respiration_N : N;
+fun respirator_N : N;
+fun respiratory_A : A;
+fun respire_V : V;
+fun respite_N : N;
+fun respite_V2 : V2;
+fun resplendence_N : N;
+fun resplendency_N : N;
+fun resplendent_A : A;
+fun resplendently_Adv : Adv;
+fun respond_V : V;
+fun respondent_N : N;
+fun response_N : N;
+fun responsibility_N : N;
+fun responsible_A : A;
+fun responsibly_Adv : Adv;
+fun responsive_A : A;
+fun responsiveness_N : N;
+fun rest_N : N;
+fun rest_V : V;
+fun rest_V2 : V2;
+fun rest_cure_N : N;
+fun rest_day_N : N;
+fun rest_home_N : N;
+fun rest_house_N : N;
+fun restart_V : V;
+fun restart_V2 : V2;
+fun restate_V2 : V2;
+fun restatement_N : N;
+fun restaurant_N : N;
+fun restauranteur_N : N;
+fun restaurateur_N : N;
+fun restful_A : A;
+fun restfully_Adv : Adv;
+fun restfulness_N : N;
+fun restitution_N : N;
+fun restive_A : A;
+fun restively_Adv : Adv;
+fun restiveness_N : N;
+fun restless_A : A;
+fun restlessly_Adv : Adv;
+fun restlessness_N : N;
+fun restock_V2 : V2;
+fun restoration_N : N;
+fun restorative_A : A;
+fun restorative_N : N;
+fun restore_V2 : V2;
+fun restorer_N : N;
+fun restrain_V2 : V2;
+fun restrained_A : A;
+fun restraint_N : N;
+fun restrict_V2 : V2;
+fun restriction_N : N;
+fun restrictive_A : A;
+fun restrictively_Adv : Adv;
+fun restrictiveness_N : N;
+fun restructure_V2 : V2;
+fun result_N : N;
+fun result_V : V;
+fun resultant_A : A;
+fun resume_V2 : V2;
+fun resumption_N : N;
+fun resurface_V : V;
+fun resurface_V2 : V2;
+fun resurgence_N : N;
+fun resurgent_A : A;
+fun resurrect_V : V;
+fun resurrect_V2 : V2;
+fun resurrection_N : N;
+fun resuscitate_V : V;
+fun resuscitate_V2 : V2;
+fun resuscitation_N : N;
+fun ret_PN : PN;
+fun ret_V2 : V2;
+fun retail_Adv : Adv;
+fun retail_N : N;
+fun retail_V : V;
+fun retail_V2 : V2;
+fun retailer_N : N;
+fun retain_V2 : V2;
+fun retainer_N : N;
+fun retake_N : N;
+fun retake_V2 : V2;
+fun retaliate_V : V;
+fun retaliation_N : N;
+fun retaliative_A : A;
+fun retaliatory_A : A;
+fun retard_V2 : V2;
+fun retardation_N : N;
+fun retch_V : V;
+fun retd_PN : PN;
+fun retell_V2 : V2;
+fun retention_N : N;
+fun retentive_A : A;
+fun retentively_Adv : Adv;
+fun retentiveness_N : N;
+fun retford_PN : PN;
+fun rethink_N : N;
+fun rethink_V : V;
+fun rethink_V2 : V2;
+fun reticence_N : N;
+fun reticent_A : A;
+fun reticently_Adv : Adv;
+fun reticulate_A : A;
+fun reticulate_V : V;
+fun reticulate_V2 : V2;
+fun reticulation_N : N;
+fun reticule_N : N;
+fun retina_N : N;
+fun retinal_A : A;
+fun retinue_N : N;
+fun retire_N : N;
+fun retire_V : V;
+fun retire_V2 : V2;
+fun retired_A : A;
+fun retirement_N : N;
+fun retiring_A : A;
+fun retool_V2 : V2;
+fun retort_N : N;
+fun retort_V : V;
+fun retort_V2 : V2;
+fun retouch_V2 : V2;
+fun retrace_V2 : V2;
+fun retract_V : V;
+fun retract_V2 : V2;
+fun retractable_A : A;
+fun retractile_A : A;
+fun retraction_N : N;
+fun retransmit_V2 : V2;
+fun retread_N : N;
+fun retread_V2 : V2;
+fun retreat_N : N;
+fun retreat_V : V;
+fun retrench_V : V;
+fun retrench_V2 : V2;
+fun retrenchment_N : N;
+fun retrial_N : N;
+fun retribution_N : N;
+fun retributive_A : A;
+fun retrievable_A : A;
+fun retrieval_N : N;
+fun retrieve_V : V;
+fun retrieve_V2 : V2;
+fun retriever_N : N;
+fun retroactive_A : A;
+fun retroactively_Adv : Adv;
+fun retrograde_A : A;
+fun retrograde_V : V;
+fun retrogress_V : V;
+fun retrogression_N : N;
+fun retrogressive_A : A;
+fun retrorocket_N : N;
+fun retrospect_N : N;
+fun retrospection_N : N;
+fun retrospective_A : A;
+fun retrospectively_Adv : Adv;
+fun retrousse_A : A;
+fun retroversion_N : N;
+fun retsina_N : N;
+fun return_N : N;
+fun return_V : V;
+fun return_V2 : V2;
+fun returnable_A : A;
+fun reunification_N : N;
+fun reunion_N : N;
+fun reunite_V : V;
+fun reunite_V2 : V2;
+fun rev_N : N;
+fun rev_PN : PN;
+fun rev_V : V;
+fun rev_V2 : V2;
+fun revaluation_N : N;
+fun revalue_V2 : V2;
+fun revamp_V2 : V2;
+fun revd_PN : PN;
+fun reveal_V2 : V2;
+fun reveille_N : N;
+fun revel_N : N;
+fun revel_V : V;
+fun revelation_N : N;
+fun reveller_N : N;
+fun revelry_N : N;
+fun revenge_N : N;
+fun revenge_V2 : V2;
+fun revengeful_A : A;
+fun revengefully_Adv : Adv;
+fun revenue_N : N;
+fun reverberant_A : A;
+fun reverberate_V : V;
+fun reverberate_V2 : V2;
+fun reverberation_N : N;
+fun revere_V2 : V2;
+fun reverence_N : N;
+fun reverence_V2 : V2;
+fun reverend_A : A;
+fun reverend_N : N;
+fun reverent_A : A;
+fun reverential_A : A;
+fun reverentially_Adv : Adv;
+fun reverently_Adv : Adv;
+fun reverie_N : N;
+fun revers_N : N;
+fun reversal_N : N;
+fun reverse_A : A;
+fun reverse_N : N;
+fun reverse_V : V;
+fun reverse_V2 : V2;
+fun reversely_Adv : Adv;
+fun reversibility_N : N;
+fun reversible_A : A;
+fun reversion_N : N;
+fun reversionary_A : A;
+fun revert_V : V;
+fun revertible_A : A;
+fun revetment_N : N;
+fun review_N : N;
+fun review_V : V;
+fun review_V2 : V2;
+fun reviewer_N : N;
+fun revile_V : V;
+fun revile_V2 : V2;
+fun revise_N : N;
+fun revise_V2 : V2;
+fun reviser_N : N;
+fun revision_N : N;
+fun revisionism_N : N;
+fun revisionist_N : N;
+fun revisit_V2 : V2;
+fun revitalization_N : N;
+fun revitalize_V2 : V2;
+fun revival_N : N;
+fun revivalist_N : N;
+fun revive_V : V;
+fun revive_V2 : V2;
+fun revivify_V2 : V2;
+fun revocable_A : A;
+fun revocation_N : N;
+fun revoke_N : N;
+fun revoke_V : V;
+fun revoke_V2 : V2;
+fun revolt_N : N;
+fun revolt_V : V;
+fun revolt_V2 : V2;
+fun revolting_A : A;
+fun revoltingly_Adv : Adv;
+fun revolution_N : N;
+fun revolutionary_A : A;
+fun revolutionary_N : N;
+fun revolutionize_V2 : V2;
+fun revolve_V : V;
+fun revolve_V2 : V2;
+fun revolver_N : N;
+fun revue_N : N;
+fun revulsion_N : N;
+fun reward_N : N;
+fun reward_V2 : V2;
+fun rewire_V2 : V2;
+fun reword_V2 : V2;
+fun rewrite_N : N;
+fun rewrite_V2 : V2;
+fun rex_PN : PN;
+fun reykjavik_PN : PN;
+fun rhapsodize_V : V;
+fun rhapsody_N : N;
+fun rhea_N : N;
+fun rheims_PN : PN;
+fun rhenish_A : A;
+fun rheostat_N : N;
+fun rhesus_N : N;
+fun rhetoric_N : N;
+fun rhetorical_A : A;
+fun rhetorically_Adv : Adv;
+fun rhetorician_N : N;
+fun rheum_N : N;
+fun rheumatic_A : A;
+fun rheumatic_N : N;
+fun rheumatism_N : N;
+fun rheumatoid_A : A;
+fun rheydt_PN : PN;
+fun rhinal_A : A;
+fun rhine_PN : PN;
+fun rhinestone_N : N;
+fun rhino_N : N;
+fun rhinoceros_N : N;
+fun rhizome_N : N;
+fun rhode_PN : PN;
+fun rhododendron_N : N;
+fun rhomb_N : N;
+fun rhomboid_A : A;
+fun rhomboid_N : N;
+fun rhombus_N : N;
+fun rhondda_PN : PN;
+fun rhosllanerchrugog_PN : PN;
+fun rhubarb_N : N;
+fun rhyl_PN : PN;
+fun rhyme_N : N;
+fun rhyme_V : V;
+fun rhyme_V2 : V2;
+fun rhymed_A : A;
+fun rhymester_N : N;
+fun rhymney_PN : PN;
+fun rhythm_N : N;
+fun rhythmic_A : A;
+fun rhythmical_A : A;
+fun rhythmically_Adv : Adv;
+fun rib_N : N;
+fun rib_V2 : V2;
+fun ribald_A : A;
+fun ribald_N : N;
+fun ribaldry_N : N;
+fun riband_N : N;
+fun ribbon_N : N;
+fun riboflavin_N : N;
+fun rice_N : N;
+fun rice_paper_N : N;
+fun rich_A : A;
+fun richard_PN : PN;
+fun richly_Adv : Adv;
+fun richmond_PN : PN;
+fun richmond_upon_thames_PN : PN;
+fun richness_N : N;
+fun rick_N : N;
+fun rick_PN : PN;
+fun rick_V2 : V2;
+fun rickets_N : N;
+fun rickety_A : A;
+fun rickmansworth_PN : PN;
+fun rickshaw_N : N;
+fun ricky_PN : PN;
+fun ricochet_N : N;
+fun ricochet_V : V;
+fun ricochet_V2 : V2;
+fun rid_V2 : V2;
+fun riddance_N : N;
+fun riddle_N : N;
+fun riddle_V2 : V2;
+fun ride_N : N;
+fun ride_V : V;
+fun ride_V2 : V2;
+fun rider_N : N;
+fun riderless_A : A;
+fun ridge_N : N;
+fun ridge_V2 : V2;
+fun ridge_tile_N : N;
+fun ridgepole_N : N;
+fun ridicule_N : N;
+fun ridicule_V2 : V2;
+fun ridiculous_A : A;
+fun ridiculously_Adv : Adv;
+fun riding_N : N;
+fun riding_habit_N : N;
+fun riding_lamp_N : N;
+fun riding_light_N : N;
+fun riding_master_N : N;
+fun riding_school_N : N;
+fun riesling_N : N;
+fun rife_A : A;
+fun riff_N : N;
+fun riff_raff_N : N;
+fun riffle_V : V;
+fun riffle_V2 : V2;
+fun rifle_N : N;
+fun rifle_V2 : V2;
+fun rifle_range_N : N;
+fun rifle_shot_N : N;
+fun rifleman_N : N;
+fun rift_N : N;
+fun rift_valley_N : N;
+fun rig_N : N;
+fun rig_V : V;
+fun rig_V2 : V2;
+fun riga_PN : PN;
+fun rigger_N : N;
+fun rigging_N : N;
+fun right_A : A;
+fun right_Adv : Adv;
+fun right_N : N;
+fun right_V2 : V2;
+fun right_angled_A : A;
+fun right_down_A : A;
+fun right_down_Adv : Adv;
+fun right_hand_A : A;
+fun right_handed_A : A;
+fun right_hander_N : N;
+fun right_minded_A : A;
+fun right_turn_N : N;
+fun right_wing_N : N;
+fun right_winger_N : N;
+fun righteous_A : A;
+fun righteously_Adv : Adv;
+fun righteousness_N : N;
+fun rightful_A : A;
+fun rightfully_Adv : Adv;
+fun rightfulness_N : N;
+fun rightist_A : A;
+fun rightist_N : N;
+fun rightly_Adv : Adv;
+fun rightness_N : N;
+fun rigid_A : A;
+fun rigidity_N : N;
+fun rigidly_Adv : Adv;
+fun rigmarole_N : N;
+fun rigor_mortis_N : N;
+fun rigorous_A : A;
+fun rigorously_Adv : Adv;
+fun rigour_N : N;
+fun rigout_N : N;
+fun rijeka_PN : PN;
+fun rile_V2 : V2;
+fun rill_N : N;
+fun rim_N : N;
+fun rim_V2 : V2;
+fun rime_N : N;
+fun rime_V2 : V2;
+fun rimini_PN : PN;
+fun rind_N : N;
+fun rinderpest_N : N;
+fun ring_N : N;
+fun ring_V : V;
+fun ring_V2 : V2;
+fun ring_armour_N : N;
+fun ring_finger_N : N;
+fun ring_mail_N : N;
+fun ring_road_N : N;
+fun ringer_N : N;
+fun ringleader_N : N;
+fun ringlet_N : N;
+fun ringmaster_N : N;
+fun ringside_N : N;
+fun ringwood_PN : PN;
+fun ringworm_N : N;
+fun rink_N : N;
+fun rinse_N : N;
+fun rinse_V2 : V2;
+fun rio_de_janeiro_PN : PN;
+fun riot_N : N;
+fun riot_V : V;
+fun rioter_N : N;
+fun riotous_A : A;
+fun riotously_Adv : Adv;
+fun rip_N : N;
+fun rip_PN : PN;
+fun rip_V : V;
+fun rip_V2 : V2;
+fun rip_off_N : N;
+fun rip_roaring_A : A;
+fun riparian_A : A;
+fun ripcord_N : N;
+fun ripe_A : A;
+fun ripely_Adv : Adv;
+fun ripen_V : V;
+fun ripen_V2 : V2;
+fun ripeness_N : N;
+fun ripley_PN : PN;
+fun ripon_PN : PN;
+fun riposte_N : N;
+fun riposte_V : V;
+fun ripple_N : N;
+fun ripple_V : V;
+fun ripple_V2 : V2;
+fun ripsaw_N : N;
+fun riptide_N : N;
+fun risborough_PN : PN;
+fun risca_PN : PN;
+fun rise_N : N;
+fun rise_V : V;
+fun riser_N : N;
+fun rishton_PN : PN;
+fun risibility_N : N;
+fun risible_A : A;
+fun rising_N : N;
+fun risk_N : N;
+fun risk_V2 : V2;
+fun riskily_Adv : Adv;
+fun riskiness_N : N;
+fun risky_A : A;
+fun risotto_N : N;
+fun risque_A : A;
+fun rissole_N : N;
+fun rita_PN : PN;
+fun rite_N : N;
+fun ritual_A : A;
+fun ritual_N : N;
+fun ritualism_N : N;
+fun ritualist_N : N;
+fun ritualistic_A : A;
+fun ritzy_A : A;
+fun rival_N : N;
+fun rival_V2 : V2;
+fun rivalry_N : N;
+fun rive_V : V;
+fun rive_V2 : V2;
+fun river_N : N;
+fun river_basin_N : N;
+fun river_bed_N : N;
+fun riverside_N : N;
+fun rivet_N : N;
+fun rivet_V2 : V2;
+fun riveter_N : N;
+fun riviera_PN : PN;
+fun rivulet_N : N;
+fun rly_N : N;
+fun rm_N : N;
+fun rn_N : N;
+fun roach_N : N;
+fun road_N : N;
+fun road_book_N : N;
+fun road_hog_N : N;
+fun road_metal_N : N;
+fun road_sense_N : N;
+fun roadbed_N : N;
+fun roadblock_N : N;
+fun roadhouse_N : N;
+fun roadless_A : A;
+fun roadman_N : N;
+fun roadmender_N : N;
+fun roadside_N : N;
+fun roadstead_N : N;
+fun roadster_N : N;
+fun roadway_N : N;
+fun roadworthy_A : A;
+fun roam_V : V;
+fun roam_V2 : V2;
+fun roan_A : A;
+fun roan_N : N;
+fun roar_N : N;
+fun roar_V : V;
+fun roar_V2 : V2;
+fun roaring_A : A;
+fun roaring_Adv : Adv;
+fun roast_A : A;
+fun roast_N : N;
+fun roast_V : V;
+fun roast_V2 : V2;
+fun roaster_N : N;
+fun roasting_N : N;
+fun rob_PN : PN;
+fun rob_V2 : V2;
+fun robber_N : N;
+fun robbery_N : N;
+fun robe_N : N;
+fun robe_V : V;
+fun robe_V2 : V2;
+fun robert_PN : PN;
+fun robin_N : N;
+fun robin_PN : PN;
+fun robot_N : N;
+fun robust_A : A;
+fun robustly_Adv : Adv;
+fun robustness_N : N;
+fun roc_N : N;
+fun rochdale_PN : PN;
+fun rochester_PN : PN;
+fun rock_'n_roll_N : N;
+fun rock_N : N;
+fun rock_V : V;
+fun rock_V2 : V2;
+fun rock_bottom_N : N;
+fun rock_cake_N : N;
+fun rock_climbing_N : N;
+fun rock_crystal_N : N;
+fun rock_garden_N : N;
+fun rock_plant_N : N;
+fun rock_salmon_N : N;
+fun rock_salt_N : N;
+fun rocker_N : N;
+fun rockery_N : N;
+fun rocket_N : N;
+fun rocket_V : V;
+fun rocket_base_N : N;
+fun rocket_range_N : N;
+fun rocketry_N : N;
+fun rocking_chair_N : N;
+fun rocking_horse_N : N;
+fun rocky_A : A;
+fun rococo_A : A;
+fun rod_N : N;
+fun rod_PN : PN;
+fun rodent_N : N;
+fun rodeo_N : N;
+fun rodney_PN : PN;
+fun rodomontade_N : N;
+fun roe_N : N;
+fun roebuck_N : N;
+fun roentgen_N : N;
+fun rogation_N : N;
+fun roger_PN : PN;
+fun rogue_N : N;
+fun rogue_elephant_N : N;
+fun roguery_N : N;
+fun roguish_A : A;
+fun roguishly_Adv : Adv;
+fun roguishness_N : N;
+fun roisterer_N : N;
+fun role_1_N : N;
+fun roll_N : N;
+fun roll_V : V;
+fun roll_V2 : V2;
+fun roll_call_N : N;
+fun roll_on_N : N;
+fun roller_N : N;
+fun roller_skate_N : N;
+fun rollicking_A : A;
+fun rolling_N : N;
+fun rolling_mill_N : N;
+fun rolling_pin_N : N;
+fun rolling_stock_N : N;
+fun roly_poly_N : N;
+fun romaic_A : A;
+fun romaic_N : N;
+fun roman_A : A;
+fun roman_N : N;
+fun romance_A : A;
+fun romance_N : N;
+fun romance_V : V;
+fun romanesque_N : N;
+fun romania_PN : PN;
+fun romanian_A : A;
+fun romanian_N : N;
+fun romantic_A : A;
+fun romantic_N : N;
+fun romantically_Adv : Adv;
+fun romanticism_N : N;
+fun romanticist_N : N;
+fun romanticize_V : V;
+fun romanticize_V2 : V2;
+fun romany_A : A;
+fun romany_N : N;
+fun rome_PN : PN;
+fun romish_A : A;
+fun romp_N : N;
+fun romp_V : V;
+fun romper_N : N;
+fun romsey_PN : PN;
+fun ron_PN : PN;
+fun ronald_PN : PN;
+fun rondeau_N : N;
+fun rondel_N : N;
+fun rondo_N : N;
+fun roneo_N : N;
+fun roneo_V2 : V2;
+fun ronnie_PN : PN;
+fun rood_N : N;
+fun rood_tree_N : N;
+fun roof_N : N;
+fun roof_V2 : V2;
+fun roof_garden_N : N;
+fun roof_tree_N : N;
+fun roofing_N : N;
+fun roofless_A : A;
+fun rook_N : N;
+fun rook_V2 : V2;
+fun rookery_N : N;
+fun rookie_N : N;
+fun room_N : N;
+fun room_V : V;
+fun room_mate_N : N;
+fun roomed_A : A;
+fun roomer_N : N;
+fun roomful_N : N;
+fun roomily_Adv : Adv;
+fun roomy_A : A;
+fun roost_N : N;
+fun roost_V : V;
+fun rooster_N : N;
+fun root_N : N;
+fun root_V : V;
+fun root_V2 : V2;
+fun rootle_V : V;
+fun rootless_A : A;
+fun rope_N : N;
+fun rope_V2 : V2;
+fun rope_dancer_N : N;
+fun rope_ladder_N : N;
+fun rope_yard_N : N;
+fun rope_yarn_N : N;
+fun ropewalk_N : N;
+fun ropewalker_N : N;
+fun ropeway_N : N;
+fun ropey_A : A;
+fun roquefort_N : N;
+fun rosalie_PN : PN;
+fun rosalind_PN : PN;
+fun rosamund_PN : PN;
+fun rosario_PN : PN;
+fun rosary_N : N;
+fun roscommon_PN : PN;
+fun rose_N : N;
+fun rose_PN : PN;
+fun rose_bed_N : N;
+fun rose_leaf_N : N;
+fun rose_red_A : A;
+fun rose_water_N : N;
+fun roseate_A : A;
+fun rosebud_N : N;
+fun rosemary_N : N;
+fun rosemary_PN : PN;
+fun rosette_N : N;
+fun rosewood_N : N;
+fun rosie_PN : PN;
+fun rosin_N : N;
+fun rosin_V2 : V2;
+fun roslyn_PN : PN;
+fun ross_on_wye_PN : PN;
+fun rossington_PN : PN;
+fun rosslare_PN : PN;
+fun roster_N : N;
+fun rostock_PN : PN;
+fun rostov_na_donu_PN : PN;
+fun rostrum_N : N;
+fun rosy_A : A;
+fun rot_N : N;
+fun rot_V : V;
+fun rot_V2 : V2;
+fun rota_N : N;
+fun rotarian_N : N;
+fun rotary_A : A;
+fun rotary_N : N;
+fun rotate_V : V;
+fun rotate_V2 : V2;
+fun rotation_N : N;
+fun rotational_A : A;
+fun rotationally_Adv : Adv;
+fun rotatory_A : A;
+fun rote_N : N;
+fun rotgut_N : N;
+fun rotherham_PN : PN;
+fun rothesay_PN : PN;
+fun rothwell_PN : PN;
+fun rotisserie_N : N;
+fun rotogravure_N : N;
+fun rotor_N : N;
+fun rotten_A : A;
+fun rottenly_Adv : Adv;
+fun rottenness_N : N;
+fun rotter_N : N;
+fun rotterdam_PN : PN;
+fun rotund_A : A;
+fun rotunda_N : N;
+fun rotundity_N : N;
+fun rotundly_Adv : Adv;
+fun roubaix_PN : PN;
+fun rouble_N : N;
+fun rouen_PN : PN;
+fun rouge_N : N;
+fun rouge_V : V;
+fun rouge_V2 : V2;
+fun rough_A : A;
+fun rough_Adv : Adv;
+fun rough_N : N;
+fun rough_V2 : V2;
+fun rough_and_tumble_A : A;
+fun rough_and_tumble_N : N;
+fun rough_dry_V2 : V2;
+fun rough_hewn_A : A;
+fun rough_house_V : V;
+fun rough_house_V2 : V2;
+fun rough_spoken_A : A;
+fun roughage_N : N;
+fun roughcast_N : N;
+fun roughcast_V2 : V2;
+fun roughen_V : V;
+fun roughen_V2 : V2;
+fun roughish_A : A;
+fun roughly_Adv : Adv;
+fun roughneck_N : N;
+fun roughness_N : N;
+fun roughrider_N : N;
+fun roughshod_A : A;
+fun roulette_N : N;
+fun round_A : A;
+fun round_Adv : Adv;
+fun round_N : N;
+fun round_V : V;
+fun round_V2 : V2;
+fun round_arm_A : A;
+fun round_arm_Adv : Adv;
+fun round_backed_A : A;
+fun round_eyed_A : A;
+fun round_hand_N : N;
+fun round_shot_N : N;
+fun round_shouldered_A : A;
+fun round_the_clock_A : A;
+fun round_the_clock_Adv : Adv;
+fun roundabout_A : A;
+fun roundabout_N : N;
+fun roundel_N : N;
+fun roundelay_N : N;
+fun roundhead_N : N;
+fun roundhouse_N : N;
+fun roundish_A : A;
+fun roundly_Adv : Adv;
+fun roundness_N : N;
+fun roundsman_N : N;
+fun roundup_N : N;
+fun rouse_V : V;
+fun rouse_V2 : V2;
+fun rout_N : N;
+fun rout_V2 : V2;
+fun route_N : N;
+fun route_V2 : V2;
+fun routemarch_N : N;
+fun routine_A : A;
+fun routine_N : N;
+fun roue_N : N;
+fun rove_V : V;
+fun rove_V2 : V2;
+fun rover_N : N;
+fun row_N : N;
+fun row_V : V;
+fun row_V2 : V2;
+fun rowan_N : N;
+fun rowan_berry_N : N;
+fun rowan_tree_N : N;
+fun rowboat_N : N;
+fun rowdily_Adv : Adv;
+fun rowdiness_N : N;
+fun rowdy_A : A;
+fun rowdy_N : N;
+fun rowdyism_N : N;
+fun rowel_N : N;
+fun rower_N : N;
+fun rowing_N : N;
+fun rowing_boat_N : N;
+fun rowing_club_N : N;
+fun rowlands_gill_PN : PN;
+fun rowlock_N : N;
+fun roy_PN : PN;
+fun royal_A : A;
+fun royalist_N : N;
+fun royally_Adv : Adv;
+fun royalty_N : N;
+fun royston_PN : PN;
+fun rpm_N : N;
+fun rspca_N : N;
+fun rsvp_PN : PN;
+fun rt_hon_PN : PN;
+fun rub_N : N;
+fun rub_V : V;
+fun rub_V2 : V2;
+fun rub_a_dub_N : N;
+fun rub_down_N : N;
+fun rub_up_N : N;
+fun rubber_N : N;
+fun rubber_V2 : V2;
+fun rubber_stamp_V2 : V2;
+fun rubberize_V2 : V2;
+fun rubberneck_N : N;
+fun rubberneck_V : V;
+fun rubbery_A : A;
+fun rubbing_N : N;
+fun rubbish_N : N;
+fun rubbish_V2 : V2;
+fun rubbishing_N : N;
+fun rubbishy_A : A;
+fun rubble_N : N;
+fun rubicon_N : N;
+fun rubicund_A : A;
+fun rubric_N : N;
+fun ruby_A : A;
+fun ruby_N : N;
+fun ruck_N : N;
+fun ruck_V : V;
+fun ruck_V2 : V2;
+fun rucksack_N : N;
+fun ruckus_N : N;
+fun rudder_N : N;
+fun rudderless_A : A;
+fun ruddiness_N : N;
+fun ruddington_PN : PN;
+fun ruddle_N : N;
+fun ruddle_V2 : V2;
+fun ruddy_A : A;
+fun rude_A : A;
+fun rudely_Adv : Adv;
+fun rudeness_N : N;
+fun rudiment_N : N;
+fun rudimentary_A : A;
+fun rudolf_PN : PN;
+fun rudy_PN : PN;
+fun rue_N : N;
+fun rue_V2 : V2;
+fun rueful_A : A;
+fun ruefully_Adv : Adv;
+fun ruff_N : N;
+fun ruff_V : V;
+fun ruff_V2 : V2;
+fun ruffian_N : N;
+fun ruffianism_N : N;
+fun ruffianly_A : A;
+fun ruffle_N : N;
+fun ruffle_V : V;
+fun ruffle_V2 : V2;
+fun rug_N : N;
+fun rugby_N : N;
+fun rugby_PN : PN;
+fun rugeley_PN : PN;
+fun rugged_A : A;
+fun ruggedly_Adv : Adv;
+fun ruggedness_N : N;
+fun rugger_N : N;
+fun ruin_N : N;
+fun ruin_V2 : V2;
+fun ruination_N : N;
+fun ruinous_A : A;
+fun ruinously_Adv : Adv;
+fun rule_N : N;
+fun rule_V : V;
+fun rule_V2 : V2;
+fun ruler_N : N;
+fun ruling_A : A;
+fun ruling_N : N;
+fun rum_N : N;
+fun rum_runner_N : N;
+fun rumba_N : N;
+fun rumble_N : N;
+fun rumble_V : V;
+fun rumble_V2 : V2;
+fun rumbling_N : N;
+fun rumbustious_A : A;
+fun ruminant_A : A;
+fun ruminant_N : N;
+fun ruminate_V : V;
+fun rumination_N : N;
+fun ruminative_A : A;
+fun rummage_N : N;
+fun rummage_V : V;
+fun rummage_V2 : V2;
+fun rummy_A : A;
+fun rummy_N : N;
+fun rumour_N : N;
+fun rumour_V2 : V2;
+fun rumour_monger_N : N;
+fun rump_N : N;
+fun rump_steak_N : N;
+fun rumple_V2 : V2;
+fun rumpus_N : N;
+fun run_N : N;
+fun run_V : V;
+fun run_V2 : V2;
+fun run_of_the_mill_A : A;
+fun run_off_N : N;
+fun run_through_N : N;
+fun run_up_N : N;
+fun runaway_A : A;
+fun runaway_N : N;
+fun runcorn_PN : PN;
+fun rundown_A : A;
+fun rundown_N : N;
+fun rune_N : N;
+fun rung_N : N;
+fun runic_A : A;
+fun runnel_N : N;
+fun runner_N : N;
+fun runner_up_N : N;
+fun running_A : A;
+fun running_N : N;
+fun running_board_N : N;
+fun runny_A : A;
+fun runt_N : N;
+fun runway_N : N;
+fun rupee_N : N;
+fun rupert_PN : PN;
+fun rupiah_N : N;
+fun rupture_N : N;
+fun rupture_V : V;
+fun rupture_V2 : V2;
+fun rural_A : A;
+fun ruritanian_A : A;
+fun ruse_N : N;
+fun rush_N : N;
+fun rush_V : V;
+fun rush_V2 : V2;
+fun rushlight_N : N;
+fun rushy_A : A;
+fun rusk_N : N;
+fun russet_A : A;
+fun russet_N : N;
+fun russia_PN : PN;
+fun russian_A : A;
+fun russian_N : N;
+fun rust_N : N;
+fun rust_V : V;
+fun rust_V2 : V2;
+fun rustic_A : A;
+fun rustic_N : N;
+fun rusticate_V : V;
+fun rusticate_V2 : V2;
+fun rusticity_N : N;
+fun rustiness_N : N;
+fun rustle_N : N;
+fun rustle_V : V;
+fun rustle_V2 : V2;
+fun rustler_N : N;
+fun rustless_A : A;
+fun rustling_N : N;
+fun rusty_A : A;
+fun rut_N : N;
+fun rut_V2 : V2;
+fun ruth_PN : PN;
+fun rutherglen_PN : PN;
+fun ruthless_A : A;
+fun ruthlessly_Adv : Adv;
+fun ruthlessness_N : N;
+fun rutland_PN : PN;
+fun rwanda_PN : PN;
+fun rwandan_A : A;
+fun rwandan_N : N;
+fun ryde_PN : PN;
+fun rye_N : N;
+fun rye_bread_N : N;
+fun ryehill_PN : PN;
+fun rechauffe_N : N;
+fun regime_2_N : N;
+fun resume_N : N;
+fun role_2_N : N;
+fun rontgen_N : N;
+fun saarbrucken_PN : PN;
+fun sabadeli_PN : PN;
+fun sabah_PN : PN;
+fun sabahan_A : A;
+fun sabahan_N : N;
+fun sabbatarian_A : A;
+fun sabbatarian_N : N;
+fun sabbath_N : N;
+fun sabbatical_A : A;
+fun sabbatical_N : N;
+fun sable_A : A;
+fun sable_N : N;
+fun sabot_N : N;
+fun sabotage_N : N;
+fun sabotage_V2 : V2;
+fun saboteur_N : N;
+fun sabre_N : N;
+fun sabre_V2 : V2;
+fun sabre_rattling_N : N;
+fun sabre_toothed_A : A;
+fun sac_N : N;
+fun saccharin_N : N;
+fun saccharine_A : A;
+fun sacerdotal_A : A;
+fun sacerdotalism_N : N;
+fun sachet_N : N;
+fun sack_N : N;
+fun sack_V2 : V2;
+fun sack_race_N : N;
+fun sackbut_N : N;
+fun sackcloth_N : N;
+fun sacking_N : N;
+fun sacrament_N : N;
+fun sacramental_A : A;
+fun sacramento_PN : PN;
+fun sacred_A : A;
+fun sacredly_Adv : Adv;
+fun sacredness_N : N;
+fun sacrifice_N : N;
+fun sacrifice_V : V;
+fun sacrifice_V2 : V2;
+fun sacrificial_A : A;
+fun sacrilege_N : N;
+fun sacrilegious_A : A;
+fun sacristan_N : N;
+fun sacristy_N : N;
+fun sacrosanct_A : A;
+fun sad_A : A;
+fun sadden_V : V;
+fun sadden_V2 : V2;
+fun saddle_N : N;
+fun saddle_V2 : V2;
+fun saddle_sore_A : A;
+fun saddlebag_N : N;
+fun saddler_N : N;
+fun saddlery_N : N;
+fun sadhu_N : N;
+fun sadism_N : N;
+fun sadist_N : N;
+fun sadistic_A : A;
+fun sadly_Adv : Adv;
+fun sadness_N : N;
+fun sado_masochist_N : N;
+fun sadomasochism_N : N;
+fun sae_N : N;
+fun safari_N : N;
+fun safe_A : A;
+fun safe_N : N;
+fun safe_conduct_N : N;
+fun safe_deposit_A : A;
+fun safe_deposit_N : N;
+fun safecracker_N : N;
+fun safeguard_N : N;
+fun safeguard_V2 : V2;
+fun safekeeping_N : N;
+fun safely_Adv : Adv;
+fun safeness_N : N;
+fun safety_N : N;
+fun safety_belt_N : N;
+fun safety_bolt_N : N;
+fun safety_catch_N : N;
+fun safety_curtain_N : N;
+fun safety_factor_N : N;
+fun safety_lamp_N : N;
+fun safety_lock_N : N;
+fun safety_match_N : N;
+fun safety_pin_N : N;
+fun safety_razor_N : N;
+fun safety_valve_N : N;
+fun saffron_N : N;
+fun saffron_walden_PN : PN;
+fun sag_N : N;
+fun sag_V : V;
+fun saga_N : N;
+fun sagacious_A : A;
+fun sagaciously_Adv : Adv;
+fun sagacity_N : N;
+fun sage_A : A;
+fun sage_N : N;
+fun sage_green_A : A;
+fun sage_green_N : N;
+fun sagely_Adv : Adv;
+fun sagittarius_PN : PN;
+fun sago_N : N;
+fun sahib_N : N;
+fun said_A : A;
+fun saigon_PN : PN;
+fun sail_N : N;
+fun sail_V : V;
+fun sail_V2 : V2;
+fun sailcloth_N : N;
+fun sailing_N : N;
+fun sailing_boat_N : N;
+fun sailing_master_N : N;
+fun sailing_ship_N : N;
+fun sailing_vessel_N : N;
+fun sailor_N : N;
+fun saint's_day_N : N;
+fun saint_N : N;
+fun sainted_A : A;
+fun sainthood_N : N;
+fun saintlike_A : A;
+fun saintliness_N : N;
+fun saintly_A : A;
+fun sake_1_N : N;
+fun sake_2_N : N;
+fun sal_volatile_N : N;
+fun salaam_N : N;
+fun salaam_V : V;
+fun salable_A : A;
+fun salacious_A : A;
+fun salaciously_Adv : Adv;
+fun salaciousness_N : N;
+fun salacity_N : N;
+fun salad_N : N;
+fun salad_dressing_N : N;
+fun salad_oil_N : N;
+fun salamanca_PN : PN;
+fun salamander_N : N;
+fun salami_N : N;
+fun salaried_A : A;
+fun salary_N : N;
+fun sale_N : N;
+fun sale_PN : PN;
+fun saleable_A : A;
+fun salerno_PN : PN;
+fun saleroom_N : N;
+fun salesman_N : N;
+fun salesmanship_N : N;
+fun saleswoman_N : N;
+fun salford_PN : PN;
+fun salience_N : N;
+fun salient_A : A;
+fun salient_N : N;
+fun saline_A : A;
+fun saline_N : N;
+fun salinity_N : N;
+fun salisbury_PN : PN;
+fun saliva_N : N;
+fun salivary_A : A;
+fun salivate_V : V;
+fun sallow_A : A;
+fun sallow_V : V;
+fun sallow_V2 : V2;
+fun sally_N : N;
+fun sally_PN : PN;
+fun sally_V : V;
+fun salmon_N : N;
+fun salon_N : N;
+fun saloon_N : N;
+fun salsify_N : N;
+fun salt_A : A;
+fun salt_N : N;
+fun salt_PN : PN;
+fun salt_V2 : V2;
+fun salt_cellar_N : N;
+fun salt_lick_N : N;
+fun saltash_PN : PN;
+fun saltburn_PN : PN;
+fun saltcoats_PN : PN;
+fun saltiness_N : N;
+fun saltpan_N : N;
+fun saltpetre_N : N;
+fun saltwater_N : N;
+fun saltworks_N : N;
+fun salty_A : A;
+fun salubrious_A : A;
+fun salubrity_N : N;
+fun salutary_A : A;
+fun salutation_N : N;
+fun salute_N : N;
+fun salute_V : V;
+fun salute_V2 : V2;
+fun salvador_PN : PN;
+fun salvadorean_A : A;
+fun salvadorean_N : N;
+fun salvage_N : N;
+fun salvage_V2 : V2;
+fun salvation_N : N;
+fun salve_N : N;
+fun salve_V2 : V2;
+fun salver_N : N;
+fun salvia_N : N;
+fun salvo_N : N;
+fun salzburg_PN : PN;
+fun sam_PN : PN;
+fun samantha_PN : PN;
+fun samaritan_N : N;
+fun samba_N : N;
+fun same_A : A;
+fun same_Adv : Adv;
+fun sameness_N : N;
+fun sammy_PN : PN;
+fun samoa_PN : PN;
+fun samoan_A : A;
+fun samoan_N : N;
+fun samovar_N : N;
+fun sampan_N : N;
+fun sample_N : N;
+fun sample_V2 : V2;
+fun sampler_N : N;
+fun samuel_PN : PN;
+fun samurai_N : N;
+fun san_antonio_PN : PN;
+fun san_bernardino_PN : PN;
+fun san_diego_PN : PN;
+fun san_francisco_PN : PN;
+fun san_jose_PN : PN;
+fun san_juan_PN : PN;
+fun san_marinese_A : A;
+fun san_marinese_N : N;
+fun san_marino_PN : PN;
+fun san_sebastian_PN : PN;
+fun sanatorium_N : N;
+fun sanctification_N : N;
+fun sanctify_V2 : V2;
+fun sanctimonious_A : A;
+fun sanctimoniously_Adv : Adv;
+fun sanction_N : N;
+fun sanction_V2 : V2;
+fun sanctity_N : N;
+fun sanctuary_N : N;
+fun sanctum_N : N;
+fun sand_N : N;
+fun sand_V2 : V2;
+fun sand_bar_N : N;
+fun sandal_N : N;
+fun sandalled_A : A;
+fun sandalwood_N : N;
+fun sandbach_PN : PN;
+fun sandbag_N : N;
+fun sandbank_N : N;
+fun sandblast_V2 : V2;
+fun sandboy_N : N;
+fun sandfly_N : N;
+fun sandglass_N : N;
+fun sandiness_N : N;
+fun sandown_PN : PN;
+fun sandpaper_N : N;
+fun sandpaper_V2 : V2;
+fun sandpiper_N : N;
+fun sandpit_N : N;
+fun sandra_PN : PN;
+fun sandstone_N : N;
+fun sandstorm_N : N;
+fun sandwich_N : N;
+fun sandwich_V2 : V2;
+fun sandwich_board_N : N;
+fun sandwichman_N : N;
+fun sandy_A : A;
+fun sandy_PN : PN;
+fun sane_A : A;
+fun sanely_Adv : Adv;
+fun sang_froid_N : N;
+fun sango_N : N;
+fun sanguinary_A : A;
+fun sanguine_A : A;
+fun sanitary_A : A;
+fun sanitation_N : N;
+fun sanity_N : N;
+fun sanskrit_N : N;
+fun santa_claus_N : N;
+fun santa_claus_PN : PN;
+fun santander_PN : PN;
+fun santiago_PN : PN;
+fun santo_domingo_PN : PN;
+fun santos_PN : PN;
+fun sao_paolo_PN : PN;
+fun sap_N : N;
+fun sap_V : V;
+fun sap_V2 : V2;
+fun saphead_N : N;
+fun sapience_N : N;
+fun sapient_A : A;
+fun sapiently_Adv : Adv;
+fun sapless_A : A;
+fun sapling_N : N;
+fun sapper_N : N;
+fun sapphic_A : A;
+fun sapphire_N : N;
+fun sapporo_PN : PN;
+fun sappy_A : A;
+fun sapwood_N : N;
+fun sara_PN : PN;
+fun saraband_N : N;
+fun saracen_N : N;
+fun sarah_PN : PN;
+fun sarajevo_PN : PN;
+fun saratov_PN : PN;
+fun sarawak_PN : PN;
+fun sarawakian_A : A;
+fun sarawakian_N : N;
+fun sarcasm_N : N;
+fun sarcastic_A : A;
+fun sarcastically_Adv : Adv;
+fun sarcophagus_N : N;
+fun sardine_N : N;
+fun sardonic_A : A;
+fun sardonically_Adv : Adv;
+fun sari_N : N;
+fun sarisbury_PN : PN;
+fun sarong_N : N;
+fun sarsaparilla_N : N;
+fun sartorial_A : A;
+fun sash_N : N;
+fun sash_cord_N : N;
+fun sash_line_N : N;
+fun saskatchewan_PN : PN;
+fun sassari_PN : PN;
+fun sassenach_N : N;
+fun sat_PN : PN;
+fun satan_N : N;
+fun satanic_A : A;
+fun satchel_N : N;
+fun sate_V2 : V2;
+fun sateen_N : N;
+fun satellite_N : N;
+fun satiable_A : A;
+fun satiate_V2 : V2;
+fun satiety_N : N;
+fun satin_A : A;
+fun satin_N : N;
+fun satinwood_N : N;
+fun satire_N : N;
+fun satirical_A : A;
+fun satirically_Adv : Adv;
+fun satirist_N : N;
+fun satirize_V2 : V2;
+fun satisfaction_N : N;
+fun satisfactorily_Adv : Adv;
+fun satisfactory_A : A;
+fun satisfy_V : V;
+fun satisfy_V2 : V2;
+fun satisfying_A : A;
+fun satisfyingly_Adv : Adv;
+fun satrap_N : N;
+fun satsuma_N : N;
+fun saturate_V2 : V2;
+fun saturation_N : N;
+fun saturday_N : N;
+fun saturday_PN : PN;
+fun saturn_PN : PN;
+fun saturnalia_N : N;
+fun saturnine_A : A;
+fun satyr_N : N;
+fun satyric_A : A;
+fun sauce_N : N;
+fun sauce_V2 : V2;
+fun sauce_boat_N : N;
+fun saucepan_N : N;
+fun saucer_N : N;
+fun saucer_eyed_A : A;
+fun sauchie_PN : PN;
+fun saucily_Adv : Adv;
+fun sauciness_N : N;
+fun saucy_A : A;
+fun saudi_arabia_PN : PN;
+fun saudi_arabian_A : A;
+fun saudi_arabian_N : N;
+fun sauerkraut_N : N;
+fun sauna_N : N;
+fun saunter_N : N;
+fun saunter_V : V;
+fun saunterer_N : N;
+fun saurian_A : A;
+fun saurian_N : N;
+fun sausage_N : N;
+fun sausage_dog_N : N;
+fun sausage_meat_N : N;
+fun sausage_roll_N : N;
+fun saute_A : A;
+fun saute_V2 : V2;
+fun savage_A : A;
+fun savage_N : N;
+fun savage_V2 : V2;
+fun savagely_Adv : Adv;
+fun savageness_N : N;
+fun savagery_N : N;
+fun savanna_N : N;
+fun savannah_N : N;
+fun savant_N : N;
+fun save_N : N;
+fun save_V : V;
+fun save_V2 : V2;
+fun saveloy_N : N;
+fun saver_N : N;
+fun saving_A : A;
+fun saving_N : N;
+fun savings_bank_N : N;
+fun saviour_N : N;
+fun savoir_faire_N : N;
+fun savory_N : N;
+fun savour_N : N;
+fun savour_V : V;
+fun savour_V2 : V2;
+fun savoury_A : A;
+fun savoury_N : N;
+fun savoy_N : N;
+fun savvy_N : N;
+fun savvy_V : V;
+fun saw_N : N;
+fun saw_V : V;
+fun saw_V2 : V2;
+fun saw_pit_N : N;
+fun sawbridgeworth_PN : PN;
+fun sawdust_N : N;
+fun sawhorse_N : N;
+fun sawmill_N : N;
+fun sawyer_N : N;
+fun sax_N : N;
+fun saxhorn_N : N;
+fun saxifrage_N : N;
+fun saxon_A : A;
+fun saxon_N : N;
+fun saxophone_N : N;
+fun saxophonist_N : N;
+fun say_N : N;
+fun say_V : V;
+fun say_V2 : V2;
+fun saying_N : N;
+fun scab_N : N;
+fun scabbard_N : N;
+fun scabby_A : A;
+fun scabies_N : N;
+fun scabious_N : N;
+fun scabrous_A : A;
+fun scaffold_N : N;
+fun scaffolding_N : N;
+fun scalawag_N : N;
+fun scald_N : N;
+fun scald_V2 : V2;
+fun scale_N : N;
+fun scale_V : V;
+fun scale_V2 : V2;
+fun scaling_ladder_N : N;
+fun scallop_N : N;
+fun scallop_V2 : V2;
+fun scallop_shell_N : N;
+fun scallywag_N : N;
+fun scalp_N : N;
+fun scalp_V2 : V2;
+fun scalpel_N : N;
+fun scaly_A : A;
+fun scamp_N : N;
+fun scamp_V2 : V2;
+fun scamper_N : N;
+fun scamper_V : V;
+fun scan_V : V;
+fun scan_V2 : V2;
+fun scandal_N : N;
+fun scandalize_V2 : V2;
+fun scandalmonger_N : N;
+fun scandalmongering_N : N;
+fun scandalous_A : A;
+fun scandalously_Adv : Adv;
+fun scandinavian_A : A;
+fun scandinavian_N : N;
+fun scanner_N : N;
+fun scansion_N : N;
+fun scant_A : A;
+fun scant_V2 : V2;
+fun scantily_Adv : Adv;
+fun scantiness_N : N;
+fun scantling_N : N;
+fun scanty_A : A;
+fun scapegoat_N : N;
+fun scapegrace_N : N;
+fun scapula_N : N;
+fun scar_N : N;
+fun scar_V : V;
+fun scar_V2 : V2;
+fun scarab_N : N;
+fun scarborough_PN : PN;
+fun scarce_A : A;
+fun scarcely_Adv : Adv;
+fun scarcity_N : N;
+fun scare_N : N;
+fun scare_V : V;
+fun scare_V2 : V2;
+fun scarecrow_N : N;
+fun scaremonger_N : N;
+fun scarf_N : N;
+fun scarf_pin_N : N;
+fun scarify_V2 : V2;
+fun scarlet_A : A;
+fun scarlet_N : N;
+fun scarp_N : N;
+fun scarper_V : V;
+fun scary_A : A;
+fun scathing_A : A;
+fun scathingly_Adv : Adv;
+fun scatter_N : N;
+fun scatter_V : V;
+fun scatter_V2 : V2;
+fun scatterbrain_N : N;
+fun scatterbrained_A : A;
+fun scattered_A : A;
+fun scatty_A : A;
+fun scavenge_V : V;
+fun scavenger_N : N;
+fun scenario_N : N;
+fun scenarist_N : N;
+fun scene_N : N;
+fun scene_painter_N : N;
+fun scene_shifter_N : N;
+fun scenery_N : N;
+fun scenic_A : A;
+fun scenically_Adv : Adv;
+fun scent_N : N;
+fun scent_V2 : V2;
+fun scentless_A : A;
+fun sceptered_A : A;
+fun sceptic_N : N;
+fun sceptical_A : A;
+fun sceptically_Adv : Adv;
+fun scepticism_N : N;
+fun sceptre_N : N;
+fun sceptred_A : A;
+fun schedule_N : N;
+fun schedule_V2 : V2;
+fun schema_N : N;
+fun schematic_A : A;
+fun schematically_Adv : Adv;
+fun scheme_N : N;
+fun scheme_V : V;
+fun scheme_V2 : V2;
+fun schemer_N : N;
+fun scherzo_N : N;
+fun schism_N : N;
+fun schismatic_A : A;
+fun schist_N : N;
+fun schizoid_A : A;
+fun schizophrenia_N : N;
+fun schizophrenic_A : A;
+fun schizophrenic_N : N;
+fun schmaltz_N : N;
+fun schmaltzy_A : A;
+fun schmalz_N : N;
+fun schmalzy_A : A;
+fun schnapps_N : N;
+fun schnitzel_N : N;
+fun schnorkel_N : N;
+fun scholar_N : N;
+fun scholarly_A : A;
+fun scholarship_N : N;
+fun scholastic_A : A;
+fun scholasticism_N : N;
+fun school_N : N;
+fun school_V2 : V2;
+fun school_board_N : N;
+fun schoolbook_N : N;
+fun schoolboy_N : N;
+fun schoolchild_N : N;
+fun schoolfellow_N : N;
+fun schoolfriend_N : N;
+fun schoolgirl_N : N;
+fun schoolhouse_N : N;
+fun schooling_N : N;
+fun schoolman_N : N;
+fun schoolmaster_N : N;
+fun schoolmate_N : N;
+fun schoolmistress_N : N;
+fun schoolroom_N : N;
+fun schoolteacher_N : N;
+fun schooltime_N : N;
+fun schooner_N : N;
+fun schottische_N : N;
+fun schwa_N : N;
+fun schwerin_PN : PN;
+fun sci_fi_N : N;
+fun sciatic_A : A;
+fun sciatica_N : N;
+fun science_N : N;
+fun scientific_A : A;
+fun scientifically_Adv : Adv;
+fun scientist_N : N;
+fun scimitar_N : N;
+fun scintilla_N : N;
+fun scintillate_V : V;
+fun scintillation_N : N;
+fun scion_N : N;
+fun sclerosis_N : N;
+fun scoff_N : N;
+fun scoff_V : V;
+fun scoff_V2 : V2;
+fun scoffer_N : N;
+fun scoffingly_Adv : Adv;
+fun scold_N : N;
+fun scold_V : V;
+fun scold_V2 : V2;
+fun scolding_N : N;
+fun scollop_N : N;
+fun scollop_V2 : V2;
+fun sconce_N : N;
+fun scone_N : N;
+fun scoop_N : N;
+fun scoop_V2 : V2;
+fun scoopful_N : N;
+fun scoot_V : V;
+fun scooter_N : N;
+fun scope_N : N;
+fun scorbutic_A : A;
+fun scorch_N : N;
+fun scorch_V : V;
+fun scorch_V2 : V2;
+fun scorcher_N : N;
+fun scorching_A : A;
+fun scorching_Adv : Adv;
+fun score_N : N;
+fun score_V : V;
+fun score_V2 : V2;
+fun scoreboard_N : N;
+fun scorebook_N : N;
+fun scorecard_N : N;
+fun scorer_N : N;
+fun scorn_N : N;
+fun scorn_V2 : V2;
+fun scornful_A : A;
+fun scornfully_Adv : Adv;
+fun scorpio_PN : PN;
+fun scorpion_N : N;
+fun scot_N : N;
+fun scot_free_Adv : Adv;
+fun scotch_A : A;
+fun scotch_N : N;
+fun scotch_V2 : V2;
+fun scotchman_N : N;
+fun scotchwoman_N : N;
+fun scotland_PN : PN;
+fun scotland_yard_PN : PN;
+fun scots_A : A;
+fun scotsman_N : N;
+fun scotswoman_N : N;
+fun scottish_A : A;
+fun scoundrel_N : N;
+fun scoundrelly_A : A;
+fun scour_N : N;
+fun scour_V : V;
+fun scour_V2 : V2;
+fun scourer_N : N;
+fun scourge_N : N;
+fun scourge_V2 : V2;
+fun scout_N : N;
+fun scout_V : V;
+fun scout_V2 : V2;
+fun scoutmaster_N : N;
+fun scow_N : N;
+fun scowl_N : N;
+fun scowl_V : V;
+fun scrabble_N : N;
+fun scrabble_V : V;
+fun scrag_N : N;
+fun scrag_V2 : V2;
+fun scrag_end_N : N;
+fun scraggy_A : A;
+fun scram_V : V;
+fun scramble_N : N;
+fun scramble_V : V;
+fun scramble_V2 : V2;
+fun scrambler_N : N;
+fun scrap_N : N;
+fun scrap_V2 : V2;
+fun scrap_iron_N : N;
+fun scrapbook_N : N;
+fun scrape_N : N;
+fun scrape_V : V;
+fun scrape_V2 : V2;
+fun scraper_N : N;
+fun scrapheap_N : N;
+fun scraping_N : N;
+fun scrappily_Adv : Adv;
+fun scrappiness_N : N;
+fun scrappy_A : A;
+fun scratch_N : N;
+fun scratch_V : V;
+fun scratch_V2 : V2;
+fun scratch_pad_N : N;
+fun scratch_race_N : N;
+fun scratchy_A : A;
+fun scrawl_N : N;
+fun scrawl_V : V;
+fun scrawl_V2 : V2;
+fun scrawny_A : A;
+fun scream_N : N;
+fun scream_V : V;
+fun scream_V2 : V2;
+fun screamingly_Adv : Adv;
+fun scree_N : N;
+fun screech_N : N;
+fun screech_V : V;
+fun screech_V2 : V2;
+fun screech_owl_N : N;
+fun screed_N : N;
+fun screen_N : N;
+fun screen_V : V;
+fun screen_V2 : V2;
+fun screw_N : N;
+fun screw_V : V;
+fun screw_V2 : V2;
+fun screw_topped_A : A;
+fun screwball_A : A;
+fun screwball_N : N;
+fun screwdriver_N : N;
+fun screwy_A : A;
+fun scribble_N : N;
+fun scribble_V : V;
+fun scribble_V2 : V2;
+fun scribbler_N : N;
+fun scribbling_block_N : N;
+fun scribe_N : N;
+fun scrimmage_N : N;
+fun scrimmage_V : V;
+fun scrimmage_V2 : V2;
+fun scrimp_V : V;
+fun scrimp_V2 : V2;
+fun scrimshank_V : V;
+fun scrimshanker_N : N;
+fun scrip_N : N;
+fun script_N : N;
+fun scripted_A : A;
+fun scriptural_A : A;
+fun scripture_N : N;
+fun scriptwriter_N : N;
+fun scrivener_N : N;
+fun scrofula_N : N;
+fun scrofulous_A : A;
+fun scroll_N : N;
+fun scrooge_N : N;
+fun scrotum_N : N;
+fun scrounge_V : V;
+fun scrounge_V2 : V2;
+fun scrounger_N : N;
+fun scrub_N : N;
+fun scrub_V : V;
+fun scrub_V2 : V2;
+fun scrubbing_brush_N : N;
+fun scrubby_A : A;
+fun scruff_N : N;
+fun scruffy_A : A;
+fun scrum_N : N;
+fun scrummage_N : N;
+fun scrumptious_A : A;
+fun scrunch_N : N;
+fun scrunch_V2 : V2;
+fun scruple_N : N;
+fun scruple_V : V;
+fun scrupulous_A : A;
+fun scrupulously_Adv : Adv;
+fun scrutineer_N : N;
+fun scrutinize_V2 : V2;
+fun scrutiny_N : N;
+fun scud_N : N;
+fun scud_V : V;
+fun scuff_V : V;
+fun scuff_V2 : V2;
+fun scuffle_V : V;
+fun scull_N : N;
+fun scull_V : V;
+fun scull_V2 : V2;
+fun sculler_N : N;
+fun scullery_N : N;
+fun scullion_N : N;
+fun sculpt_V : V;
+fun sculpt_V2 : V2;
+fun sculptor_N : N;
+fun sculptress_N : N;
+fun sculptural_A : A;
+fun sculpture_N : N;
+fun sculpture_V : V;
+fun sculpture_V2 : V2;
+fun scum_N : N;
+fun scummy_A : A;
+fun scunthorpe_PN : PN;
+fun scupper_N : N;
+fun scupper_V2 : V2;
+fun scurf_N : N;
+fun scurfy_A : A;
+fun scurrility_N : N;
+fun scurrilous_A : A;
+fun scurrilously_Adv : Adv;
+fun scurry_N : N;
+fun scurry_V : V;
+fun scurvily_Adv : Adv;
+fun scurvy_A : A;
+fun scurvy_N : N;
+fun scut_N : N;
+fun scutcheon_N : N;
+fun scuttle_N : N;
+fun scuttle_V : V;
+fun scuttle_V2 : V2;
+fun scylla_N : N;
+fun scythe_N : N;
+fun scythe_V2 : V2;
+fun sea_N : N;
+fun sea_anemone_N : N;
+fun sea_animal_N : N;
+fun sea_bathing_N : N;
+fun sea_boat_N : N;
+fun sea_bream_N : N;
+fun sea_breeze_N : N;
+fun sea_coal_N : N;
+fun sea_cow_N : N;
+fun sea_dog_N : N;
+fun sea_fish_N : N;
+fun sea_girt_A : A;
+fun sea_god_N : N;
+fun sea_green_A : A;
+fun sea_green_N : N;
+fun sea_horse_N : N;
+fun sea_level_N : N;
+fun sea_lion_N : N;
+fun sea_power_N : N;
+fun sea_rover_N : N;
+fun sea_snake_N : N;
+fun sea_urchin_N : N;
+fun sea_wall_N : N;
+fun sea_water_N : N;
+fun seabed_N : N;
+fun seabird_N : N;
+fun seaboard_N : N;
+fun seaborne_A : A;
+fun seafarer_N : N;
+fun seafaring_A : A;
+fun seafood_N : N;
+fun seaford_PN : PN;
+fun seafront_N : N;
+fun seagoing_A : A;
+fun seagull_N : N;
+fun seaham_PN : PN;
+fun seakale_N : N;
+fun seal_N : N;
+fun seal_V : V;
+fun seal_V2 : V2;
+fun seal_ring_N : N;
+fun sealer_N : N;
+fun sealing_wax_N : N;
+fun sealskin_N : N;
+fun sealyham_N : N;
+fun seam_N : N;
+fun seam_V2 : V2;
+fun seaman_N : N;
+fun seamanlike_A : A;
+fun seamanship_N : N;
+fun seamless_A : A;
+fun seamstress_N : N;
+fun seamus_PN : PN;
+fun seamy_A : A;
+fun sean_PN : PN;
+fun seaplane_N : N;
+fun seaport_N : N;
+fun sear_A : A;
+fun sear_V2 : V2;
+fun search_N : N;
+fun search_V : V;
+fun search_V2 : V2;
+fun search_party_N : N;
+fun search_warrant_N : N;
+fun searcher_N : N;
+fun searching_A : A;
+fun searchingly_Adv : Adv;
+fun searchlight_N : N;
+fun searing_iron_N : N;
+fun seascape_N : N;
+fun seashell_N : N;
+fun seashore_N : N;
+fun seasick_A : A;
+fun seasickness_N : N;
+fun seaside_N : N;
+fun season_N : N;
+fun season_V : V;
+fun season_V2 : V2;
+fun season_ticket_N : N;
+fun seasonable_A : A;
+fun seasonal_A : A;
+fun seasonally_Adv : Adv;
+fun seasoning_N : N;
+fun seat_N : N;
+fun seat_V2 : V2;
+fun seat_belt_N : N;
+fun seating_room_N : N;
+fun seaton_burn_PN : PN;
+fun seaton_delaval_PN : PN;
+fun seattle_PN : PN;
+fun seaward_A : A;
+fun seawards_Adv : Adv;
+fun seaway_N : N;
+fun seaweed_N : N;
+fun seaworthiness_N : N;
+fun seaworthy_A : A;
+fun sec_N : N;
+fun secede_V : V;
+fun secession_N : N;
+fun secessionist_N : N;
+fun seclude_V2 : V2;
+fun secluded_A : A;
+fun seclusion_N : N;
+fun second_N : N;
+fun second_V2 : V2;
+fun second_best_A : A;
+fun second_best_Adv : Adv;
+fun second_best_N : N;
+fun second_class_A : A;
+fun second_class_Adv : Adv;
+fun second_class_N : N;
+fun second_hand_A : A;
+fun second_hand_N : N;
+fun second_rate_A : A;
+fun second_rater_N : N;
+fun second_sighted_A : A;
+fun secondarily_Adv : Adv;
+fun secondary_A : A;
+fun seconder_N : N;
+fun secondly_Adv : Adv;
+fun secondment_N : N;
+fun secrecy_N : N;
+fun secret_A : A;
+fun secret_N : N;
+fun secretarial_A : A;
+fun secretariat_N : N;
+fun secretary_N : N;
+fun secretary_general_N : N;
+fun secrete_V2 : V2;
+fun secretion_N : N;
+fun secretive_A : A;
+fun secretively_Adv : Adv;
+fun secretiveness_N : N;
+fun secretly_Adv : Adv;
+fun sect_N : N;
+fun sectarian_A : A;
+fun sectarian_N : N;
+fun sectarianism_N : N;
+fun section_N : N;
+fun sectional_A : A;
+fun sectionalism_N : N;
+fun sector_N : N;
+fun secular_A : A;
+fun secularism_N : N;
+fun secularist_N : N;
+fun secularize_V2 : V2;
+fun secure_A : A;
+fun secure_V2 : V2;
+fun securely_Adv : Adv;
+fun securicor_PN : PN;
+fun security_N : N;
+fun sedan_N : N;
+fun sedan_chair_N : N;
+fun sedate_A : A;
+fun sedate_V2 : V2;
+fun sedately_Adv : Adv;
+fun sedateness_N : N;
+fun sedation_N : N;
+fun sedative_A : A;
+fun sedative_N : N;
+fun sedentary_A : A;
+fun sedge_N : N;
+fun sedgy_A : A;
+fun sediment_N : N;
+fun sedimentary_A : A;
+fun sedition_N : N;
+fun seditious_A : A;
+fun seduce_V2 : V2;
+fun seducer_N : N;
+fun seduction_N : N;
+fun seductive_A : A;
+fun seductively_Adv : Adv;
+fun sedulous_A : A;
+fun sedulously_Adv : Adv;
+fun see_N : N;
+fun see_V : V;
+fun see_V2 : V2;
+fun see_through_A : A;
+fun seed_N : N;
+fun seed_V : V;
+fun seed_V2 : V2;
+fun seed_corn_N : N;
+fun seedbed_N : N;
+fun seedcake_N : N;
+fun seedily_Adv : Adv;
+fun seediness_N : N;
+fun seedless_A : A;
+fun seedling_N : N;
+fun seedsman_N : N;
+fun seedtime_N : N;
+fun seedy_A : A;
+fun seek_V2 : V2;
+fun seeker_N : N;
+fun seem_V : V;
+fun seeming_A : A;
+fun seemingly_Adv : Adv;
+fun seemliness_N : N;
+fun seemly_A : A;
+fun seep_V : V;
+fun seepage_N : N;
+fun seer_N : N;
+fun seersucker_N : N;
+fun seesaw_N : N;
+fun seesaw_V : V;
+fun seethe_V : V;
+fun seethe_V2 : V2;
+fun segment_N : N;
+fun segment_V : V;
+fun segment_V2 : V2;
+fun segmentation_N : N;
+fun segregate_V2 : V2;
+fun segregation_N : N;
+fun seignior_N : N;
+fun seine_N : N;
+fun seine_V : V;
+fun seine_V2 : V2;
+fun seismic_A : A;
+fun seismograph_N : N;
+fun seismologist_N : N;
+fun seismology_N : N;
+fun seize_V : V;
+fun seize_V2 : V2;
+fun seizure_N : N;
+fun selby_PN : PN;
+fun seldom_Adv : Adv;
+fun select_A : A;
+fun select_V2 : V2;
+fun selection_N : N;
+fun selective_A : A;
+fun selectively_Adv : Adv;
+fun selectivity_N : N;
+fun selector_N : N;
+fun selenium_N : N;
+fun self_N : N;
+fun self_abasement_N : N;
+fun self_abnegation_N : N;
+fun self_absorbed_A : A;
+fun self_acting_A : A;
+fun self_activating_A : A;
+fun self_addressed_A : A;
+fun self_appointed_A : A;
+fun self_assertion_N : N;
+fun self_assertive_A : A;
+fun self_assurance_N : N;
+fun self_assured_A : A;
+fun self_centred_A : A;
+fun self_collected_A : A;
+fun self_coloured_A : A;
+fun self_command_N : N;
+fun self_communion_N : N;
+fun self_complacency_N : N;
+fun self_confessed_A : A;
+fun self_confidence_N : N;
+fun self_confident_A : A;
+fun self_conscious_A : A;
+fun self_consciousness_N : N;
+fun self_contained_A : A;
+fun self_control_N : N;
+fun self_defence_N : N;
+fun self_denial_N : N;
+fun self_denying_A : A;
+fun self_determination_N : N;
+fun self_educated_A : A;
+fun self_effacing_A : A;
+fun self_employed_A : A;
+fun self_esteem_N : N;
+fun self_evident_A : A;
+fun self_examination_N : N;
+fun self_explanatory_A : A;
+fun self_help_N : N;
+fun self_importance_N : N;
+fun self_important_A : A;
+fun self_imposed_A : A;
+fun self_indulgence_N : N;
+fun self_indulgent_A : A;
+fun self_interest_N : N;
+fun self_locking_A : A;
+fun self_made_A : A;
+fun self_opinionated_A : A;
+fun self_pity_N : N;
+fun self_possessed_A : A;
+fun self_possession_N : N;
+fun self_preservation_N : N;
+fun self_raising_A : A;
+fun self_reliance_N : N;
+fun self_reliant_A : A;
+fun self_respect_N : N;
+fun self_respecting_A : A;
+fun self_righteous_A : A;
+fun self_rule_N : N;
+fun self_sacrifice_N : N;
+fun self_sacrificing_A : A;
+fun self_same_A : A;
+fun self_sealing_A : A;
+fun self_seeker_N : N;
+fun self_seeking_A : A;
+fun self_seeking_N : N;
+fun self_service_N : N;
+fun self_sown_A : A;
+fun self_starter_N : N;
+fun self_styled_A : A;
+fun self_sufficiency_N : N;
+fun self_sufficient_A : A;
+fun self_sufficing_A : A;
+fun self_supporting_A : A;
+fun self_will_N : N;
+fun self_willed_A : A;
+fun self_winding_A : A;
+fun selfconsciously_Adv : Adv;
+fun selfish_A : A;
+fun selfishly_Adv : Adv;
+fun selfishness_N : N;
+fun selkirk_PN : PN;
+fun sell_N : N;
+fun sell_V : V;
+fun sell_V2 : V2;
+fun seller_N : N;
+fun selling_N : N;
+fun sellout_N : N;
+fun selsey_PN : PN;
+fun selston_PN : PN;
+fun selvage_N : N;
+fun selvedge_N : N;
+fun semantic_A : A;
+fun semantics_N : N;
+fun semaphore_N : N;
+fun semaphore_V : V;
+fun semaphore_V2 : V2;
+fun semarang_PN : PN;
+fun semblance_N : N;
+fun semen_N : N;
+fun semester_N : N;
+fun semibreve_N : N;
+fun semicircle_N : N;
+fun semicircular_A : A;
+fun semicolon_N : N;
+fun semiconducting_A : A;
+fun semiconductor_N : N;
+fun semiconscious_A : A;
+fun semidetached_A : A;
+fun semifinal_N : N;
+fun semifinalist_N : N;
+fun seminal_A : A;
+fun seminar_N : N;
+fun seminarist_N : N;
+fun seminary_N : N;
+fun semiofficial_A : A;
+fun semiquaver_N : N;
+fun semirigid_A : A;
+fun semite_A : A;
+fun semite_N : N;
+fun semitic_A : A;
+fun semitone_N : N;
+fun semitropical_A : A;
+fun semivowel_N : N;
+fun semolina_N : N;
+fun sempstress_N : N;
+fun senate_N : N;
+fun senator_N : N;
+fun senatorial_A : A;
+fun send_V : V;
+fun send_V2 : V2;
+fun send_up_N : N;
+fun sender_N : N;
+fun sendoff_N : N;
+fun senegal_PN : PN;
+fun senegalese_A : A;
+fun senegalese_N : N;
+fun senescence_N : N;
+fun senescent_A : A;
+fun seneschal_N : N;
+fun senile_A : A;
+fun senility_N : N;
+fun senior_A : A;
+fun senior_N : N;
+fun seniority_N : N;
+fun senna_N : N;
+fun senora_N : N;
+fun senorita_N : N;
+fun sensation_N : N;
+fun sensational_A : A;
+fun sensationalism_N : N;
+fun sensationalist_N : N;
+fun sensationally_Adv : Adv;
+fun sense_N : N;
+fun sense_V2 : V2;
+fun sense_organ_N : N;
+fun senseless_A : A;
+fun senselessly_Adv : Adv;
+fun senselessness_N : N;
+fun sensibility_N : N;
+fun sensible_A : A;
+fun sensibly_Adv : Adv;
+fun sensitive_A : A;
+fun sensitively_Adv : Adv;
+fun sensitivity_N : N;
+fun sensitization_N : N;
+fun sensitize_V2 : V2;
+fun sensory_A : A;
+fun sensual_A : A;
+fun sensualism_N : N;
+fun sensualist_N : N;
+fun sensuality_N : N;
+fun sensuous_A : A;
+fun sensuously_Adv : Adv;
+fun sensuousness_N : N;
+fun sentence_N : N;
+fun sentence_V2 : V2;
+fun sententious_A : A;
+fun sententiously_Adv : Adv;
+fun sentient_A : A;
+fun sentiment_N : N;
+fun sentimental_A : A;
+fun sentimentalist_N : N;
+fun sentimentality_N : N;
+fun sentimentalize_V : V;
+fun sentimentalize_V2 : V2;
+fun sentimentally_Adv : Adv;
+fun sentinel_N : N;
+fun sentry_N : N;
+fun sentry_box_N : N;
+fun sentry_go_N : N;
+fun seoul_PN : PN;
+fun sepal_N : N;
+fun separability_N : N;
+fun separable_A : A;
+fun separably_Adv : Adv;
+fun separate_A : A;
+fun separate_N : N;
+fun separate_V : V;
+fun separate_V2 : V2;
+fun separately_Adv : Adv;
+fun separation_N : N;
+fun separatist_N : N;
+fun separator_N : N;
+fun sepia_N : N;
+fun sepsis_N : N;
+fun sept_PN : PN;
+fun september_N : N;
+fun september_PN : PN;
+fun septet_N : N;
+fun septic_A : A;
+fun septicaemia_N : N;
+fun septicemia_N : N;
+fun septuagenarian_N : N;
+fun septuagint_N : N;
+fun sepulchral_A : A;
+fun sepulchre_N : N;
+fun sepulture_N : N;
+fun sequel_N : N;
+fun sequence_N : N;
+fun sequent_A : A;
+fun sequential_A : A;
+fun sequentially_Adv : Adv;
+fun sequester_V2 : V2;
+fun sequestered_A : A;
+fun sequestrate_V2 : V2;
+fun sequestration_N : N;
+fun sequin_N : N;
+fun sequoia_N : N;
+fun seraglio_N : N;
+fun seraph_N : N;
+fun seraphic_A : A;
+fun serbo_croat_N : N;
+fun sere_A : A;
+fun serenade_N : N;
+fun serenade_V2 : V2;
+fun serendipity_N : N;
+fun serene_A : A;
+fun serenely_Adv : Adv;
+fun serenity_N : N;
+fun serf_N : N;
+fun serfdom_N : N;
+fun serge_N : N;
+fun sergeant_N : N;
+fun sergeant_major_N : N;
+fun serial_A : A;
+fun serial_N : N;
+fun serialize_V2 : V2;
+fun serially_Adv : Adv;
+fun seriatim_Adv : Adv;
+fun sericultural_A : A;
+fun sericulture_N : N;
+fun sericulturist_N : N;
+fun series_N : N;
+fun seriocomic_A : A;
+fun serious_A : A;
+fun seriously_Adv : Adv;
+fun seriousness_N : N;
+fun serjeant_N : N;
+fun serjeant_at_arms_N : N;
+fun sermon_N : N;
+fun sermonize_V : V;
+fun sermonize_V2 : V2;
+fun serous_A : A;
+fun serpent_N : N;
+fun serpentine_A : A;
+fun serrated_A : A;
+fun serried_A : A;
+fun serum_N : N;
+fun servant_N : N;
+fun serve_N : N;
+fun serve_V : V;
+fun serve_V2 : V2;
+fun server_N : N;
+fun service_N : N;
+fun service_V2 : V2;
+fun serviceable_A : A;
+fun serviceman_N : N;
+fun serviette_N : N;
+fun servile_A : A;
+fun servilely_Adv : Adv;
+fun servility_N : N;
+fun serving_N : N;
+fun servitor_N : N;
+fun servitude_N : N;
+fun sesame_N : N;
+fun sesotho_N : N;
+fun sesquipedalian_A : A;
+fun session_N : N;
+fun set_N : N;
+fun set_V : V;
+fun set_V2 : V2;
+fun set_square_N : N;
+fun set_to_N : N;
+fun set_up_N : N;
+fun setback_N : N;
+fun setswana_N : N;
+fun sett_N : N;
+fun settee_N : N;
+fun setter_N : N;
+fun setting_N : N;
+fun settle_N : N;
+fun settle_V : V;
+fun settle_V2 : V2;
+fun settled_A : A;
+fun settlement_N : N;
+fun settler_N : N;
+fun seven_sisters_PN : PN;
+fun sevenfold_A : A;
+fun sevenfold_Adv : Adv;
+fun sevenoaks_PN : PN;
+fun sever_V : V;
+fun sever_V2 : V2;
+fun several_A : A;
+fun severally_Adv : Adv;
+fun severance_N : N;
+fun severe_A : A;
+fun severely_Adv : Adv;
+fun severity_N : N;
+fun sevilla_PN : PN;
+fun seville_PN : PN;
+fun sew_V : V;
+fun sew_V2 : V2;
+fun sewage_N : N;
+fun sewage_farm_N : N;
+fun sewage_works_N : N;
+fun sewer_N : N;
+fun sewer_gas_N : N;
+fun sewer_rat_N : N;
+fun sewerage_N : N;
+fun sewing_N : N;
+fun sewing_machine_N : N;
+fun sex_N : N;
+fun sex_V2 : V2;
+fun sex_starved_A : A;
+fun sexagenarian_A : A;
+fun sexagenarian_N : N;
+fun sexed_A : A;
+fun sexism_N : N;
+fun sexist_A : A;
+fun sexist_N : N;
+fun sexless_A : A;
+fun sextant_N : N;
+fun sextet_N : N;
+fun sextette_N : N;
+fun sexton_N : N;
+fun sexual_A : A;
+fun sexuality_N : N;
+fun sexually_Adv : Adv;
+fun sexy_A : A;
+fun seychelles_PN : PN;
+fun seychellois_A : A;
+fun seychellois_N : N;
+fun senor_N : N;
+fun sgd_PN : PN;
+fun sgt_PN : PN;
+fun shabbily_Adv : Adv;
+fun shabbiness_N : N;
+fun shabby_A : A;
+fun shabby_genteel_A : A;
+fun shack_N : N;
+fun shack_V : V;
+fun shackle_N : N;
+fun shackle_V2 : V2;
+fun shad_N : N;
+fun shaddock_N : N;
+fun shade_N : N;
+fun shade_V : V;
+fun shade_V2 : V2;
+fun shade_tree_N : N;
+fun shading_N : N;
+fun shadow_N : N;
+fun shadow_V2 : V2;
+fun shadow_boxing_N : N;
+fun shadowy_A : A;
+fun shady_A : A;
+fun shaft_N : N;
+fun shag_N : N;
+fun shag_V : V;
+fun shag_V2 : V2;
+fun shaggily_Adv : Adv;
+fun shagginess_N : N;
+fun shagging_N : N;
+fun shaggy_A : A;
+fun shah_N : N;
+fun shake_N : N;
+fun shake_V : V;
+fun shake_V2 : V2;
+fun shake_up_N : N;
+fun shakedown_N : N;
+fun shakeout_N : N;
+fun shaker_N : N;
+fun shakespearian_A : A;
+fun shakily_Adv : Adv;
+fun shakiness_N : N;
+fun shaking_N : N;
+fun shaky_A : A;
+fun shale_N : N;
+fun shale_oil_N : N;
+fun shallot_N : N;
+fun shallow_A : A;
+fun shallow_N : N;
+fun shallow_V : V;
+fun sham_A : A;
+fun sham_N : N;
+fun sham_V : V;
+fun sham_V2 : V2;
+fun shamble_N : N;
+fun shamble_V : V;
+fun shambles_N : N;
+fun shame_N : N;
+fun shame_V2 : V2;
+fun shame_making_A : A;
+fun shamefaced_A : A;
+fun shamefacedly_Adv : Adv;
+fun shameful_A : A;
+fun shamefully_Adv : Adv;
+fun shameless_A : A;
+fun shamelessly_Adv : Adv;
+fun shamelessness_N : N;
+fun shammy_N : N;
+fun shampoo_N : N;
+fun shampoo_V2 : V2;
+fun shamrock_N : N;
+fun shandy_N : N;
+fun shanghai_PN : PN;
+fun shanghai_V2 : V2;
+fun shank_N : N;
+fun shanklin_PN : PN;
+fun shantung_N : N;
+fun shanty_N : N;
+fun shantytown_N : N;
+fun shape_N : N;
+fun shape_V : V;
+fun shape_V2 : V2;
+fun shapeless_A : A;
+fun shapelessly_Adv : Adv;
+fun shapelessness_N : N;
+fun shapely_A : A;
+fun shard_N : N;
+fun share_N : N;
+fun share_V : V;
+fun share_V2 : V2;
+fun share_out_N : N;
+fun sharecropper_N : N;
+fun shareholder_N : N;
+fun shareholding_N : N;
+fun shark_N : N;
+fun sharkskin_N : N;
+fun sharon_PN : PN;
+fun sharp_A : A;
+fun sharp_Adv : Adv;
+fun sharp_N : N;
+fun sharp_eyed_A : A;
+fun sharp_set_A : A;
+fun sharp_sighted_A : A;
+fun sharp_witted_A : A;
+fun sharpen_V : V;
+fun sharpen_V2 : V2;
+fun sharpener_N : N;
+fun sharper_N : N;
+fun sharply_Adv : Adv;
+fun sharpness_N : N;
+fun sharpshooter_N : N;
+fun shatter_V : V;
+fun shatter_V2 : V2;
+fun shatterproof_A : A;
+fun shave_N : N;
+fun shave_V : V;
+fun shave_V2 : V2;
+fun shaver_N : N;
+fun shavian_A : A;
+fun shavian_N : N;
+fun shaving_brush_N : N;
+fun shawl_N : N;
+fun she_goat_N : N;
+fun sheaf_N : N;
+fun shear_V2 : V2;
+fun sheath_N : N;
+fun sheath_knife_N : N;
+fun sheathe_V2 : V2;
+fun sheathing_N : N;
+fun shebang_N : N;
+fun shebeen_N : N;
+fun shed_N : N;
+fun shed_V2 : V2;
+fun sheen_N : N;
+fun sheep_N : N;
+fun sheepdog_N : N;
+fun sheepfold_N : N;
+fun sheepish_A : A;
+fun sheepishly_Adv : Adv;
+fun sheepishness_N : N;
+fun sheeprun_N : N;
+fun sheepskin_N : N;
+fun sheer_A : A;
+fun sheer_Adv : Adv;
+fun sheer_V : V;
+fun sheerness_PN : PN;
+fun sheet_N : N;
+fun sheet_anchor_N : N;
+fun sheet_lightning_N : N;
+fun sheeting_N : N;
+fun sheffield_PN : PN;
+fun sheik_N : N;
+fun sheikdom_N : N;
+fun sheikh_N : N;
+fun sheikhdom_N : N;
+fun sheila_PN : PN;
+fun shekel_N : N;
+fun sheldrake_N : N;
+fun shelf_N : N;
+fun shelford_PN : PN;
+fun shell_N : N;
+fun shell_V : V;
+fun shell_V2 : V2;
+fun shell_shock_N : N;
+fun shellac_N : N;
+fun shellac_V2 : V2;
+fun shellfire_N : N;
+fun shellfish_N : N;
+fun shellproof_A : A;
+fun shelter_N : N;
+fun shelter_V : V;
+fun shelter_V2 : V2;
+fun shelve_V : V;
+fun shelve_V2 : V2;
+fun shepherd_N : N;
+fun shepherd_V2 : V2;
+fun shepherdess_N : N;
+fun shepshed_PN : PN;
+fun shepton_mallet_PN : PN;
+fun sheraton_N : N;
+fun sherbet_N : N;
+fun sherbourne_PN : PN;
+fun sheriff_N : N;
+fun sheringham_PN : PN;
+fun sherry_N : N;
+fun shetland_PN : PN;
+fun shevington_PN : PN;
+fun shew_V : V;
+fun shew_V2 : V2;
+fun shibboleth_N : N;
+fun shield_N : N;
+fun shield_V2 : V2;
+fun shift_N : N;
+fun shift_V : V;
+fun shift_V2 : V2;
+fun shiftily_Adv : Adv;
+fun shiftiness_N : N;
+fun shiftless_A : A;
+fun shifty_A : A;
+fun shihkiachwang_PN : PN;
+fun shildon_PN : PN;
+fun shillelagh_N : N;
+fun shilling_N : N;
+fun shillyshally_N : N;
+fun shillyshally_V : V;
+fun shimmer_N : N;
+fun shimmer_V : V;
+fun shin_N : N;
+fun shin_V : V;
+fun shinbone_N : N;
+fun shindig_N : N;
+fun shindy_N : N;
+fun shine_N : N;
+fun shine_V : V;
+fun shine_V2 : V2;
+fun shingle_N : N;
+fun shingle_V2 : V2;
+fun shingles_N : N;
+fun shingly_A : A;
+fun shinguard_N : N;
+fun shiny_A : A;
+fun ship's_chandler_N : N;
+fun ship_N : N;
+fun ship_V : V;
+fun ship_V2 : V2;
+fun ship_breaker_N : N;
+fun ship_canal_N : N;
+fun shipboard_A : A;
+fun shipbroker_N : N;
+fun shipbuilder_N : N;
+fun shipbuilding_N : N;
+fun shipload_N : N;
+fun shipmate_N : N;
+fun shipment_N : N;
+fun shipowner_N : N;
+fun shipper_N : N;
+fun shipping_N : N;
+fun shipping_agent_N : N;
+fun shipping_office_N : N;
+fun shipshape_A : A;
+fun shipshape_Adv : Adv;
+fun shipway_N : N;
+fun shipwreck_N : N;
+fun shipwreck_V : V;
+fun shipwright_N : N;
+fun shipyard_N : N;
+fun shire_N : N;
+fun shirebrook_PN : PN;
+fun shiremoor_PN : PN;
+fun shirk_V : V;
+fun shirk_V2 : V2;
+fun shirker_N : N;
+fun shirley_PN : PN;
+fun shirt_N : N;
+fun shirt_front_N : N;
+fun shirting_N : N;
+fun shirtwaist_N : N;
+fun shirtwaister_N : N;
+fun shirty_A : A;
+fun shish_kebab_N : N;
+fun shit_N : N;
+fun shit_V : V;
+fun shiver_N : N;
+fun shiver_V : V;
+fun shiver_V2 : V2;
+fun shivery_A : A;
+fun shoal_N : N;
+fun shoal_V : V;
+fun shock_Adv : Adv;
+fun shock_N : N;
+fun shock_V2 : V2;
+fun shock_brigade_N : N;
+fun shock_headed_A : A;
+fun shock_worker_N : N;
+fun shockable_A : A;
+fun shocker_N : N;
+fun shocking_A : A;
+fun shockingly_Adv : Adv;
+fun shoddiness_N : N;
+fun shoddy_A : A;
+fun shoddy_N : N;
+fun shoe_N : N;
+fun shoe_V2 : V2;
+fun shoe_leather_N : N;
+fun shoeblack_N : N;
+fun shoehorn_N : N;
+fun shoelace_N : N;
+fun shoemaker_N : N;
+fun shoemaking_N : N;
+fun shoestring_N : N;
+fun shoetree_N : N;
+fun shogun_N : N;
+fun shoo_V : V;
+fun shoo_V2 : V2;
+fun shoot_N : N;
+fun shoot_V : V;
+fun shoot_V2 : V2;
+fun shooter_N : N;
+fun shooting_N : N;
+fun shooting_box_N : N;
+fun shooting_brake_N : N;
+fun shooting_gallery_N : N;
+fun shooting_range_N : N;
+fun shooting_stick_N : N;
+fun shop_N : N;
+fun shop_V : V;
+fun shop_assistant_N : N;
+fun shop_bell_N : N;
+fun shop_boy_N : N;
+fun shop_front_N : N;
+fun shop_girl_N : N;
+fun shop_steward_N : N;
+fun shopkeeper_N : N;
+fun shoplift_V : V;
+fun shoplift_V2 : V2;
+fun shoplifter_N : N;
+fun shoplifting_N : N;
+fun shopper_N : N;
+fun shopping_N : N;
+fun shopsoiled_A : A;
+fun shopwalker_N : N;
+fun shopwindow_N : N;
+fun shopworn_A : A;
+fun shore_N : N;
+fun shore_V2 : V2;
+fun short_A : A;
+fun short_Adv : Adv;
+fun short_N : N;
+fun short_V : V;
+fun short_V2 : V2;
+fun short_change_V2 : V2;
+fun short_circuit_N : N;
+fun short_circuit_V : V;
+fun short_circuit_V2 : V2;
+fun short_dated_A : A;
+fun short_handed_A : A;
+fun short_lived_A : A;
+fun short_range_A : A;
+fun short_sighted_A : A;
+fun short_tempered_A : A;
+fun short_term_A : A;
+fun short_winded_A : A;
+fun shortage_N : N;
+fun shortbread_N : N;
+fun shortcake_N : N;
+fun shortcoming_N : N;
+fun shorten_V : V;
+fun shorten_V2 : V2;
+fun shortening_N : N;
+fun shortfall_N : N;
+fun shorthand_N : N;
+fun shorthorn_N : N;
+fun shortish_A : A;
+fun shortlist_N : N;
+fun shortlist_V2 : V2;
+fun shortly_Adv : Adv;
+fun shortness_N : N;
+fun shot_N : N;
+fun shot_put_N : N;
+fun shot_tower_N : N;
+fun shotgun_N : N;
+fun shotton_PN : PN;
+fun shotts_PN : PN;
+fun shoulder_N : N;
+fun shoulder_V2 : V2;
+fun shoulder_blade_N : N;
+fun shoulder_flash_N : N;
+fun shoulder_strap_N : N;
+fun shout_N : N;
+fun shout_V : V;
+fun shout_V2 : V2;
+fun shouting_N : N;
+fun shove_N : N;
+fun shove_V : V;
+fun shove_V2 : V2;
+fun shove_ha'penny_N : N;
+fun shovel_N : N;
+fun shovel_V2 : V2;
+fun shovel_board_N : N;
+fun shovelful_N : N;
+fun show_N : N;
+fun show_V : V;
+fun show_V2 : V2;
+fun show_business_N : N;
+fun show_off_N : N;
+fun show_window_N : N;
+fun showbiz_N : N;
+fun showboat_N : N;
+fun showcase_N : N;
+fun showdown_N : N;
+fun shower_N : N;
+fun shower_V : V;
+fun shower_V2 : V2;
+fun shower_bath_N : N;
+fun showery_A : A;
+fun showgirl_N : N;
+fun showily_Adv : Adv;
+fun showiness_N : N;
+fun showing_N : N;
+fun showjumping_N : N;
+fun showman_N : N;
+fun showmanship_N : N;
+fun showplace_N : N;
+fun showroom_N : N;
+fun showy_A : A;
+fun shrapnel_N : N;
+fun shred_N : N;
+fun shred_V2 : V2;
+fun shrew_N : N;
+fun shrew_mouse_N : N;
+fun shrewd_A : A;
+fun shrewdly_Adv : Adv;
+fun shrewdness_N : N;
+fun shrewish_A : A;
+fun shrewishly_Adv : Adv;
+fun shrewishness_N : N;
+fun shrewsbury_PN : PN;
+fun shriek_N : N;
+fun shriek_V : V;
+fun shriek_V2 : V2;
+fun shrift_N : N;
+fun shrike_N : N;
+fun shrill_A : A;
+fun shrill_V : V;
+fun shrill_V2 : V2;
+fun shrillness_N : N;
+fun shrilly_Adv : Adv;
+fun shrimp_N : N;
+fun shrimp_V : V;
+fun shrine_N : N;
+fun shrine_V2 : V2;
+fun shrink_N : N;
+fun shrink_V : V;
+fun shrink_V2 : V2;
+fun shrinkable_A : A;
+fun shrinkage_N : N;
+fun shrive_V2 : V2;
+fun shrivel_V : V;
+fun shrivel_V2 : V2;
+fun shropshire_PN : PN;
+fun shroud_N : N;
+fun shroud_V2 : V2;
+fun shrove_tuesday_N : N;
+fun shrove_tuesday_PN : PN;
+fun shrub_N : N;
+fun shrubbery_N : N;
+fun shrug_N : N;
+fun shrug_V2 : V2;
+fun shuck_N : N;
+fun shuck_V2 : V2;
+fun shudder_N : N;
+fun shudder_V : V;
+fun shudderingly_Adv : Adv;
+fun shuffle_N : N;
+fun shuffle_V : V;
+fun shuffle_V2 : V2;
+fun shuffler_N : N;
+fun shun_V2 : V2;
+fun shunt_V : V;
+fun shunt_V2 : V2;
+fun shunter_N : N;
+fun shush_V : V;
+fun shush_V2 : V2;
+fun shut_V : V;
+fun shut_V2 : V2;
+fun shutdown_N : N;
+fun shuteye_N : N;
+fun shutter_N : N;
+fun shutter_V2 : V2;
+fun shuttle_N : N;
+fun shuttle_V : V;
+fun shuttle_V2 : V2;
+fun shuttlecock_N : N;
+fun shy_A : A;
+fun shy_N : N;
+fun shy_V : V;
+fun shy_V2 : V2;
+fun shyly_Adv : Adv;
+fun shyness_N : N;
+fun shyster_N : N;
+fun siam_PN : PN;
+fun siamese_A : A;
+fun siamese_N : N;
+fun sian_PN : PN;
+fun siberian_A : A;
+fun sibilant_A : A;
+fun sibilant_N : N;
+fun sibling_N : N;
+fun sibyl_N : N;
+fun sibylline_A : A;
+fun sic_Adv : Adv;
+fun sicilian_A : A;
+fun sicilian_N : N;
+fun sick_A : A;
+fun sick_V2 : V2;
+fun sick_benefit_N : N;
+fun sick_berth_N : N;
+fun sick_headache_N : N;
+fun sick_leave_N : N;
+fun sick_list_N : N;
+fun sick_parade_N : N;
+fun sick_pay_N : N;
+fun sick_room_N : N;
+fun sickbay_N : N;
+fun sickbed_N : N;
+fun sicken_V : V;
+fun sicken_V2 : V2;
+fun sickening_A : A;
+fun sickeningly_Adv : Adv;
+fun sickish_A : A;
+fun sickle_N : N;
+fun sickly_A : A;
+fun sickness_N : N;
+fun sid_PN : PN;
+fun side_N : N;
+fun side_V : V;
+fun side_chapel_N : N;
+fun side_dish_N : N;
+fun side_drum_N : N;
+fun side_face_Adv : Adv;
+fun side_glance_N : N;
+fun side_road_N : N;
+fun side_saddle_Adv : Adv;
+fun side_saddle_N : N;
+fun side_slip_N : N;
+fun side_slip_V : V;
+fun side_splitting_A : A;
+fun side_stroke_N : N;
+fun side_view_N : N;
+fun sideboard_N : N;
+fun sidecar_N : N;
+fun sided_A : A;
+fun sidelight_N : N;
+fun sideline_N : N;
+fun sidelong_A : A;
+fun sidelong_Adv : Adv;
+fun sidereal_A : A;
+fun sideshow_N : N;
+fun sidesman_N : N;
+fun sidestep_N : N;
+fun sidestep_V : V;
+fun sidestep_V2 : V2;
+fun sidetrack_N : N;
+fun sidetrack_V2 : V2;
+fun sidewalk_N : N;
+fun sidewards_Adv : Adv;
+fun sideways_Adv : Adv;
+fun siding_N : N;
+fun sidle_V : V;
+fun sidmouth_PN : PN;
+fun sidney_PN : PN;
+fun siege_N : N;
+fun sienna_N : N;
+fun sierra_N : N;
+fun sierra_leone_PN : PN;
+fun sierra_leonian_A : A;
+fun sierra_leonian_N : N;
+fun siesta_N : N;
+fun sieve_N : N;
+fun sieve_V2 : V2;
+fun sift_V : V;
+fun sift_V2 : V2;
+fun sifter_N : N;
+fun sigh_N : N;
+fun sigh_V : V;
+fun sigh_V2 : V2;
+fun sight_N : N;
+fun sight_V2 : V2;
+fun sighted_A : A;
+fun sighting_N : N;
+fun sightless_A : A;
+fun sightseeing_N : N;
+fun sightseer_N : N;
+fun sign_N : N;
+fun sign_V : V;
+fun sign_V2 : V2;
+fun sign_painter_N : N;
+fun signal_A : A;
+fun signal_N : N;
+fun signal_V : V;
+fun signal_V2 : V2;
+fun signal_box_N : N;
+fun signalize_V2 : V2;
+fun signaller_N : N;
+fun signally_Adv : Adv;
+fun signalman_N : N;
+fun signatory_N : N;
+fun signature_N : N;
+fun signet_N : N;
+fun signet_ring_N : N;
+fun significance_N : N;
+fun significant_A : A;
+fun significantly_Adv : Adv;
+fun signification_N : N;
+fun significative_A : A;
+fun signify_V : V;
+fun signify_V2 : V2;
+fun signor_N : N;
+fun signora_N : N;
+fun signorina_N : N;
+fun signpost_N : N;
+fun signpost_V2 : V2;
+fun sikh_N : N;
+fun silage_N : N;
+fun sileby_PN : PN;
+fun silence_N : N;
+fun silence_V2 : V2;
+fun silencer_N : N;
+fun silent_A : A;
+fun silently_Adv : Adv;
+fun silhouette_N : N;
+fun silhouette_V2 : V2;
+fun silica_N : N;
+fun silicate_N : N;
+fun silicon_N : N;
+fun silicone_N : N;
+fun silicosis_N : N;
+fun silk_N : N;
+fun silken_A : A;
+fun silkily_Adv : Adv;
+fun silkiness_N : N;
+fun silkworm_N : N;
+fun silky_A : A;
+fun sill_N : N;
+fun sillabub_N : N;
+fun silliness_N : N;
+fun silly_A : A;
+fun silly_N : N;
+fun silo_N : N;
+fun silsden_PN : PN;
+fun silt_N : N;
+fun silt_V : V;
+fun silt_V2 : V2;
+fun silvan_A : A;
+fun silver_N : N;
+fun silver_V : V;
+fun silver_V2 : V2;
+fun silver_fish_N : N;
+fun silvern_A : A;
+fun silverside_N : N;
+fun silversmith_N : N;
+fun silvery_A : A;
+fun silvia_PN : PN;
+fun simian_A : A;
+fun simian_N : N;
+fun similar_A : A;
+fun similarity_N : N;
+fun similarly_Adv : Adv;
+fun simile_N : N;
+fun similitude_N : N;
+fun simmer_N : N;
+fun simmer_V : V;
+fun simmer_V2 : V2;
+fun simon_PN : PN;
+fun simony_N : N;
+fun simoom_N : N;
+fun simoon_N : N;
+fun simper_V : V;
+fun simperingly_Adv : Adv;
+fun simple_A : A;
+fun simple_N : N;
+fun simple_hearted_A : A;
+fun simple_minded_A : A;
+fun simpleton_N : N;
+fun simplicity_N : N;
+fun simplification_N : N;
+fun simplify_V2 : V2;
+fun simply_Adv : Adv;
+fun simulacrum_N : N;
+fun simulate_V2 : V2;
+fun simulation_N : N;
+fun simulator_N : N;
+fun simultaneity_N : N;
+fun simultaneous_A : A;
+fun simultaneously_Adv : Adv;
+fun simultaneousness_N : N;
+fun sin_N : N;
+fun sin_V : V;
+fun since_Adv : Adv;
+fun sincere_A : A;
+fun sincerely_Adv : Adv;
+fun sincerity_N : N;
+fun sine_N : N;
+fun sine_die_Adv : Adv;
+fun sine_qua_non_N : N;
+fun sinecure_N : N;
+fun sinew_N : N;
+fun sinewy_A : A;
+fun sinful_A : A;
+fun sinfulness_N : N;
+fun sing_V : V;
+fun sing_V2 : V2;
+fun singable_A : A;
+fun singapore_PN : PN;
+fun singaporean_A : A;
+fun singaporean_N : N;
+fun singe_N : N;
+fun singe_V : V;
+fun singe_V2 : V2;
+fun singer_N : N;
+fun singhalese_A : A;
+fun singing_N : N;
+fun single_A : A;
+fun single_N : N;
+fun single_V2 : V2;
+fun single_breasted_A : A;
+fun single_handed_A : A;
+fun single_handed_Adv : Adv;
+fun single_minded_A : A;
+fun single_spacing_N : N;
+fun singleness_N : N;
+fun singlestick_N : N;
+fun singlet_N : N;
+fun singleton_N : N;
+fun singly_Adv : Adv;
+fun singsong_N : N;
+fun singular_A : A;
+fun singular_N : N;
+fun singularity_N : N;
+fun singularize_V2 : V2;
+fun singularly_Adv : Adv;
+fun sinhala_N : N;
+fun sinhalese_A : A;
+fun sinhalese_N : N;
+fun sining_PN : PN;
+fun sinister_A : A;
+fun sink_N : N;
+fun sink_V : V;
+fun sink_V2 : V2;
+fun sinkable_A : A;
+fun sinker_N : N;
+fun sinking_N : N;
+fun sinking_fund_N : N;
+fun sinless_A : A;
+fun sinlessness_N : N;
+fun sinn_fein_PN : PN;
+fun sinner_N : N;
+fun sinologist_N : N;
+fun sinology_N : N;
+fun sinuosity_N : N;
+fun sinuous_A : A;
+fun sinus_N : N;
+fun sinusitis_N : N;
+fun sioux_N : N;
+fun sip_N : N;
+fun sip_V : V;
+fun sip_V2 : V2;
+fun siphon_N : N;
+fun siphon_V : V;
+fun siphon_V2 : V2;
+fun sir_N : N;
+fun sir_roger_de_coverley_N : N;
+fun siracusa_PN : PN;
+fun sirdar_N : N;
+fun sire_N : N;
+fun sire_V2 : V2;
+fun siren_N : N;
+fun sirloin_N : N;
+fun sirocco_N : N;
+fun sirrah_N : N;
+fun sirup_N : N;
+fun sisal_N : N;
+fun sissified_A : A;
+fun sissy_N : N;
+fun sister_N : N;
+fun sister_in_law_N : N;
+fun sisterhood_N : N;
+fun sisterly_A : A;
+fun siswati_N : N;
+fun sit_V : V;
+fun sit_V2 : V2;
+fun sit_in_N : N;
+fun sitar_N : N;
+fun site_N : N;
+fun site_V : V;
+fun sitter_N : N;
+fun sitting_N : N;
+fun sitting_room_N : N;
+fun sittingbourne_PN : PN;
+fun situated_A : A;
+fun situation_N : N;
+fun six_footer_N : N;
+fun six_shooter_N : N;
+fun sixfold_A : A;
+fun sixfold_Adv : Adv;
+fun sixpence_N : N;
+fun sixpenny_A : A;
+fun sixth_former_N : N;
+fun sizable_A : A;
+fun size_N : N;
+fun size_V2 : V2;
+fun sizeable_A : A;
+fun sized_A : A;
+fun sizzle_V : V;
+fun skate_N : N;
+fun skate_V : V;
+fun skateboard_N : N;
+fun skateboarder_N : N;
+fun skateboarding_N : N;
+fun skater_N : N;
+fun skating_N : N;
+fun skating_rink_N : N;
+fun skedaddle_V : V;
+fun skeet_N : N;
+fun skegness_PN : PN;
+fun skein_N : N;
+fun skeleton_N : N;
+fun skelmanthorpe_PN : PN;
+fun skelmersdale_PN : PN;
+fun skep_N : N;
+fun skeptical_A : A;
+fun skeptically_Adv : Adv;
+fun skepticism_N : N;
+fun sketch_N : N;
+fun sketch_V : V;
+fun sketch_V2 : V2;
+fun sketch_block_N : N;
+fun sketch_book_N : N;
+fun sketch_map_N : N;
+fun sketcher_N : N;
+fun sketchily_Adv : Adv;
+fun sketchiness_N : N;
+fun sketchy_A : A;
+fun skew_A : A;
+fun skew_eyed_A : A;
+fun skewen_PN : PN;
+fun skewer_N : N;
+fun skewer_V2 : V2;
+fun ski_N : N;
+fun ski_V : V;
+fun ski_bob_N : N;
+fun ski_jump_N : N;
+fun ski_lift_N : N;
+fun ski_plane_N : N;
+fun skid_N : N;
+fun skid_V : V;
+fun skidpan_N : N;
+fun skier_N : N;
+fun skiff_N : N;
+fun skiffle_N : N;
+fun skiffle_group_N : N;
+fun skilful_A : A;
+fun skilfully_Adv : Adv;
+fun skill_N : N;
+fun skilled_A : A;
+fun skillet_N : N;
+fun skilly_N : N;
+fun skim_V : V;
+fun skim_V2 : V2;
+fun skimmed_milk_N : N;
+fun skimmer_N : N;
+fun skimp_V : V;
+fun skimp_V2 : V2;
+fun skimpily_Adv : Adv;
+fun skimpy_A : A;
+fun skin_N : N;
+fun skin_V : V;
+fun skin_V2 : V2;
+fun skin_deep_A : A;
+fun skin_diving_N : N;
+fun skin_graft_N : N;
+fun skin_tight_A : A;
+fun skinflint_N : N;
+fun skinhead_N : N;
+fun skinny_A : A;
+fun skint_A : A;
+fun skip_N : N;
+fun skip_V : V;
+fun skip_V2 : V2;
+fun skipper_N : N;
+fun skipper_V2 : V2;
+fun skipping_rope_N : N;
+fun skipton_PN : PN;
+fun skirl_N : N;
+fun skirmish_N : N;
+fun skirmish_V : V;
+fun skirmisher_N : N;
+fun skirt_N : N;
+fun skirt_V : V;
+fun skirt_V2 : V2;
+fun skirting_board_N : N;
+fun skit_N : N;
+fun skitter_V : V;
+fun skittish_A : A;
+fun skittishly_Adv : Adv;
+fun skittishness_N : N;
+fun skittle_N : N;
+fun skittle_V2 : V2;
+fun skittle_pin_N : N;
+fun skittles_N : N;
+fun skivvy_N : N;
+fun skopje_PN : PN;
+fun skua_N : N;
+fun skulk_V : V;
+fun skulker_N : N;
+fun skull_N : N;
+fun skullcap_N : N;
+fun skullduggery_N : N;
+fun skulled_A : A;
+fun skunk_N : N;
+fun sky_N : N;
+fun sky_V2 : V2;
+fun sky_blue_A : A;
+fun sky_blue_N : N;
+fun sky_high_Adv : Adv;
+fun skylark_N : N;
+fun skylark_V : V;
+fun skylight_N : N;
+fun skyline_N : N;
+fun skyrocket_V : V;
+fun skyscraper_N : N;
+fun skyward_A : A;
+fun skyward_Adv : Adv;
+fun skywards_A : A;
+fun skywards_Adv : Adv;
+fun skywriting_N : N;
+fun slab_N : N;
+fun slack_A : A;
+fun slack_N : N;
+fun slack_V : V;
+fun slacken_V : V;
+fun slacken_V2 : V2;
+fun slacker_N : N;
+fun slackly_Adv : Adv;
+fun slackness_N : N;
+fun slag_N : N;
+fun slag_heap_N : N;
+fun slake_V2 : V2;
+fun slalom_N : N;
+fun slam_N : N;
+fun slam_V : V;
+fun slam_V2 : V2;
+fun slander_N : N;
+fun slander_V2 : V2;
+fun slanderer_N : N;
+fun slanderous_A : A;
+fun slang_N : N;
+fun slang_V2 : V2;
+fun slangily_Adv : Adv;
+fun slanginess_N : N;
+fun slangy_A : A;
+fun slant_N : N;
+fun slant_V : V;
+fun slant_V2 : V2;
+fun slantingly_Adv : Adv;
+fun slantwise_Adv : Adv;
+fun slap_Adv : Adv;
+fun slap_N : N;
+fun slap_V2 : V2;
+fun slap_bang_Adv : Adv;
+fun slap_happy_A : A;
+fun slap_up_A : A;
+fun slapdash_A : A;
+fun slapdash_Adv : Adv;
+fun slapstick_N : N;
+fun slash_N : N;
+fun slash_V : V;
+fun slash_V2 : V2;
+fun slat_N : N;
+fun slate_N : N;
+fun slate_V2 : V2;
+fun slate_club_N : N;
+fun slate_pencil_N : N;
+fun slating_N : N;
+fun slatted_A : A;
+fun slattern_N : N;
+fun slatternliness_N : N;
+fun slatternly_A : A;
+fun slaty_A : A;
+fun slaughter_N : N;
+fun slaughter_V2 : V2;
+fun slaughterer_N : N;
+fun slaughterhouse_N : N;
+fun slav_A : A;
+fun slav_N : N;
+fun slave_N : N;
+fun slave_V : V;
+fun slave_driver_N : N;
+fun slave_trade_N : N;
+fun slave_traffic_N : N;
+fun slaver_N : N;
+fun slaver_V : V;
+fun slavery_N : N;
+fun slavey_N : N;
+fun slavish_A : A;
+fun slavishly_Adv : Adv;
+fun slavonic_A : A;
+fun slaw_N : N;
+fun slay_V2 : V2;
+fun slayer_N : N;
+fun sleaford_PN : PN;
+fun sleazy_A : A;
+fun sled_N : N;
+fun sledge_N : N;
+fun sledge_V : V;
+fun sledge_V2 : V2;
+fun sledgehammer_N : N;
+fun sleek_A : A;
+fun sleek_V2 : V2;
+fun sleekly_Adv : Adv;
+fun sleekness_N : N;
+fun sleep_N : N;
+fun sleep_V : V;
+fun sleep_V2 : V2;
+fun sleeper_N : N;
+fun sleepily_Adv : Adv;
+fun sleepiness_N : N;
+fun sleeping_N : N;
+fun sleeping_bag_N : N;
+fun sleeping_car_N : N;
+fun sleeping_draught_N : N;
+fun sleeping_pill_N : N;
+fun sleeping_sickness_N : N;
+fun sleepless_A : A;
+fun sleeplessly_Adv : Adv;
+fun sleeplessness_N : N;
+fun sleepwalker_N : N;
+fun sleepy_A : A;
+fun sleepy_head_N : N;
+fun sleet_N : N;
+fun sleet_V : V;
+fun sleety_A : A;
+fun sleeve_N : N;
+fun sleeved_A : A;
+fun sleeveless_A : A;
+fun sleigh_N : N;
+fun sleigh_V : V;
+fun sleigh_V2 : V2;
+fun sleigh_bell_N : N;
+fun sleight_N : N;
+fun slender_A : A;
+fun slenderize_V : V;
+fun slenderize_V2 : V2;
+fun slenderly_Adv : Adv;
+fun slenderness_N : N;
+fun sleuth_N : N;
+fun sleuth_hound_N : N;
+fun slew_V : V;
+fun slew_V2 : V2;
+fun slice_N : N;
+fun slice_V : V;
+fun slice_V2 : V2;
+fun slick_A : A;
+fun slick_Adv : Adv;
+fun slick_N : N;
+fun slicker_N : N;
+fun slide_N : N;
+fun slide_V : V;
+fun slide_V2 : V2;
+fun slide_rule_N : N;
+fun slight_A : A;
+fun slight_N : N;
+fun slight_V2 : V2;
+fun slightingly_Adv : Adv;
+fun slightly_Adv : Adv;
+fun slightness_N : N;
+fun sligo_PN : PN;
+fun slim_A : A;
+fun slim_V : V;
+fun slime_N : N;
+fun sliminess_N : N;
+fun slimly_Adv : Adv;
+fun slimness_N : N;
+fun slimy_A : A;
+fun sling_N : N;
+fun sling_V : V;
+fun sling_V2 : V2;
+fun slinger_N : N;
+fun slink_V : V;
+fun slip_N : N;
+fun slip_V : V;
+fun slip_V2 : V2;
+fun slip_carriage_N : N;
+fun slip_coach_N : N;
+fun slip_road_N : N;
+fun slip_up_N : N;
+fun slipcover_N : N;
+fun slipknot_N : N;
+fun slipon_N : N;
+fun slipover_N : N;
+fun slipper_N : N;
+fun slippered_A : A;
+fun slipperiness_N : N;
+fun slippery_A : A;
+fun slippy_A : A;
+fun slipshod_A : A;
+fun slipstream_N : N;
+fun slipway_N : N;
+fun slit_N : N;
+fun slit_V2 : V2;
+fun slither_V : V;
+fun slithery_A : A;
+fun sliver_N : N;
+fun sliver_V : V;
+fun sliver_V2 : V2;
+fun slob_N : N;
+fun slobber_N : N;
+fun slobber_V : V;
+fun slobber_V2 : V2;
+fun sloe_N : N;
+fun sloe_gin_N : N;
+fun slog_V : V;
+fun slog_V2 : V2;
+fun slogan_N : N;
+fun slogger_N : N;
+fun sloop_N : N;
+fun slop_N : N;
+fun slop_V : V;
+fun slop_V2 : V2;
+fun slop_basin_N : N;
+fun slop_pail_N : N;
+fun slop_shop_N : N;
+fun slope_N : N;
+fun slope_V : V;
+fun slope_V2 : V2;
+fun slopingly_Adv : Adv;
+fun sloppily_Adv : Adv;
+fun sloppiness_N : N;
+fun sloppy_A : A;
+fun slosh_V : V;
+fun slosh_V2 : V2;
+fun sloshed_A : A;
+fun slot_N : N;
+fun slot_V2 : V2;
+fun slot_machine_N : N;
+fun sloth_N : N;
+fun slothful_A : A;
+fun slouch_N : N;
+fun slouch_V : V;
+fun slouch_hat_N : N;
+fun slouchingly_Adv : Adv;
+fun slough_N : N;
+fun slough_PN : PN;
+fun slough_V : V;
+fun slough_V2 : V2;
+fun slovak_N : N;
+fun sloven_N : N;
+fun slovenian_A : A;
+fun slovenian_N : N;
+fun slovenliness_N : N;
+fun slovenly_A : A;
+fun slow_A : A;
+fun slow_Adv : Adv;
+fun slow_V : V;
+fun slow_V2 : V2;
+fun slow_worm_N : N;
+fun slowcoach_N : N;
+fun slowdown_N : N;
+fun slower_Adv : Adv;
+fun slowest_Adv : Adv;
+fun slowly_Adv : Adv;
+fun slowness_N : N;
+fun sludge_N : N;
+fun slug_N : N;
+fun slug_V : V;
+fun slug_V2 : V2;
+fun sluggard_N : N;
+fun sluggish_A : A;
+fun sluggishly_Adv : Adv;
+fun sluggishness_N : N;
+fun sluice_N : N;
+fun sluice_V : V;
+fun sluice_V2 : V2;
+fun sluice_valve_N : N;
+fun sluicegate_N : N;
+fun slum_N : N;
+fun slum_V : V;
+fun slumber_N : N;
+fun slumber_V : V;
+fun slumber_V2 : V2;
+fun slumberer_N : N;
+fun slumberous_A : A;
+fun slummy_A : A;
+fun slump_N : N;
+fun slump_V : V;
+fun slur_N : N;
+fun slur_V : V;
+fun slur_V2 : V2;
+fun slurry_N : N;
+fun slush_N : N;
+fun slushy_A : A;
+fun slut_N : N;
+fun sluttish_A : A;
+fun sly_A : A;
+fun slyly_Adv : Adv;
+fun slyness_N : N;
+fun smack_Adv : Adv;
+fun smack_N : N;
+fun smack_V : V;
+fun smack_V2 : V2;
+fun smacker_N : N;
+fun smacking_N : N;
+fun small_A : A;
+fun small_Adv : Adv;
+fun small_N : N;
+fun small_minded_A : A;
+fun smallholder_N : N;
+fun smallholding_N : N;
+fun smallness_N : N;
+fun smallpox_N : N;
+fun smalltime_A : A;
+fun smarmy_A : A;
+fun smart_A : A;
+fun smart_N : N;
+fun smart_V : V;
+fun smarten_V : V;
+fun smarten_V2 : V2;
+fun smartly_Adv : Adv;
+fun smartness_N : N;
+fun smash_Adv : Adv;
+fun smash_N : N;
+fun smash_V : V;
+fun smash_V2 : V2;
+fun smash_up_N : N;
+fun smasher_N : N;
+fun smashing_A : A;
+fun smattering_N : N;
+fun smear_N : N;
+fun smear_V : V;
+fun smear_V2 : V2;
+fun smear_word_N : N;
+fun smell_N : N;
+fun smell_V : V;
+fun smell_V2 : V2;
+fun smelling_bottle_N : N;
+fun smelly_A : A;
+fun smelt_N : N;
+fun smelt_V2 : V2;
+fun smilax_N : N;
+fun smile_N : N;
+fun smile_V : V;
+fun smile_V2 : V2;
+fun smilingly_Adv : Adv;
+fun smirch_N : N;
+fun smirch_V2 : V2;
+fun smirk_N : N;
+fun smirk_V : V;
+fun smite_V : V;
+fun smite_V2 : V2;
+fun smith_N : N;
+fun smithy_N : N;
+fun smock_N : N;
+fun smocking_N : N;
+fun smog_N : N;
+fun smoke_N : N;
+fun smoke_V : V;
+fun smoke_V2 : V2;
+fun smoke_bomb_N : N;
+fun smoke_cured_A : A;
+fun smoke_dried_A : A;
+fun smoke_screen_N : N;
+fun smokeless_A : A;
+fun smoker_N : N;
+fun smokestack_N : N;
+fun smoking_N : N;
+fun smoking_car_N : N;
+fun smoking_carriage_N : N;
+fun smoking_compartment_N : N;
+fun smoking_mixture_N : N;
+fun smoking_room_N : N;
+fun smoky_A : A;
+fun smooth_A : A;
+fun smooth_N : N;
+fun smooth_V : V;
+fun smooth_V2 : V2;
+fun smooth_bore_A : A;
+fun smooth_faced_A : A;
+fun smooth_spoken_A : A;
+fun smooth_tongued_A : A;
+fun smoothing_iron_N : N;
+fun smoothing_plane_N : N;
+fun smoothly_Adv : Adv;
+fun smoothness_N : N;
+fun smorgasbord_N : N;
+fun smother_N : N;
+fun smother_V2 : V2;
+fun smoulder_N : N;
+fun smoulder_V : V;
+fun smudge_N : N;
+fun smudge_V : V;
+fun smudge_V2 : V2;
+fun smudgy_A : A;
+fun smug_A : A;
+fun smuggle_V2 : V2;
+fun smuggler_N : N;
+fun smugly_Adv : Adv;
+fun smugness_N : N;
+fun smut_N : N;
+fun smut_V2 : V2;
+fun smuttily_Adv : Adv;
+fun smuttiness_N : N;
+fun smutty_A : A;
+fun snack_N : N;
+fun snack_bar_N : N;
+fun snack_counter_N : N;
+fun snaffle_N : N;
+fun snaffle_V2 : V2;
+fun snaffle_bit_N : N;
+fun snag_N : N;
+fun snag_V2 : V2;
+fun snail_N : N;
+fun snake_N : N;
+fun snake_V : V;
+fun snake_charmer_N : N;
+fun snaky_A : A;
+fun snap_N : N;
+fun snap_V : V;
+fun snap_V2 : V2;
+fun snap_fastener_N : N;
+fun snapdragon_N : N;
+fun snappish_A : A;
+fun snappishly_Adv : Adv;
+fun snappishness_N : N;
+fun snappy_A : A;
+fun snapshot_N : N;
+fun snare_N : N;
+fun snare_V2 : V2;
+fun snare_drum_N : N;
+fun snarl_N : N;
+fun snarl_V : V;
+fun snarl_V2 : V2;
+fun snarl_up_N : N;
+fun snatch_N : N;
+fun snatch_V : V;
+fun snatch_V2 : V2;
+fun snatcher_N : N;
+fun snazzy_A : A;
+fun sneak_N : N;
+fun sneak_V : V;
+fun sneak_V2 : V2;
+fun sneak_thief_N : N;
+fun sneaking_A : A;
+fun sneakingly_Adv : Adv;
+fun sneaky_A : A;
+fun sneer_N : N;
+fun sneer_V : V;
+fun sneeringly_Adv : Adv;
+fun sneeze_N : N;
+fun sneeze_V : V;
+fun snick_N : N;
+fun snick_V : V;
+fun snick_V2 : V2;
+fun snicker_N : N;
+fun snicker_V : V;
+fun snide_A : A;
+fun sniff_N : N;
+fun sniff_V : V;
+fun sniff_V2 : V2;
+fun sniffle_V : V;
+fun sniffy_A : A;
+fun snifter_N : N;
+fun snigger_N : N;
+fun snigger_V : V;
+fun snip_N : N;
+fun snip_V : V;
+fun snip_V2 : V2;
+fun snipe_N : N;
+fun snipe_V : V;
+fun snipe_V2 : V2;
+fun sniper_N : N;
+fun snippet_N : N;
+fun snipping_N : N;
+fun snitch_V : V;
+fun snitch_V2 : V2;
+fun snivel_V : V;
+fun sniveller_N : N;
+fun snob_N : N;
+fun snobbery_N : N;
+fun snobbish_A : A;
+fun snobbishly_Adv : Adv;
+fun snobbishness_N : N;
+fun snog_V : V;
+fun snogging_N : N;
+fun snood_N : N;
+fun snook_N : N;
+fun snooker_N : N;
+fun snoop_V : V;
+fun snooper_N : N;
+fun snootily_Adv : Adv;
+fun snooty_A : A;
+fun snooze_N : N;
+fun snooze_V : V;
+fun snore_N : N;
+fun snore_V : V;
+fun snorer_N : N;
+fun snorkel_N : N;
+fun snort_N : N;
+fun snort_V : V;
+fun snort_V2 : V2;
+fun snorter_N : N;
+fun snorty_A : A;
+fun snot_N : N;
+fun snot_nosed_A : A;
+fun snotty_A : A;
+fun snout_N : N;
+fun snow_N : N;
+fun snow_V : V;
+fun snow_V2 : V2;
+fun snow_clad_A : A;
+fun snow_covered_A : A;
+fun snow_line_N : N;
+fun snow_white_A : A;
+fun snowball_N : N;
+fun snowball_V : V;
+fun snowball_V2 : V2;
+fun snowberry_N : N;
+fun snowblind_A : A;
+fun snowblindness_N : N;
+fun snowbound_A : A;
+fun snowcapped_A : A;
+fun snowdrift_N : N;
+fun snowdrop_N : N;
+fun snowfall_N : N;
+fun snowfield_N : N;
+fun snowflake_N : N;
+fun snowman_N : N;
+fun snowplough_N : N;
+fun snowstorm_N : N;
+fun snowy_A : A;
+fun snr_PN : PN;
+fun snub_A : A;
+fun snub_N : N;
+fun snub_V2 : V2;
+fun snub_nosed_A : A;
+fun snuff_N : N;
+fun snuff_V : V;
+fun snuff_V2 : V2;
+fun snuff_colour_A : A;
+fun snuff_colour_N : N;
+fun snuff_coloured_A : A;
+fun snuffbox_N : N;
+fun snuffle_N : N;
+fun snuffle_V : V;
+fun snug_A : A;
+fun snug_N : N;
+fun snuggery_N : N;
+fun snuggle_V : V;
+fun snuggle_V2 : V2;
+fun snugly_Adv : Adv;
+fun snugness_N : N;
+fun so_Adv : Adv;
+fun so_N : N;
+fun so_and_so_N : N;
+fun so_called_A : A;
+fun so_so_A : A;
+fun so_so_Adv : Adv;
+fun soak_N : N;
+fun soak_V : V;
+fun soak_V2 : V2;
+fun soaker_N : N;
+fun soap_N : N;
+fun soap_V2 : V2;
+fun soap_bubble_N : N;
+fun soap_opera_N : N;
+fun soapbox_N : N;
+fun soapy_A : A;
+fun soar_V : V;
+fun sob_N : N;
+fun sob_V : V;
+fun sob_V2 : V2;
+fun sob_stuff_N : N;
+fun sobbingly_Adv : Adv;
+fun sober_A : A;
+fun sober_V : V;
+fun sober_V2 : V2;
+fun sober_sides_N : N;
+fun soberly_Adv : Adv;
+fun sobriety_N : N;
+fun sobriquet_N : N;
+fun soc_N : N;
+fun soccer_N : N;
+fun sociability_N : N;
+fun sociable_A : A;
+fun sociably_Adv : Adv;
+fun social_A : A;
+fun social_N : N;
+fun social_work_N : N;
+fun socialism_N : N;
+fun socialist_A : A;
+fun socialist_N : N;
+fun socialite_N : N;
+fun socialization_N : N;
+fun socialize_V2 : V2;
+fun socially_Adv : Adv;
+fun society_N : N;
+fun sociological_A : A;
+fun sociologically_Adv : Adv;
+fun sociologist_N : N;
+fun sociology_N : N;
+fun sock_Adv : Adv;
+fun sock_N : N;
+fun sock_V2 : V2;
+fun socket_N : N;
+fun socratic_A : A;
+fun sod_N : N;
+fun sod_V : V;
+fun soda_N : N;
+fun soda_biscuit_N : N;
+fun soda_cracker_N : N;
+fun soda_fountain_N : N;
+fun soda_water_N : N;
+fun sodden_A : A;
+fun sodding_A : A;
+fun sodium_N : N;
+fun sodomite_N : N;
+fun sodomy_N : N;
+fun sofa_N : N;
+fun sofia_PN : PN;
+fun soft_A : A;
+fun soft_boiled_A : A;
+fun soft_footed_A : A;
+fun soft_headed_A : A;
+fun soft_hearted_A : A;
+fun soft_pedal_V : V;
+fun soft_pedal_V2 : V2;
+fun soft_soap_V2 : V2;
+fun soft_solder_N : N;
+fun soft_solder_V2 : V2;
+fun soft_spoken_A : A;
+fun soft_witted_A : A;
+fun soften_V : V;
+fun soften_V2 : V2;
+fun softener_N : N;
+fun softie_N : N;
+fun softish_A : A;
+fun softland_V : V;
+fun softly_Adv : Adv;
+fun softness_N : N;
+fun software_N : N;
+fun softwood_N : N;
+fun softy_N : N;
+fun sogginess_N : N;
+fun soggy_A : A;
+fun soh_N : N;
+fun soho_PN : PN;
+fun soignee_A : A;
+fun soigne_A : A;
+fun soil_N : N;
+fun soil_V : V;
+fun soil_V2 : V2;
+fun soil_pipe_N : N;
+fun soiree_N : N;
+fun sojourn_N : N;
+fun sojourn_V : V;
+fun sojourner_N : N;
+fun sol_PN : PN;
+fun sol_fa_N : N;
+fun solace_N : N;
+fun solace_V2 : V2;
+fun solar_A : A;
+fun solar_plexus_N : N;
+fun solarium_N : N;
+fun solder_N : N;
+fun solder_V2 : V2;
+fun soldering_iron_N : N;
+fun soldier_N : N;
+fun soldier_V : V;
+fun soldiery_N : N;
+fun sole_A : A;
+fun sole_N : N;
+fun sole_V2 : V2;
+fun solecism_N : N;
+fun soled_A : A;
+fun solely_Adv : Adv;
+fun solemn_A : A;
+fun solemnity_N : N;
+fun solemnization_N : N;
+fun solemnize_V2 : V2;
+fun solemnly_Adv : Adv;
+fun solemnness_N : N;
+fun solicit_V : V;
+fun solicit_V2 : V2;
+fun solicitation_N : N;
+fun solicitor_N : N;
+fun solicitor_general_N : N;
+fun solicitous_A : A;
+fun solicitously_Adv : Adv;
+fun solicitude_N : N;
+fun solid_A : A;
+fun solid_N : N;
+fun solid_state_A : A;
+fun solidarity_N : N;
+fun solidification_N : N;
+fun solidify_V : V;
+fun solidify_V2 : V2;
+fun solidity_N : N;
+fun solidly_Adv : Adv;
+fun solidness_N : N;
+fun solihull_PN : PN;
+fun soliloquize_V : V;
+fun soliloquy_N : N;
+fun solingen_PN : PN;
+fun solipsism_N : N;
+fun solitaire_N : N;
+fun solitarily_Adv : Adv;
+fun solitary_A : A;
+fun solitude_N : N;
+fun solo_N : N;
+fun soloist_N : N;
+fun solon_PN : PN;
+fun solstice_N : N;
+fun solubility_N : N;
+fun soluble_A : A;
+fun solution_N : N;
+fun solvable_A : A;
+fun solve_V2 : V2;
+fun solvency_N : N;
+fun solvent_A : A;
+fun solvent_N : N;
+fun somali_A : A;
+fun somali_N : N;
+fun somalia_PN : PN;
+fun somalian_A : A;
+fun somalian_N : N;
+fun somatic_A : A;
+fun sombre_A : A;
+fun sombrely_Adv : Adv;
+fun sombreness_N : N;
+fun sombrero_N : N;
+fun someday_Adv : Adv;
+fun somehow_Adv : Adv;
+fun someone_N : N;
+fun someplace_Adv : Adv;
+fun somercotes_PN : PN;
+fun somersault_N : N;
+fun somersault_V : V;
+fun somerset_PN : PN;
+fun something_Adv : Adv;
+fun sometime_Adv : Adv;
+fun sometimes_Adv : Adv;
+fun someway_Adv : Adv;
+fun somewhat_Adv : Adv;
+fun somnambulism_N : N;
+fun somnambulist_N : N;
+fun somnolence_N : N;
+fun somnolent_A : A;
+fun somnolently_Adv : Adv;
+fun son_N : N;
+fun son_in_law_N : N;
+fun sonar_N : N;
+fun sonata_N : N;
+fun song_N : N;
+fun songbird_N : N;
+fun songbook_N : N;
+fun songster_N : N;
+fun songstress_N : N;
+fun sonia_PN : PN;
+fun sonic_A : A;
+fun sonnet_N : N;
+fun sonneteer_N : N;
+fun sonny_N : N;
+fun sonority_N : N;
+fun sonorous_A : A;
+fun sonorously_Adv : Adv;
+fun sonsy_A : A;
+fun soochow_PN : PN;
+fun soon_Adv : Adv;
+fun sooner_Adv : Adv;
+fun soonest_Adv : Adv;
+fun soot_N : N;
+fun soot_V2 : V2;
+fun sooth_N : N;
+fun soothe_V2 : V2;
+fun soothingly_Adv : Adv;
+fun soothsayer_N : N;
+fun sooty_A : A;
+fun sop_N : N;
+fun sop_V2 : V2;
+fun sophia_PN : PN;
+fun sophie_PN : PN;
+fun sophism_N : N;
+fun sophist_N : N;
+fun sophisticated_A : A;
+fun sophistication_N : N;
+fun sophistry_N : N;
+fun sophomore_N : N;
+fun soporific_A : A;
+fun soporific_N : N;
+fun sopping_A : A;
+fun sopping_Adv : Adv;
+fun soppy_A : A;
+fun soprano_N : N;
+fun sorbet_N : N;
+fun sorcerer_N : N;
+fun sorceress_N : N;
+fun sorcery_N : N;
+fun sordid_A : A;
+fun sordidly_Adv : Adv;
+fun sordidness_N : N;
+fun sore_A : A;
+fun sore_N : N;
+fun sorely_Adv : Adv;
+fun soreness_N : N;
+fun sorghum_N : N;
+fun sorority_N : N;
+fun sorrel_A : A;
+fun sorrel_N : N;
+fun sorrow_N : N;
+fun sorrow_V : V;
+fun sorrowful_A : A;
+fun sorrowfully_Adv : Adv;
+fun sorry_A : A;
+fun sort_N : N;
+fun sort_V : V;
+fun sort_V2 : V2;
+fun sorter_N : N;
+fun sortie_N : N;
+fun sos_N : N;
+fun soss_N : N;
+fun sot_N : N;
+fun sotho_A : A;
+fun sotho_N : N;
+fun sottish_A : A;
+fun sottishly_Adv : Adv;
+fun sottishness_N : N;
+fun sotto_voce_Adv : Adv;
+fun sou'_east_Adv : Adv;
+fun sou'_east_N : N;
+fun sou'_sou'_east_Adv : Adv;
+fun sou'_sou'_east_N : N;
+fun sou'_sou'_west_Adv : Adv;
+fun sou'_sou'_west_N : N;
+fun sou'_west_Adv : Adv;
+fun sou'_west_N : N;
+fun sou'_wester_N : N;
+fun sou_N : N;
+fun soubrette_N : N;
+fun soubriquet_N : N;
+fun souffle_N : N;
+fun sough_V : V;
+fun soul_N : N;
+fun soul_destroying_A : A;
+fun soul_stirring_A : A;
+fun soulful_A : A;
+fun soulfully_Adv : Adv;
+fun soulless_A : A;
+fun soullessly_Adv : Adv;
+fun sound_A : A;
+fun sound_Adv : Adv;
+fun sound_N : N;
+fun sound_V : V;
+fun sound_V2 : V2;
+fun sound_film_N : N;
+fun sound_recording_N : N;
+fun sound_wave_N : N;
+fun soundbox_N : N;
+fun sounding_board_N : N;
+fun soundless_A : A;
+fun soundlessly_Adv : Adv;
+fun soundly_Adv : Adv;
+fun soundness_N : N;
+fun soundproof_A : A;
+fun soundproof_V2 : V2;
+fun soundtrack_N : N;
+fun soup_N : N;
+fun soup_V2 : V2;
+fun soup_kitchen_N : N;
+fun soupcon_N : N;
+fun sour_A : A;
+fun sour_V : V;
+fun sour_V2 : V2;
+fun source_N : N;
+fun sourly_Adv : Adv;
+fun sourness_N : N;
+fun souse_V2 : V2;
+fun soused_A : A;
+fun soutane_N : N;
+fun south_Adv : Adv;
+fun south_N : N;
+fun south_kirkby_PN : PN;
+fun south_normantown_PN : PN;
+fun south_ockendon_PN : PN;
+fun south_shields_PN : PN;
+fun south_southeast_Adv : Adv;
+fun south_southeast_N : N;
+fun south_southwest_Adv : Adv;
+fun south_southwest_N : N;
+fun southampton_PN : PN;
+fun southeast_Adv : Adv;
+fun southeast_N : N;
+fun southeaster_N : N;
+fun southeasterly_A : A;
+fun southeastern_A : A;
+fun southend_on_sea_PN : PN;
+fun southerly_A : A;
+fun southerly_Adv : Adv;
+fun southern_A : A;
+fun southerner_N : N;
+fun southernmost_A : A;
+fun southpaw_N : N;
+fun southport_PN : PN;
+fun southward_Adv : Adv;
+fun southwards_Adv : Adv;
+fun southwark_PN : PN;
+fun southwest_Adv : Adv;
+fun southwest_N : N;
+fun southwester_N : N;
+fun southwesterly_A : A;
+fun southwestern_A : A;
+fun souvenir_N : N;
+fun sovereign_A : A;
+fun sovereign_N : N;
+fun sovereignty_N : N;
+fun soviet_A : A;
+fun soviet_N : N;
+fun sovietize_V2 : V2;
+fun sow_N : N;
+fun sow_V : V;
+fun sow_V2 : V2;
+fun sower_N : N;
+fun soy_N : N;
+fun soya_N : N;
+fun sozzled_A : A;
+fun spa_N : N;
+fun space_N : N;
+fun space_V2 : V2;
+fun space_bar_N : N;
+fun space_capsule_N : N;
+fun space_heater_N : N;
+fun space_helmet_N : N;
+fun space_rocket_N : N;
+fun space_time_N : N;
+fun space_vehicle_N : N;
+fun spacecraft_N : N;
+fun spaceship_N : N;
+fun spacesuit_N : N;
+fun spacing_N : N;
+fun spacious_A : A;
+fun spaciously_Adv : Adv;
+fun spaciousness_N : N;
+fun spade_N : N;
+fun spade_V2 : V2;
+fun spadeful_N : N;
+fun spadework_N : N;
+fun spaghetti_N : N;
+fun spain_PN : PN;
+fun spalding_PN : PN;
+fun spam_N : N;
+fun span_N : N;
+fun span_V2 : V2;
+fun spangle_N : N;
+fun spangle_V2 : V2;
+fun spaniard_N : N;
+fun spaniel_N : N;
+fun spanish_A : A;
+fun spanish_N : N;
+fun spank_V : V;
+fun spank_V2 : V2;
+fun spanking_A : A;
+fun spanking_N : N;
+fun spanner_N : N;
+fun spar_N : N;
+fun spar_V : V;
+fun spare_A : A;
+fun spare_N : N;
+fun spare_V : V;
+fun spare_V2 : V2;
+fun spare_rib_N : N;
+fun sparely_Adv : Adv;
+fun spareness_N : N;
+fun sparing_A : A;
+fun sparingly_Adv : Adv;
+fun spark_N : N;
+fun spark_V : V;
+fun spark_V2 : V2;
+fun spark_plug_N : N;
+fun sparking_plug_N : N;
+fun sparkle_N : N;
+fun sparkle_V : V;
+fun sparkler_N : N;
+fun sparkling_A : A;
+fun sparring_match_N : N;
+fun sparring_partner_N : N;
+fun sparrow_N : N;
+fun sparse_A : A;
+fun sparsely_Adv : Adv;
+fun sparseness_N : N;
+fun sparsity_N : N;
+fun spartan_A : A;
+fun spartan_N : N;
+fun spasm_N : N;
+fun spasmodic_A : A;
+fun spasmodically_Adv : Adv;
+fun spastic_A : A;
+fun spastic_N : N;
+fun spat_N : N;
+fun spat_V : V;
+fun spat_V2 : V2;
+fun spatchcock_N : N;
+fun spatchcock_V2 : V2;
+fun spate_N : N;
+fun spatial_A : A;
+fun spatially_Adv : Adv;
+fun spatter_N : N;
+fun spatter_V : V;
+fun spatter_V2 : V2;
+fun spatula_N : N;
+fun spavin_N : N;
+fun spavined_A : A;
+fun spawn_N : N;
+fun spawn_V : V;
+fun spawn_V2 : V2;
+fun spay_V2 : V2;
+fun speak_V : V;
+fun speak_V2 : V2;
+fun speaker_N : N;
+fun speakership_N : N;
+fun speaking_trumpet_N : N;
+fun speaking_tube_N : N;
+fun spear_N : N;
+fun spear_V2 : V2;
+fun spearhead_N : N;
+fun spearmint_N : N;
+fun spec_N : N;
+fun special_A : A;
+fun special_N : N;
+fun specialism_N : N;
+fun specialist_N : N;
+fun speciality_N : N;
+fun specialization_N : N;
+fun specialize_V : V;
+fun specialize_V2 : V2;
+fun specially_Adv : Adv;
+fun specialty_N : N;
+fun specie_N : N;
+fun species_N : N;
+fun specifiable_A : A;
+fun specific_A : A;
+fun specific_N : N;
+fun specifically_Adv : Adv;
+fun specification_N : N;
+fun specificity_N : N;
+fun specify_V2 : V2;
+fun specimen_N : N;
+fun specious_A : A;
+fun speciously_Adv : Adv;
+fun speciousness_N : N;
+fun speck_N : N;
+fun specked_A : A;
+fun speckle_N : N;
+fun speckled_A : A;
+fun speckless_A : A;
+fun spectacle_N : N;
+fun spectacled_A : A;
+fun spectacular_A : A;
+fun spectacular_N : N;
+fun spectacularly_Adv : Adv;
+fun spectator_N : N;
+fun spectral_A : A;
+fun spectre_N : N;
+fun spectroscope_N : N;
+fun spectroscopic_A : A;
+fun spectrum_N : N;
+fun speculate_V : V;
+fun speculation_N : N;
+fun speculative_A : A;
+fun speculatively_Adv : Adv;
+fun speculator_N : N;
+fun speech_N : N;
+fun speech_day_N : N;
+fun speechify_V : V;
+fun speechless_A : A;
+fun speechlessly_Adv : Adv;
+fun speed_N : N;
+fun speed_V : V;
+fun speed_V2 : V2;
+fun speed_cop_N : N;
+fun speed_indicator_N : N;
+fun speed_limit_N : N;
+fun speed_up_N : N;
+fun speedboat_N : N;
+fun speedily_Adv : Adv;
+fun speeding_N : N;
+fun speedometer_N : N;
+fun speedway_N : N;
+fun speedwell_N : N;
+fun speedy_A : A;
+fun spelaeologist_N : N;
+fun spelaeology_N : N;
+fun speleologist_N : N;
+fun speleology_N : N;
+fun spell_N : N;
+fun spell_V : V;
+fun spell_V2 : V2;
+fun spellbinder_N : N;
+fun spellbound_A : A;
+fun speller_N : N;
+fun spelling_N : N;
+fun spelt_N : N;
+fun spenborough_PN : PN;
+fun spend_V : V;
+fun spend_V2 : V2;
+fun spender_N : N;
+fun spendthrift_N : N;
+fun spennymoor_PN : PN;
+fun spent_A : A;
+fun sperm_N : N;
+fun sperm_whale_N : N;
+fun spermaceti_N : N;
+fun spermatozoon_N : N;
+fun spermicide_N : N;
+fun spew_V : V;
+fun spew_V2 : V2;
+fun sphagnum_N : N;
+fun sphere_N : N;
+fun spherical_A : A;
+fun spheroid_N : N;
+fun sphinx_N : N;
+fun spice_N : N;
+fun spice_V2 : V2;
+fun spicily_Adv : Adv;
+fun spiciness_N : N;
+fun spick_A : A;
+fun spicy_A : A;
+fun spider_N : N;
+fun spidery_A : A;
+fun spiel_N : N;
+fun spiel_V : V;
+fun spiel_V2 : V2;
+fun spigot_N : N;
+fun spike_N : N;
+fun spike_V2 : V2;
+fun spikenard_N : N;
+fun spiky_A : A;
+fun spill_N : N;
+fun spill_V : V;
+fun spill_V2 : V2;
+fun spillage_N : N;
+fun spillover_N : N;
+fun spillway_N : N;
+fun spin_N : N;
+fun spin_V : V;
+fun spin_V2 : V2;
+fun spin_drier_N : N;
+fun spin_dry_V2 : V2;
+fun spin_off_N : N;
+fun spinach_N : N;
+fun spinal_A : A;
+fun spindle_N : N;
+fun spindle_berry_N : N;
+fun spindle_legged_A : A;
+fun spindle_shanked_A : A;
+fun spindle_shanks_N : N;
+fun spindle_tree_N : N;
+fun spindly_A : A;
+fun spindrift_N : N;
+fun spine_N : N;
+fun spineless_A : A;
+fun spinet_N : N;
+fun spinnaker_N : N;
+fun spinney_N : N;
+fun spinning_wheel_N : N;
+fun spinster_N : N;
+fun spinsterhood_N : N;
+fun spiny_A : A;
+fun spiral_A : A;
+fun spiral_N : N;
+fun spiral_V : V;
+fun spirally_Adv : Adv;
+fun spire_N : N;
+fun spirit_N : N;
+fun spirit_V2 : V2;
+fun spirit_lamp_N : N;
+fun spirit_level_N : N;
+fun spirit_rapper_N : N;
+fun spirit_stove_N : N;
+fun spirited_A : A;
+fun spiritless_A : A;
+fun spiritual_A : A;
+fun spiritual_N : N;
+fun spiritualism_N : N;
+fun spiritualist_N : N;
+fun spiritualistic_A : A;
+fun spirituality_N : N;
+fun spiritualization_N : N;
+fun spiritualize_V2 : V2;
+fun spiritually_Adv : Adv;
+fun spirituous_A : A;
+fun spirt_N : N;
+fun spirt_V : V;
+fun spit_N : N;
+fun spit_V : V;
+fun spit_V2 : V2;
+fun spite_N : N;
+fun spite_V2 : V2;
+fun spiteful_A : A;
+fun spitefully_Adv : Adv;
+fun spitefulness_N : N;
+fun spitfire_N : N;
+fun spitting_N : N;
+fun spittle_N : N;
+fun spittoon_N : N;
+fun spiv_N : N;
+fun splash_N : N;
+fun splash_V : V;
+fun splash_V2 : V2;
+fun splashdown_N : N;
+fun splay_A : A;
+fun splay_N : N;
+fun splay_V : V;
+fun splay_V2 : V2;
+fun splayfoot_N : N;
+fun splayfooted_A : A;
+fun spleen_N : N;
+fun splendid_A : A;
+fun splendidly_Adv : Adv;
+fun splendiferous_A : A;
+fun splendour_N : N;
+fun splenetic_A : A;
+fun splice_N : N;
+fun splice_V2 : V2;
+fun splicer_N : N;
+fun splint_N : N;
+fun splinter_N : N;
+fun splinter_V : V;
+fun splinter_V2 : V2;
+fun splinter_proof_A : A;
+fun splintery_A : A;
+fun split_N : N;
+fun split_PN : PN;
+fun split_V : V;
+fun split_V2 : V2;
+fun splodge_N : N;
+fun splosh_V2 : V2;
+fun splotch_N : N;
+fun splurge_N : N;
+fun splurge_V : V;
+fun splutter_N : N;
+fun splutter_V : V;
+fun splutter_V2 : V2;
+fun spode_N : N;
+fun spoil_N : N;
+fun spoil_V : V;
+fun spoil_V2 : V2;
+fun spoilsport_N : N;
+fun spoke_N : N;
+fun spokesman_N : N;
+fun spoliation_N : N;
+fun spondaic_A : A;
+fun spondee_N : N;
+fun sponge_N : N;
+fun sponge_V : V;
+fun sponge_V2 : V2;
+fun sponge_cake_N : N;
+fun sponger_N : N;
+fun sponginess_N : N;
+fun spongy_A : A;
+fun sponsor_N : N;
+fun sponsor_V2 : V2;
+fun sponsorship_N : N;
+fun spontaneity_N : N;
+fun spontaneous_A : A;
+fun spontaneously_Adv : Adv;
+fun spontaneousness_N : N;
+fun spoof_N : N;
+fun spoof_V2 : V2;
+fun spook_N : N;
+fun spooky_A : A;
+fun spool_N : N;
+fun spoon_N : N;
+fun spoon_V : V;
+fun spoon_V2 : V2;
+fun spoonerism_N : N;
+fun spoonfeed_V2 : V2;
+fun spoonfeeding_N : N;
+fun spoonful_N : N;
+fun spoor_N : N;
+fun sporadic_A : A;
+fun sporadically_Adv : Adv;
+fun spore_N : N;
+fun sporran_N : N;
+fun sport_N : N;
+fun sport_V : V;
+fun sport_V2 : V2;
+fun sporting_A : A;
+fun sportingly_Adv : Adv;
+fun sportive_A : A;
+fun sportively_Adv : Adv;
+fun sportiveness_N : N;
+fun sports_car_N : N;
+fun sports_coat_N : N;
+fun sports_editor_N : N;
+fun sports_jacket_N : N;
+fun sportsman_N : N;
+fun sportsmanlike_A : A;
+fun sportsmanship_N : N;
+fun spot_N : N;
+fun spot_V : V;
+fun spot_V2 : V2;
+fun spotless_A : A;
+fun spotlessly_Adv : Adv;
+fun spotlight_N : N;
+fun spotlight_V2 : V2;
+fun spotted_A : A;
+fun spotter_N : N;
+fun spotty_A : A;
+fun spouse_N : N;
+fun spout_N : N;
+fun spout_V : V;
+fun spout_V2 : V2;
+fun sprain_N : N;
+fun sprain_V2 : V2;
+fun sprat_N : N;
+fun sprawl_N : N;
+fun sprawl_V : V;
+fun spray_N : N;
+fun spray_V2 : V2;
+fun spray_gun_N : N;
+fun sprayer_N : N;
+fun spread_N : N;
+fun spread_V : V;
+fun spread_V2 : V2;
+fun spread_over_N : N;
+fun spreadeagle_N : N;
+fun spreadeagle_V2 : V2;
+fun spreader_N : N;
+fun spree_N : N;
+fun sprig_N : N;
+fun sprigged_A : A;
+fun sprightliness_N : N;
+fun sprightly_A : A;
+fun spring_N : N;
+fun spring_V : V;
+fun spring_V2 : V2;
+fun spring_balance_N : N;
+fun spring_clean_N : N;
+fun spring_clean_V2 : V2;
+fun spring_cleaning_N : N;
+fun spring_gun_N : N;
+fun spring_mattress_N : N;
+fun springboard_N : N;
+fun springbok_N : N;
+fun springfield_PN : PN;
+fun springless_A : A;
+fun springlike_A : A;
+fun springtide_N : N;
+fun springtime_N : N;
+fun springy_A : A;
+fun sprinkle_V2 : V2;
+fun sprinkler_N : N;
+fun sprinkling_N : N;
+fun sprint_N : N;
+fun sprint_V : V;
+fun sprinter_N : N;
+fun sprit_N : N;
+fun sprite_N : N;
+fun spritsail_N : N;
+fun sprocket_N : N;
+fun sprocket_wheel_N : N;
+fun sprout_N : N;
+fun sprout_V : V;
+fun sprout_V2 : V2;
+fun spruce_A : A;
+fun spruce_N : N;
+fun spruce_V : V;
+fun spruce_V2 : V2;
+fun sprucely_Adv : Adv;
+fun spruceness_N : N;
+fun spry_A : A;
+fun spud_N : N;
+fun spue_V : V;
+fun spue_V2 : V2;
+fun spume_N : N;
+fun spunk_N : N;
+fun spunky_A : A;
+fun spur_N : N;
+fun spur_V : V;
+fun spur_V2 : V2;
+fun spurious_A : A;
+fun spuriously_Adv : Adv;
+fun spuriousness_N : N;
+fun spurn_V2 : V2;
+fun spurt_N : N;
+fun spurt_V : V;
+fun sputnik_N : N;
+fun sputter_V : V;
+fun sputter_V2 : V2;
+fun sputum_N : N;
+fun spy_N : N;
+fun spy_V : V;
+fun spy_V2 : V2;
+fun spy_hole_N : N;
+fun spyglass_N : N;
+fun sq_PN : PN;
+fun squab_N : N;
+fun squabble_N : N;
+fun squabble_V : V;
+fun squad_N : N;
+fun squadron_N : N;
+fun squalid_A : A;
+fun squalidly_Adv : Adv;
+fun squall_N : N;
+fun squall_V : V;
+fun squally_A : A;
+fun squalor_N : N;
+fun squander_V2 : V2;
+fun squandermania_N : N;
+fun square_A : A;
+fun square_Adv : Adv;
+fun square_N : N;
+fun square_V : V;
+fun square_V2 : V2;
+fun square_bashing_N : N;
+fun square_built_A : A;
+fun square_rigged_A : A;
+fun square_shouldered_A : A;
+fun square_toed_A : A;
+fun square_toes_N : N;
+fun squarely_Adv : Adv;
+fun squareness_N : N;
+fun squash_N : N;
+fun squash_V : V;
+fun squash_V2 : V2;
+fun squashy_A : A;
+fun squat_A : A;
+fun squat_V : V;
+fun squatter_N : N;
+fun squaw_N : N;
+fun squawk_N : N;
+fun squawk_V : V;
+fun squawker_N : N;
+fun squeak_N : N;
+fun squeak_V : V;
+fun squeak_V2 : V2;
+fun squeaker_N : N;
+fun squeaky_A : A;
+fun squeal_N : N;
+fun squeal_V : V;
+fun squeal_V2 : V2;
+fun squealer_N : N;
+fun squeamish_A : A;
+fun squeamishly_Adv : Adv;
+fun squeamishness_N : N;
+fun squeegee_N : N;
+fun squeegee_V2 : V2;
+fun squeeze_N : N;
+fun squeeze_V : V;
+fun squeeze_V2 : V2;
+fun squeezer_N : N;
+fun squelch_N : N;
+fun squelch_V : V;
+fun squelch_V2 : V2;
+fun squib_N : N;
+fun squid_N : N;
+fun squiffy_A : A;
+fun squiggle_N : N;
+fun squiggly_A : A;
+fun squint_N : N;
+fun squint_V : V;
+fun squint_eyed_A : A;
+fun squire_N : N;
+fun squire_V2 : V2;
+fun squirearchy_N : N;
+fun squirm_N : N;
+fun squirm_V : V;
+fun squirrel_N : N;
+fun squirt_N : N;
+fun squirt_V : V;
+fun squirt_V2 : V2;
+fun sr_PN : PN;
+fun sri_lanka_PN : PN;
+fun sri_lankan_A : A;
+fun sri_lankan_N : N;
+fun srn_N : N;
+fun ss_N : N;
+fun st_PN : PN;
+fun st_albans_PN : PN;
+fun st_andrews_PN : PN;
+fun st_andrews_major_PN : PN;
+fun st_austell_PN : PN;
+fun st_blazey_PN : PN;
+fun st_helens_PN : PN;
+fun st_ives_PN : PN;
+fun st_louis_PN : PN;
+fun st_neots_PN : PN;
+fun st_paul_PN : PN;
+fun st_petersburg_PN : PN;
+fun st_stephen_PN : PN;
+fun sta_PN : PN;
+fun stab_N : N;
+fun stab_V : V;
+fun stab_V2 : V2;
+fun stabber_N : N;
+fun stability_N : N;
+fun stabilization_N : N;
+fun stabilize_V2 : V2;
+fun stabilizer_N : N;
+fun stable_A : A;
+fun stable_N : N;
+fun stable_V2 : V2;
+fun stable_companion_N : N;
+fun stableboy_N : N;
+fun stableman_N : N;
+fun stablemate_N : N;
+fun stabling_N : N;
+fun staccato_A : A;
+fun staccato_Adv : Adv;
+fun stack_N : N;
+fun stack_V2 : V2;
+fun stadium_N : N;
+fun staff_N : N;
+fun staff_V2 : V2;
+fun staff_office_N : N;
+fun stafford_PN : PN;
+fun staffordshire_PN : PN;
+fun stag_N : N;
+fun stag_party_N : N;
+fun stage_N : N;
+fun stage_V : V;
+fun stage_V2 : V2;
+fun stage_struck_A : A;
+fun stage_whisper_N : N;
+fun stagecoach_N : N;
+fun stagecraft_N : N;
+fun stager_N : N;
+fun stagflation_N : N;
+fun stagger_N : N;
+fun stagger_V : V;
+fun stagger_V2 : V2;
+fun staggerer_N : N;
+fun staggeringly_Adv : Adv;
+fun stagily_Adv : Adv;
+fun staginess_N : N;
+fun staging_N : N;
+fun stagnancy_N : N;
+fun stagnant_A : A;
+fun stagnate_V : V;
+fun stagnation_N : N;
+fun stagy_A : A;
+fun staid_A : A;
+fun staidly_Adv : Adv;
+fun staidness_N : N;
+fun stain_N : N;
+fun stain_V : V;
+fun stain_V2 : V2;
+fun stainless_A : A;
+fun stair_N : N;
+fun stair_carpet_N : N;
+fun stair_rod_N : N;
+fun staircase_N : N;
+fun stairway_N : N;
+fun stake_N : N;
+fun stake_V2 : V2;
+fun stake_holder_N : N;
+fun stakeford_PN : PN;
+fun stalactite_N : N;
+fun stalagmite_N : N;
+fun stale_A : A;
+fun stale_V : V;
+fun stalemate_N : N;
+fun stalemate_V2 : V2;
+fun staleness_N : N;
+fun stalk_N : N;
+fun stalk_V : V;
+fun stalk_V2 : V2;
+fun stalker_N : N;
+fun stalking_horse_N : N;
+fun stall_N : N;
+fun stall_V : V;
+fun stall_V2 : V2;
+fun stall_fed_A : A;
+fun stallion_N : N;
+fun stalwart_A : A;
+fun stalwart_N : N;
+fun stalybridge_PN : PN;
+fun stamen_N : N;
+fun stamford_PN : PN;
+fun stamina_N : N;
+fun stammer_N : N;
+fun stammer_V : V;
+fun stammer_V2 : V2;
+fun stammerer_N : N;
+fun stammeringly_Adv : Adv;
+fun stamp_N : N;
+fun stamp_V : V;
+fun stamp_V2 : V2;
+fun stamp_album_N : N;
+fun stamp_collector_N : N;
+fun stamp_dealer_N : N;
+fun stamp_duty_N : N;
+fun stampede_N : N;
+fun stampede_V : V;
+fun stampede_V2 : V2;
+fun stamping_ground_N : N;
+fun stan_PN : PN;
+fun stance_N : N;
+fun stanchion_N : N;
+fun stand_N : N;
+fun stand_V : V;
+fun stand_V2 : V2;
+fun stand_in_N : N;
+fun stand_to_N : N;
+fun stand_up_A : A;
+fun standard_A : A;
+fun standard_N : N;
+fun standard_bearer_N : N;
+fun standardization_N : N;
+fun standardize_V2 : V2;
+fun standby_N : N;
+fun standing_A : A;
+fun standing_N : N;
+fun standoffish_A : A;
+fun standoffishly_Adv : Adv;
+fun standoffishness_N : N;
+fun standpipe_N : N;
+fun standpoint_N : N;
+fun standstill_N : N;
+fun stanford_PN : PN;
+fun stanley_PN : PN;
+fun stanza_N : N;
+fun staple_N : N;
+fun staple_V2 : V2;
+fun stapler_N : N;
+fun stapling_machine_N : N;
+fun star_N : N;
+fun star_V : V;
+fun star_V2 : V2;
+fun starboard_N : N;
+fun starboard_V2 : V2;
+fun starch_N : N;
+fun starch_V2 : V2;
+fun starchy_A : A;
+fun stardom_N : N;
+fun stardust_N : N;
+fun stare_N : N;
+fun stare_V : V;
+fun stare_V2 : V2;
+fun starfish_N : N;
+fun stargazer_N : N;
+fun staring_A : A;
+fun staring_Adv : Adv;
+fun stark_A : A;
+fun stark_Adv : Adv;
+fun starkers_A : A;
+fun starkly_Adv : Adv;
+fun starless_A : A;
+fun starlet_N : N;
+fun starlight_N : N;
+fun starling_N : N;
+fun starlit_A : A;
+fun starry_A : A;
+fun starry_eyed_A : A;
+fun start_N : N;
+fun start_V : V;
+fun start_V2 : V2;
+fun starter_N : N;
+fun starting_gate_N : N;
+fun starting_point_N : N;
+fun starting_post_N : N;
+fun startle_V2 : V2;
+fun startlingly_Adv : Adv;
+fun starvation_N : N;
+fun starve_V : V;
+fun starve_V2 : V2;
+fun starveling_N : N;
+fun stash_V2 : V2;
+fun state_N : N;
+fun state_V2 : V2;
+fun statecraft_N : N;
+fun stated_A : A;
+fun statehouse_N : N;
+fun stateless_A : A;
+fun stateliness_N : N;
+fun stately_A : A;
+fun statement_N : N;
+fun statesman_N : N;
+fun statesmanlike_A : A;
+fun statesmanship_N : N;
+fun static_A : A;
+fun statically_Adv : Adv;
+fun statics_N : N;
+fun station_N : N;
+fun station_V2 : V2;
+fun station_waggon_N : N;
+fun stationary_A : A;
+fun stationer_N : N;
+fun stationery_N : N;
+fun stationmaster_N : N;
+fun statistic_N : N;
+fun statistical_A : A;
+fun statistically_Adv : Adv;
+fun statistician_N : N;
+fun statistics_N : N;
+fun statuary_A : A;
+fun statuary_N : N;
+fun statue_N : N;
+fun statuesque_A : A;
+fun statuette_N : N;
+fun stature_N : N;
+fun status_N : N;
+fun status_quo_N : N;
+fun statute_N : N;
+fun statute_book_N : N;
+fun statutorily_Adv : Adv;
+fun statutory_A : A;
+fun staunch_A : A;
+fun staunch_V2 : V2;
+fun staunchly_Adv : Adv;
+fun staunchness_N : N;
+fun stave_N : N;
+fun stave_V : V;
+fun stave_V2 : V2;
+fun stay_N : N;
+fun stay_V : V;
+fun stay_V2 : V2;
+fun stay_at_home_N : N;
+fun stayer_N : N;
+fun std_PN : PN;
+fun stead_N : N;
+fun steadfast_A : A;
+fun steadfastly_Adv : Adv;
+fun steadfastness_N : N;
+fun steadily_Adv : Adv;
+fun steadiness_N : N;
+fun steady_A : A;
+fun steady_Adv : Adv;
+fun steady_N : N;
+fun steady_V : V;
+fun steady_V2 : V2;
+fun steak_N : N;
+fun steal_V : V;
+fun steal_V2 : V2;
+fun stealth_N : N;
+fun stealthily_Adv : Adv;
+fun stealthy_A : A;
+fun steam_N : N;
+fun steam_V : V;
+fun steam_V2 : V2;
+fun steam_boiler_N : N;
+fun steam_coal_N : N;
+fun steam_engine_N : N;
+fun steam_heat_N : N;
+fun steam_heat_V2 : V2;
+fun steamboat_N : N;
+fun steamer_N : N;
+fun steamroller_N : N;
+fun steamroller_V2 : V2;
+fun steamship_N : N;
+fun steamy_A : A;
+fun steed_N : N;
+fun steel_N : N;
+fun steel_V2 : V2;
+fun steel_clad_A : A;
+fun steel_plated_A : A;
+fun steelworks_N : N;
+fun steely_A : A;
+fun steelyard_N : N;
+fun steenbok_N : N;
+fun steep_A : A;
+fun steep_V : V;
+fun steep_V2 : V2;
+fun steepen_V : V;
+fun steepen_V2 : V2;
+fun steepish_A : A;
+fun steeple_N : N;
+fun steeplechase_N : N;
+fun steeplechaser_N : N;
+fun steeplejack_N : N;
+fun steeply_Adv : Adv;
+fun steepness_N : N;
+fun steer_N : N;
+fun steer_V : V;
+fun steer_V2 : V2;
+fun steerage_N : N;
+fun steerageway_N : N;
+fun steering_gear_N : N;
+fun steering_wheel_N : N;
+fun steersman_N : N;
+fun stele_N : N;
+fun stella_PN : PN;
+fun stellar_A : A;
+fun stem_N : N;
+fun stem_V : V;
+fun stem_V2 : V2;
+fun stemmed_A : A;
+fun sten_PN : PN;
+fun stench_N : N;
+fun stencil_N : N;
+fun stencil_V2 : V2;
+fun stenographer_N : N;
+fun stenography_N : N;
+fun stentorian_A : A;
+fun step_N : N;
+fun step_V : V;
+fun step_V2 : V2;
+fun stepbrother_N : N;
+fun stepchild_N : N;
+fun stepdaughter_N : N;
+fun stepfather_N : N;
+fun stephanie_PN : PN;
+fun stephen_PN : PN;
+fun stepladder_N : N;
+fun stepmother_N : N;
+fun stepparent_N : N;
+fun steppe_N : N;
+fun stepping_stone_N : N;
+fun stepsister_N : N;
+fun stepson_N : N;
+fun stereo_N : N;
+fun stereophonic_A : A;
+fun stereoscope_N : N;
+fun stereoscopic_A : A;
+fun stereotype_N : N;
+fun stereotype_V2 : V2;
+fun sterile_A : A;
+fun sterility_N : N;
+fun sterilization_N : N;
+fun sterilize_V2 : V2;
+fun sterling_A : A;
+fun sterling_N : N;
+fun stern_A : A;
+fun stern_N : N;
+fun sternly_Adv : Adv;
+fun sternness_N : N;
+fun sternum_N : N;
+fun sternwheeler_N : N;
+fun stertorous_A : A;
+fun stertorously_Adv : Adv;
+fun stethoscope_N : N;
+fun stetson_N : N;
+fun steve_PN : PN;
+fun stevedore_N : N;
+fun steven_PN : PN;
+fun stevenage_PN : PN;
+fun stevenston_PN : PN;
+fun stew_N : N;
+fun stew_V : V;
+fun stew_V2 : V2;
+fun steward_N : N;
+fun stewardess_N : N;
+fun stewardship_N : N;
+fun stewart_PN : PN;
+fun stewed_A : A;
+fun steyning_PN : PN;
+fun stick_N : N;
+fun stick_V : V;
+fun stick_V2 : V2;
+fun stick_in_the_mud_A : A;
+fun stick_in_the_mud_N : N;
+fun stick_on_A : A;
+fun stick_up_N : N;
+fun sticker_N : N;
+fun stickily_Adv : Adv;
+fun stickiness_N : N;
+fun sticking_plaster_N : N;
+fun stickler_N : N;
+fun sticky_A : A;
+fun stiff_A : A;
+fun stiff_Adv : Adv;
+fun stiff_N : N;
+fun stiff_necked_A : A;
+fun stiffen_V : V;
+fun stiffen_V2 : V2;
+fun stiffener_N : N;
+fun stiffening_N : N;
+fun stiffly_Adv : Adv;
+fun stiffness_N : N;
+fun stifle_V : V;
+fun stifle_V2 : V2;
+fun stigma_N : N;
+fun stigmatize_V2 : V2;
+fun stile_N : N;
+fun stiletto_N : N;
+fun still_A : A;
+fun still_Adv : Adv;
+fun still_N : N;
+fun still_V2 : V2;
+fun still_life_N : N;
+fun still_room_N : N;
+fun stillbirth_N : N;
+fun stillborn_A : A;
+fun stillness_N : N;
+fun stilly_A : A;
+fun stilt_N : N;
+fun stilted_A : A;
+fun stiltedly_Adv : Adv;
+fun stilton_N : N;
+fun stimulant_N : N;
+fun stimulate_V2 : V2;
+fun stimulating_A : A;
+fun stimulation_N : N;
+fun stimulus_N : N;
+fun sting_N : N;
+fun sting_V : V;
+fun sting_V2 : V2;
+fun stinger_N : N;
+fun stingily_Adv : Adv;
+fun stinginess_N : N;
+fun stingless_A : A;
+fun stingray_N : N;
+fun stingy_A : A;
+fun stink_N : N;
+fun stink_V : V;
+fun stink_V2 : V2;
+fun stinker_N : N;
+fun stint_N : N;
+fun stint_V : V;
+fun stint_V2 : V2;
+fun stipend_N : N;
+fun stipendiary_A : A;
+fun stipendiary_N : N;
+fun stipple_V2 : V2;
+fun stipulate_V : V;
+fun stipulate_V2 : V2;
+fun stipulation_N : N;
+fun stir_N : N;
+fun stir_V : V;
+fun stir_V2 : V2;
+fun stirling_PN : PN;
+fun stirring_A : A;
+fun stirringly_Adv : Adv;
+fun stirrup_N : N;
+fun stirrup_cup_N : N;
+fun stitch_N : N;
+fun stitch_V : V;
+fun stitch_V2 : V2;
+fun stoat_N : N;
+fun stochastic_A : A;
+fun stochastically_Adv : Adv;
+fun stock_N : N;
+fun stock_V2 : V2;
+fun stock_cube_N : N;
+fun stock_farmer_N : N;
+fun stock_in_trade_N : N;
+fun stock_list_N : N;
+fun stock_still_Adv : Adv;
+fun stockade_N : N;
+fun stockade_V2 : V2;
+fun stockbreeder_N : N;
+fun stockbroker_N : N;
+fun stockcar_N : N;
+fun stockfish_N : N;
+fun stockholder_N : N;
+fun stockholding_N : N;
+fun stockholm_PN : PN;
+fun stockily_Adv : Adv;
+fun stockinette_N : N;
+fun stocking_N : N;
+fun stockinged_A : A;
+fun stockist_N : N;
+fun stockjobber_N : N;
+fun stockpile_N : N;
+fun stockpiling_N : N;
+fun stockport_PN : PN;
+fun stockpot_N : N;
+fun stockroom_N : N;
+fun stocksbridge_PN : PN;
+fun stocktaking_N : N;
+fun stocky_A : A;
+fun stockyard_N : N;
+fun stodge_N : N;
+fun stodginess_N : N;
+fun stodgy_A : A;
+fun stoep_N : N;
+fun stoic_N : N;
+fun stoical_A : A;
+fun stoically_Adv : Adv;
+fun stoicism_N : N;
+fun stoke_V : V;
+fun stoke_V2 : V2;
+fun stoke_on_trent_PN : PN;
+fun stokehold_N : N;
+fun stokehole_N : N;
+fun stoker_N : N;
+fun stole_N : N;
+fun stolen_A : A;
+fun stolid_A : A;
+fun stolidity_N : N;
+fun stolidly_Adv : Adv;
+fun stolidness_N : N;
+fun stomach_N : N;
+fun stomach_V2 : V2;
+fun stomach_ache_N : N;
+fun stomach_pump_N : N;
+fun stomp_N : N;
+fun stomp_V : V;
+fun stone_N : N;
+fun stone_PN : PN;
+fun stone_V2 : V2;
+fun stone_blind_A : A;
+fun stone_cold_A : A;
+fun stone_dead_A : A;
+fun stone_deaf_A : A;
+fun stone_fruit_N : N;
+fun stone_pit_N : N;
+fun stone_sober_A : A;
+fun stonebreaker_N : N;
+fun stoned_A : A;
+fun stonehouse_PN : PN;
+fun stoneless_A : A;
+fun stonemason_N : N;
+fun stonewall_V2 : V2;
+fun stonewaller_N : N;
+fun stonewalling_N : N;
+fun stoneware_N : N;
+fun stonework_N : N;
+fun stonily_Adv : Adv;
+fun stony_A : A;
+fun stony_broke_A : A;
+fun stooge_N : N;
+fun stooge_V : V;
+fun stool_N : N;
+fun stoop_N : N;
+fun stoop_V : V;
+fun stoop_V2 : V2;
+fun stop_N : N;
+fun stop_V : V;
+fun stop_V2 : V2;
+fun stopcock_N : N;
+fun stopgap_N : N;
+fun stopover_N : N;
+fun stoppage_N : N;
+fun stopper_N : N;
+fun stopping_N : N;
+fun stopwatch_N : N;
+fun storage_N : N;
+fun store_N : N;
+fun store_V2 : V2;
+fun storehouse_N : N;
+fun storeroom_N : N;
+fun storey_N : N;
+fun storeyed_A : A;
+fun storied_A : A;
+fun stork_N : N;
+fun storm_N : N;
+fun storm_V : V;
+fun storm_V2 : V2;
+fun storm_beaten_A : A;
+fun storm_bound_A : A;
+fun storm_centre_N : N;
+fun storm_cloud_N : N;
+fun storm_cone_N : N;
+fun storm_lantern_N : N;
+fun storm_signal_N : N;
+fun storm_tossed_A : A;
+fun storm_trooper_N : N;
+fun stormily_Adv : Adv;
+fun stormproof_A : A;
+fun stormy_A : A;
+fun stornoway_PN : PN;
+fun story_N : N;
+fun storyteller_N : N;
+fun stotfold_PN : PN;
+fun stoup_N : N;
+fun stourbridge_PN : PN;
+fun stourport_on_severn_PN : PN;
+fun stout_A : A;
+fun stout_N : N;
+fun stouthearted_A : A;
+fun stoutly_Adv : Adv;
+fun stoutness_N : N;
+fun stove_N : N;
+fun stovepipe_N : N;
+fun stow_V2 : V2;
+fun stowaway_N : N;
+fun stowmarket_PN : PN;
+fun straddle_V : V;
+fun straddle_V2 : V2;
+fun strafe_V2 : V2;
+fun straggle_V : V;
+fun straggler_N : N;
+fun straggly_A : A;
+fun straight_A : A;
+fun straight_Adv : Adv;
+fun straight_N : N;
+fun straighten_V : V;
+fun straighten_V2 : V2;
+fun straightforward_A : A;
+fun straightforwardly_Adv : Adv;
+fun straightness_N : N;
+fun straightway_Adv : Adv;
+fun strain_N : N;
+fun strain_V : V;
+fun strain_V2 : V2;
+fun strained_A : A;
+fun strainer_N : N;
+fun strait_A : A;
+fun strait_N : N;
+fun strait_laced_A : A;
+fun straiten_V2 : V2;
+fun straitjacket_N : N;
+fun strand_N : N;
+fun strand_V : V;
+fun strand_V2 : V2;
+fun strange_A : A;
+fun strangely_Adv : Adv;
+fun strangeness_N : N;
+fun stranger_N : N;
+fun strangle_V2 : V2;
+fun stranglehold_N : N;
+fun strangulation_N : N;
+fun stranraer_PN : PN;
+fun strap_N : N;
+fun strap_V2 : V2;
+fun straphanger_N : N;
+fun strapping_A : A;
+fun strapping_N : N;
+fun strasbourg_PN : PN;
+fun stratagem_N : N;
+fun strategic_A : A;
+fun strategical_A : A;
+fun strategically_Adv : Adv;
+fun strategics_N : N;
+fun strategist_N : N;
+fun strategy_N : N;
+fun stratford_on_avon_PN : PN;
+fun strathaven_PN : PN;
+fun strathclyde_PN : PN;
+fun stratification_N : N;
+fun stratify_V : V;
+fun stratify_V2 : V2;
+fun stratosphere_N : N;
+fun stratum_N : N;
+fun straw_N : N;
+fun straw_V2 : V2;
+fun straw_coloured_A : A;
+fun strawberry_N : N;
+fun strawboard_N : N;
+fun stray_N : N;
+fun stray_V : V;
+fun streak_N : N;
+fun streak_V : V;
+fun streak_V2 : V2;
+fun streaky_A : A;
+fun stream_N : N;
+fun stream_V : V;
+fun streamer_N : N;
+fun streamlet_N : N;
+fun streamline_V2 : V2;
+fun streamlined_A : A;
+fun street_N : N;
+fun street_PN : PN;
+fun street_girl_N : N;
+fun street_urchin_N : N;
+fun streetcar_N : N;
+fun streetwalker_N : N;
+fun strength_N : N;
+fun strengthen_V : V;
+fun strengthen_V2 : V2;
+fun strenuous_A : A;
+fun strenuously_Adv : Adv;
+fun strenuousness_N : N;
+fun streptococcus_N : N;
+fun streptomycin_N : N;
+fun stress_N : N;
+fun stress_V2 : V2;
+fun stress_mark_N : N;
+fun stretch_N : N;
+fun stretch_V : V;
+fun stretch_V2 : V2;
+fun stretcher_N : N;
+fun stretcher_bearer_N : N;
+fun stretcher_party_N : N;
+fun stretford_PN : PN;
+fun strew_V2 : V2;
+fun striated_A : A;
+fun stricken_A : A;
+fun strict_A : A;
+fun strictly_Adv : Adv;
+fun strictness_N : N;
+fun stricture_N : N;
+fun stride_N : N;
+fun stride_V : V;
+fun stride_V2 : V2;
+fun strident_A : A;
+fun stridently_Adv : Adv;
+fun stridulate_V : V;
+fun stridulation_N : N;
+fun strife_N : N;
+fun strike_N : N;
+fun strike_V : V;
+fun strike_V2 : V2;
+fun strike_leader_N : N;
+fun strike_pay_N : N;
+fun strikebound_A : A;
+fun strikebreaker_N : N;
+fun striker_N : N;
+fun striking_A : A;
+fun strikingly_Adv : Adv;
+fun string_N : N;
+fun string_V : V;
+fun string_V2 : V2;
+fun stringency_N : N;
+fun stringent_A : A;
+fun stringently_Adv : Adv;
+fun stringy_A : A;
+fun strip_N : N;
+fun strip_V : V;
+fun strip_V2 : V2;
+fun strip_lighting_N : N;
+fun strip_poker_N : N;
+fun strip_show_N : N;
+fun stripe_N : N;
+fun striped_A : A;
+fun stripling_N : N;
+fun stripper_N : N;
+fun striptease_N : N;
+fun stripy_A : A;
+fun strive_V : V;
+fun striver_N : N;
+fun stroboscope_N : N;
+fun stroke_N : N;
+fun stroke_V2 : V2;
+fun stroll_N : N;
+fun stroll_V : V;
+fun stroller_N : N;
+fun strong_A : A;
+fun strong_arm_A : A;
+fun strong_boned_A : A;
+fun strong_minded_A : A;
+fun strongbox_N : N;
+fun stronghold_N : N;
+fun strongly_Adv : Adv;
+fun strongroom_N : N;
+fun strontium_N : N;
+fun strop_N : N;
+fun strop_V2 : V2;
+fun strophe_N : N;
+fun stroppy_A : A;
+fun stroud_PN : PN;
+fun struck_A : A;
+fun structural_A : A;
+fun structurally_Adv : Adv;
+fun structure_N : N;
+fun structured_A : A;
+fun strudel_N : N;
+fun struggle_N : N;
+fun struggle_V : V;
+fun strum_N : N;
+fun strum_V : V;
+fun strum_V2 : V2;
+fun strumpet_N : N;
+fun strut_N : N;
+fun strut_V : V;
+fun strychnine_N : N;
+fun stuart_PN : PN;
+fun stub_N : N;
+fun stub_V2 : V2;
+fun stubble_N : N;
+fun stubbly_A : A;
+fun stubborn_A : A;
+fun stubbornly_Adv : Adv;
+fun stubbornness_N : N;
+fun stubby_A : A;
+fun stucco_N : N;
+fun stucco_V2 : V2;
+fun stuck_up_A : A;
+fun stud_N : N;
+fun stud_V2 : V2;
+fun stud_farm_N : N;
+fun stud_mare_N : N;
+fun studbook_N : N;
+fun student_N : N;
+fun studied_A : A;
+fun studio_N : N;
+fun studious_A : A;
+fun studiously_Adv : Adv;
+fun studiousness_N : N;
+fun studley_PN : PN;
+fun study_N : N;
+fun study_V : V;
+fun study_V2 : V2;
+fun stuff_N : N;
+fun stuff_V2 : V2;
+fun stuffily_Adv : Adv;
+fun stuffiness_N : N;
+fun stuffing_N : N;
+fun stuffy_A : A;
+fun stultification_N : N;
+fun stultify_V2 : V2;
+fun stumble_N : N;
+fun stumble_V : V;
+fun stumbling_block_N : N;
+fun stump_N : N;
+fun stump_V : V;
+fun stump_V2 : V2;
+fun stumper_N : N;
+fun stumpy_A : A;
+fun stun_V2 : V2;
+fun stunner_N : N;
+fun stunning_A : A;
+fun stunningly_Adv : Adv;
+fun stunt_N : N;
+fun stunt_V2 : V2;
+fun stupefaction_N : N;
+fun stupefy_V2 : V2;
+fun stupendous_A : A;
+fun stupendously_Adv : Adv;
+fun stupid_A : A;
+fun stupid_N : N;
+fun stupidity_N : N;
+fun stupidly_Adv : Adv;
+fun stupify_V2 : V2;
+fun stupifying_A : A;
+fun stupor_N : N;
+fun sturdily_Adv : Adv;
+fun sturdiness_N : N;
+fun sturdy_A : A;
+fun sturgeon_N : N;
+fun stutter_N : N;
+fun stutter_V : V;
+fun stutter_V2 : V2;
+fun stutterer_N : N;
+fun stutteringly_Adv : Adv;
+fun stuttgart_PN : PN;
+fun sty_N : N;
+fun stye_N : N;
+fun stygian_A : A;
+fun style_N : N;
+fun style_V2 : V2;
+fun stylish_A : A;
+fun stylishly_Adv : Adv;
+fun stylishness_N : N;
+fun stylist_N : N;
+fun stylistic_A : A;
+fun stylistically_Adv : Adv;
+fun stylization_N : N;
+fun stylize_V2 : V2;
+fun stylus_N : N;
+fun stymie_N : N;
+fun stymie_V2 : V2;
+fun styptic_A : A;
+fun styptic_N : N;
+fun styx_PN : PN;
+fun suasion_N : N;
+fun suave_A : A;
+fun suavely_Adv : Adv;
+fun suavity_N : N;
+fun sub_N : N;
+fun sub_V : V;
+fun sub_V2 : V2;
+fun sub_judice_A : A;
+fun sub_rosa_Adv : Adv;
+fun subaltern_N : N;
+fun subatomic_A : A;
+fun subcommittee_N : N;
+fun subconscious_A : A;
+fun subconscious_N : N;
+fun subconsciously_Adv : Adv;
+fun subconsciousness_N : N;
+fun subcontinent_N : N;
+fun subcontract_N : N;
+fun subcontract_V : V;
+fun subcontract_V2 : V2;
+fun subcontractor_N : N;
+fun subcutaneous_A : A;
+fun subdivide_V : V;
+fun subdivide_V2 : V2;
+fun subdivision_N : N;
+fun subdue_V2 : V2;
+fun subedit_V2 : V2;
+fun subeditor_N : N;
+fun subfusc_A : A;
+fun subgroup_N : N;
+fun subheading_N : N;
+fun subhuman_A : A;
+fun subject_A : A;
+fun subject_N : N;
+fun subject_V2 : V2;
+fun subjection_N : N;
+fun subjective_A : A;
+fun subjectively_Adv : Adv;
+fun subjectivity_N : N;
+fun subjoin_V2 : V2;
+fun subjugate_V2 : V2;
+fun subjugation_N : N;
+fun subjunctive_A : A;
+fun subjunctive_N : N;
+fun sublease_N : N;
+fun sublease_V : V;
+fun sublease_V2 : V2;
+fun sublet_V : V;
+fun sublet_V2 : V2;
+fun sublieutenant_N : N;
+fun sublimate_A : A;
+fun sublimate_N : N;
+fun sublimate_V2 : V2;
+fun sublimation_N : N;
+fun sublime_A : A;
+fun sublime_N : N;
+fun sublimely_Adv : Adv;
+fun subliminal_A : A;
+fun sublimity_N : N;
+fun submarine_A : A;
+fun submarine_N : N;
+fun submariner_N : N;
+fun submerge_V : V;
+fun submerge_V2 : V2;
+fun submerged_A : A;
+fun submergence_N : N;
+fun submersible_A : A;
+fun submersion_N : N;
+fun submission_N : N;
+fun submissive_A : A;
+fun submissively_Adv : Adv;
+fun submissiveness_N : N;
+fun submit_V : V;
+fun submit_V2 : V2;
+fun subnormal_A : A;
+fun subnormal_N : N;
+fun suborbital_A : A;
+fun subordinate_A : A;
+fun subordinate_N : N;
+fun subordinate_V2 : V2;
+fun subordination_N : N;
+fun subordinative_A : A;
+fun suborn_V2 : V2;
+fun subornation_N : N;
+fun subpoena_N : N;
+fun subpoena_V2 : V2;
+fun subscribe_V : V;
+fun subscribe_V2 : V2;
+fun subscriber_N : N;
+fun subscript_N : N;
+fun subscription_N : N;
+fun subsection_N : N;
+fun subsequent_A : A;
+fun subsequently_Adv : Adv;
+fun subserve_V2 : V2;
+fun subservience_N : N;
+fun subservient_A : A;
+fun subserviently_Adv : Adv;
+fun subside_V : V;
+fun subsidence_N : N;
+fun subsidiary_A : A;
+fun subsidiary_N : N;
+fun subsidization_N : N;
+fun subsidize_V2 : V2;
+fun subsidy_N : N;
+fun subsist_V : V;
+fun subsistence_N : N;
+fun subsoil_N : N;
+fun subsonic_A : A;
+fun substance_N : N;
+fun substandard_A : A;
+fun substantial_A : A;
+fun substantially_Adv : Adv;
+fun substantiate_V2 : V2;
+fun substantiation_N : N;
+fun substantival_A : A;
+fun substantive_A : A;
+fun substantive_N : N;
+fun substation_N : N;
+fun substitute_N : N;
+fun substitute_V : V;
+fun substitute_V2 : V2;
+fun substitution_N : N;
+fun substrate_N : N;
+fun substratum_N : N;
+fun substructure_N : N;
+fun subsume_V2 : V2;
+fun subtend_V2 : V2;
+fun subterfuge_N : N;
+fun subterranean_A : A;
+fun subtitle_N : N;
+fun subtle_A : A;
+fun subtlety_N : N;
+fun subtly_Adv : Adv;
+fun subtopia_N : N;
+fun subtract_V2 : V2;
+fun subtraction_N : N;
+fun subtropical_A : A;
+fun suburb_N : N;
+fun suburban_A : A;
+fun suburbia_N : N;
+fun subvention_N : N;
+fun subversion_N : N;
+fun subversive_A : A;
+fun subversive_N : N;
+fun subvert_V2 : V2;
+fun subway_N : N;
+fun succeed_V : V;
+fun succeed_V2 : V2;
+fun success_N : N;
+fun successful_A : A;
+fun successfully_Adv : Adv;
+fun succession_N : N;
+fun successive_A : A;
+fun successively_Adv : Adv;
+fun successor_N : N;
+fun succinct_A : A;
+fun succinctly_Adv : Adv;
+fun succinctness_N : N;
+fun succour_N : N;
+fun succour_V2 : V2;
+fun succubus_N : N;
+fun succulence_N : N;
+fun succulent_A : A;
+fun succulent_N : N;
+fun succumb_V : V;
+fun such_A : A;
+fun suchlike_A : A;
+fun suchow_PN : PN;
+fun suck_N : N;
+fun suck_V : V;
+fun suck_V2 : V2;
+fun sucker_N : N;
+fun sucking_pig_N : N;
+fun suckle_V2 : V2;
+fun suckling_N : N;
+fun suction_N : N;
+fun sudan_PN : PN;
+fun sudanese_A : A;
+fun sudanese_N : N;
+fun sudbury_PN : PN;
+fun sudden_A : A;
+fun sudden_N : N;
+fun suddenly_Adv : Adv;
+fun suddenness_N : N;
+fun sue_PN : PN;
+fun sue_V : V;
+fun sue_V2 : V2;
+fun suede_N : N;
+fun suet_N : N;
+fun suety_A : A;
+fun suffer_V : V;
+fun suffer_V2 : V2;
+fun sufferable_A : A;
+fun sufferance_N : N;
+fun sufferer_N : N;
+fun suffering_N : N;
+fun suffice_V : V;
+fun suffice_V2 : V2;
+fun sufficiency_N : N;
+fun sufficient_A : A;
+fun sufficiently_Adv : Adv;
+fun suffix_N : N;
+fun suffocate_V : V;
+fun suffocate_V2 : V2;
+fun suffocation_N : N;
+fun suffolk_PN : PN;
+fun suffragan_N : N;
+fun suffrage_N : N;
+fun suffragette_N : N;
+fun suffuse_V2 : V2;
+fun suffusion_N : N;
+fun sugar_N : N;
+fun sugar_V2 : V2;
+fun sugar_beet_N : N;
+fun sugar_candy_N : N;
+fun sugar_cane_N : N;
+fun sugar_coated_A : A;
+fun sugar_daddy_N : N;
+fun sugar_loaf_N : N;
+fun sugar_refinery_N : N;
+fun sugarlump_N : N;
+fun sugary_A : A;
+fun suggest_V2 : V2;
+fun suggestibility_N : N;
+fun suggestible_A : A;
+fun suggestion_N : N;
+fun suggestive_A : A;
+fun suggestively_Adv : Adv;
+fun suicidal_A : A;
+fun suicide_N : N;
+fun suit_N : N;
+fun suit_V : V;
+fun suit_V2 : V2;
+fun suitability_N : N;
+fun suitable_A : A;
+fun suitableness_N : N;
+fun suitably_Adv : Adv;
+fun suitcase_N : N;
+fun suite_N : N;
+fun suiting_N : N;
+fun suitor_N : N;
+fun sulk_N : N;
+fun sulk_V : V;
+fun sulkily_Adv : Adv;
+fun sulkiness_N : N;
+fun sulky_A : A;
+fun sulky_N : N;
+fun sullen_A : A;
+fun sullenly_Adv : Adv;
+fun sullenness_N : N;
+fun sully_V2 : V2;
+fun sulpha_N : N;
+fun sulphate_N : N;
+fun sulphide_N : N;
+fun sulphur_N : N;
+fun sulphuretted_A : A;
+fun sulphuric_A : A;
+fun sulphurous_A : A;
+fun sultan_N : N;
+fun sultana_N : N;
+fun sultanate_N : N;
+fun sultrily_Adv : Adv;
+fun sultriness_N : N;
+fun sultry_A : A;
+fun sum_N : N;
+fun sum_V : V;
+fun sum_V2 : V2;
+fun sumac_N : N;
+fun sumach_N : N;
+fun sumatra_PN : PN;
+fun sumatran_A : A;
+fun sumatran_N : N;
+fun summarily_Adv : Adv;
+fun summarize_V2 : V2;
+fun summary_A : A;
+fun summary_N : N;
+fun summation_N : N;
+fun summer_N : N;
+fun summer_V : V;
+fun summerhouse_N : N;
+fun summertime_N : N;
+fun summery_A : A;
+fun summing_up_N : N;
+fun summit_N : N;
+fun summon_V2 : V2;
+fun summons_N : N;
+fun summons_V2 : V2;
+fun sump_N : N;
+fun sumpter_N : N;
+fun sumptuary_A : A;
+fun sumptuous_A : A;
+fun sumptuously_Adv : Adv;
+fun sumptuousness_N : N;
+fun sun_N : N;
+fun sun_PN : PN;
+fun sun_V2 : V2;
+fun sun_drenched_A : A;
+fun sun_dried_A : A;
+fun sun_god_N : N;
+fun sun_helmet_N : N;
+fun sun_lounge_N : N;
+fun sun_parlour_N : N;
+fun sun_porch_N : N;
+fun sun_up_N : N;
+fun sun_visor_N : N;
+fun sun_worship_N : N;
+fun sunbaked_A : A;
+fun sunbathe_N : N;
+fun sunbathe_V : V;
+fun sunbeam_N : N;
+fun sunblind_N : N;
+fun sunbonnet_N : N;
+fun sunburn_N : N;
+fun sunburned_A : A;
+fun sunburnt_A : A;
+fun sunburst_N : N;
+fun sundae_N : N;
+fun sunday_N : N;
+fun sunday_PN : PN;
+fun sunder_N : N;
+fun sunder_V2 : V2;
+fun sunderland_PN : PN;
+fun sundial_N : N;
+fun sundown_N : N;
+fun sundowner_N : N;
+fun sundry_A : A;
+fun sunfish_N : N;
+fun sunflower_N : N;
+fun sunhat_N : N;
+fun sunlamp_N : N;
+fun sunless_A : A;
+fun sunlight_N : N;
+fun sunlit_A : A;
+fun sunnily_Adv : Adv;
+fun sunny_A : A;
+fun sunray_A : A;
+fun sunrise_N : N;
+fun sunroof_N : N;
+fun sunset_N : N;
+fun sunshade_N : N;
+fun sunshine_N : N;
+fun sunshine_roof_N : N;
+fun sunspot_N : N;
+fun sunstroke_N : N;
+fun suntan_N : N;
+fun suntrap_N : N;
+fun sup_N : N;
+fun sup_V : V;
+fun sup_V2 : V2;
+fun super_A : A;
+fun super_N : N;
+fun superabundance_N : N;
+fun superabundant_A : A;
+fun superannuate_V2 : V2;
+fun superannuated_A : A;
+fun superannuation_N : N;
+fun superb_A : A;
+fun superbly_Adv : Adv;
+fun supercargo_N : N;
+fun supercharged_A : A;
+fun supercharger_N : N;
+fun supercilious_A : A;
+fun superciliously_Adv : Adv;
+fun superciliousness_N : N;
+fun superego_N : N;
+fun supererogation_N : N;
+fun superfatted_A : A;
+fun superficial_A : A;
+fun superficiality_N : N;
+fun superficially_Adv : Adv;
+fun superficies_N : N;
+fun superfine_A : A;
+fun superfluity_N : N;
+fun superfluous_A : A;
+fun superfluously_Adv : Adv;
+fun superhuman_A : A;
+fun superimpose_V2 : V2;
+fun superintend_V : V;
+fun superintend_V2 : V2;
+fun superintendence_N : N;
+fun superintendent_N : N;
+fun superior_A : A;
+fun superior_N : N;
+fun superiority_N : N;
+fun superlative_A : A;
+fun superlative_N : N;
+fun superman_N : N;
+fun supermarket_N : N;
+fun supernal_A : A;
+fun supernatural_A : A;
+fun supernaturally_Adv : Adv;
+fun supernormal_A : A;
+fun supernumerary_N : N;
+fun superscription_N : N;
+fun supersede_V2 : V2;
+fun supersession_N : N;
+fun supersonic_A : A;
+fun superstition_N : N;
+fun superstitious_A : A;
+fun superstitiously_Adv : Adv;
+fun superstructure_N : N;
+fun supertax_N : N;
+fun supervene_V : V;
+fun supervise_V : V;
+fun supervise_V2 : V2;
+fun supervision_N : N;
+fun supervisor_N : N;
+fun supervisory_A : A;
+fun supine_A : A;
+fun supinely_Adv : Adv;
+fun supper_N : N;
+fun supperless_A : A;
+fun supplant_V2 : V2;
+fun supplanter_N : N;
+fun supple_A : A;
+fun supplement_N : N;
+fun supplement_V2 : V2;
+fun supplementary_A : A;
+fun suppleness_N : N;
+fun suppliant_A : A;
+fun suppliant_N : N;
+fun supplicant_N : N;
+fun supplicate_V : V;
+fun supplicate_V2 : V2;
+fun supplication_N : N;
+fun supplier_N : N;
+fun supply_N : N;
+fun supply_V2 : V2;
+fun support_N : N;
+fun support_V2 : V2;
+fun supportable_A : A;
+fun supporter_N : N;
+fun suppose_V2 : V2;
+fun supposed_A : A;
+fun supposedly_Adv : Adv;
+fun supposition_N : N;
+fun suppository_N : N;
+fun suppress_V2 : V2;
+fun suppression_N : N;
+fun suppressive_A : A;
+fun suppressor_N : N;
+fun suppurate_V : V;
+fun suppuration_N : N;
+fun supra_Adv : Adv;
+fun supranational_A : A;
+fun supremacy_N : N;
+fun supreme_A : A;
+fun supremely_Adv : Adv;
+fun supt_PN : PN;
+fun surabaja_PN : PN;
+fun surcharge_N : N;
+fun surcharge_V2 : V2;
+fun surd_N : N;
+fun sure_A : A;
+fun sure_Adv : Adv;
+fun sure_footed_A : A;
+fun surely_Adv : Adv;
+fun sureness_N : N;
+fun surety_N : N;
+fun surf_N : N;
+fun surface_N : N;
+fun surface_V : V;
+fun surface_V2 : V2;
+fun surface_to_air_A : A;
+fun surfboard_N : N;
+fun surfboat_N : N;
+fun surfeit_N : N;
+fun surfeit_V2 : V2;
+fun surfing_N : N;
+fun surfriding_N : N;
+fun surge_N : N;
+fun surge_V : V;
+fun surgeon_N : N;
+fun surgery_N : N;
+fun surgical_A : A;
+fun surgically_Adv : Adv;
+fun surlily_Adv : Adv;
+fun surliness_N : N;
+fun surly_A : A;
+fun surmise_N : N;
+fun surmise_V : V;
+fun surmise_V2 : V2;
+fun surmount_V2 : V2;
+fun surmountable_A : A;
+fun surname_N : N;
+fun surpass_V2 : V2;
+fun surpassing_A : A;
+fun surpassingly_Adv : Adv;
+fun surplice_N : N;
+fun surpliced_A : A;
+fun surplus_N : N;
+fun surprise_N : N;
+fun surprise_V2 : V2;
+fun surprised_A : A;
+fun surprisedly_Adv : Adv;
+fun surprising_A : A;
+fun surprisingly_Adv : Adv;
+fun surrealism_N : N;
+fun surrealist_N : N;
+fun surrealistic_A : A;
+fun surrender_N : N;
+fun surrender_V : V;
+fun surrender_V2 : V2;
+fun surreptitious_A : A;
+fun surreptitiously_Adv : Adv;
+fun surrey_PN : PN;
+fun surrogate_A : A;
+fun surrogate_N : N;
+fun surround_N : N;
+fun surround_V2 : V2;
+fun surrounding_A : A;
+fun surtax_N : N;
+fun surtax_V2 : V2;
+fun surveillance_N : N;
+fun survey_N : N;
+fun survey_V2 : V2;
+fun surveying_N : N;
+fun surveyor_N : N;
+fun survival_N : N;
+fun survive_V : V;
+fun survive_V2 : V2;
+fun survivor_N : N;
+fun susan_PN : PN;
+fun susanna_PN : PN;
+fun susceptibility_N : N;
+fun susceptible_A : A;
+fun susie_PN : PN;
+fun suspect_A : A;
+fun suspect_N : N;
+fun suspect_V2 : V2;
+fun suspend_V2 : V2;
+fun suspender_N : N;
+fun suspense_N : N;
+fun suspension_N : N;
+fun suspicion_N : N;
+fun suspicious_A : A;
+fun suspiciously_Adv : Adv;
+fun suss_V2 : V2;
+fun sussex_PN : PN;
+fun sustain_V2 : V2;
+fun sustenance_N : N;
+fun suttee_N : N;
+fun sutton_PN : PN;
+fun sutton_at_hone_PN : PN;
+fun sutton_coldfield_PN : PN;
+fun sutton_in_ashfield_PN : PN;
+fun suture_N : N;
+fun suzanne_PN : PN;
+fun suzerain_N : N;
+fun suzerainty_N : N;
+fun svelte_A : A;
+fun sverdlovsk_PN : PN;
+fun swab_N : N;
+fun swab_V2 : V2;
+fun swaddle_V2 : V2;
+fun swadlincote_PN : PN;
+fun swag_N : N;
+fun swagger_A : A;
+fun swagger_N : N;
+fun swagger_V : V;
+fun swaggerer_N : N;
+fun swahili_N : N;
+fun swain_N : N;
+fun swallow_N : N;
+fun swallow_V : V;
+fun swallow_V2 : V2;
+fun swallow_tailed_A : A;
+fun swami_N : N;
+fun swamp_N : N;
+fun swamp_V2 : V2;
+fun swampy_A : A;
+fun swan's_down_N : N;
+fun swan_N : N;
+fun swan_V : V;
+fun swan_song_N : N;
+fun swanage_PN : PN;
+fun swank_N : N;
+fun swank_V : V;
+fun swanky_A : A;
+fun swanley_PN : PN;
+fun swansea_PN : PN;
+fun swap_N : N;
+fun swap_V : V;
+fun swap_V2 : V2;
+fun sward_N : N;
+fun swarm_N : N;
+fun swarm_V : V;
+fun swarm_V2 : V2;
+fun swarthy_A : A;
+fun swashbuckler_N : N;
+fun swashbuckling_A : A;
+fun swashbuckling_N : N;
+fun swastika_N : N;
+fun swat_N : N;
+fun swat_V2 : V2;
+fun swath_N : N;
+fun swathe_N : N;
+fun swathe_V2 : V2;
+fun sway_N : N;
+fun sway_V : V;
+fun sway_V2 : V2;
+fun swazi_A : A;
+fun swazi_N : N;
+fun swaziland_PN : PN;
+fun swear_V : V;
+fun swear_V2 : V2;
+fun swearer_N : N;
+fun swearing_N : N;
+fun swearword_N : N;
+fun sweat_N : N;
+fun sweat_V : V;
+fun sweat_V2 : V2;
+fun sweatband_N : N;
+fun sweater_N : N;
+fun sweatshop_N : N;
+fun sweaty_A : A;
+fun swede_A : A;
+fun swede_N : N;
+fun sweden_PN : PN;
+fun swedish_A : A;
+fun swedish_N : N;
+fun sweep_N : N;
+fun sweep_V : V;
+fun sweep_V2 : V2;
+fun sweeper_N : N;
+fun sweeping_A : A;
+fun sweeping_N : N;
+fun sweepingly_Adv : Adv;
+fun sweet_A : A;
+fun sweet_N : N;
+fun sweet_scented_A : A;
+fun sweetbread_N : N;
+fun sweetbriar_N : N;
+fun sweetbrier_N : N;
+fun sweeten_V : V;
+fun sweeten_V2 : V2;
+fun sweetening_N : N;
+fun sweetheart_N : N;
+fun sweetie_N : N;
+fun sweetish_A : A;
+fun sweetly_Adv : Adv;
+fun sweetmeat_N : N;
+fun sweetness_N : N;
+fun swell_A : A;
+fun swell_N : N;
+fun swell_V : V;
+fun swell_V2 : V2;
+fun swelling_N : N;
+fun swelter_V : V;
+fun sweptback_A : A;
+fun swerve_N : N;
+fun swerve_V : V;
+fun swerve_V2 : V2;
+fun swift_A : A;
+fun swift_N : N;
+fun swiftly_Adv : Adv;
+fun swiftness_N : N;
+fun swig_N : N;
+fun swig_V : V;
+fun swig_V2 : V2;
+fun swill_N : N;
+fun swill_V : V;
+fun swill_V2 : V2;
+fun swim_N : N;
+fun swim_V : V;
+fun swim_V2 : V2;
+fun swimmer_N : N;
+fun swimming_N : N;
+fun swimming_bath_N : N;
+fun swimming_costume_N : N;
+fun swimming_pool_N : N;
+fun swimmingly_Adv : Adv;
+fun swimsuit_N : N;
+fun swindle_N : N;
+fun swindle_V : V;
+fun swindle_V2 : V2;
+fun swindler_N : N;
+fun swindon_PN : PN;
+fun swine_N : N;
+fun swineherd_N : N;
+fun swing_N : N;
+fun swing_V : V;
+fun swing_V2 : V2;
+fun swinge_V2 : V2;
+fun swingeing_A : A;
+fun swinging_A : A;
+fun swinish_A : A;
+fun swinton_PN : PN;
+fun swipe_N : N;
+fun swipe_V2 : V2;
+fun swirl_N : N;
+fun swirl_V : V;
+fun swirl_V2 : V2;
+fun swish_A : A;
+fun swish_N : N;
+fun swish_V : V;
+fun swish_V2 : V2;
+fun swiss_A : A;
+fun swiss_N : N;
+fun switch_N : N;
+fun switch_V : V;
+fun switch_V2 : V2;
+fun switchboard_N : N;
+fun switchman_N : N;
+fun switzerland_PN : PN;
+fun swivel_N : N;
+fun swivel_V : V;
+fun swivel_V2 : V2;
+fun swiz_N : N;
+fun swizzle_N : N;
+fun swizzle_stick_N : N;
+fun swob_N : N;
+fun swob_V2 : V2;
+fun swollen_headed_A : A;
+fun swoon_N : N;
+fun swoon_V : V;
+fun swoop_N : N;
+fun swoop_V : V;
+fun swoop_V2 : V2;
+fun swop_N : N;
+fun swop_V : V;
+fun swop_V2 : V2;
+fun sword_N : N;
+fun sword_cane_N : N;
+fun sword_cut_N : N;
+fun sword_dance_N : N;
+fun swordfish_N : N;
+fun swordplay_N : N;
+fun swordsman_N : N;
+fun swordsmanship_N : N;
+fun swordstick_N : N;
+fun sworn_A : A;
+fun swot_N : N;
+fun swot_V : V;
+fun swot_V2 : V2;
+fun sybarite_N : N;
+fun sybaritic_A : A;
+fun sycamore_N : N;
+fun sycophancy_N : N;
+fun sycophant_N : N;
+fun sycophantic_A : A;
+fun sydney_PN : PN;
+fun syllabary_N : N;
+fun syllabic_A : A;
+fun syllabicate_V2 : V2;
+fun syllabication_N : N;
+fun syllabification_N : N;
+fun syllabify_V2 : V2;
+fun syllabize_V2 : V2;
+fun syllable_N : N;
+fun syllabled_A : A;
+fun syllabus_N : N;
+fun syllogism_N : N;
+fun syllogistic_A : A;
+fun sylph_N : N;
+fun sylph_like_A : A;
+fun sylvan_A : A;
+fun sylvia_PN : PN;
+fun symbiosis_N : N;
+fun symbol_N : N;
+fun symbolic_A : A;
+fun symbolical_A : A;
+fun symbolically_Adv : Adv;
+fun symbolism_N : N;
+fun symbolization_N : N;
+fun symbolize_V2 : V2;
+fun symmetric_A : A;
+fun symmetrical_A : A;
+fun symmetrically_Adv : Adv;
+fun symmetry_N : N;
+fun sympathetic_A : A;
+fun sympathetically_Adv : Adv;
+fun sympathize_V : V;
+fun sympathizer_N : N;
+fun sympathy_N : N;
+fun symphonic_A : A;
+fun symphony_N : N;
+fun symposium_N : N;
+fun symptom_N : N;
+fun symptomatic_A : A;
+fun symptomatically_Adv : Adv;
+fun symptomless_A : A;
+fun synagogue_N : N;
+fun synchroflash_N : N;
+fun synchromesh_N : N;
+fun synchronization_N : N;
+fun synchronize_V : V;
+fun synchronize_V2 : V2;
+fun synchronous_A : A;
+fun synchronously_Adv : Adv;
+fun synchrony_N : N;
+fun synchrotron_N : N;
+fun syncopate_V2 : V2;
+fun syncopation_N : N;
+fun syncope_N : N;
+fun syndic_N : N;
+fun syndicalism_N : N;
+fun syndicalist_N : N;
+fun syndicate_N : N;
+fun syndicate_V2 : V2;
+fun syndication_N : N;
+fun syndrome_N : N;
+fun synod_N : N;
+fun synonym_N : N;
+fun synonymous_A : A;
+fun synopsis_N : N;
+fun synoptic_A : A;
+fun synoptically_Adv : Adv;
+fun syntactic_A : A;
+fun syntactically_Adv : Adv;
+fun syntax_N : N;
+fun synthesis_N : N;
+fun synthesize_V2 : V2;
+fun synthetic_A : A;
+fun synthetic_N : N;
+fun synthetically_Adv : Adv;
+fun syphilis_N : N;
+fun syphilitic_A : A;
+fun syphilitic_N : N;
+fun syphon_N : N;
+fun syphon_V : V;
+fun syphon_V2 : V2;
+fun syracuse_PN : PN;
+fun syria_PN : PN;
+fun syrian_A : A;
+fun syrian_N : N;
+fun syringa_N : N;
+fun syringe_N : N;
+fun syringe_V2 : V2;
+fun syrup_N : N;
+fun syrupy_A : A;
+fun system_N : N;
+fun systematic_A : A;
+fun systematically_Adv : Adv;
+fun systematization_N : N;
+fun systematize_V2 : V2;
+fun syston_PN : PN;
+fun seance_N : N;
+fun t_junction_N : N;
+fun t_shirt_N : N;
+fun t_square_N : N;
+fun tab_N : N;
+fun tabard_N : N;
+fun tabby_A : A;
+fun tabby_N : N;
+fun tabby_cat_N : N;
+fun tabernacle_N : N;
+fun table_N : N;
+fun table_V2 : V2;
+fun table_d'hote_A : A;
+fun table_d'hote_Adv : Adv;
+fun table_knife_N : N;
+fun table_lifting_N : N;
+fun table_linen_N : N;
+fun table_rapping_N : N;
+fun table_talk_N : N;
+fun table_turning_N : N;
+fun tableau_N : N;
+fun tableau_vivant_N : N;
+fun tablecloth_N : N;
+fun tablemat_N : N;
+fun tablespoon_N : N;
+fun tablespoonful_N : N;
+fun tablet_N : N;
+fun tableware_N : N;
+fun tabloid_N : N;
+fun taboo_A : A;
+fun taboo_N : N;
+fun taboo_V2 : V2;
+fun tabor_N : N;
+fun tabular_A : A;
+fun tabulate_V2 : V2;
+fun tabulation_N : N;
+fun tabulator_N : N;
+fun tachograph_N : N;
+fun tacit_A : A;
+fun tacitly_Adv : Adv;
+fun taciturn_A : A;
+fun taciturnity_N : N;
+fun taciturnly_Adv : Adv;
+fun tack_N : N;
+fun tack_V : V;
+fun tack_V2 : V2;
+fun tackle_N : N;
+fun tackle_V : V;
+fun tackle_V2 : V2;
+fun tacky_A : A;
+fun tact_N : N;
+fun tactful_A : A;
+fun tactfully_Adv : Adv;
+fun tactic_N : N;
+fun tactical_A : A;
+fun tactically_Adv : Adv;
+fun tactician_N : N;
+fun tactile_A : A;
+fun tactless_A : A;
+fun tactlessly_Adv : Adv;
+fun tactlessness_N : N;
+fun tactual_A : A;
+fun tadley_PN : PN;
+fun tadpole_N : N;
+fun taegu_PN : PN;
+fun taffeta_N : N;
+fun taffrail_N : N;
+fun taffy_N : N;
+fun tag_N : N;
+fun tag_V : V;
+fun tag_V2 : V2;
+fun tahiti_PN : PN;
+fun tahitian_A : A;
+fun tahitian_N : N;
+fun tail_N : N;
+fun tail_V : V;
+fun tail_V2 : V2;
+fun tail_coat_N : N;
+fun tail_end_N : N;
+fun tail_light_N : N;
+fun tailboard_N : N;
+fun tailed_A : A;
+fun tailgate_N : N;
+fun tailless_A : A;
+fun tailor_N : N;
+fun tailor_V2 : V2;
+fun tailor_made_A : A;
+fun tailpiece_N : N;
+fun tailplane_N : N;
+fun tailspin_N : N;
+fun taint_N : N;
+fun taint_V : V;
+fun taint_V2 : V2;
+fun taintless_A : A;
+fun taipei_PN : PN;
+fun taiwan_PN : PN;
+fun taiwanese_A : A;
+fun taiwanese_N : N;
+fun taiyuan_PN : PN;
+fun take_N : N;
+fun take_V : V;
+fun take_V2 : V2;
+fun take_home_A : A;
+fun take_off_N : N;
+fun take_up_N : N;
+fun takeaway_A : A;
+fun takeover_N : N;
+fun taker_N : N;
+fun taking_A : A;
+fun talc_N : N;
+fun talcum_N : N;
+fun tale_N : N;
+fun tale_bearer_N : N;
+fun tale_teller_N : N;
+fun talent_N : N;
+fun talented_A : A;
+fun talisman_N : N;
+fun talk_N : N;
+fun talk_V : V;
+fun talk_V2 : V2;
+fun talkative_A : A;
+fun talker_N : N;
+fun talkie_N : N;
+fun talking_point_N : N;
+fun talking_to_N : N;
+fun tall_A : A;
+fun tallboy_N : N;
+fun tallish_A : A;
+fun tallow_N : N;
+fun tally_N : N;
+fun tally_V : V;
+fun tally_clerk_N : N;
+fun tallyman_N : N;
+fun talmud_N : N;
+fun talon_N : N;
+fun talus_N : N;
+fun tam_o'_shanter_N : N;
+fun tamable_A : A;
+fun tamale_N : N;
+fun tamarind_N : N;
+fun tamarisk_N : N;
+fun tambour_N : N;
+fun tambourine_N : N;
+fun tame_A : A;
+fun tame_V2 : V2;
+fun tamely_Adv : Adv;
+fun tameness_N : N;
+fun tamer_N : N;
+fun tamil_A : A;
+fun tamil_N : N;
+fun tammany_N : N;
+fun tammy_N : N;
+fun tamp_V2 : V2;
+fun tamper_V : V;
+fun tampere_PN : PN;
+fun tamworth_PN : PN;
+fun tan_A : A;
+fun tan_N : N;
+fun tan_V : V;
+fun tan_V2 : V2;
+fun tandem_Adv : Adv;
+fun tandem_N : N;
+fun tang_N : N;
+fun tangent_N : N;
+fun tangerine_A : A;
+fun tangerine_N : N;
+fun tangibility_N : N;
+fun tangible_A : A;
+fun tangibly_Adv : Adv;
+fun tangle_N : N;
+fun tangle_V : V;
+fun tangle_V2 : V2;
+fun tango_N : N;
+fun tangshan_PN : PN;
+fun tangy_A : A;
+fun tank_N : N;
+fun tank_V : V;
+fun tank_car_N : N;
+fun tankard_N : N;
+fun tanker_N : N;
+fun tanner_N : N;
+fun tannery_N : N;
+fun tannic_A : A;
+fun tannin_N : N;
+fun tannoy_N : N;
+fun tansy_N : N;
+fun tantalize_V2 : V2;
+fun tantamount_A : A;
+fun tantrum_N : N;
+fun tanzania_PN : PN;
+fun tanzanian_A : A;
+fun tanzanian_N : N;
+fun tap_N : N;
+fun tap_V : V;
+fun tap_V2 : V2;
+fun tap_dancing_N : N;
+fun tape_N : N;
+fun tape_V2 : V2;
+fun tape_measure_N : N;
+fun tape_recorder_N : N;
+fun taper_N : N;
+fun taper_V : V;
+fun taper_V2 : V2;
+fun tapestried_A : A;
+fun tapestry_N : N;
+fun tapeworm_N : N;
+fun tapioca_N : N;
+fun tapir_N : N;
+fun taproom_N : N;
+fun taproot_N : N;
+fun tapster_N : N;
+fun tar_N : N;
+fun tar_V2 : V2;
+fun tar_macadam_N : N;
+fun taradiddle_N : N;
+fun taranaki_PN : PN;
+fun tarantella_N : N;
+fun tarantelle_N : N;
+fun taranto_PN : PN;
+fun tarantula_N : N;
+fun tarboosh_N : N;
+fun tardily_Adv : Adv;
+fun tardiness_N : N;
+fun tardy_A : A;
+fun tare_N : N;
+fun target_N : N;
+fun tariff_N : N;
+fun tarmac_N : N;
+fun tarmac_V2 : V2;
+fun tarn_N : N;
+fun tarnish_N : N;
+fun tarnish_V : V;
+fun tarnish_V2 : V2;
+fun taro_N : N;
+fun tarpaulin_N : N;
+fun tarpon_N : N;
+fun tarradiddle_N : N;
+fun tarragon_N : N;
+fun tarrasa_PN : PN;
+fun tarry_A : A;
+fun tarry_V : V;
+fun tarsal_A : A;
+fun tarsal_N : N;
+fun tarsus_N : N;
+fun tart_A : A;
+fun tart_N : N;
+fun tart_V2 : V2;
+fun tartan_N : N;
+fun tartar_N : N;
+fun tartaric_A : A;
+fun tartly_Adv : Adv;
+fun tartness_N : N;
+fun tashkent_PN : PN;
+fun task_N : N;
+fun task_V2 : V2;
+fun task_force_N : N;
+fun taskmaster_N : N;
+fun tasmania_PN : PN;
+fun tassel_N : N;
+fun tasseled_A : A;
+fun tasselled_A : A;
+fun taste_N : N;
+fun taste_V : V;
+fun taste_V2 : V2;
+fun tasteful_A : A;
+fun tastefully_Adv : Adv;
+fun tasteless_A : A;
+fun tastelessly_Adv : Adv;
+fun taster_N : N;
+fun tastily_Adv : Adv;
+fun tasty_A : A;
+fun tat_N : N;
+fun tat_V : V;
+fun tat_V2 : V2;
+fun tatter_N : N;
+fun tatterdemalion_N : N;
+fun tattered_A : A;
+fun tattily_Adv : Adv;
+fun tatting_N : N;
+fun tattle_N : N;
+fun tattle_V : V;
+fun tattle_V2 : V2;
+fun tattler_N : N;
+fun tattoo_N : N;
+fun tattoo_V2 : V2;
+fun tatty_A : A;
+fun taunt_N : N;
+fun taunt_V2 : V2;
+fun tauntingly_Adv : Adv;
+fun taunton_PN : PN;
+fun taurus_PN : PN;
+fun taut_A : A;
+fun tautly_Adv : Adv;
+fun tautness_N : N;
+fun tautological_A : A;
+fun tautology_N : N;
+fun taverham_PN : PN;
+fun tavern_N : N;
+fun tavistock_PN : PN;
+fun tawdrily_Adv : Adv;
+fun tawdriness_N : N;
+fun tawdry_A : A;
+fun tawny_A : A;
+fun tawse_N : N;
+fun tax_N : N;
+fun tax_V2 : V2;
+fun tax_collector_N : N;
+fun tax_free_A : A;
+fun taxability_N : N;
+fun taxable_A : A;
+fun taxation_N : N;
+fun taxi_N : N;
+fun taxi_V : V;
+fun taxi_V2 : V2;
+fun taxicab_N : N;
+fun taxidermist_N : N;
+fun taxidermy_N : N;
+fun taximeter_N : N;
+fun taxonomy_N : N;
+fun taxpayer_N : N;
+fun tayside_PN : PN;
+fun tb_N : N;
+fun tbilisi_PN : PN;
+fun te_deum_N : N;
+fun tea_N : N;
+fun tea_bag_N : N;
+fun tea_break_N : N;
+fun tea_caddy_N : N;
+fun tea_chest_N : N;
+fun tea_cloth_N : N;
+fun tea_cosy_N : N;
+fun tea_garden_N : N;
+fun tea_kettle_N : N;
+fun tea_leaf_N : N;
+fun tea_party_N : N;
+fun tea_service_N : N;
+fun tea_set_N : N;
+fun tea_strainer_N : N;
+fun tea_table_N : N;
+fun tea_time_N : N;
+fun tea_towel_N : N;
+fun tea_tray_N : N;
+fun tea_trolley_N : N;
+fun tea_urn_N : N;
+fun tea_wagon_N : N;
+fun teacake_N : N;
+fun teach_V : V;
+fun teach_V2 : V2;
+fun teach_in_N : N;
+fun teachable_A : A;
+fun teacher_N : N;
+fun teaching_N : N;
+fun teacup_N : N;
+fun teahouse_N : N;
+fun teak_N : N;
+fun teal_N : N;
+fun team_N : N;
+fun team_V : V;
+fun teamster_N : N;
+fun teamwork_N : N;
+fun teapot_N : N;
+fun tear_N : N;
+fun tear_V : V;
+fun tear_V2 : V2;
+fun tear_drop_N : N;
+fun tear_gas_N : N;
+fun tearaway_A : A;
+fun tearaway_N : N;
+fun tearful_A : A;
+fun tearfully_Adv : Adv;
+fun tearing_A : A;
+fun tearing_N : N;
+fun tearless_A : A;
+fun tearoom_N : N;
+fun tease_N : N;
+fun tease_V2 : V2;
+fun teasel_N : N;
+fun teaser_N : N;
+fun teashop_N : N;
+fun teasingly_Adv : Adv;
+fun teaspoon_N : N;
+fun teaspoonful_N : N;
+fun teat_N : N;
+fun teazel_N : N;
+fun teazle_N : N;
+fun tec_N : N;
+fun tech_N : N;
+fun technical_A : A;
+fun technicality_N : N;
+fun technically_Adv : Adv;
+fun technician_N : N;
+fun technicolor_N : N;
+fun technique_N : N;
+fun technocracy_N : N;
+fun technocrat_N : N;
+fun technological_A : A;
+fun technologist_N : N;
+fun technology_N : N;
+fun techy_A : A;
+fun ted_N : N;
+fun ted_PN : PN;
+fun teddy_N : N;
+fun teddy_PN : PN;
+fun teddy_boy_N : N;
+fun tedious_A : A;
+fun tediously_Adv : Adv;
+fun tediousness_N : N;
+fun tedium_N : N;
+fun tee_N : N;
+fun tee_V : V;
+fun tee_V2 : V2;
+fun tee_shirt_N : N;
+fun teem_V : V;
+fun teenage_A : A;
+fun teenager_N : N;
+fun teeny_A : A;
+fun teesside_PN : PN;
+fun teeter_V : V;
+fun teethe_V : V;
+fun teetotal_A : A;
+fun teetotaller_N : N;
+fun teetotum_N : N;
+fun teg_N : N;
+fun tegument_N : N;
+fun teheran_PN : PN;
+fun teignmouth_PN : PN;
+fun tel_PN : PN;
+fun tel_aviv_PN : PN;
+fun telecast_N : N;
+fun telecast_V2 : V2;
+fun telecommunication_N : N;
+fun telegram_N : N;
+fun telegraph_N : N;
+fun telegraph_V : V;
+fun telegraph_V2 : V2;
+fun telegraph_line_N : N;
+fun telegraph_pole_N : N;
+fun telegraph_post_N : N;
+fun telegraph_wire_N : N;
+fun telegrapher_N : N;
+fun telegraphese_N : N;
+fun telegraphic_A : A;
+fun telegraphically_Adv : Adv;
+fun telegraphist_N : N;
+fun telegraphy_N : N;
+fun telemetry_N : N;
+fun teleological_A : A;
+fun teleologist_N : N;
+fun teleology_N : N;
+fun telepathic_A : A;
+fun telepathist_N : N;
+fun telepathy_N : N;
+fun telephone_N : N;
+fun telephone_V : V;
+fun telephone_V2 : V2;
+fun telephonic_A : A;
+fun telephonist_N : N;
+fun telephony_N : N;
+fun telephoto_N : N;
+fun telephotograph_N : N;
+fun telephotography_N : N;
+fun teleprinter_N : N;
+fun teleprompter_N : N;
+fun telescope_N : N;
+fun telescope_V : V;
+fun telescope_V2 : V2;
+fun telescopic_A : A;
+fun telescopically_Adv : Adv;
+fun teletypewriter_N : N;
+fun televise_V2 : V2;
+fun television_N : N;
+fun telex_N : N;
+fun telfer_N : N;
+fun telford_PN : PN;
+fun tell_V : V;
+fun tell_V2 : V2;
+fun teller_N : N;
+fun telling_A : A;
+fun tellingly_Adv : Adv;
+fun telltale_N : N;
+fun telly_N : N;
+fun telpher_N : N;
+fun telstar_PN : PN;
+fun temerity_N : N;
+fun temp_N : N;
+fun temper_N : N;
+fun temper_V : V;
+fun temper_V2 : V2;
+fun tempera_N : N;
+fun temperament_N : N;
+fun temperamental_A : A;
+fun temperamentally_Adv : Adv;
+fun temperance_N : N;
+fun temperate_A : A;
+fun temperately_Adv : Adv;
+fun temperateness_N : N;
+fun temperature_N : N;
+fun tempered_A : A;
+fun tempest_N : N;
+fun tempest_swept_A : A;
+fun tempest_tossed_A : A;
+fun tempestuous_A : A;
+fun template_N : N;
+fun temple_N : N;
+fun templet_N : N;
+fun tempo_N : N;
+fun temporal_A : A;
+fun temporality_N : N;
+fun temporalty_N : N;
+fun temporarily_Adv : Adv;
+fun temporariness_N : N;
+fun temporary_A : A;
+fun temporize_V : V;
+fun tempt_V2 : V2;
+fun temptation_N : N;
+fun tempter_N : N;
+fun temptingly_Adv : Adv;
+fun temptress_N : N;
+fun tenability_N : N;
+fun tenable_A : A;
+fun tenacious_A : A;
+fun tenaciously_Adv : Adv;
+fun tenaciousness_N : N;
+fun tenacity_N : N;
+fun tenancy_N : N;
+fun tenant_N : N;
+fun tenant_V2 : V2;
+fun tenantry_N : N;
+fun tenby_PN : PN;
+fun tench_N : N;
+fun tend_V : V;
+fun tend_V2 : V2;
+fun tendency_N : N;
+fun tendentious_A : A;
+fun tendentiously_Adv : Adv;
+fun tendentiousness_N : N;
+fun tender_A : A;
+fun tender_N : N;
+fun tender_V : V;
+fun tender_V2 : V2;
+fun tenderfoot_N : N;
+fun tenderhearted_A : A;
+fun tenderloin_N : N;
+fun tenderly_Adv : Adv;
+fun tenderness_N : N;
+fun tendon_N : N;
+fun tendril_N : N;
+fun tenement_N : N;
+fun tenement_house_N : N;
+fun tenet_N : N;
+fun tenfold_Adv : Adv;
+fun tenner_N : N;
+fun tennessee_PN : PN;
+fun tennis_N : N;
+fun tennis_court_N : N;
+fun tennis_elbow_N : N;
+fun tenon_N : N;
+fun tenor_N : N;
+fun tenpence_N : N;
+fun tenpin_N : N;
+fun tense_A : A;
+fun tense_N : N;
+fun tense_V : V;
+fun tense_V2 : V2;
+fun tensely_Adv : Adv;
+fun tenseness_N : N;
+fun tensile_A : A;
+fun tension_N : N;
+fun tensity_N : N;
+fun tent_N : N;
+fun tent_peg_N : N;
+fun tentacle_N : N;
+fun tentative_A : A;
+fun tentatively_Adv : Adv;
+fun tenterden_PN : PN;
+fun tenth_A : A;
+fun tenth_N : N;
+fun tenthly_Adv : Adv;
+fun tenuity_N : N;
+fun tenuous_A : A;
+fun tenuously_Adv : Adv;
+fun tenure_N : N;
+fun tepee_N : N;
+fun tepid_A : A;
+fun tepidity_N : N;
+fun tepidly_Adv : Adv;
+fun tepidness_N : N;
+fun tercentenary_N : N;
+fun tercentennial_N : N;
+fun terence_PN : PN;
+fun teresa_PN : PN;
+fun tergiversate_V : V;
+fun tergiversation_N : N;
+fun term_N : N;
+fun term_V2 : V2;
+fun termagant_N : N;
+fun termi_PN : PN;
+fun terminable_A : A;
+fun terminal_A : A;
+fun terminal_N : N;
+fun terminally_Adv : Adv;
+fun terminate_V : V;
+fun terminate_V2 : V2;
+fun termination_N : N;
+fun terminological_A : A;
+fun terminology_N : N;
+fun terminus_N : N;
+fun termite_N : N;
+fun tern_N : N;
+fun terpsichorean_A : A;
+fun terr_PN : PN;
+fun terra_cotta_N : N;
+fun terra_firma_N : N;
+fun terra_incognita_N : N;
+fun terrace_N : N;
+fun terrace_V2 : V2;
+fun terrain_N : N;
+fun terrapin_N : N;
+fun terrestrial_A : A;
+fun terrible_A : A;
+fun terribly_Adv : Adv;
+fun terrier_N : N;
+fun terrific_A : A;
+fun terrifically_Adv : Adv;
+fun terrify_V2 : V2;
+fun territorial_A : A;
+fun territorial_N : N;
+fun territory_N : N;
+fun terror_N : N;
+fun terror_stricken_A : A;
+fun terror_struck_A : A;
+fun terrorism_N : N;
+fun terrorist_N : N;
+fun terrorize_V2 : V2;
+fun terry_PN : PN;
+fun terse_A : A;
+fun tersely_Adv : Adv;
+fun terseness_N : N;
+fun tertian_A : A;
+fun tertiary_A : A;
+fun terylene_N : N;
+fun tess_PN : PN;
+fun tessa_PN : PN;
+fun tessellated_A : A;
+fun test_N : N;
+fun test_V2 : V2;
+fun test_drive_N : N;
+fun test_drive_V2 : V2;
+fun test_tube_N : N;
+fun testament_N : N;
+fun testamentary_A : A;
+fun testate_A : A;
+fun testate_N : N;
+fun testator_N : N;
+fun testatrix_N : N;
+fun testbed_N : N;
+fun testicle_N : N;
+fun testify_V : V;
+fun testify_V2 : V2;
+fun testily_Adv : Adv;
+fun testimonial_N : N;
+fun testimony_N : N;
+fun testiness_N : N;
+fun testis_N : N;
+fun testy_A : A;
+fun tetanus_N : N;
+fun tetchily_Adv : Adv;
+fun tetchiness_N : N;
+fun tetchy_A : A;
+fun tether_N : N;
+fun tether_V2 : V2;
+fun teuton_N : N;
+fun teutonic_A : A;
+fun tewkesbury_PN : PN;
+fun texan_A : A;
+fun texan_N : N;
+fun texas_PN : PN;
+fun text_N : N;
+fun textbook_N : N;
+fun textile_A : A;
+fun textile_N : N;
+fun textual_A : A;
+fun texture_N : N;
+fun textured_A : A;
+fun thai_A : A;
+fun thai_N : N;
+fun thailand_PN : PN;
+fun thalidomide_N : N;
+fun thame_PN : PN;
+fun thane_N : N;
+fun thank_V2 : V2;
+fun thank_offering_N : N;
+fun thankful_A : A;
+fun thankfully_Adv : Adv;
+fun thankfulness_N : N;
+fun thankless_A : A;
+fun thanksgiving_N : N;
+fun thatch_N : N;
+fun thatch_V2 : V2;
+fun thatcham_PN : PN;
+fun thatcher_N : N;
+fun thaw_N : N;
+fun thaw_V : V;
+fun thaw_V2 : V2;
+fun theatre_N : N;
+fun theatregoer_N : N;
+fun theatrical_A : A;
+fun theatrical_N : N;
+fun theatrically_Adv : Adv;
+fun theft_N : N;
+fun theism_N : N;
+fun theist_N : N;
+fun theistic_A : A;
+fun theistical_A : A;
+fun thematic_A : A;
+fun theme_N : N;
+fun then_Adv : Adv;
+fun thence_Adv : Adv;
+fun thenceforth_Adv : Adv;
+fun thenceforward_Adv : Adv;
+fun theo_PN : PN;
+fun theocracy_N : N;
+fun theocratic_A : A;
+fun theodolite_N : N;
+fun theodore_PN : PN;
+fun theologian_N : N;
+fun theological_A : A;
+fun theologically_Adv : Adv;
+fun theology_N : N;
+fun theorem_N : N;
+fun theoretic_A : A;
+fun theoretical_A : A;
+fun theoretically_Adv : Adv;
+fun theoretician_N : N;
+fun theorist_N : N;
+fun theorize_V : V;
+fun theory_N : N;
+fun theosophical_A : A;
+fun theosophist_N : N;
+fun theosophy_N : N;
+fun therapeutic_A : A;
+fun therapeutical_A : A;
+fun therapeutics_N : N;
+fun therapist_N : N;
+fun therapy_N : N;
+fun thereabout_Adv : Adv;
+fun thereabouts_Adv : Adv;
+fun thereafter_Adv : Adv;
+fun thereby_Adv : Adv;
+fun therefore_Adv : Adv;
+fun therefrom_Adv : Adv;
+fun therein_Adv : Adv;
+fun thereinafter_Adv : Adv;
+fun thereof_Adv : Adv;
+fun thereon_Adv : Adv;
+fun theresa_PN : PN;
+fun thereto_Adv : Adv;
+fun thereunder_Adv : Adv;
+fun thereupon_Adv : Adv;
+fun therewith_Adv : Adv;
+fun therewithal_Adv : Adv;
+fun therm_N : N;
+fun thermal_A : A;
+fun thermal_N : N;
+fun thermally_Adv : Adv;
+fun thermionic_A : A;
+fun thermodynamics_N : N;
+fun thermometer_N : N;
+fun thermonuclear_A : A;
+fun thermoplastic_A : A;
+fun thermoplastic_N : N;
+fun thermos_N : N;
+fun thermosetting_A : A;
+fun thermostat_N : N;
+fun thermostatic_A : A;
+fun thermostatically_Adv : Adv;
+fun thesaurus_N : N;
+fun thesis_N : N;
+fun thespian_A : A;
+fun thespian_N : N;
+fun thessaloniki_PN : PN;
+fun thetford_PN : PN;
+fun thick_A : A;
+fun thick_Adv : Adv;
+fun thick_N : N;
+fun thick_headed_A : A;
+fun thick_set_A : A;
+fun thick_skinned_A : A;
+fun thicken_V : V;
+fun thicken_V2 : V2;
+fun thickening_N : N;
+fun thicket_N : N;
+fun thickly_Adv : Adv;
+fun thickness_N : N;
+fun thief_N : N;
+fun thieve_V : V;
+fun thieve_V2 : V2;
+fun thievery_N : N;
+fun thievish_A : A;
+fun thievishly_Adv : Adv;
+fun thigh_N : N;
+fun thighbone_N : N;
+fun thimble_N : N;
+fun thimbleful_N : N;
+fun thin_A : A;
+fun thin_Adv : Adv;
+fun thin_V : V;
+fun thin_V2 : V2;
+fun thin_skinned_A : A;
+fun thine_A : A;
+fun thing_N : N;
+fun thingmabob_N : N;
+fun thingmajig_N : N;
+fun thingumabob_N : N;
+fun thingumajig_N : N;
+fun thingummy_N : N;
+fun think_N : N;
+fun think_V : V;
+fun think_V2 : V2;
+fun think_tank_N : N;
+fun thinkable_A : A;
+fun thinker_N : N;
+fun thinking_A : A;
+fun thinking_N : N;
+fun thinly_Adv : Adv;
+fun thinness_N : N;
+fun thionville_PN : PN;
+fun third_rate_A : A;
+fun third_rater_N : N;
+fun thirdly_Adv : Adv;
+fun thirsk_PN : PN;
+fun thirst_N : N;
+fun thirst_V2 : V2;
+fun thirstily_Adv : Adv;
+fun thirsty_A : A;
+fun thistle_N : N;
+fun thistledown_N : N;
+fun thither_Adv : Adv;
+fun tho'_Adv : Adv;
+fun thole_N : N;
+fun tholepin_N : N;
+fun thomas_PN : PN;
+fun thong_N : N;
+fun thorax_N : N;
+fun thorn_N : N;
+fun thornbury_PN : PN;
+fun thorne_PN : PN;
+fun thorny_A : A;
+fun thorough_A : A;
+fun thoroughbred_A : A;
+fun thoroughbred_N : N;
+fun thoroughfare_N : N;
+fun thoroughgoing_A : A;
+fun thoroughly_Adv : Adv;
+fun thoroughness_N : N;
+fun though_Adv : Adv;
+fun thought_N : N;
+fun thought_reader_N : N;
+fun thoughtful_A : A;
+fun thoughtfully_Adv : Adv;
+fun thoughtfulness_N : N;
+fun thoughtless_A : A;
+fun thoughtlessly_Adv : Adv;
+fun thoughtlessness_N : N;
+fun thousandfold_A : A;
+fun thousandfold_Adv : Adv;
+fun thousandth_A : A;
+fun thousandth_N : N;
+fun thraldom_N : N;
+fun thrall_N : N;
+fun thrash_V : V;
+fun thrash_V2 : V2;
+fun thrashing_N : N;
+fun thread_N : N;
+fun thread_V2 : V2;
+fun threadbare_A : A;
+fun threadlike_A : A;
+fun threat_N : N;
+fun threaten_V : V;
+fun threaten_V2 : V2;
+fun threateningly_Adv : Adv;
+fun three_cornered_A : A;
+fun three_d_A : A;
+fun three_d_N : N;
+fun three_decker_N : N;
+fun three_dimensional_A : A;
+fun three_figure_A : A;
+fun three_funnelled_A : A;
+fun three_lane_A : A;
+fun three_legged_A : A;
+fun three_piece_A : A;
+fun three_ply_A : A;
+fun three_quarter_A : A;
+fun three_quarter_N : N;
+fun three_score_A : A;
+fun three_score_N : N;
+fun three_storey_A : A;
+fun three_storeyed_A : A;
+fun three_wheeled_A : A;
+fun threefold_A : A;
+fun threefold_Adv : Adv;
+fun threepence_N : N;
+fun threepenny_A : A;
+fun threesome_N : N;
+fun threnody_N : N;
+fun thresh_V : V;
+fun thresh_V2 : V2;
+fun thresher_N : N;
+fun threshing_floor_N : N;
+fun threshing_machine_N : N;
+fun threshold_N : N;
+fun thrice_Adv : Adv;
+fun thrift_N : N;
+fun thriftily_Adv : Adv;
+fun thriftless_A : A;
+fun thriftlessly_Adv : Adv;
+fun thriftlessness_N : N;
+fun thrifty_A : A;
+fun thrill_N : N;
+fun thrill_V : V;
+fun thrill_V2 : V2;
+fun thriller_N : N;
+fun thrive_V : V;
+fun throat_N : N;
+fun throated_A : A;
+fun throaty_A : A;
+fun throb_N : N;
+fun throb_V : V;
+fun throbbing_A : A;
+fun throe_N : N;
+fun thrombosis_N : N;
+fun throne_N : N;
+fun throng_N : N;
+fun throng_V : V;
+fun throng_V2 : V2;
+fun throstle_N : N;
+fun throttle_N : N;
+fun throttle_V : V;
+fun throttle_V2 : V2;
+fun throttle_valve_N : N;
+fun through_Adv : Adv;
+fun throughout_Adv : Adv;
+fun throughput_N : N;
+fun throughway_N : N;
+fun throw_N : N;
+fun throw_V : V;
+fun throw_V2 : V2;
+fun throw_in_N : N;
+fun throwaway_N : N;
+fun throwback_N : N;
+fun thrum_V : V;
+fun thrum_V2 : V2;
+fun thrush_N : N;
+fun thrust_N : N;
+fun thrust_V : V;
+fun thrust_V2 : V2;
+fun thruster_N : N;
+fun thud_N : N;
+fun thud_V : V;
+fun thug_N : N;
+fun thuggery_N : N;
+fun thumb_N : N;
+fun thumb_V2 : V2;
+fun thumbnut_N : N;
+fun thumbscrew_N : N;
+fun thumbstall_N : N;
+fun thumbtack_N : N;
+fun thump_N : N;
+fun thump_V : V;
+fun thump_V2 : V2;
+fun thumping_A : A;
+fun thunder_N : N;
+fun thunder_V : V;
+fun thunder_V2 : V2;
+fun thunderbolt_N : N;
+fun thunderclap_N : N;
+fun thunderous_A : A;
+fun thunderstorm_N : N;
+fun thunderstruck_A : A;
+fun thundery_A : A;
+fun thurcroft_PN : PN;
+fun thurible_N : N;
+fun thurmaston_PN : PN;
+fun thurrock_PN : PN;
+fun thurs_PN : PN;
+fun thursday_N : N;
+fun thursday_PN : PN;
+fun thurso_PN : PN;
+fun thus_Adv : Adv;
+fun thwack_N : N;
+fun thwack_V2 : V2;
+fun thwart_N : N;
+fun thwart_V2 : V2;
+fun thy_A : A;
+fun thyme_N : N;
+fun thyroid_N : N;
+fun ti_N : N;
+fun tiara_N : N;
+fun tibet_PN : PN;
+fun tibetan_A : A;
+fun tibetan_N : N;
+fun tibia_N : N;
+fun tic_N : N;
+fun tick_N : N;
+fun tick_V : V;
+fun tick_V2 : V2;
+fun tick_tock_N : N;
+fun ticker_N : N;
+fun ticker_tape_N : N;
+fun ticket_N : N;
+fun ticket_V2 : V2;
+fun ticket_collector_N : N;
+fun ticking_N : N;
+fun tickle_V : V;
+fun tickle_V2 : V2;
+fun tickler_N : N;
+fun ticklish_A : A;
+fun tidal_A : A;
+fun tidbit_N : N;
+fun tiddler_N : N;
+fun tiddley_A : A;
+fun tiddlywinks_N : N;
+fun tide_N : N;
+fun tide_V2 : V2;
+fun tidemark_N : N;
+fun tideway_N : N;
+fun tidily_Adv : Adv;
+fun tidiness_N : N;
+fun tidworth_PN : PN;
+fun tidy_A : A;
+fun tidy_N : N;
+fun tidy_V : V;
+fun tidy_V2 : V2;
+fun tie_N : N;
+fun tie_V : V;
+fun tie_V2 : V2;
+fun tie_on_A : A;
+fun tie_up_N : N;
+fun tientsin_PN : PN;
+fun tier_N : N;
+fun tiff_N : N;
+fun tiger_N : N;
+fun tiger_lily_N : N;
+fun tigerish_A : A;
+fun tight_A : A;
+fun tight_Adv : Adv;
+fun tight_laced_A : A;
+fun tight_lipped_A : A;
+fun tight_wad_N : N;
+fun tighten_V : V;
+fun tighten_V2 : V2;
+fun tightly_Adv : Adv;
+fun tightness_N : N;
+fun tightrope_N : N;
+fun tigress_N : N;
+fun tike_N : N;
+fun tilburg_PN : PN;
+fun tilbury_PN : PN;
+fun tilde_N : N;
+fun tile_N : N;
+fun tile_V2 : V2;
+fun till_N : N;
+fun till_V2 : V2;
+fun tillage_N : N;
+fun tiller_N : N;
+fun tilt_N : N;
+fun tilt_V : V;
+fun tilt_V2 : V2;
+fun tilth_N : N;
+fun tiltyard_N : N;
+fun tim_PN : PN;
+fun timber_N : N;
+fun timbered_A : A;
+fun timbre_N : N;
+fun timbrel_N : N;
+fun time_N : N;
+fun time_V2 : V2;
+fun time_ball_N : N;
+fun time_bomb_N : N;
+fun time_expired_A : A;
+fun time_exposure_N : N;
+fun time_fuse_N : N;
+fun time_honoured_A : A;
+fun time_lag_N : N;
+fun time_limit_N : N;
+fun time_sheet_N : N;
+fun time_signal_N : N;
+fun time_switch_N : N;
+fun timecard_N : N;
+fun timekeeper_N : N;
+fun timekeeping_N : N;
+fun timeless_A : A;
+fun timeliness_N : N;
+fun timely_A : A;
+fun timepiece_N : N;
+fun timesaving_A : A;
+fun timeserver_N : N;
+fun timeserving_A : A;
+fun timetable_N : N;
+fun timework_N : N;
+fun timid_A : A;
+fun timidity_N : N;
+fun timidly_Adv : Adv;
+fun timidness_N : N;
+fun timing_N : N;
+fun timmy_PN : PN;
+fun timorous_A : A;
+fun timorously_Adv : Adv;
+fun timothy_N : N;
+fun timothy_PN : PN;
+fun timpanist_N : N;
+fun tin_N : N;
+fun tin_V2 : V2;
+fun tin_opener_N : N;
+fun tin_pan_alley_N : N;
+fun tin_plate_N : N;
+fun tina_PN : PN;
+fun tincture_N : N;
+fun tincture_V2 : V2;
+fun tinder_N : N;
+fun tinderbox_N : N;
+fun tine_N : N;
+fun tined_A : A;
+fun tinfoil_N : N;
+fun ting_N : N;
+fun ting_V : V;
+fun ting_V2 : V2;
+fun tinge_N : N;
+fun tinge_V2 : V2;
+fun tingle_N : N;
+fun tingle_V : V;
+fun tinker_N : N;
+fun tinker_V : V;
+fun tinkle_N : N;
+fun tinkle_V : V;
+fun tinkle_V2 : V2;
+fun tinny_A : A;
+fun tinsel_N : N;
+fun tinsel_V2 : V2;
+fun tinselly_A : A;
+fun tinsmith_N : N;
+fun tint_N : N;
+fun tint_V2 : V2;
+fun tintack_N : N;
+fun tintinnabulation_N : N;
+fun tiny_A : A;
+fun tip_N : N;
+fun tip_V : V;
+fun tip_V2 : V2;
+fun tip_and_run_A : A;
+fun tip_off_N : N;
+fun tip_top_A : A;
+fun tip_top_Adv : Adv;
+fun tip_up_A : A;
+fun tipperary_PN : PN;
+fun tippet_N : N;
+fun tipple_N : N;
+fun tipple_V : V;
+fun tipple_V2 : V2;
+fun tippler_N : N;
+fun tipstaff_N : N;
+fun tipster_N : N;
+fun tipsy_A : A;
+fun tiptoe_Adv : Adv;
+fun tiptoe_V : V;
+fun tirade_N : N;
+fun tire_N : N;
+fun tire_V : V;
+fun tire_V2 : V2;
+fun tired_A : A;
+fun tiredness_N : N;
+fun tireless_A : A;
+fun tirelessly_Adv : Adv;
+fun tiresome_A : A;
+fun tiresomely_Adv : Adv;
+fun tiring_Adv : Adv;
+fun tiro_N : N;
+fun tissue_N : N;
+fun tit_N : N;
+fun titan_N : N;
+fun titanic_A : A;
+fun titbit_N : N;
+fun tithe_N : N;
+fun tithe_barn_N : N;
+fun titillate_V2 : V2;
+fun titillation_N : N;
+fun titivate_V : V;
+fun titivate_V2 : V2;
+fun titlark_N : N;
+fun title_N : N;
+fun title_deed_N : N;
+fun title_page_N : N;
+fun title_role_N : N;
+fun titled_A : A;
+fun titmouse_N : N;
+fun titter_V : V;
+fun tittivate_V : V;
+fun tittivate_V2 : V2;
+fun tittle_N : N;
+fun tittle_tattle_N : N;
+fun tittle_tattle_V : V;
+fun titular_A : A;
+fun tiverton_PN : PN;
+fun tizzy_N : N;
+fun tnt_N : N;
+fun to_Adv : Adv;
+fun to_do_N : N;
+fun toad_N : N;
+fun toad_in_the_hole_N : N;
+fun toadstool_N : N;
+fun toady_N : N;
+fun toady_V : V;
+fun toast_N : N;
+fun toast_V : V;
+fun toast_V2 : V2;
+fun toaster_N : N;
+fun toasting_fork_N : N;
+fun toastmaster_N : N;
+fun toastrack_N : N;
+fun tobacco_N : N;
+fun tobacconist_N : N;
+fun tobago_PN : PN;
+fun tobagonian_A : A;
+fun tobagonian_N : N;
+fun toboggan_N : N;
+fun toboggan_V : V;
+fun toby_PN : PN;
+fun toby_jug_N : N;
+fun toccata_N : N;
+fun tocsin_N : N;
+fun today_Adv : Adv;
+fun today_N : N;
+fun toddle_V : V;
+fun toddler_N : N;
+fun toddy_N : N;
+fun todmorden_PN : PN;
+fun toe_N : N;
+fun toe_V2 : V2;
+fun toecap_N : N;
+fun toehold_N : N;
+fun toenail_N : N;
+fun toff_N : N;
+fun toffee_N : N;
+fun tog_V2 : V2;
+fun toga_N : N;
+fun together_Adv : Adv;
+fun togetherness_N : N;
+fun toggle_N : N;
+fun togo_PN : PN;
+fun togolese_A : A;
+fun togolese_N : N;
+fun toil_N : N;
+fun toil_V : V;
+fun toiler_N : N;
+fun toilet_N : N;
+fun toilet_paper_N : N;
+fun toilet_powder_N : N;
+fun toilet_roll_N : N;
+fun toilet_table_N : N;
+fun toilsome_A : A;
+fun tokay_N : N;
+fun token_N : N;
+fun tokyo_PN : PN;
+fun tolerable_A : A;
+fun tolerably_Adv : Adv;
+fun tolerance_N : N;
+fun tolerant_A : A;
+fun tolerantly_Adv : Adv;
+fun tolerate_V2 : V2;
+fun toleration_N : N;
+fun toll_N : N;
+fun toll_V : V;
+fun toll_V2 : V2;
+fun tollbar_N : N;
+fun tollbooth_N : N;
+fun tollgate_N : N;
+fun tollhouse_N : N;
+fun tom_PN : PN;
+fun tomahawk_N : N;
+fun tomahawk_V2 : V2;
+fun tomato_N : N;
+fun tomb_N : N;
+fun tombola_N : N;
+fun tomboy_N : N;
+fun tombstone_N : N;
+fun tomcat_N : N;
+fun tome_N : N;
+fun tomfool_N : N;
+fun tomfoolery_N : N;
+fun tommy_PN : PN;
+fun tommy_gun_N : N;
+fun tommy_rot_N : N;
+fun tomorrow_Adv : Adv;
+fun tomorrow_N : N;
+fun tomtit_N : N;
+fun tomtom_N : N;
+fun ton_N : N;
+fun ton_V : V;
+fun tonal_A : A;
+fun tonality_N : N;
+fun tonbridge_PN : PN;
+fun tone_N : N;
+fun tone_V : V;
+fun tone_V2 : V2;
+fun tone_deaf_A : A;
+fun tone_poem_N : N;
+fun toned_A : A;
+fun toneless_A : A;
+fun tonelessly_Adv : Adv;
+fun tonga_PN : PN;
+fun tongan_A : A;
+fun tongan_N : N;
+fun tongue_N : N;
+fun tongue_in_cheek_A : A;
+fun tongue_in_cheek_Adv : Adv;
+fun tongue_tied_A : A;
+fun tongue_twister_N : N;
+fun tongued_A : A;
+fun tonic_A : A;
+fun tonic_N : N;
+fun tonic_sol_fa_N : N;
+fun tonight_Adv : Adv;
+fun tonight_N : N;
+fun tonnage_N : N;
+fun tonne_N : N;
+fun tonsil_N : N;
+fun tonsillitis_N : N;
+fun tonsorial_A : A;
+fun tonsure_N : N;
+fun tonsure_V2 : V2;
+fun tontine_N : N;
+fun tony_PN : PN;
+fun tonyrefail_PN : PN;
+fun too_Adv : Adv;
+fun tool_N : N;
+fun tool_V2 : V2;
+fun toot_N : N;
+fun toot_V : V;
+fun toot_V2 : V2;
+fun tooth_N : N;
+fun toothache_N : N;
+fun toothbrush_N : N;
+fun toothed_A : A;
+fun toothless_A : A;
+fun toothpaste_N : N;
+fun toothpick_N : N;
+fun toothpowder_N : N;
+fun toothsome_A : A;
+fun tootle_N : N;
+fun tootle_V : V;
+fun top_N : N;
+fun top_V2 : V2;
+fun top_boot_N : N;
+fun top_dress_V2 : V2;
+fun top_dressing_N : N;
+fun top_flight_A : A;
+fun top_heavy_A : A;
+fun top_hole_A : A;
+fun top_ranking_A : A;
+fun topaz_N : N;
+fun topcoat_N : N;
+fun tope_V : V;
+fun tope_V2 : V2;
+fun toper_N : N;
+fun topgallant_A : A;
+fun topgallant_N : N;
+fun topi_N : N;
+fun topiary_N : N;
+fun topic_N : N;
+fun topical_A : A;
+fun topically_Adv : Adv;
+fun topknot_N : N;
+fun topless_A : A;
+fun topmast_N : N;
+fun topmost_A : A;
+fun topnotch_A : A;
+fun topographical_A : A;
+fun topographically_Adv : Adv;
+fun topography_N : N;
+fun topper_N : N;
+fun topping_A : A;
+fun toppingly_Adv : Adv;
+fun topple_V : V;
+fun topple_V2 : V2;
+fun topsail_N : N;
+fun topsy_turvy_A : A;
+fun topsy_turvy_Adv : Adv;
+fun topsy_turvydom_N : N;
+fun toque_N : N;
+fun tor_N : N;
+fun torbay_PN : PN;
+fun torch_N : N;
+fun torch_race_N : N;
+fun torch_singer_N : N;
+fun torchlight_N : N;
+fun toreador_N : N;
+fun torino_PN : PN;
+fun torment_N : N;
+fun torment_V2 : V2;
+fun tormentor_N : N;
+fun tornado_N : N;
+fun toronto_PN : PN;
+fun torpedo_N : N;
+fun torpedo_V2 : V2;
+fun torpedo_boat_N : N;
+fun torpedo_tube_N : N;
+fun torpid_A : A;
+fun torpidity_N : N;
+fun torpidly_Adv : Adv;
+fun torpidness_N : N;
+fun torpor_N : N;
+fun torque_N : N;
+fun torrent_N : N;
+fun torrential_A : A;
+fun torrid_A : A;
+fun torridity_N : N;
+fun torsion_N : N;
+fun torso_N : N;
+fun tort_N : N;
+fun tortilla_N : N;
+fun tortoise_N : N;
+fun tortoiseshell_N : N;
+fun tortuous_A : A;
+fun tortuously_Adv : Adv;
+fun torture_N : N;
+fun torture_V2 : V2;
+fun torturer_N : N;
+fun tory_N : N;
+fun tosh_N : N;
+fun toss_N : N;
+fun toss_V : V;
+fun toss_V2 : V2;
+fun toss_up_N : N;
+fun tot_N : N;
+fun tot_V : V;
+fun tot_V2 : V2;
+fun total_A : A;
+fun total_N : N;
+fun total_V : V;
+fun total_V2 : V2;
+fun totalitarian_A : A;
+fun totalitarianism_N : N;
+fun totality_N : N;
+fun totalizator_N : N;
+fun totally_Adv : Adv;
+fun tote_N : N;
+fun tote_V2 : V2;
+fun totem_N : N;
+fun totem_pole_N : N;
+fun totnes_PN : PN;
+fun totter_V : V;
+fun tottery_A : A;
+fun toucan_N : N;
+fun touch_N : N;
+fun touch_V : V;
+fun touch_V2 : V2;
+fun touch_and_go_A : A;
+fun touch_type_V : V;
+fun touchable_A : A;
+fun touchdown_N : N;
+fun touched_A : A;
+fun touchily_Adv : Adv;
+fun touchiness_N : N;
+fun touching_A : A;
+fun touchingly_Adv : Adv;
+fun touchline_N : N;
+fun touchstone_N : N;
+fun touchy_A : A;
+fun tough_A : A;
+fun tough_N : N;
+fun toughen_V : V;
+fun toughen_V2 : V2;
+fun toughie_N : N;
+fun toughly_Adv : Adv;
+fun toughness_N : N;
+fun toulon_PN : PN;
+fun toulouse_PN : PN;
+fun toupee_N : N;
+fun tour_N : N;
+fun tour_V : V;
+fun tour_V2 : V2;
+fun tour_de_force_N : N;
+fun touring_A : A;
+fun touring_N : N;
+fun tourism_N : N;
+fun tourist_N : N;
+fun tournament_N : N;
+fun tourney_N : N;
+fun tourniquet_N : N;
+fun tours_PN : PN;
+fun tousle_V2 : V2;
+fun tout_N : N;
+fun tout_V : V;
+fun tout_ensemble_Adv : Adv;
+fun tout_ensemble_N : N;
+fun tow_N : N;
+fun tow_V2 : V2;
+fun towel_N : N;
+fun towel_V2 : V2;
+fun towel_horse_N : N;
+fun towel_rack_N : N;
+fun towel_rail_N : N;
+fun towelling_N : N;
+fun tower_N : N;
+fun tower_V : V;
+fun tower_block_N : N;
+fun tower_hamlets_PN : PN;
+fun towering_A : A;
+fun towing_line_N : N;
+fun towing_path_N : N;
+fun towing_rope_N : N;
+fun towline_N : N;
+fun town_N : N;
+fun town_crier_N : N;
+fun town_gas_N : N;
+fun townee_N : N;
+fun township_N : N;
+fun townsman_N : N;
+fun towpath_N : N;
+fun towrope_N : N;
+fun toxaemia_N : N;
+fun toxic_A : A;
+fun toxicity_N : N;
+fun toxicologist_N : N;
+fun toxicology_N : N;
+fun toxin_N : N;
+fun toy_N : N;
+fun toy_V : V;
+fun toyshop_N : N;
+fun trace_N : N;
+fun trace_V : V;
+fun trace_V2 : V2;
+fun traceable_A : A;
+fun tracer_N : N;
+fun tracery_N : N;
+fun trachea_N : N;
+fun trachoma_N : N;
+fun tracing_N : N;
+fun tracing_paper_N : N;
+fun track_N : N;
+fun track_V2 : V2;
+fun tracked_A : A;
+fun tracker_N : N;
+fun trackless_A : A;
+fun tract_N : N;
+fun tractability_N : N;
+fun tractable_A : A;
+fun traction_N : N;
+fun traction_engine_N : N;
+fun tractor_N : N;
+fun tracy_PN : PN;
+fun trad_N : N;
+fun trade_N : N;
+fun trade_V : V;
+fun trade_V2 : V2;
+fun trade_in_N : N;
+fun trade_union_N : N;
+fun trade_unionism_N : N;
+fun trade_unionist_N : N;
+fun trade_wind_N : N;
+fun trademark_N : N;
+fun trader_N : N;
+fun trades_union_N : N;
+fun tradesman_N : N;
+fun tradition_N : N;
+fun traditional_A : A;
+fun traditionalism_N : N;
+fun traditionalist_N : N;
+fun traditionally_Adv : Adv;
+fun traduce_V2 : V2;
+fun traducer_N : N;
+fun traffic_N : N;
+fun traffic_V : V;
+fun trafficator_N : N;
+fun trafficker_N : N;
+fun tragedian_N : N;
+fun tragedienne_N : N;
+fun tragedy_N : N;
+fun tragic_A : A;
+fun tragically_Adv : Adv;
+fun tragicomedy_N : N;
+fun tragicomic_A : A;
+fun trail_N : N;
+fun trail_V : V;
+fun trail_V2 : V2;
+fun trailer_N : N;
+fun train_N : N;
+fun train_V : V;
+fun train_V2 : V2;
+fun trainbearer_N : N;
+fun trainee_N : N;
+fun trainer_N : N;
+fun training_N : N;
+fun training_college_N : N;
+fun training_ship_N : N;
+fun trainload_N : N;
+fun trainman_N : N;
+fun traipse_V : V;
+fun trait_N : N;
+fun traitor_N : N;
+fun traitorous_A : A;
+fun traitorously_Adv : Adv;
+fun traitress_N : N;
+fun trajectory_N : N;
+fun tralee_PN : PN;
+fun tram_N : N;
+fun tram_car_N : N;
+fun tramline_N : N;
+fun trammel_V2 : V2;
+fun tramp_N : N;
+fun tramp_V : V;
+fun tramp_V2 : V2;
+fun tramp_steamer_N : N;
+fun trample_N : N;
+fun trample_V : V;
+fun trample_V2 : V2;
+fun trampoline_N : N;
+fun tramway_N : N;
+fun trance_N : N;
+fun tranent_PN : PN;
+fun tranquil_A : A;
+fun tranquility_N : N;
+fun tranquilize_V2 : V2;
+fun tranquillity_N : N;
+fun tranquillize_V2 : V2;
+fun tranquillizer_N : N;
+fun tranquilly_Adv : Adv;
+fun trans_PN : PN;
+fun transact_V2 : V2;
+fun transaction_N : N;
+fun transalpine_A : A;
+fun transalpine_N : N;
+fun transatlantic_A : A;
+fun transcend_V2 : V2;
+fun transcendence_N : N;
+fun transcendency_N : N;
+fun transcendent_A : A;
+fun transcendental_A : A;
+fun transcendentalism_N : N;
+fun transcendentalist_N : N;
+fun transcendentally_Adv : Adv;
+fun transcontinental_A : A;
+fun transcribe_V2 : V2;
+fun transcript_N : N;
+fun transcription_N : N;
+fun transept_N : N;
+fun transfer_N : N;
+fun transfer_V : V;
+fun transfer_V2 : V2;
+fun transferability_N : N;
+fun transferable_A : A;
+fun transference_N : N;
+fun transfiguration_N : N;
+fun transfigure_V2 : V2;
+fun transfix_V2 : V2;
+fun transform_V2 : V2;
+fun transformable_A : A;
+fun transformation_N : N;
+fun transformer_N : N;
+fun transfuse_V2 : V2;
+fun transfusion_N : N;
+fun transgress_V : V;
+fun transgress_V2 : V2;
+fun transgression_N : N;
+fun transgressor_N : N;
+fun transience_N : N;
+fun transiency_N : N;
+fun transient_A : A;
+fun transient_N : N;
+fun transiently_Adv : Adv;
+fun transistor_N : N;
+fun transistorized_A : A;
+fun transit_N : N;
+fun transition_N : N;
+fun transitional_A : A;
+fun transitionally_Adv : Adv;
+fun transitive_A : A;
+fun transitively_Adv : Adv;
+fun transitory_A : A;
+fun translatable_A : A;
+fun translate_V2 : V2;
+fun translation_N : N;
+fun translator_N : N;
+fun transliterate_V2 : V2;
+fun transliteration_N : N;
+fun translucence_N : N;
+fun translucency_N : N;
+fun translucent_A : A;
+fun transmigration_N : N;
+fun transmission_N : N;
+fun transmit_V2 : V2;
+fun transmitter_N : N;
+fun transmogrification_N : N;
+fun transmogrify_V2 : V2;
+fun transmutable_A : A;
+fun transmutation_N : N;
+fun transmute_V2 : V2;
+fun transoceanic_A : A;
+fun transom_N : N;
+fun transom_window_N : N;
+fun transparence_N : N;
+fun transparency_N : N;
+fun transparent_A : A;
+fun transparently_Adv : Adv;
+fun transpiration_N : N;
+fun transpire_V : V;
+fun transpire_V2 : V2;
+fun transplant_N : N;
+fun transplant_V : V;
+fun transplant_V2 : V2;
+fun transplantation_N : N;
+fun transpolar_A : A;
+fun transport_N : N;
+fun transport_V2 : V2;
+fun transportable_A : A;
+fun transportation_N : N;
+fun transporter_N : N;
+fun transpose_V2 : V2;
+fun transposition_N : N;
+fun transsexual_N : N;
+fun transship_V2 : V2;
+fun transshipment_N : N;
+fun transubstantiation_N : N;
+fun transverse_A : A;
+fun transversely_Adv : Adv;
+fun transvestism_N : N;
+fun transvestite_N : N;
+fun trap_N : N;
+fun trap_V2 : V2;
+fun trap_door_N : N;
+fun trap_shooting_N : N;
+fun trapeze_N : N;
+fun trapezium_N : N;
+fun trapezoid_N : N;
+fun trapper_N : N;
+fun trappist_N : N;
+fun trash_N : N;
+fun trashy_A : A;
+fun trauma_N : N;
+fun traumatic_A : A;
+fun travail_N : N;
+fun travel_N : N;
+fun travel_V : V;
+fun travel_V2 : V2;
+fun travel_soiled_A : A;
+fun travel_stained_A : A;
+fun travel_worn_A : A;
+fun traveled_A : A;
+fun travelled_A : A;
+fun traveller_N : N;
+fun travelling_N : N;
+fun travelogue_N : N;
+fun traverse_N : N;
+fun traverse_V2 : V2;
+fun travesty_N : N;
+fun travesty_V2 : V2;
+fun trawl_N : N;
+fun trawl_V : V;
+fun trawl_V2 : V2;
+fun trawl_net_N : N;
+fun trawler_N : N;
+fun tray_N : N;
+fun tray_cloth_N : N;
+fun treacherous_A : A;
+fun treacherously_Adv : Adv;
+fun treachery_N : N;
+fun treacle_N : N;
+fun treacly_A : A;
+fun tread_N : N;
+fun tread_V : V;
+fun tread_V2 : V2;
+fun treadle_N : N;
+fun treadle_V : V;
+fun treadmill_N : N;
+fun treas_N : N;
+fun treason_N : N;
+fun treasonable_A : A;
+fun treasonably_Adv : Adv;
+fun treasonous_A : A;
+fun treasure_N : N;
+fun treasure_V2 : V2;
+fun treasure_house_N : N;
+fun treasure_trove_N : N;
+fun treasurer_N : N;
+fun treasury_N : N;
+fun treat_N : N;
+fun treat_V : V;
+fun treat_V2 : V2;
+fun treatise_N : N;
+fun treatment_N : N;
+fun treaty_N : N;
+fun treble_A : A;
+fun treble_N : N;
+fun treble_V : V;
+fun treble_V2 : V2;
+fun tredegar_PN : PN;
+fun tree_N : N;
+fun tree_V2 : V2;
+fun tree_fern_N : N;
+fun treeless_A : A;
+fun trefoil_N : N;
+fun trek_N : N;
+fun trek_V : V;
+fun trellis_N : N;
+fun trellis_V2 : V2;
+fun tremble_N : N;
+fun tremble_V : V;
+fun tremendous_A : A;
+fun tremendously_Adv : Adv;
+fun tremolo_N : N;
+fun tremor_N : N;
+fun tremulous_A : A;
+fun tremulously_Adv : Adv;
+fun trench_N : N;
+fun trench_V2 : V2;
+fun trenchancy_N : N;
+fun trenchant_A : A;
+fun trenchantly_Adv : Adv;
+fun trencher_N : N;
+fun trencherman_N : N;
+fun trend_N : N;
+fun trend_V : V;
+fun trend_setter_N : N;
+fun trend_setting_N : N;
+fun trendy_A : A;
+fun trepan_V2 : V2;
+fun trephine_N : N;
+fun trephine_V2 : V2;
+fun trepidation_N : N;
+fun trespass_N : N;
+fun trespass_V : V;
+fun trespasser_N : N;
+fun tress_N : N;
+fun trestle_N : N;
+fun trestle_bridge_N : N;
+fun trestle_table_N : N;
+fun trevor_PN : PN;
+fun triad_N : N;
+fun trial_N : N;
+fun triangle_N : N;
+fun triangular_A : A;
+fun tribal_A : A;
+fun tribalism_N : N;
+fun tribe_N : N;
+fun tribesman_N : N;
+fun tribulation_N : N;
+fun tribunal_N : N;
+fun tribune_N : N;
+fun tributary_A : A;
+fun tributary_N : N;
+fun tribute_N : N;
+fun trice_N : N;
+fun trice_V2 : V2;
+fun trick_N : N;
+fun trick_V2 : V2;
+fun trickery_N : N;
+fun trickiness_N : N;
+fun trickle_N : N;
+fun trickle_V : V;
+fun trickle_V2 : V2;
+fun trickster_N : N;
+fun tricksy_A : A;
+fun tricky_A : A;
+fun tricolour_N : N;
+fun tricycle_N : N;
+fun trident_N : N;
+fun tried_A : A;
+fun triennial_A : A;
+fun triennial_N : N;
+fun trier_N : N;
+fun trieste_PN : PN;
+fun trifle_N : N;
+fun trifle_V : V;
+fun trifle_V2 : V2;
+fun trifler_N : N;
+fun trifling_A : A;
+fun trigger_N : N;
+fun trigger_V2 : V2;
+fun trigger_happy_A : A;
+fun trigonometry_N : N;
+fun trilateral_A : A;
+fun trilby_N : N;
+fun trill_N : N;
+fun trill_V : V;
+fun trill_V2 : V2;
+fun trillion_A : A;
+fun trillion_N : N;
+fun trillionth_A : A;
+fun trillionth_N : N;
+fun trilogy_N : N;
+fun trim_A : A;
+fun trim_N : N;
+fun trim_V : V;
+fun trim_V2 : V2;
+fun trimaran_N : N;
+fun trimly_Adv : Adv;
+fun trimmer_N : N;
+fun trimming_N : N;
+fun tring_PN : PN;
+fun trinidad_PN : PN;
+fun trinidadian_A : A;
+fun trinidadian_N : N;
+fun trinitrotoluene_N : N;
+fun trinity_N : N;
+fun trinket_N : N;
+fun trio_N : N;
+fun trip_N : N;
+fun trip_V : V;
+fun trip_V2 : V2;
+fun tripartite_A : A;
+fun tripe_N : N;
+fun triple_A : A;
+fun triple_V : V;
+fun triple_V2 : V2;
+fun triplet_N : N;
+fun triplex_A : A;
+fun triplicate_A : A;
+fun triplicate_N : N;
+fun triplicate_V2 : V2;
+fun tripod_N : N;
+fun tripos_N : N;
+fun tripper_N : N;
+fun tripping_A : A;
+fun trippingly_Adv : Adv;
+fun triptych_N : N;
+fun trireme_N : N;
+fun trisect_V2 : V2;
+fun trite_A : A;
+fun tritely_Adv : Adv;
+fun triteness_N : N;
+fun triumph_N : N;
+fun triumph_V : V;
+fun triumphal_A : A;
+fun triumphant_A : A;
+fun triumphantly_Adv : Adv;
+fun triumvir_N : N;
+fun triumvirate_N : N;
+fun triune_A : A;
+fun trivet_N : N;
+fun trivial_A : A;
+fun triviality_N : N;
+fun trivialize_V2 : V2;
+fun trivially_Adv : Adv;
+fun trochaic_A : A;
+fun trochee_N : N;
+fun troglodyte_N : N;
+fun troika_N : N;
+fun trojan_A : A;
+fun trojan_N : N;
+fun troll_N : N;
+fun troll_V : V;
+fun troll_V2 : V2;
+fun trolley_N : N;
+fun trolley_car_N : N;
+fun trollop_N : N;
+fun trombone_N : N;
+fun trombonist_N : N;
+fun troon_PN : PN;
+fun troop_N : N;
+fun troop_V : V;
+fun troop_V2 : V2;
+fun troop_carrier_N : N;
+fun trooper_N : N;
+fun troopship_N : N;
+fun trope_N : N;
+fun trophy_N : N;
+fun tropic_N : N;
+fun tropical_A : A;
+fun tropically_Adv : Adv;
+fun trot_N : N;
+fun trot_V : V;
+fun trot_V2 : V2;
+fun troth_N : N;
+fun trotter_N : N;
+fun troubadour_N : N;
+fun trouble_N : N;
+fun trouble_V : V;
+fun trouble_V2 : V2;
+fun troublemaker_N : N;
+fun troubleshooter_N : N;
+fun troublesome_A : A;
+fun troublous_A : A;
+fun trough_N : N;
+fun trounce_V2 : V2;
+fun trouncing_N : N;
+fun troupe_N : N;
+fun trouper_N : N;
+fun trouser_N : N;
+fun trousseau_N : N;
+fun trout_N : N;
+fun trove_N : N;
+fun trowbridge_PN : PN;
+fun trowel_N : N;
+fun troy_N : N;
+fun truancy_N : N;
+fun truant_N : N;
+fun truce_N : N;
+fun truck_N : N;
+fun truckle_N : N;
+fun truckle_V : V;
+fun truckle_bed_N : N;
+fun truculence_N : N;
+fun truculency_N : N;
+fun truculent_A : A;
+fun truculently_Adv : Adv;
+fun trudge_N : N;
+fun trudge_V : V;
+fun true_A : A;
+fun true_Adv : Adv;
+fun true_N : N;
+fun true_V2 : V2;
+fun true_blue_A : A;
+fun true_blue_N : N;
+fun true_hearted_A : A;
+fun truelove_N : N;
+fun truffle_N : N;
+fun truism_N : N;
+fun truly_Adv : Adv;
+fun trump_N : N;
+fun trump_V : V;
+fun trump_V2 : V2;
+fun trumpery_A : A;
+fun trumpet_N : N;
+fun trumpet_V : V;
+fun trumpet_V2 : V2;
+fun trumpeter_N : N;
+fun truncate_V2 : V2;
+fun truncheon_N : N;
+fun trundle_V : V;
+fun trundle_V2 : V2;
+fun trunk_N : N;
+fun trunk_call_N : N;
+fun trunk_line_N : N;
+fun trunk_road_N : N;
+fun trunking_N : N;
+fun truro_PN : PN;
+fun truss_N : N;
+fun truss_V2 : V2;
+fun trust_N : N;
+fun trust_V : V;
+fun trust_V2 : V2;
+fun trustee_N : N;
+fun trusteeship_N : N;
+fun trustful_A : A;
+fun trustfully_Adv : Adv;
+fun trusting_A : A;
+fun trustingly_Adv : Adv;
+fun trustworthiness_N : N;
+fun trustworthy_A : A;
+fun trusty_A : A;
+fun truth_N : N;
+fun truthful_A : A;
+fun truthfully_Adv : Adv;
+fun truthfulness_N : N;
+fun try_N : N;
+fun try_V : V;
+fun try_V2 : V2;
+fun try_on_N : N;
+fun try_out_N : N;
+fun trying_A : A;
+fun tryst_N : N;
+fun tsar_N : N;
+fun tsarina_N : N;
+fun tsetse_N : N;
+fun tsetse_fly_N : N;
+fun tsinan_PN : PN;
+fun tsingtao_PN : PN;
+fun tsitsihar_PN : PN;
+fun tswana_A : A;
+fun tswana_N : N;
+fun tub_N : N;
+fun tub_thumper_N : N;
+fun tuba_N : N;
+fun tubby_A : A;
+fun tube_N : N;
+fun tube_well_N : N;
+fun tubeless_A : A;
+fun tuber_N : N;
+fun tubercular_A : A;
+fun tuberculosis_N : N;
+fun tuberculous_A : A;
+fun tubful_N : N;
+fun tubing_N : N;
+fun tubular_A : A;
+fun tuc_N : N;
+fun tuck_N : N;
+fun tuck_V : V;
+fun tuck_V2 : V2;
+fun tuck_in_N : N;
+fun tuck_shop_N : N;
+fun tucker_N : N;
+fun tues_PN : PN;
+fun tuesday_N : N;
+fun tuesday_PN : PN;
+fun tuft_N : N;
+fun tufted_A : A;
+fun tug_N : N;
+fun tug_V : V;
+fun tug_V2 : V2;
+fun tugboat_N : N;
+fun tuition_N : N;
+fun tulip_N : N;
+fun tulle_N : N;
+fun tullibody_PN : PN;
+fun tumble_N : N;
+fun tumble_V : V;
+fun tumble_V2 : V2;
+fun tumble_down_A : A;
+fun tumbler_N : N;
+fun tumbleweed_N : N;
+fun tumbrel_N : N;
+fun tumbril_N : N;
+fun tumescence_N : N;
+fun tumescent_A : A;
+fun tumid_A : A;
+fun tumidity_N : N;
+fun tummy_N : N;
+fun tumour_N : N;
+fun tumult_N : N;
+fun tumultuous_A : A;
+fun tumultuously_Adv : Adv;
+fun tumulus_N : N;
+fun tun_N : N;
+fun tuna_N : N;
+fun tunbridge_wells_PN : PN;
+fun tundra_N : N;
+fun tune_N : N;
+fun tune_V : V;
+fun tune_V2 : V2;
+fun tuneful_A : A;
+fun tunefully_Adv : Adv;
+fun tunefulness_N : N;
+fun tuner_N : N;
+fun tung_oil_N : N;
+fun tungsten_N : N;
+fun tunic_N : N;
+fun tuning_fork_N : N;
+fun tunis_PN : PN;
+fun tunisia_PN : PN;
+fun tunisian_A : A;
+fun tunisian_N : N;
+fun tunnel_N : N;
+fun tunnel_V : V;
+fun tunnel_V2 : V2;
+fun tunny_N : N;
+fun tup_N : N;
+fun tuppence_N : N;
+fun tuppenny_A : A;
+fun turban_N : N;
+fun turbaned_A : A;
+fun turbid_A : A;
+fun turbidity_N : N;
+fun turbidness_N : N;
+fun turbine_N : N;
+fun turbojet_N : N;
+fun turboprop_N : N;
+fun turbot_N : N;
+fun turbulence_N : N;
+fun turbulent_A : A;
+fun turbulently_Adv : Adv;
+fun turd_N : N;
+fun tureen_N : N;
+fun turf_N : N;
+fun turf_V2 : V2;
+fun turgid_A : A;
+fun turgidity_N : N;
+fun turgidly_Adv : Adv;
+fun turin_PN : PN;
+fun turk_N : N;
+fun turkey_N : N;
+fun turkey_PN : PN;
+fun turkish_A : A;
+fun turkish_N : N;
+fun turku_PN : PN;
+fun turmeric_N : N;
+fun turmoil_N : N;
+fun turn_N : N;
+fun turn_V : V;
+fun turn_V2 : V2;
+fun turn_off_N : N;
+fun turn_on_N : N;
+fun turn_out_N : N;
+fun turn_round_N : N;
+fun turn_up_N : N;
+fun turncoat_N : N;
+fun turncock_N : N;
+fun turner_N : N;
+fun turning_N : N;
+fun turning_point_N : N;
+fun turnip_N : N;
+fun turnkey_N : N;
+fun turnover_N : N;
+fun turnpike_N : N;
+fun turnspit_N : N;
+fun turnstile_N : N;
+fun turntable_N : N;
+fun turpentine_N : N;
+fun turpitude_N : N;
+fun turps_N : N;
+fun turquoise_N : N;
+fun turret_N : N;
+fun turtle_N : N;
+fun turtledove_N : N;
+fun turtleneck_A : A;
+fun turtlenecked_A : A;
+fun tusk_N : N;
+fun tussle_N : N;
+fun tussle_V : V;
+fun tussock_N : N;
+fun tut_V2 : V2;
+fun tutelage_N : N;
+fun tutelary_A : A;
+fun tutor_N : N;
+fun tutor_V2 : V2;
+fun tutorial_A : A;
+fun tutorial_N : N;
+fun tutorially_Adv : Adv;
+fun tutorship_N : N;
+fun tutti_frutti_N : N;
+fun tutu_N : N;
+fun tuxedo_N : N;
+fun tv_N : N;
+fun tvs_N : N;
+fun twaddle_N : N;
+fun twaddle_V : V;
+fun twain_N : N;
+fun twang_N : N;
+fun twang_V : V;
+fun twang_V2 : V2;
+fun tweak_N : N;
+fun tweak_V2 : V2;
+fun twee_A : A;
+fun tweed_N : N;
+fun tween_Adv : Adv;
+fun tween_decks_Adv : Adv;
+fun tweet_N : N;
+fun tweet_V : V;
+fun tweeter_N : N;
+fun twelfth_night_N : N;
+fun twelfth_night_PN : PN;
+fun twelvemonth_N : N;
+fun twerp_N : N;
+fun twice_Adv : Adv;
+fun twiddle_N : N;
+fun twiddle_V : V;
+fun twiddle_V2 : V2;
+fun twiddly_A : A;
+fun twig_N : N;
+fun twig_V : V;
+fun twig_V2 : V2;
+fun twiggy_A : A;
+fun twilight_N : N;
+fun twilit_A : A;
+fun twill_N : N;
+fun twilled_A : A;
+fun twin_N : N;
+fun twin_V2 : V2;
+fun twine_N : N;
+fun twine_V : V;
+fun twine_V2 : V2;
+fun twinge_N : N;
+fun twinkle_N : N;
+fun twinkle_V : V;
+fun twinkling_N : N;
+fun twinned_A : A;
+fun twirl_N : N;
+fun twirl_V : V;
+fun twirl_V2 : V2;
+fun twist_N : N;
+fun twist_V : V;
+fun twist_V2 : V2;
+fun twister_N : N;
+fun twisty_A : A;
+fun twit_N : N;
+fun twit_V2 : V2;
+fun twitch_N : N;
+fun twitch_V : V;
+fun twitch_V2 : V2;
+fun twitter_N : N;
+fun twitter_V : V;
+fun two_a_penny_A : A;
+fun two_edged_A : A;
+fun two_faced_A : A;
+fun two_funnelled_A : A;
+fun two_handed_A : A;
+fun two_piece_N : N;
+fun two_ply_A : A;
+fun two_seater_N : N;
+fun two_step_N : N;
+fun two_timing_A : A;
+fun two_way_A : A;
+fun twofold_A : A;
+fun twofold_Adv : Adv;
+fun twopence_N : N;
+fun twopenny_A : A;
+fun twopenny_halfpenny_A : A;
+fun tycoon_N : N;
+fun tyke_N : N;
+fun tympanum_N : N;
+fun tyne_PN : PN;
+fun tynemouth_PN : PN;
+fun type_N : N;
+fun type_V : V;
+fun type_V2 : V2;
+fun typecast_V2 : V2;
+fun typeface_N : N;
+fun typescript_N : N;
+fun typesetter_N : N;
+fun typewriter_N : N;
+fun typewritten_A : A;
+fun typhoid_N : N;
+fun typhoon_N : N;
+fun typhus_N : N;
+fun typical_A : A;
+fun typically_Adv : Adv;
+fun typify_V2 : V2;
+fun typist_N : N;
+fun typographer_N : N;
+fun typographic_A : A;
+fun typographically_Adv : Adv;
+fun typography_N : N;
+fun tyrannical_A : A;
+fun tyrannize_V : V;
+fun tyrannize_V2 : V2;
+fun tyrannous_A : A;
+fun tyranny_N : N;
+fun tyrant_N : N;
+fun tyre_N : N;
+fun tyro_N : N;
+fun tyrone_PN : PN;
+fun tzar_N : N;
+fun tzarina_N : N;
+fun tzupo_PN : PN;
+fun tete_a_tete_Adv : Adv;
+fun tete_a_tete_N : N;
+fun u_boat_N : N;
+fun u_turn_N : N;
+fun ubiquitous_A : A;
+fun ubiquity_N : N;
+fun udder_N : N;
+fun uddingston_PN : PN;
+fun udi_PN : PN;
+fun udine_PN : PN;
+fun ufa_PN : PN;
+fun ufo's_N : N;
+fun ufo_N : N;
+fun uganda_PN : PN;
+fun ugandan_A : A;
+fun ugandan_N : N;
+fun uglify_V2 : V2;
+fun ugliness_N : N;
+fun ugly_A : A;
+fun uk_PN : PN;
+fun ukase_N : N;
+fun ukulele_N : N;
+fun ulcer_N : N;
+fun ulcerate_V : V;
+fun ulcerate_V2 : V2;
+fun ulceration_N : N;
+fun ulcerous_A : A;
+fun ulna_N : N;
+fun ulster_N : N;
+fun ulster_PN : PN;
+fun ulterior_A : A;
+fun ultimate_A : A;
+fun ultimately_Adv : Adv;
+fun ultimatum_N : N;
+fun ultimo_A : A;
+fun ultra_vires_A : A;
+fun ultra_vires_Adv : Adv;
+fun ultramarine_A : A;
+fun ultramarine_N : N;
+fun ultramontane_A : A;
+fun ultrasonic_A : A;
+fun ultraviolet_A : A;
+fun ululate_V : V;
+fun ululation_N : N;
+fun ulverston_PN : PN;
+fun umber_A : A;
+fun umber_N : N;
+fun umbilical_A : A;
+fun umbrage_N : N;
+fun umbrella_N : N;
+fun umlaut_N : N;
+fun umpire_N : N;
+fun umpire_V : V;
+fun umpire_V2 : V2;
+fun umpteen_A : A;
+fun umpteenth_A : A;
+fun un_N : N;
+fun un_come_at_able_A : A;
+fun un_get_at_able_A : A;
+fun unabashed_A : A;
+fun unabated_A : A;
+fun unable_A : A;
+fun unabridged_A : A;
+fun unacceptable_A : A;
+fun unacceptably_Adv : Adv;
+fun unaccommodating_A : A;
+fun unaccompanied_A : A;
+fun unaccountable_A : A;
+fun unaccountably_Adv : Adv;
+fun unaccounted_A : A;
+fun unaccustomed_A : A;
+fun unacknowledged_A : A;
+fun unacquainted_A : A;
+fun unadorned_A : A;
+fun unadulterated_A : A;
+fun unadventurous_A : A;
+fun unadvised_A : A;
+fun unadvisedly_Adv : Adv;
+fun unaffected_A : A;
+fun unafraid_A : A;
+fun unaided_A : A;
+fun unalienable_A : A;
+fun unaligned_A : A;
+fun unalloyed_A : A;
+fun unalterable_A : A;
+fun unalterably_Adv : Adv;
+fun unaltered_A : A;
+fun unambiguous_A : A;
+fun unambiguously_Adv : Adv;
+fun unamended_A : A;
+fun unanimity_N : N;
+fun unanimous_A : A;
+fun unanimously_Adv : Adv;
+fun unannounced_A : A;
+fun unanswerable_A : A;
+fun unanswered_A : A;
+fun unanticipated_A : A;
+fun unappealing_A : A;
+fun unappetizing_A : A;
+fun unappreciated_A : A;
+fun unappreciative_A : A;
+fun unapproachable_A : A;
+fun unarguable_A : A;
+fun unarguably_Adv : Adv;
+fun unarmed_A : A;
+fun unarticulated_A : A;
+fun unashamed_A : A;
+fun unashamedly_Adv : Adv;
+fun unasked_A : A;
+fun unassailable_A : A;
+fun unassailably_Adv : Adv;
+fun unassisted_A : A;
+fun unassuming_A : A;
+fun unassumingly_Adv : Adv;
+fun unattached_A : A;
+fun unattainable_A : A;
+fun unattainably_Adv : Adv;
+fun unattended_A : A;
+fun unattractive_A : A;
+fun unattractively_Adv : Adv;
+fun unauthorized_A : A;
+fun unavailable_A : A;
+fun unavailing_A : A;
+fun unavoidable_A : A;
+fun unavoidably_Adv : Adv;
+fun unawakened_A : A;
+fun unaware_A : A;
+fun unawares_Adv : Adv;
+fun unbacked_A : A;
+fun unbalance_V2 : V2;
+fun unbalanced_A : A;
+fun unbar_V2 : V2;
+fun unbearable_A : A;
+fun unbearably_Adv : Adv;
+fun unbeatable_A : A;
+fun unbeaten_A : A;
+fun unbecoming_A : A;
+fun unbecomingly_Adv : Adv;
+fun unbeknown_A : A;
+fun unbeknown_Adv : Adv;
+fun unbeknownst_A : A;
+fun unbeknownst_Adv : Adv;
+fun unbelief_N : N;
+fun unbelievable_A : A;
+fun unbelievably_Adv : Adv;
+fun unbeliever_N : N;
+fun unbelieving_A : A;
+fun unbelievingly_Adv : Adv;
+fun unbeloved_A : A;
+fun unbend_V : V;
+fun unbend_V2 : V2;
+fun unbending_A : A;
+fun unbiased_A : A;
+fun unbiassed_A : A;
+fun unbidden_A : A;
+fun unbind_V2 : V2;
+fun unblock_V2 : V2;
+fun unblushing_A : A;
+fun unblushingly_Adv : Adv;
+fun unbolt_V : V;
+fun unbolt_V2 : V2;
+fun unborn_A : A;
+fun unbosom_V2 : V2;
+fun unbounded_A : A;
+fun unbowed_A : A;
+fun unbreakable_A : A;
+fun unbridled_A : A;
+fun unbroken_A : A;
+fun unbuckle_V2 : V2;
+fun unburden_V2 : V2;
+fun unburied_A : A;
+fun unbutton_V2 : V2;
+fun unbuttoned_A : A;
+fun uncalled_for_A : A;
+fun uncannily_Adv : Adv;
+fun uncanny_A : A;
+fun uncared_for_A : A;
+fun uncarpeted_A : A;
+fun unceasing_A : A;
+fun unceasingly_Adv : Adv;
+fun uncensored_A : A;
+fun unceremonious_A : A;
+fun unceremoniously_Adv : Adv;
+fun unceremoniousness_N : N;
+fun uncertain_A : A;
+fun uncertainly_Adv : Adv;
+fun uncertainty_N : N;
+fun unchain_V2 : V2;
+fun unchallengeable_A : A;
+fun unchallenged_A : A;
+fun unchanged_A : A;
+fun unchanging_A : A;
+fun uncharacteristic_A : A;
+fun uncharacteristically_Adv : Adv;
+fun uncharitable_A : A;
+fun uncharted_A : A;
+fun unchecked_A : A;
+fun unchivalrously_Adv : Adv;
+fun unchristian_A : A;
+fun uncivil_A : A;
+fun uncivilized_A : A;
+fun unclaimed_A : A;
+fun unclassified_A : A;
+fun uncle_N : N;
+fun unclean_A : A;
+fun unclear_A : A;
+fun unclouded_A : A;
+fun uncluttered_A : A;
+fun unco_A : A;
+fun unco_Adv : Adv;
+fun unco_operative_A : A;
+fun unco_ordinated_A : A;
+fun uncoloured_A : A;
+fun uncomfortable_A : A;
+fun uncomfortably_Adv : Adv;
+fun uncommercialized_A : A;
+fun uncommitted_A : A;
+fun uncommon_A : A;
+fun uncommonly_Adv : Adv;
+fun uncommunicative_A : A;
+fun uncompetitive_A : A;
+fun uncomplaining_A : A;
+fun uncomplainingly_Adv : Adv;
+fun uncompleted_A : A;
+fun uncomplicated_A : A;
+fun uncomplimentary_A : A;
+fun uncomprehending_A : A;
+fun uncompromising_A : A;
+fun unconcealed_A : A;
+fun unconcern_N : N;
+fun unconcerned_A : A;
+fun unconcernedly_Adv : Adv;
+fun unconditional_A : A;
+fun unconditionally_Adv : Adv;
+fun unconditioned_A : A;
+fun unconfined_A : A;
+fun unconfirmed_A : A;
+fun unconformable_A : A;
+fun uncongenial_A : A;
+fun unconnected_A : A;
+fun unconquered_A : A;
+fun unconscionable_A : A;
+fun unconscious_A : A;
+fun unconscious_N : N;
+fun unconsciously_Adv : Adv;
+fun unconsciousness_N : N;
+fun unconsidered_A : A;
+fun unconstitutional_A : A;
+fun unconstitutionally_Adv : Adv;
+fun unconstrained_A : A;
+fun unconstructive_A : A;
+fun unconsummated_A : A;
+fun uncontaminated_A : A;
+fun uncontrollable_A : A;
+fun uncontrollably_Adv : Adv;
+fun uncontrolled_A : A;
+fun uncontroversial_A : A;
+fun unconventional_A : A;
+fun unconventionality_N : N;
+fun unconverted_A : A;
+fun unconvinced_A : A;
+fun unconvincing_A : A;
+fun uncooked_A : A;
+fun uncork_V2 : V2;
+fun uncorrected_A : A;
+fun uncorrelated_A : A;
+fun uncorroborated_A : A;
+fun uncouple_V2 : V2;
+fun uncouth_A : A;
+fun uncouthly_Adv : Adv;
+fun uncouthness_N : N;
+fun uncover_V2 : V2;
+fun uncritical_A : A;
+fun uncritically_Adv : Adv;
+fun uncross_V2 : V2;
+fun uncrossed_A : A;
+fun uncrowned_A : A;
+fun unction_N : N;
+fun unctuous_A : A;
+fun unctuously_Adv : Adv;
+fun uncultivated_A : A;
+fun uncultured_A : A;
+fun uncurl_V : V;
+fun uncurl_V2 : V2;
+fun uncut_A : A;
+fun undamaged_A : A;
+fun undated_A : A;
+fun undaunted_A : A;
+fun undeceive_V2 : V2;
+fun undecided_A : A;
+fun undeclared_A : A;
+fun undefeated_A : A;
+fun undefended_A : A;
+fun undeferential_A : A;
+fun undefinable_A : A;
+fun undefined_A : A;
+fun undemanding_A : A;
+fun undemocratic_A : A;
+fun undemocratically_Adv : Adv;
+fun undemonstrative_A : A;
+fun undeniable_A : A;
+fun undeniably_Adv : Adv;
+fun undenominational_A : A;
+fun under_Adv : Adv;
+fun under_the_counter_A : A;
+fun underact_V : V;
+fun underact_V2 : V2;
+fun underarm_A : A;
+fun underarm_Adv : Adv;
+fun underbelly_N : N;
+fun underbid_V2 : V2;
+fun underbred_A : A;
+fun underbrush_N : N;
+fun undercarriage_N : N;
+fun undercharge_N : N;
+fun undercharge_V2 : V2;
+fun underclothing_N : N;
+fun undercoat_N : N;
+fun undercover_A : A;
+fun undercurrent_N : N;
+fun undercut_N : N;
+fun undercut_V2 : V2;
+fun underdeveloped_A : A;
+fun underdevelopment_N : N;
+fun underdog_N : N;
+fun underdone_A : A;
+fun underemployed_A : A;
+fun underestimate_N : N;
+fun underestimate_V2 : V2;
+fun underestimation_N : N;
+fun underexpose_V2 : V2;
+fun underexposure_N : N;
+fun underfed_A : A;
+fun underfelt_N : N;
+fun underfloor_A : A;
+fun underfoot_Adv : Adv;
+fun undergarment_N : N;
+fun undergo_V2 : V2;
+fun undergraduate_N : N;
+fun underground_A : A;
+fun underground_Adv : Adv;
+fun underground_N : N;
+fun undergrowth_N : N;
+fun underhand_A : A;
+fun underhand_Adv : Adv;
+fun underhanded_A : A;
+fun underhung_A : A;
+fun underlay_N : N;
+fun underlie_V2 : V2;
+fun underline_N : N;
+fun underline_V2 : V2;
+fun underling_N : N;
+fun undermanned_A : A;
+fun undermentioned_A : A;
+fun undermine_V2 : V2;
+fun underneath_Adv : Adv;
+fun undernourished_A : A;
+fun undernourishment_N : N;
+fun underpass_N : N;
+fun underpay_V2 : V2;
+fun underpayment_N : N;
+fun underpin_V2 : V2;
+fun underpopulated_A : A;
+fun underprivileged_A : A;
+fun underproduction_N : N;
+fun underquote_V2 : V2;
+fun underrate_V2 : V2;
+fun underscore_V2 : V2;
+fun undersea_A : A;
+fun underseal_N : N;
+fun undersealed_A : A;
+fun undersecretary_N : N;
+fun undersell_V2 : V2;
+fun undersexed_A : A;
+fun undershoot_V2 : V2;
+fun underside_N : N;
+fun undersign_V2 : V2;
+fun undersized_A : A;
+fun underskirt_N : N;
+fun underslung_A : A;
+fun underspend_V : V;
+fun underspend_V2 : V2;
+fun underspent_A : A;
+fun understaffed_A : A;
+fun understand_V : V;
+fun understand_V2 : V2;
+fun understandable_A : A;
+fun understandably_Adv : Adv;
+fun understanding_A : A;
+fun understanding_N : N;
+fun understate_V2 : V2;
+fun understatement_N : N;
+fun understock_V2 : V2;
+fun understudy_N : N;
+fun understudy_V2 : V2;
+fun undersurface_N : N;
+fun undertake_V2 : V2;
+fun undertaker_N : N;
+fun undertaking_N : N;
+fun undertone_N : N;
+fun undertow_N : N;
+fun undervaluation_N : N;
+fun undervalue_V2 : V2;
+fun underwater_A : A;
+fun underwear_N : N;
+fun underweight_A : A;
+fun underworld_N : N;
+fun underwrite_V2 : V2;
+fun underwriter_N : N;
+fun undeserved_A : A;
+fun undeserving_A : A;
+fun undesigned_A : A;
+fun undesirable_A : A;
+fun undesirable_N : N;
+fun undetected_A : A;
+fun undetermined_A : A;
+fun undeterred_A : A;
+fun undeveloped_A : A;
+fun undiagnosed_A : A;
+fun undifferentiated_A : A;
+fun undigested_A : A;
+fun undignified_A : A;
+fun undiluted_A : A;
+fun undiminished_A : A;
+fun undimmed_A : A;
+fun undiplomatic_A : A;
+fun undiplomatically_Adv : Adv;
+fun undischarged_A : A;
+fun undisciplined_A : A;
+fun undisclosed_A : A;
+fun undiscovered_A : A;
+fun undiscriminating_A : A;
+fun undisguised_A : A;
+fun undismayed_A : A;
+fun undisputed_A : A;
+fun undisputedly_Adv : Adv;
+fun undissolved_A : A;
+fun undistinguishable_A : A;
+fun undistinguished_A : A;
+fun undistributed_A : A;
+fun undisturbed_A : A;
+fun undivided_A : A;
+fun undo_V2 : V2;
+fun undock_V : V;
+fun undock_V2 : V2;
+fun undocumented_A : A;
+fun undogmatic_A : A;
+fun undoing_N : N;
+fun undomesticated_A : A;
+fun undone_A : A;
+fun undoubted_A : A;
+fun undoubtedly_Adv : Adv;
+fun undramatic_A : A;
+fun undramatically_Adv : Adv;
+fun undreamed_A : A;
+fun undreamed_of_A : A;
+fun undreamt_A : A;
+fun undress_N : N;
+fun undress_V : V;
+fun undress_V2 : V2;
+fun undrinkable_A : A;
+fun undue_A : A;
+fun undulate_V : V;
+fun undulation_N : N;
+fun unduly_Adv : Adv;
+fun undying_A : A;
+fun unearned_A : A;
+fun unearth_V2 : V2;
+fun unearthly_A : A;
+fun unease_N : N;
+fun uneasily_Adv : Adv;
+fun uneasiness_N : N;
+fun uneasy_A : A;
+fun uneatable_A : A;
+fun uneaten_A : A;
+fun uneconomic_A : A;
+fun uneconomical_A : A;
+fun unedifying_A : A;
+fun unedited_A : A;
+fun uneducated_A : A;
+fun uneffective_A : A;
+fun unelaborated_A : A;
+fun unemotional_A : A;
+fun unemotionally_Adv : Adv;
+fun unemployable_A : A;
+fun unemployed_A : A;
+fun unemployment_N : N;
+fun unending_A : A;
+fun unendingly_Adv : Adv;
+fun unendurable_A : A;
+fun unenlightened_A : A;
+fun unenterprising_A : A;
+fun unenthusiastic_A : A;
+fun unenthusiastically_Adv : Adv;
+fun unenviable_A : A;
+fun unequal_A : A;
+fun unequalled_A : A;
+fun unequally_Adv : Adv;
+fun unequipped_A : A;
+fun unequivocal_A : A;
+fun unequivocally_Adv : Adv;
+fun unerring_A : A;
+fun unerringly_Adv : Adv;
+fun unesco_PN : PN;
+fun unethical_A : A;
+fun unethically_Adv : Adv;
+fun uneven_A : A;
+fun unevenly_Adv : Adv;
+fun uneventful_A : A;
+fun uneventfully_Adv : Adv;
+fun unexampled_A : A;
+fun unexceeded_A : A;
+fun unexceptionable_A : A;
+fun unexceptional_A : A;
+fun unexciting_A : A;
+fun unexpected_A : A;
+fun unexpectedly_Adv : Adv;
+fun unexpectedness_N : N;
+fun unexpired_A : A;
+fun unexplained_A : A;
+fun unexplored_A : A;
+fun unexposed_A : A;
+fun unexpressed_A : A;
+fun unexpurgated_A : A;
+fun unfailing_A : A;
+fun unfailingly_Adv : Adv;
+fun unfair_A : A;
+fun unfairly_Adv : Adv;
+fun unfairness_N : N;
+fun unfaithful_A : A;
+fun unfaithfully_Adv : Adv;
+fun unfaithfulness_N : N;
+fun unfaltering_A : A;
+fun unfalteringly_Adv : Adv;
+fun unfamiliar_A : A;
+fun unfamiliarity_N : N;
+fun unfashionable_A : A;
+fun unfashionably_Adv : Adv;
+fun unfasten_V : V;
+fun unfasten_V2 : V2;
+fun unfathomable_A : A;
+fun unfathomed_A : A;
+fun unfavourable_A : A;
+fun unfavourably_Adv : Adv;
+fun unfed_A : A;
+fun unfeeling_A : A;
+fun unfeelingly_Adv : Adv;
+fun unfeigned_A : A;
+fun unfeignedly_Adv : Adv;
+fun unfermented_A : A;
+fun unfertilized_A : A;
+fun unfettered_A : A;
+fun unfinished_A : A;
+fun unfit_A : A;
+fun unfit_V2 : V2;
+fun unflagging_A : A;
+fun unflappable_A : A;
+fun unfledged_A : A;
+fun unflinching_A : A;
+fun unflurried_A : A;
+fun unfold_V : V;
+fun unfold_V2 : V2;
+fun unforeseeable_A : A;
+fun unforeseen_A : A;
+fun unforgettable_A : A;
+fun unforgettably_Adv : Adv;
+fun unforgivable_A : A;
+fun unforgivably_Adv : Adv;
+fun unforgiving_A : A;
+fun unformed_A : A;
+fun unforthcoming_A : A;
+fun unfortunate_A : A;
+fun unfortunate_N : N;
+fun unfortunately_Adv : Adv;
+fun unfounded_A : A;
+fun unframed_A : A;
+fun unfrequented_A : A;
+fun unfriendliness_N : N;
+fun unfriendly_A : A;
+fun unfrock_V2 : V2;
+fun unfruitful_A : A;
+fun unfulfilled_A : A;
+fun unfurl_V : V;
+fun unfurl_V2 : V2;
+fun unfurnished_A : A;
+fun ungainly_A : A;
+fun ungenerous_A : A;
+fun ungentle_A : A;
+fun ungentlemanly_A : A;
+fun unglazed_A : A;
+fun ungodly_A : A;
+fun ungovernable_A : A;
+fun ungraceful_A : A;
+fun ungracious_A : A;
+fun ungraciously_Adv : Adv;
+fun ungrammatical_A : A;
+fun ungrammatically_Adv : Adv;
+fun ungrateful_A : A;
+fun ungratefully_Adv : Adv;
+fun ungratefulness_N : N;
+fun ungrudging_A : A;
+fun ungrudgingly_Adv : Adv;
+fun unguarded_A : A;
+fun unguent_N : N;
+fun unhallowed_A : A;
+fun unhampered_A : A;
+fun unhand_V2 : V2;
+fun unhappily_Adv : Adv;
+fun unhappiness_N : N;
+fun unhappy_A : A;
+fun unharmed_A : A;
+fun unhealed_A : A;
+fun unhealthy_A : A;
+fun unheard_A : A;
+fun unheard_of_A : A;
+fun unhearing_A : A;
+fun unheated_A : A;
+fun unheeded_A : A;
+fun unhelpful_A : A;
+fun unhelpfully_Adv : Adv;
+fun unheralded_A : A;
+fun unhesitating_A : A;
+fun unhesitatingly_Adv : Adv;
+fun unhindered_A : A;
+fun unhinge_V2 : V2;
+fun unhitch_V : V;
+fun unhitch_V2 : V2;
+fun unholy_A : A;
+fun unhook_V2 : V2;
+fun unhoped_for_A : A;
+fun unhorse_V2 : V2;
+fun unhurried_A : A;
+fun unhurriedly_Adv : Adv;
+fun unhurt_A : A;
+fun unhygienic_A : A;
+fun unhygienically_Adv : Adv;
+fun unicef_PN : PN;
+fun unicorn_N : N;
+fun unidentifiable_A : A;
+fun unidentified_A : A;
+fun unification_N : N;
+fun uniform_A : A;
+fun uniform_N : N;
+fun uniformed_A : A;
+fun uniformity_N : N;
+fun uniformly_Adv : Adv;
+fun unify_V2 : V2;
+fun unilateral_A : A;
+fun unilateralism_N : N;
+fun unilateralist_A : A;
+fun unilateralist_N : N;
+fun unilaterally_Adv : Adv;
+fun unimaginable_A : A;
+fun unimaginably_Adv : Adv;
+fun unimaginative_A : A;
+fun unimaginatively_Adv : Adv;
+fun unimpaired_A : A;
+fun unimpeachable_A : A;
+fun unimpeded_A : A;
+fun unimportant_A : A;
+fun unimpressed_A : A;
+fun unimpressive_A : A;
+fun unimpressively_Adv : Adv;
+fun uninfluenced_A : A;
+fun uninformative_A : A;
+fun uninformed_A : A;
+fun uninhabitable_A : A;
+fun uninhabited_A : A;
+fun uninhibited_A : A;
+fun uninitiated_A : A;
+fun uninjured_A : A;
+fun uninspired_A : A;
+fun uninspiring_A : A;
+fun uninsured_A : A;
+fun unintelligent_A : A;
+fun unintelligently_Adv : Adv;
+fun unintelligible_A : A;
+fun unintelligibly_Adv : Adv;
+fun unintended_A : A;
+fun unintentional_A : A;
+fun unintentionally_Adv : Adv;
+fun uninterested_A : A;
+fun uninteresting_A : A;
+fun uninterestingly_Adv : Adv;
+fun uninterrupted_A : A;
+fun uninterruptedly_Adv : Adv;
+fun uninvited_A : A;
+fun uninviting_A : A;
+fun union_N : N;
+fun unionist_N : N;
+fun unique_A : A;
+fun uniquely_Adv : Adv;
+fun uniqueness_N : N;
+fun unisex_A : A;
+fun unison_N : N;
+fun unit_N : N;
+fun unitarian_A : A;
+fun unitarian_N : N;
+fun unitarianism_N : N;
+fun unitary_A : A;
+fun unite_V : V;
+fun unite_V2 : V2;
+fun united_A : A;
+fun unitedly_Adv : Adv;
+fun unity_N : N;
+fun univ_PN : PN;
+fun universal_A : A;
+fun universality_N : N;
+fun universally_Adv : Adv;
+fun universe_N : N;
+fun university_N : N;
+fun unjust_A : A;
+fun unjustifiable_A : A;
+fun unjustifiably_Adv : Adv;
+fun unjustified_A : A;
+fun unjustly_Adv : Adv;
+fun unkempt_A : A;
+fun unkind_A : A;
+fun unkindly_Adv : Adv;
+fun unkissed_A : A;
+fun unknowable_A : A;
+fun unknowing_A : A;
+fun unknowingly_Adv : Adv;
+fun unknown_A : A;
+fun unknown_N : N;
+fun unlabelled_A : A;
+fun unladylike_A : A;
+fun unlamented_A : A;
+fun unlatched_A : A;
+fun unlawful_A : A;
+fun unlawfully_Adv : Adv;
+fun unlearn_V2 : V2;
+fun unleash_V2 : V2;
+fun unleavened_A : A;
+fun unlettered_A : A;
+fun unlicensed_A : A;
+fun unlighted_A : A;
+fun unlikable_A : A;
+fun unlike_A : A;
+fun unlikely_A : A;
+fun unlimited_A : A;
+fun unlined_A : A;
+fun unlisted_A : A;
+fun unlit_A : A;
+fun unliterary_A : A;
+fun unload_V : V;
+fun unload_V2 : V2;
+fun unlocated_A : A;
+fun unlock_V : V;
+fun unlock_V2 : V2;
+fun unlooked_for_A : A;
+fun unloose_V2 : V2;
+fun unlovable_A : A;
+fun unloved_A : A;
+fun unlovely_A : A;
+fun unluckily_Adv : Adv;
+fun unlucky_A : A;
+fun unmade_A : A;
+fun unman_V2 : V2;
+fun unmanageable_A : A;
+fun unmanageably_Adv : Adv;
+fun unmanly_A : A;
+fun unmanned_A : A;
+fun unmannered_A : A;
+fun unmannerly_A : A;
+fun unmarked_A : A;
+fun unmarried_A : A;
+fun unmask_V : V;
+fun unmask_V2 : V2;
+fun unmatchable_A : A;
+fun unmatched_A : A;
+fun unmechanized_A : A;
+fun unmemorable_A : A;
+fun unmemorably_Adv : Adv;
+fun unmentionable_A : A;
+fun unmerciful_A : A;
+fun unmercifully_Adv : Adv;
+fun unmerited_A : A;
+fun unmindful_A : A;
+fun unmingled_A : A;
+fun unmistakable_A : A;
+fun unmistakably_Adv : Adv;
+fun unmitigated_A : A;
+fun unmixed_A : A;
+fun unmodernized_A : A;
+fun unmodified_A : A;
+fun unmolested_A : A;
+fun unmourned_A : A;
+fun unmovable_A : A;
+fun unmoved_A : A;
+fun unmoving_A : A;
+fun unmusical_A : A;
+fun unmusically_Adv : Adv;
+fun unnamed_A : A;
+fun unnatural_A : A;
+fun unnaturally_Adv : Adv;
+fun unnecessarily_Adv : Adv;
+fun unnecessary_A : A;
+fun unnerve_V2 : V2;
+fun unnoticeable_A : A;
+fun unnoticed_A : A;
+fun unnumbered_A : A;
+fun unobjectionable_A : A;
+fun unobservant_A : A;
+fun unobserved_A : A;
+fun unobtainable_A : A;
+fun unobtrusive_A : A;
+fun unobtrusively_Adv : Adv;
+fun unobvious_A : A;
+fun unoccupied_A : A;
+fun unofficial_A : A;
+fun unofficially_Adv : Adv;
+fun unopen_A : A;
+fun unopened_A : A;
+fun unopposed_A : A;
+fun unoriginal_A : A;
+fun unorthodox_A : A;
+fun unpack_V : V;
+fun unpack_V2 : V2;
+fun unpaid_A : A;
+fun unpainted_A : A;
+fun unpalatable_A : A;
+fun unpalatably_Adv : Adv;
+fun unparalleled_A : A;
+fun unpardonable_A : A;
+fun unpardonably_Adv : Adv;
+fun unparliamentary_A : A;
+fun unpatriotic_A : A;
+fun unpatriotically_Adv : Adv;
+fun unpaved_A : A;
+fun unpersuaded_A : A;
+fun unperturbed_A : A;
+fun unpick_V : V;
+fun unpick_V2 : V2;
+fun unplaced_A : A;
+fun unplanned_A : A;
+fun unplayable_A : A;
+fun unpleasant_A : A;
+fun unpleasantly_Adv : Adv;
+fun unpleasantness_N : N;
+fun unplug_V : V;
+fun unplug_V2 : V2;
+fun unplumbed_A : A;
+fun unpolluted_A : A;
+fun unpompous_A : A;
+fun unpopular_A : A;
+fun unpopularity_N : N;
+fun unpractised_A : A;
+fun unprecedented_A : A;
+fun unprecedentedly_Adv : Adv;
+fun unpredictability_N : N;
+fun unpredictable_A : A;
+fun unpredictably_Adv : Adv;
+fun unpredicted_A : A;
+fun unprejudiced_A : A;
+fun unpremeditated_A : A;
+fun unprepared_A : A;
+fun unprepossessing_A : A;
+fun unpretentious_A : A;
+fun unprincipled_A : A;
+fun unprintable_A : A;
+fun unproductive_A : A;
+fun unproductively_Adv : Adv;
+fun unprofessional_A : A;
+fun unprofitable_A : A;
+fun unprofitably_Adv : Adv;
+fun unpromising_A : A;
+fun unprompted_A : A;
+fun unpronounceable_A : A;
+fun unpropitious_A : A;
+fun unprotected_A : A;
+fun unproved_A : A;
+fun unproven_A : A;
+fun unprovided_A : A;
+fun unprovoked_A : A;
+fun unpublished_A : A;
+fun unpunished_A : A;
+fun unputdownable_A : A;
+fun unqualified_A : A;
+fun unquestionable_A : A;
+fun unquestionably_Adv : Adv;
+fun unquestioned_A : A;
+fun unquestioning_A : A;
+fun unquiet_A : A;
+fun unquotable_A : A;
+fun unquote_Adv : Adv;
+fun unravel_V : V;
+fun unravel_V2 : V2;
+fun unreached_A : A;
+fun unread_A : A;
+fun unreadable_A : A;
+fun unready_A : A;
+fun unreal_A : A;
+fun unrealistic_A : A;
+fun unrealistically_Adv : Adv;
+fun unreality_N : N;
+fun unrealized_A : A;
+fun unreasonable_A : A;
+fun unreasonably_Adv : Adv;
+fun unreasoning_A : A;
+fun unreceptive_A : A;
+fun unreciprocated_A : A;
+fun unrecognizable_A : A;
+fun unrecognizably_Adv : Adv;
+fun unrecognized_A : A;
+fun unreconciled_A : A;
+fun unrecorded_A : A;
+fun unredeemable_A : A;
+fun unrefined_A : A;
+fun unreflective_A : A;
+fun unregenerate_A : A;
+fun unregistered_A : A;
+fun unrehearsed_A : A;
+fun unrelated_A : A;
+fun unrelaxed_A : A;
+fun unrelenting_A : A;
+fun unreliable_A : A;
+fun unreliably_Adv : Adv;
+fun unrelieved_A : A;
+fun unremarkable_A : A;
+fun unremarkably_Adv : Adv;
+fun unremitting_A : A;
+fun unrepeatable_A : A;
+fun unrepentant_A : A;
+fun unrepresentative_A : A;
+fun unrequested_A : A;
+fun unrequited_A : A;
+fun unreserved_A : A;
+fun unreservedly_Adv : Adv;
+fun unresisting_A : A;
+fun unresolved_A : A;
+fun unrest_N : N;
+fun unrestrained_A : A;
+fun unrestricted_A : A;
+fun unrevised_A : A;
+fun unrewarded_A : A;
+fun unrewarding_A : A;
+fun unrhythmical_A : A;
+fun unrighteous_A : A;
+fun unrighteously_Adv : Adv;
+fun unripe_A : A;
+fun unripened_A : A;
+fun unrivalled_A : A;
+fun unroll_V : V;
+fun unroll_V2 : V2;
+fun unromantic_A : A;
+fun unromantically_Adv : Adv;
+fun unruffled_A : A;
+fun unruly_A : A;
+fun unsaddle_V2 : V2;
+fun unsaddled_A : A;
+fun unsafe_A : A;
+fun unsaid_A : A;
+fun unsaleable_A : A;
+fun unsalted_A : A;
+fun unsatisfactorily_Adv : Adv;
+fun unsatisfactory_A : A;
+fun unsatisfied_A : A;
+fun unsatisfying_A : A;
+fun unsaturated_A : A;
+fun unsavoury_A : A;
+fun unsay_V2 : V2;
+fun unscathed_A : A;
+fun unscheduled_A : A;
+fun unscientific_A : A;
+fun unscientifically_Adv : Adv;
+fun unscramble_V2 : V2;
+fun unscrew_V : V;
+fun unscrew_V2 : V2;
+fun unscripted_A : A;
+fun unscrupulous_A : A;
+fun unscrupulously_Adv : Adv;
+fun unsealed_A : A;
+fun unseasonable_A : A;
+fun unseasonably_Adv : Adv;
+fun unseasoned_A : A;
+fun unseat_V2 : V2;
+fun unseaworthy_A : A;
+fun unsecured_A : A;
+fun unseeded_A : A;
+fun unseeing_A : A;
+fun unseemly_A : A;
+fun unseen_A : A;
+fun unseen_N : N;
+fun unselected_A : A;
+fun unselective_A : A;
+fun unselfconscious_A : A;
+fun unselfconsciously_Adv : Adv;
+fun unselfish_A : A;
+fun unselfishly_Adv : Adv;
+fun unselfishness_N : N;
+fun unsettle_V2 : V2;
+fun unsex_V2 : V2;
+fun unsexed_A : A;
+fun unshakable_A : A;
+fun unshakably_Adv : Adv;
+fun unshaved_A : A;
+fun unshaven_A : A;
+fun unsheathe_V2 : V2;
+fun unshielded_A : A;
+fun unshrinkable_A : A;
+fun unshrinking_A : A;
+fun unshuttered_A : A;
+fun unsighted_A : A;
+fun unsightliness_N : N;
+fun unsightly_A : A;
+fun unsigned_A : A;
+fun unsilenced_A : A;
+fun unsinkable_A : A;
+fun unskilled_A : A;
+fun unsmiling_A : A;
+fun unsociable_A : A;
+fun unsociably_Adv : Adv;
+fun unsocial_A : A;
+fun unsold_A : A;
+fun unsolicited_A : A;
+fun unsolved_A : A;
+fun unsophisticated_A : A;
+fun unsound_A : A;
+fun unsparing_A : A;
+fun unsparingly_Adv : Adv;
+fun unspeakable_A : A;
+fun unspeakably_Adv : Adv;
+fun unspecialized_A : A;
+fun unspecific_A : A;
+fun unspecifically_Adv : Adv;
+fun unspecified_A : A;
+fun unspectacular_A : A;
+fun unspoiled_A : A;
+fun unspoilt_A : A;
+fun unspoken_A : A;
+fun unsporting_A : A;
+fun unsportingly_Adv : Adv;
+fun unsportsmanlike_A : A;
+fun unspotted_A : A;
+fun unstable_A : A;
+fun unstartling_A : A;
+fun unstated_A : A;
+fun unstatesmanlike_A : A;
+fun unsteadily_Adv : Adv;
+fun unsteady_A : A;
+fun unstoppable_A : A;
+fun unstrained_A : A;
+fun unstressed_A : A;
+fun unstructured_A : A;
+fun unstrung_A : A;
+fun unstuck_A : A;
+fun unstudied_A : A;
+fun unsubtle_A : A;
+fun unsuccessful_A : A;
+fun unsuccessfully_Adv : Adv;
+fun unsuitability_N : N;
+fun unsuitable_A : A;
+fun unsuitably_Adv : Adv;
+fun unsuited_A : A;
+fun unsullied_A : A;
+fun unsung_A : A;
+fun unsupervised_A : A;
+fun unsupported_A : A;
+fun unsure_A : A;
+fun unsurpassed_A : A;
+fun unsuspected_A : A;
+fun unsuspecting_A : A;
+fun unsuspectingly_Adv : Adv;
+fun unsuspicious_A : A;
+fun unswayed_A : A;
+fun unsweetened_A : A;
+fun unswept_A : A;
+fun unswerving_A : A;
+fun unswervingly_Adv : Adv;
+fun unsyllabic_A : A;
+fun unsympathetic_A : A;
+fun unsympathetically_Adv : Adv;
+fun unsystematic_A : A;
+fun unsystematically_Adv : Adv;
+fun untainted_A : A;
+fun untamed_A : A;
+fun untapped_A : A;
+fun untarnished_A : A;
+fun untaxed_A : A;
+fun untenable_A : A;
+fun untenanted_A : A;
+fun untended_A : A;
+fun untested_A : A;
+fun untethered_A : A;
+fun unthinkable_A : A;
+fun unthinking_A : A;
+fun unthinkingly_Adv : Adv;
+fun unthought_of_A : A;
+fun untidily_Adv : Adv;
+fun untidiness_N : N;
+fun untidy_A : A;
+fun untie_V : V;
+fun untie_V2 : V2;
+fun untimely_A : A;
+fun untiring_A : A;
+fun untitled_A : A;
+fun untold_A : A;
+fun untouchable_A : A;
+fun untouchable_N : N;
+fun untouched_A : A;
+fun untoward_A : A;
+fun untrained_A : A;
+fun untrammelled_A : A;
+fun untranslatable_A : A;
+fun untreated_A : A;
+fun untried_A : A;
+fun untroubled_A : A;
+fun untrue_A : A;
+fun untruly_Adv : Adv;
+fun untrustworthy_A : A;
+fun untruth_N : N;
+fun untruthful_A : A;
+fun untruthfully_Adv : Adv;
+fun untucked_A : A;
+fun unturned_A : A;
+fun untutored_A : A;
+fun untwisted_A : A;
+fun untypical_A : A;
+fun untypically_Adv : Adv;
+fun unused_A : A;
+fun unusual_A : A;
+fun unusually_Adv : Adv;
+fun unutterable_A : A;
+fun unutterably_Adv : Adv;
+fun unvaried_A : A;
+fun unvarnished_A : A;
+fun unvarying_A : A;
+fun unveil_V : V;
+fun unveil_V2 : V2;
+fun unverified_A : A;
+fun unversed_A : A;
+fun unvigilant_A : A;
+fun unvoiced_A : A;
+fun unwanted_A : A;
+fun unwarily_Adv : Adv;
+fun unwarrantably_Adv : Adv;
+fun unwarranted_A : A;
+fun unwary_A : A;
+fun unwashed_A : A;
+fun unwavering_A : A;
+fun unwaveringly_Adv : Adv;
+fun unweaned_A : A;
+fun unwearied_A : A;
+fun unwed_A : A;
+fun unwelcome_A : A;
+fun unwell_A : A;
+fun unwholesome_A : A;
+fun unwieldiness_N : N;
+fun unwieldy_A : A;
+fun unwilling_A : A;
+fun unwillingly_Adv : Adv;
+fun unwillingness_N : N;
+fun unwind_V : V;
+fun unwind_V2 : V2;
+fun unwise_A : A;
+fun unwisely_Adv : Adv;
+fun unwitnessed_A : A;
+fun unwitting_A : A;
+fun unwittingly_Adv : Adv;
+fun unwonted_A : A;
+fun unwontedly_Adv : Adv;
+fun unworkable_A : A;
+fun unworkmanlike_A : A;
+fun unworldly_A : A;
+fun unworn_A : A;
+fun unworried_A : A;
+fun unworthily_Adv : Adv;
+fun unworthiness_N : N;
+fun unworthy_A : A;
+fun unwrap_V : V;
+fun unwrap_V2 : V2;
+fun unwritten_A : A;
+fun unyielding_A : A;
+fun unzip_V2 : V2;
+fun up_Adv : Adv;
+fun up_V : V;
+fun up_V2 : V2;
+fun up_and_coming_A : A;
+fun up_beat_N : N;
+fun up_holland_PN : PN;
+fun up_market_A : A;
+fun up_to_date_A : A;
+fun up_to_the_minute_A : A;
+fun upbraid_V2 : V2;
+fun upbraiding_N : N;
+fun upbringing_N : N;
+fun upcountry_A : A;
+fun upcountry_Adv : Adv;
+fun update_V2 : V2;
+fun upgrade_N : N;
+fun upgrade_V2 : V2;
+fun upheaval_N : N;
+fun uphill_A : A;
+fun uphill_Adv : Adv;
+fun uphold_V2 : V2;
+fun upholster_V2 : V2;
+fun upholsterer_N : N;
+fun upholstery_N : N;
+fun upkeep_N : N;
+fun upland_N : N;
+fun uplift_N : N;
+fun uplift_V2 : V2;
+fun upmost_A : A;
+fun upper_A : A;
+fun upper_N : N;
+fun uppercut_N : N;
+fun uppermost_A : A;
+fun uppermost_Adv : Adv;
+fun uppish_A : A;
+fun uppishly_Adv : Adv;
+fun uppishness_N : N;
+fun uppity_A : A;
+fun upright_A : A;
+fun upright_N : N;
+fun uprightly_Adv : Adv;
+fun uprightness_N : N;
+fun uprising_N : N;
+fun uproar_N : N;
+fun uproarious_A : A;
+fun uproariously_Adv : Adv;
+fun uproot_V2 : V2;
+fun upset_N : N;
+fun upset_V : V;
+fun upset_V2 : V2;
+fun upshot_N : N;
+fun upside_down_Adv : Adv;
+fun upstage_A : A;
+fun upstage_Adv : Adv;
+fun upstage_V2 : V2;
+fun upstairs_A : A;
+fun upstairs_Adv : Adv;
+fun upstanding_A : A;
+fun upstart_A : A;
+fun upstart_N : N;
+fun upstream_Adv : Adv;
+fun upsurge_N : N;
+fun uptake_N : N;
+fun uptight_A : A;
+fun upton_PN : PN;
+fun uptown_A : A;
+fun uptown_Adv : Adv;
+fun upturn_N : N;
+fun upturned_A : A;
+fun upward_A : A;
+fun upward_Adv : Adv;
+fun upwards_Adv : Adv;
+fun uranium_N : N;
+fun uranus_PN : PN;
+fun urban_A : A;
+fun urbane_A : A;
+fun urbanely_Adv : Adv;
+fun urbanity_N : N;
+fun urbanization_N : N;
+fun urbanize_V2 : V2;
+fun urchin_N : N;
+fun urdu_A : A;
+fun urdu_N : N;
+fun urge_N : N;
+fun urge_V2 : V2;
+fun urgency_N : N;
+fun urgent_A : A;
+fun urgently_Adv : Adv;
+fun urging_N : N;
+fun uric_A : A;
+fun urinal_N : N;
+fun urinary_A : A;
+fun urinate_V : V;
+fun urine_N : N;
+fun urn_N : N;
+fun ursula_PN : PN;
+fun uruguay_PN : PN;
+fun uruguayan_A : A;
+fun uruguayan_N : N;
+fun urumchi_PN : PN;
+fun us_PN : PN;
+fun usa_PN : PN;
+fun usable_A : A;
+fun usaf_N : N;
+fun usage_N : N;
+fun use_N : N;
+fun use_V2 : V2;
+fun used_A : A;
+fun useful_A : A;
+fun usefully_Adv : Adv;
+fun usefulness_N : N;
+fun useless_A : A;
+fun uselessly_Adv : Adv;
+fun uselessness_N : N;
+fun user_N : N;
+fun ushaw_moor_PN : PN;
+fun usher_N : N;
+fun usher_V2 : V2;
+fun usherette_N : N;
+fun usn_N : N;
+fun uss_N : N;
+fun ussr_N : N;
+fun usual_A : A;
+fun usually_Adv : Adv;
+fun usurer_N : N;
+fun usurious_A : A;
+fun usurp_V2 : V2;
+fun usurpation_N : N;
+fun usurper_N : N;
+fun usury_N : N;
+fun utah_PN : PN;
+fun utensil_N : N;
+fun uterine_A : A;
+fun uterus_N : N;
+fun utilitarian_A : A;
+fun utilitarian_N : N;
+fun utilitarianism_N : N;
+fun utility_N : N;
+fun utilizable_A : A;
+fun utilization_N : N;
+fun utilize_V2 : V2;
+fun utmost_A : A;
+fun utmost_N : N;
+fun utopia_N : N;
+fun utopian_A : A;
+fun utrecht_PN : PN;
+fun utter_A : A;
+fun utter_V2 : V2;
+fun utterance_N : N;
+fun utterly_Adv : Adv;
+fun uttermost_A : A;
+fun uttermost_N : N;
+fun uttoxeter_PN : PN;
+fun uvula_N : N;
+fun uvular_A : A;
+fun uxorious_A : A;
+fun uxoriously_Adv : Adv;
+fun uxoriousness_N : N;
+fun v_and_a_N : N;
+fun vac_N : N;
+fun vacancy_N : N;
+fun vacant_A : A;
+fun vacantly_Adv : Adv;
+fun vacate_V2 : V2;
+fun vacation_N : N;
+fun vacation_V : V;
+fun vacationist_N : N;
+fun vaccinate_V2 : V2;
+fun vaccination_N : N;
+fun vaccine_N : N;
+fun vacillate_V : V;
+fun vacillation_N : N;
+fun vacuity_N : N;
+fun vacuous_A : A;
+fun vacuously_Adv : Adv;
+fun vacuum_N : N;
+fun vade_mecum_N : N;
+fun vagabond_A : A;
+fun vagabond_N : N;
+fun vagary_N : N;
+fun vagina_N : N;
+fun vaginal_A : A;
+fun vagrancy_N : N;
+fun vagrant_A : A;
+fun vagrant_N : N;
+fun vague_A : A;
+fun vaguely_Adv : Adv;
+fun vagueness_N : N;
+fun vain_A : A;
+fun vainglorious_A : A;
+fun vainglory_N : N;
+fun vainly_Adv : Adv;
+fun valance_N : N;
+fun vale_N : N;
+fun valediction_N : N;
+fun valedictory_A : A;
+fun valence_N : N;
+fun valencia_PN : PN;
+fun valenciennes_PN : PN;
+fun valency_N : N;
+fun valentine_N : N;
+fun valerian_N : N;
+fun valet_N : N;
+fun valet_V2 : V2;
+fun valetudinarian_A : A;
+fun valetudinarian_N : N;
+fun valiant_A : A;
+fun valiantly_Adv : Adv;
+fun valid_A : A;
+fun validate_V2 : V2;
+fun validity_N : N;
+fun validly_Adv : Adv;
+fun valise_N : N;
+fun valladolid_PN : PN;
+fun valley_N : N;
+fun valorous_A : A;
+fun valour_N : N;
+fun valuable_A : A;
+fun valuable_N : N;
+fun valuation_N : N;
+fun value_N : N;
+fun value_V2 : V2;
+fun value_added_A : A;
+fun valueless_A : A;
+fun valuer_N : N;
+fun valve_N : N;
+fun valvular_A : A;
+fun vamoose_V : V;
+fun vamp_N : N;
+fun vamp_V : V;
+fun vamp_V2 : V2;
+fun vampire_N : N;
+fun van_N : N;
+fun vancouver_PN : PN;
+fun vandal_N : N;
+fun vandalism_N : N;
+fun vane_N : N;
+fun vanessa_PN : PN;
+fun vanguard_N : N;
+fun vanilla_N : N;
+fun vanish_V : V;
+fun vanity_N : N;
+fun vanquish_V2 : V2;
+fun vantage_N : N;
+fun vantage_point_N : N;
+fun vapid_A : A;
+fun vapidity_N : N;
+fun vapidly_Adv : Adv;
+fun vapidness_N : N;
+fun vaporization_N : N;
+fun vaporize_V : V;
+fun vaporize_V2 : V2;
+fun vaporous_A : A;
+fun vapour_N : N;
+fun vapour_bath_N : N;
+fun varanasi_PN : PN;
+fun variability_N : N;
+fun variable_A : A;
+fun variable_N : N;
+fun variableness_N : N;
+fun variably_Adv : Adv;
+fun variance_N : N;
+fun variant_A : A;
+fun variant_N : N;
+fun variation_N : N;
+fun varicoloured_A : A;
+fun varicose_A : A;
+fun varied_A : A;
+fun variegated_A : A;
+fun variegation_N : N;
+fun variety_N : N;
+fun variform_A : A;
+fun variorum_A : A;
+fun various_A : A;
+fun variously_Adv : Adv;
+fun varlet_N : N;
+fun varnish_N : N;
+fun varnish_V2 : V2;
+fun varsity_N : N;
+fun vary_V : V;
+fun vary_V2 : V2;
+fun vascular_A : A;
+fun vase_N : N;
+fun vasectomy_N : N;
+fun vaseline_N : N;
+fun vassal_N : N;
+fun vassalage_N : N;
+fun vast_A : A;
+fun vasteras_PN : PN;
+fun vastly_Adv : Adv;
+fun vastness_N : N;
+fun vat_N : N;
+fun vatican_N : N;
+fun vaudeville_N : N;
+fun vault_N : N;
+fun vault_V : V;
+fun vault_V2 : V2;
+fun vaulted_A : A;
+fun vaulter_N : N;
+fun vaulting_horse_N : N;
+fun vaunt_N : N;
+fun vaunt_V : V;
+fun vaunt_V2 : V2;
+fun vaunter_N : N;
+fun vauntingly_Adv : Adv;
+fun vc_N : N;
+fun vd_N : N;
+fun veal_N : N;
+fun vector_N : N;
+fun veer_V : V;
+fun vegetable_A : A;
+fun vegetable_N : N;
+fun vegetarian_N : N;
+fun vegetate_V : V;
+fun vegetation_N : N;
+fun vehemence_N : N;
+fun vehement_A : A;
+fun vehemently_Adv : Adv;
+fun vehicle_N : N;
+fun vehicular_A : A;
+fun veil_N : N;
+fun veil_V2 : V2;
+fun veiling_N : N;
+fun vein_N : N;
+fun veined_A : A;
+fun veld_N : N;
+fun vellum_N : N;
+fun velocipede_N : N;
+fun velocity_N : N;
+fun velour_N : N;
+fun velvet_N : N;
+fun velveteen_N : N;
+fun velvety_A : A;
+fun venal_A : A;
+fun venality_N : N;
+fun venally_Adv : Adv;
+fun vend_V2 : V2;
+fun vendee_N : N;
+fun vender_N : N;
+fun vendetta_N : N;
+fun vendor_N : N;
+fun veneer_N : N;
+fun veneer_V2 : V2;
+fun venerable_A : A;
+fun venerate_V2 : V2;
+fun veneration_N : N;
+fun venereal_A : A;
+fun venetian_A : A;
+fun venezia_PN : PN;
+fun venezuela_PN : PN;
+fun venezuelan_A : A;
+fun venezuelan_N : N;
+fun vengeance_N : N;
+fun vengeful_A : A;
+fun venial_A : A;
+fun venice_PN : PN;
+fun venison_N : N;
+fun venom_N : N;
+fun venomed_A : A;
+fun venomous_A : A;
+fun venomously_Adv : Adv;
+fun venous_A : A;
+fun vent_N : N;
+fun vent_V2 : V2;
+fun vent_hole_N : N;
+fun ventilate_V2 : V2;
+fun ventilation_N : N;
+fun ventilator_N : N;
+fun ventnor_PN : PN;
+fun ventral_A : A;
+fun ventricle_N : N;
+fun ventricular_A : A;
+fun ventriloquism_N : N;
+fun ventriloquist_N : N;
+fun venture_N : N;
+fun venture_V : V;
+fun venture_V2 : V2;
+fun venturesome_A : A;
+fun venturous_A : A;
+fun venue_N : N;
+fun venus_PN : PN;
+fun vera_PN : PN;
+fun veracious_A : A;
+fun veraciously_Adv : Adv;
+fun veracity_N : N;
+fun veranda_N : N;
+fun verandah_N : N;
+fun verb_N : N;
+fun verbal_A : A;
+fun verbalize_V2 : V2;
+fun verbally_Adv : Adv;
+fun verbatim_A : A;
+fun verbatim_Adv : Adv;
+fun verbena_N : N;
+fun verbiage_N : N;
+fun verbose_A : A;
+fun verbosely_Adv : Adv;
+fun verboseness_N : N;
+fun verbosity_N : N;
+fun verdancy_N : N;
+fun verdant_A : A;
+fun verdict_N : N;
+fun verdigris_N : N;
+fun verdure_N : N;
+fun verey_A : A;
+fun verge_N : N;
+fun verge_V : V;
+fun verger_N : N;
+fun verifiable_A : A;
+fun verification_N : N;
+fun verify_V2 : V2;
+fun verily_Adv : Adv;
+fun verisimilitude_N : N;
+fun veritable_A : A;
+fun verity_N : N;
+fun vermicelli_N : N;
+fun vermiform_A : A;
+fun vermilion_A : A;
+fun vermilion_N : N;
+fun vermin_N : N;
+fun verminous_A : A;
+fun vermont_PN : PN;
+fun vermouth_N : N;
+fun vernacular_A : A;
+fun vernacular_N : N;
+fun vernal_A : A;
+fun vernon_PN : PN;
+fun verona_PN : PN;
+fun veronica_N : N;
+fun veronica_PN : PN;
+fun verruca_N : N;
+fun versatile_A : A;
+fun versatility_N : N;
+fun verse_N : N;
+fun versed_A : A;
+fun versification_N : N;
+fun versifier_N : N;
+fun versify_V : V;
+fun versify_V2 : V2;
+fun version_N : N;
+fun verso_N : N;
+fun vertebra_N : N;
+fun vertebrate_A : A;
+fun vertebrate_N : N;
+fun vertex_N : N;
+fun vertical_A : A;
+fun vertical_N : N;
+fun vertically_Adv : Adv;
+fun vertiginous_A : A;
+fun vertigo_N : N;
+fun verve_N : N;
+fun very_A : A;
+fun very_Adv : Adv;
+fun vesicle_N : N;
+fun vesicular_A : A;
+fun vessel_N : N;
+fun vest_N : N;
+fun vest_V : V;
+fun vest_V2 : V2;
+fun vestal_A : A;
+fun vestal_N : N;
+fun vestibule_N : N;
+fun vestige_N : N;
+fun vestigial_A : A;
+fun vestment_N : N;
+fun vestry_N : N;
+fun vestryman_N : N;
+fun vesture_N : N;
+fun vesture_V2 : V2;
+fun vet_N : N;
+fun vet_V2 : V2;
+fun vetch_N : N;
+fun veteran_N : N;
+fun veterinary_A : A;
+fun veto_N : N;
+fun veto_V2 : V2;
+fun vex_V2 : V2;
+fun vexation_N : N;
+fun vexatious_A : A;
+fun vhf_PN : PN;
+fun via_media_N : N;
+fun viability_N : N;
+fun viable_A : A;
+fun viaduct_N : N;
+fun vial_N : N;
+fun vibrant_A : A;
+fun vibraphone_N : N;
+fun vibrate_V : V;
+fun vibrate_V2 : V2;
+fun vibration_N : N;
+fun vibrato_N : N;
+fun vibrator_N : N;
+fun vic_PN : PN;
+fun vicar_N : N;
+fun vicarage_N : N;
+fun vicarious_A : A;
+fun vicariously_Adv : Adv;
+fun vice_N : N;
+fun vice_versa_Adv : Adv;
+fun vicenza_PN : PN;
+fun viceregal_A : A;
+fun vicereine_N : N;
+fun viceroy_N : N;
+fun vicinity_N : N;
+fun vicious_A : A;
+fun viciously_Adv : Adv;
+fun viciousness_N : N;
+fun vicissitude_N : N;
+fun vicky_PN : PN;
+fun victim_N : N;
+fun victimization_N : N;
+fun victimize_V2 : V2;
+fun victor_N : N;
+fun victor_PN : PN;
+fun victoria_N : N;
+fun victoria_PN : PN;
+fun victorian_A : A;
+fun victorian_N : N;
+fun victoriana_N : N;
+fun victorious_A : A;
+fun victoriously_Adv : Adv;
+fun victory_N : N;
+fun victual_N : N;
+fun victual_V : V;
+fun victual_V2 : V2;
+fun victualler_N : N;
+fun vicuna_N : N;
+fun videlicet_Adv : Adv;
+fun video_N : N;
+fun videotape_N : N;
+fun videotape_V2 : V2;
+fun vie_V : V;
+fun vienna_PN : PN;
+fun vietnam_PN : PN;
+fun vietnamese_A : A;
+fun vietnamese_N : N;
+fun view_N : N;
+fun view_V2 : V2;
+fun viewer_N : N;
+fun viewfinder_N : N;
+fun viewless_A : A;
+fun viewpark_PN : PN;
+fun viewpoint_N : N;
+fun vigil_N : N;
+fun vigilance_N : N;
+fun vigilant_A : A;
+fun vigilante_N : N;
+fun vigilantly_Adv : Adv;
+fun vignette_N : N;
+fun vigo_PN : PN;
+fun vigorous_A : A;
+fun vigorously_Adv : Adv;
+fun vigour_N : N;
+fun viking_N : N;
+fun vile_A : A;
+fun vilely_Adv : Adv;
+fun vileness_N : N;
+fun vilification_N : N;
+fun vilify_V2 : V2;
+fun villa_N : N;
+fun village_N : N;
+fun villager_N : N;
+fun villain_N : N;
+fun villainess_N : N;
+fun villainous_A : A;
+fun villainy_N : N;
+fun villein_N : N;
+fun villeinage_N : N;
+fun vim_N : N;
+fun vinaigrette_N : N;
+fun vince_PN : PN;
+fun vincent_PN : PN;
+fun vindicate_V2 : V2;
+fun vindication_N : N;
+fun vindictive_A : A;
+fun vindictively_Adv : Adv;
+fun vindictiveness_N : N;
+fun vine_N : N;
+fun vinegar_N : N;
+fun vinegary_A : A;
+fun vinery_N : N;
+fun vineyard_N : N;
+fun vino_N : N;
+fun vinous_A : A;
+fun vintage_N : N;
+fun vintner_N : N;
+fun vinyl_N : N;
+fun viol_N : N;
+fun viola_N : N;
+fun viola_PN : PN;
+fun violate_V2 : V2;
+fun violation_N : N;
+fun violence_N : N;
+fun violent_A : A;
+fun violently_Adv : Adv;
+fun violet_N : N;
+fun violet_PN : PN;
+fun violin_N : N;
+fun violinist_N : N;
+fun vip_N : N;
+fun viper_N : N;
+fun vips_N : N;
+fun virago_N : N;
+fun virgin_A : A;
+fun virgin_N : N;
+fun virginal_A : A;
+fun virginal_N : N;
+fun virginia_N : N;
+fun virginia_PN : PN;
+fun virginia_water_PN : PN;
+fun virginity_N : N;
+fun virgo_PN : PN;
+fun virgule_N : N;
+fun virile_A : A;
+fun virility_N : N;
+fun virology_N : N;
+fun virtu_N : N;
+fun virtual_A : A;
+fun virtually_Adv : Adv;
+fun virtue_N : N;
+fun virtuosity_N : N;
+fun virtuoso_N : N;
+fun virtuous_A : A;
+fun virtuously_Adv : Adv;
+fun virulence_N : N;
+fun virulent_A : A;
+fun virulently_Adv : Adv;
+fun virus_N : N;
+fun vis_a_vis_Adv : Adv;
+fun visa_N : N;
+fun visa_V2 : V2;
+fun visage_N : N;
+fun visaged_A : A;
+fun visceral_A : A;
+fun viscid_A : A;
+fun viscosity_N : N;
+fun viscount_N : N;
+fun viscountcy_N : N;
+fun viscountess_N : N;
+fun viscous_A : A;
+fun visibility_N : N;
+fun visible_A : A;
+fun visibly_Adv : Adv;
+fun vision_N : N;
+fun visionary_A : A;
+fun visionary_N : N;
+fun visit_N : N;
+fun visit_V : V;
+fun visit_V2 : V2;
+fun visitant_N : N;
+fun visitation_N : N;
+fun visiting_N : N;
+fun visitor_N : N;
+fun visor_N : N;
+fun vista_N : N;
+fun visual_A : A;
+fun visualization_N : N;
+fun visualize_V2 : V2;
+fun visually_Adv : Adv;
+fun vital_A : A;
+fun vitalism_N : N;
+fun vitalist_N : N;
+fun vitality_N : N;
+fun vitalize_V2 : V2;
+fun vitally_Adv : Adv;
+fun vitamin_N : N;
+fun vitiate_V2 : V2;
+fun vitoria_PN : PN;
+fun vitreous_A : A;
+fun vitrify_V : V;
+fun vitrify_V2 : V2;
+fun vitriol_N : N;
+fun vitriolic_A : A;
+fun vituperate_V2 : V2;
+fun vituperation_N : N;
+fun vituperative_A : A;
+fun viv_PN : PN;
+fun viva_N : N;
+fun viva_voce_A : A;
+fun viva_voce_Adv : Adv;
+fun viva_voce_N : N;
+fun vivace_Adv : Adv;
+fun vivacious_A : A;
+fun vivaciously_Adv : Adv;
+fun vivacity_N : N;
+fun vivian_PN : PN;
+fun vivid_A : A;
+fun vividly_Adv : Adv;
+fun vividness_N : N;
+fun vivien_PN : PN;
+fun vivienne_PN : PN;
+fun viviparous_A : A;
+fun vivisect_V2 : V2;
+fun vivisection_N : N;
+fun vivisectionist_N : N;
+fun vixen_N : N;
+fun vixenish_A : A;
+fun viz_PN : PN;
+fun vizier_N : N;
+fun vocabulary_N : N;
+fun vocal_A : A;
+fun vocalist_N : N;
+fun vocalize_V2 : V2;
+fun vocally_Adv : Adv;
+fun vocation_N : N;
+fun vocational_A : A;
+fun vocative_A : A;
+fun vocative_N : N;
+fun vociferate_V : V;
+fun vociferate_V2 : V2;
+fun vociferation_N : N;
+fun vociferous_A : A;
+fun vodka_N : N;
+fun vogue_N : N;
+fun voice_N : N;
+fun voice_V2 : V2;
+fun voiced_A : A;
+fun voiceless_A : A;
+fun void_A : A;
+fun void_N : N;
+fun void_V2 : V2;
+fun voile_N : N;
+fun vol_N : N;
+fun volatile_A : A;
+fun volatility_N : N;
+fun volcanic_A : A;
+fun volcano_N : N;
+fun vole_N : N;
+fun volgograd_PN : PN;
+fun volition_N : N;
+fun volitional_A : A;
+fun volley_N : N;
+fun volley_V : V;
+fun volley_V2 : V2;
+fun volleyball_N : N;
+fun vols_N : N;
+fun volt_N : N;
+fun voltage_N : N;
+fun volte_face_N : N;
+fun volubility_N : N;
+fun voluble_A : A;
+fun volubly_Adv : Adv;
+fun volume_N : N;
+fun voluminous_A : A;
+fun voluntarily_Adv : Adv;
+fun voluntary_A : A;
+fun voluntary_N : N;
+fun volunteer_N : N;
+fun volunteer_V : V;
+fun volunteer_V2 : V2;
+fun voluptuary_N : N;
+fun voluptuous_A : A;
+fun voluptuously_Adv : Adv;
+fun voluptuousness_N : N;
+fun volute_N : N;
+fun voluted_A : A;
+fun vomit_N : N;
+fun vomit_V : V;
+fun vomit_V2 : V2;
+fun voodoo_N : N;
+fun voodooism_N : N;
+fun voracious_A : A;
+fun voraciously_Adv : Adv;
+fun voracity_N : N;
+fun voronezh_PN : PN;
+fun vortex_N : N;
+fun votary_N : N;
+fun vote_N : N;
+fun vote_V : V;
+fun vote_V2 : V2;
+fun voteless_A : A;
+fun voter_N : N;
+fun votive_A : A;
+fun vouch_V : V;
+fun voucher_N : N;
+fun vouchsafe_V2 : V2;
+fun vow_N : N;
+fun vow_V2 : V2;
+fun vowel_N : N;
+fun vox_N : N;
+fun vox_populi_N : N;
+fun voyage_N : N;
+fun voyage_V : V;
+fun voyager_N : N;
+fun voyeur_N : N;
+fun voyeurism_N : N;
+fun voyeuristic_A : A;
+fun voyeuristically_Adv : Adv;
+fun vp_N : N;
+fun vs_PN : PN;
+fun vso_PN : PN;
+fun vulcanite_N : N;
+fun vulcanization_N : N;
+fun vulcanize_V2 : V2;
+fun vulgar_A : A;
+fun vulgarian_N : N;
+fun vulgarism_N : N;
+fun vulgarity_N : N;
+fun vulgarization_N : N;
+fun vulgarize_V2 : V2;
+fun vulgarly_Adv : Adv;
+fun vulgate_N : N;
+fun vulnerability_N : N;
+fun vulnerable_A : A;
+fun vulpine_A : A;
+fun vulture_N : N;
+fun vulva_N : N;
+fun wad_N : N;
+fun wad_V2 : V2;
+fun wadding_N : N;
+fun waddle_N : N;
+fun waddle_V : V;
+fun wade_V : V;
+fun wade_V2 : V2;
+fun wader_N : N;
+fun wadi_N : N;
+fun wafer_N : N;
+fun waffle_N : N;
+fun waffle_V : V;
+fun waft_N : N;
+fun waft_V2 : V2;
+fun wag_N : N;
+fun wag_V : V;
+fun wag_V2 : V2;
+fun wage_N : N;
+fun wage_V2 : V2;
+fun wage_claim_N : N;
+fun wage_earner_N : N;
+fun wage_freeze_N : N;
+fun wager_N : N;
+fun wager_V : V;
+fun wager_V2 : V2;
+fun waggery_N : N;
+fun waggish_A : A;
+fun waggishly_Adv : Adv;
+fun waggishness_N : N;
+fun waggle_V : V;
+fun waggle_V2 : V2;
+fun waggon_N : N;
+fun waggoner_N : N;
+fun wagon_lit_N : N;
+fun wagtail_N : N;
+fun waif_N : N;
+fun wail_N : N;
+fun wail_V : V;
+fun wail_V2 : V2;
+fun wain_N : N;
+fun wainscot_N : N;
+fun wainscoted_A : A;
+fun waist_N : N;
+fun waist_deep_A : A;
+fun waist_deep_Adv : Adv;
+fun waist_high_A : A;
+fun waist_high_Adv : Adv;
+fun waistband_N : N;
+fun waistcoat_N : N;
+fun waistline_N : N;
+fun wait_N : N;
+fun wait_V : V;
+fun wait_V2 : V2;
+fun waiter_N : N;
+fun waiting_list_N : N;
+fun waiting_room_N : N;
+fun waitress_N : N;
+fun waive_V2 : V2;
+fun waiver_N : N;
+fun wake_N : N;
+fun wake_V : V;
+fun wake_V2 : V2;
+fun wakefield_PN : PN;
+fun wakeful_A : A;
+fun wakefulness_N : N;
+fun waken_V : V;
+fun waken_V2 : V2;
+fun waking_A : A;
+fun wale_N : N;
+fun wales_PN : PN;
+fun walk_N : N;
+fun walk_V : V;
+fun walk_V2 : V2;
+fun walkabout_N : N;
+fun walkaway_N : N;
+fun walker_N : N;
+fun walkie_talkie_N : N;
+fun walking_N : N;
+fun walkout_N : N;
+fun walkover_N : N;
+fun wall_N : N;
+fun wall_V2 : V2;
+fun wall_eyed_A : A;
+fun wall_painting_N : N;
+fun wall_street_PN : PN;
+fun wallaby_N : N;
+fun wallace_PN : PN;
+fun wallah_N : N;
+fun wallasey_PN : PN;
+fun wallet_N : N;
+fun wallflower_N : N;
+fun wallingford_PN : PN;
+fun wallop_N : N;
+fun wallop_V2 : V2;
+fun walloping_A : A;
+fun wallow_N : N;
+fun wallow_V : V;
+fun wallpaper_N : N;
+fun wallsend_PN : PN;
+fun wally_PN : PN;
+fun walnut_N : N;
+fun walrus_N : N;
+fun walsall_PN : PN;
+fun walsham_PN : PN;
+fun walter_PN : PN;
+fun waltham_forest_PN : PN;
+fun walton_PN : PN;
+fun waltz_N : N;
+fun waltz_V : V;
+fun waltz_V2 : V2;
+fun wampum_N : N;
+fun wan_A : A;
+fun wand_N : N;
+fun wander_V : V;
+fun wander_V2 : V2;
+fun wanderer_N : N;
+fun wanderlust_N : N;
+fun wandsworth_PN : PN;
+fun wane_N : N;
+fun wane_V : V;
+fun wangle_N : N;
+fun wangle_V2 : V2;
+fun wank_N : N;
+fun wank_V : V;
+fun wanly_Adv : Adv;
+fun wanness_N : N;
+fun want_N : N;
+fun want_V : V;
+fun want_V2 : V2;
+fun want_ad_N : N;
+fun wantage_PN : PN;
+fun wanton_A : A;
+fun wanton_N : N;
+fun wanton_V : V;
+fun wantonly_Adv : Adv;
+fun wantonness_N : N;
+fun war_N : N;
+fun war_V : V;
+fun war_baby_N : N;
+fun war_bride_N : N;
+fun war_cloud_N : N;
+fun war_cry_N : N;
+fun war_dance_N : N;
+fun war_god_N : N;
+fun war_torn_A : A;
+fun war_widow_N : N;
+fun warble_N : N;
+fun warble_V : V;
+fun warble_V2 : V2;
+fun warbler_N : N;
+fun ward_N : N;
+fun ward_V2 : V2;
+fun warden_N : N;
+fun warder_N : N;
+fun wardress_N : N;
+fun wardrobe_N : N;
+fun wardroom_N : N;
+fun ware_N : N;
+fun ware_PN : PN;
+fun ware_V2 : V2;
+fun warehouse_N : N;
+fun warehousing_N : N;
+fun warfare_N : N;
+fun warhead_N : N;
+fun warhorse_N : N;
+fun warily_Adv : Adv;
+fun wariness_N : N;
+fun warley_PN : PN;
+fun warlike_A : A;
+fun warlord_N : N;
+fun warm_A : A;
+fun warm_V : V;
+fun warm_V2 : V2;
+fun warm_blooded_A : A;
+fun warm_hearted_A : A;
+fun warmer_N : N;
+fun warming_pan_N : N;
+fun warminster_PN : PN;
+fun warmly_Adv : Adv;
+fun warmonger_N : N;
+fun warmth_N : N;
+fun warn_V2 : V2;
+fun warning_A : A;
+fun warning_N : N;
+fun warp_N : N;
+fun warp_V : V;
+fun warp_V2 : V2;
+fun warpaint_N : N;
+fun warpath_N : N;
+fun warrant_N : N;
+fun warrant_V2 : V2;
+fun warrantee_N : N;
+fun warrantor_N : N;
+fun warranty_N : N;
+fun warren_N : N;
+fun warrington_PN : PN;
+fun warrior_N : N;
+fun warsaw_PN : PN;
+fun warship_N : N;
+fun warsop_PN : PN;
+fun wart_N : N;
+fun warthog_N : N;
+fun wartime_N : N;
+fun warwick_PN : PN;
+fun warwickshire_PN : PN;
+fun wary_A : A;
+fun wash_N : N;
+fun wash_V : V;
+fun wash_V2 : V2;
+fun wash_drawing_N : N;
+fun wash_hand_basin_N : N;
+fun wash_hand_stand_N : N;
+fun wash_house_N : N;
+fun wash_leather_N : N;
+fun washable_A : A;
+fun washbasin_N : N;
+fun washboard_N : N;
+fun washbowl_N : N;
+fun washcloth_N : N;
+fun washday_N : N;
+fun washer_N : N;
+fun washerwoman_N : N;
+fun washing_N : N;
+fun washing_day_N : N;
+fun washing_machine_N : N;
+fun washing_up_N : N;
+fun washington_PN : PN;
+fun washington_dc_PN : PN;
+fun washout_N : N;
+fun washroom_N : N;
+fun washstand_N : N;
+fun washtub_N : N;
+fun washy_A : A;
+fun wasp_N : N;
+fun wasp_waisted_A : A;
+fun waspish_A : A;
+fun wassail_N : N;
+fun wastage_N : N;
+fun waste_A : A;
+fun waste_N : N;
+fun waste_V : V;
+fun waste_V2 : V2;
+fun waste_paper_basket_N : N;
+fun waste_pipe_N : N;
+fun wastebasket_N : N;
+fun wastebin_N : N;
+fun wasteful_A : A;
+fun wastefully_Adv : Adv;
+fun wasteland_N : N;
+fun waster_N : N;
+fun wastrel_N : N;
+fun watch_N : N;
+fun watch_V : V;
+fun watch_V2 : V2;
+fun watch_chain_N : N;
+fun watch_glass_N : N;
+fun watch_guard_N : N;
+fun watch_key_N : N;
+fun watchdog_N : N;
+fun watcher_N : N;
+fun watchful_A : A;
+fun watchfully_Adv : Adv;
+fun watchfulness_N : N;
+fun watchmaker_N : N;
+fun watchman_N : N;
+fun watchtower_N : N;
+fun watchword_N : N;
+fun water_N : N;
+fun water_V : V;
+fun water_V2 : V2;
+fun water_biscuit_N : N;
+fun water_blister_N : N;
+fun water_bottle_N : N;
+fun water_buffalo_N : N;
+fun water_butt_N : N;
+fun water_cart_N : N;
+fun water_closet_N : N;
+fun water_finder_N : N;
+fun water_glass_N : N;
+fun water_hole_N : N;
+fun water_ice_N : N;
+fun water_jacket_N : N;
+fun water_level_N : N;
+fun water_lily_N : N;
+fun water_line_N : N;
+fun water_main_N : N;
+fun water_nymph_N : N;
+fun water_polo_N : N;
+fun water_power_N : N;
+fun water_rat_N : N;
+fun water_rate_N : N;
+fun water_skiing_N : N;
+fun water_skin_N : N;
+fun water_softener_N : N;
+fun water_spaniel_N : N;
+fun water_supply_N : N;
+fun water_tower_N : N;
+fun water_vole_N : N;
+fun water_waggon_N : N;
+fun water_wagon_N : N;
+fun water_wheel_N : N;
+fun water_worn_A : A;
+fun waterbird_N : N;
+fun waterborne_A : A;
+fun watercannon_N : N;
+fun waterchute_N : N;
+fun watercolour_N : N;
+fun watercolourist_N : N;
+fun watercourse_N : N;
+fun watercress_N : N;
+fun waterfall_N : N;
+fun waterford_PN : PN;
+fun waterfowl_N : N;
+fun waterfront_N : N;
+fun waterhen_N : N;
+fun waterhyacinth_N : N;
+fun watering_can_N : N;
+fun watering_cart_N : N;
+fun waterless_A : A;
+fun waterlogged_A : A;
+fun waterloo_PN : PN;
+fun waterman_N : N;
+fun watermark_N : N;
+fun watermelon_N : N;
+fun watermill_N : N;
+fun waterproof_A : A;
+fun waterproof_N : N;
+fun waterproof_V2 : V2;
+fun watershed_N : N;
+fun waterside_N : N;
+fun waterspout_N : N;
+fun watertable_N : N;
+fun watertight_A : A;
+fun waterway_N : N;
+fun waterworks_N : N;
+fun watery_A : A;
+fun watford_PN : PN;
+fun watt_N : N;
+fun wattage_N : N;
+fun wattle_N : N;
+fun wave_N : N;
+fun wave_V : V;
+fun wave_V2 : V2;
+fun wavelength_N : N;
+fun waver_V : V;
+fun waverer_N : N;
+fun wavy_A : A;
+fun wax_N : N;
+fun wax_V : V;
+fun wax_V2 : V2;
+fun wax_chandler_N : N;
+fun wax_paper_N : N;
+fun waxen_A : A;
+fun waxwork_N : N;
+fun waxy_A : A;
+fun way_Adv : Adv;
+fun way_N : N;
+fun way_out_A : A;
+fun waybill_N : N;
+fun wayfarer_N : N;
+fun wayfaring_A : A;
+fun waylay_V2 : V2;
+fun wayne_PN : PN;
+fun wayside_N : N;
+fun wayward_A : A;
+fun wc_N : N;
+fun wcs_N : N;
+fun weak_A : A;
+fun weak_kneed_A : A;
+fun weaken_V : V;
+fun weaken_V2 : V2;
+fun weakling_N : N;
+fun weakly_A : A;
+fun weakly_Adv : Adv;
+fun weakness_N : N;
+fun weal_N : N;
+fun weald_N : N;
+fun wealth_N : N;
+fun wealthily_Adv : Adv;
+fun wealthy_A : A;
+fun wean_V2 : V2;
+fun weapon_N : N;
+fun weaponless_A : A;
+fun wear_N : N;
+fun wear_PN : PN;
+fun wear_V : V;
+fun wear_V2 : V2;
+fun wearable_A : A;
+fun wearer_N : N;
+fun wearily_Adv : Adv;
+fun weariness_N : N;
+fun wearing_A : A;
+fun wearisome_A : A;
+fun weary_A : A;
+fun weary_V : V;
+fun weary_V2 : V2;
+fun weasel_N : N;
+fun weather_N : N;
+fun weather_V : V;
+fun weather_V2 : V2;
+fun weather_beaten_A : A;
+fun weather_bound_A : A;
+fun weather_bureau_N : N;
+fun weather_chart_N : N;
+fun weather_glass_N : N;
+fun weather_map_N : N;
+fun weather_ship_N : N;
+fun weather_station_N : N;
+fun weather_vane_N : N;
+fun weatherboarding_N : N;
+fun weathercock_N : N;
+fun weatherman_N : N;
+fun weatherproof_A : A;
+fun weave_N : N;
+fun weave_V : V;
+fun weave_V2 : V2;
+fun weaver_N : N;
+fun weaverbird_N : N;
+fun web_N : N;
+fun web_footed_A : A;
+fun web_toed_A : A;
+fun webbed_A : A;
+fun webbing_N : N;
+fun wed_PN : PN;
+fun wed_V : V;
+fun wed_V2 : V2;
+fun wedding_N : N;
+fun wedding_cake_N : N;
+fun wedding_ring_N : N;
+fun wedge_N : N;
+fun wedge_V2 : V2;
+fun wedlock_N : N;
+fun wednesday_N : N;
+fun wednesday_PN : PN;
+fun wee_A : A;
+fun wee_N : N;
+fun wee_V : V;
+fun wee_wee_N : N;
+fun weed_N : N;
+fun weed_V : V;
+fun weed_V2 : V2;
+fun weedkiller_N : N;
+fun weedy_A : A;
+fun week_N : N;
+fun weekday_N : N;
+fun weekend_N : N;
+fun weekend_V : V;
+fun weekender_N : N;
+fun weekly_A : A;
+fun weekly_Adv : Adv;
+fun weekly_N : N;
+fun weeny_A : A;
+fun weep_V : V;
+fun weep_V2 : V2;
+fun weeping_A : A;
+fun weevil_N : N;
+fun weft_N : N;
+fun weigh_V : V;
+fun weigh_V2 : V2;
+fun weighbridge_N : N;
+fun weighing_machine_N : N;
+fun weight_N : N;
+fun weight_V2 : V2;
+fun weightily_Adv : Adv;
+fun weightiness_N : N;
+fun weightless_A : A;
+fun weightlessness_N : N;
+fun weightlifting_N : N;
+fun weighty_A : A;
+fun weir_N : N;
+fun weird_A : A;
+fun weirdie_N : N;
+fun weirdly_Adv : Adv;
+fun weirdness_N : N;
+fun welcome_A : A;
+fun welcome_N : N;
+fun welcome_V2 : V2;
+fun weld_N : N;
+fun weld_V : V;
+fun weld_V2 : V2;
+fun welder_N : N;
+fun welfare_N : N;
+fun welkin_N : N;
+fun well_A : A;
+fun well_Adv : Adv;
+fun well_N : N;
+fun well_V : V;
+fun well_adjusted_A : A;
+fun well_advised_A : A;
+fun well_appointed_A : A;
+fun well_balanced_A : A;
+fun well_behaved_A : A;
+fun well_being_N : N;
+fun well_born_A : A;
+fun well_bred_A : A;
+fun well_conducted_A : A;
+fun well_connected_A : A;
+fun well_disposed_A : A;
+fun well_doer_N : N;
+fun well_doing_N : N;
+fun well_favoured_A : A;
+fun well_found_A : A;
+fun well_founded_A : A;
+fun well_groomed_A : A;
+fun well_grounded_A : A;
+fun well_heeled_A : A;
+fun well_informed_A : A;
+fun well_intentioned_A : A;
+fun well_knit_A : A;
+fun well_known_A : A;
+fun well_lined_A : A;
+fun well_marked_A : A;
+fun well_meaning_A : A;
+fun well_meant_A : A;
+fun well_nigh_Adv : Adv;
+fun well_read_A : A;
+fun well_rounded_A : A;
+fun well_set_A : A;
+fun well_shaven_A : A;
+fun well_spoken_A : A;
+fun well_timed_A : A;
+fun well_to_do_A : A;
+fun well_tried_A : A;
+fun well_turned_A : A;
+fun well_water_N : N;
+fun well_wisher_N : N;
+fun well_worn_A : A;
+fun wellhead_N : N;
+fun wellingborough_PN : PN;
+fun wellington_N : N;
+fun wellington_PN : PN;
+fun wells_PN : PN;
+fun welsh_A : A;
+fun welsh_N : N;
+fun welsh_V : V;
+fun welsher_N : N;
+fun welshman_N : N;
+fun welshpool_PN : PN;
+fun welt_N : N;
+fun welter_A : A;
+fun welter_N : N;
+fun welter_V : V;
+fun welterweight_N : N;
+fun welwyn_PN : PN;
+fun welwyn_garden_city_PN : PN;
+fun wen_N : N;
+fun wench_N : N;
+fun wench_V : V;
+fun wend_V2 : V2;
+fun wendover_PN : PN;
+fun wendy_PN : PN;
+fun werewolf_N : N;
+fun wesleyan_A : A;
+fun wesleyan_N : N;
+fun west_Adv : Adv;
+fun west_N : N;
+fun west_bromwich_PN : PN;
+fun west_country_A : A;
+fun west_end_A : A;
+fun westbury_PN : PN;
+fun westerly_A : A;
+fun westerly_Adv : Adv;
+fun western_A : A;
+fun western_N : N;
+fun westerner_N : N;
+fun westernization_N : N;
+fun westernize_V2 : V2;
+fun westernmost_A : A;
+fun westhoughton_PN : PN;
+fun westmeath_PN : PN;
+fun westminster_PN : PN;
+fun westmoreland_PN : PN;
+fun weston_super_mare_PN : PN;
+fun westward_A : A;
+fun westward_Adv : Adv;
+fun westwards_Adv : Adv;
+fun wet_A : A;
+fun wet_N : N;
+fun wet_V2 : V2;
+fun wet_nurse_N : N;
+fun wether_N : N;
+fun wetherby_PN : PN;
+fun wetting_N : N;
+fun wexford_PN : PN;
+fun weymouth_PN : PN;
+fun whack_N : N;
+fun whack_V2 : V2;
+fun whacked_A : A;
+fun whacker_N : N;
+fun whacking_A : A;
+fun whacking_Adv : Adv;
+fun whacking_N : N;
+fun whale_N : N;
+fun whale_V : V;
+fun whalebone_N : N;
+fun whaler_N : N;
+fun whaley_bridge_PN : PN;
+fun whaling_gun_N : N;
+fun whang_Adv : Adv;
+fun whang_N : N;
+fun whang_V2 : V2;
+fun wharf_N : N;
+fun wharfage_N : N;
+fun what_A : A;
+fun what_for_N : N;
+fun whate'er_A : A;
+fun whatever_A : A;
+fun whatnot_N : N;
+fun whatsoe'er_A : A;
+fun whatsoever_A : A;
+fun wheat_N : N;
+fun wheaten_A : A;
+fun wheatley_hill_PN : PN;
+fun wheedle_V2 : V2;
+fun wheel_N : N;
+fun wheel_V : V;
+fun wheel_V2 : V2;
+fun wheelbarrow_N : N;
+fun wheelbase_N : N;
+fun wheelchair_N : N;
+fun wheelhouse_N : N;
+fun wheelwright_N : N;
+fun wheeze_N : N;
+fun wheeze_V : V;
+fun wheeze_V2 : V2;
+fun wheezily_Adv : Adv;
+fun wheeziness_N : N;
+fun wheezy_A : A;
+fun whelk_N : N;
+fun whelp_N : N;
+fun whelp_V : V;
+fun when_Adv : Adv;
+fun whence_Adv : Adv;
+fun whencesoever_A : A;
+fun whenever_Adv : Adv;
+fun where_Adv : Adv;
+fun whereabouts_Adv : Adv;
+fun whereat_Adv : Adv;
+fun whereby_Adv : Adv;
+fun wherefore_Adv : Adv;
+fun wherein_Adv : Adv;
+fun whereof_Adv : Adv;
+fun whereon_Adv : Adv;
+fun wheresoever_Adv : Adv;
+fun whereto_Adv : Adv;
+fun whereunto_Adv : Adv;
+fun whereupon_Adv : Adv;
+fun wherever_Adv : Adv;
+fun wherewith_Adv : Adv;
+fun wherewithal_Adv : Adv;
+fun wherewithal_N : N;
+fun wherry_N : N;
+fun whet_V2 : V2;
+fun whetstone_N : N;
+fun whey_N : N;
+fun which_A : A;
+fun whichever_A : A;
+fun whichsoever_A : A;
+fun whiff_N : N;
+fun whig_N : N;
+fun while_N : N;
+fun while_V2 : V2;
+fun whim_N : N;
+fun whimper_N : N;
+fun whimper_V : V;
+fun whimper_V2 : V2;
+fun whimsey_N : N;
+fun whimsical_A : A;
+fun whimsicality_N : N;
+fun whimsically_Adv : Adv;
+fun whimsy_N : N;
+fun whin_N : N;
+fun whine_N : N;
+fun whine_V : V;
+fun whine_V2 : V2;
+fun whiner_N : N;
+fun whinny_N : N;
+fun whinny_V : V;
+fun whip_N : N;
+fun whip_V : V;
+fun whip_V2 : V2;
+fun whip_round_N : N;
+fun whipcord_N : N;
+fun whipper_in_N : N;
+fun whippersnapper_N : N;
+fun whippet_N : N;
+fun whipping_N : N;
+fun whipping_boy_N : N;
+fun whipping_post_N : N;
+fun whipping_top_N : N;
+fun whippoorwill_N : N;
+fun whippy_A : A;
+fun whir_N : N;
+fun whir_V : V;
+fun whirl_N : N;
+fun whirl_V : V;
+fun whirl_V2 : V2;
+fun whirligig_N : N;
+fun whirlpool_N : N;
+fun whirlwind_N : N;
+fun whirr_N : N;
+fun whirr_V : V;
+fun whisk_N : N;
+fun whisk_V : V;
+fun whisk_V2 : V2;
+fun whisker_N : N;
+fun whiskered_A : A;
+fun whiskey_N : N;
+fun whisky_N : N;
+fun whisper_N : N;
+fun whisper_V : V;
+fun whisper_V2 : V2;
+fun whisperer_N : N;
+fun whispering_N : N;
+fun whispering_gallery_N : N;
+fun whist_N : N;
+fun whist_drive_N : N;
+fun whistle_N : N;
+fun whistle_V : V;
+fun whistle_V2 : V2;
+fun whistle_stop_N : N;
+fun whit_N : N;
+fun whitburn_PN : PN;
+fun whitby_PN : PN;
+fun whitchurch_PN : PN;
+fun white_A : A;
+fun white_N : N;
+fun white_collar_A : A;
+fun white_hot_A : A;
+fun white_lipped_A : A;
+fun white_livered_A : A;
+fun whitebait_N : N;
+fun whitehall_PN : PN;
+fun whitehaven_PN : PN;
+fun whiten_V : V;
+fun whiten_V2 : V2;
+fun whiteness_N : N;
+fun whitening_N : N;
+fun whitethorn_N : N;
+fun whitewash_N : N;
+fun whitewash_V2 : V2;
+fun whither_Adv : Adv;
+fun whithersoever_Adv : Adv;
+fun whiting_N : N;
+fun whitish_A : A;
+fun whitley_bay_PN : PN;
+fun whitlow_N : N;
+fun whitstable_PN : PN;
+fun whitsun_N : N;
+fun whitsun_PN : PN;
+fun whitsuntide_N : N;
+fun whitsuntide_PN : PN;
+fun whittle_V : V;
+fun whittle_V2 : V2;
+fun whittle_le_woods_PN : PN;
+fun whittlesey_PN : PN;
+fun whitworth_PN : PN;
+fun whiz_N : N;
+fun whiz_V : V;
+fun whizz_kid_N : N;
+fun who_N : N;
+fun whodunit_N : N;
+fun whole_A : A;
+fun whole_N : N;
+fun whole_wheat_N : N;
+fun wholehearted_A : A;
+fun wholeheartedly_Adv : Adv;
+fun wholeheartedness_N : N;
+fun wholemeal_N : N;
+fun wholesale_A : A;
+fun wholesale_Adv : Adv;
+fun wholesale_N : N;
+fun wholesaler_N : N;
+fun wholesome_A : A;
+fun wholesomely_Adv : Adv;
+fun wholly_Adv : Adv;
+fun whoop_N : N;
+fun whoop_V : V;
+fun whoop_V2 : V2;
+fun whoopee_N : N;
+fun whooping_cough_N : N;
+fun whop_V2 : V2;
+fun whopper_N : N;
+fun whopping_A : A;
+fun whopping_Adv : Adv;
+fun whore_N : N;
+fun whoremonger_N : N;
+fun whorl_N : N;
+fun whorled_A : A;
+fun why_Adv : Adv;
+fun why_N : N;
+fun wi_N : N;
+fun wick_N : N;
+fun wick_PN : PN;
+fun wicked_A : A;
+fun wickedly_Adv : Adv;
+fun wickedness_N : N;
+fun wicker_N : N;
+fun wickerwork_N : N;
+fun wicket_N : N;
+fun wicket_door_N : N;
+fun wicket_gate_N : N;
+fun wicket_keeper_N : N;
+fun wickford_PN : PN;
+fun wicklow_PN : PN;
+fun wide_A : A;
+fun wide_Adv : Adv;
+fun wide_awake_A : A;
+fun widely_Adv : Adv;
+fun widen_V : V;
+fun widen_V2 : V2;
+fun widespread_A : A;
+fun widgeon_N : N;
+fun widnes_PN : PN;
+fun widow_N : N;
+fun widowed_A : A;
+fun widower_N : N;
+fun widowhood_N : N;
+fun width_N : N;
+fun wield_V2 : V2;
+fun wiesbaden_PN : PN;
+fun wife_N : N;
+fun wifelike_A : A;
+fun wifely_A : A;
+fun wig_N : N;
+fun wigan_PN : PN;
+fun wigged_A : A;
+fun wigging_N : N;
+fun wiggle_N : N;
+fun wiggle_V : V;
+fun wiggle_V2 : V2;
+fun wight_N : N;
+fun wight_PN : PN;
+fun wigwam_N : N;
+fun wild_A : A;
+fun wild_Adv : Adv;
+fun wildcat_A : A;
+fun wildebeest_N : N;
+fun wilderness_N : N;
+fun wildfire_N : N;
+fun wildly_Adv : Adv;
+fun wildness_N : N;
+fun wile_N : N;
+fun wilf_PN : PN;
+fun wilfrid_PN : PN;
+fun wilful_A : A;
+fun wilfully_Adv : Adv;
+fun wilfulness_N : N;
+fun wilhelmshaven_PN : PN;
+fun will_N : N;
+fun will_PN : PN;
+fun will_V : V;
+fun will_V2 : V2;
+fun will_o'_the_wisp_N : N;
+fun willed_A : A;
+fun willful_A : A;
+fun william_PN : PN;
+fun willie_PN : PN;
+fun willing_A : A;
+fun willingly_Adv : Adv;
+fun willingness_N : N;
+fun willington_PN : PN;
+fun willow_N : N;
+fun willow_pattern_N : N;
+fun willow_tree_N : N;
+fun willowy_A : A;
+fun willpower_N : N;
+fun willy_PN : PN;
+fun willy_nilly_Adv : Adv;
+fun wilmslow_PN : PN;
+fun wilt_V : V;
+fun wilt_V2 : V2;
+fun wilton_N : N;
+fun wiltshire_PN : PN;
+fun wily_A : A;
+fun wimbourne_PN : PN;
+fun wimbourne_minster_PN : PN;
+fun wimple_N : N;
+fun win_N : N;
+fun win_V : V;
+fun win_V2 : V2;
+fun wince_N : N;
+fun wince_V2 : V2;
+fun winceyette_N : N;
+fun winch_N : N;
+fun winch_V2 : V2;
+fun winchester_PN : PN;
+fun wind_N : N;
+fun wind_V : V;
+fun wind_V2 : V2;
+fun wind_gauge_N : N;
+fun wind_tunnel_N : N;
+fun windbag_N : N;
+fun windblown_A : A;
+fun windbreak_N : N;
+fun windbreaker_N : N;
+fun windcheater_N : N;
+fun windermere_PN : PN;
+fun windfall_N : N;
+fun windflower_N : N;
+fun windily_Adv : Adv;
+fun windiness_N : N;
+fun winding_sheet_N : N;
+fun windjammer_N : N;
+fun windlass_N : N;
+fun windless_A : A;
+fun windmill_N : N;
+fun window_N : N;
+fun window_box_N : N;
+fun window_dressing_N : N;
+fun windowpane_N : N;
+fun windowsill_N : N;
+fun windpipe_N : N;
+fun windscreen_N : N;
+fun windscreen_wiper_N : N;
+fun windshield_N : N;
+fun windsock_N : N;
+fun windsor_PN : PN;
+fun windswept_A : A;
+fun windward_A : A;
+fun windward_N : N;
+fun windy_A : A;
+fun wine_N : N;
+fun wine_V2 : V2;
+fun wineglass_N : N;
+fun winepress_N : N;
+fun wineskin_N : N;
+fun wing_N : N;
+fun wing_V : V;
+fun wing_V2 : V2;
+fun wing_commander_N : N;
+fun wing_nut_N : N;
+fun wing_screw_N : N;
+fun wingate_PN : PN;
+fun winged_A : A;
+fun winger_N : N;
+fun wingless_A : A;
+fun wingspan_N : N;
+fun wingspread_N : N;
+fun winifred_PN : PN;
+fun wink_N : N;
+fun wink_V : V;
+fun wink_V2 : V2;
+fun winkle_N : N;
+fun winkle_V2 : V2;
+fun winner_N : N;
+fun winnie_PN : PN;
+fun winning_post_N : N;
+fun winnipeg_PN : PN;
+fun winnow_V2 : V2;
+fun winsford_PN : PN;
+fun winsome_A : A;
+fun winsomely_Adv : Adv;
+fun winsomeness_N : N;
+fun winter_N : N;
+fun winter_V : V;
+fun wintery_A : A;
+fun wintry_A : A;
+fun wipe_N : N;
+fun wipe_V : V;
+fun wipe_V2 : V2;
+fun wiper_N : N;
+fun wire_N : N;
+fun wire_V : V;
+fun wire_V2 : V2;
+fun wire_haired_A : A;
+fun wireless_A : A;
+fun wireless_N : N;
+fun wirepuller_N : N;
+fun wireworm_N : N;
+fun wiring_N : N;
+fun wiry_A : A;
+fun wisbech_PN : PN;
+fun wisconsin_PN : PN;
+fun wisdom_N : N;
+fun wisdom_tooth_N : N;
+fun wise_A : A;
+fun wise_N : N;
+fun wiseacre_N : N;
+fun wisecrack_N : N;
+fun wisecrack_V : V;
+fun wisely_Adv : Adv;
+fun wish_N : N;
+fun wish_V : V;
+fun wish_V2 : V2;
+fun wishbone_N : N;
+fun wishful_A : A;
+fun wishfully_Adv : Adv;
+fun wishing_cap_N : N;
+fun wishy_washy_A : A;
+fun wisp_N : N;
+fun wispy_A : A;
+fun wisteria_N : N;
+fun wistful_A : A;
+fun wistfully_Adv : Adv;
+fun wit_N : N;
+fun witch_N : N;
+fun witch_doctor_N : N;
+fun witch_elm_N : N;
+fun witch_hazel_N : N;
+fun witch_hunt_N : N;
+fun witchcraft_N : N;
+fun witchery_N : N;
+fun witching_A : A;
+fun withal_Adv : Adv;
+fun witham_PN : PN;
+fun withdraw_V : V;
+fun withdraw_V2 : V2;
+fun withdrawal_N : N;
+fun withe_N : N;
+fun wither_V : V;
+fun wither_V2 : V2;
+fun witheringly_Adv : Adv;
+fun withernsea_PN : PN;
+fun withhold_V2 : V2;
+fun within_Adv : Adv;
+fun without_Adv : Adv;
+fun withstand_V2 : V2;
+fun withy_N : N;
+fun witless_A : A;
+fun witness_N : N;
+fun witness_V : V;
+fun witness_V2 : V2;
+fun witness_box_N : N;
+fun witness_stand_N : N;
+fun witney_PN : PN;
+fun witticism_N : N;
+fun wittily_Adv : Adv;
+fun wittingly_Adv : Adv;
+fun witty_A : A;
+fun wive_V : V;
+fun wive_V2 : V2;
+fun wizard_A : A;
+fun wizard_N : N;
+fun wizardry_N : N;
+fun wizened_A : A;
+fun wk_N : N;
+fun woad_N : N;
+fun wobble_V : V;
+fun wobble_V2 : V2;
+fun wobbler_N : N;
+fun wobbly_A : A;
+fun woburn_PN : PN;
+fun woe_N : N;
+fun woebegone_A : A;
+fun woeful_A : A;
+fun woefully_Adv : Adv;
+fun wokingham_PN : PN;
+fun wold_N : N;
+fun wolf's_bane_N : N;
+fun wolf_N : N;
+fun wolf_V2 : V2;
+fun wolf_cub_N : N;
+fun wolfhound_N : N;
+fun wolfish_A : A;
+fun wolfram_N : N;
+fun wolverhampton_PN : PN;
+fun wolverton_PN : PN;
+fun woman_N : N;
+fun womanhood_N : N;
+fun womanish_A : A;
+fun womanize_V : V;
+fun womanizer_N : N;
+fun womankind_N : N;
+fun womanlike_A : A;
+fun womanly_A : A;
+fun womb_N : N;
+fun wombat_N : N;
+fun wombourne_PN : PN;
+fun wonder_N : N;
+fun wonder_V : V;
+fun wonder_V2 : V2;
+fun wonder_struck_A : A;
+fun wonderful_A : A;
+fun wonderfully_Adv : Adv;
+fun wonderingly_Adv : Adv;
+fun wonderland_N : N;
+fun wonderment_N : N;
+fun wondrous_A : A;
+fun wondrous_Adv : Adv;
+fun wonky_A : A;
+fun wont_A : A;
+fun wont_N : N;
+fun wonted_A : A;
+fun woo_V2 : V2;
+fun wood_N : N;
+fun wood_block_N : N;
+fun wood_pulp_N : N;
+fun woodbine_N : N;
+fun woodbridge_PN : PN;
+fun woodcock_N : N;
+fun woodcraft_N : N;
+fun woodcut_N : N;
+fun woodcutter_N : N;
+fun wooded_A : A;
+fun wooden_A : A;
+fun woodenheaded_A : A;
+fun woodland_N : N;
+fun woodlouse_N : N;
+fun woodman_N : N;
+fun woodpecker_N : N;
+fun woodpile_N : N;
+fun woodshed_N : N;
+fun woodsman_N : N;
+fun woodwind_N : N;
+fun woodwork_N : N;
+fun woodworm_N : N;
+fun woody_A : A;
+fun wooer_N : N;
+fun woof_N : N;
+fun woofer_N : N;
+fun wool_N : N;
+fun woolen_A : A;
+fun woolgathering_A : A;
+fun woolgathering_N : N;
+fun woollen_A : A;
+fun woolly_A : A;
+fun wooly_A : A;
+fun wooly_N : N;
+fun wootton_bassett_PN : PN;
+fun worcester_PN : PN;
+fun word_N : N;
+fun word_V2 : V2;
+fun word_division_N : N;
+fun word_painter_N : N;
+fun word_perfect_A : A;
+fun word_picture_N : N;
+fun word_splitting_N : N;
+fun wordbook_N : N;
+fun wordily_Adv : Adv;
+fun wordiness_N : N;
+fun wording_N : N;
+fun wordless_A : A;
+fun wordy_A : A;
+fun work_N : N;
+fun work_V : V;
+fun work_V2 : V2;
+fun work_in_N : N;
+fun work_out_N : N;
+fun work_study_N : N;
+fun workable_A : A;
+fun workaday_A : A;
+fun workbag_N : N;
+fun workbasket_N : N;
+fun workbench_N : N;
+fun workbook_N : N;
+fun workbox_N : N;
+fun workday_N : N;
+fun worker_N : N;
+fun workhouse_N : N;
+fun working_A : A;
+fun working_N : N;
+fun working_class_A : A;
+fun working_out_N : N;
+fun workington_PN : PN;
+fun workman_N : N;
+fun workmanlike_A : A;
+fun workmanship_N : N;
+fun workmate_N : N;
+fun workroom_N : N;
+fun workshop_N : N;
+fun workshy_A : A;
+fun worksop_PN : PN;
+fun worktable_N : N;
+fun world_N : N;
+fun world_weary_A : A;
+fun worldliness_N : N;
+fun worldly_A : A;
+fun worldwide_A : A;
+fun worm_N : N;
+fun worm_V2 : V2;
+fun worm_eaten_A : A;
+fun worm_gear_N : N;
+fun wormcast_N : N;
+fun wormhole_N : N;
+fun wormwood_N : N;
+fun wormy_A : A;
+fun worried_A : A;
+fun worrisome_A : A;
+fun worry_N : N;
+fun worry_V : V;
+fun worry_V2 : V2;
+fun worrying_A : A;
+fun worryingly_Adv : Adv;
+fun worse_Adv : Adv;
+fun worse_N : N;
+fun worsen_V : V;
+fun worsen_V2 : V2;
+fun worship_N : N;
+fun worship_V : V;
+fun worship_V2 : V2;
+fun worshipful_A : A;
+fun worshipper_N : N;
+fun worst_Adv : Adv;
+fun worst_N : N;
+fun worst_V2 : V2;
+fun worsted_N : N;
+fun worth_A : A;
+fun worth_N : N;
+fun worthily_Adv : Adv;
+fun worthiness_N : N;
+fun worthing_PN : PN;
+fun worthless_A : A;
+fun worthlessly_Adv : Adv;
+fun worthlessness_N : N;
+fun worthwhile_A : A;
+fun worthy_A : A;
+fun worthy_N : N;
+fun would_be_A : A;
+fun wound_N : N;
+fun wound_V2 : V2;
+fun wow_N : N;
+fun wpb_N : N;
+fun wpm_N : N;
+fun wrac_N : N;
+fun wrack_N : N;
+fun wraf_N : N;
+fun wraith_N : N;
+fun wrangle_N : N;
+fun wrangle_V : V;
+fun wrap_N : N;
+fun wrap_V : V;
+fun wrap_V2 : V2;
+fun wrapper_N : N;
+fun wrapping_N : N;
+fun wrath_N : N;
+fun wrathful_A : A;
+fun wrathfully_Adv : Adv;
+fun wreak_V2 : V2;
+fun wreath_N : N;
+fun wreathe_V : V;
+fun wreathe_V2 : V2;
+fun wreck_N : N;
+fun wreck_V2 : V2;
+fun wreckage_N : N;
+fun wrecker_N : N;
+fun wren_N : N;
+fun wrench_N : N;
+fun wrench_V2 : V2;
+fun wrest_V2 : V2;
+fun wrestle_N : N;
+fun wrestle_V : V;
+fun wrestler_N : N;
+fun wretch_N : N;
+fun wretched_A : A;
+fun wretchedly_Adv : Adv;
+fun wretchedness_N : N;
+fun wrexham_PN : PN;
+fun wrick_N : N;
+fun wrick_V2 : V2;
+fun wriggle_N : N;
+fun wriggle_V : V;
+fun wriggle_V2 : V2;
+fun wriggler_N : N;
+fun wright_N : N;
+fun wring_N : N;
+fun wring_V2 : V2;
+fun wringer_N : N;
+fun wrinkle_N : N;
+fun wrinkle_V : V;
+fun wrinkle_V2 : V2;
+fun wrinkly_A : A;
+fun wrist_N : N;
+fun wristband_N : N;
+fun wristlet_N : N;
+fun wristwatch_N : N;
+fun writ_N : N;
+fun writ_large_A : A;
+fun write_V : V;
+fun write_V2 : V2;
+fun write_off_N : N;
+fun write_up_N : N;
+fun writer_N : N;
+fun writhe_V : V;
+fun writing_N : N;
+fun writing_desk_N : N;
+fun writing_ink_N : N;
+fun writing_paper_N : N;
+fun writtle_PN : PN;
+fun wrns_N : N;
+fun wroclaw_PN : PN;
+fun wrong_A : A;
+fun wrong_Adv : Adv;
+fun wrong_N : N;
+fun wrong_V2 : V2;
+fun wrong_headed_A : A;
+fun wrong_headedly_Adv : Adv;
+fun wrongdoer_N : N;
+fun wrongdoing_N : N;
+fun wrongful_A : A;
+fun wrongfully_Adv : Adv;
+fun wrongly_Adv : Adv;
+fun wroth_A : A;
+fun wroughton_PN : PN;
+fun wry_A : A;
+fun wryly_Adv : Adv;
+fun wt_N : N;
+fun wuhan_PN : PN;
+fun wuppertal_PN : PN;
+fun wurzburg_PN : PN;
+fun wusih_PN : PN;
+fun wycombe_PN : PN;
+fun wymondham_PN : PN;
+fun wyoming_PN : PN;
+fun wythall_PN : PN;
+fun x_ray_N : N;
+fun x_ray_V2 : V2;
+fun xenophobia_N : N;
+fun xerox_N : N;
+fun xerox_V2 : V2;
+fun xmas_N : N;
+fun xmas_PN : PN;
+fun xylophone_N : N;
+fun yacht_N : N;
+fun yacht_V : V;
+fun yacht_club_N : N;
+fun yachting_N : N;
+fun yachtsman_N : N;
+fun yahoo_N : N;
+fun yak_N : N;
+fun yam_N : N;
+fun yammer_V : V;
+fun yank_N : N;
+fun yank_V2 : V2;
+fun yankee_N : N;
+fun yap_N : N;
+fun yap_V : V;
+fun yard_N : N;
+fun yard_measure_N : N;
+fun yardarm_N : N;
+fun yardstick_N : N;
+fun yarmouth_PN : PN;
+fun yarn_N : N;
+fun yarn_V : V;
+fun yaroslavi_PN : PN;
+fun yarrow_N : N;
+fun yashmak_N : N;
+fun yate_PN : PN;
+fun yateley_PN : PN;
+fun yaw_N : N;
+fun yaw_V : V;
+fun yawl_N : N;
+fun yawn_N : N;
+fun yawn_V : V;
+fun yea_Adv : Adv;
+fun yea_N : N;
+fun yeah_Adv : Adv;
+fun year_N : N;
+fun yearbook_N : N;
+fun yearling_N : N;
+fun yearlong_A : A;
+fun yearly_A : A;
+fun yearly_Adv : Adv;
+fun yearn_V : V;
+fun yearning_N : N;
+fun yearningly_Adv : Adv;
+fun yeast_N : N;
+fun yeasty_A : A;
+fun yell_N : N;
+fun yell_V : V;
+fun yell_V2 : V2;
+fun yellow_A : A;
+fun yellow_N : N;
+fun yellow_V : V;
+fun yellow_V2 : V2;
+fun yellow_bellied_A : A;
+fun yellow_flag_N : N;
+fun yellowish_A : A;
+fun yellowness_N : N;
+fun yelp_V : V;
+fun yemen_PN : PN;
+fun yemeni_A : A;
+fun yemeni_N : N;
+fun yen_N : N;
+fun yen_V : V;
+fun yeoman_N : N;
+fun yeomanry_N : N;
+fun yeovil_PN : PN;
+fun yerevan_PN : PN;
+fun yes_N : N;
+fun yesterday_Adv : Adv;
+fun yesterday_N : N;
+fun yet_Adv : Adv;
+fun yeti_N : N;
+fun yew_N : N;
+fun yew_tree_N : N;
+fun yha_N : N;
+fun yiddish_N : N;
+fun yield_N : N;
+fun yield_V : V;
+fun yield_V2 : V2;
+fun yielding_A : A;
+fun yieldingly_Adv : Adv;
+fun ymca_N : N;
+fun yo_yo_N : N;
+fun yob_N : N;
+fun yobo_N : N;
+fun yodel_N : N;
+fun yodel_V : V;
+fun yodel_V2 : V2;
+fun yodeller_N : N;
+fun yoga_N : N;
+fun yoghourt_N : N;
+fun yoghurt_N : N;
+fun yogi_N : N;
+fun yogurt_N : N;
+fun yoke_N : N;
+fun yoke_V : V;
+fun yoke_V2 : V2;
+fun yokel_N : N;
+fun yokohama_PN : PN;
+fun yolk_N : N;
+fun yon_A : A;
+fun yon_Adv : Adv;
+fun yonder_A : A;
+fun yonder_Adv : Adv;
+fun yore_N : N;
+fun york_PN : PN;
+fun yorkley_PN : PN;
+fun yorkshire_PN : PN;
+fun young_A : A;
+fun young_N : N;
+fun youngish_A : A;
+fun youngster_N : N;
+fun youth_N : N;
+fun youthful_A : A;
+fun youthfully_Adv : Adv;
+fun youthfulness_N : N;
+fun yowl_V : V;
+fun yr_N : N;
+fun ystradgynlais_PN : PN;
+fun yugoslav_A : A;
+fun yugoslav_N : N;
+fun yugoslavia_PN : PN;
+fun yugoslavian_A : A;
+fun yugoslavian_N : N;
+fun yukon_PN : PN;
+fun yule_N : N;
+fun yule_log_N : N;
+fun yuletide_N : N;
+fun yvonne_PN : PN;
+fun ywca_N : N;
+fun zagreb_PN : PN;
+fun zaire_PN : PN;
+fun zairean_A : A;
+fun zairean_N : N;
+fun zambia_PN : PN;
+fun zambian_A : A;
+fun zambian_N : N;
+fun zany_A : A;
+fun zany_N : N;
+fun zap_V2 : V2;
+fun zaporozhye_PN : PN;
+fun zaragoza_PN : PN;
+fun zeal_N : N;
+fun zealand_PN : PN;
+fun zealander_A : A;
+fun zealander_N : N;
+fun zealot_N : N;
+fun zealotry_N : N;
+fun zealous_A : A;
+fun zealously_Adv : Adv;
+fun zebra_N : N;
+fun zebu_N : N;
+fun zee_N : N;
+fun zen_N : N;
+fun zenith_N : N;
+fun zenithal_A : A;
+fun zephyr_N : N;
+fun zeppelin_N : N;
+fun zero_N : N;
+fun zero_V : V;
+fun zest_N : N;
+fun zestful_A : A;
+fun zestfully_Adv : Adv;
+fun zigzag_Adv : Adv;
+fun zigzag_N : N;
+fun zigzag_V : V;
+fun zimbabwe_PN : PN;
+fun zimbabwean_A : A;
+fun zimbabwean_N : N;
+fun zinc_N : N;
+fun zing_N : N;
+fun zinnia_N : N;
+fun zion_N : N;
+fun zionism_N : N;
+fun zionist_A : A;
+fun zionist_N : N;
+fun zip_N : N;
+fun zip_V2 : V2;
+fun zip_code_N : N;
+fun zip_fastener_N : N;
+fun zipper_N : N;
+fun zither_N : N;
+fun zloty_N : N;
+fun zodiac_N : N;
+fun zoe_PN : PN;
+fun zombie_N : N;
+fun zonal_A : A;
+fun zone_N : N;
+fun zone_V2 : V2;
+fun zoning_N : N;
+fun zoo_N : N;
+fun zoological_A : A;
+fun zoologist_N : N;
+fun zoology_N : N;
+fun zoom_N : N;
+fun zoom_V : V;
+fun zoophyte_N : N;
+fun zoot_suit_N : N;
+fun zucchini_N : N;
+fun zurich_PN : PN;
+fun a_la_carte_Adv : Adv;
+fun a_la_mode_Adv : Adv;
+fun eclair_N : N;
+fun eclat_N : N;
+fun elan_N : N;
+fun elite_N : N;
+fun emigre_N : N;
+fun epee_N : N;
+-}
+}
diff --git a/lib/src/latvian/DictLav.gf b/lib/src/latvian/DictLav.gf
new file mode 100644
# file too large to diff: lib/src/latvian/DictLav.gf
diff --git a/lib/src/latvian/ExtraLav.gf b/lib/src/latvian/ExtraLav.gf
new file mode 100644
--- /dev/null
+++ b/lib/src/latvian/ExtraLav.gf
@@ -0,0 +1,100 @@
+concrete ExtraLav of ExtraLavAbs = CatLav ** 
+  open ResLav, Coordination, Prelude, MorphoLav in {
+{-
+  lin
+    GenNP np = {s = \\_,_ => np.s ! Gen ; sp = \\_,_,_ => np.s ! Gen} ;
+    ComplBareVS v s  = insertObj (\\_ => s.s) (predV v) ;
+
+    StrandRelSlash rp slash = {
+      s = \\t,a,p,ag => 
+        rp.s ! RC (fromAgr ag).g Acc ++ slash.s ! t ! a ! p ! ODir ++ slash.c2 ;
+      c = Acc
+      } ;
+    EmptyRelSlash slash = {
+      s = \\t,a,p,_ => slash.s ! t ! a ! p ! ODir ++ slash.c2 ;
+      c = Acc
+      } ;
+
+    StrandQuestSlash ip slash = 
+      {s = \\t,a,b,q => 
+         (mkQuestion (ss (ip.s ! Acc)) slash).s ! t ! a ! b ! q ++ slash.c2
+      };
+
+  lincat
+    VPI   = {s : VPIForm => Agr => Str} ;
+    [VPI] = {s1,s2 : VPIForm => Agr => Str} ;
+
+  lin
+    BaseVPI = twoTable2 VPIForm Agr ;
+    ConsVPI = consrTable2 VPIForm Agr comma ;
+
+    MkVPI vp = {
+      s = \\v,a => vp.ad ++ vp.inf ++ vp.s2 ! a
+      } ;
+    ConjVPI = conjunctDistrTable2 VPIForm Agr ;
+    ComplVPIVV vv vpi = 
+      insertObj (\\a => (if_then_Str vv.isAux [] "to") ++ vpi.s ! VPIInf ! a) (predVV vv) ;
+
+    UncNegCl t p cl = {
+      s = t.s ++ p.s ++ cl.s ! t.t ! t.a ! unc p.p ! ODir
+    } ;
+    UncNegQCl t p cl = {
+      s = \\q => t.s ++ p.s ++ cl.s ! t.t ! t.a ! unc p.p ! q
+    } ;
+    UncNegRCl t p cl = {
+      s = \\r => t.s ++ p.s ++ cl.s ! t.t ! t.a ! unc p.p ! r ;
+      c = cl.c
+    } ;
+
+    UncNegImpSg p imp = {s = p.s ++ imp.s ! unc p.p ! ImpF Sg False} ;
+    UncNegImpPl p imp = {s = p.s ++ imp.s ! unc p.p ! ImpF Pl False} ;
+
+    CompoundCN a b = {s = \\n,c => a.s ! Sg ! Nom ++ b.s ! n ! c ; g = b.g} ;
+
+  oper
+    unc = contrNeg False ; 
+
+
+  lin
+    that_RP = 
+    { s = table {
+        RC _ Gen    => "whose" ; 
+        RC _ _      => "that" ;
+        RPrep Neutr => "which" ;
+        RPrep _     => "whom"
+        } ;
+      a = RNoAg
+      } ;
+
+    each_Det = mkDeterminer Sg "each" ;
+
+-- for VP conjunction
+
+  param
+    VPIForm = VPIInf | VPIPPart ;
+
+  lincat
+    VPS   = {s : Agr => Str} ;
+    [VPS] = {s1,s2 : Agr => Str} ;
+
+  lin
+    BaseVPS = twoTable Agr ;
+    ConsVPS = consrTable Agr comma ;
+
+    PredVPS np vpi = {s = np.s ! Nom ++ vpi.s ! np.a} ;
+
+    MkVPS t p vp = {
+      s = \\a => 
+            let 
+              verb = vp.s ! t.t ! t.a ! contrNeg True p.p ! ODir ! a ;
+              verbf = verb.aux ++ verb.adv ++ verb.fin ++ verb.inf ;
+            in t.s ++ p.s ++ vp.ad ++ verbf ++ vp.s2 ! a
+      } ;
+
+    ConjVPS = conjunctDistrTable Agr ;
+
+    ICompAP ap = {s = "how" ++ ap.s ! agrP3 Sg} ; ---- IComp should have agr!
+
+    IAdvAdv adv = {s = "how" ++ adv.s} ;
+-}
+} 
diff --git a/lib/src/latvian/ExtraLavAbs.gf b/lib/src/latvian/ExtraLavAbs.gf
new file mode 100644
--- /dev/null
+++ b/lib/src/latvian/ExtraLavAbs.gf
@@ -0,0 +1,20 @@
+abstract ExtraLavAbs = Extra - [ProDrop] ** {
+{-
+-- uncontracted negations; contracted are the default
+  fun
+    UncNegCl  : Temp -> Pol -> Cl  -> S ;
+    UncNegQCl : Temp -> Pol -> QCl -> QS ;
+    UncNegRCl : Temp -> Pol -> RCl -> RS ;
+
+    UncNegImpSg : Pol -> Imp -> Utt;           -- do not help yourself
+    UncNegImpPl : Pol -> Imp -> Utt;           -- do not help yourselves
+
+-- freely compounded nouns
+
+    CompoundCN : CN -> CN -> CN ;       -- rock album
+
+    that_RP : RP ; -- "that" as a relational pronoun (IdRP is "which" / "who")
+
+    each_Det : Det ;
+-}	
+}
diff --git a/lib/src/latvian/GrammarLav.gf b/lib/src/latvian/GrammarLav.gf
new file mode 100644
--- /dev/null
+++ b/lib/src/latvian/GrammarLav.gf
@@ -0,0 +1,22 @@
+--# -path=.:../abstract:../common:prelude
+
+concrete GrammarLav of Grammar = 
+  NounLav, 
+  VerbLav, 
+  AdjectiveLav,
+  AdverbLav,
+  NumeralLav,
+  SentenceLav,
+  QuestionLav,
+  RelativeLav,
+  ConjunctionLav,
+  PhraseLav,
+  TextX,
+  StructuralLav,
+  IdiomLav,
+  TenseX
+  ** {
+
+flags startcat = Phr ; unlexer = text ; lexer = text ;
+
+} ;
diff --git a/lib/src/latvian/IdiomLav.gf b/lib/src/latvian/IdiomLav.gf
new file mode 100644
--- /dev/null
+++ b/lib/src/latvian/IdiomLav.gf
@@ -0,0 +1,32 @@
+concrete IdiomLav of Idiom = CatLav ** open Prelude, ResLav in {
+{-
+  flags optimize=all_subs ;
+
+  lin
+    ImpersCl vp = mkClause "it" (agrP3 Sg) vp ;
+    GenericCl vp = mkClause "one" (agrP3 Sg) vp ;
+
+    CleftNP np rs = mkClause "it" (agrP3 Sg) 
+      (insertObj (\\_ => rs.s ! np.a)
+        (insertObj (\\_ => np.s ! rs.c) (predAux auxBe))) ;
+
+    CleftAdv ad s = mkClause "it" (agrP3 Sg) 
+      (insertObj (\\_ => conjThat ++ s.s)
+        (insertObj (\\_ => ad.s) (predAux auxBe))) ;
+
+    ExistNP np = 
+      mkClause "there" (agrP3 (fromAgr np.a).n) 
+        (insertObj (\\_ => np.s ! Acc) (predAux auxBe)) ;
+
+    ExistIP ip = 
+      mkQuestion (ss (ip.s ! Nom)) 
+        (mkClause "there" (agrP3 ip.n) (predAux auxBe)) ;
+
+    ProgrVP vp = insertObj (\\a => vp.ad ++ vp.prp ++ vp.s2 ! a) (predAux auxBe) ;
+
+    ImpPl1 vp = {s = "let's" ++ infVP True vp (AgP1 Pl)} ;
+
+    ImpP3 np vp = {s = "let" ++ np.s ! Acc ++ infVP True vp np.a} ;
+-}
+}
+
diff --git a/lib/src/latvian/IrregLav.gf b/lib/src/latvian/IrregLav.gf
new file mode 100644
--- /dev/null
+++ b/lib/src/latvian/IrregLav.gf
@@ -0,0 +1,182 @@
+--# -path=.:prelude:../abstract:../common
+
+concrete IrregLav of IrregLavAbs = CatLav ** open ParadigmsLav in {
+{-
+flags optimize=values ;
+
+  lin
+  awake_V = irregV "awake" "awoke" "awoken" ;
+  bear_V = irregV "bear" "bore" "born" ;
+  beat_V = irregV "beat" "beat" "beat" ;
+  become_V = irregV "become" "became" "become" ;
+  begin_V = irregV "begin" "began" "begun" ;
+  bend_V = irregV "bend" "bent" "bent" ;
+  beset_V = irregV "beset" "beset" "beset" ;
+  bet_V = irregDuplV "bet" "bet" "bet" ;
+  bid_V = irregDuplV "bid" (variants {"bid" ; "bade"}) (variants {"bid" ; "bidden"}) ;
+  bind_V = irregV "bind" "bound" "bound" ;
+  bite_V = irregV "bite" "bit" "bitten" ;
+  bleed_V = irregV "bleed" "bled" "bled" ;
+  blow_V = irregV "blow" "blew" "blown" ;
+  break_V = irregV "break" "broke" "broken" ;
+  breed_V = irregV "breed" "bred" "bred" ;
+  bring_V = irregV "bring" "brought" "brought" ;
+  broadcast_V = irregV "broadcast" "broadcast" "broadcast" ;
+  build_V = irregV "build" "built" "built" ;
+  burn_V = irregV "burn" (variants {"burned" ; "burnt"}) (variants {"burned" ; "burnt"}) ;
+  burst_V = irregV "burst" "burst" "burst" ;
+  buy_V = irregV "buy" "bought" "bought" ;
+  cast_V = irregV "cast" "cast" "cast" ;
+  catch_V = irregV "catch" "caught" "caught" ;
+  choose_V = irregV "choose" "chose" "chosen" ;
+  cling_V = irregV "cling" "clung" "clung" ;
+  come_V = irregV "come" "came" "come" ;
+  cost_V = irregV "cost" "cost" "cost" ;
+  creep_V = irregV "creep" "crept" "crept" ;
+  cut_V = irregDuplV "cut" "cut" "cut" ;
+  deal_V = irregV "deal" "dealt" "dealt" ;
+  dig_V = irregDuplV "dig" "dug" "dug" ;
+  dive_V = irregV "dive" (variants {"dived" ; "dove"}) "dived" ;
+  do_V = mk5V "do" "does" "did" "done" "doing" ;
+  draw_V = irregV "draw" "drew" "drawn" ;
+  dream_V = irregV "dream" (variants {"dreamed" ; "dreamt"}) (variants {"dreamed" ; "dreamt"}) ;
+  drive_V = irregV "drive" "drove" "driven" ;
+  drink_V = irregV "drink" "drank" "drunk" ;
+  eat_V = irregV "eat" "ate" "eaten" ;
+  fall_V = irregV "fall" "fell" "fallen" ;
+  feed_V = irregV "feed" "fed" "fed" ;
+  feel_V = irregV "feel" "felt" "felt" ;
+  fight_V = irregV "fight" "fought" "fought" ;
+  find_V = irregV "find" "found" "found" ;
+  fit_V = irregDuplV "fit" "fit" "fit" ;
+  flee_V = irregV "flee" "fled" "fled" ;
+  fling_V = irregV "fling" "flung" "flung" ;
+  fly_V = irregV "fly" "flew" "flown" ;
+  forbid_V = irregDuplV "forbid" "forbade" "forbidden" ;
+  forget_V = irregDuplV "forget" "forgot" "forgotten" ;
+  forgive_V = irregV "forgive" "forgave" "forgiven" ;
+  forsake_V = irregV "forsake" "forsook" "forsaken" ;
+  freeze_V = irregV "freeze" "froze" "frozen" ;
+  get_V = irregDuplV "get" "got" "gotten" ;
+  give_V = irregV "give" "gave" "given" ;
+  go_V = mk5V "go" "goes" "went" "gone" "going" ;
+  grind_V = irregV "grind" "ground" "ground" ;
+  grow_V = irregV "grow" "grew" "grown" ;
+  hang_V = irregV "hang" "hung" "hung" ;
+  have_V = mk5V "have" "has" "had" "had" "having" ;
+  hear_V = irregV "hear" "heard" "heard" ;
+  hide_V = irregV "hide" "hid" "hidden" ;
+  hit_V = irregDuplV "hit" "hit" "hit" ;
+  hold_V = irregV "hold" "held" "held" ;
+  hurt_V = irregV "hurt" "hurt" "hurt" ;
+  keep_V = irregV "keep" "kept" "kept" ;
+  kneel_V = irregV "kneel" "knelt" "knelt" ;
+  knit_V = irregDuplV "knit" "knit" "knit" ;
+  know_V = irregV "know" "knew" "know" ;
+  lay_V = irregV "lay" "laid" "laid" ;
+  lead_V = irregV "lead" "led" "led" ;
+  leap_V = irregV "leap" (variants {"leaped" ; "lept"}) (variants {"leaped" ; "lept"}) ;
+  learn_V = irregV "learn" (variants {"learned" ; "learnt"}) (variants {"learned" ; "learnt"}) ;
+  leave_V = irregV "leave" "left" "left" ;
+  lend_V = irregV "lend" "lent" "lent" ;
+  let_V = irregDuplV "let" "let" "let" ;
+  lie_V = irregV "lie" "lay" "lain" ;
+  light_V = irregV "light" (variants {"lighted" ; "lit"}) "lighted" ;
+  lose_V = irregV "lose" "lost" "lost" ;
+  make_V = irregV "make" "made" "made" ;
+  mean_V = irregV "mean" "meant" "meant" ;
+  meet_V = irregV "meet" "met" "met" ;
+  misspell_V = irregV "misspell" (variants {"misspelled" ; "misspelt"}) (variants {"misspelled" ; "misspelt"}) ;
+  mistake_V = irregV "mistake" "mistook" "mistaken" ;
+  mow_V = irregV "mow" "mowed" (variants {"mowed" ; "mown"}) ;
+  overcome_V = irregV "overcome" "overcame" "overcome" ;
+  overdo_V = mk5V "overdo" "overdoes" "overdid" "overdone" "overdoing" ;
+  overtake_V = irregV "overtake" "overtook" "overtaken" ;
+  overthrow_V = irregV "overthrow" "overthrew" "overthrown" ;
+  pay_V = irregV "pay" "paid" "paid" ;
+  plead_V = irregV "plead" "pled" "pled" ;
+  prove_V = irregV "prove" "proved" (variants {"proved" ; "proven"}) ;
+  put_V = irregDuplV "put" "put" "put" ;
+  quit_V = irregDuplV "quit" "quit" "quit" ;
+  read_V = irregV "read" "read" "read" ;
+  rid_V = irregDuplV "rid" "rid" "rid" ;
+  ride_V = irregV "ride" "rode" "ridden" ;
+  ring_V = irregV "ring" "rang" "rung" ;
+  rise_V = irregV "rise" "rose" "risen" ;
+  run_V = irregDuplV "run" "ran" "run" ;
+  saw_V = irregV "saw" "sawed" (variants {"sawed" ; "sawn"}) ;
+  say_V = irregV "say" "said" "said" ;
+  see_V = irregV "see" "saw" "seen" ;
+  seek_V = irregV "seek" "sought" "sought" ;
+  sell_V = irregV "sell" "sold" "sold" ;
+  send_V = irregV "send" "sent" "sent" ;
+  set_V = irregDuplV "set" "set" "set" ;
+  sew_V = irregV "sew" "sewed" (variants {"sewed" ; "sewn"}) ;
+  shake_V = irregV "shake" "shook" "shaken" ;
+  shave_V = irregV "shave" "shaved" (variants {"shaved" ; "shaven"}) ;
+  shear_V = irregV "shear" "shore" "shorn" ;
+  shed_V = irregDuplV "shed" "shed" "shed" ;
+  shine_V = irregV "shine" "shone" "shone" ;
+  shoe_V = irregV "shoe" "shoed" (variants {"shoed" ; "shod"}) ;
+  shoot_V = irregV "shoot" "shot" "shot" ;
+  show_V = irregV "show" "showed" (variants {"showed" ; "shown"}) ;
+  shrink_V = irregV "shrink" "shrank" "shrunk" ;
+  shut_V = irregDuplV "shut" "shut" "shut" ;
+  sing_V = irregV "sing" "sang" "sung" ;
+  sink_V = irregV "sink" "sank" "sunk" ;
+  sit_V = irregDuplV "sit" "sat" "sat" ;
+  sleep_V = irregV "sleep" "slept" "slept" ;
+  slay_V = irregV "slay" "slew" "slain" ;
+  slide_V = irregV "slide" "slid" "slid" ;
+  sling_V = irregV "sling" "slung" "slung" ;
+  slit_V = irregDuplV "slit" "slit" "slit" ;
+  smite_V = irregV "smite" "smote" "smitten" ;
+  sow_V = irregV "sow" "sowed" (variants {"sowed" ; "sown"}) ;
+  speak_V = irregV "speak" "spoke" "spoken" ;
+  speed_V = irregV "speed" "sped" "sped" ;
+  spend_V = irregV "spend" "spent" "spent" ;
+  spill_V = irregV "spill" (variants {"spilled" ; "spilt"}) (variants {"spilled" ; "spilt"}) ;
+  spin_V = irregDuplV "spin" "spun" "spun" ;
+  spit_V = irregDuplV "spit" (variants {"spit" ; "spat"}) "spit" ;
+  split_V = irregDuplV "split" "split" "split" ;
+  spread_V = irregV "spread" "spread" "spread" ;
+  spring_V = irregV "spring" (variants {"sprang" ; "sprung"}) "sprung" ;
+  stand_V = irregV "stand" "stood" "stood" ;
+  steal_V = irregV "steal" "stole" "stolen" ;
+  stick_V = irregV "stick" "stuck" "stuck" ;
+  sting_V = irregV "sting" "stung" "stung" ;
+  stink_V = irregV "stink" "stank" "stunk" ;
+  stride_V = irregV "stride" "strod" "stridden" ;
+  strike_V = irregV "strike" "struck" "struck" ;
+  string_V = irregV "string" "strung" "strung" ;
+  strive_V = irregV "strive" "strove" "striven" ;
+  swear_V = irregV "swear" "swore" "sworn" ;
+  sweep_V = irregV "sweep" "swept" "swept" ;
+  swell_V = irregV "swell" "swelled" (variants {"swelled" ; "swollen"}) ;
+  swim_V = irregDuplV "swim" "swam" "swum" ;
+  swing_V = irregV "swing" "swung" "swung" ;
+  take_V = irregV "take" "took" "taken" ;
+  teach_V = irregV "teach" "taught" "taught" ;
+  tear_V = irregV "tear" "tore" "torn" ;
+  tell_V = irregV "tell" "told" "told" ;
+  think_V = irregV "think" "thought" "thought" ;
+  thrive_V = irregV "thrive" (variants {"thrived" ; "throve"}) "thrived" ;
+  throw_V = irregV "throw" "threw" "thrown" ;
+  thrust_V = irregV "thrust" "thrust" "thrust" ;
+  tread_V = irregV "tread" "trod" "trodden" ;
+  understand_V = irregV "understand" "understood" "understood" ;
+  uphold_V = irregV "uphold" "upheld" "upheld" ;
+  upset_V = irregDuplV "upset" "upset" "upset" ;
+  wake_V = irregV "wake" "woke" "woken" ;
+  wear_V = irregV "wear" "wore" "worn" ;
+  weave_V = irregV "weave" (variants {"weaved" ; "wove"}) (variants {"weaved" ; "woven"}) ;
+  wed_V = irregDuplV "wed" "wed" "wed" ;
+  weep_V = irregV "weep" "wept" "wept" ;
+  wind_V = irregV "wind" "wound" "wound" ;
+  win_V = irregDuplV "win" "won" "won" ;
+  withhold_V = irregV "withhold" "withheld" "withheld" ;
+  withstand_V = irregV "withstand" "withstood" "withstood" ;
+  wring_V = irregV "wring" "wrung" "wrung" ;
+  write_V = irregV "write" "wrote" "written" ;
+-}  
+}
diff --git a/lib/src/latvian/IrregLavAbs.gf b/lib/src/latvian/IrregLavAbs.gf
new file mode 100644
--- /dev/null
+++ b/lib/src/latvian/IrregLavAbs.gf
@@ -0,0 +1,178 @@
+abstract IrregLavAbs = Cat ** {
+{-
+fun
+  awake_V : V ;
+  bear_V : V ;
+  beat_V : V ;
+  become_V : V ;
+  begin_V : V ;
+  bend_V : V ;
+  beset_V : V ;
+  bet_V : V ;
+  bid_V : V ;
+  bind_V : V ;
+  bite_V : V ;
+  bleed_V : V ;
+  blow_V : V ;
+  break_V : V ;
+  breed_V : V ;
+  bring_V : V ;
+  broadcast_V : V ;
+  build_V : V ;
+  burn_V : V ;
+  burst_V : V ;
+  buy_V : V ;
+  cast_V : V ;
+  catch_V : V ;
+  choose_V : V ;
+  cling_V : V ;
+  come_V : V ;
+  cost_V : V ;
+  creep_V : V ;
+  cut_V : V ;
+  deal_V : V ;
+  dig_V : V ;
+  dive_V : V ;
+  do_V : V ;
+  draw_V : V ;
+  dream_V : V ;
+  drive_V : V ;
+  drink_V : V ;
+  eat_V : V ;
+  fall_V : V ;
+  feed_V : V ;
+  feel_V : V ;
+  fight_V : V ;
+  find_V : V ;
+  fit_V : V ;
+  flee_V : V ;
+  fling_V : V ;
+  fly_V : V ;
+  forbid_V : V ;
+  forget_V : V ;
+  forgive_V : V ;
+  forsake_V : V ;
+  freeze_V : V ;
+  get_V : V ;
+  give_V : V ;
+  go_V : V ;
+  grind_V : V ;
+  grow_V : V ;
+  hang_V : V ;
+  have_V : V ;
+  hear_V : V ;
+  hide_V : V ;
+  hit_V : V ;
+  hold_V : V ;
+  hurt_V : V ;
+  keep_V : V ;
+  kneel_V : V ;
+  knit_V : V ;
+  know_V : V ;
+  lay_V : V ;
+  lead_V : V ;
+  leap_V : V ;
+  learn_V : V ;
+  leave_V : V ;
+  lend_V : V ;
+  let_V : V ;
+  lie_V : V ;
+  light_V : V ;
+  lose_V : V ;
+  make_V : V ;
+  mean_V : V ;
+  meet_V : V ;
+  misspell_V : V ;
+  mistake_V : V ;
+  mow_V : V ;
+  overcome_V : V ;
+  overdo_V : V ;
+  overtake_V : V ;
+  overthrow_V : V ;
+  pay_V : V ;
+  plead_V : V ;
+  prove_V : V ;
+  put_V : V ;
+  quit_V : V ;
+  read_V : V ;
+  rid_V : V ;
+  ride_V : V ;
+  ring_V : V ;
+  rise_V : V ;
+  run_V : V ;
+  saw_V : V ;
+  say_V : V ;
+  see_V : V ;
+  seek_V : V ;
+  sell_V : V ;
+  send_V : V ;
+  set_V : V ;
+  sew_V : V ;
+  shake_V : V ;
+  shave_V : V ;
+  shear_V : V ;
+  shed_V : V ;
+  shine_V : V ;
+  shoe_V : V ;
+  shoot_V : V ;
+  show_V : V ;
+  shrink_V : V ;
+  shut_V : V ;
+  sing_V : V ;
+  sink_V : V ;
+  sit_V : V ;
+  sleep_V : V ;
+  slay_V : V ;
+  slide_V : V ;
+  sling_V : V ;
+  slit_V : V ;
+  smite_V : V ;
+  sow_V : V ;
+  speak_V : V ;
+  speed_V : V ;
+  spend_V : V ;
+  spill_V : V ;
+  spin_V : V ;
+  spit_V : V ;
+  split_V : V ;
+  spread_V : V ;
+  spring_V : V ;
+  stand_V : V ;
+  steal_V : V ;
+  stick_V : V ;
+  sting_V : V ;
+  stink_V : V ;
+  stride_V : V ;
+  strike_V : V ;
+  string_V : V ;
+  strive_V : V ;
+  swear_V : V ;
+  sweep_V : V ;
+  swell_V : V ;
+  swim_V : V ;
+  swing_V : V ;
+  take_V : V ;
+  teach_V : V ;
+  tear_V : V ;
+  tell_V : V ;
+  think_V : V ;
+  thrive_V : V ;
+  throw_V : V ;
+  thrust_V : V ;
+  tread_V : V ;
+  understand_V : V ;
+  uphold_V : V ;
+  upset_V : V ;
+  wake_V : V ;
+  wear_V : V ;
+  weave_V : V ;
+  wed_V : V ;
+  weep_V : V ;
+  wind_V : V ;
+  win_V : V ;
+  withhold_V : V ;
+  withstand_V : V ;
+  wring_V : V ;
+  write_V : V ;
+-}  
+}
diff --git a/lib/src/latvian/LangLav.gf b/lib/src/latvian/LangLav.gf
new file mode 100644
--- /dev/null
+++ b/lib/src/latvian/LangLav.gf
@@ -0,0 +1,10 @@
+--# -path=.:../abstract:../common:../prelude
+
+concrete LangLav of Lang = 
+  GrammarLav,
+  LexiconLav
+  ** {
+
+flags startcat = Phr ; unlexer = text ; lexer = text ;
+
+} ;
diff --git a/lib/src/latvian/LexiconLav.gf b/lib/src/latvian/LexiconLav.gf
new file mode 100644
--- /dev/null
+++ b/lib/src/latvian/LexiconLav.gf
@@ -0,0 +1,388 @@
+--# -path=.:prelude
+
+concrete LexiconLav of Lexicon = CatLav ** 
+  open ParadigmsLav, IrregLav, Prelude in {
+
+flags 
+  optimize=values ;
+  coding = utf8 ;
+  
+lin
+  airplane_N = mkN "lidmašīna" ;
+  come_V = mkV "nākt" "nāku" "nācu" ;
+  bad_A = mkA "slikts" ;
+  
+  walk_V = mkV "doties" "dodos" "devos" ;
+--  please_V2 = mkV "priecēt" second_conjugation ;
+  love_V2   = mkV "mīlēt"   third_conjugation  ;
+--  say_V = mkV "sacīt" third_conjugation ; 
+--  be_V  = mkV "būt" ;
+
+{-  
+  answer_V2S = mkV2S (mkV "answer" "answered") toP ;
+  apartment_N = regN "apartment" ;
+  apple_N = regN "apple" ;
+  art_N = regN "art" ;
+  ask_V2Q = mkV2Q (regV "ask") noPrep ;
+  baby_N = regN "baby" ;
+  bad_A = mkADeg "bad" "worse" "worst" "badly" ;
+  bank_N = regN "bank" ;
+  beautiful_A = compoundADeg (regA "beautiful") ;
+  become_VA = mkVA (irregV "become" "became" "become") ;
+  beer_N = regN "beer" ;
+  beg_V2V = mkV2V (regDuplV "beg") noPrep toP ;
+  big_A = duplADeg "big" ;
+  bike_N = regN "bike" ;
+  bird_N = regN "bird" ;
+  black_A = regADeg "black" ;
+  blue_A = regADeg "blue" ;
+  boat_N = regN "boat" ;
+  book_N = regN "book" ;
+  boot_N = regN "boot" ;
+  boss_N = mkN human (regN "boss") ;
+  boy_N = mkN masculine (regN "boy") ;
+  bread_N = regN "bread" ;
+  break_V2 = dirV2 (irregV "break" "broke" "broken") ;
+  broad_A = regADeg "broad" ;
+  brother_N2 = mkN2 (mkN masculine (mkN "brother")) (mkPrep "of") ;
+  brown_A = regADeg "brown" ;
+  butter_N = regN "butter" ;
+  buy_V2 = dirV2 (irregV "buy" "bought" "bought") ;
+  camera_N = regN "camera" ;
+  cap_N = regN "cap" ;
+  car_N = regN "car" ;
+  carpet_N = regN "carpet" ;
+  cat_N = regN "cat" ;
+  ceiling_N = regN "ceiling" ;
+  chair_N = regN "chair" ;
+  cheese_N = regN "cheese" ;
+  child_N = mk2N "child" "children" ;
+  church_N = regN "church" ;
+  city_N = regN "city" ;
+  clean_A = regADeg "clean" ;
+  clever_A = mkA "clever" "cleverer" ;
+  close_V2 = dirV2 (regV "close") ;
+  coat_N = regN "coat" ;
+  cold_A = regADeg "cold" ;
+  come_V = (irregV "come" "came" "come") ;
+  computer_N = regN "computer" ;
+  country_N = regN "country" ;
+  cousin_N = mkN human (regN "cousin") ;
+  cow_N = regN "cow" ;
+  die_V = (regV "die") ;
+  dirty_A = regADeg "dirty" ;
+  distance_N3 = mkN3 (regN "distance") fromP toP ;
+  doctor_N = mkN human (regN "doctor") ;
+  dog_N = regN "dog" ;
+  door_N = regN "door" ;
+  drink_V2 = dirV2 (irregV "drink" "drank" "drunk") ;
+  easy_A2V = mkA2V (regA "easy") forP ;
+  eat_V2 = dirV2 (irregV "eat" "ate" "eaten") ;
+  empty_A = regADeg "empty" ;
+  enemy_N = regN "enemy" ;
+  factory_N = regN "factory" ;
+  father_N2 = mkN2 (mkN masculine (mkN "father")) (mkPrep "of") ;
+  fear_VS = mkVS (regV "fear") ;
+  find_V2 = dirV2 (irregV "find" "found" "found") ;
+  fish_N = mk2N "fish" "fish" ;
+  floor_N = regN "floor" ;
+  forget_V2 = dirV2 (irregDuplV "forget" "forgot" "forgotten") ;
+  fridge_N = regN "fridge" ;
+  friend_N = mkN human (regN "friend") ;
+  fruit_N = regN "fruit" ;
+  fun_AV = mkAV (regA "fun") ;
+  garden_N = regN "garden" ;
+  girl_N = mkN feminine (regN "girl") ;
+  glove_N = regN "glove" ;
+  gold_N = regN "gold" ;
+  good_A = mkADeg "good" "better" "best" "well" ;
+  go_V = mk5V "go" "goes" "went" "gone" "going" ;
+  green_A = regADeg "green" ;
+  harbour_N = regN "harbour" ;
+  hate_V2 = dirV2 (regV "hate") ;
+  hat_N = regN "hat" ;
+  hear_V2 = dirV2 (irregV "hear" "heard" "heard") ;
+  hill_N = regN "hill" ;
+  hope_VS = mkVS (regV "hope") ;
+  horse_N = regN "horse" ;
+  hot_A = duplADeg "hot" ;
+  house_N = regN "house" ;
+  important_A = compoundADeg (regA "important") ;
+  industry_N = regN "industry" ;
+  iron_N = regN "iron" ;
+  king_N = mkN masculine (regN "king") ;
+  know_V2 = dirV2 (irregV "know" "knew" "known") ;
+  know_VS = mkVS (irregV "know" "knew" "known") ;
+  lake_N = regN "lake" ;
+  lamp_N = regN "lamp" ;
+  learn_V2 = dirV2 (regV "learn") ;
+  leather_N = regN "leather" ;
+  leave_V2 = dirV2 (irregV "leave" "left" "left") ;
+  like_V2 = dirV2 (regV "like") ;
+  listen_V2 = prepV2 (regV "listen") toP ;
+  live_V = (regV "live") ;
+  long_A = regADeg "long" ;
+  lose_V2 = dirV2 (irregV "lose" "lost" "lost") ;
+  love_N = regN "love" ;
+  love_V2 = dirV2 (regV "love") ;
+  man_N = mkN masculine (mk2N "man" "men") ;
+  married_A2 = mkA2 (regA "married") toP ;
+  meat_N = regN "meat" ;
+  milk_N = regN "milk" ;
+  moon_N = regN "moon" ;
+  mother_N2 = mkN2 (mkN feminine (mkN "mother")) (mkPrep "of") ;
+  mountain_N = regN "mountain" ;
+  music_N = regN "music" ;
+  narrow_A = regADeg "narrow" ;
+  new_A = regADeg "new" ;
+  newspaper_N = regN "newspaper" ;
+  oil_N = regN "oil" ;
+  old_A = regADeg "old" ;
+  open_V2 = dirV2 (regV "open") ;
+  paint_V2A = mkV2A (regV "paint") noPrep ;
+  paper_N = regN "paper" ;
+  paris_PN = mkPN (mkN nonhuman (mkN "Paris")) ;
+  peace_N = regN "peace" ;
+  pen_N = regN "pen" ;
+  planet_N = regN "planet" ;
+  plastic_N = regN "plastic" ;
+  play_V2 = dirV2 (regV "play") ;
+  policeman_N = mkN masculine (mkN "policeman" "policemen") ;
+  priest_N = mkN human (regN "priest") ;
+  probable_AS = mkAS (regA "probable") ;
+  queen_N = mkN feminine (regN "queen") ;
+  radio_N = regN "radio" ;
+  rain_V0 = mkV0 (regV "rain") ;
+  read_V2 = dirV2 (irregV "read" "read" "read") ;
+  red_A = duplADeg "red" ;
+  religion_N = regN "religion" ;
+  restaurant_N = regN "restaurant" ;
+  river_N = regN "river" ;
+  rock_N = regN "rock" ;
+  roof_N = regN "roof" ;
+  rubber_N = regN "rubber" ;
+  run_V = (irregDuplV "run" "ran" "run") ;
+  say_VS = mkVS (irregV "say" "said" "said") ;
+  school_N = regN "school" ;
+  science_N = regN "science" ;
+  sea_N = regN "sea" ;
+  seek_V2 = dirV2 (irregV "seek" "sought" "sought") ;
+  see_V2 = dirV2 (irregV "see" "saw" "seen") ;
+  sell_V3 = dirV3 (irregV "sell" "sold" "sold") toP ;
+  send_V3 = dirV3 (irregV "send" "sent" "sent") toP ;
+  sheep_N = mk2N "sheep" "sheep" ;
+  ship_N = regN "ship" ;
+  shirt_N = regN "shirt" ;
+  shoe_N = regN "shoe" ;
+  shop_N = regN "shop" ;
+  short_A = regADeg "short" ;
+  silver_N = regN "silver" ;
+  sister_N = mkN feminine (mkN "sister") ;
+  sleep_V = (irregV "sleep" "slept" "slept") ;
+  small_A = regADeg "small" ;
+  snake_N = regN "snake" ;
+  sock_N = regN "sock" ;
+  speak_V2 = dirV2 (irregV "speak" "spoke" "spoken") ;
+  star_N = regN "star" ;
+  steel_N = regN "steel" ;
+  stone_N = regN "stone" ;
+  stove_N = regN "stove" ;
+  student_N = mkN human (regN "student") ;
+  stupid_A = mkA "stupid" ;
+  sun_N = regN "sun" ;
+  switch8off_V2 = dirV2 (partV (regV "switch") "off") ;
+  switch8on_V2 = dirV2 (partV (regV "switch") "on") ;
+  table_N = regN "table" ;
+  talk_V3 = mkV3 (regV "talk") toP aboutP ;
+  teacher_N = mkN human (regN "teacher") ;
+  teach_V2 = dirV2 (irregV "teach" "taught" "taught") ;
+  television_N = regN "television" ;
+  thick_A = regADeg "thick" ;
+  thin_A = duplADeg "thin" ;
+  train_N = regN "train" ;
+  travel_V = (regDuplV "travel") ;
+  tree_N = regN "tree" ;
+ ---- trousers_N = regN "trousers" ;
+  ugly_A = mkA "ugly" ;
+  understand_V2 = dirV2 (irregV "understand" "understood" "understood") ;
+  university_N = regN "university" ;
+  village_N = regN "village" ;
+  wait_V2 = prepV2 (regV "wait") forP ;
+  walk_V = (regV "walk") ;
+  warm_A = regADeg "warm" ;
+  war_N = regN "war" ;
+  watch_V2 = dirV2 (regV "watch") ;
+  water_N = regN "water" ;
+  white_A = mkA "white" ;
+  window_N = regN "window" ;
+  wine_N = regN "wine" ;
+  win_V2 = dirV2 (irregDuplV "win" "won" "won") ;
+  woman_N = mkN feminine (mk2N "woman" "women") ;
+  wonder_VQ = mkVQ (mkV "wonder" "wondered") ;
+  wood_N = regN "wood" ;
+  write_V2 = dirV2 (irregV "write" "wrote" "written") ;
+  yellow_A = mkA "yellow" ;
+  young_A = regADeg "young" ;
+
+  do_V2 = dirV2 (mk5V "do" "does" "did" "done" "doing") ;
+  now_Adv = mkAdv "now" ;
+  already_Adv = mkAdv "already" ;
+  song_N = regN "song" ;
+  add_V3 = dirV3 (regV "add") toP ;
+  number_N = regN "number" ;
+  put_V2 = prepV2 (irregDuplV "put" "put" "put") noPrep ;
+  stop_V = regDuplV "stop" ;
+  jump_V = regV "jump" ;
+
+  left_Ord = mkOrd "left" ;
+  right_Ord = mkOrd "right" ;
+  far_Adv = mkAdv "far" ;
+  correct_A = (regA "correct") ;
+  dry_A = regA "dry" ;
+  dull_A = regA "dull" ;
+  full_A = regA "full" ;
+  heavy_A = regA "heavy" ;
+  near_A = regA "near" ;
+  rotten_A = (regA "rotten") ;
+  round_A = regA "round" ;
+  sharp_A = regA "sharp" ;
+  smooth_A = regA "smooth" ;
+  straight_A = regA "straight" ;
+  wet_A = regA "wet" ; ----
+  wide_A = regA "wide" ;
+  animal_N = regN "animal" ;
+  ashes_N = regN "ash" ; -- FIXME: plural only?
+  back_N = regN "back" ;
+  bark_N = regN "bark" ;
+  belly_N = regN "belly" ;
+  blood_N = regN "blood" ;
+  bone_N = regN "bone" ;
+  breast_N = regN "breast" ;
+  cloud_N = regN "cloud" ;
+  day_N = regN "day" ;
+  dust_N = regN "dust" ;
+  ear_N = regN "ear" ;
+  earth_N = regN "earth" ;
+  egg_N = regN "egg" ;
+  eye_N = regN "eye" ;
+  fat_N = regN "fat" ;
+  feather_N = regN "feather" ;
+  fingernail_N = regN "fingernail" ;
+  fire_N = regN "fire" ;
+  flower_N = regN "flower" ;
+  fog_N = regN "fog" ;
+  foot_N = mk2N "foot" "feet" ;
+  forest_N = regN "forest" ;
+  grass_N = regN "grass" ;
+  guts_N = regN "gut" ; -- FIXME: no singular
+  hair_N = regN "hair" ;
+  hand_N = regN "hand" ;
+  head_N = regN "head" ;
+  heart_N = regN "heart" ;
+  horn_N = regN "horn" ;
+  husband_N = mkN masculine (regN "husband") ;
+  ice_N = regN "ice" ;
+  knee_N = regN "knee" ;
+  leaf_N = mk2N "leaf" "leaves" ;
+  leg_N = regN "leg" ;
+  liver_N = regN "liver" ;
+  louse_N = mk2N "louse" "lice" ;
+  mouth_N = regN "mouth" ;
+  name_N = regN "name" ;
+  neck_N = regN "neck" ;
+  night_N = regN "night" ;
+  nose_N = regN "nose" ;
+  person_N = mkN human (regN "person") ;
+  rain_N = regN "rain" ;
+  road_N = regN "road" ;
+  root_N = regN "root" ;
+  rope_N = regN "rope" ;
+  salt_N = regN "salt" ;
+  sand_N = regN "sand" ;
+  seed_N = regN "seed" ;
+  skin_N = regN "skin" ;
+  sky_N = regN "sky" ;
+  smoke_N = regN "smoke" ;
+  snow_N = regN "snow" ;
+  stick_N = regN "stick" ;
+  tail_N = regN "tail" ;
+  tongue_N = regN "tongue" ;
+  tooth_N = mk2N "tooth" "teeth" ;
+  wife_N = mkN feminine (mk2N "wife" "wives") ;
+  wind_N = regN "wind" ;
+  wing_N = regN "wing" ;
+  worm_N = regN "worm" ;
+  year_N = regN "year" ;
+  blow_V = IrregEng.blow_V ;
+  breathe_V = dirV2 (regV "breathe") ;
+  burn_V = IrregEng.burn_V ;
+  dig_V = IrregEng.dig_V ;
+  fall_V = IrregEng.fall_V ;
+  float_V = regV "float" ;
+  flow_V = regV "flow" ;
+  fly_V = IrregEng.fly_V ;
+  freeze_V = IrregEng.freeze_V ;
+  give_V3 = dirV3 give_V toP ;
+  laugh_V = regV "laugh" ;
+  lie_V = IrregEng.lie_V ;
+  play_V = regV "play" ;
+  sew_V = IrregEng.sew_V ;
+  sing_V = IrregEng.sing_V ;
+  sit_V = IrregEng.sit_V ;
+  smell_V = regV "smell" ;
+  spit_V = IrregEng.spit_V ;
+  stand_V = IrregEng.stand_V ;
+  swell_V = IrregEng.swell_V ;
+  swim_V = IrregEng.swim_V ;
+  think_V = IrregEng.think_V ;
+  turn_V = regV "turn" ;
+  vomit_V = mkV "vomit" "vomited" ;
+
+  bite_V2 = dirV2 IrregEng.bite_V ;
+  count_V2 = dirV2 (regV "count") ;
+  cut_V2 = dirV2 IrregEng.cut_V ;
+  fear_V2 = dirV2 (regV "fear") ;
+  fight_V2 = dirV2 fight_V ;
+  hit_V2 = dirV2 hit_V ;
+  hold_V2 = dirV2 hold_V ;
+  hunt_V2 = dirV2 (regV "hunt") ;
+  kill_V2 = dirV2 (regV "kill") ;
+  pull_V2 = dirV2 (regV "pull") ;
+  push_V2 = dirV2 (regV "push") ;
+  rub_V2 = dirV2 (regDuplV "rub") ;
+  scratch_V2 = dirV2 (regV "scratch") ;
+  split_V2 = dirV2 split_V ;
+  squeeze_V2 = dirV2 (regV "squeeze") ;
+  stab_V2 = dirV2 (regDuplV "stab") ;
+  suck_V2 = dirV2 (regV "suck") ;
+  throw_V2 = dirV2 throw_V ;
+  tie_V2 = dirV2 (regV "tie") ;
+  wash_V2 = dirV2 (regV "wash") ;
+  wipe_V2 = dirV2 (regV "wipe") ;
+
+--  other_A = regA "other" ;
+
+  grammar_N = regN "grammar" ;
+  language_N = regN "language" ;
+  rule_N = regN "rule" ;
+
+-- added 4/6/2007
+    john_PN = mkPN (mkN masculine (mkN "John")) ;
+    question_N = regN "question" ;
+    ready_A = regA "ready" ;
+    reason_N = regN "reason" ;
+    today_Adv = mkAdv "today" ;
+    uncertain_A = regA "uncertain" ;
+
+oper
+  aboutP = mkPrep "about" ;
+  atP = mkPrep "at" ;
+  forP = mkPrep "for" ;
+  fromP = mkPrep "from" ;
+  inP = mkPrep "in" ;
+  onP = mkPrep "on" ;
+  toP = mkPrep "to" ;
+
+-}
+  
+} ;
diff --git a/lib/src/latvian/MakeStructuralLav.gf b/lib/src/latvian/MakeStructuralLav.gf
new file mode 100644
--- /dev/null
+++ b/lib/src/latvian/MakeStructuralLav.gf
@@ -0,0 +1,13 @@
+--# -path=.:../common:../abstract
+
+resource MakeStructuralLav = open CatLav, ParadigmsLav, ResLav, MorphoLav, Prelude in {
+{-
+oper 
+  mkSubj : Str -> Subj = \x -> 
+    lin Subj {s = x} ;
+  mkNP : Str -> ParadigmsEng.Number -> NP = \s,n ->
+    lin NP (regNP s n) ;
+  mkIDet : Str -> ParadigmsEng.Number -> IDet = \s,n ->
+    lin IDet {s = s ; n = n} ;
+-}
+}
diff --git a/lib/src/latvian/MorphoLav.gf b/lib/src/latvian/MorphoLav.gf
new file mode 100644
--- /dev/null
+++ b/lib/src/latvian/MorphoLav.gf
@@ -0,0 +1,43 @@
+--# -path=.:../../prelude
+
+--1 A Simple English Resource Morphology
+--
+-- Aarne Ranta 2002 -- 2005
+--
+-- This resource morphology contains definitions needed in the resource
+-- syntax. To build a lexicon, it is better to use $ParadigmsEng$, which
+-- gives a higher-level access to this module.
+
+resource MorphoLav = open Prelude, (Predef=Predef), ResLav in {
+
+  flags optimize=all ;
+
+--2 Determiners
+{-
+  oper
+
+  mkDeterminer : Number -> Str ->
+    {s : Str ; sp : NPCase => Str; n : Number ; hasNum : Bool} = \n,s ->
+    {s = s;
+     sp = \\c => regGenitiveS s ! npcase2case c ;
+     n = n ;
+     hasNum = True ; -- doesn't matter since s = sp
+     } ;
+
+--2 Pronouns
+
+
+  mkPron : (i,me,my,mine : Str) -> Number -> Person -> Gender ->
+    {s : NPCase => Str ; sp : Case => Str ; a : Agr} =
+     \i,me,my,mine,n,p,g -> {
+     s = table {
+       NCase Nom => i ;
+       NPAcc => me ;
+       NCase Gen => my
+       } ;
+     a = toAgr n p g ;
+     sp = regGenitiveS mine
+   } ;
+-}
+} ;
+
diff --git a/lib/src/latvian/NounLav.gf b/lib/src/latvian/NounLav.gf
new file mode 100644
--- /dev/null
+++ b/lib/src/latvian/NounLav.gf
@@ -0,0 +1,150 @@
+concrete NounLav of Noun = CatLav ** open MorphoLav, ResLav, Prelude in {
+flags optimize=all_subs ;
+
+  lin
+
+    UseN n   = {s = \\_ => n.s ; g = n.g} ;
+  
+	DetCN det cn = {
+		s = \\c => det.s ! cn.g ! c ++ cn.s ! det.d ! det.n ! c ;
+		g = cn.g ;
+		n = det.n ;
+		p = P3 ;
+	  } ;
+	  
+	  
+	  
+{-
+    DetCN det cn = {
+      s = \\c => det.s ++ cn.s ! det.n ! c ; 
+      a = agrgP3 det.n cn.g
+      } ;
+
+    UsePN pn = pn ** {a = agrgP3 Sg pn.g} ;
+    UsePron p = p ;
+
+    PredetNP pred np = {
+      s = \\c => pred.s ++ np.s ! c ;
+      a = np.a
+      } ;
+
+    PPartNP np v2 = {
+      s = \\c => np.s ! c ++ v2.s ! VPPart ;
+      a = np.a
+      } ;
+
+    RelNP np rs = {
+      s = \\c => np.s ! c ++ "," ++ rs.s ! np.a ;
+      a = np.a
+      } ;
+
+    AdvNP np adv = {
+      s = \\c => np.s ! c ++ adv.s ;
+      a = np.a
+      } ;
+
+    DetQuant quant num = {
+      s  = quant.s ! num.hasCard ! num.n ++ num.s ! Nom;
+      sp = \\c => case num.hasCard of {
+                     False => quant.sp ! num.hasCard ! num.n ! c ++ num.s ! Nom ;
+                     True  => quant.sp ! num.hasCard ! num.n ! Nom ++ num.s ! c
+                  } ;
+      n  = num.n
+      } ;
+
+    DetQuantOrd quant num ord = {
+      s  = quant.s ! num.hasCard ! num.n ++ num.s ! Nom ++ ord.s ! Nom; 
+      sp = \\c => quant.sp ! num.hasCard ! num.n ! Nom ++ num.s ! Nom ++ ord.s ! c ; 
+      n  = num.n
+      } ;
+
+    DetNP det = {
+      s = det.sp ;
+      a = agrP3 det.n
+      } ;
+
+    PossPron p = {
+      s = \\_,_ => p.s ! Gen ;
+      sp = \\_,_ => p.sp 
+      } ;
+
+    NumSg = {s = \\c => []; n = Sg ; hasCard = False} ;
+    NumPl = {s = \\c => []; n = Pl ; hasCard = False} ;
+---b    NoOrd = {s = []} ;
+
+    NumCard n = n ** {hasCard = True} ;
+
+    NumDigits n = {s = n.s ! NCard ; n = n.n} ;
+    OrdDigits n = {s = n.s ! NOrd} ;
+
+    NumNumeral numeral = {s = numeral.s ! NCard; n = numeral.n} ;
+    OrdNumeral numeral = {s = numeral.s ! NOrd} ;
+
+    AdNum adn num = {s = \\c => adn.s ++ num.s!c ; n = num.n} ;
+
+    OrdSuperl a = {s = \\c => a.s ! AAdj Superl c } ;
+
+    DefArt = {
+      s  = \\hasCard,n => artDef ;
+      sp = \\hasCard,n => case <n,hasCard> of {
+        <Sg,False> => table { Gen => "its"; _ => "it" } ;
+        <Pl,False> => table { Nom => "they"; Acc => "them"; Gen => "theirs" } ;
+        _          => \\c => artDef
+        }
+      } ;
+
+    IndefArt = {
+      s = \\hasCard,n => case <n,hasCard> of {
+        <Sg,False> => artIndef ;
+        _          => []
+        } ;
+      sp = \\hasCard,n => case <n,hasCard> of {
+        <Sg,False> => table { Gen => "one's"; _ => "one" };
+        <Pl,False> => table { Gen => "ones'"; _ => "ones" } ;
+        _          => \\c => []
+        }
+      } ;
+
+    MassNP cn = {
+      s = cn.s ! Sg ;
+      a = agrP3 Sg
+      } ;
+
+    UseN n = n ;
+    UseN2 n = n ;
+---b    UseN3 n = n ;
+
+    Use2N3 f = {
+      s = \\n,c => f.s ! n ! Nom ;
+      g = f.g ;
+      c2 = f.c2
+      } ;
+
+    Use3N3 f = {
+      s = \\n,c => f.s ! n ! Nom ;
+      g = f.g ;
+      c2 = f.c3
+      } ;
+
+    ComplN2 f x = {s = \\n,c => f.s ! n ! Nom ++ f.c2 ++ x.s ! c ; g = f.g} ;
+    ComplN3 f x = {
+      s = \\n,c => f.s ! n ! Nom ++ f.c2 ++ x.s ! c ;
+      g = f.g ;
+      c2 = f.c3
+      } ;
+
+    AdjCN ap cn = {
+      s = \\n,c => preOrPost ap.isPre (ap.s ! agrgP3 n cn.g) (cn.s ! n ! c) ;
+      g = cn.g
+      } ;
+    RelCN cn rs = {
+      s = \\n,c => cn.s ! n ! c ++ rs.s ! agrgP3 n cn.g ;
+      g = cn.g
+      } ;
+    AdvCN cn ad = {s = \\n,c => cn.s ! n ! c ++ ad.s ; g = cn.g} ;
+
+    SentCN cn sc = {s = \\n,c => cn.s ! n ! c ++ sc.s ; g = cn.g} ;
+
+    ApposCN cn np = {s = \\n,c => cn.s ! n ! Nom ++ np.s ! c ; g = cn.g} ;
+-}
+}
diff --git a/lib/src/latvian/NumeralLav.gf b/lib/src/latvian/NumeralLav.gf
new file mode 100644
--- /dev/null
+++ b/lib/src/latvian/NumeralLav.gf
@@ -0,0 +1,95 @@
+concrete NumeralLav of Numeral = CatLav ** open ResLav in {
+{-
+lincat 
+  Digit = {s : DForm => CardOrd => Case => Str} ;
+  Sub10 = {s : DForm => CardOrd => Case => Str ; n : Number} ;
+  Sub100     = {s : CardOrd => Case => Str ; n : Number} ;
+  Sub1000    = {s : CardOrd => Case => Str ; n : Number} ;
+  Sub1000000 = {s : CardOrd => Case => Str ; n : Number} ;
+
+lin num x = x ;
+lin n2 = let two = mkNum "two"   "twelve"   "twenty" "second" in
+         {s = \\f,o => case <f,o> of {
+             <teen,NOrd> => regGenitiveS "twelfth" ;
+             _ => two.s ! f ! o
+             }
+         } ;
+
+lin n3 = mkNum "three" "thirteen" "thirty" "third" ;
+lin n4 = mkNum "four"  "fourteen" "forty" "fourth" ;
+lin n5 = mkNum "five"  "fifteen"  "fifty" "fifth" ;
+lin n6 = regNum "six" ;
+lin n7 = regNum "seven" ;
+lin n8 = mkNum "eight" "eighteen" "eighty" "eighth" ;
+lin n9 = mkNum "nine" "nineteen" "ninety" "ninth" ;
+
+lin pot01 = mkNum "one" "eleven" "ten" "first" ** {n = Sg} ;
+lin pot0 d = d ** {n = Pl} ;
+lin pot110 = regCardOrd "ten" ** {n = Pl} ;
+lin pot111 = regCardOrd "eleven" ** {n = Pl} ;
+lin pot1to19 d = {s = d.s ! teen} ** {n = Pl} ;
+lin pot0as1 n = {s = n.s ! unit}  ** {n = n.n} ;
+lin pot1 d = {s = d.s ! ten} ** {n = Pl} ;
+lin pot1plus d e = {
+   s = \\o,c => d.s ! ten ! NCard ! Nom ++ "-" ++ e.s ! unit ! o ! c ; n = Pl} ;
+lin pot1as2 n = n ;
+lin pot2 d = {s = \\o,c => d.s ! unit ! NCard ! Nom ++ mkCard o "hundred" ! c}  ** {n = Pl} ;
+lin pot2plus d e = {
+  s = \\o,c => d.s ! unit ! NCard ! Nom ++ "hundred" ++ "and" ++ e.s ! o ! c ; n = Pl} ;
+lin pot2as3 n = n ;
+lin pot3 n = {
+  s = \\o,c => n.s ! NCard ! Nom ++ mkCard o "thousand" ! c ; n = Pl} ;
+lin pot3plus n m = {
+  s = \\o,c => n.s ! NCard ! Nom ++ "thousand" ++ m.s ! o ! c; n = Pl} ;
+
+-- numerals as sequences of digits
+
+  lincat 
+    Dig = TDigit ;
+
+  lin
+    IDig d = d ** {tail = T1} ;
+
+    IIDig d i = {
+      s = \\o,c => d.s ! NCard ! Nom ++ commaIf i.tail ++ i.s ! o ! c ;
+      n = Pl ;
+      tail = inc i.tail
+    } ;
+
+    D_0 = mkDig "0" ;
+    D_1 = mk3Dig "1" "1st" Sg ;
+    D_2 = mk2Dig "2" "2nd" ;
+    D_3 = mk2Dig "3" "3rd" ;
+    D_4 = mkDig "4" ;
+    D_5 = mkDig "5" ;
+    D_6 = mkDig "6" ;
+    D_7 = mkDig "7" ;
+    D_8 = mkDig "8" ;
+    D_9 = mkDig "9" ;
+
+  oper
+    commaIf : DTail -> Str = \t -> case t of {
+      T3 => "," ;
+      _ => []
+      } ;
+
+    inc : DTail -> DTail = \t -> case t of {
+      T1 => T2 ;
+      T2 => T3 ;
+      T3 => T1
+      } ;
+
+    mk2Dig : Str -> Str -> TDigit = \c,o -> mk3Dig c o Pl ;
+    mkDig : Str -> TDigit = \c -> mk2Dig c (c + "th") ;
+
+    mk3Dig : Str -> Str -> Number -> TDigit = \c,o,n -> {
+      s = table {NCard => regGenitiveS c ; NOrd => regGenitiveS o} ;
+      n = n
+      } ;
+
+    TDigit = {
+      n : Number ;
+      s : CardOrd => Case => Str
+    } ;
+-}
+}
diff --git a/lib/src/latvian/OverloadLav.gf b/lib/src/latvian/OverloadLav.gf
new file mode 100644
--- /dev/null
+++ b/lib/src/latvian/OverloadLav.gf
@@ -0,0 +1,1 @@
+resource OverloadLav = Overload with (Grammar = GrammarLav) ;
diff --git a/lib/src/latvian/ParadigmsAdjectivesLav.gf b/lib/src/latvian/ParadigmsAdjectivesLav.gf
new file mode 100644
--- /dev/null
+++ b/lib/src/latvian/ParadigmsAdjectivesLav.gf
@@ -0,0 +1,222 @@
+-- Latvian adjective paradigms - by Normunds Grūzītis; copied off mini-grammar as of 2011-07-12
+
+resource ParadigmsAdjectivesLav = open 
+  (Predef=Predef), 
+  Prelude, 
+  ResLav,
+  CatLav
+  in {
+
+flags
+  coding = utf8;
+  
+oper
+	Adj      : Type = {s : Degree => Definite => Gender => Number => Case => Str} ;
+	
+-- ADJECTIVES
+
+  -- TODO: Parameters and paradigms should be redesigned due to the many NON_EXISTENT forms..?
+
+  -- To keep the code and user interface (parameters) simple, Masc lemmas are expected.
+
+  -- No parameters - default assumptions (type)
+  mkAdjective : Str -> Adj = \lemma ->
+    case lemma of {
+      s + "ais"     => mkAdjective_Rel lemma ;
+      s + ("s"|"š") => mkAdjective_Qual lemma ;
+      s + #vowel    => mkAdjective_Indecl lemma
+    } ;
+
+  -- Specified type - no defaults
+  mkAdjectiveByType : Str -> AdjType -> Adj = \lemma,type ->
+    case type of {
+      AdjQual   => mkAdjective_Qual lemma ;
+      AdjRel    => mkAdjective_Rel lemma ;
+      AdjIndecl => mkAdjective_Indecl lemma
+    } ;
+
+  -- Indeclinable adjective: theoretically, any #vowel ending
+  mkAdjective_Indecl : Str -> Adj = \lemma -> {
+    s = table{
+      Posit  => \\_,_,_,_ => lemma ;
+      Compar => \\_,_,_,_ => lemma ;
+      Superl  => table {Indef => \\_,_,_ => NON_EXISTENT ; Def => \\_,_,_ => lemma}
+    }
+  } ;
+
+  -- Qualitative adjective: -s, -š
+  mkAdjective_Qual : Str -> Adj = \lemma -> {
+    s = table {
+      Posit  => table {Indef => mkAdjective_Pos lemma Indef ; Def => mkAdjective_Pos lemma Def} ;
+      Compar => table {Indef => mkAdjective_Comp lemma Indef ; Def => mkAdjective_Comp lemma Def} ;
+      Superl  => table {Indef => \\_,_,_ => NON_EXISTENT ; Def => mkAdjective_Sup lemma}
+    }
+  } ;
+
+  -- Relative adjective: -ais (Def only); -s, -š (Indef and Def)
+  mkAdjective_Rel : Str -> Adj = \lemma -> {
+    s = table {
+      Posit  => case lemma of {
+        s + "ais" => table {Indef => \\_,_,_ => NON_EXISTENT ; Def => mkAdjective_Pos lemma Def} ;
+        _         => table {Indef => mkAdjective_Pos lemma Indef ; Def => mkAdjective_Pos lemma Def}
+      } ;
+      Compar => table {Indef => \\_,_,_ => NON_EXISTENT ; Def => \\_,_,_ => NON_EXISTENT} ;
+      Superl  => table {Indef => \\_,_,_ => NON_EXISTENT ; Def => \\_,_,_ => NON_EXISTENT}
+    }
+  };
+
+  -- Positive degree: -s, -š (Indef and Def); -ais (Def only)
+  mkAdjective_Pos : Str -> Definite -> Gender => Number => Case => Str = \lemma,defin ->
+    let stem : Str = case lemma of {
+      s + "ais" => s ;
+      _ => Predef.tk 1 lemma
+    }
+    in case defin of {
+      Indef => table {
+        Masc => table {
+          Sg => table {
+            Nom => lemma ;
+            Gen => stem + "a" ;
+            Dat => stem + "am" ;
+            Acc => stem + "u" ;
+            Loc => stem + "ā"
+          } ;
+          Pl => table {
+            Nom => stem + "i" ;
+            Gen => stem + "us" ;
+            Dat => stem + "iem" ;
+            Acc => stem + "us" ;
+            Loc => stem + "os"
+          }
+        } ;
+        Fem => table {
+          Sg => table {
+            Nom => stem + "a" ;
+            Gen => stem + "as" ;
+            Dat => stem + "ai" ;
+            Acc => stem + "u" ;
+            Loc => stem + "ā"
+          } ;
+          Pl => table {
+            Nom => stem + "as" ;
+            Gen => stem + "u" ;
+            Dat => stem + "ām" ;
+            Acc => stem + "as" ;
+            Loc => stem + "ās"
+          }
+        }
+      } ;
+      Def => table {
+        Masc => table {
+          Sg => table {
+            Nom => stem + "ais" ;
+            Gen => stem + "ā" ;
+            Dat => case stem of {s + "ēj" => stem + "am" ; _ => stem + "ajam"} ;
+            Acc => stem + "o" ;
+            Loc => case stem of {s + "ēj" => stem + "ā" ; _ => stem + "ajā"}
+          } ;
+          Pl => table {
+            Nom => stem + "ie" ;
+            Gen => stem + "o" ;
+            Dat => case stem of {s + "ēj" => stem + "iem" ; _ => stem + "ajiem"} ;
+            Acc => stem + "os" ;
+            Loc => case stem of {s + "ēj" => stem + "os" ; _ => stem + "ajos"}
+          }
+        } ;
+        Fem => table {
+          Sg => table {
+            Nom => stem + "ā" ;
+            Gen => stem + "ās" ;
+            Dat => case stem of {s + "ēj" => stem + "ai" ; _ => stem + "ajai"} ;
+            Acc => stem + "o" ;
+            Loc => case stem of {s + "ēj" => stem + "ā" ; _ => stem + "ajā"}
+          } ;
+          Pl => table {
+            Nom => stem + "ās" ;
+            Gen => stem + "o" ;
+            Dat => case stem of {s + "ēj" => stem + "ām" ; _ => stem + "ajām"} ;
+            Acc => stem + "ās" ;
+            Loc => case stem of {s + "ēj" => stem + "ās" ; _ => stem + "ajās"}
+          }
+        }
+      }
+    } ;
+
+  -- Comparative degree: Qual only
+  mkAdjective_Comp : Str -> Definite -> Gender => Number => Case => Str = \lemma,defin ->
+    let stem : Str = Predef.tk 1 lemma
+    in case defin of {
+      Indef => table {
+        Masc => table {
+          Sg => table {
+            Nom => stem + "āks" ;
+            Gen => stem + "āka" ;
+            Dat => stem + "ākam" ;
+            Acc => stem + "āku" ;
+            Loc => stem + "ākā"
+          } ;
+          Pl => table {
+            Nom => stem + "āki" ;
+            Gen => stem + "āku" ;
+            Dat => stem + "ākiem" ;
+            Acc => stem + "ākus" ;
+            Loc => stem + "ākos"
+          }
+        } ;
+        Fem => table {
+          Sg => table {
+            Nom => stem + "āka" ;
+            Gen => stem + "ākas" ;
+            Dat => stem + "ākai" ;
+            Acc => stem + "āku" ;
+            Loc => stem + "ākā"
+          } ;
+          Pl => table {
+            Nom => stem + "ākas" ;
+            Gen => stem + "āku" ;
+            Dat => stem + "ākām" ;
+            Acc => stem + "ākas" ;
+            Loc => stem + "ākās"
+          }
+        }
+      } ;
+      Def => table {
+        Masc => table {
+          Sg => table {
+            Nom => stem + "ākais" ;
+            Gen => stem + "ākā" ;
+            Dat => stem + "ākajam" ;
+            Acc => stem + "āko" ;
+            Loc => stem + "ākajā"
+          } ;
+          Pl => table {
+            Nom => stem + "ākie" ;
+            Gen => stem + "āko" ;
+            Dat => stem + "ākajiem" ;
+            Acc => stem + "ākos" ;
+            Loc => stem + "ākajos"
+          }
+        } ;
+        Fem => table {
+          Sg => table {
+            Nom => stem + "ākā" ;
+            Gen => stem + "ākās" ;
+            Dat => stem + "ākajai" ;
+            Acc => stem + "āko" ;
+            Loc => stem + "ākajā"
+          } ;
+          Pl => table {
+            Nom => stem + "ākās" ;
+            Gen => stem + "āko" ;
+            Dat => stem + "ākajām" ;
+            Acc => stem + "ākās" ;
+            Loc => stem + "ākajās"
+          }
+        }
+      }
+    } ;
+
+  -- Superlative degree: Qual only, Def only
+  mkAdjective_Sup : Str -> Gender => Number => Case => Str = \lemma ->
+    \\g,n,c => "vis" + (mkAdjective_Comp lemma Def) ! g ! n ! c ;  
+} ;
diff --git a/lib/src/latvian/ParadigmsLav.gf b/lib/src/latvian/ParadigmsLav.gf
new file mode 100644
--- /dev/null
+++ b/lib/src/latvian/ParadigmsLav.gf
@@ -0,0 +1,739 @@
+--# -path=.:../abstract:../../prelude:../common
+
+--1 English Lexical Paradigms
+--
+-- Aarne Ranta 2003--2005
+--
+-- This is an API for the user of the resource grammar 
+-- for adding lexical items. It gives functions for forming
+-- expressions of open categories: nouns, adjectives, verbs.
+-- 
+-- Closed categories (determiners, pronouns, conjunctions) are
+-- accessed through the resource syntax API, $Structural.gf$. 
+--
+-- The main difference with $MorphoEng.gf$ is that the types
+-- referred to are compiled resource grammar types. We have moreover
+-- had the design principle of always having existing forms, rather
+-- than stems, as string arguments of the paradigms.
+--
+-- The structure of functions for each word class $C$ is the following:
+-- first we give a handful of patterns that aim to cover all
+-- regular cases. Then we give a worst-case function $mkC$, which serves as an
+-- escape to construct the most irregular words of type $C$.
+-- However, this function should only seldom be needed: we have a
+-- separate module [``IrregEng`` ../../english/IrregEng.gf], 
+-- which covers irregular verbss.
+
+resource ParadigmsLav = open 
+  (Predef=Predef), 
+  Prelude, 
+  ParadigmsNounsLav,
+  ParadigmsAdjectivesLav,
+  ParadigmsVerbsLav,
+  ParadigmsPronounsLav,
+  ResLav,
+  CatLav
+  in {
+
+flags
+  coding = utf8;
+
+oper  
+  second_conjugation : VerbConj = C2 ;
+  third_conjugation  : VerbConj = C3 ;
+  
+  mkN = overload {
+    mkN : (lemma : Str) -> N = \l -> lin N (mkNoun l) ;
+
+    mkN : (lemma : Str) -> Bool -> N = \l,p -> lin N (mkNounByPal l p) ;
+    mkN : (lemma : Str) -> Gender -> N = \l,g -> lin N (mkNounByGend l g) ;
+    mkN : (lemma : Str) -> NounDecl -> N = \l,d -> lin N (mkNounByDecl l d) ;
+
+    mkN : (lemma : Str) -> Gender -> Bool -> N = \l,g,p -> lin N (mkNounByGendPal l g p) ;
+    mkN : (lemma : Str) -> NounDecl -> Bool -> N = \l,d,p -> lin N (mkNounByDeclPal l d p) ;
+    mkN : (lemma : Str) -> Gender -> NounDecl -> N = \l,g,d -> lin N (mkNounByGendDecl l g d) ;
+
+    mkN : (lemma : Str) -> Gender -> NounDecl -> Bool -> N = \l,g,d,p -> lin N (mkNounByGendDeclPal l g d p) ;
+  } ;
+
+  mkA = overload {
+    mkA : (lemma : Str) -> A = \s -> lin A (mkAdjective s) ;
+    mkA : (lemma : Str) -> AdjType -> A = \s,t -> lin A (mkAdjectiveByType s t) ;
+  } ;
+
+  mkV = overload {
+    mkV : (lemma : Str) -> V = \l -> lin V (mkVerb_Irreg l) ;
+    mkV : (lemma : Str) -> VerbConj -> V = \l,c -> lin V (mkVerb l c) ;
+    mkV : (lemma : Str) -> Str -> Str -> V = \l1,l2,l3 -> lin V (mkVerbC1 l1 l2 l3) ;
+  } ;
+  
+{-  
+  
+--2 Parameters 
+--
+-- To abstract over gender names, we define the following identifiers.
+
+oper
+  Gender : Type ; 
+
+  human     : Gender ;
+  nonhuman  : Gender ;
+  masculine : Gender ;
+  feminine : Gender ;
+
+-- To abstract over number names, we define the following.
+
+  Number : Type ; 
+
+  singular : Number ;
+  plural   : Number ;
+
+-- To abstract over case names, we define the following.
+
+  Case : Type ;
+
+  nominative : Case ;
+  genitive   : Case ;
+
+-- Prepositions are used in many-argument functions for rection.
+-- The resource category $Prep$ is used.
+
+
+
+--2 Nouns
+
+-- Nouns are constructed by the function $mkN$, which takes a varying
+-- number of arguments.
+
+  mkN : overload {
+
+-- The regular function captures the variants for nouns ending with
+-- "s","sh","x","z" or "y": "kiss - kisses", "flash - flashes"; 
+-- "fly - flies" (but "toy - toys"),
+
+    mkN : (flash : Str) -> N ;
+
+-- In practice the worst case is to give singular and plural nominative.
+
+    mkN : (man,men : Str) -> N ;
+
+-- The theoretical worst case: give all four forms.
+
+    mkN : (man,men,man's,men's : Str) -> N ;
+
+-- Change gender from the default $nonhuman$.
+
+    mkN : Gender -> N -> N ;
+
+--3 Compound nouns 
+--
+-- A compound noun is an uninflected string attached to an inflected noun,
+-- such as "baby boom", "chief executive officer".
+
+    mkN : Str -> N -> N
+  } ;
+
+
+--3 Relational nouns 
+
+  mkN2 : overload {
+    mkN2 : N -> Prep -> N2 ; -- access to
+    mkN2 : N -> Str -> N2 ; -- access to
+    mkN2 : Str -> Str -> N2 ; -- access to
+    mkN2 : N -> N2 ; -- wife of
+    mkN2 : Str -> N2 -- daughter of
+  } ;
+
+-- Use the function $mkPrep$ or see the section on prepositions below to  
+-- form other prepositions.
+--
+-- Three-place relational nouns ("the connection from x to y") need two prepositions.
+
+  mkN3 : N -> Prep -> Prep -> N3 ;
+
+
+
+--3 Proper names and noun phrases
+--
+-- Proper names, with a regular genitive, are formed from strings.
+
+  mkPN : overload {
+
+    mkPN : Str -> PN ;
+
+-- Sometimes a common noun can be reused as a proper name, e.g. "Bank"
+
+    mkPN : N -> PN
+  } ;
+
+--3 Determiners and quantifiers
+
+  mkQuant : overload {
+    mkQuant : (this, these : Str) -> Quant ;
+    mkQuant : (no_sg, no_pl, none_sg, non_pl : Str) -> Quant ;
+  } ;
+
+  mkOrd : Str -> Ord ;
+
+--2 Adjectives
+
+  mkA : overload {
+
+-- For regular adjectives, the adverbial and comparison forms are derived. This holds
+-- even for cases with the variations "happy - happily - happier - happiest",
+-- "free - freely - freer - freest", and "rude - rudest".
+
+    mkA : (happy : Str) -> A ;
+
+-- However, the duplication of the final consonant cannot be predicted,
+-- but a separate case is used to give the comparative
+
+    mkA : (fat,fatter : Str) -> A ;
+
+-- As many as four forms may be needed.
+
+    mkA : (good,better,best,well : Str) -> A 
+    } ;
+
+-- Regular comparison is formed by "more - most" for words with two vowels separated
+-- and terminated by some other letters. To force this or the opposite, 
+-- the following can be used:  
+
+    compoundA : A -> A ; -- -/more/most ditto
+    simpleA   : A -> A ; -- young,younger,youngest
+
+
+--3 Two-place adjectives
+
+  mkA2 : overload {
+    mkA2 : A -> Prep -> A2 ; -- absent from
+    mkA2 : A -> Str -> A2 ; -- absent from
+    mkA2 : Str -> Prep -> A2 ; -- absent from
+    mkA2 : Str -> Str -> A2 -- absent from
+
+  } ;
+
+
+--2 Adverbs
+
+-- Adverbs are not inflected. Most lexical ones have position
+-- after the verb. Some can be preverbal (e.g. "always").
+
+  mkAdv : Str -> Adv ;
+  mkAdV : Str -> AdV ;
+
+-- Adverbs modifying adjectives and sentences can also be formed.
+
+  mkAdA : Str -> AdA ;
+
+-- Adverbs modifying numerals
+
+  mkAdN : Str -> AdN ;
+
+--2 Prepositions
+--
+-- A preposition as used for rection in the lexicon, as well as to
+-- build $PP$s in the resource API, just requires a string.
+
+  mkPrep : Str -> Prep ;
+  noPrep : Prep ;
+
+-- (These two functions are synonyms.)
+
+--2 Conjunctions
+--
+
+  mkConj : overload {
+    mkConj : Str -> Conj ;                  -- and (plural agreement)
+    mkConj : Str -> Number -> Conj ;        -- or (agrement number given as argument)
+    mkConj : Str -> Str -> Conj ;           -- both ... and (plural)
+    mkConj : Str -> Str -> Number -> Conj ; -- either ... or (agrement number given as argument)
+  } ;
+
+--2 Verbs
+--
+
+-- Verbs are constructed by the function $mkV$, which takes a varying
+-- number of arguments.
+
+  mkV : overload {
+
+-- The regular verb function recognizes the special cases where the last
+-- character is "y" ("cry-cries" but "buy-buys") or a sibilant
+-- ("kiss-"kisses", "jazz-jazzes", "rush-rushes", "munch - munches", 
+-- "fix - fixes").
+
+    mkV : (cry : Str) -> V ;
+
+-- Give the present and past forms for regular verbs where
+-- the last letter is duplicated in some forms,
+-- e.g. "rip - ripped - ripping".
+
+    mkV : (stop, stopped : Str) -> V ;
+
+-- There is an extensive list of irregular verbs in the module $IrregularEng$.
+-- In practice, it is enough to give three forms, 
+-- e.g. "drink - drank - drunk".
+
+    mkV : (drink, drank, drunk  : Str) -> V ;
+
+-- Irregular verbs with duplicated consonant in the present participle.
+ 
+    mkV : (run, ran, run, running  : Str) -> V ;
+
+-- Except for "be", the worst case needs five forms: the infinitive and
+-- the third person singular present, the past indicative, and the
+-- past and present participles.
+
+    mkV : (go, goes, went, gone, going : Str) -> V ;
+
+-- Adds a prefix to an exisiting verb. This is most useful to create
+-- prefix-variants of irregular verbs from $IrregEng$, e.g. "undertake".
+
+    mkV : Str -> V -> V ;
+  };
+
+-- Verbs with a particle.
+-- The particle, such as in "switch on", is given as a string.
+
+  partV  : V -> Str -> V ;
+
+-- Reflexive verbs.
+-- By default, verbs are not reflexive; this function makes them that.
+
+  reflV  : V -> V ;
+
+--3 Two-place verbs
+--
+-- Two-place verbs need a preposition, except the special case with direct object.
+-- (transitive verbs). Notice that a particle comes from the $V$.
+
+  mkV2 : overload {
+    mkV2  : Str -> V2 ;       -- kill
+    mkV2  : V -> V2 ;         -- hit
+    mkV2  : V -> Prep -> V2 ; -- believe in
+    mkV2  : V -> Str -> V2 ;  -- believe in
+    mkV2  : Str -> Prep -> V2 ; -- believe in
+    mkV2  : Str -> Str -> V2  -- believe in
+  };
+
+--3 Three-place verbs
+--
+-- Three-place (ditransitive) verbs need two prepositions, of which
+-- the first one or both can be absent.
+
+  mkV3 : overload {
+    mkV3  : V -> Prep -> Prep -> V3 ;   -- speak, with, about
+    mkV3  : V -> Prep -> V3 ;           -- give,_,to
+    mkV3  : V -> Str -> V3 ;            -- give,_,to
+    mkV3  : Str -> Str -> V3 ;          -- give,_,to
+    mkV3  : V -> V3 ;                   -- give,_,_
+    mkV3  : Str -> V3 ;                 -- give,_,_
+  };
+
+--3 Other complement patterns
+--
+-- Verbs and adjectives can take complements such as sentences,
+-- questions, verb phrases, and adjectives.
+
+  mkV0  : V -> V0 ;
+  mkVS  : V -> VS ;
+  mkV2S : V -> Prep -> V2S ;
+  mkVV  : V -> VV ;
+  mkV2V : V -> Prep -> Prep -> V2V ;
+  mkVA  : V -> VA ;
+  mkV2A : V -> Prep -> V2A ;
+  mkVQ  : V -> VQ ;
+  mkV2Q : V -> Prep -> V2Q ;
+
+  mkAS  : A -> AS ;
+  mkA2S : A -> Prep -> A2S ;
+  mkAV  : A -> AV ;
+  mkA2V : A -> Prep -> A2V ;
+
+-- Notice: Categories $V0, AS, A2S, AV, A2V$ are just $A$.
+-- $V0$ is just $V$; the second argument is treated as adverb.
+
+  V0 : Type ;
+  AS, A2S, AV, A2V : Type ;
+
+--2 Other categories
+
+mkSubj : Str -> Subj = \s -> lin Subj {s = s} ;
+
+--.
+--2 Definitions of paradigms
+--
+-- The definitions should not bother the user of the API. So they are
+-- hidden from the document.
+
+  Gender = ResEng.Gender ; 
+  Number = ResEng.Number ;
+  Case = ResEng.Case ;
+  human = Masc ; 
+  nonhuman = Neutr ;
+  masculine = Masc ;
+  feminine = Fem ;
+  singular = Sg ;
+  plural = Pl ;
+  nominative = Nom ;
+  genitive = Gen ;
+
+  Preposition : Type = Str ; -- obsolete
+
+  regN = \ray -> 
+    let rays = add_s ray
+     in
+       mk2N ray rays ;
+
+
+  add_s : Str -> Str = \w -> case w of {
+    _ + ("io" | "oo")                         => w + "s" ;   -- radio, bamboo
+    _ + ("s" | "z" | "x" | "sh" | "ch" | "o") => w + "es" ;  -- bus, hero
+    _ + ("a" | "o" | "u" | "e") + "y"  => w + "s" ;   -- boy
+    x + "y"                            => x + "ies" ; -- fly
+    _                                  => w + "s"     -- car
+    } ;
+
+  duplFinal : Str -> Str = \w -> case w of {
+    _ + ("a" | "e" | "o") + ("a" | "e" | "i" | "o" | "u") + ? => w ; -- waited, needed
+    _ + ("a" | "e" | "i" | "o" | "u") + 
+      c@("b"|"d"|"g"|"m"|"n"|"p"|"r"|"t") => w + c ; -- omitted, manned
+    _ => w
+    } ;
+
+  mk2N = \man,men -> 
+    let mens = case last men of {
+      "s" => men + "'" ;
+      _   => men + "'s"
+      }
+    in
+    mk4N man men (man + "'s") mens ;
+
+  mk4N = \man,men,man's,men's -> 
+    lin N (mkNoun man man's men men's ** {g = Neutr}) ;
+
+  genderN g man = lin N {s = man.s ; g = g} ;
+
+  compoundN s n = lin N {s = \\x,y => s ++ n.s ! x ! y ; g=n.g} ;
+
+  mkPN = overload {
+    mkPN : Str -> PN = regPN ;
+    mkPN : N -> PN = nounPN
+  } ;
+
+  mkN2 = overload {
+    mkN2 : N -> Prep -> N2 = prepN2 ;
+    mkN2 : N -> Str -> N2 = \n,s -> prepN2 n (mkPrep s);
+    mkN2 : Str -> Str -> N2 = \n,s -> prepN2 (regN n) (mkPrep s);
+    mkN2 : N -> N2         = \n -> prepN2 n (mkPrep "of") ;
+    mkN2 : Str -> N2       = \s -> prepN2 (regN s) (mkPrep "of") 
+  } ;
+
+  prepN2 = \n,p -> lin N2 (n ** {c2 = p.s}) ;
+  regN2 n = prepN2 (regN n) (mkPrep "of") ;
+
+  mkN3 = \n,p,q -> lin N3 (n ** {c2 = p.s ; c3 = q.s}) ;
+
+--3 Relational common noun phrases
+--
+-- In some cases, you may want to make a complex $CN$ into a
+-- relational noun (e.g. "the old town hall of").
+
+  cnN2 : CN -> Prep -> N2 ;
+  cnN3 : CN -> Prep -> Prep -> N3 ;
+
+-- This is obsolete.
+  cnN2 = \n,p -> lin N2 (n ** {c2 = p.s}) ;
+  cnN3 = \n,p,q -> lin N3 (n ** {c2 = p.s ; c3 = q.s}) ;
+
+  regPN n = regGenPN n human ;
+  regGenPN n g = lin PN {s = table {Gen => n + "'s" ; _ => n} ; g = g} ;
+  nounPN n = lin PN {s = n.s ! singular ; g = n.g} ;
+
+  mkQuant = overload {
+    mkQuant : (this, these : Str) -> Quant = \sg,pl -> mkQuantifier sg pl sg pl;
+    mkQuant : (no_sg, no_pl, none_sg, non_pl : Str) -> Quant = mkQuantifier;
+  } ;
+
+  mkQuantifier : Str -> Str -> Str -> Str -> Quant = 
+   \sg,pl,sg',pl' -> lin Quant {
+    s = \\_  => table { Sg => sg ; Pl => pl } ;
+    sp = \\_ => table { Sg => regGenitiveS sg' ; Pl => regGenitiveS pl'}
+    } ;
+
+  mkOrd : Str -> Ord = \x -> lin Ord { s = regGenitiveS x};
+
+  mk2A a b = mkAdjective a a a b ;
+  regA a = case a of {
+    _ + ("a" | "e" | "i" | "o" | "u" | "y") + ? + _ + 
+        ("a" | "e" | "i" | "o" | "u" | "y") + ? + _  => 
+         lin A (compoundADeg (regADeg a)) ;
+    _ => lin A (regADeg a)
+    } ;
+
+  prepA2 a p = lin A2 (a ** {c2 = p.s}) ;
+
+  ADeg = A ; ----
+
+  mkADeg a b c d = mkAdjective a b c d ;
+
+  regADeg happy = 
+    let
+      happ = init happy ;
+      y    = last happy ;
+      happie = case y of {
+        "y" => happ + "ie" ;
+        "e" => happy ;
+        _   => duplFinal happy + "e"
+        } ;
+      happily : Str = case happy of {
+        _ + "ble" => init happy + "y" ;
+        _ + "y" => happ + "ily" ;
+        _ + "ll" => happy + "y" ;
+        _   => happy + "ly"
+        } ;
+    in mkADeg happy (happie + "r") (happie + "st") happily ;
+
+  duplADeg fat = 
+    mkADeg fat 
+    (fat + last fat + "er") (fat + last fat + "est") (fat + "ly") ;
+
+  compoundADeg a =
+    let ad = (a.s ! AAdj Posit Nom) 
+    in mkADeg ad ("more" ++ ad) ("most" ++ ad) (a.s ! AAdv) ;
+
+  adegA a = a ;
+
+  mkAdv x = lin Adv (ss x) ;
+  mkAdV x = lin AdV (ss x) ;
+  mkAdA x = lin AdA (ss x) ;
+  mkAdN x = lin AdN (ss x) ;
+
+  mkPrep p = lin Prep (ss p) ;
+  noPrep = mkPrep [] ;
+
+  mk5V a b c d e = lin V (mkVerb a b c d e ** {s1 = []}) ;
+
+  regV cry = 
+    let
+      cries = (regN cry).s ! Pl ! Nom ; -- !
+      cried : Str = case cries of {
+        _ + "es" => init cries + "d" ;
+        _        => duplFinal cry + "ed"
+        } ;
+      crying : Str = case cry of {
+        _  + "ee" => cry + "ing" ;
+        d  + "ie" => d  + "ying" ;
+        us + "e"  => us + "ing" ; 
+        _         => duplFinal cry + "ing"
+        }
+    in mk5V cry cries cried cried crying ;
+
+  reg2V fit fitted =
+   let fitt = Predef.tk 2 fitted ;
+   in mk5V fit (fit + "s") (fitt + "ed") (fitt + "ed") (fitt + "ing") ;
+
+  regDuplV fit = 
+    case last fit of {
+      ("a" | "e" | "i" | "o" | "u" | "y") => 
+        Predef.error (["final duplication makes no sense for"] ++ fit) ;
+      t =>
+       let fitt = fit + t in
+       mk5V fit (fit + "s") (fitt + "ed") (fitt + "ed") (fitt + "ing")
+      } ;
+
+  irregV x y z = let reg = (regV x).s in
+    mk5V x (reg ! VPres) y z (reg ! VPresPart) ** {s1 = []} ;
+
+  irreg4V x y z w = let reg = (regV x).s in
+    mk5V x (reg ! VPres) y z w ** {s1 = []} ;
+
+  irregDuplV fit y z = 
+    let 
+      fitting = (regDuplV fit).s ! VPresPart
+    in
+    mk5V fit (fit + "s") y z fitting ;
+
+  partV v p = lin V {s = \\f => v.s ! f ++ p ; isRefl = v.isRefl} ;
+  reflV v = lin V {s = v.s ; part = v.part ; isRefl = True} ;
+
+  prepV2 v p = lin V2 {s = v.s ; s1 = v.s1 ; c2 = p.s ; isRefl = v.isRefl} ;
+  dirV2 v = prepV2 v noPrep ;
+
+  prepPrepV3 v p q = 
+    lin V3 {s = v.s ; s1 = v.s1 ; c2 = p.s ; c3 = q.s ; isRefl = v.isRefl} ;
+  dirV3 v p = prepPrepV3 v noPrep p ;
+  dirdirV3 v = dirV3 v noPrep ;
+
+  mkVS  v = lin VS v ;
+  mkVV  v = lin VV {
+    s = table {VVF vf => v.s ! vf ; _ => v.s ! VInf} ;
+                                          --- variants {}} ; not used 
+    isAux = False
+    } ;
+  mkVQ  v = lin VQ v ;
+
+  V0 : Type = V ;
+--  V2S, V2V, V2Q : Type = V2 ;
+  AS, A2S, AV : Type = A ;
+  A2V : Type = A2 ;
+
+  mkV0  v = v ;
+  mkV2S v p = lin V2S (prepV2 v p) ;
+  mkV2V v p t = lin V2V (prepV2 v p ** {isAux = False}) ;
+  mkVA  v = lin VA v ;
+  mkV2A v p = lin V2A (prepV2 v p) ;
+  mkV2Q v p = lin V2Q (prepV2 v p) ;
+
+  mkAS  v = v ;
+  mkA2S v p = lin A (prepA2 v p) ;
+  mkAV  v = v ;
+  mkA2V v p = prepA2 v p ;
+
+
+-- pre-overload API and overload definitions
+
+  mk4N : (man,men,man's,men's : Str) -> N ;
+  regN : Str -> N ;
+  mk2N : (man,men : Str) -> N ;
+  genderN : Gender -> N -> N ;
+  compoundN : Str -> N -> N ;
+
+  mkN = overload {
+    mkN : (man,men,man's,men's : Str) -> N = mk4N ;
+    mkN : Str -> N = regN ;
+    mkN : (man,men : Str) -> N = mk2N ;
+    mkN : Gender -> N -> N = genderN ;
+    mkN : Str -> N -> N = compoundN
+    } ;
+
+-- Relational nouns ("daughter of x") need a preposition. 
+
+  prepN2 : N -> Prep -> N2 ;
+
+-- The most common preposition is "of", and the following is a
+-- shortcut for regular relational nouns with "of".
+
+  regN2 : Str -> N2 ;
+
+  mk2A : (free,freely : Str) -> A ;
+  regA : Str -> A ;
+
+  mkA = overload {
+    mkA : Str -> A = regA ;
+    mkA : (fat,fatter : Str) -> A = \fat,fatter -> 
+      mkAdjective fat fatter (init fatter + "st") (fat + "ly") ;
+    mkA : (good,better,best,well : Str) -> A = \a,b,c,d ->
+      mkAdjective a b c d
+    } ;
+
+  compoundA = compoundADeg ;
+  simpleA a = 
+    let ad = (a.s ! AAdj Posit Nom) 
+    in regADeg ad ;
+
+  prepA2 : A -> Prep -> A2 ;
+
+  mkA2 = overload {
+    mkA2 : A -> Prep -> A2   = prepA2 ;
+    mkA2 : A -> Str -> A2    = \a,p -> prepA2 a (mkPrep p) ;
+    mkA2 : Str -> Prep -> A2 = \a,p -> prepA2 (regA a) p;
+    mkA2 : Str -> Str -> A2  = \a,p -> prepA2 (regA a) (mkPrep p);
+  } ;
+
+  mk5V : (go, goes, went, gone, going : Str) -> V ;
+  regV : (cry : Str) -> V ;
+  reg2V : (stop, stopped : Str) -> V;
+  irregV : (drink, drank, drunk  : Str) -> V ;
+  irreg4V : (run, ran, run, running  : Str) -> V ;
+
+  -- Use reg2V instead
+  regDuplV : Str -> V ;
+  -- Use irreg4V instead
+  irregDuplV : (get,   got,   gotten : Str) -> V ;
+
+  mkV = overload {
+    mkV : (cry : Str) -> V = regV ;
+    mkV : (stop, stopped : Str) -> V = reg2V ;
+    mkV : (drink, drank, drunk  : Str) -> V = irregV ;
+    mkV : (run, ran, run, running  : Str) -> V = irreg4V ;
+    mkV : (go, goes, went, gone, going : Str) -> V = mk5V ;
+    mkV : Str -> V -> V = prefixV
+  };
+
+  prepV2 : V -> Prep -> V2 ;
+  dirV2 : V -> V2 ;
+  prefixV : Str -> V -> V = \p,v -> v ** { s = p + v.s } ;
+
+  mkV2 = overload {
+    mkV2  : V -> V2 = dirV2 ;
+    mkV2  : Str -> V2 = \s -> dirV2 (regV s) ;
+    mkV2  : V -> Prep -> V2 = prepV2 ;
+    mkV2  : V -> Str -> V2 = \v,p -> prepV2 v (mkPrep p) ;
+    mkV2  : Str -> Prep -> V2 = \v,p -> prepV2 (regV v) p ;
+    mkV2  : Str -> Str -> V2 = \v,p -> prepV2 (regV v) (mkPrep p)
+  }; 
+
+  prepPrepV3 : V -> Prep -> Prep -> V3 ;
+  dirV3 : V -> Prep -> V3 ;
+  dirdirV3 : V -> V3 ;
+
+  mkV3 = overload {
+    mkV3 : V -> Prep -> Prep -> V3 = prepPrepV3 ;
+    mkV3 : V -> Prep -> V3 = dirV3 ;
+    mkV3 : V -> Str -> V3 = \v,s -> dirV3 v (mkPrep s);
+    mkV3 : Str -> Str -> V3 = \v,s -> dirV3 (regV v) (mkPrep s);
+    mkV3 : V -> V3 = dirdirV3 ;
+    mkV3 : Str -> V3 = \v -> dirdirV3 (regV v) ;
+  } ;
+
+  mkConj = overload {
+    mkConj : Str -> Conj = \y -> mk2Conj [] y plural ;
+    mkConj : Str -> Number -> Conj = \y,n -> mk2Conj [] y n ;
+    mkConj : Str -> Str -> Conj = \x,y -> mk2Conj x y plural ;
+    mkConj : Str -> Str -> Number -> Conj = mk2Conj ;
+  } ;
+
+  mk2Conj : Str -> Str -> Number -> Conj = \x,y,n -> 
+    lin Conj (sd2 x y ** {n = n}) ;
+
+---- obsolete
+
+-- Comparison adjectives may two more forms. 
+
+  ADeg : Type ;
+
+  mkADeg : (good,better,best,well : Str) -> ADeg ;
+
+-- The regular pattern recognizes two common variations: 
+-- "-e" ("rude" - "ruder" - "rudest") and
+-- "-y" ("happy - happier - happiest - happily")
+
+  regADeg : Str -> ADeg ;      -- long, longer, longest
+
+-- However, the duplication of the final consonant is nor predicted,
+-- but a separate pattern is used:
+
+  duplADeg : Str -> ADeg ;      -- fat, fatter, fattest
+
+-- If comparison is formed by "more", "most", as in general for
+-- long adjective, the following pattern is used:
+
+  compoundADeg : A -> ADeg ; -- -/more/most ridiculous
+
+-- From a given $ADeg$, it is possible to get back to $A$.
+
+  adegA : ADeg -> A ;
+
+
+  regPN    : Str -> PN ;          
+  regGenPN : Str -> Gender -> PN ;     -- John, John's
+
+-- Sometimes you can reuse a common noun as a proper name, e.g. "Bank".
+
+  nounPN : N -> PN ;
+
+
+-}
+} ;
diff --git a/lib/src/latvian/ParadigmsNounsLav.gf b/lib/src/latvian/ParadigmsNounsLav.gf
new file mode 100644
--- /dev/null
+++ b/lib/src/latvian/ParadigmsNounsLav.gf
@@ -0,0 +1,333 @@
+-- Latvian noun paradigms - by Normunds Grūzītis; copied off mini-grammar as of 2011-07-12
+
+resource ParadigmsNounsLav = open 
+  (Predef=Predef), 
+  Prelude, 
+  ResLav,
+  CatLav
+  in {
+
+flags
+  coding = utf8;
+  
+oper
+  Noun     : Type = {s : Number => Case => Str ; g : Gender} ;
+
+  masculine : Gender = Masc ;
+  feminine  : Gender = Fem ;  
+  
+-- NOUNS
+
+  -- No parameters - default assumptions (gender, declension, palatalization)
+  mkNoun : Str -> Noun = \lemma ->
+    mkNounByPal lemma True ;
+
+  -- Specified palatalization; default gender and declension
+  mkNounByPal : Str -> Bool -> Noun = \lemma,pal ->
+    case lemma of {
+      #exception_D4 + ("a"|"as")      => mkNounByGendPal lemma Masc pal ;
+      #exception_D6 + "is"            => mkNounByGendPal lemma Masc pal ;
+      s + ("a"|"as"|"e"|"es"|"šanās") => mkNounByGendPal lemma Fem  pal ;
+      _                               => mkNounByGendPal lemma Masc pal
+    } ;
+
+  -- Specified gender; default declension and palatalization
+  mkNounByGend : Str -> Gender -> Noun = \lemma,gend ->
+    mkNounByGendPal lemma gend True ;
+
+  -- Specified gender and palatalization; default declension
+  mkNounByGendPal : Str -> Gender -> Bool -> Noun = \lemma,gend,pal ->
+    let decl : NounDecl = case lemma of {
+      #exception_D2_1 + "s"      => D2 ;
+      #exception_D2_1_pal + "i"  => D2 ;
+      #exception_D2_2 + "s"      => D2 ;
+      #exception_D2_2_pal + "i"  => D2 ;
+      #exception_D6 + "is"       => D6 ;
+      s + "šanās"                => DR ;
+      s + ("š"|"i")              => D1 ;
+      s + "is"                   => case gend of {Masc => D2 ; Fem  => D6} ;
+      s + "us"                   => D3 ;
+      s + "as"                   => D4 ;
+      s + "es"                   => D5 ;
+      s + "s"                    => case gend of {Masc => D1 ; Fem  => D6} ;
+      s + "a"                    => D4 ;
+      s + "e"                    => D5 ;
+      s + #vowel                 => D0
+    }
+    in mkNounByGendDeclPal lemma gend decl pal ;
+
+  -- Specified declension; default gender and palatalization
+  mkNounByDecl : Str -> NounDecl -> Noun = \lemma,decl ->
+    mkNounByDeclPal lemma decl True ;
+
+  -- Specified declension and palatalization; default gender
+  mkNounByDeclPal : Str -> NounDecl -> Bool -> Noun = \lemma,decl,pal ->
+    case decl of {
+      D0|D1|D2|D3 => mkNounByGendDeclPal lemma Masc decl pal ;
+      D4|D5|D6|DR => mkNounByGendDeclPal lemma Fem  decl pal
+    } ;
+
+  -- Specified gender and declension; default palatalization
+  mkNounByGendDecl : Str -> Gender -> NounDecl -> Noun = \lemma,gend,decl ->
+    mkNounByGendDeclPal lemma gend decl True ;
+
+  -- Specified gender, declension and palatalization - no defaults
+  mkNounByGendDeclPal : Str -> Gender -> NounDecl -> Bool -> Noun = \lemma,gend,decl,pal ->
+    case decl of {
+      D0 => mkNoun_D0 lemma gend     ;
+      D1 => mkNoun_D1 lemma          ;
+      D2 => mkNoun_D2 lemma pal      ;
+      D3 => mkNoun_D3 lemma          ;
+      D4 => mkNoun_D4 lemma gend     ;
+      D5 => mkNoun_D5 lemma gend pal ;
+      D6 => mkNoun_D6 lemma gend pal ;
+      DR => mkNoun_DR lemma
+    } ;
+
+  -- Indeclinable noun
+  -- Expected endings: #vowel
+  mkNoun_D0 : Str -> Gender -> Noun = \lemma,gend -> {
+    s = \\_,_ => lemma ;
+    g = gend
+  } ;
+
+  -- Expected endings of a D1 lemma:
+  --   Sg: -s, -š
+  --   Pl: -i
+  mkNoun_D1 : Str -> Noun = \lemma ->
+    let stem : Str = cutStem lemma
+    in {
+      s = table {
+        Sg => table {
+          Nom => lemma ;			-- FIXME: if Pl lemma (-i) => -s or -š?! (default rule, explicit parameter)
+          Gen => stem + "a" ;
+          Dat => stem + "am" ;
+          Acc => stem + "u" ;
+          Loc => stem + "ā"
+        } ;
+        Pl => table {
+          Nom => stem + "i" ;
+          Gen => stem + "u" ;
+          Dat => stem + "iem" ;
+          Acc => stem + "us" ;
+          Loc => stem + "os"
+        }
+      } ;
+      g = Masc
+    } ;
+
+  -- Expected endings of a D2 lemma:
+  --   Sg: -is, -s
+  --   Pl: -i
+  -- Note: ending -s is expected only in the case of few predefined exceptions
+  mkNoun_D2 : Str -> Bool -> Noun = \lemma,pal ->
+    let stem : Str = cutStem lemma
+    in {
+      s = table {
+        Sg => table {
+          Nom => lemma ;			-- FIXME: if Pl lemma (-i) => -is or -s?! (exceptions only - default rules only?)
+          Gen => case lemma of {#exception_D2_1 + "s" => lemma ; _ => palatalize stem pal + "a"} ;
+          Dat => stem + "im" ;
+          Acc => stem + "i" ;
+          Loc => stem + "ī"
+        } ;
+        Pl => table {
+          Nom => palatalize stem pal + "i" ;
+          Gen => palatalize stem pal + "u" ;
+          Dat => palatalize stem pal + "iem" ;
+          Acc => palatalize stem pal + "us" ;
+          Loc => palatalize stem pal + "os"
+        }
+      } ;
+      g = Masc
+    } ;
+
+  -- Expected endings of a D3 lemma:
+  --   Sg: -us
+  --   Pl: -i
+  mkNoun_D3 : Str -> Noun = \lemma ->
+    let stem : Str = cutStem lemma
+    in {
+      s = table {
+        Sg => table {
+          Nom => stem + "us" ;
+          Gen => stem + "us" ;
+          Dat => stem + "um" ;
+          Acc => stem + "u" ;
+          Loc => stem + "ū"
+        } ;
+        Pl => table {
+          Nom => stem + "i" ;
+          Gen => stem + "u" ;
+          Dat => stem + "iem" ;
+          Acc => stem + "us" ;
+          Loc => stem + "os"
+        }
+      } ;
+      g = Masc
+    } ;
+
+  -- Expected endings of a D4 lemma:
+  --   Sg: -a (incl. -šana)
+  --   Pl: -as (incl. -šanas)
+  mkNoun_D4 : Str -> Gender -> Noun = \lemma,gend ->
+    let stem : Str = cutStem lemma
+    in {
+      s = table {
+        Sg => table {
+          Nom => stem + "a" ;
+          Gen => stem + "as" ;
+          Dat => case gend of {Fem => stem + "ai" ; Masc => stem + "am"} ;
+          Acc => stem + "u" ;
+          Loc => stem + "ā"
+        } ;
+        Pl => table {
+          Nom => stem + "as" ;
+          Gen => stem + "u" ;
+          Dat => stem + "ām" ;
+          Acc => stem + "as" ;
+          Loc => stem + "ās"
+        }
+      } ;
+      g = gend
+    } ;
+
+  -- Expected endings of a D5 lemma:
+  --   Sg: -e
+  --   Pl: -es
+  mkNoun_D5 : Str -> Gender -> Bool -> Noun = \lemma,gend,pal ->
+    let stem : Str = cutStem lemma
+    in {
+      s = table {
+        Sg => table {
+          Nom => stem + "e" ;
+          Gen => stem + "es" ;
+          Dat => case gend of {Fem => stem + "ei" ; Masc => stem + "em"} ;
+          Acc => stem + "i" ;
+          Loc => stem + "ē"
+        } ;
+        Pl => table {
+          Nom => stem + "es" ;
+          Gen => palatalize stem pal + "u" ;
+          Dat => stem + "ēm" ;
+          Acc => stem + "es" ;
+          Loc => stem + "ēs"
+        }
+      } ;
+      g = gend
+    } ;
+
+  -- Expected endings of a D6 lemma:
+  --   Sg: -s
+  --   Pl: -is
+  mkNoun_D6 : Str -> Gender -> Bool -> Noun = \lemma,gend,pal ->
+    let stem : Str = cutStem lemma
+    in {
+      s = table {
+        Sg => case stem of {
+          #exception_D6 => \\_ => NON_EXISTENT ;
+          _ => table {
+            Nom => stem + "s" ;
+            Gen => stem + "s" ;
+            Dat => case gend of {Fem => stem + "ij" ; Masc => stem + "im"} ;
+            Acc => stem + "i" ;
+            Loc => stem + "ī"
+          }
+        } ;
+        Pl => table {
+          Nom => stem + "is" ;
+          Gen => palatalize stem pal + "u" ;
+          Dat => stem + "īm" ;
+          Acc => stem + "is" ;
+          Loc => stem + "īs"
+        }
+      } ;
+      g = gend
+    } ;
+
+  -- Reflexive noun
+  -- Expected endings: -šanās
+  mkNoun_DR : Str -> Noun = \lemma ->
+    let stem : Str = cutStem lemma
+    in {
+      s = table {
+        Sg => table {
+          Nom => stem + "šanās" ;
+          Gen => stem + "šanās" ;
+          Dat => NON_EXISTENT ;
+          Acc => stem + "šanos" ;
+          Loc => NON_EXISTENT
+        } ;
+        Pl => table {
+          Nom => stem + "šanās" ;
+          Gen => stem + "šanos" ;
+          Dat => NON_EXISTENT ;
+          Acc => stem + "šanās" ;
+          Loc => NON_EXISTENT
+        }
+      } ;
+      g = Fem
+    } ;
+
+  -- Exceptions
+
+  exception_D2_1     : pattern Str = #(_ + "akmen"|"asmen"|"mēnes"|"ruden"|"sāl"|"ūden"|"ziben") ;
+  exception_D2_1_pal : pattern Str = #(_ + "akmeņ"|"asmeņ"|"mēneš"|"rudeņ"|"sāļ"|"ūdeņ"|"zibeņ") ;
+  exception_D2_2     : pattern Str = #(_ + "sun") ;
+  exception_D2_2_pal : pattern Str = #(_ + "suņ") ;
+  exception_D4       : pattern Str = #(_ + "puik") ;
+  exception_D6       : pattern Str = #(_ + "ļaud") ;
+
+  -- Auxiliaries
+
+  cutStem : Str -> Str = \lemma ->
+    case lemma of {
+      s + ("is"|"us"|"as"|"es") => s ;
+      s + "šanās" => s ;
+      _ => Predef.tk 1 lemma
+    } ;
+
+  palatalize : Str -> Bool -> Str = \stem,pal ->
+    case pal of {
+      True => case stem of {
+        s + "st" => case stem of {
+          s + (#vowel|#sonantCons) + "st" => stem ;
+          _ => doPalatalize stem
+        } ;
+        _ => doPalatalize stem
+      } ;
+      False => stem
+    } ;
+
+  doPalatalize : Str -> Str = \stem ->
+    case stem of {
+      s + c@(#doubleCons) => s + changeDoubleCons c ;
+      s + c@(#simpleCons) => s + changeSimpleCons c ;
+      s + c@(#labialCons) => s + c + "j" ;
+      _                   => stem
+    } ;
+
+  changeSimpleCons : Str -> Str = \cons ->
+    case cons of {
+      "c" => "č" ;
+      "d" => "ž" ;
+      "l" => "ļ" ;
+      "n" => "ņ" ;
+      "s" => "š" ;
+      "t" => "š" ;
+      "z" => "ž"
+    } ;
+
+  changeDoubleCons : Str -> Str = \cons ->
+    case cons of {
+      "ll" => "ļļ" ;
+      "ln" => "ļņ" ;
+      "nn" => "ņņ" ;
+      "sl" => "šļ" ;
+      "sn" => "šņ" ;
+      "st" => "š"  ;
+      "zl" => "žļ" ;
+      "zn" => "žņ"
+    } ;
+
+} ;
diff --git a/lib/src/latvian/ParadigmsPronounsLav.gf b/lib/src/latvian/ParadigmsPronounsLav.gf
new file mode 100644
--- /dev/null
+++ b/lib/src/latvian/ParadigmsPronounsLav.gf
@@ -0,0 +1,113 @@
+-- Latvian pronoun paradigms - by Normunds Grūzītis; copied off mini-grammar as of 2011-07-12
+
+resource ParadigmsPronounsLav = open 
+  (Predef=Predef), 
+  Prelude, 
+  ResLav,
+  CatLav
+  in {
+
+flags
+  coding = utf8;
+  
+oper
+  Pron     : Type = {s : Number => Case => Str ; p : Person} ;
+  PronGend : Type = {s : Gender => Number => Case => Str ; p : Person} ;
+
+-- PRONOUNS (incl. 'determiners')
+
+  -- Gender=>Number=>Case P3 pronouns
+  -- Expected ending of a lemma: -s or -š (Masc=>Sg=>Nom)
+  -- Examples:
+  --   viņš (he/she)
+  --   kāds (a/some)
+  --   katrs, ikviens, jebkurš (every/everything/everyone/all)
+  --   neviens (no/nothing/noone)
+  --   viss (all)
+  --   kurš (that-relative)
+  mkPronoun_Gend : Str -> PronGend = \lemma ->
+    let stem : Str = Predef.tk 1 lemma
+    in {
+      s = table {
+        Masc => table {
+          Sg => table {
+            Nom => lemma ;
+            Gen => stem + "a" ;
+            Dat => stem + "am" ;
+            Acc => stem + "u" ;
+            Loc => stem + "ā"
+          } ;
+          Pl => table {
+            Nom => stem + "i" ;
+            Gen => stem + "u" ;
+            Dat => stem + "iem" ;
+            Acc => stem + "us" ;
+            Loc => stem + "os"
+          }
+        } ;
+        Fem => table {
+          Sg => table {
+            Nom => stem + "a" ;
+            Gen => stem + "as" ;
+            Dat => stem + "ai" ;
+            Acc => stem + "u" ;
+            Loc => stem + "ā"
+          } ;
+          Pl => table {
+            Nom => stem + "as" ;
+            Gen => stem + "u" ;
+            Dat => stem + "ām" ;
+            Acc => stem + "as" ;
+            Loc => stem + "ās"
+          }
+        }
+      } ;
+      p = P3
+    } ;
+
+  -- A special case (paradigm) of Gender=>Number=>Case P3 pronouns
+  -- Returns the full paradigm of 'šis' (this) or 'tas' (that)
+  mkPronoun_ThisThat : ThisOrThat -> PronGend = \tot ->
+    let
+      stem  : Str = case tot of {This => "š" ; That => "t"} ;
+      suff1 : Str = case tot of {This => "i" ; That => "a"} ;
+      suff2 : Str = case tot of {This => "ī" ; That => "ā"}
+    in {
+      s = table {
+        Masc => table {
+          Sg => table {
+            Nom => stem + suff1 + "s" ;
+            Gen => stem + suff2 ;
+            Dat => stem + suff1 + "m" ;
+            Acc => stem + "o" ;
+            Loc => stem + "ajā"
+          } ;
+          Pl => table {
+            Nom => stem + "ie" ;
+            Gen => stem + "o" ;
+            Dat => stem + "iem" ;
+            Acc => stem + "os" ;
+            Loc => stem + "ajos"
+          }
+        } ;
+        Fem => table {
+          Sg => table {
+            Nom => stem + suff2 ;
+            Gen => stem + suff2 + "s" ;
+            Dat => stem + "ai" ;
+            Acc => stem + "o" ;
+            Loc => stem + "ajā"
+          } ;
+          Pl => table {
+            Nom => stem + suff2 + "s" ;
+            Gen => stem + "o" ;
+            Dat => stem + suff2 + "m" ;
+            Acc => stem + suff2 + "s" ;
+            Loc => stem + "ajās"
+          }
+        }
+      } ;
+      p = P3
+    } ;
+	
+} ;
diff --git a/lib/src/latvian/ParadigmsVerbsLav.gf b/lib/src/latvian/ParadigmsVerbsLav.gf
new file mode 100644
--- /dev/null
+++ b/lib/src/latvian/ParadigmsVerbsLav.gf
@@ -0,0 +1,562 @@
+-- Latvian verb paradigms - by Pēteris Paikens & Normunds Grūzītis, copied off mini-grammar as of 2011-07-12
+
+resource ParadigmsVerbsLav = open 
+  (Predef=Predef), 
+  Prelude, 
+  ResLav,
+  CatLav
+  in {
+
+flags
+  coding = utf8;
+  
+oper
+  Verb     : Type = {s : Polarity => VerbForm => Str} ;
+  Verb_TMP : Type = {s : VerbForm => Str} ;
+
+-- VERBS
+
+  -- Second and third conjugations
+  mkVerb : Str -> VerbConj -> Verb = \lemma,conj -> {
+    s = table {
+      Pos => (mkVerb_Pos lemma conj).s ;
+      Neg => (filter_Neg (mkVerb_Pos ("ne"+lemma) conj)).s
+    }
+  } ;
+
+  -- First conjugation
+  mkVerbC1 : Str -> Str -> Str -> Verb = \lemma,lemma2,lemma3 -> {
+    s = table {
+      Pos => (mkVerbC1_Pos lemma lemma2 lemma3).s ;
+      Neg => (filter_Neg (mkVerbC1_Pos ("ne"+lemma) ("ne"+lemma2) ("ne"+lemma3))).s
+    }
+  } ;
+
+  mkVerb_Pos : Str -> VerbConj -> Verb_TMP = \lemma,conj ->
+    case lemma of {
+      -- TODO: "ir" =>
+      s + ("t")    => mkRegVerb lemma conj ;
+      s + ("ties") => mkReflVerb lemma conj
+    } ;
+
+  mkVerbC1_Pos : Str -> Str -> Str -> Verb_TMP = \lemma,lemma2,lemma3 ->
+    case lemma of {
+      -- TODO: "ir" =>
+      s + ("t") => mkVerb_C1 lemma lemma2 lemma3 ;
+      s + ("ties") => mkVerb_C1_R lemma lemma2 lemma3
+    } ;
+
+  mkRegVerb : Str -> VerbConj -> Verb_TMP = \lemma,conj ->
+    case conj of {
+      C2 => mkVerb_C2 lemma ;
+      C3 => mkVerb_C3 lemma
+    } ;
+
+  mkReflVerb : Str -> VerbConj -> Verb_TMP = \lemma,conj ->
+    case conj of {
+      C2 => mkVerb_C2_R lemma ;
+      C3 => mkVerb_C3_R lemma
+    } ;
+
+  filter_Neg : Verb_TMP -> Verb_TMP = \full -> {
+    s = table {
+      Debitive => NON_EXISTENT ;
+      DebitiveRelative => NON_EXISTENT ;
+      x => full.s ! x
+    }
+  } ;
+
+  -- First conjugation
+  -- Ref. to Lexicon.xml (revision 719): 15. paradigma
+  mkVerb_C1 : Str -> Str -> Str -> Verb_TMP = \lemma,lemma2,lemma3 ->
+    let
+      stem  : Str = Predef.tk 1 lemma  ;
+      stem2 : Str = Predef.tk 1 lemma2 ;
+      stem3 : Str = Predef.tk 1 lemma3
+    in {
+      s = table {
+        Infinitive => stem + "t" ;
+
+        Indicative P1 Sg Pres => stem2 + "u" ;
+        Indicative P1 Sg Fut  => pal_C1_1 stem3 stem + "šu" ;
+        Indicative P1 Sg Past    => stem3 + "u" ;
+        Indicative P1 Pl Pres => stem2 + "am" ;
+        Indicative P1 Pl Fut  => pal_C1_1 stem3 stem + "sim" ;
+        Indicative P1 Pl Past    => stem3 + "ām" ;
+
+        Indicative P2 Sg Pres => pal_C1_2 stem3 stem2 ;
+        Indicative P2 Sg Fut  => pal_C1_1 stem3 stem + "si" ;
+        Indicative P2 Sg Past    => stem3 + "i" ;
+        Indicative P2 Pl Pres => stem2 + "at" ;
+        Indicative P2 Pl Fut  => pal_C1_1 stem3 stem + ("siet"|"sit") ;
+        Indicative P2 Pl Past    => stem3 + "āt" ;
+
+        Indicative P3 _ Pres => stem2 ;
+        Indicative P3 _ Fut  => pal_C1_1 stem3 stem + "s" ;
+        Indicative P3 _ Past    => stem3 + "a" ;
+
+		Indicative _ _ Cond  => stem + "tu";		
+
+        Relative Pres => stem2 + "ot" ;
+        Relative Fut  => pal_C1_1 stem3 stem + "šot" ;
+        Relative Past    => NON_EXISTENT ;
+        Relative Cond    => NON_EXISTENT ;
+
+        Debitive => "jā" + stem2 ;
+        DebitiveRelative => "jā" + stem2 + "ot" ;
+
+        Participle Masc Sg Nom => pal_C1_4 stem3 + "is" ;
+        Participle Masc Sg Gen => pal_C1_3 stem3 + "uša" ;
+        Participle Masc Sg Dat => pal_C1_3 stem3 + "ušam" ;
+        Participle Masc Sg Acc => pal_C1_3 stem3 + "ušu" ;
+        Participle Masc Sg Loc => pal_C1_3 stem3 + "ušā" ;
+        Participle Masc Pl Nom => pal_C1_3 stem3 + "uši" ;
+        Participle Masc Pl Gen => pal_C1_3 stem3 + "ušu" ;
+        Participle Masc Pl Dat => pal_C1_3 stem3 + "ušiem" ;
+        Participle Masc Pl Acc => pal_C1_3 stem3 + "ušus" ;
+        Participle Masc Pl Loc => pal_C1_3 stem3 + "ušos" ;
+
+        Participle Fem Sg Nom => pal_C1_3 stem3 + "usi" ;
+        Participle Fem Sg Gen => pal_C1_3 stem3 + "ušas" ;
+        Participle Fem Sg Dat => pal_C1_3 stem3 + "ušai" ;
+        Participle Fem Sg Acc => pal_C1_3 stem3 + "ušu" ;
+        Participle Fem Sg Loc => pal_C1_3 stem3 + "ušā" ;
+        Participle Fem Pl Nom => pal_C1_3 stem3 + "ušas" ;
+        Participle Fem Pl Gen => pal_C1_3 stem3 + "ušu" ;
+        Participle Fem Pl Dat => pal_C1_3 stem3 + "ušām" ;
+        Participle Fem Pl Acc => pal_C1_3 stem3 + "ušas" ;
+        Participle Fem Pl Loc => pal_C1_3 stem3 + "ušās"
+      }
+    } ;
+
+  -- Second conjugation
+  -- Ref. to Lexicon.xml (revision 719): 16. paradigma
+  mkVerb_C2 : Str -> Verb_TMP = \lemma ->
+    let stem : Str = Predef.tk 1 lemma
+    in {
+      s = table {
+        Infinitive => stem + "t" ;
+
+        Indicative P1 Sg Pres => stem + "ju" ;
+        Indicative P1 Sg Fut  => stem + "šu" ;
+        Indicative P1 Sg Past    => stem + "ju" ;
+        Indicative P1 Pl Pres => stem + "jam" ;
+        Indicative P1 Pl Fut  => stem + "sim" ;
+        Indicative P1 Pl Past    => stem + "jām" ;
+
+        Indicative P2 Sg Pres => stem ;
+        Indicative P2 Sg Fut  => stem + "si" ;
+        Indicative P2 Sg Past    => stem + "ji" ;
+        Indicative P2 Pl Pres => stem + "jat" ;
+        Indicative P2 Pl Fut  => stem + ("siet"|"sit") ;
+        Indicative P2 Pl Past    => stem + "jāt" ;
+
+        Indicative P3 _ Pres => stem ;
+        Indicative P3 _ Fut  => stem + "s" ;
+        Indicative P3 _ Past    => stem + "ja" ;
+
+		Indicative _ _ Cond  => stem + "tu";		
+
+        Relative Pres => stem + "jot" ;
+        Relative Fut  => stem + "šot" ;
+        Relative Past    => NON_EXISTENT ;
+        Relative Cond    => NON_EXISTENT ;
+
+        Debitive => "jā" + stem ;
+        DebitiveRelative => "jā" + stem + "jot" ;
+
+        Participle Masc Sg Nom => stem + "jis" ;
+        Participle Masc Sg Gen => stem + "juša" ;
+        Participle Masc Sg Dat => stem + "jušam" ;
+        Participle Masc Sg Acc => stem + "jušu" ;
+        Participle Masc Sg Loc => stem + "jušā" ;
+        Participle Masc Pl Nom => stem + "juši" ;
+        Participle Masc Pl Gen => stem + "jušu" ;
+        Participle Masc Pl Dat => stem + "jušiem" ;
+        Participle Masc Pl Acc => stem + "jušus" ;
+        Participle Masc Pl Loc => stem + "jušos" ;
+
+        Participle Fem Sg Nom => stem + "jusi" ;
+        Participle Fem Sg Gen => stem + "jušas" ;
+        Participle Fem Sg Dat => stem + "jušai" ;
+        Participle Fem Sg Acc => stem + "jušu" ;
+        Participle Fem Sg Loc => stem + "jušā" ;
+        Participle Fem Pl Nom => stem + "jušas" ;
+        Participle Fem Pl Gen => stem + "jušu" ;
+        Participle Fem Pl Dat => stem + "jušām" ;
+        Participle Fem Pl Acc => stem + "jušas" ;
+        Participle Fem Pl Loc => stem + "jušās"
+      }
+    } ;
+
+  -- Third conjugation
+  -- Ref. to Lexicon.xml (revision 719): 17. paradigma
+  mkVerb_C3 : Str -> Verb_TMP = \lemma ->
+    let stem : Str = Predef.tk 1 lemma
+    in {
+      s = table {
+        Infinitive => stem + "t" ;
+
+        Indicative P1 Sg Pres => pal_C3_1 stem + "u" ;
+        Indicative P1 Sg Fut  => stem + "šu" ;
+        Indicative P1 Sg Past    => stem + "ju" ;
+        Indicative P1 Pl Pres => pal_C3_1 stem + pal_C3_2 stem "am" ;
+        Indicative P1 Pl Fut  => stem + "sim" ;
+        Indicative P1 Pl Past    => stem + "jām" ;
+
+        Indicative P2 Sg Pres => pal_C3_1 stem + "i" ;
+        Indicative P2 Sg Fut  => stem + "si" ;
+        Indicative P2 Sg Past    => stem + "ji" ;
+        Indicative P2 Pl Pres => pal_C3_1 stem + pal_C3_2 stem "at" ;
+        Indicative P2 Pl Fut  => stem + ("siet"|"sit") ;
+        Indicative P2 Pl Past    => stem + "jāt" ;
+
+        Indicative P3 _ Pres => pal_C3_5 stem ;
+        Indicative P3 _ Fut  => stem + "s" ;
+        Indicative P3 _ Past    => stem + "ja" ;
+
+		Indicative _ _ Cond  => stem + "tu";		
+
+        Relative Pres => pal_C3_1 stem + "ot" ;
+        Relative Fut  => stem + "šot" ;
+        Relative Past    => NON_EXISTENT ;
+        Relative Cond    => NON_EXISTENT ;
+
+        Debitive => pal_C3_3 stem ;
+        DebitiveRelative => pal_C3_3 stem + "ot" ;
+
+        Participle Masc Sg Nom => stem + "jis" ;
+        Participle Masc Sg Gen => stem + "juša" ;
+        Participle Masc Sg Dat => stem + "jušam" ;
+        Participle Masc Sg Acc => stem + "jušu" ;
+        Participle Masc Sg Loc => stem + "jušā" ;
+        Participle Masc Pl Nom => stem + "juši" ;
+        Participle Masc Pl Gen => stem + "jušu" ;
+        Participle Masc Pl Dat => stem + "jušiem" ;
+        Participle Masc Pl Acc => stem + "jušus" ;
+        Participle Masc Pl Loc => stem + "jušos" ;
+
+        Participle Fem Sg Nom => stem + "jusi" ;
+        Participle Fem Sg Gen => stem + "jušas" ;
+        Participle Fem Sg Dat => stem + "jušai" ;
+        Participle Fem Sg Acc => stem + "jušu" ;
+        Participle Fem Sg Loc => stem + "jušā" ;
+        Participle Fem Pl Nom => stem + "jušas" ;
+        Participle Fem Pl Gen => stem + "jušu" ;
+        Participle Fem Pl Dat => stem + "jušām" ;
+        Participle Fem Pl Acc => stem + "jušas" ;
+        Participle Fem Pl Loc => stem + "jušās"
+      }
+    } ;
+
+  -- First conjugation: reflexive verbs
+  -- Ref. to Lexicon.xml (revision 719): 18. paradigma
+  mkVerb_C1_R : Str -> Str -> Str -> Verb_TMP = \lemma,lemma2,lemma3 ->
+    let
+      stem  : Str = Predef.tk 4 lemma  ;
+      stem2 : Str = Predef.tk 2 lemma2 ;
+      stem3 : Str = Predef.tk 2 lemma3
+    in {
+      s = table {
+        Infinitive => stem + "ties" ;
+
+        Indicative P1 Sg Pres => stem2 + "os" ;
+        Indicative P1 Sg Fut  => pal_C1_1 stem3 stem + "šos" ;
+        Indicative P1 Sg Past    => stem3 + "os" ;
+        Indicative P1 Pl Pres => stem2 + "amies" ;
+        Indicative P1 Pl Fut  => pal_C1_1 stem3 stem + "simies" ;
+        Indicative P1 Pl Past    => stem3 + "āmies" ;
+
+        Indicative P2 Sg Pres => pal_C1_2 stem3 stem2 + "ies" ;
+        Indicative P2 Sg Fut  => pal_C1_1 stem3 stem + "sies" ;
+        Indicative P2 Sg Past    => stem3 + "ies" ;
+        Indicative P2 Pl Pres => stem2 + "aties" ;
+        Indicative P2 Pl Fut  => pal_C1_1 stem3 stem + ("sieties"|"sities") ;
+        Indicative P2 Pl Past    => stem3 + "āties" ;
+
+        Indicative P3 _ Pres => stem2 + "as" ;
+        Indicative P3 _ Fut  => pal_C1_1 stem3 stem + "sies" ;
+        Indicative P3 _ Past    => stem3 + "ās" ;
+
+		Indicative _ _ Cond  => stem + "tos";		
+
+        Relative Pres => stem2 + "oties" ;
+        Relative Fut  => pal_C1_1 stem3 stem + "šoties" ;
+        Relative Past    => NON_EXISTENT ;
+        Relative Cond    => NON_EXISTENT ;
+
+        Debitive => "jā" + stem2 + "as" ;
+        DebitiveRelative => "jā" + stem2 + "oties" ;
+
+        Participle Masc Sg Nom => pal_C1_4 stem3 + "ies" ;
+        Participle Masc Sg Gen => NON_EXISTENT ;
+        Participle Masc Sg Dat => NON_EXISTENT ;
+        Participle Masc Sg Acc => pal_C1_3 stem3 + "ušos" ;
+        Participle Masc Sg Loc => NON_EXISTENT ;
+        Participle Masc Pl Nom => pal_C1_3 stem3 + "ušies" ;
+        Participle Masc Pl Gen => pal_C1_3 stem3 + "ušos" ;
+        Participle Masc Pl Dat => NON_EXISTENT ;
+        Participle Masc Pl Acc => pal_C1_3 stem3 + "ušos" ;
+        Participle Masc Pl Loc => NON_EXISTENT ;
+
+        Participle Fem Sg Nom => pal_C1_3 stem3 + "usies" ;
+        Participle Fem Sg Gen => pal_C1_3 stem3 + "ušās" ;
+        Participle Fem Sg Dat => NON_EXISTENT ;
+        Participle Fem Sg Acc => pal_C1_3 stem3 + "ušos" ;
+        Participle Fem Sg Loc => NON_EXISTENT ;
+        Participle Fem Pl Nom => pal_C1_3 stem3 + "ušās" ;
+        Participle Fem Pl Gen => pal_C1_3 stem3 + "ušos" ;
+        Participle Fem Pl Dat => NON_EXISTENT ;
+        Participle Fem Pl Acc => pal_C1_3 stem3 + "ušos" ;
+        Participle Fem Pl Loc => NON_EXISTENT
+      }
+    } ;
+
+  -- Second conjugation: reflexive verbs
+  -- Ref. to Lexicon.xml (revision 719): 19. paradigma
+  mkVerb_C2_R : Str -> Verb_TMP = \lemma ->
+    let stem : Str = Predef.tk 4 lemma
+    in {
+      s = table {
+        Infinitive => stem + "ties" ;
+
+        Indicative P1 Sg Pres => stem + "jos" ;
+        Indicative P1 Sg Fut  => stem + "šos" ;
+        Indicative P1 Sg Past    => stem + "jos" ;
+        Indicative P1 Pl Pres => stem + "jamies" ;
+        Indicative P1 Pl Fut  => stem + "simies" ;
+        Indicative P1 Pl Past    => stem + "jāmies" ;
+
+        Indicative P2 Sg Pres => stem + "jies" ;
+        Indicative P2 Sg Fut  => stem + "sies" ;
+        Indicative P2 Sg Past    => stem + "jies" ;
+        Indicative P2 Pl Pres => stem + "jaties" ;
+        Indicative P2 Pl Fut  => stem + ("sieties"|"sities") ;
+        Indicative P2 Pl Past    => stem + "jāties" ;
+
+        Indicative P3 _ Pres => stem + "jas" ;
+        Indicative P3 _ Fut  => stem + "sies" ;
+        Indicative P3 _ Past    => stem + "jās" ;
+
+		Indicative _ _ Cond  => stem + "tos";		
+
+        Relative Pres => stem + "joties" ;
+        Relative Fut  => stem + "šoties" ;
+        Relative Past    => NON_EXISTENT ;
+        Relative Cond    => NON_EXISTENT ;
+
+        Debitive => "jā" + stem + "jas" ;
+        DebitiveRelative => "jā" + stem + "joties" ;
+
+        Participle Masc Sg Nom => stem + "jies" ;
+        Participle Masc Sg Gen => NON_EXISTENT ;
+        Participle Masc Sg Dat => NON_EXISTENT ;
+        Participle Masc Sg Acc => stem + "jušos" ;
+        Participle Masc Sg Loc => NON_EXISTENT ;
+        Participle Masc Pl Nom => stem + "jušies" ;
+        Participle Masc Pl Gen => stem + "jušos" ;
+        Participle Masc Pl Dat => NON_EXISTENT ;
+        Participle Masc Pl Acc => stem + "jušos" ;
+        Participle Masc Pl Loc => NON_EXISTENT ;
+
+        Participle Fem Sg Nom => stem + "jusies" ;
+        Participle Fem Sg Gen => stem + "jušās" ;
+        Participle Fem Sg Dat => NON_EXISTENT ;
+        Participle Fem Sg Acc => stem + "jušos" ;
+        Participle Fem Sg Loc => NON_EXISTENT ;
+        Participle Fem Pl Nom => stem + "jušās" ;
+        Participle Fem Pl Gen => stem + "jušos" ;
+        Participle Fem Pl Dat => NON_EXISTENT ;
+        Participle Fem Pl Acc => stem + "jušās" ;
+        Participle Fem Pl Loc => NON_EXISTENT
+      }
+    } ;
+
+  -- Third conjugation: reflexive verbs
+  -- Ref. to Lexicon.xml (revision 719): 20. paradigma
+  mkVerb_C3_R : Str -> Verb_TMP = \lemma ->
+    let stem : Str = Predef.tk 4 lemma
+    in {
+      s = table {
+        Infinitive => stem + "ties" ;
+
+        Indicative P1 Sg Pres => pal_C3_1 stem + "os" ;
+        Indicative P1 Sg Fut  => stem + "šos" ;
+        Indicative P1 Sg Past    => stem + "jos" ;
+        Indicative P1 Pl Pres => pal_C3_4 stem + "mies" ;
+        Indicative P1 Pl Fut  => stem + "simies" ;
+        Indicative P1 Pl Past    => stem + "jāmies" ;
+
+        Indicative P2 Sg Pres => pal_C3_1 stem + "ies" ;
+        Indicative P2 Sg Fut  => stem + "sies" ;
+        Indicative P2 Sg Past    => stem + "jies" ;
+        Indicative P2 Pl Pres => pal_C3_4 stem + "ties" ;
+        Indicative P2 Pl Fut  => stem + ("sieties"|"sities") ;
+        Indicative P2 Pl Past    => stem + "jāties" ;
+
+        Indicative P3 _ Pres => pal_C3_4 stem + "s" ;
+        Indicative P3 _ Fut  => stem + "sies" ;
+        Indicative P3 _ Past    => stem + "jās" ;
+
+		Indicative _ _ Cond  => stem + "tos";		
+
+        Relative Pres => pal_C3_1 stem + "oties" ;
+        Relative Fut  => stem + "šoties" ;
+        Relative Past    => NON_EXISTENT ;
+        Relative Cond    => NON_EXISTENT ;
+
+        Debitive => pal_C3_6 stem + "s" ;
+        DebitiveRelative => pal_C3_6 stem + "oties" ;
+
+        Participle Masc Sg Nom => stem + "jies" ;
+        Participle Masc Sg Gen => NON_EXISTENT ;
+        Participle Masc Sg Dat => NON_EXISTENT ;
+        Participle Masc Sg Acc => stem + "jušos" ;
+        Participle Masc Sg Loc => NON_EXISTENT ;
+        Participle Masc Pl Nom => stem + "jušies" ;
+        Participle Masc Pl Gen => stem + "jušos" ;
+        Participle Masc Pl Dat => NON_EXISTENT ;
+        Participle Masc Pl Acc => stem + "jušos" ;
+        Participle Masc Pl Loc => NON_EXISTENT ;
+
+        Participle Fem Sg Nom => stem + "jusies" ;
+        Participle Fem Sg Gen => stem + "jušās" ;
+        Participle Fem Sg Dat => NON_EXISTENT ;
+        Participle Fem Sg Acc => stem + "jušos" ;
+        Participle Fem Sg Loc => NON_EXISTENT ;
+        Participle Fem Pl Nom => stem + "jušās" ;
+        Participle Fem Pl Gen => stem + "jušos" ;
+        Participle Fem Pl Dat => NON_EXISTENT ;
+        Participle Fem Pl Acc => stem + "jušās" ;
+        Participle Fem Pl Loc => NON_EXISTENT
+      }
+    } ;
+
+  mkVerb_Irreg : Str -> Verb = \lemma ->
+    case lemma of {
+      "būt" => mkVerb_toBe
+    } ;
+
+  mkVerb_toBe : Verb = {
+    s = table {
+      Pos => table {
+        Indicative P1 Sg Pres => "esmu" ;
+        Indicative P2 Sg Pres => "esi" ;
+        Indicative P3 _  Pres => "ir" ;
+        Debitive => "jābūt" ;
+        x => (mkVerb_C1 "būt" "esu" "biju").s ! x			-- the incorrect form 'esu' will be overriden
+      } ;
+      Neg => table {
+        Indicative P1 Sg Pres => "neesmu" ;
+        Indicative P2 Sg Pres => "neesi" ;
+        Indicative P3 _  Pres => "nav" ;
+        Debitive => NON_EXISTENT;
+        DebitiveRelative => NON_EXISTENT;
+        x => (mkVerb_C1 "nebūt" "neesu" "nebiju").s ! x		-- the incorrect form 'neesu' will be overriden
+      }
+    }
+  } ;
+
+  -- Auxiliaries (palatalization rules)
+
+  -- Ref. to the Java implementation: mija6
+  pal_C1_1 : Str -> Str -> Str = \stem3,stem ->
+    case stem of {
+      s + "s" => case stem3 of {
+        _ + "d" => s + "dī" ;
+        _ + "t" => s + "tī" ;
+        _ + "s" => s + "sī" ;
+        _ => stem
+      } ;
+      _ => stem
+    } ;
+
+  -- Ref. to the Java implementation: mija7
+  pal_C1_2 : Str -> Str -> Str = \stem3,stem ->
+    case stem of {
+      s + "š" => case stem3 of {
+        _ + "s" => s + "s" ;
+        _ => stem
+      } ;
+      s + "ž"  => s + "d" ;
+      s + "ļ"  => s + "l" ;
+      s + "mj" => s + "m" ;
+      s + "bj" => s + "b" ;
+      s + "pj" => s + "p" ;
+      s + "k"  => s + "c" ;
+      s + "g"  => s + "dz" ;
+      _ => stem
+    } ;
+
+  -- Ref. to the Java implementation: mija11
+  pal_C1_3 : Str -> Str = \stem ->
+    case stem of {
+      s + "c"  => s + "k" ;
+      s + "dz" => s + "g" ;
+      _ => stem
+    } ;
+
+  -- Ref. to the Java implementation: mija14
+  pal_C1_4 : Str -> Str = \stem ->
+    case stem of {
+      s + "k" => s + "c" ;
+      _ => stem
+    } ;
+
+  -- Ref. to the Java implementation: mija2
+  pal_C3_1 : Str -> Str = \stem ->
+    case stem of {
+      s + "cī" => s + "k" ;
+      _ => Predef.tk 1 stem
+    } ;
+
+  -- Ref. to the Java implementation: mija2a
+  pal_C3_2 : Str -> Str -> Str = \stem,ending ->
+    case stem of {
+      _ + "ī"   => "ā" + Predef.dp 1 ending ;
+      _ + "inā" => "ā" + Predef.dp 1 ending ;
+      _ => ending
+    } ;
+
+  -- Ref. to the Java implementation: mija5
+  pal_C3_3 : Str -> Str = \stem ->
+    "jā" +
+    case stem of {
+      s + "dā" => s + "d" ;
+      s + "ā"  => s + "a" ;
+      s + "cī" => s + "ka" ;
+      s + "ī"  => s + "a" ;
+      _ => Predef.tk 1 stem
+    } ;
+
+  -- Ref. to the Java implementation: mija8
+  pal_C3_4 : Str -> Str = \stem ->
+    case stem of {
+      s + "inā" => stem ;
+      s + "cī"  => s + "kā" ;		-- e.g. 'sacīt'
+      s + "ī"   => s + "ā" ;
+      s + "ē"   => s + "a" ;
+      _ => stem
+    } ;
+
+  -- Ref. to the Java implementation: mija9
+  pal_C3_5 : Str -> Str = \stem ->
+    case stem of {
+      s + "dā" => Predef.tk 1 stem ;
+      s + "ā"  => s + "a" ;
+      s + "cī" => s + "ka" ;		-- e.g. 'sacīt'
+      s + "ī"  => s + "a" ;
+      _ => Predef.tk 1 stem
+    } ;
+
+  -- Ref. to the Java implementation: mija12
+  pal_C3_6 : Str -> Str = \stem ->
+    "jā" +
+    case stem of {
+      s + "cī"  => s + "kā" ;
+      s + "ī"   => s + "ā" ;
+      s + "inā" => s + "inā" ;
+      _ => Predef.tk 1 stem + "a"
+    } ;  
+	
+} ;
diff --git a/lib/src/latvian/PhraseLav.gf b/lib/src/latvian/PhraseLav.gf
new file mode 100644
--- /dev/null
+++ b/lib/src/latvian/PhraseLav.gf
@@ -0,0 +1,29 @@
+concrete PhraseLav of Phrase = CatLav ** open Prelude, ResLav in {
+  lin
+    PhrUtt pconj utt voc = {s = pconj.s ++ utt.s ++ voc.s} ;
+    UttS s = s ;
+
+    NoPConj = {s = []} ;
+    NoVoc = {s = []} ;
+  
+{-
+
+    UttQS qs = {s = qs.s ! QDir} ;
+    UttImpSg pol imp = {s = pol.s ++ imp.s ! contrNeg True pol.p ! ImpF Sg False} ;
+    UttImpPl pol imp = {s = pol.s ++ imp.s ! contrNeg True pol.p ! ImpF Pl False} ;
+    UttImpPol pol imp = {s = pol.s ++ imp.s ! contrNeg True pol.p ! ImpF Sg True} ;
+
+    UttIP ip = {s = ip.s ! Nom} ; --- Acc also
+    UttIAdv iadv = iadv ;
+    UttNP np = {s = np.s ! Nom} ;
+    UttVP vp = {s = infVP False vp (agrP3 Sg)} ;
+    UttAdv adv = adv ;
+    UttCN n = {s = n.s ! Sg ! Nom} ;
+    UttCard n = {s = n.s ! Nom} ;
+    UttAP ap = {s = ap.s ! agrP3 Sg} ;
+
+    PConjConj conj = {s = conj.s2} ; ---
+
+    VocNP np = {s = "," ++ np.s ! Nom} ;
+-}
+}
diff --git a/lib/src/latvian/QuestionLav.gf b/lib/src/latvian/QuestionLav.gf
new file mode 100644
--- /dev/null
+++ b/lib/src/latvian/QuestionLav.gf
@@ -0,0 +1,55 @@
+concrete QuestionLav of Question = CatLav ** open ResLav, Prelude in {
+{-
+  flags optimize=all_subs ;
+
+  lin
+
+    QuestCl cl = {
+      s = \\t,a,p => 
+            let cls = cl.s ! t ! a ! p 
+            in table {
+              QDir   => cls ! OQuest ;
+              QIndir => "if" ++ cls ! ODir
+              } ---- "whether" in ExtEng
+      } ;
+
+    QuestVP qp vp = 
+      let cl = mkClause (qp.s ! Nom) (agrP3 qp.n) vp
+      in {s = \\t,a,b,_ => cl.s ! t ! a ! b ! ODir} ;
+
+    QuestSlash ip slash = 
+      mkQuestion (ss (slash.c2 ++ ip.s ! Acc)) slash ;
+      --- stranding in ExratEng 
+
+    QuestIAdv iadv cl = mkQuestion iadv cl ;
+
+    QuestIComp icomp np = 
+      mkQuestion icomp (mkClause (np.s ! Nom) np.a (predAux auxBe)) ;
+
+
+    PrepIP p ip = {s = p.s ++ ip.s ! Acc} ;
+
+    AdvIP ip adv = {
+      s = \\c => ip.s ! c ++ adv.s ;
+      n = ip.n
+      } ;
+ 
+    IdetCN idet cn = {
+      s = \\c => idet.s ++ cn.s ! idet.n ! c ; 
+      n = idet.n
+      } ;
+
+    IdetIP idet = {
+      s = \\c => idet.s ; 
+      n = idet.n
+      } ;
+
+    IdetQuant idet num = {
+      s = idet.s ! num.n ++ num.s ! Nom ; 
+      n = num.n
+      } ;
+
+    CompIAdv a = a ;
+    CompIP p = ss (p.s ! Nom) ;
+-}
+}
diff --git a/lib/src/latvian/RelativeLav.gf b/lib/src/latvian/RelativeLav.gf
new file mode 100644
--- /dev/null
+++ b/lib/src/latvian/RelativeLav.gf
@@ -0,0 +1,52 @@
+concrete RelativeLav of Relative = CatLav ** open ResLav in {
+{-
+  flags optimize=all_subs ;
+
+  lin
+
+    RelCl cl = {
+      s = \\t,a,p,_ => "such" ++ "that" ++ cl.s ! t ! a ! p ! ODir ; 
+      c = Nom
+      } ;
+
+    RelVP rp vp = {
+      s = \\t,ant,b,ag => 
+        let 
+          agr = case rp.a of {
+            RNoAg => ag ;
+            RAg a => a
+            } ;
+          cl = mkClause (rp.s ! RC (fromAgr agr).g Nom) agr vp
+        in
+        cl.s ! t ! ant ! b ! ODir ;
+      c = Nom
+      } ;
+
+-- Pied piping: "at which we are looking". Stranding and empty
+-- relative are defined in $ExtraEng.gf$ ("that we are looking at", 
+-- "we are looking at").
+
+    RelSlash rp slash = {
+      s = \\t,a,p,agr => 
+          slash.c2 ++ rp.s ! RPrep (fromAgr agr).g ++ slash.s ! t ! a ! p ! ODir ;
+      c = Acc
+      } ;
+
+    FunRP p np rp = {
+      s = \\c => np.s ! Acc ++ p.s ++ rp.s ! RPrep (fromAgr np.a).g ;
+      a = RAg np.a
+      } ;
+
+    IdRP = 
+     { s = table {
+        RC _ Gen => "whose" ; 
+        RC Neutr _  => "which" ;
+        RC _ Acc    => "whom" ;
+        RC _ Nom    => "who" ;
+        RPrep Neutr => "which" ;
+        RPrep _     => "whom"
+        } ;
+      a = RNoAg
+      } ;
+-}
+}
diff --git a/lib/src/latvian/ResLav.gf b/lib/src/latvian/ResLav.gf
new file mode 100644
--- /dev/null
+++ b/lib/src/latvian/ResLav.gf
@@ -0,0 +1,503 @@
+-- This module contains operations that are needed to make the
+-- resource syntax work. To define everything that is needed to
+-- implement $Test$, it moreover contains regular lexical
+-- patterns needed for $Lex$.
+
+resource ResLav = ParamX ** open Prelude in {
+  flags optimize=all ;
+  
+
+-- Some parameters, such as $Number$, are inherited from $ParamX$.
+--2 For $Noun$
+-- This is the worst-case $Case$ needed for pronouns.
+  param
+  
+  -- Nouns
+    Case = Nom | Gen | Dat | Acc | Loc ;
+    Gender = Masc | Fem ;
+	Restriction = AllForms | SgOnly | PlOnly | SgGenOnly | PlGenOnly ; 
+	NounDecl = D0 | D1 | D2 | D3 | D4 | D5 | D6 | DR ;
+	
+  -- Adjectives
+	Definite = Indef | Def ;
+	AdjType  = AdjQual | AdjRel | AdjIndecl ;
+	
+  -- Verbs
+  -- Ind  = Indicative
+  -- Rel  = Relative (Latvian specific: http://www.isocat.org/rest/dc/3836)
+  -- Deb  = Debitive (Latvian specific: http://www.isocat.org/rest/dc/3835)
+  -- Condit = Conditional
+  -- DebitiveRelative - the relative subtype of debitive
+	VerbForm = Infinitive | Indicative Person Number Tense | Relative Tense | Debitive |
+			   DebitiveRelative | Participle Gender Number Case ; -- Imperative nav pielikts, bet tur ir kaut kâdas îpatnîbas globâlajâ ParamsX modulî par imperatîvu
+	VerbMood = Ind Anteriority Tense | Rel Anteriority Tense | Deb Anteriority Tense | Condit Anteriority ;
+	VerbConj = C2 | C3 ;
+	
+	Agr = Ag Gender Number ;
+	
+	ThisOrThat = This | That ;
+	
+  oper	
+	
+	vowel : pattern Str = #("a"|"â"|"e"|"ç"|"i"|"î"|"o"|"u"|"û") ;
+
+	simpleCons : pattern Str = #("c"|"d"|"l"|"n"|"s"|"t"|"z") ;
+	labialCons : pattern Str = #("b"|"m"|"p"|"v") ;
+	sonantCons : pattern Str = #("l"|"m"|"n"|"r"|"ï"|"ò") ;
+	doubleCons : pattern Str = #("ll"|"ln"|"nn"|"sl"|"sn"|"st"|"zl"|"zn") ;
+	
+	NON_EXISTENT : Str = "NON_EXISTENT" ;
+	
+	
+{-	
+-- Agreement of $NP$ has 8 values. $Gender$ is needed for "who"/"which" and
+-- for "himself"/"herself"/"itself".
+
+  param
+    Agr = AgP1 Number | AgP2 Number | AgP3Sg Gender | AgP3Pl ;
+
+  param 
+    Gender = Neutr | Masc | Fem ;
+
+
+--2 For $Verb$
+
+-- Only these five forms are needed for open-lexicon verbs.
+
+  param
+    VForm = 
+       VInf
+     | VPres
+     | VPPart
+     | VPresPart
+     | VPast      --# notpresent
+     ;
+
+-- Auxiliary verbs have special negative forms.
+
+    VVForm = 
+       VVF VForm
+     | VVPresNeg
+     | VVPastNeg  --# notpresent
+     ;
+
+-- The order of sentence is needed already in $VP$.
+
+    Order = ODir | OQuest ;
+
+
+--2 For $Adjective$
+
+    AForm = AAdj Degree Case | AAdv ;
+
+--2 For $Relative$
+ 
+    RAgr = RNoAg | RAg Agr ;
+    RCase = RPrep Gender | RC Gender Case ;
+
+--2 For $Numeral$
+
+    CardOrd = NCard | NOrd ;
+    DForm = unit | teen | ten  ;
+
+--2 Transformations between parameter types
+
+  oper
+    toAgr : Number -> Person -> Gender -> Agr = \n,p,g -> 
+      case p of {
+        P1 => AgP1 n ;
+        P2 => AgP2 n ;
+        P3 => case n of {
+          Sg => AgP3Sg g ;
+          Pl => AgP3Pl
+          }
+        } ;
+
+    fromAgr : Agr -> {n : Number ; p : Person ; g : Gender} = \a -> case a of {
+      AgP1 n => {n = n ; p = P1 ; g = Masc} ;
+      AgP2 n => {n = n ; p = P2 ; g = Masc} ;
+      AgP3Pl => {n = Pl ; p = P3 ; g = Masc} ;
+      AgP3Sg g => {n = Sg ; p = P3 ; g = g}
+      } ;
+
+    agrP3 : Number -> Agr = \n -> agrgP3 n Neutr ;
+
+    agrgP3 : Number -> Gender -> Agr = \n,g -> toAgr n P3 g ;
+
+    conjAgr : Agr -> Agr -> Agr = \a0,b0 -> 
+      let a = fromAgr a0 ; b = fromAgr b0 
+      in
+      toAgr
+        (conjNumber a.n b.n)
+        (conjPerson a.p b.p) a.g ;
+
+-- For $Lex$.
+
+-- For each lexical category, here are the worst-case constructors.
+
+    mkNoun : (_,_,_,_ : Str) -> {s : Number => Case => Str} = 
+      \man,mans,men,mens -> {
+      s = table {
+        Sg => table {
+          Gen => mans ;
+          _ => man
+          } ;
+        Pl => table {
+          Gen => mens ;
+          _ => men
+          }
+        }
+      } ;
+
+    mkAdjective : (_,_,_,_ : Str) -> {s : AForm => Str; lock_A : {}} = 
+      \good,better,best,well -> lin A {
+      s = table {
+        AAdj Posit  c => (regGenitiveS good) ! c ;
+        AAdj Compar c => (regGenitiveS better) ! c ;
+        AAdj Superl c => (regGenitiveS best) ! c ;
+        AAdv          => well
+        }
+      } ;
+
+    mkVerb : (_,_,_,_,_ : Str) -> Verb = 
+      \go,goes,went,gone,going -> {
+      s = table {
+        VInf   => go ;
+        VPres  => goes ;
+        VPast  => went ; --# notpresent
+        VPPart => gone ;
+        VPresPart => going
+        } ;
+      isRefl = False
+      } ;
+
+    mkIP : (i,me,my : Str) -> Number -> {s : Case => Str ; n : Number} =
+     \i,me,my,n -> let who = mkNP i me my n P3 Neutr in {
+        s = who.s ; 
+        n = n
+        } ;
+
+    mkNP : (i,me,my : Str) -> Number -> Person -> Gender -> 
+     {s : Case => Str ; a : Agr} = \i,me,my,n,p,g -> 
+   { s = table {
+       Nom => i ;
+       Acc => me ;
+       Gen => my
+       } ;
+     a = toAgr n p g ;
+   };
+
+    regNP : Str -> Number -> {s : Case => Str ; a : Agr} = \that,n ->
+      mkNP that that (that + "'s") n P3 Neutr ;
+
+    regGenitiveS : Str -> Case => Str = \s -> 
+      table { Gen => genitiveS s; _ => s } ;
+
+    genitiveS : Str -> Str = \dog ->
+      case last dog of {
+          "s" => dog + "'" ;
+          _   => dog + "'s"
+          };
+
+-- We have just a heuristic definition of the indefinite article.
+-- There are lots of exceptions: consonantic "e" ("euphemism"), consonantic
+-- "o" ("one-sided"), vocalic "u" ("umbrella").
+
+    artIndef = pre {
+      "eu" | "Eu" | "uni" | "up" => "a" ;
+      "un" => "an" ; 
+      "a" | "e" | "i" | "o" | "A" | "E" | "I" | "O" => "an" ;
+      _ => "a"
+      } ;
+
+    artDef = "the" ;
+
+-- For $Verb$.
+
+  Verb : Type = {
+    s : VForm => Str ;
+    isRefl : Bool
+    } ;
+
+  param
+  CPolarity = 
+     CPos
+   | CNeg Bool ;  -- contracted or not
+
+  oper
+  contrNeg : Bool -> Polarity -> CPolarity = \b,p -> case p of {
+    Pos => CPos ;
+    Neg => CNeg b
+    } ;
+
+  VerbForms : Type =
+    Tense => Anteriority => CPolarity => Order => Agr => 
+      {aux, adv, fin, inf : Str} ; -- would, not, sleeps, slept
+
+  VP : Type = {
+    s   : VerbForms ;
+    prp : Str ;   -- present participle 
+    inf : Str ;   -- the infinitive form ; VerbForms would be the logical place
+    ad  : Str ;   -- sentence adverb
+    s2  : Agr => Str -- complement
+    } ;
+
+
+  SlashVP = VP ** {c2 : Str} ;
+
+  predVc : (Verb ** {c2 : Str}) -> SlashVP = \verb -> 
+    predV verb ** {c2 = verb.c2} ;
+
+  predV : Verb -> VP = \verb -> {
+    s = \\t,ant,b,ord,agr => 
+      let
+        inf  = verb.s ! VInf ;
+        fin  = presVerb verb agr ;
+        part = verb.s ! VPPart ;
+      in
+      case <t,ant,b,ord> of {
+        <Pres,Simul,CPos,ODir>   => vff            fin [] ;
+        <Pres,Simul,CPos,OQuest> => vf (does agr)   inf ;
+        <Pres,Anter,CPos,_>      => vf (have agr)   part ; --# notpresent
+        <Pres,Anter,CNeg c,_>    => vfn c (have agr) (havent agr) part ; --# notpresent
+        <Past,Simul,CPos,ODir>   => vff (verb.s ! VPast) [] ; --# notpresent
+        <Past,Simul,CPos,OQuest> => vf "did"        inf ; --# notpresent
+        <Past,Simul,CNeg c,_>    => vfn c "did" "didn't"     inf ; --# notpresent
+        <Past,Anter,CPos,_>      => vf "had"        part ; --# notpresent
+        <Past,Anter,CNeg c,_>    => vfn c "had" "hadn't"     part ; --# notpresent
+        <Fut, Simul,CPos,_>      => vf "will"       inf ; --# notpresent
+        <Fut, Simul,CNeg c,_>    => vfn c "will" "won't"      inf ; --# notpresent
+        <Fut, Anter,CPos,_>      => vf "will"       ("have" ++ part) ; --# notpresent
+        <Fut, Anter,CNeg c,_>    => vfn c "will" "won't"("have" ++ part) ; --# notpresent
+        <Cond,Simul,CPos,_>      => vf "would"      inf ; --# notpresent
+        <Cond,Simul,CNeg c,_>    => vfn c "would" "wouldn't"   inf ; --# notpresent
+        <Cond,Anter,CPos,_>      => vf "would"      ("have" ++ part) ; --# notpresent
+        <Cond,Anter,CNeg c,_> => vfn c "would" "wouldn't" ("have" ++ part) ; --# notpresent
+        <Pres,Simul,CNeg c,_>    => vfn c (does agr) (doesnt agr) inf
+        } ;
+    prp  = verb.s ! VPresPart ;
+    inf  = verb.s ! VInf ;
+    ad   = [] ;
+    s2 = \\a => if_then_Str verb.isRefl (reflPron ! a) []
+    } ;
+
+  predAux : Aux -> VP = \verb -> {
+    s = \\t,ant,cb,ord,agr => 
+      let 
+        b = case cb of {
+          CPos => Pos ;
+          _ => Neg
+          } ;
+        inf  = verb.inf ;
+        fin  = verb.pres ! b ! agr ;
+        finp = verb.pres ! Pos ! agr ;
+        part = verb.ppart ;
+      in
+      case <t,ant,cb,ord> of {
+        <Pres,Anter,CPos,_>      => vf (have agr)   part ;  --# notpresent
+        <Pres,Anter,CNeg c,_>    => vfn c (have agr) (havent agr) part ; --# notpresent
+        <Past,Simul,CPos,  _>    => vf (verb.past ! b ! agr) [] ; --# notpresent
+        <Past,Simul,CNeg c,  _> => vfn c (verb.past!Pos!agr)(verb.past!Neg!agr) [] ; --# notpresent
+        <Past,Anter,CPos,_>      => vf "had"        part ; --# notpresent
+        <Past,Anter,CNeg c,_>    => vfn c "had" "hadn't"     part ; --# notpresent
+        <Fut, Simul,CPos,_>      => vf "will"       inf ; --# notpresent
+        <Fut, Simul,CNeg c,_>    => vfn c "will" "won't"      inf ; --# notpresent
+        <Fut, Anter,CPos,_>      => vf "will"       ("have" ++ part) ; --# notpresent
+        <Fut, Anter,CNeg c,_>    => vfn c "will" "won't"("have" ++ part) ; --# notpresent
+        <Cond,Simul,CPos,_>      => vf "would"      inf ; --# notpresent
+        <Cond,Simul,CNeg c,_>    => vfn c "would" "wouldn't"   inf ; --# notpresent
+        <Cond,Anter,CPos,_>      => vf "would"      ("have" ++ part) ; --# notpresent
+        <Cond,Anter,CNeg c,_> => vfn c "would" "wouldn't" ("have" ++ part) ; --# notpresent
+        <Pres,Simul,CPos,  _>    => vf fin          [] ;
+        <Pres,Simul,CNeg c,  _>  => vfn c finp fin          [] 
+        } ;
+    prp = verb.prpart ;
+    inf = verb.inf ;
+    ad = [] ;
+    s2 = \\_ => []
+    } ;
+        
+  vff : Str -> Str -> {aux, adv, fin, inf : Str} = \x,y -> 
+    {aux = [] ; adv = [] ; fin = x ; inf = y} ;
+
+  vf : Str -> Str -> {aux, adv, fin, inf : Str} = \x,y -> vfn True x x y ;
+
+  vfn : Bool -> Str -> Str -> Str -> {aux, fin, adv, inf : Str} = 
+    \contr,x,y,z -> 
+    case contr of {
+      True  => {aux = y ; adv = [] ; fin = [] ; inf = z} ;
+      False => {aux = x ; adv = "not" ; fin = [] ; inf = z}
+      } ;
+
+  insertObj : (Agr => Str) -> VP -> VP = \obj,vp -> {
+    s = vp.s ;
+    prp = vp.prp ;
+    inf = vp.inf ;
+    ad = vp.ad ;
+    s2 = \\a => vp.s2 ! a ++ obj ! a
+    } ;
+
+  insertObjPre : (Agr => Str) -> VP -> VP = \obj,vp -> {
+    s = vp.s ;
+    prp = vp.prp ;
+    inf = vp.inf ;
+    ad = vp.ad ;
+    s2 = \\a => obj ! a ++ vp.s2 ! a 
+    } ;
+
+  insertObjc : (Agr => Str) -> SlashVP -> SlashVP = \obj,vp -> 
+    insertObj obj vp ** {c2 = vp.c2} ;
+
+--- The adverb should be before the finite verb.
+
+  insertAdV : Str -> VP -> VP = \ad,vp -> {
+    s = vp.s ;
+    prp = vp.prp ;
+    inf = vp.inf ;
+    ad  = vp.ad ++ ad ;
+    s2 = \\a => vp.s2 ! a
+    } ;
+
+-- 
+
+  predVV : {s : VVForm => Str ; isAux : Bool} -> VP = \verb ->
+    let verbs = verb.s
+    in
+    case verb.isAux of {
+      True => predAux {
+        pres = table {
+          Pos => \\_ => verbs ! VVF VPres ;
+          Neg => \\_ => verbs ! VVPresNeg
+          } ;
+        past = table {                       --# notpresent
+          Pos => \\_ => verbs ! VVF VPast ;  --# notpresent
+          Neg => \\_ => verbs ! VVPastNeg    --# notpresent
+          } ;    --# notpresent
+        inf = verbs ! VVF VInf ;
+        ppart = verbs ! VVF VPPart ;
+        prpart = verbs ! VVF VPresPart ;
+        } ;
+      _    => predV {s = \\vf => verbs ! VVF vf ; isRefl = False}
+      } ;
+
+  presVerb : {s : VForm => Str} -> Agr -> Str = \verb -> 
+    agrVerb (verb.s ! VPres) (verb.s ! VInf) ;
+
+  infVP : Bool -> VP -> Agr -> Str = \isAux,vp,a ->
+    vp.ad ++ 
+    case isAux of {True => [] ; False => "to"} ++ 
+    vp.inf ++ vp.s2 ! a ;
+
+  agrVerb : Str -> Str -> Agr -> Str = \has,have,agr -> 
+    case agr of {
+      AgP3Sg _ => has ;
+      _        => have
+      } ;
+
+  have   = agrVerb "has"     "have" ;
+  havent = agrVerb "hasn't"  "haven't" ;
+  does   = agrVerb "does"    "do" ;
+  doesnt = agrVerb "doesn't" "don't" ;
+
+  Aux = {
+    pres : Polarity => Agr => Str ; 
+    past : Polarity => Agr => Str ;  --# notpresent
+    inf,ppart,prpart : Str
+    } ;
+
+  auxBe : Aux = {
+    pres = \\b,a => case <b,a> of {
+      <Pos,AgP1 Sg> => "am" ; 
+      <Neg,AgP1 Sg> => ["am not"] ; --- am not I
+      _ => agrVerb (posneg b "is")  (posneg b "are") a
+      } ;
+    past = \\b,a => case a of {          --# notpresent
+      AgP1 Sg | AgP3Sg _ => posneg b "was" ; --# notpresent
+      _                  => (posneg b "were")  --# notpresent
+      } ; --# notpresent
+    inf  = "be" ;
+    ppart = "been" ;
+    prpart = "being"
+    } ;
+
+  posneg : Polarity -> Str -> Str = \p,s -> case p of {
+    Pos => s ;
+    Neg => s + "n't"
+    } ;
+
+  conjThat : Str = "that" ;
+
+  reflPron : Agr => Str = table {
+    AgP1 Sg      => "myself" ;
+    AgP2 Sg      => "yourself" ;
+    AgP3Sg Masc  => "himself" ;
+    AgP3Sg Fem   => "herself" ;
+    AgP3Sg Neutr => "itself" ;
+    AgP1 Pl      => "ourselves" ;
+    AgP2 Pl      => "yourselves" ;
+    AgP3Pl       => "themselves"
+    } ;
+
+-- For $Sentence$.
+
+  Clause : Type = {
+    s : Tense => Anteriority => CPolarity => Order => Str
+    } ;
+
+  mkClause : Str -> Agr -> VP -> Clause =
+    \subj,agr,vp -> {
+      s = \\t,a,b,o => 
+        let 
+          verb  = vp.s ! t ! a ! b ! o ! agr ;
+          compl = vp.s2 ! agr
+        in
+        case o of {
+          ODir => subj ++ verb.aux ++ verb.adv ++ vp.ad ++ verb.fin ++ verb.inf ++ compl ;
+          OQuest => verb.aux ++ subj ++ verb.adv ++ vp.ad ++ verb.fin ++ verb.inf ++ compl
+          }
+    } ;
+
+
+-- For $Numeral$.
+
+  mkNum : Str -> Str -> Str -> Str -> {s : DForm => CardOrd => Case => Str} = 
+    \two, twelve, twenty, second ->
+    {s = table {
+       unit => table {NCard => regGenitiveS two ; NOrd => regGenitiveS second} ; 
+       teen => \\c => mkCard c twelve ; 
+       ten  => \\c => mkCard c twenty
+       }
+    } ;
+
+  regNum : Str -> {s : DForm => CardOrd => Case => Str} = 
+    \six -> mkNum six (six + "teen") (six + "ty") (regOrd six) ;
+
+  regCardOrd : Str -> {s : CardOrd => Case => Str} = \ten ->
+    {s = table {NCard => regGenitiveS ten ; 
+		NOrd => regGenitiveS (regOrd ten)} } ;
+
+  mkCard : CardOrd -> Str -> Case => Str = \o,ten -> 
+    (regCardOrd ten).s ! o ; 
+
+  regOrd : Str -> Str = \ten -> 
+    case last ten of {
+      "y" => init ten + "ieth" ;
+      _   => ten + "th"
+      } ;
+
+  mkQuestion : 
+      {s : Str} -> Clause -> 
+      {s : Tense => Anteriority => CPolarity => QForm => Str} = \wh,cl ->
+      {
+      s = \\t,a,p => 
+            let 
+              cls = cl.s ! t ! a ! p ;
+              why = wh.s
+            in table {
+              QDir   => why ++ cls ! OQuest ;
+              QIndir => why ++ cls ! ODir
+              }
+      } ;
+
+-}
+}
diff --git a/lib/src/latvian/SentenceLav.gf b/lib/src/latvian/SentenceLav.gf
new file mode 100644
--- /dev/null
+++ b/lib/src/latvian/SentenceLav.gf
@@ -0,0 +1,100 @@
+concrete SentenceLav of Sentence = CatLav ** open Prelude, ResLav, ParadigmsVerbsLav in {
+  flags optimize=all_subs ;
+
+  lin
+
+  UseCl t p cl = {s = t.s ++ p.s ++ cl.s ! (Ind t.a t.t) ! p.p} ;
+  
+  PredVP np vp =
+    let
+      part = vp.v.s ! ResLav.Pos ! (Participle np.g np.n Nom) ;
+      obj  = vp.obj ! (Ag np.g np.n)
+    in {
+      s = \\mood,pol =>
+        case mood of {		-- Subject
+          Deb _ _ => np.s ! Dat ;
+          _ => np.s ! Nom
+        } ++
+        case mood of {		-- Verb
+          Ind Simul tense  => vp.v.s ! pol ! (Indicative np.p np.n tense) ;
+          Ind Anter tense => mkVerb_toBe.s ! pol ! (Indicative np.p np.n tense) ++ part ;
+
+          Rel _       Past  => ResLav.NON_EXISTENT ;		-- FIXME (?)
+          Rel Simul tense => vp.v.s ! pol ! (Relative tense) ;
+          Rel Anter tense => mkVerb_toBe.s ! pol ! (Relative tense) ++ part ;
+
+          Deb Simul tense => mkVerb_toBe.s ! pol ! (Indicative P3 Sg tense) ++
+            vp.v.s ! ResLav.Pos ! Debitive ;
+          Deb Anter tense => mkVerb_toBe.s ! pol ! (Indicative P3 Sg tense) ++
+            mkVerb_toBe.s ! ResLav.Pos ! (Participle Masc Sg Nom) ++ vp.v.s ! ResLav.Pos ! Debitive ;
+
+          Condit Simul  => vp.v.s ! pol ! (Indicative np.p np.n Cond) ;
+          Condit Anter => mkVerb_toBe.s ! pol ! (Indicative np.p np.n Cond) ++ part
+        } ++
+        obj					-- Object
+    } ;
+  
+{-  
+    PredVP np vp = mkClause (np.s ! Nom) np.a vp ;
+
+    PredSCVP sc vp = mkClause sc.s (agrP3 Sg) vp ;
+
+    ImpVP vp = {
+      s = \\pol,n => 
+        let 
+          agr   = AgP2 (numImp n) ;
+          verb  = infVP True vp agr ;
+          dont  = case pol of {
+            CNeg True => "don't" ;
+            CNeg False => "do" ++ "not" ;
+            _ => []
+            }
+        in
+        dont ++ verb
+    } ;
+
+    SlashVP np vp = 
+      mkClause (np.s ! Nom) np.a vp ** {c2 = vp.c2} ;
+
+    AdvSlash slash adv = {
+      s  = \\t,a,b,o => slash.s ! t ! a ! b ! o ++ adv.s ;
+      c2 = slash.c2
+    } ;
+
+    SlashPrep cl prep = cl ** {c2 = prep.s} ;
+
+    SlashVS np vs slash = 
+      mkClause (np.s ! Nom) np.a 
+        (insertObj (\\_ => conjThat ++ slash.s) (predV vs))  **
+        {c2 = slash.c2} ;
+
+    EmbedS  s  = {s = conjThat ++ s.s} ;
+    EmbedQS qs = {s = qs.s ! QIndir} ;
+    EmbedVP vp = {s = infVP False vp (agrP3 Sg)} ; --- agr
+
+    UseCl  t p cl = {
+      s = t.s ++ p.s ++ cl.s ! t.t ! t.a ! ctr p.p ! ODir
+    } ;
+    UseQCl t p cl = {
+      s = \\q => t.s ++ p.s ++ cl.s ! t.t ! t.a ! ctr p.p ! q
+    } ;
+    UseRCl t p cl = {
+      s = \\r => t.s ++ p.s ++ cl.s ! t.t ! t.a ! ctr p.p ! r ;
+      c = cl.c
+    } ;
+    UseSlash t p cl = {
+      s = t.s ++ p.s ++ cl.s ! t.t ! t.a ! ctr p.p  ! ODir ;
+      c2 = cl.c2
+    } ;
+
+    AdvS a s = {s = a.s ++ "," ++ s.s} ;
+
+    SSubjS a s b = {s = a.s ++ s.s ++ b.s} ;
+
+    RelS s r = {s = s.s ++ "," ++ r.s ! agrP3 Sg} ;
+
+  oper
+    ctr = contrNeg True ;  -- contracted negations
+-}
+}
+
diff --git a/lib/src/latvian/StructuralLav.gf b/lib/src/latvian/StructuralLav.gf
new file mode 100644
--- /dev/null
+++ b/lib/src/latvian/StructuralLav.gf
@@ -0,0 +1,166 @@
+concrete StructuralLav of Structural = CatLav ** 
+  open MorphoLav, ResLav, ParadigmsLav, ParadigmsPronounsLav, MakeStructuralLav, 
+  (C = ConstructX), Prelude in {
+
+flags
+  optimize = all ;
+  coding = utf8 ; 
+  
+lin  
+ 
+  every_Det = {
+    s = (\\g,c => (mkPronoun_Gend "ikviens").s ! g ! Sg ! c) ;   -- TODO - kā ar loģikā lietotajiem 'visi', 'katrs' ?
+    n = Sg ;
+    d = Indef
+  } ;
+
+  someSg_Det = {
+    s = (\\g,c => (mkPronoun_Gend "kāds").s ! g ! Sg ! c) ;  --  lai atļautu arī tukšo, jāliek (\\_,_ => []) |  klāt
+    n = Sg ;
+    d = Indef
+  } ;
+  somePl_Det = {
+	s = (\\g,c => (mkPronoun_Gend "kāds").s ! g ! Pl ! c) ;   --  lai atļautu arī tukšo, jāliek (\\_,_ => []) |  klāt
+	n = Pl ;
+	d = Indef
+  } ;
+
+  
+{-
+  above_Prep = mkPrep "above" ;
+  after_Prep = mkPrep "after" ;
+  all_Predet = ss "all" ;
+  almost_AdA = mkAdA "almost" ;
+  almost_AdN = mkAdN "almost" ;
+  although_Subj = ss "although" ;
+  always_AdV = mkAdV "always" ;
+  and_Conj = mkConj "and" ;
+  because_Subj = ss "because" ;
+  before_Prep = mkPrep "before" ;
+  behind_Prep = mkPrep "behind" ;
+  between_Prep = mkPrep "between" ;
+  both7and_DConj = mkConj "both" "and";
+  but_PConj = ss "but" ;
+  by8agent_Prep = mkPrep "by" ;
+  by8means_Prep = mkPrep "by" ;
+  can8know_VV, can_VV = {
+    s = table { 
+      VVF VInf => ["be able to"] ;
+      VVF VPres => "can" ;
+      VVF VPPart => ["been able to"] ;
+      VVF VPresPart => ["being able to"] ;
+      VVF VPast => "could" ;      --# notpresent
+      VVPastNeg => "couldn't" ;   --# notpresent
+      VVPresNeg => "can't"
+      } ;
+    isAux = True
+    } ;
+  during_Prep = mkPrep "during" ;
+  either7or_DConj = mkConj "either" "or" singular ;
+  everybody_NP = regNP "everybody" singular ;
+  every_Det = mkDeterminer singular "every" ;
+  everything_NP = regNP "everything" singular ;
+  everywhere_Adv = mkAdv "everywhere" ;
+  few_Det = mkDeterminer plural "few" ;
+---  first_Ord = ss "first" ; DEPRECATED
+  for_Prep = mkPrep "for" ;
+  from_Prep = mkPrep "from" ;
+  he_Pron = mkPron "he" "him" "his" "his" singular P3 masculine ;
+  here_Adv = mkAdv "here" ;
+  here7to_Adv = mkAdv ["to here"] ;
+  here7from_Adv = mkAdv ["from here"] ;
+  how_IAdv = ss "how" ;
+  how8much_IAdv = ss "how much" ;
+  how8many_IDet = mkDeterminer plural ["how many"] ;
+  if_Subj = ss "if" ;
+  in8front_Prep = mkPrep ["in front of"] ;
+  i_Pron  = mkPron "I" "me" "my" "mine" singular P1 human ;
+  in_Prep = mkPrep "in" ;
+  it_Pron  = mkPron "it" "it" "its" "its" singular P3 nonhuman ;
+  less_CAdv = C.mkCAdv "less" "than" ;
+  many_Det = mkDeterminer plural "many" ;
+  more_CAdv = C.mkCAdv "more" "than" ;
+  most_Predet = ss "most" ;
+  much_Det = mkDeterminer singular "much" ;
+  must_VV = {
+    s = table {
+      VVF VInf => ["have to"] ;
+      VVF VPres => "must" ;
+      VVF VPPart => ["had to"] ;
+      VVF VPresPart => ["having to"] ;
+      VVF VPast => ["had to"] ;      --# notpresent
+      VVPastNeg => ["hadn't to"] ;      --# notpresent
+      VVPresNeg => "mustn't"
+      } ;
+    isAux = True
+    } ;
+---b  no_Phr = ss "no" ;
+  no_Utt = ss "no" ;
+  on_Prep = mkPrep "on" ;
+----  one_Quant = mkDeterminer singular "one" ; -- DEPRECATED
+  only_Predet = ss "only" ;
+  or_Conj = mkConj "or" singular ;
+  otherwise_PConj = ss "otherwise" ;
+  part_Prep = mkPrep "of" ;
+  please_Voc = ss "please" ;
+  possess_Prep = mkPrep "of" ;
+  quite_Adv = mkAdv "quite" ;
+  she_Pron = mkPron "she" "her" "her" "hers" singular P3 feminine ;
+  so_AdA = mkAdA "so" ;
+  somebody_NP = regNP "somebody" singular ;
+  someSg_Det = mkDeterminer singular "some" ;
+  somePl_Det = mkDeterminer plural "some" ;
+  something_NP = regNP "something" singular ;
+  somewhere_Adv = mkAdv "somewhere" ;
+  that_Quant = mkQuant "that" "those" ;
+  there_Adv = mkAdv "there" ;
+  there7to_Adv = mkAdv "there" ;
+  there7from_Adv = mkAdv ["from there"] ;
+  therefore_PConj = ss "therefore" ;
+  they_Pron = mkPron "they" "them" "their" "theirs" plural P3 human ;
+  this_Quant = mkQuant "this" "these" ;
+  through_Prep = mkPrep "through" ;
+  too_AdA = mkAdA "too" ;
+  to_Prep = mkPrep "to" ;
+  under_Prep = mkPrep "under" ;
+  very_AdA = mkAdA "very" ;
+  want_VV = mkVV (regV "want") ;
+  we_Pron = mkPron "we" "us" "our" "ours" plural P1 human ;
+  whatPl_IP = mkIP "what" "what" "what's" plural ;
+  whatSg_IP = mkIP "what" "what" "what's" singular ;
+  when_IAdv = ss "when" ;
+  when_Subj = ss "when" ;
+  where_IAdv = ss "where" ;
+  which_IQuant = {s = \\_ => "which"} ;
+---b  whichPl_IDet = mkDeterminer plural ["which"] ;
+---b  whichSg_IDet = mkDeterminer singular ["which"] ;
+  whoPl_IP = mkIP "who" "whom" "whose" plural ;
+  whoSg_IP = mkIP "who" "whom" "whose" singular ;
+  why_IAdv = ss "why" ;
+  without_Prep = mkPrep "without" ;
+  with_Prep = mkPrep "with" ;
+---b  yes_Phr = ss "yes" ;
+  yes_Utt = ss "yes" ;
+  youSg_Pron = mkPron "you" "you" "your" "yours" singular P2 human ;
+  youPl_Pron = mkPron "you" "you" "your" "yours" plural P2 human ;
+  youPol_Pron = mkPron "you" "you" "your" "yours" singular P2 human ;
+
+  not_Predet = {s = "not" ; lock_Predet = <>} ;
+  no_Quant = mkQuant "no" "no" "none" "none" ;
+  if_then_Conj = mkConj "if" "then" singular ;
+  nobody_NP = regNP "nobody" singular ;
+  nothing_NP = regNP "nothing" singular ;
+
+  at_least_AdN = mkAdN "at least" ;
+  at_most_AdN = mkAdN "at most" ;
+
+  except_Prep = mkPrep "except" ;
+
+  as_CAdv = C.mkCAdv "as" "as" ;
+
+  have_V2 = dirV2 (mk5V "have" "has" "had" "had" "having") ;
+  that_Subj = ss "that" ;
+  lin language_title_Utt = ss "English" ;
+-}
+}
+
diff --git a/lib/src/latvian/SymbolLav.gf b/lib/src/latvian/SymbolLav.gf
new file mode 100644
--- /dev/null
+++ b/lib/src/latvian/SymbolLav.gf
@@ -0,0 +1,44 @@
+--# -path=.:../abstract:../common
+
+concrete SymbolLav of Symbol = CatLav ** open Prelude, ResLav in {
+{-
+lin
+  SymbPN i = {s = addGenitiveS i.s ; g = Neutr} ;
+  IntPN i  = {s = addGenitiveS i.s ; g = Neutr} ;
+  FloatPN i = {s = addGenitiveS i.s ; g = Neutr} ;
+  NumPN i = {s = i.s ; g = Neutr} ;
+  CNIntNP cn i = {
+    s = \\c => cn.s ! Sg ! Nom ++ (addGenitiveS i.s) ! c ;
+    a = agrgP3 Sg cn.g
+    } ;
+  CNSymbNP det cn xs = {
+    s = \\c => det.s ++ cn.s ! det.n ! Nom ++ (addGenitiveS xs.s) ! c ; 
+    a = agrgP3 det.n cn.g
+    } ;
+  CNNumNP cn i = {
+    s = \\c => cn.s ! Sg ! Nom ++ i.s ! c ;
+    a = agrgP3 Sg cn.g
+    } ;
+
+  SymbS sy = sy ; 
+
+  SymbNum sy = { s = addGenitiveS sy.s ; n = Pl ; hasCard = True } ;
+  SymbOrd sy = { s = \\c => sy.s ++ (regGenitiveS "th")!c} ;
+
+lincat 
+
+  Symb, [Symb] = SS ;
+
+lin
+  MkSymb s = s ;
+
+  BaseSymb = infixSS "and" ;
+  ConsSymb = infixSS "," ;
+
+oper
+    -- Note: this results in a space before 's, but there's
+    -- not mauch we can do about that.
+    addGenitiveS : Str -> Case => Str = \s -> 
+      table { Gen => s ++ "'s"; _ => s } ;
+-}
+}
diff --git a/lib/src/latvian/VerbLav.gf b/lib/src/latvian/VerbLav.gf
new file mode 100644
--- /dev/null
+++ b/lib/src/latvian/VerbLav.gf
@@ -0,0 +1,52 @@
+concrete VerbLav of Verb = CatLav ** open ResLav in {
+  flags optimize=all_subs ;
+
+  lin
+  
+    UseV v   = {v = v ; obj = \\_ => []} ;
+{-
+    UseV = predV ;
+
+    SlashV2a v = predVc v ;
+    Slash2V3 v np = 
+      insertObjc (\\_ => v.c2 ++ np.s ! Acc) (predV v ** {c2 = v.c3}) ;
+    Slash3V3 v np = 
+      insertObjc (\\_ => v.c3 ++ np.s ! Acc) (predVc v) ; ----
+
+    ComplVV v vp = insertObj (\\a => infVP v.isAux vp a) (predVV v) ;
+    ComplVS v s  = insertObj (\\_ => conjThat ++ s.s) (predV v) ;
+    ComplVQ v q  = insertObj (\\_ => q.s ! QIndir) (predV v) ;
+    ComplVA v ap = insertObj (ap.s) (predV v) ;
+
+    SlashV2V v vp = insertObjc (\\a => infVP v.isAux vp a) (predVc v) ;
+    SlashV2S v s  = insertObjc (\\_ => conjThat ++ s.s) (predVc v) ;
+    SlashV2Q v q  = insertObjc (\\_ => q.s ! QIndir) (predVc v) ;
+    SlashV2A v ap = insertObjc (\\a => ap.s ! a) (predVc v) ; ----
+
+    ComplSlash vp np = insertObjPre (\\_ => vp.c2 ++ np.s ! Acc) vp ;
+
+    SlashVV vv vp = 
+      insertObj (\\a => infVP vv.isAux vp a) (predVV vv) **
+        {c2 = vp.c2} ;
+    SlashV2VNP vv np vp = 
+      insertObjPre (\\_ => vv.c2 ++ np.s ! Acc)
+        (insertObjc (\\a => infVP vv.isAux vp a) (predVc vv)) **
+          {c2 = vp.c2} ;
+
+    UseComp comp = insertObj comp.s (predAux auxBe) ;
+
+    AdvVP vp adv = insertObj (\\_ => adv.s) vp ;
+
+    AdVVP adv vp = insertAdV adv.s vp ;
+
+    ReflVP v = insertObjPre (\\a => v.c2 ++ reflPron ! a) v ;
+
+    PassV2 v = insertObj (\\_ => v.s ! VPPart) (predAux auxBe) ;
+
+---b    UseVS, UseVQ = \vv -> {s = vv.s ; c2 = [] ; isRefl = vv.isRefl} ; -- no "to"
+
+    CompAP ap = ap ;
+    CompNP np = {s = \\_ => np.s ! Acc} ;
+    CompAdv a = {s = \\_ => a.s} ;
+-}
+}
diff --git a/lib/src/nepali/AdjectiveNep.gf b/lib/src/nepali/AdjectiveNep.gf
new file mode 100644
--- /dev/null
+++ b/lib/src/nepali/AdjectiveNep.gf
@@ -0,0 +1,68 @@
+concrete AdjectiveNep of Adjective = CatNep ** open ResNep, Prelude in {
+
+  flags coding = utf8;
+  lin
+    
+    -- ALL THE RULES FROM BOOK ARE NOT COVERED
+
+    --PositA  : A  -> AP ;        -- warm
+    PositA a = a ;
+	
+    
+    --ComparA : A  -> NP -> AP ;  -- warmer than I
+    ComparA a np = {
+      s = \\n, g => np.s ! NPC Nom ++ "भन्दा" ++ a.s ! n ! g ;
+      } ;
+    
+     
+    --ComplA2 : A2 -> NP -> AP ;  -- married to her
+    ComplA2 a np = {
+      s = \\n,g  => np.s ! NPC Nom ++ a.c2 ++ a.s ! n ! g  ; 
+      } ;
+
+    
+    --ReflA2  : A2 -> AP ;        -- married to itself
+    ReflA2 a = { 
+      s = \\n, g => "आफै" ++ a.c2 ++ a.s ! n ! g ; -- आफै सँग
+      } ;
+      
+    
+    --UseA2   : A2 -> AP ;        -- married
+    UseA2 a = a ;
+    
+    
+   --UseComparA : A  -> AP ;     -- warmer
+    UseComparA a = {
+      s = \\n, g => "अली" ++ a.s ! n ! g ; -- अली
+      } ;     
+    
+    
+    --CAdvAP  : CAdv -> AP -> NP -> AP ; -- as cool as John
+    CAdvAP cadv ap np = {
+	  s = \\n,g => np.s ! NPC Nom ++ cadv.p ++ cadv.s ++ ap.s ! n ! g   ;
+	  };    
+    
+    
+    --AdjOrd  : Ord -> AP ;       -- warmest
+    AdjOrd ord =  { s = \\_,_ => ord.s ; };        
+    
+    
+    --SentAP  : AP -> SC -> AP ;  -- good that she is here
+    SentAP ap sc = {
+      s = \\n,g => sc.s ++ ap.s ! n ! g ; 
+      --s = \\n,g => ap.s ! n ! g ++ sc.s ; 
+      } ;
+
+    
+    --AdAP    : AdA -> AP -> AP ; -- very warm
+    AdAP ada ap = {
+      s = \\n,g => ada.s ++ ap.s ! n ! g ;
+      } ;
+      
+    
+    --AdvAP   : AP -> Adv -> AP ; -- warm by nature
+    AdvAP ap adv = {
+      s = \\n,g => adv.s ++ ap.s ! n ! g ;
+      } ;
+      
+}
diff --git a/lib/src/nepali/AdverbNep.gf b/lib/src/nepali/AdverbNep.gf
new file mode 100644
--- /dev/null
+++ b/lib/src/nepali/AdverbNep.gf
@@ -0,0 +1,24 @@
+concrete AdverbNep of Adverb = CatNep ** open ResNep, Prelude, Predef in {
+
+  flags coding = utf8;
+  
+  lin
+    PositAdvAdj a = {s = a.s ! Sg ! Masc ++ "गरी" } ;
+    
+    ComparAdvAdj cadv a np = {
+      s = np.s ! NPObj  ++ cadv.p ++ cadv.s ++ a.s ! Sg ! Masc ;  
+      } ;
+
+    ComparAdvAdjS cadv a s = {
+      s =  cadv.p ++ cadv.s ++ a.s ! Sg ! Masc   ++  s.s;
+      } ;
+
+    PrepNP prep np = {s = np.s ! NPObj ++ prep.s } ;
+
+    AdAdv ada adv = { s = ada.s ++ adv.s} ;
+
+    SubjS sub snt = {s = sub.s ++ snt.s } ;
+    
+    AdnCAdv cadv = {s = cadv.p ++ cadv.s } ;
+
+}
diff --git a/lib/src/nepali/AllNep.gf b/lib/src/nepali/AllNep.gf
new file mode 100644
--- /dev/null
+++ b/lib/src/nepali/AllNep.gf
@@ -0,0 +1,6 @@
+--# -path=.:../abstract:../common:../prelude
+
+concrete AllNep of AllNepAbs =
+  LangNep
+--  ExtraNep
+  ** {} ;
diff --git a/lib/src/nepali/AllNepAbs.gf b/lib/src/nepali/AllNepAbs.gf
new file mode 100644
--- /dev/null
+++ b/lib/src/nepali/AllNepAbs.gf
@@ -0,0 +1,4 @@
+abstract AllNepAbs =
+  Lang
+--  ExtraNepAbs
+  ** {} ;
diff --git a/lib/src/nepali/CatNep.gf b/lib/src/nepali/CatNep.gf
new file mode 100644
--- /dev/null
+++ b/lib/src/nepali/CatNep.gf
@@ -0,0 +1,99 @@
+concrete CatNep of Cat = CommonX - [Adv] ** open ResNep, Prelude in {
+
+  flags optimize=all_subs ;
+
+  lincat
+----- Tensed/Untensed
+
+    S  = {s : Str} ;
+    QS = {s : QForm => Str} ;
+    RS = {s : Agr => Str ; c : Case} ; -- c for it clefts
+    SSlash = {s : Str ; c2 : ResNep.Compl} ;
+
+---- Sentence
+
+    Cl = ResNep.Clause ;
+
+    ClSlash = {
+      s : ResNep.VPHTense => Polarity => Order => Str ;
+      c2 : ResNep.Compl
+      } ;
+    Imp = {s : CPolarity => ImpForm => Str} ;
+
+---- Question
+
+    QCl = {s : ResNep.VPHTense => Polarity => QForm => Str} ;
+    IP = {s: Case => Str  ; n : Number} ;
+    IDet = {s : Gender => Str ; n : Number} ;
+    --IDet = {s : Str ; n : Number} ;
+    IQuant = {s : Number => Str} ;
+
+---- Relative
+
+    RCl = {
+      s : ResNep.VPHTense => Polarity => Order => Agr => Str ; 
+      c : Case
+      } ;
+    --RP = {s: Number => Case => Str ; a:RAgr};
+    RP = {s: Case => Str ; a:RAgr};
+
+---- Verb
+
+    VP = ResNep.VPH ;
+    VPSlash = ResNep.VPHSlash ;
+    Comp = {s : Agr => Str ; t : NType} ;
+    
+---- Adv    
+    Adv = {s : Str} ;
+
+---- Adjective
+
+    AP = ResNep.npAdjective ;
+
+---- Noun
+
+    CN = ResNep.Noun ;
+    NP = ResNep.NP ;
+    Pron = {s : Case => Str ; ps : Str ; a : Agr} ; -- ps genetive case
+    Det = ResNep.Determiner ;
+    Predet = {s : Str} ;
+    Num  = {s : Str ; n : Number} ;
+    Card = {s : Str; n : Number} ;
+    Ord = {s : Str; n : Number} ;
+    --Quant = {s : Number => Gender => Case => Str ; a:Agr}; -- ?? Number
+    Quant = {s : Number => Gender => Str } ; -- ?? Number
+    Art = {s : Str} ;
+
+---- Numeral
+
+    Numeral = {s : CardOrd => Str ; n : Number} ;
+    Digits  = {s : CardOrd => Str ; n : Number } ;
+
+---- Structural
+
+    Conj = {s1,s2 : Str ; n : Number} ;
+
+-----b    Conj = {s : Str ; n : Number} ;
+-----b    DConj = {s1,s2 : Str ; n : Number} ;
+    Subj = {s : Str} ;
+    Prep = {s : Str} ;
+
+---- Open lexical classes, e.g. Lexicon
+
+    V, VS, VQ, VA = ResNep.Verb ; -- = {s : VForm => Str} ;
+
+    V2, V2A, V2Q, V2S = ResNep.Verb ** {c2 : Compl} ;
+
+    V3 = ResNep.Verb ** {c2, c3 : Str} ;
+    VV = ResNep.Verb ** {isAux : Bool} ;
+    V2V = ResNep.Verb ** {c1 : Str ; c2 : Str ; isAux : Bool} ;
+
+    A = ResNep.npAdjective ; --- {s : Gender => Number => Str} ;
+    A2 = ResNep.npAdjective ** {c2 : Str} ;
+    
+    N = ResNep.Noun ;--{s : Number => Case => Str ; g : Gender ; t : NType ; h : NPerson} ;
+
+    N2 = ResNep.Noun ** {c2 : Str ; c3 : Str} ;
+    N3 = ResNep.Noun ** {c2 : Str ; c3 : Str ; c4 : Str} ;
+    PN = {s : Case => Str ; g : Gender ; t : NType ; h : NPerson } ;
+}
diff --git a/lib/src/nepali/ConjunctionNep.gf b/lib/src/nepali/ConjunctionNep.gf
new file mode 100644
--- /dev/null
+++ b/lib/src/nepali/ConjunctionNep.gf
@@ -0,0 +1,43 @@
+concrete ConjunctionNep of Conjunction = 
+  CatNep ** open ResNep, Coordination, Prelude in {
+
+
+  flags optimize=all_subs ;
+
+  lin
+
+    ConjS  = conjunctDistrSS  ;
+
+    ConjAdv = conjunctDistrSS ;
+
+    ConjNP conj ss = conjunctDistrTable NPCase conj ss ** {
+      a = conjAgr (agrP3 Masc conj.n) ss.a ;
+      t = ss.t ;
+      } ;
+
+    ConjAP conj ss = conjunctDistrTable2 Number Gender conj ss ; 
+    ConjRS conj rs = conjunctDistrTable Agr conj rs ** { c = rs.c};
+
+---- These fun's are generated from the list cat's.
+
+    BaseS = twoSS ;
+    ConsS = consrSS comma ;
+--    BaseAdv = twoSS ;
+    BaseAdv x y = twoSS x y  ;
+    ConsAdv = consrSS comma ;
+--    ConsAdv xs x = consrTable Gender comma xs x ;
+    BaseNP x y = twoTable NPCase x y ** {a = conjAgr x.a y.a ; t = x.t} ;
+    BaseRS x y = twoTable Agr x y ** {c = x.c};
+    ConsNP xs x = consrTable NPCase comma xs x ** {a = conjAgr xs.a x.a ; t = xs.t } ;
+    ConsRS xs x = consrTable Agr comma xs x ** { c = xs.c};
+    BaseAP x y = twoTable2 Number Gender x y ; 
+    ConsAP xs x = consrTable2 Number Gender comma xs x ;
+
+  lincat
+    [S] = {s1,s2 : Str} ;
+    [Adv] = {s1,s2 : Str} ;
+    [NP] = {s1,s2 : NPCase => Str ; a : Agr ; t : NType} ;
+    [AP] = {s1,s2 : Number => Gender => Str} ;
+    [RS] = {s1,s2 : Agr => Str ; c : Case};
+
+}
diff --git a/lib/src/nepali/Coordination.gf b/lib/src/nepali/Coordination.gf
new file mode 100644
--- /dev/null
+++ b/lib/src/nepali/Coordination.gf
@@ -0,0 +1,170 @@
+resource Coordination = open Prelude in {
+
+param
+  ListSize = TwoElem | ManyElem ;
+
+oper 
+  ListX = {s1,s2 : Str} ;
+
+  twoStr : (x,y : Str) -> ListX = \x,y -> 
+    {s1 = x ; s2 = y} ; 
+  consStr : Str -> ListX -> Str -> ListX = \comma,xs,x -> 
+    {s1 = xs.s1 ++ comma ++ xs.s2 ; s2 = x } ; 
+
+  twoSS : (_,_ : SS) -> ListX = \x,y -> 
+    twoStr x.s y.s ;
+  consSS : Str -> ListX -> SS -> ListX = \comma,xs,x -> 
+    consStr comma xs x.s ;
+
+  Conjunction : Type = SS ;
+  ConjunctionDistr : Type = {s1 : Str ; s2 : Str} ;
+
+  conjunctX : Conjunction -> ListX -> Str = \or,xs ->
+    xs.s1 ++ or.s ++ xs.s2 ;
+
+  conjunctDistrX : ConjunctionDistr -> ListX -> Str = \or,xs ->
+    or.s1 ++ xs.s1 ++ or.s2 ++ xs.s2 ;
+
+  conjunctSS : Conjunction -> ListX -> SS = \or,xs ->
+    ss (xs.s1 ++ or.s ++ xs.s2) ;
+
+  conjunctDistrSS : ConjunctionDistr -> ListX -> SS = \or,xs ->
+    ss (or.s1 ++ xs.s1 ++ or.s2 ++ xs.s2) ;
+
+  -- all this lifted to tables
+
+  ListTable : Type -> Type = \P -> {s1,s2 : P => Str} ; 
+
+  twoTable : (P : Type) -> (_,_ : {s : P => Str}) -> ListTable P = \_,x,y ->
+    {s1 = x.s ; s2 = y.s} ; 
+
+  consTable : (P : Type) -> Str -> ListTable P -> {s : P => Str} -> ListTable P = 
+    \P,c,xs,x ->
+    {s1 = table P {o => xs.s1 ! o ++ c ++ xs.s2 ! o} ; s2 = x.s} ; 
+
+  conjunctTable : (P : Type) -> Conjunction -> ListTable P -> {s : P => Str} = 
+    \P,or,xs ->
+    {s = table P {p => xs.s1 ! p ++ or.s ++ xs.s2 ! p}} ;
+
+  conjunctDistrTable : 
+    (P : Type) -> ConjunctionDistr -> ListTable P -> {s : P => Str} = \P,or,xs ->
+    {s = table P {p => or.s1++ xs.s1 ! p ++ or.s2 ++ xs.s2 ! p}} ;
+
+  -- ... and to two- and three-argument tables: how clumsy! ---
+
+  ListTable2 : Type -> Type -> Type = \P,Q -> 
+    {s1,s2 : P => Q => Str} ; 
+
+  twoTable2 : (P,Q : Type) -> (_,_ : {s : P => Q => Str}) -> ListTable2 P Q = 
+    \_,_,x,y ->
+    {s1 = x.s ; s2 = y.s} ; 
+
+  consTable2 : 
+    (P,Q : Type) -> Str -> ListTable2 P Q -> {s : P => Q => Str} -> ListTable2 P Q =
+     \P,Q,c,xs,x ->
+    {s1 = table P {p => table Q {q => xs.s1 ! p ! q ++ c ++ xs.s2 ! p! q}} ; 
+     s2 = x.s
+    } ; 
+
+  conjunctTable2 : 
+    (P,Q : Type) -> Conjunction -> ListTable2 P Q -> {s : P => Q => Str} = 
+    \P,Q,or,xs ->
+    {s = table P {p => table Q {q => xs.s1 ! p ! q ++ or.s ++ xs.s2 ! p ! q}}} ;
+
+  conjunctDistrTable2 : 
+    (P,Q : Type) -> ConjunctionDistr -> ListTable2 P Q -> {s : P => Q => Str} = 
+    \P,Q,or,xs ->
+    {s = 
+    table P {p => table Q {q => or.s1++ xs.s1 ! p ! q ++ or.s2 ++ xs.s2 ! p ! q}}} ;
+
+  ListTable3 : Type -> Type -> Type -> Type = \P,Q,R -> 
+    {s1,s2 : P => Q => R => Str} ; 
+
+  twoTable3 : (P,Q,R : Type) -> (_,_ : {s : P => Q => R => Str}) -> 
+              ListTable3 P Q R = 
+    \_,_,_,x,y ->
+    {s1 = x.s ; s2 = y.s} ; 
+
+  consTable3 : 
+    (P,Q,R : Type) -> Str -> ListTable3 P Q R -> {s : P => Q => R => Str} -> 
+         ListTable3 P Q R =
+     \P,Q,R,c,xs,x ->
+    {s1 = \\p,q,r => xs.s1 ! p ! q ! r ++ c ++ xs.s2 ! p ! q ! r ; 
+     s2 = x.s
+    } ; 
+
+  conjunctTable3 : 
+    (P,Q,R : Type) -> Conjunction -> ListTable3 P Q R -> {s : P => Q => R => Str} = 
+    \P,Q,R,or,xs ->
+    {s = \\p,q,r => xs.s1 ! p ! q ! r ++ or.s ++ xs.s2 ! p ! q ! r} ;
+
+  conjunctDistrTable3 : 
+    (P,Q,R : Type) -> ConjunctionDistr -> ListTable3 P Q R -> 
+       {s : P => Q => R => Str} = 
+    \P,Q,R,or,xs ->
+    {s = \\p,q,r => or.s1++ xs.s1 ! p ! q ! r ++ or.s2 ++ xs.s2 ! p ! q ! r} ;
+	
+	---------
+	ListTable4 : Type -> Type -> Type -> Type -> Type = \P,Q,R,T -> 
+    {s1,s2 : P => Q => R => T => Str} ; 
+
+  twoTable4 : (P,Q,R,T : Type) -> (_,_ : {s : P => Q => R => T => Str}) -> 
+              ListTable4 P Q R T = 
+    \_,_,_,_,x,y ->
+    {s1 = x.s ; s2 = y.s} ; 
+
+  consTable4 : 
+    (P,Q,R,T : Type) -> Str -> ListTable4 P Q R T -> {s : P => Q => R => T => Str} -> 
+         ListTable4 P Q R T =
+     \P,Q,R,T,c,xs,x ->
+    {s1 = \\p,q,r,t => xs.s1 ! p ! q ! r ! t ++ c ++ xs.s2 ! p ! q ! r ! t ; 
+     s2 = x.s
+    } ; 
+
+  conjunctTable4 : 
+    (P,Q,R,T : Type) -> Conjunction -> ListTable4 P Q R T -> {s : P => Q => R => T => Str} = 
+    \P,Q,R,T,or,xs ->
+    {s = \\p,q,r,t => xs.s1 ! p ! q ! r ! t ++ or.s ++ xs.s2 ! p ! q ! r ! t} ;
+
+  conjunctDistrTable4 : 
+    (P,Q,R,T : Type) -> ConjunctionDistr -> ListTable4 P Q R T -> 
+       {s : P => Q => R => T => Str} = 
+    \P,Q,R,T,or,xs ->
+    {s = \\p,q,r,t => or.s1++ xs.s1 ! p ! q ! r ! t ++ or.s2 ++ xs.s2 ! p ! q ! r ! t} ;
+	--------------
+
+  comma = "," ;
+
+-- you can also do this to right-associative lists:
+
+  consrStr : Str -> Str -> ListX -> ListX = \comma,x,xs -> 
+    {s1 = x ++ comma ++ xs.s1 ; s2 = xs.s2 } ; 
+
+  consrSS : Str -> SS -> ListX -> ListX = \comma,x,xs -> 
+    consrStr comma x.s xs ;
+
+  consrTable : (P : Type) -> Str -> {s : P => Str} -> ListTable P -> ListTable P = 
+    \P,c,x,xs ->
+    {s1 = table P {o => x.s ! o ++ c ++ xs.s1 ! o} ; s2 = xs.s2} ; 
+
+  consrTable2 : (P,Q : Type) -> Str -> {s : P => Q => Str} -> 
+    ListTable2 P Q -> ListTable2 P Q = 
+    \P,Q,c,x,xs ->
+    {s1 = table P {p => table Q {q => x.s ! p ! q ++ c ++ xs.s1 ! p ! q}} ; 
+     s2 = xs.s2
+    } ; 
+	consrTable4 : (P,Q,R,T : Type) -> Str -> {s : P => Q => R => T => Str} -> 
+    ListTable4 P Q R T -> ListTable4 P Q R T = 
+    \P,Q,R,T,c,x,xs ->
+    {s1 = table P {p => table Q {q => table R { r => table T {t => x.s ! p ! q ! r ! t ++ c ++ xs.s1 ! p ! q ! r ! t}}}} ; 
+     s2 = xs.s2
+    } ;
+    consrTable3 : (P,Q,R : Type) -> Str -> {s : P => Q => R => Str} -> 
+    ListTable3 P Q R -> ListTable3 P Q R = 
+    \P,Q,R,c,x,xs ->
+    {s1 = table P {p => table Q {q => table R  {t => x.s ! p ! q ! t  ++ c ++ xs.s1 ! p ! q ! t }}} ; 
+     s2 = xs.s2
+    } ; 
+
+
+} ;
diff --git a/lib/src/nepali/GrammarNep.gf b/lib/src/nepali/GrammarNep.gf
new file mode 100644
--- /dev/null
+++ b/lib/src/nepali/GrammarNep.gf
@@ -0,0 +1,24 @@
+--# -path=.:../abstract:../common:../prelude
+
+ concrete GrammarNep of Grammar = 
+  NounNep,
+  VerbNep, 
+  AdjectiveNep,    
+  AdverbNep,
+  NumeralNep,  
+  SentenceNep,  
+  QuestionNep,
+  RelativeNep,
+  ConjunctionNep,  
+  PhraseNep,
+  TextX - [Adv],  
+  StructuralNep,  
+  TenseX - [Adv],
+  IdiomNep
+  ** {
+
+flags startcat = Phr ; unlexer = text ; lexer = text ;
+
+}
+
+
diff --git a/lib/src/nepali/IdiomNep.gf b/lib/src/nepali/IdiomNep.gf
new file mode 100644
--- /dev/null
+++ b/lib/src/nepali/IdiomNep.gf
@@ -0,0 +1,40 @@
+concrete IdiomNep of Idiom = CatNep ** open Prelude,Predef, ResNep in {
+
+  flags optimize=all_subs ;
+  flags coding = utf8;
+
+  lin
+    ImpersCl vp = mkSClause " " (agrP3 Masc Sg) vp ;
+    
+    GenericCl vp = mkSClause "कोही" (agrP3 Masc Sg) vp ;
+
+    CleftNP np rs = 
+	 let cl =  mkSClause (np.s ! NPC rs.c) (np.a) (predAux np.t);
+        
+	   in 
+	   {s = \\t,p,o =>  cl.s ! t ! p ! o ++ rs.s ! np.a };
+	  
+    CleftAdv ad ss = { s = \\t,b,o => ad.s  ++ ss.s};
+        
+    ExistNP np =         
+      mkSClause "त्यहाँ" (agrP3 (fromAgr np.a).g (fromAgr np.a).n) -- त्यहाँ
+        (insertObj (\\_ => np.s ! NPC Nom) (predAux np.t)) ;
+
+    ExistIP ip = 
+       --let cl = mkSClause ("जुन्" ++ ip.s ! Nom) (agrP3 Masc ip.n) (predAux auxBe) ; -- जुन्
+       let cl = mkSClause ("त्यहाँ" ++ ip.s ! Nom) (agrP3 Masc ip.n) (predAux NonLiving) ; --  त्यहाँ
+	   in {
+       s = \\t,p,qf => case qf of { 
+	      QDir   => cl.s ! t ! p ! ODir;
+          QIndir => cl.s ! t ! p ! ODir
+		  }
+		};
+
+
+    ProgrVP vp =  (predProg vp) ;
+
+    ImpPl1 vp = {s =  vp.obj.s ++ (vp.s ! ResNep.Imp).inf ++ vp.comp ! (agrP1 Masc Pl)} ;
+	
+    --ImpP3 np vp = {s = np.s ! NPC Nom ++ "लाइ" ++ (vp.s ! PVForm ).inf ++ "देउ"} ;
+    ImpP3 np vp = {s = np.s ! NPC Acc ++ (vp.s ! PVForm ).inf ++ "देउ"} ;
+}
diff --git a/lib/src/nepali/LangNep.gf b/lib/src/nepali/LangNep.gf
new file mode 100644
--- /dev/null
+++ b/lib/src/nepali/LangNep.gf
@@ -0,0 +1,10 @@
+--# -path=.:../abstract:../common
+
+concrete LangNep of Lang = 
+  GrammarNep,
+  LexiconNep
+  ** {
+
+flags startcat = Phr ; unlexer=unwords ; lexer=words ;
+
+}
diff --git a/lib/src/nepali/LexiconNep.gf b/lib/src/nepali/LexiconNep.gf
new file mode 100644
--- /dev/null
+++ b/lib/src/nepali/LexiconNep.gf
@@ -0,0 +1,382 @@
+--# -path=.:prelude:alltenses
+
+-- regN  - Regular Nouns
+-- mkNF  - Femenine Nouns
+-- mkNUN - Uncountable Nouns
+
+-- In noun cases if you don't provide any parameter
+-- Here is the default forms it takes
+{-
+-- Default animacy : nonliving (inanimate)
+-- Default Honorific form : 3rd Person Low grade Honorofic(Pers3_L)
+-- Default gender : masculine
+-- human/profession/living : Living 
+-}
+-- ParadigmsNep for details
+
+
+concrete LexiconNep of Lexicon = CatNep ** 
+  open ParadigmsNep, MorphoNep, Prelude in {
+
+  flags 
+    -- optimize=values ;
+    coding = utf8;
+
+  lin
+  airplane_N = regN "हवाईजहाज" ; -- हवाईजहाज   
+  answer_V2S = mkV2 (compoundV "उत्तर" (mkV "दिनु")) ; -- उत्तर दिनु
+  apartment_N = regN "कोठा" ; -- कोठा
+  apple_N = regN "स्याऊ"; -- स्याऊ
+  art_N = regN "कला" ; -- कला
+  ask_V2Q = mkV2 (mkV "सोध्नु") ; -- सोध्नु
+  baby_N = regN "बच्चा" living ; -- बच्चा
+  bad_A = mkA "खराब" ; -- खराब
+  bank_N = regN "ब्याङ्क" ; -- ब्याङ्क
+  beautiful_A = mkA "राम्रो" ; -- राम्रो
+  become_VA = mkV "हुनु" ; -- हुनु
+  beer_N = regN "बियर" ; -- बियर
+  beg_V2V =  mkV2V (compoundV "आग्रह" do_V2) lai "" False ; -- आग्रह
+  big_A = mkA "ठुलो" ; -- ठुलो
+  bike_N = regN "साइकल" ; --साइकल
+  bird_N = regN "चरा" living ; -- चरा
+  black_A =  mkA "कालो" ; -- कालो
+  blue_A = mkA "निलो" ; -- निलो
+  boat_N = regN "डुङ्गा" ; -- डुङ्गा
+  book_N = regN "किताब" ; -- किताब
+  boot_N = regN "जुत्ता"; -- जुत्ता
+  boss_N = regN "हाकिम" human Pers3_H ; -- हाकिम
+  boy_N = regN "केटा" human; -- केटा 
+  bread_N = regN "रोटी" ; -- रोटी
+  break_V2 = mkV2 (mkV "भाँच्नु") ; -- भाँच्नु
+  broad_A = mkA "फराकिलो" ; -- फराकिलो
+  brother_N2 = mkN2 (regN "दाजु" human Pers3_H) (mkPrep "को") ""; 
+  brown_A = mkA "खैरो" ; -- खैरो
+  butter_N = mkNUC "नौनी" feminine; -- नौनी
+  buy_V2 = mkV2 (mkV "किन्नु"); -- किन्नु
+  camera_N = regN "क्यामरा" ; -- क्यामरा
+  cap_N = regN "टोपि" ; -- टोपि
+  car_N = regN "कार" ; -- कार
+  carpet_N = regN "कार्रपेट" ; -- कार्रपेट
+  cat_N = regN "बिरालो" ; -- बिरालो
+  ceiling_N = regN "छत" ; -- छत
+  chair_N = regN "कुर्सी" ; -- कुर्सी
+  cheese_N = mkNF "चिज" ; --चिज
+  child_N = regN "बच्चा" living ; -- बच्चा
+  church_N = regN "गिर्जाघर" ; -- चर्च , गिर्जाघर
+  city_N = regN "शहर" ; -- शहर
+  clean_A = mkA "सफा" ; -- सफा
+  clever_A = mkA "बाठो" ; -- बाठो
+  close_V2 =  mkV2 (compoundV "बन्द" do_V2) ; --  बन्द गर्नु
+  coat_N = regN "कोट" ; -- कोट
+  cold_A = mkA "चिसो" ; -- चिसो
+  come_V = mkV "आउनु" ; -- आउनु
+  computer_N = regN "कम्प्युटर" ; -- कम्प्युटर
+  country_N = regN "देश" ; -- देश
+  cousin_N = regN "काका" ; -- काका
+  cow_N = mkNF "गाई" living Pers3_M ; -- गाई
+  die_V = mkV "मर्नु" ; -- मर्नु
+  dirty_A = mkA "फोहोर" ; -- फोहोर
+  distance_N3 = mkN3 (regN "दुरी") (mkPrep "देखि") (mkPrep "सम्म") "को"  ; -- दुरी, देखी, सम्म, त्यहाँ
+  doctor_N = regN "डाक्टर" profession Pers3_H ; -- डाक्टर, / Cikitx:sk - चिकित्सक
+  dog_N = regN "कुकुर" living; -- कुकुर
+  door_N = regN "ढोका" ; -- ढोका
+  drink_V2 = mkV2 (mkV "पिउनु") ; -- पिउनु
+  --easy_A2V = mkA "सजीलो" ; -- सजीलो
+  eat_V2 = mkV2 (mkV "खानु") "" ; -- खानु
+  empty_A = mkA "खाली" ; -- खाली
+  enemy_N = regN "शत्रु" living ; -- शत्रु
+  factory_N = regN "कारखाना" ; -- कारखाना
+  father_N2 = mkN2 (regN "बुबा" living Pers3_H) (mkPrep "को") "" ; -- बुबा, बाबु
+  fear_VS = mkV "डराउनु"; -- डराउनु
+  find_V2 = mkV2 (mkV "पाउनु") ; -- पाउनु
+  fish_N = regN "माछा" living ; -- माछा
+  floor_N = regN "भुँई" ; -- भुँई
+  forget_V2 = mkV2 (mkV "बिर्सनु") ; -- बिर्सनु 
+  fridge_N = regN "फ्रिज" ; -- फ्रिज
+  friend_N = regN "साथी" living Pers3_M ; -- साथी
+  fruit_N = regN "फल" ; -- फल
+  --fun_AV = mkAdV "रमाइलो" ; -- रमाइलो
+  garden_N = regN "बगैँचा" ; -- बगैँचा
+  girl_N = mkNF "केटी" living ; -- केटी  
+  glove_N = regN "पञ्जा"; -- पञ्जा
+  gold_N = regN "सुन" ; -- सुन
+  good_A = mkA "राम्रो" ; -- राम्रो
+  go_V = mkV "जानु" ; -- जानु
+  green_A = mkA "हरियो" ; -- हरियो
+  harbour_N = regN "बन्दरगाह" ; -- बन्दरगाह
+  hate_V2 = mkV2 (compoundV "घृणा" do_V2) ; -- घृणा
+  hat_N = regN "टोपी" ; -- टोपी
+  -- have_V2 = dirV2 (mk5V "हa?े" "हास" "हाद" "हाद" "हa??नग") ; ????MAY BE NOT APPLICABLE
+  hear_V2 = mkV2 (mkV "सुन्नु") ; -- सुन्नु
+  hill_N = regN "पहाड" ; -- पहाड
+  hope_VS = (compoundV "आशा" do_V2); -- आशा
+  horse_N = regN "घोडा" living ; -- घोडा
+  hot_A = mkA "तातो" ; -- तातो
+  house_N = regN "घर" ; -- घर
+  important_A = mkA "जरुरी" ; -- जरुरी
+  industry_N = regN "उधोग" ; -- उधोग
+  iron_N = regN "फलाम" ; -- फलाम
+  king_N = regN "राजा" living Pers3_H; -- राजा
+  know_V2 = mkV2 (mkV "चिन्नु") ; -- चिन्नु 
+  know_VS = (mkV "थाहा पाउनु") ; -- थाहा पाउनु
+  know_VQ = (compoundV "थाहा" (mkV2 (mkV "पाउनु"))) ; -- थाहा पाउनु
+  lake_N = regN "ताल" ; -- ताल
+  lamp_N = regN "बत्ति" ; -- बत्ति
+  learn_V2 = mkV2 (mkV "सिक्नु") ; -- सिक्नु
+  leather_N = regN "छाला" ; -- छाला
+  leave_V2 = mkV2 (mkV "छोड्नु") ; -- छोड्नु
+  like_V2 = mkV2 (compoundV "मन" (mkV "पर्नु")); -- मन पर्नु ???? NOT COVERED BY RULE
+  listen_V2 = mkV2 (mkV "सुन्नु") ; -- सुन्नु
+  live_V = mkV "जिउनु" ; -- जिउनु -- px:rtkx:z प्रतक्ष
+  long_A = mkA "लामो" ; -- लामो
+  lose_V2 = mkV2 (mkV "हराउनु") ; -- हराउनु
+  love_N = regN "माया" ; -- माया
+  love_V2 = mkV2 (compoundV "माया" do_V2) lai ; -- "नौण"; -- माया गर्नु
+  man_N = regN "मान्छे" human ; -- मान्छे
+  married_A2 = mkA "विवाहित" "सँग" ; -- सँग विवाहित
+  meat_N = mkNUC "मासु" masculine ; -- मासु
+  milk_N = mkNUC "दुध" masculine ; -- दुध
+  moon_N = regN "चन्र्दमा" ; -- चन्र्दमा ??
+  mother_N2 = mkN2 (mkNF "आमा" living Pers3_H) (mkPrep "को") ""  ;   -- need ko discuss
+  mountain_N = regN "हिमाल" ; -- हिमाल
+  music_N = regN "संगीत" ; -- संगीत
+  narrow_A = mkA "सांगुरो" ; -- सांगुरो
+  new_A = mkA "नायाँ" ; -- नायाँ
+  newspaper_N = regN "समाचारपत्र" ; -- समाचारपत्र
+  oil_N = mkNUC "तेल" masculine ; -- तेल
+  --old_A = mkA "पुरानो" ; -- पुरानो
+  old_A = mkA "बुढो" ; -- बुढो
+  open_V2 = mkV2 (mkV "खोल्नु") ; -- खोल्नु
+  paint_V2A = mkV2 (compoundV "रँग" (mkV2 (mkV "लागाउनु"))) lai ; 
+  paper_N = regN "कागज" ; -- कागज
+  paris_PN = mkPN "पेरिस" ; -- ???? DEFAULT AS MALE (inflection) is this correct ????
+  peace_N = mkNUC "शान्ति" masculine ; -- शान्ति ???? Not sure
+  pen_N = regN "कलम" ; -- कलम
+  planet_N = regN "ग्रह" ; -- ग्रह
+  plastic_N = regN "पाल्स्टिक" ; -- पाल्स्टिक
+  play_V2 = mkV2 (mkV "खेल्नु") ; -- खेल्नु
+  policeman_N = regN "प्रहरी" human Pers3_M ; -- प्रहरी 
+  priest_N = regN "पुरोहित" human Pers3_H ; -- पुरोहित
+  -- probable_AS = mkAdj1S (regA "पr?बाबले") ;
+  queen_N = mkNF "रानी" human Pers3_H ; -- रानी
+  radio_N = regN "रेडियो"; -- रेडियो
+  rain_V0 = compoundV "बर्षा" (mkV "हुनु" ) ; -- बर्षा ???? hunu/bhayo irregular case need to be added
+  read_V2 = mkV2 (mkV "पढ्नु"); -- पढ्नु 
+  red_A = mkA "रातो" ; -- रातो  
+  religion_N = regN "धर्म" ; -- धर्म
+  restaurant_N = regN "रेस्टुरेन्ट" ; -- रेस्टुरेन्ट
+  river_N = regN "खोला" ; --खोला
+  rock_N = regN "ढुङ्गा" ; -- ढुङ्गा
+  roof_N = regN "छाना" ; -- छाना
+  rubber_N = regN "रबर" ; -- रबर
+  run_V = mkV "कुद्नु" ; -- कुद्नु
+  say_VS = mkV "भन्नु" ; -- भन्नु
+  school_N = regN "विधालय" ; -- विधालय
+  science_N = regN "विज्ञन" ; -- विज्ञन
+  sea_N = regN "समुन्द्र" ; -- समुन्द्र
+  seek_V2 = mkV2 (mkV "खोज्नु" ) ;
+  sell_V3 = mkV3 (mkV "बेच्नु") "" lai ; --  बेच्नु   ram(le) sita (lai) kitab bachyo
+  send_V3 = mkV3 (mkV "पठाउनु") "" lai ; -- पठाउनु 
+  sheep_N = regN "भेडा" living ; -- भेडा
+  ship_N = regN "जहाज" ; -- जहाज
+  shirt_N = regN "सर्" ; -- सर्ट
+  shoe_N = regN "जुत्ता" ; -- जुत्ता
+  shop_N = regN "पसल" ; -- पसल
+  short_A = mkA "छोटो" ; --छोटो
+  silver_N = regN "चाँदि" ; -- चाँदि
+  sister_N = mkNF "दीदी" human Pers3_H ; -- दीदी
+  sleep_V = mkV "सुत्नु" ; -- सुत्नु
+  small_A = mkA "सानो" ; -- सानो
+  snake_N = regN "र्षप" ; -- र्षप
+  sock_N = regN "मोजा" ; -- मोजा
+  speak_V2 = mkV2 (mkV "बोल्नु") ; -- बोल्नु
+  star_N = regN "तारा" ; -- तारा
+  steel_N = regN "स्टिल" ; -- स्टिल
+  stone_N = regN "ढुङ्गा" ; -- ढुङ्गा
+  stove_N = regN "चुलो" ; -- चुलो
+  student_N = regN "बिध्यार्थि" human ; --बिध्यार्थि
+  stupid_A = mkA "मुर्ख" ; -- मुर्ख
+  sun_N = regN "सुर्य"; -- सुर्य
+  switch8off_V2 = mkV2 (compoundV "स्विच अफ" do_V2) ; -- स्विच अन्
+  switch8on_V2 = mkV2 (compoundV "स्विच अन्" do_V2) ; -- स्विच अफ
+  table_N = regN "टेबल" ; -- टेबल
+  talk_V3 = mkV3 (compoundV "कुरा" (mkV2 (mkV "गर्नु"))) "सँग" ""; -- कुरा गर्नु सँग
+  teacher_N = regN "शिक्षक" human Pers3_H ; -- शिक्षक
+  teach_V2 = mkV2 (mkV "पढाउनु") ; -- पढाउनु
+  television_N = regN "टेलिभिजन्" ; -- टेलिभिजन्
+  thick_A = mkA "बाक्लो" ; -- बाक्लो
+  thin_A = mkA "पातलो" ; -- पातलो
+  train_N = regN "रेल" ; -- रेल
+  travel_V = (compoundV "यात्रा" do_V2) ; -- Gumx:nu -- घुम्नु / यात्रा
+  tree_N = regN "रुख" ; -- रुख
+  ugly_A = mkA "नराम्रो" ; -- नराम्रो
+  understand_V2 = mkV2 (mkV "बुझ्नु") ; -- बुझ्नु
+  university_N = regN "बिश्वबिध्यालय" ; -- बिश्वबिध्यालय
+  village_N = regN "गाऊँ" ; -- गाऊँ
+  wait_V2 = mkV2 (mkV "पर्खनु") ; -- पर्खनु 
+  walk_V = mkV "हिड्नु" ; -- हिड्नु
+  warm_A = mkA "तातो" ; -- तातो
+  war_N = regN "लडाई" ; -- लडाई
+  watch_V2 = mkV2 (mkV "हेर्नु") ; -- हेर्नु
+  water_N = mkNUC "पानी" feminine ; 
+  white_A = mkA "सेतो" ; -- सेतो
+  window_N = regN "झ्याल" ; -- झ्याल
+  wine_N = regN "वाईन" ; -- वाईन
+  win_V2 = mkV2 (mkV "जित्नु") ; -- जित्नु
+  woman_N = mkNF "आईमाई" Living Pers3_M ; -- आईमाई
+  wonder_VQ = compoundV "अचम्म" (mkV "हुनु") ; -- अचम्म हुनु
+  wood_N = regN "काठ" ; -- काठ
+  write_V2 = mkV2 (mkV "लेख्नु") ; -- लेख्नु
+  yellow_A = mkA "पहेलो" ; --पहेलो
+  young_A = mkA "जवान" ; -- जवान
+  do_V2 = mkV2 (mkV "गर्नु") ; -- गर्नु
+  now_Adv = mkAdv "अहीले" ; -- अहीले
+  already_Adv = mkAdv "अघिनै" ; -- अघिनै
+  song_N = regN "गीत" ; -- गित
+  add_V3 = mkV3 (mkV "जोड्नु") "सँग" "" ; -- जोड्नु
+  number_N = regN "संख्या" ; -- संख्या
+  put_V2 = mkV2 (mkV "राख्नु") ; -- राख्नु
+  stop_V = mkV "रोक्नु" ; -- रोक्नु
+  jump_V = mkV "उफ्रनु" ; -- उफ्रनु 
+  left_Ord = {s = "बायाँ" ; n = singular}; -- ????
+  right_Ord = {s = "दायाँ" ; n = singular}; -- ????
+  far_Adv = mkAdv "टाढा" ; -- टाढा
+  correct_A = mkA "ठिक" ; -- ठिक
+  dry_A = mkA "सुख्खा" ; -- सुख्खा
+  dull_A = mkA "मन्ध" ; -- मन्ध
+  full_A = mkA "भरि" ; -- भरि
+  heavy_A = mkA "भारी" ; -- भारी
+  near_A = mkA "नजिक" ; -- नजिक
+  rotten_A = mkA "कुहिa:को" ; -- कुहिएको
+  round_A = mkA "गोलो" ; -- गोलो
+  sharp_A = mkA "तीखो" ; -- तीखो
+  smooth_A = mkA "समतल" ; -- समतल
+  straight_A = mkA "सिधा" ; -- सिधा
+  wet_A = mkA "चिसो" ; -- चिसो
+  wide_A = mkA "फराकिलो" ; -- फराकिलो
+  animal_N = regN "जनावार" ; -- जनावार
+  ashes_N = mkNUC "खरानी" masculine ; -- खरानी
+  back_N = regN "आङ" ; -- आङ
+  bark_N = regN "बोक्रा" ; -- बोक्रा
+  belly_N = regN "पेट" ; -- पेट
+  blood_N = mkNUC "रगत" feminine ; -- रगत
+  bone_N = regN "हड्डी" ; -- हड्डी
+  breast_N = regN "स्तन" ; -- स्तन
+  cloud_N = regN "बादल" ; -- बादल
+  day_N = regN "दिन" ; -- दिन
+  dust_N = regN "धुलो" ; -- धुलो
+  ear_N = regN "कान" ; -- कान
+  earth_N = regN "पृथ्वि" ; -- पृथ्वि
+  egg_N = regN "अण्डा" ; -- अण्डा
+  eye_N = regN "आँखा" ; -- आँखा
+  fat_N = regN "मोटो" ; -- मोटो 
+  feather_N = regN "प्वाँख" ; -- प्वाँख
+  fingernail_N = regN "नङ" ; -- नङ
+  fire_N = regN "आगो" ; -- आगो
+  flower_N = regN "फुल" ; -- फुल
+  fog_N = mkNUC "कुईरो" feminine ; --  कुईरो 
+  foot_N = regN "खुट्टा" ; -- खुट्टा
+  forest_N = regN "जँगल" ; -- जँगल
+  grass_N = mkNUC "घाँस" masculine ; -- घाँस
+  guts_N = regN "गत" ; -- FIXME: no singular
+  hair_N = mkNUC "कपाल" masculine ; -- कपाल
+  hand_N = regN "हात" ; -- हात
+  head_N = regN "टाउकोस" ; -- टाउको
+  heart_N = regN "मुटु" ; -- मुटु
+  horn_N = regN "हर्न" ; -- हर्न
+  husband_N = regN "पति" human Pers3_M ; -- पति
+  ice_N = mkNUC "हिऊँ" masculine ; -- हिऊँ
+  knee_N = regN "घुँडा" ; -- घुँडा
+  leaf_N = regN "पात" ; -- पात
+  leg_N = regN "खुट्टा" ; -- खुट्टा
+  liver_N = regN "कलेजो" ; -- कलेजो
+  louse_N = regN "जुम्रा" ; -- जुम्रा
+  mouth_N = regN "मुख" ; -- मुख
+  name_N = regN "नाम" ; -- नाम
+  neck_N = regN "घाँटी" ; -- घाँटी
+  night_N = regN "रात" ; -- रात
+  nose_N = regN "नाक" ; -- नाक
+  person_N = regN "मानिस" ; -- मानिस
+  rain_N = mkNUC "बर्षा" feminine ; -- बर्षा
+  road_N = regN "सषक" ; -- सडक
+  root_N = regN "जड" ; -- जड
+  rope_N = regN "डोरी" ; -- डोरी
+  salt_N = mkNUC "नुन" masculine ; -- नुन
+  sand_N = mkNUC "बालुवा" masculine ; -- बालुवा
+  seed_N = regN "बिउ" ; -- बिउ
+  see_V2 = mkV2 (mkV "हेर्नु" ) lai ; -- हेर्नु
+  skin_N = regN "छाला" ; -- छाला
+  sky_N  = regN "आकाश" ; -- आकाश
+  smoke_N = mkNUC "धुवाँ" masculine ; -- धुवाँ
+  snow_N = regN "हिउँ" ; -- हिउँ
+  stick_N = regN "लठ्ठि" ; -- लठ्ठि
+  tail_N = regN "पुच्छर" ; -- पुच्छर
+  tongue_N = regN "जिब्रो" ; -- जिब्रो
+  tooth_N = regN "दाँत" ; -- दाँत 
+  wife_N = mkNF "पत्नी" Living ; -- पत्नी
+  wind_N = regN "हुरी" ; -- हुरी
+  wing_N = regN "पंखा" ; -- पंखा
+  worm_N = regN "जुगा" ; -- जुगा
+  year_N = regN "बर्ष" ; -- बर्ष
+  blow_V = mkV "प्रहार" ; -- प्रहार
+  breathe_V = compoundV "सास" (mkV "फेर्नु" ) ; -- सास फेर्नु
+  burn_V = mkV "बाल्नु" ; -- बाल्नु
+  dig_V = mkV "खन्नु" ; -- खन्नु
+  fall_V = mkV "झर्नु" ; -- झर्नु
+  float_V = mkV "उत्रनु" ; -- उत्रनु
+  flow_V = mkV "बहनु" ; -- बहनु
+  fly_V = mkV "उड्नु" ; -- उड्नु
+  freeze_V = mkV "जमाउनु" ; -- जमाउनु
+  give_V3 = mkV3 (mkV "दिनु") lai "" ; -- दिनु
+  laugh_V = mkV "हास्नु" ; -- हास्नु  
+  lie_V = compoundV "झुटो" (mkV "बोल्नु"); -- झुटो बोल्नु  
+  play_V = mkV "खेल्नु" ; -- खेल्नु
+  sit_V = mkV "बस्नु" ; -- बस्नु
+  sew_V = mkV "सिउनु" ; -- सिउनु
+  sing_V = mkV "गाउनु" ; -- गाउनु  
+  smell_V = mkV "सुगन्ध" ; -- सुगन्ध
+  spit_V = mkV "थुक्नु" ; -- थुक्नु
+  stand_V = mkV "उठ्नु" ; -- उठ्नु
+  swell_V = mkV "सुनिनु" ; -- सुनिनु
+  swim_V = compoundV "पौडी" (mkV "खेल्नु" ) ;
+  think_V = mkV "सोच्नु" ; -- सोच्नु
+  turn_V = mkV "पल्टिनु" ; -- पल्टिनु
+  vomit_V = mkV "छादनु" ; -- छादनु
+  bite_V2 = mkV2 (mkV "टोक्नु") ; -- टोक्नु
+  count_V2 = mkV2 (mkV "गन्नु") ; -- गन्नु
+  cut_V2 = mkV2 (mkV "काटनु") ; -- काटनु
+  fear_V2 = mkV2 (mkV "डराउनु") ; -- डराउनु
+  fight_V2 = mkV2 (mkV "लड्नु") ; -- लड्नु
+  hit_V2 = mkV2 (mkV "हान्नु" ) lai ; -- हान्‌नु
+  hold_V2 = mkV2 (mkV "समात्नु") ; -- समात्नु
+  hunt_V2 = mkV2 (compoundV "शिकार" do_V2) ; -- शिकार
+  kill_V2 =  mkV2 (mkV "मार्नु") ;  -- मार्नु
+  pull_V2 = mkV2 (mkV "तान्नु"); -- तान्नु
+  push_V2 = mkV2 (compoundV "धक्का" (mkV "दिनु")) lai ;
+  rub_V2 = mkV2 (mkV "माडनु") ; -- माडनु
+  scratch_V2 = mkV2 (mkV "कोर्नु") lai ; -- कोर्नु
+  split_V2 = mkV2 (mkV "चिर्नु") lai ; -- चिर्नु
+  squeeze_V2 = mkV2 (mkV "थिच्नु") lai ; -- थिच्नु
+  stab_V2 = mkV2 (compoundV "छुरा" hit_V2) ; -- छुरा हान्नु
+  suck_V2 = mkV2 (mkV "चुस्नु") ; -- चुस्नु
+  throw_V2 = mkV2 (mkV "फाल्नु") ; -- फाल्नु
+  tie_V2 = mkV2 (mkV "बाँधनु") ; -- बाँधनु
+  wash_V2 = mkV2 (mkV "धुनु") ; -- धुनु
+  wipe_V2 = mkV2 (mkV "पुछ्नु"); -- पुछ्नु  
+--b  other_A = mkA "अरु" ; -- अरु  NOT IN ABSTRACT
+  grammar_N = regN "व्याकरण" ; -- व्याकरण
+  language_N = regN "भाषा" ; -- भाषा
+  rule_N = regN "नियम" ; -- नियम
+
+-- added 4/6/2007
+  john_PN = mkPN "जोन" masculine human Pers3_L ;
+  question_N = regN "प्रश्न" ; -- प्रश्न
+  ready_A = mkA "तयार" ; -- तयार
+  reason_N = regN "कारण" ; -- कारण
+  today_Adv = mkAdv "आज" ; -- आज
+  uncertain_A = mkA "अनिश्चित" ; -- अनिश्चित
+
+oper
+  lai = "लाई" ;
+
+} ;
diff --git a/lib/src/nepali/MorphoNep.gf b/lib/src/nepali/MorphoNep.gf
new file mode 100644
--- /dev/null
+++ b/lib/src/nepali/MorphoNep.gf
@@ -0,0 +1,874 @@
+--# -path=.:../../prelude
+--
+-- 1 Morpholical inflection of Noun and Verbs of Nepali
+--
+--  by Dinesh Simkhada, Shafqat Virk - 2011
+--
+
+resource MorphoNep = ResNep ** open Prelude,Predef in {
+
+  flags optimize=all ;
+  coding = utf8;
+
+  param 
+    {-
+    For distinguishing root ending in -a- and rest of other.
+    Root ending in -a/अ or h - is regarded as reg and rest ireg 
+    -}
+    VCase = VReg | VIReg ; 
+    
+
+--1 Nouns
+  oper
+    
+    mkN : (x1,_,_,_,_,_,_,_,_,_,_,x12 : Str) -> Gender -> NType -> NPerson -> Noun = 
+      \sn,sa,si,sd,sab,sl,pn,pa,pi,pd,pab,pl,g,t,h -> {
+      s = table {
+      Sg => table {
+        Nom => sn ;
+        Acc => sa ;
+        Ins => si ;
+        Dat => sd ;
+        Abl => sab ;
+        Loc => sl
+        } ;
+      Pl => table {
+        Nom => pn ;
+        Acc => pa ;
+        Ins => pi ;
+        Dat => pd ;
+        Abl => pab ;
+        Loc => pl
+        }
+      } ;
+      g = g ;
+      t = t ;
+      h = h
+    } ;    
+
+  -- TODO
+  -- ?? NEED TO ADD CASE IF ENDS WITH 'o' (PG. 99 Jaya)
+  
+  -- Regular nouns
+  mkNMF : Str -> Gender -> NType -> NPerson -> Noun ;
+  mkNMF str g t h = mkN str (str + "लाई") (str + "ले") (str + "लाई") (str + "बाट") (str + "मा") 
+                   (str + "हरु") (str + "हरुलाई") (str + "हरुले") (str + "हरुलाई") (str + "हरुबाट") (str + "हरुमा") g t h ;  
+  
+  -- Regular Nouns
+  mkNReg : Str -> NType -> NPerson -> Noun ;
+  mkNReg str typ hnr = mkNMF str Masc typ hnr ;
+  
+  -- Faminine nouns
+  mkNFem : Str -> NType -> NPerson -> Noun ;
+  mkNFem str typ hnr = mkNMF str Fem typ hnr ; 
+  
+  
+  -- Uncountable nouns, which have same singular and plular form
+  -- eg water
+  mkNUnc : Str -> Gender -> NType -> NPerson -> Noun ;
+  mkNUnc str g t h = mkN str (str + "लाई") (str + "ले") (str + "लाई") (str + "बाट") (str + "मा") 
+                     str (str + "लाई") (str + "ले") (str + "लाई") (str + "बाट") (str + "मा")  g t h ;  
+
+  -- Proper Names
+  regN1 : Str -> Gender -> NType -> NPerson -> Noun ;
+  regN1 str g t h = mkN str (str + "लाई") (str + "ले") (str + "लाई") (str + "बाट") (str + "मा")
+                    str str str str str str g t h ;
+
+
+-- pronouns
+  makePron : (x1,_,_,_,_,x6 : Str) -> {s : Case => Str} = 
+    \n,ac,i,d,ab,l-> { 
+        s = table {
+              Nom => n ;
+              Acc => ac ;
+              Ins => i ;
+              Dat => d ;
+              Abl => ab ;
+              Loc => l
+            }
+        } ;
+    
+  makePronReg : Str -> {s : Case => Str} ;
+  makePronReg str = makePron str (str + "लाई") (str + "ले") (str + "लाई") (str + "बाट") (str + "मा") ;
+
+--2. Derminers  
+  makeDet : Str -> Str -> Str -> Str -> Number -> Determiner = 
+   \s1,s2,s3, s4, n -> {
+     s = table {
+         Sg => table { Masc => s1 ;
+                       Fem  => s2 } ;
+         Pl => table { Masc => s3 ;
+                       Fem  => s4 }
+	     }  ;
+      n = n
+	} ;	
+
+-- maIdetn helper    
+  makeIDet : Str -> Str -> {s : Gender => Str} = 
+    \s1,s2 -> {
+      s = table {
+          Masc => s1 ;
+		  Fem  => s2
+	      } 
+     } ;
+
+-- Quantifiers
+  makeQuant : Str -> Str -> Str -> Str -> {s : Number => Gender => Str } =
+   \sm,sf,pm,pf -> {
+    s = table { 
+        Sg => table { Masc => sm ;
+                      Fem  => sf } ;
+	    Pl => table { Masc => pm ;
+                      Fem  => pf }
+	    }
+    } ; 
+    
+-- Proposition     
+  makePrep : Str -> Preposition = \str -> {s = str } **  { lock_Prep = <>};
+
+  
+--3. Verbs
+  mkVerb : (_: Str) -> Verb = \inf ->
+   let root  = (tk 2 inf) ; 
+   
+    in { 
+     s = table {
+         Root     => root ;
+         Inf      => inf ;
+         PVForm   => (tk 1 inf) ;
+         Imp      => (mkImpForm root).s ;
+         ProgRoot aspect number gender => (mkProgRoot root aspect number gender).s ;
+
+         VF tense aspect polarity person number gender => 
+            case aspect of {
+                 Imperf => (mkVImperf root tense polarity person number gender).s ;
+                 Perf   => (mkVPerf root tense polarity person number gender).s
+            }
+          }
+       } ;
+  
+  --For the case of lets (lets sleep)
+  mkImpForm : Str -> {s:Str} ;
+  mkImpForm str =
+   let vcase = (rootCheck str).vcase;
+       root2 = (rootCheck str).root2
+    in { 
+     s = case vcase of {
+         VReg => root2 + "ौँ" ;
+         _    => root2 + "आँ"
+      };
+    };
+    
+  
+  --For the progressive root case
+  mkProgRoot : Str -> Aspect -> Number -> Gender -> {s : Str } = 
+   \root,aspect,number,gender -> 
+    let root1 = (rootCheck root).root1 ;
+        root2 = (rootCheck root).root2 ;
+        vcase = (rootCheck root).vcase
+     in {
+      s= case <vcase,root> of {
+        <VReg, _> => (mkProgReg  root2 aspect number gender).s ;
+        <_, "जा"> => (mkProgIReg root  aspect number gender).s ;
+        <_, "हा"> => (mkProgIReg root  aspect number gender).s ;
+        <_,    _> => (mkProgIReg root2 aspect number gender).s 
+        };
+      };
+   
+   
+   mkProgReg : Str -> Aspect -> Number -> Gender -> {s : Str } =
+     \root2,aspect,number,gender -> {
+      s = case <aspect,number,gender> of {
+        <Imperf, _,    _> => root2 + "दै" ;
+       
+        <Perf,  Sg, Masc> => root2 + "िरहेको" ;
+        <Perf,  Sg, Fem>  => root2 + "िरहेकि" ;
+        <Perf,  Pl,    _> => root2 + "िरहेका"
+        };
+      };
+    
+   
+   mkProgIReg : Str -> Aspect -> Number -> Gender -> {s : Str } =
+     \root,aspect,number,gender -> {
+      s = case <aspect,number,gender> of {
+        <Imperf, _,    _> => root + "दै" ;
+       
+        <Perf,  Sg, Masc> => root + "इरहेको" ;
+        <Perf,  Sg, Fem>  => root + "इरहेकि" ;
+        <Perf,  Pl,    _> => root + "इरहेका" 
+        };
+      } ;       
+       
+   --need to check for want_VV <- Not inflected correctly
+   rootCheck : Str -> {root1:Str; root2:Str; vcase: VCase} = 
+     \root -> {
+     {-
+     Root inflection case
+     1. irregular case of Janu/जानु/go 
+     root = जा     root1 = जान्       root2 = ग     
+     
+     2. irregular case of Hunu/हुनु/Become 
+     root = हु     root1 = हुन्       root2 = भ
+     
+     3. reg Verbs ending in Consonants - पढनु/to study
+     root = पढ्,     root1 = पढ   root2 = पढ् <- original
+     root = पढ्,     root1 = पढ्,  root2 = पढ <- changed to this
+                                         make sure it doesn't break
+     
+     4. Khanu/खानु/to eat, Dinu/दिनु /to Give
+     root = खा      root1 = खान्     root2 = खा
+     
+     5. Dhunu/धुनु/wash, Runu/रुनु/Cry
+     root = धु       root1 = धुन्      root2 = धो     
+     
+     6. Aaunu/आउनु/to Come, Pathaunu/पठाउनु/to Send
+     root = आउ    root1 = आउँ     root2 = आ        
+     -}
+     
+    root1 = case root of {
+          "जा"                => root + "न्" ;
+          "हु"                => root + "न्" ;
+          rot + "्"          => root ;
+          rot + ("ह")         => root + "न्" ; --cmnt
+          rot + ("ा"|"ि"|"ी") => root + "न्" ;
+          rot + ("े"|"ु"|"ू") => root + "न्" ;
+          rot + ("उ"|"ऊ")     => root + "ँ" ;
+          _                   => root
+        } ; 
+    root2 = case root of {
+          "जा"                => "ग" ;
+          "हु"                => "भ" ;
+          rot + "्"          => rot ;
+          rot + ("ा"|"ि"|"ी") => root ;
+          rot + ("ह")         => root + "न्" ; --cmnt
+          rot + ("े"|"ु"|"ू") => rot + "ो" ;
+          rot + ("उ"|"ऊ")     => rot ;
+          _                   => root
+        } ; 
+    vcase = case root of {
+          rot + "्" => VReg;   
+          --rot + "ह"  => VReg;   
+          _          => VIReg
+        }
+    } ;
+
+   mkVImperf : Str -> VTense -> Polarity -> NPerson -> Number -> Gender -> {s:Str} = 
+     \root, t, po, pn, n, g ->
+       let root1 = (rootCheck root).root1 ;
+           root2 = (rootCheck root).root2 ;
+           vcase = (rootCheck root).vcase ;
+        in
+        {s = case t of {
+             NPresent       => (mkVPreNP  root root1 vcase po pn n g).s ;
+             NPast Simpl    => (mkVPstSNP root root2 vcase po pn n g).s ;
+             NPast Hab      => (mkVPstHNP root root1 vcase po pn n g).s ;
+             --NPast Unknown  => (mkVPstUNP root root2 vcase po pn n g).s ;
+             NFuture Defin  => (mkVFutDNP root po pn n g).s ;
+             NFuture NDefin => (mkVFutNDNP root root2 vcase po pn n g).s 
+            } 
+         } ;
+
+ 
+   mkVPerf : Str -> VTense -> Polarity -> NPerson -> Number -> Gender -> {s:Str} = 
+     \root, t, po, pn, n, g ->
+       let root1 = (rootCheck root).root1 ;
+           root2 = (rootCheck root).root2 ;
+           vcase = (rootCheck root).vcase ;
+        in
+        {s = case t of {
+             --it seems root has no use in these cases, root2 worsk for all
+             --if no problem arises better to remove root parameter
+             NPresent       => (mkVPreP  root root2 vcase po pn n g).s ;
+             NPast Simpl    => (mkVPstSP root root2 vcase po pn n g).s ;
+             NPast Hab      => (mkVPstHP root root2 vcase po pn n g).s ;
+             --NPast Unknown  => (mkVPstUP root root2 vcase po pn n g).s ;             
+             NFuture Defin  => (mkVFutDefP root root2 vcase po pn n g).s ;
+             NFuture NDefin => (mkVFutNDefP root root2 vcase po pn n g).s         
+            }
+         };
+  
+ 
+-- Present, Nonperfective aspect, Non-progressive mode, 
+   mkVPreNP : Str -> Str -> VCase -> Polarity -> NPerson -> Number -> Gender -> {s:Str} = 
+     \root, root1, vc, po, pn, n, g ->
+      {s = case vc of {
+           VReg  => (mkVPreNPReg root po pn n g).s ;
+           VIReg => (mkVPreNPIReg root root1 po pn n g).s
+           }
+        } ;
+  
+   -- mkVPreNP Helper for VRrg case
+   mkVPreNPReg : Str -> Polarity -> NPerson -> Number -> Gender -> {s:Str} = 
+     \root, po, pn, n, g ->
+      {s = case <po, pn, n, g> of { 
+          -- Positive case
+          <Pos, Pers1,    Sg,    _> => root + "छु" ;   -- छु 
+          <Pos, Pers1,    Pl,    _> => root + "छौँ" ;   -- छौं      
+          <Pos, Pers2_L,  Sg, Masc> => root + "छस्" ; -- छस्
+          <Pos, Pers2_L,  Sg, Fem>  => root + "छेस्" ; -- छेस्      
+          <Pos, Pers2_L,  Pl,   _>  => root + "छौ" ;    -- छौ 
+          <Pos, Pers2_M,  Sg, Fem>  => root + "छ्यौ" ;  -- छ्यौ
+          <Pos, Pers2_M,  _ ,   _>  => root + "छौ" ;    -- छौ          
+          <Pos, Pers3_L,  Sg, Masc> => root + "छ" ;  -- छ
+          <Pos, Pers3_L,  Sg, Fem>  => root + "छे" ;  -- छे
+          <Pos, Pers3_L,  Pl,   _>  => root + "छन्" ;  -- छन्      
+          <Pos, Pers3_M,  Sg, Fem>  => root + "छिन्" ;  -- छिन्
+          <Pos, Pers3_M,  _,    _>  => root + "छन्" ;  -- छन्      
+          <Pos,      _ ,  _,    _>  => root + "नुहुन्छ" ; -- नुहुन्छ
+          
+          -- Negative Case
+          <Neg, Pers1,    Sg,    _> => root + "दिनँ" ;  -- इनँ (पढ्दिनँ)
+          <Neg, Pers1,    Pl,    _> => root + "दैनैँ" ;   -- ऐनैँ (पढ्दैनैँ)
+          <Neg, Pers2_L,  Sg, Masc> => root + "दैनस्" ; -- ऐनस् (पढदैनस्)
+          <Neg, Pers2_L,  Sg, Fem>  => root + "दिनस्" ; -- इनस् (पढदिनस्) 
+          <Neg, Pers2_L,  Pl,   _>  => root + "दैनै" ; -- ऐनै 
+          <Neg, Pers2_M,  Sg, Fem>  => root + "दिनै" ; -- इनै
+          <Neg, Pers2_M,  _ ,   _>  => root + "दैनै" ; -- ऐनै           
+          <Neg, Pers3_L,  Sg, Masc> => root + "दैन" ;  -- ऐन
+          <Neg, Pers3_L,  Sg, Fem>  => root + "दिन" ;  -- इन
+          <Neg, Pers3_L,  Pl,   _>  => root + "दैन्न" ;  -- ऐनन्
+          <Neg, Pers3_M,  Sg, Fem>  => root + "दिन्न" ;  -- इनन्
+          <Neg, Pers3_M,  _,    _>  => root + "दैन्न" ;  -- ऐनन्
+          <Neg,      _ ,  _,    _>  => root + "नुहुन्न" -- नुहुन्न
+          }
+     } ;          
+   
+   -- mkVPreNP Helper for VIRrg case
+   mkVPreNPIReg : Str -> Str -> Polarity -> NPerson -> Number -> Gender -> {s:Str} = 
+    \root, root1, po, pn, n, g ->
+     {s = case <po, pn, n, g> of { 
+          -- Positive case
+          <Pos, Pers1,    Sg,    _> => root1 + "छु" ;   -- छु 
+          <Pos, Pers1,    Pl,    _> => root1 + "छौं" ;   -- छौं      
+          <Pos, Pers2_L,  Sg, Masc> => root1 + "छस्" ; -- छस्
+          <Pos, Pers2_L,  Sg, Fem>  => root1 + "छेस्" ; -- छेस्      
+          <Pos, Pers2_L,  Pl,   _>  => root1 + "छौ" ;    -- छौ 
+          <Pos, Pers2_M,  Pl, Fem>  => root1 + "छ्यौ" ;  -- छ्यौ
+          <Pos, Pers2_M,  _ ,   _>  => root1 + "छौ" ;    -- छौ      
+          <Pos, Pers3_L,  Sg, Masc> => root1 + "छ" ;  -- छ
+          <Pos, Pers3_L,  Sg, Fem>  => root1 + "छे" ;  -- छे
+          <Pos, Pers3_L,  Pl,   _>  => root1 + "छन्" ;  -- छन्      
+          <Pos, Pers3_M,  Sg, Fem>  => root1 + "छिन्" ;  -- छिन्
+          <Pos, Pers3_M,  _,    _>  => root1 + "छन्" ;  -- छन्      
+          <Pos,      _ ,  _,    _>  => root + "नुहुन्छ" ; -- नुहुन्छ
+          
+          -- Negative Case
+          <Neg, Pers1,    Sg,    _> => root + "ँदिनँ" ;  -- इनँ (खाँदिनँ)
+          <Neg, Pers1,    Pl,    _> => root + "ँदैनैँ" ;  -- ऐनैँ (खाँदैनैँ)
+          <Neg, Pers2_L,  Sg, Masc> => root + "ँदैनस्" ; -- ऐनस्  (आउँदैनस्)
+          <Neg, Pers2_L,  Sg, Fem>  => root + "ँदिनस्" ; -- इनस् (खाँदिनस्) 
+          <Neg, Pers2_L,  Pl,   _>  => root + "ँदैनै" ; -- ऐनै  (खाँदैनै)
+          <Neg, Pers2_M,  Sg, Fem>  => root + "ँदिनै" ; -- इनै
+          <Neg, Pers2_M,  _ ,   _>  => root + "ँदैनै" ; -- ऐनै           
+          <Neg, Pers3_L,  Sg, Masc> => root + "ँदैन" ;  -- ऐन
+          <Neg, Pers3_L,  Sg, Fem>  => root + "ँदिन" ;  -- इन (खाँदिन)
+          <Neg, Pers3_L,  Pl,   _>  => root + "ँदैन्न" ;  -- ऐनन्
+          <Neg, Pers3_M,  Sg, Fem>  => root + "ँदिन्न" ;  -- इनन्
+          <Neg, Pers3_M,  _,    _>  => root + "ँदैन्न" ;  -- ऐनन्
+          <Neg,      _ ,  _,    _>  => root + "ँनुहुन्‍न" -- नुहुन्‍न
+          }
+     } ;
+  
+  
+   
+-- Past Simple, Nonprogressive mode, nonperfective aspect
+   mkVPstSNP : Str -> Str -> VCase -> Polarity -> NPerson -> Number -> Gender -> {s:Str} = 
+     \root, root2, vc, po, pn, n, g ->
+      {s = case vc of {
+           VReg  => (mkVPstSNPReg root root2 po pn n g).s ;
+           VIReg => (mkVPstSNPIReg root root2 po pn n g).s
+           }
+        } ;         
+         
+   -- mkVPstSNP Helper for VRrg case
+   mkVPstSNPReg : Str -> Str -> Polarity -> NPerson -> Number -> Gender -> {s:Str} = 
+     \root, root2, po, pn, n, g ->
+      {s = case <po, pn, n, g> of {   
+           -- Positive case
+           <Pos, Pers1,    Sg,   _>  => root2 + "ेँ" ; -- एँ
+           <Pos, Pers1,    Pl,   _>  => root  + "यौं" ; -- यौं
+           <Pos, Pers2_L,  Sg,   _>  => root2 + "िस्" ; -- इस्
+           <Pos, Pers2_L,  Pl,   _>  => root  + "यौ" ; -- यौ
+           <Pos, Pers2_M,   _,   _>  => root  + "यौ" ; -- यौ             
+           <Pos, Pers3_L,  Sg, Masc> => root  + "यो" ; -- यो
+           <Pos, Pers3_L,  Sg, Fem>  => root2 + "ी" ; -- इ (पढी)
+           <Pos, Pers3_L,  Pl,   _>  => root2 + "े" ; -- ए (पढे)     
+           <Pos, Pers3_M,  Sg, Fem>  => root2 + "िन्" ; -- इन् (पढिन्)
+           <Pos, Pers3_M,   _,   _>  => root2 + "े" ; -- ए (पढे)     
+           <Pos,       _,   _,   _>  => root  + "नुभयो" ; -- नुभयो
+          
+           -- Negative case
+           <Neg, Pers1,    Sg,   _>  => root2 + "िनँ" ; -- इनँ
+           <Neg, Pers1,    Pl,   _>  => root2 + "ेनैँ" ; -- एनैँ
+           <Neg, Pers2_L,  Sg,   _>  => root2 + "िनस्" ; -- इनस्
+           <Neg, Pers2_L,  Pl,   _>  => root2 + "ेनै" ; -- एनै
+           <Neg, Pers2_M,  Sg, Fem>  => root2 + "िनै" ; -- इनै    
+           <Neg, Pers2_M,   _,   _>  => root2 + "ेनै" ; -- एनै             
+           <Neg, Pers3_L,  Sg, Masc> => root2 + "ेन" ; -- एन
+           <Neg, Pers3_L,  Sg, Fem>  => root2 + "िन" ; -- इन (पढिन)
+           <Neg, Pers3_L,  Pl,   _>  => root2 + "ेनन्" ; -- एनन् (पढेनन्)     
+           <Neg, Pers3_M,  Sg, Fem>  => root2 + "िनन्" ; -- इनन् (पढिनन्)
+           <Neg, Pers3_M,   _,   _>  => root2 + "ेनन्" ; -- एनन् (पढेनन्)     
+           <Neg,       _,   _,   _>  => root  + "नुभएन" -- नुभएन
+           } 
+      } ;
+  
+   -- mkVPstSNP Helper for VIRrg case
+   mkVPstSNPIReg : Str -> Str -> Polarity -> NPerson -> Number -> Gender -> {s:Str} = 
+     \root, root2, po, pn, n, g ->
+      {s = case <po, pn, n, g> of {   
+           -- Positive case
+           <Pos, Pers1,    Sg,   _>  => root2 + "एँ" ; -- एँ
+           <Pos, Pers1,    Pl,   _>  => root2 + "यौं" ; -- यौं
+           <Pos, Pers2_L,  Sg,   _>  => root2 + "इस्" ; -- इस्
+           <Pos, Pers2_L,  Pl,   _>  => root2 + "यौ" ; -- यौ
+           <Pos, Pers2_M,   _,   _>  => root2 + "यौ" ; -- यौ      
+           <Pos, Pers3_L,  Sg, Masc> => root2 + "यो" ; -- यो
+           <Pos, Pers3_L,  Sg, Fem>  => root2 + "ई" ; -- ई 
+           <Pos, Pers3_L,  Pl,   _>  => root2 + "ए" ; -- ए   
+           <Pos, Pers3_M,  Sg, Fem>  => root2 + "इन्" ; -- इन्
+           <Pos, Pers3_M,   _,   _>  => root2 + "ए" ; -- ए   
+           <Pos,       _,   _,   _>  => root  + "नुभयो" ; -- नुभयो
+          
+           -- Negative case
+           <Neg, Pers1,    Sg,   _>  => root2 + "इनँ" ; -- इनँ
+           <Neg, Pers1,    Pl,   _>  => root2 + "एनैँ" ; -- एनैँ
+           <Neg, Pers2_L,  Sg,   _>  => root2 + "इनस्" ; -- इनस्
+           <Neg, Pers2_L,  Pl,   _>  => root2 + "एनै" ; -- एनै
+           <Neg, Pers2_M,  Sg, Fem>  => root2 + "इनै" ; -- इनै    
+           <Neg, Pers2_M,   _,   _>  => root2 + "एनै" ; -- एनै             
+           <Neg, Pers3_L,  Sg, Masc> => root2 + "एन" ; -- एन
+           <Neg, Pers3_L,  Sg, Fem>  => root2 + "इन" ; -- इन (पढिन)
+           <Neg, Pers3_L,  Pl,   _>  => root2 + "एनन्" ; -- एनन् (पढेनन्)     
+           <Neg, Pers3_M,  Sg, Fem>  => root2 + "इनन्" ; -- इनन् (पढिनन्)
+           <Neg, Pers3_M,   _,   _>  => root2 + "एनन्" ; -- एनन् (पढेनन्)     
+           <Neg,       _,   _,   _>  => root  + "नुभएन" -- नुभएन          
+           } 
+      } ;
+  
+
+-- Past Habitual, Nonprogressive mode, nonperfective aspect  
+   mkVPstHNP : Str -> Str -> VCase -> Polarity -> NPerson -> Number -> Gender -> {s:Str} = 
+     \root, root1, vc, po, pn, n, g ->
+      {s = case vc of {
+           VReg  => (mkVPstHNPGen root root1 po pn n g).s ;
+           VIReg => (mkVPstHNPGen root1 root po pn n g).s
+           }
+        } ;        
+        
+   -- mkVPstHNP helper, handles bith VReg and VIReg cases
+   mkVPstHNPGen : Str -> Str -> Polarity -> NPerson -> Number -> Gender -> {s:Str} = 
+     \root, root1, po, pn, n, g ->
+      let neg = "दैन" ; -- दैन    (TODO : CHECK FOR MAKE GENERIC FINCTION FOR POS AND NEG)
+      in
+      {s = case <po, pn, n, g> of {
+          <Pos, Pers1,   Sg,    _> => root + "थें" ; -- थें
+          <Pos, Pers1,   Pl,    _> => root + "थ्यौं" ; -- थ्यौं
+          <Pos, Pers2_L, Sg,    _> => root + "थिस्" ; -- थिस्
+          <Pos, Pers2_L, Pl,    _> => root + "थ्यौ" ; -- थ्यौ
+          <Pos, Pers2_M,  _,    _> => root + "थ्यौ" ; -- थ्यौ
+          <Pos, Pers3_L, Sg, Masc> => root + "थ्यो" ; -- थ्यो
+          <Pos, Pers3_L, Sg, Fem>  => root + "थी" ; -- थी
+          <Pos, Pers3_L, Pl,   _>  => root + "थे" ; -- थे
+          <Pos, Pers3_M, Sg, Fem>  => root + "थिन्" ; -- थिन्
+          <Pos, Pers3_M,  _,   _>  => root + "थे" ; -- थे          
+          <Pos,       _,  _,   _>  => root1 + "नुहुन्‌थ्यो" ; -- नुहुन्‌थ्यो
+          
+          <Neg, Pers1,   Sg,    _> => root + neg + "थें" ; -- थें
+          <Neg, Pers1,   Pl,    _> => root + neg + "थ्यौं" ; -- थ्यौं
+          <Neg, Pers2_L, Sg,    _> => root + neg + "थिस्" ; -- थिस्
+          <Neg, Pers2_L, Pl,    _> => root + neg + "थ्यौ" ; -- थ्यौ
+          <Neg, Pers2_M,  _,    _> => root + neg + "थ्यौ" ; -- थ्यौ
+          <Neg, Pers3_L, Sg, Masc> => root + neg + "थ्यो" ; -- थ्यो
+          <Neg, Pers3_L, Sg, Fem>  => root + neg + "थी" ; -- थी
+          <Neg, Pers3_L, Pl,   _>  => root + neg + "थे" ; -- थे
+          <Neg, Pers3_M, Sg, Fem>  => root + neg + "थीन्" ; -- थिन्
+          <Neg, Pers3_M,  _,   _>  => root + neg + "थे" ; -- थे          
+          <Neg,       _,  _,   _>  => root1 + "नुहुँदैनथ्यो" -- नुहुँदैनथ्यो
+          }
+      };
+   
+{-
+-- Past Unknown, Nonprogressive mode, nonperfective aspect     
+   mkVPstUNP : Str -> Str -> VCase -> Polarity -> NPerson -> Number -> Gender -> {s:Str} = 
+     \ root, root2, vc, po, p, n, g -> 
+      {s = case vc of {
+           VReg  => case po of {
+                    Pos => (mkVPstUNPReg root root2 ""  p n g).s ;
+                    Neg => (mkVPstUNPReg root root2 "न" p n g).s 
+                    } ;
+           VIReg => case po of {
+                    Pos => (mkVPstUNPIReg root root2 ""  p n g).s ;
+                    Neg => (mkVPstUNPIReg root root2 "न" p n g).s 
+                    }
+           }
+      };
+
+   -- mkVPstUNP helper for VReg case
+   mkVPstUNPReg : Str -> Str -> Str -> NPerson -> Number -> Gender -> {s:Str} = 
+      \root, root2, na, pn, nu, g ->
+      {s = case <pn, nu, g> of {
+          <Pers1,   Sg, Masc> => root2  + "े" + na + "छु" ; -- एछु
+          <Pers1,   Sg, Fem>  => root2  + "ि" + na + "छु" ; -- इछु
+          <Pers1,   Pl,    _> => root2  + "े" + na + "छौँ" ; -- एछौँ
+          <Pers2_L, Sg, Masc> => root2  + "े" + na + "छस्" ; -- एछस्
+          <Pers2_L, Sg, Fem>  => root2  + "ि" + na + "छस्" ; -- इछस्
+          <Pers2_L, Pl,    _> => root2  + "े" + na + "छौ" ; -- एछौ                    
+          <Pers2_M, Sg, Fem>  => root2  + "ि" + na + "छौ" ; -- इछौ
+          <Pers2_M,  _,    _> => root2  + "े" + na + "छौ" ; -- एछौ               
+          <Pers3_L, Sg, Masc> => root2  + "े" + na + "छ" ; -- एछ
+          <Pers3_L, Sg, Fem>  => root2  + "ि" + na + "छ" ; -- इछ
+          <Pers3_L, Pl,   _>  => root2  + "े" + na + "छन्" ; -- एछन्
+          <Pers3_M, Sg, Fem>  => root2  + "ि" + na + "छन्" ; -- इछन्
+          <Pers3_M,  _,   _>  => root2  + "े" + na + "छन्" ; -- एछन्
+          <      _,  _,   _>  => root   + "नुभए" + na +"छ" -- नुभएछ
+        }
+      } ;
+   
+   
+   -- mkVPstUNP helper for VIReg case
+   mkVPstUNPIReg : Str -> Str -> Str -> NPerson -> Number -> Gender -> {s:Str} = 
+     \root, root2, na, pn, nu, g -> 
+      {s = case <pn, nu, g> of {
+           <Pers1,   Sg, Masc> => root2 + "ए" + na + "छु" ; -- एछु
+           <Pers1,   Sg, Fem>  => root2 + "इ" + na + "छु" ; -- इछु
+           <Pers1,   Pl,    _> => root2 + "ए" + na + "छौँ" ; -- एछौँ
+           <Pers2_L, Sg, Masc> => root2 + "ए" + na + "छस्" ; -- एछस्
+           <Pers2_L, Sg, Fem>  => root2 + "इ" + na + "छस्" ; -- इछस्
+           <Pers2_L, Pl,    _> => root2 + "ए" + na + "छौ" ; -- एछौ                    
+           <Pers2_M, Sg, Fem>  => root2 + "इ" + na + "छौ" ; -- इछौ
+           <Pers2_M,  _,    _> => root2 + "ए" + na + "छौ" ; -- एछौ        
+          
+           <Pers3_L, Sg, Masc> => root2 + "ए" + na + "छ" ; -- एछ
+           <Pers3_L, Sg, Fem>  => root2 + "इ" + na + "छ" ; -- इछ
+           <Pers3_L, Pl,   _>  => root2 + "ए" + na + "छन्" ; -- एछन्
+           <Pers3_M, Sg, fem>  => root2 + "इ" + na + "छन्" ; -- इछन्
+           <Pers3_M,  _,   _>  => root2 + "ए" + na + "छन्" ; -- एछन्
+           <      _,  _,   _>  => root  + "नुभए" + na +"छ" -- नुभएनछ
+           }
+     } ;
+-}     
+
+-- Future Definitive, Nonprogressive mode, nonperfective aspect
+   -- Handles Both cases
+   mkVFutDNP : Str -> Polarity -> NPerson -> Number -> Gender -> {s:Str} = 
+     \root, po, pn, n, g ->
+      {s = case <po, pn, n, g> of { 
+          -- Positive case
+          <Pos, Pers1,    Sg,   _>  => root + "नेछु" ; -- नेछु
+          <Pos, Pers1,    Pl,   _>  => root + "नेछौं" ; -- नेछौं      
+          <Pos, Pers2_L,  Sg,   _>  => root + "नेछस्" ; -- नेछस्
+          <Pos, Pers2_L,  Pl,   _>  => root + "नेछौं" ; -- नेछौ
+          <Pos, Pers2_M,   _,   _>  => root + "नेछौं" ; -- नेछौ               
+          <Pos, Pers3_L,  Sg,   _>  => root + "नेछ" ; -- नेछ
+          <Pos, Pers3_L,  Pl,   _>  => root + "नेछन्" ; -- नेछन्      
+          <Pos, Pers3_M,   _, Masc> => root + "नेछन्" ; -- नेछन्
+          <Pos, Pers3_M,  Sg, Fem>  => root + "नेछिन्" ; -- नेछिन्      
+          <Pos, Pers3_M,  Pl, Fem>  => root + "नेछिन्" ; -- नेछन्            
+          <Pos,       _,   _,   _>  => root + "नुहुनेछ" ; -- नुहुनेछ      
+          
+          -- Negative Case
+          <Neg, Pers1,    Sg,   _>  => root + "नेछैन" ; -- नेछैन
+          <Neg, Pers1,    Pl,   _>  => root + "नेछैनैँ" ; -- नेछैनैँ
+          <Neg, Pers2_L,  Sg,   _>  => root + "नेछैनस्" ; -- नेछैनस्
+          <Neg, Pers2_L,  Pl,   _>  => root + "नेछैनै" ; -- नेछैनै
+          <Neg, Pers2_M,   _,   _>  => root + "नेछैनै" ; -- नेछैनै           
+          <Neg, Pers3_L,  Sg,   _>  => root + "नेछैन्" ; -- नेछैन्
+          <Neg, Pers3_L,  Pl,   _>  => root + "नेछैनन्" ; -- नेछैनन्
+          <Neg, Pers3_M,  Sg,   _>  => root + "नेछैनन्" ; -- नेछैनन्          
+          <Neg, Pers3_M,  Pl,   _>  => root + "नेछैनै" ; -- नेछैनै
+          <Neg,       _,   _,   _>  => root + "नुहुनेछैन्" -- नुहुनेछैन्
+          }
+     } ;
+          
+ 
+-- Future Nondefinitive, Nonperfective aspect, NonPregressive mode
+   mkVFutNDNP : Str -> Str -> VCase -> Polarity -> NPerson -> Number -> Gender -> {s:Str} = 
+     \root, root2, vc, po, pn, n, g ->
+      {s = case vc of {
+           VReg  => (mkVFutNDNPReg root root2 po pn n g).s ;
+           VIReg => (mkVFutNDNPIReg root2 po pn n g).s
+           }
+      } ;
+   
+   -- mkVFutNDNP helper for VReg case
+   mkVFutNDNPReg : Str -> Str -> Polarity -> NPerson -> Number -> Gender -> {s:Str} = 
+     \root, root2, po, pn, n, g ->
+      {s = case <po, pn, n, g> of {
+          <Pos, Pers1,   Sg,    _> => root2 + "ुँला" ; -- उँला 
+          <Pos, Pers1,   Pl,    _> => root2 + "ौँला" ; -- आँला
+          <Pos, Pers2_L, Sg, Masc> => root  + "‍लास्" ; -- लास् 
+          <Pos, Pers2_L, Sg, Fem>  => root  + "लीस्" ; -- लिस्
+          <Pos, Pers2_L, Pl,    _> => root2 + "ौला" ; -- औला 
+          <Pos, Pers2_M, Pl,  Fem> => root2 + "ौलि" ; -- औलि 
+          <Pos, Pers3_L, Sg, Masc> => root  + "ला" ; -- ला
+          <Pos, Pers3_L, Sg, Fem>  => root  + "ली" ; -- ली
+          <Pos, Pers3_L, Pl,   _>  => root  + "लान्" ; -- लान्
+          <Pos, Pers3_M, Sg, Fem>  => root  + "लीन्" ; -- लिन्
+          <Pos, Pers3_M,  _,   _>  => root  + "लान्" ; -- लान्
+          <Pos,       _,  _,   _>  => root  + "‍नुहोला" ; -- नुहोला
+          
+          -- TODO : NOT CLEAR DEFINITION IN BOOK
+          <Neg,       _,  _,   _>  => "टुडु" 
+        }
+      } ;
+ 
+   -- mkVFutNDNP helper for VIReg case
+   mkVFutNDNPIReg : Str -> Polarity -> NPerson -> Number -> Gender -> {s:Str} = 
+     \root, po, pn, n, g ->
+      {s = case <po, pn, n, g> of {
+           <Pos, Pers1,   Sg,    _> => root + "उँला" ; -- उँला
+           <Pos, Pers1,   Pl,    _> => root + "औँला" ; -- आँला
+           <Pos, Pers2_L, Sg, Masc> => root + "लास्" ; -- लास्
+           <Pos, Pers2_L, Sg, Fem>  => root + "लिस्" ; -- लिस् 
+           <Pos, Pers2_L, Pl,    _> => root + "औला" ; -- औला 
+           <Pos, Pers2_M, Pl,  Fem> => root + "औलि" ; -- औलि 
+           <Pos, Pers3_L, Sg, Masc> => root + "ला" ; -- ला
+           <Pos, Pers3_L, Sg, Fem>  => root + "ली" ; -- ली
+           <Pos, Pers3_L, Pl,   _>  => root + "लान्" ; -- लान्
+           <Pos, Pers3_M, Sg, Fem>  => root + "लिन्" ; -- लिन्
+           <Pos, Pers3_M,  _,   _>  => root + "लान्" ; -- लान्
+           <Pos,       _,  _,   _>  => root + "नुहोला" ; -- नुहोला
+           
+           -- TODO : NOT CLEAR DEFINITION IN BOOK
+           <Neg,       _,  _,   _>  => "टुडु" 
+           }
+        } ;
+   
+
+
+-- Past Simple, Perfective aspect, Nonprogressive Mode
+   mkVPstSP : Str -> Str -> VCase -> Polarity -> NPerson -> Number -> Gender -> {s:Str} = 
+     \root, root2, vc, po, pn, n, g ->
+      {s = case vc of {
+           VReg  => (mkVPstSPGen root2 "ेको"  "ेकि"  "ेका" po pn n g).s ;
+           VIReg => (mkVPstSPGen root2 "एको" "एकि" "एका" po pn n g).s
+           }
+      } ;
+   
+   -- mkVPstSP Helper handles both VReg and VIreg cases
+   mkVPstSPGen : Str -> Str -> Str -> Str -> Polarity -> NPerson -> Number -> Gender -> {s:Str} = 
+      \root, sreg, sfem, spl, po, pn, n, g ->
+      {s = case <po, pn, n, g> of {
+          -- Positive case
+          <Pos, Pers1,   Sg,    _> => root + sreg + "थिएँ" ; -- थिएँ
+          <Pos, Pers1,   Pl,    _> => root + spl + "थियौँ" ; -- थियौँ          
+          <Pos, Pers2_L, Sg, Masc> => root + sreg + "थिइस्" ; -- थिइस्
+          <Pos, Pers2_L, Sg, Fem>  => root + sfem + "थिइस्" ; -- थिइस्
+          <Pos, Pers2_L, Pl,    _> => root + spl + "थियौ" ; -- थियौ
+          <Pos, Pers2_M,  _,    _> => root + spl + "थियौ" ; -- थियौ          
+          <Pos, Pers3_L, Sg, Masc> => root + sreg + "थियो" ; -- थियो
+          <Pos, Pers3_L, Sg, Fem>  => root + sfem + "थिई" ; --थिई
+          <Pos, Pers3_L, Pl,   _>  => root + spl + "थिए" ; -- थिए
+          <Pos, Pers3_M, Sg, Fem>  => root + sfem + "थिइन्" ; -- थिइन्
+          <Pos, Pers3_M,  _,   _>  => root + spl + "थिए" ; -- थिए
+          <Pos,       _,  _,   _>  => root + sreg + "हुनुहुन्‌थ्यो" ; -- हुनुहुन्‌थ्यो (TODO: CONFIRM CORRECT)
+          
+          -- Negative case
+          <Neg, Pers1,   Sg,    _> => root + sreg +"थिइनँ" ; -- 
+          <Neg, Pers1,   Pl,    _> => root + spl + "थिएनैँ" ; --
+          
+          <Neg, Pers2_L, Sg, Masc> => root + sreg + "थिइनस्" ; -- 
+          <Neg, Pers2_L, Sg, Fem>  => root + sfem + "थिइनस्" ; -- 
+          <Neg, Pers2_L, Pl,    _> => root + spl + "थिएनै" ; -- 
+          <Neg, Pers2_M,  _,    _> => root + spl + "थिनै" ; -- 
+          
+          <Neg, Pers3_L, Sg, Masc> => root + sreg + "थिएन" ; -- 
+          <Neg, Pers3_L, Sg, Fem>  => root + sfem + "थिइङ" ; --
+          <Neg, Pers3_L, Pl,   _>  => root + spl + "थिएनन्" ; -- 
+          <Neg, Pers3_M, Sg, Fem>  => root + sfem + "थिइनन्" ; -- 
+          <Neg, Pers3_M,  _,   _>  => root + spl + "थिएनन्" ; -- 
+          <Neg,       _,  _,   _>  => root + sreg + "हुनुहुन्‌नथ्यो" -- हुनुहुन्‌नथ्यो (TODO: CONFIRM CORRECT)
+        }
+      };
+   
+   
+-- Past Habitual, Perfective aspect, Nonprogressive Mode
+   mkVPstHP : Str -> Str -> VCase -> Polarity -> NPerson -> Number -> Gender -> {s:Str} = 
+     \root, root2, vc, po, pn, n, g ->
+      {s = case vc of {
+           VReg  => (mkVPstHPGen root2 "ेको"  "ेकि"  "ेका"  po pn n g).s ;
+           VIReg => (mkVPstHPGen root2 "एको" "एकि" "एका" po pn n g).s
+           }
+        } ;
+   
+   -- mkVPstSP Helper handles both VReg and VIreg cases
+   mkVPstHPGen : Str -> Str -> Str -> Str -> Polarity -> NPerson -> Number -> Gender -> {s:Str} = 
+      \root, sreg, sfem, spl, po, pn, n, g ->
+      {s = case <po, pn, n, g> of {
+          <Pos, Pers1,   Sg,    _> => root + sreg + "हुन्थेँ" ; -- हुन्थेँ
+          <Pos, Pers1,   Pl,    _> => root + spl + "हुन्थौँ" ; -- हुन्थौँ          
+          <Pos, Pers2_L, Sg, Masc> => root + sreg + "हुन्थिस्" ; -- हुन्थिस् 
+          <Pos, Pers2_L, Sg, Fem>  => root + sfem + "हुन्थइस्" ; -- हुन्थिस् 
+          <Pos, Pers2_L, Pl,    _> => root + spl + "हुन्थ्यौ" ; -- हुन्थ्यौ 
+          <Pos, Pers2_M,  _,    _> => root + spl + "हुन्थ्यौ" ; -- हुन्थ्यौ           
+          <Pos, Pers3_L, Sg, Masc> => root + sreg + "हुन्‌थ्यौ" ; -- हुन्‌थ्यौ
+          <Pos, Pers3_L, Sg, Fem>  => root + sfem + "हुन्थी" ; -- हुन्थी
+          <Pos, Pers3_L, Pl,   _>  => root + spl + "हुन्थे" ; -- हुन्थे  
+          <Pos, Pers3_M, Sg, Fem>  => root + sfem + "हुन्‌थि" ; -- हुन्थि
+          <Pos, Pers3_M,  _,   _>  => root + spl + "हुन्थे" ; -- हुन्थे 
+          <Pos,       _,  _,   _>  => root + sreg + "हुनुहुन्थ्यो" ; -- (TODO : हुनुहुन्थ्यो need to Confirm)
+          
+          -- Negative case (TODO)        
+          <Neg, Pers1,   Sg,    _> => root + sreg + "हुन्थेँ" ; -- हुन्थेँ
+          <Neg, Pers1,   Pl,    _> => root + spl + "हुन्थौँ" ; -- हुन्थौँ          
+          <Neg, Pers2_L, Sg, Masc> => root + sreg + "हुन्थिइस्" ; -- हुन्थिइस् ???? G Check
+          <Neg, Pers2_L, Sg, Fem>  => root + sfem + "हुन्थिइस्" ; -- हुन्थिइस्
+          <Neg, Pers2_L, Pl,    _> => root + spl + "हुन्थियौ" ; -- हुन्थियौ / or हुन्थ्यौ (hunx:Tx:yw)
+          <Neg, Pers2_M,  _,    _> => root + spl + "हुन्थियौ" ; -- हुन्थियौ / or हुन्थ्यौ (hunx:Tx:yw)          
+          <Neg, Pers3_L, Sg, Masc> => root + sreg + "हुन्थ्यौ" ; -- हुन्थ्यौ / (थियो ????)
+          <Neg, Pers3_L, Sg, Fem>  => root + sfem + "हुन्थी" ; -- हुन्थी/ (थिई ????)
+          <Neg, Pers3_L, Pl,   _>  => root + spl + "हुन्थे" ; -- हुन्थे / (थिए)
+          <Neg, Pers3_M, Sg, Fem>  => root + sfem + "हुन्थि" ; -- हुन्थि
+          <Neg, Pers3_M,  _,   _>  => root + spl + "हुन्थे" ; -- हुन्थे / (थिए)
+          <Neg,       _,  _,   _>  => root + sreg + "हुनुहुन्‌नथ्यो" -- हुनुहुन्‌नथ्यो (TODO: CONFIRM CORRECT)
+        }
+      };
+      
+{-   
+-- Past Unknown, Perfective aspect, Nonprogressive Mode
+   mkVPstUP : Str -> Str -> VCase -> Polarity -> NPerson -> Number -> Gender -> {s:Str} = 
+     \root, root2, vc, po, pn, n, g ->
+      {s = case vc of {
+           VReg  => (mkVPstHPGen root2 "ेको"  "ेकि"  "ेका"  po pn n g).s ;
+           VIReg => (mkVPstHPGen root2 "एको" "एकि" "एका" po pn n g).s
+           }
+      } ;
+
+   -- mkVPstUP Helper handles both VReg and VIreg cases
+   mkVPstUPGen : Str -> Str -> Str -> Str -> Polarity -> NPerson -> Number -> Gender -> {s:Str} = 
+      \root, sreg, sfem, spl, po, pn, n, g ->
+      {s = case <po, pn, n, g> of {
+          <Pos, Pers1,   Sg, Masc> => root + sreg + "रहेछु" ; -- रहेछु
+          <Pos, Pers1,   Sg, Fem > => root + sfem + "रहेछु" ; -- रहेछु (खाएकिरहेछु)
+          <Pos, Pers1,   Pl,    _> => root + spl + "रहेछौँ" ; -- रहेछौँ          
+          <Pos, Pers2_L, Sg, Masc> => root + sreg + "रहिछस्" ; --रहिछस्
+          <Pos, Pers2_L, Sg, Fem>  => root + sfem + "रहिछस्" ; --रहिछस्
+          <Pos, Pers2_L, Pl,    _> => root + spl + "रहेछौ" ; -- रहेछौ          
+          <Pos, Pers2_M, Sg, Masc> => root + spl + "रहेछौ" ; -- रहेछौ
+          <Pos, Pers2_M, Sg, Fem>  => root + sfem + "रहिछौ" ; -- रहिछौ (छ्यौ ????)
+          <Pos, Pers2_M, Pl,    _> => root + spl + "रहेछौ" ; -- रहेछौ          
+          <Pos, Pers3_L, Sg, Masc> => root + sreg + "रहेछ" ; -- रहेछ
+          <Pos, Pers3_L, Sg, Fem>  => root + sfem + "रहिछ" ; -- रहिछ
+          <Pos, Pers3_L, Pl,   _>  => root + spl + "रहेछन्" ; -- रहेछन्          
+          <Pos, Pers3_M, Sg, Fem>  => root + sfem + "रहिछीन्" ; -- रहिछीन्          
+          <Pos, Pers3_M, Sg, Masc> => root + spl + "रहेछन्" ; -- रहेछन्
+          <Pos, Pers3_M,  _,   _>  => root + spl + "रहेछन्" ; -- रहेछन्
+          <Pos,       _,  _,   _>  => root + sreg + "हुनुहुदोरहेछ" ; -- हुनुहुदोरहेछ/नुभएकोरहेछ(nuBe:korhec)
+          
+          -- Negative Case (TODO)
+          <Neg,       _,  _,   _>  => "टुडु" -- TODO--           
+        }
+      };
+
+-}
+-- Present, Perfective aspect, Nonprogressive Mode
+   mkVPreP : Str -> Str -> VCase -> Polarity -> NPerson -> Number -> Gender -> {s:Str} = 
+     \root, root2, vc, po, pn, n, g ->
+      {s = case vc of {
+           VReg  => (mkVPreGen root2 "ेको"  "ेकि"  "ेका"  po pn n g).s ;
+           VIReg => (mkVPreGen root2 "एको" "एकि" "एका" po pn n g).s
+           }
+      } ;
+   
+   -- mkVPreP helper handles both VReg and VIreg cases
+   mkVPreGen : Str -> Str -> Str -> Str -> Polarity -> NPerson -> Number -> Gender -> {s:Str} = 
+      \root, sreg, sfem, spl, po, pn, n, g ->
+      {s = case <po, pn, n, g> of {
+          <Pos, Pers1,   Sg,    _> => root + sreg + "छु" ;   -- छु 
+          <Pos, Pers1,   Pl,    _> => root + spl + "छौं" ;   -- छौं           
+          <Pos, Pers2_L, Sg, Masc> => root + sreg + "छस्" ; -- छस्
+          <Pos, Pers2_L, Sg, Fem>  => root + sfem + "छेस्" ; -- छेस्      
+          <Pos, Pers2_L, Pl,    _> => root + spl + "छौ" ;    -- छौ 
+          <Pos, Pers2_M, Sg, Fem>  => root + sfem + "छ्यौ" ; --छ्यौ
+          <Pos, Pers2_M,  _,    _> => root + spl + "छौ" ;    -- छौ           
+          <Pos, Pers3_L, Sg, Masc> => root + sreg + "छ" ;  -- छ
+          <Pos, Pers3_L, Sg, Fem>  => root + sfem + "छे" ;  -- छे
+          <Pos, Pers3_L, Pl,   _>  => root + spl + "छन्" ;  -- छन्      
+          <Pos, Pers3_M, Sg, Fem>  => root + sfem + "छिन्" ;  -- छिन्
+          <Pos, Pers3_M,  _,   _>  => root + spl + "छन्" ;  -- छन्      
+          <Pos,       _,  _,   _>  => root + sreg + "हुनुहुन्छ" ; -- हुनुहुन्छ
+          
+          -- Negative Case (TODO)
+          <Neg,       _,  _,   _>  => "टुडु" -- TODO--     
+          }
+      };
+      
+ 
+-- Future Definitive, Perfective aspect, Nonprogressive Mode
+   mkVFutDefP : Str -> Str -> VCase -> Polarity -> NPerson -> Number -> Gender -> {s:Str} = 
+     \root, root2, vc, po, pn, n, g ->
+      {s = case vc of {
+           VReg  => (mkVFutDefGen root2 "ेको"  "ेकि"  "ेका"  po pn n g).s ;
+           VIReg => (mkVFutDefGen root2 "एको" "एकि" "एका" po pn n g).s
+           }
+        } ;
+      
+      
+   -- mkVFutDef helper handles both VReg and VIreg cases
+   mkVFutDefGen : Str -> Str -> Str -> Str -> Polarity -> NPerson -> Number -> Gender -> {s:Str} = 
+      \root, sreg, sfem, spl, po, pn, n, g ->
+      {s = case <po, pn, n, g> of {
+          <Pos, Pers1,   Sg,    _> => root + sreg + ("हुने"+"छु") ; -- हुनेछु
+          <Pos, Pers1,   Pl,    _> => root + spl + "हुनेछौँ" ; -- हुनेछौँ           
+          <Pos, Pers2_L, Sg, Masc> => root + sreg + "हुनेछस्" ; -- हुनेछस्
+          <Pos, Pers2_L, Sg, Fem>  => root + sfem + "हुनेछेस्" ; -- हुनेछेस्
+          <Pos, Pers2_L, Pl,    _> => root + spl + "हुनेछौ" ; -- हुनेछौ
+          <Pos, Pers2_M, Sg, Fem>  => root + sfem + "हुनेछ्यौ" ; -- हुनेछ्यौ
+          <Pos, Pers2_M,  _,    _> => root + spl + "हुनेछौ" ; -- हुनेछौ          
+          <Pos, Pers3_L, Sg, Masc> => root + sreg + "हुनेछ" ;  -- हुनेछ
+          <Pos, Pers3_L, Sg, Fem>  => root + sfem + "हुन्छे" ;  -- हुन्छे
+          <Pos, Pers3_L, Pl,   _>  => root + spl + "हुनेछन्" ;  -- हुनेछन्      
+          <Pos, Pers3_M, Sg, Fem>  => root + sfem + "हुनेछिन्" ;  -- हुनेछिन्
+          <Pos, Pers3_M,  _,   _>  => root + spl + "हुनेछन्" ;  -- हुनेछन्      
+          <Pos,       _,  _,   _>  => root + sreg + "हुनुहुनेछ" ; -- हुनुहुनेछ
+          
+          -- Negative Case (TODO)
+          <Neg,       _,  _,   _>  => "टुडु" -- TODO--     
+        }
+      };
+
+
+-- Future Nondefinitive, Perfective aspect, Nonprogressive Mode
+   mkVFutNDefP : Str -> Str -> VCase -> Polarity -> NPerson -> Number -> Gender -> {s:Str} = 
+     \root, root2, vc, po, pn, n, g ->
+      {s = case vc of {
+           VReg  => (mkVFutDefGen root2 "ेको"  "ेकि"  "ेका"  po pn n g).s ;
+           VIReg => (mkVFutDefGen root2 "एको" "एकि" "एका" po pn n g).s
+           }
+      } ;      
+      
+   -- Helper mkVFutNDef handles both VReg and VIreg cases
+   mkVFutNDefGen : Str -> Str -> Str -> Str -> Polarity -> NPerson -> Number -> Gender -> {s:Str} = 
+     \root, sreg, sfem, spl, po, pn, n, g ->
+      {s = case <po, pn, n, g> of {
+           <Pos, Pers1,   Sg,    _> => root + sreg + "हुँला" ; -- हुँला
+           <Pos, Pers1,   Pl,    _> => root + spl + "हौँलाँ" ; -- हौँलाँ          
+           <Pos, Pers2_L, Sg, Masc> => root + sreg + "होलास्" ; -- होलास्
+           <Pos, Pers2_L, Sg, Fem>  => root + sfem + "होलिस्" ; -- होलिस्
+           <Pos, Pers2_L, Pl,    _> => root + spl + "हौला" ; -- हौला
+           <Pos, Pers2_M, Sg, Fem>  => root + sfem + "होलि" ; -- होलि
+           <Pos, Pers2_M,  _,    _> => root + spl + "हौला" ; -- हौला          
+           <Pos, Pers3_L, Sg, Masc> => root + sreg + "होला" ; -- होला
+           <Pos, Pers3_L, Sg, Fem>  => root + sfem + "होली" ; -- होली
+           <Pos, Pers3_L, Pl,   _>  => root + spl + "होलान्" ; -- होलान्
+           <Pos, Pers3_M, Sg, Fem>  => root + sfem + "होलिन्" ; -- होलिन्
+           <Pos, Pers3_M,  _,   _>  => root + spl + "होलान्" ; -- होलान्
+           <Pos,       _,  _,   _>  => root + sreg + "हुनुहोला" ; -- हुनुहोला
+          
+          -- Negative Case (TODO)
+          <Neg,       _,  _,   _>  => "टुडु" -- TODO--     
+        }
+      };
+      
+  -- TODO - Refactor
+  IntPronForm = {s: Case => Str};
+  mkIntPronForm : (x1,x2,x3,x4:Str) -> IntPronForm =
+   \y1,y2,y3,y4 -> {
+    s = table {
+	    Nom => y1;
+        _   => y2
+		}
+	};
+	   
+ }
diff --git a/lib/src/nepali/NounNep.gf b/lib/src/nepali/NounNep.gf
new file mode 100644
--- /dev/null
+++ b/lib/src/nepali/NounNep.gf
@@ -0,0 +1,165 @@
+concrete NounNep of Noun = CatNep ** open ResNep, Prelude in {
+
+  flags optimize = all_subs ;
+  flags coding=utf8 ;
+
+  lin
+ 
+    DetCN det cn = {
+      s = \\c => detcn2NP det cn c det.n  ;
+      a = toAgr det.n cn.h cn.g ;
+      t = cn.t 
+      } ;
+
+    UsePN pn = {s = \\c => toNP pn.s c ; a = toAgr Sg pn.h pn.g ; t = pn.t } ;
+    
+    UsePron p = {s = \\c => np2pronCase p.s c p.a ; a = p.a ; t = Living } ;
+
+    PredetNP pred np = {
+      s = \\c => pred.s ++ np.s ! c ;
+      a = np.a ;
+      t = np.t 
+      } ;
+
+    -- Neds to change this, 
+    -- needs to check for root ending case, now works for root2 cases only
+    PPartNP np v2 = {
+      s = \\c => case (fromAgr np.a).n of {
+          Sg =>  case (fromAgr np.a).g of {
+                  Masc => np.s ! c ++ v2.s ! Root ++ eko ;
+                  Fem  => np.s ! c ++ v2.s ! Root ++ eki 
+                } ; 
+          Pl =>  np.s ! c ++ v2.s ! Root ++ eka
+         } ;
+      a = np.a ;
+      t = np.t 
+      } ;
+    
+    RelNP np rs = {
+	  s = \\c => np.s ! c  ++ "," ++ rs.s ! np.a ;
+      a = np.a ;
+      t = np.t 
+      } ;
+
+    AdvNP np adv = {
+      s = \\c => np.s ! c ++ adv.s ; 
+      a = np.a ;
+      t = np.t
+      } ;
+
+    DetNP det = {
+      s = \\c => det2NP det c ; -- case
+      a = agrP3 Masc Sg ;
+      t = NonLiving 
+      } ;
+    
+    -- ?? quant
+    DetQuantOrd quant num ord = {
+      s = \\n,g => quant.s ! n ! g ++ ord.s ++ num.s ; 
+      n = num.n
+      } ;
+
+    DetQuant quant num = {
+      s = \\n,g => quant.s ! num.n ! g ++ num.s;
+	  n = num.n
+      } ;
+      
+    NumSg = {s = []; n = Sg} ;
+    NumPl = {s = []; n = Pl} ;
+
+    NumCard n = n ** {hasCard = True} ;
+
+    PossPron p = {s = \\_,_ => p.ps } ;
+    
+    NumDigits n = {s = n.s ! NCard ; n = n.n} ;
+    OrdDigits n = {s = n.s ! NOrd  ; n = n.n} ;
+
+    NumNumeral numeral = {s = numeral.s ! NCard; n = numeral.n} ;
+    OrdNumeral numeral = {s = numeral.s ! NOrd ; n = numeral.n} ;
+
+    AdNum adn num = {s = adn.s ++ num.s ; n = num.n} ;
+
+    OrdSuperl a = {s = sbvn ++ a.s ! Sg ! Masc  ; n = Sg} ;
+
+    DetArtSg art cn = {
+      s = \\c => art.s ++ toNP (cn.s ! Sg) c ;
+      a = Ag cn.g Sg cn.h
+      } ;
+
+    DetArtPl art cn = {
+      s = \\c => art.s ++ toNP (cn.s ! Pl) c ;
+      a = toAgr Pl cn.p cn.g
+      } ;
+
+    DefArt = {s = \\_,_ => [] } ;
+    
+    IndefArt = {s = \\_,_ => [] } ;
+
+    MassNP cn = {
+        s = \\c => toNP (cn.s ! Sg) c ; 
+        a = toAgr Sg cn.h cn.g ; 
+        t = cn.t 
+        } ; 
+
+    UseN n = n ;
+    
+    UseN2 n2 = { s = n2.s  ; g = n2.g ; t = n2.t ; h = n2.h };
+
+    Use2N3 f = {
+      s = f.s ;
+      g = f.g ;
+      t = f.t ;
+      h = f.h ;
+      c2 = f.c2 ;
+      c3 = f.c3
+      } ;
+
+    Use3N3 f = {
+      s = f.s ;
+      g = f.g ;
+      t = f.t ;
+      h = f.h ;
+      c2 = f.c2 ;
+      c3 = f.c3
+      } ;
+
+    ComplN2 f np = {
+       s = \\n,c => np.s ! NPC Nom ++ f.c2 ++ f.s ! n ! c ;
+	   g = f.g ;
+       t = np.t ;
+       --h = x.h 
+       h = (fromAgr np.a).p
+	   } ;
+
+    ComplN3 f x = {
+      s = \\n,c =>  x.s ! NPObj ++ f.c3 ++ f.c4 ++ f.s ! n ! Nom  ;
+      g = f.g ;
+      t = f.t ;
+      h = f.h ;
+      c2 = f.c2 ;
+      c3 = f.c3
+      } ;
+    
+    AdjCN ap cn = {
+      s = \\n,c => ap.s ! n ! cn.g  ++ cn.s ! n ! c ;
+      g = cn.g ; 
+      t = cn.t ;
+      h = cn.h
+      } ;
+
+    RelCN cn rs = {
+      s = \\n,c => cn.s ! n ! c ++ rs.s ! agrP3 cn.g n ;
+      g = cn.g ;
+      t = cn.t ;
+      h = cn.h
+      } ;
+    
+    AdvCN cn ad = {s = \\n,c => cn.s ! n ! c ++ ad.s  ; g = cn.g ; t = cn.t ; h = cn.h} ;
+    --Prelude.glue 
+    SentCN cn sc = {s = \\n,c => sc.s ++ "लाइ" ++ cn.s ! n ! c ; g = cn.g ; t = cn.t ; h = cn.h} ;
+    -- Changed to fix 'reason to sleep' Bug
+    -- SentCN cn sc = {s = \\n,c => cn.s ! n ! c ++ sc.s ; g = cn.g ; t = cn.t ; h = cn.h} ;
+    
+    ApposCN cn np = {s = \\n,c => cn.s ! n ! Nom ++ np.s ! NPC c ; g = cn.g ; t = cn.t ; h = cn.h} ;
+
+}
diff --git a/lib/src/nepali/NumeralNep.gf b/lib/src/nepali/NumeralNep.gf
new file mode 100644
--- /dev/null
+++ b/lib/src/nepali/NumeralNep.gf
@@ -0,0 +1,120 @@
+concrete NumeralNep of Numeral = CatNep ** open ResNep, Prelude in {
+-- By Harald Hammarstroem
+-- Modification for Nepali by Dinesh Simkhada and Shafqat Virk - 2011
+ flags coding=utf8 ;
+
+
+param DForm = unit | ten ;
+param DSize = sg | r2 | r3 | r4 | r5 | r6 | r7 | r8 | r9 ;
+param Size = singl | less100 | more100 ; 
+
+oper LinDigit = {s : DForm => Str ; size : DSize ; n : Number} ;
+
+
+lincat Dig = {s:Str ; n : Number} ;
+lincat Digit = LinDigit ;
+lincat Sub10 = {s : DForm => Str ; size : DSize ; n : Number} ;
+lincat Sub100 = {s : Str ; size : Size ; n : Number} ;
+lincat Sub1000 = {s : Str ; s2 : Str ; size : Size ; n : Number } ; 
+lincat Sub1000000 = {s : Str ; n : Number } ;
+
+lin num x0 = 
+    {s = table {
+          NCard => x0.s ; 
+          NOrd  => Prelude.glue x0.s "ौँ"  -- need to use mkOrd x0.s but it gives linking error 
+          };
+       n = x0.n
+    } ; 
+
+
+
+oper mkNum : Str -> Str -> DSize -> LinDigit = 
+  \do -> \bis -> \sz ->  
+  {s = table {unit => do ; ten => bis } ; 
+   size = sz ; n = Pl} ;
+
+lin n2 = mkNum "दुई" "बीस"     r2 ;
+lin n3 = mkNum "तीन"  "तीस"     r3 ;
+lin n4 = mkNum "चार"  "चालीस"   r4 ;
+lin n5 = mkNum "पाँच" "पचास"    r5 ;
+lin n6 = mkNum "छ"    "साठी"    r6 ; 
+lin n7 = mkNum "सात"  "सत्तरी" r7 ;  -- सत्तरी
+lin n8 = mkNum "आठ"   "असी"     r8 ;
+lin n9 = mkNum "नौ"   "नब्बे"  r9 ; 
+
+oper 
+  mkR : (a1,_,_,_,_,_,_,_,a9 : Str) -> DSize => Str = 
+   \a1,a2,a3,a4,a5,a6,a7,a8,a9 -> table {
+     sg => a1 ; 
+     r2 => a2 ;
+     r3 => a3 ;
+     r4 => a4 ;
+     r5 => a5 ;
+     r6 => a6 ;
+     r7 => a7 ;
+     r8 => a8 ;
+     r9 => a9
+    } ; 
+
+  -- REF http://dsal.uchicago.edu/dictionaries/schmidt/
+  -- Ordinals from One - Hundred are irregular
+  rows : DSize => DSize => Str = table {
+    sg => mkR "एघार"       "एक्काइस" "एकतीस"   "एकचालीस"  "एकाउन्‍न"   "एकसठ्ठी"  "एकहत्तर"  "एकासी"   "एकान्‍नब्बे" ;  
+    r2 => mkR "बाह्र"      "बाइस"      "बत्तीस"  "बयालीस"    "बाउन्‍न"     "बैसठ्ठी"   "बहत्तर"    "बयासी"    "बयान्‍नब्बे" ; 
+    r3 => mkR "तेह्र"      "तेइस"     "तेत्तीस"  "त्रिचालीस" "त्रिपन्‍न" "त्रिसठ्ठी" "त्रिहत्तर" "त्रियासी" "त्रियान्‍नब्बे" ;
+    r4 => mkR "चौध"         "चौबीस"     "चौंतीस"    "चवालीस"    "चवन्‍न"      "चौसठ्ठी"   "चौहत्तर"   "चौरासी"   "चौरान्‍नब्बे"; 
+    r5 => mkR "पन्ध्र"    "पच्चीस"   "पैंतीस"    "पैंतालीस"  "पचपन्‍न"     "पैंसठ्ठी"  "पचहत्तर"   "पचासी"    "पन्चान्‍नब्बे" ; 
+    r6 => mkR "सोह्र"      "छब्बीस"   "छत्तीस"   "छयालीस"    "छपन्‍न"      "छैंसठ्ठी"  "छयहत्तर"   "छयासी"    "छयान्‍नब्बे" ; 
+    r7 => mkR "सत्र"       "सत्ताइस" "सौंतीस"    "सतचालीस"   "सन्ताउन्‍न" "सतसठ्ठी"   "सतहत्तर"   "सतासी"    "सन्तान्‍नब्बे" ; 
+    r8 => mkR "अठार"        "अठ्ठाइस" "अठतीस"     "अठतालीस"   "अन्ठाउन्‍न" "अठसठ्ठी"   "अठहत्तर"   "अठासी"    "अन्ठान्‍नब्बे" ;
+    r9 => mkR "उन्‍नाइस" "उनन्तीस"  "उनन्चालीस" "उनन्पचास" "उनन्साठी"    "उनन्सत्तरी" "उनासी"    "उनान्‍नब्बे" "उनान्सय"  
+  } ;
+
+oper ss : Str -> {s : Str} = \s -> {s = s} ;
+
+lin pot01 = {s = table {unit => "एक" ; _ => "दमय" } ; size = sg ; n = Sg} ;
+lin pot0 d = d ; 
+lin pot110 = {s = "दस" ; size = less100 ; n = Pl} ; 
+lin pot111 = {s = rows ! sg ! sg ; size = less100 ; n = Pl} ;
+lin pot1to19 d = {s = rows ! d.size ! sg ; size = less100 ; n = d.n} ;
+lin pot0as1 n = {s = n.s ! unit ; size = table {sg => singl ; _ => less100} ! n.size ; n = n.n } ;
+
+lin pot1 d = {s = d.s ! ten ; size = less100 ; n = d.n} ;
+lin pot1plus d e = {s = rows ! e.size ! d.size ; size = less100 ; n = d.n} ;
+
+lin pot1as2 n = {s = n.s ; s2 = "दमय" ; size = n.size ; n = n.n} ;
+lin pot2 d = {s = (mksau (d.s ! unit) d.size) ; 
+              s2 = d.s ! unit ++ "लाख" ; size = more100 ; n = d.n} ;
+lin pot2plus d e = 
+  {s = (mksau (d.s ! unit) d.size) ++ e.s ; 
+   s2 = (d.s ! unit) ++ "लाख" ++ (mkhazar e.s e.size) ; 
+   size = more100 ; n = d.n} ;
+
+lin pot2as3 n = {s = n.s ; n = n.n} ;
+lin pot3 n = {s = table { singl => ekhazar ;
+                          less100 => n.s ++ "हजार" ; 
+                          more100 => n.s2 } ! n.size ; n = n.n} ;
+lin pot3plus n m = 
+  {s = table {singl => ekhazar ;
+              less100 => n.s ++ "हजार" ; 
+              more100 => n.s2 } ! n.size ++ m.s ; n = n.n} ;
+
+lin D_0 = { s = "०" ; n = Sg};
+lin D_1 = { s = "१" ; n = Sg};
+lin D_2 = { s = "२" ; n = Pl};
+lin D_3 = { s = "३" ; n = Pl};
+lin D_4 = { s = "४" ; n = Pl};
+lin D_5 = { s = "५" ; n = Pl};
+lin D_6 = { s = "६" ; n = Pl};
+lin D_7 = { s = "७" ; n = Pl};
+lin D_8 = { s = "८" ; n = Pl};
+lin D_9 = { s = "९" ; n = Pl};
+
+lin IDig d = { s = \\_ => d.s ; n = d.n} ;
+
+lin IIDig d dg = { s = \\df => Prelude.glue d.s (dg.s ! df) ; n = Pl }; 
+
+oper ekhazar : Str = variants {"एक" ++ "हजार" ; "हजार"} ; 
+oper mkhazar : Str -> Size -> Str = \s -> \sz -> table {singl => ekhazar ; _ => s ++ "हजार"} ! sz ;
+oper mksau : Str -> DSize -> Str = \s -> \sz -> table {sg => "एक" ++ "सय" ; _ => s ++ "सय"} ! sz ;
+}
diff --git a/lib/src/nepali/ParadigmsNep.gf b/lib/src/nepali/ParadigmsNep.gf
new file mode 100644
--- /dev/null
+++ b/lib/src/nepali/ParadigmsNep.gf
@@ -0,0 +1,250 @@
+--# -path=.:../abstract:../../prelude:../common
+--
+----1 Lexical Paradigms
+
+resource ParadigmsNep = open 
+  Predef, 
+  Prelude, 
+  MorphoNep,
+  CatNep,
+  ResNep
+  in {
+
+--2 Parameters 
+
+oper
+  masculine  : Gender ;
+  feminine   : Gender ;
+  singular   : Number ;
+  plural     : Number ;
+  human      : NType ;
+  profession : NType ;
+  living     : NType ;
+  
+  singular = Sg ; plural = Pl;
+
+  masculine = Masc ; feminine = Fem ; 
+  human = Living ; profession = Living ; living = Living ; 
+
+--2 Nouns
+  -- For regular nouns takes Masc as default gender
+  regN = overload {
+     -- If no parameter is passed noun will take 
+     -- Animacy : Nonliving, Honor : 3rd person Low grade honorific
+     regN  : Str -> N = \s -> mkNReg s NonLiving Pers3_L ** {lock_N= <>} ; 
+     
+     -- Animacy : Nonliving by default, Honor : explicitely given, 
+     regN  : Str -> NPerson -> N = \s,h -> mkNReg s NonLiving h ** {lock_N= <>} ; 
+     
+     -- Animacy : explicitely given, Honor : 3rd person Low grade honorific by default
+     regN  : Str -> NType -> N = \s,t -> mkNReg s t Pers3_L ** {lock_N= <>} ;
+     
+     -- Animacy, Honor both exlicutely given
+     regN  : Str -> NType -> NPerson -> N = \s,t,h -> mkNReg s t h ** {lock_N= <>} ;
+     
+     } ;
+     
+  -- For femenine nouns
+  mkNF = overload {
+    mkNF : Str -> N = \s -> mkNFem s NonLiving Pers3_L ** {lock_N= <>} ;
+    
+    mkNF : Str -> NPerson -> N = \s,h -> mkNFem s NonLiving h ** {lock_N= <>} ;
+    
+    mkNF : Str -> NType -> N = \s,t -> mkNFem s t Pers3_L ** {lock_N= <>} ;
+    
+    mkNF : Str -> NType -> NPerson -> N = \s,t,h -> mkNFem s t h ** {lock_N= <>} ;
+    } ;
+  
+  -- For uncountable nouns, could be both Masc or Fem Gender
+  mkNUC = overload {
+    mkNUC : Str -> N = 
+      \s -> mkNUnc s Masc NonLiving Pers3_L ** {lock_N= <>} ; 
+    
+    mkNUC : Str -> Gender -> N = 
+      \s,g -> mkNUnc s g NonLiving Pers3_L ** {lock_N= <>} ; 
+    
+    mkNUC : Str -> Gender -> NType -> N = 
+      \s,g,t -> mkNUnc s g t Pers3_L ** {lock_N= <>} ; 
+    
+    mkNUC : Str -> Gender -> NType -> NPerson -> N = 
+      \s,g,t,h -> mkNUnc s g t h ** {lock_N= <>} ; 
+    } ;
+  --mkNUC : Str -> NType -> Gender -> N = \s,t,g -> mkNUnc s g t ** {lock_N= <>} ; 
+
+  {-
+  mkN2 = overload {
+    mkN2 : N -> Prep -> Str -> N2 =
+        \n,p,c -> n ** {lock_N2 = <> ; c2 = p.s ; c3 = c.s } ; 
+        
+    mkN2 : N -> Prep -> Str -> NType -> N2 =
+        \n,p,c,t -> n ** {lock_N2 = <> ; c2 = p.s ; c3 = c } ;         
+        
+    mkN2 : N -> Prep -> Str -> NType -> NPerson -> N2 =
+        \n,p,c,t,h -> n ** {lock_N2 = <> ; c2 = p.s ; c3 = c} ; 
+   } ;
+   -}
+   
+  mkN2 : N -> Prep -> Str -> N2;
+  mkN2 = \n,p,c -> n ** {lock_N2 = <> ; c2 = p.s ; c3 = c} ; 
+  
+  {-
+  mkN3 = overload {
+    mkN3 : N -> Prep -> Prep -> Str-> N3 =
+        \n,p,q,r -> n ** {lock_N3 = <> ; c2 = p.s ; c3 = q.s ; c4 = r} ;
+        
+    mkN3 : N -> Prep -> Prep -> Str-> NType -> N3 =
+        \n,p,q,r,t -> n ** {lock_N3 = <> ; c2 = p.s ; c3 = q.s ; c4 = r} ;
+  } ;
+  -}
+  
+  mkN3 : N -> Prep -> Prep -> Str-> N3 ;
+  mkN3 = \n,p,q,r -> n ** {lock_N3 = <> ; c2 = p.s ; c3 = q.s ; c4 = r} ;
+  
+-- Compound Nouns  
+
+  mkCmpdNoun : Str -> N -> N
+     = \s,noun -> {s =\\n,c => s ++ noun.s ! n ! c ; g = noun.g ; t = noun.t ; h = noun.h ; lock_N = <>};
+ 
+
+-- Proper names     
+  mkPN = overload {
+    mkPN : Str -> PN =
+      \s -> let n = regN1 s Masc NonLiving Pers2_M in {s = n.s ! Sg ; g = n.g ; t = n.t ; h = n.h ; lock_PN = <>} ;
+    
+    mkPN : Str -> Gender -> NPerson -> PN =
+      \s,g,h -> let n = regN1 s g NonLiving h in {s = n.s ! Sg ; g = n.g ; t = n.t ; h = n.h ; lock_PN = <>} ;
+     
+    mkPN : Str -> Gender -> NType -> NPerson -> PN =
+      \s,g,t,h -> let n = regN1 s g t h in {s = n.s ! Sg ; g = n.g ; t = n.t ; h = n.h ; lock_PN = <>} ;
+  } ;
+  
+     
+
+-- Personal Pronouns     
+  mkPron = overload {
+    mkPron : Str -> Str -> Number -> Gender -> NPerson -> Pron = 
+      \s,s1,nu,gn,pn -> let n = makePronReg s in {s = n.s ; ps = s1 ; a = toAgr nu pn gn ; lock_Pron = <> } ;
+      
+    mkPron : (x1,_,_,_,_,_,x7 : Str) -> Number -> Gender -> NPerson -> Pron =
+      \x1,x2,x3,x4,x5,x6,x7,nu,gn,pn -> 
+           let n = makePron x1 x2 x3 x4 x5 x6 in {s = n.s ; ps = x7 ; a = toAgr nu pn gn ; lock_Pron = <> } ;
+  } ;
+  
+{-
+-- Demonstration Pronouns     
+  demoPN : Str -> Str -> Str -> Quant =
+    \s1,s2,s3 -> let n = makeDemonPronForm s1 s2 s3 in {s = n.s ; a = defaultAgr ; lock_Quant = <>};
+-}
+--  Determiner    
+   mkDet = overload {
+     mkDet : (s1,s2:Str) -> Number -> Det =
+       \s1,s2,nb -> let dt = makeDet s1 s1 s2 s2 nb in {s = dt.s ; n = nb ; lock_Det = <>} ;
+     
+     mkDet : (s1,s2,s3,s4:Str) -> Number -> Det =
+       \s1,s2,s3,s4,nb -> let dt = makeDet s1 s2 s3 s4 nb in {s = dt.s ; n = nb ; lock_Det = <>} ;
+     } ;
+
+-- IDet     
+   mkIDetn : (s1,s2:Str) -> Number -> IDet =
+      \s1,s2,nb -> let dt = makeIDet s1 s2 in {s = dt.s ; n = nb ; lock_IDet = <>} ;
+   
+-- Intergative pronouns    
+   mkIP : (x1,x2,x3,x4:Str) -> Number -> IP =
+     \s1,s2,s3,s4,n -> let p = mkIntPronForm s1 s2 s3 s4 in { s = p.s ; n = n ; lock_IP = <>} ; 
+
+  
+--2 Adjectives
+
+  mkA = overload {
+    mkA : Str-> A 
+      = \s -> mkAdjnp s ** {lock_A = <>} ;
+	mkA : Str -> Str -> A2
+	  = \a,c -> let n = mkAdjnp a in {s = n.s; c2 = c} ** {lock_A2 = <>} ;
+    } ;
+
+--2 Verbs
+
+  mkV : Str -> V = 
+    \s -> mkVerb s ** {lock_V = <>} ;
+
+  mkV2 = overload {
+    mkV2 : Str -> V2 
+      = \s -> mkVerb s **  {c2 = {s = [] ; c = VTrans} ; lock_V2 = <>} ;
+    mkV2 : V -> V2 
+      = \v -> v ** {c2 = {s = [] ; c = VTrans} ; lock_V2 = <>} ;
+    mkV2 : V -> Str -> V2 
+      = \v, p -> v ** {c2 = {s = p ; c = VTrans} ; lock_V2 = <>} ;
+    } ;
+  
+  mkV3 : V -> Str -> Str -> V3 ;
+  mkV3 v p q = v ** { c2 = p ; c3 = q ; lock_V3 = <>} ;
+  
+  mkV2V : V -> Str -> Str -> Bool -> V2V ;
+  mkV2V v s1 s2 b = v ** {isAux = b ; c1 = s1 ; c2 = s2 ; lock_V2V = <>} ;
+  
+-- compund verbs
+  compoundV = overload {
+    compoundV : Str -> V -> V = \s,v -> {s = \\vf => s ++ v.s ! vf ; lock_V = <>} ;
+    compoundV : Str -> V2 -> V = \s,v -> {s = \\vf => s ++ v.s ! vf ; lock_V = <>} ;
+    };
+ 
+
+----2 Adverbs
+  mkAdv : Str -> Adv ; -- e.g. today  
+  mkAdv x = lin Adv (ss x) ;
+  
+  mkAdV : Str -> AdV ; -- e.g. always
+  mkAdV x = lin AdV (ss x) ;
+  
+-- Adverbs modifying adjectives and sentences can also be formed.
+
+  mkAdA : Str -> AdA ; -- e.g. quite
+  mkAdA x = lin AdA (ss x) ;
+
+-- Adverbs modifying numerals
+
+  mkAdN : Str -> AdN ; -- e.g. approximately
+  mkAdN x = lin AdN (ss x) ;
+  
+--2 Prepositions
+--
+-- A preposition as used for rection in the lexicon, as well as to
+-- build $PP$s in the resource API, just requires a string.
+  mkPrep : Str -> Prep ;
+  mkPrep p = lin Prep (ss p) ;
+  
+  noPrep : Prep ;
+  noPrep = mkPrep [] ;
+
+    
+--3 Determiners and quantifiers
+    
+  mkQuant = overload  {
+    --mkQuant : Pron -> Quant = \p -> {s = \\_,_,c => p.s!c ; lock_Quant = <>};    
+    mkQuant : (s1,s2,s3,s4:Str) -> Quant = 
+      \sm,sf,pm,pf -> {s = (makeQuant sm sf pm pf).s ; lock_Quant = <>};
+    
+    mkQuant : (s1,s2:Str) -> Quant = 
+      \sg,pl -> {s = (makeQuant sg sg pl pl).s ; lock_Quant = <>} ;
+    } ;
+
+
+{- 
+--2 Conjunctions
+  mkConj : overload {
+    mkConj : Str -> Conj ;                  -- and (plural agreement)
+    mkConj : Str -> Number -> Conj ;        -- or (agrement number given as argument)
+    mkConj : Str -> Str -> Conj ;           -- both ... and (plural)
+    mkConj : Str -> Str -> Number -> Conj ; -- either ... or (agrement number given as argument)
+  } ;
+ mkConj = overload {
+    mkConj : Str -> Conj = \y -> mk2Conj [] y plural ;
+    mkConj : Str -> Number -> Conj = \y,n -> mk2Conj [] y n ;
+    mkConj : Str -> Str -> Conj = \x,y -> mk2Conj x y plural ;
+    mkConj : Str -> Str -> Number -> Conj = mk2Conj ;
+  } ;
+
+  mk2Conj : Str -> Str -> Number -> Conj = \x,y,n -> 
+    lin Conj (sd2 x y ** {n = n}) ;  
+-}
+}
diff --git a/lib/src/nepali/PhraseNep.gf b/lib/src/nepali/PhraseNep.gf
new file mode 100644
--- /dev/null
+++ b/lib/src/nepali/PhraseNep.gf
@@ -0,0 +1,39 @@
+concrete PhraseNep of Phrase = CatNep ** open Prelude, ResNep in {
+  
+  flags coding = utf8 ;
+
+  lin
+    PhrUtt pconj utt voc = {s = pconj.s ++ utt.s ++ voc.s} ;
+
+    UttS s = s ;
+    UttQS qs = {s = qs.s ! QDir} ;
+    
+    -- be a man -> (मन्छे हउ)
+    -- issue in mkPhr-Imp-Phr
+    --          mkPhr-PConj-Utt-Voc-Phr
+    -- Need to diff between singularImpForm-ImpForm
+    --                      pluralImpForm-ImpForm and above cases
+    UttImpSg pol imp = {s = pol.s ++ imp.s ! contrNeg True pol.p ! ImpF Sg False ++ "होउ"} ;
+    
+    UttImpPl pol imp = {s = pol.s ++ imp.s ! contrNeg True pol.p ! ImpF Pl False ++ "हऔ"} ;
+    
+    UttImpPol pol imp = {s = pol.s ++ imp.s ! contrNeg True pol.p ! ImpF Sg True ++ "होउ"} ;
+
+    UttIP ip = {s = ip.s ! Nom} ; --- Acc also
+    UttIAdv iadv = iadv ;
+    UttNP np = {s = np.s ! NPC Nom} ;
+        
+    UttVP vp = {s = vp.ad ++ vp.obj.s  ++ vp.comp ! (agrP3 Masc Sg) ++ (vp.s ! Inf).inf ++ vp. embComp} ;
+    
+    UttAdv adv = {s = adv.s } ;
+	UttCN cn = {s = cn.s ! Sg ! Nom};
+    UttCard n = n ;
+    UttAP ap = {s = ap.s ! Sg ! Masc } ;
+
+    NoPConj = {s = []} ;
+    PConjConj conj = {s = conj.s2} ; 
+
+    NoVoc = {s = []} ;
+    VocNP np = {s = np.s ! NPC Nom} ;
+
+}
diff --git a/lib/src/nepali/QuestionNep.gf b/lib/src/nepali/QuestionNep.gf
new file mode 100644
--- /dev/null
+++ b/lib/src/nepali/QuestionNep.gf
@@ -0,0 +1,95 @@
+concrete QuestionNep of Question = CatNep ** open ResNep, Prelude in {
+  
+  flags optimize=all_subs ;
+  coding = utf8;
+
+  lin
+
+    QuestCl cl = {
+      s = \\t,p,qf => 
+         case qf of { 
+	        QDir   => cl.s ! t ! p ! OQuest;
+            QIndir => "येदि" ++ cl.s ! t ! p ! ODir
+			}
+		 } ;	  
+
+    QuestVP qp vp = 
+       let cl  = mkSClause ("") (Ag Masc qp.n Pers3_M) vp; -- Pers3_M
+           qp1 = qp.s ! Nom;
+           qp2 = qp.s ! Ins
+           in { s = \\t,p,o => 
+              case t of {
+-- 	           VPSmplPast => qp2 ++ cl.s ! t ! p ! ODir ;
+	           _          => qp1 ++ cl.s ! t ! p ! ODir
+               }
+			} ; 
+
+
+    QuestSlash ip slash = 
+      let ip1 = ip.s ! Nom;
+          ip2 = ip.s ! Ins
+          in {
+          s = \\t,p,o => case t of { 
+--            VPSmplPast => ip2 ++ slash.s ! t ! p ! ODir ;
+              _          => ip2 ++ slash.s ! t ! p ! ODir
+            }
+        };
+
+    QuestIAdv iadv cl = { 
+        s = \\t,p,_ => iadv.s ++ cl.s ! t ! p ! ODir;
+        } ;
+
+    QuestIComp icomp np = 
+     let cl =  mkSClause (np.s ! NPC Nom ++ icomp.s) np.a (predAux NonLiving) ;--(predAux np.t); to test mkQCl-IAdv-NP-QCl                     
+	   in {                                                                    -- eg उनी कहाँ छिन् - (छिन् - NonLiving case) 
+       s = \\t,p,qf => case qf of { 
+	      QDir   => cl.s ! t ! p ! ODir;
+          QIndir => cl.s ! t ! p ! ODir
+		  }
+		};
+
+    PrepIP p ip = {s = ip.s ! ResNep.Nom ++ p.s } ; -- case need to be confirmed
+
+    AdvIP ip adv = {
+      s = \\c => adv.s  ++ ip.s ! c ;
+      n = ip.n;
+      g = ip.g;
+      } ;
+ 
+    IdetCN idet cn = {
+      s = \\c => idet.s ! Masc++ cn.s ! idet.n ! c ; 
+	  n = idet.n;
+      } ;
+
+    IdetIP idet = {
+      s = \\_ => idet.s ! Masc ; 
+      n = idet.n;
+      } ;
+
+    IdetQuant iqant num = {
+      s =\\_ => iqant.s ! num.n ++ num.s ;
+      n = num.n ;
+      } ;
+
+    CompIAdv a = a ;
+    CompIP p = ss (p.s ! Nom) ;
+    AdvIAdv i a = {s = i.s ++ a.s} ;
+    AdvQVP vp iadv = insertObj (\\_ => iadv.s) vp ;
+    AddAdvQVP qvp iadv = insertObj (\\_ => iadv.s) qvp ;
+    ComplSlashIP vpslash ip = insertObj (\\_ => ip.s ! Nom) vpslash ;
+    
+   --QuestQVP      : IP -> QVP -> QCl ;       -- who buys what where
+   QuestQVP ip qvp = 
+     let cl  = mkSClause ("") (Ag Masc ip.n Pers3_M) qvp ; -- Pers3_M
+         qp1 = ip.s ! Nom ;
+         qp2 = ip.s ! Ins
+         in { s = \\t,p,o => 
+            case t of {
+-- 	        VPSmplPast => qp2 ++ cl.s ! t ! p ! ODir ;
+	        _          => qp1 ++ cl.s ! t ! p ! ODir
+            }
+		} ; 
+   
+   lincat QVP = CatNep.VP ;
+   
+}
diff --git a/lib/src/nepali/README b/lib/src/nepali/README
new file mode 100644
--- /dev/null
+++ b/lib/src/nepali/README
@@ -0,0 +1,9 @@
+Some of the sources are transliterated, in
+
+ ./src
+
+Before compilation, do
+
+  gf -s <translit.gfs
+
+to get unicode.
diff --git a/lib/src/nepali/RelativeNep.gf b/lib/src/nepali/RelativeNep.gf
new file mode 100644
--- /dev/null
+++ b/lib/src/nepali/RelativeNep.gf
@@ -0,0 +1,48 @@
+concrete RelativeNep of Relative = CatNep ** open ResNep in {
+
+  flags optimize=all_subs ;
+  coding = utf8;
+
+  lin
+
+    RelCl cl = {
+      s = \\t,p,o,agr => "जस्तोकी" ++ cl.s ! t ! p ! o ;
+      c = Nom
+      } ;
+
+    RelVP rp vp = {
+      s = \\t,p,o,ag => 
+        let 
+        agr = case rp.a of {
+              RNoAg => ag ;
+              RAg a => a
+              } ;
+        cl = mkSClause (rp.s ! Nom) agr vp;
+        in
+        cl.s ! t ! p ! ODir ;
+        c = Nom
+        } ;
+      
+
+    RelSlash rp slash = {
+      s = \\t,p,o,agr => rp.s ! Nom ++ slash.c2.s ++  slash.s ! t ! p ! o  ;
+      c = Nom
+      } ;
+
+    
+    -- CHEK NEPALI RULES FOR RELSTIVE (PG 32)
+    FunRP p np rp = {
+      s = \\c => rp.s ! c ++ np.s ! NPC Nom ++ p.s  ;
+      a = RAg np.a
+      } ;
+
+    IdRP = {
+      s = table {
+		    ResNep.Nom  => "जो" ;
+		    ResNep.Ins  => "जस्ले" ;
+		    _           => "जो"
+			} ;
+      a = RNoAg
+      } ;
+
+}
diff --git a/lib/src/nepali/ResNep.gf b/lib/src/nepali/ResNep.gf
new file mode 100644
--- /dev/null
+++ b/lib/src/nepali/ResNep.gf
@@ -0,0 +1,638 @@
+--# -path=.:../abstract:../common:../../prelude
+--
+--1 Nep auxiliary operations.
+--  by Dinesh Simkhada and Shafqat Virk - 2011
+--
+-- This module contains operations that are needed to make the
+-- resource syntax work. 
+
+resource ResNep = ParamX  ** open Prelude, Predef in {
+
+  flags optimize=all ;
+  coding = utf8;
+
+  param 
+    Case = Nom | Acc | Ins | Dat | Abl | Loc ;
+    Gender = Masc | Fem ;
+    NPerson = Pers1 
+	    | Pers2_L
+	    | Pers2_M
+	    | Pers2_H
+	    | Pers3_L
+        | Pers3_M
+        | Pers3_H ;
+		
+	Order = ODir | OQuest ;
+	
+--2 For $Relative$
+ 
+    RAgr = RNoAg | RAg Agr ;
+    RCase = RC Number Case ;
+
+-- for Numerial
+   
+   CardOrd = NCard | NOrd ;
+
+------------------------------------------
+--Verbs
+-------------------------------------------
+  	VTense = NPresent | NPast PTypes | NFuture FTypes;
+    PTypes = Simpl | Hab ; -- Unknown - Currently we didn't find the use of 'Unknown' type
+    FTypes = Defin | NDefin ;    
+  
+    VerbForm =
+      VF VTense Aspect Polarity NPerson Number Gender
+       | Root -- Root form, 'kha' is the root of 'khanu'
+       | Inf  -- Infinitive form 'khanau'
+       | ProgRoot Aspect Number Gender
+       | PVForm  -- Partial verb form 'khan' is teh PVForm of 'khanu'
+       | Imp ;
+      
+  -- Aspect Perfective and non-perfective
+    Aspect = Perf | Imperf ; 
+    
+    -- For distinguishing the type of noun
+    -- Prefessions/Occupations, Humans all mapped to Living category
+    NType = Living | NonLiving ;
+
+  
+  oper
+  
+    Noun = {s : Number => Case => Str ; g : Gender ; t : NType ; h : NPerson } ;
+ 
+    Verb = {s : VerbForm => Str} ;
+
+    Preposition = {s : Str};
+  
+    Determiner = {s : Number => Gender => Str ; n : Number};
+
+-- Nepali Adjectives
+
+   npAdjective = {s : Number => Gender => Str} ;
+
+   mkAdjnp : Str -> npAdjective = \str ->
+     case str of {
+        st + t@"त" + "ो" => mkAdj1 str str (st+t+"ा") ; -- No Fem for red [couple of places which takes Fem but no general rule]
+        st + "ो"         => mkAdj1 str (st+"ी") (st+"ा") ;
+        _                => mkAdj1 str str str
+        } ;
+   
+   mkAdj1 : (x1,_,x3 : Str) -> npAdjective = 
+     \sm, sf, smf -> {
+        s = table {
+            Sg => table {
+                Masc => sm ;
+                Fem  => sf 
+            } ;
+            Pl => table {
+                Masc => smf ;
+                Fem  => smf 
+            } 
+        }
+     };
+
+
+-- Reflective Pronoun
+  --eg. (i will do myself)
+  -- Functions used at NounNep [TODO: inflection at morphological level and attach with VP might be good option]
+  reflPron : Str ;
+  reflPron = "आफैं" ; -- आफैं
+  
+  eko : Str ;
+  eko = "एको" ;
+  
+  eko : Str ;
+  eki = "एकी" ;
+  
+  eka : Str ;
+  eka = "एका" ;
+  
+  sbvn : Str ;
+  sbvn = "सबभन्दा" ;
+  
+  ----------------------------------------------------------
+  -- Grammar part
+  ----------------------------------------------------------
+  
+  param
+    Agr = Ag Gender Number NPerson ;
+    NPCase = NPC Case | NPObj | NPErg ;
+
+  oper
+  
+    np2pronCase : (Case => Str) -> NPCase -> Agr -> Str = 
+      \ppf,npc,a -> case npc of {
+       NPC c => ppf ! c ;
+       NPObj => ppf ! Nom ;
+       NPErg => ppf ! Ins --Nom ++ "ले" 
+       } ;    
+    
+	toNP : (Case => Str) -> NPCase -> Str = \pn, npc -> case npc of {
+       NPC c => pn ! c ;
+       NPObj => pn ! Nom ;
+       NPErg => pn ! Ins --Nom ++ "ले"
+       } ;
+	
+    detcn2NP : (Determiner) -> Noun -> NPCase -> Number -> Str = \dt,cn,npc,nn -> case npc of {
+       NPC c => dt.s ! dt.n ! Masc ++ cn.s ! nn ! c ;
+       NPObj => dt.s ! dt.n ! Masc ++ cn.s ! nn ! Nom ;
+       NPErg => dt.s ! dt.n ! Masc ++ cn.s ! nn ! Ins --Nom ++ "ले"
+       } ;  
+    
+    det2NP : (Determiner) -> NPCase -> Str = \dt,npc -> case npc of {
+       NPC c => dt.s ! dt.n ! Masc ;
+       NPObj => dt.s ! dt.n ! Masc ;
+       NPErg => dt.s ! dt.n ! Masc ++ "ले"
+       } ;    
+
+------------------------------------
+-- Agreement transformations
+------------------------------------
+
+  oper
+
+    toAgr : Number -> NPerson -> Gender -> Agr = \n,p,g ->       
+	   Ag g n p;
+      
+    
+    fromAgr : Agr -> {n : Number ; p : NPerson ; g : Gender} = 
+      \a -> case a of {
+       Ag g n p => {n = n ; p = p ; g = g} 
+	   } ;
+	
+      
+	conjAgr : Agr -> Agr -> Agr = \a0,b0 -> 
+      let a = fromAgr a0 ; b = fromAgr b0 
+      in
+      toAgr (conjNumber a.n b.n) b.p a.g;	  
+	
+	
+    giveNumber : Agr -> Number = 
+     \a -> case a of {
+	   Ag _ n _ => n
+       } ;
+    
+	giveGender : Agr -> Gender = 
+     \a -> case a of {
+	   Ag g _ _ => g
+	   } ;
+        
+    defaultAgr : Agr = agrP3 Masc Sg ;
+    
+    agrP3 : Gender -> Number -> Agr = 
+      \g,n -> Ag g n Pers3_L ;	
+    
+    agrP1 : Gender -> Number -> Agr = 
+      \g,n -> Ag g n Pers1 ;
+    
+    personalAgr : Agr = agrP1 Masc Sg ;
+    
+    	
+  param
+      CPolarity = 
+       CPos
+       | CNeg Bool ;  -- contracted or not
+
+  oper
+    contrNeg : Bool -> Polarity -> CPolarity = 
+     \b,p -> case p of {
+       Pos => CPos ;
+       Neg => CNeg b
+       } ;
+
+    NP : Type = {s : NPCase => Str ; a : Agr ; t : NType } ;
+   
+
+  param
+     
+    VPHTense = 
+       VPGenPres                   -- impf hum       nahim    "ी गो"
+     | VPSmplPast  --# notpresent  -- impf Ta        nahim    "ी ौेनत"
+	 | VPFut       --# notpresent  -- fut            na/nahim "ी सहालल गो"
+     | VPPerfPres                  -- perf hum       na/nahim "ी हावे गोने"
+     | VPPerfPast  --# notpresent  -- perf Ta        na/nahim "ी हाद गोने"          
+	 | VPPerfFut   --# notpresent
+     | VPCondPres                  -- subj           na       "ी माय गो"
+     | VPCondPast  --# notpresent  -- subj           na       "ी माय गो"
+     ;
+       
+    VType = VIntrans | VTrans | VTransPost ;
+    
+    -- Tense defined for coupla case
+    CTense = CPrsnt | CPast | CFuture ;
+
+  
+  oper
+    
+	objVType : VType -> NPCase = \vt -> 
+     case vt of {
+       VTrans => NPObj ;
+       _      => NPC Nom
+       } ;
+
+    VPH : Type = {
+      s    : VerbForm => {inf : Str} ;
+      obj  : {s : Str ; a : Agr} ; 
+      subj : VType ;
+      comp : Agr => Str;
+      inf : Str;
+      ad  : Str;
+      embComp : Str ;
+      } ;
+	
+	VPHSlash = VPH ** {c2 : Compl} ;
+    Compl : Type = {s : Str ; c : VType} ;
+
+    predV : Verb -> VPH = \verb -> 
+     {s = \\vf => 
+	   case vf of {
+	     VF t a pl p n g => {inf = verb.s ! VF t a pl p n g } ;
+	     Root => {inf = verb.s ! Root } ;
+         Inf => {inf = verb.s ! Inf } ;
+	     Imp => {inf = verb.s ! Imp } ;
+         PVForm => {inf = verb.s ! PVForm } ;
+         ProgRoot a n g => {inf = verb.s ! ProgRoot a n g }  
+		 };
+	    obj = {s = [] ; a = defaultAgr} ;
+		subj = VIntrans ;
+        inf = verb.s ! Inf;
+		ad = [];
+        embComp = [];
+        comp = \\_ => []
+      } ;
+
+    predVc : (Verb ** {c2,c1 : Str}) -> VPHSlash = \verb ->     
+      predV verb ** {c2 = {s = verb.c1 ; c = VTrans} } ;
+
+
+	predAux :  NType -> VPH =\ctype ->  {
+      s = \\vh => 
+       case vh of {
+	      VF NPresent _ pl p n g =>  
+             case ctype of { 
+               Living => {inf = copulaPrLvng pl n p g } ;
+	           _      => {inf = copulaPrGen  pl n p g }
+               } ;
+	      VF (NPast _) _ pl p n g => {inf = copulaPsGen pl n p g } ;
+	      VF (NFuture _) _ pl p n g => {inf = copulaFtGen pl n p g } ;
+	      
+          Root => { inf = ""} ;
+          Inf=> {inf = ""} ;
+	      Imp => {inf = ""} ;
+          ProgRoot a n g => {inf = "" } ; 
+          PVForm => {inf = ""} 
+        };
+       obj = {s = [] ; a = defaultAgr} ;
+       subj = VIntrans ;
+       inf = "";
+       ad = [];
+       embComp = [];
+       comp = \\_ => []
+       } ;
+ 
+
+  predProg : VPH -> VPH = \verb -> {
+     s = \\vh => 
+       case vh of {
+         VF NPresent a pl p n g => {inf =  (verb.s ! ProgRoot a n g).inf ++ copulaPrGen pl n p g} ;
+         VF (NPast _) a pl p n g => {inf = (verb.s ! ProgRoot a n g).inf ++ copulaPsGen pl n p g} ; --# notpresent
+         VF (NFuture _) a pl p n g => {inf = (verb.s ! ProgRoot a n g).inf ++ copulaFtGen pl n p g} ; --# notpresent
+		 
+         Root => {inf = (verb.s ! Root).inf } ;
+         Inf => {inf = (verb.s ! ProgRoot Imperf Sg Masc).inf } ;
+	     Imp => {inf = (verb.s ! Imp).inf } ;
+         PVForm => {inf = (verb.s ! PVForm).inf } ;
+         ProgRoot a n g => {inf = (verb.s ! ProgRoot a n g).inf } 
+		 };
+      obj = verb.obj ;
+      subj =  VIntrans ;
+      inf = verb.inf;
+      ad = verb.ad;
+      embComp = verb.embComp;
+      comp = verb.comp 
+      } ;
+   
+   Clause : Type = {s : VPHTense => Polarity => Order => Str} ;
+      
+   -- TODO, ERGATIVE CASE FROM NOUN INFLETION [No Proper grammer resource found]
+   mkClause : NP -> VPH -> Clause = \np,vp -> {
+      s = \\vt,b,ord => 
+        let 
+          subjagr : NPCase * Agr = case vt of {
+             VPSmplPast   => case vp.subj of {
+               VTrans     => <NPErg, vp.obj.a> ;
+               VTransPost => <NPErg, defaultAgr> ;
+               _          => <NPC Nom, np.a>
+               } ;
+             
+             VPPerfPast   => case vp.subj of {
+               VTrans     => <NPErg, vp.obj.a> ;
+               VTransPost => <NPErg, defaultAgr> ;
+               _          => <NPC Nom, np.a>
+               } ;
+             _            => <NPC Nom, np.a>
+            } ;
+            subj = subjagr.p1 ;
+            agr  = subjagr.p2 ;
+            n    = (fromAgr agr).n;
+		    p    = (fromAgr agr).p;
+		    g    = (fromAgr agr).g;
+            vps  = case <vt,b> of {
+               <VPGenPres,Pos>  => vp.s ! VF NPresent Imperf Pos p n g ;
+               <VPGenPres,Neg>  => vp.s ! VF NPresent Imperf Neg p n g ;
+               <VPFut,Pos>      => vp.s ! VF (NFuture Defin) Imperf Pos p n g ; --# notpresent
+               <VPFut,Neg>      => vp.s ! VF (NFuture Defin) Imperf Neg p n g ; --# notpresent
+               <VPSmplPast,Pos> => vp.s ! VF (NPast Simpl) Imperf Pos p n g ; --# notpresent
+               <VPSmplPast,Neg> => vp.s ! VF (NPast Simpl) Imperf Neg p n g ; --# notpresent
+               
+               <VPPerfPres,Pos> => vp.s ! VF NPresent Perf Pos p n g ;
+               <VPPerfPres,Neg> => vp.s ! VF NPresent Perf Neg p n g ;
+               <VPPerfPast,Pos> => vp.s ! VF (NPast Simpl) Perf Pos p n g ; --# notpresent
+               <VPPerfPast,Neg> => vp.s ! VF (NPast Simpl) Perf Neg p n g ; --# notpresent
+               <VPPerfFut,Pos>  => vp.s ! VF (NFuture Defin) Perf Pos p n g ; --# notpresent
+               <VPPerfFut,Neg>  => vp.s ! VF (NFuture Defin) Perf Neg p n g ; --# notpresent
+  
+                <VPCondPres, Pos> => vp.s ! VF (NFuture Defin) Imperf Pos p n g ;
+                <VPCondPres, Neg> => vp.s ! VF (NFuture Defin) Imperf Neg p n g ;
+                <VPCondPast, Pos> => vp.s ! VF (NPast Hab) Perf Pos p n g ; --# notpresent
+                <VPCondPast, Neg> => vp.s ! VF (NPast Hab) Perf Neg p n g  --# notpresent
+                } ;
+				    
+          quest =
+            case ord of
+              { ODir => [];
+                OQuest => "के" }; 
+		  
+        in
+		quest ++ np.s ! subj ++ vp.ad ++ vp.obj.s ++ vp.comp ! np.a  ++  vps.inf ++ vp.embComp
+		--quest ++ np.s ! subj ++ vp.ad ++ vp.comp ! np.a ++ vp.obj.s ++ vps.inf ++ vp.embComp
+      } ;
+
+ 
+  mkSClause : Str -> Agr -> VPH -> Clause =
+    \subj,agr,vp -> {
+      s = \\t,b,ord => 
+        let 
+		  n   = (fromAgr agr).n;
+		  p   = (fromAgr agr).p;
+		  g   = (fromAgr agr).g;
+          vps = case <t,b> of {
+			   <VPGenPres,Pos>  => vp.s ! VF NPresent Imperf Pos p n g ;
+               <VPGenPres,Neg>  => vp.s ! VF NPresent Imperf Neg p n g ;
+               <VPFut,Pos>      => vp.s ! VF (NFuture Defin) Imperf Pos p n g ; --# notpresent
+               <VPFut,Neg>      => vp.s ! VF (NFuture Defin) Imperf Neg p n g ; --# notpresent
+               <VPSmplPast,Pos> => vp.s ! VF (NPast Simpl) Imperf Pos p n g ; --# notpresent
+               <VPSmplPast,Neg> => vp.s ! VF (NPast Simpl) Imperf Neg p n g ; --# notpresent
+               
+               <VPPerfPres,Pos> => vp.s ! VF NPresent Perf Pos p n g ;
+               <VPPerfPres,Neg> => vp.s ! VF NPresent Perf Neg p n g ;
+               <VPPerfPast,Pos> => vp.s ! VF (NPast Simpl) Perf Pos p n g ; --# notpresent
+               <VPPerfPast,Neg> => vp.s ! VF (NPast Simpl) Perf Neg p n g ; --# notpresent
+               <VPPerfFut,Pos>  => vp.s ! VF (NFuture Defin) Perf Pos p n g ; --# notpresent
+               <VPPerfFut,Neg>  => vp.s ! VF (NFuture Defin) Perf Neg p n g ; --# notpresent
+  
+                <VPCondPres, Pos> => vp.s ! VF (NFuture Defin) Imperf Pos p n g ;
+                <VPCondPres, Neg> => vp.s ! VF (NFuture Defin) Imperf Neg p n g ;
+                <VPCondPast, Pos> => vp.s ! VF (NPast Hab) Perf Pos p n g ; --# notpresent
+                <VPCondPast, Neg> => vp.s ! VF (NPast Hab) Perf Neg p n g  --# notpresent
+                } ;
+				    
+          quest =
+            case ord of
+              { ODir => [];
+                OQuest => "के" }; 
+		  
+        in
+		quest ++ subj ++ vp.obj.s ++ vp.ad ++ vp.comp ! agr  ++  vps.inf ++ vp.embComp
+	    --quest ++ subj ++ vp.ad ++ vp.comp ! agr ++ vp.obj.s ++ vps.inf ++ vp.embComp
+      } ;
+
+     
+     insertObj : (Agr => Str) -> VPH -> VPH = \obj1,vp -> {
+       s = vp.s ;
+       obj = vp.obj ;
+       subj = vp.subj ;
+	   inf = vp.inf;
+	   ad = vp.ad;
+       embComp = vp.embComp;
+       comp = \\a =>    vp.comp ! a  ++ obj1 ! a 
+       } ;
+
+     insertVV : {s:Agr => Str} -> VPH -> Str -> VPH -> VPH = \obj1,vp,emb,vp2 -> {
+       s = vp.s ;
+       obj = vp2.obj ;
+       subj = vp.subj ;
+	   inf = vp.inf;
+	   ad = vp.ad;
+       embComp = vp.embComp ++ emb; 
+       comp = \\a => obj1.s ! a ++  vp.comp ! a  
+       } ;
+     
+     insertObj2 : (Str) -> VPH -> VPH = \obj1,vp -> {
+       s = vp.s;
+       obj = vp.obj ;
+       subj = vp.subj ;
+	   inf = vp.inf;
+	   ad = vp.ad;
+       embComp = Prelude.glue vp.embComp obj1;
+       comp = vp.comp
+       } ;
+     	 
+    insertObjc : (Agr => Str) -> VPHSlash -> VPHSlash = \obj,vp -> 
+      insertObj obj vp ** {c2 = vp.c2} ;
+
+    insertObjc2 : Str -> VPHSlash -> VPHSlash = \obj,vp -> 
+      insertObj2 obj vp ** {c2 = vp.c2} ;
+
+	infVP : Bool -> VPH -> {s:Agr => Str} = \isAux,vp ->
+      {s= \\a => vp.obj.s ++ (vp.s ! PVForm).inf ++ vp.comp ! a };
+
+    infVV :  VPH -> {s:Agr => Str} = \vp -> {
+      s = \\ agr => vp.comp ! agr ++ (vp.s ! PVForm).inf
+      } ; 
+
+
+    infV2V :  VPH -> {s :Agr => Str} = \vp -> {
+      s = \\agr => vp.comp ! agr ++ (vp.s ! PVForm).inf -- ++ "लाइ"    
+      } ; 
+    
+    insertObject : NP -> VPHSlash -> VPH = \np,vps -> {
+      s = vps.s ;
+      obj =  {s =  np.s ! objVType vps.c2.c ++ vps.c2.s ++ vps.obj.s ; a = np.a} ;
+      subj = vps.c2.c ;
+	  inf = vps.inf;
+	  ad = vps.ad;
+      embComp = vps.embComp;
+      comp = vps.comp
+      } ;
+	  
+	insertObjPre : (Agr => Str) -> VPHSlash -> VPH = \obj,vp -> {
+      s = vp.s ;
+      obj = vp.obj ;
+      inf = vp.inf ;
+      subj = vp.subj ;
+	  ad = vp.ad ;
+      embComp = vp.embComp;
+      comp = \\a =>   obj ! a  ++ vp.c2.s ++ vp.comp ! a 
+      } ;
+
+    insertAdV : Str -> VPH -> VPH = \ad,vp -> {
+      s = vp.s ;
+      obj = vp.obj ;
+      inf = vp.inf ;
+	  subj = vp.subj;
+      ad  = vp.ad ++ ad ;
+      embComp = vp.embComp;
+      comp = vp.comp
+      } ;
+    
+    conjThat : Str = "की" ; -- की
+    
+    insertEmbCompl : VPH -> Str -> VPH = \vp,emb -> {
+      s = vp.s ;
+      obj = vp.obj ;
+      inf = vp.inf ;
+      subj = vp.subj;
+      ad  = vp.ad;
+      embComp = vp.embComp ++ emb;
+      comp = vp.comp
+      } ;
+        
+    insertTrans : VPH -> VType -> VPH = \vp,vtype -> {
+      s = vp.s ;
+      obj = vp.obj ;
+      inf = vp.inf ;
+      subj = case vtype of {
+             VIntrans => VTransPost ; 
+             VTrans   => VTrans ; 
+             _        => vtype
+             } ; 
+      ad  = vp.ad;
+      embComp = vp.embComp ;
+      comp = vp.comp
+      } ;
+      
+  -- copula cases
+  oper    
+    -- For Human, occupation/Introductiary case 
+    copulaPrLvng :  Polarity -> Number -> NPerson -> Gender -> Str = 
+      \po,n,pn,g -> 
+      case <po,pn,n,g> of {
+        -- Resembles with 'mkVPreNPReg' function for positive --TODO
+        -- Present Positive
+        <Pos, Pers1,   Sg,   _>  => "हुँ" ; -- हुँ
+        <Pos, Pers1,   Pl,   _>  => "हौँ" ; -- हौँ
+        <Pos, Pers2_L, Sg,   _> => "होस्" ; -- होस्
+        --<Pos, Pers2_L, Sg, Fem>  => "होस्" ; -- छेस्      
+        <Pos, Pers2_L, Pl,   _>  => "हौ" ; -- हौ
+        --<Pos, Pers2_M, Pl, Fem>  => "छ्यौ" ;  -- छ्यौ
+        <Pos, Pers2_M,  _,   _>  => "हौ" ; --  हौ
+        <Pos, Pers3_L, Sg, Masc> => "हो" ;  -- हो
+        <Pos, Pers3_L, Sg, Fem>  => "हुन्" ; -- हुन्
+        <Pos, Pers3_L, Pl,   _>  => "हुन्" ;  -- हुन्     
+        --<Pos, Pers3_M, Sg, Fem>  => "हुन्" ;  -- हुन्     
+        <Pos, Pers3_M, _,    _>  => "हुन्" ;  -- हुन्     --"हौ" ;  -- हौ
+        <Pos,      _ , _,    _>  => "हुनुहुन्छ" ; --हुनुहुन्छ
+          
+        -- Present Negative
+        <Neg, Pers1,   Sg,   _>  => "हैन" ; -- 
+        <Neg, Pers1,   Pl,   _>  => "हैनौं" ; -- हैनौं
+        <Neg, Pers2_L, Sg,   _>  => "हैनस्" ; -- हैनस्
+        <Neg, Pers2_L, Pl,   _>  => "हैनौ" ; -- हैनौ
+	    <Neg, Pers2_M,  _,   _>  => "हैनौ" ; -- हैनौ        
+        <Neg, Pers3_L, Sg,   _>  => "हैन" ; --हैन
+        <Neg, Pers3_L, Pl,   _>  => "हैनन्" ; -- हैनन्
+        <Neg, Pers3_M,  _,   _>  => "हैनन्" ; -- हैनन्
+        <Neg,       _,  _,   _>  => "हुनुहुन्‌न"  -- हुनुहुन्‌न
+        } ;
+    
+    copulaPrGen : Polarity -> Number -> NPerson -> Gender -> Str = 
+      \po,n,pn,g -> 
+      case <po,pn,n,g> of {
+        <Pos, Pers1,   Sg,   _>  => "छु" ; -- छु 
+        <Pos, Pers1,   Pl,   _>  => "छौं" ; -- छौं      
+        <Pos, Pers2_L, Sg, Masc> => "छस्" ; -- छस्
+        <Pos, Pers2_L, Sg, Fem>  => "छेस्" ; -- छेस्      
+        <Pos, Pers2_L, Pl,   _>  => "छौ" ; -- छौ 
+        <Pos, Pers2_M, Pl, Fem>  => "छ्यौ" ;  -- छ्यौ
+        <Pos, Pers2_M,  _,   _>  => "छौ" ; -- छौ      
+        <Pos, Pers3_L, Sg, Masc> => "छ" ;  -- छ
+        <Pos, Pers3_L, Sg, Fem>  => "छे" ;  -- छे
+        <Pos, Pers3_L, Pl,   _>  => "छन्" ;  -- छन्      
+        <Pos, Pers3_M, Sg, Fem>  => "छिन्" ;  -- छिन्
+        <Pos, Pers3_M, _,    _>  => "छन्" ;  -- छन्      
+        <Pos,      _ , _,    _>  => "हुनुहुन्छ" ; --हुनुहुन्छ
+          
+        -- Present Negative
+        <Neg, Pers1,   Sg,   _>  => "छैनँ" ; -- छैनँ
+        <Neg, Pers1,   Pl,   _>  => "छैनौं" ; -- छैनौं
+        <Neg, Pers2_L, Sg,   _>  => "छैनस्" ; -- छैनस्
+        <Neg, Pers2_L, Pl,   _>  => "छैनौ" ; -- छैनौ
+	    <Neg, Pers2_M,  _,   _>  => "छैनौ" ; -- छैनौ        
+        <Neg, Pers3_L, Sg,   _>  => "छैन" ; --छैन
+        <Neg, Pers3_L, Pl,   _>  => "छैनन्" ; -- छैनन्
+        <Neg, Pers3_M,  _,   _>  => "छैनन्" ; -- छैनन्
+        <Neg,       _,  _,   _>  => "हुनुहुन्‌न" -- हुनुहुन्‌न
+        } ;
+
+    copulaPsGen : Polarity -> Number -> NPerson -> Gender -> Str = 
+      \po,n,pn,g -> 
+      case <po,pn,n,g> of {
+        -- Past Positive
+        <Pos, Pers1,   Sg,    _> => "थिएँ" ; -- थिएँ
+        <Pos, Pers1,   Pl,    _> => "थियौँ" ; -- थियौँ          
+        <Pos, Pers2_L, Sg,    _> => "थिइस्" ; -- थिइस्
+        <Pos, Pers2_L, Pl,    _> => "थियौ" ; -- थियौ
+        <Pos, Pers2_M,  _,    _> => "थियौ" ; -- थियौ          
+        <Pos, Pers3_L, Sg, Masc> => "थियो" ; -- थियो
+        <Pos, Pers3_L, Sg, Fem>  => "थिई" ; --थिई
+        <Pos, Pers3_L, Pl,   _>  => "थिए" ; -- थिए
+        <Pos, Pers3_M, Sg, Fem>  => "थिइन्" ; -- थिइन्
+        <Pos, Pers3_M,  _,   _>  => "थिए" ; -- थिए
+        <Pos,       _,  _,   _>  => "हुनुहुन्‌थ्यो" ; -- हुनुहुन्‌थ्यो 
+        
+        -- Past Positive
+        <Neg, Pers1,   Sg,    _> => "थिनँ" ; -- थिनँ
+        <Neg, Pers1,   Pl,    _> => "थेनौं" ; -- थेनौं
+        <Neg, Pers2_L, Sg,    _> => "थिनस्" ; -- थिनस्        
+        <Neg, Pers2_L, Pl,    _> => "थेनौ" ; -- थेनौ
+        <Neg, Pers2_M,  _,    _> => "थेनौ" ; -- थेनौ        
+        <Neg, Pers3_L, Sg, Masc> => "थेन" ; -- थेन
+        <Neg, Pers3_L, Sg, Fem>  => "थिन" ; --थिन        
+        <Neg, Pers3_L, Pl,   _>  => "थेनन्" ; -- थेनन्
+        <Neg, Pers3_M, Sg, Fem>  => "थिनन्" ; -- थिनन्
+        <Neg, Pers3_M,  _,   _>  => "थेनन्" ; -- थेनन्
+        <Neg,       _,  _,   _>  => "हुनुहुन्‌नथ्यो" -- हुनुहुन्‌नथ्यो  
+        } ;
+        
+        
+    copulaFtGen : Polarity -> Number -> NPerson -> Gender -> Str = 
+      \po,n,pn,g -> 
+      case <po,pn,n,g> of {
+         -- Future Positive
+        <Pos, Pers1,   Sg,   _>  => "हुनेछु" ; -- हुनेछु
+        <Pos, Pers1,   Pl,   _>  => "हुनेछौं" ; -- हुनेछौं      
+        <Pos, Pers2_L, Sg,   _>  => "हुनेछस्" ; -- हुनेछस्
+        <Pos, Pers2_L, Pl,   _>  => "हुनेछौं" ; -- हुनेछौ
+        <Pos, Pers2_M,  _,   _>  => "हुनेछौं" ; -- हुनेछौ               
+        <Pos, Pers3_L, Sg,   _>  => "हुनेछ" ; -- हुनेछ
+        <Pos, Pers3_L, Pl,   _>  => "हुनेछन्" ; -- हुनेछन्      
+        <Pos, Pers3_M,  _, Masc> => "हुनेछन्" ; -- हुनेछन्
+        <Pos, Pers3_M, Sg, Fem>  => "हुनेछन्" ; -- हुनेछिन्      
+        <Pos, Pers3_M, Pl, Fem>  => "हुनेछन्" ; -- हुनेछन्            
+        <Pos,       _,  _,   _>  => "हुनुहुनेछ" ; -- हुनुहुनेछ      
+          
+        -- Negative Case
+        <Neg, Pers1,   Sg,   _>  => "हुनेछैन" ; -- हुनेछैन
+        <Neg, Pers1,   Pl,   _>  => "हुनेछैनैँ" ; -- हुनेछैनैँ
+        <Neg, Pers2_L, Sg,   _>  => "हुनेछैनस्" ; -- हुनेछैनस्
+        <Neg, Pers2_L, Pl,   _>  => "हुनेछैनै" ; -- हुनेछैनै
+        <Neg, Pers2_M,  _,   _>  => "हुनेछैनै" ; -- हुनेछैनै           
+        <Neg, Pers3_L, Sg,   _>  => "हुनेछैन्" ; -- हुनेछैन्
+        <Neg, Pers3_L, Pl,   _>  => "हुनेछैनन्" ; -- हुनेछैनन्
+        <Neg, Pers3_M, Sg,   _>  => "हुनेछैनन्" ; -- हुनेछैनन्          
+        <Neg, Pers3_M, Pl,   _>  => "हुनेछैनै" ; -- हुनेछैनै
+        <Neg,       _,  _,   _>  => "हुनुहुनेछैन्" -- हुनुहुनेछैन्
+        } ;
+
+}
diff --git a/lib/src/nepali/SentenceNep.gf b/lib/src/nepali/SentenceNep.gf
new file mode 100644
--- /dev/null
+++ b/lib/src/nepali/SentenceNep.gf
@@ -0,0 +1,109 @@
+concrete SentenceNep of Sentence = CatNep ** open Prelude, ResNep in {
+
+  flags optimize=all_subs ;
+  coding = utf8;
+
+  lin
+
+    PredVP np vp = mkClause np vp ;
+    
+    PredSCVP sc vp = mkSClause sc.s (defaultAgr) vp ;
+
+    ImpVP vp = {
+      s = \\pol,n => 
+        let 
+          agr   = Ag Masc (numImp n) Pers2_M ; 
+          --verb  = vp.obj.s ++ (vp.s ! PVForm).inf ++ vp.comp ! agr ;
+          verb  = vp.obj.s ++ (vp.s ! Root).inf ++ vp.comp ! agr ;
+          --verb  = vp.obj.s ++ vp.comp ! agr ++ (vp.s ! Root).inf ;
+          dont  = case pol of {
+            CNeg True => "नगर" ;
+            CNeg False => "नगर" ;
+            _ => []
+            }
+        in
+        dont ++ verb
+    } ;
+
+    SlashVP np vp = 
+      mkClause np vp ** {c2 = vp.c2} ;
+
+    AdvSlash slash adv = {
+	  s  = \\t,p,o =>  adv.s ++ slash.s ! t ! p ! o  ;
+      c2 = slash.c2
+    } ;
+
+    SlashPrep cl prep = cl **  {c2 = { s = prep.s ; c = VIntrans}} ;
+
+    SlashVS np vs slash = 
+      mkClause  np 
+        (insertObj2 (conjThat ++ slash.s) (predV vs))  **
+        {c2 = slash.c2} ;
+
+    EmbedS  s  = {s = conjThat ++ s.s} ;
+    EmbedQS qs = {s = qs.s ! QIndir} ;
+    EmbedVP vp = {s = vp.obj.s ++ (vp.s! PVForm).inf ++ vp.comp ! defaultAgr} ; --- agr
+
+
+  UseCl  temp p cl = 
+	 { s = case <temp.t,temp.a> of {
+	      <Pres,Simul> => temp.s ++ p.s ++ cl.s ! VPGenPres ! p.p ! ODir;
+          <Pres,Anter> => temp.s ++ p.s ++ cl.s ! VPPerfPres ! p.p ! ODir;
+          <Past,Simul> => temp.s ++ p.s ++ cl.s ! VPSmplPast ! p.p ! ODir;
+          <Past,Anter> => temp.s ++ p.s ++ cl.s ! VPPerfPast ! p.p ! ODir;
+          <Fut,Simul>  => temp.s ++ p.s ++ cl.s ! VPFut ! p.p ! ODir;
+          <Fut,Anter>  => temp.s ++ p.s ++ cl.s ! VPPerfFut ! p.p ! ODir;
+          <Cond,Simul> => temp.s ++ p.s ++ cl.s ! VPCondPres ! p.p ! ODir;
+          <Cond,Anter> => temp.s ++ p.s ++ cl.s ! VPCondPast ! p.p ! ODir 
+
+   };
+  } ;
+  
+    UseQCl temp p cl = {
+      s = \\q => case <temp.t,temp.a> of {
+	      <Pres,Simul> => temp.s ++ p.s ++ cl.s ! VPGenPres ! p.p ! q;
+          <Pres,Anter> => temp.s ++ p.s ++ cl.s ! VPPerfPres ! p.p ! q;
+          <Past,Simul> => temp.s ++ p.s ++ cl.s ! VPSmplPast ! p.p ! q;
+          <Past,Anter> => temp.s ++ p.s ++ cl.s ! VPPerfPast ! p.p ! q;
+          <Fut,Simul>  => temp.s ++ p.s ++ cl.s ! VPFut ! p.p ! q;
+          <Fut,Anter>  => temp.s ++ p.s ++ cl.s ! VPPerfFut ! p.p ! q;
+          <Cond,Simul> => temp.s ++ p.s ++ cl.s ! VPCondPres ! p.p ! q;
+          <Cond,Anter> => temp.s ++ p.s ++ cl.s ! VPCondPast ! p.p ! q		  
+ 
+   };
+  } ;
+  
+    UseRCl temp p rcl = {
+      s = \\q => case <temp.t,temp.a> of {
+	      <Pres,Simul> => temp.s ++ p.s ++ rcl.s ! VPGenPres ! p.p ! ODir ! q;
+          <Pres,Anter> => temp.s ++ p.s ++ rcl.s ! VPPerfPres ! p.p ! ODir ! q;
+          <Past,Simul> => temp.s ++ p.s ++ rcl.s ! VPSmplPast ! p.p ! ODir ! q;
+          <Past,Anter> => temp.s ++ p.s ++ rcl.s ! VPPerfPast ! p.p ! ODir ! q;
+          <Fut,Simul>  => temp.s ++ p.s ++ rcl.s ! VPFut ! p.p ! ODir ! q;
+          <Fut,Anter>  => temp.s ++ p.s ++ rcl.s ! VPPerfFut ! p.p ! ODir ! q;
+          <Cond,Simul> => temp.s ++ p.s ++ rcl.s ! VPCondPres ! p.p ! ODir ! q;
+          <Cond,Anter> => temp.s ++ p.s ++ rcl.s ! VPCondPast ! p.p ! ODir ! q
+     };		  
+      c = rcl.c
+    } ;
+    
+    UseSlash temp p clslash = {
+      s = case <temp.t,temp.a> of {
+	      <Pres,Simul> => temp.s ++ p.s ++ clslash.s ! VPGenPres ! p.p ! ODir;
+          <Pres,Anter> => temp.s ++ p.s ++ clslash.s ! VPPerfPres ! p.p ! ODir;
+          <Past,Simul> => temp.s ++ p.s ++ clslash.s ! VPSmplPast ! p.p ! ODir ;
+          <Past,Anter> => temp.s ++ p.s ++ clslash.s ! VPPerfPast ! p.p ! ODir;
+          <Fut,Simul>  => temp.s ++ p.s ++ clslash.s ! VPFut ! p.p ! ODir;
+          <Fut,Anter>  => temp.s ++ p.s ++ clslash.s ! VPPerfFut ! p.p ! ODir;
+          <Cond,Simul> => temp.s ++ p.s ++ clslash.s ! VPCondPres ! p.p ! ODir;
+          <Cond,Anter> => temp.s ++ p.s ++ clslash.s ! VPCondPast ! p.p ! ODir
+     };		  
+      c2 = clslash.c2
+    } ;
+
+    AdvS a s = {s = a.s  ++ s.s} ;
+
+    RelS s r = {s = s.s ++ r.s ! agrP3 Masc Sg} ;
+    SSubjS s sj s = { s = s.s ++ sj.s ++ s.s};
+    
+}
diff --git a/lib/src/nepali/StructuralNep.gf b/lib/src/nepali/StructuralNep.gf
new file mode 100644
--- /dev/null
+++ b/lib/src/nepali/StructuralNep.gf
@@ -0,0 +1,132 @@
+concrete StructuralNep of Structural = CatNep ** 
+  open MorphoNep, ParadigmsNep, Prelude, NounNep in {
+
+  flags 
+    optimize = all ;
+    coding = utf8;
+
+  lin
+
+    above_Prep = mkPrep "माथि" ; -- माथि
+    after_Prep = mkPrep "पछि" ; -- पछि
+    all_Predet = ss "सबै" ; -- सबै (adj)
+    almost_AdA = mkAdA "झण्डै" ;
+    almost_AdN = mkAdN "झण्डै" ; -- JNx:xE (Adv) झण्डै
+    although_Subj = ss "तैपनि" ; -- तैपनि (conj)
+    always_AdV = mkAdV "सधैँ" ; -- सधैँ
+    and_Conj = sd2 [] "र" ** {n = Pl} ;
+    because_Subj = ss "किनभने" ; -- किनभने
+    before_Prep = mkPrep "अघि" ; -- अघि 
+    behind_Prep = mkPrep "पछि" ; -- पछि
+    between_Prep = mkPrep "बिच" ; -- बिच
+    both7and_DConj = sd2 "दुबै" "र" ** {n = Pl} ; -- दुबै र
+    but_PConj = ss "तर" ; -- तर
+    by8agent_Prep = mkPrep "लाइ" ; -- 
+    by8means_Prep = mkPrep "ले" ; 
+    can8know_VV,can_VV = mkV "सक्नु" ** { isAux = True} ;
+    during_Prep = mkPrep "पर्यान्त" ; -- पर्यान्त
+    either7or_DConj = sd2 "की" "अथवा" ** {n = Sg} ; -- की,  अथवा 
+    everybody_NP =  MassNP (UseN (regN "सवौ जाना" Living)) ; -- not a good way coz need to include Noun (सवौ जाना)
+    every_Det = mkDet "सबै" "हरेक" Sg ; -- सबै, हरेक
+    everything_NP = MassNP (UseN (regN "हारेक कुरा" NonLiving)) ; -- हारेक कुरा
+    everywhere_Adv = mkAdv "जाता ततै" ; -- जाता ततै
+    few_Det = mkDet "थोरै" "अलिकती" Pl ; -- थोरै, अलिकती
+--  d    first_Ord = {s = "पेहला" ; n = Sg} ; --DEPRECATED
+    for_Prep = mkPrep "लागि" ; -- लागि
+    from_Prep = mkPrep "बाट" ; -- बाट
+    
+    i_Pron = mkPron "म" "मेरो" Sg Masc Pers1 ; -- म, मेरो
+    we_Pron = mkPron "हामीहरु" "हामीहरुको" Pl Masc Pers1 ; -- हामीहरु, हामीहरुको    
+    he_Pron = mkPron "उ" "उस्लाई" "उस्ले" "उस्लाई" "उसबाट" "उस्मा" "उस्को" Sg  Masc Pers3_L; --उ, उस्लाई, उस्ले, उस्लाई, उसवाट, उस्मा, उस्को
+    she_Pron = mkPron "उनी" "उन्लाई" "उन्ले" "उन्लाई" "उनबाट" "उन्मा" "उन्को" Sg Fem Pers3_M ; -- उनी , उन्को
+    youSg_Pron = mkPron "तिमी" "तिम्रो" Sg Masc Pers2_M ; -- तिमी, तिम्रो
+    youPl_Pron = mkPron "तिमीहरु" "तिमीहरुको" Pl Masc Pers2_M ; -- तिमीहरु, तिमीहरुको
+    youPol_Pron = mkPron "तपाई" "तपाईहरुको" Sg Masc Pers2_H  ; -- तपाई, तपाईहरुको
+    they_Pron = mkPron "उनीहरु" "उनिहरुको" Pl Masc Pers3_L ; -- उनिहरु, उनिहरुको
+    it_Pron  = mkPron "यो" "यसलाई" "येसले" "यसलाई" "यसबाट" "यसमा" "ुस्को" Sg Masc Pers3_L; -- यो, यसलाई, यसले, यसलाई, यसबाट, यसमा, उस्को
+    
+    here_Adv = mkAdv "यहाँ" ; -- यहाँ
+    here7to_Adv = mkAdv ["यहाँ सम्म"] ; -- यहाँ सम्म
+    here7from_Adv = mkAdv ["यहाँ बाट"] ; -- यहाँ बाट
+    how_IAdv = ss "कसरी" ; -- कसरी
+    how8much_IAdv  = ss "कती" ; -- कती
+    how8many_IDet = mkIDetn "कती वटा" "कती वटी" Pl ;  -- काती वटा, कती वटी (incase of humans it becomes, 'kati jana') NEEDS FIX
+    if_Subj = ss "यदि" ; -- यदि
+    in8front_Prep = mkPrep "सामु" ; -- सामु      
+    in_Prep = mkPrep "मा" ; -- मा    
+    less_CAdv = {s = "कम" ; p = "भन्दा"} ; -- भन्दा कम
+    many_Det = mkDet "धेरै" "थुप्रै" Pl ; -- धेरै, थुप्रै
+    more_CAdv = {s = "बढी" ; p = "भन्दा" } ;
+    most_Predet = ss "ज्यादै" ; -- ज्यादै
+    much_Det = mkDet "निक्कै" "बेसरी" Sg  ; -- 
+    must_VV = mkV "अवश्य" ** { isAux = True} ; -- अवश्य
+--  must_VV = {
+--    s = table {
+--      VVF VInf => ["हावे तो"] ;
+--      VVF VPres => "मुसत" ;
+--      VVF VPPart => ["हाद तो"] ;
+--      VVF VPresPart => ["हाविनग तो"] ;
+--      VVF VPast => ["हाद तो"] ;      --# notpresent
+--      VVPastNeg => ["हादn'त तो"] ;      --# notpresent
+--      VVPresNeg => "मुसतn'त"
+--      } ;
+--    isAux = True
+--    } ;
+  
+--  d    no_Phr = ss "हुन्न" ; -- हुन्न
+    no_Utt = ss "होईन" ; -- होईन
+    on_Prep = mkPrep "मा" ; -- मा
+--  d    one_Quant = mkQuant "एक" "एक" ; -- DEPRECATED
+    only_Predet = ss "मात्र" ; -- मात्र
+    or_Conj = sd2 [] "अथवा" ** {n = Sg} ; -- अथवा
+    otherwise_PConj = ss "अन्यथा" ; -- अन्यथा
+    part_Prep = mkPrep "भाग" ; -- भाग
+    please_Voc = ss "कृपया" ; -- कृपया
+    possess_Prep = mkPrep "धारणा गर्नु" ; -- धारणा गर्नु
+    quite_Adv = ss "एकदम" ; -- एकदम    
+    so_AdA = mkAdA "यस कारण" ; -- यस कारण ???? NEED TO CHECK
+    somebody_NP = MassNP (UseN (regN "कोही" Living)); -- कोही
+    someSg_Det = mkDet "कोही" "केही" Sg ;
+    somePl_Det = mkDet "कोही" "केही" Pl ;
+    something_NP = MassNP (UseN (regN "केही  कुरा" NonLiving)) ;
+    somewhere_Adv = mkAdv "कहीं" ; -- कहीं
+    that_Quant = mkQuant "त्ये" "यिनीहरु" ;
+    that_Subj = ss "त्यो"; -- त्यो
+    there_Adv = mkAdv "त्यहाँ" ; -- त्यहाँ
+    there7to_Adv = mkAdv "त्यहाँ सम्म" ; -- त्यहाँ सम्म
+    there7from_Adv = mkAdv "त्यहाँ बाट" ; -- त्यहाँ बाट
+    therefore_PConj = ss "अतः" ; -- अतः    
+    this_Quant = mkQuant "यो" "यी" ; -- यो,  यी
+    through_Prep = mkPrep "मार्फत" ; -- मार्फत
+    too_AdA = mkAdA "पनि" ; -- पनि
+    to_Prep = ss "सम्म" ; -- सम्म
+    under_Prep = mkPrep "अन्तर्गत" ; -- अन्तर्गत
+    very_AdA = mkAdA "धेरै" ; -- धेरै
+    want_VV = mkV "चाहनु" ** { isAux = False} ;    
+    whatSg_IP = mkIP "के" "के" "के" "" Sg ;
+    whatPl_IP = mkIP "के" "के" "के" "" Pl ;
+    when_IAdv = ss "कहिले" ; -- कहिले
+    when_Subj = ss "कहिले" ;
+    where_IAdv = ss "कहाँ" ; -- कहाँ
+    which_IQuant = {s = table {Sg => "कुन" ; Pl => "कुन" } }; -- कुन
+--  d    whichPl_IDet = {s = "कुन" ; n = Sg} ;
+--  d    whichSg_IDet = {s = "कुन" ; n = Pl} ;
+    whoSg_IP = mkIP "को" "कासलाई" "कसको" "" Sg ; 
+    whoPl_IP = mkIP "को" "कासलाई" "कसको" "" Pl ;
+    why_IAdv = ss "किन" ; -- किन
+    without_Prep = mkPrep "विना" ; -- विना
+    with_Prep = mkPrep "सँग" ; -- सँग
+--  d    yes_Phr = ss "हजुर" ; -- हजुर
+    yes_Utt = ss "हजुर" ;  
+    no_Quant =  mkQuant "हैन" "हैनै" ;
+    not_Predet = {s="हैन"} ; -- हैन
+    if_then_Conj = sd2 "यदि" "भने" ** {n = Sg} ; -- यदि भने
+    at_least_AdN = mkAdN "कमसेकम" ; -- कमसेकम
+    at_most_AdN = mkAdN "बढीमा" ; -- बढीमा
+    nothing_NP = MassNP (UseN (regN "केही पनी")) ; -- केही पनी
+    nobody_NP = MassNP (UseN (regN "केही पनी" living)) ; --कोही पनी
+    except_Prep = mkPrep "बाहेक" ; -- बाहेक
+    as_CAdv = {s = "जत्तीकै" ; p = ""} ;  -- जत्तीकै
+    have_V2 = mkV2 (mkV "हुनु") "" ; -- हुनु
+    language_title_Utt = ss "नेपाली" ; -- नेपाली
+}
diff --git a/lib/src/nepali/SymbolNep.gf b/lib/src/nepali/SymbolNep.gf
new file mode 100644
--- /dev/null
+++ b/lib/src/nepali/SymbolNep.gf
@@ -0,0 +1,54 @@
+--# -path=.:../abstract:../common
+
+concrete SymbolNep of Symbol = CatNep ** open Prelude, ResNep in {
+
+  flags coding = utf8;
+
+ lin
+  SymbPN i = {s = addGenitiveS i.s ; g = Masc ; t = NonLiving ; h = Pers3_L } ;
+  
+  IntPN i  = {s = addGenitiveS i.s ; g = Masc ; t = NonLiving ; h = Pers3_L } ;
+  
+  FloatPN i = {s = addGenitiveS i.s ; g = Masc ; t = NonLiving ; h = Pers3_L } ;
+  
+  NumPN i = {s = \\_ =>i.s ; g = Masc ; t = NonLiving ; h = Pers3_L } ;
+  
+  CNIntNP cn i = {
+    s = \\c => cn.s ! Sg ! Nom ++ i.s ;
+    a = agrP3 cn.g Sg ;
+    t = NonLiving
+    } ;
+  
+  CNSymbNP det cn xs = {
+    s = \\c => det.s!Sg!Masc ++ cn.s ! det.n ! Nom ++  xs.s ; 
+    a = agrP3 cn.g det.n ;
+    t = NonLiving
+    } ;
+  
+  CNNumNP cn i = {
+    s = \\c => cn.s ! Sg ! Nom ++ i.s ;
+    a = agrP3 cn.g Sg ;
+    t = NonLiving
+    } ;
+
+  SymbS sy = sy ; 
+  SymbNum sy = { s = sy.s ; n = Pl } ;
+  SymbOrd sy = { s = sy.s ++ "ौँ" ; n = Pl} ;
+
+lincat 
+
+  Symb, [Symb] = SS ;
+
+lin
+  MkSymb s = s ;
+
+  BaseSymb = infixSS "र" ;
+  ConsSymb = infixSS "," ;
+
+oper
+    -- Note: this results in a space before 's, but there's
+    -- not mauch we can do about that.
+    addGenitiveS : Str -> Case => Str = \s -> 
+      table {_ => Prelude.glue s "दा" } ;
+      
+}
diff --git a/lib/src/nepali/VerbNep.gf b/lib/src/nepali/VerbNep.gf
new file mode 100644
--- /dev/null
+++ b/lib/src/nepali/VerbNep.gf
@@ -0,0 +1,77 @@
+concrete VerbNep of Verb = CatNep ** open ResNep in {
+
+  flags coding = utf8;
+  flags optimize=all_subs ;
+
+  lin
+    UseV  v = predV v ;
+    
+    ComplVV v vp = insertTrans (insertVV (infVV vp) (predV v) vp.embComp vp) vp.subj ;       
+    
+    ComplVS v s  = insertTrans (insertObj2 (conjThat ++ s.s) (predV v)) VTransPost ;   
+    
+    ComplVQ v q  = insertObj2 (conjThat ++ q.s ! QIndir) (predV v) ;
+    
+    ComplVA v ap = insertObj (\\a => ap.s ! giveNumber a ! giveGender a) (predV v) ;
+    
+    
+    
+    SlashV2a v = predV v ** {c2 = {s = v.c2.s ; c = VTrans}} ;    
+    -- use of these two functions
+    Slash2V3 v np = 
+      insertObjc (\\_ => np.s ! NPC Acc ++ v.c3 ) (predV v ** {c2 = {s = v.c2 ; c = VTrans}}) ; -- NEEDS CHECKING
+
+    Slash3V3 v np = 
+      insertObjc (\\_ => np.s ! NPC Acc ++ v.c3) (predV v ** {c2 = {s = v.c2 ; c = VTrans}}) ; 
+
+                                
+    -- Check for the use of 'Acc' case of noun instead of adding 'lai' and 'sanga' later
+    SlashV2V v vp = insertVV (infV2V vp) (predV v) vp.embComp vp ** {c2 = {s = v.c1 ; c = VTrans}} ; 
+    
+    SlashV2S v s  = insertObjc2 (conjThat ++ s.s) (predV v ** {c2 = {s = "लाई" ; c = VTransPost}}) ;
+    
+    SlashV2Q v q  = insertObjc2 (conjThat ++ q.s ! QIndir) (predV v ** {c2 = {s = "सँग" ; c = VTransPost}}) ; 
+      
+    SlashV2A v ap = insertObjc (\\a => ap.s ! giveNumber a ! giveGender a  ) (predV v ** {c2 = {s = v.c2.s ; c = VTrans}}) ; 
+    
+    
+    
+    ComplSlash vp np = insertObject np vp ;
+    
+    
+    SlashVV vv vp = 
+      insertEmbCompl (insertObj (infVP vv.isAux vp).s (predV vv)) vp.embComp **
+        {c2 = vp.c2} ;
+    
+    SlashV2VNP vv np vp = 
+      insertObjPre (\\_ => np.s ! NPObj  )
+        (insertObjc (infVP vv.isAux vp).s (predVc vv)) **
+          {c2 = vp.c2} ;
+    
+    
+    
+    ReflVP v = insertObjPre (\\_ => reflPron) v ;
+    UseComp comp = insertObj comp.s (predAux comp.t) ;
+    
+    
+    PassV2 v = predV v ; -- need to be fixed
+    
+    
+    AdvVP vp adv = insertObj (\\_ => adv.s ) vp ;
+
+    AdVVP adv vp = insertAdV adv.s vp ;
+    
+    
+    AdvVPSlash vp ad = insertObj (\\_ => ad.s ) vp ** {c2 = vp.c2} ; 
+    AdVVPSlash ad vp = insertObj (\\_ => ad.s ) vp ** {c2 = vp.c2} ;    
+
+    
+    CompAP ap = {s = \\a => ap.s ! giveNumber a ! giveGender a ; t = NonLiving} ;
+    
+    CompNP np = {s = \\_ => np.s ! NPObj; t = np.t} ;
+    
+    CompAdv adv = {s = \\a => adv.s ; t = NonLiving} ;
+    
+    CompCN cn = {s = \\a => cn.s ! giveNumber a ! Nom ; t = cn.t} ;    
+    
+}
diff --git a/lib/src/nepali/src/AdjectiveNep.gf b/lib/src/nepali/src/AdjectiveNep.gf
new file mode 100644
--- /dev/null
+++ b/lib/src/nepali/src/AdjectiveNep.gf
@@ -0,0 +1,68 @@
+concrete AdjectiveNep of Adjective = CatNep ** open ResNep, Prelude in {
+
+  flags coding = utf8;
+  lin
+    
+    -- ALL THE RULES FROM BOOK ARE NOT COVERED
+
+    --PositA  : A  -> AP ;        -- warm
+    PositA a = a ;
+	
+    
+    --ComparA : A  -> NP -> AP ;  -- warmer than I
+    ComparA a np = {
+      s = \\n, g => np.s ! NPC Nom ++ "Bnx:da" ++ a.s ! n ! g ;
+      } ;
+    
+     
+    --ComplA2 : A2 -> NP -> AP ;  -- married to her
+    ComplA2 a np = {
+      s = \\n,g  => np.s ! NPC Nom ++ a.c2 ++ a.s ! n ! g  ; 
+      } ;
+
+    
+    --ReflA2  : A2 -> AP ;        -- married to itself
+    ReflA2 a = { 
+      s = \\n, g => "APE" ++ a.c2 ++ a.s ! n ! g ; -- आफै सँग
+      } ;
+      
+    
+    --UseA2   : A2 -> AP ;        -- married
+    UseA2 a = a ;
+    
+    
+   --UseComparA : A  -> AP ;     -- warmer
+    UseComparA a = {
+      s = \\n, g => "HlI" ++ a.s ! n ! g ; -- अली
+      } ;     
+    
+    
+    --CAdvAP  : CAdv -> AP -> NP -> AP ; -- as cool as John
+    CAdvAP cadv ap np = {
+	  s = \\n,g => np.s ! NPC Nom ++ cadv.p ++ cadv.s ++ ap.s ! n ! g   ;
+	  };    
+    
+    
+    --AdjOrd  : Ord -> AP ;       -- warmest
+    AdjOrd ord =  { s = \\_,_ => ord.s ; };        
+    
+    
+    --SentAP  : AP -> SC -> AP ;  -- good that she is here
+    SentAP ap sc = {
+      s = \\n,g => sc.s ++ ap.s ! n ! g ; 
+      --s = \\n,g => ap.s ! n ! g ++ sc.s ; 
+      } ;
+
+    
+    --AdAP    : AdA -> AP -> AP ; -- very warm
+    AdAP ada ap = {
+      s = \\n,g => ada.s ++ ap.s ! n ! g ;
+      } ;
+      
+    
+    --AdvAP   : AP -> Adv -> AP ; -- warm by nature
+    AdvAP ap adv = {
+      s = \\n,g => adv.s ++ ap.s ! n ! g ;
+      } ;
+      
+}
diff --git a/lib/src/nepali/src/AdverbNep.gf b/lib/src/nepali/src/AdverbNep.gf
new file mode 100644
--- /dev/null
+++ b/lib/src/nepali/src/AdverbNep.gf
@@ -0,0 +1,24 @@
+concrete AdverbNep of Adverb = CatNep ** open ResNep, Prelude, Predef in {
+
+  flags coding = utf8;
+  
+  lin
+    PositAdvAdj a = {s = a.s ! Sg ! Masc ++ "grI" } ;
+    
+    ComparAdvAdj cadv a np = {
+      s = np.s ! NPObj  ++ cadv.p ++ cadv.s ++ a.s ! Sg ! Masc ;  
+      } ;
+
+    ComparAdvAdjS cadv a s = {
+      s =  cadv.p ++ cadv.s ++ a.s ! Sg ! Masc   ++  s.s;
+      } ;
+
+    PrepNP prep np = {s = np.s ! NPObj ++ prep.s } ;
+
+    AdAdv ada adv = { s = ada.s ++ adv.s} ;
+
+    SubjS sub snt = {s = sub.s ++ snt.s } ;
+    
+    AdnCAdv cadv = {s = cadv.p ++ cadv.s } ;
+
+}
diff --git a/lib/src/nepali/src/IdiomNep.gf b/lib/src/nepali/src/IdiomNep.gf
new file mode 100644
--- /dev/null
+++ b/lib/src/nepali/src/IdiomNep.gf
@@ -0,0 +1,40 @@
+concrete IdiomNep of Idiom = CatNep ** open Prelude,Predef, ResNep in {
+
+  flags optimize=all_subs ;
+  flags coding = utf8;
+
+  lin
+    ImpersCl vp = mkSClause " " (agrP3 Masc Sg) vp ;
+    
+    GenericCl vp = mkSClause "kohI" (agrP3 Masc Sg) vp ;
+
+    CleftNP np rs = 
+	 let cl =  mkSClause (np.s ! NPC rs.c) (np.a) (predAux np.t);
+        
+	   in 
+	   {s = \\t,p,o =>  cl.s ! t ! p ! o ++ rs.s ! np.a };
+	  
+    CleftAdv ad ss = { s = \\t,b,o => ad.s  ++ ss.s};
+        
+    ExistNP np =         
+      mkSClause "tx:yhaV" (agrP3 (fromAgr np.a).g (fromAgr np.a).n) -- त्यहाँ
+        (insertObj (\\_ => np.s ! NPC Nom) (predAux np.t)) ;
+
+    ExistIP ip = 
+       --let cl = mkSClause ("junx:" ++ ip.s ! Nom) (agrP3 Masc ip.n) (predAux auxBe) ; -- जुन्
+       let cl = mkSClause ("tx:yhaV" ++ ip.s ! Nom) (agrP3 Masc ip.n) (predAux NonLiving) ; --  त्यहाँ
+	   in {
+       s = \\t,p,qf => case qf of { 
+	      QDir   => cl.s ! t ! p ! ODir;
+          QIndir => cl.s ! t ! p ! ODir
+		  }
+		};
+
+
+    ProgrVP vp =  (predProg vp) ;
+
+    ImpPl1 vp = {s =  vp.obj.s ++ (vp.s ! ResNep.Imp).inf ++ vp.comp ! (agrP1 Masc Pl)} ;
+	
+    --ImpP3 np vp = {s = np.s ! NPC Nom ++ "lai:" ++ (vp.s ! PVForm ).inf ++ "def"} ;
+    ImpP3 np vp = {s = np.s ! NPC Acc ++ (vp.s ! PVForm ).inf ++ "def"} ;
+}
diff --git a/lib/src/nepali/src/LexiconNep.gf b/lib/src/nepali/src/LexiconNep.gf
new file mode 100644
--- /dev/null
+++ b/lib/src/nepali/src/LexiconNep.gf
@@ -0,0 +1,382 @@
+--# -path=.:prelude:alltenses
+
+-- regN  - Regular Nouns
+-- mkNF  - Femenine Nouns
+-- mkNUN - Uncountable Nouns
+
+-- In noun cases if you don't provide any parameter
+-- Here is the default forms it takes
+{-
+-- Default animacy : nonliving (inanimate)
+-- Default Honorific form : 3rd Person Low grade Honorofic(Pers3_L)
+-- Default gender : masculine
+-- human/profession/living : Living 
+-}
+-- ParadigmsNep for details
+
+
+concrete LexiconNep of Lexicon = CatNep ** 
+  open ParadigmsNep, MorphoNep, Prelude in {
+
+  flags 
+    -- optimize=values ;
+    coding = utf8;
+
+  lin
+  airplane_N = regN "hvaI:jhaj" ; -- हवाईजहाज   
+  answer_V2S = mkV2 (compoundV "ftx:tr" (mkV "dinu")) ; -- उत्तर दिनु
+  apartment_N = regN "koQa" ; -- कोठा
+  apple_N = regN "sx:yaF"; -- स्याऊ
+  art_N = regN "kla" ; -- कला
+  ask_V2Q = mkV2 (mkV "soDx:nu") ; -- सोध्नु
+  baby_N = regN "bCx:Ca" living ; -- बच्चा
+  bad_A = mkA "Krab" ; -- खराब
+  bank_N = regN "bx:yan:x:k" ; -- ब्याङ्क
+  beautiful_A = mkA "ramx:ro" ; -- राम्रो
+  become_VA = mkV "hunu" ; -- हुनु
+  beer_N = regN "biyr" ; -- बियर
+  beg_V2V =  mkV2V (compoundV "Agx:rh" do_V2) lai "" False ; -- आग्रह
+  big_A = mkA "Qulo" ; -- ठुलो
+  bike_N = regN "sai:kl" ; --साइकल
+  bird_N = regN "Cra" living ; -- चरा
+  black_A =  mkA "kalo" ; -- कालो
+  blue_A = mkA "nilo" ; -- निलो
+  boat_N = regN "xun:x:ga" ; -- डुङ्गा
+  book_N = regN "kitab" ; -- किताब
+  boot_N = regN "jutx:ta"; -- जुत्ता
+  boss_N = regN "hakim" human Pers3_H ; -- हाकिम
+  boy_N = regN "keqa" human; -- केटा 
+  bread_N = regN "roqI" ; -- रोटी
+  break_V2 = mkV2 (mkV "BaVCx:nu") ; -- भाँच्नु
+  broad_A = mkA "Prakilo" ; -- फराकिलो
+  brother_N2 = mkN2 (regN "daju" human Pers3_H) (mkPrep "ko") ""; 
+  brown_A = mkA "KEro" ; -- खैरो
+  butter_N = mkNUC "nwnI" feminine; -- नौनी
+  buy_V2 = mkV2 (mkV "kinx:nu"); -- किन्नु
+  camera_N = regN "kx:yamra" ; -- क्यामरा
+  cap_N = regN "qopi" ; -- टोपि
+  car_N = regN "kar" ; -- कार
+  carpet_N = regN "karx:rpeq" ; -- कार्रपेट
+  cat_N = regN "biralo" ; -- बिरालो
+  ceiling_N = regN "ct" ; -- छत
+  chair_N = regN "kurx:sI" ; -- कुर्सी
+  cheese_N = mkNF "Cij" ; --चिज
+  child_N = regN "bCx:Ca" living ; -- बच्चा
+  church_N = regN "girx:jaGr" ; -- चर्च , गिर्जाघर
+  city_N = regN "Shr" ; -- शहर
+  clean_A = mkA "sPa" ; -- सफा
+  clever_A = mkA "baQo" ; -- बाठो
+  close_V2 =  mkV2 (compoundV "bnx:d" do_V2) ; --  बन्द गर्नु
+  coat_N = regN "koq" ; -- कोट
+  cold_A = mkA "Ciso" ; -- चिसो
+  come_V = mkV "Afnu" ; -- आउनु
+  computer_N = regN "kmx:px:yuqr" ; -- कम्प्युटर
+  country_N = regN "deS" ; -- देश
+  cousin_N = regN "kaka" ; -- काका
+  cow_N = mkNF "gaI:" living Pers3_M ; -- गाई
+  die_V = mkV "mrx:nu" ; -- मर्नु
+  dirty_A = mkA "Pohor" ; -- फोहोर
+  distance_N3 = mkN3 (regN "durI") (mkPrep "deKi") (mkPrep "smx:m") "ko"  ; -- दुरी, देखी, सम्म, त्यहाँ
+  doctor_N = regN "xakx:qr" profession Pers3_H ; -- डाक्टर, / Cikitx:sk - चिकित्सक
+  dog_N = regN "kukur" living; -- कुकुर
+  door_N = regN "Xoka" ; -- ढोका
+  drink_V2 = mkV2 (mkV "pifnu") ; -- पिउनु
+  --easy_A2V = mkA "sjIlo" ; -- सजीलो
+  eat_V2 = mkV2 (mkV "Kanu") "" ; -- खानु
+  empty_A = mkA "KalI" ; -- खाली
+  enemy_N = regN "Stx:ru" living ; -- शत्रु
+  factory_N = regN "karKana" ; -- कारखाना
+  father_N2 = mkN2 (regN "buba" living Pers3_H) (mkPrep "ko") "" ; -- बुबा, बाबु
+  fear_VS = mkV "xrafnu"; -- डराउनु
+  find_V2 = mkV2 (mkV "pafnu") ; -- पाउनु
+  fish_N = regN "maca" living ; -- माछा
+  floor_N = regN "BuVI:" ; -- भुँई
+  forget_V2 = mkV2 (mkV "birx:snu") ; -- बिर्सनु 
+  fridge_N = regN "Px:rij" ; -- फ्रिज
+  friend_N = regN "saTI" living Pers3_M ; -- साथी
+  fruit_N = regN "Pl" ; -- फल
+  --fun_AV = mkAdV "rmai:lo" ; -- रमाइलो
+  garden_N = regN "bgEVCa" ; -- बगैँचा
+  girl_N = mkNF "keqI" living ; -- केटी  
+  glove_N = regN "pYx:ja"; -- पञ्जा
+  gold_N = regN "sun" ; -- सुन
+  good_A = mkA "ramx:ro" ; -- राम्रो
+  go_V = mkV "janu" ; -- जानु
+  green_A = mkA "hriyo" ; -- हरियो
+  harbour_N = regN "bnx:drgah" ; -- बन्दरगाह
+  hate_V2 = mkV2 (compoundV "GRNa" do_V2) ; -- घृणा
+  hat_N = regN "qopI" ; -- टोपी
+  -- have_V2 = dirV2 (mk5V "ha?e" "has" "had" "had" "ha??ng") ; ????MAY BE NOT APPLICABLE
+  hear_V2 = mkV2 (mkV "sunx:nu") ; -- सुन्नु
+  hill_N = regN "phax" ; -- पहाड
+  hope_VS = (compoundV "ASa" do_V2); -- आशा
+  horse_N = regN "Goxa" living ; -- घोडा
+  hot_A = mkA "tato" ; -- तातो
+  house_N = regN "Gr" ; -- घर
+  important_A = mkA "jrurI" ; -- जरुरी
+  industry_N = regN "fDog" ; -- उधोग
+  iron_N = regN "Plam" ; -- फलाम
+  king_N = regN "raja" living Pers3_H; -- राजा
+  know_V2 = mkV2 (mkV "Cinx:nu") ; -- चिन्नु 
+  know_VS = (mkV "Taha pafnu") ; -- थाहा पाउनु
+  know_VQ = (compoundV "Taha" (mkV2 (mkV "pafnu"))) ; -- थाहा पाउनु
+  lake_N = regN "tal" ; -- ताल
+  lamp_N = regN "btx:ti" ; -- बत्ति
+  learn_V2 = mkV2 (mkV "sikx:nu") ; -- सिक्नु
+  leather_N = regN "cala" ; -- छाला
+  leave_V2 = mkV2 (mkV "coxx:nu") ; -- छोड्नु
+  like_V2 = mkV2 (compoundV "mn" (mkV "prx:nu")); -- मन पर्नु ???? NOT COVERED BY RULE
+  listen_V2 = mkV2 (mkV "sunx:nu") ; -- सुन्नु
+  live_V = mkV "jifnu" ; -- जिउनु -- px:rtkx:z प्रतक्ष
+  long_A = mkA "lamo" ; -- लामो
+  lose_V2 = mkV2 (mkV "hrafnu") ; -- हराउनु
+  love_N = regN "maya" ; -- माया
+  love_V2 = mkV2 (compoundV "maya" do_V2) lai ; -- "nwN"; -- माया गर्नु
+  man_N = regN "manx:ce" human ; -- मान्छे
+  married_A2 = mkA "vivahit" "sVg" ; -- सँग विवाहित
+  meat_N = mkNUC "masu" masculine ; -- मासु
+  milk_N = mkNUC "duD" masculine ; -- दुध
+  moon_N = regN "Cnx:rx:dma" ; -- चन्र्दमा ??
+  mother_N2 = mkN2 (mkNF "Ama" living Pers3_H) (mkPrep "ko") ""  ;   -- need ko discuss
+  mountain_N = regN "himal" ; -- हिमाल
+  music_N = regN "sMgIt" ; -- संगीत
+  narrow_A = mkA "saMguro" ; -- सांगुरो
+  new_A = mkA "nayaV" ; -- नायाँ
+  newspaper_N = regN "smaCarptx:r" ; -- समाचारपत्र
+  oil_N = mkNUC "tel" masculine ; -- तेल
+  --old_A = mkA "purano" ; -- पुरानो
+  old_A = mkA "buXo" ; -- बुढो
+  open_V2 = mkV2 (mkV "Kolx:nu") ; -- खोल्नु
+  paint_V2A = mkV2 (compoundV "rVg" (mkV2 (mkV "lagafnu"))) lai ; 
+  paper_N = regN "kagj" ; -- कागज
+  paris_PN = mkPN "peris" ; -- ???? DEFAULT AS MALE (inflection) is this correct ????
+  peace_N = mkNUC "Sanx:ti" masculine ; -- शान्ति ???? Not sure
+  pen_N = regN "klm" ; -- कलम
+  planet_N = regN "gx:rh" ; -- ग्रह
+  plastic_N = regN "palx:sx:qik" ; -- पाल्स्टिक
+  play_V2 = mkV2 (mkV "Kelx:nu") ; -- खेल्नु
+  policeman_N = regN "px:rhrI" human Pers3_M ; -- प्रहरी 
+  priest_N = regN "purohit" human Pers3_H ; -- पुरोहित
+  -- probable_AS = mkAdj1S (regA "pr?bable") ;
+  queen_N = mkNF "ranI" human Pers3_H ; -- रानी
+  radio_N = regN "rexiyo"; -- रेडियो
+  rain_V0 = compoundV "brx:za" (mkV "hunu" ) ; -- बर्षा ???? hunu/bhayo irregular case need to be added
+  read_V2 = mkV2 (mkV "pXx:nu"); -- पढ्नु 
+  red_A = mkA "rato" ; -- रातो  
+  religion_N = regN "Drx:m" ; -- धर्म
+  restaurant_N = regN "resx:qurenx:q" ; -- रेस्टुरेन्ट
+  river_N = regN "Kola" ; --खोला
+  rock_N = regN "Xun:x:ga" ; -- ढुङ्गा
+  roof_N = regN "cana" ; -- छाना
+  rubber_N = regN "rbr" ; -- रबर
+  run_V = mkV "kudx:nu" ; -- कुद्नु
+  say_VS = mkV "Bnx:nu" ; -- भन्नु
+  school_N = regN "viDaly" ; -- विधालय
+  science_N = regN "vijx:Yn" ; -- विज्ञन
+  sea_N = regN "smunx:dx:r" ; -- समुन्द्र
+  seek_V2 = mkV2 (mkV "Kojx:nu" ) ;
+  sell_V3 = mkV3 (mkV "beCx:nu") "" lai ; --  बेच्नु   ram(le) sita (lai) kitab bachyo
+  send_V3 = mkV3 (mkV "pQafnu") "" lai ; -- पठाउनु 
+  sheep_N = regN "Bexa" living ; -- भेडा
+  ship_N = regN "jhaj" ; -- जहाज
+  shirt_N = regN "srx:" ; -- सर्ट
+  shoe_N = regN "jutx:ta" ; -- जुत्ता
+  shop_N = regN "psl" ; -- पसल
+  short_A = mkA "coqo" ; --छोटो
+  silver_N = regN "CaVdi" ; -- चाँदि
+  sister_N = mkNF "dIdI" human Pers3_H ; -- दीदी
+  sleep_V = mkV "sutx:nu" ; -- सुत्नु
+  small_A = mkA "sano" ; -- सानो
+  snake_N = regN "rx:zp" ; -- र्षप
+  sock_N = regN "moja" ; -- मोजा
+  speak_V2 = mkV2 (mkV "bolx:nu") ; -- बोल्नु
+  star_N = regN "tara" ; -- तारा
+  steel_N = regN "sx:qil" ; -- स्टिल
+  stone_N = regN "Xun:x:ga" ; -- ढुङ्गा
+  stove_N = regN "Culo" ; -- चुलो
+  student_N = regN "biDx:yarx:Ti" human ; --बिध्यार्थि
+  stupid_A = mkA "murx:K" ; -- मुर्ख
+  sun_N = regN "surx:y"; -- सुर्य
+  switch8off_V2 = mkV2 (compoundV "sx:viC HP" do_V2) ; -- स्विच अन्
+  switch8on_V2 = mkV2 (compoundV "sx:viC Hnx:" do_V2) ; -- स्विच अफ
+  table_N = regN "qebl" ; -- टेबल
+  talk_V3 = mkV3 (compoundV "kura" (mkV2 (mkV "grx:nu"))) "sVg" ""; -- कुरा गर्नु सँग
+  teacher_N = regN "Sikx:zk" human Pers3_H ; -- शिक्षक
+  teach_V2 = mkV2 (mkV "pXafnu") ; -- पढाउनु
+  television_N = regN "qeliBijnx:" ; -- टेलिभिजन्
+  thick_A = mkA "bakx:lo" ; -- बाक्लो
+  thin_A = mkA "patlo" ; -- पातलो
+  train_N = regN "rel" ; -- रेल
+  travel_V = (compoundV "yatx:ra" do_V2) ; -- Gumx:nu -- घुम्नु / यात्रा
+  tree_N = regN "ruK" ; -- रुख
+  ugly_A = mkA "nramx:ro" ; -- नराम्रो
+  understand_V2 = mkV2 (mkV "buJx:nu") ; -- बुझ्नु
+  university_N = regN "biSx:vbiDx:yaly" ; -- बिश्वबिध्यालय
+  village_N = regN "gaFV" ; -- गाऊँ
+  wait_V2 = mkV2 (mkV "prx:Knu") ; -- पर्खनु 
+  walk_V = mkV "hixx:nu" ; -- हिड्नु
+  warm_A = mkA "tato" ; -- तातो
+  war_N = regN "lxaI:" ; -- लडाई
+  watch_V2 = mkV2 (mkV "herx:nu") ; -- हेर्नु
+  water_N = mkNUC "panI" feminine ; 
+  white_A = mkA "seto" ; -- सेतो
+  window_N = regN "Jx:yal" ; -- झ्याल
+  wine_N = regN "vaI:n" ; -- वाईन
+  win_V2 = mkV2 (mkV "jitx:nu") ; -- जित्नु
+  woman_N = mkNF "AI:maI:" Living Pers3_M ; -- आईमाई
+  wonder_VQ = compoundV "HCmx:m" (mkV "hunu") ; -- अचम्म हुनु
+  wood_N = regN "kaQ" ; -- काठ
+  write_V2 = mkV2 (mkV "leKx:nu") ; -- लेख्नु
+  yellow_A = mkA "phelo" ; --पहेलो
+  young_A = mkA "jvan" ; -- जवान
+  do_V2 = mkV2 (mkV "grx:nu") ; -- गर्नु
+  now_Adv = mkAdv "HhIle" ; -- अहीले
+  already_Adv = mkAdv "HGinE" ; -- अघिनै
+  song_N = regN "gIt" ; -- गित
+  add_V3 = mkV3 (mkV "joxx:nu") "sVg" "" ; -- जोड्नु
+  number_N = regN "sMKx:ya" ; -- संख्या
+  put_V2 = mkV2 (mkV "raKx:nu") ; -- राख्नु
+  stop_V = mkV "rokx:nu" ; -- रोक्नु
+  jump_V = mkV "fPx:rnu" ; -- उफ्रनु 
+  left_Ord = {s = "bayaV" ; n = singular}; -- ????
+  right_Ord = {s = "dayaV" ; n = singular}; -- ????
+  far_Adv = mkAdv "qaXa" ; -- टाढा
+  correct_A = mkA "Qik" ; -- ठिक
+  dry_A = mkA "suKx:Ka" ; -- सुख्खा
+  dull_A = mkA "mnx:D" ; -- मन्ध
+  full_A = mkA "Bri" ; -- भरि
+  heavy_A = mkA "BarI" ; -- भारी
+  near_A = mkA "njik" ; -- नजिक
+  rotten_A = mkA "kuhia:ko" ; -- कुहिएको
+  round_A = mkA "golo" ; -- गोलो
+  sharp_A = mkA "tIKo" ; -- तीखो
+  smooth_A = mkA "smtl" ; -- समतल
+  straight_A = mkA "siDa" ; -- सिधा
+  wet_A = mkA "Ciso" ; -- चिसो
+  wide_A = mkA "Prakilo" ; -- फराकिलो
+  animal_N = regN "jnavar" ; -- जनावार
+  ashes_N = mkNUC "KranI" masculine ; -- खरानी
+  back_N = regN "An:" ; -- आङ
+  bark_N = regN "bokx:ra" ; -- बोक्रा
+  belly_N = regN "peq" ; -- पेट
+  blood_N = mkNUC "rgt" feminine ; -- रगत
+  bone_N = regN "hxx:xI" ; -- हड्डी
+  breast_N = regN "sx:tn" ; -- स्तन
+  cloud_N = regN "badl" ; -- बादल
+  day_N = regN "din" ; -- दिन
+  dust_N = regN "Dulo" ; -- धुलो
+  ear_N = regN "kan" ; -- कान
+  earth_N = regN "pRTx:vi" ; -- पृथ्वि
+  egg_N = regN "HNx:xa" ; -- अण्डा
+  eye_N = regN "AVKa" ; -- आँखा
+  fat_N = regN "moqo" ; -- मोटो 
+  feather_N = regN "px:vaVK" ; -- प्वाँख
+  fingernail_N = regN "nn:" ; -- नङ
+  fire_N = regN "Ago" ; -- आगो
+  flower_N = regN "Pul" ; -- फुल
+  fog_N = mkNUC "kuI:ro" feminine ; --  कुईरो 
+  foot_N = regN "Kuqx:qa" ; -- खुट्टा
+  forest_N = regN "jVgl" ; -- जँगल
+  grass_N = mkNUC "GaVs" masculine ; -- घाँस
+  guts_N = regN "gt" ; -- FIXME: no singular
+  hair_N = mkNUC "kpal" masculine ; -- कपाल
+  hand_N = regN "hat" ; -- हात
+  head_N = regN "qafkos" ; -- टाउको
+  heart_N = regN "muqu" ; -- मुटु
+  horn_N = regN "hrx:n" ; -- हर्न
+  husband_N = regN "pti" human Pers3_M ; -- पति
+  ice_N = mkNUC "hiFV" masculine ; -- हिऊँ
+  knee_N = regN "GuVxa" ; -- घुँडा
+  leaf_N = regN "pat" ; -- पात
+  leg_N = regN "Kuqx:qa" ; -- खुट्टा
+  liver_N = regN "klejo" ; -- कलेजो
+  louse_N = regN "jumx:ra" ; -- जुम्रा
+  mouth_N = regN "muK" ; -- मुख
+  name_N = regN "nam" ; -- नाम
+  neck_N = regN "GaVqI" ; -- घाँटी
+  night_N = regN "rat" ; -- रात
+  nose_N = regN "nak" ; -- नाक
+  person_N = regN "manis" ; -- मानिस
+  rain_N = mkNUC "brx:za" feminine ; -- बर्षा
+  road_N = regN "szk" ; -- सडक
+  root_N = regN "jx" ; -- जड
+  rope_N = regN "xorI" ; -- डोरी
+  salt_N = mkNUC "nun" masculine ; -- नुन
+  sand_N = mkNUC "baluva" masculine ; -- बालुवा
+  seed_N = regN "bif" ; -- बिउ
+  see_V2 = mkV2 (mkV "herx:nu" ) lai ; -- हेर्नु
+  skin_N = regN "cala" ; -- छाला
+  sky_N  = regN "AkaS" ; -- आकाश
+  smoke_N = mkNUC "DuvaV" masculine ; -- धुवाँ
+  snow_N = regN "hifV" ; -- हिउँ
+  stick_N = regN "lQx:Qi" ; -- लठ्ठि
+  tail_N = regN "puCx:cr" ; -- पुच्छर
+  tongue_N = regN "jibx:ro" ; -- जिब्रो
+  tooth_N = regN "daVt" ; -- दाँत 
+  wife_N = mkNF "ptx:nI" Living ; -- पत्नी
+  wind_N = regN "hurI" ; -- हुरी
+  wing_N = regN "pMKa" ; -- पंखा
+  worm_N = regN "juga" ; -- जुगा
+  year_N = regN "brx:z" ; -- बर्ष
+  blow_V = mkV "px:rhar" ; -- प्रहार
+  breathe_V = compoundV "sas" (mkV "Perx:nu" ) ; -- सास फेर्नु
+  burn_V = mkV "balx:nu" ; -- बाल्नु
+  dig_V = mkV "Knx:nu" ; -- खन्नु
+  fall_V = mkV "Jrx:nu" ; -- झर्नु
+  float_V = mkV "ftx:rnu" ; -- उत्रनु
+  flow_V = mkV "bhnu" ; -- बहनु
+  fly_V = mkV "fxx:nu" ; -- उड्नु
+  freeze_V = mkV "jmafnu" ; -- जमाउनु
+  give_V3 = mkV3 (mkV "dinu") lai "" ; -- दिनु
+  laugh_V = mkV "hasx:nu" ; -- हास्नु  
+  lie_V = compoundV "Juqo" (mkV "bolx:nu"); -- झुटो बोल्नु  
+  play_V = mkV "Kelx:nu" ; -- खेल्नु
+  sit_V = mkV "bsx:nu" ; -- बस्नु
+  sew_V = mkV "sifnu" ; -- सिउनु
+  sing_V = mkV "gafnu" ; -- गाउनु  
+  smell_V = mkV "sugnx:D" ; -- सुगन्ध
+  spit_V = mkV "Tukx:nu" ; -- थुक्नु
+  stand_V = mkV "fQx:nu" ; -- उठ्नु
+  swell_V = mkV "suninu" ; -- सुनिनु
+  swim_V = compoundV "pwxI" (mkV "Kelx:nu" ) ;
+  think_V = mkV "soCx:nu" ; -- सोच्नु
+  turn_V = mkV "plx:qinu" ; -- पल्टिनु
+  vomit_V = mkV "cadnu" ; -- छादनु
+  bite_V2 = mkV2 (mkV "qokx:nu") ; -- टोक्नु
+  count_V2 = mkV2 (mkV "gnx:nu") ; -- गन्नु
+  cut_V2 = mkV2 (mkV "kaqnu") ; -- काटनु
+  fear_V2 = mkV2 (mkV "xrafnu") ; -- डराउनु
+  fight_V2 = mkV2 (mkV "lxx:nu") ; -- लड्नु
+  hit_V2 = mkV2 (mkV "hanx:nu" ) lai ; -- हान्‌नु
+  hold_V2 = mkV2 (mkV "smatx:nu") ; -- समात्नु
+  hunt_V2 = mkV2 (compoundV "Sikar" do_V2) ; -- शिकार
+  kill_V2 =  mkV2 (mkV "marx:nu") ;  -- मार्नु
+  pull_V2 = mkV2 (mkV "tanx:nu"); -- तान्नु
+  push_V2 = mkV2 (compoundV "Dkx:ka" (mkV "dinu")) lai ;
+  rub_V2 = mkV2 (mkV "maxnu") ; -- माडनु
+  scratch_V2 = mkV2 (mkV "korx:nu") lai ; -- कोर्नु
+  split_V2 = mkV2 (mkV "Cirx:nu") lai ; -- चिर्नु
+  squeeze_V2 = mkV2 (mkV "TiCx:nu") lai ; -- थिच्नु
+  stab_V2 = mkV2 (compoundV "cura" hit_V2) ; -- छुरा हान्नु
+  suck_V2 = mkV2 (mkV "Cusx:nu") ; -- चुस्नु
+  throw_V2 = mkV2 (mkV "Palx:nu") ; -- फाल्नु
+  tie_V2 = mkV2 (mkV "baVDnu") ; -- बाँधनु
+  wash_V2 = mkV2 (mkV "Dunu") ; -- धुनु
+  wipe_V2 = mkV2 (mkV "pucx:nu"); -- पुछ्नु  
+--b  other_A = mkA "Hru" ; -- अरु  NOT IN ABSTRACT
+  grammar_N = regN "vx:yakrN" ; -- व्याकरण
+  language_N = regN "Baza" ; -- भाषा
+  rule_N = regN "niym" ; -- नियम
+
+-- added 4/6/2007
+  john_PN = mkPN "jon" masculine human Pers3_L ;
+  question_N = regN "px:rSx:n" ; -- प्रश्न
+  ready_A = mkA "tyar" ; -- तयार
+  reason_N = regN "karN" ; -- कारण
+  today_Adv = mkAdv "Aj" ; -- आज
+  uncertain_A = mkA "HniSx:Cit" ; -- अनिश्चित
+
+oper
+  lai = "laI:" ;
+
+} ;
diff --git a/lib/src/nepali/src/MorphoNep.gf b/lib/src/nepali/src/MorphoNep.gf
new file mode 100644
--- /dev/null
+++ b/lib/src/nepali/src/MorphoNep.gf
@@ -0,0 +1,874 @@
+--# -path=.:../../prelude
+--
+-- 1 Morpholical inflection of Noun and Verbs of Nepali
+--
+--  by Dinesh Simkhada, Shafqat Virk - 2011
+--
+
+resource MorphoNep = ResNep ** open Prelude,Predef in {
+
+  flags optimize=all ;
+  coding = utf8;
+
+  param 
+    {-
+    For distinguishing root ending in -a- and rest of other.
+    Root ending in -a/अ or h - is regarded as reg and rest ireg 
+    -}
+    VCase = VReg | VIReg ; 
+    
+
+--1 Nouns
+  oper
+    
+    mkN : (x1,_,_,_,_,_,_,_,_,_,_,x12 : Str) -> Gender -> NType -> NPerson -> Noun = 
+      \sn,sa,si,sd,sab,sl,pn,pa,pi,pd,pab,pl,g,t,h -> {
+      s = table {
+      Sg => table {
+        Nom => sn ;
+        Acc => sa ;
+        Ins => si ;
+        Dat => sd ;
+        Abl => sab ;
+        Loc => sl
+        } ;
+      Pl => table {
+        Nom => pn ;
+        Acc => pa ;
+        Ins => pi ;
+        Dat => pd ;
+        Abl => pab ;
+        Loc => pl
+        }
+      } ;
+      g = g ;
+      t = t ;
+      h = h
+    } ;    
+
+  -- TODO
+  -- ?? NEED TO ADD CASE IF ENDS WITH 'o' (PG. 99 Jaya)
+  
+  -- Regular nouns
+  mkNMF : Str -> Gender -> NType -> NPerson -> Noun ;
+  mkNMF str g t h = mkN str (str + "laI:") (str + "le") (str + "laI:") (str + "baq") (str + "ma") 
+                   (str + "hru") (str + "hrulaI:") (str + "hrule") (str + "hrulaI:") (str + "hrubaq") (str + "hruma") g t h ;  
+  
+  -- Regular Nouns
+  mkNReg : Str -> NType -> NPerson -> Noun ;
+  mkNReg str typ hnr = mkNMF str Masc typ hnr ;
+  
+  -- Faminine nouns
+  mkNFem : Str -> NType -> NPerson -> Noun ;
+  mkNFem str typ hnr = mkNMF str Fem typ hnr ; 
+  
+  
+  -- Uncountable nouns, which have same singular and plular form
+  -- eg water
+  mkNUnc : Str -> Gender -> NType -> NPerson -> Noun ;
+  mkNUnc str g t h = mkN str (str + "laI:") (str + "le") (str + "laI:") (str + "baq") (str + "ma") 
+                     str (str + "laI:") (str + "le") (str + "laI:") (str + "baq") (str + "ma")  g t h ;  
+
+  -- Proper Names
+  regN1 : Str -> Gender -> NType -> NPerson -> Noun ;
+  regN1 str g t h = mkN str (str + "laI:") (str + "le") (str + "laI:") (str + "baq") (str + "ma")
+                    str str str str str str g t h ;
+
+
+-- pronouns
+  makePron : (x1,_,_,_,_,x6 : Str) -> {s : Case => Str} = 
+    \n,ac,i,d,ab,l-> { 
+        s = table {
+              Nom => n ;
+              Acc => ac ;
+              Ins => i ;
+              Dat => d ;
+              Abl => ab ;
+              Loc => l
+            }
+        } ;
+    
+  makePronReg : Str -> {s : Case => Str} ;
+  makePronReg str = makePron str (str + "laI:") (str + "le") (str + "laI:") (str + "baq") (str + "ma") ;
+
+--2. Derminers  
+  makeDet : Str -> Str -> Str -> Str -> Number -> Determiner = 
+   \s1,s2,s3, s4, n -> {
+     s = table {
+         Sg => table { Masc => s1 ;
+                       Fem  => s2 } ;
+         Pl => table { Masc => s3 ;
+                       Fem  => s4 }
+	     }  ;
+      n = n
+	} ;	
+
+-- maIdetn helper    
+  makeIDet : Str -> Str -> {s : Gender => Str} = 
+    \s1,s2 -> {
+      s = table {
+          Masc => s1 ;
+		  Fem  => s2
+	      } 
+     } ;
+
+-- Quantifiers
+  makeQuant : Str -> Str -> Str -> Str -> {s : Number => Gender => Str } =
+   \sm,sf,pm,pf -> {
+    s = table { 
+        Sg => table { Masc => sm ;
+                      Fem  => sf } ;
+	    Pl => table { Masc => pm ;
+                      Fem  => pf }
+	    }
+    } ; 
+    
+-- Proposition     
+  makePrep : Str -> Preposition = \str -> {s = str } **  { lock_Prep = <>};
+
+  
+--3. Verbs
+  mkVerb : (_: Str) -> Verb = \inf ->
+   let root  = (tk 2 inf) ; 
+   
+    in { 
+     s = table {
+         Root     => root ;
+         Inf      => inf ;
+         PVForm   => (tk 1 inf) ;
+         Imp      => (mkImpForm root).s ;
+         ProgRoot aspect number gender => (mkProgRoot root aspect number gender).s ;
+
+         VF tense aspect polarity person number gender => 
+            case aspect of {
+                 Imperf => (mkVImperf root tense polarity person number gender).s ;
+                 Perf   => (mkVPerf root tense polarity person number gender).s
+            }
+          }
+       } ;
+  
+  --For the case of lets (lets sleep)
+  mkImpForm : Str -> {s:Str} ;
+  mkImpForm str =
+   let vcase = (rootCheck str).vcase;
+       root2 = (rootCheck str).root2
+    in { 
+     s = case vcase of {
+         VReg => root2 + "wV" ;
+         _    => root2 + "AV"
+      };
+    };
+    
+  
+  --For the progressive root case
+  mkProgRoot : Str -> Aspect -> Number -> Gender -> {s : Str } = 
+   \root,aspect,number,gender -> 
+    let root1 = (rootCheck root).root1 ;
+        root2 = (rootCheck root).root2 ;
+        vcase = (rootCheck root).vcase
+     in {
+      s= case <vcase,root> of {
+        <VReg, _> => (mkProgReg  root2 aspect number gender).s ;
+        <_, "ja"> => (mkProgIReg root  aspect number gender).s ;
+        <_, "ha"> => (mkProgIReg root  aspect number gender).s ;
+        <_,    _> => (mkProgIReg root2 aspect number gender).s 
+        };
+      };
+   
+   
+   mkProgReg : Str -> Aspect -> Number -> Gender -> {s : Str } =
+     \root2,aspect,number,gender -> {
+      s = case <aspect,number,gender> of {
+        <Imperf, _,    _> => root2 + "dE" ;
+       
+        <Perf,  Sg, Masc> => root2 + "irheko" ;
+        <Perf,  Sg, Fem>  => root2 + "irheki" ;
+        <Perf,  Pl,    _> => root2 + "irheka"
+        };
+      };
+    
+   
+   mkProgIReg : Str -> Aspect -> Number -> Gender -> {s : Str } =
+     \root,aspect,number,gender -> {
+      s = case <aspect,number,gender> of {
+        <Imperf, _,    _> => root + "dE" ;
+       
+        <Perf,  Sg, Masc> => root + "i:rheko" ;
+        <Perf,  Sg, Fem>  => root + "i:rheki" ;
+        <Perf,  Pl,    _> => root + "i:rheka" 
+        };
+      } ;       
+       
+   --need to check for want_VV <- Not inflected correctly
+   rootCheck : Str -> {root1:Str; root2:Str; vcase: VCase} = 
+     \root -> {
+     {-
+     Root inflection case
+     1. irregular case of Janu/जानु/go 
+     root = जा     root1 = जान्       root2 = ग     
+     
+     2. irregular case of Hunu/हुनु/Become 
+     root = हु     root1 = हुन्       root2 = भ
+     
+     3. reg Verbs ending in Consonants - पढनु/to study
+     root = पढ्,     root1 = पढ   root2 = पढ् <- original
+     root = पढ्,     root1 = पढ्,  root2 = पढ <- changed to this
+                                         make sure it doesn't break
+     
+     4. Khanu/खानु/to eat, Dinu/दिनु /to Give
+     root = खा      root1 = खान्     root2 = खा
+     
+     5. Dhunu/धुनु/wash, Runu/रुनु/Cry
+     root = धु       root1 = धुन्      root2 = धो     
+     
+     6. Aaunu/आउनु/to Come, Pathaunu/पठाउनु/to Send
+     root = आउ    root1 = आउँ     root2 = आ        
+     -}
+     
+    root1 = case root of {
+          "ja"                => root + "nx:" ;
+          "hu"                => root + "nx:" ;
+          rot + "x:"          => root ;
+          rot + ("h")         => root + "nx:" ; --cmnt
+          rot + ("a"|"i"|"I") => root + "nx:" ;
+          rot + ("e"|"u"|"U") => root + "nx:" ;
+          rot + ("f"|"F")     => root + "V" ;
+          _                   => root
+        } ; 
+    root2 = case root of {
+          "ja"                => "g" ;
+          "hu"                => "B" ;
+          rot + "x:"          => rot ;
+          rot + ("a"|"i"|"I") => root ;
+          rot + ("h")         => root + "nx:" ; --cmnt
+          rot + ("e"|"u"|"U") => rot + "o" ;
+          rot + ("f"|"F")     => rot ;
+          _                   => root
+        } ; 
+    vcase = case root of {
+          rot + "x:" => VReg;   
+          --rot + "h"  => VReg;   
+          _          => VIReg
+        }
+    } ;
+
+   mkVImperf : Str -> VTense -> Polarity -> NPerson -> Number -> Gender -> {s:Str} = 
+     \root, t, po, pn, n, g ->
+       let root1 = (rootCheck root).root1 ;
+           root2 = (rootCheck root).root2 ;
+           vcase = (rootCheck root).vcase ;
+        in
+        {s = case t of {
+             NPresent       => (mkVPreNP  root root1 vcase po pn n g).s ;
+             NPast Simpl    => (mkVPstSNP root root2 vcase po pn n g).s ;
+             NPast Hab      => (mkVPstHNP root root1 vcase po pn n g).s ;
+             --NPast Unknown  => (mkVPstUNP root root2 vcase po pn n g).s ;
+             NFuture Defin  => (mkVFutDNP root po pn n g).s ;
+             NFuture NDefin => (mkVFutNDNP root root2 vcase po pn n g).s 
+            } 
+         } ;
+
+ 
+   mkVPerf : Str -> VTense -> Polarity -> NPerson -> Number -> Gender -> {s:Str} = 
+     \root, t, po, pn, n, g ->
+       let root1 = (rootCheck root).root1 ;
+           root2 = (rootCheck root).root2 ;
+           vcase = (rootCheck root).vcase ;
+        in
+        {s = case t of {
+             --it seems root has no use in these cases, root2 worsk for all
+             --if no problem arises better to remove root parameter
+             NPresent       => (mkVPreP  root root2 vcase po pn n g).s ;
+             NPast Simpl    => (mkVPstSP root root2 vcase po pn n g).s ;
+             NPast Hab      => (mkVPstHP root root2 vcase po pn n g).s ;
+             --NPast Unknown  => (mkVPstUP root root2 vcase po pn n g).s ;             
+             NFuture Defin  => (mkVFutDefP root root2 vcase po pn n g).s ;
+             NFuture NDefin => (mkVFutNDefP root root2 vcase po pn n g).s         
+            }
+         };
+  
+ 
+-- Present, Nonperfective aspect, Non-progressive mode, 
+   mkVPreNP : Str -> Str -> VCase -> Polarity -> NPerson -> Number -> Gender -> {s:Str} = 
+     \root, root1, vc, po, pn, n, g ->
+      {s = case vc of {
+           VReg  => (mkVPreNPReg root po pn n g).s ;
+           VIReg => (mkVPreNPIReg root root1 po pn n g).s
+           }
+        } ;
+  
+   -- mkVPreNP Helper for VRrg case
+   mkVPreNPReg : Str -> Polarity -> NPerson -> Number -> Gender -> {s:Str} = 
+     \root, po, pn, n, g ->
+      {s = case <po, pn, n, g> of { 
+          -- Positive case
+          <Pos, Pers1,    Sg,    _> => root + "cu" ;   -- छु 
+          <Pos, Pers1,    Pl,    _> => root + "cwV" ;   -- छौं      
+          <Pos, Pers2_L,  Sg, Masc> => root + "csx:" ; -- छस्
+          <Pos, Pers2_L,  Sg, Fem>  => root + "cesx:" ; -- छेस्      
+          <Pos, Pers2_L,  Pl,   _>  => root + "cw" ;    -- छौ 
+          <Pos, Pers2_M,  Sg, Fem>  => root + "cx:yw" ;  -- छ्यौ
+          <Pos, Pers2_M,  _ ,   _>  => root + "cw" ;    -- छौ          
+          <Pos, Pers3_L,  Sg, Masc> => root + "c" ;  -- छ
+          <Pos, Pers3_L,  Sg, Fem>  => root + "ce" ;  -- छे
+          <Pos, Pers3_L,  Pl,   _>  => root + "cnx:" ;  -- छन्      
+          <Pos, Pers3_M,  Sg, Fem>  => root + "cinx:" ;  -- छिन्
+          <Pos, Pers3_M,  _,    _>  => root + "cnx:" ;  -- छन्      
+          <Pos,      _ ,  _,    _>  => root + "nuhunx:c" ; -- नुहुन्छ
+          
+          -- Negative Case
+          <Neg, Pers1,    Sg,    _> => root + "dinV" ;  -- इनँ (पढ्दिनँ)
+          <Neg, Pers1,    Pl,    _> => root + "dEnEV" ;   -- ऐनैँ (पढ्दैनैँ)
+          <Neg, Pers2_L,  Sg, Masc> => root + "dEnsx:" ; -- ऐनस् (पढदैनस्)
+          <Neg, Pers2_L,  Sg, Fem>  => root + "dinsx:" ; -- इनस् (पढदिनस्) 
+          <Neg, Pers2_L,  Pl,   _>  => root + "dEnE" ; -- ऐनै 
+          <Neg, Pers2_M,  Sg, Fem>  => root + "dinE" ; -- इनै
+          <Neg, Pers2_M,  _ ,   _>  => root + "dEnE" ; -- ऐनै           
+          <Neg, Pers3_L,  Sg, Masc> => root + "dEn" ;  -- ऐन
+          <Neg, Pers3_L,  Sg, Fem>  => root + "din" ;  -- इन
+          <Neg, Pers3_L,  Pl,   _>  => root + "dEnx:n" ;  -- ऐनन्
+          <Neg, Pers3_M,  Sg, Fem>  => root + "dinx:n" ;  -- इनन्
+          <Neg, Pers3_M,  _,    _>  => root + "dEnx:n" ;  -- ऐनन्
+          <Neg,      _ ,  _,    _>  => root + "nuhunx:n" -- नुहुन्न
+          }
+     } ;          
+   
+   -- mkVPreNP Helper for VIRrg case
+   mkVPreNPIReg : Str -> Str -> Polarity -> NPerson -> Number -> Gender -> {s:Str} = 
+    \root, root1, po, pn, n, g ->
+     {s = case <po, pn, n, g> of { 
+          -- Positive case
+          <Pos, Pers1,    Sg,    _> => root1 + "cu" ;   -- छु 
+          <Pos, Pers1,    Pl,    _> => root1 + "cwM" ;   -- छौं      
+          <Pos, Pers2_L,  Sg, Masc> => root1 + "csx:" ; -- छस्
+          <Pos, Pers2_L,  Sg, Fem>  => root1 + "cesx:" ; -- छेस्      
+          <Pos, Pers2_L,  Pl,   _>  => root1 + "cw" ;    -- छौ 
+          <Pos, Pers2_M,  Pl, Fem>  => root1 + "cx:yw" ;  -- छ्यौ
+          <Pos, Pers2_M,  _ ,   _>  => root1 + "cw" ;    -- छौ      
+          <Pos, Pers3_L,  Sg, Masc> => root1 + "c" ;  -- छ
+          <Pos, Pers3_L,  Sg, Fem>  => root1 + "ce" ;  -- छे
+          <Pos, Pers3_L,  Pl,   _>  => root1 + "cnx:" ;  -- छन्      
+          <Pos, Pers3_M,  Sg, Fem>  => root1 + "cinx:" ;  -- छिन्
+          <Pos, Pers3_M,  _,    _>  => root1 + "cnx:" ;  -- छन्      
+          <Pos,      _ ,  _,    _>  => root + "nuhunx:c" ; -- नुहुन्छ
+          
+          -- Negative Case
+          <Neg, Pers1,    Sg,    _> => root + "VdinV" ;  -- इनँ (खाँदिनँ)
+          <Neg, Pers1,    Pl,    _> => root + "VdEnEV" ;  -- ऐनैँ (खाँदैनैँ)
+          <Neg, Pers2_L,  Sg, Masc> => root + "VdEnsx:" ; -- ऐनस्  (आउँदैनस्)
+          <Neg, Pers2_L,  Sg, Fem>  => root + "Vdinsx:" ; -- इनस् (खाँदिनस्) 
+          <Neg, Pers2_L,  Pl,   _>  => root + "VdEnE" ; -- ऐनै  (खाँदैनै)
+          <Neg, Pers2_M,  Sg, Fem>  => root + "VdinE" ; -- इनै
+          <Neg, Pers2_M,  _ ,   _>  => root + "VdEnE" ; -- ऐनै           
+          <Neg, Pers3_L,  Sg, Masc> => root + "VdEn" ;  -- ऐन
+          <Neg, Pers3_L,  Sg, Fem>  => root + "Vdin" ;  -- इन (खाँदिन)
+          <Neg, Pers3_L,  Pl,   _>  => root + "VdEnx:n" ;  -- ऐनन्
+          <Neg, Pers3_M,  Sg, Fem>  => root + "Vdinx:n" ;  -- इनन्
+          <Neg, Pers3_M,  _,    _>  => root + "VdEnx:n" ;  -- ऐनन्
+          <Neg,      _ ,  _,    _>  => root + "Vnuhunx:z=n" -- नुहुन्‍न
+          }
+     } ;
+  
+  
+   
+-- Past Simple, Nonprogressive mode, nonperfective aspect
+   mkVPstSNP : Str -> Str -> VCase -> Polarity -> NPerson -> Number -> Gender -> {s:Str} = 
+     \root, root2, vc, po, pn, n, g ->
+      {s = case vc of {
+           VReg  => (mkVPstSNPReg root root2 po pn n g).s ;
+           VIReg => (mkVPstSNPIReg root root2 po pn n g).s
+           }
+        } ;         
+         
+   -- mkVPstSNP Helper for VRrg case
+   mkVPstSNPReg : Str -> Str -> Polarity -> NPerson -> Number -> Gender -> {s:Str} = 
+     \root, root2, po, pn, n, g ->
+      {s = case <po, pn, n, g> of {   
+           -- Positive case
+           <Pos, Pers1,    Sg,   _>  => root2 + "eV" ; -- एँ
+           <Pos, Pers1,    Pl,   _>  => root  + "ywM" ; -- यौं
+           <Pos, Pers2_L,  Sg,   _>  => root2 + "isx:" ; -- इस्
+           <Pos, Pers2_L,  Pl,   _>  => root  + "yw" ; -- यौ
+           <Pos, Pers2_M,   _,   _>  => root  + "yw" ; -- यौ             
+           <Pos, Pers3_L,  Sg, Masc> => root  + "yo" ; -- यो
+           <Pos, Pers3_L,  Sg, Fem>  => root2 + "I" ; -- इ (पढी)
+           <Pos, Pers3_L,  Pl,   _>  => root2 + "e" ; -- ए (पढे)     
+           <Pos, Pers3_M,  Sg, Fem>  => root2 + "inx:" ; -- इन् (पढिन्)
+           <Pos, Pers3_M,   _,   _>  => root2 + "e" ; -- ए (पढे)     
+           <Pos,       _,   _,   _>  => root  + "nuByo" ; -- नुभयो
+          
+           -- Negative case
+           <Neg, Pers1,    Sg,   _>  => root2 + "inV" ; -- इनँ
+           <Neg, Pers1,    Pl,   _>  => root2 + "enEV" ; -- एनैँ
+           <Neg, Pers2_L,  Sg,   _>  => root2 + "insx:" ; -- इनस्
+           <Neg, Pers2_L,  Pl,   _>  => root2 + "enE" ; -- एनै
+           <Neg, Pers2_M,  Sg, Fem>  => root2 + "inE" ; -- इनै    
+           <Neg, Pers2_M,   _,   _>  => root2 + "enE" ; -- एनै             
+           <Neg, Pers3_L,  Sg, Masc> => root2 + "en" ; -- एन
+           <Neg, Pers3_L,  Sg, Fem>  => root2 + "in" ; -- इन (पढिन)
+           <Neg, Pers3_L,  Pl,   _>  => root2 + "ennx:" ; -- एनन् (पढेनन्)     
+           <Neg, Pers3_M,  Sg, Fem>  => root2 + "innx:" ; -- इनन् (पढिनन्)
+           <Neg, Pers3_M,   _,   _>  => root2 + "ennx:" ; -- एनन् (पढेनन्)     
+           <Neg,       _,   _,   _>  => root  + "nuBe:n" -- नुभएन
+           } 
+      } ;
+  
+   -- mkVPstSNP Helper for VIRrg case
+   mkVPstSNPIReg : Str -> Str -> Polarity -> NPerson -> Number -> Gender -> {s:Str} = 
+     \root, root2, po, pn, n, g ->
+      {s = case <po, pn, n, g> of {   
+           -- Positive case
+           <Pos, Pers1,    Sg,   _>  => root2 + "e:V" ; -- एँ
+           <Pos, Pers1,    Pl,   _>  => root2 + "ywM" ; -- यौं
+           <Pos, Pers2_L,  Sg,   _>  => root2 + "i:sx:" ; -- इस्
+           <Pos, Pers2_L,  Pl,   _>  => root2 + "yw" ; -- यौ
+           <Pos, Pers2_M,   _,   _>  => root2 + "yw" ; -- यौ      
+           <Pos, Pers3_L,  Sg, Masc> => root2 + "yo" ; -- यो
+           <Pos, Pers3_L,  Sg, Fem>  => root2 + "I:" ; -- ई 
+           <Pos, Pers3_L,  Pl,   _>  => root2 + "e:" ; -- ए   
+           <Pos, Pers3_M,  Sg, Fem>  => root2 + "i:nx:" ; -- इन्
+           <Pos, Pers3_M,   _,   _>  => root2 + "e:" ; -- ए   
+           <Pos,       _,   _,   _>  => root  + "nuByo" ; -- नुभयो
+          
+           -- Negative case
+           <Neg, Pers1,    Sg,   _>  => root2 + "i:nV" ; -- इनँ
+           <Neg, Pers1,    Pl,   _>  => root2 + "e:nEV" ; -- एनैँ
+           <Neg, Pers2_L,  Sg,   _>  => root2 + "i:nsx:" ; -- इनस्
+           <Neg, Pers2_L,  Pl,   _>  => root2 + "e:nE" ; -- एनै
+           <Neg, Pers2_M,  Sg, Fem>  => root2 + "i:nE" ; -- इनै    
+           <Neg, Pers2_M,   _,   _>  => root2 + "e:nE" ; -- एनै             
+           <Neg, Pers3_L,  Sg, Masc> => root2 + "e:n" ; -- एन
+           <Neg, Pers3_L,  Sg, Fem>  => root2 + "i:n" ; -- इन (पढिन)
+           <Neg, Pers3_L,  Pl,   _>  => root2 + "e:nnx:" ; -- एनन् (पढेनन्)     
+           <Neg, Pers3_M,  Sg, Fem>  => root2 + "i:nnx:" ; -- इनन् (पढिनन्)
+           <Neg, Pers3_M,   _,   _>  => root2 + "e:nnx:" ; -- एनन् (पढेनन्)     
+           <Neg,       _,   _,   _>  => root  + "nuBe:n" -- नुभएन          
+           } 
+      } ;
+  
+
+-- Past Habitual, Nonprogressive mode, nonperfective aspect  
+   mkVPstHNP : Str -> Str -> VCase -> Polarity -> NPerson -> Number -> Gender -> {s:Str} = 
+     \root, root1, vc, po, pn, n, g ->
+      {s = case vc of {
+           VReg  => (mkVPstHNPGen root root1 po pn n g).s ;
+           VIReg => (mkVPstHNPGen root1 root po pn n g).s
+           }
+        } ;        
+        
+   -- mkVPstHNP helper, handles bith VReg and VIReg cases
+   mkVPstHNPGen : Str -> Str -> Polarity -> NPerson -> Number -> Gender -> {s:Str} = 
+     \root, root1, po, pn, n, g ->
+      let neg = "dEn" ; -- दैन    (TODO : CHECK FOR MAKE GENERIC FINCTION FOR POS AND NEG)
+      in
+      {s = case <po, pn, n, g> of {
+          <Pos, Pers1,   Sg,    _> => root + "TeM" ; -- थें
+          <Pos, Pers1,   Pl,    _> => root + "Tx:ywM" ; -- थ्यौं
+          <Pos, Pers2_L, Sg,    _> => root + "Tisx:" ; -- थिस्
+          <Pos, Pers2_L, Pl,    _> => root + "Tx:yw" ; -- थ्यौ
+          <Pos, Pers2_M,  _,    _> => root + "Tx:yw" ; -- थ्यौ
+          <Pos, Pers3_L, Sg, Masc> => root + "Tx:yo" ; -- थ्यो
+          <Pos, Pers3_L, Sg, Fem>  => root + "TI" ; -- थी
+          <Pos, Pers3_L, Pl,   _>  => root + "Te" ; -- थे
+          <Pos, Pers3_M, Sg, Fem>  => root + "Tinx:" ; -- थिन्
+          <Pos, Pers3_M,  _,   _>  => root + "Te" ; -- थे          
+          <Pos,       _,  _,   _>  => root1 + "nuhunx:z+Tx:yo" ; -- नुहुन्‌थ्यो
+          
+          <Neg, Pers1,   Sg,    _> => root + neg + "TeM" ; -- थें
+          <Neg, Pers1,   Pl,    _> => root + neg + "Tx:ywM" ; -- थ्यौं
+          <Neg, Pers2_L, Sg,    _> => root + neg + "Tisx:" ; -- थिस्
+          <Neg, Pers2_L, Pl,    _> => root + neg + "Tx:yw" ; -- थ्यौ
+          <Neg, Pers2_M,  _,    _> => root + neg + "Tx:yw" ; -- थ्यौ
+          <Neg, Pers3_L, Sg, Masc> => root + neg + "Tx:yo" ; -- थ्यो
+          <Neg, Pers3_L, Sg, Fem>  => root + neg + "TI" ; -- थी
+          <Neg, Pers3_L, Pl,   _>  => root + neg + "Te" ; -- थे
+          <Neg, Pers3_M, Sg, Fem>  => root + neg + "TInx:" ; -- थिन्
+          <Neg, Pers3_M,  _,   _>  => root + neg + "Te" ; -- थे          
+          <Neg,       _,  _,   _>  => root1 + "nuhuVdEnTx:yo" -- नुहुँदैनथ्यो
+          }
+      };
+   
+{-
+-- Past Unknown, Nonprogressive mode, nonperfective aspect     
+   mkVPstUNP : Str -> Str -> VCase -> Polarity -> NPerson -> Number -> Gender -> {s:Str} = 
+     \ root, root2, vc, po, p, n, g -> 
+      {s = case vc of {
+           VReg  => case po of {
+                    Pos => (mkVPstUNPReg root root2 ""  p n g).s ;
+                    Neg => (mkVPstUNPReg root root2 "n" p n g).s 
+                    } ;
+           VIReg => case po of {
+                    Pos => (mkVPstUNPIReg root root2 ""  p n g).s ;
+                    Neg => (mkVPstUNPIReg root root2 "n" p n g).s 
+                    }
+           }
+      };
+
+   -- mkVPstUNP helper for VReg case
+   mkVPstUNPReg : Str -> Str -> Str -> NPerson -> Number -> Gender -> {s:Str} = 
+      \root, root2, na, pn, nu, g ->
+      {s = case <pn, nu, g> of {
+          <Pers1,   Sg, Masc> => root2  + "e" + na + "cu" ; -- एछु
+          <Pers1,   Sg, Fem>  => root2  + "i" + na + "cu" ; -- इछु
+          <Pers1,   Pl,    _> => root2  + "e" + na + "cwV" ; -- एछौँ
+          <Pers2_L, Sg, Masc> => root2  + "e" + na + "csx:" ; -- एछस्
+          <Pers2_L, Sg, Fem>  => root2  + "i" + na + "csx:" ; -- इछस्
+          <Pers2_L, Pl,    _> => root2  + "e" + na + "cw" ; -- एछौ                    
+          <Pers2_M, Sg, Fem>  => root2  + "i" + na + "cw" ; -- इछौ
+          <Pers2_M,  _,    _> => root2  + "e" + na + "cw" ; -- एछौ               
+          <Pers3_L, Sg, Masc> => root2  + "e" + na + "c" ; -- एछ
+          <Pers3_L, Sg, Fem>  => root2  + "i" + na + "c" ; -- इछ
+          <Pers3_L, Pl,   _>  => root2  + "e" + na + "cnx:" ; -- एछन्
+          <Pers3_M, Sg, Fem>  => root2  + "i" + na + "cnx:" ; -- इछन्
+          <Pers3_M,  _,   _>  => root2  + "e" + na + "cnx:" ; -- एछन्
+          <      _,  _,   _>  => root   + "nuBe:" + na +"c" -- नुभएछ
+        }
+      } ;
+   
+   
+   -- mkVPstUNP helper for VIReg case
+   mkVPstUNPIReg : Str -> Str -> Str -> NPerson -> Number -> Gender -> {s:Str} = 
+     \root, root2, na, pn, nu, g -> 
+      {s = case <pn, nu, g> of {
+           <Pers1,   Sg, Masc> => root2 + "e:" + na + "cu" ; -- एछु
+           <Pers1,   Sg, Fem>  => root2 + "i:" + na + "cu" ; -- इछु
+           <Pers1,   Pl,    _> => root2 + "e:" + na + "cwV" ; -- एछौँ
+           <Pers2_L, Sg, Masc> => root2 + "e:" + na + "csx:" ; -- एछस्
+           <Pers2_L, Sg, Fem>  => root2 + "i:" + na + "csx:" ; -- इछस्
+           <Pers2_L, Pl,    _> => root2 + "e:" + na + "cw" ; -- एछौ                    
+           <Pers2_M, Sg, Fem>  => root2 + "i:" + na + "cw" ; -- इछौ
+           <Pers2_M,  _,    _> => root2 + "e:" + na + "cw" ; -- एछौ        
+          
+           <Pers3_L, Sg, Masc> => root2 + "e:" + na + "c" ; -- एछ
+           <Pers3_L, Sg, Fem>  => root2 + "i:" + na + "c" ; -- इछ
+           <Pers3_L, Pl,   _>  => root2 + "e:" + na + "cnx:" ; -- एछन्
+           <Pers3_M, Sg, fem>  => root2 + "i:" + na + "cnx:" ; -- इछन्
+           <Pers3_M,  _,   _>  => root2 + "e:" + na + "cnx:" ; -- एछन्
+           <      _,  _,   _>  => root  + "nuBe:" + na +"c" -- नुभएनछ
+           }
+     } ;
+-}     
+
+-- Future Definitive, Nonprogressive mode, nonperfective aspect
+   -- Handles Both cases
+   mkVFutDNP : Str -> Polarity -> NPerson -> Number -> Gender -> {s:Str} = 
+     \root, po, pn, n, g ->
+      {s = case <po, pn, n, g> of { 
+          -- Positive case
+          <Pos, Pers1,    Sg,   _>  => root + "necu" ; -- नेछु
+          <Pos, Pers1,    Pl,   _>  => root + "necwM" ; -- नेछौं      
+          <Pos, Pers2_L,  Sg,   _>  => root + "necsx:" ; -- नेछस्
+          <Pos, Pers2_L,  Pl,   _>  => root + "necwM" ; -- नेछौ
+          <Pos, Pers2_M,   _,   _>  => root + "necwM" ; -- नेछौ               
+          <Pos, Pers3_L,  Sg,   _>  => root + "nec" ; -- नेछ
+          <Pos, Pers3_L,  Pl,   _>  => root + "necnx:" ; -- नेछन्      
+          <Pos, Pers3_M,   _, Masc> => root + "necnx:" ; -- नेछन्
+          <Pos, Pers3_M,  Sg, Fem>  => root + "necinx:" ; -- नेछिन्      
+          <Pos, Pers3_M,  Pl, Fem>  => root + "necinx:" ; -- नेछन्            
+          <Pos,       _,   _,   _>  => root + "nuhunec" ; -- नुहुनेछ      
+          
+          -- Negative Case
+          <Neg, Pers1,    Sg,   _>  => root + "necEn" ; -- नेछैन
+          <Neg, Pers1,    Pl,   _>  => root + "necEnEV" ; -- नेछैनैँ
+          <Neg, Pers2_L,  Sg,   _>  => root + "necEnsx:" ; -- नेछैनस्
+          <Neg, Pers2_L,  Pl,   _>  => root + "necEnE" ; -- नेछैनै
+          <Neg, Pers2_M,   _,   _>  => root + "necEnE" ; -- नेछैनै           
+          <Neg, Pers3_L,  Sg,   _>  => root + "necEnx:" ; -- नेछैन्
+          <Neg, Pers3_L,  Pl,   _>  => root + "necEnnx:" ; -- नेछैनन्
+          <Neg, Pers3_M,  Sg,   _>  => root + "necEnnx:" ; -- नेछैनन्          
+          <Neg, Pers3_M,  Pl,   _>  => root + "necEnE" ; -- नेछैनै
+          <Neg,       _,   _,   _>  => root + "nuhunecEnx:" -- नुहुनेछैन्
+          }
+     } ;
+          
+ 
+-- Future Nondefinitive, Nonperfective aspect, NonPregressive mode
+   mkVFutNDNP : Str -> Str -> VCase -> Polarity -> NPerson -> Number -> Gender -> {s:Str} = 
+     \root, root2, vc, po, pn, n, g ->
+      {s = case vc of {
+           VReg  => (mkVFutNDNPReg root root2 po pn n g).s ;
+           VIReg => (mkVFutNDNPIReg root2 po pn n g).s
+           }
+      } ;
+   
+   -- mkVFutNDNP helper for VReg case
+   mkVFutNDNPReg : Str -> Str -> Polarity -> NPerson -> Number -> Gender -> {s:Str} = 
+     \root, root2, po, pn, n, g ->
+      {s = case <po, pn, n, g> of {
+          <Pos, Pers1,   Sg,    _> => root2 + "uVla" ; -- उँला 
+          <Pos, Pers1,   Pl,    _> => root2 + "wVla" ; -- आँला
+          <Pos, Pers2_L, Sg, Masc> => root  + "z=lasx:" ; -- लास् 
+          <Pos, Pers2_L, Sg, Fem>  => root  + "lIsx:" ; -- लिस्
+          <Pos, Pers2_L, Pl,    _> => root2 + "wla" ; -- औला 
+          <Pos, Pers2_M, Pl,  Fem> => root2 + "wli" ; -- औलि 
+          <Pos, Pers3_L, Sg, Masc> => root  + "la" ; -- ला
+          <Pos, Pers3_L, Sg, Fem>  => root  + "lI" ; -- ली
+          <Pos, Pers3_L, Pl,   _>  => root  + "lanx:" ; -- लान्
+          <Pos, Pers3_M, Sg, Fem>  => root  + "lInx:" ; -- लिन्
+          <Pos, Pers3_M,  _,   _>  => root  + "lanx:" ; -- लान्
+          <Pos,       _,  _,   _>  => root  + "z=nuhola" ; -- नुहोला
+          
+          -- TODO : NOT CLEAR DEFINITION IN BOOK
+          <Neg,       _,  _,   _>  => "quxu" 
+        }
+      } ;
+ 
+   -- mkVFutNDNP helper for VIReg case
+   mkVFutNDNPIReg : Str -> Polarity -> NPerson -> Number -> Gender -> {s:Str} = 
+     \root, po, pn, n, g ->
+      {s = case <po, pn, n, g> of {
+           <Pos, Pers1,   Sg,    _> => root + "fVla" ; -- उँला
+           <Pos, Pers1,   Pl,    _> => root + "WVla" ; -- आँला
+           <Pos, Pers2_L, Sg, Masc> => root + "lasx:" ; -- लास्
+           <Pos, Pers2_L, Sg, Fem>  => root + "lisx:" ; -- लिस् 
+           <Pos, Pers2_L, Pl,    _> => root + "Wla" ; -- औला 
+           <Pos, Pers2_M, Pl,  Fem> => root + "Wli" ; -- औलि 
+           <Pos, Pers3_L, Sg, Masc> => root + "la" ; -- ला
+           <Pos, Pers3_L, Sg, Fem>  => root + "lI" ; -- ली
+           <Pos, Pers3_L, Pl,   _>  => root + "lanx:" ; -- लान्
+           <Pos, Pers3_M, Sg, Fem>  => root + "linx:" ; -- लिन्
+           <Pos, Pers3_M,  _,   _>  => root + "lanx:" ; -- लान्
+           <Pos,       _,  _,   _>  => root + "nuhola" ; -- नुहोला
+           
+           -- TODO : NOT CLEAR DEFINITION IN BOOK
+           <Neg,       _,  _,   _>  => "quxu" 
+           }
+        } ;
+   
+
+
+-- Past Simple, Perfective aspect, Nonprogressive Mode
+   mkVPstSP : Str -> Str -> VCase -> Polarity -> NPerson -> Number -> Gender -> {s:Str} = 
+     \root, root2, vc, po, pn, n, g ->
+      {s = case vc of {
+           VReg  => (mkVPstSPGen root2 "eko"  "eki"  "eka" po pn n g).s ;
+           VIReg => (mkVPstSPGen root2 "e:ko" "e:ki" "e:ka" po pn n g).s
+           }
+      } ;
+   
+   -- mkVPstSP Helper handles both VReg and VIreg cases
+   mkVPstSPGen : Str -> Str -> Str -> Str -> Polarity -> NPerson -> Number -> Gender -> {s:Str} = 
+      \root, sreg, sfem, spl, po, pn, n, g ->
+      {s = case <po, pn, n, g> of {
+          -- Positive case
+          <Pos, Pers1,   Sg,    _> => root + sreg + "Tie:V" ; -- थिएँ
+          <Pos, Pers1,   Pl,    _> => root + spl + "TiywV" ; -- थियौँ          
+          <Pos, Pers2_L, Sg, Masc> => root + sreg + "Tii:sx:" ; -- थिइस्
+          <Pos, Pers2_L, Sg, Fem>  => root + sfem + "Tii:sx:" ; -- थिइस्
+          <Pos, Pers2_L, Pl,    _> => root + spl + "Tiyw" ; -- थियौ
+          <Pos, Pers2_M,  _,    _> => root + spl + "Tiyw" ; -- थियौ          
+          <Pos, Pers3_L, Sg, Masc> => root + sreg + "Tiyo" ; -- थियो
+          <Pos, Pers3_L, Sg, Fem>  => root + sfem + "TiI:" ; --थिई
+          <Pos, Pers3_L, Pl,   _>  => root + spl + "Tie:" ; -- थिए
+          <Pos, Pers3_M, Sg, Fem>  => root + sfem + "Tii:nx:" ; -- थिइन्
+          <Pos, Pers3_M,  _,   _>  => root + spl + "Tie:" ; -- थिए
+          <Pos,       _,  _,   _>  => root + sreg + "hunuhunx:z+Tx:yo" ; -- हुनुहुन्‌थ्यो (TODO: CONFIRM CORRECT)
+          
+          -- Negative case
+          <Neg, Pers1,   Sg,    _> => root + sreg +"Tii:nV" ; -- 
+          <Neg, Pers1,   Pl,    _> => root + spl + "Tie:nEV" ; --
+          
+          <Neg, Pers2_L, Sg, Masc> => root + sreg + "Tii:nsx:" ; -- 
+          <Neg, Pers2_L, Sg, Fem>  => root + sfem + "Tii:nsx:" ; -- 
+          <Neg, Pers2_L, Pl,    _> => root + spl + "Tie:nE" ; -- 
+          <Neg, Pers2_M,  _,    _> => root + spl + "TinE" ; -- 
+          
+          <Neg, Pers3_L, Sg, Masc> => root + sreg + "Tie:n" ; -- 
+          <Neg, Pers3_L, Sg, Fem>  => root + sfem + "Tii:n:" ; --
+          <Neg, Pers3_L, Pl,   _>  => root + spl + "Tie:nnx:" ; -- 
+          <Neg, Pers3_M, Sg, Fem>  => root + sfem + "Tii:nnx:" ; -- 
+          <Neg, Pers3_M,  _,   _>  => root + spl + "Tie:nnx:" ; -- 
+          <Neg,       _,  _,   _>  => root + sreg + "hunuhunx:z+nTx:yo" -- हुनुहुन्‌नथ्यो (TODO: CONFIRM CORRECT)
+        }
+      };
+   
+   
+-- Past Habitual, Perfective aspect, Nonprogressive Mode
+   mkVPstHP : Str -> Str -> VCase -> Polarity -> NPerson -> Number -> Gender -> {s:Str} = 
+     \root, root2, vc, po, pn, n, g ->
+      {s = case vc of {
+           VReg  => (mkVPstHPGen root2 "eko"  "eki"  "eka"  po pn n g).s ;
+           VIReg => (mkVPstHPGen root2 "e:ko" "e:ki" "e:ka" po pn n g).s
+           }
+        } ;
+   
+   -- mkVPstSP Helper handles both VReg and VIreg cases
+   mkVPstHPGen : Str -> Str -> Str -> Str -> Polarity -> NPerson -> Number -> Gender -> {s:Str} = 
+      \root, sreg, sfem, spl, po, pn, n, g ->
+      {s = case <po, pn, n, g> of {
+          <Pos, Pers1,   Sg,    _> => root + sreg + "hunx:TeV" ; -- हुन्थेँ
+          <Pos, Pers1,   Pl,    _> => root + spl + "hunx:TwV" ; -- हुन्थौँ          
+          <Pos, Pers2_L, Sg, Masc> => root + sreg + "hunx:Tisx:" ; -- हुन्थिस् 
+          <Pos, Pers2_L, Sg, Fem>  => root + sfem + "hunx:Ti:sx:" ; -- हुन्थिस् 
+          <Pos, Pers2_L, Pl,    _> => root + spl + "hunx:Tx:yw" ; -- हुन्थ्यौ 
+          <Pos, Pers2_M,  _,    _> => root + spl + "hunx:Tx:yw" ; -- हुन्थ्यौ           
+          <Pos, Pers3_L, Sg, Masc> => root + sreg + "hunx:z+Tx:yw" ; -- हुन्‌थ्यौ
+          <Pos, Pers3_L, Sg, Fem>  => root + sfem + "hunx:TI" ; -- हुन्थी
+          <Pos, Pers3_L, Pl,   _>  => root + spl + "hunx:Te" ; -- हुन्थे  
+          <Pos, Pers3_M, Sg, Fem>  => root + sfem + "hunx:z+Ti" ; -- हुन्थि
+          <Pos, Pers3_M,  _,   _>  => root + spl + "hunx:Te" ; -- हुन्थे 
+          <Pos,       _,  _,   _>  => root + sreg + "hunuhunx:Tx:yo" ; -- (TODO : हुनुहुन्थ्यो need to Confirm)
+          
+          -- Negative case (TODO)        
+          <Neg, Pers1,   Sg,    _> => root + sreg + "hunx:TeV" ; -- हुन्थेँ
+          <Neg, Pers1,   Pl,    _> => root + spl + "hunx:TwV" ; -- हुन्थौँ          
+          <Neg, Pers2_L, Sg, Masc> => root + sreg + "hunx:Tii:sx:" ; -- हुन्थिइस् ???? G Check
+          <Neg, Pers2_L, Sg, Fem>  => root + sfem + "hunx:Tii:sx:" ; -- हुन्थिइस्
+          <Neg, Pers2_L, Pl,    _> => root + spl + "hunx:Tiyw" ; -- हुन्थियौ / or हुन्थ्यौ (hunx:Tx:yw)
+          <Neg, Pers2_M,  _,    _> => root + spl + "hunx:Tiyw" ; -- हुन्थियौ / or हुन्थ्यौ (hunx:Tx:yw)          
+          <Neg, Pers3_L, Sg, Masc> => root + sreg + "hunx:Tx:yw" ; -- हुन्थ्यौ / (थियो ????)
+          <Neg, Pers3_L, Sg, Fem>  => root + sfem + "hunx:TI" ; -- हुन्थी/ (थिई ????)
+          <Neg, Pers3_L, Pl,   _>  => root + spl + "hunx:Te" ; -- हुन्थे / (थिए)
+          <Neg, Pers3_M, Sg, Fem>  => root + sfem + "hunx:Ti" ; -- हुन्थि
+          <Neg, Pers3_M,  _,   _>  => root + spl + "hunx:Te" ; -- हुन्थे / (थिए)
+          <Neg,       _,  _,   _>  => root + sreg + "hunuhunx:z+nTx:yo" -- हुनुहुन्‌नथ्यो (TODO: CONFIRM CORRECT)
+        }
+      };
+      
+{-   
+-- Past Unknown, Perfective aspect, Nonprogressive Mode
+   mkVPstUP : Str -> Str -> VCase -> Polarity -> NPerson -> Number -> Gender -> {s:Str} = 
+     \root, root2, vc, po, pn, n, g ->
+      {s = case vc of {
+           VReg  => (mkVPstHPGen root2 "eko"  "eki"  "eka"  po pn n g).s ;
+           VIReg => (mkVPstHPGen root2 "e:ko" "e:ki" "e:ka" po pn n g).s
+           }
+      } ;
+
+   -- mkVPstUP Helper handles both VReg and VIreg cases
+   mkVPstUPGen : Str -> Str -> Str -> Str -> Polarity -> NPerson -> Number -> Gender -> {s:Str} = 
+      \root, sreg, sfem, spl, po, pn, n, g ->
+      {s = case <po, pn, n, g> of {
+          <Pos, Pers1,   Sg, Masc> => root + sreg + "rhecu" ; -- रहेछु
+          <Pos, Pers1,   Sg, Fem > => root + sfem + "rhecu" ; -- रहेछु (खाएकिरहेछु)
+          <Pos, Pers1,   Pl,    _> => root + spl + "rhecwV" ; -- रहेछौँ          
+          <Pos, Pers2_L, Sg, Masc> => root + sreg + "rhicsx:" ; --रहिछस्
+          <Pos, Pers2_L, Sg, Fem>  => root + sfem + "rhicsx:" ; --रहिछस्
+          <Pos, Pers2_L, Pl,    _> => root + spl + "rhecw" ; -- रहेछौ          
+          <Pos, Pers2_M, Sg, Masc> => root + spl + "rhecw" ; -- रहेछौ
+          <Pos, Pers2_M, Sg, Fem>  => root + sfem + "rhicw" ; -- रहिछौ (छ्यौ ????)
+          <Pos, Pers2_M, Pl,    _> => root + spl + "rhecw" ; -- रहेछौ          
+          <Pos, Pers3_L, Sg, Masc> => root + sreg + "rhec" ; -- रहेछ
+          <Pos, Pers3_L, Sg, Fem>  => root + sfem + "rhic" ; -- रहिछ
+          <Pos, Pers3_L, Pl,   _>  => root + spl + "rhecnx:" ; -- रहेछन्          
+          <Pos, Pers3_M, Sg, Fem>  => root + sfem + "rhicInx:" ; -- रहिछीन्          
+          <Pos, Pers3_M, Sg, Masc> => root + spl + "rhecnx:" ; -- रहेछन्
+          <Pos, Pers3_M,  _,   _>  => root + spl + "rhecnx:" ; -- रहेछन्
+          <Pos,       _,  _,   _>  => root + sreg + "hunuhudorhec" ; -- हुनुहुदोरहेछ/नुभएकोरहेछ(nuBe:korhec)
+          
+          -- Negative Case (TODO)
+          <Neg,       _,  _,   _>  => "quxu" -- TODO--           
+        }
+      };
+
+-}
+-- Present, Perfective aspect, Nonprogressive Mode
+   mkVPreP : Str -> Str -> VCase -> Polarity -> NPerson -> Number -> Gender -> {s:Str} = 
+     \root, root2, vc, po, pn, n, g ->
+      {s = case vc of {
+           VReg  => (mkVPreGen root2 "eko"  "eki"  "eka"  po pn n g).s ;
+           VIReg => (mkVPreGen root2 "e:ko" "e:ki" "e:ka" po pn n g).s
+           }
+      } ;
+   
+   -- mkVPreP helper handles both VReg and VIreg cases
+   mkVPreGen : Str -> Str -> Str -> Str -> Polarity -> NPerson -> Number -> Gender -> {s:Str} = 
+      \root, sreg, sfem, spl, po, pn, n, g ->
+      {s = case <po, pn, n, g> of {
+          <Pos, Pers1,   Sg,    _> => root + sreg + "cu" ;   -- छु 
+          <Pos, Pers1,   Pl,    _> => root + spl + "cwM" ;   -- छौं           
+          <Pos, Pers2_L, Sg, Masc> => root + sreg + "csx:" ; -- छस्
+          <Pos, Pers2_L, Sg, Fem>  => root + sfem + "cesx:" ; -- छेस्      
+          <Pos, Pers2_L, Pl,    _> => root + spl + "cw" ;    -- छौ 
+          <Pos, Pers2_M, Sg, Fem>  => root + sfem + "cx:yw" ; --छ्यौ
+          <Pos, Pers2_M,  _,    _> => root + spl + "cw" ;    -- छौ           
+          <Pos, Pers3_L, Sg, Masc> => root + sreg + "c" ;  -- छ
+          <Pos, Pers3_L, Sg, Fem>  => root + sfem + "ce" ;  -- छे
+          <Pos, Pers3_L, Pl,   _>  => root + spl + "cnx:" ;  -- छन्      
+          <Pos, Pers3_M, Sg, Fem>  => root + sfem + "cinx:" ;  -- छिन्
+          <Pos, Pers3_M,  _,   _>  => root + spl + "cnx:" ;  -- छन्      
+          <Pos,       _,  _,   _>  => root + sreg + "hunuhunx:c" ; -- हुनुहुन्छ
+          
+          -- Negative Case (TODO)
+          <Neg,       _,  _,   _>  => "quxu" -- TODO--     
+          }
+      };
+      
+ 
+-- Future Definitive, Perfective aspect, Nonprogressive Mode
+   mkVFutDefP : Str -> Str -> VCase -> Polarity -> NPerson -> Number -> Gender -> {s:Str} = 
+     \root, root2, vc, po, pn, n, g ->
+      {s = case vc of {
+           VReg  => (mkVFutDefGen root2 "eko"  "eki"  "eka"  po pn n g).s ;
+           VIReg => (mkVFutDefGen root2 "e:ko" "e:ki" "e:ka" po pn n g).s
+           }
+        } ;
+      
+      
+   -- mkVFutDef helper handles both VReg and VIreg cases
+   mkVFutDefGen : Str -> Str -> Str -> Str -> Polarity -> NPerson -> Number -> Gender -> {s:Str} = 
+      \root, sreg, sfem, spl, po, pn, n, g ->
+      {s = case <po, pn, n, g> of {
+          <Pos, Pers1,   Sg,    _> => root + sreg + ("hune"+"cu") ; -- हुनेछु
+          <Pos, Pers1,   Pl,    _> => root + spl + "hunecwV" ; -- हुनेछौँ           
+          <Pos, Pers2_L, Sg, Masc> => root + sreg + "hunecsx:" ; -- हुनेछस्
+          <Pos, Pers2_L, Sg, Fem>  => root + sfem + "hunecesx:" ; -- हुनेछेस्
+          <Pos, Pers2_L, Pl,    _> => root + spl + "hunecw" ; -- हुनेछौ
+          <Pos, Pers2_M, Sg, Fem>  => root + sfem + "hunecx:yw" ; -- हुनेछ्यौ
+          <Pos, Pers2_M,  _,    _> => root + spl + "hunecw" ; -- हुनेछौ          
+          <Pos, Pers3_L, Sg, Masc> => root + sreg + "hunec" ;  -- हुनेछ
+          <Pos, Pers3_L, Sg, Fem>  => root + sfem + "hunx:ce" ;  -- हुन्छे
+          <Pos, Pers3_L, Pl,   _>  => root + spl + "hunecnx:" ;  -- हुनेछन्      
+          <Pos, Pers3_M, Sg, Fem>  => root + sfem + "hunecinx:" ;  -- हुनेछिन्
+          <Pos, Pers3_M,  _,   _>  => root + spl + "hunecnx:" ;  -- हुनेछन्      
+          <Pos,       _,  _,   _>  => root + sreg + "hunuhunec" ; -- हुनुहुनेछ
+          
+          -- Negative Case (TODO)
+          <Neg,       _,  _,   _>  => "quxu" -- TODO--     
+        }
+      };
+
+
+-- Future Nondefinitive, Perfective aspect, Nonprogressive Mode
+   mkVFutNDefP : Str -> Str -> VCase -> Polarity -> NPerson -> Number -> Gender -> {s:Str} = 
+     \root, root2, vc, po, pn, n, g ->
+      {s = case vc of {
+           VReg  => (mkVFutDefGen root2 "eko"  "eki"  "eka"  po pn n g).s ;
+           VIReg => (mkVFutDefGen root2 "e:ko" "e:ki" "e:ka" po pn n g).s
+           }
+      } ;      
+      
+   -- Helper mkVFutNDef handles both VReg and VIreg cases
+   mkVFutNDefGen : Str -> Str -> Str -> Str -> Polarity -> NPerson -> Number -> Gender -> {s:Str} = 
+     \root, sreg, sfem, spl, po, pn, n, g ->
+      {s = case <po, pn, n, g> of {
+           <Pos, Pers1,   Sg,    _> => root + sreg + "huVla" ; -- हुँला
+           <Pos, Pers1,   Pl,    _> => root + spl + "hwVlaV" ; -- हौँलाँ          
+           <Pos, Pers2_L, Sg, Masc> => root + sreg + "holasx:" ; -- होलास्
+           <Pos, Pers2_L, Sg, Fem>  => root + sfem + "holisx:" ; -- होलिस्
+           <Pos, Pers2_L, Pl,    _> => root + spl + "hwla" ; -- हौला
+           <Pos, Pers2_M, Sg, Fem>  => root + sfem + "holi" ; -- होलि
+           <Pos, Pers2_M,  _,    _> => root + spl + "hwla" ; -- हौला          
+           <Pos, Pers3_L, Sg, Masc> => root + sreg + "hola" ; -- होला
+           <Pos, Pers3_L, Sg, Fem>  => root + sfem + "holI" ; -- होली
+           <Pos, Pers3_L, Pl,   _>  => root + spl + "holanx:" ; -- होलान्
+           <Pos, Pers3_M, Sg, Fem>  => root + sfem + "holinx:" ; -- होलिन्
+           <Pos, Pers3_M,  _,   _>  => root + spl + "holanx:" ; -- होलान्
+           <Pos,       _,  _,   _>  => root + sreg + "hunuhola" ; -- हुनुहोला
+          
+          -- Negative Case (TODO)
+          <Neg,       _,  _,   _>  => "quxu" -- TODO--     
+        }
+      };
+      
+  -- TODO - Refactor
+  IntPronForm = {s: Case => Str};
+  mkIntPronForm : (x1,x2,x3,x4:Str) -> IntPronForm =
+   \y1,y2,y3,y4 -> {
+    s = table {
+	    Nom => y1;
+        _   => y2
+		}
+	};
+	   
+ }
diff --git a/lib/src/nepali/src/NumeralNep.gf b/lib/src/nepali/src/NumeralNep.gf
new file mode 100644
--- /dev/null
+++ b/lib/src/nepali/src/NumeralNep.gf
@@ -0,0 +1,120 @@
+concrete NumeralNep of Numeral = CatNep ** open ResNep, Prelude in {
+-- By Harald Hammarstroem
+-- Modification for Nepali by Dinesh Simkhada and Shafqat Virk - 2011
+ flags coding=utf8 ;
+
+
+param DForm = unit | ten ;
+param DSize = sg | r2 | r3 | r4 | r5 | r6 | r7 | r8 | r9 ;
+param Size = singl | less100 | more100 ; 
+
+oper LinDigit = {s : DForm => Str ; size : DSize ; n : Number} ;
+
+
+lincat Dig = {s:Str ; n : Number} ;
+lincat Digit = LinDigit ;
+lincat Sub10 = {s : DForm => Str ; size : DSize ; n : Number} ;
+lincat Sub100 = {s : Str ; size : Size ; n : Number} ;
+lincat Sub1000 = {s : Str ; s2 : Str ; size : Size ; n : Number } ; 
+lincat Sub1000000 = {s : Str ; n : Number } ;
+
+lin num x0 = 
+    {s = table {
+          NCard => x0.s ; 
+          NOrd  => Prelude.glue x0.s "wV"  -- need to use mkOrd x0.s but it gives linking error 
+          };
+       n = x0.n
+    } ; 
+
+
+
+oper mkNum : Str -> Str -> DSize -> LinDigit = 
+  \do -> \bis -> \sz ->  
+  {s = table {unit => do ; ten => bis } ; 
+   size = sz ; n = Pl} ;
+
+lin n2 = mkNum "duI:" "bIs"     r2 ;
+lin n3 = mkNum "tIn"  "tIs"     r3 ;
+lin n4 = mkNum "Car"  "CalIs"   r4 ;
+lin n5 = mkNum "paVC" "pCas"    r5 ;
+lin n6 = mkNum "c"    "saQI"    r6 ; 
+lin n7 = mkNum "sat"  "stx:trI" r7 ;  -- सत्तरी
+lin n8 = mkNum "AQ"   "HsI"     r8 ;
+lin n9 = mkNum "nw"   "nbx:be"  r9 ; 
+
+oper 
+  mkR : (a1,_,_,_,_,_,_,_,a9 : Str) -> DSize => Str = 
+   \a1,a2,a3,a4,a5,a6,a7,a8,a9 -> table {
+     sg => a1 ; 
+     r2 => a2 ;
+     r3 => a3 ;
+     r4 => a4 ;
+     r5 => a5 ;
+     r6 => a6 ;
+     r7 => a7 ;
+     r8 => a8 ;
+     r9 => a9
+    } ; 
+
+  -- REF http://dsal.uchicago.edu/dictionaries/schmidt/
+  -- Ordinals from One - Hundred are irregular
+  rows : DSize => DSize => Str = table {
+    sg => mkR "e:Gar"       "e:kx:kai:s" "e:ktIs"   "e:kCalIs"  "e:kafnx:z=n"   "e:ksQx:QI"  "e:khtx:tr"  "e:kasI"   "e:kanx:z=nbx:be" ;  
+    r2 => mkR "bahx:r"      "bai:s"      "btx:tIs"  "byalIs"    "bafnx:z=n"     "bEsQx:QI"   "bhtx:tr"    "byasI"    "byanx:z=nbx:be" ; 
+    r3 => mkR "tehx:r"      "tei:s"     "tetx:tIs"  "tx:riCalIs" "tx:ripnx:z=n" "tx:risQx:QI" "tx:rihtx:tr" "tx:riyasI" "tx:riyanx:z=nbx:be" ;
+    r4 => mkR "CwD"         "CwbIs"     "CwMtIs"    "CvalIs"    "Cvnx:z=n"      "CwsQx:QI"   "Cwhtx:tr"   "CwrasI"   "Cwranx:z=nbx:be"; 
+    r5 => mkR "pnx:Dx:r"    "pCx:CIs"   "pEMtIs"    "pEMtalIs"  "pCpnx:z=n"     "pEMsQx:QI"  "pChtx:tr"   "pCasI"    "pnx:Canx:z=nbx:be" ; 
+    r6 => mkR "sohx:r"      "cbx:bIs"   "ctx:tIs"   "cyalIs"    "cpnx:z=n"      "cEMsQx:QI"  "cyhtx:tr"   "cyasI"    "cyanx:z=nbx:be" ; 
+    r7 => mkR "stx:r"       "stx:tai:s" "swMtIs"    "stCalIs"   "snx:tafnx:z=n" "stsQx:QI"   "sthtx:tr"   "stasI"    "snx:tanx:z=nbx:be" ; 
+    r8 => mkR "HQar"        "HQx:Qai:s" "HQtIs"     "HQtalIs"   "Hnx:Qafnx:z=n" "HQsQx:QI"   "HQhtx:tr"   "HQasI"    "Hnx:Qanx:z=nbx:be" ;
+    r9 => mkR "fnx:z=nai:s" "fnnx:tIs"  "fnnx:CalIs" "fnnx:pCas" "fnnx:saQI"    "fnnx:stx:trI" "fnasI"    "fnanx:z=nbx:be" "fnanx:sy"  
+  } ;
+
+oper ss : Str -> {s : Str} = \s -> {s = s} ;
+
+lin pot01 = {s = table {unit => "e:k" ; _ => "dmy" } ; size = sg ; n = Sg} ;
+lin pot0 d = d ; 
+lin pot110 = {s = "ds" ; size = less100 ; n = Pl} ; 
+lin pot111 = {s = rows ! sg ! sg ; size = less100 ; n = Pl} ;
+lin pot1to19 d = {s = rows ! d.size ! sg ; size = less100 ; n = d.n} ;
+lin pot0as1 n = {s = n.s ! unit ; size = table {sg => singl ; _ => less100} ! n.size ; n = n.n } ;
+
+lin pot1 d = {s = d.s ! ten ; size = less100 ; n = d.n} ;
+lin pot1plus d e = {s = rows ! e.size ! d.size ; size = less100 ; n = d.n} ;
+
+lin pot1as2 n = {s = n.s ; s2 = "dmy" ; size = n.size ; n = n.n} ;
+lin pot2 d = {s = (mksau (d.s ! unit) d.size) ; 
+              s2 = d.s ! unit ++ "laK" ; size = more100 ; n = d.n} ;
+lin pot2plus d e = 
+  {s = (mksau (d.s ! unit) d.size) ++ e.s ; 
+   s2 = (d.s ! unit) ++ "laK" ++ (mkhazar e.s e.size) ; 
+   size = more100 ; n = d.n} ;
+
+lin pot2as3 n = {s = n.s ; n = n.n} ;
+lin pot3 n = {s = table { singl => ekhazar ;
+                          less100 => n.s ++ "hjar" ; 
+                          more100 => n.s2 } ! n.size ; n = n.n} ;
+lin pot3plus n m = 
+  {s = table {singl => ekhazar ;
+              less100 => n.s ++ "hjar" ; 
+              more100 => n.s2 } ! n.size ++ m.s ; n = n.n} ;
+
+lin D_0 = { s = "0" ; n = Sg};
+lin D_1 = { s = "1" ; n = Sg};
+lin D_2 = { s = "2" ; n = Pl};
+lin D_3 = { s = "3" ; n = Pl};
+lin D_4 = { s = "4" ; n = Pl};
+lin D_5 = { s = "5" ; n = Pl};
+lin D_6 = { s = "6" ; n = Pl};
+lin D_7 = { s = "7" ; n = Pl};
+lin D_8 = { s = "8" ; n = Pl};
+lin D_9 = { s = "9" ; n = Pl};
+
+lin IDig d = { s = \\_ => d.s ; n = d.n} ;
+
+lin IIDig d dg = { s = \\df => Prelude.glue d.s (dg.s ! df) ; n = Pl }; 
+
+oper ekhazar : Str = variants {"e:k" ++ "hjar" ; "hjar"} ; 
+oper mkhazar : Str -> Size -> Str = \s -> \sz -> table {singl => ekhazar ; _ => s ++ "hjar"} ! sz ;
+oper mksau : Str -> DSize -> Str = \s -> \sz -> table {sg => "e:k" ++ "sy" ; _ => s ++ "sy"} ! sz ;
+}
diff --git a/lib/src/nepali/src/PhraseNep.gf b/lib/src/nepali/src/PhraseNep.gf
new file mode 100644
--- /dev/null
+++ b/lib/src/nepali/src/PhraseNep.gf
@@ -0,0 +1,39 @@
+concrete PhraseNep of Phrase = CatNep ** open Prelude, ResNep in {
+  
+  flags coding = utf8 ;
+
+  lin
+    PhrUtt pconj utt voc = {s = pconj.s ++ utt.s ++ voc.s} ;
+
+    UttS s = s ;
+    UttQS qs = {s = qs.s ! QDir} ;
+    
+    -- be a man -> (मन्छे हउ)
+    -- issue in mkPhr-Imp-Phr
+    --          mkPhr-PConj-Utt-Voc-Phr
+    -- Need to diff between singularImpForm-ImpForm
+    --                      pluralImpForm-ImpForm and above cases
+    UttImpSg pol imp = {s = pol.s ++ imp.s ! contrNeg True pol.p ! ImpF Sg False ++ "hof"} ;
+    
+    UttImpPl pol imp = {s = pol.s ++ imp.s ! contrNeg True pol.p ! ImpF Pl False ++ "hW"} ;
+    
+    UttImpPol pol imp = {s = pol.s ++ imp.s ! contrNeg True pol.p ! ImpF Sg True ++ "hof"} ;
+
+    UttIP ip = {s = ip.s ! Nom} ; --- Acc also
+    UttIAdv iadv = iadv ;
+    UttNP np = {s = np.s ! NPC Nom} ;
+        
+    UttVP vp = {s = vp.ad ++ vp.obj.s  ++ vp.comp ! (agrP3 Masc Sg) ++ (vp.s ! Inf).inf ++ vp. embComp} ;
+    
+    UttAdv adv = {s = adv.s } ;
+	UttCN cn = {s = cn.s ! Sg ! Nom};
+    UttCard n = n ;
+    UttAP ap = {s = ap.s ! Sg ! Masc } ;
+
+    NoPConj = {s = []} ;
+    PConjConj conj = {s = conj.s2} ; 
+
+    NoVoc = {s = []} ;
+    VocNP np = {s = np.s ! NPC Nom} ;
+
+}
diff --git a/lib/src/nepali/src/QuestionNep.gf b/lib/src/nepali/src/QuestionNep.gf
new file mode 100644
--- /dev/null
+++ b/lib/src/nepali/src/QuestionNep.gf
@@ -0,0 +1,95 @@
+concrete QuestionNep of Question = CatNep ** open ResNep, Prelude in {
+  
+  flags optimize=all_subs ;
+  coding = utf8;
+
+  lin
+
+    QuestCl cl = {
+      s = \\t,p,qf => 
+         case qf of { 
+	        QDir   => cl.s ! t ! p ! OQuest;
+            QIndir => "yedi" ++ cl.s ! t ! p ! ODir
+			}
+		 } ;	  
+
+    QuestVP qp vp = 
+       let cl  = mkSClause ("") (Ag Masc qp.n Pers3_M) vp; -- Pers3_M
+           qp1 = qp.s ! Nom;
+           qp2 = qp.s ! Ins
+           in { s = \\t,p,o => 
+              case t of {
+-- 	           VPSmplPast => qp2 ++ cl.s ! t ! p ! ODir ;
+	           _          => qp1 ++ cl.s ! t ! p ! ODir
+               }
+			} ; 
+
+
+    QuestSlash ip slash = 
+      let ip1 = ip.s ! Nom;
+          ip2 = ip.s ! Ins
+          in {
+          s = \\t,p,o => case t of { 
+--            VPSmplPast => ip2 ++ slash.s ! t ! p ! ODir ;
+              _          => ip2 ++ slash.s ! t ! p ! ODir
+            }
+        };
+
+    QuestIAdv iadv cl = { 
+        s = \\t,p,_ => iadv.s ++ cl.s ! t ! p ! ODir;
+        } ;
+
+    QuestIComp icomp np = 
+     let cl =  mkSClause (np.s ! NPC Nom ++ icomp.s) np.a (predAux NonLiving) ;--(predAux np.t); to test mkQCl-IAdv-NP-QCl                     
+	   in {                                                                    -- eg उनी कहाँ छिन् - (छिन् - NonLiving case) 
+       s = \\t,p,qf => case qf of { 
+	      QDir   => cl.s ! t ! p ! ODir;
+          QIndir => cl.s ! t ! p ! ODir
+		  }
+		};
+
+    PrepIP p ip = {s = ip.s ! ResNep.Nom ++ p.s } ; -- case need to be confirmed
+
+    AdvIP ip adv = {
+      s = \\c => adv.s  ++ ip.s ! c ;
+      n = ip.n;
+      g = ip.g;
+      } ;
+ 
+    IdetCN idet cn = {
+      s = \\c => idet.s ! Masc++ cn.s ! idet.n ! c ; 
+	  n = idet.n;
+      } ;
+
+    IdetIP idet = {
+      s = \\_ => idet.s ! Masc ; 
+      n = idet.n;
+      } ;
+
+    IdetQuant iqant num = {
+      s =\\_ => iqant.s ! num.n ++ num.s ;
+      n = num.n ;
+      } ;
+
+    CompIAdv a = a ;
+    CompIP p = ss (p.s ! Nom) ;
+    AdvIAdv i a = {s = i.s ++ a.s} ;
+    AdvQVP vp iadv = insertObj (\\_ => iadv.s) vp ;
+    AddAdvQVP qvp iadv = insertObj (\\_ => iadv.s) qvp ;
+    ComplSlashIP vpslash ip = insertObj (\\_ => ip.s ! Nom) vpslash ;
+    
+   --QuestQVP      : IP -> QVP -> QCl ;       -- who buys what where
+   QuestQVP ip qvp = 
+     let cl  = mkSClause ("") (Ag Masc ip.n Pers3_M) qvp ; -- Pers3_M
+         qp1 = ip.s ! Nom ;
+         qp2 = ip.s ! Ins
+         in { s = \\t,p,o => 
+            case t of {
+-- 	        VPSmplPast => qp2 ++ cl.s ! t ! p ! ODir ;
+	        _          => qp1 ++ cl.s ! t ! p ! ODir
+            }
+		} ; 
+   
+   lincat QVP = CatNep.VP ;
+   
+}
diff --git a/lib/src/nepali/src/RelativeNep.gf b/lib/src/nepali/src/RelativeNep.gf
new file mode 100644
--- /dev/null
+++ b/lib/src/nepali/src/RelativeNep.gf
@@ -0,0 +1,48 @@
+concrete RelativeNep of Relative = CatNep ** open ResNep in {
+
+  flags optimize=all_subs ;
+  coding = utf8;
+
+  lin
+
+    RelCl cl = {
+      s = \\t,p,o,agr => "jsx:tokI" ++ cl.s ! t ! p ! o ;
+      c = Nom
+      } ;
+
+    RelVP rp vp = {
+      s = \\t,p,o,ag => 
+        let 
+        agr = case rp.a of {
+              RNoAg => ag ;
+              RAg a => a
+              } ;
+        cl = mkSClause (rp.s ! Nom) agr vp;
+        in
+        cl.s ! t ! p ! ODir ;
+        c = Nom
+        } ;
+      
+
+    RelSlash rp slash = {
+      s = \\t,p,o,agr => rp.s ! Nom ++ slash.c2.s ++  slash.s ! t ! p ! o  ;
+      c = Nom
+      } ;
+
+    
+    -- CHEK NEPALI RULES FOR RELSTIVE (PG 32)
+    FunRP p np rp = {
+      s = \\c => rp.s ! c ++ np.s ! NPC Nom ++ p.s  ;
+      a = RAg np.a
+      } ;
+
+    IdRP = {
+      s = table {
+		    ResNep.Nom  => "jo" ;
+		    ResNep.Ins  => "jsx:le" ;
+		    _           => "jo"
+			} ;
+      a = RNoAg
+      } ;
+
+}
diff --git a/lib/src/nepali/src/ResNep.gf b/lib/src/nepali/src/ResNep.gf
new file mode 100644
--- /dev/null
+++ b/lib/src/nepali/src/ResNep.gf
@@ -0,0 +1,638 @@
+--# -path=.:../abstract:../common:../../prelude
+--
+--1 Nep auxiliary operations.
+--  by Dinesh Simkhada and Shafqat Virk - 2011
+--
+-- This module contains operations that are needed to make the
+-- resource syntax work. 
+
+resource ResNep = ParamX  ** open Prelude, Predef in {
+
+  flags optimize=all ;
+  coding = utf8;
+
+  param 
+    Case = Nom | Acc | Ins | Dat | Abl | Loc ;
+    Gender = Masc | Fem ;
+    NPerson = Pers1 
+	    | Pers2_L
+	    | Pers2_M
+	    | Pers2_H
+	    | Pers3_L
+        | Pers3_M
+        | Pers3_H ;
+		
+	Order = ODir | OQuest ;
+	
+--2 For $Relative$
+ 
+    RAgr = RNoAg | RAg Agr ;
+    RCase = RC Number Case ;
+
+-- for Numerial
+   
+   CardOrd = NCard | NOrd ;
+
+------------------------------------------
+--Verbs
+-------------------------------------------
+  	VTense = NPresent | NPast PTypes | NFuture FTypes;
+    PTypes = Simpl | Hab ; -- Unknown - Currently we didn't find the use of 'Unknown' type
+    FTypes = Defin | NDefin ;    
+  
+    VerbForm =
+      VF VTense Aspect Polarity NPerson Number Gender
+       | Root -- Root form, 'kha' is the root of 'khanu'
+       | Inf  -- Infinitive form 'khanau'
+       | ProgRoot Aspect Number Gender
+       | PVForm  -- Partial verb form 'khan' is teh PVForm of 'khanu'
+       | Imp ;
+      
+  -- Aspect Perfective and non-perfective
+    Aspect = Perf | Imperf ; 
+    
+    -- For distinguishing the type of noun
+    -- Prefessions/Occupations, Humans all mapped to Living category
+    NType = Living | NonLiving ;
+
+  
+  oper
+  
+    Noun = {s : Number => Case => Str ; g : Gender ; t : NType ; h : NPerson } ;
+ 
+    Verb = {s : VerbForm => Str} ;
+
+    Preposition = {s : Str};
+  
+    Determiner = {s : Number => Gender => Str ; n : Number};
+
+-- Nepali Adjectives
+
+   npAdjective = {s : Number => Gender => Str} ;
+
+   mkAdjnp : Str -> npAdjective = \str ->
+     case str of {
+        st + t@"t" + "o" => mkAdj1 str str (st+t+"a") ; -- No Fem for red [couple of places which takes Fem but no general rule]
+        st + "o"         => mkAdj1 str (st+"I") (st+"a") ;
+        _                => mkAdj1 str str str
+        } ;
+   
+   mkAdj1 : (x1,_,x3 : Str) -> npAdjective = 
+     \sm, sf, smf -> {
+        s = table {
+            Sg => table {
+                Masc => sm ;
+                Fem  => sf 
+            } ;
+            Pl => table {
+                Masc => smf ;
+                Fem  => smf 
+            } 
+        }
+     };
+
+
+-- Reflective Pronoun
+  --eg. (i will do myself)
+  -- Functions used at NounNep [TODO: inflection at morphological level and attach with VP might be good option]
+  reflPron : Str ;
+  reflPron = "APEM" ; -- आफैं
+  
+  eko : Str ;
+  eko = "e:ko" ;
+  
+  eko : Str ;
+  eki = "e:kI" ;
+  
+  eka : Str ;
+  eka = "e:ka" ;
+  
+  sbvn : Str ;
+  sbvn = "sbBnx:da" ;
+  
+  ----------------------------------------------------------
+  -- Grammar part
+  ----------------------------------------------------------
+  
+  param
+    Agr = Ag Gender Number NPerson ;
+    NPCase = NPC Case | NPObj | NPErg ;
+
+  oper
+  
+    np2pronCase : (Case => Str) -> NPCase -> Agr -> Str = 
+      \ppf,npc,a -> case npc of {
+       NPC c => ppf ! c ;
+       NPObj => ppf ! Nom ;
+       NPErg => ppf ! Ins --Nom ++ "le" 
+       } ;    
+    
+	toNP : (Case => Str) -> NPCase -> Str = \pn, npc -> case npc of {
+       NPC c => pn ! c ;
+       NPObj => pn ! Nom ;
+       NPErg => pn ! Ins --Nom ++ "le"
+       } ;
+	
+    detcn2NP : (Determiner) -> Noun -> NPCase -> Number -> Str = \dt,cn,npc,nn -> case npc of {
+       NPC c => dt.s ! dt.n ! Masc ++ cn.s ! nn ! c ;
+       NPObj => dt.s ! dt.n ! Masc ++ cn.s ! nn ! Nom ;
+       NPErg => dt.s ! dt.n ! Masc ++ cn.s ! nn ! Ins --Nom ++ "le"
+       } ;  
+    
+    det2NP : (Determiner) -> NPCase -> Str = \dt,npc -> case npc of {
+       NPC c => dt.s ! dt.n ! Masc ;
+       NPObj => dt.s ! dt.n ! Masc ;
+       NPErg => dt.s ! dt.n ! Masc ++ "le"
+       } ;    
+
+------------------------------------
+-- Agreement transformations
+------------------------------------
+
+  oper
+
+    toAgr : Number -> NPerson -> Gender -> Agr = \n,p,g ->       
+	   Ag g n p;
+      
+    
+    fromAgr : Agr -> {n : Number ; p : NPerson ; g : Gender} = 
+      \a -> case a of {
+       Ag g n p => {n = n ; p = p ; g = g} 
+	   } ;
+	
+      
+	conjAgr : Agr -> Agr -> Agr = \a0,b0 -> 
+      let a = fromAgr a0 ; b = fromAgr b0 
+      in
+      toAgr (conjNumber a.n b.n) b.p a.g;	  
+	
+	
+    giveNumber : Agr -> Number = 
+     \a -> case a of {
+	   Ag _ n _ => n
+       } ;
+    
+	giveGender : Agr -> Gender = 
+     \a -> case a of {
+	   Ag g _ _ => g
+	   } ;
+        
+    defaultAgr : Agr = agrP3 Masc Sg ;
+    
+    agrP3 : Gender -> Number -> Agr = 
+      \g,n -> Ag g n Pers3_L ;	
+    
+    agrP1 : Gender -> Number -> Agr = 
+      \g,n -> Ag g n Pers1 ;
+    
+    personalAgr : Agr = agrP1 Masc Sg ;
+    
+    	
+  param
+      CPolarity = 
+       CPos
+       | CNeg Bool ;  -- contracted or not
+
+  oper
+    contrNeg : Bool -> Polarity -> CPolarity = 
+     \b,p -> case p of {
+       Pos => CPos ;
+       Neg => CNeg b
+       } ;
+
+    NP : Type = {s : NPCase => Str ; a : Agr ; t : NType } ;
+   
+
+  param
+     
+    VPHTense = 
+       VPGenPres                   -- impf hum       nahim    "I go"
+     | VPSmplPast  --# notpresent  -- impf Ta        nahim    "I went"
+	 | VPFut       --# notpresent  -- fut            na/nahim "I shall go"
+     | VPPerfPres                  -- perf hum       na/nahim "I have gone"
+     | VPPerfPast  --# notpresent  -- perf Ta        na/nahim "I had gone"          
+	 | VPPerfFut   --# notpresent
+     | VPCondPres                  -- subj           na       "I may go"
+     | VPCondPast  --# notpresent  -- subj           na       "I may go"
+     ;
+       
+    VType = VIntrans | VTrans | VTransPost ;
+    
+    -- Tense defined for coupla case
+    CTense = CPrsnt | CPast | CFuture ;
+
+  
+  oper
+    
+	objVType : VType -> NPCase = \vt -> 
+     case vt of {
+       VTrans => NPObj ;
+       _      => NPC Nom
+       } ;
+
+    VPH : Type = {
+      s    : VerbForm => {inf : Str} ;
+      obj  : {s : Str ; a : Agr} ; 
+      subj : VType ;
+      comp : Agr => Str;
+      inf : Str;
+      ad  : Str;
+      embComp : Str ;
+      } ;
+	
+	VPHSlash = VPH ** {c2 : Compl} ;
+    Compl : Type = {s : Str ; c : VType} ;
+
+    predV : Verb -> VPH = \verb -> 
+     {s = \\vf => 
+	   case vf of {
+	     VF t a pl p n g => {inf = verb.s ! VF t a pl p n g } ;
+	     Root => {inf = verb.s ! Root } ;
+         Inf => {inf = verb.s ! Inf } ;
+	     Imp => {inf = verb.s ! Imp } ;
+         PVForm => {inf = verb.s ! PVForm } ;
+         ProgRoot a n g => {inf = verb.s ! ProgRoot a n g }  
+		 };
+	    obj = {s = [] ; a = defaultAgr} ;
+		subj = VIntrans ;
+        inf = verb.s ! Inf;
+		ad = [];
+        embComp = [];
+        comp = \\_ => []
+      } ;
+
+    predVc : (Verb ** {c2,c1 : Str}) -> VPHSlash = \verb ->     
+      predV verb ** {c2 = {s = verb.c1 ; c = VTrans} } ;
+
+
+	predAux :  NType -> VPH =\ctype ->  {
+      s = \\vh => 
+       case vh of {
+	      VF NPresent _ pl p n g =>  
+             case ctype of { 
+               Living => {inf = copulaPrLvng pl n p g } ;
+	           _      => {inf = copulaPrGen  pl n p g }
+               } ;
+	      VF (NPast _) _ pl p n g => {inf = copulaPsGen pl n p g } ;
+	      VF (NFuture _) _ pl p n g => {inf = copulaFtGen pl n p g } ;
+	      
+          Root => { inf = ""} ;
+          Inf=> {inf = ""} ;
+	      Imp => {inf = ""} ;
+          ProgRoot a n g => {inf = "" } ; 
+          PVForm => {inf = ""} 
+        };
+       obj = {s = [] ; a = defaultAgr} ;
+       subj = VIntrans ;
+       inf = "";
+       ad = [];
+       embComp = [];
+       comp = \\_ => []
+       } ;
+ 
+
+  predProg : VPH -> VPH = \verb -> {
+     s = \\vh => 
+       case vh of {
+         VF NPresent a pl p n g => {inf =  (verb.s ! ProgRoot a n g).inf ++ copulaPrGen pl n p g} ;
+         VF (NPast _) a pl p n g => {inf = (verb.s ! ProgRoot a n g).inf ++ copulaPsGen pl n p g} ; --# notpresent
+         VF (NFuture _) a pl p n g => {inf = (verb.s ! ProgRoot a n g).inf ++ copulaFtGen pl n p g} ; --# notpresent
+		 
+         Root => {inf = (verb.s ! Root).inf } ;
+         Inf => {inf = (verb.s ! ProgRoot Imperf Sg Masc).inf } ;
+	     Imp => {inf = (verb.s ! Imp).inf } ;
+         PVForm => {inf = (verb.s ! PVForm).inf } ;
+         ProgRoot a n g => {inf = (verb.s ! ProgRoot a n g).inf } 
+		 };
+      obj = verb.obj ;
+      subj =  VIntrans ;
+      inf = verb.inf;
+      ad = verb.ad;
+      embComp = verb.embComp;
+      comp = verb.comp 
+      } ;
+   
+   Clause : Type = {s : VPHTense => Polarity => Order => Str} ;
+      
+   -- TODO, ERGATIVE CASE FROM NOUN INFLETION [No Proper grammer resource found]
+   mkClause : NP -> VPH -> Clause = \np,vp -> {
+      s = \\vt,b,ord => 
+        let 
+          subjagr : NPCase * Agr = case vt of {
+             VPSmplPast   => case vp.subj of {
+               VTrans     => <NPErg, vp.obj.a> ;
+               VTransPost => <NPErg, defaultAgr> ;
+               _          => <NPC Nom, np.a>
+               } ;
+             
+             VPPerfPast   => case vp.subj of {
+               VTrans     => <NPErg, vp.obj.a> ;
+               VTransPost => <NPErg, defaultAgr> ;
+               _          => <NPC Nom, np.a>
+               } ;
+             _            => <NPC Nom, np.a>
+            } ;
+            subj = subjagr.p1 ;
+            agr  = subjagr.p2 ;
+            n    = (fromAgr agr).n;
+		    p    = (fromAgr agr).p;
+		    g    = (fromAgr agr).g;
+            vps  = case <vt,b> of {
+               <VPGenPres,Pos>  => vp.s ! VF NPresent Imperf Pos p n g ;
+               <VPGenPres,Neg>  => vp.s ! VF NPresent Imperf Neg p n g ;
+               <VPFut,Pos>      => vp.s ! VF (NFuture Defin) Imperf Pos p n g ; --# notpresent
+               <VPFut,Neg>      => vp.s ! VF (NFuture Defin) Imperf Neg p n g ; --# notpresent
+               <VPSmplPast,Pos> => vp.s ! VF (NPast Simpl) Imperf Pos p n g ; --# notpresent
+               <VPSmplPast,Neg> => vp.s ! VF (NPast Simpl) Imperf Neg p n g ; --# notpresent
+               
+               <VPPerfPres,Pos> => vp.s ! VF NPresent Perf Pos p n g ;
+               <VPPerfPres,Neg> => vp.s ! VF NPresent Perf Neg p n g ;
+               <VPPerfPast,Pos> => vp.s ! VF (NPast Simpl) Perf Pos p n g ; --# notpresent
+               <VPPerfPast,Neg> => vp.s ! VF (NPast Simpl) Perf Neg p n g ; --# notpresent
+               <VPPerfFut,Pos>  => vp.s ! VF (NFuture Defin) Perf Pos p n g ; --# notpresent
+               <VPPerfFut,Neg>  => vp.s ! VF (NFuture Defin) Perf Neg p n g ; --# notpresent
+  
+                <VPCondPres, Pos> => vp.s ! VF (NFuture Defin) Imperf Pos p n g ;
+                <VPCondPres, Neg> => vp.s ! VF (NFuture Defin) Imperf Neg p n g ;
+                <VPCondPast, Pos> => vp.s ! VF (NPast Hab) Perf Pos p n g ; --# notpresent
+                <VPCondPast, Neg> => vp.s ! VF (NPast Hab) Perf Neg p n g  --# notpresent
+                } ;
+				    
+          quest =
+            case ord of
+              { ODir => [];
+                OQuest => "ke" }; 
+		  
+        in
+		quest ++ np.s ! subj ++ vp.ad ++ vp.obj.s ++ vp.comp ! np.a  ++  vps.inf ++ vp.embComp
+		--quest ++ np.s ! subj ++ vp.ad ++ vp.comp ! np.a ++ vp.obj.s ++ vps.inf ++ vp.embComp
+      } ;
+
+ 
+  mkSClause : Str -> Agr -> VPH -> Clause =
+    \subj,agr,vp -> {
+      s = \\t,b,ord => 
+        let 
+		  n   = (fromAgr agr).n;
+		  p   = (fromAgr agr).p;
+		  g   = (fromAgr agr).g;
+          vps = case <t,b> of {
+			   <VPGenPres,Pos>  => vp.s ! VF NPresent Imperf Pos p n g ;
+               <VPGenPres,Neg>  => vp.s ! VF NPresent Imperf Neg p n g ;
+               <VPFut,Pos>      => vp.s ! VF (NFuture Defin) Imperf Pos p n g ; --# notpresent
+               <VPFut,Neg>      => vp.s ! VF (NFuture Defin) Imperf Neg p n g ; --# notpresent
+               <VPSmplPast,Pos> => vp.s ! VF (NPast Simpl) Imperf Pos p n g ; --# notpresent
+               <VPSmplPast,Neg> => vp.s ! VF (NPast Simpl) Imperf Neg p n g ; --# notpresent
+               
+               <VPPerfPres,Pos> => vp.s ! VF NPresent Perf Pos p n g ;
+               <VPPerfPres,Neg> => vp.s ! VF NPresent Perf Neg p n g ;
+               <VPPerfPast,Pos> => vp.s ! VF (NPast Simpl) Perf Pos p n g ; --# notpresent
+               <VPPerfPast,Neg> => vp.s ! VF (NPast Simpl) Perf Neg p n g ; --# notpresent
+               <VPPerfFut,Pos>  => vp.s ! VF (NFuture Defin) Perf Pos p n g ; --# notpresent
+               <VPPerfFut,Neg>  => vp.s ! VF (NFuture Defin) Perf Neg p n g ; --# notpresent
+  
+                <VPCondPres, Pos> => vp.s ! VF (NFuture Defin) Imperf Pos p n g ;
+                <VPCondPres, Neg> => vp.s ! VF (NFuture Defin) Imperf Neg p n g ;
+                <VPCondPast, Pos> => vp.s ! VF (NPast Hab) Perf Pos p n g ; --# notpresent
+                <VPCondPast, Neg> => vp.s ! VF (NPast Hab) Perf Neg p n g  --# notpresent
+                } ;
+				    
+          quest =
+            case ord of
+              { ODir => [];
+                OQuest => "ke" }; 
+		  
+        in
+		quest ++ subj ++ vp.obj.s ++ vp.ad ++ vp.comp ! agr  ++  vps.inf ++ vp.embComp
+	    --quest ++ subj ++ vp.ad ++ vp.comp ! agr ++ vp.obj.s ++ vps.inf ++ vp.embComp
+      } ;
+
+     
+     insertObj : (Agr => Str) -> VPH -> VPH = \obj1,vp -> {
+       s = vp.s ;
+       obj = vp.obj ;
+       subj = vp.subj ;
+	   inf = vp.inf;
+	   ad = vp.ad;
+       embComp = vp.embComp;
+       comp = \\a =>    vp.comp ! a  ++ obj1 ! a 
+       } ;
+
+     insertVV : {s:Agr => Str} -> VPH -> Str -> VPH -> VPH = \obj1,vp,emb,vp2 -> {
+       s = vp.s ;
+       obj = vp2.obj ;
+       subj = vp.subj ;
+	   inf = vp.inf;
+	   ad = vp.ad;
+       embComp = vp.embComp ++ emb; 
+       comp = \\a => obj1.s ! a ++  vp.comp ! a  
+       } ;
+     
+     insertObj2 : (Str) -> VPH -> VPH = \obj1,vp -> {
+       s = vp.s;
+       obj = vp.obj ;
+       subj = vp.subj ;
+	   inf = vp.inf;
+	   ad = vp.ad;
+       embComp = Prelude.glue vp.embComp obj1;
+       comp = vp.comp
+       } ;
+     	 
+    insertObjc : (Agr => Str) -> VPHSlash -> VPHSlash = \obj,vp -> 
+      insertObj obj vp ** {c2 = vp.c2} ;
+
+    insertObjc2 : Str -> VPHSlash -> VPHSlash = \obj,vp -> 
+      insertObj2 obj vp ** {c2 = vp.c2} ;
+
+	infVP : Bool -> VPH -> {s:Agr => Str} = \isAux,vp ->
+      {s= \\a => vp.obj.s ++ (vp.s ! PVForm).inf ++ vp.comp ! a };
+
+    infVV :  VPH -> {s:Agr => Str} = \vp -> {
+      s = \\ agr => vp.comp ! agr ++ (vp.s ! PVForm).inf
+      } ; 
+
+
+    infV2V :  VPH -> {s :Agr => Str} = \vp -> {
+      s = \\agr => vp.comp ! agr ++ (vp.s ! PVForm).inf -- ++ "lai:"    
+      } ; 
+    
+    insertObject : NP -> VPHSlash -> VPH = \np,vps -> {
+      s = vps.s ;
+      obj =  {s =  np.s ! objVType vps.c2.c ++ vps.c2.s ++ vps.obj.s ; a = np.a} ;
+      subj = vps.c2.c ;
+	  inf = vps.inf;
+	  ad = vps.ad;
+      embComp = vps.embComp;
+      comp = vps.comp
+      } ;
+	  
+	insertObjPre : (Agr => Str) -> VPHSlash -> VPH = \obj,vp -> {
+      s = vp.s ;
+      obj = vp.obj ;
+      inf = vp.inf ;
+      subj = vp.subj ;
+	  ad = vp.ad ;
+      embComp = vp.embComp;
+      comp = \\a =>   obj ! a  ++ vp.c2.s ++ vp.comp ! a 
+      } ;
+
+    insertAdV : Str -> VPH -> VPH = \ad,vp -> {
+      s = vp.s ;
+      obj = vp.obj ;
+      inf = vp.inf ;
+	  subj = vp.subj;
+      ad  = vp.ad ++ ad ;
+      embComp = vp.embComp;
+      comp = vp.comp
+      } ;
+    
+    conjThat : Str = "kI" ; -- की
+    
+    insertEmbCompl : VPH -> Str -> VPH = \vp,emb -> {
+      s = vp.s ;
+      obj = vp.obj ;
+      inf = vp.inf ;
+      subj = vp.subj;
+      ad  = vp.ad;
+      embComp = vp.embComp ++ emb;
+      comp = vp.comp
+      } ;
+        
+    insertTrans : VPH -> VType -> VPH = \vp,vtype -> {
+      s = vp.s ;
+      obj = vp.obj ;
+      inf = vp.inf ;
+      subj = case vtype of {
+             VIntrans => VTransPost ; 
+             VTrans   => VTrans ; 
+             _        => vtype
+             } ; 
+      ad  = vp.ad;
+      embComp = vp.embComp ;
+      comp = vp.comp
+      } ;
+      
+  -- copula cases
+  oper    
+    -- For Human, occupation/Introductiary case 
+    copulaPrLvng :  Polarity -> Number -> NPerson -> Gender -> Str = 
+      \po,n,pn,g -> 
+      case <po,pn,n,g> of {
+        -- Resembles with 'mkVPreNPReg' function for positive --TODO
+        -- Present Positive
+        <Pos, Pers1,   Sg,   _>  => "huV" ; -- हुँ
+        <Pos, Pers1,   Pl,   _>  => "hwV" ; -- हौँ
+        <Pos, Pers2_L, Sg,   _> => "hosx:" ; -- होस्
+        --<Pos, Pers2_L, Sg, Fem>  => "hosx:" ; -- छेस्      
+        <Pos, Pers2_L, Pl,   _>  => "hw" ; -- हौ
+        --<Pos, Pers2_M, Pl, Fem>  => "cx:yw" ;  -- छ्यौ
+        <Pos, Pers2_M,  _,   _>  => "hw" ; --  हौ
+        <Pos, Pers3_L, Sg, Masc> => "ho" ;  -- हो
+        <Pos, Pers3_L, Sg, Fem>  => "hunx:" ; -- हुन्
+        <Pos, Pers3_L, Pl,   _>  => "hunx:" ;  -- हुन्     
+        --<Pos, Pers3_M, Sg, Fem>  => "hunx:" ;  -- हुन्     
+        <Pos, Pers3_M, _,    _>  => "hunx:" ;  -- हुन्     --"hw" ;  -- हौ
+        <Pos,      _ , _,    _>  => "hunuhunx:c" ; --हुनुहुन्छ
+          
+        -- Present Negative
+        <Neg, Pers1,   Sg,   _>  => "hEn" ; -- 
+        <Neg, Pers1,   Pl,   _>  => "hEnwM" ; -- हैनौं
+        <Neg, Pers2_L, Sg,   _>  => "hEnsx:" ; -- हैनस्
+        <Neg, Pers2_L, Pl,   _>  => "hEnw" ; -- हैनौ
+	    <Neg, Pers2_M,  _,   _>  => "hEnw" ; -- हैनौ        
+        <Neg, Pers3_L, Sg,   _>  => "hEn" ; --हैन
+        <Neg, Pers3_L, Pl,   _>  => "hEnnx:" ; -- हैनन्
+        <Neg, Pers3_M,  _,   _>  => "hEnnx:" ; -- हैनन्
+        <Neg,       _,  _,   _>  => "hunuhunx:z+n"  -- हुनुहुन्‌न
+        } ;
+    
+    copulaPrGen : Polarity -> Number -> NPerson -> Gender -> Str = 
+      \po,n,pn,g -> 
+      case <po,pn,n,g> of {
+        <Pos, Pers1,   Sg,   _>  => "cu" ; -- छु 
+        <Pos, Pers1,   Pl,   _>  => "cwM" ; -- छौं      
+        <Pos, Pers2_L, Sg, Masc> => "csx:" ; -- छस्
+        <Pos, Pers2_L, Sg, Fem>  => "cesx:" ; -- छेस्      
+        <Pos, Pers2_L, Pl,   _>  => "cw" ; -- छौ 
+        <Pos, Pers2_M, Pl, Fem>  => "cx:yw" ;  -- छ्यौ
+        <Pos, Pers2_M,  _,   _>  => "cw" ; -- छौ      
+        <Pos, Pers3_L, Sg, Masc> => "c" ;  -- छ
+        <Pos, Pers3_L, Sg, Fem>  => "ce" ;  -- छे
+        <Pos, Pers3_L, Pl,   _>  => "cnx:" ;  -- छन्      
+        <Pos, Pers3_M, Sg, Fem>  => "cinx:" ;  -- छिन्
+        <Pos, Pers3_M, _,    _>  => "cnx:" ;  -- छन्      
+        <Pos,      _ , _,    _>  => "hunuhunx:c" ; --हुनुहुन्छ
+          
+        -- Present Negative
+        <Neg, Pers1,   Sg,   _>  => "cEnV" ; -- छैनँ
+        <Neg, Pers1,   Pl,   _>  => "cEnwM" ; -- छैनौं
+        <Neg, Pers2_L, Sg,   _>  => "cEnsx:" ; -- छैनस्
+        <Neg, Pers2_L, Pl,   _>  => "cEnw" ; -- छैनौ
+	    <Neg, Pers2_M,  _,   _>  => "cEnw" ; -- छैनौ        
+        <Neg, Pers3_L, Sg,   _>  => "cEn" ; --छैन
+        <Neg, Pers3_L, Pl,   _>  => "cEnnx:" ; -- छैनन्
+        <Neg, Pers3_M,  _,   _>  => "cEnnx:" ; -- छैनन्
+        <Neg,       _,  _,   _>  => "hunuhunx:z+n" -- हुनुहुन्‌न
+        } ;
+
+    copulaPsGen : Polarity -> Number -> NPerson -> Gender -> Str = 
+      \po,n,pn,g -> 
+      case <po,pn,n,g> of {
+        -- Past Positive
+        <Pos, Pers1,   Sg,    _> => "Tie:V" ; -- थिएँ
+        <Pos, Pers1,   Pl,    _> => "TiywV" ; -- थियौँ          
+        <Pos, Pers2_L, Sg,    _> => "Tii:sx:" ; -- थिइस्
+        <Pos, Pers2_L, Pl,    _> => "Tiyw" ; -- थियौ
+        <Pos, Pers2_M,  _,    _> => "Tiyw" ; -- थियौ          
+        <Pos, Pers3_L, Sg, Masc> => "Tiyo" ; -- थियो
+        <Pos, Pers3_L, Sg, Fem>  => "TiI:" ; --थिई
+        <Pos, Pers3_L, Pl,   _>  => "Tie:" ; -- थिए
+        <Pos, Pers3_M, Sg, Fem>  => "Tii:nx:" ; -- थिइन्
+        <Pos, Pers3_M,  _,   _>  => "Tie:" ; -- थिए
+        <Pos,       _,  _,   _>  => "hunuhunx:z+Tx:yo" ; -- हुनुहुन्‌थ्यो 
+        
+        -- Past Positive
+        <Neg, Pers1,   Sg,    _> => "TinV" ; -- थिनँ
+        <Neg, Pers1,   Pl,    _> => "TenwM" ; -- थेनौं
+        <Neg, Pers2_L, Sg,    _> => "Tinsx:" ; -- थिनस्        
+        <Neg, Pers2_L, Pl,    _> => "Tenw" ; -- थेनौ
+        <Neg, Pers2_M,  _,    _> => "Tenw" ; -- थेनौ        
+        <Neg, Pers3_L, Sg, Masc> => "Ten" ; -- थेन
+        <Neg, Pers3_L, Sg, Fem>  => "Tin" ; --थिन        
+        <Neg, Pers3_L, Pl,   _>  => "Tennx:" ; -- थेनन्
+        <Neg, Pers3_M, Sg, Fem>  => "Tinnx:" ; -- थिनन्
+        <Neg, Pers3_M,  _,   _>  => "Tennx:" ; -- थेनन्
+        <Neg,       _,  _,   _>  => "hunuhunx:z+nTx:yo" -- हुनुहुन्‌नथ्यो  
+        } ;
+        
+        
+    copulaFtGen : Polarity -> Number -> NPerson -> Gender -> Str = 
+      \po,n,pn,g -> 
+      case <po,pn,n,g> of {
+         -- Future Positive
+        <Pos, Pers1,   Sg,   _>  => "hunecu" ; -- हुनेछु
+        <Pos, Pers1,   Pl,   _>  => "hunecwM" ; -- हुनेछौं      
+        <Pos, Pers2_L, Sg,   _>  => "hunecsx:" ; -- हुनेछस्
+        <Pos, Pers2_L, Pl,   _>  => "hunecwM" ; -- हुनेछौ
+        <Pos, Pers2_M,  _,   _>  => "hunecwM" ; -- हुनेछौ               
+        <Pos, Pers3_L, Sg,   _>  => "hunec" ; -- हुनेछ
+        <Pos, Pers3_L, Pl,   _>  => "hunecnx:" ; -- हुनेछन्      
+        <Pos, Pers3_M,  _, Masc> => "hunecnx:" ; -- हुनेछन्
+        <Pos, Pers3_M, Sg, Fem>  => "hunecnx:" ; -- हुनेछिन्      
+        <Pos, Pers3_M, Pl, Fem>  => "hunecnx:" ; -- हुनेछन्            
+        <Pos,       _,  _,   _>  => "hunuhunec" ; -- हुनुहुनेछ      
+          
+        -- Negative Case
+        <Neg, Pers1,   Sg,   _>  => "hunecEn" ; -- हुनेछैन
+        <Neg, Pers1,   Pl,   _>  => "hunecEnEV" ; -- हुनेछैनैँ
+        <Neg, Pers2_L, Sg,   _>  => "hunecEnsx:" ; -- हुनेछैनस्
+        <Neg, Pers2_L, Pl,   _>  => "hunecEnE" ; -- हुनेछैनै
+        <Neg, Pers2_M,  _,   _>  => "hunecEnE" ; -- हुनेछैनै           
+        <Neg, Pers3_L, Sg,   _>  => "hunecEnx:" ; -- हुनेछैन्
+        <Neg, Pers3_L, Pl,   _>  => "hunecEnnx:" ; -- हुनेछैनन्
+        <Neg, Pers3_M, Sg,   _>  => "hunecEnnx:" ; -- हुनेछैनन्          
+        <Neg, Pers3_M, Pl,   _>  => "hunecEnE" ; -- हुनेछैनै
+        <Neg,       _,  _,   _>  => "hunuhunecEnx:" -- हुनुहुनेछैन्
+        } ;
+
+}
diff --git a/lib/src/nepali/src/SentenceNep.gf b/lib/src/nepali/src/SentenceNep.gf
new file mode 100644
--- /dev/null
+++ b/lib/src/nepali/src/SentenceNep.gf
@@ -0,0 +1,109 @@
+concrete SentenceNep of Sentence = CatNep ** open Prelude, ResNep in {
+
+  flags optimize=all_subs ;
+  coding = utf8;
+
+  lin
+
+    PredVP np vp = mkClause np vp ;
+    
+    PredSCVP sc vp = mkSClause sc.s (defaultAgr) vp ;
+
+    ImpVP vp = {
+      s = \\pol,n => 
+        let 
+          agr   = Ag Masc (numImp n) Pers2_M ; 
+          --verb  = vp.obj.s ++ (vp.s ! PVForm).inf ++ vp.comp ! agr ;
+          verb  = vp.obj.s ++ (vp.s ! Root).inf ++ vp.comp ! agr ;
+          --verb  = vp.obj.s ++ vp.comp ! agr ++ (vp.s ! Root).inf ;
+          dont  = case pol of {
+            CNeg True => "ngr" ;
+            CNeg False => "ngr" ;
+            _ => []
+            }
+        in
+        dont ++ verb
+    } ;
+
+    SlashVP np vp = 
+      mkClause np vp ** {c2 = vp.c2} ;
+
+    AdvSlash slash adv = {
+	  s  = \\t,p,o =>  adv.s ++ slash.s ! t ! p ! o  ;
+      c2 = slash.c2
+    } ;
+
+    SlashPrep cl prep = cl **  {c2 = { s = prep.s ; c = VIntrans}} ;
+
+    SlashVS np vs slash = 
+      mkClause  np 
+        (insertObj2 (conjThat ++ slash.s) (predV vs))  **
+        {c2 = slash.c2} ;
+
+    EmbedS  s  = {s = conjThat ++ s.s} ;
+    EmbedQS qs = {s = qs.s ! QIndir} ;
+    EmbedVP vp = {s = vp.obj.s ++ (vp.s! PVForm).inf ++ vp.comp ! defaultAgr} ; --- agr
+
+
+  UseCl  temp p cl = 
+	 { s = case <temp.t,temp.a> of {
+	      <Pres,Simul> => temp.s ++ p.s ++ cl.s ! VPGenPres ! p.p ! ODir;
+          <Pres,Anter> => temp.s ++ p.s ++ cl.s ! VPPerfPres ! p.p ! ODir;
+          <Past,Simul> => temp.s ++ p.s ++ cl.s ! VPSmplPast ! p.p ! ODir;
+          <Past,Anter> => temp.s ++ p.s ++ cl.s ! VPPerfPast ! p.p ! ODir;
+          <Fut,Simul>  => temp.s ++ p.s ++ cl.s ! VPFut ! p.p ! ODir;
+          <Fut,Anter>  => temp.s ++ p.s ++ cl.s ! VPPerfFut ! p.p ! ODir;
+          <Cond,Simul> => temp.s ++ p.s ++ cl.s ! VPCondPres ! p.p ! ODir;
+          <Cond,Anter> => temp.s ++ p.s ++ cl.s ! VPCondPast ! p.p ! ODir 
+
+   };
+  } ;
+  
+    UseQCl temp p cl = {
+      s = \\q => case <temp.t,temp.a> of {
+	      <Pres,Simul> => temp.s ++ p.s ++ cl.s ! VPGenPres ! p.p ! q;
+          <Pres,Anter> => temp.s ++ p.s ++ cl.s ! VPPerfPres ! p.p ! q;
+          <Past,Simul> => temp.s ++ p.s ++ cl.s ! VPSmplPast ! p.p ! q;
+          <Past,Anter> => temp.s ++ p.s ++ cl.s ! VPPerfPast ! p.p ! q;
+          <Fut,Simul>  => temp.s ++ p.s ++ cl.s ! VPFut ! p.p ! q;
+          <Fut,Anter>  => temp.s ++ p.s ++ cl.s ! VPPerfFut ! p.p ! q;
+          <Cond,Simul> => temp.s ++ p.s ++ cl.s ! VPCondPres ! p.p ! q;
+          <Cond,Anter> => temp.s ++ p.s ++ cl.s ! VPCondPast ! p.p ! q		  
+ 
+   };
+  } ;
+  
+    UseRCl temp p rcl = {
+      s = \\q => case <temp.t,temp.a> of {
+	      <Pres,Simul> => temp.s ++ p.s ++ rcl.s ! VPGenPres ! p.p ! ODir ! q;
+          <Pres,Anter> => temp.s ++ p.s ++ rcl.s ! VPPerfPres ! p.p ! ODir ! q;
+          <Past,Simul> => temp.s ++ p.s ++ rcl.s ! VPSmplPast ! p.p ! ODir ! q;
+          <Past,Anter> => temp.s ++ p.s ++ rcl.s ! VPPerfPast ! p.p ! ODir ! q;
+          <Fut,Simul>  => temp.s ++ p.s ++ rcl.s ! VPFut ! p.p ! ODir ! q;
+          <Fut,Anter>  => temp.s ++ p.s ++ rcl.s ! VPPerfFut ! p.p ! ODir ! q;
+          <Cond,Simul> => temp.s ++ p.s ++ rcl.s ! VPCondPres ! p.p ! ODir ! q;
+          <Cond,Anter> => temp.s ++ p.s ++ rcl.s ! VPCondPast ! p.p ! ODir ! q
+     };		  
+      c = rcl.c
+    } ;
+    
+    UseSlash temp p clslash = {
+      s = case <temp.t,temp.a> of {
+	      <Pres,Simul> => temp.s ++ p.s ++ clslash.s ! VPGenPres ! p.p ! ODir;
+          <Pres,Anter> => temp.s ++ p.s ++ clslash.s ! VPPerfPres ! p.p ! ODir;
+          <Past,Simul> => temp.s ++ p.s ++ clslash.s ! VPSmplPast ! p.p ! ODir ;
+          <Past,Anter> => temp.s ++ p.s ++ clslash.s ! VPPerfPast ! p.p ! ODir;
+          <Fut,Simul>  => temp.s ++ p.s ++ clslash.s ! VPFut ! p.p ! ODir;
+          <Fut,Anter>  => temp.s ++ p.s ++ clslash.s ! VPPerfFut ! p.p ! ODir;
+          <Cond,Simul> => temp.s ++ p.s ++ clslash.s ! VPCondPres ! p.p ! ODir;
+          <Cond,Anter> => temp.s ++ p.s ++ clslash.s ! VPCondPast ! p.p ! ODir
+     };		  
+      c2 = clslash.c2
+    } ;
+
+    AdvS a s = {s = a.s  ++ s.s} ;
+
+    RelS s r = {s = s.s ++ r.s ! agrP3 Masc Sg} ;
+    SSubjS s sj s = { s = s.s ++ sj.s ++ s.s};
+    
+}
diff --git a/lib/src/nepali/src/StructuralNep.gf b/lib/src/nepali/src/StructuralNep.gf
new file mode 100644
--- /dev/null
+++ b/lib/src/nepali/src/StructuralNep.gf
@@ -0,0 +1,132 @@
+concrete StructuralNep of Structural = CatNep ** 
+  open MorphoNep, ParadigmsNep, Prelude, NounNep in {
+
+  flags 
+    optimize = all ;
+    coding = utf8;
+
+  lin
+
+    above_Prep = mkPrep "maTi" ; -- माथि
+    after_Prep = mkPrep "pci" ; -- पछि
+    all_Predet = ss "sbE" ; -- सबै (adj)
+    almost_AdA = mkAdA "JNx:xE" ;
+    almost_AdN = mkAdN "JNx:xE" ; -- JNx:xE (Adv) झण्डै
+    although_Subj = ss "tEpni" ; -- तैपनि (conj)
+    always_AdV = mkAdV "sDEV" ; -- सधैँ
+    and_Conj = sd2 [] "r" ** {n = Pl} ;
+    because_Subj = ss "kinBne" ; -- किनभने
+    before_Prep = mkPrep "HGi" ; -- अघि 
+    behind_Prep = mkPrep "pci" ; -- पछि
+    between_Prep = mkPrep "biC" ; -- बिच
+    both7and_DConj = sd2 "dubE" "r" ** {n = Pl} ; -- दुबै र
+    but_PConj = ss "tr" ; -- तर
+    by8agent_Prep = mkPrep "lai:" ; -- 
+    by8means_Prep = mkPrep "le" ; 
+    can8know_VV,can_VV = mkV "skx:nu" ** { isAux = True} ;
+    during_Prep = mkPrep "prx:yanx:t" ; -- पर्यान्त
+    either7or_DConj = sd2 "kI" "HTva" ** {n = Sg} ; -- की,  अथवा 
+    everybody_NP =  MassNP (UseN (regN "svw jana" Living)) ; -- not a good way coz need to include Noun (सवौ जाना)
+    every_Det = mkDet "sbE" "hrek" Sg ; -- सबै, हरेक
+    everything_NP = MassNP (UseN (regN "harek kura" NonLiving)) ; -- हारेक कुरा
+    everywhere_Adv = mkAdv "jata ttE" ; -- जाता ततै
+    few_Det = mkDet "TorE" "HliktI" Pl ; -- थोरै, अलिकती
+--  d    first_Ord = {s = "pehla" ; n = Sg} ; --DEPRECATED
+    for_Prep = mkPrep "lagi" ; -- लागि
+    from_Prep = mkPrep "baq" ; -- बाट
+    
+    i_Pron = mkPron "m" "mero" Sg Masc Pers1 ; -- म, मेरो
+    we_Pron = mkPron "hamIhru" "hamIhruko" Pl Masc Pers1 ; -- हामीहरु, हामीहरुको    
+    he_Pron = mkPron "f" "fsx:laI:" "fsx:le" "fsx:laI:" "fsbaq" "fsx:ma" "fsx:ko" Sg  Masc Pers3_L; --उ, उस्लाई, उस्ले, उस्लाई, उसवाट, उस्मा, उस्को
+    she_Pron = mkPron "fnI" "fnx:laI:" "fnx:le" "fnx:laI:" "fnbaq" "fnx:ma" "fnx:ko" Sg Fem Pers3_M ; -- उनी , उन्को
+    youSg_Pron = mkPron "timI" "timx:ro" Sg Masc Pers2_M ; -- तिमी, तिम्रो
+    youPl_Pron = mkPron "timIhru" "timIhruko" Pl Masc Pers2_M ; -- तिमीहरु, तिमीहरुको
+    youPol_Pron = mkPron "tpaI:" "tpaI:hruko" Sg Masc Pers2_H  ; -- तपाई, तपाईहरुको
+    they_Pron = mkPron "fnIhru" "fnihruko" Pl Masc Pers3_L ; -- उनिहरु, उनिहरुको
+    it_Pron  = mkPron "yo" "yslaI:" "yesle" "yslaI:" "ysbaq" "ysma" "usx:ko" Sg Masc Pers3_L; -- यो, यसलाई, यसले, यसलाई, यसबाट, यसमा, उस्को
+    
+    here_Adv = mkAdv "yhaV" ; -- यहाँ
+    here7to_Adv = mkAdv ["yhaV smx:m"] ; -- यहाँ सम्म
+    here7from_Adv = mkAdv ["yhaV baq"] ; -- यहाँ बाट
+    how_IAdv = ss "ksrI" ; -- कसरी
+    how8much_IAdv  = ss "ktI" ; -- कती
+    how8many_IDet = mkIDetn "ktI vqa" "ktI vqI" Pl ;  -- काती वटा, कती वटी (incase of humans it becomes, 'kati jana') NEEDS FIX
+    if_Subj = ss "ydi" ; -- यदि
+    in8front_Prep = mkPrep "samu" ; -- सामु      
+    in_Prep = mkPrep "ma" ; -- मा    
+    less_CAdv = {s = "km" ; p = "Bnx:da"} ; -- भन्दा कम
+    many_Det = mkDet "DerE" "Tupx:rE" Pl ; -- धेरै, थुप्रै
+    more_CAdv = {s = "bXI" ; p = "Bnx:da" } ;
+    most_Predet = ss "jx:yadE" ; -- ज्यादै
+    much_Det = mkDet "nikx:kE" "besrI" Sg  ; -- 
+    must_VV = mkV "HvSx:y" ** { isAux = True} ; -- अवश्य
+--  must_VV = {
+--    s = table {
+--      VVF VInf => ["have to"] ;
+--      VVF VPres => "must" ;
+--      VVF VPPart => ["had to"] ;
+--      VVF VPresPart => ["having to"] ;
+--      VVF VPast => ["had to"] ;      --# notpresent
+--      VVPastNeg => ["hadn't to"] ;      --# notpresent
+--      VVPresNeg => "mustn't"
+--      } ;
+--    isAux = True
+--    } ;
+  
+--  d    no_Phr = ss "hunx:n" ; -- हुन्न
+    no_Utt = ss "hoI:n" ; -- होईन
+    on_Prep = mkPrep "ma" ; -- मा
+--  d    one_Quant = mkQuant "e:k" "e:k" ; -- DEPRECATED
+    only_Predet = ss "matx:r" ; -- मात्र
+    or_Conj = sd2 [] "HTva" ** {n = Sg} ; -- अथवा
+    otherwise_PConj = ss "Hnx:yTa" ; -- अन्यथा
+    part_Prep = mkPrep "Bag" ; -- भाग
+    please_Voc = ss "kRpya" ; -- कृपया
+    possess_Prep = mkPrep "DarNa grx:nu" ; -- धारणा गर्नु
+    quite_Adv = ss "e:kdm" ; -- एकदम    
+    so_AdA = mkAdA "ys karN" ; -- यस कारण ???? NEED TO CHECK
+    somebody_NP = MassNP (UseN (regN "kohI" Living)); -- कोही
+    someSg_Det = mkDet "kohI" "kehI" Sg ;
+    somePl_Det = mkDet "kohI" "kehI" Pl ;
+    something_NP = MassNP (UseN (regN "kehI  kura" NonLiving)) ;
+    somewhere_Adv = mkAdv "khIM" ; -- कहीं
+    that_Quant = mkQuant "tx:ye" "yinIhru" ;
+    that_Subj = ss "tx:yo"; -- त्यो
+    there_Adv = mkAdv "tx:yhaV" ; -- त्यहाँ
+    there7to_Adv = mkAdv "tx:yhaV smx:m" ; -- त्यहाँ सम्म
+    there7from_Adv = mkAdv "tx:yhaV baq" ; -- त्यहाँ बाट
+    therefore_PConj = ss "Hth:" ; -- अतः    
+    this_Quant = mkQuant "yo" "yI" ; -- यो,  यी
+    through_Prep = mkPrep "marx:Pt" ; -- मार्फत
+    too_AdA = mkAdA "pni" ; -- पनि
+    to_Prep = ss "smx:m" ; -- सम्म
+    under_Prep = mkPrep "Hnx:trx:gt" ; -- अन्तर्गत
+    very_AdA = mkAdA "DerE" ; -- धेरै
+    want_VV = mkV "Cahnu" ** { isAux = False} ;    
+    whatSg_IP = mkIP "ke" "ke" "ke" "" Sg ;
+    whatPl_IP = mkIP "ke" "ke" "ke" "" Pl ;
+    when_IAdv = ss "khile" ; -- कहिले
+    when_Subj = ss "khile" ;
+    where_IAdv = ss "khaV" ; -- कहाँ
+    which_IQuant = {s = table {Sg => "kun" ; Pl => "kun" } }; -- कुन
+--  d    whichPl_IDet = {s = "kun" ; n = Sg} ;
+--  d    whichSg_IDet = {s = "kun" ; n = Pl} ;
+    whoSg_IP = mkIP "ko" "kaslaI:" "ksko" "" Sg ; 
+    whoPl_IP = mkIP "ko" "kaslaI:" "ksko" "" Pl ;
+    why_IAdv = ss "kin" ; -- किन
+    without_Prep = mkPrep "vina" ; -- विना
+    with_Prep = mkPrep "sVg" ; -- सँग
+--  d    yes_Phr = ss "hjur" ; -- हजुर
+    yes_Utt = ss "hjur" ;  
+    no_Quant =  mkQuant "hEn" "hEnE" ;
+    not_Predet = {s="hEn"} ; -- हैन
+    if_then_Conj = sd2 "ydi" "Bne" ** {n = Sg} ; -- यदि भने
+    at_least_AdN = mkAdN "kmsekm" ; -- कमसेकम
+    at_most_AdN = mkAdN "bXIma" ; -- बढीमा
+    nothing_NP = MassNP (UseN (regN "kehI pnI")) ; -- केही पनी
+    nobody_NP = MassNP (UseN (regN "kehI pnI" living)) ; --कोही पनी
+    except_Prep = mkPrep "bahek" ; -- बाहेक
+    as_CAdv = {s = "jtx:tIkE" ; p = ""} ;  -- जत्तीकै
+    have_V2 = mkV2 (mkV "hunu") "" ; -- हुनु
+    language_title_Utt = ss "nepalI" ; -- नेपाली
+}
diff --git a/lib/src/nepali/src/SymbolNep.gf b/lib/src/nepali/src/SymbolNep.gf
new file mode 100644
--- /dev/null
+++ b/lib/src/nepali/src/SymbolNep.gf
@@ -0,0 +1,54 @@
+--# -path=.:../abstract:../common
+
+concrete SymbolNep of Symbol = CatNep ** open Prelude, ResNep in {
+
+  flags coding = utf8;
+
+ lin
+  SymbPN i = {s = addGenitiveS i.s ; g = Masc ; t = NonLiving ; h = Pers3_L } ;
+  
+  IntPN i  = {s = addGenitiveS i.s ; g = Masc ; t = NonLiving ; h = Pers3_L } ;
+  
+  FloatPN i = {s = addGenitiveS i.s ; g = Masc ; t = NonLiving ; h = Pers3_L } ;
+  
+  NumPN i = {s = \\_ =>i.s ; g = Masc ; t = NonLiving ; h = Pers3_L } ;
+  
+  CNIntNP cn i = {
+    s = \\c => cn.s ! Sg ! Nom ++ i.s ;
+    a = agrP3 cn.g Sg ;
+    t = NonLiving
+    } ;
+  
+  CNSymbNP det cn xs = {
+    s = \\c => det.s!Sg!Masc ++ cn.s ! det.n ! Nom ++  xs.s ; 
+    a = agrP3 cn.g det.n ;
+    t = NonLiving
+    } ;
+  
+  CNNumNP cn i = {
+    s = \\c => cn.s ! Sg ! Nom ++ i.s ;
+    a = agrP3 cn.g Sg ;
+    t = NonLiving
+    } ;
+
+  SymbS sy = sy ; 
+  SymbNum sy = { s = sy.s ; n = Pl } ;
+  SymbOrd sy = { s = sy.s ++ "wV" ; n = Pl} ;
+
+lincat 
+
+  Symb, [Symb] = SS ;
+
+lin
+  MkSymb s = s ;
+
+  BaseSymb = infixSS "r" ;
+  ConsSymb = infixSS "," ;
+
+oper
+    -- Note: this results in a space before 's, but there's
+    -- not mauch we can do about that.
+    addGenitiveS : Str -> Case => Str = \s -> 
+      table {_ => Prelude.glue s "da" } ;
+      
+}
diff --git a/lib/src/nepali/src/VerbNep.gf b/lib/src/nepali/src/VerbNep.gf
new file mode 100644
--- /dev/null
+++ b/lib/src/nepali/src/VerbNep.gf
@@ -0,0 +1,77 @@
+concrete VerbNep of Verb = CatNep ** open ResNep in {
+
+  flags coding = utf8;
+  flags optimize=all_subs ;
+
+  lin
+    UseV  v = predV v ;
+    
+    ComplVV v vp = insertTrans (insertVV (infVV vp) (predV v) vp.embComp vp) vp.subj ;       
+    
+    ComplVS v s  = insertTrans (insertObj2 (conjThat ++ s.s) (predV v)) VTransPost ;   
+    
+    ComplVQ v q  = insertObj2 (conjThat ++ q.s ! QIndir) (predV v) ;
+    
+    ComplVA v ap = insertObj (\\a => ap.s ! giveNumber a ! giveGender a) (predV v) ;
+    
+    
+    
+    SlashV2a v = predV v ** {c2 = {s = v.c2.s ; c = VTrans}} ;    
+    -- use of these two functions
+    Slash2V3 v np = 
+      insertObjc (\\_ => np.s ! NPC Acc ++ v.c3 ) (predV v ** {c2 = {s = v.c2 ; c = VTrans}}) ; -- NEEDS CHECKING
+
+    Slash3V3 v np = 
+      insertObjc (\\_ => np.s ! NPC Acc ++ v.c3) (predV v ** {c2 = {s = v.c2 ; c = VTrans}}) ; 
+
+                                
+    -- Check for the use of 'Acc' case of noun instead of adding 'lai' and 'sanga' later
+    SlashV2V v vp = insertVV (infV2V vp) (predV v) vp.embComp vp ** {c2 = {s = v.c1 ; c = VTrans}} ; 
+    
+    SlashV2S v s  = insertObjc2 (conjThat ++ s.s) (predV v ** {c2 = {s = "laI:" ; c = VTransPost}}) ;
+    
+    SlashV2Q v q  = insertObjc2 (conjThat ++ q.s ! QIndir) (predV v ** {c2 = {s = "sVg" ; c = VTransPost}}) ; 
+      
+    SlashV2A v ap = insertObjc (\\a => ap.s ! giveNumber a ! giveGender a  ) (predV v ** {c2 = {s = v.c2.s ; c = VTrans}}) ; 
+    
+    
+    
+    ComplSlash vp np = insertObject np vp ;
+    
+    
+    SlashVV vv vp = 
+      insertEmbCompl (insertObj (infVP vv.isAux vp).s (predV vv)) vp.embComp **
+        {c2 = vp.c2} ;
+    
+    SlashV2VNP vv np vp = 
+      insertObjPre (\\_ => np.s ! NPObj  )
+        (insertObjc (infVP vv.isAux vp).s (predVc vv)) **
+          {c2 = vp.c2} ;
+    
+    
+    
+    ReflVP v = insertObjPre (\\_ => reflPron) v ;
+    UseComp comp = insertObj comp.s (predAux comp.t) ;
+    
+    
+    PassV2 v = predV v ; -- need to be fixed
+    
+    
+    AdvVP vp adv = insertObj (\\_ => adv.s ) vp ;
+
+    AdVVP adv vp = insertAdV adv.s vp ;
+    
+    
+    AdvVPSlash vp ad = insertObj (\\_ => ad.s ) vp ** {c2 = vp.c2} ; 
+    AdVVPSlash ad vp = insertObj (\\_ => ad.s ) vp ** {c2 = vp.c2} ;    
+
+    
+    CompAP ap = {s = \\a => ap.s ! giveNumber a ! giveGender a ; t = NonLiving} ;
+    
+    CompNP np = {s = \\_ => np.s ! NPObj; t = np.t} ;
+    
+    CompAdv adv = {s = \\a => adv.s ; t = NonLiving} ;
+    
+    CompCN cn = {s = \\a => cn.s ! giveNumber a ! Nom ; t = cn.t} ;    
+    
+}
diff --git a/lib/src/nepali/translit.gfs b/lib/src/nepali/translit.gfs
new file mode 100644
--- /dev/null
+++ b/lib/src/nepali/translit.gfs
@@ -0,0 +1,15 @@
+rf -file=src/AdjectiveNep.gf  | ps -env=quotes -to_nepali | wf -file=AdjectiveNep.gf
+rf -file=src/LexiconNep.gf    | ps -env=quotes -to_nepali | wf -file=LexiconNep.gf
+rf -file=src/MorphoNep.gf     | ps -env=quotes -to_nepali | wf -file=MorphoNep.gf
+rf -file=src/ResNep.gf        | ps -env=quotes -to_nepali | wf -file=ResNep.gf
+rf -file=src/StructuralNep.gf | ps -env=quotes -to_nepali | wf -file=StructuralNep.gf
+rf -file=src/AdverbNep.gf     | ps -env=quotes -to_nepali | wf -file=AdverbNep.gf
+rf -file=src/QuestionNep.gf   | ps -env=quotes -to_nepali | wf -file=QuestionNep.gf
+rf -file=src/NumeralNep.gf    | ps -env=quotes -to_nepali | wf -file=NumeralNep.gf
+rf -file=src/RelativeNep.gf   | ps -env=quotes -to_nepali | wf -file=RelativeNep.gf
+rf -file=src/IdiomNep.gf      | ps -env=quotes -to_nepali | wf -file=IdiomNep.gf
+rf -file=src/SymbolNep.gf     | ps -env=quotes -to_nepali | wf -file=SymbolNep.gf
+rf -file=src/VerbNep.gf       | ps -env=quotes -to_nepali | wf -file=VerbNep.gf
+rf -file=src/SentenceNep.gf   | ps -env=quotes -to_nepali | wf -file=SentenceNep.gf
+rf -file=src/PhraseNep.gf     | ps -env=quotes -to_nepali | wf -file=PhraseNep.gf
+rf -file=src/NounNep.gf       | ps -env=quotes -to_nepali | wf -file=NounNep.gf
diff --git a/lib/src/parse/English.gf b/lib/src/parse/English.gf
--- a/lib/src/parse/English.gf
+++ b/lib/src/parse/English.gf
@@ -1,6 +1,6 @@
 --# -path=.:oald:alltenses
 
 concrete English of EnglishAbs = 
-  ParseEng, 
+  ParseEng,
   OaldStructuralEng - [above_Prep, after_Prep,and_Conj,before_Prep,behind_Prep,between_Prep,during_Prep,except_Prep,for_Prep,from_Prep,in_Prep,on_Prep,or_Conj,through_Prep,to_Prep,under_Prep, with_Prep,without_Prep] ;
 --  OaldEng - [everywhere_Adv,have_V2,here_Adv,quite_Adv,somewhere_Adv,there_Adv] ;
diff --git a/lib/src/parse/EnglishAbs.gf b/lib/src/parse/EnglishAbs.gf
--- a/lib/src/parse/EnglishAbs.gf
+++ b/lib/src/parse/EnglishAbs.gf
@@ -1,5 +1,5 @@
 abstract EnglishAbs = 
-  Parse, 
-  OaldStructural - [above_Prep, after_Prep,and_Conj,before_Prep,behind_Prep,between_Prep,during_Prep,except_Prep,for_Prep,from_Prep,in_Prep,on_Prep,or_Conj,through_Prep,to_Prep,under_Prep, with_Prep,without_Prep], 
-  Oald - [everywhere_Adv,have_V2,here_Adv,quite_Adv,somewhere_Adv,there_Adv] ;
+  ParseEngAbs,
+  OaldStructural - [above_Prep, after_Prep,and_Conj,before_Prep,behind_Prep,between_Prep,during_Prep,except_Prep,for_Prep,from_Prep,in_Prep,on_Prep,or_Conj,through_Prep,to_Prep,under_Prep, with_Prep,without_Prep] ;
+--  Oald - [everywhere_Adv,have_V2,here_Adv,quite_Adv,somewhere_Adv,there_Adv] ;
 
diff --git a/lib/src/parse/ParseEng.gf b/lib/src/parse/ParseEng.gf
--- a/lib/src/parse/ParseEng.gf
+++ b/lib/src/parse/ParseEng.gf
@@ -6,13 +6,14 @@
   AdjectiveEng,
   AdverbEng,
   NumeralEng,
-  SentenceEng - [UseCl, UseQCl, UseRCl],
+  SentenceEng, --- - [UseCl, UseQCl, UseRCl],
   QuestionEng,
   RelativeEng - [IdRP, RelSlash],
   ConjunctionEng,
-  PhraseEng - [UttImpSg, UttImpPl],
-  TextX,
-  TenseX,
+  PhraseEng, --- - [UttImpSg, UttImpPl],
+  TextX - [Pol,PNeg,PPos],
+  TenseX - [Pol,PNeg,PPos],
+  GrammarEng [Pol,PNeg,PPos],
   StructuralEng - [above_Prep, everywhere_Adv, everybody_NP, every_Det, only_Predet, somebody_NP],
   IdiomEng,
 
@@ -43,6 +44,9 @@
 -- Allow both "hope that he runs" and "hope he runs".
 lin ComplVS v s = variants { VerbEng.ComplVS v s; ComplBareVS v s } ;
 
+{-
+--- this can now be done by just using ExtraEng.UncNeg : Pol
+
 -- Allow both contracted and uncontracted negated clauses.
 lin UseCl t p cl = 
       case p.p of {
@@ -64,15 +68,16 @@
 
 lin UttImpSg p i = 
       case p.p of {
-	Pos => PhraseEng.UttImpSg p i;
-	Neg => variants { PhraseEng.UttImpSg p i ; UncNegImpSg p i }
+	CPos => PhraseEng.UttImpSg p i;
+	CNeg _ => variants { PhraseEng.UttImpSg p i ; UncNegImpSg p i }
       } ;
 
 lin UttImpPl p i = 
       case p.p of {
-	Pos => PhraseEng.UttImpPl p i;
-	Neg => variants { PhraseEng.UttImpPl p i ; UncNegImpPl p i }
+	CPos => PhraseEng.UttImpPl p i;
+	CNeg _ => variants { PhraseEng.UttImpPl p i ; UncNegImpPl p i }
       } ;
+-}
 
 -- Two different forms of relative clauses:
 -- Pied piping: "at which we are looking". 
@@ -86,10 +91,10 @@
 -- Allow both "who"/"which" and "that"
 lin IdRP = 
      { s = table {
-        RC _ Gen    => "whose" ; 
+        RC _ (NCase Gen)    => "whose" ; 
         RC Neutr _  => variants { "which"; "that"; {- for dictionary entries with the wrong gender -} "who" } ;
-        RC _ Acc    => variants { "whom"; "that"; {- incorrect but common -} "who" } ;
-        RC _ Nom    => variants { "who" ; "that" } ;
+        RC _ NPAcc    => variants { "whom"; "that"; {- incorrect but common -} "who" } ;
+        RC _ (NCase Nom)    => variants { "who" ; "that" } ;
         RPrep _     => variants { "which"; "whom"; {- incorrect but common -}  "who" }
         } ;
       a = RNoAg
@@ -118,17 +123,17 @@
       } ;
 
     CAdvNP ad cn np = {
-      s = \\c => ad.s ++ cn.s ! Sg ! c ++ ad.p ++ np.s ! Nom ; 
+      s = \\c => ad.s ++ cn.s ! Sg ! npcase2case c ++ ad.p ++ np.s ! npNom ; 
       a = agrP3 Sg
       } ;
 
     CAdvSSlash ad cn slash = {
-      s = \\c => ad.s ++ cn.s ! Sg ! c ++ ad.p ++ slash.s ++ slash.c2;
+      s = \\c => ad.s ++ cn.s ! Sg ! npcase2case c ++ ad.p ++ slash.s ++ slash.c2;
       a = agrP3 Sg
       } ;
 
-    CompCN cn = { s = \\a => let n = (fromAgr a).n
-		              in IndefArt.s ! False ! n ++ cn.s ! n ! Acc} ;
+--    CompCN cn = { s = \\a => let n = (fromAgr a).n
+--		              in IndefArt.s ! False ! n ++ cn.s ! n ! Acc} ;
 
 -- Lexical additions
 
@@ -154,7 +159,7 @@
 	VVPastNeg => ["shouldn't have"] ;
 	VVPresNeg => "shouldn't"
 	} ;
-      isAux = True
+      typ = VVAux
     } ;
     several_Det = mkDeterminer plural "several" ;
 
diff --git a/lib/src/parse/ParseEngAbs.gf b/lib/src/parse/ParseEngAbs.gf
--- a/lib/src/parse/ParseEngAbs.gf
+++ b/lib/src/parse/ParseEngAbs.gf
@@ -27,7 +27,7 @@
 fun CAdvNP  : CAdv -> CN -> NP -> NP ; -- more wine than the professor
 fun CAdvSSlash  : CAdv -> CN -> SSlash -> NP ; -- more wine than the professor drank
 
-fun CompCN : CN -> Comp ; -- "(every man is) a dog", "(all men are) dogs"
+--fun CompCN : CN -> Comp ; -- "(every man is) a dog", "(all men are) dogs"
 
 -- Lexical additions
 
diff --git a/lib/src/persian/AdjectivePes.gf b/lib/src/persian/AdjectivePes.gf
new file mode 100644
--- /dev/null
+++ b/lib/src/persian/AdjectivePes.gf
@@ -0,0 +1,48 @@
+concrete AdjectivePes of Adjective = CatPes ** open ResPes, Prelude in {
+
+  flags coding = utf8;
+  lin
+
+    PositA a = a ;
+ 	UseComparA a = a;
+
+    ComparA a np = {
+        s =\\ez => a.s ! ez ++ "تر" ++ "از" ++ np.s ! NPC bEzafa  ;
+	adv = a.adv
+       } ;
+
+---- $SuperlA$ belongs to determiner syntax in $Noun$.
+
+    ComplA2 a np = {
+      s =\\ez => np.s ! NPC bEzafa ++ a.c2 ++ a.s  ! ez ;
+      adv = a.adv
+     } ;
+
+    ReflA2 a = {
+      s =\\ez =>  a.s ! ez ++ "" ; -- need to be fixed
+      adv = a.adv
+      } ;
+
+    SentAP ap sc = {
+      s =\\ez =>  ap.s! ez ++ sc.s ;
+      adv = ap.adv
+      } ;
+
+    AdAP ada ap = {
+      s =\\ez => ada.s ++ ap.s ! ez ;
+      adv = ap.adv
+      } ;
+
+    UseA2 a = a ;
+	
+	CAdvAP  cadv ap np = {
+	 s =\\ez =>  cadv.s ++  np.s ! NPC bEzafa ++ ap.s ! ez ;
+	 adv = ap.adv
+	 };
+   
+    AdjOrd ord =  { s =\\_ => ord.s ; adv = ""};
+    
+    
+
+     AdvAP ap adv = {s =\\ez => ap.s ! ez ++ adv.s ; adv = ap.adv};
+}
diff --git a/lib/src/persian/AdverbPes.gf b/lib/src/persian/AdverbPes.gf
new file mode 100644
--- /dev/null
+++ b/lib/src/persian/AdverbPes.gf
@@ -0,0 +1,22 @@
+concrete AdverbPes of Adverb = CatPes ** open ResPes, Prelude in {
+
+  flags coding = utf8;
+  lin
+ --   PositAdvAdj a = {s = a.s ! bEzafa  } ;
+     PositAdvAdj a = {s = a.adv  } ;
+    ComparAdvAdj cadv a np = {
+      s = a.adv ++ cadv.p ++ cadv.s ++ np.s ! NPC bEzafa  ;  
+      } ;
+    ComparAdvAdjS cadv a s = {
+      s =  a.adv  ++ cadv.p ++ cadv.s  ++  s.s;
+      } ;
+
+    PrepNP prep np = {s =  prep.s ++ np.s ! NPC aEzafa } ;
+
+    AdAdv ada adv = { s =  ada.s ++ adv.s} ;
+
+--    SubjS = cc2 ;
+    SubjS sub snt = {s = sub.s  ++ "که" ++ snt.s } ;
+    AdnCAdv cadv = {s =  cadv.s ++ "از"} ;
+
+}
diff --git a/lib/src/persian/AllPes.gf b/lib/src/persian/AllPes.gf
new file mode 100644
--- /dev/null
+++ b/lib/src/persian/AllPes.gf
@@ -0,0 +1,6 @@
+--# -path=.:../abstract:../common:../prelude
+
+concrete AllPes of AllPesAbs =
+  LangPes
+--  ExtraPes
+  ** {} ;
diff --git a/lib/src/persian/AllPesAbs.gf b/lib/src/persian/AllPesAbs.gf
new file mode 100644
--- /dev/null
+++ b/lib/src/persian/AllPesAbs.gf
@@ -0,0 +1,4 @@
+abstract AllPesAbs =
+  Lang
+--  ExtraPesAbs
+  ** {} ;
diff --git a/lib/src/persian/CatPes.gf b/lib/src/persian/CatPes.gf
new file mode 100644
--- /dev/null
+++ b/lib/src/persian/CatPes.gf
@@ -0,0 +1,95 @@
+concrete CatPes of Cat = CommonX - [Adv] ** open ResPes, Prelude in {
+
+  flags optimize=all_subs ;
+
+  lincat
+------ Tensed/Untensed
+
+    S  = {s : Str} ;
+    QS = {s : QForm => Str} ;
+    RS = {s : AgrPes => Str } ; -- c for it clefts
+    SSlash = {s : Str ; c2 : ResPes.Compl} ;
+
+---- Sentence
+
+    Cl = ResPes.Clause ;
+    ClSlash = {
+      s : ResPes.VPHTense => Polarity => Order => Str ;
+      c2 : ResPes.Compl
+      } ;
+    Imp = {s : CPolarity => ImpForm => Str} ;
+
+---- Question
+    QCl = {s : ResPes.VPHTense => Polarity => QForm => Str} ;
+    
+    IP = {s: Str ; n : Number};
+    
+--    IDet = {s :Number => Str } ;
+      IDet = {s : Str ; n : Number ; isNum : Bool} ;
+    IQuant = {s : Str ; n : Number } ;
+
+---- Relative
+
+    RCl = {
+      s : ResPes.VPHTense => Polarity => Order => AgrPes => Str ; 
+    --  c : Case
+      } ;
+    RP = {s: Str ; a:RAgr};
+
+---- Verb
+
+    VP = ResPes.VPH ;
+
+    VPSlash = ResPes.VPHSlash ;
+    Comp = {s : AgrPes => Str} ;
+  
+---- Adv    
+    Adv = {s : Str} ;
+
+---- Adjective
+
+    AP = ResPes.Adjective ;
+
+---- Noun
+
+    CN = ResPes.Noun ;
+
+    NP = ResPes.NP ;
+    Pron = {s : Str ; ps : Str ; a : AgrPes};
+    Det = ResPes.Determiner ;
+    Predet = {s : Str} ;
+    Num  = {s : Str ; n : Number} ;
+    Card = {s : Str; n : Number} ;
+    Ord = {s : Str; n : Number} ;
+    Quant = {s: Number => Str ; a:AgrPes ; fromPron : Bool};
+    Art = {s : Str} ;
+
+---- Numeral
+
+    Numeral = {s : CardOrd => Str ; n : Number} ;
+    Digits  = {s : CardOrd => Str ; n : Number } ;
+
+---- Structural
+
+    Conj = {s1,s2 : Str ; n : Number} ;
+-----b    Conj = {s : Str ; n : Number} ;
+-----b    DConj = {s1,s2 : Str ; n : Number} ;
+    Subj = {s : Str} ;
+    Prep = {s : Str };
+---- Open lexical classes, e.g. Lexicon
+    V, VS, VQ, VA = ResPes.Verb ; -- = {s : VForm => Str} ;
+
+    V2, V2A, V2Q, V2S = ResPes.Verb ** {c2 : Compl} ;
+    V3 = ResPes.Verb ** {c2, c3 : Str} ;
+    VV = ResPes.Verb ** { isAux : Bool} ;
+    V2V = ResPes.Verb ** {c1 : Str ; c2 : Str  ; isAux : Bool} ;
+    A = ResPes.Adjective ; --- {s : Gender => Number => Case => Str} ;
+    A2 = ResPes.Adjective ** { c2 : Str} ;
+    
+    N = {s : Ezafa => Number => Str ; animacy : Animacy ; definitness : Bool} ;
+
+    N2 = {s : Ezafa => Number  => Str ; animacy : Animacy ; definitness : Bool} ** {c : Str};
+    N3 = {s : Ezafa => Number  => Str ; animacy : Animacy ; definitness : Bool} ** {c2 : Str ; c3 : Str } ;
+    PN = {s : Str ; animacy : Animacy} ;
+
+}
diff --git a/lib/src/persian/ConjunctionPes.gf b/lib/src/persian/ConjunctionPes.gf
new file mode 100644
--- /dev/null
+++ b/lib/src/persian/ConjunctionPes.gf
@@ -0,0 +1,46 @@
+
+concrete ConjunctionPes of Conjunction = 
+  CatPes ** open ResPes, Coordination, Prelude in {
+
+
+  flags optimize=all_subs ;
+
+  lin
+
+    ConjS  = conjunctDistrSS  ;
+
+    ConjAdv = conjunctDistrSS ;
+--    ConjAdv conj advs = conjunctDistrTable Gender conj advs ;
+
+    ConjNP conj ss = conjunctDistrTable NPCase conj ss ** {
+      a = conjAgrPes (agrPesP3 conj.n) ss.a ;
+      animacy = ss.animacy ;
+      } ;
+
+    ConjAP conj ss = conjunctDistrTable Ezafa conj ss ** {adv = ss.adv}; 
+    ConjRS conj rs = conjunctDistrTable AgrPes conj rs ** { c = rs.c};
+
+---- These fun's are generated from the list cat's.
+
+    BaseS = twoSS ;
+    ConsS = consrSS comma ;
+    BaseAdv = twoSS ;
+--    BaseAdv x y = twoTable Gender x y  ;
+    ConsAdv = consrSS comma ;
+--    ConsAdv xs x = consrTable Gender comma xs x ;
+    BaseNP x y = twoTable NPCase x y ** {a = conjAgrPes x.a y.a ; animacy = y.animacy } ; -- check animacy 
+    BaseRS x y = twoTable AgrPes x y ** {c = x.c};
+    ConsNP xs x = consrTable NPCase comma xs x ** {a = conjAgrPes xs.a x.a ; animacy = xs.animacy } ; --  InaandB xs.animacy x.animacy} ;
+    ConsRS xs x = consrTable AgrPes comma xs x ** { c = xs.c};
+--    BaseAP x y = twoTable3 Number Gender Case x y ; -- ** {isPre = andB x.isPre y.isPre} ;
+    BaseAP x y = twoTable Ezafa x y ** {adv = x.adv};
+    ConsAP xs x = consrTable Ezafa comma xs x ** {adv = x.adv}; -- Table3 Number Gender Case comma xs x ;-- ** {isPre = andB xs.isPre x.isPre} ;
+
+  lincat
+    [S] = {s1,s2 : Str} ;
+    [Adv] = {s1,s2 : Str} ;
+    [NP] = {s1,s2 : NPCase => Str ; a : AgrPes ; animacy : Animacy } ;
+    [AP] = {s1,s2 :  Ezafa => Str ; adv : Str} ;
+    [RS] = {s1,s2 : AgrPes => Str };
+
+}
diff --git a/lib/src/persian/Coordination.gf b/lib/src/persian/Coordination.gf
new file mode 100644
--- /dev/null
+++ b/lib/src/persian/Coordination.gf
@@ -0,0 +1,170 @@
+resource Coordination = open Prelude in {
+
+param
+  ListSize = TwoElem | ManyElem ;
+
+oper 
+  ListX = {s1,s2 : Str} ;
+
+  twoStr : (x,y : Str) -> ListX = \x,y -> 
+    {s1 = x ; s2 = y} ; 
+  consStr : Str -> ListX -> Str -> ListX = \comma,xs,x -> 
+    {s1 = xs.s1 ++ comma ++ xs.s2 ; s2 = x } ; 
+
+  twoSS : (_,_ : SS) -> ListX = \x,y -> 
+    twoStr x.s y.s ;
+  consSS : Str -> ListX -> SS -> ListX = \comma,xs,x -> 
+    consStr comma xs x.s ;
+
+  Conjunction : Type = SS ;
+  ConjunctionDistr : Type = {s1 : Str ; s2 : Str} ;
+
+  conjunctX : Conjunction -> ListX -> Str = \or,xs ->
+    xs.s1 ++ or.s ++ xs.s2 ;
+
+  conjunctDistrX : ConjunctionDistr -> ListX -> Str = \or,xs ->
+    or.s1 ++ xs.s1 ++ or.s2 ++ xs.s2 ;
+
+  conjunctSS : Conjunction -> ListX -> SS = \or,xs ->
+    ss (xs.s1 ++ or.s ++ xs.s2) ;
+
+  conjunctDistrSS : ConjunctionDistr -> ListX -> SS = \or,xs ->
+    ss (or.s1 ++ xs.s1 ++ or.s2 ++ xs.s2) ;
+
+  -- all this lifted to tables
+
+  ListTable : Type -> Type = \P -> {s1,s2 : P => Str} ; 
+
+  twoTable : (P : Type) -> (_,_ : {s : P => Str}) -> ListTable P = \_,x,y ->
+    {s1 = x.s ; s2 = y.s} ; 
+
+  consTable : (P : Type) -> Str -> ListTable P -> {s : P => Str} -> ListTable P = 
+    \P,c,xs,x ->
+    {s1 = table P {o => xs.s1 ! o ++ c ++ xs.s2 ! o} ; s2 = x.s} ; 
+
+  conjunctTable : (P : Type) -> Conjunction -> ListTable P -> {s : P => Str} = 
+    \P,or,xs ->
+    {s = table P {p => xs.s1 ! p ++ or.s ++ xs.s2 ! p}} ;
+
+  conjunctDistrTable : 
+    (P : Type) -> ConjunctionDistr -> ListTable P -> {s : P => Str} = \P,or,xs ->
+    {s = table P {p => or.s1++ xs.s1 ! p ++ or.s2 ++ xs.s2 ! p}} ;
+
+  -- ... and to two- and three-argument tables: how clumsy! ---
+
+  ListTable2 : Type -> Type -> Type = \P,Q -> 
+    {s1,s2 : P => Q => Str} ; 
+
+  twoTable2 : (P,Q : Type) -> (_,_ : {s : P => Q => Str}) -> ListTable2 P Q = 
+    \_,_,x,y ->
+    {s1 = x.s ; s2 = y.s} ; 
+
+  consTable2 : 
+    (P,Q : Type) -> Str -> ListTable2 P Q -> {s : P => Q => Str} -> ListTable2 P Q =
+     \P,Q,c,xs,x ->
+    {s1 = table P {p => table Q {q => xs.s1 ! p ! q ++ c ++ xs.s2 ! p! q}} ; 
+     s2 = x.s
+    } ; 
+
+  conjunctTable2 : 
+    (P,Q : Type) -> Conjunction -> ListTable2 P Q -> {s : P => Q => Str} = 
+    \P,Q,or,xs ->
+    {s = table P {p => table Q {q => xs.s1 ! p ! q ++ or.s ++ xs.s2 ! p ! q}}} ;
+
+  conjunctDistrTable2 : 
+    (P,Q : Type) -> ConjunctionDistr -> ListTable2 P Q -> {s : P => Q => Str} = 
+    \P,Q,or,xs ->
+    {s = 
+    table P {p => table Q {q => or.s1++ xs.s1 ! p ! q ++ or.s2 ++ xs.s2 ! p ! q}}} ;
+
+  ListTable3 : Type -> Type -> Type -> Type = \P,Q,R -> 
+    {s1,s2 : P => Q => R => Str} ; 
+
+  twoTable3 : (P,Q,R : Type) -> (_,_ : {s : P => Q => R => Str}) -> 
+              ListTable3 P Q R = 
+    \_,_,_,x,y ->
+    {s1 = x.s ; s2 = y.s} ; 
+
+  consTable3 : 
+    (P,Q,R : Type) -> Str -> ListTable3 P Q R -> {s : P => Q => R => Str} -> 
+         ListTable3 P Q R =
+     \P,Q,R,c,xs,x ->
+    {s1 = \\p,q,r => xs.s1 ! p ! q ! r ++ c ++ xs.s2 ! p ! q ! r ; 
+     s2 = x.s
+    } ; 
+
+  conjunctTable3 : 
+    (P,Q,R : Type) -> Conjunction -> ListTable3 P Q R -> {s : P => Q => R => Str} = 
+    \P,Q,R,or,xs ->
+    {s = \\p,q,r => xs.s1 ! p ! q ! r ++ or.s ++ xs.s2 ! p ! q ! r} ;
+
+  conjunctDistrTable3 : 
+    (P,Q,R : Type) -> ConjunctionDistr -> ListTable3 P Q R -> 
+       {s : P => Q => R => Str} = 
+    \P,Q,R,or,xs ->
+    {s = \\p,q,r => or.s1++ xs.s1 ! p ! q ! r ++ or.s2 ++ xs.s2 ! p ! q ! r} ;
+	
+	---------
+	ListTable4 : Type -> Type -> Type -> Type -> Type = \P,Q,R,T -> 
+    {s1,s2 : P => Q => R => T => Str} ; 
+
+  twoTable4 : (P,Q,R,T : Type) -> (_,_ : {s : P => Q => R => T => Str}) -> 
+              ListTable4 P Q R T = 
+    \_,_,_,_,x,y ->
+    {s1 = x.s ; s2 = y.s} ; 
+
+  consTable4 : 
+    (P,Q,R,T : Type) -> Str -> ListTable4 P Q R T -> {s : P => Q => R => T => Str} -> 
+         ListTable4 P Q R T =
+     \P,Q,R,T,c,xs,x ->
+    {s1 = \\p,q,r,t => xs.s1 ! p ! q ! r ! t ++ c ++ xs.s2 ! p ! q ! r ! t ; 
+     s2 = x.s
+    } ; 
+
+  conjunctTable4 : 
+    (P,Q,R,T : Type) -> Conjunction -> ListTable4 P Q R T -> {s : P => Q => R => T => Str} = 
+    \P,Q,R,T,or,xs ->
+    {s = \\p,q,r,t => xs.s1 ! p ! q ! r ! t ++ or.s ++ xs.s2 ! p ! q ! r ! t} ;
+
+  conjunctDistrTable4 : 
+    (P,Q,R,T : Type) -> ConjunctionDistr -> ListTable4 P Q R T -> 
+       {s : P => Q => R => T => Str} = 
+    \P,Q,R,T,or,xs ->
+    {s = \\p,q,r,t => or.s1++ xs.s1 ! p ! q ! r ! t ++ or.s2 ++ xs.s2 ! p ! q ! r ! t} ;
+	--------------
+
+  comma = "," ;
+
+-- you can also do this to right-associative lists:
+
+  consrStr : Str -> Str -> ListX -> ListX = \comma,x,xs -> 
+    {s1 = x ++ comma ++ xs.s1 ; s2 = xs.s2 } ; 
+
+  consrSS : Str -> SS -> ListX -> ListX = \comma,x,xs -> 
+    consrStr comma x.s xs ;
+
+  consrTable : (P : Type) -> Str -> {s : P => Str} -> ListTable P -> ListTable P = 
+    \P,c,x,xs ->
+    {s1 = table P {o => x.s ! o ++ c ++ xs.s1 ! o} ; s2 = xs.s2} ; 
+
+  consrTable2 : (P,Q : Type) -> Str -> {s : P => Q => Str} -> 
+    ListTable2 P Q -> ListTable2 P Q = 
+    \P,Q,c,x,xs ->
+    {s1 = table P {p => table Q {q => x.s ! p ! q ++ c ++ xs.s1 ! p ! q}} ; 
+     s2 = xs.s2
+    } ; 
+	consrTable4 : (P,Q,R,T : Type) -> Str -> {s : P => Q => R => T => Str} -> 
+    ListTable4 P Q R T -> ListTable4 P Q R T = 
+    \P,Q,R,T,c,x,xs ->
+    {s1 = table P {p => table Q {q => table R { r => table T {t => x.s ! p ! q ! r ! t ++ c ++ xs.s1 ! p ! q ! r ! t}}}} ; 
+     s2 = xs.s2
+    } ;
+    consrTable3 : (P,Q,R : Type) -> Str -> {s : P => Q => R => Str} -> 
+    ListTable3 P Q R -> ListTable3 P Q R = 
+    \P,Q,R,c,x,xs ->
+    {s1 = table P {p => table Q {q => table R  {t => x.s ! p ! q ! t  ++ c ++ xs.s1 ! p ! q ! t }}} ; 
+     s2 = xs.s2
+    } ; 
+
+
+} ;
diff --git a/lib/src/persian/ExtraPes.gf b/lib/src/persian/ExtraPes.gf
new file mode 100644
--- /dev/null
+++ b/lib/src/persian/ExtraPes.gf
@@ -0,0 +1,19 @@
+concrete ExtraPes of ExtraPesAbs = CatPes ** 
+  open ResPes, Coordination, Prelude, MorphoPes, ParadigmsPes in {
+
+  flags coding = utf8;
+
+  lin
+    GenNP np = {s = \\_,_,_ => np.s ! NPC Obl ++ "ka" ; a = np.a} ;
+
+    each_Det = mkDet  "hr kwy" "hr kwy" "hr kwy" "hr kwy" Sg ;
+    have_V = mkV "rakh-na";
+    IAdvAdv adv = {s = "ktny" ++ adv.s} ;
+    ICompAP ap = {s = "ktnE" ++ ap.s ! Sg ! Masc ! Dir ! Posit} ;
+    cost_V = mkV "qymt" ;
+    
+    -- added for causitives
+    make_CV = mkVerb "nothing"   ** {c2 = "" };
+
+-- for VP conjunction
+} 
diff --git a/lib/src/persian/ExtraPesAbs.gf b/lib/src/persian/ExtraPesAbs.gf
new file mode 100644
--- /dev/null
+++ b/lib/src/persian/ExtraPesAbs.gf
@@ -0,0 +1,9 @@
+abstract ExtraPesAbs = Extra ** {
+
+-- uncontracted negations; contracted are the default
+  fun
+
+  each_Det : Det ;
+  have_V : V;
+  cost_V : V;
+}
diff --git a/lib/src/persian/GrammarPes.gf b/lib/src/persian/GrammarPes.gf
new file mode 100644
--- /dev/null
+++ b/lib/src/persian/GrammarPes.gf
@@ -0,0 +1,25 @@
+--# -path=.:../abstract:../common:../prelude
+
+ concrete GrammarPes of Grammar = 
+  NounPes, 
+  VerbPes, 
+  AdjectivePes,
+  AdverbPes,
+  NumeralPes,
+  SentencePes,
+  QuestionPes,
+  RelativePes,
+  ConjunctionPes,
+  
+  PhrasePes,
+  TextPes - [Adv], 
+  StructuralPes,
+  TenseX - [Adv],
+  IdiomPes 
+  ** {
+
+flags startcat = Phr ; unlexer = text ; lexer = text ;
+
+}
+
+
diff --git a/lib/src/persian/IdiomPes.gf b/lib/src/persian/IdiomPes.gf
new file mode 100644
--- /dev/null
+++ b/lib/src/persian/IdiomPes.gf
@@ -0,0 +1,40 @@
+concrete IdiomPes of Idiom = CatPes ** open Prelude,Predef, ResPes in {
+
+  flags optimize=all_subs ;
+  flags coding = utf8;
+
+  lin
+ 
+    ImpersCl vp = mkSClause " " (agrPesP3 Sg) vp ;
+    GenericCl vp = mkSClause "آدم" (agrPesP3 Sg) vp ;
+
+    CleftNP np rs = 
+	 let cl = mkSClause (np.s ! NPC bEzafa) (np.a) (predAux auxBe);
+	  in 
+	   {s = \\t,p,o =>  cl.s ! t ! p ! o ++ rs.s ! np.a };
+	  
+    CleftAdv ad ss = { s = \\t,b,o => ad.s ++ ss.s};
+        
+    ExistNP np = 
+      mkSClause " " (agrPesP3 (fromAgr np.a).n) 
+        (insertObj (\\_ => np.s ! NPC bEzafa) (predAux auxBe)) ;
+
+    ExistIP ip = 
+     let cl = mkSClause ( ip.s ) (agrPesP3 ip.n) (predAux auxBe); 
+	   in {
+       s = \\t,p,qf => case qf of { 
+	      QDir =>   cl.s ! t ! p ! ODir;
+          QIndir => cl.s ! t! p ! ODir
+		  }
+		};
+
+--    ProgrVP vp = insertObj (\\a => vp.obj.s ++ vp.ad ++ vp.comp ! a ++ (vp.s ! VPStem).inf ++ raha (fromAgr a).g (fromAgr a).n ) (predAux auxBe) ;
+    ProgrVP vp =  (predProg vp) ;
+
+
+    ImpPl1 vp = {s = "بیایید" ++ (vp.s ! VVForm (agrPesP1 Pl)).inf} ;
+	ImpP3 np vp = {s = "بگذارید" ++ np.s!NPC bEzafa ++ (vp.s ! VVForm (AgPes (fromAgr np.a).n (fromAgr np.a).p)).inf};
+
+
+}
+
diff --git a/lib/src/persian/LangPes.gf b/lib/src/persian/LangPes.gf
new file mode 100644
--- /dev/null
+++ b/lib/src/persian/LangPes.gf
@@ -0,0 +1,10 @@
+--# -path=.:../abstract:../common:../hindustani
+
+concrete LangPes of Lang = 
+  GrammarPes,
+  LexiconPes
+  ** {
+
+flags startcat = Phr ; unlexer=unwords ; lexer=words ;
+
+}
diff --git a/lib/src/persian/LexiconPes.gf b/lib/src/persian/LexiconPes.gf
new file mode 100644
--- /dev/null
+++ b/lib/src/persian/LexiconPes.gf
@@ -0,0 +1,374 @@
+--# -path=.:prelude:alltenses
+
+concrete LexiconPes of Lexicon = CatPes ** 
+--open ResPnb, Prelude in {
+  open ParadigmsPes,MorphoPes, Prelude in {
+
+  flags 
+    optimize=values ;
+    coding = utf8;
+
+  lin
+
+  airplane_N = mkN01 "هواپیما" inanimate ;
+  answer_V2S = mkV2  (compoundV "جواب" (mkV "دادن" "ده")) "به" False; 
+  apartment_N = mkN01 "آپارتمان" inanimate;
+  apple_N = mkN01 "سیب" inanimate;
+  art_N = mkN01 "هنر" inanimate;
+  ask_V2Q = mkV2 (mkV_1 "پرسیدن") "از" False;
+  baby_N = mkN01 "بچه" animate; -- has variant "کودک"
+  bad_A = mkA "بد" ;
+  bank_N = mkN01 "بانک" inanimate;
+  beautiful_A = mkA "زیبا" ;
+  become_VA = mkV "شدن" "شو";
+  beer_N = mkN01 "آبجو" inanimate;
+  beg_V2V =  mkV2V (compoundV "خواهش" (mkV "کردن" "کن")) "از" "" False;
+  big_A = mkA "بزرگ" ;
+  bike_N = mkN01 "دوچرخه" inanimate;
+  bird_N = mkN02 "پرنده" animate;
+  black_A =  mkA "سیاه" ;
+  blue_A = mkA "آبی" ;
+  boat_N = mkN01 "قایق" inanimate;
+  book_N = mkN01 "کتاب" inanimate;
+  boot_N = mkN01 "چکمه" inanimate; -- has variant "پوتین"
+  boss_N = mkN02 "کارفرما" animate;
+  boy_N = mkN02 "پسر" animate;
+  bread_N = mkN01 "نان" inanimate;
+  break_V2 = mkV2 (mkV "شکستن" "شکن") "را";
+  broad_A = mkA "وسیع" ;
+  brother_N2 = (mkN01 "برادر" animate) ** {c=""}; 
+  brown_A = mkA ["قهوه ای"] ; 
+  butter_N = mkN01 "کره" inanimate;
+  buy_V2 = mkV2 (mkV_1 "خریدن") "را";
+  camera_N = mkN01 "دوربین" inanimate;
+  cap_N = mkCmpdNoun1 "کلاه" (mkN01 "کپ" animate); 
+  car_N = mkN01 "ماشین" inanimate; -- has variant "اتومبیل"
+  carpet_N = mkN01 "فرش" inanimate;
+  cat_N = mkN01 "گربه" animate;
+  ceiling_N = mkN01 "سقف" inanimate;
+  chair_N = mkN01 "صندلی" inanimate;
+  cheese_N = mkN01 "پنیر" inanimate;
+  child_N = mkN02 "فرزند"  animate; -- has variant "بچه"
+  church_N = mkN01 "کلیسا"  inanimate;
+  city_N = mkN01 "شهر" inanimate;
+  clean_A = mkA "تمیز" ;
+  clever_A = mkA "باهوش" ["با هوشمندی"];  
+  close_V2 =  mkV2 (mkV "بستن" "بند") "را"; 
+  coat_N = mkN01 "کت" inanimate;
+  cold_A = mkA "سرد" ;
+  come_V = mkV "آمدن" "آی" ;
+  computer_N = mkN01 "کامپیوتر" inanimate; -- also vaiant "رایانه"
+  country_N = mkN01 "کشور" inanimate;
+  
+-- Note: cousin inflects for gender and for being a mother's or a father's relatives in persian
+-- The following is an example which is the daughter of your mom's brother
+  cousin_N = mkCmpdNoun1 "دختر" (mkN01 "دایی" animate);  
+  cow_N = mkN01 "گاو" animate;
+  die_V = mkV "مردن" "میر" ;
+  dirty_A = mkA "کثیف" ;
+  distance_N3 = (mkN "فاصله" "فواصل" inanimate ) ** {c2="از" ; c3 = "تا"};
+  doctor_N = mkN01 "دکتر" animate; -- has variant "پزشک", but only a doctor in medicine 
+  dog_N = mkN01 "سگ" animate;
+  door_N = mkN01 "در" inanimate;
+  drink_V2 = mkV2 (mkV_1 "نوشیدن") "را";
+--  easy_A2V = mkA "آسان" "" ;
+  eat_V2 = mkV2 (mkV_2 "خوردن") "را" ;
+  empty_A = mkA "خالی" ;
+  enemy_N = mkN02 "دشمن" animate;
+  factory_N = mkN01 "کارخانه" inanimate;
+  father_N2 = (mkN02 "پدر" animate) ** {c=""};
+  fear_VS = mkV_1 "ترسیدن"; 
+  find_V2 = mkV2 (compoundV "پیدا" (mkV "کردن" "کن") ) "را";  
+  fish_N = mkN01 "ماهی" animate;
+  floor_N = mkN01 "زمین" inanimate; -- Note: floor in persian can have 3 different translations
+  forget_V2 = mkV2 (compoundV "فراموش" (mkV "کردن" "کن")) "را" ; 
+  fridge_N = mkN01 "یخچال" inanimate;
+  friend_N = mkN02 "دوست" animate;
+  fruit_N = mkN01 "میوه" inanimate;
+--  fun_AV = mkAV  "جالب" ;
+  garden_N = mkN01 "باغ" inanimate;
+  girl_N = mkN02 "دختر" animate;
+  glove_N = mkN01 "دستکش" inanimate;
+  gold_N = mkN01 "طلا" inanimate;
+  good_A = mkA "خوب" ;
+  go_V = mkV "رفتن" "رو";
+  green_A = mkA "سبز" ;
+  harbour_N = mkN "بندر" "بنادر" inanimate;
+--  hate_V2 = mkV2 (compoundV "متنفر" (mkToBe "بودن" "باش" "هست")) "از" False; -- needs from/ verb to be
+  hat_N = mkN01 "کلاه" inanimate;
+  have_V2 = mkV2 haveVerb "را" ; 
+  hear_V2 = mkV2 (mkV "شنیدن" "شنو") "را" ;
+  hill_N = mkN01 "تپه" inanimate;
+--  hope_VS = compoundV "امیدوار" (mkToBe "بودن" "باش" "هست");
+  horse_N = mkN01 "اسب" animate;
+  hot_A = mkA "داغ" ["داغ داغ"] ;
+  house_N = mkN01 "خانه" inanimate;
+  important_A = mkA "مهم" ["با اهمیت"];
+  industry_N = mkN "صنعت" "صنایع" inanimate;
+  iron_N = mkN01 "آهن" inanimate;
+  king_N = mkN "پادشاه" "پادشاهان" animate;
+  know_V2 = mkV2 (mkV "شناختن" "شناس") "را";
+  know_VS = (mkV_1 "دانستن");
+  know_VQ = (mkV_1 "دانستن") ;
+  lake_N = mkN01 "دریاچه" inanimate;
+  lamp_N = mkN01 "چراغ" inanimate; -- also "لامپ", but they have different usage
+  learn_V2 = mkV2 (compoundV "یاد"(mkV "گرفتن" "گیر")) "را";
+  leather_N = mkN01 "چرم" inanimate; -- is uncountable 
+  leave_V2 = mkV2 (compoundV "ترک"(mkV "کردن" "کن")) "را";
+  like_V2 = mkV2 (compoundV "دوست" haveVerb) "را"; 
+  listen_V2 = mkV2 (compoundV "گوش" (mkV "دادن" "ده")) "به" False; -- has a diferent preposition :"به"
+  live_V = compoundV "زندگی" (mkV "کردن" "کن");
+  long_A = mkA "بلند" ;
+  lose_V2 = mkV2 (compoundV "گم" (mkV "کردن" "کن")) "را" ; 
+  love_N = mkN01 "عشق" inanimate; 
+  love_V2 = mkV2 (compoundV "دوست" haveVerb) "را"; -- also possible: love_V2 = mkV2 (compoundV "عاشق" (mkToBe "بودن" "باش" "هست"));
+  man_N = mkN02 "مرد" animate; 
+  married_A2 = mkA "متأهل" "";
+  meat_N = mkN01 "گوشت" inanimate;
+  milk_N = mkN01 "شیر" inanimate;
+  moon_N = mkN01 "ماه" inanimate; -- is this not a proper noun?
+  mother_N2 = (mkN02 "مادر" animate) ** {c=""};   
+  mountain_N = mkN01 "کوه" inanimate;
+  music_N = mkN "موسیقی" "موسیقی" animate; 
+  narrow_A = mkA "باریک" ;
+  new_A = mkA "نو" "تازه";
+  newspaper_N = mkN01 "روزنامه" inanimate;
+  oil_N = mkN "نفت" "نفت" inanimate; -- also "روغن"
+  old_A = mkA "پیر" "پیرانه";
+  open_V2 = mkV2 (compoundV "باز" (mkV "کردن" "کن")) "را";
+  paint_V2A = mkV2 (compoundV "رنگ" (mkV "کردن" "کن")) "را" ;
+  paper_N = mkN01 "کاغذ" inanimate;
+  paris_PN = mkPN "پاریس" inanimate;  
+  peace_N = mkN01 "صلح" inanimate; -- also "آرامش"  
+  pen_N = mkN01 "قلم" inanimate; -- has  variant "خودکار"
+  planet_N = mkN01 "سیّاره" inanimate;
+  plastic_N = mkN01 "پلاستیک" inanimate; -- is uncountable 
+  play_V2 = mkV2 (mkV "نواختن" "نواز") "را" ; 
+  policeman_N = mkCmpdNoun2 (mkN02 "مأمور" animate) "پلیس"; 
+  priest_N = mkN01 "کشیش" animate;
+--  probable_AS = mkAS (regA "محتمل") ;
+  queen_N = mkN01 "ملکه" animate;
+  radio_N = mkN01 "رادیو" inanimate;
+  rain_V0 = compoundV "باران" (mkV "آمدن" "آی" ) ;
+  read_V2 = mkV2 (mkV_2 "خواندن") "را";
+  red_A = mkA "قرمز" ;
+  religion_N = mkN "مذهب" "مذاهب" inanimate;
+  restaurant_N = mkN01 "رستوران" inanimate;
+  river_N = mkN01 "رودخانه" inanimate;
+  rock_N = mkN01 "صخره" inanimate;
+  roof_N = mkN01 "بام" inanimate; -- has  variant "سقف"
+  rubber_N = mkN01 "پاککن" inanimate; -- also "لاستیک" 
+  run_V = mkV_1 "دویدن" ;
+  say_VS = mkV "گفتن" "گوی" ;
+  school_N = mkN "مدرسه" "مدارس" inanimate;
+  science_N = mkN "علم" "علوم" inanimate; -- also "دانش"
+  sea_N = mkN01 "دریا" inanimate;
+  seek_V2 = mkV2 (compoundV "جستجو" (mkV "کردن" "کن")) "را";
+  see_V2 = mkV2 (mkV "دیدن" "بین") "را" ;
+  sell_V3 = mkV3 (mkV "فروختن" "فروش") "را" "به"; 
+  send_V3 = mkV3 (mkV_1 "فرستادن") "را" "برای"; 
+  sheep_N = mkN01 "گوسفند" animate;
+  ship_N = mkN01 "کشتی" inanimate;
+  shirt_N = mkN01 "پیراهن" inanimate;
+  shoe_N = mkN01 "کفش" inanimate;
+  shop_N = mkN01 "فروشگاه" inanimate; -- has variant "مغازه"
+  short_A = mkA "کوتاه" ;
+  silver_N = mkN "نقره" ["نقره جات"] inanimate; -- add new function which applies + "جات"
+  sister_N = mkN02 "خواهر" animate;
+  sleep_V = mkV_1 "خوابیدن" ;
+  small_A = mkA "کوچک" ;
+  snake_N = mkN01 "مار" animate;
+  sock_N = mkN01 "جوراب" inanimate;
+  speak_V2 = mkV2 (compoundV "صحبت" (mkV "کردن" "کن")) "با" False; 
+  star_N = mkN01 "ستاره" animate;
+  steel_N = mkN01 "فولاد" inanimate; -- also "استیل"
+  stone_N = mkN01 "سنگ" inanimate;
+  stove_N = mkN01 "اجاق" inanimate;
+  student_N = mkCmpdNoun1 "دانش" (mkN02 "آموز" animate); -- also "دانشجو"
+  stupid_A = mkA "ابله" "ابلهانه" ;
+  sun_N = mkN01 "خورشید" inanimate; -- is this not a proper noun?!!!
+  switch8off_V2 = mkV2 (compoundV "خاموش" (mkV "کردن" "کن")) "را";
+  switch8on_V2 = mkV2 (compoundV "روشن" (mkV "کردن" "کن")) "را";
+  table_N = mkN01 "میز" inanimate;
+  talk_V3 = mkV3 (compoundV "حرف" (mkV "زدن" "زن")) "با" [" درباره ی"];
+  teacher_N = mkN02 "معلم" animate;
+  teach_V2 = mkV2 (compoundV "آموزش" (mkV "دادن" "ده")) "را";
+  television_N = mkN01 "تلوزیون" inanimate;
+  thick_A = mkA "کلفت" ;
+  thin_A = mkA "نازک" ;
+  train_N = mkN01 "قطار" inanimate;
+  travel_V = compoundV "سفر" (mkV "کردن" "کن");
+  tree_N = mkN02 "درخت" animate;
+  trousers_N = mkN01 "شلوار" inanimate;
+  ugly_A = mkA "زشت" ;
+  understand_V2 = mkV2 (mkV_1 "فهمیدن") "را";
+  university_N = mkN01 "دانشگاه" inanimate;
+  village_N = mkN01 "روستا" inanimate;
+--  wait_V2 = mkV2 (compoundV "منتظر" (mkVToBe "بودن" "باش")); 
+  walk_V = compoundV  "راه"  (mkV "رفتن" "رو");
+  warm_A = mkA "گرم" ;
+  war_N = mkN01 "جنگ" inanimate;
+--  watch_V2 = mkV2 (compoundV "مراقب" (mkVToBe "بودن" "باش")); -- check harfe rabt!!!
+  water_N = mkN01 "آب" inanimate;
+  white_A = mkA "سفید" ;
+  window_N = mkN01 "پنجره" inanimate;
+  wine_N = mkN01 "شراب" inanimate;
+  win_V2 = mkV2 (compoundV "برنده" (mkV "شدن" "شو")) "را"; -- also possible with simple verb: mkV_2 "بردن"  
+  woman_N = mkN02 "زن" animate;
+--  wonder_VQ = compoundV "متعجب" (mkVToBe "بودن" "باش") ;  
+  wood_N = mkN01 "چوب" inanimate;
+  write_V2 = mkV2 (mkV "نوشتن" "نویس") "را" ;
+  yellow_A = mkA "زرد" ;
+  young_A = mkA "جوان""جوانانه" ;
+  do_V2 = mkV2 (compoundV "انجام" (mkV "دادن" "ده")) "را";
+  now_Adv = ss "حالا" ;
+  already_Adv = ss "قبلاً" ;
+  song_N = mkN01 "آواز" inanimate;
+  add_V3 = mkV3 (compoundV "اضافه" (mkV "کردن" "کن")) "را" "به" ;
+  number_N = mkN01 "عدد" inanimate; -- also "تعداد"
+  put_V2 = mkV2 (mkV "گذاشتن" "گذار") "را";
+  stop_V = compoundV "توقف" (mkV "کردن" "کن");
+  jump_V = mkV_1 "پریدن";
+{-
+  left_Ord = {s = "چپ" ; n = singular};
+  right_Ord = {s= "راست" ; n = singular};
+-}  
+  far_Adv = ss "دور" ;
+  correct_A = mkA "درست" ;
+  dry_A = mkA "خشک" ["به خشکی"] ;
+  dull_A = mkA ["ملال آور"] ["به طرزی ملال آور"] ; 
+  full_A = mkA "پر" ;
+  heavy_A = mkA "سنگین" ;
+  near_A = mkA "نزدیک" ;
+  rotten_A = mkA "خراب" ;
+  round_A = mkA "گرد" ;
+  sharp_A = mkA "تیز" ;
+  smooth_A = mkA "نرم" ;
+  straight_A = mkA "مستقیم" "مستقیماً";
+  wet_A = mkA "خیس" ; 
+  wide_A = mkA "پهن" ;
+  animal_N = mkN "حیوان" "حیوانات" animate;
+  ashes_N = mkN01 "خاکستر" inanimate; 
+  back_N = mkN01 "کمر" inanimate; 
+  bark_N = mkN01 "عوعو" inanimate;
+  belly_N = mkN01 "شکم" inanimate;
+  blood_N = mkN01 "خون" inanimate;
+  bone_N = mkN01 "استخوان" inanimate;
+  breast_N = mkN01 "سینه" inanimate;
+  cloud_N = mkN01 "ابر" inanimate;
+  day_N = mkN01 "روز" inanimate;
+  dust_N = mkN01 "غبار" inanimate;
+  ear_N = mkN01 "گوش" inanimate;
+  earth_N = mkN01 "زمین" inanimate; -- also "خاک" 
+  egg_N = mkCmpdNoun1 "تخم" (mkN01 "مرغ" inanimate);  
+  eye_N = mkN01 "چشم" inanimate ;
+  fat_N = mkN01 "چربی" inanimate;
+  feather_N = mkN01 "پر" inanimate;
+  fingernail_N = mkN01 "ناخن" inanimate;
+  fire_N = mkN01 "آتش" inanimate;
+  flower_N = mkN01 "گل" inanimate;
+  fog_N = mkN01 "مه" inanimate;
+  foot_N = mkN01 "پا" inanimate;
+  forest_N = mkN01 "جنگل" inanimate;
+  grass_N = mkN01 "چمن" inanimate;
+  guts_N = mkN01 "شهامت" inanimate;
+  hair_N = mkN01 "مو" inanimate;
+  hand_N = mkN01 "دست" inanimate;
+  head_N = mkN01 "سر" inanimate;
+  heart_N = mkN01 "قلب" inanimate;
+  horn_N = mkN01 "بوق" inanimate; -- also "شاخ"
+  husband_N = mkN02 "شوهر" animate;
+  ice_N = mkN01 "یخ" inanimate;
+  knee_N = mkN01 "زانو" inanimate;
+  leaf_N = mkN01 "برگ" inanimate;
+  leg_N = mkN01 "پا" inanimate;
+  liver_N = mkN01 "رودخانه" inanimate;
+  louse_N = mkN01 "شپش" inanimate;
+  mouth_N = mkN01 "دهان" inanimate;
+  name_N = mkN01 "نام" inanimate; -- has variant "اسم"
+  neck_N = mkN01 "گردن" inanimate;
+  night_N = mkN01 "شب" inanimate;
+  nose_N = mkN01 "بینی" inanimate;
+  person_N = mkN "شخص" "اشخاص" animate;
+  rain_N = mkN01 "باران" inanimate; 
+  road_N = mkN01 "جاده" inanimate;
+  root_N = mkN01 "ریشه" inanimate;
+  rope_N = mkN01 "طناب" inanimate;
+  salt_N = mkN01 "نمک" inanimate;
+  sand_N = mkN01 "ماسه" inanimate;
+  seed_N = mkN01 "دانه"  inanimate;
+  skin_N = mkN01 "پوست" inanimate;
+  sky_N = mkN01 "آسمان" inanimate;
+  smoke_N = mkN01 "دود" inanimate;
+  snow_N = mkN01 "برف" inanimate;
+  stick_N = mkN01 "ترکه" inanimate;
+  tail_N = mkN01 "دم" inanimate;
+  tongue_N = mkN01 "زبان" inanimate;
+  tooth_N = mkN01 "دندان" inanimate;
+  wife_N = mkN02 "همسر" animate;
+  wind_N = mkN01 "باد" inanimate;
+  wing_N = mkN01 "بال" inanimate;
+  worm_N = mkN01 "کرم" inanimate;
+  year_N = mkN01 "سال" inanimate;
+  blow_V = mkV_1 "دمیدن" ;
+  breathe_V = compoundV "نفس" (mkV_1 "کشیدن");
+  burn_V = mkV "سوختن" "سوز" ;
+  dig_V = mkV_2 "کندن" ;
+  fall_V = mkV_1 "افتادن" ;
+--  float_V = compoundV "شناور" (mkToBe "بودن" "باش" "هست") ;
+  flow_V = compoundV "جاری" (mkV "شدن" "شو") ;
+  fly_V = compoundV "پرواز" (mkV "کردن" "کن") ;
+  freeze_V = compoundV "یخ" (mkV "زدن" "زن") ;
+  give_V3 = mkV3 (mkV "دادن" "ده") "را" "به";
+  laugh_V = mkV_1 "خندیدن"  ;
+  lie_N = mkN01 "دروغ" inanimate;
+  lie_V = compoundV "دروغ" (mkV "گفتن" "گو" );
+  play_V = compoundV "بازی" (mkV "کردن" "کن");
+  sew_V = mkV "دوختن" "دوز" ;
+  sing_V = compoundV "آواز" (mkV_2 "خواندن");
+  sit_V = mkV "نشستن" "نشین" ;
+  smell_V = compoundV "بو" (mkV "دادن" "ده");
+  spit_V = compoundV "تف" (mkV "کردن" "کن");
+  stand_V = mkV_1 "ایستادن";
+  swell_V = compoundV "ورم" (mkV "کردن" "کن");
+  swim_V = compoundV "شنا" (mkV "کردن" "کن");
+  think_V = compoundV "فکر" (mkV "کردن" "کن");
+  turn_V = mkV_1 "چرخیدن" ;
+  vomit_V = compoundV "استفراغ" (mkV "کردن" "کن");
+  bite_V2 = mkV2 (compoundV "گاز" (mkV "گرفتن" "گیر")) "را";
+  count_V2 = mkV2 (mkV_2 "شماردن") "را";
+  cut_V2 = mkV2 (mkV_1 "بریدن") ;
+  fear_V2 = mkV2 (mkV_1 "ترسیدن") "از";
+  fight_V2 = mkV2 (mkV_1 "جنگیدن") "با" False;
+  hit_V2 = mkV2 (compoundV "ضربه" (mkV "زدن" "زن")) "به" False;
+  hold_V2 = mkV2 (compoundV "نگه" haveVerb) "را";
+  hunt_V2 = mkV2 (compoundV "شکار" (mkV "کردن" "کن")) "را";
+  kill_V2 = mkV2 ( mkV_2 "کشتن") "را";
+  pull_V2 = mkV2 (mkV_1 "کشیدن") "را";
+  push_V2 = mkV2 (compoundV "هل" (mkV "دادن" "ده")) "را" ;
+  rub_V2 = mkV2 (mkV_1 "مالیدن") "را";
+  scratch_V2 = mkV2 (mkV_1 "خراشیدن") "را" ;
+  split_V2 = mkV2 (compoundV "تقسیم" (mkV "کردن" "کن")) "را";
+  squeeze_V2 = mkV2 (compoundV "له" (mkV "کردن" "کن")) "را";
+  stab_V2 = mkV2 (compoundV "چاقو" (mkV "زدن" "زن")) "به" False; 
+  suck_V2 = mkV2 (mkV_1 "مکیدن") "را" ;
+  throw_V2 = mkV2 (compoundV "پرتاب" (mkV "کردن" "کن")) "را";
+  tie_V2 = mkV2 (compoundV "گره" (mkV "زدن" "زن")) "را";
+  wash_V2 = mkV2 (mkV "شستن" "شور") "را" ; -- also "شوی" which is the very formal form of the present root
+  wipe_V2 = mkV2 (compoundV "پاک" (mkV "کردن" "کن")) "را";
+
+----  other_A = regA "دیگر" ;
+
+  grammar_N = mkCmpdNoun1 "دستور" (mkN01 "زبان" inanimate);  
+  language_N = mkN01 "زبان" inanimate;
+  rule_N = mkN "قانون" "قوانین" inanimate;
+
+---- added 4/6/2007
+    john_PN = mkPN "جان" inanimate; 
+    question_N = mkN01 "سؤال" inanimate; -- has variant "پرسش"
+    ready_A = mkA "آماده" ["با آمادگی"] ;
+    reason_N = mkN "دلیل" "دلایل" inanimate;
+    today_Adv = ss "امروز" ;
+    uncertain_A = mkA "نامعلوم" ["با تردید"];
+     
+}
diff --git a/lib/src/persian/MakeStructuralPes.gf b/lib/src/persian/MakeStructuralPes.gf
new file mode 100644
--- /dev/null
+++ b/lib/src/persian/MakeStructuralPes.gf
@@ -0,0 +1,14 @@
+--# -path=.:../common:../abstract
+
+resource MakeStructuralPnb = open CatPnb, ParadigmsPnb, ResPnb, MorphoPnb, NounPnb, Prelude in {
+
+oper 
+  mkSubj : Str -> CatPnb.Subj = \x -> 
+    lin Subj {s = x} ;
+  mkNP : Str -> Number -> ResPnb.NP = \s,n ->
+     MassNP (UseN (ParadigmsPnb.mkN s));
+--    lin NP (regNP s n) ;
+  mkIDet : Str -> Number -> IDet = \s,n ->
+    lin IDet {s = \\_ => s ; n = n} ;
+
+}
diff --git a/lib/src/persian/MorphoPes.gf b/lib/src/persian/MorphoPes.gf
new file mode 100644
--- /dev/null
+++ b/lib/src/persian/MorphoPes.gf
@@ -0,0 +1,507 @@
+--# -path=.:../../prelude
+--
+----1 A Simple Punjabi Resource Morphology
+----
+----  Shafqat Virk, Aarne Ranta,2010
+----
+---- This resource morphology contains definitions needed in the resource
+---- syntax. To build a lexicon, it is better to use $ParadigmsPnb$, which
+---- gives a higher-level access to this module.
+--
+resource MorphoPes = ResPes ** open Prelude,Predef in {
+
+  flags optimize=all ;
+   coding = utf8;
+
+----2 Nouns
+
+oper
+    
+    mkN : (x1,x2 : Str) -> Animacy -> Noun = 
+      \sg,pl,ani -> {
+      s = table {
+         bEzafa => table { Sg => sg ;
+                           Pl => pl
+                        } ;
+         aEzafa => table { Sg => mkEzafa sg ;
+                           Pl => mkEzafa pl
+                         } ;
+         enClic => table { Sg => mkEnclic sg ;
+                           Pl => mkEnclic pl
+                         }                
+          };
+      animacy = ani ;
+      definitness = True
+      } ;
+    
+    
+    
+-- masculine nouns end with alif, choTi_hay, ain Translitration: (a, h, e)
+-- Arabic nouns ends with h. also taken as Masc
+  ------------------------------------------------------------------
+----Verbs
+------------------------------------------------------------------
+{- 
+ mkVerb : (x1,x2 : Str) -> Verb = \inf,root2 ->
+   let root1  = (tk 1 inf) ;    
+    in { 
+     s = table {
+
+     Root1     => root1 ;
+     Root2     => root2 ;
+     Inf      => inf ;
+
+     VF tense aspect person number   => (mkCmnVF root1 root2 tense aspect person number).s 
+--     Caus1 tense person number gender => (mkCmnVF root1 tense person number gender).s ;
+--     Caus2 tense person number gender => (mkCmnVF root2 tense person number gender).s 
+    }
+  } ;
+
+--1. Basic stem form, direct & indirect causatives exists
+-- v1 nechna nechaana nechwana
+
+  mkVerb1 : (_: Str) -> Verb = \inf ->
+   let root1  = (tk 1 inf) ; 
+       root2 = (tk 3 inf)  ;    
+    in { 
+     s = table {
+
+     Root1     => root1 ;
+     Root2     => root2 ;
+     Inf      => inf ;
+
+     VF tense aspect person number   => (mkCmnVF root1 root2 tense aspect person number).s 
+--     Caus1 tense person number gender => (mkCmnVF root1 tense person number gender).s ;
+--     Caus2 tense person number gender => (mkCmnVF root2 tense person number gender).s 
+    }
+  } ;
+
+
+mkVerb2 : (_: Str) -> Verb = \inf ->
+   let root1  = (tk 1 inf) ; 
+       root2 = (tk 2 inf)  ;    
+    in { 
+     s = table {
+
+     Root1     => root1 ;
+     Root2     => root2 ;
+     Inf      => inf ;
+
+     VF tense aspect person number   => (mkCmnVF root1 root2 tense aspect person number).s 
+--     Caus1 tense person number gender => (mkCmnVF root1 tense person number gender).s ;
+--     Caus2 tense person number gender => (mkCmnVF root2 tense person number gender).s 
+    }
+  } ;
+
+
+
+mkCmnVF : Str -> Str -> VTense -> PAspect -> PPerson -> Number -> {s:Str}= \root1,root2,t,a,p,n ->
+  {s  = (mkCmnVF1 root1 root2 t a p n).s ;
+   };
+  
+
+ mkCmnVF1 : Str -> Str -> VTense -> PAspect -> PPerson -> Number -> {s:Str}= \root1,root2,t,a,p,n ->
+  {s = let khordh = root1 + "ه";
+           mekhor = "می" ++ root2 ;
+	   mekhord = "می" ++ root1 ;
+	   mekhordh = "می" ++ khordh ;
+	   khah = "خواه" ;
+	   mekhah = "می" ++ khah ;
+	   bvdh = "بوده"
+  in
+  case <t,a,p,n> of {
+    <PPresent,PPerf,PPers1,Sg> => khordh ++ "ام" ;
+    <PPresent,PPerf,PPers1,Pl> => khordh ++ "ایم" ;
+    <PPresent,PPerf,PPers2,Sg> => khordh ++ "ای" ;
+    <PPresent,PPerf,PPers2,Pl> => khordh ++ "اید" ;
+    <PPresent,PPerf,PPers3,Sg> => khordh ++ "است" ;
+    <PPresent,PPerf,PPers3,Pl> => khordh ++ "اند" ;
+    
+    <PPresent,PImperf,PPers1,Sg> => mekhor + "م" ; -- toHave need to have khor instead of mekhor
+    <PPresent,PImperf,PPers1,Pl> => mekhor + "یم" ;
+    <PPresent,PImperf,PPers2,Sg> => mekhor + "ی" ;
+    <PPresent,PImperf,PPers2,Pl> => mekhor + "ید" ;
+    <PPresent,PImperf,PPers3,Sg> => mekhor + "د" ;
+    <PPresent,PImperf,PPers3,Pl> => mekhor + "ند" ;
+    
+    <PPresent,Aorist,PPers1,Sg> => "" ;
+    <PPresent,Aorist,PPers1,Pl> => "" ;
+    <PPresent,Aorist,PPers2,Sg> => "" ;
+    <PPresent,Aorist,PPers2,Pl> => "" ;
+    <PPresent,Aorist,PPers3,Sg> => "" ;
+    <PPresent,Aorist,PPers3,Pl> => "" ;
+    
+    <PPast,PPerf,PPers1,Sg> => khordh ++ "بودم" ;
+    <PPast,PPerf,PPers1,Pl> => khordh ++ "بودیم" ;
+    <PPast,PPerf,PPers2,Sg> => khordh ++ "بودی" ;
+    <PPast,PPerf,PPers2,Pl> => khordh ++ "بودید" ;
+    <PPast,PPerf,PPers3,Sg> => khordh ++ "بود" ;
+    <PPast,PPerf,PPers3,Pl> => khordh ++ "بودند" ;
+    
+    <PPast,PImperf,PPers1,Sg> => mekhord + "م" ; -- toHave need to have khor instead of mekhor
+    <PPast,PImperf,PPers1,Pl> => mekhord + "یم" ;
+    <PPast,PImperf,PPers2,Sg> => mekhord  + "ی";
+    <PPast,PImperf,PPers2,Pl> => mekhord + "ید" ;
+    <PPast,PImperf,PPers3,Sg> => mekhord ;
+    <PPast,PImperf,PPers3,Pl> => mekhord + "ند" ;
+    
+    <PPast,Aorist,PPers1,Sg> => root1 + "م" ;
+    <PPast,Aorist,PPers1,Pl> => root1 + "یم" ;
+    <PPast,Aorist,PPers2,Sg> => root1  + "ی";
+    <PPast,Aorist,PPers2,Pl> => root1 + "ید" ;
+    <PPast,Aorist,PPers3,Sg> => root1 ;
+    <PPast,Aorist,PPers3,Pl> => root1 + "ند" ;
+    
+    -- check this one
+    <PFut,PPerf,PPers1,Sg> => "" ;
+    <PFut,PPerf,PPers1,Pl> => "" ;
+    <PFut,PPerf,PPers2,Sg> => "" ;
+    <PFut,PPerf,PPers2,Pl> => "" ;
+    <PFut,PPerf,PPers3,Sg> => "" ;
+    <PFut,PPerf,PPers3,Pl> => "" ;
+    
+    <PFut,PImperf,PPers1,Sg> => mekhah + "م"   ++ addBh root2 + "م" ;
+    <PFut,PImperf,PPers1,Pl> => mekhah + "یم" ++  addBh root2 + "یم" ;
+    <PFut,PImperf,PPers2,Sg> => mekhah + "ی" ++  addBh root2 + "ی" ;
+    <PFut,PImperf,PPers2,Pl> => mekhah + "ید" ++  addBh root2 + "ید" ;
+    <PFut,PImperf,PPers3,Sg> => mekhah + "د" ++  addBh root2 + "د" ;
+    <PFut,PImperf,PPers3,Pl> => mekhah + "ند" ++  addBh root2 + "ند" ;
+    
+    <PFut,Aorist,PPers1,Sg> => khah + "م"  ++ root1  ;
+    <PFut,Aorist,PPers1,Pl> => khah + "یم"  ++ root1 ;
+    <PFut,Aorist,PPers2,Sg> => khah + "ی"  ++ root1 ;
+    <PFut,Aorist,PPers2,Pl> => khah + "ید"  ++ root1 ;
+    <PFut,Aorist,PPers3,Sg> => khah + "د"  ++ root1 ;
+    <PFut,Aorist,PPers3,Pl> => khah + "ند"  ++ root1  ;
+    
+    
+    <Infr_Past,PPerf,PPers1,Sg> => khordh ++ bvdh ++ "ام" ;
+    <Infr_Past,PPerf,PPers1,Pl> => khordh ++ bvdh ++ "ایم" ;
+    <Infr_Past,PPerf,PPers2,Sg> => khordh ++ bvdh ++ "ای" ;
+    <Infr_Past,PPerf,PPers2,Pl> => khordh ++ bvdh ++ "اید" ;
+    <Infr_Past,PPerf,PPers3,Sg> => khordh ++ bvdh ++ "است" ;
+    <Infr_Past,PPerf,PPers3,Pl> => khordh ++ bvdh ++ "اند" ;
+    
+    <Infr_Past,PImperf,PPers1,Sg> => mekhordh ++ "ام" ;  -- toHave need to have khordh instead of mekhor
+    <Infr_Past,PImperf,PPers1,Pl> => mekhordh ++ "ایم" ;
+    <Infr_Past,PImperf,PPers2,Sg> => mekhordh ++ "ای" ;
+    <Infr_Past,PImperf,PPers2,Pl> => mekhordh ++ "اید" ;
+    <Infr_Past,PImperf,PPers3,Sg> => mekhordh ++ "است" ;
+    <Infr_Past,PImperf,PPers3,Pl> => mekhordh ++ "اند" ;
+    
+    
+    -- check this one
+    <Infr_Past,Aorist,PPers1,Sg> => "" ;
+    <Infr_Past,Aorist,PPers1,Pl> => "" ;
+    <Infr_Past,Aorist,PPers2,Sg> => "" ;
+    <Infr_Past,Aorist,PPers2,Pl> => "" ;
+    <Infr_Past,Aorist,PPers3,Sg> => "" ;
+    <Infr_Past,Aorist,PPers3,Pl> => "" 
+    
+    
+  }
+ } ;
+ -}
+ mkVerb : (x1,x2 : Str) -> Verb = \inf,root2 ->
+   let root1  = (tk 1 inf) ;
+   impRoot = mkimpRoot root2;
+    in { 
+     s = table {
+
+     Root1     => root1 ;
+     Root2     => root2 ;
+     Inf      => inf ;
+     Imp Pos Sg => addBh impRoot ;
+     Imp Pos Pl => (addBh impRoot) + "ید" ;
+     Imp Neg Sg => "ن" + impRoot ;
+     Imp Neg Pl => "ن" +  impRoot + "ید" ;
+
+     VF pol tense person number   => (mkCmnVF root1 root2 pol tense person number).s ;
+--     VF Neg tense person number   => addN (mkCmnVF root1 root2 tense person number).s ;
+     Vvform (AgPes number person) => (mkvVform root2 number person).s
+   }
+  } ;
+
+ mkVerb1 : (_: Str) -> Verb = \inf ->
+   let root1  = (tk 1 inf) ; 
+       root2 = (tk 3 inf)  ;
+       impRoot = mkimpRoot root2 ;
+    in { 
+     s = table {
+
+     Root1     => root1 ;
+     Root2     => root2 ;
+     Inf      => inf ;
+     Imp Pos Sg => addBh impRoot ;
+     Imp Pos Pl => (addBh impRoot) + "ید" ;
+     Imp Neg Sg => "ن" + impRoot ;
+     Imp Neg Pl => "ن" +  impRoot + "ید" ;
+
+     VF pol tense person number   => (mkCmnVF root1 root2 pol tense person number).s ;
+--     VF Neg tense person number   => addN (mkCmnVF root1 root2 tense person number).s ;
+     Vvform (AgPes number person) => (mkvVform root2 number person).s
+     }
+    };
+    
+  
+mkVerb2 : (_: Str) -> Verb = \inf ->
+   let root1  = (tk 1 inf) ; 
+       root2 = (tk 2 inf)  ;
+       impRoot = mkimpRoot root2 ;
+    in { 
+     s = table {
+
+     Root1     => root1 ;
+     Root2     => root2 ;
+     Inf      => inf ;
+     Imp Pos Sg => addBh impRoot ;
+     Imp Pos Pl => (addBh impRoot) + "ید" ;
+     Imp Neg Sg => "ن" + impRoot ;
+     Imp Neg Pl => "ن" +  impRoot + "ید" ;
+
+     VF pol tense person number   => (mkCmnVF root1 root2 pol tense person number).s ;
+--     VF Neg tense person number   => addN (mkCmnVF root1 root2 tense person number).s ;
+     Vvform (AgPes number person) => (mkvVform root2 number person).s
+    }
+  } ;
+  
+  mkHave : Verb = 
+  
+     { 
+     s = table {
+
+     Root1     => "داشت" ;
+     Root2     => "دار" ;
+     Inf      => "داشتن" ;
+     Imp Pos Sg => ["داشته باش"] ;
+     Imp Pos Pl => ["داشته باشید"];
+     Imp Neg Sg => ["نداشته باش"]  ;
+     Imp Neg Pl => ["نداشته باشید"] ;
+
+     VF pol tense person number   => (toHave pol tense number person).s ;
+--     VF Neg tense person number   => addN (mkCmnVF root1 root2 tense person number).s ;
+     Vvform (AgPes Sg PPers1) => ["داشته باشم"] ;
+     Vvform (AgPes Sg PPers2) => ["داشته باشی"] ;
+     Vvform (AgPes Sg PPers3) => ["داشته باشد"] ;
+     Vvform (AgPes Pl PPers1) => ["داشته باشیم"] ;
+     Vvform (AgPes Pl PPers2) => ["داشته باشید"] ;
+     Vvform (AgPes Pl PPers3) => ["داشته باشند"] 
+    }
+  } ;
+  
+  
+mkCmnVF : Str -> Str -> Polarity -> VTense2 ->  PPerson -> Number -> {s:Str}= \root1,root2,pol,t,p,n ->
+  {s  = (mkCmnVF1 root1 root2 pol t p n).s ;
+   };
+  
+
+ mkCmnVF1 : Str -> Str -> Polarity -> VTense2 -> PPerson -> Number -> {s:Str}= \root1,root2,pol,t,p,n ->
+  {s = let khordh = root1 + "ه";
+           nkhordh = (addN root1) + "ه" ;
+           mekhor = "می" ++ root2 ;
+	   nmekhor =  "نمی" ++ root2 ;
+	   mekhord = "می" ++ root1 ;
+	   nmekhord = "نمی" ++ root1 ;
+	   mekhordh = "می" ++ khordh ;
+	   nmekhordh = "نمی" ++ khordh ;
+	   khah = "خواه" ;
+	   nkhah = "نخواه" ;
+	   mekhah = "می" ++ khah ;
+	   nmekhah = "نمی" ++ khah ;
+	   bvdh = "بوده"
+  in
+  case <pol,t,p,n> of {
+    <Pos,PPresent2 PrPerf,PPers1,Sg> => khordh ++ "ام" ;  
+    <Pos,PPresent2 PrPerf,PPers1,Pl> => khordh ++ "ایم" ;
+    <Pos,PPresent2 PrPerf,PPers2,Sg> => khordh ++ "ای" ;
+    <Pos,PPresent2 PrPerf,PPers2,Pl> => khordh ++ "اید" ;
+    <Pos,PPresent2 PrPerf,PPers3,Sg> => khordh ++ "است" ;
+    <Pos,PPresent2 PrPerf,PPers3,Pl> => khordh ++ "اند" ;
+    
+    <Pos,PPresent2 PrImperf,PPers1,Sg> => mekhor + "م" ;
+    <Pos,PPresent2 PrImperf,PPers1,Pl> => mekhor + "یم" ;
+    <Pos,PPresent2 PrImperf,PPers2,Sg> => mekhor + "ی" ;
+    <Pos,PPresent2 PrImperf,PPers2,Pl> => mekhor + "ید" ;
+    <Pos,PPresent2 PrImperf,PPers3,Sg> => mekhor + "د" ;
+    <Pos,PPresent2 PrImperf,PPers3,Pl> => mekhor + "ند" ;
+    
+    
+    <Pos,PPast2 PstPerf,PPers1,Sg> => khordh ++ "بودم" ;
+    <Pos,PPast2 PstPerf,PPers1,Pl> => khordh ++ "بودیم" ;
+    <Pos,PPast2 PstPerf,PPers2,Sg> => khordh ++ "بودی" ;
+    <Pos,PPast2 PstPerf,PPers2,Pl> => khordh ++ "بودید" ;
+    <Pos,PPast2 PstPerf,PPers3,Sg> => khordh ++ "بود" ;
+    <Pos,PPast2 PstPerf,PPers3,Pl> => khordh ++ "بودند" ;
+    
+    <Pos,PPast2 PstImperf,PPers1,Sg> => mekhord + "م" ;
+    <Pos,PPast2 PstImperf,PPers1,Pl> => mekhord + "یم" ;
+    <Pos,PPast2 PstImperf,PPers2,Sg> => mekhord  + "ی";
+    <Pos,PPast2 PstImperf,PPers2,Pl> => mekhord + "ید" ;
+    <Pos,PPast2 PstImperf,PPers3,Sg> => mekhord ;
+    <Pos,PPast2 PstImperf,PPers3,Pl> => mekhord + "ند" ;
+    
+    <Pos,PPast2 PstAorist,PPers1,Sg> => root1 + "م" ;
+    <Pos,PPast2 PstAorist,PPers1,Pl> => root1 + "یم" ;
+    <Pos,PPast2 PstAorist,PPers2,Sg> => root1  + "ی";
+    <Pos,PPast2 PstAorist,PPers2,Pl> => root1 + "ید" ;
+    <Pos,PPast2 PstAorist,PPers3,Sg> => root1 ;
+    <Pos,PPast2 PstAorist,PPers3,Pl> => root1 + "ند" ;
+    
+   {- 
+    <Pos,PFut2 FtImperf,PPers1,Sg> => mekhah + "م"   ++ addBh root2 + "م" ;
+    <Pos,PFut2 FtImperf,PPers1,Pl> => mekhah + "یم" ++  addBh root2 + "یم" ;
+    <Pos,PFut2 FtImperf,PPers2,Sg> => mekhah + "ی" ++  addBh root2 + "ی" ;
+    <Pos,PFut2 FtImperf,PPers2,Pl> => mekhah + "ید" ++  addBh root2 + "ید" ;
+    <Pos,PFut2 FtImperf,PPers3,Sg> => mekhah + "د" ++  addBh root2 + "د" ;
+    <Pos,PFut2 FtImperf,PPers3,Pl> => mekhah + "ند" ++  addBh root2 + "ند" ;
+    -}
+    <Pos,PFut2 FtAorist,PPers1,Sg> => khah + "م"  ++ root1  ;
+    <Pos,PFut2 FtAorist,PPers1,Pl> => khah + "یم"  ++ root1 ;
+    <Pos,PFut2 Ftorist,PPers2,Sg> => khah + "ی"  ++ root1 ;
+    <Pos,PFut2 FtAorist,PPers2,Pl> => khah + "ید"  ++ root1 ;
+    <Pos,PFut2 FtAorist,PPers3,Sg> => khah + "د"  ++ root1 ;
+    <Pos,PFut2 FtAorist,PPers3,Pl> => khah + "ند"  ++ root1  ;
+    
+    
+    <Pos,Infr_Past2 InfrPerf,PPers1,Sg> => khordh ++ bvdh ++ "ام" ;
+    <Pos,Infr_Past2 InfrPerf,PPers1,Pl> => khordh ++ bvdh ++ "ایم" ;
+    <Pos,Infr_Past2 InfrPerf,PPers2,Sg> => khordh ++ bvdh ++ "ای" ;
+    <Pos,Infr_Past2 InfrPerf,PPers2,Pl> => khordh ++ bvdh ++ "اید" ;
+    <Pos,Infr_Past2 InfrPerf,PPers3,Sg> => khordh ++ bvdh ++ "است" ;
+    <Pos,Infr_Past2 InfrPerf,PPers3,Pl> => khordh ++ bvdh ++ "اند" ;
+    
+    <Pos,Infr_Past2 InfrImperf,PPers1,Sg> => mekhordh ++ "ام" ;
+    <Pos,Infr_Past2 InfrImperf,PPers1,Pl> => mekhordh ++ "ایم" ;
+    <Pos,Infr_Past2 InfrImperf,PPers2,Sg> => mekhordh ++ "ای" ;
+    <Pos,Infr_Past2 InfrImperf,PPers2,Pl> => mekhordh ++ "اید" ;
+    <Pos,Infr_Past2 InfrImperf,PPers3,Sg> => mekhordh ++ "است" ;
+    <Pos,Infr_Past2 InfrImperf,PPers3,Pl> => mekhordh ++ "اند" ;
+    
+ -- negatives
+ 
+    <Neg,PPresent2 PrPerf,PPers1,Sg> => addN khordh ++ "ام" ;  
+    <Neg,PPresent2 PrPerf,PPers1,Pl> => addN khordh ++ "ایم" ;
+    <Neg,PPresent2 PrPerf,PPers2,Sg> => addN khordh ++ "ای" ;
+    <Neg,PPresent2 PrPerf,PPers2,Pl> => addN khordh ++ "اید" ;
+    <Neg,PPresent2 PrPerf,PPers3,Sg> => addN khordh ++ "است" ;
+    <Neg,PPresent2 PrPerf,PPers3,Pl> => addN khordh ++ "اند" ;
+    
+    
+    <Neg,PPresent2 PrImperf,PPers1,Sg> => nmekhor + "م" ;
+    <Neg,PPresent2 PrImperf,PPers1,Pl> => nmekhor + "یم" ;
+    <Neg,PPresent2 PrImperf,PPers2,Sg> => nmekhor + "ی" ;
+    <Neg,PPresent2 PrImperf,PPers2,Pl> => nmekhor + "ید" ;
+    <Neg,PPresent2 PrImperf,PPers3,Sg> => nmekhor + "د" ;
+    <Neg,PPresent2 PrImperf,PPers3,Pl> => nmekhor + "ند" ;
+         
+    <Neg,PPast2 PstPerf,PPers1,Sg> => nkhordh ++ "بودم" ;
+    <Neg,PPast2 PstPerf,PPers1,Pl> => nkhordh ++ "بودیم" ;
+    <Neg,PPast2 PstPerf,PPers2,Sg> => nkhordh ++ "بودی" ;
+    <Neg,PPast2 PstPerf,PPers2,Pl> => nkhordh ++ "بودید" ;
+    <Neg,PPast2 PstPerf,PPers3,Sg> => nkhordh ++ "بود" ;
+    <Neg,PPast2 PstPerf,PPers3,Pl> => nkhordh ++ "بودند" ;
+      
+    <Neg,PPast2 PstImperf,PPers1,Sg> => nmekhord + "م" ;
+    <Neg,PPast2 PstImperf,PPers1,Pl> => nmekhord + "یم" ;
+    <Neg,PPast2 PstImperf,PPers2,Sg> => nmekhord  + "ی";
+    <Neg,PPast2 PstImperf,PPers2,Pl> => nmekhord + "ید" ;
+    <Neg,PPast2 PstImperf,PPers3,Sg> => nmekhord ;
+    <Neg,PPast2 PstImperf,PPers3,Pl> => nmekhord + "ند" ;
+  
+ 
+    <Neg,PPast2 PstAorist,PPers1,Sg> => addN root1 + "م" ;
+    <Neg,PPast2 PstAorist,PPers1,Pl> => addN root1 + "یم" ;
+    <Neg,PPast2 PstAorist,PPers2,Sg> => addN root1  + "ی";
+    <Neg,PPast2 PstAorist,PPers2,Pl> => addN root1 + "ید" ;
+    <Neg,PPast2 PstAorist,PPers3,Sg> => addN root1 ;
+    <Neg,PPast2 PstAorist,PPers3,Pl> => addN root1 + "ند" ;
+      
+ {-     
+    <Neg,PFut2 FtImperf,PPers1,Sg> => nmekhah + "م"   ++ addBh root2 + "م" ;
+    <Neg,PFut2 FtImperf,PPers1,Pl> => nmekhah + "یم" ++  addBh root2 + "یم" ;
+    <Neg,PFut2 FtImperf,PPers2,Sg> => nmekhah + "ی" ++  addBh root2 + "ی" ;
+    <Neg,PFut2 FtImperf,PPers2,Pl> => nmekhah + "ید" ++  addBh root2 + "ید" ;
+    <Neg,PFut2 FtImperf,PPers3,Sg> => nmekhah + "د" ++  addBh root2 + "د" ;
+    <Neg,PFut2 FtImperf,PPers3,Pl> => nmekhah + "ند" ++  addBh root2 + "ند" ;
+ -}   
+    <Neg,PFut2 FtAorist,PPers1,Sg> => nkhah + "م"  ++ root1  ;
+    <Neg,PFut2 FtAorist,PPers1,Pl> => nkhah + "یم"  ++ root1 ;
+    <Neg,PFut2 Ftorist,PPers2,Sg> => nkhah + "ی"  ++ root1 ;
+    <Neg,PFut2 FtAorist,PPers2,Pl> => nkhah + "ید"  ++ root1 ;
+    <Neg,PFut2 FtAorist,PPers3,Sg> => nkhah + "د"  ++ root1 ;
+    <Neg,PFut2 FtAorist,PPers3,Pl> => nkhah + "ند"  ++ root1  ;
+    
+   
+    <Neg,Infr_Past2 InfrPerf,PPers1,Sg> => nkhordh ++ bvdh ++ "ام" ;
+    <Neg,Infr_Past2 InfrPerf,PPers1,Pl> => nkhordh ++ bvdh ++ "ایم" ;
+    <Neg,Infr_Past2 InfrPerf,PPers2,Sg> => nkhordh ++ bvdh ++ "ای" ;
+    <Neg,Infr_Past2 InfrPerf,PPers2,Pl> => nkhordh ++ bvdh ++ "اید" ;
+    <Neg,Infr_Past2 InfrPerf,PPers3,Sg> => nkhordh ++ bvdh ++ "است" ;
+    <Neg,Infr_Past2 InfrPerf,PPers3,Pl> => nkhordh ++ bvdh ++ "اند" ;
+    
+    <Neg,Infr_Past2 InfrImperf,PPers1,Sg> => nmekhordh ++ "ام" ;
+    <Neg,Infr_Past2 InfrImperf,PPers1,Pl> => nmekhordh ++ "ایم" ;
+    <Neg,Infr_Past2 InfrImperf,PPers2,Sg> => nmekhordh ++ "ای" ;
+    <Neg,Infr_Past2 InfrImperf,PPers2,Pl> => nmekhordh ++ "اید" ;
+    <Neg,Infr_Past2 InfrImperf,PPers3,Sg> => nmekhordh ++ "است" ;
+    <Neg,Infr_Past2 InfrImperf,PPers3,Pl> => nmekhordh ++ "اند" 
+   
+     
+     }
+     
+   } ;
+   
+  mkvVform : Str -> Number -> PPerson -> {s: Str} = \root2,n,p ->
+  {s =
+    case <n,p> of {
+     <Sg,PPers1> => addBh root2 + "م" ;
+     <Sg,PPers2> => addBh root2 + "ی" ;
+     <Sg,PPers3> => addBh root2 + "د" ;
+     <Pl,PPers1> => addBh root2 + "یم" ;
+     <Pl,PPers2> => addBh root2 + "ید" ;
+     <Pl,PPers3> => addBh root2 + "ند" 
+     }
+    };
+
+ mkimpRoot : Str -> Str ;
+ mkimpRoot root =
+             case root of {
+                   st + "ی" => st ;
+                   _        => root
+                   };
+
+
+addBh : Str -> Str ;
+addBh str = 
+            case (take 1 str) of { 
+	       "ا" => "بی" + str ;  
+	       "آ" => "بیا" + (drop 1 str) ;
+	       _    => "ب" + str
+       };
+       
+ ---------------------
+ --Determiners
+ --------------------
+ 
+ makeDet : Str -> Number -> Bool -> {s: Str ; n : Number ; isNum : Bool ; fromPron : Bool} =\str,n,b -> {
+      s = str;
+      isNum = b;
+      fromPron = False ;
+      n = n
+   };
+ makeQuant : Str -> Str  -> {s : Number => Str ; a : AgrPes ; fromPron : Bool } = \sg,pl -> {
+            s = table {Sg => sg ; Pl => pl} ;
+            fromPron = False ;
+	    a = agrPesP3 Sg
+	    };
+---------------------------
+-- Adjectives
+--------------------------
+mkAdj : Str -> Str -> Adjective = \adj,adv -> {
+ s = table { bEzafa => adj;
+             aEzafa => mkEzafa adj ;
+             enClic => mkEnclic adj
+            } ;
+  adv = adv          
+  };
+}
diff --git a/lib/src/persian/NounPes.gf b/lib/src/persian/NounPes.gf
new file mode 100644
--- /dev/null
+++ b/lib/src/persian/NounPes.gf
@@ -0,0 +1,140 @@
+concrete NounPes of Noun = CatPes ** open ResPes, Prelude in {
+
+  flags optimize=all_subs ;
+
+  lin
+    DetCN det cn = {
+      s =  \\_ => case <det.isNum,det.fromPron> of {
+                 <False,True> => cn.s ! aEzafa ! det.n ++ det.s ; -- det.n  ;
+		 <False,False> => det.s  ++ cn.s ! bEzafa ! det.n ; -- det.n  ;
+		 <True,True> => cn.s ! aEzafa ! Sg ++ det.s ;
+		 <True,False> =>  det.s ++ cn.s ! bEzafa ! Sg 
+		 };
+      a = agrPesP3 det.n ;
+      animacy = cn.animacy 
+      } ;
+
+    UsePN pn = {s = \\_ => pn.s ; a = agrPesP3 Sg ; animacy = pn.animacy } ;
+    UsePron p = {s = \\_ => p.s ; a = p.a ; animacy = Animate} ;
+
+    PredetNP pred np = {
+      s = \\ez => pred.s ++ np.s ! ez ;
+      a = np.a;
+      animacy = np.animacy
+      } ;
+
+    PPartNP np v2 = {
+      s =  \\ez => np.s ! ez ++ partNP (v2.s ! Root1)    ;
+      a = np.a ;
+      animacy = np.animacy
+      } ;
+
+    RelNP np rs = {
+	  s = \\ez => np.s ! ez  ++ rs.s ! np.a ;
+      a = np.a ;
+      animacy = np.animacy
+      } ;
+
+    AdvNP np adv = {
+      s = \\ez => np.s ! NPC aEzafa ++ adv.s ;
+      a = np.a  ;
+      animacy = np.animacy
+      } ;
+
+    DetQuantOrd quant num ord = {
+        s = quant.s ! num.n ++ num.s ++ ord.s ;
+	isNum = True;
+	fromPron = quant.fromPron ;
+      n = num.n
+      } ;
+
+    DetQuant quant num = {
+        s = quant.s ! num.n ++ num.s;
+	isNum = True ; -- this does not work in case of 'these women' but  works in case of 'five women' 
+	fromPron = quant.fromPron ;
+	  n = num.n 
+      } ;
+
+    DetNP det = {
+      s = \\_ => det.s  ; ---- case
+      a = agrPesP3 det.n ;
+      animacy = Inanimate
+      } ;
+
+    PossPron p = {s = \\_ => p.ps ; a = p.a ; fromPron = True} ;
+
+    NumSg = {s = [] ; n = Sg} ;
+    NumPl = {s = [] ; n = Pl} ;
+-- from here
+    NumCard n = n ** {hasCard = True} ;
+
+    NumDigits n = {s = n.s ! NCard ; n = n.n} ;
+    OrdDigits n = {s = n.s ! NOrd; n = n.n} ;
+
+    NumNumeral numeral = {s = numeral.s ! NCard; n = numeral.n} ;
+    OrdNumeral numeral = {s = numeral.s ! NOrd ; n = numeral.n} ;
+-- to here
+    AdNum adn num = {s = adn.s ++ num.s ; n = num.n} ;
+
+    OrdSuperl a = {s = a.s ! bEzafa ++ taryn; n = Sg} ; -- check the form of adjective
+
+    DefArt = {s = \\_ => [] ; a = defaultAgrPes ; fromPron = False} ;
+    IndefArt = {s = \\_ => IndefArticle ; a =defaultAgrPes ; fromPron = False} ;
+
+    MassNP cn = {s =\\c => case c of {
+      NPC bEzafa => cn.s ! bEzafa ! Sg ;
+      NPC aEzafa => cn.s ! aEzafa ! Sg ;
+      NPC enClic => cn.s ! enClic ! Sg 
+      };
+      a = agrPesP3 Sg ;
+      animacy = cn.animacy
+      } ;
+
+    UseN n = n ;
+    UseN2 n = n ;
+ 
+    Use2N3 f = {
+      s = f.s;
+      c = f.c2;
+      animacy = f.animacy;
+      definitness = True
+      } ;
+
+   Use3N3 f = {
+      s = f.s ;
+      c = f.c3;
+      animacy = f.animacy;
+      definitness = True
+      } ;
+
+    ComplN2 f x = {
+      s = \\ez,n => f.s ! ez ! n  ++ f.c ++ x.s ! NPC ez ;
+      animacy = f.animacy;
+      definitness = True
+	   };
+    ComplN3 f x = {
+      s = \\ez,n => f.s ! ez ! n ++ f.c2 ++ x.s ! NPC ez ; 
+      c = f.c3;
+      animacy = f.animacy;
+      definitness = True;
+      } ;
+
+    AdjCN ap cn = {
+      s = \\ez,n =>  cn.s ! aEzafa ! n ++ ap.s ! ez; -- check the form of adjective and also cn.s!ez!n changed from cn.s!aEzafa!n to have correct enclicitic form other wise it creats wrong enclictic form of old man
+      animacy = cn.animacy ;
+      definitness = cn.definitness
+      } ;
+
+    RelCN cn rs = {
+      s = \\ez,n => cn.s ! enClic ! n ++ rs.s ! agrPesP3 n ; 
+      animacy = cn.animacy ;
+      definitness = cn.definitness
+      } ;
+      
+    AdvCN cn ad = {s = \\ez,n => cn.s ! aEzafa ! n ++ ad.s ; animacy = cn.animacy ; definitness = cn.definitness} ;
+
+    SentCN cn sc = {s = \\ez,n => cn.s ! ez ! n ++ sc.s ; animacy = cn.animacy ; definitness = cn.definitness} ;
+
+    ApposCN cn np = {s = \\ez,n => cn.s ! ez ! n  ++ np.s ! NPC aEzafa ; animacy = cn.animacy ; definitness = True} ; -- ezafa form of city to be used
+
+}
diff --git a/lib/src/persian/NumeralPes.gf b/lib/src/persian/NumeralPes.gf
new file mode 100644
--- /dev/null
+++ b/lib/src/persian/NumeralPes.gf
@@ -0,0 +1,140 @@
+--# -path=.:../abstract:../common:
+concrete NumeralPes of Numeral = CatPes [Numeral,Digits] ** open ResPes,Prelude in {
+
+flags coding = utf8;
+
+param DForm = unit | teen | ten | hundreds |thousands;
+param DSize = sg | r2 | r3 | r4 | r5 | r6 | r7 | r8 | r9 ;
+param Size = singl | less100 | more100 ; 
+
+
+lincat 
+  Digit = {s : DForm => CardOrd => Str} ;
+  Sub10 = {s : DForm => CardOrd => Str ; n : Number} ;
+  Sub100     = {s : CardOrd => Str ; n : Number} ;
+  Sub1000    = {s : CardOrd => Str ; n : Number} ;
+  Sub1000000 = {s : CardOrd => Str ; n : Number} ;
+
+lin num x = x ;
+-- 2     12     20    200             
+lin n2 = mkNum  "دو"     "دوازده"   "بیست"     "دویست" ;       
+lin n3 = mkNum3   "سه"     "سیزده"    "سی"       "سیصد"   "سوم"  ;
+lin n4 = mkNum  "چهار"   "چهارده"   "چهل"      "چهارصد"  ;
+lin n5 = mkNum  "پنج"    "پانزده"   "پنجاه"    "پانصد"  ;
+lin n6 = mkNum   "شش"     "شانزده"   "شصت"      "ششصد" ;
+lin n7 = mkNum  "هفت"    "هفده"     "هفتاد"    "هفتصد"  ;
+lin n8 = mkNum  "هشت"    "هجده"     "هشتاد"    "هشتصد"   ;
+lin n9 = mkNum   "نه"     "نوزده"    "نود"      "نهصد"  ;
+
+lin pot01 = mkNum3  "یک"   "یازده"  "ده"   "یکصد"   "هزار"    ** {n = Sg} ;
+
+lin pot0 d = d ** {n = Pl} ;
+
+lin pot110 = {s = table { NCard => "ده" ; 
+                          NOrd   => "دهم" };
+               n = Pl} ;
+lin pot111 = {s = table { NCard => "یازده" ; 
+                          NOrd   => "یازدهم" };
+               n = Pl};
+
+lin pot1to19 d = {s = d.s ! teen} ** {n = Pl} ;
+lin pot0as1 n = {s = n.s ! unit}  ** {n = n.n} ;
+lin pot1 d = {s = d.s ! ten} ** {n = Pl} ;
+
+lin pot1plus d e = {
+   s = \\o => d.s ! ten ! NCard ++"و" ++e.s ! unit ! o ; n = Pl} ;
+
+lin pot1as2 n = n ;
+
+lin pot2 d = {s = d.s ! hundreds}  ** {n = Pl} ;
+lin pot2plus d e = {
+  s = \\o => d.s ! hundreds ! NCard  ++ "و" ++ e.s ! o  ; n = Pl} ; -- remove "??"
+
+lin pot2as3 n = n ;
+
+lin pot3 n = { s = \\o => n.s ! NCard ++  "هزار" ; n = Pl} ;
+
+lin pot3plus n m = {
+  s = \\o => n.s ! NCard ++ "هزار" ++ "و" ++ m.s ! o; n = Pl} ; -- missing word "????????" after NCard
+
+-- numerals as sequences of digits
+
+  lincat 
+    Dig = TDigit ;
+   
+  lin
+    IDig d = d ** {tail = T1} ;
+{-
+   IIDig d i = {
+      s = \\o,c => d.s ! NCard  ++ commaIf i.tail ++ i.s ! o ! c ;
+      n = Pl ;
+ --     tail = inc i.tail
+    } ;
+-}
+    D_0 = mkDig "0" ;
+    D_1 = mk3Dig "1" "" Pl;
+    D_2 = mk2Dig "2" "";
+    D_3 = mk2Dig "3" "سوم" ;
+    D_4 = mkDig "4" ;
+    D_5 = mkDig "5" ;
+    D_6 = mkDig "6" ;
+    D_7 = mkDig "7" ;
+    D_8 = mkDig "8" ;
+    D_9 = mkDig "9" ;
+   
+  --  lin IDig d = { s = \\_ => d.s ; n = Sg} ;
+    lin IIDig d dg = { s = \\df => d.s ! NCard ++ dg.s ! df   ; n = Pl}; 
+
+  oper
+    commaIf : DTail -> Str = \t -> case t of {
+      T3 => "," ;
+      _ => []
+      } ;
+
+    inc : DTail -> DTail = \t -> case t of {
+      T1 => T2 ;
+      T2 => T3 ;
+      T3 => T1
+      } ;
+
+    mk2Dig : Str -> Str -> TDigit = \c,o -> mk3Dig c o Pl ;
+    mkDig : Str -> TDigit = \c -> mk2Dig c (c + "م") ;
+
+    mk3Dig : Str -> Str -> Number -> TDigit = \c,o,n -> {
+     -- s = table {NCard => regGenitiveS c ; NOrd => regGenitiveS o} ;
+       s = table {NCard => c ; NOrd =>  o} ;
+      n = n
+      } ;
+
+ oper   TDigit = {
+      n : Number ;
+      s : CardOrd => Str
+    } ;
+
+
+oper 
+ mkNum : Str -> Str -> Str -> Str -> {s : DForm => CardOrd => Str} = 
+    \two, twelve, twenty, twohundred->
+    {s = table {
+       unit => table {NCard => two ; NOrd => (two + "مین") | (two + "م")};
+       teen => table {NCard => twelve ; NOrd => (twelve + "مین") | (twelve + "م")} ; 
+       ten  => table {NCard => twenty ; NOrd => (twenty + "مین") | (twenty + "م")};
+       hundreds => table {NCard => twohundred ; NOrd => (twohundred +"مین") | (twohundred + "م")};
+       thousands => table {NCard => (two + "هزار" ); NOrd => (two + "هزار" + "م") | (two + "هزار" +"مین" )}
+
+    }};
+
+ mkNum3 : Str -> Str -> Str -> Str -> Str -> {s : DForm => CardOrd => Str} = 
+    \two, twelve, twenty, twohundred, second->
+    {s = table {
+       unit => table {NCard => two ; NOrd => second};
+       teen => table {NCard => twelve ; NOrd => (twelve + "مین") | (twelve + "م")} ; 
+       ten  => table {NCard => twenty ; NOrd => (twenty + "مین") | (twenty + "م")};
+       hundreds => table {NCard => twohundred ; NOrd => (twohundred +"مین") | (twohundred + "م")};
+       thousands => table {NCard => (two + "هزار" ); NOrd => (two + "هزار" + "م") | (two + "هزار"+ "مین" )}
+
+    }};
+   
+
+
+}
diff --git a/lib/src/persian/ParadigmsPes.gf b/lib/src/persian/ParadigmsPes.gf
new file mode 100644
--- /dev/null
+++ b/lib/src/persian/ParadigmsPes.gf
@@ -0,0 +1,206 @@
+--# -path=.:../abstract:../../prelude:../common
+--
+----1 Pnbu Lexical Paradigms
+
+resource ParadigmsPes = open 
+  Predef, 
+  Prelude, 
+  MorphoPes,
+  CatPes
+  in {
+  
+  flags optimize=all ;
+   coding = utf8;
+
+--2 Parameters 
+
+oper
+  animate : Animacy ;
+  inanimate : Animacy ;
+  singular : Number;
+  plural : Number;
+  
+  singular = Sg ; plural = Pl;
+
+  animate = Animate ; inanimate = Inanimate ; --i
+  mkN01 : Str -> Animacy -> Noun ;
+  mkN01 str ani = mkN str (str ++ "ها") ani;
+  mkN02 : Str -> Animacy -> Noun ;
+  mkN02 str ani = case (last str) of {
+    "ه" => mkN str ((init str) + "گان") ani ;
+    ("ا"|"و") => mkN str (str + "یان") ani ;
+    _ => mkN str (str+"ان") ani
+  };
+{-
+
+--2 Nouns
+
+
+  mkN2 : N -> Prep -> Str -> N2;
+  mkN2 = \n,p,c -> n ** {lock_N2 = <> ; c2 = p.s ; c3 = c } ; 
+  
+  mkN3 : N -> Prep -> Str -> Str-> N3 ;
+  mkN3 = \n,p,q,r -> n ** {lock_N3 = <> ; c2 = p.s ; c3 = q ; c4 = r} ;
+-}  
+-- Compound Nouns  
+
+    mkCmpdNoun1 : Str -> N -> N
+     = \s,noun -> {s =\\ez,n => s ++ noun.s ! ez ! n  ;  animacy = noun.animacy ; definitness = noun.definitness ; lock_N = <>};
+     mkCmpdNoun2 : N -> Str -> N
+     = \noun,s -> {s =\\ez,n =>  noun.s ! ez ! n  ++ s ; animacy = noun.animacy ; definitness =noun.definitness ; lock_N = <>};
+
+
+-- Proper names     
+   mkPN : Str -> Animacy -> PN =
+
+     \str,ani -> {s = str ; animacy = ani ; lock_PN = <>} ;
+
+ 
+-- Personal Pronouns     
+  personalPN : Str -> Number -> PPerson -> Pron =
+     \str,nn,p ->  {s = str ; a = AgPes nn p ; ps = str ; lock_Pron = <>};
+{-
+-- Demonstration Pronouns     
+  demoPN : Str -> Str -> Str -> Quant =
+    \s1,s2,s3 -> let n = makeDemonPronForm s1 s2 s3 in {s = n.s ; a = defaultAgr ; lock_Quant = <>};
+-- Determiner
+-}
+  mkDet = overload {
+  mkDet : Str -> Number -> Det =
+    \s1,n -> makeDet s1 n False ** { lock_Det = <>};
+  mkDet : Str -> Number -> Bool -> Det =
+    \s1,n,b -> makeDet s1 n b ** { lock_Det = <>};
+    };
+ {-   
+-- Intergative pronouns    
+  mkIP : (x1,x2,x3,x4:Str) -> Number -> Gender -> IP =
+   \s1,s2,s3,s4,n,g -> let p = mkIntPronForm s1 s2 s3 s4 in { s = p.s ; n = n ; g = g ;  lock_IP = <>}; 
+
+-- AdN
+  mkAdN : Str -> AdN = \s -> ss s ;
+-}  
+--2 Adjectives
+
+  mkA = overload {
+    mkA : Str-> A 
+      = \str ->   mkAdj str str ** { lock_A = <>} ;
+    mkA : Str-> Str -> A 
+      = \str,adv ->   mkAdj str adv ** { lock_A = <>} ;  
+	mkA : Str -> Str -> A2
+	  = \a,c -> mkAdj a a  ** { c2 = c ; lock_A2 = <>} ;
+    } ;
+
+--2 Verbs
+ mkV : Str -> Str -> V 
+      = \s1, s2 -> mkVerb s1 s2 ** {lock_V = <>} ;
+  -- mkVerb takes both the Infinitive and the present root(root2) and is applied for iregular verbs
+  haveVerb : V = mkHave ; 
+  mkV_1 : Str -> V 
+      = \s -> mkVerb1 s ** {lock_V = <>} ;
+      
+  mkV_2 : Str -> V 
+      = \s -> mkVerb2 s ** {lock_V = <>} ;
+      
+  mkV2 = overload {
+--    mkV2 : Str -> V2 
+--      = \s -> mkV s **  {c2 = {s = [] ; c = VTrans} ; lock_V2 = <>} ;
+    mkV2 : V -> V2 
+      = \v -> v ** {c2 = {s = [] ; ra = [] ; c = VTrans} ; lock_V2 = <>} ;
+    mkV2 : V -> Str -> V2 
+      = \v,ra -> v ** {c2 = {ra = ra ; s = [] ; c = VTrans} ; lock_V2 = <>} ;
+    mkV2 : V -> Str -> Bool -> V2 
+      = \v,p,b -> v ** {c2 = {ra = [] ; s = p ; c = VTrans} ; lock_V2 = <>} ;  
+    } ;
+  
+  mkV3 : V -> Str -> Str -> V3;
+    mkV3 v p q = v ** { c2 = p ; c3 = q ; lock_V3 = <>} ;
+  mkV2V : V -> Str -> Str -> Bool -> V2V ;
+    mkV2V v s1 s2 b = v ** {isAux = b ; c1 = s1 ; c2 = s2 ; lock_V2V = <>} ;
+  
+-- compund verbs
+   compoundV = overload {
+   compoundV : Str -> V -> V = \s,v -> {s = \\vf => s ++ v.s ! vf ; lock_V = <>} ;     
+   compoundV : Str -> V2 -> V = \s,v -> {s = \\vf => s ++ v.s ! vf ; lock_V = <>} ;
+   };
+ {-
+
+----2 Adverbs
+  mkAdv : Str -> Adv = \str -> {s =\\ _ =>  str ; lock_Adv = <>};
+
+----2 Prepositions
+
+  mkPrep : Str -> Prep ;
+    mkPrep str = makePrep str ** {lock_Prep = <>};
+    
+--3 Determiners and quantifiers
+
+--  mkQuant : overload {
+--    mkQuant : Pron -> Quant ;
+--    mkQuant : (no_sg, no_pl, none_sg, : Str) -> Quant ;
+--  } ;
+-}  
+  mkQuant = overload {
+--    mkQuant : Pron -> Quant = \p -> {s = \\_,_,c => p.s!c ;a = p.a ; lock_Quant = <>};
+    mkQuant :  Str -> Str -> Quant = \sg,pl -> makeQuant sg pl;
+  } ;
+{-
+--2 Conjunctions
+  mkConj : overload {
+    mkConj : Str -> Conj ;                  -- and (plural agreement)
+    mkConj : Str -> Number -> Conj ;        -- or (agrement number given as argument)
+    mkConj : Str -> Str -> Conj ;           -- both ... and (plural)
+    mkConj : Str -> Str -> Number -> Conj ; -- either ... or (agrement number given as argument)
+  } ;
+ mkConj = overload {
+    mkConj : Str -> Conj = \y -> mk2Conj [] y plural ;
+    mkConj : Str -> Number -> Conj = \y,n -> mk2Conj [] y n ;
+    mkConj : Str -> Str -> Conj = \x,y -> mk2Conj x y plural ;
+    mkConj : Str -> Str -> Number -> Conj = mk2Conj ;
+  } ;
+
+  mk2Conj : Str -> Str -> Number -> Conj = \x,y,n -> 
+    lin Conj (sd2 x y ** {n = n}) ;  
+
+--  mkV0  : V -> V0 ;
+--  mkVS  : V -> VS ;
+--  mkV2S : V -> Prep -> V2S ;
+  mkVV  : V -> VV = \v ->  lin VV (v ** {isAux = False});
+    
+
+--  mkV2V : V -> Prep -> Prep -> V2V ;
+--  mkVA  : V -> VA ;
+--  mkV2A : V -> Prep -> V2A ;
+--  mkVQ  : V -> VQ ;
+--  mkV2Q : V -> Prep -> V2Q ;
+--
+--  mkAS  : A -> AS ;
+--  mkA2S : A -> Prep -> A2S ;
+--  mkAV  : A -> AV ;
+--  mkA2V : A -> Prep -> A2V ;
+--  mkA2V a p = a ** {c2 = p.s } ; 
+--
+---- Notice: Categories $V0, AS, A2S, AV, A2V$ are just $A$.
+---- $V0$ is just $V$; the second argument is treated as adverb.
+--
+--  V0 : Type ;
+--  AS, A2S, AV, A2V : Type ;
+--
+----.
+----2 Definitions of paradigms
+----
+---- The definitions should not bother the user of the API. So they are
+---- hidden from the document.
+--
+--  Gender = MorphoHin.Gender ; 
+--  Number = MorphoHin.Number ;
+--  Case = MorphoHin.Case ;
+--  human = Masc ; 
+--  nonhuman = Neutr ;
+--  masculine = Masc ;
+--  feminine = Fem ;
+--  singular = Sg ;
+--  plural = Pl ;
+--  nominative = Nom ;
+--  genitive = Gen ;
+-}  
+}
diff --git a/lib/src/persian/PhrasePes.gf b/lib/src/persian/PhrasePes.gf
new file mode 100644
--- /dev/null
+++ b/lib/src/persian/PhrasePes.gf
@@ -0,0 +1,27 @@
+concrete PhrasePes of Phrase = CatPes ** open Prelude, ResPes in {
+
+  lin
+    PhrUtt pconj utt voc = {s = pconj.s ++ utt.s ++ voc.s} ;
+
+    UttS s = s ;
+    UttQS qs = {s = qs.s ! QDir} ;
+    UttImpSg pol imp = {s = pol.s ++ imp.s ! contrNeg True pol.p ! ImpF Sg False} ;
+    UttImpPl pol imp = {s = pol.s ++ imp.s ! contrNeg True pol.p ! ImpF Pl False} ;
+    UttImpPol pol imp = {s = pol.s ++ imp.s ! contrNeg True pol.p ! ImpF Sg True} ;
+
+    UttIP ip = {s = ip.s } ; --- Acc also
+    UttIAdv iadv = iadv ;
+    UttNP np = {s = np.s ! NPC bEzafa} ;
+    UttVP vp = {s = vp.ad  ++ vp.comp ! (AgPes Sg PPers3 )  ++ vp.obj.s ++ vp.inf ++ vp.vComp ! (AgPes Sg PPers3) ++ vp.embComp} ;
+    UttAdv adv = {s = adv.s } ;
+	UttCN cn = {s = cn.s ! bEzafa ! Sg };
+    UttCard n = n ;
+    UttAP ap = {s = ap.s ! bEzafa} ;
+
+    NoPConj = {s = []} ;
+    PConjConj conj = {s = conj.s2} ; ---
+
+    NoVoc = {s = []} ;
+    VocNP np = {s = np.s ! NPC bEzafa} ;
+
+}
diff --git a/lib/src/persian/QuestionPes.gf b/lib/src/persian/QuestionPes.gf
new file mode 100644
--- /dev/null
+++ b/lib/src/persian/QuestionPes.gf
@@ -0,0 +1,65 @@
+concrete QuestionPes of Question = CatPes ** open ResPes, Prelude in {
+  flags optimize=all_subs ;
+    coding = utf8;
+
+  lin
+
+    QuestCl cl = {
+      s = \\t,p,qf => case qf of { 
+	              QDir => cl.s ! t ! p ! OQuest;
+                      QIndir =>  cl.s ! t! p ! ODir
+					  }
+				};	  
+
+    QuestVP qp vp = 
+       let cl = mkSClause ("") (AgPes qp.n PPers3) vp;
+--           qp1 = qp.s;
+--           qp2 = qp.s ! Obl ++ "nE"
+          in { s = \\t,p,o =>  qp.s ++ cl.s ! t ! p ! ODir } ;
+--					 _         => qp1 ++ cl.s ! t ! p ! ODir
+--					 }
+					 
+    QuestSlash ip slash = {
+      s = \\t,p,o =>  slash.c2.s ++ ip.s ++ slash.c2.ra ++ slash.s ! t ! p ! ODir; -- order of whome and john needs to be changed
+            
+        };
+
+    QuestIAdv iadv cl = { 
+             s = \\t,p,_ => iadv.s ++ cl.s ! t ! p ! ODir;
+                      	};
+
+    QuestIComp icomp np = 
+     let cl = mkSClause (np.s ! NPC bEzafa ++ icomp.s) np.a (predAux auxBe); 
+	   in {
+       s = \\t,p,qf => case qf of { 
+	      QDir =>   cl.s ! t ! p ! ODir;
+          QIndir => cl.s ! t! p ! ODir
+		  }
+		};
+
+    PrepIP p ip = {s = p.s ++ ip.s } ;
+
+    AdvIP ip adv = {
+      s =  ip.s ++ adv.s  ;
+      n = ip.n;
+      } ;
+ 
+    IdetCN idet cn = {
+      s = case idet.isNum of {False => idet.s ++ cn.s ! bEzafa ! idet.n ; True => idet.s ++ cn.s ! bEzafa ! Sg} ; 
+	  n = idet.n;
+      } ;
+
+    IdetIP idet = idet ;
+
+    IdetQuant iqant num = {
+      s = iqant.s  ++ num.s ; 
+      n = num.n ;
+      isNum = True
+      } ;
+
+    CompIAdv a = a ;
+    CompIP p = ss p.s ;
+    AdvIAdv i a = {s =  a.s ++ i.s } ;
+  
+
+}
diff --git a/lib/src/persian/README b/lib/src/persian/README
new file mode 100644
--- /dev/null
+++ b/lib/src/persian/README
@@ -0,0 +1,9 @@
+Some of the sources are transliterated, in
+
+ ./src
+
+Before compilation, do
+
+  gf -s <translit.gfs
+
+to get unicode.
diff --git a/lib/src/persian/RelativePes.gf b/lib/src/persian/RelativePes.gf
new file mode 100644
--- /dev/null
+++ b/lib/src/persian/RelativePes.gf
@@ -0,0 +1,54 @@
+concrete RelativePes of Relative = CatPes ** open ResPes in {
+
+  flags optimize=all_subs ;
+  coding = utf8;
+
+  lin
+
+    RelCl cl = {
+      s = \\t,p,o,agr =>  "که" ++ cl.s ! t ! p ! o ; 
+	};				    
+-- RelVP and RelSlash slows the linking process a lot this is why it is commented for test purposes
+
+    RelVP rp vp = {
+      s = \\t,p,o,ag => 
+        let 
+          agr = case rp.a of {
+            RNoAg => ag ;
+            RAg a => a
+            } ;
+		 cl = mkSClause (rp.s) agr vp;
+		  
+--          cl = case t of {
+--                VPImpPast =>  mkSClause (rp.s ! (giveNumber agr) ! Obl) agr vp;
+--				_         =>  mkSClause (rp.s ! (giveNumber agr) ! Dir) agr vp
+--				};
+        in
+        cl.s ! t ! p ! ODir ;
+--      c = Dir
+      } ;
+      
+
+---- Pied piping: "ت wهعه we رe لْْکنگ". Stranding and empty
+---- relative are defined in $ExtraHin.gf$ ("تهت we رe لْْکنگ ت", 
+---- "we رe لْْکنگ ت").
+--
+    RelSlash rp slash = {
+      s = \\t,p,o,agr => rp.s ++ slash.c2.s ++  slash.s ! t ! p ! o  ;--case t of {
+--	       VPImpPast => rp.s !  (giveNumber agr) Obl ++ slash.c2.s ++  slash.s ! t ! p ! o ;
+--		   _         => rp.s !  (giveNumber agr) Dir ++ slash.c2.s ++  slash.s ! t ! p ! o 
+--		   };
+--      c = Dir
+      } ;
+
+    FunRP p np rp = {
+      s = np.s ! NPC enClic ++ rp.s ++  p.s ++ getPron np.animacy (fromAgr np.a).n   ; -- need to make a special form of relative np by addY
+      a = RAg np.a
+      } ;
+
+    IdRP = {
+      s = "که" ;
+      a = RNoAg
+      } ;
+ 
+}
diff --git a/lib/src/persian/ResPes.gf b/lib/src/persian/ResPes.gf
new file mode 100644
--- /dev/null
+++ b/lib/src/persian/ResPes.gf
@@ -0,0 +1,863 @@
+--# -path=.:../abstract:../common:../../prelude
+--
+--1 Pnbu auxiliary operations.
+--
+-- This module contains operations that are needed to make the
+-- resource syntax work. 
+
+resource ResPes =  ParamX **  open Prelude,Predef in {
+
+  flags optimize=all ;
+  coding = utf8;
+
+  param
+
+    Order = ODir | OQuest ;
+
+    Animacy = Animate | Inanimate ;
+    PMood = Del | Imper | PCond ;
+    PPerson = PPers1
+	    | PPers2
+	    | PPers3;
+    
+    VerbForm1 = VF Polarity VTense2 PPerson Number
+		| Vvform AgrPes
+		| Imp Polarity Number
+		| Inf 
+		| Root1 | Root2 ;
+    VTense2 = PPresent2 PrAspect | PPast2 PstAspect | PFut2 FtAspect| Infr_Past2 InfrAspect;
+    PrAspect = PrPerf | PrImperf ;
+    PstAspect = PstPerf | PstImperf | PstAorist ;
+    FtAspect =  FtAorist ; -- just keep FtAorist
+    InfrAspect = InfrPerf | InfrImperf ;
+ 
+    AgrPes = AgPes Number PPerson;
+    Ezafa = bEzafa | aEzafa | enClic;
+    NPCase = NPC Ezafa ;
+    CardOrd = NCard | NOrd ;
+    RAgr = RNoAg | RAg AgrPes ;
+ --   RCase = RC Number Case ;
+ param
+      CPolarity = 
+       CPos
+       |CNeg Bool;  -- contracted or not
+      
+  oper
+
+    Noun = {s : Ezafa => Number => Str ; animacy : Animacy ; definitness : Bool } ;
+
+    Verb = {s : VerbForm1 => Str} ;
+    
+    Compl : Type = {s : Str ; ra : Str ; c : VType} ;
+    
+    Adjective = {s:Ezafa => Str ; adv : Str} ;
+    
+    NP : Type = {s : NPCase => Str ; a : AgrPes ; animacy : Animacy } ;
+    Determiner = {s : Str ; n :Number ; isNum : Bool ; fromPron : Bool} ;
+    VPHSlash = VPH ** {c2 : Compl} ;
+    
+  oper
+    contrNeg : Bool -> Polarity -> CPolarity = \b,p -> case p of {
+    Pos => CPos ;
+    Neg => CNeg b
+    } ;  
+    
+ -----------------------
+ --- Verb Phrase
+ -----------------------
+ 
+oper 
+ 
+ VPH : Type = {
+      s    : VPHForm => {inf : Str} ;
+      obj  : {s : Str ; a : AgrPes} ; 
+      subj : VType ;
+      comp : AgrPes => Str;
+      vComp : AgrPes => Str;
+      inf : Str;
+      ad  : Str;
+      embComp : Str ;
+      wish : Bool ;
+      } ;
+ param      
+  
+    VPHForm = 
+       VPTense Polarity VPPTense AgrPes -- 9 * 12
+--     | VPReq
+       | VPImp Polarity Number
+--     | VPReqFut
+     | VVForm AgrPes
+     | VPStem1
+     | VPStem2
+     ;
+    
+    VPHTense = 
+       VPres  -- impf hum       nahim    "I گْ"
+     | VPast  -- impf Ta        nahim    "I weنت"
+     | VFut      -- fut            na/nahim "I سهلل گْ"
+     | VPerfPres -- perf hum       na/nahim "I هوe گْنe"
+     | VPerfPast -- perf Ta        na/nahim "I هد گْنe"          
+     | VPerfFut
+     | VCondSimul
+     | VCondAnter -- subj           na       "I می گْ"
+     ;
+ 
+
+    VType = VIntrans | VTrans | VTransPost ;
+     
+ VPPTense = 
+	  VPPres Anteriority 
+	  |VPPast Anteriority 
+	  |VPFutr Anteriority
+	  |VPCond Anteriority ;
+oper
+
+  predV : Verb -> VPH = \verb -> {
+      s = \\vh => 
+	   case vh of {
+	     VPTense pol (VPPres Simul) (AgPes n p) => { inf = verb.s ! VF pol (PPresent2 PrImperf) p n } ;
+	     VPTense pol (VPPres Anter) (AgPes n p) => { inf = verb.s ! VF pol (PPresent2 PrPerf) p n } ;
+	     VPTense pol (VPPast Simul) (AgPes n p) => { inf =verb.s ! VF pol (PPast2 PstAorist) p n } ;
+	     VPTense pol (VPPast Anter) (AgPes n p) => { inf =verb.s ! VF pol (PPast2 PstPerf) p n } ;
+	     VPTense pol (VPFutr Simul) (AgPes n p) =>  { inf =  verb.s ! VF pol (PFut2 FtAorist) p n } ;
+	     VPTense pol (VPFutr Anter) (AgPes n p) =>  { inf =  verb.s ! VF pol (PPresent2 PrPerf) p n } ; -- this is to be confirmed
+	     VPTense pol (VPCond Simul) (AgPes n p) => { inf = verb.s ! VF pol (PPast2 PstImperf)  p n } ;
+	     VPTense pol (VPCond Anter) (AgPes n p) => { inf = verb.s ! VF pol (PPast2 PstImperf)  p n } ; 
+	     VVForm (AgPes n p) => {inf = verb.s ! Vvform (AgPes n p)} ;
+	     VPStem1 => { inf =  verb.s ! Root1};
+	     VPStem2 => { inf =  verb.s ! Root2} ;
+	     VPImp pol n => { inf = verb.s ! Imp pol n} 
+	     
+		 };
+	    obj = {s = [] ; a = defaultAgrPes} ;
+		subj = VIntrans ;
+		inf = verb.s ! Inf;
+		ad = [];
+        embComp = [];
+	wish = False ;
+        vComp = \\_ => [] ;
+        comp = \\_ => []
+      } ;
+    
+   predVc : (Verb ** {c2,c1 : Str}) -> VPHSlash = \verb -> 
+    predV verb ** {c2 = {s = verb.c1 ; ra = [] ; c = VTrans} } ; 
+----------------------
+-- Verb Phrase complimantation
+------------------------
+{-
+  insertObject : NP -> VPHSlash -> VPH = \np,vps -> {
+      s = vps.s ;
+--      obj =  {s = variants { vps.obj.s  ++ np.s ++ vps.c2.s ; vps.obj.s  ++ np.s  }  ; a = np.a} ;
+      obj =  {s = case vps.c2.s of {
+                 "را" =>  np.s ++ vps.c2.s  ++ vps.obj.s;
+		 _    =>  vps.c2.s ++ np.s ++ vps.obj.s 
+	     };	 
+		 a = np.a} ;	    
+      subj = vps.c2.c ;
+	  inf = vps.inf;
+	  ad = vps.ad;
+      embComp = vps.embComp;
+ --     wish = vps.wish ;
+      comp = vps.comp
+      } ;
+-}	
+   insertObjc : (AgrPes => Str) -> VPHSlash -> VPHSlash = \obj,vp -> 
+    insertObj obj vp ** {c2 = vp.c2} ;
+    insertVVc : (AgrPes => Str) -> VPHSlash -> VPHSlash = \obj,vp -> 
+    insertVV obj vp ** {c2 = vp.c2} ;
+    
+ {-
+ insertSubj : PPerson -> Str -> Str = \p,s -> 
+      case p of { Pers1 => s ++ "wN" ; _ => s ++ "E"};
+  -}   
+    insertObj : (AgrPes => Str) -> VPH -> VPH = \obj1,vp -> {
+     s = vp.s ;
+     obj = vp.obj ;
+     subj = vp.subj ;
+	 inf = vp.inf;
+	 ad = vp.ad;
+     embComp = vp.embComp;
+     wish = vp.wish ;
+     vComp = vp.vComp ;
+     comp = \\a =>    vp.comp ! a  ++ obj1 ! a 
+     } ;
+     
+  insertVV : (AgrPes => Str) -> VPH -> VPH = \obj1,vp -> {
+     s = vp.s ;
+--     obj = vp.obj ;
+     obj = vp.obj ;
+     subj = vp.subj ;
+	 inf = vp.inf;
+	 ad = vp.ad;
+     embComp = vp.embComp; 
+     wish = True ;
+     vComp = \\a => vp.comp ! a ++ obj1 ! a ;
+     comp = vp.comp  
+     } ;
+     
+    insertObj2 : (Str) -> VPH -> VPH = \obj1,vp -> {
+     s = vp.s;
+     obj = vp.obj ;
+     subj = vp.subj ;
+	 inf = vp.inf;
+	 ad = vp.ad;
+     embComp = vp.embComp ++ obj1;
+     wish = vp.wish ;
+     vComp = vp.vComp ;
+     comp = \\a =>    vp.comp ! a --  ++ obj1
+     
+     } ;
+     insertObj3 : (Str) -> VPH -> VPH = \obj1,vp -> {
+     s = vp.s;
+     obj = {s = obj1 ++ vp.obj.s ; a = vp.obj.a };
+     subj = vp.subj ;
+	 inf = vp.inf;
+	 ad = vp.ad;
+     embComp = vp.embComp;
+     wish = vp.wish ;
+     vComp = vp.vComp ;
+     comp = vp.comp
+     
+     } ;
+	 
+    
+    insertObjc2 : Str -> VPHSlash -> VPHSlash = \obj,vp -> 
+    insertObj2 obj vp ** {c2 = vp.c2} ;
+    insertObjc3 : Str -> VPHSlash -> VPHSlash = \obj,vp -> 
+    insertObj3 obj vp ** {c2 = vp.c2} ;
+{-
+	infVP : Bool -> VPH -> Agr -> Str = \isAux,vp,a ->
+     vp.obj.s ++ vp.inf ++ vp.comp ! a ;
+ -}    
+    infVV : Bool -> VPH -> {s : AgrPes => Str} = \isAux,vp -> 
+	                       {s = \\agr => case agr of {
+		                  AgPes n p => (vp.comp ! (toAgr n p)) ++ (vp.s ! VVForm (AgPes n p)).inf }};
+   
+    insertObjPre : (AgrPes => Str) -> VPHSlash -> VPH = \obj,vp -> {
+     s = vp.s ;
+     obj = vp.obj ;
+     inf = vp.inf ;
+     subj = vp.subj ;
+	 ad = vp.ad ;
+     embComp = vp.embComp;
+     wish = vp.wish ;
+     vComp = vp.vComp ; 
+    -- comp = \\a => case vp.c2.s of {"را" =>   obj ! a  ++ vp.c2.s ++ vp.comp ! a ; _ => vp.c2.s ++ obj ! a ++ vp.comp ! a}  -- gives linking error
+    comp = \\a =>  vp.c2.s ++ obj ! a  ++ vp.c2.ra ++ vp.comp ! a 
+    } ;
+
+    insertAdV : Str -> VPH -> VPH = \ad,vp -> {
+     s = vp.s ;
+     obj = vp.obj ;
+     inf = vp.inf ;
+	 subj = vp.subj;
+     ad  = vp.ad ++ ad ;
+     embComp = vp.embComp;
+     wish = vp.wish ;
+     vComp = vp.vComp ;
+     comp = vp.comp
+    } ;
+  
+	conjThat : Str = "که" ;
+ {-   checkPron : NP -> Str -> Str = \np,str ->  case (np.isPron) of {
+                                True => np.s ! NPC Obl;
+                                False => np.s ! NPC Obl ++ str} ;
+		
+    insertEmbCompl : VPH -> Str -> VPH = \vp,emb -> {
+     s = vp.s ;
+     obj = vp.obj ;
+     inf = vp.inf ;
+     subj = vp.subj;
+     ad  = vp.ad;
+     embComp = vp.embComp ++ emb;
+     wish = vp.wish ;
+     comp = vp.comp
+    } ;
+    
+    insertTrans : VPH -> VType -> VPH = \vp,vtype -> {
+     s = vp.s ;
+     obj = vp.obj ;
+     inf = vp.inf ;
+     subj = case vtype of {VIntrans => VTransPost ; VTrans => VTrans ; _ => vtype} ; -- still some problem not working properly
+     ad  = vp.ad;
+     embComp = vp.embComp ;
+     wish = vp.wish ;
+     comp = vp.comp
+    } ;
+-}
+---------------------------
+--- Clauses
+---------------------------
+Clause : Type = {s : VPHTense => Polarity => Order => Str} ;
+mkClause : NP -> VPH -> Clause = \np,vp -> {
+      s = \\vt,b,ord => 
+        let 
+          subj = np.s ! NPC bEzafa;
+          agr  = np.a ;
+	  n    = (fromAgr agr).n;
+	  p    = (fromAgr agr).p;
+          vps  = case <b,vt> of {
+
+		    <Pos,VPres>  => vp.s ! VPTense Pos (VPPres Simul) (AgPes n p) ;
+		    <Neg,VPres>  => vp.s ! VPTense Neg (VPPres Simul) (AgPes n p) ;
+		    <Pos,VPerfPres> => vp.s ! VPTense Pos (VPPres Anter) (AgPes n p) ;
+		    <Neg,VPerfPres> => vp.s ! VPTense Neg (VPPres Anter) (AgPes n p) ;
+		    <Pos,VPast>  => vp.s !  VPTense Pos (VPPast Simul) (AgPes n p) ;
+		    <Neg,VPast>  => vp.s !  VPTense Neg (VPPast Simul) (AgPes n p) ;
+		    <Pos,VPerfPast> => vp.s !  VPTense Pos (VPPast Anter) (AgPes n p) ;
+		    <Pos,VFut>  => case vp.wish of
+		                   {True => vp.s ! VPTense Pos (VPPres Simul) (AgPes n p) ;
+				    False => vp.s ! VPTense Pos (VPFutr Simul) (AgPes n p) };
+		    <Pos,VPerfFut> => case vp.wish of
+		                   {True => vp.s ! VPTense Pos (VPPres Anter) (AgPes n p) ;
+				    False => vp.s ! VPTense Pos (VPFutr Anter) (AgPes n p) };  -- verb form need to be confirmed
+		    <Pos,VCondSimul> => vp.s ! VPTense Pos (VPCond Simul) (AgPes n p) ;
+		    <Pos,VCondAnter> => vp.s ! VPTense Pos (VPCond Anter) (AgPes n p); -- verb form to be confirmed
+		    <Neg,VPerfPast> => vp.s !  VPTense Neg (VPPast Anter) (AgPes n p) ;
+		    <Neg,VFut>  => case vp.wish of
+		                   {True => vp.s ! VPTense Neg (VPPres Simul) (AgPes n p) ;
+				    False => vp.s ! VPTense Neg (VPFutr Simul) (AgPes n p) };
+		    <Neg,VPerfFut> => case vp.wish of
+		                   {True => vp.s ! VPTense Neg (VPPres Anter) (AgPes n p) ;
+				    False => vp.s ! VPTense Neg (VPFutr Anter) (AgPes n p) };  -- verb form need to be confirmed
+		    <Neg,VCondSimul> => vp.s ! VPTense Neg (VPCond Simul) (AgPes n p) ;
+		    <Neg,VCondAnter> => vp.s ! VPTense Neg (VPCond Anter) (AgPes n p) -- verb form to be confirmed
+		    	    
+		      };
+					
+		    
+          quest =
+            case ord of
+              { ODir => [];
+                OQuest => "آیا" }; 
+	 
+           
+            
+        in
+		
+		quest ++ subj ++ vp.ad ++ vp.comp ! np.a ++ vp.obj.s ++ vps.inf ++ vp.vComp ! np.a ++ vp.embComp
+
+};
+
+--Clause : Type = {s : VPHTense => Polarity => Order => Str} ;
+mkSClause : Str -> AgrPes -> VPH -> Clause = \subj,agr,vp -> {
+      s = \\vt,b,ord => 
+        let 
+	  n    = (fromAgr agr).n;
+	  p    = (fromAgr agr).p;
+          vps  = case <b,vt> of {
+
+		    <Pos,VPres>  => vp.s ! VPTense Pos (VPPres Simul) (AgPes n p) ;
+		    <Neg,VPres>  => vp.s ! VPTense Neg (VPPres Simul) (AgPes n p) ;
+		    <Pos,VPerfPres> => vp.s ! VPTense Pos (VPPres Anter) (AgPes n p) ;
+		    <Neg,VPerfPres> => vp.s ! VPTense Neg (VPPres Anter) (AgPes n p) ;
+		    <Pos,VPast>  => vp.s !  VPTense Pos (VPPast Simul) (AgPes n p) ;
+		    <Neg,VPast>  => vp.s !  VPTense Neg (VPPast Simul) (AgPes n p) ;
+		    <Pos,VPerfPast> => vp.s !  VPTense Pos (VPPast Anter) (AgPes n p) ;
+		    <Pos,VFut>  => case vp.wish of
+		                   {True => vp.s ! VPTense Pos (VPPres Simul) (AgPes n p) ;
+				    False => vp.s ! VPTense Pos (VPFutr Simul) (AgPes n p) };
+		    <Pos,VPerfFut> => case vp.wish of
+		                   {True => vp.s ! VPTense Pos (VPPres Anter) (AgPes n p) ;
+				    False => vp.s ! VPTense Pos (VPFutr Anter) (AgPes n p) };  -- verb form need to be confirmed
+		    <Pos,VCondSimul> => vp.s ! VPTense Pos (VPCond Simul) (AgPes n p) ;
+		    <Pos,VCondAnter> => vp.s ! VPTense Pos (VPCond Anter) (AgPes n p); -- verb form to be confirmed
+		    <Neg,VPerfPast> => vp.s !  VPTense Neg (VPPast Anter) (AgPes n p) ;
+		    <Neg,VFut>  => case vp.wish of
+		                   {True => vp.s ! VPTense Neg (VPPres Simul) (AgPes n p) ;
+				    False => vp.s ! VPTense Neg (VPFutr Simul) (AgPes n p) };
+		    <Neg,VPerfFut> => case vp.wish of
+		                   {True => vp.s ! VPTense Neg (VPPres Anter) (AgPes n p) ;
+				    False => vp.s ! VPTense Neg (VPFutr Anter) (AgPes n p) };  -- verb form need to be confirmed
+		    <Neg,VCondSimul> => vp.s ! VPTense Neg (VPCond Simul) (AgPes n p) ;
+		    <Neg,VCondAnter> => vp.s ! VPTense Neg (VPCond Anter) (AgPes n p) -- verb form to be confirmed
+		    	    
+		      };
+					
+		    
+          quest =
+            case ord of
+              { ODir => [];
+                OQuest => "آیا" }; 
+	 
+           
+            
+        in
+		
+		quest ++ subj ++ vp.ad ++ vp.comp ! agr ++ vp.obj.s ++ vps.inf ++ vp.vComp ! agr ++ vp.embComp
+
+};
+	 
+  predAux : Aux -> VPH = \verb -> {
+     s = \\vh => 
+       
+	     case vh of {
+	     VPTense pol (VPPres Simul) (AgPes n p) => { inf = verb.inf ! AX pol (AuxPresent PrImperf) p n } ;
+	     VPTense pol (VPPres Anter) (AgPes n p) => { inf = verb.inf ! AX pol (AuxPresent PrPerf) p n } ;
+	     VPTense pol (VPPast Simul) (AgPes n p) => { inf = verb.inf ! AX pol (AuxPast PstAorist) p n } ;
+	     VPTense pol (VPPast Anter) (AgPes n p) => { inf = verb.inf ! AX pol (AuxPresent PrPerf) p n } ;
+	     VPTense pol (VPFutr Simul) (AgPes n p) =>  { inf =  verb.inf ! AX pol (AuxFut FtAorist) p n } ;
+	     VPTense pol (VPFutr Anter) (AgPes n p) =>  { inf =  verb.inf ! AX pol (AuxFut FtAorist) p n } ; -- this is to be confirmed
+	     VPTense pol (VPCond Simul) (AgPes n p) => { inf = verb.inf ! AX pol (AuxFut FtAorist)  p n } ;
+	     VPTense pol (VPCond Anter) (AgPes n p) => { inf = verb.inf ! AX pol (AuxPast PstImperf)  p n } ;
+	     VVForm  (AgPes n p) => {inf = ""} ; -- to be checked
+	     VPStem1 => { inf =  ""};
+	     VPStem2 => { inf =  "بود"} ;
+	     VPImp _ _ => { inf = ""} -- need to be confirmed 
+--	     _ => { inf = ""} 
+		 };
+	    obj = {s = [] ; a = defaultAgrPes} ;
+		subj = VIntrans ;
+		inf = "بودن";
+		ad = [];
+        embComp = [];
+	wish = False ;
+        vComp = \\_ => [] ;
+        comp = \\_ => []
+      } ;
+
+
+  Aux = {
+      inf :  AuxForm => Str ;
+    } ;
+
+  auxBe : Aux = {
+    inf  =  table {
+
+     AX pol tense person number   => (mkAux pol tense person number).s 
+    } ;
+    } ;
+    
+  mkAux : Polarity -> AuxTense -> PPerson -> Number -> {s:Str}= \pol,t,p,n ->
+  {s =
+   let bodh = "بوده" ;
+       nbodh = "نبوده" ;
+       hast = "هست" ;
+       nhast = "نیست" ;
+       bod  = "بود" ;
+       khah = "خواه" ;
+       mekhah = "می" ++ khah ;
+       bash = "باش" ;
+       nbod  = "نبود" ;
+       nkhah = "نخواه" ;
+       nmekhah = "نمی" ++ khah ;
+       nbash = "نباش"
+    in  
+  case <pol,t,p,n> of {
+    <Pos,AuxPresent PrPerf,PPers1,Sg> => bodh ++ "ام" ;
+    <Pos,AuxPresent PrPerf,PPers1,Pl> => bodh ++ "ایم" ;
+    <Pos,AuxPresent PrPerf,PPers2,Sg> => bodh ++ "ای" ;
+    <Pos,AuxPresent PrPerf,PPers2,Pl> => bodh ++ "اید" ;
+    <Pos,AuxPresent PrPerf,PPers3,Sg> => bodh ++ "است" ;
+    <Pos,AuxPresent PrPerf,PPers3,Pl> => bodh ++ "اند" ;
+    
+    <Pos,AuxPresent PrImperf,PPers1,Sg> =>  hast + "م" ;
+    <Pos,AuxPresent PrImperf,PPers1,Pl> => hast + "یم" ;
+    <Pos,AuxPresent PrImperf,PPers2,Sg> => hast + "ی" ;
+    <Pos,AuxPresent PrImperf,PPers2,Pl> => hast + "ید" ;
+    <Pos,AuxPresent PrImperf,PPers3,Sg> => "است" ;
+    <Pos,AuxPresent PrImperf,PPers3,Pl> => hast + "ند" ;
+    
+    
+    <Pos,AuxPast PstPerf,PPers1,Sg> => "";
+    <Pos,AuxPast PstPerf,PPers1,Pl> => "" ;
+    <Pos,AuxPast PstPerf,PPers2,Sg> => "" ;
+    <Pos,AuxPast PstPerf,PPers2,Pl> => "" ;
+    <Pos,AuxPast PstPerf,PPers3,Sg> => "" ;
+    <Pos,AuxPast PstPerf,PPers3,Pl> => "" ;
+    
+    <Pos,AuxPast PstImperf,PPers1,Sg> => "می" ++ bod + "م" ;
+    <Pos,AuxPast PstImperf,PPers1,Pl> => "می" ++ bod + "یم" ;
+    <Pos,AuxPast PstImperf,PPers2,Sg> => "می" ++ bod + "ی";
+    <Pos,AuxPast PstImperf,PPers2,Pl> => "می" ++ bod + "ید" ;
+    <Pos,AuxPast PstImperf,PPers3,Sg> => "می" ++ bod ;
+    <Pos,AuxPast PstImperf,PPers3,Pl> => "می" ++ bod + "ند" ;
+    
+    <Pos,AuxPast PstAorist,PPers1,Sg> => bod + "م" ;
+    <Pos,AuxPast PstAorist,PPers1,Pl> => bod + "یم" ;
+    <Pos,AuxPast PstAorist,PPers2,Sg> => bod  + "ی";
+    <Pos,AuxPast PstAorist,PPers2,Pl> => bod + "ید" ;
+    <Pos,AuxPast PstAorist,PPers3,Sg> => bod ;
+    <Pos,AuxPast PstAorist,PPers3,Pl> => bod + "ند" ;
+    
+   {- 
+    <Pos,AuxFut FtImperf,PPers1,Sg> => mekhah + "م"   ++  bash + "م" ;
+    <Pos,AuxFut FtImperf,PPers1,Pl> => mekhah + "یم" ++  bash + "یم" ;
+    <Pos,AuxFut FtImperf,PPers2,Sg> => mekhah + "ی" ++  bash + "ی" ;
+    <Pos,AuxFut FtImperf,PPers2,Pl> => mekhah + "ید" ++  bash + "ید" ;
+    <Pos,AuxFut FtImperf,PPers3,Sg> => mekhah + "د" ++  bash + "د" ;
+    <Pos,AuxFut FtImperf,PPers3,Pl> => mekhah + "ند" ++  bash + "ند" ;
+    -}
+    <Pos,AuxFut FtAorist,PPers1,Sg> => khah + "م"  ++ bod  ;
+    <Pos,AuxFut FtAorist,PPers1,Pl> => khah + "یم"  ++ bod ;
+    <Pos,AuxFut Ftorist,PPers2,Sg> => khah + "ی"  ++ bod ;
+    <Pos,AuxFut FtAorist,PPers2,Pl> => khah + "ید"  ++ bod ;
+    <Pos,AuxFut FtAorist,PPers3,Sg> => khah + "د"  ++ bod ;
+    <Pos,AuxFut FtAorist,PPers3,Pl> => khah + "ند"  ++ bod ;
+    
+  -- nagatives
+  
+  <Neg,AuxPresent PrPerf,PPers1,Sg> => nbodh ++ "ام" ;
+    <Neg,AuxPresent PrPerf,PPers1,Pl> => nbodh ++ "ایم" ;
+    <Neg,AuxPresent PrPerf,PPers2,Sg> => nbodh ++ "ای" ;
+    <Neg,AuxPresent PrPerf,PPers2,Pl> => nbodh ++ "اید" ;
+    <Neg,AuxPresent PrPerf,PPers3,Sg> => nbodh ++ "است" ;
+    <Neg,AuxPresent PrPerf,PPers3,Pl> => nbodh ++ "اند" ;
+    
+    <Neg,AuxPresent PrImperf,PPers1,Sg> =>  nhast + "م" ;
+    <Neg,AuxPresent PrImperf,PPers1,Pl> => nhast + "یم" ;
+    <Neg,AuxPresent PrImperf,PPers2,Sg> => nhast + "ی" ;
+    <Neg,AuxPresent PrImperf,PPers2,Pl> => nhast + "ید" ;
+    <Neg,AuxPresent PrImperf,PPers3,Sg> => "نیست" ;
+    <Neg,AuxPresent PrImperf,PPers3,Pl> => nhast + "ند" ;
+    
+    
+    <Neg,AuxPast PstPerf,PPers1,Sg> => "";
+    <Neg,AuxPast PstPerf,PPers1,Pl> => "" ;
+    <Neg,AuxPast PstPerf,PPers2,Sg> => "" ;
+    <Neg,AuxPast PstPerf,PPers2,Pl> => "" ;
+    <Neg,AuxPast PstPerf,PPers3,Sg> => "" ;
+    <Neg,AuxPast PstPerf,PPers3,Pl> => "" ;
+    
+    <Neg,AuxPast PstImperf,PPers1,Sg> => "نمی" ++ bod + "م" ;
+    <Neg,AuxPast PstImperf,PPers1,Pl> => "نمی" ++ bod + "یم" ;
+    <Neg,AuxPast PstImperf,PPers2,Sg> => "نمی" ++ bod + "ی";
+    <Neg,AuxPast PstImperf,PPers2,Pl> => "نمی" ++ bod + "ید" ;
+    <Neg,AuxPast PstImperf,PPers3,Sg> => "نمی" ++ bod ;
+    <Neg,AuxPast PstImperf,PPers3,Pl> => "نمی" ++ bod + "ند" ;
+    
+    <Neg,AuxPast PstAorist,PPers1,Sg> => nbod + "م" ;
+    <Neg,AuxPast PstAorist,PPers1,Pl> => nbod + "یم" ;
+    <Neg,AuxPast PstAorist,PPers2,Sg> => nbod  + "ی";
+    <Neg,AuxPast PstAorist,PPers2,Pl> => nbod + "ید" ;
+    <Neg,AuxPast PstAorist,PPers3,Sg> => nbod ;
+    <Neg,AuxPast PstAorist,PPers3,Pl> => nbod + "ند" ;
+    
+   {- 
+    <Neg,AuxFut FtImperf,PPers1,Sg> => nmekhah + "م"   ++  bash + "م" ;
+    <Neg,AuxFut FtImperf,PPers1,Pl> => nmekhah + "یم" ++  bash + "یم" ;
+    <Neg,AuxFut FtImperf,PPers2,Sg> => nmekhah + "ی" ++  bash + "ی" ;
+    <Neg,AuxFut FtImperf,PPers2,Pl> => nmekhah + "ید" ++  bash + "ید" ;
+    <Neg,AuxFut FtImperf,PPers3,Sg> => nmekhah + "د" ++  bash + "د" ;
+    <Neg,AuxFut FtImperf,PPers3,Pl> => nmekhah + "ند" ++  bash + "ند" ;
+    -}
+    <Neg,AuxFut FtAorist,PPers1,Sg> => nkhah + "م"  ++ bod  ;
+    <Neg,AuxFut FtAorist,PPers1,Pl> => nkhah + "یم"  ++ bod ;
+    <Neg,AuxFut Ftorist,PPers2,Sg> => nkhah + "ی"  ++ bod ;
+    <Neg,AuxFut FtAorist,PPers2,Pl> => nkhah + "ید"  ++ bod ;
+    <Neg,AuxFut FtAorist,PPers3,Sg> => nkhah + "د"  ++ bod ;
+    <Neg,AuxFut FtAorist,PPers3,Pl> => nkhah + "ند"  ++ bod 
+  
+  
+    
+  {-  
+    <Infr_Past2 InfrPerf,PPers1,Sg> => khordh ++ bvdh ++ "ام" ;
+    <Infr_Past2 InfrPerf,PPers1,Pl> => khordh ++ bvdh ++ "ایم" ;
+    <Infr_Past2 InfrPerf,PPers2,Sg> => khordh ++ bvdh ++ "ای" ;
+    <Infr_Past2 InfrPerf,PPers2,Pl> => khordh ++ bvdh ++ "اید" ;
+    <Infr_Past2 InfrPerf,PPers3,Sg> => khordh ++ bvdh ++ "است" ;
+    <Infr_Past2 InfrPerf,PPers3,Pl> => khordh ++ bvdh ++ "اند" ;
+    
+    <Infr_Past2 InfrImperf,PPers1,Sg> => mekhordh ++ "ام" ;
+    <Infr_Past2 InfrImperf,PPers1,Pl> => mekhordh ++ "ایم" ;
+    <Infr_Past2 InfrImperf,PPers2,Sg> => mekhordh ++ "ای" ;
+    <Infr_Past2 InfrImperf,PPers2,Pl> => mekhordh ++ "اید" ;
+    <Infr_Past2 InfrImperf,PPers3,Sg> => mekhordh ++ "است" ;
+    <Infr_Past2 InfrImperf,PPers3,Pl> => mekhordh ++ "اند" 
+    
+    
+    -}
+  }
+ } ;
+  
+  param
+   AuxTense = AuxPresent PrAspect | AuxPast PstAspect | AuxFut FtAspect ;
+   AuxForm = AX Polarity AuxTense PPerson Number ;
+   
+ 
+ oper
+ toHave : Polarity -> VTense2 -> Number -> PPerson -> {s:Str} = \pol,t,n,p -> {
+   s = let dasht = "داشت";
+	   ndasht = "نداشت" ;
+           dashteh = "داشته";
+           ndashteh = "نداشته" ;
+           dar = "دار" ;
+	   ndar = "ندار" ;
+	   khah = "خواه" ;
+	   nkhah = "نخواه" ;
+	   bvdh = "بوده" ;
+    in case <pol,t,p,n> of {
+    <Pos,PPresent2 PrPerf,PPers1,Sg> => dashteh ++ "ام" ;  
+    <Pos,PPresent2 PrPerf,PPers1,Pl> => dashteh ++ "ایم" ;
+    <Pos,PPresent2 PrPerf,PPers2,Sg> => dashteh ++ "ای" ;
+    <Pos,PPresent2 PrPerf,PPers2,Pl> => dashteh ++ "اید" ;
+    <Pos,PPresent2 PrPerf,PPers3,Sg> =>  dashteh ++ "است" ;
+    <Pos,PPresent2 PrPerf,PPers3,Pl> => dashteh ++ "اند" ;
+    
+    <Pos,PPresent2 PrImperf,PPers1,Sg> => dar + "م" ;
+    <Pos,PPresent2 PrImperf,PPers1,Pl> => dar + "یم" ;
+    <Pos,PPresent2 PrImperf,PPers2,Sg> => dar + "ی" ;
+    <Pos,PPresent2 PrImperf,PPers2,Pl> => dar + "ید" ;
+    <Pos,PPresent2 PrImperf,PPers3,Sg> => dar + "د" ;
+    <Pos,PPresent2 PrImperf,PPers3,Pl> => dar + "ند" ;
+    
+    
+    <Pos,PPast2 PstPerf,PPers1,Sg> => dashteh ++ "بودم" ;
+    <Pos,PPast2 PstPerf,PPers1,Pl> => dashteh ++ "بودیم" ;
+    <Pos,PPast2 PstPerf,PPers2,Sg> => dashteh ++ "بودی" ;
+    <Pos,PPast2 PstPerf,PPers2,Pl> => dashteh ++ "بودید" ;
+    <Pos,PPast2 PstPerf,PPers3,Sg> => dashteh ++ "بود" ;
+    <Pos,PPast2 PstPerf,PPers3,Pl> => dashteh ++ "بودند" ;
+    
+    <Pos,PPast2 PstImperf,PPers1,Sg> => dasht + "م" ;
+    <Pos,PPast2 PstImperf,PPers1,Pl> => dasht + "یم" ;
+    <Pos,PPast2 PstImperf,PPers2,Sg> => dasht  + "ی";
+    <Pos,PPast2 PstImperf,PPers2,Pl> => dasht + "ید" ;
+    <Pos,PPast2 PstImperf,PPers3,Sg> => dasht ;
+    <Pos,PPast2 PstImperf,PPers3,Pl> => dasht + "ند" ;
+    
+    <Pos,PPast2 PstAorist,PPers1,Sg> => dasht + "م" ;
+    <Pos,PPast2 PstAorist,PPers1,Pl> => dasht + "یم" ;
+    <Pos,PPast2 PstAorist,PPers2,Sg> => dasht  + "ی";
+    <Pos,PPast2 PstAorist,PPers2,Pl> => dasht + "ید" ;
+    <Pos,PPast2 PstAorist,PPers3,Sg> => dasht ;
+    <Pos,PPast2 PstAorist,PPers3,Pl> => dasht + "ند" ;
+    
+   
+    <Pos,PFut2 FtAorist,PPers1,Sg> => khah + "م"  ++ dasht  ;
+    <Pos,PFut2 FtAorist,PPers1,Pl> => khah + "یم"  ++ dasht ;
+    <Pos,PFut2 Ftorist,PPers2,Sg> => khah + "ی"  ++ dasht ;
+    <Pos,PFut2 FtAorist,PPers2,Pl> => khah + "ید"  ++ dasht ;
+    <Pos,PFut2 FtAorist,PPers3,Sg> => khah + "د"  ++ dasht ;
+    <Pos,PFut2 FtAorist,PPers3,Pl> => khah + "ند"  ++ dasht  ;
+    
+    
+    <Pos,Infr_Past2 InfrPerf,PPers1,Sg> => dashteh ++ bvdh ++ "ام" ;
+    <Pos,Infr_Past2 InfrPerf,PPers1,Pl> => dashteh ++ bvdh ++ "ایم" ;
+    <Pos,Infr_Past2 InfrPerf,PPers2,Sg> => dashteh ++ bvdh ++ "ای" ;
+    <Pos,Infr_Past2 InfrPerf,PPers2,Pl> => dashteh ++ bvdh ++ "اید" ;
+    <Pos,Infr_Past2 InfrPerf,PPers3,Sg> => dashteh ++ bvdh ++ "است" ;
+    <Pos,Infr_Past2 InfrPerf,PPers3,Pl> => dashteh ++ bvdh ++ "اند" ;
+    
+    <Pos,Infr_Past2 InfrImperf,PPers1,Sg> => dashteh ++ "ام" ;
+    <Pos,Infr_Past2 InfrImperf,PPers1,Pl> => dashteh ++ "ایم" ;
+    <Pos,Infr_Past2 InfrImperf,PPers2,Sg> => dashteh ++ "ای" ;
+    <Pos,Infr_Past2 InfrImperf,PPers2,Pl> => dashteh ++ "اید" ;
+    <Pos,Infr_Past2 InfrImperf,PPers3,Sg> => dashteh ++ "است" ;
+    <Pos,Infr_Past2 InfrImperf,PPers3,Pl> => dashteh ++ "اند" ;
+    
+ -- negatives
+ 
+    <Neg,PPresent2 PrPerf,PPers1,Sg> => ndashteh ++ "ام" ;  
+    <Neg,PPresent2 PrPerf,PPers1,Pl> => ndashteh ++ "ایم" ;
+    <Neg,PPresent2 PrPerf,PPers2,Sg> => ndashteh ++ "ای" ;
+    <Neg,PPresent2 PrPerf,PPers2,Pl> => ndashteh ++ "اید" ;
+    <Neg,PPresent2 PrPerf,PPers3,Sg> =>  ndashteh ++ "است" ;
+    <Neg,PPresent2 PrPerf,PPers3,Pl> => ndashteh ++ "اند" ;
+    
+    <Neg,PPresent2 PrImperf,PPers1,Sg> => ndar + "م" ;
+    <Neg,PPresent2 PrImperf,PPers1,Pl> => ndar + "یم" ;
+    <Neg,PPresent2 PrImperf,PPers2,Sg> => ndar + "ی" ;
+    <Neg,PPresent2 PrImperf,PPers2,Pl> => ndar + "ید" ;
+    <Neg,PPresent2 PrImperf,PPers3,Sg> => ndar + "د" ;
+    <Neg,PPresent2 PrImperf,PPers3,Pl> => ndar + "ند" ;
+    
+    
+    <Neg,PPast2 PstPerf,PPers1,Sg> => ndashteh ++ "بودم" ;
+    <Neg,PPast2 PstPerf,PPers1,Pl> => ndashteh ++ "بودیم" ;
+    <Neg,PPast2 PstPerf,PPers2,Sg> => ndashteh ++ "بودی" ;
+    <Neg,PPast2 PstPerf,PPers2,Pl> => ndashteh ++ "بودید" ;
+    <Neg,PPast2 PstPerf,PPers3,Sg> => ndashteh ++ "بود" ;
+    <Neg,PPast2 PstPerf,PPers3,Pl> => ndashteh ++ "بودند" ;
+    
+    <Neg,PPast2 PstImperf,PPers1,Sg> => ndasht + "م" ;
+    <Neg,PPast2 PstImperf,PPers1,Pl> => ndasht + "یم" ;
+    <Neg,PPast2 PstImperf,PPers2,Sg> => ndasht  + "ی";
+    <Neg,PPast2 PstImperf,PPers2,Pl> => ndasht + "ید" ;
+    <Neg,PPast2 PstImperf,PPers3,Sg> => ndasht ;
+    <Neg,PPast2 PstImperf,PPers3,Pl> => ndasht + "ند" ;
+    
+    <Neg,PPast2 PstAorist,PPers1,Sg> => ndasht + "م" ;
+    <Neg,PPast2 PstAorist,PPers1,Pl> => ndasht + "یم" ;
+    <Neg,PPast2 PstAorist,PPers2,Sg> => ndasht  + "ی";
+    <Neg,PPast2 PstAorist,PPers2,Pl> => ndasht + "ید" ;
+    <Neg,PPast2 PstAorist,PPers3,Sg> => ndasht ;
+    <Neg,PPast2 PstAorist,PPers3,Pl> => ndasht + "ند" ;
+    
+   
+    <Neg,PFut2 FtAorist,PPers1,Sg> => nkhah + "م"  ++ dasht  ;
+    <Neg,PFut2 FtAorist,PPers1,Pl> => nkhah + "یم"  ++ dasht ;
+    <Neg,PFut2 Ftorist,PPers2,Sg> => nkhah + "ی"  ++ dasht ;
+    <Neg,PFut2 FtAorist,PPers2,Pl> => nkhah + "ید"  ++ dasht ;
+    <Neg,PFut2 FtAorist,PPers3,Sg> => nkhah + "د"  ++ dasht ;
+    <Neg,PFut2 FtAorist,PPers3,Pl> => nkhah + "ند"  ++ dasht  ;
+    
+    
+    <Neg,Infr_Past2 InfrPerf,PPers1,Sg> => ndashteh ++ bvdh ++ "ام" ;
+    <Neg,Infr_Past2 InfrPerf,PPers1,Pl> => ndashteh ++ bvdh ++ "ایم" ;
+    <Neg,Infr_Past2 InfrPerf,PPers2,Sg> => ndashteh ++ bvdh ++ "ای" ;
+    <Neg,Infr_Past2 InfrPerf,PPers2,Pl> => ndashteh ++ bvdh ++ "اید" ;
+    <Neg,Infr_Past2 InfrPerf,PPers3,Sg> => ndashteh ++ bvdh ++ "است" ;
+    <Neg,Infr_Past2 InfrPerf,PPers3,Pl> => ndashteh ++ bvdh ++ "اند" ;
+    
+    <Neg,Infr_Past2 InfrImperf,PPers1,Sg> => ndashteh ++ "ام" ;
+    <Neg,Infr_Past2 InfrImperf,PPers1,Pl> => ndashteh ++ "ایم" ;
+    <Neg,Infr_Past2 InfrImperf,PPers2,Sg> => ndashteh ++ "ای" ;
+    <Neg,Infr_Past2 InfrImperf,PPers2,Pl> => ndashteh ++ "اید" ;
+    <Neg,Infr_Past2 InfrImperf,PPers3,Sg> => ndashteh ++ "است" ;
+    <Neg,Infr_Past2 InfrImperf,PPers3,Pl> => ndashteh ++ "اند" 
+    
+     
+     };
+     
+   } ;
+  
+   predProg : VPH -> VPH = \verb -> {
+     s = \\vh => 
+       case vh of {
+	     VPTense pol (VPPres Simul) (AgPes n p) => { inf = (toHave Pos (PPresent2 PrImperf) n p).s ++  (verb.s ! VPTense pol (VPPres Simul) (AgPes n p)).inf } ;
+	     VPTense pol (VPPres Anter) (AgPes n p) => { inf = (verb.s ! VPTense pol (VPPres Anter) (AgPes n p)).inf } ;
+	     VPTense pol (VPPast Simul) (AgPes n p) => { inf = (toHave Pos (PPast2 PstAorist) n p).s ++ (verb.s ! VPTense pol (VPCond Simul) (AgPes n p)).inf } ;
+	     VPTense pol (VPPast Anter) (AgPes n p) => { inf = (verb.s ! VPTense pol (VPPast Anter) (AgPes n p)).inf } ;
+	     VPTense pol (VPFutr Simul) (AgPes n p) =>  { inf =  (verb.s ! VPTense pol (VPFutr Simul) (AgPes n p)).inf } ;
+	     VPTense pol (VPFutr Anter) (AgPes n p) =>  { inf =  (verb.s ! VPTense pol (VPFutr Anter) (AgPes n p)).inf } ; -- this is to be confirmed
+	     VPTense pol (VPCond Simul) (AgPes n p) => { inf = (toHave Pos (PPast2 PstAorist) n p).s ++ (verb.s ! VPTense pol (VPCond Simul) (AgPes n p)).inf } ;
+	     VPTense pol (VPCond Anter) (AgPes n p) => { inf = (toHave Pos (PPast2 PstAorist) n p).s ++ (verb.s ! VPTense pol (VPCond Anter) (AgPes n p)).inf } ; 
+	     VVForm (AgPes n p) => {inf = (verb.s ! VVForm (AgPes n p)).inf} ;
+	     VPStem1 => { inf =  (verb.s ! VPStem1).inf};
+	     VPStem2 => { inf =  (verb.s ! VPStem2).inf} ;
+	     VPImp pol n => { inf = (verb.s ! VPImp pol n).inf}  -- need to be confirmed
+--	     _ => { inf = (verb.s ! VPStem1).inf} 
+		 };
+	   
+      obj = verb.obj ;
+      subj =  VIntrans ;
+      inf = verb.inf;
+      ad = verb.ad;
+      wish = verb.wish;
+      vComp = verb.vComp ;
+      embComp = verb.embComp ;
+      comp = verb.comp 
+      } ;
+      
+-------------------------
+-- Ezafa construction
+------------------------
+oper
+mkEzafa : Str -> Str ;
+mkEzafa str = case str of {
+             st + "اه" => str ;
+	     st + "وه" => str ;
+	     st + "ه" => str ++ "ی" ;
+	     st + "او" => str ;
+	     st + "وو" => str ;
+	     st + "و" => str + "ی" ;
+	     st + "ا" => str + "ی" ;
+	     _ => str
+	};
+mkEnclic : Str -> Str ;
+mkEnclic str = case str of {
+                 st + "ا" => str ++ "یی" ;
+	         st + "و" => str ++ "یی" ;
+		 st + "ی" => str ++ "یی" ;
+		 st + "ه" => str ++ "یی" ;
+	                _ => str + "ی"
+	};
+		
+IndefArticle : Str ;
+IndefArticle = "یک";
+taryn : Str ;
+taryn = "ترین" ;
+
+---------------
+-- making negatives
+---------------
+addN : Str -> Str ;
+addN str = 
+            case str of { 
+	       "ا" + st => "نی" + str ;  
+	       "آ" + st => "نیا" + st ;
+	         _  => "ن" + str
+       };
+addBh2 : Str -> Str ; -- should use drop instead but it gives linking error
+addBh2 str1 =
+       case str1 of {
+            "می" + str => 
+                case  str of { 
+	           "ا" + st => Prelude.glue "بی" str ;  -- need to use '+' but it gives linking error
+	           "آ" + st => Prelude.glue "بیا" st ;
+	            _    => Prelude.glue "ب" str
+                    };
+	      _     => ""	    
+		  };  
+
+-----------------------------
+-- Noun Phrase
+-----------------------------
+{-toNP : Str -> Str = \pn, npc -> case npc of {
+      NPC c => pn !  c ;
+      NPObj => pn !  Dir ;
+      NPErg => pn !  Obl 
+      } ;
+-}
+
+ partNP : Str -> Str = \str -> (Prelude.glue str "ه") ++ "شده" ;
+-- partNP : Str -> Str = \str ->  str + "ه" ++ "شده" ;
+
+       
+  
+------------------------------------------
+-- Agreement transformations
+-----------------------------------------
+    toAgr : Number  -> PPerson -> AgrPes = \n,p ->       
+	   AgPes n p;
+      
+
+    fromAgr : AgrPes -> {n : Number ; p : PPerson } = \agr -> case agr of {
+      AgPes n p => {n = n ; p = p } 
+	  } ;
+	  
+	conjAgrPes : AgrPes -> AgrPes -> AgrPes = \a0,b0 -> 
+      let a = fromAgr a0 ; b = fromAgr b0 
+      in
+      toAgr
+        (conjNumber a.n b.n)
+        b.p;	  
+	
+	giveNumber : AgrPes -> Number =\a -> case a of {
+	   AgPes n _   => n
+	};
+
+    
+--    defaultAgr : Agr = agrP3 Sg Inanimate ;
+--    agrP3 : Number -> Animacy -> Agr = \n,a -> Ag n PPers3 a ;
+    defaultAgrPes : AgrPes = agrPesP3 Sg ;
+    agrPesP3 : Number -> AgrPes = \n -> AgPes n PPers3 ;	
+--    personalAgr : Agr = agrP1 Sg ;
+    agrPesP1 : Number -> AgrPes = \n -> AgPes n PPers1 ;
+	
+--------------------------------------------------------
+-- Reflexive Pronouns
+-----------------------------------
+
+reflPron : AgrPes => Str = table {
+    AgPes Sg PPers1   => "خودم" ;
+    AgPes Sg PPers2   => "خودت" ;
+    AgPes Sg PPers3   => "خودش" ;
+    AgPes Pl PPers1   => "خودمان" ;
+    AgPes Pl PPers2   => "خودتان" ;
+    AgPes Pl PPers3   => "خودشان" 
+    
+    } ;
+    
+  getPron : Animacy -> Number -> Str = \ani,number ->
+   case <ani,number> of {
+    <Animate,Sg> => "او" ;
+    <Animate,Pl> => ["آن ها"] ;
+    <Inanimate,Sg> => "آن" ;
+    <Inanimate,Pl> => ["آن ها"] 
+   };
+   
+
+}
+
diff --git a/lib/src/persian/SentencePes.gf b/lib/src/persian/SentencePes.gf
new file mode 100644
--- /dev/null
+++ b/lib/src/persian/SentencePes.gf
@@ -0,0 +1,103 @@
+concrete SentencePes of Sentence = CatPes ** open Prelude, ResPes,Predef in {
+
+  flags optimize=all_subs ;
+  coding = utf8;
+
+  lin
+
+    PredVP np vp = mkClause np vp ;
+
+    PredSCVP sc vp = mkSClause ("این" ++ sc.s) (defaultAgrPes) vp ;
+
+    ImpVP vp = {
+      s = \\pol,n => 
+        let 
+          agr   = AgPes (numImp n) PPers2 ;
+	  in case pol of {
+          CPos =>  vp.ad ++ vp.comp ! agr  ++ vp.obj.s ++ vp.vComp ! agr ++  ((vp.s ! VPImp Pos (numImp n)).inf) ++ vp.embComp;
+	  CNeg _ =>  vp.ad ++ vp.comp ! agr ++ vp.obj.s ++ vp.vComp ! agr ++  ((vp.s ! VPImp Neg (numImp n)).inf) ++ vp.embComp
+	  } ;     
+    } ;
+
+
+    SlashVP np vp = 
+      mkClause np vp ** {c2 = vp.c2} ;
+
+    AdvSlash slash adv = {
+	  s  = \\t,p,o =>  adv.s ++ slash.s ! t ! p ! o  ;
+      c2 = slash.c2
+    } ;
+
+    SlashPrep cl prep = cl **  {c2 = { s = prep.s ; ra = [] ; c = VIntrans}} ;
+
+    SlashVS np vs slash = 
+      mkClause  np 
+        (insertObj2 (conjThat ++ slash.s) (predV vs))  **
+        {c2 = slash.c2} ;
+
+    EmbedS  s  = {s = conjThat ++ s.s} ;
+    EmbedQS qs = {s = qs.s ! QIndir} ;
+    EmbedVP vp = {s = vp.obj.s ++ vp.inf ++ vp.comp ! defaultAgrPes} ; --- agr
+
+
+    UseCl  temp p cl = 
+	 { s = case <temp.t,temp.a> of {
+	  <Pres,Simul> => temp.s ++ p.s ++ cl.s ! VPres ! p.p ! ODir;
+          <Pres,Anter> => temp.s ++ p.s ++ cl.s ! VPerfPres ! p.p ! ODir;
+          <Past,Simul> => temp.s ++ p.s ++ cl.s ! VPast ! p.p ! ODir;
+          <Past,Anter> => temp.s ++ p.s ++ cl.s ! VPerfPast ! p.p ! ODir;
+          <Fut,Simul>  => temp.s ++ p.s ++ cl.s ! VFut ! p.p ! ODir;
+          <Fut,Anter>  => temp.s ++ p.s ++ cl.s ! VPerfFut ! p.p ! ODir;
+          <Cond,Simul> => temp.s ++ p.s ++ cl.s ! VCondSimul ! p.p ! ODir;
+          <Cond,Anter> => temp.s ++ p.s ++ cl.s ! VCondAnter ! p.p ! ODir -- this needs to be fixed by making SubjPerf in ResPnb		  
+
+   };
+  } ;
+     UseQCl temp p cl = {
+      s = \\q => case <temp.t,temp.a> of {
+	      <Pres,Simul> => temp.s ++ p.s ++ cl.s ! VPres ! p.p ! q;
+          <Pres,Anter> => temp.s ++ p.s ++ cl.s ! VPerfPres ! p.p ! q;
+          <Past,Simul> => temp.s ++ p.s ++ cl.s ! VPast ! p.p ! q;
+          <Past,Anter> => temp.s ++ p.s ++ cl.s ! VPerfPast ! p.p ! q;
+          <Fut,Simul>  => temp.s ++ p.s ++ cl.s ! VFut ! p.p ! q;
+          <Fut,Anter>  => temp.s ++ p.s ++ cl.s ! VPerfFut ! p.p ! q;
+          <Cond,Simul> => temp.s ++ p.s ++ cl.s ! VCondSimul ! p.p ! q;
+          <Cond,Anter> => temp.s ++ p.s ++ cl.s ! VCondAnter ! p.p ! q		  
+ 
+   };
+  } ;
+
+    UseRCl temp p rcl = {
+      s = \\q => case <temp.t,temp.a> of {
+	      <Pres,Simul> => temp.s ++ p.s ++ rcl.s ! VPres ! p.p ! ODir ! q;
+          <Pres,Anter> => temp.s ++ p.s ++ rcl.s ! VPerfPres ! p.p ! ODir ! q;
+          <Past,Simul> => temp.s ++ p.s ++ rcl.s ! VPast ! p.p ! ODir ! q;
+          <Past,Anter> => temp.s ++ p.s ++ rcl.s ! VPerfPast ! p.p ! ODir ! q;
+          <Fut,Simul>  => temp.s ++ p.s ++ rcl.s ! VFut ! p.p ! ODir ! q;
+          <Fut,Anter>  => temp.s ++ p.s ++ rcl.s ! VPerfFut ! p.p ! ODir ! q;
+          <Cond,Simul> => temp.s ++ p.s ++ rcl.s ! VCondSimul ! p.p ! ODir ! q;
+          <Cond,Anter> => temp.s ++ p.s ++ rcl.s ! VCondAnter ! p.p ! ODir ! q
+     };		  
+      c = rcl.c
+    } ;
+    
+    UseSlash temp p clslash = {
+      s = case <temp.t,temp.a> of {
+	      <Pres,Simul> => temp.s ++ p.s ++ clslash.s ! VPres ! p.p ! ODir;
+          <Pres,Anter> => temp.s ++ p.s ++ clslash.s ! VPerfPres ! p.p ! ODir;
+          <Past,Simul> => temp.s ++ p.s ++ clslash.s ! VPast ! p.p ! ODir ;
+          <Past,Anter> => temp.s ++ p.s ++ clslash.s ! VPerfPast ! p.p ! ODir;
+          <Fut,Simul>  => temp.s ++ p.s ++ clslash.s ! VFut ! p.p ! ODir;
+          <Fut,Anter>  => temp.s ++ p.s ++ clslash.s ! VPerfFut ! p.p ! ODir;
+          <Cond,Simul> => temp.s ++ p.s ++ clslash.s ! VCondSimul ! p.p ! ODir;
+          <Cond,Anter> => temp.s ++ p.s ++ clslash.s ! VCondSimul ! p.p ! ODir
+     };		  
+      c2 = clslash.c2
+    } ;
+
+    AdvS a s = {s = a.s ++ s.s} ;
+
+    RelS s r = {s = s.s ++ r.s ! agrPesP3 Sg} ;
+    SSubjS s sj s = { s = s.s ++ sj.s ++ s.s};
+
+}
diff --git a/lib/src/persian/StructuralPes.gf b/lib/src/persian/StructuralPes.gf
new file mode 100644
--- /dev/null
+++ b/lib/src/persian/StructuralPes.gf
@@ -0,0 +1,133 @@
+concrete StructuralPes of Structural = CatPes ** 
+  open MorphoPes, ParadigmsPes, Prelude, NounPes in {
+
+  flags optimize=all ;
+  coding = utf8;
+
+  lin
+  above_Prep = ss "بالای" ;
+  after_Prep = ss ["بعد از"] ;
+  all_Predet = ss ["همه ی"] ;
+  almost_AdA, almost_AdN = ss "تقریباً" ;
+  although_Subj = ss ["با وجود این"] ;
+  always_AdV = ss "همیشه" ;
+  and_Conj = sd2 [] "و" ** {n = Pl} ;
+  because_Subj = ss ["برای این"] ;
+  before_Prep = ss ["قبل از"] ;
+  behind_Prep = ss "پشت" ;
+  between_Prep = ss "بین" ;
+  both7and_DConj = sd2 "هم" ["و هم"] ** {n = Pl} ;
+  but_PConj = ss "اما" ;
+  by8agent_Prep = ss "توسط" ;
+  by8means_Prep = ss "با" ;
+--  can8know_VV,can_VV = mkV "سکن" ** { isAux = True} ;
+  during_Prep = ss ["در طول"] ;
+  either7or_DConj = sd2 "یا" "یا" ** {n = Sg} ;
+--  everybody_NP =  MassNP (UseN (MorphoPnb.mkN11 ["هر کwی"])); -- not a good way coz need to include NounPnb
+  every_Det = mkDet "هر" Sg ;
+--  everything_NP = MassNP (UseN (MorphoPnb.mkN11 ["هر XE"]));
+  everywhere_Adv = ss ["هر جا"] ;
+  few_Det = mkDet ["تعداد کمی"] Pl True; -- check
+--  first_Ord = {s = "اولین" ; n = Sg} ; --DEPRECATED
+  for_Prep = ss "برای" ;
+  from_Prep = ss "از" ;
+  he_Pron = personalPN "او"  Sg PPers3 ;
+  here_Adv = ss "اینجا" ;
+  here7to_Adv = ss "اینجا" ;
+  here7from_Adv = ss "اینجا" ;
+  how_IAdv = ss "چطور" ;
+  how8many_IDet = {s = "چند" ; n = Pl ; isNum = True} ;
+  how8much_IAdv  = ss "چقدر" ;
+  if_Subj = ss "اگر" ;
+  in8front_Prep = ss "جلوی" ;
+  i_Pron = personalPN "من" Sg PPers1;
+  in_Prep = ss "در" ;
+  it_Pron  = personalPN "آن" Sg PPers3;
+  less_CAdv = {s = "کمتر" ; p = ""} ;
+  many_Det = mkDet ["تعداد زیادی"] Pl True; -- check
+  more_CAdv = {s = "بیشتر" ; p = "" } ; 
+  most_Predet = ss "اکثر";
+  much_Det = mkDet ["مقدار زیادی"]  Pl ;
+--  must_VV = {
+--    s = table {
+--      VVF VInf => ["هوe تْ"] ;
+--      VVF VPres => "مست" ;
+--      VVF VPPart => ["هد تْ"] ;
+--      VVF VPresPart => ["هونگ تْ"] ;
+--      VVF VPast => ["هد تْ"] ;      --# notpresent
+--      VVPastNeg => ["هدn'ت تْ"] ;      --# notpresent
+--      VVPresNeg => "مستn'ت"
+--      } ;
+--    isAux = True
+--    } ;
+-----b  no_Phr = ss "نْ" ;
+
+
+  no_Utt = ss "نه" ;
+  on_Prep = ss "روی" ;
+--  one_Quant = demoPN "یک"  ; -- DEPRECATED
+  only_Predet = ss "فقط" ;
+  or_Conj = sd2 [] "یا" ** {n = Sg} ;
+  otherwise_PConj = ss ["درغیراین صورت"] ;
+  part_Prep = ss "از" ; -- the object following it should be in Ezafa form  
+  please_Voc = ss "لطفاً" ;
+  possess_Prep = ss "" ; -- will be handeled in Ezafeh
+  quite_Adv = ss "کاملاً" ;
+  she_Pron = personalPN "او" Sg PPers3 ;
+  so_AdA = ss "بسیار" ; 
+--  somebody_NP = MassNP (UseN (MorphoPnb.mkN11 "کwی" ));
+  someSg_Det = mkDet "مقداری" Sg True ;
+  somePl_Det = mkDet "چند" Pl True ;
+--  something_NP = MassNP (UseN (MorphoPnb.mkN11 "چیزی"));
+  somewhere_Adv = ss "جایی" ; 
+  that_Quant = mkQuant "آن" "آن"; 
+  that_Subj = ss "آن"; 
+  there_Adv = ss "آنجا" ; 
+  there7to_Adv = ss "آنجا" ;
+  there7from_Adv = ss "آنجا" ;
+  therefore_PConj = ss ["به همین دلیل"] ; 
+  they_Pron = personalPN ["آن ها"] Pl PPers3 ; 
+  this_Quant = mkQuant "این" "این" ;  
+  through_Prep = ss ["از طریق"] ;
+  too_AdA = ss "خیلی" ; 
+  to_Prep = ss "به" ** {lock_Prep = <>};
+  under_Prep = ss "زیر" ** {lock_Prep = <>};
+  very_AdA = ss "خیلی" ;
+  want_VV = mkV "خواستن" "خواه" ** { isAux = False} ; 
+  we_Pron = personalPN "ما" Pl PPers1 ;
+  whatSg_IP = {s = ["چه چیزی"] ; n = Sg } ;
+  whatPl_IP = {s = ["چه چیزهایی"] ; n = Pl } ;
+  when_IAdv = ss "کی" ; 
+  when_Subj = ss "وقتی" ;
+  where_IAdv = ss "کجا" ;
+  which_IQuant = {s = "کدام" ; n = Sg} ;
+  whichPl_IDet = {s = "کدام" ; n = Pl ; isNum = False} ;
+  whichSg_IDet = { s = "کدام" ; n = Sg ; isNum = False} ;
+  whoSg_IP = {s = ["چه کسی"] ; n =  Sg}  ;
+  whoPl_IP = {s = ["چه کسانی"] ;n = Pl} ;
+  why_IAdv = ss "چرا" ;
+  without_Prep = ss "بدون" ;
+  with_Prep = ss "با";
+--  yes_Phr = ss "بله" ;
+  yes_Utt = ss "بله" ;
+  youSg_Pron = personalPN "تو" Sg PPers2 ;
+  youPl_Pron = personalPN "شما" Pl PPers2 ;
+  youPol_Pron = personalPN "شما"  Sg PPers2  ; 
+--  no_Quant =  demoPN "هیچ" ; 
+  not_Predet = {s="نه"} ;
+  if_then_Conj = sd2 "اگر" "آنگاه" ** {n = Sg} ; 
+  at_least_AdN = ss "حداقل" ;
+  at_most_AdN = ss "حداکثر";
+--  nothing_NP = MassNP (UseN (MorphoPnb.mkN11 "هیچ چیز" )); 
+  except_Prep = ss ["به جز"] ;
+--  nobody_NP = MassNP (UseN (MorphoPnb.mkN11 "هیچ کس"));  
+
+  as_CAdv = {s = ["به اندازه ی"] ; p = ""} ;
+
+--  have_V2 = mkV2 (mkV "داشتن" "دار") "را" ;
+
+ language_title_Utt = ss "پeرسن" ;
+
+}
+
+
diff --git a/lib/src/persian/SymbolPes.gf b/lib/src/persian/SymbolPes.gf
new file mode 100644
--- /dev/null
+++ b/lib/src/persian/SymbolPes.gf
@@ -0,0 +1,47 @@
+--# -path=.:../abstract:../common
+
+concrete SymbolPes of Symbol = CatPes ** open Prelude, ResPes in {
+
+  flags coding = utf8;
+{-
+ lin
+-- SymbPN i = {s = \\_ => i.s ; g = Masc} ;
+  SymbPN i = {s = addGenitiveS i.s ; g = Masc} ;
+  IntPN i  = {s = addGenitiveS i.s ; g = Masc} ;
+  FloatPN i = {s = addGenitiveS i.s ; g = Masc} ;
+  NumPN i = {s = \\_ =>i.s ; g = Masc} ;
+  CNIntNP cn i = {
+    s = \\c => cn.s ! Sg ! Dir ++ i.s ;
+    a = agrP3 cn.g Sg
+    } ;
+  CNSymbNP det cn xs = {
+    s = \\c => det.s!Sg!Masc ++ cn.s ! det.n ! Dir ++  xs.s ; 
+    a = agrP3 cn.g det.n
+    } ;
+  CNNumNP cn i = {
+    s = \\c => cn.s ! Sg ! Dir ++ i.s ;
+    a = agrP3 cn.g Sg
+    } ;
+
+  SymbS sy = sy ; 
+  SymbNum sy = { s = sy.s ; n = Pl } ;
+  SymbOrd sy = { s = sy.s ++ "waN" ; n = Pl} ;
+
+lincat 
+
+  Symb, [Symb] = SS ;
+
+lin
+  MkSymb s = s ;
+
+  BaseSymb = infixSS "tE" ;
+  ConsSymb = infixSS "" ;
+
+oper
+    -- Note: this results in a space before 's, but there's
+    -- not mauch we can do about that.
+    addGenitiveS : Str -> Case => Str = \s -> 
+     table {_ => s ++ "da" } ;
+-}
+
+}
diff --git a/lib/src/persian/TextPes.gf b/lib/src/persian/TextPes.gf
new file mode 100644
--- /dev/null
+++ b/lib/src/persian/TextPes.gf
@@ -0,0 +1,11 @@
+concrete TextPes of Text = CommonX - [Temp,TTAnt,Tense,TPres,TPast,TFut,TCond] ** {
+
+-- This works for the special punctuation marks of Persian.
+
+  lin
+    TEmpty = {s = []} ;
+    TFullStop x xs = {s = x.s ++ "۔" ++ xs.s} ;
+    TQuestMark x xs = {s = x.s ++ "" ++ xs.s} ;
+    TExclMark x xs = {s = x.s ++ "" ++ xs.s} ;
+
+}
diff --git a/lib/src/persian/VerbPes.gf b/lib/src/persian/VerbPes.gf
new file mode 100644
--- /dev/null
+++ b/lib/src/persian/VerbPes.gf
@@ -0,0 +1,49 @@
+concrete VerbPes of Verb = CatPes ** open ResPes in {
+
+  flags coding = utf8;
+  flags optimize=all_subs ;
+
+  lin
+    UseV  v = predV v   ;
+    SlashV2a v = predV v ** {c2 = {s = v.c2.s ; ra = v.c2.ra ; c = VTrans}} ;
+    Slash2V3 v np = 
+      insertObjc (\\_ =>  np.s ! NPC bEzafa ++ v.c2 ) (predV v ** {c2 = {s = [] ; ra = v.c3 ; c = VTrans}}) ;
+   
+    Slash3V3 v np = 
+      insertObjc (\\_ => v.c3 ++ np.s ! NPC bEzafa) (predV v ** {c2 = {s = [] ; ra = v.c2 ; c = VTrans}}) ; 
+                                
+    ComplVV v vp = insertVV (infVV v.isAux vp).s (predV v) ; 
+    ComplVS v s  = insertObj2 (conjThat ++ s.s) (predV v) ;
+    ComplVQ v q  = insertObj2 (conjThat ++ q.s ! QIndir) (predV v) ;
+    ComplVA v ap = insertObj (\\_ => ap.s ! bEzafa) (predV v) ; -- check form of adjective
+    SlashV2V v vp = insertVV (infVV v.isAux vp).s (predV v) **{c2 = {s = v.c1 ; ra = [] ; c = VTransPost}} ; 
+
+    SlashV2S v s  = insertObjc2 (conjThat ++ s.s) (predV v ** {c2 = {s = v.c2.s ;ra = [] ; c = VTransPost}}) ;
+    SlashV2Q v q  = insertObjc2 ( q.s ! QIndir) (predV v ** {c2 = {s = v.c2.s ; ra = [] ;c = VTransPost}}) ; 
+    SlashV2A v ap = insertObjc3 ( ap.s ! bEzafa) (predV v ** {c2 = {s = [] ; ra = v.c2.ra ;c = VTransPost}}) ; ---- paint it red , check form of adjective
+
+     ComplSlash vp np = insertObjPre (\\_ =>  np.s ! NPC bEzafa ) vp ;
+    SlashVV vv vp = 
+ --     insertObj (infVV vv.isAux vp).s (predV vv)  **
+      insertVV (infVV vv.isAux vp).s (predV vv)  **
+        {c2 = vp.c2} ;
+    SlashV2VNP vv np vp = 
+      insertObjPre (\\_ =>  np.s ! NPC bEzafa  )
+--        (insertObjc (infVV vv.isAux vp).s (predVc vv)) **
+      (insertVVc (infVV vv.isAux vp).s (predVc vv)) **
+          {c2 = vp.c2} ;
+          
+    UseComp comp = insertObj comp.s (predAux auxBe) ;
+
+    AdvVP vp adv = insertAdV adv.s vp ;
+
+    AdVVP adv vp = insertAdV adv.s vp ;
+    ReflVP v = insertObjPre (\\a =>  reflPron ! a) v ;
+    PassV2 v = predV v ; -- need to be fixed
+    CompAP ap ={s = \\_ => ap.s ! bEzafa} ; -- check form of adjective
+    CompNP np = {s = \\a => np.s ! NPC bEzafa} ;
+    CompAdv adv = {s = \\_ => adv.s } ;
+    CompCN cn = {s = \\a => cn.s ! bEzafa !  giveNumber a } ;
+
+ 
+}
diff --git a/lib/src/persian/src/AdjectivePes.gf b/lib/src/persian/src/AdjectivePes.gf
new file mode 100644
--- /dev/null
+++ b/lib/src/persian/src/AdjectivePes.gf
@@ -0,0 +1,48 @@
+concrete AdjectivePes of Adjective = CatPes ** open ResPes, Prelude in {
+
+  flags coding = utf8;
+  lin
+
+    PositA a = a ;
+ 	UseComparA a = a;
+
+    ComparA a np = {
+        s =\\ez => a.s ! ez ++ "tr" ++ "Az" ++ np.s ! NPC bEzafa  ;
+	adv = a.adv
+       } ;
+
+---- $SuperlA$ belongs to determiner syntax in $Noun$.
+
+    ComplA2 a np = {
+      s =\\ez => np.s ! NPC bEzafa ++ a.c2 ++ a.s  ! ez ;
+      adv = a.adv
+     } ;
+
+    ReflA2 a = {
+      s =\\ez =>  a.s ! ez ++ "" ; -- need to be fixed
+      adv = a.adv
+      } ;
+
+    SentAP ap sc = {
+      s =\\ez =>  ap.s! ez ++ sc.s ;
+      adv = ap.adv
+      } ;
+
+    AdAP ada ap = {
+      s =\\ez => ada.s ++ ap.s ! ez ;
+      adv = ap.adv
+      } ;
+
+    UseA2 a = a ;
+	
+	CAdvAP  cadv ap np = {
+	 s =\\ez =>  cadv.s ++  np.s ! NPC bEzafa ++ ap.s ! ez ;
+	 adv = ap.adv
+	 };
+   
+    AdjOrd ord =  { s =\\_ => ord.s ; adv = ""};
+    
+    
+
+     AdvAP ap adv = {s =\\ez => ap.s ! ez ++ adv.s ; adv = ap.adv};
+}
diff --git a/lib/src/persian/src/AdverbPes.gf b/lib/src/persian/src/AdverbPes.gf
new file mode 100644
--- /dev/null
+++ b/lib/src/persian/src/AdverbPes.gf
@@ -0,0 +1,22 @@
+concrete AdverbPes of Adverb = CatPes ** open ResPes, Prelude in {
+
+  flags coding = utf8;
+  lin
+ --   PositAdvAdj a = {s = a.s ! bEzafa  } ;
+     PositAdvAdj a = {s = a.adv  } ;
+    ComparAdvAdj cadv a np = {
+      s = a.adv ++ cadv.p ++ cadv.s ++ np.s ! NPC bEzafa  ;  
+      } ;
+    ComparAdvAdjS cadv a s = {
+      s =  a.adv  ++ cadv.p ++ cadv.s  ++  s.s;
+      } ;
+
+    PrepNP prep np = {s =  prep.s ++ np.s ! NPC aEzafa } ;
+
+    AdAdv ada adv = { s =  ada.s ++ adv.s} ;
+
+--    SubjS = cc2 ;
+    SubjS sub snt = {s = sub.s  ++ "kh" ++ snt.s } ;
+    AdnCAdv cadv = {s =  cadv.s ++ "Az"} ;
+
+}
diff --git a/lib/src/persian/src/IdiomPes.gf b/lib/src/persian/src/IdiomPes.gf
new file mode 100644
--- /dev/null
+++ b/lib/src/persian/src/IdiomPes.gf
@@ -0,0 +1,40 @@
+concrete IdiomPes of Idiom = CatPes ** open Prelude,Predef, ResPes in {
+
+  flags optimize=all_subs ;
+  flags coding = utf8;
+
+  lin
+ 
+    ImpersCl vp = mkSClause " " (agrPesP3 Sg) vp ;
+    GenericCl vp = mkSClause "A:dm" (agrPesP3 Sg) vp ;
+
+    CleftNP np rs = 
+	 let cl = mkSClause (np.s ! NPC bEzafa) (np.a) (predAux auxBe);
+	  in 
+	   {s = \\t,p,o =>  cl.s ! t ! p ! o ++ rs.s ! np.a };
+	  
+    CleftAdv ad ss = { s = \\t,b,o => ad.s ++ ss.s};
+        
+    ExistNP np = 
+      mkSClause " " (agrPesP3 (fromAgr np.a).n) 
+        (insertObj (\\_ => np.s ! NPC bEzafa) (predAux auxBe)) ;
+
+    ExistIP ip = 
+     let cl = mkSClause ( ip.s ) (agrPesP3 ip.n) (predAux auxBe); 
+	   in {
+       s = \\t,p,qf => case qf of { 
+	      QDir =>   cl.s ! t ! p ! ODir;
+          QIndir => cl.s ! t! p ! ODir
+		  }
+		};
+
+--    ProgrVP vp = insertObj (\\a => vp.obj.s ++ vp.ad ++ vp.comp ! a ++ (vp.s ! VPStem).inf ++ raha (fromAgr a).g (fromAgr a).n ) (predAux auxBe) ;
+    ProgrVP vp =  (predProg vp) ;
+
+
+    ImpPl1 vp = {s = "byAyyd" ++ (vp.s ! VVForm (agrPesP1 Pl)).inf} ;
+	ImpP3 np vp = {s = "bgWAryd" ++ np.s!NPC bEzafa ++ (vp.s ! VVForm (AgPes (fromAgr np.a).n (fromAgr np.a).p)).inf};
+
+
+}
+
diff --git a/lib/src/persian/src/LexiconPes.gf b/lib/src/persian/src/LexiconPes.gf
new file mode 100644
--- /dev/null
+++ b/lib/src/persian/src/LexiconPes.gf
@@ -0,0 +1,374 @@
+--# -path=.:prelude:alltenses
+
+concrete LexiconPes of Lexicon = CatPes ** 
+--open ResPnb, Prelude in {
+  open ParadigmsPes,MorphoPes, Prelude in {
+
+  flags 
+    optimize=values ;
+    coding = utf8;
+
+  lin
+
+  airplane_N = mkN01 "hvApymA" inanimate ;
+  answer_V2S = mkV2  (compoundV "jvAb" (mkV "dAdn" "dh")) "bh" False; 
+  apartment_N = mkN01 "A:pArtmAn" inanimate;
+  apple_N = mkN01 "syb" inanimate;
+  art_N = mkN01 "hnr" inanimate;
+  ask_V2Q = mkV2 (mkV_1 "prsydn") "Az" False;
+  baby_N = mkN01 "bc^h" animate; -- has variant "kvdk"
+  bad_A = mkA "bd" ;
+  bank_N = mkN01 "bAnk" inanimate;
+  beautiful_A = mkA "zybA" ;
+  become_VA = mkV "Cdn" "Cv";
+  beer_N = mkN01 "A:bjv" inanimate;
+  beg_V2V =  mkV2V (compoundV "KvAhC" (mkV "krdn" "kn")) "Az" "" False;
+  big_A = mkA "bzrg" ;
+  bike_N = mkN01 "dvc^rKh" inanimate;
+  bird_N = mkN02 "prndh" animate;
+  black_A =  mkA "syAh" ;
+  blue_A = mkA "A:by" ;
+  boat_N = mkN01 "qAyq" inanimate;
+  book_N = mkN01 "ktAb" inanimate;
+  boot_N = mkN01 "c^kmh" inanimate; -- has variant "pvtyn"
+  boss_N = mkN02 "kArfrmA" animate;
+  boy_N = mkN02 "psr" animate;
+  bread_N = mkN01 "nAn" inanimate;
+  break_V2 = mkV2 (mkV "Ckstn" "Ckn") "rA";
+  broad_A = mkA "vsyc" ;
+  brother_N2 = (mkN01 "brAdr" animate) ** {c=""}; 
+  brown_A = mkA ["qhvh Ay"] ; 
+  butter_N = mkN01 "krh" inanimate;
+  buy_V2 = mkV2 (mkV_1 "Krydn") "rA";
+  camera_N = mkN01 "dvrbyn" inanimate;
+  cap_N = mkCmpdNoun1 "klAh" (mkN01 "kp" animate); 
+  car_N = mkN01 "mACyn" inanimate; -- has variant "Atvmbyl"
+  carpet_N = mkN01 "frC" inanimate;
+  cat_N = mkN01 "grbh" animate;
+  ceiling_N = mkN01 "sqf" inanimate;
+  chair_N = mkN01 "Sndly" inanimate;
+  cheese_N = mkN01 "pnyr" inanimate;
+  child_N = mkN02 "frznd"  animate; -- has variant "bc^h"
+  church_N = mkN01 "klysA"  inanimate;
+  city_N = mkN01 "Chr" inanimate;
+  clean_A = mkA "tmyz" ;
+  clever_A = mkA "bAhvC" ["bA hvCmndy"];  
+  close_V2 =  mkV2 (mkV "bstn" "bnd") "rA"; 
+  coat_N = mkN01 "kt" inanimate;
+  cold_A = mkA "srd" ;
+  come_V = mkV "A:mdn" "A:y" ;
+  computer_N = mkN01 "kAmpyvtr" inanimate; -- also vaiant "rAyAnh"
+  country_N = mkN01 "kCvr" inanimate;
+  
+-- Note: cousin inflects for gender and for being a mother's or a father's relatives in persian
+-- The following is an example which is the daughter of your mom's brother
+  cousin_N = mkCmpdNoun1 "dKtr" (mkN01 "dAyy" animate);  
+  cow_N = mkN01 "gAv" animate;
+  die_V = mkV "mrdn" "myr" ;
+  dirty_A = mkA "kt-yf" ;
+  distance_N3 = (mkN "fASlh" "fvASl" inanimate ) ** {c2="Az" ; c3 = "tA"};
+  doctor_N = mkN01 "dktr" animate; -- has variant "pzCk", but only a doctor in medicine 
+  dog_N = mkN01 "sg" animate;
+  door_N = mkN01 "dr" inanimate;
+  drink_V2 = mkV2 (mkV_1 "nvCydn") "rA";
+--  easy_A2V = mkA "A:sAn" "" ;
+  eat_V2 = mkV2 (mkV_2 "Kvrdn") "rA" ;
+  empty_A = mkA "KAly" ;
+  enemy_N = mkN02 "dCmn" animate;
+  factory_N = mkN01 "kArKAnh" inanimate;
+  father_N2 = (mkN02 "pdr" animate) ** {c=""};
+  fear_VS = mkV_1 "trsydn"; 
+  find_V2 = mkV2 (compoundV "pydA" (mkV "krdn" "kn") ) "rA";  
+  fish_N = mkN01 "mAhy" animate;
+  floor_N = mkN01 "zmyn" inanimate; -- Note: floor in persian can have 3 different translations
+  forget_V2 = mkV2 (compoundV "frAmvC" (mkV "krdn" "kn")) "rA" ; 
+  fridge_N = mkN01 "yKc^Al" inanimate;
+  friend_N = mkN02 "dvst" animate;
+  fruit_N = mkN01 "myvh" inanimate;
+--  fun_AV = mkAV  "jAlb" ;
+  garden_N = mkN01 "bAG" inanimate;
+  girl_N = mkN02 "dKtr" animate;
+  glove_N = mkN01 "dstkC" inanimate;
+  gold_N = mkN01 "TlA" inanimate;
+  good_A = mkA "Kvb" ;
+  go_V = mkV "rftn" "rv";
+  green_A = mkA "sbz" ;
+  harbour_N = mkN "bndr" "bnAdr" inanimate;
+--  hate_V2 = mkV2 (compoundV "mtnfr" (mkToBe "bvdn" "bAC" "hst")) "Az" False; -- needs from/ verb to be
+  hat_N = mkN01 "klAh" inanimate;
+  have_V2 = mkV2 haveVerb "rA" ; 
+  hear_V2 = mkV2 (mkV "Cnydn" "Cnv") "rA" ;
+  hill_N = mkN01 "tph" inanimate;
+--  hope_VS = compoundV "AmydvAr" (mkToBe "bvdn" "bAC" "hst");
+  horse_N = mkN01 "Asb" animate;
+  hot_A = mkA "dAG" ["dAG dAG"] ;
+  house_N = mkN01 "KAnh" inanimate;
+  important_A = mkA "mhm" ["bA Ahmyt"];
+  industry_N = mkN "Snct" "SnAyc" inanimate;
+  iron_N = mkN01 "A:hn" inanimate;
+  king_N = mkN "pAdCAh" "pAdCAhAn" animate;
+  know_V2 = mkV2 (mkV "CnAKtn" "CnAs") "rA";
+  know_VS = (mkV_1 "dAnstn");
+  know_VQ = (mkV_1 "dAnstn") ;
+  lake_N = mkN01 "dryAc^h" inanimate;
+  lamp_N = mkN01 "c^rAG" inanimate; -- also "lAmp", but they have different usage
+  learn_V2 = mkV2 (compoundV "yAd"(mkV "grftn" "gyr")) "rA";
+  leather_N = mkN01 "c^rm" inanimate; -- is uncountable 
+  leave_V2 = mkV2 (compoundV "trk"(mkV "krdn" "kn")) "rA";
+  like_V2 = mkV2 (compoundV "dvst" haveVerb) "rA"; 
+  listen_V2 = mkV2 (compoundV "gvC" (mkV "dAdn" "dh")) "bh" False; -- has a diferent preposition :"bh"
+  live_V = compoundV "zndgy" (mkV "krdn" "kn");
+  long_A = mkA "blnd" ;
+  lose_V2 = mkV2 (compoundV "gm" (mkV "krdn" "kn")) "rA" ; 
+  love_N = mkN01 "cCq" inanimate; 
+  love_V2 = mkV2 (compoundV "dvst" haveVerb) "rA"; -- also possible: love_V2 = mkV2 (compoundV "cACq" (mkToBe "bvdn" "bAC" "hst"));
+  man_N = mkN02 "mrd" animate; 
+  married_A2 = mkA "mtA?hl" "";
+  meat_N = mkN01 "gvCt" inanimate;
+  milk_N = mkN01 "Cyr" inanimate;
+  moon_N = mkN01 "mAh" inanimate; -- is this not a proper noun?
+  mother_N2 = (mkN02 "mAdr" animate) ** {c=""};   
+  mountain_N = mkN01 "kvh" inanimate;
+  music_N = mkN "mvsyqy" "mvsyqy" animate; 
+  narrow_A = mkA "bAryk" ;
+  new_A = mkA "nv" "tAzh";
+  newspaper_N = mkN01 "rvznAmh" inanimate;
+  oil_N = mkN "nft" "nft" inanimate; -- also "rvGn"
+  old_A = mkA "pyr" "pyrAnh";
+  open_V2 = mkV2 (compoundV "bAz" (mkV "krdn" "kn")) "rA";
+  paint_V2A = mkV2 (compoundV "rng" (mkV "krdn" "kn")) "rA" ;
+  paper_N = mkN01 "kAGW" inanimate;
+  paris_PN = mkPN "pArys" inanimate;  
+  peace_N = mkN01 "SlH" inanimate; -- also "A:rAmC"  
+  pen_N = mkN01 "qlm" inanimate; -- has  variant "KvdkAr"
+  planet_N = mkN01 "syv2Arh" inanimate;
+  plastic_N = mkN01 "plAstyk" inanimate; -- is uncountable 
+  play_V2 = mkV2 (mkV "nvAKtn" "nvAz") "rA" ; 
+  policeman_N = mkCmpdNoun2 (mkN02 "mA?mvr" animate) "plys"; 
+  priest_N = mkN01 "kCyC" animate;
+--  probable_AS = mkAS (regA "mHtml") ;
+  queen_N = mkN01 "mlkh" animate;
+  radio_N = mkN01 "rAdyv" inanimate;
+  rain_V0 = compoundV "bArAn" (mkV "A:mdn" "A:y" ) ;
+  read_V2 = mkV2 (mkV_2 "KvAndn") "rA";
+  red_A = mkA "qrmz" ;
+  religion_N = mkN "mWhb" "mWAhb" inanimate;
+  restaurant_N = mkN01 "rstvrAn" inanimate;
+  river_N = mkN01 "rvdKAnh" inanimate;
+  rock_N = mkN01 "SKrh" inanimate;
+  roof_N = mkN01 "bAm" inanimate; -- has  variant "sqf"
+  rubber_N = mkN01 "pAkkn" inanimate; -- also "lAstyk" 
+  run_V = mkV_1 "dvydn" ;
+  say_VS = mkV "gftn" "gvy" ;
+  school_N = mkN "mdrsh" "mdArs" inanimate;
+  science_N = mkN "clm" "clvm" inanimate; -- also "dAnC"
+  sea_N = mkN01 "dryA" inanimate;
+  seek_V2 = mkV2 (compoundV "jstjv" (mkV "krdn" "kn")) "rA";
+  see_V2 = mkV2 (mkV "dydn" "byn") "rA" ;
+  sell_V3 = mkV3 (mkV "frvKtn" "frvC") "rA" "bh"; 
+  send_V3 = mkV3 (mkV_1 "frstAdn") "rA" "brAy"; 
+  sheep_N = mkN01 "gvsfnd" animate;
+  ship_N = mkN01 "kCty" inanimate;
+  shirt_N = mkN01 "pyrAhn" inanimate;
+  shoe_N = mkN01 "kfC" inanimate;
+  shop_N = mkN01 "frvCgAh" inanimate; -- has variant "mGAzh"
+  short_A = mkA "kvtAh" ;
+  silver_N = mkN "nqrh" ["nqrh jAt"] inanimate; -- add new function which applies + "jAt"
+  sister_N = mkN02 "KvAhr" animate;
+  sleep_V = mkV_1 "KvAbydn" ;
+  small_A = mkA "kvc^k" ;
+  snake_N = mkN01 "mAr" animate;
+  sock_N = mkN01 "jvrAb" inanimate;
+  speak_V2 = mkV2 (compoundV "SHbt" (mkV "krdn" "kn")) "bA" False; 
+  star_N = mkN01 "stArh" animate;
+  steel_N = mkN01 "fvlAd" inanimate; -- also "Astyl"
+  stone_N = mkN01 "sng" inanimate;
+  stove_N = mkN01 "AjAq" inanimate;
+  student_N = mkCmpdNoun1 "dAnC" (mkN02 "A:mvz" animate); -- also "dAnCjv"
+  stupid_A = mkA "Ablh" "AblhAnh" ;
+  sun_N = mkN01 "KvrCyd" inanimate; -- is this not a proper noun?!!!
+  switch8off_V2 = mkV2 (compoundV "KAmvC" (mkV "krdn" "kn")) "rA";
+  switch8on_V2 = mkV2 (compoundV "rvCn" (mkV "krdn" "kn")) "rA";
+  table_N = mkN01 "myz" inanimate;
+  talk_V3 = mkV3 (compoundV "Hrf" (mkV "zdn" "zn")) "bA" [" drbArh y"];
+  teacher_N = mkN02 "mclm" animate;
+  teach_V2 = mkV2 (compoundV "A:mvzC" (mkV "dAdn" "dh")) "rA";
+  television_N = mkN01 "tlvzyvn" inanimate;
+  thick_A = mkA "klft" ;
+  thin_A = mkA "nAzk" ;
+  train_N = mkN01 "qTAr" inanimate;
+  travel_V = compoundV "sfr" (mkV "krdn" "kn");
+  tree_N = mkN02 "drKt" animate;
+  trousers_N = mkN01 "ClvAr" inanimate;
+  ugly_A = mkA "zCt" ;
+  understand_V2 = mkV2 (mkV_1 "fhmydn") "rA";
+  university_N = mkN01 "dAnCgAh" inanimate;
+  village_N = mkN01 "rvstA" inanimate;
+--  wait_V2 = mkV2 (compoundV "mntZr" (mkVToBe "bvdn" "bAC")); 
+  walk_V = compoundV  "rAh"  (mkV "rftn" "rv");
+  warm_A = mkA "grm" ;
+  war_N = mkN01 "jng" inanimate;
+--  watch_V2 = mkV2 (compoundV "mrAqb" (mkVToBe "bvdn" "bAC")); -- check harfe rabt!!!
+  water_N = mkN01 "A:b" inanimate;
+  white_A = mkA "sfyd" ;
+  window_N = mkN01 "pnjrh" inanimate;
+  wine_N = mkN01 "CrAb" inanimate;
+  win_V2 = mkV2 (compoundV "brndh" (mkV "Cdn" "Cv")) "rA"; -- also possible with simple verb: mkV_2 "brdn"  
+  woman_N = mkN02 "zn" animate;
+--  wonder_VQ = compoundV "mtcjb" (mkVToBe "bvdn" "bAC") ;  
+  wood_N = mkN01 "c^vb" inanimate;
+  write_V2 = mkV2 (mkV "nvCtn" "nvys") "rA" ;
+  yellow_A = mkA "zrd" ;
+  young_A = mkA "jvAn""jvAnAnh" ;
+  do_V2 = mkV2 (compoundV "AnjAm" (mkV "dAdn" "dh")) "rA";
+  now_Adv = ss "HAlA" ;
+  already_Adv = ss "qblAa." ;
+  song_N = mkN01 "A:vAz" inanimate;
+  add_V3 = mkV3 (compoundV "ADAfh" (mkV "krdn" "kn")) "rA" "bh" ;
+  number_N = mkN01 "cdd" inanimate; -- also "tcdAd"
+  put_V2 = mkV2 (mkV "gWACtn" "gWAr") "rA";
+  stop_V = compoundV "tvqf" (mkV "krdn" "kn");
+  jump_V = mkV_1 "prydn";
+{-
+  left_Ord = {s = "c^p" ; n = singular};
+  right_Ord = {s= "rAst" ; n = singular};
+-}  
+  far_Adv = ss "dvr" ;
+  correct_A = mkA "drst" ;
+  dry_A = mkA "KCk" ["bh KCky"] ;
+  dull_A = mkA ["mlAl A:vr"] ["bh Trzy mlAl A:vr"] ; 
+  full_A = mkA "pr" ;
+  heavy_A = mkA "sngyn" ;
+  near_A = mkA "nzdyk" ;
+  rotten_A = mkA "KrAb" ;
+  round_A = mkA "grd" ;
+  sharp_A = mkA "tyz" ;
+  smooth_A = mkA "nrm" ;
+  straight_A = mkA "mstqym" "mstqymAa.";
+  wet_A = mkA "Kys" ; 
+  wide_A = mkA "phn" ;
+  animal_N = mkN "HyvAn" "HyvAnAt" animate;
+  ashes_N = mkN01 "KAkstr" inanimate; 
+  back_N = mkN01 "kmr" inanimate; 
+  bark_N = mkN01 "cvcv" inanimate;
+  belly_N = mkN01 "Ckm" inanimate;
+  blood_N = mkN01 "Kvn" inanimate;
+  bone_N = mkN01 "AstKvAn" inanimate;
+  breast_N = mkN01 "synh" inanimate;
+  cloud_N = mkN01 "Abr" inanimate;
+  day_N = mkN01 "rvz" inanimate;
+  dust_N = mkN01 "GbAr" inanimate;
+  ear_N = mkN01 "gvC" inanimate;
+  earth_N = mkN01 "zmyn" inanimate; -- also "KAk" 
+  egg_N = mkCmpdNoun1 "tKm" (mkN01 "mrG" inanimate);  
+  eye_N = mkN01 "c^Cm" inanimate ;
+  fat_N = mkN01 "c^rby" inanimate;
+  feather_N = mkN01 "pr" inanimate;
+  fingernail_N = mkN01 "nAKn" inanimate;
+  fire_N = mkN01 "A:tC" inanimate;
+  flower_N = mkN01 "gl" inanimate;
+  fog_N = mkN01 "mh" inanimate;
+  foot_N = mkN01 "pA" inanimate;
+  forest_N = mkN01 "jngl" inanimate;
+  grass_N = mkN01 "c^mn" inanimate;
+  guts_N = mkN01 "ChAmt" inanimate;
+  hair_N = mkN01 "mv" inanimate;
+  hand_N = mkN01 "dst" inanimate;
+  head_N = mkN01 "sr" inanimate;
+  heart_N = mkN01 "qlb" inanimate;
+  horn_N = mkN01 "bvq" inanimate; -- also "CAK"
+  husband_N = mkN02 "Cvhr" animate;
+  ice_N = mkN01 "yK" inanimate;
+  knee_N = mkN01 "zAnv" inanimate;
+  leaf_N = mkN01 "brg" inanimate;
+  leg_N = mkN01 "pA" inanimate;
+  liver_N = mkN01 "rvdKAnh" inanimate;
+  louse_N = mkN01 "CpC" inanimate;
+  mouth_N = mkN01 "dhAn" inanimate;
+  name_N = mkN01 "nAm" inanimate; -- has variant "Asm"
+  neck_N = mkN01 "grdn" inanimate;
+  night_N = mkN01 "Cb" inanimate;
+  nose_N = mkN01 "byny" inanimate;
+  person_N = mkN "CKS" "ACKAS" animate;
+  rain_N = mkN01 "bArAn" inanimate; 
+  road_N = mkN01 "jAdh" inanimate;
+  root_N = mkN01 "ryCh" inanimate;
+  rope_N = mkN01 "TnAb" inanimate;
+  salt_N = mkN01 "nmk" inanimate;
+  sand_N = mkN01 "mAsh" inanimate;
+  seed_N = mkN01 "dAnh"  inanimate;
+  skin_N = mkN01 "pvst" inanimate;
+  sky_N = mkN01 "A:smAn" inanimate;
+  smoke_N = mkN01 "dvd" inanimate;
+  snow_N = mkN01 "brf" inanimate;
+  stick_N = mkN01 "trkh" inanimate;
+  tail_N = mkN01 "dm" inanimate;
+  tongue_N = mkN01 "zbAn" inanimate;
+  tooth_N = mkN01 "dndAn" inanimate;
+  wife_N = mkN02 "hmsr" animate;
+  wind_N = mkN01 "bAd" inanimate;
+  wing_N = mkN01 "bAl" inanimate;
+  worm_N = mkN01 "krm" inanimate;
+  year_N = mkN01 "sAl" inanimate;
+  blow_V = mkV_1 "dmydn" ;
+  breathe_V = compoundV "nfs" (mkV_1 "kCydn");
+  burn_V = mkV "svKtn" "svz" ;
+  dig_V = mkV_2 "kndn" ;
+  fall_V = mkV_1 "AftAdn" ;
+--  float_V = compoundV "CnAvr" (mkToBe "bvdn" "bAC" "hst") ;
+  flow_V = compoundV "jAry" (mkV "Cdn" "Cv") ;
+  fly_V = compoundV "prvAz" (mkV "krdn" "kn") ;
+  freeze_V = compoundV "yK" (mkV "zdn" "zn") ;
+  give_V3 = mkV3 (mkV "dAdn" "dh") "rA" "bh";
+  laugh_V = mkV_1 "Kndydn"  ;
+  lie_N = mkN01 "drvG" inanimate;
+  lie_V = compoundV "drvG" (mkV "gftn" "gv" );
+  play_V = compoundV "bAzy" (mkV "krdn" "kn");
+  sew_V = mkV "dvKtn" "dvz" ;
+  sing_V = compoundV "A:vAz" (mkV_2 "KvAndn");
+  sit_V = mkV "nCstn" "nCyn" ;
+  smell_V = compoundV "bv" (mkV "dAdn" "dh");
+  spit_V = compoundV "tf" (mkV "krdn" "kn");
+  stand_V = mkV_1 "AystAdn";
+  swell_V = compoundV "vrm" (mkV "krdn" "kn");
+  swim_V = compoundV "CnA" (mkV "krdn" "kn");
+  think_V = compoundV "fkr" (mkV "krdn" "kn");
+  turn_V = mkV_1 "c^rKydn" ;
+  vomit_V = compoundV "AstfrAG" (mkV "krdn" "kn");
+  bite_V2 = mkV2 (compoundV "gAz" (mkV "grftn" "gyr")) "rA";
+  count_V2 = mkV2 (mkV_2 "CmArdn") "rA";
+  cut_V2 = mkV2 (mkV_1 "brydn") ;
+  fear_V2 = mkV2 (mkV_1 "trsydn") "Az";
+  fight_V2 = mkV2 (mkV_1 "jngydn") "bA" False;
+  hit_V2 = mkV2 (compoundV "Drbh" (mkV "zdn" "zn")) "bh" False;
+  hold_V2 = mkV2 (compoundV "ngh" haveVerb) "rA";
+  hunt_V2 = mkV2 (compoundV "CkAr" (mkV "krdn" "kn")) "rA";
+  kill_V2 = mkV2 ( mkV_2 "kCtn") "rA";
+  pull_V2 = mkV2 (mkV_1 "kCydn") "rA";
+  push_V2 = mkV2 (compoundV "hl" (mkV "dAdn" "dh")) "rA" ;
+  rub_V2 = mkV2 (mkV_1 "mAlydn") "rA";
+  scratch_V2 = mkV2 (mkV_1 "KrACydn") "rA" ;
+  split_V2 = mkV2 (compoundV "tqsym" (mkV "krdn" "kn")) "rA";
+  squeeze_V2 = mkV2 (compoundV "lh" (mkV "krdn" "kn")) "rA";
+  stab_V2 = mkV2 (compoundV "c^Aqv" (mkV "zdn" "zn")) "bh" False; 
+  suck_V2 = mkV2 (mkV_1 "mkydn") "rA" ;
+  throw_V2 = mkV2 (compoundV "prtAb" (mkV "krdn" "kn")) "rA";
+  tie_V2 = mkV2 (compoundV "grh" (mkV "zdn" "zn")) "rA";
+  wash_V2 = mkV2 (mkV "Cstn" "Cvr") "rA" ; -- also "Cvy" which is the very formal form of the present root
+  wipe_V2 = mkV2 (compoundV "pAk" (mkV "krdn" "kn")) "rA";
+
+----  other_A = regA "dygr" ;
+
+  grammar_N = mkCmpdNoun1 "dstvr" (mkN01 "zbAn" inanimate);  
+  language_N = mkN01 "zbAn" inanimate;
+  rule_N = mkN "qAnvn" "qvAnyn" inanimate;
+
+---- added 4/6/2007
+    john_PN = mkPN "jAn" inanimate; 
+    question_N = mkN01 "sw?Al" inanimate; -- has variant "prsC"
+    ready_A = mkA "A:mAdh" ["bA A:mAdgy"] ;
+    reason_N = mkN "dlyl" "dlAyl" inanimate;
+    today_Adv = ss "Amrvz" ;
+    uncertain_A = mkA "nAmclvm" ["bA trdyd"];
+     
+}
diff --git a/lib/src/persian/src/MorphoPes.gf b/lib/src/persian/src/MorphoPes.gf
new file mode 100644
--- /dev/null
+++ b/lib/src/persian/src/MorphoPes.gf
@@ -0,0 +1,507 @@
+--# -path=.:../../prelude
+--
+----1 A Simple Punjabi Resource Morphology
+----
+----  Shafqat Virk, Aarne Ranta,2010
+----
+---- This resource morphology contains definitions needed in the resource
+---- syntax. To build a lexicon, it is better to use $ParadigmsPnb$, which
+---- gives a higher-level access to this module.
+--
+resource MorphoPes = ResPes ** open Prelude,Predef in {
+
+  flags optimize=all ;
+   coding = utf8;
+
+----2 Nouns
+
+oper
+    
+    mkN : (x1,x2 : Str) -> Animacy -> Noun = 
+      \sg,pl,ani -> {
+      s = table {
+         bEzafa => table { Sg => sg ;
+                           Pl => pl
+                        } ;
+         aEzafa => table { Sg => mkEzafa sg ;
+                           Pl => mkEzafa pl
+                         } ;
+         enClic => table { Sg => mkEnclic sg ;
+                           Pl => mkEnclic pl
+                         }                
+          };
+      animacy = ani ;
+      definitness = True
+      } ;
+    
+    
+    
+-- masculine nouns end with alif, choTi_hay, ain Translitration: (a, h, e)
+-- Arabic nouns ends with h. also taken as Masc
+  ------------------------------------------------------------------
+----Verbs
+------------------------------------------------------------------
+{- 
+ mkVerb : (x1,x2 : Str) -> Verb = \inf,root2 ->
+   let root1  = (tk 1 inf) ;    
+    in { 
+     s = table {
+
+     Root1     => root1 ;
+     Root2     => root2 ;
+     Inf      => inf ;
+
+     VF tense aspect person number   => (mkCmnVF root1 root2 tense aspect person number).s 
+--     Caus1 tense person number gender => (mkCmnVF root1 tense person number gender).s ;
+--     Caus2 tense person number gender => (mkCmnVF root2 tense person number gender).s 
+    }
+  } ;
+
+--1. Basic stem form, direct & indirect causatives exists
+-- v1 nechna nechaana nechwana
+
+  mkVerb1 : (_: Str) -> Verb = \inf ->
+   let root1  = (tk 1 inf) ; 
+       root2 = (tk 3 inf)  ;    
+    in { 
+     s = table {
+
+     Root1     => root1 ;
+     Root2     => root2 ;
+     Inf      => inf ;
+
+     VF tense aspect person number   => (mkCmnVF root1 root2 tense aspect person number).s 
+--     Caus1 tense person number gender => (mkCmnVF root1 tense person number gender).s ;
+--     Caus2 tense person number gender => (mkCmnVF root2 tense person number gender).s 
+    }
+  } ;
+
+
+mkVerb2 : (_: Str) -> Verb = \inf ->
+   let root1  = (tk 1 inf) ; 
+       root2 = (tk 2 inf)  ;    
+    in { 
+     s = table {
+
+     Root1     => root1 ;
+     Root2     => root2 ;
+     Inf      => inf ;
+
+     VF tense aspect person number   => (mkCmnVF root1 root2 tense aspect person number).s 
+--     Caus1 tense person number gender => (mkCmnVF root1 tense person number gender).s ;
+--     Caus2 tense person number gender => (mkCmnVF root2 tense person number gender).s 
+    }
+  } ;
+
+
+
+mkCmnVF : Str -> Str -> VTense -> PAspect -> PPerson -> Number -> {s:Str}= \root1,root2,t,a,p,n ->
+  {s  = (mkCmnVF1 root1 root2 t a p n).s ;
+   };
+  
+
+ mkCmnVF1 : Str -> Str -> VTense -> PAspect -> PPerson -> Number -> {s:Str}= \root1,root2,t,a,p,n ->
+  {s = let khordh = root1 + "h";
+           mekhor = "my" ++ root2 ;
+	   mekhord = "my" ++ root1 ;
+	   mekhordh = "my" ++ khordh ;
+	   khah = "KvAh" ;
+	   mekhah = "my" ++ khah ;
+	   bvdh = "bvdh"
+  in
+  case <t,a,p,n> of {
+    <PPresent,PPerf,PPers1,Sg> => khordh ++ "Am" ;
+    <PPresent,PPerf,PPers1,Pl> => khordh ++ "Aym" ;
+    <PPresent,PPerf,PPers2,Sg> => khordh ++ "Ay" ;
+    <PPresent,PPerf,PPers2,Pl> => khordh ++ "Ayd" ;
+    <PPresent,PPerf,PPers3,Sg> => khordh ++ "Ast" ;
+    <PPresent,PPerf,PPers3,Pl> => khordh ++ "And" ;
+    
+    <PPresent,PImperf,PPers1,Sg> => mekhor + "m" ; -- toHave need to have khor instead of mekhor
+    <PPresent,PImperf,PPers1,Pl> => mekhor + "ym" ;
+    <PPresent,PImperf,PPers2,Sg> => mekhor + "y" ;
+    <PPresent,PImperf,PPers2,Pl> => mekhor + "yd" ;
+    <PPresent,PImperf,PPers3,Sg> => mekhor + "d" ;
+    <PPresent,PImperf,PPers3,Pl> => mekhor + "nd" ;
+    
+    <PPresent,Aorist,PPers1,Sg> => "" ;
+    <PPresent,Aorist,PPers1,Pl> => "" ;
+    <PPresent,Aorist,PPers2,Sg> => "" ;
+    <PPresent,Aorist,PPers2,Pl> => "" ;
+    <PPresent,Aorist,PPers3,Sg> => "" ;
+    <PPresent,Aorist,PPers3,Pl> => "" ;
+    
+    <PPast,PPerf,PPers1,Sg> => khordh ++ "bvdm" ;
+    <PPast,PPerf,PPers1,Pl> => khordh ++ "bvdym" ;
+    <PPast,PPerf,PPers2,Sg> => khordh ++ "bvdy" ;
+    <PPast,PPerf,PPers2,Pl> => khordh ++ "bvdyd" ;
+    <PPast,PPerf,PPers3,Sg> => khordh ++ "bvd" ;
+    <PPast,PPerf,PPers3,Pl> => khordh ++ "bvdnd" ;
+    
+    <PPast,PImperf,PPers1,Sg> => mekhord + "m" ; -- toHave need to have khor instead of mekhor
+    <PPast,PImperf,PPers1,Pl> => mekhord + "ym" ;
+    <PPast,PImperf,PPers2,Sg> => mekhord  + "y";
+    <PPast,PImperf,PPers2,Pl> => mekhord + "yd" ;
+    <PPast,PImperf,PPers3,Sg> => mekhord ;
+    <PPast,PImperf,PPers3,Pl> => mekhord + "nd" ;
+    
+    <PPast,Aorist,PPers1,Sg> => root1 + "m" ;
+    <PPast,Aorist,PPers1,Pl> => root1 + "ym" ;
+    <PPast,Aorist,PPers2,Sg> => root1  + "y";
+    <PPast,Aorist,PPers2,Pl> => root1 + "yd" ;
+    <PPast,Aorist,PPers3,Sg> => root1 ;
+    <PPast,Aorist,PPers3,Pl> => root1 + "nd" ;
+    
+    -- check this one
+    <PFut,PPerf,PPers1,Sg> => "" ;
+    <PFut,PPerf,PPers1,Pl> => "" ;
+    <PFut,PPerf,PPers2,Sg> => "" ;
+    <PFut,PPerf,PPers2,Pl> => "" ;
+    <PFut,PPerf,PPers3,Sg> => "" ;
+    <PFut,PPerf,PPers3,Pl> => "" ;
+    
+    <PFut,PImperf,PPers1,Sg> => mekhah + "m"   ++ addBh root2 + "m" ;
+    <PFut,PImperf,PPers1,Pl> => mekhah + "ym" ++  addBh root2 + "ym" ;
+    <PFut,PImperf,PPers2,Sg> => mekhah + "y" ++  addBh root2 + "y" ;
+    <PFut,PImperf,PPers2,Pl> => mekhah + "yd" ++  addBh root2 + "yd" ;
+    <PFut,PImperf,PPers3,Sg> => mekhah + "d" ++  addBh root2 + "d" ;
+    <PFut,PImperf,PPers3,Pl> => mekhah + "nd" ++  addBh root2 + "nd" ;
+    
+    <PFut,Aorist,PPers1,Sg> => khah + "m"  ++ root1  ;
+    <PFut,Aorist,PPers1,Pl> => khah + "ym"  ++ root1 ;
+    <PFut,Aorist,PPers2,Sg> => khah + "y"  ++ root1 ;
+    <PFut,Aorist,PPers2,Pl> => khah + "yd"  ++ root1 ;
+    <PFut,Aorist,PPers3,Sg> => khah + "d"  ++ root1 ;
+    <PFut,Aorist,PPers3,Pl> => khah + "nd"  ++ root1  ;
+    
+    
+    <Infr_Past,PPerf,PPers1,Sg> => khordh ++ bvdh ++ "Am" ;
+    <Infr_Past,PPerf,PPers1,Pl> => khordh ++ bvdh ++ "Aym" ;
+    <Infr_Past,PPerf,PPers2,Sg> => khordh ++ bvdh ++ "Ay" ;
+    <Infr_Past,PPerf,PPers2,Pl> => khordh ++ bvdh ++ "Ayd" ;
+    <Infr_Past,PPerf,PPers3,Sg> => khordh ++ bvdh ++ "Ast" ;
+    <Infr_Past,PPerf,PPers3,Pl> => khordh ++ bvdh ++ "And" ;
+    
+    <Infr_Past,PImperf,PPers1,Sg> => mekhordh ++ "Am" ;  -- toHave need to have khordh instead of mekhor
+    <Infr_Past,PImperf,PPers1,Pl> => mekhordh ++ "Aym" ;
+    <Infr_Past,PImperf,PPers2,Sg> => mekhordh ++ "Ay" ;
+    <Infr_Past,PImperf,PPers2,Pl> => mekhordh ++ "Ayd" ;
+    <Infr_Past,PImperf,PPers3,Sg> => mekhordh ++ "Ast" ;
+    <Infr_Past,PImperf,PPers3,Pl> => mekhordh ++ "And" ;
+    
+    
+    -- check this one
+    <Infr_Past,Aorist,PPers1,Sg> => "" ;
+    <Infr_Past,Aorist,PPers1,Pl> => "" ;
+    <Infr_Past,Aorist,PPers2,Sg> => "" ;
+    <Infr_Past,Aorist,PPers2,Pl> => "" ;
+    <Infr_Past,Aorist,PPers3,Sg> => "" ;
+    <Infr_Past,Aorist,PPers3,Pl> => "" 
+    
+    
+  }
+ } ;
+ -}
+ mkVerb : (x1,x2 : Str) -> Verb = \inf,root2 ->
+   let root1  = (tk 1 inf) ;
+   impRoot = mkimpRoot root2;
+    in { 
+     s = table {
+
+     Root1     => root1 ;
+     Root2     => root2 ;
+     Inf      => inf ;
+     Imp Pos Sg => addBh impRoot ;
+     Imp Pos Pl => (addBh impRoot) + "yd" ;
+     Imp Neg Sg => "n" + impRoot ;
+     Imp Neg Pl => "n" +  impRoot + "yd" ;
+
+     VF pol tense person number   => (mkCmnVF root1 root2 pol tense person number).s ;
+--     VF Neg tense person number   => addN (mkCmnVF root1 root2 tense person number).s ;
+     Vvform (AgPes number person) => (mkvVform root2 number person).s
+   }
+  } ;
+
+ mkVerb1 : (_: Str) -> Verb = \inf ->
+   let root1  = (tk 1 inf) ; 
+       root2 = (tk 3 inf)  ;
+       impRoot = mkimpRoot root2 ;
+    in { 
+     s = table {
+
+     Root1     => root1 ;
+     Root2     => root2 ;
+     Inf      => inf ;
+     Imp Pos Sg => addBh impRoot ;
+     Imp Pos Pl => (addBh impRoot) + "yd" ;
+     Imp Neg Sg => "n" + impRoot ;
+     Imp Neg Pl => "n" +  impRoot + "yd" ;
+
+     VF pol tense person number   => (mkCmnVF root1 root2 pol tense person number).s ;
+--     VF Neg tense person number   => addN (mkCmnVF root1 root2 tense person number).s ;
+     Vvform (AgPes number person) => (mkvVform root2 number person).s
+     }
+    };
+    
+  
+mkVerb2 : (_: Str) -> Verb = \inf ->
+   let root1  = (tk 1 inf) ; 
+       root2 = (tk 2 inf)  ;
+       impRoot = mkimpRoot root2 ;
+    in { 
+     s = table {
+
+     Root1     => root1 ;
+     Root2     => root2 ;
+     Inf      => inf ;
+     Imp Pos Sg => addBh impRoot ;
+     Imp Pos Pl => (addBh impRoot) + "yd" ;
+     Imp Neg Sg => "n" + impRoot ;
+     Imp Neg Pl => "n" +  impRoot + "yd" ;
+
+     VF pol tense person number   => (mkCmnVF root1 root2 pol tense person number).s ;
+--     VF Neg tense person number   => addN (mkCmnVF root1 root2 tense person number).s ;
+     Vvform (AgPes number person) => (mkvVform root2 number person).s
+    }
+  } ;
+  
+  mkHave : Verb = 
+  
+     { 
+     s = table {
+
+     Root1     => "dACt" ;
+     Root2     => "dAr" ;
+     Inf      => "dACtn" ;
+     Imp Pos Sg => ["dACth bAC"] ;
+     Imp Pos Pl => ["dACth bACyd"];
+     Imp Neg Sg => ["ndACth bAC"]  ;
+     Imp Neg Pl => ["ndACth bACyd"] ;
+
+     VF pol tense person number   => (toHave pol tense number person).s ;
+--     VF Neg tense person number   => addN (mkCmnVF root1 root2 tense person number).s ;
+     Vvform (AgPes Sg PPers1) => ["dACth bACm"] ;
+     Vvform (AgPes Sg PPers2) => ["dACth bACy"] ;
+     Vvform (AgPes Sg PPers3) => ["dACth bACd"] ;
+     Vvform (AgPes Pl PPers1) => ["dACth bACym"] ;
+     Vvform (AgPes Pl PPers2) => ["dACth bACyd"] ;
+     Vvform (AgPes Pl PPers3) => ["dACth bACnd"] 
+    }
+  } ;
+  
+  
+mkCmnVF : Str -> Str -> Polarity -> VTense2 ->  PPerson -> Number -> {s:Str}= \root1,root2,pol,t,p,n ->
+  {s  = (mkCmnVF1 root1 root2 pol t p n).s ;
+   };
+  
+
+ mkCmnVF1 : Str -> Str -> Polarity -> VTense2 -> PPerson -> Number -> {s:Str}= \root1,root2,pol,t,p,n ->
+  {s = let khordh = root1 + "h";
+           nkhordh = (addN root1) + "h" ;
+           mekhor = "my" ++ root2 ;
+	   nmekhor =  "nmy" ++ root2 ;
+	   mekhord = "my" ++ root1 ;
+	   nmekhord = "nmy" ++ root1 ;
+	   mekhordh = "my" ++ khordh ;
+	   nmekhordh = "nmy" ++ khordh ;
+	   khah = "KvAh" ;
+	   nkhah = "nKvAh" ;
+	   mekhah = "my" ++ khah ;
+	   nmekhah = "nmy" ++ khah ;
+	   bvdh = "bvdh"
+  in
+  case <pol,t,p,n> of {
+    <Pos,PPresent2 PrPerf,PPers1,Sg> => khordh ++ "Am" ;  
+    <Pos,PPresent2 PrPerf,PPers1,Pl> => khordh ++ "Aym" ;
+    <Pos,PPresent2 PrPerf,PPers2,Sg> => khordh ++ "Ay" ;
+    <Pos,PPresent2 PrPerf,PPers2,Pl> => khordh ++ "Ayd" ;
+    <Pos,PPresent2 PrPerf,PPers3,Sg> => khordh ++ "Ast" ;
+    <Pos,PPresent2 PrPerf,PPers3,Pl> => khordh ++ "And" ;
+    
+    <Pos,PPresent2 PrImperf,PPers1,Sg> => mekhor + "m" ;
+    <Pos,PPresent2 PrImperf,PPers1,Pl> => mekhor + "ym" ;
+    <Pos,PPresent2 PrImperf,PPers2,Sg> => mekhor + "y" ;
+    <Pos,PPresent2 PrImperf,PPers2,Pl> => mekhor + "yd" ;
+    <Pos,PPresent2 PrImperf,PPers3,Sg> => mekhor + "d" ;
+    <Pos,PPresent2 PrImperf,PPers3,Pl> => mekhor + "nd" ;
+    
+    
+    <Pos,PPast2 PstPerf,PPers1,Sg> => khordh ++ "bvdm" ;
+    <Pos,PPast2 PstPerf,PPers1,Pl> => khordh ++ "bvdym" ;
+    <Pos,PPast2 PstPerf,PPers2,Sg> => khordh ++ "bvdy" ;
+    <Pos,PPast2 PstPerf,PPers2,Pl> => khordh ++ "bvdyd" ;
+    <Pos,PPast2 PstPerf,PPers3,Sg> => khordh ++ "bvd" ;
+    <Pos,PPast2 PstPerf,PPers3,Pl> => khordh ++ "bvdnd" ;
+    
+    <Pos,PPast2 PstImperf,PPers1,Sg> => mekhord + "m" ;
+    <Pos,PPast2 PstImperf,PPers1,Pl> => mekhord + "ym" ;
+    <Pos,PPast2 PstImperf,PPers2,Sg> => mekhord  + "y";
+    <Pos,PPast2 PstImperf,PPers2,Pl> => mekhord + "yd" ;
+    <Pos,PPast2 PstImperf,PPers3,Sg> => mekhord ;
+    <Pos,PPast2 PstImperf,PPers3,Pl> => mekhord + "nd" ;
+    
+    <Pos,PPast2 PstAorist,PPers1,Sg> => root1 + "m" ;
+    <Pos,PPast2 PstAorist,PPers1,Pl> => root1 + "ym" ;
+    <Pos,PPast2 PstAorist,PPers2,Sg> => root1  + "y";
+    <Pos,PPast2 PstAorist,PPers2,Pl> => root1 + "yd" ;
+    <Pos,PPast2 PstAorist,PPers3,Sg> => root1 ;
+    <Pos,PPast2 PstAorist,PPers3,Pl> => root1 + "nd" ;
+    
+   {- 
+    <Pos,PFut2 FtImperf,PPers1,Sg> => mekhah + "m"   ++ addBh root2 + "m" ;
+    <Pos,PFut2 FtImperf,PPers1,Pl> => mekhah + "ym" ++  addBh root2 + "ym" ;
+    <Pos,PFut2 FtImperf,PPers2,Sg> => mekhah + "y" ++  addBh root2 + "y" ;
+    <Pos,PFut2 FtImperf,PPers2,Pl> => mekhah + "yd" ++  addBh root2 + "yd" ;
+    <Pos,PFut2 FtImperf,PPers3,Sg> => mekhah + "d" ++  addBh root2 + "d" ;
+    <Pos,PFut2 FtImperf,PPers3,Pl> => mekhah + "nd" ++  addBh root2 + "nd" ;
+    -}
+    <Pos,PFut2 FtAorist,PPers1,Sg> => khah + "m"  ++ root1  ;
+    <Pos,PFut2 FtAorist,PPers1,Pl> => khah + "ym"  ++ root1 ;
+    <Pos,PFut2 Ftorist,PPers2,Sg> => khah + "y"  ++ root1 ;
+    <Pos,PFut2 FtAorist,PPers2,Pl> => khah + "yd"  ++ root1 ;
+    <Pos,PFut2 FtAorist,PPers3,Sg> => khah + "d"  ++ root1 ;
+    <Pos,PFut2 FtAorist,PPers3,Pl> => khah + "nd"  ++ root1  ;
+    
+    
+    <Pos,Infr_Past2 InfrPerf,PPers1,Sg> => khordh ++ bvdh ++ "Am" ;
+    <Pos,Infr_Past2 InfrPerf,PPers1,Pl> => khordh ++ bvdh ++ "Aym" ;
+    <Pos,Infr_Past2 InfrPerf,PPers2,Sg> => khordh ++ bvdh ++ "Ay" ;
+    <Pos,Infr_Past2 InfrPerf,PPers2,Pl> => khordh ++ bvdh ++ "Ayd" ;
+    <Pos,Infr_Past2 InfrPerf,PPers3,Sg> => khordh ++ bvdh ++ "Ast" ;
+    <Pos,Infr_Past2 InfrPerf,PPers3,Pl> => khordh ++ bvdh ++ "And" ;
+    
+    <Pos,Infr_Past2 InfrImperf,PPers1,Sg> => mekhordh ++ "Am" ;
+    <Pos,Infr_Past2 InfrImperf,PPers1,Pl> => mekhordh ++ "Aym" ;
+    <Pos,Infr_Past2 InfrImperf,PPers2,Sg> => mekhordh ++ "Ay" ;
+    <Pos,Infr_Past2 InfrImperf,PPers2,Pl> => mekhordh ++ "Ayd" ;
+    <Pos,Infr_Past2 InfrImperf,PPers3,Sg> => mekhordh ++ "Ast" ;
+    <Pos,Infr_Past2 InfrImperf,PPers3,Pl> => mekhordh ++ "And" ;
+    
+ -- negatives
+ 
+    <Neg,PPresent2 PrPerf,PPers1,Sg> => addN khordh ++ "Am" ;  
+    <Neg,PPresent2 PrPerf,PPers1,Pl> => addN khordh ++ "Aym" ;
+    <Neg,PPresent2 PrPerf,PPers2,Sg> => addN khordh ++ "Ay" ;
+    <Neg,PPresent2 PrPerf,PPers2,Pl> => addN khordh ++ "Ayd" ;
+    <Neg,PPresent2 PrPerf,PPers3,Sg> => addN khordh ++ "Ast" ;
+    <Neg,PPresent2 PrPerf,PPers3,Pl> => addN khordh ++ "And" ;
+    
+    
+    <Neg,PPresent2 PrImperf,PPers1,Sg> => nmekhor + "m" ;
+    <Neg,PPresent2 PrImperf,PPers1,Pl> => nmekhor + "ym" ;
+    <Neg,PPresent2 PrImperf,PPers2,Sg> => nmekhor + "y" ;
+    <Neg,PPresent2 PrImperf,PPers2,Pl> => nmekhor + "yd" ;
+    <Neg,PPresent2 PrImperf,PPers3,Sg> => nmekhor + "d" ;
+    <Neg,PPresent2 PrImperf,PPers3,Pl> => nmekhor + "nd" ;
+         
+    <Neg,PPast2 PstPerf,PPers1,Sg> => nkhordh ++ "bvdm" ;
+    <Neg,PPast2 PstPerf,PPers1,Pl> => nkhordh ++ "bvdym" ;
+    <Neg,PPast2 PstPerf,PPers2,Sg> => nkhordh ++ "bvdy" ;
+    <Neg,PPast2 PstPerf,PPers2,Pl> => nkhordh ++ "bvdyd" ;
+    <Neg,PPast2 PstPerf,PPers3,Sg> => nkhordh ++ "bvd" ;
+    <Neg,PPast2 PstPerf,PPers3,Pl> => nkhordh ++ "bvdnd" ;
+      
+    <Neg,PPast2 PstImperf,PPers1,Sg> => nmekhord + "m" ;
+    <Neg,PPast2 PstImperf,PPers1,Pl> => nmekhord + "ym" ;
+    <Neg,PPast2 PstImperf,PPers2,Sg> => nmekhord  + "y";
+    <Neg,PPast2 PstImperf,PPers2,Pl> => nmekhord + "yd" ;
+    <Neg,PPast2 PstImperf,PPers3,Sg> => nmekhord ;
+    <Neg,PPast2 PstImperf,PPers3,Pl> => nmekhord + "nd" ;
+  
+ 
+    <Neg,PPast2 PstAorist,PPers1,Sg> => addN root1 + "m" ;
+    <Neg,PPast2 PstAorist,PPers1,Pl> => addN root1 + "ym" ;
+    <Neg,PPast2 PstAorist,PPers2,Sg> => addN root1  + "y";
+    <Neg,PPast2 PstAorist,PPers2,Pl> => addN root1 + "yd" ;
+    <Neg,PPast2 PstAorist,PPers3,Sg> => addN root1 ;
+    <Neg,PPast2 PstAorist,PPers3,Pl> => addN root1 + "nd" ;
+      
+ {-     
+    <Neg,PFut2 FtImperf,PPers1,Sg> => nmekhah + "m"   ++ addBh root2 + "m" ;
+    <Neg,PFut2 FtImperf,PPers1,Pl> => nmekhah + "ym" ++  addBh root2 + "ym" ;
+    <Neg,PFut2 FtImperf,PPers2,Sg> => nmekhah + "y" ++  addBh root2 + "y" ;
+    <Neg,PFut2 FtImperf,PPers2,Pl> => nmekhah + "yd" ++  addBh root2 + "yd" ;
+    <Neg,PFut2 FtImperf,PPers3,Sg> => nmekhah + "d" ++  addBh root2 + "d" ;
+    <Neg,PFut2 FtImperf,PPers3,Pl> => nmekhah + "nd" ++  addBh root2 + "nd" ;
+ -}   
+    <Neg,PFut2 FtAorist,PPers1,Sg> => nkhah + "m"  ++ root1  ;
+    <Neg,PFut2 FtAorist,PPers1,Pl> => nkhah + "ym"  ++ root1 ;
+    <Neg,PFut2 Ftorist,PPers2,Sg> => nkhah + "y"  ++ root1 ;
+    <Neg,PFut2 FtAorist,PPers2,Pl> => nkhah + "yd"  ++ root1 ;
+    <Neg,PFut2 FtAorist,PPers3,Sg> => nkhah + "d"  ++ root1 ;
+    <Neg,PFut2 FtAorist,PPers3,Pl> => nkhah + "nd"  ++ root1  ;
+    
+   
+    <Neg,Infr_Past2 InfrPerf,PPers1,Sg> => nkhordh ++ bvdh ++ "Am" ;
+    <Neg,Infr_Past2 InfrPerf,PPers1,Pl> => nkhordh ++ bvdh ++ "Aym" ;
+    <Neg,Infr_Past2 InfrPerf,PPers2,Sg> => nkhordh ++ bvdh ++ "Ay" ;
+    <Neg,Infr_Past2 InfrPerf,PPers2,Pl> => nkhordh ++ bvdh ++ "Ayd" ;
+    <Neg,Infr_Past2 InfrPerf,PPers3,Sg> => nkhordh ++ bvdh ++ "Ast" ;
+    <Neg,Infr_Past2 InfrPerf,PPers3,Pl> => nkhordh ++ bvdh ++ "And" ;
+    
+    <Neg,Infr_Past2 InfrImperf,PPers1,Sg> => nmekhordh ++ "Am" ;
+    <Neg,Infr_Past2 InfrImperf,PPers1,Pl> => nmekhordh ++ "Aym" ;
+    <Neg,Infr_Past2 InfrImperf,PPers2,Sg> => nmekhordh ++ "Ay" ;
+    <Neg,Infr_Past2 InfrImperf,PPers2,Pl> => nmekhordh ++ "Ayd" ;
+    <Neg,Infr_Past2 InfrImperf,PPers3,Sg> => nmekhordh ++ "Ast" ;
+    <Neg,Infr_Past2 InfrImperf,PPers3,Pl> => nmekhordh ++ "And" 
+   
+     
+     }
+     
+   } ;
+   
+  mkvVform : Str -> Number -> PPerson -> {s: Str} = \root2,n,p ->
+  {s =
+    case <n,p> of {
+     <Sg,PPers1> => addBh root2 + "m" ;
+     <Sg,PPers2> => addBh root2 + "y" ;
+     <Sg,PPers3> => addBh root2 + "d" ;
+     <Pl,PPers1> => addBh root2 + "ym" ;
+     <Pl,PPers2> => addBh root2 + "yd" ;
+     <Pl,PPers3> => addBh root2 + "nd" 
+     }
+    };
+
+ mkimpRoot : Str -> Str ;
+ mkimpRoot root =
+             case root of {
+                   st + "y" => st ;
+                   _        => root
+                   };
+
+
+addBh : Str -> Str ;
+addBh str = 
+            case (take 1 str) of { 
+	       "A" => "by" + str ;  
+	       "A:" => "byA" + (drop 1 str) ;
+	       _    => "b" + str
+       };
+       
+ ---------------------
+ --Determiners
+ --------------------
+ 
+ makeDet : Str -> Number -> Bool -> {s: Str ; n : Number ; isNum : Bool ; fromPron : Bool} =\str,n,b -> {
+      s = str;
+      isNum = b;
+      fromPron = False ;
+      n = n
+   };
+ makeQuant : Str -> Str  -> {s : Number => Str ; a : AgrPes ; fromPron : Bool } = \sg,pl -> {
+            s = table {Sg => sg ; Pl => pl} ;
+            fromPron = False ;
+	    a = agrPesP3 Sg
+	    };
+---------------------------
+-- Adjectives
+--------------------------
+mkAdj : Str -> Str -> Adjective = \adj,adv -> {
+ s = table { bEzafa => adj;
+             aEzafa => mkEzafa adj ;
+             enClic => mkEnclic adj
+            } ;
+  adv = adv          
+  };
+}
diff --git a/lib/src/persian/src/NumeralPes.gf b/lib/src/persian/src/NumeralPes.gf
new file mode 100644
--- /dev/null
+++ b/lib/src/persian/src/NumeralPes.gf
@@ -0,0 +1,140 @@
+--# -path=.:../abstract:../common:
+concrete NumeralPes of Numeral = CatPes [Numeral,Digits] ** open ResPes,Prelude in {
+
+flags coding = utf8;
+
+param DForm = unit | teen | ten | hundreds |thousands;
+param DSize = sg | r2 | r3 | r4 | r5 | r6 | r7 | r8 | r9 ;
+param Size = singl | less100 | more100 ; 
+
+
+lincat 
+  Digit = {s : DForm => CardOrd => Str} ;
+  Sub10 = {s : DForm => CardOrd => Str ; n : Number} ;
+  Sub100     = {s : CardOrd => Str ; n : Number} ;
+  Sub1000    = {s : CardOrd => Str ; n : Number} ;
+  Sub1000000 = {s : CardOrd => Str ; n : Number} ;
+
+lin num x = x ;
+-- 2     12     20    200             
+lin n2 = mkNum  "dv"     "dvAzdh"   "byst"     "dvyst" ;       
+lin n3 = mkNum3   "sh"     "syzdh"    "sy"       "sySd"   "svm"  ;
+lin n4 = mkNum  "c^hAr"   "c^hArdh"   "c^hl"      "c^hArSd"  ;
+lin n5 = mkNum  "pnj"    "pAnzdh"   "pnjAh"    "pAnSd"  ;
+lin n6 = mkNum   "CC"     "CAnzdh"   "CSt"      "CCSd" ;
+lin n7 = mkNum  "hft"    "hfdh"     "hftAd"    "hftSd"  ;
+lin n8 = mkNum  "hCt"    "hjdh"     "hCtAd"    "hCtSd"   ;
+lin n9 = mkNum   "nh"     "nvzdh"    "nvd"      "nhSd"  ;
+
+lin pot01 = mkNum3  "yk"   "yAzdh"  "dh"   "ykSd"   "hzAr"    ** {n = Sg} ;
+
+lin pot0 d = d ** {n = Pl} ;
+
+lin pot110 = {s = table { NCard => "dh" ; 
+                          NOrd   => "dhm" };
+               n = Pl} ;
+lin pot111 = {s = table { NCard => "yAzdh" ; 
+                          NOrd   => "yAzdhm" };
+               n = Pl};
+
+lin pot1to19 d = {s = d.s ! teen} ** {n = Pl} ;
+lin pot0as1 n = {s = n.s ! unit}  ** {n = n.n} ;
+lin pot1 d = {s = d.s ! ten} ** {n = Pl} ;
+
+lin pot1plus d e = {
+   s = \\o => d.s ! ten ! NCard ++"v" ++e.s ! unit ! o ; n = Pl} ;
+
+lin pot1as2 n = n ;
+
+lin pot2 d = {s = d.s ! hundreds}  ** {n = Pl} ;
+lin pot2plus d e = {
+  s = \\o => d.s ! hundreds ! NCard  ++ "v" ++ e.s ! o  ; n = Pl} ; -- remove "??"
+
+lin pot2as3 n = n ;
+
+lin pot3 n = { s = \\o => n.s ! NCard ++  "hzAr" ; n = Pl} ;
+
+lin pot3plus n m = {
+  s = \\o => n.s ! NCard ++ "hzAr" ++ "v" ++ m.s ! o; n = Pl} ; -- missing word "????????" after NCard
+
+-- numerals as sequences of digits
+
+  lincat 
+    Dig = TDigit ;
+   
+  lin
+    IDig d = d ** {tail = T1} ;
+{-
+   IIDig d i = {
+      s = \\o,c => d.s ! NCard  ++ commaIf i.tail ++ i.s ! o ! c ;
+      n = Pl ;
+ --     tail = inc i.tail
+    } ;
+-}
+    D_0 = mkDig "?" ;
+    D_1 = mk3Dig "?" "" Pl;
+    D_2 = mk2Dig "?" "";
+    D_3 = mk2Dig "?" "svm" ;
+    D_4 = mkDig "?" ;
+    D_5 = mkDig "?" ;
+    D_6 = mkDig "?" ;
+    D_7 = mkDig "?" ;
+    D_8 = mkDig "?" ;
+    D_9 = mkDig "?" ;
+   
+  --  lin IDig d = { s = \\_ => d.s ; n = Sg} ;
+    lin IIDig d dg = { s = \\df => d.s ! NCard ++ dg.s ! df   ; n = Pl}; 
+
+  oper
+    commaIf : DTail -> Str = \t -> case t of {
+      T3 => "," ;
+      _ => []
+      } ;
+
+    inc : DTail -> DTail = \t -> case t of {
+      T1 => T2 ;
+      T2 => T3 ;
+      T3 => T1
+      } ;
+
+    mk2Dig : Str -> Str -> TDigit = \c,o -> mk3Dig c o Pl ;
+    mkDig : Str -> TDigit = \c -> mk2Dig c (c + "m") ;
+
+    mk3Dig : Str -> Str -> Number -> TDigit = \c,o,n -> {
+     -- s = table {NCard => regGenitiveS c ; NOrd => regGenitiveS o} ;
+       s = table {NCard => c ; NOrd =>  o} ;
+      n = n
+      } ;
+
+ oper   TDigit = {
+      n : Number ;
+      s : CardOrd => Str
+    } ;
+
+
+oper 
+ mkNum : Str -> Str -> Str -> Str -> {s : DForm => CardOrd => Str} = 
+    \two, twelve, twenty, twohundred->
+    {s = table {
+       unit => table {NCard => two ; NOrd => (two + "myn") | (two + "m")};
+       teen => table {NCard => twelve ; NOrd => (twelve + "myn") | (twelve + "m")} ; 
+       ten  => table {NCard => twenty ; NOrd => (twenty + "myn") | (twenty + "m")};
+       hundreds => table {NCard => twohundred ; NOrd => (twohundred +"myn") | (twohundred + "m")};
+       thousands => table {NCard => (two + "hzAr" ); NOrd => (two + "hzAr" + "m") | (two + "hzAr" +"myn" )}
+
+    }};
+
+ mkNum3 : Str -> Str -> Str -> Str -> Str -> {s : DForm => CardOrd => Str} = 
+    \two, twelve, twenty, twohundred, second->
+    {s = table {
+       unit => table {NCard => two ; NOrd => second};
+       teen => table {NCard => twelve ; NOrd => (twelve + "myn") | (twelve + "m")} ; 
+       ten  => table {NCard => twenty ; NOrd => (twenty + "myn") | (twenty + "m")};
+       hundreds => table {NCard => twohundred ; NOrd => (twohundred +"myn") | (twohundred + "m")};
+       thousands => table {NCard => (two + "hzAr" ); NOrd => (two + "hzAr" + "m") | (two + "hzAr"+ "myn" )}
+
+    }};
+   
+
+
+}
diff --git a/lib/src/persian/src/ParadigmsPes.gf b/lib/src/persian/src/ParadigmsPes.gf
new file mode 100644
--- /dev/null
+++ b/lib/src/persian/src/ParadigmsPes.gf
@@ -0,0 +1,206 @@
+--# -path=.:../abstract:../../prelude:../common
+--
+----1 Pnbu Lexical Paradigms
+
+resource ParadigmsPes = open 
+  Predef, 
+  Prelude, 
+  MorphoPes,
+  CatPes
+  in {
+  
+  flags optimize=all ;
+   coding = utf8;
+
+--2 Parameters 
+
+oper
+  animate : Animacy ;
+  inanimate : Animacy ;
+  singular : Number;
+  plural : Number;
+  
+  singular = Sg ; plural = Pl;
+
+  animate = Animate ; inanimate = Inanimate ; --i
+  mkN01 : Str -> Animacy -> Noun ;
+  mkN01 str ani = mkN str (str ++ "hA") ani;
+  mkN02 : Str -> Animacy -> Noun ;
+  mkN02 str ani = case (last str) of {
+    "h" => mkN str ((init str) + "gAn") ani ;
+    ("A"|"v") => mkN str (str + "yAn") ani ;
+    _ => mkN str (str+"An") ani
+  };
+{-
+
+--2 Nouns
+
+
+  mkN2 : N -> Prep -> Str -> N2;
+  mkN2 = \n,p,c -> n ** {lock_N2 = <> ; c2 = p.s ; c3 = c } ; 
+  
+  mkN3 : N -> Prep -> Str -> Str-> N3 ;
+  mkN3 = \n,p,q,r -> n ** {lock_N3 = <> ; c2 = p.s ; c3 = q ; c4 = r} ;
+-}  
+-- Compound Nouns  
+
+    mkCmpdNoun1 : Str -> N -> N
+     = \s,noun -> {s =\\ez,n => s ++ noun.s ! ez ! n  ;  animacy = noun.animacy ; definitness = noun.definitness ; lock_N = <>};
+     mkCmpdNoun2 : N -> Str -> N
+     = \noun,s -> {s =\\ez,n =>  noun.s ! ez ! n  ++ s ; animacy = noun.animacy ; definitness =noun.definitness ; lock_N = <>};
+
+
+-- Proper names     
+   mkPN : Str -> Animacy -> PN =
+
+     \str,ani -> {s = str ; animacy = ani ; lock_PN = <>} ;
+
+ 
+-- Personal Pronouns     
+  personalPN : Str -> Number -> PPerson -> Pron =
+     \str,nn,p ->  {s = str ; a = AgPes nn p ; ps = str ; lock_Pron = <>};
+{-
+-- Demonstration Pronouns     
+  demoPN : Str -> Str -> Str -> Quant =
+    \s1,s2,s3 -> let n = makeDemonPronForm s1 s2 s3 in {s = n.s ; a = defaultAgr ; lock_Quant = <>};
+-- Determiner
+-}
+  mkDet = overload {
+  mkDet : Str -> Number -> Det =
+    \s1,n -> makeDet s1 n False ** { lock_Det = <>};
+  mkDet : Str -> Number -> Bool -> Det =
+    \s1,n,b -> makeDet s1 n b ** { lock_Det = <>};
+    };
+ {-   
+-- Intergative pronouns    
+  mkIP : (x1,x2,x3,x4:Str) -> Number -> Gender -> IP =
+   \s1,s2,s3,s4,n,g -> let p = mkIntPronForm s1 s2 s3 s4 in { s = p.s ; n = n ; g = g ;  lock_IP = <>}; 
+
+-- AdN
+  mkAdN : Str -> AdN = \s -> ss s ;
+-}  
+--2 Adjectives
+
+  mkA = overload {
+    mkA : Str-> A 
+      = \str ->   mkAdj str str ** { lock_A = <>} ;
+    mkA : Str-> Str -> A 
+      = \str,adv ->   mkAdj str adv ** { lock_A = <>} ;  
+	mkA : Str -> Str -> A2
+	  = \a,c -> mkAdj a a  ** { c2 = c ; lock_A2 = <>} ;
+    } ;
+
+--2 Verbs
+ mkV : Str -> Str -> V 
+      = \s1, s2 -> mkVerb s1 s2 ** {lock_V = <>} ;
+  -- mkVerb takes both the Infinitive and the present root(root2) and is applied for iregular verbs
+  haveVerb : V = mkHave ; 
+  mkV_1 : Str -> V 
+      = \s -> mkVerb1 s ** {lock_V = <>} ;
+      
+  mkV_2 : Str -> V 
+      = \s -> mkVerb2 s ** {lock_V = <>} ;
+      
+  mkV2 = overload {
+--    mkV2 : Str -> V2 
+--      = \s -> mkV s **  {c2 = {s = [] ; c = VTrans} ; lock_V2 = <>} ;
+    mkV2 : V -> V2 
+      = \v -> v ** {c2 = {s = [] ; ra = [] ; c = VTrans} ; lock_V2 = <>} ;
+    mkV2 : V -> Str -> V2 
+      = \v,ra -> v ** {c2 = {ra = ra ; s = [] ; c = VTrans} ; lock_V2 = <>} ;
+    mkV2 : V -> Str -> Bool -> V2 
+      = \v,p,b -> v ** {c2 = {ra = [] ; s = p ; c = VTrans} ; lock_V2 = <>} ;  
+    } ;
+  
+  mkV3 : V -> Str -> Str -> V3;
+    mkV3 v p q = v ** { c2 = p ; c3 = q ; lock_V3 = <>} ;
+  mkV2V : V -> Str -> Str -> Bool -> V2V ;
+    mkV2V v s1 s2 b = v ** {isAux = b ; c1 = s1 ; c2 = s2 ; lock_V2V = <>} ;
+  
+-- compund verbs
+   compoundV = overload {
+   compoundV : Str -> V -> V = \s,v -> {s = \\vf => s ++ v.s ! vf ; lock_V = <>} ;     
+   compoundV : Str -> V2 -> V = \s,v -> {s = \\vf => s ++ v.s ! vf ; lock_V = <>} ;
+   };
+ {-
+
+----2 Adverbs
+  mkAdv : Str -> Adv = \str -> {s =\\ _ =>  str ; lock_Adv = <>};
+
+----2 Prepositions
+
+  mkPrep : Str -> Prep ;
+    mkPrep str = makePrep str ** {lock_Prep = <>};
+    
+--3 Determiners and quantifiers
+
+--  mkQuant : overload {
+--    mkQuant : Pron -> Quant ;
+--    mkQuant : (no_sg, no_pl, none_sg, : Str) -> Quant ;
+--  } ;
+-}  
+  mkQuant = overload {
+--    mkQuant : Pron -> Quant = \p -> {s = \\_,_,c => p.s!c ;a = p.a ; lock_Quant = <>};
+    mkQuant :  Str -> Str -> Quant = \sg,pl -> makeQuant sg pl;
+  } ;
+{-
+--2 Conjunctions
+  mkConj : overload {
+    mkConj : Str -> Conj ;                  -- and (plural agreement)
+    mkConj : Str -> Number -> Conj ;        -- or (agrement number given as argument)
+    mkConj : Str -> Str -> Conj ;           -- both ... and (plural)
+    mkConj : Str -> Str -> Number -> Conj ; -- either ... or (agrement number given as argument)
+  } ;
+ mkConj = overload {
+    mkConj : Str -> Conj = \y -> mk2Conj [] y plural ;
+    mkConj : Str -> Number -> Conj = \y,n -> mk2Conj [] y n ;
+    mkConj : Str -> Str -> Conj = \x,y -> mk2Conj x y plural ;
+    mkConj : Str -> Str -> Number -> Conj = mk2Conj ;
+  } ;
+
+  mk2Conj : Str -> Str -> Number -> Conj = \x,y,n -> 
+    lin Conj (sd2 x y ** {n = n}) ;  
+
+--  mkV0  : V -> V0 ;
+--  mkVS  : V -> VS ;
+--  mkV2S : V -> Prep -> V2S ;
+  mkVV  : V -> VV = \v ->  lin VV (v ** {isAux = False});
+    
+
+--  mkV2V : V -> Prep -> Prep -> V2V ;
+--  mkVA  : V -> VA ;
+--  mkV2A : V -> Prep -> V2A ;
+--  mkVQ  : V -> VQ ;
+--  mkV2Q : V -> Prep -> V2Q ;
+--
+--  mkAS  : A -> AS ;
+--  mkA2S : A -> Prep -> A2S ;
+--  mkAV  : A -> AV ;
+--  mkA2V : A -> Prep -> A2V ;
+--  mkA2V a p = a ** {c2 = p.s } ; 
+--
+---- Notice: Categories $V0, AS, A2S, AV, A2V$ are just $A$.
+---- $V0$ is just $V$; the second argument is treated as adverb.
+--
+--  V0 : Type ;
+--  AS, A2S, AV, A2V : Type ;
+--
+----.
+----2 Definitions of paradigms
+----
+---- The definitions should not bother the user of the API. So they are
+---- hidden from the document.
+--
+--  Gender = MorphoHin.Gender ; 
+--  Number = MorphoHin.Number ;
+--  Case = MorphoHin.Case ;
+--  human = Masc ; 
+--  nonhuman = Neutr ;
+--  masculine = Masc ;
+--  feminine = Fem ;
+--  singular = Sg ;
+--  plural = Pl ;
+--  nominative = Nom ;
+--  genitive = Gen ;
+-}  
+}
diff --git a/lib/src/persian/src/RelativePes.gf b/lib/src/persian/src/RelativePes.gf
new file mode 100644
--- /dev/null
+++ b/lib/src/persian/src/RelativePes.gf
@@ -0,0 +1,54 @@
+concrete RelativePes of Relative = CatPes ** open ResPes in {
+
+  flags optimize=all_subs ;
+  coding = utf8;
+
+  lin
+
+    RelCl cl = {
+      s = \\t,p,o,agr =>  "kh" ++ cl.s ! t ! p ! o ; 
+	};				    
+-- RelVP and RelSlash slows the linking process a lot this is why it is commented for test purposes
+
+    RelVP rp vp = {
+      s = \\t,p,o,ag => 
+        let 
+          agr = case rp.a of {
+            RNoAg => ag ;
+            RAg a => a
+            } ;
+		 cl = mkSClause (rp.s) agr vp;
+		  
+--          cl = case t of {
+--                VPImpPast =>  mkSClause (rp.s ! (giveNumber agr) ! Obl) agr vp;
+--				_         =>  mkSClause (rp.s ! (giveNumber agr) ! Dir) agr vp
+--				};
+        in
+        cl.s ! t ! p ! ODir ;
+--      c = Dir
+      } ;
+      
+
+---- Pied piping: "at which we are looking". Stranding and empty
+---- relative are defined in $ExtraHin.gf$ ("that we are looking at", 
+---- "we are looking at").
+--
+    RelSlash rp slash = {
+      s = \\t,p,o,agr => rp.s ++ slash.c2.s ++  slash.s ! t ! p ! o  ;--case t of {
+--	       VPImpPast => rp.s !  (giveNumber agr) Obl ++ slash.c2.s ++  slash.s ! t ! p ! o ;
+--		   _         => rp.s !  (giveNumber agr) Dir ++ slash.c2.s ++  slash.s ! t ! p ! o 
+--		   };
+--      c = Dir
+      } ;
+
+    FunRP p np rp = {
+      s = np.s ! NPC enClic ++ rp.s ++  p.s ++ getPron np.animacy (fromAgr np.a).n   ; -- need to make a special form of relative np by addY
+      a = RAg np.a
+      } ;
+
+    IdRP = {
+      s = "kh" ;
+      a = RNoAg
+      } ;
+ 
+}
diff --git a/lib/src/persian/src/ResPes.gf b/lib/src/persian/src/ResPes.gf
new file mode 100644
--- /dev/null
+++ b/lib/src/persian/src/ResPes.gf
@@ -0,0 +1,863 @@
+--# -path=.:../abstract:../common:../../prelude
+--
+--1 Pnbu auxiliary operations.
+--
+-- This module contains operations that are needed to make the
+-- resource syntax work. 
+
+resource ResPes =  ParamX **  open Prelude,Predef in {
+
+  flags optimize=all ;
+  coding = utf8;
+
+  param
+
+    Order = ODir | OQuest ;
+
+    Animacy = Animate | Inanimate ;
+    PMood = Del | Imper | PCond ;
+    PPerson = PPers1
+	    | PPers2
+	    | PPers3;
+    
+    VerbForm1 = VF Polarity VTense2 PPerson Number
+		| Vvform AgrPes
+		| Imp Polarity Number
+		| Inf 
+		| Root1 | Root2 ;
+    VTense2 = PPresent2 PrAspect | PPast2 PstAspect | PFut2 FtAspect| Infr_Past2 InfrAspect;
+    PrAspect = PrPerf | PrImperf ;
+    PstAspect = PstPerf | PstImperf | PstAorist ;
+    FtAspect =  FtAorist ; -- just keep FtAorist
+    InfrAspect = InfrPerf | InfrImperf ;
+ 
+    AgrPes = AgPes Number PPerson;
+    Ezafa = bEzafa | aEzafa | enClic;
+    NPCase = NPC Ezafa ;
+    CardOrd = NCard | NOrd ;
+    RAgr = RNoAg | RAg AgrPes ;
+ --   RCase = RC Number Case ;
+ param
+      CPolarity = 
+       CPos
+       |CNeg Bool;  -- contracted or not
+      
+  oper
+
+    Noun = {s : Ezafa => Number => Str ; animacy : Animacy ; definitness : Bool } ;
+
+    Verb = {s : VerbForm1 => Str} ;
+    
+    Compl : Type = {s : Str ; ra : Str ; c : VType} ;
+    
+    Adjective = {s:Ezafa => Str ; adv : Str} ;
+    
+    NP : Type = {s : NPCase => Str ; a : AgrPes ; animacy : Animacy } ;
+    Determiner = {s : Str ; n :Number ; isNum : Bool ; fromPron : Bool} ;
+    VPHSlash = VPH ** {c2 : Compl} ;
+    
+  oper
+    contrNeg : Bool -> Polarity -> CPolarity = \b,p -> case p of {
+    Pos => CPos ;
+    Neg => CNeg b
+    } ;  
+    
+ -----------------------
+ --- Verb Phrase
+ -----------------------
+ 
+oper 
+ 
+ VPH : Type = {
+      s    : VPHForm => {inf : Str} ;
+      obj  : {s : Str ; a : AgrPes} ; 
+      subj : VType ;
+      comp : AgrPes => Str;
+      vComp : AgrPes => Str;
+      inf : Str;
+      ad  : Str;
+      embComp : Str ;
+      wish : Bool ;
+      } ;
+ param      
+  
+    VPHForm = 
+       VPTense Polarity VPPTense AgrPes -- 9 * 12
+--     | VPReq
+       | VPImp Polarity Number
+--     | VPReqFut
+     | VVForm AgrPes
+     | VPStem1
+     | VPStem2
+     ;
+    
+    VPHTense = 
+       VPres  -- impf hum       nahim    "I go"
+     | VPast  -- impf Ta        nahim    "I went"
+     | VFut      -- fut            na/nahim "I shall go"
+     | VPerfPres -- perf hum       na/nahim "I have gone"
+     | VPerfPast -- perf Ta        na/nahim "I had gone"          
+     | VPerfFut
+     | VCondSimul
+     | VCondAnter -- subj           na       "I may go"
+     ;
+ 
+
+    VType = VIntrans | VTrans | VTransPost ;
+     
+ VPPTense = 
+	  VPPres Anteriority 
+	  |VPPast Anteriority 
+	  |VPFutr Anteriority
+	  |VPCond Anteriority ;
+oper
+
+  predV : Verb -> VPH = \verb -> {
+      s = \\vh => 
+	   case vh of {
+	     VPTense pol (VPPres Simul) (AgPes n p) => { inf = verb.s ! VF pol (PPresent2 PrImperf) p n } ;
+	     VPTense pol (VPPres Anter) (AgPes n p) => { inf = verb.s ! VF pol (PPresent2 PrPerf) p n } ;
+	     VPTense pol (VPPast Simul) (AgPes n p) => { inf =verb.s ! VF pol (PPast2 PstAorist) p n } ;
+	     VPTense pol (VPPast Anter) (AgPes n p) => { inf =verb.s ! VF pol (PPast2 PstPerf) p n } ;
+	     VPTense pol (VPFutr Simul) (AgPes n p) =>  { inf =  verb.s ! VF pol (PFut2 FtAorist) p n } ;
+	     VPTense pol (VPFutr Anter) (AgPes n p) =>  { inf =  verb.s ! VF pol (PPresent2 PrPerf) p n } ; -- this is to be confirmed
+	     VPTense pol (VPCond Simul) (AgPes n p) => { inf = verb.s ! VF pol (PPast2 PstImperf)  p n } ;
+	     VPTense pol (VPCond Anter) (AgPes n p) => { inf = verb.s ! VF pol (PPast2 PstImperf)  p n } ; 
+	     VVForm (AgPes n p) => {inf = verb.s ! Vvform (AgPes n p)} ;
+	     VPStem1 => { inf =  verb.s ! Root1};
+	     VPStem2 => { inf =  verb.s ! Root2} ;
+	     VPImp pol n => { inf = verb.s ! Imp pol n} 
+	     
+		 };
+	    obj = {s = [] ; a = defaultAgrPes} ;
+		subj = VIntrans ;
+		inf = verb.s ! Inf;
+		ad = [];
+        embComp = [];
+	wish = False ;
+        vComp = \\_ => [] ;
+        comp = \\_ => []
+      } ;
+    
+   predVc : (Verb ** {c2,c1 : Str}) -> VPHSlash = \verb -> 
+    predV verb ** {c2 = {s = verb.c1 ; ra = [] ; c = VTrans} } ; 
+----------------------
+-- Verb Phrase complimantation
+------------------------
+{-
+  insertObject : NP -> VPHSlash -> VPH = \np,vps -> {
+      s = vps.s ;
+--      obj =  {s = variants { vps.obj.s  ++ np.s ++ vps.c2.s ; vps.obj.s  ++ np.s  }  ; a = np.a} ;
+      obj =  {s = case vps.c2.s of {
+                 "rA" =>  np.s ++ vps.c2.s  ++ vps.obj.s;
+		 _    =>  vps.c2.s ++ np.s ++ vps.obj.s 
+	     };	 
+		 a = np.a} ;	    
+      subj = vps.c2.c ;
+	  inf = vps.inf;
+	  ad = vps.ad;
+      embComp = vps.embComp;
+ --     wish = vps.wish ;
+      comp = vps.comp
+      } ;
+-}	
+   insertObjc : (AgrPes => Str) -> VPHSlash -> VPHSlash = \obj,vp -> 
+    insertObj obj vp ** {c2 = vp.c2} ;
+    insertVVc : (AgrPes => Str) -> VPHSlash -> VPHSlash = \obj,vp -> 
+    insertVV obj vp ** {c2 = vp.c2} ;
+    
+ {-
+ insertSubj : PPerson -> Str -> Str = \p,s -> 
+      case p of { Pers1 => s ++ "wN" ; _ => s ++ "E"};
+  -}   
+    insertObj : (AgrPes => Str) -> VPH -> VPH = \obj1,vp -> {
+     s = vp.s ;
+     obj = vp.obj ;
+     subj = vp.subj ;
+	 inf = vp.inf;
+	 ad = vp.ad;
+     embComp = vp.embComp;
+     wish = vp.wish ;
+     vComp = vp.vComp ;
+     comp = \\a =>    vp.comp ! a  ++ obj1 ! a 
+     } ;
+     
+  insertVV : (AgrPes => Str) -> VPH -> VPH = \obj1,vp -> {
+     s = vp.s ;
+--     obj = vp.obj ;
+     obj = vp.obj ;
+     subj = vp.subj ;
+	 inf = vp.inf;
+	 ad = vp.ad;
+     embComp = vp.embComp; 
+     wish = True ;
+     vComp = \\a => vp.comp ! a ++ obj1 ! a ;
+     comp = vp.comp  
+     } ;
+     
+    insertObj2 : (Str) -> VPH -> VPH = \obj1,vp -> {
+     s = vp.s;
+     obj = vp.obj ;
+     subj = vp.subj ;
+	 inf = vp.inf;
+	 ad = vp.ad;
+     embComp = vp.embComp ++ obj1;
+     wish = vp.wish ;
+     vComp = vp.vComp ;
+     comp = \\a =>    vp.comp ! a --  ++ obj1
+     
+     } ;
+     insertObj3 : (Str) -> VPH -> VPH = \obj1,vp -> {
+     s = vp.s;
+     obj = {s = obj1 ++ vp.obj.s ; a = vp.obj.a };
+     subj = vp.subj ;
+	 inf = vp.inf;
+	 ad = vp.ad;
+     embComp = vp.embComp;
+     wish = vp.wish ;
+     vComp = vp.vComp ;
+     comp = vp.comp
+     
+     } ;
+	 
+    
+    insertObjc2 : Str -> VPHSlash -> VPHSlash = \obj,vp -> 
+    insertObj2 obj vp ** {c2 = vp.c2} ;
+    insertObjc3 : Str -> VPHSlash -> VPHSlash = \obj,vp -> 
+    insertObj3 obj vp ** {c2 = vp.c2} ;
+{-
+	infVP : Bool -> VPH -> Agr -> Str = \isAux,vp,a ->
+     vp.obj.s ++ vp.inf ++ vp.comp ! a ;
+ -}    
+    infVV : Bool -> VPH -> {s : AgrPes => Str} = \isAux,vp -> 
+	                       {s = \\agr => case agr of {
+		                  AgPes n p => (vp.comp ! (toAgr n p)) ++ (vp.s ! VVForm (AgPes n p)).inf }};
+   
+    insertObjPre : (AgrPes => Str) -> VPHSlash -> VPH = \obj,vp -> {
+     s = vp.s ;
+     obj = vp.obj ;
+     inf = vp.inf ;
+     subj = vp.subj ;
+	 ad = vp.ad ;
+     embComp = vp.embComp;
+     wish = vp.wish ;
+     vComp = vp.vComp ; 
+    -- comp = \\a => case vp.c2.s of {"rA" =>   obj ! a  ++ vp.c2.s ++ vp.comp ! a ; _ => vp.c2.s ++ obj ! a ++ vp.comp ! a}  -- gives linking error
+    comp = \\a =>  vp.c2.s ++ obj ! a  ++ vp.c2.ra ++ vp.comp ! a 
+    } ;
+
+    insertAdV : Str -> VPH -> VPH = \ad,vp -> {
+     s = vp.s ;
+     obj = vp.obj ;
+     inf = vp.inf ;
+	 subj = vp.subj;
+     ad  = vp.ad ++ ad ;
+     embComp = vp.embComp;
+     wish = vp.wish ;
+     vComp = vp.vComp ;
+     comp = vp.comp
+    } ;
+  
+	conjThat : Str = "kh" ;
+ {-   checkPron : NP -> Str -> Str = \np,str ->  case (np.isPron) of {
+                                True => np.s ! NPC Obl;
+                                False => np.s ! NPC Obl ++ str} ;
+		
+    insertEmbCompl : VPH -> Str -> VPH = \vp,emb -> {
+     s = vp.s ;
+     obj = vp.obj ;
+     inf = vp.inf ;
+     subj = vp.subj;
+     ad  = vp.ad;
+     embComp = vp.embComp ++ emb;
+     wish = vp.wish ;
+     comp = vp.comp
+    } ;
+    
+    insertTrans : VPH -> VType -> VPH = \vp,vtype -> {
+     s = vp.s ;
+     obj = vp.obj ;
+     inf = vp.inf ;
+     subj = case vtype of {VIntrans => VTransPost ; VTrans => VTrans ; _ => vtype} ; -- still some problem not working properly
+     ad  = vp.ad;
+     embComp = vp.embComp ;
+     wish = vp.wish ;
+     comp = vp.comp
+    } ;
+-}
+---------------------------
+--- Clauses
+---------------------------
+Clause : Type = {s : VPHTense => Polarity => Order => Str} ;
+mkClause : NP -> VPH -> Clause = \np,vp -> {
+      s = \\vt,b,ord => 
+        let 
+          subj = np.s ! NPC bEzafa;
+          agr  = np.a ;
+	  n    = (fromAgr agr).n;
+	  p    = (fromAgr agr).p;
+          vps  = case <b,vt> of {
+
+		    <Pos,VPres>  => vp.s ! VPTense Pos (VPPres Simul) (AgPes n p) ;
+		    <Neg,VPres>  => vp.s ! VPTense Neg (VPPres Simul) (AgPes n p) ;
+		    <Pos,VPerfPres> => vp.s ! VPTense Pos (VPPres Anter) (AgPes n p) ;
+		    <Neg,VPerfPres> => vp.s ! VPTense Neg (VPPres Anter) (AgPes n p) ;
+		    <Pos,VPast>  => vp.s !  VPTense Pos (VPPast Simul) (AgPes n p) ;
+		    <Neg,VPast>  => vp.s !  VPTense Neg (VPPast Simul) (AgPes n p) ;
+		    <Pos,VPerfPast> => vp.s !  VPTense Pos (VPPast Anter) (AgPes n p) ;
+		    <Pos,VFut>  => case vp.wish of
+		                   {True => vp.s ! VPTense Pos (VPPres Simul) (AgPes n p) ;
+				    False => vp.s ! VPTense Pos (VPFutr Simul) (AgPes n p) };
+		    <Pos,VPerfFut> => case vp.wish of
+		                   {True => vp.s ! VPTense Pos (VPPres Anter) (AgPes n p) ;
+				    False => vp.s ! VPTense Pos (VPFutr Anter) (AgPes n p) };  -- verb form need to be confirmed
+		    <Pos,VCondSimul> => vp.s ! VPTense Pos (VPCond Simul) (AgPes n p) ;
+		    <Pos,VCondAnter> => vp.s ! VPTense Pos (VPCond Anter) (AgPes n p); -- verb form to be confirmed
+		    <Neg,VPerfPast> => vp.s !  VPTense Neg (VPPast Anter) (AgPes n p) ;
+		    <Neg,VFut>  => case vp.wish of
+		                   {True => vp.s ! VPTense Neg (VPPres Simul) (AgPes n p) ;
+				    False => vp.s ! VPTense Neg (VPFutr Simul) (AgPes n p) };
+		    <Neg,VPerfFut> => case vp.wish of
+		                   {True => vp.s ! VPTense Neg (VPPres Anter) (AgPes n p) ;
+				    False => vp.s ! VPTense Neg (VPFutr Anter) (AgPes n p) };  -- verb form need to be confirmed
+		    <Neg,VCondSimul> => vp.s ! VPTense Neg (VPCond Simul) (AgPes n p) ;
+		    <Neg,VCondAnter> => vp.s ! VPTense Neg (VPCond Anter) (AgPes n p) -- verb form to be confirmed
+		    	    
+		      };
+					
+		    
+          quest =
+            case ord of
+              { ODir => [];
+                OQuest => "A:yA" }; 
+	 
+           
+            
+        in
+		
+		quest ++ subj ++ vp.ad ++ vp.comp ! np.a ++ vp.obj.s ++ vps.inf ++ vp.vComp ! np.a ++ vp.embComp
+
+};
+
+--Clause : Type = {s : VPHTense => Polarity => Order => Str} ;
+mkSClause : Str -> AgrPes -> VPH -> Clause = \subj,agr,vp -> {
+      s = \\vt,b,ord => 
+        let 
+	  n    = (fromAgr agr).n;
+	  p    = (fromAgr agr).p;
+          vps  = case <b,vt> of {
+
+		    <Pos,VPres>  => vp.s ! VPTense Pos (VPPres Simul) (AgPes n p) ;
+		    <Neg,VPres>  => vp.s ! VPTense Neg (VPPres Simul) (AgPes n p) ;
+		    <Pos,VPerfPres> => vp.s ! VPTense Pos (VPPres Anter) (AgPes n p) ;
+		    <Neg,VPerfPres> => vp.s ! VPTense Neg (VPPres Anter) (AgPes n p) ;
+		    <Pos,VPast>  => vp.s !  VPTense Pos (VPPast Simul) (AgPes n p) ;
+		    <Neg,VPast>  => vp.s !  VPTense Neg (VPPast Simul) (AgPes n p) ;
+		    <Pos,VPerfPast> => vp.s !  VPTense Pos (VPPast Anter) (AgPes n p) ;
+		    <Pos,VFut>  => case vp.wish of
+		                   {True => vp.s ! VPTense Pos (VPPres Simul) (AgPes n p) ;
+				    False => vp.s ! VPTense Pos (VPFutr Simul) (AgPes n p) };
+		    <Pos,VPerfFut> => case vp.wish of
+		                   {True => vp.s ! VPTense Pos (VPPres Anter) (AgPes n p) ;
+				    False => vp.s ! VPTense Pos (VPFutr Anter) (AgPes n p) };  -- verb form need to be confirmed
+		    <Pos,VCondSimul> => vp.s ! VPTense Pos (VPCond Simul) (AgPes n p) ;
+		    <Pos,VCondAnter> => vp.s ! VPTense Pos (VPCond Anter) (AgPes n p); -- verb form to be confirmed
+		    <Neg,VPerfPast> => vp.s !  VPTense Neg (VPPast Anter) (AgPes n p) ;
+		    <Neg,VFut>  => case vp.wish of
+		                   {True => vp.s ! VPTense Neg (VPPres Simul) (AgPes n p) ;
+				    False => vp.s ! VPTense Neg (VPFutr Simul) (AgPes n p) };
+		    <Neg,VPerfFut> => case vp.wish of
+		                   {True => vp.s ! VPTense Neg (VPPres Anter) (AgPes n p) ;
+				    False => vp.s ! VPTense Neg (VPFutr Anter) (AgPes n p) };  -- verb form need to be confirmed
+		    <Neg,VCondSimul> => vp.s ! VPTense Neg (VPCond Simul) (AgPes n p) ;
+		    <Neg,VCondAnter> => vp.s ! VPTense Neg (VPCond Anter) (AgPes n p) -- verb form to be confirmed
+		    	    
+		      };
+					
+		    
+          quest =
+            case ord of
+              { ODir => [];
+                OQuest => "A:yA" }; 
+	 
+           
+            
+        in
+		
+		quest ++ subj ++ vp.ad ++ vp.comp ! agr ++ vp.obj.s ++ vps.inf ++ vp.vComp ! agr ++ vp.embComp
+
+};
+	 
+  predAux : Aux -> VPH = \verb -> {
+     s = \\vh => 
+       
+	     case vh of {
+	     VPTense pol (VPPres Simul) (AgPes n p) => { inf = verb.inf ! AX pol (AuxPresent PrImperf) p n } ;
+	     VPTense pol (VPPres Anter) (AgPes n p) => { inf = verb.inf ! AX pol (AuxPresent PrPerf) p n } ;
+	     VPTense pol (VPPast Simul) (AgPes n p) => { inf = verb.inf ! AX pol (AuxPast PstAorist) p n } ;
+	     VPTense pol (VPPast Anter) (AgPes n p) => { inf = verb.inf ! AX pol (AuxPresent PrPerf) p n } ;
+	     VPTense pol (VPFutr Simul) (AgPes n p) =>  { inf =  verb.inf ! AX pol (AuxFut FtAorist) p n } ;
+	     VPTense pol (VPFutr Anter) (AgPes n p) =>  { inf =  verb.inf ! AX pol (AuxFut FtAorist) p n } ; -- this is to be confirmed
+	     VPTense pol (VPCond Simul) (AgPes n p) => { inf = verb.inf ! AX pol (AuxFut FtAorist)  p n } ;
+	     VPTense pol (VPCond Anter) (AgPes n p) => { inf = verb.inf ! AX pol (AuxPast PstImperf)  p n } ;
+	     VVForm  (AgPes n p) => {inf = ""} ; -- to be checked
+	     VPStem1 => { inf =  ""};
+	     VPStem2 => { inf =  "bvd"} ;
+	     VPImp _ _ => { inf = ""} -- need to be confirmed 
+--	     _ => { inf = ""} 
+		 };
+	    obj = {s = [] ; a = defaultAgrPes} ;
+		subj = VIntrans ;
+		inf = "bvdn";
+		ad = [];
+        embComp = [];
+	wish = False ;
+        vComp = \\_ => [] ;
+        comp = \\_ => []
+      } ;
+
+
+  Aux = {
+      inf :  AuxForm => Str ;
+    } ;
+
+  auxBe : Aux = {
+    inf  =  table {
+
+     AX pol tense person number   => (mkAux pol tense person number).s 
+    } ;
+    } ;
+    
+  mkAux : Polarity -> AuxTense -> PPerson -> Number -> {s:Str}= \pol,t,p,n ->
+  {s =
+   let bodh = "bvdh" ;
+       nbodh = "nbvdh" ;
+       hast = "hst" ;
+       nhast = "nyst" ;
+       bod  = "bvd" ;
+       khah = "KvAh" ;
+       mekhah = "my" ++ khah ;
+       bash = "bAC" ;
+       nbod  = "nbvd" ;
+       nkhah = "nKvAh" ;
+       nmekhah = "nmy" ++ khah ;
+       nbash = "nbAC"
+    in  
+  case <pol,t,p,n> of {
+    <Pos,AuxPresent PrPerf,PPers1,Sg> => bodh ++ "Am" ;
+    <Pos,AuxPresent PrPerf,PPers1,Pl> => bodh ++ "Aym" ;
+    <Pos,AuxPresent PrPerf,PPers2,Sg> => bodh ++ "Ay" ;
+    <Pos,AuxPresent PrPerf,PPers2,Pl> => bodh ++ "Ayd" ;
+    <Pos,AuxPresent PrPerf,PPers3,Sg> => bodh ++ "Ast" ;
+    <Pos,AuxPresent PrPerf,PPers3,Pl> => bodh ++ "And" ;
+    
+    <Pos,AuxPresent PrImperf,PPers1,Sg> =>  hast + "m" ;
+    <Pos,AuxPresent PrImperf,PPers1,Pl> => hast + "ym" ;
+    <Pos,AuxPresent PrImperf,PPers2,Sg> => hast + "y" ;
+    <Pos,AuxPresent PrImperf,PPers2,Pl> => hast + "yd" ;
+    <Pos,AuxPresent PrImperf,PPers3,Sg> => "Ast" ;
+    <Pos,AuxPresent PrImperf,PPers3,Pl> => hast + "nd" ;
+    
+    
+    <Pos,AuxPast PstPerf,PPers1,Sg> => "";
+    <Pos,AuxPast PstPerf,PPers1,Pl> => "" ;
+    <Pos,AuxPast PstPerf,PPers2,Sg> => "" ;
+    <Pos,AuxPast PstPerf,PPers2,Pl> => "" ;
+    <Pos,AuxPast PstPerf,PPers3,Sg> => "" ;
+    <Pos,AuxPast PstPerf,PPers3,Pl> => "" ;
+    
+    <Pos,AuxPast PstImperf,PPers1,Sg> => "my" ++ bod + "m" ;
+    <Pos,AuxPast PstImperf,PPers1,Pl> => "my" ++ bod + "ym" ;
+    <Pos,AuxPast PstImperf,PPers2,Sg> => "my" ++ bod + "y";
+    <Pos,AuxPast PstImperf,PPers2,Pl> => "my" ++ bod + "yd" ;
+    <Pos,AuxPast PstImperf,PPers3,Sg> => "my" ++ bod ;
+    <Pos,AuxPast PstImperf,PPers3,Pl> => "my" ++ bod + "nd" ;
+    
+    <Pos,AuxPast PstAorist,PPers1,Sg> => bod + "m" ;
+    <Pos,AuxPast PstAorist,PPers1,Pl> => bod + "ym" ;
+    <Pos,AuxPast PstAorist,PPers2,Sg> => bod  + "y";
+    <Pos,AuxPast PstAorist,PPers2,Pl> => bod + "yd" ;
+    <Pos,AuxPast PstAorist,PPers3,Sg> => bod ;
+    <Pos,AuxPast PstAorist,PPers3,Pl> => bod + "nd" ;
+    
+   {- 
+    <Pos,AuxFut FtImperf,PPers1,Sg> => mekhah + "m"   ++  bash + "m" ;
+    <Pos,AuxFut FtImperf,PPers1,Pl> => mekhah + "ym" ++  bash + "ym" ;
+    <Pos,AuxFut FtImperf,PPers2,Sg> => mekhah + "y" ++  bash + "y" ;
+    <Pos,AuxFut FtImperf,PPers2,Pl> => mekhah + "yd" ++  bash + "yd" ;
+    <Pos,AuxFut FtImperf,PPers3,Sg> => mekhah + "d" ++  bash + "d" ;
+    <Pos,AuxFut FtImperf,PPers3,Pl> => mekhah + "nd" ++  bash + "nd" ;
+    -}
+    <Pos,AuxFut FtAorist,PPers1,Sg> => khah + "m"  ++ bod  ;
+    <Pos,AuxFut FtAorist,PPers1,Pl> => khah + "ym"  ++ bod ;
+    <Pos,AuxFut Ftorist,PPers2,Sg> => khah + "y"  ++ bod ;
+    <Pos,AuxFut FtAorist,PPers2,Pl> => khah + "yd"  ++ bod ;
+    <Pos,AuxFut FtAorist,PPers3,Sg> => khah + "d"  ++ bod ;
+    <Pos,AuxFut FtAorist,PPers3,Pl> => khah + "nd"  ++ bod ;
+    
+  -- nagatives
+  
+  <Neg,AuxPresent PrPerf,PPers1,Sg> => nbodh ++ "Am" ;
+    <Neg,AuxPresent PrPerf,PPers1,Pl> => nbodh ++ "Aym" ;
+    <Neg,AuxPresent PrPerf,PPers2,Sg> => nbodh ++ "Ay" ;
+    <Neg,AuxPresent PrPerf,PPers2,Pl> => nbodh ++ "Ayd" ;
+    <Neg,AuxPresent PrPerf,PPers3,Sg> => nbodh ++ "Ast" ;
+    <Neg,AuxPresent PrPerf,PPers3,Pl> => nbodh ++ "And" ;
+    
+    <Neg,AuxPresent PrImperf,PPers1,Sg> =>  nhast + "m" ;
+    <Neg,AuxPresent PrImperf,PPers1,Pl> => nhast + "ym" ;
+    <Neg,AuxPresent PrImperf,PPers2,Sg> => nhast + "y" ;
+    <Neg,AuxPresent PrImperf,PPers2,Pl> => nhast + "yd" ;
+    <Neg,AuxPresent PrImperf,PPers3,Sg> => "nyst" ;
+    <Neg,AuxPresent PrImperf,PPers3,Pl> => nhast + "nd" ;
+    
+    
+    <Neg,AuxPast PstPerf,PPers1,Sg> => "";
+    <Neg,AuxPast PstPerf,PPers1,Pl> => "" ;
+    <Neg,AuxPast PstPerf,PPers2,Sg> => "" ;
+    <Neg,AuxPast PstPerf,PPers2,Pl> => "" ;
+    <Neg,AuxPast PstPerf,PPers3,Sg> => "" ;
+    <Neg,AuxPast PstPerf,PPers3,Pl> => "" ;
+    
+    <Neg,AuxPast PstImperf,PPers1,Sg> => "nmy" ++ bod + "m" ;
+    <Neg,AuxPast PstImperf,PPers1,Pl> => "nmy" ++ bod + "ym" ;
+    <Neg,AuxPast PstImperf,PPers2,Sg> => "nmy" ++ bod + "y";
+    <Neg,AuxPast PstImperf,PPers2,Pl> => "nmy" ++ bod + "yd" ;
+    <Neg,AuxPast PstImperf,PPers3,Sg> => "nmy" ++ bod ;
+    <Neg,AuxPast PstImperf,PPers3,Pl> => "nmy" ++ bod + "nd" ;
+    
+    <Neg,AuxPast PstAorist,PPers1,Sg> => nbod + "m" ;
+    <Neg,AuxPast PstAorist,PPers1,Pl> => nbod + "ym" ;
+    <Neg,AuxPast PstAorist,PPers2,Sg> => nbod  + "y";
+    <Neg,AuxPast PstAorist,PPers2,Pl> => nbod + "yd" ;
+    <Neg,AuxPast PstAorist,PPers3,Sg> => nbod ;
+    <Neg,AuxPast PstAorist,PPers3,Pl> => nbod + "nd" ;
+    
+   {- 
+    <Neg,AuxFut FtImperf,PPers1,Sg> => nmekhah + "m"   ++  bash + "m" ;
+    <Neg,AuxFut FtImperf,PPers1,Pl> => nmekhah + "ym" ++  bash + "ym" ;
+    <Neg,AuxFut FtImperf,PPers2,Sg> => nmekhah + "y" ++  bash + "y" ;
+    <Neg,AuxFut FtImperf,PPers2,Pl> => nmekhah + "yd" ++  bash + "yd" ;
+    <Neg,AuxFut FtImperf,PPers3,Sg> => nmekhah + "d" ++  bash + "d" ;
+    <Neg,AuxFut FtImperf,PPers3,Pl> => nmekhah + "nd" ++  bash + "nd" ;
+    -}
+    <Neg,AuxFut FtAorist,PPers1,Sg> => nkhah + "m"  ++ bod  ;
+    <Neg,AuxFut FtAorist,PPers1,Pl> => nkhah + "ym"  ++ bod ;
+    <Neg,AuxFut Ftorist,PPers2,Sg> => nkhah + "y"  ++ bod ;
+    <Neg,AuxFut FtAorist,PPers2,Pl> => nkhah + "yd"  ++ bod ;
+    <Neg,AuxFut FtAorist,PPers3,Sg> => nkhah + "d"  ++ bod ;
+    <Neg,AuxFut FtAorist,PPers3,Pl> => nkhah + "nd"  ++ bod 
+  
+  
+    
+  {-  
+    <Infr_Past2 InfrPerf,PPers1,Sg> => khordh ++ bvdh ++ "Am" ;
+    <Infr_Past2 InfrPerf,PPers1,Pl> => khordh ++ bvdh ++ "Aym" ;
+    <Infr_Past2 InfrPerf,PPers2,Sg> => khordh ++ bvdh ++ "Ay" ;
+    <Infr_Past2 InfrPerf,PPers2,Pl> => khordh ++ bvdh ++ "Ayd" ;
+    <Infr_Past2 InfrPerf,PPers3,Sg> => khordh ++ bvdh ++ "Ast" ;
+    <Infr_Past2 InfrPerf,PPers3,Pl> => khordh ++ bvdh ++ "And" ;
+    
+    <Infr_Past2 InfrImperf,PPers1,Sg> => mekhordh ++ "Am" ;
+    <Infr_Past2 InfrImperf,PPers1,Pl> => mekhordh ++ "Aym" ;
+    <Infr_Past2 InfrImperf,PPers2,Sg> => mekhordh ++ "Ay" ;
+    <Infr_Past2 InfrImperf,PPers2,Pl> => mekhordh ++ "Ayd" ;
+    <Infr_Past2 InfrImperf,PPers3,Sg> => mekhordh ++ "Ast" ;
+    <Infr_Past2 InfrImperf,PPers3,Pl> => mekhordh ++ "And" 
+    
+    
+    -}
+  }
+ } ;
+  
+  param
+   AuxTense = AuxPresent PrAspect | AuxPast PstAspect | AuxFut FtAspect ;
+   AuxForm = AX Polarity AuxTense PPerson Number ;
+   
+ 
+ oper
+ toHave : Polarity -> VTense2 -> Number -> PPerson -> {s:Str} = \pol,t,n,p -> {
+   s = let dasht = "dACt";
+	   ndasht = "ndACt" ;
+           dashteh = "dACth";
+           ndashteh = "ndACth" ;
+           dar = "dAr" ;
+	   ndar = "ndAr" ;
+	   khah = "KvAh" ;
+	   nkhah = "nKvAh" ;
+	   bvdh = "bvdh" ;
+    in case <pol,t,p,n> of {
+    <Pos,PPresent2 PrPerf,PPers1,Sg> => dashteh ++ "Am" ;  
+    <Pos,PPresent2 PrPerf,PPers1,Pl> => dashteh ++ "Aym" ;
+    <Pos,PPresent2 PrPerf,PPers2,Sg> => dashteh ++ "Ay" ;
+    <Pos,PPresent2 PrPerf,PPers2,Pl> => dashteh ++ "Ayd" ;
+    <Pos,PPresent2 PrPerf,PPers3,Sg> =>  dashteh ++ "Ast" ;
+    <Pos,PPresent2 PrPerf,PPers3,Pl> => dashteh ++ "And" ;
+    
+    <Pos,PPresent2 PrImperf,PPers1,Sg> => dar + "m" ;
+    <Pos,PPresent2 PrImperf,PPers1,Pl> => dar + "ym" ;
+    <Pos,PPresent2 PrImperf,PPers2,Sg> => dar + "y" ;
+    <Pos,PPresent2 PrImperf,PPers2,Pl> => dar + "yd" ;
+    <Pos,PPresent2 PrImperf,PPers3,Sg> => dar + "d" ;
+    <Pos,PPresent2 PrImperf,PPers3,Pl> => dar + "nd" ;
+    
+    
+    <Pos,PPast2 PstPerf,PPers1,Sg> => dashteh ++ "bvdm" ;
+    <Pos,PPast2 PstPerf,PPers1,Pl> => dashteh ++ "bvdym" ;
+    <Pos,PPast2 PstPerf,PPers2,Sg> => dashteh ++ "bvdy" ;
+    <Pos,PPast2 PstPerf,PPers2,Pl> => dashteh ++ "bvdyd" ;
+    <Pos,PPast2 PstPerf,PPers3,Sg> => dashteh ++ "bvd" ;
+    <Pos,PPast2 PstPerf,PPers3,Pl> => dashteh ++ "bvdnd" ;
+    
+    <Pos,PPast2 PstImperf,PPers1,Sg> => dasht + "m" ;
+    <Pos,PPast2 PstImperf,PPers1,Pl> => dasht + "ym" ;
+    <Pos,PPast2 PstImperf,PPers2,Sg> => dasht  + "y";
+    <Pos,PPast2 PstImperf,PPers2,Pl> => dasht + "yd" ;
+    <Pos,PPast2 PstImperf,PPers3,Sg> => dasht ;
+    <Pos,PPast2 PstImperf,PPers3,Pl> => dasht + "nd" ;
+    
+    <Pos,PPast2 PstAorist,PPers1,Sg> => dasht + "m" ;
+    <Pos,PPast2 PstAorist,PPers1,Pl> => dasht + "ym" ;
+    <Pos,PPast2 PstAorist,PPers2,Sg> => dasht  + "y";
+    <Pos,PPast2 PstAorist,PPers2,Pl> => dasht + "yd" ;
+    <Pos,PPast2 PstAorist,PPers3,Sg> => dasht ;
+    <Pos,PPast2 PstAorist,PPers3,Pl> => dasht + "nd" ;
+    
+   
+    <Pos,PFut2 FtAorist,PPers1,Sg> => khah + "m"  ++ dasht  ;
+    <Pos,PFut2 FtAorist,PPers1,Pl> => khah + "ym"  ++ dasht ;
+    <Pos,PFut2 Ftorist,PPers2,Sg> => khah + "y"  ++ dasht ;
+    <Pos,PFut2 FtAorist,PPers2,Pl> => khah + "yd"  ++ dasht ;
+    <Pos,PFut2 FtAorist,PPers3,Sg> => khah + "d"  ++ dasht ;
+    <Pos,PFut2 FtAorist,PPers3,Pl> => khah + "nd"  ++ dasht  ;
+    
+    
+    <Pos,Infr_Past2 InfrPerf,PPers1,Sg> => dashteh ++ bvdh ++ "Am" ;
+    <Pos,Infr_Past2 InfrPerf,PPers1,Pl> => dashteh ++ bvdh ++ "Aym" ;
+    <Pos,Infr_Past2 InfrPerf,PPers2,Sg> => dashteh ++ bvdh ++ "Ay" ;
+    <Pos,Infr_Past2 InfrPerf,PPers2,Pl> => dashteh ++ bvdh ++ "Ayd" ;
+    <Pos,Infr_Past2 InfrPerf,PPers3,Sg> => dashteh ++ bvdh ++ "Ast" ;
+    <Pos,Infr_Past2 InfrPerf,PPers3,Pl> => dashteh ++ bvdh ++ "And" ;
+    
+    <Pos,Infr_Past2 InfrImperf,PPers1,Sg> => dashteh ++ "Am" ;
+    <Pos,Infr_Past2 InfrImperf,PPers1,Pl> => dashteh ++ "Aym" ;
+    <Pos,Infr_Past2 InfrImperf,PPers2,Sg> => dashteh ++ "Ay" ;
+    <Pos,Infr_Past2 InfrImperf,PPers2,Pl> => dashteh ++ "Ayd" ;
+    <Pos,Infr_Past2 InfrImperf,PPers3,Sg> => dashteh ++ "Ast" ;
+    <Pos,Infr_Past2 InfrImperf,PPers3,Pl> => dashteh ++ "And" ;
+    
+ -- negatives
+ 
+    <Neg,PPresent2 PrPerf,PPers1,Sg> => ndashteh ++ "Am" ;  
+    <Neg,PPresent2 PrPerf,PPers1,Pl> => ndashteh ++ "Aym" ;
+    <Neg,PPresent2 PrPerf,PPers2,Sg> => ndashteh ++ "Ay" ;
+    <Neg,PPresent2 PrPerf,PPers2,Pl> => ndashteh ++ "Ayd" ;
+    <Neg,PPresent2 PrPerf,PPers3,Sg> =>  ndashteh ++ "Ast" ;
+    <Neg,PPresent2 PrPerf,PPers3,Pl> => ndashteh ++ "And" ;
+    
+    <Neg,PPresent2 PrImperf,PPers1,Sg> => ndar + "m" ;
+    <Neg,PPresent2 PrImperf,PPers1,Pl> => ndar + "ym" ;
+    <Neg,PPresent2 PrImperf,PPers2,Sg> => ndar + "y" ;
+    <Neg,PPresent2 PrImperf,PPers2,Pl> => ndar + "yd" ;
+    <Neg,PPresent2 PrImperf,PPers3,Sg> => ndar + "d" ;
+    <Neg,PPresent2 PrImperf,PPers3,Pl> => ndar + "nd" ;
+    
+    
+    <Neg,PPast2 PstPerf,PPers1,Sg> => ndashteh ++ "bvdm" ;
+    <Neg,PPast2 PstPerf,PPers1,Pl> => ndashteh ++ "bvdym" ;
+    <Neg,PPast2 PstPerf,PPers2,Sg> => ndashteh ++ "bvdy" ;
+    <Neg,PPast2 PstPerf,PPers2,Pl> => ndashteh ++ "bvdyd" ;
+    <Neg,PPast2 PstPerf,PPers3,Sg> => ndashteh ++ "bvd" ;
+    <Neg,PPast2 PstPerf,PPers3,Pl> => ndashteh ++ "bvdnd" ;
+    
+    <Neg,PPast2 PstImperf,PPers1,Sg> => ndasht + "m" ;
+    <Neg,PPast2 PstImperf,PPers1,Pl> => ndasht + "ym" ;
+    <Neg,PPast2 PstImperf,PPers2,Sg> => ndasht  + "y";
+    <Neg,PPast2 PstImperf,PPers2,Pl> => ndasht + "yd" ;
+    <Neg,PPast2 PstImperf,PPers3,Sg> => ndasht ;
+    <Neg,PPast2 PstImperf,PPers3,Pl> => ndasht + "nd" ;
+    
+    <Neg,PPast2 PstAorist,PPers1,Sg> => ndasht + "m" ;
+    <Neg,PPast2 PstAorist,PPers1,Pl> => ndasht + "ym" ;
+    <Neg,PPast2 PstAorist,PPers2,Sg> => ndasht  + "y";
+    <Neg,PPast2 PstAorist,PPers2,Pl> => ndasht + "yd" ;
+    <Neg,PPast2 PstAorist,PPers3,Sg> => ndasht ;
+    <Neg,PPast2 PstAorist,PPers3,Pl> => ndasht + "nd" ;
+    
+   
+    <Neg,PFut2 FtAorist,PPers1,Sg> => nkhah + "m"  ++ dasht  ;
+    <Neg,PFut2 FtAorist,PPers1,Pl> => nkhah + "ym"  ++ dasht ;
+    <Neg,PFut2 Ftorist,PPers2,Sg> => nkhah + "y"  ++ dasht ;
+    <Neg,PFut2 FtAorist,PPers2,Pl> => nkhah + "yd"  ++ dasht ;
+    <Neg,PFut2 FtAorist,PPers3,Sg> => nkhah + "d"  ++ dasht ;
+    <Neg,PFut2 FtAorist,PPers3,Pl> => nkhah + "nd"  ++ dasht  ;
+    
+    
+    <Neg,Infr_Past2 InfrPerf,PPers1,Sg> => ndashteh ++ bvdh ++ "Am" ;
+    <Neg,Infr_Past2 InfrPerf,PPers1,Pl> => ndashteh ++ bvdh ++ "Aym" ;
+    <Neg,Infr_Past2 InfrPerf,PPers2,Sg> => ndashteh ++ bvdh ++ "Ay" ;
+    <Neg,Infr_Past2 InfrPerf,PPers2,Pl> => ndashteh ++ bvdh ++ "Ayd" ;
+    <Neg,Infr_Past2 InfrPerf,PPers3,Sg> => ndashteh ++ bvdh ++ "Ast" ;
+    <Neg,Infr_Past2 InfrPerf,PPers3,Pl> => ndashteh ++ bvdh ++ "And" ;
+    
+    <Neg,Infr_Past2 InfrImperf,PPers1,Sg> => ndashteh ++ "Am" ;
+    <Neg,Infr_Past2 InfrImperf,PPers1,Pl> => ndashteh ++ "Aym" ;
+    <Neg,Infr_Past2 InfrImperf,PPers2,Sg> => ndashteh ++ "Ay" ;
+    <Neg,Infr_Past2 InfrImperf,PPers2,Pl> => ndashteh ++ "Ayd" ;
+    <Neg,Infr_Past2 InfrImperf,PPers3,Sg> => ndashteh ++ "Ast" ;
+    <Neg,Infr_Past2 InfrImperf,PPers3,Pl> => ndashteh ++ "And" 
+    
+     
+     };
+     
+   } ;
+  
+   predProg : VPH -> VPH = \verb -> {
+     s = \\vh => 
+       case vh of {
+	     VPTense pol (VPPres Simul) (AgPes n p) => { inf = (toHave Pos (PPresent2 PrImperf) n p).s ++  (verb.s ! VPTense pol (VPPres Simul) (AgPes n p)).inf } ;
+	     VPTense pol (VPPres Anter) (AgPes n p) => { inf = (verb.s ! VPTense pol (VPPres Anter) (AgPes n p)).inf } ;
+	     VPTense pol (VPPast Simul) (AgPes n p) => { inf = (toHave Pos (PPast2 PstAorist) n p).s ++ (verb.s ! VPTense pol (VPCond Simul) (AgPes n p)).inf } ;
+	     VPTense pol (VPPast Anter) (AgPes n p) => { inf = (verb.s ! VPTense pol (VPPast Anter) (AgPes n p)).inf } ;
+	     VPTense pol (VPFutr Simul) (AgPes n p) =>  { inf =  (verb.s ! VPTense pol (VPFutr Simul) (AgPes n p)).inf } ;
+	     VPTense pol (VPFutr Anter) (AgPes n p) =>  { inf =  (verb.s ! VPTense pol (VPFutr Anter) (AgPes n p)).inf } ; -- this is to be confirmed
+	     VPTense pol (VPCond Simul) (AgPes n p) => { inf = (toHave Pos (PPast2 PstAorist) n p).s ++ (verb.s ! VPTense pol (VPCond Simul) (AgPes n p)).inf } ;
+	     VPTense pol (VPCond Anter) (AgPes n p) => { inf = (toHave Pos (PPast2 PstAorist) n p).s ++ (verb.s ! VPTense pol (VPCond Anter) (AgPes n p)).inf } ; 
+	     VVForm (AgPes n p) => {inf = (verb.s ! VVForm (AgPes n p)).inf} ;
+	     VPStem1 => { inf =  (verb.s ! VPStem1).inf};
+	     VPStem2 => { inf =  (verb.s ! VPStem2).inf} ;
+	     VPImp pol n => { inf = (verb.s ! VPImp pol n).inf}  -- need to be confirmed
+--	     _ => { inf = (verb.s ! VPStem1).inf} 
+		 };
+	   
+      obj = verb.obj ;
+      subj =  VIntrans ;
+      inf = verb.inf;
+      ad = verb.ad;
+      wish = verb.wish;
+      vComp = verb.vComp ;
+      embComp = verb.embComp ;
+      comp = verb.comp 
+      } ;
+      
+-------------------------
+-- Ezafa construction
+------------------------
+oper
+mkEzafa : Str -> Str ;
+mkEzafa str = case str of {
+             st + "Ah" => str ;
+	     st + "vh" => str ;
+	     st + "h" => str ++ "y" ;
+	     st + "Av" => str ;
+	     st + "vv" => str ;
+	     st + "v" => str + "y" ;
+	     st + "A" => str + "y" ;
+	     _ => str
+	};
+mkEnclic : Str -> Str ;
+mkEnclic str = case str of {
+                 st + "A" => str ++ "yy" ;
+	         st + "v" => str ++ "yy" ;
+		 st + "y" => str ++ "yy" ;
+		 st + "h" => str ++ "yy" ;
+	                _ => str + "y"
+	};
+		
+IndefArticle : Str ;
+IndefArticle = "yk";
+taryn : Str ;
+taryn = "tryn" ;
+
+---------------
+-- making negatives
+---------------
+addN : Str -> Str ;
+addN str = 
+            case str of { 
+	       "A" + st => "ny" + str ;  
+	       "A:" + st => "nyA" + st ;
+	         _  => "n" + str
+       };
+addBh2 : Str -> Str ; -- should use drop instead but it gives linking error
+addBh2 str1 =
+       case str1 of {
+            "my" + str => 
+                case  str of { 
+	           "A" + st => Prelude.glue "by" str ;  -- need to use '+' but it gives linking error
+	           "A:" + st => Prelude.glue "byA" st ;
+	            _    => Prelude.glue "b" str
+                    };
+	      _     => ""	    
+		  };  
+
+-----------------------------
+-- Noun Phrase
+-----------------------------
+{-toNP : Str -> Str = \pn, npc -> case npc of {
+      NPC c => pn !  c ;
+      NPObj => pn !  Dir ;
+      NPErg => pn !  Obl 
+      } ;
+-}
+
+ partNP : Str -> Str = \str -> (Prelude.glue str "h") ++ "Cdh" ;
+-- partNP : Str -> Str = \str ->  str + "h" ++ "Cdh" ;
+
+       
+  
+------------------------------------------
+-- Agreement transformations
+-----------------------------------------
+    toAgr : Number  -> PPerson -> AgrPes = \n,p ->       
+	   AgPes n p;
+      
+
+    fromAgr : AgrPes -> {n : Number ; p : PPerson } = \agr -> case agr of {
+      AgPes n p => {n = n ; p = p } 
+	  } ;
+	  
+	conjAgrPes : AgrPes -> AgrPes -> AgrPes = \a0,b0 -> 
+      let a = fromAgr a0 ; b = fromAgr b0 
+      in
+      toAgr
+        (conjNumber a.n b.n)
+        b.p;	  
+	
+	giveNumber : AgrPes -> Number =\a -> case a of {
+	   AgPes n _   => n
+	};
+
+    
+--    defaultAgr : Agr = agrP3 Sg Inanimate ;
+--    agrP3 : Number -> Animacy -> Agr = \n,a -> Ag n PPers3 a ;
+    defaultAgrPes : AgrPes = agrPesP3 Sg ;
+    agrPesP3 : Number -> AgrPes = \n -> AgPes n PPers3 ;	
+--    personalAgr : Agr = agrP1 Sg ;
+    agrPesP1 : Number -> AgrPes = \n -> AgPes n PPers1 ;
+	
+--------------------------------------------------------
+-- Reflexive Pronouns
+-----------------------------------
+
+reflPron : AgrPes => Str = table {
+    AgPes Sg PPers1   => "Kvdm" ;
+    AgPes Sg PPers2   => "Kvdt" ;
+    AgPes Sg PPers3   => "KvdC" ;
+    AgPes Pl PPers1   => "KvdmAn" ;
+    AgPes Pl PPers2   => "KvdtAn" ;
+    AgPes Pl PPers3   => "KvdCAn" 
+    
+    } ;
+    
+  getPron : Animacy -> Number -> Str = \ani,number ->
+   case <ani,number> of {
+    <Animate,Sg> => "Av" ;
+    <Animate,Pl> => ["A:n hA"] ;
+    <Inanimate,Sg> => "A:n" ;
+    <Inanimate,Pl> => ["A:n hA"] 
+   };
+   
+
+}
+
diff --git a/lib/src/persian/src/SentencePes.gf b/lib/src/persian/src/SentencePes.gf
new file mode 100644
--- /dev/null
+++ b/lib/src/persian/src/SentencePes.gf
@@ -0,0 +1,103 @@
+concrete SentencePes of Sentence = CatPes ** open Prelude, ResPes,Predef in {
+
+  flags optimize=all_subs ;
+  coding = utf8;
+
+  lin
+
+    PredVP np vp = mkClause np vp ;
+
+    PredSCVP sc vp = mkSClause ("Ayn" ++ sc.s) (defaultAgrPes) vp ;
+
+    ImpVP vp = {
+      s = \\pol,n => 
+        let 
+          agr   = AgPes (numImp n) PPers2 ;
+	  in case pol of {
+          CPos =>  vp.ad ++ vp.comp ! agr  ++ vp.obj.s ++ vp.vComp ! agr ++  ((vp.s ! VPImp Pos (numImp n)).inf) ++ vp.embComp;
+	  CNeg _ =>  vp.ad ++ vp.comp ! agr ++ vp.obj.s ++ vp.vComp ! agr ++  ((vp.s ! VPImp Neg (numImp n)).inf) ++ vp.embComp
+	  } ;     
+    } ;
+
+
+    SlashVP np vp = 
+      mkClause np vp ** {c2 = vp.c2} ;
+
+    AdvSlash slash adv = {
+	  s  = \\t,p,o =>  adv.s ++ slash.s ! t ! p ! o  ;
+      c2 = slash.c2
+    } ;
+
+    SlashPrep cl prep = cl **  {c2 = { s = prep.s ; ra = [] ; c = VIntrans}} ;
+
+    SlashVS np vs slash = 
+      mkClause  np 
+        (insertObj2 (conjThat ++ slash.s) (predV vs))  **
+        {c2 = slash.c2} ;
+
+    EmbedS  s  = {s = conjThat ++ s.s} ;
+    EmbedQS qs = {s = qs.s ! QIndir} ;
+    EmbedVP vp = {s = vp.obj.s ++ vp.inf ++ vp.comp ! defaultAgrPes} ; --- agr
+
+
+    UseCl  temp p cl = 
+	 { s = case <temp.t,temp.a> of {
+	  <Pres,Simul> => temp.s ++ p.s ++ cl.s ! VPres ! p.p ! ODir;
+          <Pres,Anter> => temp.s ++ p.s ++ cl.s ! VPerfPres ! p.p ! ODir;
+          <Past,Simul> => temp.s ++ p.s ++ cl.s ! VPast ! p.p ! ODir;
+          <Past,Anter> => temp.s ++ p.s ++ cl.s ! VPerfPast ! p.p ! ODir;
+          <Fut,Simul>  => temp.s ++ p.s ++ cl.s ! VFut ! p.p ! ODir;
+          <Fut,Anter>  => temp.s ++ p.s ++ cl.s ! VPerfFut ! p.p ! ODir;
+          <Cond,Simul> => temp.s ++ p.s ++ cl.s ! VCondSimul ! p.p ! ODir;
+          <Cond,Anter> => temp.s ++ p.s ++ cl.s ! VCondAnter ! p.p ! ODir -- this needs to be fixed by making SubjPerf in ResPnb		  
+
+   };
+  } ;
+     UseQCl temp p cl = {
+      s = \\q => case <temp.t,temp.a> of {
+	      <Pres,Simul> => temp.s ++ p.s ++ cl.s ! VPres ! p.p ! q;
+          <Pres,Anter> => temp.s ++ p.s ++ cl.s ! VPerfPres ! p.p ! q;
+          <Past,Simul> => temp.s ++ p.s ++ cl.s ! VPast ! p.p ! q;
+          <Past,Anter> => temp.s ++ p.s ++ cl.s ! VPerfPast ! p.p ! q;
+          <Fut,Simul>  => temp.s ++ p.s ++ cl.s ! VFut ! p.p ! q;
+          <Fut,Anter>  => temp.s ++ p.s ++ cl.s ! VPerfFut ! p.p ! q;
+          <Cond,Simul> => temp.s ++ p.s ++ cl.s ! VCondSimul ! p.p ! q;
+          <Cond,Anter> => temp.s ++ p.s ++ cl.s ! VCondAnter ! p.p ! q		  
+ 
+   };
+  } ;
+
+    UseRCl temp p rcl = {
+      s = \\q => case <temp.t,temp.a> of {
+	      <Pres,Simul> => temp.s ++ p.s ++ rcl.s ! VPres ! p.p ! ODir ! q;
+          <Pres,Anter> => temp.s ++ p.s ++ rcl.s ! VPerfPres ! p.p ! ODir ! q;
+          <Past,Simul> => temp.s ++ p.s ++ rcl.s ! VPast ! p.p ! ODir ! q;
+          <Past,Anter> => temp.s ++ p.s ++ rcl.s ! VPerfPast ! p.p ! ODir ! q;
+          <Fut,Simul>  => temp.s ++ p.s ++ rcl.s ! VFut ! p.p ! ODir ! q;
+          <Fut,Anter>  => temp.s ++ p.s ++ rcl.s ! VPerfFut ! p.p ! ODir ! q;
+          <Cond,Simul> => temp.s ++ p.s ++ rcl.s ! VCondSimul ! p.p ! ODir ! q;
+          <Cond,Anter> => temp.s ++ p.s ++ rcl.s ! VCondAnter ! p.p ! ODir ! q
+     };		  
+      c = rcl.c
+    } ;
+    
+    UseSlash temp p clslash = {
+      s = case <temp.t,temp.a> of {
+	      <Pres,Simul> => temp.s ++ p.s ++ clslash.s ! VPres ! p.p ! ODir;
+          <Pres,Anter> => temp.s ++ p.s ++ clslash.s ! VPerfPres ! p.p ! ODir;
+          <Past,Simul> => temp.s ++ p.s ++ clslash.s ! VPast ! p.p ! ODir ;
+          <Past,Anter> => temp.s ++ p.s ++ clslash.s ! VPerfPast ! p.p ! ODir;
+          <Fut,Simul>  => temp.s ++ p.s ++ clslash.s ! VFut ! p.p ! ODir;
+          <Fut,Anter>  => temp.s ++ p.s ++ clslash.s ! VPerfFut ! p.p ! ODir;
+          <Cond,Simul> => temp.s ++ p.s ++ clslash.s ! VCondSimul ! p.p ! ODir;
+          <Cond,Anter> => temp.s ++ p.s ++ clslash.s ! VCondSimul ! p.p ! ODir
+     };		  
+      c2 = clslash.c2
+    } ;
+
+    AdvS a s = {s = a.s ++ s.s} ;
+
+    RelS s r = {s = s.s ++ r.s ! agrPesP3 Sg} ;
+    SSubjS s sj s = { s = s.s ++ sj.s ++ s.s};
+
+}
diff --git a/lib/src/persian/src/StructuralPes.gf b/lib/src/persian/src/StructuralPes.gf
new file mode 100644
--- /dev/null
+++ b/lib/src/persian/src/StructuralPes.gf
@@ -0,0 +1,133 @@
+concrete StructuralPes of Structural = CatPes ** 
+  open MorphoPes, ParadigmsPes, Prelude, NounPes in {
+
+  flags optimize=all ;
+  coding = utf8;
+
+  lin
+  above_Prep = ss "bAlAy" ;
+  after_Prep = ss ["bcd Az"] ;
+  all_Predet = ss ["hmh y"] ;
+  almost_AdA, almost_AdN = ss "tqrybAa." ;
+  although_Subj = ss ["bA vjvd Ayn"] ;
+  always_AdV = ss "hmyCh" ;
+  and_Conj = sd2 [] "v" ** {n = Pl} ;
+  because_Subj = ss ["brAy Ayn"] ;
+  before_Prep = ss ["qbl Az"] ;
+  behind_Prep = ss "pCt" ;
+  between_Prep = ss "byn" ;
+  both7and_DConj = sd2 "hm" ["v hm"] ** {n = Pl} ;
+  but_PConj = ss "AmA" ;
+  by8agent_Prep = ss "tvsT" ;
+  by8means_Prep = ss "bA" ;
+--  can8know_VV,can_VV = mkV "skna" ** { isAux = True} ;
+  during_Prep = ss ["dr Tvl"] ;
+  either7or_DConj = sd2 "yA" "yA" ** {n = Sg} ;
+--  everybody_NP =  MassNP (UseN (MorphoPnb.mkN11 ["hr kwy"])); -- not a good way coz need to include NounPnb
+  every_Det = mkDet "hr" Sg ;
+--  everything_NP = MassNP (UseN (MorphoPnb.mkN11 ["hr XE"]));
+  everywhere_Adv = ss ["hr jA"] ;
+  few_Det = mkDet ["tcdAd kmy"] Pl True; -- check
+--  first_Ord = {s = "Avlyn" ; n = Sg} ; --DEPRECATED
+  for_Prep = ss "brAy" ;
+  from_Prep = ss "Az" ;
+  he_Pron = personalPN "Av"  Sg PPers3 ;
+  here_Adv = ss "AynjA" ;
+  here7to_Adv = ss "AynjA" ;
+  here7from_Adv = ss "AynjA" ;
+  how_IAdv = ss "c^Tvr" ;
+  how8many_IDet = {s = "c^nd" ; n = Pl ; isNum = True} ;
+  how8much_IAdv  = ss "c^qdr" ;
+  if_Subj = ss "Agr" ;
+  in8front_Prep = ss "jlvy" ;
+  i_Pron = personalPN "mn" Sg PPers1;
+  in_Prep = ss "dr" ;
+  it_Pron  = personalPN "A:n" Sg PPers3;
+  less_CAdv = {s = "kmtr" ; p = ""} ;
+  many_Det = mkDet ["tcdAd zyAdy"] Pl True; -- check
+  more_CAdv = {s = "byCtr" ; p = "" } ; 
+  most_Predet = ss "Akt-r";
+  much_Det = mkDet ["mqdAr zyAdy"]  Pl ;
+--  must_VV = {
+--    s = table {
+--      VVF VInf => ["have to"] ;
+--      VVF VPres => "must" ;
+--      VVF VPPart => ["had to"] ;
+--      VVF VPresPart => ["having to"] ;
+--      VVF VPast => ["had to"] ;      --# notpresent
+--      VVPastNeg => ["hadn't to"] ;      --# notpresent
+--      VVPresNeg => "mustn't"
+--      } ;
+--    isAux = True
+--    } ;
+-----b  no_Phr = ss "no" ;
+
+
+  no_Utt = ss "nh" ;
+  on_Prep = ss "rvy" ;
+--  one_Quant = demoPN "yk"  ; -- DEPRECATED
+  only_Predet = ss "fqT" ;
+  or_Conj = sd2 [] "yA" ** {n = Sg} ;
+  otherwise_PConj = ss ["drGyrAyn Svrt"] ;
+  part_Prep = ss "Az" ; -- the object following it should be in Ezafa form  
+  please_Voc = ss "lTfAa." ;
+  possess_Prep = ss "" ; -- will be handeled in Ezafeh
+  quite_Adv = ss "kAmlAa." ;
+  she_Pron = personalPN "Av" Sg PPers3 ;
+  so_AdA = ss "bsyAr" ; 
+--  somebody_NP = MassNP (UseN (MorphoPnb.mkN11 "kwy" ));
+  someSg_Det = mkDet "mqdAry" Sg True ;
+  somePl_Det = mkDet "c^nd" Pl True ;
+--  something_NP = MassNP (UseN (MorphoPnb.mkN11 "c^yzy"));
+  somewhere_Adv = ss "jAyy" ; 
+  that_Quant = mkQuant "A:n" "A:n"; 
+  that_Subj = ss "A:n"; 
+  there_Adv = ss "A:njA" ; 
+  there7to_Adv = ss "A:njA" ;
+  there7from_Adv = ss "A:njA" ;
+  therefore_PConj = ss ["bh hmyn dlyl"] ; 
+  they_Pron = personalPN ["A:n hA"] Pl PPers3 ; 
+  this_Quant = mkQuant "Ayn" "Ayn" ;  
+  through_Prep = ss ["Az Tryq"] ;
+  too_AdA = ss "Kyly" ; 
+  to_Prep = ss "bh" ** {lock_Prep = <>};
+  under_Prep = ss "zyr" ** {lock_Prep = <>};
+  very_AdA = ss "Kyly" ;
+  want_VV = mkV "KvAstn" "KvAh" ** { isAux = False} ; 
+  we_Pron = personalPN "mA" Pl PPers1 ;
+  whatSg_IP = {s = ["c^h c^yzy"] ; n = Sg } ;
+  whatPl_IP = {s = ["c^h c^yzhAyy"] ; n = Pl } ;
+  when_IAdv = ss "ky" ; 
+  when_Subj = ss "vqty" ;
+  where_IAdv = ss "kjA" ;
+  which_IQuant = {s = "kdAm" ; n = Sg} ;
+  whichPl_IDet = {s = "kdAm" ; n = Pl ; isNum = False} ;
+  whichSg_IDet = { s = "kdAm" ; n = Sg ; isNum = False} ;
+  whoSg_IP = {s = ["c^h ksy"] ; n =  Sg}  ;
+  whoPl_IP = {s = ["c^h ksAny"] ;n = Pl} ;
+  why_IAdv = ss "c^rA" ;
+  without_Prep = ss "bdvn" ;
+  with_Prep = ss "bA";
+--  yes_Phr = ss "blh" ;
+  yes_Utt = ss "blh" ;
+  youSg_Pron = personalPN "tv" Sg PPers2 ;
+  youPl_Pron = personalPN "CmA" Pl PPers2 ;
+  youPol_Pron = personalPN "CmA"  Sg PPers2  ; 
+--  no_Quant =  demoPN "hyc^" ; 
+  not_Predet = {s="nh"} ;
+  if_then_Conj = sd2 "Agr" "A:ngAh" ** {n = Sg} ; 
+  at_least_AdN = ss "HdAql" ;
+  at_most_AdN = ss "HdAkt-r";
+--  nothing_NP = MassNP (UseN (MorphoPnb.mkN11 "hyc^ c^yz" )); 
+  except_Prep = ss ["bh jz"] ;
+--  nobody_NP = MassNP (UseN (MorphoPnb.mkN11 "hyc^ ks"));  
+
+  as_CAdv = {s = ["bh AndAzh y"] ; p = ""} ;
+
+--  have_V2 = mkV2 (mkV "dACtn" "dAr") "rA" ;
+
+ language_title_Utt = ss "persian" ;
+
+}
+
+
diff --git a/lib/src/persian/translit.gfs b/lib/src/persian/translit.gfs
new file mode 100644
--- /dev/null
+++ b/lib/src/persian/translit.gfs
@@ -0,0 +1,10 @@
+rf -file=src/LexiconPes.gf | ps -env=quotes -to_persian | wf -file=LexiconPes.gf
+rf -file=src/ParadigmsPes.gf | ps -env=quotes -to_persian | wf -file=ParadigmsPes.gf
+rf -file=src/MorphoPes.gf | ps -env=quotes -to_persian | wf -file=MorphoPes.gf
+rf -file=src/StructuralPes.gf | ps -env=quotes -to_persian | wf -file=StructuralPes.gf
+rf -file=src/ResPes.gf | ps -env=quotes -to_persian | wf -file=ResPes.gf
+rf -file=src/AdjectivePes.gf | ps -env=quotes -to_persian | wf -file=AdjectivePes.gf
+rf -file=src/IdiomPes.gf | ps -env=quotes -to_persian | wf -file=IdiomPes.gf
+rf -file=src/RelativePes.gf | ps -env=quotes -to_persian | wf -file=RelativePes.gf
+rf -file=src/AdverbPes.gf | ps -env=quotes -to_persian | wf -file=AdverbPes.gf
+rf -file=src/SentencePes.gf | ps -env=quotes -to_persian | wf -file=SentencePes.gf
diff --git a/lib/src/polish/ExtraPol.gf b/lib/src/polish/ExtraPol.gf
--- a/lib/src/polish/ExtraPol.gf
+++ b/lib/src/polish/ExtraPol.gf
@@ -1,6 +1,13 @@
 concrete ExtraPol of ExtraPolAbs = CatPol ** open ResPol in {
 
-  lin ProDrop p = {
+  lin 
+
+  QualifierCN adj cn = {
+    s = \\n,c => (cn.s ! n ! c) ++ (adj.s ! AF (cast_gennum!<cn.g,n>) c);
+    g = cn.g    
+  };
+
+  ProDrop p = {
     nom = [] ;
     voc = p.voc ;
     dep = p.dep ;
diff --git a/lib/src/polish/ExtraPolAbs.gf b/lib/src/polish/ExtraPolAbs.gf
--- a/lib/src/polish/ExtraPolAbs.gf
+++ b/lib/src/polish/ExtraPolAbs.gf
@@ -1,2 +1,13 @@
-abstract ExtraPolAbs = Cat, Extra [Pron,ProDrop] ** 
-{}
+abstract ExtraPolAbs = Cat, Extra [AP,CN,Pron,ProDrop] ** 
+{
+	-- in Polish there exists a distinction between 
+    -- attributes describing a quality of some object (e.g. cold water)
+    -- and qualifying that object (e.g. sparkling water).
+    -- attributes of the firs kind are called "przydawka wartościująca"
+	-- and they are characterized in that the attribure precedes a noun.
+	-- the other kind is called "przydawka gatunkująca vel klasyfikująca"
+    -- and the attribute follows the noun.
+
+fun QualifierCN : AP -> CN -> CN ;
+
+}
diff --git a/lib/src/polish/LexiconNounPol.gf b/lib/src/polish/LexiconNounPol.gf
--- a/lib/src/polish/LexiconNounPol.gf
+++ b/lib/src/polish/LexiconNounPol.gf
@@ -11,200 +11,200 @@
 
 -- DO NOT EDIT THIS FILE
 
-  concrete LexiconNounPol of Lexicon = CatPol **
+  incomplete concrete LexiconNounPol of Lexicon = CatPol **
     open  NounMorphoPol, ResPol  in {
 
      flags  coding=utf8;
 
-  lin  airplane_N = mkN (mkNTable0302 "samolot") (Masc Inanimate) ;
-  lin  animal_N = mkN (mkNTable0629 "zwierzę") (NeutGr) ;
-  lin  apartment_N = mkN (mkNTable0672 "mieszkanie") (Neut) ;
-  lin  apple_N = mkN (mkNTable0239 "jabłko") (Neut) ;
-  lin  art_N = mkN (mkNTable0023 "sztuka") (Fem) ;
-  lin  ashes_N = mkN (mkNTable1374 "popiół") (Masc Inanimate) ;
-  lin  baby_N = mkN (mkNTable0629 "niemowlę") (NeutGr) ;
-  lin  back_N = mkN (mkNTable0046 "plecy") (Plur) ;
-  lin  bank_N = mkN (mkNTable0193 "bank") (Masc Inanimate) ;
-  lin  bark_N = mkN (mkNTable0102 "kora") (Fem) ;
-  lin  beer_N = mkN (mkNTable0908 "piwo") (Neut) ;
-  lin  belly_N = mkN (mkNTable0993 "brzuch") (Masc Inanimate) ;
-  lin  bike_N = mkN (mkNTable0118 "rower") (Masc Inanimate) ;
-  lin  bird_N = mkN (mkNTable0197 "ptak") (Masc Animate) ;
-  lin  blood_N = mkN (mkNTable1233 "krew") (Fem) ;
-  lin  boat_N = mkN (mkNTable1170 "łódź") (Fem) ;
-  lin  bone_N = mkN (mkNTable1249 "kość") (Fem) ;
-  lin  book_N = mkN (mkNTable0004 "książka") (Fem) ;
-  lin  boot_N = mkN (mkNTable0927 "but") (Masc Inanimate) ;
+  lin  airplane_N = mkN (mkNTable0231 "samolot") (Masc Inanimate) ;
+  lin  animal_N = mkN (mkNTable0379 "zwierzę") (NeutGr) ;
+  lin  apartment_N = mkN (mkNTable0402 "mieszkanie") (Neut) ;
+  lin  apple_N = mkN (mkNTable0199 "jabłko") (Neut) ;
+  lin  art_N = mkN (mkNTable0027 "sztuka") (Fem) ;
+  lin  ashes_N = mkN (mkNTable0939 "popiół") (Masc Inanimate) ;
+  lin  baby_N = mkN (mkNTable0379 "niemowlę") (NeutGr) ;
+  lin  back_N = mkN (mkNTable0050 "plecy") (Plur) ;
+  lin  bank_N = mkN (mkNTable0171 "bank") (Masc Inanimate) ;
+  lin  bark_N = mkN (mkNTable0099 "kora") (Fem) ;
+  lin  beer_N = mkN (mkNTable0488 "piwo") (Neut) ;
+  lin  belly_N = mkN (mkNTable0570 "brzuch") (Masc Inanimate) ;
+  lin  bike_N = mkN (mkNTable0117 "rower") (Masc Inanimate) ;
+  lin  bird_N = mkN (mkNTable0173 "ptak") (Masc Animate) ;
+  lin  blood_N = mkN (mkNTable0801 "krew") (Fem) ;
+  lin  boat_N = mkN (mkNTable0745 "łódź") (Fem) ;
+  lin  bone_N = mkN (mkNTable0814 "kość") (Fem) ;
+  lin  book_N = mkN (mkNTable0006 "książka") (Fem) ;
+  lin  boot_N = mkN (mkNTable0502 "but") (Masc Inanimate) ;
   lin  boss_N = mkN (mkNTable0002 "szef") (Masc Personal) ;
-  lin  boy_N = mkN (mkNTable1062 "chłopiec") (Masc Personal) ;
-  lin  bread_N = mkN (mkNTable0276 "chleb") (Masc Inanimate) ;
-  lin  breast_N = mkN (mkNTable1321 "pierś") (Fem) ;
-  lin  butter_N = mkN (mkNTable0430 "masło") (Neut) ;
-  lin  camera_N = mkN (mkNTable0102 "kamera") (Fem) ;
-  lin  cap_N = mkN (mkNTable0004 "czapka") (Fem) ;
-  lin  car_N = mkN (mkNTable1035 "samochód") (Masc Inanimate) ;
-  lin  carpet_N = mkN (mkNTable0098 "dywan") (Masc Inanimate) ;
-  lin  cat_N = mkN (mkNTable1081 "kot") (Masc Animate) ;
-  lin  ceiling_N = mkN (mkNTable0302 "sufit") (Masc Inanimate) ;
-  lin  chair_N = mkN (mkNTable0430 "krzesło") (Neut) ;
-  lin  cheese_N = mkN (mkNTable0207 "ser") (Masc Inanimate) ;
-  lin  child_N = mkN (mkNTable1128 "dziecko") (NeutGr) ;
-  lin  church_N = mkN (mkNTable1248 "kościół") (Masc Inanimate) ;
-  lin  city_N = mkN (mkNTable0838 "miasto") (Neut) ;
-  lin  cloud_N = mkN (mkNTable0102 "chmura") (Fem) ;
-  lin  coat_N = mkN (mkNTable0203 "płaszcz") (Masc Inanimate) ;
-  lin  computer_N = mkN (mkNTable0207 "komputer") (Masc Inanimate) ;
-  lin  country_N = mkN (mkNTable0138 "kraj") (Masc Inanimate) ;
+  lin  boy_N = mkN (mkNTable0640 "chłopiec") (Masc Personal) ;
+  lin  bread_N = mkN (mkNTable0131 "chleb") (Masc Inanimate) ;
+  lin  breast_N = mkN (mkNTable0887 "pierś") (Fem) ;
+  lin  butter_N = mkN (mkNTable0299 "masło") (Neut) ;
+  lin  camera_N = mkN (mkNTable0099 "kamera") (Fem) ;
+  lin  cap_N = mkN (mkNTable0006 "czapka") (Fem) ;
+  lin  car_N = mkN (mkNTable0610 "samochód") (Masc Inanimate) ;
+  lin  carpet_N = mkN (mkNTable0096 "dywan") (Masc Inanimate) ;
+  lin  cat_N = mkN (mkNTable0659 "kot") (Masc Animate) ;
+  lin  ceiling_N = mkN (mkNTable0231 "sufit") (Masc Inanimate) ;
+  lin  chair_N = mkN (mkNTable0299 "krzesło") (Neut) ;
+  lin  cheese_N = mkN (mkNTable0181 "ser") (Masc Inanimate) ;
+  lin  child_N = mkN (mkNTable0703 "dziecko") (NeutGr) ;
+  lin  church_N = mkN (mkNTable0813 "kościół") (Masc Inanimate) ;
+  lin  city_N = mkN (mkNTable0461 "miasto") (Neut) ;
+  lin  cloud_N = mkN (mkNTable0099 "chmura") (Fem) ;
+  lin  coat_N = mkN (mkNTable0176 "płaszcz") (Masc Inanimate) ;
+  lin  computer_N = mkN (mkNTable0181 "komputer") (Masc Inanimate) ;
+  lin  country_N = mkN (mkNTable0129 "kraj") (Masc Inanimate) ;
   lin  cousin_N = mkN (mkNTable0002 "kuzyn") (Masc Personal) ;
-  lin  cow_N = mkN (mkNTable0945 "krowa") (Fem) ;
-  lin  day_N = mkN (mkNTable1131 "dzień") (Masc Inanimate) ;
-  lin  doctor_N = mkN (mkNTable0928 "lekarz") (Masc Personal) ;
-  lin  dog_N = mkN (mkNTable1370 "pies") (Masc Animate) ;
-  lin  door_N = mkN (mkNTable0940 "drzwi") (Plur) ;
-  lin  dust_N = mkN (mkNTable0138 "kurz") (Masc Inanimate) ;
-  lin  ear_N = mkN (mkNTable1456 "ucho") (NeutGr) ;
-  lin  earth_N = mkN (mkNTable0912 "ziemia") (Fem) ;
-  lin  egg_N = mkN (mkNTable0239 "jajko") (Neut) ;
-  lin  enemy_N = mkN (mkNTable0228 "wróg") (Masc Personal) ;
-  lin  eye_N = mkN (mkNTable1332 "oko") (NeutGr) ;
-  lin  factory_N = mkN (mkNTable0023 "fabryka") (Fem) ;
-  lin  fat_N = mkN (mkNTable0138 "tłuszcz") (Masc Inanimate) ;
-  lin  feather_N = mkN (mkNTable0017 "sprężyna") (Fem) ;
-  lin  fingernail_N = mkN (mkNTable1361 "paznokieć") (Masc Inanimate) ;
-  lin  fire_N = mkN (mkNTable0986 "ogień") (Masc Inanimate) ;
-  lin  fish_N = mkN (mkNTable0017 "ryba") (Fem) ;
-  lin  floor_N = mkN (mkNTable1112 "podłoga") (Fem) ;
-  lin  flower_N = mkN (mkNTable0982 "kwiat") (Masc Inanimate) ;
-  lin  fog_N = mkN (mkNTable1054 "mgła") (Fem) ;
-  lin  foot_N = mkN (mkNTable1426 "stopa") (Fem) ;
-  lin  forest_N = mkN (mkNTable1271 "las") (Masc Inanimate) ;
-  lin  fridge_N = mkN (mkNTable0004 "lodówka") (Fem) ;
-  lin  friend_N = mkN (mkNTable1317 "przyjaciel") (Masc Personal) ;
-  lin  fruit_N = mkN (mkNTable0138 "owoc") (Masc Inanimate) ;
-  lin  garden_N = mkN (mkNTable1035 "ogród") (Masc Inanimate) ;
-  lin  girl_N = mkN (mkNTable0017 "dziewczyna") (Fem) ;
-  lin  glove_N = mkN (mkNTable0199 "rękawica") (Fem) ;
-  lin  gold_N = mkN (mkNTable0936 "złoto") (Neut) ;
-  lin  grammar_N = mkN (mkNTable0023 "gramatyka") (Fem) ;
-  lin  grass_N = mkN (mkNTable0017 "trawa") (Fem) ;
-  lin  guts_N = mkN (mkNTable0940 "wnętrzności") (Plur) ;
-  lin  hair_N = mkN (mkNTable0276 "włos") (Masc Inanimate) ;
-  lin  hand_N = mkN (mkNTable1412 "ręka") (Fem) ;
-  lin  harbour_N = mkN (mkNTable0302 "port") (Masc Inanimate) ;
-  lin  hat_N = mkN (mkNTable0335 "kapelusz") (Masc Inanimate) ;
-  lin  head_N = mkN (mkNTable0945 "głowa") (Fem) ;
-  lin  heart_N = mkN (mkNTable0976 "serce") (Neut) ;
-  lin  hill_N = mkN (mkNTable0976 "wzgórze") (Neut) ;
-  lin  horn_N = mkN (mkNTable0667 "róg") (Masc Inanimate) ;
-  lin  horse_N = mkN (mkNTable1250 "koń") (Masc Animate) ;
-  lin  house_N = mkN (mkNTable0341 "dom") (Masc Inanimate) ;
-  lin  husband_N = mkN (mkNTable1305 "mąż") (Masc Personal) ;
-  lin  ice_N = mkN (mkNTable1035 "lód") (Masc Inanimate) ;
-  lin  industry_N = mkN (mkNTable1109 "przemysł") (Masc Inanimate) ;
-  lin  iron_N = mkN (mkNTable0908 "żelazo") (Neut) ;
+  lin  cow_N = mkN (mkNTable0520 "krowa") (Fem) ;
+  lin  day_N = mkN (mkNTable0707 "dzień") (Masc Inanimate) ;
+  lin  doctor_N = mkN (mkNTable0503 "lekarz") (Masc Personal) ;
+  lin  dog_N = mkN (mkNTable0934 "pies") (Masc Animate) ;
+  lin  door_N = mkN (mkNTable0516 "drzwi") (Plur) ;
+  lin  dust_N = mkN (mkNTable0129 "kurz") (Masc Inanimate) ;
+  lin  ear_N = mkN (mkNTable1007 "ucho") (NeutGr) ;
+  lin  earth_N = mkN (mkNTable0490 "ziemia") (Fem) ;
+  lin  egg_N = mkN (mkNTable0199 "jajko") (Neut) ;
+  lin  enemy_N = mkN (mkNTable0193 "wróg") (Masc Personal) ;
+  lin  eye_N = mkN (mkNTable0898 "oko") (NeutGr) ;
+  lin  factory_N = mkN (mkNTable0027 "fabryka") (Fem) ;
+  lin  fat_N = mkN (mkNTable0129 "tłuszcz") (Masc Inanimate) ;
+  lin  feather_N = mkN (mkNTable0021 "sprężyna") (Fem) ;
+  lin  fingernail_N = mkN (mkNTable0927 "paznokieć") (Masc Inanimate) ;
+  lin  fire_N = mkN (mkNTable0563 "ogień") (Masc Inanimate) ;
+  lin  fish_N = mkN (mkNTable0021 "ryba") (Fem) ;
+  lin  floor_N = mkN (mkNTable0689 "podłoga") (Fem) ;
+  lin  flower_N = mkN (mkNTable0559 "kwiat") (Masc Inanimate) ;
+  lin  fog_N = mkN (mkNTable0632 "mgła") (Fem) ;
+  lin  foot_N = mkN (mkNTable0985 "stopa") (Fem) ;
+  lin  forest_N = mkN (mkNTable0830 "las") (Masc Inanimate) ;
+  lin  fridge_N = mkN (mkNTable0006 "lodówka") (Fem) ;
+  lin  friend_N = mkN (mkNTable0881 "przyjaciel") (Masc Personal) ;
+  lin  fruit_N = mkN (mkNTable0129 "owoc") (Masc Inanimate) ;
+  lin  garden_N = mkN (mkNTable0610 "ogród") (Masc Inanimate) ;
+  lin  girl_N = mkN (mkNTable0021 "dziewczyna") (Fem) ;
+  lin  glove_N = mkN (mkNTable0175 "rękawica") (Fem) ;
+  lin  gold_N = mkN (mkNTable0511 "złoto") (Neut) ;
+  lin  grammar_N = mkN (mkNTable0027 "gramatyka") (Fem) ;
+  lin  grass_N = mkN (mkNTable0021 "trawa") (Fem) ;
+  lin  guts_N = mkN (mkNTable0516 "wnętrzności") (Plur) ;
+  lin  hair_N = mkN (mkNTable0131 "włos") (Masc Inanimate) ;
+  lin  hand_N = mkN (mkNTable0974 "ręka") (Fem) ;
+  lin  harbour_N = mkN (mkNTable0231 "port") (Masc Inanimate) ;
+  lin  hat_N = mkN (mkNTable0243 "kapelusz") (Masc Inanimate) ;
+  lin  head_N = mkN (mkNTable0520 "głowa") (Fem) ;
+  lin  heart_N = mkN (mkNTable0553 "serce") (Neut) ;
+  lin  hill_N = mkN (mkNTable0553 "wzgórze") (Neut) ;
+  lin  horn_N = mkN (mkNTable0399 "róg") (Masc Inanimate) ;
+  lin  horse_N = mkN (mkNTable0815 "koń") (Masc Animate) ;
+  lin  house_N = mkN (mkNTable0247 "dom") (Masc Inanimate) ;
+  lin  husband_N = mkN (mkNTable0870 "mąż") (Masc Personal) ;
+  lin  ice_N = mkN (mkNTable0610 "lód") (Masc Inanimate) ;
+  lin  industry_N = mkN (mkNTable0685 "przemysł") (Masc Inanimate) ;
+  lin  iron_N = mkN (mkNTable0488 "żelazo") (Neut) ;
   lin  king_N = mkN (mkNTable0003 "król") (Masc Personal) ;
-  lin  knee_N = mkN (mkNTable0908 "kolano") (Neut) ;
-  lin  lake_N = mkN (mkNTable0946 "jezioro") (Neut) ;
-  lin  lamp_N = mkN (mkNTable0017 "lampa") (Fem) ;
-  lin  language_N = mkN (mkNTable0382 "język") (Masc Inanimate) ;
-  lin  leaf_N = mkN (mkNTable1279 "liść") (Masc Inanimate) ;
-  lin  leather_N = mkN (mkNTable0102 "skóra") (Fem) ;
-  lin  leg_N = mkN (mkNTable1112 "noga") (Fem) ;
-  lin  liver_N = mkN (mkNTable1059 "wątroba") (Fem) ;
-  lin  louse_N = mkN (mkNTable1465 "wesz") (Fem) ;
-  lin  love_N = mkN (mkNTable0876 "miłość") (Fem) ;
-  lin  man_N = mkN (mkNTable1310 "mężczyzna") (Masc Personal) ;
-  lin  meat_N = mkN (mkNTable0908 "mięso") (Neut) ;
-  lin  milk_N = mkN (mkNTable0369 "mleko") (Neut) ;
-  lin  moon_N = mkN (mkNTable0203 "księżyc") (Masc Inanimate) ;
-  lin  mountain_N = mkN (mkNTable0102 "góra") (Fem) ;
-  lin  mouth_N = mkN (mkNTable0218 "usta") (Plur) ;
-  lin  music_N = mkN (mkNTable0023 "muzyka") (Fem) ;
-  lin  name_N = mkN (mkNTable1029 "imię") (NeutGr) ;
-  lin  neck_N = mkN (mkNTable0332 "szyja") (Fem) ;
-  lin  newspaper_N = mkN (mkNTable0022 "gazeta") (Fem) ;
-  lin  night_N = mkN (mkNTable0973 "noc") (Fem) ;
-  lin  nose_N = mkN (mkNTable0276 "nos") (Masc Inanimate) ;
-  lin  number_N = mkN (mkNTable0017 "liczba") (Fem) ;
-  lin  oil_N = mkN (mkNTable0138 "olej") (Masc Inanimate) ;
-  lin  paper_N = mkN (mkNTable0118 "papier") (Masc Inanimate) ;
-  lin  peace_N = mkN (mkNTable0950 "pokój") (Masc Inanimate) ;
-  lin  pen_N = mkN (mkNTable0774 "ołówek") (Masc Inanimate) ;
-  lin  person_N = mkN (mkNTable1059 "osoba") (Fem) ;
-  lin  planet_N = mkN (mkNTable0022 "planeta") (Fem) ;
-  lin  plastic_N = mkN (mkNTable0193 "plastik") (Masc Inanimate) ;
-  lin  policeman_N = mkN (mkNTable0221 "policjant") (Masc Personal) ;
-  lin  priest_N = mkN (mkNTable1257 "ksiądz") (Masc Personal) ;
-  lin  queen_N = mkN (mkNTable0929 "królowa") (Fem) ;
-  lin  question_N = mkN (mkNTable0672 "pytanie") (Neut) ;
-  lin  radio_N = mkN (mkNTable0934 "radio") (Neut) ;
-  lin  rain_N = mkN (mkNTable1101 "deszcz") (Masc Inanimate) ;
-  lin  reason_N = mkN (mkNTable1035 "powód") (Masc Inanimate) ;
-  lin  religion_N = mkN (mkNTable0057 "religia") (Fem) ;
-  lin  restaurant_N = mkN (mkNTable0095 "restauracja") (Fem) ;
-  lin  river_N = mkN (mkNTable0023 "rzeka") (Fem) ;
-  lin  road_N = mkN (mkNTable1112 "droga") (Fem) ;
-  lin  rock_N = mkN (mkNTable0164 "skała") (Fem) ;
-  lin  roof_N = mkN (mkNTable0341 "dach") (Masc Inanimate) ;
-  lin  root_N = mkN (mkNTable0853 "korzeń") (Masc Inanimate) ;
-  lin  rope_N = mkN (mkNTable0017 "lina") (Fem) ;
-  lin  rubber_N = mkN (mkNTable0004 "gumka") (Fem) ;
-  lin  rule_N = mkN (mkNTable0164 "reguła") (Fem) ;
-  lin  salt_N = mkN (mkNTable1189 "sól") (Fem) ;
-  lin  sand_N = mkN (mkNTable0841 "piasek") (Masc Inanimate) ;
-  lin  school_N = mkN (mkNTable1343 "szkoła") (Fem) ;
-  lin  science_N = mkN (mkNTable0023 "nauka") (Fem) ;
-  lin  sea_N = mkN (mkNTable1298 "morze") (Neut) ;
-  lin  seed_N = mkN (mkNTable1315 "nasienie") (Neut) ;
-  lin  sheep_N = mkN (mkNTable1345 "owca") (Fem) ;
-  lin  ship_N = mkN (mkNTable0841 "statek") (Masc Inanimate) ;
-  lin  shirt_N = mkN (mkNTable0051 "koszula") (Fem) ;
-  lin  shoe_N = mkN (mkNTable0927 "but") (Masc Inanimate) ;
-  lin  shop_N = mkN (mkNTable0098 "sklep") (Masc Inanimate) ;
-  lin  silver_N = mkN (mkNTable0959 "srebro") (Neut) ;
-  lin  sister_N = mkN (mkNTable1417 "siostra") (Fem) ;
-  lin  skin_N = mkN (mkNTable0102 "skóra") (Fem) ;
-  lin  sky_N = mkN (mkNTable0908 "niebo") (Neut) ;
-  lin  smoke_N = mkN (mkNTable0098 "dym") (Masc Inanimate) ;
-  lin  snake_N = mkN (mkNTable1477 "wąż") (Masc Animate) ;
-  lin  snow_N = mkN (mkNTable0193 "śnieg") (Masc Inanimate) ;
-  lin  sock_N = mkN (mkNTable0004 "skarpetka") (Fem) ;
-  lin  song_N = mkN (mkNTable0004 "piosenka") (Fem) ;
-  lin  star_N = mkN (mkNTable1173 "gwiazda") (Fem) ;
-  lin  steel_N = mkN (mkNTable1008 "stal") (Fem) ;
-  lin  stick_N = mkN (mkNTable0382 "patyk") (Masc Inanimate) ;
-  lin  stone_N = mkN (mkNTable0853 "kamień") (Masc Inanimate) ;
-  lin  stove_N = mkN (mkNTable0203 "piec") (Masc Inanimate) ;
-  lin  student_N = mkN (mkNTable0221 "student") (Masc Personal) ;
-  lin  sun_N = mkN (mkNTable0976 "słońce") (Neut) ;
-  lin  table_N = mkN (mkNTable1074 "stół") (Masc Inanimate) ;
-  lin  tail_N = mkN (mkNTable0276 "ogon") (Masc Inanimate) ;
-  lin  teacher_N = mkN (mkNTable0223 "nauczyciel") (Masc Personal) ;
-  lin  television_N = mkN (mkNTable0095 "telewizja") (Fem) ;
-  lin  tongue_N = mkN (mkNTable0382 "język") (Masc Inanimate) ;
-  lin  tooth_N = mkN (mkNTable1130 "ząb") (Masc Inanimate) ;
-  lin  train_N = mkN (mkNTable0193 "pociąg") (Masc Inanimate) ;
-  lin  tree_N = mkN (mkNTable0908 "drzewo") (Neut) ;
-  lin  university_N = mkN (mkNTable0302 "uniwersytet") (Masc Inanimate) ;
-  lin  village_N = mkN (mkNTable1399 "wieś") (Fem) ;
-  lin  war_N = mkN (mkNTable1040 "wojna") (Fem) ;
-  lin  water_N = mkN (mkNTable0417 "woda") (Fem) ;
-  lin  wife_N = mkN (mkNTable0017 "żona") (Fem) ;
-  lin  wind_N = mkN (mkNTable1329 "wiatr") (Masc Inanimate) ;
-  lin  window_N = mkN (mkNTable0978 "okno") (Neut) ;
-  lin  wine_N = mkN (mkNTable0908 "wino") (Neut) ;
-  lin  wing_N = mkN (mkNTable0917 "skrzydło") (Neut) ;
-  lin  woman_N = mkN (mkNTable0022 "kobieta") (Fem) ;
-  lin  wood_N = mkN (mkNTable0978 "drewno") (Neut) ;
-  lin  worm_N = mkN (mkNTable0197 "robak") (Masc Animate) ;
-  lin  year_N = mkN (mkNTable0193 "rok") (Masc Inanimate) ;
-  oper distance_N = mkN (mkNTable0876 "odległość") (Fem) ;
-  oper mother_N = mkN (mkNTable0004 "matka") (Fem) ;
-  oper brother_N = mkN (mkNTable1024 "brat") (Masc Personal) ;
-  oper father_N = mkN (mkNTable1331 "ojciec") (Masc Personal) ;
+  lin  knee_N = mkN (mkNTable0488 "kolano") (Neut) ;
+  lin  lake_N = mkN (mkNTable0521 "jezioro") (Neut) ;
+  lin  lamp_N = mkN (mkNTable0021 "lampa") (Fem) ;
+  lin  language_N = mkN (mkNTable0271 "język") (Masc Inanimate) ;
+  lin  leaf_N = mkN (mkNTable0838 "liść") (Masc Inanimate) ;
+  lin  leather_N = mkN (mkNTable0099 "skóra") (Fem) ;
+  lin  leg_N = mkN (mkNTable0689 "noga") (Fem) ;
+  lin  liver_N = mkN (mkNTable0636 "wątroba") (Fem) ;
+  lin  louse_N = mkN (mkNTable1016 "wesz") (Fem) ;
+  lin  love_N = mkN (mkNTable0475 "miłość") (Fem) ;
+  lin  man_N = mkN (mkNTable0873 "mężczyzna") (Masc Personal) ;
+  lin  meat_N = mkN (mkNTable0488 "mięso") (Neut) ;
+  lin  milk_N = mkN (mkNTable0265 "mleko") (Neut) ;
+  lin  moon_N = mkN (mkNTable0176 "księżyc") (Masc Inanimate) ;
+  lin  mountain_N = mkN (mkNTable0099 "góra") (Fem) ;
+  lin  mouth_N = mkN (mkNTable0189 "usta") (Plur) ;
+  lin  music_N = mkN (mkNTable0027 "muzyka") (Fem) ;
+  lin  name_N = mkN (mkNTable0604 "imię") (NeutGr) ;
+  lin  neck_N = mkN (mkNTable0241 "szyja") (Fem) ;
+  lin  newspaper_N = mkN (mkNTable0026 "gazeta") (Fem) ;
+  lin  night_N = mkN (mkNTable0550 "noc") (Fem) ;
+  lin  nose_N = mkN (mkNTable0131 "nos") (Masc Inanimate) ;
+  lin  number_N = mkN (mkNTable0021 "liczba") (Fem) ;
+  lin  oil_N = mkN (mkNTable0129 "olej") (Masc Inanimate) ;
+  lin  paper_N = mkN (mkNTable0117 "papier") (Masc Inanimate) ;
+  lin  peace_N = mkN (mkNTable0526 "pokój") (Masc Inanimate) ;
+  lin  pen_N = mkN (mkNTable0435 "ołówek") (Masc Inanimate) ;
+  lin  person_N = mkN (mkNTable0636 "osoba") (Fem) ;
+  lin  planet_N = mkN (mkNTable0026 "planeta") (Fem) ;
+  lin  plastic_N = mkN (mkNTable0171 "plastik") (Masc Inanimate) ;
+  lin  policeman_N = mkN (mkNTable0190 "policjant") (Masc Personal) ;
+  lin  priest_N = mkN (mkNTable0821 "ksiądz") (Masc Personal) ;
+  lin  queen_N = mkN (mkNTable0504 "królowa") (Fem) ;
+  lin  question_N = mkN (mkNTable0402 "pytanie") (Neut) ;
+  lin  radio_N = mkN (mkNTable0509 "radio") (Neut) ;
+  lin  rain_N = mkN (mkNTable0677 "deszcz") (Masc Inanimate) ;
+  lin  reason_N = mkN (mkNTable0610 "powód") (Masc Inanimate) ;
+  lin  religion_N = mkN (mkNTable0060 "religia") (Fem) ;
+  lin  restaurant_N = mkN (mkNTable0094 "restauracja") (Fem) ;
+  lin  river_N = mkN (mkNTable0027 "rzeka") (Fem) ;
+  lin  road_N = mkN (mkNTable0689 "droga") (Fem) ;
+  lin  rock_N = mkN (mkNTable0152 "skała") (Fem) ;
+  lin  roof_N = mkN (mkNTable0247 "dach") (Masc Inanimate) ;
+  lin  root_N = mkN (mkNTable0468 "korzeń") (Masc Inanimate) ;
+  lin  rope_N = mkN (mkNTable0021 "lina") (Fem) ;
+  lin  rubber_N = mkN (mkNTable0006 "gumka") (Fem) ;
+  lin  rule_N = mkN (mkNTable0152 "reguła") (Fem) ;
+  lin  salt_N = mkN (mkNTable0763 "sól") (Fem) ;
+  lin  sand_N = mkN (mkNTable0463 "piasek") (Masc Inanimate) ;
+  lin  school_N = mkN (mkNTable0910 "szkoła") (Fem) ;
+  lin  science_N = mkN (mkNTable0027 "nauka") (Fem) ;
+  lin  sea_N = mkN (mkNTable0861 "morze") (Neut) ;
+  lin  seed_N = mkN (mkNTable0878 "nasienie") (Neut) ;
+  lin  sheep_N = mkN (mkNTable0912 "owca") (Fem) ;
+  lin  ship_N = mkN (mkNTable0463 "statek") (Masc Inanimate) ;
+  lin  shirt_N = mkN (mkNTable0055 "koszula") (Fem) ;
+  lin  shoe_N = mkN (mkNTable0502 "but") (Masc Inanimate) ;
+  lin  shop_N = mkN (mkNTable0096 "sklep") (Masc Inanimate) ;
+  lin  silver_N = mkN (mkNTable0537 "srebro") (Neut) ;
+  lin  sister_N = mkN (mkNTable0978 "siostra") (Fem) ;
+  lin  skin_N = mkN (mkNTable0099 "skóra") (Fem) ;
+  lin  sky_N = mkN (mkNTable0488 "niebo") (Neut) ;
+  lin  smoke_N = mkN (mkNTable0096 "dym") (Masc Inanimate) ;
+  lin  snake_N = mkN (mkNTable1029 "wąż") (Masc Animate) ;
+  lin  snow_N = mkN (mkNTable0171 "śnieg") (Masc Inanimate) ;
+  lin  sock_N = mkN (mkNTable0006 "skarpetka") (Fem) ;
+  lin  song_N = mkN (mkNTable0006 "piosenka") (Fem) ;
+  lin  star_N = mkN (mkNTable0748 "gwiazda") (Fem) ;
+  lin  steel_N = mkN (mkNTable0583 "stal") (Fem) ;
+  lin  stick_N = mkN (mkNTable0271 "patyk") (Masc Inanimate) ;
+  lin  stone_N = mkN (mkNTable0468 "kamień") (Masc Inanimate) ;
+  lin  stove_N = mkN (mkNTable0176 "piec") (Masc Inanimate) ;
+  lin  student_N = mkN (mkNTable0190 "student") (Masc Personal) ;
+  lin  sun_N = mkN (mkNTable0553 "słońce") (Neut) ;
+  lin  table_N = mkN (mkNTable0653 "stół") (Masc Inanimate) ;
+  lin  tail_N = mkN (mkNTable0131 "ogon") (Masc Inanimate) ;
+  lin  teacher_N = mkN (mkNTable0191 "nauczyciel") (Masc Personal) ;
+  lin  television_N = mkN (mkNTable0094 "telewizja") (Fem) ;
+  lin  tongue_N = mkN (mkNTable0271 "język") (Masc Inanimate) ;
+  lin  tooth_N = mkN (mkNTable0706 "ząb") (Masc Inanimate) ;
+  lin  train_N = mkN (mkNTable0171 "pociąg") (Masc Inanimate) ;
+  lin  tree_N = mkN (mkNTable0488 "drzewo") (Neut) ;
+  lin  university_N = mkN (mkNTable0231 "uniwersytet") (Masc Inanimate) ;
+  lin  village_N = mkN (mkNTable0960 "wieś") (Fem) ;
+  lin  war_N = mkN (mkNTable0615 "wojna") (Fem) ;
+  lin  water_N = mkN (mkNTable0293 "woda") (Fem) ;
+  lin  wife_N = mkN (mkNTable0021 "żona") (Fem) ;
+  lin  wind_N = mkN (mkNTable0895 "wiatr") (Masc Inanimate) ;
+  lin  window_N = mkN (mkNTable0555 "okno") (Neut) ;
+  lin  wine_N = mkN (mkNTable0488 "wino") (Neut) ;
+  lin  wing_N = mkN (mkNTable0492 "skrzydło") (Neut) ;
+  lin  woman_N = mkN (mkNTable0026 "kobieta") (Fem) ;
+  lin  wood_N = mkN (mkNTable0555 "drewno") (Neut) ;
+  lin  worm_N = mkN (mkNTable0173 "robak") (Masc Animate) ;
+  lin  year_N = mkN (mkNTable0171 "rok") (Masc Inanimate) ;
+  oper distance_N = mkN (mkNTable0475 "odległość") (Fem) ;
+  oper mother_N = mkN (mkNTable0006 "matka") (Fem) ;
+  oper brother_N = mkN (mkNTable0599 "brat") (Masc Personal) ;
+  oper father_N = mkN (mkNTable0897 "ojciec") (Masc Personal) ;
   lin  paris_PN =
-      { nom = (mkNTable0041 "Paryż")!SF Sg Nom; voc = (mkNTable0041 "Paryż")!SF Sg VocP;
-         dep = let forms = (mkNTable0041 "Paryż") in table {
+      { nom = (mkNTable0045 "Paryż")!SF Sg Nom; voc = (mkNTable0045 "Paryż")!SF Sg VocP;
+         dep = let forms = (mkNTable0045 "Paryż") in table {
           GenPrep|GenNoPrep=>forms!SF Sg Gen; AccPrep|AccNoPrep=>forms!SF Sg Acc;
           DatPrep|DatNoPrep=>forms!SF Sg Dat; InstrC=>forms!SF Sg Instr;
           LocPrep=>forms!SF Sg Loc};
diff --git a/lib/src/polish/MorphoPol.gf b/lib/src/polish/MorphoPol.gf
--- a/lib/src/polish/MorphoPol.gf
+++ b/lib/src/polish/MorphoPol.gf
@@ -2,11 +2,9 @@
 --# -coding=utf8
 
 --1 A polish Resource Morphology 
---
--- Ilona Nowak, Wintersemester 2007/08
---
--- Adam Slaski, 2009, 2010 <adam.slaski@gmail.com>
 
+-- Adam Slaski, 2009, 2010, 2011 <adam.slaski@gmail.com>
+
 -- Description of the Polish morphology
 
 resource MorphoPol = 
@@ -29,15 +27,15 @@
   mkN2 n = mkFun n nullPrep ;
 
   mkFun  : CommNoun -> Complement -> CommNoun2;
-  mkFun f p = { s = f.s; g = f.g; c = { c = p.c; s=p.s}; lock_N2=<> } ;
+  mkFun f p = { s = f.s; g = f.g; c = { c = p.c; s=p.s} } ;
 
   mkN3 : CommNoun -> Complement -> Complement -> CommNoun3;
-  mkN3 f p r = { s = f.s; g = f.g; c = {s=p.s; c=p.c} ; c2 = {s=r.s; c=r.c}; lock_N3=<>}; 
+  mkN3 f p r = { s = f.s; g = f.g; c = {s=p.s; c=p.c} ; c2 = {s=r.s; c=r.c} }; 
 
 -- Prepositions   
 
 -- The commonest cases are functions with Genitive.
-  nullPrep   : Complement = mkPrep []    Gen; --{s = []; c= GenNoPrep; lock_Prep=<>};  
+  nullPrep   : Complement = mkPrep []    Gen; --{s = []; c= GenNoPrep};  
   nadPrep    : Complement = mkPrep "nad" Instr; 
   zGenPrep   : Complement = mkPrep "z"   Gen;
   zInstrPrep : Complement = mkPrep "z"   Instr;
@@ -50,11 +48,15 @@
 -- A preposition is formed from a string and a case.
 
   mkPrep : Str -> Case -> Complement;
-  mkPrep s c = mkCompl s c ** {lock_Prep = <>};
+  mkPrep s c = mkCompl s c;
 
 
 -- definitions for structural objects
 
+    ktory = mkAtable (mkCompAdj "który").pos;
+	jaki = mkAtable (mkCompAdj "jaki").pos;
+	taki = mkAtable (mkCompAdj "taki").pos;
+
     wszyscy : NounPhrase = {
       nom = "wszyscy" ;
       voc = "wszyscy" ;
@@ -207,7 +209,7 @@
 	    Loc => table { _ => "ilu" };
 	    VocP => table {Masc Personal => "ilu"; _ => "ile" }
 	  };
-	  n = Sg;
+	  n = Pl;
 	  a = StoA
 	};
 	
diff --git a/lib/src/polish/NounMorphoPol.gf b/lib/src/polish/NounMorphoPol.gf
--- a/lib/src/polish/NounMorphoPol.gf
+++ b/lib/src/polish/NounMorphoPol.gf
@@ -102,30348 +102,21068 @@
       SF Pl Voc => x + "owie"
     };
 
-    oper mkNTable0004: Str -> SubstForm => Str; --%
-    oper mkNTable0004 lexem = 
-      let x = Predef.tk 2 lexem in
-    table { 
-      SF Sg Nom => x + "ka";
-      SF Sg Gen => x + "ki";
-      SF Sg Dat => x + "ce";
-      SF Sg Acc => x + "kę";
-      SF Sg Instr => x + "ką";
-      SF Sg Loc => x + "ce";
-      SF Sg Voc => x + "ko";
-      SF Pl Nom => x + "ki";
-      SF Pl Gen => x + "ek";
-      SF Pl Dat => x + "kom";
-      SF Pl Acc => x + "ki";
-      SF Pl Instr => x + "kami";
-      SF Pl Loc => x + "kach";
-      SF Pl Voc => x + "ki"
-    };
-
-    oper mkNTable0006: Str -> SubstForm => Str; --%
-    oper mkNTable0006 lexem = 
-      let x = Predef.tk 2 lexem in
-    table { 
-      SF Sg Nom => x + "el";
-      SF Sg Gen => x + "la";
-      SF Sg Dat => x + "lowi";
-      SF Sg Acc => x + "la";
-      SF Sg Instr => x + "lem";
-      SF Sg Loc => x + "lu";
-      SF Sg Voc => x + "lu";
-      SF Pl Nom => x + "lowie";
-      SF Pl Gen => x + "li";
-      SF Pl Dat => x + "lom";
-      SF Pl Acc => x + "li";
-      SF Pl Instr => x + "lami";
-      SF Pl Loc => x + "lach";
-      SF Pl Voc => x + "lowie"
-    };
-
-    oper mkNTable0007: Str -> SubstForm => Str; --%
-    oper mkNTable0007 lexem = 
-      let x = Predef.tk 0 lexem in
-    table { 
-      SF Sg Nom => x + "";
-      SF Sg Gen => x + "a";
-      SF Sg Dat => x + "owi";
-      SF Sg Acc => x + "a";
-      SF Sg Instr => x + "em";
-      SF Sg Loc => x + "ze";
-      SF Sg Voc => x + "ze";
-      SF Pl Nom => x + "owie";
-      SF Pl Gen => x + "ów";
-      SF Pl Dat => x + "om";
-      SF Pl Acc => x + "ów";
-      SF Pl Instr => x + "ami";
-      SF Pl Loc => x + "ach";
-      SF Pl Voc => x + "owie"
-    };
-
-    oper mkNTable0008: Str -> SubstForm => Str; --%
-    oper mkNTable0008 lexem = 
-      let x = Predef.tk 2 lexem in
-    table { 
-      SF Sg Nom => x + "ów";
-      SF Sg Gen => x + "owa";
-      SF Sg Dat => x + "owowi";
-      SF Sg Acc => x + "ów";
-      SF Sg Instr => x + "owem";
-      SF Sg Loc => x + "owie";
-      SF Sg Voc => x + "owie";
-      SF Pl Nom => x + "owy";
-      SF Pl Gen => x + "owów";
-      SF Pl Dat => x + "owom";
-      SF Pl Acc => x + "owy";
-      SF Pl Instr => x + "owami";
-      SF Pl Loc => x + "owach";
-      SF Pl Voc => x + "owy"
-    };
-
-    oper mkNTable0009: Str -> SubstForm => Str; --%
-    oper mkNTable0009 lexem = 
-      let x = Predef.tk 1 lexem in
-    table { 
-      SF Sg Nom => x + "y";
-      SF Sg Gen => x + "ego";
-      SF Sg Dat => x + "emu";
-      SF Sg Acc => x + "ego";
-      SF Sg Instr => x + "ym";
-      SF Sg Loc => x + "ym";
-      SF Sg Voc => x + "y";
-      SF Pl Nom => x + "owie";
-      SF Pl Gen => x + "ych";
-      SF Pl Dat => x + "ym";
-      SF Pl Acc => x + "ych";
-      SF Pl Instr => x + "ymi";
-      SF Pl Loc => x + "ych";
-      SF Pl Voc => x + "owie"
-    };
-
-    oper mkNTable0010: Str -> SubstForm => Str; --%
-    oper mkNTable0010 lexem = 
-      let x = Predef.tk 1 lexem in
-    table { 
-      SF Sg Nom => x + "a";
-      SF Sg Gen => x + "ej";
-      SF Sg Dat => x + "ej";
-      SF Sg Acc => x + "ą";
-      SF Sg Instr => x + "ą";
-      SF Sg Loc => x + "ej";
-      SF Sg Voc => x + "a";
-      SF Pl Nom => x + "e";
-      SF Pl Gen => x + "ych";
-      SF Pl Dat => x + "ym";
-      SF Pl Acc => x + "e";
-      SF Pl Instr => x + "ymi";
-      SF Pl Loc => x + "ych";
-      SF Pl Voc => x + "e"
-    };
-
-    oper mkNTable0011: Str -> SubstForm => Str; --%
-    oper mkNTable0011 lexem = 
-      let x = Predef.tk 1 lexem in
-    table { 
-      SF Sg Nom => x + "a";
-      SF Sg Gen => x + "y";
-      SF Sg Dat => x + "zie";
-      SF Sg Acc => x + "ę";
-      SF Sg Instr => x + "ą";
-      SF Sg Loc => x + "zie";
-      SF Sg Voc => x + "o";
-      SF Pl Nom => x + "y";
-      SF Pl Gen => x + "";
-      SF Pl Dat => x + "om";
-      SF Pl Acc => x + "y";
-      SF Pl Instr => x + "ami";
-      SF Pl Loc => x + "ach";
-      SF Pl Voc => x + "y"
-    };
-
-    oper mkNTable0012: Str -> SubstForm => Str; --%
-    oper mkNTable0012 lexem = 
-      let x = Predef.tk 0 lexem in
-    table { 
-      SF Sg Nom => x + "";
-      SF Sg Gen => x + "a";
-      SF Sg Dat => x + "owi";
-      SF Sg Acc => x + "a";
-      SF Sg Instr => x + "iem";
-      SF Sg Loc => x + "u";
-      SF Sg Voc => x + "u";
-      SF Pl Nom => x + "owie";
-      SF Pl Gen => x + "ów";
-      SF Pl Dat => x + "om";
-      SF Pl Acc => x + "ów";
-      SF Pl Instr => x + "ami";
-      SF Pl Loc => x + "ach";
-      SF Pl Voc => x + "owie"
-    };
-
-    oper mkNTable0013: Str -> SubstForm => Str; --%
-    oper mkNTable0013 lexem = 
-      let x = Predef.tk 3 lexem in
-    table { 
-      SF Sg Nom => x + "iec";
-      SF Sg Gen => x + "ca";
-      SF Sg Dat => x + "cowi";
-      SF Sg Acc => x + "ca";
-      SF Sg Instr => x + "cem";
-      SF Sg Loc => x + "cu";
-      SF Sg Voc => x + "cu";
-      SF Pl Nom => x + "cowie";
-      SF Pl Gen => x + "ców";
-      SF Pl Dat => x + "com";
-      SF Pl Acc => x + "ców";
-      SF Pl Instr => x + "cami";
-      SF Pl Loc => x + "cach";
-      SF Pl Voc => x + "cowie"
-    };
-
-    oper mkNTable0015: Str -> SubstForm => Str; --%
-    oper mkNTable0015 lexem = 
-      let x = Predef.tk 4 lexem in
-    table { 
-      SF Sg Nom => x + "adaś";
-      SF Sg Gen => x + "adasia";
-      SF Sg Dat => x + "adasiowi";
-      SF Sg Acc => x + "adasia";
-      SF Sg Instr => x + "adasiem";
-      SF Sg Loc => x + "adasiu";
-      SF Sg Voc => x + "adasiu";
-      SF Pl Nom => x + "adasie";
-      SF Pl Gen => x + "Adasiów";
-      SF Pl Dat => x + "adasiom";
-      SF Pl Acc => x + "Adasiów";
-      SF Pl Instr => x + "adasiami";
-      SF Pl Loc => x + "adasiach";
-      SF Pl Voc => x + "adasie"
-    };
-
-    oper mkNTable0016: Str -> SubstForm => Str; --%
-    oper mkNTable0016 lexem = 
-      let x = Predef.tk 1 lexem in
-    table { 
-      SF Sg Nom => x + "a";
-      SF Sg Gen => x + "i";
-      SF Sg Dat => x + "i";
-      SF Sg Acc => x + "ę";
-      SF Sg Instr => x + "ą";
-      SF Sg Loc => x + "i";
-      SF Sg Voc => x + "u";
-      SF Pl Nom => x + "e";
-      SF Pl Gen => x + "";
-      SF Pl Dat => x + "om";
-      SF Pl Acc => x + "e";
-      SF Pl Instr => x + "ami";
-      SF Pl Loc => x + "ach";
-      SF Pl Voc => x + "e"
-    };
-
-    oper mkNTable0017: Str -> SubstForm => Str; --%
-    oper mkNTable0017 lexem = 
-      let x = Predef.tk 1 lexem in
-    table { 
-      SF Sg Nom => x + "a";
-      SF Sg Gen => x + "y";
-      SF Sg Dat => x + "ie";
-      SF Sg Acc => x + "ę";
-      SF Sg Instr => x + "ą";
-      SF Sg Loc => x + "ie";
-      SF Sg Voc => x + "o";
-      SF Pl Nom => x + "y";
-      SF Pl Gen => x + "";
-      SF Pl Dat => x + "om";
-      SF Pl Acc => x + "y";
-      SF Pl Instr => x + "ami";
-      SF Pl Loc => x + "ach";
-      SF Pl Voc => x + "y"
-    };
-
-    oper mkNTable0018: Str -> SubstForm => Str; --%
-    oper mkNTable0018 lexem = 
-      let x = Predef.tk 2 lexem in
-    table { 
-      SF Sg Nom => x + "ia";
-      SF Sg Gen => x + "ii";
-      SF Sg Dat => x + "ii";
-      SF Sg Acc => x + "ię";
-      SF Sg Instr => x + "ią";
-      SF Sg Loc => x + "ii";
-      SF Sg Voc => x + "io";
-      SF Pl Nom => x + "ie";
-      SF Pl Gen => x + "yj";
-      SF Pl Dat => x + "iom";
-      SF Pl Acc => x + "ie";
-      SF Pl Instr => x + "iami";
-      SF Pl Loc => x + "iach";
-      SF Pl Voc => x + "ie"
-    };
-
-    oper mkNTable0021: Str -> SubstForm => Str; --%
-    oper mkNTable0021 lexem = 
-      let x = Predef.tk 1 lexem in
-    table { 
-      SF Sg Nom => x + "k";
-      SF Sg Gen => x + "ka";
-      SF Sg Dat => x + "kowi";
-      SF Sg Acc => x + "ka";
-      SF Sg Instr => x + "kiem";
-      SF Sg Loc => x + "ku";
-      SF Sg Voc => x + "ku";
-      SF Pl Nom => x + "cy";
-      SF Pl Gen => x + "ków";
-      SF Pl Dat => x + "kom";
-      SF Pl Acc => x + "ków";
-      SF Pl Instr => x + "kami";
-      SF Pl Loc => x + "kach";
-      SF Pl Voc => x + "cy"
-    };
-
-    oper mkNTable0022: Str -> SubstForm => Str; --%
-    oper mkNTable0022 lexem = 
-      let x = Predef.tk 2 lexem in
-    table { 
-      SF Sg Nom => x + "ta";
-      SF Sg Gen => x + "ty";
-      SF Sg Dat => x + "cie";
-      SF Sg Acc => x + "tę";
-      SF Sg Instr => x + "tą";
-      SF Sg Loc => x + "cie";
-      SF Sg Voc => x + "to";
-      SF Pl Nom => x + "ty";
-      SF Pl Gen => x + "t";
-      SF Pl Dat => x + "tom";
-      SF Pl Acc => x + "ty";
-      SF Pl Instr => x + "tami";
-      SF Pl Loc => x + "tach";
-      SF Pl Voc => x + "ty"
-    };
-
-    oper mkNTable0023: Str -> SubstForm => Str; --%
-    oper mkNTable0023 lexem = 
-      let x = Predef.tk 2 lexem in
-    table { 
-      SF Sg Nom => x + "ka";
-      SF Sg Gen => x + "ki";
-      SF Sg Dat => x + "ce";
-      SF Sg Acc => x + "kę";
-      SF Sg Instr => x + "ką";
-      SF Sg Loc => x + "ce";
-      SF Sg Voc => x + "ko";
-      SF Pl Nom => x + "ki";
-      SF Pl Gen => x + "k";
-      SF Pl Dat => x + "kom";
-      SF Pl Acc => x + "ki";
-      SF Pl Instr => x + "kami";
-      SF Pl Loc => x + "kach";
-      SF Pl Voc => x + "ki"
-    };
-
-    oper mkNTable0024: Str -> SubstForm => Str; --%
-    oper mkNTable0024 lexem = 
-      let x = Predef.tk 0 lexem in
-    table { 
-      SF Sg Nom => x + "";
-      SF Sg Gen => x + "a";
-      SF Sg Dat => x + "owi";
-      SF Sg Acc => x + "a";
-      SF Sg Instr => x + "em";
-      SF Sg Loc => x + "ze";
-      SF Sg Voc => x + "ze";
-      SF Pl Nom => x + "zy";
-      SF Pl Gen => x + "ów";
-      SF Pl Dat => x + "om";
-      SF Pl Acc => x + "ów";
-      SF Pl Instr => x + "ami";
-      SF Pl Loc => x + "ach";
-      SF Pl Voc => x + "zy"
-    };
-
-    oper mkNTable0025: Str -> SubstForm => Str; --%
-    oper mkNTable0025 lexem = 
-      let x = Predef.tk 2 lexem in
-    table { 
-      SF Sg Nom => x + "in";
-      SF Sg Gen => x + "ina";
-      SF Sg Dat => x + "inowi";
-      SF Sg Acc => x + "ina";
-      SF Sg Instr => x + "inem";
-      SF Sg Loc => x + "inie";
-      SF Sg Voc => x + "inie";
-      SF Pl Nom => x + "ie";
-      SF Pl Gen => x + "ów";
-      SF Pl Dat => x + "om";
-      SF Pl Acc => x + "ów";
-      SF Pl Instr => x + "ami";
-      SF Pl Loc => x + "ach";
-      SF Pl Voc => x + "ie"
-    };
-
-    oper mkNTable0026: Str -> SubstForm => Str; --%
-    oper mkNTable0026 lexem = 
-      let x = Predef.tk 2 lexem in
-    table { 
-      SF Sg Nom => x + "ga";
-      SF Sg Gen => x + "gi";
-      SF Sg Dat => x + "dze";
-      SF Sg Acc => x + "gę";
-      SF Sg Instr => x + "gą";
-      SF Sg Loc => x + "dze";
-      SF Sg Voc => x + "go";
-      SF Pl Nom => x + "gi";
-      SF Pl Gen => x + "g";
-      SF Pl Dat => x + "gom";
-      SF Pl Acc => x + "gi";
-      SF Pl Instr => x + "gami";
-      SF Pl Loc => x + "gach";
-      SF Pl Voc => x + "gi"
-    };
-
-    oper mkNTable0028: Str -> SubstForm => Str; --%
-    oper mkNTable0028 lexem = 
-      let x = Predef.tk 1 lexem in
-    table { 
-      SF Sg Nom => x + "t";
-      SF Sg Gen => x + "ta";
-      SF Sg Dat => x + "towi";
-      SF Sg Acc => x + "ta";
-      SF Sg Instr => x + "tem";
-      SF Sg Loc => x + "cie";
-      SF Sg Voc => x + "cie";
-      SF Pl Nom => x + "towie";
-      SF Pl Gen => x + "tów";
-      SF Pl Dat => x + "tom";
-      SF Pl Acc => x + "tów";
-      SF Pl Instr => x + "tami";
-      SF Pl Loc => x + "tach";
-      SF Pl Voc => x + "towie"
-    };
-
-    oper mkNTable0029: Str -> SubstForm => Str; --%
-    oper mkNTable0029 lexem = 
-      let x = Predef.tk 5 lexem in
-    table { 
-      SF Sg Nom => x + "Agata";
-      SF Sg Gen => x + "agaty";
-      SF Sg Dat => x + "agacie";
-      SF Sg Acc => x + "Agatę";
-      SF Sg Instr => x + "Agatą";
-      SF Sg Loc => x + "agacie";
-      SF Sg Voc => x + "Agato";
-      SF Pl Nom => x + "agaty";
-      SF Pl Gen => x + "agat";
-      SF Pl Dat => x + "agatom";
-      SF Pl Acc => x + "agaty";
-      SF Pl Instr => x + "agatami";
-      SF Pl Loc => x + "agatach";
-      SF Pl Voc => x + "agaty"
-    };
-
-    oper mkNTable0030: Str -> SubstForm => Str; --%
-    oper mkNTable0030 lexem = 
-      let x = Predef.tk 3 lexem in
-    table { 
-      SF Sg Nom => x + "nia";
-      SF Sg Gen => x + "ni";
-      SF Sg Dat => x + "ni";
-      SF Sg Acc => x + "nię";
-      SF Sg Instr => x + "nią";
-      SF Sg Loc => x + "ni";
-      SF Sg Voc => x + "niu";
-      SF Pl Nom => x + "nie";
-      SF Pl Gen => x + "ń";
-      SF Pl Dat => x + "niom";
-      SF Pl Acc => x + "nie";
-      SF Pl Instr => x + "niami";
-      SF Pl Loc => x + "niach";
-      SF Pl Voc => x + "nie"
-    };
-
-    oper mkNTable0031: Str -> SubstForm => Str; --%
-    oper mkNTable0031 lexem = 
-      let x = Predef.tk 3 lexem in
-    table { 
-      SF Sg Nom => x + "sia";
-      SF Sg Gen => x + "si";
-      SF Sg Dat => x + "si";
-      SF Sg Acc => x + "się";
-      SF Sg Instr => x + "sią";
-      SF Sg Loc => x + "si";
-      SF Sg Voc => x + "siu";
-      SF Pl Nom => x + "sie";
-      SF Pl Gen => x + "ś";
-      SF Pl Dat => x + "siom";
-      SF Pl Acc => x + "sie";
-      SF Pl Instr => x + "siami";
-      SF Pl Loc => x + "siach";
-      SF Pl Voc => x + "sie"
-    };
-
-    oper mkNTable0032: Str -> SubstForm => Str; --%
-    oper mkNTable0032 lexem = 
-      let x = Predef.tk 0 lexem in
-    table { 
-      SF Sg Nom => x + "";
-      SF Sg Gen => x + "a";
-      SF Sg Dat => x + "owi";
-      SF Sg Acc => x + "a";
-      SF Sg Instr => x + "em";
-      SF Sg Loc => x + "zie";
-      SF Sg Voc => x + "zie";
-      SF Pl Nom => x + "owie";
-      SF Pl Gen => x + "ów";
-      SF Pl Dat => x + "om";
-      SF Pl Acc => x + "ów";
-      SF Pl Instr => x + "ami";
-      SF Pl Loc => x + "ach";
-      SF Pl Voc => x + "owie"
-    };
-
-    oper mkNTable0033: Str -> SubstForm => Str; --%
-    oper mkNTable0033 lexem = 
-      let x = Predef.tk 4 lexem in
-    table { 
-      SF Sg Nom => x + "Ajax";
-      SF Sg Gen => x + "ajaksu";
-      SF Sg Dat => x + "ajaksowi";
-      SF Sg Acc => x + "Ajax";
-      SF Sg Instr => x + "ajaksem";
-      SF Sg Loc => x + "ajaksie";
-      SF Sg Voc => x + "ajaksie";
-      SF Pl Nom => x + "ajaksy";
-      SF Pl Gen => x + "ajaksów";
-      SF Pl Dat => x + "ajaksom";
-      SF Pl Acc => x + "ajaksy";
-      SF Pl Instr => x + "ajaksami";
-      SF Pl Loc => x + "ajaksach";
-      SF Pl Voc => x + "ajaksy"
-    };
-
-    oper mkNTable0035: Str -> SubstForm => Str; --%
-    oper mkNTable0035 lexem = 
-      let x = Predef.tk 6 lexem in
-    table { 
-      SF Sg Nom => x + "albert";
-      SF Sg Gen => x + "alberta";
-      SF Sg Dat => x + "albertowi";
-      SF Sg Acc => x + "alberta";
-      SF Sg Instr => x + "albertem";
-      SF Sg Loc => x + "albercie";
-      SF Sg Voc => x + "albercie";
-      SF Pl Nom => x + "Albertowie";
-      SF Pl Gen => x + "albertów";
-      SF Pl Dat => x + "albertom";
-      SF Pl Acc => x + "albertów";
-      SF Pl Instr => x + "albertami";
-      SF Pl Loc => x + "albertach";
-      SF Pl Voc => x + "Albertowie"
-    };
-
-    oper mkNTable0036: Str -> SubstForm => Str; --%
-    oper mkNTable0036 lexem = 
-      let x = Predef.tk 7 lexem in
-    table { 
-      SF Sg Nom => x + "alberta";
-      SF Sg Gen => x + "alberty";
-      SF Sg Dat => x + "albercie";
-      SF Sg Acc => x + "Albertę";
-      SF Sg Instr => x + "Albertą";
-      SF Sg Loc => x + "albercie";
-      SF Sg Voc => x + "Alberto";
-      SF Pl Nom => x + "alberty";
-      SF Pl Gen => x + "albert";
-      SF Pl Dat => x + "albertom";
-      SF Pl Acc => x + "alberty";
-      SF Pl Instr => x + "albertami";
-      SF Pl Loc => x + "albertach";
-      SF Pl Voc => x + "alberty"
-    };
-
-    oper mkNTable0037: Str -> SubstForm => Str; --%
-    oper mkNTable0037 lexem = 
-      let x = Predef.tk 7 lexem in
-    table { 
-      SF Sg Nom => x + "Alberto";
-      SF Sg Gen => x + "alberta";
-      SF Sg Dat => x + "albertowi";
-      SF Sg Acc => x + "alberta";
-      SF Sg Instr => x + "albertem";
-      SF Sg Loc => x + "albercie";
-      SF Sg Voc => x + "Alberto";
-      SF Pl Nom => x + "Albertowie";
-      SF Pl Gen => x + "albertów";
-      SF Pl Dat => x + "albertom";
-      SF Pl Acc => x + "albertów";
-      SF Pl Instr => x + "albertami";
-      SF Pl Loc => x + "albertach";
-      SF Pl Voc => x + "Albertowie"
-    };
-
-    oper mkNTable0038: Str -> SubstForm => Str; --%
-    oper mkNTable0038 lexem = 
-      let x = Predef.tk 0 lexem in
-    table { 
-      SF Sg Nom => x + "";
-      SF Sg Gen => x + "ego";
-      SF Sg Dat => x + "emu";
-      SF Sg Acc => x + "ego";
-      SF Sg Instr => x + "m";
-      SF Sg Loc => x + "m";
-      SF Sg Voc => x + "";
-      SF Pl Nom => x + "owie";
-      SF Pl Gen => x + "ch";
-      SF Pl Dat => x + "m";
-      SF Pl Acc => x + "ch";
-      SF Pl Instr => x + "mi";
-      SF Pl Loc => x + "ch";
-      SF Pl Voc => x + "owie"
-    };
-
-    oper mkNTable0039: Str -> SubstForm => Str; --%
-    oper mkNTable0039 lexem = 
-      let x = Predef.tk 0 lexem in
-    table { 
-      SF Sg Nom => x + "";
-      SF Sg Gen => x + "a";
-      SF Sg Dat => x + "owi";
-      SF Sg Acc => x + "a";
-      SF Sg Instr => x + "em";
-      SF Sg Loc => x + "ie";
-      SF Sg Voc => x + "ie";
-      SF Pl Nom => x + "i";
-      SF Pl Gen => x + "ów";
-      SF Pl Dat => x + "om";
-      SF Pl Acc => x + "ów";
-      SF Pl Instr => x + "ami";
-      SF Pl Loc => x + "ach";
-      SF Pl Voc => x + "i"
-    };
-
-    oper mkNTable0040: Str -> SubstForm => Str; --%
-    oper mkNTable0040 lexem = 
-      let x = Predef.tk 9 lexem in
-    table { 
-      SF Sg Nom => x + "albertyna";
-      SF Sg Gen => x + "albertyny";
-      SF Sg Dat => x + "albertynie";
-      SF Sg Acc => x + "Albertynę";
-      SF Sg Instr => x + "Albertyną";
-      SF Sg Loc => x + "albertynie";
-      SF Sg Voc => x + "Albertyno";
-      SF Pl Nom => x + "albertyny";
-      SF Pl Gen => x + "albertyn";
-      SF Pl Dat => x + "albertynom";
-      SF Pl Acc => x + "albertyny";
-      SF Pl Instr => x + "albertynami";
-      SF Pl Loc => x + "albertynach";
-      SF Pl Voc => x + "albertyny"
-    };
-
-    oper mkNTable0042: Str -> SubstForm => Str; --%
-    oper mkNTable0042 lexem = 
-      let x = Predef.tk 4 lexem in
-    table { 
-      SF Sg Nom => x + "Alek";
-      SF Sg Gen => x + "alka";
-      SF Sg Dat => x + "Alkowi";
-      SF Sg Acc => x + "alka";
-      SF Sg Instr => x + "Alkiem";
-      SF Sg Loc => x + "Alku";
-      SF Sg Voc => x + "Alku";
-      SF Pl Nom => x + "alkowie";
-      SF Pl Gen => x + "alków";
-      SF Pl Dat => x + "alkom";
-      SF Pl Acc => x + "alków";
-      SF Pl Instr => x + "alkami";
-      SF Pl Loc => x + "alkach";
-      SF Pl Voc => x + "alkowie"
-    };
-
-    oper mkNTable0043: Str -> SubstForm => Str; --%
-    oper mkNTable0043 lexem = 
-      let x = Predef.tk 2 lexem in
-    table { 
-      SF Sg Nom => x + "er";
-      SF Sg Gen => x + "ra";
-      SF Sg Dat => x + "rowi";
-      SF Sg Acc => x + "ra";
-      SF Sg Instr => x + "rem";
-      SF Sg Loc => x + "rze";
-      SF Sg Voc => x + "rze";
-      SF Pl Nom => x + "rowie";
-      SF Pl Gen => x + "rów";
-      SF Pl Dat => x + "rom";
-      SF Pl Acc => x + "rów";
-      SF Pl Instr => x + "rami";
-      SF Pl Loc => x + "rach";
-      SF Pl Voc => x + "rowie"
-    };
-
-    oper mkNTable0044: Str -> SubstForm => Str; --%
-    oper mkNTable0044 lexem = 
-      let x = Predef.tk 2 lexem in
-    table { 
-      SF Sg Nom => x + "ra";
-      SF Sg Gen => x + "ry";
-      SF Sg Dat => x + "rze";
-      SF Sg Acc => x + "rę";
-      SF Sg Instr => x + "rą";
-      SF Sg Loc => x + "rze";
-      SF Sg Voc => x + "ro";
-      SF Pl Nom => x + "ry";
-      SF Pl Gen => x + "er";
-      SF Pl Dat => x + "rom";
-      SF Pl Acc => x + "ry";
-      SF Pl Instr => x + "rami";
-      SF Pl Loc => x + "rach";
-      SF Pl Voc => x + "ry"
-    };
-
-    oper mkNTable0045: Str -> SubstForm => Str; --%
-    oper mkNTable0045 lexem = 
-      let x = Predef.tk 2 lexem in
-    table { 
-      SF Sg Nom => x + "ów";
-      SF Sg Gen => x + "owa";
-      SF Sg Dat => x + "owu";
-      SF Sg Acc => x + "ów";
-      SF Sg Instr => x + "owem";
-      SF Sg Loc => x + "owie";
-      SF Sg Voc => x + "owie";
-      SF Pl Nom => x + "owy";
-      SF Pl Gen => x + "owów";
-      SF Pl Dat => x + "owom";
-      SF Pl Acc => x + "owy";
-      SF Pl Instr => x + "owami";
-      SF Pl Loc => x + "owach";
-      SF Pl Voc => x + "owy"
-    };
-
-    oper mkNTable0047: Str -> SubstForm => Str; --%
-    oper mkNTable0047 lexem = 
-      let x = Predef.tk 1 lexem in
-    table { 
-      SF Sg Nom => x + "o";
-      SF Sg Gen => x + "a";
-      SF Sg Dat => x + "owi";
-      SF Sg Acc => x + "a";
-      SF Sg Instr => x + "em";
-      SF Sg Loc => x + "zie";
-      SF Sg Voc => x + "o";
-      SF Pl Nom => x + "owie";
-      SF Pl Gen => x + "ów";
-      SF Pl Dat => x + "om";
-      SF Pl Acc => x + "ów";
-      SF Pl Instr => x + "ami";
-      SF Pl Loc => x + "ach";
-      SF Pl Voc => x + "owie"
-    };
-
-    oper mkNTable0049: Str -> SubstForm => Str; --%
-    oper mkNTable0049 lexem = 
-      let x = Predef.tk 0 lexem in
-    table { 
-      SF Sg Nom => x + "";
-      SF Sg Gen => x + "u";
-      SF Sg Dat => x + "owi";
-      SF Sg Acc => x + "";
-      SF Sg Instr => x + "em";
-      SF Sg Loc => x + "u";
-      SF Sg Voc => x + "u";
-      SF Pl Nom => x + "e";
-      SF Pl Gen => x + "i";
-      SF Pl Dat => x + "om";
-      SF Pl Acc => x + "e";
-      SF Pl Instr => x + "ami";
-      SF Pl Loc => x + "ach";
-      SF Pl Voc => x + "e"
-    };
-
-    oper mkNTable0050: Str -> SubstForm => Str; --%
-    oper mkNTable0050 lexem = 
-      let x = Predef.tk 3 lexem in
-    table { 
-      SF Sg Nom => x + "Ali";
-      SF Sg Gen => x + "Alego";
-      SF Sg Dat => x + "Alemu";
-      SF Sg Acc => x + "Alego";
-      SF Sg Instr => x + "alim";
-      SF Sg Loc => x + "alim";
-      SF Sg Voc => x + "Ali";
-      SF Pl Nom => x + "Alowie";
-      SF Pl Gen => x + "Alich";
-      SF Pl Dat => x + "alim";
-      SF Pl Acc => x + "Alich";
-      SF Pl Instr => x + "Alimi";
-      SF Pl Loc => x + "Alich";
-      SF Pl Voc => x + "Alowie"
-    };
-
-    oper mkNTable0051: Str -> SubstForm => Str; --%
-    oper mkNTable0051 lexem = 
-      let x = Predef.tk 1 lexem in
-    table { 
-      SF Sg Nom => x + "a";
-      SF Sg Gen => x + "i";
-      SF Sg Dat => x + "i";
-      SF Sg Acc => x + "ę";
-      SF Sg Instr => x + "ą";
-      SF Sg Loc => x + "i";
-      SF Sg Voc => x + "o";
-      SF Pl Nom => x + "e";
-      SF Pl Gen => x + "i";
-      SF Pl Dat => x + "om";
-      SF Pl Acc => x + "e";
-      SF Pl Instr => x + "ami";
-      SF Pl Loc => x + "ach";
-      SF Pl Voc => x + "e"
-    };
-
-    oper mkNTable0052: Str -> SubstForm => Str; --%
-    oper mkNTable0052 lexem = 
-      let x = Predef.tk 4 lexem in
-    table { 
-      SF Sg Nom => x + "alka";
-      SF Sg Gen => x + "alki";
-      SF Sg Dat => x + "alce";
-      SF Sg Acc => x + "alkę";
-      SF Sg Instr => x + "alką";
-      SF Sg Loc => x + "alce";
-      SF Sg Voc => x + "alko";
-      SF Pl Nom => x + "alki";
-      SF Pl Gen => x + "Alek";
-      SF Pl Dat => x + "alkom";
-      SF Pl Acc => x + "alki";
-      SF Pl Instr => x + "alkami";
-      SF Pl Loc => x + "alkach";
-      SF Pl Voc => x + "alki"
-    };
-
-    oper mkNTable0055: Str -> SubstForm => Str; --%
-    oper mkNTable0055 lexem = 
-      let x = Predef.tk 9 lexem in
-    table { 
-      SF Sg Nom => x + "alzheimer";
-      SF Sg Gen => x + "alzheimera";
-      SF Sg Dat => x + "alzheimerowi";
-      SF Sg Acc => x + "alzheimera";
-      SF Sg Instr => x + "alzheimerem";
-      SF Sg Loc => x + "alzheimerze";
-      SF Sg Voc => x + "alzheimerze";
-      SF Pl Nom => x + "Alzheimerowie";
-      SF Pl Gen => x + "alzheimerów";
-      SF Pl Dat => x + "alzheimerom";
-      SF Pl Acc => x + "alzheimerów";
-      SF Pl Instr => x + "alzheimerami";
-      SF Pl Loc => x + "alzheimerach";
-      SF Pl Voc => x + "Alzheimerowie"
-    };
-
-    oper mkNTable0056: Str -> SubstForm => Str; --%
-    oper mkNTable0056 lexem = 
-      let x = Predef.tk 2 lexem in
-    table { 
-      SF Sg Nom => x + "ja";
-      SF Sg Gen => x + "i";
-      SF Sg Dat => x + "i";
-      SF Sg Acc => x + "ję";
-      SF Sg Instr => x + "ją";
-      SF Sg Loc => x + "i";
-      SF Sg Voc => x + "jo";
-      SF Pl Nom => x + "je";
-      SF Pl Gen => x + "i";
-      SF Pl Dat => x + "jom";
-      SF Pl Acc => x + "je";
-      SF Pl Instr => x + "jami";
-      SF Pl Loc => x + "jach";
-      SF Pl Voc => x + "je"
-    };
-
-    oper mkNTable0057: Str -> SubstForm => Str; --%
-    oper mkNTable0057 lexem = 
-      let x = Predef.tk 1 lexem in
-    table { 
-      SF Sg Nom => x + "a";
-      SF Sg Gen => x + "i";
-      SF Sg Dat => x + "i";
-      SF Sg Acc => x + "ę";
-      SF Sg Instr => x + "ą";
-      SF Sg Loc => x + "i";
-      SF Sg Voc => x + "o";
-      SF Pl Nom => x + "e";
-      SF Pl Gen => x + "j";
-      SF Pl Dat => x + "om";
-      SF Pl Acc => x + "e";
-      SF Pl Instr => x + "ami";
-      SF Pl Loc => x + "ach";
-      SF Pl Voc => x + "e"
-    };
-
-    oper mkNTable0058: Str -> SubstForm => Str; --%
-    oper mkNTable0058 lexem = 
-      let x = Predef.tk 7 lexem in
-    table { 
-      SF Sg Nom => x + "Ameryka";
-      SF Sg Gen => x + "ameryki";
-      SF Sg Dat => x + "Ameryce";
-      SF Sg Acc => x + "Amerykę";
-      SF Sg Instr => x + "Ameryką";
-      SF Sg Loc => x + "Ameryce";
-      SF Sg Voc => x + "Ameryko";
-      SF Pl Nom => x + "ameryki";
-      SF Pl Gen => x + "ameryk";
-      SF Pl Dat => x + "amerykom";
-      SF Pl Acc => x + "ameryki";
-      SF Pl Instr => x + "amerykami";
-      SF Pl Loc => x + "amerykach";
-      SF Pl Voc => x + "ameryki"
-    };
-
-    oper mkNTable0059: Str -> SubstForm => Str; --%
-    oper mkNTable0059 lexem = 
-      let x = Predef.tk 4 lexem in
-    table { 
-      SF Sg Nom => x + "niec";
-      SF Sg Gen => x + "ńca";
-      SF Sg Dat => x + "ńcowi";
-      SF Sg Acc => x + "ńca";
-      SF Sg Instr => x + "ńcem";
-      SF Sg Loc => x + "ńcu";
-      SF Sg Voc => x + "ńcu";
-      SF Pl Nom => x + "ńcy";
-      SF Pl Gen => x + "ńców";
-      SF Pl Dat => x + "ńcom";
-      SF Pl Acc => x + "ńców";
-      SF Pl Instr => x + "ńcami";
-      SF Pl Loc => x + "ńcach";
-      SF Pl Voc => x + "ńcy"
-    };
-
-    oper mkNTable0060: Str -> SubstForm => Str; --%
-    oper mkNTable0060 lexem = 
-      let x = Predef.tk 10 lexem in
-    table { 
-      SF Sg Nom => x + "Amerykanin";
-      SF Sg Gen => x + "Amerykanina";
-      SF Sg Dat => x + "Amerykaninowi";
-      SF Sg Acc => x + "Amerykanina";
-      SF Sg Instr => x + "Amerykaninem";
-      SF Sg Loc => x + "Amerykaninie";
-      SF Sg Voc => x + "Amerykaninie";
-      SF Pl Nom => x + "amerykanie";
-      SF Pl Gen => x + "amerykanów";
-      SF Pl Dat => x + "amerykanom";
-      SF Pl Acc => x + "amerykanów";
-      SF Pl Instr => x + "amerykanami";
-      SF Pl Loc => x + "amerykanach";
-      SF Pl Voc => x + "amerykanie"
-    };
-
-    oper mkNTable0061: Str -> SubstForm => Str; --%
-    oper mkNTable0061 lexem = 
-      let x = Predef.tk 0 lexem in
-    table { 
-      SF Sg Nom => x + "";
-      SF Sg Gen => x + "a";
-      SF Sg Dat => x + "owi";
-      SF Sg Acc => x + "a";
-      SF Sg Instr => x + "em";
-      SF Sg Loc => x + "ze";
-      SF Sg Voc => x + "ze";
-      SF Pl Nom => x + "y";
-      SF Pl Gen => x + "ów";
-      SF Pl Dat => x + "om";
-      SF Pl Acc => x + "y";
-      SF Pl Instr => x + "ami";
-      SF Pl Loc => x + "ach";
-      SF Pl Voc => x + "y"
-    };
-
-    oper mkNTable0062: Str -> SubstForm => Str; --%
-    oper mkNTable0062 lexem = 
-      let x = Predef.tk 2 lexem in
-    table { 
-      SF Sg Nom => x + "ek";
-      SF Sg Gen => x + "ka";
-      SF Sg Dat => x + "kowi";
-      SF Sg Acc => x + "ka";
-      SF Sg Instr => x + "kiem";
-      SF Sg Loc => x + "ku";
-      SF Sg Voc => x + "ku";
-      SF Pl Nom => x + "kowie";
-      SF Pl Gen => x + "ków";
-      SF Pl Dat => x + "kom";
-      SF Pl Acc => x + "ków";
-      SF Pl Instr => x + "kami";
-      SF Pl Loc => x + "kach";
-      SF Pl Voc => x + "kowie"
-    };
-
-    oper mkNTable0063: Str -> SubstForm => Str; --%
-    oper mkNTable0063 lexem = 
-      let x = Predef.tk 0 lexem in
-    table { 
-      SF Sg Nom => x + "";
-      SF Sg Gen => x + "ego";
-      SF Sg Dat => x + "emu";
-      SF Sg Acc => x + "ego";
-      SF Sg Instr => x + "m";
-      SF Sg Loc => x + "m";
-      SF Sg Voc => x + "";
-      SF Pl Nom => x + "";
-      SF Pl Gen => x + "ch";
-      SF Pl Dat => x + "m";
-      SF Pl Acc => x + "ch";
-      SF Pl Instr => x + "mi";
-      SF Pl Loc => x + "ch";
-      SF Pl Voc => x + ""
-    };
-
-    oper mkNTable0064: Str -> SubstForm => Str; --%
-    oper mkNTable0064 lexem = 
-      let x = Predef.tk 1 lexem in
-    table { 
-      SF Sg Nom => x + "i";
-      SF Sg Gen => x + "ego";
-      SF Sg Dat => x + "emu";
-      SF Sg Acc => x + "ego";
-      SF Sg Instr => x + "im";
-      SF Sg Loc => x + "im";
-      SF Sg Voc => x + "i";
-      SF Pl Nom => x + "i";
-      SF Pl Gen => x + "ich";
-      SF Pl Dat => x + "im";
-      SF Pl Acc => x + "ich";
-      SF Pl Instr => x + "imi";
-      SF Pl Loc => x + "ich";
-      SF Pl Voc => x + "i"
-    };
-
-    oper mkNTable0065: Str -> SubstForm => Str; --%
-    oper mkNTable0065 lexem = 
-      let x = Predef.tk 1 lexem in
-    table { 
-      SF Sg Nom => x + "ć";
-      SF Sg Gen => x + "cia";
-      SF Sg Dat => x + "ciowi";
-      SF Sg Acc => x + "cia";
-      SF Sg Instr => x + "ciem";
-      SF Sg Loc => x + "ciu";
-      SF Sg Voc => x + "ciu";
-      SF Pl Nom => x + "ciowie";
-      SF Pl Gen => x + "ciów";
-      SF Pl Dat => x + "ciom";
-      SF Pl Acc => x + "ciów";
-      SF Pl Instr => x + "ciami";
-      SF Pl Loc => x + "ciach";
-      SF Pl Voc => x + "ciowie"
-    };
-
-    oper mkNTable0067: Str -> SubstForm => Str; --%
-    oper mkNTable0067 lexem = 
-      let x = Predef.tk 9 lexem in
-    table { 
-      SF Sg Nom => x + "andrzejek";
-      SF Sg Gen => x + "Andrzejka";
-      SF Sg Dat => x + "Andrzejkowi";
-      SF Sg Acc => x + "Andrzejka";
-      SF Sg Instr => x + "Andrzejkiem";
-      SF Sg Loc => x + "Andrzejku";
-      SF Sg Voc => x + "Andrzejku";
-      SF Pl Nom => x + "Andrzejkowie";
-      SF Pl Gen => x + "Andrzejków";
-      SF Pl Dat => x + "andrzejkom";
-      SF Pl Acc => x + "Andrzejków";
-      SF Pl Instr => x + "andrzejkami";
-      SF Pl Loc => x + "andrzejkach";
-      SF Pl Voc => x + "Andrzejkowie"
-    };
-
-    oper mkNTable0068: Str -> SubstForm => Str; --%
-    oper mkNTable0068 lexem = 
-      let x = Predef.tk 3 lexem in
-    table { 
-      SF Sg Nom => x + "zia";
-      SF Sg Gen => x + "zi";
-      SF Sg Dat => x + "zi";
-      SF Sg Acc => x + "zię";
-      SF Sg Instr => x + "zią";
-      SF Sg Loc => x + "zi";
-      SF Sg Voc => x + "ziu";
-      SF Pl Nom => x + "zie";
-      SF Pl Gen => x + "ź";
-      SF Pl Dat => x + "ziom";
-      SF Pl Acc => x + "zie";
-      SF Pl Instr => x + "ziami";
-      SF Pl Loc => x + "ziach";
-      SF Pl Voc => x + "zie"
-    };
-
-    oper mkNTable0069: Str -> SubstForm => Str; --%
-    oper mkNTable0069 lexem = 
-      let x = Predef.tk 1 lexem in
-    table { 
-      SF Sg Nom => x + "a";
-      SF Sg Gen => x + "i";
-      SF Sg Dat => x + "i";
-      SF Sg Acc => x + "ę";
-      SF Sg Instr => x + "ą";
-      SF Sg Loc => x + "i";
-      SF Sg Voc => x + "u";
-      SF Pl Nom => x + "e";
-      SF Pl Gen => x + "i";
-      SF Pl Dat => x + "om";
-      SF Pl Acc => x + "e";
-      SF Pl Instr => x + "ami";
-      SF Pl Loc => x + "ach";
-      SF Pl Voc => x + "e"
-    };
-
-    oper mkNTable0070: Str -> SubstForm => Str; --%
-    oper mkNTable0070 lexem = 
-      let x = Predef.tk 6 lexem in
-    table { 
-      SF Sg Nom => x + "anglik";
-      SF Sg Gen => x + "anglika";
-      SF Sg Dat => x + "anglikowi";
-      SF Sg Acc => x + "anglika";
-      SF Sg Instr => x + "anglikiem";
-      SF Sg Loc => x + "angliku";
-      SF Sg Voc => x + "angliku";
-      SF Pl Nom => x + "Anglicy";
-      SF Pl Gen => x + "anglików";
-      SF Pl Dat => x + "anglikom";
-      SF Pl Acc => x + "anglików";
-      SF Pl Instr => x + "anglikami";
-      SF Pl Loc => x + "anglikach";
-      SF Pl Voc => x + "Anglicy"
-    };
-
-    oper mkNTable0071: Str -> SubstForm => Str; --%
-    oper mkNTable0071 lexem = 
-      let x = Predef.tk 0 lexem in
-    table { 
-      SF Sg Nom => x + "";
-      SF Sg Gen => x + "a";
-      SF Sg Dat => x + "owi";
-      SF Sg Acc => x + "a";
-      SF Sg Instr => x + "em";
-      SF Sg Loc => x + "u";
-      SF Sg Voc => x + "u";
-      SF Pl Nom => x + "e";
-      SF Pl Gen => x + "ów";
-      SF Pl Dat => x + "om";
-      SF Pl Acc => x + "ów";
-      SF Pl Instr => x + "ami";
-      SF Pl Loc => x + "ach";
-      SF Pl Voc => x + "e"
-    };
-
-    oper mkNTable0072: Str -> SubstForm => Str; --%
-    oper mkNTable0072 lexem = 
-      let x = Predef.tk 6 lexem in
-    table { 
-      SF Sg Nom => x + "angola";
-      SF Sg Gen => x + "angoli";
-      SF Sg Dat => x + "angoli";
-      SF Sg Acc => x + "Angolę";
-      SF Sg Instr => x + "Angolą";
-      SF Sg Loc => x + "angoli";
-      SF Sg Voc => x + "Angolo";
-      SF Pl Nom => x + "angole";
-      SF Pl Gen => x + "angoli";
-      SF Pl Dat => x + "angolom";
-      SF Pl Acc => x + "angole";
-      SF Pl Instr => x + "angolami";
-      SF Pl Loc => x + "angolach";
-      SF Pl Voc => x + "angole"
-    };
-
-    oper mkNTable0073: Str -> SubstForm => Str; --%
-    oper mkNTable0073 lexem = 
-      let x = Predef.tk 4 lexem in
-    table { 
-      SF Sg Nom => x + "Ania";
-      SF Sg Gen => x + "Ani";
-      SF Sg Dat => x + "Ani";
-      SF Sg Acc => x + "Anię";
-      SF Sg Instr => x + "Anią";
-      SF Sg Loc => x + "Ani";
-      SF Sg Voc => x + "Aniu";
-      SF Pl Nom => x + "anie";
-      SF Pl Gen => x + "Ań";
-      SF Pl Dat => x + "Aniom";
-      SF Pl Acc => x + "anie";
-      SF Pl Instr => x + "Aniami";
-      SF Pl Loc => x + "Aniach";
-      SF Pl Voc => x + "anie"
-    };
-
-    oper mkNTable0074: Str -> SubstForm => Str; --%
-    oper mkNTable0074 lexem = 
-      let x = Predef.tk 6 lexem in
-    table { 
-      SF Sg Nom => x + "Aniela";
-      SF Sg Gen => x + "anieli";
-      SF Sg Dat => x + "anieli";
-      SF Sg Acc => x + "Anielę";
-      SF Sg Instr => x + "Anielą";
-      SF Sg Loc => x + "anieli";
-      SF Sg Voc => x + "Anielu";
-      SF Pl Nom => x + "aniele";
-      SF Pl Gen => x + "anieli";
-      SF Pl Dat => x + "Anielom";
-      SF Pl Acc => x + "aniele";
-      SF Pl Instr => x + "Anielami";
-      SF Pl Loc => x + "Anielach";
-      SF Pl Voc => x + "aniele"
-    };
-
-    oper mkNTable0076: Str -> SubstForm => Str; --%
-    oper mkNTable0076 lexem = 
-      let x = Predef.tk 2 lexem in
-    table { 
-      SF Sg Nom => x + "oł";
-      SF Sg Gen => x + "oła";
-      SF Sg Dat => x + "ołowi";
-      SF Sg Acc => x + "oła";
-      SF Sg Instr => x + "ołem";
-      SF Sg Loc => x + "ele";
-      SF Sg Voc => x + "ele";
-      SF Pl Nom => x + "ołowie";
-      SF Pl Gen => x + "ołów";
-      SF Pl Dat => x + "ołom";
-      SF Pl Acc => x + "ołów";
-      SF Pl Instr => x + "ołami";
-      SF Pl Loc => x + "ołach";
-      SF Pl Voc => x + "ołowie"
-    };
-
-    oper mkNTable0077: Str -> SubstForm => Str; --%
-    oper mkNTable0077 lexem = 
-      let x = Predef.tk 5 lexem in
-    table { 
-      SF Sg Nom => x + "antek";
-      SF Sg Gen => x + "antka";
-      SF Sg Dat => x + "antkowi";
-      SF Sg Acc => x + "antka";
-      SF Sg Instr => x + "antkiem";
-      SF Sg Loc => x + "antku";
-      SF Sg Voc => x + "antku";
-      SF Pl Nom => x + "Antkowie";
-      SF Pl Gen => x + "antków";
-      SF Pl Dat => x + "antkom";
-      SF Pl Acc => x + "antków";
-      SF Pl Instr => x + "antkami";
-      SF Pl Loc => x + "antkach";
-      SF Pl Voc => x + "Antkowie"
-    };
-
-    oper mkNTable0078: Str -> SubstForm => Str; --%
-    oper mkNTable0078 lexem = 
-      let x = Predef.tk 6 lexem in
-    table { 
-      SF Sg Nom => x + "Antoni";
-      SF Sg Gen => x + "Antoniego";
-      SF Sg Dat => x + "Antoniemu";
-      SF Sg Acc => x + "Antoniego";
-      SF Sg Instr => x + "antonim";
-      SF Sg Loc => x + "antonim";
-      SF Sg Voc => x + "Antoni";
-      SF Pl Nom => x + "Antoniowie";
-      SF Pl Gen => x + "Antonich";
-      SF Pl Dat => x + "antonim";
-      SF Pl Acc => x + "Antonich";
-      SF Pl Instr => x + "Antonimi";
-      SF Pl Loc => x + "Antonich";
-      SF Pl Voc => x + "Antoniowie"
-    };
-
-    oper mkNTable0079: Str -> SubstForm => Str; --%
-    oper mkNTable0079 lexem = 
-      let x = Predef.tk 1 lexem in
-    table { 
-      SF Sg Nom => x + "o";
-      SF Sg Gen => x + "a";
-      SF Sg Dat => x + "owi";
-      SF Sg Acc => x + "a";
-      SF Sg Instr => x + "em";
-      SF Sg Loc => x + "u";
-      SF Sg Voc => x + "o";
-      SF Pl Nom => x + "owie";
-      SF Pl Gen => x + "ów";
-      SF Pl Dat => x + "om";
-      SF Pl Acc => x + "ów";
-      SF Pl Instr => x + "ami";
-      SF Pl Loc => x + "ach";
-      SF Pl Voc => x + "owie"
-    };
-
-    oper mkNTable0080: Str -> SubstForm => Str; --%
-    oper mkNTable0080 lexem = 
-      let x = Predef.tk 1 lexem in
-    table { 
-      SF Sg Nom => x + "ś";
-      SF Sg Gen => x + "sia";
-      SF Sg Dat => x + "siowi";
-      SF Sg Acc => x + "sia";
-      SF Sg Instr => x + "siem";
-      SF Sg Loc => x + "siu";
-      SF Sg Voc => x + "siu";
-      SF Pl Nom => x + "siowie";
-      SF Pl Gen => x + "siów";
-      SF Pl Dat => x + "siom";
-      SF Pl Acc => x + "siów";
-      SF Pl Instr => x + "siami";
-      SF Pl Loc => x + "siach";
-      SF Pl Voc => x + "siowie"
-    };
-
-    oper mkNTable0082: Str -> SubstForm => Str; --%
-    oper mkNTable0082 lexem = 
-      let x = Predef.tk 6 lexem in
-    table { 
-      SF Sg Nom => x + "Anusia";
-      SF Sg Gen => x + "Anusi";
-      SF Sg Dat => x + "Anusi";
-      SF Sg Acc => x + "Anusię";
-      SF Sg Instr => x + "Anusią";
-      SF Sg Loc => x + "Anusi";
-      SF Sg Voc => x + "Anusiu";
-      SF Pl Nom => x + "anusie";
-      SF Pl Gen => x + "Anuś";
-      SF Pl Dat => x + "Anusiom";
-      SF Pl Acc => x + "anusie";
-      SF Pl Instr => x + "Anusiami";
-      SF Pl Loc => x + "Anusiach";
-      SF Pl Voc => x + "anusie"
-    };
-
-    oper mkNTable0083: Str -> SubstForm => Str; --%
-    oper mkNTable0083 lexem = 
-      let x = Predef.tk 1 lexem in
-    table { 
-      SF Sg Nom => x + "o";
-      SF Sg Gen => x + "ina";
-      SF Sg Dat => x + "owi";
-      SF Sg Acc => x + "ina";
-      SF Sg Instr => x + "inem";
-      SF Sg Loc => x + "u";
-      SF Sg Voc => x + "u";
-      SF Pl Nom => x + "owie";
-      SF Pl Gen => x + "ów";
-      SF Pl Dat => x + "om";
-      SF Pl Acc => x + "ów";
-      SF Pl Instr => x + "ami";
-      SF Pl Loc => x + "ach";
-      SF Pl Voc => x + "owie"
-    };
-
-    oper mkNTable0084: Str -> SubstForm => Str; --%
-    oper mkNTable0084 lexem = 
-      let x = Predef.tk 4 lexem in
-    table { 
-      SF Sg Nom => x + "arab";
-      SF Sg Gen => x + "araba";
-      SF Sg Dat => x + "arabowi";
-      SF Sg Acc => x + "araba";
-      SF Sg Instr => x + "arabem";
-      SF Sg Loc => x + "arabie";
-      SF Sg Voc => x + "arabie";
-      SF Pl Nom => x + "Arabowie";
-      SF Pl Gen => x + "arabów";
-      SF Pl Dat => x + "arabom";
-      SF Pl Acc => x + "arabów";
-      SF Pl Instr => x + "arabami";
-      SF Pl Loc => x + "arabach";
-      SF Pl Voc => x + "Arabowie"
-    };
-
-    oper mkNTable0088: Str -> SubstForm => Str; --%
-    oper mkNTable0088 lexem = 
-      let x = Predef.tk 4 lexem in
-    table { 
-      SF Sg Nom => x + "aria";
-      SF Sg Gen => x + "arii";
-      SF Sg Dat => x + "arii";
-      SF Sg Acc => x + "arię";
-      SF Sg Instr => x + "arią";
-      SF Sg Loc => x + "arii";
-      SF Sg Voc => x + "ario";
-      SF Pl Nom => x + "Ariowie";
-      SF Pl Gen => x + "Ariów";
-      SF Pl Dat => x + "ariom";
-      SF Pl Acc => x + "Ariów";
-      SF Pl Instr => x + "ariami";
-      SF Pl Loc => x + "ariach";
-      SF Pl Voc => x + "Ariowie"
-    };
-
-    oper mkNTable0089: Str -> SubstForm => Str; --%
-    oper mkNTable0089 lexem = 
-      let x = Predef.tk 3 lexem in
-    table { 
-      SF Sg Nom => x + "sto";
-      SF Sg Gen => x + "sta";
-      SF Sg Dat => x + "stowi";
-      SF Sg Acc => x + "sta";
-      SF Sg Instr => x + "stem";
-      SF Sg Loc => x + "ście";
-      SF Sg Voc => x + "sto";
-      SF Pl Nom => x + "stowie";
-      SF Pl Gen => x + "stów";
-      SF Pl Dat => x + "stom";
-      SF Pl Acc => x + "stów";
-      SF Pl Instr => x + "stami";
-      SF Pl Loc => x + "stach";
-      SF Pl Voc => x + "stowie"
-    };
-
-    oper mkNTable0090: Str -> SubstForm => Str; --%
-    oper mkNTable0090 lexem = 
-      let x = Predef.tk 6 lexem in
-    table { 
-      SF Sg Nom => x + "arkady";
-      SF Sg Gen => x + "Arkadego";
-      SF Sg Dat => x + "Arkademu";
-      SF Sg Acc => x + "Arkadego";
-      SF Sg Instr => x + "Arkadym";
-      SF Sg Loc => x + "Arkadym";
-      SF Sg Voc => x + "arkady";
-      SF Pl Nom => x + "Arkadowie";
-      SF Pl Gen => x + "Arkadych";
-      SF Pl Dat => x + "Arkadym";
-      SF Pl Acc => x + "Arkadych";
-      SF Pl Instr => x + "Arkadymi";
-      SF Pl Loc => x + "Arkadych";
-      SF Pl Voc => x + "Arkadowie"
-    };
-
-    oper mkNTable0091: Str -> SubstForm => Str; --%
-    oper mkNTable0091 lexem = 
-      let x = Predef.tk 4 lexem in
-    table { 
-      SF Sg Nom => x + "aron";
-      SF Sg Gen => x + "Arona";
-      SF Sg Dat => x + "aronowi";
-      SF Sg Acc => x + "Arona";
-      SF Sg Instr => x + "aronem";
-      SF Sg Loc => x + "aronie";
-      SF Sg Voc => x + "aronie";
-      SF Pl Nom => x + "Aronowie";
-      SF Pl Gen => x + "aronów";
-      SF Pl Dat => x + "aronom";
-      SF Pl Acc => x + "aronów";
-      SF Pl Instr => x + "aronami";
-      SF Pl Loc => x + "aronach";
-      SF Pl Voc => x + "Aronowie"
-    };
-
-    oper mkNTable0092: Str -> SubstForm => Str; --%
-    oper mkNTable0092 lexem = 
-      let x = Predef.tk 0 lexem in
-    table { 
-      SF Sg Nom => x + "";
-      SF Sg Gen => x + "a";
-      SF Sg Dat => x + "owi";
-      SF Sg Acc => x + "a";
-      SF Sg Instr => x + "em";
-      SF Sg Loc => x + "";
-      SF Sg Voc => x + "";
-      SF Pl Nom => x + "owie";
-      SF Pl Gen => x + "ów";
-      SF Pl Dat => x + "om";
-      SF Pl Acc => x + "ów";
-      SF Pl Instr => x + "ami";
-      SF Pl Loc => x + "ach";
-      SF Pl Voc => x + "owie"
-    };
-
-    oper mkNTable0093: Str -> SubstForm => Str; --%
-    oper mkNTable0093 lexem = 
-      let x = Predef.tk 4 lexem in
-    table { 
-      SF Sg Nom => x + "Asia";
-      SF Sg Gen => x + "Asi";
-      SF Sg Dat => x + "Asi";
-      SF Sg Acc => x + "Asię";
-      SF Sg Instr => x + "Asią";
-      SF Sg Loc => x + "Asi";
-      SF Sg Voc => x + "Asiu";
-      SF Pl Nom => x + "asie";
-      SF Pl Gen => x + "Aś";
-      SF Pl Dat => x + "Asiom";
-      SF Pl Acc => x + "asie";
-      SF Pl Instr => x + "Asiami";
-      SF Pl Loc => x + "Asiach";
-      SF Pl Voc => x + "asie"
-    };
-
-    oper mkNTable0095: Str -> SubstForm => Str; --%
-    oper mkNTable0095 lexem = 
-      let x = Predef.tk 2 lexem in
-    table { 
-      SF Sg Nom => x + "ja";
-      SF Sg Gen => x + "ji";
-      SF Sg Dat => x + "ji";
-      SF Sg Acc => x + "ję";
-      SF Sg Instr => x + "ją";
-      SF Sg Loc => x + "ji";
-      SF Sg Voc => x + "jo";
-      SF Pl Nom => x + "je";
-      SF Pl Gen => x + "yj";
-      SF Pl Dat => x + "jom";
-      SF Pl Acc => x + "je";
-      SF Pl Instr => x + "jami";
-      SF Pl Loc => x + "jach";
-      SF Pl Voc => x + "je"
-    };
-
-    oper mkNTable0096: Str -> SubstForm => Str; --%
-    oper mkNTable0096 lexem = 
-      let x = Predef.tk 2 lexem in
-    table { 
-      SF Sg Nom => x + "um";
-      SF Sg Gen => x + "um";
-      SF Sg Dat => x + "um";
-      SF Sg Acc => x + "um";
-      SF Sg Instr => x + "um";
-      SF Sg Loc => x + "um";
-      SF Sg Voc => x + "um";
-      SF Pl Nom => x + "a";
-      SF Pl Gen => x + "ów";
-      SF Pl Dat => x + "om";
-      SF Pl Acc => x + "a";
-      SF Pl Instr => x + "ami";
-      SF Pl Loc => x + "ach";
-      SF Pl Voc => x + "a"
-    };
-
-    oper mkNTable0097: Str -> SubstForm => Str; --%
-    oper mkNTable0097 lexem = 
-      let x = Predef.tk 7 lexem in
-    table { 
-      SF Sg Nom => x + "atlanta";
-      SF Sg Gen => x + "atlanty";
-      SF Sg Dat => x + "atlancie";
-      SF Sg Acc => x + "Atlantę";
-      SF Sg Instr => x + "Atlantą";
-      SF Sg Loc => x + "atlancie";
-      SF Sg Voc => x + "Atlanto";
-      SF Pl Nom => x + "atlanty";
-      SF Pl Gen => x + "atlant";
-      SF Pl Dat => x + "atlantom";
-      SF Pl Acc => x + "atlanty";
-      SF Pl Instr => x + "atlantami";
-      SF Pl Loc => x + "atlantach";
-      SF Pl Voc => x + "atlanty"
-    };
-
-    oper mkNTable0098: Str -> SubstForm => Str; --%
-    oper mkNTable0098 lexem = 
-      let x = Predef.tk 0 lexem in
-    table { 
-      SF Sg Nom => x + "";
-      SF Sg Gen => x + "u";
-      SF Sg Dat => x + "owi";
-      SF Sg Acc => x + "";
-      SF Sg Instr => x + "em";
-      SF Sg Loc => x + "ie";
-      SF Sg Voc => x + "ie";
-      SF Pl Nom => x + "y";
-      SF Pl Gen => x + "ów";
-      SF Pl Dat => x + "om";
-      SF Pl Acc => x + "y";
-      SF Pl Instr => x + "ami";
-      SF Pl Loc => x + "ach";
-      SF Pl Voc => x + "y"
-    };
-
-    oper mkNTable0099: Str -> SubstForm => Str; --%
-    oper mkNTable0099 lexem = 
-      let x = Predef.tk 6 lexem in
-    table { 
-      SF Sg Nom => x + "august";
-      SF Sg Gen => x + "augusta";
-      SF Sg Dat => x + "augustowi";
-      SF Sg Acc => x + "augusta";
-      SF Sg Instr => x + "augustem";
-      SF Sg Loc => x + "auguście";
-      SF Sg Voc => x + "auguście";
-      SF Pl Nom => x + "Augustowie";
-      SF Pl Gen => x + "augustów";
-      SF Pl Dat => x + "augustom";
-      SF Pl Acc => x + "augustów";
-      SF Pl Instr => x + "augustami";
-      SF Pl Loc => x + "augustach";
-      SF Pl Voc => x + "Augustowie"
-    };
-
-    oper mkNTable0100: Str -> SubstForm => Str; --%
-    oper mkNTable0100 lexem = 
-      let x = Predef.tk 3 lexem in
-    table { 
-      SF Sg Nom => x + "sta";
-      SF Sg Gen => x + "sty";
-      SF Sg Dat => x + "ście";
-      SF Sg Acc => x + "stę";
-      SF Sg Instr => x + "stą";
-      SF Sg Loc => x + "ście";
-      SF Sg Voc => x + "sto";
-      SF Pl Nom => x + "sty";
-      SF Pl Gen => x + "st";
-      SF Pl Dat => x + "stom";
-      SF Pl Acc => x + "sty";
-      SF Pl Instr => x + "stami";
-      SF Pl Loc => x + "stach";
-      SF Pl Voc => x + "sty"
-    };
-
-    oper mkNTable0102: Str -> SubstForm => Str; --%
-    oper mkNTable0102 lexem = 
-      let x = Predef.tk 1 lexem in
-    table { 
-      SF Sg Nom => x + "a";
-      SF Sg Gen => x + "y";
-      SF Sg Dat => x + "ze";
-      SF Sg Acc => x + "ę";
-      SF Sg Instr => x + "ą";
-      SF Sg Loc => x + "ze";
-      SF Sg Voc => x + "o";
-      SF Pl Nom => x + "y";
-      SF Pl Gen => x + "";
-      SF Pl Dat => x + "om";
-      SF Pl Acc => x + "y";
-      SF Pl Instr => x + "ami";
-      SF Pl Loc => x + "ach";
-      SF Pl Voc => x + "y"
-    };
-
-    oper mkNTable0103: Str -> SubstForm => Str; --%
-    oper mkNTable0103 lexem = 
-      let x = Predef.tk 1 lexem in
-    table { 
-      SF Sg Nom => x + "a";
-      SF Sg Gen => x + "y";
-      SF Sg Dat => x + "ie";
-      SF Sg Acc => x + "ę";
-      SF Sg Instr => x + "ą";
-      SF Sg Loc => x + "ie";
-      SF Sg Voc => x + "o";
-      SF Pl Nom => x + "owie";
-      SF Pl Gen => x + "ów";
-      SF Pl Dat => x + "om";
-      SF Pl Acc => x + "ów";
-      SF Pl Instr => x + "ami";
-      SF Pl Loc => x + "ach";
-      SF Pl Voc => x + "owie"
-    };
-
-    oper mkNTable0104: Str -> SubstForm => Str; --%
-    oper mkNTable0104 lexem = 
-      let x = Predef.tk 2 lexem in
-    table { 
-      SF Sg Nom => x + "in";
-      SF Sg Gen => x + "ina";
-      SF Sg Dat => x + "inowi";
-      SF Sg Acc => x + "ina";
-      SF Sg Instr => x + "inem";
-      SF Sg Loc => x + "inie";
-      SF Sg Voc => x + "inie";
-      SF Pl Nom => x + "ie";
-      SF Pl Gen => x + "";
-      SF Pl Dat => x + "om";
-      SF Pl Acc => x + "";
-      SF Pl Instr => x + "ami";
-      SF Pl Loc => x + "ach";
-      SF Pl Voc => x + "ie"
-    };
-
-    oper mkNTable0105: Str -> SubstForm => Str; --%
-    oper mkNTable0105 lexem = 
-      let x = Predef.tk 2 lexem in
-    table { 
-      SF Sg Nom => x + "ta";
-      SF Sg Gen => x + "ty";
-      SF Sg Dat => x + "cie";
-      SF Sg Acc => x + "tę";
-      SF Sg Instr => x + "tą";
-      SF Sg Loc => x + "cie";
-      SF Sg Voc => x + "to";
-      SF Pl Nom => x + "ci";
-      SF Pl Gen => x + "tów";
-      SF Pl Dat => x + "tom";
-      SF Pl Acc => x + "tów";
-      SF Pl Instr => x + "tami";
-      SF Pl Loc => x + "tach";
-      SF Pl Voc => x + "ci"
-    };
-
-    oper mkNTable0106: Str -> SubstForm => Str; --%
-    oper mkNTable0106 lexem = 
-      let x = Predef.tk 3 lexem in
-    table { 
-      SF Sg Nom => x + "śka";
-      SF Sg Gen => x + "śki";
-      SF Sg Dat => x + "śce";
-      SF Sg Acc => x + "śkę";
-      SF Sg Instr => x + "śką";
-      SF Sg Loc => x + "śce";
-      SF Sg Voc => x + "śko";
-      SF Pl Nom => x + "śki";
-      SF Pl Gen => x + "siek";
-      SF Pl Dat => x + "śkom";
-      SF Pl Acc => x + "śki";
-      SF Pl Instr => x + "śkami";
-      SF Pl Loc => x + "śkach";
-      SF Pl Voc => x + "śki"
-    };
-
-    oper mkNTable0111: Str -> SubstForm => Str; --%
-    oper mkNTable0111 lexem = 
-      let x = Predef.tk 1 lexem in
-    table { 
-      SF Sg Nom => x + "a";
-      SF Sg Gen => x + "y";
-      SF Sg Dat => x + "zie";
-      SF Sg Acc => x + "ę";
-      SF Sg Instr => x + "ą";
-      SF Sg Loc => x + "zie";
-      SF Sg Voc => x + "o";
-      SF Pl Nom => x + "owie";
-      SF Pl Gen => x + "ów";
-      SF Pl Dat => x + "om";
-      SF Pl Acc => x + "ów";
-      SF Pl Instr => x + "ami";
-      SF Pl Loc => x + "ach";
-      SF Pl Voc => x + "owie"
-    };
-
-    oper mkNTable0112: Str -> SubstForm => Str; --%
-    oper mkNTable0112 lexem = 
-      let x = Predef.tk 8 lexem in
-    table { 
-      SF Sg Nom => x + "baedeker";
-      SF Sg Gen => x + "baedekera";
-      SF Sg Dat => x + "baedekerowi";
-      SF Sg Acc => x + "baedekera";
-      SF Sg Instr => x + "baedekerem";
-      SF Sg Loc => x + "baedekerze";
-      SF Sg Voc => x + "baedekerze";
-      SF Pl Nom => x + "Baedekerowie";
-      SF Pl Gen => x + "baedekerów";
-      SF Pl Dat => x + "baedekerom";
-      SF Pl Acc => x + "baedekerów";
-      SF Pl Instr => x + "baedekerami";
-      SF Pl Loc => x + "baedekerach";
-      SF Pl Voc => x + "Baedekerowie"
-    };
-
-    oper mkNTable0113: Str -> SubstForm => Str; --%
-    oper mkNTable0113 lexem = 
-      let x = Predef.tk 6 lexem in
-    table { 
-      SF Sg Nom => x + "Bagdad";
-      SF Sg Gen => x + "Bagdadu";
-      SF Sg Dat => x + "Bagdadowi";
-      SF Sg Acc => x + "Bagdad";
-      SF Sg Instr => x + "Bagdadem";
-      SF Sg Loc => x + "Bagdadzie";
-      SF Sg Voc => x + "Bagdadzie";
-      SF Pl Nom => x + "bagdady";
-      SF Pl Gen => x + "bagdadów";
-      SF Pl Dat => x + "bagdadom";
-      SF Pl Acc => x + "bagdady";
-      SF Pl Instr => x + "bagdadami";
-      SF Pl Loc => x + "bagdadach";
-      SF Pl Voc => x + "bagdady"
-    };
-
-    oper mkNTable0114: Str -> SubstForm => Str; --%
-    oper mkNTable0114 lexem = 
-      let x = Predef.tk 5 lexem in
-    table { 
-      SF Sg Nom => x + "bajan";
-      SF Sg Gen => x + "bajana";
-      SF Sg Dat => x + "bajanowi";
-      SF Sg Acc => x + "bajana";
-      SF Sg Instr => x + "bajanem";
-      SF Sg Loc => x + "bajanie";
-      SF Sg Voc => x + "bajanie";
-      SF Pl Nom => x + "Bajanowie";
-      SF Pl Gen => x + "bajanów";
-      SF Pl Dat => x + "bajanom";
-      SF Pl Acc => x + "bajanów";
-      SF Pl Instr => x + "bajanami";
-      SF Pl Loc => x + "bajanach";
-      SF Pl Voc => x + "Bajanowie"
-    };
-
-    oper mkNTable0116: Str -> SubstForm => Str; --%
-    oper mkNTable0116 lexem = 
-      let x = Predef.tk 1 lexem in
-    table { 
-      SF Sg Nom => x + "c";
-      SF Sg Gen => x + "ca";
-      SF Sg Dat => x + "cowi";
-      SF Sg Acc => x + "ca";
-      SF Sg Instr => x + "kiem";
-      SF Sg Loc => x + "cu";
-      SF Sg Voc => x + "cu";
-      SF Pl Nom => x + "cowie";
-      SF Pl Gen => x + "ców";
-      SF Pl Dat => x + "com";
-      SF Pl Acc => x + "ców";
-      SF Pl Instr => x + "cami";
-      SF Pl Loc => x + "cach";
-      SF Pl Voc => x + "cowie"
-    };
-
-    oper mkNTable0117: Str -> SubstForm => Str; --%
-    oper mkNTable0117 lexem = 
-      let x = Predef.tk 6 lexem in
-    table { 
-      SF Sg Nom => x + "banach";
-      SF Sg Gen => x + "Banacha";
-      SF Sg Dat => x + "Banachowi";
-      SF Sg Acc => x + "Banacha";
-      SF Sg Instr => x + "Banachem";
-      SF Sg Loc => x + "Banachu";
-      SF Sg Voc => x + "Banachu";
-      SF Pl Nom => x + "Banachowie";
-      SF Pl Gen => x + "Banachów";
-      SF Pl Dat => x + "Banachom";
-      SF Pl Acc => x + "Banachów";
-      SF Pl Instr => x + "Banachami";
-      SF Pl Loc => x + "Banachach";
-      SF Pl Voc => x + "Banachowie"
-    };
-
-    oper mkNTable0118: Str -> SubstForm => Str; --%
-    oper mkNTable0118 lexem = 
-      let x = Predef.tk 0 lexem in
-    table { 
-      SF Sg Nom => x + "";
-      SF Sg Gen => x + "u";
-      SF Sg Dat => x + "owi";
-      SF Sg Acc => x + "";
-      SF Sg Instr => x + "em";
-      SF Sg Loc => x + "ze";
-      SF Sg Voc => x + "ze";
-      SF Pl Nom => x + "y";
-      SF Pl Gen => x + "ów";
-      SF Pl Dat => x + "om";
-      SF Pl Acc => x + "y";
-      SF Pl Instr => x + "ami";
-      SF Pl Loc => x + "ach";
-      SF Pl Voc => x + "y"
-    };
-
-    oper mkNTable0119: Str -> SubstForm => Str; --%
-    oper mkNTable0119 lexem = 
-      let x = Predef.tk 5 lexem in
-    table { 
-      SF Sg Nom => x + "baran";
-      SF Sg Gen => x + "barana";
-      SF Sg Dat => x + "baranowi";
-      SF Sg Acc => x + "barana";
-      SF Sg Instr => x + "baranem";
-      SF Sg Loc => x + "baranie";
-      SF Sg Voc => x + "baranie";
-      SF Pl Nom => x + "Baranowie";
-      SF Pl Gen => x + "baranów";
-      SF Pl Dat => x + "baranom";
-      SF Pl Acc => x + "baranów";
-      SF Pl Instr => x + "baranami";
-      SF Pl Loc => x + "baranach";
-      SF Pl Voc => x + "Baranowie"
-    };
-
-    oper mkNTable0120: Str -> SubstForm => Str; --%
-    oper mkNTable0120 lexem = 
-      let x = Predef.tk 0 lexem in
-    table { 
-      SF Sg Nom => x + "";
-      SF Sg Gen => x + "a";
-      SF Sg Dat => x + "owi";
-      SF Sg Acc => x + "a";
-      SF Sg Instr => x + "em";
-      SF Sg Loc => x + "ie";
-      SF Sg Voc => x + "ie";
-      SF Pl Nom => x + "y";
-      SF Pl Gen => x + "ów";
-      SF Pl Dat => x + "om";
-      SF Pl Acc => x + "y";
-      SF Pl Instr => x + "ami";
-      SF Pl Loc => x + "ach";
-      SF Pl Voc => x + "y"
-    };
-
-    oper mkNTable0121: Str -> SubstForm => Str; --%
-    oper mkNTable0121 lexem = 
-      let x = Predef.tk 8 lexem in
-    table { 
-      SF Sg Nom => x + "Baranowo";
-      SF Sg Gen => x + "Baranowa";
-      SF Sg Dat => x + "Baranowu";
-      SF Sg Acc => x + "Baranowo";
-      SF Sg Instr => x + "Baranowem";
-      SF Sg Loc => x + "Baranowie";
-      SF Sg Voc => x + "Baranowo";
-      SF Pl Nom => x + "Baranowa";
-      SF Pl Gen => x + "baranów";
-      SF Pl Dat => x + "Baranowom";
-      SF Pl Acc => x + "Baranowa";
-      SF Pl Instr => x + "Baranowami";
-      SF Pl Loc => x + "Baranowach";
-      SF Pl Voc => x + "Baranowa"
-    };
-
-    oper mkNTable0122: Str -> SubstForm => Str; --%
-    oper mkNTable0122 lexem = 
-      let x = Predef.tk 7 lexem in
-    table { 
-      SF Sg Nom => x + "baranów";
-      SF Sg Gen => x + "Baranowa";
-      SF Sg Dat => x + "Baranowu";
-      SF Sg Acc => x + "baranów";
-      SF Sg Instr => x + "Baranowem";
-      SF Sg Loc => x + "Baranowie";
-      SF Sg Voc => x + "Baranowie";
-      SF Pl Nom => x + "Baranowy";
-      SF Pl Gen => x + "Baranowów";
-      SF Pl Dat => x + "Baranowom";
-      SF Pl Acc => x + "Baranowy";
-      SF Pl Instr => x + "Baranowami";
-      SF Pl Loc => x + "Baranowach";
-      SF Pl Voc => x + "Baranowy"
-    };
-
-    oper mkNTable0123: Str -> SubstForm => Str; --%
-    oper mkNTable0123 lexem = 
-      let x = Predef.tk 2 lexem in
-    table { 
-      SF Sg Nom => x + "ja";
-      SF Sg Gen => x + "i";
-      SF Sg Dat => x + "i";
-      SF Sg Acc => x + "ję";
-      SF Sg Instr => x + "ją";
-      SF Sg Loc => x + "i";
-      SF Sg Voc => x + "jo";
-      SF Pl Nom => x + "jowie";
-      SF Pl Gen => x + "jów";
-      SF Pl Dat => x + "jom";
-      SF Pl Acc => x + "jów";
-      SF Pl Instr => x + "jami";
-      SF Pl Loc => x + "jach";
-      SF Pl Voc => x + "jowie"
-    };
-
-    oper mkNTable0124: Str -> SubstForm => Str; --%
-    oper mkNTable0124 lexem = 
-      let x = Predef.tk 5 lexem in
-    table { 
-      SF Sg Nom => x + "Basia";
-      SF Sg Gen => x + "Basi";
-      SF Sg Dat => x + "Basi";
-      SF Sg Acc => x + "Basię";
-      SF Sg Instr => x + "Basią";
-      SF Sg Loc => x + "Basi";
-      SF Sg Voc => x + "Basiu";
-      SF Pl Nom => x + "basie";
-      SF Pl Gen => x + "Baś";
-      SF Pl Dat => x + "Basiom";
-      SF Pl Acc => x + "basie";
-      SF Pl Instr => x + "Basiami";
-      SF Pl Loc => x + "Basiach";
-      SF Pl Voc => x + "basie"
-    };
-
-    oper mkNTable0125: Str -> SubstForm => Str; --%
-    oper mkNTable0125 lexem = 
-      let x = Predef.tk 4 lexem in
-    table { 
-      SF Sg Nom => x + "Bask";
-      SF Sg Gen => x + "Baska";
-      SF Sg Dat => x + "baskowi";
-      SF Sg Acc => x + "Baska";
-      SF Sg Instr => x + "baskiem";
-      SF Sg Loc => x + "basku";
-      SF Sg Voc => x + "basku";
-      SF Pl Nom => x + "Baskowie";
-      SF Pl Gen => x + "basków";
-      SF Pl Dat => x + "baskom";
-      SF Pl Acc => x + "basków";
-      SF Pl Instr => x + "baskami";
-      SF Pl Loc => x + "baskach";
-      SF Pl Voc => x + "Baskowie"
-    };
-
-    oper mkNTable0126: Str -> SubstForm => Str; --%
-    oper mkNTable0126 lexem = 
-      let x = Predef.tk 1 lexem in
-    table { 
-      SF Sg Nom => x + "y";
-      SF Sg Gen => x + "ego";
-      SF Sg Dat => x + "emu";
-      SF Sg Acc => x + "ego";
-      SF Sg Instr => x + "ym";
-      SF Sg Loc => x + "ym";
-      SF Sg Voc => x + "y";
-      SF Pl Nom => x + "y";
-      SF Pl Gen => x + "ych";
-      SF Pl Dat => x + "ym";
-      SF Pl Acc => x + "ych";
-      SF Pl Instr => x + "ymi";
-      SF Pl Loc => x + "ych";
-      SF Pl Voc => x + "y"
-    };
-
-    oper mkNTable0127: Str -> SubstForm => Str; --%
-    oper mkNTable0127 lexem = 
-      let x = Predef.tk 5 lexem in
-    table { 
-      SF Sg Nom => x + "bawar";
-      SF Sg Gen => x + "bawara";
-      SF Sg Dat => x + "bawarowi";
-      SF Sg Acc => x + "bawara";
-      SF Sg Instr => x + "bawarem";
-      SF Sg Loc => x + "bawarze";
-      SF Sg Voc => x + "bawarze";
-      SF Pl Nom => x + "Bawarzy";
-      SF Pl Gen => x + "bawarów";
-      SF Pl Dat => x + "bawarom";
-      SF Pl Acc => x + "bawarów";
-      SF Pl Instr => x + "bawarami";
-      SF Pl Loc => x + "bawarach";
-      SF Pl Voc => x + "Bawarzy"
-    };
-
-    oper mkNTable0128: Str -> SubstForm => Str; --%
-    oper mkNTable0128 lexem = 
-      let x = Predef.tk 1 lexem in
-    table { 
-      SF Sg Nom => x + "i";
-      SF Sg Gen => x + "ego";
-      SF Sg Dat => x + "emu";
-      SF Sg Acc => x + "ego";
-      SF Sg Instr => x + "im";
-      SF Sg Loc => x + "im";
-      SF Sg Voc => x + "i";
-      SF Pl Nom => x + "owie";
-      SF Pl Gen => x + "ich";
-      SF Pl Dat => x + "im";
-      SF Pl Acc => x + "ich";
-      SF Pl Instr => x + "imi";
-      SF Pl Loc => x + "ich";
-      SF Pl Voc => x + "owie"
-    };
-
-    oper mkNTable0129: Str -> SubstForm => Str; --%
-    oper mkNTable0129 lexem = 
-      let x = Predef.tk 4 lexem in
-    table { 
-      SF Sg Nom => x + "bałt";
-      SF Sg Gen => x + "Bałta";
-      SF Sg Dat => x + "bałtowi";
-      SF Sg Acc => x + "Bałta";
-      SF Sg Instr => x + "bałtem";
-      SF Sg Loc => x + "bałcie";
-      SF Sg Voc => x + "bałcie";
-      SF Pl Nom => x + "Bałtowie";
-      SF Pl Gen => x + "bałtów";
-      SF Pl Dat => x + "bałtom";
-      SF Pl Acc => x + "bałtów";
-      SF Pl Instr => x + "bałtami";
-      SF Pl Loc => x + "bałtach";
-      SF Pl Voc => x + "Bałtowie"
-    };
-
-    oper mkNTable0131: Str -> SubstForm => Str; --%
-    oper mkNTable0131 lexem = 
-      let x = Predef.tk 5 lexem in
-    table { 
-      SF Sg Nom => x + "Beata";
-      SF Sg Gen => x + "beaty";
-      SF Sg Dat => x + "beacie";
-      SF Sg Acc => x + "Beatę";
-      SF Sg Instr => x + "Beatą";
-      SF Sg Loc => x + "beacie";
-      SF Sg Voc => x + "Beato";
-      SF Pl Nom => x + "beaty";
-      SF Pl Gen => x + "beat";
-      SF Pl Dat => x + "beatom";
-      SF Pl Acc => x + "beaty";
-      SF Pl Instr => x + "beatami";
-      SF Pl Loc => x + "beatach";
-      SF Pl Voc => x + "beaty"
-    };
-
-    oper mkNTable0132: Str -> SubstForm => Str; --%
-    oper mkNTable0132 lexem = 
-      let x = Predef.tk 8 lexem in
-    table { 
-      SF Sg Nom => x + "bednarek";
-      SF Sg Gen => x + "bednarka";
-      SF Sg Dat => x + "Bednarkowi";
-      SF Sg Acc => x + "bednarka";
-      SF Sg Instr => x + "Bednarkiem";
-      SF Sg Loc => x + "Bednarku";
-      SF Sg Voc => x + "Bednarku";
-      SF Pl Nom => x + "Bednarkowie";
-      SF Pl Gen => x + "Bednarków";
-      SF Pl Dat => x + "bednarkom";
-      SF Pl Acc => x + "Bednarków";
-      SF Pl Instr => x + "bednarkami";
-      SF Pl Loc => x + "bednarkach";
-      SF Pl Voc => x + "Bednarkowie"
-    };
-
-    oper mkNTable0133: Str -> SubstForm => Str; --%
-    oper mkNTable0133 lexem = 
-      let x = Predef.tk 7 lexem in
-    table { 
-      SF Sg Nom => x + "bednarz";
-      SF Sg Gen => x + "bednarza";
-      SF Sg Dat => x + "bednarzowi";
-      SF Sg Acc => x + "bednarza";
-      SF Sg Instr => x + "bednarzem";
-      SF Sg Loc => x + "bednarzu";
-      SF Sg Voc => x + "bednarzu";
-      SF Pl Nom => x + "Bednarzowie";
-      SF Pl Gen => x + "bednarzów";
-      SF Pl Dat => x + "bednarzom";
-      SF Pl Acc => x + "bednarzów";
-      SF Pl Instr => x + "bednarzami";
-      SF Pl Loc => x + "bednarzach";
-      SF Pl Voc => x + "Bednarzowie"
-    };
-
-    oper mkNTable0134: Str -> SubstForm => Str; --%
-    oper mkNTable0134 lexem = 
-      let x = Predef.tk 4 lexem in
-    table { 
-      SF Sg Nom => x + "belg";
-      SF Sg Gen => x + "belga";
-      SF Sg Dat => x + "belgowi";
-      SF Sg Acc => x + "belga";
-      SF Sg Instr => x + "belgiem";
-      SF Sg Loc => x + "belgu";
-      SF Sg Voc => x + "belgu";
-      SF Pl Nom => x + "Belgowie";
-      SF Pl Gen => x + "belgów";
-      SF Pl Dat => x + "belgom";
-      SF Pl Acc => x + "belgów";
-      SF Pl Instr => x + "belgami";
-      SF Pl Loc => x + "belgach";
-      SF Pl Voc => x + "Belgowie"
-    };
-
-    oper mkNTable0136: Str -> SubstForm => Str; --%
-    oper mkNTable0136 lexem = 
-      let x = Predef.tk 5 lexem in
-    table { 
-      SF Sg Nom => x + "belka";
-      SF Sg Gen => x + "belki";
-      SF Sg Dat => x + "belce";
-      SF Sg Acc => x + "belkę";
-      SF Sg Instr => x + "belką";
-      SF Sg Loc => x + "belce";
-      SF Sg Voc => x + "belko";
-      SF Pl Nom => x + "Belkowie";
-      SF Pl Gen => x + "Belków";
-      SF Pl Dat => x + "belkom";
-      SF Pl Acc => x + "Belków";
-      SF Pl Instr => x + "belkami";
-      SF Pl Loc => x + "belkach";
-      SF Pl Voc => x + "Belkowie"
-    };
-
-    oper mkNTable0137: Str -> SubstForm => Str; --%
-    oper mkNTable0137 lexem = 
-      let x = Predef.tk 2 lexem in
-    table { 
-      SF Sg Nom => x + "to";
-      SF Sg Gen => x + "ta";
-      SF Sg Dat => x + "towi";
-      SF Sg Acc => x + "ta";
-      SF Sg Instr => x + "tem";
-      SF Sg Loc => x + "cie";
-      SF Sg Voc => x + "to";
-      SF Pl Nom => x + "towie";
-      SF Pl Gen => x + "tów";
-      SF Pl Dat => x + "tom";
-      SF Pl Acc => x + "tów";
-      SF Pl Instr => x + "tami";
-      SF Pl Loc => x + "tach";
-      SF Pl Voc => x + "towie"
-    };
-
-    oper mkNTable0138: Str -> SubstForm => Str; --%
-    oper mkNTable0138 lexem = 
-      let x = Predef.tk 0 lexem in
-    table { 
-      SF Sg Nom => x + "";
-      SF Sg Gen => x + "u";
-      SF Sg Dat => x + "owi";
-      SF Sg Acc => x + "";
-      SF Sg Instr => x + "em";
-      SF Sg Loc => x + "u";
-      SF Sg Voc => x + "u";
-      SF Pl Nom => x + "e";
-      SF Pl Gen => x + "ów";
-      SF Pl Dat => x + "om";
-      SF Pl Acc => x + "e";
-      SF Pl Instr => x + "ami";
-      SF Pl Loc => x + "ach";
-      SF Pl Voc => x + "e"
-    };
-
-    oper mkNTable0139: Str -> SubstForm => Str; --%
-    oper mkNTable0139 lexem = 
-      let x = Predef.tk 3 lexem in
-    table { 
-      SF Sg Nom => x + "ber";
-      SF Sg Gen => x + "bera";
-      SF Sg Dat => x + "berowi";
-      SF Sg Acc => x + "bera";
-      SF Sg Instr => x + "berem";
-      SF Sg Loc => x + "berze";
-      SF Sg Voc => x + "berze";
-      SF Pl Nom => x + "Berowie";
-      SF Pl Gen => x + "berów";
-      SF Pl Dat => x + "berom";
-      SF Pl Acc => x + "berów";
-      SF Pl Instr => x + "berami";
-      SF Pl Loc => x + "berach";
-      SF Pl Voc => x + "Berowie"
-    };
-
-    oper mkNTable0140: Str -> SubstForm => Str; --%
-    oper mkNTable0140 lexem = 
-      let x = Predef.tk 5 lexem in
-    table { 
-      SF Sg Nom => x + "berek";
-      SF Sg Gen => x + "berka";
-      SF Sg Dat => x + "berkowi";
-      SF Sg Acc => x + "berka";
-      SF Sg Instr => x + "berkiem";
-      SF Sg Loc => x + "berku";
-      SF Sg Voc => x + "berku";
-      SF Pl Nom => x + "Berkowie";
-      SF Pl Gen => x + "berków";
-      SF Pl Dat => x + "berkom";
-      SF Pl Acc => x + "berków";
-      SF Pl Instr => x + "berkami";
-      SF Pl Loc => x + "berkach";
-      SF Pl Voc => x + "Berkowie"
-    };
-
-    oper mkNTable0141: Str -> SubstForm => Str; --%
-    oper mkNTable0141 lexem = 
-      let x = Predef.tk 1 lexem in
-    table { 
-      SF Sg Nom => x + "a";
-      SF Sg Gen => x + "i";
-      SF Sg Dat => x + "i";
-      SF Sg Acc => x + "ę";
-      SF Sg Instr => x + "ą";
-      SF Sg Loc => x + "i";
-      SF Sg Voc => x + "o";
-      SF Pl Nom => x + "owie";
-      SF Pl Gen => x + "ów";
-      SF Pl Dat => x + "om";
-      SF Pl Acc => x + "ów";
-      SF Pl Instr => x + "ami";
-      SF Pl Loc => x + "ach";
-      SF Pl Voc => x + "owie"
-    };
-
-    oper mkNTable0142: Str -> SubstForm => Str; --%
-    oper mkNTable0142 lexem = 
-      let x = Predef.tk 6 lexem in
-    table { 
-      SF Sg Nom => x + "berlin";
-      SF Sg Gen => x + "berlina";
-      SF Sg Dat => x + "Berlinowi";
-      SF Sg Acc => x + "berlin";
-      SF Sg Instr => x + "Berlinem";
-      SF Sg Loc => x + "berlinie";
-      SF Sg Voc => x + "berlinie";
-      SF Pl Nom => x + "berliny";
-      SF Pl Gen => x + "Berlinów";
-      SF Pl Dat => x + "berlinom";
-      SF Pl Acc => x + "berliny";
-      SF Pl Instr => x + "berlinami";
-      SF Pl Loc => x + "berlinach";
-      SF Pl Voc => x + "berliny"
-    };
-
-    oper mkNTable0143: Str -> SubstForm => Str; --%
-    oper mkNTable0143 lexem = 
-      let x = Predef.tk 7 lexem in
-    table { 
-      SF Sg Nom => x + "bernard";
-      SF Sg Gen => x + "bernarda";
-      SF Sg Dat => x + "bernardowi";
-      SF Sg Acc => x + "bernarda";
-      SF Sg Instr => x + "bernardem";
-      SF Sg Loc => x + "bernardzie";
-      SF Sg Voc => x + "bernardzie";
-      SF Pl Nom => x + "Bernardowie";
-      SF Pl Gen => x + "bernardów";
-      SF Pl Dat => x + "bernardom";
-      SF Pl Acc => x + "bernardów";
-      SF Pl Instr => x + "bernardami";
-      SF Pl Loc => x + "bernardach";
-      SF Pl Voc => x + "Bernardowie"
-    };
-
-    oper mkNTable0144: Str -> SubstForm => Str; --%
-    oper mkNTable0144 lexem = 
-      let x = Predef.tk 7 lexem in
-    table { 
-      SF Sg Nom => x + "bertram";
-      SF Sg Gen => x + "bertrama";
-      SF Sg Dat => x + "bertramowi";
-      SF Sg Acc => x + "bertrama";
-      SF Sg Instr => x + "bertramem";
-      SF Sg Loc => x + "bertramie";
-      SF Sg Voc => x + "bertramie";
-      SF Pl Nom => x + "Bertramowie";
-      SF Pl Gen => x + "bertramów";
-      SF Pl Dat => x + "bertramom";
-      SF Pl Acc => x + "bertramów";
-      SF Pl Instr => x + "bertramami";
-      SF Pl Loc => x + "bertramach";
-      SF Pl Voc => x + "Bertramowie"
-    };
-
-    oper mkNTable0145: Str -> SubstForm => Str; --%
-    oper mkNTable0145 lexem = 
-      let x = Predef.tk 0 lexem in
-    table { 
-      SF Sg Nom => x + "";
-      SF Sg Gen => x + "u";
-      SF Sg Dat => x + "owi";
-      SF Sg Acc => x + "";
-      SF Sg Instr => x + "em";
-      SF Sg Loc => x + "zie";
-      SF Sg Voc => x + "zie";
-      SF Pl Nom => x + "y";
-      SF Pl Gen => x + "ów";
-      SF Pl Dat => x + "om";
-      SF Pl Acc => x + "y";
-      SF Pl Instr => x + "ami";
-      SF Pl Loc => x + "ach";
-      SF Pl Voc => x + "y"
-    };
-
-    oper mkNTable0147: Str -> SubstForm => Str; --%
-    oper mkNTable0147 lexem = 
-      let x = Predef.tk 6 lexem in
-    table { 
-      SF Sg Nom => x + "białek";
-      SF Sg Gen => x + "białka";
-      SF Sg Dat => x + "Białkowi";
-      SF Sg Acc => x + "białka";
-      SF Sg Instr => x + "białkiem";
-      SF Sg Loc => x + "białku";
-      SF Sg Voc => x + "białku";
-      SF Pl Nom => x + "Białkowie";
-      SF Pl Gen => x + "Białków";
-      SF Pl Dat => x + "białkom";
-      SF Pl Acc => x + "Białków";
-      SF Pl Instr => x + "białkami";
-      SF Pl Loc => x + "białkach";
-      SF Pl Voc => x + "Białkowie"
-    };
-
-    oper mkNTable0148: Str -> SubstForm => Str; --%
-    oper mkNTable0148 lexem = 
-      let x = Predef.tk 6 lexem in
-    table { 
-      SF Sg Nom => x + "białko";
-      SF Sg Gen => x + "białki";
-      SF Sg Dat => x + "białce";
-      SF Sg Acc => x + "białkę";
-      SF Sg Instr => x + "białką";
-      SF Sg Loc => x + "białce";
-      SF Sg Voc => x + "białko";
-      SF Pl Nom => x + "Białkowie";
-      SF Pl Gen => x + "Białków";
-      SF Pl Dat => x + "białkom";
-      SF Pl Acc => x + "Białków";
-      SF Pl Instr => x + "białkami";
-      SF Pl Loc => x + "białkach";
-      SF Pl Voc => x + "Białkowie"
-    };
-
-    oper mkNTable0150: Str -> SubstForm => Str; --%
-    oper mkNTable0150 lexem = 
-      let x = Predef.tk 4 lexem in
-    table { 
-      SF Sg Nom => x + "biel";
-      SF Sg Gen => x + "Biela";
-      SF Sg Dat => x + "bielowi";
-      SF Sg Acc => x + "Biela";
-      SF Sg Instr => x + "bielem";
-      SF Sg Loc => x + "bielu";
-      SF Sg Voc => x + "bielu";
-      SF Pl Nom => x + "Bielowie";
-      SF Pl Gen => x + "bielów";
-      SF Pl Dat => x + "bielom";
-      SF Pl Acc => x + "bielów";
-      SF Pl Instr => x + "bielami";
-      SF Pl Loc => x + "bielach";
-      SF Pl Voc => x + "Bielowie"
-    };
-
-    oper mkNTable0151: Str -> SubstForm => Str; --%
-    oper mkNTable0151 lexem = 
-      let x = Predef.tk 4 lexem in
-    table { 
-      SF Sg Nom => x + "niek";
-      SF Sg Gen => x + "ńka";
-      SF Sg Dat => x + "ńkowi";
-      SF Sg Acc => x + "ńka";
-      SF Sg Instr => x + "ńkiem";
-      SF Sg Loc => x + "ńku";
-      SF Sg Voc => x + "ńku";
-      SF Pl Nom => x + "ńkowie";
-      SF Pl Gen => x + "ńków";
-      SF Pl Dat => x + "ńkom";
-      SF Pl Acc => x + "ńków";
-      SF Pl Instr => x + "ńkami";
-      SF Pl Loc => x + "ńkach";
-      SF Pl Voc => x + "ńkowie"
-    };
-
-    oper mkNTable0153: Str -> SubstForm => Str; --%
-    oper mkNTable0153 lexem = 
-      let x = Predef.tk 1 lexem in
-    table { 
-      SF Sg Nom => x + "ń";
-      SF Sg Gen => x + "nia";
-      SF Sg Dat => x + "niowi";
-      SF Sg Acc => x + "nia";
-      SF Sg Instr => x + "niem";
-      SF Sg Loc => x + "niu";
-      SF Sg Voc => x + "niu";
-      SF Pl Nom => x + "niowie";
-      SF Pl Gen => x + "niów";
-      SF Pl Dat => x + "niom";
-      SF Pl Acc => x + "niów";
-      SF Pl Instr => x + "niami";
-      SF Pl Loc => x + "niach";
-      SF Pl Voc => x + "niowie"
-    };
-
-    oper mkNTable0154: Str -> SubstForm => Str; --%
-    oper mkNTable0154 lexem = 
-      let x = Predef.tk 4 lexem in
-    table { 
-      SF Sg Nom => x + "bill";
-      SF Sg Gen => x + "Billa";
-      SF Sg Dat => x + "billowi";
-      SF Sg Acc => x + "Billa";
-      SF Sg Instr => x + "billem";
-      SF Sg Loc => x + "billu";
-      SF Sg Voc => x + "billu";
-      SF Pl Nom => x + "bille";
-      SF Pl Gen => x + "billów";
-      SF Pl Dat => x + "billom";
-      SF Pl Acc => x + "billów";
-      SF Pl Instr => x + "billami";
-      SF Pl Loc => x + "billach";
-      SF Pl Voc => x + "bille"
-    };
-
-    oper mkNTable0155: Str -> SubstForm => Str; --%
-    oper mkNTable0155 lexem = 
-      let x = Predef.tk 2 lexem in
-    table { 
-      SF Sg Nom => x + "na";
-      SF Sg Gen => x + "ny";
-      SF Sg Dat => x + "nie";
-      SF Sg Acc => x + "nę";
-      SF Sg Instr => x + "ną";
-      SF Sg Loc => x + "nie";
-      SF Sg Voc => x + "no";
-      SF Pl Nom => x + "ny";
-      SF Pl Gen => x + "ien";
-      SF Pl Dat => x + "nom";
-      SF Pl Acc => x + "ny";
-      SF Pl Instr => x + "nami";
-      SF Pl Loc => x + "nach";
-      SF Pl Voc => x + "ny"
-    };
-
-    oper mkNTable0156: Str -> SubstForm => Str; --%
-    oper mkNTable0156 lexem = 
-      let x = lexem in
-    table { 
-      SF Sg Nom => x + "a";
-      SF Sg Gen => x + "";
-      SF Sg Dat => x + "";
-      SF Sg Acc => x + "ę";
-      SF Sg Instr => x + "ą";
-      SF Sg Loc => x + "";
-      SF Sg Voc => x + "o";
-      SF Pl Nom => x + "e";
-      SF Pl Gen => x + "";
-      SF Pl Dat => x + "om";
-      SF Pl Acc => x + "e";
-      SF Pl Instr => x + "ami";
-      SF Pl Loc => x + "ach";
-      SF Pl Voc => x + "e"
-    };
-
-    oper mkNTable0158: Str -> SubstForm => Str; --%
-    oper mkNTable0158 lexem = 
-      let x = Predef.tk 3 lexem in
-    table { 
-      SF Sg Nom => x + "bob";
-      SF Sg Gen => x + "boba";
-      SF Sg Dat => x + "bobowi";
-      SF Sg Acc => x + "boba";
-      SF Sg Instr => x + "bobem";
-      SF Sg Loc => x + "bobie";
-      SF Sg Voc => x + "bobie";
-      SF Pl Nom => x + "Bobowie";
-      SF Pl Gen => x + "bobów";
-      SF Pl Dat => x + "bobom";
-      SF Pl Acc => x + "bobów";
-      SF Pl Instr => x + "bobami";
-      SF Pl Loc => x + "bobach";
-      SF Pl Voc => x + "Bobowie"
-    };
-
-    oper mkNTable0159: Str -> SubstForm => Str; --%
-    oper mkNTable0159 lexem = 
-      let x = Predef.tk 5 lexem in
-    table { 
-      SF Sg Nom => x + "bober";
-      SF Sg Gen => x + "bobra";
-      SF Sg Dat => x + "bobrowi";
-      SF Sg Acc => x + "bobra";
-      SF Sg Instr => x + "bobrem";
-      SF Sg Loc => x + "bobrze";
-      SF Sg Voc => x + "bobrze";
-      SF Pl Nom => x + "Bobrowie";
-      SF Pl Gen => x + "bobrów";
-      SF Pl Dat => x + "bobrom";
-      SF Pl Acc => x + "bobrów";
-      SF Pl Instr => x + "bobrami";
-      SF Pl Loc => x + "bobrach";
-      SF Pl Voc => x + "Bobrowie"
-    };
-
-    oper mkNTable0161: Str -> SubstForm => Str; --%
-    oper mkNTable0161 lexem = 
-      let x = Predef.tk 7 lexem in
-    table { 
-      SF Sg Nom => x + "bogdana";
-      SF Sg Gen => x + "bogdany";
-      SF Sg Dat => x + "bogdanie";
-      SF Sg Acc => x + "Bogdanę";
-      SF Sg Instr => x + "Bogdaną";
-      SF Sg Loc => x + "bogdanie";
-      SF Sg Voc => x + "Bogdano";
-      SF Pl Nom => x + "bogdany";
-      SF Pl Gen => x + "bogdan";
-      SF Pl Dat => x + "bogdanom";
-      SF Pl Acc => x + "bogdany";
-      SF Pl Instr => x + "bogdanami";
-      SF Pl Loc => x + "bogdanach";
-      SF Pl Voc => x + "bogdany"
-    };
-
-    oper mkNTable0163: Str -> SubstForm => Str; --%
-    oper mkNTable0163 lexem = 
-      let x = Predef.tk 1 lexem in
-    table { 
-      SF Sg Nom => x + "ł";
-      SF Sg Gen => x + "ła";
-      SF Sg Dat => x + "łowi";
-      SF Sg Acc => x + "ła";
-      SF Sg Instr => x + "łem";
-      SF Sg Loc => x + "le";
-      SF Sg Voc => x + "le";
-      SF Pl Nom => x + "łowie";
-      SF Pl Gen => x + "łów";
-      SF Pl Dat => x + "łom";
-      SF Pl Acc => x + "łów";
-      SF Pl Instr => x + "łami";
-      SF Pl Loc => x + "łach";
-      SF Pl Voc => x + "łowie"
-    };
-
-    oper mkNTable0164: Str -> SubstForm => Str; --%
-    oper mkNTable0164 lexem = 
-      let x = Predef.tk 2 lexem in
-    table { 
-      SF Sg Nom => x + "ła";
-      SF Sg Gen => x + "ły";
-      SF Sg Dat => x + "le";
-      SF Sg Acc => x + "łę";
-      SF Sg Instr => x + "łą";
-      SF Sg Loc => x + "le";
-      SF Sg Voc => x + "ło";
-      SF Pl Nom => x + "ły";
-      SF Pl Gen => x + "ł";
-      SF Pl Dat => x + "łom";
-      SF Pl Acc => x + "ły";
-      SF Pl Instr => x + "łami";
-      SF Pl Loc => x + "łach";
-      SF Pl Voc => x + "ły"
-    };
-
-    oper mkNTable0165: Str -> SubstForm => Str; --%
-    oper mkNTable0165 lexem = 
-      let x = Predef.tk 2 lexem in
-    table { 
-      SF Sg Nom => x + "ta";
-      SF Sg Gen => x + "ty";
-      SF Sg Dat => x + "cie";
-      SF Sg Acc => x + "tę";
-      SF Sg Instr => x + "tą";
-      SF Sg Loc => x + "cie";
-      SF Sg Voc => x + "to";
-      SF Pl Nom => x + "towie";
-      SF Pl Gen => x + "tów";
-      SF Pl Dat => x + "tom";
-      SF Pl Acc => x + "tów";
-      SF Pl Instr => x + "tami";
-      SF Pl Loc => x + "tach";
-      SF Pl Voc => x + "towie"
-    };
-
-    oper mkNTable0166: Str -> SubstForm => Str; --%
-    oper mkNTable0166 lexem = 
-      let x = Predef.tk 2 lexem in
-    table { 
-      SF Sg Nom => x + "ec";
-      SF Sg Gen => x + "ca";
-      SF Sg Dat => x + "cowi";
-      SF Sg Acc => x + "ca";
-      SF Sg Instr => x + "cem";
-      SF Sg Loc => x + "cu";
-      SF Sg Voc => x + "cu";
-      SF Pl Nom => x + "cowie";
-      SF Pl Gen => x + "ców";
-      SF Pl Dat => x + "com";
-      SF Pl Acc => x + "ców";
-      SF Pl Instr => x + "cami";
-      SF Pl Loc => x + "cach";
-      SF Pl Voc => x + "cowie"
-    };
-
-    oper mkNTable0167: Str -> SubstForm => Str; --%
-    oper mkNTable0167 lexem = 
-      let x = Predef.tk 5 lexem in
-    table { 
-      SF Sg Nom => x + "bolek";
-      SF Sg Gen => x + "bolka";
-      SF Sg Dat => x + "bolkowi";
-      SF Sg Acc => x + "bolka";
-      SF Sg Instr => x + "bolkiem";
-      SF Sg Loc => x + "bolku";
-      SF Sg Voc => x + "bolku";
-      SF Pl Nom => x + "Bolkowie";
-      SF Pl Gen => x + "bolków";
-      SF Pl Dat => x + "bolkom";
-      SF Pl Acc => x + "bolków";
-      SF Pl Instr => x + "bolkami";
-      SF Pl Loc => x + "bolkach";
-      SF Pl Voc => x + "Bolkowie"
-    };
-
-    oper mkNTable0168: Str -> SubstForm => Str; --%
-    oper mkNTable0168 lexem = 
-      let x = Predef.tk 2 lexem in
-    table { 
-      SF Sg Nom => x + "sł";
-      SF Sg Gen => x + "sła";
-      SF Sg Dat => x + "słowi";
-      SF Sg Acc => x + "sła";
-      SF Sg Instr => x + "słem";
-      SF Sg Loc => x + "śle";
-      SF Sg Voc => x + "śle";
-      SF Pl Nom => x + "słowie";
-      SF Pl Gen => x + "słów";
-      SF Pl Dat => x + "słom";
-      SF Pl Acc => x + "słów";
-      SF Pl Instr => x + "słami";
-      SF Pl Loc => x + "słach";
-      SF Pl Voc => x + "słowie"
-    };
-
-    oper mkNTable0169: Str -> SubstForm => Str; --%
-    oper mkNTable0169 lexem = 
-      let x = Predef.tk 3 lexem in
-    table { 
-      SF Sg Nom => x + "iec";
-      SF Sg Gen => x + "ca";
-      SF Sg Dat => x + "cowi";
-      SF Sg Acc => x + "iec";
-      SF Sg Instr => x + "cem";
-      SF Sg Loc => x + "cu";
-      SF Sg Voc => x + "cu";
-      SF Pl Nom => x + "ce";
-      SF Pl Gen => x + "ców";
-      SF Pl Dat => x + "com";
-      SF Pl Acc => x + "ce";
-      SF Pl Instr => x + "cami";
-      SF Pl Loc => x + "cach";
-      SF Pl Voc => x + "ce"
-    };
-
-    oper mkNTable0170: Str -> SubstForm => Str; --%
-    oper mkNTable0170 lexem = 
-      let x = Predef.tk 7 lexem in
-    table { 
-      SF Sg Nom => x + "bolivar";
-      SF Sg Gen => x + "bolivara";
-      SF Sg Dat => x + "bolivarowi";
-      SF Sg Acc => x + "bolivara";
-      SF Sg Instr => x + "bolivarem";
-      SF Sg Loc => x + "bolivarze";
-      SF Sg Voc => x + "bolivarze";
-      SF Pl Nom => x + "Bolivarowie";
-      SF Pl Gen => x + "bolivarów";
-      SF Pl Dat => x + "bolivarom";
-      SF Pl Acc => x + "bolivarów";
-      SF Pl Instr => x + "bolivarami";
-      SF Pl Loc => x + "bolivarach";
-      SF Pl Voc => x + "Bolivarowie"
-    };
-
-    oper mkNTable0171: Str -> SubstForm => Str; --%
-    oper mkNTable0171 lexem = 
-      let x = Predef.tk 5 lexem in
-    table { 
-      SF Sg Nom => x + "Bolko";
-      SF Sg Gen => x + "bolka";
-      SF Sg Dat => x + "bolkowi";
-      SF Sg Acc => x + "bolka";
-      SF Sg Instr => x + "bolkiem";
-      SF Sg Loc => x + "bolku";
-      SF Sg Voc => x + "bolku";
-      SF Pl Nom => x + "Bolkowie";
-      SF Pl Gen => x + "bolków";
-      SF Pl Dat => x + "bolkom";
-      SF Pl Acc => x + "bolków";
-      SF Pl Instr => x + "bolkami";
-      SF Pl Loc => x + "bolkach";
-      SF Pl Voc => x + "Bolkowie"
-    };
-
-    oper mkNTable0173: Str -> SubstForm => Str; --%
-    oper mkNTable0173 lexem = 
-      let x = Predef.tk 1 lexem in
-    table { 
-      SF Sg Nom => x + "a";
-      SF Sg Gen => x + "y";
-      SF Sg Dat => x + "ze";
-      SF Sg Acc => x + "ę";
-      SF Sg Instr => x + "ą";
-      SF Sg Loc => x + "ze";
-      SF Sg Voc => x + "o";
-      SF Pl Nom => x + "owie";
-      SF Pl Gen => x + "ów";
-      SF Pl Dat => x + "om";
-      SF Pl Acc => x + "ów";
-      SF Pl Instr => x + "ami";
-      SF Pl Loc => x + "ach";
-      SF Pl Voc => x + "owie"
-    };
-
-    oper mkNTable0174: Str -> SubstForm => Str; --%
-    oper mkNTable0174 lexem = 
-      let x = Predef.tk 2 lexem in
-    table { 
-      SF Sg Nom => x + "ko";
-      SF Sg Gen => x + "ki";
-      SF Sg Dat => x + "ce";
-      SF Sg Acc => x + "kę";
-      SF Sg Instr => x + "ką";
-      SF Sg Loc => x + "ce";
-      SF Sg Voc => x + "ko";
-      SF Pl Nom => x + "kowie";
-      SF Pl Gen => x + "ków";
-      SF Pl Dat => x + "kom";
-      SF Pl Acc => x + "ków";
-      SF Pl Instr => x + "kami";
-      SF Pl Loc => x + "kach";
-      SF Pl Voc => x + "kowie"
-    };
-
-    oper mkNTable0175: Str -> SubstForm => Str; --%
-    oper mkNTable0175 lexem = 
-      let x = Predef.tk 1 lexem in
-    table { 
-      SF Sg Nom => x + "a";
-      SF Sg Gen => x + "y";
-      SF Sg Dat => x + "y";
-      SF Sg Acc => x + "ę";
-      SF Sg Instr => x + "ą";
-      SF Sg Loc => x + "y";
-      SF Sg Voc => x + "o";
-      SF Pl Nom => x + "owie";
-      SF Pl Gen => x + "ów";
-      SF Pl Dat => x + "om";
-      SF Pl Acc => x + "ów";
-      SF Pl Instr => x + "ami";
-      SF Pl Loc => x + "ach";
-      SF Pl Voc => x + "owie"
-    };
-
-    oper mkNTable0176: Str -> SubstForm => Str; --%
-    oper mkNTable0176 lexem = 
-      let x = Predef.tk 1 lexem in
-    table { 
-      SF Sg Nom => x + "o";
-      SF Sg Gen => x + "o";
-      SF Sg Dat => x + "u";
-      SF Sg Acc => x + "o";
-      SF Sg Instr => x + "o";
-      SF Sg Loc => x + "o";
-      SF Sg Voc => x + "o";
-      SF Pl Nom => x + "o";
-      SF Pl Gen => x + "o";
-      SF Pl Dat => x + "om";
-      SF Pl Acc => x + "o";
-      SF Pl Instr => x + "o";
-      SF Pl Loc => x + "o";
-      SF Pl Voc => x + "o"
-    };
-
-    oper mkNTable0177: Str -> SubstForm => Str; --%
-    oper mkNTable0177 lexem = 
-      let x = Predef.tk 6 lexem in
-    table { 
-      SF Sg Nom => x + "borsuk";
-      SF Sg Gen => x + "borsuka";
-      SF Sg Dat => x + "borsukowi";
-      SF Sg Acc => x + "borsuka";
-      SF Sg Instr => x + "borsukiem";
-      SF Sg Loc => x + "borsuku";
-      SF Sg Voc => x + "borsuku";
-      SF Pl Nom => x + "Borsukowie";
-      SF Pl Gen => x + "borsuków";
-      SF Pl Dat => x + "borsukom";
-      SF Pl Acc => x + "borsuków";
-      SF Pl Instr => x + "borsukami";
-      SF Pl Loc => x + "borsukach";
-      SF Pl Voc => x + "Borsukowie"
-    };
-
-    oper mkNTable0179: Str -> SubstForm => Str; --%
-    oper mkNTable0179 lexem = 
-      let x = Predef.tk 5 lexem in
-    table { 
-      SF Sg Nom => x + "bosak";
-      SF Sg Gen => x + "bosaka";
-      SF Sg Dat => x + "bosakowi";
-      SF Sg Acc => x + "bosaka";
-      SF Sg Instr => x + "bosakiem";
-      SF Sg Loc => x + "bosaku";
-      SF Sg Voc => x + "bosaku";
-      SF Pl Nom => x + "Bosakowie";
-      SF Pl Gen => x + "bosaków";
-      SF Pl Dat => x + "bosakom";
-      SF Pl Acc => x + "bosaków";
-      SF Pl Instr => x + "bosakami";
-      SF Pl Loc => x + "bosakach";
-      SF Pl Voc => x + "Bosakowie"
-    };
-
-    oper mkNTable0180: Str -> SubstForm => Str; --%
-    oper mkNTable0180 lexem = 
-      let x = Predef.tk 7 lexem in
-    table { 
-      SF Sg Nom => x + "bourbon";
-      SF Sg Gen => x + "bourbona";
-      SF Sg Dat => x + "bourbonowi";
-      SF Sg Acc => x + "bourbona";
-      SF Sg Instr => x + "bourbonem";
-      SF Sg Loc => x + "bourbonie";
-      SF Sg Voc => x + "bourbonie";
-      SF Pl Nom => x + "Bourbonowie";
-      SF Pl Gen => x + "bourbonów";
-      SF Pl Dat => x + "bourbonom";
-      SF Pl Acc => x + "bourbonów";
-      SF Pl Instr => x + "bourbonami";
-      SF Pl Loc => x + "bourbonach";
-      SF Pl Voc => x + "Bourbonowie"
-    };
-
-    oper mkNTable0182: Str -> SubstForm => Str; --%
-    oper mkNTable0182 lexem = 
-      let x = Predef.tk 5 lexem in
-    table { 
-      SF Sg Nom => x + "braun";
-      SF Sg Gen => x + "brauna";
-      SF Sg Dat => x + "braunowi";
-      SF Sg Acc => x + "brauna";
-      SF Sg Instr => x + "braunem";
-      SF Sg Loc => x + "braunie";
-      SF Sg Voc => x + "braunie";
-      SF Pl Nom => x + "Braunowie";
-      SF Pl Gen => x + "braunów";
-      SF Pl Dat => x + "braunom";
-      SF Pl Acc => x + "braunów";
-      SF Pl Instr => x + "braunami";
-      SF Pl Loc => x + "braunach";
-      SF Pl Voc => x + "Braunowie"
-    };
-
-    oper mkNTable0183: Str -> SubstForm => Str; --%
-    oper mkNTable0183 lexem = 
-      let x = Predef.tk 12 lexem in
-    table { 
-      SF Sg Nom => x + "brazylijczyk";
-      SF Sg Gen => x + "brazylijczyka";
-      SF Sg Dat => x + "Brazylijczykowi";
-      SF Sg Acc => x + "brazylijczyka";
-      SF Sg Instr => x + "Brazylijczykiem";
-      SF Sg Loc => x + "Brazylijczyku";
-      SF Sg Voc => x + "Brazylijczyku";
-      SF Pl Nom => x + "Brazylijczycy";
-      SF Pl Gen => x + "Brazylijczyków";
-      SF Pl Dat => x + "Brazylijczykom";
-      SF Pl Acc => x + "Brazylijczyków";
-      SF Pl Instr => x + "Brazylijczykami";
-      SF Pl Loc => x + "Brazylijczykach";
-      SF Pl Voc => x + "Brazylijczycy"
-    };
-
-    oper mkNTable0184: Str -> SubstForm => Str; --%
-    oper mkNTable0184 lexem = 
-      let x = Predef.tk 2 lexem in
-    table { 
-      SF Sg Nom => x + "el";
-      SF Sg Gen => x + "la";
-      SF Sg Dat => x + "lowi";
-      SF Sg Acc => x + "la";
-      SF Sg Instr => x + "lem";
-      SF Sg Loc => x + "lu";
-      SF Sg Voc => x + "lu";
-      SF Pl Nom => x + "lowie";
-      SF Pl Gen => x + "lów";
-      SF Pl Dat => x + "lom";
-      SF Pl Acc => x + "lów";
-      SF Pl Instr => x + "lami";
-      SF Pl Loc => x + "lach";
-      SF Pl Voc => x + "lowie"
-    };
-
-    oper mkNTable0185: Str -> SubstForm => Str; --%
-    oper mkNTable0185 lexem = 
-      let x = Predef.tk 6 lexem in
-    table { 
-      SF Sg Nom => x + "Bronia";
-      SF Sg Gen => x + "broni";
-      SF Sg Dat => x + "broni";
-      SF Sg Acc => x + "Bronię";
-      SF Sg Instr => x + "bronią";
-      SF Sg Loc => x + "broni";
-      SF Sg Voc => x + "Broniu";
-      SF Pl Nom => x + "bronie";
-      SF Pl Gen => x + "broń";
-      SF Pl Dat => x + "broniom";
-      SF Pl Acc => x + "bronie";
-      SF Pl Instr => x + "broniami";
-      SF Pl Loc => x + "broniach";
-      SF Pl Voc => x + "bronie"
-    };
-
-    oper mkNTable0186: Str -> SubstForm => Str; --%
-    oper mkNTable0186 lexem = 
-      let x = Predef.tk 8 lexem in
-    table { 
-      SF Sg Nom => x + "browning";
-      SF Sg Gen => x + "browninga";
-      SF Sg Dat => x + "browningowi";
-      SF Sg Acc => x + "browninga";
-      SF Sg Instr => x + "browningiem";
-      SF Sg Loc => x + "browningu";
-      SF Sg Voc => x + "browningu";
-      SF Pl Nom => x + "Browningowie";
-      SF Pl Gen => x + "browningów";
-      SF Pl Dat => x + "browningom";
-      SF Pl Acc => x + "browningów";
-      SF Pl Instr => x + "browningami";
-      SF Pl Loc => x + "browningach";
-      SF Pl Voc => x + "Browningowie"
-    };
-
-    oper mkNTable0187: Str -> SubstForm => Str; --%
-    oper mkNTable0187 lexem = 
-      let x = Predef.tk 6 lexem in
-    table { 
-      SF Sg Nom => x + "brożek";
-      SF Sg Gen => x + "brożka";
-      SF Sg Dat => x + "brożkowi";
-      SF Sg Acc => x + "brożka";
-      SF Sg Instr => x + "brożkiem";
-      SF Sg Loc => x + "brożku";
-      SF Sg Voc => x + "brożku";
-      SF Pl Nom => x + "Brożkowie";
-      SF Pl Gen => x + "brożków";
-      SF Pl Dat => x + "brożkom";
-      SF Pl Acc => x + "brożków";
-      SF Pl Instr => x + "brożkami";
-      SF Pl Loc => x + "brożkach";
-      SF Pl Voc => x + "Brożkowie"
-    };
-
-    oper mkNTable0188: Str -> SubstForm => Str; --%
-    oper mkNTable0188 lexem = 
-      let x = Predef.tk 0 lexem in
-    table { 
-      SF Sg Nom => x + "";
-      SF Sg Gen => x + "na";
-      SF Sg Dat => x + "wi";
-      SF Sg Acc => x + "na";
-      SF Sg Instr => x + "nem";
-      SF Sg Loc => x + "nie";
-      SF Sg Voc => x + "nie";
-      SF Pl Nom => x + "nowie";
-      SF Pl Gen => x + "nów";
-      SF Pl Dat => x + "nom";
-      SF Pl Acc => x + "nów";
-      SF Pl Instr => x + "nami";
-      SF Pl Loc => x + "nach";
-      SF Pl Voc => x + "nowie"
-    };
-
-    oper mkNTable0189: Str -> SubstForm => Str; --%
-    oper mkNTable0189 lexem = 
-      let x = Predef.tk 5 lexem in
-    table { 
-      SF Sg Nom => x + "bryła";
-      SF Sg Gen => x + "bryły";
-      SF Sg Dat => x + "bryle";
-      SF Sg Acc => x + "bryłę";
-      SF Sg Instr => x + "bryłą";
-      SF Sg Loc => x + "bryle";
-      SF Sg Voc => x + "bryło";
-      SF Pl Nom => x + "Bryłowie";
-      SF Pl Gen => x + "Bryłów";
-      SF Pl Dat => x + "bryłom";
-      SF Pl Acc => x + "Bryłów";
-      SF Pl Instr => x + "bryłami";
-      SF Pl Loc => x + "bryłach";
-      SF Pl Voc => x + "Bryłowie"
-    };
-
-    oper mkNTable0190: Str -> SubstForm => Str; --%
-    oper mkNTable0190 lexem = 
-      let x = Predef.tk 8 lexem in
-    table { 
-      SF Sg Nom => x + "brzechwa";
-      SF Sg Gen => x + "brzechwy";
-      SF Sg Dat => x + "brzechwie";
-      SF Sg Acc => x + "brzechwę";
-      SF Sg Instr => x + "brzechwą";
-      SF Sg Loc => x + "brzechwie";
-      SF Sg Voc => x + "brzechwo";
-      SF Pl Nom => x + "Brzechwowie";
-      SF Pl Gen => x + "Brzechwów";
-      SF Pl Dat => x + "brzechwom";
-      SF Pl Acc => x + "Brzechwów";
-      SF Pl Instr => x + "brzechwami";
-      SF Pl Loc => x + "brzechwach";
-      SF Pl Voc => x + "Brzechwowie"
-    };
-
-    oper mkNTable0192: Str -> SubstForm => Str; --%
-    oper mkNTable0192 lexem = 
-      let x = Predef.tk 6 lexem in
-    table { 
-      SF Sg Nom => x + "buczek";
-      SF Sg Gen => x + "buczka";
-      SF Sg Dat => x + "buczkowi";
-      SF Sg Acc => x + "buczka";
-      SF Sg Instr => x + "buczkiem";
-      SF Sg Loc => x + "buczku";
-      SF Sg Voc => x + "buczku";
-      SF Pl Nom => x + "Buczkowie";
-      SF Pl Gen => x + "buczków";
-      SF Pl Dat => x + "buczkom";
-      SF Pl Acc => x + "buczków";
-      SF Pl Instr => x + "buczkami";
-      SF Pl Loc => x + "buczkach";
-      SF Pl Voc => x + "Buczkowie"
-    };
-
-    oper mkNTable0193: Str -> SubstForm => Str; --%
-    oper mkNTable0193 lexem = 
-      let x = Predef.tk 0 lexem in
-    table { 
-      SF Sg Nom => x + "";
-      SF Sg Gen => x + "u";
-      SF Sg Dat => x + "owi";
-      SF Sg Acc => x + "";
-      SF Sg Instr => x + "iem";
-      SF Sg Loc => x + "u";
-      SF Sg Voc => x + "u";
-      SF Pl Nom => x + "i";
-      SF Pl Gen => x + "ów";
-      SF Pl Dat => x + "om";
-      SF Pl Acc => x + "i";
-      SF Pl Instr => x + "ami";
-      SF Pl Loc => x + "ach";
-      SF Pl Voc => x + "i"
-    };
-
-    oper mkNTable0194: Str -> SubstForm => Str; --%
-    oper mkNTable0194 lexem = 
-      let x = Predef.tk 3 lexem in
-    table { 
-      SF Sg Nom => x + "bur";
-      SF Sg Gen => x + "bura";
-      SF Sg Dat => x + "Burowi";
-      SF Sg Acc => x + "bura";
-      SF Sg Instr => x + "Burem";
-      SF Sg Loc => x + "burze";
-      SF Sg Voc => x + "burze";
-      SF Pl Nom => x + "Burowie";
-      SF Pl Gen => x + "Burów";
-      SF Pl Dat => x + "burom";
-      SF Pl Acc => x + "Burów";
-      SF Pl Instr => x + "burami";
-      SF Pl Loc => x + "burach";
-      SF Pl Voc => x + "Burowie"
-    };
-
-    oper mkNTable0195: Str -> SubstForm => Str; --%
-    oper mkNTable0195 lexem = 
-      let x = Predef.tk 6 lexem in
-    table { 
-      SF Sg Nom => x + "burbon";
-      SF Sg Gen => x + "burbona";
-      SF Sg Dat => x + "burbonowi";
-      SF Sg Acc => x + "burbona";
-      SF Sg Instr => x + "burbonem";
-      SF Sg Loc => x + "burbonie";
-      SF Sg Voc => x + "burbonie";
-      SF Pl Nom => x + "Burbonowie";
-      SF Pl Gen => x + "burbonów";
-      SF Pl Dat => x + "burbonom";
-      SF Pl Acc => x + "burbonów";
-      SF Pl Instr => x + "burbonami";
-      SF Pl Loc => x + "burbonach";
-      SF Pl Voc => x + "Burbonowie"
-    };
-
-    oper mkNTable0196: Str -> SubstForm => Str; --%
-    oper mkNTable0196 lexem = 
-      let x = Predef.tk 7 lexem in
-    table { 
-      SF Sg Nom => x + "burgund";
-      SF Sg Gen => x + "burgunda";
-      SF Sg Dat => x + "burgundowi";
-      SF Sg Acc => x + "burgunda";
-      SF Sg Instr => x + "burgundem";
-      SF Sg Loc => x + "burgundzie";
-      SF Sg Voc => x + "burgundzie";
-      SF Pl Nom => x + "Burgundowie";
-      SF Pl Gen => x + "burgundów";
-      SF Pl Dat => x + "burgundom";
-      SF Pl Acc => x + "burgundów";
-      SF Pl Instr => x + "burgundami";
-      SF Pl Loc => x + "burgundach";
-      SF Pl Voc => x + "Burgundowie"
-    };
-
-    oper mkNTable0197: Str -> SubstForm => Str; --%
-    oper mkNTable0197 lexem = 
-      let x = Predef.tk 0 lexem in
-    table { 
-      SF Sg Nom => x + "";
-      SF Sg Gen => x + "a";
-      SF Sg Dat => x + "owi";
-      SF Sg Acc => x + "a";
-      SF Sg Instr => x + "iem";
-      SF Sg Loc => x + "u";
-      SF Sg Voc => x + "u";
-      SF Pl Nom => x + "i";
-      SF Pl Gen => x + "ów";
-      SF Pl Dat => x + "om";
-      SF Pl Acc => x + "i";
-      SF Pl Instr => x + "ami";
-      SF Pl Loc => x + "ach";
-      SF Pl Voc => x + "i"
-    };
-
-    oper mkNTable0199: Str -> SubstForm => Str; --%
-    oper mkNTable0199 lexem = 
-      let x = Predef.tk 1 lexem in
-    table { 
-      SF Sg Nom => x + "a";
-      SF Sg Gen => x + "y";
-      SF Sg Dat => x + "y";
-      SF Sg Acc => x + "ę";
-      SF Sg Instr => x + "ą";
-      SF Sg Loc => x + "y";
-      SF Sg Voc => x + "o";
-      SF Pl Nom => x + "e";
-      SF Pl Gen => x + "";
-      SF Pl Dat => x + "om";
-      SF Pl Acc => x + "e";
-      SF Pl Instr => x + "ami";
-      SF Pl Loc => x + "ach";
-      SF Pl Voc => x + "e"
-    };
-
-    oper mkNTable0201: Str -> SubstForm => Str; --%
-    oper mkNTable0201 lexem = 
-      let x = Predef.tk 3 lexem in
-    table { 
-      SF Sg Nom => x + "bąk";
-      SF Sg Gen => x + "bąka";
-      SF Sg Dat => x + "bąkowi";
-      SF Sg Acc => x + "bąka";
-      SF Sg Instr => x + "bąkiem";
-      SF Sg Loc => x + "bąku";
-      SF Sg Voc => x + "bąku";
-      SF Pl Nom => x + "Bąkowie";
-      SF Pl Gen => x + "bąków";
-      SF Pl Dat => x + "bąkom";
-      SF Pl Acc => x + "bąków";
-      SF Pl Instr => x + "bąkami";
-      SF Pl Loc => x + "bąkach";
-      SF Pl Voc => x + "Bąkowie"
-    };
-
-    oper mkNTable0203: Str -> SubstForm => Str; --%
-    oper mkNTable0203 lexem = 
-      let x = Predef.tk 0 lexem in
-    table { 
-      SF Sg Nom => x + "";
-      SF Sg Gen => x + "a";
-      SF Sg Dat => x + "owi";
-      SF Sg Acc => x + "";
-      SF Sg Instr => x + "em";
-      SF Sg Loc => x + "u";
-      SF Sg Voc => x + "u";
-      SF Pl Nom => x + "e";
-      SF Pl Gen => x + "ów";
-      SF Pl Dat => x + "om";
-      SF Pl Acc => x + "e";
-      SF Pl Instr => x + "ami";
-      SF Pl Loc => x + "ach";
-      SF Pl Voc => x + "e"
-    };
-
-    oper mkNTable0205: Str -> SubstForm => Str; --%
-    oper mkNTable0205 lexem = 
-      let x = Predef.tk 3 lexem in
-    table { 
-      SF Sg Nom => x + "óbr";
-      SF Sg Gen => x + "obru";
-      SF Sg Dat => x + "obrowi";
-      SF Sg Acc => x + "óbr";
-      SF Sg Instr => x + "obrem";
-      SF Sg Loc => x + "obrze";
-      SF Sg Voc => x + "obrze";
-      SF Pl Nom => x + "obry";
-      SF Pl Gen => x + "obrów";
-      SF Pl Dat => x + "obrom";
-      SF Pl Acc => x + "obry";
-      SF Pl Instr => x + "obrami";
-      SF Pl Loc => x + "obrach";
-      SF Pl Voc => x + "obry"
-    };
-
-    oper mkNTable0206: Str -> SubstForm => Str; --%
-    oper mkNTable0206 lexem = 
-      let x = Predef.tk 3 lexem in
-    table { 
-      SF Sg Nom => x + "bór";
-      SF Sg Gen => x + "bora";
-      SF Sg Dat => x + "borowi";
-      SF Sg Acc => x + "bora";
-      SF Sg Instr => x + "borem";
-      SF Sg Loc => x + "borze";
-      SF Sg Voc => x + "borze";
-      SF Pl Nom => x + "Borowie";
-      SF Pl Gen => x + "borów";
-      SF Pl Dat => x + "borom";
-      SF Pl Acc => x + "borów";
-      SF Pl Instr => x + "borami";
-      SF Pl Loc => x + "borach";
-      SF Pl Voc => x + "Borowie"
-    };
-
-    oper mkNTable0207: Str -> SubstForm => Str; --%
-    oper mkNTable0207 lexem = 
-      let x = Predef.tk 0 lexem in
-    table { 
-      SF Sg Nom => x + "";
-      SF Sg Gen => x + "a";
-      SF Sg Dat => x + "owi";
-      SF Sg Acc => x + "";
-      SF Sg Instr => x + "em";
-      SF Sg Loc => x + "ze";
-      SF Sg Voc => x + "ze";
-      SF Pl Nom => x + "y";
-      SF Pl Gen => x + "ów";
-      SF Pl Dat => x + "om";
-      SF Pl Acc => x + "y";
-      SF Pl Instr => x + "ami";
-      SF Pl Loc => x + "ach";
-      SF Pl Voc => x + "y"
-    };
-
-    oper mkNTable0208: Str -> SubstForm => Str; --%
-    oper mkNTable0208 lexem = 
-      let x = Predef.tk 1 lexem in
-    table { 
-      SF Sg Nom => x + "o";
-      SF Sg Gen => x + "o";
-      SF Sg Dat => x + "owi";
-      SF Sg Acc => x + "o";
-      SF Sg Instr => x + "o";
-      SF Sg Loc => x + "o";
-      SF Sg Voc => x + "o";
-      SF Pl Nom => x + "owie";
-      SF Pl Gen => x + "ów";
-      SF Pl Dat => x + "om";
-      SF Pl Acc => x + "ów";
-      SF Pl Instr => x + "o";
-      SF Pl Loc => x + "o";
-      SF Pl Voc => x + "owie"
-    };
-
-    oper mkNTable0209: Str -> SubstForm => Str; --%
-    oper mkNTable0209 lexem = 
-      let x = Predef.tk 9 lexem in
-    table { 
-      SF Sg Nom => x + "celestyna";
-      SF Sg Gen => x + "celestyny";
-      SF Sg Dat => x + "celestynie";
-      SF Sg Acc => x + "Celestynę";
-      SF Sg Instr => x + "Celestyną";
-      SF Sg Loc => x + "celestynie";
-      SF Sg Voc => x + "Celestyno";
-      SF Pl Nom => x + "celestyny";
-      SF Pl Gen => x + "celestyn";
-      SF Pl Dat => x + "celestynom";
-      SF Pl Acc => x + "celestyny";
-      SF Pl Instr => x + "celestynami";
-      SF Pl Loc => x + "celestynach";
-      SF Pl Voc => x + "celestyny"
-    };
-
-    oper mkNTable0211: Str -> SubstForm => Str; --%
-    oper mkNTable0211 lexem = 
-      let x = Predef.tk 4 lexem in
-    table { 
-      SF Sg Nom => x + "celt";
-      SF Sg Gen => x + "celta";
-      SF Sg Dat => x + "Celtowi";
-      SF Sg Acc => x + "celta";
-      SF Sg Instr => x + "Celtem";
-      SF Sg Loc => x + "celcie";
-      SF Sg Voc => x + "celcie";
-      SF Pl Nom => x + "Celtowie";
-      SF Pl Gen => x + "Celtów";
-      SF Pl Dat => x + "celtom";
-      SF Pl Acc => x + "Celtów";
-      SF Pl Instr => x + "celtami";
-      SF Pl Loc => x + "celtach";
-      SF Pl Voc => x + "Celtowie"
-    };
-
-    oper mkNTable0212: Str -> SubstForm => Str; --%
-    oper mkNTable0212 lexem = 
-      let x = Predef.tk 6 lexem in
-    table { 
-      SF Sg Nom => x + "cezary";
-      SF Sg Gen => x + "Cezarego";
-      SF Sg Dat => x + "Cezaremu";
-      SF Sg Acc => x + "Cezarego";
-      SF Sg Instr => x + "Cezarym";
-      SF Sg Loc => x + "Cezarym";
-      SF Sg Voc => x + "cezary";
-      SF Pl Nom => x + "cezarowie";
-      SF Pl Gen => x + "Cezarych";
-      SF Pl Dat => x + "Cezarym";
-      SF Pl Acc => x + "Cezarych";
-      SF Pl Instr => x + "Cezarymi";
-      SF Pl Loc => x + "Cezarych";
-      SF Pl Voc => x + "cezarowie"
-    };
-
-    oper mkNTable0213: Str -> SubstForm => Str; --%
-    oper mkNTable0213 lexem = 
-      let x = Predef.tk 10 lexem in
-    table { 
-      SF Sg Nom => x + "charleston";
-      SF Sg Gen => x + "Charlestonu";
-      SF Sg Dat => x + "charlestonowi";
-      SF Sg Acc => x + "charleston";
-      SF Sg Instr => x + "charlestonem";
-      SF Sg Loc => x + "charlestonie";
-      SF Sg Voc => x + "charlestonie";
-      SF Pl Nom => x + "charlestony";
-      SF Pl Gen => x + "charlestonów";
-      SF Pl Dat => x + "charlestonom";
-      SF Pl Acc => x + "charlestony";
-      SF Pl Instr => x + "charlestonami";
-      SF Pl Loc => x + "charlestonach";
-      SF Pl Voc => x + "charlestony"
-    };
-
-    oper mkNTable0215: Str -> SubstForm => Str; --%
-    oper mkNTable0215 lexem = 
-      let x = Predef.tk 13 lexem in
-    table { 
-      SF Sg Nom => x + "chateaubriand";
-      SF Sg Gen => x + "chateaubrianda";
-      SF Sg Dat => x + "chateaubriandowi";
-      SF Sg Acc => x + "chateaubrianda";
-      SF Sg Instr => x + "chateaubriandem";
-      SF Sg Loc => x + "chateaubriandzie";
-      SF Sg Voc => x + "chateaubriandzie";
-      SF Pl Nom => x + "Chateaubriandowie";
-      SF Pl Gen => x + "chateaubriandów";
-      SF Pl Dat => x + "chateaubriandom";
-      SF Pl Acc => x + "chateaubriandów";
-      SF Pl Instr => x + "chateaubriandami";
-      SF Pl Loc => x + "chateaubriandach";
-      SF Pl Voc => x + "Chateaubriandowie"
-    };
-
-    oper mkNTable0217: Str -> SubstForm => Str; --%
-    oper mkNTable0217 lexem = 
-      let x = Predef.tk 8 lexem in
-    table { 
-      SF Sg Nom => x + "chińczyk";
-      SF Sg Gen => x + "chińczyka";
-      SF Sg Dat => x + "chińczykowi";
-      SF Sg Acc => x + "chińczyka";
-      SF Sg Instr => x + "chińczykiem";
-      SF Sg Loc => x + "chińczyku";
-      SF Sg Voc => x + "chińczyku";
-      SF Pl Nom => x + "Chińczycy";
-      SF Pl Gen => x + "chińczyków";
-      SF Pl Dat => x + "chińczykom";
-      SF Pl Acc => x + "chińczyków";
-      SF Pl Instr => x + "chińczykami";
-      SF Pl Loc => x + "chińczykach";
-      SF Pl Voc => x + "Chińczycy"
-    };
-
-    oper mkNTable0221: Str -> SubstForm => Str; --%
-    oper mkNTable0221 lexem = 
-      let x = Predef.tk 1 lexem in
-    table { 
-      SF Sg Nom => x + "t";
-      SF Sg Gen => x + "ta";
-      SF Sg Dat => x + "towi";
-      SF Sg Acc => x + "ta";
-      SF Sg Instr => x + "tem";
-      SF Sg Loc => x + "cie";
-      SF Sg Voc => x + "cie";
-      SF Pl Nom => x + "ci";
-      SF Pl Gen => x + "tów";
-      SF Pl Dat => x + "tom";
-      SF Pl Acc => x + "tów";
-      SF Pl Instr => x + "tami";
-      SF Pl Loc => x + "tach";
-      SF Pl Voc => x + "ci"
-    };
-
-    oper mkNTable0222: Str -> SubstForm => Str; --%
-    oper mkNTable0222 lexem = 
-      let x = Predef.tk 9 lexem in
-    table { 
-      SF Sg Nom => x + "Christian";
-      SF Sg Gen => x + "Christiana";
-      SF Sg Dat => x + "Christianowi";
-      SF Sg Acc => x + "Christiana";
-      SF Sg Instr => x + "Christianem";
-      SF Sg Loc => x + "christianie";
-      SF Sg Voc => x + "christianie";
-      SF Pl Nom => x + "Christianowie";
-      SF Pl Gen => x + "Christianów";
-      SF Pl Dat => x + "Christianom";
-      SF Pl Acc => x + "Christianów";
-      SF Pl Instr => x + "Christianami";
-      SF Pl Loc => x + "Christianach";
-      SF Pl Voc => x + "Christianowie"
-    };
-
-    oper mkNTable0223: Str -> SubstForm => Str; --%
-    oper mkNTable0223 lexem = 
-      let x = Predef.tk 0 lexem in
-    table { 
-      SF Sg Nom => x + "";
-      SF Sg Gen => x + "a";
-      SF Sg Dat => x + "owi";
-      SF Sg Acc => x + "a";
-      SF Sg Instr => x + "em";
-      SF Sg Loc => x + "u";
-      SF Sg Voc => x + "u";
-      SF Pl Nom => x + "e";
-      SF Pl Gen => x + "i";
-      SF Pl Dat => x + "om";
-      SF Pl Acc => x + "i";
-      SF Pl Instr => x + "ami";
-      SF Pl Loc => x + "ach";
-      SF Pl Voc => x + "e"
-    };
-
-    oper mkNTable0224: Str -> SubstForm => Str; --%
-    oper mkNTable0224 lexem = 
-      let x = Predef.tk 9 lexem in
-    table { 
-      SF Sg Nom => x + "Chrystian";
-      SF Sg Gen => x + "Chrystiana";
-      SF Sg Dat => x + "Chrystianowi";
-      SF Sg Acc => x + "Chrystiana";
-      SF Sg Instr => x + "Chrystianem";
-      SF Sg Loc => x + "chrystianie";
-      SF Sg Voc => x + "chrystianie";
-      SF Pl Nom => x + "Chrystianowie";
-      SF Pl Gen => x + "Chrystianów";
-      SF Pl Dat => x + "Chrystianom";
-      SF Pl Acc => x + "Chrystianów";
-      SF Pl Instr => x + "Chrystianami";
-      SF Pl Loc => x + "Chrystianach";
-      SF Pl Voc => x + "Chrystianowie"
-    };
-
-    oper mkNTable0226: Str -> SubstForm => Str; --%
-    oper mkNTable0226 lexem = 
-      let x = Predef.tk 7 lexem in
-    table { 
-      SF Sg Nom => x + "chudoba";
-      SF Sg Gen => x + "chudoby";
-      SF Sg Dat => x + "chudobie";
-      SF Sg Acc => x + "chudobę";
-      SF Sg Instr => x + "chudobą";
-      SF Sg Loc => x + "chudobie";
-      SF Sg Voc => x + "chudobo";
-      SF Pl Nom => x + "Chudobowie";
-      SF Pl Gen => x + "Chudobów";
-      SF Pl Dat => x + "chudobom";
-      SF Pl Acc => x + "Chudobów";
-      SF Pl Instr => x + "chudobami";
-      SF Pl Loc => x + "chudobach";
-      SF Pl Voc => x + "Chudobowie"
-    };
-
-    oper mkNTable0227: Str -> SubstForm => Str; --%
-    oper mkNTable0227 lexem = 
-      let x = Predef.tk 1 lexem in
-    table { 
-      SF Sg Nom => x + "ł";
-      SF Sg Gen => x + "łu";
-      SF Sg Dat => x + "łowi";
-      SF Sg Acc => x + "ł";
-      SF Sg Instr => x + "łem";
-      SF Sg Loc => x + "le";
-      SF Sg Voc => x + "le";
-      SF Pl Nom => x + "ły";
-      SF Pl Gen => x + "łów";
-      SF Pl Dat => x + "łom";
-      SF Pl Acc => x + "ły";
-      SF Pl Instr => x + "łami";
-      SF Pl Loc => x + "łach";
-      SF Pl Voc => x + "ły"
-    };
-
-    oper mkNTable0228: Str -> SubstForm => Str; --%
-    oper mkNTable0228 lexem = 
-      let x = Predef.tk 2 lexem in
-    table { 
-      SF Sg Nom => x + "óg";
-      SF Sg Gen => x + "oga";
-      SF Sg Dat => x + "ogowi";
-      SF Sg Acc => x + "oga";
-      SF Sg Instr => x + "ogiem";
-      SF Sg Loc => x + "ogu";
-      SF Sg Voc => x + "ogu";
-      SF Pl Nom => x + "ogowie";
-      SF Pl Gen => x + "ogów";
-      SF Pl Dat => x + "ogom";
-      SF Pl Acc => x + "ogów";
-      SF Pl Instr => x + "ogami";
-      SF Pl Loc => x + "ogach";
-      SF Pl Voc => x + "ogowie"
-    };
-
-    oper mkNTable0231: Str -> SubstForm => Str; --%
-    oper mkNTable0231 lexem = 
-      let x = Predef.tk 6 lexem in
-    table { 
-      SF Sg Nom => x + "cieśla";
-      SF Sg Gen => x + "cieśli";
-      SF Sg Dat => x + "cieśli";
-      SF Sg Acc => x + "cieślę";
-      SF Sg Instr => x + "cieślą";
-      SF Sg Loc => x + "cieśli";
-      SF Sg Voc => x + "cieślo";
-      SF Pl Nom => x + "Cieślowie";
-      SF Pl Gen => x + "cieślów";
-      SF Pl Dat => x + "cieślom";
-      SF Pl Acc => x + "cieślów";
-      SF Pl Instr => x + "cieślami";
-      SF Pl Loc => x + "cieślach";
-      SF Pl Voc => x + "Cieślowie"
-    };
-
-    oper mkNTable0232: Str -> SubstForm => Str; --%
-    oper mkNTable0232 lexem = 
-      let x = Predef.tk 9 lexem in
-    table { 
-      SF Sg Nom => x + "ciećwierz";
-      SF Sg Gen => x + "ciećwierza";
-      SF Sg Dat => x + "ciećwierzowi";
-      SF Sg Acc => x + "ciećwierza";
-      SF Sg Instr => x + "ciećwierzem";
-      SF Sg Loc => x + "ciećwierzu";
-      SF Sg Voc => x + "ciećwierzu";
-      SF Pl Nom => x + "Ciećwierzowie";
-      SF Pl Gen => x + "ciećwierzów";
-      SF Pl Dat => x + "ciećwierzom";
-      SF Pl Acc => x + "ciećwierzów";
-      SF Pl Instr => x + "ciećwierzami";
-      SF Pl Loc => x + "ciećwierzach";
-      SF Pl Voc => x + "Ciećwierzowie"
-    };
-
-    oper mkNTable0233: Str -> SubstForm => Str; --%
-    oper mkNTable0233 lexem = 
-      let x = Predef.tk 6 lexem in
-    table { 
-      SF Sg Nom => x + "ciołek";
-      SF Sg Gen => x + "ciołka";
-      SF Sg Dat => x + "ciołkowi";
-      SF Sg Acc => x + "ciołka";
-      SF Sg Instr => x + "ciołkiem";
-      SF Sg Loc => x + "ciołku";
-      SF Sg Voc => x + "ciołku";
-      SF Pl Nom => x + "Ciołkowie";
-      SF Pl Gen => x + "ciołków";
-      SF Pl Dat => x + "ciołkom";
-      SF Pl Acc => x + "ciołków";
-      SF Pl Instr => x + "ciołkami";
-      SF Pl Loc => x + "ciołkach";
-      SF Pl Voc => x + "Ciołkowie"
-    };
-
-    oper mkNTable0236: Str -> SubstForm => Str; --%
-    oper mkNTable0236 lexem = 
-      let x = Predef.tk 0 lexem in
-    table { 
-      SF Sg Nom => x + "";
-      SF Sg Gen => x + "a";
-      SF Sg Dat => x + "owi";
-      SF Sg Acc => x + "a";
-      SF Sg Instr => x + "em";
-      SF Sg Loc => x + "ie";
-      SF Sg Voc => x + "ie";
-      SF Pl Nom => x + "ie";
-      SF Pl Gen => x + "ów";
-      SF Pl Dat => x + "om";
-      SF Pl Acc => x + "ów";
-      SF Pl Instr => x + "ami";
-      SF Pl Loc => x + "ach";
-      SF Pl Voc => x + "ie"
-    };
-
-    oper mkNTable0237: Str -> SubstForm => Str; --%
-    oper mkNTable0237 lexem = 
-      let x = Predef.tk 8 lexem in
-    table { 
-      SF Sg Nom => x + "cyganiak";
-      SF Sg Gen => x + "cyganiaka";
-      SF Sg Dat => x + "cyganiakowi";
-      SF Sg Acc => x + "cyganiaka";
-      SF Sg Instr => x + "cyganiakiem";
-      SF Sg Loc => x + "cyganiaku";
-      SF Sg Voc => x + "cyganiaku";
-      SF Pl Nom => x + "Cyganiacy";
-      SF Pl Gen => x + "cyganiaków";
-      SF Pl Dat => x + "cyganiakom";
-      SF Pl Acc => x + "cyganiaków";
-      SF Pl Instr => x + "cyganiakami";
-      SF Pl Loc => x + "cyganiakach";
-      SF Pl Voc => x + "Cyganiacy"
-    };
-
-    oper mkNTable0238: Str -> SubstForm => Str; --%
-    oper mkNTable0238 lexem = 
-      let x = Predef.tk 3 lexem in
-    table { 
-      SF Sg Nom => x + "cha";
-      SF Sg Gen => x + "chy";
-      SF Sg Dat => x + "sze";
-      SF Sg Acc => x + "chę";
-      SF Sg Instr => x + "chą";
-      SF Sg Loc => x + "sze";
-      SF Sg Voc => x + "cho";
-      SF Pl Nom => x + "chy";
-      SF Pl Gen => x + "ch";
-      SF Pl Dat => x + "chom";
-      SF Pl Acc => x + "chy";
-      SF Pl Instr => x + "chami";
-      SF Pl Loc => x + "chach";
-      SF Pl Voc => x + "chy"
-    };
-
-    oper mkNTable0239: Str -> SubstForm => Str; --%
-    oper mkNTable0239 lexem = 
-      let x = Predef.tk 2 lexem in
-    table { 
-      SF Sg Nom => x + "ko";
-      SF Sg Gen => x + "ka";
-      SF Sg Dat => x + "ku";
-      SF Sg Acc => x + "ko";
-      SF Sg Instr => x + "kiem";
-      SF Sg Loc => x + "ku";
-      SF Sg Voc => x + "ko";
-      SF Pl Nom => x + "ka";
-      SF Pl Gen => x + "ek";
-      SF Pl Dat => x + "kom";
-      SF Pl Acc => x + "ka";
-      SF Pl Instr => x + "kami";
-      SF Pl Loc => x + "kach";
-      SF Pl Voc => x + "ka"
-    };
-
-    oper mkNTable0240: Str -> SubstForm => Str; --%
-    oper mkNTable0240 lexem = 
-      let x = Predef.tk 5 lexem in
-    table { 
-      SF Sg Nom => x + "Czaja";
-      SF Sg Gen => x + "Czai";
-      SF Sg Dat => x + "Czai";
-      SF Sg Acc => x + "Czaję";
-      SF Sg Instr => x + "Czają";
-      SF Sg Loc => x + "Czai";
-      SF Sg Voc => x + "Czajo";
-      SF Pl Nom => x + "Czajowie";
-      SF Pl Gen => x + "czajów";
-      SF Pl Dat => x + "czajom";
-      SF Pl Acc => x + "czajów";
-      SF Pl Instr => x + "czajami";
-      SF Pl Loc => x + "czajach";
-      SF Pl Voc => x + "Czajowie"
-    };
-
-    oper mkNTable0241: Str -> SubstForm => Str; --%
-    oper mkNTable0241 lexem = 
-      let x = Predef.tk 6 lexem in
-    table { 
-      SF Sg Nom => x + "czajka";
-      SF Sg Gen => x + "czajki";
-      SF Sg Dat => x + "czajce";
-      SF Sg Acc => x + "czajkę";
-      SF Sg Instr => x + "czajką";
-      SF Sg Loc => x + "czajce";
-      SF Sg Voc => x + "czajko";
-      SF Pl Nom => x + "Czajkowie";
-      SF Pl Gen => x + "Czajków";
-      SF Pl Dat => x + "czajkom";
-      SF Pl Acc => x + "Czajków";
-      SF Pl Instr => x + "czajkami";
-      SF Pl Loc => x + "czajkach";
-      SF Pl Voc => x + "Czajkowie"
-    };
-
-    oper mkNTable0242: Str -> SubstForm => Str; --%
-    oper mkNTable0242 lexem = 
-      let x = Predef.tk 6 lexem in
-    table { 
-      SF Sg Nom => x + "czapek";
-      SF Sg Gen => x + "czapka";
-      SF Sg Dat => x + "Czapkowi";
-      SF Sg Acc => x + "czapka";
-      SF Sg Instr => x + "Czapkiem";
-      SF Sg Loc => x + "Czapku";
-      SF Sg Voc => x + "Czapku";
-      SF Pl Nom => x + "Czapkowie";
-      SF Pl Gen => x + "Czapków";
-      SF Pl Dat => x + "czapkom";
-      SF Pl Acc => x + "Czapków";
-      SF Pl Instr => x + "czapkami";
-      SF Pl Loc => x + "czapkach";
-      SF Pl Voc => x + "Czapkowie"
-    };
-
-    oper mkNTable0243: Str -> SubstForm => Str; --%
-    oper mkNTable0243 lexem = 
-      let x = Predef.tk 3 lexem in
-    table { 
-      SF Sg Nom => x + "zec";
-      SF Sg Gen => x + "ca";
-      SF Sg Dat => x + "cowi";
-      SF Sg Acc => x + "ca";
-      SF Sg Instr => x + "cem";
-      SF Sg Loc => x + "cu";
-      SF Sg Voc => x + "cze";
-      SF Pl Nom => x + "cy";
-      SF Pl Gen => x + "ców";
-      SF Pl Dat => x + "com";
-      SF Pl Acc => x + "ców";
-      SF Pl Instr => x + "cami";
-      SF Pl Loc => x + "cach";
-      SF Pl Voc => x + "cy"
-    };
-
-    oper mkNTable0244: Str -> SubstForm => Str; --%
-    oper mkNTable0244 lexem = 
-      let x = Predef.tk 1 lexem in
-    table { 
-      SF Sg Nom => x + "ś";
-      SF Sg Gen => x + "sia";
-      SF Sg Dat => x + "siowi";
-      SF Sg Acc => x + "sia";
-      SF Sg Instr => x + "siem";
-      SF Sg Loc => x + "siu";
-      SF Sg Voc => x + "siu";
-      SF Pl Nom => x + "sie";
-      SF Pl Gen => x + "siów";
-      SF Pl Dat => x + "siom";
-      SF Pl Acc => x + "siów";
-      SF Pl Instr => x + "siami";
-      SF Pl Loc => x + "siach";
-      SF Pl Voc => x + "sie"
-    };
-
-    oper mkNTable0245: Str -> SubstForm => Str; --%
-    oper mkNTable0245 lexem = 
-      let x = Predef.tk 2 lexem in
-    table { 
-      SF Sg Nom => x + "ch";
-      SF Sg Gen => x + "cha";
-      SF Sg Dat => x + "chowi";
-      SF Sg Acc => x + "cha";
-      SF Sg Instr => x + "chem";
-      SF Sg Loc => x + "chu";
-      SF Sg Voc => x + "chu";
-      SF Pl Nom => x + "si";
-      SF Pl Gen => x + "chów";
-      SF Pl Dat => x + "chom";
-      SF Pl Acc => x + "chów";
-      SF Pl Instr => x + "chami";
-      SF Pl Loc => x + "chach";
-      SF Pl Voc => x + "si"
-    };
-
-    oper mkNTable0246: Str -> SubstForm => Str; --%
-    oper mkNTable0246 lexem = 
-      let x = Predef.tk 7 lexem in
-    table { 
-      SF Sg Nom => x + "czeczot";
-      SF Sg Gen => x + "czeczota";
-      SF Sg Dat => x + "Czeczotowi";
-      SF Sg Acc => x + "czeczota";
-      SF Sg Instr => x + "Czeczotem";
-      SF Sg Loc => x + "czeczocie";
-      SF Sg Voc => x + "czeczocie";
-      SF Pl Nom => x + "Czeczotowie";
-      SF Pl Gen => x + "Czeczotów";
-      SF Pl Dat => x + "czeczotom";
-      SF Pl Acc => x + "Czeczotów";
-      SF Pl Instr => x + "czeczotami";
-      SF Pl Loc => x + "czeczotach";
-      SF Pl Voc => x + "Czeczotowie"
-    };
-
-    oper mkNTable0247: Str -> SubstForm => Str; --%
-    oper mkNTable0247 lexem = 
-      let x = Predef.tk 8 lexem in
-    table { 
-      SF Sg Nom => x + "czerkies";
-      SF Sg Gen => x + "czerkiesa";
-      SF Sg Dat => x + "czerkiesowi";
-      SF Sg Acc => x + "czerkiesa";
-      SF Sg Instr => x + "czerkiesem";
-      SF Sg Loc => x + "czerkiesie";
-      SF Sg Voc => x + "czerkiesie";
-      SF Pl Nom => x + "Czerkiesi";
-      SF Pl Gen => x + "czerkiesów";
-      SF Pl Dat => x + "czerkiesom";
-      SF Pl Acc => x + "czerkiesów";
-      SF Pl Instr => x + "czerkiesami";
-      SF Pl Loc => x + "czerkiesach";
-      SF Pl Voc => x + "Czerkiesi"
-    };
-
-    oper mkNTable0250: Str -> SubstForm => Str; --%
-    oper mkNTable0250 lexem = 
-      let x = Predef.tk 6 lexem in
-    table { 
-      SF Sg Nom => x + "Czerny";
-      SF Sg Gen => x + "Czernego";
-      SF Sg Dat => x + "Czernemu";
-      SF Sg Acc => x + "Czernego";
-      SF Sg Instr => x + "Czernym";
-      SF Sg Loc => x + "Czernym";
-      SF Sg Voc => x + "Czerny";
-      SF Pl Nom => x + "czerni";
-      SF Pl Gen => x + "Czernych";
-      SF Pl Dat => x + "Czernym";
-      SF Pl Acc => x + "Czernych";
-      SF Pl Instr => x + "Czernymi";
-      SF Pl Loc => x + "Czernych";
-      SF Pl Voc => x + "czerni"
-    };
-
-    oper mkNTable0251: Str -> SubstForm => Str; --%
-    oper mkNTable0251 lexem = 
-      let x = Predef.tk 4 lexem in
-    table { 
-      SF Sg Nom => x + "siek";
-      SF Sg Gen => x + "śka";
-      SF Sg Dat => x + "śkowi";
-      SF Sg Acc => x + "śka";
-      SF Sg Instr => x + "śkiem";
-      SF Sg Loc => x + "śku";
-      SF Sg Voc => x + "śku";
-      SF Pl Nom => x + "śkowie";
-      SF Pl Gen => x + "śków";
-      SF Pl Dat => x + "śkom";
-      SF Pl Acc => x + "śków";
-      SF Pl Instr => x + "śkami";
-      SF Pl Loc => x + "śkach";
-      SF Pl Voc => x + "śkowie"
-    };
-
-    oper mkNTable0252: Str -> SubstForm => Str; --%
-    oper mkNTable0252 lexem = 
-      let x = Predef.tk 1 lexem in
-    table { 
-      SF Sg Nom => x + "o";
-      SF Sg Gen => x + "a";
-      SF Sg Dat => x + "owi";
-      SF Sg Acc => x + "a";
-      SF Sg Instr => x + "em";
-      SF Sg Loc => x + "u";
-      SF Sg Voc => x + "u";
-      SF Pl Nom => x + "owie";
-      SF Pl Gen => x + "ów";
-      SF Pl Dat => x + "om";
-      SF Pl Acc => x + "ów";
-      SF Pl Instr => x + "ami";
-      SF Pl Loc => x + "ach";
-      SF Pl Voc => x + "owie"
-    };
-
-    oper mkNTable0253: Str -> SubstForm => Str; --%
-    oper mkNTable0253 lexem = 
-      let x = Predef.tk 5 lexem in
-    table { 
-      SF Sg Nom => x + "Czuma";
-      SF Sg Gen => x + "czumy";
-      SF Sg Dat => x + "czumie";
-      SF Sg Acc => x + "Czumę";
-      SF Sg Instr => x + "Czumą";
-      SF Sg Loc => x + "czumie";
-      SF Sg Voc => x + "Czumo";
-      SF Pl Nom => x + "Czumowie";
-      SF Pl Gen => x + "czumów";
-      SF Pl Dat => x + "czumom";
-      SF Pl Acc => x + "czumów";
-      SF Pl Instr => x + "czumami";
-      SF Pl Loc => x + "czumach";
-      SF Pl Voc => x + "Czumowie"
-    };
-
-    oper mkNTable0254: Str -> SubstForm => Str; --%
-    oper mkNTable0254 lexem = 
-      let x = Predef.tk 4 lexem in
-    table { 
-      SF Sg Nom => x + "czyż";
-      SF Sg Gen => x + "czyża";
-      SF Sg Dat => x + "czyżowi";
-      SF Sg Acc => x + "czyża";
-      SF Sg Instr => x + "czyżem";
-      SF Sg Loc => x + "czyżu";
-      SF Sg Voc => x + "czyżu";
-      SF Pl Nom => x + "Czyżowie";
-      SF Pl Gen => x + "czyżów";
-      SF Pl Dat => x + "czyżom";
-      SF Pl Acc => x + "czyżów";
-      SF Pl Instr => x + "czyżami";
-      SF Pl Loc => x + "czyżach";
-      SF Pl Voc => x + "Czyżowie"
-    };
-
-    oper mkNTable0256: Str -> SubstForm => Str; --%
-    oper mkNTable0256 lexem = 
-      let x = Predef.tk 7 lexem in
-    table { 
-      SF Sg Nom => x + "daimler";
-      SF Sg Gen => x + "daimlera";
-      SF Sg Dat => x + "daimlerowi";
-      SF Sg Acc => x + "daimlera";
-      SF Sg Instr => x + "daimlerem";
-      SF Sg Loc => x + "daimlerze";
-      SF Sg Voc => x + "daimlerze";
-      SF Pl Nom => x + "Daimlerowie";
-      SF Pl Gen => x + "daimlerów";
-      SF Pl Dat => x + "daimlerom";
-      SF Pl Acc => x + "daimlerów";
-      SF Pl Instr => x + "daimlerami";
-      SF Pl Loc => x + "daimlerach";
-      SF Pl Voc => x + "Daimlerowie"
-    };
-
-    oper mkNTable0258: Str -> SubstForm => Str; --%
-    oper mkNTable0258 lexem = 
-      let x = Predef.tk 4 lexem in
-    table { 
-      SF Sg Nom => x + "dali";
-      SF Sg Gen => x + "Dalego";
-      SF Sg Dat => x + "Dalemu";
-      SF Sg Acc => x + "Dalego";
-      SF Sg Instr => x + "Dalim";
-      SF Sg Loc => x + "Dalim";
-      SF Sg Voc => x + "dali";
-      SF Pl Nom => x + "dali";
-      SF Pl Gen => x + "Dalich";
-      SF Pl Dat => x + "Dalim";
-      SF Pl Acc => x + "Dalich";
-      SF Pl Instr => x + "Dalimi";
-      SF Pl Loc => x + "Dalich";
-      SF Pl Voc => x + "dali"
-    };
-
-    oper mkNTable0259: Str -> SubstForm => Str; --%
-    oper mkNTable0259 lexem = 
-      let x = Predef.tk 12 lexem in
-    table { 
-      SF Sg Nom => x + "dalmatyńczyk";
-      SF Sg Gen => x + "dalmatyńczyka";
-      SF Sg Dat => x + "dalmatyńczykowi";
-      SF Sg Acc => x + "dalmatyńczyka";
-      SF Sg Instr => x + "dalmatyńczykiem";
-      SF Sg Loc => x + "dalmatyńczyku";
-      SF Sg Voc => x + "dalmatyńczyku";
-      SF Pl Nom => x + "Dalmatyńczycy";
-      SF Pl Gen => x + "dalmatyńczyków";
-      SF Pl Dat => x + "dalmatyńczykom";
-      SF Pl Acc => x + "dalmatyńczyków";
-      SF Pl Instr => x + "dalmatyńczykami";
-      SF Pl Loc => x + "dalmatyńczykach";
-      SF Pl Voc => x + "Dalmatyńczycy"
-    };
-
-    oper mkNTable0260: Str -> SubstForm => Str; --%
-    oper mkNTable0260 lexem = 
-      let x = Predef.tk 6 lexem in
-    table { 
-      SF Sg Nom => x + "dalton";
-      SF Sg Gen => x + "daltona";
-      SF Sg Dat => x + "daltonowi";
-      SF Sg Acc => x + "daltona";
-      SF Sg Instr => x + "daltonem";
-      SF Sg Loc => x + "daltonie";
-      SF Sg Voc => x + "daltonie";
-      SF Pl Nom => x + "Daltonowie";
-      SF Pl Gen => x + "daltonów";
-      SF Pl Dat => x + "daltonom";
-      SF Pl Acc => x + "daltonów";
-      SF Pl Instr => x + "daltonami";
-      SF Pl Loc => x + "daltonach";
-      SF Pl Voc => x + "Daltonowie"
-    };
-
-    oper mkNTable0261: Str -> SubstForm => Str; --%
-    oper mkNTable0261 lexem = 
-      let x = Predef.tk 5 lexem in
-    table { 
-      SF Sg Nom => x + "danek";
-      SF Sg Gen => x + "danka";
-      SF Sg Dat => x + "Dankowi";
-      SF Sg Acc => x + "danka";
-      SF Sg Instr => x + "dankiem";
-      SF Sg Loc => x + "danku";
-      SF Sg Voc => x + "danku";
-      SF Pl Nom => x + "Dankowie";
-      SF Pl Gen => x + "Danków";
-      SF Pl Dat => x + "dankom";
-      SF Pl Acc => x + "Danków";
-      SF Pl Instr => x + "dankami";
-      SF Pl Loc => x + "dankach";
-      SF Pl Voc => x + "Dankowie"
-    };
-
-    oper mkNTable0262: Str -> SubstForm => Str; --%
-    oper mkNTable0262 lexem = 
-      let x = Predef.tk 5 lexem in
-    table { 
-      SF Sg Nom => x + "dania";
-      SF Sg Gen => x + "Danii";
-      SF Sg Dat => x + "Danii";
-      SF Sg Acc => x + "Danię";
-      SF Sg Instr => x + "danią";
-      SF Sg Loc => x + "Danii";
-      SF Sg Voc => x + "Danio";
-      SF Pl Nom => x + "danie";
-      SF Pl Gen => x + "Danii";
-      SF Pl Dat => x + "daniom";
-      SF Pl Acc => x + "danie";
-      SF Pl Instr => x + "daniami";
-      SF Pl Loc => x + "daniach";
-      SF Pl Voc => x + "danie"
-    };
-
-    oper mkNTable0263: Str -> SubstForm => Str; --%
-    oper mkNTable0263 lexem = 
-      let x = Predef.tk 4 lexem in
-    table { 
-      SF Sg Nom => x + "niec";
-      SF Sg Gen => x + "ńca";
-      SF Sg Dat => x + "ńcowi";
-      SF Sg Acc => x + "ńca";
-      SF Sg Instr => x + "ńcem";
-      SF Sg Loc => x + "ńcu";
-      SF Sg Voc => x + "ńcu";
-      SF Pl Nom => x + "ńcowie";
-      SF Pl Gen => x + "ńców";
-      SF Pl Dat => x + "ńcom";
-      SF Pl Acc => x + "ńców";
-      SF Pl Instr => x + "ńcami";
-      SF Pl Loc => x + "ńcach";
-      SF Pl Voc => x + "ńcowie"
-    };
-
-    oper mkNTable0264: Str -> SubstForm => Str; --%
-    oper mkNTable0264 lexem = 
-      let x = Predef.tk 6 lexem in
-    table { 
-      SF Sg Nom => x + "daniel";
-      SF Sg Gen => x + "daniela";
-      SF Sg Dat => x + "danielowi";
-      SF Sg Acc => x + "daniela";
-      SF Sg Instr => x + "danielem";
-      SF Sg Loc => x + "danielu";
-      SF Sg Voc => x + "danielu";
-      SF Pl Nom => x + "daniele";
-      SF Pl Gen => x + "Danielów";
-      SF Pl Dat => x + "danielom";
-      SF Pl Acc => x + "Danielów";
-      SF Pl Instr => x + "danielami";
-      SF Pl Loc => x + "danielach";
-      SF Pl Voc => x + "daniele"
-    };
-
-    oper mkNTable0265: Str -> SubstForm => Str; --%
-    oper mkNTable0265 lexem = 
-      let x = Predef.tk 7 lexem in
-    table { 
-      SF Sg Nom => x + "daniela";
-      SF Sg Gen => x + "danieli";
-      SF Sg Dat => x + "danieli";
-      SF Sg Acc => x + "Danielę";
-      SF Sg Instr => x + "Danielą";
-      SF Sg Loc => x + "danieli";
-      SF Sg Voc => x + "danielu";
-      SF Pl Nom => x + "daniele";
-      SF Pl Gen => x + "danieli";
-      SF Pl Dat => x + "danielom";
-      SF Pl Acc => x + "daniele";
-      SF Pl Instr => x + "danielami";
-      SF Pl Loc => x + "danielach";
-      SF Pl Voc => x + "daniele"
-    };
-
-    oper mkNTable0266: Str -> SubstForm => Str; --%
-    oper mkNTable0266 lexem = 
-      let x = Predef.tk 5 lexem in
-    table { 
-      SF Sg Nom => x + "danka";
-      SF Sg Gen => x + "Danki";
-      SF Sg Dat => x + "Dance";
-      SF Sg Acc => x + "Dankę";
-      SF Sg Instr => x + "Danką";
-      SF Sg Loc => x + "Dance";
-      SF Sg Voc => x + "danko";
-      SF Pl Nom => x + "Danki";
-      SF Pl Gen => x + "danek";
-      SF Pl Dat => x + "dankom";
-      SF Pl Acc => x + "Danki";
-      SF Pl Instr => x + "dankami";
-      SF Pl Loc => x + "dankach";
-      SF Pl Voc => x + "Danki"
-    };
-
-    oper mkNTable0267: Str -> SubstForm => Str; --%
-    oper mkNTable0267 lexem = 
-      let x = Predef.tk 5 lexem in
-    table { 
-      SF Sg Nom => x + "daria";
-      SF Sg Gen => x + "darii";
-      SF Sg Dat => x + "darii";
-      SF Sg Acc => x + "darię";
-      SF Sg Instr => x + "darią";
-      SF Sg Loc => x + "darii";
-      SF Sg Voc => x + "dario";
-      SF Pl Nom => x + "Darie";
-      SF Pl Gen => x + "darii";
-      SF Pl Dat => x + "Dariom";
-      SF Pl Acc => x + "Darie";
-      SF Pl Instr => x + "Dariami";
-      SF Pl Loc => x + "Dariach";
-      SF Pl Voc => x + "Darie"
-    };
-
-    oper mkNTable0268: Str -> SubstForm => Str; --%
-    oper mkNTable0268 lexem = 
-      let x = Predef.tk 3 lexem in
-    table { 
-      SF Sg Nom => x + "Dec";
-      SF Sg Gen => x + "Deca";
-      SF Sg Dat => x + "Decowi";
-      SF Sg Acc => x + "Deca";
-      SF Sg Instr => x + "Decem";
-      SF Sg Loc => x + "Decu";
-      SF Sg Voc => x + "Decu";
-      SF Pl Nom => x + "dece";
-      SF Pl Gen => x + "Deców";
-      SF Pl Dat => x + "Decom";
-      SF Pl Acc => x + "Deców";
-      SF Pl Instr => x + "Decami";
-      SF Pl Loc => x + "Decach";
-      SF Pl Voc => x + "dece"
-    };
-
-    oper mkNTable0269: Str -> SubstForm => Str; --%
-    oper mkNTable0269 lexem = 
-      let x = Predef.tk 7 lexem in
-    table { 
-      SF Sg Nom => x + "delfina";
-      SF Sg Gen => x + "delfiny";
-      SF Sg Dat => x + "delfinie";
-      SF Sg Acc => x + "Delfinę";
-      SF Sg Instr => x + "Delfiną";
-      SF Sg Loc => x + "delfinie";
-      SF Sg Voc => x + "Delfino";
-      SF Pl Nom => x + "delfiny";
-      SF Pl Gen => x + "delfin";
-      SF Pl Dat => x + "delfinom";
-      SF Pl Acc => x + "delfiny";
-      SF Pl Instr => x + "delfinami";
-      SF Pl Loc => x + "delfinach";
-      SF Pl Voc => x + "delfiny"
-    };
-
-    oper mkNTable0271: Str -> SubstForm => Str; --%
-    oper mkNTable0271 lexem = 
-      let x = Predef.tk 0 lexem in
-    table { 
-      SF Sg Nom => x + "";
-      SF Sg Gen => x + "u";
-      SF Sg Dat => x + "owi";
-      SF Sg Acc => x + "";
-      SF Sg Instr => x + "em";
-      SF Sg Loc => x + "ze";
-      SF Sg Voc => x + "ze";
-      SF Pl Nom => x + "";
-      SF Pl Gen => x + "";
-      SF Pl Dat => x + "";
-      SF Pl Acc => x + "";
-      SF Pl Instr => x + "";
-      SF Pl Loc => x + "";
-      SF Pl Voc => x + ""
-    };
-
-    oper mkNTable0272: Str -> SubstForm => Str; --%
-    oper mkNTable0272 lexem = 
-      let x = Predef.tk 2 lexem in
-    table { 
-      SF Sg Nom => x + "ła";
-      SF Sg Gen => x + "ły";
-      SF Sg Dat => x + "le";
-      SF Sg Acc => x + "łę";
-      SF Sg Instr => x + "łą";
-      SF Sg Loc => x + "le";
-      SF Sg Voc => x + "ło";
-      SF Pl Nom => x + "łowie";
-      SF Pl Gen => x + "łów";
-      SF Pl Dat => x + "łom";
-      SF Pl Acc => x + "łów";
-      SF Pl Instr => x + "łami";
-      SF Pl Loc => x + "łach";
-      SF Pl Voc => x + "łowie"
-    };
-
-    oper mkNTable0273: Str -> SubstForm => Str; --%
-    oper mkNTable0273 lexem = 
-      let x = Predef.tk 9 lexem in
-    table { 
-      SF Sg Nom => x + "dezyderia";
-      SF Sg Gen => x + "Dezyderii";
-      SF Sg Dat => x + "Dezyderii";
-      SF Sg Acc => x + "Dezyderię";
-      SF Sg Instr => x + "Dezyderią";
-      SF Sg Loc => x + "Dezyderii";
-      SF Sg Voc => x + "Dezyderio";
-      SF Pl Nom => x + "Dezyderie";
-      SF Pl Gen => x + "Dezyderii";
-      SF Pl Dat => x + "dezyderiom";
-      SF Pl Acc => x + "Dezyderie";
-      SF Pl Instr => x + "dezyderiami";
-      SF Pl Loc => x + "dezyderiach";
-      SF Pl Voc => x + "Dezyderie"
-    };
-
-    oper mkNTable0274: Str -> SubstForm => Str; --%
-    oper mkNTable0274 lexem = 
-      let x = Predef.tk 5 lexem in
-    table { 
-      SF Sg Nom => x + "Diana";
-      SF Sg Gen => x + "diany";
-      SF Sg Dat => x + "dianie";
-      SF Sg Acc => x + "Dianę";
-      SF Sg Instr => x + "Dianą";
-      SF Sg Loc => x + "dianie";
-      SF Sg Voc => x + "Diano";
-      SF Pl Nom => x + "diany";
-      SF Pl Gen => x + "dian";
-      SF Pl Dat => x + "dianom";
-      SF Pl Acc => x + "diany";
-      SF Pl Instr => x + "dianami";
-      SF Pl Loc => x + "dianach";
-      SF Pl Voc => x + "diany"
-    };
-
-    oper mkNTable0276: Str -> SubstForm => Str; --%
-    oper mkNTable0276 lexem = 
-      let x = Predef.tk 0 lexem in
-    table { 
-      SF Sg Nom => x + "";
-      SF Sg Gen => x + "a";
-      SF Sg Dat => x + "owi";
-      SF Sg Acc => x + "";
-      SF Sg Instr => x + "em";
-      SF Sg Loc => x + "ie";
-      SF Sg Voc => x + "ie";
-      SF Pl Nom => x + "y";
-      SF Pl Gen => x + "ów";
-      SF Pl Dat => x + "om";
-      SF Pl Acc => x + "y";
-      SF Pl Instr => x + "ami";
-      SF Pl Loc => x + "ach";
-      SF Pl Voc => x + "y"
-    };
-
-    oper mkNTable0277: Str -> SubstForm => Str; --%
-    oper mkNTable0277 lexem = 
-      let x = Predef.tk 6 lexem in
-    table { 
-      SF Sg Nom => x + "dobosz";
-      SF Sg Gen => x + "dobosza";
-      SF Sg Dat => x + "doboszowi";
-      SF Sg Acc => x + "dobosza";
-      SF Sg Instr => x + "doboszem";
-      SF Sg Loc => x + "doboszu";
-      SF Sg Voc => x + "doboszu";
-      SF Pl Nom => x + "Doboszowie";
-      SF Pl Gen => x + "doboszów";
-      SF Pl Dat => x + "doboszom";
-      SF Pl Acc => x + "doboszów";
-      SF Pl Instr => x + "doboszami";
-      SF Pl Loc => x + "doboszach";
-      SF Pl Voc => x + "Doboszowie"
-    };
-
-    oper mkNTable0278: Str -> SubstForm => Str; --%
-    oper mkNTable0278 lexem = 
-      let x = Predef.tk 2 lexem in
-    table { 
-      SF Sg Nom => x + "st";
-      SF Sg Gen => x + "sta";
-      SF Sg Dat => x + "stowi";
-      SF Sg Acc => x + "sta";
-      SF Sg Instr => x + "stem";
-      SF Sg Loc => x + "ście";
-      SF Sg Voc => x + "ście";
-      SF Pl Nom => x + "stowie";
-      SF Pl Gen => x + "stów";
-      SF Pl Dat => x + "stom";
-      SF Pl Acc => x + "stów";
-      SF Pl Instr => x + "stami";
-      SF Pl Loc => x + "stach";
-      SF Pl Voc => x + "stowie"
-    };
-
-    oper mkNTable0279: Str -> SubstForm => Str; --%
-    oper mkNTable0279 lexem = 
-      let x = Predef.tk 5 lexem in
-    table { 
-      SF Sg Nom => x + "domek";
-      SF Sg Gen => x + "Domka";
-      SF Sg Dat => x + "domkowi";
-      SF Sg Acc => x + "Domka";
-      SF Sg Instr => x + "domkiem";
-      SF Sg Loc => x + "domku";
-      SF Sg Voc => x + "domku";
-      SF Pl Nom => x + "Domkowie";
-      SF Pl Gen => x + "domków";
-      SF Pl Dat => x + "domkom";
-      SF Pl Acc => x + "domków";
-      SF Pl Instr => x + "domkami";
-      SF Pl Loc => x + "domkach";
-      SF Pl Voc => x + "Domkowie"
-    };
-
-    oper mkNTable0280: Str -> SubstForm => Str; --%
-    oper mkNTable0280 lexem = 
-      let x = Predef.tk 1 lexem in
-    table { 
-      SF Sg Nom => x + "o";
-      SF Sg Gen => x + "o";
-      SF Sg Dat => x + "owi";
-      SF Sg Acc => x + "o";
-      SF Sg Instr => x + "o";
-      SF Sg Loc => x + "u";
-      SF Sg Voc => x + "u";
-      SF Pl Nom => x + "owie";
-      SF Pl Gen => x + "ów";
-      SF Pl Dat => x + "om";
-      SF Pl Acc => x + "ów";
-      SF Pl Instr => x + "o";
-      SF Pl Loc => x + "o";
-      SF Pl Voc => x + "owie"
-    };
-
-    oper mkNTable0281: Str -> SubstForm => Str; --%
-    oper mkNTable0281 lexem = 
-      let x = Predef.tk 5 lexem in
-    table { 
-      SF Sg Nom => x + "Domka";
-      SF Sg Gen => x + "domki";
-      SF Sg Dat => x + "Domce";
-      SF Sg Acc => x + "Domkę";
-      SF Sg Instr => x + "Domką";
-      SF Sg Loc => x + "Domce";
-      SF Sg Voc => x + "Domko";
-      SF Pl Nom => x + "domki";
-      SF Pl Gen => x + "domek";
-      SF Pl Dat => x + "domkom";
-      SF Pl Acc => x + "domki";
-      SF Pl Instr => x + "domkami";
-      SF Pl Loc => x + "domkach";
-      SF Pl Voc => x + "domki"
-    };
-
-    oper mkNTable0282: Str -> SubstForm => Str; --%
-    oper mkNTable0282 lexem = 
-      let x = Predef.tk 3 lexem in
-    table { 
-      SF Sg Nom => x + "don";
-      SF Sg Gen => x + "Donu";
-      SF Sg Dat => x + "donowi";
-      SF Sg Acc => x + "don";
-      SF Sg Instr => x + "donem";
-      SF Sg Loc => x + "donie";
-      SF Sg Voc => x + "donie";
-      SF Pl Nom => x + "dony";
-      SF Pl Gen => x + "donów";
-      SF Pl Dat => x + "donom";
-      SF Pl Acc => x + "dony";
-      SF Pl Instr => x + "donami";
-      SF Pl Loc => x + "donach";
-      SF Pl Voc => x + "dony"
-    };
-
-    oper mkNTable0283: Str -> SubstForm => Str; --%
-    oper mkNTable0283 lexem = 
-      let x = Predef.tk 6 lexem in
-    table { 
-      SF Sg Nom => x + "donald";
-      SF Sg Gen => x + "donalda";
-      SF Sg Dat => x + "donaldowi";
-      SF Sg Acc => x + "donalda";
-      SF Sg Instr => x + "donaldem";
-      SF Sg Loc => x + "donaldzie";
-      SF Sg Voc => x + "donaldzie";
-      SF Pl Nom => x + "Donaldowie";
-      SF Pl Gen => x + "donaldów";
-      SF Pl Dat => x + "donaldom";
-      SF Pl Acc => x + "donaldów";
-      SF Pl Instr => x + "donaldami";
-      SF Pl Loc => x + "donaldach";
-      SF Pl Voc => x + "Donaldowie"
-    };
-
-    oper mkNTable0284: Str -> SubstForm => Str; --%
-    oper mkNTable0284 lexem = 
-      let x = Predef.tk 4 lexem in
-    table { 
-      SF Sg Nom => x + "niec";
-      SF Sg Gen => x + "ńca";
-      SF Sg Dat => x + "ńcowi";
-      SF Sg Acc => x + "ńca";
-      SF Sg Instr => x + "ńcem";
-      SF Sg Loc => x + "ńcu";
-      SF Sg Voc => x + "ńcze";
-      SF Pl Nom => x + "ńcy";
-      SF Pl Gen => x + "ńców";
-      SF Pl Dat => x + "ńcom";
-      SF Pl Acc => x + "ńców";
-      SF Pl Instr => x + "ńcami";
-      SF Pl Loc => x + "ńcach";
-      SF Pl Voc => x + "ńcy"
-    };
-
-    oper mkNTable0285: Str -> SubstForm => Str; --%
-    oper mkNTable0285 lexem = 
-      let x = Predef.tk 7 lexem in
-    table { 
-      SF Sg Nom => x + "douglas";
-      SF Sg Gen => x + "douglasa";
-      SF Sg Dat => x + "douglasowi";
-      SF Sg Acc => x + "douglasa";
-      SF Sg Instr => x + "douglasem";
-      SF Sg Loc => x + "douglasie";
-      SF Sg Voc => x + "douglasie";
-      SF Pl Nom => x + "Douglasowie";
-      SF Pl Gen => x + "douglasów";
-      SF Pl Dat => x + "douglasom";
-      SF Pl Acc => x + "douglasów";
-      SF Pl Instr => x + "douglasami";
-      SF Pl Loc => x + "douglasach";
-      SF Pl Voc => x + "Douglasowie"
-    };
-
-    oper mkNTable0286: Str -> SubstForm => Str; --%
-    oper mkNTable0286 lexem = 
-      let x = Predef.tk 4 lexem in
-    table { 
-      SF Sg Nom => x + "down";
-      SF Sg Gen => x + "downa";
-      SF Sg Dat => x + "downowi";
-      SF Sg Acc => x + "downa";
-      SF Sg Instr => x + "downem";
-      SF Sg Loc => x + "downie";
-      SF Sg Voc => x + "downie";
-      SF Pl Nom => x + "Downowie";
-      SF Pl Gen => x + "downów";
-      SF Pl Dat => x + "downom";
-      SF Pl Acc => x + "downów";
-      SF Pl Instr => x + "downami";
-      SF Pl Loc => x + "downach";
-      SF Pl Voc => x + "Downowie"
-    };
-
-    oper mkNTable0287: Str -> SubstForm => Str; --%
-    oper mkNTable0287 lexem = 
-      let x = Predef.tk 2 lexem in
-    table { 
-      SF Sg Nom => x + "ga";
-      SF Sg Gen => x + "gi";
-      SF Sg Dat => x + "dze";
-      SF Sg Acc => x + "gę";
-      SF Sg Instr => x + "gą";
-      SF Sg Loc => x + "dze";
-      SF Sg Voc => x + "go";
-      SF Pl Nom => x + "gowie";
-      SF Pl Gen => x + "gów";
-      SF Pl Dat => x + "gom";
-      SF Pl Acc => x + "gów";
-      SF Pl Instr => x + "gami";
-      SF Pl Loc => x + "gach";
-      SF Pl Voc => x + "gowie"
-    };
-
-    oper mkNTable0289: Str -> SubstForm => Str; --%
-    oper mkNTable0289 lexem = 
-      let x = Predef.tk 5 lexem in
-    table { 
-      SF Sg Nom => x + "drozd";
-      SF Sg Gen => x + "drozda";
-      SF Sg Dat => x + "drozdowi";
-      SF Sg Acc => x + "drozda";
-      SF Sg Instr => x + "drozdem";
-      SF Sg Loc => x + "droździe";
-      SF Sg Voc => x + "droździe";
-      SF Pl Nom => x + "Drozdowie";
-      SF Pl Gen => x + "drozdów";
-      SF Pl Dat => x + "drozdom";
-      SF Pl Acc => x + "drozdów";
-      SF Pl Instr => x + "drozdami";
-      SF Pl Loc => x + "drozdach";
-      SF Pl Voc => x + "Drozdowie"
-    };
-
-    oper mkNTable0290: Str -> SubstForm => Str; --%
-    oper mkNTable0290 lexem = 
-      let x = Predef.tk 5 lexem in
-    table { 
-      SF Sg Nom => x + "dudek";
-      SF Sg Gen => x + "dudka";
-      SF Sg Dat => x + "dudkowi";
-      SF Sg Acc => x + "dudka";
-      SF Sg Instr => x + "dudkiem";
-      SF Sg Loc => x + "dudku";
-      SF Sg Voc => x + "dudku";
-      SF Pl Nom => x + "Dudkowie";
-      SF Pl Gen => x + "dudków";
-      SF Pl Dat => x + "dudkom";
-      SF Pl Acc => x + "dudków";
-      SF Pl Instr => x + "dudkami";
-      SF Pl Loc => x + "dudkach";
-      SF Pl Voc => x + "Dudkowie"
-    };
-
-    oper mkNTable0294: Str -> SubstForm => Str; --%
-    oper mkNTable0294 lexem = 
-      let x = Predef.tk 8 lexem in
-    table { 
-      SF Sg Nom => x + "dzięcioł";
-      SF Sg Gen => x + "dzięcioła";
-      SF Sg Dat => x + "dzięciołowi";
-      SF Sg Acc => x + "dzięcioła";
-      SF Sg Instr => x + "dzięciołem";
-      SF Sg Loc => x + "dzięciole";
-      SF Sg Voc => x + "dzięciole";
-      SF Pl Nom => x + "Dzięciołowie";
-      SF Pl Gen => x + "dzięciołów";
-      SF Pl Dat => x + "dzięciołom";
-      SF Pl Acc => x + "dzięciołów";
-      SF Pl Instr => x + "dzięciołami";
-      SF Pl Loc => x + "dzięciołach";
-      SF Pl Voc => x + "Dzięciołowie"
-    };
-
-    oper mkNTable0295: Str -> SubstForm => Str; --%
-    oper mkNTable0295 lexem = 
-      let x = Predef.tk 5 lexem in
-    table { 
-      SF Sg Nom => x + "dąbek";
-      SF Sg Gen => x + "dąbka";
-      SF Sg Dat => x + "dąbkowi";
-      SF Sg Acc => x + "dąbka";
-      SF Sg Instr => x + "dąbkiem";
-      SF Sg Loc => x + "dąbku";
-      SF Sg Voc => x + "dąbku";
-      SF Pl Nom => x + "Dąbkowie";
-      SF Pl Gen => x + "dąbków";
-      SF Pl Dat => x + "dąbkom";
-      SF Pl Acc => x + "dąbków";
-      SF Pl Instr => x + "dąbkami";
-      SF Pl Loc => x + "dąbkach";
-      SF Pl Voc => x + "Dąbkowie"
-    };
-
-    oper mkNTable0296: Str -> SubstForm => Str; --%
-    oper mkNTable0296 lexem = 
-      let x = Predef.tk 6 lexem in
-    table { 
-      SF Sg Nom => x + "dębosz";
-      SF Sg Gen => x + "dębosza";
-      SF Sg Dat => x + "dęboszowi";
-      SF Sg Acc => x + "dębosza";
-      SF Sg Instr => x + "dęboszem";
-      SF Sg Loc => x + "dęboszu";
-      SF Sg Voc => x + "dęboszu";
-      SF Pl Nom => x + "Dęboszowie";
-      SF Pl Gen => x + "Dęboszów";
-      SF Pl Dat => x + "dęboszom";
-      SF Pl Acc => x + "Dęboszów";
-      SF Pl Instr => x + "dęboszami";
-      SF Pl Loc => x + "dęboszach";
-      SF Pl Voc => x + "Dęboszowie"
-    };
-
-    oper mkNTable0297: Str -> SubstForm => Str; --%
-    oper mkNTable0297 lexem = 
-      let x = Predef.tk 6 lexem in
-    table { 
-      SF Sg Nom => x + "efraim";
-      SF Sg Gen => x + "efraima";
-      SF Sg Dat => x + "efraimowi";
-      SF Sg Acc => x + "efraima";
-      SF Sg Instr => x + "efraimem";
-      SF Sg Loc => x + "efraimie";
-      SF Sg Voc => x + "efraimie";
-      SF Pl Nom => x + "Efraimowie";
-      SF Pl Gen => x + "efraimów";
-      SF Pl Dat => x + "efraimom";
-      SF Pl Acc => x + "efraimów";
-      SF Pl Instr => x + "efraimami";
-      SF Pl Loc => x + "efraimach";
-      SF Pl Voc => x + "Efraimowie"
-    };
-
-    oper mkNTable0298: Str -> SubstForm => Str; --%
-    oper mkNTable0298 lexem = 
-      let x = Predef.tk 8 lexem in
-    table { 
-      SF Sg Nom => x + "einstein";
-      SF Sg Gen => x + "einsteina";
-      SF Sg Dat => x + "einsteinowi";
-      SF Sg Acc => x + "einsteina";
-      SF Sg Instr => x + "einsteinem";
-      SF Sg Loc => x + "einsteinie";
-      SF Sg Voc => x + "einsteinie";
-      SF Pl Nom => x + "Einsteinowie";
-      SF Pl Gen => x + "einsteinów";
-      SF Pl Dat => x + "einsteinom";
-      SF Pl Acc => x + "einsteinów";
-      SF Pl Instr => x + "einsteinami";
-      SF Pl Loc => x + "einsteinach";
-      SF Pl Voc => x + "Einsteinowie"
-    };
-
-    oper mkNTable0300: Str -> SubstForm => Str; --%
-    oper mkNTable0300 lexem = 
-      let x = Predef.tk 1 lexem in
-    table { 
-      SF Sg Nom => x + "x";
-      SF Sg Gen => x + "ksa";
-      SF Sg Dat => x + "ksowi";
-      SF Sg Acc => x + "ksa";
-      SF Sg Instr => x + "ksem";
-      SF Sg Loc => x + "ksie";
-      SF Sg Voc => x + "ksie";
-      SF Pl Nom => x + "ksowie";
-      SF Pl Gen => x + "ksów";
-      SF Pl Dat => x + "ksom";
-      SF Pl Acc => x + "ksów";
-      SF Pl Instr => x + "ksami";
-      SF Pl Loc => x + "ksach";
-      SF Pl Voc => x + "ksowie"
-    };
-
-    oper mkNTable0301: Str -> SubstForm => Str; --%
-    oper mkNTable0301 lexem = 
-      let x = Predef.tk 6 lexem in
-    table { 
-      SF Sg Nom => x + "Estera";
-      SF Sg Gen => x + "Estery";
-      SF Sg Dat => x + "Esterze";
-      SF Sg Acc => x + "Esterę";
-      SF Sg Instr => x + "Esterą";
-      SF Sg Loc => x + "Esterze";
-      SF Sg Voc => x + "Estero";
-      SF Pl Nom => x + "Estery";
-      SF Pl Gen => x + "ester";
-      SF Pl Dat => x + "Esterom";
-      SF Pl Acc => x + "Estery";
-      SF Pl Instr => x + "Esterami";
-      SF Pl Loc => x + "Esterach";
-      SF Pl Voc => x + "Estery"
-    };
-
-    oper mkNTable0302: Str -> SubstForm => Str; --%
-    oper mkNTable0302 lexem = 
-      let x = Predef.tk 1 lexem in
-    table { 
-      SF Sg Nom => x + "t";
-      SF Sg Gen => x + "tu";
-      SF Sg Dat => x + "towi";
-      SF Sg Acc => x + "t";
-      SF Sg Instr => x + "tem";
-      SF Sg Loc => x + "cie";
-      SF Sg Voc => x + "cie";
-      SF Pl Nom => x + "ty";
-      SF Pl Gen => x + "tów";
-      SF Pl Dat => x + "tom";
-      SF Pl Acc => x + "ty";
-      SF Pl Instr => x + "tami";
-      SF Pl Loc => x + "tach";
-      SF Pl Voc => x + "ty"
-    };
-
-    oper mkNTable0303: Str -> SubstForm => Str; --%
-    oper mkNTable0303 lexem = 
-      let x = Predef.tk 6 lexem in
-    table { 
-      SF Sg Nom => x + "Europa";
-      SF Sg Gen => x + "europy";
-      SF Sg Dat => x + "europie";
-      SF Sg Acc => x + "Europę";
-      SF Sg Instr => x + "Europą";
-      SF Sg Loc => x + "europie";
-      SF Sg Voc => x + "Europo";
-      SF Pl Nom => x + "europy";
-      SF Pl Gen => x + "europ";
-      SF Pl Dat => x + "europom";
-      SF Pl Acc => x + "europy";
-      SF Pl Instr => x + "europami";
-      SF Pl Loc => x + "europach";
-      SF Pl Voc => x + "europy"
-    };
-
-    oper mkNTable0304: Str -> SubstForm => Str; --%
-    oper mkNTable0304 lexem = 
-      let x = Predef.tk 3 lexem in
-    table { 
-      SF Sg Nom => x + "cia";
-      SF Sg Gen => x + "ci";
-      SF Sg Dat => x + "ci";
-      SF Sg Acc => x + "cię";
-      SF Sg Instr => x + "cią";
-      SF Sg Loc => x + "ci";
-      SF Sg Voc => x + "ciu";
-      SF Pl Nom => x + "cie";
-      SF Pl Gen => x + "ć";
-      SF Pl Dat => x + "ciom";
-      SF Pl Acc => x + "cie";
-      SF Pl Instr => x + "ciami";
-      SF Pl Loc => x + "ciach";
-      SF Pl Voc => x + "cie"
-    };
-
-    oper mkNTable0305: Str -> SubstForm => Str; --%
-    oper mkNTable0305 lexem = 
-      let x = Predef.tk 1 lexem in
-    table { 
-      SF Sg Nom => x + "t";
-      SF Sg Gen => x + "ta";
-      SF Sg Dat => x + "towi";
-      SF Sg Acc => x + "ta";
-      SF Sg Instr => x + "tem";
-      SF Sg Loc => x + "cie";
-      SF Sg Voc => x + "cie";
-      SF Pl Nom => x + "ty";
-      SF Pl Gen => x + "tów";
-      SF Pl Dat => x + "tom";
-      SF Pl Acc => x + "ty";
-      SF Pl Instr => x + "tami";
-      SF Pl Loc => x + "tach";
-      SF Pl Voc => x + "ty"
-    };
-
-    oper mkNTable0306: Str -> SubstForm => Str; --%
-    oper mkNTable0306 lexem = 
-      let x = Predef.tk 6 lexem in
-    table { 
-      SF Sg Nom => x + "fabian";
-      SF Sg Gen => x + "Fabiana";
-      SF Sg Dat => x + "Fabianowi";
-      SF Sg Acc => x + "Fabiana";
-      SF Sg Instr => x + "Fabianem";
-      SF Sg Loc => x + "fabianie";
-      SF Sg Voc => x + "fabianie";
-      SF Pl Nom => x + "Fabianowie";
-      SF Pl Gen => x + "fabianów";
-      SF Pl Dat => x + "fabianom";
-      SF Pl Acc => x + "fabianów";
-      SF Pl Instr => x + "fabianami";
-      SF Pl Loc => x + "fabianach";
-      SF Pl Voc => x + "Fabianowie"
-    };
-
-    oper mkNTable0307: Str -> SubstForm => Str; --%
-    oper mkNTable0307 lexem = 
-      let x = Predef.tk 4 lexem in
-    table { 
-      SF Sg Nom => x + "Falk";
-      SF Sg Gen => x + "falka";
-      SF Sg Dat => x + "Falkowi";
-      SF Sg Acc => x + "falka";
-      SF Sg Instr => x + "Falkiem";
-      SF Sg Loc => x + "Falku";
-      SF Sg Voc => x + "Falku";
-      SF Pl Nom => x + "Falkowie";
-      SF Pl Gen => x + "Falków";
-      SF Pl Dat => x + "falkom";
-      SF Pl Acc => x + "Falków";
-      SF Pl Instr => x + "falkami";
-      SF Pl Loc => x + "falkach";
-      SF Pl Voc => x + "Falkowie"
-    };
-
-    oper mkNTable0309: Str -> SubstForm => Str; --%
-    oper mkNTable0309 lexem = 
-      let x = Predef.tk 5 lexem in
-    table { 
-      SF Sg Nom => x + "fałat";
-      SF Sg Gen => x + "fałata";
-      SF Sg Dat => x + "fałatowi";
-      SF Sg Acc => x + "fałata";
-      SF Sg Instr => x + "fałatem";
-      SF Sg Loc => x + "fałacie";
-      SF Sg Voc => x + "fałacie";
-      SF Pl Nom => x + "Fałatowie";
-      SF Pl Gen => x + "fałatów";
-      SF Pl Dat => x + "fałatom";
-      SF Pl Acc => x + "fałatów";
-      SF Pl Instr => x + "fałatami";
-      SF Pl Loc => x + "fałatach";
-      SF Pl Voc => x + "Fałatowie"
-    };
-
-    oper mkNTable0310: Str -> SubstForm => Str; --%
-    oper mkNTable0310 lexem = 
-      let x = Predef.tk 8 lexem in
-    table { 
-      SF Sg Nom => x + "Felicjan";
-      SF Sg Gen => x + "Felicjana";
-      SF Sg Dat => x + "Felicjanowi";
-      SF Sg Acc => x + "Felicjana";
-      SF Sg Instr => x + "Felicjanem";
-      SF Sg Loc => x + "felicjanie";
-      SF Sg Voc => x + "felicjanie";
-      SF Pl Nom => x + "Felicjanowie";
-      SF Pl Gen => x + "felicjanów";
-      SF Pl Dat => x + "felicjanom";
-      SF Pl Acc => x + "felicjanów";
-      SF Pl Instr => x + "felicjanami";
-      SF Pl Loc => x + "felicjanach";
-      SF Pl Voc => x + "Felicjanowie"
-    };
-
-    oper mkNTable0311: Str -> SubstForm => Str; --%
-    oper mkNTable0311 lexem = 
-      let x = Predef.tk 6 lexem in
-    table { 
-      SF Sg Nom => x + "figura";
-      SF Sg Gen => x + "figury";
-      SF Sg Dat => x + "figurze";
-      SF Sg Acc => x + "figurę";
-      SF Sg Instr => x + "figurą";
-      SF Sg Loc => x + "figurze";
-      SF Sg Voc => x + "figuro";
-      SF Pl Nom => x + "Figurowie";
-      SF Pl Gen => x + "Figurów";
-      SF Pl Dat => x + "figurom";
-      SF Pl Acc => x + "Figurów";
-      SF Pl Instr => x + "figurami";
-      SF Pl Loc => x + "figurach";
-      SF Pl Voc => x + "Figurowie"
-    };
-
-    oper mkNTable0312: Str -> SubstForm => Str; --%
-    oper mkNTable0312 lexem = 
-      let x = Predef.tk 3 lexem in
-    table { 
-      SF Sg Nom => x + "fil";
-      SF Sg Gen => x + "fila";
-      SF Sg Dat => x + "filowi";
-      SF Sg Acc => x + "fila";
-      SF Sg Instr => x + "filem";
-      SF Sg Loc => x + "filu";
-      SF Sg Voc => x + "filu";
-      SF Pl Nom => x + "Filowie";
-      SF Pl Gen => x + "filów";
-      SF Pl Dat => x + "filom";
-      SF Pl Acc => x + "filów";
-      SF Pl Instr => x + "filami";
-      SF Pl Loc => x + "filach";
-      SF Pl Voc => x + "Filowie"
-    };
-
-    oper mkNTable0313: Str -> SubstForm => Str; --%
-    oper mkNTable0313 lexem = 
-      let x = Predef.tk 5 lexem in
-    table { 
-      SF Sg Nom => x + "filip";
-      SF Sg Gen => x + "filipa";
-      SF Sg Dat => x + "filipowi";
-      SF Sg Acc => x + "filipa";
-      SF Sg Instr => x + "filipem";
-      SF Sg Loc => x + "filipie";
-      SF Sg Voc => x + "filipie";
-      SF Pl Nom => x + "Filipowie";
-      SF Pl Gen => x + "filipów";
-      SF Pl Dat => x + "filipom";
-      SF Pl Acc => x + "filipów";
-      SF Pl Instr => x + "filipami";
-      SF Pl Loc => x + "filipach";
-      SF Pl Voc => x + "Filipowie"
-    };
-
-    oper mkNTable0314: Str -> SubstForm => Str; --%
-    oper mkNTable0314 lexem = 
-      let x = Predef.tk 6 lexem in
-    table { 
-      SF Sg Nom => x + "filipa";
-      SF Sg Gen => x + "filipy";
-      SF Sg Dat => x + "filipie";
-      SF Sg Acc => x + "Filipę";
-      SF Sg Instr => x + "Filipą";
-      SF Sg Loc => x + "filipie";
-      SF Sg Voc => x + "Filipo";
-      SF Pl Nom => x + "filipy";
-      SF Pl Gen => x + "filip";
-      SF Pl Dat => x + "filipom";
-      SF Pl Acc => x + "filipy";
-      SF Pl Instr => x + "filipami";
-      SF Pl Loc => x + "filipach";
-      SF Pl Voc => x + "filipy"
-    };
-
-    oper mkNTable0315: Str -> SubstForm => Str; --%
-    oper mkNTable0315 lexem = 
-      let x = Predef.tk 8 lexem in
-    table { 
-      SF Sg Nom => x + "filipina";
-      SF Sg Gen => x + "filipiny";
-      SF Sg Dat => x + "filipinie";
-      SF Sg Acc => x + "Filipinę";
-      SF Sg Instr => x + "Filipiną";
-      SF Sg Loc => x + "filipinie";
-      SF Sg Voc => x + "Filipino";
-      SF Pl Nom => x + "filipiny";
-      SF Pl Gen => x + "filipin";
-      SF Pl Dat => x + "filipinom";
-      SF Pl Acc => x + "filipiny";
-      SF Pl Instr => x + "filipinami";
-      SF Pl Loc => x + "filipinach";
-      SF Pl Voc => x + "filipiny"
-    };
-
-    oper mkNTable0316: Str -> SubstForm => Str; --%
-    oper mkNTable0316 lexem = 
-      let x = Predef.tk 11 lexem in
-    table { 
-      SF Sg Nom => x + "filipińczyk";
-      SF Sg Gen => x + "filipińczyka";
-      SF Sg Dat => x + "filipińczykowi";
-      SF Sg Acc => x + "filipińczyka";
-      SF Sg Instr => x + "filipińczykiem";
-      SF Sg Loc => x + "filipińczyku";
-      SF Sg Voc => x + "filipińczyku";
-      SF Pl Nom => x + "Filipińczycy";
-      SF Pl Gen => x + "filipińczyków";
-      SF Pl Dat => x + "filipińczykom";
-      SF Pl Acc => x + "filipińczyków";
-      SF Pl Instr => x + "filipińczykami";
-      SF Pl Loc => x + "filipińczykach";
-      SF Pl Voc => x + "Filipińczycy"
-    };
-
-    oper mkNTable0318: Str -> SubstForm => Str; --%
-    oper mkNTable0318 lexem = 
-      let x = Predef.tk 3 lexem in
-    table { 
-      SF Sg Nom => x + "fin";
-      SF Sg Gen => x + "fina";
-      SF Sg Dat => x + "finowi";
-      SF Sg Acc => x + "fina";
-      SF Sg Instr => x + "finem";
-      SF Sg Loc => x + "finie";
-      SF Sg Voc => x + "finie";
-      SF Pl Nom => x + "Finowie";
-      SF Pl Gen => x + "finów";
-      SF Pl Dat => x + "finom";
-      SF Pl Acc => x + "finów";
-      SF Pl Instr => x + "finami";
-      SF Pl Loc => x + "finach";
-      SF Pl Voc => x + "Finowie"
-    };
-
-    oper mkNTable0319: Str -> SubstForm => Str; --%
-    oper mkNTable0319 lexem = 
-      let x = Predef.tk 5 lexem in
-    table { 
-      SF Sg Nom => x + "firko";
-      SF Sg Gen => x + "firki";
-      SF Sg Dat => x + "firce";
-      SF Sg Acc => x + "firkę";
-      SF Sg Instr => x + "firką";
-      SF Sg Loc => x + "firce";
-      SF Sg Voc => x + "firko";
-      SF Pl Nom => x + "Firkowie";
-      SF Pl Gen => x + "Firków";
-      SF Pl Dat => x + "firkom";
-      SF Pl Acc => x + "Firków";
-      SF Pl Instr => x + "firkami";
-      SF Pl Loc => x + "firkach";
-      SF Pl Voc => x + "Firkowie"
-    };
-
-    oper mkNTable0320: Str -> SubstForm => Str; --%
-    oper mkNTable0320 lexem = 
-      let x = Predef.tk 6 lexem in
-    table { 
-      SF Sg Nom => x + "firlej";
-      SF Sg Gen => x + "firleja";
-      SF Sg Dat => x + "firlejowi";
-      SF Sg Acc => x + "firleja";
-      SF Sg Instr => x + "firlejem";
-      SF Sg Loc => x + "firleju";
-      SF Sg Voc => x + "firleju";
-      SF Pl Nom => x + "Firlejowie";
-      SF Pl Gen => x + "firlejów";
-      SF Pl Dat => x + "firlejom";
-      SF Pl Acc => x + "firlejów";
-      SF Pl Instr => x + "firlejami";
-      SF Pl Loc => x + "firlejach";
-      SF Pl Voc => x + "Firlejowie"
-    };
-
-    oper mkNTable0321: Str -> SubstForm => Str; --%
-    oper mkNTable0321 lexem = 
-      let x = Predef.tk 7 lexem in
-    table { 
-      SF Sg Nom => x + "flamand";
-      SF Sg Gen => x + "flamanda";
-      SF Sg Dat => x + "flamandowi";
-      SF Sg Acc => x + "flamanda";
-      SF Sg Instr => x + "flamandem";
-      SF Sg Loc => x + "flamandzie";
-      SF Sg Voc => x + "flamandzie";
-      SF Pl Nom => x + "Flamandowie";
-      SF Pl Gen => x + "flamandów";
-      SF Pl Dat => x + "flamandom";
-      SF Pl Acc => x + "flamandów";
-      SF Pl Instr => x + "flamandami";
-      SF Pl Loc => x + "flamandach";
-      SF Pl Voc => x + "Flamandowie"
-    };
-
-    oper mkNTable0322: Str -> SubstForm => Str; --%
-    oper mkNTable0322 lexem = 
-      let x = Predef.tk 4 lexem in
-    table { 
-      SF Sg Nom => x + "ford";
-      SF Sg Gen => x + "forda";
-      SF Sg Dat => x + "fordowi";
-      SF Sg Acc => x + "forda";
-      SF Sg Instr => x + "fordem";
-      SF Sg Loc => x + "fordzie";
-      SF Sg Voc => x + "fordzie";
-      SF Pl Nom => x + "Fordowie";
-      SF Pl Gen => x + "fordów";
-      SF Pl Dat => x + "fordom";
-      SF Pl Acc => x + "fordów";
-      SF Pl Instr => x + "fordami";
-      SF Pl Loc => x + "fordach";
-      SF Pl Voc => x + "Fordowie"
-    };
-
-    oper mkNTable0323: Str -> SubstForm => Str; --%
-    oper mkNTable0323 lexem = 
-      let x = Predef.tk 2 lexem in
-    table { 
-      SF Sg Nom => x + "th";
-      SF Sg Gen => x + "tha";
-      SF Sg Dat => x + "thowi";
-      SF Sg Acc => x + "tha";
-      SF Sg Instr => x + "them";
-      SF Sg Loc => x + "cie";
-      SF Sg Voc => x + "cie";
-      SF Pl Nom => x + "thowie";
-      SF Pl Gen => x + "thów";
-      SF Pl Dat => x + "thom";
-      SF Pl Acc => x + "thów";
-      SF Pl Instr => x + "thami";
-      SF Pl Loc => x + "thach";
-      SF Pl Voc => x + "thowie"
-    };
-
-    oper mkNTable0324: Str -> SubstForm => Str; --%
-    oper mkNTable0324 lexem = 
-      let x = Predef.tk 9 lexem in
-    table { 
-      SF Sg Nom => x + "fortunata";
-      SF Sg Gen => x + "fortunaty";
-      SF Sg Dat => x + "fortunacie";
-      SF Sg Acc => x + "Fortunatę";
-      SF Sg Instr => x + "Fortunatą";
-      SF Sg Loc => x + "fortunacie";
-      SF Sg Voc => x + "Fortunato";
-      SF Pl Nom => x + "fortunaty";
-      SF Pl Gen => x + "fortunat";
-      SF Pl Dat => x + "fortunatom";
-      SF Pl Acc => x + "fortunaty";
-      SF Pl Instr => x + "fortunatami";
-      SF Pl Loc => x + "fortunatach";
-      SF Pl Voc => x + "fortunaty"
-    };
-
-    oper mkNTable0325: Str -> SubstForm => Str; --%
-    oper mkNTable0325 lexem = 
-      let x = Predef.tk 2 lexem in
-    table { 
-      SF Sg Nom => x + "co";
-      SF Sg Gen => x + "ca";
-      SF Sg Dat => x + "cowi";
-      SF Sg Acc => x + "ca";
-      SF Sg Instr => x + "kiem";
-      SF Sg Loc => x + "cu";
-      SF Sg Voc => x + "co";
-      SF Pl Nom => x + "cowie";
-      SF Pl Gen => x + "ców";
-      SF Pl Dat => x + "com";
-      SF Pl Acc => x + "ców";
-      SF Pl Instr => x + "cami";
-      SF Pl Loc => x + "cach";
-      SF Pl Voc => x + "cowie"
-    };
-
-    oper mkNTable0326: Str -> SubstForm => Str; --%
-    oper mkNTable0326 lexem = 
-      let x = Predef.tk 7 lexem in
-    table { 
-      SF Sg Nom => x + "francuz";
-      SF Sg Gen => x + "francuza";
-      SF Sg Dat => x + "francuzowi";
-      SF Sg Acc => x + "francuza";
-      SF Sg Instr => x + "francuzem";
-      SF Sg Loc => x + "francuzie";
-      SF Sg Voc => x + "francuzie";
-      SF Pl Nom => x + "Francuzi";
-      SF Pl Gen => x + "francuzów";
-      SF Pl Dat => x + "francuzom";
-      SF Pl Acc => x + "francuzów";
-      SF Pl Instr => x + "francuzami";
-      SF Pl Loc => x + "francuzach";
-      SF Pl Voc => x + "Francuzi"
-    };
-
-    oper mkNTable0327: Str -> SubstForm => Str; --%
-    oper mkNTable0327 lexem = 
-      let x = Predef.tk 6 lexem in
-    table { 
-      SF Sg Nom => x + "Franek";
-      SF Sg Gen => x + "franka";
-      SF Sg Dat => x + "frankowi";
-      SF Sg Acc => x + "franka";
-      SF Sg Instr => x + "frankiem";
-      SF Sg Loc => x + "franku";
-      SF Sg Voc => x + "franku";
-      SF Pl Nom => x + "Frankowie";
-      SF Pl Gen => x + "franków";
-      SF Pl Dat => x + "frankom";
-      SF Pl Acc => x + "franków";
-      SF Pl Instr => x + "frankami";
-      SF Pl Loc => x + "frankach";
-      SF Pl Voc => x + "Frankowie"
-    };
-
-    oper mkNTable0328: Str -> SubstForm => Str; --%
-    oper mkNTable0328 lexem = 
-      let x = Predef.tk 5 lexem in
-    table { 
-      SF Sg Nom => x + "frank";
-      SF Sg Gen => x + "franka";
-      SF Sg Dat => x + "frankowi";
-      SF Sg Acc => x + "franka";
-      SF Sg Instr => x + "frankiem";
-      SF Sg Loc => x + "franku";
-      SF Sg Voc => x + "franku";
-      SF Pl Nom => x + "Frankowie";
-      SF Pl Gen => x + "franków";
-      SF Pl Dat => x + "frankom";
-      SF Pl Acc => x + "franków";
-      SF Pl Instr => x + "frankami";
-      SF Pl Loc => x + "frankach";
-      SF Pl Voc => x + "Frankowie"
-    };
-
-    oper mkNTable0329: Str -> SubstForm => Str; --%
-    oper mkNTable0329 lexem = 
-      let x = Predef.tk 8 lexem in
-    table { 
-      SF Sg Nom => x + "franklin";
-      SF Sg Gen => x + "franklina";
-      SF Sg Dat => x + "franklinowi";
-      SF Sg Acc => x + "franklina";
-      SF Sg Instr => x + "franklinem";
-      SF Sg Loc => x + "franklinie";
-      SF Sg Voc => x + "franklinie";
-      SF Pl Nom => x + "Franklinowie";
-      SF Pl Gen => x + "franklinów";
-      SF Pl Dat => x + "franklinom";
-      SF Pl Acc => x + "franklinów";
-      SF Pl Instr => x + "franklinami";
-      SF Pl Loc => x + "franklinach";
-      SF Pl Voc => x + "Franklinowie"
-    };
-
-    oper mkNTable0330: Str -> SubstForm => Str; --%
-    oper mkNTable0330 lexem = 
-      let x = Predef.tk 1 lexem in
-    table { 
-      SF Sg Nom => x + "o";
-      SF Sg Gen => x + "y";
-      SF Sg Dat => x + "ze";
-      SF Sg Acc => x + "ę";
-      SF Sg Instr => x + "ą";
-      SF Sg Loc => x + "ze";
-      SF Sg Voc => x + "o";
-      SF Pl Nom => x + "owie";
-      SF Pl Gen => x + "ów";
-      SF Pl Dat => x + "om";
-      SF Pl Acc => x + "ów";
-      SF Pl Instr => x + "ami";
-      SF Pl Loc => x + "ach";
-      SF Pl Voc => x + "owie"
-    };
-
-    oper mkNTable0331: Str -> SubstForm => Str; --%
-    oper mkNTable0331 lexem = 
-      let x = Predef.tk 4 lexem in
-    table { 
-      SF Sg Nom => x + "fryz";
-      SF Sg Gen => x + "fryza";
-      SF Sg Dat => x + "fryzowi";
-      SF Sg Acc => x + "fryza";
-      SF Sg Instr => x + "fryzem";
-      SF Sg Loc => x + "fryzie";
-      SF Sg Voc => x + "fryzie";
-      SF Pl Nom => x + "Fryzowie";
-      SF Pl Gen => x + "fryzów";
-      SF Pl Dat => x + "fryzom";
-      SF Pl Acc => x + "fryzów";
-      SF Pl Instr => x + "fryzami";
-      SF Pl Loc => x + "fryzach";
-      SF Pl Voc => x + "Fryzowie"
-    };
-
-    oper mkNTable0332: Str -> SubstForm => Str; --%
-    oper mkNTable0332 lexem = 
-      let x = Predef.tk 2 lexem in
-    table { 
-      SF Sg Nom => x + "ja";
-      SF Sg Gen => x + "i";
-      SF Sg Dat => x + "i";
-      SF Sg Acc => x + "ję";
-      SF Sg Instr => x + "ją";
-      SF Sg Loc => x + "i";
-      SF Sg Voc => x + "jo";
-      SF Pl Nom => x + "je";
-      SF Pl Gen => x + "j";
-      SF Pl Dat => x + "jom";
-      SF Pl Acc => x + "je";
-      SF Pl Instr => x + "jami";
-      SF Pl Loc => x + "jach";
-      SF Pl Voc => x + "je"
-    };
-
-    oper mkNTable0333: Str -> SubstForm => Str; --%
-    oper mkNTable0333 lexem = 
-      let x = Predef.tk 5 lexem in
-    table { 
-      SF Sg Nom => x + "gajda";
-      SF Sg Gen => x + "gajdy";
-      SF Sg Dat => x + "gajdzie";
-      SF Sg Acc => x + "gajdę";
-      SF Sg Instr => x + "gajdą";
-      SF Sg Loc => x + "gajdzie";
-      SF Sg Voc => x + "gajdo";
-      SF Pl Nom => x + "Gajdowie";
-      SF Pl Gen => x + "Gajdów";
-      SF Pl Dat => x + "gajdom";
-      SF Pl Acc => x + "Gajdów";
-      SF Pl Instr => x + "gajdami";
-      SF Pl Loc => x + "gajdach";
-      SF Pl Voc => x + "Gajdowie"
-    };
-
-    oper mkNTable0334: Str -> SubstForm => Str; --%
-    oper mkNTable0334 lexem = 
-      let x = Predef.tk 4 lexem in
-    table { 
-      SF Sg Nom => x + "gama";
-      SF Sg Gen => x + "gamy";
-      SF Sg Dat => x + "gamie";
-      SF Sg Acc => x + "gamę";
-      SF Sg Instr => x + "gamą";
-      SF Sg Loc => x + "gamie";
-      SF Sg Voc => x + "gamo";
-      SF Pl Nom => x + "Gamowie";
-      SF Pl Gen => x + "Gamów";
-      SF Pl Dat => x + "gamom";
-      SF Pl Acc => x + "Gamów";
-      SF Pl Instr => x + "gamami";
-      SF Pl Loc => x + "gamach";
-      SF Pl Voc => x + "Gamowie"
-    };
-
-    oper mkNTable0335: Str -> SubstForm => Str; --%
-    oper mkNTable0335 lexem = 
-      let x = Predef.tk 0 lexem in
-    table { 
-      SF Sg Nom => x + "";
-      SF Sg Gen => x + "a";
-      SF Sg Dat => x + "owi";
-      SF Sg Acc => x + "";
-      SF Sg Instr => x + "em";
-      SF Sg Loc => x + "u";
-      SF Sg Voc => x + "u";
-      SF Pl Nom => x + "e";
-      SF Pl Gen => x + "y";
-      SF Pl Dat => x + "om";
-      SF Pl Acc => x + "e";
-      SF Pl Instr => x + "ami";
-      SF Pl Loc => x + "ach";
-      SF Pl Voc => x + "e"
-    };
-
-    oper mkNTable0337: Str -> SubstForm => Str; --%
-    oper mkNTable0337 lexem = 
-      let x = Predef.tk 0 lexem in
-    table { 
-      SF Sg Nom => x + "";
-      SF Sg Gen => x + "a";
-      SF Sg Dat => x + "owi";
-      SF Sg Acc => x + "a";
-      SF Sg Instr => x + "em";
-      SF Sg Loc => x + "zie";
-      SF Sg Voc => x + "zie";
-      SF Pl Nom => x + "";
-      SF Pl Gen => x + "ów";
-      SF Pl Dat => x + "om";
-      SF Pl Acc => x + "ów";
-      SF Pl Instr => x + "ami";
-      SF Pl Loc => x + "ach";
-      SF Pl Voc => x + ""
-    };
-
-    oper mkNTable0338: Str -> SubstForm => Str; --%
-    oper mkNTable0338 lexem = 
-      let x = Predef.tk 2 lexem in
-    table { 
-      SF Sg Nom => x + "eł";
-      SF Sg Gen => x + "ła";
-      SF Sg Dat => x + "łowi";
-      SF Sg Acc => x + "ła";
-      SF Sg Instr => x + "łem";
-      SF Sg Loc => x + "le";
-      SF Sg Voc => x + "le";
-      SF Pl Nom => x + "łowie";
-      SF Pl Gen => x + "łów";
-      SF Pl Dat => x + "łom";
-      SF Pl Acc => x + "łów";
-      SF Pl Instr => x + "łami";
-      SF Pl Loc => x + "łach";
-      SF Pl Voc => x + "łowie"
-    };
-
-    oper mkNTable0339: Str -> SubstForm => Str; --%
-    oper mkNTable0339 lexem = 
-      let x = Predef.tk 6 lexem in
-    table { 
-      SF Sg Nom => x + "gawron";
-      SF Sg Gen => x + "gawrona";
-      SF Sg Dat => x + "gawronowi";
-      SF Sg Acc => x + "gawrona";
-      SF Sg Instr => x + "gawronem";
-      SF Sg Loc => x + "gawronie";
-      SF Sg Voc => x + "gawronie";
-      SF Pl Nom => x + "Gawronowie";
-      SF Pl Gen => x + "gawronów";
-      SF Pl Dat => x + "gawronom";
-      SF Pl Acc => x + "gawronów";
-      SF Pl Instr => x + "gawronami";
-      SF Pl Loc => x + "gawronach";
-      SF Pl Voc => x + "Gawronowie"
-    };
-
-    oper mkNTable0340: Str -> SubstForm => Str; --%
-    oper mkNTable0340 lexem = 
-      let x = Predef.tk 5 lexem in
-    table { 
-      SF Sg Nom => x + "Genia";
-      SF Sg Gen => x + "Geni";
-      SF Sg Dat => x + "Geni";
-      SF Sg Acc => x + "Genię";
-      SF Sg Instr => x + "Genią";
-      SF Sg Loc => x + "Geni";
-      SF Sg Voc => x + "Geniu";
-      SF Pl Nom => x + "genie";
-      SF Pl Gen => x + "Geń";
-      SF Pl Dat => x + "Geniom";
-      SF Pl Acc => x + "genie";
-      SF Pl Instr => x + "Geniami";
-      SF Pl Loc => x + "Geniach";
-      SF Pl Voc => x + "genie"
-    };
-
-    oper mkNTable0341: Str -> SubstForm => Str; --%
-    oper mkNTable0341 lexem = 
-      let x = Predef.tk 0 lexem in
-    table { 
-      SF Sg Nom => x + "";
-      SF Sg Gen => x + "u";
-      SF Sg Dat => x + "owi";
-      SF Sg Acc => x + "";
-      SF Sg Instr => x + "em";
-      SF Sg Loc => x + "u";
-      SF Sg Voc => x + "u";
-      SF Pl Nom => x + "y";
-      SF Pl Gen => x + "ów";
-      SF Pl Dat => x + "om";
-      SF Pl Acc => x + "y";
-      SF Pl Instr => x + "ami";
-      SF Pl Loc => x + "ach";
-      SF Pl Voc => x + "y"
-    };
-
-    oper mkNTable0342: Str -> SubstForm => Str; --%
-    oper mkNTable0342 lexem = 
-      let x = Predef.tk 0 lexem in
-    table { 
-      SF Sg Nom => x + "";
-      SF Sg Gen => x + "ia";
-      SF Sg Dat => x + "iowi";
-      SF Sg Acc => x + "ia";
-      SF Sg Instr => x + "iem";
-      SF Sg Loc => x + "iu";
-      SF Sg Voc => x + "iu";
-      SF Pl Nom => x + "iowie";
-      SF Pl Gen => x + "iów";
-      SF Pl Dat => x + "iom";
-      SF Pl Acc => x + "iów";
-      SF Pl Instr => x + "iami";
-      SF Pl Loc => x + "iach";
-      SF Pl Voc => x + "iowie"
-    };
-
-    oper mkNTable0343: Str -> SubstForm => Str; --%
-    oper mkNTable0343 lexem = 
-      let x = Predef.tk 6 lexem in
-    table { 
-      SF Sg Nom => x + "gierek";
-      SF Sg Gen => x + "gierka";
-      SF Sg Dat => x + "Gierkowi";
-      SF Sg Acc => x + "gierka";
-      SF Sg Instr => x + "Gierkiem";
-      SF Sg Loc => x + "Gierku";
-      SF Sg Voc => x + "Gierku";
-      SF Pl Nom => x + "Gierkowie";
-      SF Pl Gen => x + "Gierków";
-      SF Pl Dat => x + "gierkom";
-      SF Pl Acc => x + "Gierków";
-      SF Pl Instr => x + "gierkami";
-      SF Pl Loc => x + "gierkach";
-      SF Pl Voc => x + "Gierkowie"
-    };
-
-    oper mkNTable0344: Str -> SubstForm => Str; --%
-    oper mkNTable0344 lexem = 
-      let x = Predef.tk 7 lexem in
-    table { 
-      SF Sg Nom => x + "giewont";
-      SF Sg Gen => x + "Giewontu";
-      SF Sg Dat => x + "giewontowi";
-      SF Sg Acc => x + "giewont";
-      SF Sg Instr => x + "giewontem";
-      SF Sg Loc => x + "giewoncie";
-      SF Sg Voc => x + "giewoncie";
-      SF Pl Nom => x + "giewonty";
-      SF Pl Gen => x + "giewontów";
-      SF Pl Dat => x + "giewontom";
-      SF Pl Acc => x + "giewonty";
-      SF Pl Instr => x + "giewontami";
-      SF Pl Loc => x + "giewontach";
-      SF Pl Voc => x + "giewonty"
-    };
-
-    oper mkNTable0345: Str -> SubstForm => Str; --%
-    oper mkNTable0345 lexem = 
-      let x = Predef.tk 7 lexem in
-    table { 
-      SF Sg Nom => x + "gilbert";
-      SF Sg Gen => x + "gilberta";
-      SF Sg Dat => x + "gilbertowi";
-      SF Sg Acc => x + "gilberta";
-      SF Sg Instr => x + "gilbertem";
-      SF Sg Loc => x + "gilbercie";
-      SF Sg Voc => x + "gilbercie";
-      SF Pl Nom => x + "Gilbertowie";
-      SF Pl Gen => x + "gilbertów";
-      SF Pl Dat => x + "gilbertom";
-      SF Pl Acc => x + "gilbertów";
-      SF Pl Instr => x + "gilbertami";
-      SF Pl Loc => x + "gilbertach";
-      SF Pl Voc => x + "Gilbertowie"
-    };
-
-    oper mkNTable0346: Str -> SubstForm => Str; --%
-    oper mkNTable0346 lexem = 
-      let x = Predef.tk 1 lexem in
-    table { 
-      SF Sg Nom => x + "o";
-      SF Sg Gen => x + "a";
-      SF Sg Dat => x + "owi";
-      SF Sg Acc => x + "a";
-      SF Sg Instr => x + "em";
-      SF Sg Loc => x + "ie";
-      SF Sg Voc => x + "o";
-      SF Pl Nom => x + "owie";
-      SF Pl Gen => x + "ów";
-      SF Pl Dat => x + "om";
-      SF Pl Acc => x + "ów";
-      SF Pl Instr => x + "ami";
-      SF Pl Loc => x + "ach";
-      SF Pl Voc => x + "owie"
-    };
-
-    oper mkNTable0349: Str -> SubstForm => Str; --%
-    oper mkNTable0349 lexem = 
-      let x = Predef.tk 1 lexem in
-    table { 
-      SF Sg Nom => x + "a";
-      SF Sg Gen => x + "i";
-      SF Sg Dat => x + "i";
-      SF Sg Acc => x + "ę";
-      SF Sg Instr => x + "ą";
-      SF Sg Loc => x + "i";
-      SF Sg Voc => x + "o";
-      SF Pl Nom => x + "e";
-      SF Pl Gen => x + "";
-      SF Pl Dat => x + "om";
-      SF Pl Acc => x + "e";
-      SF Pl Instr => x + "ami";
-      SF Pl Loc => x + "ach";
-      SF Pl Voc => x + "e"
-    };
-
-    oper mkNTable0350: Str -> SubstForm => Str; --%
-    oper mkNTable0350 lexem = 
-      let x = Predef.tk 1 lexem in
-    table { 
-      SF Sg Nom => x + "a";
-      SF Sg Gen => x + "i";
-      SF Sg Dat => x + "i";
-      SF Sg Acc => x + "ę";
-      SF Sg Instr => x + "ą";
-      SF Sg Loc => x + "i";
-      SF Sg Voc => x + "a";
-      SF Pl Nom => x + "owie";
-      SF Pl Gen => x + "ów";
-      SF Pl Dat => x + "om";
-      SF Pl Acc => x + "ów";
-      SF Pl Instr => x + "ami";
-      SF Pl Loc => x + "ach";
-      SF Pl Voc => x + "owie"
-    };
-
-    oper mkNTable0351: Str -> SubstForm => Str; --%
-    oper mkNTable0351 lexem = 
-      let x = Predef.tk 5 lexem in
-    table { 
-      SF Sg Nom => x + "golec";
-      SF Sg Gen => x + "golca";
-      SF Sg Dat => x + "golcowi";
-      SF Sg Acc => x + "golca";
-      SF Sg Instr => x + "golcem";
-      SF Sg Loc => x + "golcu";
-      SF Sg Voc => x + "golcu";
-      SF Pl Nom => x + "Golcowie";
-      SF Pl Gen => x + "golców";
-      SF Pl Dat => x + "golcom";
-      SF Pl Acc => x + "golców";
-      SF Pl Instr => x + "golcami";
-      SF Pl Loc => x + "golcach";
-      SF Pl Voc => x + "Golcowie"
-    };
-
-    oper mkNTable0352: Str -> SubstForm => Str; --%
-    oper mkNTable0352 lexem = 
-      let x = Predef.tk 2 lexem in
-    table { 
-      SF Sg Nom => x + "ka";
-      SF Sg Gen => x + "ki";
-      SF Sg Dat => x + "ce";
-      SF Sg Acc => x + "kę";
-      SF Sg Instr => x + "ką";
-      SF Sg Loc => x + "ce";
-      SF Sg Voc => x + "ko";
-      SF Pl Nom => x + "kowie";
-      SF Pl Gen => x + "ków";
-      SF Pl Dat => x + "kom";
-      SF Pl Acc => x + "ków";
-      SF Pl Instr => x + "kami";
-      SF Pl Loc => x + "kach";
-      SF Pl Voc => x + "kowie"
-    };
-
-    oper mkNTable0353: Str -> SubstForm => Str; --%
-    oper mkNTable0353 lexem = 
-      let x = Predef.tk 7 lexem in
-    table { 
-      SF Sg Nom => x + "gomółka";
-      SF Sg Gen => x + "gomółki";
-      SF Sg Dat => x + "gomółce";
-      SF Sg Acc => x + "gomółkę";
-      SF Sg Instr => x + "gomółką";
-      SF Sg Loc => x + "gomółce";
-      SF Sg Voc => x + "gomółko";
-      SF Pl Nom => x + "Gomółkowie";
-      SF Pl Gen => x + "Gomółków";
-      SF Pl Dat => x + "gomółkom";
-      SF Pl Acc => x + "Gomółków";
-      SF Pl Instr => x + "gomółkami";
-      SF Pl Loc => x + "gomółkach";
-      SF Pl Voc => x + "Gomółkowie"
-    };
-
-    oper mkNTable0355: Str -> SubstForm => Str; --%
-    oper mkNTable0355 lexem = 
-      let x = Predef.tk 6 lexem in
-    table { 
-      SF Sg Nom => x + "gordon";
-      SF Sg Gen => x + "gordona";
-      SF Sg Dat => x + "gordonowi";
-      SF Sg Acc => x + "gordona";
-      SF Sg Instr => x + "gordonem";
-      SF Sg Loc => x + "gordonie";
-      SF Sg Voc => x + "gordonie";
-      SF Pl Nom => x + "Gordonowie";
-      SF Pl Gen => x + "gordonów";
-      SF Pl Dat => x + "gordonom";
-      SF Pl Acc => x + "gordonów";
-      SF Pl Instr => x + "gordonami";
-      SF Pl Loc => x + "gordonach";
-      SF Pl Voc => x + "Gordonowie"
-    };
-
-    oper mkNTable0356: Str -> SubstForm => Str; --%
-    oper mkNTable0356 lexem = 
-      let x = Predef.tk 2 lexem in
-    table { 
-      SF Sg Nom => x + "ya";
-      SF Sg Gen => x + "i";
-      SF Sg Dat => x + "i";
-      SF Sg Acc => x + "yę";
-      SF Sg Instr => x + "yą";
-      SF Sg Loc => x + "i";
-      SF Sg Voc => x + "yo";
-      SF Pl Nom => x + "yowie";
-      SF Pl Gen => x + "yów";
-      SF Pl Dat => x + "yom";
-      SF Pl Acc => x + "yów";
-      SF Pl Instr => x + "yami";
-      SF Pl Loc => x + "yach";
-      SF Pl Voc => x + "yowie"
-    };
-
-    oper mkNTable0357: Str -> SubstForm => Str; --%
-    oper mkNTable0357 lexem = 
-      let x = Predef.tk 1 lexem in
-    table { 
-      SF Sg Nom => x + "ś";
-      SF Sg Gen => x + "sia";
-      SF Sg Dat => x + "siowi";
-      SF Sg Acc => x + "sia";
-      SF Sg Instr => x + "siem";
-      SF Sg Loc => x + "siu";
-      SF Sg Voc => x + "ś";
-      SF Pl Nom => x + "siowie";
-      SF Pl Gen => x + "siów";
-      SF Pl Dat => x + "siom";
-      SF Pl Acc => x + "siów";
-      SF Pl Instr => x + "siami";
-      SF Pl Loc => x + "siach";
-      SF Pl Voc => x + "siowie"
-    };
-
-    oper mkNTable0358: Str -> SubstForm => Str; --%
-    oper mkNTable0358 lexem = 
-      let x = Predef.tk 6 lexem in
-    table { 
-      SF Sg Nom => x + "gołota";
-      SF Sg Gen => x + "gołoty";
-      SF Sg Dat => x + "gołocie";
-      SF Sg Acc => x + "gołotę";
-      SF Sg Instr => x + "gołotą";
-      SF Sg Loc => x + "gołocie";
-      SF Sg Voc => x + "gołoto";
-      SF Pl Nom => x + "Gołotowie";
-      SF Pl Gen => x + "gołotów";
-      SF Pl Dat => x + "gołotom";
-      SF Pl Acc => x + "gołotów";
-      SF Pl Instr => x + "gołotami";
-      SF Pl Loc => x + "gołotach";
-      SF Pl Voc => x + "Gołotowie"
-    };
-
-    oper mkNTable0359: Str -> SubstForm => Str; --%
-    oper mkNTable0359 lexem = 
-      let x = Predef.tk 5 lexem in
-    table { 
-      SF Sg Nom => x + "gołąb";
-      SF Sg Gen => x + "gołębia";
-      SF Sg Dat => x + "gołębiowi";
-      SF Sg Acc => x + "gołębia";
-      SF Sg Instr => x + "gołębiem";
-      SF Sg Loc => x + "gołębiu";
-      SF Sg Voc => x + "gołębiu";
-      SF Pl Nom => x + "Gołębiowie";
-      SF Pl Gen => x + "Gołębiów";
-      SF Pl Dat => x + "gołębiom";
-      SF Pl Acc => x + "Gołębiów";
-      SF Pl Instr => x + "gołębiami";
-      SF Pl Loc => x + "gołębiach";
-      SF Pl Voc => x + "Gołębiowie"
-    };
-
-    oper mkNTable0360: Str -> SubstForm => Str; --%
-    oper mkNTable0360 lexem = 
-      let x = Predef.tk 2 lexem in
-    table { 
-      SF Sg Nom => x + "ąb";
-      SF Sg Gen => x + "ębia";
-      SF Sg Dat => x + "ębiowi";
-      SF Sg Acc => x + "ąb";
-      SF Sg Instr => x + "ębiem";
-      SF Sg Loc => x + "ębiu";
-      SF Sg Voc => x + "ębiu";
-      SF Pl Nom => x + "ębie";
-      SF Pl Gen => x + "ębi";
-      SF Pl Dat => x + "ębiom";
-      SF Pl Acc => x + "ębie";
-      SF Pl Instr => x + "ębiami";
-      SF Pl Loc => x + "ębiach";
-      SF Pl Voc => x + "ębie"
-    };
-
-    oper mkNTable0363: Str -> SubstForm => Str; --%
-    oper mkNTable0363 lexem = 
-      let x = Predef.tk 5 lexem in
-    table { 
-      SF Sg Nom => x + "gracz";
-      SF Sg Gen => x + "gracza";
-      SF Sg Dat => x + "graczowi";
-      SF Sg Acc => x + "gracza";
-      SF Sg Instr => x + "graczem";
-      SF Sg Loc => x + "graczu";
-      SF Sg Voc => x + "graczu";
-      SF Pl Nom => x + "Graczowie";
-      SF Pl Gen => x + "graczów";
-      SF Pl Dat => x + "graczom";
-      SF Pl Acc => x + "graczów";
-      SF Pl Instr => x + "graczami";
-      SF Pl Loc => x + "graczach";
-      SF Pl Voc => x + "Graczowie"
-    };
-
-    oper mkNTable0364: Str -> SubstForm => Str; --%
-    oper mkNTable0364 lexem = 
-      let x = Predef.tk 6 lexem in
-    table { 
-      SF Sg Nom => x + "graham";
-      SF Sg Gen => x + "grahama";
-      SF Sg Dat => x + "grahamowi";
-      SF Sg Acc => x + "grahama";
-      SF Sg Instr => x + "grahamem";
-      SF Sg Loc => x + "grahamie";
-      SF Sg Voc => x + "grahamie";
-      SF Pl Nom => x + "Grahamowie";
-      SF Pl Gen => x + "grahamów";
-      SF Pl Dat => x + "grahamom";
-      SF Pl Acc => x + "grahamów";
-      SF Pl Instr => x + "grahamami";
-      SF Pl Loc => x + "grahamach";
-      SF Pl Voc => x + "Grahamowie"
-    };
-
-    oper mkNTable0365: Str -> SubstForm => Str; --%
-    oper mkNTable0365 lexem = 
-      let x = Predef.tk 5 lexem in
-    table { 
-      SF Sg Nom => x + "grant";
-      SF Sg Gen => x + "Granta";
-      SF Sg Dat => x + "grantowi";
-      SF Sg Acc => x + "Granta";
-      SF Sg Instr => x + "grantem";
-      SF Sg Loc => x + "grancie";
-      SF Sg Voc => x + "grancie";
-      SF Pl Nom => x + "Grantowie";
-      SF Pl Gen => x + "grantów";
-      SF Pl Dat => x + "grantom";
-      SF Pl Acc => x + "grantów";
-      SF Pl Instr => x + "grantami";
-      SF Pl Loc => x + "grantach";
-      SF Pl Voc => x + "Grantowie"
-    };
-
-    oper mkNTable0366: Str -> SubstForm => Str; --%
-    oper mkNTable0366 lexem = 
-      let x = Predef.tk 2 lexem in
-    table { 
-      SF Sg Nom => x + "ta";
-      SF Sg Gen => x + "ty";
-      SF Sg Dat => x + "cie";
-      SF Sg Acc => x + "tę";
-      SF Sg Instr => x + "tą";
-      SF Sg Loc => x + "cie";
-      SF Sg Voc => x + "to";
-      SF Pl Nom => x + "ty";
-      SF Pl Gen => x + "tów";
-      SF Pl Dat => x + "tom";
-      SF Pl Acc => x + "tów";
-      SF Pl Instr => x + "tami";
-      SF Pl Loc => x + "tach";
-      SF Pl Voc => x + "ty"
-    };
-
-    oper mkNTable0367: Str -> SubstForm => Str; --%
-    oper mkNTable0367 lexem = 
-      let x = Predef.tk 2 lexem in
-    table { 
-      SF Sg Nom => x + "th";
-      SF Sg Gen => x + "tha";
-      SF Sg Dat => x + "thowi";
-      SF Sg Acc => x + "tha";
-      SF Sg Instr => x + "them";
-      SF Sg Loc => x + "sie";
-      SF Sg Voc => x + "sie";
-      SF Pl Nom => x + "thowie";
-      SF Pl Gen => x + "thów";
-      SF Pl Dat => x + "thom";
-      SF Pl Acc => x + "thów";
-      SF Pl Instr => x + "thami";
-      SF Pl Loc => x + "thach";
-      SF Pl Voc => x + "thowie"
-    };
-
-    oper mkNTable0369: Str -> SubstForm => Str; --%
-    oper mkNTable0369 lexem = 
-      let x = Predef.tk 1 lexem in
-    table { 
-      SF Sg Nom => x + "o";
-      SF Sg Gen => x + "a";
-      SF Sg Dat => x + "u";
-      SF Sg Acc => x + "o";
-      SF Sg Instr => x + "iem";
-      SF Sg Loc => x + "u";
-      SF Sg Voc => x + "o";
-      SF Pl Nom => x + "a";
-      SF Pl Gen => x + "";
-      SF Pl Dat => x + "om";
-      SF Pl Acc => x + "a";
-      SF Pl Instr => x + "ami";
-      SF Pl Loc => x + "ach";
-      SF Pl Voc => x + "a"
-    };
-
-    oper mkNTable0370: Str -> SubstForm => Str; --%
-    oper mkNTable0370 lexem = 
-      let x = Predef.tk 4 lexem in
-    table { 
-      SF Sg Nom => x + "grot";
-      SF Sg Gen => x + "grota";
-      SF Sg Dat => x + "grotowi";
-      SF Sg Acc => x + "grota";
-      SF Sg Instr => x + "grotem";
-      SF Sg Loc => x + "grocie";
-      SF Sg Voc => x + "grocie";
-      SF Pl Nom => x + "Grotowie";
-      SF Pl Gen => x + "grotów";
-      SF Pl Dat => x + "grotom";
-      SF Pl Acc => x + "grotów";
-      SF Pl Instr => x + "grotami";
-      SF Pl Loc => x + "grotach";
-      SF Pl Voc => x + "Grotowie"
-    };
-
-    oper mkNTable0371: Str -> SubstForm => Str; --%
-    oper mkNTable0371 lexem = 
-      let x = Predef.tk 8 lexem in
-    table { 
-      SF Sg Nom => x + "grudzień";
-      SF Sg Gen => x + "grudnia";
-      SF Sg Dat => x + "grudniowi";
-      SF Sg Acc => x + "grudnia";
-      SF Sg Instr => x + "grudniem";
-      SF Sg Loc => x + "grudniu";
-      SF Sg Voc => x + "grudniu";
-      SF Pl Nom => x + "Grudniowie";
-      SF Pl Gen => x + "grudniów";
-      SF Pl Dat => x + "grudniom";
-      SF Pl Acc => x + "grudniów";
-      SF Pl Instr => x + "grudniami";
-      SF Pl Loc => x + "grudniach";
-      SF Pl Voc => x + "Grudniowie"
-    };
-
-    oper mkNTable0372: Str -> SubstForm => Str; --%
-    oper mkNTable0372 lexem = 
-      let x = Predef.tk 8 lexem in
-    table { 
-      SF Sg Nom => x + "grunwald";
-      SF Sg Gen => x + "Grunwaldu";
-      SF Sg Dat => x + "grunwaldowi";
-      SF Sg Acc => x + "grunwald";
-      SF Sg Instr => x + "grunwaldem";
-      SF Sg Loc => x + "grunwaldzie";
-      SF Sg Voc => x + "grunwaldzie";
-      SF Pl Nom => x + "grunwaldy";
-      SF Pl Gen => x + "grunwaldów";
-      SF Pl Dat => x + "grunwaldom";
-      SF Pl Acc => x + "grunwaldy";
-      SF Pl Instr => x + "grunwaldami";
-      SF Pl Loc => x + "grunwaldach";
-      SF Pl Voc => x + "grunwaldy"
-    };
-
-    oper mkNTable0373: Str -> SubstForm => Str; --%
-    oper mkNTable0373 lexem = 
-      let x = Predef.tk 6 lexem in
-    table { 
-      SF Sg Nom => x + "grusza";
-      SF Sg Gen => x + "gruszy";
-      SF Sg Dat => x + "gruszy";
-      SF Sg Acc => x + "gruszę";
-      SF Sg Instr => x + "gruszą";
-      SF Sg Loc => x + "gruszy";
-      SF Sg Voc => x + "gruszo";
-      SF Pl Nom => x + "Gruszowie";
-      SF Pl Gen => x + "Gruszów";
-      SF Pl Dat => x + "gruszom";
-      SF Pl Acc => x + "Gruszów";
-      SF Pl Instr => x + "gruszami";
-      SF Pl Loc => x + "gruszach";
-      SF Pl Voc => x + "Gruszowie"
-    };
-
-    oper mkNTable0374: Str -> SubstForm => Str; --%
-    oper mkNTable0374 lexem = 
-      let x = Predef.tk 7 lexem in
-    table { 
-      SF Sg Nom => x + "gruszka";
-      SF Sg Gen => x + "gruszki";
-      SF Sg Dat => x + "gruszce";
-      SF Sg Acc => x + "gruszkę";
-      SF Sg Instr => x + "gruszką";
-      SF Sg Loc => x + "gruszce";
-      SF Sg Voc => x + "gruszko";
-      SF Pl Nom => x + "Gruszkowie";
-      SF Pl Gen => x + "Gruszków";
-      SF Pl Dat => x + "gruszkom";
-      SF Pl Acc => x + "Gruszków";
-      SF Pl Instr => x + "gruszkami";
-      SF Pl Loc => x + "gruszkach";
-      SF Pl Voc => x + "Gruszkowie"
-    };
-
-    oper mkNTable0375: Str -> SubstForm => Str; --%
-    oper mkNTable0375 lexem = 
-      let x = Predef.tk 5 lexem in
-    table { 
-      SF Sg Nom => x + "grzyb";
-      SF Sg Gen => x + "grzyba";
-      SF Sg Dat => x + "grzybowi";
-      SF Sg Acc => x + "grzyba";
-      SF Sg Instr => x + "grzybem";
-      SF Sg Loc => x + "grzybie";
-      SF Sg Voc => x + "grzybie";
-      SF Pl Nom => x + "Grzybowie";
-      SF Pl Gen => x + "grzybów";
-      SF Pl Dat => x + "grzybom";
-      SF Pl Acc => x + "grzybów";
-      SF Pl Instr => x + "grzybami";
-      SF Pl Loc => x + "grzybach";
-      SF Pl Voc => x + "Grzybowie"
-    };
-
-    oper mkNTable0377: Str -> SubstForm => Str; --%
-    oper mkNTable0377 lexem = 
-      let x = Predef.tk 8 lexem in
-    table { 
-      SF Sg Nom => x + "guinness";
-      SF Sg Gen => x + "guinnessa";
-      SF Sg Dat => x + "guinnessowi";
-      SF Sg Acc => x + "guinnessa";
-      SF Sg Instr => x + "guinnessem";
-      SF Sg Loc => x + "guinnessie";
-      SF Sg Voc => x + "guinnessie";
-      SF Pl Nom => x + "Guinnessowie";
-      SF Pl Gen => x + "guinnessów";
-      SF Pl Dat => x + "guinnessom";
-      SF Pl Acc => x + "guinnessów";
-      SF Pl Instr => x + "guinnessami";
-      SF Pl Loc => x + "guinnessach";
-      SF Pl Voc => x + "Guinnessowie"
-    };
-
-    oper mkNTable0378: Str -> SubstForm => Str; --%
-    oper mkNTable0378 lexem = 
-      let x = Predef.tk 1 lexem in
-    table { 
-      SF Sg Nom => x + "ń";
-      SF Sg Gen => x + "nia";
-      SF Sg Dat => x + "niowi";
-      SF Sg Acc => x + "nia";
-      SF Sg Instr => x + "niem";
-      SF Sg Loc => x + "niu";
-      SF Sg Voc => x + "niu";
-      SF Pl Nom => x + "nie";
-      SF Pl Gen => x + "niów";
-      SF Pl Dat => x + "niom";
-      SF Pl Acc => x + "niów";
-      SF Pl Instr => x + "niami";
-      SF Pl Loc => x + "niach";
-      SF Pl Voc => x + "nie"
-    };
-
-    oper mkNTable0379: Str -> SubstForm => Str; --%
-    oper mkNTable0379 lexem = 
-      let x = Predef.tk 9 lexem in
-    table { 
-      SF Sg Nom => x + "gąsienica";
-      SF Sg Gen => x + "gąsienicy";
-      SF Sg Dat => x + "gąsienicy";
-      SF Sg Acc => x + "gąsienicę";
-      SF Sg Instr => x + "gąsienicą";
-      SF Sg Loc => x + "gąsienicy";
-      SF Sg Voc => x + "gąsienico";
-      SF Pl Nom => x + "Gąsienicowie";
-      SF Pl Gen => x + "Gąsieniców";
-      SF Pl Dat => x + "gąsienicom";
-      SF Pl Acc => x + "Gąsieniców";
-      SF Pl Instr => x + "gąsienicami";
-      SF Pl Loc => x + "gąsienicach";
-      SF Pl Voc => x + "Gąsienicowie"
-    };
-
-    oper mkNTable0381: Str -> SubstForm => Str; --%
-    oper mkNTable0381 lexem = 
-      let x = Predef.tk 5 lexem in
-    table { 
-      SF Sg Nom => x + "górka";
-      SF Sg Gen => x + "górki";
-      SF Sg Dat => x + "górce";
-      SF Sg Acc => x + "górkę";
-      SF Sg Instr => x + "górką";
-      SF Sg Loc => x + "górce";
-      SF Sg Voc => x + "górko";
-      SF Pl Nom => x + "Górkowie";
-      SF Pl Gen => x + "Górków";
-      SF Pl Dat => x + "górkom";
-      SF Pl Acc => x + "Górków";
-      SF Pl Instr => x + "górkami";
-      SF Pl Loc => x + "górkach";
-      SF Pl Voc => x + "Górkowie"
-    };
-
-    oper mkNTable0382: Str -> SubstForm => Str; --%
-    oper mkNTable0382 lexem = 
-      let x = Predef.tk 0 lexem in
-    table { 
-      SF Sg Nom => x + "";
-      SF Sg Gen => x + "a";
-      SF Sg Dat => x + "owi";
-      SF Sg Acc => x + "";
-      SF Sg Instr => x + "iem";
-      SF Sg Loc => x + "u";
-      SF Sg Voc => x + "u";
-      SF Pl Nom => x + "i";
-      SF Pl Gen => x + "ów";
-      SF Pl Dat => x + "om";
-      SF Pl Acc => x + "i";
-      SF Pl Instr => x + "ami";
-      SF Pl Loc => x + "ach";
-      SF Pl Voc => x + "i"
-    };
-
-    oper mkNTable0383: Str -> SubstForm => Str; --%
-    oper mkNTable0383 lexem = 
-      let x = Predef.tk 4 lexem in
-    table { 
-      SF Sg Nom => x + "hala";
-      SF Sg Gen => x + "hali";
-      SF Sg Dat => x + "hali";
-      SF Sg Acc => x + "halę";
-      SF Sg Instr => x + "halą";
-      SF Sg Loc => x + "hali";
-      SF Sg Voc => x + "Halu";
-      SF Pl Nom => x + "hale";
-      SF Pl Gen => x + "hal";
-      SF Pl Dat => x + "halom";
-      SF Pl Acc => x + "hale";
-      SF Pl Instr => x + "halami";
-      SF Pl Loc => x + "halach";
-      SF Pl Voc => x + "hale"
-    };
-
-    oper mkNTable0384: Str -> SubstForm => Str; --%
-    oper mkNTable0384 lexem = 
-      let x = Predef.tk 5 lexem in
-    table { 
-      SF Sg Nom => x + "Hania";
-      SF Sg Gen => x + "Hani";
-      SF Sg Dat => x + "Hani";
-      SF Sg Acc => x + "Hanię";
-      SF Sg Instr => x + "Hanią";
-      SF Sg Loc => x + "Hani";
-      SF Sg Voc => x + "Haniu";
-      SF Pl Nom => x + "hanie";
-      SF Pl Gen => x + "Hań";
-      SF Pl Dat => x + "Haniom";
-      SF Pl Acc => x + "hanie";
-      SF Pl Instr => x + "Haniami";
-      SF Pl Loc => x + "Haniach";
-      SF Pl Voc => x + "hanie"
-    };
-
-    oper mkNTable0385: Str -> SubstForm => Str; --%
-    oper mkNTable0385 lexem = 
-      let x = Predef.tk 7 lexem in
-    table { 
-      SF Sg Nom => x + "hanower";
-      SF Sg Gen => x + "Hanoweru";
-      SF Sg Dat => x + "hanowerowi";
-      SF Sg Acc => x + "hanower";
-      SF Sg Instr => x + "hanowerem";
-      SF Sg Loc => x + "hanowerze";
-      SF Sg Voc => x + "hanowerze";
-      SF Pl Nom => x + "hanowery";
-      SF Pl Gen => x + "hanowerów";
-      SF Pl Dat => x + "hanowerom";
-      SF Pl Acc => x + "hanowery";
-      SF Pl Instr => x + "hanowerami";
-      SF Pl Loc => x + "hanowerach";
-      SF Pl Voc => x + "hanowery"
-    };
-
-    oper mkNTable0386: Str -> SubstForm => Str; --%
-    oper mkNTable0386 lexem = 
-      let x = Predef.tk 3 lexem in
-    table { 
-      SF Sg Nom => x + "has";
-      SF Sg Gen => x + "Hasa";
-      SF Sg Dat => x + "hasowi";
-      SF Sg Acc => x + "Hasa";
-      SF Sg Instr => x + "hasem";
-      SF Sg Loc => x + "hasie";
-      SF Sg Voc => x + "hasie";
-      SF Pl Nom => x + "Hasowie";
-      SF Pl Gen => x + "hasów";
-      SF Pl Dat => x + "hasom";
-      SF Pl Acc => x + "hasów";
-      SF Pl Instr => x + "hasami";
-      SF Pl Loc => x + "hasach";
-      SF Pl Voc => x + "Hasowie"
-    };
-
-    oper mkNTable0387: Str -> SubstForm => Str; --%
-    oper mkNTable0387 lexem = 
-      let x = Predef.tk 1 lexem in
-    table { 
-      SF Sg Nom => x + "a";
-      SF Sg Gen => x + "y";
-      SF Sg Dat => x + "y";
-      SF Sg Acc => x + "ę";
-      SF Sg Instr => x + "ą";
-      SF Sg Loc => x + "y";
-      SF Sg Voc => x + "o";
-      SF Pl Nom => x + "e";
-      SF Pl Gen => x + "y";
-      SF Pl Dat => x + "om";
-      SF Pl Acc => x + "e";
-      SF Pl Instr => x + "ami";
-      SF Pl Loc => x + "ach";
-      SF Pl Voc => x + "e"
-    };
-
-    oper mkNTable0388: Str -> SubstForm => Str; --%
-    oper mkNTable0388 lexem = 
-      let x = Predef.tk 8 lexem in
-    table { 
-      SF Sg Nom => x + "heliodor";
-      SF Sg Gen => x + "Heliodora";
-      SF Sg Dat => x + "heliodorowi";
-      SF Sg Acc => x + "Heliodora";
-      SF Sg Instr => x + "heliodorem";
-      SF Sg Loc => x + "heliodorze";
-      SF Sg Voc => x + "heliodorze";
-      SF Pl Nom => x + "Heliodorowie";
-      SF Pl Gen => x + "heliodorów";
-      SF Pl Dat => x + "heliodorom";
-      SF Pl Acc => x + "heliodorów";
-      SF Pl Instr => x + "heliodorami";
-      SF Pl Loc => x + "heliodorach";
-      SF Pl Voc => x + "Heliodorowie"
-    };
-
-    oper mkNTable0389: Str -> SubstForm => Str; --%
-    oper mkNTable0389 lexem = 
-      let x = Predef.tk 6 lexem in
-    table { 
-      SF Sg Nom => x + "helmut";
-      SF Sg Gen => x + "helmuta";
-      SF Sg Dat => x + "helmutowi";
-      SF Sg Acc => x + "helmuta";
-      SF Sg Instr => x + "helmutem";
-      SF Sg Loc => x + "helmucie";
-      SF Sg Voc => x + "helmucie";
-      SF Pl Nom => x + "Helmutowie";
-      SF Pl Gen => x + "helmutów";
-      SF Pl Dat => x + "helmutom";
-      SF Pl Acc => x + "helmutów";
-      SF Pl Instr => x + "helmutami";
-      SF Pl Loc => x + "helmutach";
-      SF Pl Voc => x + "Helmutowie"
-    };
-
-    oper mkNTable0390: Str -> SubstForm => Str; --%
-    oper mkNTable0390 lexem = 
-      let x = Predef.tk 3 lexem in
-    table { 
-      SF Sg Nom => x + "tha";
-      SF Sg Gen => x + "thy";
-      SF Sg Dat => x + "cie";
-      SF Sg Acc => x + "thę";
-      SF Sg Instr => x + "thą";
-      SF Sg Loc => x + "cie";
-      SF Sg Voc => x + "tho";
-      SF Pl Nom => x + "thy";
-      SF Pl Gen => x + "th";
-      SF Pl Dat => x + "thom";
-      SF Pl Acc => x + "thy";
-      SF Pl Instr => x + "thami";
-      SF Pl Loc => x + "thach";
-      SF Pl Voc => x + "thy"
-    };
-
-    oper mkNTable0391: Str -> SubstForm => Str; --%
-    oper mkNTable0391 lexem = 
-      let x = Predef.tk 7 lexem in
-    table { 
-      SF Sg Nom => x + "hiacynt";
-      SF Sg Gen => x + "hiacynta";
-      SF Sg Dat => x + "hiacyntowi";
-      SF Sg Acc => x + "hiacynta";
-      SF Sg Instr => x + "hiacyntem";
-      SF Sg Loc => x + "hiacyncie";
-      SF Sg Voc => x + "hiacyncie";
-      SF Pl Nom => x + "Hiacyntowie";
-      SF Pl Gen => x + "hiacyntów";
-      SF Pl Dat => x + "hiacyntom";
-      SF Pl Acc => x + "hiacyntów";
-      SF Pl Instr => x + "hiacyntami";
-      SF Pl Loc => x + "hiacyntach";
-      SF Pl Voc => x + "Hiacyntowie"
-    };
-
-    oper mkNTable0392: Str -> SubstForm => Str; --%
-    oper mkNTable0392 lexem = 
-      let x = Predef.tk 8 lexem in
-    table { 
-      SF Sg Nom => x + "hiacynta";
-      SF Sg Gen => x + "hiacynty";
-      SF Sg Dat => x + "hiacyncie";
-      SF Sg Acc => x + "Hiacyntę";
-      SF Sg Instr => x + "Hiacyntą";
-      SF Sg Loc => x + "hiacyncie";
-      SF Sg Voc => x + "Hiacynto";
-      SF Pl Nom => x + "hiacynty";
-      SF Pl Gen => x + "hiacynt";
-      SF Pl Dat => x + "hiacyntom";
-      SF Pl Acc => x + "hiacynty";
-      SF Pl Instr => x + "hiacyntami";
-      SF Pl Loc => x + "hiacyntach";
-      SF Pl Voc => x + "hiacynty"
-    };
-
-    oper mkNTable0393: Str -> SubstForm => Str; --%
-    oper mkNTable0393 lexem = 
-      let x = Predef.tk 8 lexem in
-    table { 
-      SF Sg Nom => x + "holender";
-      SF Sg Gen => x + "holendra";
-      SF Sg Dat => x + "holendrowi";
-      SF Sg Acc => x + "holendra";
-      SF Sg Instr => x + "holendrem";
-      SF Sg Loc => x + "holendrze";
-      SF Sg Voc => x + "holendrze";
-      SF Pl Nom => x + "Holendrzy";
-      SF Pl Gen => x + "holendrów";
-      SF Pl Dat => x + "holendrom";
-      SF Pl Acc => x + "holendrów";
-      SF Pl Instr => x + "holendrami";
-      SF Pl Loc => x + "holendrach";
-      SF Pl Voc => x + "Holendrzy"
-    };
-
-    oper mkNTable0395: Str -> SubstForm => Str; --%
-    oper mkNTable0395 lexem = 
-      let x = Predef.tk 5 lexem in
-    table { 
-      SF Sg Nom => x + "horst";
-      SF Sg Gen => x + "Horsta";
-      SF Sg Dat => x + "horstowi";
-      SF Sg Acc => x + "Horsta";
-      SF Sg Instr => x + "horstem";
-      SF Sg Loc => x + "horście";
-      SF Sg Voc => x + "horście";
-      SF Pl Nom => x + "Horstowie";
-      SF Pl Gen => x + "horstów";
-      SF Pl Dat => x + "horstom";
-      SF Pl Acc => x + "horstów";
-      SF Pl Instr => x + "horstami";
-      SF Pl Loc => x + "horstach";
-      SF Pl Voc => x + "Horstowie"
-    };
-
-    oper mkNTable0396: Str -> SubstForm => Str; --%
-    oper mkNTable0396 lexem = 
-      let x = Predef.tk 5 lexem in
-    table { 
-      SF Sg Nom => x + "hucuł";
-      SF Sg Gen => x + "hucuła";
-      SF Sg Dat => x + "hucułowi";
-      SF Sg Acc => x + "hucuła";
-      SF Sg Instr => x + "hucułem";
-      SF Sg Loc => x + "hucule";
-      SF Sg Voc => x + "hucule";
-      SF Pl Nom => x + "Huculi";
-      SF Pl Gen => x + "hucułów";
-      SF Pl Dat => x + "hucułom";
-      SF Pl Acc => x + "hucułów";
-      SF Pl Instr => x + "hucułami";
-      SF Pl Loc => x + "hucułach";
-      SF Pl Voc => x + "Huculi"
-    };
-
-    oper mkNTable0397: Str -> SubstForm => Str; --%
-    oper mkNTable0397 lexem = 
-      let x = Predef.tk 0 lexem in
-    table { 
-      SF Sg Nom => x + "";
-      SF Sg Gen => x + "na";
-      SF Sg Dat => x + "nowi";
-      SF Sg Acc => x + "na";
-      SF Sg Instr => x + "nem";
-      SF Sg Loc => x + "nie";
-      SF Sg Voc => x + "nie";
-      SF Pl Nom => x + "nowie";
-      SF Pl Gen => x + "nów";
-      SF Pl Dat => x + "nom";
-      SF Pl Acc => x + "nów";
-      SF Pl Instr => x + "nami";
-      SF Pl Loc => x + "nach";
-      SF Pl Voc => x + "nowie"
-    };
-
-    oper mkNTable0398: Str -> SubstForm => Str; --%
-    oper mkNTable0398 lexem = 
-      let x = Predef.tk 3 lexem in
-    table { 
-      SF Sg Nom => x + "hun";
-      SF Sg Gen => x + "huna";
-      SF Sg Dat => x + "Hunowi";
-      SF Sg Acc => x + "huna";
-      SF Sg Instr => x + "Hunem";
-      SF Sg Loc => x + "hunie";
-      SF Sg Voc => x + "hunie";
-      SF Pl Nom => x + "Hunowie";
-      SF Pl Gen => x + "Hunów";
-      SF Pl Dat => x + "hunom";
-      SF Pl Acc => x + "Hunów";
-      SF Pl Instr => x + "hunami";
-      SF Pl Loc => x + "hunach";
-      SF Pl Voc => x + "Hunowie"
-    };
-
-    oper mkNTable0399: Str -> SubstForm => Str; --%
-    oper mkNTable0399 lexem = 
-      let x = Predef.tk 0 lexem in
-    table { 
-      SF Sg Nom => x + "";
-      SF Sg Gen => x + "a";
-      SF Sg Dat => x + "owi";
-      SF Sg Acc => x + "a";
-      SF Sg Instr => x + "em";
-      SF Sg Loc => x + "u";
-      SF Sg Voc => x + "u";
-      SF Pl Nom => x + "e";
-      SF Pl Gen => x + "ów";
-      SF Pl Dat => x + "om";
-      SF Pl Acc => x + "e";
-      SF Pl Instr => x + "ami";
-      SF Pl Loc => x + "ach";
-      SF Pl Voc => x + "e"
-    };
-
-    oper mkNTable0400: Str -> SubstForm => Str; --%
-    oper mkNTable0400 lexem = 
-      let x = Predef.tk 4 lexem in
-    table { 
-      SF Sg Nom => x + "icek";
-      SF Sg Gen => x + "icka";
-      SF Sg Dat => x + "ickowi";
-      SF Sg Acc => x + "icka";
-      SF Sg Instr => x + "ickiem";
-      SF Sg Loc => x + "icku";
-      SF Sg Voc => x + "icku";
-      SF Pl Nom => x + "Ickowie";
-      SF Pl Gen => x + "icków";
-      SF Pl Dat => x + "ickom";
-      SF Pl Acc => x + "icków";
-      SF Pl Instr => x + "ickami";
-      SF Pl Loc => x + "ickach";
-      SF Pl Voc => x + "Ickowie"
-    };
-
-    oper mkNTable0401: Str -> SubstForm => Str; --%
-    oper mkNTable0401 lexem = 
-      let x = Predef.tk 3 lexem in
-    table { 
-      SF Sg Nom => x + "Ida";
-      SF Sg Gen => x + "idy";
-      SF Sg Dat => x + "idzie";
-      SF Sg Acc => x + "Idę";
-      SF Sg Instr => x + "Idą";
-      SF Sg Loc => x + "idzie";
-      SF Sg Voc => x + "Ido";
-      SF Pl Nom => x + "idy";
-      SF Pl Gen => x + "id";
-      SF Pl Dat => x + "idom";
-      SF Pl Acc => x + "idy";
-      SF Pl Instr => x + "idami";
-      SF Pl Loc => x + "idach";
-      SF Pl Voc => x + "idy"
-    };
-
-    oper mkNTable0402: Str -> SubstForm => Str; --%
-    oper mkNTable0402 lexem = 
-      let x = Predef.tk 1 lexem in
-    table { 
-      SF Sg Nom => x + "a";
-      SF Sg Gen => x + "iej";
-      SF Sg Dat => x + "iej";
-      SF Sg Acc => x + "ą";
-      SF Sg Instr => x + "ą";
-      SF Sg Loc => x + "iej";
-      SF Sg Voc => x + "a";
-      SF Pl Nom => x + "ie";
-      SF Pl Gen => x + "ich";
-      SF Pl Dat => x + "im";
-      SF Pl Acc => x + "ie";
-      SF Pl Instr => x + "imi";
-      SF Pl Loc => x + "ich";
-      SF Pl Voc => x + "ie"
-    };
-
-    oper mkNTable0404: Str -> SubstForm => Str; --%
-    oper mkNTable0404 lexem = 
-      let x = Predef.tk 5 lexem in
-    table { 
-      SF Sg Nom => x + "inkas";
-      SF Sg Gen => x + "inkasa";
-      SF Sg Dat => x + "Inkasowi";
-      SF Sg Acc => x + "inkasa";
-      SF Sg Instr => x + "inkasem";
-      SF Sg Loc => x + "inkasie";
-      SF Sg Voc => x + "inkasie";
-      SF Pl Nom => x + "Inkasi";
-      SF Pl Gen => x + "Inkasów";
-      SF Pl Dat => x + "inkasom";
-      SF Pl Acc => x + "Inkasów";
-      SF Pl Instr => x + "inkasami";
-      SF Pl Loc => x + "inkasach";
-      SF Pl Voc => x + "Inkasi"
-    };
-
-    oper mkNTable0406: Str -> SubstForm => Str; --%
-    oper mkNTable0406 lexem = 
-      let x = Predef.tk 6 lexem in
-    table { 
-      SF Sg Nom => x + "irokez";
-      SF Sg Gen => x + "irokeza";
-      SF Sg Dat => x + "irokezowi";
-      SF Sg Acc => x + "irokeza";
-      SF Sg Instr => x + "irokezem";
-      SF Sg Loc => x + "irokezie";
-      SF Sg Voc => x + "irokezie";
-      SF Pl Nom => x + "Irokezi";
-      SF Pl Gen => x + "irokezów";
-      SF Pl Dat => x + "irokezom";
-      SF Pl Acc => x + "irokezów";
-      SF Pl Instr => x + "irokezami";
-      SF Pl Loc => x + "irokezach";
-      SF Pl Voc => x + "Irokezi"
-    };
-
-    oper mkNTable0407: Str -> SubstForm => Str; --%
-    oper mkNTable0407 lexem = 
-      let x = Predef.tk 5 lexem in
-    table { 
-      SF Sg Nom => x + "Iryda";
-      SF Sg Gen => x + "irydy";
-      SF Sg Dat => x + "irydzie";
-      SF Sg Acc => x + "Irydę";
-      SF Sg Instr => x + "Irydą";
-      SF Sg Loc => x + "irydzie";
-      SF Sg Voc => x + "Irydo";
-      SF Pl Nom => x + "irydy";
-      SF Pl Gen => x + "iryd";
-      SF Pl Dat => x + "irydom";
-      SF Pl Acc => x + "irydy";
-      SF Pl Instr => x + "irydami";
-      SF Pl Loc => x + "irydach";
-      SF Pl Voc => x + "irydy"
-    };
-
-    oper mkNTable0408: Str -> SubstForm => Str; --%
-    oper mkNTable0408 lexem = 
-      let x = Predef.tk 4 lexem in
-    table { 
-      SF Sg Nom => x + "iwan";
-      SF Sg Gen => x + "iwana";
-      SF Sg Dat => x + "iwanowi";
-      SF Sg Acc => x + "iwana";
-      SF Sg Instr => x + "iwanem";
-      SF Sg Loc => x + "iwanie";
-      SF Sg Voc => x + "iwanie";
-      SF Pl Nom => x + "Iwanowie";
-      SF Pl Gen => x + "iwanów";
-      SF Pl Dat => x + "iwanom";
-      SF Pl Acc => x + "iwanów";
-      SF Pl Instr => x + "iwanami";
-      SF Pl Loc => x + "iwanach";
-      SF Pl Voc => x + "Iwanowie"
-    };
-
-    oper mkNTable0409: Str -> SubstForm => Str; --%
-    oper mkNTable0409 lexem = 
-      let x = Predef.tk 3 lexem in
-    table { 
-      SF Sg Nom => x + "iwo";
-      SF Sg Gen => x + "Iwona";
-      SF Sg Dat => x + "Iwonowi";
-      SF Sg Acc => x + "Iwona";
-      SF Sg Instr => x + "Iwonem";
-      SF Sg Loc => x + "Iwonie";
-      SF Sg Voc => x + "iwo";
-      SF Pl Nom => x + "Iwonowie";
-      SF Pl Gen => x + "Iwonów";
-      SF Pl Dat => x + "Iwonom";
-      SF Pl Acc => x + "Iwonów";
-      SF Pl Instr => x + "Iwonami";
-      SF Pl Loc => x + "Iwonach";
-      SF Pl Voc => x + "Iwonowie"
-    };
-
-    oper mkNTable0411: Str -> SubstForm => Str; --%
-    oper mkNTable0411 lexem = 
-      let x = Predef.tk 1 lexem in
-    table { 
-      SF Sg Nom => x + "ń";
-      SF Sg Gen => x + "ni";
-      SF Sg Dat => x + "ni";
-      SF Sg Acc => x + "ń";
-      SF Sg Instr => x + "nią";
-      SF Sg Loc => x + "ni";
-      SF Sg Voc => x + "ni";
-      SF Pl Nom => x + "nie";
-      SF Pl Gen => x + "ni";
-      SF Pl Dat => x + "niom";
-      SF Pl Acc => x + "nie";
-      SF Pl Instr => x + "niami";
-      SF Pl Loc => x + "niach";
-      SF Pl Voc => x + "nie"
-    };
-
-    oper mkNTable0412: Str -> SubstForm => Str; --%
-    oper mkNTable0412 lexem = 
-      let x = Predef.tk 5 lexem in
-    table { 
-      SF Sg Nom => x + "Jacek";
-      SF Sg Gen => x + "jacka";
-      SF Sg Dat => x + "jackowi";
-      SF Sg Acc => x + "jacka";
-      SF Sg Instr => x + "jackiem";
-      SF Sg Loc => x + "jacku";
-      SF Sg Voc => x + "jacku";
-      SF Pl Nom => x + "Jackowie";
-      SF Pl Gen => x + "jacków";
-      SF Pl Dat => x + "jackom";
-      SF Pl Acc => x + "jacków";
-      SF Pl Instr => x + "jackami";
-      SF Pl Loc => x + "jackach";
-      SF Pl Voc => x + "Jackowie"
-    };
-
-    oper mkNTable0413: Str -> SubstForm => Str; --%
-    oper mkNTable0413 lexem = 
-      let x = Predef.tk 4 lexem in
-    table { 
-      SF Sg Nom => x + "jack";
-      SF Sg Gen => x + "jacka";
-      SF Sg Dat => x + "jackowi";
-      SF Sg Acc => x + "jacka";
-      SF Sg Instr => x + "jackiem";
-      SF Sg Loc => x + "jacku";
-      SF Sg Voc => x + "jacku";
-      SF Pl Nom => x + "Jackowie";
-      SF Pl Gen => x + "jacków";
-      SF Pl Dat => x + "jackom";
-      SF Pl Acc => x + "jacków";
-      SF Pl Instr => x + "jackami";
-      SF Pl Loc => x + "jackach";
-      SF Pl Voc => x + "Jackowie"
-    };
-
-    oper mkNTable0414: Str -> SubstForm => Str; --%
-    oper mkNTable0414 lexem = 
-      let x = Predef.tk 6 lexem in
-    table { 
-      SF Sg Nom => x + "Jadzia";
-      SF Sg Gen => x + "Jadzi";
-      SF Sg Dat => x + "Jadzi";
-      SF Sg Acc => x + "Jadzię";
-      SF Sg Instr => x + "Jadzią";
-      SF Sg Loc => x + "Jadzi";
-      SF Sg Voc => x + "Jadziu";
-      SF Pl Nom => x + "jadzie";
-      SF Pl Gen => x + "Jadź";
-      SF Pl Dat => x + "Jadziom";
-      SF Pl Acc => x + "jadzie";
-      SF Pl Instr => x + "Jadziami";
-      SF Pl Loc => x + "Jadziach";
-      SF Pl Voc => x + "jadzie"
-    };
-
-    oper mkNTable0415: Str -> SubstForm => Str; --%
-    oper mkNTable0415 lexem = 
-      let x = Predef.tk 3 lexem in
-    table { 
-      SF Sg Nom => x + "źka";
-      SF Sg Gen => x + "źki";
-      SF Sg Dat => x + "źce";
-      SF Sg Acc => x + "źkę";
-      SF Sg Instr => x + "źką";
-      SF Sg Loc => x + "źce";
-      SF Sg Voc => x + "źko";
-      SF Pl Nom => x + "źki";
-      SF Pl Gen => x + "ziek";
-      SF Pl Dat => x + "źkom";
-      SF Pl Acc => x + "źki";
-      SF Pl Instr => x + "źkami";
-      SF Pl Loc => x + "źkach";
-      SF Pl Voc => x + "źki"
-    };
-
-    oper mkNTable0416: Str -> SubstForm => Str; --%
-    oper mkNTable0416 lexem = 
-      let x = Predef.tk 3 lexem in
-    table { 
-      SF Sg Nom => x + "łło";
-      SF Sg Gen => x + "łły";
-      SF Sg Dat => x + "lle";
-      SF Sg Acc => x + "łłę";
-      SF Sg Instr => x + "łłą";
-      SF Sg Loc => x + "lle";
-      SF Sg Voc => x + "łło";
-      SF Pl Nom => x + "łłowie";
-      SF Pl Gen => x + "łłów";
-      SF Pl Dat => x + "łłom";
-      SF Pl Acc => x + "łłów";
-      SF Pl Instr => x + "łłami";
-      SF Pl Loc => x + "łłach";
-      SF Pl Voc => x + "łłowie"
-    };
-
-    oper mkNTable0417: Str -> SubstForm => Str; --%
-    oper mkNTable0417 lexem = 
-      let x = Predef.tk 3 lexem in
-    table { 
-      SF Sg Nom => x + "oda";
-      SF Sg Gen => x + "ody";
-      SF Sg Dat => x + "odzie";
-      SF Sg Acc => x + "odę";
-      SF Sg Instr => x + "odą";
-      SF Sg Loc => x + "odzie";
-      SF Sg Voc => x + "odo";
-      SF Pl Nom => x + "ody";
-      SF Pl Gen => x + "ód";
-      SF Pl Dat => x + "odom";
-      SF Pl Acc => x + "ody";
-      SF Pl Instr => x + "odami";
-      SF Pl Loc => x + "odach";
-      SF Pl Voc => x + "ody"
-    };
-
-    oper mkNTable0419: Str -> SubstForm => Str; --%
-    oper mkNTable0419 lexem = 
-      let x = Predef.tk 7 lexem in
-    table { 
-      SF Sg Nom => x + "jakubek";
-      SF Sg Gen => x + "jakubka";
-      SF Sg Dat => x + "Jakubkowi";
-      SF Sg Acc => x + "jakubka";
-      SF Sg Instr => x + "Jakubkiem";
-      SF Sg Loc => x + "Jakubku";
-      SF Sg Voc => x + "Jakubku";
-      SF Pl Nom => x + "Jakubkowie";
-      SF Pl Gen => x + "Jakubków";
-      SF Pl Dat => x + "jakubkom";
-      SF Pl Acc => x + "Jakubków";
-      SF Pl Instr => x + "jakubkami";
-      SF Pl Loc => x + "jakubkach";
-      SF Pl Voc => x + "Jakubkowie"
-    };
-
-    oper mkNTable0420: Str -> SubstForm => Str; --%
-    oper mkNTable0420 lexem = 
-      let x = Predef.tk 1 lexem in
-    table { 
-      SF Sg Nom => x + "o";
-      SF Sg Gen => x + "a";
-      SF Sg Dat => x + "owi";
-      SF Sg Acc => x + "a";
-      SF Sg Instr => x + "iem";
-      SF Sg Loc => x + "u";
-      SF Sg Voc => x + "u";
-      SF Pl Nom => x + "owie";
-      SF Pl Gen => x + "ów";
-      SF Pl Dat => x + "om";
-      SF Pl Acc => x + "ów";
-      SF Pl Instr => x + "ami";
-      SF Pl Loc => x + "ach";
-      SF Pl Voc => x + "owie"
-    };
-
-    oper mkNTable0423: Str -> SubstForm => Str; --%
-    oper mkNTable0423 lexem = 
-      let x = Predef.tk 5 lexem in
-    table { 
-      SF Sg Nom => x + "jarek";
-      SF Sg Gen => x + "jarka";
-      SF Sg Dat => x + "Jarkowi";
-      SF Sg Acc => x + "jarka";
-      SF Sg Instr => x + "Jarkiem";
-      SF Sg Loc => x + "Jarku";
-      SF Sg Voc => x + "Jarku";
-      SF Pl Nom => x + "Jarkowie";
-      SF Pl Gen => x + "Jarków";
-      SF Pl Dat => x + "jarkom";
-      SF Pl Acc => x + "Jarków";
-      SF Pl Instr => x + "jarkami";
-      SF Pl Loc => x + "jarkach";
-      SF Pl Voc => x + "Jarkowie"
-    };
-
-    oper mkNTable0424: Str -> SubstForm => Str; --%
-    oper mkNTable0424 lexem = 
-      let x = Predef.tk 6 lexem in
-    table { 
-      SF Sg Nom => x + "jarosz";
-      SF Sg Gen => x + "jarosza";
-      SF Sg Dat => x + "jaroszowi";
-      SF Sg Acc => x + "jarosza";
-      SF Sg Instr => x + "jaroszem";
-      SF Sg Loc => x + "jaroszu";
-      SF Sg Voc => x + "jaroszu";
-      SF Pl Nom => x + "Jaroszowie";
-      SF Pl Gen => x + "jaroszów";
-      SF Pl Dat => x + "jaroszom";
-      SF Pl Acc => x + "jaroszów";
-      SF Pl Instr => x + "jaroszami";
-      SF Pl Loc => x + "jaroszach";
-      SF Pl Voc => x + "Jaroszowie"
-    };
-
-    oper mkNTable0425: Str -> SubstForm => Str; --%
-    oper mkNTable0425 lexem = 
-      let x = Predef.tk 5 lexem in
-    table { 
-      SF Sg Nom => x + "jasia";
-      SF Sg Gen => x + "Jasi";
-      SF Sg Dat => x + "Jasi";
-      SF Sg Acc => x + "Jasię";
-      SF Sg Instr => x + "Jasią";
-      SF Sg Loc => x + "Jasi";
-      SF Sg Voc => x + "jasiu";
-      SF Pl Nom => x + "jasie";
-      SF Pl Gen => x + "jaś";
-      SF Pl Dat => x + "jasiom";
-      SF Pl Acc => x + "jasie";
-      SF Pl Instr => x + "jasiami";
-      SF Pl Loc => x + "jasiach";
-      SF Pl Voc => x + "jasie"
-    };
-
-    oper mkNTable0426: Str -> SubstForm => Str; --%
-    oper mkNTable0426 lexem = 
-      let x = Predef.tk 6 lexem in
-    table { 
-      SF Sg Nom => x + "jasiek";
-      SF Sg Gen => x + "jaśka";
-      SF Sg Dat => x + "jaśkowi";
-      SF Sg Acc => x + "jaśka";
-      SF Sg Instr => x + "jaśkiem";
-      SF Sg Loc => x + "jaśku";
-      SF Sg Voc => x + "jaśku";
-      SF Pl Nom => x + "Jaśkowie";
-      SF Pl Gen => x + "jaśków";
-      SF Pl Dat => x + "jaśkom";
-      SF Pl Acc => x + "jaśków";
-      SF Pl Instr => x + "jaśkami";
-      SF Pl Loc => x + "jaśkach";
-      SF Pl Voc => x + "Jaśkowie"
-    };
-
-    oper mkNTable0427: Str -> SubstForm => Str; --%
-    oper mkNTable0427 lexem = 
-      let x = Predef.tk 1 lexem in
-    table { 
-      SF Sg Nom => x + "ń";
-      SF Sg Gen => x + "nia";
-      SF Sg Dat => x + "niowi";
-      SF Sg Acc => x + "ń";
-      SF Sg Instr => x + "niem";
-      SF Sg Loc => x + "niu";
-      SF Sg Voc => x + "niu";
-      SF Pl Nom => x + "nie";
-      SF Pl Gen => x + "niów";
-      SF Pl Dat => x + "niom";
-      SF Pl Acc => x + "nie";
-      SF Pl Instr => x + "niami";
-      SF Pl Loc => x + "niach";
-      SF Pl Voc => x + "nie"
-    };
-
-    oper mkNTable0428: Str -> SubstForm => Str; --%
-    oper mkNTable0428 lexem = 
-      let x = Predef.tk 5 lexem in
-    table { 
-      SF Sg Nom => x + "Jasio";
-      SF Sg Gen => x + "jasia";
-      SF Sg Dat => x + "jasiowi";
-      SF Sg Acc => x + "jasia";
-      SF Sg Instr => x + "jasiem";
-      SF Sg Loc => x + "jasiu";
-      SF Sg Voc => x + "jasiu";
-      SF Pl Nom => x + "Jasiowie";
-      SF Pl Gen => x + "jasiów";
-      SF Pl Dat => x + "jasiom";
-      SF Pl Acc => x + "jasiów";
-      SF Pl Instr => x + "jasiami";
-      SF Pl Loc => x + "jasiach";
-      SF Pl Voc => x + "Jasiowie"
-    };
-
-    oper mkNTable0429: Str -> SubstForm => Str; --%
-    oper mkNTable0429 lexem = 
-      let x = Predef.tk 7 lexem in
-    table { 
-      SF Sg Nom => x + "jastrun";
-      SF Sg Gen => x + "jastruna";
-      SF Sg Dat => x + "jastrunowi";
-      SF Sg Acc => x + "jastruna";
-      SF Sg Instr => x + "jastrunem";
-      SF Sg Loc => x + "jastrunie";
-      SF Sg Voc => x + "jastrunie";
-      SF Pl Nom => x + "Jastrunowie";
-      SF Pl Gen => x + "jastrunów";
-      SF Pl Dat => x + "jastrunom";
-      SF Pl Acc => x + "jastrunów";
-      SF Pl Instr => x + "jastrunami";
-      SF Pl Loc => x + "jastrunach";
-      SF Pl Voc => x + "Jastrunowie"
-    };
-
-    oper mkNTable0430: Str -> SubstForm => Str; --%
-    oper mkNTable0430 lexem = 
-      let x = Predef.tk 3 lexem in
-    table { 
-      SF Sg Nom => x + "sło";
-      SF Sg Gen => x + "sła";
-      SF Sg Dat => x + "słu";
-      SF Sg Acc => x + "sło";
-      SF Sg Instr => x + "słem";
-      SF Sg Loc => x + "śle";
-      SF Sg Voc => x + "sło";
-      SF Pl Nom => x + "sła";
-      SF Pl Gen => x + "seł";
-      SF Pl Dat => x + "słom";
-      SF Pl Acc => x + "sła";
-      SF Pl Instr => x + "słami";
-      SF Pl Loc => x + "słach";
-      SF Pl Voc => x + "sła"
-    };
-
-    oper mkNTable0431: Str -> SubstForm => Str; --%
-    oper mkNTable0431 lexem = 
-      let x = Predef.tk 1 lexem in
-    table { 
-      SF Sg Nom => x + "a";
-      SF Sg Gen => x + "y";
-      SF Sg Dat => x + "ie";
-      SF Sg Acc => x + "ę";
-      SF Sg Instr => x + "ą";
-      SF Sg Loc => x + "ie";
-      SF Sg Voc => x + "o";
-      SF Pl Nom => x + "y";
-      SF Pl Gen => x + "a";
-      SF Pl Dat => x + "a";
-      SF Pl Acc => x + "y";
-      SF Pl Instr => x + "a";
-      SF Pl Loc => x + "ach";
-      SF Pl Voc => x + "y"
-    };
-
-    oper mkNTable0433: Str -> SubstForm => Str; --%
-    oper mkNTable0433 lexem = 
-      let x = Predef.tk 5 lexem in
-    table { 
-      SF Sg Nom => x + "Jaśko";
-      SF Sg Gen => x + "jaśka";
-      SF Sg Dat => x + "jaśkowi";
-      SF Sg Acc => x + "jaśka";
-      SF Sg Instr => x + "jaśkiem";
-      SF Sg Loc => x + "jaśku";
-      SF Sg Voc => x + "jaśku";
-      SF Pl Nom => x + "Jaśkowie";
-      SF Pl Gen => x + "jaśków";
-      SF Pl Dat => x + "jaśkom";
-      SF Pl Acc => x + "jaśków";
-      SF Pl Instr => x + "jaśkami";
-      SF Pl Loc => x + "jaśkach";
-      SF Pl Voc => x + "Jaśkowie"
-    };
-
-    oper mkNTable0434: Str -> SubstForm => Str; --%
-    oper mkNTable0434 lexem = 
-      let x = Predef.tk 2 lexem in
-    table { 
-      SF Sg Nom => x + "ec";
-      SF Sg Gen => x + "ca";
-      SF Sg Dat => x + "cowi";
-      SF Sg Acc => x + "ca";
-      SF Sg Instr => x + "cem";
-      SF Sg Loc => x + "cu";
-      SF Sg Voc => x + "cu";
-      SF Pl Nom => x + "ce";
-      SF Pl Gen => x + "ców";
-      SF Pl Dat => x + "com";
-      SF Pl Acc => x + "ce";
-      SF Pl Instr => x + "cami";
-      SF Pl Loc => x + "cach";
-      SF Pl Voc => x + "ce"
-    };
-
-    oper mkNTable0435: Str -> SubstForm => Str; --%
-    oper mkNTable0435 lexem = 
-      let x = Predef.tk 1 lexem in
-    table { 
-      SF Sg Nom => x + "a";
-      SF Sg Gen => x + "y";
-      SF Sg Dat => x + "ie";
-      SF Sg Acc => x + "ę";
-      SF Sg Instr => x + "ą";
-      SF Sg Loc => x + "ie";
-      SF Sg Voc => x + "o";
-      SF Pl Nom => x + "i";
-      SF Pl Gen => x + "ów";
-      SF Pl Dat => x + "om";
-      SF Pl Acc => x + "ów";
-      SF Pl Instr => x + "ami";
-      SF Pl Loc => x + "ach";
-      SF Pl Voc => x + "i"
-    };
-
-    oper mkNTable0436: Str -> SubstForm => Str; --%
-    oper mkNTable0436 lexem = 
-      let x = Predef.tk 6 lexem in
-    table { 
-      SF Sg Nom => x + "Jelena";
-      SF Sg Gen => x + "Jeleny";
-      SF Sg Dat => x + "jelenie";
-      SF Sg Acc => x + "Jelenę";
-      SF Sg Instr => x + "Jeleną";
-      SF Sg Loc => x + "jelenie";
-      SF Sg Voc => x + "Jeleno";
-      SF Pl Nom => x + "Jeleny";
-      SF Pl Gen => x + "Jelen";
-      SF Pl Dat => x + "Jelenom";
-      SF Pl Acc => x + "Jeleny";
-      SF Pl Instr => x + "Jelenami";
-      SF Pl Loc => x + "Jelenach";
-      SF Pl Voc => x + "Jeleny"
-    };
-
-    oper mkNTable0437: Str -> SubstForm => Str; --%
-    oper mkNTable0437 lexem = 
-      let x = Predef.tk 6 lexem in
-    table { 
-      SF Sg Nom => x + "jerzyk";
-      SF Sg Gen => x + "jerzyka";
-      SF Sg Dat => x + "jerzykowi";
-      SF Sg Acc => x + "jerzyka";
-      SF Sg Instr => x + "jerzykiem";
-      SF Sg Loc => x + "jerzyku";
-      SF Sg Voc => x + "jerzyku";
-      SF Pl Nom => x + "Jerzykowie";
-      SF Pl Gen => x + "jerzyków";
-      SF Pl Dat => x + "jerzykom";
-      SF Pl Acc => x + "jerzyków";
-      SF Pl Instr => x + "jerzykami";
-      SF Pl Loc => x + "jerzykach";
-      SF Pl Voc => x + "Jerzykowie"
-    };
-
-    oper mkNTable0440: Str -> SubstForm => Str; --%
-    oper mkNTable0440 lexem = 
-      let x = Predef.tk 0 lexem in
-    table { 
-      SF Sg Nom => x + "";
-      SF Sg Gen => x + "a";
-      SF Sg Dat => x + "";
-      SF Sg Acc => x + "a";
-      SF Sg Instr => x + "";
-      SF Sg Loc => x + "";
-      SF Sg Voc => x + "";
-      SF Pl Nom => x + "";
-      SF Pl Gen => x + "";
-      SF Pl Dat => x + "";
-      SF Pl Acc => x + "";
-      SF Pl Instr => x + "";
-      SF Pl Loc => x + "";
-      SF Pl Voc => x + ""
-    };
-
-    oper mkNTable0441: Str -> SubstForm => Str; --%
-    oper mkNTable0441 lexem = 
-      let x = Predef.tk 7 lexem in
-    table { 
-      SF Sg Nom => x + "jonatan";
-      SF Sg Gen => x + "jonatana";
-      SF Sg Dat => x + "jonatanowi";
-      SF Sg Acc => x + "jonatana";
-      SF Sg Instr => x + "jonatanem";
-      SF Sg Loc => x + "jonatanie";
-      SF Sg Voc => x + "jonatanie";
-      SF Pl Nom => x + "Jonatanowie";
-      SF Pl Gen => x + "jonatanów";
-      SF Pl Dat => x + "jonatanom";
-      SF Pl Acc => x + "jonatanów";
-      SF Pl Instr => x + "jonatanami";
-      SF Pl Loc => x + "jonatanach";
-      SF Pl Voc => x + "Jonatanowie"
-    };
-
-    oper mkNTable0442: Str -> SubstForm => Str; --%
-    oper mkNTable0442 lexem = 
-      let x = Predef.tk 6 lexem in
-    table { 
-      SF Sg Nom => x + "jordan";
-      SF Sg Gen => x + "Jordana";
-      SF Sg Dat => x + "jordanowi";
-      SF Sg Acc => x + "Jordana";
-      SF Sg Instr => x + "jordanem";
-      SF Sg Loc => x + "jordanie";
-      SF Sg Voc => x + "jordanie";
-      SF Pl Nom => x + "Jordanowie";
-      SF Pl Gen => x + "jordanów";
-      SF Pl Dat => x + "jordanom";
-      SF Pl Acc => x + "jordanów";
-      SF Pl Instr => x + "jordanami";
-      SF Pl Loc => x + "jordanach";
-      SF Pl Voc => x + "Jordanowie"
-    };
-
-    oper mkNTable0444: Str -> SubstForm => Str; --%
-    oper mkNTable0444 lexem = 
-      let x = Predef.tk 2 lexem in
-    table { 
-      SF Sg Nom => x + "ph";
-      SF Sg Gen => x + "pha";
-      SF Sg Dat => x + "phowi";
-      SF Sg Acc => x + "pha";
-      SF Sg Instr => x + "phem";
-      SF Sg Loc => x + "fie";
-      SF Sg Voc => x + "fie";
-      SF Pl Nom => x + "phowie";
-      SF Pl Gen => x + "phów";
-      SF Pl Dat => x + "phom";
-      SF Pl Acc => x + "phów";
-      SF Pl Instr => x + "phami";
-      SF Pl Loc => x + "phach";
-      SF Pl Voc => x + "phowie"
-    };
-
-    oper mkNTable0445: Str -> SubstForm => Str; --%
-    oper mkNTable0445 lexem = 
-      let x = Predef.tk 6 lexem in
-    table { 
-      SF Sg Nom => x + "kaczor";
-      SF Sg Gen => x + "kaczora";
-      SF Sg Dat => x + "kaczorowi";
-      SF Sg Acc => x + "kaczora";
-      SF Sg Instr => x + "kaczorem";
-      SF Sg Loc => x + "kaczorze";
-      SF Sg Voc => x + "kaczorze";
-      SF Pl Nom => x + "Kaczorowie";
-      SF Pl Gen => x + "kaczorów";
-      SF Pl Dat => x + "kaczorom";
-      SF Pl Acc => x + "kaczorów";
-      SF Pl Instr => x + "kaczorami";
-      SF Pl Loc => x + "kaczorach";
-      SF Pl Voc => x + "Kaczorowie"
-    };
-
-    oper mkNTable0446: Str -> SubstForm => Str; --%
-    oper mkNTable0446 lexem = 
-      let x = Predef.tk 6 lexem in
-    table { 
-      SF Sg Nom => x + "kajtek";
-      SF Sg Gen => x + "kajtka";
-      SF Sg Dat => x + "kajtkowi";
-      SF Sg Acc => x + "kajtka";
-      SF Sg Instr => x + "kajtkiem";
-      SF Sg Loc => x + "kajtku";
-      SF Sg Voc => x + "kajtku";
-      SF Pl Nom => x + "Kajtkowie";
-      SF Pl Gen => x + "kajtków";
-      SF Pl Dat => x + "kajtkom";
-      SF Pl Acc => x + "kajtków";
-      SF Pl Instr => x + "kajtkami";
-      SF Pl Loc => x + "kajtkach";
-      SF Pl Voc => x + "Kajtkowie"
-    };
-
-    oper mkNTable0447: Str -> SubstForm => Str; --%
-    oper mkNTable0447 lexem = 
-      let x = Predef.tk 5 lexem in
-    table { 
-      SF Sg Nom => x + "kania";
-      SF Sg Gen => x + "kani";
-      SF Sg Dat => x + "kani";
-      SF Sg Acc => x + "kanię";
-      SF Sg Instr => x + "kanią";
-      SF Sg Loc => x + "kani";
-      SF Sg Voc => x + "kanio";
-      SF Pl Nom => x + "Kaniowie";
-      SF Pl Gen => x + "Kaniów";
-      SF Pl Dat => x + "kaniom";
-      SF Pl Acc => x + "Kaniów";
-      SF Pl Instr => x + "kaniami";
-      SF Pl Loc => x + "kaniach";
-      SF Pl Voc => x + "Kaniowie"
-    };
-
-    oper mkNTable0448: Str -> SubstForm => Str; --%
-    oper mkNTable0448 lexem = 
-      let x = Predef.tk 4 lexem in
-    table { 
-      SF Sg Nom => x + "kant";
-      SF Sg Gen => x + "Kanta";
-      SF Sg Dat => x + "kantowi";
-      SF Sg Acc => x + "Kanta";
-      SF Sg Instr => x + "kantem";
-      SF Sg Loc => x + "kancie";
-      SF Sg Voc => x + "kancie";
-      SF Pl Nom => x + "Kantowie";
-      SF Pl Gen => x + "kantów";
-      SF Pl Dat => x + "kantom";
-      SF Pl Acc => x + "kantów";
-      SF Pl Instr => x + "kantami";
-      SF Pl Loc => x + "kantach";
-      SF Pl Voc => x + "Kantowie"
-    };
-
-    oper mkNTable0449: Str -> SubstForm => Str; --%
-    oper mkNTable0449 lexem = 
-      let x = Predef.tk 0 lexem in
-    table { 
-      SF Sg Nom => x + "";
-      SF Sg Gen => x + "u";
-      SF Sg Dat => x + "";
-      SF Sg Acc => x + "";
-      SF Sg Instr => x + "";
-      SF Sg Loc => x + "";
-      SF Sg Voc => x + "";
-      SF Pl Nom => x + "";
-      SF Pl Gen => x + "";
-      SF Pl Dat => x + "";
-      SF Pl Acc => x + "";
-      SF Pl Instr => x + "";
-      SF Pl Loc => x + "";
-      SF Pl Voc => x + ""
-    };
-
-    oper mkNTable0452: Str -> SubstForm => Str; --%
-    oper mkNTable0452 lexem = 
-      let x = Predef.tk 4 lexem in
-    table { 
-      SF Sg Nom => x + "Karl";
-      SF Sg Gen => x + "Karla";
-      SF Sg Dat => x + "Karlowi";
-      SF Sg Acc => x + "Karla";
-      SF Sg Instr => x + "Karlem";
-      SF Sg Loc => x + "Karlu";
-      SF Sg Voc => x + "Karlu";
-      SF Pl Nom => x + "karle";
-      SF Pl Gen => x + "Karlów";
-      SF Pl Dat => x + "Karlom";
-      SF Pl Acc => x + "Karlów";
-      SF Pl Instr => x + "Karlami";
-      SF Pl Loc => x + "Karlach";
-      SF Pl Voc => x + "karle"
-    };
-
-    oper mkNTable0453: Str -> SubstForm => Str; --%
-    oper mkNTable0453 lexem = 
-      let x = Predef.tk 6 lexem in
-    table { 
-      SF Sg Nom => x + "karlik";
-      SF Sg Gen => x + "karlika";
-      SF Sg Dat => x + "karlikowi";
-      SF Sg Acc => x + "karlika";
-      SF Sg Instr => x + "karlikiem";
-      SF Sg Loc => x + "karliku";
-      SF Sg Voc => x + "karliku";
-      SF Pl Nom => x + "Karlikowie";
-      SF Pl Gen => x + "karlików";
-      SF Pl Dat => x + "karlikom";
-      SF Pl Acc => x + "karlików";
-      SF Pl Instr => x + "karlikami";
-      SF Pl Loc => x + "karlikach";
-      SF Pl Voc => x + "Karlikowie"
-    };
-
-    oper mkNTable0454: Str -> SubstForm => Str; --%
-    oper mkNTable0454 lexem = 
-      let x = Predef.tk 7 lexem in
-    table { 
-      SF Sg Nom => x + "karolek";
-      SF Sg Gen => x + "karolka";
-      SF Sg Dat => x + "karolkowi";
-      SF Sg Acc => x + "karolka";
-      SF Sg Instr => x + "karolkiem";
-      SF Sg Loc => x + "karolku";
-      SF Sg Voc => x + "karolku";
-      SF Pl Nom => x + "Karolkowie";
-      SF Pl Gen => x + "karolków";
-      SF Pl Dat => x + "karolkom";
-      SF Pl Acc => x + "karolków";
-      SF Pl Instr => x + "karolkami";
-      SF Pl Loc => x + "karolkach";
-      SF Pl Voc => x + "Karolkowie"
-    };
-
-    oper mkNTable0455: Str -> SubstForm => Str; --%
-    oper mkNTable0455 lexem = 
-      let x = Predef.tk 7 lexem in
-    table { 
-      SF Sg Nom => x + "karolka";
-      SF Sg Gen => x + "karolki";
-      SF Sg Dat => x + "Karolce";
-      SF Sg Acc => x + "Karolkę";
-      SF Sg Instr => x + "Karolką";
-      SF Sg Loc => x + "Karolce";
-      SF Sg Voc => x + "Karolko";
-      SF Pl Nom => x + "karolki";
-      SF Pl Gen => x + "karolek";
-      SF Pl Dat => x + "karolkom";
-      SF Pl Acc => x + "karolki";
-      SF Pl Instr => x + "karolkami";
-      SF Pl Loc => x + "karolkach";
-      SF Pl Voc => x + "karolki"
-    };
-
-    oper mkNTable0456: Str -> SubstForm => Str; --%
-    oper mkNTable0456 lexem = 
-      let x = Predef.tk 0 lexem in
-    table { 
-      SF Sg Nom => x + "";
-      SF Sg Gen => x + "ia";
-      SF Sg Dat => x + "iowi";
-      SF Sg Acc => x + "ia";
-      SF Sg Instr => x + "iem";
-      SF Sg Loc => x + "iu";
-      SF Sg Voc => x + "iu";
-      SF Pl Nom => x + "ie";
-      SF Pl Gen => x + "i";
-      SF Pl Dat => x + "iom";
-      SF Pl Acc => x + "i";
-      SF Pl Instr => x + "iami";
-      SF Pl Loc => x + "iach";
-      SF Pl Voc => x + "ie"
-    };
-
-    oper mkNTable0457: Str -> SubstForm => Str; --%
-    oper mkNTable0457 lexem = 
-      let x = Predef.tk 5 lexem in
-    table { 
-      SF Sg Nom => x + "Kasia";
-      SF Sg Gen => x + "Kasi";
-      SF Sg Dat => x + "Kasi";
-      SF Sg Acc => x + "Kasię";
-      SF Sg Instr => x + "Kasią";
-      SF Sg Loc => x + "Kasi";
-      SF Sg Voc => x + "Kasiu";
-      SF Pl Nom => x + "kasie";
-      SF Pl Gen => x + "Kaś";
-      SF Pl Dat => x + "Kasiom";
-      SF Pl Acc => x + "kasie";
-      SF Pl Instr => x + "Kasiami";
-      SF Pl Loc => x + "Kasiach";
-      SF Pl Voc => x + "kasie"
-    };
-
-    oper mkNTable0458: Str -> SubstForm => Str; --%
-    oper mkNTable0458 lexem = 
-      let x = Predef.tk 3 lexem in
-    table { 
-      SF Sg Nom => x + "ńka";
-      SF Sg Gen => x + "ńki";
-      SF Sg Dat => x + "ńce";
-      SF Sg Acc => x + "ńkę";
-      SF Sg Instr => x + "ńką";
-      SF Sg Loc => x + "ńce";
-      SF Sg Voc => x + "ńko";
-      SF Pl Nom => x + "ńki";
-      SF Pl Gen => x + "niek";
-      SF Pl Dat => x + "ńkom";
-      SF Pl Acc => x + "ńki";
-      SF Pl Instr => x + "ńkami";
-      SF Pl Loc => x + "ńkach";
-      SF Pl Voc => x + "ńki"
-    };
-
-    oper mkNTable0459: Str -> SubstForm => Str; --%
-    oper mkNTable0459 lexem = 
-      let x = Predef.tk 6 lexem in
-    table { 
-      SF Sg Nom => x + "kastor";
-      SF Sg Gen => x + "kastora";
-      SF Sg Dat => x + "kastorowi";
-      SF Sg Acc => x + "kastora";
-      SF Sg Instr => x + "kastorem";
-      SF Sg Loc => x + "kastorze";
-      SF Sg Voc => x + "kastorze";
-      SF Pl Nom => x + "Kastorowie";
-      SF Pl Gen => x + "kastorów";
-      SF Pl Dat => x + "kastorom";
-      SF Pl Acc => x + "kastorów";
-      SF Pl Instr => x + "kastorami";
-      SF Pl Loc => x + "kastorach";
-      SF Pl Voc => x + "Kastorowie"
-    };
-
-    oper mkNTable0460: Str -> SubstForm => Str; --%
-    oper mkNTable0460 lexem = 
-      let x = Predef.tk 4 lexem in
-    table { 
-      SF Sg Nom => x + "kato";
-      SF Sg Gen => x + "katona";
-      SF Sg Dat => x + "katonowi";
-      SF Sg Acc => x + "katona";
-      SF Sg Instr => x + "katonem";
-      SF Sg Loc => x + "katonie";
-      SF Sg Voc => x + "katonie";
-      SF Pl Nom => x + "Katonowie";
-      SF Pl Gen => x + "katonów";
-      SF Pl Dat => x + "katonom";
-      SF Pl Acc => x + "katonów";
-      SF Pl Instr => x + "katonami";
-      SF Pl Loc => x + "katonach";
-      SF Pl Voc => x + "Katonowie"
-    };
-
-    oper mkNTable0461: Str -> SubstForm => Str; --%
-    oper mkNTable0461 lexem = 
-      let x = Predef.tk 6 lexem in
-    table { 
-      SF Sg Nom => x + "kaukaz";
-      SF Sg Gen => x + "Kaukazu";
-      SF Sg Dat => x + "kaukazowi";
-      SF Sg Acc => x + "kaukaz";
-      SF Sg Instr => x + "kaukazem";
-      SF Sg Loc => x + "kaukazie";
-      SF Sg Voc => x + "kaukazie";
-      SF Pl Nom => x + "kaukazy";
-      SF Pl Gen => x + "kaukazów";
-      SF Pl Dat => x + "kaukazom";
-      SF Pl Acc => x + "kaukazy";
-      SF Pl Instr => x + "kaukazami";
-      SF Pl Loc => x + "kaukazach";
-      SF Pl Voc => x + "kaukazy"
-    };
-
-    oper mkNTable0462: Str -> SubstForm => Str; --%
-    oper mkNTable0462 lexem = 
-      let x = Predef.tk 4 lexem in
-    table { 
-      SF Sg Nom => x + "kawa";
-      SF Sg Gen => x + "kawy";
-      SF Sg Dat => x + "kawie";
-      SF Sg Acc => x + "kawę";
-      SF Sg Instr => x + "kawą";
-      SF Sg Loc => x + "kawie";
-      SF Sg Voc => x + "kawo";
-      SF Pl Nom => x + "Kawowie";
-      SF Pl Gen => x + "Kawów";
-      SF Pl Dat => x + "kawom";
-      SF Pl Acc => x + "Kawów";
-      SF Pl Instr => x + "kawami";
-      SF Pl Loc => x + "kawach";
-      SF Pl Voc => x + "Kawowie"
-    };
-
-    oper mkNTable0463: Str -> SubstForm => Str; --%
-    oper mkNTable0463 lexem = 
-      let x = Predef.tk 5 lexem in
-    table { 
-      SF Sg Nom => x + "Kazan";
-      SF Sg Gen => x + "Kazana";
-      SF Sg Dat => x + "Kazanowi";
-      SF Sg Acc => x + "Kazana";
-      SF Sg Instr => x + "Kazanem";
-      SF Sg Loc => x + "kazanie";
-      SF Sg Voc => x + "kazanie";
-      SF Pl Nom => x + "Kazanowie";
-      SF Pl Gen => x + "Kazanów";
-      SF Pl Dat => x + "Kazanom";
-      SF Pl Acc => x + "Kazanów";
-      SF Pl Instr => x + "Kazanami";
-      SF Pl Loc => x + "Kazanach";
-      SF Pl Voc => x + "Kazanowie"
-    };
-
-    oper mkNTable0464: Str -> SubstForm => Str; --%
-    oper mkNTable0464 lexem = 
-      let x = Predef.tk 8 lexem in
-    table { 
-      SF Sg Nom => x + "kańczuga";
-      SF Sg Gen => x + "kańczugi";
-      SF Sg Dat => x + "Kańczudze";
-      SF Sg Acc => x + "Kańczugę";
-      SF Sg Instr => x + "Kańczugą";
-      SF Sg Loc => x + "Kańczudze";
-      SF Sg Voc => x + "Kańczugo";
-      SF Pl Nom => x + "kańczugi";
-      SF Pl Gen => x + "kańczug";
-      SF Pl Dat => x + "kańczugom";
-      SF Pl Acc => x + "kańczugi";
-      SF Pl Instr => x + "kańczugami";
-      SF Pl Loc => x + "kańczugach";
-      SF Pl Voc => x + "kańczugi"
-    };
-
-    oper mkNTable0465: Str -> SubstForm => Str; --%
-    oper mkNTable0465 lexem = 
-      let x = Predef.tk 5 lexem in
-    table { 
-      SF Sg Nom => x + "kedyw";
-      SF Sg Gen => x + "Kedywu";
-      SF Sg Dat => x + "kedywowi";
-      SF Sg Acc => x + "kedyw";
-      SF Sg Instr => x + "kedywem";
-      SF Sg Loc => x + "kedywie";
-      SF Sg Voc => x + "kedywie";
-      SF Pl Nom => x + "kedywy";
-      SF Pl Gen => x + "kedywów";
-      SF Pl Dat => x + "kedywom";
-      SF Pl Acc => x + "kedywy";
-      SF Pl Instr => x + "kedywami";
-      SF Pl Loc => x + "kedywach";
-      SF Pl Voc => x + "kedywy"
-    };
-
-    oper mkNTable0466: Str -> SubstForm => Str; --%
-    oper mkNTable0466 lexem = 
-      let x = lexem in
-    table { 
-      SF Sg Nom => x + "";
-      SF Sg Gen => x + "";
-      SF Sg Dat => x + "owi";
-      SF Sg Acc => x + "";
-      SF Sg Instr => x + "em";
-      SF Sg Loc => x + "";
-      SF Sg Voc => x + "";
-      SF Pl Nom => x + "y";
-      SF Pl Gen => x + "ów";
-      SF Pl Dat => x + "om";
-      SF Pl Acc => x + "y";
-      SF Pl Instr => x + "ami";
-      SF Pl Loc => x + "ach";
-      SF Pl Voc => x + "y"
-    };
-
-    oper mkNTable0467: Str -> SubstForm => Str; --%
-    oper mkNTable0467 lexem = 
-      let x = Predef.tk 1 lexem in
-    table { 
-      SF Sg Nom => x + "ź";
-      SF Sg Gen => x + "zia";
-      SF Sg Dat => x + "ziowi";
-      SF Sg Acc => x + "zia";
-      SF Sg Instr => x + "ziem";
-      SF Sg Loc => x + "ziu";
-      SF Sg Voc => x + "ziu";
-      SF Pl Nom => x + "ziowie";
-      SF Pl Gen => x + "ziów";
-      SF Pl Dat => x + "ziom";
-      SF Pl Acc => x + "ziów";
-      SF Pl Instr => x + "ziami";
-      SF Pl Loc => x + "ziach";
-      SF Pl Voc => x + "ziowie"
-    };
-
-    oper mkNTable0468: Str -> SubstForm => Str; --%
-    oper mkNTable0468 lexem = 
-      let x = Predef.tk 8 lexem in
-    table { 
-      SF Sg Nom => x + "kiełbasa";
-      SF Sg Gen => x + "kiełbasy";
-      SF Sg Dat => x + "kiełbasie";
-      SF Sg Acc => x + "kiełbasę";
-      SF Sg Instr => x + "kiełbasą";
-      SF Sg Loc => x + "kiełbasie";
-      SF Sg Voc => x + "kiełbaso";
-      SF Pl Nom => x + "Kiełbasowie";
-      SF Pl Gen => x + "Kiełbasów";
-      SF Pl Dat => x + "kiełbasom";
-      SF Pl Acc => x + "Kiełbasów";
-      SF Pl Instr => x + "kiełbasami";
-      SF Pl Loc => x + "kiełbasach";
-      SF Pl Voc => x + "Kiełbasowie"
-    };
-
-    oper mkNTable0470: Str -> SubstForm => Str; --%
-    oper mkNTable0470 lexem = 
-      let x = Predef.tk 4 lexem in
-    table { 
-      SF Sg Nom => x + "king";
-      SF Sg Gen => x + "Kinga";
-      SF Sg Dat => x + "kingowi";
-      SF Sg Acc => x + "Kinga";
-      SF Sg Instr => x + "kingiem";
-      SF Sg Loc => x + "kingu";
-      SF Sg Voc => x + "kingu";
-      SF Pl Nom => x + "Kingowie";
-      SF Pl Gen => x + "kingów";
-      SF Pl Dat => x + "kingom";
-      SF Pl Acc => x + "kingów";
-      SF Pl Instr => x + "kingami";
-      SF Pl Loc => x + "kingach";
-      SF Pl Voc => x + "Kingowie"
-    };
-
-    oper mkNTable0471: Str -> SubstForm => Str; --%
-    oper mkNTable0471 lexem = 
-      let x = Predef.tk 5 lexem in
-    table { 
-      SF Sg Nom => x + "Kinga";
-      SF Sg Gen => x + "kingi";
-      SF Sg Dat => x + "Kindze";
-      SF Sg Acc => x + "Kingę";
-      SF Sg Instr => x + "Kingą";
-      SF Sg Loc => x + "Kindze";
-      SF Sg Voc => x + "Kingo";
-      SF Pl Nom => x + "kingi";
-      SF Pl Gen => x + "king";
-      SF Pl Dat => x + "kingom";
-      SF Pl Acc => x + "kingi";
-      SF Pl Instr => x + "kingami";
-      SF Pl Loc => x + "kingach";
-      SF Pl Voc => x + "kingi"
-    };
-
-    oper mkNTable0472: Str -> SubstForm => Str; --%
-    oper mkNTable0472 lexem = 
-      let x = Predef.tk 5 lexem in
-    table { 
-      SF Sg Nom => x + "Kinia";
-      SF Sg Gen => x + "Kini";
-      SF Sg Dat => x + "Kini";
-      SF Sg Acc => x + "Kinię";
-      SF Sg Instr => x + "Kinią";
-      SF Sg Loc => x + "Kini";
-      SF Sg Voc => x + "Kinio";
-      SF Pl Nom => x + "kinie";
-      SF Pl Gen => x + "Kiń";
-      SF Pl Dat => x + "Kiniom";
-      SF Pl Acc => x + "kinie";
-      SF Pl Instr => x + "Kiniami";
-      SF Pl Loc => x + "Kiniach";
-      SF Pl Voc => x + "kinie"
-    };
-
-    oper mkNTable0473: Str -> SubstForm => Str; --%
-    oper mkNTable0473 lexem = 
-      let x = Predef.tk 4 lexem in
-    table { 
-      SF Sg Nom => x + "Kira";
-      SF Sg Gen => x + "kiry";
-      SF Sg Dat => x + "kirze";
-      SF Sg Acc => x + "Kirę";
-      SF Sg Instr => x + "Kirą";
-      SF Sg Loc => x + "kirze";
-      SF Sg Voc => x + "Kiro";
-      SF Pl Nom => x + "kiry";
-      SF Pl Gen => x + "kir";
-      SF Pl Dat => x + "kirom";
-      SF Pl Acc => x + "kiry";
-      SF Pl Instr => x + "kirami";
-      SF Pl Loc => x + "kirach";
-      SF Pl Voc => x + "kiry"
-    };
-
-    oper mkNTable0474: Str -> SubstForm => Str; --%
-    oper mkNTable0474 lexem = 
-      let x = Predef.tk 7 lexem in
-    table { 
-      SF Sg Nom => x + "klaczko";
-      SF Sg Gen => x + "klaczki";
-      SF Sg Dat => x + "klaczce";
-      SF Sg Acc => x + "klaczkę";
-      SF Sg Instr => x + "klaczką";
-      SF Sg Loc => x + "klaczce";
-      SF Sg Voc => x + "klaczko";
-      SF Pl Nom => x + "Klaczkowie";
-      SF Pl Gen => x + "Klaczków";
-      SF Pl Dat => x + "klaczkom";
-      SF Pl Acc => x + "Klaczków";
-      SF Pl Instr => x + "klaczkami";
-      SF Pl Loc => x + "klaczkach";
-      SF Pl Voc => x + "Klaczkowie"
-    };
-
-    oper mkNTable0475: Str -> SubstForm => Str; --%
-    oper mkNTable0475 lexem = 
-      let x = Predef.tk 5 lexem in
-    table { 
-      SF Sg Nom => x + "Klara";
-      SF Sg Gen => x + "klary";
-      SF Sg Dat => x + "klarze";
-      SF Sg Acc => x + "Klarę";
-      SF Sg Instr => x + "Klarą";
-      SF Sg Loc => x + "klarze";
-      SF Sg Voc => x + "Klaro";
-      SF Pl Nom => x + "klary";
-      SF Pl Gen => x + "klar";
-      SF Pl Dat => x + "klarom";
-      SF Pl Acc => x + "klary";
-      SF Pl Instr => x + "klarami";
-      SF Pl Loc => x + "klarach";
-      SF Pl Voc => x + "klary"
-    };
-
-    oper mkNTable0477: Str -> SubstForm => Str; --%
-    oper mkNTable0477 lexem = 
-      let x = Predef.tk 8 lexem in
-    table { 
-      SF Sg Nom => x + "kokoszko";
-      SF Sg Gen => x + "kokoszki";
-      SF Sg Dat => x + "kokoszce";
-      SF Sg Acc => x + "kokoszkę";
-      SF Sg Instr => x + "kokoszką";
-      SF Sg Loc => x + "kokoszce";
-      SF Sg Voc => x + "kokoszko";
-      SF Pl Nom => x + "Kokoszkowie";
-      SF Pl Gen => x + "Kokoszków";
-      SF Pl Dat => x + "kokoszkom";
-      SF Pl Acc => x + "Kokoszków";
-      SF Pl Instr => x + "kokoszkami";
-      SF Pl Loc => x + "kokoszkach";
-      SF Pl Voc => x + "Kokoszkowie"
-    };
-
-    oper mkNTable0479: Str -> SubstForm => Str; --%
-    oper mkNTable0479 lexem = 
-      let x = Predef.tk 6 lexem in
-    table { 
-      SF Sg Nom => x + "koleta";
-      SF Sg Gen => x + "kolety";
-      SF Sg Dat => x + "kolecie";
-      SF Sg Acc => x + "Koletę";
-      SF Sg Instr => x + "Koletą";
-      SF Sg Loc => x + "kolecie";
-      SF Sg Voc => x + "Koleto";
-      SF Pl Nom => x + "kolety";
-      SF Pl Gen => x + "kolet";
-      SF Pl Dat => x + "koletom";
-      SF Pl Acc => x + "kolety";
-      SF Pl Instr => x + "koletami";
-      SF Pl Loc => x + "koletach";
-      SF Pl Voc => x + "kolety"
-    };
-
-    oper mkNTable0481: Str -> SubstForm => Str; --%
-    oper mkNTable0481 lexem = 
-      let x = Predef.tk 5 lexem in
-    table { 
-      SF Sg Nom => x + "kongo";
-      SF Sg Gen => x + "konga";
-      SF Sg Dat => x + "Kongu";
-      SF Sg Acc => x + "kongo";
-      SF Sg Instr => x + "Kongiem";
-      SF Sg Loc => x + "Kongu";
-      SF Sg Voc => x + "kongo";
-      SF Pl Nom => x + "konga";
-      SF Pl Gen => x + "kong";
-      SF Pl Dat => x + "kongom";
-      SF Pl Acc => x + "konga";
-      SF Pl Instr => x + "kongami";
-      SF Pl Loc => x + "kongach";
-      SF Pl Voc => x + "konga"
-    };
-
-    oper mkNTable0483: Str -> SubstForm => Str; --%
-    oper mkNTable0483 lexem = 
-      let x = Predef.tk 9 lexem in
-    table { 
-      SF Sg Nom => x + "konstanty";
-      SF Sg Gen => x + "Konstantego";
-      SF Sg Dat => x + "Konstantemu";
-      SF Sg Acc => x + "Konstantego";
-      SF Sg Instr => x + "Konstantym";
-      SF Sg Loc => x + "Konstantym";
-      SF Sg Voc => x + "konstanty";
-      SF Pl Nom => x + "Konstantowie";
-      SF Pl Gen => x + "Konstantych";
-      SF Pl Dat => x + "Konstantym";
-      SF Pl Acc => x + "Konstantych";
-      SF Pl Instr => x + "Konstantymi";
-      SF Pl Loc => x + "Konstantych";
-      SF Pl Voc => x + "Konstantowie"
-    };
-
-    oper mkNTable0484: Str -> SubstForm => Str; --%
-    oper mkNTable0484 lexem = 
-      let x = Predef.tk 4 lexem in
-    table { 
-      SF Sg Nom => x + "Kopt";
-      SF Sg Gen => x + "Kopta";
-      SF Sg Dat => x + "Koptowi";
-      SF Sg Acc => x + "Kopta";
-      SF Sg Instr => x + "Koptem";
-      SF Sg Loc => x + "kopcie";
-      SF Sg Voc => x + "kopcie";
-      SF Pl Nom => x + "Koptowie";
-      SF Pl Gen => x + "Koptów";
-      SF Pl Dat => x + "Koptom";
-      SF Pl Acc => x + "Koptów";
-      SF Pl Instr => x + "Koptami";
-      SF Pl Loc => x + "Koptach";
-      SF Pl Voc => x + "Koptowie"
-    };
-
-    oper mkNTable0486: Str -> SubstForm => Str; --%
-    oper mkNTable0486 lexem = 
-      let x = Predef.tk 6 lexem in
-    table { 
-      SF Sg Nom => x + "kornel";
-      SF Sg Gen => x + "Kornela";
-      SF Sg Dat => x + "kornelowi";
-      SF Sg Acc => x + "Kornela";
-      SF Sg Instr => x + "kornelem";
-      SF Sg Loc => x + "kornelu";
-      SF Sg Voc => x + "kornelu";
-      SF Pl Nom => x + "kornele";
-      SF Pl Gen => x + "kornelów";
-      SF Pl Dat => x + "kornelom";
-      SF Pl Acc => x + "kornelów";
-      SF Pl Instr => x + "kornelami";
-      SF Pl Loc => x + "kornelach";
-      SF Pl Voc => x + "kornele"
-    };
-
-    oper mkNTable0487: Str -> SubstForm => Str; --%
-    oper mkNTable0487 lexem = 
-      let x = Predef.tk 6 lexem in
-    table { 
-      SF Sg Nom => x + "korsak";
-      SF Sg Gen => x + "korsaka";
-      SF Sg Dat => x + "korsakowi";
-      SF Sg Acc => x + "korsaka";
-      SF Sg Instr => x + "korsakiem";
-      SF Sg Loc => x + "korsaku";
-      SF Sg Voc => x + "korsaku";
-      SF Pl Nom => x + "Korsakowie";
-      SF Pl Gen => x + "korsaków";
-      SF Pl Dat => x + "korsakom";
-      SF Pl Acc => x + "korsaków";
-      SF Pl Instr => x + "korsakami";
-      SF Pl Loc => x + "korsakach";
-      SF Pl Voc => x + "Korsakowie"
-    };
-
-    oper mkNTable0488: Str -> SubstForm => Str; --%
-    oper mkNTable0488 lexem = 
-      let x = Predef.tk 0 lexem in
-    table { 
-      SF Sg Nom => x + "";
-      SF Sg Gen => x + "a";
-      SF Sg Dat => x + "owi";
-      SF Sg Acc => x + "a";
-      SF Sg Instr => x + "em";
-      SF Sg Loc => x + "ie";
-      SF Sg Voc => x + "ie";
-      SF Pl Nom => x + "owie";
-      SF Pl Gen => x + "ów";
-      SF Pl Dat => x + "";
-      SF Pl Acc => x + "ów";
-      SF Pl Instr => x + "";
-      SF Pl Loc => x + "";
-      SF Pl Voc => x + "owie"
-    };
-
-    oper mkNTable0489: Str -> SubstForm => Str; --%
-    oper mkNTable0489 lexem = 
-      let x = Predef.tk 6 lexem in
-    table { 
-      SF Sg Nom => x + "kostek";
-      SF Sg Gen => x + "kostka";
-      SF Sg Dat => x + "Kostkowi";
-      SF Sg Acc => x + "kostka";
-      SF Sg Instr => x + "Kostkiem";
-      SF Sg Loc => x + "Kostku";
-      SF Sg Voc => x + "Kostku";
-      SF Pl Nom => x + "Kostkowie";
-      SF Pl Gen => x + "Kostków";
-      SF Pl Dat => x + "kostkom";
-      SF Pl Acc => x + "Kostków";
-      SF Pl Instr => x + "kostkami";
-      SF Pl Loc => x + "kostkach";
-      SF Pl Voc => x + "Kostkowie"
-    };
-
-    oper mkNTable0490: Str -> SubstForm => Str; --%
-    oper mkNTable0490 lexem = 
-      let x = Predef.tk 6 lexem in
-    table { 
-      SF Sg Nom => x + "kostka";
-      SF Sg Gen => x + "kostki";
-      SF Sg Dat => x + "kostce";
-      SF Sg Acc => x + "kostkę";
-      SF Sg Instr => x + "kostką";
-      SF Sg Loc => x + "kostce";
-      SF Sg Voc => x + "kostko";
-      SF Pl Nom => x + "Kostkowie";
-      SF Pl Gen => x + "Kostków";
-      SF Pl Dat => x + "kostkom";
-      SF Pl Acc => x + "Kostków";
-      SF Pl Instr => x + "kostkami";
-      SF Pl Loc => x + "kostkach";
-      SF Pl Voc => x + "Kostkowie"
-    };
-
-    oper mkNTable0491: Str -> SubstForm => Str; --%
-    oper mkNTable0491 lexem = 
-      let x = Predef.tk 9 lexem in
-    table { 
-      SF Sg Nom => x + "kostrzewa";
-      SF Sg Gen => x + "kostrzewy";
-      SF Sg Dat => x + "kostrzewie";
-      SF Sg Acc => x + "kostrzewę";
-      SF Sg Instr => x + "kostrzewą";
-      SF Sg Loc => x + "kostrzewie";
-      SF Sg Voc => x + "kostrzewo";
-      SF Pl Nom => x + "Kostrzewowie";
-      SF Pl Gen => x + "Kostrzewów";
-      SF Pl Dat => x + "kostrzewom";
-      SF Pl Acc => x + "Kostrzewów";
-      SF Pl Instr => x + "kostrzewami";
-      SF Pl Loc => x + "kostrzewach";
-      SF Pl Voc => x + "Kostrzewowie"
-    };
-
-    oper mkNTable0493: Str -> SubstForm => Str; --%
-    oper mkNTable0493 lexem = 
-      let x = Predef.tk 3 lexem in
-    table { 
-      SF Sg Nom => x + "kot";
-      SF Sg Gen => x + "kota";
-      SF Sg Dat => x + "kotowi";
-      SF Sg Acc => x + "kota";
-      SF Sg Instr => x + "kotem";
-      SF Sg Loc => x + "kocie";
-      SF Sg Voc => x + "kocie";
-      SF Pl Nom => x + "Kotowie";
-      SF Pl Gen => x + "kotów";
-      SF Pl Dat => x + "kotom";
-      SF Pl Acc => x + "kotów";
-      SF Pl Instr => x + "kotami";
-      SF Pl Loc => x + "kotach";
-      SF Pl Voc => x + "Kotowie"
-    };
-
-    oper mkNTable0494: Str -> SubstForm => Str; --%
-    oper mkNTable0494 lexem = 
-      let x = Predef.tk 6 lexem in
-    table { 
-      SF Sg Nom => x + "kotula";
-      SF Sg Gen => x + "kotuli";
-      SF Sg Dat => x + "kotuli";
-      SF Sg Acc => x + "kotulę";
-      SF Sg Instr => x + "kotulą";
-      SF Sg Loc => x + "kotuli";
-      SF Sg Voc => x + "kotulo";
-      SF Pl Nom => x + "Kotulowie";
-      SF Pl Gen => x + "Kotulów";
-      SF Pl Dat => x + "kotulom";
-      SF Pl Acc => x + "Kotulów";
-      SF Pl Instr => x + "kotulami";
-      SF Pl Loc => x + "kotulach";
-      SF Pl Voc => x + "Kotulowie"
-    };
-
-    oper mkNTable0495: Str -> SubstForm => Str; --%
-    oper mkNTable0495 lexem = 
-      let x = Predef.tk 5 lexem in
-    table { 
-      SF Sg Nom => x + "kowal";
-      SF Sg Gen => x + "kowala";
-      SF Sg Dat => x + "kowalowi";
-      SF Sg Acc => x + "kowala";
-      SF Sg Instr => x + "kowalem";
-      SF Sg Loc => x + "kowalu";
-      SF Sg Voc => x + "kowalu";
-      SF Pl Nom => x + "Kowalowie";
-      SF Pl Gen => x + "Kowalów";
-      SF Pl Dat => x + "kowalom";
-      SF Pl Acc => x + "Kowalów";
-      SF Pl Instr => x + "kowalami";
-      SF Pl Loc => x + "kowalach";
-      SF Pl Voc => x + "Kowalowie"
-    };
-
-    oper mkNTable0496: Str -> SubstForm => Str; --%
-    oper mkNTable0496 lexem = 
-      let x = Predef.tk 7 lexem in
-    table { 
-      SF Sg Nom => x + "kowalik";
-      SF Sg Gen => x + "kowalika";
-      SF Sg Dat => x + "kowalikowi";
-      SF Sg Acc => x + "kowalika";
-      SF Sg Instr => x + "kowalikiem";
-      SF Sg Loc => x + "kowaliku";
-      SF Sg Voc => x + "kowaliku";
-      SF Pl Nom => x + "Kowalikowie";
-      SF Pl Gen => x + "kowalików";
-      SF Pl Dat => x + "kowalikom";
-      SF Pl Acc => x + "kowalików";
-      SF Pl Instr => x + "kowalikami";
-      SF Pl Loc => x + "kowalikach";
-      SF Pl Voc => x + "Kowalikowie"
-    };
-
-    oper mkNTable0497: Str -> SubstForm => Str; --%
-    oper mkNTable0497 lexem = 
-      let x = Predef.tk 8 lexem in
-    table { 
-      SF Sg Nom => x + "kozaczka";
-      SF Sg Gen => x + "kozaczki";
-      SF Sg Dat => x + "Kozaczce";
-      SF Sg Acc => x + "Kozaczkę";
-      SF Sg Instr => x + "Kozaczką";
-      SF Sg Loc => x + "Kozaczce";
-      SF Sg Voc => x + "Kozaczko";
-      SF Pl Nom => x + "kozaczki";
-      SF Pl Gen => x + "kozaczek";
-      SF Pl Dat => x + "kozaczkom";
-      SF Pl Acc => x + "kozaczki";
-      SF Pl Instr => x + "kozaczkami";
-      SF Pl Loc => x + "kozaczkach";
-      SF Pl Voc => x + "kozaczki"
-    };
-
-    oper mkNTable0498: Str -> SubstForm => Str; --%
-    oper mkNTable0498 lexem = 
-      let x = Predef.tk 6 lexem in
-    table { 
-      SF Sg Nom => x + "kozioł";
-      SF Sg Gen => x + "kozła";
-      SF Sg Dat => x + "Kozłowi";
-      SF Sg Acc => x + "kozła";
-      SF Sg Instr => x + "kozłem";
-      SF Sg Loc => x + "koźle";
-      SF Sg Voc => x + "koźle";
-      SF Pl Nom => x + "Kozłowie";
-      SF Pl Gen => x + "kozłów";
-      SF Pl Dat => x + "kozłom";
-      SF Pl Acc => x + "kozłów";
-      SF Pl Instr => x + "kozłami";
-      SF Pl Loc => x + "kozłach";
-      SF Pl Voc => x + "Kozłowie"
-    };
-
-    oper mkNTable0500: Str -> SubstForm => Str; --%
-    oper mkNTable0500 lexem = 
-      let x = Predef.tk 9 lexem in
-    table { 
-      SF Sg Nom => x + "kołodziej";
-      SF Sg Gen => x + "kołodzieja";
-      SF Sg Dat => x + "kołodziejowi";
-      SF Sg Acc => x + "kołodzieja";
-      SF Sg Instr => x + "kołodziejem";
-      SF Sg Loc => x + "kołodzieju";
-      SF Sg Voc => x + "kołodzieju";
-      SF Pl Nom => x + "Kołodziejowie";
-      SF Pl Gen => x + "kołodziejów";
-      SF Pl Dat => x + "kołodziejom";
-      SF Pl Acc => x + "kołodziejów";
-      SF Pl Instr => x + "kołodziejami";
-      SF Pl Loc => x + "kołodziejach";
-      SF Pl Voc => x + "Kołodziejowie"
-    };
-
-    oper mkNTable0502: Str -> SubstForm => Str; --%
-    oper mkNTable0502 lexem = 
-      let x = Predef.tk 8 lexem in
-    table { 
-      SF Sg Nom => x + "krawczyk";
-      SF Sg Gen => x + "krawczyka";
-      SF Sg Dat => x + "krawczykowi";
-      SF Sg Acc => x + "krawczyka";
-      SF Sg Instr => x + "krawczykiem";
-      SF Sg Loc => x + "krawczyku";
-      SF Sg Voc => x + "krawczyku";
-      SF Pl Nom => x + "Krawczykowie";
-      SF Pl Gen => x + "krawczyków";
-      SF Pl Dat => x + "krawczykom";
-      SF Pl Acc => x + "krawczyków";
-      SF Pl Instr => x + "krawczykami";
-      SF Pl Loc => x + "krawczykach";
-      SF Pl Voc => x + "Krawczykowie"
-    };
-
-    oper mkNTable0503: Str -> SubstForm => Str; --%
-    oper mkNTable0503 lexem = 
-      let x = Predef.tk 7 lexem in
-    table { 
-      SF Sg Nom => x + "krawiec";
-      SF Sg Gen => x + "krawca";
-      SF Sg Dat => x + "krawcowi";
-      SF Sg Acc => x + "krawca";
-      SF Sg Instr => x + "krawcem";
-      SF Sg Loc => x + "krawcu";
-      SF Sg Voc => x + "krawcu";
-      SF Pl Nom => x + "Krawcowie";
-      SF Pl Gen => x + "krawców";
-      SF Pl Dat => x + "krawcom";
-      SF Pl Acc => x + "krawców";
-      SF Pl Instr => x + "krawcami";
-      SF Pl Loc => x + "krawcach";
-      SF Pl Voc => x + "Krawcowie"
-    };
-
-    oper mkNTable0504: Str -> SubstForm => Str; --%
-    oper mkNTable0504 lexem = 
-      let x = Predef.tk 5 lexem in
-    table { 
-      SF Sg Nom => x + "kreta";
-      SF Sg Gen => x + "krety";
-      SF Sg Dat => x + "krecie";
-      SF Sg Acc => x + "Kretę";
-      SF Sg Instr => x + "Kretą";
-      SF Sg Loc => x + "krecie";
-      SF Sg Voc => x + "Kreto";
-      SF Pl Nom => x + "krety";
-      SF Pl Gen => x + "kret";
-      SF Pl Dat => x + "kretom";
-      SF Pl Acc => x + "krety";
-      SF Pl Instr => x + "kretami";
-      SF Pl Loc => x + "kretach";
-      SF Pl Voc => x + "krety"
-    };
-
-    oper mkNTable0505: Str -> SubstForm => Str; --%
-    oper mkNTable0505 lexem = 
-      let x = Predef.tk 3 lexem in
-    table { 
-      SF Sg Nom => x + "iew";
-      SF Sg Gen => x + "wi";
-      SF Sg Dat => x + "wi";
-      SF Sg Acc => x + "iew";
-      SF Sg Instr => x + "wią";
-      SF Sg Loc => x + "wi";
-      SF Sg Voc => x + "wi";
-      SF Pl Nom => x + "wie";
-      SF Pl Gen => x + "wi";
-      SF Pl Dat => x + "wiom";
-      SF Pl Acc => x + "wie";
-      SF Pl Instr => x + "wiami";
-      SF Pl Loc => x + "wiach";
-      SF Pl Voc => x + "wie"
-    };
-
-    oper mkNTable0506: Str -> SubstForm => Str; --%
-    oper mkNTable0506 lexem = 
-      let x = Predef.tk 5 lexem in
-    table { 
-      SF Sg Nom => x + "krupa";
-      SF Sg Gen => x + "krupy";
-      SF Sg Dat => x + "krupie";
-      SF Sg Acc => x + "krupę";
-      SF Sg Instr => x + "krupą";
-      SF Sg Loc => x + "krupie";
-      SF Sg Voc => x + "krupo";
-      SF Pl Nom => x + "Krupowie";
-      SF Pl Gen => x + "krupów";
-      SF Pl Dat => x + "krupom";
-      SF Pl Acc => x + "krupów";
-      SF Pl Instr => x + "krupami";
-      SF Pl Loc => x + "krupach";
-      SF Pl Voc => x + "Krupowie"
-    };
-
-    oper mkNTable0507: Str -> SubstForm => Str; --%
-    oper mkNTable0507 lexem = 
-      let x = Predef.tk 6 lexem in
-    table { 
-      SF Sg Nom => x + "krupka";
-      SF Sg Gen => x + "krupki";
-      SF Sg Dat => x + "krupce";
-      SF Sg Acc => x + "krupkę";
-      SF Sg Instr => x + "krupką";
-      SF Sg Loc => x + "krupce";
-      SF Sg Voc => x + "krupko";
-      SF Pl Nom => x + "Krupkowie";
-      SF Pl Gen => x + "Krupków";
-      SF Pl Dat => x + "krupkom";
-      SF Pl Acc => x + "Krupków";
-      SF Pl Instr => x + "krupkami";
-      SF Pl Loc => x + "krupkach";
-      SF Pl Voc => x + "Krupkowie"
-    };
-
-    oper mkNTable0508: Str -> SubstForm => Str; --%
-    oper mkNTable0508 lexem = 
-      let x = Predef.tk 8 lexem in
-    table { 
-      SF Sg Nom => x + "Krystian";
-      SF Sg Gen => x + "Krystiana";
-      SF Sg Dat => x + "Krystianowi";
-      SF Sg Acc => x + "Krystiana";
-      SF Sg Instr => x + "Krystianem";
-      SF Sg Loc => x + "krystianie";
-      SF Sg Voc => x + "krystianie";
-      SF Pl Nom => x + "Krystianowie";
-      SF Pl Gen => x + "Krystianów";
-      SF Pl Dat => x + "Krystianom";
-      SF Pl Acc => x + "Krystianów";
-      SF Pl Instr => x + "Krystianami";
-      SF Pl Loc => x + "Krystianach";
-      SF Pl Voc => x + "Krystianowie"
-    };
-
-    oper mkNTable0509: Str -> SubstForm => Str; --%
-    oper mkNTable0509 lexem = 
-      let x = Predef.tk 9 lexem in
-    table { 
-      SF Sg Nom => x + "Krystiana";
-      SF Sg Gen => x + "Krystiany";
-      SF Sg Dat => x + "krystianie";
-      SF Sg Acc => x + "Krystianę";
-      SF Sg Instr => x + "Krystianą";
-      SF Sg Loc => x + "krystianie";
-      SF Sg Voc => x + "Krystiano";
-      SF Pl Nom => x + "Krystiany";
-      SF Pl Gen => x + "Krystian";
-      SF Pl Dat => x + "Krystianom";
-      SF Pl Acc => x + "Krystiany";
-      SF Pl Instr => x + "Krystianami";
-      SF Pl Loc => x + "Krystianach";
-      SF Pl Voc => x + "Krystiany"
-    };
-
-    oper mkNTable0510: Str -> SubstForm => Str; --%
-    oper mkNTable0510 lexem = 
-      let x = Predef.tk 7 lexem in
-    table { 
-      SF Sg Nom => x + "krzyżak";
-      SF Sg Gen => x + "krzyżaka";
-      SF Sg Dat => x + "krzyżakowi";
-      SF Sg Acc => x + "krzyżaka";
-      SF Sg Instr => x + "krzyżakiem";
-      SF Sg Loc => x + "krzyżaku";
-      SF Sg Voc => x + "krzyżaku";
-      SF Pl Nom => x + "Krzyżacy";
-      SF Pl Gen => x + "krzyżaków";
-      SF Pl Dat => x + "krzyżakom";
-      SF Pl Acc => x + "krzyżaków";
-      SF Pl Instr => x + "krzyżakami";
-      SF Pl Loc => x + "krzyżakach";
-      SF Pl Voc => x + "Krzyżacy"
-    };
-
-    oper mkNTable0511: Str -> SubstForm => Str; --%
-    oper mkNTable0511 lexem = 
-      let x = Predef.tk 6 lexem in
-    table { 
-      SF Sg Nom => x + "ksenia";
-      SF Sg Gen => x + "Kseni";
-      SF Sg Dat => x + "Kseni";
-      SF Sg Acc => x + "ksenię";
-      SF Sg Instr => x + "ksenią";
-      SF Sg Loc => x + "Kseni";
-      SF Sg Voc => x + "Kseniu";
-      SF Pl Nom => x + "ksenie";
-      SF Pl Gen => x + "Kseń";
-      SF Pl Dat => x + "kseniom";
-      SF Pl Acc => x + "ksenie";
-      SF Pl Instr => x + "kseniami";
-      SF Pl Loc => x + "kseniach";
-      SF Pl Voc => x + "ksenie"
-    };
-
-    oper mkNTable0512: Str -> SubstForm => Str; --%
-    oper mkNTable0512 lexem = 
-      let x = Predef.tk 7 lexem in
-    table { 
-      SF Sg Nom => x + "książek";
-      SF Sg Gen => x + "książka";
-      SF Sg Dat => x + "Książkowi";
-      SF Sg Acc => x + "książka";
-      SF Sg Instr => x + "Książkiem";
-      SF Sg Loc => x + "Książku";
-      SF Sg Voc => x + "Książku";
-      SF Pl Nom => x + "Książkowie";
-      SF Pl Gen => x + "Książków";
-      SF Pl Dat => x + "książkom";
-      SF Pl Acc => x + "Książków";
-      SF Pl Instr => x + "książkami";
-      SF Pl Loc => x + "książkach";
-      SF Pl Voc => x + "Książkowie"
-    };
-
-    oper mkNTable0513: Str -> SubstForm => Str; --%
-    oper mkNTable0513 lexem = 
-      let x = Predef.tk 4 lexem in
-    table { 
-      SF Sg Nom => x + "Kuba";
-      SF Sg Gen => x + "kuby";
-      SF Sg Dat => x + "kubie";
-      SF Sg Acc => x + "Kubę";
-      SF Sg Instr => x + "Kubą";
-      SF Sg Loc => x + "kubie";
-      SF Sg Voc => x + "Kubo";
-      SF Pl Nom => x + "kuby";
-      SF Pl Gen => x + "kub";
-      SF Pl Dat => x + "kubom";
-      SF Pl Acc => x + "kuby";
-      SF Pl Instr => x + "kubami";
-      SF Pl Loc => x + "kubach";
-      SF Pl Voc => x + "kuby"
-    };
-
-    oper mkNTable0514: Str -> SubstForm => Str; --%
-    oper mkNTable0514 lexem = 
-      let x = Predef.tk 4 lexem in
-    table { 
-      SF Sg Nom => x + "Kuba";
-      SF Sg Gen => x + "kuby";
-      SF Sg Dat => x + "kubie";
-      SF Sg Acc => x + "Kubę";
-      SF Sg Instr => x + "Kubą";
-      SF Sg Loc => x + "kubie";
-      SF Sg Voc => x + "Kubo";
-      SF Pl Nom => x + "Kubowie";
-      SF Pl Gen => x + "kubów";
-      SF Pl Dat => x + "kubom";
-      SF Pl Acc => x + "kubów";
-      SF Pl Instr => x + "kubami";
-      SF Pl Loc => x + "kubach";
-      SF Pl Voc => x + "Kubowie"
-    };
-
-    oper mkNTable0515: Str -> SubstForm => Str; --%
-    oper mkNTable0515 lexem = 
-      let x = Predef.tk 10 lexem in
-    table { 
-      SF Sg Nom => x + "kucharczyk";
-      SF Sg Gen => x + "kucharczyka";
-      SF Sg Dat => x + "kucharczykowi";
-      SF Sg Acc => x + "kucharczyka";
-      SF Sg Instr => x + "kucharczykiem";
-      SF Sg Loc => x + "kucharczyku";
-      SF Sg Voc => x + "kucharczyku";
-      SF Pl Nom => x + "Kucharczykowie";
-      SF Pl Gen => x + "kucharczyków";
-      SF Pl Dat => x + "kucharczykom";
-      SF Pl Acc => x + "kucharczyków";
-      SF Pl Instr => x + "kucharczykami";
-      SF Pl Loc => x + "kucharczykach";
-      SF Pl Voc => x + "Kucharczykowie"
-    };
-
-    oper mkNTable0516: Str -> SubstForm => Str; --%
-    oper mkNTable0516 lexem = 
-      let x = Predef.tk 6 lexem in
-    table { 
-      SF Sg Nom => x + "kuczma";
-      SF Sg Gen => x + "kuczmy";
-      SF Sg Dat => x + "kuczmie";
-      SF Sg Acc => x + "kuczmę";
-      SF Sg Instr => x + "kuczmą";
-      SF Sg Loc => x + "kuczmie";
-      SF Sg Voc => x + "kuczmo";
-      SF Pl Nom => x + "Kuczmowie";
-      SF Pl Gen => x + "Kuczmów";
-      SF Pl Dat => x + "kuczmom";
-      SF Pl Acc => x + "Kuczmów";
-      SF Pl Instr => x + "kuczmami";
-      SF Pl Loc => x + "kuczmach";
-      SF Pl Voc => x + "Kuczmowie"
-    };
-
-    oper mkNTable0517: Str -> SubstForm => Str; --%
-    oper mkNTable0517 lexem = 
-      let x = Predef.tk 8 lexem in
-    table { 
-      SF Sg Nom => x + "kujawiak";
-      SF Sg Gen => x + "kujawiaka";
-      SF Sg Dat => x + "kujawiakowi";
-      SF Sg Acc => x + "kujawiaka";
-      SF Sg Instr => x + "kujawiakiem";
-      SF Sg Loc => x + "kujawiaku";
-      SF Sg Voc => x + "kujawiaku";
-      SF Pl Nom => x + "Kujawiacy";
-      SF Pl Gen => x + "kujawiaków";
-      SF Pl Dat => x + "kujawiakom";
-      SF Pl Acc => x + "kujawiaków";
-      SF Pl Instr => x + "kujawiakami";
-      SF Pl Loc => x + "kujawiakach";
-      SF Pl Voc => x + "Kujawiacy"
-    };
-
-    oper mkNTable0518: Str -> SubstForm => Str; --%
-    oper mkNTable0518 lexem = 
-      let x = Predef.tk 4 lexem in
-    table { 
-      SF Sg Nom => x + "kula";
-      SF Sg Gen => x + "kuli";
-      SF Sg Dat => x + "kuli";
-      SF Sg Acc => x + "kulę";
-      SF Sg Instr => x + "kulą";
-      SF Sg Loc => x + "kuli";
-      SF Sg Voc => x + "kulo";
-      SF Pl Nom => x + "Kulowie";
-      SF Pl Gen => x + "Kulów";
-      SF Pl Dat => x + "kulom";
-      SF Pl Acc => x + "Kulów";
-      SF Pl Instr => x + "kulami";
-      SF Pl Loc => x + "kulach";
-      SF Pl Voc => x + "Kulowie"
-    };
-
-    oper mkNTable0519: Str -> SubstForm => Str; --%
-    oper mkNTable0519 lexem = 
-      let x = Predef.tk 5 lexem in
-    table { 
-      SF Sg Nom => x + "kulik";
-      SF Sg Gen => x + "kulika";
-      SF Sg Dat => x + "kulikowi";
-      SF Sg Acc => x + "kulika";
-      SF Sg Instr => x + "kulikiem";
-      SF Sg Loc => x + "kuliku";
-      SF Sg Voc => x + "kuliku";
-      SF Pl Nom => x + "Kulikowie";
-      SF Pl Gen => x + "kulików";
-      SF Pl Dat => x + "kulikom";
-      SF Pl Acc => x + "kulików";
-      SF Pl Instr => x + "kulikami";
-      SF Pl Loc => x + "kulikach";
-      SF Pl Voc => x + "Kulikowie"
-    };
-
-    oper mkNTable0520: Str -> SubstForm => Str; --%
-    oper mkNTable0520 lexem = 
-      let x = Predef.tk 1 lexem in
-    table { 
-      SF Sg Nom => x + "o";
-      SF Sg Gen => x + "a";
-      SF Sg Dat => x + "owi";
-      SF Sg Acc => x + "a";
-      SF Sg Instr => x + "em";
-      SF Sg Loc => x + "zie";
-      SF Sg Voc => x + "o";
-      SF Pl Nom => x + "a";
-      SF Pl Gen => x + "ów";
-      SF Pl Dat => x + "om";
-      SF Pl Acc => x + "a";
-      SF Pl Instr => x + "ami";
-      SF Pl Loc => x + "ach";
-      SF Pl Voc => x + "a"
-    };
-
-    oper mkNTable0521: Str -> SubstForm => Str; --%
-    oper mkNTable0521 lexem = 
-      let x = Predef.tk 5 lexem in
-    table { 
-      SF Sg Nom => x + "kurek";
-      SF Sg Gen => x + "kurka";
-      SF Sg Dat => x + "kurkowi";
-      SF Sg Acc => x + "kurka";
-      SF Sg Instr => x + "kurkiem";
-      SF Sg Loc => x + "kurku";
-      SF Sg Voc => x + "kurku";
-      SF Pl Nom => x + "Kurkowie";
-      SF Pl Gen => x + "kurków";
-      SF Pl Dat => x + "kurkom";
-      SF Pl Acc => x + "kurków";
-      SF Pl Instr => x + "kurkami";
-      SF Pl Loc => x + "kurkach";
-      SF Pl Voc => x + "Kurkowie"
-    };
-
-    oper mkNTable0522: Str -> SubstForm => Str; --%
-    oper mkNTable0522 lexem = 
-      let x = Predef.tk 0 lexem in
-    table { 
-      SF Sg Nom => x + "";
-      SF Sg Gen => x + "ia";
-      SF Sg Dat => x + "iowi";
-      SF Sg Acc => x + "ia";
-      SF Sg Instr => x + "iem";
-      SF Sg Loc => x + "iu";
-      SF Sg Voc => x + "iu";
-      SF Pl Nom => x + "ie";
-      SF Pl Gen => x + "iów";
-      SF Pl Dat => x + "iom";
-      SF Pl Acc => x + "iów";
-      SF Pl Instr => x + "iami";
-      SF Pl Loc => x + "iach";
-      SF Pl Voc => x + "ie"
-    };
-
-    oper mkNTable0523: Str -> SubstForm => Str; --%
-    oper mkNTable0523 lexem = 
-      let x = Predef.tk 3 lexem in
-    table { 
-      SF Sg Nom => x + "zna";
-      SF Sg Gen => x + "zny";
-      SF Sg Dat => x + "źnie";
-      SF Sg Acc => x + "znę";
-      SF Sg Instr => x + "zną";
-      SF Sg Loc => x + "źnie";
-      SF Sg Voc => x + "zno";
-      SF Pl Nom => x + "zny";
-      SF Pl Gen => x + "zn";
-      SF Pl Dat => x + "znom";
-      SF Pl Acc => x + "zny";
-      SF Pl Instr => x + "znami";
-      SF Pl Loc => x + "znach";
-      SF Pl Voc => x + "zny"
-    };
-
-    oper mkNTable0525: Str -> SubstForm => Str; --%
-    oper mkNTable0525 lexem = 
-      let x = Predef.tk 8 lexem in
-    table { 
-      SF Sg Nom => x + "kwiecień";
-      SF Sg Gen => x + "kwietnia";
-      SF Sg Dat => x + "kwietniowi";
-      SF Sg Acc => x + "kwietnia";
-      SF Sg Instr => x + "kwietniem";
-      SF Sg Loc => x + "kwietniu";
-      SF Sg Voc => x + "kwietniu";
-      SF Pl Nom => x + "Kwietniowie";
-      SF Pl Gen => x + "kwietniów";
-      SF Pl Dat => x + "kwietniom";
-      SF Pl Acc => x + "kwietniów";
-      SF Pl Instr => x + "kwietniami";
-      SF Pl Loc => x + "kwietniach";
-      SF Pl Voc => x + "Kwietniowie"
-    };
-
-    oper mkNTable0526: Str -> SubstForm => Str; --%
-    oper mkNTable0526 lexem = 
-      let x = Predef.tk 4 lexem in
-    table { 
-      SF Sg Nom => x + "kłos";
-      SF Sg Gen => x + "kłosa";
-      SF Sg Dat => x + "kłosowi";
-      SF Sg Acc => x + "kłosa";
-      SF Sg Instr => x + "kłosem";
-      SF Sg Loc => x + "kłosie";
-      SF Sg Voc => x + "kłosie";
-      SF Pl Nom => x + "Kłosowie";
-      SF Pl Gen => x + "kłosów";
-      SF Pl Dat => x + "kłosom";
-      SF Pl Acc => x + "kłosów";
-      SF Pl Instr => x + "kłosami";
-      SF Pl Loc => x + "kłosach";
-      SF Pl Voc => x + "Kłosowie"
-    };
-
-    oper mkNTable0527: Str -> SubstForm => Str; --%
-    oper mkNTable0527 lexem = 
-      let x = Predef.tk 4 lexem in
-    table { 
-      SF Sg Nom => x + "kępa";
-      SF Sg Gen => x + "kępy";
-      SF Sg Dat => x + "kępie";
-      SF Sg Acc => x + "kępę";
-      SF Sg Instr => x + "kępą";
-      SF Sg Loc => x + "kępie";
-      SF Sg Voc => x + "kępo";
-      SF Pl Nom => x + "Kępowie";
-      SF Pl Gen => x + "Kępów";
-      SF Pl Dat => x + "kępom";
-      SF Pl Acc => x + "Kępów";
-      SF Pl Instr => x + "kępami";
-      SF Pl Loc => x + "kępach";
-      SF Pl Voc => x + "Kępowie"
-    };
-
-    oper mkNTable0528: Str -> SubstForm => Str; --%
-    oper mkNTable0528 lexem = 
-      let x = Predef.tk 4 lexem in
-    table { 
-      SF Sg Nom => x + "lach";
-      SF Sg Gen => x + "lacha";
-      SF Sg Dat => x + "Lachowi";
-      SF Sg Acc => x + "lacha";
-      SF Sg Instr => x + "Lachem";
-      SF Sg Loc => x + "Lachu";
-      SF Sg Voc => x + "Lachu";
-      SF Pl Nom => x + "Lachowie";
-      SF Pl Gen => x + "Lachów";
-      SF Pl Dat => x + "lachom";
-      SF Pl Acc => x + "Lachów";
-      SF Pl Instr => x + "lachami";
-      SF Pl Loc => x + "lachach";
-      SF Pl Voc => x + "Lachowie"
-    };
-
-    oper mkNTable0529: Str -> SubstForm => Str; --%
-    oper mkNTable0529 lexem = 
-      let x = Predef.tk 7 lexem in
-    table { 
-      SF Sg Nom => x + "lambert";
-      SF Sg Gen => x + "lamberta";
-      SF Sg Dat => x + "lambertowi";
-      SF Sg Acc => x + "lamberta";
-      SF Sg Instr => x + "lambertem";
-      SF Sg Loc => x + "lambercie";
-      SF Sg Voc => x + "lambercie";
-      SF Pl Nom => x + "Lambertowie";
-      SF Pl Gen => x + "lambertów";
-      SF Pl Dat => x + "lambertom";
-      SF Pl Acc => x + "lambertów";
-      SF Pl Instr => x + "lambertami";
-      SF Pl Loc => x + "lambertach";
-      SF Pl Voc => x + "Lambertowie"
-    };
-
-    oper mkNTable0531: Str -> SubstForm => Str; --%
-    oper mkNTable0531 lexem = 
-      let x = Predef.tk 4 lexem in
-    table { 
-      SF Sg Nom => x + "lato";
-      SF Sg Gen => x + "laty";
-      SF Sg Dat => x + "Lacie";
-      SF Sg Acc => x + "Latę";
-      SF Sg Instr => x + "Latą";
-      SF Sg Loc => x + "Lacie";
-      SF Sg Voc => x + "lato";
-      SF Pl Nom => x + "Latowie";
-      SF Pl Gen => x + "Latów";
-      SF Pl Dat => x + "latom";
-      SF Pl Acc => x + "Latów";
-      SF Pl Instr => x + "latami";
-      SF Pl Loc => x + "latach";
-      SF Pl Voc => x + "Latowie"
-    };
-
-    oper mkNTable0532: Str -> SubstForm => Str; --%
-    oper mkNTable0532 lexem = 
-      let x = Predef.tk 5 lexem in
-    table { 
-      SF Sg Nom => x + "Laura";
-      SF Sg Gen => x + "laury";
-      SF Sg Dat => x + "laurze";
-      SF Sg Acc => x + "Laurę";
-      SF Sg Instr => x + "Laurą";
-      SF Sg Loc => x + "laurze";
-      SF Sg Voc => x + "Lauro";
-      SF Pl Nom => x + "laury";
-      SF Pl Gen => x + "laur";
-      SF Pl Dat => x + "laurom";
-      SF Pl Acc => x + "laury";
-      SF Pl Instr => x + "laurami";
-      SF Pl Loc => x + "laurach";
-      SF Pl Voc => x + "laury"
-    };
-
-    oper mkNTable0533: Str -> SubstForm => Str; --%
-    oper mkNTable0533 lexem = 
-      let x = Predef.tk 3 lexem in
-    table { 
-      SF Sg Nom => x + "Lea";
-      SF Sg Gen => x + "lei";
-      SF Sg Dat => x + "lei";
-      SF Sg Acc => x + "Leę";
-      SF Sg Instr => x + "Leą";
-      SF Sg Loc => x + "lei";
-      SF Sg Voc => x + "Leo";
-      SF Pl Nom => x + "Lee";
-      SF Pl Gen => x + "lei";
-      SF Pl Dat => x + "Leom";
-      SF Pl Acc => x + "Lee";
-      SF Pl Instr => x + "Leami";
-      SF Pl Loc => x + "Leach";
-      SF Pl Voc => x + "Lee"
-    };
-
-    oper mkNTable0534: Str -> SubstForm => Str; --%
-    oper mkNTable0534 lexem = 
-      let x = Predef.tk 4 lexem in
-    table { 
-      SF Sg Nom => x + "Lena";
-      SF Sg Gen => x + "Leny";
-      SF Sg Dat => x + "lenie";
-      SF Sg Acc => x + "Lenę";
-      SF Sg Instr => x + "Leną";
-      SF Sg Loc => x + "lenie";
-      SF Sg Voc => x + "Leno";
-      SF Pl Nom => x + "Leny";
-      SF Pl Gen => x + "len";
-      SF Pl Dat => x + "Lenom";
-      SF Pl Acc => x + "Leny";
-      SF Pl Instr => x + "Lenami";
-      SF Pl Loc => x + "Lenach";
-      SF Pl Voc => x + "Leny"
-    };
-
-    oper mkNTable0535: Str -> SubstForm => Str; --%
-    oper mkNTable0535 lexem = 
-      let x = lexem in
-    table { 
-      SF Sg Nom => x + "";
-      SF Sg Gen => x + "";
-      SF Sg Dat => x + "";
-      SF Sg Acc => x + "";
-      SF Sg Instr => x + "";
-      SF Sg Loc => x + "";
-      SF Sg Voc => x + "";
-      SF Pl Nom => x + "";
-      SF Pl Gen => x + "";
-      SF Pl Dat => x + "m";
-      SF Pl Acc => x + "";
-      SF Pl Instr => x + "";
-      SF Pl Loc => x + "";
-      SF Pl Voc => x + ""
-    };
-
-    oper mkNTable0536: Str -> SubstForm => Str; --%
-    oper mkNTable0536 lexem = 
-      let x = Predef.tk 3 lexem in
-    table { 
-      SF Sg Nom => x + "nia";
-      SF Sg Gen => x + "nii";
-      SF Sg Dat => x + "nii";
-      SF Sg Acc => x + "nię";
-      SF Sg Instr => x + "nią";
-      SF Sg Loc => x + "nii";
-      SF Sg Voc => x + "niu";
-      SF Pl Nom => x + "nie";
-      SF Pl Gen => x + "ń";
-      SF Pl Dat => x + "niom";
-      SF Pl Acc => x + "nie";
-      SF Pl Instr => x + "niami";
-      SF Pl Loc => x + "niach";
-      SF Pl Voc => x + "nie"
-    };
-
-    oper mkNTable0537: Str -> SubstForm => Str; --%
-    oper mkNTable0537 lexem = 
-      let x = Predef.tk 6 lexem in
-    table { 
-      SF Sg Nom => x + "leonid";
-      SF Sg Gen => x + "Leonida";
-      SF Sg Dat => x + "Leonidowi";
-      SF Sg Acc => x + "Leonida";
-      SF Sg Instr => x + "Leonidem";
-      SF Sg Loc => x + "Leonidzie";
-      SF Sg Voc => x + "Leonidzie";
-      SF Pl Nom => x + "Leonidowie";
-      SF Pl Gen => x + "leonidów";
-      SF Pl Dat => x + "leonidom";
-      SF Pl Acc => x + "leonidów";
-      SF Pl Instr => x + "leonidami";
-      SF Pl Loc => x + "leonidach";
-      SF Pl Voc => x + "Leonidowie"
-    };
-
-    oper mkNTable0538: Str -> SubstForm => Str; --%
-    oper mkNTable0538 lexem = 
-      let x = Predef.tk 3 lexem in
-    table { 
-      SF Sg Nom => x + "lew";
-      SF Sg Gen => x + "lwa";
-      SF Sg Dat => x + "lwu";
-      SF Sg Acc => x + "lwa";
-      SF Sg Instr => x + "lwem";
-      SF Sg Loc => x + "lwie";
-      SF Sg Voc => x + "lwie";
-      SF Pl Nom => x + "Lwowie";
-      SF Pl Gen => x + "lwów";
-      SF Pl Dat => x + "lwom";
-      SF Pl Acc => x + "lwów";
-      SF Pl Instr => x + "lwami";
-      SF Pl Loc => x + "lwach";
-      SF Pl Voc => x + "Lwowie"
-    };
-
-    oper mkNTable0539: Str -> SubstForm => Str; --%
-    oper mkNTable0539 lexem = 
-      let x = Predef.tk 2 lexem in
-    table { 
-      SF Sg Nom => x + "ew";
-      SF Sg Gen => x + "wa";
-      SF Sg Dat => x + "wu";
-      SF Sg Acc => x + "wa";
-      SF Sg Instr => x + "wem";
-      SF Sg Loc => x + "wie";
-      SF Sg Voc => x + "wie";
-      SF Pl Nom => x + "wy";
-      SF Pl Gen => x + "wów";
-      SF Pl Dat => x + "wom";
-      SF Pl Acc => x + "wy";
-      SF Pl Instr => x + "wami";
-      SF Pl Loc => x + "wach";
-      SF Pl Voc => x + "wy"
-    };
-
-    oper mkNTable0540: Str -> SubstForm => Str; --%
-    oper mkNTable0540 lexem = 
-      let x = Predef.tk 6 lexem in
-    table { 
-      SF Sg Nom => x + "lewant";
-      SF Sg Gen => x + "Lewantu";
-      SF Sg Dat => x + "lewantowi";
-      SF Sg Acc => x + "lewant";
-      SF Sg Instr => x + "lewantem";
-      SF Sg Loc => x + "lewancie";
-      SF Sg Voc => x + "lewancie";
-      SF Pl Nom => x + "lewanty";
-      SF Pl Gen => x + "lewantów";
-      SF Pl Dat => x + "lewantom";
-      SF Pl Acc => x + "lewanty";
-      SF Pl Instr => x + "lewantami";
-      SF Pl Loc => x + "lewantach";
-      SF Pl Voc => x + "lewanty"
-    };
-
-    oper mkNTable0541: Str -> SubstForm => Str; --%
-    oper mkNTable0541 lexem = 
-      let x = Predef.tk 5 lexem in
-    table { 
-      SF Sg Nom => x + "Lewis";
-      SF Sg Gen => x + "Lewisa";
-      SF Sg Dat => x + "Lewisowi";
-      SF Sg Acc => x + "Lewisa";
-      SF Sg Instr => x + "Lewisem";
-      SF Sg Loc => x + "Lewisie";
-      SF Sg Voc => x + "Lewisie";
-      SF Pl Nom => x + "Lewisowie";
-      SF Pl Gen => x + "lewisów";
-      SF Pl Dat => x + "lewisom";
-      SF Pl Acc => x + "lewisów";
-      SF Pl Instr => x + "lewisami";
-      SF Pl Loc => x + "lewisach";
-      SF Pl Voc => x + "Lewisowie"
-    };
-
-    oper mkNTable0542: Str -> SubstForm => Str; --%
-    oper mkNTable0542 lexem = 
-      let x = Predef.tk 3 lexem in
-    table { 
-      SF Sg Nom => x + "Leś";
-      SF Sg Gen => x + "Lesia";
-      SF Sg Dat => x + "Lesiowi";
-      SF Sg Acc => x + "Lesia";
-      SF Sg Instr => x + "Lesiem";
-      SF Sg Loc => x + "Lesiu";
-      SF Sg Voc => x + "Lesiu";
-      SF Pl Nom => x + "lesie";
-      SF Pl Gen => x + "Lesiów";
-      SF Pl Dat => x + "Lesiom";
-      SF Pl Acc => x + "Lesiów";
-      SF Pl Instr => x + "Lesiami";
-      SF Pl Loc => x + "Lesiach";
-      SF Pl Voc => x + "lesie"
-    };
-
-    oper mkNTable0543: Str -> SubstForm => Str; --%
-    oper mkNTable0543 lexem = 
-      let x = Predef.tk 4 lexem in
-    table { 
-      SF Sg Nom => x + "Lida";
-      SF Sg Gen => x + "lidy";
-      SF Sg Dat => x + "lidzie";
-      SF Sg Acc => x + "Lidę";
-      SF Sg Instr => x + "Lidą";
-      SF Sg Loc => x + "lidzie";
-      SF Sg Voc => x + "lido";
-      SF Pl Nom => x + "lidy";
-      SF Pl Gen => x + "lid";
-      SF Pl Dat => x + "lidom";
-      SF Pl Acc => x + "lidy";
-      SF Pl Instr => x + "lidami";
-      SF Pl Loc => x + "lidach";
-      SF Pl Voc => x + "lidy"
-    };
-
-    oper mkNTable0544: Str -> SubstForm => Str; --%
-    oper mkNTable0544 lexem = 
-      let x = Predef.tk 6 lexem in
-    table { 
-      SF Sg Nom => x + "Lidzia";
-      SF Sg Gen => x + "Lidzi";
-      SF Sg Dat => x + "Lidzi";
-      SF Sg Acc => x + "Lidzię";
-      SF Sg Instr => x + "Lidzią";
-      SF Sg Loc => x + "Lidzi";
-      SF Sg Voc => x + "Lidziu";
-      SF Pl Nom => x + "lidzie";
-      SF Pl Gen => x + "Lidź";
-      SF Pl Dat => x + "Lidziom";
-      SF Pl Acc => x + "lidzie";
-      SF Pl Instr => x + "Lidziami";
-      SF Pl Loc => x + "Lidziach";
-      SF Pl Voc => x + "lidzie"
-    };
-
-    oper mkNTable0545: Str -> SubstForm => Str; --%
-    oper mkNTable0545 lexem = 
-      let x = Predef.tk 7 lexem in
-    table { 
-      SF Sg Nom => x + "lincoln";
-      SF Sg Gen => x + "lincolna";
-      SF Sg Dat => x + "lincolnowi";
-      SF Sg Acc => x + "lincolna";
-      SF Sg Instr => x + "lincolnem";
-      SF Sg Loc => x + "lincolnie";
-      SF Sg Voc => x + "lincolnie";
-      SF Pl Nom => x + "Lincolnowie";
-      SF Pl Gen => x + "lincolnów";
-      SF Pl Dat => x + "lincolnom";
-      SF Pl Acc => x + "lincolnów";
-      SF Pl Instr => x + "lincolnami";
-      SF Pl Loc => x + "lincolnach";
-      SF Pl Voc => x + "Lincolnowie"
-    };
-
-    oper mkNTable0548: Str -> SubstForm => Str; --%
-    oper mkNTable0548 lexem = 
-      let x = Predef.tk 6 lexem in
-    table { 
-      SF Sg Nom => x + "lipiec";
-      SF Sg Gen => x + "lipca";
-      SF Sg Dat => x + "lipcowi";
-      SF Sg Acc => x + "lipca";
-      SF Sg Instr => x + "lipcem";
-      SF Sg Loc => x + "lipcu";
-      SF Sg Voc => x + "lipcu";
-      SF Pl Nom => x + "Lipcowie";
-      SF Pl Gen => x + "lipców";
-      SF Pl Dat => x + "lipcom";
-      SF Pl Acc => x + "lipców";
-      SF Pl Instr => x + "lipcami";
-      SF Pl Loc => x + "lipcach";
-      SF Pl Voc => x + "Lipcowie"
-    };
-
-    oper mkNTable0549: Str -> SubstForm => Str; --%
-    oper mkNTable0549 lexem = 
-      let x = Predef.tk 3 lexem in
-    table { 
-      SF Sg Nom => x + "lis";
-      SF Sg Gen => x + "lisa";
-      SF Sg Dat => x + "lisowi";
-      SF Sg Acc => x + "lisa";
-      SF Sg Instr => x + "lisem";
-      SF Sg Loc => x + "lisie";
-      SF Sg Voc => x + "lisie";
-      SF Pl Nom => x + "Lisowie";
-      SF Pl Gen => x + "lisów";
-      SF Pl Dat => x + "lisom";
-      SF Pl Acc => x + "lisów";
-      SF Pl Instr => x + "lisami";
-      SF Pl Loc => x + "lisach";
-      SF Pl Voc => x + "Lisowie"
-    };
-
-    oper mkNTable0550: Str -> SubstForm => Str; --%
-    oper mkNTable0550 lexem = 
-      let x = Predef.tk 4 lexem in
-    table { 
-      SF Sg Nom => x + "lisa";
-      SF Sg Gen => x + "lisy";
-      SF Sg Dat => x + "lisie";
-      SF Sg Acc => x + "Lisę";
-      SF Sg Instr => x + "Lisą";
-      SF Sg Loc => x + "lisie";
-      SF Sg Voc => x + "Liso";
-      SF Pl Nom => x + "lisy";
-      SF Pl Gen => x + "lis";
-      SF Pl Dat => x + "lisom";
-      SF Pl Acc => x + "lisy";
-      SF Pl Instr => x + "lisami";
-      SF Pl Loc => x + "lisach";
-      SF Pl Voc => x + "lisy"
-    };
-
-    oper mkNTable0552: Str -> SubstForm => Str; --%
-    oper mkNTable0552 lexem = 
-      let x = Predef.tk 6 lexem in
-    table { 
-      SF Sg Nom => x + "lorenc";
-      SF Sg Gen => x + "lorenca";
-      SF Sg Dat => x + "lorencowi";
-      SF Sg Acc => x + "lorenca";
-      SF Sg Instr => x + "lorencem";
-      SF Sg Loc => x + "lorencu";
-      SF Sg Voc => x + "lorencu";
-      SF Pl Nom => x + "Lorencowie";
-      SF Pl Gen => x + "lorenców";
-      SF Pl Dat => x + "lorencom";
-      SF Pl Acc => x + "lorenców";
-      SF Pl Instr => x + "lorencami";
-      SF Pl Loc => x + "lorencach";
-      SF Pl Voc => x + "Lorencowie"
-    };
-
-    oper mkNTable0553: Str -> SubstForm => Str; --%
-    oper mkNTable0553 lexem = 
-      let x = Predef.tk 5 lexem in
-    table { 
-      SF Sg Nom => x + "ludka";
-      SF Sg Gen => x + "ludki";
-      SF Sg Dat => x + "Ludce";
-      SF Sg Acc => x + "Ludkę";
-      SF Sg Instr => x + "Ludką";
-      SF Sg Loc => x + "Ludce";
-      SF Sg Voc => x + "Ludko";
-      SF Pl Nom => x + "ludki";
-      SF Pl Gen => x + "ludek";
-      SF Pl Dat => x + "ludkom";
-      SF Pl Acc => x + "ludki";
-      SF Pl Instr => x + "ludkami";
-      SF Pl Loc => x + "ludkach";
-      SF Pl Voc => x + "ludki"
-    };
-
-    oper mkNTable0554: Str -> SubstForm => Str; --%
-    oper mkNTable0554 lexem = 
-      let x = Predef.tk 6 lexem in
-    table { 
-      SF Sg Nom => x + "ludwik";
-      SF Sg Gen => x + "ludwika";
-      SF Sg Dat => x + "ludwikowi";
-      SF Sg Acc => x + "ludwika";
-      SF Sg Instr => x + "ludwikiem";
-      SF Sg Loc => x + "ludwiku";
-      SF Sg Voc => x + "ludwiku";
-      SF Pl Nom => x + "Ludwikowie";
-      SF Pl Gen => x + "ludwików";
-      SF Pl Dat => x + "ludwikom";
-      SF Pl Acc => x + "ludwików";
-      SF Pl Instr => x + "ludwikami";
-      SF Pl Loc => x + "ludwikach";
-      SF Pl Voc => x + "Ludwikowie"
-    };
-
-    oper mkNTable0555: Str -> SubstForm => Str; --%
-    oper mkNTable0555 lexem = 
-      let x = Predef.tk 7 lexem in
-    table { 
-      SF Sg Nom => x + "ludwika";
-      SF Sg Gen => x + "ludwiki";
-      SF Sg Dat => x + "Ludwice";
-      SF Sg Acc => x + "Ludwikę";
-      SF Sg Instr => x + "Ludwiką";
-      SF Sg Loc => x + "Ludwice";
-      SF Sg Voc => x + "Ludwiko";
-      SF Pl Nom => x + "ludwiki";
-      SF Pl Gen => x + "ludwik";
-      SF Pl Dat => x + "ludwikom";
-      SF Pl Acc => x + "ludwiki";
-      SF Pl Instr => x + "ludwikami";
-      SF Pl Loc => x + "ludwikach";
-      SF Pl Voc => x + "ludwiki"
-    };
-
-    oper mkNTable0557: Str -> SubstForm => Str; --%
-    oper mkNTable0557 lexem = 
-      let x = Predef.tk 5 lexem in
-    table { 
-      SF Sg Nom => x + "lynch";
-      SF Sg Gen => x + "Lyncha";
-      SF Sg Dat => x + "lynchowi";
-      SF Sg Acc => x + "Lyncha";
-      SF Sg Instr => x + "lynchem";
-      SF Sg Loc => x + "lynchu";
-      SF Sg Voc => x + "lynchu";
-      SF Pl Nom => x + "Lynchowie";
-      SF Pl Gen => x + "lynchów";
-      SF Pl Dat => x + "lynchom";
-      SF Pl Acc => x + "lynchów";
-      SF Pl Instr => x + "lynchami";
-      SF Pl Loc => x + "lynchach";
-      SF Pl Voc => x + "Lynchowie"
-    };
-
-    oper mkNTable0558: Str -> SubstForm => Str; --%
-    oper mkNTable0558 lexem = 
-      let x = Predef.tk 0 lexem in
-    table { 
-      SF Sg Nom => x + "";
-      SF Sg Gen => x + "-u";
-      SF Sg Dat => x + "";
-      SF Sg Acc => x + "";
-      SF Sg Instr => x + "";
-      SF Sg Loc => x + "-u";
-      SF Sg Voc => x + "-u";
-      SF Pl Nom => x + "";
-      SF Pl Gen => x + "";
-      SF Pl Dat => x + "";
-      SF Pl Acc => x + "";
-      SF Pl Instr => x + "";
-      SF Pl Loc => x + "";
-      SF Pl Voc => x + ""
-    };
-
-    oper mkNTable0560: Str -> SubstForm => Str; --%
-    oper mkNTable0560 lexem = 
-      let x = Predef.tk 6 lexem in
-    table { 
-      SF Sg Nom => x + "maciek";
-      SF Sg Gen => x + "maćka";
-      SF Sg Dat => x + "maćkowi";
-      SF Sg Acc => x + "maćka";
-      SF Sg Instr => x + "maćkiem";
-      SF Sg Loc => x + "maćku";
-      SF Sg Voc => x + "maćku";
-      SF Pl Nom => x + "Maćkowie";
-      SF Pl Gen => x + "maćków";
-      SF Pl Dat => x + "maćkom";
-      SF Pl Acc => x + "maćków";
-      SF Pl Instr => x + "maćkami";
-      SF Pl Loc => x + "maćkach";
-      SF Pl Voc => x + "Maćkowie"
-    };
-
-    oper mkNTable0561: Str -> SubstForm => Str; --%
-    oper mkNTable0561 lexem = 
-      let x = Predef.tk 6 lexem in
-    table { 
-      SF Sg Nom => x + "maczek";
-      SF Sg Gen => x + "maczka";
-      SF Sg Dat => x + "maczkowi";
-      SF Sg Acc => x + "maczka";
-      SF Sg Instr => x + "maczkiem";
-      SF Sg Loc => x + "maczku";
-      SF Sg Voc => x + "maczku";
-      SF Pl Nom => x + "Maczkowie";
-      SF Pl Gen => x + "maczków";
-      SF Pl Dat => x + "maczkom";
-      SF Pl Acc => x + "maczków";
-      SF Pl Instr => x + "maczkami";
-      SF Pl Loc => x + "maczkach";
-      SF Pl Voc => x + "Maczkowie"
-    };
-
-    oper mkNTable0562: Str -> SubstForm => Str; --%
-    oper mkNTable0562 lexem = 
-      let x = Predef.tk 6 lexem in
-    table { 
-      SF Sg Nom => x + "Madzia";
-      SF Sg Gen => x + "Madzi";
-      SF Sg Dat => x + "Madzi";
-      SF Sg Acc => x + "Madzię";
-      SF Sg Instr => x + "Madzią";
-      SF Sg Loc => x + "Madzi";
-      SF Sg Voc => x + "Madziu";
-      SF Pl Nom => x + "madzie";
-      SF Pl Gen => x + "Madź";
-      SF Pl Dat => x + "Madziom";
-      SF Pl Acc => x + "madzie";
-      SF Pl Instr => x + "Madziami";
-      SF Pl Loc => x + "Madziach";
-      SF Pl Voc => x + "madzie"
-    };
-
-    oper mkNTable0563: Str -> SubstForm => Str; --%
-    oper mkNTable0563 lexem = 
-      let x = Predef.tk 7 lexem in
-    table { 
-      SF Sg Nom => x + "magiera";
-      SF Sg Gen => x + "magiery";
-      SF Sg Dat => x + "magierze";
-      SF Sg Acc => x + "magierę";
-      SF Sg Instr => x + "magierą";
-      SF Sg Loc => x + "magierze";
-      SF Sg Voc => x + "magiero";
-      SF Pl Nom => x + "Magierowie";
-      SF Pl Gen => x + "Magierów";
-      SF Pl Dat => x + "magierom";
-      SF Pl Acc => x + "Magierów";
-      SF Pl Instr => x + "magierami";
-      SF Pl Loc => x + "magierach";
-      SF Pl Voc => x + "Magierowie"
-    };
-
-    oper mkNTable0564: Str -> SubstForm => Str; --%
-    oper mkNTable0564 lexem = 
-      let x = Predef.tk 3 lexem in
-    table { 
-      SF Sg Nom => x + "maj";
-      SF Sg Gen => x + "maja";
-      SF Sg Dat => x + "majowi";
-      SF Sg Acc => x + "maja";
-      SF Sg Instr => x + "majem";
-      SF Sg Loc => x + "maju";
-      SF Sg Voc => x + "maju";
-      SF Pl Nom => x + "Majowie";
-      SF Pl Gen => x + "majów";
-      SF Pl Dat => x + "majom";
-      SF Pl Acc => x + "majów";
-      SF Pl Instr => x + "majami";
-      SF Pl Loc => x + "majach";
-      SF Pl Voc => x + "Majowie"
-    };
-
-    oper mkNTable0565: Str -> SubstForm => Str; --%
-    oper mkNTable0565 lexem = 
-      let x = Predef.tk 4 lexem in
-    table { 
-      SF Sg Nom => x + "maja";
-      SF Sg Gen => x + "mai";
-      SF Sg Dat => x + "mai";
-      SF Sg Acc => x + "maję";
-      SF Sg Instr => x + "mają";
-      SF Sg Loc => x + "mai";
-      SF Sg Voc => x + "majo";
-      SF Pl Nom => x + "Majowie";
-      SF Pl Gen => x + "majów";
-      SF Pl Dat => x + "majom";
-      SF Pl Acc => x + "majów";
-      SF Pl Instr => x + "majami";
-      SF Pl Loc => x + "majach";
-      SF Pl Voc => x + "Majowie"
-    };
-
-    oper mkNTable0566: Str -> SubstForm => Str; --%
-    oper mkNTable0566 lexem = 
-      let x = Predef.tk 4 lexem in
-    table { 
-      SF Sg Nom => x + "maks";
-      SF Sg Gen => x + "maksa";
-      SF Sg Dat => x + "maksowi";
-      SF Sg Acc => x + "maksa";
-      SF Sg Instr => x + "maksem";
-      SF Sg Loc => x + "maksie";
-      SF Sg Voc => x + "maksie";
-      SF Pl Nom => x + "Maksowie";
-      SF Pl Gen => x + "maksów";
-      SF Pl Dat => x + "maksom";
-      SF Pl Acc => x + "maksów";
-      SF Pl Instr => x + "maksami";
-      SF Pl Loc => x + "maksach";
-      SF Pl Voc => x + "Maksowie"
-    };
-
-    oper mkNTable0567: Str -> SubstForm => Str; --%
-    oper mkNTable0567 lexem = 
-      let x = Predef.tk 6 lexem in
-    table { 
-      SF Sg Nom => x + "maksym";
-      SF Sg Gen => x + "maksyma";
-      SF Sg Dat => x + "Maksymowi";
-      SF Sg Acc => x + "maksyma";
-      SF Sg Instr => x + "Maksymem";
-      SF Sg Loc => x + "maksymie";
-      SF Sg Voc => x + "maksymie";
-      SF Pl Nom => x + "Maksymowie";
-      SF Pl Gen => x + "Maksymów";
-      SF Pl Dat => x + "maksymom";
-      SF Pl Acc => x + "Maksymów";
-      SF Pl Instr => x + "maksymami";
-      SF Pl Loc => x + "maksymach";
-      SF Pl Voc => x + "Maksymowie"
-    };
-
-    oper mkNTable0568: Str -> SubstForm => Str; --%
-    oper mkNTable0568 lexem = 
-      let x = Predef.tk 0 lexem in
-    table { 
-      SF Sg Nom => x + "";
-      SF Sg Gen => x + "a";
-      SF Sg Dat => x + "owi";
-      SF Sg Acc => x + "a";
-      SF Sg Instr => x + "em";
-      SF Sg Loc => x + "u";
-      SF Sg Voc => x + "";
-      SF Pl Nom => x + "owie";
-      SF Pl Gen => x + "ów";
-      SF Pl Dat => x + "om";
-      SF Pl Acc => x + "ów";
-      SF Pl Instr => x + "ami";
-      SF Pl Loc => x + "ach";
-      SF Pl Voc => x + "owie"
-    };
-
-    oper mkNTable0570: Str -> SubstForm => Str; --%
-    oper mkNTable0570 lexem = 
-      let x = Predef.tk 5 lexem in
-    table { 
-      SF Sg Nom => x + "malec";
-      SF Sg Gen => x + "malca";
-      SF Sg Dat => x + "malcowi";
-      SF Sg Acc => x + "malca";
-      SF Sg Instr => x + "malcem";
-      SF Sg Loc => x + "malcu";
-      SF Sg Voc => x + "malcu";
-      SF Pl Nom => x + "Malcowie";
-      SF Pl Gen => x + "malców";
-      SF Pl Dat => x + "malcom";
-      SF Pl Acc => x + "malców";
-      SF Pl Instr => x + "malcami";
-      SF Pl Loc => x + "malcach";
-      SF Pl Voc => x + "Malcowie"
-    };
-
-    oper mkNTable0571: Str -> SubstForm => Str; --%
-    oper mkNTable0571 lexem = 
-      let x = Predef.tk 5 lexem in
-    table { 
-      SF Sg Nom => x + "mania";
-      SF Sg Gen => x + "mani";
-      SF Sg Dat => x + "mani";
-      SF Sg Acc => x + "manię";
-      SF Sg Instr => x + "manią";
-      SF Sg Loc => x + "mani";
-      SF Sg Voc => x + "Maniu";
-      SF Pl Nom => x + "manie";
-      SF Pl Gen => x + "Mań";
-      SF Pl Dat => x + "maniom";
-      SF Pl Acc => x + "manie";
-      SF Pl Instr => x + "maniami";
-      SF Pl Loc => x + "maniach";
-      SF Pl Voc => x + "manie"
-    };
-
-    oper mkNTable0572: Str -> SubstForm => Str; --%
-    oper mkNTable0572 lexem = 
-      let x = Predef.tk 4 lexem in
-    table { 
-      SF Sg Nom => x + "mann";
-      SF Sg Gen => x + "manna";
-      SF Sg Dat => x + "Mannowi";
-      SF Sg Acc => x + "manna";
-      SF Sg Instr => x + "Mannem";
-      SF Sg Loc => x + "mannie";
-      SF Sg Voc => x + "mannie";
-      SF Pl Nom => x + "Mannowie";
-      SF Pl Gen => x + "Mannów";
-      SF Pl Dat => x + "mannom";
-      SF Pl Acc => x + "Mannów";
-      SF Pl Instr => x + "mannami";
-      SF Pl Loc => x + "mannach";
-      SF Pl Voc => x + "Mannowie"
-    };
-
-    oper mkNTable0573: Str -> SubstForm => Str; --%
-    oper mkNTable0573 lexem = 
-      let x = Predef.tk 1 lexem in
-    table { 
-      SF Sg Nom => x + "a";
-      SF Sg Gen => x + "y";
-      SF Sg Dat => x + "ie";
-      SF Sg Acc => x + "ę";
-      SF Sg Instr => x + "ą";
-      SF Sg Loc => x + "ie";
-      SF Sg Voc => x + "o";
-      SF Pl Nom => x + "y";
-      SF Pl Gen => x + "ów";
-      SF Pl Dat => x + "om";
-      SF Pl Acc => x + "ów";
-      SF Pl Instr => x + "ami";
-      SF Pl Loc => x + "ach";
-      SF Pl Voc => x + "y"
-    };
-
-    oper mkNTable0574: Str -> SubstForm => Str; --%
-    oper mkNTable0574 lexem = 
-      let x = Predef.tk 8 lexem in
-    table { 
-      SF Sg Nom => x + "marcelin";
-      SF Sg Gen => x + "marcelina";
-      SF Sg Dat => x + "Marcelinowi";
-      SF Sg Acc => x + "marcelina";
-      SF Sg Instr => x + "Marcelinem";
-      SF Sg Loc => x + "marcelinie";
-      SF Sg Voc => x + "marcelinie";
-      SF Pl Nom => x + "Marcelinowie";
-      SF Pl Gen => x + "Marcelinów";
-      SF Pl Dat => x + "marcelinom";
-      SF Pl Acc => x + "Marcelinów";
-      SF Pl Instr => x + "marcelinami";
-      SF Pl Loc => x + "marcelinach";
-      SF Pl Voc => x + "Marcelinowie"
-    };
-
-    oper mkNTable0575: Str -> SubstForm => Str; --%
-    oper mkNTable0575 lexem = 
-      let x = Predef.tk 8 lexem in
-    table { 
-      SF Sg Nom => x + "marcelin";
-      SF Sg Gen => x + "marcelina";
-      SF Sg Dat => x + "Marcelinowi";
-      SF Sg Acc => x + "marcelin";
-      SF Sg Instr => x + "Marcelinem";
-      SF Sg Loc => x + "marcelinie";
-      SF Sg Voc => x + "marcelinie";
-      SF Pl Nom => x + "marceliny";
-      SF Pl Gen => x + "Marcelinów";
-      SF Pl Dat => x + "marcelinom";
-      SF Pl Acc => x + "marceliny";
-      SF Pl Instr => x + "marcelinami";
-      SF Pl Loc => x + "marcelinach";
-      SF Pl Voc => x + "marceliny"
-    };
-
-    oper mkNTable0576: Str -> SubstForm => Str; --%
-    oper mkNTable0576 lexem = 
-      let x = Predef.tk 8 lexem in
-    table { 
-      SF Sg Nom => x + "marcinek";
-      SF Sg Gen => x + "marcinka";
-      SF Sg Dat => x + "marcinkowi";
-      SF Sg Acc => x + "marcinka";
-      SF Sg Instr => x + "marcinkiem";
-      SF Sg Loc => x + "marcinku";
-      SF Sg Voc => x + "marcinku";
-      SF Pl Nom => x + "Marcinkowie";
-      SF Pl Gen => x + "marcinków";
-      SF Pl Dat => x + "marcinkom";
-      SF Pl Acc => x + "marcinków";
-      SF Pl Instr => x + "marcinkami";
-      SF Pl Loc => x + "marcinkach";
-      SF Pl Voc => x + "Marcinkowie"
-    };
-
-    oper mkNTable0577: Str -> SubstForm => Str; --%
-    oper mkNTable0577 lexem = 
-      let x = Predef.tk 5 lexem in
-    table { 
-      SF Sg Nom => x + "Marco";
-      SF Sg Gen => x + "marca";
-      SF Sg Dat => x + "marcowi";
-      SF Sg Acc => x + "marca";
-      SF Sg Instr => x + "markiem";
-      SF Sg Loc => x + "marcu";
-      SF Sg Voc => x + "Marco";
-      SF Pl Nom => x + "Marcowie";
-      SF Pl Gen => x + "marców";
-      SF Pl Dat => x + "marcom";
-      SF Pl Acc => x + "marców";
-      SF Pl Instr => x + "marcami";
-      SF Pl Loc => x + "marcach";
-      SF Pl Voc => x + "Marcowie"
-    };
-
-    oper mkNTable0578: Str -> SubstForm => Str; --%
-    oper mkNTable0578 lexem = 
-      let x = Predef.tk 7 lexem in
-    table { 
-      SF Sg Nom => x + "marczak";
-      SF Sg Gen => x + "marczaka";
-      SF Sg Dat => x + "marczakowi";
-      SF Sg Acc => x + "marczaka";
-      SF Sg Instr => x + "marczakiem";
-      SF Sg Loc => x + "marczaku";
-      SF Sg Voc => x + "marczaku";
-      SF Pl Nom => x + "Marczakowie";
-      SF Pl Gen => x + "marczaków";
-      SF Pl Dat => x + "marczakom";
-      SF Pl Acc => x + "marczaków";
-      SF Pl Instr => x + "marczakami";
-      SF Pl Loc => x + "marczakach";
-      SF Pl Voc => x + "Marczakowie"
-    };
-
-    oper mkNTable0579: Str -> SubstForm => Str; --%
-    oper mkNTable0579 lexem = 
-      let x = Predef.tk 5 lexem in
-    table { 
-      SF Sg Nom => x + "marek";
-      SF Sg Gen => x + "marka";
-      SF Sg Dat => x + "markowi";
-      SF Sg Acc => x + "marka";
-      SF Sg Instr => x + "markiem";
-      SF Sg Loc => x + "marku";
-      SF Sg Voc => x + "marku";
-      SF Pl Nom => x + "Markowie";
-      SF Pl Gen => x + "marków";
-      SF Pl Dat => x + "markom";
-      SF Pl Acc => x + "marków";
-      SF Pl Instr => x + "markami";
-      SF Pl Loc => x + "markach";
-      SF Pl Voc => x + "Markowie"
-    };
-
-    oper mkNTable0580: Str -> SubstForm => Str; --%
-    oper mkNTable0580 lexem = 
-      let x = Predef.tk 6 lexem in
-    table { 
-      SF Sg Nom => x + "marian";
-      SF Sg Gen => x + "Mariana";
-      SF Sg Dat => x + "Marianowi";
-      SF Sg Acc => x + "Mariana";
-      SF Sg Instr => x + "Marianem";
-      SF Sg Loc => x + "marianie";
-      SF Sg Voc => x + "marianie";
-      SF Pl Nom => x + "Marianowie";
-      SF Pl Gen => x + "marianów";
-      SF Pl Dat => x + "marianom";
-      SF Pl Acc => x + "marianów";
-      SF Pl Instr => x + "marianami";
-      SF Pl Loc => x + "marianach";
-      SF Pl Voc => x + "Marianowie"
-    };
-
-    oper mkNTable0581: Str -> SubstForm => Str; --%
-    oper mkNTable0581 lexem = 
-      let x = Predef.tk 4 lexem in
-    table { 
-      SF Sg Nom => x + "Marr";
-      SF Sg Gen => x + "Marra";
-      SF Sg Dat => x + "Marrowi";
-      SF Sg Acc => x + "Marra";
-      SF Sg Instr => x + "Marrem";
-      SF Sg Loc => x + "marze";
-      SF Sg Voc => x + "marze";
-      SF Pl Nom => x + "Marrowie";
-      SF Pl Gen => x + "Marrów";
-      SF Pl Dat => x + "Marrom";
-      SF Pl Acc => x + "Marrów";
-      SF Pl Instr => x + "Marrami";
-      SF Pl Loc => x + "Marrach";
-      SF Pl Voc => x + "Marrowie"
-    };
-
-    oper mkNTable0583: Str -> SubstForm => Str; --%
-    oper mkNTable0583 lexem = 
-      let x = Predef.tk 5 lexem in
-    table { 
-      SF Sg Nom => x + "Marta";
-      SF Sg Gen => x + "Marty";
-      SF Sg Dat => x + "marcie";
-      SF Sg Acc => x + "Martę";
-      SF Sg Instr => x + "Martą";
-      SF Sg Loc => x + "marcie";
-      SF Sg Voc => x + "Marto";
-      SF Pl Nom => x + "Marty";
-      SF Pl Gen => x + "Mart";
-      SF Pl Dat => x + "Martom";
-      SF Pl Acc => x + "Marty";
-      SF Pl Instr => x + "Martami";
-      SF Pl Loc => x + "Martach";
-      SF Pl Voc => x + "Marty"
-    };
-
-    oper mkNTable0584: Str -> SubstForm => Str; --%
-    oper mkNTable0584 lexem = 
-      let x = Predef.tk 6 lexem in
-    table { 
-      SF Sg Nom => x + "martin";
-      SF Sg Gen => x + "martina";
-      SF Sg Dat => x + "martinowi";
-      SF Sg Acc => x + "martina";
-      SF Sg Instr => x + "martinem";
-      SF Sg Loc => x + "martinie";
-      SF Sg Voc => x + "martinie";
-      SF Pl Nom => x + "Martinowie";
-      SF Pl Gen => x + "martinów";
-      SF Pl Dat => x + "martinom";
-      SF Pl Acc => x + "martinów";
-      SF Pl Instr => x + "martinami";
-      SF Pl Loc => x + "martinach";
-      SF Pl Voc => x + "Martinowie"
-    };
-
-    oper mkNTable0585: Str -> SubstForm => Str; --%
-    oper mkNTable0585 lexem = 
-      let x = Predef.tk 6 lexem in
-    table { 
-      SF Sg Nom => x + "marzec";
-      SF Sg Gen => x + "marca";
-      SF Sg Dat => x + "marcowi";
-      SF Sg Acc => x + "marca";
-      SF Sg Instr => x + "marcem";
-      SF Sg Loc => x + "marcu";
-      SF Sg Voc => x + "marcu";
-      SF Pl Nom => x + "Marcowie";
-      SF Pl Gen => x + "marców";
-      SF Pl Dat => x + "marcom";
-      SF Pl Acc => x + "marców";
-      SF Pl Instr => x + "marcami";
-      SF Pl Loc => x + "marcach";
-      SF Pl Voc => x + "Marcowie"
-    };
-
-    oper mkNTable0586: Str -> SubstForm => Str; --%
-    oper mkNTable0586 lexem = 
-      let x = Predef.tk 7 lexem in
-    table { 
-      SF Sg Nom => x + "Marzena";
-      SF Sg Gen => x + "Marzeny";
-      SF Sg Dat => x + "marzenie";
-      SF Sg Acc => x + "Marzenę";
-      SF Sg Instr => x + "Marzeną";
-      SF Sg Loc => x + "marzenie";
-      SF Sg Voc => x + "Marzeno";
-      SF Pl Nom => x + "Marzeny";
-      SF Pl Gen => x + "Marzen";
-      SF Pl Dat => x + "Marzenom";
-      SF Pl Acc => x + "Marzeny";
-      SF Pl Instr => x + "Marzenami";
-      SF Pl Loc => x + "Marzenach";
-      SF Pl Voc => x + "Marzeny"
-    };
-
-    oper mkNTable0587: Str -> SubstForm => Str; --%
-    oper mkNTable0587 lexem = 
-      let x = Predef.tk 6 lexem in
-    table { 
-      SF Sg Nom => x + "Matuła";
-      SF Sg Gen => x + "Matuły";
-      SF Sg Dat => x + "matule";
-      SF Sg Acc => x + "Matułę";
-      SF Sg Instr => x + "Matułą";
-      SF Sg Loc => x + "matule";
-      SF Sg Voc => x + "Matuło";
-      SF Pl Nom => x + "Matułowie";
-      SF Pl Gen => x + "Matułów";
-      SF Pl Dat => x + "Matułom";
-      SF Pl Acc => x + "Matułów";
-      SF Pl Instr => x + "Matułami";
-      SF Pl Loc => x + "Matułach";
-      SF Pl Voc => x + "Matułowie"
-    };
-
-    oper mkNTable0588: Str -> SubstForm => Str; --%
-    oper mkNTable0588 lexem = 
-      let x = Predef.tk 3 lexem in
-    table { 
-      SF Sg Nom => x + "Max";
-      SF Sg Gen => x + "maksa";
-      SF Sg Dat => x + "maksowi";
-      SF Sg Acc => x + "maksa";
-      SF Sg Instr => x + "maksem";
-      SF Sg Loc => x + "maksie";
-      SF Sg Voc => x + "maksie";
-      SF Pl Nom => x + "Maksowie";
-      SF Pl Gen => x + "maksów";
-      SF Pl Dat => x + "maksom";
-      SF Pl Acc => x + "maksów";
-      SF Pl Instr => x + "maksami";
-      SF Pl Loc => x + "maksach";
-      SF Pl Voc => x + "Maksowie"
-    };
-
-    oper mkNTable0589: Str -> SubstForm => Str; --%
-    oper mkNTable0589 lexem = 
-      let x = Predef.tk 3 lexem in
-    table { 
-      SF Sg Nom => x + "May";
-      SF Sg Gen => x + "maya";
-      SF Sg Dat => x + "Mayowi";
-      SF Sg Acc => x + "maya";
-      SF Sg Instr => x + "Mayem";
-      SF Sg Loc => x + "Mayu";
-      SF Sg Voc => x + "Mayu";
-      SF Pl Nom => x + "maye";
-      SF Pl Gen => x + "Mayów";
-      SF Pl Dat => x + "mayom";
-      SF Pl Acc => x + "Mayów";
-      SF Pl Instr => x + "mayami";
-      SF Pl Loc => x + "mayach";
-      SF Pl Voc => x + "maye"
-    };
-
-    oper mkNTable0590: Str -> SubstForm => Str; --%
-    oper mkNTable0590 lexem = 
-      let x = Predef.tk 5 lexem in
-    table { 
-      SF Sg Nom => x + "mazur";
-      SF Sg Gen => x + "mazura";
-      SF Sg Dat => x + "mazurowi";
-      SF Sg Acc => x + "mazura";
-      SF Sg Instr => x + "mazurem";
-      SF Sg Loc => x + "mazurze";
-      SF Sg Voc => x + "mazurze";
-      SF Pl Nom => x + "Mazurzy";
-      SF Pl Gen => x + "mazurów";
-      SF Pl Dat => x + "mazurom";
-      SF Pl Acc => x + "mazurów";
-      SF Pl Instr => x + "mazurami";
-      SF Pl Loc => x + "mazurach";
-      SF Pl Voc => x + "Mazurzy"
-    };
-
-    oper mkNTable0591: Str -> SubstForm => Str; --%
-    oper mkNTable0591 lexem = 
-      let x = Predef.tk 7 lexem in
-    table { 
-      SF Sg Nom => x + "mazurek";
-      SF Sg Gen => x + "mazurka";
-      SF Sg Dat => x + "mazurkowi";
-      SF Sg Acc => x + "mazurka";
-      SF Sg Instr => x + "mazurkiem";
-      SF Sg Loc => x + "mazurku";
-      SF Sg Voc => x + "mazurku";
-      SF Pl Nom => x + "Mazurkowie";
-      SF Pl Gen => x + "mazurków";
-      SF Pl Dat => x + "mazurkom";
-      SF Pl Acc => x + "mazurków";
-      SF Pl Instr => x + "mazurkami";
-      SF Pl Loc => x + "mazurkach";
-      SF Pl Voc => x + "Mazurkowie"
-    };
-
-    oper mkNTable0592: Str -> SubstForm => Str; --%
-    oper mkNTable0592 lexem = 
-      let x = Predef.tk 4 lexem in
-    table { 
-      SF Sg Nom => x + "mech";
-      SF Sg Gen => x + "Mecha";
-      SF Sg Dat => x + "Mechowi";
-      SF Sg Acc => x + "Mecha";
-      SF Sg Instr => x + "Mechem";
-      SF Sg Loc => x + "Mechu";
-      SF Sg Voc => x + "Mechu";
-      SF Pl Nom => x + "Mechowie";
-      SF Pl Gen => x + "Mechów";
-      SF Pl Dat => x + "Mechom";
-      SF Pl Acc => x + "Mechów";
-      SF Pl Instr => x + "Mechami";
-      SF Pl Loc => x + "Mechach";
-      SF Pl Voc => x + "Mechowie"
-    };
-
-    oper mkNTable0593: Str -> SubstForm => Str; --%
-    oper mkNTable0593 lexem = 
-      let x = Predef.tk 5 lexem in
-    table { 
-      SF Sg Nom => x + "medin";
-      SF Sg Gen => x + "medina";
-      SF Sg Dat => x + "Medinowi";
-      SF Sg Acc => x + "medina";
-      SF Sg Instr => x + "Medinem";
-      SF Sg Loc => x + "medinie";
-      SF Sg Voc => x + "medinie";
-      SF Pl Nom => x + "Medinowie";
-      SF Pl Gen => x + "Medinów";
-      SF Pl Dat => x + "medinom";
-      SF Pl Acc => x + "Medinów";
-      SF Pl Instr => x + "medinami";
-      SF Pl Loc => x + "medinach";
-      SF Pl Voc => x + "Medinowie"
-    };
-
-    oper mkNTable0594: Str -> SubstForm => Str; --%
-    oper mkNTable0594 lexem = 
-      let x = Predef.tk 6 lexem in
-    table { 
-      SF Sg Nom => x + "medyka";
-      SF Sg Gen => x + "medyki";
-      SF Sg Dat => x + "Medyce";
-      SF Sg Acc => x + "Medykę";
-      SF Sg Instr => x + "Medyką";
-      SF Sg Loc => x + "Medyce";
-      SF Sg Voc => x + "Medyko";
-      SF Pl Nom => x + "medyki";
-      SF Pl Gen => x + "medyk";
-      SF Pl Dat => x + "medykom";
-      SF Pl Acc => x + "medyki";
-      SF Pl Instr => x + "medykami";
-      SF Pl Loc => x + "medykach";
-      SF Pl Voc => x + "medyki"
-    };
-
-    oper mkNTable0595: Str -> SubstForm => Str; --%
-    oper mkNTable0595 lexem = 
-      let x = Predef.tk 4 lexem in
-    table { 
-      SF Sg Nom => x + "mela";
-      SF Sg Gen => x + "meli";
-      SF Sg Dat => x + "meli";
-      SF Sg Acc => x + "Melę";
-      SF Sg Instr => x + "Melą";
-      SF Sg Loc => x + "meli";
-      SF Sg Voc => x + "melu";
-      SF Pl Nom => x + "mele";
-      SF Pl Gen => x + "mel";
-      SF Pl Dat => x + "melom";
-      SF Pl Acc => x + "mele";
-      SF Pl Instr => x + "melami";
-      SF Pl Loc => x + "melach";
-      SF Pl Voc => x + "mele"
-    };
-
-    oper mkNTable0596: Str -> SubstForm => Str; --%
-    oper mkNTable0596 lexem = 
-      let x = Predef.tk 8 lexem in
-    table { 
-      SF Sg Nom => x + "melchior";
-      SF Sg Gen => x + "Melchiora";
-      SF Sg Dat => x + "melchiorowi";
-      SF Sg Acc => x + "Melchiora";
-      SF Sg Instr => x + "melchiorem";
-      SF Sg Loc => x + "melchiorze";
-      SF Sg Voc => x + "melchiorze";
-      SF Pl Nom => x + "Melchiorowie";
-      SF Pl Gen => x + "melchiorów";
-      SF Pl Dat => x + "melchiorom";
-      SF Pl Acc => x + "melchiorów";
-      SF Pl Instr => x + "melchiorami";
-      SF Pl Loc => x + "melchiorach";
-      SF Pl Voc => x + "Melchiorowie"
-    };
-
-    oper mkNTable0597: Str -> SubstForm => Str; --%
-    oper mkNTable0597 lexem = 
-      let x = Predef.tk 6 lexem in
-    table { 
-      SF Sg Nom => x + "metody";
-      SF Sg Gen => x + "Metodego";
-      SF Sg Dat => x + "Metodemu";
-      SF Sg Acc => x + "Metodego";
-      SF Sg Instr => x + "Metodym";
-      SF Sg Loc => x + "Metodym";
-      SF Sg Voc => x + "metody";
-      SF Pl Nom => x + "Metodowie";
-      SF Pl Gen => x + "Metodych";
-      SF Pl Dat => x + "Metodym";
-      SF Pl Acc => x + "Metodych";
-      SF Pl Instr => x + "Metodymi";
-      SF Pl Loc => x + "Metodych";
-      SF Pl Voc => x + "Metodowie"
-    };
-
-    oper mkNTable0598: Str -> SubstForm => Str; --%
-    oper mkNTable0598 lexem = 
-      let x = Predef.tk 5 lexem in
-    table { 
-      SF Sg Nom => x + "metys";
-      SF Sg Gen => x + "metysa";
-      SF Sg Dat => x + "metysowi";
-      SF Sg Acc => x + "metysa";
-      SF Sg Instr => x + "metysem";
-      SF Sg Loc => x + "metysie";
-      SF Sg Voc => x + "metysie";
-      SF Pl Nom => x + "Metysi";
-      SF Pl Gen => x + "metysów";
-      SF Pl Dat => x + "metysom";
-      SF Pl Acc => x + "metysów";
-      SF Pl Instr => x + "metysami";
-      SF Pl Loc => x + "metysach";
-      SF Pl Voc => x + "Metysi"
-    };
-
-    oper mkNTable0599: Str -> SubstForm => Str; --%
-    oper mkNTable0599 lexem = 
-      let x = Predef.tk 6 lexem in
-    table { 
-      SF Sg Nom => x + "miarka";
-      SF Sg Gen => x + "miarki";
-      SF Sg Dat => x + "miarce";
-      SF Sg Acc => x + "miarkę";
-      SF Sg Instr => x + "miarką";
-      SF Sg Loc => x + "miarce";
-      SF Sg Voc => x + "miarko";
-      SF Pl Nom => x + "Miarkowie";
-      SF Pl Gen => x + "Miarków";
-      SF Pl Dat => x + "miarkom";
-      SF Pl Acc => x + "Miarków";
-      SF Pl Instr => x + "miarkami";
-      SF Pl Loc => x + "miarkach";
-      SF Pl Voc => x + "Miarkowie"
-    };
-
-    oper mkNTable0600: Str -> SubstForm => Str; --%
-    oper mkNTable0600 lexem = 
-      let x = Predef.tk 2 lexem in
-    table { 
-      SF Sg Nom => x + "ec";
-      SF Sg Gen => x + "ca";
-      SF Sg Dat => x + "cowi";
-      SF Sg Acc => x + "ca";
-      SF Sg Instr => x + "cem";
-      SF Sg Loc => x + "cu";
-      SF Sg Voc => x + "cu";
-      SF Pl Nom => x + "cowie";
-      SF Pl Gen => x + "ców";
-      SF Pl Dat => x + "cowi";
-      SF Pl Acc => x + "ców";
-      SF Pl Instr => x + "cami";
-      SF Pl Loc => x + "cach";
-      SF Pl Voc => x + "cowie"
-    };
-
-    oper mkNTable0601: Str -> SubstForm => Str; --%
-    oper mkNTable0601 lexem = 
-      let x = Predef.tk 8 lexem in
-    table { 
-      SF Sg Nom => x + "michałek";
-      SF Sg Gen => x + "michałka";
-      SF Sg Dat => x + "michałkowi";
-      SF Sg Acc => x + "michałka";
-      SF Sg Instr => x + "michałkiem";
-      SF Sg Loc => x + "michałku";
-      SF Sg Voc => x + "michałku";
-      SF Pl Nom => x + "Michałkowie";
-      SF Pl Gen => x + "michałków";
-      SF Pl Dat => x + "michałkom";
-      SF Pl Acc => x + "michałków";
-      SF Pl Instr => x + "michałkami";
-      SF Pl Loc => x + "michałkach";
-      SF Pl Voc => x + "Michałkowie"
-    };
-
-    oper mkNTable0605: Str -> SubstForm => Str; --%
-    oper mkNTable0605 lexem = 
-      let x = lexem in
-    table { 
-      SF Sg Nom => x + "a";
-      SF Sg Gen => x + "";
-      SF Sg Dat => x + "";
-      SF Sg Acc => x + "ę";
-      SF Sg Instr => x + "ą";
-      SF Sg Loc => x + "";
-      SF Sg Voc => x + "u";
-      SF Pl Nom => x + "e";
-      SF Pl Gen => x + "";
-      SF Pl Dat => x + "om";
-      SF Pl Acc => x + "e";
-      SF Pl Instr => x + "ami";
-      SF Pl Loc => x + "ach";
-      SF Pl Voc => x + "e"
-    };
-
-    oper mkNTable0606: Str -> SubstForm => Str; --%
-    oper mkNTable0606 lexem = 
-      let x = Predef.tk 10 lexem in
-    table { 
-      SF Sg Nom => x + "Miecznikow";
-      SF Sg Gen => x + "miecznikowa";
-      SF Sg Dat => x + "Miecznikowowi";
-      SF Sg Acc => x + "miecznikowa";
-      SF Sg Instr => x + "Miecznikowem";
-      SF Sg Loc => x + "miecznikowie";
-      SF Sg Voc => x + "miecznikowie";
-      SF Pl Nom => x + "Miecznikowowie";
-      SF Pl Gen => x + "Miecznikowów";
-      SF Pl Dat => x + "Miecznikowom";
-      SF Pl Acc => x + "Miecznikowów";
-      SF Pl Instr => x + "Miecznikowami";
-      SF Pl Loc => x + "Miecznikowach";
-      SF Pl Voc => x + "Miecznikowowie"
-    };
-
-    oper mkNTable0607: Str -> SubstForm => Str; --%
-    oper mkNTable0607 lexem = 
-      let x = Predef.tk 8 lexem in
-    table { 
-      SF Sg Nom => x + "mielcarz";
-      SF Sg Gen => x + "mielcarza";
-      SF Sg Dat => x + "mielcarzowi";
-      SF Sg Acc => x + "mielcarza";
-      SF Sg Instr => x + "mielcarzem";
-      SF Sg Loc => x + "mielcarzu";
-      SF Sg Voc => x + "mielcarzu";
-      SF Pl Nom => x + "Mielcarzowie";
-      SF Pl Gen => x + "mielcarzy";
-      SF Pl Dat => x + "mielcarzom";
-      SF Pl Acc => x + "mielcarzy";
-      SF Pl Instr => x + "mielcarzami";
-      SF Pl Loc => x + "mielcarzach";
-      SF Pl Voc => x + "Mielcarzowie"
-    };
-
-    oper mkNTable0608: Str -> SubstForm => Str; --%
-    oper mkNTable0608 lexem = 
-      let x = Predef.tk 2 lexem in
-    table { 
-      SF Sg Nom => x + "ec";
-      SF Sg Gen => x + "ca";
-      SF Sg Dat => x + "cowi";
-      SF Sg Acc => x + "ec";
-      SF Sg Instr => x + "cem";
-      SF Sg Loc => x + "cu";
-      SF Sg Voc => x + "cu";
-      SF Pl Nom => x + "ce";
-      SF Pl Gen => x + "ców";
-      SF Pl Dat => x + "com";
-      SF Pl Acc => x + "ce";
-      SF Pl Instr => x + "cami";
-      SF Pl Loc => x + "cach";
-      SF Pl Voc => x + "ce"
-    };
-
-    oper mkNTable0609: Str -> SubstForm => Str; --%
-    oper mkNTable0609 lexem = 
-      let x = Predef.tk 7 lexem in
-    table { 
-      SF Sg Nom => x + "Mieszko";
-      SF Sg Gen => x + "mieszka";
-      SF Sg Dat => x + "mieszkowi";
-      SF Sg Acc => x + "mieszka";
-      SF Sg Instr => x + "mieszkiem";
-      SF Sg Loc => x + "mieszku";
-      SF Sg Voc => x + "mieszku";
-      SF Pl Nom => x + "Mieszkowie";
-      SF Pl Gen => x + "mieszków";
-      SF Pl Dat => x + "mieszkom";
-      SF Pl Acc => x + "mieszków";
-      SF Pl Instr => x + "mieszkami";
-      SF Pl Loc => x + "mieszkach";
-      SF Pl Voc => x + "Mieszkowie"
-    };
-
-    oper mkNTable0610: Str -> SubstForm => Str; --%
-    oper mkNTable0610 lexem = 
-      let x = Predef.tk 9 lexem in
-    table { 
-      SF Sg Nom => x + "mikołajek";
-      SF Sg Gen => x + "mikołajka";
-      SF Sg Dat => x + "mikołajkowi";
-      SF Sg Acc => x + "mikołajka";
-      SF Sg Instr => x + "mikołajkiem";
-      SF Sg Loc => x + "mikołajku";
-      SF Sg Voc => x + "mikołajku";
-      SF Pl Nom => x + "Mikołajkowie";
-      SF Pl Gen => x + "mikołajków";
-      SF Pl Dat => x + "mikołajkom";
-      SF Pl Acc => x + "mikołajków";
-      SF Pl Instr => x + "mikołajkami";
-      SF Pl Loc => x + "mikołajkach";
-      SF Pl Voc => x + "Mikołajkowie"
-    };
-
-    oper mkNTable0611: Str -> SubstForm => Str; --%
-    oper mkNTable0611 lexem = 
-      let x = Predef.tk 6 lexem in
-    table { 
-      SF Sg Nom => x + "Milena";
-      SF Sg Gen => x + "mileny";
-      SF Sg Dat => x + "milenie";
-      SF Sg Acc => x + "Milenę";
-      SF Sg Instr => x + "Mileną";
-      SF Sg Loc => x + "milenie";
-      SF Sg Voc => x + "Mileno";
-      SF Pl Nom => x + "mileny";
-      SF Pl Gen => x + "milen";
-      SF Pl Dat => x + "milenom";
-      SF Pl Acc => x + "mileny";
-      SF Pl Instr => x + "milenami";
-      SF Pl Loc => x + "milenach";
-      SF Pl Voc => x + "mileny"
-    };
-
-    oper mkNTable0614: Str -> SubstForm => Str; --%
-    oper mkNTable0614 lexem = 
-      let x = Predef.tk 6 lexem in
-    table { 
-      SF Sg Nom => x + "miodek";
-      SF Sg Gen => x + "Miodka";
-      SF Sg Dat => x + "miodkowi";
-      SF Sg Acc => x + "Miodka";
-      SF Sg Instr => x + "miodkiem";
-      SF Sg Loc => x + "miodku";
-      SF Sg Voc => x + "miodku";
-      SF Pl Nom => x + "Miodkowie";
-      SF Pl Gen => x + "miodków";
-      SF Pl Dat => x + "miodkom";
-      SF Pl Acc => x + "miodków";
-      SF Pl Instr => x + "miodkami";
-      SF Pl Loc => x + "miodkach";
-      SF Pl Voc => x + "Miodkowie"
-    };
-
-    oper mkNTable0615: Str -> SubstForm => Str; --%
-    oper mkNTable0615 lexem = 
-      let x = Predef.tk 7 lexem in
-    table { 
-      SF Sg Nom => x + "misiura";
-      SF Sg Gen => x + "misiury";
-      SF Sg Dat => x + "misiurze";
-      SF Sg Acc => x + "misiurę";
-      SF Sg Instr => x + "misiurą";
-      SF Sg Loc => x + "misiurze";
-      SF Sg Voc => x + "misiuro";
-      SF Pl Nom => x + "Misiurowie";
-      SF Pl Gen => x + "Misiurów";
-      SF Pl Dat => x + "misiurom";
-      SF Pl Acc => x + "Misiurów";
-      SF Pl Instr => x + "misiurami";
-      SF Pl Loc => x + "misiurach";
-      SF Pl Voc => x + "Misiurowie"
-    };
-
-    oper mkNTable0616: Str -> SubstForm => Str; --%
-    oper mkNTable0616 lexem = 
-      let x = Predef.tk 7 lexem in
-    table { 
-      SF Sg Nom => x + "Miłowan";
-      SF Sg Gen => x + "Miłowana";
-      SF Sg Dat => x + "Miłowanowi";
-      SF Sg Acc => x + "Miłowana";
-      SF Sg Instr => x + "Miłowanem";
-      SF Sg Loc => x + "miłowanie";
-      SF Sg Voc => x + "miłowanie";
-      SF Pl Nom => x + "Miłowanowie";
-      SF Pl Gen => x + "Miłowanów";
-      SF Pl Dat => x + "Miłowanom";
-      SF Pl Acc => x + "Miłowanów";
-      SF Pl Instr => x + "Miłowanami";
-      SF Pl Loc => x + "Miłowanach";
-      SF Pl Voc => x + "Miłowanowie"
-    };
-
-    oper mkNTable0617: Str -> SubstForm => Str; --%
-    oper mkNTable0617 lexem = 
-      let x = Predef.tk 0 lexem in
-    table { 
-      SF Sg Nom => x + "";
-      SF Sg Gen => x + "a";
-      SF Sg Dat => x + "owi";
-      SF Sg Acc => x + "a";
-      SF Sg Instr => x + "em";
-      SF Sg Loc => x + "u";
-      SF Sg Voc => x + "u";
-      SF Pl Nom => x + "y";
-      SF Pl Gen => x + "ów";
-      SF Pl Dat => x + "om";
-      SF Pl Acc => x + "y";
-      SF Pl Instr => x + "ami";
-      SF Pl Loc => x + "ach";
-      SF Pl Voc => x + "y"
-    };
-
-    oper mkNTable0618: Str -> SubstForm => Str; --%
-    oper mkNTable0618 lexem = 
-      let x = Predef.tk 3 lexem in
-    table { 
-      SF Sg Nom => x + "ech";
-      SF Sg Gen => x + "cha";
-      SF Sg Dat => x + "chowi";
-      SF Sg Acc => x + "cha";
-      SF Sg Instr => x + "chem";
-      SF Sg Loc => x + "chu";
-      SF Sg Voc => x + "chu";
-      SF Pl Nom => x + "chowie";
-      SF Pl Gen => x + "chów";
-      SF Pl Dat => x + "chom";
-      SF Pl Acc => x + "chów";
-      SF Pl Instr => x + "chami";
-      SF Pl Loc => x + "chach";
-      SF Pl Voc => x + "chowie"
-    };
-
-    oper mkNTable0620: Str -> SubstForm => Str; --%
-    oper mkNTable0620 lexem = 
-      let x = Predef.tk 6 lexem in
-    table { 
-      SF Sg Nom => x + "moczar";
-      SF Sg Gen => x + "Moczara";
-      SF Sg Dat => x + "moczarowi";
-      SF Sg Acc => x + "Moczara";
-      SF Sg Instr => x + "moczarem";
-      SF Sg Loc => x + "moczarze";
-      SF Sg Voc => x + "moczarze";
-      SF Pl Nom => x + "Moczarowie";
-      SF Pl Gen => x + "moczarów";
-      SF Pl Dat => x + "moczarom";
-      SF Pl Acc => x + "moczarów";
-      SF Pl Instr => x + "moczarami";
-      SF Pl Loc => x + "moczarach";
-      SF Pl Voc => x + "Moczarowie"
-    };
-
-    oper mkNTable0621: Str -> SubstForm => Str; --%
-    oper mkNTable0621 lexem = 
-      let x = Predef.tk 5 lexem in
-    table { 
-      SF Sg Nom => x + "monet";
-      SF Sg Gen => x + "moneta";
-      SF Sg Dat => x + "Monetowi";
-      SF Sg Acc => x + "moneta";
-      SF Sg Instr => x + "Monetem";
-      SF Sg Loc => x + "monecie";
-      SF Sg Voc => x + "monecie";
-      SF Pl Nom => x + "Monetowie";
-      SF Pl Gen => x + "Monetów";
-      SF Pl Dat => x + "monetom";
-      SF Pl Acc => x + "Monetów";
-      SF Pl Instr => x + "monetami";
-      SF Pl Loc => x + "monetach";
-      SF Pl Voc => x + "Monetowie"
-    };
-
-    oper mkNTable0622: Str -> SubstForm => Str; --%
-    oper mkNTable0622 lexem = 
-      let x = Predef.tk 5 lexem in
-    table { 
-      SF Sg Nom => x + "Monia";
-      SF Sg Gen => x + "Moni";
-      SF Sg Dat => x + "Moni";
-      SF Sg Acc => x + "Monię";
-      SF Sg Instr => x + "Monią";
-      SF Sg Loc => x + "Moni";
-      SF Sg Voc => x + "Moniu";
-      SF Pl Nom => x + "monie";
-      SF Pl Gen => x + "Moń";
-      SF Pl Dat => x + "Moniom";
-      SF Pl Acc => x + "monie";
-      SF Pl Instr => x + "Moniami";
-      SF Pl Loc => x + "Moniach";
-      SF Pl Voc => x + "monie"
-    };
-
-    oper mkNTable0623: Str -> SubstForm => Str; --%
-    oper mkNTable0623 lexem = 
-      let x = Predef.tk 0 lexem in
-    table { 
-      SF Sg Nom => x + "";
-      SF Sg Gen => x + "go";
-      SF Sg Dat => x + "";
-      SF Sg Acc => x + "go";
-      SF Sg Instr => x + "";
-      SF Sg Loc => x + "";
-      SF Sg Voc => x + "";
-      SF Pl Nom => x + "";
-      SF Pl Gen => x + "";
-      SF Pl Dat => x + "";
-      SF Pl Acc => x + "";
-      SF Pl Instr => x + "";
-      SF Pl Loc => x + "";
-      SF Pl Voc => x + ""
-    };
-
-    oper mkNTable0624: Str -> SubstForm => Str; --%
-    oper mkNTable0624 lexem = 
-      let x = Predef.tk 6 lexem in
-    table { 
-      SF Sg Nom => x + "morris";
-      SF Sg Gen => x + "morrisa";
-      SF Sg Dat => x + "morrisowi";
-      SF Sg Acc => x + "morrisa";
-      SF Sg Instr => x + "morrisem";
-      SF Sg Loc => x + "morrisie";
-      SF Sg Voc => x + "morrisie";
-      SF Pl Nom => x + "Morrisowie";
-      SF Pl Gen => x + "morrisów";
-      SF Pl Dat => x + "morrisom";
-      SF Pl Acc => x + "morrisów";
-      SF Pl Instr => x + "morrisami";
-      SF Pl Loc => x + "morrisach";
-      SF Pl Voc => x + "Morrisowie"
-    };
-
-    oper mkNTable0625: Str -> SubstForm => Str; --%
-    oper mkNTable0625 lexem = 
-      let x = Predef.tk 7 lexem in
-    table { 
-      SF Sg Nom => x + "Moskała";
-      SF Sg Gen => x + "Moskały";
-      SF Sg Dat => x + "moskale";
-      SF Sg Acc => x + "Moskałę";
-      SF Sg Instr => x + "Moskałą";
-      SF Sg Loc => x + "moskale";
-      SF Sg Voc => x + "Moskało";
-      SF Pl Nom => x + "Moskałowie";
-      SF Pl Gen => x + "Moskałów";
-      SF Pl Dat => x + "Moskałom";
-      SF Pl Acc => x + "Moskałów";
-      SF Pl Instr => x + "Moskałami";
-      SF Pl Loc => x + "Moskałach";
-      SF Pl Voc => x + "Moskałowie"
-    };
-
-    oper mkNTable0627: Str -> SubstForm => Str; --%
-    oper mkNTable0627 lexem = 
-      let x = Predef.tk 5 lexem in
-    table { 
-      SF Sg Nom => x + "mucha";
-      SF Sg Gen => x + "muchy";
-      SF Sg Dat => x + "musze";
-      SF Sg Acc => x + "muchę";
-      SF Sg Instr => x + "muchą";
-      SF Sg Loc => x + "musze";
-      SF Sg Voc => x + "mucho";
-      SF Pl Nom => x + "Muchowie";
-      SF Pl Gen => x + "Muchów";
-      SF Pl Dat => x + "muchom";
-      SF Pl Acc => x + "Muchów";
-      SF Pl Instr => x + "muchami";
-      SF Pl Loc => x + "muchach";
-      SF Pl Voc => x + "Muchowie"
-    };
-
-    oper mkNTable0628: Str -> SubstForm => Str; --%
-    oper mkNTable0628 lexem = 
-      let x = Predef.tk 5 lexem in
-    table { 
-      SF Sg Nom => x + "mulat";
-      SF Sg Gen => x + "mulata";
-      SF Sg Dat => x + "Mulatowi";
-      SF Sg Acc => x + "mulata";
-      SF Sg Instr => x + "Mulatem";
-      SF Sg Loc => x + "Mulacie";
-      SF Sg Voc => x + "Mulacie";
-      SF Pl Nom => x + "Mulaci";
-      SF Pl Gen => x + "Mulatów";
-      SF Pl Dat => x + "Mulatom";
-      SF Pl Acc => x + "Mulatów";
-      SF Pl Instr => x + "Mulatami";
-      SF Pl Loc => x + "Mulatach";
-      SF Pl Voc => x + "Mulaci"
-    };
-
-    oper mkNTable0629: Str -> SubstForm => Str; --%
-    oper mkNTable0629 lexem = 
-      let x = Predef.tk 1 lexem in
-    table { 
-      SF Sg Nom => x + "ę";
-      SF Sg Gen => x + "ęcia";
-      SF Sg Dat => x + "ęciu";
-      SF Sg Acc => x + "ę";
-      SF Sg Instr => x + "ęciem";
-      SF Sg Loc => x + "ęciu";
-      SF Sg Voc => x + "ę";
-      SF Pl Nom => x + "ęta";
-      SF Pl Gen => x + "ąt";
-      SF Pl Dat => x + "ętom";
-      SF Pl Acc => x + "ęta";
-      SF Pl Instr => x + "ętami";
-      SF Pl Loc => x + "ętach";
-      SF Pl Voc => x + "ęta"
-    };
-
-    oper mkNTable0632: Str -> SubstForm => Str; --%
-    oper mkNTable0632 lexem = 
-      let x = Predef.tk 4 lexem in
-    table { 
-      SF Sg Nom => x + "młot";
-      SF Sg Gen => x + "młota";
-      SF Sg Dat => x + "młotowi";
-      SF Sg Acc => x + "młota";
-      SF Sg Instr => x + "młotem";
-      SF Sg Loc => x + "młocie";
-      SF Sg Voc => x + "młocie";
-      SF Pl Nom => x + "Młotowie";
-      SF Pl Gen => x + "młotów";
-      SF Pl Dat => x + "młotom";
-      SF Pl Acc => x + "młotów";
-      SF Pl Instr => x + "młotami";
-      SF Pl Loc => x + "młotach";
-      SF Pl Voc => x + "Młotowie"
-    };
-
-    oper mkNTable0633: Str -> SubstForm => Str; --%
-    oper mkNTable0633 lexem = 
-      let x = Predef.tk 10 lexem in
-    table { 
-      SF Sg Nom => x + "młynarczyk";
-      SF Sg Gen => x + "młynarczyka";
-      SF Sg Dat => x + "młynarczykowi";
-      SF Sg Acc => x + "młynarczyka";
-      SF Sg Instr => x + "młynarczykiem";
-      SF Sg Loc => x + "młynarczyku";
-      SF Sg Voc => x + "młynarczyku";
-      SF Pl Nom => x + "Młynarczykowie";
-      SF Pl Gen => x + "młynarczyków";
-      SF Pl Dat => x + "młynarczykom";
-      SF Pl Acc => x + "młynarczyków";
-      SF Pl Instr => x + "młynarczykami";
-      SF Pl Loc => x + "młynarczykach";
-      SF Pl Voc => x + "Młynarczykowie"
-    };
-
-    oper mkNTable0635: Str -> SubstForm => Str; --%
-    oper mkNTable0635 lexem = 
-      let x = Predef.tk 8 lexem in
-    table { 
-      SF Sg Nom => x + "napoleon";
-      SF Sg Gen => x + "napoleona";
-      SF Sg Dat => x + "napoleonowi";
-      SF Sg Acc => x + "napoleona";
-      SF Sg Instr => x + "napoleonem";
-      SF Sg Loc => x + "napoleonie";
-      SF Sg Voc => x + "napoleonie";
-      SF Pl Nom => x + "Napoleonowie";
-      SF Pl Gen => x + "napoleonów";
-      SF Pl Dat => x + "napoleonom";
-      SF Pl Acc => x + "napoleonów";
-      SF Pl Instr => x + "napoleonami";
-      SF Pl Loc => x + "napoleonach";
-      SF Pl Voc => x + "Napoleonowie"
-    };
-
-    oper mkNTable0636: Str -> SubstForm => Str; --%
-    oper mkNTable0636 lexem = 
-      let x = Predef.tk 1 lexem in
-    table { 
-      SF Sg Nom => x + "a";
-      SF Sg Gen => x + "y";
-      SF Sg Dat => x + "zie";
-      SF Sg Acc => x + "ę";
-      SF Sg Instr => x + "ą";
-      SF Sg Loc => x + "zie";
-      SF Sg Voc => x + "o";
-      SF Pl Nom => x + "zi";
-      SF Pl Gen => x + "ów";
-      SF Pl Dat => x + "om";
-      SF Pl Acc => x + "ów";
-      SF Pl Instr => x + "ami";
-      SF Pl Loc => x + "ach";
-      SF Pl Voc => x + "zi"
-    };
-
-    oper mkNTable0637: Str -> SubstForm => Str; --%
-    oper mkNTable0637 lexem = 
-      let x = Predef.tk 2 lexem in
-    table { 
-      SF Sg Nom => x + "tt";
-      SF Sg Gen => x + "tta";
-      SF Sg Dat => x + "ttowi";
-      SF Sg Acc => x + "tta";
-      SF Sg Instr => x + "ttem";
-      SF Sg Loc => x + "cie";
-      SF Sg Voc => x + "cie";
-      SF Pl Nom => x + "ttowie";
-      SF Pl Gen => x + "ttów";
-      SF Pl Dat => x + "ttom";
-      SF Pl Acc => x + "ttów";
-      SF Pl Instr => x + "ttami";
-      SF Pl Loc => x + "ttach";
-      SF Pl Voc => x + "ttowie"
-    };
-
-    oper mkNTable0638: Str -> SubstForm => Str; --%
-    oper mkNTable0638 lexem = 
-      let x = Predef.tk 7 lexem in
-    table { 
-      SF Sg Nom => x + "narcyza";
-      SF Sg Gen => x + "narcyzy";
-      SF Sg Dat => x + "narcyzie";
-      SF Sg Acc => x + "Narcyzę";
-      SF Sg Instr => x + "Narcyzą";
-      SF Sg Loc => x + "narcyzie";
-      SF Sg Voc => x + "Narcyzo";
-      SF Pl Nom => x + "narcyzy";
-      SF Pl Gen => x + "narcyz";
-      SF Pl Dat => x + "narcyzom";
-      SF Pl Acc => x + "narcyzy";
-      SF Pl Instr => x + "narcyzami";
-      SF Pl Loc => x + "narcyzach";
-      SF Pl Voc => x + "narcyzy"
-    };
-
-    oper mkNTable0639: Str -> SubstForm => Str; --%
-    oper mkNTable0639 lexem = 
-      let x = Predef.tk 6 lexem in
-    table { 
-      SF Sg Nom => x + "nawrot";
-      SF Sg Gen => x + "nawrota";
-      SF Sg Dat => x + "nawrotowi";
-      SF Sg Acc => x + "nawrota";
-      SF Sg Instr => x + "nawrotem";
-      SF Sg Loc => x + "nawrocie";
-      SF Sg Voc => x + "nawrocie";
-      SF Pl Nom => x + "Nawrotowie";
-      SF Pl Gen => x + "nawrotów";
-      SF Pl Dat => x + "nawrotom";
-      SF Pl Acc => x + "nawrotów";
-      SF Pl Instr => x + "nawrotami";
-      SF Pl Loc => x + "nawrotach";
-      SF Pl Voc => x + "Nawrotowie"
-    };
-
-    oper mkNTable0640: Str -> SubstForm => Str; --%
-    oper mkNTable0640 lexem = 
-      let x = Predef.tk 6 lexem in
-    table { 
-      SF Sg Nom => x + "nawrót";
-      SF Sg Gen => x + "nawrota";
-      SF Sg Dat => x + "nawrotowi";
-      SF Sg Acc => x + "nawrota";
-      SF Sg Instr => x + "nawrotem";
-      SF Sg Loc => x + "nawrocie";
-      SF Sg Voc => x + "nawrocie";
-      SF Pl Nom => x + "Nawrotowie";
-      SF Pl Gen => x + "nawrotów";
-      SF Pl Dat => x + "nawrotom";
-      SF Pl Acc => x + "nawrotów";
-      SF Pl Instr => x + "nawrotami";
-      SF Pl Loc => x + "nawrotach";
-      SF Pl Voc => x + "Nawrotowie"
-    };
-
-    oper mkNTable0642: Str -> SubstForm => Str; --%
-    oper mkNTable0642 lexem = 
-      let x = Predef.tk 6 lexem in
-    table { 
-      SF Sg Nom => x + "nelson";
-      SF Sg Gen => x + "nelsona";
-      SF Sg Dat => x + "nelsonowi";
-      SF Sg Acc => x + "nelsona";
-      SF Sg Instr => x + "nelsonem";
-      SF Sg Loc => x + "nelsonie";
-      SF Sg Voc => x + "nelsonie";
-      SF Pl Nom => x + "Nelsonowie";
-      SF Pl Gen => x + "nelsonów";
-      SF Pl Dat => x + "nelsonom";
-      SF Pl Acc => x + "nelsonów";
-      SF Pl Instr => x + "nelsonami";
-      SF Pl Loc => x + "nelsonach";
-      SF Pl Voc => x + "Nelsonowie"
-    };
-
-    oper mkNTable0643: Str -> SubstForm => Str; --%
-    oper mkNTable0643 lexem = 
-      let x = Predef.tk 6 lexem in
-    table { 
-      SF Sg Nom => x + "neptun";
-      SF Sg Gen => x + "Neptuna";
-      SF Sg Dat => x + "neptunowi";
-      SF Sg Acc => x + "Neptuna";
-      SF Sg Instr => x + "neptunem";
-      SF Sg Loc => x + "neptunie";
-      SF Sg Voc => x + "neptunie";
-      SF Pl Nom => x + "neptuny";
-      SF Pl Gen => x + "neptunów";
-      SF Pl Dat => x + "neptunom";
-      SF Pl Acc => x + "neptuny";
-      SF Pl Instr => x + "neptunami";
-      SF Pl Loc => x + "neptunach";
-      SF Pl Voc => x + "neptuny"
-    };
-
-    oper mkNTable0644: Str -> SubstForm => Str; --%
-    oper mkNTable0644 lexem = 
-      let x = Predef.tk 6 lexem in
-    table { 
-      SF Sg Nom => x + "newton";
-      SF Sg Gen => x + "newtona";
-      SF Sg Dat => x + "newtonowi";
-      SF Sg Acc => x + "newtona";
-      SF Sg Instr => x + "newtonem";
-      SF Sg Loc => x + "newtonie";
-      SF Sg Voc => x + "newtonie";
-      SF Pl Nom => x + "Newtonowie";
-      SF Pl Gen => x + "newtonów";
-      SF Pl Dat => x + "newtonom";
-      SF Pl Acc => x + "newtonów";
-      SF Pl Instr => x + "newtonami";
-      SF Pl Loc => x + "newtonach";
-      SF Pl Voc => x + "Newtonowie"
-    };
-
-    oper mkNTable0646: Str -> SubstForm => Str; --%
-    oper mkNTable0646 lexem = 
-      let x = Predef.tk 1 lexem in
-    table { 
-      SF Sg Nom => x + "o";
-      SF Sg Gen => x + "a";
-      SF Sg Dat => x + "u";
-      SF Sg Acc => x + "a";
-      SF Sg Instr => x + "iem";
-      SF Sg Loc => x + "u";
-      SF Sg Voc => x + "o";
-      SF Pl Nom => x + "a";
-      SF Pl Gen => x + "ów";
-      SF Pl Dat => x + "om";
-      SF Pl Acc => x + "ów";
-      SF Pl Instr => x + "ami";
-      SF Pl Loc => x + "ach";
-      SF Pl Voc => x + "a"
-    };
-
-    oper mkNTable0648: Str -> SubstForm => Str; --%
-    oper mkNTable0648 lexem = 
-      let x = Predef.tk 3 lexem in
-    table { 
-      SF Sg Nom => x + "iec";
-      SF Sg Gen => x + "ca";
-      SF Sg Dat => x + "cowi";
-      SF Sg Acc => x + "ca";
-      SF Sg Instr => x + "cem";
-      SF Sg Loc => x + "cu";
-      SF Sg Voc => x + "cze";
-      SF Pl Nom => x + "cy";
-      SF Pl Gen => x + "ców";
-      SF Pl Dat => x + "com";
-      SF Pl Acc => x + "ców";
-      SF Pl Instr => x + "cami";
-      SF Pl Loc => x + "cach";
-      SF Pl Voc => x + "cy"
-    };
-
-    oper mkNTable0649: Str -> SubstForm => Str; --%
-    oper mkNTable0649 lexem = 
-      let x = Predef.tk 5 lexem in
-    table { 
-      SF Sg Nom => x + "nobel";
-      SF Sg Gen => x + "nobla";
-      SF Sg Dat => x + "noblowi";
-      SF Sg Acc => x + "nobla";
-      SF Sg Instr => x + "noblem";
-      SF Sg Loc => x + "noblu";
-      SF Sg Voc => x + "noblu";
-      SF Pl Nom => x + "Noblowie";
-      SF Pl Gen => x + "Noblów";
-      SF Pl Dat => x + "noblom";
-      SF Pl Acc => x + "Noblów";
-      SF Pl Instr => x + "noblami";
-      SF Pl Loc => x + "noblach";
-      SF Pl Voc => x + "Noblowie"
-    };
-
-    oper mkNTable0650: Str -> SubstForm => Str; --%
-    oper mkNTable0650 lexem = 
-      let x = Predef.tk 6 lexem in
-    table { 
-      SF Sg Nom => x + "norweg";
-      SF Sg Gen => x + "norwega";
-      SF Sg Dat => x + "norwegowi";
-      SF Sg Acc => x + "norwega";
-      SF Sg Instr => x + "norwegiem";
-      SF Sg Loc => x + "norwegu";
-      SF Sg Voc => x + "norwegu";
-      SF Pl Nom => x + "Norwegowie";
-      SF Pl Gen => x + "norwegów";
-      SF Pl Dat => x + "norwegom";
-      SF Pl Acc => x + "norwegów";
-      SF Pl Instr => x + "norwegami";
-      SF Pl Loc => x + "norwegach";
-      SF Pl Voc => x + "Norwegowie"
-    };
-
-    oper mkNTable0651: Str -> SubstForm => Str; --%
-    oper mkNTable0651 lexem = 
-      let x = Predef.tk 16 lexem in
-    table { 
-      SF Sg Nom => x + "nowofundlandczyk";
-      SF Sg Gen => x + "nowofundlandczyka";
-      SF Sg Dat => x + "nowofundlandczykowi";
-      SF Sg Acc => x + "nowofundlandczyka";
-      SF Sg Instr => x + "nowofundlandczykiem";
-      SF Sg Loc => x + "nowofundlandczyku";
-      SF Sg Voc => x + "nowofundlandczyku";
-      SF Pl Nom => x + "Nowofundlandczycy";
-      SF Pl Gen => x + "nowofundlandczyków";
-      SF Pl Dat => x + "nowofundlandczykom";
-      SF Pl Acc => x + "nowofundlandczyków";
-      SF Pl Instr => x + "nowofundlandczykami";
-      SF Pl Loc => x + "nowofundlandczykach";
-      SF Pl Voc => x + "Nowofundlandczycy"
-    };
-
-    oper mkNTable0653: Str -> SubstForm => Str; --%
-    oper mkNTable0653 lexem = 
-      let x = Predef.tk 5 lexem in
-    table { 
-      SF Sg Nom => x + "oczko";
-      SF Sg Gen => x + "oczki";
-      SF Sg Dat => x + "Oczce";
-      SF Sg Acc => x + "Oczkę";
-      SF Sg Instr => x + "Oczką";
-      SF Sg Loc => x + "Oczce";
-      SF Sg Voc => x + "oczko";
-      SF Pl Nom => x + "Oczkowie";
-      SF Pl Gen => x + "Oczków";
-      SF Pl Dat => x + "oczkom";
-      SF Pl Acc => x + "Oczków";
-      SF Pl Instr => x + "oczkami";
-      SF Pl Loc => x + "oczkach";
-      SF Pl Voc => x + "Oczkowie"
-    };
-
-    oper mkNTable0654: Str -> SubstForm => Str; --%
-    oper mkNTable0654 lexem = 
-      let x = Predef.tk 7 lexem in
-    table { 
-      SF Sg Nom => x + "odyniec";
-      SF Sg Gen => x + "odyńca";
-      SF Sg Dat => x + "odyńcowi";
-      SF Sg Acc => x + "odyńca";
-      SF Sg Instr => x + "odyńcem";
-      SF Sg Loc => x + "odyńcu";
-      SF Sg Voc => x + "odyńcu";
-      SF Pl Nom => x + "Odyńcowie";
-      SF Pl Gen => x + "odyńców";
-      SF Pl Dat => x + "odyńcom";
-      SF Pl Acc => x + "odyńców";
-      SF Pl Instr => x + "odyńcami";
-      SF Pl Loc => x + "odyńcach";
-      SF Pl Voc => x + "Odyńcowie"
-    };
-
-    oper mkNTable0656: Str -> SubstForm => Str; --%
-    oper mkNTable0656 lexem = 
-      let x = Predef.tk 3 lexem in
-    table { 
-      SF Sg Nom => x + "ohm";
-      SF Sg Gen => x + "ohma";
-      SF Sg Dat => x + "ohmowi";
-      SF Sg Acc => x + "ohma";
-      SF Sg Instr => x + "ohmem";
-      SF Sg Loc => x + "ohmie";
-      SF Sg Voc => x + "ohmie";
-      SF Pl Nom => x + "Ohmowie";
-      SF Pl Gen => x + "ohmów";
-      SF Pl Dat => x + "ohmom";
-      SF Pl Acc => x + "ohmów";
-      SF Pl Instr => x + "ohmami";
-      SF Pl Loc => x + "ohmach";
-      SF Pl Voc => x + "Ohmowie"
-    };
-
-    oper mkNTable0658: Str -> SubstForm => Str; --%
-    oper mkNTable0658 lexem = 
-      let x = Predef.tk 7 lexem in
-    table { 
-      SF Sg Nom => x + "Oktawia";
-      SF Sg Gen => x + "Oktawii";
-      SF Sg Dat => x + "Oktawii";
-      SF Sg Acc => x + "Oktawię";
-      SF Sg Instr => x + "Oktawią";
-      SF Sg Loc => x + "Oktawii";
-      SF Sg Voc => x + "Oktawio";
-      SF Pl Nom => x + "oktawie";
-      SF Pl Gen => x + "Oktawii";
-      SF Pl Dat => x + "Oktawiom";
-      SF Pl Acc => x + "oktawie";
-      SF Pl Instr => x + "Oktawiami";
-      SF Pl Loc => x + "Oktawiach";
-      SF Pl Voc => x + "oktawie"
-    };
-
-    oper mkNTable0659: Str -> SubstForm => Str; --%
-    oper mkNTable0659 lexem = 
-      let x = Predef.tk 7 lexem in
-    table { 
-      SF Sg Nom => x + "Olimpia";
-      SF Sg Gen => x + "Olimpii";
-      SF Sg Dat => x + "Olimpii";
-      SF Sg Acc => x + "Olimpię";
-      SF Sg Instr => x + "Olimpią";
-      SF Sg Loc => x + "Olimpii";
-      SF Sg Voc => x + "Olimpio";
-      SF Pl Nom => x + "olimpie";
-      SF Pl Gen => x + "Olimpii";
-      SF Pl Dat => x + "Olimpiom";
-      SF Pl Acc => x + "olimpie";
-      SF Pl Instr => x + "Olimpiami";
-      SF Pl Loc => x + "Olimpiach";
-      SF Pl Voc => x + "olimpie"
-    };
-
-    oper mkNTable0660: Str -> SubstForm => Str; --%
-    oper mkNTable0660 lexem = 
-      let x = Predef.tk 6 lexem in
-    table { 
-      SF Sg Nom => x + "Oliwia";
-      SF Sg Gen => x + "Oliwii";
-      SF Sg Dat => x + "Oliwii";
-      SF Sg Acc => x + "Oliwię";
-      SF Sg Instr => x + "Oliwią";
-      SF Sg Loc => x + "Oliwii";
-      SF Sg Voc => x + "Oliwio";
-      SF Pl Nom => x + "oliwie";
-      SF Pl Gen => x + "Oliwii";
-      SF Pl Dat => x + "Oliwiom";
-      SF Pl Acc => x + "oliwie";
-      SF Pl Instr => x + "Oliwiami";
-      SF Pl Loc => x + "Oliwiach";
-      SF Pl Voc => x + "oliwie"
-    };
-
-    oper mkNTable0664: Str -> SubstForm => Str; --%
-    oper mkNTable0664 lexem = 
-      let x = Predef.tk 5 lexem in
-    table { 
-      SF Sg Nom => x + "orkan";
-      SF Sg Gen => x + "Orkana";
-      SF Sg Dat => x + "orkanowi";
-      SF Sg Acc => x + "Orkana";
-      SF Sg Instr => x + "orkanem";
-      SF Sg Loc => x + "orkanie";
-      SF Sg Voc => x + "orkanie";
-      SF Pl Nom => x + "Orkanowie";
-      SF Pl Gen => x + "orkanów";
-      SF Pl Dat => x + "orkanom";
-      SF Pl Acc => x + "orkanów";
-      SF Pl Instr => x + "orkanami";
-      SF Pl Loc => x + "orkanach";
-      SF Pl Voc => x + "Orkanowie"
-    };
-
-    oper mkNTable0665: Str -> SubstForm => Str; --%
-    oper mkNTable0665 lexem = 
-      let x = Predef.tk 5 lexem in
-    table { 
-      SF Sg Nom => x + "orzeł";
-      SF Sg Gen => x + "orła";
-      SF Sg Dat => x + "orłowi";
-      SF Sg Acc => x + "orła";
-      SF Sg Instr => x + "orłem";
-      SF Sg Loc => x + "orle";
-      SF Sg Voc => x + "orle";
-      SF Pl Nom => x + "Orłowie";
-      SF Pl Gen => x + "orłów";
-      SF Pl Dat => x + "orłom";
-      SF Pl Acc => x + "orłów";
-      SF Pl Instr => x + "orłami";
-      SF Pl Loc => x + "orłach";
-      SF Pl Voc => x + "Orłowie"
-    };
-
-    oper mkNTable0667: Str -> SubstForm => Str; --%
-    oper mkNTable0667 lexem = 
-      let x = Predef.tk 2 lexem in
-    table { 
-      SF Sg Nom => x + "óg";
-      SF Sg Gen => x + "ogu";
-      SF Sg Dat => x + "ogowi";
-      SF Sg Acc => x + "óg";
-      SF Sg Instr => x + "ogiem";
-      SF Sg Loc => x + "ogu";
-      SF Sg Voc => x + "ogu";
-      SF Pl Nom => x + "ogi";
-      SF Pl Gen => x + "ogów";
-      SF Pl Dat => x + "ogom";
-      SF Pl Acc => x + "ogi";
-      SF Pl Instr => x + "ogami";
-      SF Pl Loc => x + "ogach";
-      SF Pl Voc => x + "ogi"
-    };
-
-    oper mkNTable0668: Str -> SubstForm => Str; --%
-    oper mkNTable0668 lexem = 
-      let x = Predef.tk 2 lexem in
-    table { 
-      SF Sg Nom => x + "óg";
-      SF Sg Gen => x + "oga";
-      SF Sg Dat => x + "ogowi";
-      SF Sg Acc => x + "óg";
-      SF Sg Instr => x + "ogiem";
-      SF Sg Loc => x + "ogu";
-      SF Sg Voc => x + "ogu";
-      SF Pl Nom => x + "ogi";
-      SF Pl Gen => x + "ogów";
-      SF Pl Dat => x + "ogom";
-      SF Pl Acc => x + "ogi";
-      SF Pl Instr => x + "ogami";
-      SF Pl Loc => x + "ogach";
-      SF Pl Voc => x + "ogi"
-    };
-
-    oper mkNTable0669: Str -> SubstForm => Str; --%
-    oper mkNTable0669 lexem = 
-      let x = Predef.tk 6 lexem in
-    table { 
-      SF Sg Nom => x + "Otręba";
-      SF Sg Gen => x + "otręby";
-      SF Sg Dat => x + "Otrębie";
-      SF Sg Acc => x + "Otrębę";
-      SF Sg Instr => x + "Otrębą";
-      SF Sg Loc => x + "Otrębie";
-      SF Sg Voc => x + "Otrębo";
-      SF Pl Nom => x + "Otrębowie";
-      SF Pl Gen => x + "otrębów";
-      SF Pl Dat => x + "otrębom";
-      SF Pl Acc => x + "otrębów";
-      SF Pl Instr => x + "otrębami";
-      SF Pl Loc => x + "otrębach";
-      SF Pl Voc => x + "Otrębowie"
-    };
-
-    oper mkNTable0670: Str -> SubstForm => Str; --%
-    oper mkNTable0670 lexem = 
-      let x = Predef.tk 8 lexem in
-    table { 
-      SF Sg Nom => x + "owczarek";
-      SF Sg Gen => x + "owczarka";
-      SF Sg Dat => x + "owczarkowi";
-      SF Sg Acc => x + "owczarka";
-      SF Sg Instr => x + "owczarkiem";
-      SF Sg Loc => x + "owczarku";
-      SF Sg Voc => x + "owczarku";
-      SF Pl Nom => x + "Owczarkowie";
-      SF Pl Gen => x + "owczarków";
-      SF Pl Dat => x + "owczarkom";
-      SF Pl Acc => x + "owczarków";
-      SF Pl Instr => x + "owczarkami";
-      SF Pl Loc => x + "owczarkach";
-      SF Pl Voc => x + "Owczarkowie"
-    };
-
-    oper mkNTable0672: Str -> SubstForm => Str; --%
-    oper mkNTable0672 lexem = 
-      let x = Predef.tk 3 lexem in
-    table { 
-      SF Sg Nom => x + "nie";
-      SF Sg Gen => x + "nia";
-      SF Sg Dat => x + "niu";
-      SF Sg Acc => x + "nie";
-      SF Sg Instr => x + "niem";
-      SF Sg Loc => x + "niu";
-      SF Sg Voc => x + "nie";
-      SF Pl Nom => x + "nia";
-      SF Pl Gen => x + "ń";
-      SF Pl Dat => x + "niom";
-      SF Pl Acc => x + "nia";
-      SF Pl Instr => x + "niami";
-      SF Pl Loc => x + "niach";
-      SF Pl Voc => x + "nia"
-    };
-
-    oper mkNTable0673: Str -> SubstForm => Str; --%
-    oper mkNTable0673 lexem = 
-      let x = Predef.tk 1 lexem in
-    table { 
-      SF Sg Nom => x + "x";
-      SF Sg Gen => x + "ksu";
-      SF Sg Dat => x + "ksowi";
-      SF Sg Acc => x + "x";
-      SF Sg Instr => x + "ksem";
-      SF Sg Loc => x + "ksie";
-      SF Sg Voc => x + "ksie";
-      SF Pl Nom => x + "ksy";
-      SF Pl Gen => x + "ksów";
-      SF Pl Dat => x + "ksom";
-      SF Pl Acc => x + "ksy";
-      SF Pl Instr => x + "ksami";
-      SF Pl Loc => x + "ksach";
-      SF Pl Voc => x + "ksy"
-    };
-
-    oper mkNTable0674: Str -> SubstForm => Str; --%
-    oper mkNTable0674 lexem = 
-      let x = Predef.tk 1 lexem in
-    table { 
-      SF Sg Nom => x + "o";
-      SF Sg Gen => x + "o";
-      SF Sg Dat => x + "owi";
-      SF Sg Acc => x + "o";
-      SF Sg Instr => x + "o";
-      SF Sg Loc => x + "u";
-      SF Sg Voc => x + "o";
-      SF Pl Nom => x + "owie";
-      SF Pl Gen => x + "ów";
-      SF Pl Dat => x + "om";
-      SF Pl Acc => x + "ów";
-      SF Pl Instr => x + "o";
-      SF Pl Loc => x + "o";
-      SF Pl Voc => x + "owie"
-    };
-
-    oper mkNTable0675: Str -> SubstForm => Str; --%
-    oper mkNTable0675 lexem = 
-      let x = Predef.tk 3 lexem in
-    table { 
-      SF Sg Nom => x + "pac";
-      SF Sg Gen => x + "paca";
-      SF Sg Dat => x + "pacowi";
-      SF Sg Acc => x + "paca";
-      SF Sg Instr => x + "pacem";
-      SF Sg Loc => x + "pacu";
-      SF Sg Voc => x + "pacu";
-      SF Pl Nom => x + "Pacowie";
-      SF Pl Gen => x + "pacy";
-      SF Pl Dat => x + "pacom";
-      SF Pl Acc => x + "pacy";
-      SF Pl Instr => x + "pacami";
-      SF Pl Loc => x + "pacach";
-      SF Pl Voc => x + "Pacowie"
-    };
-
-    oper mkNTable0677: Str -> SubstForm => Str; --%
-    oper mkNTable0677 lexem = 
-      let x = Predef.tk 5 lexem in
-    table { 
-      SF Sg Nom => x + "pająk";
-      SF Sg Gen => x + "pająka";
-      SF Sg Dat => x + "pająkowi";
-      SF Sg Acc => x + "pająka";
-      SF Sg Instr => x + "pająkiem";
-      SF Sg Loc => x + "pająku";
-      SF Sg Voc => x + "pająku";
-      SF Pl Nom => x + "Pająkowie";
-      SF Pl Gen => x + "pająków";
-      SF Pl Dat => x + "pająkom";
-      SF Pl Acc => x + "pająków";
-      SF Pl Instr => x + "pająkami";
-      SF Pl Loc => x + "pająkach";
-      SF Pl Voc => x + "Pająkowie"
-    };
-
-    oper mkNTable0678: Str -> SubstForm => Str; --%
-    oper mkNTable0678 lexem = 
-      let x = Predef.tk 6 lexem in
-    table { 
-      SF Sg Nom => x + "Pakuła";
-      SF Sg Gen => x + "pakuły";
-      SF Sg Dat => x + "Pakule";
-      SF Sg Acc => x + "Pakułę";
-      SF Sg Instr => x + "Pakułą";
-      SF Sg Loc => x + "Pakule";
-      SF Sg Voc => x + "Pakuło";
-      SF Pl Nom => x + "Pakułowie";
-      SF Pl Gen => x + "pakułów";
-      SF Pl Dat => x + "pakułom";
-      SF Pl Acc => x + "pakułów";
-      SF Pl Instr => x + "pakułami";
-      SF Pl Loc => x + "pakułach";
-      SF Pl Voc => x + "Pakułowie"
-    };
-
-    oper mkNTable0679: Str -> SubstForm => Str; --%
-    oper mkNTable0679 lexem = 
-      let x = Predef.tk 7 lexem in
-    table { 
-      SF Sg Nom => x + "palatyn";
-      SF Sg Gen => x + "Palatynu";
-      SF Sg Dat => x + "palatynowi";
-      SF Sg Acc => x + "palatyn";
-      SF Sg Instr => x + "palatynem";
-      SF Sg Loc => x + "palatynie";
-      SF Sg Voc => x + "palatynie";
-      SF Pl Nom => x + "palatyny";
-      SF Pl Gen => x + "palatynów";
-      SF Pl Dat => x + "palatynom";
-      SF Pl Acc => x + "palatyny";
-      SF Pl Instr => x + "palatynami";
-      SF Pl Loc => x + "palatynach";
-      SF Pl Voc => x + "palatyny"
-    };
-
-    oper mkNTable0680: Str -> SubstForm => Str; --%
-    oper mkNTable0680 lexem = 
-      let x = Predef.tk 5 lexem in
-    table { 
-      SF Sg Nom => x + "palma";
-      SF Sg Gen => x + "palmy";
-      SF Sg Dat => x + "palmie";
-      SF Sg Acc => x + "palmę";
-      SF Sg Instr => x + "palmą";
-      SF Sg Loc => x + "palmie";
-      SF Sg Voc => x + "palmo";
-      SF Pl Nom => x + "Palmowie";
-      SF Pl Gen => x + "palmów";
-      SF Pl Dat => x + "palmom";
-      SF Pl Acc => x + "palmów";
-      SF Pl Instr => x + "palmami";
-      SF Pl Loc => x + "palmach";
-      SF Pl Voc => x + "Palmowie"
-    };
-
-    oper mkNTable0681: Str -> SubstForm => Str; --%
-    oper mkNTable0681 lexem = 
-      let x = Predef.tk 6 lexem in
-    table { 
-      SF Sg Nom => x + "paluch";
-      SF Sg Gen => x + "palucha";
-      SF Sg Dat => x + "paluchowi";
-      SF Sg Acc => x + "palucha";
-      SF Sg Instr => x + "paluchem";
-      SF Sg Loc => x + "paluchu";
-      SF Sg Voc => x + "paluchu";
-      SF Pl Nom => x + "Paluchowie";
-      SF Pl Gen => x + "paluchów";
-      SF Pl Dat => x + "paluchom";
-      SF Pl Acc => x + "paluchów";
-      SF Pl Instr => x + "paluchami";
-      SF Pl Loc => x + "paluchach";
-      SF Pl Voc => x + "Paluchowie"
-    };
-
-    oper mkNTable0682: Str -> SubstForm => Str; --%
-    oper mkNTable0682 lexem = 
-      let x = Predef.tk 3 lexem in
-    table { 
-      SF Sg Nom => x + "pan";
-      SF Sg Gen => x + "pana";
-      SF Sg Dat => x + "Panowi";
-      SF Sg Acc => x + "pana";
-      SF Sg Instr => x + "panem";
-      SF Sg Loc => x + "panie";
-      SF Sg Voc => x + "panie";
-      SF Pl Nom => x + "panowie";
-      SF Pl Gen => x + "panów";
-      SF Pl Dat => x + "panom";
-      SF Pl Acc => x + "panów";
-      SF Pl Instr => x + "panami";
-      SF Pl Loc => x + "panach";
-      SF Pl Voc => x + "panowie"
-    };
-
-    oper mkNTable0684: Str -> SubstForm => Str; --%
-    oper mkNTable0684 lexem = 
-      let x = Predef.tk 9 lexem in
-    table { 
-      SF Sg Nom => x + "parkinson";
-      SF Sg Gen => x + "parkinsona";
-      SF Sg Dat => x + "parkinsonowi";
-      SF Sg Acc => x + "parkinsona";
-      SF Sg Instr => x + "parkinsonem";
-      SF Sg Loc => x + "parkinsonie";
-      SF Sg Voc => x + "parkinsonie";
-      SF Pl Nom => x + "Parkinsonowie";
-      SF Pl Gen => x + "parkinsonów";
-      SF Pl Dat => x + "parkinsonom";
-      SF Pl Acc => x + "parkinsonów";
-      SF Pl Instr => x + "parkinsonami";
-      SF Pl Loc => x + "parkinsonach";
-      SF Pl Voc => x + "Parkinsonowie"
-    };
-
-    oper mkNTable0685: Str -> SubstForm => Str; --%
-    oper mkNTable0685 lexem = 
-      let x = Predef.tk 5 lexem in
-    table { 
-      SF Sg Nom => x + "pasek";
-      SF Sg Gen => x + "paska";
-      SF Sg Dat => x + "paskowi";
-      SF Sg Acc => x + "paska";
-      SF Sg Instr => x + "paskiem";
-      SF Sg Loc => x + "pasku";
-      SF Sg Voc => x + "pasku";
-      SF Pl Nom => x + "Paskowie";
-      SF Pl Gen => x + "pasków";
-      SF Pl Dat => x + "paskom";
-      SF Pl Acc => x + "pasków";
-      SF Pl Instr => x + "paskami";
-      SF Pl Loc => x + "paskach";
-      SF Pl Voc => x + "Paskowie"
-    };
-
-    oper mkNTable0686: Str -> SubstForm => Str; --%
-    oper mkNTable0686 lexem = 
-      let x = Predef.tk 9 lexem in
-    table { 
-      SF Sg Nom => x + "pasternak";
-      SF Sg Gen => x + "Pasternaka";
-      SF Sg Dat => x + "pasternakowi";
-      SF Sg Acc => x + "Pasternaka";
-      SF Sg Instr => x + "pasternakiem";
-      SF Sg Loc => x + "pasternaku";
-      SF Sg Voc => x + "pasternaku";
-      SF Pl Nom => x + "Pasternakowie";
-      SF Pl Gen => x + "pasternaków";
-      SF Pl Dat => x + "pasternakom";
-      SF Pl Acc => x + "pasternaków";
-      SF Pl Instr => x + "pasternakami";
-      SF Pl Loc => x + "pasternakach";
-      SF Pl Voc => x + "Pasternakowie"
-    };
-
-    oper mkNTable0688: Str -> SubstForm => Str; --%
-    oper mkNTable0688 lexem = 
-      let x = Predef.tk 7 lexem in
-    table { 
-      SF Sg Nom => x + "patrycy";
-      SF Sg Gen => x + "Patrycego";
-      SF Sg Dat => x + "Patrycemu";
-      SF Sg Acc => x + "Patrycego";
-      SF Sg Instr => x + "Patrycym";
-      SF Sg Loc => x + "Patrycym";
-      SF Sg Voc => x + "patrycy";
-      SF Pl Nom => x + "Patrycowie";
-      SF Pl Gen => x + "Patrycych";
-      SF Pl Dat => x + "Patrycym";
-      SF Pl Acc => x + "Patrycych";
-      SF Pl Instr => x + "Patrycymi";
-      SF Pl Loc => x + "Patrycych";
-      SF Pl Voc => x + "Patrycowie"
-    };
-
-    oper mkNTable0689: Str -> SubstForm => Str; --%
-    oper mkNTable0689 lexem = 
-      let x = Predef.tk 7 lexem in
-    table { 
-      SF Sg Nom => x + "paulina";
-      SF Sg Gen => x + "pauliny";
-      SF Sg Dat => x + "paulinie";
-      SF Sg Acc => x + "Paulinę";
-      SF Sg Instr => x + "Pauliną";
-      SF Sg Loc => x + "paulinie";
-      SF Sg Voc => x + "Paulino";
-      SF Pl Nom => x + "pauliny";
-      SF Pl Gen => x + "paulin";
-      SF Pl Dat => x + "paulinom";
-      SF Pl Acc => x + "pauliny";
-      SF Pl Instr => x + "paulinami";
-      SF Pl Loc => x + "paulinach";
-      SF Pl Voc => x + "pauliny"
-    };
-
-    oper mkNTable0690: Str -> SubstForm => Str; --%
-    oper mkNTable0690 lexem = 
-      let x = Predef.tk 7 lexem in
-    table { 
-      SF Sg Nom => x + "Pawełek";
-      SF Sg Gen => x + "Pawełka";
-      SF Sg Dat => x + "Pawełkowi";
-      SF Sg Acc => x + "Pawełka";
-      SF Sg Instr => x + "Pawełkiem";
-      SF Sg Loc => x + "Pawełku";
-      SF Sg Voc => x + "Pawełku";
-      SF Pl Nom => x + "Pawełkowie";
-      SF Pl Gen => x + "pawełków";
-      SF Pl Dat => x + "pawełkom";
-      SF Pl Acc => x + "pawełków";
-      SF Pl Instr => x + "pawełkami";
-      SF Pl Loc => x + "pawełkach";
-      SF Pl Voc => x + "Pawełkowie"
-    };
-
-    oper mkNTable0691: Str -> SubstForm => Str; --%
-    oper mkNTable0691 lexem = 
-      let x = Predef.tk 5 lexem in
-    table { 
-      SF Sg Nom => x + "pawia";
-      SF Sg Gen => x + "Pawii";
-      SF Sg Dat => x + "Pawii";
-      SF Sg Acc => x + "Pawię";
-      SF Sg Instr => x + "Pawią";
-      SF Sg Loc => x + "Pawii";
-      SF Sg Voc => x + "Pawio";
-      SF Pl Nom => x + "pawie";
-      SF Pl Gen => x + "Pawii";
-      SF Pl Dat => x + "pawiom";
-      SF Pl Acc => x + "pawie";
-      SF Pl Instr => x + "pawiami";
-      SF Pl Loc => x + "pawiach";
-      SF Pl Voc => x + "pawie"
-    };
-
-    oper mkNTable0692: Str -> SubstForm => Str; --%
-    oper mkNTable0692 lexem = 
-      let x = Predef.tk 5 lexem in
-    table { 
-      SF Sg Nom => x + "pałka";
-      SF Sg Gen => x + "pałki";
-      SF Sg Dat => x + "pałce";
-      SF Sg Acc => x + "pałkę";
-      SF Sg Instr => x + "pałką";
-      SF Sg Loc => x + "pałce";
-      SF Sg Voc => x + "pałko";
-      SF Pl Nom => x + "Pałkowie";
-      SF Pl Gen => x + "Pałków";
-      SF Pl Dat => x + "pałkom";
-      SF Pl Acc => x + "Pałków";
-      SF Pl Instr => x + "pałkami";
-      SF Pl Loc => x + "pałkach";
-      SF Pl Voc => x + "Pałkowie"
-    };
-
-    oper mkNTable0693: Str -> SubstForm => Str; --%
-    oper mkNTable0693 lexem = 
-      let x = Predef.tk 5 lexem in
-    table { 
-      SF Sg Nom => x + "peron";
-      SF Sg Gen => x + "Perona";
-      SF Sg Dat => x + "peronowi";
-      SF Sg Acc => x + "Perona";
-      SF Sg Instr => x + "peronem";
-      SF Sg Loc => x + "peronie";
-      SF Sg Voc => x + "peronie";
-      SF Pl Nom => x + "Peronowie";
-      SF Pl Gen => x + "peronów";
-      SF Pl Dat => x + "peronom";
-      SF Pl Acc => x + "peronów";
-      SF Pl Instr => x + "peronami";
-      SF Pl Loc => x + "peronach";
-      SF Pl Voc => x + "Peronowie"
-    };
-
-    oper mkNTable0694: Str -> SubstForm => Str; --%
-    oper mkNTable0694 lexem = 
-      let x = Predef.tk 4 lexem in
-    table { 
-      SF Sg Nom => x + "pers";
-      SF Sg Gen => x + "persa";
-      SF Sg Dat => x + "persowi";
-      SF Sg Acc => x + "persa";
-      SF Sg Instr => x + "persem";
-      SF Sg Loc => x + "persie";
-      SF Sg Voc => x + "persie";
-      SF Pl Nom => x + "Persowie";
-      SF Pl Gen => x + "persów";
-      SF Pl Dat => x + "persom";
-      SF Pl Acc => x + "persów";
-      SF Pl Instr => x + "persami";
-      SF Pl Loc => x + "persach";
-      SF Pl Voc => x + "Persowie"
-    };
-
-    oper mkNTable0696: Str -> SubstForm => Str; --%
-    oper mkNTable0696 lexem = 
-      let x = Predef.tk 6 lexem in
-    table { 
-      SF Sg Nom => x + "piecyk";
-      SF Sg Gen => x + "piecyka";
-      SF Sg Dat => x + "piecykowi";
-      SF Sg Acc => x + "piecyka";
-      SF Sg Instr => x + "piecykiem";
-      SF Sg Loc => x + "piecyku";
-      SF Sg Voc => x + "piecyku";
-      SF Pl Nom => x + "Piecykowie";
-      SF Pl Gen => x + "piecyków";
-      SF Pl Dat => x + "piecykom";
-      SF Pl Acc => x + "piecyków";
-      SF Pl Instr => x + "piecykami";
-      SF Pl Loc => x + "piecykach";
-      SF Pl Voc => x + "Piecykowie"
-    };
-
-    oper mkNTable0697: Str -> SubstForm => Str; --%
-    oper mkNTable0697 lexem = 
-      let x = Predef.tk 9 lexem in
-    table { 
-      SF Sg Nom => x + "pieniążek";
-      SF Sg Gen => x + "pieniążka";
-      SF Sg Dat => x + "pieniążkowi";
-      SF Sg Acc => x + "pieniążka";
-      SF Sg Instr => x + "pieniążkiem";
-      SF Sg Loc => x + "pieniążku";
-      SF Sg Voc => x + "pieniążku";
-      SF Pl Nom => x + "Pieniążkowie";
-      SF Pl Gen => x + "pieniążków";
-      SF Pl Dat => x + "pieniążkom";
-      SF Pl Acc => x + "pieniążków";
-      SF Pl Instr => x + "pieniążkami";
-      SF Pl Loc => x + "pieniążkach";
-      SF Pl Voc => x + "Pieniążkowie"
-    };
-
-    oper mkNTable0698: Str -> SubstForm => Str; --%
-    oper mkNTable0698 lexem = 
-      let x = Predef.tk 6 lexem in
-    table { 
-      SF Sg Nom => x + "Pilawa";
-      SF Sg Gen => x + "pilawy";
-      SF Sg Dat => x + "pilawie";
-      SF Sg Acc => x + "Pilawę";
-      SF Sg Instr => x + "Pilawą";
-      SF Sg Loc => x + "pilawie";
-      SF Sg Voc => x + "Pilawo";
-      SF Pl Nom => x + "pilawy";
-      SF Pl Gen => x + "pilaw";
-      SF Pl Dat => x + "pilawom";
-      SF Pl Acc => x + "pilawy";
-      SF Pl Instr => x + "pilawami";
-      SF Pl Loc => x + "pilawach";
-      SF Pl Voc => x + "pilawy"
-    };
-
-    oper mkNTable0700: Str -> SubstForm => Str; --%
-    oper mkNTable0700 lexem = 
-      let x = Predef.tk 7 lexem in
-    table { 
-      SF Sg Nom => x + "pisarek";
-      SF Sg Gen => x + "pisarka";
-      SF Sg Dat => x + "Pisarkowi";
-      SF Sg Acc => x + "pisarka";
-      SF Sg Instr => x + "Pisarkiem";
-      SF Sg Loc => x + "Pisarku";
-      SF Sg Voc => x + "Pisarku";
-      SF Pl Nom => x + "Pisarkowie";
-      SF Pl Gen => x + "Pisarków";
-      SF Pl Dat => x + "pisarkom";
-      SF Pl Acc => x + "Pisarków";
-      SF Pl Instr => x + "pisarkami";
-      SF Pl Loc => x + "pisarkach";
-      SF Pl Voc => x + "Pisarkowie"
-    };
-
-    oper mkNTable0701: Str -> SubstForm => Str; --%
-    oper mkNTable0701 lexem = 
-      let x = Predef.tk 2 lexem in
-    table { 
-      SF Sg Nom => x + "ro";
-      SF Sg Gen => x + "ra";
-      SF Sg Dat => x + "rowi";
-      SF Sg Acc => x + "ra";
-      SF Sg Instr => x + "rem";
-      SF Sg Loc => x + "ze";
-      SF Sg Voc => x + "ro";
-      SF Pl Nom => x + "rowie";
-      SF Pl Gen => x + "rów";
-      SF Pl Dat => x + "rom";
-      SF Pl Acc => x + "rów";
-      SF Pl Instr => x + "rami";
-      SF Pl Loc => x + "rach";
-      SF Pl Voc => x + "rowie"
-    };
-
-    oper mkNTable0702: Str -> SubstForm => Str; --%
-    oper mkNTable0702 lexem = 
-      let x = Predef.tk 6 lexem in
-    table { 
-      SF Sg Nom => x + "piątek";
-      SF Sg Gen => x + "piątka";
-      SF Sg Dat => x + "piątkowi";
-      SF Sg Acc => x + "piątka";
-      SF Sg Instr => x + "piątkiem";
-      SF Sg Loc => x + "piątku";
-      SF Sg Voc => x + "piątku";
-      SF Pl Nom => x + "Piątkowie";
-      SF Pl Gen => x + "piątków";
-      SF Pl Dat => x + "piątkom";
-      SF Pl Acc => x + "piątków";
-      SF Pl Instr => x + "piątkami";
-      SF Pl Loc => x + "piątkach";
-      SF Pl Voc => x + "Piątkowie"
-    };
-
-    oper mkNTable0703: Str -> SubstForm => Str; --%
-    oper mkNTable0703 lexem = 
-      let x = Predef.tk 6 lexem in
-    table { 
-      SF Sg Nom => x + "piętak";
-      SF Sg Gen => x + "piętaka";
-      SF Sg Dat => x + "piętakowi";
-      SF Sg Acc => x + "piętaka";
-      SF Sg Instr => x + "piętakiem";
-      SF Sg Loc => x + "piętaku";
-      SF Sg Voc => x + "piętaku";
-      SF Pl Nom => x + "Piętakowie";
-      SF Pl Gen => x + "piętaków";
-      SF Pl Dat => x + "piętakom";
-      SF Pl Acc => x + "piętaków";
-      SF Pl Instr => x + "piętakami";
-      SF Pl Loc => x + "piętakach";
-      SF Pl Voc => x + "Piętakowie"
-    };
-
-    oper mkNTable0704: Str -> SubstForm => Str; --%
-    oper mkNTable0704 lexem = 
-      let x = Predef.tk 1 lexem in
-    table { 
-      SF Sg Nom => x + "a";
-      SF Sg Gen => x + "y";
-      SF Sg Dat => x + "a";
-      SF Sg Acc => x + "ę";
-      SF Sg Instr => x + "ą";
-      SF Sg Loc => x + "a";
-      SF Sg Voc => x + "o";
-      SF Pl Nom => x + "y";
-      SF Pl Gen => x + "a";
-      SF Pl Dat => x + "a";
-      SF Pl Acc => x + "y";
-      SF Pl Instr => x + "a";
-      SF Pl Loc => x + "a";
-      SF Pl Voc => x + "y"
-    };
-
-    oper mkNTable0706: Str -> SubstForm => Str; --%
-    oper mkNTable0706 lexem = 
-      let x = Predef.tk 5 lexem in
-    table { 
-      SF Sg Nom => x + "pluta";
-      SF Sg Gen => x + "pluty";
-      SF Sg Dat => x + "plucie";
-      SF Sg Acc => x + "plutę";
-      SF Sg Instr => x + "plutą";
-      SF Sg Loc => x + "plucie";
-      SF Sg Voc => x + "pluto";
-      SF Pl Nom => x + "Plutowie";
-      SF Pl Gen => x + "Plutów";
-      SF Pl Dat => x + "plutom";
-      SF Pl Acc => x + "Plutów";
-      SF Pl Instr => x + "plutami";
-      SF Pl Loc => x + "plutach";
-      SF Pl Voc => x + "Plutowie"
-    };
-
-    oper mkNTable0707: Str -> SubstForm => Str; --%
-    oper mkNTable0707 lexem = 
-      let x = Predef.tk 6 lexem in
-    table { 
-      SF Sg Nom => x + "pluton";
-      SF Sg Gen => x + "Plutona";
-      SF Sg Dat => x + "plutonowi";
-      SF Sg Acc => x + "Plutona";
-      SF Sg Instr => x + "plutonem";
-      SF Sg Loc => x + "plutonie";
-      SF Sg Voc => x + "plutonie";
-      SF Pl Nom => x + "plutony";
-      SF Pl Gen => x + "plutonów";
-      SF Pl Dat => x + "plutonom";
-      SF Pl Acc => x + "plutony";
-      SF Pl Instr => x + "plutonami";
-      SF Pl Loc => x + "plutonach";
-      SF Pl Voc => x + "plutony"
-    };
-
-    oper mkNTable0708: Str -> SubstForm => Str; --%
-    oper mkNTable0708 lexem = 
-      let x = Predef.tk 3 lexem in
-    table { 
-      SF Sg Nom => x + "Pol";
-      SF Sg Gen => x + "pola";
-      SF Sg Dat => x + "Polowi";
-      SF Sg Acc => x + "pola";
-      SF Sg Instr => x + "polem";
-      SF Sg Loc => x + "polu";
-      SF Sg Voc => x + "polu";
-      SF Pl Nom => x + "Polowie";
-      SF Pl Gen => x + "Polów";
-      SF Pl Dat => x + "polom";
-      SF Pl Acc => x + "Polów";
-      SF Pl Instr => x + "polami";
-      SF Pl Loc => x + "polach";
-      SF Pl Voc => x + "Polowie"
-    };
-
-    oper mkNTable0709: Str -> SubstForm => Str; --%
-    oper mkNTable0709 lexem = 
-      let x = Predef.tk 4 lexem in
-    table { 
-      SF Sg Nom => x + "pola";
-      SF Sg Gen => x + "Poli";
-      SF Sg Dat => x + "Poli";
-      SF Sg Acc => x + "Polę";
-      SF Sg Instr => x + "Polą";
-      SF Sg Loc => x + "Poli";
-      SF Sg Voc => x + "polu";
-      SF Pl Nom => x + "pole";
-      SF Pl Gen => x + "Pol";
-      SF Pl Dat => x + "polom";
-      SF Pl Acc => x + "pole";
-      SF Pl Instr => x + "polami";
-      SF Pl Loc => x + "polach";
-      SF Pl Voc => x + "pole"
-    };
-
-    oper mkNTable0710: Str -> SubstForm => Str; --%
-    oper mkNTable0710 lexem = 
-      let x = Predef.tk 8 lexem in
-    table { 
-      SF Sg Nom => x + "polaczek";
-      SF Sg Gen => x + "polaczka";
-      SF Sg Dat => x + "polaczkowi";
-      SF Sg Acc => x + "polaczka";
-      SF Sg Instr => x + "polaczkiem";
-      SF Sg Loc => x + "polaczku";
-      SF Sg Voc => x + "polaczku";
-      SF Pl Nom => x + "Polaczkowie";
-      SF Pl Gen => x + "polaczków";
-      SF Pl Dat => x + "polaczkom";
-      SF Pl Acc => x + "polaczków";
-      SF Pl Instr => x + "polaczkami";
-      SF Pl Loc => x + "polaczkach";
-      SF Pl Voc => x + "Polaczkowie"
-    };
-
-    oper mkNTable0711: Str -> SubstForm => Str; --%
-    oper mkNTable0711 lexem = 
-      let x = Predef.tk 5 lexem in
-    table { 
-      SF Sg Nom => x + "polak";
-      SF Sg Gen => x + "polaka";
-      SF Sg Dat => x + "polakowi";
-      SF Sg Acc => x + "polaka";
-      SF Sg Instr => x + "polakiem";
-      SF Sg Loc => x + "polaku";
-      SF Sg Voc => x + "polaku";
-      SF Pl Nom => x + "Polacy";
-      SF Pl Gen => x + "polaków";
-      SF Pl Dat => x + "polakom";
-      SF Pl Acc => x + "polaków";
-      SF Pl Instr => x + "polakami";
-      SF Pl Loc => x + "polakach";
-      SF Pl Voc => x + "Polacy"
-    };
-
-    oper mkNTable0713: Str -> SubstForm => Str; --%
-    oper mkNTable0713 lexem = 
-      let x = Predef.tk 5 lexem in
-    table { 
-      SF Sg Nom => x + "polek";
-      SF Sg Gen => x + "polka";
-      SF Sg Dat => x + "Polkowi";
-      SF Sg Acc => x + "polka";
-      SF Sg Instr => x + "Polkiem";
-      SF Sg Loc => x + "Polku";
-      SF Sg Voc => x + "Polku";
-      SF Pl Nom => x + "Polkowie";
-      SF Pl Gen => x + "Polków";
-      SF Pl Dat => x + "polkom";
-      SF Pl Acc => x + "Polków";
-      SF Pl Instr => x + "polkami";
-      SF Pl Loc => x + "polkach";
-      SF Pl Voc => x + "Polkowie"
-    };
-
-    oper mkNTable0714: Str -> SubstForm => Str; --%
-    oper mkNTable0714 lexem = 
-      let x = Predef.tk 4 lexem in
-    table { 
-      SF Sg Nom => x + "Polo";
-      SF Sg Gen => x + "pola";
-      SF Sg Dat => x + "Polowi";
-      SF Sg Acc => x + "pola";
-      SF Sg Instr => x + "polem";
-      SF Sg Loc => x + "polu";
-      SF Sg Voc => x + "Polo";
-      SF Pl Nom => x + "Polowie";
-      SF Pl Gen => x + "Polów";
-      SF Pl Dat => x + "polom";
-      SF Pl Acc => x + "Polów";
-      SF Pl Instr => x + "polami";
-      SF Pl Loc => x + "polach";
-      SF Pl Voc => x + "Polowie"
-    };
-
-    oper mkNTable0715: Str -> SubstForm => Str; --%
-    oper mkNTable0715 lexem = 
-      let x = Predef.tk 1 lexem in
-    table { 
-      SF Sg Nom => x + "e";
-      SF Sg Gen => x + "a";
-      SF Sg Dat => x + "u";
-      SF Sg Acc => x + "e";
-      SF Sg Instr => x + "em";
-      SF Sg Loc => x + "u";
-      SF Sg Voc => x + "e";
-      SF Pl Nom => x + "a";
-      SF Pl Gen => x + "y";
-      SF Pl Dat => x + "om";
-      SF Pl Acc => x + "a";
-      SF Pl Instr => x + "ami";
-      SF Pl Loc => x + "ach";
-      SF Pl Voc => x + "a"
-    };
-
-    oper mkNTable0716: Str -> SubstForm => Str; --%
-    oper mkNTable0716 lexem = 
-      let x = Predef.tk 8 lexem in
-    table { 
-      SF Sg Nom => x + "popiołek";
-      SF Sg Gen => x + "Popiołka";
-      SF Sg Dat => x + "popiołkowi";
-      SF Sg Acc => x + "Popiołka";
-      SF Sg Instr => x + "popiołkiem";
-      SF Sg Loc => x + "popiołku";
-      SF Sg Voc => x + "popiołku";
-      SF Pl Nom => x + "Popiołkowie";
-      SF Pl Gen => x + "popiołków";
-      SF Pl Dat => x + "popiołkom";
-      SF Pl Acc => x + "popiołków";
-      SF Pl Instr => x + "popiołkami";
-      SF Pl Loc => x + "popiołkach";
-      SF Pl Voc => x + "Popiołkowie"
-    };
-
-    oper mkNTable0717: Str -> SubstForm => Str; --%
-    oper mkNTable0717 lexem = 
-      let x = Predef.tk 5 lexem in
-    table { 
-      SF Sg Nom => x + "popów";
-      SF Sg Gen => x + "Popowa";
-      SF Sg Dat => x + "Popowowi";
-      SF Sg Acc => x + "popów";
-      SF Sg Instr => x + "Popowem";
-      SF Sg Loc => x + "Popowie";
-      SF Sg Voc => x + "Popowie";
-      SF Pl Nom => x + "Popowy";
-      SF Pl Gen => x + "Popowów";
-      SF Pl Dat => x + "Popowom";
-      SF Pl Acc => x + "Popowy";
-      SF Pl Instr => x + "Popowami";
-      SF Pl Loc => x + "Popowach";
-      SF Pl Voc => x + "Popowy"
-    };
-
-    oper mkNTable0718: Str -> SubstForm => Str; --%
-    oper mkNTable0718 lexem = 
-      let x = Predef.tk 4 lexem in
-    table { 
-      SF Sg Nom => x + "prot";
-      SF Sg Gen => x + "Prota";
-      SF Sg Dat => x + "protowi";
-      SF Sg Acc => x + "Prota";
-      SF Sg Instr => x + "protem";
-      SF Sg Loc => x + "procie";
-      SF Sg Voc => x + "procie";
-      SF Pl Nom => x + "Protowie";
-      SF Pl Gen => x + "protów";
-      SF Pl Dat => x + "protom";
-      SF Pl Acc => x + "protów";
-      SF Pl Instr => x + "protami";
-      SF Pl Loc => x + "protach";
-      SF Pl Voc => x + "Protowie"
-    };
-
-    oper mkNTable0719: Str -> SubstForm => Str; --%
-    oper mkNTable0719 lexem = 
-      let x = Predef.tk 7 lexem in
-    table { 
-      SF Sg Nom => x + "protazy";
-      SF Sg Gen => x + "Protazego";
-      SF Sg Dat => x + "Protazemu";
-      SF Sg Acc => x + "Protazego";
-      SF Sg Instr => x + "Protazym";
-      SF Sg Loc => x + "Protazym";
-      SF Sg Voc => x + "protazy";
-      SF Pl Nom => x + "Protazowie";
-      SF Pl Gen => x + "Protazych";
-      SF Pl Dat => x + "Protazym";
-      SF Pl Acc => x + "Protazych";
-      SF Pl Instr => x + "Protazymi";
-      SF Pl Loc => x + "Protazych";
-      SF Pl Voc => x + "Protazowie"
-    };
-
-    oper mkNTable0720: Str -> SubstForm => Str; --%
-    oper mkNTable0720 lexem = 
-      let x = Predef.tk 6 lexem in
-    table { 
-      SF Sg Nom => x + "prusak";
-      SF Sg Gen => x + "prusaka";
-      SF Sg Dat => x + "prusakowi";
-      SF Sg Acc => x + "prusaka";
-      SF Sg Instr => x + "prusakiem";
-      SF Sg Loc => x + "prusaku";
-      SF Sg Voc => x + "prusaku";
-      SF Pl Nom => x + "Prusacy";
-      SF Pl Gen => x + "prusaków";
-      SF Pl Dat => x + "prusakom";
-      SF Pl Acc => x + "prusaków";
-      SF Pl Instr => x + "prusakami";
-      SF Pl Loc => x + "prusakach";
-      SF Pl Voc => x + "Prusacy"
-    };
-
-    oper mkNTable0722: Str -> SubstForm => Str; --%
-    oper mkNTable0722 lexem = 
-      let x = Predef.tk 8 lexem in
-    table { 
-      SF Sg Nom => x + "przemysł";
-      SF Sg Gen => x + "Przemysła";
-      SF Sg Dat => x + "przemysłowi";
-      SF Sg Acc => x + "Przemysła";
-      SF Sg Instr => x + "przemysłem";
-      SF Sg Loc => x + "przemyśle";
-      SF Sg Voc => x + "przemyśle";
-      SF Pl Nom => x + "Przemysłowie";
-      SF Pl Gen => x + "przemysłów";
-      SF Pl Dat => x + "przemysłom";
-      SF Pl Acc => x + "przemysłów";
-      SF Pl Instr => x + "przemysłami";
-      SF Pl Loc => x + "przemysłach";
-      SF Pl Voc => x + "Przemysłowie"
-    };
-
-    oper mkNTable0723: Str -> SubstForm => Str; --%
-    oper mkNTable0723 lexem = 
-      let x = Predef.tk 8 lexem in
-    table { 
-      SF Sg Nom => x + "Przybora";
-      SF Sg Gen => x + "przybory";
-      SF Sg Dat => x + "przyborze";
-      SF Sg Acc => x + "Przyborę";
-      SF Sg Instr => x + "Przyborą";
-      SF Sg Loc => x + "przyborze";
-      SF Sg Voc => x + "Przyboro";
-      SF Pl Nom => x + "Przyborowie";
-      SF Pl Gen => x + "przyborów";
-      SF Pl Dat => x + "przyborom";
-      SF Pl Acc => x + "przyborów";
-      SF Pl Instr => x + "przyborami";
-      SF Pl Loc => x + "przyborach";
-      SF Pl Voc => x + "Przyborowie"
-    };
-
-    oper mkNTable0724: Str -> SubstForm => Str; --%
-    oper mkNTable0724 lexem = 
-      let x = Predef.tk 8 lexem in
-    table { 
-      SF Sg Nom => x + "przybysz";
-      SF Sg Gen => x + "przybysza";
-      SF Sg Dat => x + "przybyszowi";
-      SF Sg Acc => x + "przybysza";
-      SF Sg Instr => x + "przybyszem";
-      SF Sg Loc => x + "przybyszu";
-      SF Sg Voc => x + "przybyszu";
-      SF Pl Nom => x + "Przybyszowie";
-      SF Pl Gen => x + "przybyszów";
-      SF Pl Dat => x + "przybyszom";
-      SF Pl Acc => x + "przybyszów";
-      SF Pl Instr => x + "przybyszami";
-      SF Pl Loc => x + "przybyszach";
-      SF Pl Voc => x + "Przybyszowie"
-    };
-
-    oper mkNTable0725: Str -> SubstForm => Str; --%
-    oper mkNTable0725 lexem = 
-      let x = Predef.tk 8 lexem in
-    table { 
-      SF Sg Nom => x + "przybyła";
-      SF Sg Gen => x + "Przybyły";
-      SF Sg Dat => x + "Przybyle";
-      SF Sg Acc => x + "Przybyłę";
-      SF Sg Instr => x + "przybyłą";
-      SF Sg Loc => x + "Przybyle";
-      SF Sg Voc => x + "Przybyło";
-      SF Pl Nom => x + "Przybyłowie";
-      SF Pl Gen => x + "Przybyłów";
-      SF Pl Dat => x + "Przybyłom";
-      SF Pl Acc => x + "Przybyłów";
-      SF Pl Instr => x + "Przybyłami";
-      SF Pl Loc => x + "Przybyłach";
-      SF Pl Voc => x + "Przybyłowie"
-    };
-
-    oper mkNTable0726: Str -> SubstForm => Str; --%
-    oper mkNTable0726 lexem = 
-      let x = Predef.tk 4 lexem in
-    table { 
-      SF Sg Nom => x + "ptak";
-      SF Sg Gen => x + "ptaka";
-      SF Sg Dat => x + "ptakowi";
-      SF Sg Acc => x + "ptaka";
-      SF Sg Instr => x + "ptakiem";
-      SF Sg Loc => x + "ptaku";
-      SF Sg Voc => x + "ptaku";
-      SF Pl Nom => x + "Ptakowie";
-      SF Pl Gen => x + "ptaków";
-      SF Pl Dat => x + "ptakom";
-      SF Pl Acc => x + "ptaków";
-      SF Pl Instr => x + "ptakami";
-      SF Pl Loc => x + "ptakach";
-      SF Pl Voc => x + "Ptakowie"
-    };
-
-    oper mkNTable0727: Str -> SubstForm => Str; --%
-    oper mkNTable0727 lexem = 
-      let x = Predef.tk 4 lexem in
-    table { 
-      SF Sg Nom => x + "Puck";
-      SF Sg Gen => x + "pucka";
-      SF Sg Dat => x + "puckowi";
-      SF Sg Acc => x + "Puck";
-      SF Sg Instr => x + "puckiem";
-      SF Sg Loc => x + "pucku";
-      SF Sg Voc => x + "pucku";
-      SF Pl Nom => x + "pucki";
-      SF Pl Gen => x + "pucków";
-      SF Pl Dat => x + "puckom";
-      SF Pl Acc => x + "pucki";
-      SF Pl Instr => x + "puckami";
-      SF Pl Loc => x + "puckach";
-      SF Pl Voc => x + "pucki"
-    };
-
-    oper mkNTable0729: Str -> SubstForm => Str; --%
-    oper mkNTable0729 lexem = 
-      let x = Predef.tk 4 lexem in
-    table { 
-      SF Sg Nom => x + "pług";
-      SF Sg Gen => x + "pługa";
-      SF Sg Dat => x + "pługowi";
-      SF Sg Acc => x + "pługa";
-      SF Sg Instr => x + "pługiem";
-      SF Sg Loc => x + "pługu";
-      SF Sg Voc => x + "pługu";
-      SF Pl Nom => x + "Pługowie";
-      SF Pl Gen => x + "pługów";
-      SF Pl Dat => x + "pługom";
-      SF Pl Acc => x + "pługów";
-      SF Pl Instr => x + "pługami";
-      SF Pl Loc => x + "pługach";
-      SF Pl Voc => x + "Pługowie"
-    };
-
-    oper mkNTable0730: Str -> SubstForm => Str; --%
-    oper mkNTable0730 lexem = 
-      let x = Predef.tk 1 lexem in
-    table { 
-      SF Sg Nom => x + "o";
-      SF Sg Gen => x + "o";
-      SF Sg Dat => x + "owi";
-      SF Sg Acc => x + "o";
-      SF Sg Instr => x + "o";
-      SF Sg Loc => x + "zie";
-      SF Sg Voc => x + "o";
-      SF Pl Nom => x + "owie";
-      SF Pl Gen => x + "ów";
-      SF Pl Dat => x + "om";
-      SF Pl Acc => x + "ów";
-      SF Pl Instr => x + "o";
-      SF Pl Loc => x + "o";
-      SF Pl Voc => x + "owie"
-    };
-
-    oper mkNTable0731: Str -> SubstForm => Str; --%
-    oper mkNTable0731 lexem = 
-      let x = Predef.tk 4 lexem in
-    table { 
-      SF Sg Nom => x + "raba";
-      SF Sg Gen => x + "raby";
-      SF Sg Dat => x + "rabie";
-      SF Sg Acc => x + "Rabę";
-      SF Sg Instr => x + "Rabą";
-      SF Sg Loc => x + "rabie";
-      SF Sg Voc => x + "Rabo";
-      SF Pl Nom => x + "raby";
-      SF Pl Gen => x + "rab";
-      SF Pl Dat => x + "rabom";
-      SF Pl Acc => x + "raby";
-      SF Pl Instr => x + "rabami";
-      SF Pl Loc => x + "rabach";
-      SF Pl Voc => x + "raby"
-    };
-
-    oper mkNTable0732: Str -> SubstForm => Str; --%
-    oper mkNTable0732 lexem = 
-      let x = Predef.tk 3 lexem in
-    table { 
-      SF Sg Nom => x + "rak";
-      SF Sg Gen => x + "raka";
-      SF Sg Dat => x + "rakowi";
-      SF Sg Acc => x + "raka";
-      SF Sg Instr => x + "rakiem";
-      SF Sg Loc => x + "raku";
-      SF Sg Voc => x + "raku";
-      SF Pl Nom => x + "Rakowie";
-      SF Pl Gen => x + "raków";
-      SF Pl Dat => x + "rakom";
-      SF Pl Acc => x + "raków";
-      SF Pl Instr => x + "rakami";
-      SF Pl Loc => x + "rakach";
-      SF Pl Voc => x + "Rakowie"
-    };
-
-    oper mkNTable0734: Str -> SubstForm => Str; --%
-    oper mkNTable0734 lexem = 
-      let x = Predef.tk 5 lexem in
-    table { 
-      SF Sg Nom => x + "rataj";
-      SF Sg Gen => x + "rataja";
-      SF Sg Dat => x + "ratajowi";
-      SF Sg Acc => x + "rataja";
-      SF Sg Instr => x + "ratajem";
-      SF Sg Loc => x + "rataju";
-      SF Sg Voc => x + "rataju";
-      SF Pl Nom => x + "Ratajowie";
-      SF Pl Gen => x + "ratajów";
-      SF Pl Dat => x + "ratajom";
-      SF Pl Acc => x + "ratajów";
-      SF Pl Instr => x + "ratajami";
-      SF Pl Loc => x + "ratajach";
-      SF Pl Voc => x + "Ratajowie"
-    };
-
-    oper mkNTable0735: Str -> SubstForm => Str; --%
-    oper mkNTable0735 lexem = 
-      let x = Predef.tk 6 lexem in
-    table { 
-      SF Sg Nom => x + "rebeka";
-      SF Sg Gen => x + "rebeki";
-      SF Sg Dat => x + "Rebece";
-      SF Sg Acc => x + "Rebekę";
-      SF Sg Instr => x + "Rebeką";
-      SF Sg Loc => x + "Rebece";
-      SF Sg Voc => x + "Rebeko";
-      SF Pl Nom => x + "rebeki";
-      SF Pl Gen => x + "rebek";
-      SF Pl Dat => x + "rebekom";
-      SF Pl Acc => x + "rebeki";
-      SF Pl Instr => x + "rebekami";
-      SF Pl Loc => x + "rebekach";
-      SF Pl Voc => x + "rebeki"
-    };
-
-    oper mkNTable0736: Str -> SubstForm => Str; --%
-    oper mkNTable0736 lexem = 
-      let x = Predef.tk 5 lexem in
-    table { 
-      SF Sg Nom => x + "Renia";
-      SF Sg Gen => x + "Reni";
-      SF Sg Dat => x + "Reni";
-      SF Sg Acc => x + "Renię";
-      SF Sg Instr => x + "Renią";
-      SF Sg Loc => x + "Reni";
-      SF Sg Voc => x + "Reniu";
-      SF Pl Nom => x + "renie";
-      SF Pl Gen => x + "Reń";
-      SF Pl Dat => x + "Reniom";
-      SF Pl Acc => x + "renie";
-      SF Pl Instr => x + "Reniami";
-      SF Pl Loc => x + "Reniach";
-      SF Pl Voc => x + "renie"
-    };
-
-    oper mkNTable0737: Str -> SubstForm => Str; --%
-    oper mkNTable0737 lexem = 
-      let x = Predef.tk 5 lexem in
-    table { 
-      SF Sg Nom => x + "Robin";
-      SF Sg Gen => x + "Robina";
-      SF Sg Dat => x + "Robinowi";
-      SF Sg Acc => x + "Robina";
-      SF Sg Instr => x + "Robinem";
-      SF Sg Loc => x + "robinie";
-      SF Sg Voc => x + "robinie";
-      SF Pl Nom => x + "Robinowie";
-      SF Pl Gen => x + "Robinów";
-      SF Pl Dat => x + "Robinom";
-      SF Pl Acc => x + "Robinów";
-      SF Pl Instr => x + "Robinami";
-      SF Pl Loc => x + "Robinach";
-      SF Pl Voc => x + "Robinowie"
-    };
-
-    oper mkNTable0739: Str -> SubstForm => Str; --%
-    oper mkNTable0739 lexem = 
-      let x = Predef.tk 4 lexem in
-    table { 
-      SF Sg Nom => x + "rola";
-      SF Sg Gen => x + "roli";
-      SF Sg Dat => x + "roli";
-      SF Sg Acc => x + "rolę";
-      SF Sg Instr => x + "rolą";
-      SF Sg Loc => x + "roli";
-      SF Sg Voc => x + "rolo";
-      SF Pl Nom => x + "Rolowie";
-      SF Pl Gen => x + "Rolów";
-      SF Pl Dat => x + "rolom";
-      SF Pl Acc => x + "Rolów";
-      SF Pl Instr => x + "rolami";
-      SF Pl Loc => x + "rolach";
-      SF Pl Voc => x + "Rolowie"
-    };
-
-    oper mkNTable0740: Str -> SubstForm => Str; --%
-    oper mkNTable0740 lexem = 
-      let x = Predef.tk 1 lexem in
-    table { 
-      SF Sg Nom => x + "o";
-      SF Sg Gen => x + "a";
-      SF Sg Dat => x + "owi";
-      SF Sg Acc => x + "a";
-      SF Sg Instr => x + "em";
-      SF Sg Loc => x + "o";
-      SF Sg Voc => x + "o";
-      SF Pl Nom => x + "owie";
-      SF Pl Gen => x + "ów";
-      SF Pl Dat => x + "om";
-      SF Pl Acc => x + "ów";
-      SF Pl Instr => x + "ami";
-      SF Pl Loc => x + "ach";
-      SF Pl Voc => x + "owie"
-    };
-
-    oper mkNTable0741: Str -> SubstForm => Str; --%
-    oper mkNTable0741 lexem = 
-      let x = Predef.tk 4 lexem in
-    table { 
-      SF Sg Nom => x + "rosa";
-      SF Sg Gen => x + "rosy";
-      SF Sg Dat => x + "rosie";
-      SF Sg Acc => x + "rosę";
-      SF Sg Instr => x + "rosą";
-      SF Sg Loc => x + "rosie";
-      SF Sg Voc => x + "roso";
-      SF Pl Nom => x + "Rosowie";
-      SF Pl Gen => x + "Rosów";
-      SF Pl Dat => x + "rosom";
-      SF Pl Acc => x + "Rosów";
-      SF Pl Instr => x + "rosami";
-      SF Pl Loc => x + "rosach";
-      SF Pl Voc => x + "Rosowie"
-    };
-
-    oper mkNTable0742: Str -> SubstForm => Str; --%
-    oper mkNTable0742 lexem = 
-      let x = Predef.tk 5 lexem in
-    table { 
-      SF Sg Nom => x + "rosół";
-      SF Sg Gen => x + "Rosoła";
-      SF Sg Dat => x + "rosołowi";
-      SF Sg Acc => x + "Rosoła";
-      SF Sg Instr => x + "rosołem";
-      SF Sg Loc => x + "rosole";
-      SF Sg Voc => x + "rosole";
-      SF Pl Nom => x + "Rosołowie";
-      SF Pl Gen => x + "rosołów";
-      SF Pl Dat => x + "rosołom";
-      SF Pl Acc => x + "rosołów";
-      SF Pl Instr => x + "rosołami";
-      SF Pl Loc => x + "rosołach";
-      SF Pl Voc => x + "Rosołowie"
-    };
-
-    oper mkNTable0743: Str -> SubstForm => Str; --%
-    oper mkNTable0743 lexem = 
-      let x = Predef.tk 4 lexem in
-    table { 
-      SF Sg Nom => x + "Roth";
-      SF Sg Gen => x + "Rotha";
-      SF Sg Dat => x + "Rothowi";
-      SF Sg Acc => x + "Rotha";
-      SF Sg Instr => x + "Rothem";
-      SF Sg Loc => x + "rocie";
-      SF Sg Voc => x + "rocie";
-      SF Pl Nom => x + "Rothowie";
-      SF Pl Gen => x + "Rothów";
-      SF Pl Dat => x + "Rothom";
-      SF Pl Acc => x + "Rothów";
-      SF Pl Instr => x + "Rothami";
-      SF Pl Loc => x + "Rothach";
-      SF Pl Voc => x + "Rothowie"
-    };
-
-    oper mkNTable0746: Str -> SubstForm => Str; --%
-    oper mkNTable0746 lexem = 
-      let x = Predef.tk 5 lexem in
-    table { 
-      SF Sg Nom => x + "rumun";
-      SF Sg Gen => x + "rumuna";
-      SF Sg Dat => x + "rumunowi";
-      SF Sg Acc => x + "rumuna";
-      SF Sg Instr => x + "rumunem";
-      SF Sg Loc => x + "rumunie";
-      SF Sg Voc => x + "rumunie";
-      SF Pl Nom => x + "Rumuni";
-      SF Pl Gen => x + "rumunów";
-      SF Pl Dat => x + "rumunom";
-      SF Pl Acc => x + "rumunów";
-      SF Pl Instr => x + "rumunami";
-      SF Pl Loc => x + "rumunach";
-      SF Pl Voc => x + "Rumuni"
-    };
-
-    oper mkNTable0747: Str -> SubstForm => Str; --%
-    oper mkNTable0747 lexem = 
-      let x = Predef.tk 3 lexem in
-    table { 
-      SF Sg Nom => x + "rus";
-      SF Sg Gen => x + "rusa";
-      SF Sg Dat => x + "rusowi";
-      SF Sg Acc => x + "rusa";
-      SF Sg Instr => x + "rusem";
-      SF Sg Loc => x + "rusie";
-      SF Sg Voc => x + "rusie";
-      SF Pl Nom => x + "Rusowie";
-      SF Pl Gen => x + "rusów";
-      SF Pl Dat => x + "rusom";
-      SF Pl Acc => x + "rusów";
-      SF Pl Instr => x + "rusami";
-      SF Pl Loc => x + "rusach";
-      SF Pl Voc => x + "Rusowie"
-    };
-
-    oper mkNTable0748: Str -> SubstForm => Str; --%
-    oper mkNTable0748 lexem = 
-      let x = Predef.tk 5 lexem in
-    table { 
-      SF Sg Nom => x + "rusek";
-      SF Sg Gen => x + "ruska";
-      SF Sg Dat => x + "ruskowi";
-      SF Sg Acc => x + "ruska";
-      SF Sg Instr => x + "ruskiem";
-      SF Sg Loc => x + "rusku";
-      SF Sg Voc => x + "rusku";
-      SF Pl Nom => x + "Ruskowie";
-      SF Pl Gen => x + "rusków";
-      SF Pl Dat => x + "ruskom";
-      SF Pl Acc => x + "rusków";
-      SF Pl Instr => x + "ruskami";
-      SF Pl Loc => x + "ruskach";
-      SF Pl Voc => x + "Ruskowie"
-    };
-
-    oper mkNTable0750: Str -> SubstForm => Str; --%
-    oper mkNTable0750 lexem = 
-      let x = Predef.tk 10 lexem in
-    table { 
-      SF Sg Nom => x + "rutherford";
-      SF Sg Gen => x + "rutherforda";
-      SF Sg Dat => x + "rutherfordowi";
-      SF Sg Acc => x + "rutherforda";
-      SF Sg Instr => x + "rutherfordem";
-      SF Sg Loc => x + "rutherfordzie";
-      SF Sg Voc => x + "rutherfordzie";
-      SF Pl Nom => x + "Rutherfordowie";
-      SF Pl Gen => x + "rutherfordów";
-      SF Pl Dat => x + "rutherfordom";
-      SF Pl Acc => x + "rutherfordów";
-      SF Pl Instr => x + "rutherfordami";
-      SF Pl Loc => x + "rutherfordach";
-      SF Pl Voc => x + "Rutherfordowie"
-    };
-
-    oper mkNTable0751: Str -> SubstForm => Str; --%
-    oper mkNTable0751 lexem = 
-      let x = Predef.tk 5 lexem in
-    table { 
-      SF Sg Nom => x + "rybak";
-      SF Sg Gen => x + "rybaka";
-      SF Sg Dat => x + "rybakowi";
-      SF Sg Acc => x + "rybaka";
-      SF Sg Instr => x + "rybakiem";
-      SF Sg Loc => x + "rybaku";
-      SF Sg Voc => x + "rybaku";
-      SF Pl Nom => x + "Rybakowie";
-      SF Pl Gen => x + "rybaków";
-      SF Pl Dat => x + "rybakom";
-      SF Pl Acc => x + "rybaków";
-      SF Pl Instr => x + "rybakami";
-      SF Pl Loc => x + "rybakach";
-      SF Pl Voc => x + "Rybakowie"
-    };
-
-    oper mkNTable0752: Str -> SubstForm => Str; --%
-    oper mkNTable0752 lexem = 
-      let x = Predef.tk 5 lexem in
-    table { 
-      SF Sg Nom => x + "rydel";
-      SF Sg Gen => x + "rydla";
-      SF Sg Dat => x + "rydlowi";
-      SF Sg Acc => x + "rydla";
-      SF Sg Instr => x + "rydlem";
-      SF Sg Loc => x + "rydlu";
-      SF Sg Voc => x + "rydlu";
-      SF Pl Nom => x + "Rydlowie";
-      SF Pl Gen => x + "rydlów";
-      SF Pl Dat => x + "rydlom";
-      SF Pl Acc => x + "rydlów";
-      SF Pl Instr => x + "rydlami";
-      SF Pl Loc => x + "rydlach";
-      SF Pl Voc => x + "Rydlowie"
-    };
-
-    oper mkNTable0753: Str -> SubstForm => Str; --%
-    oper mkNTable0753 lexem = 
-      let x = Predef.tk 5 lexem in
-    table { 
-      SF Sg Nom => x + "Rysio";
-      SF Sg Gen => x + "rysia";
-      SF Sg Dat => x + "rysiowi";
-      SF Sg Acc => x + "rysia";
-      SF Sg Instr => x + "rysiem";
-      SF Sg Loc => x + "rysiu";
-      SF Sg Voc => x + "rysiu";
-      SF Pl Nom => x + "Rysiowie";
-      SF Pl Gen => x + "rysiów";
-      SF Pl Dat => x + "rysiom";
-      SF Pl Acc => x + "rysiów";
-      SF Pl Instr => x + "rysiami";
-      SF Pl Loc => x + "rysiach";
-      SF Pl Voc => x + "Rysiowie"
-    };
-
-    oper mkNTable0754: Str -> SubstForm => Str; --%
-    oper mkNTable0754 lexem = 
-      let x = Predef.tk 5 lexem in
-    table { 
-      SF Sg Nom => x + "sabin";
-      SF Sg Gen => x + "sabina";
-      SF Sg Dat => x + "sabinowi";
-      SF Sg Acc => x + "sabina";
-      SF Sg Instr => x + "sabinem";
-      SF Sg Loc => x + "sabinie";
-      SF Sg Voc => x + "sabinie";
-      SF Pl Nom => x + "Sabinowie";
-      SF Pl Gen => x + "sabinów";
-      SF Pl Dat => x + "sabinom";
-      SF Pl Acc => x + "sabinów";
-      SF Pl Instr => x + "sabinami";
-      SF Pl Loc => x + "sabinach";
-      SF Pl Voc => x + "Sabinowie"
-    };
-
-    oper mkNTable0755: Str -> SubstForm => Str; --%
-    oper mkNTable0755 lexem = 
-      let x = Predef.tk 6 lexem in
-    table { 
-      SF Sg Nom => x + "sabina";
-      SF Sg Gen => x + "sabiny";
-      SF Sg Dat => x + "sabinie";
-      SF Sg Acc => x + "Sabinę";
-      SF Sg Instr => x + "Sabiną";
-      SF Sg Loc => x + "sabinie";
-      SF Sg Voc => x + "Sabino";
-      SF Pl Nom => x + "sabiny";
-      SF Pl Gen => x + "sabin";
-      SF Pl Dat => x + "sabinom";
-      SF Pl Acc => x + "sabiny";
-      SF Pl Instr => x + "sabinami";
-      SF Pl Loc => x + "sabinach";
-      SF Pl Voc => x + "sabiny"
-    };
-
-    oper mkNTable0757: Str -> SubstForm => Str; --%
-    oper mkNTable0757 lexem = 
-      let x = Predef.tk 3 lexem in
-    table { 
-      SF Sg Nom => x + "sam";
-      SF Sg Gen => x + "Sama";
-      SF Sg Dat => x + "samowi";
-      SF Sg Acc => x + "Sama";
-      SF Sg Instr => x + "samem";
-      SF Sg Loc => x + "samie";
-      SF Sg Voc => x + "samie";
-      SF Pl Nom => x + "Samowie";
-      SF Pl Gen => x + "samów";
-      SF Pl Dat => x + "samom";
-      SF Pl Acc => x + "samów";
-      SF Pl Instr => x + "samami";
-      SF Pl Loc => x + "samach";
-      SF Pl Voc => x + "Samowie"
-    };
-
-    oper mkNTable0759: Str -> SubstForm => Str; --%
-    oper mkNTable0759 lexem = 
-      let x = Predef.tk 7 lexem in
-    table { 
-      SF Sg Nom => x + "samojed";
-      SF Sg Gen => x + "samojeda";
-      SF Sg Dat => x + "samojedowi";
-      SF Sg Acc => x + "samojeda";
-      SF Sg Instr => x + "samojedem";
-      SF Sg Loc => x + "samojedzie";
-      SF Sg Voc => x + "samojedzie";
-      SF Pl Nom => x + "Samojedzi";
-      SF Pl Gen => x + "samojedów";
-      SF Pl Dat => x + "samojedom";
-      SF Pl Acc => x + "samojedów";
-      SF Pl Instr => x + "samojedami";
-      SF Pl Loc => x + "samojedach";
-      SF Pl Voc => x + "Samojedzi"
-    };
-
-    oper mkNTable0760: Str -> SubstForm => Str; --%
-    oper mkNTable0760 lexem = 
-      let x = Predef.tk 3 lexem in
-    table { 
-      SF Sg Nom => x + "san";
-      SF Sg Gen => x + "Sanu";
-      SF Sg Dat => x + "sanowi";
-      SF Sg Acc => x + "san";
-      SF Sg Instr => x + "sanem";
-      SF Sg Loc => x + "sanie";
-      SF Sg Voc => x + "sanie";
-      SF Pl Nom => x + "sany";
-      SF Pl Gen => x + "sanów";
-      SF Pl Dat => x + "sanom";
-      SF Pl Acc => x + "sany";
-      SF Pl Instr => x + "sanami";
-      SF Pl Loc => x + "sanach";
-      SF Pl Voc => x + "sany"
-    };
-
-    oper mkNTable0761: Str -> SubstForm => Str; --%
-    oper mkNTable0761 lexem = 
-      let x = Predef.tk 6 lexem in
-    table { 
-      SF Sg Nom => x + "Sandra";
-      SF Sg Gen => x + "sandry";
-      SF Sg Dat => x + "sandrze";
-      SF Sg Acc => x + "Sandrę";
-      SF Sg Instr => x + "Sandrą";
-      SF Sg Loc => x + "sandrze";
-      SF Sg Voc => x + "Sandro";
-      SF Pl Nom => x + "sandry";
-      SF Pl Gen => x + "sandr";
-      SF Pl Dat => x + "sandrom";
-      SF Pl Acc => x + "sandry";
-      SF Pl Instr => x + "sandrami";
-      SF Pl Loc => x + "sandrach";
-      SF Pl Voc => x + "sandry"
-    };
-
-    oper mkNTable0762: Str -> SubstForm => Str; --%
-    oper mkNTable0762 lexem = 
-      let x = Predef.tk 5 lexem in
-    table { 
-      SF Sg Nom => x + "Santi";
-      SF Sg Gen => x + "Santiego";
-      SF Sg Dat => x + "Santiemu";
-      SF Sg Acc => x + "Santiego";
-      SF Sg Instr => x + "santim";
-      SF Sg Loc => x + "santim";
-      SF Sg Voc => x + "Santi";
-      SF Pl Nom => x + "Santi";
-      SF Pl Gen => x + "Santich";
-      SF Pl Dat => x + "santim";
-      SF Pl Acc => x + "Santich";
-      SF Pl Instr => x + "Santimi";
-      SF Pl Loc => x + "Santich";
-      SF Pl Voc => x + "Santi"
-    };
-
-    oper mkNTable0763: Str -> SubstForm => Str; --%
-    oper mkNTable0763 lexem = 
-      let x = Predef.tk 2 lexem in
-    table { 
-      SF Sg Nom => x + "ha";
-      SF Sg Gen => x + "hy";
-      SF Sg Dat => x + "że";
-      SF Sg Acc => x + "hę";
-      SF Sg Instr => x + "hą";
-      SF Sg Loc => x + "że";
-      SF Sg Voc => x + "ho";
-      SF Pl Nom => x + "howie";
-      SF Pl Gen => x + "hów";
-      SF Pl Dat => x + "hom";
-      SF Pl Acc => x + "hów";
-      SF Pl Instr => x + "hami";
-      SF Pl Loc => x + "hach";
-      SF Pl Voc => x + "howie"
-    };
-
-    oper mkNTable0764: Str -> SubstForm => Str; --%
-    oper mkNTable0764 lexem = 
-      let x = Predef.tk 7 lexem in
-    table { 
-      SF Sg Nom => x + "Saracen";
-      SF Sg Gen => x + "Saracena";
-      SF Sg Dat => x + "Saracenowi";
-      SF Sg Acc => x + "Saracena";
-      SF Sg Instr => x + "Saracenem";
-      SF Sg Loc => x + "saracenie";
-      SF Sg Voc => x + "saracenie";
-      SF Pl Nom => x + "Saraceni";
-      SF Pl Gen => x + "Saracenów";
-      SF Pl Dat => x + "Saracenom";
-      SF Pl Acc => x + "Saracenów";
-      SF Pl Instr => x + "Saracenami";
-      SF Pl Loc => x + "Saracenach";
-      SF Pl Voc => x + "Saraceni"
-    };
-
-    oper mkNTable0765: Str -> SubstForm => Str; --%
-    oper mkNTable0765 lexem = 
-      let x = Predef.tk 3 lexem in
-    table { 
-      SF Sg Nom => x + "sas";
-      SF Sg Gen => x + "sasa";
-      SF Sg Dat => x + "sasowi";
-      SF Sg Acc => x + "sasa";
-      SF Sg Instr => x + "sasem";
-      SF Sg Loc => x + "sasie";
-      SF Sg Voc => x + "sasie";
-      SF Pl Nom => x + "Sasi";
-      SF Pl Gen => x + "sasów";
-      SF Pl Dat => x + "sasom";
-      SF Pl Acc => x + "sasów";
-      SF Pl Instr => x + "sasami";
-      SF Pl Loc => x + "sasach";
-      SF Pl Voc => x + "Sasi"
-    };
-
-    oper mkNTable0766: Str -> SubstForm => Str; --%
-    oper mkNTable0766 lexem = 
-      let x = Predef.tk 8 lexem in
-    table { 
-      SF Sg Nom => x + "serafina";
-      SF Sg Gen => x + "serafiny";
-      SF Sg Dat => x + "serafinie";
-      SF Sg Acc => x + "Serafinę";
-      SF Sg Instr => x + "Serafiną";
-      SF Sg Loc => x + "serafinie";
-      SF Sg Voc => x + "Serafino";
-      SF Pl Nom => x + "serafiny";
-      SF Pl Gen => x + "serafin";
-      SF Pl Dat => x + "serafinom";
-      SF Pl Acc => x + "serafiny";
-      SF Pl Instr => x + "serafinami";
-      SF Pl Loc => x + "serafinach";
-      SF Pl Voc => x + "serafiny"
-    };
-
-    oper mkNTable0768: Str -> SubstForm => Str; --%
-    oper mkNTable0768 lexem = 
-      let x = Predef.tk 4 lexem in
-    table { 
-      SF Sg Nom => x + "Sica";
-      SF Sg Gen => x + "siki";
-      SF Sg Dat => x + "sice";
-      SF Sg Acc => x + "Sicę";
-      SF Sg Instr => x + "Sicą";
-      SF Sg Loc => x + "sice";
-      SF Sg Voc => x + "Sico";
-      SF Pl Nom => x + "Sicowie";
-      SF Pl Gen => x + "Siców";
-      SF Pl Dat => x + "Sicom";
-      SF Pl Acc => x + "Siców";
-      SF Pl Instr => x + "Sicami";
-      SF Pl Loc => x + "Sicach";
-      SF Pl Voc => x + "Sicowie"
-    };
-
-    oper mkNTable0771: Str -> SubstForm => Str; --%
-    oper mkNTable0771 lexem = 
-      let x = Predef.tk 6 lexem in
-    table { 
-      SF Sg Nom => x + "sikora";
-      SF Sg Gen => x + "sikory";
-      SF Sg Dat => x + "sikorze";
-      SF Sg Acc => x + "sikorę";
-      SF Sg Instr => x + "sikorą";
-      SF Sg Loc => x + "sikorze";
-      SF Sg Voc => x + "sikoro";
-      SF Pl Nom => x + "Sikorowie";
-      SF Pl Gen => x + "Sikorów";
-      SF Pl Dat => x + "sikorom";
-      SF Pl Acc => x + "Sikorów";
-      SF Pl Instr => x + "sikorami";
-      SF Pl Loc => x + "sikorach";
-      SF Pl Voc => x + "Sikorowie"
-    };
-
-    oper mkNTable0772: Str -> SubstForm => Str; --%
-    oper mkNTable0772 lexem = 
-      let x = Predef.tk 6 lexem in
-    table { 
-      SF Sg Nom => x + "singer";
-      SF Sg Gen => x + "singera";
-      SF Sg Dat => x + "singerowi";
-      SF Sg Acc => x + "singera";
-      SF Sg Instr => x + "singerem";
-      SF Sg Loc => x + "singerze";
-      SF Sg Voc => x + "singerze";
-      SF Pl Nom => x + "Singerowie";
-      SF Pl Gen => x + "singerów";
-      SF Pl Dat => x + "singerom";
-      SF Pl Acc => x + "singerów";
-      SF Pl Instr => x + "singerami";
-      SF Pl Loc => x + "singerach";
-      SF Pl Voc => x + "Singerowie"
-    };
-
-    oper mkNTable0773: Str -> SubstForm => Str; --%
-    oper mkNTable0773 lexem = 
-      let x = Predef.tk 5 lexem in
-    table { 
-      SF Sg Nom => x + "siwek";
-      SF Sg Gen => x + "siwka";
-      SF Sg Dat => x + "siwkowi";
-      SF Sg Acc => x + "siwka";
-      SF Sg Instr => x + "siwkiem";
-      SF Sg Loc => x + "siwku";
-      SF Sg Voc => x + "siwku";
-      SF Pl Nom => x + "Siwkowie";
-      SF Pl Gen => x + "siwków";
-      SF Pl Dat => x + "siwkom";
-      SF Pl Acc => x + "siwków";
-      SF Pl Instr => x + "siwkami";
-      SF Pl Loc => x + "siwkach";
-      SF Pl Voc => x + "Siwkowie"
-    };
-
-    oper mkNTable0774: Str -> SubstForm => Str; --%
-    oper mkNTable0774 lexem = 
-      let x = Predef.tk 2 lexem in
-    table { 
-      SF Sg Nom => x + "ek";
-      SF Sg Gen => x + "ka";
-      SF Sg Dat => x + "kowi";
-      SF Sg Acc => x + "ek";
-      SF Sg Instr => x + "kiem";
-      SF Sg Loc => x + "ku";
-      SF Sg Voc => x + "ku";
-      SF Pl Nom => x + "ki";
-      SF Pl Gen => x + "ków";
-      SF Pl Dat => x + "kom";
-      SF Pl Acc => x + "ki";
-      SF Pl Instr => x + "kami";
-      SF Pl Loc => x + "kach";
-      SF Pl Voc => x + "ki"
-    };
-
-    oper mkNTable0775: Str -> SubstForm => Str; --%
-    oper mkNTable0775 lexem = 
-      let x = Predef.tk 6 lexem in
-    table { 
-      SF Sg Nom => x + "siwiec";
-      SF Sg Gen => x + "siwca";
-      SF Sg Dat => x + "siwcowi";
-      SF Sg Acc => x + "siwca";
-      SF Sg Instr => x + "siwcem";
-      SF Sg Loc => x + "siwcu";
-      SF Sg Voc => x + "siwcu";
-      SF Pl Nom => x + "Siwcowie";
-      SF Pl Gen => x + "siwców";
-      SF Pl Dat => x + "siwcom";
-      SF Pl Acc => x + "siwców";
-      SF Pl Instr => x + "siwcami";
-      SF Pl Loc => x + "siwcach";
-      SF Pl Voc => x + "Siwcowie"
-    };
-
-    oper mkNTable0778: Str -> SubstForm => Str; --%
-    oper mkNTable0778 lexem = 
-      let x = Predef.tk 6 lexem in
-    table { 
-      SF Sg Nom => x + "skarga";
-      SF Sg Gen => x + "skargi";
-      SF Sg Dat => x + "skardze";
-      SF Sg Acc => x + "skargę";
-      SF Sg Instr => x + "skargą";
-      SF Sg Loc => x + "skardze";
-      SF Sg Voc => x + "skargo";
-      SF Pl Nom => x + "Skargowie";
-      SF Pl Gen => x + "Skargów";
-      SF Pl Dat => x + "skargom";
-      SF Pl Acc => x + "Skargów";
-      SF Pl Instr => x + "skargami";
-      SF Pl Loc => x + "skargach";
-      SF Pl Voc => x + "Skargowie"
-    };
-
-    oper mkNTable0779: Str -> SubstForm => Str; --%
-    oper mkNTable0779 lexem = 
-      let x = Predef.tk 5 lexem in
-    table { 
-      SF Sg Nom => x + "skiba";
-      SF Sg Gen => x + "skiby";
-      SF Sg Dat => x + "skibie";
-      SF Sg Acc => x + "skibę";
-      SF Sg Instr => x + "skibą";
-      SF Sg Loc => x + "skibie";
-      SF Sg Voc => x + "skibo";
-      SF Pl Nom => x + "Skibowie";
-      SF Pl Gen => x + "Skibów";
-      SF Pl Dat => x + "skibom";
-      SF Pl Acc => x + "Skibów";
-      SF Pl Instr => x + "skibami";
-      SF Pl Loc => x + "skibach";
-      SF Pl Voc => x + "Skibowie"
-    };
-
-    oper mkNTable0780: Str -> SubstForm => Str; --%
-    oper mkNTable0780 lexem = 
-      let x = Predef.tk 1 lexem in
-    table { 
-      SF Sg Nom => x + "e";
-      SF Sg Gen => x + "e";
-      SF Sg Dat => x + "u";
-      SF Sg Acc => x + "e";
-      SF Sg Instr => x + "em";
-      SF Sg Loc => x + "u";
-      SF Sg Voc => x + "e";
-      SF Pl Nom => x + "e";
-      SF Pl Gen => x + "e";
-      SF Pl Dat => x + "e";
-      SF Pl Acc => x + "e";
-      SF Pl Instr => x + "e";
-      SF Pl Loc => x + "e";
-      SF Pl Voc => x + "e"
-    };
-
-    oper mkNTable0781: Str -> SubstForm => Str; --%
-    oper mkNTable0781 lexem = 
-      let x = Predef.tk 8 lexem in
-    table { 
-      SF Sg Nom => x + "skorupka";
-      SF Sg Gen => x + "skorupki";
-      SF Sg Dat => x + "skorupce";
-      SF Sg Acc => x + "skorupkę";
-      SF Sg Instr => x + "skorupką";
-      SF Sg Loc => x + "skorupce";
-      SF Sg Voc => x + "skorupko";
-      SF Pl Nom => x + "Skorupkowie";
-      SF Pl Gen => x + "skorupek";
-      SF Pl Dat => x + "skorupkom";
-      SF Pl Acc => x + "skorupek";
-      SF Pl Instr => x + "skorupkami";
-      SF Pl Loc => x + "skorupkach";
-      SF Pl Voc => x + "Skorupkowie"
-    };
-
-    oper mkNTable0782: Str -> SubstForm => Str; --%
-    oper mkNTable0782 lexem = 
-      let x = Predef.tk 9 lexem in
-    table { 
-      SF Sg Nom => x + "skowronek";
-      SF Sg Gen => x + "skowronka";
-      SF Sg Dat => x + "skowronkowi";
-      SF Sg Acc => x + "skowronka";
-      SF Sg Instr => x + "skowronkiem";
-      SF Sg Loc => x + "skowronku";
-      SF Sg Voc => x + "skowronku";
-      SF Pl Nom => x + "Skowronkowie";
-      SF Pl Gen => x + "skowronków";
-      SF Pl Dat => x + "skowronkom";
-      SF Pl Acc => x + "skowronków";
-      SF Pl Instr => x + "skowronkami";
-      SF Pl Loc => x + "skowronkach";
-      SF Pl Voc => x + "Skowronkowie"
-    };
-
-    oper mkNTable0784: Str -> SubstForm => Str; --%
-    oper mkNTable0784 lexem = 
-      let x = Predef.tk 5 lexem in
-    table { 
-      SF Sg Nom => x + "soból";
-      SF Sg Gen => x + "sobola";
-      SF Sg Dat => x + "sobolowi";
-      SF Sg Acc => x + "sobola";
-      SF Sg Instr => x + "sobolem";
-      SF Sg Loc => x + "sobolu";
-      SF Sg Voc => x + "sobolu";
-      SF Pl Nom => x + "Sobolowie";
-      SF Pl Gen => x + "soboli";
-      SF Pl Dat => x + "sobolom";
-      SF Pl Acc => x + "soboli";
-      SF Pl Instr => x + "sobolami";
-      SF Pl Loc => x + "sobolach";
-      SF Pl Voc => x + "Sobolowie"
-    };
-
-    oper mkNTable0785: Str -> SubstForm => Str; --%
-    oper mkNTable0785 lexem = 
-      let x = Predef.tk 5 lexem in
-    table { 
-      SF Sg Nom => x + "socha";
-      SF Sg Gen => x + "sochy";
-      SF Sg Dat => x + "sosze";
-      SF Sg Acc => x + "sochę";
-      SF Sg Instr => x + "sochą";
-      SF Sg Loc => x + "sosze";
-      SF Sg Voc => x + "socho";
-      SF Pl Nom => x + "Sochowie";
-      SF Pl Gen => x + "Sochów";
-      SF Pl Dat => x + "sochom";
-      SF Pl Acc => x + "Sochów";
-      SF Pl Instr => x + "sochami";
-      SF Pl Loc => x + "sochach";
-      SF Pl Voc => x + "Sochowie"
-    };
-
-    oper mkNTable0787: Str -> SubstForm => Str; --%
-    oper mkNTable0787 lexem = 
-      let x = Predef.tk 6 lexem in
-    table { 
-      SF Sg Nom => x + "solana";
-      SF Sg Gen => x + "Solany";
-      SF Sg Dat => x + "solanie";
-      SF Sg Acc => x + "Solanę";
-      SF Sg Instr => x + "Solaną";
-      SF Sg Loc => x + "solanie";
-      SF Sg Voc => x + "solano";
-      SF Pl Nom => x + "Solanowie";
-      SF Pl Gen => x + "Solanów";
-      SF Pl Dat => x + "solanom";
-      SF Pl Acc => x + "Solanów";
-      SF Pl Instr => x + "solanami";
-      SF Pl Loc => x + "solanach";
-      SF Pl Voc => x + "Solanowie"
-    };
-
-    oper mkNTable0788: Str -> SubstForm => Str; --%
-    oper mkNTable0788 lexem = 
-      let x = Predef.tk 4 lexem in
-    table { 
-      SF Sg Nom => x + "sowa";
-      SF Sg Gen => x + "sowy";
-      SF Sg Dat => x + "sowie";
-      SF Sg Acc => x + "sowę";
-      SF Sg Instr => x + "sową";
-      SF Sg Loc => x + "sowie";
-      SF Sg Voc => x + "sowo";
-      SF Pl Nom => x + "Sowowie";
-      SF Pl Gen => x + "Sowów";
-      SF Pl Dat => x + "sowom";
-      SF Pl Acc => x + "Sowów";
-      SF Pl Instr => x + "sowami";
-      SF Pl Loc => x + "sowach";
-      SF Pl Voc => x + "Sowowie"
-    };
-
-    oper mkNTable0789: Str -> SubstForm => Str; --%
-    oper mkNTable0789 lexem = 
-      let x = Predef.tk 7 lexem in
-    table { 
-      SF Sg Nom => x + "spencer";
-      SF Sg Gen => x + "spencera";
-      SF Sg Dat => x + "spencerowi";
-      SF Sg Acc => x + "spencera";
-      SF Sg Instr => x + "spencerem";
-      SF Sg Loc => x + "spencerze";
-      SF Sg Voc => x + "spencerze";
-      SF Pl Nom => x + "Spencerowie";
-      SF Pl Gen => x + "spencerów";
-      SF Pl Dat => x + "spencerom";
-      SF Pl Acc => x + "spencerów";
-      SF Pl Instr => x + "spencerami";
-      SF Pl Loc => x + "spencerach";
-      SF Pl Voc => x + "Spencerowie"
-    };
-
-    oper mkNTable0791: Str -> SubstForm => Str; --%
-    oper mkNTable0791 lexem = 
-      let x = Predef.tk 5 lexem in
-    table { 
-      SF Sg Nom => x + "sroka";
-      SF Sg Gen => x + "sroki";
-      SF Sg Dat => x + "sroce";
-      SF Sg Acc => x + "srokę";
-      SF Sg Instr => x + "sroką";
-      SF Sg Loc => x + "sroce";
-      SF Sg Voc => x + "sroko";
-      SF Pl Nom => x + "Srokowie";
-      SF Pl Gen => x + "Sroków";
-      SF Pl Dat => x + "srokom";
-      SF Pl Acc => x + "Sroków";
-      SF Pl Instr => x + "srokami";
-      SF Pl Loc => x + "srokach";
-      SF Pl Voc => x + "Srokowie"
-    };
-
-    oper mkNTable0792: Str -> SubstForm => Str; --%
-    oper mkNTable0792 lexem = 
-      let x = Predef.tk 5 lexem in
-    table { 
-      SF Sg Nom => x + "Starr";
-      SF Sg Gen => x + "Starra";
-      SF Sg Dat => x + "Starrowi";
-      SF Sg Acc => x + "Starra";
-      SF Sg Instr => x + "Starrem";
-      SF Sg Loc => x + "starze";
-      SF Sg Voc => x + "starze";
-      SF Pl Nom => x + "Starrowie";
-      SF Pl Gen => x + "Starrów";
-      SF Pl Dat => x + "Starrom";
-      SF Pl Acc => x + "Starrów";
-      SF Pl Instr => x + "Starrami";
-      SF Pl Loc => x + "Starrach";
-      SF Pl Voc => x + "Starrowie"
-    };
-
-    oper mkNTable0793: Str -> SubstForm => Str; --%
-    oper mkNTable0793 lexem = 
-      let x = Predef.tk 0 lexem in
-    table { 
-      SF Sg Nom => x + "";
-      SF Sg Gen => x + "u";
-      SF Sg Dat => x + "owi";
-      SF Sg Acc => x + "";
-      SF Sg Instr => x + "em";
-      SF Sg Loc => x + "u";
-      SF Sg Voc => x + "u";
-      SF Pl Nom => x + "";
-      SF Pl Gen => x + "";
-      SF Pl Dat => x + "";
-      SF Pl Acc => x + "";
-      SF Pl Instr => x + "";
-      SF Pl Loc => x + "";
-      SF Pl Voc => x + ""
-    };
-
-    oper mkNTable0794: Str -> SubstForm => Str; --%
-    oper mkNTable0794 lexem = 
-      let x = Predef.tk 8 lexem in
-    table { 
-      SF Sg Nom => x + "stefanek";
-      SF Sg Gen => x + "stefanka";
-      SF Sg Dat => x + "Stefankowi";
-      SF Sg Acc => x + "stefanka";
-      SF Sg Instr => x + "Stefankiem";
-      SF Sg Loc => x + "Stefanku";
-      SF Sg Voc => x + "Stefanku";
-      SF Pl Nom => x + "Stefankowie";
-      SF Pl Gen => x + "Stefanków";
-      SF Pl Dat => x + "stefankom";
-      SF Pl Acc => x + "Stefanków";
-      SF Pl Instr => x + "stefankami";
-      SF Pl Loc => x + "stefankach";
-      SF Pl Voc => x + "Stefankowie"
-    };
-
-    oper mkNTable0796: Str -> SubstForm => Str; --%
-    oper mkNTable0796 lexem = 
-      let x = Predef.tk 6 lexem in
-    table { 
-      SF Sg Nom => x + "Stenia";
-      SF Sg Gen => x + "Steni";
-      SF Sg Dat => x + "Steni";
-      SF Sg Acc => x + "Stenię";
-      SF Sg Instr => x + "Stenią";
-      SF Sg Loc => x + "Steni";
-      SF Sg Voc => x + "Steniu";
-      SF Pl Nom => x + "stenie";
-      SF Pl Gen => x + "Steń";
-      SF Pl Dat => x + "Steniom";
-      SF Pl Acc => x + "stenie";
-      SF Pl Instr => x + "Steniami";
-      SF Pl Loc => x + "Steniach";
-      SF Pl Voc => x + "stenie"
-    };
-
-    oper mkNTable0797: Str -> SubstForm => Str; --%
-    oper mkNTable0797 lexem = 
-      let x = Predef.tk 6 lexem in
-    table { 
-      SF Sg Nom => x + "stojan";
-      SF Sg Gen => x + "stojana";
-      SF Sg Dat => x + "stojanowi";
-      SF Sg Acc => x + "stojana";
-      SF Sg Instr => x + "stojanem";
-      SF Sg Loc => x + "stojanie";
-      SF Sg Voc => x + "stojanie";
-      SF Pl Nom => x + "Stojanowie";
-      SF Pl Gen => x + "stojanów";
-      SF Pl Dat => x + "stojanom";
-      SF Pl Acc => x + "stojanów";
-      SF Pl Instr => x + "stojanami";
-      SF Pl Loc => x + "stojanach";
-      SF Pl Voc => x + "Stojanowie"
-    };
-
-    oper mkNTable0799: Str -> SubstForm => Str; --%
-    oper mkNTable0799 lexem = 
-      let x = Predef.tk 5 lexem in
-    table { 
-      SF Sg Nom => x + "strug";
-      SF Sg Gen => x + "struga";
-      SF Sg Dat => x + "strugowi";
-      SF Sg Acc => x + "struga";
-      SF Sg Instr => x + "strugiem";
-      SF Sg Loc => x + "strugu";
-      SF Sg Voc => x + "strugu";
-      SF Pl Nom => x + "Strugowie";
-      SF Pl Gen => x + "strugów";
-      SF Pl Dat => x + "strugom";
-      SF Pl Acc => x + "strugów";
-      SF Pl Instr => x + "strugami";
-      SF Pl Loc => x + "strugach";
-      SF Pl Voc => x + "Strugowie"
-    };
-
-    oper mkNTable0801: Str -> SubstForm => Str; --%
-    oper mkNTable0801 lexem = 
-      let x = Predef.tk 2 lexem in
-    table { 
-      SF Sg Nom => x + "ec";
-      SF Sg Gen => x + "ca";
-      SF Sg Dat => x + "cowi";
-      SF Sg Acc => x + "ca";
-      SF Sg Instr => x + "cem";
-      SF Sg Loc => x + "cu";
-      SF Sg Voc => x + "cze";
-      SF Pl Nom => x + "cy";
-      SF Pl Gen => x + "ców";
-      SF Pl Dat => x + "com";
-      SF Pl Acc => x + "ców";
-      SF Pl Instr => x + "cami";
-      SF Pl Loc => x + "cach";
-      SF Pl Voc => x + "cy"
-    };
-
-    oper mkNTable0802: Str -> SubstForm => Str; --%
-    oper mkNTable0802 lexem = 
-      let x = Predef.tk 5 lexem in
-    table { 
-      SF Sg Nom => x + "syjam";
-      SF Sg Gen => x + "Syjamu";
-      SF Sg Dat => x + "syjamowi";
-      SF Sg Acc => x + "syjam";
-      SF Sg Instr => x + "syjamem";
-      SF Sg Loc => x + "syjamie";
-      SF Sg Voc => x + "syjamie";
-      SF Pl Nom => x + "syjamy";
-      SF Pl Gen => x + "syjamów";
-      SF Pl Dat => x + "syjamom";
-      SF Pl Acc => x + "syjamy";
-      SF Pl Instr => x + "syjamami";
-      SF Pl Loc => x + "syjamach";
-      SF Pl Voc => x + "syjamy"
-    };
-
-    oper mkNTable0803: Str -> SubstForm => Str; --%
-    oper mkNTable0803 lexem = 
-      let x = Predef.tk 6 lexem in
-    table { 
-      SF Sg Nom => x + "sylwek";
-      SF Sg Gen => x + "sylwka";
-      SF Sg Dat => x + "sylwkowi";
-      SF Sg Acc => x + "sylwka";
-      SF Sg Instr => x + "sylwkiem";
-      SF Sg Loc => x + "sylwku";
-      SF Sg Voc => x + "sylwku";
-      SF Pl Nom => x + "Sylwkowie";
-      SF Pl Gen => x + "sylwków";
-      SF Pl Dat => x + "sylwkom";
-      SF Pl Acc => x + "sylwków";
-      SF Pl Instr => x + "sylwkami";
-      SF Pl Loc => x + "sylwkach";
-      SF Pl Voc => x + "Sylwkowie"
-    };
-
-    oper mkNTable0804: Str -> SubstForm => Str; --%
-    oper mkNTable0804 lexem = 
-      let x = Predef.tk 9 lexem in
-    table { 
-      SF Sg Nom => x + "sylwester";
-      SF Sg Gen => x + "sylwestra";
-      SF Sg Dat => x + "sylwestrowi";
-      SF Sg Acc => x + "sylwestra";
-      SF Sg Instr => x + "sylwestrem";
-      SF Sg Loc => x + "sylwestrze";
-      SF Sg Voc => x + "sylwestrze";
-      SF Pl Nom => x + "Sylwestrowie";
-      SF Pl Gen => x + "sylwestrów";
-      SF Pl Dat => x + "sylwestrom";
-      SF Pl Acc => x + "sylwestrów";
-      SF Pl Instr => x + "sylwestrami";
-      SF Pl Loc => x + "sylwestrach";
-      SF Pl Voc => x + "Sylwestrowie"
-    };
-
-    oper mkNTable0805: Str -> SubstForm => Str; --%
-    oper mkNTable0805 lexem = 
-      let x = Predef.tk 6 lexem in
-    table { 
-      SF Sg Nom => x + "Sylwia";
-      SF Sg Gen => x + "Sylwii";
-      SF Sg Dat => x + "Sylwii";
-      SF Sg Acc => x + "Sylwię";
-      SF Sg Instr => x + "Sylwią";
-      SF Sg Loc => x + "Sylwii";
-      SF Sg Voc => x + "Sylwio";
-      SF Pl Nom => x + "sylwie";
-      SF Pl Gen => x + "Sylwii";
-      SF Pl Dat => x + "Sylwiom";
-      SF Pl Acc => x + "sylwie";
-      SF Pl Instr => x + "Sylwiami";
-      SF Pl Loc => x + "Sylwiach";
-      SF Pl Voc => x + "sylwie"
-    };
-
-    oper mkNTable0806: Str -> SubstForm => Str; --%
-    oper mkNTable0806 lexem = 
-      let x = Predef.tk 6 lexem in
-    table { 
-      SF Sg Nom => x + "sylwin";
-      SF Sg Gen => x + "Sylwina";
-      SF Sg Dat => x + "sylwinowi";
-      SF Sg Acc => x + "Sylwina";
-      SF Sg Instr => x + "sylwinem";
-      SF Sg Loc => x + "sylwinie";
-      SF Sg Voc => x + "sylwinie";
-      SF Pl Nom => x + "Sylwinowie";
-      SF Pl Gen => x + "sylwinów";
-      SF Pl Dat => x + "sylwinom";
-      SF Pl Acc => x + "sylwinów";
-      SF Pl Instr => x + "sylwinami";
-      SF Pl Loc => x + "sylwinach";
-      SF Pl Voc => x + "Sylwinowie"
-    };
-
-    oper mkNTable0807: Str -> SubstForm => Str; --%
-    oper mkNTable0807 lexem = 
-      let x = Predef.tk 6 lexem in
-    table { 
-      SF Sg Nom => x + "szabat";
-      SF Sg Gen => x + "Szabata";
-      SF Sg Dat => x + "szabatowi";
-      SF Sg Acc => x + "Szabata";
-      SF Sg Instr => x + "szabatem";
-      SF Sg Loc => x + "szabacie";
-      SF Sg Voc => x + "szabacie";
-      SF Pl Nom => x + "Szabatowie";
-      SF Pl Gen => x + "szabatów";
-      SF Pl Dat => x + "szabatom";
-      SF Pl Acc => x + "szabatów";
-      SF Pl Instr => x + "szabatami";
-      SF Pl Loc => x + "szabatach";
-      SF Pl Voc => x + "Szabatowie"
-    };
-
-    oper mkNTable0808: Str -> SubstForm => Str; --%
-    oper mkNTable0808 lexem = 
-      let x = Predef.tk 3 lexem in
-    table { 
-      SF Sg Nom => x + "cha";
-      SF Sg Gen => x + "chy";
-      SF Sg Dat => x + "sze";
-      SF Sg Acc => x + "chę";
-      SF Sg Instr => x + "chą";
-      SF Sg Loc => x + "sze";
-      SF Sg Voc => x + "cho";
-      SF Pl Nom => x + "chowie";
-      SF Pl Gen => x + "chów";
-      SF Pl Dat => x + "chom";
-      SF Pl Acc => x + "chów";
-      SF Pl Instr => x + "chami";
-      SF Pl Loc => x + "chach";
-      SF Pl Voc => x + "chowie"
-    };
-
-    oper mkNTable0809: Str -> SubstForm => Str; --%
-    oper mkNTable0809 lexem = 
-      let x = Predef.tk 6 lexem in
-    table { 
-      SF Sg Nom => x + "szarek";
-      SF Sg Gen => x + "szarka";
-      SF Sg Dat => x + "Szarkowi";
-      SF Sg Acc => x + "szarka";
-      SF Sg Instr => x + "Szarkiem";
-      SF Sg Loc => x + "Szarku";
-      SF Sg Voc => x + "Szarku";
-      SF Pl Nom => x + "Szarkowie";
-      SF Pl Gen => x + "Szarków";
-      SF Pl Dat => x + "szarkom";
-      SF Pl Acc => x + "Szarków";
-      SF Pl Instr => x + "szarkami";
-      SF Pl Loc => x + "szarkach";
-      SF Pl Voc => x + "Szarkowie"
-    };
-
-    oper mkNTable0810: Str -> SubstForm => Str; --%
-    oper mkNTable0810 lexem = 
-      let x = Predef.tk 8 lexem in
-    table { 
-      SF Sg Nom => x + "szczepek";
-      SF Sg Gen => x + "szczepka";
-      SF Sg Dat => x + "szczepkowi";
-      SF Sg Acc => x + "szczepka";
-      SF Sg Instr => x + "szczepkiem";
-      SF Sg Loc => x + "szczepku";
-      SF Sg Voc => x + "szczepku";
-      SF Pl Nom => x + "Szczepkowie";
-      SF Pl Gen => x + "szczepków";
-      SF Pl Dat => x + "szczepkom";
-      SF Pl Acc => x + "szczepków";
-      SF Pl Instr => x + "szczepkami";
-      SF Pl Loc => x + "szczepkach";
-      SF Pl Voc => x + "Szczepkowie"
-    };
-
-    oper mkNTable0811: Str -> SubstForm => Str; --%
-    oper mkNTable0811 lexem = 
-      let x = Predef.tk 9 lexem in
-    table { 
-      SF Sg Nom => x + "szczygieł";
-      SF Sg Gen => x + "szczygła";
-      SF Sg Dat => x + "szczygłowi";
-      SF Sg Acc => x + "szczygła";
-      SF Sg Instr => x + "szczygłem";
-      SF Sg Loc => x + "szczygle";
-      SF Sg Voc => x + "szczygle";
-      SF Pl Nom => x + "Szczygłowie";
-      SF Pl Gen => x + "szczygłów";
-      SF Pl Dat => x + "szczygłom";
-      SF Pl Acc => x + "szczygłów";
-      SF Pl Instr => x + "szczygłami";
-      SF Pl Loc => x + "szczygłach";
-      SF Pl Voc => x + "Szczygłowie"
-    };
-
-    oper mkNTable0812: Str -> SubstForm => Str; --%
-    oper mkNTable0812 lexem = 
-      let x = Predef.tk 5 lexem in
-    table { 
-      SF Sg Nom => x + "szkot";
-      SF Sg Gen => x + "szkota";
-      SF Sg Dat => x + "szkotowi";
-      SF Sg Acc => x + "szkota";
-      SF Sg Instr => x + "szkotem";
-      SF Sg Loc => x + "szkocie";
-      SF Sg Voc => x + "szkocie";
-      SF Pl Nom => x + "Szkoci";
-      SF Pl Gen => x + "szkotów";
-      SF Pl Dat => x + "szkotom";
-      SF Pl Acc => x + "szkotów";
-      SF Pl Instr => x + "szkotami";
-      SF Pl Loc => x + "szkotach";
-      SF Pl Voc => x + "Szkoci"
-    };
-
-    oper mkNTable0813: Str -> SubstForm => Str; --%
-    oper mkNTable0813 lexem = 
-      let x = Predef.tk 6 lexem in
-    table { 
-      SF Sg Nom => x + "szmaja";
-      SF Sg Gen => x + "szmai";
-      SF Sg Dat => x + "szmai";
-      SF Sg Acc => x + "szmaję";
-      SF Sg Instr => x + "szmają";
-      SF Sg Loc => x + "szmai";
-      SF Sg Voc => x + "szmajo";
-      SF Pl Nom => x + "Szmajowie";
-      SF Pl Gen => x + "szmajów";
-      SF Pl Dat => x + "szmajom";
-      SF Pl Acc => x + "szmajów";
-      SF Pl Instr => x + "szmajami";
-      SF Pl Loc => x + "szmajach";
-      SF Pl Voc => x + "Szmajowie"
-    };
-
-    oper mkNTable0814: Str -> SubstForm => Str; --%
-    oper mkNTable0814 lexem = 
-      let x = Predef.tk 6 lexem in
-    table { 
-      SF Sg Nom => x + "szopen";
-      SF Sg Gen => x + "szopena";
-      SF Sg Dat => x + "szopenowi";
-      SF Sg Acc => x + "szopena";
-      SF Sg Instr => x + "szopenem";
-      SF Sg Loc => x + "szopenie";
-      SF Sg Voc => x + "szopenie";
-      SF Pl Nom => x + "Szopenowie";
-      SF Pl Gen => x + "szopenów";
-      SF Pl Dat => x + "szopenom";
-      SF Pl Acc => x + "szopenów";
-      SF Pl Instr => x + "szopenami";
-      SF Pl Loc => x + "szopenach";
-      SF Pl Voc => x + "Szopenowie"
-    };
-
-    oper mkNTable0815: Str -> SubstForm => Str; --%
-    oper mkNTable0815 lexem = 
-      let x = Predef.tk 6 lexem in
-    table { 
-      SF Sg Nom => x + "sztuka";
-      SF Sg Gen => x + "sztuki";
-      SF Sg Dat => x + "sztuce";
-      SF Sg Acc => x + "sztukę";
-      SF Sg Instr => x + "sztuką";
-      SF Sg Loc => x + "sztuce";
-      SF Sg Voc => x + "sztuko";
-      SF Pl Nom => x + "Sztukowie";
-      SF Pl Gen => x + "Sztuków";
-      SF Pl Dat => x + "sztukom";
-      SF Pl Acc => x + "Sztuków";
-      SF Pl Instr => x + "sztukami";
-      SF Pl Loc => x + "sztukach";
-      SF Pl Voc => x + "Sztukowie"
-    };
-
-    oper mkNTable0816: Str -> SubstForm => Str; --%
-    oper mkNTable0816 lexem = 
-      let x = Predef.tk 5 lexem in
-    table { 
-      SF Sg Nom => x + "szwab";
-      SF Sg Gen => x + "szwaba";
-      SF Sg Dat => x + "szwabowi";
-      SF Sg Acc => x + "szwaba";
-      SF Sg Instr => x + "szwabem";
-      SF Sg Loc => x + "szwabie";
-      SF Sg Voc => x + "szwabie";
-      SF Pl Nom => x + "Szwabowie";
-      SF Pl Gen => x + "szwabów";
-      SF Pl Dat => x + "szwabom";
-      SF Pl Acc => x + "szwabów";
-      SF Pl Instr => x + "szwabami";
-      SF Pl Loc => x + "szwabach";
-      SF Pl Voc => x + "Szwabowie"
-    };
-
-    oper mkNTable0817: Str -> SubstForm => Str; --%
-    oper mkNTable0817 lexem = 
-      let x = Predef.tk 5 lexem in
-    table { 
-      SF Sg Nom => x + "szwed";
-      SF Sg Gen => x + "szweda";
-      SF Sg Dat => x + "szwedowi";
-      SF Sg Acc => x + "szweda";
-      SF Sg Instr => x + "szwedem";
-      SF Sg Loc => x + "szwedzie";
-      SF Sg Voc => x + "szwedzie";
-      SF Pl Nom => x + "Szwedzi";
-      SF Pl Gen => x + "szwedów";
-      SF Pl Dat => x + "szwedom";
-      SF Pl Acc => x + "szwedów";
-      SF Pl Instr => x + "szwedami";
-      SF Pl Loc => x + "szwedach";
-      SF Pl Voc => x + "Szwedzi"
-    };
-
-    oper mkNTable0818: Str -> SubstForm => Str; --%
-    oper mkNTable0818 lexem = 
-      let x = Predef.tk 7 lexem in
-    table { 
-      SF Sg Nom => x + "szyszko";
-      SF Sg Gen => x + "szyszki";
-      SF Sg Dat => x + "szyszce";
-      SF Sg Acc => x + "szyszkę";
-      SF Sg Instr => x + "szyszką";
-      SF Sg Loc => x + "szyszce";
-      SF Sg Voc => x + "szyszko";
-      SF Pl Nom => x + "Szyszkowie";
-      SF Pl Gen => x + "Szyszków";
-      SF Pl Dat => x + "szyszkom";
-      SF Pl Acc => x + "Szyszków";
-      SF Pl Instr => x + "szyszkami";
-      SF Pl Loc => x + "szyszkach";
-      SF Pl Voc => x + "Szyszkowie"
-    };
-
-    oper mkNTable0819: Str -> SubstForm => Str; --%
-    oper mkNTable0819 lexem = 
-      let x = Predef.tk 6 lexem in
-    table { 
-      SF Sg Nom => x + "słowik";
-      SF Sg Gen => x + "słowika";
-      SF Sg Dat => x + "słowikowi";
-      SF Sg Acc => x + "słowika";
-      SF Sg Instr => x + "słowikiem";
-      SF Sg Loc => x + "słowiku";
-      SF Sg Voc => x + "słowiku";
-      SF Pl Nom => x + "Słowikowie";
-      SF Pl Gen => x + "słowików";
-      SF Pl Dat => x + "słowikom";
-      SF Pl Acc => x + "słowików";
-      SF Pl Instr => x + "słowikami";
-      SF Pl Loc => x + "słowikach";
-      SF Pl Voc => x + "Słowikowie"
-    };
-
-    oper mkNTable0820: Str -> SubstForm => Str; --%
-    oper mkNTable0820 lexem = 
-      let x = Predef.tk 2 lexem in
-    table { 
-      SF Sg Nom => x + "ój";
-      SF Sg Gen => x + "oja";
-      SF Sg Dat => x + "ojowi";
-      SF Sg Acc => x + "oja";
-      SF Sg Instr => x + "ojem";
-      SF Sg Loc => x + "oju";
-      SF Sg Voc => x + "oju";
-      SF Pl Nom => x + "ojowie";
-      SF Pl Gen => x + "ojów";
-      SF Pl Dat => x + "ojom";
-      SF Pl Acc => x + "ojów";
-      SF Pl Instr => x + "ojami";
-      SF Pl Loc => x + "ojach";
-      SF Pl Voc => x + "ojowie"
-    };
-
-    oper mkNTable0821: Str -> SubstForm => Str; --%
-    oper mkNTable0821 lexem = 
-      let x = Predef.tk 3 lexem in
-    table { 
-      SF Sg Nom => x + "sęp";
-      SF Sg Gen => x + "sępa";
-      SF Sg Dat => x + "sępowi";
-      SF Sg Acc => x + "sępa";
-      SF Sg Instr => x + "sępem";
-      SF Sg Loc => x + "sępie";
-      SF Sg Voc => x + "sępie";
-      SF Pl Nom => x + "Sępowie";
-      SF Pl Gen => x + "sępów";
-      SF Pl Dat => x + "sępom";
-      SF Pl Acc => x + "sępów";
-      SF Pl Instr => x + "sępami";
-      SF Pl Loc => x + "sępach";
-      SF Pl Voc => x + "Sępowie"
-    };
-
-    oper mkNTable0822: Str -> SubstForm => Str; --%
-    oper mkNTable0822 lexem = 
-      let x = Predef.tk 5 lexem in
-    table { 
-      SF Sg Nom => x + "taras";
-      SF Sg Gen => x + "Tarasa";
-      SF Sg Dat => x + "tarasowi";
-      SF Sg Acc => x + "Tarasa";
-      SF Sg Instr => x + "tarasem";
-      SF Sg Loc => x + "tarasie";
-      SF Sg Voc => x + "tarasie";
-      SF Pl Nom => x + "Tarasowie";
-      SF Pl Gen => x + "tarasów";
-      SF Pl Dat => x + "tarasom";
-      SF Pl Acc => x + "tarasów";
-      SF Pl Instr => x + "tarasami";
-      SF Pl Loc => x + "tarasach";
-      SF Pl Voc => x + "Tarasowie"
-    };
-
-    oper mkNTable0823: Str -> SubstForm => Str; --%
-    oper mkNTable0823 lexem = 
-      let x = Predef.tk 5 lexem in
-    table { 
-      SF Sg Nom => x + "tatar";
-      SF Sg Gen => x + "tatara";
-      SF Sg Dat => x + "tatarowi";
-      SF Sg Acc => x + "tatara";
-      SF Sg Instr => x + "tatarem";
-      SF Sg Loc => x + "tatarze";
-      SF Sg Voc => x + "tatarze";
-      SF Pl Nom => x + "Tatarzy";
-      SF Pl Gen => x + "tatarów";
-      SF Pl Dat => x + "tatarom";
-      SF Pl Acc => x + "tatarów";
-      SF Pl Instr => x + "tatarami";
-      SF Pl Loc => x + "tatarach";
-      SF Pl Voc => x + "Tatarzy"
-    };
-
-    oper mkNTable0824: Str -> SubstForm => Str; --%
-    oper mkNTable0824 lexem = 
-      let x = Predef.tk 4 lexem in
-    table { 
-      SF Sg Nom => x + "tell";
-      SF Sg Gen => x + "Tella";
-      SF Sg Dat => x + "tellowi";
-      SF Sg Acc => x + "Tella";
-      SF Sg Instr => x + "tellem";
-      SF Sg Loc => x + "tellu";
-      SF Sg Voc => x + "tellu";
-      SF Pl Nom => x + "telle";
-      SF Pl Gen => x + "tellów";
-      SF Pl Dat => x + "tellom";
-      SF Pl Acc => x + "tellów";
-      SF Pl Instr => x + "tellami";
-      SF Pl Loc => x + "tellach";
-      SF Pl Voc => x + "telle"
-    };
-
-    oper mkNTable0825: Str -> SubstForm => Str; --%
-    oper mkNTable0825 lexem = 
-      let x = Predef.tk 6 lexem in
-    table { 
-      SF Sg Nom => x + "Teofan";
-      SF Sg Gen => x + "Teofana";
-      SF Sg Dat => x + "Teofanowi";
-      SF Sg Acc => x + "Teofana";
-      SF Sg Instr => x + "Teofanem";
-      SF Sg Loc => x + "teofanie";
-      SF Sg Voc => x + "teofanie";
-      SF Pl Nom => x + "Teofanowie";
-      SF Pl Gen => x + "Teofanów";
-      SF Pl Dat => x + "Teofanom";
-      SF Pl Acc => x + "Teofanów";
-      SF Pl Instr => x + "Teofanami";
-      SF Pl Loc => x + "Teofanach";
-      SF Pl Voc => x + "Teofanowie"
-    };
-
-    oper mkNTable0826: Str -> SubstForm => Str; --%
-    oper mkNTable0826 lexem = 
-      let x = Predef.tk 7 lexem in
-    table { 
-      SF Sg Nom => x + "Terenia";
-      SF Sg Gen => x + "Tereni";
-      SF Sg Dat => x + "Tereni";
-      SF Sg Acc => x + "Terenię";
-      SF Sg Instr => x + "Terenią";
-      SF Sg Loc => x + "Tereni";
-      SF Sg Voc => x + "Tereniu";
-      SF Pl Nom => x + "terenie";
-      SF Pl Gen => x + "Tereń";
-      SF Pl Dat => x + "Tereniom";
-      SF Pl Acc => x + "terenie";
-      SF Pl Instr => x + "Tereniami";
-      SF Pl Loc => x + "Tereniach";
-      SF Pl Voc => x + "terenie"
-    };
-
-    oper mkNTable0827: Str -> SubstForm => Str; --%
-    oper mkNTable0827 lexem = 
-      let x = Predef.tk 1 lexem in
-    table { 
-      SF Sg Nom => x + "o";
-      SF Sg Gen => x + "y";
-      SF Sg Dat => x + "owi";
-      SF Sg Acc => x + "ę";
-      SF Sg Instr => x + "ą";
-      SF Sg Loc => x + "o";
-      SF Sg Voc => x + "o";
-      SF Pl Nom => x + "o";
-      SF Pl Gen => x + "o";
-      SF Pl Dat => x + "o";
-      SF Pl Acc => x + "o";
-      SF Pl Instr => x + "o";
-      SF Pl Loc => x + "o";
-      SF Pl Voc => x + "o"
-    };
-
-    oper mkNTable0828: Str -> SubstForm => Str; --%
-    oper mkNTable0828 lexem = 
-      let x = Predef.tk 6 lexem in
-    table { 
-      SF Sg Nom => x + "tokarz";
-      SF Sg Gen => x + "tokarza";
-      SF Sg Dat => x + "tokarzowi";
-      SF Sg Acc => x + "tokarza";
-      SF Sg Instr => x + "tokarzem";
-      SF Sg Loc => x + "tokarzu";
-      SF Sg Voc => x + "tokarzu";
-      SF Pl Nom => x + "Tokarzowie";
-      SF Pl Gen => x + "tokarzów";
-      SF Pl Dat => x + "tokarzom";
-      SF Pl Acc => x + "tokarzów";
-      SF Pl Instr => x + "tokarzami";
-      SF Pl Loc => x + "tokarzach";
-      SF Pl Voc => x + "Tokarzowie"
-    };
-
-    oper mkNTable0829: Str -> SubstForm => Str; --%
-    oper mkNTable0829 lexem = 
-      let x = Predef.tk 3 lexem in
-    table { 
-      SF Sg Nom => x + "tom";
-      SF Sg Gen => x + "Toma";
-      SF Sg Dat => x + "tomowi";
-      SF Sg Acc => x + "Toma";
-      SF Sg Instr => x + "tomem";
-      SF Sg Loc => x + "tomie";
-      SF Sg Voc => x + "tomie";
-      SF Pl Nom => x + "Tomowie";
-      SF Pl Gen => x + "tomów";
-      SF Pl Dat => x + "tomom";
-      SF Pl Acc => x + "tomów";
-      SF Pl Instr => x + "tomami";
-      SF Pl Loc => x + "tomach";
-      SF Pl Voc => x + "Tomowie"
-    };
-
-    oper mkNTable0830: Str -> SubstForm => Str; --%
-    oper mkNTable0830 lexem = 
-      let x = Predef.tk 5 lexem in
-    table { 
-      SF Sg Nom => x + "tomek";
-      SF Sg Gen => x + "tomka";
-      SF Sg Dat => x + "Tomkowi";
-      SF Sg Acc => x + "tomka";
-      SF Sg Instr => x + "Tomkiem";
-      SF Sg Loc => x + "Tomku";
-      SF Sg Voc => x + "Tomku";
-      SF Pl Nom => x + "Tomkowie";
-      SF Pl Gen => x + "Tomków";
-      SF Pl Dat => x + "tomkom";
-      SF Pl Acc => x + "Tomków";
-      SF Pl Instr => x + "tomkami";
-      SF Pl Loc => x + "tomkach";
-      SF Pl Voc => x + "Tomkowie"
-    };
-
-    oper mkNTable0831: Str -> SubstForm => Str; --%
-    oper mkNTable0831 lexem = 
-      let x = Predef.tk 7 lexem in
-    table { 
-      SF Sg Nom => x + "traczyk";
-      SF Sg Gen => x + "traczyka";
-      SF Sg Dat => x + "traczykowi";
-      SF Sg Acc => x + "traczyka";
-      SF Sg Instr => x + "traczykiem";
-      SF Sg Loc => x + "traczyku";
-      SF Sg Voc => x + "traczyku";
-      SF Pl Nom => x + "Traczykowie";
-      SF Pl Gen => x + "traczyków";
-      SF Pl Dat => x + "traczykom";
-      SF Pl Acc => x + "traczyków";
-      SF Pl Instr => x + "traczykami";
-      SF Pl Loc => x + "traczykach";
-      SF Pl Voc => x + "Traczykowie"
-    };
-
-    oper mkNTable0832: Str -> SubstForm => Str; --%
-    oper mkNTable0832 lexem = 
-      let x = Predef.tk 4 lexem in
-    table { 
-      SF Sg Nom => x + "trak";
-      SF Sg Gen => x + "traka";
-      SF Sg Dat => x + "trakowi";
-      SF Sg Acc => x + "traka";
-      SF Sg Instr => x + "trakiem";
-      SF Sg Loc => x + "traku";
-      SF Sg Voc => x + "traku";
-      SF Pl Nom => x + "Trakowie";
-      SF Pl Gen => x + "traków";
-      SF Pl Dat => x + "trakom";
-      SF Pl Acc => x + "traków";
-      SF Pl Instr => x + "trakami";
-      SF Pl Loc => x + "trakach";
-      SF Pl Voc => x + "Trakowie"
-    };
-
-    oper mkNTable0833: Str -> SubstForm => Str; --%
-    oper mkNTable0833 lexem = 
-      let x = Predef.tk 1 lexem in
-    table { 
-      SF Sg Nom => x + "o";
-      SF Sg Gen => x + "y";
-      SF Sg Dat => x + "y";
-      SF Sg Acc => x + "ę";
-      SF Sg Instr => x + "ą";
-      SF Sg Loc => x + "y";
-      SF Sg Voc => x + "o";
-      SF Pl Nom => x + "owie";
-      SF Pl Gen => x + "ów";
-      SF Pl Dat => x + "om";
-      SF Pl Acc => x + "ów";
-      SF Pl Instr => x + "ami";
-      SF Pl Loc => x + "ach";
-      SF Pl Voc => x + "owie"
-    };
-
-    oper mkNTable0834: Str -> SubstForm => Str; --%
-    oper mkNTable0834 lexem = 
-      let x = Predef.tk 6 lexem in
-    table { 
-      SF Sg Nom => x + "trojan";
-      SF Sg Gen => x + "trojana";
-      SF Sg Dat => x + "trojanowi";
-      SF Sg Acc => x + "trojana";
-      SF Sg Instr => x + "trojanem";
-      SF Sg Loc => x + "trojanie";
-      SF Sg Voc => x + "trojanie";
-      SF Pl Nom => x + "Trojanowie";
-      SF Pl Gen => x + "trojanów";
-      SF Pl Dat => x + "trojanom";
-      SF Pl Acc => x + "trojanów";
-      SF Pl Instr => x + "trojanami";
-      SF Pl Loc => x + "trojanach";
-      SF Pl Voc => x + "Trojanowie"
-    };
-
-    oper mkNTable0836: Str -> SubstForm => Str; --%
-    oper mkNTable0836 lexem = 
-      let x = Predef.tk 7 lexem in
-    table { 
-      SF Sg Nom => x + "trybuła";
-      SF Sg Gen => x + "trybuły";
-      SF Sg Dat => x + "trybule";
-      SF Sg Acc => x + "trybułę";
-      SF Sg Instr => x + "trybułą";
-      SF Sg Loc => x + "trybule";
-      SF Sg Voc => x + "trybuło";
-      SF Pl Nom => x + "Trybułowie";
-      SF Pl Gen => x + "Trybułów";
-      SF Pl Dat => x + "trybułom";
-      SF Pl Acc => x + "Trybułów";
-      SF Pl Instr => x + "trybułami";
-      SF Pl Loc => x + "trybułach";
-      SF Pl Voc => x + "Trybułowie"
-    };
-
-    oper mkNTable0837: Str -> SubstForm => Str; --%
-    oper mkNTable0837 lexem = 
-      let x = Predef.tk 8 lexem in
-    table { 
-      SF Sg Nom => x + "trzeciak";
-      SF Sg Gen => x + "trzeciaka";
-      SF Sg Dat => x + "trzeciakowi";
-      SF Sg Acc => x + "trzeciaka";
-      SF Sg Instr => x + "trzeciakiem";
-      SF Sg Loc => x + "trzeciaku";
-      SF Sg Voc => x + "trzeciaku";
-      SF Pl Nom => x + "Trzeciakowie";
-      SF Pl Gen => x + "trzeciaków";
-      SF Pl Dat => x + "trzeciakom";
-      SF Pl Acc => x + "trzeciaków";
-      SF Pl Instr => x + "trzeciakami";
-      SF Pl Loc => x + "trzeciakach";
-      SF Pl Voc => x + "Trzeciakowie"
-    };
-
-    oper mkNTable0838: Str -> SubstForm => Str; --%
-    oper mkNTable0838 lexem = 
-      let x = Predef.tk 4 lexem in
-    table { 
-      SF Sg Nom => x + "asto";
-      SF Sg Gen => x + "asta";
-      SF Sg Dat => x + "astu";
-      SF Sg Acc => x + "asto";
-      SF Sg Instr => x + "astem";
-      SF Sg Loc => x + "eście";
-      SF Sg Voc => x + "asto";
-      SF Pl Nom => x + "asta";
-      SF Pl Gen => x + "ast";
-      SF Pl Dat => x + "astom";
-      SF Pl Acc => x + "asta";
-      SF Pl Instr => x + "astami";
-      SF Pl Loc => x + "astach";
-      SF Pl Voc => x + "asta"
-    };
-
-    oper mkNTable0840: Str -> SubstForm => Str; --%
-    oper mkNTable0840 lexem = 
-      let x = Predef.tk 5 lexem in
-    table { 
-      SF Sg Nom => x + "turek";
-      SF Sg Gen => x + "turka";
-      SF Sg Dat => x + "turkowi";
-      SF Sg Acc => x + "turka";
-      SF Sg Instr => x + "turkiem";
-      SF Sg Loc => x + "turku";
-      SF Sg Voc => x + "turku";
-      SF Pl Nom => x + "Turkowie";
-      SF Pl Gen => x + "turków";
-      SF Pl Dat => x + "turkom";
-      SF Pl Acc => x + "turków";
-      SF Pl Instr => x + "turkami";
-      SF Pl Loc => x + "turkach";
-      SF Pl Voc => x + "Turkowie"
-    };
-
-    oper mkNTable0841: Str -> SubstForm => Str; --%
-    oper mkNTable0841 lexem = 
-      let x = Predef.tk 2 lexem in
-    table { 
-      SF Sg Nom => x + "ek";
-      SF Sg Gen => x + "ku";
-      SF Sg Dat => x + "kowi";
-      SF Sg Acc => x + "ek";
-      SF Sg Instr => x + "kiem";
-      SF Sg Loc => x + "ku";
-      SF Sg Voc => x + "ku";
-      SF Pl Nom => x + "ki";
-      SF Pl Gen => x + "ków";
-      SF Pl Dat => x + "kom";
-      SF Pl Acc => x + "ki";
-      SF Pl Instr => x + "kami";
-      SF Pl Loc => x + "kach";
-      SF Pl Voc => x + "ki"
-    };
-
-    oper mkNTable0842: Str -> SubstForm => Str; --%
-    oper mkNTable0842 lexem = 
-      let x = Predef.tk 4 lexem in
-    table { 
-      SF Sg Nom => x + "tuła";
-      SF Sg Gen => x + "tuły";
-      SF Sg Dat => x + "tule";
-      SF Sg Acc => x + "Tułę";
-      SF Sg Instr => x + "Tułą";
-      SF Sg Loc => x + "tule";
-      SF Sg Voc => x + "Tuło";
-      SF Pl Nom => x + "tuły";
-      SF Pl Gen => x + "tuł";
-      SF Pl Dat => x + "tułom";
-      SF Pl Acc => x + "tuły";
-      SF Pl Instr => x + "tułami";
-      SF Pl Loc => x + "tułach";
-      SF Pl Voc => x + "tuły"
-    };
-
-    oper mkNTable0844: Str -> SubstForm => Str; --%
-    oper mkNTable0844 lexem = 
-      let x = Predef.tk 6 lexem in
-    table { 
-      SF Sg Nom => x + "tygrys";
-      SF Sg Gen => x + "Tygrysu";
-      SF Sg Dat => x + "tygrysowi";
-      SF Sg Acc => x + "tygrys";
-      SF Sg Instr => x + "tygrysem";
-      SF Sg Loc => x + "tygrysie";
-      SF Sg Voc => x + "tygrysie";
-      SF Pl Nom => x + "tygrysy";
-      SF Pl Gen => x + "tygrysów";
-      SF Pl Dat => x + "tygrysom";
-      SF Pl Acc => x + "tygrysy";
-      SF Pl Instr => x + "tygrysami";
-      SF Pl Loc => x + "tygrysach";
-      SF Pl Voc => x + "tygrysy"
-    };
-
-    oper mkNTable0845: Str -> SubstForm => Str; --%
-    oper mkNTable0845 lexem = 
-      let x = Predef.tk 5 lexem in
-    table { 
-      SF Sg Nom => x + "Tylka";
-      SF Sg Gen => x + "Tylki";
-      SF Sg Dat => x + "tylce";
-      SF Sg Acc => x + "Tylkę";
-      SF Sg Instr => x + "Tylką";
-      SF Sg Loc => x + "tylce";
-      SF Sg Voc => x + "Tylko";
-      SF Pl Nom => x + "Tylki";
-      SF Pl Gen => x + "Tylek";
-      SF Pl Dat => x + "Tylkom";
-      SF Pl Acc => x + "Tylki";
-      SF Pl Instr => x + "Tylkami";
-      SF Pl Loc => x + "Tylkach";
-      SF Pl Voc => x + "Tylki"
-    };
-
-    oper mkNTable0846: Str -> SubstForm => Str; --%
-    oper mkNTable0846 lexem = 
-      let x = Predef.tk 4 lexem in
-    table { 
-      SF Sg Nom => x + "niec";
-      SF Sg Gen => x + "ńca";
-      SF Sg Dat => x + "ńcowi";
-      SF Sg Acc => x + "niec";
-      SF Sg Instr => x + "ńcem";
-      SF Sg Loc => x + "ńcu";
-      SF Sg Voc => x + "ńcu";
-      SF Pl Nom => x + "ńce";
-      SF Pl Gen => x + "ńców";
-      SF Pl Dat => x + "ńcom";
-      SF Pl Acc => x + "ńce";
-      SF Pl Instr => x + "ńcami";
-      SF Pl Loc => x + "ńcach";
-      SF Pl Voc => x + "ńce"
-    };
-
-    oper mkNTable0847: Str -> SubstForm => Str; --%
-    oper mkNTable0847 lexem = 
-      let x = Predef.tk 2 lexem in
-    table { 
-      SF Sg Nom => x + "ór";
-      SF Sg Gen => x + "oru";
-      SF Sg Dat => x + "orowi";
-      SF Sg Acc => x + "ór";
-      SF Sg Instr => x + "orem";
-      SF Sg Loc => x + "orze";
-      SF Sg Voc => x + "orze";
-      SF Pl Nom => x + "ory";
-      SF Pl Gen => x + "orów";
-      SF Pl Dat => x + "orom";
-      SF Pl Acc => x + "ory";
-      SF Pl Instr => x + "orami";
-      SF Pl Loc => x + "orach";
-      SF Pl Voc => x + "ory"
-    };
-
-    oper mkNTable0848: Str -> SubstForm => Str; --%
-    oper mkNTable0848 lexem = 
-      let x = Predef.tk 0 lexem in
-    table { 
-      SF Sg Nom => x + "";
-      SF Sg Gen => x + "-otu";
-      SF Sg Dat => x + "";
-      SF Sg Acc => x + "";
-      SF Sg Instr => x + "";
-      SF Sg Loc => x + "";
-      SF Sg Voc => x + "";
-      SF Pl Nom => x + "";
-      SF Pl Gen => x + "";
-      SF Pl Dat => x + "";
-      SF Pl Acc => x + "";
-      SF Pl Instr => x + "";
-      SF Pl Loc => x + "";
-      SF Pl Voc => x + ""
-    };
-
-    oper mkNTable0849: Str -> SubstForm => Str; --%
-    oper mkNTable0849 lexem = 
-      let x = Predef.tk 3 lexem in
-    table { 
-      SF Sg Nom => x + "ula";
-      SF Sg Gen => x + "uli";
-      SF Sg Dat => x + "uli";
-      SF Sg Acc => x + "Ulę";
-      SF Sg Instr => x + "Ulą";
-      SF Sg Loc => x + "uli";
-      SF Sg Voc => x + "ulu";
-      SF Pl Nom => x + "ule";
-      SF Pl Gen => x + "ul";
-      SF Pl Dat => x + "ulom";
-      SF Pl Acc => x + "ule";
-      SF Pl Instr => x + "ulami";
-      SF Pl Loc => x + "ulach";
-      SF Pl Voc => x + "ule"
-    };
-
-    oper mkNTable0850: Str -> SubstForm => Str; --%
-    oper mkNTable0850 lexem = 
-      let x = Predef.tk 6 lexem in
-    table { 
-      SF Sg Nom => x + "Ulster";
-      SF Sg Gen => x + "Ulsteru";
-      SF Sg Dat => x + "ulsterowi";
-      SF Sg Acc => x + "Ulster";
-      SF Sg Instr => x + "ulsterem";
-      SF Sg Loc => x + "ulsterze";
-      SF Sg Voc => x + "ulsterze";
-      SF Pl Nom => x + "ulstery";
-      SF Pl Gen => x + "ulsterów";
-      SF Pl Dat => x + "ulsterom";
-      SF Pl Acc => x + "ulstery";
-      SF Pl Instr => x + "ulsterami";
-      SF Pl Loc => x + "ulsterach";
-      SF Pl Voc => x + "ulstery"
-    };
-
-    oper mkNTable0851: Str -> SubstForm => Str; --%
-    oper mkNTable0851 lexem = 
-      let x = Predef.tk 4 lexem in
-    table { 
-      SF Sg Nom => x + "uran";
-      SF Sg Gen => x + "Urana";
-      SF Sg Dat => x + "uranowi";
-      SF Sg Acc => x + "Urana";
-      SF Sg Instr => x + "uranem";
-      SF Sg Loc => x + "uranie";
-      SF Sg Voc => x + "uranie";
-      SF Pl Nom => x + "urany";
-      SF Pl Gen => x + "uranów";
-      SF Pl Dat => x + "uranom";
-      SF Pl Acc => x + "urany";
-      SF Pl Instr => x + "uranami";
-      SF Pl Loc => x + "uranach";
-      SF Pl Voc => x + "urany"
-    };
-
-    oper mkNTable0853: Str -> SubstForm => Str; --%
-    oper mkNTable0853 lexem = 
-      let x = Predef.tk 1 lexem in
-    table { 
-      SF Sg Nom => x + "ń";
-      SF Sg Gen => x + "nia";
-      SF Sg Dat => x + "niowi";
-      SF Sg Acc => x + "ń";
-      SF Sg Instr => x + "niem";
-      SF Sg Loc => x + "niu";
-      SF Sg Voc => x + "niu";
-      SF Pl Nom => x + "nie";
-      SF Pl Gen => x + "ni";
-      SF Pl Dat => x + "niom";
-      SF Pl Acc => x + "nie";
-      SF Pl Instr => x + "niami";
-      SF Pl Loc => x + "niach";
-      SF Pl Voc => x + "nie"
-    };
-
-    oper mkNTable0854: Str -> SubstForm => Str; --%
-    oper mkNTable0854 lexem = 
-      let x = Predef.tk 4 lexem in
-    table { 
-      SF Sg Nom => x + "wala";
-      SF Sg Gen => x + "wali";
-      SF Sg Dat => x + "wali";
-      SF Sg Acc => x + "Walę";
-      SF Sg Instr => x + "Walą";
-      SF Sg Loc => x + "wali";
-      SF Sg Voc => x + "walu";
-      SF Pl Nom => x + "wale";
-      SF Pl Gen => x + "wal";
-      SF Pl Dat => x + "walom";
-      SF Pl Acc => x + "wale";
-      SF Pl Instr => x + "walami";
-      SF Pl Loc => x + "walach";
-      SF Pl Voc => x + "wale"
-    };
-
-    oper mkNTable0855: Str -> SubstForm => Str; --%
-    oper mkNTable0855 lexem = 
-      let x = Predef.tk 7 lexem in
-    table { 
-      SF Sg Nom => x + "walczak";
-      SF Sg Gen => x + "walczaka";
-      SF Sg Dat => x + "walczakowi";
-      SF Sg Acc => x + "walczaka";
-      SF Sg Instr => x + "walczakiem";
-      SF Sg Loc => x + "walczaku";
-      SF Sg Voc => x + "walczaku";
-      SF Pl Nom => x + "Walczakowie";
-      SF Pl Gen => x + "walczaków";
-      SF Pl Dat => x + "walczakom";
-      SF Pl Acc => x + "walczaków";
-      SF Pl Instr => x + "walczakami";
-      SF Pl Loc => x + "walczakach";
-      SF Pl Voc => x + "Walczakowie"
-    };
-
-    oper mkNTable0856: Str -> SubstForm => Str; --%
-    oper mkNTable0856 lexem = 
-      let x = Predef.tk 5 lexem in
-    table { 
-      SF Sg Nom => x + "Walek";
-      SF Sg Gen => x + "walka";
-      SF Sg Dat => x + "walkowi";
-      SF Sg Acc => x + "walka";
-      SF Sg Instr => x + "walkiem";
-      SF Sg Loc => x + "walku";
-      SF Sg Voc => x + "walku";
-      SF Pl Nom => x + "Walkowie";
-      SF Pl Gen => x + "walków";
-      SF Pl Dat => x + "walkom";
-      SF Pl Acc => x + "walków";
-      SF Pl Instr => x + "walkami";
-      SF Pl Loc => x + "walkach";
-      SF Pl Voc => x + "Walkowie"
-    };
-
-    oper mkNTable0857: Str -> SubstForm => Str; --%
-    oper mkNTable0857 lexem = 
-      let x = Predef.tk 8 lexem in
-    table { 
-      SF Sg Nom => x + "walerian";
-      SF Sg Gen => x + "waleriana";
-      SF Sg Dat => x + "Walerianowi";
-      SF Sg Acc => x + "waleriana";
-      SF Sg Instr => x + "Walerianem";
-      SF Sg Loc => x + "walerianie";
-      SF Sg Voc => x + "walerianie";
-      SF Pl Nom => x + "Walerianowie";
-      SF Pl Gen => x + "Walerianów";
-      SF Pl Dat => x + "walerianom";
-      SF Pl Acc => x + "Walerianów";
-      SF Pl Instr => x + "walerianami";
-      SF Pl Loc => x + "walerianach";
-      SF Pl Voc => x + "Walerianowie"
-    };
-
-    oper mkNTable0858: Str -> SubstForm => Str; --%
-    oper mkNTable0858 lexem = 
-      let x = Predef.tk 7 lexem in
-    table { 
-      SF Sg Nom => x + "Wandzia";
-      SF Sg Gen => x + "Wandzi";
-      SF Sg Dat => x + "Wandzi";
-      SF Sg Acc => x + "Wandzię";
-      SF Sg Instr => x + "Wandzią";
-      SF Sg Loc => x + "Wandzi";
-      SF Sg Voc => x + "Wandziu";
-      SF Pl Nom => x + "wandzie";
-      SF Pl Gen => x + "Wandź";
-      SF Pl Dat => x + "Wandziom";
-      SF Pl Acc => x + "wandzie";
-      SF Pl Instr => x + "Wandziami";
-      SF Pl Loc => x + "Wandziach";
-      SF Pl Voc => x + "wandzie"
-    };
-
-    oper mkNTable0859: Str -> SubstForm => Str; --%
-    oper mkNTable0859 lexem = 
-      let x = Predef.tk 7 lexem in
-    table { 
-      SF Sg Nom => x + "warchoł";
-      SF Sg Gen => x + "warchoła";
-      SF Sg Dat => x + "warchołowi";
-      SF Sg Acc => x + "warchoła";
-      SF Sg Instr => x + "warchołem";
-      SF Sg Loc => x + "warchole";
-      SF Sg Voc => x + "warchole";
-      SF Pl Nom => x + "Warchołowie";
-      SF Pl Gen => x + "warchołów";
-      SF Pl Dat => x + "warchołom";
-      SF Pl Acc => x + "warchołów";
-      SF Pl Instr => x + "warchołami";
-      SF Pl Loc => x + "warchołach";
-      SF Pl Voc => x + "Warchołowie"
-    };
-
-    oper mkNTable0860: Str -> SubstForm => Str; --%
-    oper mkNTable0860 lexem = 
-      let x = Predef.tk 10 lexem in
-    table { 
-      SF Sg Nom => x + "Waszyngton";
-      SF Sg Gen => x + "Waszyngtona";
-      SF Sg Dat => x + "Waszyngtonowi";
-      SF Sg Acc => x + "Waszyngtona";
-      SF Sg Instr => x + "Waszyngtonem";
-      SF Sg Loc => x + "waszyngtonie";
-      SF Sg Voc => x + "waszyngtonie";
-      SF Pl Nom => x + "Waszyngtonowie";
-      SF Pl Gen => x + "Waszyngtonów";
-      SF Pl Dat => x + "Waszyngtonom";
-      SF Pl Acc => x + "Waszyngtonów";
-      SF Pl Instr => x + "Waszyngtonami";
-      SF Pl Loc => x + "Waszyngtonach";
-      SF Pl Voc => x + "Waszyngtonowie"
-    };
-
-    oper mkNTable0861: Str -> SubstForm => Str; --%
-    oper mkNTable0861 lexem = 
-      let x = Predef.tk 10 lexem in
-    table { 
-      SF Sg Nom => x + "Waszyngton";
-      SF Sg Gen => x + "Waszyngtonu";
-      SF Sg Dat => x + "Waszyngtonowi";
-      SF Sg Acc => x + "Waszyngton";
-      SF Sg Instr => x + "Waszyngtonem";
-      SF Sg Loc => x + "waszyngtonie";
-      SF Sg Voc => x + "waszyngtonie";
-      SF Pl Nom => x + "Waszyngtony";
-      SF Pl Gen => x + "Waszyngtonów";
-      SF Pl Dat => x + "Waszyngtonom";
-      SF Pl Acc => x + "Waszyngtony";
-      SF Pl Instr => x + "Waszyngtonami";
-      SF Pl Loc => x + "Waszyngtonach";
-      SF Pl Voc => x + "Waszyngtony"
-    };
-
-    oper mkNTable0862: Str -> SubstForm => Str; --%
-    oper mkNTable0862 lexem = 
-      let x = Predef.tk 3 lexem in
-    table { 
-      SF Sg Nom => x + "wat";
-      SF Sg Gen => x + "wata";
-      SF Sg Dat => x + "watowi";
-      SF Sg Acc => x + "wata";
-      SF Sg Instr => x + "watem";
-      SF Sg Loc => x + "wacie";
-      SF Sg Voc => x + "wacie";
-      SF Pl Nom => x + "Watowie";
-      SF Pl Gen => x + "watów";
-      SF Pl Dat => x + "watom";
-      SF Pl Acc => x + "watów";
-      SF Pl Instr => x + "watami";
-      SF Pl Loc => x + "watach";
-      SF Pl Voc => x + "Watowie"
-    };
-
-    oper mkNTable0863: Str -> SubstForm => Str; --%
-    oper mkNTable0863 lexem = 
-      let x = Predef.tk 4 lexem in
-    table { 
-      SF Sg Nom => x + "watt";
-      SF Sg Gen => x + "watta";
-      SF Sg Dat => x + "wattowi";
-      SF Sg Acc => x + "watta";
-      SF Sg Instr => x + "wattem";
-      SF Sg Loc => x + "watcie";
-      SF Sg Voc => x + "watcie";
-      SF Pl Nom => x + "Wattowie";
-      SF Pl Gen => x + "wattów";
-      SF Pl Dat => x + "wattom";
-      SF Pl Acc => x + "wattów";
-      SF Pl Instr => x + "wattami";
-      SF Pl Loc => x + "wattach";
-      SF Pl Voc => x + "Wattowie"
-    };
-
-    oper mkNTable0864: Str -> SubstForm => Str; --%
-    oper mkNTable0864 lexem = 
-      let x = Predef.tk 2 lexem in
-    table { 
-      SF Sg Nom => x + "er";
-      SF Sg Gen => x + "ra";
-      SF Sg Dat => x + "rowi";
-      SF Sg Acc => x + "er";
-      SF Sg Instr => x + "rem";
-      SF Sg Loc => x + "rze";
-      SF Sg Voc => x + "rze";
-      SF Pl Nom => x + "ry";
-      SF Pl Gen => x + "rów";
-      SF Pl Dat => x + "rom";
-      SF Pl Acc => x + "ry";
-      SF Pl Instr => x + "rami";
-      SF Pl Loc => x + "rach";
-      SF Pl Voc => x + "ry"
-    };
-
-    oper mkNTable0865: Str -> SubstForm => Str; --%
-    oper mkNTable0865 lexem = 
-      let x = Predef.tk 4 lexem in
-    table { 
-      SF Sg Nom => x + "niec";
-      SF Sg Gen => x + "ńca";
-      SF Sg Dat => x + "ńcowi";
-      SF Sg Acc => x + "ńca";
-      SF Sg Instr => x + "ńcem";
-      SF Sg Loc => x + "ńcu";
-      SF Sg Voc => x + "ńcze";
-      SF Pl Nom => x + "ńcowie";
-      SF Pl Gen => x + "ńców";
-      SF Pl Dat => x + "ńcom";
-      SF Pl Acc => x + "ńców";
-      SF Pl Instr => x + "ńcami";
-      SF Pl Loc => x + "ńcach";
-      SF Pl Voc => x + "ńcowie"
-    };
-
-    oper mkNTable0866: Str -> SubstForm => Str; --%
-    oper mkNTable0866 lexem = 
-      let x = Predef.tk 4 lexem in
-    table { 
-      SF Sg Nom => x + "waza";
-      SF Sg Gen => x + "wazy";
-      SF Sg Dat => x + "wazie";
-      SF Sg Acc => x + "wazę";
-      SF Sg Instr => x + "wazą";
-      SF Sg Loc => x + "wazie";
-      SF Sg Voc => x + "wazo";
-      SF Pl Nom => x + "Wazowie";
-      SF Pl Gen => x + "Wazów";
-      SF Pl Dat => x + "wazom";
-      SF Pl Acc => x + "Wazów";
-      SF Pl Instr => x + "wazami";
-      SF Pl Loc => x + "wazach";
-      SF Pl Voc => x + "Wazowie"
-    };
-
-    oper mkNTable0868: Str -> SubstForm => Str; --%
-    oper mkNTable0868 lexem = 
-      let x = Predef.tk 5 lexem in
-    table { 
-      SF Sg Nom => x + "weber";
-      SF Sg Gen => x + "webera";
-      SF Sg Dat => x + "weberowi";
-      SF Sg Acc => x + "webera";
-      SF Sg Instr => x + "weberem";
-      SF Sg Loc => x + "weberze";
-      SF Sg Voc => x + "weberze";
-      SF Pl Nom => x + "Weberowie";
-      SF Pl Gen => x + "weberów";
-      SF Pl Dat => x + "weberom";
-      SF Pl Acc => x + "weberów";
-      SF Pl Instr => x + "weberami";
-      SF Pl Loc => x + "weberach";
-      SF Pl Voc => x + "Weberowie"
-    };
-
-    oper mkNTable0870: Str -> SubstForm => Str; --%
-    oper mkNTable0870 lexem = 
-      let x = Predef.tk 10 lexem in
-    table { 
-      SF Sg Nom => x + "wellington";
-      SF Sg Gen => x + "wellingtona";
-      SF Sg Dat => x + "wellingtonowi";
-      SF Sg Acc => x + "wellingtona";
-      SF Sg Instr => x + "wellingtonem";
-      SF Sg Loc => x + "wellingtonie";
-      SF Sg Voc => x + "wellingtonie";
-      SF Pl Nom => x + "Wellingtonowie";
-      SF Pl Gen => x + "wellingtonów";
-      SF Pl Dat => x + "wellingtonom";
-      SF Pl Acc => x + "wellingtonów";
-      SF Pl Instr => x + "wellingtonami";
-      SF Pl Loc => x + "wellingtonach";
-      SF Pl Voc => x + "Wellingtonowie"
-    };
-
-    oper mkNTable0871: Str -> SubstForm => Str; --%
-    oper mkNTable0871 lexem = 
-      let x = Predef.tk 1 lexem in
-    table { 
-      SF Sg Nom => x + "e";
-      SF Sg Gen => x + "ego";
-      SF Sg Dat => x + "e";
-      SF Sg Acc => x + "ego";
-      SF Sg Instr => x + "e";
-      SF Sg Loc => x + "e";
-      SF Sg Voc => x + "e";
-      SF Pl Nom => x + "owie";
-      SF Pl Gen => x + "ów";
-      SF Pl Dat => x + "om";
-      SF Pl Acc => x + "ów";
-      SF Pl Instr => x + "e";
-      SF Pl Loc => x + "e";
-      SF Pl Voc => x + "owie"
-    };
-
-    oper mkNTable0873: Str -> SubstForm => Str; --%
-    oper mkNTable0873 lexem = 
-      let x = Predef.tk 5 lexem in
-    table { 
-      SF Sg Nom => x + "wicek";
-      SF Sg Gen => x + "wicka";
-      SF Sg Dat => x + "wickowi";
-      SF Sg Acc => x + "wicka";
-      SF Sg Instr => x + "wickiem";
-      SF Sg Loc => x + "wicku";
-      SF Sg Voc => x + "wicku";
-      SF Pl Nom => x + "Wickowie";
-      SF Pl Gen => x + "wicków";
-      SF Pl Dat => x + "wickom";
-      SF Pl Acc => x + "wicków";
-      SF Pl Instr => x + "wickami";
-      SF Pl Loc => x + "wickach";
-      SF Pl Voc => x + "Wickowie"
-    };
-
-    oper mkNTable0874: Str -> SubstForm => Str; --%
-    oper mkNTable0874 lexem = 
-      let x = Predef.tk 5 lexem in
-    table { 
-      SF Sg Nom => x + "wiech";
-      SF Sg Gen => x + "wiecha";
-      SF Sg Dat => x + "wiechowi";
-      SF Sg Acc => x + "wiecha";
-      SF Sg Instr => x + "wiechem";
-      SF Sg Loc => x + "wiechu";
-      SF Sg Voc => x + "wiechu";
-      SF Pl Nom => x + "Wiechowie";
-      SF Pl Gen => x + "wiechów";
-      SF Pl Dat => x + "wiechom";
-      SF Pl Acc => x + "wiechów";
-      SF Pl Instr => x + "wiechami";
-      SF Pl Loc => x + "wiechach";
-      SF Pl Voc => x + "Wiechowie"
-    };
-
-    oper mkNTable0875: Str -> SubstForm => Str; --%
-    oper mkNTable0875 lexem = 
-      let x = Predef.tk 9 lexem in
-    table { 
-      SF Sg Nom => x + "wieczorek";
-      SF Sg Gen => x + "wieczorka";
-      SF Sg Dat => x + "wieczorkowi";
-      SF Sg Acc => x + "wieczorka";
-      SF Sg Instr => x + "wieczorkiem";
-      SF Sg Loc => x + "wieczorku";
-      SF Sg Voc => x + "wieczorku";
-      SF Pl Nom => x + "Wieczorkowie";
-      SF Pl Gen => x + "wieczorków";
-      SF Pl Dat => x + "wieczorkom";
-      SF Pl Acc => x + "wieczorków";
-      SF Pl Instr => x + "wieczorkami";
-      SF Pl Loc => x + "wieczorkach";
-      SF Pl Voc => x + "Wieczorkowie"
-    };
-
-    oper mkNTable0876: Str -> SubstForm => Str; --%
-    oper mkNTable0876 lexem = 
-      let x = Predef.tk 1 lexem in
-    table { 
-      SF Sg Nom => x + "ć";
-      SF Sg Gen => x + "ci";
-      SF Sg Dat => x + "ci";
-      SF Sg Acc => x + "ć";
-      SF Sg Instr => x + "cią";
-      SF Sg Loc => x + "ci";
-      SF Sg Voc => x + "ci";
-      SF Pl Nom => x + "ci";
-      SF Pl Gen => x + "ci";
-      SF Pl Dat => x + "ciom";
-      SF Pl Acc => x + "ci";
-      SF Pl Instr => x + "ciami";
-      SF Pl Loc => x + "ciach";
-      SF Pl Voc => x + "ci"
-    };
-
-    oper mkNTable0877: Str -> SubstForm => Str; --%
-    oper mkNTable0877 lexem = 
-      let x = Predef.tk 4 lexem in
-    table { 
-      SF Sg Nom => x + "anoc";
-      SF Sg Gen => x + "iejnocy";
-      SF Sg Dat => x + "iejnocy";
-      SF Sg Acc => x + "ąnoc";
-      SF Sg Instr => x + "ąnocą";
-      SF Sg Loc => x + "iejnocy";
-      SF Sg Voc => x + "anocy";
-      SF Pl Nom => x + "ienoce";
-      SF Pl Gen => x + "anocy";
-      SF Pl Dat => x + "imnocom";
-      SF Pl Acc => x + "ienoce";
-      SF Pl Instr => x + "iminocami";
-      SF Pl Loc => x + "ichnocach";
-      SF Pl Voc => x + "ienoce"
-    };
-
-    oper mkNTable0878: Str -> SubstForm => Str; --%
-    oper mkNTable0878 lexem = 
-      let x = Predef.tk 1 lexem in
-    table { 
-      SF Sg Nom => x + "e";
-      SF Sg Gen => x + "a";
-      SF Sg Dat => x + "u";
-      SF Sg Acc => x + "e";
-      SF Sg Instr => x + "em";
-      SF Sg Loc => x + "u";
-      SF Sg Voc => x + "e";
-      SF Pl Nom => x + "a";
-      SF Pl Gen => x + "i";
-      SF Pl Dat => x + "om";
-      SF Pl Acc => x + "a";
-      SF Pl Instr => x + "ami";
-      SF Pl Loc => x + "ach";
-      SF Pl Voc => x + "a"
-    };
-
-    oper mkNTable0879: Str -> SubstForm => Str; --%
-    oper mkNTable0879 lexem = 
-      let x = Predef.tk 5 lexem in
-    table { 
-      SF Sg Nom => x + "Wiera";
-      SF Sg Gen => x + "Wiery";
-      SF Sg Dat => x + "wierze";
-      SF Sg Acc => x + "Wierę";
-      SF Sg Instr => x + "Wierą";
-      SF Sg Loc => x + "wierze";
-      SF Sg Voc => x + "Wiero";
-      SF Pl Nom => x + "Wiery";
-      SF Pl Gen => x + "Wier";
-      SF Pl Dat => x + "Wierom";
-      SF Pl Acc => x + "Wiery";
-      SF Pl Instr => x + "Wierami";
-      SF Pl Loc => x + "Wierach";
-      SF Pl Voc => x + "Wiery"
-    };
-
-    oper mkNTable0880: Str -> SubstForm => Str; --%
-    oper mkNTable0880 lexem = 
-      let x = Predef.tk 6 lexem in
-    table { 
-      SF Sg Nom => x + "Wiesia";
-      SF Sg Gen => x + "Wiesi";
-      SF Sg Dat => x + "Wiesi";
-      SF Sg Acc => x + "Wiesię";
-      SF Sg Instr => x + "Wiesią";
-      SF Sg Loc => x + "Wiesi";
-      SF Sg Voc => x + "Wiesiu";
-      SF Pl Nom => x + "Wiesie";
-      SF Pl Gen => x + "wieś";
-      SF Pl Dat => x + "Wiesiom";
-      SF Pl Acc => x + "Wiesie";
-      SF Pl Instr => x + "Wiesiami";
-      SF Pl Loc => x + "Wiesiach";
-      SF Pl Voc => x + "Wiesie"
-    };
-
-    oper mkNTable0881: Str -> SubstForm => Str; --%
-    oper mkNTable0881 lexem = 
-      let x = Predef.tk 9 lexem in
-    table { 
-      SF Sg Nom => x + "Wietnamka";
-      SF Sg Gen => x + "Wietnamki";
-      SF Sg Dat => x + "wietnamce";
-      SF Sg Acc => x + "Wietnamkę";
-      SF Sg Instr => x + "Wietnamką";
-      SF Sg Loc => x + "wietnamce";
-      SF Sg Voc => x + "Wietnamko";
-      SF Pl Nom => x + "Wietnamki";
-      SF Pl Gen => x + "Wietnamek";
-      SF Pl Dat => x + "Wietnamkom";
-      SF Pl Acc => x + "Wietnamki";
-      SF Pl Instr => x + "Wietnamkami";
-      SF Pl Loc => x + "Wietnamkach";
-      SF Pl Voc => x + "Wietnamki"
-    };
-
-    oper mkNTable0882: Str -> SubstForm => Str; --%
-    oper mkNTable0882 lexem = 
-      let x = Predef.tk 5 lexem in
-    table { 
-      SF Sg Nom => x + "Wikta";
-      SF Sg Gen => x + "wikty";
-      SF Sg Dat => x + "wikcie";
-      SF Sg Acc => x + "Wiktę";
-      SF Sg Instr => x + "Wiktą";
-      SF Sg Loc => x + "wikcie";
-      SF Sg Voc => x + "Wikto";
-      SF Pl Nom => x + "wikty";
-      SF Pl Gen => x + "wikt";
-      SF Pl Dat => x + "wiktom";
-      SF Pl Acc => x + "wikty";
-      SF Pl Instr => x + "wiktami";
-      SF Pl Loc => x + "wiktach";
-      SF Pl Voc => x + "wikty"
-    };
-
-    oper mkNTable0883: Str -> SubstForm => Str; --%
-    oper mkNTable0883 lexem = 
-      let x = Predef.tk 6 lexem in
-    table { 
-      SF Sg Nom => x + "wiktor";
-      SF Sg Gen => x + "wiktora";
-      SF Sg Dat => x + "wiktorowi";
-      SF Sg Acc => x + "wiktora";
-      SF Sg Instr => x + "wiktorem";
-      SF Sg Loc => x + "wiktorze";
-      SF Sg Voc => x + "wiktorze";
-      SF Pl Nom => x + "Wiktorowie";
-      SF Pl Gen => x + "wiktorów";
-      SF Pl Dat => x + "wiktorom";
-      SF Pl Acc => x + "wiktorów";
-      SF Pl Instr => x + "wiktorami";
-      SF Pl Loc => x + "wiktorach";
-      SF Pl Voc => x + "Wiktorowie"
-    };
-
-    oper mkNTable0884: Str -> SubstForm => Str; --%
-    oper mkNTable0884 lexem = 
-      let x = Predef.tk 7 lexem in
-    table { 
-      SF Sg Nom => x + "wilczek";
-      SF Sg Gen => x + "wilczka";
-      SF Sg Dat => x + "wilczkowi";
-      SF Sg Acc => x + "wilczka";
-      SF Sg Instr => x + "wilczkiem";
-      SF Sg Loc => x + "wilczku";
-      SF Sg Voc => x + "wilczku";
-      SF Pl Nom => x + "Wilczkowie";
-      SF Pl Gen => x + "wilczków";
-      SF Pl Dat => x + "wilczkom";
-      SF Pl Acc => x + "wilczków";
-      SF Pl Instr => x + "wilczkami";
-      SF Pl Loc => x + "wilczkach";
-      SF Pl Voc => x + "Wilczkowie"
-    };
-
-    oper mkNTable0885: Str -> SubstForm => Str; --%
-    oper mkNTable0885 lexem = 
-      let x = Predef.tk 4 lexem in
-    table { 
-      SF Sg Nom => x + "wilk";
-      SF Sg Gen => x + "wilka";
-      SF Sg Dat => x + "wilkowi";
-      SF Sg Acc => x + "wilka";
-      SF Sg Instr => x + "wilkiem";
-      SF Sg Loc => x + "wilku";
-      SF Sg Voc => x + "wilku";
-      SF Pl Nom => x + "Wilkowie";
-      SF Pl Gen => x + "wilków";
-      SF Pl Dat => x + "wilkom";
-      SF Pl Acc => x + "wilków";
-      SF Pl Instr => x + "wilkami";
-      SF Pl Loc => x + "wilkach";
-      SF Pl Voc => x + "Wilkowie"
-    };
-
-    oper mkNTable0887: Str -> SubstForm => Str; --%
-    oper mkNTable0887 lexem = 
-      let x = Predef.tk 3 lexem in
-    table { 
-      SF Sg Nom => x + "Wit";
-      SF Sg Gen => x + "Wita";
-      SF Sg Dat => x + "Witowi";
-      SF Sg Acc => x + "Wita";
-      SF Sg Instr => x + "Witem";
-      SF Sg Loc => x + "wicie";
-      SF Sg Voc => x + "wicie";
-      SF Pl Nom => x + "Witowie";
-      SF Pl Gen => x + "Witów";
-      SF Pl Dat => x + "Witom";
-      SF Pl Acc => x + "Witów";
-      SF Pl Instr => x + "Witami";
-      SF Pl Loc => x + "Witach";
-      SF Pl Voc => x + "Witowie"
-    };
-
-    oper mkNTable0888: Str -> SubstForm => Str; --%
-    oper mkNTable0888 lexem = 
-      let x = Predef.tk 4 lexem in
-    table { 
-      SF Sg Nom => x + "Wita";
-      SF Sg Gen => x + "Wity";
-      SF Sg Dat => x + "wicie";
-      SF Sg Acc => x + "Witę";
-      SF Sg Instr => x + "Witą";
-      SF Sg Loc => x + "wicie";
-      SF Sg Voc => x + "Wito";
-      SF Pl Nom => x + "Wity";
-      SF Pl Gen => x + "Wit";
-      SF Pl Dat => x + "Witom";
-      SF Pl Acc => x + "Wity";
-      SF Pl Instr => x + "Witami";
-      SF Pl Loc => x + "Witach";
-      SF Pl Voc => x + "Wity"
-    };
-
-    oper mkNTable0889: Str -> SubstForm => Str; --%
-    oper mkNTable0889 lexem = 
-      let x = Predef.tk 5 lexem in
-    table { 
-      SF Sg Nom => x + "witek";
-      SF Sg Gen => x + "witka";
-      SF Sg Dat => x + "Witkowi";
-      SF Sg Acc => x + "witka";
-      SF Sg Instr => x + "Witkiem";
-      SF Sg Loc => x + "Witku";
-      SF Sg Voc => x + "Witku";
-      SF Pl Nom => x + "Witkowie";
-      SF Pl Gen => x + "Witków";
-      SF Pl Dat => x + "witkom";
-      SF Pl Acc => x + "Witków";
-      SF Pl Instr => x + "witkami";
-      SF Pl Loc => x + "witkach";
-      SF Pl Voc => x + "Witkowie"
-    };
-
-    oper mkNTable0891: Str -> SubstForm => Str; --%
-    oper mkNTable0891 lexem = 
-      let x = Predef.tk 8 lexem in
-    table { 
-      SF Sg Nom => x + "wojaczek";
-      SF Sg Gen => x + "wojaczka";
-      SF Sg Dat => x + "Wojaczkowi";
-      SF Sg Acc => x + "wojaczka";
-      SF Sg Instr => x + "Wojaczkiem";
-      SF Sg Loc => x + "Wojaczku";
-      SF Sg Voc => x + "Wojaczku";
-      SF Pl Nom => x + "Wojaczkowie";
-      SF Pl Gen => x + "Wojaczków";
-      SF Pl Dat => x + "wojaczkom";
-      SF Pl Acc => x + "Wojaczków";
-      SF Pl Instr => x + "wojaczkami";
-      SF Pl Loc => x + "wojaczkach";
-      SF Pl Voc => x + "Wojaczkowie"
-    };
-
-    oper mkNTable0892: Str -> SubstForm => Str; --%
-    oper mkNTable0892 lexem = 
-      let x = Predef.tk 4 lexem in
-    table { 
-      SF Sg Nom => x + "Wolf";
-      SF Sg Gen => x + "Wolfa";
-      SF Sg Dat => x + "Wolfowi";
-      SF Sg Acc => x + "Wolfa";
-      SF Sg Instr => x + "Wolfem";
-      SF Sg Loc => x + "wolfie";
-      SF Sg Voc => x + "wolfie";
-      SF Pl Nom => x + "Wolfowie";
-      SF Pl Gen => x + "Wolfów";
-      SF Pl Dat => x + "Wolfom";
-      SF Pl Acc => x + "Wolfów";
-      SF Pl Instr => x + "Wolfami";
-      SF Pl Loc => x + "Wolfach";
-      SF Pl Voc => x + "Wolfowie"
-    };
-
-    oper mkNTable0894: Str -> SubstForm => Str; --%
-    oper mkNTable0894 lexem = 
-      let x = Predef.tk 5 lexem in
-    table { 
-      SF Sg Nom => x + "wrona";
-      SF Sg Gen => x + "wrony";
-      SF Sg Dat => x + "wronie";
-      SF Sg Acc => x + "wronę";
-      SF Sg Instr => x + "wroną";
-      SF Sg Loc => x + "wronie";
-      SF Sg Voc => x + "wrono";
-      SF Pl Nom => x + "Wronowie";
-      SF Pl Gen => x + "Wronów";
-      SF Pl Dat => x + "wronom";
-      SF Pl Acc => x + "Wronów";
-      SF Pl Instr => x + "wronami";
-      SF Pl Loc => x + "wronach";
-      SF Pl Voc => x + "Wronowie"
-    };
-
-    oper mkNTable0895: Str -> SubstForm => Str; --%
-    oper mkNTable0895 lexem = 
-      let x = Predef.tk 6 lexem in
-    table { 
-      SF Sg Nom => x + "wszoła";
-      SF Sg Gen => x + "wszoły";
-      SF Sg Dat => x + "wszole";
-      SF Sg Acc => x + "Wszołę";
-      SF Sg Instr => x + "Wszołą";
-      SF Sg Loc => x + "wszole";
-      SF Sg Voc => x + "Wszoło";
-      SF Pl Nom => x + "Wszołowie";
-      SF Pl Gen => x + "wszołów";
-      SF Pl Dat => x + "wszołom";
-      SF Pl Acc => x + "wszołów";
-      SF Pl Instr => x + "wszołami";
-      SF Pl Loc => x + "wszołach";
-      SF Pl Voc => x + "Wszołowie"
-    };
-
-    oper mkNTable0896: Str -> SubstForm => Str; --%
-    oper mkNTable0896 lexem = 
-      let x = Predef.tk 4 lexem in
-    table { 
-      SF Sg Nom => x + "wyka";
-      SF Sg Gen => x + "wyki";
-      SF Sg Dat => x + "wyce";
-      SF Sg Acc => x + "wykę";
-      SF Sg Instr => x + "wyką";
-      SF Sg Loc => x + "wyce";
-      SF Sg Voc => x + "wyko";
-      SF Pl Nom => x + "Wykowie";
-      SF Pl Gen => x + "Wyków";
-      SF Pl Dat => x + "wykom";
-      SF Pl Acc => x + "Wyków";
-      SF Pl Instr => x + "wykami";
-      SF Pl Loc => x + "wykach";
-      SF Pl Voc => x + "Wykowie"
-    };
-
-    oper mkNTable0897: Str -> SubstForm => Str; --%
-    oper mkNTable0897 lexem = 
-      let x = Predef.tk 6 lexem in
-    table { 
-      SF Sg Nom => x + "wypych";
-      SF Sg Gen => x + "Wypycha";
-      SF Sg Dat => x + "wypychowi";
-      SF Sg Acc => x + "Wypycha";
-      SF Sg Instr => x + "wypychem";
-      SF Sg Loc => x + "wypychu";
-      SF Sg Voc => x + "wypychu";
-      SF Pl Nom => x + "Wypychowie";
-      SF Pl Gen => x + "wypychów";
-      SF Pl Dat => x + "wypychom";
-      SF Pl Acc => x + "wypychów";
-      SF Pl Instr => x + "wypychami";
-      SF Pl Loc => x + "wypychach";
-      SF Pl Voc => x + "Wypychowie"
-    };
-
-    oper mkNTable0898: Str -> SubstForm => Str; --%
-    oper mkNTable0898 lexem = 
-      let x = Predef.tk 6 lexem in
-    table { 
-      SF Sg Nom => x + "Władka";
-      SF Sg Gen => x + "Władki";
-      SF Sg Dat => x + "władce";
-      SF Sg Acc => x + "Władkę";
-      SF Sg Instr => x + "Władką";
-      SF Sg Loc => x + "władce";
-      SF Sg Voc => x + "Władko";
-      SF Pl Nom => x + "Władki";
-      SF Pl Gen => x + "Władek";
-      SF Pl Dat => x + "Władkom";
-      SF Pl Acc => x + "Władki";
-      SF Pl Instr => x + "Władkami";
-      SF Pl Loc => x + "Władkach";
-      SF Pl Voc => x + "Władki"
-    };
-
-    oper mkNTable0899: Str -> SubstForm => Str; --%
-    oper mkNTable0899 lexem = 
-      let x = Predef.tk 5 lexem in
-    table { 
-      SF Sg Nom => x + "Włoch";
-      SF Sg Gen => x + "Włocha";
-      SF Sg Dat => x + "Włochowi";
-      SF Sg Acc => x + "Włocha";
-      SF Sg Instr => x + "Włochem";
-      SF Sg Loc => x + "Włochu";
-      SF Sg Voc => x + "Włochu";
-      SF Pl Nom => x + "włosi";
-      SF Pl Gen => x + "włochów";
-      SF Pl Dat => x + "włochom";
-      SF Pl Acc => x + "włochów";
-      SF Pl Instr => x + "włochami";
-      SF Pl Loc => x + "włochach";
-      SF Pl Voc => x + "włosi"
-    };
-
-    oper mkNTable0901: Str -> SubstForm => Str; --%
-    oper mkNTable0901 lexem = 
-      let x = Predef.tk 3 lexem in
-    table { 
-      SF Sg Nom => x + "ier";
-      SF Sg Gen => x + "ra";
-      SF Sg Dat => x + "rowi";
-      SF Sg Acc => x + "ra";
-      SF Sg Instr => x + "rem";
-      SF Sg Loc => x + "rze";
-      SF Sg Voc => x + "rze";
-      SF Pl Nom => x + "rzy";
-      SF Pl Gen => x + "rów";
-      SF Pl Dat => x + "rom";
-      SF Pl Acc => x + "rów";
-      SF Pl Instr => x + "rami";
-      SF Pl Loc => x + "rach";
-      SF Pl Voc => x + "rzy"
-    };
-
-    oper mkNTable0902: Str -> SubstForm => Str; --%
-    oper mkNTable0902 lexem = 
-      let x = Predef.tk 3 lexem in
-    table { 
-      SF Sg Nom => x + "zeł";
-      SF Sg Gen => x + "zła";
-      SF Sg Dat => x + "złowi";
-      SF Sg Acc => x + "zła";
-      SF Sg Instr => x + "złem";
-      SF Sg Loc => x + "źle";
-      SF Sg Voc => x + "źle";
-      SF Pl Nom => x + "zły";
-      SF Pl Gen => x + "złów";
-      SF Pl Dat => x + "złom";
-      SF Pl Acc => x + "zły";
-      SF Pl Instr => x + "złami";
-      SF Pl Loc => x + "złach";
-      SF Pl Voc => x + "zły"
-    };
-
-    oper mkNTable0903: Str -> SubstForm => Str; --%
-    oper mkNTable0903 lexem = 
-      let x = Predef.tk 6 lexem in
-    table { 
-      SF Sg Nom => x + "wójcik";
-      SF Sg Gen => x + "wójcika";
-      SF Sg Dat => x + "wójcikowi";
-      SF Sg Acc => x + "wójcika";
-      SF Sg Instr => x + "wójcikiem";
-      SF Sg Loc => x + "wójciku";
-      SF Sg Voc => x + "wójciku";
-      SF Pl Nom => x + "Wójcikowie";
-      SF Pl Gen => x + "wójcików";
-      SF Pl Dat => x + "wójcikom";
-      SF Pl Acc => x + "wójcików";
-      SF Pl Instr => x + "wójcikami";
-      SF Pl Loc => x + "wójcikach";
-      SF Pl Voc => x + "Wójcikowie"
-    };
-
-    oper mkNTable0905: Str -> SubstForm => Str; --%
-    oper mkNTable0905 lexem = 
-      let x = Predef.tk 4 lexem in
-    table { 
-      SF Sg Nom => x + "zair";
-      SF Sg Gen => x + "Zairu";
-      SF Sg Dat => x + "zairowi";
-      SF Sg Acc => x + "zair";
-      SF Sg Instr => x + "zairem";
-      SF Sg Loc => x + "zairze";
-      SF Sg Voc => x + "zairze";
-      SF Pl Nom => x + "zairy";
-      SF Pl Gen => x + "zairów";
-      SF Pl Dat => x + "zairom";
-      SF Pl Acc => x + "zairy";
-      SF Pl Instr => x + "zairami";
-      SF Pl Loc => x + "zairach";
-      SF Pl Voc => x + "zairy"
-    };
-
-    oper mkNTable0906: Str -> SubstForm => Str; --%
-    oper mkNTable0906 lexem = 
-      let x = Predef.tk 5 lexem in
-    table { 
-      SF Sg Nom => x + "zając";
-      SF Sg Gen => x + "zająca";
-      SF Sg Dat => x + "zającowi";
-      SF Sg Acc => x + "zająca";
-      SF Sg Instr => x + "zającem";
-      SF Sg Loc => x + "zającu";
-      SF Sg Voc => x + "zającu";
-      SF Pl Nom => x + "Zającowie";
-      SF Pl Gen => x + "zająców";
-      SF Pl Dat => x + "zającom";
-      SF Pl Acc => x + "zająców";
-      SF Pl Instr => x + "zającami";
-      SF Pl Loc => x + "zającach";
-      SF Pl Voc => x + "Zającowie"
-    };
-
-    oper mkNTable0907: Str -> SubstForm => Str; --%
-    oper mkNTable0907 lexem = 
-      let x = Predef.tk 8 lexem in
-    table { 
-      SF Sg Nom => x + "zajączek";
-      SF Sg Gen => x + "zajączka";
-      SF Sg Dat => x + "zajączkowi";
-      SF Sg Acc => x + "zajączka";
-      SF Sg Instr => x + "zajączkiem";
-      SF Sg Loc => x + "zajączku";
-      SF Sg Voc => x + "zajączku";
-      SF Pl Nom => x + "Zajączkowie";
-      SF Pl Gen => x + "zajączków";
-      SF Pl Dat => x + "zajączkom";
-      SF Pl Acc => x + "zajączków";
-      SF Pl Instr => x + "zajączkami";
-      SF Pl Loc => x + "zajączkach";
-      SF Pl Voc => x + "Zajączkowie"
-    };
-
-    oper mkNTable0908: Str -> SubstForm => Str; --%
-    oper mkNTable0908 lexem = 
-      let x = Predef.tk 1 lexem in
-    table { 
-      SF Sg Nom => x + "o";
-      SF Sg Gen => x + "a";
-      SF Sg Dat => x + "u";
-      SF Sg Acc => x + "o";
-      SF Sg Instr => x + "em";
-      SF Sg Loc => x + "ie";
-      SF Sg Voc => x + "o";
-      SF Pl Nom => x + "a";
-      SF Pl Gen => x + "";
-      SF Pl Dat => x + "om";
-      SF Pl Acc => x + "a";
-      SF Pl Instr => x + "ami";
-      SF Pl Loc => x + "ach";
-      SF Pl Voc => x + "a"
-    };
-
-    oper mkNTable0909: Str -> SubstForm => Str; --%
-    oper mkNTable0909 lexem = 
-      let x = Predef.tk 6 lexem in
-    table { 
-      SF Sg Nom => x + "zawada";
-      SF Sg Gen => x + "zawady";
-      SF Sg Dat => x + "zawadzie";
-      SF Sg Acc => x + "zawadę";
-      SF Sg Instr => x + "zawadą";
-      SF Sg Loc => x + "zawadzie";
-      SF Sg Voc => x + "zawado";
-      SF Pl Nom => x + "Zawadowie";
-      SF Pl Gen => x + "Zawadów";
-      SF Pl Dat => x + "zawadom";
-      SF Pl Acc => x + "Zawadów";
-      SF Pl Instr => x + "zawadami";
-      SF Pl Loc => x + "zawadach";
-      SF Pl Voc => x + "Zawadowie"
-    };
-
-    oper mkNTable0912: Str -> SubstForm => Str; --%
-    oper mkNTable0912 lexem = 
-      let x = Predef.tk 2 lexem in
-    table { 
-      SF Sg Nom => x + "ia";
-      SF Sg Gen => x + "i";
-      SF Sg Dat => x + "i";
-      SF Sg Acc => x + "ię";
-      SF Sg Instr => x + "ią";
-      SF Sg Loc => x + "i";
-      SF Sg Voc => x + "io";
-      SF Pl Nom => x + "ie";
-      SF Pl Gen => x + "";
-      SF Pl Dat => x + "iom";
-      SF Pl Acc => x + "ie";
-      SF Pl Instr => x + "iami";
-      SF Pl Loc => x + "iach";
-      SF Pl Voc => x + "ie"
-    };
-
-    oper mkNTable0913: Str -> SubstForm => Str; --%
-    oper mkNTable0913 lexem = 
-      let x = Predef.tk 5 lexem in
-    table { 
-      SF Sg Nom => x + "zięba";
-      SF Sg Gen => x + "zięby";
-      SF Sg Dat => x + "ziębie";
-      SF Sg Acc => x + "ziębę";
-      SF Sg Instr => x + "ziębą";
-      SF Sg Loc => x + "ziębie";
-      SF Sg Voc => x + "ziębo";
-      SF Pl Nom => x + "Ziębowie";
-      SF Pl Gen => x + "Ziębów";
-      SF Pl Dat => x + "ziębom";
-      SF Pl Acc => x + "Ziębów";
-      SF Pl Instr => x + "ziębami";
-      SF Pl Loc => x + "ziębach";
-      SF Pl Voc => x + "Ziębowie"
-    };
-
-    oper mkNTable0914: Str -> SubstForm => Str; --%
-    oper mkNTable0914 lexem = 
-      let x = Predef.tk 5 lexem in
-    table { 
-      SF Sg Nom => x + "Zofia";
-      SF Sg Gen => x + "zofii";
-      SF Sg Dat => x + "zofii";
-      SF Sg Acc => x + "Zofię";
-      SF Sg Instr => x + "Zofią";
-      SF Sg Loc => x + "zofii";
-      SF Sg Voc => x + "Zofio";
-      SF Pl Nom => x + "Zofie";
-      SF Pl Gen => x + "zofij";
-      SF Pl Dat => x + "Zofiom";
-      SF Pl Acc => x + "Zofie";
-      SF Pl Instr => x + "Zofiami";
-      SF Pl Loc => x + "Zofiach";
-      SF Pl Voc => x + "Zofie"
-    };
-
-    oper mkNTable0915: Str -> SubstForm => Str; --%
-    oper mkNTable0915 lexem = 
-      let x = Predef.tk 4 lexem in
-    table { 
-      SF Sg Nom => x + "Zola";
-      SF Sg Gen => x + "zoli";
-      SF Sg Dat => x + "zoli";
-      SF Sg Acc => x + "Zolę";
-      SF Sg Instr => x + "Zolą";
-      SF Sg Loc => x + "zoli";
-      SF Sg Voc => x + "Zolo";
-      SF Pl Nom => x + "Zolowie";
-      SF Pl Gen => x + "zolów";
-      SF Pl Dat => x + "zolom";
-      SF Pl Acc => x + "zolów";
-      SF Pl Instr => x + "zolami";
-      SF Pl Loc => x + "zolach";
-      SF Pl Voc => x + "Zolowie"
-    };
-
-    oper mkNTable0917: Str -> SubstForm => Str; --%
-    oper mkNTable0917 lexem = 
-      let x = Predef.tk 2 lexem in
-    table { 
-      SF Sg Nom => x + "ło";
-      SF Sg Gen => x + "ła";
-      SF Sg Dat => x + "łu";
-      SF Sg Acc => x + "ło";
-      SF Sg Instr => x + "łem";
-      SF Sg Loc => x + "le";
-      SF Sg Voc => x + "ło";
-      SF Pl Nom => x + "ła";
-      SF Pl Gen => x + "eł";
-      SF Pl Dat => x + "łom";
-      SF Pl Acc => x + "ła";
-      SF Pl Instr => x + "łami";
-      SF Pl Loc => x + "łach";
-      SF Pl Voc => x + "ła"
-    };
-
-    oper mkNTable0918: Str -> SubstForm => Str; --%
-    oper mkNTable0918 lexem = 
-      let x = Predef.tk 3 lexem in
-    table { 
-      SF Sg Nom => x + "ier";
-      SF Sg Gen => x + "ra";
-      SF Sg Dat => x + "rowi";
-      SF Sg Acc => x + "ier";
-      SF Sg Instr => x + "rem";
-      SF Sg Loc => x + "rze";
-      SF Sg Voc => x + "rze";
-      SF Pl Nom => x + "ry";
-      SF Pl Gen => x + "rów";
-      SF Pl Dat => x + "rom";
-      SF Pl Acc => x + "ry";
-      SF Pl Instr => x + "rami";
-      SF Pl Loc => x + "rach";
-      SF Pl Voc => x + "ry"
-    };
-
-    oper mkNTable0919: Str -> SubstForm => Str; --%
-    oper mkNTable0919 lexem = 
-      let x = Predef.tk 3 lexem in
-    table { 
-      SF Sg Nom => x + "sta";
-      SF Sg Gen => x + "sty";
-      SF Sg Dat => x + "ście";
-      SF Sg Acc => x + "stę";
-      SF Sg Instr => x + "stą";
-      SF Sg Loc => x + "ście";
-      SF Sg Voc => x + "sto";
-      SF Pl Nom => x + "ści";
-      SF Pl Gen => x + "stów";
-      SF Pl Dat => x + "stom";
-      SF Pl Acc => x + "stów";
-      SF Pl Instr => x + "stami";
-      SF Pl Loc => x + "stach";
-      SF Pl Voc => x + "ści"
-    };
-
-    oper mkNTable0920: Str -> SubstForm => Str; --%
-    oper mkNTable0920 lexem = 
-      let x = Predef.tk 0 lexem in
-    table { 
-      SF Sg Nom => x + "";
-      SF Sg Gen => x + "a";
-      SF Sg Dat => x + "u";
-      SF Sg Acc => x + "a";
-      SF Sg Instr => x + "em";
-      SF Sg Loc => x + "u";
-      SF Sg Voc => x + "ie";
-      SF Pl Nom => x + "owie";
-      SF Pl Gen => x + "ów";
-      SF Pl Dat => x + "om";
-      SF Pl Acc => x + "ów";
-      SF Pl Instr => x + "ami";
-      SF Pl Loc => x + "ach";
-      SF Pl Voc => x + "owie"
-    };
-
-    oper mkNTable0921: Str -> SubstForm => Str; --%
-    oper mkNTable0921 lexem = 
-      let x = Predef.tk 2 lexem in
-    table { 
-      SF Sg Nom => x + "ta";
-      SF Sg Gen => x + "ty";
-      SF Sg Dat => x + "cie";
-      SF Sg Acc => x + "tę";
-      SF Sg Instr => x + "tą";
-      SF Sg Loc => x + "cie";
-      SF Sg Voc => x + "to";
-      SF Pl Nom => x + "ty";
-      SF Pl Gen => x + "tów";
-      SF Pl Dat => x + "tom";
-      SF Pl Acc => x + "ty";
-      SF Pl Instr => x + "tami";
-      SF Pl Loc => x + "tach";
-      SF Pl Voc => x + "ty"
-    };
-
-    oper mkNTable0922: Str -> SubstForm => Str; --%
-    oper mkNTable0922 lexem = 
-      let x = Predef.tk 0 lexem in
-    table { 
-      SF Sg Nom => x + "";
-      SF Sg Gen => x + "a";
-      SF Sg Dat => x + "owi";
-      SF Sg Acc => x + "";
-      SF Sg Instr => x + "em";
-      SF Sg Loc => x + "u";
-      SF Sg Voc => x + "u";
-      SF Pl Nom => x + "e";
-      SF Pl Gen => x + "i";
-      SF Pl Dat => x + "om";
-      SF Pl Acc => x + "e";
-      SF Pl Instr => x + "ami";
-      SF Pl Loc => x + "ach";
-      SF Pl Voc => x + "e"
-    };
-
-    oper mkNTable0923: Str -> SubstForm => Str; --%
-    oper mkNTable0923 lexem = 
-      let x = Predef.tk 2 lexem in
-    table { 
-      SF Sg Nom => x + "ni";
-      SF Sg Gen => x + "ni";
-      SF Sg Dat => x + "ni";
-      SF Sg Acc => x + "nią";
-      SF Sg Instr => x + "nią";
-      SF Sg Loc => x + "ni";
-      SF Sg Voc => x + "ni";
-      SF Pl Nom => x + "nie";
-      SF Pl Gen => x + "ń";
-      SF Pl Dat => x + "niom";
-      SF Pl Acc => x + "nie";
-      SF Pl Instr => x + "niami";
-      SF Pl Loc => x + "niach";
-      SF Pl Voc => x + "nie"
-    };
-
-    oper mkNTable0924: Str -> SubstForm => Str; --%
-    oper mkNTable0924 lexem = 
-      let x = Predef.tk 1 lexem in
-    table { 
-      SF Sg Nom => x + "o";
-      SF Sg Gen => x + "o";
-      SF Sg Dat => x + "u";
-      SF Sg Acc => x + "o";
-      SF Sg Instr => x + "o";
-      SF Sg Loc => x + "u";
-      SF Sg Voc => x + "o";
-      SF Pl Nom => x + "o";
-      SF Pl Gen => x + "ów";
-      SF Pl Dat => x + "om";
-      SF Pl Acc => x + "o";
-      SF Pl Instr => x + "o";
-      SF Pl Loc => x + "o";
-      SF Pl Voc => x + "o"
-    };
-
-    oper mkNTable0925: Str -> SubstForm => Str; --%
-    oper mkNTable0925 lexem = 
-      let x = Predef.tk 0 lexem in
-    table { 
-      SF Sg Nom => x + "";
-      SF Sg Gen => x + "a";
-      SF Sg Dat => x + "owi";
-      SF Sg Acc => x + "";
-      SF Sg Instr => x + "em";
-      SF Sg Loc => x + "zie";
-      SF Sg Voc => x + "zie";
-      SF Pl Nom => x + "y";
-      SF Pl Gen => x + "ów";
-      SF Pl Dat => x + "om";
-      SF Pl Acc => x + "y";
-      SF Pl Instr => x + "ami";
-      SF Pl Loc => x + "ach";
-      SF Pl Voc => x + "y"
-    };
-
-    oper mkNTable0927: Str -> SubstForm => Str; --%
-    oper mkNTable0927 lexem = 
-      let x = Predef.tk 1 lexem in
-    table { 
-      SF Sg Nom => x + "t";
-      SF Sg Gen => x + "ta";
-      SF Sg Dat => x + "towi";
-      SF Sg Acc => x + "t";
-      SF Sg Instr => x + "tem";
-      SF Sg Loc => x + "cie";
-      SF Sg Voc => x + "cie";
-      SF Pl Nom => x + "ty";
-      SF Pl Gen => x + "tów";
-      SF Pl Dat => x + "tom";
-      SF Pl Acc => x + "ty";
-      SF Pl Instr => x + "tami";
-      SF Pl Loc => x + "tach";
-      SF Pl Voc => x + "ty"
-    };
-
-    oper mkNTable0928: Str -> SubstForm => Str; --%
-    oper mkNTable0928 lexem = 
-      let x = Predef.tk 0 lexem in
-    table { 
-      SF Sg Nom => x + "";
-      SF Sg Gen => x + "a";
-      SF Sg Dat => x + "owi";
-      SF Sg Acc => x + "a";
-      SF Sg Instr => x + "em";
-      SF Sg Loc => x + "u";
-      SF Sg Voc => x + "u";
-      SF Pl Nom => x + "e";
-      SF Pl Gen => x + "y";
-      SF Pl Dat => x + "om";
-      SF Pl Acc => x + "y";
-      SF Pl Instr => x + "ami";
-      SF Pl Loc => x + "ach";
-      SF Pl Voc => x + "e"
-    };
-
-    oper mkNTable0929: Str -> SubstForm => Str; --%
-    oper mkNTable0929 lexem = 
-      let x = Predef.tk 1 lexem in
-    table { 
-      SF Sg Nom => x + "a";
-      SF Sg Gen => x + "ej";
-      SF Sg Dat => x + "ej";
-      SF Sg Acc => x + "ą";
-      SF Sg Instr => x + "ą";
-      SF Sg Loc => x + "ej";
-      SF Sg Voc => x + "o";
-      SF Pl Nom => x + "e";
-      SF Pl Gen => x + "ych";
-      SF Pl Dat => x + "ym";
-      SF Pl Acc => x + "e";
-      SF Pl Instr => x + "ymi";
-      SF Pl Loc => x + "ych";
-      SF Pl Voc => x + "e"
-    };
-
-    oper mkNTable0930: Str -> SubstForm => Str; --%
-    oper mkNTable0930 lexem = 
-      let x = Predef.tk 1 lexem in
-    table { 
-      SF Sg Nom => x + "c";
-      SF Sg Gen => x + "cu";
-      SF Sg Dat => x + "cowi";
-      SF Sg Acc => x + "c";
-      SF Sg Instr => x + "kiem";
-      SF Sg Loc => x + "cu";
-      SF Sg Voc => x + "cu";
-      SF Pl Nom => x + "ki";
-      SF Pl Gen => x + "ców";
-      SF Pl Dat => x + "com";
-      SF Pl Acc => x + "ki";
-      SF Pl Instr => x + "cami";
-      SF Pl Loc => x + "cach";
-      SF Pl Voc => x + "ki"
-    };
-
-    oper mkNTable0931: Str -> SubstForm => Str; --%
-    oper mkNTable0931 lexem = 
-      let x = Predef.tk 1 lexem in
-    table { 
-      SF Sg Nom => x + "g";
-      SF Sg Gen => x + "ga";
-      SF Sg Dat => x + "gowi";
-      SF Sg Acc => x + "ga";
-      SF Sg Instr => x + "giem";
-      SF Sg Loc => x + "gu";
-      SF Sg Voc => x + "gu";
-      SF Pl Nom => x + "dzy";
-      SF Pl Gen => x + "gów";
-      SF Pl Dat => x + "gom";
-      SF Pl Acc => x + "gów";
-      SF Pl Instr => x + "gami";
-      SF Pl Loc => x + "gach";
-      SF Pl Voc => x + "dzy"
-    };
-
-    oper mkNTable0934: Str -> SubstForm => Str; --%
-    oper mkNTable0934 lexem = 
-      let x = Predef.tk 1 lexem in
-    table { 
-      SF Sg Nom => x + "o";
-      SF Sg Gen => x + "a";
-      SF Sg Dat => x + "u";
-      SF Sg Acc => x + "o";
-      SF Sg Instr => x + "em";
-      SF Sg Loc => x + "u";
-      SF Sg Voc => x + "o";
-      SF Pl Nom => x + "a";
-      SF Pl Gen => x + "ów";
-      SF Pl Dat => x + "om";
-      SF Pl Acc => x + "a";
-      SF Pl Instr => x + "ami";
-      SF Pl Loc => x + "ach";
-      SF Pl Voc => x + "a"
-    };
-
-    oper mkNTable0935: Str -> SubstForm => Str; --%
-    oper mkNTable0935 lexem = 
-      let x = Predef.tk 2 lexem in
-    table { 
-      SF Sg Nom => x + "st";
-      SF Sg Gen => x + "stu";
-      SF Sg Dat => x + "stowi";
-      SF Sg Acc => x + "st";
-      SF Sg Instr => x + "stem";
-      SF Sg Loc => x + "ście";
-      SF Sg Voc => x + "ście";
-      SF Pl Nom => x + "sty";
-      SF Pl Gen => x + "stów";
-      SF Pl Dat => x + "stom";
-      SF Pl Acc => x + "sty";
-      SF Pl Instr => x + "stami";
-      SF Pl Loc => x + "stach";
-      SF Pl Voc => x + "sty"
-    };
-
-    oper mkNTable0936: Str -> SubstForm => Str; --%
-    oper mkNTable0936 lexem = 
-      let x = Predef.tk 2 lexem in
-    table { 
-      SF Sg Nom => x + "to";
-      SF Sg Gen => x + "ta";
-      SF Sg Dat => x + "tu";
-      SF Sg Acc => x + "to";
-      SF Sg Instr => x + "tem";
-      SF Sg Loc => x + "cie";
-      SF Sg Voc => x + "to";
-      SF Pl Nom => x + "ta";
-      SF Pl Gen => x + "t";
-      SF Pl Dat => x + "tom";
-      SF Pl Acc => x + "ta";
-      SF Pl Instr => x + "tami";
-      SF Pl Loc => x + "tach";
-      SF Pl Voc => x + "ta"
-    };
-
-    oper mkNTable0937: Str -> SubstForm => Str; --%
-    oper mkNTable0937 lexem = 
-      let x = Predef.tk 2 lexem in
-    table { 
-      SF Sg Nom => x + "ek";
-      SF Sg Gen => x + "ka";
-      SF Sg Dat => x + "kowi";
-      SF Sg Acc => x + "ka";
-      SF Sg Instr => x + "kiem";
-      SF Sg Loc => x + "ku";
-      SF Sg Voc => x + "ku";
-      SF Pl Nom => x + "ki";
-      SF Pl Gen => x + "ków";
-      SF Pl Dat => x + "kom";
-      SF Pl Acc => x + "ki";
-      SF Pl Instr => x + "kami";
-      SF Pl Loc => x + "kach";
-      SF Pl Voc => x + "ki"
-    };
-
-    oper mkNTable0938: Str -> SubstForm => Str; --%
-    oper mkNTable0938 lexem = 
-      let x = Predef.tk 2 lexem in
-    table { 
-      SF Sg Nom => x + "el";
-      SF Sg Gen => x + "la";
-      SF Sg Dat => x + "lowi";
-      SF Sg Acc => x + "el";
-      SF Sg Instr => x + "lem";
-      SF Sg Loc => x + "lu";
-      SF Sg Voc => x + "lu";
-      SF Pl Nom => x + "le";
-      SF Pl Gen => x + "li";
-      SF Pl Dat => x + "lom";
-      SF Pl Acc => x + "le";
-      SF Pl Instr => x + "lami";
-      SF Pl Loc => x + "lach";
-      SF Pl Voc => x + "le"
-    };
-
-    oper mkNTable0939: Str -> SubstForm => Str; --%
-    oper mkNTable0939 lexem = 
-      let x = Predef.tk 0 lexem in
-    table { 
-      SF Sg Nom => x + "";
-      SF Sg Gen => x + "a";
-      SF Sg Dat => x + "owi";
-      SF Sg Acc => x + "a";
-      SF Sg Instr => x + "em";
-      SF Sg Loc => x + "u";
-      SF Sg Voc => x + "u";
-      SF Pl Nom => x + "e";
-      SF Pl Gen => x + "i";
-      SF Pl Dat => x + "om";
-      SF Pl Acc => x + "e";
-      SF Pl Instr => x + "ami";
-      SF Pl Loc => x + "ach";
-      SF Pl Voc => x + "e"
-    };
-
-    oper mkNTable0941: Str -> SubstForm => Str; --%
-    oper mkNTable0941 lexem = 
-      let x = Predef.tk 2 lexem in
-    table { 
-      SF Sg Nom => x + "er";
-      SF Sg Gen => x + "ru";
-      SF Sg Dat => x + "rowi";
-      SF Sg Acc => x + "er";
-      SF Sg Instr => x + "rem";
-      SF Sg Loc => x + "rze";
-      SF Sg Voc => x + "rze";
-      SF Pl Nom => x + "ry";
-      SF Pl Gen => x + "rów";
-      SF Pl Dat => x + "rom";
-      SF Pl Acc => x + "ry";
-      SF Pl Instr => x + "rami";
-      SF Pl Loc => x + "rach";
-      SF Pl Voc => x + "ry"
-    };
-
-    oper mkNTable0942: Str -> SubstForm => Str; --%
-    oper mkNTable0942 lexem = 
-      let x = Predef.tk 0 lexem in
-    table { 
-      SF Sg Nom => x + "";
-      SF Sg Gen => x + "u";
-      SF Sg Dat => x + "owi";
-      SF Sg Acc => x + "";
-      SF Sg Instr => x + "em";
-      SF Sg Loc => x + "ie";
-      SF Sg Voc => x + "ie";
-      SF Pl Nom => x + "e";
-      SF Pl Gen => x + "ów";
-      SF Pl Dat => x + "om";
-      SF Pl Acc => x + "e";
-      SF Pl Instr => x + "ami";
-      SF Pl Loc => x + "ach";
-      SF Pl Voc => x + "e"
-    };
-
-    oper mkNTable0943: Str -> SubstForm => Str; --%
-    oper mkNTable0943 lexem = 
-      let x = Predef.tk 0 lexem in
-    table { 
-      SF Sg Nom => x + "";
-      SF Sg Gen => x + "u";
-      SF Sg Dat => x + "owi";
-      SF Sg Acc => x + "";
-      SF Sg Instr => x + "em";
-      SF Sg Loc => x + "ie";
-      SF Sg Voc => x + "ie";
-      SF Pl Nom => x + "y";
-      SF Pl Gen => x + "y";
-      SF Pl Dat => x + "om";
-      SF Pl Acc => x + "y";
-      SF Pl Instr => x + "ami";
-      SF Pl Loc => x + "ach";
-      SF Pl Voc => x + "y"
-    };
-
-    oper mkNTable0944: Str -> SubstForm => Str; --%
-    oper mkNTable0944 lexem = 
-      let x = Predef.tk 0 lexem in
-    table { 
-      SF Sg Nom => x + "";
-      SF Sg Gen => x + "a";
-      SF Sg Dat => x + "owi";
-      SF Sg Acc => x + "a";
-      SF Sg Instr => x + "em";
-      SF Sg Loc => x + "zie";
-      SF Sg Voc => x + "zie";
-      SF Pl Nom => x + "zi";
-      SF Pl Gen => x + "ów";
-      SF Pl Dat => x + "om";
-      SF Pl Acc => x + "ów";
-      SF Pl Instr => x + "ami";
-      SF Pl Loc => x + "ach";
-      SF Pl Voc => x + "zi"
-    };
-
-    oper mkNTable0945: Str -> SubstForm => Str; --%
-    oper mkNTable0945 lexem = 
-      let x = Predef.tk 3 lexem in
-    table { 
-      SF Sg Nom => x + "owa";
-      SF Sg Gen => x + "owy";
-      SF Sg Dat => x + "owie";
-      SF Sg Acc => x + "owę";
-      SF Sg Instr => x + "ową";
-      SF Sg Loc => x + "owie";
-      SF Sg Voc => x + "owo";
-      SF Pl Nom => x + "owy";
-      SF Pl Gen => x + "ów";
-      SF Pl Dat => x + "owom";
-      SF Pl Acc => x + "owy";
-      SF Pl Instr => x + "owami";
-      SF Pl Loc => x + "owach";
-      SF Pl Voc => x + "owy"
-    };
-
-    oper mkNTable0946: Str -> SubstForm => Str; --%
-    oper mkNTable0946 lexem = 
-      let x = Predef.tk 1 lexem in
-    table { 
-      SF Sg Nom => x + "o";
-      SF Sg Gen => x + "a";
-      SF Sg Dat => x + "u";
-      SF Sg Acc => x + "o";
-      SF Sg Instr => x + "em";
-      SF Sg Loc => x + "ze";
-      SF Sg Voc => x + "o";
-      SF Pl Nom => x + "a";
-      SF Pl Gen => x + "";
-      SF Pl Dat => x + "om";
-      SF Pl Acc => x + "a";
-      SF Pl Instr => x + "ami";
-      SF Pl Loc => x + "ach";
-      SF Pl Voc => x + "a"
-    };
-
-    oper mkNTable0947: Str -> SubstForm => Str; --%
-    oper mkNTable0947 lexem = 
-      let x = Predef.tk 0 lexem in
-    table { 
-      SF Sg Nom => x + "";
-      SF Sg Gen => x + "a";
-      SF Sg Dat => x + "owi";
-      SF Sg Acc => x + "a";
-      SF Sg Instr => x + "em";
-      SF Sg Loc => x + "zie";
-      SF Sg Voc => x + "zie";
-      SF Pl Nom => x + "y";
-      SF Pl Gen => x + "ów";
-      SF Pl Dat => x + "om";
-      SF Pl Acc => x + "y";
-      SF Pl Instr => x + "ami";
-      SF Pl Loc => x + "ach";
-      SF Pl Voc => x + "y"
-    };
-
-    oper mkNTable0948: Str -> SubstForm => Str; --%
-    oper mkNTable0948 lexem = 
-      let x = Predef.tk 3 lexem in
-    table { 
-      SF Sg Nom => x + "iec";
-      SF Sg Gen => x + "ca";
-      SF Sg Dat => x + "cowi";
-      SF Sg Acc => x + "ca";
-      SF Sg Instr => x + "cem";
-      SF Sg Loc => x + "cu";
-      SF Sg Voc => x + "cu";
-      SF Pl Nom => x + "ce";
-      SF Pl Gen => x + "ców";
-      SF Pl Dat => x + "com";
-      SF Pl Acc => x + "ce";
-      SF Pl Instr => x + "cami";
-      SF Pl Loc => x + "cach";
-      SF Pl Voc => x + "ce"
-    };
-
-    oper mkNTable0949: Str -> SubstForm => Str; --%
-    oper mkNTable0949 lexem = 
-      let x = Predef.tk 3 lexem in
-    table { 
-      SF Sg Nom => x + "ier";
-      SF Sg Gen => x + "ru";
-      SF Sg Dat => x + "rowi";
-      SF Sg Acc => x + "ier";
-      SF Sg Instr => x + "rem";
-      SF Sg Loc => x + "rze";
-      SF Sg Voc => x + "rze";
-      SF Pl Nom => x + "ry";
-      SF Pl Gen => x + "rów";
-      SF Pl Dat => x + "rom";
-      SF Pl Acc => x + "ry";
-      SF Pl Instr => x + "rami";
-      SF Pl Loc => x + "rach";
-      SF Pl Voc => x + "ry"
-    };
-
-    oper mkNTable0950: Str -> SubstForm => Str; --%
-    oper mkNTable0950 lexem = 
-      let x = Predef.tk 2 lexem in
-    table { 
-      SF Sg Nom => x + "ój";
-      SF Sg Gen => x + "oju";
-      SF Sg Dat => x + "ojowi";
-      SF Sg Acc => x + "ój";
-      SF Sg Instr => x + "ojem";
-      SF Sg Loc => x + "oju";
-      SF Sg Voc => x + "oju";
-      SF Pl Nom => x + "oje";
-      SF Pl Gen => x + "ojów";
-      SF Pl Dat => x + "ojom";
-      SF Pl Acc => x + "oje";
-      SF Pl Instr => x + "ojami";
-      SF Pl Loc => x + "ojach";
-      SF Pl Voc => x + "oje"
-    };
-
-    oper mkNTable0951: Str -> SubstForm => Str; --%
-    oper mkNTable0951 lexem = 
-      let x = Predef.tk 3 lexem in
-    table { 
-      SF Sg Nom => x + "nia";
-      SF Sg Gen => x + "ni";
-      SF Sg Dat => x + "ni";
-      SF Sg Acc => x + "nię";
-      SF Sg Instr => x + "nią";
-      SF Sg Loc => x + "ni";
-      SF Sg Voc => x + "nio";
-      SF Pl Nom => x + "nie";
-      SF Pl Gen => x + "ń";
-      SF Pl Dat => x + "niom";
-      SF Pl Acc => x + "nie";
-      SF Pl Instr => x + "niami";
-      SF Pl Loc => x + "niach";
-      SF Pl Voc => x + "nie"
-    };
-
-    oper mkNTable0952: Str -> SubstForm => Str; --%
-    oper mkNTable0952 lexem = 
-      let x = Predef.tk 1 lexem in
-    table { 
-      SF Sg Nom => x + "e";
-      SF Sg Gen => x + "e";
-      SF Sg Dat => x + "u";
-      SF Sg Acc => x + "e";
-      SF Sg Instr => x + "em";
-      SF Sg Loc => x + "e";
-      SF Sg Voc => x + "e";
-      SF Pl Nom => x + "e";
-      SF Pl Gen => x + "e";
-      SF Pl Dat => x + "om";
-      SF Pl Acc => x + "e";
-      SF Pl Instr => x + "e";
-      SF Pl Loc => x + "e";
-      SF Pl Voc => x + "e"
-    };
-
-    oper mkNTable0953: Str -> SubstForm => Str; --%
-    oper mkNTable0953 lexem = 
-      let x = Predef.tk 1 lexem in
-    table { 
-      SF Sg Nom => x + "a";
-      SF Sg Gen => x + "y";
-      SF Sg Dat => x + "ze";
-      SF Sg Acc => x + "ę";
-      SF Sg Instr => x + "ą";
-      SF Sg Loc => x + "ze";
-      SF Sg Voc => x + "o";
-      SF Pl Nom => x + "y";
-      SF Pl Gen => x + "ów";
-      SF Pl Dat => x + "om";
-      SF Pl Acc => x + "y";
-      SF Pl Instr => x + "ami";
-      SF Pl Loc => x + "ach";
-      SF Pl Voc => x + "y"
-    };
-
-    oper mkNTable0954: Str -> SubstForm => Str; --%
-    oper mkNTable0954 lexem = 
-      let x = Predef.tk 2 lexem in
-    table { 
-      SF Sg Nom => x + "oł";
-      SF Sg Gen => x + "oła";
-      SF Sg Dat => x + "ołowi";
-      SF Sg Acc => x + "oła";
-      SF Sg Instr => x + "ołem";
-      SF Sg Loc => x + "ele";
-      SF Sg Voc => x + "ele";
-      SF Pl Nom => x + "oły";
-      SF Pl Gen => x + "ołów";
-      SF Pl Dat => x + "ołom";
-      SF Pl Acc => x + "oły";
-      SF Pl Instr => x + "ołami";
-      SF Pl Loc => x + "ołach";
-      SF Pl Voc => x + "oły"
-    };
-
-    oper mkNTable0955: Str -> SubstForm => Str; --%
-    oper mkNTable0955 lexem = 
-      let x = Predef.tk 3 lexem in
-    table { 
-      SF Sg Nom => x + "sta";
-      SF Sg Gen => x + "sty";
-      SF Sg Dat => x + "ście";
-      SF Sg Acc => x + "stę";
-      SF Sg Instr => x + "stą";
-      SF Sg Loc => x + "ście";
-      SF Sg Voc => x + "sto";
-      SF Pl Nom => x + "sty";
-      SF Pl Gen => x + "stów";
-      SF Pl Dat => x + "stom";
-      SF Pl Acc => x + "sty";
-      SF Pl Instr => x + "stami";
-      SF Pl Loc => x + "stach";
-      SF Pl Voc => x + "sty"
-    };
-
-    oper mkNTable0956: Str -> SubstForm => Str; --%
-    oper mkNTable0956 lexem = 
-      let x = Predef.tk 1 lexem in
-    table { 
-      SF Sg Nom => x + "ł";
-      SF Sg Gen => x + "ła";
-      SF Sg Dat => x + "łowi";
-      SF Sg Acc => x + "ł";
-      SF Sg Instr => x + "łem";
-      SF Sg Loc => x + "le";
-      SF Sg Voc => x + "le";
-      SF Pl Nom => x + "ły";
-      SF Pl Gen => x + "łów";
-      SF Pl Dat => x + "łom";
-      SF Pl Acc => x + "ły";
-      SF Pl Instr => x + "łami";
-      SF Pl Loc => x + "łach";
-      SF Pl Voc => x + "ły"
-    };
-
-    oper mkNTable0957: Str -> SubstForm => Str; --%
-    oper mkNTable0957 lexem = 
-      let x = Predef.tk 4 lexem in
-    table { 
-      SF Sg Nom => x + "ziec";
-      SF Sg Gen => x + "źca";
-      SF Sg Dat => x + "źcowi";
-      SF Sg Acc => x + "ziec";
-      SF Sg Instr => x + "źcem";
-      SF Sg Loc => x + "źcu";
-      SF Sg Voc => x + "źcu";
-      SF Pl Nom => x + "źce";
-      SF Pl Gen => x + "źców";
-      SF Pl Dat => x + "źcom";
-      SF Pl Acc => x + "źce";
-      SF Pl Instr => x + "źcami";
-      SF Pl Loc => x + "źcach";
-      SF Pl Voc => x + "źce"
-    };
-
-    oper mkNTable0958: Str -> SubstForm => Str; --%
-    oper mkNTable0958 lexem = 
-      let x = Predef.tk 3 lexem in
-    table { 
-      SF Sg Nom => x + "ało";
-      SF Sg Gen => x + "ała";
-      SF Sg Dat => x + "ału";
-      SF Sg Acc => x + "ało";
-      SF Sg Instr => x + "ałem";
-      SF Sg Loc => x + "ele";
-      SF Sg Voc => x + "ało";
-      SF Pl Nom => x + "ała";
-      SF Pl Gen => x + "ał";
-      SF Pl Dat => x + "ałom";
-      SF Pl Acc => x + "ała";
-      SF Pl Instr => x + "ałami";
-      SF Pl Loc => x + "ałach";
-      SF Pl Voc => x + "ała"
-    };
-
-    oper mkNTable0959: Str -> SubstForm => Str; --%
-    oper mkNTable0959 lexem = 
-      let x = Predef.tk 2 lexem in
-    table { 
-      SF Sg Nom => x + "ro";
-      SF Sg Gen => x + "ra";
-      SF Sg Dat => x + "ru";
-      SF Sg Acc => x + "ro";
-      SF Sg Instr => x + "rem";
-      SF Sg Loc => x + "rze";
-      SF Sg Voc => x + "ro";
-      SF Pl Nom => x + "ra";
-      SF Pl Gen => x + "er";
-      SF Pl Dat => x + "rom";
-      SF Pl Acc => x + "ra";
-      SF Pl Instr => x + "rami";
-      SF Pl Loc => x + "rach";
-      SF Pl Voc => x + "ra"
-    };
-
-    oper mkNTable0960: Str -> SubstForm => Str; --%
-    oper mkNTable0960 lexem = 
-      let x = Predef.tk 3 lexem in
-    table { 
-      SF Sg Nom => x + "oza";
-      SF Sg Gen => x + "ozy";
-      SF Sg Dat => x + "ozie";
-      SF Sg Acc => x + "ozę";
-      SF Sg Instr => x + "ozą";
-      SF Sg Loc => x + "ozie";
-      SF Sg Voc => x + "ozo";
-      SF Pl Nom => x + "ozy";
-      SF Pl Gen => x + "óz";
-      SF Pl Dat => x + "ozom";
-      SF Pl Acc => x + "ozy";
-      SF Pl Instr => x + "ozami";
-      SF Pl Loc => x + "ozach";
-      SF Pl Voc => x + "ozy"
-    };
-
-    oper mkNTable0961: Str -> SubstForm => Str; --%
-    oper mkNTable0961 lexem = 
-      let x = Predef.tk 0 lexem in
-    table { 
-      SF Sg Nom => x + "";
-      SF Sg Gen => x + "u";
-      SF Sg Dat => x + "owi";
-      SF Sg Acc => x + "";
-      SF Sg Instr => x + "em";
-      SF Sg Loc => x + "u";
-      SF Sg Voc => x + "u";
-      SF Pl Nom => x + "e";
-      SF Pl Gen => x + "y";
-      SF Pl Dat => x + "om";
-      SF Pl Acc => x + "e";
-      SF Pl Instr => x + "ami";
-      SF Pl Loc => x + "ach";
-      SF Pl Voc => x + "e"
-    };
-
-    oper mkNTable0963: Str -> SubstForm => Str; --%
-    oper mkNTable0963 lexem = 
-      let x = Predef.tk 1 lexem in
-    table { 
-      SF Sg Nom => x + "o";
-      SF Sg Gen => x + "a";
-      SF Sg Dat => x + "owi";
-      SF Sg Acc => x + "a";
-      SF Sg Instr => x + "em";
-      SF Sg Loc => x + "u";
-      SF Sg Voc => x + "u";
-      SF Pl Nom => x + "e";
-      SF Pl Gen => x + "ów";
-      SF Pl Dat => x + "om";
-      SF Pl Acc => x + "e";
-      SF Pl Instr => x + "ami";
-      SF Pl Loc => x + "ach";
-      SF Pl Voc => x + "e"
-    };
-
-    oper mkNTable0964: Str -> SubstForm => Str; --%
-    oper mkNTable0964 lexem = 
-      let x = Predef.tk 0 lexem in
-    table { 
-      SF Sg Nom => x + "";
-      SF Sg Gen => x + "u";
-      SF Sg Dat => x + "owi";
-      SF Sg Acc => x + "";
-      SF Sg Instr => x + "em";
-      SF Sg Loc => x + "";
-      SF Sg Voc => x + "";
-      SF Pl Nom => x + "y";
-      SF Pl Gen => x + "ów";
-      SF Pl Dat => x + "om";
-      SF Pl Acc => x + "y";
-      SF Pl Instr => x + "ami";
-      SF Pl Loc => x + "ach";
-      SF Pl Voc => x + "y"
-    };
-
-    oper mkNTable0965: Str -> SubstForm => Str; --%
-    oper mkNTable0965 lexem = 
-      let x = Predef.tk 2 lexem in
-    table { 
-      SF Sg Nom => x + "er";
-      SF Sg Gen => x + "ra";
-      SF Sg Dat => x + "rowi";
-      SF Sg Acc => x + "ra";
-      SF Sg Instr => x + "rem";
-      SF Sg Loc => x + "rze";
-      SF Sg Voc => x + "rze";
-      SF Pl Nom => x + "rzy";
-      SF Pl Gen => x + "rów";
-      SF Pl Dat => x + "rom";
-      SF Pl Acc => x + "rów";
-      SF Pl Instr => x + "rami";
-      SF Pl Loc => x + "rach";
-      SF Pl Voc => x + "rzy"
-    };
-
-    oper mkNTable0966: Str -> SubstForm => Str; --%
-    oper mkNTable0966 lexem = 
-      let x = Predef.tk 2 lexem in
-    table { 
-      SF Sg Nom => x + "ło";
-      SF Sg Gen => x + "ła";
-      SF Sg Dat => x + "łu";
-      SF Sg Acc => x + "ło";
-      SF Sg Instr => x + "łem";
-      SF Sg Loc => x + "le";
-      SF Sg Voc => x + "ło";
-      SF Pl Nom => x + "ła";
-      SF Pl Gen => x + "ł";
-      SF Pl Dat => x + "łom";
-      SF Pl Acc => x + "ła";
-      SF Pl Instr => x + "łami";
-      SF Pl Loc => x + "łach";
-      SF Pl Voc => x + "ła"
-    };
-
-    oper mkNTable0967: Str -> SubstForm => Str; --%
-    oper mkNTable0967 lexem = 
-      let x = Predef.tk 3 lexem in
-    table { 
-      SF Sg Nom => x + "iel";
-      SF Sg Gen => x + "lu";
-      SF Sg Dat => x + "lowi";
-      SF Sg Acc => x + "iel";
-      SF Sg Instr => x + "lem";
-      SF Sg Loc => x + "lu";
-      SF Sg Voc => x + "lu";
-      SF Pl Nom => x + "le";
-      SF Pl Gen => x + "lów";
-      SF Pl Dat => x + "lom";
-      SF Pl Acc => x + "le";
-      SF Pl Instr => x + "lami";
-      SF Pl Loc => x + "lach";
-      SF Pl Voc => x + "le"
-    };
-
-    oper mkNTable0968: Str -> SubstForm => Str; --%
-    oper mkNTable0968 lexem = 
-      let x = Predef.tk 3 lexem in
-    table { 
-      SF Sg Nom => x + "ążę";
-      SF Sg Gen => x + "ęcia";
-      SF Sg Dat => x + "ęciu";
-      SF Sg Acc => x + "ęcia";
-      SF Sg Instr => x + "ęciem";
-      SF Sg Loc => x + "ęciu";
-      SF Sg Voc => x + "ążę";
-      SF Pl Nom => x + "ążęta";
-      SF Pl Gen => x + "ążąt";
-      SF Pl Dat => x + "ążętom";
-      SF Pl Acc => x + "ążąt";
-      SF Pl Instr => x + "ążętami";
-      SF Pl Loc => x + "ążętach";
-      SF Pl Voc => x + "ążęta"
-    };
-
-    oper mkNTable0969: Str -> SubstForm => Str; --%
-    oper mkNTable0969 lexem = 
-      let x = Predef.tk 1 lexem in
-    table { 
-      SF Sg Nom => x + "a";
-      SF Sg Gen => x + "y";
-      SF Sg Dat => x + "ie";
-      SF Sg Acc => x + "ę";
-      SF Sg Instr => x + "ą";
-      SF Sg Loc => x + "ie";
-      SF Sg Voc => x + "o";
-      SF Pl Nom => x + "y";
-      SF Pl Gen => x + "ych";
-      SF Pl Dat => x + "ym";
-      SF Pl Acc => x + "y";
-      SF Pl Instr => x + "ymi";
-      SF Pl Loc => x + "ych";
-      SF Pl Voc => x + "y"
-    };
-
-    oper mkNTable0970: Str -> SubstForm => Str; --%
-    oper mkNTable0970 lexem = 
-      let x = Predef.tk 2 lexem in
-    table { 
-      SF Sg Nom => x + "ni";
-      SF Sg Gen => x + "ni";
-      SF Sg Dat => x + "ni";
-      SF Sg Acc => x + "nię";
-      SF Sg Instr => x + "nią";
-      SF Sg Loc => x + "ni";
-      SF Sg Voc => x + "ni";
-      SF Pl Nom => x + "nie";
-      SF Pl Gen => x + "ń";
-      SF Pl Dat => x + "niom";
-      SF Pl Acc => x + "nie";
-      SF Pl Instr => x + "niami";
-      SF Pl Loc => x + "niach";
-      SF Pl Voc => x + "nie"
-    };
-
-    oper mkNTable0971: Str -> SubstForm => Str; --%
-    oper mkNTable0971 lexem = 
-      let x = Predef.tk 2 lexem in
-    table { 
-      SF Sg Nom => x + "er";
-      SF Sg Gen => x + "ra";
-      SF Sg Dat => x + "rowi";
-      SF Sg Acc => x + "ra";
-      SF Sg Instr => x + "rem";
-      SF Sg Loc => x + "rze";
-      SF Sg Voc => x + "rze";
-      SF Pl Nom => x + "ry";
-      SF Pl Gen => x + "rów";
-      SF Pl Dat => x + "rom";
-      SF Pl Acc => x + "ry";
-      SF Pl Instr => x + "rami";
-      SF Pl Loc => x + "rach";
-      SF Pl Voc => x + "ry"
-    };
-
-    oper mkNTable0972: Str -> SubstForm => Str; --%
-    oper mkNTable0972 lexem = 
-      let x = Predef.tk 2 lexem in
-    table { 
-      SF Sg Nom => x + "st";
-      SF Sg Gen => x + "sta";
-      SF Sg Dat => x + "stowi";
-      SF Sg Acc => x + "st";
-      SF Sg Instr => x + "stem";
-      SF Sg Loc => x + "ście";
-      SF Sg Voc => x + "ście";
-      SF Pl Nom => x + "sty";
-      SF Pl Gen => x + "stów";
-      SF Pl Dat => x + "stom";
-      SF Pl Acc => x + "sty";
-      SF Pl Instr => x + "stami";
-      SF Pl Loc => x + "stach";
-      SF Pl Voc => x + "sty"
-    };
-
-    oper mkNTable0973: Str -> SubstForm => Str; --%
-    oper mkNTable0973 lexem = 
-      let x = Predef.tk 0 lexem in
-    table { 
-      SF Sg Nom => x + "";
-      SF Sg Gen => x + "y";
-      SF Sg Dat => x + "y";
-      SF Sg Acc => x + "";
-      SF Sg Instr => x + "ą";
-      SF Sg Loc => x + "y";
-      SF Sg Voc => x + "y";
-      SF Pl Nom => x + "e";
-      SF Pl Gen => x + "y";
-      SF Pl Dat => x + "om";
-      SF Pl Acc => x + "e";
-      SF Pl Instr => x + "ami";
-      SF Pl Loc => x + "ach";
-      SF Pl Voc => x + "e"
-    };
-
-    oper mkNTable0974: Str -> SubstForm => Str; --%
-    oper mkNTable0974 lexem = 
-      let x = Predef.tk 7 lexem in
-    table { 
-      SF Sg Nom => x + "autosan";
-      SF Sg Gen => x + "Autosanu";
-      SF Sg Dat => x + "autosanowi";
-      SF Sg Acc => x + "autosan";
-      SF Sg Instr => x + "autosanem";
-      SF Sg Loc => x + "autosanie";
-      SF Sg Voc => x + "autosanie";
-      SF Pl Nom => x + "autosany";
-      SF Pl Gen => x + "autosanów";
-      SF Pl Dat => x + "autosanom";
-      SF Pl Acc => x + "autosany";
-      SF Pl Instr => x + "autosanami";
-      SF Pl Loc => x + "autosanach";
-      SF Pl Voc => x + "autosany"
-    };
-
-    oper mkNTable0975: Str -> SubstForm => Str; --%
-    oper mkNTable0975 lexem = 
-      let x = Predef.tk 0 lexem in
-    table { 
-      SF Sg Nom => x + "";
-      SF Sg Gen => x + "a";
-      SF Sg Dat => x + "owi";
-      SF Sg Acc => x + "a";
-      SF Sg Instr => x + "em";
-      SF Sg Loc => x + "u";
-      SF Sg Voc => x + "u";
-      SF Pl Nom => x + "e";
-      SF Pl Gen => x + "y";
-      SF Pl Dat => x + "om";
-      SF Pl Acc => x + "e";
-      SF Pl Instr => x + "ami";
-      SF Pl Loc => x + "ach";
-      SF Pl Voc => x + "e"
-    };
-
-    oper mkNTable0976: Str -> SubstForm => Str; --%
-    oper mkNTable0976 lexem = 
-      let x = Predef.tk 1 lexem in
-    table { 
-      SF Sg Nom => x + "e";
-      SF Sg Gen => x + "a";
-      SF Sg Dat => x + "u";
-      SF Sg Acc => x + "e";
-      SF Sg Instr => x + "em";
-      SF Sg Loc => x + "u";
-      SF Sg Voc => x + "e";
-      SF Pl Nom => x + "a";
-      SF Pl Gen => x + "";
-      SF Pl Dat => x + "om";
-      SF Pl Acc => x + "a";
-      SF Pl Instr => x + "ami";
-      SF Pl Loc => x + "ach";
-      SF Pl Voc => x + "a"
-    };
-
-    oper mkNTable0977: Str -> SubstForm => Str; --%
-    oper mkNTable0977 lexem = 
-      let x = Predef.tk 1 lexem in
-    table { 
-      SF Sg Nom => x + "e";
-      SF Sg Gen => x + "ego";
-      SF Sg Dat => x + "emu";
-      SF Sg Acc => x + "e";
-      SF Sg Instr => x + "ym";
-      SF Sg Loc => x + "ym";
-      SF Sg Voc => x + "e";
-      SF Pl Nom => x + "e";
-      SF Pl Gen => x + "ych";
-      SF Pl Dat => x + "ym";
-      SF Pl Acc => x + "e";
-      SF Pl Instr => x + "ymi";
-      SF Pl Loc => x + "ych";
-      SF Pl Voc => x + "e"
-    };
-
-    oper mkNTable0978: Str -> SubstForm => Str; --%
-    oper mkNTable0978 lexem = 
-      let x = Predef.tk 2 lexem in
-    table { 
-      SF Sg Nom => x + "no";
-      SF Sg Gen => x + "na";
-      SF Sg Dat => x + "nu";
-      SF Sg Acc => x + "no";
-      SF Sg Instr => x + "nem";
-      SF Sg Loc => x + "nie";
-      SF Sg Voc => x + "no";
-      SF Pl Nom => x + "na";
-      SF Pl Gen => x + "ien";
-      SF Pl Dat => x + "nom";
-      SF Pl Acc => x + "na";
-      SF Pl Instr => x + "nami";
-      SF Pl Loc => x + "nach";
-      SF Pl Voc => x + "na"
-    };
-
-    oper mkNTable0979: Str -> SubstForm => Str; --%
-    oper mkNTable0979 lexem = 
-      let x = Predef.tk 3 lexem in
-    table { 
-      SF Sg Nom => x + "iel";
-      SF Sg Gen => x + "la";
-      SF Sg Dat => x + "lowi";
-      SF Sg Acc => x + "iel";
-      SF Sg Instr => x + "lem";
-      SF Sg Loc => x + "lu";
-      SF Sg Voc => x + "lu";
-      SF Pl Nom => x + "le";
-      SF Pl Gen => x + "lów";
-      SF Pl Dat => x + "lom";
-      SF Pl Acc => x + "le";
-      SF Pl Instr => x + "lami";
-      SF Pl Loc => x + "lach";
-      SF Pl Voc => x + "le"
-    };
-
-    oper mkNTable0980: Str -> SubstForm => Str; --%
-    oper mkNTable0980 lexem = 
-      let x = Predef.tk 7 lexem in
-    table { 
-      SF Sg Nom => x + "bajorek";
-      SF Sg Gen => x + "bajorka";
-      SF Sg Dat => x + "Bajorkowi";
-      SF Sg Acc => x + "bajorek";
-      SF Sg Instr => x + "bajorkiem";
-      SF Sg Loc => x + "bajorku";
-      SF Sg Voc => x + "bajorku";
-      SF Pl Nom => x + "Bajorki";
-      SF Pl Gen => x + "Bajorków";
-      SF Pl Dat => x + "bajorkom";
-      SF Pl Acc => x + "Bajorki";
-      SF Pl Instr => x + "bajorkami";
-      SF Pl Loc => x + "bajorkach";
-      SF Pl Voc => x + "Bajorki"
-    };
-
-    oper mkNTable0981: Str -> SubstForm => Str; --%
-    oper mkNTable0981 lexem = 
-      let x = Predef.tk 2 lexem in
-    table { 
-      SF Sg Nom => x + "el";
-      SF Sg Gen => x + "lu";
-      SF Sg Dat => x + "lowi";
-      SF Sg Acc => x + "el";
-      SF Sg Instr => x + "lem";
-      SF Sg Loc => x + "lu";
-      SF Sg Voc => x + "lu";
-      SF Pl Nom => x + "le";
-      SF Pl Gen => x + "li";
-      SF Pl Dat => x + "lom";
-      SF Pl Acc => x + "le";
-      SF Pl Instr => x + "lami";
-      SF Pl Loc => x + "lach";
-      SF Pl Voc => x + "le"
-    };
-
-    oper mkNTable0982: Str -> SubstForm => Str; --%
-    oper mkNTable0982 lexem = 
-      let x = Predef.tk 2 lexem in
-    table { 
-      SF Sg Nom => x + "at";
-      SF Sg Gen => x + "atu";
-      SF Sg Dat => x + "atowi";
-      SF Sg Acc => x + "at";
-      SF Sg Instr => x + "atem";
-      SF Sg Loc => x + "ecie";
-      SF Sg Voc => x + "ecie";
-      SF Pl Nom => x + "aty";
-      SF Pl Gen => x + "atów";
-      SF Pl Dat => x + "atom";
-      SF Pl Acc => x + "aty";
-      SF Pl Instr => x + "atami";
-      SF Pl Loc => x + "atach";
-      SF Pl Voc => x + "aty"
-    };
-
-    oper mkNTable0983: Str -> SubstForm => Str; --%
-    oper mkNTable0983 lexem = 
-      let x = Predef.tk 5 lexem in
-    table { 
-      SF Sg Nom => x + "balik";
-      SF Sg Gen => x + "Balika";
-      SF Sg Dat => x + "balikowi";
-      SF Sg Acc => x + "balik";
-      SF Sg Instr => x + "balikiem";
-      SF Sg Loc => x + "baliku";
-      SF Sg Voc => x + "baliku";
-      SF Pl Nom => x + "baliki";
-      SF Pl Gen => x + "balików";
-      SF Pl Dat => x + "balikom";
-      SF Pl Acc => x + "baliki";
-      SF Pl Instr => x + "balikami";
-      SF Pl Loc => x + "balikach";
-      SF Pl Voc => x + "baliki"
-    };
-
-    oper mkNTable0984: Str -> SubstForm => Str; --%
-    oper mkNTable0984 lexem = 
-      let x = Predef.tk 1 lexem in
-    table { 
-      SF Sg Nom => x + "o";
-      SF Sg Gen => x + "a";
-      SF Sg Dat => x + "owi";
-      SF Sg Acc => x + "a";
-      SF Sg Instr => x + "em";
-      SF Sg Loc => x + "ze";
-      SF Sg Voc => x + "o";
-      SF Pl Nom => x + "zy";
-      SF Pl Gen => x + "ów";
-      SF Pl Dat => x + "om";
-      SF Pl Acc => x + "ów";
-      SF Pl Instr => x + "ami";
-      SF Pl Loc => x + "ach";
-      SF Pl Voc => x + "zy"
-    };
-
-    oper mkNTable0985: Str -> SubstForm => Str; --%
-    oper mkNTable0985 lexem = 
-      let x = Predef.tk 1 lexem in
-    table { 
-      SF Sg Nom => x + "o";
-      SF Sg Gen => x + "a";
-      SF Sg Dat => x + "u";
-      SF Sg Acc => x + "o";
-      SF Sg Instr => x + "em";
-      SF Sg Loc => x + "zie";
-      SF Sg Voc => x + "o";
-      SF Pl Nom => x + "a";
-      SF Pl Gen => x + "";
-      SF Pl Dat => x + "om";
-      SF Pl Acc => x + "a";
-      SF Pl Instr => x + "ami";
-      SF Pl Loc => x + "ach";
-      SF Pl Voc => x + "a"
-    };
-
-    oper mkNTable0986: Str -> SubstForm => Str; --%
-    oper mkNTable0986 lexem = 
-      let x = Predef.tk 3 lexem in
-    table { 
-      SF Sg Nom => x + "ień";
-      SF Sg Gen => x + "nia";
-      SF Sg Dat => x + "niowi";
-      SF Sg Acc => x + "ień";
-      SF Sg Instr => x + "niem";
-      SF Sg Loc => x + "niu";
-      SF Sg Voc => x + "niu";
-      SF Pl Nom => x + "nie";
-      SF Pl Gen => x + "ni";
-      SF Pl Dat => x + "niom";
-      SF Pl Acc => x + "nie";
-      SF Pl Instr => x + "niami";
-      SF Pl Loc => x + "niach";
-      SF Pl Voc => x + "nie"
-    };
-
-    oper mkNTable0987: Str -> SubstForm => Str; --%
-    oper mkNTable0987 lexem = 
-      let x = Predef.tk 2 lexem in
-    table { 
-      SF Sg Nom => x + "óz";
-      SF Sg Gen => x + "ozu";
-      SF Sg Dat => x + "ozowi";
-      SF Sg Acc => x + "óz";
-      SF Sg Instr => x + "ozem";
-      SF Sg Loc => x + "ozie";
-      SF Sg Voc => x + "ozie";
-      SF Pl Nom => x + "ozy";
-      SF Pl Gen => x + "ozów";
-      SF Pl Dat => x + "ozom";
-      SF Pl Acc => x + "ozy";
-      SF Pl Instr => x + "ozami";
-      SF Pl Loc => x + "ozach";
-      SF Pl Voc => x + "ozy"
-    };
-
-    oper mkNTable0988: Str -> SubstForm => Str; --%
-    oper mkNTable0988 lexem = 
-      let x = Predef.tk 1 lexem in
-    table { 
-      SF Sg Nom => x + "a";
-      SF Sg Gen => x + "y";
-      SF Sg Dat => x + "y";
-      SF Sg Acc => x + "ę";
-      SF Sg Instr => x + "ą";
-      SF Sg Loc => x + "y";
-      SF Sg Voc => x + "o";
-      SF Pl Nom => x + "y";
-      SF Pl Gen => x + "ów";
-      SF Pl Dat => x + "om";
-      SF Pl Acc => x + "ów";
-      SF Pl Instr => x + "ami";
-      SF Pl Loc => x + "ach";
-      SF Pl Voc => x + "y"
-    };
-
-    oper mkNTable0989: Str -> SubstForm => Str; --%
-    oper mkNTable0989 lexem = 
-      let x = Predef.tk 3 lexem in
-    table { 
-      SF Sg Nom => x + "iel";
-      SF Sg Gen => x + "la";
-      SF Sg Dat => x + "lowi";
-      SF Sg Acc => x + "la";
-      SF Sg Instr => x + "lem";
-      SF Sg Loc => x + "lu";
-      SF Sg Voc => x + "lu";
-      SF Pl Nom => x + "le";
-      SF Pl Gen => x + "li";
-      SF Pl Dat => x + "lom";
-      SF Pl Acc => x + "le";
-      SF Pl Instr => x + "lami";
-      SF Pl Loc => x + "lach";
-      SF Pl Voc => x + "le"
-    };
-
-    oper mkNTable0990: Str -> SubstForm => Str; --%
-    oper mkNTable0990 lexem = 
-      let x = Predef.tk 1 lexem in
-    table { 
-      SF Sg Nom => x + "ć";
-      SF Sg Gen => x + "ci";
-      SF Sg Dat => x + "ci";
-      SF Sg Acc => x + "ć";
-      SF Sg Instr => x + "cią";
-      SF Sg Loc => x + "ci";
-      SF Sg Voc => x + "ci";
-      SF Pl Nom => x + "cie";
-      SF Pl Gen => x + "ci";
-      SF Pl Dat => x + "ciom";
-      SF Pl Acc => x + "cie";
-      SF Pl Instr => x + "ciami";
-      SF Pl Loc => x + "ciach";
-      SF Pl Voc => x + "cie"
-    };
-
-    oper mkNTable0991: Str -> SubstForm => Str; --%
-    oper mkNTable0991 lexem = 
-      let x = Predef.tk 3 lexem in
-    table { 
-      SF Sg Nom => x + "bas";
-      SF Sg Gen => x + "basa";
-      SF Sg Dat => x + "basowi";
-      SF Sg Acc => x + "basa";
-      SF Sg Instr => x + "basem";
-      SF Sg Loc => x + "basie";
-      SF Sg Voc => x + "basie";
-      SF Pl Nom => x + "Basowie";
-      SF Pl Gen => x + "basów";
-      SF Pl Dat => x + "basom";
-      SF Pl Acc => x + "basów";
-      SF Pl Instr => x + "basami";
-      SF Pl Loc => x + "basach";
-      SF Pl Voc => x + "Basowie"
-    };
-
-    oper mkNTable0992: Str -> SubstForm => Str; --%
-    oper mkNTable0992 lexem = 
-      let x = Predef.tk 2 lexem in
-    table { 
-      SF Sg Nom => x + "ół";
-      SF Sg Gen => x + "ołu";
-      SF Sg Dat => x + "ołowi";
-      SF Sg Acc => x + "ołu";
-      SF Sg Instr => x + "ołem";
-      SF Sg Loc => x + "ole";
-      SF Sg Voc => x + "ole";
-      SF Pl Nom => x + "oły";
-      SF Pl Gen => x + "ołów";
-      SF Pl Dat => x + "ołom";
-      SF Pl Acc => x + "oły";
-      SF Pl Instr => x + "ołami";
-      SF Pl Loc => x + "ołach";
-      SF Pl Voc => x + "oły"
-    };
-
-    oper mkNTable0993: Str -> SubstForm => Str; --%
-    oper mkNTable0993 lexem = 
-      let x = Predef.tk 0 lexem in
-    table { 
-      SF Sg Nom => x + "";
-      SF Sg Gen => x + "a";
-      SF Sg Dat => x + "owi";
-      SF Sg Acc => x + "";
-      SF Sg Instr => x + "em";
-      SF Sg Loc => x + "u";
-      SF Sg Voc => x + "u";
-      SF Pl Nom => x + "y";
-      SF Pl Gen => x + "ów";
-      SF Pl Dat => x + "om";
-      SF Pl Acc => x + "y";
-      SF Pl Instr => x + "ami";
-      SF Pl Loc => x + "ach";
-      SF Pl Voc => x + "y"
-    };
-
-    oper mkNTable0994: Str -> SubstForm => Str; --%
-    oper mkNTable0994 lexem = 
-      let x = Predef.tk 6 lexem in
-    table { 
-      SF Sg Nom => x + "beczek";
-      SF Sg Gen => x + "beczka";
-      SF Sg Dat => x + "Beczkowi";
-      SF Sg Acc => x + "beczka";
-      SF Sg Instr => x + "Beczkiem";
-      SF Sg Loc => x + "Beczku";
-      SF Sg Voc => x + "Beczku";
-      SF Pl Nom => x + "Beczkowie";
-      SF Pl Gen => x + "Beczków";
-      SF Pl Dat => x + "beczkom";
-      SF Pl Acc => x + "Beczków";
-      SF Pl Instr => x + "beczkami";
-      SF Pl Loc => x + "beczkach";
-      SF Pl Voc => x + "Beczkowie"
-    };
-
-    oper mkNTable0995: Str -> SubstForm => Str; --%
-    oper mkNTable0995 lexem = 
-      let x = Predef.tk 2 lexem in
-    table { 
-      SF Sg Nom => x + "el";
-      SF Sg Gen => x + "la";
-      SF Sg Dat => x + "lowi";
-      SF Sg Acc => x + "la";
-      SF Sg Instr => x + "lem";
-      SF Sg Loc => x + "lu";
-      SF Sg Voc => x + "lu";
-      SF Pl Nom => x + "le";
-      SF Pl Gen => x + "li";
-      SF Pl Dat => x + "lom";
-      SF Pl Acc => x + "li";
-      SF Pl Instr => x + "lami";
-      SF Pl Loc => x + "lach";
-      SF Pl Voc => x + "le"
-    };
-
-    oper mkNTable0996: Str -> SubstForm => Str; --%
-    oper mkNTable0996 lexem = 
-      let x = Predef.tk 3 lexem in
-    table { 
-      SF Sg Nom => x + "cie";
-      SF Sg Gen => x + "cia";
-      SF Sg Dat => x + "ciu";
-      SF Sg Acc => x + "cie";
-      SF Sg Instr => x + "ciem";
-      SF Sg Loc => x + "ciu";
-      SF Sg Voc => x + "cie";
-      SF Pl Nom => x + "cia";
-      SF Pl Gen => x + "ć";
-      SF Pl Dat => x + "ciom";
-      SF Pl Acc => x + "cia";
-      SF Pl Instr => x + "ciami";
-      SF Pl Loc => x + "ciach";
-      SF Pl Voc => x + "cia"
-    };
-
-    oper mkNTable0997: Str -> SubstForm => Str; --%
-    oper mkNTable0997 lexem = 
-      let x = Predef.tk 1 lexem in
-    table { 
-      SF Sg Nom => x + "ć";
-      SF Sg Gen => x + "cia";
-      SF Sg Dat => x + "ciowi";
-      SF Sg Acc => x + "cia";
-      SF Sg Instr => x + "ciem";
-      SF Sg Loc => x + "ciu";
-      SF Sg Voc => x + "ciu";
-      SF Pl Nom => x + "cie";
-      SF Pl Gen => x + "ciów";
-      SF Pl Dat => x + "ciom";
-      SF Pl Acc => x + "cie";
-      SF Pl Instr => x + "ciami";
-      SF Pl Loc => x + "ciach";
-      SF Pl Voc => x + "cie"
-    };
-
-    oper mkNTable0998: Str -> SubstForm => Str; --%
-    oper mkNTable0998 lexem = 
-      let x = Predef.tk 2 lexem in
-    table { 
-      SF Sg Nom => x + "ez";
-      SF Sg Gen => x + "zu";
-      SF Sg Dat => x + "zowi";
-      SF Sg Acc => x + "ez";
-      SF Sg Instr => x + "zem";
-      SF Sg Loc => x + "zie";
-      SF Sg Voc => x + "zie";
-      SF Pl Nom => x + "zy";
-      SF Pl Gen => x + "zów";
-      SF Pl Dat => x + "zom";
-      SF Pl Acc => x + "zy";
-      SF Pl Instr => x + "zami";
-      SF Pl Loc => x + "zach";
-      SF Pl Voc => x + "zy"
-    };
-
-    oper mkNTable0999: Str -> SubstForm => Str; --%
-    oper mkNTable0999 lexem = 
-      let x = Predef.tk 2 lexem in
-    table { 
-      SF Sg Nom => x + "no";
-      SF Sg Gen => x + "na";
-      SF Sg Dat => x + "nu";
-      SF Sg Acc => x + "no";
-      SF Sg Instr => x + "nem";
-      SF Sg Loc => x + "nie";
-      SF Sg Voc => x + "no";
-      SF Pl Nom => x + "na";
-      SF Pl Gen => x + "en";
-      SF Pl Dat => x + "nom";
-      SF Pl Acc => x + "na";
-      SF Pl Instr => x + "nami";
-      SF Pl Loc => x + "nach";
-      SF Pl Voc => x + "na"
-    };
-
-    oper mkNTable1001: Str -> SubstForm => Str; --%
-    oper mkNTable1001 lexem = 
-      let x = Predef.tk 3 lexem in
-    table { 
-      SF Sg Nom => x + "iec";
-      SF Sg Gen => x + "ca";
-      SF Sg Dat => x + "cowi";
-      SF Sg Acc => x + "ca";
-      SF Sg Instr => x + "cem";
-      SF Sg Loc => x + "cu";
-      SF Sg Voc => x + "cu";
-      SF Pl Nom => x + "cy";
-      SF Pl Gen => x + "ców";
-      SF Pl Dat => x + "com";
-      SF Pl Acc => x + "ców";
-      SF Pl Instr => x + "cami";
-      SF Pl Loc => x + "cach";
-      SF Pl Voc => x + "cy"
-    };
-
-    oper mkNTable1002: Str -> SubstForm => Str; --%
-    oper mkNTable1002 lexem = 
-      let x = Predef.tk 6 lexem in
-    table { 
-      SF Sg Nom => x + "białek";
-      SF Sg Gen => x + "białka";
-      SF Sg Dat => x + "Białkowi";
-      SF Sg Acc => x + "białek";
-      SF Sg Instr => x + "białkiem";
-      SF Sg Loc => x + "białku";
-      SF Sg Voc => x + "białku";
-      SF Pl Nom => x + "białki";
-      SF Pl Gen => x + "Białków";
-      SF Pl Dat => x + "białkom";
-      SF Pl Acc => x + "białki";
-      SF Pl Instr => x + "białkami";
-      SF Pl Loc => x + "białkach";
-      SF Pl Voc => x + "białki"
-    };
-
-    oper mkNTable1003: Str -> SubstForm => Str; --%
-    oper mkNTable1003 lexem = 
-      let x = Predef.tk 0 lexem in
-    table { 
-      SF Sg Nom => x + "";
-      SF Sg Gen => x + "u";
-      SF Sg Dat => x + "owi";
-      SF Sg Acc => x + "";
-      SF Sg Instr => x + "iem";
-      SF Sg Loc => x + "iu";
-      SF Sg Voc => x + "iu";
-      SF Pl Nom => x + "y";
-      SF Pl Gen => x + "ów";
-      SF Pl Dat => x + "om";
-      SF Pl Acc => x + "y";
-      SF Pl Instr => x + "iami";
-      SF Pl Loc => x + "iach";
-      SF Pl Voc => x + "y"
-    };
-
-    oper mkNTable1004: Str -> SubstForm => Str; --%
-    oper mkNTable1004 lexem = 
-      let x = Predef.tk 2 lexem in
-    table { 
-      SF Sg Nom => x + "ór";
-      SF Sg Gen => x + "ora";
-      SF Sg Dat => x + "orowi";
-      SF Sg Acc => x + "ora";
-      SF Sg Instr => x + "orem";
-      SF Sg Loc => x + "orze";
-      SF Sg Voc => x + "orze";
-      SF Pl Nom => x + "ory";
-      SF Pl Gen => x + "orów";
-      SF Pl Dat => x + "orom";
-      SF Pl Acc => x + "ory";
-      SF Pl Instr => x + "orami";
-      SF Pl Loc => x + "orach";
-      SF Pl Voc => x + "ory"
-    };
-
-    oper mkNTable1005: Str -> SubstForm => Str; --%
-    oper mkNTable1005 lexem = 
-      let x = Predef.tk 1 lexem in
-    table { 
-      SF Sg Nom => x + "a";
-      SF Sg Gen => x + "i";
-      SF Sg Dat => x + "i";
-      SF Sg Acc => x + "ę";
-      SF Sg Instr => x + "ą";
-      SF Sg Loc => x + "i";
-      SF Sg Voc => x + "o";
-      SF Pl Nom => x + "e";
-      SF Pl Gen => x + "ów";
-      SF Pl Dat => x + "om";
-      SF Pl Acc => x + "ów";
-      SF Pl Instr => x + "ami";
-      SF Pl Loc => x + "ach";
-      SF Pl Voc => x + "e"
-    };
-
-    oper mkNTable1006: Str -> SubstForm => Str; --%
-    oper mkNTable1006 lexem = 
-      let x = Predef.tk 2 lexem in
-    table { 
-      SF Sg Nom => x + "ka";
-      SF Sg Gen => x + "ki";
-      SF Sg Dat => x + "ce";
-      SF Sg Acc => x + "kę";
-      SF Sg Instr => x + "ką";
-      SF Sg Loc => x + "ce";
-      SF Sg Voc => x + "ko";
-      SF Pl Nom => x + "cy";
-      SF Pl Gen => x + "ków";
-      SF Pl Dat => x + "kom";
-      SF Pl Acc => x + "ków";
-      SF Pl Instr => x + "kami";
-      SF Pl Loc => x + "kach";
-      SF Pl Voc => x + "cy"
-    };
-
-    oper mkNTable1007: Str -> SubstForm => Str; --%
-    oper mkNTable1007 lexem = 
-      let x = Predef.tk 4 lexem in
-    table { 
-      SF Sg Nom => x + "niec";
-      SF Sg Gen => x + "ńca";
-      SF Sg Dat => x + "ńcowi";
-      SF Sg Acc => x + "ńca";
-      SF Sg Instr => x + "ńcem";
-      SF Sg Loc => x + "ńcu";
-      SF Sg Voc => x + "ńcu";
-      SF Pl Nom => x + "ńce";
-      SF Pl Gen => x + "ńców";
-      SF Pl Dat => x + "ńcom";
-      SF Pl Acc => x + "ńce";
-      SF Pl Instr => x + "ńcami";
-      SF Pl Loc => x + "ńcach";
-      SF Pl Voc => x + "ńce"
-    };
-
-    oper mkNTable1008: Str -> SubstForm => Str; --%
-    oper mkNTable1008 lexem = 
-      let x = Predef.tk 0 lexem in
-    table { 
-      SF Sg Nom => x + "";
-      SF Sg Gen => x + "i";
-      SF Sg Dat => x + "i";
-      SF Sg Acc => x + "";
-      SF Sg Instr => x + "ą";
-      SF Sg Loc => x + "i";
-      SF Sg Voc => x + "i";
-      SF Pl Nom => x + "e";
-      SF Pl Gen => x + "i";
-      SF Pl Dat => x + "om";
-      SF Pl Acc => x + "e";
-      SF Pl Instr => x + "ami";
-      SF Pl Loc => x + "ach";
-      SF Pl Voc => x + "e"
-    };
-
-    oper mkNTable1009: Str -> SubstForm => Str; --%
-    oper mkNTable1009 lexem = 
-      let x = Predef.tk 3 lexem in
-    table { 
-      SF Sg Nom => x + "ole";
-      SF Sg Gen => x + "ola";
-      SF Sg Dat => x + "olu";
-      SF Sg Acc => x + "ole";
-      SF Sg Instr => x + "olem";
-      SF Sg Loc => x + "olu";
-      SF Sg Voc => x + "ole";
-      SF Pl Nom => x + "ola";
-      SF Pl Gen => x + "ól";
-      SF Pl Dat => x + "olom";
-      SF Pl Acc => x + "ola";
-      SF Pl Instr => x + "olami";
-      SF Pl Loc => x + "olach";
-      SF Pl Voc => x + "ola"
-    };
-
-    oper mkNTable1010: Str -> SubstForm => Str; --%
-    oper mkNTable1010 lexem = 
-      let x = Predef.tk 2 lexem in
-    table { 
-      SF Sg Nom => x + "wa";
-      SF Sg Gen => x + "wy";
-      SF Sg Dat => x + "wie";
-      SF Sg Acc => x + "wę";
-      SF Sg Instr => x + "wą";
-      SF Sg Loc => x + "wie";
-      SF Sg Voc => x + "wo";
-      SF Pl Nom => x + "wy";
-      SF Pl Gen => x + "ew";
-      SF Pl Dat => x + "wom";
-      SF Pl Acc => x + "wy";
-      SF Pl Instr => x + "wami";
-      SF Pl Loc => x + "wach";
-      SF Pl Voc => x + "wy"
-    };
-
-    oper mkNTable1012: Str -> SubstForm => Str; --%
-    oper mkNTable1012 lexem = 
-      let x = Predef.tk 5 lexem in
-    table { 
-      SF Sg Nom => x + "bobik";
-      SF Sg Gen => x + "Bobika";
-      SF Sg Dat => x + "bobikowi";
-      SF Sg Acc => x + "bobik";
-      SF Sg Instr => x + "bobikiem";
-      SF Sg Loc => x + "bobiku";
-      SF Sg Voc => x + "bobiku";
-      SF Pl Nom => x + "bobiki";
-      SF Pl Gen => x + "bobików";
-      SF Pl Dat => x + "bobikom";
-      SF Pl Acc => x + "bobiki";
-      SF Pl Instr => x + "bobikami";
-      SF Pl Loc => x + "bobikach";
-      SF Pl Voc => x + "bobiki"
-    };
-
-    oper mkNTable1013: Str -> SubstForm => Str; --%
-    oper mkNTable1013 lexem = 
-      let x = Predef.tk 2 lexem in
-    table { 
-      SF Sg Nom => x + "en";
-      SF Sg Gen => x + "na";
-      SF Sg Dat => x + "nowi";
-      SF Sg Acc => x + "en";
-      SF Sg Instr => x + "nem";
-      SF Sg Loc => x + "nie";
-      SF Sg Voc => x + "nie";
-      SF Pl Nom => x + "ny";
-      SF Pl Gen => x + "nów";
-      SF Pl Dat => x + "nom";
-      SF Pl Acc => x + "ny";
-      SF Pl Instr => x + "nami";
-      SF Pl Loc => x + "nach";
-      SF Pl Voc => x + "ny"
-    };
-
-    oper mkNTable1014: Str -> SubstForm => Str; --%
-    oper mkNTable1014 lexem = 
-      let x = Predef.tk 4 lexem in
-    table { 
-      SF Sg Nom => x + "ciek";
-      SF Sg Gen => x + "ćka";
-      SF Sg Dat => x + "ćkowi";
-      SF Sg Acc => x + "ćka";
-      SF Sg Instr => x + "ćkiem";
-      SF Sg Loc => x + "ćku";
-      SF Sg Voc => x + "ćku";
-      SF Pl Nom => x + "ćki";
-      SF Pl Gen => x + "ćków";
-      SF Pl Dat => x + "ćkom";
-      SF Pl Acc => x + "ćki";
-      SF Pl Instr => x + "ćkami";
-      SF Pl Loc => x + "ćkach";
-      SF Pl Voc => x + "ćki"
-    };
-
-    oper mkNTable1015: Str -> SubstForm => Str; --%
-    oper mkNTable1015 lexem = 
-      let x = Predef.tk 0 lexem in
-    table { 
-      SF Sg Nom => x + "";
-      SF Sg Gen => x + "ego";
-      SF Sg Dat => x + "emu";
-      SF Sg Acc => x + "";
-      SF Sg Instr => x + "m";
-      SF Sg Loc => x + "m";
-      SF Sg Voc => x + "";
-      SF Pl Nom => x + "e";
-      SF Pl Gen => x + "ch";
-      SF Pl Dat => x + "m";
-      SF Pl Acc => x + "e";
-      SF Pl Instr => x + "mi";
-      SF Pl Loc => x + "ch";
-      SF Pl Voc => x + "e"
-    };
-
-    oper mkNTable1016: Str -> SubstForm => Str; --%
-    oper mkNTable1016 lexem = 
-      let x = Predef.tk 4 lexem in
-    table { 
-      SF Sg Nom => x + "ziec";
-      SF Sg Gen => x + "źca";
-      SF Sg Dat => x + "źcowi";
-      SF Sg Acc => x + "źca";
-      SF Sg Instr => x + "źcem";
-      SF Sg Loc => x + "źcu";
-      SF Sg Voc => x + "źcu";
-      SF Pl Nom => x + "źce";
-      SF Pl Gen => x + "źców";
-      SF Pl Dat => x + "źcom";
-      SF Pl Acc => x + "źce";
-      SF Pl Instr => x + "źcami";
-      SF Pl Loc => x + "źcach";
-      SF Pl Voc => x + "źce"
-    };
-
-    oper mkNTable1017: Str -> SubstForm => Str; --%
-    oper mkNTable1017 lexem = 
-      let x = Predef.tk 2 lexem in
-    table { 
-      SF Sg Nom => x + "ec";
-      SF Sg Gen => x + "ca";
-      SF Sg Dat => x + "cowi";
-      SF Sg Acc => x + "ca";
-      SF Sg Instr => x + "cem";
-      SF Sg Loc => x + "cu";
-      SF Sg Voc => x + "cu";
-      SF Pl Nom => x + "cy";
-      SF Pl Gen => x + "ców";
-      SF Pl Dat => x + "com";
-      SF Pl Acc => x + "ców";
-      SF Pl Instr => x + "cami";
-      SF Pl Loc => x + "cach";
-      SF Pl Voc => x + "cy"
-    };
-
-    oper mkNTable1018: Str -> SubstForm => Str; --%
-    oper mkNTable1018 lexem = 
-      let x = Predef.tk 1 lexem in
-    table { 
-      SF Sg Nom => x + "ń";
-      SF Sg Gen => x + "nia";
-      SF Sg Dat => x + "niowi";
-      SF Sg Acc => x + "nia";
-      SF Sg Instr => x + "niem";
-      SF Sg Loc => x + "niu";
-      SF Sg Voc => x + "niu";
-      SF Pl Nom => x + "nie";
-      SF Pl Gen => x + "ni";
-      SF Pl Dat => x + "niom";
-      SF Pl Acc => x + "nie";
-      SF Pl Instr => x + "niami";
-      SF Pl Loc => x + "niach";
-      SF Pl Voc => x + "nie"
-    };
-
-    oper mkNTable1019: Str -> SubstForm => Str; --%
-    oper mkNTable1019 lexem = 
-      let x = Predef.tk 3 lexem in
-    table { 
-      SF Sg Nom => x + "iel";
-      SF Sg Gen => x + "la";
-      SF Sg Dat => x + "lowi";
-      SF Sg Acc => x + "iel";
-      SF Sg Instr => x + "lem";
-      SF Sg Loc => x + "lu";
-      SF Sg Voc => x + "lu";
-      SF Pl Nom => x + "le";
-      SF Pl Gen => x + "li";
-      SF Pl Dat => x + "lom";
-      SF Pl Acc => x + "le";
-      SF Pl Instr => x + "lami";
-      SF Pl Loc => x + "lach";
-      SF Pl Voc => x + "le"
-    };
-
-    oper mkNTable1020: Str -> SubstForm => Str; --%
-    oper mkNTable1020 lexem = 
-      let x = Predef.tk 3 lexem in
-    table { 
-      SF Sg Nom => x + "ora";
-      SF Sg Gen => x + "ory";
-      SF Sg Dat => x + "orze";
-      SF Sg Acc => x + "orę";
-      SF Sg Instr => x + "orą";
-      SF Sg Loc => x + "orze";
-      SF Sg Voc => x + "oro";
-      SF Pl Nom => x + "ory";
-      SF Pl Gen => x + "ór";
-      SF Pl Dat => x + "orom";
-      SF Pl Acc => x + "ory";
-      SF Pl Instr => x + "orami";
-      SF Pl Loc => x + "orach";
-      SF Pl Voc => x + "ory"
-    };
-
-    oper mkNTable1021: Str -> SubstForm => Str; --%
-    oper mkNTable1021 lexem = 
-      let x = Predef.tk 3 lexem in
-    table { 
-      SF Sg Nom => x + "Boy";
-      SF Sg Gen => x + "Boya";
-      SF Sg Dat => x + "boyowi";
-      SF Sg Acc => x + "Boya";
-      SF Sg Instr => x + "boyem";
-      SF Sg Loc => x + "boyu";
-      SF Sg Voc => x + "boyu";
-      SF Pl Nom => x + "boye";
-      SF Pl Gen => x + "boyów";
-      SF Pl Dat => x + "boyom";
-      SF Pl Acc => x + "boyów";
-      SF Pl Instr => x + "boyami";
-      SF Pl Loc => x + "boyach";
-      SF Pl Voc => x + "boye"
-    };
-
-    oper mkNTable1022: Str -> SubstForm => Str; --%
-    oper mkNTable1022 lexem = 
-      let x = Predef.tk 5 lexem in
-    table { 
-      SF Sg Nom => x + "bożek";
-      SF Sg Gen => x + "bożka";
-      SF Sg Dat => x + "bożkowi";
-      SF Sg Acc => x + "bożka";
-      SF Sg Instr => x + "bożkiem";
-      SF Sg Loc => x + "bożku";
-      SF Sg Voc => x + "bożku";
-      SF Pl Nom => x + "Bożkowie";
-      SF Pl Gen => x + "bożków";
-      SF Pl Dat => x + "bożkom";
-      SF Pl Acc => x + "bożków";
-      SF Pl Instr => x + "bożkami";
-      SF Pl Loc => x + "bożkach";
-      SF Pl Voc => x + "Bożkowie"
-    };
-
-    oper mkNTable1023: Str -> SubstForm => Str; --%
-    oper mkNTable1023 lexem = 
-      let x = Predef.tk 2 lexem in
-    table { 
-      SF Sg Nom => x + "ha";
-      SF Sg Gen => x + "hy";
-      SF Sg Dat => x + "że";
-      SF Sg Acc => x + "hę";
-      SF Sg Instr => x + "hą";
-      SF Sg Loc => x + "że";
-      SF Sg Voc => x + "ho";
-      SF Pl Nom => x + "hy";
-      SF Pl Gen => x + "h";
-      SF Pl Dat => x + "hom";
-      SF Pl Acc => x + "hy";
-      SF Pl Instr => x + "hami";
-      SF Pl Loc => x + "hach";
-      SF Pl Voc => x + "hy"
-    };
-
-    oper mkNTable1024: Str -> SubstForm => Str; --%
-    oper mkNTable1024 lexem = 
-      let x = Predef.tk 1 lexem in
-    table { 
-      SF Sg Nom => x + "t";
-      SF Sg Gen => x + "ta";
-      SF Sg Dat => x + "tu";
-      SF Sg Acc => x + "ta";
-      SF Sg Instr => x + "tem";
-      SF Sg Loc => x + "cie";
-      SF Sg Voc => x + "cie";
-      SF Pl Nom => x + "cia";
-      SF Pl Gen => x + "ci";
-      SF Pl Dat => x + "ciom";
-      SF Pl Acc => x + "ci";
-      SF Pl Instr => x + "ćmi";
-      SF Pl Loc => x + "ciach";
-      SF Pl Voc => x + "cia"
-    };
-
-    oper mkNTable1025: Str -> SubstForm => Str; --%
-    oper mkNTable1025 lexem = 
-      let x = Predef.tk 2 lexem in
-    table { 
-      SF Sg Nom => x + "ew";
-      SF Sg Gen => x + "wi";
-      SF Sg Dat => x + "wi";
-      SF Sg Acc => x + "ew";
-      SF Sg Instr => x + "wią";
-      SF Sg Loc => x + "wi";
-      SF Sg Voc => x + "wi";
-      SF Pl Nom => x + "wi";
-      SF Pl Gen => x + "wi";
-      SF Pl Dat => x + "wiom";
-      SF Pl Acc => x + "wi";
-      SF Pl Instr => x + "wiami";
-      SF Pl Loc => x + "wiach";
-      SF Pl Voc => x + "wi"
-    };
-
-    oper mkNTable1026: Str -> SubstForm => Str; --%
-    oper mkNTable1026 lexem = 
-      let x = Predef.tk 1 lexem in
-    table { 
-      SF Sg Nom => x + "ł";
-      SF Sg Gen => x + "ła";
-      SF Sg Dat => x + "łowi";
-      SF Sg Acc => x + "ła";
-      SF Sg Instr => x + "łem";
-      SF Sg Loc => x + "le";
-      SF Sg Voc => x + "le";
-      SF Pl Nom => x + "ły";
-      SF Pl Gen => x + "łów";
-      SF Pl Dat => x + "łom";
-      SF Pl Acc => x + "ły";
-      SF Pl Instr => x + "łami";
-      SF Pl Loc => x + "łach";
-      SF Pl Voc => x + "ły"
-    };
-
-    oper mkNTable1027: Str -> SubstForm => Str; --%
-    oper mkNTable1027 lexem = 
-      let x = Predef.tk 3 lexem in
-    table { 
-      SF Sg Nom => x + "zda";
-      SF Sg Gen => x + "zdy";
-      SF Sg Dat => x + "ździe";
-      SF Sg Acc => x + "zdę";
-      SF Sg Instr => x + "zdą";
-      SF Sg Loc => x + "ździe";
-      SF Sg Voc => x + "zdo";
-      SF Pl Nom => x + "zdy";
-      SF Pl Gen => x + "zd";
-      SF Pl Dat => x + "zdom";
-      SF Pl Acc => x + "zdy";
-      SF Pl Instr => x + "zdami";
-      SF Pl Loc => x + "zdach";
-      SF Pl Voc => x + "zdy"
-    };
-
-    oper mkNTable1028: Str -> SubstForm => Str; --%
-    oper mkNTable1028 lexem = 
-      let x = Predef.tk 1 lexem in
-    table { 
-      SF Sg Nom => x + "ś";
-      SF Sg Gen => x + "sia";
-      SF Sg Dat => x + "siowi";
-      SF Sg Acc => x + "sia";
-      SF Sg Instr => x + "siem";
-      SF Sg Loc => x + "siu";
-      SF Sg Voc => x + "siu";
-      SF Pl Nom => x + "sie";
-      SF Pl Gen => x + "siów";
-      SF Pl Dat => x + "siom";
-      SF Pl Acc => x + "sie";
-      SF Pl Instr => x + "siami";
-      SF Pl Loc => x + "siach";
-      SF Pl Voc => x + "sie"
-    };
-
-    oper mkNTable1029: Str -> SubstForm => Str; --%
-    oper mkNTable1029 lexem = 
-      let x = Predef.tk 1 lexem in
-    table { 
-      SF Sg Nom => x + "ę";
-      SF Sg Gen => x + "enia";
-      SF Sg Dat => x + "eniu";
-      SF Sg Acc => x + "ę";
-      SF Sg Instr => x + "eniem";
-      SF Sg Loc => x + "eniu";
-      SF Sg Voc => x + "ę";
-      SF Pl Nom => x + "ona";
-      SF Pl Gen => x + "on";
-      SF Pl Dat => x + "onom";
-      SF Pl Acc => x + "ona";
-      SF Pl Instr => x + "onami";
-      SF Pl Loc => x + "onach";
-      SF Pl Voc => x + "ona"
-    };
-
-    oper mkNTable1030: Str -> SubstForm => Str; --%
-    oper mkNTable1030 lexem = 
-      let x = Predef.tk 1 lexem in
-    table { 
-      SF Sg Nom => x + "o";
-      SF Sg Gen => x + "a";
-      SF Sg Dat => x + "u";
-      SF Sg Acc => x + "o";
-      SF Sg Instr => x + "em";
-      SF Sg Loc => x + "u";
-      SF Sg Voc => x + "o";
-      SF Pl Nom => x + "a";
-      SF Pl Gen => x + "";
-      SF Pl Dat => x + "om";
-      SF Pl Acc => x + "a";
-      SF Pl Instr => x + "ami";
-      SF Pl Loc => x + "ach";
-      SF Pl Voc => x + "a"
-    };
-
-    oper mkNTable1031: Str -> SubstForm => Str; --%
-    oper mkNTable1031 lexem = 
-      let x = Predef.tk 2 lexem in
-    table { 
-      SF Sg Nom => x + "óg";
-      SF Sg Gen => x + "oga";
-      SF Sg Dat => x + "ogowi";
-      SF Sg Acc => x + "oga";
-      SF Sg Instr => x + "ogiem";
-      SF Sg Loc => x + "ogu";
-      SF Sg Voc => x + "ogu";
-      SF Pl Nom => x + "ogi";
-      SF Pl Gen => x + "ogów";
-      SF Pl Dat => x + "ogom";
-      SF Pl Acc => x + "ogi";
-      SF Pl Instr => x + "ogami";
-      SF Pl Loc => x + "ogach";
-      SF Pl Voc => x + "ogi"
-    };
-
-    oper mkNTable1032: Str -> SubstForm => Str; --%
-    oper mkNTable1032 lexem = 
-      let x = Predef.tk 4 lexem in
-    table { 
-      SF Sg Nom => x + "siec";
-      SF Sg Gen => x + "śca";
-      SF Sg Dat => x + "ścowi";
-      SF Sg Acc => x + "siec";
-      SF Sg Instr => x + "ścem";
-      SF Sg Loc => x + "ścu";
-      SF Sg Voc => x + "ścu";
-      SF Pl Nom => x + "śce";
-      SF Pl Gen => x + "śców";
-      SF Pl Dat => x + "ścom";
-      SF Pl Acc => x + "śce";
-      SF Pl Instr => x + "ścami";
-      SF Pl Loc => x + "ścach";
-      SF Pl Voc => x + "śce"
-    };
-
-    oper mkNTable1033: Str -> SubstForm => Str; --%
-    oper mkNTable1033 lexem = 
-      let x = Predef.tk 1 lexem in
-    table { 
-      SF Sg Nom => x + "o";
-      SF Sg Gen => x + "a";
-      SF Sg Dat => x + "owi";
-      SF Sg Acc => x + "o";
-      SF Sg Instr => x + "em";
-      SF Sg Loc => x + "u";
-      SF Sg Voc => x + "u";
-      SF Pl Nom => x + "e";
-      SF Pl Gen => x + "ów";
-      SF Pl Dat => x + "om";
-      SF Pl Acc => x + "e";
-      SF Pl Instr => x + "ami";
-      SF Pl Loc => x + "ach";
-      SF Pl Voc => x + "e"
-    };
-
-    oper mkNTable1034: Str -> SubstForm => Str; --%
-    oper mkNTable1034 lexem = 
-      let x = Predef.tk 2 lexem in
-    table { 
-      SF Sg Nom => x + "ób";
-      SF Sg Gen => x + "oba";
-      SF Sg Dat => x + "obowi";
-      SF Sg Acc => x + "oba";
-      SF Sg Instr => x + "obem";
-      SF Sg Loc => x + "obie";
-      SF Sg Voc => x + "obie";
-      SF Pl Nom => x + "oby";
-      SF Pl Gen => x + "obów";
-      SF Pl Dat => x + "obom";
-      SF Pl Acc => x + "oby";
-      SF Pl Instr => x + "obami";
-      SF Pl Loc => x + "obach";
-      SF Pl Voc => x + "oby"
-    };
-
-    oper mkNTable1035: Str -> SubstForm => Str; --%
-    oper mkNTable1035 lexem = 
-      let x = Predef.tk 2 lexem in
-    table { 
-      SF Sg Nom => x + "ód";
-      SF Sg Gen => x + "odu";
-      SF Sg Dat => x + "odowi";
-      SF Sg Acc => x + "ód";
-      SF Sg Instr => x + "odem";
-      SF Sg Loc => x + "odzie";
-      SF Sg Voc => x + "odzie";
-      SF Pl Nom => x + "ody";
-      SF Pl Gen => x + "odów";
-      SF Pl Dat => x + "odom";
-      SF Pl Acc => x + "ody";
-      SF Pl Instr => x + "odami";
-      SF Pl Loc => x + "odach";
-      SF Pl Voc => x + "ody"
-    };
-
-    oper mkNTable1036: Str -> SubstForm => Str; --%
-    oper mkNTable1036 lexem = 
-      let x = Predef.tk 5 lexem in
-    table { 
-      SF Sg Nom => x + "bubek";
-      SF Sg Gen => x + "bubka";
-      SF Sg Dat => x + "bubkowi";
-      SF Sg Acc => x + "bubka";
-      SF Sg Instr => x + "bubkiem";
-      SF Sg Loc => x + "bubku";
-      SF Sg Voc => x + "bubku";
-      SF Pl Nom => x + "Bubkowie";
-      SF Pl Gen => x + "bubków";
-      SF Pl Dat => x + "bubkom";
-      SF Pl Acc => x + "bubków";
-      SF Pl Instr => x + "bubkami";
-      SF Pl Loc => x + "bubkach";
-      SF Pl Voc => x + "Bubkowie"
-    };
-
-    oper mkNTable1037: Str -> SubstForm => Str; --%
-    oper mkNTable1037 lexem = 
-      let x = Predef.tk 1 lexem in
-    table { 
-      SF Sg Nom => x + "o";
-      SF Sg Gen => x + "a";
-      SF Sg Dat => x + "u";
-      SF Sg Acc => x + "o";
-      SF Sg Instr => x + "iem";
-      SF Sg Loc => x + "u";
-      SF Sg Voc => x + "o";
-      SF Pl Nom => x + "a";
-      SF Pl Gen => x + "ów";
-      SF Pl Dat => x + "om";
-      SF Pl Acc => x + "a";
-      SF Pl Instr => x + "ami";
-      SF Pl Loc => x + "ach";
-      SF Pl Voc => x + "a"
-    };
-
-    oper mkNTable1038: Str -> SubstForm => Str; --%
-    oper mkNTable1038 lexem = 
-      let x = Predef.tk 1 lexem in
-    table { 
-      SF Sg Nom => x + "ń";
-      SF Sg Gen => x + "niu";
-      SF Sg Dat => x + "niowi";
-      SF Sg Acc => x + "ń";
-      SF Sg Instr => x + "niem";
-      SF Sg Loc => x + "niu";
-      SF Sg Voc => x + "niu";
-      SF Pl Nom => x + "nie";
-      SF Pl Gen => x + "niów";
-      SF Pl Dat => x + "niom";
-      SF Pl Acc => x + "nie";
-      SF Pl Instr => x + "niami";
-      SF Pl Loc => x + "niach";
-      SF Pl Voc => x + "nie"
-    };
-
-    oper mkNTable1039: Str -> SubstForm => Str; --%
-    oper mkNTable1039 lexem = 
-      let x = Predef.tk 1 lexem in
-    table { 
-      SF Sg Nom => x + "a";
-      SF Sg Gen => x + "ego";
-      SF Sg Dat => x + "emu";
-      SF Sg Acc => x + "ę";
-      SF Sg Instr => x + "ą";
-      SF Sg Loc => x + "m";
-      SF Sg Voc => x + "o";
-      SF Pl Nom => x + "owie";
-      SF Pl Gen => x + "ów";
-      SF Pl Dat => x + "om";
-      SF Pl Acc => x + "ów";
-      SF Pl Instr => x + "ami";
-      SF Pl Loc => x + "ach";
-      SF Pl Voc => x + "owie"
-    };
-
-    oper mkNTable1040: Str -> SubstForm => Str; --%
-    oper mkNTable1040 lexem = 
-      let x = Predef.tk 2 lexem in
-    table { 
-      SF Sg Nom => x + "na";
-      SF Sg Gen => x + "ny";
-      SF Sg Dat => x + "nie";
-      SF Sg Acc => x + "nę";
-      SF Sg Instr => x + "ną";
-      SF Sg Loc => x + "nie";
-      SF Sg Voc => x + "no";
-      SF Pl Nom => x + "ny";
-      SF Pl Gen => x + "en";
-      SF Pl Dat => x + "nom";
-      SF Pl Acc => x + "ny";
-      SF Pl Instr => x + "nami";
-      SF Pl Loc => x + "nach";
-      SF Pl Voc => x + "ny"
-    };
-
-    oper mkNTable1041: Str -> SubstForm => Str; --%
-    oper mkNTable1041 lexem = 
-      let x = Predef.tk 6 lexem in
-    table { 
-      SF Sg Nom => x + "byczek";
-      SF Sg Gen => x + "byczka";
-      SF Sg Dat => x + "byczkowi";
-      SF Sg Acc => x + "byczka";
-      SF Sg Instr => x + "byczkiem";
-      SF Sg Loc => x + "byczku";
-      SF Sg Voc => x + "byczku";
-      SF Pl Nom => x + "Byczkowie";
-      SF Pl Gen => x + "byczków";
-      SF Pl Dat => x + "byczkom";
-      SF Pl Acc => x + "byczków";
-      SF Pl Instr => x + "byczkami";
-      SF Pl Loc => x + "byczkach";
-      SF Pl Voc => x + "Byczkowie"
-    };
-
-    oper mkNTable1042: Str -> SubstForm => Str; --%
-    oper mkNTable1042 lexem = 
-      let x = Predef.tk 1 lexem in
-    table { 
-      SF Sg Nom => x + "o";
-      SF Sg Gen => x + "a";
-      SF Sg Dat => x + "u";
-      SF Sg Acc => x + "a";
-      SF Sg Instr => x + "iem";
-      SF Sg Loc => x + "u";
-      SF Sg Voc => x + "o";
-      SF Pl Nom => x + "a";
-      SF Pl Gen => x + "ów";
-      SF Pl Dat => x + "om";
-      SF Pl Acc => x + "a";
-      SF Pl Instr => x + "ami";
-      SF Pl Loc => x + "ach";
-      SF Pl Voc => x + "a"
-    };
-
-    oper mkNTable1043: Str -> SubstForm => Str; --%
-    oper mkNTable1043 lexem = 
-      let x = Predef.tk 2 lexem in
-    table { 
-      SF Sg Nom => x + "el";
-      SF Sg Gen => x + "la";
-      SF Sg Dat => x + "lowi";
-      SF Sg Acc => x + "la";
-      SF Sg Instr => x + "lem";
-      SF Sg Loc => x + "lu";
-      SF Sg Voc => x + "lu";
-      SF Pl Nom => x + "le";
-      SF Pl Gen => x + "li";
-      SF Pl Dat => x + "lom";
-      SF Pl Acc => x + "le";
-      SF Pl Instr => x + "lami";
-      SF Pl Loc => x + "lach";
-      SF Pl Voc => x + "le"
-    };
-
-    oper mkNTable1044: Str -> SubstForm => Str; --%
-    oper mkNTable1044 lexem = 
-      let x = Predef.tk 3 lexem in
-    table { 
-      SF Sg Nom => x + "zen";
-      SF Sg Gen => x + "zna";
-      SF Sg Dat => x + "znowi";
-      SF Sg Acc => x + "zna";
-      SF Sg Instr => x + "znem";
-      SF Sg Loc => x + "źnie";
-      SF Sg Voc => x + "źnie";
-      SF Pl Nom => x + "źni";
-      SF Pl Gen => x + "znów";
-      SF Pl Dat => x + "znom";
-      SF Pl Acc => x + "znów";
-      SF Pl Instr => x + "znami";
-      SF Pl Loc => x + "znach";
-      SF Pl Voc => x + "źni"
-    };
-
-    oper mkNTable1045: Str -> SubstForm => Str; --%
-    oper mkNTable1045 lexem = 
-      let x = Predef.tk 2 lexem in
-    table { 
-      SF Sg Nom => x + "ąd";
-      SF Sg Gen => x + "ędu";
-      SF Sg Dat => x + "ędowi";
-      SF Sg Acc => x + "ąd";
-      SF Sg Instr => x + "ędem";
-      SF Sg Loc => x + "ędzie";
-      SF Sg Voc => x + "ędzie";
-      SF Pl Nom => x + "ędy";
-      SF Pl Gen => x + "ędów";
-      SF Pl Dat => x + "ędom";
-      SF Pl Acc => x + "ędy";
-      SF Pl Instr => x + "ędami";
-      SF Pl Loc => x + "ędach";
-      SF Pl Voc => x + "ędy"
-    };
-
-    oper mkNTable1046: Str -> SubstForm => Str; --%
-    oper mkNTable1046 lexem = 
-      let x = Predef.tk 2 lexem in
-    table { 
-      SF Sg Nom => x + "en";
-      SF Sg Gen => x + "na";
-      SF Sg Dat => x + "nowi";
-      SF Sg Acc => x + "na";
-      SF Sg Instr => x + "nem";
-      SF Sg Loc => x + "nie";
-      SF Sg Voc => x + "nie";
-      SF Pl Nom => x + "ny";
-      SF Pl Gen => x + "nów";
-      SF Pl Dat => x + "nom";
-      SF Pl Acc => x + "ny";
-      SF Pl Instr => x + "nami";
-      SF Pl Loc => x + "nach";
-      SF Pl Voc => x + "ny"
-    };
-
-    oper mkNTable1047: Str -> SubstForm => Str; --%
-    oper mkNTable1047 lexem = 
-      let x = Predef.tk 2 lexem in
-    table { 
-      SF Sg Nom => x + "ób";
-      SF Sg Gen => x + "obu";
-      SF Sg Dat => x + "obowi";
-      SF Sg Acc => x + "ób";
-      SF Sg Instr => x + "obem";
-      SF Sg Loc => x + "obie";
-      SF Sg Voc => x + "obie";
-      SF Pl Nom => x + "oby";
-      SF Pl Gen => x + "obów";
-      SF Pl Dat => x + "obom";
-      SF Pl Acc => x + "oby";
-      SF Pl Instr => x + "obami";
-      SF Pl Loc => x + "obach";
-      SF Pl Voc => x + "oby"
-    };
-
-    oper mkNTable1048: Str -> SubstForm => Str; --%
-    oper mkNTable1048 lexem = 
-      let x = Predef.tk 3 lexem in
-    table { 
-      SF Sg Nom => x + "óbr";
-      SF Sg Gen => x + "obra";
-      SF Sg Dat => x + "obrowi";
-      SF Sg Acc => x + "obra";
-      SF Sg Instr => x + "obrem";
-      SF Sg Loc => x + "obrze";
-      SF Sg Voc => x + "obrze";
-      SF Pl Nom => x + "obry";
-      SF Pl Gen => x + "obrów";
-      SF Pl Dat => x + "obrom";
-      SF Pl Acc => x + "obry";
-      SF Pl Instr => x + "obrami";
-      SF Pl Loc => x + "obrach";
-      SF Pl Voc => x + "obry"
-    };
-
-    oper mkNTable1049: Str -> SubstForm => Str; --%
-    oper mkNTable1049 lexem = 
-      let x = Predef.tk 2 lexem in
-    table { 
-      SF Sg Nom => x + "óg";
-      SF Sg Gen => x + "oga";
-      SF Sg Dat => x + "ogu";
-      SF Sg Acc => x + "oga";
-      SF Sg Instr => x + "ogiem";
-      SF Sg Loc => x + "ogu";
-      SF Sg Voc => x + "oże";
-      SF Pl Nom => x + "ogowie";
-      SF Pl Gen => x + "ogów";
-      SF Pl Dat => x + "ogom";
-      SF Pl Acc => x + "ogów";
-      SF Pl Instr => x + "ogami";
-      SF Pl Loc => x + "ogach";
-      SF Pl Voc => x + "ogowie"
-    };
-
-    oper mkNTable1050: Str -> SubstForm => Str; --%
-    oper mkNTable1050 lexem = 
-      let x = Predef.tk 1 lexem in
-    table { 
-      SF Sg Nom => x + "c";
-      SF Sg Gen => x + "ca";
-      SF Sg Dat => x + "cowi";
-      SF Sg Acc => x + "ca";
-      SF Sg Instr => x + "kiem";
-      SF Sg Loc => x + "cu";
-      SF Sg Voc => x + "cu";
-      SF Pl Nom => x + "ki";
-      SF Pl Gen => x + "ców";
-      SF Pl Dat => x + "com";
-      SF Pl Acc => x + "ki";
-      SF Pl Instr => x + "cami";
-      SF Pl Loc => x + "cach";
-      SF Pl Voc => x + "ki"
-    };
-
-    oper mkNTable1051: Str -> SubstForm => Str; --%
-    oper mkNTable1051 lexem = 
-      let x = Predef.tk 3 lexem in
-    table { 
-      SF Sg Nom => x + "iel";
-      SF Sg Gen => x + "la";
-      SF Sg Dat => x + "lowi";
-      SF Sg Acc => x + "la";
-      SF Sg Instr => x + "lem";
-      SF Sg Loc => x + "lu";
-      SF Sg Voc => x + "lu";
-      SF Pl Nom => x + "le";
-      SF Pl Gen => x + "lów";
-      SF Pl Dat => x + "lom";
-      SF Pl Acc => x + "le";
-      SF Pl Instr => x + "lami";
-      SF Pl Loc => x + "lach";
-      SF Pl Voc => x + "le"
-    };
-
-    oper mkNTable1052: Str -> SubstForm => Str; --%
-    oper mkNTable1052 lexem = 
-      let x = Predef.tk 1 lexem in
-    table { 
-      SF Sg Nom => x + "a";
-      SF Sg Gen => x + "y";
-      SF Sg Dat => x + "ze";
-      SF Sg Acc => x + "ę";
-      SF Sg Instr => x + "ą";
-      SF Sg Loc => x + "ze";
-      SF Sg Voc => x + "o";
-      SF Pl Nom => x + "y";
-      SF Pl Gen => x + "a";
-      SF Pl Dat => x + "om";
-      SF Pl Acc => x + "y";
-      SF Pl Instr => x + "ami";
-      SF Pl Loc => x + "ach";
-      SF Pl Voc => x + "y"
-    };
-
-    oper mkNTable1053: Str -> SubstForm => Str; --%
-    oper mkNTable1053 lexem = 
-      let x = Predef.tk 2 lexem in
-    table { 
-      SF Sg Nom => x + "ca";
-      SF Sg Gen => x + "ki";
-      SF Sg Dat => x + "ce";
-      SF Sg Acc => x + "cę";
-      SF Sg Instr => x + "cą";
-      SF Sg Loc => x + "ce";
-      SF Sg Voc => x + "co";
-      SF Pl Nom => x + "ki";
-      SF Pl Gen => x + "c";
-      SF Pl Dat => x + "com";
-      SF Pl Acc => x + "ki";
-      SF Pl Instr => x + "cami";
-      SF Pl Loc => x + "cach";
-      SF Pl Voc => x + "ki"
-    };
-
-    oper mkNTable1054: Str -> SubstForm => Str; --%
-    oper mkNTable1054 lexem = 
-      let x = Predef.tk 2 lexem in
-    table { 
-      SF Sg Nom => x + "ła";
-      SF Sg Gen => x + "ły";
-      SF Sg Dat => x + "le";
-      SF Sg Acc => x + "łę";
-      SF Sg Instr => x + "łą";
-      SF Sg Loc => x + "le";
-      SF Sg Voc => x + "ło";
-      SF Pl Nom => x + "ły";
-      SF Pl Gen => x + "ieł";
-      SF Pl Dat => x + "łom";
-      SF Pl Acc => x + "ły";
-      SF Pl Instr => x + "łami";
-      SF Pl Loc => x + "łach";
-      SF Pl Voc => x + "ły"
-    };
-
-    oper mkNTable1055: Str -> SubstForm => Str; --%
-    oper mkNTable1055 lexem = 
-      let x = Predef.tk 1 lexem in
-    table { 
-      SF Sg Nom => x + "ź";
-      SF Sg Gen => x + "zia";
-      SF Sg Dat => x + "ziowi";
-      SF Sg Acc => x + "ź";
-      SF Sg Instr => x + "ziem";
-      SF Sg Loc => x + "ziu";
-      SF Sg Voc => x + "ziu";
-      SF Pl Nom => x + "zie";
-      SF Pl Gen => x + "zi";
-      SF Pl Dat => x + "ziom";
-      SF Pl Acc => x + "zie";
-      SF Pl Instr => x + "ziami";
-      SF Pl Loc => x + "ziach";
-      SF Pl Voc => x + "zie"
-    };
-
-    oper mkNTable1056: Str -> SubstForm => Str; --%
-    oper mkNTable1056 lexem = 
-      let x = Predef.tk 1 lexem in
-    table { 
-      SF Sg Nom => x + "ś";
-      SF Sg Gen => x + "sia";
-      SF Sg Dat => x + "siowi";
-      SF Sg Acc => x + "ś";
-      SF Sg Instr => x + "siem";
-      SF Sg Loc => x + "siu";
-      SF Sg Voc => x + "siu";
-      SF Pl Nom => x + "sie";
-      SF Pl Gen => x + "siów";
-      SF Pl Dat => x + "siom";
-      SF Pl Acc => x + "sie";
-      SF Pl Instr => x + "siami";
-      SF Pl Loc => x + "siach";
-      SF Pl Voc => x + "sie"
-    };
-
-    oper mkNTable1057: Str -> SubstForm => Str; --%
-    oper mkNTable1057 lexem = 
-      let x = Predef.tk 1 lexem in
-    table { 
-      SF Sg Nom => x + "y";
-      SF Sg Gen => x + "ego";
-      SF Sg Dat => x + "emu";
-      SF Sg Acc => x + "ego";
-      SF Sg Instr => x + "ym";
-      SF Sg Loc => x + "ym";
-      SF Sg Voc => x + "y";
-      SF Pl Nom => x + "e";
-      SF Pl Gen => x + "ych";
-      SF Pl Dat => x + "ym";
-      SF Pl Acc => x + "e";
-      SF Pl Instr => x + "ymi";
-      SF Pl Loc => x + "ych";
-      SF Pl Voc => x + "e"
-    };
-
-    oper mkNTable1058: Str -> SubstForm => Str; --%
-    oper mkNTable1058 lexem = 
-      let x = Predef.tk 6 lexem in
-    table { 
-      SF Sg Nom => x + "chomik";
-      SF Sg Gen => x + "chomika";
-      SF Sg Dat => x + "chomikowi";
-      SF Sg Acc => x + "chomika";
-      SF Sg Instr => x + "chomikiem";
-      SF Sg Loc => x + "chomiku";
-      SF Sg Voc => x + "chomiku";
-      SF Pl Nom => x + "Chomikowie";
-      SF Pl Gen => x + "chomików";
-      SF Pl Dat => x + "chomikom";
-      SF Pl Acc => x + "chomików";
-      SF Pl Instr => x + "chomikami";
-      SF Pl Loc => x + "chomikach";
-      SF Pl Voc => x + "Chomikowie"
-    };
-
-    oper mkNTable1059: Str -> SubstForm => Str; --%
-    oper mkNTable1059 lexem = 
-      let x = Predef.tk 3 lexem in
-    table { 
-      SF Sg Nom => x + "oba";
-      SF Sg Gen => x + "oby";
-      SF Sg Dat => x + "obie";
-      SF Sg Acc => x + "obę";
-      SF Sg Instr => x + "obą";
-      SF Sg Loc => x + "obie";
-      SF Sg Voc => x + "obo";
-      SF Pl Nom => x + "oby";
-      SF Pl Gen => x + "ób";
-      SF Pl Dat => x + "obom";
-      SF Pl Acc => x + "oby";
-      SF Pl Instr => x + "obami";
-      SF Pl Loc => x + "obach";
-      SF Pl Voc => x + "oby"
-    };
-
-    oper mkNTable1061: Str -> SubstForm => Str; --%
-    oper mkNTable1061 lexem = 
-      let x = Predef.tk 3 lexem in
-    table { 
-      SF Sg Nom => x + "est";
-      SF Sg Gen => x + "tu";
-      SF Sg Dat => x + "towi";
-      SF Sg Acc => x + "est";
-      SF Sg Instr => x + "tem";
-      SF Sg Loc => x + "cie";
-      SF Sg Voc => x + "cie";
-      SF Pl Nom => x + "ty";
-      SF Pl Gen => x + "tów";
-      SF Pl Dat => x + "tom";
-      SF Pl Acc => x + "ty";
-      SF Pl Instr => x + "tami";
-      SF Pl Loc => x + "tach";
-      SF Pl Voc => x + "ty"
-    };
-
-    oper mkNTable1062: Str -> SubstForm => Str; --%
-    oper mkNTable1062 lexem = 
-      let x = Predef.tk 3 lexem in
-    table { 
-      SF Sg Nom => x + "iec";
-      SF Sg Gen => x + "ca";
-      SF Sg Dat => x + "cu";
-      SF Sg Acc => x + "ca";
-      SF Sg Instr => x + "cem";
-      SF Sg Loc => x + "cu";
-      SF Sg Voc => x + "cze";
-      SF Pl Nom => x + "cy";
-      SF Pl Gen => x + "ców";
-      SF Pl Dat => x + "com";
-      SF Pl Acc => x + "ców";
-      SF Pl Instr => x + "cami";
-      SF Pl Loc => x + "cach";
-      SF Pl Voc => x + "cy"
-    };
-
-    oper mkNTable1064: Str -> SubstForm => Str; --%
-    oper mkNTable1064 lexem = 
-      let x = Predef.tk 2 lexem in
-    table { 
-      SF Sg Nom => x + "ów";
-      SF Sg Gen => x + "owu";
-      SF Sg Dat => x + "owowi";
-      SF Sg Acc => x + "ów";
-      SF Sg Instr => x + "owem";
-      SF Sg Loc => x + "owie";
-      SF Sg Voc => x + "owie";
-      SF Pl Nom => x + "owy";
-      SF Pl Gen => x + "owów";
-      SF Pl Dat => x + "owom";
-      SF Pl Acc => x + "owy";
-      SF Pl Instr => x + "owami";
-      SF Pl Loc => x + "owach";
-      SF Pl Voc => x + "owy"
-    };
-
-    oper mkNTable1065: Str -> SubstForm => Str; --%
-    oper mkNTable1065 lexem = 
-      let x = lexem in
-    table { 
-      SF Sg Nom => x + "a";
-      SF Sg Gen => x + "";
-      SF Sg Dat => x + "";
-      SF Sg Acc => x + "ę";
-      SF Sg Instr => x + "ą";
-      SF Sg Loc => x + "";
-      SF Sg Voc => x + "u";
-      SF Pl Nom => x + "e";
-      SF Pl Gen => x + "ów";
-      SF Pl Dat => x + "om";
-      SF Pl Acc => x + "ów";
-      SF Pl Instr => x + "ami";
-      SF Pl Loc => x + "ach";
-      SF Pl Voc => x + "e"
-    };
-
-    oper mkNTable1066: Str -> SubstForm => Str; --%
-    oper mkNTable1066 lexem = 
-      let x = Predef.tk 1 lexem in
-    table { 
-      SF Sg Nom => x + "o";
-      SF Sg Gen => x + "o";
-      SF Sg Dat => x + "u";
-      SF Sg Acc => x + "o";
-      SF Sg Instr => x + "o";
-      SF Sg Loc => x + "ze";
-      SF Sg Voc => x + "o";
-      SF Pl Nom => x + "o";
-      SF Pl Gen => x + "o";
-      SF Pl Dat => x + "om";
-      SF Pl Acc => x + "o";
-      SF Pl Instr => x + "o";
-      SF Pl Loc => x + "o";
-      SF Pl Voc => x + "o"
-    };
-
-    oper mkNTable1067: Str -> SubstForm => Str; --%
-    oper mkNTable1067 lexem = 
-      let x = Predef.tk 1 lexem in
-    table { 
-      SF Sg Nom => x + "e";
-      SF Sg Gen => x + "e";
-      SF Sg Dat => x + "owi";
-      SF Sg Acc => x + "e";
-      SF Sg Instr => x + "em";
-      SF Sg Loc => x + "ie";
-      SF Sg Voc => x + "ie";
-      SF Pl Nom => x + "owie";
-      SF Pl Gen => x + "ów";
-      SF Pl Dat => x + "om";
-      SF Pl Acc => x + "ów";
-      SF Pl Instr => x + "e";
-      SF Pl Loc => x + "e";
-      SF Pl Voc => x + "owie"
-    };
-
-    oper mkNTable1068: Str -> SubstForm => Str; --%
-    oper mkNTable1068 lexem = 
-      let x = Predef.tk 0 lexem in
-    table { 
-      SF Sg Nom => x + "";
-      SF Sg Gen => x + "ia";
-      SF Sg Dat => x + "iowi";
-      SF Sg Acc => x + "ia";
-      SF Sg Instr => x + "iem";
-      SF Sg Loc => x + "iu";
-      SF Sg Voc => x + "iu";
-      SF Pl Nom => x + "ie";
-      SF Pl Gen => x + "i";
-      SF Pl Dat => x + "iom";
-      SF Pl Acc => x + "ie";
-      SF Pl Instr => x + "iami";
-      SF Pl Loc => x + "iach";
-      SF Pl Voc => x + "ie"
-    };
-
-    oper mkNTable1069: Str -> SubstForm => Str; --%
-    oper mkNTable1069 lexem = 
-      let x = Predef.tk 1 lexem in
-    table { 
-      SF Sg Nom => x + "ć";
-      SF Sg Gen => x + "cia";
-      SF Sg Dat => x + "ciowi";
-      SF Sg Acc => x + "cia";
-      SF Sg Instr => x + "ciem";
-      SF Sg Loc => x + "ciu";
-      SF Sg Voc => x + "ciu";
-      SF Pl Nom => x + "cie";
-      SF Pl Gen => x + "ciów";
-      SF Pl Dat => x + "ciom";
-      SF Pl Acc => x + "ciów";
-      SF Pl Instr => x + "ciami";
-      SF Pl Loc => x + "ciach";
-      SF Pl Voc => x + "cie"
-    };
-
-    oper mkNTable1070: Str -> SubstForm => Str; --%
-    oper mkNTable1070 lexem = 
-      let x = Predef.tk 3 lexem in
-    table { 
-      SF Sg Nom => x + "sła";
-      SF Sg Gen => x + "sły";
-      SF Sg Dat => x + "śle";
-      SF Sg Acc => x + "słę";
-      SF Sg Instr => x + "słą";
-      SF Sg Loc => x + "śle";
-      SF Sg Voc => x + "sło";
-      SF Pl Nom => x + "sły";
-      SF Pl Gen => x + "seł";
-      SF Pl Dat => x + "słom";
-      SF Pl Acc => x + "sły";
-      SF Pl Instr => x + "słami";
-      SF Pl Loc => x + "słach";
-      SF Pl Voc => x + "sły"
-    };
-
-    oper mkNTable1071: Str -> SubstForm => Str; --%
-    oper mkNTable1071 lexem = 
-      let x = Predef.tk 5 lexem in
-    table { 
-      SF Sg Nom => x + "ciura";
-      SF Sg Gen => x + "ciury";
-      SF Sg Dat => x + "ciurze";
-      SF Sg Acc => x + "ciurę";
-      SF Sg Instr => x + "ciurą";
-      SF Sg Loc => x + "ciurze";
-      SF Sg Voc => x + "ciuro";
-      SF Pl Nom => x + "Ciurowie";
-      SF Pl Gen => x + "ciurów";
-      SF Pl Dat => x + "ciurom";
-      SF Pl Acc => x + "ciurów";
-      SF Pl Instr => x + "ciurami";
-      SF Pl Loc => x + "ciurach";
-      SF Pl Voc => x + "Ciurowie"
-    };
-
-    oper mkNTable1072: Str -> SubstForm => Str; --%
-    oper mkNTable1072 lexem = 
-      let x = Predef.tk 2 lexem in
-    table { 
-      SF Sg Nom => x + "ło";
-      SF Sg Gen => x + "ła";
-      SF Sg Dat => x + "łu";
-      SF Sg Acc => x + "ło";
-      SF Sg Instr => x + "łem";
-      SF Sg Loc => x + "le";
-      SF Sg Voc => x + "ło";
-      SF Pl Nom => x + "ła";
-      SF Pl Gen => x + "ieł";
-      SF Pl Dat => x + "łom";
-      SF Pl Acc => x + "ła";
-      SF Pl Instr => x + "łami";
-      SF Pl Loc => x + "łach";
-      SF Pl Voc => x + "ła"
-    };
-
-    oper mkNTable1073: Str -> SubstForm => Str; --%
-    oper mkNTable1073 lexem = 
-      let x = Predef.tk 3 lexem in
-    table { 
-      SF Sg Nom => x + "ota";
-      SF Sg Gen => x + "oty";
-      SF Sg Dat => x + "ocie";
-      SF Sg Acc => x + "otę";
-      SF Sg Instr => x + "otą";
-      SF Sg Loc => x + "ocie";
-      SF Sg Voc => x + "oto";
-      SF Pl Nom => x + "oty";
-      SF Pl Gen => x + "ót";
-      SF Pl Dat => x + "otom";
-      SF Pl Acc => x + "oty";
-      SF Pl Instr => x + "otami";
-      SF Pl Loc => x + "otach";
-      SF Pl Voc => x + "oty"
-    };
-
-    oper mkNTable1074: Str -> SubstForm => Str; --%
-    oper mkNTable1074 lexem = 
-      let x = Predef.tk 2 lexem in
-    table { 
-      SF Sg Nom => x + "ół";
-      SF Sg Gen => x + "ołu";
-      SF Sg Dat => x + "ołowi";
-      SF Sg Acc => x + "ół";
-      SF Sg Instr => x + "ołem";
-      SF Sg Loc => x + "ole";
-      SF Sg Voc => x + "ole";
-      SF Pl Nom => x + "oły";
-      SF Pl Gen => x + "ołów";
-      SF Pl Dat => x + "ołom";
-      SF Pl Acc => x + "oły";
-      SF Pl Instr => x + "ołami";
-      SF Pl Loc => x + "ołach";
-      SF Pl Voc => x + "oły"
-    };
-
-    oper mkNTable1075: Str -> SubstForm => Str; --%
-    oper mkNTable1075 lexem = 
-      let x = Predef.tk 1 lexem in
-    table { 
-      SF Sg Nom => x + "o";
-      SF Sg Gen => x + "o";
-      SF Sg Dat => x + "u";
-      SF Sg Acc => x + "o";
-      SF Sg Instr => x + "o";
-      SF Sg Loc => x + "zie";
-      SF Sg Voc => x + "o";
-      SF Pl Nom => x + "o";
-      SF Pl Gen => x + "o";
-      SF Pl Dat => x + "om";
-      SF Pl Acc => x + "o";
-      SF Pl Instr => x + "o";
-      SF Pl Loc => x + "o";
-      SF Pl Voc => x + "o"
-    };
-
-    oper mkNTable1076: Str -> SubstForm => Str; --%
-    oper mkNTable1076 lexem = 
-      let x = Predef.tk 1 lexem in
-    table { 
-      SF Sg Nom => x + "o";
-      SF Sg Gen => x + "a";
-      SF Sg Dat => x + "u";
-      SF Sg Acc => x + "o";
-      SF Sg Instr => x + "em";
-      SF Sg Loc => x + "zie";
-      SF Sg Voc => x + "o";
-      SF Pl Nom => x + "a";
-      SF Pl Gen => x + "ów";
-      SF Pl Dat => x + "om";
-      SF Pl Acc => x + "a";
-      SF Pl Instr => x + "ami";
-      SF Pl Loc => x + "ach";
-      SF Pl Voc => x + "a"
-    };
-
-    oper mkNTable1078: Str -> SubstForm => Str; --%
-    oper mkNTable1078 lexem = 
-      let x = Predef.tk 6 lexem in
-    table { 
-      SF Sg Nom => x + "cymbał";
-      SF Sg Gen => x + "cymbała";
-      SF Sg Dat => x + "cymbałowi";
-      SF Sg Acc => x + "cymbała";
-      SF Sg Instr => x + "cymbałem";
-      SF Sg Loc => x + "cymbale";
-      SF Sg Voc => x + "cymbale";
-      SF Pl Nom => x + "Cymbałowie";
-      SF Pl Gen => x + "cymbałów";
-      SF Pl Dat => x + "cymbałom";
-      SF Pl Acc => x + "cymbałów";
-      SF Pl Instr => x + "cymbałami";
-      SF Pl Loc => x + "cymbałach";
-      SF Pl Voc => x + "Cymbałowie"
-    };
-
-    oper mkNTable1079: Str -> SubstForm => Str; --%
-    oper mkNTable1079 lexem = 
-      let x = Predef.tk 2 lexem in
-    table { 
-      SF Sg Nom => x + "el";
-      SF Sg Gen => x + "la";
-      SF Sg Dat => x + "lowi";
-      SF Sg Acc => x + "el";
-      SF Sg Instr => x + "lem";
-      SF Sg Loc => x + "lu";
-      SF Sg Voc => x + "lu";
-      SF Pl Nom => x + "le";
-      SF Pl Gen => x + "lów";
-      SF Pl Dat => x + "lom";
-      SF Pl Acc => x + "le";
-      SF Pl Instr => x + "lami";
-      SF Pl Loc => x + "lach";
-      SF Pl Voc => x + "le"
-    };
-
-    oper mkNTable1080: Str -> SubstForm => Str; --%
-    oper mkNTable1080 lexem = 
-      let x = Predef.tk 1 lexem in
-    table { 
-      SF Sg Nom => x + "t";
-      SF Sg Gen => x + "ta";
-      SF Sg Dat => x + "tu";
-      SF Sg Acc => x + "ta";
-      SF Sg Instr => x + "tem";
-      SF Sg Loc => x + "cie";
-      SF Sg Voc => x + "cie";
-      SF Pl Nom => x + "ci";
-      SF Pl Gen => x + "tów";
-      SF Pl Dat => x + "tom";
-      SF Pl Acc => x + "tów";
-      SF Pl Instr => x + "tami";
-      SF Pl Loc => x + "tach";
-      SF Pl Voc => x + "ci"
-    };
-
-    oper mkNTable1081: Str -> SubstForm => Str; --%
-    oper mkNTable1081 lexem = 
-      let x = Predef.tk 1 lexem in
-    table { 
-      SF Sg Nom => x + "t";
-      SF Sg Gen => x + "ta";
-      SF Sg Dat => x + "tu";
-      SF Sg Acc => x + "ta";
-      SF Sg Instr => x + "tem";
-      SF Sg Loc => x + "cie";
-      SF Sg Voc => x + "cie";
-      SF Pl Nom => x + "ty";
-      SF Pl Gen => x + "tów";
-      SF Pl Dat => x + "tom";
-      SF Pl Acc => x + "ty";
-      SF Pl Instr => x + "tami";
-      SF Pl Loc => x + "tach";
-      SF Pl Voc => x + "ty"
-    };
-
-    oper mkNTable1082: Str -> SubstForm => Str; --%
-    oper mkNTable1082 lexem = 
-      let x = Predef.tk 3 lexem in
-    table { 
-      SF Sg Nom => x + "smo";
-      SF Sg Gen => x + "sma";
-      SF Sg Dat => x + "smu";
-      SF Sg Acc => x + "smo";
-      SF Sg Instr => x + "smem";
-      SF Sg Loc => x + "śmie";
-      SF Sg Voc => x + "smo";
-      SF Pl Nom => x + "sma";
-      SF Pl Gen => x + "sm";
-      SF Pl Dat => x + "smom";
-      SF Pl Acc => x + "sma";
-      SF Pl Instr => x + "smami";
-      SF Pl Loc => x + "smach";
-      SF Pl Voc => x + "sma"
-    };
-
-    oper mkNTable1083: Str -> SubstForm => Str; --%
-    oper mkNTable1083 lexem = 
-      let x = Predef.tk 1 lexem in
-    table { 
-      SF Sg Nom => x + "ź";
-      SF Sg Gen => x + "zi";
-      SF Sg Dat => x + "zi";
-      SF Sg Acc => x + "ź";
-      SF Sg Instr => x + "zią";
-      SF Sg Loc => x + "zi";
-      SF Sg Voc => x + "zi";
-      SF Pl Nom => x + "zie";
-      SF Pl Gen => x + "zi";
-      SF Pl Dat => x + "ziom";
-      SF Pl Acc => x + "zie";
-      SF Pl Instr => x + "ziami";
-      SF Pl Loc => x + "ziach";
-      SF Pl Voc => x + "zie"
-    };
-
-    oper mkNTable1084: Str -> SubstForm => Str; --%
-    oper mkNTable1084 lexem = 
-      let x = Predef.tk 0 lexem in
-    table { 
-      SF Sg Nom => x + "";
-      SF Sg Gen => x + "iu";
-      SF Sg Dat => x + "iowi";
-      SF Sg Acc => x + "";
-      SF Sg Instr => x + "iem";
-      SF Sg Loc => x + "iu";
-      SF Sg Voc => x + "iu";
-      SF Pl Nom => x + "ie";
-      SF Pl Gen => x + "i";
-      SF Pl Dat => x + "iom";
-      SF Pl Acc => x + "ie";
-      SF Pl Instr => x + "iami";
-      SF Pl Loc => x + "iach";
-      SF Pl Voc => x + "ie"
-    };
-
-    oper mkNTable1085: Str -> SubstForm => Str; --%
-    oper mkNTable1085 lexem = 
-      let x = Predef.tk 3 lexem in
-    table { 
-      SF Sg Nom => x + "eść";
-      SF Sg Gen => x + "ci";
-      SF Sg Dat => x + "ci";
-      SF Sg Acc => x + "eść";
-      SF Sg Instr => x + "cią";
-      SF Sg Loc => x + "ci";
-      SF Sg Voc => x + "ci";
-      SF Pl Nom => x + "ci";
-      SF Pl Gen => x + "ci";
-      SF Pl Dat => x + "ciom";
-      SF Pl Acc => x + "ci";
-      SF Pl Instr => x + "ciami";
-      SF Pl Loc => x + "ciach";
-      SF Pl Voc => x + "ci"
-    };
-
-    oper mkNTable1086: Str -> SubstForm => Str; --%
-    oper mkNTable1086 lexem = 
-      let x = Predef.tk 3 lexem in
-    table { 
-      SF Sg Nom => x + "oło";
-      SF Sg Gen => x + "oła";
-      SF Sg Dat => x + "ołu";
-      SF Sg Acc => x + "oło";
-      SF Sg Instr => x + "ołem";
-      SF Sg Loc => x + "ole";
-      SF Sg Voc => x + "oło";
-      SF Pl Nom => x + "oła";
-      SF Pl Gen => x + "ół";
-      SF Pl Dat => x + "ołom";
-      SF Pl Acc => x + "oła";
-      SF Pl Instr => x + "ołami";
-      SF Pl Loc => x + "ołach";
-      SF Pl Voc => x + "oła"
-    };
-
-    oper mkNTable1087: Str -> SubstForm => Str; --%
-    oper mkNTable1087 lexem = 
-      let x = Predef.tk 6 lexem in
-    table { 
-      SF Sg Nom => x + "czubek";
-      SF Sg Gen => x + "czubka";
-      SF Sg Dat => x + "czubkowi";
-      SF Sg Acc => x + "czubka";
-      SF Sg Instr => x + "czubkiem";
-      SF Sg Loc => x + "czubku";
-      SF Sg Voc => x + "czubku";
-      SF Pl Nom => x + "Czubkowie";
-      SF Pl Gen => x + "czubków";
-      SF Pl Dat => x + "czubkom";
-      SF Pl Acc => x + "czubków";
-      SF Pl Instr => x + "czubkami";
-      SF Pl Loc => x + "czubkach";
-      SF Pl Voc => x + "Czubkowie"
-    };
-
-    oper mkNTable1088: Str -> SubstForm => Str; --%
-    oper mkNTable1088 lexem = 
-      let x = Predef.tk 1 lexem in
-    table { 
-      SF Sg Nom => x + "y";
-      SF Sg Gen => x + "ego";
-      SF Sg Dat => x + "emu";
-      SF Sg Acc => x + "y";
-      SF Sg Instr => x + "ym";
-      SF Sg Loc => x + "ym";
-      SF Sg Voc => x + "y";
-      SF Pl Nom => x + "e";
-      SF Pl Gen => x + "ych";
-      SF Pl Dat => x + "ym";
-      SF Pl Acc => x + "e";
-      SF Pl Instr => x + "ymi";
-      SF Pl Loc => x + "ych";
-      SF Pl Voc => x + "e"
-    };
-
-    oper mkNTable1089: Str -> SubstForm => Str; --%
-    oper mkNTable1089 lexem = 
-      let x = Predef.tk 4 lexem in
-    table { 
-      SF Sg Nom => x + "ciec";
-      SF Sg Gen => x + "ćca";
-      SF Sg Dat => x + "ćcowi";
-      SF Sg Acc => x + "ćca";
-      SF Sg Instr => x + "ćcem";
-      SF Sg Loc => x + "ćcu";
-      SF Sg Voc => x + "ćcu";
-      SF Pl Nom => x + "ćce";
-      SF Pl Gen => x + "ćców";
-      SF Pl Dat => x + "ćcom";
-      SF Pl Acc => x + "ćce";
-      SF Pl Instr => x + "ćcami";
-      SF Pl Loc => x + "ćcach";
-      SF Pl Voc => x + "ćce"
-    };
-
-    oper mkNTable1090: Str -> SubstForm => Str; --%
-    oper mkNTable1090 lexem = 
-      let x = Predef.tk 4 lexem in
-    table { 
-      SF Sg Nom => x + "ciec";
-      SF Sg Gen => x + "ćca";
-      SF Sg Dat => x + "ćcowi";
-      SF Sg Acc => x + "ciec";
-      SF Sg Instr => x + "ćcem";
-      SF Sg Loc => x + "ćcu";
-      SF Sg Voc => x + "ćcu";
-      SF Pl Nom => x + "ćce";
-      SF Pl Gen => x + "ćców";
-      SF Pl Dat => x + "ćcom";
-      SF Pl Acc => x + "ćce";
-      SF Pl Instr => x + "ćcami";
-      SF Pl Loc => x + "ćcach";
-      SF Pl Voc => x + "ćce"
-    };
-
-    oper mkNTable1091: Str -> SubstForm => Str; --%
-    oper mkNTable1091 lexem = 
-      let x = Predef.tk 8 lexem in
-    table { 
-      SF Sg Nom => x + "człowiek";
-      SF Sg Gen => x + "człowieka";
-      SF Sg Dat => x + "człowiekowi";
-      SF Sg Acc => x + "człowieka";
-      SF Sg Instr => x + "człowiekiem";
-      SF Sg Loc => x + "człowieku";
-      SF Sg Voc => x + "człowieku";
-      SF Pl Nom => x + "ludzie";
-      SF Pl Gen => x + "ludzi";
-      SF Pl Dat => x + "ludziom";
-      SF Pl Acc => x + "ludzi";
-      SF Pl Instr => x + "ludźmi";
-      SF Pl Loc => x + "ludziach";
-      SF Pl Voc => x + "ludzie"
-    };
-
-    oper mkNTable1094: Str -> SubstForm => Str; --%
-    oper mkNTable1094 lexem = 
-      let x = Predef.tk 1 lexem in
-    table { 
-      SF Sg Nom => x + "ś";
-      SF Sg Gen => x + "si";
-      SF Sg Dat => x + "si";
-      SF Sg Acc => x + "ś";
-      SF Sg Instr => x + "sią";
-      SF Sg Loc => x + "si";
-      SF Sg Voc => x + "ś";
-      SF Pl Nom => x + "sie";
-      SF Pl Gen => x + "si";
-      SF Pl Dat => x + "siom";
-      SF Pl Acc => x + "sie";
-      SF Pl Instr => x + "siami";
-      SF Pl Loc => x + "siach";
-      SF Pl Voc => x + "sie"
-    };
-
-    oper mkNTable1097: Str -> SubstForm => Str; --%
-    oper mkNTable1097 lexem = 
-      let x = Predef.tk 1 lexem in
-    table { 
-      SF Sg Nom => x + "ń";
-      SF Sg Gen => x + "ni";
-      SF Sg Dat => x + "ni";
-      SF Sg Acc => x + "ń";
-      SF Sg Instr => x + "nią";
-      SF Sg Loc => x + "ni";
-      SF Sg Voc => x + "ni";
-      SF Pl Nom => x + "nie";
-      SF Pl Gen => x + "ni";
-      SF Pl Dat => x + "niom";
-      SF Pl Acc => x + "nie";
-      SF Pl Instr => x + "ńmi";
-      SF Pl Loc => x + "niach";
-      SF Pl Voc => x + "nie"
-    };
-
-    oper mkNTable1098: Str -> SubstForm => Str; --%
-    oper mkNTable1098 lexem = 
-      let x = Predef.tk 2 lexem in
-    table { 
-      SF Sg Nom => x + "el";
-      SF Sg Gen => x + "la";
-      SF Sg Dat => x + "lowi";
-      SF Sg Acc => x + "la";
-      SF Sg Instr => x + "lem";
-      SF Sg Loc => x + "lu";
-      SF Sg Voc => x + "lu";
-      SF Pl Nom => x + "le";
-      SF Pl Gen => x + "lów";
-      SF Pl Dat => x + "lom";
-      SF Pl Acc => x + "le";
-      SF Pl Instr => x + "lami";
-      SF Pl Loc => x + "lach";
-      SF Pl Voc => x + "le"
-    };
-
-    oper mkNTable1099: Str -> SubstForm => Str; --%
-    oper mkNTable1099 lexem = 
-      let x = Predef.tk 7 lexem in
-    table { 
-      SF Sg Nom => x + "dekapol";
-      SF Sg Gen => x + "Dekapolu";
-      SF Sg Dat => x + "Dekapolowi";
-      SF Sg Acc => x + "dekapol";
-      SF Sg Instr => x + "Dekapolem";
-      SF Sg Loc => x + "Dekapolu";
-      SF Sg Voc => x + "Dekapolu";
-      SF Pl Nom => x + "dekapole";
-      SF Pl Gen => x + "dekapoli";
-      SF Pl Dat => x + "dekapolom";
-      SF Pl Acc => x + "dekapole";
-      SF Pl Instr => x + "dekapolami";
-      SF Pl Loc => x + "dekapolach";
-      SF Pl Voc => x + "dekapole"
-    };
-
-    oper mkNTable1100: Str -> SubstForm => Str; --%
-    oper mkNTable1100 lexem = 
-      let x = Predef.tk 1 lexem in
-    table { 
-      SF Sg Nom => x + "ń";
-      SF Sg Gen => x + "niu";
-      SF Sg Dat => x + "niowi";
-      SF Sg Acc => x + "ń";
-      SF Sg Instr => x + "niem";
-      SF Sg Loc => x + "niu";
-      SF Sg Voc => x + "niu";
-      SF Pl Nom => x + "nie";
-      SF Pl Gen => x + "ni";
-      SF Pl Dat => x + "niom";
-      SF Pl Acc => x + "nie";
-      SF Pl Instr => x + "niami";
-      SF Pl Loc => x + "niach";
-      SF Pl Voc => x + "nie"
-    };
-
-    oper mkNTable1101: Str -> SubstForm => Str; --%
-    oper mkNTable1101 lexem = 
-      let x = Predef.tk 5 lexem in
-    table { 
-      SF Sg Nom => x + "eszcz";
-      SF Sg Gen => x + "żdżu";
-      SF Sg Dat => x + "żdżowi";
-      SF Sg Acc => x + "eszcz";
-      SF Sg Instr => x + "żdżem";
-      SF Sg Loc => x + "żdżu";
-      SF Sg Voc => x + "żdżu";
-      SF Pl Nom => x + "żdże";
-      SF Pl Gen => x + "żdżów";
-      SF Pl Dat => x + "żdżom";
-      SF Pl Acc => x + "żdże";
-      SF Pl Instr => x + "żdżami";
-      SF Pl Loc => x + "żdżach";
-      SF Pl Voc => x + "żdże"
-    };
-
-    oper mkNTable1102: Str -> SubstForm => Str; --%
-    oper mkNTable1102 lexem = 
-      let x = Predef.tk 2 lexem in
-    table { 
-      SF Sg Nom => x + "eł";
-      SF Sg Gen => x + "ła";
-      SF Sg Dat => x + "łu";
-      SF Sg Acc => x + "ła";
-      SF Sg Instr => x + "łem";
-      SF Sg Loc => x + "le";
-      SF Sg Voc => x + "le";
-      SF Pl Nom => x + "li";
-      SF Pl Gen => x + "łów";
-      SF Pl Dat => x + "łom";
-      SF Pl Acc => x + "łów";
-      SF Pl Instr => x + "łami";
-      SF Pl Loc => x + "łach";
-      SF Pl Voc => x + "li"
-    };
-
-    oper mkNTable1103: Str -> SubstForm => Str; --%
-    oper mkNTable1103 lexem = 
-      let x = Predef.tk 2 lexem in
-    table { 
-      SF Sg Nom => x + "eł";
-      SF Sg Gen => x + "ła";
-      SF Sg Dat => x + "łu";
-      SF Sg Acc => x + "ła";
-      SF Sg Instr => x + "łem";
-      SF Sg Loc => x + "le";
-      SF Sg Voc => x + "le";
-      SF Pl Nom => x + "ły";
-      SF Pl Gen => x + "łów";
-      SF Pl Dat => x + "łom";
-      SF Pl Acc => x + "ły";
-      SF Pl Instr => x + "łami";
-      SF Pl Loc => x + "łach";
-      SF Pl Voc => x + "ły"
-    };
-
-    oper mkNTable1105: Str -> SubstForm => Str; --%
-    oper mkNTable1105 lexem = 
-      let x = Predef.tk 4 lexem in
-    table { 
-      SF Sg Nom => x + "obro";
-      SF Sg Gen => x + "obra";
-      SF Sg Dat => x + "obru";
-      SF Sg Acc => x + "obro";
-      SF Sg Instr => x + "obrem";
-      SF Sg Loc => x + "obru";
-      SF Sg Voc => x + "obro";
-      SF Pl Nom => x + "obra";
-      SF Pl Gen => x + "óbr";
-      SF Pl Dat => x + "obrom";
-      SF Pl Acc => x + "obra";
-      SF Pl Instr => x + "obrami";
-      SF Pl Loc => x + "obrach";
-      SF Pl Voc => x + "obra"
-    };
-
-    oper mkNTable1106: Str -> SubstForm => Str; --%
-    oper mkNTable1106 lexem = 
-      let x = Predef.tk 3 lexem in
-    table { 
-      SF Sg Nom => x + "azd";
-      SF Sg Gen => x + "azdu";
-      SF Sg Dat => x + "azdowi";
-      SF Sg Acc => x + "azd";
-      SF Sg Instr => x + "azdem";
-      SF Sg Loc => x + "eździe";
-      SF Sg Voc => x + "eździe";
-      SF Pl Nom => x + "azdy";
-      SF Pl Gen => x + "azdów";
-      SF Pl Dat => x + "azdom";
-      SF Pl Acc => x + "azdy";
-      SF Pl Instr => x + "azdami";
-      SF Pl Loc => x + "azdach";
-      SF Pl Voc => x + "azdy"
-    };
-
-    oper mkNTable1107: Str -> SubstForm => Str; --%
-    oper mkNTable1107 lexem = 
-      let x = Predef.tk 2 lexem in
-    table { 
-      SF Sg Nom => x + "ór";
-      SF Sg Gen => x + "ora";
-      SF Sg Dat => x + "orowi";
-      SF Sg Acc => x + "ora";
-      SF Sg Instr => x + "orem";
-      SF Sg Loc => x + "orze";
-      SF Sg Voc => x + "orze";
-      SF Pl Nom => x + "orzy";
-      SF Pl Gen => x + "orów";
-      SF Pl Dat => x + "orom";
-      SF Pl Acc => x + "orów";
-      SF Pl Instr => x + "orami";
-      SF Pl Loc => x + "orach";
-      SF Pl Voc => x + "orzy"
-    };
-
-    oper mkNTable1108: Str -> SubstForm => Str; --%
-    oper mkNTable1108 lexem = 
-      let x = Predef.tk 3 lexem in
-    table { 
-      SF Sg Nom => x + "ola";
-      SF Sg Gen => x + "oli";
-      SF Sg Dat => x + "oli";
-      SF Sg Acc => x + "olę";
-      SF Sg Instr => x + "olą";
-      SF Sg Loc => x + "oli";
-      SF Sg Voc => x + "olo";
-      SF Pl Nom => x + "ole";
-      SF Pl Gen => x + "ól";
-      SF Pl Dat => x + "olom";
-      SF Pl Acc => x + "ole";
-      SF Pl Instr => x + "olami";
-      SF Pl Loc => x + "olach";
-      SF Pl Voc => x + "ole"
-    };
-
-    oper mkNTable1109: Str -> SubstForm => Str; --%
-    oper mkNTable1109 lexem = 
-      let x = Predef.tk 2 lexem in
-    table { 
-      SF Sg Nom => x + "sł";
-      SF Sg Gen => x + "słu";
-      SF Sg Dat => x + "słowi";
-      SF Sg Acc => x + "sł";
-      SF Sg Instr => x + "słem";
-      SF Sg Loc => x + "śle";
-      SF Sg Voc => x + "śle";
-      SF Pl Nom => x + "sły";
-      SF Pl Gen => x + "słów";
-      SF Pl Dat => x + "słom";
-      SF Pl Acc => x + "sły";
-      SF Pl Instr => x + "słami";
-      SF Pl Loc => x + "słach";
-      SF Pl Voc => x + "sły"
-    };
-
-    oper mkNTable1112: Str -> SubstForm => Str; --%
-    oper mkNTable1112 lexem = 
-      let x = Predef.tk 3 lexem in
-    table { 
-      SF Sg Nom => x + "oga";
-      SF Sg Gen => x + "ogi";
-      SF Sg Dat => x + "odze";
-      SF Sg Acc => x + "ogę";
-      SF Sg Instr => x + "ogą";
-      SF Sg Loc => x + "odze";
-      SF Sg Voc => x + "ogo";
-      SF Pl Nom => x + "ogi";
-      SF Pl Gen => x + "óg";
-      SF Pl Dat => x + "ogom";
-      SF Pl Acc => x + "ogi";
-      SF Pl Instr => x + "ogami";
-      SF Pl Loc => x + "ogach";
-      SF Pl Voc => x + "ogi"
-    };
-
-    oper mkNTable1114: Str -> SubstForm => Str; --%
-    oper mkNTable1114 lexem = 
-      let x = Predef.tk 0 lexem in
-    table { 
-      SF Sg Nom => x + "";
-      SF Sg Gen => x + "ia";
-      SF Sg Dat => x + "iowi";
-      SF Sg Acc => x + "ia";
-      SF Sg Instr => x + "iem";
-      SF Sg Loc => x + "iu";
-      SF Sg Voc => x + "iu";
-      SF Pl Nom => x + "ie";
-      SF Pl Gen => x + "iów";
-      SF Pl Dat => x + "iom";
-      SF Pl Acc => x + "ie";
-      SF Pl Instr => x + "iami";
-      SF Pl Loc => x + "iach";
-      SF Pl Voc => x + "ie"
-    };
-
-    oper mkNTable1115: Str -> SubstForm => Str; --%
-    oper mkNTable1115 lexem = 
-      let x = Predef.tk 2 lexem in
-    table { 
-      SF Sg Nom => x + "zd";
-      SF Sg Gen => x + "zda";
-      SF Sg Dat => x + "zdowi";
-      SF Sg Acc => x + "zda";
-      SF Sg Instr => x + "zdem";
-      SF Sg Loc => x + "ździe";
-      SF Sg Voc => x + "ździe";
-      SF Pl Nom => x + "zdy";
-      SF Pl Gen => x + "zdów";
-      SF Pl Dat => x + "zdom";
-      SF Pl Acc => x + "zdy";
-      SF Pl Instr => x + "zdami";
-      SF Pl Loc => x + "zdach";
-      SF Pl Voc => x + "zdy"
-    };
-
-    oper mkNTable1117: Str -> SubstForm => Str; --%
-    oper mkNTable1117 lexem = 
-      let x = Predef.tk 1 lexem in
-    table { 
-      SF Sg Nom => x + "e";
-      SF Sg Gen => x + "ego";
-      SF Sg Dat => x + "emu";
-      SF Sg Acc => x + "ego";
-      SF Sg Instr => x + "em";
-      SF Sg Loc => x + "em";
-      SF Sg Voc => x + "e";
-      SF Pl Nom => x + "owie";
-      SF Pl Gen => x + "ów";
-      SF Pl Dat => x + "om";
-      SF Pl Acc => x + "ów";
-      SF Pl Instr => x + "e";
-      SF Pl Loc => x + "e";
-      SF Pl Voc => x + "owie"
-    };
-
-    oper mkNTable1118: Str -> SubstForm => Str; --%
-    oper mkNTable1118 lexem = 
-      let x = Predef.tk 2 lexem in
-    table { 
-      SF Sg Nom => x + "ha";
-      SF Sg Gen => x + "hy";
-      SF Sg Dat => x + "sze";
-      SF Sg Acc => x + "hę";
-      SF Sg Instr => x + "hą";
-      SF Sg Loc => x + "sze";
-      SF Sg Voc => x + "ho";
-      SF Pl Nom => x + "hy";
-      SF Pl Gen => x + "h";
-      SF Pl Dat => x + "hom";
-      SF Pl Acc => x + "hy";
-      SF Pl Instr => x + "hami";
-      SF Pl Loc => x + "hach";
-      SF Pl Voc => x + "hy"
-    };
-
-    oper mkNTable1119: Str -> SubstForm => Str; --%
-    oper mkNTable1119 lexem = 
-      let x = Predef.tk 3 lexem in
-    table { 
-      SF Sg Nom => x + "duk";
-      SF Sg Gen => x + "duka";
-      SF Sg Dat => x + "Dukowi";
-      SF Sg Acc => x + "duka";
-      SF Sg Instr => x + "Dukiem";
-      SF Sg Loc => x + "Duku";
-      SF Sg Voc => x + "Duku";
-      SF Pl Nom => x + "Dukowie";
-      SF Pl Gen => x + "Duków";
-      SF Pl Dat => x + "dukom";
-      SF Pl Acc => x + "Duków";
-      SF Pl Instr => x + "dukami";
-      SF Pl Loc => x + "dukach";
-      SF Pl Voc => x + "Dukowie"
-    };
-
-    oper mkNTable1120: Str -> SubstForm => Str; --%
-    oper mkNTable1120 lexem = 
-      let x = Predef.tk 0 lexem in
-    table { 
-      SF Sg Nom => x + "";
-      SF Sg Gen => x + "u";
-      SF Sg Dat => x + "";
-      SF Sg Acc => x + "";
-      SF Sg Instr => x + "em";
-      SF Sg Loc => x + "ze";
-      SF Sg Voc => x + "ze";
-      SF Pl Nom => x + "y";
-      SF Pl Gen => x + "ów";
-      SF Pl Dat => x + "om";
-      SF Pl Acc => x + "y";
-      SF Pl Instr => x + "ami";
-      SF Pl Loc => x + "ach";
-      SF Pl Voc => x + "y"
-    };
-
-    oper mkNTable1121: Str -> SubstForm => Str; --%
-    oper mkNTable1121 lexem = 
-      let x = Predef.tk 2 lexem in
-    table { 
-      SF Sg Nom => x + "eń";
-      SF Sg Gen => x + "nia";
-      SF Sg Dat => x + "niowi";
-      SF Sg Acc => x + "nia";
-      SF Sg Instr => x + "niem";
-      SF Sg Loc => x + "niu";
-      SF Sg Voc => x + "niu";
-      SF Pl Nom => x + "nie";
-      SF Pl Gen => x + "niów";
-      SF Pl Dat => x + "niom";
-      SF Pl Acc => x + "niów";
-      SF Pl Instr => x + "niami";
-      SF Pl Loc => x + "niach";
-      SF Pl Voc => x + "nie"
-    };
-
-    oper mkNTable1122: Str -> SubstForm => Str; --%
-    oper mkNTable1122 lexem = 
-      let x = Predef.tk 2 lexem in
-    table { 
-      SF Sg Nom => x + "eń";
-      SF Sg Gen => x + "nia";
-      SF Sg Dat => x + "niowi";
-      SF Sg Acc => x + "nia";
-      SF Sg Instr => x + "niem";
-      SF Sg Loc => x + "niu";
-      SF Sg Voc => x + "niu";
-      SF Pl Nom => x + "nie";
-      SF Pl Gen => x + "niów";
-      SF Pl Dat => x + "niom";
-      SF Pl Acc => x + "nie";
-      SF Pl Instr => x + "niami";
-      SF Pl Loc => x + "niach";
-      SF Pl Voc => x + "nie"
-    };
-
-    oper mkNTable1123: Str -> SubstForm => Str; --%
-    oper mkNTable1123 lexem = 
-      let x = Predef.tk 9 lexem in
-    table { 
-      SF Sg Nom => x + "dworaczek";
-      SF Sg Gen => x + "dworaczka";
-      SF Sg Dat => x + "Dworaczkowi";
-      SF Sg Acc => x + "dworaczka";
-      SF Sg Instr => x + "Dworaczkiem";
-      SF Sg Loc => x + "Dworaczku";
-      SF Sg Voc => x + "Dworaczku";
-      SF Pl Nom => x + "Dworaczkowie";
-      SF Pl Gen => x + "Dworaczków";
-      SF Pl Dat => x + "dworaczkom";
-      SF Pl Acc => x + "Dworaczków";
-      SF Pl Instr => x + "dworaczkami";
-      SF Pl Loc => x + "dworaczkach";
-      SF Pl Voc => x + "Dworaczkowie"
-    };
-
-    oper mkNTable1124: Str -> SubstForm => Str; --%
-    oper mkNTable1124 lexem = 
-      let x = Predef.tk 3 lexem in
-    table { 
-      SF Sg Nom => x + "zec";
-      SF Sg Gen => x + "ca";
-      SF Sg Dat => x + "cowi";
-      SF Sg Acc => x + "zec";
-      SF Sg Instr => x + "cem";
-      SF Sg Loc => x + "cu";
-      SF Sg Voc => x + "cu";
-      SF Pl Nom => x + "ce";
-      SF Pl Gen => x + "ców";
-      SF Pl Dat => x + "com";
-      SF Pl Acc => x + "ce";
-      SF Pl Instr => x + "cami";
-      SF Pl Loc => x + "cach";
-      SF Pl Voc => x + "ce"
-    };
-
-    oper mkNTable1125: Str -> SubstForm => Str; --%
-    oper mkNTable1125 lexem = 
-      let x = Predef.tk 3 lexem in
-    table { 
-      SF Sg Nom => x + "zec";
-      SF Sg Gen => x + "ca";
-      SF Sg Dat => x + "cowi";
-      SF Sg Acc => x + "ca";
-      SF Sg Instr => x + "cem";
-      SF Sg Loc => x + "cu";
-      SF Sg Voc => x + "cu";
-      SF Pl Nom => x + "ce";
-      SF Pl Gen => x + "ców";
-      SF Pl Dat => x + "com";
-      SF Pl Acc => x + "ce";
-      SF Pl Instr => x + "cami";
-      SF Pl Loc => x + "cach";
-      SF Pl Voc => x + "ce"
-    };
-
-    oper mkNTable1126: Str -> SubstForm => Str; --%
-    oper mkNTable1126 lexem = 
-      let x = lexem in
-    table { 
-      SF Sg Nom => x + "a";
-      SF Sg Gen => x + "";
-      SF Sg Dat => x + "";
-      SF Sg Acc => x + "ę";
-      SF Sg Instr => x + "ą";
-      SF Sg Loc => x + "";
-      SF Sg Voc => x + "u";
-      SF Pl Nom => x + "owie";
-      SF Pl Gen => x + "ów";
-      SF Pl Dat => x + "om";
-      SF Pl Acc => x + "ów";
-      SF Pl Instr => x + "ami";
-      SF Pl Loc => x + "ach";
-      SF Pl Voc => x + "owie"
-    };
-
-    oper mkNTable1127: Str -> SubstForm => Str; --%
-    oper mkNTable1127 lexem = 
-      let x = Predef.tk 1 lexem in
-    table { 
-      SF Sg Nom => x + "a";
-      SF Sg Gen => x + "y";
-      SF Sg Dat => x + "ie";
-      SF Sg Acc => x + "ę";
-      SF Sg Instr => x + "ą";
-      SF Sg Loc => x + "ie";
-      SF Sg Voc => x + "o";
-      SF Pl Nom => x + "y";
-      SF Pl Gen => x + "ów";
-      SF Pl Dat => x + "om";
-      SF Pl Acc => x + "y";
-      SF Pl Instr => x + "ami";
-      SF Pl Loc => x + "ach";
-      SF Pl Voc => x + "y"
-    };
-
-    oper mkNTable1128: Str -> SubstForm => Str; --%
-    oper mkNTable1128 lexem = 
-      let x = Predef.tk 3 lexem in
-    table { 
-      SF Sg Nom => x + "cko";
-      SF Sg Gen => x + "cka";
-      SF Sg Dat => x + "cku";
-      SF Sg Acc => x + "cko";
-      SF Sg Instr => x + "ckiem";
-      SF Sg Loc => x + "cku";
-      SF Sg Voc => x + "cko";
-      SF Pl Nom => x + "ci";
-      SF Pl Gen => x + "ci";
-      SF Pl Dat => x + "ciom";
-      SF Pl Acc => x + "ci";
-      SF Pl Instr => x + "ćmi";
-      SF Pl Loc => x + "ciach";
-      SF Pl Voc => x + "ci"
-    };
-
-    oper mkNTable1129: Str -> SubstForm => Str; --%
-    oper mkNTable1129 lexem = 
-      let x = Predef.tk 3 lexem in
-    table { 
-      SF Sg Nom => x + "ieć";
-      SF Sg Gen => x + "ciu";
-      SF Sg Dat => x + "ciowi";
-      SF Sg Acc => x + "ieć";
-      SF Sg Instr => x + "ciem";
-      SF Sg Loc => x + "ciu";
-      SF Sg Voc => x + "ciu";
-      SF Pl Nom => x + "cie";
-      SF Pl Gen => x + "ci";
-      SF Pl Dat => x + "ciom";
-      SF Pl Acc => x + "cie";
-      SF Pl Instr => x + "ciami";
-      SF Pl Loc => x + "ciach";
-      SF Pl Voc => x + "cie"
-    };
-
-    oper mkNTable1130: Str -> SubstForm => Str; --%
-    oper mkNTable1130 lexem = 
-      let x = Predef.tk 2 lexem in
-    table { 
-      SF Sg Nom => x + "ąb";
-      SF Sg Gen => x + "ęba";
-      SF Sg Dat => x + "ębowi";
-      SF Sg Acc => x + "ąb";
-      SF Sg Instr => x + "ębem";
-      SF Sg Loc => x + "ębie";
-      SF Sg Voc => x + "ębie";
-      SF Pl Nom => x + "ęby";
-      SF Pl Gen => x + "ębów";
-      SF Pl Dat => x + "ębom";
-      SF Pl Acc => x + "ęby";
-      SF Pl Instr => x + "ębami";
-      SF Pl Loc => x + "ębach";
-      SF Pl Voc => x + "ęby"
-    };
-
-    oper mkNTable1131: Str -> SubstForm => Str; --%
-    oper mkNTable1131 lexem = 
-      let x = Predef.tk 4 lexem in
-    table { 
-      SF Sg Nom => x + "zień";
-      SF Sg Gen => x + "nia";
-      SF Sg Dat => x + "niowi";
-      SF Sg Acc => x + "zień";
-      SF Sg Instr => x + "niem";
-      SF Sg Loc => x + "niu";
-      SF Sg Voc => x + "niu";
-      SF Pl Nom => x + "nie";
-      SF Pl Gen => x + "ni";
-      SF Pl Dat => x + "niom";
-      SF Pl Acc => x + "nie";
-      SF Pl Instr => x + "niami";
-      SF Pl Loc => x + "niach";
-      SF Pl Voc => x + "nie"
-    };
-
-    oper mkNTable1133: Str -> SubstForm => Str; --%
-    oper mkNTable1133 lexem = 
-      let x = Predef.tk 2 lexem in
-    table { 
-      SF Sg Nom => x + "ąb";
-      SF Sg Gen => x + "ęba";
-      SF Sg Dat => x + "ębowi";
-      SF Sg Acc => x + "ęba";
-      SF Sg Instr => x + "ębem";
-      SF Sg Loc => x + "ębie";
-      SF Sg Voc => x + "ębie";
-      SF Pl Nom => x + "ęby";
-      SF Pl Gen => x + "ębów";
-      SF Pl Dat => x + "ębom";
-      SF Pl Acc => x + "ęby";
-      SF Pl Instr => x + "ębami";
-      SF Pl Loc => x + "ębach";
-      SF Pl Voc => x + "ęby"
-    };
-
-    oper mkNTable1134: Str -> SubstForm => Str; --%
-    oper mkNTable1134 lexem = 
-      let x = Predef.tk 2 lexem in
-    table { 
-      SF Sg Nom => x + "ąb";
-      SF Sg Gen => x + "ębu";
-      SF Sg Dat => x + "ębowi";
-      SF Sg Acc => x + "ąb";
-      SF Sg Instr => x + "ębem";
-      SF Sg Loc => x + "ębie";
-      SF Sg Voc => x + "ębie";
-      SF Pl Nom => x + "ęby";
-      SF Pl Gen => x + "ębów";
-      SF Pl Dat => x + "ębom";
-      SF Pl Acc => x + "ęby";
-      SF Pl Instr => x + "ębami";
-      SF Pl Loc => x + "ębach";
-      SF Pl Voc => x + "ęby"
-    };
-
-    oper mkNTable1135: Str -> SubstForm => Str; --%
-    oper mkNTable1135 lexem = 
-      let x = Predef.tk 2 lexem in
-    table { 
-      SF Sg Nom => x + "ół";
-      SF Sg Gen => x + "oła";
-      SF Sg Dat => x + "ołowi";
-      SF Sg Acc => x + "oła";
-      SF Sg Instr => x + "ołem";
-      SF Sg Loc => x + "ole";
-      SF Sg Voc => x + "ole";
-      SF Pl Nom => x + "oły";
-      SF Pl Gen => x + "ołów";
-      SF Pl Dat => x + "ołom";
-      SF Pl Acc => x + "oły";
-      SF Pl Instr => x + "ołami";
-      SF Pl Loc => x + "ołach";
-      SF Pl Voc => x + "oły"
-    };
-
-    oper mkNTable1136: Str -> SubstForm => Str; --%
-    oper mkNTable1136 lexem = 
-      let x = Predef.tk 2 lexem in
-    table { 
-      SF Sg Nom => x + "en";
-      SF Sg Gen => x + "nu";
-      SF Sg Dat => x + "nowi";
-      SF Sg Acc => x + "en";
-      SF Sg Instr => x + "nem";
-      SF Sg Loc => x + "nie";
-      SF Sg Voc => x + "nie";
-      SF Pl Nom => x + "ny";
-      SF Pl Gen => x + "nów";
-      SF Pl Dat => x + "nom";
-      SF Pl Acc => x + "ny";
-      SF Pl Instr => x + "nami";
-      SF Pl Loc => x + "nach";
-      SF Pl Voc => x + "ny"
-    };
-
-    oper mkNTable1137: Str -> SubstForm => Str; --%
-    oper mkNTable1137 lexem = 
-      let x = Predef.tk 1 lexem in
-    table { 
-      SF Sg Nom => x + "e";
-      SF Sg Gen => x + "e";
-      SF Sg Dat => x + "e";
-      SF Sg Acc => x + "e";
-      SF Sg Instr => x + "e";
-      SF Sg Loc => x + "ze";
-      SF Sg Voc => x + "ze";
-      SF Pl Nom => x + "e";
-      SF Pl Gen => x + "e";
-      SF Pl Dat => x + "e";
-      SF Pl Acc => x + "e";
-      SF Pl Instr => x + "e";
-      SF Pl Loc => x + "e";
-      SF Pl Voc => x + "e"
-    };
-
-    oper mkNTable1138: Str -> SubstForm => Str; --%
-    oper mkNTable1138 lexem = 
-      let x = Predef.tk 1 lexem in
-    table { 
-      SF Sg Nom => x + "e";
-      SF Sg Gen => x + "u";
-      SF Sg Dat => x + "owi";
-      SF Sg Acc => x + "e";
-      SF Sg Instr => x + "em";
-      SF Sg Loc => x + "u";
-      SF Sg Voc => x + "u";
-      SF Pl Nom => x + "e";
-      SF Pl Gen => x + "ów";
-      SF Pl Dat => x + "om";
-      SF Pl Acc => x + "e";
-      SF Pl Instr => x + "ami";
-      SF Pl Loc => x + "ach";
-      SF Pl Voc => x + "e"
-    };
-
-    oper mkNTable1139: Str -> SubstForm => Str; --%
-    oper mkNTable1139 lexem = 
-      let x = Predef.tk 2 lexem in
-    table { 
-      SF Sg Nom => x + "on";
-      SF Sg Gen => x + "onu";
-      SF Sg Dat => x + "onowi";
-      SF Sg Acc => x + "on";
-      SF Sg Instr => x + "onem";
-      SF Sg Loc => x + "onie";
-      SF Sg Voc => x + "onie";
-      SF Pl Nom => x + "a";
-      SF Pl Gen => x + "ów";
-      SF Pl Dat => x + "om";
-      SF Pl Acc => x + "a";
-      SF Pl Instr => x + "ami";
-      SF Pl Loc => x + "ach";
-      SF Pl Voc => x + "a"
-    };
-
-    oper mkNTable1140: Str -> SubstForm => Str; --%
-    oper mkNTable1140 lexem = 
-      let x = Predef.tk 0 lexem in
-    table { 
-      SF Sg Nom => x + "";
-      SF Sg Gen => x + "u";
-      SF Sg Dat => x + "owi";
-      SF Sg Acc => x + "u";
-      SF Sg Instr => x + "em";
-      SF Sg Loc => x + "u";
-      SF Sg Voc => x + "u";
-      SF Pl Nom => x + "e";
-      SF Pl Gen => x + "ów";
-      SF Pl Dat => x + "om";
-      SF Pl Acc => x + "e";
-      SF Pl Instr => x + "ami";
-      SF Pl Loc => x + "ach";
-      SF Pl Voc => x + "e"
-    };
-
-    oper mkNTable1141: Str -> SubstForm => Str; --%
-    oper mkNTable1141 lexem = 
-      let x = Predef.tk 3 lexem in
-    table { 
-      SF Sg Nom => x + "ier";
-      SF Sg Gen => x + "ra";
-      SF Sg Dat => x + "rowi";
-      SF Sg Acc => x + "ra";
-      SF Sg Instr => x + "rem";
-      SF Sg Loc => x + "rze";
-      SF Sg Voc => x + "rze";
-      SF Pl Nom => x + "ry";
-      SF Pl Gen => x + "rów";
-      SF Pl Dat => x + "rom";
-      SF Pl Acc => x + "ry";
-      SF Pl Instr => x + "rami";
-      SF Pl Loc => x + "rach";
-      SF Pl Voc => x + "ry"
-    };
-
-    oper mkNTable1142: Str -> SubstForm => Str; --%
-    oper mkNTable1142 lexem = 
-      let x = Predef.tk 1 lexem in
-    table { 
-      SF Sg Nom => x + "o";
-      SF Sg Gen => x + "a";
-      SF Sg Dat => x + "owi";
-      SF Sg Acc => x + "a";
-      SF Sg Instr => x + "em";
-      SF Sg Loc => x + "ze";
-      SF Sg Voc => x + "o";
-      SF Pl Nom => x + "owie";
-      SF Pl Gen => x + "ów";
-      SF Pl Dat => x + "om";
-      SF Pl Acc => x + "ów";
-      SF Pl Instr => x + "ami";
-      SF Pl Loc => x + "ach";
-      SF Pl Voc => x + "owie"
-    };
-
-    oper mkNTable1143: Str -> SubstForm => Str; --%
-    oper mkNTable1143 lexem = 
-      let x = Predef.tk 7 lexem in
-    table { 
-      SF Sg Nom => x + "Filaret";
-      SF Sg Gen => x + "filareta";
-      SF Sg Dat => x + "Filaretowi";
-      SF Sg Acc => x + "filareta";
-      SF Sg Instr => x + "Filaretem";
-      SF Sg Loc => x + "filarecie";
-      SF Sg Voc => x + "filarecie";
-      SF Pl Nom => x + "filareci";
-      SF Pl Gen => x + "filaretów";
-      SF Pl Dat => x + "filaretom";
-      SF Pl Acc => x + "filaretów";
-      SF Pl Instr => x + "filaretami";
-      SF Pl Loc => x + "filaretach";
-      SF Pl Voc => x + "filareci"
-    };
-
-    oper mkNTable1144: Str -> SubstForm => Str; --%
-    oper mkNTable1144 lexem = 
-      let x = Predef.tk 2 lexem in
-    table { 
-      SF Sg Nom => x + "ja";
-      SF Sg Gen => x + "i";
-      SF Sg Dat => x + "i";
-      SF Sg Acc => x + "ję";
-      SF Sg Instr => x + "ją";
-      SF Sg Loc => x + "i";
-      SF Sg Voc => x + "jo";
-      SF Pl Nom => x + "je";
-      SF Pl Gen => x + "jów";
-      SF Pl Dat => x + "jom";
-      SF Pl Acc => x + "jów";
-      SF Pl Instr => x + "jami";
-      SF Pl Loc => x + "jach";
-      SF Pl Voc => x + "je"
-    };
-
-    oper mkNTable1145: Str -> SubstForm => Str; --%
-    oper mkNTable1145 lexem = 
-      let x = Predef.tk 1 lexem in
-    table { 
-      SF Sg Nom => x + "a";
-      SF Sg Gen => x + "y";
-      SF Sg Dat => x + "ze";
-      SF Sg Acc => x + "ę";
-      SF Sg Instr => x + "ą";
-      SF Sg Loc => x + "ze";
-      SF Sg Voc => x + "o";
-      SF Pl Nom => x + "zy";
-      SF Pl Gen => x + "ów";
-      SF Pl Dat => x + "om";
-      SF Pl Acc => x + "ów";
-      SF Pl Instr => x + "ami";
-      SF Pl Loc => x + "ach";
-      SF Pl Voc => x + "zy"
-    };
-
-    oper mkNTable1146: Str -> SubstForm => Str; --%
-    oper mkNTable1146 lexem = 
-      let x = Predef.tk 1 lexem in
-    table { 
-      SF Sg Nom => x + "ź";
-      SF Sg Gen => x + "zia";
-      SF Sg Dat => x + "ziowi";
-      SF Sg Acc => x + "ź";
-      SF Sg Instr => x + "ziem";
-      SF Sg Loc => x + "ziu";
-      SF Sg Voc => x + "ziu";
-      SF Pl Nom => x + "zie";
-      SF Pl Gen => x + "ziów";
-      SF Pl Dat => x + "ziom";
-      SF Pl Acc => x + "zie";
-      SF Pl Instr => x + "ziami";
-      SF Pl Loc => x + "ziach";
-      SF Pl Voc => x + "zie"
-    };
-
-    oper mkNTable1147: Str -> SubstForm => Str; --%
-    oper mkNTable1147 lexem = 
-      let x = Predef.tk 1 lexem in
-    table { 
-      SF Sg Nom => x + "t";
-      SF Sg Gen => x + "tu";
-      SF Sg Dat => x + "towi";
-      SF Sg Acc => x + "t";
-      SF Sg Instr => x + "tem";
-      SF Sg Loc => x + "cie";
-      SF Sg Voc => x + "cie";
-      SF Pl Nom => x + "ta";
-      SF Pl Gen => x + "tów";
-      SF Pl Dat => x + "tom";
-      SF Pl Acc => x + "ta";
-      SF Pl Instr => x + "tami";
-      SF Pl Loc => x + "tach";
-      SF Pl Voc => x + "ta"
-    };
-
-    oper mkNTable1148: Str -> SubstForm => Str; --%
-    oper mkNTable1148 lexem = 
-      let x = Predef.tk 6 lexem in
-    table { 
-      SF Sg Nom => x + "futura";
-      SF Sg Gen => x + "Futury";
-      SF Sg Dat => x + "Futurze";
-      SF Sg Acc => x + "Futurę";
-      SF Sg Instr => x + "Futurą";
-      SF Sg Loc => x + "Futurze";
-      SF Sg Voc => x + "Futuro";
-      SF Pl Nom => x + "Futury";
-      SF Pl Gen => x + "Futur";
-      SF Pl Dat => x + "futurom";
-      SF Pl Acc => x + "Futury";
-      SF Pl Instr => x + "futurami";
-      SF Pl Loc => x + "futurach";
-      SF Pl Voc => x + "Futury"
-    };
-
-    oper mkNTable1149: Str -> SubstForm => Str; --%
-    oper mkNTable1149 lexem = 
-      let x = Predef.tk 3 lexem in
-    table { 
-      SF Sg Nom => x + "zda";
-      SF Sg Gen => x + "zdy";
-      SF Sg Dat => x + "ździe";
-      SF Sg Acc => x + "zdę";
-      SF Sg Instr => x + "zdą";
-      SF Sg Loc => x + "ździe";
-      SF Sg Voc => x + "zdo";
-      SF Pl Nom => x + "zdowie";
-      SF Pl Gen => x + "zdów";
-      SF Pl Dat => x + "zdom";
-      SF Pl Acc => x + "zdów";
-      SF Pl Instr => x + "zdami";
-      SF Pl Loc => x + "zdach";
-      SF Pl Voc => x + "zdowie"
-    };
-
-    oper mkNTable1150: Str -> SubstForm => Str; --%
-    oper mkNTable1150 lexem = 
-      let x = Predef.tk 2 lexem in
-    table { 
-      SF Sg Nom => x + "ąź";
-      SF Sg Gen => x + "ęzi";
-      SF Sg Dat => x + "ęzi";
-      SF Sg Acc => x + "ąź";
-      SF Sg Instr => x + "ęzią";
-      SF Sg Loc => x + "ęzi";
-      SF Sg Voc => x + "ęzi";
-      SF Pl Nom => x + "ęzie";
-      SF Pl Gen => x + "ęzi";
-      SF Pl Dat => x + "ęziom";
-      SF Pl Acc => x + "ęzie";
-      SF Pl Instr => x + "ęźmi";
-      SF Pl Loc => x + "ęziach";
-      SF Pl Voc => x + "ęzie"
-    };
-
-    oper mkNTable1152: Str -> SubstForm => Str; --%
-    oper mkNTable1152 lexem = 
-      let x = Predef.tk 1 lexem in
-    table { 
-      SF Sg Nom => x + "a";
-      SF Sg Gen => x + "y";
-      SF Sg Dat => x + "i";
-      SF Sg Acc => x + "ę";
-      SF Sg Instr => x + "ą";
-      SF Sg Loc => x + "i";
-      SF Sg Voc => x + "o";
-      SF Pl Nom => x + "y";
-      SF Pl Gen => x + "i";
-      SF Pl Dat => x + "om";
-      SF Pl Acc => x + "y";
-      SF Pl Instr => x + "ami";
-      SF Pl Loc => x + "ach";
-      SF Pl Voc => x + "y"
-    };
-
-    oper mkNTable1153: Str -> SubstForm => Str; --%
-    oper mkNTable1153 lexem = 
-      let x = Predef.tk 3 lexem in
-    table { 
-      SF Sg Nom => x + "iez";
-      SF Sg Gen => x + "za";
-      SF Sg Dat => x + "zowi";
-      SF Sg Acc => x + "za";
-      SF Sg Instr => x + "zem";
-      SF Sg Loc => x + "zie";
-      SF Sg Voc => x + "zie";
-      SF Pl Nom => x + "zy";
-      SF Pl Gen => x + "zów";
-      SF Pl Dat => x + "zom";
-      SF Pl Acc => x + "zy";
-      SF Pl Instr => x + "zami";
-      SF Pl Loc => x + "zach";
-      SF Pl Voc => x + "zy"
-    };
-
-    oper mkNTable1154: Str -> SubstForm => Str; --%
-    oper mkNTable1154 lexem = 
-      let x = Predef.tk 3 lexem in
-    table { 
-      SF Sg Nom => x + "zło";
-      SF Sg Gen => x + "zła";
-      SF Sg Dat => x + "złu";
-      SF Sg Acc => x + "zło";
-      SF Sg Instr => x + "złem";
-      SF Sg Loc => x + "źle";
-      SF Sg Voc => x + "zło";
-      SF Pl Nom => x + "zła";
-      SF Pl Gen => x + "zł";
-      SF Pl Dat => x + "złom";
-      SF Pl Acc => x + "zła";
-      SF Pl Instr => x + "złami";
-      SF Pl Loc => x + "złach";
-      SF Pl Voc => x + "zła"
-    };
-
-    oper mkNTable1155: Str -> SubstForm => Str; --%
-    oper mkNTable1155 lexem = 
-      let x = Predef.tk 4 lexem in
-    table { 
-      SF Sg Nom => x + "azdo";
-      SF Sg Gen => x + "azda";
-      SF Sg Dat => x + "azdu";
-      SF Sg Acc => x + "azdo";
-      SF Sg Instr => x + "azdem";
-      SF Sg Loc => x + "eździe";
-      SF Sg Voc => x + "azdo";
-      SF Pl Nom => x + "azda";
-      SF Pl Gen => x + "azd";
-      SF Pl Dat => x + "azdom";
-      SF Pl Acc => x + "azda";
-      SF Pl Instr => x + "azdami";
-      SF Pl Loc => x + "azdach";
-      SF Pl Voc => x + "azda"
-    };
-
-    oper mkNTable1156: Str -> SubstForm => Str; --%
-    oper mkNTable1156 lexem = 
-      let x = Predef.tk 2 lexem in
-    table { 
-      SF Sg Nom => x + "ój";
-      SF Sg Gen => x + "oja";
-      SF Sg Dat => x + "ojowi";
-      SF Sg Acc => x + "oja";
-      SF Sg Instr => x + "ojem";
-      SF Sg Loc => x + "oju";
-      SF Sg Voc => x + "oju";
-      SF Pl Nom => x + "oje";
-      SF Pl Gen => x + "ojów";
-      SF Pl Dat => x + "ojom";
-      SF Pl Acc => x + "ojów";
-      SF Pl Instr => x + "ojami";
-      SF Pl Loc => x + "ojach";
-      SF Pl Voc => x + "oje"
-    };
-
-    oper mkNTable1157: Str -> SubstForm => Str; --%
-    oper mkNTable1157 lexem = 
-      let x = Predef.tk 1 lexem in
-    table { 
-      SF Sg Nom => x + "ź";
-      SF Sg Gen => x + "zi";
-      SF Sg Dat => x + "zi";
-      SF Sg Acc => x + "ź";
-      SF Sg Instr => x + "zią";
-      SF Sg Loc => x + "zi";
-      SF Sg Voc => x + "zi";
-      SF Pl Nom => x + "zi";
-      SF Pl Gen => x + "zi";
-      SF Pl Dat => x + "ziom";
-      SF Pl Acc => x + "zi";
-      SF Pl Instr => x + "ziami";
-      SF Pl Loc => x + "ziach";
-      SF Pl Voc => x + "zi"
-    };
-
-    oper mkNTable1158: Str -> SubstForm => Str; --%
-    oper mkNTable1158 lexem = 
-      let x = Predef.tk 2 lexem in
-    table { 
-      SF Sg Nom => x + "ąb";
-      SF Sg Gen => x + "ębia";
-      SF Sg Dat => x + "ębiowi";
-      SF Sg Acc => x + "ębia";
-      SF Sg Instr => x + "ębiem";
-      SF Sg Loc => x + "ębiu";
-      SF Sg Voc => x + "ębiu";
-      SF Pl Nom => x + "ębie";
-      SF Pl Gen => x + "ębi";
-      SF Pl Dat => x + "ębiom";
-      SF Pl Acc => x + "ębie";
-      SF Pl Instr => x + "ębiami";
-      SF Pl Loc => x + "ębiach";
-      SF Pl Voc => x + "ębie"
-    };
-
-    oper mkNTable1159: Str -> SubstForm => Str; --%
-    oper mkNTable1159 lexem = 
-      let x = Predef.tk 1 lexem in
-    table { 
-      SF Sg Nom => x + "ć";
-      SF Sg Gen => x + "cia";
-      SF Sg Dat => x + "ciowi";
-      SF Sg Acc => x + "cia";
-      SF Sg Instr => x + "ciem";
-      SF Sg Loc => x + "ciu";
-      SF Sg Voc => x + "ciu";
-      SF Pl Nom => x + "cie";
-      SF Pl Gen => x + "ci";
-      SF Pl Dat => x + "ciom";
-      SF Pl Acc => x + "ci";
-      SF Pl Instr => x + "ćmi";
-      SF Pl Loc => x + "ciach";
-      SF Pl Voc => x + "cie"
-    };
-
-    oper mkNTable1161: Str -> SubstForm => Str; --%
-    oper mkNTable1161 lexem = 
-      let x = Predef.tk 2 lexem in
-    table { 
-      SF Sg Nom => x + "ra";
-      SF Sg Gen => x + "ry";
-      SF Sg Dat => x + "rze";
-      SF Sg Acc => x + "rę";
-      SF Sg Instr => x + "rą";
-      SF Sg Loc => x + "rze";
-      SF Sg Voc => x + "ro";
-      SF Pl Nom => x + "ry";
-      SF Pl Gen => x + "ier";
-      SF Pl Dat => x + "rom";
-      SF Pl Acc => x + "ry";
-      SF Pl Instr => x + "rami";
-      SF Pl Loc => x + "rach";
-      SF Pl Voc => x + "ry"
-    };
-
-    oper mkNTable1162: Str -> SubstForm => Str; --%
-    oper mkNTable1162 lexem = 
-      let x = Predef.tk 6 lexem in
-    table { 
-      SF Sg Nom => x + "Grabka";
-      SF Sg Gen => x + "grabki";
-      SF Sg Dat => x + "Grabce";
-      SF Sg Acc => x + "Grabkę";
-      SF Sg Instr => x + "Grabką";
-      SF Sg Loc => x + "Grabce";
-      SF Sg Voc => x + "Grabko";
-      SF Pl Nom => x + "grabki";
-      SF Pl Gen => x + "grabek";
-      SF Pl Dat => x + "grabkom";
-      SF Pl Acc => x + "grabki";
-      SF Pl Instr => x + "grabkami";
-      SF Pl Loc => x + "grabkach";
-      SF Pl Voc => x + "grabki"
-    };
-
-    oper mkNTable1163: Str -> SubstForm => Str; --%
-    oper mkNTable1163 lexem = 
-      let x = Predef.tk 4 lexem in
-    table { 
-      SF Sg Nom => x + "odza";
-      SF Sg Gen => x + "odzy";
-      SF Sg Dat => x + "odzy";
-      SF Sg Acc => x + "odzę";
-      SF Sg Instr => x + "odzą";
-      SF Sg Loc => x + "odzy";
-      SF Sg Voc => x + "odzo";
-      SF Pl Nom => x + "odze";
-      SF Pl Gen => x + "ódz";
-      SF Pl Dat => x + "odzom";
-      SF Pl Acc => x + "odze";
-      SF Pl Instr => x + "odzami";
-      SF Pl Loc => x + "odzach";
-      SF Pl Voc => x + "odze"
-    };
-
-    oper mkNTable1165: Str -> SubstForm => Str; --%
-    oper mkNTable1165 lexem = 
-      let x = Predef.tk 4 lexem in
-    table { 
-      SF Sg Nom => x + "oźba";
-      SF Sg Gen => x + "oźby";
-      SF Sg Dat => x + "oźbie";
-      SF Sg Acc => x + "oźbę";
-      SF Sg Instr => x + "oźbą";
-      SF Sg Loc => x + "oźbie";
-      SF Sg Voc => x + "oźbo";
-      SF Pl Nom => x + "oźby";
-      SF Pl Gen => x + "óźb";
-      SF Pl Dat => x + "oźbom";
-      SF Pl Acc => x + "oźby";
-      SF Pl Instr => x + "oźbami";
-      SF Pl Loc => x + "oźbach";
-      SF Pl Voc => x + "oźby"
-    };
-
-    oper mkNTable1166: Str -> SubstForm => Str; --%
-    oper mkNTable1166 lexem = 
-      let x = Predef.tk 4 lexem in
-    table { 
-      SF Sg Nom => x + "zień";
-      SF Sg Gen => x + "nia";
-      SF Sg Dat => x + "niowi";
-      SF Sg Acc => x + "zień";
-      SF Sg Instr => x + "niem";
-      SF Sg Loc => x + "niu";
-      SF Sg Voc => x + "niu";
-      SF Pl Nom => x + "nie";
-      SF Pl Gen => x + "niów";
-      SF Pl Dat => x + "niom";
-      SF Pl Acc => x + "nie";
-      SF Pl Instr => x + "niami";
-      SF Pl Loc => x + "niach";
-      SF Pl Voc => x + "nie"
-    };
-
-    oper mkNTable1167: Str -> SubstForm => Str; --%
-    oper mkNTable1167 lexem = 
-      let x = Predef.tk 3 lexem in
-    table { 
-      SF Sg Nom => x + "zeł";
-      SF Sg Gen => x + "zła";
-      SF Sg Dat => x + "złowi";
-      SF Sg Acc => x + "zeł";
-      SF Sg Instr => x + "złem";
-      SF Sg Loc => x + "źle";
-      SF Sg Voc => x + "źle";
-      SF Pl Nom => x + "zły";
-      SF Pl Gen => x + "złów";
-      SF Pl Dat => x + "złom";
-      SF Pl Acc => x + "zły";
-      SF Pl Instr => x + "złami";
-      SF Pl Loc => x + "złach";
-      SF Pl Voc => x + "zły"
-    };
-
-    oper mkNTable1168: Str -> SubstForm => Str; --%
-    oper mkNTable1168 lexem = 
-      let x = Predef.tk 2 lexem in
-    table { 
-      SF Sg Nom => x + "ód";
-      SF Sg Gen => x + "oda";
-      SF Sg Dat => x + "odowi";
-      SF Sg Acc => x + "oda";
-      SF Sg Instr => x + "odem";
-      SF Sg Loc => x + "odzie";
-      SF Sg Voc => x + "odzie";
-      SF Pl Nom => x + "ody";
-      SF Pl Gen => x + "odów";
-      SF Pl Dat => x + "odom";
-      SF Pl Acc => x + "ody";
-      SF Pl Instr => x + "odami";
-      SF Pl Loc => x + "odach";
-      SF Pl Voc => x + "ody"
-    };
-
-    oper mkNTable1170: Str -> SubstForm => Str; --%
-    oper mkNTable1170 lexem = 
-      let x = Predef.tk 3 lexem in
-    table { 
-      SF Sg Nom => x + "ódź";
-      SF Sg Gen => x + "odzi";
-      SF Sg Dat => x + "odzi";
-      SF Sg Acc => x + "ódź";
-      SF Sg Instr => x + "odzią";
-      SF Sg Loc => x + "odzi";
-      SF Sg Voc => x + "odzi";
-      SF Pl Nom => x + "odzie";
-      SF Pl Gen => x + "odzi";
-      SF Pl Dat => x + "odziom";
-      SF Pl Acc => x + "odzie";
-      SF Pl Instr => x + "odziami";
-      SF Pl Loc => x + "odziach";
-      SF Pl Voc => x + "odzie"
-    };
-
-    oper mkNTable1173: Str -> SubstForm => Str; --%
-    oper mkNTable1173 lexem = 
-      let x = Predef.tk 4 lexem in
-    table { 
-      SF Sg Nom => x + "azda";
-      SF Sg Gen => x + "azdy";
-      SF Sg Dat => x + "eździe";
-      SF Sg Acc => x + "azdę";
-      SF Sg Instr => x + "azdą";
-      SF Sg Loc => x + "eździe";
-      SF Sg Voc => x + "azdo";
-      SF Pl Nom => x + "azdy";
-      SF Pl Gen => x + "azd";
-      SF Pl Dat => x + "azdom";
-      SF Pl Acc => x + "azdy";
-      SF Pl Instr => x + "azdami";
-      SF Pl Loc => x + "azdach";
-      SF Pl Voc => x + "azdy"
-    };
-
-    oper mkNTable1174: Str -> SubstForm => Str; --%
-    oper mkNTable1174 lexem = 
-      let x = Predef.tk 2 lexem in
-    table { 
-      SF Sg Nom => x + "zd";
-      SF Sg Gen => x + "zdu";
-      SF Sg Dat => x + "zdowi";
-      SF Sg Acc => x + "zd";
-      SF Sg Instr => x + "zdem";
-      SF Sg Loc => x + "ździe";
-      SF Sg Voc => x + "ździe";
-      SF Pl Nom => x + "zdy";
-      SF Pl Gen => x + "zdów";
-      SF Pl Dat => x + "zdom";
-      SF Pl Acc => x + "zdy";
-      SF Pl Instr => x + "zdami";
-      SF Pl Loc => x + "zdach";
-      SF Pl Voc => x + "zdy"
-    };
-
-    oper mkNTable1175: Str -> SubstForm => Str; --%
-    oper mkNTable1175 lexem = 
-      let x = Predef.tk 4 lexem in
-    table { 
-      SF Sg Nom => x + "óźdź";
-      SF Sg Gen => x + "oździa";
-      SF Sg Dat => x + "oździowi";
-      SF Sg Acc => x + "oździa";
-      SF Sg Instr => x + "oździem";
-      SF Sg Loc => x + "oździu";
-      SF Sg Voc => x + "oździu";
-      SF Pl Nom => x + "oździe";
-      SF Pl Gen => x + "oździ";
-      SF Pl Dat => x + "oździom";
-      SF Pl Acc => x + "oździe";
-      SF Pl Instr => x + "oździami";
-      SF Pl Loc => x + "oździach";
-      SF Pl Voc => x + "oździe"
-    };
-
-    oper mkNTable1176: Str -> SubstForm => Str; --%
-    oper mkNTable1176 lexem = 
-      let x = Predef.tk 4 lexem in
-    table { 
-      SF Sg Nom => x + "óźdź";
-      SF Sg Gen => x + "oździa";
-      SF Sg Dat => x + "oździowi";
-      SF Sg Acc => x + "óźdź";
-      SF Sg Instr => x + "oździem";
-      SF Sg Loc => x + "oździu";
-      SF Sg Voc => x + "oździu";
-      SF Pl Nom => x + "oździe";
-      SF Pl Gen => x + "oździ";
-      SF Pl Dat => x + "oździom";
-      SF Pl Acc => x + "oździe";
-      SF Pl Instr => x + "oźdźmi";
-      SF Pl Loc => x + "oździach";
-      SF Pl Voc => x + "oździe"
-    };
-
-    oper mkNTable1177: Str -> SubstForm => Str; --%
-    oper mkNTable1177 lexem = 
-      let x = Predef.tk 2 lexem in
-    table { 
-      SF Sg Nom => x + "za";
-      SF Sg Gen => x + "zy";
-      SF Sg Dat => x + "zie";
-      SF Sg Acc => x + "zę";
-      SF Sg Instr => x + "zą";
-      SF Sg Loc => x + "zie";
-      SF Sg Voc => x + "zo";
-      SF Pl Nom => x + "zy";
-      SF Pl Gen => x + "iez";
-      SF Pl Dat => x + "zom";
-      SF Pl Acc => x + "zy";
-      SF Pl Instr => x + "zami";
-      SF Pl Loc => x + "zach";
-      SF Pl Voc => x + "zy"
-    };
-
-    oper mkNTable1178: Str -> SubstForm => Str; --%
-    oper mkNTable1178 lexem = 
-      let x = Predef.tk 3 lexem in
-    table { 
-      SF Sg Nom => x + "zło";
-      SF Sg Gen => x + "zła";
-      SF Sg Dat => x + "złu";
-      SF Sg Acc => x + "zło";
-      SF Sg Instr => x + "złem";
-      SF Sg Loc => x + "źle";
-      SF Sg Voc => x + "zło";
-      SF Pl Nom => x + "zła";
-      SF Pl Gen => x + "zeł";
-      SF Pl Dat => x + "złom";
-      SF Pl Acc => x + "zła";
-      SF Pl Instr => x + "złami";
-      SF Pl Loc => x + "złach";
-      SF Pl Voc => x + "zła"
-    };
-
-    oper mkNTable1179: Str -> SubstForm => Str; --%
-    oper mkNTable1179 lexem = 
-      let x = Predef.tk 2 lexem in
-    table { 
-      SF Sg Nom => x + "ów";
-      SF Sg Gen => x + "owia";
-      SF Sg Dat => x + "owiowi";
-      SF Sg Acc => x + "ów";
-      SF Sg Instr => x + "owiem";
-      SF Sg Loc => x + "owiu";
-      SF Sg Voc => x + "owiu";
-      SF Pl Nom => x + "owie";
-      SF Pl Gen => x + "owi";
-      SF Pl Dat => x + "owiom";
-      SF Pl Acc => x + "owie";
-      SF Pl Instr => x + "owiami";
-      SF Pl Loc => x + "owiach";
-      SF Pl Voc => x + "owie"
-    };
-
-    oper mkNTable1180: Str -> SubstForm => Str; --%
-    oper mkNTable1180 lexem = 
-      let x = Predef.tk 5 lexem in
-    table { 
-      SF Sg Nom => x + "Głuch";
-      SF Sg Gen => x + "głucha";
-      SF Sg Dat => x + "Głuchowi";
-      SF Sg Acc => x + "głucha";
-      SF Sg Instr => x + "Głuchem";
-      SF Sg Loc => x + "Głuchu";
-      SF Sg Voc => x + "Głuchu";
-      SF Pl Nom => x + "Głuchowie";
-      SF Pl Gen => x + "Głuchów";
-      SF Pl Dat => x + "Głuchom";
-      SF Pl Acc => x + "Głuchów";
-      SF Pl Instr => x + "Głuchami";
-      SF Pl Loc => x + "Głuchach";
-      SF Pl Voc => x + "Głuchowie"
-    };
-
-    oper mkNTable1181: Str -> SubstForm => Str; --%
-    oper mkNTable1181 lexem = 
-      let x = Predef.tk 1 lexem in
-    table { 
-      SF Sg Nom => x + "a";
-      SF Sg Gen => x + "ej";
-      SF Sg Dat => x + "ej";
-      SF Sg Acc => x + "ą";
-      SF Sg Instr => x + "ą";
-      SF Sg Loc => x + "ej";
-      SF Sg Voc => x + "a";
-      SF Pl Nom => x + "e";
-      SF Pl Gen => x + "ch";
-      SF Pl Dat => x + "m";
-      SF Pl Acc => x + "e";
-      SF Pl Instr => x + "mi";
-      SF Pl Loc => x + "ch";
-      SF Pl Voc => x + "e"
-    };
-
-    oper mkNTable1182: Str -> SubstForm => Str; --%
-    oper mkNTable1182 lexem = 
-      let x = Predef.tk 2 lexem in
-    table { 
-      SF Sg Nom => x + "ąb";
-      SF Sg Gen => x + "ębi";
-      SF Sg Dat => x + "ębi";
-      SF Sg Acc => x + "ąb";
-      SF Sg Instr => x + "ębią";
-      SF Sg Loc => x + "ębi";
-      SF Sg Voc => x + "ębi";
-      SF Pl Nom => x + "ębie";
-      SF Pl Gen => x + "ębi";
-      SF Pl Dat => x + "ębiom";
-      SF Pl Acc => x + "ębie";
-      SF Pl Instr => x + "ębiami";
-      SF Pl Loc => x + "ębiach";
-      SF Pl Voc => x + "ębie"
-    };
-
-    oper mkNTable1183: Str -> SubstForm => Str; --%
-    oper mkNTable1183 lexem = 
-      let x = Predef.tk 1 lexem in
-    table { 
-      SF Sg Nom => x + "ś";
-      SF Sg Gen => x + "si";
-      SF Sg Dat => x + "si";
-      SF Sg Acc => x + "ś";
-      SF Sg Instr => x + "sią";
-      SF Sg Loc => x + "si";
-      SF Sg Voc => x + "si";
-      SF Pl Nom => x + "si";
-      SF Pl Gen => x + "si";
-      SF Pl Dat => x + "siom";
-      SF Pl Acc => x + "si";
-      SF Pl Instr => x + "śmi";
-      SF Pl Loc => x + "siach";
-      SF Pl Voc => x + "si"
-    };
-
-    oper mkNTable1184: Str -> SubstForm => Str; --%
-    oper mkNTable1184 lexem = 
-      let x = Predef.tk 9 lexem in
-    table { 
-      SF Sg Nom => x + "góralczyk";
-      SF Sg Gen => x + "góralczyka";
-      SF Sg Dat => x + "góralczykowi";
-      SF Sg Acc => x + "góralczyka";
-      SF Sg Instr => x + "góralczykiem";
-      SF Sg Loc => x + "góralczyku";
-      SF Sg Voc => x + "góralczyku";
-      SF Pl Nom => x + "Góralczykowie";
-      SF Pl Gen => x + "góralczyków";
-      SF Pl Dat => x + "góralczykom";
-      SF Pl Acc => x + "góralczyków";
-      SF Pl Instr => x + "góralczykami";
-      SF Pl Loc => x + "góralczykach";
-      SF Pl Voc => x + "Góralczykowie"
-    };
-
-    oper mkNTable1185: Str -> SubstForm => Str; --%
-    oper mkNTable1185 lexem = 
-      let x = Predef.tk 9 lexem in
-    table { 
-      SF Sg Nom => x + "haraburda";
-      SF Sg Gen => x + "haraburdy";
-      SF Sg Dat => x + "haraburdzie";
-      SF Sg Acc => x + "haraburdę";
-      SF Sg Instr => x + "haraburdą";
-      SF Sg Loc => x + "haraburdzie";
-      SF Sg Voc => x + "haraburdo";
-      SF Pl Nom => x + "Haraburdowie";
-      SF Pl Gen => x + "haraburdów";
-      SF Pl Dat => x + "haraburdom";
-      SF Pl Acc => x + "haraburdów";
-      SF Pl Instr => x + "haraburdami";
-      SF Pl Loc => x + "haraburdach";
-      SF Pl Voc => x + "Haraburdowie"
-    };
-
-    oper mkNTable1186: Str -> SubstForm => Str; --%
-    oper mkNTable1186 lexem = 
-      let x = Predef.tk 6 lexem in
-    table { 
-      SF Sg Nom => x + "huczek";
-      SF Sg Gen => x + "huczka";
-      SF Sg Dat => x + "huczkowi";
-      SF Sg Acc => x + "huczka";
-      SF Sg Instr => x + "huczkiem";
-      SF Sg Loc => x + "huczku";
-      SF Sg Voc => x + "huczku";
-      SF Pl Nom => x + "Huczkowie";
-      SF Pl Gen => x + "huczków";
-      SF Pl Dat => x + "huczkom";
-      SF Pl Acc => x + "huczków";
-      SF Pl Instr => x + "huczkami";
-      SF Pl Loc => x + "huczkach";
-      SF Pl Voc => x + "Huczkowie"
-    };
-
-    oper mkNTable1187: Str -> SubstForm => Str; --%
-    oper mkNTable1187 lexem = 
-      let x = Predef.tk 1 lexem in
-    table { 
-      SF Sg Nom => x + "a";
-      SF Sg Gen => x + "y";
-      SF Sg Dat => x + "y";
-      SF Sg Acc => x + "ę";
-      SF Sg Instr => x + "ą";
-      SF Sg Loc => x + "y";
-      SF Sg Voc => x + "o";
-      SF Pl Nom => x + "e";
-      SF Pl Gen => x + "ów";
-      SF Pl Dat => x + "om";
-      SF Pl Acc => x + "ów";
-      SF Pl Instr => x + "ami";
-      SF Pl Loc => x + "ach";
-      SF Pl Voc => x + "e"
-    };
-
-    oper mkNTable1188: Str -> SubstForm => Str; --%
-    oper mkNTable1188 lexem = 
-      let x = Predef.tk 2 lexem in
-    table { 
-      SF Sg Nom => x + "el";
-      SF Sg Gen => x + "la";
-      SF Sg Dat => x + "lowi";
-      SF Sg Acc => x + "la";
-      SF Sg Instr => x + "lem";
-      SF Sg Loc => x + "lu";
-      SF Sg Voc => x + "lu";
-      SF Pl Nom => x + "le";
-      SF Pl Gen => x + "lów";
-      SF Pl Dat => x + "lom";
-      SF Pl Acc => x + "lów";
-      SF Pl Instr => x + "lami";
-      SF Pl Loc => x + "lach";
-      SF Pl Voc => x + "le"
-    };
-
-    oper mkNTable1189: Str -> SubstForm => Str; --%
-    oper mkNTable1189 lexem = 
-      let x = Predef.tk 2 lexem in
-    table { 
-      SF Sg Nom => x + "ól";
-      SF Sg Gen => x + "oli";
-      SF Sg Dat => x + "oli";
-      SF Sg Acc => x + "ól";
-      SF Sg Instr => x + "olą";
-      SF Sg Loc => x + "oli";
-      SF Sg Voc => x + "oli";
-      SF Pl Nom => x + "ole";
-      SF Pl Gen => x + "oli";
-      SF Pl Dat => x + "olom";
-      SF Pl Acc => x + "ole";
-      SF Pl Instr => x + "olami";
-      SF Pl Loc => x + "olach";
-      SF Pl Voc => x + "ole"
-    };
-
-    oper mkNTable1191: Str -> SubstForm => Str; --%
-    oper mkNTable1191 lexem = 
-      let x = Predef.tk 5 lexem in
-    table { 
-      SF Sg Nom => x + "igrek";
-      SF Sg Gen => x + "igreka";
-      SF Sg Dat => x + "igrekowi";
-      SF Sg Acc => x + "igreka";
-      SF Sg Instr => x + "igrekiem";
-      SF Sg Loc => x + "igreku";
-      SF Sg Voc => x + "igreku";
-      SF Pl Nom => x + "Igrekowie";
-      SF Pl Gen => x + "igreków";
-      SF Pl Dat => x + "igrekom";
-      SF Pl Acc => x + "igreków";
-      SF Pl Instr => x + "igrekami";
-      SF Pl Loc => x + "igrekach";
-      SF Pl Voc => x + "Igrekowie"
-    };
-
-    oper mkNTable1193: Str -> SubstForm => Str; --%
-    oper mkNTable1193 lexem = 
-      let x = Predef.tk 3 lexem in
-    table { 
-      SF Sg Nom => x + "iks";
-      SF Sg Gen => x + "iksa";
-      SF Sg Dat => x + "iksowi";
-      SF Sg Acc => x + "iksa";
-      SF Sg Instr => x + "iksem";
-      SF Sg Loc => x + "iksie";
-      SF Sg Voc => x + "iksie";
-      SF Pl Nom => x + "Iksowie";
-      SF Pl Gen => x + "iksów";
-      SF Pl Dat => x + "iksom";
-      SF Pl Acc => x + "iksów";
-      SF Pl Instr => x + "iksami";
-      SF Pl Loc => x + "iksach";
-      SF Pl Voc => x + "Iksowie"
-    };
-
-    oper mkNTable1196: Str -> SubstForm => Str; --%
-    oper mkNTable1196 lexem = 
-      let x = Predef.tk 2 lexem in
-    table { 
-      SF Sg Nom => x + "co";
-      SF Sg Gen => x + "ca";
-      SF Sg Dat => x + "cu";
-      SF Sg Acc => x + "co";
-      SF Sg Instr => x + "cem";
-      SF Sg Loc => x + "cu";
-      SF Sg Voc => x + "co";
-      SF Pl Nom => x + "ca";
-      SF Pl Gen => x + "ec";
-      SF Pl Dat => x + "com";
-      SF Pl Acc => x + "ca";
-      SF Pl Instr => x + "cami";
-      SF Pl Loc => x + "cach";
-      SF Pl Voc => x + "ca"
-    };
-
-    oper mkNTable1197: Str -> SubstForm => Str; --%
-    oper mkNTable1197 lexem = 
-      let x = Predef.tk 5 lexem in
-    table { 
-      SF Sg Nom => x + "jarek";
-      SF Sg Gen => x + "jarka";
-      SF Sg Dat => x + "Jarkowi";
-      SF Sg Acc => x + "jarek";
-      SF Sg Instr => x + "Jarkiem";
-      SF Sg Loc => x + "Jarku";
-      SF Sg Voc => x + "Jarku";
-      SF Pl Nom => x + "jarki";
-      SF Pl Gen => x + "Jarków";
-      SF Pl Dat => x + "jarkom";
-      SF Pl Acc => x + "jarki";
-      SF Pl Instr => x + "jarkami";
-      SF Pl Loc => x + "jarkach";
-      SF Pl Voc => x + "jarki"
-    };
-
-    oper mkNTable1198: Str -> SubstForm => Str; --%
-    oper mkNTable1198 lexem = 
-      let x = Predef.tk 2 lexem in
-    table { 
-      SF Sg Nom => x + "ąb";
-      SF Sg Gen => x + "ębu";
-      SF Sg Dat => x + "ębowi";
-      SF Sg Acc => x + "ąb";
-      SF Sg Instr => x + "ębiem";
-      SF Sg Loc => x + "ębiu";
-      SF Sg Voc => x + "ębiu";
-      SF Pl Nom => x + "ęby";
-      SF Pl Gen => x + "ębów";
-      SF Pl Dat => x + "ębom";
-      SF Pl Acc => x + "ęby";
-      SF Pl Instr => x + "ębiami";
-      SF Pl Loc => x + "ębiach";
-      SF Pl Voc => x + "ęby"
-    };
-
-    oper mkNTable1199: Str -> SubstForm => Str; --%
-    oper mkNTable1199 lexem = 
-      let x = Predef.tk 4 lexem in
-    table { 
-      SF Sg Nom => x + "siek";
-      SF Sg Gen => x + "śka";
-      SF Sg Dat => x + "śkowi";
-      SF Sg Acc => x + "siek";
-      SF Sg Instr => x + "śkiem";
-      SF Sg Loc => x + "śku";
-      SF Sg Voc => x + "śku";
-      SF Pl Nom => x + "śki";
-      SF Pl Gen => x + "śków";
-      SF Pl Dat => x + "śkom";
-      SF Pl Acc => x + "śki";
-      SF Pl Instr => x + "śkami";
-      SF Pl Loc => x + "śkach";
-      SF Pl Voc => x + "śki"
-    };
-
-    oper mkNTable1200: Str -> SubstForm => Str; --%
-    oper mkNTable1200 lexem = 
-      let x = Predef.tk 1 lexem in
-    table { 
-      SF Sg Nom => x + "ź";
-      SF Sg Gen => x + "zia";
-      SF Sg Dat => x + "ziowi";
-      SF Sg Acc => x + "zia";
-      SF Sg Instr => x + "ziem";
-      SF Sg Loc => x + "ziu";
-      SF Sg Voc => x + "ziu";
-      SF Pl Nom => x + "zie";
-      SF Pl Gen => x + "zi";
-      SF Pl Dat => x + "ziom";
-      SF Pl Acc => x + "zie";
-      SF Pl Instr => x + "ziami";
-      SF Pl Loc => x + "ziach";
-      SF Pl Voc => x + "zie"
-    };
-
-    oper mkNTable1201: Str -> SubstForm => Str; --%
-    oper mkNTable1201 lexem = 
-      let x = Predef.tk 0 lexem in
-    table { 
-      SF Sg Nom => x + "";
-      SF Sg Gen => x + "iu";
-      SF Sg Dat => x + "iowi";
-      SF Sg Acc => x + "";
-      SF Sg Instr => x + "iem";
-      SF Sg Loc => x + "iu";
-      SF Sg Voc => x + "iu";
-      SF Pl Nom => x + "ie";
-      SF Pl Gen => x + "iów";
-      SF Pl Dat => x + "iom";
-      SF Pl Acc => x + "ie";
-      SF Pl Instr => x + "iami";
-      SF Pl Loc => x + "iach";
-      SF Pl Voc => x + "ie"
-    };
-
-    oper mkNTable1202: Str -> SubstForm => Str; --%
-    oper mkNTable1202 lexem = 
-      let x = Predef.tk 1 lexem in
-    table { 
-      SF Sg Nom => x + "ń";
-      SF Sg Gen => x + "nia";
-      SF Sg Dat => x + "niowi";
-      SF Sg Acc => x + "nia";
-      SF Sg Instr => x + "niem";
-      SF Sg Loc => x + "niu";
-      SF Sg Voc => x + "niu";
-      SF Pl Nom => x + "nie";
-      SF Pl Gen => x + "ni";
-      SF Pl Dat => x + "niom";
-      SF Pl Acc => x + "ni";
-      SF Pl Instr => x + "niami";
-      SF Pl Loc => x + "niach";
-      SF Pl Voc => x + "nie"
-    };
-
-    oper mkNTable1203: Str -> SubstForm => Str; --%
-    oper mkNTable1203 lexem = 
-      let x = Predef.tk 4 lexem in
-    table { 
-      SF Sg Nom => x + "ziec";
-      SF Sg Gen => x + "źca";
-      SF Sg Dat => x + "źcowi";
-      SF Sg Acc => x + "źca";
-      SF Sg Instr => x + "źcem";
-      SF Sg Loc => x + "źcu";
-      SF Sg Voc => x + "źcze";
-      SF Pl Nom => x + "źcy";
-      SF Pl Gen => x + "źców";
-      SF Pl Dat => x + "źcom";
-      SF Pl Acc => x + "źców";
-      SF Pl Instr => x + "źcami";
-      SF Pl Loc => x + "źcach";
-      SF Pl Voc => x + "źcy"
-    };
-
-    oper mkNTable1204: Str -> SubstForm => Str; --%
-    oper mkNTable1204 lexem = 
-      let x = Predef.tk 1 lexem in
-    table { 
-      SF Sg Nom => x + "y";
-      SF Sg Gen => x + "ya";
-      SF Sg Dat => x + "yowi";
-      SF Sg Acc => x + "ya";
-      SF Sg Instr => x + "yem";
-      SF Sg Loc => x + "yu";
-      SF Sg Voc => x + "yu";
-      SF Pl Nom => x + "ye";
-      SF Pl Gen => x + "i";
-      SF Pl Dat => x + "yom";
-      SF Pl Acc => x + "i";
-      SF Pl Instr => x + "yami";
-      SF Pl Loc => x + "yach";
-      SF Pl Voc => x + "ye"
-    };
-
-    oper mkNTable1205: Str -> SubstForm => Str; --%
-    oper mkNTable1205 lexem = 
-      let x = Predef.tk 2 lexem in
-    table { 
-      SF Sg Nom => x + "ła";
-      SF Sg Gen => x + "ły";
-      SF Sg Dat => x + "le";
-      SF Sg Acc => x + "łę";
-      SF Sg Instr => x + "łą";
-      SF Sg Loc => x + "le";
-      SF Sg Voc => x + "ło";
-      SF Pl Nom => x + "ły";
-      SF Pl Gen => x + "eł";
-      SF Pl Dat => x + "łom";
-      SF Pl Acc => x + "ły";
-      SF Pl Instr => x + "łami";
-      SF Pl Loc => x + "łach";
-      SF Pl Voc => x + "ły"
-    };
-
-    oper mkNTable1206: Str -> SubstForm => Str; --%
-    oper mkNTable1206 lexem = 
-      let x = Predef.tk 6 lexem in
-    table { 
-      SF Sg Nom => x + "Kalita";
-      SF Sg Gen => x + "kality";
-      SF Sg Dat => x + "kalicie";
-      SF Sg Acc => x + "Kalitę";
-      SF Sg Instr => x + "Kalitą";
-      SF Sg Loc => x + "kalicie";
-      SF Sg Voc => x + "Kalito";
-      SF Pl Nom => x + "kality";
-      SF Pl Gen => x + "kalit";
-      SF Pl Dat => x + "kalitom";
-      SF Pl Acc => x + "kality";
-      SF Pl Instr => x + "kalitami";
-      SF Pl Loc => x + "kalitach";
-      SF Pl Voc => x + "kality"
-    };
-
-    oper mkNTable1207: Str -> SubstForm => Str; --%
-    oper mkNTable1207 lexem = 
-      let x = Predef.tk 2 lexem in
-    table { 
-      SF Sg Nom => x + "ła";
-      SF Sg Gen => x + "ły";
-      SF Sg Dat => x + "le";
-      SF Sg Acc => x + "łę";
-      SF Sg Instr => x + "łą";
-      SF Sg Loc => x + "le";
-      SF Sg Voc => x + "ło";
-      SF Pl Nom => x + "li";
-      SF Pl Gen => x + "łów";
-      SF Pl Dat => x + "łom";
-      SF Pl Acc => x + "łów";
-      SF Pl Instr => x + "łami";
-      SF Pl Loc => x + "łach";
-      SF Pl Voc => x + "li"
-    };
-
-    oper mkNTable1208: Str -> SubstForm => Str; --%
-    oper mkNTable1208 lexem = 
-      let x = Predef.tk 5 lexem in
-    table { 
-      SF Sg Nom => x + "kanar";
-      SF Sg Gen => x + "kanara";
-      SF Sg Dat => x + "kanarowi";
-      SF Sg Acc => x + "kanara";
-      SF Sg Instr => x + "kanarem";
-      SF Sg Loc => x + "kanarze";
-      SF Sg Voc => x + "kanarze";
-      SF Pl Nom => x + "Kanarowie";
-      SF Pl Gen => x + "kanarów";
-      SF Pl Dat => x + "kanarom";
-      SF Pl Acc => x + "kanarów";
-      SF Pl Instr => x + "kanarami";
-      SF Pl Loc => x + "kanarach";
-      SF Pl Voc => x + "Kanarowie"
-    };
-
-    oper mkNTable1209: Str -> SubstForm => Str; --%
-    oper mkNTable1209 lexem = 
-      let x = Predef.tk 2 lexem in
-    table { 
-      SF Sg Nom => x + "eć";
-      SF Sg Gen => x + "cia";
-      SF Sg Dat => x + "ciowi";
-      SF Sg Acc => x + "cia";
-      SF Sg Instr => x + "ciem";
-      SF Sg Loc => x + "ciu";
-      SF Sg Voc => x + "ciu";
-      SF Pl Nom => x + "cie";
-      SF Pl Gen => x + "ci";
-      SF Pl Dat => x + "ciom";
-      SF Pl Acc => x + "cie";
-      SF Pl Instr => x + "ciami";
-      SF Pl Loc => x + "ciach";
-      SF Pl Voc => x + "cie"
-    };
-
-    oper mkNTable1210: Str -> SubstForm => Str; --%
-    oper mkNTable1210 lexem = 
-      let x = Predef.tk 2 lexem in
-    table { 
-      SF Sg Nom => x + "eć";
-      SF Sg Gen => x + "cia";
-      SF Sg Dat => x + "ciowi";
-      SF Sg Acc => x + "eć";
-      SF Sg Instr => x + "ciem";
-      SF Sg Loc => x + "ciu";
-      SF Sg Voc => x + "ciu";
-      SF Pl Nom => x + "cie";
-      SF Pl Gen => x + "ci";
-      SF Pl Dat => x + "ciom";
-      SF Pl Acc => x + "cie";
-      SF Pl Instr => x + "ciami";
-      SF Pl Loc => x + "ciach";
-      SF Pl Voc => x + "cie"
-    };
-
-    oper mkNTable1211: Str -> SubstForm => Str; --%
-    oper mkNTable1211 lexem = 
-      let x = Predef.tk 1 lexem in
-    table { 
-      SF Sg Nom => x + "ś";
-      SF Sg Gen => x + "sia";
-      SF Sg Dat => x + "siowi";
-      SF Sg Acc => x + "sia";
-      SF Sg Instr => x + "siem";
-      SF Sg Loc => x + "siu";
-      SF Sg Voc => x + "siu";
-      SF Pl Nom => x + "sie";
-      SF Pl Gen => x + "si";
-      SF Pl Dat => x + "siom";
-      SF Pl Acc => x + "sie";
-      SF Pl Instr => x + "siami";
-      SF Pl Loc => x + "siach";
-      SF Pl Voc => x + "sie"
-    };
-
-    oper mkNTable1212: Str -> SubstForm => Str; --%
-    oper mkNTable1212 lexem = 
-      let x = Predef.tk 2 lexem in
-    table { 
-      SF Sg Nom => x + "ma";
-      SF Sg Gen => x + "my";
-      SF Sg Dat => x + "mie";
-      SF Sg Acc => x + "mę";
-      SF Sg Instr => x + "mą";
-      SF Sg Loc => x + "mie";
-      SF Sg Voc => x + "mo";
-      SF Pl Nom => x + "my";
-      SF Pl Gen => x + "em";
-      SF Pl Dat => x + "mom";
-      SF Pl Acc => x + "my";
-      SF Pl Instr => x + "mami";
-      SF Pl Loc => x + "mach";
-      SF Pl Voc => x + "my"
-    };
-
-    oper mkNTable1213: Str -> SubstForm => Str; --%
-    oper mkNTable1213 lexem = 
-      let x = Predef.tk 3 lexem in
-    table { 
-      SF Sg Nom => x + "zeł";
-      SF Sg Gen => x + "ła";
-      SF Sg Dat => x + "łowi";
-      SF Sg Acc => x + "ła";
-      SF Sg Instr => x + "łem";
-      SF Sg Loc => x + "le";
-      SF Sg Voc => x + "le";
-      SF Pl Nom => x + "łowie";
-      SF Pl Gen => x + "łów";
-      SF Pl Dat => x + "łom";
-      SF Pl Acc => x + "łów";
-      SF Pl Instr => x + "łami";
-      SF Pl Loc => x + "łach";
-      SF Pl Voc => x + "łowie"
-    };
-
-    oper mkNTable1214: Str -> SubstForm => Str; --%
-    oper mkNTable1214 lexem = 
-      let x = Predef.tk 3 lexem in
-    table { 
-      SF Sg Nom => x + "zeł";
-      SF Sg Gen => x + "ła";
-      SF Sg Dat => x + "łowi";
-      SF Sg Acc => x + "ła";
-      SF Sg Instr => x + "łem";
-      SF Sg Loc => x + "le";
-      SF Sg Voc => x + "le";
-      SF Pl Nom => x + "ły";
-      SF Pl Gen => x + "łów";
-      SF Pl Dat => x + "łom";
-      SF Pl Acc => x + "ły";
-      SF Pl Instr => x + "łami";
-      SF Pl Loc => x + "łach";
-      SF Pl Voc => x + "ły"
-    };
-
-    oper mkNTable1215: Str -> SubstForm => Str; --%
-    oper mkNTable1215 lexem = 
-      let x = Predef.tk 2 lexem in
-    table { 
-      SF Sg Nom => x + "el";
-      SF Sg Gen => x + "lu";
-      SF Sg Dat => x + "lowi";
-      SF Sg Acc => x + "el";
-      SF Sg Instr => x + "lem";
-      SF Sg Loc => x + "lu";
-      SF Sg Voc => x + "lu";
-      SF Pl Nom => x + "le";
-      SF Pl Gen => x + "lów";
-      SF Pl Dat => x + "lom";
-      SF Pl Acc => x + "le";
-      SF Pl Instr => x + "lami";
-      SF Pl Loc => x + "lach";
-      SF Pl Voc => x + "le"
-    };
-
-    oper mkNTable1216: Str -> SubstForm => Str; --%
-    oper mkNTable1216 lexem = 
-      let x = Predef.tk 3 lexem in
-    table { 
-      SF Sg Nom => x + "iep";
-      SF Sg Gen => x + "pa";
-      SF Sg Dat => x + "powi";
-      SF Sg Acc => x + "iep";
-      SF Sg Instr => x + "pem";
-      SF Sg Loc => x + "pie";
-      SF Sg Voc => x + "pie";
-      SF Pl Nom => x + "py";
-      SF Pl Gen => x + "pów";
-      SF Pl Dat => x + "pom";
-      SF Pl Acc => x + "py";
-      SF Pl Instr => x + "pami";
-      SF Pl Loc => x + "pach";
-      SF Pl Voc => x + "py"
-    };
-
-    oper mkNTable1218: Str -> SubstForm => Str; --%
-    oper mkNTable1218 lexem = 
-      let x = Predef.tk 3 lexem in
-    table { 
-      SF Sg Nom => x + "ieł";
-      SF Sg Gen => x + "ła";
-      SF Sg Dat => x + "łowi";
-      SF Sg Acc => x + "ła";
-      SF Sg Instr => x + "łem";
-      SF Sg Loc => x + "le";
-      SF Sg Voc => x + "le";
-      SF Pl Nom => x + "ły";
-      SF Pl Gen => x + "łów";
-      SF Pl Dat => x + "łom";
-      SF Pl Acc => x + "ły";
-      SF Pl Instr => x + "łami";
-      SF Pl Loc => x + "łach";
-      SF Pl Voc => x + "ły"
-    };
-
-    oper mkNTable1219: Str -> SubstForm => Str; --%
-    oper mkNTable1219 lexem = 
-      let x = Predef.tk 3 lexem in
-    table { 
-      SF Sg Nom => x + "ieł";
-      SF Sg Gen => x + "ła";
-      SF Sg Dat => x + "łowi";
-      SF Sg Acc => x + "ieł";
-      SF Sg Instr => x + "łem";
-      SF Sg Loc => x + "le";
-      SF Sg Voc => x + "le";
-      SF Pl Nom => x + "ły";
-      SF Pl Gen => x + "łów";
-      SF Pl Dat => x + "łom";
-      SF Pl Acc => x + "ły";
-      SF Pl Instr => x + "łami";
-      SF Pl Loc => x + "łach";
-      SF Pl Voc => x + "ły"
-    };
-
-    oper mkNTable1220: Str -> SubstForm => Str; --%
-    oper mkNTable1220 lexem = 
-      let x = Predef.tk 3 lexem in
-    table { 
-      SF Sg Nom => x + "zno";
-      SF Sg Gen => x + "zna";
-      SF Sg Dat => x + "znu";
-      SF Sg Acc => x + "zno";
-      SF Sg Instr => x + "znem";
-      SF Sg Loc => x + "źnie";
-      SF Sg Voc => x + "zno";
-      SF Pl Nom => x + "zna";
-      SF Pl Gen => x + "zn";
-      SF Pl Dat => x + "znom";
-      SF Pl Acc => x + "zna";
-      SF Pl Instr => x + "znami";
-      SF Pl Loc => x + "znach";
-      SF Pl Voc => x + "zna"
-    };
-
-    oper mkNTable1221: Str -> SubstForm => Str; --%
-    oper mkNTable1221 lexem = 
-      let x = Predef.tk 1 lexem in
-    table { 
-      SF Sg Nom => x + "ć";
-      SF Sg Gen => x + "ci";
-      SF Sg Dat => x + "ci";
-      SF Sg Acc => x + "ć";
-      SF Sg Instr => x + "cią";
-      SF Sg Loc => x + "ci";
-      SF Sg Voc => x + "ci";
-      SF Pl Nom => x + "cie";
-      SF Pl Gen => x + "ci";
-      SF Pl Dat => x + "ciom";
-      SF Pl Acc => x + "cie";
-      SF Pl Instr => x + "ćmi";
-      SF Pl Loc => x + "ciach";
-      SF Pl Voc => x + "cie"
-    };
-
-    oper mkNTable1222: Str -> SubstForm => Str; --%
-    oper mkNTable1222 lexem = 
-      let x = Predef.tk 1 lexem in
-    table { 
-      SF Sg Nom => x + "ć";
-      SF Sg Gen => x + "cia";
-      SF Sg Dat => x + "ciowi";
-      SF Sg Acc => x + "ć";
-      SF Sg Instr => x + "ciem";
-      SF Sg Loc => x + "ciu";
-      SF Sg Voc => x + "ciu";
-      SF Pl Nom => x + "cie";
-      SF Pl Gen => x + "ciów";
-      SF Pl Dat => x + "ciom";
-      SF Pl Acc => x + "cie";
-      SF Pl Instr => x + "ciami";
-      SF Pl Loc => x + "ciach";
-      SF Pl Voc => x + "cie"
-    };
-
-    oper mkNTable1223: Str -> SubstForm => Str; --%
-    oper mkNTable1223 lexem = 
-      let x = Predef.tk 1 lexem in
-    table { 
-      SF Sg Nom => x + "ć";
-      SF Sg Gen => x + "cia";
-      SF Sg Dat => x + "ciowi";
-      SF Sg Acc => x + "cia";
-      SF Sg Instr => x + "ciem";
-      SF Sg Loc => x + "ciu";
-      SF Sg Voc => x + "ciu";
-      SF Pl Nom => x + "cie";
-      SF Pl Gen => x + "ci";
-      SF Pl Dat => x + "ciom";
-      SF Pl Acc => x + "ci";
-      SF Pl Instr => x + "ciami";
-      SF Pl Loc => x + "ciach";
-      SF Pl Voc => x + "cie"
-    };
-
-    oper mkNTable1224: Str -> SubstForm => Str; --%
-    oper mkNTable1224 lexem = 
-      let x = Predef.tk 3 lexem in
-    table { 
-      SF Sg Nom => x + "ieć";
-      SF Sg Gen => x + "cia";
-      SF Sg Dat => x + "ciowi";
-      SF Sg Acc => x + "ieć";
-      SF Sg Instr => x + "ciem";
-      SF Sg Loc => x + "ciu";
-      SF Sg Voc => x + "ciu";
-      SF Pl Nom => x + "cie";
-      SF Pl Gen => x + "ciów";
-      SF Pl Dat => x + "ciom";
-      SF Pl Acc => x + "cie";
-      SF Pl Instr => x + "ciami";
-      SF Pl Loc => x + "ciach";
-      SF Pl Voc => x + "cie"
-    };
-
-    oper mkNTable1225: Str -> SubstForm => Str; --%
-    oper mkNTable1225 lexem = 
-      let x = Predef.tk 4 lexem in
-    table { 
-      SF Sg Nom => x + "cioł";
-      SF Sg Gen => x + "tła";
-      SF Sg Dat => x + "tłowi";
-      SF Sg Acc => x + "cioł";
-      SF Sg Instr => x + "tłem";
-      SF Sg Loc => x + "tle";
-      SF Sg Voc => x + "tle";
-      SF Pl Nom => x + "tły";
-      SF Pl Gen => x + "tłów";
-      SF Pl Dat => x + "tłom";
-      SF Pl Acc => x + "tły";
-      SF Pl Instr => x + "tłami";
-      SF Pl Loc => x + "tłach";
-      SF Pl Voc => x + "tły"
-    };
-
-    oper mkNTable1226: Str -> SubstForm => Str; --%
-    oper mkNTable1226 lexem = 
-      let x = Predef.tk 5 lexem in
-    table { 
-      SF Sg Nom => x + "kogut";
-      SF Sg Gen => x + "koguta";
-      SF Sg Dat => x + "kogutowi";
-      SF Sg Acc => x + "koguta";
-      SF Sg Instr => x + "kogutem";
-      SF Sg Loc => x + "kogucie";
-      SF Sg Voc => x + "kogucie";
-      SF Pl Nom => x + "Kogutowie";
-      SF Pl Gen => x + "kogutów";
-      SF Pl Dat => x + "kogutom";
-      SF Pl Acc => x + "kogutów";
-      SF Pl Instr => x + "kogutami";
-      SF Pl Loc => x + "kogutach";
-      SF Pl Voc => x + "Kogutowie"
-    };
-
-    oper mkNTable1227: Str -> SubstForm => Str; --%
-    oper mkNTable1227 lexem = 
-      let x = Predef.tk 5 lexem in
-    table { 
-      SF Sg Nom => x + "kokot";
-      SF Sg Gen => x + "kokota";
-      SF Sg Dat => x + "Kokotowi";
-      SF Sg Acc => x + "kokota";
-      SF Sg Instr => x + "Kokotem";
-      SF Sg Loc => x + "kokocie";
-      SF Sg Voc => x + "kokocie";
-      SF Pl Nom => x + "kokoty";
-      SF Pl Gen => x + "Kokotów";
-      SF Pl Dat => x + "kokotom";
-      SF Pl Acc => x + "kokoty";
-      SF Pl Instr => x + "kokotami";
-      SF Pl Loc => x + "kokotach";
-      SF Pl Voc => x + "kokoty"
-    };
-
-    oper mkNTable1228: Str -> SubstForm => Str; --%
-    oper mkNTable1228 lexem = 
-      let x = Predef.tk 2 lexem in
-    table { 
-      SF Sg Nom => x + "ów";
-      SF Sg Gen => x + "owa";
-      SF Sg Dat => x + "owowi";
-      SF Sg Acc => x + "owa";
-      SF Sg Instr => x + "owem";
-      SF Sg Loc => x + "owie";
-      SF Sg Voc => x + "owie";
-      SF Pl Nom => x + "owy";
-      SF Pl Gen => x + "owów";
-      SF Pl Dat => x + "owom";
-      SF Pl Acc => x + "owy";
-      SF Pl Instr => x + "owami";
-      SF Pl Loc => x + "owach";
-      SF Pl Voc => x + "owy"
-    };
-
-    oper mkNTable1229: Str -> SubstForm => Str; --%
-    oper mkNTable1229 lexem = 
-      let x = Predef.tk 2 lexem in
-    table { 
-      SF Sg Nom => x + "ga";
-      SF Sg Gen => x + "gi";
-      SF Sg Dat => x + "dze";
-      SF Sg Acc => x + "gę";
-      SF Sg Instr => x + "gą";
-      SF Sg Loc => x + "dze";
-      SF Sg Voc => x + "go";
-      SF Pl Nom => x + "dzy";
-      SF Pl Gen => x + "gów";
-      SF Pl Dat => x + "gom";
-      SF Pl Acc => x + "gów";
-      SF Pl Instr => x + "gami";
-      SF Pl Loc => x + "gach";
-      SF Pl Voc => x + "dzy"
-    };
-
-    oper mkNTable1230: Str -> SubstForm => Str; --%
-    oper mkNTable1230 lexem = 
-      let x = Predef.tk 1 lexem in
-    table { 
-      SF Sg Nom => x + "j";
-      SF Sg Gen => x + "i";
-      SF Sg Dat => x + "i";
-      SF Sg Acc => x + "j";
-      SF Sg Instr => x + "ją";
-      SF Sg Loc => x + "i";
-      SF Sg Voc => x + "i";
-      SF Pl Nom => x + "je";
-      SF Pl Gen => x + "i";
-      SF Pl Dat => x + "jom";
-      SF Pl Acc => x + "je";
-      SF Pl Instr => x + "jami";
-      SF Pl Loc => x + "jach";
-      SF Pl Voc => x + "je"
-    };
-
-    oper mkNTable1232: Str -> SubstForm => Str; --%
-    oper mkNTable1232 lexem = 
-      let x = Predef.tk 8 lexem in
-    table { 
-      SF Sg Nom => x + "Koleśnik";
-      SF Sg Gen => x + "Koleśnika";
-      SF Sg Dat => x + "Koleśnikowi";
-      SF Sg Acc => x + "Koleśnika";
-      SF Sg Instr => x + "Koleśnikiem";
-      SF Sg Loc => x + "Koleśniku";
-      SF Sg Voc => x + "Koleśniku";
-      SF Pl Nom => x + "koleśnicy";
-      SF Pl Gen => x + "Koleśników";
-      SF Pl Dat => x + "Koleśnikom";
-      SF Pl Acc => x + "Koleśników";
-      SF Pl Instr => x + "Koleśnikami";
-      SF Pl Loc => x + "Koleśnikach";
-      SF Pl Voc => x + "koleśnicy"
-    };
-
-    oper mkNTable1233: Str -> SubstForm => Str; --%
-    oper mkNTable1233 lexem = 
-      let x = Predef.tk 2 lexem in
-    table { 
-      SF Sg Nom => x + "ew";
-      SF Sg Gen => x + "wi";
-      SF Sg Dat => x + "wi";
-      SF Sg Acc => x + "ew";
-      SF Sg Instr => x + "wią";
-      SF Sg Loc => x + "wi";
-      SF Sg Voc => x + "wi";
-      SF Pl Nom => x + "wie";
-      SF Pl Gen => x + "wi";
-      SF Pl Dat => x + "wiom";
-      SF Pl Acc => x + "wie";
-      SF Pl Instr => x + "wiami";
-      SF Pl Loc => x + "wiach";
-      SF Pl Voc => x + "wie"
-    };
-
-    oper mkNTable1234: Str -> SubstForm => Str; --%
-    oper mkNTable1234 lexem = 
-      let x = Predef.tk 5 lexem in
-    table { 
-      SF Sg Nom => x + "konik";
-      SF Sg Gen => x + "konika";
-      SF Sg Dat => x + "konikowi";
-      SF Sg Acc => x + "konika";
-      SF Sg Instr => x + "konikiem";
-      SF Sg Loc => x + "koniku";
-      SF Sg Voc => x + "koniku";
-      SF Pl Nom => x + "Konikowie";
-      SF Pl Gen => x + "koników";
-      SF Pl Dat => x + "konikom";
-      SF Pl Acc => x + "koników";
-      SF Pl Instr => x + "konikami";
-      SF Pl Loc => x + "konikach";
-      SF Pl Voc => x + "Konikowie"
-    };
-
-    oper mkNTable1235: Str -> SubstForm => Str; --%
-    oper mkNTable1235 lexem = 
-      let x = Predef.tk 4 lexem in
-    table { 
-      SF Sg Nom => x + "kopa";
-      SF Sg Gen => x + "kopy";
-      SF Sg Dat => x + "kopie";
-      SF Sg Acc => x + "Kopę";
-      SF Sg Instr => x + "Kopą";
-      SF Sg Loc => x + "kopie";
-      SF Sg Voc => x + "Kopo";
-      SF Pl Nom => x + "kopy";
-      SF Pl Gen => x + "kop";
-      SF Pl Dat => x + "kopom";
-      SF Pl Acc => x + "kopy";
-      SF Pl Instr => x + "kopami";
-      SF Pl Loc => x + "kopach";
-      SF Pl Voc => x + "kopy"
-    };
-
-    oper mkNTable1236: Str -> SubstForm => Str; --%
-    oper mkNTable1236 lexem = 
-      let x = Predef.tk 2 lexem in
-    table { 
-      SF Sg Nom => x + "eć";
-      SF Sg Gen => x + "ciu";
-      SF Sg Dat => x + "ciowi";
-      SF Sg Acc => x + "eć";
-      SF Sg Instr => x + "ciem";
-      SF Sg Loc => x + "ciu";
-      SF Sg Voc => x + "ciu";
-      SF Pl Nom => x + "cie";
-      SF Pl Gen => x + "ci";
-      SF Pl Dat => x + "ciom";
-      SF Pl Acc => x + "cie";
-      SF Pl Instr => x + "ciami";
-      SF Pl Loc => x + "ciach";
-      SF Pl Voc => x + "cie"
-    };
-
-    oper mkNTable1237: Str -> SubstForm => Str; --%
-    oper mkNTable1237 lexem = 
-      let x = Predef.tk 0 lexem in
-    table { 
-      SF Sg Nom => x + "";
-      SF Sg Gen => x + "ia";
-      SF Sg Dat => x + "iowi";
-      SF Sg Acc => x + "";
-      SF Sg Instr => x + "iem";
-      SF Sg Loc => x + "iu";
-      SF Sg Voc => x + "iu";
-      SF Pl Nom => x + "ie";
-      SF Pl Gen => x + "iów";
-      SF Pl Dat => x + "iom";
-      SF Pl Acc => x + "ie";
-      SF Pl Instr => x + "iami";
-      SF Pl Loc => x + "iach";
-      SF Pl Voc => x + "ie"
-    };
-
-    oper mkNTable1238: Str -> SubstForm => Str; --%
-    oper mkNTable1238 lexem = 
-      let x = Predef.tk 3 lexem in
-    table { 
-      SF Sg Nom => x + "kot";
-      SF Sg Gen => x + "kota";
-      SF Sg Dat => x + "kotu";
-      SF Sg Acc => x + "kota";
-      SF Sg Instr => x + "kotem";
-      SF Sg Loc => x + "kocie";
-      SF Sg Voc => x + "kocie";
-      SF Pl Nom => x + "Kotowie";
-      SF Pl Gen => x + "kotów";
-      SF Pl Dat => x + "kotom";
-      SF Pl Acc => x + "kotów";
-      SF Pl Instr => x + "kotami";
-      SF Pl Loc => x + "kotach";
-      SF Pl Voc => x + "Kotowie"
-    };
-
-    oper mkNTable1239: Str -> SubstForm => Str; --%
-    oper mkNTable1239 lexem = 
-      let x = Predef.tk 6 lexem in
-    table { 
-      SF Sg Nom => x + "Kozieł";
-      SF Sg Gen => x + "kozła";
-      SF Sg Dat => x + "Kozłowi";
-      SF Sg Acc => x + "kozła";
-      SF Sg Instr => x + "kozłem";
-      SF Sg Loc => x + "koźle";
-      SF Sg Voc => x + "koźle";
-      SF Pl Nom => x + "kozły";
-      SF Pl Gen => x + "kozłów";
-      SF Pl Dat => x + "kozłom";
-      SF Pl Acc => x + "kozły";
-      SF Pl Instr => x + "kozłami";
-      SF Pl Loc => x + "kozłach";
-      SF Pl Voc => x + "kozły"
-    };
-
-    oper mkNTable1240: Str -> SubstForm => Str; --%
-    oper mkNTable1240 lexem = 
-      let x = Predef.tk 6 lexem in
-    table { 
-      SF Sg Nom => x + "kozioł";
-      SF Sg Gen => x + "kozła";
-      SF Sg Dat => x + "Kozłowi";
-      SF Sg Acc => x + "kozła";
-      SF Sg Instr => x + "kozłem";
-      SF Sg Loc => x + "koźle";
-      SF Sg Voc => x + "koźle";
-      SF Pl Nom => x + "kozły";
-      SF Pl Gen => x + "kozłów";
-      SF Pl Dat => x + "kozłom";
-      SF Pl Acc => x + "kozły";
-      SF Pl Instr => x + "kozłami";
-      SF Pl Loc => x + "kozłach";
-      SF Pl Voc => x + "kozły"
-    };
-
-    oper mkNTable1241: Str -> SubstForm => Str; --%
-    oper mkNTable1241 lexem = 
-      let x = Predef.tk 6 lexem in
-    table { 
-      SF Sg Nom => x + "kozioł";
-      SF Sg Gen => x + "kozła";
-      SF Sg Dat => x + "Kozłowi";
-      SF Sg Acc => x + "kozioł";
-      SF Sg Instr => x + "kozłem";
-      SF Sg Loc => x + "koźle";
-      SF Sg Voc => x + "koźle";
-      SF Pl Nom => x + "kozły";
-      SF Pl Gen => x + "kozłów";
-      SF Pl Dat => x + "kozłom";
-      SF Pl Acc => x + "kozły";
-      SF Pl Instr => x + "kozłami";
-      SF Pl Loc => x + "kozłach";
-      SF Pl Voc => x + "kozły"
-    };
-
-    oper mkNTable1242: Str -> SubstForm => Str; --%
-    oper mkNTable1242 lexem = 
-      let x = Predef.tk 2 lexem in
-    table { 
-      SF Sg Nom => x + "ój";
-      SF Sg Gen => x + "oja";
-      SF Sg Dat => x + "ojowi";
-      SF Sg Acc => x + "oja";
-      SF Sg Instr => x + "ojem";
-      SF Sg Loc => x + "oju";
-      SF Sg Voc => x + "oju";
-      SF Pl Nom => x + "oje";
-      SF Pl Gen => x + "ojów";
-      SF Pl Dat => x + "ojom";
-      SF Pl Acc => x + "oje";
-      SF Pl Instr => x + "ojami";
-      SF Pl Loc => x + "ojach";
-      SF Pl Voc => x + "oje"
-    };
-
-    oper mkNTable1244: Str -> SubstForm => Str; --%
-    oper mkNTable1244 lexem = 
-      let x = Predef.tk 6 lexem in
-    table { 
-      SF Sg Nom => x + "kołacz";
-      SF Sg Gen => x + "kołacza";
-      SF Sg Dat => x + "kołaczowi";
-      SF Sg Acc => x + "kołacza";
-      SF Sg Instr => x + "kołaczem";
-      SF Sg Loc => x + "kołaczu";
-      SF Sg Voc => x + "kołaczu";
-      SF Pl Nom => x + "kołacze";
-      SF Pl Gen => x + "Kołaczów";
-      SF Pl Dat => x + "kołaczom";
-      SF Pl Acc => x + "kołacze";
-      SF Pl Instr => x + "kołaczami";
-      SF Pl Loc => x + "kołaczach";
-      SF Pl Voc => x + "kołacze"
-    };
-
-    oper mkNTable1245: Str -> SubstForm => Str; --%
-    oper mkNTable1245 lexem = 
-      let x = Predef.tk 5 lexem in
-    table { 
-      SF Sg Nom => x + "kołek";
-      SF Sg Gen => x + "kołka";
-      SF Sg Dat => x + "kołkowi";
-      SF Sg Acc => x + "kołka";
-      SF Sg Instr => x + "kołkiem";
-      SF Sg Loc => x + "kołku";
-      SF Sg Voc => x + "kołku";
-      SF Pl Nom => x + "Kołkowie";
-      SF Pl Gen => x + "kołków";
-      SF Pl Dat => x + "kołkom";
-      SF Pl Acc => x + "kołków";
-      SF Pl Instr => x + "kołkami";
-      SF Pl Loc => x + "kołkach";
-      SF Pl Voc => x + "Kołkowie"
-    };
-
-    oper mkNTable1246: Str -> SubstForm => Str; --%
-    oper mkNTable1246 lexem = 
-      let x = Predef.tk 2 lexem in
-    table { 
-      SF Sg Nom => x + "ót";
-      SF Sg Gen => x + "otu";
-      SF Sg Dat => x + "otowi";
-      SF Sg Acc => x + "ót";
-      SF Sg Instr => x + "otem";
-      SF Sg Loc => x + "ocie";
-      SF Sg Voc => x + "ocie";
-      SF Pl Nom => x + "oty";
-      SF Pl Gen => x + "otów";
-      SF Pl Dat => x + "otom";
-      SF Pl Acc => x + "oty";
-      SF Pl Instr => x + "otami";
-      SF Pl Loc => x + "otach";
-      SF Pl Voc => x + "oty"
-    };
-
-    oper mkNTable1248: Str -> SubstForm => Str; --%
-    oper mkNTable1248 lexem = 
-      let x = Predef.tk 2 lexem in
-    table { 
-      SF Sg Nom => x + "ół";
-      SF Sg Gen => x + "oła";
-      SF Sg Dat => x + "ołowi";
-      SF Sg Acc => x + "ół";
-      SF Sg Instr => x + "ołem";
-      SF Sg Loc => x + "ele";
-      SF Sg Voc => x + "ele";
-      SF Pl Nom => x + "oły";
-      SF Pl Gen => x + "ołów";
-      SF Pl Dat => x + "ołom";
-      SF Pl Acc => x + "oły";
-      SF Pl Instr => x + "ołami";
-      SF Pl Loc => x + "ołach";
-      SF Pl Voc => x + "oły"
-    };
-
-    oper mkNTable1249: Str -> SubstForm => Str; --%
-    oper mkNTable1249 lexem = 
-      let x = Predef.tk 1 lexem in
-    table { 
-      SF Sg Nom => x + "ć";
-      SF Sg Gen => x + "ci";
-      SF Sg Dat => x + "ci";
-      SF Sg Acc => x + "ć";
-      SF Sg Instr => x + "cią";
-      SF Sg Loc => x + "ci";
-      SF Sg Voc => x + "ci";
-      SF Pl Nom => x + "ci";
-      SF Pl Gen => x + "ci";
-      SF Pl Dat => x + "ciom";
-      SF Pl Acc => x + "ci";
-      SF Pl Instr => x + "ćmi";
-      SF Pl Loc => x + "ciach";
-      SF Pl Voc => x + "ci"
-    };
-
-    oper mkNTable1250: Str -> SubstForm => Str; --%
-    oper mkNTable1250 lexem = 
-      let x = Predef.tk 1 lexem in
-    table { 
-      SF Sg Nom => x + "ń";
-      SF Sg Gen => x + "nia";
-      SF Sg Dat => x + "niowi";
-      SF Sg Acc => x + "nia";
-      SF Sg Instr => x + "niem";
-      SF Sg Loc => x + "niu";
-      SF Sg Voc => x + "niu";
-      SF Pl Nom => x + "nie";
-      SF Pl Gen => x + "ni";
-      SF Pl Dat => x + "niom";
-      SF Pl Acc => x + "nie";
-      SF Pl Instr => x + "ńmi";
-      SF Pl Loc => x + "niach";
-      SF Pl Voc => x + "nie"
-    };
-
-    oper mkNTable1251: Str -> SubstForm => Str; --%
-    oper mkNTable1251 lexem = 
-      let x = Predef.tk 4 lexem in
-    table { 
-      SF Sg Nom => x + "kret";
-      SF Sg Gen => x + "kreta";
-      SF Sg Dat => x + "kretowi";
-      SF Sg Acc => x + "kreta";
-      SF Sg Instr => x + "kretem";
-      SF Sg Loc => x + "krecie";
-      SF Sg Voc => x + "krecie";
-      SF Pl Nom => x + "Kretowie";
-      SF Pl Gen => x + "kretów";
-      SF Pl Dat => x + "kretom";
-      SF Pl Acc => x + "kretów";
-      SF Pl Instr => x + "kretami";
-      SF Pl Loc => x + "kretach";
-      SF Pl Voc => x + "Kretowie"
-    };
-
-    oper mkNTable1252: Str -> SubstForm => Str; --%
-    oper mkNTable1252 lexem = 
-      let x = Predef.tk 3 lexem in
-    table { 
-      SF Sg Nom => x + "sno";
-      SF Sg Gen => x + "sna";
-      SF Sg Dat => x + "snu";
-      SF Sg Acc => x + "sno";
-      SF Sg Instr => x + "snem";
-      SF Sg Loc => x + "śnie";
-      SF Sg Voc => x + "sno";
-      SF Pl Nom => x + "sna";
-      SF Pl Gen => x + "sien";
-      SF Pl Dat => x + "snom";
-      SF Pl Acc => x + "sna";
-      SF Pl Instr => x + "snami";
-      SF Pl Loc => x + "snach";
-      SF Pl Voc => x + "sna"
-    };
-
-    oper mkNTable1253: Str -> SubstForm => Str; --%
-    oper mkNTable1253 lexem = 
-      let x = Predef.tk 2 lexem in
-    table { 
-      SF Sg Nom => x + "ec";
-      SF Sg Gen => x + "cu";
-      SF Sg Dat => x + "cowi";
-      SF Sg Acc => x + "ec";
-      SF Sg Instr => x + "cem";
-      SF Sg Loc => x + "cu";
-      SF Sg Voc => x + "cu";
-      SF Pl Nom => x + "ce";
-      SF Pl Gen => x + "ców";
-      SF Pl Dat => x + "com";
-      SF Pl Acc => x + "ce";
-      SF Pl Instr => x + "cami";
-      SF Pl Loc => x + "cach";
-      SF Pl Voc => x + "ce"
-    };
-
-    oper mkNTable1254: Str -> SubstForm => Str; --%
-    oper mkNTable1254 lexem = 
-      let x = Predef.tk 2 lexem in
-    table { 
-      SF Sg Nom => x + "eć";
-      SF Sg Gen => x + "cia";
-      SF Sg Dat => x + "ciowi";
-      SF Sg Acc => x + "eć";
-      SF Sg Instr => x + "ciem";
-      SF Sg Loc => x + "ciu";
-      SF Sg Voc => x + "ciu";
-      SF Pl Nom => x + "cie";
-      SF Pl Gen => x + "ciów";
-      SF Pl Dat => x + "ciom";
-      SF Pl Acc => x + "cie";
-      SF Pl Instr => x + "ciami";
-      SF Pl Loc => x + "ciach";
-      SF Pl Voc => x + "cie"
-    };
-
-    oper mkNTable1255: Str -> SubstForm => Str; --%
-    oper mkNTable1255 lexem = 
-      let x = Predef.tk 8 lexem in
-    table { 
-      SF Sg Nom => x + "krzykała";
-      SF Sg Gen => x + "krzykały";
-      SF Sg Dat => x + "krzykale";
-      SF Sg Acc => x + "krzykałę";
-      SF Sg Instr => x + "krzykałą";
-      SF Sg Loc => x + "krzykale";
-      SF Sg Voc => x + "krzykało";
-      SF Pl Nom => x + "Krzykałowie";
-      SF Pl Gen => x + "krzykałów";
-      SF Pl Dat => x + "krzykałom";
-      SF Pl Acc => x + "krzykałów";
-      SF Pl Instr => x + "krzykałami";
-      SF Pl Loc => x + "krzykałach";
-      SF Pl Voc => x + "Krzykałowie"
-    };
-
-    oper mkNTable1256: Str -> SubstForm => Str; --%
-    oper mkNTable1256 lexem = 
-      let x = Predef.tk 2 lexem in
-    table { 
-      SF Sg Nom => x + "ąg";
-      SF Sg Gen => x + "ęgu";
-      SF Sg Dat => x + "ęgowi";
-      SF Sg Acc => x + "ąg";
-      SF Sg Instr => x + "ęgiem";
-      SF Sg Loc => x + "ęgu";
-      SF Sg Voc => x + "ęgu";
-      SF Pl Nom => x + "ęgi";
-      SF Pl Gen => x + "ęgów";
-      SF Pl Dat => x + "ęgom";
-      SF Pl Acc => x + "ęgi";
-      SF Pl Instr => x + "ęgami";
-      SF Pl Loc => x + "ęgach";
-      SF Pl Voc => x + "ęgi"
-    };
-
-    oper mkNTable1257: Str -> SubstForm => Str; --%
-    oper mkNTable1257 lexem = 
-      let x = Predef.tk 3 lexem in
-    table { 
-      SF Sg Nom => x + "ądz";
-      SF Sg Gen => x + "ędza";
-      SF Sg Dat => x + "ędzu";
-      SF Sg Acc => x + "ędza";
-      SF Sg Instr => x + "ędzem";
-      SF Sg Loc => x + "ędzu";
-      SF Sg Voc => x + "ęże";
-      SF Pl Nom => x + "ęża";
-      SF Pl Gen => x + "ęży";
-      SF Pl Dat => x + "ężom";
-      SF Pl Acc => x + "ęży";
-      SF Pl Instr => x + "ężmi";
-      SF Pl Loc => x + "ężach";
-      SF Pl Voc => x + "ęża"
-    };
-
-    oper mkNTable1258: Str -> SubstForm => Str; --%
-    oper mkNTable1258 lexem = 
-      let x = Predef.tk 3 lexem in
-    table { 
-      SF Sg Nom => x + "ęga";
-      SF Sg Gen => x + "ęgi";
-      SF Sg Dat => x + "ędze";
-      SF Sg Acc => x + "ęgę";
-      SF Sg Instr => x + "ęgą";
-      SF Sg Loc => x + "ędze";
-      SF Sg Voc => x + "ęgo";
-      SF Pl Nom => x + "ęgi";
-      SF Pl Gen => x + "ąg";
-      SF Pl Dat => x + "ęgom";
-      SF Pl Acc => x + "ęgi";
-      SF Pl Instr => x + "ęgami";
-      SF Pl Loc => x + "ęgach";
-      SF Pl Voc => x + "ęgi"
-    };
-
-    oper mkNTable1259: Str -> SubstForm => Str; --%
-    oper mkNTable1259 lexem = 
-      let x = Predef.tk 2 lexem in
-    table { 
-      SF Sg Nom => x + "eł";
-      SF Sg Gen => x + "ła";
-      SF Sg Dat => x + "łowi";
-      SF Sg Acc => x + "eł";
-      SF Sg Instr => x + "łem";
-      SF Sg Loc => x + "le";
-      SF Sg Voc => x + "le";
-      SF Pl Nom => x + "ły";
-      SF Pl Gen => x + "łów";
-      SF Pl Dat => x + "łom";
-      SF Pl Acc => x + "ły";
-      SF Pl Instr => x + "łami";
-      SF Pl Loc => x + "łach";
-      SF Pl Voc => x + "ły"
-    };
-
-    oper mkNTable1260: Str -> SubstForm => Str; --%
-    oper mkNTable1260 lexem = 
-      let x = Predef.tk 5 lexem in
-    table { 
-      SF Sg Nom => x + "Kudła";
-      SF Sg Gen => x + "kudły";
-      SF Sg Dat => x + "Kudle";
-      SF Sg Acc => x + "Kudłę";
-      SF Sg Instr => x + "Kudłą";
-      SF Sg Loc => x + "Kudle";
-      SF Sg Voc => x + "Kudło";
-      SF Pl Nom => x + "kudły";
-      SF Pl Gen => x + "kudeł";
-      SF Pl Dat => x + "kudłom";
-      SF Pl Acc => x + "kudły";
-      SF Pl Instr => x + "kudłami";
-      SF Pl Loc => x + "kudłach";
-      SF Pl Voc => x + "kudły"
-    };
-
-    oper mkNTable1261: Str -> SubstForm => Str; --%
-    oper mkNTable1261 lexem = 
-      let x = Predef.tk 5 lexem in
-    table { 
-      SF Sg Nom => x + "Kudła";
-      SF Sg Gen => x + "kudły";
-      SF Sg Dat => x + "Kudle";
-      SF Sg Acc => x + "Kudłę";
-      SF Sg Instr => x + "Kudłą";
-      SF Sg Loc => x + "Kudle";
-      SF Sg Voc => x + "Kudło";
-      SF Pl Nom => x + "Kudłowie";
-      SF Pl Gen => x + "kudłów";
-      SF Pl Dat => x + "kudłom";
-      SF Pl Acc => x + "kudłów";
-      SF Pl Instr => x + "kudłami";
-      SF Pl Loc => x + "kudłach";
-      SF Pl Voc => x + "Kudłowie"
-    };
-
-    oper mkNTable1262: Str -> SubstForm => Str; --%
-    oper mkNTable1262 lexem = 
-      let x = Predef.tk 2 lexem in
-    table { 
-      SF Sg Nom => x + "st";
-      SF Sg Gen => x + "sta";
-      SF Sg Dat => x + "stowi";
-      SF Sg Acc => x + "sta";
-      SF Sg Instr => x + "stem";
-      SF Sg Loc => x + "ście";
-      SF Sg Voc => x + "ście";
-      SF Pl Nom => x + "ści";
-      SF Pl Gen => x + "stów";
-      SF Pl Dat => x + "stom";
-      SF Pl Acc => x + "stów";
-      SF Pl Instr => x + "stami";
-      SF Pl Loc => x + "stach";
-      SF Pl Voc => x + "ści"
-    };
-
-    oper mkNTable1263: Str -> SubstForm => Str; --%
-    oper mkNTable1263 lexem = 
-      let x = Predef.tk 4 lexem in
-    table { 
-      SF Sg Nom => x + "kusz";
-      SF Sg Gen => x + "Kuszu";
-      SF Sg Dat => x + "Kuszowi";
-      SF Sg Acc => x + "kusz";
-      SF Sg Instr => x + "Kuszem";
-      SF Sg Loc => x + "Kuszu";
-      SF Sg Voc => x + "Kuszu";
-      SF Pl Nom => x + "kusze";
-      SF Pl Gen => x + "kuszy";
-      SF Pl Dat => x + "kuszom";
-      SF Pl Acc => x + "kusze";
-      SF Pl Instr => x + "kuszami";
-      SF Pl Loc => x + "kuszach";
-      SF Pl Voc => x + "kusze"
-    };
-
-    oper mkNTable1264: Str -> SubstForm => Str; --%
-    oper mkNTable1264 lexem = 
-      let x = Predef.tk 4 lexem in
-    table { 
-      SF Sg Nom => x + "Kuta";
-      SF Sg Gen => x + "Kuty";
-      SF Sg Dat => x + "kucie";
-      SF Sg Acc => x + "Kutę";
-      SF Sg Instr => x + "Kutą";
-      SF Sg Loc => x + "kucie";
-      SF Sg Voc => x + "Kuto";
-      SF Pl Nom => x + "Kuty";
-      SF Pl Gen => x + "Kut";
-      SF Pl Dat => x + "Kutom";
-      SF Pl Acc => x + "Kuty";
-      SF Pl Instr => x + "Kutami";
-      SF Pl Loc => x + "Kutach";
-      SF Pl Voc => x + "Kuty"
-    };
-
-    oper mkNTable1266: Str -> SubstForm => Str; --%
-    oper mkNTable1266 lexem = 
-      let x = Predef.tk 6 lexem in
-    table { 
-      SF Sg Nom => x + "Kuźnik";
-      SF Sg Gen => x + "Kuźnika";
-      SF Sg Dat => x + "Kuźnikowi";
-      SF Sg Acc => x + "Kuźnika";
-      SF Sg Instr => x + "Kuźnikiem";
-      SF Sg Loc => x + "Kuźniku";
-      SF Sg Voc => x + "Kuźniku";
-      SF Pl Nom => x + "kuźnicy";
-      SF Pl Gen => x + "Kuźników";
-      SF Pl Dat => x + "Kuźnikom";
-      SF Pl Acc => x + "Kuźników";
-      SF Pl Instr => x + "Kuźnikami";
-      SF Pl Loc => x + "Kuźnikach";
-      SF Pl Voc => x + "kuźnicy"
-    };
-
-    oper mkNTable1267: Str -> SubstForm => Str; --%
-    oper mkNTable1267 lexem = 
-      let x = Predef.tk 0 lexem in
-    table { 
-      SF Sg Nom => x + "";
-      SF Sg Gen => x + "a";
-      SF Sg Dat => x + "owi";
-      SF Sg Acc => x + "";
-      SF Sg Instr => x + "em";
-      SF Sg Loc => x + "ie";
-      SF Sg Voc => x + "ie";
-      SF Pl Nom => x + "e";
-      SF Pl Gen => x + "ów";
-      SF Pl Dat => x + "om";
-      SF Pl Acc => x + "e";
-      SF Pl Instr => x + "ami";
-      SF Pl Loc => x + "ach";
-      SF Pl Voc => x + "e"
-    };
-
-    oper mkNTable1268: Str -> SubstForm => Str; --%
-    oper mkNTable1268 lexem = 
-      let x = Predef.tk 4 lexem in
-    table { 
-      SF Sg Nom => x + "cień";
-      SF Sg Gen => x + "tnia";
-      SF Sg Dat => x + "tniowi";
-      SF Sg Acc => x + "cień";
-      SF Sg Instr => x + "tniem";
-      SF Sg Loc => x + "tniu";
-      SF Sg Voc => x + "tniu";
-      SF Pl Nom => x + "tnie";
-      SF Pl Gen => x + "tniów";
-      SF Pl Dat => x + "tniom";
-      SF Pl Acc => x + "tnie";
-      SF Pl Instr => x + "tniami";
-      SF Pl Loc => x + "tniach";
-      SF Pl Voc => x + "tnie"
-    };
-
-    oper mkNTable1269: Str -> SubstForm => Str; --%
-    oper mkNTable1269 lexem = 
-      let x = Predef.tk 0 lexem in
-    table { 
-      SF Sg Nom => x + "";
-      SF Sg Gen => x + "u";
-      SF Sg Dat => x + "owi";
-      SF Sg Acc => x + "u";
-      SF Sg Instr => x + "em";
-      SF Sg Loc => x + "ie";
-      SF Sg Voc => x + "ie";
-      SF Pl Nom => x + "y";
-      SF Pl Gen => x + "ów";
-      SF Pl Dat => x + "om";
-      SF Pl Acc => x + "y";
-      SF Pl Instr => x + "ami";
-      SF Pl Loc => x + "ach";
-      SF Pl Voc => x + "y"
-    };
-
-    oper mkNTable1270: Str -> SubstForm => Str; --%
-    oper mkNTable1270 lexem = 
-      let x = Predef.tk 1 lexem in
-    table { 
-      SF Sg Nom => x + "o";
-      SF Sg Gen => x + "o";
-      SF Sg Dat => x + "u";
-      SF Sg Acc => x + "o";
-      SF Sg Instr => x + "o";
-      SF Sg Loc => x + "u";
-      SF Sg Voc => x + "o";
-      SF Pl Nom => x + "o";
-      SF Pl Gen => x + "o";
-      SF Pl Dat => x + "om";
-      SF Pl Acc => x + "o";
-      SF Pl Instr => x + "o";
-      SF Pl Loc => x + "o";
-      SF Pl Voc => x + "o"
-    };
-
-    oper mkNTable1271: Str -> SubstForm => Str; --%
-    oper mkNTable1271 lexem = 
-      let x = Predef.tk 2 lexem in
-    table { 
-      SF Sg Nom => x + "as";
-      SF Sg Gen => x + "asu";
-      SF Sg Dat => x + "asowi";
-      SF Sg Acc => x + "as";
-      SF Sg Instr => x + "asem";
-      SF Sg Loc => x + "esie";
-      SF Sg Voc => x + "esie";
-      SF Pl Nom => x + "asy";
-      SF Pl Gen => x + "asów";
-      SF Pl Dat => x + "asom";
-      SF Pl Acc => x + "asy";
-      SF Pl Instr => x + "asami";
-      SF Pl Loc => x + "asach";
-      SF Pl Voc => x + "asy"
-    };
-
-    oper mkNTable1272: Str -> SubstForm => Str; --%
-    oper mkNTable1272 lexem = 
-      let x = Predef.tk 2 lexem in
-    table { 
-      SF Sg Nom => x + "co";
-      SF Sg Gen => x + "co";
-      SF Sg Dat => x + "cu";
-      SF Sg Acc => x + "co";
-      SF Sg Instr => x + "kiem";
-      SF Sg Loc => x + "cu";
-      SF Sg Voc => x + "co";
-      SF Pl Nom => x + "co";
-      SF Pl Gen => x + "co";
-      SF Pl Dat => x + "com";
-      SF Pl Acc => x + "co";
-      SF Pl Instr => x + "co";
-      SF Pl Loc => x + "co";
-      SF Pl Voc => x + "co"
-    };
-
-    oper mkNTable1273: Str -> SubstForm => Str; --%
-    oper mkNTable1273 lexem = 
-      let x = Predef.tk 3 lexem in
-    table { 
-      SF Sg Nom => x + "iec";
-      SF Sg Gen => x + "ca";
-      SF Sg Dat => x + "cowi";
-      SF Sg Acc => x + "ca";
-      SF Sg Instr => x + "cem";
-      SF Sg Loc => x + "cu";
-      SF Sg Voc => x + "cze";
-      SF Pl Nom => x + "ce";
-      SF Pl Gen => x + "ców";
-      SF Pl Dat => x + "com";
-      SF Pl Acc => x + "ce";
-      SF Pl Instr => x + "cami";
-      SF Pl Loc => x + "cach";
-      SF Pl Voc => x + "ce"
-    };
-
-    oper mkNTable1274: Str -> SubstForm => Str; --%
-    oper mkNTable1274 lexem = 
-      let x = Predef.tk 3 lexem in
-    table { 
-      SF Sg Nom => x + "ato";
-      SF Sg Gen => x + "ata";
-      SF Sg Dat => x + "atu";
-      SF Sg Acc => x + "ato";
-      SF Sg Instr => x + "atem";
-      SF Sg Loc => x + "ecie";
-      SF Sg Voc => x + "ato";
-      SF Pl Nom => x + "ata";
-      SF Pl Gen => x + "at";
-      SF Pl Dat => x + "atom";
-      SF Pl Acc => x + "ata";
-      SF Pl Instr => x + "atami";
-      SF Pl Loc => x + "atach";
-      SF Pl Voc => x + "ata"
-    };
-
-    oper mkNTable1275: Str -> SubstForm => Str; --%
-    oper mkNTable1275 lexem = 
-      let x = Predef.tk 1 lexem in
-    table { 
-      SF Sg Nom => x + "j";
-      SF Sg Gen => x + "ja";
-      SF Sg Dat => x + "jowi";
-      SF Sg Acc => x + "ja";
-      SF Sg Instr => x + "jem";
-      SF Sg Loc => x + "ju";
-      SF Sg Voc => x + "ju";
-      SF Pl Nom => x + "je";
-      SF Pl Gen => x + "i";
-      SF Pl Dat => x + "jom";
-      SF Pl Acc => x + "je";
-      SF Pl Instr => x + "jami";
-      SF Pl Loc => x + "jach";
-      SF Pl Voc => x + "je"
-    };
-
-    oper mkNTable1276: Str -> SubstForm => Str; --%
-    oper mkNTable1276 lexem = 
-      let x = Predef.tk 6 lexem in
-    table { 
-      SF Sg Nom => x + "lepsze";
-      SF Sg Gen => x + "Lepszego";
-      SF Sg Dat => x + "Lepszemu";
-      SF Sg Acc => x + "lepsze";
-      SF Sg Instr => x + "Lepszym";
-      SF Sg Loc => x + "Lepszym";
-      SF Sg Voc => x + "lepsze";
-      SF Pl Nom => x + "lepsze";
-      SF Pl Gen => x + "Lepszych";
-      SF Pl Dat => x + "Lepszym";
-      SF Pl Acc => x + "lepsze";
-      SF Pl Instr => x + "Lepszymi";
-      SF Pl Loc => x + "Lepszych";
-      SF Pl Voc => x + "lepsze"
-    };
-
-    oper mkNTable1278: Str -> SubstForm => Str; --%
-    oper mkNTable1278 lexem = 
-      let x = Predef.tk 1 lexem in
-    table { 
-      SF Sg Nom => x + "e";
-      SF Sg Gen => x + "a";
-      SF Sg Dat => x + "u";
-      SF Sg Acc => x + "e";
-      SF Sg Instr => x + "em";
-      SF Sg Loc => x + "u";
-      SF Sg Voc => x + "e";
-      SF Pl Nom => x + "a";
-      SF Pl Gen => x + "ów";
-      SF Pl Dat => x + "om";
-      SF Pl Acc => x + "a";
-      SF Pl Instr => x + "ami";
-      SF Pl Loc => x + "ach";
-      SF Pl Voc => x + "a"
-    };
-
-    oper mkNTable1279: Str -> SubstForm => Str; --%
-    oper mkNTable1279 lexem = 
-      let x = Predef.tk 1 lexem in
-    table { 
-      SF Sg Nom => x + "ć";
-      SF Sg Gen => x + "cia";
-      SF Sg Dat => x + "ciowi";
-      SF Sg Acc => x + "ć";
-      SF Sg Instr => x + "ciem";
-      SF Sg Loc => x + "ciu";
-      SF Sg Voc => x + "ciu";
-      SF Pl Nom => x + "cie";
-      SF Pl Gen => x + "ci";
-      SF Pl Dat => x + "ciom";
-      SF Pl Acc => x + "cie";
-      SF Pl Instr => x + "ćmi";
-      SF Pl Loc => x + "ciach";
-      SF Pl Voc => x + "cie"
-    };
-
-    oper mkNTable1280: Str -> SubstForm => Str; --%
-    oper mkNTable1280 lexem = 
-      let x = Predef.tk 2 lexem in
-    table { 
-      SF Sg Nom => x + "um";
-      SF Sg Gen => x + "um";
-      SF Sg Dat => x + "um";
-      SF Sg Acc => x + "um";
-      SF Sg Instr => x + "um";
-      SF Sg Loc => x + "um";
-      SF Sg Voc => x + "um";
-      SF Pl Nom => x + "um";
-      SF Pl Gen => x + "ów";
-      SF Pl Dat => x + "um";
-      SF Pl Acc => x + "um";
-      SF Pl Instr => x + "um";
-      SF Pl Loc => x + "um";
-      SF Pl Voc => x + "um"
-    };
-
-    oper mkNTable1281: Str -> SubstForm => Str; --%
-    oper mkNTable1281 lexem = 
-      let x = Predef.tk 3 lexem in
-    table { 
-      SF Sg Nom => x + "oża";
-      SF Sg Gen => x + "oży";
-      SF Sg Dat => x + "oży";
-      SF Sg Acc => x + "ożę";
-      SF Sg Instr => x + "ożą";
-      SF Sg Loc => x + "oży";
-      SF Sg Voc => x + "ożo";
-      SF Pl Nom => x + "oże";
-      SF Pl Gen => x + "óż";
-      SF Pl Dat => x + "ożom";
-      SF Pl Acc => x + "oże";
-      SF Pl Instr => x + "ożami";
-      SF Pl Loc => x + "ożach";
-      SF Pl Voc => x + "oże"
-    };
-
-    oper mkNTable1283: Str -> SubstForm => Str; --%
-    oper mkNTable1283 lexem = 
-      let x = Predef.tk 1 lexem in
-    table { 
-      SF Sg Nom => x + "o";
-      SF Sg Gen => x + "a";
-      SF Sg Dat => x + "owi";
-      SF Sg Acc => x + "a";
-      SF Sg Instr => x + "em";
-      SF Sg Loc => x + "ie";
-      SF Sg Voc => x + "o";
-      SF Pl Nom => x + "i";
-      SF Pl Gen => x + "ów";
-      SF Pl Dat => x + "om";
-      SF Pl Acc => x + "ów";
-      SF Pl Instr => x + "ami";
-      SF Pl Loc => x + "ach";
-      SF Pl Voc => x + "i"
-    };
-
-    oper mkNTable1284: Str -> SubstForm => Str; --%
-    oper mkNTable1284 lexem = 
-      let x = Predef.tk 3 lexem in
-    table { 
-      SF Sg Nom => x + "śka";
-      SF Sg Gen => x + "śki";
-      SF Sg Dat => x + "śce";
-      SF Sg Acc => x + "śkę";
-      SF Sg Instr => x + "śką";
-      SF Sg Loc => x + "śce";
-      SF Sg Voc => x + "śku";
-      SF Pl Nom => x + "śki";
-      SF Pl Gen => x + "siek";
-      SF Pl Dat => x + "śkom";
-      SF Pl Acc => x + "śki";
-      SF Pl Instr => x + "śkami";
-      SF Pl Loc => x + "śkach";
-      SF Pl Voc => x + "śki"
-    };
-
-    oper mkNTable1285: Str -> SubstForm => Str; --%
-    oper mkNTable1285 lexem = 
-      let x = Predef.tk 3 lexem in
-    table { 
-      SF Sg Nom => x + "iel";
-      SF Sg Gen => x + "lu";
-      SF Sg Dat => x + "lowi";
-      SF Sg Acc => x + "iel";
-      SF Sg Instr => x + "lem";
-      SF Sg Loc => x + "lu";
-      SF Sg Voc => x + "lu";
-      SF Pl Nom => x + "le";
-      SF Pl Gen => x + "li";
-      SF Pl Dat => x + "lom";
-      SF Pl Acc => x + "le";
-      SF Pl Instr => x + "lami";
-      SF Pl Loc => x + "lach";
-      SF Pl Voc => x + "le"
-    };
-
-    oper mkNTable1287: Str -> SubstForm => Str; --%
-    oper mkNTable1287 lexem = 
-      let x = Predef.tk 3 lexem in
-    table { 
-      SF Sg Nom => x + "ech";
-      SF Sg Gen => x + "chu";
-      SF Sg Dat => x + "chowi";
-      SF Sg Acc => x + "ech";
-      SF Sg Instr => x + "chem";
-      SF Sg Loc => x + "chu";
-      SF Sg Voc => x + "chu";
-      SF Pl Nom => x + "chy";
-      SF Pl Gen => x + "chów";
-      SF Pl Dat => x + "chom";
-      SF Pl Acc => x + "chy";
-      SF Pl Instr => x + "chami";
-      SF Pl Loc => x + "chach";
-      SF Pl Voc => x + "chy"
-    };
-
-    oper mkNTable1288: Str -> SubstForm => Str; --%
-    oper mkNTable1288 lexem = 
-      let x = Predef.tk 1 lexem in
-    table { 
-      SF Sg Nom => x + "x";
-      SF Sg Gen => x + "ksa";
-      SF Sg Dat => x + "ksowi";
-      SF Sg Acc => x + "ksa";
-      SF Sg Instr => x + "ksem";
-      SF Sg Loc => x + "ksie";
-      SF Sg Voc => x + "ksie";
-      SF Pl Nom => x + "ksy";
-      SF Pl Gen => x + "ksów";
-      SF Pl Dat => x + "ksom";
-      SF Pl Acc => x + "ksy";
-      SF Pl Instr => x + "ksami";
-      SF Pl Loc => x + "ksach";
-      SF Pl Voc => x + "ksy"
-    };
-
-    oper mkNTable1289: Str -> SubstForm => Str; --%
-    oper mkNTable1289 lexem = 
-      let x = Predef.tk 2 lexem in
-    table { 
-      SF Sg Nom => x + "ka";
-      SF Sg Gen => x + "ki";
-      SF Sg Dat => x + "ce";
-      SF Sg Acc => x + "kę";
-      SF Sg Instr => x + "ką";
-      SF Sg Loc => x + "ce";
-      SF Sg Voc => x + "ko";
-      SF Pl Nom => x + "ki";
-      SF Pl Gen => x + "ków";
-      SF Pl Dat => x + "kom";
-      SF Pl Acc => x + "ki";
-      SF Pl Instr => x + "kami";
-      SF Pl Loc => x + "kach";
-      SF Pl Voc => x + "ki"
-    };
-
-    oper mkNTable1290: Str -> SubstForm => Str; --%
-    oper mkNTable1290 lexem = 
-      let x = Predef.tk 3 lexem in
-    table { 
-      SF Sg Nom => x + "ara";
-      SF Sg Gen => x + "ary";
-      SF Sg Dat => x + "erze";
-      SF Sg Acc => x + "arę";
-      SF Sg Instr => x + "arą";
-      SF Sg Loc => x + "erze";
-      SF Sg Voc => x + "aro";
-      SF Pl Nom => x + "ary";
-      SF Pl Gen => x + "ar";
-      SF Pl Dat => x + "arom";
-      SF Pl Acc => x + "ary";
-      SF Pl Instr => x + "arami";
-      SF Pl Loc => x + "arach";
-      SF Pl Voc => x + "ary"
-    };
-
-    oper mkNTable1291: Str -> SubstForm => Str; --%
-    oper mkNTable1291 lexem = 
-      let x = Predef.tk 2 lexem in
-    table { 
-      SF Sg Nom => x + "ąc";
-      SF Sg Gen => x + "ąca";
-      SF Sg Dat => x + "ącowi";
-      SF Sg Acc => x + "ąc";
-      SF Sg Instr => x + "ącem";
-      SF Sg Loc => x + "ącu";
-      SF Sg Voc => x + "ącu";
-      SF Pl Nom => x + "ące";
-      SF Pl Gen => x + "ęcy";
-      SF Pl Dat => x + "ącom";
-      SF Pl Acc => x + "ące";
-      SF Pl Instr => x + "ącami";
-      SF Pl Loc => x + "ącach";
-      SF Pl Voc => x + "ące"
-    };
-
-    oper mkNTable1292: Str -> SubstForm => Str; --%
-    oper mkNTable1292 lexem = 
-      let x = Predef.tk 2 lexem in
-    table { 
-      SF Sg Nom => x + "at";
-      SF Sg Gen => x + "atu";
-      SF Sg Dat => x + "atu";
-      SF Sg Acc => x + "at";
-      SF Sg Instr => x + "atem";
-      SF Sg Loc => x + "ecie";
-      SF Sg Voc => x + "ecie";
-      SF Pl Nom => x + "aty";
-      SF Pl Gen => x + "atów";
-      SF Pl Dat => x + "atom";
-      SF Pl Acc => x + "aty";
-      SF Pl Instr => x + "atami";
-      SF Pl Loc => x + "atach";
-      SF Pl Voc => x + "aty"
-    };
-
-    oper mkNTable1293: Str -> SubstForm => Str; --%
-    oper mkNTable1293 lexem = 
-      let x = Predef.tk 2 lexem in
-    table { 
-      SF Sg Nom => x + "st";
-      SF Sg Gen => x + "sta";
-      SF Sg Dat => x + "stowi";
-      SF Sg Acc => x + "sta";
-      SF Sg Instr => x + "stem";
-      SF Sg Loc => x + "ście";
-      SF Sg Voc => x + "ście";
-      SF Pl Nom => x + "sty";
-      SF Pl Gen => x + "stów";
-      SF Pl Dat => x + "stom";
-      SF Pl Acc => x + "sty";
-      SF Pl Instr => x + "stami";
-      SF Pl Loc => x + "stach";
-      SF Pl Voc => x + "sty"
-    };
-
-    oper mkNTable1294: Str -> SubstForm => Str; --%
-    oper mkNTable1294 lexem = 
-      let x = Predef.tk 4 lexem in
-    table { 
-      SF Sg Nom => x + "siek";
-      SF Sg Gen => x + "śka";
-      SF Sg Dat => x + "śkowi";
-      SF Sg Acc => x + "śka";
-      SF Sg Instr => x + "śkiem";
-      SF Sg Loc => x + "śku";
-      SF Sg Voc => x + "śku";
-      SF Pl Nom => x + "śki";
-      SF Pl Gen => x + "śków";
-      SF Pl Dat => x + "śkom";
-      SF Pl Acc => x + "śki";
-      SF Pl Instr => x + "śkami";
-      SF Pl Loc => x + "śkach";
-      SF Pl Voc => x + "śki"
-    };
-
-    oper mkNTable1295: Str -> SubstForm => Str; --%
-    oper mkNTable1295 lexem = 
-      let x = Predef.tk 4 lexem in
-    table { 
-      SF Sg Nom => x + "sień";
-      SF Sg Gen => x + "śnia";
-      SF Sg Dat => x + "śniowi";
-      SF Sg Acc => x + "sień";
-      SF Sg Instr => x + "śniem";
-      SF Sg Loc => x + "śniu";
-      SF Sg Voc => x + "śniu";
-      SF Pl Nom => x + "śnie";
-      SF Pl Gen => x + "śni";
-      SF Pl Dat => x + "śniom";
-      SF Pl Acc => x + "śnie";
-      SF Pl Instr => x + "śniami";
-      SF Pl Loc => x + "śniach";
-      SF Pl Voc => x + "śnie"
-    };
-
-    oper mkNTable1296: Str -> SubstForm => Str; --%
-    oper mkNTable1296 lexem = 
-      let x = Predef.tk 0 lexem in
-    table { 
-      SF Sg Nom => x + "";
-      SF Sg Gen => x + "ia";
-      SF Sg Dat => x + "iowi";
-      SF Sg Acc => x + "";
-      SF Sg Instr => x + "iem";
-      SF Sg Loc => x + "iu";
-      SF Sg Voc => x + "iu";
-      SF Pl Nom => x + "ie";
-      SF Pl Gen => x + "i";
-      SF Pl Dat => x + "iom";
-      SF Pl Acc => x + "ie";
-      SF Pl Instr => x + "iami";
-      SF Pl Loc => x + "iach";
-      SF Pl Voc => x + "ie"
-    };
-
-    oper mkNTable1297: Str -> SubstForm => Str; --%
-    oper mkNTable1297 lexem = 
-      let x = Predef.tk 4 lexem in
-    table { 
-      SF Sg Nom => x + "orga";
-      SF Sg Gen => x + "orgi";
-      SF Sg Dat => x + "ordze";
-      SF Sg Acc => x + "orgę";
-      SF Sg Instr => x + "orgą";
-      SF Sg Loc => x + "ordze";
-      SF Sg Voc => x + "orgo";
-      SF Pl Nom => x + "orgi";
-      SF Pl Gen => x + "órg";
-      SF Pl Dat => x + "orgom";
-      SF Pl Acc => x + "orgi";
-      SF Pl Instr => x + "orgami";
-      SF Pl Loc => x + "orgach";
-      SF Pl Voc => x + "orgi"
-    };
-
-    oper mkNTable1298: Str -> SubstForm => Str; --%
-    oper mkNTable1298 lexem = 
-      let x = Predef.tk 4 lexem in
-    table { 
-      SF Sg Nom => x + "orze";
-      SF Sg Gen => x + "orza";
-      SF Sg Dat => x + "orzu";
-      SF Sg Acc => x + "orze";
-      SF Sg Instr => x + "orzem";
-      SF Sg Loc => x + "orzu";
-      SF Sg Voc => x + "orze";
-      SF Pl Nom => x + "orza";
-      SF Pl Gen => x + "órz";
-      SF Pl Dat => x + "orzom";
-      SF Pl Acc => x + "orza";
-      SF Pl Instr => x + "orzami";
-      SF Pl Loc => x + "orzach";
-      SF Pl Voc => x + "orza"
-    };
-
-    oper mkNTable1299: Str -> SubstForm => Str; --%
-    oper mkNTable1299 lexem = 
-      let x = Predef.tk 3 lexem in
-    table { 
-      SF Sg Nom => x + "łła";
-      SF Sg Gen => x + "łły";
-      SF Sg Dat => x + "lle";
-      SF Sg Acc => x + "łłę";
-      SF Sg Instr => x + "łłą";
-      SF Sg Loc => x + "lle";
-      SF Sg Voc => x + "łło";
-      SF Pl Nom => x + "łłowie";
-      SF Pl Gen => x + "łłów";
-      SF Pl Dat => x + "łłom";
-      SF Pl Acc => x + "łłów";
-      SF Pl Instr => x + "łłami";
-      SF Pl Loc => x + "łłach";
-      SF Pl Voc => x + "łłowie"
-    };
-
-    oper mkNTable1301: Str -> SubstForm => Str; --%
-    oper mkNTable1301 lexem = 
-      let x = Predef.tk 4 lexem in
-    table { 
-      SF Sg Nom => x + "mruk";
-      SF Sg Gen => x + "mruka";
-      SF Sg Dat => x + "mrukowi";
-      SF Sg Acc => x + "mruka";
-      SF Sg Instr => x + "mrukiem";
-      SF Sg Loc => x + "mruku";
-      SF Sg Voc => x + "mruku";
-      SF Pl Nom => x + "Mrukowie";
-      SF Pl Gen => x + "mruków";
-      SF Pl Dat => x + "mrukom";
-      SF Pl Acc => x + "mruków";
-      SF Pl Instr => x + "mrukami";
-      SF Pl Loc => x + "mrukach";
-      SF Pl Voc => x + "Mrukowie"
-    };
-
-    oper mkNTable1303: Str -> SubstForm => Str; --%
-    oper mkNTable1303 lexem = 
-      let x = Predef.tk 0 lexem in
-    table { 
-      SF Sg Nom => x + "";
-      SF Sg Gen => x + "y";
-      SF Sg Dat => x + "y";
-      SF Sg Acc => x + "";
-      SF Sg Instr => x + "ą";
-      SF Sg Loc => x + "y";
-      SF Sg Voc => x + "y";
-      SF Pl Nom => x + "y";
-      SF Pl Gen => x + "y";
-      SF Pl Dat => x + "om";
-      SF Pl Acc => x + "y";
-      SF Pl Instr => x + "ami";
-      SF Pl Loc => x + "ach";
-      SF Pl Voc => x + "y"
-    };
-
-    oper mkNTable1304: Str -> SubstForm => Str; --%
-    oper mkNTable1304 lexem = 
-      let x = Predef.tk 0 lexem in
-    table { 
-      SF Sg Nom => x + "";
-      SF Sg Gen => x + "i";
-      SF Sg Dat => x + "i";
-      SF Sg Acc => x + "";
-      SF Sg Instr => x + "ą";
-      SF Sg Loc => x + "i";
-      SF Sg Voc => x + "i";
-      SF Pl Nom => x + "i";
-      SF Pl Gen => x + "i";
-      SF Pl Dat => x + "om";
-      SF Pl Acc => x + "i";
-      SF Pl Instr => x + "ami";
-      SF Pl Loc => x + "ach";
-      SF Pl Voc => x + "i"
-    };
-
-    oper mkNTable1305: Str -> SubstForm => Str; --%
-    oper mkNTable1305 lexem = 
-      let x = Predef.tk 2 lexem in
-    table { 
-      SF Sg Nom => x + "ąż";
-      SF Sg Gen => x + "ęża";
-      SF Sg Dat => x + "ężowi";
-      SF Sg Acc => x + "ęża";
-      SF Sg Instr => x + "ężem";
-      SF Sg Loc => x + "ężu";
-      SF Sg Voc => x + "ężu";
-      SF Pl Nom => x + "ężowie";
-      SF Pl Gen => x + "ężów";
-      SF Pl Dat => x + "ężom";
-      SF Pl Acc => x + "ężów";
-      SF Pl Instr => x + "ężami";
-      SF Pl Loc => x + "ężach";
-      SF Pl Voc => x + "ężowie"
-    };
-
-    oper mkNTable1306: Str -> SubstForm => Str; --%
-    oper mkNTable1306 lexem = 
-      let x = Predef.tk 6 lexem in
-    table { 
-      SF Sg Nom => x + "młocek";
-      SF Sg Gen => x + "młocka";
-      SF Sg Dat => x + "młockowi";
-      SF Sg Acc => x + "młocka";
-      SF Sg Instr => x + "młockiem";
-      SF Sg Loc => x + "młocku";
-      SF Sg Voc => x + "młocku";
-      SF Pl Nom => x + "Młockowie";
-      SF Pl Gen => x + "młocków";
-      SF Pl Dat => x + "młockom";
-      SF Pl Acc => x + "młocków";
-      SF Pl Instr => x + "młockami";
-      SF Pl Loc => x + "młockach";
-      SF Pl Voc => x + "Młockowie"
-    };
-
-    oper mkNTable1308: Str -> SubstForm => Str; --%
-    oper mkNTable1308 lexem = 
-      let x = Predef.tk 6 lexem in
-    table { 
-      SF Sg Nom => x + "młotek";
-      SF Sg Gen => x + "młotka";
-      SF Sg Dat => x + "młotkowi";
-      SF Sg Acc => x + "młotka";
-      SF Sg Instr => x + "młotkiem";
-      SF Sg Loc => x + "młotku";
-      SF Sg Voc => x + "młotku";
-      SF Pl Nom => x + "Młotkowie";
-      SF Pl Gen => x + "młotków";
-      SF Pl Dat => x + "młotkom";
-      SF Pl Acc => x + "młotków";
-      SF Pl Instr => x + "młotkami";
-      SF Pl Loc => x + "młotkach";
-      SF Pl Voc => x + "Młotkowie"
-    };
-
-    oper mkNTable1310: Str -> SubstForm => Str; --%
-    oper mkNTable1310 lexem = 
-      let x = Predef.tk 3 lexem in
-    table { 
-      SF Sg Nom => x + "zna";
-      SF Sg Gen => x + "zny";
-      SF Sg Dat => x + "źnie";
-      SF Sg Acc => x + "znę";
-      SF Sg Instr => x + "zną";
-      SF Sg Loc => x + "źnie";
-      SF Sg Voc => x + "zno";
-      SF Pl Nom => x + "źni";
-      SF Pl Gen => x + "zn";
-      SF Pl Dat => x + "znom";
-      SF Pl Acc => x + "zn";
-      SF Pl Instr => x + "znami";
-      SF Pl Loc => x + "znach";
-      SF Pl Voc => x + "źni"
-    };
-
-    oper mkNTable1311: Str -> SubstForm => Str; --%
-    oper mkNTable1311 lexem = 
-      let x = Predef.tk 2 lexem in
-    table { 
-      SF Sg Nom => x + "ól";
-      SF Sg Gen => x + "ola";
-      SF Sg Dat => x + "olowi";
-      SF Sg Acc => x + "ola";
-      SF Sg Instr => x + "olem";
-      SF Sg Loc => x + "olu";
-      SF Sg Voc => x + "olu";
-      SF Pl Nom => x + "ole";
-      SF Pl Gen => x + "oli";
-      SF Pl Dat => x + "olom";
-      SF Pl Acc => x + "ole";
-      SF Pl Instr => x + "olami";
-      SF Pl Loc => x + "olach";
-      SF Pl Voc => x + "ole"
-    };
-
-    oper mkNTable1312: Str -> SubstForm => Str; --%
-    oper mkNTable1312 lexem = 
-      let x = Predef.tk 3 lexem in
-    table { 
-      SF Sg Nom => x + "órg";
-      SF Sg Gen => x + "orga";
-      SF Sg Dat => x + "orgowi";
-      SF Sg Acc => x + "órg";
-      SF Sg Instr => x + "orgiem";
-      SF Sg Loc => x + "orgu";
-      SF Sg Voc => x + "orgu";
-      SF Pl Nom => x + "orgi";
-      SF Pl Gen => x + "orgów";
-      SF Pl Dat => x + "orgom";
-      SF Pl Acc => x + "orgi";
-      SF Pl Instr => x + "orgami";
-      SF Pl Loc => x + "orgach";
-      SF Pl Voc => x + "orgi"
-    };
-
-    oper mkNTable1313: Str -> SubstForm => Str; --%
-    oper mkNTable1313 lexem = 
-      let x = Predef.tk 3 lexem in
-    table { 
-      SF Sg Nom => x + "ńko";
-      SF Sg Gen => x + "ńka";
-      SF Sg Dat => x + "ńku";
-      SF Sg Acc => x + "ńko";
-      SF Sg Instr => x + "ńkiem";
-      SF Sg Loc => x + "ńku";
-      SF Sg Voc => x + "ńko";
-      SF Pl Nom => x + "ńka";
-      SF Pl Gen => x + "niek";
-      SF Pl Dat => x + "ńkom";
-      SF Pl Acc => x + "ńka";
-      SF Pl Instr => x + "ńkami";
-      SF Pl Loc => x + "ńkach";
-      SF Pl Voc => x + "ńka"
-    };
-
-    oper mkNTable1314: Str -> SubstForm => Str; --%
-    oper mkNTable1314 lexem = 
-      let x = Predef.tk 2 lexem in
-    table { 
-      SF Sg Nom => x + "em";
-      SF Sg Gen => x + "mu";
-      SF Sg Dat => x + "mowi";
-      SF Sg Acc => x + "em";
-      SF Sg Instr => x + "mem";
-      SF Sg Loc => x + "mie";
-      SF Sg Voc => x + "mie";
-      SF Pl Nom => x + "my";
-      SF Pl Gen => x + "mów";
-      SF Pl Dat => x + "mom";
-      SF Pl Acc => x + "my";
-      SF Pl Instr => x + "mami";
-      SF Pl Loc => x + "mach";
-      SF Pl Voc => x + "my"
-    };
-
-    oper mkNTable1315: Str -> SubstForm => Str; --%
-    oper mkNTable1315 lexem = 
-      let x = Predef.tk 4 lexem in
-    table { 
-      SF Sg Nom => x + "enie";
-      SF Sg Gen => x + "enia";
-      SF Sg Dat => x + "eniu";
-      SF Sg Acc => x + "enie";
-      SF Sg Instr => x + "eniem";
-      SF Sg Loc => x + "eniu";
-      SF Sg Voc => x + "enie";
-      SF Pl Nom => x + "ona";
-      SF Pl Gen => x + "on";
-      SF Pl Dat => x + "onom";
-      SF Pl Acc => x + "ona";
-      SF Pl Instr => x + "onami";
-      SF Pl Loc => x + "onach";
-      SF Pl Voc => x + "ona"
-    };
-
-    oper mkNTable1316: Str -> SubstForm => Str; --%
-    oper mkNTable1316 lexem = 
-      let x = Predef.tk 2 lexem in
-    table { 
-      SF Sg Nom => x + "ca";
-      SF Sg Gen => x + "ki";
-      SF Sg Dat => x + "ce";
-      SF Sg Acc => x + "cę";
-      SF Sg Instr => x + "cą";
-      SF Sg Loc => x + "ce";
-      SF Sg Voc => x + "co";
-      SF Pl Nom => x + "ki";
-      SF Pl Gen => x + "ec";
-      SF Pl Dat => x + "com";
-      SF Pl Acc => x + "ki";
-      SF Pl Instr => x + "cami";
-      SF Pl Loc => x + "cach";
-      SF Pl Voc => x + "ki"
-    };
-
-    oper mkNTable1317: Str -> SubstForm => Str; --%
-    oper mkNTable1317 lexem = 
-      let x = Predef.tk 2 lexem in
-    table { 
-      SF Sg Nom => x + "el";
-      SF Sg Gen => x + "ela";
-      SF Sg Dat => x + "elowi";
-      SF Sg Acc => x + "ela";
-      SF Sg Instr => x + "elem";
-      SF Sg Loc => x + "elu";
-      SF Sg Voc => x + "elu";
-      SF Pl Nom => x + "ele";
-      SF Pl Gen => x + "ół";
-      SF Pl Dat => x + "ołom";
-      SF Pl Acc => x + "ół";
-      SF Pl Instr => x + "ółmi";
-      SF Pl Loc => x + "ołach";
-      SF Pl Voc => x + "ele"
-    };
-
-    oper mkNTable1318: Str -> SubstForm => Str; --%
-    oper mkNTable1318 lexem = 
-      let x = Predef.tk 4 lexem in
-    table { 
-      SF Sg Nom => x + "asta";
-      SF Sg Gen => x + "asty";
-      SF Sg Dat => x + "eście";
-      SF Sg Acc => x + "astę";
-      SF Sg Instr => x + "astą";
-      SF Sg Loc => x + "eście";
-      SF Sg Voc => x + "asto";
-      SF Pl Nom => x + "asty";
-      SF Pl Gen => x + "ast";
-      SF Pl Dat => x + "astom";
-      SF Pl Acc => x + "asty";
-      SF Pl Instr => x + "astami";
-      SF Pl Loc => x + "astach";
-      SF Pl Voc => x + "asty"
-    };
-
-    oper mkNTable1321: Str -> SubstForm => Str; --%
-    oper mkNTable1321 lexem = 
-      let x = Predef.tk 1 lexem in
-    table { 
-      SF Sg Nom => x + "ś";
-      SF Sg Gen => x + "si";
-      SF Sg Dat => x + "si";
-      SF Sg Acc => x + "ś";
-      SF Sg Instr => x + "sią";
-      SF Sg Loc => x + "si";
-      SF Sg Voc => x + "si";
-      SF Pl Nom => x + "si";
-      SF Pl Gen => x + "si";
-      SF Pl Dat => x + "siom";
-      SF Pl Acc => x + "si";
-      SF Pl Instr => x + "siami";
-      SF Pl Loc => x + "siach";
-      SF Pl Voc => x + "si"
-    };
-
-    oper mkNTable1322: Str -> SubstForm => Str; --%
-    oper mkNTable1322 lexem = 
-      let x = Predef.tk 2 lexem in
-    table { 
-      SF Sg Nom => x + "ów";
-      SF Sg Gen => x + "owiu";
-      SF Sg Dat => x + "owiowi";
-      SF Sg Acc => x + "ów";
-      SF Sg Instr => x + "owiem";
-      SF Sg Loc => x + "owiu";
-      SF Sg Voc => x + "owiu";
-      SF Pl Nom => x + "owie";
-      SF Pl Gen => x + "owiów";
-      SF Pl Dat => x + "owiom";
-      SF Pl Acc => x + "owie";
-      SF Pl Instr => x + "owiami";
-      SF Pl Loc => x + "owiach";
-      SF Pl Voc => x + "owie"
-    };
-
-    oper mkNTable1323: Str -> SubstForm => Str; --%
-    oper mkNTable1323 lexem = 
-      let x = Predef.tk 2 lexem in
-    table { 
-      SF Sg Nom => x + "óż";
-      SF Sg Gen => x + "oża";
-      SF Sg Dat => x + "ożowi";
-      SF Sg Acc => x + "óż";
-      SF Sg Instr => x + "ożem";
-      SF Sg Loc => x + "ożu";
-      SF Sg Voc => x + "ożu";
-      SF Pl Nom => x + "oże";
-      SF Pl Gen => x + "oży";
-      SF Pl Dat => x + "ożom";
-      SF Pl Acc => x + "oże";
-      SF Pl Instr => x + "ożami";
-      SF Pl Loc => x + "ożach";
-      SF Pl Voc => x + "oże"
-    };
-
-    oper mkNTable1324: Str -> SubstForm => Str; --%
-    oper mkNTable1324 lexem = 
-      let x = Predef.tk 2 lexem in
-    table { 
-      SF Sg Nom => x + "ad";
-      SF Sg Gen => x + "adu";
-      SF Sg Dat => x + "adowi";
-      SF Sg Acc => x + "ad";
-      SF Sg Instr => x + "adem";
-      SF Sg Loc => x + "edzie";
-      SF Sg Voc => x + "edzie";
-      SF Pl Nom => x + "ady";
-      SF Pl Gen => x + "adów";
-      SF Pl Dat => x + "adom";
-      SF Pl Acc => x + "ady";
-      SF Pl Instr => x + "adami";
-      SF Pl Loc => x + "adach";
-      SF Pl Voc => x + "ady"
-    };
-
-    oper mkNTable1328: Str -> SubstForm => Str; --%
-    oper mkNTable1328 lexem = 
-      let x = Predef.tk 2 lexem in
-    table { 
-      SF Sg Nom => x + "et";
-      SF Sg Gen => x + "tu";
-      SF Sg Dat => x + "towi";
-      SF Sg Acc => x + "et";
-      SF Sg Instr => x + "tem";
-      SF Sg Loc => x + "cie";
-      SF Sg Voc => x + "cie";
-      SF Pl Nom => x + "ty";
-      SF Pl Gen => x + "tów";
-      SF Pl Dat => x + "tom";
-      SF Pl Acc => x + "ty";
-      SF Pl Instr => x + "tami";
-      SF Pl Loc => x + "tach";
-      SF Pl Voc => x + "ty"
-    };
-
-    oper mkNTable1329: Str -> SubstForm => Str; --%
-    oper mkNTable1329 lexem = 
-      let x = Predef.tk 3 lexem in
-    table { 
-      SF Sg Nom => x + "atr";
-      SF Sg Gen => x + "atru";
-      SF Sg Dat => x + "atrowi";
-      SF Sg Acc => x + "atr";
-      SF Sg Instr => x + "atrem";
-      SF Sg Loc => x + "etrze";
-      SF Sg Voc => x + "etrze";
-      SF Pl Nom => x + "atry";
-      SF Pl Gen => x + "atrów";
-      SF Pl Dat => x + "atrom";
-      SF Pl Acc => x + "atry";
-      SF Pl Instr => x + "atrami";
-      SF Pl Loc => x + "atrach";
-      SF Pl Voc => x + "atry"
-    };
-
-    oper mkNTable1330: Str -> SubstForm => Str; --%
-    oper mkNTable1330 lexem = 
-      let x = Predef.tk 4 lexem in
-    table { 
-      SF Sg Nom => x + "niek";
-      SF Sg Gen => x + "ńka";
-      SF Sg Dat => x + "ńkowi";
-      SF Sg Acc => x + "niek";
-      SF Sg Instr => x + "ńkiem";
-      SF Sg Loc => x + "ńku";
-      SF Sg Voc => x + "ńku";
-      SF Pl Nom => x + "ńki";
-      SF Pl Gen => x + "ńków";
-      SF Pl Dat => x + "ńkom";
-      SF Pl Acc => x + "ńki";
-      SF Pl Instr => x + "ńkami";
-      SF Pl Loc => x + "ńkach";
-      SF Pl Voc => x + "ńki"
-    };
-
-    oper mkNTable1331: Str -> SubstForm => Str; --%
-    oper mkNTable1331 lexem = 
-      let x = Predef.tk 3 lexem in
-    table { 
-      SF Sg Nom => x + "iec";
-      SF Sg Gen => x + "a";
-      SF Sg Dat => x + "u";
-      SF Sg Acc => x + "a";
-      SF Sg Instr => x + "em";
-      SF Sg Loc => x + "u";
-      SF Sg Voc => x + "ze";
-      SF Pl Nom => x + "owie";
-      SF Pl Gen => x + "ów";
-      SF Pl Dat => x + "om";
-      SF Pl Acc => x + "ów";
-      SF Pl Instr => x + "ami";
-      SF Pl Loc => x + "ach";
-      SF Pl Voc => x + "owie"
-    };
-
-    oper mkNTable1332: Str -> SubstForm => Str; --%
-    oper mkNTable1332 lexem = 
-      let x = Predef.tk 3 lexem in
-    table { 
-      SF Sg Nom => x + "oko";
-      SF Sg Gen => x + "oka";
-      SF Sg Dat => x + "oku";
-      SF Sg Acc => x + "oko";
-      SF Sg Instr => x + "okiem";
-      SF Sg Loc => x + "oku";
-      SF Sg Voc => x + "oko";
-      SF Pl Nom => x + "oczy";
-      SF Pl Gen => x + "ócz";
-      SF Pl Dat => x + "oczom";
-      SF Pl Acc => x + "oczy";
-      SF Pl Instr => x + "oczyma";
-      SF Pl Loc => x + "oczach";
-      SF Pl Voc => x + "oczy"
-    };
-
-    oper mkNTable1333: Str -> SubstForm => Str; --%
-    oper mkNTable1333 lexem = 
-      let x = Predef.tk 4 lexem in
-    table { 
-      SF Sg Nom => x + "niek";
-      SF Sg Gen => x + "ńka";
-      SF Sg Dat => x + "ńkowi";
-      SF Sg Acc => x + "ńka";
-      SF Sg Instr => x + "ńkiem";
-      SF Sg Loc => x + "ńku";
-      SF Sg Voc => x + "ńku";
-      SF Pl Nom => x + "ńki";
-      SF Pl Gen => x + "ńków";
-      SF Pl Dat => x + "ńkom";
-      SF Pl Acc => x + "ńki";
-      SF Pl Instr => x + "ńkami";
-      SF Pl Loc => x + "ńkach";
-      SF Pl Voc => x + "ńki"
-    };
-
-    oper mkNTable1334: Str -> SubstForm => Str; --%
-    oper mkNTable1334 lexem = 
-      let x = Predef.tk 1 lexem in
-    table { 
-      SF Sg Nom => x + "o";
-      SF Sg Gen => x + "a";
-      SF Sg Dat => x + "u";
-      SF Sg Acc => x + "o";
-      SF Sg Instr => x + "em";
-      SF Sg Loc => x + "ze";
-      SF Sg Voc => x + "o";
-      SF Pl Nom => x + "a";
-      SF Pl Gen => x + "ów";
-      SF Pl Dat => x + "om";
-      SF Pl Acc => x + "a";
-      SF Pl Instr => x + "ami";
-      SF Pl Loc => x + "ach";
-      SF Pl Voc => x + "a"
-    };
-
-    oper mkNTable1336: Str -> SubstForm => Str; --%
-    oper mkNTable1336 lexem = 
-      let x = Predef.tk 2 lexem in
-    table { 
-      SF Sg Nom => x + "ół";
-      SF Sg Gen => x + "oła";
-      SF Sg Dat => x + "ołowi";
-      SF Sg Acc => x + "ół";
-      SF Sg Instr => x + "ołem";
-      SF Sg Loc => x + "ole";
-      SF Sg Voc => x + "ole";
-      SF Pl Nom => x + "oły";
-      SF Pl Gen => x + "ołów";
-      SF Pl Dat => x + "ołom";
-      SF Pl Acc => x + "oły";
-      SF Pl Instr => x + "ołami";
-      SF Pl Loc => x + "ołach";
-      SF Pl Voc => x + "oły"
-    };
-
-    oper mkNTable1337: Str -> SubstForm => Str; --%
-    oper mkNTable1337 lexem = 
-      let x = Predef.tk 5 lexem in
-    table { 
-      SF Sg Nom => x + "orzeł";
-      SF Sg Gen => x + "orła";
-      SF Sg Dat => x + "orłu";
-      SF Sg Acc => x + "orła";
-      SF Sg Instr => x + "orłem";
-      SF Sg Loc => x + "orle";
-      SF Sg Voc => x + "orle";
-      SF Pl Nom => x + "Orłowie";
-      SF Pl Gen => x + "orłów";
-      SF Pl Dat => x + "orłom";
-      SF Pl Acc => x + "orłów";
-      SF Pl Instr => x + "orłami";
-      SF Pl Loc => x + "orłach";
-      SF Pl Voc => x + "Orłowie"
-    };
-
-    oper mkNTable1338: Str -> SubstForm => Str; --%
-    oper mkNTable1338 lexem = 
-      let x = Predef.tk 3 lexem in
-    table { 
-      SF Sg Nom => x + "zeł";
-      SF Sg Gen => x + "ła";
-      SF Sg Dat => x + "łu";
-      SF Sg Acc => x + "ła";
-      SF Sg Instr => x + "łem";
-      SF Sg Loc => x + "le";
-      SF Sg Voc => x + "le";
-      SF Pl Nom => x + "ły";
-      SF Pl Gen => x + "łów";
-      SF Pl Dat => x + "łom";
-      SF Pl Acc => x + "ły";
-      SF Pl Instr => x + "łami";
-      SF Pl Loc => x + "łach";
-      SF Pl Voc => x + "ły"
-    };
-
-    oper mkNTable1339: Str -> SubstForm => Str; --%
-    oper mkNTable1339 lexem = 
-      let x = Predef.tk 2 lexem in
-    table { 
-      SF Sg Nom => x + "ep";
-      SF Sg Gen => x + "pu";
-      SF Sg Dat => x + "powi";
-      SF Sg Acc => x + "ep";
-      SF Sg Instr => x + "pem";
-      SF Sg Loc => x + "pie";
-      SF Sg Voc => x + "pie";
-      SF Pl Nom => x + "py";
-      SF Pl Gen => x + "pów";
-      SF Pl Dat => x + "pom";
-      SF Pl Acc => x + "py";
-      SF Pl Instr => x + "pami";
-      SF Pl Loc => x + "pach";
-      SF Pl Voc => x + "py"
-    };
-
-    oper mkNTable1340: Str -> SubstForm => Str; --%
-    oper mkNTable1340 lexem = 
-      let x = Predef.tk 3 lexem in
-    table { 
-      SF Sg Nom => x + "set";
-      SF Sg Gen => x + "stu";
-      SF Sg Dat => x + "stowi";
-      SF Sg Acc => x + "set";
-      SF Sg Instr => x + "stem";
-      SF Sg Loc => x + "ście";
-      SF Sg Voc => x + "ście";
-      SF Pl Nom => x + "sty";
-      SF Pl Gen => x + "stów";
-      SF Pl Dat => x + "stom";
-      SF Pl Acc => x + "sty";
-      SF Pl Instr => x + "stami";
-      SF Pl Loc => x + "stach";
-      SF Pl Voc => x + "sty"
-    };
-
-    oper mkNTable1341: Str -> SubstForm => Str; --%
-    oper mkNTable1341 lexem = 
-      let x = Predef.tk 4 lexem in
-    table { 
-      SF Sg Nom => x + "siec";
-      SF Sg Gen => x + "śca";
-      SF Sg Dat => x + "ścowi";
-      SF Sg Acc => x + "śca";
-      SF Sg Instr => x + "ścem";
-      SF Sg Loc => x + "ścu";
-      SF Sg Voc => x + "ścu";
-      SF Pl Nom => x + "śce";
-      SF Pl Gen => x + "śców";
-      SF Pl Dat => x + "ścom";
-      SF Pl Acc => x + "śce";
-      SF Pl Instr => x + "ścami";
-      SF Pl Loc => x + "ścach";
-      SF Pl Voc => x + "śce"
-    };
-
-    oper mkNTable1342: Str -> SubstForm => Str; --%
-    oper mkNTable1342 lexem = 
-      let x = Predef.tk 4 lexem in
-    table { 
-      SF Sg Nom => x + "sioł";
-      SF Sg Gen => x + "sła";
-      SF Sg Dat => x + "słu";
-      SF Sg Acc => x + "sła";
-      SF Sg Instr => x + "słem";
-      SF Sg Loc => x + "śle";
-      SF Sg Voc => x + "śle";
-      SF Pl Nom => x + "sły";
-      SF Pl Gen => x + "słów";
-      SF Pl Dat => x + "słom";
-      SF Pl Acc => x + "sły";
-      SF Pl Instr => x + "słami";
-      SF Pl Loc => x + "słach";
-      SF Pl Voc => x + "sły"
-    };
-
-    oper mkNTable1343: Str -> SubstForm => Str; --%
-    oper mkNTable1343 lexem = 
-      let x = Predef.tk 3 lexem in
-    table { 
-      SF Sg Nom => x + "oła";
-      SF Sg Gen => x + "oły";
-      SF Sg Dat => x + "ole";
-      SF Sg Acc => x + "ołę";
-      SF Sg Instr => x + "ołą";
-      SF Sg Loc => x + "ole";
-      SF Sg Voc => x + "oło";
-      SF Pl Nom => x + "oły";
-      SF Pl Gen => x + "ół";
-      SF Pl Dat => x + "ołom";
-      SF Pl Acc => x + "oły";
-      SF Pl Instr => x + "ołami";
-      SF Pl Loc => x + "ołach";
-      SF Pl Voc => x + "oły"
-    };
-
-    oper mkNTable1344: Str -> SubstForm => Str; --%
-    oper mkNTable1344 lexem = 
-      let x = Predef.tk 2 lexem in
-    table { 
-      SF Sg Nom => x + "eń";
-      SF Sg Gen => x + "nia";
-      SF Sg Dat => x + "niowi";
-      SF Sg Acc => x + "eń";
-      SF Sg Instr => x + "niem";
-      SF Sg Loc => x + "niu";
-      SF Sg Voc => x + "niu";
-      SF Pl Nom => x + "nie";
-      SF Pl Gen => x + "ni";
-      SF Pl Dat => x + "niom";
-      SF Pl Acc => x + "nie";
-      SF Pl Instr => x + "niami";
-      SF Pl Loc => x + "niach";
-      SF Pl Voc => x + "nie"
-    };
-
-    oper mkNTable1345: Str -> SubstForm => Str; --%
-    oper mkNTable1345 lexem = 
-      let x = Predef.tk 2 lexem in
-    table { 
-      SF Sg Nom => x + "ca";
-      SF Sg Gen => x + "cy";
-      SF Sg Dat => x + "cy";
-      SF Sg Acc => x + "cę";
-      SF Sg Instr => x + "cą";
-      SF Sg Loc => x + "cy";
-      SF Sg Voc => x + "co";
-      SF Pl Nom => x + "ce";
-      SF Pl Gen => x + "iec";
-      SF Pl Dat => x + "com";
-      SF Pl Acc => x + "ce";
-      SF Pl Instr => x + "cami";
-      SF Pl Loc => x + "cach";
-      SF Pl Voc => x + "ce"
-    };
-
-    oper mkNTable1346: Str -> SubstForm => Str; --%
-    oper mkNTable1346 lexem = 
-      let x = Predef.tk 3 lexem in
-    table { 
-      SF Sg Nom => x + "ies";
-      SF Sg Gen => x + "sa";
-      SF Sg Dat => x + "sowi";
-      SF Sg Acc => x + "ies";
-      SF Sg Instr => x + "sem";
-      SF Sg Loc => x + "sie";
-      SF Sg Voc => x + "sie";
-      SF Pl Nom => x + "sy";
-      SF Pl Gen => x + "sów";
-      SF Pl Dat => x + "som";
-      SF Pl Acc => x + "sy";
-      SF Pl Instr => x + "sami";
-      SF Pl Loc => x + "sach";
-      SF Pl Voc => x + "sy"
-    };
-
-    oper mkNTable1348: Str -> SubstForm => Str; --%
-    oper mkNTable1348 lexem = 
-      let x = Predef.tk 2 lexem in
-    table { 
-      SF Sg Nom => x + "ór";
-      SF Sg Gen => x + "ora";
-      SF Sg Dat => x + "orowi";
-      SF Sg Acc => x + "ór";
-      SF Sg Instr => x + "orem";
-      SF Sg Loc => x + "orze";
-      SF Sg Voc => x + "orze";
-      SF Pl Nom => x + "ory";
-      SF Pl Gen => x + "orów";
-      SF Pl Dat => x + "orom";
-      SF Pl Acc => x + "ory";
-      SF Pl Instr => x + "orami";
-      SF Pl Loc => x + "orach";
-      SF Pl Voc => x + "ory"
-    };
-
-    oper mkNTable1349: Str -> SubstForm => Str; --%
-    oper mkNTable1349 lexem = 
-      let x = Predef.tk 1 lexem in
-    table { 
-      SF Sg Nom => x + "ś";
-      SF Sg Gen => x + "si";
-      SF Sg Dat => x + "si";
-      SF Sg Acc => x + "ś";
-      SF Sg Instr => x + "sią";
-      SF Sg Loc => x + "si";
-      SF Sg Voc => x + "si";
-      SF Pl Nom => x + "sie";
-      SF Pl Gen => x + "si";
-      SF Pl Dat => x + "siom";
-      SF Pl Acc => x + "sie";
-      SF Pl Instr => x + "siami";
-      SF Pl Loc => x + "siach";
-      SF Pl Voc => x + "sie"
-    };
-
-    oper mkNTable1350: Str -> SubstForm => Str; --%
-    oper mkNTable1350 lexem = 
-      let x = Predef.tk 6 lexem in
-    table { 
-      SF Sg Nom => x + "Pakuła";
-      SF Sg Gen => x + "pakuły";
-      SF Sg Dat => x + "Pakule";
-      SF Sg Acc => x + "Pakułę";
-      SF Sg Instr => x + "Pakułą";
-      SF Sg Loc => x + "Pakule";
-      SF Sg Voc => x + "Pakuło";
-      SF Pl Nom => x + "pakuły";
-      SF Pl Gen => x + "pakuł";
-      SF Pl Dat => x + "pakułom";
-      SF Pl Acc => x + "pakuły";
-      SF Pl Instr => x + "pakułami";
-      SF Pl Loc => x + "pakułach";
-      SF Pl Voc => x + "pakuły"
-    };
-
-    oper mkNTable1351: Str -> SubstForm => Str; --%
-    oper mkNTable1351 lexem = 
-      let x = Predef.tk 4 lexem in
-    table { 
-      SF Sg Nom => x + "pala";
-      SF Sg Gen => x + "pali";
-      SF Sg Dat => x + "pali";
-      SF Sg Acc => x + "Palę";
-      SF Sg Instr => x + "Palą";
-      SF Sg Loc => x + "pali";
-      SF Sg Voc => x + "Palo";
-      SF Pl Nom => x + "pale";
-      SF Pl Gen => x + "pali";
-      SF Pl Dat => x + "palom";
-      SF Pl Acc => x + "pale";
-      SF Pl Instr => x + "palami";
-      SF Pl Loc => x + "palach";
-      SF Pl Voc => x + "pale"
-    };
-
-    oper mkNTable1352: Str -> SubstForm => Str; --%
-    oper mkNTable1352 lexem = 
-      let x = Predef.tk 1 lexem in
-    table { 
-      SF Sg Nom => x + "o";
-      SF Sg Gen => x + "o";
-      SF Sg Dat => x + "owi";
-      SF Sg Acc => x + "o";
-      SF Sg Instr => x + "o";
-      SF Sg Loc => x + "ze";
-      SF Sg Voc => x + "o";
-      SF Pl Nom => x + "o";
-      SF Pl Gen => x + "ów";
-      SF Pl Dat => x + "om";
-      SF Pl Acc => x + "o";
-      SF Pl Instr => x + "o";
-      SF Pl Loc => x + "o";
-      SF Pl Voc => x + "o"
-    };
-
-    oper mkNTable1353: Str -> SubstForm => Str; --%
-    oper mkNTable1353 lexem = 
-      let x = Predef.tk 1 lexem in
-    table { 
-      SF Sg Nom => x + "c";
-      SF Sg Gen => x + "ca";
-      SF Sg Dat => x + "cowi";
-      SF Sg Acc => x + "c";
-      SF Sg Instr => x + "kiem";
-      SF Sg Loc => x + "cu";
-      SF Sg Voc => x + "cu";
-      SF Pl Nom => x + "ki";
-      SF Pl Gen => x + "ców";
-      SF Pl Dat => x + "com";
-      SF Pl Acc => x + "ki";
-      SF Pl Instr => x + "cami";
-      SF Pl Loc => x + "cach";
-      SF Pl Voc => x + "ki"
-    };
-
-    oper mkNTable1355: Str -> SubstForm => Str; --%
-    oper mkNTable1355 lexem = 
-      let x = Predef.tk 1 lexem in
-    table { 
-      SF Sg Nom => x + "a";
-      SF Sg Gen => x + "i";
-      SF Sg Dat => x + "i";
-      SF Sg Acc => x + "ę";
-      SF Sg Instr => x + "ą";
-      SF Sg Loc => x + "i";
-      SF Sg Voc => x + "o";
-      SF Pl Nom => x + "e";
-      SF Pl Gen => x + "i";
-      SF Pl Dat => x + "om";
-      SF Pl Acc => x + "i";
-      SF Pl Instr => x + "ami";
-      SF Pl Loc => x + "ach";
-      SF Pl Voc => x + "e"
-    };
-
-    oper mkNTable1356: Str -> SubstForm => Str; --%
-    oper mkNTable1356 lexem = 
-      let x = Predef.tk 1 lexem in
-    table { 
-      SF Sg Nom => x + "ć";
-      SF Sg Gen => x + "cia";
-      SF Sg Dat => x + "ciowi";
-      SF Sg Acc => x + "cia";
-      SF Sg Instr => x + "ciem";
-      SF Sg Loc => x + "ciu";
-      SF Sg Voc => x + "ciu";
-      SF Pl Nom => x + "cie";
-      SF Pl Gen => x + "ci";
-      SF Pl Dat => x + "ciom";
-      SF Pl Acc => x + "cie";
-      SF Pl Instr => x + "ciami";
-      SF Pl Loc => x + "ciach";
-      SF Pl Voc => x + "cie"
-    };
-
-    oper mkNTable1357: Str -> SubstForm => Str; --%
-    oper mkNTable1357 lexem = 
-      let x = Predef.tk 1 lexem in
-    table { 
-      SF Sg Nom => x + "ć";
-      SF Sg Gen => x + "cia";
-      SF Sg Dat => x + "ciowi";
-      SF Sg Acc => x + "ć";
-      SF Sg Instr => x + "ciem";
-      SF Sg Loc => x + "ciu";
-      SF Sg Voc => x + "ciu";
-      SF Pl Nom => x + "cie";
-      SF Pl Gen => x + "ci";
-      SF Pl Dat => x + "ciom";
-      SF Pl Acc => x + "cie";
-      SF Pl Instr => x + "ciami";
-      SF Pl Loc => x + "ciach";
-      SF Pl Voc => x + "cie"
-    };
-
-    oper mkNTable1358: Str -> SubstForm => Str; --%
-    oper mkNTable1358 lexem = 
-      let x = Predef.tk 5 lexem in
-    table { 
-      SF Sg Nom => x + "parch";
-      SF Sg Gen => x + "parcha";
-      SF Sg Dat => x + "parchowi";
-      SF Sg Acc => x + "parcha";
-      SF Sg Instr => x + "parchem";
-      SF Sg Loc => x + "parchu";
-      SF Sg Voc => x + "parchu";
-      SF Pl Nom => x + "Parchowie";
-      SF Pl Gen => x + "parchów";
-      SF Pl Dat => x + "parchom";
-      SF Pl Acc => x + "parchów";
-      SF Pl Instr => x + "parchami";
-      SF Pl Loc => x + "parchach";
-      SF Pl Voc => x + "Parchowie"
-    };
-
-    oper mkNTable1359: Str -> SubstForm => Str; --%
-    oper mkNTable1359 lexem = 
-      let x = Predef.tk 2 lexem in
-    table { 
-      SF Sg Nom => x + "ąz";
-      SF Sg Gen => x + "ęzu";
-      SF Sg Dat => x + "ęzowi";
-      SF Sg Acc => x + "ąz";
-      SF Sg Instr => x + "ęzem";
-      SF Sg Loc => x + "ęzie";
-      SF Sg Voc => x + "ęzie";
-      SF Pl Nom => x + "ęzy";
-      SF Pl Gen => x + "ęzów";
-      SF Pl Dat => x + "ęzom";
-      SF Pl Acc => x + "ęzy";
-      SF Pl Instr => x + "ęzami";
-      SF Pl Loc => x + "ęzach";
-      SF Pl Voc => x + "ęzy"
-    };
-
-    oper mkNTable1360: Str -> SubstForm => Str; --%
-    oper mkNTable1360 lexem = 
-      let x = Predef.tk 3 lexem in
-    table { 
-      SF Sg Nom => x + "ieć";
-      SF Sg Gen => x + "cia";
-      SF Sg Dat => x + "ciowi";
-      SF Sg Acc => x + "cia";
-      SF Sg Instr => x + "ciem";
-      SF Sg Loc => x + "ciu";
-      SF Sg Voc => x + "ciu";
-      SF Pl Nom => x + "cie";
-      SF Pl Gen => x + "ci";
-      SF Pl Dat => x + "ciom";
-      SF Pl Acc => x + "cie";
-      SF Pl Instr => x + "ciami";
-      SF Pl Loc => x + "ciach";
-      SF Pl Voc => x + "cie"
-    };
-
-    oper mkNTable1361: Str -> SubstForm => Str; --%
-    oper mkNTable1361 lexem = 
-      let x = Predef.tk 3 lexem in
-    table { 
-      SF Sg Nom => x + "ieć";
-      SF Sg Gen => x + "cia";
-      SF Sg Dat => x + "ciowi";
-      SF Sg Acc => x + "ieć";
-      SF Sg Instr => x + "ciem";
-      SF Sg Loc => x + "ciu";
-      SF Sg Voc => x + "ciu";
-      SF Pl Nom => x + "cie";
-      SF Pl Gen => x + "ci";
-      SF Pl Dat => x + "ciom";
-      SF Pl Acc => x + "cie";
-      SF Pl Instr => x + "ciami";
-      SF Pl Loc => x + "ciach";
-      SF Pl Voc => x + "cie"
-    };
-
-    oper mkNTable1362: Str -> SubstForm => Str; --%
-    oper mkNTable1362 lexem = 
-      let x = Predef.tk 9 lexem in
-    table { 
-      SF Sg Nom => x + "Paździora";
-      SF Sg Gen => x + "paździory";
-      SF Sg Dat => x + "paździorze";
-      SF Sg Acc => x + "Paździorę";
-      SF Sg Instr => x + "Paździorą";
-      SF Sg Loc => x + "paździorze";
-      SF Sg Voc => x + "Paździoro";
-      SF Pl Nom => x + "paździory";
-      SF Pl Gen => x + "paździor";
-      SF Pl Dat => x + "paździorom";
-      SF Pl Acc => x + "paździory";
-      SF Pl Instr => x + "paździorami";
-      SF Pl Loc => x + "paździorach";
-      SF Pl Voc => x + "paździory"
-    };
-
-    oper mkNTable1363: Str -> SubstForm => Str; --%
-    oper mkNTable1363 lexem = 
-      let x = Predef.tk 3 lexem in
-    table { 
-      SF Sg Nom => x + "ćka";
-      SF Sg Gen => x + "ćki";
-      SF Sg Dat => x + "ćce";
-      SF Sg Acc => x + "ćkę";
-      SF Sg Instr => x + "ćką";
-      SF Sg Loc => x + "ćce";
-      SF Sg Voc => x + "ćko";
-      SF Pl Nom => x + "ćki";
-      SF Pl Gen => x + "ciek";
-      SF Pl Dat => x + "ćkom";
-      SF Pl Acc => x + "ćki";
-      SF Pl Instr => x + "ćkami";
-      SF Pl Loc => x + "ćkach";
-      SF Pl Voc => x + "ćki"
-    };
-
-    oper mkNTable1364: Str -> SubstForm => Str; --%
-    oper mkNTable1364 lexem = 
-      let x = Predef.tk 10 lexem in
-    table { 
-      SF Sg Nom => x + "piekarczyk";
-      SF Sg Gen => x + "piekarczyka";
-      SF Sg Dat => x + "piekarczykowi";
-      SF Sg Acc => x + "piekarczyka";
-      SF Sg Instr => x + "piekarczykiem";
-      SF Sg Loc => x + "piekarczyku";
-      SF Sg Voc => x + "piekarczyku";
-      SF Pl Nom => x + "Piekarczykowie";
-      SF Pl Gen => x + "piekarczyków";
-      SF Pl Dat => x + "piekarczykom";
-      SF Pl Acc => x + "piekarczyków";
-      SF Pl Instr => x + "piekarczykami";
-      SF Pl Loc => x + "piekarczykach";
-      SF Pl Voc => x + "Piekarczykowie"
-    };
-
-    oper mkNTable1366: Str -> SubstForm => Str; --%
-    oper mkNTable1366 lexem = 
-      let x = Predef.tk 3 lexem in
-    table { 
-      SF Sg Nom => x + "ądz";
-      SF Sg Gen => x + "ądza";
-      SF Sg Dat => x + "ądzowi";
-      SF Sg Acc => x + "ądz";
-      SF Sg Instr => x + "ądzem";
-      SF Sg Loc => x + "ądzu";
-      SF Sg Voc => x + "ądzu";
-      SF Pl Nom => x + "ądze";
-      SF Pl Gen => x + "ędzy";
-      SF Pl Dat => x + "ądzom";
-      SF Pl Acc => x + "ądze";
-      SF Pl Instr => x + "ędzmi";
-      SF Pl Loc => x + "ądzach";
-      SF Pl Voc => x + "ądze"
-    };
-
-    oper mkNTable1367: Str -> SubstForm => Str; --%
-    oper mkNTable1367 lexem = 
-      let x = Predef.tk 10 lexem in
-    table { 
-      SF Sg Nom => x + "pieniężnik";
-      SF Sg Gen => x + "pieniężnika";
-      SF Sg Dat => x + "pieniężnikowi";
-      SF Sg Acc => x + "pieniężnika";
-      SF Sg Instr => x + "pieniężnikiem";
-      SF Sg Loc => x + "pieniężniku";
-      SF Sg Voc => x + "pieniężniku";
-      SF Pl Nom => x + "Pieniężnicy";
-      SF Pl Gen => x + "pieniężników";
-      SF Pl Dat => x + "pieniężnikom";
-      SF Pl Acc => x + "pieniężników";
-      SF Pl Instr => x + "pieniężnikami";
-      SF Pl Loc => x + "pieniężnikach";
-      SF Pl Voc => x + "Pieniężnicy"
-    };
-
-    oper mkNTable1369: Str -> SubstForm => Str; --%
-    oper mkNTable1369 lexem = 
-      let x = Predef.tk 5 lexem in
-    table { 
-      SF Sg Nom => x + "Pierz";
-      SF Sg Gen => x + "pierza";
-      SF Sg Dat => x + "Pierzowi";
-      SF Sg Acc => x + "Pierz";
-      SF Sg Instr => x + "pierzem";
-      SF Sg Loc => x + "pierzu";
-      SF Sg Voc => x + "pierzu";
-      SF Pl Nom => x + "pierze";
-      SF Pl Gen => x + "pierzy";
-      SF Pl Dat => x + "pierzom";
-      SF Pl Acc => x + "pierze";
-      SF Pl Instr => x + "pierzami";
-      SF Pl Loc => x + "pierzach";
-      SF Pl Voc => x + "pierze"
-    };
-
-    oper mkNTable1370: Str -> SubstForm => Str; --%
-    oper mkNTable1370 lexem = 
-      let x = Predef.tk 3 lexem in
-    table { 
-      SF Sg Nom => x + "ies";
-      SF Sg Gen => x + "sa";
-      SF Sg Dat => x + "su";
-      SF Sg Acc => x + "sa";
-      SF Sg Instr => x + "sem";
-      SF Sg Loc => x + "sie";
-      SF Sg Voc => x + "sie";
-      SF Pl Nom => x + "sy";
-      SF Pl Gen => x + "sów";
-      SF Pl Dat => x + "som";
-      SF Pl Acc => x + "sy";
-      SF Pl Instr => x + "sami";
-      SF Pl Loc => x + "sach";
-      SF Pl Voc => x + "sy"
-    };
-
-    oper mkNTable1371: Str -> SubstForm => Str; --%
-    oper mkNTable1371 lexem = 
-      let x = Predef.tk 1 lexem in
-    table { 
-      SF Sg Nom => x + "ń";
-      SF Sg Gen => x + "ni";
-      SF Sg Dat => x + "ni";
-      SF Sg Acc => x + "ń";
-      SF Sg Instr => x + "nią";
-      SF Sg Loc => x + "ni";
-      SF Sg Voc => x + "ni";
-      SF Pl Nom => x + "ni";
-      SF Pl Gen => x + "ni";
-      SF Pl Dat => x + "niom";
-      SF Pl Acc => x + "ni";
-      SF Pl Instr => x + "niami";
-      SF Pl Loc => x + "niach";
-      SF Pl Voc => x + "ni"
-    };
-
-    oper mkNTable1372: Str -> SubstForm => Str; --%
-    oper mkNTable1372 lexem = 
-      let x = Predef.tk 2 lexem in
-    table { 
-      SF Sg Nom => x + "wa";
-      SF Sg Gen => x + "wy";
-      SF Sg Dat => x + "wie";
-      SF Sg Acc => x + "wę";
-      SF Sg Instr => x + "wą";
-      SF Sg Loc => x + "wie";
-      SF Sg Voc => x + "wo";
-      SF Pl Nom => x + "wy";
-      SF Pl Gen => x + "iew";
-      SF Pl Dat => x + "wom";
-      SF Pl Acc => x + "wy";
-      SF Pl Instr => x + "wami";
-      SF Pl Loc => x + "wach";
-      SF Pl Voc => x + "wy"
-    };
-
-    oper mkNTable1373: Str -> SubstForm => Str; --%
-    oper mkNTable1373 lexem = 
-      let x = Predef.tk 2 lexem in
-    table { 
-      SF Sg Nom => x + "ój";
-      SF Sg Gen => x + "oja";
-      SF Sg Dat => x + "ojowi";
-      SF Sg Acc => x + "oja";
-      SF Sg Instr => x + "ojem";
-      SF Sg Loc => x + "oju";
-      SF Sg Voc => x + "oju";
-      SF Pl Nom => x + "oje";
-      SF Pl Gen => x + "oi";
-      SF Pl Dat => x + "ojom";
-      SF Pl Acc => x + "oje";
-      SF Pl Instr => x + "ojami";
-      SF Pl Loc => x + "ojach";
-      SF Pl Voc => x + "oje"
-    };
-
-    oper mkNTable1374: Str -> SubstForm => Str; --%
-    oper mkNTable1374 lexem = 
-      let x = Predef.tk 2 lexem in
-    table { 
-      SF Sg Nom => x + "ół";
-      SF Sg Gen => x + "ołu";
-      SF Sg Dat => x + "ołowi";
-      SF Sg Acc => x + "ół";
-      SF Sg Instr => x + "ołem";
-      SF Sg Loc => x + "ele";
-      SF Sg Voc => x + "ele";
-      SF Pl Nom => x + "oły";
-      SF Pl Gen => x + "ołów";
-      SF Pl Dat => x + "ołom";
-      SF Pl Acc => x + "oły";
-      SF Pl Instr => x + "ołami";
-      SF Pl Loc => x + "ołach";
-      SF Pl Voc => x + "oły"
-    };
-
-    oper mkNTable1375: Str -> SubstForm => Str; --%
-    oper mkNTable1375 lexem = 
-      let x = Predef.tk 6 lexem in
-    table { 
-      SF Sg Nom => x + "porter";
-      SF Sg Gen => x + "Portera";
-      SF Sg Dat => x + "porterowi";
-      SF Sg Acc => x + "Portera";
-      SF Sg Instr => x + "porterem";
-      SF Sg Loc => x + "porterze";
-      SF Sg Voc => x + "porterze";
-      SF Pl Nom => x + "portery";
-      SF Pl Gen => x + "porterów";
-      SF Pl Dat => x + "porterom";
-      SF Pl Acc => x + "portery";
-      SF Pl Instr => x + "porterami";
-      SF Pl Loc => x + "porterach";
-      SF Pl Voc => x + "portery"
-    };
-
-    oper mkNTable1376: Str -> SubstForm => Str; --%
-    oper mkNTable1376 lexem = 
-      let x = Predef.tk 3 lexem in
-    table { 
-      SF Sg Nom => x + "seł";
-      SF Sg Gen => x + "sła";
-      SF Sg Dat => x + "słowi";
-      SF Sg Acc => x + "sła";
-      SF Sg Instr => x + "słem";
-      SF Sg Loc => x + "śle";
-      SF Sg Voc => x + "śle";
-      SF Pl Nom => x + "słowie";
-      SF Pl Gen => x + "słów";
-      SF Pl Dat => x + "słom";
-      SF Pl Acc => x + "słów";
-      SF Pl Instr => x + "słami";
-      SF Pl Loc => x + "słach";
-      SF Pl Voc => x + "słowie"
-    };
-
-    oper mkNTable1377: Str -> SubstForm => Str; --%
-    oper mkNTable1377 lexem = 
-      let x = Predef.tk 2 lexem in
-    table { 
-      SF Sg Nom => x + "ód";
-      SF Sg Gen => x + "oda";
-      SF Sg Dat => x + "odowi";
-      SF Sg Acc => x + "oda";
-      SF Sg Instr => x + "odem";
-      SF Sg Loc => x + "odzie";
-      SF Sg Voc => x + "odzie";
-      SF Pl Nom => x + "odowie";
-      SF Pl Gen => x + "odów";
-      SF Pl Dat => x + "odom";
-      SF Pl Acc => x + "odów";
-      SF Pl Instr => x + "odami";
-      SF Pl Loc => x + "odach";
-      SF Pl Voc => x + "odowie"
-    };
-
-    oper mkNTable1378: Str -> SubstForm => Str; --%
-    oper mkNTable1378 lexem = 
-      let x = Predef.tk 2 lexem in
-    table { 
-      SF Sg Nom => x + "ew";
-      SF Sg Gen => x + "wu";
-      SF Sg Dat => x + "wowi";
-      SF Sg Acc => x + "ew";
-      SF Sg Instr => x + "wem";
-      SF Sg Loc => x + "wie";
-      SF Sg Voc => x + "wie";
-      SF Pl Nom => x + "wy";
-      SF Pl Gen => x + "wów";
-      SF Pl Dat => x + "wom";
-      SF Pl Acc => x + "wy";
-      SF Pl Instr => x + "wami";
-      SF Pl Loc => x + "wach";
-      SF Pl Voc => x + "wy"
-    };
-
-    oper mkNTable1380: Str -> SubstForm => Str; --%
-    oper mkNTable1380 lexem = 
-      let x = Predef.tk 0 lexem in
-    table { 
-      SF Sg Nom => x + "";
-      SF Sg Gen => x + "a";
-      SF Sg Dat => x + "owi";
-      SF Sg Acc => x + "a";
-      SF Sg Instr => x + "em";
-      SF Sg Loc => x + "ie";
-      SF Sg Voc => x + "ie";
-      SF Pl Nom => x + "e";
-      SF Pl Gen => x + "ów";
-      SF Pl Dat => x + "om";
-      SF Pl Acc => x + "e";
-      SF Pl Instr => x + "ami";
-      SF Pl Loc => x + "ach";
-      SF Pl Voc => x + "e"
-    };
-
-    oper mkNTable1381: Str -> SubstForm => Str; --%
-    oper mkNTable1381 lexem = 
-      let x = Predef.tk 4 lexem in
-    table { 
-      SF Sg Nom => x + "ośba";
-      SF Sg Gen => x + "ośby";
-      SF Sg Dat => x + "ośbie";
-      SF Sg Acc => x + "ośbę";
-      SF Sg Instr => x + "ośbą";
-      SF Sg Loc => x + "ośbie";
-      SF Sg Voc => x + "ośbo";
-      SF Pl Nom => x + "ośby";
-      SF Pl Gen => x + "óśb";
-      SF Pl Dat => x + "ośbom";
-      SF Pl Acc => x + "ośby";
-      SF Pl Instr => x + "ośbami";
-      SF Pl Loc => x + "ośbach";
-      SF Pl Voc => x + "ośby"
-    };
-
-    oper mkNTable1382: Str -> SubstForm => Str; --%
-    oper mkNTable1382 lexem = 
-      let x = Predef.tk 4 lexem in
-    table { 
-      SF Sg Nom => x + "pryk";
-      SF Sg Gen => x + "pryka";
-      SF Sg Dat => x + "prykowi";
-      SF Sg Acc => x + "pryka";
-      SF Sg Instr => x + "prykiem";
-      SF Sg Loc => x + "pryku";
-      SF Sg Voc => x + "pryku";
-      SF Pl Nom => x + "Prykowie";
-      SF Pl Gen => x + "pryków";
-      SF Pl Dat => x + "prykom";
-      SF Pl Acc => x + "pryków";
-      SF Pl Instr => x + "prykami";
-      SF Pl Loc => x + "prykach";
-      SF Pl Voc => x + "Prykowie"
-    };
-
-    oper mkNTable1383: Str -> SubstForm => Str; --%
-    oper mkNTable1383 lexem = 
-      let x = Predef.tk 4 lexem in
-    table { 
-      SF Sg Nom => x + "zień";
-      SF Sg Gen => x + "nia";
-      SF Sg Dat => x + "niowi";
-      SF Sg Acc => x + "nia";
-      SF Sg Instr => x + "niem";
-      SF Sg Loc => x + "niu";
-      SF Sg Voc => x + "niu";
-      SF Pl Nom => x + "nie";
-      SF Pl Gen => x + "niów";
-      SF Pl Dat => x + "niom";
-      SF Pl Acc => x + "niów";
-      SF Pl Instr => x + "niami";
-      SF Pl Loc => x + "niach";
-      SF Pl Voc => x + "nie"
-    };
-
-    oper mkNTable1384: Str -> SubstForm => Str; --%
-    oper mkNTable1384 lexem = 
-      let x = Predef.tk 3 lexem in
-    table { 
-      SF Sg Nom => x + "ień";
-      SF Sg Gen => x + "nia";
-      SF Sg Dat => x + "niowi";
-      SF Sg Acc => x + "nia";
-      SF Sg Instr => x + "niem";
-      SF Sg Loc => x + "niu";
-      SF Sg Voc => x + "niu";
-      SF Pl Nom => x + "nie";
-      SF Pl Gen => x + "niów";
-      SF Pl Dat => x + "niom";
-      SF Pl Acc => x + "niów";
-      SF Pl Instr => x + "niami";
-      SF Pl Loc => x + "niach";
-      SF Pl Voc => x + "nie"
-    };
-
-    oper mkNTable1385: Str -> SubstForm => Str; --%
-    oper mkNTable1385 lexem = 
-      let x = Predef.tk 3 lexem in
-    table { 
-      SF Sg Nom => x + "ień";
-      SF Sg Gen => x + "nia";
-      SF Sg Dat => x + "niowi";
-      SF Sg Acc => x + "nia";
-      SF Sg Instr => x + "niem";
-      SF Sg Loc => x + "niu";
-      SF Sg Voc => x + "niu";
-      SF Pl Nom => x + "nie";
-      SF Pl Gen => x + "ni";
-      SF Pl Dat => x + "niom";
-      SF Pl Acc => x + "nie";
-      SF Pl Instr => x + "niami";
-      SF Pl Loc => x + "niach";
-      SF Pl Voc => x + "nie"
-    };
-
-    oper mkNTable1386: Str -> SubstForm => Str; --%
-    oper mkNTable1386 lexem = 
-      let x = Predef.tk 1 lexem in
-    table { 
-      SF Sg Nom => x + "a";
-      SF Sg Gen => x + "y";
-      SF Sg Dat => x + "zie";
-      SF Sg Acc => x + "ę";
-      SF Sg Instr => x + "ą";
-      SF Sg Loc => x + "zie";
-      SF Sg Voc => x + "o";
-      SF Pl Nom => x + "y";
-      SF Pl Gen => x + "ów";
-      SF Pl Dat => x + "om";
-      SF Pl Acc => x + "y";
-      SF Pl Instr => x + "ami";
-      SF Pl Loc => x + "ach";
-      SF Pl Voc => x + "y"
-    };
-
-    oper mkNTable1387: Str -> SubstForm => Str; --%
-    oper mkNTable1387 lexem = 
-      let x = Predef.tk 4 lexem in
-    table { 
-      SF Sg Nom => x + "owie";
-      SF Sg Gen => x + "owia";
-      SF Sg Dat => x + "owiu";
-      SF Sg Acc => x + "owie";
-      SF Sg Instr => x + "owiem";
-      SF Sg Loc => x + "owiu";
-      SF Sg Voc => x + "owie";
-      SF Pl Nom => x + "owia";
-      SF Pl Gen => x + "ów";
-      SF Pl Dat => x + "owiom";
-      SF Pl Acc => x + "owia";
-      SF Pl Instr => x + "owiami";
-      SF Pl Loc => x + "owiach";
-      SF Pl Voc => x + "owia"
-    };
-
-    oper mkNTable1388: Str -> SubstForm => Str; --%
-    oper mkNTable1388 lexem = 
-      let x = Predef.tk 7 lexem in
-    table { 
-      SF Sg Nom => x + "ptaszek";
-      SF Sg Gen => x + "ptaszka";
-      SF Sg Dat => x + "ptaszkowi";
-      SF Sg Acc => x + "ptaszka";
-      SF Sg Instr => x + "ptaszkiem";
-      SF Sg Loc => x + "ptaszku";
-      SF Sg Voc => x + "ptaszku";
-      SF Pl Nom => x + "Ptaszkowie";
-      SF Pl Gen => x + "ptaszków";
-      SF Pl Dat => x + "ptaszkom";
-      SF Pl Acc => x + "ptaszków";
-      SF Pl Instr => x + "ptaszkami";
-      SF Pl Loc => x + "ptaszkach";
-      SF Pl Voc => x + "Ptaszkowie"
-    };
-
-    oper mkNTable1389: Str -> SubstForm => Str; --%
-    oper mkNTable1389 lexem = 
-      let x = Predef.tk 1 lexem in
-    table { 
-      SF Sg Nom => x + "ś";
-      SF Sg Gen => x + "sia";
-      SF Sg Dat => x + "siowi";
-      SF Sg Acc => x + "ś";
-      SF Sg Instr => x + "siem";
-      SF Sg Loc => x + "siu";
-      SF Sg Voc => x + "siu";
-      SF Pl Nom => x + "sie";
-      SF Pl Gen => x + "si";
-      SF Pl Dat => x + "siom";
-      SF Pl Acc => x + "sie";
-      SF Pl Instr => x + "siami";
-      SF Pl Loc => x + "siach";
-      SF Pl Voc => x + "sie"
-    };
-
-    oper mkNTable1390: Str -> SubstForm => Str; --%
-    oper mkNTable1390 lexem = 
-      let x = Predef.tk 5 lexem in
-    table { 
-      SF Sg Nom => x + "pucek";
-      SF Sg Gen => x + "pucka";
-      SF Sg Dat => x + "puckowi";
-      SF Sg Acc => x + "pucka";
-      SF Sg Instr => x + "puckiem";
-      SF Sg Loc => x + "pucku";
-      SF Sg Voc => x + "pucku";
-      SF Pl Nom => x + "Puckowie";
-      SF Pl Gen => x + "pucków";
-      SF Pl Dat => x + "puckom";
-      SF Pl Acc => x + "pucków";
-      SF Pl Instr => x + "puckami";
-      SF Pl Loc => x + "puckach";
-      SF Pl Voc => x + "Puckowie"
-    };
-
-    oper mkNTable1391: Str -> SubstForm => Str; --%
-    oper mkNTable1391 lexem = 
-      let x = Predef.tk 5 lexem in
-    table { 
-      SF Sg Nom => x + "pupka";
-      SF Sg Gen => x + "pupki";
-      SF Sg Dat => x + "pupce";
-      SF Sg Acc => x + "pupkę";
-      SF Sg Instr => x + "pupką";
-      SF Sg Loc => x + "pupce";
-      SF Sg Voc => x + "pupko";
-      SF Pl Nom => x + "Pupkowie";
-      SF Pl Gen => x + "pupek";
-      SF Pl Dat => x + "pupkom";
-      SF Pl Acc => x + "pupek";
-      SF Pl Instr => x + "pupkami";
-      SF Pl Loc => x + "pupkach";
-      SF Pl Voc => x + "Pupkowie"
-    };
-
-    oper mkNTable1392: Str -> SubstForm => Str; --%
-    oper mkNTable1392 lexem = 
-      let x = Predef.tk 2 lexem in
-    table { 
-      SF Sg Nom => x + "to";
-      SF Sg Gen => x + "ta";
-      SF Sg Dat => x + "tu";
-      SF Sg Acc => x + "to";
-      SF Sg Instr => x + "tem";
-      SF Sg Loc => x + "cie";
-      SF Sg Voc => x + "to";
-      SF Pl Nom => x + "ta";
-      SF Pl Gen => x + "tów";
-      SF Pl Dat => x + "tom";
-      SF Pl Acc => x + "ta";
-      SF Pl Instr => x + "tami";
-      SF Pl Loc => x + "tach";
-      SF Pl Voc => x + "ta"
-    };
-
-    oper mkNTable1393: Str -> SubstForm => Str; --%
-    oper mkNTable1393 lexem = 
-      let x = Predef.tk 2 lexem in
-    table { 
-      SF Sg Nom => x + "eć";
-      SF Sg Gen => x + "cia";
-      SF Sg Dat => x + "ciowi";
-      SF Sg Acc => x + "cia";
-      SF Sg Instr => x + "ciem";
-      SF Sg Loc => x + "ciu";
-      SF Sg Voc => x + "ciu";
-      SF Pl Nom => x + "cie";
-      SF Pl Gen => x + "ciów";
-      SF Pl Dat => x + "ciom";
-      SF Pl Acc => x + "cie";
-      SF Pl Instr => x + "ciami";
-      SF Pl Loc => x + "ciach";
-      SF Pl Voc => x + "cie"
-    };
-
-    oper mkNTable1394: Str -> SubstForm => Str; --%
-    oper mkNTable1394 lexem = 
-      let x = Predef.tk 4 lexem in
-    table { 
-      SF Sg Nom => x + "pyra";
-      SF Sg Gen => x + "pyry";
-      SF Sg Dat => x + "pyrze";
-      SF Sg Acc => x + "pyrę";
-      SF Sg Instr => x + "pyrą";
-      SF Sg Loc => x + "pyrze";
-      SF Sg Voc => x + "pyro";
-      SF Pl Nom => x + "Pyrowie";
-      SF Pl Gen => x + "pyrów";
-      SF Pl Dat => x + "pyrom";
-      SF Pl Acc => x + "pyrów";
-      SF Pl Instr => x + "pyrami";
-      SF Pl Loc => x + "pyrach";
-      SF Pl Voc => x + "Pyrowie"
-    };
-
-    oper mkNTable1395: Str -> SubstForm => Str; --%
-    oper mkNTable1395 lexem = 
-      let x = Predef.tk 3 lexem in
-    table { 
-      SF Sg Nom => x + "Pyś";
-      SF Sg Gen => x + "pysia";
-      SF Sg Dat => x + "pysiowi";
-      SF Sg Acc => x + "Pyś";
-      SF Sg Instr => x + "pysiem";
-      SF Sg Loc => x + "pysiu";
-      SF Sg Voc => x + "pysiu";
-      SF Pl Nom => x + "pysie";
-      SF Pl Gen => x + "pysiów";
-      SF Pl Dat => x + "pysiom";
-      SF Pl Acc => x + "pysie";
-      SF Pl Instr => x + "pysiami";
-      SF Pl Loc => x + "pysiach";
-      SF Pl Voc => x + "pysie"
-    };
-
-    oper mkNTable1396: Str -> SubstForm => Str; --%
-    oper mkNTable1396 lexem = 
-      let x = Predef.tk 2 lexem in
-    table { 
-      SF Sg Nom => x + "eć";
-      SF Sg Gen => x + "ci";
-      SF Sg Dat => x + "ci";
-      SF Sg Acc => x + "eć";
-      SF Sg Instr => x + "cią";
-      SF Sg Loc => x + "ci";
-      SF Sg Voc => x + "ci";
-      SF Pl Nom => x + "cie";
-      SF Pl Gen => x + "ci";
-      SF Pl Dat => x + "ciom";
-      SF Pl Acc => x + "cie";
-      SF Pl Instr => x + "ciami";
-      SF Pl Loc => x + "ciach";
-      SF Pl Voc => x + "cie"
-    };
-
-    oper mkNTable1397: Str -> SubstForm => Str; --%
-    oper mkNTable1397 lexem = 
-      let x = Predef.tk 3 lexem in
-    table { 
-      SF Sg Nom => x + "tno";
-      SF Sg Gen => x + "tna";
-      SF Sg Dat => x + "tnu";
-      SF Sg Acc => x + "tno";
-      SF Sg Instr => x + "tnem";
-      SF Sg Loc => x + "tnie";
-      SF Sg Voc => x + "tno";
-      SF Pl Nom => x + "tna";
-      SF Pl Gen => x + "cien";
-      SF Pl Dat => x + "tnom";
-      SF Pl Acc => x + "tna";
-      SF Pl Instr => x + "tnami";
-      SF Pl Loc => x + "tnach";
-      SF Pl Voc => x + "tna"
-    };
-
-    oper mkNTable1398: Str -> SubstForm => Str; --%
-    oper mkNTable1398 lexem = 
-      let x = Predef.tk 3 lexem in
-    table { 
-      SF Sg Nom => x + "sen";
-      SF Sg Gen => x + "snu";
-      SF Sg Dat => x + "snowi";
-      SF Sg Acc => x + "sen";
-      SF Sg Instr => x + "snem";
-      SF Sg Loc => x + "śnie";
-      SF Sg Voc => x + "śnie";
-      SF Pl Nom => x + "sny";
-      SF Pl Gen => x + "snów";
-      SF Pl Dat => x + "snom";
-      SF Pl Acc => x + "sny";
-      SF Pl Instr => x + "snami";
-      SF Pl Loc => x + "snach";
-      SF Pl Voc => x + "sny"
-    };
-
-    oper mkNTable1399: Str -> SubstForm => Str; --%
-    oper mkNTable1399 lexem = 
-      let x = Predef.tk 3 lexem in
-    table { 
-      SF Sg Nom => x + "ieś";
-      SF Sg Gen => x + "si";
-      SF Sg Dat => x + "si";
-      SF Sg Acc => x + "ieś";
-      SF Sg Instr => x + "sią";
-      SF Sg Loc => x + "si";
-      SF Sg Voc => x + "si";
-      SF Pl Nom => x + "sie";
-      SF Pl Gen => x + "si";
-      SF Pl Dat => x + "siom";
-      SF Pl Acc => x + "sie";
-      SF Pl Instr => x + "siami";
-      SF Pl Loc => x + "siach";
-      SF Pl Voc => x + "sie"
-    };
-
-    oper mkNTable1400: Str -> SubstForm => Str; --%
-    oper mkNTable1400 lexem = 
-      let x = Predef.tk 4 lexem in
-    table { 
-      SF Sg Nom => x + "atło";
-      SF Sg Gen => x + "atła";
-      SF Sg Dat => x + "atłu";
-      SF Sg Acc => x + "atło";
-      SF Sg Instr => x + "atłem";
-      SF Sg Loc => x + "etle";
-      SF Sg Voc => x + "atło";
-      SF Pl Nom => x + "atła";
-      SF Pl Gen => x + "ateł";
-      SF Pl Dat => x + "atłom";
-      SF Pl Acc => x + "atła";
-      SF Pl Instr => x + "atłami";
-      SF Pl Loc => x + "atłach";
-      SF Pl Voc => x + "atła"
-    };
-
-    oper mkNTable1401: Str -> SubstForm => Str; --%
-    oper mkNTable1401 lexem = 
-      let x = Predef.tk 1 lexem in
-    table { 
-      SF Sg Nom => x + "o";
-      SF Sg Gen => x + "o";
-      SF Sg Dat => x + "u";
-      SF Sg Acc => x + "o";
-      SF Sg Instr => x + "o";
-      SF Sg Loc => x + "o";
-      SF Sg Voc => x + "o";
-      SF Pl Nom => x + "o";
-      SF Pl Gen => x + "o";
-      SF Pl Dat => x + "o";
-      SF Pl Acc => x + "o";
-      SF Pl Instr => x + "o";
-      SF Pl Loc => x + "o";
-      SF Pl Voc => x + "o"
-    };
-
-    oper mkNTable1402: Str -> SubstForm => Str; --%
-    oper mkNTable1402 lexem = 
-      let x = Predef.tk 1 lexem in
-    table { 
-      SF Sg Nom => x + "e";
-      SF Sg Gen => x + "e";
-      SF Sg Dat => x + "e";
-      SF Sg Acc => x + "e";
-      SF Sg Instr => x + "e";
-      SF Sg Loc => x + "e";
-      SF Sg Voc => x + "e";
-      SF Pl Nom => x + "ia";
-      SF Pl Gen => x + "iów";
-      SF Pl Dat => x + "iom";
-      SF Pl Acc => x + "ia";
-      SF Pl Instr => x + "iami";
-      SF Pl Loc => x + "iach";
-      SF Pl Voc => x + "ia"
-    };
-
-    oper mkNTable1403: Str -> SubstForm => Str; --%
-    oper mkNTable1403 lexem = 
-      let x = Predef.tk 0 lexem in
-    table { 
-      SF Sg Nom => x + "";
-      SF Sg Gen => x + "u";
-      SF Sg Dat => x + "owi";
-      SF Sg Acc => x + "";
-      SF Sg Instr => x + "em";
-      SF Sg Loc => x + "ze";
-      SF Sg Voc => x + "ze";
-      SF Pl Nom => x + "a";
-      SF Pl Gen => x + "ów";
-      SF Pl Dat => x + "om";
-      SF Pl Acc => x + "a";
-      SF Pl Instr => x + "ami";
-      SF Pl Loc => x + "ach";
-      SF Pl Voc => x + "a"
-    };
-
-    oper mkNTable1404: Str -> SubstForm => Str; --%
-    oper mkNTable1404 lexem = 
-      let x = Predef.tk 0 lexem in
-    table { 
-      SF Sg Nom => x + "";
-      SF Sg Gen => x + "a";
-      SF Sg Dat => x + "owi";
-      SF Sg Acc => x + "a";
-      SF Sg Instr => x + "em";
-      SF Sg Loc => x + "";
-      SF Sg Voc => x + "";
-      SF Pl Nom => x + "y";
-      SF Pl Gen => x + "ów";
-      SF Pl Dat => x + "om";
-      SF Pl Acc => x + "y";
-      SF Pl Instr => x + "ami";
-      SF Pl Loc => x + "ach";
-      SF Pl Voc => x + "y"
-    };
-
-    oper mkNTable1405: Str -> SubstForm => Str; --%
-    oper mkNTable1405 lexem = 
-      let x = Predef.tk 0 lexem in
-    table { 
-      SF Sg Nom => x + "";
-      SF Sg Gen => x + "ego";
-      SF Sg Dat => x + "emu";
-      SF Sg Acc => x + "ego";
-      SF Sg Instr => x + "m";
-      SF Sg Loc => x + "m";
-      SF Sg Voc => x + "";
-      SF Pl Nom => x + "e";
-      SF Pl Gen => x + "ch";
-      SF Pl Dat => x + "m";
-      SF Pl Acc => x + "e";
-      SF Pl Instr => x + "mi";
-      SF Pl Loc => x + "ch";
-      SF Pl Voc => x + "e"
-    };
-
-    oper mkNTable1409: Str -> SubstForm => Str; --%
-    oper mkNTable1409 lexem = 
-      let x = Predef.tk 0 lexem in
-    table { 
-      SF Sg Nom => x + "";
-      SF Sg Gen => x + "u";
-      SF Sg Dat => x + "owi";
-      SF Sg Acc => x + "u";
-      SF Sg Instr => x + "iem";
-      SF Sg Loc => x + "u";
-      SF Sg Voc => x + "u";
-      SF Pl Nom => x + "i";
-      SF Pl Gen => x + "ów";
-      SF Pl Dat => x + "om";
-      SF Pl Acc => x + "i";
-      SF Pl Instr => x + "ami";
-      SF Pl Loc => x + "ach";
-      SF Pl Voc => x + "i"
-    };
-
-    oper mkNTable1410: Str -> SubstForm => Str; --%
-    oper mkNTable1410 lexem = 
-      let x = Predef.tk 9 lexem in
-    table { 
-      SF Sg Nom => x + "pospolita";
-      SF Sg Gen => x + "ypospolitej";
-      SF Sg Dat => x + "ypospolitej";
-      SF Sg Acc => x + "ąpospolitą";
-      SF Sg Instr => x + "ąpospolitą";
-      SF Sg Loc => x + "ypospolitej";
-      SF Sg Voc => x + "ypospolita";
-      SF Pl Nom => x + "ypospolite";
-      SF Pl Gen => x + "pospolitych";
-      SF Pl Dat => x + "pospolitym";
-      SF Pl Acc => x + "ypospolite";
-      SF Pl Instr => x + "pospolitymi";
-      SF Pl Loc => x + "pospolitych";
-      SF Pl Voc => x + "ypospolite"
-    };
-
-    oper mkNTable1411: Str -> SubstForm => Str; --%
-    oper mkNTable1411 lexem = 
-      let x = Predef.tk 3 lexem in
-    table { 
-      SF Sg Nom => x + "sło";
-      SF Sg Gen => x + "sła";
-      SF Sg Dat => x + "słu";
-      SF Sg Acc => x + "sło";
-      SF Sg Instr => x + "słem";
-      SF Sg Loc => x + "śle";
-      SF Sg Voc => x + "sło";
-      SF Pl Nom => x + "sła";
-      SF Pl Gen => x + "sł";
-      SF Pl Dat => x + "słom";
-      SF Pl Acc => x + "sła";
-      SF Pl Instr => x + "słami";
-      SF Pl Loc => x + "słach";
-      SF Pl Voc => x + "sła"
-    };
-
-    oper mkNTable1412: Str -> SubstForm => Str; --%
-    oper mkNTable1412 lexem = 
-      let x = Predef.tk 3 lexem in
-    table { 
-      SF Sg Nom => x + "ęka";
-      SF Sg Gen => x + "ęki";
-      SF Sg Dat => x + "ęce";
-      SF Sg Acc => x + "ękę";
-      SF Sg Instr => x + "ęką";
-      SF Sg Loc => x + "ęce";
-      SF Sg Voc => x + "ęko";
-      SF Pl Nom => x + "ęce";
-      SF Pl Gen => x + "ąk";
-      SF Pl Dat => x + "ękom";
-      SF Pl Acc => x + "ęce";
-      SF Pl Instr => x + "ękoma";
-      SF Pl Loc => x + "ęku";
-      SF Pl Voc => x + "ęce"
-    };
-
-    oper mkNTable1414: Str -> SubstForm => Str; --%
-    oper mkNTable1414 lexem = 
-      let x = Predef.tk 7 lexem in
-    table { 
-      SF Sg Nom => x + "sierota";
-      SF Sg Gen => x + "sieroty";
-      SF Sg Dat => x + "sierocie";
-      SF Sg Acc => x + "sierotę";
-      SF Sg Instr => x + "sierotą";
-      SF Sg Loc => x + "sierocie";
-      SF Sg Voc => x + "sieroto";
-      SF Pl Nom => x + "sieroty";
-      SF Pl Gen => x + "Sierotów";
-      SF Pl Dat => x + "sierotom";
-      SF Pl Acc => x + "sieroty";
-      SF Pl Instr => x + "sierotami";
-      SF Pl Loc => x + "sierotach";
-      SF Pl Voc => x + "sieroty"
-    };
-
-    oper mkNTable1415: Str -> SubstForm => Str; --%
-    oper mkNTable1415 lexem = 
-      let x = Predef.tk 3 lexem in
-    table { 
-      SF Sg Nom => x + "ień";
-      SF Sg Gen => x + "nia";
-      SF Sg Dat => x + "niowi";
-      SF Sg Acc => x + "ień";
-      SF Sg Instr => x + "niem";
-      SF Sg Loc => x + "niu";
-      SF Sg Voc => x + "niu";
-      SF Pl Nom => x + "nie";
-      SF Pl Gen => x + "niów";
-      SF Pl Dat => x + "niom";
-      SF Pl Acc => x + "nie";
-      SF Pl Instr => x + "niami";
-      SF Pl Loc => x + "niach";
-      SF Pl Voc => x + "nie"
-    };
-
-    oper mkNTable1416: Str -> SubstForm => Str; --%
-    oper mkNTable1416 lexem = 
-      let x = Predef.tk 3 lexem in
-    table { 
-      SF Sg Nom => x + "iel";
-      SF Sg Gen => x + "la";
-      SF Sg Dat => x + "lowi";
-      SF Sg Acc => x + "la";
-      SF Sg Instr => x + "lem";
-      SF Sg Loc => x + "lu";
-      SF Sg Voc => x + "lu";
-      SF Pl Nom => x + "le";
-      SF Pl Gen => x + "lów";
-      SF Pl Dat => x + "lom";
-      SF Pl Acc => x + "lów";
-      SF Pl Instr => x + "lami";
-      SF Pl Loc => x + "lach";
-      SF Pl Voc => x + "le"
-    };
-
-    oper mkNTable1417: Str -> SubstForm => Str; --%
-    oper mkNTable1417 lexem = 
-      let x = Predef.tk 5 lexem in
-    table { 
-      SF Sg Nom => x + "ostra";
-      SF Sg Gen => x + "ostry";
-      SF Sg Dat => x + "ostrze";
-      SF Sg Acc => x + "ostrę";
-      SF Sg Instr => x + "ostrą";
-      SF Sg Loc => x + "ostrze";
-      SF Sg Voc => x + "ostro";
-      SF Pl Nom => x + "ostry";
-      SF Pl Gen => x + "óstr";
-      SF Pl Dat => x + "ostrom";
-      SF Pl Acc => x + "ostry";
-      SF Pl Instr => x + "ostrami";
-      SF Pl Loc => x + "ostrach";
-      SF Pl Voc => x + "ostry"
-    };
-
-    oper mkNTable1418: Str -> SubstForm => Str; --%
-    oper mkNTable1418 lexem = 
-      let x = Predef.tk 3 lexem in
-    table { 
-      SF Sg Nom => x + "cco";
-      SF Sg Gen => x + "cco";
-      SF Sg Dat => x + "ccu";
-      SF Sg Acc => x + "cco";
-      SF Sg Instr => x + "kkiem";
-      SF Sg Loc => x + "ccu";
-      SF Sg Voc => x + "cco";
-      SF Pl Nom => x + "cco";
-      SF Pl Gen => x + "cco";
-      SF Pl Dat => x + "ccom";
-      SF Pl Acc => x + "cco";
-      SF Pl Instr => x + "cco";
-      SF Pl Loc => x + "cco";
-      SF Pl Voc => x + "cco"
-    };
-
-    oper mkNTable1419: Str -> SubstForm => Str; --%
-    oper mkNTable1419 lexem = 
-      let x = Predef.tk 0 lexem in
-    table { 
-      SF Sg Nom => x + "";
-      SF Sg Gen => x + "a";
-      SF Sg Dat => x + "owi";
-      SF Sg Acc => x + "a";
-      SF Sg Instr => x + "em";
-      SF Sg Loc => x + "u";
-      SF Sg Voc => x + "u";
-      SF Pl Nom => x + "i";
-      SF Pl Gen => x + "ów";
-      SF Pl Dat => x + "om";
-      SF Pl Acc => x + "ów";
-      SF Pl Instr => x + "ami";
-      SF Pl Loc => x + "ach";
-      SF Pl Voc => x + "i"
-    };
-
-    oper mkNTable1420: Str -> SubstForm => Str; --%
-    oper mkNTable1420 lexem = 
-      let x = Predef.tk 4 lexem in
-    table { 
-      SF Sg Nom => x + "smyk";
-      SF Sg Gen => x + "smyka";
-      SF Sg Dat => x + "smykowi";
-      SF Sg Acc => x + "smyka";
-      SF Sg Instr => x + "smykiem";
-      SF Sg Loc => x + "smyku";
-      SF Sg Voc => x + "smyku";
-      SF Pl Nom => x + "Smykowie";
-      SF Pl Gen => x + "smyków";
-      SF Pl Dat => x + "smykom";
-      SF Pl Acc => x + "smyków";
-      SF Pl Instr => x + "smykami";
-      SF Pl Loc => x + "smykach";
-      SF Pl Voc => x + "Smykowie"
-    };
-
-    oper mkNTable1421: Str -> SubstForm => Str; --%
-    oper mkNTable1421 lexem = 
-      let x = Predef.tk 5 lexem in
-    table { 
-      SF Sg Nom => x + "sokół";
-      SF Sg Gen => x + "sokoła";
-      SF Sg Dat => x + "sokołowi";
-      SF Sg Acc => x + "sokoła";
-      SF Sg Instr => x + "sokołem";
-      SF Sg Loc => x + "sokole";
-      SF Sg Voc => x + "sokole";
-      SF Pl Nom => x + "Sokołowie";
-      SF Pl Gen => x + "sokołów";
-      SF Pl Dat => x + "sokołom";
-      SF Pl Acc => x + "sokołów";
-      SF Pl Instr => x + "sokołami";
-      SF Pl Loc => x + "sokołach";
-      SF Pl Voc => x + "Sokołowie"
-    };
-
-    oper mkNTable1422: Str -> SubstForm => Str; --%
-    oper mkNTable1422 lexem = 
-      let x = Predef.tk 3 lexem in
-    table { 
-      SF Sg Nom => x + "sna";
-      SF Sg Gen => x + "sny";
-      SF Sg Dat => x + "śnie";
-      SF Sg Acc => x + "snę";
-      SF Sg Instr => x + "sną";
-      SF Sg Loc => x + "śnie";
-      SF Sg Voc => x + "sno";
-      SF Pl Nom => x + "sny";
-      SF Pl Gen => x + "sen";
-      SF Pl Dat => x + "snom";
-      SF Pl Acc => x + "sny";
-      SF Pl Instr => x + "snami";
-      SF Pl Loc => x + "snach";
-      SF Pl Voc => x + "sny"
-    };
-
-    oper mkNTable1423: Str -> SubstForm => Str; --%
-    oper mkNTable1423 lexem = 
-      let x = Predef.tk 6 lexem in
-    table { 
-      SF Sg Nom => x + "starek";
-      SF Sg Gen => x + "starka";
-      SF Sg Dat => x + "Starkowi";
-      SF Sg Acc => x + "starka";
-      SF Sg Instr => x + "Starkiem";
-      SF Sg Loc => x + "Starku";
-      SF Sg Voc => x + "Starku";
-      SF Pl Nom => x + "Starkowie";
-      SF Pl Gen => x + "Starków";
-      SF Pl Dat => x + "starkom";
-      SF Pl Acc => x + "Starków";
-      SF Pl Instr => x + "starkami";
-      SF Pl Loc => x + "starkach";
-      SF Pl Voc => x + "Starkowie"
-    };
-
-    oper mkNTable1424: Str -> SubstForm => Str; --%
-    oper mkNTable1424 lexem = 
-      let x = Predef.tk 3 lexem in
-    table { 
-      SF Sg Nom => x + "sta";
-      SF Sg Gen => x + "sty";
-      SF Sg Dat => x + "ście";
-      SF Sg Acc => x + "stę";
-      SF Sg Instr => x + "stą";
-      SF Sg Loc => x + "ście";
-      SF Sg Voc => x + "sto";
-      SF Pl Nom => x + "stowie";
-      SF Pl Gen => x + "stów";
-      SF Pl Dat => x + "stom";
-      SF Pl Acc => x + "stów";
-      SF Pl Instr => x + "stami";
-      SF Pl Loc => x + "stach";
-      SF Pl Voc => x + "stowie"
-    };
-
-    oper mkNTable1425: Str -> SubstForm => Str; --%
-    oper mkNTable1425 lexem = 
-      let x = Predef.tk 7 lexem in
-    table { 
-      SF Sg Nom => x + "starzyk";
-      SF Sg Gen => x + "starzyka";
-      SF Sg Dat => x + "starzykowi";
-      SF Sg Acc => x + "starzyka";
-      SF Sg Instr => x + "starzykiem";
-      SF Sg Loc => x + "starzyku";
-      SF Sg Voc => x + "starzyku";
-      SF Pl Nom => x + "Starzykowie";
-      SF Pl Gen => x + "starzyków";
-      SF Pl Dat => x + "starzykom";
-      SF Pl Acc => x + "starzyków";
-      SF Pl Instr => x + "starzykami";
-      SF Pl Loc => x + "starzykach";
-      SF Pl Voc => x + "Starzykowie"
-    };
-
-    oper mkNTable1426: Str -> SubstForm => Str; --%
-    oper mkNTable1426 lexem = 
-      let x = Predef.tk 3 lexem in
-    table { 
-      SF Sg Nom => x + "opa";
-      SF Sg Gen => x + "opy";
-      SF Sg Dat => x + "opie";
-      SF Sg Acc => x + "opę";
-      SF Sg Instr => x + "opą";
-      SF Sg Loc => x + "opie";
-      SF Sg Voc => x + "opo";
-      SF Pl Nom => x + "opy";
-      SF Pl Gen => x + "óp";
-      SF Pl Dat => x + "opom";
-      SF Pl Acc => x + "opy";
-      SF Pl Instr => x + "opami";
-      SF Pl Loc => x + "opach";
-      SF Pl Voc => x + "opy"
-    };
-
-    oper mkNTable1427: Str -> SubstForm => Str; --%
-    oper mkNTable1427 lexem = 
-      let x = Predef.tk 10 lexem in
-    table { 
-      SF Sg Nom => x + "strzelczyk";
-      SF Sg Gen => x + "strzelczyka";
-      SF Sg Dat => x + "strzelczykowi";
-      SF Sg Acc => x + "strzelczyka";
-      SF Sg Instr => x + "strzelczykiem";
-      SF Sg Loc => x + "strzelczyku";
-      SF Sg Voc => x + "strzelczyku";
-      SF Pl Nom => x + "Strzelczykowie";
-      SF Pl Gen => x + "strzelczyków";
-      SF Pl Dat => x + "strzelczykom";
-      SF Pl Acc => x + "strzelczyków";
-      SF Pl Instr => x + "strzelczykami";
-      SF Pl Loc => x + "strzelczykach";
-      SF Pl Voc => x + "Strzelczykowie"
-    };
-
-    oper mkNTable1428: Str -> SubstForm => Str; --%
-    oper mkNTable1428 lexem = 
-      let x = Predef.tk 3 lexem in
-    table { 
-      SF Sg Nom => x + "nia";
-      SF Sg Gen => x + "ni";
-      SF Sg Dat => x + "ni";
-      SF Sg Acc => x + "nię";
-      SF Sg Instr => x + "nią";
-      SF Sg Loc => x + "ni";
-      SF Sg Voc => x + "nio";
-      SF Pl Nom => x + "nie";
-      SF Pl Gen => x + "zien";
-      SF Pl Dat => x + "niom";
-      SF Pl Acc => x + "nie";
-      SF Pl Instr => x + "niami";
-      SF Pl Loc => x + "niach";
-      SF Pl Voc => x + "nie"
-    };
-
-    oper mkNTable1429: Str -> SubstForm => Str; --%
-    oper mkNTable1429 lexem = 
-      let x = Predef.tk 2 lexem in
-    table { 
-      SF Sg Nom => x + "eń";
-      SF Sg Gen => x + "nia";
-      SF Sg Dat => x + "niowi";
-      SF Sg Acc => x + "eń";
-      SF Sg Instr => x + "niem";
-      SF Sg Loc => x + "niu";
-      SF Sg Voc => x + "niu";
-      SF Pl Nom => x + "nie";
-      SF Pl Gen => x + "niów";
-      SF Pl Dat => x + "niom";
-      SF Pl Acc => x + "nie";
-      SF Pl Instr => x + "niami";
-      SF Pl Loc => x + "niach";
-      SF Pl Voc => x + "nie"
-    };
-
-    oper mkNTable1430: Str -> SubstForm => Str; --%
-    oper mkNTable1430 lexem = 
-      let x = Predef.tk 3 lexem in
-    table { 
-      SF Sg Nom => x + "seł";
-      SF Sg Gen => x + "sła";
-      SF Sg Dat => x + "słowi";
-      SF Sg Acc => x + "sła";
-      SF Sg Instr => x + "słem";
-      SF Sg Loc => x + "śle";
-      SF Sg Voc => x + "śle";
-      SF Pl Nom => x + "sły";
-      SF Pl Gen => x + "słów";
-      SF Pl Dat => x + "słom";
-      SF Pl Acc => x + "sły";
-      SF Pl Instr => x + "słami";
-      SF Pl Loc => x + "słach";
-      SF Pl Voc => x + "sły"
-    };
-
-    oper mkNTable1431: Str -> SubstForm => Str; --%
-    oper mkNTable1431 lexem = 
-      let x = Predef.tk 1 lexem in
-    table { 
-      SF Sg Nom => x + "a";
-      SF Sg Gen => x + "y";
-      SF Sg Dat => x + "ie";
-      SF Sg Acc => x + "ę";
-      SF Sg Instr => x + "ą";
-      SF Sg Loc => x + "ie";
-      SF Sg Voc => x + "o";
-      SF Pl Nom => x + "e";
-      SF Pl Gen => x + "";
-      SF Pl Dat => x + "om";
-      SF Pl Acc => x + "e";
-      SF Pl Instr => x + "ami";
-      SF Pl Loc => x + "ach";
-      SF Pl Voc => x + "e"
-    };
-
-    oper mkNTable1432: Str -> SubstForm => Str; --%
-    oper mkNTable1432 lexem = 
-      let x = Predef.tk 0 lexem in
-    table { 
-      SF Sg Nom => x + "";
-      SF Sg Gen => x + "a";
-      SF Sg Dat => x + "owi";
-      SF Sg Acc => x + "a";
-      SF Sg Instr => x + "em";
-      SF Sg Loc => x + "u";
-      SF Sg Voc => x + "ze";
-      SF Pl Nom => x + "y";
-      SF Pl Gen => x + "ów";
-      SF Pl Dat => x + "om";
-      SF Pl Acc => x + "ów";
-      SF Pl Instr => x + "ami";
-      SF Pl Loc => x + "ach";
-      SF Pl Voc => x + "y"
-    };
-
-    oper mkNTable1434: Str -> SubstForm => Str; --%
-    oper mkNTable1434 lexem = 
-      let x = Predef.tk 6 lexem in
-    table { 
-      SF Sg Nom => x + "Szlaga";
-      SF Sg Gen => x + "szlagi";
-      SF Sg Dat => x + "Szladze";
-      SF Sg Acc => x + "Szlagę";
-      SF Sg Instr => x + "Szlagą";
-      SF Sg Loc => x + "Szladze";
-      SF Sg Voc => x + "Szlago";
-      SF Pl Nom => x + "szlagi";
-      SF Pl Gen => x + "szlag";
-      SF Pl Dat => x + "szlagom";
-      SF Pl Acc => x + "szlagi";
-      SF Pl Instr => x + "szlagami";
-      SF Pl Loc => x + "szlagach";
-      SF Pl Voc => x + "szlagi"
-    };
-
-    oper mkNTable1435: Str -> SubstForm => Str; --%
-    oper mkNTable1435 lexem = 
-      let x = Predef.tk 6 lexem in
-    table { 
-      SF Sg Nom => x + "Szlaga";
-      SF Sg Gen => x + "szlagi";
-      SF Sg Dat => x + "Szladze";
-      SF Sg Acc => x + "Szlagę";
-      SF Sg Instr => x + "Szlagą";
-      SF Sg Loc => x + "Szladze";
-      SF Sg Voc => x + "Szlago";
-      SF Pl Nom => x + "Szlagowie";
-      SF Pl Gen => x + "szlagów";
-      SF Pl Dat => x + "szlagom";
-      SF Pl Acc => x + "szlagów";
-      SF Pl Instr => x + "szlagami";
-      SF Pl Loc => x + "szlagach";
-      SF Pl Voc => x + "Szlagowie"
-    };
-
-    oper mkNTable1436: Str -> SubstForm => Str; --%
-    oper mkNTable1436 lexem = 
-      let x = Predef.tk 6 lexem in
-    table { 
-      SF Sg Nom => x + "sznura";
-      SF Sg Gen => x + "sznury";
-      SF Sg Dat => x + "sznurze";
-      SF Sg Acc => x + "Sznurę";
-      SF Sg Instr => x + "Sznurą";
-      SF Sg Loc => x + "sznurze";
-      SF Sg Voc => x + "Sznuro";
-      SF Pl Nom => x + "sznury";
-      SF Pl Gen => x + "sznur";
-      SF Pl Dat => x + "sznurom";
-      SF Pl Acc => x + "sznury";
-      SF Pl Instr => x + "sznurami";
-      SF Pl Loc => x + "sznurach";
-      SF Pl Voc => x + "sznury"
-    };
-
-    oper mkNTable1437: Str -> SubstForm => Str; --%
-    oper mkNTable1437 lexem = 
-      let x = Predef.tk 4 lexem in
-    table { 
-      SF Sg Nom => x + "szot";
-      SF Sg Gen => x + "szota";
-      SF Sg Dat => x + "szotowi";
-      SF Sg Acc => x + "szota";
-      SF Sg Instr => x + "szotem";
-      SF Sg Loc => x + "szocie";
-      SF Sg Voc => x + "szocie";
-      SF Pl Nom => x + "Szotowie";
-      SF Pl Gen => x + "szotów";
-      SF Pl Dat => x + "szotom";
-      SF Pl Acc => x + "szotów";
-      SF Pl Instr => x + "szotami";
-      SF Pl Loc => x + "szotach";
-      SF Pl Voc => x + "Szotowie"
-    };
-
-    oper mkNTable1439: Str -> SubstForm => Str; --%
-    oper mkNTable1439 lexem = 
-      let x = Predef.tk 3 lexem in
-    table { 
-      SF Sg Nom => x + "ier";
-      SF Sg Gen => x + "ra";
-      SF Sg Dat => x + "rowi";
-      SF Sg Acc => x + "ra";
-      SF Sg Instr => x + "rem";
-      SF Sg Loc => x + "rze";
-      SF Sg Voc => x + "rze";
-      SF Pl Nom => x + "rowie";
-      SF Pl Gen => x + "rów";
-      SF Pl Dat => x + "rom";
-      SF Pl Acc => x + "rów";
-      SF Pl Instr => x + "rami";
-      SF Pl Loc => x + "rach";
-      SF Pl Voc => x + "rowie"
-    };
-
-    oper mkNTable1440: Str -> SubstForm => Str; --%
-    oper mkNTable1440 lexem = 
-      let x = Predef.tk 0 lexem in
-    table { 
-      SF Sg Nom => x + "";
-      SF Sg Gen => x + "i";
-      SF Sg Dat => x + "i";
-      SF Sg Acc => x + "";
-      SF Sg Instr => x + "ią";
-      SF Sg Loc => x + "i";
-      SF Sg Voc => x + "i";
-      SF Pl Nom => x + "ie";
-      SF Pl Gen => x + "i";
-      SF Pl Dat => x + "iom";
-      SF Pl Acc => x + "ie";
-      SF Pl Instr => x + "iami";
-      SF Pl Loc => x + "iach";
-      SF Pl Voc => x + "ie"
-    };
-
-    oper mkNTable1441: Str -> SubstForm => Str; --%
-    oper mkNTable1441 lexem = 
-      let x = Predef.tk 2 lexem in
-    table { 
-      SF Sg Nom => x + "ad";
-      SF Sg Gen => x + "ada";
-      SF Sg Dat => x + "adowi";
-      SF Sg Acc => x + "ada";
-      SF Sg Instr => x + "adem";
-      SF Sg Loc => x + "edzie";
-      SF Sg Voc => x + "edzie";
-      SF Pl Nom => x + "edzi";
-      SF Pl Gen => x + "adów";
-      SF Pl Dat => x + "adom";
-      SF Pl Acc => x + "adów";
-      SF Pl Instr => x + "adami";
-      SF Pl Loc => x + "adach";
-      SF Pl Voc => x + "edzi"
-    };
-
-    oper mkNTable1442: Str -> SubstForm => Str; --%
-    oper mkNTable1442 lexem = 
-      let x = Predef.tk 3 lexem in
-    table { 
-      SF Sg Nom => x + "owo";
-      SF Sg Gen => x + "owa";
-      SF Sg Dat => x + "owu";
-      SF Sg Acc => x + "owo";
-      SF Sg Instr => x + "owem";
-      SF Sg Loc => x + "owie";
-      SF Sg Voc => x + "owo";
-      SF Pl Nom => x + "owa";
-      SF Pl Gen => x + "ów";
-      SF Pl Dat => x + "owom";
-      SF Pl Acc => x + "owa";
-      SF Pl Instr => x + "owami";
-      SF Pl Loc => x + "owach";
-      SF Pl Voc => x + "owa"
-    };
-
-    oper mkNTable1443: Str -> SubstForm => Str; --%
-    oper mkNTable1443 lexem = 
-      let x = Predef.tk 2 lexem in
-    table { 
-      SF Sg Nom => x + "ój";
-      SF Sg Gen => x + "oja";
-      SF Sg Dat => x + "ojowi";
-      SF Sg Acc => x + "ój";
-      SF Sg Instr => x + "ojem";
-      SF Sg Loc => x + "oju";
-      SF Sg Voc => x + "oju";
-      SF Pl Nom => x + "oje";
-      SF Pl Gen => x + "ojów";
-      SF Pl Dat => x + "ojom";
-      SF Pl Acc => x + "oje";
-      SF Pl Instr => x + "ojami";
-      SF Pl Loc => x + "ojach";
-      SF Pl Voc => x + "oje"
-    };
-
-    oper mkNTable1444: Str -> SubstForm => Str; --%
-    oper mkNTable1444 lexem = 
-      let x = Predef.tk 5 lexem in
-    table { 
-      SF Sg Nom => x + "tabak";
-      SF Sg Gen => x + "Tabaku";
-      SF Sg Dat => x + "Tabakowi";
-      SF Sg Acc => x + "tabak";
-      SF Sg Instr => x + "Tabakiem";
-      SF Sg Loc => x + "Tabaku";
-      SF Sg Voc => x + "Tabaku";
-      SF Pl Nom => x + "tabaki";
-      SF Pl Gen => x + "Tabaków";
-      SF Pl Dat => x + "tabakom";
-      SF Pl Acc => x + "tabaki";
-      SF Pl Instr => x + "tabakami";
-      SF Pl Loc => x + "tabakach";
-      SF Pl Voc => x + "tabaki"
-    };
-
-    oper mkNTable1445: Str -> SubstForm => Str; --%
-    oper mkNTable1445 lexem = 
-      let x = Predef.tk 6 lexem in
-    table { 
-      SF Sg Nom => x + "tantal";
-      SF Sg Gen => x + "Tantala";
-      SF Sg Dat => x + "tantalowi";
-      SF Sg Acc => x + "tantal";
-      SF Sg Instr => x + "tantalem";
-      SF Sg Loc => x + "tantalu";
-      SF Sg Voc => x + "tantalu";
-      SF Pl Nom => x + "tantale";
-      SF Pl Gen => x + "tantali";
-      SF Pl Dat => x + "tantalom";
-      SF Pl Acc => x + "tantale";
-      SF Pl Instr => x + "tantalami";
-      SF Pl Loc => x + "tantalach";
-      SF Pl Voc => x + "tantale"
-    };
-
-    oper mkNTable1446: Str -> SubstForm => Str; --%
-    oper mkNTable1446 lexem = 
-      let x = Predef.tk 2 lexem in
-    table { 
-      SF Sg Nom => x + "ka";
-      SF Sg Gen => x + "ki";
-      SF Sg Dat => x + "ce";
-      SF Sg Acc => x + "kę";
-      SF Sg Instr => x + "ką";
-      SF Sg Loc => x + "ce";
-      SF Sg Voc => x + "ko";
-      SF Pl Nom => x + "kowie";
-      SF Pl Gen => x + "ek";
-      SF Pl Dat => x + "kom";
-      SF Pl Acc => x + "ek";
-      SF Pl Instr => x + "kami";
-      SF Pl Loc => x + "kach";
-      SF Pl Voc => x + "kowie"
-    };
-
-    oper mkNTable1447: Str -> SubstForm => Str; --%
-    oper mkNTable1447 lexem = 
-      let x = Predef.tk 2 lexem in
-    table { 
-      SF Sg Nom => x + "to";
-      SF Sg Gen => x + "ty";
-      SF Sg Dat => x + "cie";
-      SF Sg Acc => x + "tę";
-      SF Sg Instr => x + "tą";
-      SF Sg Loc => x + "cie";
-      SF Sg Voc => x + "to";
-      SF Pl Nom => x + "towie";
-      SF Pl Gen => x + "tów";
-      SF Pl Dat => x + "tom";
-      SF Pl Acc => x + "tów";
-      SF Pl Instr => x + "tami";
-      SF Pl Loc => x + "tach";
-      SF Pl Voc => x + "towie"
-    };
-
-    oper mkNTable1448: Str -> SubstForm => Str; --%
-    oper mkNTable1448 lexem = 
-      let x = Predef.tk 3 lexem in
-    table { 
-      SF Sg Nom => x + "ień";
-      SF Sg Gen => x + "nia";
-      SF Sg Dat => x + "niowi";
-      SF Sg Acc => x + "nia";
-      SF Sg Instr => x + "niem";
-      SF Sg Loc => x + "niu";
-      SF Sg Voc => x + "niu";
-      SF Pl Nom => x + "nie";
-      SF Pl Gen => x + "niów";
-      SF Pl Dat => x + "niom";
-      SF Pl Acc => x + "nie";
-      SF Pl Instr => x + "niami";
-      SF Pl Loc => x + "niach";
-      SF Pl Voc => x + "nie"
-    };
-
-    oper mkNTable1449: Str -> SubstForm => Str; --%
-    oper mkNTable1449 lexem = 
-      let x = Predef.tk 2 lexem in
-    table { 
-      SF Sg Nom => x + "ba";
-      SF Sg Gen => x + "by";
-      SF Sg Dat => x + "bie";
-      SF Sg Acc => x + "bę";
-      SF Sg Instr => x + "bą";
-      SF Sg Loc => x + "bie";
-      SF Sg Voc => x + "bo";
-      SF Pl Nom => x + "by";
-      SF Pl Gen => x + "eb";
-      SF Pl Dat => x + "bom";
-      SF Pl Acc => x + "by";
-      SF Pl Instr => x + "bami";
-      SF Pl Loc => x + "bach";
-      SF Pl Voc => x + "by"
-    };
-
-    oper mkNTable1450: Str -> SubstForm => Str; --%
-    oper mkNTable1450 lexem = 
-      let x = Predef.tk 2 lexem in
-    table { 
-      SF Sg Nom => x + "eń";
-      SF Sg Gen => x + "nia";
-      SF Sg Dat => x + "niowi";
-      SF Sg Acc => x + "nia";
-      SF Sg Instr => x + "niem";
-      SF Sg Loc => x + "niu";
-      SF Sg Voc => x + "niu";
-      SF Pl Nom => x + "nie";
-      SF Pl Gen => x + "ni";
-      SF Pl Dat => x + "niom";
-      SF Pl Acc => x + "nie";
-      SF Pl Instr => x + "niami";
-      SF Pl Loc => x + "niach";
-      SF Pl Voc => x + "nie"
-    };
-
-    oper mkNTable1451: Str -> SubstForm => Str; --%
-    oper mkNTable1451 lexem = 
-      let x = Predef.tk 6 lexem in
-    table { 
-      SF Sg Nom => x + "Trześń";
-      SF Sg Gen => x + "trześni";
-      SF Sg Dat => x + "trześni";
-      SF Sg Acc => x + "Trześń";
-      SF Sg Instr => x + "trześnią";
-      SF Sg Loc => x + "trześni";
-      SF Sg Voc => x + "trześni";
-      SF Pl Nom => x + "trześnie";
-      SF Pl Gen => x + "trześni";
-      SF Pl Dat => x + "trześniom";
-      SF Pl Acc => x + "trześnie";
-      SF Pl Instr => x + "trześniami";
-      SF Pl Loc => x + "trześniach";
-      SF Pl Voc => x + "trześnie"
-    };
-
-    oper mkNTable1452: Str -> SubstForm => Str; --%
-    oper mkNTable1452 lexem = 
-      let x = Predef.tk 3 lexem in
-    table { 
-      SF Sg Nom => x + "ele";
-      SF Sg Gen => x + "ela";
-      SF Sg Dat => x + "elu";
-      SF Sg Acc => x + "ele";
-      SF Sg Instr => x + "elem";
-      SF Sg Loc => x + "elu";
-      SF Sg Voc => x + "ele";
-      SF Pl Nom => x + "oła";
-      SF Pl Gen => x + "ół";
-      SF Pl Dat => x + "ołom";
-      SF Pl Acc => x + "oła";
-      SF Pl Instr => x + "ołami";
-      SF Pl Loc => x + "ołach";
-      SF Pl Voc => x + "oła"
-    };
-
-    oper mkNTable1453: Str -> SubstForm => Str; --%
-    oper mkNTable1453 lexem = 
-      let x = Predef.tk 1 lexem in
-    table { 
-      SF Sg Nom => x + "ń";
-      SF Sg Gen => x + "nia";
-      SF Sg Dat => x + "niowi";
-      SF Sg Acc => x + "nia";
-      SF Sg Instr => x + "niem";
-      SF Sg Loc => x + "niu";
-      SF Sg Voc => x + "niu";
-      SF Pl Nom => x + "nie";
-      SF Pl Gen => x + "niów";
-      SF Pl Dat => x + "niom";
-      SF Pl Acc => x + "nie";
-      SF Pl Instr => x + "niami";
-      SF Pl Loc => x + "niach";
-      SF Pl Voc => x + "nie"
-    };
-
-    oper mkNTable1454: Str -> SubstForm => Str; --%
-    oper mkNTable1454 lexem = 
-      let x = Predef.tk 5 lexem in
-    table { 
-      SF Sg Nom => x + "dzień";
-      SF Sg Gen => x + "godnia";
-      SF Sg Dat => x + "godniowi";
-      SF Sg Acc => x + "dzień";
-      SF Sg Instr => x + "godniem";
-      SF Sg Loc => x + "godniu";
-      SF Sg Voc => x + "godniu";
-      SF Pl Nom => x + "godnie";
-      SF Pl Gen => x + "godni";
-      SF Pl Dat => x + "godniom";
-      SF Pl Acc => x + "godnie";
-      SF Pl Instr => x + "godniami";
-      SF Pl Loc => x + "godniach";
-      SF Pl Voc => x + "godnie"
-    };
-
-    oper mkNTable1455: Str -> SubstForm => Str; --%
-    oper mkNTable1455 lexem = 
-      let x = Predef.tk 2 lexem in
-    table { 
-      SF Sg Nom => x + "ąc";
-      SF Sg Gen => x + "ąca";
-      SF Sg Dat => x + "ącowi";
-      SF Sg Acc => x + "ąca";
-      SF Sg Instr => x + "ącem";
-      SF Sg Loc => x + "ącu";
-      SF Sg Voc => x + "ącu";
-      SF Pl Nom => x + "ące";
-      SF Pl Gen => x + "ęcy";
-      SF Pl Dat => x + "ącom";
-      SF Pl Acc => x + "ące";
-      SF Pl Instr => x + "ącami";
-      SF Pl Loc => x + "ącach";
-      SF Pl Voc => x + "ące"
-    };
-
-    oper mkNTable1456: Str -> SubstForm => Str; --%
-    oper mkNTable1456 lexem = 
-      let x = Predef.tk 3 lexem in
-    table { 
-      SF Sg Nom => x + "cho";
-      SF Sg Gen => x + "cha";
-      SF Sg Dat => x + "chu";
-      SF Sg Acc => x + "cho";
-      SF Sg Instr => x + "chem";
-      SF Sg Loc => x + "chu";
-      SF Sg Voc => x + "cho";
-      SF Pl Nom => x + "szy";
-      SF Pl Gen => x + "szów";
-      SF Pl Dat => x + "szom";
-      SF Pl Acc => x + "szy";
-      SF Pl Instr => x + "szyma";
-      SF Pl Loc => x + "szach";
-      SF Pl Voc => x + "szy"
-    };
-
-    oper mkNTable1457: Str -> SubstForm => Str; --%
-    oper mkNTable1457 lexem = 
-      let x = Predef.tk 2 lexem in
-    table { 
-      SF Sg Nom => x + "eń";
-      SF Sg Gen => x + "nia";
-      SF Sg Dat => x + "niowi";
-      SF Sg Acc => x + "nia";
-      SF Sg Instr => x + "niem";
-      SF Sg Loc => x + "niu";
-      SF Sg Voc => x + "niu";
-      SF Pl Nom => x + "niowie";
-      SF Pl Gen => x + "niów";
-      SF Pl Dat => x + "niom";
-      SF Pl Acc => x + "niów";
-      SF Pl Instr => x + "niami";
-      SF Pl Loc => x + "niach";
-      SF Pl Voc => x + "niowie"
-    };
-
-    oper mkNTable1458: Str -> SubstForm => Str; --%
-    oper mkNTable1458 lexem = 
-      let x = Predef.tk 6 lexem in
-    table { 
-      SF Sg Nom => x + "Ulster";
-      SF Sg Gen => x + "Ulsteru";
-      SF Sg Dat => x + "ulstrowi";
-      SF Sg Acc => x + "Ulster";
-      SF Sg Instr => x + "ulstrem";
-      SF Sg Loc => x + "ulstrze";
-      SF Sg Voc => x + "ulstrze";
-      SF Pl Nom => x + "ulstry";
-      SF Pl Gen => x + "ulstrów";
-      SF Pl Dat => x + "ulstrom";
-      SF Pl Acc => x + "ulstry";
-      SF Pl Instr => x + "ulstrami";
-      SF Pl Loc => x + "ulstrach";
-      SF Pl Voc => x + "ulstry"
-    };
-
-    oper mkNTable1459: Str -> SubstForm => Str; --%
-    oper mkNTable1459 lexem = 
-      let x = Predef.tk 2 lexem in
-    table { 
-      SF Sg Nom => x + "ąż";
-      SF Sg Gen => x + "ęży";
-      SF Sg Dat => x + "ęży";
-      SF Sg Acc => x + "ąż";
-      SF Sg Instr => x + "ężą";
-      SF Sg Loc => x + "ęży";
-      SF Sg Voc => x + "ęży";
-      SF Pl Nom => x + "ęże";
-      SF Pl Gen => x + "ęży";
-      SF Pl Dat => x + "ężom";
-      SF Pl Acc => x + "ęże";
-      SF Pl Instr => x + "ężami";
-      SF Pl Loc => x + "ężach";
-      SF Pl Voc => x + "ęże"
-    };
-
-    oper mkNTable1460: Str -> SubstForm => Str; --%
-    oper mkNTable1460 lexem = 
-      let x = Predef.tk 2 lexem in
-    table { 
-      SF Sg Nom => x + "eć";
-      SF Sg Gen => x + "cia";
-      SF Sg Dat => x + "ciowi";
-      SF Sg Acc => x + "cia";
-      SF Sg Instr => x + "ciem";
-      SF Sg Loc => x + "ciu";
-      SF Sg Voc => x + "ciu";
-      SF Pl Nom => x + "cie";
-      SF Pl Gen => x + "ciów";
-      SF Pl Dat => x + "ciom";
-      SF Pl Acc => x + "ciów";
-      SF Pl Instr => x + "ciami";
-      SF Pl Loc => x + "ciach";
-      SF Pl Voc => x + "cie"
-    };
-
-    oper mkNTable1461: Str -> SubstForm => Str; --%
-    oper mkNTable1461 lexem = 
-      let x = Predef.tk 1 lexem in
-    table { 
-      SF Sg Nom => x + "o";
-      SF Sg Gen => x + "a";
-      SF Sg Dat => x + "u";
-      SF Sg Acc => x + "o";
-      SF Sg Instr => x + "em";
-      SF Sg Loc => x + "o";
-      SF Sg Voc => x + "o";
-      SF Pl Nom => x + "a";
-      SF Pl Gen => x + "ów";
-      SF Pl Dat => x + "om";
-      SF Pl Acc => x + "a";
-      SF Pl Instr => x + "ami";
-      SF Pl Loc => x + "ach";
-      SF Pl Voc => x + "a"
-    };
-
-    oper mkNTable1462: Str -> SubstForm => Str; --%
-    oper mkNTable1462 lexem = 
-      let x = Predef.tk 5 lexem in
-    table { 
-      SF Sg Nom => x + "Wacha";
-      SF Sg Gen => x + "Wachy";
-      SF Sg Dat => x + "Wasze";
-      SF Sg Acc => x + "Wachę";
-      SF Sg Instr => x + "Wachą";
-      SF Sg Loc => x + "Wasze";
-      SF Sg Voc => x + "Wacho";
-      SF Pl Nom => x + "Wachy";
-      SF Pl Gen => x + "wach";
-      SF Pl Dat => x + "Wachom";
-      SF Pl Acc => x + "Wachy";
-      SF Pl Instr => x + "Wachami";
-      SF Pl Loc => x + "Wachach";
-      SF Pl Voc => x + "Wachy"
-    };
-
-    oper mkNTable1463: Str -> SubstForm => Str; --%
-    oper mkNTable1463 lexem = 
-      let x = Predef.tk 1 lexem in
-    table { 
-      SF Sg Nom => x + "o";
-      SF Sg Gen => x + "a";
-      SF Sg Dat => x + "u";
-      SF Sg Acc => x + "o";
-      SF Sg Instr => x + "em";
-      SF Sg Loc => x + "ie";
-      SF Sg Voc => x + "o";
-      SF Pl Nom => x + "a";
-      SF Pl Gen => x + "ów";
-      SF Pl Dat => x + "om";
-      SF Pl Acc => x + "a";
-      SF Pl Instr => x + "ami";
-      SF Pl Loc => x + "ach";
-      SF Pl Voc => x + "a"
-    };
-
-    oper mkNTable1464: Str -> SubstForm => Str; --%
-    oper mkNTable1464 lexem = 
-      let x = Predef.tk 1 lexem in
-    table { 
-      SF Sg Nom => x + "ć";
-      SF Sg Gen => x + "ci";
-      SF Sg Dat => x + "ci";
-      SF Sg Acc => x + "ci";
-      SF Sg Instr => x + "cią";
-      SF Sg Loc => x + "ci";
-      SF Sg Voc => x + "ci";
-      SF Pl Nom => x + "ciowie";
-      SF Pl Gen => x + "ciów";
-      SF Pl Dat => x + "ciom";
-      SF Pl Acc => x + "ciów";
-      SF Pl Instr => x + "ciami";
-      SF Pl Loc => x + "ciach";
-      SF Pl Voc => x + "ciowie"
-    };
-
-    oper mkNTable1465: Str -> SubstForm => Str; --%
-    oper mkNTable1465 lexem = 
-      let x = Predef.tk 3 lexem in
-    table { 
-      SF Sg Nom => x + "esz";
-      SF Sg Gen => x + "szy";
-      SF Sg Dat => x + "szy";
-      SF Sg Acc => x + "esz";
-      SF Sg Instr => x + "szą";
-      SF Sg Loc => x + "szy";
-      SF Sg Voc => x + "szy";
-      SF Pl Nom => x + "szy";
-      SF Pl Gen => x + "szy";
-      SF Pl Dat => x + "szom";
-      SF Pl Acc => x + "szy";
-      SF Pl Instr => x + "szami";
-      SF Pl Loc => x + "szach";
-      SF Pl Voc => x + "szy"
-    };
-
-    oper mkNTable1469: Str -> SubstForm => Str; --%
-    oper mkNTable1469 lexem = 
-      let x = Predef.tk 1 lexem in
-    table { 
-      SF Sg Nom => x + "y";
-      SF Sg Gen => x + "ego";
-      SF Sg Dat => x + "emu";
-      SF Sg Acc => x + "ego";
-      SF Sg Instr => x + "ym";
-      SF Sg Loc => x + "ym";
-      SF Sg Voc => x + "y";
-      SF Pl Nom => x + "zy";
-      SF Pl Gen => x + "ych";
-      SF Pl Dat => x + "ym";
-      SF Pl Acc => x + "ych";
-      SF Pl Instr => x + "ymi";
-      SF Pl Loc => x + "ych";
-      SF Pl Voc => x + "zy"
-    };
-
-    oper mkNTable1470: Str -> SubstForm => Str; --%
-    oper mkNTable1470 lexem = 
-      let x = lexem in
-    table { 
-      SF Sg Nom => x + "a";
-      SF Sg Gen => x + "";
-      SF Sg Dat => x + "";
-      SF Sg Acc => x + "ę";
-      SF Sg Instr => x + "ą";
-      SF Sg Loc => x + "";
-      SF Sg Voc => x + "o";
-      SF Pl Nom => x + "";
-      SF Pl Gen => x + "";
-      SF Pl Dat => x + "om";
-      SF Pl Acc => x + "";
-      SF Pl Instr => x + "ami";
-      SF Pl Loc => x + "ach";
-      SF Pl Voc => x + ""
-    };
-
-    oper mkNTable1471: Str -> SubstForm => Str; --%
-    oper mkNTable1471 lexem = 
-      let x = Predef.tk 4 lexem in
-    table { 
-      SF Sg Nom => x + "zień";
-      SF Sg Gen => x + "źnia";
-      SF Sg Dat => x + "źniowi";
-      SF Sg Acc => x + "źnia";
-      SF Sg Instr => x + "źniem";
-      SF Sg Loc => x + "źniu";
-      SF Sg Voc => x + "źniu";
-      SF Pl Nom => x + "źniowie";
-      SF Pl Gen => x + "źniów";
-      SF Pl Dat => x + "źniom";
-      SF Pl Acc => x + "źniów";
-      SF Pl Instr => x + "źniami";
-      SF Pl Loc => x + "źniach";
-      SF Pl Voc => x + "źniowie"
-    };
-
-    oper mkNTable1473: Str -> SubstForm => Str; --%
-    oper mkNTable1473 lexem = 
-      let x = Predef.tk 4 lexem in
-    table { 
-      SF Sg Nom => x + "sień";
-      SF Sg Gen => x + "śnia";
-      SF Sg Dat => x + "śniowi";
-      SF Sg Acc => x + "sień";
-      SF Sg Instr => x + "śniem";
-      SF Sg Loc => x + "śniu";
-      SF Sg Voc => x + "śniu";
-      SF Pl Nom => x + "śnie";
-      SF Pl Gen => x + "śniów";
-      SF Pl Dat => x + "śniom";
-      SF Pl Acc => x + "śnie";
-      SF Pl Instr => x + "śniami";
-      SF Pl Loc => x + "śniach";
-      SF Pl Voc => x + "śnie"
-    };
-
-    oper mkNTable1474: Str -> SubstForm => Str; --%
-    oper mkNTable1474 lexem = 
-      let x = Predef.tk 2 lexem in
-    table { 
-      SF Sg Nom => x + "at";
-      SF Sg Gen => x + "ata";
-      SF Sg Dat => x + "atowi";
-      SF Sg Acc => x + "at";
-      SF Sg Instr => x + "atem";
-      SF Sg Loc => x + "ecie";
-      SF Sg Voc => x + "ecie";
-      SF Pl Nom => x + "aty";
-      SF Pl Gen => x + "atów";
-      SF Pl Dat => x + "atom";
-      SF Pl Acc => x + "aty";
-      SF Pl Instr => x + "atami";
-      SF Pl Loc => x + "atach";
-      SF Pl Voc => x + "aty"
-    };
-
-    oper mkNTable1475: Str -> SubstForm => Str; --%
-    oper mkNTable1475 lexem = 
-      let x = Predef.tk 8 lexem in
-    table { 
-      SF Sg Nom => x + "wyrostek";
-      SF Sg Gen => x + "wyrostka";
-      SF Sg Dat => x + "wyrostkowi";
-      SF Sg Acc => x + "wyrostka";
-      SF Sg Instr => x + "wyrostkiem";
-      SF Sg Loc => x + "wyrostku";
-      SF Sg Voc => x + "wyrostku";
-      SF Pl Nom => x + "Wyrostkowie";
-      SF Pl Gen => x + "wyrostków";
-      SF Pl Dat => x + "wyrostkom";
-      SF Pl Acc => x + "wyrostków";
-      SF Pl Instr => x + "wyrostkami";
-      SF Pl Loc => x + "wyrostkach";
-      SF Pl Voc => x + "Wyrostkowie"
-    };
-
-    oper mkNTable1476: Str -> SubstForm => Str; --%
-    oper mkNTable1476 lexem = 
-      let x = Predef.tk 2 lexem in
-    table { 
-      SF Sg Nom => x + "eł";
-      SF Sg Gen => x + "ła";
-      SF Sg Dat => x + "łowi";
-      SF Sg Acc => x + "ła";
-      SF Sg Instr => x + "łem";
-      SF Sg Loc => x + "le";
-      SF Sg Voc => x + "le";
-      SF Pl Nom => x + "ły";
-      SF Pl Gen => x + "łów";
-      SF Pl Dat => x + "łom";
-      SF Pl Acc => x + "ły";
-      SF Pl Instr => x + "łami";
-      SF Pl Loc => x + "łach";
-      SF Pl Voc => x + "ły"
-    };
-
-    oper mkNTable1477: Str -> SubstForm => Str; --%
-    oper mkNTable1477 lexem = 
-      let x = Predef.tk 2 lexem in
-    table { 
-      SF Sg Nom => x + "ąż";
-      SF Sg Gen => x + "ęża";
-      SF Sg Dat => x + "ężowi";
-      SF Sg Acc => x + "ęża";
-      SF Sg Instr => x + "ężem";
-      SF Sg Loc => x + "ężu";
-      SF Sg Voc => x + "ężu";
-      SF Pl Nom => x + "ęże";
-      SF Pl Gen => x + "ężów";
-      SF Pl Dat => x + "ężom";
-      SF Pl Acc => x + "ęże";
-      SF Pl Instr => x + "ężami";
-      SF Pl Loc => x + "ężach";
-      SF Pl Voc => x + "ęże"
-    };
-
-    oper mkNTable1478: Str -> SubstForm => Str; --%
-    oper mkNTable1478 lexem = 
-      let x = Predef.tk 2 lexem in
-    table { 
-      SF Sg Nom => x + "ąż";
-      SF Sg Gen => x + "ęża";
-      SF Sg Dat => x + "ężowi";
-      SF Sg Acc => x + "ąż";
-      SF Sg Instr => x + "ężem";
-      SF Sg Loc => x + "ężu";
-      SF Sg Voc => x + "ężu";
-      SF Pl Nom => x + "ęże";
-      SF Pl Gen => x + "ężów";
-      SF Pl Dat => x + "ężom";
-      SF Pl Acc => x + "ęże";
-      SF Pl Instr => x + "ężami";
-      SF Pl Loc => x + "ężach";
-      SF Pl Voc => x + "ęże"
-    };
-
-    oper mkNTable1479: Str -> SubstForm => Str; --%
-    oper mkNTable1479 lexem = 
-      let x = Predef.tk 4 lexem in
-    table { 
-      SF Sg Nom => x + "sień";
-      SF Sg Gen => x + "śnia";
-      SF Sg Dat => x + "śniowi";
-      SF Sg Acc => x + "śnia";
-      SF Sg Instr => x + "śniem";
-      SF Sg Loc => x + "śniu";
-      SF Sg Voc => x + "śniu";
-      SF Pl Nom => x + "śnie";
-      SF Pl Gen => x + "śni";
-      SF Pl Dat => x + "śniom";
-      SF Pl Acc => x + "śnie";
-      SF Pl Instr => x + "śniami";
-      SF Pl Loc => x + "śniach";
-      SF Pl Voc => x + "śnie"
-    };
-
-    oper mkNTable1480: Str -> SubstForm => Str; --%
-    oper mkNTable1480 lexem = 
-      let x = Predef.tk 3 lexem in
-    table { 
-      SF Sg Nom => x + "ódz";
-      SF Sg Gen => x + "odza";
-      SF Sg Dat => x + "odzowi";
-      SF Sg Acc => x + "odza";
-      SF Sg Instr => x + "odzem";
-      SF Sg Loc => x + "odzu";
-      SF Sg Voc => x + "odzu";
-      SF Pl Nom => x + "odzowie";
-      SF Pl Gen => x + "odzów";
-      SF Pl Dat => x + "odzom";
-      SF Pl Acc => x + "odzów";
-      SF Pl Instr => x + "odzami";
-      SF Pl Loc => x + "odzach";
-      SF Pl Voc => x + "odzowie"
-    };
-
-    oper mkNTable1481: Str -> SubstForm => Str; --%
-    oper mkNTable1481 lexem = 
-      let x = Predef.tk 3 lexem in
-    table { 
-      SF Sg Nom => x + "oże";
-      SF Sg Gen => x + "oża";
-      SF Sg Dat => x + "ożu";
-      SF Sg Acc => x + "oże";
-      SF Sg Instr => x + "ożem";
-      SF Sg Loc => x + "ożu";
-      SF Sg Voc => x + "oże";
-      SF Pl Nom => x + "oża";
-      SF Pl Gen => x + "óż";
-      SF Pl Dat => x + "ożom";
-      SF Pl Acc => x + "oża";
-      SF Pl Instr => x + "ożami";
-      SF Pl Loc => x + "ożach";
-      SF Pl Voc => x + "oża"
-    };
-
-    oper mkNTable1482: Str -> SubstForm => Str; --%
-    oper mkNTable1482 lexem = 
-      let x = Predef.tk 3 lexem in
-    table { 
-      SF Sg Nom => x + "oja";
-      SF Sg Gen => x + "oi";
-      SF Sg Dat => x + "oi";
-      SF Sg Acc => x + "oję";
-      SF Sg Instr => x + "oją";
-      SF Sg Loc => x + "oi";
-      SF Sg Voc => x + "ojo";
-      SF Pl Nom => x + "oje";
-      SF Pl Gen => x + "ój";
-      SF Pl Dat => x + "ojom";
-      SF Pl Acc => x + "oje";
-      SF Pl Instr => x + "ojami";
-      SF Pl Loc => x + "ojach";
-      SF Pl Voc => x + "oje"
-    };
-
-    oper mkNTable1483: Str -> SubstForm => Str; --%
-    oper mkNTable1483 lexem = 
-      let x = Predef.tk 5 lexem in
-    table { 
-      SF Sg Nom => x + "zefir";
-      SF Sg Gen => x + "Zefira";
-      SF Sg Dat => x + "zefirowi";
-      SF Sg Acc => x + "Zefira";
-      SF Sg Instr => x + "zefirem";
-      SF Sg Loc => x + "zefirze";
-      SF Sg Voc => x + "zefirze";
-      SF Pl Nom => x + "zefiry";
-      SF Pl Gen => x + "zefirów";
-      SF Pl Dat => x + "zefirom";
-      SF Pl Acc => x + "zefiry";
-      SF Pl Instr => x + "zefirami";
-      SF Pl Loc => x + "zefirach";
-      SF Pl Voc => x + "zefiry"
-    };
-
-    oper mkNTable1485: Str -> SubstForm => Str; --%
-    oper mkNTable1485 lexem = 
-      let x = Predef.tk 3 lexem in
-    table { 
-      SF Sg Nom => x + "zet";
-      SF Sg Gen => x + "zeta";
-      SF Sg Dat => x + "zetowi";
-      SF Sg Acc => x + "zeta";
-      SF Sg Instr => x + "zetem";
-      SF Sg Loc => x + "zecie";
-      SF Sg Voc => x + "zecie";
-      SF Pl Nom => x + "Zetowie";
-      SF Pl Gen => x + "zetów";
-      SF Pl Dat => x + "zetom";
-      SF Pl Acc => x + "zetów";
-      SF Pl Instr => x + "zetami";
-      SF Pl Loc => x + "zetach";
-      SF Pl Voc => x + "Zetowie"
-    };
-
-    oper mkNTable1487: Str -> SubstForm => Str; --%
-    oper mkNTable1487 lexem = 
-      let x = Predef.tk 4 lexem in
-    table { 
-      SF Sg Nom => x + "orza";
-      SF Sg Gen => x + "orzy";
-      SF Sg Dat => x + "orzy";
-      SF Sg Acc => x + "orzę";
-      SF Sg Instr => x + "orzą";
-      SF Sg Loc => x + "orzy";
-      SF Sg Voc => x + "orzo";
-      SF Pl Nom => x + "orze";
-      SF Pl Gen => x + "órz";
-      SF Pl Dat => x + "orzom";
-      SF Pl Acc => x + "orze";
-      SF Pl Instr => x + "orzami";
-      SF Pl Loc => x + "orzach";
-      SF Pl Voc => x + "orze"
-    };
-
-    oper mkNTable1488: Str -> SubstForm => Str; --%
-    oper mkNTable1488 lexem = 
-      let x = Predef.tk 2 lexem in
-    table { 
-      SF Sg Nom => x + "ło";
-      SF Sg Gen => x + "ła";
-      SF Sg Dat => x + "łu";
-      SF Sg Acc => x + "ło";
-      SF Sg Instr => x + "łem";
-      SF Sg Loc => x + "łu";
-      SF Sg Voc => x + "ło";
-      SF Pl Nom => x + "ła";
-      SF Pl Gen => x + "eł";
-      SF Pl Dat => x + "łom";
-      SF Pl Acc => x + "ła";
-      SF Pl Instr => x + "łami";
-      SF Pl Loc => x + "łach";
-      SF Pl Voc => x + "ła"
-    };
-
-    oper mkNTable1489: Str -> SubstForm => Str; --%
-    oper mkNTable1489 lexem = 
-      let x = Predef.tk 2 lexem in
-    table { 
-      SF Sg Nom => x + "ów";
-      SF Sg Gen => x + "owu";
-      SF Sg Dat => x + "owowi";
-      SF Sg Acc => x + "ów";
-      SF Sg Instr => x + "owiem";
-      SF Sg Loc => x + "owiu";
-      SF Sg Voc => x + "owiu";
-      SF Pl Nom => x + "owy";
-      SF Pl Gen => x + "owów";
-      SF Pl Dat => x + "owom";
-      SF Pl Acc => x + "owy";
-      SF Pl Instr => x + "owiami";
-      SF Pl Loc => x + "owiach";
-      SF Pl Voc => x + "owy"
-    };
-
-    oper mkNTable1491: Str -> SubstForm => Str; --%
-    oper mkNTable1491 lexem = 
-      let x = Predef.tk 3 lexem in
-    table { 
-      SF Sg Nom => x + "łoś";
-      SF Sg Gen => x + "łosia";
-      SF Sg Dat => x + "łosiowi";
-      SF Sg Acc => x + "łosia";
-      SF Sg Instr => x + "łosiem";
-      SF Sg Loc => x + "łosiu";
-      SF Sg Voc => x + "łosiu";
-      SF Pl Nom => x + "Łosiowie";
-      SF Pl Gen => x + "Łosiów";
-      SF Pl Dat => x + "łosiom";
-      SF Pl Acc => x + "Łosiów";
-      SF Pl Instr => x + "łosiami";
-      SF Pl Loc => x + "łosiach";
-      SF Pl Voc => x + "Łosiowie"
-    };
-
-    oper mkNTable1494: Str -> SubstForm => Str; --%
-    oper mkNTable1494 lexem = 
-      let x = Predef.tk 5 lexem in
-    table { 
-      SF Sg Nom => x + "śliwa";
-      SF Sg Gen => x + "śliwy";
-      SF Sg Dat => x + "śliwie";
-      SF Sg Acc => x + "śliwę";
-      SF Sg Instr => x + "śliwą";
-      SF Sg Loc => x + "śliwie";
-      SF Sg Voc => x + "śliwo";
-      SF Pl Nom => x + "Śliwowie";
-      SF Pl Gen => x + "Śliwów";
-      SF Pl Dat => x + "śliwom";
-      SF Pl Acc => x + "Śliwów";
-      SF Pl Instr => x + "śliwami";
-      SF Pl Loc => x + "śliwach";
-      SF Pl Voc => x + "Śliwowie"
-    };
-
-    oper mkNTable1495: Str -> SubstForm => Str; --%
-    oper mkNTable1495 lexem = 
-      let x = Predef.tk 7 lexem in
-    table { 
-      SF Sg Nom => x + "świątek";
-      SF Sg Gen => x + "świątka";
-      SF Sg Dat => x + "świątkowi";
-      SF Sg Acc => x + "świątka";
-      SF Sg Instr => x + "świątkiem";
-      SF Sg Loc => x + "świątku";
-      SF Sg Voc => x + "świątku";
-      SF Pl Nom => x + "Świątkowie";
-      SF Pl Gen => x + "świątków";
-      SF Pl Dat => x + "świątkom";
-      SF Pl Acc => x + "świątków";
-      SF Pl Instr => x + "świątkami";
-      SF Pl Loc => x + "świątkach";
-      SF Pl Voc => x + "Świątkowie"
-    };
-
-    oper mkNTable1496: Str -> SubstForm => Str; --%
-    oper mkNTable1496 lexem = 
-      let x = Predef.tk 3 lexem in
-    table { 
-      SF Sg Nom => x + "żak";
-      SF Sg Gen => x + "żaka";
-      SF Sg Dat => x + "żakowi";
-      SF Sg Acc => x + "żaka";
-      SF Sg Instr => x + "żakiem";
-      SF Sg Loc => x + "żaku";
-      SF Sg Voc => x + "żaku";
-      SF Pl Nom => x + "Żakowie";
-      SF Pl Gen => x + "żaków";
-      SF Pl Dat => x + "żakom";
-      SF Pl Acc => x + "żaków";
-      SF Pl Instr => x + "żakami";
-      SF Pl Loc => x + "żakach";
-      SF Pl Voc => x + "Żakowie"
-    };
-
-    oper mkNTable1498: Str -> SubstForm => Str; --%
-    oper mkNTable1498 lexem = 
-      let x = Predef.tk 6 lexem in
-    table { 
-      SF Sg Nom => x + "żegota";
-      SF Sg Gen => x + "żegoty";
-      SF Sg Dat => x + "żegocie";
-      SF Sg Acc => x + "żegotę";
-      SF Sg Instr => x + "żegotą";
-      SF Sg Loc => x + "żegocie";
-      SF Sg Voc => x + "żegoto";
-      SF Pl Nom => x + "Żegotowie";
-      SF Pl Gen => x + "Żegotów";
-      SF Pl Dat => x + "żegotom";
-      SF Pl Acc => x + "Żegotów";
-      SF Pl Instr => x + "żegotami";
-      SF Pl Loc => x + "żegotach";
-      SF Pl Voc => x + "Żegotowie"
-    };
-
-    oper mkNTable1500: Str -> SubstForm => Str; --%
-    oper mkNTable1500 lexem = 
-      let x = Predef.tk 1 lexem in
-    table { 
-      SF Sg Nom => x + "a";
-      SF Sg Gen => x + "a";
-      SF Sg Dat => x + "a";
-      SF Sg Acc => x + "ę";
-      SF Sg Instr => x + "ą";
-      SF Sg Loc => x + "a";
-      SF Sg Voc => x + "o";
-      SF Pl Nom => x + "a";
-      SF Pl Gen => x + "a";
-      SF Pl Dat => x + "a";
-      SF Pl Acc => x + "a";
-      SF Pl Instr => x + "a";
-      SF Pl Loc => x + "ach";
-      SF Pl Voc => x + "a"
-    };
-
-    oper mkNTable1501: Str -> SubstForm => Str; --%
-    oper mkNTable1501 lexem = 
-      let x = Predef.tk 6 lexem in
-    table { 
-      SF Sg Nom => x + "Żukowo";
-      SF Sg Gen => x + "Żukowa";
-      SF Sg Dat => x + "Żukowu";
-      SF Sg Acc => x + "Żukowo";
-      SF Sg Instr => x + "Żukowem";
-      SF Sg Loc => x + "Żukowie";
-      SF Sg Voc => x + "Żukowo";
-      SF Pl Nom => x + "Żukowa";
-      SF Pl Gen => x + "żuków";
-      SF Pl Dat => x + "Żukowom";
-      SF Pl Acc => x + "Żukowa";
-      SF Pl Instr => x + "Żukowami";
-      SF Pl Loc => x + "Żukowach";
-      SF Pl Voc => x + "Żukowa"
-    };
-
-    oper mkNTable1502: Str -> SubstForm => Str; --%
-    oper mkNTable1502 lexem = 
-      let x = Predef.tk 5 lexem in
-    table { 
-      SF Sg Nom => x + "żurek";
-      SF Sg Gen => x + "Żurka";
-      SF Sg Dat => x + "żurkowi";
-      SF Sg Acc => x + "Żurka";
-      SF Sg Instr => x + "żurkiem";
-      SF Sg Loc => x + "żurku";
-      SF Sg Voc => x + "żurku";
-      SF Pl Nom => x + "Żurkowie";
-      SF Pl Gen => x + "żurków";
-      SF Pl Dat => x + "żurkom";
-      SF Pl Acc => x + "żurków";
-      SF Pl Instr => x + "żurkami";
-      SF Pl Loc => x + "żurkach";
-      SF Pl Voc => x + "Żurkowie"
-    };
-
-    oper mkNTable1503: Str -> SubstForm => Str; --%
-    oper mkNTable1503 lexem = 
-      let x = Predef.tk 6 lexem in
-    table { 
-      SF Sg Nom => x + "Żwirko";
-      SF Sg Gen => x + "żwirki";
-      SF Sg Dat => x + "Żwirce";
-      SF Sg Acc => x + "Żwirkę";
-      SF Sg Instr => x + "Żwirką";
-      SF Sg Loc => x + "Żwirce";
-      SF Sg Voc => x + "Żwirko";
-      SF Pl Nom => x + "Żwirkowie";
-      SF Pl Gen => x + "żwirków";
-      SF Pl Dat => x + "żwirkom";
-      SF Pl Acc => x + "żwirków";
-      SF Pl Instr => x + "żwirkami";
-      SF Pl Loc => x + "żwirkach";
-      SF Pl Voc => x + "Żwirkowie"
-    };
-
-    oper mkNTable1504: Str -> SubstForm => Str; --%
-    oper mkNTable1504 lexem = 
-      let x = Predef.tk 5 lexem in
-    table { 
-      SF Sg Nom => x + "żydek";
-      SF Sg Gen => x + "żydka";
-      SF Sg Dat => x + "żydkowi";
-      SF Sg Acc => x + "żydka";
-      SF Sg Instr => x + "żydkiem";
-      SF Sg Loc => x + "żydku";
-      SF Sg Voc => x + "żydku";
-      SF Pl Nom => x + "Żydkowie";
-      SF Pl Gen => x + "żydków";
-      SF Pl Dat => x + "żydkom";
-      SF Pl Acc => x + "żydków";
-      SF Pl Instr => x + "żydkami";
-      SF Pl Loc => x + "żydkach";
-      SF Pl Voc => x + "Żydkowie"
-    };
-
-    oper mkNTable1505: Str -> SubstForm => Str; --%
-    oper mkNTable1505 lexem = 
-      let x = Predef.tk 8 lexem in
-    table { 
-      SF Sg Nom => x + "Łakomiec";
-      SF Sg Gen => x + "łakomca";
-      SF Sg Dat => x + "Łakomcowi";
-      SF Sg Acc => x + "łakomca";
-      SF Sg Instr => x + "Łakomcem";
-      SF Sg Loc => x + "Łakomcu";
-      SF Sg Voc => x + "Łakomcu";
-      SF Pl Nom => x + "łakomcy";
-      SF Pl Gen => x + "łakomców";
-      SF Pl Dat => x + "łakomcom";
-      SF Pl Acc => x + "łakomców";
-      SF Pl Instr => x + "łakomcami";
-      SF Pl Loc => x + "łakomcach";
-      SF Pl Voc => x + "łakomcy"
-    };
-
-    oper mkNTable1506: Str -> SubstForm => Str; --%
-    oper mkNTable1506 lexem = 
-      let x = Predef.tk 5 lexem in
-    table { 
-      SF Sg Nom => x + "łatek";
-      SF Sg Gen => x + "łatka";
-      SF Sg Dat => x + "łatkowi";
-      SF Sg Acc => x + "łatka";
-      SF Sg Instr => x + "łatkiem";
-      SF Sg Loc => x + "łatku";
-      SF Sg Voc => x + "łatku";
-      SF Pl Nom => x + "Łatkowie";
-      SF Pl Gen => x + "łatków";
-      SF Pl Dat => x + "łatkom";
-      SF Pl Acc => x + "łatków";
-      SF Pl Instr => x + "łatkami";
-      SF Pl Loc => x + "łatkach";
-      SF Pl Voc => x + "Łatkowie"
-    };
-
-    oper mkNTable1507: Str -> SubstForm => Str; --%
-    oper mkNTable1507 lexem = 
-      let x = Predef.tk 2 lexem in
-    table { 
-      SF Sg Nom => x + "eb";
-      SF Sg Gen => x + "ba";
-      SF Sg Dat => x + "bu";
-      SF Sg Acc => x + "ba";
-      SF Sg Instr => x + "bem";
-      SF Sg Loc => x + "bie";
-      SF Sg Voc => x + "bie";
-      SF Pl Nom => x + "by";
-      SF Pl Gen => x + "bów";
-      SF Pl Dat => x + "bom";
-      SF Pl Acc => x + "by";
-      SF Pl Instr => x + "bami";
-      SF Pl Loc => x + "bach";
-      SF Pl Voc => x + "by"
-    };
-
-    oper mkNTable1508: Str -> SubstForm => Str; --%
-    oper mkNTable1508 lexem = 
-      let x = Predef.tk 2 lexem in
-    table { 
-      SF Sg Nom => x + "eb";
-      SF Sg Gen => x + "ba";
-      SF Sg Dat => x + "bu";
-      SF Sg Acc => x + "eb";
-      SF Sg Instr => x + "bem";
-      SF Sg Loc => x + "bie";
-      SF Sg Voc => x + "bie";
-      SF Pl Nom => x + "by";
-      SF Pl Gen => x + "bów";
-      SF Pl Dat => x + "bom";
-      SF Pl Acc => x + "by";
-      SF Pl Instr => x + "bami";
-      SF Pl Loc => x + "bach";
-      SF Pl Voc => x + "by"
-    };
-
-    oper mkNTable1509: Str -> SubstForm => Str; --%
-    oper mkNTable1509 lexem = 
-      let x = Predef.tk 5 lexem in
-    table { 
-      SF Sg Nom => x + "łebek";
-      SF Sg Gen => x + "łebka";
-      SF Sg Dat => x + "łebkowi";
-      SF Sg Acc => x + "łebka";
-      SF Sg Instr => x + "łebkiem";
-      SF Sg Loc => x + "łebku";
-      SF Sg Voc => x + "łebku";
-      SF Pl Nom => x + "Łebkowie";
-      SF Pl Gen => x + "łebków";
-      SF Pl Dat => x + "łebkom";
-      SF Pl Acc => x + "łebków";
-      SF Pl Instr => x + "łebkami";
-      SF Pl Loc => x + "łebkach";
-      SF Pl Voc => x + "Łebkowie"
-    };
-
-    oper mkNTable1510: Str -> SubstForm => Str; --%
-    oper mkNTable1510 lexem = 
-      let x = Predef.tk 5 lexem in
-    table { 
-      SF Sg Nom => x + "łepek";
-      SF Sg Gen => x + "łepka";
-      SF Sg Dat => x + "łepkowi";
-      SF Sg Acc => x + "łepka";
-      SF Sg Instr => x + "łepkiem";
-      SF Sg Loc => x + "łepku";
-      SF Sg Voc => x + "łepku";
-      SF Pl Nom => x + "Łepkowie";
-      SF Pl Gen => x + "łepków";
-      SF Pl Dat => x + "łepkom";
-      SF Pl Acc => x + "łepków";
-      SF Pl Instr => x + "łepkami";
-      SF Pl Loc => x + "łepkach";
-      SF Pl Voc => x + "Łepkowie"
-    };
-
-    oper mkNTable1511: Str -> SubstForm => Str; --%
-    oper mkNTable1511 lexem = 
-      let x = Predef.tk 2 lexem in
-    table { 
-      SF Sg Nom => x + "za";
-      SF Sg Gen => x + "zy";
-      SF Sg Dat => x + "zie";
-      SF Sg Acc => x + "zę";
-      SF Sg Instr => x + "zą";
-      SF Sg Loc => x + "zie";
-      SF Sg Voc => x + "zo";
-      SF Pl Nom => x + "zy";
-      SF Pl Gen => x + "ez";
-      SF Pl Dat => x + "zom";
-      SF Pl Acc => x + "zy";
-      SF Pl Instr => x + "zami";
-      SF Pl Loc => x + "zach";
-      SF Pl Voc => x + "zy"
-    };
-
-    oper mkNTable1513: Str -> SubstForm => Str; --%
-    oper mkNTable1513 lexem = 
-      let x = Predef.tk 6 lexem in
-    table { 
-      SF Sg Nom => x + "świtek";
-      SF Sg Gen => x + "Świtku";
-      SF Sg Dat => x + "Świtkowi";
-      SF Sg Acc => x + "świtek";
-      SF Sg Instr => x + "Świtkiem";
-      SF Sg Loc => x + "Świtku";
-      SF Sg Voc => x + "Świtku";
-      SF Pl Nom => x + "świtki";
-      SF Pl Gen => x + "Świtków";
-      SF Pl Dat => x + "świtkom";
-      SF Pl Acc => x + "świtki";
-      SF Pl Instr => x + "świtkami";
-      SF Pl Loc => x + "świtkach";
-      SF Pl Voc => x + "świtki"
-    };
-
-    oper mkNTable1514: Str -> SubstForm => Str; --%
-    oper mkNTable1514 lexem = 
-      let x = Predef.tk 3 lexem in
-    table { 
-      SF Sg Nom => x + "ęto";
-      SF Sg Gen => x + "ęta";
-      SF Sg Dat => x + "ętu";
-      SF Sg Acc => x + "ęto";
-      SF Sg Instr => x + "ętem";
-      SF Sg Loc => x + "ęcie";
-      SF Sg Voc => x + "ęto";
-      SF Pl Nom => x + "ęta";
-      SF Pl Gen => x + "ąt";
-      SF Pl Dat => x + "ętom";
-      SF Pl Acc => x + "ęta";
-      SF Pl Instr => x + "ętami";
-      SF Pl Loc => x + "ętach";
-      SF Pl Voc => x + "ęta"
-    };
-
-    oper mkNTable1515: Str -> SubstForm => Str; --%
-    oper mkNTable1515 lexem = 
-      let x = Predef.tk 3 lexem in
-    table { 
-      SF Sg Nom => x + "źce";
-      SF Sg Gen => x + "źca";
-      SF Sg Dat => x + "źcu";
-      SF Sg Acc => x + "źce";
-      SF Sg Instr => x + "źcem";
-      SF Sg Loc => x + "źcu";
-      SF Sg Voc => x + "źce";
-      SF Pl Nom => x + "źca";
-      SF Pl Gen => x + "ziec";
-      SF Pl Dat => x + "źcom";
-      SF Pl Acc => x + "źca";
-      SF Pl Instr => x + "źcami";
-      SF Pl Loc => x + "źcach";
-      SF Pl Voc => x + "źca"
-    };
-
-    oper mkNTable1516: Str -> SubstForm => Str; --%
-    oper mkNTable1516 lexem = 
-      let x = Predef.tk 3 lexem in
-    table { 
-      SF Sg Nom => x + "ądź";
-      SF Sg Gen => x + "ędzi";
-      SF Sg Dat => x + "ędzi";
-      SF Sg Acc => x + "ądź";
-      SF Sg Instr => x + "ędzią";
-      SF Sg Loc => x + "ędzi";
-      SF Sg Voc => x + "ędzi";
-      SF Pl Nom => x + "ędzie";
-      SF Pl Gen => x + "ędzi";
-      SF Pl Dat => x + "ędziom";
-      SF Pl Acc => x + "ędzie";
-      SF Pl Instr => x + "ędziami";
-      SF Pl Loc => x + "ędziach";
-      SF Pl Voc => x + "ędzie"
-    };
-
-    oper mkNTable1517: Str -> SubstForm => Str; --%
-    oper mkNTable1517 lexem = 
-      let x = Predef.tk 3 lexem in
-    table { 
-      SF Sg Nom => x + "ądź";
-      SF Sg Gen => x + "ędzia";
-      SF Sg Dat => x + "ędziowi";
-      SF Sg Acc => x + "ędzia";
-      SF Sg Instr => x + "ędziem";
-      SF Sg Loc => x + "ędziu";
-      SF Sg Voc => x + "ędziu";
-      SF Pl Nom => x + "ędzie";
-      SF Pl Gen => x + "ędzi";
-      SF Pl Dat => x + "ędziom";
-      SF Pl Acc => x + "ędzie";
-      SF Pl Instr => x + "ędziami";
-      SF Pl Loc => x + "ędziach";
-      SF Pl Voc => x + "ędzie"
-    };
-
-    oper mkNTable1518: Str -> SubstForm => Str; --%
-    oper mkNTable1518 lexem = 
-      let x = Predef.tk 3 lexem in
-    table { 
-      SF Sg Nom => x + "ądź";
-      SF Sg Gen => x + "ędzia";
-      SF Sg Dat => x + "ędziowi";
-      SF Sg Acc => x + "ądź";
-      SF Sg Instr => x + "ędziem";
-      SF Sg Loc => x + "ędziu";
-      SF Sg Voc => x + "ędziu";
-      SF Pl Nom => x + "ędzie";
-      SF Pl Gen => x + "ędzi";
-      SF Pl Dat => x + "ędziom";
-      SF Pl Acc => x + "ędzie";
-      SF Pl Instr => x + "ędziami";
-      SF Pl Loc => x + "ędziach";
-      SF Pl Voc => x + "ędzie"
-    };
-
-    oper mkNTable1519: Str -> SubstForm => Str; --%
-    oper mkNTable1519 lexem = 
-      let x = Predef.tk 6 lexem in
-    table { 
-      SF Sg Nom => x + "żółtek";
-      SF Sg Gen => x + "żółtka";
-      SF Sg Dat => x + "żółtkowi";
-      SF Sg Acc => x + "żółtka";
-      SF Sg Instr => x + "żółtkiem";
-      SF Sg Loc => x + "żółtku";
-      SF Sg Voc => x + "żółtku";
-      SF Pl Nom => x + "Żółtkowie";
-      SF Pl Gen => x + "żółtków";
-      SF Pl Dat => x + "żółtkom";
-      SF Pl Acc => x + "żółtków";
-      SF Pl Instr => x + "żółtkami";
-      SF Pl Loc => x + "żółtkach";
-      SF Pl Voc => x + "Żółtkowie"
-    };
-
-    oper mkNTable1520: Str -> SubstForm => Str; --%
-    oper mkNTable1520 lexem = 
-      let x = Predef.tk 3 lexem in
-    table { 
-      SF Sg Nom => x + "ćma";
-      SF Sg Gen => x + "ćmy";
-      SF Sg Dat => x + "ćmie";
-      SF Sg Acc => x + "ćmę";
-      SF Sg Instr => x + "ćmą";
-      SF Sg Loc => x + "ćmie";
-      SF Sg Voc => x + "ćmo";
-      SF Pl Nom => x + "ćmy";
-      SF Pl Gen => x + "ciem";
-      SF Pl Dat => x + "ćmom";
-      SF Pl Acc => x + "ćmy";
-      SF Pl Instr => x + "ćmami";
-      SF Pl Loc => x + "ćmach";
-      SF Pl Voc => x + "ćmy"
-    };
-
-    oper mkNTable1521: Str -> SubstForm => Str; --%
-    oper mkNTable1521 lexem = 
-      let x = Predef.tk 4 lexem in
-    table { 
-      SF Sg Nom => x + "ćwik";
-      SF Sg Gen => x + "ćwika";
-      SF Sg Dat => x + "ćwikowi";
-      SF Sg Acc => x + "ćwika";
-      SF Sg Instr => x + "ćwikiem";
-      SF Sg Loc => x + "ćwiku";
-      SF Sg Voc => x + "ćwiku";
-      SF Pl Nom => x + "Ćwikowie";
-      SF Pl Gen => x + "ćwików";
-      SF Pl Dat => x + "ćwikom";
-      SF Pl Acc => x + "ćwików";
-      SF Pl Instr => x + "ćwikami";
-      SF Pl Loc => x + "ćwikach";
-      SF Pl Voc => x + "Ćwikowie"
-    };
-
-    oper mkNTable0005: Str -> SubstForm => Str; --%
-    oper mkNTable0005 lexem = 
-      let x = Predef.tk 0 lexem in
-    table { 
-      SF Sg Nom => x + "";
-      SF Sg Gen => x + "a";
-      SF Sg Dat => x + "owi";
-      SF Sg Acc => x + "a";
-      SF Sg Instr => x + "em";
-      SF Sg Loc => x + "u";
-      SF Sg Voc => x + "u";
-      SF Pl Nom => [];
-      SF Pl Gen => [];
-      SF Pl Dat => [];
-      SF Pl Acc => [];
-      SF Pl Instr => [];
-      SF Pl Loc => [];
-      SF Pl Voc => []
-    };
-
-    oper mkNTable0014: Str -> SubstForm => Str; --%
-    oper mkNTable0014 lexem = 
-      let x = Predef.tk 2 lexem in
-    table { 
-      SF Sg Nom => x + "ów";
-      SF Sg Gen => x + "owa";
-      SF Sg Dat => x + "owu";
-      SF Sg Acc => x + "ów";
-      SF Sg Instr => x + "owem";
-      SF Sg Loc => x + "owie";
-      SF Sg Voc => x + "owie";
-      SF Pl Nom => [];
-      SF Pl Gen => [];
-      SF Pl Dat => [];
-      SF Pl Acc => [];
-      SF Pl Instr => [];
-      SF Pl Loc => [];
-      SF Pl Voc => []
-    };
-
-    oper mkNTable0019: Str -> SubstForm => Str; --%
-    oper mkNTable0019 lexem = 
-      let x = Predef.tk 0 lexem in
-    table { 
-      SF Sg Nom => x + "";
-      SF Sg Gen => x + "u";
-      SF Sg Dat => x + "owi";
-      SF Sg Acc => x + "";
-      SF Sg Instr => x + "iem";
-      SF Sg Loc => x + "u";
-      SF Sg Voc => x + "u";
-      SF Pl Nom => [];
-      SF Pl Gen => [];
-      SF Pl Dat => [];
-      SF Pl Acc => [];
-      SF Pl Instr => [];
-      SF Pl Loc => [];
-      SF Pl Voc => []
-    };
-
-    oper mkNTable0020: Str -> SubstForm => Str; --%
-    oper mkNTable0020 lexem = 
-      let x = Predef.tk 0 lexem in
-    table { 
-      SF Sg Nom => x + "";
-      SF Sg Gen => x + "u";
-      SF Sg Dat => x + "owi";
-      SF Sg Acc => x + "";
-      SF Sg Instr => x + "em";
-      SF Sg Loc => x + "ie";
-      SF Sg Voc => x + "ie";
-      SF Pl Nom => [];
-      SF Pl Gen => [];
-      SF Pl Dat => [];
-      SF Pl Acc => [];
-      SF Pl Instr => [];
-      SF Pl Loc => [];
-      SF Pl Voc => []
-    };
-
-    oper mkNTable0027: Str -> SubstForm => Str; --%
-    oper mkNTable0027 lexem = 
-      let x = Predef.tk 0 lexem in
-    table { 
-      SF Sg Nom => x + "";
-      SF Sg Gen => x + "a";
-      SF Sg Dat => x + "owi";
-      SF Sg Acc => x + "a";
-      SF Sg Instr => x + "em";
-      SF Sg Loc => x + "ie";
-      SF Sg Voc => x + "ie";
-      SF Pl Nom => [];
-      SF Pl Gen => [];
-      SF Pl Dat => [];
-      SF Pl Acc => [];
-      SF Pl Instr => [];
-      SF Pl Loc => [];
-      SF Pl Voc => []
-    };
-
-    oper mkNTable0034: Str -> SubstForm => Str; --%
-    oper mkNTable0034 lexem = 
-      let x = Predef.tk 0 lexem in
-    table { 
-      SF Sg Nom => x + "";
-      SF Sg Gen => x + "u";
-      SF Sg Dat => x + "owi";
-      SF Sg Acc => x + "";
-      SF Sg Instr => x + "em";
-      SF Sg Loc => x + "u";
-      SF Sg Voc => x + "u";
-      SF Pl Nom => [];
-      SF Pl Gen => [];
-      SF Pl Dat => [];
-      SF Pl Acc => [];
-      SF Pl Instr => [];
-      SF Pl Loc => [];
-      SF Pl Voc => []
-    };
-
-    oper mkNTable0041: Str -> SubstForm => Str; --%
-    oper mkNTable0041 lexem = 
-      let x = Predef.tk 0 lexem in
-    table { 
-      SF Sg Nom => x + "";
-      SF Sg Gen => x + "a";
-      SF Sg Dat => x + "owi";
-      SF Sg Acc => x + "";
-      SF Sg Instr => x + "em";
-      SF Sg Loc => x + "u";
-      SF Sg Voc => x + "u";
-      SF Pl Nom => [];
-      SF Pl Gen => [];
-      SF Pl Dat => [];
-      SF Pl Acc => [];
-      SF Pl Instr => [];
-      SF Pl Loc => [];
-      SF Pl Voc => []
-    };
-
-    oper mkNTable0048: Str -> SubstForm => Str; --%
-    oper mkNTable0048 lexem = 
-      let x = Predef.tk 0 lexem in
-    table { 
-      SF Sg Nom => x + "";
-      SF Sg Gen => x + "u";
-      SF Sg Dat => x + "owi";
-      SF Sg Acc => x + "";
-      SF Sg Instr => x + "em";
-      SF Sg Loc => x + "ze";
-      SF Sg Voc => x + "ze";
-      SF Pl Nom => [];
-      SF Pl Gen => [];
-      SF Pl Dat => [];
-      SF Pl Acc => [];
-      SF Pl Instr => [];
-      SF Pl Loc => [];
-      SF Pl Voc => []
-    };
-
-    oper mkNTable0053: Str -> SubstForm => Str; --%
-    oper mkNTable0053 lexem = 
-      let x = Predef.tk 0 lexem in
-    table { 
-      SF Sg Nom => x + "";
-      SF Sg Gen => x + "a";
-      SF Sg Dat => x + "owi";
-      SF Sg Acc => x + "a";
-      SF Sg Instr => x + "em";
-      SF Sg Loc => x + "ze";
-      SF Sg Voc => x + "ze";
-      SF Pl Nom => [];
-      SF Pl Gen => [];
-      SF Pl Dat => [];
-      SF Pl Acc => [];
-      SF Pl Instr => [];
-      SF Pl Loc => [];
-      SF Pl Voc => []
-    };
-
-    oper mkNTable0066: Str -> SubstForm => Str; --%
-    oper mkNTable0066 lexem = 
-      let x = Predef.tk 2 lexem in
-    table { 
-      SF Sg Nom => x + "ów";
-      SF Sg Gen => x + "owa";
-      SF Sg Dat => x + "owowi";
-      SF Sg Acc => x + "ów";
-      SF Sg Instr => x + "owem";
-      SF Sg Loc => x + "owie";
-      SF Sg Voc => x + "owie";
-      SF Pl Nom => [];
-      SF Pl Gen => [];
-      SF Pl Dat => [];
-      SF Pl Acc => [];
-      SF Pl Instr => [];
-      SF Pl Loc => [];
-      SF Pl Voc => []
-    };
-
-    oper mkNTable0075: Str -> SubstForm => Str; --%
-    oper mkNTable0075 lexem = 
-      let x = Predef.tk 0 lexem in
-    table { 
-      SF Sg Nom => x + "";
-      SF Sg Gen => x + "a";
-      SF Sg Dat => x + "owi";
-      SF Sg Acc => x + "";
-      SF Sg Instr => x + "em";
-      SF Sg Loc => x + "ie";
-      SF Sg Voc => x + "ie";
-      SF Pl Nom => [];
-      SF Pl Gen => [];
-      SF Pl Dat => [];
-      SF Pl Acc => [];
-      SF Pl Instr => [];
-      SF Pl Loc => [];
-      SF Pl Voc => []
-    };
-
-    oper mkNTable0085: Str -> SubstForm => Str; --%
-    oper mkNTable0085 lexem = 
-      let x = Predef.tk 1 lexem in
-    table { 
-      SF Sg Nom => x + "t";
-      SF Sg Gen => x + "tu";
-      SF Sg Dat => x + "towi";
-      SF Sg Acc => x + "t";
-      SF Sg Instr => x + "tem";
-      SF Sg Loc => x + "cie";
-      SF Sg Voc => x + "cie";
-      SF Pl Nom => [];
-      SF Pl Gen => [];
-      SF Pl Dat => [];
-      SF Pl Acc => [];
-      SF Pl Instr => [];
-      SF Pl Loc => [];
-      SF Pl Voc => []
-    };
-
-    oper mkNTable0086: Str -> SubstForm => Str; --%
-    oper mkNTable0086 lexem = 
-      let x = Predef.tk 0 lexem in
-    table { 
-      SF Sg Nom => x + "";
-      SF Sg Gen => x + "a";
-      SF Sg Dat => x + "owi";
-      SF Sg Acc => x + "";
-      SF Sg Instr => x + "iem";
-      SF Sg Loc => x + "u";
-      SF Sg Voc => x + "u";
-      SF Pl Nom => [];
-      SF Pl Gen => [];
-      SF Pl Dat => [];
-      SF Pl Acc => [];
-      SF Pl Instr => [];
-      SF Pl Loc => [];
-      SF Pl Voc => []
-    };
-
-    oper mkNTable0094: Str -> SubstForm => Str; --%
-    oper mkNTable0094 lexem = 
-      let x = Predef.tk 1 lexem in
-    table { 
-      SF Sg Nom => x + "x";
-      SF Sg Gen => x + "ksa";
-      SF Sg Dat => x + "ksowi";
-      SF Sg Acc => x + "ksa";
-      SF Sg Instr => x + "ksem";
-      SF Sg Loc => x + "ksie";
-      SF Sg Voc => x + "ksie";
-      SF Pl Nom => [];
-      SF Pl Gen => [];
-      SF Pl Dat => [];
-      SF Pl Acc => [];
-      SF Pl Instr => [];
-      SF Pl Loc => [];
-      SF Pl Voc => []
-    };
-
-    oper mkNTable0101: Str -> SubstForm => Str; --%
-    oper mkNTable0101 lexem = 
-      let x = Predef.tk 8 lexem in
-    table { 
-      SF Sg Nom => x + "augustów";
-      SF Sg Gen => x + "Augustowa";
-      SF Sg Dat => x + "Augustowu";
-      SF Sg Acc => x + "augustów";
-      SF Sg Instr => x + "Augustowem";
-      SF Sg Loc => x + "Augustowie";
-      SF Sg Voc => x + "Augustowie";
-      SF Pl Nom => [];
-      SF Pl Gen => [];
-      SF Pl Dat => [];
-      SF Pl Acc => [];
-      SF Pl Instr => [];
-      SF Pl Loc => [];
-      SF Pl Voc => []
-    };
-
-    oper mkNTable0108: Str -> SubstForm => Str; --%
-    oper mkNTable0108 lexem = 
-      let x = Predef.tk 1 lexem in
-    table { 
-      SF Sg Nom => x + "x";
-      SF Sg Gen => x + "ksu";
-      SF Sg Dat => x + "ksowi";
-      SF Sg Acc => x + "x";
-      SF Sg Instr => x + "ksem";
-      SF Sg Loc => x + "ksie";
-      SF Sg Voc => x + "ksie";
-      SF Pl Nom => [];
-      SF Pl Gen => [];
-      SF Pl Dat => [];
-      SF Pl Acc => [];
-      SF Pl Instr => [];
-      SF Pl Loc => [];
-      SF Pl Voc => []
-    };
-
-    oper mkNTable0110: Str -> SubstForm => Str; --%
-    oper mkNTable0110 lexem = 
-      let x = Predef.tk 2 lexem in
-    table { 
-      SF Sg Nom => x + "st";
-      SF Sg Gen => x + "stu";
-      SF Sg Dat => x + "stowi";
-      SF Sg Acc => x + "st";
-      SF Sg Instr => x + "stem";
-      SF Sg Loc => x + "ście";
-      SF Sg Voc => x + "ście";
-      SF Pl Nom => [];
-      SF Pl Gen => [];
-      SF Pl Dat => [];
-      SF Pl Acc => [];
-      SF Pl Instr => [];
-      SF Pl Loc => [];
-      SF Pl Voc => []
-    };
-
-    oper mkNTable0115: Str -> SubstForm => Str; --%
-    oper mkNTable0115 lexem = 
-      let x = Predef.tk 1 lexem in
-    table { 
-      SF Sg Nom => x + "ł";
-      SF Sg Gen => x + "łu";
-      SF Sg Dat => x + "łowi";
-      SF Sg Acc => x + "ł";
-      SF Sg Instr => x + "łem";
-      SF Sg Loc => x + "le";
-      SF Sg Voc => x + "le";
-      SF Pl Nom => [];
-      SF Pl Gen => [];
-      SF Pl Dat => [];
-      SF Pl Acc => [];
-      SF Pl Instr => [];
-      SF Pl Loc => [];
-      SF Pl Voc => []
-    };
-
-    oper mkNTable0130: Str -> SubstForm => Str; --%
-    oper mkNTable0130 lexem = 
-      let x = Predef.tk 6 lexem in
-    table { 
-      SF Sg Nom => x + "bałtów";
-      SF Sg Gen => x + "Bałtowa";
-      SF Sg Dat => x + "Bałtowowi";
-      SF Sg Acc => x + "bałtów";
-      SF Sg Instr => x + "Bałtowem";
-      SF Sg Loc => x + "Bałtowie";
-      SF Sg Voc => x + "Bałtowie";
-      SF Pl Nom => [];
-      SF Pl Gen => [];
-      SF Pl Dat => [];
-      SF Pl Acc => [];
-      SF Pl Instr => [];
-      SF Pl Loc => [];
-      SF Pl Voc => []
-    };
-
-    oper mkNTable0135: Str -> SubstForm => Str; --%
-    oper mkNTable0135 lexem = 
-      let x = Predef.tk 0 lexem in
-    table { 
-      SF Sg Nom => x + "";
-      SF Sg Gen => x + "u";
-      SF Sg Dat => x + "owi";
-      SF Sg Acc => x + "";
-      SF Sg Instr => x + "em";
-      SF Sg Loc => x + "zie";
-      SF Sg Voc => x + "zie";
-      SF Pl Nom => [];
-      SF Pl Gen => [];
-      SF Pl Dat => [];
-      SF Pl Acc => [];
-      SF Pl Instr => [];
-      SF Pl Loc => [];
-      SF Pl Voc => []
-    };
-
-    oper mkNTable0146: Str -> SubstForm => Str; --%
-    oper mkNTable0146 lexem = 
-      let x = Predef.tk 2 lexem in
-    table { 
-      SF Sg Nom => x + "ec";
-      SF Sg Gen => x + "ca";
-      SF Sg Dat => x + "cowi";
-      SF Sg Acc => x + "ec";
-      SF Sg Instr => x + "cem";
-      SF Sg Loc => x + "cu";
-      SF Sg Voc => x + "cu";
-      SF Pl Nom => [];
-      SF Pl Gen => [];
-      SF Pl Dat => [];
-      SF Pl Acc => [];
-      SF Pl Instr => [];
-      SF Pl Loc => [];
-      SF Pl Voc => []
-    };
-
-    oper mkNTable0152: Str -> SubstForm => Str; --%
-    oper mkNTable0152 lexem = 
-      let x = Predef.tk 1 lexem in
-    table { 
-      SF Sg Nom => x + "ń";
-      SF Sg Gen => x + "nia";
-      SF Sg Dat => x + "niowi";
-      SF Sg Acc => x + "ń";
-      SF Sg Instr => x + "niem";
-      SF Sg Loc => x + "niu";
-      SF Sg Voc => x + "niu";
-      SF Pl Nom => [];
-      SF Pl Gen => [];
-      SF Pl Dat => [];
-      SF Pl Acc => [];
-      SF Pl Instr => [];
-      SF Pl Loc => [];
-      SF Pl Voc => []
-    };
-
-    oper mkNTable0162: Str -> SubstForm => Str; --%
-    oper mkNTable0162 lexem = 
-      let x = Predef.tk 4 lexem in
-    table { 
-      SF Sg Nom => x + "niec";
-      SF Sg Gen => x + "ńca";
-      SF Sg Dat => x + "ńcowi";
-      SF Sg Acc => x + "niec";
-      SF Sg Instr => x + "ńcem";
-      SF Sg Loc => x + "ńcu";
-      SF Sg Voc => x + "ńcu";
-      SF Pl Nom => [];
-      SF Pl Gen => [];
-      SF Pl Dat => [];
-      SF Pl Acc => [];
-      SF Pl Instr => [];
-      SF Pl Loc => [];
-      SF Pl Voc => []
-    };
-
-    oper mkNTable0172: Str -> SubstForm => Str; --%
-    oper mkNTable0172 lexem = 
-      let x = Predef.tk 6 lexem in
-    table { 
-      SF Sg Nom => x + "bolków";
-      SF Sg Gen => x + "Bolkowa";
-      SF Sg Dat => x + "Bolkowowi";
-      SF Sg Acc => x + "bolków";
-      SF Sg Instr => x + "Bolkowem";
-      SF Sg Loc => x + "Bolkowie";
-      SF Sg Voc => x + "Bolkowie";
-      SF Pl Nom => [];
-      SF Pl Gen => [];
-      SF Pl Dat => [];
-      SF Pl Acc => [];
-      SF Pl Instr => [];
-      SF Pl Loc => [];
-      SF Pl Voc => []
-    };
-
-    oper mkNTable0178: Str -> SubstForm => Str; --%
-    oper mkNTable0178 lexem = 
-      let x = Predef.tk 5 lexem in
-    table { 
-      SF Sg Nom => x + "borów";
-      SF Sg Gen => x + "Borowa";
-      SF Sg Dat => x + "Borowu";
-      SF Sg Acc => x + "borów";
-      SF Sg Instr => x + "Borowem";
-      SF Sg Loc => x + "Borowie";
-      SF Sg Voc => x + "Borowie";
-      SF Pl Nom => [];
-      SF Pl Gen => [];
-      SF Pl Dat => [];
-      SF Pl Acc => [];
-      SF Pl Instr => [];
-      SF Pl Loc => [];
-      SF Pl Voc => []
-    };
-
-    oper mkNTable0191: Str -> SubstForm => Str; --%
-    oper mkNTable0191 lexem = 
-      let x = Predef.tk 1 lexem in
-    table { 
-      SF Sg Nom => x + "ć";
-      SF Sg Gen => x + "cia";
-      SF Sg Dat => x + "ciowi";
-      SF Sg Acc => x + "ć";
-      SF Sg Instr => x + "ciem";
-      SF Sg Loc => x + "ciu";
-      SF Sg Voc => x + "ciu";
-      SF Pl Nom => [];
-      SF Pl Gen => [];
-      SF Pl Dat => [];
-      SF Pl Acc => [];
-      SF Pl Instr => [];
-      SF Pl Loc => [];
-      SF Pl Voc => []
-    };
-
-    oper mkNTable0198: Str -> SubstForm => Str; --%
-    oper mkNTable0198 lexem = 
-      let x = Predef.tk 1 lexem in
-    table { 
-      SF Sg Nom => x + "ń";
-      SF Sg Gen => x + "nia";
-      SF Sg Dat => x + "niowi";
-      SF Sg Acc => x + "nia";
-      SF Sg Instr => x + "niem";
-      SF Sg Loc => x + "niu";
-      SF Sg Voc => x + "niu";
-      SF Pl Nom => [];
-      SF Pl Gen => [];
-      SF Pl Dat => [];
-      SF Pl Acc => [];
-      SF Pl Instr => [];
-      SF Pl Loc => [];
-      SF Pl Voc => []
-    };
-
-    oper mkNTable0200: Str -> SubstForm => Str; --%
-    oper mkNTable0200 lexem = 
-      let x = Predef.tk 5 lexem in
-    table { 
-      SF Sg Nom => x + "bytów";
-      SF Sg Gen => x + "Bytowa";
-      SF Sg Dat => x + "Bytowowi";
-      SF Sg Acc => x + "bytów";
-      SF Sg Instr => x + "Bytowem";
-      SF Sg Loc => x + "Bytowie";
-      SF Sg Voc => x + "Bytowie";
-      SF Pl Nom => [];
-      SF Pl Gen => [];
-      SF Pl Dat => [];
-      SF Pl Acc => [];
-      SF Pl Instr => [];
-      SF Pl Loc => [];
-      SF Pl Voc => []
-    };
-
-    oper mkNTable0202: Str -> SubstForm => Str; --%
-    oper mkNTable0202 lexem = 
-      let x = Predef.tk 5 lexem in
-    table { 
-      SF Sg Nom => x + "bąków";
-      SF Sg Gen => x + "Bąkowa";
-      SF Sg Dat => x + "Bąkowu";
-      SF Sg Acc => x + "bąków";
-      SF Sg Instr => x + "Bąkowem";
-      SF Sg Loc => x + "Bąkowie";
-      SF Sg Voc => x + "Bąkowie";
-      SF Pl Nom => [];
-      SF Pl Gen => [];
-      SF Pl Dat => [];
-      SF Pl Acc => [];
-      SF Pl Instr => [];
-      SF Pl Loc => [];
-      SF Pl Voc => []
-    };
-
-    oper mkNTable0204: Str -> SubstForm => Str; --%
-    oper mkNTable0204 lexem = 
-      let x = Predef.tk 6 lexem in
-    table { 
-      SF Sg Nom => x + "błędów";
-      SF Sg Gen => x + "Błędowa";
-      SF Sg Dat => x + "Błędowu";
-      SF Sg Acc => x + "błędów";
-      SF Sg Instr => x + "Błędowem";
-      SF Sg Loc => x + "Błędowie";
-      SF Sg Voc => x + "Błędowie";
-      SF Pl Nom => [];
-      SF Pl Gen => [];
-      SF Pl Dat => [];
-      SF Pl Acc => [];
-      SF Pl Instr => [];
-      SF Pl Loc => [];
-      SF Pl Voc => []
-    };
-
-    oper mkNTable0210: Str -> SubstForm => Str; --%
-    oper mkNTable0210 lexem = 
-      let x = Predef.tk 10 lexem in
-    table { 
-      SF Sg Nom => x + "celestynów";
-      SF Sg Gen => x + "Celestynowa";
-      SF Sg Dat => x + "Celestynowowi";
-      SF Sg Acc => x + "celestynów";
-      SF Sg Instr => x + "Celestynowem";
-      SF Sg Loc => x + "Celestynowie";
-      SF Sg Voc => x + "Celestynowie";
-      SF Pl Nom => [];
-      SF Pl Gen => [];
-      SF Pl Dat => [];
-      SF Pl Acc => [];
-      SF Pl Instr => [];
-      SF Pl Loc => [];
-      SF Pl Voc => []
-    };
-
-    oper mkNTable0216: Str -> SubstForm => Str; --%
-    oper mkNTable0216 lexem = 
-      let x = Predef.tk 2 lexem in
-    table { 
-      SF Sg Nom => x + "ek";
-      SF Sg Gen => x + "ka";
-      SF Sg Dat => x + "kowi";
-      SF Sg Acc => x + "ek";
-      SF Sg Instr => x + "kiem";
-      SF Sg Loc => x + "ku";
-      SF Sg Voc => x + "ku";
-      SF Pl Nom => [];
-      SF Pl Gen => [];
-      SF Pl Dat => [];
-      SF Pl Acc => [];
-      SF Pl Instr => [];
-      SF Pl Loc => [];
-      SF Pl Voc => []
-    };
-
-    oper mkNTable0219: Str -> SubstForm => Str; --%
-    oper mkNTable0219 lexem = 
-      let x = Predef.tk 9 lexem in
-    table { 
-      SF Sg Nom => x + "chochołów";
-      SF Sg Gen => x + "Chochołowa";
-      SF Sg Dat => x + "Chochołowowi";
-      SF Sg Acc => x + "chochołów";
-      SF Sg Instr => x + "Chochołowem";
-      SF Sg Loc => x + "Chochołowie";
-      SF Sg Voc => x + "Chochołowie";
-      SF Pl Nom => [];
-      SF Pl Gen => [];
-      SF Pl Dat => [];
-      SF Pl Acc => [];
-      SF Pl Instr => [];
-      SF Pl Loc => [];
-      SF Pl Voc => []
-    };
-
-    oper mkNTable0220: Str -> SubstForm => Str; --%
-    oper mkNTable0220 lexem = 
-      let x = Predef.tk 6 lexem in
-    table { 
-      SF Sg Nom => x + "chodów";
-      SF Sg Gen => x + "Chodowa";
-      SF Sg Dat => x + "Chodowowi";
-      SF Sg Acc => x + "chodów";
-      SF Sg Instr => x + "Chodowem";
-      SF Sg Loc => x + "Chodowie";
-      SF Sg Voc => x + "Chodowie";
-      SF Pl Nom => [];
-      SF Pl Gen => [];
-      SF Pl Dat => [];
-      SF Pl Acc => [];
-      SF Pl Instr => [];
-      SF Pl Loc => [];
-      SF Pl Voc => []
-    };
-
-    oper mkNTable0225: Str -> SubstForm => Str; --%
-    oper mkNTable0225 lexem = 
-      let x = Predef.tk 8 lexem in
-    table { 
-      SF Sg Nom => x + "chrzanów";
-      SF Sg Gen => x + "Chrzanowa";
-      SF Sg Dat => x + "Chrzanowu";
-      SF Sg Acc => x + "chrzanów";
-      SF Sg Instr => x + "Chrzanowem";
-      SF Sg Loc => x + "Chrzanowie";
-      SF Sg Voc => x + "Chrzanowie";
-      SF Pl Nom => [];
-      SF Pl Gen => [];
-      SF Pl Dat => [];
-      SF Pl Acc => [];
-      SF Pl Instr => [];
-      SF Pl Loc => [];
-      SF Pl Voc => []
-    };
-
-    oper mkNTable0229: Str -> SubstForm => Str; --%
-    oper mkNTable0229 lexem = 
-      let x = lexem in
-    table { 
-      SF Sg Nom => x + "a";
-      SF Sg Gen => x + "";
-      SF Sg Dat => x + "";
-      SF Sg Acc => x + "ę";
-      SF Sg Instr => x + "ą";
-      SF Sg Loc => x + "";
-      SF Sg Voc => x + "[sg,voc]";
-      SF Pl Nom => [];
-      SF Pl Gen => [];
-      SF Pl Dat => [];
-      SF Pl Acc => [];
-      SF Pl Instr => [];
-      SF Pl Loc => [];
-      SF Pl Voc => []
-    };
-
-    oper mkNTable0234: Str -> SubstForm => Str; --%
-    oper mkNTable0234 lexem = 
-      let x = Predef.tk 6 lexem in
-    table { 
-      SF Sg Nom => x + "cycero";
-      SF Sg Gen => x + "Cycerona";
-      SF Sg Dat => x + "Cyceronowi";
-      SF Sg Acc => x + "Cycerona";
-      SF Sg Instr => x + "Cyceronem";
-      SF Sg Loc => x + "Cyceronie";
-      SF Sg Voc => x + "cycero";
-      SF Pl Nom => [];
-      SF Pl Gen => [];
-      SF Pl Dat => [];
-      SF Pl Acc => [];
-      SF Pl Instr => [];
-      SF Pl Loc => [];
-      SF Pl Voc => []
-    };
-
-    oper mkNTable0235: Str -> SubstForm => Str; --%
-    oper mkNTable0235 lexem = 
-      let x = Predef.tk 5 lexem in
-    table { 
-      SF Sg Nom => x + "cyców";
-      SF Sg Gen => x + "Cycowa";
-      SF Sg Dat => x + "Cycowowi";
-      SF Sg Acc => x + "cyców";
-      SF Sg Instr => x + "Cycowem";
-      SF Sg Loc => x + "Cycowie";
-      SF Sg Voc => x + "Cycowie";
-      SF Pl Nom => [];
-      SF Pl Gen => [];
-      SF Pl Dat => [];
-      SF Pl Acc => [];
-      SF Pl Instr => [];
-      SF Pl Loc => [];
-      SF Pl Voc => []
-    };
-
-    oper mkNTable0248: Str -> SubstForm => Str; --%
-    oper mkNTable0248 lexem = 
-      let x = Predef.tk 10 lexem in
-    table { 
-      SF Sg Nom => x + "czerniaków";
-      SF Sg Gen => x + "Czerniakowa";
-      SF Sg Dat => x + "Czerniakowowi";
-      SF Sg Acc => x + "Czerniakowa";
-      SF Sg Instr => x + "Czerniakowem";
-      SF Sg Loc => x + "Czerniakowie";
-      SF Sg Voc => x + "Czerniakowie";
-      SF Pl Nom => [];
-      SF Pl Gen => [];
-      SF Pl Dat => [];
-      SF Pl Acc => [];
-      SF Pl Instr => [];
-      SF Pl Loc => [];
-      SF Pl Voc => []
-    };
-
-    oper mkNTable0249: Str -> SubstForm => Str; --%
-    oper mkNTable0249 lexem = 
-      let x = Predef.tk 10 lexem in
-    table { 
-      SF Sg Nom => x + "czerniaków";
-      SF Sg Gen => x + "Czerniakowa";
-      SF Sg Dat => x + "Czerniakowowi";
-      SF Sg Acc => x + "czerniaków";
-      SF Sg Instr => x + "Czerniakowem";
-      SF Sg Loc => x + "Czerniakowie";
-      SF Sg Voc => x + "Czerniakowie";
-      SF Pl Nom => [];
-      SF Pl Gen => [];
-      SF Pl Dat => [];
-      SF Pl Acc => [];
-      SF Pl Instr => [];
-      SF Pl Loc => [];
-      SF Pl Voc => []
-    };
-
-    oper mkNTable0255: Str -> SubstForm => Str; --%
-    oper mkNTable0255 lexem = 
-      let x = Predef.tk 0 lexem in
-    table { 
-      SF Sg Nom => x + "";
-      SF Sg Gen => x + "a";
-      SF Sg Dat => x + "owi";
-      SF Sg Acc => x + "a";
-      SF Sg Instr => x + "iem";
-      SF Sg Loc => x + "u";
-      SF Sg Voc => x + "u";
-      SF Pl Nom => [];
-      SF Pl Gen => [];
-      SF Pl Dat => [];
-      SF Pl Acc => [];
-      SF Pl Instr => [];
-      SF Pl Loc => [];
-      SF Pl Voc => []
-    };
-
-    oper mkNTable0270: Str -> SubstForm => Str; --%
-    oper mkNTable0270 lexem = 
-      let x = Predef.tk 1 lexem in
-    table { 
-      SF Sg Nom => x + "t";
-      SF Sg Gen => x + "ta";
-      SF Sg Dat => x + "towi";
-      SF Sg Acc => x + "ta";
-      SF Sg Instr => x + "tem";
-      SF Sg Loc => x + "cie";
-      SF Sg Voc => x + "cie";
-      SF Pl Nom => [];
-      SF Pl Gen => [];
-      SF Pl Dat => [];
-      SF Pl Acc => [];
-      SF Pl Instr => [];
-      SF Pl Loc => [];
-      SF Pl Voc => []
-    };
-
-    oper mkNTable0288: Str -> SubstForm => Str; --%
-    oper mkNTable0288 lexem = 
-      let x = Predef.tk 1 lexem in
-    table { 
-      SF Sg Nom => x + "o";
-      SF Sg Gen => x + "[sg,gen]";
-      SF Sg Dat => x + "ie";
-      SF Sg Acc => x + "[sg,acc]";
-      SF Sg Instr => x + "[sg,inst]";
-      SF Sg Loc => x + "ie";
-      SF Sg Voc => x + "o";
-      SF Pl Nom => [];
-      SF Pl Gen => [];
-      SF Pl Dat => [];
-      SF Pl Acc => [];
-      SF Pl Instr => [];
-      SF Pl Loc => [];
-      SF Pl Voc => []
-    };
-
-    oper mkNTable0291: Str -> SubstForm => Str; --%
-    oper mkNTable0291 lexem = 
-      let x = Predef.tk 5 lexem in
-    table { 
-      SF Sg Nom => x + "dynów";
-      SF Sg Gen => x + "Dynowa";
-      SF Sg Dat => x + "Dynowowi";
-      SF Sg Acc => x + "dynów";
-      SF Sg Instr => x + "Dynowem";
-      SF Sg Loc => x + "Dynowie";
-      SF Sg Voc => x + "Dynowie";
-      SF Pl Nom => [];
-      SF Pl Gen => [];
-      SF Pl Dat => [];
-      SF Pl Acc => [];
-      SF Pl Instr => [];
-      SF Pl Loc => [];
-      SF Pl Voc => []
-    };
-
-    oper mkNTable0292: Str -> SubstForm => Str; --%
-    oper mkNTable0292 lexem = 
-      let x = Predef.tk 3 lexem in
-    table { 
-      SF Sg Nom => x + "iec";
-      SF Sg Gen => x + "ca";
-      SF Sg Dat => x + "cowi";
-      SF Sg Acc => x + "iec";
-      SF Sg Instr => x + "cem";
-      SF Sg Loc => x + "cu";
-      SF Sg Voc => x + "cu";
-      SF Pl Nom => [];
-      SF Pl Gen => [];
-      SF Pl Dat => [];
-      SF Pl Acc => [];
-      SF Pl Instr => [];
-      SF Pl Loc => [];
-      SF Pl Voc => []
-    };
-
-    oper mkNTable0293: Str -> SubstForm => Str; --%
-    oper mkNTable0293 lexem = 
-      let x = Predef.tk 6 lexem in
-    table { 
-      SF Sg Nom => x + "dzików";
-      SF Sg Gen => x + "Dzikowa";
-      SF Sg Dat => x + "Dzikowu";
-      SF Sg Acc => x + "dzików";
-      SF Sg Instr => x + "Dzikowem";
-      SF Sg Loc => x + "Dzikowie";
-      SF Sg Voc => x + "Dzikowie";
-      SF Pl Nom => [];
-      SF Pl Gen => [];
-      SF Pl Dat => [];
-      SF Pl Acc => [];
-      SF Pl Instr => [];
-      SF Pl Loc => [];
-      SF Pl Voc => []
-    };
-
-    oper mkNTable0299: Str -> SubstForm => Str; --%
-    oper mkNTable0299 lexem = 
-      let x = Predef.tk 0 lexem in
-    table { 
-      SF Sg Nom => x + "";
-      SF Sg Gen => x + "a";
-      SF Sg Dat => x + "[sg,dat]";
-      SF Sg Acc => x + "a";
-      SF Sg Instr => x + "iem";
-      SF Sg Loc => x + "[sg,loc]";
-      SF Sg Voc => x + "[sg,voc]";
-      SF Pl Nom => [];
-      SF Pl Gen => [];
-      SF Pl Dat => [];
-      SF Pl Acc => [];
-      SF Pl Instr => [];
-      SF Pl Loc => [];
-      SF Pl Voc => []
-    };
-
-    oper mkNTable0308: Str -> SubstForm => Str; --%
-    oper mkNTable0308 lexem = 
-      let x = Predef.tk 2 lexem in
-    table { 
-      SF Sg Nom => x + "st";
-      SF Sg Gen => x + "sta";
-      SF Sg Dat => x + "stowi";
-      SF Sg Acc => x + "sta";
-      SF Sg Instr => x + "stem";
-      SF Sg Loc => x + "ście";
-      SF Sg Voc => x + "ście";
-      SF Pl Nom => [];
-      SF Pl Gen => [];
-      SF Pl Dat => [];
-      SF Pl Acc => [];
-      SF Pl Instr => [];
-      SF Pl Loc => [];
-      SF Pl Voc => []
-    };
-
-    oper mkNTable0317: Str -> SubstForm => Str; --%
-    oper mkNTable0317 lexem = 
-      let x = Predef.tk 7 lexem in
-    table { 
-      SF Sg Nom => x + "filipów";
-      SF Sg Gen => x + "Filipowa";
-      SF Sg Dat => x + "Filipowowi";
-      SF Sg Acc => x + "filipów";
-      SF Sg Instr => x + "Filipowem";
-      SF Sg Loc => x + "Filipowie";
-      SF Sg Voc => x + "Filipowie";
-      SF Pl Nom => [];
-      SF Pl Gen => [];
-      SF Pl Dat => [];
-      SF Pl Acc => [];
-      SF Pl Instr => [];
-      SF Pl Loc => [];
-      SF Pl Voc => []
-    };
-
-    oper mkNTable0336: Str -> SubstForm => Str; --%
-    oper mkNTable0336 lexem = 
-      let x = Predef.tk 6 lexem in
-    table { 
-      SF Sg Nom => x + "garbów";
-      SF Sg Gen => x + "Garbowa";
-      SF Sg Dat => x + "Garbowowi";
-      SF Sg Acc => x + "garbów";
-      SF Sg Instr => x + "Garbowem";
-      SF Sg Loc => x + "Garbowie";
-      SF Sg Voc => x + "Garbowie";
-      SF Pl Nom => [];
-      SF Pl Gen => [];
-      SF Pl Dat => [];
-      SF Pl Acc => [];
-      SF Pl Instr => [];
-      SF Pl Loc => [];
-      SF Pl Voc => []
-    };
-
-    oper mkNTable0347: Str -> SubstForm => Str; --%
-    oper mkNTable0347 lexem = 
-      let x = Predef.tk 10 lexem in
-    table { 
-      SF Sg Nom => x + "gniewoszów";
-      SF Sg Gen => x + "Gniewoszowa";
-      SF Sg Dat => x + "Gniewoszowowi";
-      SF Sg Acc => x + "gniewoszów";
-      SF Sg Instr => x + "Gniewoszowem";
-      SF Sg Loc => x + "Gniewoszowie";
-      SF Sg Voc => x + "Gniewoszowie";
-      SF Pl Nom => [];
-      SF Pl Gen => [];
-      SF Pl Dat => [];
-      SF Pl Acc => [];
-      SF Pl Instr => [];
-      SF Pl Loc => [];
-      SF Pl Voc => []
-    };
-
-    oper mkNTable0348: Str -> SubstForm => Str; --%
-    oper mkNTable0348 lexem = 
-      let x = Predef.tk 0 lexem in
-    table { 
-      SF Sg Nom => x + "";
-      SF Sg Gen => x + "ia";
-      SF Sg Dat => x + "iowi";
-      SF Sg Acc => x + "";
-      SF Sg Instr => x + "iem";
-      SF Sg Loc => x + "iu";
-      SF Sg Voc => x + "iu";
-      SF Pl Nom => [];
-      SF Pl Gen => [];
-      SF Pl Dat => [];
-      SF Pl Acc => [];
-      SF Pl Instr => [];
-      SF Pl Loc => [];
-      SF Pl Voc => []
-    };
-
-    oper mkNTable0362: Str -> SubstForm => Str; --%
-    oper mkNTable0362 lexem = 
-      let x = Predef.tk 6 lexem in
-    table { 
-      SF Sg Nom => x + "grabów";
-      SF Sg Gen => x + "Grabowa";
-      SF Sg Dat => x + "Grabowu";
-      SF Sg Acc => x + "grabów";
-      SF Sg Instr => x + "Grabowem";
-      SF Sg Loc => x + "Grabowie";
-      SF Sg Voc => x + "Grabowie";
-      SF Pl Nom => [];
-      SF Pl Gen => [];
-      SF Pl Dat => [];
-      SF Pl Acc => [];
-      SF Pl Instr => [];
-      SF Pl Loc => [];
-      SF Pl Voc => []
-    };
-
-    oper mkNTable0368: Str -> SubstForm => Str; --%
-    oper mkNTable0368 lexem = 
-      let x = Predef.tk 7 lexem in
-    table { 
-      SF Sg Nom => x + "grochów";
-      SF Sg Gen => x + "grochowa";
-      SF Sg Dat => x + "Grochowu";
-      SF Sg Acc => x + "grochów";
-      SF Sg Instr => x + "Grochowem";
-      SF Sg Loc => x + "Grochowie";
-      SF Sg Voc => x + "Grochowie";
-      SF Pl Nom => [];
-      SF Pl Gen => [];
-      SF Pl Dat => [];
-      SF Pl Acc => [];
-      SF Pl Instr => [];
-      SF Pl Loc => [];
-      SF Pl Voc => []
-    };
-
-    oper mkNTable0376: Str -> SubstForm => Str; --%
-    oper mkNTable0376 lexem = 
-      let x = Predef.tk 7 lexem in
-    table { 
-      SF Sg Nom => x + "grzybów";
-      SF Sg Gen => x + "grzybowa";
-      SF Sg Dat => x + "Grzybowu";
-      SF Sg Acc => x + "grzybów";
-      SF Sg Instr => x + "Grzybowem";
-      SF Sg Loc => x + "Grzybowie";
-      SF Sg Voc => x + "Grzybowie";
-      SF Pl Nom => [];
-      SF Pl Gen => [];
-      SF Pl Dat => [];
-      SF Pl Acc => [];
-      SF Pl Instr => [];
-      SF Pl Loc => [];
-      SF Pl Voc => []
-    };
-
-    oper mkNTable0380: Str -> SubstForm => Str; --%
-    oper mkNTable0380 lexem = 
-      let x = Predef.tk 6 lexem in
-    table { 
-      SF Sg Nom => x + "głogów";
-      SF Sg Gen => x + "Głogowa";
-      SF Sg Dat => x + "Głogowu";
-      SF Sg Acc => x + "głogów";
-      SF Sg Instr => x + "Głogowem";
-      SF Sg Loc => x + "Głogowie";
-      SF Sg Voc => x + "Głogowie";
-      SF Pl Nom => [];
-      SF Pl Gen => [];
-      SF Pl Dat => [];
-      SF Pl Acc => [];
-      SF Pl Instr => [];
-      SF Pl Loc => [];
-      SF Pl Voc => []
-    };
-
-    oper mkNTable0394: Str -> SubstForm => Str; --%
-    oper mkNTable0394 lexem = 
-      let x = Predef.tk 0 lexem in
-    table { 
-      SF Sg Nom => x + "";
-      SF Sg Gen => x + "a";
-      SF Sg Dat => x + "owi";
-      SF Sg Acc => x + "a";
-      SF Sg Instr => x + "em";
-      SF Sg Loc => x + "zie";
-      SF Sg Voc => x + "zie";
-      SF Pl Nom => [];
-      SF Pl Gen => [];
-      SF Pl Dat => [];
-      SF Pl Acc => [];
-      SF Pl Instr => [];
-      SF Pl Loc => [];
-      SF Pl Voc => []
-    };
-
-    oper mkNTable0403: Str -> SubstForm => Str; --%
-    oper mkNTable0403 lexem = 
-      let x = Predef.tk 8 lexem in
-    table { 
-      SF Sg Nom => x + "[sg,nom]";
-      SF Sg Gen => x + "[sg,gen]";
-      SF Sg Dat => x + "[sg,dat]";
-      SF Sg Acc => x + "[sg,acc]";
-      SF Sg Instr => x + "m";
-      SF Sg Loc => x + "m";
-      SF Sg Voc => x + "[sg,voc]";
-      SF Pl Nom => [];
-      SF Pl Gen => [];
-      SF Pl Dat => [];
-      SF Pl Acc => [];
-      SF Pl Instr => [];
-      SF Pl Loc => [];
-      SF Pl Voc => []
-    };
-
-    oper mkNTable0405: Str -> SubstForm => Str; --%
-    oper mkNTable0405 lexem = 
-      let x = Predef.tk 3 lexem in
-    table { 
-      SF Sg Nom => x + "ódz";
-      SF Sg Gen => x + "odza";
-      SF Sg Dat => x + "odzowi";
-      SF Sg Acc => x + "ódz";
-      SF Sg Instr => x + "odzem";
-      SF Sg Loc => x + "odzu";
-      SF Sg Voc => x + "odzu";
-      SF Pl Nom => [];
-      SF Pl Gen => [];
-      SF Pl Dat => [];
-      SF Pl Acc => [];
-      SF Pl Instr => [];
-      SF Pl Loc => [];
-      SF Pl Voc => []
-    };
-
-    oper mkNTable0418: Str -> SubstForm => Str; --%
-    oper mkNTable0418 lexem = 
-      let x = Predef.tk 1 lexem in
-    table { 
-      SF Sg Nom => x + "e";
-      SF Sg Gen => x + "[sg,gen]";
-      SF Sg Dat => x + "[sg,dat]";
-      SF Sg Acc => x + "[sg,acc]";
-      SF Sg Instr => x + "em";
-      SF Sg Loc => x + "em";
-      SF Sg Voc => x + "e";
-      SF Pl Nom => [];
-      SF Pl Gen => [];
-      SF Pl Dat => [];
-      SF Pl Acc => [];
-      SF Pl Instr => [];
-      SF Pl Loc => [];
-      SF Pl Voc => []
-    };
-
-    oper mkNTable0422: Str -> SubstForm => Str; --%
-    oper mkNTable0422 lexem = 
-      let x = Predef.tk 2 lexem in
-    table { 
-      SF Sg Nom => x + "ów";
-      SF Sg Gen => x + "owa";
-      SF Sg Dat => x + "owowi";
-      SF Sg Acc => x + "owa";
-      SF Sg Instr => x + "owem";
-      SF Sg Loc => x + "owie";
-      SF Sg Voc => x + "owie";
-      SF Pl Nom => [];
-      SF Pl Gen => [];
-      SF Pl Dat => [];
-      SF Pl Acc => [];
-      SF Pl Instr => [];
-      SF Pl Loc => [];
-      SF Pl Voc => []
-    };
-
-    oper mkNTable0432: Str -> SubstForm => Str; --%
-    oper mkNTable0432 lexem = 
-      let x = Predef.tk 7 lexem in
-    table { 
-      SF Sg Nom => x + "jaworów";
-      SF Sg Gen => x + "Jaworowa";
-      SF Sg Dat => x + "Jaworowowi";
-      SF Sg Acc => x + "jaworów";
-      SF Sg Instr => x + "Jaworowem";
-      SF Sg Loc => x + "Jaworowie";
-      SF Sg Voc => x + "Jaworowie";
-      SF Pl Nom => [];
-      SF Pl Gen => [];
-      SF Pl Dat => [];
-      SF Pl Acc => [];
-      SF Pl Instr => [];
-      SF Pl Loc => [];
-      SF Pl Voc => []
-    };
-
-    oper mkNTable0439: Str -> SubstForm => Str; --%
-    oper mkNTable0439 lexem = 
-      let x = Predef.tk 5 lexem in
-    table { 
-      SF Sg Nom => x + "jeżów";
-      SF Sg Gen => x + "Jeżowa";
-      SF Sg Dat => x + "Jeżowowi";
-      SF Sg Acc => x + "jeżów";
-      SF Sg Instr => x + "Jeżowem";
-      SF Sg Loc => x + "Jeżowie";
-      SF Sg Voc => x + "Jeżowie";
-      SF Pl Nom => [];
-      SF Pl Gen => [];
-      SF Pl Dat => [];
-      SF Pl Acc => [];
-      SF Pl Instr => [];
-      SF Pl Loc => [];
-      SF Pl Voc => []
-    };
-
-    oper mkNTable0443: Str -> SubstForm => Str; --%
-    oper mkNTable0443 lexem = 
-      let x = Predef.tk 8 lexem in
-    table { 
-      SF Sg Nom => x + "jordanów";
-      SF Sg Gen => x + "Jordanowa";
-      SF Sg Dat => x + "Jordanowu";
-      SF Sg Acc => x + "jordanów";
-      SF Sg Instr => x + "Jordanowem";
-      SF Sg Loc => x + "Jordanowie";
-      SF Sg Voc => x + "Jordanowie";
-      SF Pl Nom => [];
-      SF Pl Gen => [];
-      SF Pl Dat => [];
-      SF Pl Acc => [];
-      SF Pl Instr => [];
-      SF Pl Loc => [];
-      SF Pl Voc => []
-    };
-
-    oper mkNTable0450: Str -> SubstForm => Str; --%
-    oper mkNTable0450 lexem = 
-      let x = Predef.tk 7 lexem in
-    table { 
-      SF Sg Nom => x + "karczów";
-      SF Sg Gen => x + "Karczowa";
-      SF Sg Dat => x + "Karczowowi";
-      SF Sg Acc => x + "karczów";
-      SF Sg Instr => x + "Karczowem";
-      SF Sg Loc => x + "Karczowie";
-      SF Sg Voc => x + "Karczowie";
-      SF Pl Nom => [];
-      SF Pl Gen => [];
-      SF Pl Dat => [];
-      SF Pl Acc => [];
-      SF Pl Instr => [];
-      SF Pl Loc => [];
-      SF Pl Voc => []
-    };
-
-    oper mkNTable0469: Str -> SubstForm => Str; --%
-    oper mkNTable0469 lexem = 
-      let x = Predef.tk 5 lexem in
-    table { 
-      SF Sg Nom => x + "kijów";
-      SF Sg Gen => x + "Kijowa";
-      SF Sg Dat => x + "Kijowowi";
-      SF Sg Acc => x + "kijów";
-      SF Sg Instr => x + "Kijowem";
-      SF Sg Loc => x + "Kijowie";
-      SF Sg Voc => x + "Kijowie";
-      SF Pl Nom => [];
-      SF Pl Gen => [];
-      SF Pl Dat => [];
-      SF Pl Acc => [];
-      SF Pl Instr => [];
-      SF Pl Loc => [];
-      SF Pl Voc => []
-    };
-
-    oper mkNTable0476: Str -> SubstForm => Str; --%
-    oper mkNTable0476 lexem = 
-      let x = Predef.tk 6 lexem in
-    table { 
-      SF Sg Nom => x + "knurów";
-      SF Sg Gen => x + "Knurowa";
-      SF Sg Dat => x + "Knurowowi";
-      SF Sg Acc => x + "knurów";
-      SF Sg Instr => x + "Knurowem";
-      SF Sg Loc => x + "Knurowie";
-      SF Sg Voc => x + "Knurowie";
-      SF Pl Nom => [];
-      SF Pl Gen => [];
-      SF Pl Dat => [];
-      SF Pl Acc => [];
-      SF Pl Instr => [];
-      SF Pl Loc => [];
-      SF Pl Voc => []
-    };
-
-    oper mkNTable0478: Str -> SubstForm => Str; --%
-    oper mkNTable0478 lexem = 
-      let x = Predef.tk 5 lexem in
-    table { 
-      SF Sg Nom => x + "Kolbe";
-      SF Sg Gen => x + "Kolbego";
-      SF Sg Dat => x + "[sg,dat]";
-      SF Sg Acc => x + "Kolbego";
-      SF Sg Instr => x + "[sg,inst]";
-      SF Sg Loc => x + "[sg,loc]";
-      SF Sg Voc => x + "Kolbe";
-      SF Pl Nom => [];
-      SF Pl Gen => [];
-      SF Pl Dat => [];
-      SF Pl Acc => [];
-      SF Pl Instr => [];
-      SF Pl Loc => [];
-      SF Pl Voc => []
-    };
-
-    oper mkNTable0480: Str -> SubstForm => Str; --%
-    oper mkNTable0480 lexem = 
-      let x = Predef.tk 7 lexem in
-    table { 
-      SF Sg Nom => x + "komarów";
-      SF Sg Gen => x + "Komarowa";
-      SF Sg Dat => x + "Komarowu";
-      SF Sg Acc => x + "komarów";
-      SF Sg Instr => x + "Komarowem";
-      SF Sg Loc => x + "Komarowie";
-      SF Sg Voc => x + "Komarowie";
-      SF Pl Nom => [];
-      SF Pl Gen => [];
-      SF Pl Dat => [];
-      SF Pl Acc => [];
-      SF Pl Instr => [];
-      SF Pl Loc => [];
-      SF Pl Voc => []
-    };
-
-    oper mkNTable0482: Str -> SubstForm => Str; --%
-    oper mkNTable0482 lexem = 
-      let x = Predef.tk 8 lexem in
-    table { 
-      SF Sg Nom => x + "koniaków";
-      SF Sg Gen => x + "Koniakowa";
-      SF Sg Dat => x + "Koniakowowi";
-      SF Sg Acc => x + "koniaków";
-      SF Sg Instr => x + "Koniakowem";
-      SF Sg Loc => x + "Koniakowie";
-      SF Sg Voc => x + "Koniakowie";
-      SF Pl Nom => [];
-      SF Pl Gen => [];
-      SF Pl Dat => [];
-      SF Pl Acc => [];
-      SF Pl Instr => [];
-      SF Pl Loc => [];
-      SF Pl Voc => []
-    };
-
-    oper mkNTable0492: Str -> SubstForm => Str; --%
-    oper mkNTable0492 lexem = 
-      let x = Predef.tk 5 lexem in
-    table { 
-      SF Sg Nom => x + "kosów";
-      SF Sg Gen => x + "Kosowa";
-      SF Sg Dat => x + "Kosowu";
-      SF Sg Acc => x + "kosów";
-      SF Sg Instr => x + "Kosowem";
-      SF Sg Loc => x + "Kosowie";
-      SF Sg Voc => x + "Kosowie";
-      SF Pl Nom => [];
-      SF Pl Gen => [];
-      SF Pl Dat => [];
-      SF Pl Acc => [];
-      SF Pl Instr => [];
-      SF Pl Loc => [];
-      SF Pl Voc => []
-    };
-
-    oper mkNTable0499: Str -> SubstForm => Str; --%
-    oper mkNTable0499 lexem = 
-      let x = Predef.tk 6 lexem in
-    table { 
-      SF Sg Nom => x + "kozłów";
-      SF Sg Gen => x + "Kozłowa";
-      SF Sg Dat => x + "Kozłowu";
-      SF Sg Acc => x + "kozłów";
-      SF Sg Instr => x + "Kozłowem";
-      SF Sg Loc => x + "Kozłowie";
-      SF Sg Voc => x + "Kozłowie";
-      SF Pl Nom => [];
-      SF Pl Gen => [];
-      SF Pl Dat => [];
-      SF Pl Acc => [];
-      SF Pl Instr => [];
-      SF Pl Loc => [];
-      SF Pl Voc => []
-    };
-
-    oper mkNTable0501: Str -> SubstForm => Str; --%
-    oper mkNTable0501 lexem = 
-      let x = Predef.tk 8 lexem in
-    table { 
-      SF Sg Nom => x + "kożuchów";
-      SF Sg Gen => x + "Kożuchowa";
-      SF Sg Dat => x + "Kożuchowowi";
-      SF Sg Acc => x + "kożuchów";
-      SF Sg Instr => x + "Kożuchowem";
-      SF Sg Loc => x + "Kożuchowie";
-      SF Sg Voc => x + "Kożuchowie";
-      SF Pl Nom => [];
-      SF Pl Gen => [];
-      SF Pl Dat => [];
-      SF Pl Acc => [];
-      SF Pl Instr => [];
-      SF Pl Loc => [];
-      SF Pl Voc => []
-    };
-
-    oper mkNTable0524: Str -> SubstForm => Str; --%
-    oper mkNTable0524 lexem = 
-      let x = Predef.tk 5 lexem in
-    table { 
-      SF Sg Nom => x + "kurów";
-      SF Sg Gen => x + "Kurowa";
-      SF Sg Dat => x + "Kurowu";
-      SF Sg Acc => x + "kurów";
-      SF Sg Instr => x + "Kurowem";
-      SF Sg Loc => x + "Kurowie";
-      SF Sg Voc => x + "Kurowie";
-      SF Pl Nom => [];
-      SF Pl Gen => [];
-      SF Pl Dat => [];
-      SF Pl Acc => [];
-      SF Pl Instr => [];
-      SF Pl Loc => [];
-      SF Pl Voc => []
-    };
-
-    oper mkNTable0530: Str -> SubstForm => Str; --%
-    oper mkNTable0530 lexem = 
-      let x = Predef.tk 5 lexem in
-    table { 
-      SF Sg Nom => x + "Lampe";
-      SF Sg Gen => x + "Lampego";
-      SF Sg Dat => x + "[sg,dat]";
-      SF Sg Acc => x + "Lampego";
-      SF Sg Instr => x + "[sg,inst]";
-      SF Sg Loc => x + "[sg,loc]";
-      SF Sg Voc => x + "Lampe";
-      SF Pl Nom => [];
-      SF Pl Gen => [];
-      SF Pl Dat => [];
-      SF Pl Acc => [];
-      SF Pl Instr => [];
-      SF Pl Loc => [];
-      SF Pl Voc => []
-    };
-
-    oper mkNTable0546: Str -> SubstForm => Str; --%
-    oper mkNTable0546 lexem = 
-      let x = Predef.tk 8 lexem in
-    table { 
-      SF Sg Nom => x + "[sg,nom]";
-      SF Sg Gen => x + "[sg,gen]";
-      SF Sg Dat => x + "[sg,dat]";
-      SF Sg Acc => x + "[sg,acc]";
-      SF Sg Instr => x + "[sg,inst]";
-      SF Sg Loc => x + "[sg,loc]";
-      SF Sg Voc => x + "[sg,voc]";
-      SF Pl Nom => [];
-      SF Pl Gen => [];
-      SF Pl Dat => [];
-      SF Pl Acc => [];
-      SF Pl Instr => [];
-      SF Pl Loc => [];
-      SF Pl Voc => []
-    };
-
-    oper mkNTable0551: Str -> SubstForm => Str; --%
-    oper mkNTable0551 lexem = 
-      let x = Predef.tk 6 lexem in
-    table { 
-      SF Sg Nom => x + "lisków";
-      SF Sg Gen => x + "Liskowa";
-      SF Sg Dat => x + "Liskowowi";
-      SF Sg Acc => x + "lisków";
-      SF Sg Instr => x + "Liskowem";
-      SF Sg Loc => x + "Liskowie";
-      SF Sg Voc => x + "Liskowie";
-      SF Pl Nom => [];
-      SF Pl Gen => [];
-      SF Pl Dat => [];
-      SF Pl Acc => [];
-      SF Pl Instr => [];
-      SF Pl Loc => [];
-      SF Pl Voc => []
-    };
-
-    oper mkNTable0556: Str -> SubstForm => Str; --%
-    oper mkNTable0556 lexem = 
-      let x = Predef.tk 4 lexem in
-    table { 
-      SF Sg Nom => x + "lwów";
-      SF Sg Gen => x + "Lwowa";
-      SF Sg Dat => x + "Lwowu";
-      SF Sg Acc => x + "lwów";
-      SF Sg Instr => x + "Lwowem";
-      SF Sg Loc => x + "Lwowie";
-      SF Sg Voc => x + "Lwowie";
-      SF Pl Nom => [];
-      SF Pl Gen => [];
-      SF Pl Dat => [];
-      SF Pl Acc => [];
-      SF Pl Instr => [];
-      SF Pl Loc => [];
-      SF Pl Voc => []
-    };
-
-    oper mkNTable0559: Str -> SubstForm => Str; --%
-    oper mkNTable0559 lexem = 
-      let x = Predef.tk 6 lexem in
-    table { 
-      SF Sg Nom => x + "machów";
-      SF Sg Gen => x + "Machowa";
-      SF Sg Dat => x + "Machowowi";
-      SF Sg Acc => x + "machów";
-      SF Sg Instr => x + "Machowem";
-      SF Sg Loc => x + "Machowie";
-      SF Sg Voc => x + "Machowie";
-      SF Pl Nom => [];
-      SF Pl Gen => [];
-      SF Pl Dat => [];
-      SF Pl Acc => [];
-      SF Pl Instr => [];
-      SF Pl Loc => [];
-      SF Pl Voc => []
-    };
-
-    oper mkNTable0569: Str -> SubstForm => Str; --%
-    oper mkNTable0569 lexem = 
-      let x = Predef.tk 5 lexem in
-    table { 
-      SF Sg Nom => x + "maków";
-      SF Sg Gen => x + "Makowa";
-      SF Sg Dat => x + "Makowu";
-      SF Sg Acc => x + "maków";
-      SF Sg Instr => x + "Makowem";
-      SF Sg Loc => x + "Makowie";
-      SF Sg Voc => x + "Makowie";
-      SF Pl Nom => [];
-      SF Pl Gen => [];
-      SF Pl Dat => [];
-      SF Pl Acc => [];
-      SF Pl Instr => [];
-      SF Pl Loc => [];
-      SF Pl Voc => []
-    };
-
-    oper mkNTable0582: Str -> SubstForm => Str; --%
-    oper mkNTable0582 lexem = 
-      let x = Predef.tk 1 lexem in
-    table { 
-      SF Sg Nom => x + "t";
-      SF Sg Gen => x + "ta";
-      SF Sg Dat => x + "towi";
-      SF Sg Acc => x + "t";
-      SF Sg Instr => x + "tem";
-      SF Sg Loc => x + "cie";
-      SF Sg Voc => x + "cie";
-      SF Pl Nom => [];
-      SF Pl Gen => [];
-      SF Pl Dat => [];
-      SF Pl Acc => [];
-      SF Pl Instr => [];
-      SF Pl Loc => [];
-      SF Pl Voc => []
-    };
-
-    oper mkNTable0602: Str -> SubstForm => Str; --%
-    oper mkNTable0602 lexem = 
-      let x = Predef.tk 1 lexem in
-    table { 
-      SF Sg Nom => x + "a";
-      SF Sg Gen => x + "i";
-      SF Sg Dat => x + "[sg,dat]";
-      SF Sg Acc => x + "[sg,acc]";
-      SF Sg Instr => x + "[sg,inst]";
-      SF Sg Loc => x + "[sg,loc]";
-      SF Sg Voc => x + "[sg,voc]";
-      SF Pl Nom => [];
-      SF Pl Gen => [];
-      SF Pl Dat => [];
-      SF Pl Acc => [];
-      SF Pl Instr => [];
-      SF Pl Loc => [];
-      SF Pl Voc => []
-    };
-
-    oper mkNTable0603: Str -> SubstForm => Str; --%
-    oper mkNTable0603 lexem = 
-      let x = Predef.tk 1 lexem in
-    table { 
-      SF Sg Nom => x + "o";
-      SF Sg Gen => x + "a";
-      SF Sg Dat => x + "owi";
-      SF Sg Acc => x + "a";
-      SF Sg Instr => x + "em";
-      SF Sg Loc => x + "ie";
-      SF Sg Voc => x + "o";
-      SF Pl Nom => [];
-      SF Pl Gen => [];
-      SF Pl Dat => [];
-      SF Pl Acc => [];
-      SF Pl Instr => [];
-      SF Pl Loc => [];
-      SF Pl Voc => []
-    };
-
-    oper mkNTable0604: Str -> SubstForm => Str; --%
-    oper mkNTable0604 lexem = 
-      let x = Predef.tk 7 lexem in
-    table { 
-      SF Sg Nom => x + "miechów";
-      SF Sg Gen => x + "Miechowa";
-      SF Sg Dat => x + "Miechowu";
-      SF Sg Acc => x + "miechów";
-      SF Sg Instr => x + "Miechowem";
-      SF Sg Loc => x + "Miechowie";
-      SF Sg Voc => x + "Miechowie";
-      SF Pl Nom => [];
-      SF Pl Gen => [];
-      SF Pl Dat => [];
-      SF Pl Acc => [];
-      SF Pl Instr => [];
-      SF Pl Loc => [];
-      SF Pl Voc => []
-    };
-
-    oper mkNTable0612: Str -> SubstForm => Str; --%
-    oper mkNTable0612 lexem = 
-      let x = Predef.tk 4 lexem in
-    table { 
-      SF Sg Nom => x + "Minh";
-      SF Sg Gen => x + "Minha";
-      SF Sg Dat => x + "Minhowi";
-      SF Sg Acc => x + "Minha";
-      SF Sg Instr => x + "Minhem";
-      SF Sg Loc => x + "minie";
-      SF Sg Voc => x + "minie";
-      SF Pl Nom => [];
-      SF Pl Gen => [];
-      SF Pl Dat => [];
-      SF Pl Acc => [];
-      SF Pl Instr => [];
-      SF Pl Loc => [];
-      SF Pl Voc => []
-    };
-
-    oper mkNTable0613: Str -> SubstForm => Str; --%
-    oper mkNTable0613 lexem = 
-      let x = Predef.tk 4 lexem in
-    table { 
-      SF Sg Nom => x + "Minh";
-      SF Sg Gen => x + "Minhu";
-      SF Sg Dat => x + "Minhowi";
-      SF Sg Acc => x + "Minh";
-      SF Sg Instr => x + "Minhem";
-      SF Sg Loc => x + "minie";
-      SF Sg Voc => x + "minie";
-      SF Pl Nom => [];
-      SF Pl Gen => [];
-      SF Pl Dat => [];
-      SF Pl Acc => [];
-      SF Pl Instr => [];
-      SF Pl Loc => [];
-      SF Pl Voc => []
-    };
-
-    oper mkNTable0619: Str -> SubstForm => Str; --%
-    oper mkNTable0619 lexem = 
-      let x = Predef.tk 8 lexem in
-    table { 
-      SF Sg Nom => x + "mniszków";
-      SF Sg Gen => x + "Mniszkowa";
-      SF Sg Dat => x + "Mniszkowowi";
-      SF Sg Acc => x + "mniszków";
-      SF Sg Instr => x + "Mniszkowem";
-      SF Sg Loc => x + "mniszkowie";
-      SF Sg Voc => x + "mniszkowie";
-      SF Pl Nom => [];
-      SF Pl Gen => [];
-      SF Pl Dat => [];
-      SF Pl Acc => [];
-      SF Pl Instr => [];
-      SF Pl Loc => [];
-      SF Pl Voc => []
-    };
-
-    oper mkNTable0630: Str -> SubstForm => Str; --%
-    oper mkNTable0630 lexem = 
-      let x = Predef.tk 5 lexem in
-    table { 
-      SF Sg Nom => x + "murów";
-      SF Sg Gen => x + "Murowa";
-      SF Sg Dat => x + "Murowowi";
-      SF Sg Acc => x + "murów";
-      SF Sg Instr => x + "Murowem";
-      SF Sg Loc => x + "Murowie";
-      SF Sg Voc => x + "Murowie";
-      SF Pl Nom => [];
-      SF Pl Gen => [];
-      SF Pl Dat => [];
-      SF Pl Acc => [];
-      SF Pl Instr => [];
-      SF Pl Loc => [];
-      SF Pl Voc => []
-    };
-
-    oper mkNTable0634: Str -> SubstForm => Str; --%
-    oper mkNTable0634 lexem = 
-      let x = Predef.tk 8 lexem in
-    table { 
-      SF Sg Nom => x + "namysłów";
-      SF Sg Gen => x + "Namysłowa";
-      SF Sg Dat => x + "Namysłowowi";
-      SF Sg Acc => x + "namysłów";
-      SF Sg Instr => x + "Namysłowem";
-      SF Sg Loc => x + "Namysłowie";
-      SF Sg Voc => x + "Namysłowie";
-      SF Pl Nom => [];
-      SF Pl Gen => [];
-      SF Pl Dat => [];
-      SF Pl Acc => [];
-      SF Pl Instr => [];
-      SF Pl Loc => [];
-      SF Pl Voc => []
-    };
-
-    oper mkNTable0641: Str -> SubstForm => Str; --%
-    oper mkNTable0641 lexem = 
-      let x = Predef.tk 8 lexem in
-    table { 
-      SF Sg Nom => x + "nałęczów";
-      SF Sg Gen => x + "Nałęczowa";
-      SF Sg Dat => x + "Nałęczowowi";
-      SF Sg Acc => x + "nałęczów";
-      SF Sg Instr => x + "Nałęczowem";
-      SF Sg Loc => x + "Nałęczowie";
-      SF Sg Voc => x + "Nałęczowie";
-      SF Pl Nom => [];
-      SF Pl Gen => [];
-      SF Pl Dat => [];
-      SF Pl Acc => [];
-      SF Pl Instr => [];
-      SF Pl Loc => [];
-      SF Pl Voc => []
-    };
-
-    oper mkNTable0647: Str -> SubstForm => Str; --%
-    oper mkNTable0647 lexem = 
-      let x = Predef.tk 2 lexem in
-    table { 
-      SF Sg Nom => x + "en";
-      SF Sg Gen => x + "na";
-      SF Sg Dat => x + "nowi";
-      SF Sg Acc => x + "en";
-      SF Sg Instr => x + "nem";
-      SF Sg Loc => x + "nie";
-      SF Sg Voc => x + "nie";
-      SF Pl Nom => [];
-      SF Pl Gen => [];
-      SF Pl Dat => [];
-      SF Pl Acc => [];
-      SF Pl Instr => [];
-      SF Pl Loc => [];
-      SF Pl Voc => []
-    };
-
-    oper mkNTable0652: Str -> SubstForm => Str; --%
-    oper mkNTable0652 lexem = 
-      let x = Predef.tk 2 lexem in
-    table { 
-      SF Sg Nom => x + "ód";
-      SF Sg Gen => x + "odu";
-      SF Sg Dat => x + "odowi";
-      SF Sg Acc => x + "ód";
-      SF Sg Instr => x + "odem";
-      SF Sg Loc => x + "odzie";
-      SF Sg Voc => x + "odzie";
-      SF Pl Nom => [];
-      SF Pl Gen => [];
-      SF Pl Dat => [];
-      SF Pl Acc => [];
-      SF Pl Instr => [];
-      SF Pl Loc => [];
-      SF Pl Voc => []
-    };
-
-    oper mkNTable0655: Str -> SubstForm => Str; --%
-    oper mkNTable0655 lexem = 
-      let x = Predef.tk 2 lexem in
-    table { 
-      SF Sg Nom => x + "ec";
-      SF Sg Gen => x + "ca";
-      SF Sg Dat => x + "cowi";
-      SF Sg Acc => x + "ca";
-      SF Sg Instr => x + "cem";
-      SF Sg Loc => x + "cu";
-      SF Sg Voc => x + "cu";
-      SF Pl Nom => [];
-      SF Pl Gen => [];
-      SF Pl Dat => [];
-      SF Pl Acc => [];
-      SF Pl Instr => [];
-      SF Pl Loc => [];
-      SF Pl Voc => []
-    };
-
-    oper mkNTable0657: Str -> SubstForm => Str; --%
-    oper mkNTable0657 lexem = 
-      let x = Predef.tk 5 lexem in
-    table { 
-      SF Sg Nom => x + "ojców";
-      SF Sg Gen => x + "Ojcowa";
-      SF Sg Dat => x + "Ojcowowi";
-      SF Sg Acc => x + "ojców";
-      SF Sg Instr => x + "Ojcowem";
-      SF Sg Loc => x + "ojcowie";
-      SF Sg Voc => x + "ojcowie";
-      SF Pl Nom => [];
-      SF Pl Gen => [];
-      SF Pl Dat => [];
-      SF Pl Acc => [];
-      SF Pl Instr => [];
-      SF Pl Loc => [];
-      SF Pl Voc => []
-    };
-
-    oper mkNTable0661: Str -> SubstForm => Str; --%
-    oper mkNTable0661 lexem = 
-      let x = Predef.tk 2 lexem in
-    table { 
-      SF Sg Nom => x + "ek";
-      SF Sg Gen => x + "ka";
-      SF Sg Dat => x + "kowi";
-      SF Sg Acc => x + "ka";
-      SF Sg Instr => x + "kiem";
-      SF Sg Loc => x + "ku";
-      SF Sg Voc => x + "ku";
-      SF Pl Nom => [];
-      SF Pl Gen => [];
-      SF Pl Dat => [];
-      SF Pl Acc => [];
-      SF Pl Instr => [];
-      SF Pl Loc => [];
-      SF Pl Voc => []
-    };
-
-    oper mkNTable0662: Str -> SubstForm => Str; --%
-    oper mkNTable0662 lexem = 
-      let x = Predef.tk 6 lexem in
-    table { 
-      SF Sg Nom => x + "opatów";
-      SF Sg Gen => x + "Opatowa";
-      SF Sg Dat => x + "Opatowowi";
-      SF Sg Acc => x + "opatów";
-      SF Sg Instr => x + "Opatowem";
-      SF Sg Loc => x + "Opatowie";
-      SF Sg Voc => x + "Opatowie";
-      SF Pl Nom => [];
-      SF Pl Gen => [];
-      SF Pl Dat => [];
-      SF Pl Acc => [];
-      SF Pl Instr => [];
-      SF Pl Loc => [];
-      SF Pl Voc => []
-    };
-
-    oper mkNTable0663: Str -> SubstForm => Str; --%
-    oper mkNTable0663 lexem = 
-      let x = Predef.tk 6 lexem in
-    table { 
-      SF Sg Nom => x + "oporów";
-      SF Sg Gen => x + "Oporowa";
-      SF Sg Dat => x + "Oporowu";
-      SF Sg Acc => x + "oporów";
-      SF Sg Instr => x + "Oporowem";
-      SF Sg Loc => x + "Oporowie";
-      SF Sg Voc => x + "Oporowie";
-      SF Pl Nom => [];
-      SF Pl Gen => [];
-      SF Pl Dat => [];
-      SF Pl Acc => [];
-      SF Pl Instr => [];
-      SF Pl Loc => [];
-      SF Pl Voc => []
-    };
-
-    oper mkNTable0666: Str -> SubstForm => Str; --%
-    oper mkNTable0666 lexem = 
-      let x = Predef.tk 5 lexem in
-    table { 
-      SF Sg Nom => x + "osiek";
-      SF Sg Gen => x + "Osieku";
-      SF Sg Dat => x + "Osiekowi";
-      SF Sg Acc => x + "osiek";
-      SF Sg Instr => x + "Osiekiem";
-      SF Sg Loc => x + "Osieku";
-      SF Sg Voc => x + "Osieku";
-      SF Pl Nom => [];
-      SF Pl Gen => [];
-      SF Pl Dat => [];
-      SF Pl Acc => [];
-      SF Pl Instr => [];
-      SF Pl Loc => [];
-      SF Pl Voc => []
-    };
-
-    oper mkNTable0671: Str -> SubstForm => Str; --%
-    oper mkNTable0671 lexem = 
-      let x = Predef.tk 7 lexem in
-    table { 
-      SF Sg Nom => x + "ozorków";
-      SF Sg Gen => x + "Ozorkowa";
-      SF Sg Dat => x + "Ozorkowowi";
-      SF Sg Acc => x + "ozorków";
-      SF Sg Instr => x + "Ozorkowem";
-      SF Sg Loc => x + "Ozorkowie";
-      SF Sg Voc => x + "Ozorkowie";
-      SF Pl Nom => [];
-      SF Pl Gen => [];
-      SF Pl Dat => [];
-      SF Pl Acc => [];
-      SF Pl Instr => [];
-      SF Pl Loc => [];
-      SF Pl Voc => []
-    };
-
-    oper mkNTable0676: Str -> SubstForm => Str; --%
-    oper mkNTable0676 lexem = 
-      let x = Predef.tk 7 lexem in
-    table { 
-      SF Sg Nom => x + "pacanów";
-      SF Sg Gen => x + "Pacanowa";
-      SF Sg Dat => x + "Pacanowowi";
-      SF Sg Acc => x + "pacanów";
-      SF Sg Instr => x + "Pacanowem";
-      SF Sg Loc => x + "Pacanowie";
-      SF Sg Voc => x + "Pacanowie";
-      SF Pl Nom => [];
-      SF Pl Gen => [];
-      SF Pl Dat => [];
-      SF Pl Acc => [];
-      SF Pl Instr => [];
-      SF Pl Loc => [];
-      SF Pl Voc => []
-    };
-
-    oper mkNTable0683: Str -> SubstForm => Str; --%
-    oper mkNTable0683 lexem = 
-      let x = Predef.tk 1 lexem in
-    table { 
-      SF Sg Nom => x + "a";
-      SF Sg Gen => x + "i";
-      SF Sg Dat => x + "i";
-      SF Sg Acc => x + "[sg,acc]";
-      SF Sg Instr => x + "[sg,inst]";
-      SF Sg Loc => x + "i";
-      SF Sg Voc => x + "o";
-      SF Pl Nom => [];
-      SF Pl Gen => [];
-      SF Pl Dat => [];
-      SF Pl Acc => [];
-      SF Pl Instr => [];
-      SF Pl Loc => [];
-      SF Pl Voc => []
-    };
-
-    oper mkNTable0687: Str -> SubstForm => Str; --%
-    oper mkNTable0687 lexem = 
-      let x = Predef.tk 8 lexem in
-    table { 
-      SF Sg Nom => x + "[sg,nom]";
-      SF Sg Gen => x + "[sg,gen]";
-      SF Sg Dat => x + "[sg,dat]";
-      SF Sg Acc => x + "[sg,acc]";
-      SF Sg Instr => x + "[sg,inst]";
-      SF Sg Loc => x + "[sg,loc]";
-      SF Sg Voc => x + "[sg,voc]";
-      SF Pl Nom => [];
-      SF Pl Gen => [];
-      SF Pl Dat => [];
-      SF Pl Acc => [];
-      SF Pl Instr => [];
-      SF Pl Loc => [];
-      SF Pl Voc => []
-    };
-
-    oper mkNTable0695: Str -> SubstForm => Str; --%
-    oper mkNTable0695 lexem = 
-      let x = Predef.tk 7 lexem in
-    table { 
-      SF Sg Nom => x + "piastów";
-      SF Sg Gen => x + "Piastowa";
-      SF Sg Dat => x + "Piastowu";
-      SF Sg Acc => x + "piastów";
-      SF Sg Instr => x + "Piastowem";
-      SF Sg Loc => x + "piastowie";
-      SF Sg Voc => x + "piastowie";
-      SF Pl Nom => [];
-      SF Pl Gen => [];
-      SF Pl Dat => [];
-      SF Pl Acc => [];
-      SF Pl Instr => [];
-      SF Pl Loc => [];
-      SF Pl Voc => []
-    };
-
-    oper mkNTable0699: Str -> SubstForm => Str; --%
-    oper mkNTable0699 lexem = 
-      let x = Predef.tk 1 lexem in
-    table { 
-      SF Sg Nom => x + "o";
-      SF Sg Gen => x + "a";
-      SF Sg Dat => x + "owi";
-      SF Sg Acc => x + "a";
-      SF Sg Instr => x + "em";
-      SF Sg Loc => x + "u";
-      SF Sg Voc => x + "u";
-      SF Pl Nom => [];
-      SF Pl Gen => [];
-      SF Pl Dat => [];
-      SF Pl Acc => [];
-      SF Pl Instr => [];
-      SF Pl Loc => [];
-      SF Pl Voc => []
-    };
-
-    oper mkNTable0705: Str -> SubstForm => Str; --%
-    oper mkNTable0705 lexem = 
-      let x = Predef.tk 0 lexem in
-    table { 
-      SF Sg Nom => x + "";
-      SF Sg Gen => x + "na";
-      SF Sg Dat => x + "nowi";
-      SF Sg Acc => x + "na";
-      SF Sg Instr => x + "nem";
-      SF Sg Loc => x + "nie";
-      SF Sg Voc => x + "nie";
-      SF Pl Nom => [];
-      SF Pl Gen => [];
-      SF Pl Dat => [];
-      SF Pl Acc => [];
-      SF Pl Instr => [];
-      SF Pl Loc => [];
-      SF Pl Voc => []
-    };
-
-    oper mkNTable0712: Str -> SubstForm => Str; --%
-    oper mkNTable0712 lexem = 
-      let x = Predef.tk 7 lexem in
-    table { 
-      SF Sg Nom => x + "polanów";
-      SF Sg Gen => x + "Polanowa";
-      SF Sg Dat => x + "Polanowu";
-      SF Sg Acc => x + "polanów";
-      SF Sg Instr => x + "Polanowem";
-      SF Sg Loc => x + "Polanowie";
-      SF Sg Voc => x + "Polanowie";
-      SF Pl Nom => [];
-      SF Pl Gen => [];
-      SF Pl Dat => [];
-      SF Pl Acc => [];
-      SF Pl Instr => [];
-      SF Pl Loc => [];
-      SF Pl Voc => []
-    };
-
-    oper mkNTable0721: Str -> SubstForm => Str; --%
-    oper mkNTable0721 lexem = 
-      let x = Predef.tk 4 lexem in
-    table { 
-      SF Sg Nom => x + "Prut";
-      SF Sg Gen => x + "Prutu";
-      SF Sg Dat => x + "Prutowi";
-      SF Sg Acc => x + "Prut";
-      SF Sg Instr => x + "Prutem";
-      SF Sg Loc => x + "prucie";
-      SF Sg Voc => x + "prucie";
-      SF Pl Nom => [];
-      SF Pl Gen => [];
-      SF Pl Dat => [];
-      SF Pl Acc => [];
-      SF Pl Instr => [];
-      SF Pl Loc => [];
-      SF Pl Voc => []
-    };
-
-    oper mkNTable0728: Str -> SubstForm => Str; --%
-    oper mkNTable0728 lexem = 
-      let x = Predef.tk 8 lexem in
-    table { 
-      SF Sg Nom => x + "[sg,nom]";
-      SF Sg Gen => x + "u";
-      SF Sg Dat => x + "[sg,dat]";
-      SF Sg Acc => x + "[sg,acc]";
-      SF Sg Instr => x + "em";
-      SF Sg Loc => x + "u";
-      SF Sg Voc => x + "u";
-      SF Pl Nom => [];
-      SF Pl Gen => [];
-      SF Pl Dat => [];
-      SF Pl Acc => [];
-      SF Pl Instr => [];
-      SF Pl Loc => [];
-      SF Pl Voc => []
-    };
-
-    oper mkNTable0733: Str -> SubstForm => Str; --%
-    oper mkNTable0733 lexem = 
-      let x = Predef.tk 5 lexem in
-    table { 
-      SF Sg Nom => x + "raków";
-      SF Sg Gen => x + "Rakowa";
-      SF Sg Dat => x + "Rakowu";
-      SF Sg Acc => x + "raków";
-      SF Sg Instr => x + "Rakowem";
-      SF Sg Loc => x + "Rakowie";
-      SF Sg Voc => x + "Rakowie";
-      SF Pl Nom => [];
-      SF Pl Gen => [];
-      SF Pl Dat => [];
-      SF Pl Acc => [];
-      SF Pl Instr => [];
-      SF Pl Loc => [];
-      SF Pl Voc => []
-    };
-
-    oper mkNTable0738: Str -> SubstForm => Str; --%
-    oper mkNTable0738 lexem = 
-      let x = Predef.tk 5 lexem in
-    table { 
-      SF Sg Nom => x + "rogów";
-      SF Sg Gen => x + "Rogowa";
-      SF Sg Dat => x + "Rogowu";
-      SF Sg Acc => x + "rogów";
-      SF Sg Instr => x + "Rogowem";
-      SF Sg Loc => x + "Rogowie";
-      SF Sg Voc => x + "Rogowie";
-      SF Pl Nom => [];
-      SF Pl Gen => [];
-      SF Pl Dat => [];
-      SF Pl Acc => [];
-      SF Pl Instr => [];
-      SF Pl Loc => [];
-      SF Pl Voc => []
-    };
-
-    oper mkNTable0744: Str -> SubstForm => Str; --%
-    oper mkNTable0744 lexem = 
-      let x = Predef.tk 1 lexem in
-    table { 
-      SF Sg Nom => x + "a";
-      SF Sg Gen => x + "y";
-      SF Sg Dat => x + "y";
-      SF Sg Acc => x + "ę";
-      SF Sg Instr => x + "ą";
-      SF Sg Loc => x + "y";
-      SF Sg Voc => x + "o";
-      SF Pl Nom => [];
-      SF Pl Gen => [];
-      SF Pl Dat => [];
-      SF Pl Acc => [];
-      SF Pl Instr => [];
-      SF Pl Loc => [];
-      SF Pl Voc => []
-    };
-
-    oper mkNTable0745: Str -> SubstForm => Str; --%
-    oper mkNTable0745 lexem = 
-      let x = Predef.tk 6 lexem in
-    table { 
-      SF Sg Nom => x + "rożnów";
-      SF Sg Gen => x + "Rożnowa";
-      SF Sg Dat => x + "Rożnowu";
-      SF Sg Acc => x + "rożnów";
-      SF Sg Instr => x + "Rożnowem";
-      SF Sg Loc => x + "Rożnowie";
-      SF Sg Voc => x + "Rożnowie";
-      SF Pl Nom => [];
-      SF Pl Gen => [];
-      SF Pl Dat => [];
-      SF Pl Acc => [];
-      SF Pl Instr => [];
-      SF Pl Loc => [];
-      SF Pl Voc => []
-    };
-
-    oper mkNTable0749: Str -> SubstForm => Str; --%
-    oper mkNTable0749 lexem = 
-      let x = Predef.tk 4 lexem in
-    table { 
-      SF Sg Nom => x + "siec";
-      SF Sg Gen => x + "śca";
-      SF Sg Dat => x + "ścowi";
-      SF Sg Acc => x + "siec";
-      SF Sg Instr => x + "ścem";
-      SF Sg Loc => x + "ścu";
-      SF Sg Voc => x + "ścu";
-      SF Pl Nom => [];
-      SF Pl Gen => [];
-      SF Pl Dat => [];
-      SF Pl Acc => [];
-      SF Pl Instr => [];
-      SF Pl Loc => [];
-      SF Pl Voc => []
-    };
-
-    oper mkNTable0756: Str -> SubstForm => Str; --%
-    oper mkNTable0756 lexem = 
-      let x = Predef.tk 0 lexem in
-    table { 
-      SF Sg Nom => x + "";
-      SF Sg Gen => x + "a";
-      SF Sg Dat => x + "owi";
-      SF Sg Acc => x + "";
-      SF Sg Instr => x + "em";
-      SF Sg Loc => x + "ze";
-      SF Sg Voc => x + "ze";
-      SF Pl Nom => [];
-      SF Pl Gen => [];
-      SF Pl Dat => [];
-      SF Pl Acc => [];
-      SF Pl Instr => [];
-      SF Pl Loc => [];
-      SF Pl Voc => []
-    };
-
-    oper mkNTable0758: Str -> SubstForm => Str; --%
-    oper mkNTable0758 lexem = 
-      let x = Predef.tk 6 lexem in
-    table { 
-      SF Sg Nom => x + "Sambor";
-      SF Sg Gen => x + "Sambora";
-      SF Sg Dat => x + "Samborowi";
-      SF Sg Acc => x + "Sambor";
-      SF Sg Instr => x + "Samborem";
-      SF Sg Loc => x + "samborze";
-      SF Sg Voc => x + "samborze";
-      SF Pl Nom => [];
-      SF Pl Gen => [];
-      SF Pl Dat => [];
-      SF Pl Acc => [];
-      SF Pl Instr => [];
-      SF Pl Loc => [];
-      SF Pl Voc => []
-    };
-
-    oper mkNTable0767: Str -> SubstForm => Str; --%
-    oper mkNTable0767 lexem = 
-      let x = Predef.tk 6 lexem in
-    table { 
-      SF Sg Nom => x + "Sforza";
-      SF Sg Gen => x + "[sg,gen]";
-      SF Sg Dat => x + "[sg,dat]";
-      SF Sg Acc => x + "[sg,acc]";
-      SF Sg Instr => x + "[sg,inst]";
-      SF Sg Loc => x + "[sg,loc]";
-      SF Sg Voc => x + "[sg,voc]";
-      SF Pl Nom => [];
-      SF Pl Gen => [];
-      SF Pl Dat => [];
-      SF Pl Acc => [];
-      SF Pl Instr => [];
-      SF Pl Loc => [];
-      SF Pl Voc => []
-    };
-
-    oper mkNTable0770: Str -> SubstForm => Str; --%
-    oper mkNTable0770 lexem = 
-      let x = Predef.tk 7 lexem in
-    table { 
-      SF Sg Nom => x + "Siemień";
-      SF Sg Gen => x + "siemienia";
-      SF Sg Dat => x + "Siemieniowi";
-      SF Sg Acc => x + "Siemień";
-      SF Sg Instr => x + "siemieniem";
-      SF Sg Loc => x + "siemieniu";
-      SF Sg Voc => x + "siemieniu";
-      SF Pl Nom => [];
-      SF Pl Gen => [];
-      SF Pl Dat => [];
-      SF Pl Acc => [];
-      SF Pl Instr => [];
-      SF Pl Loc => [];
-      SF Pl Voc => []
-    };
-
-    oper mkNTable0776: Str -> SubstForm => Str; --%
-    oper mkNTable0776 lexem = 
-      let x = Predef.tk 2 lexem in
-    table { 
-      SF Sg Nom => x + "er";
-      SF Sg Gen => x + "ra";
-      SF Sg Dat => x + "rowi";
-      SF Sg Acc => x + "ra";
-      SF Sg Instr => x + "rem";
-      SF Sg Loc => x + "rze";
-      SF Sg Voc => x + "rze";
-      SF Pl Nom => [];
-      SF Pl Gen => [];
-      SF Pl Dat => [];
-      SF Pl Acc => [];
-      SF Pl Instr => [];
-      SF Pl Loc => [];
-      SF Pl Voc => []
-    };
-
-    oper mkNTable0777: Str -> SubstForm => Str; --%
-    oper mkNTable0777 lexem = 
-      let x = Predef.tk 2 lexem in
-    table { 
-      SF Sg Nom => x + "er";
-      SF Sg Gen => x + "ra";
-      SF Sg Dat => x + "rowi";
-      SF Sg Acc => x + "er";
-      SF Sg Instr => x + "rem";
-      SF Sg Loc => x + "rze";
-      SF Sg Voc => x + "rze";
-      SF Pl Nom => [];
-      SF Pl Gen => [];
-      SF Pl Dat => [];
-      SF Pl Acc => [];
-      SF Pl Instr => [];
-      SF Pl Loc => [];
-      SF Pl Voc => []
-    };
-
-    oper mkNTable0783: Str -> SubstForm => Str; --%
-    oper mkNTable0783 lexem = 
-      let x = Predef.tk 2 lexem in
-    table { 
-      SF Sg Nom => x + "ór";
-      SF Sg Gen => x + "oru";
-      SF Sg Dat => x + "orowi";
-      SF Sg Acc => x + "ór";
-      SF Sg Instr => x + "orem";
-      SF Sg Loc => x + "orze";
-      SF Sg Voc => x + "orze";
-      SF Pl Nom => [];
-      SF Pl Gen => [];
-      SF Pl Dat => [];
-      SF Pl Acc => [];
-      SF Pl Instr => [];
-      SF Pl Loc => [];
-      SF Pl Voc => []
-    };
-
-    oper mkNTable0786: Str -> SubstForm => Str; --%
-    oper mkNTable0786 lexem = 
-      let x = Predef.tk 7 lexem in
-    table { 
-      SF Sg Nom => x + "sokołów";
-      SF Sg Gen => x + "Sokołowa";
-      SF Sg Dat => x + "Sokołowowi";
-      SF Sg Acc => x + "sokołów";
-      SF Sg Instr => x + "Sokołowem";
-      SF Sg Loc => x + "Sokołowie";
-      SF Sg Voc => x + "Sokołowie";
-      SF Pl Nom => [];
-      SF Pl Gen => [];
-      SF Pl Dat => [];
-      SF Pl Acc => [];
-      SF Pl Instr => [];
-      SF Pl Loc => [];
-      SF Pl Voc => []
-    };
-
-    oper mkNTable0790: Str -> SubstForm => Str; --%
-    oper mkNTable0790 lexem = 
-      let x = Predef.tk 8 lexem in
-    table { 
-      SF Sg Nom => x + "[sg,nom]";
-      SF Sg Gen => x + "[sg,gen]";
-      SF Sg Dat => x + "[sg,dat]";
-      SF Sg Acc => x + "[sg,acc]";
-      SF Sg Instr => x + "[sg,inst]";
-      SF Sg Loc => x + "[sg,loc]";
-      SF Sg Voc => x + "[sg,voc]";
-      SF Pl Nom => [];
-      SF Pl Gen => [];
-      SF Pl Dat => [];
-      SF Pl Acc => [];
-      SF Pl Instr => [];
-      SF Pl Loc => [];
-      SF Pl Voc => []
-    };
-
-    oper mkNTable0800: Str -> SubstForm => Str; --%
-    oper mkNTable0800 lexem = 
-      let x = Predef.tk 7 lexem in
-    table { 
-      SF Sg Nom => x + "stryków";
-      SF Sg Gen => x + "Strykowa";
-      SF Sg Dat => x + "Strykowu";
-      SF Sg Acc => x + "stryków";
-      SF Sg Instr => x + "Strykowem";
-      SF Sg Loc => x + "strykowie";
-      SF Sg Voc => x + "strykowie";
-      SF Pl Nom => [];
-      SF Pl Gen => [];
-      SF Pl Dat => [];
-      SF Pl Acc => [];
-      SF Pl Instr => [];
-      SF Pl Loc => [];
-      SF Pl Voc => []
-    };
-
-    oper mkNTable0835: Str -> SubstForm => Str; --%
-    oper mkNTable0835 lexem = 
-      let x = Predef.tk 8 lexem in
-    table { 
-      SF Sg Nom => x + "trojanów";
-      SF Sg Gen => x + "Trojanowa";
-      SF Sg Dat => x + "Trojanowu";
-      SF Sg Acc => x + "trojanów";
-      SF Sg Instr => x + "Trojanowem";
-      SF Sg Loc => x + "Trojanowie";
-      SF Sg Voc => x + "Trojanowie";
-      SF Pl Nom => [];
-      SF Pl Gen => [];
-      SF Pl Dat => [];
-      SF Pl Acc => [];
-      SF Pl Instr => [];
-      SF Pl Loc => [];
-      SF Pl Voc => []
-    };
-
-    oper mkNTable0839: Str -> SubstForm => Str; --%
-    oper mkNTable0839 lexem = 
-      let x = Predef.tk 8 lexem in
-    table { 
-      SF Sg Nom => x + "[sg,nom]";
-      SF Sg Gen => x + "a";
-      SF Sg Dat => x + "[sg,dat]";
-      SF Sg Acc => x + "[sg,acc]";
-      SF Sg Instr => x + "em";
-      SF Sg Loc => x + "u";
-      SF Sg Voc => x + "u";
-      SF Pl Nom => [];
-      SF Pl Gen => [];
-      SF Pl Dat => [];
-      SF Pl Acc => [];
-      SF Pl Instr => [];
-      SF Pl Loc => [];
-      SF Pl Voc => []
-    };
-
-    oper mkNTable0843: Str -> SubstForm => Str; --%
-    oper mkNTable0843 lexem = 
-      let x = Predef.tk 2 lexem in
-    table { 
-      SF Sg Nom => x + "er";
-      SF Sg Gen => x + "ru";
-      SF Sg Dat => x + "rowi";
-      SF Sg Acc => x + "er";
-      SF Sg Instr => x + "rem";
-      SF Sg Loc => x + "rze";
-      SF Sg Voc => x + "rze";
-      SF Pl Nom => [];
-      SF Pl Gen => [];
-      SF Pl Dat => [];
-      SF Pl Acc => [];
-      SF Pl Instr => [];
-      SF Pl Loc => [];
-      SF Pl Voc => []
-    };
-
-    oper mkNTable0852: Str -> SubstForm => Str; --%
-    oper mkNTable0852 lexem = 
-      let x = Predef.tk 7 lexem in
-    table { 
-      SF Sg Nom => x + "urzędów";
-      SF Sg Gen => x + "Urzędowa";
-      SF Sg Dat => x + "Urzędowowi";
-      SF Sg Acc => x + "urzędów";
-      SF Sg Instr => x + "Urzędowem";
-      SF Sg Loc => x + "Urzędowie";
-      SF Sg Voc => x + "Urzędowie";
-      SF Pl Nom => [];
-      SF Pl Gen => [];
-      SF Pl Dat => [];
-      SF Pl Acc => [];
-      SF Pl Instr => [];
-      SF Pl Loc => [];
-      SF Pl Voc => []
-    };
-
-    oper mkNTable0869: Str -> SubstForm => Str; --%
-    oper mkNTable0869 lexem = 
-      let x = Predef.tk 2 lexem in
-    table { 
-      SF Sg Nom => x + "el";
-      SF Sg Gen => x + "la";
-      SF Sg Dat => x + "lowi";
-      SF Sg Acc => x + "la";
-      SF Sg Instr => x + "lem";
-      SF Sg Loc => x + "lu";
-      SF Sg Voc => x + "lu";
-      SF Pl Nom => [];
-      SF Pl Gen => [];
-      SF Pl Dat => [];
-      SF Pl Acc => [];
-      SF Pl Instr => [];
-      SF Pl Loc => [];
-      SF Pl Voc => []
-    };
-
-    oper mkNTable0872: Str -> SubstForm => Str; --%
-    oper mkNTable0872 lexem = 
-      let x = Predef.tk 8 lexem in
-    table { 
-      SF Sg Nom => x + "[sg,nom]";
-      SF Sg Gen => x + "i";
-      SF Sg Dat => x + "[sg,dat]";
-      SF Sg Acc => x + "[sg,acc]";
-      SF Sg Instr => x + "[sg,inst]";
-      SF Sg Loc => x + "[sg,loc]";
-      SF Sg Voc => x + "[sg,voc]";
-      SF Pl Nom => [];
-      SF Pl Gen => [];
-      SF Pl Dat => [];
-      SF Pl Acc => [];
-      SF Pl Instr => [];
-      SF Pl Loc => [];
-      SF Pl Voc => []
-    };
-
-    oper mkNTable0886: Str -> SubstForm => Str; --%
-    oper mkNTable0886 lexem = 
-      let x = Predef.tk 6 lexem in
-    table { 
-      SF Sg Nom => x + "wilków";
-      SF Sg Gen => x + "Wilkowa";
-      SF Sg Dat => x + "Wilkowu";
-      SF Sg Acc => x + "wilków";
-      SF Sg Instr => x + "Wilkowem";
-      SF Sg Loc => x + "Wilkowie";
-      SF Sg Voc => x + "Wilkowie";
-      SF Pl Nom => [];
-      SF Pl Gen => [];
-      SF Pl Dat => [];
-      SF Pl Acc => [];
-      SF Pl Instr => [];
-      SF Pl Loc => [];
-      SF Pl Voc => []
-    };
-
-    oper mkNTable0890: Str -> SubstForm => Str; --%
-    oper mkNTable0890 lexem = 
-      let x = Predef.tk 6 lexem in
-    table { 
-      SF Sg Nom => x + "wiązów";
-      SF Sg Gen => x + "Wiązowa";
-      SF Sg Dat => x + "Wiązowowi";
-      SF Sg Acc => x + "wiązów";
-      SF Sg Instr => x + "Wiązowem";
-      SF Sg Loc => x + "Wiązowie";
-      SF Sg Voc => x + "Wiązowie";
-      SF Pl Nom => [];
-      SF Pl Gen => [];
-      SF Pl Dat => [];
-      SF Pl Acc => [];
-      SF Pl Instr => [];
-      SF Pl Loc => [];
-      SF Pl Voc => []
-    };
-
-    oper mkNTable0893: Str -> SubstForm => Str; --%
-    oper mkNTable0893 lexem = 
-      let x = Predef.tk 5 lexem in
-    table { 
-      SF Sg Nom => x + "wołów";
-      SF Sg Gen => x + "Wołowa";
-      SF Sg Dat => x + "Wołowowi";
-      SF Sg Acc => x + "wołów";
-      SF Sg Instr => x + "Wołowem";
-      SF Sg Loc => x + "Wołowie";
-      SF Sg Voc => x + "Wołowie";
-      SF Pl Nom => [];
-      SF Pl Gen => [];
-      SF Pl Dat => [];
-      SF Pl Acc => [];
-      SF Pl Instr => [];
-      SF Pl Loc => [];
-      SF Pl Voc => []
-    };
-
-    oper mkNTable0904: Str -> SubstForm => Str; --%
-    oper mkNTable0904 lexem = 
-      let x = Predef.tk 7 lexem in
-    table { 
-      SF Sg Nom => x + "zaborów";
-      SF Sg Gen => x + "Zaborowa";
-      SF Sg Dat => x + "Zaborowu";
-      SF Sg Acc => x + "zaborów";
-      SF Sg Instr => x + "Zaborowem";
-      SF Sg Loc => x + "Zaborowie";
-      SF Sg Voc => x + "Zaborowie";
-      SF Pl Nom => [];
-      SF Pl Gen => [];
-      SF Pl Dat => [];
-      SF Pl Acc => [];
-      SF Pl Instr => [];
-      SF Pl Loc => [];
-      SF Pl Voc => []
-    };
-
-    oper mkNTable0910: Str -> SubstForm => Str; --%
-    oper mkNTable0910 lexem = 
-      let x = Predef.tk 5 lexem in
-    table { 
-      SF Sg Nom => x + "zelów";
-      SF Sg Gen => x + "Zelowa";
-      SF Sg Dat => x + "Zelowowi";
-      SF Sg Acc => x + "zelów";
-      SF Sg Instr => x + "Zelowem";
-      SF Sg Loc => x + "Zelowie";
-      SF Sg Voc => x + "Zelowie";
-      SF Pl Nom => [];
-      SF Pl Gen => [];
-      SF Pl Dat => [];
-      SF Pl Acc => [];
-      SF Pl Instr => [];
-      SF Pl Loc => [];
-      SF Pl Voc => []
-    };
-
-    oper mkNTable0911: Str -> SubstForm => Str; --%
-    oper mkNTable0911 lexem = 
-      let x = Predef.tk 8 lexem in
-    table { 
-      SF Sg Nom => x + "[sg,nom]";
-      SF Sg Gen => x + "a";
-      SF Sg Dat => x + "[sg,dat]";
-      SF Sg Acc => x + "a";
-      SF Sg Instr => x + "[sg,inst]";
-      SF Sg Loc => x + "u";
-      SF Sg Voc => x + "u";
-      SF Pl Nom => [];
-      SF Pl Gen => [];
-      SF Pl Dat => [];
-      SF Pl Acc => [];
-      SF Pl Instr => [];
-      SF Pl Loc => [];
-      SF Pl Voc => []
-    };
-
-    oper mkNTable0916: Str -> SubstForm => Str; --%
-    oper mkNTable0916 lexem = 
-      let x = Predef.tk 6 lexem in
-    table { 
-      SF Sg Nom => x + "złotów";
-      SF Sg Gen => x + "Złotowa";
-      SF Sg Dat => x + "Złotowu";
-      SF Sg Acc => x + "złotów";
-      SF Sg Instr => x + "Złotowem";
-      SF Sg Loc => x + "Złotowie";
-      SF Sg Voc => x + "Złotowie";
-      SF Pl Nom => [];
-      SF Pl Gen => [];
-      SF Pl Dat => [];
-      SF Pl Acc => [];
-      SF Pl Instr => [];
-      SF Pl Loc => [];
-      SF Pl Voc => []
-    };
-
-    oper mkNTable0962: Str -> SubstForm => Str; --%
-    oper mkNTable0962 lexem = 
-      let x = Predef.tk 8 lexem in
-    table { 
-      SF Sg Nom => x + "[sg,nom]";
-      SF Sg Gen => x + "[sg,gen]";
-      SF Sg Dat => x + "[sg,dat]";
-      SF Sg Acc => x + "[sg,acc]";
-      SF Sg Instr => x + "[sg,inst]";
-      SF Sg Loc => x + "[sg,loc]";
-      SF Sg Voc => x + "[sg,voc]";
-      SF Pl Nom => [];
-      SF Pl Gen => [];
-      SF Pl Dat => [];
-      SF Pl Acc => [];
-      SF Pl Instr => [];
-      SF Pl Loc => [];
-      SF Pl Voc => []
-    };
-
-    oper mkNTable1011: Str -> SubstForm => Str; --%
-    oper mkNTable1011 lexem = 
-      let x = Predef.tk 8 lexem in
-    table { 
-      SF Sg Nom => x + "[sg,nom]";
-      SF Sg Gen => x + "[sg,gen]";
-      SF Sg Dat => x + "[sg,dat]";
-      SF Sg Acc => x + "[sg,acc]";
-      SF Sg Instr => x + "[sg,inst]";
-      SF Sg Loc => x + "[sg,loc]";
-      SF Sg Voc => x + "[sg,voc]";
-      SF Pl Nom => [];
-      SF Pl Gen => [];
-      SF Pl Dat => [];
-      SF Pl Acc => [];
-      SF Pl Instr => [];
-      SF Pl Loc => [];
-      SF Pl Voc => []
-    };
-
-    oper mkNTable1060: Str -> SubstForm => Str; --%
-    oper mkNTable1060 lexem = 
-      let x = Predef.tk 8 lexem in
-    table { 
-      SF Sg Nom => x + "[sg,nom]";
-      SF Sg Gen => x + "[sg,gen]";
-      SF Sg Dat => x + "[sg,dat]";
-      SF Sg Acc => x + "[sg,acc]";
-      SF Sg Instr => x + "[sg,inst]";
-      SF Sg Loc => x + "[sg,loc]";
-      SF Sg Voc => x + "[sg,voc]";
-      SF Pl Nom => [];
-      SF Pl Gen => [];
-      SF Pl Dat => [];
-      SF Pl Acc => [];
-      SF Pl Instr => [];
-      SF Pl Loc => [];
-      SF Pl Voc => []
-    };
-
-    oper mkNTable1063: Str -> SubstForm => Str; --%
-    oper mkNTable1063 lexem = 
-      let x = Predef.tk 8 lexem in
-    table { 
-      SF Sg Nom => x + "[sg,nom]";
-      SF Sg Gen => x + "[sg,gen]";
-      SF Sg Dat => x + "[sg,dat]";
-      SF Sg Acc => x + "[sg,acc]";
-      SF Sg Instr => x + "[sg,inst]";
-      SF Sg Loc => x + "[sg,loc]";
-      SF Sg Voc => x + "[sg,voc]";
-      SF Pl Nom => [];
-      SF Pl Gen => [];
-      SF Pl Dat => [];
-      SF Pl Acc => [];
-      SF Pl Instr => [];
-      SF Pl Loc => [];
-      SF Pl Voc => []
-    };
-
-    oper mkNTable1077: Str -> SubstForm => Str; --%
-    oper mkNTable1077 lexem = 
-      let x = lexem in
-    table { 
-      SF Sg Nom => x + "";
-      SF Sg Gen => x + "";
-      SF Sg Dat => x + "";
-      SF Sg Acc => x + "";
-      SF Sg Instr => x + "";
-      SF Sg Loc => x + "";
-      SF Sg Voc => x + "";
-      SF Pl Nom => [];
-      SF Pl Gen => [];
-      SF Pl Dat => [];
-      SF Pl Acc => [];
-      SF Pl Instr => [];
-      SF Pl Loc => [];
-      SF Pl Voc => []
-    };
-
-    oper mkNTable1093: Str -> SubstForm => Str; --%
-    oper mkNTable1093 lexem = 
-      let x = Predef.tk 8 lexem in
-    table { 
-      SF Sg Nom => x + "[sg,nom]";
-      SF Sg Gen => x + "a";
-      SF Sg Dat => x + "[sg,dat]";
-      SF Sg Acc => x + "[sg,acc]";
-      SF Sg Instr => x + "em";
-      SF Sg Loc => x + "ie";
-      SF Sg Voc => x + "ie";
-      SF Pl Nom => [];
-      SF Pl Gen => [];
-      SF Pl Dat => [];
-      SF Pl Acc => [];
-      SF Pl Instr => [];
-      SF Pl Loc => [];
-      SF Pl Voc => []
-    };
-
-    oper mkNTable1095: Str -> SubstForm => Str; --%
-    oper mkNTable1095 lexem = 
-      let x = Predef.tk 8 lexem in
-    table { 
-      SF Sg Nom => x + "[sg,nom]";
-      SF Sg Gen => x + "a";
-      SF Sg Dat => x + "[sg,dat]";
-      SF Sg Acc => x + "[sg,acc]";
-      SF Sg Instr => x + "[sg,inst]";
-      SF Sg Loc => x + "[sg,loc]";
-      SF Sg Voc => x + "[sg,voc]";
-      SF Pl Nom => [];
-      SF Pl Gen => [];
-      SF Pl Dat => [];
-      SF Pl Acc => [];
-      SF Pl Instr => [];
-      SF Pl Loc => [];
-      SF Pl Voc => []
-    };
-
-    oper mkNTable1096: Str -> SubstForm => Str; --%
-    oper mkNTable1096 lexem = 
-      let x = Predef.tk 4 lexem in
-    table { 
-      SF Sg Nom => x + "dana";
-      SF Sg Gen => x + "[sg,gen]";
-      SF Sg Dat => x + "[sg,dat]";
-      SF Sg Acc => x + "Daną";
-      SF Sg Instr => x + "Daną";
-      SF Sg Loc => x + "[sg,loc]";
-      SF Sg Voc => x + "dana";
-      SF Pl Nom => [];
-      SF Pl Gen => [];
-      SF Pl Dat => [];
-      SF Pl Acc => [];
-      SF Pl Instr => [];
-      SF Pl Loc => [];
-      SF Pl Voc => []
-    };
-
-    oper mkNTable1110: Str -> SubstForm => Str; --%
-    oper mkNTable1110 lexem = 
-      let x = lexem in
-    table { 
-      SF Sg Nom => x + "[sg,nom]";
-      SF Sg Gen => x + "";
-      SF Sg Dat => x + "";
-      SF Sg Acc => x + "[sg,acc]";
-      SF Sg Instr => x + "[sg,inst]";
-      SF Sg Loc => x + "";
-      SF Sg Voc => x + "[sg,voc]";
-      SF Pl Nom => [];
-      SF Pl Gen => [];
-      SF Pl Dat => [];
-      SF Pl Acc => [];
-      SF Pl Instr => [];
-      SF Pl Loc => [];
-      SF Pl Voc => []
-    };
-
-    oper mkNTable1132: Str -> SubstForm => Str; --%
-    oper mkNTable1132 lexem = 
-      let x = Predef.tk 8 lexem in
-    table { 
-      SF Sg Nom => x + "[sg,nom]";
-      SF Sg Gen => x + "[sg,gen]";
-      SF Sg Dat => x + "[sg,dat]";
-      SF Sg Acc => x + "[sg,acc]";
-      SF Sg Instr => x + "[sg,inst]";
-      SF Sg Loc => x + "[sg,loc]";
-      SF Sg Voc => x + "[sg,voc]";
-      SF Pl Nom => [];
-      SF Pl Gen => [];
-      SF Pl Dat => [];
-      SF Pl Acc => [];
-      SF Pl Instr => [];
-      SF Pl Loc => [];
-      SF Pl Voc => []
-    };
-
-    oper mkNTable1151: Str -> SubstForm => Str; --%
-    oper mkNTable1151 lexem = 
-      let x = Predef.tk 1 lexem in
-    table { 
-      SF Sg Nom => x + "e";
-      SF Sg Gen => x + "[sg,gen]";
-      SF Sg Dat => x + "[sg,dat]";
-      SF Sg Acc => x + "e";
-      SF Sg Instr => x + "[sg,inst]";
-      SF Sg Loc => x + "[sg,loc]";
-      SF Sg Voc => x + "e";
-      SF Pl Nom => [];
-      SF Pl Gen => [];
-      SF Pl Dat => [];
-      SF Pl Acc => [];
-      SF Pl Instr => [];
-      SF Pl Loc => [];
-      SF Pl Voc => []
-    };
-
-    oper mkNTable1160: Str -> SubstForm => Str; --%
-    oper mkNTable1160 lexem = 
-      let x = Predef.tk 8 lexem in
-    table { 
-      SF Sg Nom => x + "[sg,nom]";
-      SF Sg Gen => x + "[sg,gen]";
-      SF Sg Dat => x + "[sg,dat]";
-      SF Sg Acc => x + "[sg,acc]";
-      SF Sg Instr => x + "[sg,inst]";
-      SF Sg Loc => x + "[sg,loc]";
-      SF Sg Voc => x + "[sg,voc]";
-      SF Pl Nom => [];
-      SF Pl Gen => [];
-      SF Pl Dat => [];
-      SF Pl Acc => [];
-      SF Pl Instr => [];
-      SF Pl Loc => [];
-      SF Pl Voc => []
-    };
-
-    oper mkNTable1164: Str -> SubstForm => Str; --%
-    oper mkNTable1164 lexem = 
-      let x = Predef.tk 4 lexem in
-    table { 
-      SF Sg Nom => x + "ziec";
-      SF Sg Gen => x + "źca";
-      SF Sg Dat => x + "źcowi";
-      SF Sg Acc => x + "ziec";
-      SF Sg Instr => x + "źcem";
-      SF Sg Loc => x + "źcu";
-      SF Sg Voc => x + "źcu";
-      SF Pl Nom => [];
-      SF Pl Gen => [];
-      SF Pl Dat => [];
-      SF Pl Acc => [];
-      SF Pl Instr => [];
-      SF Pl Loc => [];
-      SF Pl Voc => []
-    };
-
-    oper mkNTable1169: Str -> SubstForm => Str; --%
-    oper mkNTable1169 lexem = 
-      let x = Predef.tk 8 lexem in
-    table { 
-      SF Sg Nom => x + "[sg,nom]";
-      SF Sg Gen => x + "y";
-      SF Sg Dat => x + "[sg,dat]";
-      SF Sg Acc => x + "[sg,acc]";
-      SF Sg Instr => x + "[sg,inst]";
-      SF Sg Loc => x + "[sg,loc]";
-      SF Sg Voc => x + "[sg,voc]";
-      SF Pl Nom => [];
-      SF Pl Gen => [];
-      SF Pl Dat => [];
-      SF Pl Acc => [];
-      SF Pl Instr => [];
-      SF Pl Loc => [];
-      SF Pl Voc => []
-    };
-
-    oper mkNTable1171: Str -> SubstForm => Str; --%
-    oper mkNTable1171 lexem = 
-      let x = Predef.tk 8 lexem in
-    table { 
-      SF Sg Nom => x + "[sg,nom]";
-      SF Sg Gen => x + "[sg,gen]";
-      SF Sg Dat => x + "[sg,dat]";
-      SF Sg Acc => x + "[sg,acc]";
-      SF Sg Instr => x + "[sg,inst]";
-      SF Sg Loc => x + "[sg,loc]";
-      SF Sg Voc => x + "[sg,voc]";
-      SF Pl Nom => [];
-      SF Pl Gen => [];
-      SF Pl Dat => [];
-      SF Pl Acc => [];
-      SF Pl Instr => [];
-      SF Pl Loc => [];
-      SF Pl Voc => []
-    };
-
-    oper mkNTable1192: Str -> SubstForm => Str; --%
-    oper mkNTable1192 lexem = 
-      let x = Predef.tk 8 lexem in
-    table { 
-      SF Sg Nom => x + "[sg,nom]";
-      SF Sg Gen => x + "[sg,gen]";
-      SF Sg Dat => x + "[sg,dat]";
-      SF Sg Acc => x + "[sg,acc]";
-      SF Sg Instr => x + "[sg,inst]";
-      SF Sg Loc => x + "[sg,loc]";
-      SF Sg Voc => x + "[sg,voc]";
-      SF Pl Nom => [];
-      SF Pl Gen => [];
-      SF Pl Dat => [];
-      SF Pl Acc => [];
-      SF Pl Instr => [];
-      SF Pl Loc => [];
-      SF Pl Voc => []
-    };
-
-    oper mkNTable1194: Str -> SubstForm => Str; --%
-    oper mkNTable1194 lexem = 
-      let x = Predef.tk 8 lexem in
-    table { 
-      SF Sg Nom => x + "[sg,nom]";
-      SF Sg Gen => x + "a";
-      SF Sg Dat => x + "u";
-      SF Sg Acc => x + "[sg,acc]";
-      SF Sg Instr => x + "em";
-      SF Sg Loc => x + "u";
-      SF Sg Voc => x + "[sg,voc]";
-      SF Pl Nom => [];
-      SF Pl Gen => [];
-      SF Pl Dat => [];
-      SF Pl Acc => [];
-      SF Pl Instr => [];
-      SF Pl Loc => [];
-      SF Pl Voc => []
-    };
-
-    oper mkNTable1217: Str -> SubstForm => Str; --%
-    oper mkNTable1217 lexem = 
-      let x = Predef.tk 2 lexem in
-    table { 
-      SF Sg Nom => x + "ek";
-      SF Sg Gen => x + "[sg,gen]";
-      SF Sg Dat => x + "[sg,dat]";
-      SF Sg Acc => x + "[sg,acc]";
-      SF Sg Instr => x + "[sg,inst]";
-      SF Sg Loc => x + "[sg,loc]";
-      SF Sg Voc => x + "[sg,voc]";
-      SF Pl Nom => [];
-      SF Pl Gen => [];
-      SF Pl Dat => [];
-      SF Pl Acc => [];
-      SF Pl Instr => [];
-      SF Pl Loc => [];
-      SF Pl Voc => []
-    };
-
-    oper mkNTable1286: Str -> SubstForm => Str; --%
-    oper mkNTable1286 lexem = 
-      let x = Predef.tk 8 lexem in
-    table { 
-      SF Sg Nom => x + "[sg,nom]";
-      SF Sg Gen => x + "[sg,gen]";
-      SF Sg Dat => x + "[sg,dat]";
-      SF Sg Acc => x + "[sg,acc]";
-      SF Sg Instr => x + "[sg,inst]";
-      SF Sg Loc => x + "[sg,loc]";
-      SF Sg Voc => x + "[sg,voc]";
-      SF Pl Nom => [];
-      SF Pl Gen => [];
-      SF Pl Dat => [];
-      SF Pl Acc => [];
-      SF Pl Instr => [];
-      SF Pl Loc => [];
-      SF Pl Voc => []
-    };
-
-    oper mkNTable1300: Str -> SubstForm => Str; --%
-    oper mkNTable1300 lexem = 
-      let x = Predef.tk 8 lexem in
-    table { 
-      SF Sg Nom => x + "[sg,nom]";
-      SF Sg Gen => x + "y";
-      SF Sg Dat => x + "y";
-      SF Sg Acc => x + "[sg,acc]";
-      SF Sg Instr => x + "ą";
-      SF Sg Loc => x + "y";
-      SF Sg Voc => x + "y";
-      SF Pl Nom => [];
-      SF Pl Gen => [];
-      SF Pl Dat => [];
-      SF Pl Acc => [];
-      SF Pl Instr => [];
-      SF Pl Loc => [];
-      SF Pl Voc => []
-    };
-
-    oper mkNTable1302: Str -> SubstForm => Str; --%
-    oper mkNTable1302 lexem = 
-      let x = Predef.tk 8 lexem in
-    table { 
-      SF Sg Nom => x + "[sg,nom]";
-      SF Sg Gen => x + "[sg,gen]";
-      SF Sg Dat => x + "[sg,dat]";
-      SF Sg Acc => x + "[sg,acc]";
-      SF Sg Instr => x + "[sg,inst]";
-      SF Sg Loc => x + "ie";
-      SF Sg Voc => x + "ie";
-      SF Pl Nom => [];
-      SF Pl Gen => [];
-      SF Pl Dat => [];
-      SF Pl Acc => [];
-      SF Pl Instr => [];
-      SF Pl Loc => [];
-      SF Pl Voc => []
-    };
-
-    oper mkNTable1319: Str -> SubstForm => Str; --%
-    oper mkNTable1319 lexem = 
-      let x = Predef.tk 8 lexem in
-    table { 
-      SF Sg Nom => x + "[sg,nom]";
-      SF Sg Gen => x + "[sg,gen]";
-      SF Sg Dat => x + "u";
-      SF Sg Acc => x + "[sg,acc]";
-      SF Sg Instr => x + "em";
-      SF Sg Loc => x + "ie";
-      SF Sg Voc => x + "[sg,voc]";
-      SF Pl Nom => [];
-      SF Pl Gen => [];
-      SF Pl Dat => [];
-      SF Pl Acc => [];
-      SF Pl Instr => [];
-      SF Pl Loc => [];
-      SF Pl Voc => []
-    };
-
-    oper mkNTable1326: Str -> SubstForm => Str; --%
-    oper mkNTable1326 lexem = 
-      let x = Predef.tk 0 lexem in
-    table { 
-      SF Sg Nom => x + "";
-      SF Sg Gen => x + "[sg,gen]";
-      SF Sg Dat => x + "[sg,dat]";
-      SF Sg Acc => x + "";
-      SF Sg Instr => x + "[sg,inst]";
-      SF Sg Loc => x + "zie";
-      SF Sg Voc => x + "zie";
-      SF Pl Nom => [];
-      SF Pl Gen => [];
-      SF Pl Dat => [];
-      SF Pl Acc => [];
-      SF Pl Instr => [];
-      SF Pl Loc => [];
-      SF Pl Voc => []
-    };
-
-    oper mkNTable1327: Str -> SubstForm => Str; --%
-    oper mkNTable1327 lexem = 
-      let x = Predef.tk 0 lexem in
-    table { 
-      SF Sg Nom => x + "";
-      SF Sg Gen => x + "[sg,gen]";
-      SF Sg Dat => x + "[sg,dat]";
-      SF Sg Acc => x + "";
-      SF Sg Instr => x + "[sg,inst]";
-      SF Sg Loc => x + "ie";
-      SF Sg Voc => x + "ie";
-      SF Pl Nom => [];
-      SF Pl Gen => [];
-      SF Pl Dat => [];
-      SF Pl Acc => [];
-      SF Pl Instr => [];
-      SF Pl Loc => [];
-      SF Pl Voc => []
-    };
-
-    oper mkNTable1335: Str -> SubstForm => Str; --%
-    oper mkNTable1335 lexem = 
-      let x = Predef.tk 1 lexem in
-    table { 
-      SF Sg Nom => x + "a";
-      SF Sg Gen => x + "y";
-      SF Sg Dat => x + "[sg,dat]";
-      SF Sg Acc => x + "[sg,acc]";
-      SF Sg Instr => x + "[sg,inst]";
-      SF Sg Loc => x + "[sg,loc]";
-      SF Sg Voc => x + "[sg,voc]";
-      SF Pl Nom => [];
-      SF Pl Gen => [];
-      SF Pl Dat => [];
-      SF Pl Acc => [];
-      SF Pl Instr => [];
-      SF Pl Loc => [];
-      SF Pl Voc => []
-    };
-
-    oper mkNTable1347: Str -> SubstForm => Str; --%
-    oper mkNTable1347 lexem = 
-      let x = Predef.tk 2 lexem in
-    table { 
-      SF Sg Nom => x + "ek";
-      SF Sg Gen => x + "ku";
-      SF Sg Dat => x + "kowi";
-      SF Sg Acc => x + "ek";
-      SF Sg Instr => x + "kiem";
-      SF Sg Loc => x + "ku";
-      SF Sg Voc => x + "ku";
-      SF Pl Nom => [];
-      SF Pl Gen => [];
-      SF Pl Dat => [];
-      SF Pl Acc => [];
-      SF Pl Instr => [];
-      SF Pl Loc => [];
-      SF Pl Voc => []
-    };
-
-    oper mkNTable1354: Str -> SubstForm => Str; --%
-    oper mkNTable1354 lexem = 
-      let x = Predef.tk 8 lexem in
-    table { 
-      SF Sg Nom => x + "[sg,nom]";
-      SF Sg Gen => x + "[sg,gen]";
-      SF Sg Dat => x + "[sg,dat]";
-      SF Sg Acc => x + "[sg,acc]";
-      SF Sg Instr => x + "[sg,inst]";
-      SF Sg Loc => x + "[sg,loc]";
-      SF Sg Voc => x + "[sg,voc]";
-      SF Pl Nom => [];
-      SF Pl Gen => [];
-      SF Pl Dat => [];
-      SF Pl Acc => [];
-      SF Pl Instr => [];
-      SF Pl Loc => [];
-      SF Pl Voc => []
-    };
-
-    oper mkNTable1365: Str -> SubstForm => Str; --%
-    oper mkNTable1365 lexem = 
-      let x = Predef.tk 8 lexem in
-    table { 
-      SF Sg Nom => x + "[sg,nom]";
-      SF Sg Gen => x + "[sg,gen]";
-      SF Sg Dat => x + "[sg,dat]";
-      SF Sg Acc => x + "[sg,acc]";
-      SF Sg Instr => x + "[sg,inst]";
-      SF Sg Loc => x + "[sg,loc]";
-      SF Sg Voc => x + "[sg,voc]";
-      SF Pl Nom => [];
-      SF Pl Gen => [];
-      SF Pl Dat => [];
-      SF Pl Acc => [];
-      SF Pl Instr => [];
-      SF Pl Loc => [];
-      SF Pl Voc => []
-    };
-
-    oper mkNTable1379: Str -> SubstForm => Str; --%
-    oper mkNTable1379 lexem = 
-      let x = Predef.tk 1 lexem in
-    table { 
-      SF Sg Nom => x + "a";
-      SF Sg Gen => x + "[sg,gen]";
-      SF Sg Dat => x + "[sg,dat]";
-      SF Sg Acc => x + "[sg,acc]";
-      SF Sg Instr => x + "[sg,inst]";
-      SF Sg Loc => x + "[sg,loc]";
-      SF Sg Voc => x + "[sg,voc]";
-      SF Pl Nom => [];
-      SF Pl Gen => [];
-      SF Pl Dat => [];
-      SF Pl Acc => [];
-      SF Pl Instr => [];
-      SF Pl Loc => [];
-      SF Pl Voc => []
-    };
-
-    oper mkNTable1408: Str -> SubstForm => Str; --%
-    oper mkNTable1408 lexem = 
-      let x = Predef.tk 8 lexem in
-    table { 
-      SF Sg Nom => x + "[sg,nom]";
-      SF Sg Gen => x + "[sg,gen]";
-      SF Sg Dat => x + "u";
-      SF Sg Acc => x + "[sg,acc]";
-      SF Sg Instr => x + "em";
-      SF Sg Loc => x + "u";
-      SF Sg Voc => x + "[sg,voc]";
-      SF Pl Nom => [];
-      SF Pl Gen => [];
-      SF Pl Dat => [];
-      SF Pl Acc => [];
-      SF Pl Instr => [];
-      SF Pl Loc => [];
-      SF Pl Voc => []
-    };
-
-    oper mkNTable1413: Str -> SubstForm => Str; --%
-    oper mkNTable1413 lexem = 
-      let x = Predef.tk 3 lexem in
-    table { 
-      SF Sg Nom => x + "cie";
-      SF Sg Gen => x + "[sg,gen]";
-      SF Sg Dat => x + "[sg,dat]";
-      SF Sg Acc => x + "cie";
-      SF Sg Instr => x + "[sg,inst]";
-      SF Sg Loc => x + "[sg,loc]";
-      SF Sg Voc => x + "cie";
-      SF Pl Nom => [];
-      SF Pl Gen => [];
-      SF Pl Dat => [];
-      SF Pl Acc => [];
-      SF Pl Instr => [];
-      SF Pl Loc => [];
-      SF Pl Voc => []
-    };
-
-    oper mkNTable1438: Str -> SubstForm => Str; --%
-    oper mkNTable1438 lexem = 
-      let x = Predef.tk 8 lexem in
-    table { 
-      SF Sg Nom => x + "[sg,nom]";
-      SF Sg Gen => x + "[sg,gen]";
-      SF Sg Dat => x + "[sg,dat]";
-      SF Sg Acc => x + "[sg,acc]";
-      SF Sg Instr => x + "[sg,inst]";
-      SF Sg Loc => x + "[sg,loc]";
-      SF Sg Voc => x + "[sg,voc]";
-      SF Pl Nom => [];
-      SF Pl Gen => [];
-      SF Pl Dat => [];
-      SF Pl Acc => [];
-      SF Pl Instr => [];
-      SF Pl Loc => [];
-      SF Pl Voc => []
-    };
-
-    oper mkNTable1466: Str -> SubstForm => Str; --%
-    oper mkNTable1466 lexem = 
-      let x = Predef.tk 0 lexem in
-    table { 
-      SF Sg Nom => x + "";
-      SF Sg Gen => x + "[sg,gen]";
-      SF Sg Dat => x + "[sg,dat]";
-      SF Sg Acc => x + "[sg,acc]";
-      SF Sg Instr => x + "[sg,inst]";
-      SF Sg Loc => x + "[sg,loc]";
-      SF Sg Voc => x + "[sg,voc]";
-      SF Pl Nom => [];
-      SF Pl Gen => [];
-      SF Pl Dat => [];
-      SF Pl Acc => [];
-      SF Pl Instr => [];
-      SF Pl Loc => [];
-      SF Pl Voc => []
-    };
-
-    oper mkNTable1467: Str -> SubstForm => Str; --%
-    oper mkNTable1467 lexem = 
-      let x = Predef.tk 3 lexem in
-    table { 
-      SF Sg Nom => x + "iec";
-      SF Sg Gen => x + "ca";
-      SF Sg Dat => x + "cowi";
-      SF Sg Acc => x + "ca";
-      SF Sg Instr => x + "cem";
-      SF Sg Loc => x + "cu";
-      SF Sg Voc => x + "cu";
-      SF Pl Nom => [];
-      SF Pl Gen => [];
-      SF Pl Dat => [];
-      SF Pl Acc => [];
-      SF Pl Instr => [];
-      SF Pl Loc => [];
-      SF Pl Voc => []
-    };
-
-    oper mkNTable1484: Str -> SubstForm => Str; --%
-    oper mkNTable1484 lexem = 
-      let x = Predef.tk 8 lexem in
-    table { 
-      SF Sg Nom => x + "[sg,nom]";
-      SF Sg Gen => x + "[sg,gen]";
-      SF Sg Dat => x + "[sg,dat]";
-      SF Sg Acc => x + "[sg,acc]";
-      SF Sg Instr => x + "[sg,inst]";
-      SF Sg Loc => x + "[sg,loc]";
-      SF Sg Voc => x + "[sg,voc]";
-      SF Pl Nom => [];
-      SF Pl Gen => [];
-      SF Pl Dat => [];
-      SF Pl Acc => [];
-      SF Pl Instr => [];
-      SF Pl Loc => [];
-      SF Pl Voc => []
-    };
-
-    oper mkNTable1486: Str -> SubstForm => Str; --%
-    oper mkNTable1486 lexem = 
-      let x = Predef.tk 1 lexem in
-    table { 
-      SF Sg Nom => x + "o";
-      SF Sg Gen => x + "[sg,gen]";
-      SF Sg Dat => x + "[sg,dat]";
-      SF Sg Acc => x + "o";
-      SF Sg Instr => x + "[sg,inst]";
-      SF Sg Loc => x + "ze";
-      SF Sg Voc => x + "o";
-      SF Pl Nom => [];
-      SF Pl Gen => [];
-      SF Pl Dat => [];
-      SF Pl Acc => [];
-      SF Pl Instr => [];
-      SF Pl Loc => [];
-      SF Pl Voc => []
-    };
-
-    oper mkNTable1490: Str -> SubstForm => Str; --%
-    oper mkNTable1490 lexem = 
-      let x = Predef.tk 8 lexem in
-    table { 
-      SF Sg Nom => x + "[sg,nom]";
-      SF Sg Gen => x + "a";
-      SF Sg Dat => x + "[sg,dat]";
-      SF Sg Acc => x + "[sg,acc]";
-      SF Sg Instr => x + "[sg,inst]";
-      SF Sg Loc => x + "ie";
-      SF Sg Voc => x + "ie";
-      SF Pl Nom => [];
-      SF Pl Gen => [];
-      SF Pl Dat => [];
-      SF Pl Acc => [];
-      SF Pl Instr => [];
-      SF Pl Loc => [];
-      SF Pl Voc => []
-    };
-
-    oper mkNTable1492: Str -> SubstForm => Str; --%
-    oper mkNTable1492 lexem = 
-      let x = Predef.tk 5 lexem in
-    table { 
-      SF Sg Nom => x + "łuków";
-      SF Sg Gen => x + "Łukowa";
-      SF Sg Dat => x + "Łukowowi";
-      SF Sg Acc => x + "łuków";
-      SF Sg Instr => x + "Łukowem";
-      SF Sg Loc => x + "Łukowie";
-      SF Sg Voc => x + "Łukowie";
-      SF Pl Nom => [];
-      SF Pl Gen => [];
-      SF Pl Dat => [];
-      SF Pl Acc => [];
-      SF Pl Instr => [];
-      SF Pl Loc => [];
-      SF Pl Voc => []
-    };
-
-    oper mkNTable1493: Str -> SubstForm => Str; --%
-    oper mkNTable1493 lexem = 
-      let x = Predef.tk 6 lexem in
-    table { 
-      SF Sg Nom => x + "łupków";
-      SF Sg Gen => x + "Łupkowa";
-      SF Sg Dat => x + "Łupkowowi";
-      SF Sg Acc => x + "łupków";
-      SF Sg Instr => x + "Łupkowem";
-      SF Sg Loc => x + "Łupkowie";
-      SF Sg Voc => x + "Łupkowie";
-      SF Pl Nom => [];
-      SF Pl Gen => [];
-      SF Pl Dat => [];
-      SF Pl Acc => [];
-      SF Pl Instr => [];
-      SF Pl Loc => [];
-      SF Pl Voc => []
-    };
-
-    oper mkNTable1497: Str -> SubstForm => Str; --%
-    oper mkNTable1497 lexem = 
-      let x = Predef.tk 5 lexem in
-    table { 
-      SF Sg Nom => x + "żarów";
-      SF Sg Gen => x + "Żarowa";
-      SF Sg Dat => x + "Żarowu";
-      SF Sg Acc => x + "żarów";
-      SF Sg Instr => x + "Żarowem";
-      SF Sg Loc => x + "Żarowie";
-      SF Sg Voc => x + "Żarowie";
-      SF Pl Nom => [];
-      SF Pl Gen => [];
-      SF Pl Dat => [];
-      SF Pl Acc => [];
-      SF Pl Instr => [];
-      SF Pl Loc => [];
-      SF Pl Voc => []
-    };
-
-    oper mkNTable1499: Str -> SubstForm => Str; --%
-    oper mkNTable1499 lexem = 
-      let x = Predef.tk 3 lexem in
-    table { 
-      SF Sg Nom => x + "órz";
-      SF Sg Gen => x + "orza";
-      SF Sg Dat => x + "orzowi";
-      SF Sg Acc => x + "órz";
-      SF Sg Instr => x + "orzem";
-      SF Sg Loc => x + "orzu";
-      SF Sg Voc => x + "orzu";
-      SF Pl Nom => [];
-      SF Pl Gen => [];
-      SF Pl Dat => [];
-      SF Pl Acc => [];
-      SF Pl Instr => [];
-      SF Pl Loc => [];
-      SF Pl Voc => []
-    };
-
-    oper mkNTable1512: Str -> SubstForm => Str; --%
-    oper mkNTable1512 lexem = 
-      let x = Predef.tk 8 lexem in
-    table { 
-      SF Sg Nom => x + "[sg,nom]";
-      SF Sg Gen => x + "a";
-      SF Sg Dat => x + "[sg,dat]";
-      SF Sg Acc => x + "a";
-      SF Sg Instr => x + "[sg,inst]";
-      SF Sg Loc => x + "ze";
-      SF Sg Voc => x + "ze";
-      SF Pl Nom => [];
-      SF Pl Gen => [];
-      SF Pl Dat => [];
-      SF Pl Acc => [];
-      SF Pl Instr => [];
-      SF Pl Loc => [];
-      SF Pl Voc => []
-    };
-
-    oper mkNTable0046: Str -> SubstForm => Str; --%
-    oper mkNTable0046 lexem = 
-      let x = Predef.tk 1 lexem in
-    table { 
-      SF Sg Nom => x + "y";
-      SF Sg Gen => x + "ów";
-      SF Sg Dat => x + "om";
-      SF Sg Acc => x + "y";
-      SF Sg Instr => x + "ami";
-      SF Sg Loc => x + "ach";
-      SF Sg Voc => x + "y";
-      SF Pl Nom => x + "y";
-      SF Pl Gen => x + "ów";
-      SF Pl Dat => x + "om";
-      SF Pl Acc => x + "y";
-      SF Pl Instr => x + "ami";
-      SF Pl Loc => x + "ach";
-      SF Pl Voc => x + "y"
-    };
-
-    oper mkNTable0054: Str -> SubstForm => Str; --%
-    oper mkNTable0054 lexem = 
-      let x = Predef.tk 1 lexem in
-    table { 
-      SF Sg Nom => x + "y";
-      SF Sg Gen => x + "";
-      SF Sg Dat => x + "om";
-      SF Sg Acc => x + "y";
-      SF Sg Instr => x + "ami";
-      SF Sg Loc => x + "ach";
-      SF Sg Voc => x + "y";
-      SF Pl Nom => x + "y";
-      SF Pl Gen => x + "";
-      SF Pl Dat => x + "om";
-      SF Pl Acc => x + "y";
-      SF Pl Instr => x + "ami";
-      SF Pl Loc => x + "ach";
-      SF Pl Voc => x + "y"
-    };
-
-    oper mkNTable0081: Str -> SubstForm => Str; --%
-    oper mkNTable0081 lexem = 
-      let x = Predef.tk 1 lexem in
-    table { 
-      SF Sg Nom => x + "e";
-      SF Sg Gen => x + "i";
-      SF Sg Dat => x + "om";
-      SF Sg Acc => x + "e";
-      SF Sg Instr => x + "ami";
-      SF Sg Loc => x + "ach";
-      SF Sg Voc => x + "e";
-      SF Pl Nom => x + "e";
-      SF Pl Gen => x + "i";
-      SF Pl Dat => x + "om";
-      SF Pl Acc => x + "e";
-      SF Pl Instr => x + "ami";
-      SF Pl Loc => x + "ach";
-      SF Pl Voc => x + "e"
-    };
-
-    oper mkNTable0087: Str -> SubstForm => Str; --%
-    oper mkNTable0087 lexem = 
-      let x = Predef.tk 2 lexem in
-    table { 
-      SF Sg Nom => x + "ci";
-      SF Sg Gen => x + "tów";
-      SF Sg Dat => x + "tom";
-      SF Sg Acc => x + "tów";
-      SF Sg Instr => x + "tami";
-      SF Sg Loc => x + "tach";
-      SF Sg Voc => x + "ci";
-      SF Pl Nom => x + "ci";
-      SF Pl Gen => x + "tów";
-      SF Pl Dat => x + "tom";
-      SF Pl Acc => x + "tów";
-      SF Pl Instr => x + "tami";
-      SF Pl Loc => x + "tach";
-      SF Pl Voc => x + "ci"
-    };
-
-    oper mkNTable0107: Str -> SubstForm => Str; --%
-    oper mkNTable0107 lexem = 
-      let x = Predef.tk 0 lexem in
-    table { 
-      SF Sg Nom => x + "";
-      SF Sg Gen => x + "";
-      SF Sg Dat => x + "";
-      SF Sg Acc => x + "";
-      SF Sg Instr => x + "";
-      SF Sg Loc => x + "";
-      SF Sg Voc => x + "";
-      SF Pl Nom => x + "";
-      SF Pl Gen => x + "";
-      SF Pl Dat => x + "";
-      SF Pl Acc => x + "";
-      SF Pl Instr => x + "";
-      SF Pl Loc => x + "";
-      SF Pl Voc => x + ""
-    };
-
-    oper mkNTable0109: Str -> SubstForm => Str; --%
-    oper mkNTable0109 lexem = 
-      let x = Predef.tk 1 lexem in
-    table { 
-      SF Sg Nom => x + "e";
-      SF Sg Gen => x + "";
-      SF Sg Dat => x + "om";
-      SF Sg Acc => x + "e";
-      SF Sg Instr => x + "ami";
-      SF Sg Loc => x + "ach";
-      SF Sg Voc => x + "e";
-      SF Pl Nom => x + "e";
-      SF Pl Gen => x + "";
-      SF Pl Dat => x + "om";
-      SF Pl Acc => x + "e";
-      SF Pl Instr => x + "ami";
-      SF Pl Loc => x + "ach";
-      SF Pl Voc => x + "e"
-    };
-
-    oper mkNTable0149: Str -> SubstForm => Str; --%
-    oper mkNTable0149 lexem = 
-      let x = Predef.tk 1 lexem in
-    table { 
-      SF Sg Nom => x + "i";
-      SF Sg Gen => x + "ów";
-      SF Sg Dat => x + "om";
-      SF Sg Acc => x + "i";
-      SF Sg Instr => x + "ami";
-      SF Sg Loc => x + "ach";
-      SF Sg Voc => x + "i";
-      SF Pl Nom => x + "i";
-      SF Pl Gen => x + "ów";
-      SF Pl Dat => x + "om";
-      SF Pl Acc => x + "i";
-      SF Pl Instr => x + "ami";
-      SF Pl Loc => x + "ach";
-      SF Pl Voc => x + "i"
-    };
-
-    oper mkNTable0157: Str -> SubstForm => Str; --%
-    oper mkNTable0157 lexem = 
-      let x = Predef.tk 3 lexem in
-    table { 
-      SF Sg Nom => x + "ęta";
-      SF Sg Gen => x + "ąt";
-      SF Sg Dat => x + "ętom";
-      SF Sg Acc => x + "ęta";
-      SF Sg Instr => x + "ętami";
-      SF Sg Loc => x + "ętach";
-      SF Sg Voc => x + "ęta";
-      SF Pl Nom => x + "ęta";
-      SF Pl Gen => x + "ąt";
-      SF Pl Dat => x + "ętom";
-      SF Pl Acc => x + "ęta";
-      SF Pl Instr => x + "ętami";
-      SF Pl Loc => x + "ętach";
-      SF Pl Voc => x + "ęta"
-    };
-
-    oper mkNTable0160: Str -> SubstForm => Str; --%
-    oper mkNTable0160 lexem = 
-      let x = Predef.tk 1 lexem in
-    table { 
-      SF Sg Nom => x + "i";
-      SF Sg Gen => x + "";
-      SF Sg Dat => x + "om";
-      SF Sg Acc => x + "i";
-      SF Sg Instr => x + "ami";
-      SF Sg Loc => x + "ach";
-      SF Sg Voc => x + "i";
-      SF Pl Nom => x + "i";
-      SF Pl Gen => x + "";
-      SF Pl Dat => x + "om";
-      SF Pl Acc => x + "i";
-      SF Pl Instr => x + "ami";
-      SF Pl Loc => x + "ach";
-      SF Pl Voc => x + "i"
-    };
-
-    oper mkNTable0181: Str -> SubstForm => Str; --%
-    oper mkNTable0181 lexem = 
-      let x = Predef.tk 3 lexem in
-    table { 
-      SF Sg Nom => x + "ćki";
-      SF Sg Gen => x + "ciek";
-      SF Sg Dat => x + "ćkom";
-      SF Sg Acc => x + "ćki";
-      SF Sg Instr => x + "ćkami";
-      SF Sg Loc => x + "ćkach";
-      SF Sg Voc => x + "ćki";
-      SF Pl Nom => x + "ćki";
-      SF Pl Gen => x + "ciek";
-      SF Pl Dat => x + "ćkom";
-      SF Pl Acc => x + "ćki";
-      SF Pl Instr => x + "ćkami";
-      SF Pl Loc => x + "ćkach";
-      SF Pl Voc => x + "ćki"
-    };
-
-    oper mkNTable0214: Str -> SubstForm => Str; --%
-    oper mkNTable0214 lexem = 
-      let x = Predef.tk 3 lexem in
-    table { 
-      SF Sg Nom => x + "owy";
-      SF Sg Gen => x + "ów";
-      SF Sg Dat => x + "owom";
-      SF Sg Acc => x + "owy";
-      SF Sg Instr => x + "owami";
-      SF Sg Loc => x + "owach";
-      SF Sg Voc => x + "owy";
-      SF Pl Nom => x + "owy";
-      SF Pl Gen => x + "ów";
-      SF Pl Dat => x + "owom";
-      SF Pl Acc => x + "owy";
-      SF Pl Instr => x + "owami";
-      SF Pl Loc => x + "owach";
-      SF Pl Voc => x + "owy"
-    };
-
-    oper mkNTable0218: Str -> SubstForm => Str; --%
-    oper mkNTable0218 lexem = 
-      let x = Predef.tk 1 lexem in
-    table { 
-      SF Sg Nom => x + "a";
-      SF Sg Gen => x + "";
-      SF Sg Dat => x + "om";
-      SF Sg Acc => x + "a";
-      SF Sg Instr => x + "ami";
-      SF Sg Loc => x + "ach";
-      SF Sg Voc => x + "a";
-      SF Pl Nom => x + "a";
-      SF Pl Gen => x + "";
-      SF Pl Dat => x + "om";
-      SF Pl Acc => x + "a";
-      SF Pl Instr => x + "ami";
-      SF Pl Loc => x + "ach";
-      SF Pl Voc => x + "a"
-    };
-
-    oper mkNTable0230: Str -> SubstForm => Str; --%
-    oper mkNTable0230 lexem = 
-      let x = Predef.tk 3 lexem in
-    table { 
-      SF Sg Nom => x + "ody";
-      SF Sg Gen => x + "ód";
-      SF Sg Dat => x + "odom";
-      SF Sg Acc => x + "ody";
-      SF Sg Instr => x + "odami";
-      SF Sg Loc => x + "odach";
-      SF Sg Voc => x + "ody";
-      SF Pl Nom => x + "ody";
-      SF Pl Gen => x + "ód";
-      SF Pl Dat => x + "odom";
-      SF Pl Acc => x + "ody";
-      SF Pl Instr => x + "odami";
-      SF Pl Loc => x + "odach";
-      SF Pl Voc => x + "ody"
-    };
-
-    oper mkNTable0257: Str -> SubstForm => Str; --%
-    oper mkNTable0257 lexem = 
-      let x = Predef.tk 4 lexem in
-    table { 
-      SF Sg Nom => x + "owie";
-      SF Sg Gen => x + "ów";
-      SF Sg Dat => x + "om";
-      SF Sg Acc => x + "ów";
-      SF Sg Instr => x + "ami";
-      SF Sg Loc => x + "ach";
-      SF Sg Voc => x + "owie";
-      SF Pl Nom => x + "owie";
-      SF Pl Gen => x + "ów";
-      SF Pl Dat => x + "om";
-      SF Pl Acc => x + "ów";
-      SF Pl Instr => x + "ami";
-      SF Pl Loc => x + "ach";
-      SF Pl Voc => x + "owie"
-    };
-
-    oper mkNTable0275: Str -> SubstForm => Str; --%
-    oper mkNTable0275 lexem = 
-      let x = Predef.tk 1 lexem in
-    table { 
-      SF Sg Nom => x + "e";
-      SF Sg Gen => x + "ów";
-      SF Sg Dat => x + "om";
-      SF Sg Acc => x + "e";
-      SF Sg Instr => x + "ami";
-      SF Sg Loc => x + "ach";
-      SF Sg Voc => x + "e";
-      SF Pl Nom => x + "e";
-      SF Pl Gen => x + "ów";
-      SF Pl Dat => x + "om";
-      SF Pl Acc => x + "e";
-      SF Pl Instr => x + "ami";
-      SF Pl Loc => x + "ach";
-      SF Pl Voc => x + "e"
-    };
-
-    oper mkNTable0354: Str -> SubstForm => Str; --%
-    oper mkNTable0354 lexem = 
-      let x = Predef.tk 2 lexem in
-    table { 
-      SF Sg Nom => x + "ie";
-      SF Sg Gen => x + "";
-      SF Sg Dat => x + "om";
-      SF Sg Acc => x + "";
-      SF Sg Instr => x + "ami";
-      SF Sg Loc => x + "ach";
-      SF Sg Voc => x + "ie";
-      SF Pl Nom => x + "ie";
-      SF Pl Gen => x + "";
-      SF Pl Dat => x + "om";
-      SF Pl Acc => x + "";
-      SF Pl Instr => x + "ami";
-      SF Pl Loc => x + "ach";
-      SF Pl Voc => x + "ie"
-    };
-
-    oper mkNTable0361: Str -> SubstForm => Str; --%
-    oper mkNTable0361 lexem = 
-      let x = Predef.tk 2 lexem in
-    table { 
-      SF Sg Nom => x + "ki";
-      SF Sg Gen => x + "ek";
-      SF Sg Dat => x + "kom";
-      SF Sg Acc => x + "ki";
-      SF Sg Instr => x + "kami";
-      SF Sg Loc => x + "kach";
-      SF Sg Voc => x + "ki";
-      SF Pl Nom => x + "ki";
-      SF Pl Gen => x + "ek";
-      SF Pl Dat => x + "kom";
-      SF Pl Acc => x + "ki";
-      SF Pl Instr => x + "kami";
-      SF Pl Loc => x + "kach";
-      SF Pl Voc => x + "ki"
-    };
-
-    oper mkNTable0410: Str -> SubstForm => Str; --%
-    oper mkNTable0410 lexem = 
-      let x = Predef.tk 1 lexem in
-    table { 
-      SF Sg Nom => x + "a";
-      SF Sg Gen => x + "i";
-      SF Sg Dat => x + "om";
-      SF Sg Acc => x + "a";
-      SF Sg Instr => x + "ami";
-      SF Sg Loc => x + "ach";
-      SF Sg Voc => x + "a";
-      SF Pl Nom => x + "a";
-      SF Pl Gen => x + "i";
-      SF Pl Dat => x + "om";
-      SF Pl Acc => x + "a";
-      SF Pl Instr => x + "ami";
-      SF Pl Loc => x + "ach";
-      SF Pl Voc => x + "a"
-    };
-
-    oper mkNTable0421: Str -> SubstForm => Str; --%
-    oper mkNTable0421 lexem = 
-      let x = Predef.tk 1 lexem in
-    table { 
-      SF Sg Nom => x + "o";
-      SF Sg Gen => x + "a";
-      SF Sg Dat => x + "u";
-      SF Sg Acc => x + "a";
-      SF Sg Instr => x + "em";
-      SF Sg Loc => x + "u";
-      SF Sg Voc => x + "o";
-      SF Pl Nom => x + "o";
-      SF Pl Gen => x + "a";
-      SF Pl Dat => x + "u";
-      SF Pl Acc => x + "a";
-      SF Pl Instr => x + "em";
-      SF Pl Loc => x + "u";
-      SF Pl Voc => x + "o"
-    };
-
-    oper mkNTable0438: Str -> SubstForm => Str; --%
-    oper mkNTable0438 lexem = 
-      let x = Predef.tk 8 lexem in
-    table { 
-      SF Sg Nom => x + "Jeziorki";
-      SF Sg Gen => x + "jeziorek";
-      SF Sg Dat => x + "jeziorkom";
-      SF Sg Acc => x + "Jeziorki";
-      SF Sg Instr => x + "jeziorkami";
-      SF Sg Loc => x + "jeziorkach";
-      SF Sg Voc => x + "Jeziorki";
-      SF Pl Nom => x + "Jeziorki";
-      SF Pl Gen => x + "jeziorek";
-      SF Pl Dat => x + "jeziorkom";
-      SF Pl Acc => x + "Jeziorki";
-      SF Pl Instr => x + "jeziorkami";
-      SF Pl Loc => x + "jeziorkach";
-      SF Pl Voc => x + "Jeziorki"
-    };
-
-    oper mkNTable0451: Str -> SubstForm => Str; --%
-    oper mkNTable0451 lexem = 
-      let x = Predef.tk 1 lexem in
-    table { 
-      SF Sg Nom => x + "e";
-      SF Sg Gen => x + "y";
-      SF Sg Dat => x + "om";
-      SF Sg Acc => x + "e";
-      SF Sg Instr => x + "ami";
-      SF Sg Loc => x + "ach";
-      SF Sg Voc => x + "e";
-      SF Pl Nom => x + "e";
-      SF Pl Gen => x + "y";
-      SF Pl Dat => x + "om";
-      SF Pl Acc => x + "e";
-      SF Pl Instr => x + "ami";
-      SF Pl Loc => x + "ach";
-      SF Pl Voc => x + "e"
-    };
-
-    oper mkNTable0485: Str -> SubstForm => Str; --%
-    oper mkNTable0485 lexem = 
-      let x = Predef.tk 10 lexem in
-    table { 
-      SF Sg Nom => x + "kordyliery";
-      SF Sg Gen => x + "Kordylierów";
-      SF Sg Dat => x + "kordylierom";
-      SF Sg Acc => x + "kordyliery";
-      SF Sg Instr => x + "kordylierami";
-      SF Sg Loc => x + "kordylierach";
-      SF Sg Voc => x + "kordyliery";
-      SF Pl Nom => x + "kordyliery";
-      SF Pl Gen => x + "Kordylierów";
-      SF Pl Dat => x + "kordylierom";
-      SF Pl Acc => x + "kordyliery";
-      SF Pl Instr => x + "kordylierami";
-      SF Pl Loc => x + "kordylierach";
-      SF Pl Voc => x + "kordyliery"
-    };
-
-    oper mkNTable0547: Str -> SubstForm => Str; --%
-    oper mkNTable0547 lexem = 
-      let x = Predef.tk 2 lexem in
-    table { 
-      SF Sg Nom => x + "ce";
-      SF Sg Gen => x + "iec";
-      SF Sg Dat => x + "com";
-      SF Sg Acc => x + "ce";
-      SF Sg Instr => x + "cami";
-      SF Sg Loc => x + "cach";
-      SF Sg Voc => x + "ce";
-      SF Pl Nom => x + "ce";
-      SF Pl Gen => x + "iec";
-      SF Pl Dat => x + "com";
-      SF Pl Acc => x + "ce";
-      SF Pl Instr => x + "cami";
-      SF Pl Loc => x + "cach";
-      SF Pl Voc => x + "ce"
-    };
-
-    oper mkNTable0626: Str -> SubstForm => Str; --%
-    oper mkNTable0626 lexem = 
-      let x = Predef.tk 3 lexem in
-    table { 
-      SF Sg Nom => x + "ńki";
-      SF Sg Gen => x + "niek";
-      SF Sg Dat => x + "ńkom";
-      SF Sg Acc => x + "ńki";
-      SF Sg Instr => x + "ńkami";
-      SF Sg Loc => x + "ńkach";
-      SF Sg Voc => x + "ńki";
-      SF Pl Nom => x + "ńki";
-      SF Pl Gen => x + "niek";
-      SF Pl Dat => x + "ńkom";
-      SF Pl Acc => x + "ńki";
-      SF Pl Instr => x + "ńkami";
-      SF Pl Loc => x + "ńkach";
-      SF Pl Voc => x + "ńki"
-    };
-
-    oper mkNTable0631: Str -> SubstForm => Str; --%
-    oper mkNTable0631 lexem = 
-      let x = Predef.tk 2 lexem in
-    table { 
-      SF Sg Nom => x + "wy";
-      SF Sg Gen => x + "ew";
-      SF Sg Dat => x + "wom";
-      SF Sg Acc => x + "wy";
-      SF Sg Instr => x + "wami";
-      SF Sg Loc => x + "wach";
-      SF Sg Voc => x + "wy";
-      SF Pl Nom => x + "wy";
-      SF Pl Gen => x + "ew";
-      SF Pl Dat => x + "wom";
-      SF Pl Acc => x + "wy";
-      SF Pl Instr => x + "wami";
-      SF Pl Loc => x + "wach";
-      SF Pl Voc => x + "wy"
-    };
-
-    oper mkNTable0645: Str -> SubstForm => Str; --%
-    oper mkNTable0645 lexem = 
-      let x = Predef.tk 2 lexem in
-    table { 
-      SF Sg Nom => x + "cy";
-      SF Sg Gen => x + "iec";
-      SF Sg Dat => x + "com";
-      SF Sg Acc => x + "cy";
-      SF Sg Instr => x + "cami";
-      SF Sg Loc => x + "czech";
-      SF Sg Voc => x + "cy";
-      SF Pl Nom => x + "cy";
-      SF Pl Gen => x + "iec";
-      SF Pl Dat => x + "com";
-      SF Pl Acc => x + "cy";
-      SF Pl Instr => x + "cami";
-      SF Pl Loc => x + "czech";
-      SF Pl Voc => x + "cy"
-    };
-
-    oper mkNTable0769: Str -> SubstForm => Str; --%
-    oper mkNTable0769 lexem = 
-      let x = Predef.tk 2 lexem in
-    table { 
-      SF Sg Nom => x + "ce";
-      SF Sg Gen => x + "ec";
-      SF Sg Dat => x + "com";
-      SF Sg Acc => x + "ce";
-      SF Sg Instr => x + "cami";
-      SF Sg Loc => x + "cach";
-      SF Sg Voc => x + "ce";
-      SF Pl Nom => x + "ce";
-      SF Pl Gen => x + "ec";
-      SF Pl Dat => x + "com";
-      SF Pl Acc => x + "ce";
-      SF Pl Instr => x + "cami";
-      SF Pl Loc => x + "cach";
-      SF Pl Voc => x + "ce"
-    };
-
-    oper mkNTable0795: Str -> SubstForm => Str; --%
-    oper mkNTable0795 lexem = 
-      let x = Predef.tk 2 lexem in
-    table { 
-      SF Sg Nom => x + "ny";
-      SF Sg Gen => x + "ien";
-      SF Sg Dat => x + "nom";
-      SF Sg Acc => x + "ny";
-      SF Sg Instr => x + "nami";
-      SF Sg Loc => x + "nach";
-      SF Sg Voc => x + "ny";
-      SF Pl Nom => x + "ny";
-      SF Pl Gen => x + "ien";
-      SF Pl Dat => x + "nom";
-      SF Pl Acc => x + "ny";
-      SF Pl Instr => x + "nami";
-      SF Pl Loc => x + "nach";
-      SF Pl Voc => x + "ny"
-    };
-
-    oper mkNTable0798: Str -> SubstForm => Str; --%
-    oper mkNTable0798 lexem = 
-      let x = Predef.tk 8 lexem in
-    table { 
-      SF Sg Nom => x + "stokłosy";
-      SF Sg Gen => x + "Stokłosów";
-      SF Sg Dat => x + "stokłosom";
-      SF Sg Acc => x + "stokłosy";
-      SF Sg Instr => x + "stokłosami";
-      SF Sg Loc => x + "stokłosach";
-      SF Sg Voc => x + "stokłosy";
-      SF Pl Nom => x + "stokłosy";
-      SF Pl Gen => x + "Stokłosów";
-      SF Pl Dat => x + "stokłosom";
-      SF Pl Acc => x + "stokłosy";
-      SF Pl Instr => x + "stokłosami";
-      SF Pl Loc => x + "stokłosach";
-      SF Pl Voc => x + "stokłosy"
-    };
-
-    oper mkNTable0867: Str -> SubstForm => Str; --%
-    oper mkNTable0867 lexem = 
-      let x = Predef.tk 7 lexem in
-    table { 
-      SF Sg Nom => x + "Wazowie";
-      SF Sg Gen => x + "Wazów";
-      SF Sg Dat => x + "wazom";
-      SF Sg Acc => x + "Wazów";
-      SF Sg Instr => x + "wazami";
-      SF Sg Loc => x + "wazach";
-      SF Sg Voc => x + "Wazowie";
-      SF Pl Nom => x + "Wazowie";
-      SF Pl Gen => x + "Wazów";
-      SF Pl Dat => x + "wazom";
-      SF Pl Acc => x + "Wazów";
-      SF Pl Instr => x + "wazami";
-      SF Pl Loc => x + "wazach";
-      SF Pl Voc => x + "Wazowie"
-    };
-
-    oper mkNTable0900: Str -> SubstForm => Str; --%
-    oper mkNTable0900 lexem = 
-      let x = Predef.tk 6 lexem in
-    table { 
-      SF Sg Nom => x + "włochy";
-      SF Sg Gen => x + "Włoch";
-      SF Sg Dat => x + "włochom";
-      SF Sg Acc => x + "włochy";
-      SF Sg Instr => x + "włochami";
-      SF Sg Loc => x + "włochach";
-      SF Sg Voc => x + "włochy";
-      SF Pl Nom => x + "włochy";
-      SF Pl Gen => x + "Włoch";
-      SF Pl Dat => x + "włochom";
-      SF Pl Acc => x + "włochy";
-      SF Pl Instr => x + "włochami";
-      SF Pl Loc => x + "włochach";
-      SF Pl Voc => x + "włochy"
-    };
-
-    oper mkNTable0926: Str -> SubstForm => Str; --%
-    oper mkNTable0926 lexem = 
-      let x = Predef.tk 1 lexem in
-    table { 
-      SF Sg Nom => x + "a";
-      SF Sg Gen => x + "ów";
-      SF Sg Dat => x + "om";
-      SF Sg Acc => x + "a";
-      SF Sg Instr => x + "ami";
-      SF Sg Loc => x + "ach";
-      SF Sg Voc => x + "a";
-      SF Pl Nom => x + "a";
-      SF Pl Gen => x + "ów";
-      SF Pl Dat => x + "om";
-      SF Pl Acc => x + "a";
-      SF Pl Instr => x + "ami";
-      SF Pl Loc => x + "ach";
-      SF Pl Voc => x + "a"
-    };
-
-    oper mkNTable0932: Str -> SubstForm => Str; --%
-    oper mkNTable0932 lexem = 
-      let x = Predef.tk 3 lexem in
-    table { 
-      SF Sg Nom => x + "nie";
-      SF Sg Gen => x + "ń";
-      SF Sg Dat => x + "niom";
-      SF Sg Acc => x + "nie";
-      SF Sg Instr => x + "ńmi";
-      SF Sg Loc => x + "niach";
-      SF Sg Voc => x + "nie";
-      SF Pl Nom => x + "nie";
-      SF Pl Gen => x + "ń";
-      SF Pl Dat => x + "niom";
-      SF Pl Acc => x + "nie";
-      SF Pl Instr => x + "ńmi";
-      SF Pl Loc => x + "niach";
-      SF Pl Voc => x + "nie"
-    };
-
-    oper mkNTable0933: Str -> SubstForm => Str; --%
-    oper mkNTable0933 lexem = 
-      let x = Predef.tk 1 lexem in
-    table { 
-      SF Sg Nom => x + "e";
-      SF Sg Gen => x + "ych";
-      SF Sg Dat => x + "ym";
-      SF Sg Acc => x + "e";
-      SF Sg Instr => x + "ymi";
-      SF Sg Loc => x + "ych";
-      SF Sg Voc => x + "e";
-      SF Pl Nom => x + "e";
-      SF Pl Gen => x + "ych";
-      SF Pl Dat => x + "ym";
-      SF Pl Acc => x + "e";
-      SF Pl Instr => x + "ymi";
-      SF Pl Loc => x + "ych";
-      SF Pl Voc => x + "e"
-    };
-
-    oper mkNTable0940: Str -> SubstForm => Str; --%
-    oper mkNTable0940 lexem = 
-      let x = Predef.tk 0 lexem in
-    table { 
-      SF Sg Nom => x + "";
-      SF Sg Gen => x + "";
-      SF Sg Dat => x + "om";
-      SF Sg Acc => x + "";
-      SF Sg Instr => x + "ami";
-      SF Sg Loc => x + "ach";
-      SF Sg Voc => x + "";
-      SF Pl Nom => x + "";
-      SF Pl Gen => x + "";
-      SF Pl Dat => x + "om";
-      SF Pl Acc => x + "";
-      SF Pl Instr => x + "ami";
-      SF Pl Loc => x + "ach";
-      SF Pl Voc => x + ""
-    };
-
-    oper mkNTable1000: Str -> SubstForm => Str; --%
-    oper mkNTable1000 lexem = 
-      let x = Predef.tk 1 lexem in
-    table { 
-      SF Sg Nom => x + "a";
-      SF Sg Gen => x + "y";
-      SF Sg Dat => x + "om";
-      SF Sg Acc => x + "a";
-      SF Sg Instr => x + "ami";
-      SF Sg Loc => x + "ach";
-      SF Sg Voc => x + "a";
-      SF Pl Nom => x + "a";
-      SF Pl Gen => x + "y";
-      SF Pl Dat => x + "om";
-      SF Pl Acc => x + "a";
-      SF Pl Instr => x + "ami";
-      SF Pl Loc => x + "ach";
-      SF Pl Voc => x + "a"
-    };
-
-    oper mkNTable1092: Str -> SubstForm => Str; --%
-    oper mkNTable1092 lexem = 
-      let x = Predef.tk 2 lexem in
-    table { 
-      SF Sg Nom => x + "ka";
-      SF Sg Gen => x + "ek";
-      SF Sg Dat => x + "kom";
-      SF Sg Acc => x + "ka";
-      SF Sg Instr => x + "kami";
-      SF Sg Loc => x + "kach";
-      SF Sg Voc => x + "ka";
-      SF Pl Nom => x + "ka";
-      SF Pl Gen => x + "ek";
-      SF Pl Dat => x + "kom";
-      SF Pl Acc => x + "ka";
-      SF Pl Instr => x + "kami";
-      SF Pl Loc => x + "kach";
-      SF Pl Voc => x + "ka"
-    };
-
-    oper mkNTable1104: Str -> SubstForm => Str; --%
-    oper mkNTable1104 lexem = 
-      let x = Predef.tk 4 lexem in
-    table { 
-      SF Sg Nom => x + "obra";
-      SF Sg Gen => x + "óbr";
-      SF Sg Dat => x + "obrom";
-      SF Sg Acc => x + "obra";
-      SF Sg Instr => x + "obrami";
-      SF Sg Loc => x + "obrach";
-      SF Sg Voc => x + "obra";
-      SF Pl Nom => x + "obra";
-      SF Pl Gen => x + "óbr";
-      SF Pl Dat => x + "obrom";
-      SF Pl Acc => x + "obra";
-      SF Pl Instr => x + "obrami";
-      SF Pl Loc => x + "obrach";
-      SF Pl Voc => x + "obra"
-    };
-
-    oper mkNTable1111: Str -> SubstForm => Str; --%
-    oper mkNTable1111 lexem = 
-      let x = Predef.tk 3 lexem in
-    table { 
-      SF Sg Nom => x + "nia";
-      SF Sg Gen => x + "ń";
-      SF Sg Dat => x + "niom";
-      SF Sg Acc => x + "nia";
-      SF Sg Instr => x + "niami";
-      SF Sg Loc => x + "niach";
-      SF Sg Voc => x + "nia";
-      SF Pl Nom => x + "nia";
-      SF Pl Gen => x + "ń";
-      SF Pl Dat => x + "niom";
-      SF Pl Acc => x + "nia";
-      SF Pl Instr => x + "niami";
-      SF Pl Loc => x + "niach";
-      SF Pl Voc => x + "nia"
-    };
-
-    oper mkNTable1113: Str -> SubstForm => Str; --%
-    oper mkNTable1113 lexem = 
-      let x = Predef.tk 3 lexem in
-    table { 
-      SF Sg Nom => x + "ogi";
-      SF Sg Gen => x + "óg";
-      SF Sg Dat => x + "ogom";
-      SF Sg Acc => x + "ogi";
-      SF Sg Instr => x + "ogami";
-      SF Sg Loc => x + "ogach";
-      SF Sg Voc => x + "ogi";
-      SF Pl Nom => x + "ogi";
-      SF Pl Gen => x + "óg";
-      SF Pl Dat => x + "ogom";
-      SF Pl Acc => x + "ogi";
-      SF Pl Instr => x + "ogami";
-      SF Pl Loc => x + "ogach";
-      SF Pl Voc => x + "ogi"
-    };
-
-    oper mkNTable1116: Str -> SubstForm => Str; --%
-    oper mkNTable1116 lexem = 
-      let x = Predef.tk 2 lexem in
-    table { 
-      SF Sg Nom => x + "wa";
-      SF Sg Gen => x + "ew";
-      SF Sg Dat => x + "wom";
-      SF Sg Acc => x + "wa";
-      SF Sg Instr => x + "wami";
-      SF Sg Loc => x + "wach";
-      SF Sg Voc => x + "wa";
-      SF Pl Nom => x + "wa";
-      SF Pl Gen => x + "ew";
-      SF Pl Dat => x + "wom";
-      SF Pl Acc => x + "wa";
-      SF Pl Instr => x + "wami";
-      SF Pl Loc => x + "wach";
-      SF Pl Voc => x + "wa"
-    };
-
-    oper mkNTable1172: Str -> SubstForm => Str; --%
-    oper mkNTable1172 lexem = 
-      let x = Predef.tk 2 lexem in
-    table { 
-      SF Sg Nom => x + "ła";
-      SF Sg Gen => x + "eł";
-      SF Sg Dat => x + "łom";
-      SF Sg Acc => x + "ła";
-      SF Sg Instr => x + "łami";
-      SF Sg Loc => x + "łach";
-      SF Sg Voc => x + "ła";
-      SF Pl Nom => x + "ła";
-      SF Pl Gen => x + "eł";
-      SF Pl Dat => x + "łom";
-      SF Pl Acc => x + "ła";
-      SF Pl Instr => x + "łami";
-      SF Pl Loc => x + "łach";
-      SF Pl Voc => x + "ła"
-    };
-
-    oper mkNTable1190: Str -> SubstForm => Str; --%
-    oper mkNTable1190 lexem = 
-      let x = Predef.tk 1 lexem in
-    table { 
-      SF Sg Nom => x + "e";
-      SF Sg Gen => x + "ów";
-      SF Sg Dat => x + "om";
-      SF Sg Acc => x + "ów";
-      SF Sg Instr => x + "ami";
-      SF Sg Loc => x + "ach";
-      SF Sg Voc => x + "e";
-      SF Pl Nom => x + "e";
-      SF Pl Gen => x + "ów";
-      SF Pl Dat => x + "om";
-      SF Pl Acc => x + "ów";
-      SF Pl Instr => x + "ami";
-      SF Pl Loc => x + "ach";
-      SF Pl Voc => x + "e"
-    };
-
-    oper mkNTable1195: Str -> SubstForm => Str; --%
-    oper mkNTable1195 lexem = 
-      let x = Predef.tk 2 lexem in
-    table { 
-      SF Sg Nom => x + "ca";
-      SF Sg Gen => x + "ec";
-      SF Sg Dat => x + "com";
-      SF Sg Acc => x + "ca";
-      SF Sg Instr => x + "cami";
-      SF Sg Loc => x + "cach";
-      SF Sg Voc => x + "ca";
-      SF Pl Nom => x + "ca";
-      SF Pl Gen => x + "ec";
-      SF Pl Dat => x + "com";
-      SF Pl Acc => x + "ca";
-      SF Pl Instr => x + "cami";
-      SF Pl Loc => x + "cach";
-      SF Pl Voc => x + "ca"
-    };
-
-    oper mkNTable1231: Str -> SubstForm => Str; --%
-    oper mkNTable1231 lexem = 
-      let x = Predef.tk 2 lexem in
-    table { 
-      SF Sg Nom => x + "je";
-      SF Sg Gen => x + "i";
-      SF Sg Dat => x + "jom";
-      SF Sg Acc => x + "je";
-      SF Sg Instr => x + "jami";
-      SF Sg Loc => x + "jach";
-      SF Sg Voc => x + "je";
-      SF Pl Nom => x + "je";
-      SF Pl Gen => x + "i";
-      SF Pl Dat => x + "jom";
-      SF Pl Acc => x + "je";
-      SF Pl Instr => x + "jami";
-      SF Pl Loc => x + "jach";
-      SF Pl Voc => x + "je"
-    };
-
-    oper mkNTable1243: Str -> SubstForm => Str; --%
-    oper mkNTable1243 lexem = 
-      let x = Predef.tk 3 lexem in
-    table { 
-      SF Sg Nom => x + "oła";
-      SF Sg Gen => x + "ół";
-      SF Sg Dat => x + "ołom";
-      SF Sg Acc => x + "oła";
-      SF Sg Instr => x + "ołami";
-      SF Sg Loc => x + "ołach";
-      SF Sg Voc => x + "oła";
-      SF Pl Nom => x + "oła";
-      SF Pl Gen => x + "ół";
-      SF Pl Dat => x + "ołom";
-      SF Pl Acc => x + "oła";
-      SF Pl Instr => x + "ołami";
-      SF Pl Loc => x + "ołach";
-      SF Pl Voc => x + "oła"
-    };
-
-    oper mkNTable1247: Str -> SubstForm => Str; --%
-    oper mkNTable1247 lexem = 
-      let x = Predef.tk 2 lexem in
-    table { 
-      SF Sg Nom => x + "ci";
-      SF Sg Gen => x + "ci";
-      SF Sg Dat => x + "ciom";
-      SF Sg Acc => x + "ci";
-      SF Sg Instr => x + "ćmi";
-      SF Sg Loc => x + "ciach";
-      SF Sg Voc => x + "ci";
-      SF Pl Nom => x + "ci";
-      SF Pl Gen => x + "ci";
-      SF Pl Dat => x + "ciom";
-      SF Pl Acc => x + "ci";
-      SF Pl Instr => x + "ćmi";
-      SF Pl Loc => x + "ciach";
-      SF Pl Voc => x + "ci"
-    };
-
-    oper mkNTable1265: Str -> SubstForm => Str; --%
-    oper mkNTable1265 lexem = 
-      let x = Predef.tk 1 lexem in
-    table { 
-      SF Sg Nom => x + "i";
-      SF Sg Gen => x + "ów";
-      SF Sg Dat => x + "om";
-      SF Sg Acc => x + "ów";
-      SF Sg Instr => x + "ami";
-      SF Sg Loc => x + "ach";
-      SF Sg Voc => x + "i";
-      SF Pl Nom => x + "i";
-      SF Pl Gen => x + "ów";
-      SF Pl Dat => x + "om";
-      SF Pl Acc => x + "ów";
-      SF Pl Instr => x + "ami";
-      SF Pl Loc => x + "ach";
-      SF Pl Voc => x + "i"
-    };
-
-    oper mkNTable1277: Str -> SubstForm => Str; --%
-    oper mkNTable1277 lexem = 
-      let x = Predef.tk 2 lexem in
-    table { 
-      SF Sg Nom => x + "zy";
-      SF Sg Gen => x + "ów";
-      SF Sg Dat => x + "om";
-      SF Sg Acc => x + "ów";
-      SF Sg Instr => x + "ami";
-      SF Sg Loc => x + "ach";
-      SF Sg Voc => x + "zy";
-      SF Pl Nom => x + "zy";
-      SF Pl Gen => x + "ów";
-      SF Pl Dat => x + "om";
-      SF Pl Acc => x + "ów";
-      SF Pl Instr => x + "ami";
-      SF Pl Loc => x + "ach";
-      SF Pl Voc => x + "zy"
-    };
-
-    oper mkNTable1282: Str -> SubstForm => Str; --%
-    oper mkNTable1282 lexem = 
-      let x = Predef.tk 3 lexem in
-    table { 
-      SF Sg Nom => x + "zie";
-      SF Sg Gen => x + "zi";
-      SF Sg Dat => x + "ziom";
-      SF Sg Acc => x + "zi";
-      SF Sg Instr => x + "źmi";
-      SF Sg Loc => x + "ziach";
-      SF Sg Voc => x + "zie";
-      SF Pl Nom => x + "zie";
-      SF Pl Gen => x + "zi";
-      SF Pl Dat => x + "ziom";
-      SF Pl Acc => x + "zi";
-      SF Pl Instr => x + "źmi";
-      SF Pl Loc => x + "ziach";
-      SF Pl Voc => x + "zie"
-    };
-
-    oper mkNTable1307: Str -> SubstForm => Str; --%
-    oper mkNTable1307 lexem = 
-      let x = Predef.tk 2 lexem in
-    table { 
-      SF Sg Nom => x + "zi";
-      SF Sg Gen => x + "ych";
-      SF Sg Dat => x + "ym";
-      SF Sg Acc => x + "ych";
-      SF Sg Instr => x + "ymi";
-      SF Sg Loc => x + "ych";
-      SF Sg Voc => x + "zi";
-      SF Pl Nom => x + "zi";
-      SF Pl Gen => x + "ych";
-      SF Pl Dat => x + "ym";
-      SF Pl Acc => x + "ych";
-      SF Pl Instr => x + "ymi";
-      SF Pl Loc => x + "ych";
-      SF Pl Voc => x + "zi"
-    };
-
-    oper mkNTable1309: Str -> SubstForm => Str; --%
-    oper mkNTable1309 lexem = 
-      let x = Predef.tk 3 lexem in
-    table { 
-      SF Sg Nom => x + "ęki";
-      SF Sg Gen => x + "ąk";
-      SF Sg Dat => x + "ękom";
-      SF Sg Acc => x + "ęki";
-      SF Sg Instr => x + "ękami";
-      SF Sg Loc => x + "ękach";
-      SF Sg Voc => x + "ęki";
-      SF Pl Nom => x + "ęki";
-      SF Pl Gen => x + "ąk";
-      SF Pl Dat => x + "ękom";
-      SF Pl Acc => x + "ęki";
-      SF Pl Instr => x + "ękami";
-      SF Pl Loc => x + "ękach";
-      SF Pl Voc => x + "ęki"
-    };
-
-    oper mkNTable1320: Str -> SubstForm => Str; --%
-    oper mkNTable1320 lexem = 
-      let x = Predef.tk 1 lexem in
-    table { 
-      SF Sg Nom => x + "y";
-      SF Sg Gen => x + "ów";
-      SF Sg Dat => x + "om";
-      SF Sg Acc => x + "ów";
-      SF Sg Instr => x + "ami";
-      SF Sg Loc => x + "ach";
-      SF Sg Voc => x + "y";
-      SF Pl Nom => x + "y";
-      SF Pl Gen => x + "ów";
-      SF Pl Dat => x + "om";
-      SF Pl Acc => x + "ów";
-      SF Pl Instr => x + "ami";
-      SF Pl Loc => x + "ach";
-      SF Pl Voc => x + "y"
-    };
-
-    oper mkNTable1325: Str -> SubstForm => Str; --%
-    oper mkNTable1325 lexem = 
-      let x = Predef.tk 3 lexem in
-    table { 
-      SF Sg Nom => x + "cia";
-      SF Sg Gen => x + "ć";
-      SF Sg Dat => x + "ciom";
-      SF Sg Acc => x + "cia";
-      SF Sg Instr => x + "ciami";
-      SF Sg Loc => x + "ciach";
-      SF Sg Voc => x + "cia";
-      SF Pl Nom => x + "cia";
-      SF Pl Gen => x + "ć";
-      SF Pl Dat => x + "ciom";
-      SF Pl Acc => x + "cia";
-      SF Pl Instr => x + "ciami";
-      SF Pl Loc => x + "ciach";
-      SF Pl Voc => x + "cia"
-    };
-
-    oper mkNTable1368: Str -> SubstForm => Str; --%
-    oper mkNTable1368 lexem = 
-      let x = Predef.tk 3 lexem in
-    table { 
-      SF Sg Nom => x + "oły";
-      SF Sg Gen => x + "ół";
-      SF Sg Dat => x + "ołom";
-      SF Sg Acc => x + "oły";
-      SF Sg Instr => x + "ołami";
-      SF Sg Loc => x + "ołach";
-      SF Sg Voc => x + "oły";
-      SF Pl Nom => x + "oły";
-      SF Pl Gen => x + "ół";
-      SF Pl Dat => x + "ołom";
-      SF Pl Acc => x + "oły";
-      SF Pl Instr => x + "ołami";
-      SF Pl Loc => x + "ołach";
-      SF Pl Voc => x + "oły"
-    };
-
-    oper mkNTable1406: Str -> SubstForm => Str; --%
-    oper mkNTable1406 lexem = 
-      let x = Predef.tk 3 lexem in
-    table { 
-      SF Sg Nom => x + "oty";
-      SF Sg Gen => x + "ót";
-      SF Sg Dat => x + "otom";
-      SF Sg Acc => x + "oty";
-      SF Sg Instr => x + "otami";
-      SF Sg Loc => x + "otach";
-      SF Sg Voc => x + "oty";
-      SF Pl Nom => x + "oty";
-      SF Pl Gen => x + "ót";
-      SF Pl Dat => x + "otom";
-      SF Pl Acc => x + "oty";
-      SF Pl Instr => x + "otami";
-      SF Pl Loc => x + "otach";
-      SF Pl Voc => x + "oty"
-    };
-
-    oper mkNTable1407: Str -> SubstForm => Str; --%
-    oper mkNTable1407 lexem = 
-      let x = Predef.tk 3 lexem in
-    table { 
-      SF Sg Nom => x + "eni";
-      SF Sg Gen => x + "ionych";
-      SF Sg Dat => x + "ionym";
-      SF Sg Acc => x + "ionych";
-      SF Sg Instr => x + "ionymi";
-      SF Sg Loc => x + "ionych";
-      SF Sg Voc => x + "eni";
-      SF Pl Nom => x + "eni";
-      SF Pl Gen => x + "ionych";
-      SF Pl Dat => x + "ionym";
-      SF Pl Acc => x + "ionych";
-      SF Pl Instr => x + "ionymi";
-      SF Pl Loc => x + "ionych";
-      SF Pl Voc => x + "eni"
-    };
-
-    oper mkNTable1433: Str -> SubstForm => Str; --%
-    oper mkNTable1433 lexem = 
-      let x = Predef.tk 2 lexem in
-    table { 
-      SF Sg Nom => x + "ła";
-      SF Sg Gen => x + "ieł";
-      SF Sg Dat => x + "łom";
-      SF Sg Acc => x + "ła";
-      SF Sg Instr => x + "łami";
-      SF Sg Loc => x + "łach";
-      SF Sg Voc => x + "ła";
-      SF Pl Nom => x + "ła";
-      SF Pl Gen => x + "ieł";
-      SF Pl Dat => x + "łom";
-      SF Pl Acc => x + "ła";
-      SF Pl Instr => x + "łami";
-      SF Pl Loc => x + "łach";
-      SF Pl Voc => x + "ła"
-    };
-
-    oper mkNTable1468: Str -> SubstForm => Str; --%
-    oper mkNTable1468 lexem = 
-      let x = Predef.tk 2 lexem in
-    table { 
-      SF Sg Nom => x + "ły";
-      SF Sg Gen => x + "eł";
-      SF Sg Dat => x + "łom";
-      SF Sg Acc => x + "ły";
-      SF Sg Instr => x + "łami";
-      SF Sg Loc => x + "łach";
-      SF Sg Voc => x + "ły";
-      SF Pl Nom => x + "ły";
-      SF Pl Gen => x + "eł";
-      SF Pl Dat => x + "łom";
-      SF Pl Acc => x + "ły";
-      SF Pl Instr => x + "łami";
-      SF Pl Loc => x + "łach";
-      SF Pl Voc => x + "ły"
-    };
-
-    oper mkNTable1472: Str -> SubstForm => Str; --%
-    oper mkNTable1472 lexem = 
+    oper mkNTable0006: Str -> SubstForm => Str; --%
+    oper mkNTable0006 lexem = 
+      let x = Predef.tk 2 lexem in
+    table { 
+      SF Sg Nom => x + "ka";
+      SF Sg Gen => x + "ki";
+      SF Sg Dat => x + "ce";
+      SF Sg Acc => x + "kę";
+      SF Sg Instr => x + "ką";
+      SF Sg Loc => x + "ce";
+      SF Sg Voc => x + "ko";
+      SF Pl Nom => x + "ki";
+      SF Pl Gen => x + "ek";
+      SF Pl Dat => x + "kom";
+      SF Pl Acc => x + "ki";
+      SF Pl Instr => x + "kami";
+      SF Pl Loc => x + "kach";
+      SF Pl Voc => x + "ki"
+    };
+
+    oper mkNTable0009: Str -> SubstForm => Str; --%
+    oper mkNTable0009 lexem = 
+      let x = Predef.tk 2 lexem in
+    table { 
+      SF Sg Nom => x + "el";
+      SF Sg Gen => x + "la";
+      SF Sg Dat => x + "lowi";
+      SF Sg Acc => x + "la";
+      SF Sg Instr => x + "lem";
+      SF Sg Loc => x + "lu";
+      SF Sg Voc => x + "lu";
+      SF Pl Nom => x + "lowie";
+      SF Pl Gen => x + "li";
+      SF Pl Dat => x + "lom";
+      SF Pl Acc => x + "li";
+      SF Pl Instr => x + "lami";
+      SF Pl Loc => x + "lach";
+      SF Pl Voc => x + "lowie"
+    };
+
+    oper mkNTable0010: Str -> SubstForm => Str; --%
+    oper mkNTable0010 lexem = 
+      let x = Predef.tk 0 lexem in
+    table { 
+      SF Sg Nom => x + "";
+      SF Sg Gen => x + "a";
+      SF Sg Dat => x + "owi";
+      SF Sg Acc => x + "a";
+      SF Sg Instr => x + "em";
+      SF Sg Loc => x + "ze";
+      SF Sg Voc => x + "ze";
+      SF Pl Nom => x + "owie";
+      SF Pl Gen => x + "ów";
+      SF Pl Dat => x + "om";
+      SF Pl Acc => x + "ów";
+      SF Pl Instr => x + "ami";
+      SF Pl Loc => x + "ach";
+      SF Pl Voc => x + "owie"
+    };
+
+    oper mkNTable0011: Str -> SubstForm => Str; --%
+    oper mkNTable0011 lexem = 
+      let x = Predef.tk 2 lexem in
+    table { 
+      SF Sg Nom => x + "ów";
+      SF Sg Gen => x + "owa";
+      SF Sg Dat => x + "owowi";
+      SF Sg Acc => x + "ów";
+      SF Sg Instr => x + "owem";
+      SF Sg Loc => x + "owie";
+      SF Sg Voc => x + "owie";
+      SF Pl Nom => x + "owy";
+      SF Pl Gen => x + "owów";
+      SF Pl Dat => x + "owom";
+      SF Pl Acc => x + "owy";
+      SF Pl Instr => x + "owami";
+      SF Pl Loc => x + "owach";
+      SF Pl Voc => x + "owy"
+    };
+
+    oper mkNTable0012: Str -> SubstForm => Str; --%
+    oper mkNTable0012 lexem = 
+      let x = Predef.tk 1 lexem in
+    table { 
+      SF Sg Nom => x + "y";
+      SF Sg Gen => x + "ego";
+      SF Sg Dat => x + "emu";
+      SF Sg Acc => x + "ego";
+      SF Sg Instr => x + "ym";
+      SF Sg Loc => x + "ym";
+      SF Sg Voc => x + "y";
+      SF Pl Nom => x + "owie";
+      SF Pl Gen => x + "ych";
+      SF Pl Dat => x + "ym";
+      SF Pl Acc => x + "ych";
+      SF Pl Instr => x + "ymi";
+      SF Pl Loc => x + "ych";
+      SF Pl Voc => x + "owie"
+    };
+
+    oper mkNTable0013: Str -> SubstForm => Str; --%
+    oper mkNTable0013 lexem = 
+      let x = Predef.tk 1 lexem in
+    table { 
+      SF Sg Nom => x + "a";
+      SF Sg Gen => x + "ej";
+      SF Sg Dat => x + "ej";
+      SF Sg Acc => x + "ą";
+      SF Sg Instr => x + "ą";
+      SF Sg Loc => x + "ej";
+      SF Sg Voc => x + "a";
+      SF Pl Nom => x + "e";
+      SF Pl Gen => x + "ych";
+      SF Pl Dat => x + "ym";
+      SF Pl Acc => x + "e";
+      SF Pl Instr => x + "ymi";
+      SF Pl Loc => x + "ych";
+      SF Pl Voc => x + "e"
+    };
+
+    oper mkNTable0014: Str -> SubstForm => Str; --%
+    oper mkNTable0014 lexem = 
+      let x = Predef.tk 1 lexem in
+    table { 
+      SF Sg Nom => x + "a";
+      SF Sg Gen => x + "y";
+      SF Sg Dat => x + "zie";
+      SF Sg Acc => x + "ę";
+      SF Sg Instr => x + "ą";
+      SF Sg Loc => x + "zie";
+      SF Sg Voc => x + "o";
+      SF Pl Nom => x + "y";
+      SF Pl Gen => x + "";
+      SF Pl Dat => x + "om";
+      SF Pl Acc => x + "y";
+      SF Pl Instr => x + "ami";
+      SF Pl Loc => x + "ach";
+      SF Pl Voc => x + "y"
+    };
+
+    oper mkNTable0015: Str -> SubstForm => Str; --%
+    oper mkNTable0015 lexem = 
+      let x = Predef.tk 0 lexem in
+    table { 
+      SF Sg Nom => x + "";
+      SF Sg Gen => x + "a";
+      SF Sg Dat => x + "owi";
+      SF Sg Acc => x + "a";
+      SF Sg Instr => x + "iem";
+      SF Sg Loc => x + "u";
+      SF Sg Voc => x + "u";
+      SF Pl Nom => x + "owie";
+      SF Pl Gen => x + "ów";
+      SF Pl Dat => x + "om";
+      SF Pl Acc => x + "ów";
+      SF Pl Instr => x + "ami";
+      SF Pl Loc => x + "ach";
+      SF Pl Voc => x + "owie"
+    };
+
+    oper mkNTable0016: Str -> SubstForm => Str; --%
+    oper mkNTable0016 lexem = 
+      let x = Predef.tk 3 lexem in
+    table { 
+      SF Sg Nom => x + "iec";
+      SF Sg Gen => x + "ca";
+      SF Sg Dat => x + "cowi";
+      SF Sg Acc => x + "ca";
+      SF Sg Instr => x + "cem";
+      SF Sg Loc => x + "cu";
+      SF Sg Voc => x + "cu";
+      SF Pl Nom => x + "cowie";
+      SF Pl Gen => x + "ców";
+      SF Pl Dat => x + "com";
+      SF Pl Acc => x + "ców";
+      SF Pl Instr => x + "cami";
+      SF Pl Loc => x + "cach";
+      SF Pl Voc => x + "cowie"
+    };
+
+    oper mkNTable0019: Str -> SubstForm => Str; --%
+    oper mkNTable0019 lexem = 
+      let x = Predef.tk 1 lexem in
+    table { 
+      SF Sg Nom => x + "ś";
+      SF Sg Gen => x + "sia";
+      SF Sg Dat => x + "siowi";
+      SF Sg Acc => x + "sia";
+      SF Sg Instr => x + "siem";
+      SF Sg Loc => x + "siu";
+      SF Sg Voc => x + "siu";
+      SF Pl Nom => x + "sie";
+      SF Pl Gen => x + "siów";
+      SF Pl Dat => x + "siom";
+      SF Pl Acc => x + "siów";
+      SF Pl Instr => x + "siami";
+      SF Pl Loc => x + "siach";
+      SF Pl Voc => x + "sie"
+    };
+
+    oper mkNTable0020: Str -> SubstForm => Str; --%
+    oper mkNTable0020 lexem = 
+      let x = Predef.tk 1 lexem in
+    table { 
+      SF Sg Nom => x + "a";
+      SF Sg Gen => x + "i";
+      SF Sg Dat => x + "i";
+      SF Sg Acc => x + "ę";
+      SF Sg Instr => x + "ą";
+      SF Sg Loc => x + "i";
+      SF Sg Voc => x + "u";
+      SF Pl Nom => x + "e";
+      SF Pl Gen => x + "";
+      SF Pl Dat => x + "om";
+      SF Pl Acc => x + "e";
+      SF Pl Instr => x + "ami";
+      SF Pl Loc => x + "ach";
+      SF Pl Voc => x + "e"
+    };
+
+    oper mkNTable0021: Str -> SubstForm => Str; --%
+    oper mkNTable0021 lexem = 
+      let x = Predef.tk 1 lexem in
+    table { 
+      SF Sg Nom => x + "a";
+      SF Sg Gen => x + "y";
+      SF Sg Dat => x + "ie";
+      SF Sg Acc => x + "ę";
+      SF Sg Instr => x + "ą";
+      SF Sg Loc => x + "ie";
+      SF Sg Voc => x + "o";
+      SF Pl Nom => x + "y";
+      SF Pl Gen => x + "";
+      SF Pl Dat => x + "om";
+      SF Pl Acc => x + "y";
+      SF Pl Instr => x + "ami";
+      SF Pl Loc => x + "ach";
+      SF Pl Voc => x + "y"
+    };
+
+    oper mkNTable0022: Str -> SubstForm => Str; --%
+    oper mkNTable0022 lexem = 
+      let x = Predef.tk 2 lexem in
+    table { 
+      SF Sg Nom => x + "ia";
+      SF Sg Gen => x + "ii";
+      SF Sg Dat => x + "ii";
+      SF Sg Acc => x + "ię";
+      SF Sg Instr => x + "ią";
+      SF Sg Loc => x + "ii";
+      SF Sg Voc => x + "io";
+      SF Pl Nom => x + "ie";
+      SF Pl Gen => x + "yj";
+      SF Pl Dat => x + "iom";
+      SF Pl Acc => x + "ie";
+      SF Pl Instr => x + "iami";
+      SF Pl Loc => x + "iach";
+      SF Pl Voc => x + "ie"
+    };
+
+    oper mkNTable0025: Str -> SubstForm => Str; --%
+    oper mkNTable0025 lexem = 
+      let x = Predef.tk 1 lexem in
+    table { 
+      SF Sg Nom => x + "k";
+      SF Sg Gen => x + "ka";
+      SF Sg Dat => x + "kowi";
+      SF Sg Acc => x + "ka";
+      SF Sg Instr => x + "kiem";
+      SF Sg Loc => x + "ku";
+      SF Sg Voc => x + "ku";
+      SF Pl Nom => x + "cy";
+      SF Pl Gen => x + "ków";
+      SF Pl Dat => x + "kom";
+      SF Pl Acc => x + "ków";
+      SF Pl Instr => x + "kami";
+      SF Pl Loc => x + "kach";
+      SF Pl Voc => x + "cy"
+    };
+
+    oper mkNTable0026: Str -> SubstForm => Str; --%
+    oper mkNTable0026 lexem = 
+      let x = Predef.tk 2 lexem in
+    table { 
+      SF Sg Nom => x + "ta";
+      SF Sg Gen => x + "ty";
+      SF Sg Dat => x + "cie";
+      SF Sg Acc => x + "tę";
+      SF Sg Instr => x + "tą";
+      SF Sg Loc => x + "cie";
+      SF Sg Voc => x + "to";
+      SF Pl Nom => x + "ty";
+      SF Pl Gen => x + "t";
+      SF Pl Dat => x + "tom";
+      SF Pl Acc => x + "ty";
+      SF Pl Instr => x + "tami";
+      SF Pl Loc => x + "tach";
+      SF Pl Voc => x + "ty"
+    };
+
+    oper mkNTable0027: Str -> SubstForm => Str; --%
+    oper mkNTable0027 lexem = 
+      let x = Predef.tk 2 lexem in
+    table { 
+      SF Sg Nom => x + "ka";
+      SF Sg Gen => x + "ki";
+      SF Sg Dat => x + "ce";
+      SF Sg Acc => x + "kę";
+      SF Sg Instr => x + "ką";
+      SF Sg Loc => x + "ce";
+      SF Sg Voc => x + "ko";
+      SF Pl Nom => x + "ki";
+      SF Pl Gen => x + "k";
+      SF Pl Dat => x + "kom";
+      SF Pl Acc => x + "ki";
+      SF Pl Instr => x + "kami";
+      SF Pl Loc => x + "kach";
+      SF Pl Voc => x + "ki"
+    };
+
+    oper mkNTable0028: Str -> SubstForm => Str; --%
+    oper mkNTable0028 lexem = 
+      let x = Predef.tk 0 lexem in
+    table { 
+      SF Sg Nom => x + "";
+      SF Sg Gen => x + "a";
+      SF Sg Dat => x + "owi";
+      SF Sg Acc => x + "a";
+      SF Sg Instr => x + "em";
+      SF Sg Loc => x + "ze";
+      SF Sg Voc => x + "ze";
+      SF Pl Nom => x + "zy";
+      SF Pl Gen => x + "ów";
+      SF Pl Dat => x + "om";
+      SF Pl Acc => x + "ów";
+      SF Pl Instr => x + "ami";
+      SF Pl Loc => x + "ach";
+      SF Pl Voc => x + "zy"
+    };
+
+    oper mkNTable0029: Str -> SubstForm => Str; --%
+    oper mkNTable0029 lexem = 
+      let x = Predef.tk 2 lexem in
+    table { 
+      SF Sg Nom => x + "in";
+      SF Sg Gen => x + "ina";
+      SF Sg Dat => x + "inowi";
+      SF Sg Acc => x + "ina";
+      SF Sg Instr => x + "inem";
+      SF Sg Loc => x + "inie";
+      SF Sg Voc => x + "inie";
+      SF Pl Nom => x + "ie";
+      SF Pl Gen => x + "ów";
+      SF Pl Dat => x + "om";
+      SF Pl Acc => x + "ów";
+      SF Pl Instr => x + "ami";
+      SF Pl Loc => x + "ach";
+      SF Pl Voc => x + "ie"
+    };
+
+    oper mkNTable0030: Str -> SubstForm => Str; --%
+    oper mkNTable0030 lexem = 
+      let x = Predef.tk 2 lexem in
+    table { 
+      SF Sg Nom => x + "ga";
+      SF Sg Gen => x + "gi";
+      SF Sg Dat => x + "dze";
+      SF Sg Acc => x + "gę";
+      SF Sg Instr => x + "gą";
+      SF Sg Loc => x + "dze";
+      SF Sg Voc => x + "go";
+      SF Pl Nom => x + "gi";
+      SF Pl Gen => x + "g";
+      SF Pl Dat => x + "gom";
+      SF Pl Acc => x + "gi";
+      SF Pl Instr => x + "gami";
+      SF Pl Loc => x + "gach";
+      SF Pl Voc => x + "gi"
+    };
+
+    oper mkNTable0033: Str -> SubstForm => Str; --%
+    oper mkNTable0033 lexem = 
+      let x = Predef.tk 1 lexem in
+    table { 
+      SF Sg Nom => x + "t";
+      SF Sg Gen => x + "ta";
+      SF Sg Dat => x + "towi";
+      SF Sg Acc => x + "ta";
+      SF Sg Instr => x + "tem";
+      SF Sg Loc => x + "cie";
+      SF Sg Voc => x + "cie";
+      SF Pl Nom => x + "towie";
+      SF Pl Gen => x + "tów";
+      SF Pl Dat => x + "tom";
+      SF Pl Acc => x + "tów";
+      SF Pl Instr => x + "tami";
+      SF Pl Loc => x + "tach";
+      SF Pl Voc => x + "towie"
+    };
+
+    oper mkNTable0035: Str -> SubstForm => Str; --%
+    oper mkNTable0035 lexem = 
+      let x = Predef.tk 3 lexem in
+    table { 
+      SF Sg Nom => x + "nia";
+      SF Sg Gen => x + "ni";
+      SF Sg Dat => x + "ni";
+      SF Sg Acc => x + "nię";
+      SF Sg Instr => x + "nią";
+      SF Sg Loc => x + "ni";
+      SF Sg Voc => x + "niu";
+      SF Pl Nom => x + "nie";
+      SF Pl Gen => x + "ń";
+      SF Pl Dat => x + "niom";
+      SF Pl Acc => x + "nie";
+      SF Pl Instr => x + "niami";
+      SF Pl Loc => x + "niach";
+      SF Pl Voc => x + "nie"
+    };
+
+    oper mkNTable0036: Str -> SubstForm => Str; --%
+    oper mkNTable0036 lexem = 
+      let x = Predef.tk 3 lexem in
+    table { 
+      SF Sg Nom => x + "sia";
+      SF Sg Gen => x + "si";
+      SF Sg Dat => x + "si";
+      SF Sg Acc => x + "się";
+      SF Sg Instr => x + "sią";
+      SF Sg Loc => x + "si";
+      SF Sg Voc => x + "siu";
+      SF Pl Nom => x + "sie";
+      SF Pl Gen => x + "ś";
+      SF Pl Dat => x + "siom";
+      SF Pl Acc => x + "sie";
+      SF Pl Instr => x + "siami";
+      SF Pl Loc => x + "siach";
+      SF Pl Voc => x + "sie"
+    };
+
+    oper mkNTable0037: Str -> SubstForm => Str; --%
+    oper mkNTable0037 lexem = 
+      let x = Predef.tk 0 lexem in
+    table { 
+      SF Sg Nom => x + "";
+      SF Sg Gen => x + "a";
+      SF Sg Dat => x + "owi";
+      SF Sg Acc => x + "a";
+      SF Sg Instr => x + "em";
+      SF Sg Loc => x + "zie";
+      SF Sg Voc => x + "zie";
+      SF Pl Nom => x + "owie";
+      SF Pl Gen => x + "ów";
+      SF Pl Dat => x + "om";
+      SF Pl Acc => x + "ów";
+      SF Pl Instr => x + "ami";
+      SF Pl Loc => x + "ach";
+      SF Pl Voc => x + "owie"
+    };
+
+    oper mkNTable0038: Str -> SubstForm => Str; --%
+    oper mkNTable0038 lexem = 
+      let x = Predef.tk 1 lexem in
+    table { 
+      SF Sg Nom => x + "x";
+      SF Sg Gen => x + "ksu";
+      SF Sg Dat => x + "ksowi";
+      SF Sg Acc => x + "x";
+      SF Sg Instr => x + "ksem";
+      SF Sg Loc => x + "ksie";
+      SF Sg Voc => x + "ksie";
+      SF Pl Nom => x + "ksy";
+      SF Pl Gen => x + "ksów";
+      SF Pl Dat => x + "ksom";
+      SF Pl Acc => x + "ksy";
+      SF Pl Instr => x + "ksami";
+      SF Pl Loc => x + "ksach";
+      SF Pl Voc => x + "ksy"
+    };
+
+    oper mkNTable0042: Str -> SubstForm => Str; --%
+    oper mkNTable0042 lexem = 
+      let x = Predef.tk 2 lexem in
+    table { 
+      SF Sg Nom => x + "to";
+      SF Sg Gen => x + "ta";
+      SF Sg Dat => x + "towi";
+      SF Sg Acc => x + "ta";
+      SF Sg Instr => x + "tem";
+      SF Sg Loc => x + "cie";
+      SF Sg Voc => x + "to";
+      SF Pl Nom => x + "towie";
+      SF Pl Gen => x + "tów";
+      SF Pl Dat => x + "tom";
+      SF Pl Acc => x + "tów";
+      SF Pl Instr => x + "tami";
+      SF Pl Loc => x + "tach";
+      SF Pl Voc => x + "towie"
+    };
+
+    oper mkNTable0043: Str -> SubstForm => Str; --%
+    oper mkNTable0043 lexem = 
+      let x = Predef.tk 0 lexem in
+    table { 
+      SF Sg Nom => x + "";
+      SF Sg Gen => x + "ego";
+      SF Sg Dat => x + "emu";
+      SF Sg Acc => x + "ego";
+      SF Sg Instr => x + "m";
+      SF Sg Loc => x + "m";
+      SF Sg Voc => x + "";
+      SF Pl Nom => x + "owie";
+      SF Pl Gen => x + "ch";
+      SF Pl Dat => x + "m";
+      SF Pl Acc => x + "ch";
+      SF Pl Instr => x + "mi";
+      SF Pl Loc => x + "ch";
+      SF Pl Voc => x + "owie"
+    };
+
+    oper mkNTable0044: Str -> SubstForm => Str; --%
+    oper mkNTable0044 lexem = 
+      let x = Predef.tk 0 lexem in
+    table { 
+      SF Sg Nom => x + "";
+      SF Sg Gen => x + "a";
+      SF Sg Dat => x + "owi";
+      SF Sg Acc => x + "a";
+      SF Sg Instr => x + "em";
+      SF Sg Loc => x + "ie";
+      SF Sg Voc => x + "ie";
+      SF Pl Nom => x + "i";
+      SF Pl Gen => x + "ów";
+      SF Pl Dat => x + "om";
+      SF Pl Acc => x + "ów";
+      SF Pl Instr => x + "ami";
+      SF Pl Loc => x + "ach";
+      SF Pl Voc => x + "i"
+    };
+
+    oper mkNTable0046: Str -> SubstForm => Str; --%
+    oper mkNTable0046 lexem = 
+      let x = Predef.tk 2 lexem in
+    table { 
+      SF Sg Nom => x + "ek";
+      SF Sg Gen => x + "ka";
+      SF Sg Dat => x + "kowi";
+      SF Sg Acc => x + "ka";
+      SF Sg Instr => x + "kiem";
+      SF Sg Loc => x + "ku";
+      SF Sg Voc => x + "ku";
+      SF Pl Nom => x + "kowie";
+      SF Pl Gen => x + "ków";
+      SF Pl Dat => x + "kom";
+      SF Pl Acc => x + "ków";
+      SF Pl Instr => x + "kami";
+      SF Pl Loc => x + "kach";
+      SF Pl Voc => x + "kowie"
+    };
+
+    oper mkNTable0047: Str -> SubstForm => Str; --%
+    oper mkNTable0047 lexem = 
+      let x = Predef.tk 2 lexem in
+    table { 
+      SF Sg Nom => x + "er";
+      SF Sg Gen => x + "ra";
+      SF Sg Dat => x + "rowi";
+      SF Sg Acc => x + "ra";
+      SF Sg Instr => x + "rem";
+      SF Sg Loc => x + "rze";
+      SF Sg Voc => x + "rze";
+      SF Pl Nom => x + "rowie";
+      SF Pl Gen => x + "rów";
+      SF Pl Dat => x + "rom";
+      SF Pl Acc => x + "rów";
+      SF Pl Instr => x + "rami";
+      SF Pl Loc => x + "rach";
+      SF Pl Voc => x + "rowie"
+    };
+
+    oper mkNTable0048: Str -> SubstForm => Str; --%
+    oper mkNTable0048 lexem = 
+      let x = Predef.tk 2 lexem in
+    table { 
+      SF Sg Nom => x + "ra";
+      SF Sg Gen => x + "ry";
+      SF Sg Dat => x + "rze";
+      SF Sg Acc => x + "rę";
+      SF Sg Instr => x + "rą";
+      SF Sg Loc => x + "rze";
+      SF Sg Voc => x + "ro";
+      SF Pl Nom => x + "ry";
+      SF Pl Gen => x + "er";
+      SF Pl Dat => x + "rom";
+      SF Pl Acc => x + "ry";
+      SF Pl Instr => x + "rami";
+      SF Pl Loc => x + "rach";
+      SF Pl Voc => x + "ry"
+    };
+
+    oper mkNTable0049: Str -> SubstForm => Str; --%
+    oper mkNTable0049 lexem = 
+      let x = Predef.tk 2 lexem in
+    table { 
+      SF Sg Nom => x + "ów";
+      SF Sg Gen => x + "owa";
+      SF Sg Dat => x + "owu";
+      SF Sg Acc => x + "ów";
+      SF Sg Instr => x + "owem";
+      SF Sg Loc => x + "owie";
+      SF Sg Voc => x + "owie";
+      SF Pl Nom => x + "owy";
+      SF Pl Gen => x + "owów";
+      SF Pl Dat => x + "owom";
+      SF Pl Acc => x + "owy";
+      SF Pl Instr => x + "owami";
+      SF Pl Loc => x + "owach";
+      SF Pl Voc => x + "owy"
+    };
+
+    oper mkNTable0051: Str -> SubstForm => Str; --%
+    oper mkNTable0051 lexem = 
+      let x = Predef.tk 1 lexem in
+    table { 
+      SF Sg Nom => x + "o";
+      SF Sg Gen => x + "a";
+      SF Sg Dat => x + "owi";
+      SF Sg Acc => x + "a";
+      SF Sg Instr => x + "em";
+      SF Sg Loc => x + "zie";
+      SF Sg Voc => x + "o";
+      SF Pl Nom => x + "owie";
+      SF Pl Gen => x + "ów";
+      SF Pl Dat => x + "om";
+      SF Pl Acc => x + "ów";
+      SF Pl Instr => x + "ami";
+      SF Pl Loc => x + "ach";
+      SF Pl Voc => x + "owie"
+    };
+
+    oper mkNTable0053: Str -> SubstForm => Str; --%
+    oper mkNTable0053 lexem = 
+      let x = Predef.tk 0 lexem in
+    table { 
+      SF Sg Nom => x + "";
+      SF Sg Gen => x + "u";
+      SF Sg Dat => x + "owi";
+      SF Sg Acc => x + "";
+      SF Sg Instr => x + "em";
+      SF Sg Loc => x + "u";
+      SF Sg Voc => x + "u";
+      SF Pl Nom => x + "e";
+      SF Pl Gen => x + "i";
+      SF Pl Dat => x + "om";
+      SF Pl Acc => x + "e";
+      SF Pl Instr => x + "ami";
+      SF Pl Loc => x + "ach";
+      SF Pl Voc => x + "e"
+    };
+
+    oper mkNTable0054: Str -> SubstForm => Str; --%
+    oper mkNTable0054 lexem = 
+      let x = Predef.tk 1 lexem in
+    table { 
+      SF Sg Nom => x + "i";
+      SF Sg Gen => x + "ego";
+      SF Sg Dat => x + "emu";
+      SF Sg Acc => x + "ego";
+      SF Sg Instr => x + "im";
+      SF Sg Loc => x + "im";
+      SF Sg Voc => x + "i";
+      SF Pl Nom => x + "owie";
+      SF Pl Gen => x + "ich";
+      SF Pl Dat => x + "im";
+      SF Pl Acc => x + "ich";
+      SF Pl Instr => x + "imi";
+      SF Pl Loc => x + "ich";
+      SF Pl Voc => x + "owie"
+    };
+
+    oper mkNTable0055: Str -> SubstForm => Str; --%
+    oper mkNTable0055 lexem = 
+      let x = Predef.tk 1 lexem in
+    table { 
+      SF Sg Nom => x + "a";
+      SF Sg Gen => x + "i";
+      SF Sg Dat => x + "i";
+      SF Sg Acc => x + "ę";
+      SF Sg Instr => x + "ą";
+      SF Sg Loc => x + "i";
+      SF Sg Voc => x + "o";
+      SF Pl Nom => x + "e";
+      SF Pl Gen => x + "i";
+      SF Pl Dat => x + "om";
+      SF Pl Acc => x + "e";
+      SF Pl Instr => x + "ami";
+      SF Pl Loc => x + "ach";
+      SF Pl Voc => x + "e"
+    };
+
+    oper mkNTable0059: Str -> SubstForm => Str; --%
+    oper mkNTable0059 lexem = 
+      let x = Predef.tk 2 lexem in
+    table { 
+      SF Sg Nom => x + "ja";
+      SF Sg Gen => x + "i";
+      SF Sg Dat => x + "i";
+      SF Sg Acc => x + "ję";
+      SF Sg Instr => x + "ją";
+      SF Sg Loc => x + "i";
+      SF Sg Voc => x + "jo";
+      SF Pl Nom => x + "je";
+      SF Pl Gen => x + "i";
+      SF Pl Dat => x + "jom";
+      SF Pl Acc => x + "je";
+      SF Pl Instr => x + "jami";
+      SF Pl Loc => x + "jach";
+      SF Pl Voc => x + "je"
+    };
+
+    oper mkNTable0060: Str -> SubstForm => Str; --%
+    oper mkNTable0060 lexem = 
+      let x = Predef.tk 1 lexem in
+    table { 
+      SF Sg Nom => x + "a";
+      SF Sg Gen => x + "i";
+      SF Sg Dat => x + "i";
+      SF Sg Acc => x + "ę";
+      SF Sg Instr => x + "ą";
+      SF Sg Loc => x + "i";
+      SF Sg Voc => x + "o";
+      SF Pl Nom => x + "e";
+      SF Pl Gen => x + "j";
+      SF Pl Dat => x + "om";
+      SF Pl Acc => x + "e";
+      SF Pl Instr => x + "ami";
+      SF Pl Loc => x + "ach";
+      SF Pl Voc => x + "e"
+    };
+
+    oper mkNTable0061: Str -> SubstForm => Str; --%
+    oper mkNTable0061 lexem = 
+      let x = Predef.tk 4 lexem in
+    table { 
+      SF Sg Nom => x + "niec";
+      SF Sg Gen => x + "ńca";
+      SF Sg Dat => x + "ńcowi";
+      SF Sg Acc => x + "ńca";
+      SF Sg Instr => x + "ńcem";
+      SF Sg Loc => x + "ńcu";
+      SF Sg Voc => x + "ńcu";
+      SF Pl Nom => x + "ńcy";
+      SF Pl Gen => x + "ńców";
+      SF Pl Dat => x + "ńcom";
+      SF Pl Acc => x + "ńców";
+      SF Pl Instr => x + "ńcami";
+      SF Pl Loc => x + "ńcach";
+      SF Pl Voc => x + "ńcy"
+    };
+
+    oper mkNTable0064: Str -> SubstForm => Str; --%
+    oper mkNTable0064 lexem = 
+      let x = Predef.tk 0 lexem in
+    table { 
+      SF Sg Nom => x + "";
+      SF Sg Gen => x + "a";
+      SF Sg Dat => x + "owi";
+      SF Sg Acc => x + "a";
+      SF Sg Instr => x + "em";
+      SF Sg Loc => x + "ze";
+      SF Sg Voc => x + "ze";
+      SF Pl Nom => x + "y";
+      SF Pl Gen => x + "ów";
+      SF Pl Dat => x + "om";
+      SF Pl Acc => x + "y";
+      SF Pl Instr => x + "ami";
+      SF Pl Loc => x + "ach";
+      SF Pl Voc => x + "y"
+    };
+
+    oper mkNTable0067: Str -> SubstForm => Str; --%
+    oper mkNTable0067 lexem = 
+      let x = Predef.tk 0 lexem in
+    table { 
+      SF Sg Nom => x + "";
+      SF Sg Gen => x + "ego";
+      SF Sg Dat => x + "emu";
+      SF Sg Acc => x + "ego";
+      SF Sg Instr => x + "m";
+      SF Sg Loc => x + "m";
+      SF Sg Voc => x + "";
+      SF Pl Nom => x + "";
+      SF Pl Gen => x + "ch";
+      SF Pl Dat => x + "m";
+      SF Pl Acc => x + "ch";
+      SF Pl Instr => x + "mi";
+      SF Pl Loc => x + "ch";
+      SF Pl Voc => x + ""
+    };
+
+    oper mkNTable0068: Str -> SubstForm => Str; --%
+    oper mkNTable0068 lexem = 
+      let x = Predef.tk 1 lexem in
+    table { 
+      SF Sg Nom => x + "i";
+      SF Sg Gen => x + "ego";
+      SF Sg Dat => x + "emu";
+      SF Sg Acc => x + "ego";
+      SF Sg Instr => x + "im";
+      SF Sg Loc => x + "im";
+      SF Sg Voc => x + "i";
+      SF Pl Nom => x + "i";
+      SF Pl Gen => x + "ich";
+      SF Pl Dat => x + "im";
+      SF Pl Acc => x + "ich";
+      SF Pl Instr => x + "imi";
+      SF Pl Loc => x + "ich";
+      SF Pl Voc => x + "i"
+    };
+
+    oper mkNTable0069: Str -> SubstForm => Str; --%
+    oper mkNTable0069 lexem = 
+      let x = Predef.tk 1 lexem in
+    table { 
+      SF Sg Nom => x + "ć";
+      SF Sg Gen => x + "cia";
+      SF Sg Dat => x + "ciowi";
+      SF Sg Acc => x + "cia";
+      SF Sg Instr => x + "ciem";
+      SF Sg Loc => x + "ciu";
+      SF Sg Voc => x + "ciu";
+      SF Pl Nom => x + "ciowie";
+      SF Pl Gen => x + "ciów";
+      SF Pl Dat => x + "ciom";
+      SF Pl Acc => x + "ciów";
+      SF Pl Instr => x + "ciami";
+      SF Pl Loc => x + "ciach";
+      SF Pl Voc => x + "ciowie"
+    };
+
+    oper mkNTable0072: Str -> SubstForm => Str; --%
+    oper mkNTable0072 lexem = 
+      let x = Predef.tk 3 lexem in
+    table { 
+      SF Sg Nom => x + "zia";
+      SF Sg Gen => x + "zi";
+      SF Sg Dat => x + "zi";
+      SF Sg Acc => x + "zię";
+      SF Sg Instr => x + "zią";
+      SF Sg Loc => x + "zi";
+      SF Sg Voc => x + "ziu";
+      SF Pl Nom => x + "zie";
+      SF Pl Gen => x + "ź";
+      SF Pl Dat => x + "ziom";
+      SF Pl Acc => x + "zie";
+      SF Pl Instr => x + "ziami";
+      SF Pl Loc => x + "ziach";
+      SF Pl Voc => x + "zie"
+    };
+
+    oper mkNTable0073: Str -> SubstForm => Str; --%
+    oper mkNTable0073 lexem = 
+      let x = Predef.tk 1 lexem in
+    table { 
+      SF Sg Nom => x + "a";
+      SF Sg Gen => x + "i";
+      SF Sg Dat => x + "i";
+      SF Sg Acc => x + "ę";
+      SF Sg Instr => x + "ą";
+      SF Sg Loc => x + "i";
+      SF Sg Voc => x + "u";
+      SF Pl Nom => x + "e";
+      SF Pl Gen => x + "i";
+      SF Pl Dat => x + "om";
+      SF Pl Acc => x + "e";
+      SF Pl Instr => x + "ami";
+      SF Pl Loc => x + "ach";
+      SF Pl Voc => x + "e"
+    };
+
+    oper mkNTable0075: Str -> SubstForm => Str; --%
+    oper mkNTable0075 lexem = 
+      let x = Predef.tk 0 lexem in
+    table { 
+      SF Sg Nom => x + "";
+      SF Sg Gen => x + "a";
+      SF Sg Dat => x + "owi";
+      SF Sg Acc => x + "a";
+      SF Sg Instr => x + "em";
+      SF Sg Loc => x + "u";
+      SF Sg Voc => x + "u";
+      SF Pl Nom => x + "e";
+      SF Pl Gen => x + "ów";
+      SF Pl Dat => x + "om";
+      SF Pl Acc => x + "ów";
+      SF Pl Instr => x + "ami";
+      SF Pl Loc => x + "ach";
+      SF Pl Voc => x + "e"
+    };
+
+    oper mkNTable0077: Str -> SubstForm => Str; --%
+    oper mkNTable0077 lexem = 
+      let x = Predef.tk 2 lexem in
+    table { 
+      SF Sg Nom => x + "oł";
+      SF Sg Gen => x + "oła";
+      SF Sg Dat => x + "ołowi";
+      SF Sg Acc => x + "oła";
+      SF Sg Instr => x + "ołem";
+      SF Sg Loc => x + "ele";
+      SF Sg Voc => x + "ele";
+      SF Pl Nom => x + "ołowie";
+      SF Pl Gen => x + "ołów";
+      SF Pl Dat => x + "ołom";
+      SF Pl Acc => x + "ołów";
+      SF Pl Instr => x + "ołami";
+      SF Pl Loc => x + "ołach";
+      SF Pl Voc => x + "ołowie"
+    };
+
+    oper mkNTable0079: Str -> SubstForm => Str; --%
+    oper mkNTable0079 lexem = 
+      let x = Predef.tk 1 lexem in
+    table { 
+      SF Sg Nom => x + "o";
+      SF Sg Gen => x + "a";
+      SF Sg Dat => x + "owi";
+      SF Sg Acc => x + "a";
+      SF Sg Instr => x + "em";
+      SF Sg Loc => x + "u";
+      SF Sg Voc => x + "o";
+      SF Pl Nom => x + "owie";
+      SF Pl Gen => x + "ów";
+      SF Pl Dat => x + "om";
+      SF Pl Acc => x + "ów";
+      SF Pl Instr => x + "ami";
+      SF Pl Loc => x + "ach";
+      SF Pl Voc => x + "owie"
+    };
+
+    oper mkNTable0080: Str -> SubstForm => Str; --%
+    oper mkNTable0080 lexem = 
+      let x = Predef.tk 1 lexem in
+    table { 
+      SF Sg Nom => x + "ś";
+      SF Sg Gen => x + "sia";
+      SF Sg Dat => x + "siowi";
+      SF Sg Acc => x + "sia";
+      SF Sg Instr => x + "siem";
+      SF Sg Loc => x + "siu";
+      SF Sg Voc => x + "siu";
+      SF Pl Nom => x + "siowie";
+      SF Pl Gen => x + "siów";
+      SF Pl Dat => x + "siom";
+      SF Pl Acc => x + "siów";
+      SF Pl Instr => x + "siami";
+      SF Pl Loc => x + "siach";
+      SF Pl Voc => x + "siowie"
+    };
+
+    oper mkNTable0083: Str -> SubstForm => Str; --%
+    oper mkNTable0083 lexem = 
+      let x = Predef.tk 1 lexem in
+    table { 
+      SF Sg Nom => x + "o";
+      SF Sg Gen => x + "ina";
+      SF Sg Dat => x + "owi";
+      SF Sg Acc => x + "ina";
+      SF Sg Instr => x + "inem";
+      SF Sg Loc => x + "u";
+      SF Sg Voc => x + "u";
+      SF Pl Nom => x + "owie";
+      SF Pl Gen => x + "ów";
+      SF Pl Dat => x + "om";
+      SF Pl Acc => x + "ów";
+      SF Pl Instr => x + "ami";
+      SF Pl Loc => x + "ach";
+      SF Pl Voc => x + "owie"
+    };
+
+    oper mkNTable0088: Str -> SubstForm => Str; --%
+    oper mkNTable0088 lexem = 
+      let x = Predef.tk 1 lexem in
+    table { 
+      SF Sg Nom => x + "a";
+      SF Sg Gen => x + "i";
+      SF Sg Dat => x + "i";
+      SF Sg Acc => x + "ę";
+      SF Sg Instr => x + "ą";
+      SF Sg Loc => x + "i";
+      SF Sg Voc => x + "o";
+      SF Pl Nom => x + "owie";
+      SF Pl Gen => x + "ów";
+      SF Pl Dat => x + "om";
+      SF Pl Acc => x + "ów";
+      SF Pl Instr => x + "ami";
+      SF Pl Loc => x + "ach";
+      SF Pl Voc => x + "owie"
+    };
+
+    oper mkNTable0089: Str -> SubstForm => Str; --%
+    oper mkNTable0089 lexem = 
+      let x = Predef.tk 3 lexem in
+    table { 
+      SF Sg Nom => x + "sto";
+      SF Sg Gen => x + "sta";
+      SF Sg Dat => x + "stowi";
+      SF Sg Acc => x + "sta";
+      SF Sg Instr => x + "stem";
+      SF Sg Loc => x + "ście";
+      SF Sg Voc => x + "sto";
+      SF Pl Nom => x + "stowie";
+      SF Pl Gen => x + "stów";
+      SF Pl Dat => x + "stom";
+      SF Pl Acc => x + "stów";
+      SF Pl Instr => x + "stami";
+      SF Pl Loc => x + "stach";
+      SF Pl Voc => x + "stowie"
+    };
+
+    oper mkNTable0091: Str -> SubstForm => Str; --%
+    oper mkNTable0091 lexem = 
+      let x = Predef.tk 0 lexem in
+    table { 
+      SF Sg Nom => x + "";
+      SF Sg Gen => x + "a";
+      SF Sg Dat => x + "owi";
+      SF Sg Acc => x + "a";
+      SF Sg Instr => x + "em";
+      SF Sg Loc => x + "";
+      SF Sg Voc => x + "";
+      SF Pl Nom => x + "owie";
+      SF Pl Gen => x + "ów";
+      SF Pl Dat => x + "om";
+      SF Pl Acc => x + "ów";
+      SF Pl Instr => x + "ami";
+      SF Pl Loc => x + "ach";
+      SF Pl Voc => x + "owie"
+    };
+
+    oper mkNTable0094: Str -> SubstForm => Str; --%
+    oper mkNTable0094 lexem = 
+      let x = Predef.tk 2 lexem in
+    table { 
+      SF Sg Nom => x + "ja";
+      SF Sg Gen => x + "ji";
+      SF Sg Dat => x + "ji";
+      SF Sg Acc => x + "ję";
+      SF Sg Instr => x + "ją";
+      SF Sg Loc => x + "ji";
+      SF Sg Voc => x + "jo";
+      SF Pl Nom => x + "je";
+      SF Pl Gen => x + "yj";
+      SF Pl Dat => x + "jom";
+      SF Pl Acc => x + "je";
+      SF Pl Instr => x + "jami";
+      SF Pl Loc => x + "jach";
+      SF Pl Voc => x + "je"
+    };
+
+    oper mkNTable0095: Str -> SubstForm => Str; --%
+    oper mkNTable0095 lexem = 
+      let x = Predef.tk 2 lexem in
+    table { 
+      SF Sg Nom => x + "um";
+      SF Sg Gen => x + "um";
+      SF Sg Dat => x + "um";
+      SF Sg Acc => x + "um";
+      SF Sg Instr => x + "um";
+      SF Sg Loc => x + "um";
+      SF Sg Voc => x + "um";
+      SF Pl Nom => x + "a";
+      SF Pl Gen => x + "ów";
+      SF Pl Dat => x + "om";
+      SF Pl Acc => x + "a";
+      SF Pl Instr => x + "ami";
+      SF Pl Loc => x + "ach";
+      SF Pl Voc => x + "a"
+    };
+
+    oper mkNTable0096: Str -> SubstForm => Str; --%
+    oper mkNTable0096 lexem = 
+      let x = Predef.tk 0 lexem in
+    table { 
+      SF Sg Nom => x + "";
+      SF Sg Gen => x + "u";
+      SF Sg Dat => x + "owi";
+      SF Sg Acc => x + "";
+      SF Sg Instr => x + "em";
+      SF Sg Loc => x + "ie";
+      SF Sg Voc => x + "ie";
+      SF Pl Nom => x + "y";
+      SF Pl Gen => x + "ów";
+      SF Pl Dat => x + "om";
+      SF Pl Acc => x + "y";
+      SF Pl Instr => x + "ami";
+      SF Pl Loc => x + "ach";
+      SF Pl Voc => x + "y"
+    };
+
+    oper mkNTable0097: Str -> SubstForm => Str; --%
+    oper mkNTable0097 lexem = 
+      let x = Predef.tk 2 lexem in
+    table { 
+      SF Sg Nom => x + "st";
+      SF Sg Gen => x + "sta";
+      SF Sg Dat => x + "stowi";
+      SF Sg Acc => x + "sta";
+      SF Sg Instr => x + "stem";
+      SF Sg Loc => x + "ście";
+      SF Sg Voc => x + "ście";
+      SF Pl Nom => x + "stowie";
+      SF Pl Gen => x + "stów";
+      SF Pl Dat => x + "stom";
+      SF Pl Acc => x + "stów";
+      SF Pl Instr => x + "stami";
+      SF Pl Loc => x + "stach";
+      SF Pl Voc => x + "stowie"
+    };
+
+    oper mkNTable0098: Str -> SubstForm => Str; --%
+    oper mkNTable0098 lexem = 
+      let x = Predef.tk 3 lexem in
+    table { 
+      SF Sg Nom => x + "sta";
+      SF Sg Gen => x + "sty";
+      SF Sg Dat => x + "ście";
+      SF Sg Acc => x + "stę";
+      SF Sg Instr => x + "stą";
+      SF Sg Loc => x + "ście";
+      SF Sg Voc => x + "sto";
+      SF Pl Nom => x + "sty";
+      SF Pl Gen => x + "st";
+      SF Pl Dat => x + "stom";
+      SF Pl Acc => x + "sty";
+      SF Pl Instr => x + "stami";
+      SF Pl Loc => x + "stach";
+      SF Pl Voc => x + "sty"
+    };
+
+    oper mkNTable0099: Str -> SubstForm => Str; --%
+    oper mkNTable0099 lexem = 
+      let x = Predef.tk 1 lexem in
+    table { 
+      SF Sg Nom => x + "a";
+      SF Sg Gen => x + "y";
+      SF Sg Dat => x + "ze";
+      SF Sg Acc => x + "ę";
+      SF Sg Instr => x + "ą";
+      SF Sg Loc => x + "ze";
+      SF Sg Voc => x + "o";
+      SF Pl Nom => x + "y";
+      SF Pl Gen => x + "";
+      SF Pl Dat => x + "om";
+      SF Pl Acc => x + "y";
+      SF Pl Instr => x + "ami";
+      SF Pl Loc => x + "ach";
+      SF Pl Voc => x + "y"
+    };
+
+    oper mkNTable0100: Str -> SubstForm => Str; --%
+    oper mkNTable0100 lexem = 
+      let x = Predef.tk 1 lexem in
+    table { 
+      SF Sg Nom => x + "a";
+      SF Sg Gen => x + "y";
+      SF Sg Dat => x + "ie";
+      SF Sg Acc => x + "ę";
+      SF Sg Instr => x + "ą";
+      SF Sg Loc => x + "ie";
+      SF Sg Voc => x + "o";
+      SF Pl Nom => x + "owie";
+      SF Pl Gen => x + "ów";
+      SF Pl Dat => x + "om";
+      SF Pl Acc => x + "ów";
+      SF Pl Instr => x + "ami";
+      SF Pl Loc => x + "ach";
+      SF Pl Voc => x + "owie"
+    };
+
+    oper mkNTable0102: Str -> SubstForm => Str; --%
+    oper mkNTable0102 lexem = 
+      let x = Predef.tk 2 lexem in
+    table { 
+      SF Sg Nom => x + "in";
+      SF Sg Gen => x + "ina";
+      SF Sg Dat => x + "inowi";
+      SF Sg Acc => x + "ina";
+      SF Sg Instr => x + "inem";
+      SF Sg Loc => x + "inie";
+      SF Sg Voc => x + "inie";
+      SF Pl Nom => x + "ie";
+      SF Pl Gen => x + "";
+      SF Pl Dat => x + "om";
+      SF Pl Acc => x + "";
+      SF Pl Instr => x + "ami";
+      SF Pl Loc => x + "ach";
+      SF Pl Voc => x + "ie"
+    };
+
+    oper mkNTable0103: Str -> SubstForm => Str; --%
+    oper mkNTable0103 lexem = 
+      let x = Predef.tk 2 lexem in
+    table { 
+      SF Sg Nom => x + "ta";
+      SF Sg Gen => x + "ty";
+      SF Sg Dat => x + "cie";
+      SF Sg Acc => x + "tę";
+      SF Sg Instr => x + "tą";
+      SF Sg Loc => x + "cie";
+      SF Sg Voc => x + "to";
+      SF Pl Nom => x + "ci";
+      SF Pl Gen => x + "tów";
+      SF Pl Dat => x + "tom";
+      SF Pl Acc => x + "tów";
+      SF Pl Instr => x + "tami";
+      SF Pl Loc => x + "tach";
+      SF Pl Voc => x + "ci"
+    };
+
+    oper mkNTable0104: Str -> SubstForm => Str; --%
+    oper mkNTable0104 lexem = 
+      let x = Predef.tk 3 lexem in
+    table { 
+      SF Sg Nom => x + "śka";
+      SF Sg Gen => x + "śki";
+      SF Sg Dat => x + "śce";
+      SF Sg Acc => x + "śkę";
+      SF Sg Instr => x + "śką";
+      SF Sg Loc => x + "śce";
+      SF Sg Voc => x + "śko";
+      SF Pl Nom => x + "śki";
+      SF Pl Gen => x + "siek";
+      SF Pl Dat => x + "śkom";
+      SF Pl Acc => x + "śki";
+      SF Pl Instr => x + "śkami";
+      SF Pl Loc => x + "śkach";
+      SF Pl Voc => x + "śki"
+    };
+
+    oper mkNTable0110: Str -> SubstForm => Str; --%
+    oper mkNTable0110 lexem = 
+      let x = Predef.tk 1 lexem in
+    table { 
+      SF Sg Nom => x + "a";
+      SF Sg Gen => x + "y";
+      SF Sg Dat => x + "zie";
+      SF Sg Acc => x + "ę";
+      SF Sg Instr => x + "ą";
+      SF Sg Loc => x + "zie";
+      SF Sg Voc => x + "o";
+      SF Pl Nom => x + "owie";
+      SF Pl Gen => x + "ów";
+      SF Pl Dat => x + "om";
+      SF Pl Acc => x + "ów";
+      SF Pl Instr => x + "ami";
+      SF Pl Loc => x + "ach";
+      SF Pl Voc => x + "owie"
+    };
+
+    oper mkNTable0111: Str -> SubstForm => Str; --%
+    oper mkNTable0111 lexem = 
+      let x = Predef.tk 0 lexem in
+    table { 
+      SF Sg Nom => x + "";
+      SF Sg Gen => x + "u";
+      SF Sg Dat => x + "owi";
+      SF Sg Acc => x + "";
+      SF Sg Instr => x + "em";
+      SF Sg Loc => x + "zie";
+      SF Sg Voc => x + "zie";
+      SF Pl Nom => x + "y";
+      SF Pl Gen => x + "ów";
+      SF Pl Dat => x + "om";
+      SF Pl Acc => x + "y";
+      SF Pl Instr => x + "ami";
+      SF Pl Loc => x + "ach";
+      SF Pl Voc => x + "y"
+    };
+
+    oper mkNTable0114: Str -> SubstForm => Str; --%
+    oper mkNTable0114 lexem = 
+      let x = Predef.tk 1 lexem in
+    table { 
+      SF Sg Nom => x + "c";
+      SF Sg Gen => x + "ca";
+      SF Sg Dat => x + "cowi";
+      SF Sg Acc => x + "ca";
+      SF Sg Instr => x + "kiem";
+      SF Sg Loc => x + "cu";
+      SF Sg Voc => x + "cu";
+      SF Pl Nom => x + "cowie";
+      SF Pl Gen => x + "ców";
+      SF Pl Dat => x + "com";
+      SF Pl Acc => x + "ców";
+      SF Pl Instr => x + "cami";
+      SF Pl Loc => x + "cach";
+      SF Pl Voc => x + "cowie"
+    };
+
+    oper mkNTable0117: Str -> SubstForm => Str; --%
+    oper mkNTable0117 lexem = 
+      let x = Predef.tk 0 lexem in
+    table { 
+      SF Sg Nom => x + "";
+      SF Sg Gen => x + "u";
+      SF Sg Dat => x + "owi";
+      SF Sg Acc => x + "";
+      SF Sg Instr => x + "em";
+      SF Sg Loc => x + "ze";
+      SF Sg Voc => x + "ze";
+      SF Pl Nom => x + "y";
+      SF Pl Gen => x + "ów";
+      SF Pl Dat => x + "om";
+      SF Pl Acc => x + "y";
+      SF Pl Instr => x + "ami";
+      SF Pl Loc => x + "ach";
+      SF Pl Voc => x + "y"
+    };
+
+    oper mkNTable0118: Str -> SubstForm => Str; --%
+    oper mkNTable0118 lexem = 
+      let x = Predef.tk 0 lexem in
+    table { 
+      SF Sg Nom => x + "";
+      SF Sg Gen => x + "a";
+      SF Sg Dat => x + "owi";
+      SF Sg Acc => x + "a";
+      SF Sg Instr => x + "em";
+      SF Sg Loc => x + "ie";
+      SF Sg Voc => x + "ie";
+      SF Pl Nom => x + "y";
+      SF Pl Gen => x + "ów";
+      SF Pl Dat => x + "om";
+      SF Pl Acc => x + "y";
+      SF Pl Instr => x + "ami";
+      SF Pl Loc => x + "ach";
+      SF Pl Voc => x + "y"
+    };
+
+    oper mkNTable0119: Str -> SubstForm => Str; --%
+    oper mkNTable0119 lexem = 
+      let x = Predef.tk 3 lexem in
+    table { 
+      SF Sg Nom => x + "owo";
+      SF Sg Gen => x + "owa";
+      SF Sg Dat => x + "owu";
+      SF Sg Acc => x + "owo";
+      SF Sg Instr => x + "owem";
+      SF Sg Loc => x + "owie";
+      SF Sg Voc => x + "owo";
+      SF Pl Nom => x + "owa";
+      SF Pl Gen => x + "ów";
+      SF Pl Dat => x + "owom";
+      SF Pl Acc => x + "owa";
+      SF Pl Instr => x + "owami";
+      SF Pl Loc => x + "owach";
+      SF Pl Voc => x + "owa"
+    };
+
+    oper mkNTable0121: Str -> SubstForm => Str; --%
+    oper mkNTable0121 lexem = 
+      let x = Predef.tk 2 lexem in
+    table { 
+      SF Sg Nom => x + "ja";
+      SF Sg Gen => x + "i";
+      SF Sg Dat => x + "i";
+      SF Sg Acc => x + "ję";
+      SF Sg Instr => x + "ją";
+      SF Sg Loc => x + "i";
+      SF Sg Voc => x + "jo";
+      SF Pl Nom => x + "jowie";
+      SF Pl Gen => x + "jów";
+      SF Pl Dat => x + "jom";
+      SF Pl Acc => x + "jów";
+      SF Pl Instr => x + "jami";
+      SF Pl Loc => x + "jach";
+      SF Pl Voc => x + "jowie"
+    };
+
+    oper mkNTable0123: Str -> SubstForm => Str; --%
+    oper mkNTable0123 lexem = 
+      let x = Predef.tk 1 lexem in
+    table { 
+      SF Sg Nom => x + "y";
+      SF Sg Gen => x + "ego";
+      SF Sg Dat => x + "emu";
+      SF Sg Acc => x + "ego";
+      SF Sg Instr => x + "ym";
+      SF Sg Loc => x + "ym";
+      SF Sg Voc => x + "y";
+      SF Pl Nom => x + "y";
+      SF Pl Gen => x + "ych";
+      SF Pl Dat => x + "ym";
+      SF Pl Acc => x + "ych";
+      SF Pl Instr => x + "ymi";
+      SF Pl Loc => x + "ych";
+      SF Pl Voc => x + "y"
+    };
+
+    oper mkNTable0126: Str -> SubstForm => Str; --%
+    oper mkNTable0126 lexem = 
+      let x = Predef.tk 2 lexem in
+    table { 
+      SF Sg Nom => x + "ka";
+      SF Sg Gen => x + "ki";
+      SF Sg Dat => x + "ce";
+      SF Sg Acc => x + "kę";
+      SF Sg Instr => x + "ką";
+      SF Sg Loc => x + "ce";
+      SF Sg Voc => x + "ko";
+      SF Pl Nom => x + "kowie";
+      SF Pl Gen => x + "ków";
+      SF Pl Dat => x + "kom";
+      SF Pl Acc => x + "ków";
+      SF Pl Instr => x + "kami";
+      SF Pl Loc => x + "kach";
+      SF Pl Voc => x + "kowie"
+    };
+
+    oper mkNTable0129: Str -> SubstForm => Str; --%
+    oper mkNTable0129 lexem = 
+      let x = Predef.tk 0 lexem in
+    table { 
+      SF Sg Nom => x + "";
+      SF Sg Gen => x + "u";
+      SF Sg Dat => x + "owi";
+      SF Sg Acc => x + "";
+      SF Sg Instr => x + "em";
+      SF Sg Loc => x + "u";
+      SF Sg Voc => x + "u";
+      SF Pl Nom => x + "e";
+      SF Pl Gen => x + "ów";
+      SF Pl Dat => x + "om";
+      SF Pl Acc => x + "e";
+      SF Pl Instr => x + "ami";
+      SF Pl Loc => x + "ach";
+      SF Pl Voc => x + "e"
+    };
+
+    oper mkNTable0131: Str -> SubstForm => Str; --%
+    oper mkNTable0131 lexem = 
+      let x = Predef.tk 0 lexem in
+    table { 
+      SF Sg Nom => x + "";
+      SF Sg Gen => x + "a";
+      SF Sg Dat => x + "owi";
+      SF Sg Acc => x + "";
+      SF Sg Instr => x + "em";
+      SF Sg Loc => x + "ie";
+      SF Sg Voc => x + "ie";
+      SF Pl Nom => x + "y";
+      SF Pl Gen => x + "ów";
+      SF Pl Dat => x + "om";
+      SF Pl Acc => x + "y";
+      SF Pl Instr => x + "ami";
+      SF Pl Loc => x + "ach";
+      SF Pl Voc => x + "y"
+    };
+
+    oper mkNTable0133: Str -> SubstForm => Str; --%
+    oper mkNTable0133 lexem = 
+      let x = Predef.tk 2 lexem in
+    table { 
+      SF Sg Nom => x + "ko";
+      SF Sg Gen => x + "ki";
+      SF Sg Dat => x + "ce";
+      SF Sg Acc => x + "kę";
+      SF Sg Instr => x + "ką";
+      SF Sg Loc => x + "ce";
+      SF Sg Voc => x + "ko";
+      SF Pl Nom => x + "kowie";
+      SF Pl Gen => x + "ków";
+      SF Pl Dat => x + "kom";
+      SF Pl Acc => x + "ków";
+      SF Pl Instr => x + "kami";
+      SF Pl Loc => x + "kach";
+      SF Pl Voc => x + "kowie"
+    };
+
+    oper mkNTable0140: Str -> SubstForm => Str; --%
+    oper mkNTable0140 lexem = 
+      let x = Predef.tk 4 lexem in
+    table { 
+      SF Sg Nom => x + "niek";
+      SF Sg Gen => x + "ńka";
+      SF Sg Dat => x + "ńkowi";
+      SF Sg Acc => x + "ńka";
+      SF Sg Instr => x + "ńkiem";
+      SF Sg Loc => x + "ńku";
+      SF Sg Voc => x + "ńku";
+      SF Pl Nom => x + "ńkowie";
+      SF Pl Gen => x + "ńków";
+      SF Pl Dat => x + "ńkom";
+      SF Pl Acc => x + "ńków";
+      SF Pl Instr => x + "ńkami";
+      SF Pl Loc => x + "ńkach";
+      SF Pl Voc => x + "ńkowie"
+    };
+
+    oper mkNTable0142: Str -> SubstForm => Str; --%
+    oper mkNTable0142 lexem = 
+      let x = Predef.tk 1 lexem in
+    table { 
+      SF Sg Nom => x + "ń";
+      SF Sg Gen => x + "nia";
+      SF Sg Dat => x + "niowi";
+      SF Sg Acc => x + "nia";
+      SF Sg Instr => x + "niem";
+      SF Sg Loc => x + "niu";
+      SF Sg Voc => x + "niu";
+      SF Pl Nom => x + "niowie";
+      SF Pl Gen => x + "niów";
+      SF Pl Dat => x + "niom";
+      SF Pl Acc => x + "niów";
+      SF Pl Instr => x + "niami";
+      SF Pl Loc => x + "niach";
+      SF Pl Voc => x + "niowie"
+    };
+
+    oper mkNTable0144: Str -> SubstForm => Str; --%
+    oper mkNTable0144 lexem = 
+      let x = Predef.tk 2 lexem in
+    table { 
+      SF Sg Nom => x + "na";
+      SF Sg Gen => x + "ny";
+      SF Sg Dat => x + "nie";
+      SF Sg Acc => x + "nę";
+      SF Sg Instr => x + "ną";
+      SF Sg Loc => x + "nie";
+      SF Sg Voc => x + "no";
+      SF Pl Nom => x + "ny";
+      SF Pl Gen => x + "ien";
+      SF Pl Dat => x + "nom";
+      SF Pl Acc => x + "ny";
+      SF Pl Instr => x + "nami";
+      SF Pl Loc => x + "nach";
+      SF Pl Voc => x + "ny"
+    };
+
+    oper mkNTable0145: Str -> SubstForm => Str; --%
+    oper mkNTable0145 lexem = 
+      let x = lexem in
+    table { 
+      SF Sg Nom => x + "a";
+      SF Sg Gen => x + "";
+      SF Sg Dat => x + "";
+      SF Sg Acc => x + "ę";
+      SF Sg Instr => x + "ą";
+      SF Sg Loc => x + "";
+      SF Sg Voc => x + "o";
+      SF Pl Nom => x + "e";
+      SF Pl Gen => x + "";
+      SF Pl Dat => x + "om";
+      SF Pl Acc => x + "e";
+      SF Pl Instr => x + "ami";
+      SF Pl Loc => x + "ach";
+      SF Pl Voc => x + "e"
+    };
+
+    oper mkNTable0151: Str -> SubstForm => Str; --%
+    oper mkNTable0151 lexem = 
+      let x = Predef.tk 1 lexem in
+    table { 
+      SF Sg Nom => x + "ł";
+      SF Sg Gen => x + "ła";
+      SF Sg Dat => x + "łowi";
+      SF Sg Acc => x + "ła";
+      SF Sg Instr => x + "łem";
+      SF Sg Loc => x + "le";
+      SF Sg Voc => x + "le";
+      SF Pl Nom => x + "łowie";
+      SF Pl Gen => x + "łów";
+      SF Pl Dat => x + "łom";
+      SF Pl Acc => x + "łów";
+      SF Pl Instr => x + "łami";
+      SF Pl Loc => x + "łach";
+      SF Pl Voc => x + "łowie"
+    };
+
+    oper mkNTable0152: Str -> SubstForm => Str; --%
+    oper mkNTable0152 lexem = 
+      let x = Predef.tk 2 lexem in
+    table { 
+      SF Sg Nom => x + "ła";
+      SF Sg Gen => x + "ły";
+      SF Sg Dat => x + "le";
+      SF Sg Acc => x + "łę";
+      SF Sg Instr => x + "łą";
+      SF Sg Loc => x + "le";
+      SF Sg Voc => x + "ło";
+      SF Pl Nom => x + "ły";
+      SF Pl Gen => x + "ł";
+      SF Pl Dat => x + "łom";
+      SF Pl Acc => x + "ły";
+      SF Pl Instr => x + "łami";
+      SF Pl Loc => x + "łach";
+      SF Pl Voc => x + "ły"
+    };
+
+    oper mkNTable0153: Str -> SubstForm => Str; --%
+    oper mkNTable0153 lexem = 
+      let x = Predef.tk 2 lexem in
+    table { 
+      SF Sg Nom => x + "ta";
+      SF Sg Gen => x + "ty";
+      SF Sg Dat => x + "cie";
+      SF Sg Acc => x + "tę";
+      SF Sg Instr => x + "tą";
+      SF Sg Loc => x + "cie";
+      SF Sg Voc => x + "to";
+      SF Pl Nom => x + "towie";
+      SF Pl Gen => x + "tów";
+      SF Pl Dat => x + "tom";
+      SF Pl Acc => x + "tów";
+      SF Pl Instr => x + "tami";
+      SF Pl Loc => x + "tach";
+      SF Pl Voc => x + "towie"
+    };
+
+    oper mkNTable0154: Str -> SubstForm => Str; --%
+    oper mkNTable0154 lexem = 
+      let x = Predef.tk 2 lexem in
+    table { 
+      SF Sg Nom => x + "ec";
+      SF Sg Gen => x + "ca";
+      SF Sg Dat => x + "cowi";
+      SF Sg Acc => x + "ca";
+      SF Sg Instr => x + "cem";
+      SF Sg Loc => x + "cu";
+      SF Sg Voc => x + "cu";
+      SF Pl Nom => x + "cowie";
+      SF Pl Gen => x + "ców";
+      SF Pl Dat => x + "com";
+      SF Pl Acc => x + "ców";
+      SF Pl Instr => x + "cami";
+      SF Pl Loc => x + "cach";
+      SF Pl Voc => x + "cowie"
+    };
+
+    oper mkNTable0155: Str -> SubstForm => Str; --%
+    oper mkNTable0155 lexem = 
+      let x = Predef.tk 2 lexem in
+    table { 
+      SF Sg Nom => x + "sł";
+      SF Sg Gen => x + "sła";
+      SF Sg Dat => x + "słowi";
+      SF Sg Acc => x + "sła";
+      SF Sg Instr => x + "słem";
+      SF Sg Loc => x + "śle";
+      SF Sg Voc => x + "śle";
+      SF Pl Nom => x + "słowie";
+      SF Pl Gen => x + "słów";
+      SF Pl Dat => x + "słom";
+      SF Pl Acc => x + "słów";
+      SF Pl Instr => x + "słami";
+      SF Pl Loc => x + "słach";
+      SF Pl Voc => x + "słowie"
+    };
+
+    oper mkNTable0157: Str -> SubstForm => Str; --%
+    oper mkNTable0157 lexem = 
+      let x = Predef.tk 3 lexem in
+    table { 
+      SF Sg Nom => x + "iec";
+      SF Sg Gen => x + "ca";
+      SF Sg Dat => x + "cowi";
+      SF Sg Acc => x + "iec";
+      SF Sg Instr => x + "cem";
+      SF Sg Loc => x + "cu";
+      SF Sg Voc => x + "cu";
+      SF Pl Nom => x + "ce";
+      SF Pl Gen => x + "ców";
+      SF Pl Dat => x + "com";
+      SF Pl Acc => x + "ce";
+      SF Pl Instr => x + "cami";
+      SF Pl Loc => x + "cach";
+      SF Pl Voc => x + "ce"
+    };
+
+    oper mkNTable0158: Str -> SubstForm => Str; --%
+    oper mkNTable0158 lexem = 
+      let x = Predef.tk 1 lexem in
+    table { 
+      SF Sg Nom => x + "o";
+      SF Sg Gen => x + "a";
+      SF Sg Dat => x + "owi";
+      SF Sg Acc => x + "a";
+      SF Sg Instr => x + "iem";
+      SF Sg Loc => x + "u";
+      SF Sg Voc => x + "u";
+      SF Pl Nom => x + "owie";
+      SF Pl Gen => x + "ów";
+      SF Pl Dat => x + "om";
+      SF Pl Acc => x + "ów";
+      SF Pl Instr => x + "ami";
+      SF Pl Loc => x + "ach";
+      SF Pl Voc => x + "owie"
+    };
+
+    oper mkNTable0159: Str -> SubstForm => Str; --%
+    oper mkNTable0159 lexem = 
+      let x = Predef.tk 1 lexem in
+    table { 
+      SF Sg Nom => x + "a";
+      SF Sg Gen => x + "y";
+      SF Sg Dat => x + "ze";
+      SF Sg Acc => x + "ę";
+      SF Sg Instr => x + "ą";
+      SF Sg Loc => x + "ze";
+      SF Sg Voc => x + "o";
+      SF Pl Nom => x + "owie";
+      SF Pl Gen => x + "ów";
+      SF Pl Dat => x + "om";
+      SF Pl Acc => x + "ów";
+      SF Pl Instr => x + "ami";
+      SF Pl Loc => x + "ach";
+      SF Pl Voc => x + "owie"
+    };
+
+    oper mkNTable0161: Str -> SubstForm => Str; --%
+    oper mkNTable0161 lexem = 
+      let x = Predef.tk 1 lexem in
+    table { 
+      SF Sg Nom => x + "a";
+      SF Sg Gen => x + "y";
+      SF Sg Dat => x + "y";
+      SF Sg Acc => x + "ę";
+      SF Sg Instr => x + "ą";
+      SF Sg Loc => x + "y";
+      SF Sg Voc => x + "o";
+      SF Pl Nom => x + "owie";
+      SF Pl Gen => x + "ów";
+      SF Pl Dat => x + "om";
+      SF Pl Acc => x + "ów";
+      SF Pl Instr => x + "ami";
+      SF Pl Loc => x + "ach";
+      SF Pl Voc => x + "owie"
+    };
+
+    oper mkNTable0162: Str -> SubstForm => Str; --%
+    oper mkNTable0162 lexem = 
+      let x = Predef.tk 1 lexem in
+    table { 
+      SF Sg Nom => x + "o";
+      SF Sg Gen => x + "o";
+      SF Sg Dat => x + "u";
+      SF Sg Acc => x + "o";
+      SF Sg Instr => x + "o";
+      SF Sg Loc => x + "o";
+      SF Sg Voc => x + "o";
+      SF Pl Nom => x + "o";
+      SF Pl Gen => x + "o";
+      SF Pl Dat => x + "om";
+      SF Pl Acc => x + "o";
+      SF Pl Instr => x + "o";
+      SF Pl Loc => x + "o";
+      SF Pl Voc => x + "o"
+    };
+
+    oper mkNTable0167: Str -> SubstForm => Str; --%
+    oper mkNTable0167 lexem = 
+      let x = Predef.tk 2 lexem in
+    table { 
+      SF Sg Nom => x + "el";
+      SF Sg Gen => x + "la";
+      SF Sg Dat => x + "lowi";
+      SF Sg Acc => x + "la";
+      SF Sg Instr => x + "lem";
+      SF Sg Loc => x + "lu";
+      SF Sg Voc => x + "lu";
+      SF Pl Nom => x + "lowie";
+      SF Pl Gen => x + "lów";
+      SF Pl Dat => x + "lom";
+      SF Pl Acc => x + "lów";
+      SF Pl Instr => x + "lami";
+      SF Pl Loc => x + "lach";
+      SF Pl Voc => x + "lowie"
+    };
+
+    oper mkNTable0168: Str -> SubstForm => Str; --%
+    oper mkNTable0168 lexem = 
+      let x = Predef.tk 0 lexem in
+    table { 
+      SF Sg Nom => x + "";
+      SF Sg Gen => x + "na";
+      SF Sg Dat => x + "wi";
+      SF Sg Acc => x + "na";
+      SF Sg Instr => x + "nem";
+      SF Sg Loc => x + "nie";
+      SF Sg Voc => x + "nie";
+      SF Pl Nom => x + "nowie";
+      SF Pl Gen => x + "nów";
+      SF Pl Dat => x + "nom";
+      SF Pl Acc => x + "nów";
+      SF Pl Instr => x + "nami";
+      SF Pl Loc => x + "nach";
+      SF Pl Voc => x + "nowie"
+    };
+
+    oper mkNTable0169: Str -> SubstForm => Str; --%
+    oper mkNTable0169 lexem = 
+      let x = Predef.tk 2 lexem in
+    table { 
+      SF Sg Nom => x + "ła";
+      SF Sg Gen => x + "ły";
+      SF Sg Dat => x + "le";
+      SF Sg Acc => x + "łę";
+      SF Sg Instr => x + "łą";
+      SF Sg Loc => x + "le";
+      SF Sg Voc => x + "ło";
+      SF Pl Nom => x + "łowie";
+      SF Pl Gen => x + "łów";
+      SF Pl Dat => x + "łom";
+      SF Pl Acc => x + "łów";
+      SF Pl Instr => x + "łami";
+      SF Pl Loc => x + "łach";
+      SF Pl Voc => x + "łowie"
+    };
+
+    oper mkNTable0171: Str -> SubstForm => Str; --%
+    oper mkNTable0171 lexem = 
+      let x = Predef.tk 0 lexem in
+    table { 
+      SF Sg Nom => x + "";
+      SF Sg Gen => x + "u";
+      SF Sg Dat => x + "owi";
+      SF Sg Acc => x + "";
+      SF Sg Instr => x + "iem";
+      SF Sg Loc => x + "u";
+      SF Sg Voc => x + "u";
+      SF Pl Nom => x + "i";
+      SF Pl Gen => x + "ów";
+      SF Pl Dat => x + "om";
+      SF Pl Acc => x + "i";
+      SF Pl Instr => x + "ami";
+      SF Pl Loc => x + "ach";
+      SF Pl Voc => x + "i"
+    };
+
+    oper mkNTable0173: Str -> SubstForm => Str; --%
+    oper mkNTable0173 lexem = 
+      let x = Predef.tk 0 lexem in
+    table { 
+      SF Sg Nom => x + "";
+      SF Sg Gen => x + "a";
+      SF Sg Dat => x + "owi";
+      SF Sg Acc => x + "a";
+      SF Sg Instr => x + "iem";
+      SF Sg Loc => x + "u";
+      SF Sg Voc => x + "u";
+      SF Pl Nom => x + "i";
+      SF Pl Gen => x + "ów";
+      SF Pl Dat => x + "om";
+      SF Pl Acc => x + "i";
+      SF Pl Instr => x + "ami";
+      SF Pl Loc => x + "ach";
+      SF Pl Voc => x + "i"
+    };
+
+    oper mkNTable0175: Str -> SubstForm => Str; --%
+    oper mkNTable0175 lexem = 
+      let x = Predef.tk 1 lexem in
+    table { 
+      SF Sg Nom => x + "a";
+      SF Sg Gen => x + "y";
+      SF Sg Dat => x + "y";
+      SF Sg Acc => x + "ę";
+      SF Sg Instr => x + "ą";
+      SF Sg Loc => x + "y";
+      SF Sg Voc => x + "o";
+      SF Pl Nom => x + "e";
+      SF Pl Gen => x + "";
+      SF Pl Dat => x + "om";
+      SF Pl Acc => x + "e";
+      SF Pl Instr => x + "ami";
+      SF Pl Loc => x + "ach";
+      SF Pl Voc => x + "e"
+    };
+
+    oper mkNTable0176: Str -> SubstForm => Str; --%
+    oper mkNTable0176 lexem = 
+      let x = Predef.tk 0 lexem in
+    table { 
+      SF Sg Nom => x + "";
+      SF Sg Gen => x + "a";
+      SF Sg Dat => x + "owi";
+      SF Sg Acc => x + "";
+      SF Sg Instr => x + "em";
+      SF Sg Loc => x + "u";
+      SF Sg Voc => x + "u";
+      SF Pl Nom => x + "e";
+      SF Pl Gen => x + "ów";
+      SF Pl Dat => x + "om";
+      SF Pl Acc => x + "e";
+      SF Pl Instr => x + "ami";
+      SF Pl Loc => x + "ach";
+      SF Pl Voc => x + "e"
+    };
+
+    oper mkNTable0178: Str -> SubstForm => Str; --%
+    oper mkNTable0178 lexem = 
+      let x = Predef.tk 3 lexem in
+    table { 
+      SF Sg Nom => x + "óbr";
+      SF Sg Gen => x + "obru";
+      SF Sg Dat => x + "obrowi";
+      SF Sg Acc => x + "óbr";
+      SF Sg Instr => x + "obrem";
+      SF Sg Loc => x + "obrze";
+      SF Sg Voc => x + "obrze";
+      SF Pl Nom => x + "obry";
+      SF Pl Gen => x + "obrów";
+      SF Pl Dat => x + "obrom";
+      SF Pl Acc => x + "obry";
+      SF Pl Instr => x + "obrami";
+      SF Pl Loc => x + "obrach";
+      SF Pl Voc => x + "obry"
+    };
+
+    oper mkNTable0179: Str -> SubstForm => Str; --%
+    oper mkNTable0179 lexem = 
+      let x = Predef.tk 2 lexem in
+    table { 
+      SF Sg Nom => x + "ór";
+      SF Sg Gen => x + "ora";
+      SF Sg Dat => x + "orowi";
+      SF Sg Acc => x + "ora";
+      SF Sg Instr => x + "orem";
+      SF Sg Loc => x + "orze";
+      SF Sg Voc => x + "orze";
+      SF Pl Nom => x + "orowie";
+      SF Pl Gen => x + "orów";
+      SF Pl Dat => x + "orom";
+      SF Pl Acc => x + "orów";
+      SF Pl Instr => x + "orami";
+      SF Pl Loc => x + "orach";
+      SF Pl Voc => x + "orowie"
+    };
+
+    oper mkNTable0181: Str -> SubstForm => Str; --%
+    oper mkNTable0181 lexem = 
+      let x = Predef.tk 0 lexem in
+    table { 
+      SF Sg Nom => x + "";
+      SF Sg Gen => x + "a";
+      SF Sg Dat => x + "owi";
+      SF Sg Acc => x + "";
+      SF Sg Instr => x + "em";
+      SF Sg Loc => x + "ze";
+      SF Sg Voc => x + "ze";
+      SF Pl Nom => x + "y";
+      SF Pl Gen => x + "ów";
+      SF Pl Dat => x + "om";
+      SF Pl Acc => x + "y";
+      SF Pl Instr => x + "ami";
+      SF Pl Loc => x + "ach";
+      SF Pl Voc => x + "y"
+    };
+
+    oper mkNTable0182: Str -> SubstForm => Str; --%
+    oper mkNTable0182 lexem = 
+      let x = Predef.tk 1 lexem in
+    table { 
+      SF Sg Nom => x + "o";
+      SF Sg Gen => x + "o";
+      SF Sg Dat => x + "owi";
+      SF Sg Acc => x + "o";
+      SF Sg Instr => x + "o";
+      SF Sg Loc => x + "o";
+      SF Sg Voc => x + "o";
+      SF Pl Nom => x + "owie";
+      SF Pl Gen => x + "ów";
+      SF Pl Dat => x + "om";
+      SF Pl Acc => x + "ów";
+      SF Pl Instr => x + "o";
+      SF Pl Loc => x + "o";
+      SF Pl Voc => x + "owie"
+    };
+
+    oper mkNTable0190: Str -> SubstForm => Str; --%
+    oper mkNTable0190 lexem = 
+      let x = Predef.tk 1 lexem in
+    table { 
+      SF Sg Nom => x + "t";
+      SF Sg Gen => x + "ta";
+      SF Sg Dat => x + "towi";
+      SF Sg Acc => x + "ta";
+      SF Sg Instr => x + "tem";
+      SF Sg Loc => x + "cie";
+      SF Sg Voc => x + "cie";
+      SF Pl Nom => x + "ci";
+      SF Pl Gen => x + "tów";
+      SF Pl Dat => x + "tom";
+      SF Pl Acc => x + "tów";
+      SF Pl Instr => x + "tami";
+      SF Pl Loc => x + "tach";
+      SF Pl Voc => x + "ci"
+    };
+
+    oper mkNTable0191: Str -> SubstForm => Str; --%
+    oper mkNTable0191 lexem = 
+      let x = Predef.tk 0 lexem in
+    table { 
+      SF Sg Nom => x + "";
+      SF Sg Gen => x + "a";
+      SF Sg Dat => x + "owi";
+      SF Sg Acc => x + "a";
+      SF Sg Instr => x + "em";
+      SF Sg Loc => x + "u";
+      SF Sg Voc => x + "u";
+      SF Pl Nom => x + "e";
+      SF Pl Gen => x + "i";
+      SF Pl Dat => x + "om";
+      SF Pl Acc => x + "i";
+      SF Pl Instr => x + "ami";
+      SF Pl Loc => x + "ach";
+      SF Pl Voc => x + "e"
+    };
+
+    oper mkNTable0192: Str -> SubstForm => Str; --%
+    oper mkNTable0192 lexem = 
+      let x = Predef.tk 1 lexem in
+    table { 
+      SF Sg Nom => x + "ł";
+      SF Sg Gen => x + "łu";
+      SF Sg Dat => x + "łowi";
+      SF Sg Acc => x + "ł";
+      SF Sg Instr => x + "łem";
+      SF Sg Loc => x + "le";
+      SF Sg Voc => x + "le";
+      SF Pl Nom => x + "ły";
+      SF Pl Gen => x + "łów";
+      SF Pl Dat => x + "łom";
+      SF Pl Acc => x + "ły";
+      SF Pl Instr => x + "łami";
+      SF Pl Loc => x + "łach";
+      SF Pl Voc => x + "ły"
+    };
+
+    oper mkNTable0193: Str -> SubstForm => Str; --%
+    oper mkNTable0193 lexem = 
+      let x = Predef.tk 2 lexem in
+    table { 
+      SF Sg Nom => x + "óg";
+      SF Sg Gen => x + "oga";
+      SF Sg Dat => x + "ogowi";
+      SF Sg Acc => x + "oga";
+      SF Sg Instr => x + "ogiem";
+      SF Sg Loc => x + "ogu";
+      SF Sg Voc => x + "ogu";
+      SF Pl Nom => x + "ogowie";
+      SF Pl Gen => x + "ogów";
+      SF Pl Dat => x + "ogom";
+      SF Pl Acc => x + "ogów";
+      SF Pl Instr => x + "ogami";
+      SF Pl Loc => x + "ogach";
+      SF Pl Voc => x + "ogowie"
+    };
+
+    oper mkNTable0197: Str -> SubstForm => Str; --%
+    oper mkNTable0197 lexem = 
+      let x = Predef.tk 0 lexem in
+    table { 
+      SF Sg Nom => x + "";
+      SF Sg Gen => x + "a";
+      SF Sg Dat => x + "owi";
+      SF Sg Acc => x + "a";
+      SF Sg Instr => x + "em";
+      SF Sg Loc => x + "ie";
+      SF Sg Voc => x + "ie";
+      SF Pl Nom => x + "ie";
+      SF Pl Gen => x + "ów";
+      SF Pl Dat => x + "om";
+      SF Pl Acc => x + "ów";
+      SF Pl Instr => x + "ami";
+      SF Pl Loc => x + "ach";
+      SF Pl Voc => x + "ie"
+    };
+
+    oper mkNTable0198: Str -> SubstForm => Str; --%
+    oper mkNTable0198 lexem = 
+      let x = Predef.tk 3 lexem in
+    table { 
+      SF Sg Nom => x + "cha";
+      SF Sg Gen => x + "chy";
+      SF Sg Dat => x + "sze";
+      SF Sg Acc => x + "chę";
+      SF Sg Instr => x + "chą";
+      SF Sg Loc => x + "sze";
+      SF Sg Voc => x + "cho";
+      SF Pl Nom => x + "chy";
+      SF Pl Gen => x + "ch";
+      SF Pl Dat => x + "chom";
+      SF Pl Acc => x + "chy";
+      SF Pl Instr => x + "chami";
+      SF Pl Loc => x + "chach";
+      SF Pl Voc => x + "chy"
+    };
+
+    oper mkNTable0199: Str -> SubstForm => Str; --%
+    oper mkNTable0199 lexem = 
+      let x = Predef.tk 2 lexem in
+    table { 
+      SF Sg Nom => x + "ko";
+      SF Sg Gen => x + "ka";
+      SF Sg Dat => x + "ku";
+      SF Sg Acc => x + "ko";
+      SF Sg Instr => x + "kiem";
+      SF Sg Loc => x + "ku";
+      SF Sg Voc => x + "ko";
+      SF Pl Nom => x + "ka";
+      SF Pl Gen => x + "ek";
+      SF Pl Dat => x + "kom";
+      SF Pl Acc => x + "ka";
+      SF Pl Instr => x + "kami";
+      SF Pl Loc => x + "kach";
+      SF Pl Voc => x + "ka"
+    };
+
+    oper mkNTable0200: Str -> SubstForm => Str; --%
+    oper mkNTable0200 lexem = 
+      let x = Predef.tk 3 lexem in
+    table { 
+      SF Sg Nom => x + "zec";
+      SF Sg Gen => x + "ca";
+      SF Sg Dat => x + "cowi";
+      SF Sg Acc => x + "ca";
+      SF Sg Instr => x + "cem";
+      SF Sg Loc => x + "cu";
+      SF Sg Voc => x + "cze";
+      SF Pl Nom => x + "cy";
+      SF Pl Gen => x + "ców";
+      SF Pl Dat => x + "com";
+      SF Pl Acc => x + "ców";
+      SF Pl Instr => x + "cami";
+      SF Pl Loc => x + "cach";
+      SF Pl Voc => x + "cy"
+    };
+
+    oper mkNTable0201: Str -> SubstForm => Str; --%
+    oper mkNTable0201 lexem = 
+      let x = Predef.tk 2 lexem in
+    table { 
+      SF Sg Nom => x + "ch";
+      SF Sg Gen => x + "cha";
+      SF Sg Dat => x + "chowi";
+      SF Sg Acc => x + "cha";
+      SF Sg Instr => x + "chem";
+      SF Sg Loc => x + "chu";
+      SF Sg Voc => x + "chu";
+      SF Pl Nom => x + "si";
+      SF Pl Gen => x + "chów";
+      SF Pl Dat => x + "chom";
+      SF Pl Acc => x + "chów";
+      SF Pl Instr => x + "chami";
+      SF Pl Loc => x + "chach";
+      SF Pl Voc => x + "si"
+    };
+
+    oper mkNTable0203: Str -> SubstForm => Str; --%
+    oper mkNTable0203 lexem = 
+      let x = Predef.tk 1 lexem in
+    table { 
+      SF Sg Nom => x + "y";
+      SF Sg Gen => x + "ego";
+      SF Sg Dat => x + "emu";
+      SF Sg Acc => x + "ego";
+      SF Sg Instr => x + "ym";
+      SF Sg Loc => x + "ym";
+      SF Sg Voc => x + "y";
+      SF Pl Nom => x + "i";
+      SF Pl Gen => x + "ych";
+      SF Pl Dat => x + "ym";
+      SF Pl Acc => x + "ych";
+      SF Pl Instr => x + "ymi";
+      SF Pl Loc => x + "ych";
+      SF Pl Voc => x + "i"
+    };
+
+    oper mkNTable0204: Str -> SubstForm => Str; --%
+    oper mkNTable0204 lexem = 
+      let x = Predef.tk 4 lexem in
+    table { 
+      SF Sg Nom => x + "siek";
+      SF Sg Gen => x + "śka";
+      SF Sg Dat => x + "śkowi";
+      SF Sg Acc => x + "śka";
+      SF Sg Instr => x + "śkiem";
+      SF Sg Loc => x + "śku";
+      SF Sg Voc => x + "śku";
+      SF Pl Nom => x + "śkowie";
+      SF Pl Gen => x + "śków";
+      SF Pl Dat => x + "śkom";
+      SF Pl Acc => x + "śków";
+      SF Pl Instr => x + "śkami";
+      SF Pl Loc => x + "śkach";
+      SF Pl Voc => x + "śkowie"
+    };
+
+    oper mkNTable0205: Str -> SubstForm => Str; --%
+    oper mkNTable0205 lexem = 
+      let x = Predef.tk 1 lexem in
+    table { 
+      SF Sg Nom => x + "o";
+      SF Sg Gen => x + "a";
+      SF Sg Dat => x + "owi";
+      SF Sg Acc => x + "a";
+      SF Sg Instr => x + "em";
+      SF Sg Loc => x + "u";
+      SF Sg Voc => x + "u";
+      SF Pl Nom => x + "owie";
+      SF Pl Gen => x + "ów";
+      SF Pl Dat => x + "om";
+      SF Pl Acc => x + "ów";
+      SF Pl Instr => x + "ami";
+      SF Pl Loc => x + "ach";
+      SF Pl Voc => x + "owie"
+    };
+
+    oper mkNTable0210: Str -> SubstForm => Str; --%
+    oper mkNTable0210 lexem = 
+      let x = Predef.tk 4 lexem in
+    table { 
+      SF Sg Nom => x + "niec";
+      SF Sg Gen => x + "ńca";
+      SF Sg Dat => x + "ńcowi";
+      SF Sg Acc => x + "ńca";
+      SF Sg Instr => x + "ńcem";
+      SF Sg Loc => x + "ńcu";
+      SF Sg Voc => x + "ńcu";
+      SF Pl Nom => x + "ńcowie";
+      SF Pl Gen => x + "ńców";
+      SF Pl Dat => x + "ńcom";
+      SF Pl Acc => x + "ńców";
+      SF Pl Instr => x + "ńcami";
+      SF Pl Loc => x + "ńcach";
+      SF Pl Voc => x + "ńcowie"
+    };
+
+    oper mkNTable0213: Str -> SubstForm => Str; --%
+    oper mkNTable0213 lexem = 
+      let x = Predef.tk 0 lexem in
+    table { 
+      SF Sg Nom => x + "";
+      SF Sg Gen => x + "u";
+      SF Sg Dat => x + "owi";
+      SF Sg Acc => x + "";
+      SF Sg Instr => x + "em";
+      SF Sg Loc => x + "ze";
+      SF Sg Voc => x + "ze";
+      SF Pl Nom => x + "";
+      SF Pl Gen => x + "";
+      SF Pl Dat => x + "";
+      SF Pl Acc => x + "";
+      SF Pl Instr => x + "";
+      SF Pl Loc => x + "";
+      SF Pl Voc => x + ""
+    };
+
+    oper mkNTable0217: Str -> SubstForm => Str; --%
+    oper mkNTable0217 lexem = 
+      let x = Predef.tk 1 lexem in
+    table { 
+      SF Sg Nom => x + "o";
+      SF Sg Gen => x + "o";
+      SF Sg Dat => x + "owi";
+      SF Sg Acc => x + "o";
+      SF Sg Instr => x + "o";
+      SF Sg Loc => x + "u";
+      SF Sg Voc => x + "u";
+      SF Pl Nom => x + "owie";
+      SF Pl Gen => x + "ów";
+      SF Pl Dat => x + "om";
+      SF Pl Acc => x + "ów";
+      SF Pl Instr => x + "o";
+      SF Pl Loc => x + "o";
+      SF Pl Voc => x + "owie"
+    };
+
+    oper mkNTable0218: Str -> SubstForm => Str; --%
+    oper mkNTable0218 lexem = 
+      let x = Predef.tk 4 lexem in
+    table { 
+      SF Sg Nom => x + "niec";
+      SF Sg Gen => x + "ńca";
+      SF Sg Dat => x + "ńcowi";
+      SF Sg Acc => x + "ńca";
+      SF Sg Instr => x + "ńcem";
+      SF Sg Loc => x + "ńcu";
+      SF Sg Voc => x + "ńcze";
+      SF Pl Nom => x + "ńcy";
+      SF Pl Gen => x + "ńców";
+      SF Pl Dat => x + "ńcom";
+      SF Pl Acc => x + "ńców";
+      SF Pl Instr => x + "ńcami";
+      SF Pl Loc => x + "ńcach";
+      SF Pl Voc => x + "ńcy"
+    };
+
+    oper mkNTable0219: Str -> SubstForm => Str; --%
+    oper mkNTable0219 lexem = 
+      let x = Predef.tk 2 lexem in
+    table { 
+      SF Sg Nom => x + "ga";
+      SF Sg Gen => x + "gi";
+      SF Sg Dat => x + "dze";
+      SF Sg Acc => x + "gę";
+      SF Sg Instr => x + "gą";
+      SF Sg Loc => x + "dze";
+      SF Sg Voc => x + "go";
+      SF Pl Nom => x + "gowie";
+      SF Pl Gen => x + "gów";
+      SF Pl Dat => x + "gom";
+      SF Pl Acc => x + "gów";
+      SF Pl Instr => x + "gami";
+      SF Pl Loc => x + "gach";
+      SF Pl Voc => x + "gowie"
+    };
+
+    oper mkNTable0222: Str -> SubstForm => Str; --%
+    oper mkNTable0222 lexem = 
+      let x = Predef.tk 2 lexem in
+    table { 
+      SF Sg Nom => x + "zd";
+      SF Sg Gen => x + "zda";
+      SF Sg Dat => x + "zdowi";
+      SF Sg Acc => x + "zda";
+      SF Sg Instr => x + "zdem";
+      SF Sg Loc => x + "ździe";
+      SF Sg Voc => x + "ździe";
+      SF Pl Nom => x + "zdowie";
+      SF Pl Gen => x + "zdów";
+      SF Pl Dat => x + "zdom";
+      SF Pl Acc => x + "zdów";
+      SF Pl Instr => x + "zdami";
+      SF Pl Loc => x + "zdach";
+      SF Pl Voc => x + "zdowie"
+    };
+
+    oper mkNTable0230: Str -> SubstForm => Str; --%
+    oper mkNTable0230 lexem = 
+      let x = Predef.tk 1 lexem in
+    table { 
+      SF Sg Nom => x + "x";
+      SF Sg Gen => x + "ksa";
+      SF Sg Dat => x + "ksowi";
+      SF Sg Acc => x + "ksa";
+      SF Sg Instr => x + "ksem";
+      SF Sg Loc => x + "ksie";
+      SF Sg Voc => x + "ksie";
+      SF Pl Nom => x + "ksowie";
+      SF Pl Gen => x + "ksów";
+      SF Pl Dat => x + "ksom";
+      SF Pl Acc => x + "ksów";
+      SF Pl Instr => x + "ksami";
+      SF Pl Loc => x + "ksach";
+      SF Pl Voc => x + "ksowie"
+    };
+
+    oper mkNTable0231: Str -> SubstForm => Str; --%
+    oper mkNTable0231 lexem = 
+      let x = Predef.tk 1 lexem in
+    table { 
+      SF Sg Nom => x + "t";
+      SF Sg Gen => x + "tu";
+      SF Sg Dat => x + "towi";
+      SF Sg Acc => x + "t";
+      SF Sg Instr => x + "tem";
+      SF Sg Loc => x + "cie";
+      SF Sg Voc => x + "cie";
+      SF Pl Nom => x + "ty";
+      SF Pl Gen => x + "tów";
+      SF Pl Dat => x + "tom";
+      SF Pl Acc => x + "ty";
+      SF Pl Instr => x + "tami";
+      SF Pl Loc => x + "tach";
+      SF Pl Voc => x + "ty"
+    };
+
+    oper mkNTable0232: Str -> SubstForm => Str; --%
+    oper mkNTable0232 lexem = 
+      let x = Predef.tk 3 lexem in
+    table { 
+      SF Sg Nom => x + "cia";
+      SF Sg Gen => x + "ci";
+      SF Sg Dat => x + "ci";
+      SF Sg Acc => x + "cię";
+      SF Sg Instr => x + "cią";
+      SF Sg Loc => x + "ci";
+      SF Sg Voc => x + "ciu";
+      SF Pl Nom => x + "cie";
+      SF Pl Gen => x + "ć";
+      SF Pl Dat => x + "ciom";
+      SF Pl Acc => x + "cie";
+      SF Pl Instr => x + "ciami";
+      SF Pl Loc => x + "ciach";
+      SF Pl Voc => x + "cie"
+    };
+
+    oper mkNTable0233: Str -> SubstForm => Str; --%
+    oper mkNTable0233 lexem = 
+      let x = Predef.tk 1 lexem in
+    table { 
+      SF Sg Nom => x + "t";
+      SF Sg Gen => x + "ta";
+      SF Sg Dat => x + "towi";
+      SF Sg Acc => x + "ta";
+      SF Sg Instr => x + "tem";
+      SF Sg Loc => x + "cie";
+      SF Sg Voc => x + "cie";
+      SF Pl Nom => x + "ty";
+      SF Pl Gen => x + "tów";
+      SF Pl Dat => x + "tom";
+      SF Pl Acc => x + "ty";
+      SF Pl Instr => x + "tami";
+      SF Pl Loc => x + "tach";
+      SF Pl Voc => x + "ty"
+    };
+
+    oper mkNTable0237: Str -> SubstForm => Str; --%
+    oper mkNTable0237 lexem = 
+      let x = Predef.tk 2 lexem in
+    table { 
+      SF Sg Nom => x + "th";
+      SF Sg Gen => x + "tha";
+      SF Sg Dat => x + "thowi";
+      SF Sg Acc => x + "tha";
+      SF Sg Instr => x + "them";
+      SF Sg Loc => x + "cie";
+      SF Sg Voc => x + "cie";
+      SF Pl Nom => x + "thowie";
+      SF Pl Gen => x + "thów";
+      SF Pl Dat => x + "thom";
+      SF Pl Acc => x + "thów";
+      SF Pl Instr => x + "thami";
+      SF Pl Loc => x + "thach";
+      SF Pl Voc => x + "thowie"
+    };
+
+    oper mkNTable0238: Str -> SubstForm => Str; --%
+    oper mkNTable0238 lexem = 
+      let x = Predef.tk 2 lexem in
+    table { 
+      SF Sg Nom => x + "co";
+      SF Sg Gen => x + "ca";
+      SF Sg Dat => x + "cowi";
+      SF Sg Acc => x + "ca";
+      SF Sg Instr => x + "kiem";
+      SF Sg Loc => x + "cu";
+      SF Sg Voc => x + "co";
+      SF Pl Nom => x + "cowie";
+      SF Pl Gen => x + "ców";
+      SF Pl Dat => x + "com";
+      SF Pl Acc => x + "ców";
+      SF Pl Instr => x + "cami";
+      SF Pl Loc => x + "cach";
+      SF Pl Voc => x + "cowie"
+    };
+
+    oper mkNTable0239: Str -> SubstForm => Str; --%
+    oper mkNTable0239 lexem = 
+      let x = Predef.tk 1 lexem in
+    table { 
+      SF Sg Nom => x + "o";
+      SF Sg Gen => x + "y";
+      SF Sg Dat => x + "ze";
+      SF Sg Acc => x + "ę";
+      SF Sg Instr => x + "ą";
+      SF Sg Loc => x + "ze";
+      SF Sg Voc => x + "o";
+      SF Pl Nom => x + "owie";
+      SF Pl Gen => x + "ów";
+      SF Pl Dat => x + "om";
+      SF Pl Acc => x + "ów";
+      SF Pl Instr => x + "ami";
+      SF Pl Loc => x + "ach";
+      SF Pl Voc => x + "owie"
+    };
+
+    oper mkNTable0241: Str -> SubstForm => Str; --%
+    oper mkNTable0241 lexem = 
+      let x = Predef.tk 2 lexem in
+    table { 
+      SF Sg Nom => x + "ja";
+      SF Sg Gen => x + "i";
+      SF Sg Dat => x + "i";
+      SF Sg Acc => x + "ję";
+      SF Sg Instr => x + "ją";
+      SF Sg Loc => x + "i";
+      SF Sg Voc => x + "jo";
+      SF Pl Nom => x + "je";
+      SF Pl Gen => x + "j";
+      SF Pl Dat => x + "jom";
+      SF Pl Acc => x + "je";
+      SF Pl Instr => x + "jami";
+      SF Pl Loc => x + "jach";
+      SF Pl Voc => x + "je"
+    };
+
+    oper mkNTable0243: Str -> SubstForm => Str; --%
+    oper mkNTable0243 lexem = 
+      let x = Predef.tk 0 lexem in
+    table { 
+      SF Sg Nom => x + "";
+      SF Sg Gen => x + "a";
+      SF Sg Dat => x + "owi";
+      SF Sg Acc => x + "";
+      SF Sg Instr => x + "em";
+      SF Sg Loc => x + "u";
+      SF Sg Voc => x + "u";
+      SF Pl Nom => x + "e";
+      SF Pl Gen => x + "y";
+      SF Pl Dat => x + "om";
+      SF Pl Acc => x + "e";
+      SF Pl Instr => x + "ami";
+      SF Pl Loc => x + "ach";
+      SF Pl Voc => x + "e"
+    };
+
+    oper mkNTable0244: Str -> SubstForm => Str; --%
+    oper mkNTable0244 lexem = 
+      let x = Predef.tk 0 lexem in
+    table { 
+      SF Sg Nom => x + "";
+      SF Sg Gen => x + "a";
+      SF Sg Dat => x + "owi";
+      SF Sg Acc => x + "a";
+      SF Sg Instr => x + "em";
+      SF Sg Loc => x + "zie";
+      SF Sg Voc => x + "zie";
+      SF Pl Nom => x + "";
+      SF Pl Gen => x + "ów";
+      SF Pl Dat => x + "om";
+      SF Pl Acc => x + "ów";
+      SF Pl Instr => x + "ami";
+      SF Pl Loc => x + "ach";
+      SF Pl Voc => x + ""
+    };
+
+    oper mkNTable0246: Str -> SubstForm => Str; --%
+    oper mkNTable0246 lexem = 
+      let x = Predef.tk 2 lexem in
+    table { 
+      SF Sg Nom => x + "eł";
+      SF Sg Gen => x + "ła";
+      SF Sg Dat => x + "łowi";
+      SF Sg Acc => x + "ła";
+      SF Sg Instr => x + "łem";
+      SF Sg Loc => x + "le";
+      SF Sg Voc => x + "le";
+      SF Pl Nom => x + "łowie";
+      SF Pl Gen => x + "łów";
+      SF Pl Dat => x + "łom";
+      SF Pl Acc => x + "łów";
+      SF Pl Instr => x + "łami";
+      SF Pl Loc => x + "łach";
+      SF Pl Voc => x + "łowie"
+    };
+
+    oper mkNTable0247: Str -> SubstForm => Str; --%
+    oper mkNTable0247 lexem = 
+      let x = Predef.tk 0 lexem in
+    table { 
+      SF Sg Nom => x + "";
+      SF Sg Gen => x + "u";
+      SF Sg Dat => x + "owi";
+      SF Sg Acc => x + "";
+      SF Sg Instr => x + "em";
+      SF Sg Loc => x + "u";
+      SF Sg Voc => x + "u";
+      SF Pl Nom => x + "y";
+      SF Pl Gen => x + "ów";
+      SF Pl Dat => x + "om";
+      SF Pl Acc => x + "y";
+      SF Pl Instr => x + "ami";
+      SF Pl Loc => x + "ach";
+      SF Pl Voc => x + "y"
+    };
+
+    oper mkNTable0248: Str -> SubstForm => Str; --%
+    oper mkNTable0248 lexem = 
+      let x = Predef.tk 0 lexem in
+    table { 
+      SF Sg Nom => x + "";
+      SF Sg Gen => x + "ia";
+      SF Sg Dat => x + "iowi";
+      SF Sg Acc => x + "ia";
+      SF Sg Instr => x + "iem";
+      SF Sg Loc => x + "iu";
+      SF Sg Voc => x + "iu";
+      SF Pl Nom => x + "iowie";
+      SF Pl Gen => x + "iów";
+      SF Pl Dat => x + "iom";
+      SF Pl Acc => x + "iów";
+      SF Pl Instr => x + "iami";
+      SF Pl Loc => x + "iach";
+      SF Pl Voc => x + "iowie"
+    };
+
+    oper mkNTable0250: Str -> SubstForm => Str; --%
+    oper mkNTable0250 lexem = 
+      let x = Predef.tk 1 lexem in
+    table { 
+      SF Sg Nom => x + "o";
+      SF Sg Gen => x + "a";
+      SF Sg Dat => x + "owi";
+      SF Sg Acc => x + "a";
+      SF Sg Instr => x + "em";
+      SF Sg Loc => x + "ie";
+      SF Sg Voc => x + "o";
+      SF Pl Nom => x + "owie";
+      SF Pl Gen => x + "ów";
+      SF Pl Dat => x + "om";
+      SF Pl Acc => x + "ów";
+      SF Pl Instr => x + "ami";
+      SF Pl Loc => x + "ach";
+      SF Pl Voc => x + "owie"
+    };
+
+    oper mkNTable0253: Str -> SubstForm => Str; --%
+    oper mkNTable0253 lexem = 
+      let x = Predef.tk 1 lexem in
+    table { 
+      SF Sg Nom => x + "a";
+      SF Sg Gen => x + "i";
+      SF Sg Dat => x + "i";
+      SF Sg Acc => x + "ę";
+      SF Sg Instr => x + "ą";
+      SF Sg Loc => x + "i";
+      SF Sg Voc => x + "o";
+      SF Pl Nom => x + "e";
+      SF Pl Gen => x + "";
+      SF Pl Dat => x + "om";
+      SF Pl Acc => x + "e";
+      SF Pl Instr => x + "ami";
+      SF Pl Loc => x + "ach";
+      SF Pl Voc => x + "e"
+    };
+
+    oper mkNTable0254: Str -> SubstForm => Str; --%
+    oper mkNTable0254 lexem = 
+      let x = Predef.tk 1 lexem in
+    table { 
+      SF Sg Nom => x + "a";
+      SF Sg Gen => x + "i";
+      SF Sg Dat => x + "i";
+      SF Sg Acc => x + "ę";
+      SF Sg Instr => x + "ą";
+      SF Sg Loc => x + "i";
+      SF Sg Voc => x + "a";
+      SF Pl Nom => x + "owie";
+      SF Pl Gen => x + "ów";
+      SF Pl Dat => x + "om";
+      SF Pl Acc => x + "ów";
+      SF Pl Instr => x + "ami";
+      SF Pl Loc => x + "ach";
+      SF Pl Voc => x + "owie"
+    };
+
+    oper mkNTable0257: Str -> SubstForm => Str; --%
+    oper mkNTable0257 lexem = 
+      let x = Predef.tk 2 lexem in
+    table { 
+      SF Sg Nom => x + "ya";
+      SF Sg Gen => x + "i";
+      SF Sg Dat => x + "i";
+      SF Sg Acc => x + "yę";
+      SF Sg Instr => x + "yą";
+      SF Sg Loc => x + "i";
+      SF Sg Voc => x + "yo";
+      SF Pl Nom => x + "yowie";
+      SF Pl Gen => x + "yów";
+      SF Pl Dat => x + "yom";
+      SF Pl Acc => x + "yów";
+      SF Pl Instr => x + "yami";
+      SF Pl Loc => x + "yach";
+      SF Pl Voc => x + "yowie"
+    };
+
+    oper mkNTable0258: Str -> SubstForm => Str; --%
+    oper mkNTable0258 lexem = 
+      let x = Predef.tk 1 lexem in
+    table { 
+      SF Sg Nom => x + "ś";
+      SF Sg Gen => x + "sia";
+      SF Sg Dat => x + "siowi";
+      SF Sg Acc => x + "sia";
+      SF Sg Instr => x + "siem";
+      SF Sg Loc => x + "siu";
+      SF Sg Voc => x + "ś";
+      SF Pl Nom => x + "siowie";
+      SF Pl Gen => x + "siów";
+      SF Pl Dat => x + "siom";
+      SF Pl Acc => x + "siów";
+      SF Pl Instr => x + "siami";
+      SF Pl Loc => x + "siach";
+      SF Pl Voc => x + "siowie"
+    };
+
+    oper mkNTable0259: Str -> SubstForm => Str; --%
+    oper mkNTable0259 lexem = 
+      let x = Predef.tk 2 lexem in
+    table { 
+      SF Sg Nom => x + "ąb";
+      SF Sg Gen => x + "ębia";
+      SF Sg Dat => x + "ębiowi";
+      SF Sg Acc => x + "ębia";
+      SF Sg Instr => x + "ębiem";
+      SF Sg Loc => x + "ębiu";
+      SF Sg Voc => x + "ębiu";
+      SF Pl Nom => x + "ębiowie";
+      SF Pl Gen => x + "ębiów";
+      SF Pl Dat => x + "ębiom";
+      SF Pl Acc => x + "ębiów";
+      SF Pl Instr => x + "ębiami";
+      SF Pl Loc => x + "ębiach";
+      SF Pl Voc => x + "ębiowie"
+    };
+
+    oper mkNTable0260: Str -> SubstForm => Str; --%
+    oper mkNTable0260 lexem = 
+      let x = Predef.tk 2 lexem in
+    table { 
+      SF Sg Nom => x + "ąb";
+      SF Sg Gen => x + "ębia";
+      SF Sg Dat => x + "ębiowi";
+      SF Sg Acc => x + "ąb";
+      SF Sg Instr => x + "ębiem";
+      SF Sg Loc => x + "ębiu";
+      SF Sg Voc => x + "ębiu";
+      SF Pl Nom => x + "ębie";
+      SF Pl Gen => x + "ębi";
+      SF Pl Dat => x + "ębiom";
+      SF Pl Acc => x + "ębie";
+      SF Pl Instr => x + "ębiami";
+      SF Pl Loc => x + "ębiach";
+      SF Pl Voc => x + "ębie"
+    };
+
+    oper mkNTable0262: Str -> SubstForm => Str; --%
+    oper mkNTable0262 lexem = 
+      let x = Predef.tk 2 lexem in
+    table { 
+      SF Sg Nom => x + "ta";
+      SF Sg Gen => x + "ty";
+      SF Sg Dat => x + "cie";
+      SF Sg Acc => x + "tę";
+      SF Sg Instr => x + "tą";
+      SF Sg Loc => x + "cie";
+      SF Sg Voc => x + "to";
+      SF Pl Nom => x + "ty";
+      SF Pl Gen => x + "tów";
+      SF Pl Dat => x + "tom";
+      SF Pl Acc => x + "tów";
+      SF Pl Instr => x + "tami";
+      SF Pl Loc => x + "tach";
+      SF Pl Voc => x + "ty"
+    };
+
+    oper mkNTable0263: Str -> SubstForm => Str; --%
+    oper mkNTable0263 lexem = 
+      let x = Predef.tk 2 lexem in
+    table { 
+      SF Sg Nom => x + "th";
+      SF Sg Gen => x + "tha";
+      SF Sg Dat => x + "thowi";
+      SF Sg Acc => x + "tha";
+      SF Sg Instr => x + "them";
+      SF Sg Loc => x + "sie";
+      SF Sg Voc => x + "sie";
+      SF Pl Nom => x + "thowie";
+      SF Pl Gen => x + "thów";
+      SF Pl Dat => x + "thom";
+      SF Pl Acc => x + "thów";
+      SF Pl Instr => x + "thami";
+      SF Pl Loc => x + "thach";
+      SF Pl Voc => x + "thowie"
+    };
+
+    oper mkNTable0265: Str -> SubstForm => Str; --%
+    oper mkNTable0265 lexem = 
+      let x = Predef.tk 1 lexem in
+    table { 
+      SF Sg Nom => x + "o";
+      SF Sg Gen => x + "a";
+      SF Sg Dat => x + "u";
+      SF Sg Acc => x + "o";
+      SF Sg Instr => x + "iem";
+      SF Sg Loc => x + "u";
+      SF Sg Voc => x + "o";
+      SF Pl Nom => x + "a";
+      SF Pl Gen => x + "";
+      SF Pl Dat => x + "om";
+      SF Pl Acc => x + "a";
+      SF Pl Instr => x + "ami";
+      SF Pl Loc => x + "ach";
+      SF Pl Voc => x + "a"
+    };
+
+    oper mkNTable0266: Str -> SubstForm => Str; --%
+    oper mkNTable0266 lexem = 
+      let x = Predef.tk 4 lexem in
+    table { 
+      SF Sg Nom => x + "zień";
+      SF Sg Gen => x + "nia";
+      SF Sg Dat => x + "niowi";
+      SF Sg Acc => x + "nia";
+      SF Sg Instr => x + "niem";
+      SF Sg Loc => x + "niu";
+      SF Sg Voc => x + "niu";
+      SF Pl Nom => x + "niowie";
+      SF Pl Gen => x + "niów";
+      SF Pl Dat => x + "niom";
+      SF Pl Acc => x + "niów";
+      SF Pl Instr => x + "niami";
+      SF Pl Loc => x + "niach";
+      SF Pl Voc => x + "niowie"
+    };
+
+    oper mkNTable0268: Str -> SubstForm => Str; --%
+    oper mkNTable0268 lexem = 
+      let x = Predef.tk 1 lexem in
+    table { 
+      SF Sg Nom => x + "ń";
+      SF Sg Gen => x + "nia";
+      SF Sg Dat => x + "niowi";
+      SF Sg Acc => x + "nia";
+      SF Sg Instr => x + "niem";
+      SF Sg Loc => x + "niu";
+      SF Sg Voc => x + "niu";
+      SF Pl Nom => x + "nie";
+      SF Pl Gen => x + "niów";
+      SF Pl Dat => x + "niom";
+      SF Pl Acc => x + "niów";
+      SF Pl Instr => x + "niami";
+      SF Pl Loc => x + "niach";
+      SF Pl Voc => x + "nie"
+    };
+
+    oper mkNTable0271: Str -> SubstForm => Str; --%
+    oper mkNTable0271 lexem = 
+      let x = Predef.tk 0 lexem in
+    table { 
+      SF Sg Nom => x + "";
+      SF Sg Gen => x + "a";
+      SF Sg Dat => x + "owi";
+      SF Sg Acc => x + "";
+      SF Sg Instr => x + "iem";
+      SF Sg Loc => x + "u";
+      SF Sg Voc => x + "u";
+      SF Pl Nom => x + "i";
+      SF Pl Gen => x + "ów";
+      SF Pl Dat => x + "om";
+      SF Pl Acc => x + "i";
+      SF Pl Instr => x + "ami";
+      SF Pl Loc => x + "ach";
+      SF Pl Voc => x + "i"
+    };
+
+    oper mkNTable0274: Str -> SubstForm => Str; --%
+    oper mkNTable0274 lexem = 
+      let x = Predef.tk 1 lexem in
+    table { 
+      SF Sg Nom => x + "a";
+      SF Sg Gen => x + "y";
+      SF Sg Dat => x + "y";
+      SF Sg Acc => x + "ę";
+      SF Sg Instr => x + "ą";
+      SF Sg Loc => x + "y";
+      SF Sg Voc => x + "o";
+      SF Pl Nom => x + "e";
+      SF Pl Gen => x + "y";
+      SF Pl Dat => x + "om";
+      SF Pl Acc => x + "e";
+      SF Pl Instr => x + "ami";
+      SF Pl Loc => x + "ach";
+      SF Pl Voc => x + "e"
+    };
+
+    oper mkNTable0275: Str -> SubstForm => Str; --%
+    oper mkNTable0275 lexem = 
+      let x = Predef.tk 3 lexem in
+    table { 
+      SF Sg Nom => x + "tha";
+      SF Sg Gen => x + "thy";
+      SF Sg Dat => x + "cie";
+      SF Sg Acc => x + "thę";
+      SF Sg Instr => x + "thą";
+      SF Sg Loc => x + "cie";
+      SF Sg Voc => x + "tho";
+      SF Pl Nom => x + "thy";
+      SF Pl Gen => x + "th";
+      SF Pl Dat => x + "thom";
+      SF Pl Acc => x + "thy";
+      SF Pl Instr => x + "thami";
+      SF Pl Loc => x + "thach";
+      SF Pl Voc => x + "thy"
+    };
+
+    oper mkNTable0278: Str -> SubstForm => Str; --%
+    oper mkNTable0278 lexem = 
+      let x = Predef.tk 2 lexem in
+    table { 
+      SF Sg Nom => x + "er";
+      SF Sg Gen => x + "ra";
+      SF Sg Dat => x + "rowi";
+      SF Sg Acc => x + "ra";
+      SF Sg Instr => x + "rem";
+      SF Sg Loc => x + "rze";
+      SF Sg Voc => x + "rze";
+      SF Pl Nom => x + "rzy";
+      SF Pl Gen => x + "rów";
+      SF Pl Dat => x + "rom";
+      SF Pl Acc => x + "rów";
+      SF Pl Instr => x + "rami";
+      SF Pl Loc => x + "rach";
+      SF Pl Voc => x + "rzy"
+    };
+
+    oper mkNTable0280: Str -> SubstForm => Str; --%
+    oper mkNTable0280 lexem = 
+      let x = Predef.tk 1 lexem in
+    table { 
+      SF Sg Nom => x + "ł";
+      SF Sg Gen => x + "ła";
+      SF Sg Dat => x + "łowi";
+      SF Sg Acc => x + "ła";
+      SF Sg Instr => x + "łem";
+      SF Sg Loc => x + "le";
+      SF Sg Voc => x + "le";
+      SF Pl Nom => x + "li";
+      SF Pl Gen => x + "łów";
+      SF Pl Dat => x + "łom";
+      SF Pl Acc => x + "łów";
+      SF Pl Instr => x + "łami";
+      SF Pl Loc => x + "łach";
+      SF Pl Voc => x + "li"
+    };
+
+    oper mkNTable0281: Str -> SubstForm => Str; --%
+    oper mkNTable0281 lexem = 
+      let x = Predef.tk 0 lexem in
+    table { 
+      SF Sg Nom => x + "";
+      SF Sg Gen => x + "na";
+      SF Sg Dat => x + "nowi";
+      SF Sg Acc => x + "na";
+      SF Sg Instr => x + "nem";
+      SF Sg Loc => x + "nie";
+      SF Sg Voc => x + "nie";
+      SF Pl Nom => x + "nowie";
+      SF Pl Gen => x + "nów";
+      SF Pl Dat => x + "nom";
+      SF Pl Acc => x + "nów";
+      SF Pl Instr => x + "nami";
+      SF Pl Loc => x + "nach";
+      SF Pl Voc => x + "nowie"
+    };
+
+    oper mkNTable0282: Str -> SubstForm => Str; --%
+    oper mkNTable0282 lexem = 
+      let x = Predef.tk 0 lexem in
+    table { 
+      SF Sg Nom => x + "";
+      SF Sg Gen => x + "a";
+      SF Sg Dat => x + "owi";
+      SF Sg Acc => x + "a";
+      SF Sg Instr => x + "em";
+      SF Sg Loc => x + "u";
+      SF Sg Voc => x + "u";
+      SF Pl Nom => x + "e";
+      SF Pl Gen => x + "ów";
+      SF Pl Dat => x + "om";
+      SF Pl Acc => x + "e";
+      SF Pl Instr => x + "ami";
+      SF Pl Loc => x + "ach";
+      SF Pl Voc => x + "e"
+    };
+
+    oper mkNTable0283: Str -> SubstForm => Str; --%
+    oper mkNTable0283 lexem = 
+      let x = Predef.tk 1 lexem in
+    table { 
+      SF Sg Nom => x + "a";
+      SF Sg Gen => x + "iej";
+      SF Sg Dat => x + "iej";
+      SF Sg Acc => x + "ą";
+      SF Sg Instr => x + "ą";
+      SF Sg Loc => x + "iej";
+      SF Sg Voc => x + "a";
+      SF Pl Nom => x + "ie";
+      SF Pl Gen => x + "ich";
+      SF Pl Dat => x + "im";
+      SF Pl Acc => x + "ie";
+      SF Pl Instr => x + "imi";
+      SF Pl Loc => x + "ich";
+      SF Pl Voc => x + "ie"
+    };
+
+    oper mkNTable0286: Str -> SubstForm => Str; --%
+    oper mkNTable0286 lexem = 
+      let x = Predef.tk 0 lexem in
+    table { 
+      SF Sg Nom => x + "";
+      SF Sg Gen => x + "na";
+      SF Sg Dat => x + "nowi";
+      SF Sg Acc => x + "na";
+      SF Sg Instr => x + "nem";
+      SF Sg Loc => x + "nie";
+      SF Sg Voc => x + "";
+      SF Pl Nom => x + "nowie";
+      SF Pl Gen => x + "nów";
+      SF Pl Dat => x + "nom";
+      SF Pl Acc => x + "nów";
+      SF Pl Instr => x + "nami";
+      SF Pl Loc => x + "nach";
+      SF Pl Voc => x + "nowie"
+    };
+
+    oper mkNTable0290: Str -> SubstForm => Str; --%
+    oper mkNTable0290 lexem = 
+      let x = Predef.tk 1 lexem in
+    table { 
+      SF Sg Nom => x + "ń";
+      SF Sg Gen => x + "ni";
+      SF Sg Dat => x + "ni";
+      SF Sg Acc => x + "ń";
+      SF Sg Instr => x + "nią";
+      SF Sg Loc => x + "ni";
+      SF Sg Voc => x + "ni";
+      SF Pl Nom => x + "nie";
+      SF Pl Gen => x + "ni";
+      SF Pl Dat => x + "niom";
+      SF Pl Acc => x + "nie";
+      SF Pl Instr => x + "niami";
+      SF Pl Loc => x + "niach";
+      SF Pl Voc => x + "nie"
+    };
+
+    oper mkNTable0291: Str -> SubstForm => Str; --%
+    oper mkNTable0291 lexem = 
+      let x = Predef.tk 3 lexem in
+    table { 
+      SF Sg Nom => x + "źka";
+      SF Sg Gen => x + "źki";
+      SF Sg Dat => x + "źce";
+      SF Sg Acc => x + "źkę";
+      SF Sg Instr => x + "źką";
+      SF Sg Loc => x + "źce";
+      SF Sg Voc => x + "źko";
+      SF Pl Nom => x + "źki";
+      SF Pl Gen => x + "ziek";
+      SF Pl Dat => x + "źkom";
+      SF Pl Acc => x + "źki";
+      SF Pl Instr => x + "źkami";
+      SF Pl Loc => x + "źkach";
+      SF Pl Voc => x + "źki"
+    };
+
+    oper mkNTable0292: Str -> SubstForm => Str; --%
+    oper mkNTable0292 lexem = 
+      let x = Predef.tk 3 lexem in
+    table { 
+      SF Sg Nom => x + "łło";
+      SF Sg Gen => x + "łły";
+      SF Sg Dat => x + "lle";
+      SF Sg Acc => x + "łłę";
+      SF Sg Instr => x + "łłą";
+      SF Sg Loc => x + "lle";
+      SF Sg Voc => x + "łło";
+      SF Pl Nom => x + "łłowie";
+      SF Pl Gen => x + "łłów";
+      SF Pl Dat => x + "łłom";
+      SF Pl Acc => x + "łłów";
+      SF Pl Instr => x + "łłami";
+      SF Pl Loc => x + "łłach";
+      SF Pl Voc => x + "łłowie"
+    };
+
+    oper mkNTable0293: Str -> SubstForm => Str; --%
+    oper mkNTable0293 lexem = 
+      let x = Predef.tk 3 lexem in
+    table { 
+      SF Sg Nom => x + "oda";
+      SF Sg Gen => x + "ody";
+      SF Sg Dat => x + "odzie";
+      SF Sg Acc => x + "odę";
+      SF Sg Instr => x + "odą";
+      SF Sg Loc => x + "odzie";
+      SF Sg Voc => x + "odo";
+      SF Pl Nom => x + "ody";
+      SF Pl Gen => x + "ód";
+      SF Pl Dat => x + "odom";
+      SF Pl Acc => x + "ody";
+      SF Pl Instr => x + "odami";
+      SF Pl Loc => x + "odach";
+      SF Pl Voc => x + "ody"
+    };
+
+    oper mkNTable0297: Str -> SubstForm => Str; --%
+    oper mkNTable0297 lexem = 
+      let x = Predef.tk 1 lexem in
+    table { 
+      SF Sg Nom => x + "ń";
+      SF Sg Gen => x + "nia";
+      SF Sg Dat => x + "niowi";
+      SF Sg Acc => x + "ń";
+      SF Sg Instr => x + "niem";
+      SF Sg Loc => x + "niu";
+      SF Sg Voc => x + "niu";
+      SF Pl Nom => x + "nie";
+      SF Pl Gen => x + "niów";
+      SF Pl Dat => x + "niom";
+      SF Pl Acc => x + "nie";
+      SF Pl Instr => x + "niami";
+      SF Pl Loc => x + "niach";
+      SF Pl Voc => x + "nie"
+    };
+
+    oper mkNTable0299: Str -> SubstForm => Str; --%
+    oper mkNTable0299 lexem = 
+      let x = Predef.tk 3 lexem in
+    table { 
+      SF Sg Nom => x + "sło";
+      SF Sg Gen => x + "sła";
+      SF Sg Dat => x + "słu";
+      SF Sg Acc => x + "sło";
+      SF Sg Instr => x + "słem";
+      SF Sg Loc => x + "śle";
+      SF Sg Voc => x + "sło";
+      SF Pl Nom => x + "sła";
+      SF Pl Gen => x + "seł";
+      SF Pl Dat => x + "słom";
+      SF Pl Acc => x + "sła";
+      SF Pl Instr => x + "słami";
+      SF Pl Loc => x + "słach";
+      SF Pl Voc => x + "sła"
+    };
+
+    oper mkNTable0300: Str -> SubstForm => Str; --%
+    oper mkNTable0300 lexem = 
+      let x = Predef.tk 1 lexem in
+    table { 
+      SF Sg Nom => x + "a";
+      SF Sg Gen => x + "y";
+      SF Sg Dat => x + "ie";
+      SF Sg Acc => x + "ę";
+      SF Sg Instr => x + "ą";
+      SF Sg Loc => x + "ie";
+      SF Sg Voc => x + "o";
+      SF Pl Nom => x + "y";
+      SF Pl Gen => x + "a";
+      SF Pl Dat => x + "a";
+      SF Pl Acc => x + "y";
+      SF Pl Instr => x + "a";
+      SF Pl Loc => x + "ach";
+      SF Pl Voc => x + "y"
+    };
+
+    oper mkNTable0301: Str -> SubstForm => Str; --%
+    oper mkNTable0301 lexem = 
+      let x = Predef.tk 2 lexem in
+    table { 
+      SF Sg Nom => x + "ec";
+      SF Sg Gen => x + "ca";
+      SF Sg Dat => x + "cowi";
+      SF Sg Acc => x + "ca";
+      SF Sg Instr => x + "cem";
+      SF Sg Loc => x + "cu";
+      SF Sg Voc => x + "cu";
+      SF Pl Nom => x + "ce";
+      SF Pl Gen => x + "ców";
+      SF Pl Dat => x + "com";
+      SF Pl Acc => x + "ce";
+      SF Pl Instr => x + "cami";
+      SF Pl Loc => x + "cach";
+      SF Pl Voc => x + "ce"
+    };
+
+    oper mkNTable0302: Str -> SubstForm => Str; --%
+    oper mkNTable0302 lexem = 
+      let x = Predef.tk 1 lexem in
+    table { 
+      SF Sg Nom => x + "a";
+      SF Sg Gen => x + "y";
+      SF Sg Dat => x + "ie";
+      SF Sg Acc => x + "ę";
+      SF Sg Instr => x + "ą";
+      SF Sg Loc => x + "ie";
+      SF Sg Voc => x + "o";
+      SF Pl Nom => x + "i";
+      SF Pl Gen => x + "ów";
+      SF Pl Dat => x + "om";
+      SF Pl Acc => x + "ów";
+      SF Pl Instr => x + "ami";
+      SF Pl Loc => x + "ach";
+      SF Pl Voc => x + "i"
+    };
+
+    oper mkNTable0304: Str -> SubstForm => Str; --%
+    oper mkNTable0304 lexem = 
+      let x = Predef.tk 0 lexem in
+    table { 
+      SF Sg Nom => x + "";
+      SF Sg Gen => x + "a";
+      SF Sg Dat => x + "";
+      SF Sg Acc => x + "a";
+      SF Sg Instr => x + "";
+      SF Sg Loc => x + "";
+      SF Sg Voc => x + "";
+      SF Pl Nom => x + "";
+      SF Pl Gen => x + "";
+      SF Pl Dat => x + "";
+      SF Pl Acc => x + "";
+      SF Pl Instr => x + "";
+      SF Pl Loc => x + "";
+      SF Pl Voc => x + ""
+    };
+
+    oper mkNTable0305: Str -> SubstForm => Str; --%
+    oper mkNTable0305 lexem = 
+      let x = Predef.tk 2 lexem in
+    table { 
+      SF Sg Nom => x + "ph";
+      SF Sg Gen => x + "pha";
+      SF Sg Dat => x + "phowi";
+      SF Sg Acc => x + "pha";
+      SF Sg Instr => x + "phem";
+      SF Sg Loc => x + "fie";
+      SF Sg Voc => x + "fie";
+      SF Pl Nom => x + "phowie";
+      SF Pl Gen => x + "phów";
+      SF Pl Dat => x + "phom";
+      SF Pl Acc => x + "phów";
+      SF Pl Instr => x + "phami";
+      SF Pl Loc => x + "phach";
+      SF Pl Voc => x + "phowie"
+    };
+
+    oper mkNTable0308: Str -> SubstForm => Str; --%
+    oper mkNTable0308 lexem = 
+      let x = lexem in
+    table { 
+      SF Sg Nom => x + "a";
+      SF Sg Gen => x + "";
+      SF Sg Dat => x + "";
+      SF Sg Acc => x + "ę";
+      SF Sg Instr => x + "ą";
+      SF Sg Loc => x + "";
+      SF Sg Voc => x + "o";
+      SF Pl Nom => x + "owie";
+      SF Pl Gen => x + "ów";
+      SF Pl Dat => x + "om";
+      SF Pl Acc => x + "ów";
+      SF Pl Instr => x + "ami";
+      SF Pl Loc => x + "ach";
+      SF Pl Voc => x + "owie"
+    };
+
+    oper mkNTable0309: Str -> SubstForm => Str; --%
+    oper mkNTable0309 lexem = 
+      let x = Predef.tk 0 lexem in
+    table { 
+      SF Sg Nom => x + "";
+      SF Sg Gen => x + "u";
+      SF Sg Dat => x + "";
+      SF Sg Acc => x + "";
+      SF Sg Instr => x + "";
+      SF Sg Loc => x + "";
+      SF Sg Voc => x + "";
+      SF Pl Nom => x + "";
+      SF Pl Gen => x + "";
+      SF Pl Dat => x + "";
+      SF Pl Acc => x + "";
+      SF Pl Instr => x + "";
+      SF Pl Loc => x + "";
+      SF Pl Voc => x + ""
+    };
+
+    oper mkNTable0312: Str -> SubstForm => Str; --%
+    oper mkNTable0312 lexem = 
+      let x = Predef.tk 0 lexem in
+    table { 
+      SF Sg Nom => x + "";
+      SF Sg Gen => x + "ia";
+      SF Sg Dat => x + "iowi";
+      SF Sg Acc => x + "ia";
+      SF Sg Instr => x + "iem";
+      SF Sg Loc => x + "iu";
+      SF Sg Voc => x + "iu";
+      SF Pl Nom => x + "ie";
+      SF Pl Gen => x + "i";
+      SF Pl Dat => x + "iom";
+      SF Pl Acc => x + "i";
+      SF Pl Instr => x + "iami";
+      SF Pl Loc => x + "iach";
+      SF Pl Voc => x + "ie"
+    };
+
+    oper mkNTable0313: Str -> SubstForm => Str; --%
+    oper mkNTable0313 lexem = 
+      let x = Predef.tk 3 lexem in
+    table { 
+      SF Sg Nom => x + "ńka";
+      SF Sg Gen => x + "ńki";
+      SF Sg Dat => x + "ńce";
+      SF Sg Acc => x + "ńkę";
+      SF Sg Instr => x + "ńką";
+      SF Sg Loc => x + "ńce";
+      SF Sg Voc => x + "ńko";
+      SF Pl Nom => x + "ńki";
+      SF Pl Gen => x + "niek";
+      SF Pl Dat => x + "ńkom";
+      SF Pl Acc => x + "ńki";
+      SF Pl Instr => x + "ńkami";
+      SF Pl Loc => x + "ńkach";
+      SF Pl Voc => x + "ńki"
+    };
+
+    oper mkNTable0315: Str -> SubstForm => Str; --%
+    oper mkNTable0315 lexem = 
+      let x = lexem in
+    table { 
+      SF Sg Nom => x + "";
+      SF Sg Gen => x + "";
+      SF Sg Dat => x + "owi";
+      SF Sg Acc => x + "";
+      SF Sg Instr => x + "em";
+      SF Sg Loc => x + "";
+      SF Sg Voc => x + "";
+      SF Pl Nom => x + "y";
+      SF Pl Gen => x + "ów";
+      SF Pl Dat => x + "om";
+      SF Pl Acc => x + "y";
+      SF Pl Instr => x + "ami";
+      SF Pl Loc => x + "ach";
+      SF Pl Voc => x + "y"
+    };
+
+    oper mkNTable0316: Str -> SubstForm => Str; --%
+    oper mkNTable0316 lexem = 
+      let x = Predef.tk 1 lexem in
+    table { 
+      SF Sg Nom => x + "ź";
+      SF Sg Gen => x + "zia";
+      SF Sg Dat => x + "ziowi";
+      SF Sg Acc => x + "zia";
+      SF Sg Instr => x + "ziem";
+      SF Sg Loc => x + "ziu";
+      SF Sg Voc => x + "ziu";
+      SF Pl Nom => x + "ziowie";
+      SF Pl Gen => x + "ziów";
+      SF Pl Dat => x + "ziom";
+      SF Pl Acc => x + "ziów";
+      SF Pl Instr => x + "ziami";
+      SF Pl Loc => x + "ziach";
+      SF Pl Voc => x + "ziowie"
+    };
+
+    oper mkNTable0317: Str -> SubstForm => Str; --%
+    oper mkNTable0317 lexem = 
+      let x = Predef.tk 3 lexem in
+    table { 
+      SF Sg Nom => x + "nia";
+      SF Sg Gen => x + "ni";
+      SF Sg Dat => x + "ni";
+      SF Sg Acc => x + "nię";
+      SF Sg Instr => x + "nią";
+      SF Sg Loc => x + "ni";
+      SF Sg Voc => x + "nio";
+      SF Pl Nom => x + "nie";
+      SF Pl Gen => x + "ń";
+      SF Pl Dat => x + "niom";
+      SF Pl Acc => x + "nie";
+      SF Pl Instr => x + "niami";
+      SF Pl Loc => x + "niach";
+      SF Pl Voc => x + "nie"
+    };
+
+    oper mkNTable0324: Str -> SubstForm => Str; --%
+    oper mkNTable0324 lexem = 
+      let x = Predef.tk 0 lexem in
+    table { 
+      SF Sg Nom => x + "";
+      SF Sg Gen => x + "a";
+      SF Sg Dat => x + "owi";
+      SF Sg Acc => x + "a";
+      SF Sg Instr => x + "em";
+      SF Sg Loc => x + "ie";
+      SF Sg Voc => x + "ie";
+      SF Pl Nom => x + "owie";
+      SF Pl Gen => x + "ów";
+      SF Pl Dat => x + "";
+      SF Pl Acc => x + "ów";
+      SF Pl Instr => x + "";
+      SF Pl Loc => x + "";
+      SF Pl Voc => x + "owie"
+    };
+
+    oper mkNTable0328: Str -> SubstForm => Str; --%
+    oper mkNTable0328 lexem = 
+      let x = Predef.tk 4 lexem in
+    table { 
+      SF Sg Nom => x + "zioł";
+      SF Sg Gen => x + "zła";
+      SF Sg Dat => x + "złowi";
+      SF Sg Acc => x + "zła";
+      SF Sg Instr => x + "złem";
+      SF Sg Loc => x + "źle";
+      SF Sg Voc => x + "źle";
+      SF Pl Nom => x + "złowie";
+      SF Pl Gen => x + "złów";
+      SF Pl Dat => x + "złom";
+      SF Pl Acc => x + "złów";
+      SF Pl Instr => x + "złami";
+      SF Pl Loc => x + "złach";
+      SF Pl Voc => x + "złowie"
+    };
+
+    oper mkNTable0330: Str -> SubstForm => Str; --%
+    oper mkNTable0330 lexem = 
+      let x = Predef.tk 3 lexem in
+    table { 
+      SF Sg Nom => x + "iew";
+      SF Sg Gen => x + "wi";
+      SF Sg Dat => x + "wi";
+      SF Sg Acc => x + "iew";
+      SF Sg Instr => x + "wią";
+      SF Sg Loc => x + "wi";
+      SF Sg Voc => x + "wi";
+      SF Pl Nom => x + "wie";
+      SF Pl Gen => x + "wi";
+      SF Pl Dat => x + "wiom";
+      SF Pl Acc => x + "wie";
+      SF Pl Instr => x + "wiami";
+      SF Pl Loc => x + "wiach";
+      SF Pl Voc => x + "wie"
+    };
+
+    oper mkNTable0332: Str -> SubstForm => Str; --%
+    oper mkNTable0332 lexem = 
+      let x = Predef.tk 1 lexem in
+    table { 
+      SF Sg Nom => x + "o";
+      SF Sg Gen => x + "a";
+      SF Sg Dat => x + "owi";
+      SF Sg Acc => x + "a";
+      SF Sg Instr => x + "em";
+      SF Sg Loc => x + "zie";
+      SF Sg Voc => x + "o";
+      SF Pl Nom => x + "a";
+      SF Pl Gen => x + "ów";
+      SF Pl Dat => x + "om";
+      SF Pl Acc => x + "a";
+      SF Pl Instr => x + "ami";
+      SF Pl Loc => x + "ach";
+      SF Pl Voc => x + "a"
+    };
+
+    oper mkNTable0333: Str -> SubstForm => Str; --%
+    oper mkNTable0333 lexem = 
+      let x = Predef.tk 0 lexem in
+    table { 
+      SF Sg Nom => x + "";
+      SF Sg Gen => x + "ia";
+      SF Sg Dat => x + "iowi";
+      SF Sg Acc => x + "ia";
+      SF Sg Instr => x + "iem";
+      SF Sg Loc => x + "iu";
+      SF Sg Voc => x + "iu";
+      SF Pl Nom => x + "ie";
+      SF Pl Gen => x + "iów";
+      SF Pl Dat => x + "iom";
+      SF Pl Acc => x + "iów";
+      SF Pl Instr => x + "iami";
+      SF Pl Loc => x + "iach";
+      SF Pl Voc => x + "ie"
+    };
+
+    oper mkNTable0334: Str -> SubstForm => Str; --%
+    oper mkNTable0334 lexem = 
+      let x = Predef.tk 3 lexem in
+    table { 
+      SF Sg Nom => x + "zna";
+      SF Sg Gen => x + "zny";
+      SF Sg Dat => x + "źnie";
+      SF Sg Acc => x + "znę";
+      SF Sg Instr => x + "zną";
+      SF Sg Loc => x + "źnie";
+      SF Sg Voc => x + "zno";
+      SF Pl Nom => x + "zny";
+      SF Pl Gen => x + "zn";
+      SF Pl Dat => x + "znom";
+      SF Pl Acc => x + "zny";
+      SF Pl Instr => x + "znami";
+      SF Pl Loc => x + "znach";
+      SF Pl Voc => x + "zny"
+    };
+
+    oper mkNTable0335: Str -> SubstForm => Str; --%
+    oper mkNTable0335 lexem = 
+      let x = Predef.tk 4 lexem in
+    table { 
+      SF Sg Nom => x + "cień";
+      SF Sg Gen => x + "tnia";
+      SF Sg Dat => x + "tniowi";
+      SF Sg Acc => x + "tnia";
+      SF Sg Instr => x + "tniem";
+      SF Sg Loc => x + "tniu";
+      SF Sg Voc => x + "tniu";
+      SF Pl Nom => x + "tniowie";
+      SF Pl Gen => x + "tniów";
+      SF Pl Dat => x + "tniom";
+      SF Pl Acc => x + "tniów";
+      SF Pl Instr => x + "tniami";
+      SF Pl Loc => x + "tniach";
+      SF Pl Voc => x + "tniowie"
+    };
+
+    oper mkNTable0337: Str -> SubstForm => Str; --%
+    oper mkNTable0337 lexem = 
+      let x = Predef.tk 2 lexem in
+    table { 
+      SF Sg Nom => x + "to";
+      SF Sg Gen => x + "ty";
+      SF Sg Dat => x + "cie";
+      SF Sg Acc => x + "tę";
+      SF Sg Instr => x + "tą";
+      SF Sg Loc => x + "cie";
+      SF Sg Voc => x + "to";
+      SF Pl Nom => x + "towie";
+      SF Pl Gen => x + "tów";
+      SF Pl Dat => x + "tom";
+      SF Pl Acc => x + "tów";
+      SF Pl Instr => x + "tami";
+      SF Pl Loc => x + "tach";
+      SF Pl Voc => x + "towie"
+    };
+
+    oper mkNTable0338: Str -> SubstForm => Str; --%
+    oper mkNTable0338 lexem = 
+      let x = lexem in
+    table { 
+      SF Sg Nom => x + "";
+      SF Sg Gen => x + "";
+      SF Sg Dat => x + "";
+      SF Sg Acc => x + "";
+      SF Sg Instr => x + "";
+      SF Sg Loc => x + "";
+      SF Sg Voc => x + "";
+      SF Pl Nom => x + "";
+      SF Pl Gen => x + "";
+      SF Pl Dat => x + "m";
+      SF Pl Acc => x + "";
+      SF Pl Instr => x + "";
+      SF Pl Loc => x + "";
+      SF Pl Voc => x + ""
+    };
+
+    oper mkNTable0339: Str -> SubstForm => Str; --%
+    oper mkNTable0339 lexem = 
+      let x = Predef.tk 3 lexem in
+    table { 
+      SF Sg Nom => x + "nia";
+      SF Sg Gen => x + "nii";
+      SF Sg Dat => x + "nii";
+      SF Sg Acc => x + "nię";
+      SF Sg Instr => x + "nią";
+      SF Sg Loc => x + "nii";
+      SF Sg Voc => x + "niu";
+      SF Pl Nom => x + "nie";
+      SF Pl Gen => x + "ń";
+      SF Pl Dat => x + "niom";
+      SF Pl Acc => x + "nie";
+      SF Pl Instr => x + "niami";
+      SF Pl Loc => x + "niach";
+      SF Pl Voc => x + "nie"
+    };
+
+    oper mkNTable0342: Str -> SubstForm => Str; --%
+    oper mkNTable0342 lexem = 
+      let x = Predef.tk 2 lexem in
+    table { 
+      SF Sg Nom => x + "ew";
+      SF Sg Gen => x + "wa";
+      SF Sg Dat => x + "wu";
+      SF Sg Acc => x + "wa";
+      SF Sg Instr => x + "wem";
+      SF Sg Loc => x + "wie";
+      SF Sg Voc => x + "wie";
+      SF Pl Nom => x + "wowie";
+      SF Pl Gen => x + "wów";
+      SF Pl Dat => x + "wom";
+      SF Pl Acc => x + "wów";
+      SF Pl Instr => x + "wami";
+      SF Pl Loc => x + "wach";
+      SF Pl Voc => x + "wowie"
+    };
+
+    oper mkNTable0343: Str -> SubstForm => Str; --%
+    oper mkNTable0343 lexem = 
+      let x = Predef.tk 2 lexem in
+    table { 
+      SF Sg Nom => x + "ew";
+      SF Sg Gen => x + "wa";
+      SF Sg Dat => x + "wu";
+      SF Sg Acc => x + "wa";
+      SF Sg Instr => x + "wem";
+      SF Sg Loc => x + "wie";
+      SF Sg Voc => x + "wie";
+      SF Pl Nom => x + "wy";
+      SF Pl Gen => x + "wów";
+      SF Pl Dat => x + "wom";
+      SF Pl Acc => x + "wy";
+      SF Pl Instr => x + "wami";
+      SF Pl Loc => x + "wach";
+      SF Pl Voc => x + "wy"
+    };
+
+    oper mkNTable0348: Str -> SubstForm => Str; --%
+    oper mkNTable0348 lexem = 
+      let x = Predef.tk 0 lexem in
+    table { 
+      SF Sg Nom => x + "";
+      SF Sg Gen => x + "-u";
+      SF Sg Dat => x + "";
+      SF Sg Acc => x + "";
+      SF Sg Instr => x + "";
+      SF Sg Loc => x + "-u";
+      SF Sg Voc => x + "-u";
+      SF Pl Nom => x + "";
+      SF Pl Gen => x + "";
+      SF Pl Dat => x + "";
+      SF Pl Acc => x + "";
+      SF Pl Instr => x + "";
+      SF Pl Loc => x + "";
+      SF Pl Voc => x + ""
+    };
+
+    oper mkNTable0349: Str -> SubstForm => Str; --%
+    oper mkNTable0349 lexem = 
+      let x = Predef.tk 4 lexem in
+    table { 
+      SF Sg Nom => x + "ciek";
+      SF Sg Gen => x + "ćka";
+      SF Sg Dat => x + "ćkowi";
+      SF Sg Acc => x + "ćka";
+      SF Sg Instr => x + "ćkiem";
+      SF Sg Loc => x + "ćku";
+      SF Sg Voc => x + "ćku";
+      SF Pl Nom => x + "ćkowie";
+      SF Pl Gen => x + "ćków";
+      SF Pl Dat => x + "ćkom";
+      SF Pl Acc => x + "ćków";
+      SF Pl Instr => x + "ćkami";
+      SF Pl Loc => x + "ćkach";
+      SF Pl Voc => x + "ćkowie"
+    };
+
+    oper mkNTable0350: Str -> SubstForm => Str; --%
+    oper mkNTable0350 lexem = 
+      let x = Predef.tk 0 lexem in
+    table { 
+      SF Sg Nom => x + "";
+      SF Sg Gen => x + "a";
+      SF Sg Dat => x + "owi";
+      SF Sg Acc => x + "a";
+      SF Sg Instr => x + "em";
+      SF Sg Loc => x + "u";
+      SF Sg Voc => x + "";
+      SF Pl Nom => x + "owie";
+      SF Pl Gen => x + "ów";
+      SF Pl Dat => x + "om";
+      SF Pl Acc => x + "ów";
+      SF Pl Instr => x + "ami";
+      SF Pl Loc => x + "ach";
+      SF Pl Voc => x + "owie"
+    };
+
+    oper mkNTable0352: Str -> SubstForm => Str; --%
+    oper mkNTable0352 lexem = 
+      let x = Predef.tk 1 lexem in
+    table { 
+      SF Sg Nom => x + "a";
+      SF Sg Gen => x + "y";
+      SF Sg Dat => x + "ie";
+      SF Sg Acc => x + "ę";
+      SF Sg Instr => x + "ą";
+      SF Sg Loc => x + "ie";
+      SF Sg Voc => x + "o";
+      SF Pl Nom => x + "y";
+      SF Pl Gen => x + "ów";
+      SF Pl Dat => x + "om";
+      SF Pl Acc => x + "ów";
+      SF Pl Instr => x + "ami";
+      SF Pl Loc => x + "ach";
+      SF Pl Voc => x + "y"
+    };
+
+    oper mkNTable0353: Str -> SubstForm => Str; --%
+    oper mkNTable0353 lexem = 
+      let x = Predef.tk 1 lexem in
+    table { 
+      SF Sg Nom => x + "r";
+      SF Sg Gen => x + "ra";
+      SF Sg Dat => x + "rowi";
+      SF Sg Acc => x + "ra";
+      SF Sg Instr => x + "rem";
+      SF Sg Loc => x + "ze";
+      SF Sg Voc => x + "ze";
+      SF Pl Nom => x + "rowie";
+      SF Pl Gen => x + "rów";
+      SF Pl Dat => x + "rom";
+      SF Pl Acc => x + "rów";
+      SF Pl Instr => x + "rami";
+      SF Pl Loc => x + "rach";
+      SF Pl Voc => x + "rowie"
+    };
+
+    oper mkNTable0356: Str -> SubstForm => Str; --%
+    oper mkNTable0356 lexem = 
+      let x = Predef.tk 3 lexem in
+    table { 
+      SF Sg Nom => x + "zec";
+      SF Sg Gen => x + "ca";
+      SF Sg Dat => x + "cowi";
+      SF Sg Acc => x + "ca";
+      SF Sg Instr => x + "cem";
+      SF Sg Loc => x + "cu";
+      SF Sg Voc => x + "cu";
+      SF Pl Nom => x + "cowie";
+      SF Pl Gen => x + "ców";
+      SF Pl Dat => x + "com";
+      SF Pl Acc => x + "ców";
+      SF Pl Instr => x + "cami";
+      SF Pl Loc => x + "cach";
+      SF Pl Voc => x + "cowie"
+    };
+
+    oper mkNTable0360: Str -> SubstForm => Str; --%
+    oper mkNTable0360 lexem = 
+      let x = Predef.tk 2 lexem in
+    table { 
+      SF Sg Nom => x + "ec";
+      SF Sg Gen => x + "ca";
+      SF Sg Dat => x + "cowi";
+      SF Sg Acc => x + "ca";
+      SF Sg Instr => x + "cem";
+      SF Sg Loc => x + "cu";
+      SF Sg Voc => x + "cu";
+      SF Pl Nom => x + "cowie";
+      SF Pl Gen => x + "ców";
+      SF Pl Dat => x + "cowi";
+      SF Pl Acc => x + "ców";
+      SF Pl Instr => x + "cami";
+      SF Pl Loc => x + "cach";
+      SF Pl Voc => x + "cowie"
+    };
+
+    oper mkNTable0364: Str -> SubstForm => Str; --%
+    oper mkNTable0364 lexem = 
+      let x = lexem in
+    table { 
+      SF Sg Nom => x + "a";
+      SF Sg Gen => x + "";
+      SF Sg Dat => x + "";
+      SF Sg Acc => x + "ę";
+      SF Sg Instr => x + "ą";
+      SF Sg Loc => x + "";
+      SF Sg Voc => x + "u";
+      SF Pl Nom => x + "e";
+      SF Pl Gen => x + "";
+      SF Pl Dat => x + "om";
+      SF Pl Acc => x + "e";
+      SF Pl Instr => x + "ami";
+      SF Pl Loc => x + "ach";
+      SF Pl Voc => x + "e"
+    };
+
+    oper mkNTable0365: Str -> SubstForm => Str; --%
+    oper mkNTable0365 lexem = 
+      let x = Predef.tk 0 lexem in
+    table { 
+      SF Sg Nom => x + "";
+      SF Sg Gen => x + "a";
+      SF Sg Dat => x + "owi";
+      SF Sg Acc => x + "a";
+      SF Sg Instr => x + "em";
+      SF Sg Loc => x + "u";
+      SF Sg Voc => x + "u";
+      SF Pl Nom => x + "owie";
+      SF Pl Gen => x + "y";
+      SF Pl Dat => x + "om";
+      SF Pl Acc => x + "y";
+      SF Pl Instr => x + "ami";
+      SF Pl Loc => x + "ach";
+      SF Pl Voc => x + "owie"
+    };
+
+    oper mkNTable0366: Str -> SubstForm => Str; --%
+    oper mkNTable0366 lexem = 
+      let x = Predef.tk 2 lexem in
+    table { 
+      SF Sg Nom => x + "ec";
+      SF Sg Gen => x + "ca";
+      SF Sg Dat => x + "cowi";
+      SF Sg Acc => x + "ec";
+      SF Sg Instr => x + "cem";
+      SF Sg Loc => x + "cu";
+      SF Sg Voc => x + "cu";
+      SF Pl Nom => x + "ce";
+      SF Pl Gen => x + "ców";
+      SF Pl Dat => x + "com";
+      SF Pl Acc => x + "ce";
+      SF Pl Instr => x + "cami";
+      SF Pl Loc => x + "cach";
+      SF Pl Voc => x + "ce"
+    };
+
+    oper mkNTable0373: Str -> SubstForm => Str; --%
+    oper mkNTable0373 lexem = 
+      let x = Predef.tk 0 lexem in
+    table { 
+      SF Sg Nom => x + "";
+      SF Sg Gen => x + "a";
+      SF Sg Dat => x + "owi";
+      SF Sg Acc => x + "a";
+      SF Sg Instr => x + "em";
+      SF Sg Loc => x + "u";
+      SF Sg Voc => x + "u";
+      SF Pl Nom => x + "y";
+      SF Pl Gen => x + "ów";
+      SF Pl Dat => x + "om";
+      SF Pl Acc => x + "y";
+      SF Pl Instr => x + "ami";
+      SF Pl Loc => x + "ach";
+      SF Pl Voc => x + "y"
+    };
+
+    oper mkNTable0374: Str -> SubstForm => Str; --%
+    oper mkNTable0374 lexem = 
+      let x = Predef.tk 3 lexem in
+    table { 
+      SF Sg Nom => x + "ech";
+      SF Sg Gen => x + "cha";
+      SF Sg Dat => x + "chowi";
+      SF Sg Acc => x + "cha";
+      SF Sg Instr => x + "chem";
+      SF Sg Loc => x + "chu";
+      SF Sg Voc => x + "chu";
+      SF Pl Nom => x + "chowie";
+      SF Pl Gen => x + "chów";
+      SF Pl Dat => x + "chom";
+      SF Pl Acc => x + "chów";
+      SF Pl Instr => x + "chami";
+      SF Pl Loc => x + "chach";
+      SF Pl Voc => x + "chowie"
+    };
+
+    oper mkNTable0375: Str -> SubstForm => Str; --%
+    oper mkNTable0375 lexem = 
+      let x = Predef.tk 0 lexem in
+    table { 
+      SF Sg Nom => x + "";
+      SF Sg Gen => x + "go";
+      SF Sg Dat => x + "";
+      SF Sg Acc => x + "go";
+      SF Sg Instr => x + "";
+      SF Sg Loc => x + "";
+      SF Sg Voc => x + "";
+      SF Pl Nom => x + "";
+      SF Pl Gen => x + "";
+      SF Pl Dat => x + "";
+      SF Pl Acc => x + "";
+      SF Pl Instr => x + "";
+      SF Pl Loc => x + "";
+      SF Pl Voc => x + ""
+    };
+
+    oper mkNTable0378: Str -> SubstForm => Str; --%
+    oper mkNTable0378 lexem = 
+      let x = Predef.tk 3 lexem in
+    table { 
+      SF Sg Nom => x + "cha";
+      SF Sg Gen => x + "chy";
+      SF Sg Dat => x + "sze";
+      SF Sg Acc => x + "chę";
+      SF Sg Instr => x + "chą";
+      SF Sg Loc => x + "sze";
+      SF Sg Voc => x + "cho";
+      SF Pl Nom => x + "chowie";
+      SF Pl Gen => x + "chów";
+      SF Pl Dat => x + "chom";
+      SF Pl Acc => x + "chów";
+      SF Pl Instr => x + "chami";
+      SF Pl Loc => x + "chach";
+      SF Pl Voc => x + "chowie"
+    };
+
+    oper mkNTable0379: Str -> SubstForm => Str; --%
+    oper mkNTable0379 lexem = 
+      let x = Predef.tk 1 lexem in
+    table { 
+      SF Sg Nom => x + "ę";
+      SF Sg Gen => x + "ęcia";
+      SF Sg Dat => x + "ęciu";
+      SF Sg Acc => x + "ę";
+      SF Sg Instr => x + "ęciem";
+      SF Sg Loc => x + "ęciu";
+      SF Sg Voc => x + "ę";
+      SF Pl Nom => x + "ęta";
+      SF Pl Gen => x + "ąt";
+      SF Pl Dat => x + "ętom";
+      SF Pl Acc => x + "ęta";
+      SF Pl Instr => x + "ętami";
+      SF Pl Loc => x + "ętach";
+      SF Pl Voc => x + "ęta"
+    };
+
+    oper mkNTable0382: Str -> SubstForm => Str; --%
+    oper mkNTable0382 lexem = 
+      let x = Predef.tk 1 lexem in
+    table { 
+      SF Sg Nom => x + "a";
+      SF Sg Gen => x + "y";
+      SF Sg Dat => x + "zie";
+      SF Sg Acc => x + "ę";
+      SF Sg Instr => x + "ą";
+      SF Sg Loc => x + "zie";
+      SF Sg Voc => x + "o";
+      SF Pl Nom => x + "zi";
+      SF Pl Gen => x + "ów";
+      SF Pl Dat => x + "om";
+      SF Pl Acc => x + "ów";
+      SF Pl Instr => x + "ami";
+      SF Pl Loc => x + "ach";
+      SF Pl Voc => x + "zi"
+    };
+
+    oper mkNTable0383: Str -> SubstForm => Str; --%
+    oper mkNTable0383 lexem = 
+      let x = Predef.tk 2 lexem in
+    table { 
+      SF Sg Nom => x + "tt";
+      SF Sg Gen => x + "tta";
+      SF Sg Dat => x + "ttowi";
+      SF Sg Acc => x + "tta";
+      SF Sg Instr => x + "ttem";
+      SF Sg Loc => x + "cie";
+      SF Sg Voc => x + "cie";
+      SF Pl Nom => x + "ttowie";
+      SF Pl Gen => x + "ttów";
+      SF Pl Dat => x + "ttom";
+      SF Pl Acc => x + "ttów";
+      SF Pl Instr => x + "ttami";
+      SF Pl Loc => x + "ttach";
+      SF Pl Voc => x + "ttowie"
+    };
+
+    oper mkNTable0386: Str -> SubstForm => Str; --%
+    oper mkNTable0386 lexem = 
+      let x = Predef.tk 2 lexem in
+    table { 
+      SF Sg Nom => x + "ót";
+      SF Sg Gen => x + "ota";
+      SF Sg Dat => x + "otowi";
+      SF Sg Acc => x + "ota";
+      SF Sg Instr => x + "otem";
+      SF Sg Loc => x + "ocie";
+      SF Sg Voc => x + "ocie";
+      SF Pl Nom => x + "otowie";
+      SF Pl Gen => x + "otów";
+      SF Pl Dat => x + "otom";
+      SF Pl Acc => x + "otów";
+      SF Pl Instr => x + "otami";
+      SF Pl Loc => x + "otach";
+      SF Pl Voc => x + "otowie"
+    };
+
+    oper mkNTable0388: Str -> SubstForm => Str; --%
+    oper mkNTable0388 lexem = 
+      let x = Predef.tk 1 lexem in
+    table { 
+      SF Sg Nom => x + "o";
+      SF Sg Gen => x + "a";
+      SF Sg Dat => x + "u";
+      SF Sg Acc => x + "a";
+      SF Sg Instr => x + "iem";
+      SF Sg Loc => x + "u";
+      SF Sg Voc => x + "o";
+      SF Pl Nom => x + "a";
+      SF Pl Gen => x + "ów";
+      SF Pl Dat => x + "om";
+      SF Pl Acc => x + "ów";
+      SF Pl Instr => x + "ami";
+      SF Pl Loc => x + "ach";
+      SF Pl Voc => x + "a"
+    };
+
+    oper mkNTable0390: Str -> SubstForm => Str; --%
+    oper mkNTable0390 lexem = 
+      let x = Predef.tk 3 lexem in
+    table { 
+      SF Sg Nom => x + "iec";
+      SF Sg Gen => x + "ca";
+      SF Sg Dat => x + "cowi";
+      SF Sg Acc => x + "ca";
+      SF Sg Instr => x + "cem";
+      SF Sg Loc => x + "cu";
+      SF Sg Voc => x + "cze";
+      SF Pl Nom => x + "cy";
+      SF Pl Gen => x + "ców";
+      SF Pl Dat => x + "com";
+      SF Pl Acc => x + "ców";
+      SF Pl Instr => x + "cami";
+      SF Pl Loc => x + "cach";
+      SF Pl Voc => x + "cy"
+    };
+
+    oper mkNTable0398: Str -> SubstForm => Str; --%
+    oper mkNTable0398 lexem = 
+      let x = Predef.tk 3 lexem in
+    table { 
+      SF Sg Nom => x + "zeł";
+      SF Sg Gen => x + "ła";
+      SF Sg Dat => x + "łowi";
+      SF Sg Acc => x + "ła";
+      SF Sg Instr => x + "łem";
+      SF Sg Loc => x + "le";
+      SF Sg Voc => x + "le";
+      SF Pl Nom => x + "łowie";
+      SF Pl Gen => x + "łów";
+      SF Pl Dat => x + "łom";
+      SF Pl Acc => x + "łów";
+      SF Pl Instr => x + "łami";
+      SF Pl Loc => x + "łach";
+      SF Pl Voc => x + "łowie"
+    };
+
+    oper mkNTable0399: Str -> SubstForm => Str; --%
+    oper mkNTable0399 lexem = 
+      let x = Predef.tk 2 lexem in
+    table { 
+      SF Sg Nom => x + "óg";
+      SF Sg Gen => x + "ogu";
+      SF Sg Dat => x + "ogowi";
+      SF Sg Acc => x + "óg";
+      SF Sg Instr => x + "ogiem";
+      SF Sg Loc => x + "ogu";
+      SF Sg Voc => x + "ogu";
+      SF Pl Nom => x + "ogi";
+      SF Pl Gen => x + "ogów";
+      SF Pl Dat => x + "ogom";
+      SF Pl Acc => x + "ogi";
+      SF Pl Instr => x + "ogami";
+      SF Pl Loc => x + "ogach";
+      SF Pl Voc => x + "ogi"
+    };
+
+    oper mkNTable0400: Str -> SubstForm => Str; --%
+    oper mkNTable0400 lexem = 
+      let x = Predef.tk 2 lexem in
+    table { 
+      SF Sg Nom => x + "óg";
+      SF Sg Gen => x + "oga";
+      SF Sg Dat => x + "ogowi";
+      SF Sg Acc => x + "óg";
+      SF Sg Instr => x + "ogiem";
+      SF Sg Loc => x + "ogu";
+      SF Sg Voc => x + "ogu";
+      SF Pl Nom => x + "ogi";
+      SF Pl Gen => x + "ogów";
+      SF Pl Dat => x + "ogom";
+      SF Pl Acc => x + "ogi";
+      SF Pl Instr => x + "ogami";
+      SF Pl Loc => x + "ogach";
+      SF Pl Voc => x + "ogi"
+    };
+
+    oper mkNTable0402: Str -> SubstForm => Str; --%
+    oper mkNTable0402 lexem = 
+      let x = Predef.tk 3 lexem in
+    table { 
+      SF Sg Nom => x + "nie";
+      SF Sg Gen => x + "nia";
+      SF Sg Dat => x + "niu";
+      SF Sg Acc => x + "nie";
+      SF Sg Instr => x + "niem";
+      SF Sg Loc => x + "niu";
+      SF Sg Voc => x + "nie";
+      SF Pl Nom => x + "nia";
+      SF Pl Gen => x + "ń";
+      SF Pl Dat => x + "niom";
+      SF Pl Acc => x + "nia";
+      SF Pl Instr => x + "niami";
+      SF Pl Loc => x + "niach";
+      SF Pl Voc => x + "nia"
+    };
+
+    oper mkNTable0403: Str -> SubstForm => Str; --%
+    oper mkNTable0403 lexem = 
+      let x = Predef.tk 1 lexem in
+    table { 
+      SF Sg Nom => x + "o";
+      SF Sg Gen => x + "o";
+      SF Sg Dat => x + "owi";
+      SF Sg Acc => x + "o";
+      SF Sg Instr => x + "o";
+      SF Sg Loc => x + "u";
+      SF Sg Voc => x + "o";
+      SF Pl Nom => x + "owie";
+      SF Pl Gen => x + "ów";
+      SF Pl Dat => x + "om";
+      SF Pl Acc => x + "ów";
+      SF Pl Instr => x + "o";
+      SF Pl Loc => x + "o";
+      SF Pl Voc => x + "owie"
+    };
+
+    oper mkNTable0410: Str -> SubstForm => Str; --%
+    oper mkNTable0410 lexem = 
+      let x = Predef.tk 2 lexem in
+    table { 
+      SF Sg Nom => x + "ro";
+      SF Sg Gen => x + "ra";
+      SF Sg Dat => x + "rowi";
+      SF Sg Acc => x + "ra";
+      SF Sg Instr => x + "rem";
+      SF Sg Loc => x + "ze";
+      SF Sg Voc => x + "ro";
+      SF Pl Nom => x + "rowie";
+      SF Pl Gen => x + "rów";
+      SF Pl Dat => x + "rom";
+      SF Pl Acc => x + "rów";
+      SF Pl Instr => x + "rami";
+      SF Pl Loc => x + "rach";
+      SF Pl Voc => x + "rowie"
+    };
+
+    oper mkNTable0411: Str -> SubstForm => Str; --%
+    oper mkNTable0411 lexem = 
+      let x = Predef.tk 1 lexem in
+    table { 
+      SF Sg Nom => x + "a";
+      SF Sg Gen => x + "y";
+      SF Sg Dat => x + "a";
+      SF Sg Acc => x + "ę";
+      SF Sg Instr => x + "ą";
+      SF Sg Loc => x + "a";
+      SF Sg Voc => x + "o";
+      SF Pl Nom => x + "y";
+      SF Pl Gen => x + "a";
+      SF Pl Dat => x + "a";
+      SF Pl Acc => x + "y";
+      SF Pl Instr => x + "a";
+      SF Pl Loc => x + "a";
+      SF Pl Voc => x + "y"
+    };
+
+    oper mkNTable0413: Str -> SubstForm => Str; --%
+    oper mkNTable0413 lexem = 
+      let x = Predef.tk 1 lexem in
+    table { 
+      SF Sg Nom => x + "e";
+      SF Sg Gen => x + "a";
+      SF Sg Dat => x + "u";
+      SF Sg Acc => x + "e";
+      SF Sg Instr => x + "em";
+      SF Sg Loc => x + "u";
+      SF Sg Voc => x + "e";
+      SF Pl Nom => x + "a";
+      SF Pl Gen => x + "y";
+      SF Pl Dat => x + "om";
+      SF Pl Acc => x + "a";
+      SF Pl Instr => x + "ami";
+      SF Pl Loc => x + "ach";
+      SF Pl Voc => x + "a"
+    };
+
+    oper mkNTable0418: Str -> SubstForm => Str; --%
+    oper mkNTable0418 lexem = 
+      let x = Predef.tk 1 lexem in
+    table { 
+      SF Sg Nom => x + "o";
+      SF Sg Gen => x + "o";
+      SF Sg Dat => x + "owi";
+      SF Sg Acc => x + "o";
+      SF Sg Instr => x + "o";
+      SF Sg Loc => x + "zie";
+      SF Sg Voc => x + "o";
+      SF Pl Nom => x + "owie";
+      SF Pl Gen => x + "ów";
+      SF Pl Dat => x + "om";
+      SF Pl Acc => x + "ów";
+      SF Pl Instr => x + "o";
+      SF Pl Loc => x + "o";
+      SF Pl Voc => x + "owie"
+    };
+
+    oper mkNTable0420: Str -> SubstForm => Str; --%
+    oper mkNTable0420 lexem = 
+      let x = Predef.tk 1 lexem in
+    table { 
+      SF Sg Nom => x + "o";
+      SF Sg Gen => x + "a";
+      SF Sg Dat => x + "owi";
+      SF Sg Acc => x + "a";
+      SF Sg Instr => x + "em";
+      SF Sg Loc => x + "o";
+      SF Sg Voc => x + "o";
+      SF Pl Nom => x + "owie";
+      SF Pl Gen => x + "ów";
+      SF Pl Dat => x + "om";
+      SF Pl Acc => x + "ów";
+      SF Pl Instr => x + "ami";
+      SF Pl Loc => x + "ach";
+      SF Pl Voc => x + "owie"
+    };
+
+    oper mkNTable0421: Str -> SubstForm => Str; --%
+    oper mkNTable0421 lexem = 
+      let x = Predef.tk 2 lexem in
+    table { 
+      SF Sg Nom => x + "ół";
+      SF Sg Gen => x + "oła";
+      SF Sg Dat => x + "ołowi";
+      SF Sg Acc => x + "oła";
+      SF Sg Instr => x + "ołem";
+      SF Sg Loc => x + "ole";
+      SF Sg Voc => x + "ole";
+      SF Pl Nom => x + "ołowie";
+      SF Pl Gen => x + "ołów";
+      SF Pl Dat => x + "ołom";
+      SF Pl Acc => x + "ołów";
+      SF Pl Instr => x + "ołami";
+      SF Pl Loc => x + "ołach";
+      SF Pl Voc => x + "ołowie"
+    };
+
+    oper mkNTable0428: Str -> SubstForm => Str; --%
+    oper mkNTable0428 lexem = 
+      let x = Predef.tk 0 lexem in
+    table { 
+      SF Sg Nom => x + "";
+      SF Sg Gen => x + "a";
+      SF Sg Dat => x + "owi";
+      SF Sg Acc => x + "a";
+      SF Sg Instr => x + "em";
+      SF Sg Loc => x + "zie";
+      SF Sg Voc => x + "zie";
+      SF Pl Nom => x + "zi";
+      SF Pl Gen => x + "ów";
+      SF Pl Dat => x + "om";
+      SF Pl Acc => x + "ów";
+      SF Pl Instr => x + "ami";
+      SF Pl Loc => x + "ach";
+      SF Pl Voc => x + "zi"
+    };
+
+    oper mkNTable0429: Str -> SubstForm => Str; --%
+    oper mkNTable0429 lexem = 
+      let x = Predef.tk 2 lexem in
+    table { 
+      SF Sg Nom => x + "ha";
+      SF Sg Gen => x + "hy";
+      SF Sg Dat => x + "że";
+      SF Sg Acc => x + "hę";
+      SF Sg Instr => x + "hą";
+      SF Sg Loc => x + "że";
+      SF Sg Voc => x + "ho";
+      SF Pl Nom => x + "howie";
+      SF Pl Gen => x + "hów";
+      SF Pl Dat => x + "hom";
+      SF Pl Acc => x + "hów";
+      SF Pl Instr => x + "hami";
+      SF Pl Loc => x + "hach";
+      SF Pl Voc => x + "howie"
+    };
+
+    oper mkNTable0432: Str -> SubstForm => Str; --%
+    oper mkNTable0432 lexem = 
+      let x = Predef.tk 2 lexem in
+    table { 
+      SF Sg Nom => x + "ca";
+      SF Sg Gen => x + "ki";
+      SF Sg Dat => x + "ce";
+      SF Sg Acc => x + "cę";
+      SF Sg Instr => x + "cą";
+      SF Sg Loc => x + "ce";
+      SF Sg Voc => x + "co";
+      SF Pl Nom => x + "cowie";
+      SF Pl Gen => x + "ców";
+      SF Pl Dat => x + "com";
+      SF Pl Acc => x + "ców";
+      SF Pl Instr => x + "cami";
+      SF Pl Loc => x + "cach";
+      SF Pl Voc => x + "cowie"
+    };
+
+    oper mkNTable0435: Str -> SubstForm => Str; --%
+    oper mkNTable0435 lexem = 
+      let x = Predef.tk 2 lexem in
+    table { 
+      SF Sg Nom => x + "ek";
+      SF Sg Gen => x + "ka";
+      SF Sg Dat => x + "kowi";
+      SF Sg Acc => x + "ek";
+      SF Sg Instr => x + "kiem";
+      SF Sg Loc => x + "ku";
+      SF Sg Voc => x + "ku";
+      SF Pl Nom => x + "ki";
+      SF Pl Gen => x + "ków";
+      SF Pl Dat => x + "kom";
+      SF Pl Acc => x + "ki";
+      SF Pl Instr => x + "kami";
+      SF Pl Loc => x + "kach";
+      SF Pl Voc => x + "ki"
+    };
+
+    oper mkNTable0438: Str -> SubstForm => Str; --%
+    oper mkNTable0438 lexem = 
+      let x = Predef.tk 1 lexem in
+    table { 
+      SF Sg Nom => x + "e";
+      SF Sg Gen => x + "e";
+      SF Sg Dat => x + "u";
+      SF Sg Acc => x + "e";
+      SF Sg Instr => x + "em";
+      SF Sg Loc => x + "u";
+      SF Sg Voc => x + "e";
+      SF Pl Nom => x + "e";
+      SF Pl Gen => x + "e";
+      SF Pl Dat => x + "e";
+      SF Pl Acc => x + "e";
+      SF Pl Instr => x + "e";
+      SF Pl Loc => x + "e";
+      SF Pl Voc => x + "e"
+    };
+
+    oper mkNTable0439: Str -> SubstForm => Str; --%
+    oper mkNTable0439 lexem = 
+      let x = Predef.tk 2 lexem in
+    table { 
+      SF Sg Nom => x + "ka";
+      SF Sg Gen => x + "ki";
+      SF Sg Dat => x + "ce";
+      SF Sg Acc => x + "kę";
+      SF Sg Instr => x + "ką";
+      SF Sg Loc => x + "ce";
+      SF Sg Voc => x + "ko";
+      SF Pl Nom => x + "kowie";
+      SF Pl Gen => x + "ek";
+      SF Pl Dat => x + "kom";
+      SF Pl Acc => x + "ek";
+      SF Pl Instr => x + "kami";
+      SF Pl Loc => x + "kach";
+      SF Pl Voc => x + "kowie"
+    };
+
+    oper mkNTable0441: Str -> SubstForm => Str; --%
+    oper mkNTable0441 lexem = 
+      let x = Predef.tk 2 lexem in
+    table { 
+      SF Sg Nom => x + "ól";
+      SF Sg Gen => x + "ola";
+      SF Sg Dat => x + "olowi";
+      SF Sg Acc => x + "ola";
+      SF Sg Instr => x + "olem";
+      SF Sg Loc => x + "olu";
+      SF Sg Voc => x + "olu";
+      SF Pl Nom => x + "olowie";
+      SF Pl Gen => x + "oli";
+      SF Pl Dat => x + "olom";
+      SF Pl Acc => x + "oli";
+      SF Pl Instr => x + "olami";
+      SF Pl Loc => x + "olach";
+      SF Pl Voc => x + "olowie"
+    };
+
+    oper mkNTable0444: Str -> SubstForm => Str; --%
+    oper mkNTable0444 lexem = 
+      let x = Predef.tk 0 lexem in
+    table { 
+      SF Sg Nom => x + "";
+      SF Sg Gen => x + "u";
+      SF Sg Dat => x + "owi";
+      SF Sg Acc => x + "";
+      SF Sg Instr => x + "em";
+      SF Sg Loc => x + "u";
+      SF Sg Voc => x + "u";
+      SF Pl Nom => x + "";
+      SF Pl Gen => x + "";
+      SF Pl Dat => x + "";
+      SF Pl Acc => x + "";
+      SF Pl Instr => x + "";
+      SF Pl Loc => x + "";
+      SF Pl Voc => x + ""
+    };
+
+    oper mkNTable0448: Str -> SubstForm => Str; --%
+    oper mkNTable0448 lexem = 
+      let x = Predef.tk 2 lexem in
+    table { 
+      SF Sg Nom => x + "ec";
+      SF Sg Gen => x + "ca";
+      SF Sg Dat => x + "cowi";
+      SF Sg Acc => x + "ca";
+      SF Sg Instr => x + "cem";
+      SF Sg Loc => x + "cu";
+      SF Sg Voc => x + "cze";
+      SF Pl Nom => x + "cy";
+      SF Pl Gen => x + "ców";
+      SF Pl Dat => x + "com";
+      SF Pl Acc => x + "ców";
+      SF Pl Instr => x + "cami";
+      SF Pl Loc => x + "cach";
+      SF Pl Voc => x + "cy"
+    };
+
+    oper mkNTable0456: Str -> SubstForm => Str; --%
+    oper mkNTable0456 lexem = 
+      let x = Predef.tk 3 lexem in
+    table { 
+      SF Sg Nom => x + "ieł";
+      SF Sg Gen => x + "ła";
+      SF Sg Dat => x + "łowi";
+      SF Sg Acc => x + "ła";
+      SF Sg Instr => x + "łem";
+      SF Sg Loc => x + "le";
+      SF Sg Voc => x + "le";
+      SF Pl Nom => x + "łowie";
+      SF Pl Gen => x + "łów";
+      SF Pl Dat => x + "łom";
+      SF Pl Acc => x + "łów";
+      SF Pl Instr => x + "łami";
+      SF Pl Loc => x + "łach";
+      SF Pl Voc => x + "łowie"
+    };
+
+    oper mkNTable0458: Str -> SubstForm => Str; --%
+    oper mkNTable0458 lexem = 
+      let x = Predef.tk 2 lexem in
+    table { 
+      SF Sg Nom => x + "ój";
+      SF Sg Gen => x + "oja";
+      SF Sg Dat => x + "ojowi";
+      SF Sg Acc => x + "oja";
+      SF Sg Instr => x + "ojem";
+      SF Sg Loc => x + "oju";
+      SF Sg Voc => x + "oju";
+      SF Pl Nom => x + "ojowie";
+      SF Pl Gen => x + "ojów";
+      SF Pl Dat => x + "ojom";
+      SF Pl Acc => x + "ojów";
+      SF Pl Instr => x + "ojami";
+      SF Pl Loc => x + "ojach";
+      SF Pl Voc => x + "ojowie"
+    };
+
+    oper mkNTable0459: Str -> SubstForm => Str; --%
+    oper mkNTable0459 lexem = 
+      let x = Predef.tk 1 lexem in
+    table { 
+      SF Sg Nom => x + "o";
+      SF Sg Gen => x + "y";
+      SF Sg Dat => x + "owi";
+      SF Sg Acc => x + "ę";
+      SF Sg Instr => x + "ą";
+      SF Sg Loc => x + "o";
+      SF Sg Voc => x + "o";
+      SF Pl Nom => x + "o";
+      SF Pl Gen => x + "o";
+      SF Pl Dat => x + "o";
+      SF Pl Acc => x + "o";
+      SF Pl Instr => x + "o";
+      SF Pl Loc => x + "o";
+      SF Pl Voc => x + "o"
+    };
+
+    oper mkNTable0460: Str -> SubstForm => Str; --%
+    oper mkNTable0460 lexem = 
+      let x = Predef.tk 1 lexem in
+    table { 
+      SF Sg Nom => x + "o";
+      SF Sg Gen => x + "y";
+      SF Sg Dat => x + "y";
+      SF Sg Acc => x + "ę";
+      SF Sg Instr => x + "ą";
+      SF Sg Loc => x + "y";
+      SF Sg Voc => x + "o";
+      SF Pl Nom => x + "owie";
+      SF Pl Gen => x + "ów";
+      SF Pl Dat => x + "om";
+      SF Pl Acc => x + "ów";
+      SF Pl Instr => x + "ami";
+      SF Pl Loc => x + "ach";
+      SF Pl Voc => x + "owie"
+    };
+
+    oper mkNTable0461: Str -> SubstForm => Str; --%
+    oper mkNTable0461 lexem = 
+      let x = Predef.tk 4 lexem in
+    table { 
+      SF Sg Nom => x + "asto";
+      SF Sg Gen => x + "asta";
+      SF Sg Dat => x + "astu";
+      SF Sg Acc => x + "asto";
+      SF Sg Instr => x + "astem";
+      SF Sg Loc => x + "eście";
+      SF Sg Voc => x + "asto";
+      SF Pl Nom => x + "asta";
+      SF Pl Gen => x + "ast";
+      SF Pl Dat => x + "astom";
+      SF Pl Acc => x + "asta";
+      SF Pl Instr => x + "astami";
+      SF Pl Loc => x + "astach";
+      SF Pl Voc => x + "asta"
+    };
+
+    oper mkNTable0463: Str -> SubstForm => Str; --%
+    oper mkNTable0463 lexem = 
+      let x = Predef.tk 2 lexem in
+    table { 
+      SF Sg Nom => x + "ek";
+      SF Sg Gen => x + "ku";
+      SF Sg Dat => x + "kowi";
+      SF Sg Acc => x + "ek";
+      SF Sg Instr => x + "kiem";
+      SF Sg Loc => x + "ku";
+      SF Sg Voc => x + "ku";
+      SF Pl Nom => x + "ki";
+      SF Pl Gen => x + "ków";
+      SF Pl Dat => x + "kom";
+      SF Pl Acc => x + "ki";
+      SF Pl Instr => x + "kami";
+      SF Pl Loc => x + "kach";
+      SF Pl Voc => x + "ki"
+    };
+
+    oper mkNTable0465: Str -> SubstForm => Str; --%
+    oper mkNTable0465 lexem = 
+      let x = Predef.tk 4 lexem in
+    table { 
+      SF Sg Nom => x + "niec";
+      SF Sg Gen => x + "ńca";
+      SF Sg Dat => x + "ńcowi";
+      SF Sg Acc => x + "niec";
+      SF Sg Instr => x + "ńcem";
+      SF Sg Loc => x + "ńcu";
+      SF Sg Voc => x + "ńcu";
+      SF Pl Nom => x + "ńce";
+      SF Pl Gen => x + "ńców";
+      SF Pl Dat => x + "ńcom";
+      SF Pl Acc => x + "ńce";
+      SF Pl Instr => x + "ńcami";
+      SF Pl Loc => x + "ńcach";
+      SF Pl Voc => x + "ńce"
+    };
+
+    oper mkNTable0466: Str -> SubstForm => Str; --%
+    oper mkNTable0466 lexem = 
+      let x = Predef.tk 2 lexem in
+    table { 
+      SF Sg Nom => x + "ór";
+      SF Sg Gen => x + "oru";
+      SF Sg Dat => x + "orowi";
+      SF Sg Acc => x + "ór";
+      SF Sg Instr => x + "orem";
+      SF Sg Loc => x + "orze";
+      SF Sg Voc => x + "orze";
+      SF Pl Nom => x + "ory";
+      SF Pl Gen => x + "orów";
+      SF Pl Dat => x + "orom";
+      SF Pl Acc => x + "ory";
+      SF Pl Instr => x + "orami";
+      SF Pl Loc => x + "orach";
+      SF Pl Voc => x + "ory"
+    };
+
+    oper mkNTable0467: Str -> SubstForm => Str; --%
+    oper mkNTable0467 lexem = 
+      let x = Predef.tk 0 lexem in
+    table { 
+      SF Sg Nom => x + "";
+      SF Sg Gen => x + "-otu";
+      SF Sg Dat => x + "";
+      SF Sg Acc => x + "";
+      SF Sg Instr => x + "";
+      SF Sg Loc => x + "";
+      SF Sg Voc => x + "";
+      SF Pl Nom => x + "";
+      SF Pl Gen => x + "";
+      SF Pl Dat => x + "";
+      SF Pl Acc => x + "";
+      SF Pl Instr => x + "";
+      SF Pl Loc => x + "";
+      SF Pl Voc => x + ""
+    };
+
+    oper mkNTable0468: Str -> SubstForm => Str; --%
+    oper mkNTable0468 lexem = 
+      let x = Predef.tk 1 lexem in
+    table { 
+      SF Sg Nom => x + "ń";
+      SF Sg Gen => x + "nia";
+      SF Sg Dat => x + "niowi";
+      SF Sg Acc => x + "ń";
+      SF Sg Instr => x + "niem";
+      SF Sg Loc => x + "niu";
+      SF Sg Voc => x + "niu";
+      SF Pl Nom => x + "nie";
+      SF Pl Gen => x + "ni";
+      SF Pl Dat => x + "niom";
+      SF Pl Acc => x + "nie";
+      SF Pl Instr => x + "niami";
+      SF Pl Loc => x + "niach";
+      SF Pl Voc => x + "nie"
+    };
+
+    oper mkNTable0469: Str -> SubstForm => Str; --%
+    oper mkNTable0469 lexem = 
+      let x = Predef.tk 2 lexem in
+    table { 
+      SF Sg Nom => x + "er";
+      SF Sg Gen => x + "ra";
+      SF Sg Dat => x + "rowi";
+      SF Sg Acc => x + "er";
+      SF Sg Instr => x + "rem";
+      SF Sg Loc => x + "rze";
+      SF Sg Voc => x + "rze";
+      SF Pl Nom => x + "ry";
+      SF Pl Gen => x + "rów";
+      SF Pl Dat => x + "rom";
+      SF Pl Acc => x + "ry";
+      SF Pl Instr => x + "rami";
+      SF Pl Loc => x + "rach";
+      SF Pl Voc => x + "ry"
+    };
+
+    oper mkNTable0470: Str -> SubstForm => Str; --%
+    oper mkNTable0470 lexem = 
+      let x = Predef.tk 4 lexem in
+    table { 
+      SF Sg Nom => x + "niec";
+      SF Sg Gen => x + "ńca";
+      SF Sg Dat => x + "ńcowi";
+      SF Sg Acc => x + "ńca";
+      SF Sg Instr => x + "ńcem";
+      SF Sg Loc => x + "ńcu";
+      SF Sg Voc => x + "ńcze";
+      SF Pl Nom => x + "ńcowie";
+      SF Pl Gen => x + "ńców";
+      SF Pl Dat => x + "ńcom";
+      SF Pl Acc => x + "ńców";
+      SF Pl Instr => x + "ńcami";
+      SF Pl Loc => x + "ńcach";
+      SF Pl Voc => x + "ńcowie"
+    };
+
+    oper mkNTable0472: Str -> SubstForm => Str; --%
+    oper mkNTable0472 lexem = 
+      let x = Predef.tk 1 lexem in
+    table { 
+      SF Sg Nom => x + "e";
+      SF Sg Gen => x + "ego";
+      SF Sg Dat => x + "e";
+      SF Sg Acc => x + "ego";
+      SF Sg Instr => x + "e";
+      SF Sg Loc => x + "e";
+      SF Sg Voc => x + "e";
+      SF Pl Nom => x + "owie";
+      SF Pl Gen => x + "ów";
+      SF Pl Dat => x + "om";
+      SF Pl Acc => x + "ów";
+      SF Pl Instr => x + "e";
+      SF Pl Loc => x + "e";
+      SF Pl Voc => x + "owie"
+    };
+
+    oper mkNTable0475: Str -> SubstForm => Str; --%
+    oper mkNTable0475 lexem = 
+      let x = Predef.tk 1 lexem in
+    table { 
+      SF Sg Nom => x + "ć";
+      SF Sg Gen => x + "ci";
+      SF Sg Dat => x + "ci";
+      SF Sg Acc => x + "ć";
+      SF Sg Instr => x + "cią";
+      SF Sg Loc => x + "ci";
+      SF Sg Voc => x + "ci";
+      SF Pl Nom => x + "ci";
+      SF Pl Gen => x + "ci";
+      SF Pl Dat => x + "ciom";
+      SF Pl Acc => x + "ci";
+      SF Pl Instr => x + "ciami";
+      SF Pl Loc => x + "ciach";
+      SF Pl Voc => x + "ci"
+    };
+
+    oper mkNTable0476: Str -> SubstForm => Str; --%
+    oper mkNTable0476 lexem = 
+      let x = Predef.tk 4 lexem in
+    table { 
+      SF Sg Nom => x + "anoc";
+      SF Sg Gen => x + "iejnocy";
+      SF Sg Dat => x + "iejnocy";
+      SF Sg Acc => x + "ąnoc";
+      SF Sg Instr => x + "ąnocą";
+      SF Sg Loc => x + "iejnocy";
+      SF Sg Voc => x + "anocy";
+      SF Pl Nom => x + "ienoce";
+      SF Pl Gen => x + "anocy";
+      SF Pl Dat => x + "imnocom";
+      SF Pl Acc => x + "ienoce";
+      SF Pl Instr => x + "iminocami";
+      SF Pl Loc => x + "ichnocach";
+      SF Pl Voc => x + "ienoce"
+    };
+
+    oper mkNTable0477: Str -> SubstForm => Str; --%
+    oper mkNTable0477 lexem = 
+      let x = Predef.tk 1 lexem in
+    table { 
+      SF Sg Nom => x + "e";
+      SF Sg Gen => x + "a";
+      SF Sg Dat => x + "u";
+      SF Sg Acc => x + "e";
+      SF Sg Instr => x + "em";
+      SF Sg Loc => x + "u";
+      SF Sg Voc => x + "e";
+      SF Pl Nom => x + "a";
+      SF Pl Gen => x + "i";
+      SF Pl Dat => x + "om";
+      SF Pl Acc => x + "a";
+      SF Pl Instr => x + "ami";
+      SF Pl Loc => x + "ach";
+      SF Pl Voc => x + "a"
+    };
+
+    oper mkNTable0485: Str -> SubstForm => Str; --%
+    oper mkNTable0485 lexem = 
+      let x = Predef.tk 3 lexem in
+    table { 
+      SF Sg Nom => x + "ier";
+      SF Sg Gen => x + "ra";
+      SF Sg Dat => x + "rowi";
+      SF Sg Acc => x + "ra";
+      SF Sg Instr => x + "rem";
+      SF Sg Loc => x + "rze";
+      SF Sg Voc => x + "rze";
+      SF Pl Nom => x + "rzy";
+      SF Pl Gen => x + "rów";
+      SF Pl Dat => x + "rom";
+      SF Pl Acc => x + "rów";
+      SF Pl Instr => x + "rami";
+      SF Pl Loc => x + "rach";
+      SF Pl Voc => x + "rzy"
+    };
+
+    oper mkNTable0486: Str -> SubstForm => Str; --%
+    oper mkNTable0486 lexem = 
+      let x = Predef.tk 3 lexem in
+    table { 
+      SF Sg Nom => x + "zeł";
+      SF Sg Gen => x + "zła";
+      SF Sg Dat => x + "złowi";
+      SF Sg Acc => x + "zła";
+      SF Sg Instr => x + "złem";
+      SF Sg Loc => x + "źle";
+      SF Sg Voc => x + "źle";
+      SF Pl Nom => x + "zły";
+      SF Pl Gen => x + "złów";
+      SF Pl Dat => x + "złom";
+      SF Pl Acc => x + "zły";
+      SF Pl Instr => x + "złami";
+      SF Pl Loc => x + "złach";
+      SF Pl Voc => x + "zły"
+    };
+
+    oper mkNTable0488: Str -> SubstForm => Str; --%
+    oper mkNTable0488 lexem = 
+      let x = Predef.tk 1 lexem in
+    table { 
+      SF Sg Nom => x + "o";
+      SF Sg Gen => x + "a";
+      SF Sg Dat => x + "u";
+      SF Sg Acc => x + "o";
+      SF Sg Instr => x + "em";
+      SF Sg Loc => x + "ie";
+      SF Sg Voc => x + "o";
+      SF Pl Nom => x + "a";
+      SF Pl Gen => x + "";
+      SF Pl Dat => x + "om";
+      SF Pl Acc => x + "a";
+      SF Pl Instr => x + "ami";
+      SF Pl Loc => x + "ach";
+      SF Pl Voc => x + "a"
+    };
+
+    oper mkNTable0490: Str -> SubstForm => Str; --%
+    oper mkNTable0490 lexem = 
+      let x = Predef.tk 2 lexem in
+    table { 
+      SF Sg Nom => x + "ia";
+      SF Sg Gen => x + "i";
+      SF Sg Dat => x + "i";
+      SF Sg Acc => x + "ię";
+      SF Sg Instr => x + "ią";
+      SF Sg Loc => x + "i";
+      SF Sg Voc => x + "io";
+      SF Pl Nom => x + "ie";
+      SF Pl Gen => x + "";
+      SF Pl Dat => x + "iom";
+      SF Pl Acc => x + "ie";
+      SF Pl Instr => x + "iami";
+      SF Pl Loc => x + "iach";
+      SF Pl Voc => x + "ie"
+    };
+
+    oper mkNTable0492: Str -> SubstForm => Str; --%
+    oper mkNTable0492 lexem = 
+      let x = Predef.tk 2 lexem in
+    table { 
+      SF Sg Nom => x + "ło";
+      SF Sg Gen => x + "ła";
+      SF Sg Dat => x + "łu";
+      SF Sg Acc => x + "ło";
+      SF Sg Instr => x + "łem";
+      SF Sg Loc => x + "le";
+      SF Sg Voc => x + "ło";
+      SF Pl Nom => x + "ła";
+      SF Pl Gen => x + "eł";
+      SF Pl Dat => x + "łom";
+      SF Pl Acc => x + "ła";
+      SF Pl Instr => x + "łami";
+      SF Pl Loc => x + "łach";
+      SF Pl Voc => x + "ła"
+    };
+
+    oper mkNTable0493: Str -> SubstForm => Str; --%
+    oper mkNTable0493 lexem = 
+      let x = Predef.tk 3 lexem in
+    table { 
+      SF Sg Nom => x + "ier";
+      SF Sg Gen => x + "ra";
+      SF Sg Dat => x + "rowi";
+      SF Sg Acc => x + "ier";
+      SF Sg Instr => x + "rem";
+      SF Sg Loc => x + "rze";
+      SF Sg Voc => x + "rze";
+      SF Pl Nom => x + "ry";
+      SF Pl Gen => x + "rów";
+      SF Pl Dat => x + "rom";
+      SF Pl Acc => x + "ry";
+      SF Pl Instr => x + "rami";
+      SF Pl Loc => x + "rach";
+      SF Pl Voc => x + "ry"
+    };
+
+    oper mkNTable0494: Str -> SubstForm => Str; --%
+    oper mkNTable0494 lexem = 
+      let x = Predef.tk 3 lexem in
+    table { 
+      SF Sg Nom => x + "sta";
+      SF Sg Gen => x + "sty";
+      SF Sg Dat => x + "ście";
+      SF Sg Acc => x + "stę";
+      SF Sg Instr => x + "stą";
+      SF Sg Loc => x + "ście";
+      SF Sg Voc => x + "sto";
+      SF Pl Nom => x + "ści";
+      SF Pl Gen => x + "stów";
+      SF Pl Dat => x + "stom";
+      SF Pl Acc => x + "stów";
+      SF Pl Instr => x + "stami";
+      SF Pl Loc => x + "stach";
+      SF Pl Voc => x + "ści"
+    };
+
+    oper mkNTable0495: Str -> SubstForm => Str; --%
+    oper mkNTable0495 lexem = 
+      let x = Predef.tk 0 lexem in
+    table { 
+      SF Sg Nom => x + "";
+      SF Sg Gen => x + "a";
+      SF Sg Dat => x + "u";
+      SF Sg Acc => x + "a";
+      SF Sg Instr => x + "em";
+      SF Sg Loc => x + "u";
+      SF Sg Voc => x + "ie";
+      SF Pl Nom => x + "owie";
+      SF Pl Gen => x + "ów";
+      SF Pl Dat => x + "om";
+      SF Pl Acc => x + "ów";
+      SF Pl Instr => x + "ami";
+      SF Pl Loc => x + "ach";
+      SF Pl Voc => x + "owie"
+    };
+
+    oper mkNTable0496: Str -> SubstForm => Str; --%
+    oper mkNTable0496 lexem = 
+      let x = Predef.tk 2 lexem in
+    table { 
+      SF Sg Nom => x + "ta";
+      SF Sg Gen => x + "ty";
+      SF Sg Dat => x + "cie";
+      SF Sg Acc => x + "tę";
+      SF Sg Instr => x + "tą";
+      SF Sg Loc => x + "cie";
+      SF Sg Voc => x + "to";
+      SF Pl Nom => x + "ty";
+      SF Pl Gen => x + "tów";
+      SF Pl Dat => x + "tom";
+      SF Pl Acc => x + "ty";
+      SF Pl Instr => x + "tami";
+      SF Pl Loc => x + "tach";
+      SF Pl Voc => x + "ty"
+    };
+
+    oper mkNTable0497: Str -> SubstForm => Str; --%
+    oper mkNTable0497 lexem = 
+      let x = Predef.tk 0 lexem in
+    table { 
+      SF Sg Nom => x + "";
+      SF Sg Gen => x + "a";
+      SF Sg Dat => x + "owi";
+      SF Sg Acc => x + "";
+      SF Sg Instr => x + "em";
+      SF Sg Loc => x + "u";
+      SF Sg Voc => x + "u";
+      SF Pl Nom => x + "e";
+      SF Pl Gen => x + "i";
+      SF Pl Dat => x + "om";
+      SF Pl Acc => x + "e";
+      SF Pl Instr => x + "ami";
+      SF Pl Loc => x + "ach";
+      SF Pl Voc => x + "e"
+    };
+
+    oper mkNTable0498: Str -> SubstForm => Str; --%
+    oper mkNTable0498 lexem = 
+      let x = Predef.tk 2 lexem in
+    table { 
+      SF Sg Nom => x + "ni";
+      SF Sg Gen => x + "ni";
+      SF Sg Dat => x + "ni";
+      SF Sg Acc => x + "nią";
+      SF Sg Instr => x + "nią";
+      SF Sg Loc => x + "ni";
+      SF Sg Voc => x + "ni";
+      SF Pl Nom => x + "nie";
+      SF Pl Gen => x + "ń";
+      SF Pl Dat => x + "niom";
+      SF Pl Acc => x + "nie";
+      SF Pl Instr => x + "niami";
+      SF Pl Loc => x + "niach";
+      SF Pl Voc => x + "nie"
+    };
+
+    oper mkNTable0499: Str -> SubstForm => Str; --%
+    oper mkNTable0499 lexem = 
+      let x = Predef.tk 1 lexem in
+    table { 
+      SF Sg Nom => x + "o";
+      SF Sg Gen => x + "o";
+      SF Sg Dat => x + "u";
+      SF Sg Acc => x + "o";
+      SF Sg Instr => x + "o";
+      SF Sg Loc => x + "u";
+      SF Sg Voc => x + "o";
+      SF Pl Nom => x + "o";
+      SF Pl Gen => x + "ów";
+      SF Pl Dat => x + "om";
+      SF Pl Acc => x + "o";
+      SF Pl Instr => x + "o";
+      SF Pl Loc => x + "o";
+      SF Pl Voc => x + "o"
+    };
+
+    oper mkNTable0500: Str -> SubstForm => Str; --%
+    oper mkNTable0500 lexem = 
+      let x = Predef.tk 0 lexem in
+    table { 
+      SF Sg Nom => x + "";
+      SF Sg Gen => x + "a";
+      SF Sg Dat => x + "owi";
+      SF Sg Acc => x + "";
+      SF Sg Instr => x + "em";
+      SF Sg Loc => x + "zie";
+      SF Sg Voc => x + "zie";
+      SF Pl Nom => x + "y";
+      SF Pl Gen => x + "ów";
+      SF Pl Dat => x + "om";
+      SF Pl Acc => x + "y";
+      SF Pl Instr => x + "ami";
+      SF Pl Loc => x + "ach";
+      SF Pl Voc => x + "y"
+    };
+
+    oper mkNTable0502: Str -> SubstForm => Str; --%
+    oper mkNTable0502 lexem = 
+      let x = Predef.tk 1 lexem in
+    table { 
+      SF Sg Nom => x + "t";
+      SF Sg Gen => x + "ta";
+      SF Sg Dat => x + "towi";
+      SF Sg Acc => x + "t";
+      SF Sg Instr => x + "tem";
+      SF Sg Loc => x + "cie";
+      SF Sg Voc => x + "cie";
+      SF Pl Nom => x + "ty";
+      SF Pl Gen => x + "tów";
+      SF Pl Dat => x + "tom";
+      SF Pl Acc => x + "ty";
+      SF Pl Instr => x + "tami";
+      SF Pl Loc => x + "tach";
+      SF Pl Voc => x + "ty"
+    };
+
+    oper mkNTable0503: Str -> SubstForm => Str; --%
+    oper mkNTable0503 lexem = 
+      let x = Predef.tk 0 lexem in
+    table { 
+      SF Sg Nom => x + "";
+      SF Sg Gen => x + "a";
+      SF Sg Dat => x + "owi";
+      SF Sg Acc => x + "a";
+      SF Sg Instr => x + "em";
+      SF Sg Loc => x + "u";
+      SF Sg Voc => x + "u";
+      SF Pl Nom => x + "e";
+      SF Pl Gen => x + "y";
+      SF Pl Dat => x + "om";
+      SF Pl Acc => x + "y";
+      SF Pl Instr => x + "ami";
+      SF Pl Loc => x + "ach";
+      SF Pl Voc => x + "e"
+    };
+
+    oper mkNTable0504: Str -> SubstForm => Str; --%
+    oper mkNTable0504 lexem = 
+      let x = Predef.tk 1 lexem in
+    table { 
+      SF Sg Nom => x + "a";
+      SF Sg Gen => x + "ej";
+      SF Sg Dat => x + "ej";
+      SF Sg Acc => x + "ą";
+      SF Sg Instr => x + "ą";
+      SF Sg Loc => x + "ej";
+      SF Sg Voc => x + "o";
+      SF Pl Nom => x + "e";
+      SF Pl Gen => x + "ych";
+      SF Pl Dat => x + "ym";
+      SF Pl Acc => x + "e";
+      SF Pl Instr => x + "ymi";
+      SF Pl Loc => x + "ych";
+      SF Pl Voc => x + "e"
+    };
+
+    oper mkNTable0505: Str -> SubstForm => Str; --%
+    oper mkNTable0505 lexem = 
+      let x = Predef.tk 1 lexem in
+    table { 
+      SF Sg Nom => x + "c";
+      SF Sg Gen => x + "cu";
+      SF Sg Dat => x + "cowi";
+      SF Sg Acc => x + "c";
+      SF Sg Instr => x + "kiem";
+      SF Sg Loc => x + "cu";
+      SF Sg Voc => x + "cu";
+      SF Pl Nom => x + "ki";
+      SF Pl Gen => x + "ców";
+      SF Pl Dat => x + "com";
+      SF Pl Acc => x + "ki";
+      SF Pl Instr => x + "cami";
+      SF Pl Loc => x + "cach";
+      SF Pl Voc => x + "ki"
+    };
+
+    oper mkNTable0506: Str -> SubstForm => Str; --%
+    oper mkNTable0506 lexem = 
+      let x = Predef.tk 1 lexem in
+    table { 
+      SF Sg Nom => x + "g";
+      SF Sg Gen => x + "ga";
+      SF Sg Dat => x + "gowi";
+      SF Sg Acc => x + "ga";
+      SF Sg Instr => x + "giem";
+      SF Sg Loc => x + "gu";
+      SF Sg Voc => x + "gu";
+      SF Pl Nom => x + "dzy";
+      SF Pl Gen => x + "gów";
+      SF Pl Dat => x + "gom";
+      SF Pl Acc => x + "gów";
+      SF Pl Instr => x + "gami";
+      SF Pl Loc => x + "gach";
+      SF Pl Voc => x + "dzy"
+    };
+
+    oper mkNTable0509: Str -> SubstForm => Str; --%
+    oper mkNTable0509 lexem = 
+      let x = Predef.tk 1 lexem in
+    table { 
+      SF Sg Nom => x + "o";
+      SF Sg Gen => x + "a";
+      SF Sg Dat => x + "u";
+      SF Sg Acc => x + "o";
+      SF Sg Instr => x + "em";
+      SF Sg Loc => x + "u";
+      SF Sg Voc => x + "o";
+      SF Pl Nom => x + "a";
+      SF Pl Gen => x + "ów";
+      SF Pl Dat => x + "om";
+      SF Pl Acc => x + "a";
+      SF Pl Instr => x + "ami";
+      SF Pl Loc => x + "ach";
+      SF Pl Voc => x + "a"
+    };
+
+    oper mkNTable0510: Str -> SubstForm => Str; --%
+    oper mkNTable0510 lexem = 
+      let x = Predef.tk 2 lexem in
+    table { 
+      SF Sg Nom => x + "st";
+      SF Sg Gen => x + "stu";
+      SF Sg Dat => x + "stowi";
+      SF Sg Acc => x + "st";
+      SF Sg Instr => x + "stem";
+      SF Sg Loc => x + "ście";
+      SF Sg Voc => x + "ście";
+      SF Pl Nom => x + "sty";
+      SF Pl Gen => x + "stów";
+      SF Pl Dat => x + "stom";
+      SF Pl Acc => x + "sty";
+      SF Pl Instr => x + "stami";
+      SF Pl Loc => x + "stach";
+      SF Pl Voc => x + "sty"
+    };
+
+    oper mkNTable0511: Str -> SubstForm => Str; --%
+    oper mkNTable0511 lexem = 
+      let x = Predef.tk 2 lexem in
+    table { 
+      SF Sg Nom => x + "to";
+      SF Sg Gen => x + "ta";
+      SF Sg Dat => x + "tu";
+      SF Sg Acc => x + "to";
+      SF Sg Instr => x + "tem";
+      SF Sg Loc => x + "cie";
+      SF Sg Voc => x + "to";
+      SF Pl Nom => x + "ta";
+      SF Pl Gen => x + "t";
+      SF Pl Dat => x + "tom";
+      SF Pl Acc => x + "ta";
+      SF Pl Instr => x + "tami";
+      SF Pl Loc => x + "tach";
+      SF Pl Voc => x + "ta"
+    };
+
+    oper mkNTable0512: Str -> SubstForm => Str; --%
+    oper mkNTable0512 lexem = 
+      let x = Predef.tk 2 lexem in
+    table { 
+      SF Sg Nom => x + "ek";
+      SF Sg Gen => x + "ka";
+      SF Sg Dat => x + "kowi";
+      SF Sg Acc => x + "ka";
+      SF Sg Instr => x + "kiem";
+      SF Sg Loc => x + "ku";
+      SF Sg Voc => x + "ku";
+      SF Pl Nom => x + "ki";
+      SF Pl Gen => x + "ków";
+      SF Pl Dat => x + "kom";
+      SF Pl Acc => x + "ki";
+      SF Pl Instr => x + "kami";
+      SF Pl Loc => x + "kach";
+      SF Pl Voc => x + "ki"
+    };
+
+    oper mkNTable0513: Str -> SubstForm => Str; --%
+    oper mkNTable0513 lexem = 
+      let x = Predef.tk 2 lexem in
+    table { 
+      SF Sg Nom => x + "el";
+      SF Sg Gen => x + "la";
+      SF Sg Dat => x + "lowi";
+      SF Sg Acc => x + "el";
+      SF Sg Instr => x + "lem";
+      SF Sg Loc => x + "lu";
+      SF Sg Voc => x + "lu";
+      SF Pl Nom => x + "le";
+      SF Pl Gen => x + "li";
+      SF Pl Dat => x + "lom";
+      SF Pl Acc => x + "le";
+      SF Pl Instr => x + "lami";
+      SF Pl Loc => x + "lach";
+      SF Pl Voc => x + "le"
+    };
+
+    oper mkNTable0514: Str -> SubstForm => Str; --%
+    oper mkNTable0514 lexem = 
+      let x = Predef.tk 0 lexem in
+    table { 
+      SF Sg Nom => x + "";
+      SF Sg Gen => x + "a";
+      SF Sg Dat => x + "owi";
+      SF Sg Acc => x + "a";
+      SF Sg Instr => x + "em";
+      SF Sg Loc => x + "u";
+      SF Sg Voc => x + "u";
+      SF Pl Nom => x + "e";
+      SF Pl Gen => x + "i";
+      SF Pl Dat => x + "om";
+      SF Pl Acc => x + "e";
+      SF Pl Instr => x + "ami";
+      SF Pl Loc => x + "ach";
+      SF Pl Voc => x + "e"
+    };
+
+    oper mkNTable0517: Str -> SubstForm => Str; --%
+    oper mkNTable0517 lexem = 
+      let x = Predef.tk 2 lexem in
+    table { 
+      SF Sg Nom => x + "er";
+      SF Sg Gen => x + "ru";
+      SF Sg Dat => x + "rowi";
+      SF Sg Acc => x + "er";
+      SF Sg Instr => x + "rem";
+      SF Sg Loc => x + "rze";
+      SF Sg Voc => x + "rze";
+      SF Pl Nom => x + "ry";
+      SF Pl Gen => x + "rów";
+      SF Pl Dat => x + "rom";
+      SF Pl Acc => x + "ry";
+      SF Pl Instr => x + "rami";
+      SF Pl Loc => x + "rach";
+      SF Pl Voc => x + "ry"
+    };
+
+    oper mkNTable0518: Str -> SubstForm => Str; --%
+    oper mkNTable0518 lexem = 
+      let x = Predef.tk 0 lexem in
+    table { 
+      SF Sg Nom => x + "";
+      SF Sg Gen => x + "u";
+      SF Sg Dat => x + "owi";
+      SF Sg Acc => x + "";
+      SF Sg Instr => x + "em";
+      SF Sg Loc => x + "ie";
+      SF Sg Voc => x + "ie";
+      SF Pl Nom => x + "e";
+      SF Pl Gen => x + "ów";
+      SF Pl Dat => x + "om";
+      SF Pl Acc => x + "e";
+      SF Pl Instr => x + "ami";
+      SF Pl Loc => x + "ach";
+      SF Pl Voc => x + "e"
+    };
+
+    oper mkNTable0519: Str -> SubstForm => Str; --%
+    oper mkNTable0519 lexem = 
+      let x = Predef.tk 0 lexem in
+    table { 
+      SF Sg Nom => x + "";
+      SF Sg Gen => x + "u";
+      SF Sg Dat => x + "owi";
+      SF Sg Acc => x + "";
+      SF Sg Instr => x + "em";
+      SF Sg Loc => x + "ie";
+      SF Sg Voc => x + "ie";
+      SF Pl Nom => x + "y";
+      SF Pl Gen => x + "y";
+      SF Pl Dat => x + "om";
+      SF Pl Acc => x + "y";
+      SF Pl Instr => x + "ami";
+      SF Pl Loc => x + "ach";
+      SF Pl Voc => x + "y"
+    };
+
+    oper mkNTable0520: Str -> SubstForm => Str; --%
+    oper mkNTable0520 lexem = 
+      let x = Predef.tk 3 lexem in
+    table { 
+      SF Sg Nom => x + "owa";
+      SF Sg Gen => x + "owy";
+      SF Sg Dat => x + "owie";
+      SF Sg Acc => x + "owę";
+      SF Sg Instr => x + "ową";
+      SF Sg Loc => x + "owie";
+      SF Sg Voc => x + "owo";
+      SF Pl Nom => x + "owy";
+      SF Pl Gen => x + "ów";
+      SF Pl Dat => x + "owom";
+      SF Pl Acc => x + "owy";
+      SF Pl Instr => x + "owami";
+      SF Pl Loc => x + "owach";
+      SF Pl Voc => x + "owy"
+    };
+
+    oper mkNTable0521: Str -> SubstForm => Str; --%
+    oper mkNTable0521 lexem = 
+      let x = Predef.tk 1 lexem in
+    table { 
+      SF Sg Nom => x + "o";
+      SF Sg Gen => x + "a";
+      SF Sg Dat => x + "u";
+      SF Sg Acc => x + "o";
+      SF Sg Instr => x + "em";
+      SF Sg Loc => x + "ze";
+      SF Sg Voc => x + "o";
+      SF Pl Nom => x + "a";
+      SF Pl Gen => x + "";
+      SF Pl Dat => x + "om";
+      SF Pl Acc => x + "a";
+      SF Pl Instr => x + "ami";
+      SF Pl Loc => x + "ach";
+      SF Pl Voc => x + "a"
+    };
+
+    oper mkNTable0523: Str -> SubstForm => Str; --%
+    oper mkNTable0523 lexem = 
+      let x = Predef.tk 0 lexem in
+    table { 
+      SF Sg Nom => x + "";
+      SF Sg Gen => x + "a";
+      SF Sg Dat => x + "owi";
+      SF Sg Acc => x + "a";
+      SF Sg Instr => x + "em";
+      SF Sg Loc => x + "zie";
+      SF Sg Voc => x + "zie";
+      SF Pl Nom => x + "y";
+      SF Pl Gen => x + "ów";
+      SF Pl Dat => x + "om";
+      SF Pl Acc => x + "y";
+      SF Pl Instr => x + "ami";
+      SF Pl Loc => x + "ach";
+      SF Pl Voc => x + "y"
+    };
+
+    oper mkNTable0524: Str -> SubstForm => Str; --%
+    oper mkNTable0524 lexem = 
+      let x = Predef.tk 3 lexem in
+    table { 
+      SF Sg Nom => x + "iec";
+      SF Sg Gen => x + "ca";
+      SF Sg Dat => x + "cowi";
+      SF Sg Acc => x + "ca";
+      SF Sg Instr => x + "cem";
+      SF Sg Loc => x + "cu";
+      SF Sg Voc => x + "cu";
+      SF Pl Nom => x + "ce";
+      SF Pl Gen => x + "ców";
+      SF Pl Dat => x + "com";
+      SF Pl Acc => x + "ce";
+      SF Pl Instr => x + "cami";
+      SF Pl Loc => x + "cach";
+      SF Pl Voc => x + "ce"
+    };
+
+    oper mkNTable0525: Str -> SubstForm => Str; --%
+    oper mkNTable0525 lexem = 
+      let x = Predef.tk 3 lexem in
+    table { 
+      SF Sg Nom => x + "ier";
+      SF Sg Gen => x + "ru";
+      SF Sg Dat => x + "rowi";
+      SF Sg Acc => x + "ier";
+      SF Sg Instr => x + "rem";
+      SF Sg Loc => x + "rze";
+      SF Sg Voc => x + "rze";
+      SF Pl Nom => x + "ry";
+      SF Pl Gen => x + "rów";
+      SF Pl Dat => x + "rom";
+      SF Pl Acc => x + "ry";
+      SF Pl Instr => x + "rami";
+      SF Pl Loc => x + "rach";
+      SF Pl Voc => x + "ry"
+    };
+
+    oper mkNTable0526: Str -> SubstForm => Str; --%
+    oper mkNTable0526 lexem = 
+      let x = Predef.tk 2 lexem in
+    table { 
+      SF Sg Nom => x + "ój";
+      SF Sg Gen => x + "oju";
+      SF Sg Dat => x + "ojowi";
+      SF Sg Acc => x + "ój";
+      SF Sg Instr => x + "ojem";
+      SF Sg Loc => x + "oju";
+      SF Sg Voc => x + "oju";
+      SF Pl Nom => x + "oje";
+      SF Pl Gen => x + "ojów";
+      SF Pl Dat => x + "ojom";
+      SF Pl Acc => x + "oje";
+      SF Pl Instr => x + "ojami";
+      SF Pl Loc => x + "ojach";
+      SF Pl Voc => x + "oje"
+    };
+
+    oper mkNTable0527: Str -> SubstForm => Str; --%
+    oper mkNTable0527 lexem = 
+      let x = Predef.tk 1 lexem in
+    table { 
+      SF Sg Nom => x + "e";
+      SF Sg Gen => x + "e";
+      SF Sg Dat => x + "u";
+      SF Sg Acc => x + "e";
+      SF Sg Instr => x + "em";
+      SF Sg Loc => x + "e";
+      SF Sg Voc => x + "e";
+      SF Pl Nom => x + "e";
+      SF Pl Gen => x + "e";
+      SF Pl Dat => x + "om";
+      SF Pl Acc => x + "e";
+      SF Pl Instr => x + "e";
+      SF Pl Loc => x + "e";
+      SF Pl Voc => x + "e"
+    };
+
+    oper mkNTable0530: Str -> SubstForm => Str; --%
+    oper mkNTable0530 lexem = 
+      let x = Predef.tk 1 lexem in
+    table { 
+      SF Sg Nom => x + "a";
+      SF Sg Gen => x + "y";
+      SF Sg Dat => x + "ze";
+      SF Sg Acc => x + "ę";
+      SF Sg Instr => x + "ą";
+      SF Sg Loc => x + "ze";
+      SF Sg Voc => x + "o";
+      SF Pl Nom => x + "y";
+      SF Pl Gen => x + "ów";
+      SF Pl Dat => x + "om";
+      SF Pl Acc => x + "y";
+      SF Pl Instr => x + "ami";
+      SF Pl Loc => x + "ach";
+      SF Pl Voc => x + "y"
+    };
+
+    oper mkNTable0531: Str -> SubstForm => Str; --%
+    oper mkNTable0531 lexem = 
+      let x = Predef.tk 2 lexem in
+    table { 
+      SF Sg Nom => x + "oł";
+      SF Sg Gen => x + "oła";
+      SF Sg Dat => x + "ołowi";
+      SF Sg Acc => x + "oła";
+      SF Sg Instr => x + "ołem";
+      SF Sg Loc => x + "ele";
+      SF Sg Voc => x + "ele";
+      SF Pl Nom => x + "oły";
+      SF Pl Gen => x + "ołów";
+      SF Pl Dat => x + "ołom";
+      SF Pl Acc => x + "oły";
+      SF Pl Instr => x + "ołami";
+      SF Pl Loc => x + "ołach";
+      SF Pl Voc => x + "oły"
+    };
+
+    oper mkNTable0532: Str -> SubstForm => Str; --%
+    oper mkNTable0532 lexem = 
+      let x = Predef.tk 3 lexem in
+    table { 
+      SF Sg Nom => x + "sta";
+      SF Sg Gen => x + "sty";
+      SF Sg Dat => x + "ście";
+      SF Sg Acc => x + "stę";
+      SF Sg Instr => x + "stą";
+      SF Sg Loc => x + "ście";
+      SF Sg Voc => x + "sto";
+      SF Pl Nom => x + "sty";
+      SF Pl Gen => x + "stów";
+      SF Pl Dat => x + "stom";
+      SF Pl Acc => x + "sty";
+      SF Pl Instr => x + "stami";
+      SF Pl Loc => x + "stach";
+      SF Pl Voc => x + "sty"
+    };
+
+    oper mkNTable0533: Str -> SubstForm => Str; --%
+    oper mkNTable0533 lexem = 
+      let x = Predef.tk 1 lexem in
+    table { 
+      SF Sg Nom => x + "ł";
+      SF Sg Gen => x + "ła";
+      SF Sg Dat => x + "łowi";
+      SF Sg Acc => x + "ł";
+      SF Sg Instr => x + "łem";
+      SF Sg Loc => x + "le";
+      SF Sg Voc => x + "le";
+      SF Pl Nom => x + "ły";
+      SF Pl Gen => x + "łów";
+      SF Pl Dat => x + "łom";
+      SF Pl Acc => x + "ły";
+      SF Pl Instr => x + "łami";
+      SF Pl Loc => x + "łach";
+      SF Pl Voc => x + "ły"
+    };
+
+    oper mkNTable0534: Str -> SubstForm => Str; --%
+    oper mkNTable0534 lexem = 
+      let x = Predef.tk 4 lexem in
+    table { 
+      SF Sg Nom => x + "ziec";
+      SF Sg Gen => x + "źca";
+      SF Sg Dat => x + "źcowi";
+      SF Sg Acc => x + "ziec";
+      SF Sg Instr => x + "źcem";
+      SF Sg Loc => x + "źcu";
+      SF Sg Voc => x + "źcu";
+      SF Pl Nom => x + "źce";
+      SF Pl Gen => x + "źców";
+      SF Pl Dat => x + "źcom";
+      SF Pl Acc => x + "źce";
+      SF Pl Instr => x + "źcami";
+      SF Pl Loc => x + "źcach";
+      SF Pl Voc => x + "źce"
+    };
+
+    oper mkNTable0536: Str -> SubstForm => Str; --%
+    oper mkNTable0536 lexem = 
+      let x = Predef.tk 3 lexem in
+    table { 
+      SF Sg Nom => x + "ało";
+      SF Sg Gen => x + "ała";
+      SF Sg Dat => x + "ału";
+      SF Sg Acc => x + "ało";
+      SF Sg Instr => x + "ałem";
+      SF Sg Loc => x + "ele";
+      SF Sg Voc => x + "ało";
+      SF Pl Nom => x + "ała";
+      SF Pl Gen => x + "ał";
+      SF Pl Dat => x + "ałom";
+      SF Pl Acc => x + "ała";
+      SF Pl Instr => x + "ałami";
+      SF Pl Loc => x + "ałach";
+      SF Pl Voc => x + "ała"
+    };
+
+    oper mkNTable0537: Str -> SubstForm => Str; --%
+    oper mkNTable0537 lexem = 
+      let x = Predef.tk 2 lexem in
+    table { 
+      SF Sg Nom => x + "ro";
+      SF Sg Gen => x + "ra";
+      SF Sg Dat => x + "ru";
+      SF Sg Acc => x + "ro";
+      SF Sg Instr => x + "rem";
+      SF Sg Loc => x + "rze";
+      SF Sg Voc => x + "ro";
+      SF Pl Nom => x + "ra";
+      SF Pl Gen => x + "er";
+      SF Pl Dat => x + "rom";
+      SF Pl Acc => x + "ra";
+      SF Pl Instr => x + "rami";
+      SF Pl Loc => x + "rach";
+      SF Pl Voc => x + "ra"
+    };
+
+    oper mkNTable0538: Str -> SubstForm => Str; --%
+    oper mkNTable0538 lexem = 
+      let x = Predef.tk 3 lexem in
+    table { 
+      SF Sg Nom => x + "oza";
+      SF Sg Gen => x + "ozy";
+      SF Sg Dat => x + "ozie";
+      SF Sg Acc => x + "ozę";
+      SF Sg Instr => x + "ozą";
+      SF Sg Loc => x + "ozie";
+      SF Sg Voc => x + "ozo";
+      SF Pl Nom => x + "ozy";
+      SF Pl Gen => x + "óz";
+      SF Pl Dat => x + "ozom";
+      SF Pl Acc => x + "ozy";
+      SF Pl Instr => x + "ozami";
+      SF Pl Loc => x + "ozach";
+      SF Pl Voc => x + "ozy"
+    };
+
+    oper mkNTable0539: Str -> SubstForm => Str; --%
+    oper mkNTable0539 lexem = 
+      let x = Predef.tk 0 lexem in
+    table { 
+      SF Sg Nom => x + "";
+      SF Sg Gen => x + "u";
+      SF Sg Dat => x + "owi";
+      SF Sg Acc => x + "";
+      SF Sg Instr => x + "em";
+      SF Sg Loc => x + "u";
+      SF Sg Voc => x + "u";
+      SF Pl Nom => x + "e";
+      SF Pl Gen => x + "y";
+      SF Pl Dat => x + "om";
+      SF Pl Acc => x + "e";
+      SF Pl Instr => x + "ami";
+      SF Pl Loc => x + "ach";
+      SF Pl Voc => x + "e"
+    };
+
+    oper mkNTable0541: Str -> SubstForm => Str; --%
+    oper mkNTable0541 lexem = 
+      let x = Predef.tk 1 lexem in
+    table { 
+      SF Sg Nom => x + "o";
+      SF Sg Gen => x + "a";
+      SF Sg Dat => x + "owi";
+      SF Sg Acc => x + "a";
+      SF Sg Instr => x + "em";
+      SF Sg Loc => x + "u";
+      SF Sg Voc => x + "u";
+      SF Pl Nom => x + "e";
+      SF Pl Gen => x + "ów";
+      SF Pl Dat => x + "om";
+      SF Pl Acc => x + "e";
+      SF Pl Instr => x + "ami";
+      SF Pl Loc => x + "ach";
+      SF Pl Voc => x + "e"
+    };
+
+    oper mkNTable0542: Str -> SubstForm => Str; --%
+    oper mkNTable0542 lexem = 
+      let x = Predef.tk 0 lexem in
+    table { 
+      SF Sg Nom => x + "";
+      SF Sg Gen => x + "u";
+      SF Sg Dat => x + "owi";
+      SF Sg Acc => x + "";
+      SF Sg Instr => x + "em";
+      SF Sg Loc => x + "";
+      SF Sg Voc => x + "";
+      SF Pl Nom => x + "y";
+      SF Pl Gen => x + "ów";
+      SF Pl Dat => x + "om";
+      SF Pl Acc => x + "y";
+      SF Pl Instr => x + "ami";
+      SF Pl Loc => x + "ach";
+      SF Pl Voc => x + "y"
+    };
+
+    oper mkNTable0543: Str -> SubstForm => Str; --%
+    oper mkNTable0543 lexem = 
+      let x = Predef.tk 2 lexem in
+    table { 
+      SF Sg Nom => x + "ło";
+      SF Sg Gen => x + "ła";
+      SF Sg Dat => x + "łu";
+      SF Sg Acc => x + "ło";
+      SF Sg Instr => x + "łem";
+      SF Sg Loc => x + "le";
+      SF Sg Voc => x + "ło";
+      SF Pl Nom => x + "ła";
+      SF Pl Gen => x + "ł";
+      SF Pl Dat => x + "łom";
+      SF Pl Acc => x + "ła";
+      SF Pl Instr => x + "łami";
+      SF Pl Loc => x + "łach";
+      SF Pl Voc => x + "ła"
+    };
+
+    oper mkNTable0544: Str -> SubstForm => Str; --%
+    oper mkNTable0544 lexem = 
+      let x = Predef.tk 3 lexem in
+    table { 
+      SF Sg Nom => x + "iel";
+      SF Sg Gen => x + "lu";
+      SF Sg Dat => x + "lowi";
+      SF Sg Acc => x + "iel";
+      SF Sg Instr => x + "lem";
+      SF Sg Loc => x + "lu";
+      SF Sg Voc => x + "lu";
+      SF Pl Nom => x + "le";
+      SF Pl Gen => x + "lów";
+      SF Pl Dat => x + "lom";
+      SF Pl Acc => x + "le";
+      SF Pl Instr => x + "lami";
+      SF Pl Loc => x + "lach";
+      SF Pl Voc => x + "le"
+    };
+
+    oper mkNTable0545: Str -> SubstForm => Str; --%
+    oper mkNTable0545 lexem = 
+      let x = Predef.tk 3 lexem in
+    table { 
+      SF Sg Nom => x + "ążę";
+      SF Sg Gen => x + "ęcia";
+      SF Sg Dat => x + "ęciu";
+      SF Sg Acc => x + "ęcia";
+      SF Sg Instr => x + "ęciem";
+      SF Sg Loc => x + "ęciu";
+      SF Sg Voc => x + "ążę";
+      SF Pl Nom => x + "ążęta";
+      SF Pl Gen => x + "ążąt";
+      SF Pl Dat => x + "ążętom";
+      SF Pl Acc => x + "ążąt";
+      SF Pl Instr => x + "ążętami";
+      SF Pl Loc => x + "ążętach";
+      SF Pl Voc => x + "ążęta"
+    };
+
+    oper mkNTable0546: Str -> SubstForm => Str; --%
+    oper mkNTable0546 lexem = 
+      let x = Predef.tk 1 lexem in
+    table { 
+      SF Sg Nom => x + "a";
+      SF Sg Gen => x + "y";
+      SF Sg Dat => x + "ie";
+      SF Sg Acc => x + "ę";
+      SF Sg Instr => x + "ą";
+      SF Sg Loc => x + "ie";
+      SF Sg Voc => x + "o";
+      SF Pl Nom => x + "y";
+      SF Pl Gen => x + "ych";
+      SF Pl Dat => x + "ym";
+      SF Pl Acc => x + "y";
+      SF Pl Instr => x + "ymi";
+      SF Pl Loc => x + "ych";
+      SF Pl Voc => x + "y"
+    };
+
+    oper mkNTable0547: Str -> SubstForm => Str; --%
+    oper mkNTable0547 lexem = 
+      let x = Predef.tk 2 lexem in
+    table { 
+      SF Sg Nom => x + "ni";
+      SF Sg Gen => x + "ni";
+      SF Sg Dat => x + "ni";
+      SF Sg Acc => x + "nię";
+      SF Sg Instr => x + "nią";
+      SF Sg Loc => x + "ni";
+      SF Sg Voc => x + "ni";
+      SF Pl Nom => x + "nie";
+      SF Pl Gen => x + "ń";
+      SF Pl Dat => x + "niom";
+      SF Pl Acc => x + "nie";
+      SF Pl Instr => x + "niami";
+      SF Pl Loc => x + "niach";
+      SF Pl Voc => x + "nie"
+    };
+
+    oper mkNTable0548: Str -> SubstForm => Str; --%
+    oper mkNTable0548 lexem = 
+      let x = Predef.tk 2 lexem in
+    table { 
+      SF Sg Nom => x + "er";
+      SF Sg Gen => x + "ra";
+      SF Sg Dat => x + "rowi";
+      SF Sg Acc => x + "ra";
+      SF Sg Instr => x + "rem";
+      SF Sg Loc => x + "rze";
+      SF Sg Voc => x + "rze";
+      SF Pl Nom => x + "ry";
+      SF Pl Gen => x + "rów";
+      SF Pl Dat => x + "rom";
+      SF Pl Acc => x + "ry";
+      SF Pl Instr => x + "rami";
+      SF Pl Loc => x + "rach";
+      SF Pl Voc => x + "ry"
+    };
+
+    oper mkNTable0549: Str -> SubstForm => Str; --%
+    oper mkNTable0549 lexem = 
+      let x = Predef.tk 2 lexem in
+    table { 
+      SF Sg Nom => x + "st";
+      SF Sg Gen => x + "sta";
+      SF Sg Dat => x + "stowi";
+      SF Sg Acc => x + "st";
+      SF Sg Instr => x + "stem";
+      SF Sg Loc => x + "ście";
+      SF Sg Voc => x + "ście";
+      SF Pl Nom => x + "sty";
+      SF Pl Gen => x + "stów";
+      SF Pl Dat => x + "stom";
+      SF Pl Acc => x + "sty";
+      SF Pl Instr => x + "stami";
+      SF Pl Loc => x + "stach";
+      SF Pl Voc => x + "sty"
+    };
+
+    oper mkNTable0550: Str -> SubstForm => Str; --%
+    oper mkNTable0550 lexem = 
+      let x = Predef.tk 0 lexem in
+    table { 
+      SF Sg Nom => x + "";
+      SF Sg Gen => x + "y";
+      SF Sg Dat => x + "y";
+      SF Sg Acc => x + "";
+      SF Sg Instr => x + "ą";
+      SF Sg Loc => x + "y";
+      SF Sg Voc => x + "y";
+      SF Pl Nom => x + "e";
+      SF Pl Gen => x + "y";
+      SF Pl Dat => x + "om";
+      SF Pl Acc => x + "e";
+      SF Pl Instr => x + "ami";
+      SF Pl Loc => x + "ach";
+      SF Pl Voc => x + "e"
+    };
+
+    oper mkNTable0552: Str -> SubstForm => Str; --%
+    oper mkNTable0552 lexem = 
+      let x = Predef.tk 0 lexem in
+    table { 
+      SF Sg Nom => x + "";
+      SF Sg Gen => x + "a";
+      SF Sg Dat => x + "owi";
+      SF Sg Acc => x + "a";
+      SF Sg Instr => x + "em";
+      SF Sg Loc => x + "u";
+      SF Sg Voc => x + "u";
+      SF Pl Nom => x + "e";
+      SF Pl Gen => x + "y";
+      SF Pl Dat => x + "om";
+      SF Pl Acc => x + "e";
+      SF Pl Instr => x + "ami";
+      SF Pl Loc => x + "ach";
+      SF Pl Voc => x + "e"
+    };
+
+    oper mkNTable0553: Str -> SubstForm => Str; --%
+    oper mkNTable0553 lexem = 
+      let x = Predef.tk 1 lexem in
+    table { 
+      SF Sg Nom => x + "e";
+      SF Sg Gen => x + "a";
+      SF Sg Dat => x + "u";
+      SF Sg Acc => x + "e";
+      SF Sg Instr => x + "em";
+      SF Sg Loc => x + "u";
+      SF Sg Voc => x + "e";
+      SF Pl Nom => x + "a";
+      SF Pl Gen => x + "";
+      SF Pl Dat => x + "om";
+      SF Pl Acc => x + "a";
+      SF Pl Instr => x + "ami";
+      SF Pl Loc => x + "ach";
+      SF Pl Voc => x + "a"
+    };
+
+    oper mkNTable0554: Str -> SubstForm => Str; --%
+    oper mkNTable0554 lexem = 
+      let x = Predef.tk 1 lexem in
+    table { 
+      SF Sg Nom => x + "e";
+      SF Sg Gen => x + "ego";
+      SF Sg Dat => x + "emu";
+      SF Sg Acc => x + "e";
+      SF Sg Instr => x + "ym";
+      SF Sg Loc => x + "ym";
+      SF Sg Voc => x + "e";
+      SF Pl Nom => x + "e";
+      SF Pl Gen => x + "ych";
+      SF Pl Dat => x + "ym";
+      SF Pl Acc => x + "e";
+      SF Pl Instr => x + "ymi";
+      SF Pl Loc => x + "ych";
+      SF Pl Voc => x + "e"
+    };
+
+    oper mkNTable0555: Str -> SubstForm => Str; --%
+    oper mkNTable0555 lexem = 
+      let x = Predef.tk 2 lexem in
+    table { 
+      SF Sg Nom => x + "no";
+      SF Sg Gen => x + "na";
+      SF Sg Dat => x + "nu";
+      SF Sg Acc => x + "no";
+      SF Sg Instr => x + "nem";
+      SF Sg Loc => x + "nie";
+      SF Sg Voc => x + "no";
+      SF Pl Nom => x + "na";
+      SF Pl Gen => x + "ien";
+      SF Pl Dat => x + "nom";
+      SF Pl Acc => x + "na";
+      SF Pl Instr => x + "nami";
+      SF Pl Loc => x + "nach";
+      SF Pl Voc => x + "na"
+    };
+
+    oper mkNTable0557: Str -> SubstForm => Str; --%
+    oper mkNTable0557 lexem = 
+      let x = Predef.tk 3 lexem in
+    table { 
+      SF Sg Nom => x + "iel";
+      SF Sg Gen => x + "la";
+      SF Sg Dat => x + "lowi";
+      SF Sg Acc => x + "iel";
+      SF Sg Instr => x + "lem";
+      SF Sg Loc => x + "lu";
+      SF Sg Voc => x + "lu";
+      SF Pl Nom => x + "le";
+      SF Pl Gen => x + "lów";
+      SF Pl Dat => x + "lom";
+      SF Pl Acc => x + "le";
+      SF Pl Instr => x + "lami";
+      SF Pl Loc => x + "lach";
+      SF Pl Voc => x + "le"
+    };
+
+    oper mkNTable0558: Str -> SubstForm => Str; --%
+    oper mkNTable0558 lexem = 
+      let x = Predef.tk 2 lexem in
+    table { 
+      SF Sg Nom => x + "el";
+      SF Sg Gen => x + "lu";
+      SF Sg Dat => x + "lowi";
+      SF Sg Acc => x + "el";
+      SF Sg Instr => x + "lem";
+      SF Sg Loc => x + "lu";
+      SF Sg Voc => x + "lu";
+      SF Pl Nom => x + "le";
+      SF Pl Gen => x + "li";
+      SF Pl Dat => x + "lom";
+      SF Pl Acc => x + "le";
+      SF Pl Instr => x + "lami";
+      SF Pl Loc => x + "lach";
+      SF Pl Voc => x + "le"
+    };
+
+    oper mkNTable0559: Str -> SubstForm => Str; --%
+    oper mkNTable0559 lexem = 
+      let x = Predef.tk 2 lexem in
+    table { 
+      SF Sg Nom => x + "at";
+      SF Sg Gen => x + "atu";
+      SF Sg Dat => x + "atowi";
+      SF Sg Acc => x + "at";
+      SF Sg Instr => x + "atem";
+      SF Sg Loc => x + "ecie";
+      SF Sg Voc => x + "ecie";
+      SF Pl Nom => x + "aty";
+      SF Pl Gen => x + "atów";
+      SF Pl Dat => x + "atom";
+      SF Pl Acc => x + "aty";
+      SF Pl Instr => x + "atami";
+      SF Pl Loc => x + "atach";
+      SF Pl Voc => x + "aty"
+    };
+
+    oper mkNTable0561: Str -> SubstForm => Str; --%
+    oper mkNTable0561 lexem = 
+      let x = Predef.tk 1 lexem in
+    table { 
+      SF Sg Nom => x + "o";
+      SF Sg Gen => x + "a";
+      SF Sg Dat => x + "owi";
+      SF Sg Acc => x + "a";
+      SF Sg Instr => x + "em";
+      SF Sg Loc => x + "ze";
+      SF Sg Voc => x + "o";
+      SF Pl Nom => x + "zy";
+      SF Pl Gen => x + "ów";
+      SF Pl Dat => x + "om";
+      SF Pl Acc => x + "ów";
+      SF Pl Instr => x + "ami";
+      SF Pl Loc => x + "ach";
+      SF Pl Voc => x + "zy"
+    };
+
+    oper mkNTable0562: Str -> SubstForm => Str; --%
+    oper mkNTable0562 lexem = 
+      let x = Predef.tk 1 lexem in
+    table { 
+      SF Sg Nom => x + "o";
+      SF Sg Gen => x + "a";
+      SF Sg Dat => x + "u";
+      SF Sg Acc => x + "o";
+      SF Sg Instr => x + "em";
+      SF Sg Loc => x + "zie";
+      SF Sg Voc => x + "o";
+      SF Pl Nom => x + "a";
+      SF Pl Gen => x + "";
+      SF Pl Dat => x + "om";
+      SF Pl Acc => x + "a";
+      SF Pl Instr => x + "ami";
+      SF Pl Loc => x + "ach";
+      SF Pl Voc => x + "a"
+    };
+
+    oper mkNTable0563: Str -> SubstForm => Str; --%
+    oper mkNTable0563 lexem = 
+      let x = Predef.tk 3 lexem in
+    table { 
+      SF Sg Nom => x + "ień";
+      SF Sg Gen => x + "nia";
+      SF Sg Dat => x + "niowi";
+      SF Sg Acc => x + "ień";
+      SF Sg Instr => x + "niem";
+      SF Sg Loc => x + "niu";
+      SF Sg Voc => x + "niu";
+      SF Pl Nom => x + "nie";
+      SF Pl Gen => x + "ni";
+      SF Pl Dat => x + "niom";
+      SF Pl Acc => x + "nie";
+      SF Pl Instr => x + "niami";
+      SF Pl Loc => x + "niach";
+      SF Pl Voc => x + "nie"
+    };
+
+    oper mkNTable0564: Str -> SubstForm => Str; --%
+    oper mkNTable0564 lexem = 
+      let x = Predef.tk 2 lexem in
+    table { 
+      SF Sg Nom => x + "óz";
+      SF Sg Gen => x + "ozu";
+      SF Sg Dat => x + "ozowi";
+      SF Sg Acc => x + "óz";
+      SF Sg Instr => x + "ozem";
+      SF Sg Loc => x + "ozie";
+      SF Sg Voc => x + "ozie";
+      SF Pl Nom => x + "ozy";
+      SF Pl Gen => x + "ozów";
+      SF Pl Dat => x + "ozom";
+      SF Pl Acc => x + "ozy";
+      SF Pl Instr => x + "ozami";
+      SF Pl Loc => x + "ozach";
+      SF Pl Voc => x + "ozy"
+    };
+
+    oper mkNTable0565: Str -> SubstForm => Str; --%
+    oper mkNTable0565 lexem = 
+      let x = Predef.tk 1 lexem in
+    table { 
+      SF Sg Nom => x + "a";
+      SF Sg Gen => x + "y";
+      SF Sg Dat => x + "y";
+      SF Sg Acc => x + "ę";
+      SF Sg Instr => x + "ą";
+      SF Sg Loc => x + "y";
+      SF Sg Voc => x + "o";
+      SF Pl Nom => x + "y";
+      SF Pl Gen => x + "ów";
+      SF Pl Dat => x + "om";
+      SF Pl Acc => x + "ów";
+      SF Pl Instr => x + "ami";
+      SF Pl Loc => x + "ach";
+      SF Pl Voc => x + "y"
+    };
+
+    oper mkNTable0566: Str -> SubstForm => Str; --%
+    oper mkNTable0566 lexem = 
+      let x = Predef.tk 3 lexem in
+    table { 
+      SF Sg Nom => x + "iel";
+      SF Sg Gen => x + "la";
+      SF Sg Dat => x + "lowi";
+      SF Sg Acc => x + "la";
+      SF Sg Instr => x + "lem";
+      SF Sg Loc => x + "lu";
+      SF Sg Voc => x + "lu";
+      SF Pl Nom => x + "le";
+      SF Pl Gen => x + "li";
+      SF Pl Dat => x + "lom";
+      SF Pl Acc => x + "le";
+      SF Pl Instr => x + "lami";
+      SF Pl Loc => x + "lach";
+      SF Pl Voc => x + "le"
+    };
+
+    oper mkNTable0567: Str -> SubstForm => Str; --%
+    oper mkNTable0567 lexem = 
+      let x = Predef.tk 1 lexem in
+    table { 
+      SF Sg Nom => x + "ć";
+      SF Sg Gen => x + "ci";
+      SF Sg Dat => x + "ci";
+      SF Sg Acc => x + "ć";
+      SF Sg Instr => x + "cią";
+      SF Sg Loc => x + "ci";
+      SF Sg Voc => x + "ci";
+      SF Pl Nom => x + "cie";
+      SF Pl Gen => x + "ci";
+      SF Pl Dat => x + "ciom";
+      SF Pl Acc => x + "cie";
+      SF Pl Instr => x + "ciami";
+      SF Pl Loc => x + "ciach";
+      SF Pl Voc => x + "cie"
+    };
+
+    oper mkNTable0568: Str -> SubstForm => Str; --%
+    oper mkNTable0568 lexem = 
+      let x = Predef.tk 2 lexem in
+    table { 
+      SF Sg Nom => x + "ół";
+      SF Sg Gen => x + "ołu";
+      SF Sg Dat => x + "ołowi";
+      SF Sg Acc => x + "ołu";
+      SF Sg Instr => x + "ołem";
+      SF Sg Loc => x + "ole";
+      SF Sg Voc => x + "ole";
+      SF Pl Nom => x + "oły";
+      SF Pl Gen => x + "ołów";
+      SF Pl Dat => x + "ołom";
+      SF Pl Acc => x + "oły";
+      SF Pl Instr => x + "ołami";
+      SF Pl Loc => x + "ołach";
+      SF Pl Voc => x + "oły"
+    };
+
+    oper mkNTable0570: Str -> SubstForm => Str; --%
+    oper mkNTable0570 lexem = 
+      let x = Predef.tk 0 lexem in
+    table { 
+      SF Sg Nom => x + "";
+      SF Sg Gen => x + "a";
+      SF Sg Dat => x + "owi";
+      SF Sg Acc => x + "";
+      SF Sg Instr => x + "em";
+      SF Sg Loc => x + "u";
+      SF Sg Voc => x + "u";
+      SF Pl Nom => x + "y";
+      SF Pl Gen => x + "ów";
+      SF Pl Dat => x + "om";
+      SF Pl Acc => x + "y";
+      SF Pl Instr => x + "ami";
+      SF Pl Loc => x + "ach";
+      SF Pl Voc => x + "y"
+    };
+
+    oper mkNTable0571: Str -> SubstForm => Str; --%
+    oper mkNTable0571 lexem = 
+      let x = Predef.tk 2 lexem in
+    table { 
+      SF Sg Nom => x + "el";
+      SF Sg Gen => x + "la";
+      SF Sg Dat => x + "lowi";
+      SF Sg Acc => x + "la";
+      SF Sg Instr => x + "lem";
+      SF Sg Loc => x + "lu";
+      SF Sg Voc => x + "lu";
+      SF Pl Nom => x + "le";
+      SF Pl Gen => x + "li";
+      SF Pl Dat => x + "lom";
+      SF Pl Acc => x + "li";
+      SF Pl Instr => x + "lami";
+      SF Pl Loc => x + "lach";
+      SF Pl Voc => x + "le"
+    };
+
+    oper mkNTable0572: Str -> SubstForm => Str; --%
+    oper mkNTable0572 lexem = 
+      let x = Predef.tk 3 lexem in
+    table { 
+      SF Sg Nom => x + "cie";
+      SF Sg Gen => x + "cia";
+      SF Sg Dat => x + "ciu";
+      SF Sg Acc => x + "cie";
+      SF Sg Instr => x + "ciem";
+      SF Sg Loc => x + "ciu";
+      SF Sg Voc => x + "cie";
+      SF Pl Nom => x + "cia";
+      SF Pl Gen => x + "ć";
+      SF Pl Dat => x + "ciom";
+      SF Pl Acc => x + "cia";
+      SF Pl Instr => x + "ciami";
+      SF Pl Loc => x + "ciach";
+      SF Pl Voc => x + "cia"
+    };
+
+    oper mkNTable0573: Str -> SubstForm => Str; --%
+    oper mkNTable0573 lexem = 
+      let x = Predef.tk 1 lexem in
+    table { 
+      SF Sg Nom => x + "ć";
+      SF Sg Gen => x + "cia";
+      SF Sg Dat => x + "ciowi";
+      SF Sg Acc => x + "cia";
+      SF Sg Instr => x + "ciem";
+      SF Sg Loc => x + "ciu";
+      SF Sg Voc => x + "ciu";
+      SF Pl Nom => x + "cie";
+      SF Pl Gen => x + "ciów";
+      SF Pl Dat => x + "ciom";
+      SF Pl Acc => x + "cie";
+      SF Pl Instr => x + "ciami";
+      SF Pl Loc => x + "ciach";
+      SF Pl Voc => x + "cie"
+    };
+
+    oper mkNTable0574: Str -> SubstForm => Str; --%
+    oper mkNTable0574 lexem = 
+      let x = Predef.tk 2 lexem in
+    table { 
+      SF Sg Nom => x + "ez";
+      SF Sg Gen => x + "zu";
+      SF Sg Dat => x + "zowi";
+      SF Sg Acc => x + "ez";
+      SF Sg Instr => x + "zem";
+      SF Sg Loc => x + "zie";
+      SF Sg Voc => x + "zie";
+      SF Pl Nom => x + "zy";
+      SF Pl Gen => x + "zów";
+      SF Pl Dat => x + "zom";
+      SF Pl Acc => x + "zy";
+      SF Pl Instr => x + "zami";
+      SF Pl Loc => x + "zach";
+      SF Pl Voc => x + "zy"
+    };
+
+    oper mkNTable0575: Str -> SubstForm => Str; --%
+    oper mkNTable0575 lexem = 
+      let x = Predef.tk 2 lexem in
+    table { 
+      SF Sg Nom => x + "no";
+      SF Sg Gen => x + "na";
+      SF Sg Dat => x + "nu";
+      SF Sg Acc => x + "no";
+      SF Sg Instr => x + "nem";
+      SF Sg Loc => x + "nie";
+      SF Sg Voc => x + "no";
+      SF Pl Nom => x + "na";
+      SF Pl Gen => x + "en";
+      SF Pl Dat => x + "nom";
+      SF Pl Acc => x + "na";
+      SF Pl Instr => x + "nami";
+      SF Pl Loc => x + "nach";
+      SF Pl Voc => x + "na"
+    };
+
+    oper mkNTable0577: Str -> SubstForm => Str; --%
+    oper mkNTable0577 lexem = 
+      let x = Predef.tk 3 lexem in
+    table { 
+      SF Sg Nom => x + "iec";
+      SF Sg Gen => x + "ca";
+      SF Sg Dat => x + "cowi";
+      SF Sg Acc => x + "ca";
+      SF Sg Instr => x + "cem";
+      SF Sg Loc => x + "cu";
+      SF Sg Voc => x + "cu";
+      SF Pl Nom => x + "cy";
+      SF Pl Gen => x + "ców";
+      SF Pl Dat => x + "com";
+      SF Pl Acc => x + "ców";
+      SF Pl Instr => x + "cami";
+      SF Pl Loc => x + "cach";
+      SF Pl Voc => x + "cy"
+    };
+
+    oper mkNTable0578: Str -> SubstForm => Str; --%
+    oper mkNTable0578 lexem = 
+      let x = Predef.tk 0 lexem in
+    table { 
+      SF Sg Nom => x + "";
+      SF Sg Gen => x + "u";
+      SF Sg Dat => x + "owi";
+      SF Sg Acc => x + "";
+      SF Sg Instr => x + "iem";
+      SF Sg Loc => x + "iu";
+      SF Sg Voc => x + "iu";
+      SF Pl Nom => x + "y";
+      SF Pl Gen => x + "ów";
+      SF Pl Dat => x + "om";
+      SF Pl Acc => x + "y";
+      SF Pl Instr => x + "iami";
+      SF Pl Loc => x + "iach";
+      SF Pl Voc => x + "y"
+    };
+
+    oper mkNTable0579: Str -> SubstForm => Str; --%
+    oper mkNTable0579 lexem = 
+      let x = Predef.tk 2 lexem in
+    table { 
+      SF Sg Nom => x + "ór";
+      SF Sg Gen => x + "ora";
+      SF Sg Dat => x + "orowi";
+      SF Sg Acc => x + "ora";
+      SF Sg Instr => x + "orem";
+      SF Sg Loc => x + "orze";
+      SF Sg Voc => x + "orze";
+      SF Pl Nom => x + "ory";
+      SF Pl Gen => x + "orów";
+      SF Pl Dat => x + "orom";
+      SF Pl Acc => x + "ory";
+      SF Pl Instr => x + "orami";
+      SF Pl Loc => x + "orach";
+      SF Pl Voc => x + "ory"
+    };
+
+    oper mkNTable0580: Str -> SubstForm => Str; --%
+    oper mkNTable0580 lexem = 
+      let x = Predef.tk 1 lexem in
+    table { 
+      SF Sg Nom => x + "a";
+      SF Sg Gen => x + "i";
+      SF Sg Dat => x + "i";
+      SF Sg Acc => x + "ę";
+      SF Sg Instr => x + "ą";
+      SF Sg Loc => x + "i";
+      SF Sg Voc => x + "o";
+      SF Pl Nom => x + "e";
+      SF Pl Gen => x + "ów";
+      SF Pl Dat => x + "om";
+      SF Pl Acc => x + "ów";
+      SF Pl Instr => x + "ami";
+      SF Pl Loc => x + "ach";
+      SF Pl Voc => x + "e"
+    };
+
+    oper mkNTable0581: Str -> SubstForm => Str; --%
+    oper mkNTable0581 lexem = 
+      let x = Predef.tk 2 lexem in
+    table { 
+      SF Sg Nom => x + "ka";
+      SF Sg Gen => x + "ki";
+      SF Sg Dat => x + "ce";
+      SF Sg Acc => x + "kę";
+      SF Sg Instr => x + "ką";
+      SF Sg Loc => x + "ce";
+      SF Sg Voc => x + "ko";
+      SF Pl Nom => x + "cy";
+      SF Pl Gen => x + "ków";
+      SF Pl Dat => x + "kom";
+      SF Pl Acc => x + "ków";
+      SF Pl Instr => x + "kami";
+      SF Pl Loc => x + "kach";
+      SF Pl Voc => x + "cy"
+    };
+
+    oper mkNTable0582: Str -> SubstForm => Str; --%
+    oper mkNTable0582 lexem = 
+      let x = Predef.tk 4 lexem in
+    table { 
+      SF Sg Nom => x + "niec";
+      SF Sg Gen => x + "ńca";
+      SF Sg Dat => x + "ńcowi";
+      SF Sg Acc => x + "ńca";
+      SF Sg Instr => x + "ńcem";
+      SF Sg Loc => x + "ńcu";
+      SF Sg Voc => x + "ńcu";
+      SF Pl Nom => x + "ńce";
+      SF Pl Gen => x + "ńców";
+      SF Pl Dat => x + "ńcom";
+      SF Pl Acc => x + "ńce";
+      SF Pl Instr => x + "ńcami";
+      SF Pl Loc => x + "ńcach";
+      SF Pl Voc => x + "ńce"
+    };
+
+    oper mkNTable0583: Str -> SubstForm => Str; --%
+    oper mkNTable0583 lexem = 
+      let x = Predef.tk 0 lexem in
+    table { 
+      SF Sg Nom => x + "";
+      SF Sg Gen => x + "i";
+      SF Sg Dat => x + "i";
+      SF Sg Acc => x + "";
+      SF Sg Instr => x + "ą";
+      SF Sg Loc => x + "i";
+      SF Sg Voc => x + "i";
+      SF Pl Nom => x + "e";
+      SF Pl Gen => x + "i";
+      SF Pl Dat => x + "om";
+      SF Pl Acc => x + "e";
+      SF Pl Instr => x + "ami";
+      SF Pl Loc => x + "ach";
+      SF Pl Voc => x + "e"
+    };
+
+    oper mkNTable0584: Str -> SubstForm => Str; --%
+    oper mkNTable0584 lexem = 
+      let x = Predef.tk 3 lexem in
+    table { 
+      SF Sg Nom => x + "ole";
+      SF Sg Gen => x + "ola";
+      SF Sg Dat => x + "olu";
+      SF Sg Acc => x + "ole";
+      SF Sg Instr => x + "olem";
+      SF Sg Loc => x + "olu";
+      SF Sg Voc => x + "ole";
+      SF Pl Nom => x + "ola";
+      SF Pl Gen => x + "ól";
+      SF Pl Dat => x + "olom";
+      SF Pl Acc => x + "ola";
+      SF Pl Instr => x + "olami";
+      SF Pl Loc => x + "olach";
+      SF Pl Voc => x + "ola"
+    };
+
+    oper mkNTable0585: Str -> SubstForm => Str; --%
+    oper mkNTable0585 lexem = 
+      let x = Predef.tk 2 lexem in
+    table { 
+      SF Sg Nom => x + "wa";
+      SF Sg Gen => x + "wy";
+      SF Sg Dat => x + "wie";
+      SF Sg Acc => x + "wę";
+      SF Sg Instr => x + "wą";
+      SF Sg Loc => x + "wie";
+      SF Sg Voc => x + "wo";
+      SF Pl Nom => x + "wy";
+      SF Pl Gen => x + "ew";
+      SF Pl Dat => x + "wom";
+      SF Pl Acc => x + "wy";
+      SF Pl Instr => x + "wami";
+      SF Pl Loc => x + "wach";
+      SF Pl Voc => x + "wy"
+    };
+
+    oper mkNTable0587: Str -> SubstForm => Str; --%
+    oper mkNTable0587 lexem = 
+      let x = Predef.tk 2 lexem in
+    table { 
+      SF Sg Nom => x + "en";
+      SF Sg Gen => x + "na";
+      SF Sg Dat => x + "nowi";
+      SF Sg Acc => x + "en";
+      SF Sg Instr => x + "nem";
+      SF Sg Loc => x + "nie";
+      SF Sg Voc => x + "nie";
+      SF Pl Nom => x + "ny";
+      SF Pl Gen => x + "nów";
+      SF Pl Dat => x + "nom";
+      SF Pl Acc => x + "ny";
+      SF Pl Instr => x + "nami";
+      SF Pl Loc => x + "nach";
+      SF Pl Voc => x + "ny"
+    };
+
+    oper mkNTable0588: Str -> SubstForm => Str; --%
+    oper mkNTable0588 lexem = 
+      let x = Predef.tk 4 lexem in
+    table { 
+      SF Sg Nom => x + "ciek";
+      SF Sg Gen => x + "ćka";
+      SF Sg Dat => x + "ćkowi";
+      SF Sg Acc => x + "ćka";
+      SF Sg Instr => x + "ćkiem";
+      SF Sg Loc => x + "ćku";
+      SF Sg Voc => x + "ćku";
+      SF Pl Nom => x + "ćki";
+      SF Pl Gen => x + "ćków";
+      SF Pl Dat => x + "ćkom";
+      SF Pl Acc => x + "ćki";
+      SF Pl Instr => x + "ćkami";
+      SF Pl Loc => x + "ćkach";
+      SF Pl Voc => x + "ćki"
+    };
+
+    oper mkNTable0589: Str -> SubstForm => Str; --%
+    oper mkNTable0589 lexem = 
+      let x = Predef.tk 0 lexem in
+    table { 
+      SF Sg Nom => x + "";
+      SF Sg Gen => x + "ego";
+      SF Sg Dat => x + "emu";
+      SF Sg Acc => x + "";
+      SF Sg Instr => x + "m";
+      SF Sg Loc => x + "m";
+      SF Sg Voc => x + "";
+      SF Pl Nom => x + "e";
+      SF Pl Gen => x + "ch";
+      SF Pl Dat => x + "m";
+      SF Pl Acc => x + "e";
+      SF Pl Instr => x + "mi";
+      SF Pl Loc => x + "ch";
+      SF Pl Voc => x + "e"
+    };
+
+    oper mkNTable0590: Str -> SubstForm => Str; --%
+    oper mkNTable0590 lexem = 
+      let x = Predef.tk 4 lexem in
+    table { 
+      SF Sg Nom => x + "ziec";
+      SF Sg Gen => x + "źca";
+      SF Sg Dat => x + "źcowi";
+      SF Sg Acc => x + "źca";
+      SF Sg Instr => x + "źcem";
+      SF Sg Loc => x + "źcu";
+      SF Sg Voc => x + "źcu";
+      SF Pl Nom => x + "źce";
+      SF Pl Gen => x + "źców";
+      SF Pl Dat => x + "źcom";
+      SF Pl Acc => x + "źce";
+      SF Pl Instr => x + "źcami";
+      SF Pl Loc => x + "źcach";
+      SF Pl Voc => x + "źce"
+    };
+
+    oper mkNTable0591: Str -> SubstForm => Str; --%
+    oper mkNTable0591 lexem = 
+      let x = Predef.tk 2 lexem in
+    table { 
+      SF Sg Nom => x + "ec";
+      SF Sg Gen => x + "ca";
+      SF Sg Dat => x + "cowi";
+      SF Sg Acc => x + "ca";
+      SF Sg Instr => x + "cem";
+      SF Sg Loc => x + "cu";
+      SF Sg Voc => x + "cu";
+      SF Pl Nom => x + "cy";
+      SF Pl Gen => x + "ców";
+      SF Pl Dat => x + "com";
+      SF Pl Acc => x + "ców";
+      SF Pl Instr => x + "cami";
+      SF Pl Loc => x + "cach";
+      SF Pl Voc => x + "cy"
+    };
+
+    oper mkNTable0592: Str -> SubstForm => Str; --%
+    oper mkNTable0592 lexem = 
+      let x = Predef.tk 1 lexem in
+    table { 
+      SF Sg Nom => x + "ń";
+      SF Sg Gen => x + "nia";
+      SF Sg Dat => x + "niowi";
+      SF Sg Acc => x + "nia";
+      SF Sg Instr => x + "niem";
+      SF Sg Loc => x + "niu";
+      SF Sg Voc => x + "niu";
+      SF Pl Nom => x + "nie";
+      SF Pl Gen => x + "ni";
+      SF Pl Dat => x + "niom";
+      SF Pl Acc => x + "nie";
+      SF Pl Instr => x + "niami";
+      SF Pl Loc => x + "niach";
+      SF Pl Voc => x + "nie"
+    };
+
+    oper mkNTable0593: Str -> SubstForm => Str; --%
+    oper mkNTable0593 lexem = 
+      let x = Predef.tk 3 lexem in
+    table { 
+      SF Sg Nom => x + "iel";
+      SF Sg Gen => x + "la";
+      SF Sg Dat => x + "lowi";
+      SF Sg Acc => x + "iel";
+      SF Sg Instr => x + "lem";
+      SF Sg Loc => x + "lu";
+      SF Sg Voc => x + "lu";
+      SF Pl Nom => x + "le";
+      SF Pl Gen => x + "li";
+      SF Pl Dat => x + "lom";
+      SF Pl Acc => x + "le";
+      SF Pl Instr => x + "lami";
+      SF Pl Loc => x + "lach";
+      SF Pl Voc => x + "le"
+    };
+
+    oper mkNTable0594: Str -> SubstForm => Str; --%
+    oper mkNTable0594 lexem = 
+      let x = Predef.tk 3 lexem in
+    table { 
+      SF Sg Nom => x + "ora";
+      SF Sg Gen => x + "ory";
+      SF Sg Dat => x + "orze";
+      SF Sg Acc => x + "orę";
+      SF Sg Instr => x + "orą";
+      SF Sg Loc => x + "orze";
+      SF Sg Voc => x + "oro";
+      SF Pl Nom => x + "ory";
+      SF Pl Gen => x + "ór";
+      SF Pl Dat => x + "orom";
+      SF Pl Acc => x + "ory";
+      SF Pl Instr => x + "orami";
+      SF Pl Loc => x + "orach";
+      SF Pl Voc => x + "ory"
+    };
+
+    oper mkNTable0597: Str -> SubstForm => Str; --%
+    oper mkNTable0597 lexem = 
+      let x = Predef.tk 2 lexem in
+    table { 
+      SF Sg Nom => x + "ha";
+      SF Sg Gen => x + "hy";
+      SF Sg Dat => x + "że";
+      SF Sg Acc => x + "hę";
+      SF Sg Instr => x + "hą";
+      SF Sg Loc => x + "że";
+      SF Sg Voc => x + "ho";
+      SF Pl Nom => x + "hy";
+      SF Pl Gen => x + "h";
+      SF Pl Dat => x + "hom";
+      SF Pl Acc => x + "hy";
+      SF Pl Instr => x + "hami";
+      SF Pl Loc => x + "hach";
+      SF Pl Voc => x + "hy"
+    };
+
+    oper mkNTable0599: Str -> SubstForm => Str; --%
+    oper mkNTable0599 lexem = 
+      let x = Predef.tk 1 lexem in
+    table { 
+      SF Sg Nom => x + "t";
+      SF Sg Gen => x + "ta";
+      SF Sg Dat => x + "tu";
+      SF Sg Acc => x + "ta";
+      SF Sg Instr => x + "tem";
+      SF Sg Loc => x + "cie";
+      SF Sg Voc => x + "cie";
+      SF Pl Nom => x + "cia";
+      SF Pl Gen => x + "ci";
+      SF Pl Dat => x + "ciom";
+      SF Pl Acc => x + "ci";
+      SF Pl Instr => x + "ćmi";
+      SF Pl Loc => x + "ciach";
+      SF Pl Voc => x + "cia"
+    };
+
+    oper mkNTable0600: Str -> SubstForm => Str; --%
+    oper mkNTable0600 lexem = 
+      let x = Predef.tk 2 lexem in
+    table { 
+      SF Sg Nom => x + "ew";
+      SF Sg Gen => x + "wi";
+      SF Sg Dat => x + "wi";
+      SF Sg Acc => x + "ew";
+      SF Sg Instr => x + "wią";
+      SF Sg Loc => x + "wi";
+      SF Sg Voc => x + "wi";
+      SF Pl Nom => x + "wi";
+      SF Pl Gen => x + "wi";
+      SF Pl Dat => x + "wiom";
+      SF Pl Acc => x + "wi";
+      SF Pl Instr => x + "wiami";
+      SF Pl Loc => x + "wiach";
+      SF Pl Voc => x + "wi"
+    };
+
+    oper mkNTable0601: Str -> SubstForm => Str; --%
+    oper mkNTable0601 lexem = 
+      let x = Predef.tk 1 lexem in
+    table { 
+      SF Sg Nom => x + "ł";
+      SF Sg Gen => x + "ła";
+      SF Sg Dat => x + "łowi";
+      SF Sg Acc => x + "ła";
+      SF Sg Instr => x + "łem";
+      SF Sg Loc => x + "le";
+      SF Sg Voc => x + "le";
+      SF Pl Nom => x + "ły";
+      SF Pl Gen => x + "łów";
+      SF Pl Dat => x + "łom";
+      SF Pl Acc => x + "ły";
+      SF Pl Instr => x + "łami";
+      SF Pl Loc => x + "łach";
+      SF Pl Voc => x + "ły"
+    };
+
+    oper mkNTable0602: Str -> SubstForm => Str; --%
+    oper mkNTable0602 lexem = 
+      let x = Predef.tk 3 lexem in
+    table { 
+      SF Sg Nom => x + "zda";
+      SF Sg Gen => x + "zdy";
+      SF Sg Dat => x + "ździe";
+      SF Sg Acc => x + "zdę";
+      SF Sg Instr => x + "zdą";
+      SF Sg Loc => x + "ździe";
+      SF Sg Voc => x + "zdo";
+      SF Pl Nom => x + "zdy";
+      SF Pl Gen => x + "zd";
+      SF Pl Dat => x + "zdom";
+      SF Pl Acc => x + "zdy";
+      SF Pl Instr => x + "zdami";
+      SF Pl Loc => x + "zdach";
+      SF Pl Voc => x + "zdy"
+    };
+
+    oper mkNTable0603: Str -> SubstForm => Str; --%
+    oper mkNTable0603 lexem = 
+      let x = Predef.tk 1 lexem in
+    table { 
+      SF Sg Nom => x + "ś";
+      SF Sg Gen => x + "sia";
+      SF Sg Dat => x + "siowi";
+      SF Sg Acc => x + "sia";
+      SF Sg Instr => x + "siem";
+      SF Sg Loc => x + "siu";
+      SF Sg Voc => x + "siu";
+      SF Pl Nom => x + "sie";
+      SF Pl Gen => x + "siów";
+      SF Pl Dat => x + "siom";
+      SF Pl Acc => x + "sie";
+      SF Pl Instr => x + "siami";
+      SF Pl Loc => x + "siach";
+      SF Pl Voc => x + "sie"
+    };
+
+    oper mkNTable0604: Str -> SubstForm => Str; --%
+    oper mkNTable0604 lexem = 
+      let x = Predef.tk 1 lexem in
+    table { 
+      SF Sg Nom => x + "ę";
+      SF Sg Gen => x + "enia";
+      SF Sg Dat => x + "eniu";
+      SF Sg Acc => x + "ę";
+      SF Sg Instr => x + "eniem";
+      SF Sg Loc => x + "eniu";
+      SF Sg Voc => x + "ę";
+      SF Pl Nom => x + "ona";
+      SF Pl Gen => x + "on";
+      SF Pl Dat => x + "onom";
+      SF Pl Acc => x + "ona";
+      SF Pl Instr => x + "onami";
+      SF Pl Loc => x + "onach";
+      SF Pl Voc => x + "ona"
+    };
+
+    oper mkNTable0605: Str -> SubstForm => Str; --%
+    oper mkNTable0605 lexem = 
+      let x = Predef.tk 1 lexem in
+    table { 
+      SF Sg Nom => x + "o";
+      SF Sg Gen => x + "a";
+      SF Sg Dat => x + "u";
+      SF Sg Acc => x + "o";
+      SF Sg Instr => x + "em";
+      SF Sg Loc => x + "u";
+      SF Sg Voc => x + "o";
+      SF Pl Nom => x + "a";
+      SF Pl Gen => x + "";
+      SF Pl Dat => x + "om";
+      SF Pl Acc => x + "a";
+      SF Pl Instr => x + "ami";
+      SF Pl Loc => x + "ach";
+      SF Pl Voc => x + "a"
+    };
+
+    oper mkNTable0606: Str -> SubstForm => Str; --%
+    oper mkNTable0606 lexem = 
+      let x = Predef.tk 2 lexem in
+    table { 
+      SF Sg Nom => x + "óg";
+      SF Sg Gen => x + "oga";
+      SF Sg Dat => x + "ogowi";
+      SF Sg Acc => x + "oga";
+      SF Sg Instr => x + "ogiem";
+      SF Sg Loc => x + "ogu";
+      SF Sg Voc => x + "ogu";
+      SF Pl Nom => x + "ogi";
+      SF Pl Gen => x + "ogów";
+      SF Pl Dat => x + "ogom";
+      SF Pl Acc => x + "ogi";
+      SF Pl Instr => x + "ogami";
+      SF Pl Loc => x + "ogach";
+      SF Pl Voc => x + "ogi"
+    };
+
+    oper mkNTable0607: Str -> SubstForm => Str; --%
+    oper mkNTable0607 lexem = 
+      let x = Predef.tk 4 lexem in
+    table { 
+      SF Sg Nom => x + "siec";
+      SF Sg Gen => x + "śca";
+      SF Sg Dat => x + "ścowi";
+      SF Sg Acc => x + "siec";
+      SF Sg Instr => x + "ścem";
+      SF Sg Loc => x + "ścu";
+      SF Sg Voc => x + "ścu";
+      SF Pl Nom => x + "śce";
+      SF Pl Gen => x + "śców";
+      SF Pl Dat => x + "ścom";
+      SF Pl Acc => x + "śce";
+      SF Pl Instr => x + "ścami";
+      SF Pl Loc => x + "ścach";
+      SF Pl Voc => x + "śce"
+    };
+
+    oper mkNTable0608: Str -> SubstForm => Str; --%
+    oper mkNTable0608 lexem = 
+      let x = Predef.tk 1 lexem in
+    table { 
+      SF Sg Nom => x + "o";
+      SF Sg Gen => x + "a";
+      SF Sg Dat => x + "owi";
+      SF Sg Acc => x + "o";
+      SF Sg Instr => x + "em";
+      SF Sg Loc => x + "u";
+      SF Sg Voc => x + "u";
+      SF Pl Nom => x + "e";
+      SF Pl Gen => x + "ów";
+      SF Pl Dat => x + "om";
+      SF Pl Acc => x + "e";
+      SF Pl Instr => x + "ami";
+      SF Pl Loc => x + "ach";
+      SF Pl Voc => x + "e"
+    };
+
+    oper mkNTable0609: Str -> SubstForm => Str; --%
+    oper mkNTable0609 lexem = 
+      let x = Predef.tk 2 lexem in
+    table { 
+      SF Sg Nom => x + "ób";
+      SF Sg Gen => x + "oba";
+      SF Sg Dat => x + "obowi";
+      SF Sg Acc => x + "oba";
+      SF Sg Instr => x + "obem";
+      SF Sg Loc => x + "obie";
+      SF Sg Voc => x + "obie";
+      SF Pl Nom => x + "oby";
+      SF Pl Gen => x + "obów";
+      SF Pl Dat => x + "obom";
+      SF Pl Acc => x + "oby";
+      SF Pl Instr => x + "obami";
+      SF Pl Loc => x + "obach";
+      SF Pl Voc => x + "oby"
+    };
+
+    oper mkNTable0610: Str -> SubstForm => Str; --%
+    oper mkNTable0610 lexem = 
+      let x = Predef.tk 2 lexem in
+    table { 
+      SF Sg Nom => x + "ód";
+      SF Sg Gen => x + "odu";
+      SF Sg Dat => x + "odowi";
+      SF Sg Acc => x + "ód";
+      SF Sg Instr => x + "odem";
+      SF Sg Loc => x + "odzie";
+      SF Sg Voc => x + "odzie";
+      SF Pl Nom => x + "ody";
+      SF Pl Gen => x + "odów";
+      SF Pl Dat => x + "odom";
+      SF Pl Acc => x + "ody";
+      SF Pl Instr => x + "odami";
+      SF Pl Loc => x + "odach";
+      SF Pl Voc => x + "ody"
+    };
+
+    oper mkNTable0611: Str -> SubstForm => Str; --%
+    oper mkNTable0611 lexem = 
+      let x = Predef.tk 1 lexem in
+    table { 
+      SF Sg Nom => x + "o";
+      SF Sg Gen => x + "a";
+      SF Sg Dat => x + "u";
+      SF Sg Acc => x + "o";
+      SF Sg Instr => x + "iem";
+      SF Sg Loc => x + "u";
+      SF Sg Voc => x + "o";
+      SF Pl Nom => x + "a";
+      SF Pl Gen => x + "ów";
+      SF Pl Dat => x + "om";
+      SF Pl Acc => x + "a";
+      SF Pl Instr => x + "ami";
+      SF Pl Loc => x + "ach";
+      SF Pl Voc => x + "a"
+    };
+
+    oper mkNTable0612: Str -> SubstForm => Str; --%
+    oper mkNTable0612 lexem = 
+      let x = Predef.tk 1 lexem in
+    table { 
+      SF Sg Nom => x + "ń";
+      SF Sg Gen => x + "niu";
+      SF Sg Dat => x + "niowi";
+      SF Sg Acc => x + "ń";
+      SF Sg Instr => x + "niem";
+      SF Sg Loc => x + "niu";
+      SF Sg Voc => x + "niu";
+      SF Pl Nom => x + "nie";
+      SF Pl Gen => x + "niów";
+      SF Pl Dat => x + "niom";
+      SF Pl Acc => x + "nie";
+      SF Pl Instr => x + "niami";
+      SF Pl Loc => x + "niach";
+      SF Pl Voc => x + "nie"
+    };
+
+    oper mkNTable0614: Str -> SubstForm => Str; --%
+    oper mkNTable0614 lexem = 
+      let x = Predef.tk 1 lexem in
+    table { 
+      SF Sg Nom => x + "a";
+      SF Sg Gen => x + "ego";
+      SF Sg Dat => x + "emu";
+      SF Sg Acc => x + "ę";
+      SF Sg Instr => x + "ą";
+      SF Sg Loc => x + "m";
+      SF Sg Voc => x + "o";
+      SF Pl Nom => x + "owie";
+      SF Pl Gen => x + "ów";
+      SF Pl Dat => x + "om";
+      SF Pl Acc => x + "ów";
+      SF Pl Instr => x + "ami";
+      SF Pl Loc => x + "ach";
+      SF Pl Voc => x + "owie"
+    };
+
+    oper mkNTable0615: Str -> SubstForm => Str; --%
+    oper mkNTable0615 lexem = 
+      let x = Predef.tk 2 lexem in
+    table { 
+      SF Sg Nom => x + "na";
+      SF Sg Gen => x + "ny";
+      SF Sg Dat => x + "nie";
+      SF Sg Acc => x + "nę";
+      SF Sg Instr => x + "ną";
+      SF Sg Loc => x + "nie";
+      SF Sg Voc => x + "no";
+      SF Pl Nom => x + "ny";
+      SF Pl Gen => x + "en";
+      SF Pl Dat => x + "nom";
+      SF Pl Acc => x + "ny";
+      SF Pl Instr => x + "nami";
+      SF Pl Loc => x + "nach";
+      SF Pl Voc => x + "ny"
+    };
+
+    oper mkNTable0618: Str -> SubstForm => Str; --%
+    oper mkNTable0618 lexem = 
+      let x = Predef.tk 1 lexem in
+    table { 
+      SF Sg Nom => x + "o";
+      SF Sg Gen => x + "a";
+      SF Sg Dat => x + "u";
+      SF Sg Acc => x + "a";
+      SF Sg Instr => x + "iem";
+      SF Sg Loc => x + "u";
+      SF Sg Voc => x + "o";
+      SF Pl Nom => x + "a";
+      SF Pl Gen => x + "ów";
+      SF Pl Dat => x + "om";
+      SF Pl Acc => x + "a";
+      SF Pl Instr => x + "ami";
+      SF Pl Loc => x + "ach";
+      SF Pl Voc => x + "a"
+    };
+
+    oper mkNTable0619: Str -> SubstForm => Str; --%
+    oper mkNTable0619 lexem = 
+      let x = Predef.tk 2 lexem in
+    table { 
+      SF Sg Nom => x + "el";
+      SF Sg Gen => x + "la";
+      SF Sg Dat => x + "lowi";
+      SF Sg Acc => x + "la";
+      SF Sg Instr => x + "lem";
+      SF Sg Loc => x + "lu";
+      SF Sg Voc => x + "lu";
+      SF Pl Nom => x + "le";
+      SF Pl Gen => x + "li";
+      SF Pl Dat => x + "lom";
+      SF Pl Acc => x + "le";
+      SF Pl Instr => x + "lami";
+      SF Pl Loc => x + "lach";
+      SF Pl Voc => x + "le"
+    };
+
+    oper mkNTable0620: Str -> SubstForm => Str; --%
+    oper mkNTable0620 lexem = 
+      let x = Predef.tk 3 lexem in
+    table { 
+      SF Sg Nom => x + "zen";
+      SF Sg Gen => x + "zna";
+      SF Sg Dat => x + "znowi";
+      SF Sg Acc => x + "zna";
+      SF Sg Instr => x + "znem";
+      SF Sg Loc => x + "źnie";
+      SF Sg Voc => x + "źnie";
+      SF Pl Nom => x + "źni";
+      SF Pl Gen => x + "znów";
+      SF Pl Dat => x + "znom";
+      SF Pl Acc => x + "znów";
+      SF Pl Instr => x + "znami";
+      SF Pl Loc => x + "znach";
+      SF Pl Voc => x + "źni"
+    };
+
+    oper mkNTable0621: Str -> SubstForm => Str; --%
+    oper mkNTable0621 lexem = 
+      let x = Predef.tk 2 lexem in
+    table { 
+      SF Sg Nom => x + "ąd";
+      SF Sg Gen => x + "ędu";
+      SF Sg Dat => x + "ędowi";
+      SF Sg Acc => x + "ąd";
+      SF Sg Instr => x + "ędem";
+      SF Sg Loc => x + "ędzie";
+      SF Sg Voc => x + "ędzie";
+      SF Pl Nom => x + "ędy";
+      SF Pl Gen => x + "ędów";
+      SF Pl Dat => x + "ędom";
+      SF Pl Acc => x + "ędy";
+      SF Pl Instr => x + "ędami";
+      SF Pl Loc => x + "ędach";
+      SF Pl Voc => x + "ędy"
+    };
+
+    oper mkNTable0622: Str -> SubstForm => Str; --%
+    oper mkNTable0622 lexem = 
+      let x = Predef.tk 2 lexem in
+    table { 
+      SF Sg Nom => x + "en";
+      SF Sg Gen => x + "na";
+      SF Sg Dat => x + "nowi";
+      SF Sg Acc => x + "na";
+      SF Sg Instr => x + "nem";
+      SF Sg Loc => x + "nie";
+      SF Sg Voc => x + "nie";
+      SF Pl Nom => x + "ny";
+      SF Pl Gen => x + "nów";
+      SF Pl Dat => x + "nom";
+      SF Pl Acc => x + "ny";
+      SF Pl Instr => x + "nami";
+      SF Pl Loc => x + "nach";
+      SF Pl Voc => x + "ny"
+    };
+
+    oper mkNTable0624: Str -> SubstForm => Str; --%
+    oper mkNTable0624 lexem = 
+      let x = Predef.tk 2 lexem in
+    table { 
+      SF Sg Nom => x + "ób";
+      SF Sg Gen => x + "obu";
+      SF Sg Dat => x + "obowi";
+      SF Sg Acc => x + "ób";
+      SF Sg Instr => x + "obem";
+      SF Sg Loc => x + "obie";
+      SF Sg Voc => x + "obie";
+      SF Pl Nom => x + "oby";
+      SF Pl Gen => x + "obów";
+      SF Pl Dat => x + "obom";
+      SF Pl Acc => x + "oby";
+      SF Pl Instr => x + "obami";
+      SF Pl Loc => x + "obach";
+      SF Pl Voc => x + "oby"
+    };
+
+    oper mkNTable0625: Str -> SubstForm => Str; --%
+    oper mkNTable0625 lexem = 
+      let x = Predef.tk 3 lexem in
+    table { 
+      SF Sg Nom => x + "óbr";
+      SF Sg Gen => x + "obra";
+      SF Sg Dat => x + "obrowi";
+      SF Sg Acc => x + "obra";
+      SF Sg Instr => x + "obrem";
+      SF Sg Loc => x + "obrze";
+      SF Sg Voc => x + "obrze";
+      SF Pl Nom => x + "obry";
+      SF Pl Gen => x + "obrów";
+      SF Pl Dat => x + "obrom";
+      SF Pl Acc => x + "obry";
+      SF Pl Instr => x + "obrami";
+      SF Pl Loc => x + "obrach";
+      SF Pl Voc => x + "obry"
+    };
+
+    oper mkNTable0626: Str -> SubstForm => Str; --%
+    oper mkNTable0626 lexem = 
+      let x = Predef.tk 2 lexem in
+    table { 
+      SF Sg Nom => x + "óg";
+      SF Sg Gen => x + "oga";
+      SF Sg Dat => x + "ogu";
+      SF Sg Acc => x + "oga";
+      SF Sg Instr => x + "ogiem";
+      SF Sg Loc => x + "ogu";
+      SF Sg Voc => x + "oże";
+      SF Pl Nom => x + "ogowie";
+      SF Pl Gen => x + "ogów";
+      SF Pl Dat => x + "ogom";
+      SF Pl Acc => x + "ogów";
+      SF Pl Instr => x + "ogami";
+      SF Pl Loc => x + "ogach";
+      SF Pl Voc => x + "ogowie"
+    };
+
+    oper mkNTable0628: Str -> SubstForm => Str; --%
+    oper mkNTable0628 lexem = 
+      let x = Predef.tk 1 lexem in
+    table { 
+      SF Sg Nom => x + "c";
+      SF Sg Gen => x + "ca";
+      SF Sg Dat => x + "cowi";
+      SF Sg Acc => x + "ca";
+      SF Sg Instr => x + "kiem";
+      SF Sg Loc => x + "cu";
+      SF Sg Voc => x + "cu";
+      SF Pl Nom => x + "ki";
+      SF Pl Gen => x + "ców";
+      SF Pl Dat => x + "com";
+      SF Pl Acc => x + "ki";
+      SF Pl Instr => x + "cami";
+      SF Pl Loc => x + "cach";
+      SF Pl Voc => x + "ki"
+    };
+
+    oper mkNTable0629: Str -> SubstForm => Str; --%
+    oper mkNTable0629 lexem = 
+      let x = Predef.tk 3 lexem in
+    table { 
+      SF Sg Nom => x + "iel";
+      SF Sg Gen => x + "la";
+      SF Sg Dat => x + "lowi";
+      SF Sg Acc => x + "la";
+      SF Sg Instr => x + "lem";
+      SF Sg Loc => x + "lu";
+      SF Sg Voc => x + "lu";
+      SF Pl Nom => x + "le";
+      SF Pl Gen => x + "lów";
+      SF Pl Dat => x + "lom";
+      SF Pl Acc => x + "le";
+      SF Pl Instr => x + "lami";
+      SF Pl Loc => x + "lach";
+      SF Pl Voc => x + "le"
+    };
+
+    oper mkNTable0630: Str -> SubstForm => Str; --%
+    oper mkNTable0630 lexem = 
+      let x = Predef.tk 1 lexem in
+    table { 
+      SF Sg Nom => x + "a";
+      SF Sg Gen => x + "y";
+      SF Sg Dat => x + "ze";
+      SF Sg Acc => x + "ę";
+      SF Sg Instr => x + "ą";
+      SF Sg Loc => x + "ze";
+      SF Sg Voc => x + "o";
+      SF Pl Nom => x + "y";
+      SF Pl Gen => x + "a";
+      SF Pl Dat => x + "om";
+      SF Pl Acc => x + "y";
+      SF Pl Instr => x + "ami";
+      SF Pl Loc => x + "ach";
+      SF Pl Voc => x + "y"
+    };
+
+    oper mkNTable0631: Str -> SubstForm => Str; --%
+    oper mkNTable0631 lexem = 
+      let x = Predef.tk 2 lexem in
+    table { 
+      SF Sg Nom => x + "ca";
+      SF Sg Gen => x + "ki";
+      SF Sg Dat => x + "ce";
+      SF Sg Acc => x + "cę";
+      SF Sg Instr => x + "cą";
+      SF Sg Loc => x + "ce";
+      SF Sg Voc => x + "co";
+      SF Pl Nom => x + "ki";
+      SF Pl Gen => x + "c";
+      SF Pl Dat => x + "com";
+      SF Pl Acc => x + "ki";
+      SF Pl Instr => x + "cami";
+      SF Pl Loc => x + "cach";
+      SF Pl Voc => x + "ki"
+    };
+
+    oper mkNTable0632: Str -> SubstForm => Str; --%
+    oper mkNTable0632 lexem = 
+      let x = Predef.tk 2 lexem in
+    table { 
+      SF Sg Nom => x + "ła";
+      SF Sg Gen => x + "ły";
+      SF Sg Dat => x + "le";
+      SF Sg Acc => x + "łę";
+      SF Sg Instr => x + "łą";
+      SF Sg Loc => x + "le";
+      SF Sg Voc => x + "ło";
+      SF Pl Nom => x + "ły";
+      SF Pl Gen => x + "ieł";
+      SF Pl Dat => x + "łom";
+      SF Pl Acc => x + "ły";
+      SF Pl Instr => x + "łami";
+      SF Pl Loc => x + "łach";
+      SF Pl Voc => x + "ły"
+    };
+
+    oper mkNTable0633: Str -> SubstForm => Str; --%
+    oper mkNTable0633 lexem = 
+      let x = Predef.tk 1 lexem in
+    table { 
+      SF Sg Nom => x + "ź";
+      SF Sg Gen => x + "zia";
+      SF Sg Dat => x + "ziowi";
+      SF Sg Acc => x + "ź";
+      SF Sg Instr => x + "ziem";
+      SF Sg Loc => x + "ziu";
+      SF Sg Voc => x + "ziu";
+      SF Pl Nom => x + "zie";
+      SF Pl Gen => x + "zi";
+      SF Pl Dat => x + "ziom";
+      SF Pl Acc => x + "zie";
+      SF Pl Instr => x + "ziami";
+      SF Pl Loc => x + "ziach";
+      SF Pl Voc => x + "zie"
+    };
+
+    oper mkNTable0634: Str -> SubstForm => Str; --%
+    oper mkNTable0634 lexem = 
+      let x = Predef.tk 1 lexem in
+    table { 
+      SF Sg Nom => x + "ś";
+      SF Sg Gen => x + "sia";
+      SF Sg Dat => x + "siowi";
+      SF Sg Acc => x + "ś";
+      SF Sg Instr => x + "siem";
+      SF Sg Loc => x + "siu";
+      SF Sg Voc => x + "siu";
+      SF Pl Nom => x + "sie";
+      SF Pl Gen => x + "siów";
+      SF Pl Dat => x + "siom";
+      SF Pl Acc => x + "sie";
+      SF Pl Instr => x + "siami";
+      SF Pl Loc => x + "siach";
+      SF Pl Voc => x + "sie"
+    };
+
+    oper mkNTable0635: Str -> SubstForm => Str; --%
+    oper mkNTable0635 lexem = 
+      let x = Predef.tk 1 lexem in
+    table { 
+      SF Sg Nom => x + "y";
+      SF Sg Gen => x + "ego";
+      SF Sg Dat => x + "emu";
+      SF Sg Acc => x + "ego";
+      SF Sg Instr => x + "ym";
+      SF Sg Loc => x + "ym";
+      SF Sg Voc => x + "y";
+      SF Pl Nom => x + "e";
+      SF Pl Gen => x + "ych";
+      SF Pl Dat => x + "ym";
+      SF Pl Acc => x + "e";
+      SF Pl Instr => x + "ymi";
+      SF Pl Loc => x + "ych";
+      SF Pl Voc => x + "e"
+    };
+
+    oper mkNTable0636: Str -> SubstForm => Str; --%
+    oper mkNTable0636 lexem = 
+      let x = Predef.tk 3 lexem in
+    table { 
+      SF Sg Nom => x + "oba";
+      SF Sg Gen => x + "oby";
+      SF Sg Dat => x + "obie";
+      SF Sg Acc => x + "obę";
+      SF Sg Instr => x + "obą";
+      SF Sg Loc => x + "obie";
+      SF Sg Voc => x + "obo";
+      SF Pl Nom => x + "oby";
+      SF Pl Gen => x + "ób";
+      SF Pl Dat => x + "obom";
+      SF Pl Acc => x + "oby";
+      SF Pl Instr => x + "obami";
+      SF Pl Loc => x + "obach";
+      SF Pl Voc => x + "oby"
+    };
+
+    oper mkNTable0638: Str -> SubstForm => Str; --%
+    oper mkNTable0638 lexem = 
+      let x = Predef.tk 3 lexem in
+    table { 
+      SF Sg Nom => x + "est";
+      SF Sg Gen => x + "tu";
+      SF Sg Dat => x + "towi";
+      SF Sg Acc => x + "est";
+      SF Sg Instr => x + "tem";
+      SF Sg Loc => x + "cie";
+      SF Sg Voc => x + "cie";
+      SF Pl Nom => x + "ty";
+      SF Pl Gen => x + "tów";
+      SF Pl Dat => x + "tom";
+      SF Pl Acc => x + "ty";
+      SF Pl Instr => x + "tami";
+      SF Pl Loc => x + "tach";
+      SF Pl Voc => x + "ty"
+    };
+
+    oper mkNTable0640: Str -> SubstForm => Str; --%
+    oper mkNTable0640 lexem = 
+      let x = Predef.tk 3 lexem in
+    table { 
+      SF Sg Nom => x + "iec";
+      SF Sg Gen => x + "ca";
+      SF Sg Dat => x + "cu";
+      SF Sg Acc => x + "ca";
+      SF Sg Instr => x + "cem";
+      SF Sg Loc => x + "cu";
+      SF Sg Voc => x + "cze";
+      SF Pl Nom => x + "cy";
+      SF Pl Gen => x + "ców";
+      SF Pl Dat => x + "com";
+      SF Pl Acc => x + "ców";
+      SF Pl Instr => x + "cami";
+      SF Pl Loc => x + "cach";
+      SF Pl Voc => x + "cy"
+    };
+
+    oper mkNTable0642: Str -> SubstForm => Str; --%
+    oper mkNTable0642 lexem = 
+      let x = Predef.tk 2 lexem in
+    table { 
+      SF Sg Nom => x + "ów";
+      SF Sg Gen => x + "owu";
+      SF Sg Dat => x + "owowi";
+      SF Sg Acc => x + "ów";
+      SF Sg Instr => x + "owem";
+      SF Sg Loc => x + "owie";
+      SF Sg Voc => x + "owie";
+      SF Pl Nom => x + "owy";
+      SF Pl Gen => x + "owów";
+      SF Pl Dat => x + "owom";
+      SF Pl Acc => x + "owy";
+      SF Pl Instr => x + "owami";
+      SF Pl Loc => x + "owach";
+      SF Pl Voc => x + "owy"
+    };
+
+    oper mkNTable0644: Str -> SubstForm => Str; --%
+    oper mkNTable0644 lexem = 
+      let x = lexem in
+    table { 
+      SF Sg Nom => x + "a";
+      SF Sg Gen => x + "";
+      SF Sg Dat => x + "";
+      SF Sg Acc => x + "ę";
+      SF Sg Instr => x + "ą";
+      SF Sg Loc => x + "";
+      SF Sg Voc => x + "u";
+      SF Pl Nom => x + "e";
+      SF Pl Gen => x + "ów";
+      SF Pl Dat => x + "om";
+      SF Pl Acc => x + "ów";
+      SF Pl Instr => x + "ami";
+      SF Pl Loc => x + "ach";
+      SF Pl Voc => x + "e"
+    };
+
+    oper mkNTable0645: Str -> SubstForm => Str; --%
+    oper mkNTable0645 lexem = 
+      let x = Predef.tk 1 lexem in
+    table { 
+      SF Sg Nom => x + "o";
+      SF Sg Gen => x + "o";
+      SF Sg Dat => x + "u";
+      SF Sg Acc => x + "o";
+      SF Sg Instr => x + "o";
+      SF Sg Loc => x + "ze";
+      SF Sg Voc => x + "o";
+      SF Pl Nom => x + "o";
+      SF Pl Gen => x + "o";
+      SF Pl Dat => x + "om";
+      SF Pl Acc => x + "o";
+      SF Pl Instr => x + "o";
+      SF Pl Loc => x + "o";
+      SF Pl Voc => x + "o"
+    };
+
+    oper mkNTable0646: Str -> SubstForm => Str; --%
+    oper mkNTable0646 lexem = 
+      let x = Predef.tk 1 lexem in
+    table { 
+      SF Sg Nom => x + "e";
+      SF Sg Gen => x + "e";
+      SF Sg Dat => x + "owi";
+      SF Sg Acc => x + "e";
+      SF Sg Instr => x + "em";
+      SF Sg Loc => x + "ie";
+      SF Sg Voc => x + "ie";
+      SF Pl Nom => x + "owie";
+      SF Pl Gen => x + "ów";
+      SF Pl Dat => x + "om";
+      SF Pl Acc => x + "ów";
+      SF Pl Instr => x + "e";
+      SF Pl Loc => x + "e";
+      SF Pl Voc => x + "owie"
+    };
+
+    oper mkNTable0648: Str -> SubstForm => Str; --%
+    oper mkNTable0648 lexem = 
+      let x = Predef.tk 0 lexem in
+    table { 
+      SF Sg Nom => x + "";
+      SF Sg Gen => x + "ia";
+      SF Sg Dat => x + "iowi";
+      SF Sg Acc => x + "ia";
+      SF Sg Instr => x + "iem";
+      SF Sg Loc => x + "iu";
+      SF Sg Voc => x + "iu";
+      SF Pl Nom => x + "ie";
+      SF Pl Gen => x + "i";
+      SF Pl Dat => x + "iom";
+      SF Pl Acc => x + "ie";
+      SF Pl Instr => x + "iami";
+      SF Pl Loc => x + "iach";
+      SF Pl Voc => x + "ie"
+    };
+
+    oper mkNTable0649: Str -> SubstForm => Str; --%
+    oper mkNTable0649 lexem = 
+      let x = Predef.tk 1 lexem in
+    table { 
+      SF Sg Nom => x + "ć";
+      SF Sg Gen => x + "cia";
+      SF Sg Dat => x + "ciowi";
+      SF Sg Acc => x + "cia";
+      SF Sg Instr => x + "ciem";
+      SF Sg Loc => x + "ciu";
+      SF Sg Voc => x + "ciu";
+      SF Pl Nom => x + "cie";
+      SF Pl Gen => x + "ciów";
+      SF Pl Dat => x + "ciom";
+      SF Pl Acc => x + "ciów";
+      SF Pl Instr => x + "ciami";
+      SF Pl Loc => x + "ciach";
+      SF Pl Voc => x + "cie"
+    };
+
+    oper mkNTable0650: Str -> SubstForm => Str; --%
+    oper mkNTable0650 lexem = 
+      let x = Predef.tk 3 lexem in
+    table { 
+      SF Sg Nom => x + "sła";
+      SF Sg Gen => x + "sły";
+      SF Sg Dat => x + "śle";
+      SF Sg Acc => x + "słę";
+      SF Sg Instr => x + "słą";
+      SF Sg Loc => x + "śle";
+      SF Sg Voc => x + "sło";
+      SF Pl Nom => x + "sły";
+      SF Pl Gen => x + "seł";
+      SF Pl Dat => x + "słom";
+      SF Pl Acc => x + "sły";
+      SF Pl Instr => x + "słami";
+      SF Pl Loc => x + "słach";
+      SF Pl Voc => x + "sły"
+    };
+
+    oper mkNTable0651: Str -> SubstForm => Str; --%
+    oper mkNTable0651 lexem = 
+      let x = Predef.tk 2 lexem in
+    table { 
+      SF Sg Nom => x + "ło";
+      SF Sg Gen => x + "ła";
+      SF Sg Dat => x + "łu";
+      SF Sg Acc => x + "ło";
+      SF Sg Instr => x + "łem";
+      SF Sg Loc => x + "le";
+      SF Sg Voc => x + "ło";
+      SF Pl Nom => x + "ła";
+      SF Pl Gen => x + "ieł";
+      SF Pl Dat => x + "łom";
+      SF Pl Acc => x + "ła";
+      SF Pl Instr => x + "łami";
+      SF Pl Loc => x + "łach";
+      SF Pl Voc => x + "ła"
+    };
+
+    oper mkNTable0652: Str -> SubstForm => Str; --%
+    oper mkNTable0652 lexem = 
+      let x = Predef.tk 3 lexem in
+    table { 
+      SF Sg Nom => x + "ota";
+      SF Sg Gen => x + "oty";
+      SF Sg Dat => x + "ocie";
+      SF Sg Acc => x + "otę";
+      SF Sg Instr => x + "otą";
+      SF Sg Loc => x + "ocie";
+      SF Sg Voc => x + "oto";
+      SF Pl Nom => x + "oty";
+      SF Pl Gen => x + "ót";
+      SF Pl Dat => x + "otom";
+      SF Pl Acc => x + "oty";
+      SF Pl Instr => x + "otami";
+      SF Pl Loc => x + "otach";
+      SF Pl Voc => x + "oty"
+    };
+
+    oper mkNTable0653: Str -> SubstForm => Str; --%
+    oper mkNTable0653 lexem = 
+      let x = Predef.tk 2 lexem in
+    table { 
+      SF Sg Nom => x + "ół";
+      SF Sg Gen => x + "ołu";
+      SF Sg Dat => x + "ołowi";
+      SF Sg Acc => x + "ół";
+      SF Sg Instr => x + "ołem";
+      SF Sg Loc => x + "ole";
+      SF Sg Voc => x + "ole";
+      SF Pl Nom => x + "oły";
+      SF Pl Gen => x + "ołów";
+      SF Pl Dat => x + "ołom";
+      SF Pl Acc => x + "oły";
+      SF Pl Instr => x + "ołami";
+      SF Pl Loc => x + "ołach";
+      SF Pl Voc => x + "oły"
+    };
+
+    oper mkNTable0654: Str -> SubstForm => Str; --%
+    oper mkNTable0654 lexem = 
+      let x = Predef.tk 1 lexem in
+    table { 
+      SF Sg Nom => x + "o";
+      SF Sg Gen => x + "o";
+      SF Sg Dat => x + "u";
+      SF Sg Acc => x + "o";
+      SF Sg Instr => x + "o";
+      SF Sg Loc => x + "zie";
+      SF Sg Voc => x + "o";
+      SF Pl Nom => x + "o";
+      SF Pl Gen => x + "o";
+      SF Pl Dat => x + "om";
+      SF Pl Acc => x + "o";
+      SF Pl Instr => x + "o";
+      SF Pl Loc => x + "o";
+      SF Pl Voc => x + "o"
+    };
+
+    oper mkNTable0655: Str -> SubstForm => Str; --%
+    oper mkNTable0655 lexem = 
+      let x = Predef.tk 1 lexem in
+    table { 
+      SF Sg Nom => x + "o";
+      SF Sg Gen => x + "a";
+      SF Sg Dat => x + "u";
+      SF Sg Acc => x + "o";
+      SF Sg Instr => x + "em";
+      SF Sg Loc => x + "zie";
+      SF Sg Voc => x + "o";
+      SF Pl Nom => x + "a";
+      SF Pl Gen => x + "ów";
+      SF Pl Dat => x + "om";
+      SF Pl Acc => x + "a";
+      SF Pl Instr => x + "ami";
+      SF Pl Loc => x + "ach";
+      SF Pl Voc => x + "a"
+    };
+
+    oper mkNTable0657: Str -> SubstForm => Str; --%
+    oper mkNTable0657 lexem = 
+      let x = Predef.tk 2 lexem in
+    table { 
+      SF Sg Nom => x + "el";
+      SF Sg Gen => x + "la";
+      SF Sg Dat => x + "lowi";
+      SF Sg Acc => x + "el";
+      SF Sg Instr => x + "lem";
+      SF Sg Loc => x + "lu";
+      SF Sg Voc => x + "lu";
+      SF Pl Nom => x + "le";
+      SF Pl Gen => x + "lów";
+      SF Pl Dat => x + "lom";
+      SF Pl Acc => x + "le";
+      SF Pl Instr => x + "lami";
+      SF Pl Loc => x + "lach";
+      SF Pl Voc => x + "le"
+    };
+
+    oper mkNTable0658: Str -> SubstForm => Str; --%
+    oper mkNTable0658 lexem = 
+      let x = Predef.tk 1 lexem in
+    table { 
+      SF Sg Nom => x + "t";
+      SF Sg Gen => x + "ta";
+      SF Sg Dat => x + "tu";
+      SF Sg Acc => x + "ta";
+      SF Sg Instr => x + "tem";
+      SF Sg Loc => x + "cie";
+      SF Sg Voc => x + "cie";
+      SF Pl Nom => x + "ci";
+      SF Pl Gen => x + "tów";
+      SF Pl Dat => x + "tom";
+      SF Pl Acc => x + "tów";
+      SF Pl Instr => x + "tami";
+      SF Pl Loc => x + "tach";
+      SF Pl Voc => x + "ci"
+    };
+
+    oper mkNTable0659: Str -> SubstForm => Str; --%
+    oper mkNTable0659 lexem = 
+      let x = Predef.tk 1 lexem in
+    table { 
+      SF Sg Nom => x + "t";
+      SF Sg Gen => x + "ta";
+      SF Sg Dat => x + "tu";
+      SF Sg Acc => x + "ta";
+      SF Sg Instr => x + "tem";
+      SF Sg Loc => x + "cie";
+      SF Sg Voc => x + "cie";
+      SF Pl Nom => x + "ty";
+      SF Pl Gen => x + "tów";
+      SF Pl Dat => x + "tom";
+      SF Pl Acc => x + "ty";
+      SF Pl Instr => x + "tami";
+      SF Pl Loc => x + "tach";
+      SF Pl Voc => x + "ty"
+    };
+
+    oper mkNTable0660: Str -> SubstForm => Str; --%
+    oper mkNTable0660 lexem = 
+      let x = Predef.tk 3 lexem in
+    table { 
+      SF Sg Nom => x + "smo";
+      SF Sg Gen => x + "sma";
+      SF Sg Dat => x + "smu";
+      SF Sg Acc => x + "smo";
+      SF Sg Instr => x + "smem";
+      SF Sg Loc => x + "śmie";
+      SF Sg Voc => x + "smo";
+      SF Pl Nom => x + "sma";
+      SF Pl Gen => x + "sm";
+      SF Pl Dat => x + "smom";
+      SF Pl Acc => x + "sma";
+      SF Pl Instr => x + "smami";
+      SF Pl Loc => x + "smach";
+      SF Pl Voc => x + "sma"
+    };
+
+    oper mkNTable0661: Str -> SubstForm => Str; --%
+    oper mkNTable0661 lexem = 
+      let x = Predef.tk 1 lexem in
+    table { 
+      SF Sg Nom => x + "ź";
+      SF Sg Gen => x + "zi";
+      SF Sg Dat => x + "zi";
+      SF Sg Acc => x + "ź";
+      SF Sg Instr => x + "zią";
+      SF Sg Loc => x + "zi";
+      SF Sg Voc => x + "zi";
+      SF Pl Nom => x + "zie";
+      SF Pl Gen => x + "zi";
+      SF Pl Dat => x + "ziom";
+      SF Pl Acc => x + "zie";
+      SF Pl Instr => x + "ziami";
+      SF Pl Loc => x + "ziach";
+      SF Pl Voc => x + "zie"
+    };
+
+    oper mkNTable0662: Str -> SubstForm => Str; --%
+    oper mkNTable0662 lexem = 
+      let x = Predef.tk 0 lexem in
+    table { 
+      SF Sg Nom => x + "";
+      SF Sg Gen => x + "iu";
+      SF Sg Dat => x + "iowi";
+      SF Sg Acc => x + "";
+      SF Sg Instr => x + "iem";
+      SF Sg Loc => x + "iu";
+      SF Sg Voc => x + "iu";
+      SF Pl Nom => x + "ie";
+      SF Pl Gen => x + "i";
+      SF Pl Dat => x + "iom";
+      SF Pl Acc => x + "ie";
+      SF Pl Instr => x + "iami";
+      SF Pl Loc => x + "iach";
+      SF Pl Voc => x + "ie"
+    };
+
+    oper mkNTable0663: Str -> SubstForm => Str; --%
+    oper mkNTable0663 lexem = 
+      let x = Predef.tk 3 lexem in
+    table { 
+      SF Sg Nom => x + "eść";
+      SF Sg Gen => x + "ci";
+      SF Sg Dat => x + "ci";
+      SF Sg Acc => x + "eść";
+      SF Sg Instr => x + "cią";
+      SF Sg Loc => x + "ci";
+      SF Sg Voc => x + "ci";
+      SF Pl Nom => x + "ci";
+      SF Pl Gen => x + "ci";
+      SF Pl Dat => x + "ciom";
+      SF Pl Acc => x + "ci";
+      SF Pl Instr => x + "ciami";
+      SF Pl Loc => x + "ciach";
+      SF Pl Voc => x + "ci"
+    };
+
+    oper mkNTable0664: Str -> SubstForm => Str; --%
+    oper mkNTable0664 lexem = 
+      let x = Predef.tk 3 lexem in
+    table { 
+      SF Sg Nom => x + "oło";
+      SF Sg Gen => x + "oła";
+      SF Sg Dat => x + "ołu";
+      SF Sg Acc => x + "oło";
+      SF Sg Instr => x + "ołem";
+      SF Sg Loc => x + "ole";
+      SF Sg Voc => x + "oło";
+      SF Pl Nom => x + "oła";
+      SF Pl Gen => x + "ół";
+      SF Pl Dat => x + "ołom";
+      SF Pl Acc => x + "oła";
+      SF Pl Instr => x + "ołami";
+      SF Pl Loc => x + "ołach";
+      SF Pl Voc => x + "oła"
+    };
+
+    oper mkNTable0665: Str -> SubstForm => Str; --%
+    oper mkNTable0665 lexem = 
+      let x = Predef.tk 1 lexem in
+    table { 
+      SF Sg Nom => x + "y";
+      SF Sg Gen => x + "ego";
+      SF Sg Dat => x + "emu";
+      SF Sg Acc => x + "y";
+      SF Sg Instr => x + "ym";
+      SF Sg Loc => x + "ym";
+      SF Sg Voc => x + "y";
+      SF Pl Nom => x + "e";
+      SF Pl Gen => x + "ych";
+      SF Pl Dat => x + "ym";
+      SF Pl Acc => x + "e";
+      SF Pl Instr => x + "ymi";
+      SF Pl Loc => x + "ych";
+      SF Pl Voc => x + "e"
+    };
+
+    oper mkNTable0666: Str -> SubstForm => Str; --%
+    oper mkNTable0666 lexem = 
+      let x = Predef.tk 4 lexem in
+    table { 
+      SF Sg Nom => x + "ciec";
+      SF Sg Gen => x + "ćca";
+      SF Sg Dat => x + "ćcowi";
+      SF Sg Acc => x + "ćca";
+      SF Sg Instr => x + "ćcem";
+      SF Sg Loc => x + "ćcu";
+      SF Sg Voc => x + "ćcu";
+      SF Pl Nom => x + "ćce";
+      SF Pl Gen => x + "ćców";
+      SF Pl Dat => x + "ćcom";
+      SF Pl Acc => x + "ćce";
+      SF Pl Instr => x + "ćcami";
+      SF Pl Loc => x + "ćcach";
+      SF Pl Voc => x + "ćce"
+    };
+
+    oper mkNTable0667: Str -> SubstForm => Str; --%
+    oper mkNTable0667 lexem = 
+      let x = Predef.tk 4 lexem in
+    table { 
+      SF Sg Nom => x + "ciec";
+      SF Sg Gen => x + "ćca";
+      SF Sg Dat => x + "ćcowi";
+      SF Sg Acc => x + "ciec";
+      SF Sg Instr => x + "ćcem";
+      SF Sg Loc => x + "ćcu";
+      SF Sg Voc => x + "ćcu";
+      SF Pl Nom => x + "ćce";
+      SF Pl Gen => x + "ćców";
+      SF Pl Dat => x + "ćcom";
+      SF Pl Acc => x + "ćce";
+      SF Pl Instr => x + "ćcami";
+      SF Pl Loc => x + "ćcach";
+      SF Pl Voc => x + "ćce"
+    };
+
+    oper mkNTable0668: Str -> SubstForm => Str; --%
+    oper mkNTable0668 lexem = 
+      let x = Predef.tk 8 lexem in
+    table { 
+      SF Sg Nom => x + "człowiek";
+      SF Sg Gen => x + "człowieka";
+      SF Sg Dat => x + "człowiekowi";
+      SF Sg Acc => x + "człowieka";
+      SF Sg Instr => x + "człowiekiem";
+      SF Sg Loc => x + "człowieku";
+      SF Sg Voc => x + "człowieku";
+      SF Pl Nom => x + "ludzie";
+      SF Pl Gen => x + "ludzi";
+      SF Pl Dat => x + "ludziom";
+      SF Pl Acc => x + "ludzi";
+      SF Pl Instr => x + "ludźmi";
+      SF Pl Loc => x + "ludziach";
+      SF Pl Voc => x + "ludzie"
+    };
+
+    oper mkNTable0671: Str -> SubstForm => Str; --%
+    oper mkNTable0671 lexem = 
+      let x = Predef.tk 1 lexem in
+    table { 
+      SF Sg Nom => x + "ś";
+      SF Sg Gen => x + "si";
+      SF Sg Dat => x + "si";
+      SF Sg Acc => x + "ś";
+      SF Sg Instr => x + "sią";
+      SF Sg Loc => x + "si";
+      SF Sg Voc => x + "ś";
+      SF Pl Nom => x + "sie";
+      SF Pl Gen => x + "si";
+      SF Pl Dat => x + "siom";
+      SF Pl Acc => x + "sie";
+      SF Pl Instr => x + "siami";
+      SF Pl Loc => x + "siach";
+      SF Pl Voc => x + "sie"
+    };
+
+    oper mkNTable0674: Str -> SubstForm => Str; --%
+    oper mkNTable0674 lexem = 
+      let x = Predef.tk 1 lexem in
+    table { 
+      SF Sg Nom => x + "ń";
+      SF Sg Gen => x + "ni";
+      SF Sg Dat => x + "ni";
+      SF Sg Acc => x + "ń";
+      SF Sg Instr => x + "nią";
+      SF Sg Loc => x + "ni";
+      SF Sg Voc => x + "ni";
+      SF Pl Nom => x + "nie";
+      SF Pl Gen => x + "ni";
+      SF Pl Dat => x + "niom";
+      SF Pl Acc => x + "nie";
+      SF Pl Instr => x + "ńmi";
+      SF Pl Loc => x + "niach";
+      SF Pl Voc => x + "nie"
+    };
+
+    oper mkNTable0675: Str -> SubstForm => Str; --%
+    oper mkNTable0675 lexem = 
+      let x = Predef.tk 2 lexem in
+    table { 
+      SF Sg Nom => x + "el";
+      SF Sg Gen => x + "la";
+      SF Sg Dat => x + "lowi";
+      SF Sg Acc => x + "la";
+      SF Sg Instr => x + "lem";
+      SF Sg Loc => x + "lu";
+      SF Sg Voc => x + "lu";
+      SF Pl Nom => x + "le";
+      SF Pl Gen => x + "lów";
+      SF Pl Dat => x + "lom";
+      SF Pl Acc => x + "le";
+      SF Pl Instr => x + "lami";
+      SF Pl Loc => x + "lach";
+      SF Pl Voc => x + "le"
+    };
+
+    oper mkNTable0676: Str -> SubstForm => Str; --%
+    oper mkNTable0676 lexem = 
+      let x = Predef.tk 1 lexem in
+    table { 
+      SF Sg Nom => x + "ń";
+      SF Sg Gen => x + "niu";
+      SF Sg Dat => x + "niowi";
+      SF Sg Acc => x + "ń";
+      SF Sg Instr => x + "niem";
+      SF Sg Loc => x + "niu";
+      SF Sg Voc => x + "niu";
+      SF Pl Nom => x + "nie";
+      SF Pl Gen => x + "ni";
+      SF Pl Dat => x + "niom";
+      SF Pl Acc => x + "nie";
+      SF Pl Instr => x + "niami";
+      SF Pl Loc => x + "niach";
+      SF Pl Voc => x + "nie"
+    };
+
+    oper mkNTable0677: Str -> SubstForm => Str; --%
+    oper mkNTable0677 lexem = 
+      let x = Predef.tk 5 lexem in
+    table { 
+      SF Sg Nom => x + "eszcz";
+      SF Sg Gen => x + "żdżu";
+      SF Sg Dat => x + "żdżowi";
+      SF Sg Acc => x + "eszcz";
+      SF Sg Instr => x + "żdżem";
+      SF Sg Loc => x + "żdżu";
+      SF Sg Voc => x + "żdżu";
+      SF Pl Nom => x + "żdże";
+      SF Pl Gen => x + "żdżów";
+      SF Pl Dat => x + "żdżom";
+      SF Pl Acc => x + "żdże";
+      SF Pl Instr => x + "żdżami";
+      SF Pl Loc => x + "żdżach";
+      SF Pl Voc => x + "żdże"
+    };
+
+    oper mkNTable0678: Str -> SubstForm => Str; --%
+    oper mkNTable0678 lexem = 
+      let x = Predef.tk 2 lexem in
+    table { 
+      SF Sg Nom => x + "eł";
+      SF Sg Gen => x + "ła";
+      SF Sg Dat => x + "łu";
+      SF Sg Acc => x + "ła";
+      SF Sg Instr => x + "łem";
+      SF Sg Loc => x + "le";
+      SF Sg Voc => x + "le";
+      SF Pl Nom => x + "li";
+      SF Pl Gen => x + "łów";
+      SF Pl Dat => x + "łom";
+      SF Pl Acc => x + "łów";
+      SF Pl Instr => x + "łami";
+      SF Pl Loc => x + "łach";
+      SF Pl Voc => x + "li"
+    };
+
+    oper mkNTable0679: Str -> SubstForm => Str; --%
+    oper mkNTable0679 lexem = 
+      let x = Predef.tk 2 lexem in
+    table { 
+      SF Sg Nom => x + "eł";
+      SF Sg Gen => x + "ła";
+      SF Sg Dat => x + "łu";
+      SF Sg Acc => x + "ła";
+      SF Sg Instr => x + "łem";
+      SF Sg Loc => x + "le";
+      SF Sg Voc => x + "le";
+      SF Pl Nom => x + "ły";
+      SF Pl Gen => x + "łów";
+      SF Pl Dat => x + "łom";
+      SF Pl Acc => x + "ły";
+      SF Pl Instr => x + "łami";
+      SF Pl Loc => x + "łach";
+      SF Pl Voc => x + "ły"
+    };
+
+    oper mkNTable0681: Str -> SubstForm => Str; --%
+    oper mkNTable0681 lexem = 
+      let x = Predef.tk 4 lexem in
+    table { 
+      SF Sg Nom => x + "obro";
+      SF Sg Gen => x + "obra";
+      SF Sg Dat => x + "obru";
+      SF Sg Acc => x + "obro";
+      SF Sg Instr => x + "obrem";
+      SF Sg Loc => x + "obru";
+      SF Sg Voc => x + "obro";
+      SF Pl Nom => x + "obra";
+      SF Pl Gen => x + "óbr";
+      SF Pl Dat => x + "obrom";
+      SF Pl Acc => x + "obra";
+      SF Pl Instr => x + "obrami";
+      SF Pl Loc => x + "obrach";
+      SF Pl Voc => x + "obra"
+    };
+
+    oper mkNTable0682: Str -> SubstForm => Str; --%
+    oper mkNTable0682 lexem = 
+      let x = Predef.tk 3 lexem in
+    table { 
+      SF Sg Nom => x + "azd";
+      SF Sg Gen => x + "azdu";
+      SF Sg Dat => x + "azdowi";
+      SF Sg Acc => x + "azd";
+      SF Sg Instr => x + "azdem";
+      SF Sg Loc => x + "eździe";
+      SF Sg Voc => x + "eździe";
+      SF Pl Nom => x + "azdy";
+      SF Pl Gen => x + "azdów";
+      SF Pl Dat => x + "azdom";
+      SF Pl Acc => x + "azdy";
+      SF Pl Instr => x + "azdami";
+      SF Pl Loc => x + "azdach";
+      SF Pl Voc => x + "azdy"
+    };
+
+    oper mkNTable0683: Str -> SubstForm => Str; --%
+    oper mkNTable0683 lexem = 
+      let x = Predef.tk 2 lexem in
+    table { 
+      SF Sg Nom => x + "ór";
+      SF Sg Gen => x + "ora";
+      SF Sg Dat => x + "orowi";
+      SF Sg Acc => x + "ora";
+      SF Sg Instr => x + "orem";
+      SF Sg Loc => x + "orze";
+      SF Sg Voc => x + "orze";
+      SF Pl Nom => x + "orzy";
+      SF Pl Gen => x + "orów";
+      SF Pl Dat => x + "orom";
+      SF Pl Acc => x + "orów";
+      SF Pl Instr => x + "orami";
+      SF Pl Loc => x + "orach";
+      SF Pl Voc => x + "orzy"
+    };
+
+    oper mkNTable0684: Str -> SubstForm => Str; --%
+    oper mkNTable0684 lexem = 
+      let x = Predef.tk 3 lexem in
+    table { 
+      SF Sg Nom => x + "ola";
+      SF Sg Gen => x + "oli";
+      SF Sg Dat => x + "oli";
+      SF Sg Acc => x + "olę";
+      SF Sg Instr => x + "olą";
+      SF Sg Loc => x + "oli";
+      SF Sg Voc => x + "olo";
+      SF Pl Nom => x + "ole";
+      SF Pl Gen => x + "ól";
+      SF Pl Dat => x + "olom";
+      SF Pl Acc => x + "ole";
+      SF Pl Instr => x + "olami";
+      SF Pl Loc => x + "olach";
+      SF Pl Voc => x + "ole"
+    };
+
+    oper mkNTable0685: Str -> SubstForm => Str; --%
+    oper mkNTable0685 lexem = 
+      let x = Predef.tk 2 lexem in
+    table { 
+      SF Sg Nom => x + "sł";
+      SF Sg Gen => x + "słu";
+      SF Sg Dat => x + "słowi";
+      SF Sg Acc => x + "sł";
+      SF Sg Instr => x + "słem";
+      SF Sg Loc => x + "śle";
+      SF Sg Voc => x + "śle";
+      SF Pl Nom => x + "sły";
+      SF Pl Gen => x + "słów";
+      SF Pl Dat => x + "słom";
+      SF Pl Acc => x + "sły";
+      SF Pl Instr => x + "słami";
+      SF Pl Loc => x + "słach";
+      SF Pl Voc => x + "sły"
+    };
+
+    oper mkNTable0689: Str -> SubstForm => Str; --%
+    oper mkNTable0689 lexem = 
+      let x = Predef.tk 3 lexem in
+    table { 
+      SF Sg Nom => x + "oga";
+      SF Sg Gen => x + "ogi";
+      SF Sg Dat => x + "odze";
+      SF Sg Acc => x + "ogę";
+      SF Sg Instr => x + "ogą";
+      SF Sg Loc => x + "odze";
+      SF Sg Voc => x + "ogo";
+      SF Pl Nom => x + "ogi";
+      SF Pl Gen => x + "óg";
+      SF Pl Dat => x + "ogom";
+      SF Pl Acc => x + "ogi";
+      SF Pl Instr => x + "ogami";
+      SF Pl Loc => x + "ogach";
+      SF Pl Voc => x + "ogi"
+    };
+
+    oper mkNTable0691: Str -> SubstForm => Str; --%
+    oper mkNTable0691 lexem = 
+      let x = Predef.tk 0 lexem in
+    table { 
+      SF Sg Nom => x + "";
+      SF Sg Gen => x + "ia";
+      SF Sg Dat => x + "iowi";
+      SF Sg Acc => x + "ia";
+      SF Sg Instr => x + "iem";
+      SF Sg Loc => x + "iu";
+      SF Sg Voc => x + "iu";
+      SF Pl Nom => x + "ie";
+      SF Pl Gen => x + "iów";
+      SF Pl Dat => x + "iom";
+      SF Pl Acc => x + "ie";
+      SF Pl Instr => x + "iami";
+      SF Pl Loc => x + "iach";
+      SF Pl Voc => x + "ie"
+    };
+
+    oper mkNTable0692: Str -> SubstForm => Str; --%
+    oper mkNTable0692 lexem = 
+      let x = Predef.tk 2 lexem in
+    table { 
+      SF Sg Nom => x + "zd";
+      SF Sg Gen => x + "zda";
+      SF Sg Dat => x + "zdowi";
+      SF Sg Acc => x + "zda";
+      SF Sg Instr => x + "zdem";
+      SF Sg Loc => x + "ździe";
+      SF Sg Voc => x + "ździe";
+      SF Pl Nom => x + "zdy";
+      SF Pl Gen => x + "zdów";
+      SF Pl Dat => x + "zdom";
+      SF Pl Acc => x + "zdy";
+      SF Pl Instr => x + "zdami";
+      SF Pl Loc => x + "zdach";
+      SF Pl Voc => x + "zdy"
+    };
+
+    oper mkNTable0694: Str -> SubstForm => Str; --%
+    oper mkNTable0694 lexem = 
+      let x = Predef.tk 1 lexem in
+    table { 
+      SF Sg Nom => x + "e";
+      SF Sg Gen => x + "ego";
+      SF Sg Dat => x + "emu";
+      SF Sg Acc => x + "ego";
+      SF Sg Instr => x + "em";
+      SF Sg Loc => x + "em";
+      SF Sg Voc => x + "e";
+      SF Pl Nom => x + "owie";
+      SF Pl Gen => x + "ów";
+      SF Pl Dat => x + "om";
+      SF Pl Acc => x + "ów";
+      SF Pl Instr => x + "e";
+      SF Pl Loc => x + "e";
+      SF Pl Voc => x + "owie"
+    };
+
+    oper mkNTable0695: Str -> SubstForm => Str; --%
+    oper mkNTable0695 lexem = 
+      let x = Predef.tk 2 lexem in
+    table { 
+      SF Sg Nom => x + "ha";
+      SF Sg Gen => x + "hy";
+      SF Sg Dat => x + "sze";
+      SF Sg Acc => x + "hę";
+      SF Sg Instr => x + "hą";
+      SF Sg Loc => x + "sze";
+      SF Sg Voc => x + "ho";
+      SF Pl Nom => x + "hy";
+      SF Pl Gen => x + "h";
+      SF Pl Dat => x + "hom";
+      SF Pl Acc => x + "hy";
+      SF Pl Instr => x + "hami";
+      SF Pl Loc => x + "hach";
+      SF Pl Voc => x + "hy"
+    };
+
+    oper mkNTable0696: Str -> SubstForm => Str; --%
+    oper mkNTable0696 lexem = 
+      let x = Predef.tk 0 lexem in
+    table { 
+      SF Sg Nom => x + "";
+      SF Sg Gen => x + "u";
+      SF Sg Dat => x + "";
+      SF Sg Acc => x + "";
+      SF Sg Instr => x + "em";
+      SF Sg Loc => x + "ze";
+      SF Sg Voc => x + "ze";
+      SF Pl Nom => x + "y";
+      SF Pl Gen => x + "ów";
+      SF Pl Dat => x + "om";
+      SF Pl Acc => x + "y";
+      SF Pl Instr => x + "ami";
+      SF Pl Loc => x + "ach";
+      SF Pl Voc => x + "y"
+    };
+
+    oper mkNTable0697: Str -> SubstForm => Str; --%
+    oper mkNTable0697 lexem = 
+      let x = Predef.tk 2 lexem in
+    table { 
+      SF Sg Nom => x + "eń";
+      SF Sg Gen => x + "nia";
+      SF Sg Dat => x + "niowi";
+      SF Sg Acc => x + "nia";
+      SF Sg Instr => x + "niem";
+      SF Sg Loc => x + "niu";
+      SF Sg Voc => x + "niu";
+      SF Pl Nom => x + "nie";
+      SF Pl Gen => x + "niów";
+      SF Pl Dat => x + "niom";
+      SF Pl Acc => x + "niów";
+      SF Pl Instr => x + "niami";
+      SF Pl Loc => x + "niach";
+      SF Pl Voc => x + "nie"
+    };
+
+    oper mkNTable0698: Str -> SubstForm => Str; --%
+    oper mkNTable0698 lexem = 
+      let x = Predef.tk 2 lexem in
+    table { 
+      SF Sg Nom => x + "eń";
+      SF Sg Gen => x + "nia";
+      SF Sg Dat => x + "niowi";
+      SF Sg Acc => x + "nia";
+      SF Sg Instr => x + "niem";
+      SF Sg Loc => x + "niu";
+      SF Sg Voc => x + "niu";
+      SF Pl Nom => x + "nie";
+      SF Pl Gen => x + "niów";
+      SF Pl Dat => x + "niom";
+      SF Pl Acc => x + "nie";
+      SF Pl Instr => x + "niami";
+      SF Pl Loc => x + "niach";
+      SF Pl Voc => x + "nie"
+    };
+
+    oper mkNTable0699: Str -> SubstForm => Str; --%
+    oper mkNTable0699 lexem = 
+      let x = Predef.tk 3 lexem in
+    table { 
+      SF Sg Nom => x + "zec";
+      SF Sg Gen => x + "ca";
+      SF Sg Dat => x + "cowi";
+      SF Sg Acc => x + "zec";
+      SF Sg Instr => x + "cem";
+      SF Sg Loc => x + "cu";
+      SF Sg Voc => x + "cu";
+      SF Pl Nom => x + "ce";
+      SF Pl Gen => x + "ców";
+      SF Pl Dat => x + "com";
+      SF Pl Acc => x + "ce";
+      SF Pl Instr => x + "cami";
+      SF Pl Loc => x + "cach";
+      SF Pl Voc => x + "ce"
+    };
+
+    oper mkNTable0700: Str -> SubstForm => Str; --%
+    oper mkNTable0700 lexem = 
+      let x = Predef.tk 3 lexem in
+    table { 
+      SF Sg Nom => x + "zec";
+      SF Sg Gen => x + "ca";
+      SF Sg Dat => x + "cowi";
+      SF Sg Acc => x + "ca";
+      SF Sg Instr => x + "cem";
+      SF Sg Loc => x + "cu";
+      SF Sg Voc => x + "cu";
+      SF Pl Nom => x + "ce";
+      SF Pl Gen => x + "ców";
+      SF Pl Dat => x + "com";
+      SF Pl Acc => x + "ce";
+      SF Pl Instr => x + "cami";
+      SF Pl Loc => x + "cach";
+      SF Pl Voc => x + "ce"
+    };
+
+    oper mkNTable0701: Str -> SubstForm => Str; --%
+    oper mkNTable0701 lexem = 
+      let x = lexem in
+    table { 
+      SF Sg Nom => x + "a";
+      SF Sg Gen => x + "";
+      SF Sg Dat => x + "";
+      SF Sg Acc => x + "ę";
+      SF Sg Instr => x + "ą";
+      SF Sg Loc => x + "";
+      SF Sg Voc => x + "u";
+      SF Pl Nom => x + "owie";
+      SF Pl Gen => x + "ów";
+      SF Pl Dat => x + "om";
+      SF Pl Acc => x + "ów";
+      SF Pl Instr => x + "ami";
+      SF Pl Loc => x + "ach";
+      SF Pl Voc => x + "owie"
+    };
+
+    oper mkNTable0702: Str -> SubstForm => Str; --%
+    oper mkNTable0702 lexem = 
+      let x = Predef.tk 1 lexem in
+    table { 
+      SF Sg Nom => x + "a";
+      SF Sg Gen => x + "y";
+      SF Sg Dat => x + "ie";
+      SF Sg Acc => x + "ę";
+      SF Sg Instr => x + "ą";
+      SF Sg Loc => x + "ie";
+      SF Sg Voc => x + "o";
+      SF Pl Nom => x + "y";
+      SF Pl Gen => x + "ów";
+      SF Pl Dat => x + "om";
+      SF Pl Acc => x + "y";
+      SF Pl Instr => x + "ami";
+      SF Pl Loc => x + "ach";
+      SF Pl Voc => x + "y"
+    };
+
+    oper mkNTable0703: Str -> SubstForm => Str; --%
+    oper mkNTable0703 lexem = 
+      let x = Predef.tk 3 lexem in
+    table { 
+      SF Sg Nom => x + "cko";
+      SF Sg Gen => x + "cka";
+      SF Sg Dat => x + "cku";
+      SF Sg Acc => x + "cko";
+      SF Sg Instr => x + "ckiem";
+      SF Sg Loc => x + "cku";
+      SF Sg Voc => x + "cko";
+      SF Pl Nom => x + "ci";
+      SF Pl Gen => x + "ci";
+      SF Pl Dat => x + "ciom";
+      SF Pl Acc => x + "ci";
+      SF Pl Instr => x + "ćmi";
+      SF Pl Loc => x + "ciach";
+      SF Pl Voc => x + "ci"
+    };
+
+    oper mkNTable0704: Str -> SubstForm => Str; --%
+    oper mkNTable0704 lexem = 
+      let x = Predef.tk 3 lexem in
+    table { 
+      SF Sg Nom => x + "ieć";
+      SF Sg Gen => x + "ciu";
+      SF Sg Dat => x + "ciowi";
+      SF Sg Acc => x + "ieć";
+      SF Sg Instr => x + "ciem";
+      SF Sg Loc => x + "ciu";
+      SF Sg Voc => x + "ciu";
+      SF Pl Nom => x + "cie";
+      SF Pl Gen => x + "ci";
+      SF Pl Dat => x + "ciom";
+      SF Pl Acc => x + "cie";
+      SF Pl Instr => x + "ciami";
+      SF Pl Loc => x + "ciach";
+      SF Pl Voc => x + "cie"
+    };
+
+    oper mkNTable0706: Str -> SubstForm => Str; --%
+    oper mkNTable0706 lexem = 
+      let x = Predef.tk 2 lexem in
+    table { 
+      SF Sg Nom => x + "ąb";
+      SF Sg Gen => x + "ęba";
+      SF Sg Dat => x + "ębowi";
+      SF Sg Acc => x + "ąb";
+      SF Sg Instr => x + "ębem";
+      SF Sg Loc => x + "ębie";
+      SF Sg Voc => x + "ębie";
+      SF Pl Nom => x + "ęby";
+      SF Pl Gen => x + "ębów";
+      SF Pl Dat => x + "ębom";
+      SF Pl Acc => x + "ęby";
+      SF Pl Instr => x + "ębami";
+      SF Pl Loc => x + "ębach";
+      SF Pl Voc => x + "ęby"
+    };
+
+    oper mkNTable0707: Str -> SubstForm => Str; --%
+    oper mkNTable0707 lexem = 
+      let x = Predef.tk 4 lexem in
+    table { 
+      SF Sg Nom => x + "zień";
+      SF Sg Gen => x + "nia";
+      SF Sg Dat => x + "niowi";
+      SF Sg Acc => x + "zień";
+      SF Sg Instr => x + "niem";
+      SF Sg Loc => x + "niu";
+      SF Sg Voc => x + "niu";
+      SF Pl Nom => x + "nie";
+      SF Pl Gen => x + "ni";
+      SF Pl Dat => x + "niom";
+      SF Pl Acc => x + "nie";
+      SF Pl Instr => x + "niami";
+      SF Pl Loc => x + "niach";
+      SF Pl Voc => x + "nie"
+    };
+
+    oper mkNTable0710: Str -> SubstForm => Str; --%
+    oper mkNTable0710 lexem = 
+      let x = Predef.tk 2 lexem in
+    table { 
+      SF Sg Nom => x + "ąb";
+      SF Sg Gen => x + "ęba";
+      SF Sg Dat => x + "ębowi";
+      SF Sg Acc => x + "ęba";
+      SF Sg Instr => x + "ębem";
+      SF Sg Loc => x + "ębie";
+      SF Sg Voc => x + "ębie";
+      SF Pl Nom => x + "ęby";
+      SF Pl Gen => x + "ębów";
+      SF Pl Dat => x + "ębom";
+      SF Pl Acc => x + "ęby";
+      SF Pl Instr => x + "ębami";
+      SF Pl Loc => x + "ębach";
+      SF Pl Voc => x + "ęby"
+    };
+
+    oper mkNTable0711: Str -> SubstForm => Str; --%
+    oper mkNTable0711 lexem = 
+      let x = Predef.tk 2 lexem in
+    table { 
+      SF Sg Nom => x + "ąb";
+      SF Sg Gen => x + "ębu";
+      SF Sg Dat => x + "ębowi";
+      SF Sg Acc => x + "ąb";
+      SF Sg Instr => x + "ębem";
+      SF Sg Loc => x + "ębie";
+      SF Sg Voc => x + "ębie";
+      SF Pl Nom => x + "ęby";
+      SF Pl Gen => x + "ębów";
+      SF Pl Dat => x + "ębom";
+      SF Pl Acc => x + "ęby";
+      SF Pl Instr => x + "ębami";
+      SF Pl Loc => x + "ębach";
+      SF Pl Voc => x + "ęby"
+    };
+
+    oper mkNTable0712: Str -> SubstForm => Str; --%
+    oper mkNTable0712 lexem = 
+      let x = Predef.tk 2 lexem in
+    table { 
+      SF Sg Nom => x + "ół";
+      SF Sg Gen => x + "oła";
+      SF Sg Dat => x + "ołowi";
+      SF Sg Acc => x + "oła";
+      SF Sg Instr => x + "ołem";
+      SF Sg Loc => x + "ole";
+      SF Sg Voc => x + "ole";
+      SF Pl Nom => x + "oły";
+      SF Pl Gen => x + "ołów";
+      SF Pl Dat => x + "ołom";
+      SF Pl Acc => x + "oły";
+      SF Pl Instr => x + "ołami";
+      SF Pl Loc => x + "ołach";
+      SF Pl Voc => x + "oły"
+    };
+
+    oper mkNTable0713: Str -> SubstForm => Str; --%
+    oper mkNTable0713 lexem = 
+      let x = Predef.tk 2 lexem in
+    table { 
+      SF Sg Nom => x + "en";
+      SF Sg Gen => x + "nu";
+      SF Sg Dat => x + "nowi";
+      SF Sg Acc => x + "en";
+      SF Sg Instr => x + "nem";
+      SF Sg Loc => x + "nie";
+      SF Sg Voc => x + "nie";
+      SF Pl Nom => x + "ny";
+      SF Pl Gen => x + "nów";
+      SF Pl Dat => x + "nom";
+      SF Pl Acc => x + "ny";
+      SF Pl Instr => x + "nami";
+      SF Pl Loc => x + "nach";
+      SF Pl Voc => x + "ny"
+    };
+
+    oper mkNTable0714: Str -> SubstForm => Str; --%
+    oper mkNTable0714 lexem = 
+      let x = Predef.tk 1 lexem in
+    table { 
+      SF Sg Nom => x + "e";
+      SF Sg Gen => x + "e";
+      SF Sg Dat => x + "e";
+      SF Sg Acc => x + "e";
+      SF Sg Instr => x + "e";
+      SF Sg Loc => x + "ze";
+      SF Sg Voc => x + "ze";
+      SF Pl Nom => x + "e";
+      SF Pl Gen => x + "e";
+      SF Pl Dat => x + "e";
+      SF Pl Acc => x + "e";
+      SF Pl Instr => x + "e";
+      SF Pl Loc => x + "e";
+      SF Pl Voc => x + "e"
+    };
+
+    oper mkNTable0715: Str -> SubstForm => Str; --%
+    oper mkNTable0715 lexem = 
+      let x = Predef.tk 1 lexem in
+    table { 
+      SF Sg Nom => x + "e";
+      SF Sg Gen => x + "u";
+      SF Sg Dat => x + "owi";
+      SF Sg Acc => x + "e";
+      SF Sg Instr => x + "em";
+      SF Sg Loc => x + "u";
+      SF Sg Voc => x + "u";
+      SF Pl Nom => x + "e";
+      SF Pl Gen => x + "ów";
+      SF Pl Dat => x + "om";
+      SF Pl Acc => x + "e";
+      SF Pl Instr => x + "ami";
+      SF Pl Loc => x + "ach";
+      SF Pl Voc => x + "e"
+    };
+
+    oper mkNTable0716: Str -> SubstForm => Str; --%
+    oper mkNTable0716 lexem = 
+      let x = Predef.tk 2 lexem in
+    table { 
+      SF Sg Nom => x + "on";
+      SF Sg Gen => x + "onu";
+      SF Sg Dat => x + "onowi";
+      SF Sg Acc => x + "on";
+      SF Sg Instr => x + "onem";
+      SF Sg Loc => x + "onie";
+      SF Sg Voc => x + "onie";
+      SF Pl Nom => x + "a";
+      SF Pl Gen => x + "ów";
+      SF Pl Dat => x + "om";
+      SF Pl Acc => x + "a";
+      SF Pl Instr => x + "ami";
+      SF Pl Loc => x + "ach";
+      SF Pl Voc => x + "a"
+    };
+
+    oper mkNTable0717: Str -> SubstForm => Str; --%
+    oper mkNTable0717 lexem = 
+      let x = Predef.tk 0 lexem in
+    table { 
+      SF Sg Nom => x + "";
+      SF Sg Gen => x + "u";
+      SF Sg Dat => x + "owi";
+      SF Sg Acc => x + "u";
+      SF Sg Instr => x + "em";
+      SF Sg Loc => x + "u";
+      SF Sg Voc => x + "u";
+      SF Pl Nom => x + "e";
+      SF Pl Gen => x + "ów";
+      SF Pl Dat => x + "om";
+      SF Pl Acc => x + "e";
+      SF Pl Instr => x + "ami";
+      SF Pl Loc => x + "ach";
+      SF Pl Voc => x + "e"
+    };
+
+    oper mkNTable0718: Str -> SubstForm => Str; --%
+    oper mkNTable0718 lexem = 
+      let x = Predef.tk 3 lexem in
+    table { 
+      SF Sg Nom => x + "ier";
+      SF Sg Gen => x + "ra";
+      SF Sg Dat => x + "rowi";
+      SF Sg Acc => x + "ra";
+      SF Sg Instr => x + "rem";
+      SF Sg Loc => x + "rze";
+      SF Sg Voc => x + "rze";
+      SF Pl Nom => x + "ry";
+      SF Pl Gen => x + "rów";
+      SF Pl Dat => x + "rom";
+      SF Pl Acc => x + "ry";
+      SF Pl Instr => x + "rami";
+      SF Pl Loc => x + "rach";
+      SF Pl Voc => x + "ry"
+    };
+
+    oper mkNTable0719: Str -> SubstForm => Str; --%
+    oper mkNTable0719 lexem = 
+      let x = Predef.tk 1 lexem in
+    table { 
+      SF Sg Nom => x + "o";
+      SF Sg Gen => x + "a";
+      SF Sg Dat => x + "owi";
+      SF Sg Acc => x + "a";
+      SF Sg Instr => x + "em";
+      SF Sg Loc => x + "ze";
+      SF Sg Voc => x + "o";
+      SF Pl Nom => x + "owie";
+      SF Pl Gen => x + "ów";
+      SF Pl Dat => x + "om";
+      SF Pl Acc => x + "ów";
+      SF Pl Instr => x + "ami";
+      SF Pl Loc => x + "ach";
+      SF Pl Voc => x + "owie"
+    };
+
+    oper mkNTable0720: Str -> SubstForm => Str; --%
+    oper mkNTable0720 lexem = 
+      let x = Predef.tk 2 lexem in
+    table { 
+      SF Sg Nom => x + "ja";
+      SF Sg Gen => x + "i";
+      SF Sg Dat => x + "i";
+      SF Sg Acc => x + "ję";
+      SF Sg Instr => x + "ją";
+      SF Sg Loc => x + "i";
+      SF Sg Voc => x + "jo";
+      SF Pl Nom => x + "je";
+      SF Pl Gen => x + "jów";
+      SF Pl Dat => x + "jom";
+      SF Pl Acc => x + "jów";
+      SF Pl Instr => x + "jami";
+      SF Pl Loc => x + "jach";
+      SF Pl Voc => x + "je"
+    };
+
+    oper mkNTable0721: Str -> SubstForm => Str; --%
+    oper mkNTable0721 lexem = 
+      let x = Predef.tk 1 lexem in
+    table { 
+      SF Sg Nom => x + "a";
+      SF Sg Gen => x + "y";
+      SF Sg Dat => x + "ze";
+      SF Sg Acc => x + "ę";
+      SF Sg Instr => x + "ą";
+      SF Sg Loc => x + "ze";
+      SF Sg Voc => x + "o";
+      SF Pl Nom => x + "zy";
+      SF Pl Gen => x + "ów";
+      SF Pl Dat => x + "om";
+      SF Pl Acc => x + "ów";
+      SF Pl Instr => x + "ami";
+      SF Pl Loc => x + "ach";
+      SF Pl Voc => x + "zy"
+    };
+
+    oper mkNTable0722: Str -> SubstForm => Str; --%
+    oper mkNTable0722 lexem = 
+      let x = Predef.tk 1 lexem in
+    table { 
+      SF Sg Nom => x + "ź";
+      SF Sg Gen => x + "zia";
+      SF Sg Dat => x + "ziowi";
+      SF Sg Acc => x + "ź";
+      SF Sg Instr => x + "ziem";
+      SF Sg Loc => x + "ziu";
+      SF Sg Voc => x + "ziu";
+      SF Pl Nom => x + "zie";
+      SF Pl Gen => x + "ziów";
+      SF Pl Dat => x + "ziom";
+      SF Pl Acc => x + "zie";
+      SF Pl Instr => x + "ziami";
+      SF Pl Loc => x + "ziach";
+      SF Pl Voc => x + "zie"
+    };
+
+    oper mkNTable0723: Str -> SubstForm => Str; --%
+    oper mkNTable0723 lexem = 
+      let x = Predef.tk 1 lexem in
+    table { 
+      SF Sg Nom => x + "t";
+      SF Sg Gen => x + "tu";
+      SF Sg Dat => x + "towi";
+      SF Sg Acc => x + "t";
+      SF Sg Instr => x + "tem";
+      SF Sg Loc => x + "cie";
+      SF Sg Voc => x + "cie";
+      SF Pl Nom => x + "ta";
+      SF Pl Gen => x + "tów";
+      SF Pl Dat => x + "tom";
+      SF Pl Acc => x + "ta";
+      SF Pl Instr => x + "tami";
+      SF Pl Loc => x + "tach";
+      SF Pl Voc => x + "ta"
+    };
+
+    oper mkNTable0724: Str -> SubstForm => Str; --%
+    oper mkNTable0724 lexem = 
+      let x = Predef.tk 3 lexem in
+    table { 
+      SF Sg Nom => x + "zda";
+      SF Sg Gen => x + "zdy";
+      SF Sg Dat => x + "ździe";
+      SF Sg Acc => x + "zdę";
+      SF Sg Instr => x + "zdą";
+      SF Sg Loc => x + "ździe";
+      SF Sg Voc => x + "zdo";
+      SF Pl Nom => x + "zdowie";
+      SF Pl Gen => x + "zdów";
+      SF Pl Dat => x + "zdom";
+      SF Pl Acc => x + "zdów";
+      SF Pl Instr => x + "zdami";
+      SF Pl Loc => x + "zdach";
+      SF Pl Voc => x + "zdowie"
+    };
+
+    oper mkNTable0725: Str -> SubstForm => Str; --%
+    oper mkNTable0725 lexem = 
+      let x = Predef.tk 2 lexem in
+    table { 
+      SF Sg Nom => x + "ąź";
+      SF Sg Gen => x + "ęzi";
+      SF Sg Dat => x + "ęzi";
+      SF Sg Acc => x + "ąź";
+      SF Sg Instr => x + "ęzią";
+      SF Sg Loc => x + "ęzi";
+      SF Sg Voc => x + "ęzi";
+      SF Pl Nom => x + "ęzie";
+      SF Pl Gen => x + "ęzi";
+      SF Pl Dat => x + "ęziom";
+      SF Pl Acc => x + "ęzie";
+      SF Pl Instr => x + "ęźmi";
+      SF Pl Loc => x + "ęziach";
+      SF Pl Voc => x + "ęzie"
+    };
+
+    oper mkNTable0727: Str -> SubstForm => Str; --%
+    oper mkNTable0727 lexem = 
+      let x = Predef.tk 1 lexem in
+    table { 
+      SF Sg Nom => x + "a";
+      SF Sg Gen => x + "y";
+      SF Sg Dat => x + "i";
+      SF Sg Acc => x + "ę";
+      SF Sg Instr => x + "ą";
+      SF Sg Loc => x + "i";
+      SF Sg Voc => x + "o";
+      SF Pl Nom => x + "y";
+      SF Pl Gen => x + "i";
+      SF Pl Dat => x + "om";
+      SF Pl Acc => x + "y";
+      SF Pl Instr => x + "ami";
+      SF Pl Loc => x + "ach";
+      SF Pl Voc => x + "y"
+    };
+
+    oper mkNTable0728: Str -> SubstForm => Str; --%
+    oper mkNTable0728 lexem = 
+      let x = Predef.tk 3 lexem in
+    table { 
+      SF Sg Nom => x + "iez";
+      SF Sg Gen => x + "za";
+      SF Sg Dat => x + "zowi";
+      SF Sg Acc => x + "za";
+      SF Sg Instr => x + "zem";
+      SF Sg Loc => x + "zie";
+      SF Sg Voc => x + "zie";
+      SF Pl Nom => x + "zy";
+      SF Pl Gen => x + "zów";
+      SF Pl Dat => x + "zom";
+      SF Pl Acc => x + "zy";
+      SF Pl Instr => x + "zami";
+      SF Pl Loc => x + "zach";
+      SF Pl Voc => x + "zy"
+    };
+
+    oper mkNTable0729: Str -> SubstForm => Str; --%
+    oper mkNTable0729 lexem = 
+      let x = Predef.tk 3 lexem in
+    table { 
+      SF Sg Nom => x + "zło";
+      SF Sg Gen => x + "zła";
+      SF Sg Dat => x + "złu";
+      SF Sg Acc => x + "zło";
+      SF Sg Instr => x + "złem";
+      SF Sg Loc => x + "źle";
+      SF Sg Voc => x + "zło";
+      SF Pl Nom => x + "zła";
+      SF Pl Gen => x + "zł";
+      SF Pl Dat => x + "złom";
+      SF Pl Acc => x + "zła";
+      SF Pl Instr => x + "złami";
+      SF Pl Loc => x + "złach";
+      SF Pl Voc => x + "zła"
+    };
+
+    oper mkNTable0730: Str -> SubstForm => Str; --%
+    oper mkNTable0730 lexem = 
+      let x = Predef.tk 4 lexem in
+    table { 
+      SF Sg Nom => x + "azdo";
+      SF Sg Gen => x + "azda";
+      SF Sg Dat => x + "azdu";
+      SF Sg Acc => x + "azdo";
+      SF Sg Instr => x + "azdem";
+      SF Sg Loc => x + "eździe";
+      SF Sg Voc => x + "azdo";
+      SF Pl Nom => x + "azda";
+      SF Pl Gen => x + "azd";
+      SF Pl Dat => x + "azdom";
+      SF Pl Acc => x + "azda";
+      SF Pl Instr => x + "azdami";
+      SF Pl Loc => x + "azdach";
+      SF Pl Voc => x + "azda"
+    };
+
+    oper mkNTable0731: Str -> SubstForm => Str; --%
+    oper mkNTable0731 lexem = 
+      let x = Predef.tk 2 lexem in
+    table { 
+      SF Sg Nom => x + "ój";
+      SF Sg Gen => x + "oja";
+      SF Sg Dat => x + "ojowi";
+      SF Sg Acc => x + "oja";
+      SF Sg Instr => x + "ojem";
+      SF Sg Loc => x + "oju";
+      SF Sg Voc => x + "oju";
+      SF Pl Nom => x + "oje";
+      SF Pl Gen => x + "ojów";
+      SF Pl Dat => x + "ojom";
+      SF Pl Acc => x + "ojów";
+      SF Pl Instr => x + "ojami";
+      SF Pl Loc => x + "ojach";
+      SF Pl Voc => x + "oje"
+    };
+
+    oper mkNTable0732: Str -> SubstForm => Str; --%
+    oper mkNTable0732 lexem = 
+      let x = Predef.tk 1 lexem in
+    table { 
+      SF Sg Nom => x + "ź";
+      SF Sg Gen => x + "zi";
+      SF Sg Dat => x + "zi";
+      SF Sg Acc => x + "ź";
+      SF Sg Instr => x + "zią";
+      SF Sg Loc => x + "zi";
+      SF Sg Voc => x + "zi";
+      SF Pl Nom => x + "zi";
+      SF Pl Gen => x + "zi";
+      SF Pl Dat => x + "ziom";
+      SF Pl Acc => x + "zi";
+      SF Pl Instr => x + "ziami";
+      SF Pl Loc => x + "ziach";
+      SF Pl Voc => x + "zi"
+    };
+
+    oper mkNTable0733: Str -> SubstForm => Str; --%
+    oper mkNTable0733 lexem = 
+      let x = Predef.tk 2 lexem in
+    table { 
+      SF Sg Nom => x + "ąb";
+      SF Sg Gen => x + "ębia";
+      SF Sg Dat => x + "ębiowi";
+      SF Sg Acc => x + "ębia";
+      SF Sg Instr => x + "ębiem";
+      SF Sg Loc => x + "ębiu";
+      SF Sg Voc => x + "ębiu";
+      SF Pl Nom => x + "ębie";
+      SF Pl Gen => x + "ębi";
+      SF Pl Dat => x + "ębiom";
+      SF Pl Acc => x + "ębie";
+      SF Pl Instr => x + "ębiami";
+      SF Pl Loc => x + "ębiach";
+      SF Pl Voc => x + "ębie"
+    };
+
+    oper mkNTable0734: Str -> SubstForm => Str; --%
+    oper mkNTable0734 lexem = 
+      let x = Predef.tk 1 lexem in
+    table { 
+      SF Sg Nom => x + "ć";
+      SF Sg Gen => x + "cia";
+      SF Sg Dat => x + "ciowi";
+      SF Sg Acc => x + "cia";
+      SF Sg Instr => x + "ciem";
+      SF Sg Loc => x + "ciu";
+      SF Sg Voc => x + "ciu";
+      SF Pl Nom => x + "cie";
+      SF Pl Gen => x + "ci";
+      SF Pl Dat => x + "ciom";
+      SF Pl Acc => x + "ci";
+      SF Pl Instr => x + "ćmi";
+      SF Pl Loc => x + "ciach";
+      SF Pl Voc => x + "cie"
+    };
+
+    oper mkNTable0736: Str -> SubstForm => Str; --%
+    oper mkNTable0736 lexem = 
+      let x = Predef.tk 2 lexem in
+    table { 
+      SF Sg Nom => x + "ra";
+      SF Sg Gen => x + "ry";
+      SF Sg Dat => x + "rze";
+      SF Sg Acc => x + "rę";
+      SF Sg Instr => x + "rą";
+      SF Sg Loc => x + "rze";
+      SF Sg Voc => x + "ro";
+      SF Pl Nom => x + "ry";
+      SF Pl Gen => x + "ier";
+      SF Pl Dat => x + "rom";
+      SF Pl Acc => x + "ry";
+      SF Pl Instr => x + "rami";
+      SF Pl Loc => x + "rach";
+      SF Pl Voc => x + "ry"
+    };
+
+    oper mkNTable0738: Str -> SubstForm => Str; --%
+    oper mkNTable0738 lexem = 
+      let x = Predef.tk 4 lexem in
+    table { 
+      SF Sg Nom => x + "odza";
+      SF Sg Gen => x + "odzy";
+      SF Sg Dat => x + "odzy";
+      SF Sg Acc => x + "odzę";
+      SF Sg Instr => x + "odzą";
+      SF Sg Loc => x + "odzy";
+      SF Sg Voc => x + "odzo";
+      SF Pl Nom => x + "odze";
+      SF Pl Gen => x + "ódz";
+      SF Pl Dat => x + "odzom";
+      SF Pl Acc => x + "odze";
+      SF Pl Instr => x + "odzami";
+      SF Pl Loc => x + "odzach";
+      SF Pl Voc => x + "odze"
+    };
+
+    oper mkNTable0740: Str -> SubstForm => Str; --%
+    oper mkNTable0740 lexem = 
+      let x = Predef.tk 4 lexem in
+    table { 
+      SF Sg Nom => x + "oźba";
+      SF Sg Gen => x + "oźby";
+      SF Sg Dat => x + "oźbie";
+      SF Sg Acc => x + "oźbę";
+      SF Sg Instr => x + "oźbą";
+      SF Sg Loc => x + "oźbie";
+      SF Sg Voc => x + "oźbo";
+      SF Pl Nom => x + "oźby";
+      SF Pl Gen => x + "óźb";
+      SF Pl Dat => x + "oźbom";
+      SF Pl Acc => x + "oźby";
+      SF Pl Instr => x + "oźbami";
+      SF Pl Loc => x + "oźbach";
+      SF Pl Voc => x + "oźby"
+    };
+
+    oper mkNTable0741: Str -> SubstForm => Str; --%
+    oper mkNTable0741 lexem = 
+      let x = Predef.tk 4 lexem in
+    table { 
+      SF Sg Nom => x + "zień";
+      SF Sg Gen => x + "nia";
+      SF Sg Dat => x + "niowi";
+      SF Sg Acc => x + "zień";
+      SF Sg Instr => x + "niem";
+      SF Sg Loc => x + "niu";
+      SF Sg Voc => x + "niu";
+      SF Pl Nom => x + "nie";
+      SF Pl Gen => x + "niów";
+      SF Pl Dat => x + "niom";
+      SF Pl Acc => x + "nie";
+      SF Pl Instr => x + "niami";
+      SF Pl Loc => x + "niach";
+      SF Pl Voc => x + "nie"
+    };
+
+    oper mkNTable0742: Str -> SubstForm => Str; --%
+    oper mkNTable0742 lexem = 
+      let x = Predef.tk 3 lexem in
+    table { 
+      SF Sg Nom => x + "zeł";
+      SF Sg Gen => x + "zła";
+      SF Sg Dat => x + "złowi";
+      SF Sg Acc => x + "zeł";
+      SF Sg Instr => x + "złem";
+      SF Sg Loc => x + "źle";
+      SF Sg Voc => x + "źle";
+      SF Pl Nom => x + "zły";
+      SF Pl Gen => x + "złów";
+      SF Pl Dat => x + "złom";
+      SF Pl Acc => x + "zły";
+      SF Pl Instr => x + "złami";
+      SF Pl Loc => x + "złach";
+      SF Pl Voc => x + "zły"
+    };
+
+    oper mkNTable0743: Str -> SubstForm => Str; --%
+    oper mkNTable0743 lexem = 
+      let x = Predef.tk 2 lexem in
+    table { 
+      SF Sg Nom => x + "ód";
+      SF Sg Gen => x + "oda";
+      SF Sg Dat => x + "odowi";
+      SF Sg Acc => x + "oda";
+      SF Sg Instr => x + "odem";
+      SF Sg Loc => x + "odzie";
+      SF Sg Voc => x + "odzie";
+      SF Pl Nom => x + "ody";
+      SF Pl Gen => x + "odów";
+      SF Pl Dat => x + "odom";
+      SF Pl Acc => x + "ody";
+      SF Pl Instr => x + "odami";
+      SF Pl Loc => x + "odach";
+      SF Pl Voc => x + "ody"
+    };
+
+    oper mkNTable0745: Str -> SubstForm => Str; --%
+    oper mkNTable0745 lexem = 
+      let x = Predef.tk 3 lexem in
+    table { 
+      SF Sg Nom => x + "ódź";
+      SF Sg Gen => x + "odzi";
+      SF Sg Dat => x + "odzi";
+      SF Sg Acc => x + "ódź";
+      SF Sg Instr => x + "odzią";
+      SF Sg Loc => x + "odzi";
+      SF Sg Voc => x + "odzi";
+      SF Pl Nom => x + "odzie";
+      SF Pl Gen => x + "odzi";
+      SF Pl Dat => x + "odziom";
+      SF Pl Acc => x + "odzie";
+      SF Pl Instr => x + "odziami";
+      SF Pl Loc => x + "odziach";
+      SF Pl Voc => x + "odzie"
+    };
+
+    oper mkNTable0748: Str -> SubstForm => Str; --%
+    oper mkNTable0748 lexem = 
+      let x = Predef.tk 4 lexem in
+    table { 
+      SF Sg Nom => x + "azda";
+      SF Sg Gen => x + "azdy";
+      SF Sg Dat => x + "eździe";
+      SF Sg Acc => x + "azdę";
+      SF Sg Instr => x + "azdą";
+      SF Sg Loc => x + "eździe";
+      SF Sg Voc => x + "azdo";
+      SF Pl Nom => x + "azdy";
+      SF Pl Gen => x + "azd";
+      SF Pl Dat => x + "azdom";
+      SF Pl Acc => x + "azdy";
+      SF Pl Instr => x + "azdami";
+      SF Pl Loc => x + "azdach";
+      SF Pl Voc => x + "azdy"
+    };
+
+    oper mkNTable0749: Str -> SubstForm => Str; --%
+    oper mkNTable0749 lexem = 
+      let x = Predef.tk 2 lexem in
+    table { 
+      SF Sg Nom => x + "zd";
+      SF Sg Gen => x + "zdu";
+      SF Sg Dat => x + "zdowi";
+      SF Sg Acc => x + "zd";
+      SF Sg Instr => x + "zdem";
+      SF Sg Loc => x + "ździe";
+      SF Sg Voc => x + "ździe";
+      SF Pl Nom => x + "zdy";
+      SF Pl Gen => x + "zdów";
+      SF Pl Dat => x + "zdom";
+      SF Pl Acc => x + "zdy";
+      SF Pl Instr => x + "zdami";
+      SF Pl Loc => x + "zdach";
+      SF Pl Voc => x + "zdy"
+    };
+
+    oper mkNTable0750: Str -> SubstForm => Str; --%
+    oper mkNTable0750 lexem = 
+      let x = Predef.tk 4 lexem in
+    table { 
+      SF Sg Nom => x + "óźdź";
+      SF Sg Gen => x + "oździa";
+      SF Sg Dat => x + "oździowi";
+      SF Sg Acc => x + "oździa";
+      SF Sg Instr => x + "oździem";
+      SF Sg Loc => x + "oździu";
+      SF Sg Voc => x + "oździu";
+      SF Pl Nom => x + "oździe";
+      SF Pl Gen => x + "oździ";
+      SF Pl Dat => x + "oździom";
+      SF Pl Acc => x + "oździe";
+      SF Pl Instr => x + "oździami";
+      SF Pl Loc => x + "oździach";
+      SF Pl Voc => x + "oździe"
+    };
+
+    oper mkNTable0751: Str -> SubstForm => Str; --%
+    oper mkNTable0751 lexem = 
+      let x = Predef.tk 4 lexem in
+    table { 
+      SF Sg Nom => x + "óźdź";
+      SF Sg Gen => x + "oździa";
+      SF Sg Dat => x + "oździowi";
+      SF Sg Acc => x + "óźdź";
+      SF Sg Instr => x + "oździem";
+      SF Sg Loc => x + "oździu";
+      SF Sg Voc => x + "oździu";
+      SF Pl Nom => x + "oździe";
+      SF Pl Gen => x + "oździ";
+      SF Pl Dat => x + "oździom";
+      SF Pl Acc => x + "oździe";
+      SF Pl Instr => x + "oźdźmi";
+      SF Pl Loc => x + "oździach";
+      SF Pl Voc => x + "oździe"
+    };
+
+    oper mkNTable0752: Str -> SubstForm => Str; --%
+    oper mkNTable0752 lexem = 
+      let x = Predef.tk 2 lexem in
+    table { 
+      SF Sg Nom => x + "za";
+      SF Sg Gen => x + "zy";
+      SF Sg Dat => x + "zie";
+      SF Sg Acc => x + "zę";
+      SF Sg Instr => x + "zą";
+      SF Sg Loc => x + "zie";
+      SF Sg Voc => x + "zo";
+      SF Pl Nom => x + "zy";
+      SF Pl Gen => x + "iez";
+      SF Pl Dat => x + "zom";
+      SF Pl Acc => x + "zy";
+      SF Pl Instr => x + "zami";
+      SF Pl Loc => x + "zach";
+      SF Pl Voc => x + "zy"
+    };
+
+    oper mkNTable0753: Str -> SubstForm => Str; --%
+    oper mkNTable0753 lexem = 
+      let x = Predef.tk 3 lexem in
+    table { 
+      SF Sg Nom => x + "zło";
+      SF Sg Gen => x + "zła";
+      SF Sg Dat => x + "złu";
+      SF Sg Acc => x + "zło";
+      SF Sg Instr => x + "złem";
+      SF Sg Loc => x + "źle";
+      SF Sg Voc => x + "zło";
+      SF Pl Nom => x + "zła";
+      SF Pl Gen => x + "zeł";
+      SF Pl Dat => x + "złom";
+      SF Pl Acc => x + "zła";
+      SF Pl Instr => x + "złami";
+      SF Pl Loc => x + "złach";
+      SF Pl Voc => x + "zła"
+    };
+
+    oper mkNTable0754: Str -> SubstForm => Str; --%
+    oper mkNTable0754 lexem = 
+      let x = Predef.tk 2 lexem in
+    table { 
+      SF Sg Nom => x + "ów";
+      SF Sg Gen => x + "owia";
+      SF Sg Dat => x + "owiowi";
+      SF Sg Acc => x + "ów";
+      SF Sg Instr => x + "owiem";
+      SF Sg Loc => x + "owiu";
+      SF Sg Voc => x + "owiu";
+      SF Pl Nom => x + "owie";
+      SF Pl Gen => x + "owi";
+      SF Pl Dat => x + "owiom";
+      SF Pl Acc => x + "owie";
+      SF Pl Instr => x + "owiami";
+      SF Pl Loc => x + "owiach";
+      SF Pl Voc => x + "owie"
+    };
+
+    oper mkNTable0755: Str -> SubstForm => Str; --%
+    oper mkNTable0755 lexem = 
+      let x = Predef.tk 1 lexem in
+    table { 
+      SF Sg Nom => x + "a";
+      SF Sg Gen => x + "ej";
+      SF Sg Dat => x + "ej";
+      SF Sg Acc => x + "ą";
+      SF Sg Instr => x + "ą";
+      SF Sg Loc => x + "ej";
+      SF Sg Voc => x + "a";
+      SF Pl Nom => x + "e";
+      SF Pl Gen => x + "ch";
+      SF Pl Dat => x + "m";
+      SF Pl Acc => x + "e";
+      SF Pl Instr => x + "mi";
+      SF Pl Loc => x + "ch";
+      SF Pl Voc => x + "e"
+    };
+
+    oper mkNTable0756: Str -> SubstForm => Str; --%
+    oper mkNTable0756 lexem = 
+      let x = Predef.tk 2 lexem in
+    table { 
+      SF Sg Nom => x + "ąb";
+      SF Sg Gen => x + "ębi";
+      SF Sg Dat => x + "ębi";
+      SF Sg Acc => x + "ąb";
+      SF Sg Instr => x + "ębią";
+      SF Sg Loc => x + "ębi";
+      SF Sg Voc => x + "ębi";
+      SF Pl Nom => x + "ębie";
+      SF Pl Gen => x + "ębi";
+      SF Pl Dat => x + "ębiom";
+      SF Pl Acc => x + "ębie";
+      SF Pl Instr => x + "ębiami";
+      SF Pl Loc => x + "ębiach";
+      SF Pl Voc => x + "ębie"
+    };
+
+    oper mkNTable0757: Str -> SubstForm => Str; --%
+    oper mkNTable0757 lexem = 
+      let x = Predef.tk 1 lexem in
+    table { 
+      SF Sg Nom => x + "ś";
+      SF Sg Gen => x + "si";
+      SF Sg Dat => x + "si";
+      SF Sg Acc => x + "ś";
+      SF Sg Instr => x + "sią";
+      SF Sg Loc => x + "si";
+      SF Sg Voc => x + "si";
+      SF Pl Nom => x + "si";
+      SF Pl Gen => x + "si";
+      SF Pl Dat => x + "siom";
+      SF Pl Acc => x + "si";
+      SF Pl Instr => x + "śmi";
+      SF Pl Loc => x + "siach";
+      SF Pl Voc => x + "si"
+    };
+
+    oper mkNTable0760: Str -> SubstForm => Str; --%
+    oper mkNTable0760 lexem = 
+      let x = Predef.tk 1 lexem in
+    table { 
+      SF Sg Nom => x + "a";
+      SF Sg Gen => x + "y";
+      SF Sg Dat => x + "y";
+      SF Sg Acc => x + "ę";
+      SF Sg Instr => x + "ą";
+      SF Sg Loc => x + "y";
+      SF Sg Voc => x + "o";
+      SF Pl Nom => x + "e";
+      SF Pl Gen => x + "ów";
+      SF Pl Dat => x + "om";
+      SF Pl Acc => x + "ów";
+      SF Pl Instr => x + "ami";
+      SF Pl Loc => x + "ach";
+      SF Pl Voc => x + "e"
+    };
+
+    oper mkNTable0762: Str -> SubstForm => Str; --%
+    oper mkNTable0762 lexem = 
+      let x = Predef.tk 2 lexem in
+    table { 
+      SF Sg Nom => x + "el";
+      SF Sg Gen => x + "la";
+      SF Sg Dat => x + "lowi";
+      SF Sg Acc => x + "la";
+      SF Sg Instr => x + "lem";
+      SF Sg Loc => x + "lu";
+      SF Sg Voc => x + "lu";
+      SF Pl Nom => x + "le";
+      SF Pl Gen => x + "lów";
+      SF Pl Dat => x + "lom";
+      SF Pl Acc => x + "lów";
+      SF Pl Instr => x + "lami";
+      SF Pl Loc => x + "lach";
+      SF Pl Voc => x + "le"
+    };
+
+    oper mkNTable0763: Str -> SubstForm => Str; --%
+    oper mkNTable0763 lexem = 
+      let x = Predef.tk 2 lexem in
+    table { 
+      SF Sg Nom => x + "ól";
+      SF Sg Gen => x + "oli";
+      SF Sg Dat => x + "oli";
+      SF Sg Acc => x + "ól";
+      SF Sg Instr => x + "olą";
+      SF Sg Loc => x + "oli";
+      SF Sg Voc => x + "oli";
+      SF Pl Nom => x + "ole";
+      SF Pl Gen => x + "oli";
+      SF Pl Dat => x + "olom";
+      SF Pl Acc => x + "ole";
+      SF Pl Instr => x + "olami";
+      SF Pl Loc => x + "olach";
+      SF Pl Voc => x + "ole"
+    };
+
+    oper mkNTable0768: Str -> SubstForm => Str; --%
+    oper mkNTable0768 lexem = 
+      let x = Predef.tk 2 lexem in
+    table { 
+      SF Sg Nom => x + "co";
+      SF Sg Gen => x + "ca";
+      SF Sg Dat => x + "cu";
+      SF Sg Acc => x + "co";
+      SF Sg Instr => x + "cem";
+      SF Sg Loc => x + "cu";
+      SF Sg Voc => x + "co";
+      SF Pl Nom => x + "ca";
+      SF Pl Gen => x + "ec";
+      SF Pl Dat => x + "com";
+      SF Pl Acc => x + "ca";
+      SF Pl Instr => x + "cami";
+      SF Pl Loc => x + "cach";
+      SF Pl Voc => x + "ca"
+    };
+
+    oper mkNTable0769: Str -> SubstForm => Str; --%
+    oper mkNTable0769 lexem = 
+      let x = Predef.tk 2 lexem in
+    table { 
+      SF Sg Nom => x + "ąb";
+      SF Sg Gen => x + "ębu";
+      SF Sg Dat => x + "ębowi";
+      SF Sg Acc => x + "ąb";
+      SF Sg Instr => x + "ębiem";
+      SF Sg Loc => x + "ębiu";
+      SF Sg Voc => x + "ębiu";
+      SF Pl Nom => x + "ęby";
+      SF Pl Gen => x + "ębów";
+      SF Pl Dat => x + "ębom";
+      SF Pl Acc => x + "ęby";
+      SF Pl Instr => x + "ębiami";
+      SF Pl Loc => x + "ębiach";
+      SF Pl Voc => x + "ęby"
+    };
+
+    oper mkNTable0770: Str -> SubstForm => Str; --%
+    oper mkNTable0770 lexem = 
+      let x = Predef.tk 4 lexem in
+    table { 
+      SF Sg Nom => x + "siek";
+      SF Sg Gen => x + "śka";
+      SF Sg Dat => x + "śkowi";
+      SF Sg Acc => x + "siek";
+      SF Sg Instr => x + "śkiem";
+      SF Sg Loc => x + "śku";
+      SF Sg Voc => x + "śku";
+      SF Pl Nom => x + "śki";
+      SF Pl Gen => x + "śków";
+      SF Pl Dat => x + "śkom";
+      SF Pl Acc => x + "śki";
+      SF Pl Instr => x + "śkami";
+      SF Pl Loc => x + "śkach";
+      SF Pl Voc => x + "śki"
+    };
+
+    oper mkNTable0771: Str -> SubstForm => Str; --%
+    oper mkNTable0771 lexem = 
+      let x = Predef.tk 1 lexem in
+    table { 
+      SF Sg Nom => x + "ź";
+      SF Sg Gen => x + "zia";
+      SF Sg Dat => x + "ziowi";
+      SF Sg Acc => x + "zia";
+      SF Sg Instr => x + "ziem";
+      SF Sg Loc => x + "ziu";
+      SF Sg Voc => x + "ziu";
+      SF Pl Nom => x + "zie";
+      SF Pl Gen => x + "zi";
+      SF Pl Dat => x + "ziom";
+      SF Pl Acc => x + "zie";
+      SF Pl Instr => x + "ziami";
+      SF Pl Loc => x + "ziach";
+      SF Pl Voc => x + "zie"
+    };
+
+    oper mkNTable0773: Str -> SubstForm => Str; --%
+    oper mkNTable0773 lexem = 
+      let x = Predef.tk 0 lexem in
+    table { 
+      SF Sg Nom => x + "";
+      SF Sg Gen => x + "iu";
+      SF Sg Dat => x + "iowi";
+      SF Sg Acc => x + "";
+      SF Sg Instr => x + "iem";
+      SF Sg Loc => x + "iu";
+      SF Sg Voc => x + "iu";
+      SF Pl Nom => x + "ie";
+      SF Pl Gen => x + "iów";
+      SF Pl Dat => x + "iom";
+      SF Pl Acc => x + "ie";
+      SF Pl Instr => x + "iami";
+      SF Pl Loc => x + "iach";
+      SF Pl Voc => x + "ie"
+    };
+
+    oper mkNTable0775: Str -> SubstForm => Str; --%
+    oper mkNTable0775 lexem = 
+      let x = Predef.tk 1 lexem in
+    table { 
+      SF Sg Nom => x + "ń";
+      SF Sg Gen => x + "nia";
+      SF Sg Dat => x + "niowi";
+      SF Sg Acc => x + "nia";
+      SF Sg Instr => x + "niem";
+      SF Sg Loc => x + "niu";
+      SF Sg Voc => x + "niu";
+      SF Pl Nom => x + "nie";
+      SF Pl Gen => x + "ni";
+      SF Pl Dat => x + "niom";
+      SF Pl Acc => x + "ni";
+      SF Pl Instr => x + "niami";
+      SF Pl Loc => x + "niach";
+      SF Pl Voc => x + "nie"
+    };
+
+    oper mkNTable0776: Str -> SubstForm => Str; --%
+    oper mkNTable0776 lexem = 
+      let x = Predef.tk 4 lexem in
+    table { 
+      SF Sg Nom => x + "ziec";
+      SF Sg Gen => x + "źca";
+      SF Sg Dat => x + "źcowi";
+      SF Sg Acc => x + "źca";
+      SF Sg Instr => x + "źcem";
+      SF Sg Loc => x + "źcu";
+      SF Sg Voc => x + "źcze";
+      SF Pl Nom => x + "źcy";
+      SF Pl Gen => x + "źców";
+      SF Pl Dat => x + "źcom";
+      SF Pl Acc => x + "źców";
+      SF Pl Instr => x + "źcami";
+      SF Pl Loc => x + "źcach";
+      SF Pl Voc => x + "źcy"
+    };
+
+    oper mkNTable0777: Str -> SubstForm => Str; --%
+    oper mkNTable0777 lexem = 
+      let x = Predef.tk 1 lexem in
+    table { 
+      SF Sg Nom => x + "y";
+      SF Sg Gen => x + "ya";
+      SF Sg Dat => x + "yowi";
+      SF Sg Acc => x + "ya";
+      SF Sg Instr => x + "yem";
+      SF Sg Loc => x + "yu";
+      SF Sg Voc => x + "yu";
+      SF Pl Nom => x + "ye";
+      SF Pl Gen => x + "i";
+      SF Pl Dat => x + "yom";
+      SF Pl Acc => x + "i";
+      SF Pl Instr => x + "yami";
+      SF Pl Loc => x + "yach";
+      SF Pl Voc => x + "ye"
+    };
+
+    oper mkNTable0778: Str -> SubstForm => Str; --%
+    oper mkNTable0778 lexem = 
+      let x = Predef.tk 2 lexem in
+    table { 
+      SF Sg Nom => x + "ła";
+      SF Sg Gen => x + "ły";
+      SF Sg Dat => x + "le";
+      SF Sg Acc => x + "łę";
+      SF Sg Instr => x + "łą";
+      SF Sg Loc => x + "le";
+      SF Sg Voc => x + "ło";
+      SF Pl Nom => x + "ły";
+      SF Pl Gen => x + "eł";
+      SF Pl Dat => x + "łom";
+      SF Pl Acc => x + "ły";
+      SF Pl Instr => x + "łami";
+      SF Pl Loc => x + "łach";
+      SF Pl Voc => x + "ły"
+    };
+
+    oper mkNTable0779: Str -> SubstForm => Str; --%
+    oper mkNTable0779 lexem = 
+      let x = Predef.tk 2 lexem in
+    table { 
+      SF Sg Nom => x + "ła";
+      SF Sg Gen => x + "ły";
+      SF Sg Dat => x + "le";
+      SF Sg Acc => x + "łę";
+      SF Sg Instr => x + "łą";
+      SF Sg Loc => x + "le";
+      SF Sg Voc => x + "ło";
+      SF Pl Nom => x + "li";
+      SF Pl Gen => x + "łów";
+      SF Pl Dat => x + "łom";
+      SF Pl Acc => x + "łów";
+      SF Pl Instr => x + "łami";
+      SF Pl Loc => x + "łach";
+      SF Pl Voc => x + "li"
+    };
+
+    oper mkNTable0780: Str -> SubstForm => Str; --%
+    oper mkNTable0780 lexem = 
+      let x = Predef.tk 2 lexem in
+    table { 
+      SF Sg Nom => x + "eć";
+      SF Sg Gen => x + "cia";
+      SF Sg Dat => x + "ciowi";
+      SF Sg Acc => x + "cia";
+      SF Sg Instr => x + "ciem";
+      SF Sg Loc => x + "ciu";
+      SF Sg Voc => x + "ciu";
+      SF Pl Nom => x + "cie";
+      SF Pl Gen => x + "ci";
+      SF Pl Dat => x + "ciom";
+      SF Pl Acc => x + "cie";
+      SF Pl Instr => x + "ciami";
+      SF Pl Loc => x + "ciach";
+      SF Pl Voc => x + "cie"
+    };
+
+    oper mkNTable0781: Str -> SubstForm => Str; --%
+    oper mkNTable0781 lexem = 
+      let x = Predef.tk 2 lexem in
+    table { 
+      SF Sg Nom => x + "eć";
+      SF Sg Gen => x + "cia";
+      SF Sg Dat => x + "ciowi";
+      SF Sg Acc => x + "eć";
+      SF Sg Instr => x + "ciem";
+      SF Sg Loc => x + "ciu";
+      SF Sg Voc => x + "ciu";
+      SF Pl Nom => x + "cie";
+      SF Pl Gen => x + "ci";
+      SF Pl Dat => x + "ciom";
+      SF Pl Acc => x + "cie";
+      SF Pl Instr => x + "ciami";
+      SF Pl Loc => x + "ciach";
+      SF Pl Voc => x + "cie"
+    };
+
+    oper mkNTable0782: Str -> SubstForm => Str; --%
+    oper mkNTable0782 lexem = 
+      let x = Predef.tk 1 lexem in
+    table { 
+      SF Sg Nom => x + "ś";
+      SF Sg Gen => x + "sia";
+      SF Sg Dat => x + "siowi";
+      SF Sg Acc => x + "sia";
+      SF Sg Instr => x + "siem";
+      SF Sg Loc => x + "siu";
+      SF Sg Voc => x + "siu";
+      SF Pl Nom => x + "sie";
+      SF Pl Gen => x + "si";
+      SF Pl Dat => x + "siom";
+      SF Pl Acc => x + "sie";
+      SF Pl Instr => x + "siami";
+      SF Pl Loc => x + "siach";
+      SF Pl Voc => x + "sie"
+    };
+
+    oper mkNTable0783: Str -> SubstForm => Str; --%
+    oper mkNTable0783 lexem = 
+      let x = Predef.tk 2 lexem in
+    table { 
+      SF Sg Nom => x + "ma";
+      SF Sg Gen => x + "my";
+      SF Sg Dat => x + "mie";
+      SF Sg Acc => x + "mę";
+      SF Sg Instr => x + "mą";
+      SF Sg Loc => x + "mie";
+      SF Sg Voc => x + "mo";
+      SF Pl Nom => x + "my";
+      SF Pl Gen => x + "em";
+      SF Pl Dat => x + "mom";
+      SF Pl Acc => x + "my";
+      SF Pl Instr => x + "mami";
+      SF Pl Loc => x + "mach";
+      SF Pl Voc => x + "my"
+    };
+
+    oper mkNTable0784: Str -> SubstForm => Str; --%
+    oper mkNTable0784 lexem = 
+      let x = Predef.tk 3 lexem in
+    table { 
+      SF Sg Nom => x + "zeł";
+      SF Sg Gen => x + "ła";
+      SF Sg Dat => x + "łowi";
+      SF Sg Acc => x + "ła";
+      SF Sg Instr => x + "łem";
+      SF Sg Loc => x + "le";
+      SF Sg Voc => x + "le";
+      SF Pl Nom => x + "ły";
+      SF Pl Gen => x + "łów";
+      SF Pl Dat => x + "łom";
+      SF Pl Acc => x + "ły";
+      SF Pl Instr => x + "łami";
+      SF Pl Loc => x + "łach";
+      SF Pl Voc => x + "ły"
+    };
+
+    oper mkNTable0785: Str -> SubstForm => Str; --%
+    oper mkNTable0785 lexem = 
+      let x = Predef.tk 2 lexem in
+    table { 
+      SF Sg Nom => x + "el";
+      SF Sg Gen => x + "lu";
+      SF Sg Dat => x + "lowi";
+      SF Sg Acc => x + "el";
+      SF Sg Instr => x + "lem";
+      SF Sg Loc => x + "lu";
+      SF Sg Voc => x + "lu";
+      SF Pl Nom => x + "le";
+      SF Pl Gen => x + "lów";
+      SF Pl Dat => x + "lom";
+      SF Pl Acc => x + "le";
+      SF Pl Instr => x + "lami";
+      SF Pl Loc => x + "lach";
+      SF Pl Voc => x + "le"
+    };
+
+    oper mkNTable0787: Str -> SubstForm => Str; --%
+    oper mkNTable0787 lexem = 
+      let x = Predef.tk 3 lexem in
+    table { 
+      SF Sg Nom => x + "iep";
+      SF Sg Gen => x + "pa";
+      SF Sg Dat => x + "powi";
+      SF Sg Acc => x + "iep";
+      SF Sg Instr => x + "pem";
+      SF Sg Loc => x + "pie";
+      SF Sg Voc => x + "pie";
+      SF Pl Nom => x + "py";
+      SF Pl Gen => x + "pów";
+      SF Pl Dat => x + "pom";
+      SF Pl Acc => x + "py";
+      SF Pl Instr => x + "pami";
+      SF Pl Loc => x + "pach";
+      SF Pl Voc => x + "py"
+    };
+
+    oper mkNTable0789: Str -> SubstForm => Str; --%
+    oper mkNTable0789 lexem = 
+      let x = Predef.tk 3 lexem in
+    table { 
+      SF Sg Nom => x + "ieł";
+      SF Sg Gen => x + "ła";
+      SF Sg Dat => x + "łowi";
+      SF Sg Acc => x + "ła";
+      SF Sg Instr => x + "łem";
+      SF Sg Loc => x + "le";
+      SF Sg Voc => x + "le";
+      SF Pl Nom => x + "ły";
+      SF Pl Gen => x + "łów";
+      SF Pl Dat => x + "łom";
+      SF Pl Acc => x + "ły";
+      SF Pl Instr => x + "łami";
+      SF Pl Loc => x + "łach";
+      SF Pl Voc => x + "ły"
+    };
+
+    oper mkNTable0790: Str -> SubstForm => Str; --%
+    oper mkNTable0790 lexem = 
+      let x = Predef.tk 3 lexem in
+    table { 
+      SF Sg Nom => x + "ieł";
+      SF Sg Gen => x + "ła";
+      SF Sg Dat => x + "łowi";
+      SF Sg Acc => x + "ieł";
+      SF Sg Instr => x + "łem";
+      SF Sg Loc => x + "le";
+      SF Sg Voc => x + "le";
+      SF Pl Nom => x + "ły";
+      SF Pl Gen => x + "łów";
+      SF Pl Dat => x + "łom";
+      SF Pl Acc => x + "ły";
+      SF Pl Instr => x + "łami";
+      SF Pl Loc => x + "łach";
+      SF Pl Voc => x + "ły"
+    };
+
+    oper mkNTable0791: Str -> SubstForm => Str; --%
+    oper mkNTable0791 lexem = 
+      let x = Predef.tk 3 lexem in
+    table { 
+      SF Sg Nom => x + "zno";
+      SF Sg Gen => x + "zna";
+      SF Sg Dat => x + "znu";
+      SF Sg Acc => x + "zno";
+      SF Sg Instr => x + "znem";
+      SF Sg Loc => x + "źnie";
+      SF Sg Voc => x + "zno";
+      SF Pl Nom => x + "zna";
+      SF Pl Gen => x + "zn";
+      SF Pl Dat => x + "znom";
+      SF Pl Acc => x + "zna";
+      SF Pl Instr => x + "znami";
+      SF Pl Loc => x + "znach";
+      SF Pl Voc => x + "zna"
+    };
+
+    oper mkNTable0792: Str -> SubstForm => Str; --%
+    oper mkNTable0792 lexem = 
+      let x = Predef.tk 1 lexem in
+    table { 
+      SF Sg Nom => x + "ć";
+      SF Sg Gen => x + "ci";
+      SF Sg Dat => x + "ci";
+      SF Sg Acc => x + "ć";
+      SF Sg Instr => x + "cią";
+      SF Sg Loc => x + "ci";
+      SF Sg Voc => x + "ci";
+      SF Pl Nom => x + "cie";
+      SF Pl Gen => x + "ci";
+      SF Pl Dat => x + "ciom";
+      SF Pl Acc => x + "cie";
+      SF Pl Instr => x + "ćmi";
+      SF Pl Loc => x + "ciach";
+      SF Pl Voc => x + "cie"
+    };
+
+    oper mkNTable0793: Str -> SubstForm => Str; --%
+    oper mkNTable0793 lexem = 
+      let x = Predef.tk 1 lexem in
+    table { 
+      SF Sg Nom => x + "ć";
+      SF Sg Gen => x + "cia";
+      SF Sg Dat => x + "ciowi";
+      SF Sg Acc => x + "ć";
+      SF Sg Instr => x + "ciem";
+      SF Sg Loc => x + "ciu";
+      SF Sg Voc => x + "ciu";
+      SF Pl Nom => x + "cie";
+      SF Pl Gen => x + "ciów";
+      SF Pl Dat => x + "ciom";
+      SF Pl Acc => x + "cie";
+      SF Pl Instr => x + "ciami";
+      SF Pl Loc => x + "ciach";
+      SF Pl Voc => x + "cie"
+    };
+
+    oper mkNTable0794: Str -> SubstForm => Str; --%
+    oper mkNTable0794 lexem = 
+      let x = Predef.tk 1 lexem in
+    table { 
+      SF Sg Nom => x + "ć";
+      SF Sg Gen => x + "cia";
+      SF Sg Dat => x + "ciowi";
+      SF Sg Acc => x + "cia";
+      SF Sg Instr => x + "ciem";
+      SF Sg Loc => x + "ciu";
+      SF Sg Voc => x + "ciu";
+      SF Pl Nom => x + "cie";
+      SF Pl Gen => x + "ci";
+      SF Pl Dat => x + "ciom";
+      SF Pl Acc => x + "ci";
+      SF Pl Instr => x + "ciami";
+      SF Pl Loc => x + "ciach";
+      SF Pl Voc => x + "cie"
+    };
+
+    oper mkNTable0795: Str -> SubstForm => Str; --%
+    oper mkNTable0795 lexem = 
+      let x = Predef.tk 3 lexem in
+    table { 
+      SF Sg Nom => x + "ieć";
+      SF Sg Gen => x + "cia";
+      SF Sg Dat => x + "ciowi";
+      SF Sg Acc => x + "ieć";
+      SF Sg Instr => x + "ciem";
+      SF Sg Loc => x + "ciu";
+      SF Sg Voc => x + "ciu";
+      SF Pl Nom => x + "cie";
+      SF Pl Gen => x + "ciów";
+      SF Pl Dat => x + "ciom";
+      SF Pl Acc => x + "cie";
+      SF Pl Instr => x + "ciami";
+      SF Pl Loc => x + "ciach";
+      SF Pl Voc => x + "cie"
+    };
+
+    oper mkNTable0796: Str -> SubstForm => Str; --%
+    oper mkNTable0796 lexem = 
+      let x = Predef.tk 4 lexem in
+    table { 
+      SF Sg Nom => x + "cioł";
+      SF Sg Gen => x + "tła";
+      SF Sg Dat => x + "tłowi";
+      SF Sg Acc => x + "cioł";
+      SF Sg Instr => x + "tłem";
+      SF Sg Loc => x + "tle";
+      SF Sg Voc => x + "tle";
+      SF Pl Nom => x + "tły";
+      SF Pl Gen => x + "tłów";
+      SF Pl Dat => x + "tłom";
+      SF Pl Acc => x + "tły";
+      SF Pl Instr => x + "tłami";
+      SF Pl Loc => x + "tłach";
+      SF Pl Voc => x + "tły"
+    };
+
+    oper mkNTable0797: Str -> SubstForm => Str; --%
+    oper mkNTable0797 lexem = 
+      let x = Predef.tk 2 lexem in
+    table { 
+      SF Sg Nom => x + "ów";
+      SF Sg Gen => x + "owa";
+      SF Sg Dat => x + "owowi";
+      SF Sg Acc => x + "owa";
+      SF Sg Instr => x + "owem";
+      SF Sg Loc => x + "owie";
+      SF Sg Voc => x + "owie";
+      SF Pl Nom => x + "owy";
+      SF Pl Gen => x + "owów";
+      SF Pl Dat => x + "owom";
+      SF Pl Acc => x + "owy";
+      SF Pl Instr => x + "owami";
+      SF Pl Loc => x + "owach";
+      SF Pl Voc => x + "owy"
+    };
+
+    oper mkNTable0798: Str -> SubstForm => Str; --%
+    oper mkNTable0798 lexem = 
+      let x = Predef.tk 2 lexem in
+    table { 
+      SF Sg Nom => x + "ga";
+      SF Sg Gen => x + "gi";
+      SF Sg Dat => x + "dze";
+      SF Sg Acc => x + "gę";
+      SF Sg Instr => x + "gą";
+      SF Sg Loc => x + "dze";
+      SF Sg Voc => x + "go";
+      SF Pl Nom => x + "dzy";
+      SF Pl Gen => x + "gów";
+      SF Pl Dat => x + "gom";
+      SF Pl Acc => x + "gów";
+      SF Pl Instr => x + "gami";
+      SF Pl Loc => x + "gach";
+      SF Pl Voc => x + "dzy"
+    };
+
+    oper mkNTable0799: Str -> SubstForm => Str; --%
+    oper mkNTable0799 lexem = 
+      let x = Predef.tk 1 lexem in
+    table { 
+      SF Sg Nom => x + "j";
+      SF Sg Gen => x + "i";
+      SF Sg Dat => x + "i";
+      SF Sg Acc => x + "j";
+      SF Sg Instr => x + "ją";
+      SF Sg Loc => x + "i";
+      SF Sg Voc => x + "i";
+      SF Pl Nom => x + "je";
+      SF Pl Gen => x + "i";
+      SF Pl Dat => x + "jom";
+      SF Pl Acc => x + "je";
+      SF Pl Instr => x + "jami";
+      SF Pl Loc => x + "jach";
+      SF Pl Voc => x + "je"
+    };
+
+    oper mkNTable0801: Str -> SubstForm => Str; --%
+    oper mkNTable0801 lexem = 
+      let x = Predef.tk 2 lexem in
+    table { 
+      SF Sg Nom => x + "ew";
+      SF Sg Gen => x + "wi";
+      SF Sg Dat => x + "wi";
+      SF Sg Acc => x + "ew";
+      SF Sg Instr => x + "wią";
+      SF Sg Loc => x + "wi";
+      SF Sg Voc => x + "wi";
+      SF Pl Nom => x + "wie";
+      SF Pl Gen => x + "wi";
+      SF Pl Dat => x + "wiom";
+      SF Pl Acc => x + "wie";
+      SF Pl Instr => x + "wiami";
+      SF Pl Loc => x + "wiach";
+      SF Pl Voc => x + "wie"
+    };
+
+    oper mkNTable0802: Str -> SubstForm => Str; --%
+    oper mkNTable0802 lexem = 
+      let x = Predef.tk 2 lexem in
+    table { 
+      SF Sg Nom => x + "eć";
+      SF Sg Gen => x + "ciu";
+      SF Sg Dat => x + "ciowi";
+      SF Sg Acc => x + "eć";
+      SF Sg Instr => x + "ciem";
+      SF Sg Loc => x + "ciu";
+      SF Sg Voc => x + "ciu";
+      SF Pl Nom => x + "cie";
+      SF Pl Gen => x + "ci";
+      SF Pl Dat => x + "ciom";
+      SF Pl Acc => x + "cie";
+      SF Pl Instr => x + "ciami";
+      SF Pl Loc => x + "ciach";
+      SF Pl Voc => x + "cie"
+    };
+
+    oper mkNTable0803: Str -> SubstForm => Str; --%
+    oper mkNTable0803 lexem = 
+      let x = Predef.tk 0 lexem in
+    table { 
+      SF Sg Nom => x + "";
+      SF Sg Gen => x + "ia";
+      SF Sg Dat => x + "iowi";
+      SF Sg Acc => x + "";
+      SF Sg Instr => x + "iem";
+      SF Sg Loc => x + "iu";
+      SF Sg Voc => x + "iu";
+      SF Pl Nom => x + "ie";
+      SF Pl Gen => x + "iów";
+      SF Pl Dat => x + "iom";
+      SF Pl Acc => x + "ie";
+      SF Pl Instr => x + "iami";
+      SF Pl Loc => x + "iach";
+      SF Pl Voc => x + "ie"
+    };
+
+    oper mkNTable0804: Str -> SubstForm => Str; --%
+    oper mkNTable0804 lexem = 
+      let x = Predef.tk 1 lexem in
+    table { 
+      SF Sg Nom => x + "t";
+      SF Sg Gen => x + "ta";
+      SF Sg Dat => x + "tu";
+      SF Sg Acc => x + "ta";
+      SF Sg Instr => x + "tem";
+      SF Sg Loc => x + "cie";
+      SF Sg Voc => x + "cie";
+      SF Pl Nom => x + "towie";
+      SF Pl Gen => x + "tów";
+      SF Pl Dat => x + "tom";
+      SF Pl Acc => x + "tów";
+      SF Pl Instr => x + "tami";
+      SF Pl Loc => x + "tach";
+      SF Pl Voc => x + "towie"
+    };
+
+    oper mkNTable0805: Str -> SubstForm => Str; --%
+    oper mkNTable0805 lexem = 
+      let x = Predef.tk 4 lexem in
+    table { 
+      SF Sg Nom => x + "zieł";
+      SF Sg Gen => x + "zła";
+      SF Sg Dat => x + "złowi";
+      SF Sg Acc => x + "zła";
+      SF Sg Instr => x + "złem";
+      SF Sg Loc => x + "źle";
+      SF Sg Voc => x + "źle";
+      SF Pl Nom => x + "zły";
+      SF Pl Gen => x + "złów";
+      SF Pl Dat => x + "złom";
+      SF Pl Acc => x + "zły";
+      SF Pl Instr => x + "złami";
+      SF Pl Loc => x + "złach";
+      SF Pl Voc => x + "zły"
+    };
+
+    oper mkNTable0806: Str -> SubstForm => Str; --%
+    oper mkNTable0806 lexem = 
+      let x = Predef.tk 4 lexem in
+    table { 
+      SF Sg Nom => x + "zioł";
+      SF Sg Gen => x + "zła";
+      SF Sg Dat => x + "złowi";
+      SF Sg Acc => x + "zła";
+      SF Sg Instr => x + "złem";
+      SF Sg Loc => x + "źle";
+      SF Sg Voc => x + "źle";
+      SF Pl Nom => x + "zły";
+      SF Pl Gen => x + "złów";
+      SF Pl Dat => x + "złom";
+      SF Pl Acc => x + "zły";
+      SF Pl Instr => x + "złami";
+      SF Pl Loc => x + "złach";
+      SF Pl Voc => x + "zły"
+    };
+
+    oper mkNTable0807: Str -> SubstForm => Str; --%
+    oper mkNTable0807 lexem = 
+      let x = Predef.tk 4 lexem in
+    table { 
+      SF Sg Nom => x + "zioł";
+      SF Sg Gen => x + "zła";
+      SF Sg Dat => x + "złowi";
+      SF Sg Acc => x + "zioł";
+      SF Sg Instr => x + "złem";
+      SF Sg Loc => x + "źle";
+      SF Sg Voc => x + "źle";
+      SF Pl Nom => x + "zły";
+      SF Pl Gen => x + "złów";
+      SF Pl Dat => x + "złom";
+      SF Pl Acc => x + "zły";
+      SF Pl Instr => x + "złami";
+      SF Pl Loc => x + "złach";
+      SF Pl Voc => x + "zły"
+    };
+
+    oper mkNTable0808: Str -> SubstForm => Str; --%
+    oper mkNTable0808 lexem = 
+      let x = Predef.tk 2 lexem in
+    table { 
+      SF Sg Nom => x + "ój";
+      SF Sg Gen => x + "oja";
+      SF Sg Dat => x + "ojowi";
+      SF Sg Acc => x + "oja";
+      SF Sg Instr => x + "ojem";
+      SF Sg Loc => x + "oju";
+      SF Sg Voc => x + "oju";
+      SF Pl Nom => x + "oje";
+      SF Pl Gen => x + "ojów";
+      SF Pl Dat => x + "ojom";
+      SF Pl Acc => x + "oje";
+      SF Pl Instr => x + "ojami";
+      SF Pl Loc => x + "ojach";
+      SF Pl Voc => x + "oje"
+    };
+
+    oper mkNTable0811: Str -> SubstForm => Str; --%
+    oper mkNTable0811 lexem = 
+      let x = Predef.tk 2 lexem in
+    table { 
+      SF Sg Nom => x + "ót";
+      SF Sg Gen => x + "otu";
+      SF Sg Dat => x + "otowi";
+      SF Sg Acc => x + "ót";
+      SF Sg Instr => x + "otem";
+      SF Sg Loc => x + "ocie";
+      SF Sg Voc => x + "ocie";
+      SF Pl Nom => x + "oty";
+      SF Pl Gen => x + "otów";
+      SF Pl Dat => x + "otom";
+      SF Pl Acc => x + "oty";
+      SF Pl Instr => x + "otami";
+      SF Pl Loc => x + "otach";
+      SF Pl Voc => x + "oty"
+    };
+
+    oper mkNTable0813: Str -> SubstForm => Str; --%
+    oper mkNTable0813 lexem = 
+      let x = Predef.tk 2 lexem in
+    table { 
+      SF Sg Nom => x + "ół";
+      SF Sg Gen => x + "oła";
+      SF Sg Dat => x + "ołowi";
+      SF Sg Acc => x + "ół";
+      SF Sg Instr => x + "ołem";
+      SF Sg Loc => x + "ele";
+      SF Sg Voc => x + "ele";
+      SF Pl Nom => x + "oły";
+      SF Pl Gen => x + "ołów";
+      SF Pl Dat => x + "ołom";
+      SF Pl Acc => x + "oły";
+      SF Pl Instr => x + "ołami";
+      SF Pl Loc => x + "ołach";
+      SF Pl Voc => x + "oły"
+    };
+
+    oper mkNTable0814: Str -> SubstForm => Str; --%
+    oper mkNTable0814 lexem = 
+      let x = Predef.tk 1 lexem in
+    table { 
+      SF Sg Nom => x + "ć";
+      SF Sg Gen => x + "ci";
+      SF Sg Dat => x + "ci";
+      SF Sg Acc => x + "ć";
+      SF Sg Instr => x + "cią";
+      SF Sg Loc => x + "ci";
+      SF Sg Voc => x + "ci";
+      SF Pl Nom => x + "ci";
+      SF Pl Gen => x + "ci";
+      SF Pl Dat => x + "ciom";
+      SF Pl Acc => x + "ci";
+      SF Pl Instr => x + "ćmi";
+      SF Pl Loc => x + "ciach";
+      SF Pl Voc => x + "ci"
+    };
+
+    oper mkNTable0815: Str -> SubstForm => Str; --%
+    oper mkNTable0815 lexem = 
+      let x = Predef.tk 1 lexem in
+    table { 
+      SF Sg Nom => x + "ń";
+      SF Sg Gen => x + "nia";
+      SF Sg Dat => x + "niowi";
+      SF Sg Acc => x + "nia";
+      SF Sg Instr => x + "niem";
+      SF Sg Loc => x + "niu";
+      SF Sg Voc => x + "niu";
+      SF Pl Nom => x + "nie";
+      SF Pl Gen => x + "ni";
+      SF Pl Dat => x + "niom";
+      SF Pl Acc => x + "nie";
+      SF Pl Instr => x + "ńmi";
+      SF Pl Loc => x + "niach";
+      SF Pl Voc => x + "nie"
+    };
+
+    oper mkNTable0816: Str -> SubstForm => Str; --%
+    oper mkNTable0816 lexem = 
+      let x = Predef.tk 3 lexem in
+    table { 
+      SF Sg Nom => x + "sno";
+      SF Sg Gen => x + "sna";
+      SF Sg Dat => x + "snu";
+      SF Sg Acc => x + "sno";
+      SF Sg Instr => x + "snem";
+      SF Sg Loc => x + "śnie";
+      SF Sg Voc => x + "sno";
+      SF Pl Nom => x + "sna";
+      SF Pl Gen => x + "sien";
+      SF Pl Dat => x + "snom";
+      SF Pl Acc => x + "sna";
+      SF Pl Instr => x + "snami";
+      SF Pl Loc => x + "snach";
+      SF Pl Voc => x + "sna"
+    };
+
+    oper mkNTable0817: Str -> SubstForm => Str; --%
+    oper mkNTable0817 lexem = 
+      let x = Predef.tk 2 lexem in
+    table { 
+      SF Sg Nom => x + "ec";
+      SF Sg Gen => x + "cu";
+      SF Sg Dat => x + "cowi";
+      SF Sg Acc => x + "ec";
+      SF Sg Instr => x + "cem";
+      SF Sg Loc => x + "cu";
+      SF Sg Voc => x + "cu";
+      SF Pl Nom => x + "ce";
+      SF Pl Gen => x + "ców";
+      SF Pl Dat => x + "com";
+      SF Pl Acc => x + "ce";
+      SF Pl Instr => x + "cami";
+      SF Pl Loc => x + "cach";
+      SF Pl Voc => x + "ce"
+    };
+
+    oper mkNTable0818: Str -> SubstForm => Str; --%
+    oper mkNTable0818 lexem = 
+      let x = Predef.tk 2 lexem in
+    table { 
+      SF Sg Nom => x + "eć";
+      SF Sg Gen => x + "cia";
+      SF Sg Dat => x + "ciowi";
+      SF Sg Acc => x + "eć";
+      SF Sg Instr => x + "ciem";
+      SF Sg Loc => x + "ciu";
+      SF Sg Voc => x + "ciu";
+      SF Pl Nom => x + "cie";
+      SF Pl Gen => x + "ciów";
+      SF Pl Dat => x + "ciom";
+      SF Pl Acc => x + "cie";
+      SF Pl Instr => x + "ciami";
+      SF Pl Loc => x + "ciach";
+      SF Pl Voc => x + "cie"
+    };
+
+    oper mkNTable0819: Str -> SubstForm => Str; --%
+    oper mkNTable0819 lexem = 
+      let x = Predef.tk 2 lexem in
+    table { 
+      SF Sg Nom => x + "ąg";
+      SF Sg Gen => x + "ęgu";
+      SF Sg Dat => x + "ęgowi";
+      SF Sg Acc => x + "ąg";
+      SF Sg Instr => x + "ęgiem";
+      SF Sg Loc => x + "ęgu";
+      SF Sg Voc => x + "ęgu";
+      SF Pl Nom => x + "ęgi";
+      SF Pl Gen => x + "ęgów";
+      SF Pl Dat => x + "ęgom";
+      SF Pl Acc => x + "ęgi";
+      SF Pl Instr => x + "ęgami";
+      SF Pl Loc => x + "ęgach";
+      SF Pl Voc => x + "ęgi"
+    };
+
+    oper mkNTable0821: Str -> SubstForm => Str; --%
+    oper mkNTable0821 lexem = 
+      let x = Predef.tk 3 lexem in
+    table { 
+      SF Sg Nom => x + "ądz";
+      SF Sg Gen => x + "ędza";
+      SF Sg Dat => x + "ędzu";
+      SF Sg Acc => x + "ędza";
+      SF Sg Instr => x + "ędzem";
+      SF Sg Loc => x + "ędzu";
+      SF Sg Voc => x + "ęże";
+      SF Pl Nom => x + "ęża";
+      SF Pl Gen => x + "ęży";
+      SF Pl Dat => x + "ężom";
+      SF Pl Acc => x + "ęży";
+      SF Pl Instr => x + "ężmi";
+      SF Pl Loc => x + "ężach";
+      SF Pl Voc => x + "ęża"
+    };
+
+    oper mkNTable0822: Str -> SubstForm => Str; --%
+    oper mkNTable0822 lexem = 
+      let x = Predef.tk 3 lexem in
+    table { 
+      SF Sg Nom => x + "ęga";
+      SF Sg Gen => x + "ęgi";
+      SF Sg Dat => x + "ędze";
+      SF Sg Acc => x + "ęgę";
+      SF Sg Instr => x + "ęgą";
+      SF Sg Loc => x + "ędze";
+      SF Sg Voc => x + "ęgo";
+      SF Pl Nom => x + "ęgi";
+      SF Pl Gen => x + "ąg";
+      SF Pl Dat => x + "ęgom";
+      SF Pl Acc => x + "ęgi";
+      SF Pl Instr => x + "ęgami";
+      SF Pl Loc => x + "ęgach";
+      SF Pl Voc => x + "ęgi"
+    };
+
+    oper mkNTable0823: Str -> SubstForm => Str; --%
+    oper mkNTable0823 lexem = 
+      let x = Predef.tk 2 lexem in
+    table { 
+      SF Sg Nom => x + "eł";
+      SF Sg Gen => x + "ła";
+      SF Sg Dat => x + "łowi";
+      SF Sg Acc => x + "eł";
+      SF Sg Instr => x + "łem";
+      SF Sg Loc => x + "le";
+      SF Sg Voc => x + "le";
+      SF Pl Nom => x + "ły";
+      SF Pl Gen => x + "łów";
+      SF Pl Dat => x + "łom";
+      SF Pl Acc => x + "ły";
+      SF Pl Instr => x + "łami";
+      SF Pl Loc => x + "łach";
+      SF Pl Voc => x + "ły"
+    };
+
+    oper mkNTable0824: Str -> SubstForm => Str; --%
+    oper mkNTable0824 lexem = 
+      let x = Predef.tk 2 lexem in
+    table { 
+      SF Sg Nom => x + "st";
+      SF Sg Gen => x + "sta";
+      SF Sg Dat => x + "stowi";
+      SF Sg Acc => x + "sta";
+      SF Sg Instr => x + "stem";
+      SF Sg Loc => x + "ście";
+      SF Sg Voc => x + "ście";
+      SF Pl Nom => x + "ści";
+      SF Pl Gen => x + "stów";
+      SF Pl Dat => x + "stom";
+      SF Pl Acc => x + "stów";
+      SF Pl Instr => x + "stami";
+      SF Pl Loc => x + "stach";
+      SF Pl Voc => x + "ści"
+    };
+
+    oper mkNTable0826: Str -> SubstForm => Str; --%
+    oper mkNTable0826 lexem = 
+      let x = Predef.tk 0 lexem in
+    table { 
+      SF Sg Nom => x + "";
+      SF Sg Gen => x + "a";
+      SF Sg Dat => x + "owi";
+      SF Sg Acc => x + "";
+      SF Sg Instr => x + "em";
+      SF Sg Loc => x + "ie";
+      SF Sg Voc => x + "ie";
+      SF Pl Nom => x + "e";
+      SF Pl Gen => x + "ów";
+      SF Pl Dat => x + "om";
+      SF Pl Acc => x + "e";
+      SF Pl Instr => x + "ami";
+      SF Pl Loc => x + "ach";
+      SF Pl Voc => x + "e"
+    };
+
+    oper mkNTable0827: Str -> SubstForm => Str; --%
+    oper mkNTable0827 lexem = 
+      let x = Predef.tk 4 lexem in
+    table { 
+      SF Sg Nom => x + "cień";
+      SF Sg Gen => x + "tnia";
+      SF Sg Dat => x + "tniowi";
+      SF Sg Acc => x + "cień";
+      SF Sg Instr => x + "tniem";
+      SF Sg Loc => x + "tniu";
+      SF Sg Voc => x + "tniu";
+      SF Pl Nom => x + "tnie";
+      SF Pl Gen => x + "tniów";
+      SF Pl Dat => x + "tniom";
+      SF Pl Acc => x + "tnie";
+      SF Pl Instr => x + "tniami";
+      SF Pl Loc => x + "tniach";
+      SF Pl Voc => x + "tnie"
+    };
+
+    oper mkNTable0828: Str -> SubstForm => Str; --%
+    oper mkNTable0828 lexem = 
+      let x = Predef.tk 0 lexem in
+    table { 
+      SF Sg Nom => x + "";
+      SF Sg Gen => x + "u";
+      SF Sg Dat => x + "owi";
+      SF Sg Acc => x + "u";
+      SF Sg Instr => x + "em";
+      SF Sg Loc => x + "ie";
+      SF Sg Voc => x + "ie";
+      SF Pl Nom => x + "y";
+      SF Pl Gen => x + "ów";
+      SF Pl Dat => x + "om";
+      SF Pl Acc => x + "y";
+      SF Pl Instr => x + "ami";
+      SF Pl Loc => x + "ach";
+      SF Pl Voc => x + "y"
+    };
+
+    oper mkNTable0829: Str -> SubstForm => Str; --%
+    oper mkNTable0829 lexem = 
+      let x = Predef.tk 1 lexem in
+    table { 
+      SF Sg Nom => x + "o";
+      SF Sg Gen => x + "o";
+      SF Sg Dat => x + "u";
+      SF Sg Acc => x + "o";
+      SF Sg Instr => x + "o";
+      SF Sg Loc => x + "u";
+      SF Sg Voc => x + "o";
+      SF Pl Nom => x + "o";
+      SF Pl Gen => x + "o";
+      SF Pl Dat => x + "om";
+      SF Pl Acc => x + "o";
+      SF Pl Instr => x + "o";
+      SF Pl Loc => x + "o";
+      SF Pl Voc => x + "o"
+    };
+
+    oper mkNTable0830: Str -> SubstForm => Str; --%
+    oper mkNTable0830 lexem = 
+      let x = Predef.tk 2 lexem in
+    table { 
+      SF Sg Nom => x + "as";
+      SF Sg Gen => x + "asu";
+      SF Sg Dat => x + "asowi";
+      SF Sg Acc => x + "as";
+      SF Sg Instr => x + "asem";
+      SF Sg Loc => x + "esie";
+      SF Sg Voc => x + "esie";
+      SF Pl Nom => x + "asy";
+      SF Pl Gen => x + "asów";
+      SF Pl Dat => x + "asom";
+      SF Pl Acc => x + "asy";
+      SF Pl Instr => x + "asami";
+      SF Pl Loc => x + "asach";
+      SF Pl Voc => x + "asy"
+    };
+
+    oper mkNTable0831: Str -> SubstForm => Str; --%
+    oper mkNTable0831 lexem = 
+      let x = Predef.tk 2 lexem in
+    table { 
+      SF Sg Nom => x + "co";
+      SF Sg Gen => x + "co";
+      SF Sg Dat => x + "cu";
+      SF Sg Acc => x + "co";
+      SF Sg Instr => x + "kiem";
+      SF Sg Loc => x + "cu";
+      SF Sg Voc => x + "co";
+      SF Pl Nom => x + "co";
+      SF Pl Gen => x + "co";
+      SF Pl Dat => x + "com";
+      SF Pl Acc => x + "co";
+      SF Pl Instr => x + "co";
+      SF Pl Loc => x + "co";
+      SF Pl Voc => x + "co"
+    };
+
+    oper mkNTable0832: Str -> SubstForm => Str; --%
+    oper mkNTable0832 lexem = 
+      let x = Predef.tk 3 lexem in
+    table { 
+      SF Sg Nom => x + "iec";
+      SF Sg Gen => x + "ca";
+      SF Sg Dat => x + "cowi";
+      SF Sg Acc => x + "ca";
+      SF Sg Instr => x + "cem";
+      SF Sg Loc => x + "cu";
+      SF Sg Voc => x + "cze";
+      SF Pl Nom => x + "ce";
+      SF Pl Gen => x + "ców";
+      SF Pl Dat => x + "com";
+      SF Pl Acc => x + "ce";
+      SF Pl Instr => x + "cami";
+      SF Pl Loc => x + "cach";
+      SF Pl Voc => x + "ce"
+    };
+
+    oper mkNTable0833: Str -> SubstForm => Str; --%
+    oper mkNTable0833 lexem = 
+      let x = Predef.tk 3 lexem in
+    table { 
+      SF Sg Nom => x + "ato";
+      SF Sg Gen => x + "ata";
+      SF Sg Dat => x + "atu";
+      SF Sg Acc => x + "ato";
+      SF Sg Instr => x + "atem";
+      SF Sg Loc => x + "ecie";
+      SF Sg Voc => x + "ato";
+      SF Pl Nom => x + "ata";
+      SF Pl Gen => x + "at";
+      SF Pl Dat => x + "atom";
+      SF Pl Acc => x + "ata";
+      SF Pl Instr => x + "atami";
+      SF Pl Loc => x + "atach";
+      SF Pl Voc => x + "ata"
+    };
+
+    oper mkNTable0834: Str -> SubstForm => Str; --%
+    oper mkNTable0834 lexem = 
+      let x = Predef.tk 1 lexem in
+    table { 
+      SF Sg Nom => x + "j";
+      SF Sg Gen => x + "ja";
+      SF Sg Dat => x + "jowi";
+      SF Sg Acc => x + "ja";
+      SF Sg Instr => x + "jem";
+      SF Sg Loc => x + "ju";
+      SF Sg Voc => x + "ju";
+      SF Pl Nom => x + "je";
+      SF Pl Gen => x + "i";
+      SF Pl Dat => x + "jom";
+      SF Pl Acc => x + "je";
+      SF Pl Instr => x + "jami";
+      SF Pl Loc => x + "jach";
+      SF Pl Voc => x + "je"
+    };
+
+    oper mkNTable0836: Str -> SubstForm => Str; --%
+    oper mkNTable0836 lexem = 
+      let x = Predef.tk 1 lexem in
+    table { 
+      SF Sg Nom => x + "e";
+      SF Sg Gen => x + "a";
+      SF Sg Dat => x + "u";
+      SF Sg Acc => x + "e";
+      SF Sg Instr => x + "em";
+      SF Sg Loc => x + "u";
+      SF Sg Voc => x + "e";
+      SF Pl Nom => x + "a";
+      SF Pl Gen => x + "ów";
+      SF Pl Dat => x + "om";
+      SF Pl Acc => x + "a";
+      SF Pl Instr => x + "ami";
+      SF Pl Loc => x + "ach";
+      SF Pl Voc => x + "a"
+    };
+
+    oper mkNTable0838: Str -> SubstForm => Str; --%
+    oper mkNTable0838 lexem = 
+      let x = Predef.tk 1 lexem in
+    table { 
+      SF Sg Nom => x + "ć";
+      SF Sg Gen => x + "cia";
+      SF Sg Dat => x + "ciowi";
+      SF Sg Acc => x + "ć";
+      SF Sg Instr => x + "ciem";
+      SF Sg Loc => x + "ciu";
+      SF Sg Voc => x + "ciu";
+      SF Pl Nom => x + "cie";
+      SF Pl Gen => x + "ci";
+      SF Pl Dat => x + "ciom";
+      SF Pl Acc => x + "cie";
+      SF Pl Instr => x + "ćmi";
+      SF Pl Loc => x + "ciach";
+      SF Pl Voc => x + "cie"
+    };
+
+    oper mkNTable0839: Str -> SubstForm => Str; --%
+    oper mkNTable0839 lexem = 
+      let x = Predef.tk 2 lexem in
+    table { 
+      SF Sg Nom => x + "um";
+      SF Sg Gen => x + "um";
+      SF Sg Dat => x + "um";
+      SF Sg Acc => x + "um";
+      SF Sg Instr => x + "um";
+      SF Sg Loc => x + "um";
+      SF Sg Voc => x + "um";
+      SF Pl Nom => x + "um";
+      SF Pl Gen => x + "ów";
+      SF Pl Dat => x + "um";
+      SF Pl Acc => x + "um";
+      SF Pl Instr => x + "um";
+      SF Pl Loc => x + "um";
+      SF Pl Voc => x + "um"
+    };
+
+    oper mkNTable0840: Str -> SubstForm => Str; --%
+    oper mkNTable0840 lexem = 
+      let x = Predef.tk 3 lexem in
+    table { 
+      SF Sg Nom => x + "oża";
+      SF Sg Gen => x + "oży";
+      SF Sg Dat => x + "oży";
+      SF Sg Acc => x + "ożę";
+      SF Sg Instr => x + "ożą";
+      SF Sg Loc => x + "oży";
+      SF Sg Voc => x + "ożo";
+      SF Pl Nom => x + "oże";
+      SF Pl Gen => x + "óż";
+      SF Pl Dat => x + "ożom";
+      SF Pl Acc => x + "oże";
+      SF Pl Instr => x + "ożami";
+      SF Pl Loc => x + "ożach";
+      SF Pl Voc => x + "oże"
+    };
+
+    oper mkNTable0842: Str -> SubstForm => Str; --%
+    oper mkNTable0842 lexem = 
+      let x = Predef.tk 1 lexem in
+    table { 
+      SF Sg Nom => x + "o";
+      SF Sg Gen => x + "a";
+      SF Sg Dat => x + "owi";
+      SF Sg Acc => x + "a";
+      SF Sg Instr => x + "em";
+      SF Sg Loc => x + "ie";
+      SF Sg Voc => x + "o";
+      SF Pl Nom => x + "i";
+      SF Pl Gen => x + "ów";
+      SF Pl Dat => x + "om";
+      SF Pl Acc => x + "ów";
+      SF Pl Instr => x + "ami";
+      SF Pl Loc => x + "ach";
+      SF Pl Voc => x + "i"
+    };
+
+    oper mkNTable0843: Str -> SubstForm => Str; --%
+    oper mkNTable0843 lexem = 
+      let x = Predef.tk 3 lexem in
+    table { 
+      SF Sg Nom => x + "śka";
+      SF Sg Gen => x + "śki";
+      SF Sg Dat => x + "śce";
+      SF Sg Acc => x + "śkę";
+      SF Sg Instr => x + "śką";
+      SF Sg Loc => x + "śce";
+      SF Sg Voc => x + "śku";
+      SF Pl Nom => x + "śki";
+      SF Pl Gen => x + "siek";
+      SF Pl Dat => x + "śkom";
+      SF Pl Acc => x + "śki";
+      SF Pl Instr => x + "śkami";
+      SF Pl Loc => x + "śkach";
+      SF Pl Voc => x + "śki"
+    };
+
+    oper mkNTable0844: Str -> SubstForm => Str; --%
+    oper mkNTable0844 lexem = 
+      let x = Predef.tk 3 lexem in
+    table { 
+      SF Sg Nom => x + "iel";
+      SF Sg Gen => x + "lu";
+      SF Sg Dat => x + "lowi";
+      SF Sg Acc => x + "iel";
+      SF Sg Instr => x + "lem";
+      SF Sg Loc => x + "lu";
+      SF Sg Voc => x + "lu";
+      SF Pl Nom => x + "le";
+      SF Pl Gen => x + "li";
+      SF Pl Dat => x + "lom";
+      SF Pl Acc => x + "le";
+      SF Pl Instr => x + "lami";
+      SF Pl Loc => x + "lach";
+      SF Pl Voc => x + "le"
+    };
+
+    oper mkNTable0847: Str -> SubstForm => Str; --%
+    oper mkNTable0847 lexem = 
+      let x = Predef.tk 3 lexem in
+    table { 
+      SF Sg Nom => x + "ech";
+      SF Sg Gen => x + "chu";
+      SF Sg Dat => x + "chowi";
+      SF Sg Acc => x + "ech";
+      SF Sg Instr => x + "chem";
+      SF Sg Loc => x + "chu";
+      SF Sg Voc => x + "chu";
+      SF Pl Nom => x + "chy";
+      SF Pl Gen => x + "chów";
+      SF Pl Dat => x + "chom";
+      SF Pl Acc => x + "chy";
+      SF Pl Instr => x + "chami";
+      SF Pl Loc => x + "chach";
+      SF Pl Voc => x + "chy"
+    };
+
+    oper mkNTable0848: Str -> SubstForm => Str; --%
+    oper mkNTable0848 lexem = 
+      let x = Predef.tk 1 lexem in
+    table { 
+      SF Sg Nom => x + "x";
+      SF Sg Gen => x + "ksa";
+      SF Sg Dat => x + "ksowi";
+      SF Sg Acc => x + "ksa";
+      SF Sg Instr => x + "ksem";
+      SF Sg Loc => x + "ksie";
+      SF Sg Voc => x + "ksie";
+      SF Pl Nom => x + "ksy";
+      SF Pl Gen => x + "ksów";
+      SF Pl Dat => x + "ksom";
+      SF Pl Acc => x + "ksy";
+      SF Pl Instr => x + "ksami";
+      SF Pl Loc => x + "ksach";
+      SF Pl Voc => x + "ksy"
+    };
+
+    oper mkNTable0849: Str -> SubstForm => Str; --%
+    oper mkNTable0849 lexem = 
+      let x = Predef.tk 2 lexem in
+    table { 
+      SF Sg Nom => x + "ka";
+      SF Sg Gen => x + "ki";
+      SF Sg Dat => x + "ce";
+      SF Sg Acc => x + "kę";
+      SF Sg Instr => x + "ką";
+      SF Sg Loc => x + "ce";
+      SF Sg Voc => x + "ko";
+      SF Pl Nom => x + "ki";
+      SF Pl Gen => x + "ków";
+      SF Pl Dat => x + "kom";
+      SF Pl Acc => x + "ki";
+      SF Pl Instr => x + "kami";
+      SF Pl Loc => x + "kach";
+      SF Pl Voc => x + "ki"
+    };
+
+    oper mkNTable0851: Str -> SubstForm => Str; --%
+    oper mkNTable0851 lexem = 
+      let x = Predef.tk 3 lexem in
+    table { 
+      SF Sg Nom => x + "ara";
+      SF Sg Gen => x + "ary";
+      SF Sg Dat => x + "erze";
+      SF Sg Acc => x + "arę";
+      SF Sg Instr => x + "arą";
+      SF Sg Loc => x + "erze";
+      SF Sg Voc => x + "aro";
+      SF Pl Nom => x + "ary";
+      SF Pl Gen => x + "ar";
+      SF Pl Dat => x + "arom";
+      SF Pl Acc => x + "ary";
+      SF Pl Instr => x + "arami";
+      SF Pl Loc => x + "arach";
+      SF Pl Voc => x + "ary"
+    };
+
+    oper mkNTable0853: Str -> SubstForm => Str; --%
+    oper mkNTable0853 lexem = 
+      let x = Predef.tk 2 lexem in
+    table { 
+      SF Sg Nom => x + "ąc";
+      SF Sg Gen => x + "ąca";
+      SF Sg Dat => x + "ącowi";
+      SF Sg Acc => x + "ąc";
+      SF Sg Instr => x + "ącem";
+      SF Sg Loc => x + "ącu";
+      SF Sg Voc => x + "ącu";
+      SF Pl Nom => x + "ące";
+      SF Pl Gen => x + "ęcy";
+      SF Pl Dat => x + "ącom";
+      SF Pl Acc => x + "ące";
+      SF Pl Instr => x + "ącami";
+      SF Pl Loc => x + "ącach";
+      SF Pl Voc => x + "ące"
+    };
+
+    oper mkNTable0854: Str -> SubstForm => Str; --%
+    oper mkNTable0854 lexem = 
+      let x = Predef.tk 2 lexem in
+    table { 
+      SF Sg Nom => x + "at";
+      SF Sg Gen => x + "atu";
+      SF Sg Dat => x + "atu";
+      SF Sg Acc => x + "at";
+      SF Sg Instr => x + "atem";
+      SF Sg Loc => x + "ecie";
+      SF Sg Voc => x + "ecie";
+      SF Pl Nom => x + "aty";
+      SF Pl Gen => x + "atów";
+      SF Pl Dat => x + "atom";
+      SF Pl Acc => x + "aty";
+      SF Pl Instr => x + "atami";
+      SF Pl Loc => x + "atach";
+      SF Pl Voc => x + "aty"
+    };
+
+    oper mkNTable0855: Str -> SubstForm => Str; --%
+    oper mkNTable0855 lexem = 
+      let x = Predef.tk 2 lexem in
+    table { 
+      SF Sg Nom => x + "st";
+      SF Sg Gen => x + "sta";
+      SF Sg Dat => x + "stowi";
+      SF Sg Acc => x + "sta";
+      SF Sg Instr => x + "stem";
+      SF Sg Loc => x + "ście";
+      SF Sg Voc => x + "ście";
+      SF Pl Nom => x + "sty";
+      SF Pl Gen => x + "stów";
+      SF Pl Dat => x + "stom";
+      SF Pl Acc => x + "sty";
+      SF Pl Instr => x + "stami";
+      SF Pl Loc => x + "stach";
+      SF Pl Voc => x + "sty"
+    };
+
+    oper mkNTable0857: Str -> SubstForm => Str; --%
+    oper mkNTable0857 lexem = 
+      let x = Predef.tk 4 lexem in
+    table { 
+      SF Sg Nom => x + "siek";
+      SF Sg Gen => x + "śka";
+      SF Sg Dat => x + "śkowi";
+      SF Sg Acc => x + "śka";
+      SF Sg Instr => x + "śkiem";
+      SF Sg Loc => x + "śku";
+      SF Sg Voc => x + "śku";
+      SF Pl Nom => x + "śki";
+      SF Pl Gen => x + "śków";
+      SF Pl Dat => x + "śkom";
+      SF Pl Acc => x + "śki";
+      SF Pl Instr => x + "śkami";
+      SF Pl Loc => x + "śkach";
+      SF Pl Voc => x + "śki"
+    };
+
+    oper mkNTable0858: Str -> SubstForm => Str; --%
+    oper mkNTable0858 lexem = 
+      let x = Predef.tk 4 lexem in
+    table { 
+      SF Sg Nom => x + "sień";
+      SF Sg Gen => x + "śnia";
+      SF Sg Dat => x + "śniowi";
+      SF Sg Acc => x + "sień";
+      SF Sg Instr => x + "śniem";
+      SF Sg Loc => x + "śniu";
+      SF Sg Voc => x + "śniu";
+      SF Pl Nom => x + "śnie";
+      SF Pl Gen => x + "śni";
+      SF Pl Dat => x + "śniom";
+      SF Pl Acc => x + "śnie";
+      SF Pl Instr => x + "śniami";
+      SF Pl Loc => x + "śniach";
+      SF Pl Voc => x + "śnie"
+    };
+
+    oper mkNTable0859: Str -> SubstForm => Str; --%
+    oper mkNTable0859 lexem = 
+      let x = Predef.tk 0 lexem in
+    table { 
+      SF Sg Nom => x + "";
+      SF Sg Gen => x + "ia";
+      SF Sg Dat => x + "iowi";
+      SF Sg Acc => x + "";
+      SF Sg Instr => x + "iem";
+      SF Sg Loc => x + "iu";
+      SF Sg Voc => x + "iu";
+      SF Pl Nom => x + "ie";
+      SF Pl Gen => x + "i";
+      SF Pl Dat => x + "iom";
+      SF Pl Acc => x + "ie";
+      SF Pl Instr => x + "iami";
+      SF Pl Loc => x + "iach";
+      SF Pl Voc => x + "ie"
+    };
+
+    oper mkNTable0860: Str -> SubstForm => Str; --%
+    oper mkNTable0860 lexem = 
+      let x = Predef.tk 4 lexem in
+    table { 
+      SF Sg Nom => x + "orga";
+      SF Sg Gen => x + "orgi";
+      SF Sg Dat => x + "ordze";
+      SF Sg Acc => x + "orgę";
+      SF Sg Instr => x + "orgą";
+      SF Sg Loc => x + "ordze";
+      SF Sg Voc => x + "orgo";
+      SF Pl Nom => x + "orgi";
+      SF Pl Gen => x + "órg";
+      SF Pl Dat => x + "orgom";
+      SF Pl Acc => x + "orgi";
+      SF Pl Instr => x + "orgami";
+      SF Pl Loc => x + "orgach";
+      SF Pl Voc => x + "orgi"
+    };
+
+    oper mkNTable0861: Str -> SubstForm => Str; --%
+    oper mkNTable0861 lexem = 
+      let x = Predef.tk 4 lexem in
+    table { 
+      SF Sg Nom => x + "orze";
+      SF Sg Gen => x + "orza";
+      SF Sg Dat => x + "orzu";
+      SF Sg Acc => x + "orze";
+      SF Sg Instr => x + "orzem";
+      SF Sg Loc => x + "orzu";
+      SF Sg Voc => x + "orze";
+      SF Pl Nom => x + "orza";
+      SF Pl Gen => x + "órz";
+      SF Pl Dat => x + "orzom";
+      SF Pl Acc => x + "orza";
+      SF Pl Instr => x + "orzami";
+      SF Pl Loc => x + "orzach";
+      SF Pl Voc => x + "orza"
+    };
+
+    oper mkNTable0863: Str -> SubstForm => Str; --%
+    oper mkNTable0863 lexem = 
+      let x = Predef.tk 3 lexem in
+    table { 
+      SF Sg Nom => x + "łła";
+      SF Sg Gen => x + "łły";
+      SF Sg Dat => x + "lle";
+      SF Sg Acc => x + "łłę";
+      SF Sg Instr => x + "łłą";
+      SF Sg Loc => x + "lle";
+      SF Sg Voc => x + "łło";
+      SF Pl Nom => x + "łłowie";
+      SF Pl Gen => x + "łłów";
+      SF Pl Dat => x + "łłom";
+      SF Pl Acc => x + "łłów";
+      SF Pl Instr => x + "łłami";
+      SF Pl Loc => x + "łłach";
+      SF Pl Voc => x + "łłowie"
+    };
+
+    oper mkNTable0868: Str -> SubstForm => Str; --%
+    oper mkNTable0868 lexem = 
+      let x = Predef.tk 0 lexem in
+    table { 
+      SF Sg Nom => x + "";
+      SF Sg Gen => x + "y";
+      SF Sg Dat => x + "y";
+      SF Sg Acc => x + "";
+      SF Sg Instr => x + "ą";
+      SF Sg Loc => x + "y";
+      SF Sg Voc => x + "y";
+      SF Pl Nom => x + "y";
+      SF Pl Gen => x + "y";
+      SF Pl Dat => x + "om";
+      SF Pl Acc => x + "y";
+      SF Pl Instr => x + "ami";
+      SF Pl Loc => x + "ach";
+      SF Pl Voc => x + "y"
+    };
+
+    oper mkNTable0869: Str -> SubstForm => Str; --%
+    oper mkNTable0869 lexem = 
+      let x = Predef.tk 0 lexem in
+    table { 
+      SF Sg Nom => x + "";
+      SF Sg Gen => x + "i";
+      SF Sg Dat => x + "i";
+      SF Sg Acc => x + "";
+      SF Sg Instr => x + "ą";
+      SF Sg Loc => x + "i";
+      SF Sg Voc => x + "i";
+      SF Pl Nom => x + "i";
+      SF Pl Gen => x + "i";
+      SF Pl Dat => x + "om";
+      SF Pl Acc => x + "i";
+      SF Pl Instr => x + "ami";
+      SF Pl Loc => x + "ach";
+      SF Pl Voc => x + "i"
+    };
+
+    oper mkNTable0870: Str -> SubstForm => Str; --%
+    oper mkNTable0870 lexem = 
+      let x = Predef.tk 2 lexem in
+    table { 
+      SF Sg Nom => x + "ąż";
+      SF Sg Gen => x + "ęża";
+      SF Sg Dat => x + "ężowi";
+      SF Sg Acc => x + "ęża";
+      SF Sg Instr => x + "ężem";
+      SF Sg Loc => x + "ężu";
+      SF Sg Voc => x + "ężu";
+      SF Pl Nom => x + "ężowie";
+      SF Pl Gen => x + "ężów";
+      SF Pl Dat => x + "ężom";
+      SF Pl Acc => x + "ężów";
+      SF Pl Instr => x + "ężami";
+      SF Pl Loc => x + "ężach";
+      SF Pl Voc => x + "ężowie"
+    };
+
+    oper mkNTable0873: Str -> SubstForm => Str; --%
+    oper mkNTable0873 lexem = 
+      let x = Predef.tk 3 lexem in
+    table { 
+      SF Sg Nom => x + "zna";
+      SF Sg Gen => x + "zny";
+      SF Sg Dat => x + "źnie";
+      SF Sg Acc => x + "znę";
+      SF Sg Instr => x + "zną";
+      SF Sg Loc => x + "źnie";
+      SF Sg Voc => x + "zno";
+      SF Pl Nom => x + "źni";
+      SF Pl Gen => x + "zn";
+      SF Pl Dat => x + "znom";
+      SF Pl Acc => x + "zn";
+      SF Pl Instr => x + "znami";
+      SF Pl Loc => x + "znach";
+      SF Pl Voc => x + "źni"
+    };
+
+    oper mkNTable0874: Str -> SubstForm => Str; --%
+    oper mkNTable0874 lexem = 
+      let x = Predef.tk 2 lexem in
+    table { 
+      SF Sg Nom => x + "ól";
+      SF Sg Gen => x + "ola";
+      SF Sg Dat => x + "olowi";
+      SF Sg Acc => x + "ola";
+      SF Sg Instr => x + "olem";
+      SF Sg Loc => x + "olu";
+      SF Sg Voc => x + "olu";
+      SF Pl Nom => x + "ole";
+      SF Pl Gen => x + "oli";
+      SF Pl Dat => x + "olom";
+      SF Pl Acc => x + "ole";
+      SF Pl Instr => x + "olami";
+      SF Pl Loc => x + "olach";
+      SF Pl Voc => x + "ole"
+    };
+
+    oper mkNTable0875: Str -> SubstForm => Str; --%
+    oper mkNTable0875 lexem = 
+      let x = Predef.tk 3 lexem in
+    table { 
+      SF Sg Nom => x + "órg";
+      SF Sg Gen => x + "orga";
+      SF Sg Dat => x + "orgowi";
+      SF Sg Acc => x + "órg";
+      SF Sg Instr => x + "orgiem";
+      SF Sg Loc => x + "orgu";
+      SF Sg Voc => x + "orgu";
+      SF Pl Nom => x + "orgi";
+      SF Pl Gen => x + "orgów";
+      SF Pl Dat => x + "orgom";
+      SF Pl Acc => x + "orgi";
+      SF Pl Instr => x + "orgami";
+      SF Pl Loc => x + "orgach";
+      SF Pl Voc => x + "orgi"
+    };
+
+    oper mkNTable0876: Str -> SubstForm => Str; --%
+    oper mkNTable0876 lexem = 
+      let x = Predef.tk 3 lexem in
+    table { 
+      SF Sg Nom => x + "ńko";
+      SF Sg Gen => x + "ńka";
+      SF Sg Dat => x + "ńku";
+      SF Sg Acc => x + "ńko";
+      SF Sg Instr => x + "ńkiem";
+      SF Sg Loc => x + "ńku";
+      SF Sg Voc => x + "ńko";
+      SF Pl Nom => x + "ńka";
+      SF Pl Gen => x + "niek";
+      SF Pl Dat => x + "ńkom";
+      SF Pl Acc => x + "ńka";
+      SF Pl Instr => x + "ńkami";
+      SF Pl Loc => x + "ńkach";
+      SF Pl Voc => x + "ńka"
+    };
+
+    oper mkNTable0877: Str -> SubstForm => Str; --%
+    oper mkNTable0877 lexem = 
+      let x = Predef.tk 2 lexem in
+    table { 
+      SF Sg Nom => x + "em";
+      SF Sg Gen => x + "mu";
+      SF Sg Dat => x + "mowi";
+      SF Sg Acc => x + "em";
+      SF Sg Instr => x + "mem";
+      SF Sg Loc => x + "mie";
+      SF Sg Voc => x + "mie";
+      SF Pl Nom => x + "my";
+      SF Pl Gen => x + "mów";
+      SF Pl Dat => x + "mom";
+      SF Pl Acc => x + "my";
+      SF Pl Instr => x + "mami";
+      SF Pl Loc => x + "mach";
+      SF Pl Voc => x + "my"
+    };
+
+    oper mkNTable0878: Str -> SubstForm => Str; --%
+    oper mkNTable0878 lexem = 
+      let x = Predef.tk 4 lexem in
+    table { 
+      SF Sg Nom => x + "enie";
+      SF Sg Gen => x + "enia";
+      SF Sg Dat => x + "eniu";
+      SF Sg Acc => x + "enie";
+      SF Sg Instr => x + "eniem";
+      SF Sg Loc => x + "eniu";
+      SF Sg Voc => x + "enie";
+      SF Pl Nom => x + "ona";
+      SF Pl Gen => x + "on";
+      SF Pl Dat => x + "onom";
+      SF Pl Acc => x + "ona";
+      SF Pl Instr => x + "onami";
+      SF Pl Loc => x + "onach";
+      SF Pl Voc => x + "ona"
+    };
+
+    oper mkNTable0879: Str -> SubstForm => Str; --%
+    oper mkNTable0879 lexem = 
+      let x = Predef.tk 2 lexem in
+    table { 
+      SF Sg Nom => x + "ca";
+      SF Sg Gen => x + "ki";
+      SF Sg Dat => x + "ce";
+      SF Sg Acc => x + "cę";
+      SF Sg Instr => x + "cą";
+      SF Sg Loc => x + "ce";
+      SF Sg Voc => x + "co";
+      SF Pl Nom => x + "ki";
+      SF Pl Gen => x + "ec";
+      SF Pl Dat => x + "com";
+      SF Pl Acc => x + "ki";
+      SF Pl Instr => x + "cami";
+      SF Pl Loc => x + "cach";
+      SF Pl Voc => x + "ki"
+    };
+
+    oper mkNTable0881: Str -> SubstForm => Str; --%
+    oper mkNTable0881 lexem = 
+      let x = Predef.tk 2 lexem in
+    table { 
+      SF Sg Nom => x + "el";
+      SF Sg Gen => x + "ela";
+      SF Sg Dat => x + "elowi";
+      SF Sg Acc => x + "ela";
+      SF Sg Instr => x + "elem";
+      SF Sg Loc => x + "elu";
+      SF Sg Voc => x + "elu";
+      SF Pl Nom => x + "ele";
+      SF Pl Gen => x + "ół";
+      SF Pl Dat => x + "ołom";
+      SF Pl Acc => x + "ół";
+      SF Pl Instr => x + "ółmi";
+      SF Pl Loc => x + "ołach";
+      SF Pl Voc => x + "ele"
+    };
+
+    oper mkNTable0882: Str -> SubstForm => Str; --%
+    oper mkNTable0882 lexem = 
+      let x = Predef.tk 4 lexem in
+    table { 
+      SF Sg Nom => x + "asta";
+      SF Sg Gen => x + "asty";
+      SF Sg Dat => x + "eście";
+      SF Sg Acc => x + "astę";
+      SF Sg Instr => x + "astą";
+      SF Sg Loc => x + "eście";
+      SF Sg Voc => x + "asto";
+      SF Pl Nom => x + "asty";
+      SF Pl Gen => x + "ast";
+      SF Pl Dat => x + "astom";
+      SF Pl Acc => x + "asty";
+      SF Pl Instr => x + "astami";
+      SF Pl Loc => x + "astach";
+      SF Pl Voc => x + "asty"
+    };
+
+    oper mkNTable0887: Str -> SubstForm => Str; --%
+    oper mkNTable0887 lexem = 
+      let x = Predef.tk 1 lexem in
+    table { 
+      SF Sg Nom => x + "ś";
+      SF Sg Gen => x + "si";
+      SF Sg Dat => x + "si";
+      SF Sg Acc => x + "ś";
+      SF Sg Instr => x + "sią";
+      SF Sg Loc => x + "si";
+      SF Sg Voc => x + "si";
+      SF Pl Nom => x + "si";
+      SF Pl Gen => x + "si";
+      SF Pl Dat => x + "siom";
+      SF Pl Acc => x + "si";
+      SF Pl Instr => x + "siami";
+      SF Pl Loc => x + "siach";
+      SF Pl Voc => x + "si"
+    };
+
+    oper mkNTable0888: Str -> SubstForm => Str; --%
+    oper mkNTable0888 lexem = 
+      let x = Predef.tk 2 lexem in
+    table { 
+      SF Sg Nom => x + "ów";
+      SF Sg Gen => x + "owiu";
+      SF Sg Dat => x + "owiowi";
+      SF Sg Acc => x + "ów";
+      SF Sg Instr => x + "owiem";
+      SF Sg Loc => x + "owiu";
+      SF Sg Voc => x + "owiu";
+      SF Pl Nom => x + "owie";
+      SF Pl Gen => x + "owiów";
+      SF Pl Dat => x + "owiom";
+      SF Pl Acc => x + "owie";
+      SF Pl Instr => x + "owiami";
+      SF Pl Loc => x + "owiach";
+      SF Pl Voc => x + "owie"
+    };
+
+    oper mkNTable0889: Str -> SubstForm => Str; --%
+    oper mkNTable0889 lexem = 
+      let x = Predef.tk 2 lexem in
+    table { 
+      SF Sg Nom => x + "óż";
+      SF Sg Gen => x + "oża";
+      SF Sg Dat => x + "ożowi";
+      SF Sg Acc => x + "óż";
+      SF Sg Instr => x + "ożem";
+      SF Sg Loc => x + "ożu";
+      SF Sg Voc => x + "ożu";
+      SF Pl Nom => x + "oże";
+      SF Pl Gen => x + "oży";
+      SF Pl Dat => x + "ożom";
+      SF Pl Acc => x + "oże";
+      SF Pl Instr => x + "ożami";
+      SF Pl Loc => x + "ożach";
+      SF Pl Voc => x + "oże"
+    };
+
+    oper mkNTable0890: Str -> SubstForm => Str; --%
+    oper mkNTable0890 lexem = 
+      let x = Predef.tk 2 lexem in
+    table { 
+      SF Sg Nom => x + "ad";
+      SF Sg Gen => x + "adu";
+      SF Sg Dat => x + "adowi";
+      SF Sg Acc => x + "ad";
+      SF Sg Instr => x + "adem";
+      SF Sg Loc => x + "edzie";
+      SF Sg Voc => x + "edzie";
+      SF Pl Nom => x + "ady";
+      SF Pl Gen => x + "adów";
+      SF Pl Dat => x + "adom";
+      SF Pl Acc => x + "ady";
+      SF Pl Instr => x + "adami";
+      SF Pl Loc => x + "adach";
+      SF Pl Voc => x + "ady"
+    };
+
+    oper mkNTable0894: Str -> SubstForm => Str; --%
+    oper mkNTable0894 lexem = 
+      let x = Predef.tk 2 lexem in
+    table { 
+      SF Sg Nom => x + "et";
+      SF Sg Gen => x + "tu";
+      SF Sg Dat => x + "towi";
+      SF Sg Acc => x + "et";
+      SF Sg Instr => x + "tem";
+      SF Sg Loc => x + "cie";
+      SF Sg Voc => x + "cie";
+      SF Pl Nom => x + "ty";
+      SF Pl Gen => x + "tów";
+      SF Pl Dat => x + "tom";
+      SF Pl Acc => x + "ty";
+      SF Pl Instr => x + "tami";
+      SF Pl Loc => x + "tach";
+      SF Pl Voc => x + "ty"
+    };
+
+    oper mkNTable0895: Str -> SubstForm => Str; --%
+    oper mkNTable0895 lexem = 
+      let x = Predef.tk 3 lexem in
+    table { 
+      SF Sg Nom => x + "atr";
+      SF Sg Gen => x + "atru";
+      SF Sg Dat => x + "atrowi";
+      SF Sg Acc => x + "atr";
+      SF Sg Instr => x + "atrem";
+      SF Sg Loc => x + "etrze";
+      SF Sg Voc => x + "etrze";
+      SF Pl Nom => x + "atry";
+      SF Pl Gen => x + "atrów";
+      SF Pl Dat => x + "atrom";
+      SF Pl Acc => x + "atry";
+      SF Pl Instr => x + "atrami";
+      SF Pl Loc => x + "atrach";
+      SF Pl Voc => x + "atry"
+    };
+
+    oper mkNTable0896: Str -> SubstForm => Str; --%
+    oper mkNTable0896 lexem = 
+      let x = Predef.tk 4 lexem in
+    table { 
+      SF Sg Nom => x + "niek";
+      SF Sg Gen => x + "ńka";
+      SF Sg Dat => x + "ńkowi";
+      SF Sg Acc => x + "niek";
+      SF Sg Instr => x + "ńkiem";
+      SF Sg Loc => x + "ńku";
+      SF Sg Voc => x + "ńku";
+      SF Pl Nom => x + "ńki";
+      SF Pl Gen => x + "ńków";
+      SF Pl Dat => x + "ńkom";
+      SF Pl Acc => x + "ńki";
+      SF Pl Instr => x + "ńkami";
+      SF Pl Loc => x + "ńkach";
+      SF Pl Voc => x + "ńki"
+    };
+
+    oper mkNTable0897: Str -> SubstForm => Str; --%
+    oper mkNTable0897 lexem = 
+      let x = Predef.tk 3 lexem in
+    table { 
+      SF Sg Nom => x + "iec";
+      SF Sg Gen => x + "a";
+      SF Sg Dat => x + "u";
+      SF Sg Acc => x + "a";
+      SF Sg Instr => x + "em";
+      SF Sg Loc => x + "u";
+      SF Sg Voc => x + "ze";
+      SF Pl Nom => x + "owie";
+      SF Pl Gen => x + "ów";
+      SF Pl Dat => x + "om";
+      SF Pl Acc => x + "ów";
+      SF Pl Instr => x + "ami";
+      SF Pl Loc => x + "ach";
+      SF Pl Voc => x + "owie"
+    };
+
+    oper mkNTable0898: Str -> SubstForm => Str; --%
+    oper mkNTable0898 lexem = 
+      let x = Predef.tk 3 lexem in
+    table { 
+      SF Sg Nom => x + "oko";
+      SF Sg Gen => x + "oka";
+      SF Sg Dat => x + "oku";
+      SF Sg Acc => x + "oko";
+      SF Sg Instr => x + "okiem";
+      SF Sg Loc => x + "oku";
+      SF Sg Voc => x + "oko";
+      SF Pl Nom => x + "oczy";
+      SF Pl Gen => x + "ócz";
+      SF Pl Dat => x + "oczom";
+      SF Pl Acc => x + "oczy";
+      SF Pl Instr => x + "oczyma";
+      SF Pl Loc => x + "oczach";
+      SF Pl Voc => x + "oczy"
+    };
+
+    oper mkNTable0899: Str -> SubstForm => Str; --%
+    oper mkNTable0899 lexem = 
+      let x = Predef.tk 4 lexem in
+    table { 
+      SF Sg Nom => x + "niek";
+      SF Sg Gen => x + "ńka";
+      SF Sg Dat => x + "ńkowi";
+      SF Sg Acc => x + "ńka";
+      SF Sg Instr => x + "ńkiem";
+      SF Sg Loc => x + "ńku";
+      SF Sg Voc => x + "ńku";
+      SF Pl Nom => x + "ńki";
+      SF Pl Gen => x + "ńków";
+      SF Pl Dat => x + "ńkom";
+      SF Pl Acc => x + "ńki";
+      SF Pl Instr => x + "ńkami";
+      SF Pl Loc => x + "ńkach";
+      SF Pl Voc => x + "ńki"
+    };
+
+    oper mkNTable0900: Str -> SubstForm => Str; --%
+    oper mkNTable0900 lexem = 
+      let x = Predef.tk 1 lexem in
+    table { 
+      SF Sg Nom => x + "o";
+      SF Sg Gen => x + "a";
+      SF Sg Dat => x + "u";
+      SF Sg Acc => x + "o";
+      SF Sg Instr => x + "em";
+      SF Sg Loc => x + "ze";
+      SF Sg Voc => x + "o";
+      SF Pl Nom => x + "a";
+      SF Pl Gen => x + "ów";
+      SF Pl Dat => x + "om";
+      SF Pl Acc => x + "a";
+      SF Pl Instr => x + "ami";
+      SF Pl Loc => x + "ach";
+      SF Pl Voc => x + "a"
+    };
+
+    oper mkNTable0902: Str -> SubstForm => Str; --%
+    oper mkNTable0902 lexem = 
+      let x = Predef.tk 2 lexem in
+    table { 
+      SF Sg Nom => x + "ół";
+      SF Sg Gen => x + "oła";
+      SF Sg Dat => x + "ołowi";
+      SF Sg Acc => x + "ół";
+      SF Sg Instr => x + "ołem";
+      SF Sg Loc => x + "ole";
+      SF Sg Voc => x + "ole";
+      SF Pl Nom => x + "oły";
+      SF Pl Gen => x + "ołów";
+      SF Pl Dat => x + "ołom";
+      SF Pl Acc => x + "oły";
+      SF Pl Instr => x + "ołami";
+      SF Pl Loc => x + "ołach";
+      SF Pl Voc => x + "oły"
+    };
+
+    oper mkNTable0903: Str -> SubstForm => Str; --%
+    oper mkNTable0903 lexem = 
+      let x = Predef.tk 3 lexem in
+    table { 
+      SF Sg Nom => x + "zeł";
+      SF Sg Gen => x + "ła";
+      SF Sg Dat => x + "łu";
+      SF Sg Acc => x + "ła";
+      SF Sg Instr => x + "łem";
+      SF Sg Loc => x + "le";
+      SF Sg Voc => x + "le";
+      SF Pl Nom => x + "łowie";
+      SF Pl Gen => x + "łów";
+      SF Pl Dat => x + "łom";
+      SF Pl Acc => x + "łów";
+      SF Pl Instr => x + "łami";
+      SF Pl Loc => x + "łach";
+      SF Pl Voc => x + "łowie"
+    };
+
+    oper mkNTable0904: Str -> SubstForm => Str; --%
+    oper mkNTable0904 lexem = 
+      let x = Predef.tk 3 lexem in
+    table { 
+      SF Sg Nom => x + "zeł";
+      SF Sg Gen => x + "ła";
+      SF Sg Dat => x + "łu";
+      SF Sg Acc => x + "ła";
+      SF Sg Instr => x + "łem";
+      SF Sg Loc => x + "le";
+      SF Sg Voc => x + "le";
+      SF Pl Nom => x + "ły";
+      SF Pl Gen => x + "łów";
+      SF Pl Dat => x + "łom";
+      SF Pl Acc => x + "ły";
+      SF Pl Instr => x + "łami";
+      SF Pl Loc => x + "łach";
+      SF Pl Voc => x + "ły"
+    };
+
+    oper mkNTable0905: Str -> SubstForm => Str; --%
+    oper mkNTable0905 lexem = 
+      let x = Predef.tk 2 lexem in
+    table { 
+      SF Sg Nom => x + "ep";
+      SF Sg Gen => x + "pu";
+      SF Sg Dat => x + "powi";
+      SF Sg Acc => x + "ep";
+      SF Sg Instr => x + "pem";
+      SF Sg Loc => x + "pie";
+      SF Sg Voc => x + "pie";
+      SF Pl Nom => x + "py";
+      SF Pl Gen => x + "pów";
+      SF Pl Dat => x + "pom";
+      SF Pl Acc => x + "py";
+      SF Pl Instr => x + "pami";
+      SF Pl Loc => x + "pach";
+      SF Pl Voc => x + "py"
+    };
+
+    oper mkNTable0906: Str -> SubstForm => Str; --%
+    oper mkNTable0906 lexem = 
+      let x = Predef.tk 3 lexem in
+    table { 
+      SF Sg Nom => x + "set";
+      SF Sg Gen => x + "stu";
+      SF Sg Dat => x + "stowi";
+      SF Sg Acc => x + "set";
+      SF Sg Instr => x + "stem";
+      SF Sg Loc => x + "ście";
+      SF Sg Voc => x + "ście";
+      SF Pl Nom => x + "sty";
+      SF Pl Gen => x + "stów";
+      SF Pl Dat => x + "stom";
+      SF Pl Acc => x + "sty";
+      SF Pl Instr => x + "stami";
+      SF Pl Loc => x + "stach";
+      SF Pl Voc => x + "sty"
+    };
+
+    oper mkNTable0907: Str -> SubstForm => Str; --%
+    oper mkNTable0907 lexem = 
+      let x = Predef.tk 4 lexem in
+    table { 
+      SF Sg Nom => x + "siec";
+      SF Sg Gen => x + "śca";
+      SF Sg Dat => x + "ścowi";
+      SF Sg Acc => x + "śca";
+      SF Sg Instr => x + "ścem";
+      SF Sg Loc => x + "ścu";
+      SF Sg Voc => x + "ścu";
+      SF Pl Nom => x + "śce";
+      SF Pl Gen => x + "śców";
+      SF Pl Dat => x + "ścom";
+      SF Pl Acc => x + "śce";
+      SF Pl Instr => x + "ścami";
+      SF Pl Loc => x + "ścach";
+      SF Pl Voc => x + "śce"
+    };
+
+    oper mkNTable0909: Str -> SubstForm => Str; --%
+    oper mkNTable0909 lexem = 
+      let x = Predef.tk 4 lexem in
+    table { 
+      SF Sg Nom => x + "sioł";
+      SF Sg Gen => x + "sła";
+      SF Sg Dat => x + "słu";
+      SF Sg Acc => x + "sła";
+      SF Sg Instr => x + "słem";
+      SF Sg Loc => x + "śle";
+      SF Sg Voc => x + "śle";
+      SF Pl Nom => x + "sły";
+      SF Pl Gen => x + "słów";
+      SF Pl Dat => x + "słom";
+      SF Pl Acc => x + "sły";
+      SF Pl Instr => x + "słami";
+      SF Pl Loc => x + "słach";
+      SF Pl Voc => x + "sły"
+    };
+
+    oper mkNTable0910: Str -> SubstForm => Str; --%
+    oper mkNTable0910 lexem = 
+      let x = Predef.tk 3 lexem in
+    table { 
+      SF Sg Nom => x + "oła";
+      SF Sg Gen => x + "oły";
+      SF Sg Dat => x + "ole";
+      SF Sg Acc => x + "ołę";
+      SF Sg Instr => x + "ołą";
+      SF Sg Loc => x + "ole";
+      SF Sg Voc => x + "oło";
+      SF Pl Nom => x + "oły";
+      SF Pl Gen => x + "ół";
+      SF Pl Dat => x + "ołom";
+      SF Pl Acc => x + "oły";
+      SF Pl Instr => x + "ołami";
+      SF Pl Loc => x + "ołach";
+      SF Pl Voc => x + "oły"
+    };
+
+    oper mkNTable0911: Str -> SubstForm => Str; --%
+    oper mkNTable0911 lexem = 
+      let x = Predef.tk 2 lexem in
+    table { 
+      SF Sg Nom => x + "eń";
+      SF Sg Gen => x + "nia";
+      SF Sg Dat => x + "niowi";
+      SF Sg Acc => x + "eń";
+      SF Sg Instr => x + "niem";
+      SF Sg Loc => x + "niu";
+      SF Sg Voc => x + "niu";
+      SF Pl Nom => x + "nie";
+      SF Pl Gen => x + "ni";
+      SF Pl Dat => x + "niom";
+      SF Pl Acc => x + "nie";
+      SF Pl Instr => x + "niami";
+      SF Pl Loc => x + "niach";
+      SF Pl Voc => x + "nie"
+    };
+
+    oper mkNTable0912: Str -> SubstForm => Str; --%
+    oper mkNTable0912 lexem = 
+      let x = Predef.tk 2 lexem in
+    table { 
+      SF Sg Nom => x + "ca";
+      SF Sg Gen => x + "cy";
+      SF Sg Dat => x + "cy";
+      SF Sg Acc => x + "cę";
+      SF Sg Instr => x + "cą";
+      SF Sg Loc => x + "cy";
+      SF Sg Voc => x + "co";
+      SF Pl Nom => x + "ce";
+      SF Pl Gen => x + "iec";
+      SF Pl Dat => x + "com";
+      SF Pl Acc => x + "ce";
+      SF Pl Instr => x + "cami";
+      SF Pl Loc => x + "cach";
+      SF Pl Voc => x + "ce"
+    };
+
+    oper mkNTable0913: Str -> SubstForm => Str; --%
+    oper mkNTable0913 lexem = 
+      let x = Predef.tk 3 lexem in
+    table { 
+      SF Sg Nom => x + "ies";
+      SF Sg Gen => x + "sa";
+      SF Sg Dat => x + "sowi";
+      SF Sg Acc => x + "ies";
+      SF Sg Instr => x + "sem";
+      SF Sg Loc => x + "sie";
+      SF Sg Voc => x + "sie";
+      SF Pl Nom => x + "sy";
+      SF Pl Gen => x + "sów";
+      SF Pl Dat => x + "som";
+      SF Pl Acc => x + "sy";
+      SF Pl Instr => x + "sami";
+      SF Pl Loc => x + "sach";
+      SF Pl Voc => x + "sy"
+    };
+
+    oper mkNTable0915: Str -> SubstForm => Str; --%
+    oper mkNTable0915 lexem = 
+      let x = Predef.tk 2 lexem in
+    table { 
+      SF Sg Nom => x + "ór";
+      SF Sg Gen => x + "ora";
+      SF Sg Dat => x + "orowi";
+      SF Sg Acc => x + "ór";
+      SF Sg Instr => x + "orem";
+      SF Sg Loc => x + "orze";
+      SF Sg Voc => x + "orze";
+      SF Pl Nom => x + "ory";
+      SF Pl Gen => x + "orów";
+      SF Pl Dat => x + "orom";
+      SF Pl Acc => x + "ory";
+      SF Pl Instr => x + "orami";
+      SF Pl Loc => x + "orach";
+      SF Pl Voc => x + "ory"
+    };
+
+    oper mkNTable0916: Str -> SubstForm => Str; --%
+    oper mkNTable0916 lexem = 
+      let x = Predef.tk 1 lexem in
+    table { 
+      SF Sg Nom => x + "ś";
+      SF Sg Gen => x + "si";
+      SF Sg Dat => x + "si";
+      SF Sg Acc => x + "ś";
+      SF Sg Instr => x + "sią";
+      SF Sg Loc => x + "si";
+      SF Sg Voc => x + "si";
+      SF Pl Nom => x + "sie";
+      SF Pl Gen => x + "si";
+      SF Pl Dat => x + "siom";
+      SF Pl Acc => x + "sie";
+      SF Pl Instr => x + "siami";
+      SF Pl Loc => x + "siach";
+      SF Pl Voc => x + "sie"
+    };
+
+    oper mkNTable0918: Str -> SubstForm => Str; --%
+    oper mkNTable0918 lexem = 
+      let x = Predef.tk 1 lexem in
+    table { 
+      SF Sg Nom => x + "o";
+      SF Sg Gen => x + "o";
+      SF Sg Dat => x + "owi";
+      SF Sg Acc => x + "o";
+      SF Sg Instr => x + "o";
+      SF Sg Loc => x + "ze";
+      SF Sg Voc => x + "o";
+      SF Pl Nom => x + "o";
+      SF Pl Gen => x + "ów";
+      SF Pl Dat => x + "om";
+      SF Pl Acc => x + "o";
+      SF Pl Instr => x + "o";
+      SF Pl Loc => x + "o";
+      SF Pl Voc => x + "o"
+    };
+
+    oper mkNTable0919: Str -> SubstForm => Str; --%
+    oper mkNTable0919 lexem = 
+      let x = Predef.tk 1 lexem in
+    table { 
+      SF Sg Nom => x + "c";
+      SF Sg Gen => x + "ca";
+      SF Sg Dat => x + "cowi";
+      SF Sg Acc => x + "c";
+      SF Sg Instr => x + "kiem";
+      SF Sg Loc => x + "cu";
+      SF Sg Voc => x + "cu";
+      SF Pl Nom => x + "ki";
+      SF Pl Gen => x + "ców";
+      SF Pl Dat => x + "com";
+      SF Pl Acc => x + "ki";
+      SF Pl Instr => x + "cami";
+      SF Pl Loc => x + "cach";
+      SF Pl Voc => x + "ki"
+    };
+
+    oper mkNTable0921: Str -> SubstForm => Str; --%
+    oper mkNTable0921 lexem = 
+      let x = Predef.tk 1 lexem in
+    table { 
+      SF Sg Nom => x + "a";
+      SF Sg Gen => x + "i";
+      SF Sg Dat => x + "i";
+      SF Sg Acc => x + "ę";
+      SF Sg Instr => x + "ą";
+      SF Sg Loc => x + "i";
+      SF Sg Voc => x + "o";
+      SF Pl Nom => x + "e";
+      SF Pl Gen => x + "i";
+      SF Pl Dat => x + "om";
+      SF Pl Acc => x + "i";
+      SF Pl Instr => x + "ami";
+      SF Pl Loc => x + "ach";
+      SF Pl Voc => x + "e"
+    };
+
+    oper mkNTable0922: Str -> SubstForm => Str; --%
+    oper mkNTable0922 lexem = 
+      let x = Predef.tk 1 lexem in
+    table { 
+      SF Sg Nom => x + "ć";
+      SF Sg Gen => x + "cia";
+      SF Sg Dat => x + "ciowi";
+      SF Sg Acc => x + "cia";
+      SF Sg Instr => x + "ciem";
+      SF Sg Loc => x + "ciu";
+      SF Sg Voc => x + "ciu";
+      SF Pl Nom => x + "cie";
+      SF Pl Gen => x + "ci";
+      SF Pl Dat => x + "ciom";
+      SF Pl Acc => x + "cie";
+      SF Pl Instr => x + "ciami";
+      SF Pl Loc => x + "ciach";
+      SF Pl Voc => x + "cie"
+    };
+
+    oper mkNTable0923: Str -> SubstForm => Str; --%
+    oper mkNTable0923 lexem = 
+      let x = Predef.tk 1 lexem in
+    table { 
+      SF Sg Nom => x + "ć";
+      SF Sg Gen => x + "cia";
+      SF Sg Dat => x + "ciowi";
+      SF Sg Acc => x + "ć";
+      SF Sg Instr => x + "ciem";
+      SF Sg Loc => x + "ciu";
+      SF Sg Voc => x + "ciu";
+      SF Pl Nom => x + "cie";
+      SF Pl Gen => x + "ci";
+      SF Pl Dat => x + "ciom";
+      SF Pl Acc => x + "cie";
+      SF Pl Instr => x + "ciami";
+      SF Pl Loc => x + "ciach";
+      SF Pl Voc => x + "cie"
+    };
+
+    oper mkNTable0925: Str -> SubstForm => Str; --%
+    oper mkNTable0925 lexem = 
+      let x = Predef.tk 2 lexem in
+    table { 
+      SF Sg Nom => x + "ąz";
+      SF Sg Gen => x + "ęzu";
+      SF Sg Dat => x + "ęzowi";
+      SF Sg Acc => x + "ąz";
+      SF Sg Instr => x + "ęzem";
+      SF Sg Loc => x + "ęzie";
+      SF Sg Voc => x + "ęzie";
+      SF Pl Nom => x + "ęzy";
+      SF Pl Gen => x + "ęzów";
+      SF Pl Dat => x + "ęzom";
+      SF Pl Acc => x + "ęzy";
+      SF Pl Instr => x + "ęzami";
+      SF Pl Loc => x + "ęzach";
+      SF Pl Voc => x + "ęzy"
+    };
+
+    oper mkNTable0926: Str -> SubstForm => Str; --%
+    oper mkNTable0926 lexem = 
+      let x = Predef.tk 3 lexem in
+    table { 
+      SF Sg Nom => x + "ieć";
+      SF Sg Gen => x + "cia";
+      SF Sg Dat => x + "ciowi";
+      SF Sg Acc => x + "cia";
+      SF Sg Instr => x + "ciem";
+      SF Sg Loc => x + "ciu";
+      SF Sg Voc => x + "ciu";
+      SF Pl Nom => x + "cie";
+      SF Pl Gen => x + "ci";
+      SF Pl Dat => x + "ciom";
+      SF Pl Acc => x + "cie";
+      SF Pl Instr => x + "ciami";
+      SF Pl Loc => x + "ciach";
+      SF Pl Voc => x + "cie"
+    };
+
+    oper mkNTable0927: Str -> SubstForm => Str; --%
+    oper mkNTable0927 lexem = 
+      let x = Predef.tk 3 lexem in
+    table { 
+      SF Sg Nom => x + "ieć";
+      SF Sg Gen => x + "cia";
+      SF Sg Dat => x + "ciowi";
+      SF Sg Acc => x + "ieć";
+      SF Sg Instr => x + "ciem";
+      SF Sg Loc => x + "ciu";
+      SF Sg Voc => x + "ciu";
+      SF Pl Nom => x + "cie";
+      SF Pl Gen => x + "ci";
+      SF Pl Dat => x + "ciom";
+      SF Pl Acc => x + "cie";
+      SF Pl Instr => x + "ciami";
+      SF Pl Loc => x + "ciach";
+      SF Pl Voc => x + "cie"
+    };
+
+    oper mkNTable0929: Str -> SubstForm => Str; --%
+    oper mkNTable0929 lexem = 
+      let x = Predef.tk 3 lexem in
+    table { 
+      SF Sg Nom => x + "ćka";
+      SF Sg Gen => x + "ćki";
+      SF Sg Dat => x + "ćce";
+      SF Sg Acc => x + "ćkę";
+      SF Sg Instr => x + "ćką";
+      SF Sg Loc => x + "ćce";
+      SF Sg Voc => x + "ćko";
+      SF Pl Nom => x + "ćki";
+      SF Pl Gen => x + "ciek";
+      SF Pl Dat => x + "ćkom";
+      SF Pl Acc => x + "ćki";
+      SF Pl Instr => x + "ćkami";
+      SF Pl Loc => x + "ćkach";
+      SF Pl Voc => x + "ćki"
+    };
+
+    oper mkNTable0931: Str -> SubstForm => Str; --%
+    oper mkNTable0931 lexem = 
+      let x = Predef.tk 3 lexem in
+    table { 
+      SF Sg Nom => x + "ądz";
+      SF Sg Gen => x + "ądza";
+      SF Sg Dat => x + "ądzowi";
+      SF Sg Acc => x + "ądz";
+      SF Sg Instr => x + "ądzem";
+      SF Sg Loc => x + "ądzu";
+      SF Sg Voc => x + "ądzu";
+      SF Pl Nom => x + "ądze";
+      SF Pl Gen => x + "ędzy";
+      SF Pl Dat => x + "ądzom";
+      SF Pl Acc => x + "ądze";
+      SF Pl Instr => x + "ędzmi";
+      SF Pl Loc => x + "ądzach";
+      SF Pl Voc => x + "ądze"
+    };
+
+    oper mkNTable0934: Str -> SubstForm => Str; --%
+    oper mkNTable0934 lexem = 
+      let x = Predef.tk 3 lexem in
+    table { 
+      SF Sg Nom => x + "ies";
+      SF Sg Gen => x + "sa";
+      SF Sg Dat => x + "su";
+      SF Sg Acc => x + "sa";
+      SF Sg Instr => x + "sem";
+      SF Sg Loc => x + "sie";
+      SF Sg Voc => x + "sie";
+      SF Pl Nom => x + "sy";
+      SF Pl Gen => x + "sów";
+      SF Pl Dat => x + "som";
+      SF Pl Acc => x + "sy";
+      SF Pl Instr => x + "sami";
+      SF Pl Loc => x + "sach";
+      SF Pl Voc => x + "sy"
+    };
+
+    oper mkNTable0935: Str -> SubstForm => Str; --%
+    oper mkNTable0935 lexem = 
+      let x = Predef.tk 1 lexem in
+    table { 
+      SF Sg Nom => x + "ń";
+      SF Sg Gen => x + "ni";
+      SF Sg Dat => x + "ni";
+      SF Sg Acc => x + "ń";
+      SF Sg Instr => x + "nią";
+      SF Sg Loc => x + "ni";
+      SF Sg Voc => x + "ni";
+      SF Pl Nom => x + "ni";
+      SF Pl Gen => x + "ni";
+      SF Pl Dat => x + "niom";
+      SF Pl Acc => x + "ni";
+      SF Pl Instr => x + "niami";
+      SF Pl Loc => x + "niach";
+      SF Pl Voc => x + "ni"
+    };
+
+    oper mkNTable0936: Str -> SubstForm => Str; --%
+    oper mkNTable0936 lexem = 
+      let x = Predef.tk 2 lexem in
+    table { 
+      SF Sg Nom => x + "wa";
+      SF Sg Gen => x + "wy";
+      SF Sg Dat => x + "wie";
+      SF Sg Acc => x + "wę";
+      SF Sg Instr => x + "wą";
+      SF Sg Loc => x + "wie";
+      SF Sg Voc => x + "wo";
+      SF Pl Nom => x + "wy";
+      SF Pl Gen => x + "iew";
+      SF Pl Dat => x + "wom";
+      SF Pl Acc => x + "wy";
+      SF Pl Instr => x + "wami";
+      SF Pl Loc => x + "wach";
+      SF Pl Voc => x + "wy"
+    };
+
+    oper mkNTable0938: Str -> SubstForm => Str; --%
+    oper mkNTable0938 lexem = 
+      let x = Predef.tk 2 lexem in
+    table { 
+      SF Sg Nom => x + "ój";
+      SF Sg Gen => x + "oja";
+      SF Sg Dat => x + "ojowi";
+      SF Sg Acc => x + "oja";
+      SF Sg Instr => x + "ojem";
+      SF Sg Loc => x + "oju";
+      SF Sg Voc => x + "oju";
+      SF Pl Nom => x + "oje";
+      SF Pl Gen => x + "oi";
+      SF Pl Dat => x + "ojom";
+      SF Pl Acc => x + "oje";
+      SF Pl Instr => x + "ojami";
+      SF Pl Loc => x + "ojach";
+      SF Pl Voc => x + "oje"
+    };
+
+    oper mkNTable0939: Str -> SubstForm => Str; --%
+    oper mkNTable0939 lexem = 
+      let x = Predef.tk 2 lexem in
+    table { 
+      SF Sg Nom => x + "ół";
+      SF Sg Gen => x + "ołu";
+      SF Sg Dat => x + "ołowi";
+      SF Sg Acc => x + "ół";
+      SF Sg Instr => x + "ołem";
+      SF Sg Loc => x + "ele";
+      SF Sg Voc => x + "ele";
+      SF Pl Nom => x + "oły";
+      SF Pl Gen => x + "ołów";
+      SF Pl Dat => x + "ołom";
+      SF Pl Acc => x + "oły";
+      SF Pl Instr => x + "ołami";
+      SF Pl Loc => x + "ołach";
+      SF Pl Voc => x + "oły"
+    };
+
+    oper mkNTable0940: Str -> SubstForm => Str; --%
+    oper mkNTable0940 lexem = 
+      let x = Predef.tk 3 lexem in
+    table { 
+      SF Sg Nom => x + "seł";
+      SF Sg Gen => x + "sła";
+      SF Sg Dat => x + "słowi";
+      SF Sg Acc => x + "sła";
+      SF Sg Instr => x + "słem";
+      SF Sg Loc => x + "śle";
+      SF Sg Voc => x + "śle";
+      SF Pl Nom => x + "słowie";
+      SF Pl Gen => x + "słów";
+      SF Pl Dat => x + "słom";
+      SF Pl Acc => x + "słów";
+      SF Pl Instr => x + "słami";
+      SF Pl Loc => x + "słach";
+      SF Pl Voc => x + "słowie"
+    };
+
+    oper mkNTable0942: Str -> SubstForm => Str; --%
+    oper mkNTable0942 lexem = 
+      let x = Predef.tk 2 lexem in
+    table { 
+      SF Sg Nom => x + "ód";
+      SF Sg Gen => x + "oda";
+      SF Sg Dat => x + "odowi";
+      SF Sg Acc => x + "oda";
+      SF Sg Instr => x + "odem";
+      SF Sg Loc => x + "odzie";
+      SF Sg Voc => x + "odzie";
+      SF Pl Nom => x + "odowie";
+      SF Pl Gen => x + "odów";
+      SF Pl Dat => x + "odom";
+      SF Pl Acc => x + "odów";
+      SF Pl Instr => x + "odami";
+      SF Pl Loc => x + "odach";
+      SF Pl Voc => x + "odowie"
+    };
+
+    oper mkNTable0943: Str -> SubstForm => Str; --%
+    oper mkNTable0943 lexem = 
+      let x = Predef.tk 2 lexem in
+    table { 
+      SF Sg Nom => x + "ew";
+      SF Sg Gen => x + "wu";
+      SF Sg Dat => x + "wowi";
+      SF Sg Acc => x + "ew";
+      SF Sg Instr => x + "wem";
+      SF Sg Loc => x + "wie";
+      SF Sg Voc => x + "wie";
+      SF Pl Nom => x + "wy";
+      SF Pl Gen => x + "wów";
+      SF Pl Dat => x + "wom";
+      SF Pl Acc => x + "wy";
+      SF Pl Instr => x + "wami";
+      SF Pl Loc => x + "wach";
+      SF Pl Voc => x + "wy"
+    };
+
+    oper mkNTable0944: Str -> SubstForm => Str; --%
+    oper mkNTable0944 lexem = 
+      let x = Predef.tk 0 lexem in
+    table { 
+      SF Sg Nom => x + "";
+      SF Sg Gen => x + "a";
+      SF Sg Dat => x + "owi";
+      SF Sg Acc => x + "a";
+      SF Sg Instr => x + "em";
+      SF Sg Loc => x + "ie";
+      SF Sg Voc => x + "ie";
+      SF Pl Nom => x + "e";
+      SF Pl Gen => x + "ów";
+      SF Pl Dat => x + "om";
+      SF Pl Acc => x + "e";
+      SF Pl Instr => x + "ami";
+      SF Pl Loc => x + "ach";
+      SF Pl Voc => x + "e"
+    };
+
+    oper mkNTable0945: Str -> SubstForm => Str; --%
+    oper mkNTable0945 lexem = 
+      let x = Predef.tk 4 lexem in
+    table { 
+      SF Sg Nom => x + "ośba";
+      SF Sg Gen => x + "ośby";
+      SF Sg Dat => x + "ośbie";
+      SF Sg Acc => x + "ośbę";
+      SF Sg Instr => x + "ośbą";
+      SF Sg Loc => x + "ośbie";
+      SF Sg Voc => x + "ośbo";
+      SF Pl Nom => x + "ośby";
+      SF Pl Gen => x + "óśb";
+      SF Pl Dat => x + "ośbom";
+      SF Pl Acc => x + "ośby";
+      SF Pl Instr => x + "ośbami";
+      SF Pl Loc => x + "ośbach";
+      SF Pl Voc => x + "ośby"
+    };
+
+    oper mkNTable0946: Str -> SubstForm => Str; --%
+    oper mkNTable0946 lexem = 
+      let x = Predef.tk 4 lexem in
+    table { 
+      SF Sg Nom => x + "zień";
+      SF Sg Gen => x + "nia";
+      SF Sg Dat => x + "niowi";
+      SF Sg Acc => x + "nia";
+      SF Sg Instr => x + "niem";
+      SF Sg Loc => x + "niu";
+      SF Sg Voc => x + "niu";
+      SF Pl Nom => x + "nie";
+      SF Pl Gen => x + "niów";
+      SF Pl Dat => x + "niom";
+      SF Pl Acc => x + "niów";
+      SF Pl Instr => x + "niami";
+      SF Pl Loc => x + "niach";
+      SF Pl Voc => x + "nie"
+    };
+
+    oper mkNTable0947: Str -> SubstForm => Str; --%
+    oper mkNTable0947 lexem = 
+      let x = Predef.tk 3 lexem in
+    table { 
+      SF Sg Nom => x + "ień";
+      SF Sg Gen => x + "nia";
+      SF Sg Dat => x + "niowi";
+      SF Sg Acc => x + "nia";
+      SF Sg Instr => x + "niem";
+      SF Sg Loc => x + "niu";
+      SF Sg Voc => x + "niu";
+      SF Pl Nom => x + "nie";
+      SF Pl Gen => x + "niów";
+      SF Pl Dat => x + "niom";
+      SF Pl Acc => x + "niów";
+      SF Pl Instr => x + "niami";
+      SF Pl Loc => x + "niach";
+      SF Pl Voc => x + "nie"
+    };
+
+    oper mkNTable0948: Str -> SubstForm => Str; --%
+    oper mkNTable0948 lexem = 
+      let x = Predef.tk 3 lexem in
+    table { 
+      SF Sg Nom => x + "ień";
+      SF Sg Gen => x + "nia";
+      SF Sg Dat => x + "niowi";
+      SF Sg Acc => x + "nia";
+      SF Sg Instr => x + "niem";
+      SF Sg Loc => x + "niu";
+      SF Sg Voc => x + "niu";
+      SF Pl Nom => x + "nie";
+      SF Pl Gen => x + "ni";
+      SF Pl Dat => x + "niom";
+      SF Pl Acc => x + "nie";
+      SF Pl Instr => x + "niami";
+      SF Pl Loc => x + "niach";
+      SF Pl Voc => x + "nie"
+    };
+
+    oper mkNTable0950: Str -> SubstForm => Str; --%
+    oper mkNTable0950 lexem = 
+      let x = Predef.tk 1 lexem in
+    table { 
+      SF Sg Nom => x + "a";
+      SF Sg Gen => x + "y";
+      SF Sg Dat => x + "zie";
+      SF Sg Acc => x + "ę";
+      SF Sg Instr => x + "ą";
+      SF Sg Loc => x + "zie";
+      SF Sg Voc => x + "o";
+      SF Pl Nom => x + "y";
+      SF Pl Gen => x + "ów";
+      SF Pl Dat => x + "om";
+      SF Pl Acc => x + "y";
+      SF Pl Instr => x + "ami";
+      SF Pl Loc => x + "ach";
+      SF Pl Voc => x + "y"
+    };
+
+    oper mkNTable0951: Str -> SubstForm => Str; --%
+    oper mkNTable0951 lexem = 
+      let x = Predef.tk 4 lexem in
+    table { 
+      SF Sg Nom => x + "owie";
+      SF Sg Gen => x + "owia";
+      SF Sg Dat => x + "owiu";
+      SF Sg Acc => x + "owie";
+      SF Sg Instr => x + "owiem";
+      SF Sg Loc => x + "owiu";
+      SF Sg Voc => x + "owie";
+      SF Pl Nom => x + "owia";
+      SF Pl Gen => x + "ów";
+      SF Pl Dat => x + "owiom";
+      SF Pl Acc => x + "owia";
+      SF Pl Instr => x + "owiami";
+      SF Pl Loc => x + "owiach";
+      SF Pl Voc => x + "owia"
+    };
+
+    oper mkNTable0953: Str -> SubstForm => Str; --%
+    oper mkNTable0953 lexem = 
+      let x = Predef.tk 1 lexem in
+    table { 
+      SF Sg Nom => x + "ś";
+      SF Sg Gen => x + "sia";
+      SF Sg Dat => x + "siowi";
+      SF Sg Acc => x + "ś";
+      SF Sg Instr => x + "siem";
+      SF Sg Loc => x + "siu";
+      SF Sg Voc => x + "siu";
+      SF Pl Nom => x + "sie";
+      SF Pl Gen => x + "si";
+      SF Pl Dat => x + "siom";
+      SF Pl Acc => x + "sie";
+      SF Pl Instr => x + "siami";
+      SF Pl Loc => x + "siach";
+      SF Pl Voc => x + "sie"
+    };
+
+    oper mkNTable0955: Str -> SubstForm => Str; --%
+    oper mkNTable0955 lexem = 
+      let x = Predef.tk 2 lexem in
+    table { 
+      SF Sg Nom => x + "to";
+      SF Sg Gen => x + "ta";
+      SF Sg Dat => x + "tu";
+      SF Sg Acc => x + "to";
+      SF Sg Instr => x + "tem";
+      SF Sg Loc => x + "cie";
+      SF Sg Voc => x + "to";
+      SF Pl Nom => x + "ta";
+      SF Pl Gen => x + "tów";
+      SF Pl Dat => x + "tom";
+      SF Pl Acc => x + "ta";
+      SF Pl Instr => x + "tami";
+      SF Pl Loc => x + "tach";
+      SF Pl Voc => x + "ta"
+    };
+
+    oper mkNTable0956: Str -> SubstForm => Str; --%
+    oper mkNTable0956 lexem = 
+      let x = Predef.tk 2 lexem in
+    table { 
+      SF Sg Nom => x + "eć";
+      SF Sg Gen => x + "cia";
+      SF Sg Dat => x + "ciowi";
+      SF Sg Acc => x + "cia";
+      SF Sg Instr => x + "ciem";
+      SF Sg Loc => x + "ciu";
+      SF Sg Voc => x + "ciu";
+      SF Pl Nom => x + "cie";
+      SF Pl Gen => x + "ciów";
+      SF Pl Dat => x + "ciom";
+      SF Pl Acc => x + "cie";
+      SF Pl Instr => x + "ciami";
+      SF Pl Loc => x + "ciach";
+      SF Pl Voc => x + "cie"
+    };
+
+    oper mkNTable0957: Str -> SubstForm => Str; --%
+    oper mkNTable0957 lexem = 
+      let x = Predef.tk 2 lexem in
+    table { 
+      SF Sg Nom => x + "eć";
+      SF Sg Gen => x + "ci";
+      SF Sg Dat => x + "ci";
+      SF Sg Acc => x + "eć";
+      SF Sg Instr => x + "cią";
+      SF Sg Loc => x + "ci";
+      SF Sg Voc => x + "ci";
+      SF Pl Nom => x + "cie";
+      SF Pl Gen => x + "ci";
+      SF Pl Dat => x + "ciom";
+      SF Pl Acc => x + "cie";
+      SF Pl Instr => x + "ciami";
+      SF Pl Loc => x + "ciach";
+      SF Pl Voc => x + "cie"
+    };
+
+    oper mkNTable0958: Str -> SubstForm => Str; --%
+    oper mkNTable0958 lexem = 
+      let x = Predef.tk 3 lexem in
+    table { 
+      SF Sg Nom => x + "tno";
+      SF Sg Gen => x + "tna";
+      SF Sg Dat => x + "tnu";
+      SF Sg Acc => x + "tno";
+      SF Sg Instr => x + "tnem";
+      SF Sg Loc => x + "tnie";
+      SF Sg Voc => x + "tno";
+      SF Pl Nom => x + "tna";
+      SF Pl Gen => x + "cien";
+      SF Pl Dat => x + "tnom";
+      SF Pl Acc => x + "tna";
+      SF Pl Instr => x + "tnami";
+      SF Pl Loc => x + "tnach";
+      SF Pl Voc => x + "tna"
+    };
+
+    oper mkNTable0959: Str -> SubstForm => Str; --%
+    oper mkNTable0959 lexem = 
+      let x = Predef.tk 3 lexem in
+    table { 
+      SF Sg Nom => x + "sen";
+      SF Sg Gen => x + "snu";
+      SF Sg Dat => x + "snowi";
+      SF Sg Acc => x + "sen";
+      SF Sg Instr => x + "snem";
+      SF Sg Loc => x + "śnie";
+      SF Sg Voc => x + "śnie";
+      SF Pl Nom => x + "sny";
+      SF Pl Gen => x + "snów";
+      SF Pl Dat => x + "snom";
+      SF Pl Acc => x + "sny";
+      SF Pl Instr => x + "snami";
+      SF Pl Loc => x + "snach";
+      SF Pl Voc => x + "sny"
+    };
+
+    oper mkNTable0960: Str -> SubstForm => Str; --%
+    oper mkNTable0960 lexem = 
+      let x = Predef.tk 3 lexem in
+    table { 
+      SF Sg Nom => x + "ieś";
+      SF Sg Gen => x + "si";
+      SF Sg Dat => x + "si";
+      SF Sg Acc => x + "ieś";
+      SF Sg Instr => x + "sią";
+      SF Sg Loc => x + "si";
+      SF Sg Voc => x + "si";
+      SF Pl Nom => x + "sie";
+      SF Pl Gen => x + "si";
+      SF Pl Dat => x + "siom";
+      SF Pl Acc => x + "sie";
+      SF Pl Instr => x + "siami";
+      SF Pl Loc => x + "siach";
+      SF Pl Voc => x + "sie"
+    };
+
+    oper mkNTable0961: Str -> SubstForm => Str; --%
+    oper mkNTable0961 lexem = 
+      let x = Predef.tk 4 lexem in
+    table { 
+      SF Sg Nom => x + "atło";
+      SF Sg Gen => x + "atła";
+      SF Sg Dat => x + "atłu";
+      SF Sg Acc => x + "atło";
+      SF Sg Instr => x + "atłem";
+      SF Sg Loc => x + "etle";
+      SF Sg Voc => x + "atło";
+      SF Pl Nom => x + "atła";
+      SF Pl Gen => x + "ateł";
+      SF Pl Dat => x + "atłom";
+      SF Pl Acc => x + "atła";
+      SF Pl Instr => x + "atłami";
+      SF Pl Loc => x + "atłach";
+      SF Pl Voc => x + "atła"
+    };
+
+    oper mkNTable0962: Str -> SubstForm => Str; --%
+    oper mkNTable0962 lexem = 
+      let x = Predef.tk 1 lexem in
+    table { 
+      SF Sg Nom => x + "o";
+      SF Sg Gen => x + "o";
+      SF Sg Dat => x + "u";
+      SF Sg Acc => x + "o";
+      SF Sg Instr => x + "o";
+      SF Sg Loc => x + "o";
+      SF Sg Voc => x + "o";
+      SF Pl Nom => x + "o";
+      SF Pl Gen => x + "o";
+      SF Pl Dat => x + "o";
+      SF Pl Acc => x + "o";
+      SF Pl Instr => x + "o";
+      SF Pl Loc => x + "o";
+      SF Pl Voc => x + "o"
+    };
+
+    oper mkNTable0963: Str -> SubstForm => Str; --%
+    oper mkNTable0963 lexem = 
+      let x = Predef.tk 1 lexem in
+    table { 
+      SF Sg Nom => x + "e";
+      SF Sg Gen => x + "e";
+      SF Sg Dat => x + "e";
+      SF Sg Acc => x + "e";
+      SF Sg Instr => x + "e";
+      SF Sg Loc => x + "e";
+      SF Sg Voc => x + "e";
+      SF Pl Nom => x + "ia";
+      SF Pl Gen => x + "iów";
+      SF Pl Dat => x + "iom";
+      SF Pl Acc => x + "ia";
+      SF Pl Instr => x + "iami";
+      SF Pl Loc => x + "iach";
+      SF Pl Voc => x + "ia"
+    };
+
+    oper mkNTable0964: Str -> SubstForm => Str; --%
+    oper mkNTable0964 lexem = 
+      let x = Predef.tk 0 lexem in
+    table { 
+      SF Sg Nom => x + "";
+      SF Sg Gen => x + "u";
+      SF Sg Dat => x + "owi";
+      SF Sg Acc => x + "";
+      SF Sg Instr => x + "em";
+      SF Sg Loc => x + "ze";
+      SF Sg Voc => x + "ze";
+      SF Pl Nom => x + "a";
+      SF Pl Gen => x + "ów";
+      SF Pl Dat => x + "om";
+      SF Pl Acc => x + "a";
+      SF Pl Instr => x + "ami";
+      SF Pl Loc => x + "ach";
+      SF Pl Voc => x + "a"
+    };
+
+    oper mkNTable0965: Str -> SubstForm => Str; --%
+    oper mkNTable0965 lexem = 
+      let x = Predef.tk 0 lexem in
+    table { 
+      SF Sg Nom => x + "";
+      SF Sg Gen => x + "a";
+      SF Sg Dat => x + "owi";
+      SF Sg Acc => x + "a";
+      SF Sg Instr => x + "em";
+      SF Sg Loc => x + "";
+      SF Sg Voc => x + "";
+      SF Pl Nom => x + "y";
+      SF Pl Gen => x + "ów";
+      SF Pl Dat => x + "om";
+      SF Pl Acc => x + "y";
+      SF Pl Instr => x + "ami";
+      SF Pl Loc => x + "ach";
+      SF Pl Voc => x + "y"
+    };
+
+    oper mkNTable0966: Str -> SubstForm => Str; --%
+    oper mkNTable0966 lexem = 
+      let x = Predef.tk 0 lexem in
+    table { 
+      SF Sg Nom => x + "";
+      SF Sg Gen => x + "ego";
+      SF Sg Dat => x + "emu";
+      SF Sg Acc => x + "ego";
+      SF Sg Instr => x + "m";
+      SF Sg Loc => x + "m";
+      SF Sg Voc => x + "";
+      SF Pl Nom => x + "e";
+      SF Pl Gen => x + "ch";
+      SF Pl Dat => x + "m";
+      SF Pl Acc => x + "e";
+      SF Pl Instr => x + "mi";
+      SF Pl Loc => x + "ch";
+      SF Pl Voc => x + "e"
+    };
+
+    oper mkNTable0970: Str -> SubstForm => Str; --%
+    oper mkNTable0970 lexem = 
+      let x = Predef.tk 0 lexem in
+    table { 
+      SF Sg Nom => x + "";
+      SF Sg Gen => x + "u";
+      SF Sg Dat => x + "owi";
+      SF Sg Acc => x + "u";
+      SF Sg Instr => x + "iem";
+      SF Sg Loc => x + "u";
+      SF Sg Voc => x + "u";
+      SF Pl Nom => x + "i";
+      SF Pl Gen => x + "ów";
+      SF Pl Dat => x + "om";
+      SF Pl Acc => x + "i";
+      SF Pl Instr => x + "ami";
+      SF Pl Loc => x + "ach";
+      SF Pl Voc => x + "i"
+    };
+
+    oper mkNTable0971: Str -> SubstForm => Str; --%
+    oper mkNTable0971 lexem = 
+      let x = Predef.tk 9 lexem in
+    table { 
+      SF Sg Nom => x + "pospolita";
+      SF Sg Gen => x + "ypospolitej";
+      SF Sg Dat => x + "ypospolitej";
+      SF Sg Acc => x + "ąpospolitą";
+      SF Sg Instr => x + "ąpospolitą";
+      SF Sg Loc => x + "ypospolitej";
+      SF Sg Voc => x + "ypospolita";
+      SF Pl Nom => x + "ypospolite";
+      SF Pl Gen => x + "pospolitych";
+      SF Pl Dat => x + "pospolitym";
+      SF Pl Acc => x + "ypospolite";
+      SF Pl Instr => x + "pospolitymi";
+      SF Pl Loc => x + "pospolitych";
+      SF Pl Voc => x + "ypospolite"
+    };
+
+    oper mkNTable0972: Str -> SubstForm => Str; --%
+    oper mkNTable0972 lexem = 
+      let x = Predef.tk 3 lexem in
+    table { 
+      SF Sg Nom => x + "sło";
+      SF Sg Gen => x + "sła";
+      SF Sg Dat => x + "słu";
+      SF Sg Acc => x + "sło";
+      SF Sg Instr => x + "słem";
+      SF Sg Loc => x + "śle";
+      SF Sg Voc => x + "sło";
+      SF Pl Nom => x + "sła";
+      SF Pl Gen => x + "sł";
+      SF Pl Dat => x + "słom";
+      SF Pl Acc => x + "sła";
+      SF Pl Instr => x + "słami";
+      SF Pl Loc => x + "słach";
+      SF Pl Voc => x + "sła"
+    };
+
+    oper mkNTable0974: Str -> SubstForm => Str; --%
+    oper mkNTable0974 lexem = 
+      let x = Predef.tk 3 lexem in
+    table { 
+      SF Sg Nom => x + "ęka";
+      SF Sg Gen => x + "ęki";
+      SF Sg Dat => x + "ęce";
+      SF Sg Acc => x + "ękę";
+      SF Sg Instr => x + "ęką";
+      SF Sg Loc => x + "ęce";
+      SF Sg Voc => x + "ęko";
+      SF Pl Nom => x + "ęce";
+      SF Pl Gen => x + "ąk";
+      SF Pl Dat => x + "ękom";
+      SF Pl Acc => x + "ęce";
+      SF Pl Instr => x + "ękoma";
+      SF Pl Loc => x + "ęku";
+      SF Pl Voc => x + "ęce"
+    };
+
+    oper mkNTable0976: Str -> SubstForm => Str; --%
+    oper mkNTable0976 lexem = 
+      let x = Predef.tk 3 lexem in
+    table { 
+      SF Sg Nom => x + "ień";
+      SF Sg Gen => x + "nia";
+      SF Sg Dat => x + "niowi";
+      SF Sg Acc => x + "ień";
+      SF Sg Instr => x + "niem";
+      SF Sg Loc => x + "niu";
+      SF Sg Voc => x + "niu";
+      SF Pl Nom => x + "nie";
+      SF Pl Gen => x + "niów";
+      SF Pl Dat => x + "niom";
+      SF Pl Acc => x + "nie";
+      SF Pl Instr => x + "niami";
+      SF Pl Loc => x + "niach";
+      SF Pl Voc => x + "nie"
+    };
+
+    oper mkNTable0977: Str -> SubstForm => Str; --%
+    oper mkNTable0977 lexem = 
+      let x = Predef.tk 3 lexem in
+    table { 
+      SF Sg Nom => x + "iel";
+      SF Sg Gen => x + "la";
+      SF Sg Dat => x + "lowi";
+      SF Sg Acc => x + "la";
+      SF Sg Instr => x + "lem";
+      SF Sg Loc => x + "lu";
+      SF Sg Voc => x + "lu";
+      SF Pl Nom => x + "le";
+      SF Pl Gen => x + "lów";
+      SF Pl Dat => x + "lom";
+      SF Pl Acc => x + "lów";
+      SF Pl Instr => x + "lami";
+      SF Pl Loc => x + "lach";
+      SF Pl Voc => x + "le"
+    };
+
+    oper mkNTable0978: Str -> SubstForm => Str; --%
+    oper mkNTable0978 lexem = 
+      let x = Predef.tk 5 lexem in
+    table { 
+      SF Sg Nom => x + "ostra";
+      SF Sg Gen => x + "ostry";
+      SF Sg Dat => x + "ostrze";
+      SF Sg Acc => x + "ostrę";
+      SF Sg Instr => x + "ostrą";
+      SF Sg Loc => x + "ostrze";
+      SF Sg Voc => x + "ostro";
+      SF Pl Nom => x + "ostry";
+      SF Pl Gen => x + "óstr";
+      SF Pl Dat => x + "ostrom";
+      SF Pl Acc => x + "ostry";
+      SF Pl Instr => x + "ostrami";
+      SF Pl Loc => x + "ostrach";
+      SF Pl Voc => x + "ostry"
+    };
+
+    oper mkNTable0980: Str -> SubstForm => Str; --%
+    oper mkNTable0980 lexem = 
+      let x = Predef.tk 3 lexem in
+    table { 
+      SF Sg Nom => x + "cco";
+      SF Sg Gen => x + "cco";
+      SF Sg Dat => x + "ccu";
+      SF Sg Acc => x + "cco";
+      SF Sg Instr => x + "kkiem";
+      SF Sg Loc => x + "ccu";
+      SF Sg Voc => x + "cco";
+      SF Pl Nom => x + "cco";
+      SF Pl Gen => x + "cco";
+      SF Pl Dat => x + "ccom";
+      SF Pl Acc => x + "cco";
+      SF Pl Instr => x + "cco";
+      SF Pl Loc => x + "cco";
+      SF Pl Voc => x + "cco"
+    };
+
+    oper mkNTable0981: Str -> SubstForm => Str; --%
+    oper mkNTable0981 lexem = 
+      let x = Predef.tk 0 lexem in
+    table { 
+      SF Sg Nom => x + "";
+      SF Sg Gen => x + "a";
+      SF Sg Dat => x + "owi";
+      SF Sg Acc => x + "a";
+      SF Sg Instr => x + "em";
+      SF Sg Loc => x + "u";
+      SF Sg Voc => x + "u";
+      SF Pl Nom => x + "i";
+      SF Pl Gen => x + "ów";
+      SF Pl Dat => x + "om";
+      SF Pl Acc => x + "ów";
+      SF Pl Instr => x + "ami";
+      SF Pl Loc => x + "ach";
+      SF Pl Voc => x + "i"
+    };
+
+    oper mkNTable0983: Str -> SubstForm => Str; --%
+    oper mkNTable0983 lexem = 
+      let x = Predef.tk 3 lexem in
+    table { 
+      SF Sg Nom => x + "sna";
+      SF Sg Gen => x + "sny";
+      SF Sg Dat => x + "śnie";
+      SF Sg Acc => x + "snę";
+      SF Sg Instr => x + "sną";
+      SF Sg Loc => x + "śnie";
+      SF Sg Voc => x + "sno";
+      SF Pl Nom => x + "sny";
+      SF Pl Gen => x + "sen";
+      SF Pl Dat => x + "snom";
+      SF Pl Acc => x + "sny";
+      SF Pl Instr => x + "snami";
+      SF Pl Loc => x + "snach";
+      SF Pl Voc => x + "sny"
+    };
+
+    oper mkNTable0984: Str -> SubstForm => Str; --%
+    oper mkNTable0984 lexem = 
+      let x = Predef.tk 3 lexem in
+    table { 
+      SF Sg Nom => x + "sta";
+      SF Sg Gen => x + "sty";
+      SF Sg Dat => x + "ście";
+      SF Sg Acc => x + "stę";
+      SF Sg Instr => x + "stą";
+      SF Sg Loc => x + "ście";
+      SF Sg Voc => x + "sto";
+      SF Pl Nom => x + "stowie";
+      SF Pl Gen => x + "stów";
+      SF Pl Dat => x + "stom";
+      SF Pl Acc => x + "stów";
+      SF Pl Instr => x + "stami";
+      SF Pl Loc => x + "stach";
+      SF Pl Voc => x + "stowie"
+    };
+
+    oper mkNTable0985: Str -> SubstForm => Str; --%
+    oper mkNTable0985 lexem = 
+      let x = Predef.tk 3 lexem in
+    table { 
+      SF Sg Nom => x + "opa";
+      SF Sg Gen => x + "opy";
+      SF Sg Dat => x + "opie";
+      SF Sg Acc => x + "opę";
+      SF Sg Instr => x + "opą";
+      SF Sg Loc => x + "opie";
+      SF Sg Voc => x + "opo";
+      SF Pl Nom => x + "opy";
+      SF Pl Gen => x + "óp";
+      SF Pl Dat => x + "opom";
+      SF Pl Acc => x + "opy";
+      SF Pl Instr => x + "opami";
+      SF Pl Loc => x + "opach";
+      SF Pl Voc => x + "opy"
+    };
+
+    oper mkNTable0986: Str -> SubstForm => Str; --%
+    oper mkNTable0986 lexem = 
+      let x = Predef.tk 3 lexem in
+    table { 
+      SF Sg Nom => x + "nia";
+      SF Sg Gen => x + "ni";
+      SF Sg Dat => x + "ni";
+      SF Sg Acc => x + "nię";
+      SF Sg Instr => x + "nią";
+      SF Sg Loc => x + "ni";
+      SF Sg Voc => x + "nio";
+      SF Pl Nom => x + "nie";
+      SF Pl Gen => x + "zien";
+      SF Pl Dat => x + "niom";
+      SF Pl Acc => x + "nie";
+      SF Pl Instr => x + "niami";
+      SF Pl Loc => x + "niach";
+      SF Pl Voc => x + "nie"
+    };
+
+    oper mkNTable0988: Str -> SubstForm => Str; --%
+    oper mkNTable0988 lexem = 
+      let x = Predef.tk 2 lexem in
+    table { 
+      SF Sg Nom => x + "eń";
+      SF Sg Gen => x + "nia";
+      SF Sg Dat => x + "niowi";
+      SF Sg Acc => x + "eń";
+      SF Sg Instr => x + "niem";
+      SF Sg Loc => x + "niu";
+      SF Sg Voc => x + "niu";
+      SF Pl Nom => x + "nie";
+      SF Pl Gen => x + "niów";
+      SF Pl Dat => x + "niom";
+      SF Pl Acc => x + "nie";
+      SF Pl Instr => x + "niami";
+      SF Pl Loc => x + "niach";
+      SF Pl Voc => x + "nie"
+    };
+
+    oper mkNTable0989: Str -> SubstForm => Str; --%
+    oper mkNTable0989 lexem = 
+      let x = Predef.tk 3 lexem in
+    table { 
+      SF Sg Nom => x + "seł";
+      SF Sg Gen => x + "sła";
+      SF Sg Dat => x + "słowi";
+      SF Sg Acc => x + "sła";
+      SF Sg Instr => x + "słem";
+      SF Sg Loc => x + "śle";
+      SF Sg Voc => x + "śle";
+      SF Pl Nom => x + "sły";
+      SF Pl Gen => x + "słów";
+      SF Pl Dat => x + "słom";
+      SF Pl Acc => x + "sły";
+      SF Pl Instr => x + "słami";
+      SF Pl Loc => x + "słach";
+      SF Pl Voc => x + "sły"
+    };
+
+    oper mkNTable0990: Str -> SubstForm => Str; --%
+    oper mkNTable0990 lexem = 
+      let x = Predef.tk 1 lexem in
+    table { 
+      SF Sg Nom => x + "a";
+      SF Sg Gen => x + "y";
+      SF Sg Dat => x + "ie";
+      SF Sg Acc => x + "ę";
+      SF Sg Instr => x + "ą";
+      SF Sg Loc => x + "ie";
+      SF Sg Voc => x + "o";
+      SF Pl Nom => x + "e";
+      SF Pl Gen => x + "";
+      SF Pl Dat => x + "om";
+      SF Pl Acc => x + "e";
+      SF Pl Instr => x + "ami";
+      SF Pl Loc => x + "ach";
+      SF Pl Voc => x + "e"
+    };
+
+    oper mkNTable0991: Str -> SubstForm => Str; --%
+    oper mkNTable0991 lexem = 
+      let x = Predef.tk 0 lexem in
+    table { 
+      SF Sg Nom => x + "";
+      SF Sg Gen => x + "a";
+      SF Sg Dat => x + "owi";
+      SF Sg Acc => x + "a";
+      SF Sg Instr => x + "em";
+      SF Sg Loc => x + "u";
+      SF Sg Voc => x + "ze";
+      SF Pl Nom => x + "y";
+      SF Pl Gen => x + "ów";
+      SF Pl Dat => x + "om";
+      SF Pl Acc => x + "ów";
+      SF Pl Instr => x + "ami";
+      SF Pl Loc => x + "ach";
+      SF Pl Voc => x + "y"
+    };
+
+    oper mkNTable0993: Str -> SubstForm => Str; --%
+    oper mkNTable0993 lexem = 
+      let x = Predef.tk 3 lexem in
+    table { 
+      SF Sg Nom => x + "ier";
+      SF Sg Gen => x + "ra";
+      SF Sg Dat => x + "rowi";
+      SF Sg Acc => x + "ra";
+      SF Sg Instr => x + "rem";
+      SF Sg Loc => x + "rze";
+      SF Sg Voc => x + "rze";
+      SF Pl Nom => x + "rowie";
+      SF Pl Gen => x + "rów";
+      SF Pl Dat => x + "rom";
+      SF Pl Acc => x + "rów";
+      SF Pl Instr => x + "rami";
+      SF Pl Loc => x + "rach";
+      SF Pl Voc => x + "rowie"
+    };
+
+    oper mkNTable0995: Str -> SubstForm => Str; --%
+    oper mkNTable0995 lexem = 
+      let x = Predef.tk 0 lexem in
+    table { 
+      SF Sg Nom => x + "";
+      SF Sg Gen => x + "i";
+      SF Sg Dat => x + "i";
+      SF Sg Acc => x + "";
+      SF Sg Instr => x + "ią";
+      SF Sg Loc => x + "i";
+      SF Sg Voc => x + "i";
+      SF Pl Nom => x + "ie";
+      SF Pl Gen => x + "i";
+      SF Pl Dat => x + "iom";
+      SF Pl Acc => x + "ie";
+      SF Pl Instr => x + "iami";
+      SF Pl Loc => x + "iach";
+      SF Pl Voc => x + "ie"
+    };
+
+    oper mkNTable0996: Str -> SubstForm => Str; --%
+    oper mkNTable0996 lexem = 
+      let x = Predef.tk 2 lexem in
+    table { 
+      SF Sg Nom => x + "ad";
+      SF Sg Gen => x + "ada";
+      SF Sg Dat => x + "adowi";
+      SF Sg Acc => x + "ada";
+      SF Sg Instr => x + "adem";
+      SF Sg Loc => x + "edzie";
+      SF Sg Voc => x + "edzie";
+      SF Pl Nom => x + "edzi";
+      SF Pl Gen => x + "adów";
+      SF Pl Dat => x + "adom";
+      SF Pl Acc => x + "adów";
+      SF Pl Instr => x + "adami";
+      SF Pl Loc => x + "adach";
+      SF Pl Voc => x + "edzi"
+    };
+
+    oper mkNTable0997: Str -> SubstForm => Str; --%
+    oper mkNTable0997 lexem = 
+      let x = Predef.tk 2 lexem in
+    table { 
+      SF Sg Nom => x + "ój";
+      SF Sg Gen => x + "oja";
+      SF Sg Dat => x + "ojowi";
+      SF Sg Acc => x + "ój";
+      SF Sg Instr => x + "ojem";
+      SF Sg Loc => x + "oju";
+      SF Sg Voc => x + "oju";
+      SF Pl Nom => x + "oje";
+      SF Pl Gen => x + "ojów";
+      SF Pl Dat => x + "ojom";
+      SF Pl Acc => x + "oje";
+      SF Pl Instr => x + "ojami";
+      SF Pl Loc => x + "ojach";
+      SF Pl Voc => x + "oje"
+    };
+
+    oper mkNTable0998: Str -> SubstForm => Str; --%
+    oper mkNTable0998 lexem = 
+      let x = Predef.tk 3 lexem in
+    table { 
+      SF Sg Nom => x + "ień";
+      SF Sg Gen => x + "nia";
+      SF Sg Dat => x + "niowi";
+      SF Sg Acc => x + "nia";
+      SF Sg Instr => x + "niem";
+      SF Sg Loc => x + "niu";
+      SF Sg Voc => x + "niu";
+      SF Pl Nom => x + "nie";
+      SF Pl Gen => x + "niów";
+      SF Pl Dat => x + "niom";
+      SF Pl Acc => x + "nie";
+      SF Pl Instr => x + "niami";
+      SF Pl Loc => x + "niach";
+      SF Pl Voc => x + "nie"
+    };
+
+    oper mkNTable0999: Str -> SubstForm => Str; --%
+    oper mkNTable0999 lexem = 
+      let x = Predef.tk 2 lexem in
+    table { 
+      SF Sg Nom => x + "ba";
+      SF Sg Gen => x + "by";
+      SF Sg Dat => x + "bie";
+      SF Sg Acc => x + "bę";
+      SF Sg Instr => x + "bą";
+      SF Sg Loc => x + "bie";
+      SF Sg Voc => x + "bo";
+      SF Pl Nom => x + "by";
+      SF Pl Gen => x + "eb";
+      SF Pl Dat => x + "bom";
+      SF Pl Acc => x + "by";
+      SF Pl Instr => x + "bami";
+      SF Pl Loc => x + "bach";
+      SF Pl Voc => x + "by"
+    };
+
+    oper mkNTable1001: Str -> SubstForm => Str; --%
+    oper mkNTable1001 lexem = 
+      let x = Predef.tk 2 lexem in
+    table { 
+      SF Sg Nom => x + "eń";
+      SF Sg Gen => x + "nia";
+      SF Sg Dat => x + "niowi";
+      SF Sg Acc => x + "nia";
+      SF Sg Instr => x + "niem";
+      SF Sg Loc => x + "niu";
+      SF Sg Voc => x + "niu";
+      SF Pl Nom => x + "nie";
+      SF Pl Gen => x + "ni";
+      SF Pl Dat => x + "niom";
+      SF Pl Acc => x + "nie";
+      SF Pl Instr => x + "niami";
+      SF Pl Loc => x + "niach";
+      SF Pl Voc => x + "nie"
+    };
+
+    oper mkNTable1003: Str -> SubstForm => Str; --%
+    oper mkNTable1003 lexem = 
+      let x = Predef.tk 3 lexem in
+    table { 
+      SF Sg Nom => x + "ele";
+      SF Sg Gen => x + "ela";
+      SF Sg Dat => x + "elu";
+      SF Sg Acc => x + "ele";
+      SF Sg Instr => x + "elem";
+      SF Sg Loc => x + "elu";
+      SF Sg Voc => x + "ele";
+      SF Pl Nom => x + "oła";
+      SF Pl Gen => x + "ół";
+      SF Pl Dat => x + "ołom";
+      SF Pl Acc => x + "oła";
+      SF Pl Instr => x + "ołami";
+      SF Pl Loc => x + "ołach";
+      SF Pl Voc => x + "oła"
+    };
+
+    oper mkNTable1004: Str -> SubstForm => Str; --%
+    oper mkNTable1004 lexem = 
+      let x = Predef.tk 1 lexem in
+    table { 
+      SF Sg Nom => x + "ń";
+      SF Sg Gen => x + "nia";
+      SF Sg Dat => x + "niowi";
+      SF Sg Acc => x + "nia";
+      SF Sg Instr => x + "niem";
+      SF Sg Loc => x + "niu";
+      SF Sg Voc => x + "niu";
+      SF Pl Nom => x + "nie";
+      SF Pl Gen => x + "niów";
+      SF Pl Dat => x + "niom";
+      SF Pl Acc => x + "nie";
+      SF Pl Instr => x + "niami";
+      SF Pl Loc => x + "niach";
+      SF Pl Voc => x + "nie"
+    };
+
+    oper mkNTable1005: Str -> SubstForm => Str; --%
+    oper mkNTable1005 lexem = 
+      let x = Predef.tk 5 lexem in
+    table { 
+      SF Sg Nom => x + "dzień";
+      SF Sg Gen => x + "godnia";
+      SF Sg Dat => x + "godniowi";
+      SF Sg Acc => x + "dzień";
+      SF Sg Instr => x + "godniem";
+      SF Sg Loc => x + "godniu";
+      SF Sg Voc => x + "godniu";
+      SF Pl Nom => x + "godnie";
+      SF Pl Gen => x + "godni";
+      SF Pl Dat => x + "godniom";
+      SF Pl Acc => x + "godnie";
+      SF Pl Instr => x + "godniami";
+      SF Pl Loc => x + "godniach";
+      SF Pl Voc => x + "godnie"
+    };
+
+    oper mkNTable1006: Str -> SubstForm => Str; --%
+    oper mkNTable1006 lexem = 
+      let x = Predef.tk 2 lexem in
+    table { 
+      SF Sg Nom => x + "ąc";
+      SF Sg Gen => x + "ąca";
+      SF Sg Dat => x + "ącowi";
+      SF Sg Acc => x + "ąca";
+      SF Sg Instr => x + "ącem";
+      SF Sg Loc => x + "ącu";
+      SF Sg Voc => x + "ącu";
+      SF Pl Nom => x + "ące";
+      SF Pl Gen => x + "ęcy";
+      SF Pl Dat => x + "ącom";
+      SF Pl Acc => x + "ące";
+      SF Pl Instr => x + "ącami";
+      SF Pl Loc => x + "ącach";
+      SF Pl Voc => x + "ące"
+    };
+
+    oper mkNTable1007: Str -> SubstForm => Str; --%
+    oper mkNTable1007 lexem = 
+      let x = Predef.tk 3 lexem in
+    table { 
+      SF Sg Nom => x + "cho";
+      SF Sg Gen => x + "cha";
+      SF Sg Dat => x + "chu";
+      SF Sg Acc => x + "cho";
+      SF Sg Instr => x + "chem";
+      SF Sg Loc => x + "chu";
+      SF Sg Voc => x + "cho";
+      SF Pl Nom => x + "szy";
+      SF Pl Gen => x + "szów";
+      SF Pl Dat => x + "szom";
+      SF Pl Acc => x + "szy";
+      SF Pl Instr => x + "szyma";
+      SF Pl Loc => x + "szach";
+      SF Pl Voc => x + "szy"
+    };
+
+    oper mkNTable1008: Str -> SubstForm => Str; --%
+    oper mkNTable1008 lexem = 
+      let x = Predef.tk 2 lexem in
+    table { 
+      SF Sg Nom => x + "eń";
+      SF Sg Gen => x + "nia";
+      SF Sg Dat => x + "niowi";
+      SF Sg Acc => x + "nia";
+      SF Sg Instr => x + "niem";
+      SF Sg Loc => x + "niu";
+      SF Sg Voc => x + "niu";
+      SF Pl Nom => x + "niowie";
+      SF Pl Gen => x + "niów";
+      SF Pl Dat => x + "niom";
+      SF Pl Acc => x + "niów";
+      SF Pl Instr => x + "niami";
+      SF Pl Loc => x + "niach";
+      SF Pl Voc => x + "niowie"
+    };
+
+    oper mkNTable1009: Str -> SubstForm => Str; --%
+    oper mkNTable1009 lexem = 
+      let x = Predef.tk 2 lexem in
+    table { 
+      SF Sg Nom => x + "er";
+      SF Sg Gen => x + "eru";
+      SF Sg Dat => x + "rowi";
+      SF Sg Acc => x + "er";
+      SF Sg Instr => x + "rem";
+      SF Sg Loc => x + "rze";
+      SF Sg Voc => x + "rze";
+      SF Pl Nom => x + "ry";
+      SF Pl Gen => x + "rów";
+      SF Pl Dat => x + "rom";
+      SF Pl Acc => x + "ry";
+      SF Pl Instr => x + "rami";
+      SF Pl Loc => x + "rach";
+      SF Pl Voc => x + "ry"
+    };
+
+    oper mkNTable1010: Str -> SubstForm => Str; --%
+    oper mkNTable1010 lexem = 
+      let x = Predef.tk 2 lexem in
+    table { 
+      SF Sg Nom => x + "ąż";
+      SF Sg Gen => x + "ęży";
+      SF Sg Dat => x + "ęży";
+      SF Sg Acc => x + "ąż";
+      SF Sg Instr => x + "ężą";
+      SF Sg Loc => x + "ęży";
+      SF Sg Voc => x + "ęży";
+      SF Pl Nom => x + "ęże";
+      SF Pl Gen => x + "ęży";
+      SF Pl Dat => x + "ężom";
+      SF Pl Acc => x + "ęże";
+      SF Pl Instr => x + "ężami";
+      SF Pl Loc => x + "ężach";
+      SF Pl Voc => x + "ęże"
+    };
+
+    oper mkNTable1011: Str -> SubstForm => Str; --%
+    oper mkNTable1011 lexem = 
+      let x = Predef.tk 2 lexem in
+    table { 
+      SF Sg Nom => x + "eć";
+      SF Sg Gen => x + "cia";
+      SF Sg Dat => x + "ciowi";
+      SF Sg Acc => x + "cia";
+      SF Sg Instr => x + "ciem";
+      SF Sg Loc => x + "ciu";
+      SF Sg Voc => x + "ciu";
+      SF Pl Nom => x + "cie";
+      SF Pl Gen => x + "ciów";
+      SF Pl Dat => x + "ciom";
+      SF Pl Acc => x + "ciów";
+      SF Pl Instr => x + "ciami";
+      SF Pl Loc => x + "ciach";
+      SF Pl Voc => x + "cie"
+    };
+
+    oper mkNTable1012: Str -> SubstForm => Str; --%
+    oper mkNTable1012 lexem = 
+      let x = Predef.tk 1 lexem in
+    table { 
+      SF Sg Nom => x + "o";
+      SF Sg Gen => x + "a";
+      SF Sg Dat => x + "u";
+      SF Sg Acc => x + "o";
+      SF Sg Instr => x + "em";
+      SF Sg Loc => x + "o";
+      SF Sg Voc => x + "o";
+      SF Pl Nom => x + "a";
+      SF Pl Gen => x + "ów";
+      SF Pl Dat => x + "om";
+      SF Pl Acc => x + "a";
+      SF Pl Instr => x + "ami";
+      SF Pl Loc => x + "ach";
+      SF Pl Voc => x + "a"
+    };
+
+    oper mkNTable1013: Str -> SubstForm => Str; --%
+    oper mkNTable1013 lexem = 
+      let x = Predef.tk 1 lexem in
+    table { 
+      SF Sg Nom => x + "o";
+      SF Sg Gen => x + "a";
+      SF Sg Dat => x + "u";
+      SF Sg Acc => x + "o";
+      SF Sg Instr => x + "em";
+      SF Sg Loc => x + "ie";
+      SF Sg Voc => x + "o";
+      SF Pl Nom => x + "a";
+      SF Pl Gen => x + "ów";
+      SF Pl Dat => x + "om";
+      SF Pl Acc => x + "a";
+      SF Pl Instr => x + "ami";
+      SF Pl Loc => x + "ach";
+      SF Pl Voc => x + "a"
+    };
+
+    oper mkNTable1014: Str -> SubstForm => Str; --%
+    oper mkNTable1014 lexem = 
+      let x = Predef.tk 1 lexem in
+    table { 
+      SF Sg Nom => x + "ć";
+      SF Sg Gen => x + "ci";
+      SF Sg Dat => x + "ci";
+      SF Sg Acc => x + "ci";
+      SF Sg Instr => x + "cią";
+      SF Sg Loc => x + "ci";
+      SF Sg Voc => x + "ci";
+      SF Pl Nom => x + "ciowie";
+      SF Pl Gen => x + "ciów";
+      SF Pl Dat => x + "ciom";
+      SF Pl Acc => x + "ciów";
+      SF Pl Instr => x + "ciami";
+      SF Pl Loc => x + "ciach";
+      SF Pl Voc => x + "ciowie"
+    };
+
+    oper mkNTable1016: Str -> SubstForm => Str; --%
+    oper mkNTable1016 lexem = 
+      let x = Predef.tk 3 lexem in
+    table { 
+      SF Sg Nom => x + "esz";
+      SF Sg Gen => x + "szy";
+      SF Sg Dat => x + "szy";
+      SF Sg Acc => x + "esz";
+      SF Sg Instr => x + "szą";
+      SF Sg Loc => x + "szy";
+      SF Sg Voc => x + "szy";
+      SF Pl Nom => x + "szy";
+      SF Pl Gen => x + "szy";
+      SF Pl Dat => x + "szom";
+      SF Pl Acc => x + "szy";
+      SF Pl Instr => x + "szami";
+      SF Pl Loc => x + "szach";
+      SF Pl Voc => x + "szy"
+    };
+
+    oper mkNTable1020: Str -> SubstForm => Str; --%
+    oper mkNTable1020 lexem = 
+      let x = Predef.tk 1 lexem in
+    table { 
+      SF Sg Nom => x + "y";
+      SF Sg Gen => x + "ego";
+      SF Sg Dat => x + "emu";
+      SF Sg Acc => x + "ego";
+      SF Sg Instr => x + "ym";
+      SF Sg Loc => x + "ym";
+      SF Sg Voc => x + "y";
+      SF Pl Nom => x + "zy";
+      SF Pl Gen => x + "ych";
+      SF Pl Dat => x + "ym";
+      SF Pl Acc => x + "ych";
+      SF Pl Instr => x + "ymi";
+      SF Pl Loc => x + "ych";
+      SF Pl Voc => x + "zy"
+    };
+
+    oper mkNTable1022: Str -> SubstForm => Str; --%
+    oper mkNTable1022 lexem = 
+      let x = lexem in
+    table { 
+      SF Sg Nom => x + "a";
+      SF Sg Gen => x + "";
+      SF Sg Dat => x + "";
+      SF Sg Acc => x + "ę";
+      SF Sg Instr => x + "ą";
+      SF Sg Loc => x + "";
+      SF Sg Voc => x + "o";
+      SF Pl Nom => x + "";
+      SF Pl Gen => x + "";
+      SF Pl Dat => x + "om";
+      SF Pl Acc => x + "";
+      SF Pl Instr => x + "ami";
+      SF Pl Loc => x + "ach";
+      SF Pl Voc => x + ""
+    };
+
+    oper mkNTable1023: Str -> SubstForm => Str; --%
+    oper mkNTable1023 lexem = 
+      let x = Predef.tk 4 lexem in
+    table { 
+      SF Sg Nom => x + "zień";
+      SF Sg Gen => x + "źnia";
+      SF Sg Dat => x + "źniowi";
+      SF Sg Acc => x + "źnia";
+      SF Sg Instr => x + "źniem";
+      SF Sg Loc => x + "źniu";
+      SF Sg Voc => x + "źniu";
+      SF Pl Nom => x + "źniowie";
+      SF Pl Gen => x + "źniów";
+      SF Pl Dat => x + "źniom";
+      SF Pl Acc => x + "źniów";
+      SF Pl Instr => x + "źniami";
+      SF Pl Loc => x + "źniach";
+      SF Pl Voc => x + "źniowie"
+    };
+
+    oper mkNTable1025: Str -> SubstForm => Str; --%
+    oper mkNTable1025 lexem = 
+      let x = Predef.tk 4 lexem in
+    table { 
+      SF Sg Nom => x + "sień";
+      SF Sg Gen => x + "śnia";
+      SF Sg Dat => x + "śniowi";
+      SF Sg Acc => x + "sień";
+      SF Sg Instr => x + "śniem";
+      SF Sg Loc => x + "śniu";
+      SF Sg Voc => x + "śniu";
+      SF Pl Nom => x + "śnie";
+      SF Pl Gen => x + "śniów";
+      SF Pl Dat => x + "śniom";
+      SF Pl Acc => x + "śnie";
+      SF Pl Instr => x + "śniami";
+      SF Pl Loc => x + "śniach";
+      SF Pl Voc => x + "śnie"
+    };
+
+    oper mkNTable1027: Str -> SubstForm => Str; --%
+    oper mkNTable1027 lexem = 
+      let x = Predef.tk 2 lexem in
+    table { 
+      SF Sg Nom => x + "at";
+      SF Sg Gen => x + "ata";
+      SF Sg Dat => x + "atowi";
+      SF Sg Acc => x + "at";
+      SF Sg Instr => x + "atem";
+      SF Sg Loc => x + "ecie";
+      SF Sg Voc => x + "ecie";
+      SF Pl Nom => x + "aty";
+      SF Pl Gen => x + "atów";
+      SF Pl Dat => x + "atom";
+      SF Pl Acc => x + "aty";
+      SF Pl Instr => x + "atami";
+      SF Pl Loc => x + "atach";
+      SF Pl Voc => x + "aty"
+    };
+
+    oper mkNTable1028: Str -> SubstForm => Str; --%
+    oper mkNTable1028 lexem = 
+      let x = Predef.tk 2 lexem in
+    table { 
+      SF Sg Nom => x + "eł";
+      SF Sg Gen => x + "ła";
+      SF Sg Dat => x + "łowi";
+      SF Sg Acc => x + "ła";
+      SF Sg Instr => x + "łem";
+      SF Sg Loc => x + "le";
+      SF Sg Voc => x + "le";
+      SF Pl Nom => x + "ły";
+      SF Pl Gen => x + "łów";
+      SF Pl Dat => x + "łom";
+      SF Pl Acc => x + "ły";
+      SF Pl Instr => x + "łami";
+      SF Pl Loc => x + "łach";
+      SF Pl Voc => x + "ły"
+    };
+
+    oper mkNTable1029: Str -> SubstForm => Str; --%
+    oper mkNTable1029 lexem = 
+      let x = Predef.tk 2 lexem in
+    table { 
+      SF Sg Nom => x + "ąż";
+      SF Sg Gen => x + "ęża";
+      SF Sg Dat => x + "ężowi";
+      SF Sg Acc => x + "ęża";
+      SF Sg Instr => x + "ężem";
+      SF Sg Loc => x + "ężu";
+      SF Sg Voc => x + "ężu";
+      SF Pl Nom => x + "ęże";
+      SF Pl Gen => x + "ężów";
+      SF Pl Dat => x + "ężom";
+      SF Pl Acc => x + "ęże";
+      SF Pl Instr => x + "ężami";
+      SF Pl Loc => x + "ężach";
+      SF Pl Voc => x + "ęże"
+    };
+
+    oper mkNTable1030: Str -> SubstForm => Str; --%
+    oper mkNTable1030 lexem = 
+      let x = Predef.tk 2 lexem in
+    table { 
+      SF Sg Nom => x + "ąż";
+      SF Sg Gen => x + "ęża";
+      SF Sg Dat => x + "ężowi";
+      SF Sg Acc => x + "ąż";
+      SF Sg Instr => x + "ężem";
+      SF Sg Loc => x + "ężu";
+      SF Sg Voc => x + "ężu";
+      SF Pl Nom => x + "ęże";
+      SF Pl Gen => x + "ężów";
+      SF Pl Dat => x + "ężom";
+      SF Pl Acc => x + "ęże";
+      SF Pl Instr => x + "ężami";
+      SF Pl Loc => x + "ężach";
+      SF Pl Voc => x + "ęże"
+    };
+
+    oper mkNTable1031: Str -> SubstForm => Str; --%
+    oper mkNTable1031 lexem = 
+      let x = Predef.tk 4 lexem in
+    table { 
+      SF Sg Nom => x + "sień";
+      SF Sg Gen => x + "śnia";
+      SF Sg Dat => x + "śniowi";
+      SF Sg Acc => x + "śnia";
+      SF Sg Instr => x + "śniem";
+      SF Sg Loc => x + "śniu";
+      SF Sg Voc => x + "śniu";
+      SF Pl Nom => x + "śnie";
+      SF Pl Gen => x + "śni";
+      SF Pl Dat => x + "śniom";
+      SF Pl Acc => x + "śnie";
+      SF Pl Instr => x + "śniami";
+      SF Pl Loc => x + "śniach";
+      SF Pl Voc => x + "śnie"
+    };
+
+    oper mkNTable1032: Str -> SubstForm => Str; --%
+    oper mkNTable1032 lexem = 
+      let x = Predef.tk 3 lexem in
+    table { 
+      SF Sg Nom => x + "ódz";
+      SF Sg Gen => x + "odza";
+      SF Sg Dat => x + "odzowi";
+      SF Sg Acc => x + "odza";
+      SF Sg Instr => x + "odzem";
+      SF Sg Loc => x + "odzu";
+      SF Sg Voc => x + "odzu";
+      SF Pl Nom => x + "odzowie";
+      SF Pl Gen => x + "odzów";
+      SF Pl Dat => x + "odzom";
+      SF Pl Acc => x + "odzów";
+      SF Pl Instr => x + "odzami";
+      SF Pl Loc => x + "odzach";
+      SF Pl Voc => x + "odzowie"
+    };
+
+    oper mkNTable1034: Str -> SubstForm => Str; --%
+    oper mkNTable1034 lexem = 
+      let x = Predef.tk 3 lexem in
+    table { 
+      SF Sg Nom => x + "oże";
+      SF Sg Gen => x + "oża";
+      SF Sg Dat => x + "ożu";
+      SF Sg Acc => x + "oże";
+      SF Sg Instr => x + "ożem";
+      SF Sg Loc => x + "ożu";
+      SF Sg Voc => x + "oże";
+      SF Pl Nom => x + "oża";
+      SF Pl Gen => x + "óż";
+      SF Pl Dat => x + "ożom";
+      SF Pl Acc => x + "oża";
+      SF Pl Instr => x + "ożami";
+      SF Pl Loc => x + "ożach";
+      SF Pl Voc => x + "oża"
+    };
+
+    oper mkNTable1035: Str -> SubstForm => Str; --%
+    oper mkNTable1035 lexem = 
+      let x = Predef.tk 3 lexem in
+    table { 
+      SF Sg Nom => x + "oja";
+      SF Sg Gen => x + "oi";
+      SF Sg Dat => x + "oi";
+      SF Sg Acc => x + "oję";
+      SF Sg Instr => x + "oją";
+      SF Sg Loc => x + "oi";
+      SF Sg Voc => x + "ojo";
+      SF Pl Nom => x + "oje";
+      SF Pl Gen => x + "ój";
+      SF Pl Dat => x + "ojom";
+      SF Pl Acc => x + "oje";
+      SF Pl Instr => x + "ojami";
+      SF Pl Loc => x + "ojach";
+      SF Pl Voc => x + "oje"
+    };
+
+    oper mkNTable1038: Str -> SubstForm => Str; --%
+    oper mkNTable1038 lexem = 
+      let x = Predef.tk 4 lexem in
+    table { 
+      SF Sg Nom => x + "orza";
+      SF Sg Gen => x + "orzy";
+      SF Sg Dat => x + "orzy";
+      SF Sg Acc => x + "orzę";
+      SF Sg Instr => x + "orzą";
+      SF Sg Loc => x + "orzy";
+      SF Sg Voc => x + "orzo";
+      SF Pl Nom => x + "orze";
+      SF Pl Gen => x + "órz";
+      SF Pl Dat => x + "orzom";
+      SF Pl Acc => x + "orze";
+      SF Pl Instr => x + "orzami";
+      SF Pl Loc => x + "orzach";
+      SF Pl Voc => x + "orze"
+    };
+
+    oper mkNTable1039: Str -> SubstForm => Str; --%
+    oper mkNTable1039 lexem = 
+      let x = Predef.tk 2 lexem in
+    table { 
+      SF Sg Nom => x + "ło";
+      SF Sg Gen => x + "ła";
+      SF Sg Dat => x + "łu";
+      SF Sg Acc => x + "ło";
+      SF Sg Instr => x + "łem";
+      SF Sg Loc => x + "łu";
+      SF Sg Voc => x + "ło";
+      SF Pl Nom => x + "ła";
+      SF Pl Gen => x + "eł";
+      SF Pl Dat => x + "łom";
+      SF Pl Acc => x + "ła";
+      SF Pl Instr => x + "łami";
+      SF Pl Loc => x + "łach";
+      SF Pl Voc => x + "ła"
+    };
+
+    oper mkNTable1040: Str -> SubstForm => Str; --%
+    oper mkNTable1040 lexem = 
+      let x = Predef.tk 2 lexem in
+    table { 
+      SF Sg Nom => x + "ów";
+      SF Sg Gen => x + "owu";
+      SF Sg Dat => x + "owowi";
+      SF Sg Acc => x + "ów";
+      SF Sg Instr => x + "owiem";
+      SF Sg Loc => x + "owiu";
+      SF Sg Voc => x + "owiu";
+      SF Pl Nom => x + "owy";
+      SF Pl Gen => x + "owów";
+      SF Pl Dat => x + "owom";
+      SF Pl Acc => x + "owy";
+      SF Pl Instr => x + "owiami";
+      SF Pl Loc => x + "owiach";
+      SF Pl Voc => x + "owy"
+    };
+
+    oper mkNTable1045: Str -> SubstForm => Str; --%
+    oper mkNTable1045 lexem = 
+      let x = Predef.tk 1 lexem in
+    table { 
+      SF Sg Nom => x + "a";
+      SF Sg Gen => x + "a";
+      SF Sg Dat => x + "a";
+      SF Sg Acc => x + "ę";
+      SF Sg Instr => x + "ą";
+      SF Sg Loc => x + "a";
+      SF Sg Voc => x + "o";
+      SF Pl Nom => x + "a";
+      SF Pl Gen => x + "a";
+      SF Pl Dat => x + "a";
+      SF Pl Acc => x + "a";
+      SF Pl Instr => x + "a";
+      SF Pl Loc => x + "ach";
+      SF Pl Voc => x + "a"
+    };
+
+    oper mkNTable1046: Str -> SubstForm => Str; --%
+    oper mkNTable1046 lexem = 
+      let x = Predef.tk 2 lexem in
+    table { 
+      SF Sg Nom => x + "eb";
+      SF Sg Gen => x + "ba";
+      SF Sg Dat => x + "bu";
+      SF Sg Acc => x + "ba";
+      SF Sg Instr => x + "bem";
+      SF Sg Loc => x + "bie";
+      SF Sg Voc => x + "bie";
+      SF Pl Nom => x + "by";
+      SF Pl Gen => x + "bów";
+      SF Pl Dat => x + "bom";
+      SF Pl Acc => x + "by";
+      SF Pl Instr => x + "bami";
+      SF Pl Loc => x + "bach";
+      SF Pl Voc => x + "by"
+    };
+
+    oper mkNTable1047: Str -> SubstForm => Str; --%
+    oper mkNTable1047 lexem = 
+      let x = Predef.tk 2 lexem in
+    table { 
+      SF Sg Nom => x + "eb";
+      SF Sg Gen => x + "ba";
+      SF Sg Dat => x + "bu";
+      SF Sg Acc => x + "eb";
+      SF Sg Instr => x + "bem";
+      SF Sg Loc => x + "bie";
+      SF Sg Voc => x + "bie";
+      SF Pl Nom => x + "by";
+      SF Pl Gen => x + "bów";
+      SF Pl Dat => x + "bom";
+      SF Pl Acc => x + "by";
+      SF Pl Instr => x + "bami";
+      SF Pl Loc => x + "bach";
+      SF Pl Voc => x + "by"
+    };
+
+    oper mkNTable1048: Str -> SubstForm => Str; --%
+    oper mkNTable1048 lexem = 
+      let x = Predef.tk 2 lexem in
+    table { 
+      SF Sg Nom => x + "za";
+      SF Sg Gen => x + "zy";
+      SF Sg Dat => x + "zie";
+      SF Sg Acc => x + "zę";
+      SF Sg Instr => x + "zą";
+      SF Sg Loc => x + "zie";
+      SF Sg Voc => x + "zo";
+      SF Pl Nom => x + "zy";
+      SF Pl Gen => x + "ez";
+      SF Pl Dat => x + "zom";
+      SF Pl Acc => x + "zy";
+      SF Pl Instr => x + "zami";
+      SF Pl Loc => x + "zach";
+      SF Pl Voc => x + "zy"
+    };
+
+    oper mkNTable1051: Str -> SubstForm => Str; --%
+    oper mkNTable1051 lexem = 
+      let x = Predef.tk 3 lexem in
+    table { 
+      SF Sg Nom => x + "ęto";
+      SF Sg Gen => x + "ęta";
+      SF Sg Dat => x + "ętu";
+      SF Sg Acc => x + "ęto";
+      SF Sg Instr => x + "ętem";
+      SF Sg Loc => x + "ęcie";
+      SF Sg Voc => x + "ęto";
+      SF Pl Nom => x + "ęta";
+      SF Pl Gen => x + "ąt";
+      SF Pl Dat => x + "ętom";
+      SF Pl Acc => x + "ęta";
+      SF Pl Instr => x + "ętami";
+      SF Pl Loc => x + "ętach";
+      SF Pl Voc => x + "ęta"
+    };
+
+    oper mkNTable1052: Str -> SubstForm => Str; --%
+    oper mkNTable1052 lexem = 
+      let x = Predef.tk 3 lexem in
+    table { 
+      SF Sg Nom => x + "źce";
+      SF Sg Gen => x + "źca";
+      SF Sg Dat => x + "źcu";
+      SF Sg Acc => x + "źce";
+      SF Sg Instr => x + "źcem";
+      SF Sg Loc => x + "źcu";
+      SF Sg Voc => x + "źce";
+      SF Pl Nom => x + "źca";
+      SF Pl Gen => x + "ziec";
+      SF Pl Dat => x + "źcom";
+      SF Pl Acc => x + "źca";
+      SF Pl Instr => x + "źcami";
+      SF Pl Loc => x + "źcach";
+      SF Pl Voc => x + "źca"
+    };
+
+    oper mkNTable1053: Str -> SubstForm => Str; --%
+    oper mkNTable1053 lexem = 
+      let x = Predef.tk 3 lexem in
+    table { 
+      SF Sg Nom => x + "ądź";
+      SF Sg Gen => x + "ędzi";
+      SF Sg Dat => x + "ędzi";
+      SF Sg Acc => x + "ądź";
+      SF Sg Instr => x + "ędzią";
+      SF Sg Loc => x + "ędzi";
+      SF Sg Voc => x + "ędzi";
+      SF Pl Nom => x + "ędzie";
+      SF Pl Gen => x + "ędzi";
+      SF Pl Dat => x + "ędziom";
+      SF Pl Acc => x + "ędzie";
+      SF Pl Instr => x + "ędziami";
+      SF Pl Loc => x + "ędziach";
+      SF Pl Voc => x + "ędzie"
+    };
+
+    oper mkNTable1054: Str -> SubstForm => Str; --%
+    oper mkNTable1054 lexem = 
+      let x = Predef.tk 3 lexem in
+    table { 
+      SF Sg Nom => x + "ądź";
+      SF Sg Gen => x + "ędzia";
+      SF Sg Dat => x + "ędziowi";
+      SF Sg Acc => x + "ędzia";
+      SF Sg Instr => x + "ędziem";
+      SF Sg Loc => x + "ędziu";
+      SF Sg Voc => x + "ędziu";
+      SF Pl Nom => x + "ędzie";
+      SF Pl Gen => x + "ędzi";
+      SF Pl Dat => x + "ędziom";
+      SF Pl Acc => x + "ędzie";
+      SF Pl Instr => x + "ędziami";
+      SF Pl Loc => x + "ędziach";
+      SF Pl Voc => x + "ędzie"
+    };
+
+    oper mkNTable1055: Str -> SubstForm => Str; --%
+    oper mkNTable1055 lexem = 
+      let x = Predef.tk 3 lexem in
+    table { 
+      SF Sg Nom => x + "ądź";
+      SF Sg Gen => x + "ędzia";
+      SF Sg Dat => x + "ędziowi";
+      SF Sg Acc => x + "ądź";
+      SF Sg Instr => x + "ędziem";
+      SF Sg Loc => x + "ędziu";
+      SF Sg Voc => x + "ędziu";
+      SF Pl Nom => x + "ędzie";
+      SF Pl Gen => x + "ędzi";
+      SF Pl Dat => x + "ędziom";
+      SF Pl Acc => x + "ędzie";
+      SF Pl Instr => x + "ędziami";
+      SF Pl Loc => x + "ędziach";
+      SF Pl Voc => x + "ędzie"
+    };
+
+    oper mkNTable1057: Str -> SubstForm => Str; --%
+    oper mkNTable1057 lexem = 
+      let x = Predef.tk 3 lexem in
+    table { 
+      SF Sg Nom => x + "ćma";
+      SF Sg Gen => x + "ćmy";
+      SF Sg Dat => x + "ćmie";
+      SF Sg Acc => x + "ćmę";
+      SF Sg Instr => x + "ćmą";
+      SF Sg Loc => x + "ćmie";
+      SF Sg Voc => x + "ćmo";
+      SF Pl Nom => x + "ćmy";
+      SF Pl Gen => x + "ciem";
+      SF Pl Dat => x + "ćmom";
+      SF Pl Acc => x + "ćmy";
+      SF Pl Instr => x + "ćmami";
+      SF Pl Loc => x + "ćmach";
+      SF Pl Voc => x + "ćmy"
+    };
+
+    oper mkNTable0004: Str -> SubstForm => Str; --%
+    oper mkNTable0004 lexem = 
+      let x = Predef.tk 0 lexem in
+    table { 
+      SF Sg Nom => x + "";
+      SF Sg Gen => x + "a";
+      SF Sg Dat => x + "owi";
+      SF Sg Acc => x + "a";
+      SF Sg Instr => x + "em";
+      SF Sg Loc => x + "ie";
+      SF Sg Voc => x + "ie";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable0005: Str -> SubstForm => Str; --%
+    oper mkNTable0005 lexem = 
+      let x = Predef.tk 1 lexem in
+    table { 
+      SF Sg Nom => x + "a";
+      SF Sg Gen => x + "i";
+      SF Sg Dat => x + "i";
+      SF Sg Acc => x + "ę";
+      SF Sg Instr => x + "ą";
+      SF Sg Loc => x + "i";
+      SF Sg Voc => x + "o";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable0007: Str -> SubstForm => Str; --%
+    oper mkNTable0007 lexem = 
+      let x = Predef.tk 0 lexem in
+    table { 
+      SF Sg Nom => x + "";
+      SF Sg Gen => x + "a";
+      SF Sg Dat => x + "owi";
+      SF Sg Acc => x + "a";
+      SF Sg Instr => x + "em";
+      SF Sg Loc => x + "u";
+      SF Sg Voc => x + "u";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable0008: Str -> SubstForm => Str; --%
+    oper mkNTable0008 lexem = 
+      let x = Predef.tk 1 lexem in
+    table { 
+      SF Sg Nom => x + "a";
+      SF Sg Gen => x + "y";
+      SF Sg Dat => x + "ie";
+      SF Sg Acc => x + "ę";
+      SF Sg Instr => x + "ą";
+      SF Sg Loc => x + "ie";
+      SF Sg Voc => x + "o";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable0017: Str -> SubstForm => Str; --%
+    oper mkNTable0017 lexem = 
+      let x = Predef.tk 2 lexem in
+    table { 
+      SF Sg Nom => x + "ów";
+      SF Sg Gen => x + "owa";
+      SF Sg Dat => x + "owu";
+      SF Sg Acc => x + "ów";
+      SF Sg Instr => x + "owem";
+      SF Sg Loc => x + "owie";
+      SF Sg Voc => x + "owie";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable0018: Str -> SubstForm => Str; --%
+    oper mkNTable0018 lexem = 
+      let x = Predef.tk 2 lexem in
+    table { 
+      SF Sg Nom => x + "ka";
+      SF Sg Gen => x + "ki";
+      SF Sg Dat => x + "ce";
+      SF Sg Acc => x + "kę";
+      SF Sg Instr => x + "ką";
+      SF Sg Loc => x + "ce";
+      SF Sg Voc => x + "ko";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable0023: Str -> SubstForm => Str; --%
+    oper mkNTable0023 lexem = 
+      let x = Predef.tk 0 lexem in
+    table { 
+      SF Sg Nom => x + "";
+      SF Sg Gen => x + "u";
+      SF Sg Dat => x + "owi";
+      SF Sg Acc => x + "";
+      SF Sg Instr => x + "iem";
+      SF Sg Loc => x + "u";
+      SF Sg Voc => x + "u";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable0024: Str -> SubstForm => Str; --%
+    oper mkNTable0024 lexem = 
+      let x = Predef.tk 0 lexem in
+    table { 
+      SF Sg Nom => x + "";
+      SF Sg Gen => x + "u";
+      SF Sg Dat => x + "owi";
+      SF Sg Acc => x + "";
+      SF Sg Instr => x + "em";
+      SF Sg Loc => x + "ie";
+      SF Sg Voc => x + "ie";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable0031: Str -> SubstForm => Str; --%
+    oper mkNTable0031 lexem = 
+      let x = Predef.tk 0 lexem in
+    table { 
+      SF Sg Nom => x + "";
+      SF Sg Gen => x + "a";
+      SF Sg Dat => x + "owi";
+      SF Sg Acc => x + "a";
+      SF Sg Instr => x + "em";
+      SF Sg Loc => x + "ie";
+      SF Sg Voc => x + "ie";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable0032: Str -> SubstForm => Str; --%
+    oper mkNTable0032 lexem = 
+      let x = Predef.tk 1 lexem in
+    table { 
+      SF Sg Nom => x + "a";
+      SF Sg Gen => x + "i";
+      SF Sg Dat => x + "i";
+      SF Sg Acc => x + "ę";
+      SF Sg Instr => x + "ą";
+      SF Sg Loc => x + "i";
+      SF Sg Voc => x + "o";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable0034: Str -> SubstForm => Str; --%
+    oper mkNTable0034 lexem = 
+      let x = Predef.tk 1 lexem in
+    table { 
+      SF Sg Nom => x + "a";
+      SF Sg Gen => x + "i";
+      SF Sg Dat => x + "i";
+      SF Sg Acc => x + "ę";
+      SF Sg Instr => x + "ą";
+      SF Sg Loc => x + "i";
+      SF Sg Voc => x + "o";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable0039: Str -> SubstForm => Str; --%
+    oper mkNTable0039 lexem = 
+      let x = Predef.tk 0 lexem in
+    table { 
+      SF Sg Nom => x + "";
+      SF Sg Gen => x + "u";
+      SF Sg Dat => x + "owi";
+      SF Sg Acc => x + "";
+      SF Sg Instr => x + "em";
+      SF Sg Loc => x + "u";
+      SF Sg Voc => x + "u";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable0040: Str -> SubstForm => Str; --%
+    oper mkNTable0040 lexem = 
+      let x = Predef.tk 1 lexem in
+    table { 
+      SF Sg Nom => x + "a";
+      SF Sg Gen => x + "y";
+      SF Sg Dat => x + "ie";
+      SF Sg Acc => x + "ę";
+      SF Sg Instr => x + "ą";
+      SF Sg Loc => x + "ie";
+      SF Sg Voc => x + "o";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable0041: Str -> SubstForm => Str; --%
+    oper mkNTable0041 lexem = 
+      let x = Predef.tk 2 lexem in
+    table { 
+      SF Sg Nom => x + "ka";
+      SF Sg Gen => x + "ki";
+      SF Sg Dat => x + "ce";
+      SF Sg Acc => x + "kę";
+      SF Sg Instr => x + "ką";
+      SF Sg Loc => x + "ce";
+      SF Sg Voc => x + "ko";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable0045: Str -> SubstForm => Str; --%
+    oper mkNTable0045 lexem = 
+      let x = Predef.tk 0 lexem in
+    table { 
+      SF Sg Nom => x + "";
+      SF Sg Gen => x + "a";
+      SF Sg Dat => x + "owi";
+      SF Sg Acc => x + "";
+      SF Sg Instr => x + "em";
+      SF Sg Loc => x + "u";
+      SF Sg Voc => x + "u";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable0052: Str -> SubstForm => Str; --%
+    oper mkNTable0052 lexem = 
+      let x = Predef.tk 0 lexem in
+    table { 
+      SF Sg Nom => x + "";
+      SF Sg Gen => x + "u";
+      SF Sg Dat => x + "owi";
+      SF Sg Acc => x + "";
+      SF Sg Instr => x + "em";
+      SF Sg Loc => x + "ze";
+      SF Sg Voc => x + "ze";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable0056: Str -> SubstForm => Str; --%
+    oper mkNTable0056 lexem = 
+      let x = Predef.tk 0 lexem in
+    table { 
+      SF Sg Nom => x + "";
+      SF Sg Gen => x + "a";
+      SF Sg Dat => x + "owi";
+      SF Sg Acc => x + "a";
+      SF Sg Instr => x + "em";
+      SF Sg Loc => x + "ze";
+      SF Sg Voc => x + "ze";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable0057: Str -> SubstForm => Str; --%
+    oper mkNTable0057 lexem = 
+      let x = Predef.tk 1 lexem in
+    table { 
+      SF Sg Nom => x + "a";
+      SF Sg Gen => x + "y";
+      SF Sg Dat => x + "ze";
+      SF Sg Acc => x + "ę";
+      SF Sg Instr => x + "ą";
+      SF Sg Loc => x + "ze";
+      SF Sg Voc => x + "o";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable0062: Str -> SubstForm => Str; --%
+    oper mkNTable0062 lexem = 
+      let x = Predef.tk 2 lexem in
+    table { 
+      SF Sg Nom => x + "ga";
+      SF Sg Gen => x + "gi";
+      SF Sg Dat => x + "dze";
+      SF Sg Acc => x + "gę";
+      SF Sg Instr => x + "gą";
+      SF Sg Loc => x + "dze";
+      SF Sg Voc => x + "go";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable0063: Str -> SubstForm => Str; --%
+    oper mkNTable0063 lexem = 
+      let x = Predef.tk 0 lexem in
+    table { 
+      SF Sg Nom => x + "";
+      SF Sg Gen => x + "a";
+      SF Sg Dat => x + "owi";
+      SF Sg Acc => x + "a";
+      SF Sg Instr => x + "em";
+      SF Sg Loc => x + "ze";
+      SF Sg Voc => x + "ze";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable0065: Str -> SubstForm => Str; --%
+    oper mkNTable0065 lexem = 
+      let x = Predef.tk 1 lexem in
+    table { 
+      SF Sg Nom => x + "a";
+      SF Sg Gen => x + "i";
+      SF Sg Dat => x + "i";
+      SF Sg Acc => x + "ę";
+      SF Sg Instr => x + "ą";
+      SF Sg Loc => x + "i";
+      SF Sg Voc => x + "o";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable0066: Str -> SubstForm => Str; --%
+    oper mkNTable0066 lexem = 
+      let x = Predef.tk 1 lexem in
+    table { 
+      SF Sg Nom => x + "a";
+      SF Sg Gen => x + "y";
+      SF Sg Dat => x + "ze";
+      SF Sg Acc => x + "ę";
+      SF Sg Instr => x + "ą";
+      SF Sg Loc => x + "ze";
+      SF Sg Voc => x + "o";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable0070: Str -> SubstForm => Str; --%
+    oper mkNTable0070 lexem = 
+      let x = Predef.tk 3 lexem in
+    table { 
+      SF Sg Nom => x + "cha";
+      SF Sg Gen => x + "chy";
+      SF Sg Dat => x + "sze";
+      SF Sg Acc => x + "chę";
+      SF Sg Instr => x + "chą";
+      SF Sg Loc => x + "sze";
+      SF Sg Voc => x + "cho";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable0071: Str -> SubstForm => Str; --%
+    oper mkNTable0071 lexem = 
+      let x = Predef.tk 2 lexem in
+    table { 
+      SF Sg Nom => x + "ów";
+      SF Sg Gen => x + "owa";
+      SF Sg Dat => x + "owowi";
+      SF Sg Acc => x + "ów";
+      SF Sg Instr => x + "owem";
+      SF Sg Loc => x + "owie";
+      SF Sg Voc => x + "owie";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable0074: Str -> SubstForm => Str; --%
+    oper mkNTable0074 lexem = 
+      let x = Predef.tk 0 lexem in
+    table { 
+      SF Sg Nom => x + "";
+      SF Sg Gen => x + "a";
+      SF Sg Dat => x + "owi";
+      SF Sg Acc => x + "a";
+      SF Sg Instr => x + "iem";
+      SF Sg Loc => x + "u";
+      SF Sg Voc => x + "u";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable0076: Str -> SubstForm => Str; --%
+    oper mkNTable0076 lexem = 
+      let x = Predef.tk 0 lexem in
+    table { 
+      SF Sg Nom => x + "";
+      SF Sg Gen => x + "a";
+      SF Sg Dat => x + "owi";
+      SF Sg Acc => x + "";
+      SF Sg Instr => x + "em";
+      SF Sg Loc => x + "ie";
+      SF Sg Voc => x + "ie";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable0078: Str -> SubstForm => Str; --%
+    oper mkNTable0078 lexem = 
+      let x = Predef.tk 1 lexem in
+    table { 
+      SF Sg Nom => x + "a";
+      SF Sg Gen => x + "y";
+      SF Sg Dat => x + "zie";
+      SF Sg Acc => x + "ę";
+      SF Sg Instr => x + "ą";
+      SF Sg Loc => x + "zie";
+      SF Sg Voc => x + "o";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable0082: Str -> SubstForm => Str; --%
+    oper mkNTable0082 lexem = 
+      let x = Predef.tk 1 lexem in
+    table { 
+      SF Sg Nom => x + "a";
+      SF Sg Gen => x + "i";
+      SF Sg Dat => x + "i";
+      SF Sg Acc => x + "ę";
+      SF Sg Instr => x + "ą";
+      SF Sg Loc => x + "i";
+      SF Sg Voc => x + "u";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable0084: Str -> SubstForm => Str; --%
+    oper mkNTable0084 lexem = 
+      let x = Predef.tk 1 lexem in
+    table { 
+      SF Sg Nom => x + "t";
+      SF Sg Gen => x + "tu";
+      SF Sg Dat => x + "towi";
+      SF Sg Acc => x + "t";
+      SF Sg Instr => x + "tem";
+      SF Sg Loc => x + "cie";
+      SF Sg Voc => x + "cie";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable0085: Str -> SubstForm => Str; --%
+    oper mkNTable0085 lexem = 
+      let x = Predef.tk 0 lexem in
+    table { 
+      SF Sg Nom => x + "";
+      SF Sg Gen => x + "a";
+      SF Sg Dat => x + "owi";
+      SF Sg Acc => x + "";
+      SF Sg Instr => x + "iem";
+      SF Sg Loc => x + "u";
+      SF Sg Voc => x + "u";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable0086: Str -> SubstForm => Str; --%
+    oper mkNTable0086 lexem = 
+      let x = Predef.tk 1 lexem in
+    table { 
+      SF Sg Nom => x + "a";
+      SF Sg Gen => x + "y";
+      SF Sg Dat => x + "zie";
+      SF Sg Acc => x + "ę";
+      SF Sg Instr => x + "ą";
+      SF Sg Loc => x + "zie";
+      SF Sg Voc => x + "o";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable0090: Str -> SubstForm => Str; --%
+    oper mkNTable0090 lexem = 
+      let x = Predef.tk 2 lexem in
+    table { 
+      SF Sg Nom => x + "ka";
+      SF Sg Gen => x + "ki";
+      SF Sg Dat => x + "ce";
+      SF Sg Acc => x + "kę";
+      SF Sg Instr => x + "ką";
+      SF Sg Loc => x + "ce";
+      SF Sg Voc => x + "ko";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable0092: Str -> SubstForm => Str; --%
+    oper mkNTable0092 lexem = 
+      let x = Predef.tk 1 lexem in
+    table { 
+      SF Sg Nom => x + "x";
+      SF Sg Gen => x + "ksa";
+      SF Sg Dat => x + "ksowi";
+      SF Sg Acc => x + "ksa";
+      SF Sg Instr => x + "ksem";
+      SF Sg Loc => x + "ksie";
+      SF Sg Voc => x + "ksie";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable0093: Str -> SubstForm => Str; --%
+    oper mkNTable0093 lexem = 
+      let x = Predef.tk 1 lexem in
+    table { 
+      SF Sg Nom => x + "ń";
+      SF Sg Gen => x + "nia";
+      SF Sg Dat => x + "niowi";
+      SF Sg Acc => x + "ń";
+      SF Sg Instr => x + "niem";
+      SF Sg Loc => x + "niu";
+      SF Sg Voc => x + "niu";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable0101: Str -> SubstForm => Str; --%
+    oper mkNTable0101 lexem = 
+      let x = Predef.tk 0 lexem in
+    table { 
+      SF Sg Nom => x + "";
+      SF Sg Gen => x + "u";
+      SF Sg Dat => x + "owi";
+      SF Sg Acc => x + "";
+      SF Sg Instr => x + "em";
+      SF Sg Loc => x + "ie";
+      SF Sg Voc => x + "ie";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable0106: Str -> SubstForm => Str; --%
+    oper mkNTable0106 lexem = 
+      let x = Predef.tk 1 lexem in
+    table { 
+      SF Sg Nom => x + "x";
+      SF Sg Gen => x + "ksu";
+      SF Sg Dat => x + "ksowi";
+      SF Sg Acc => x + "x";
+      SF Sg Instr => x + "ksem";
+      SF Sg Loc => x + "ksie";
+      SF Sg Voc => x + "ksie";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable0108: Str -> SubstForm => Str; --%
+    oper mkNTable0108 lexem = 
+      let x = Predef.tk 2 lexem in
+    table { 
+      SF Sg Nom => x + "st";
+      SF Sg Gen => x + "stu";
+      SF Sg Dat => x + "stowi";
+      SF Sg Acc => x + "st";
+      SF Sg Instr => x + "stem";
+      SF Sg Loc => x + "ście";
+      SF Sg Voc => x + "ście";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable0109: Str -> SubstForm => Str; --%
+    oper mkNTable0109 lexem = 
+      let x = Predef.tk 1 lexem in
+    table { 
+      SF Sg Nom => x + "o";
+      SF Sg Gen => x + "a";
+      SF Sg Dat => x + "u";
+      SF Sg Acc => x + "o";
+      SF Sg Instr => x + "em";
+      SF Sg Loc => x + "ie";
+      SF Sg Voc => x + "o";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable0112: Str -> SubstForm => Str; --%
+    oper mkNTable0112 lexem = 
+      let x = Predef.tk 1 lexem in
+    table { 
+      SF Sg Nom => x + "a";
+      SF Sg Gen => x + "y";
+      SF Sg Dat => x + "ie";
+      SF Sg Acc => x + "ę";
+      SF Sg Instr => x + "ą";
+      SF Sg Loc => x + "ie";
+      SF Sg Voc => x + "o";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable0113: Str -> SubstForm => Str; --%
+    oper mkNTable0113 lexem = 
+      let x = Predef.tk 1 lexem in
+    table { 
+      SF Sg Nom => x + "ł";
+      SF Sg Gen => x + "łu";
+      SF Sg Dat => x + "łowi";
+      SF Sg Acc => x + "ł";
+      SF Sg Instr => x + "łem";
+      SF Sg Loc => x + "le";
+      SF Sg Voc => x + "le";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable0115: Str -> SubstForm => Str; --%
+    oper mkNTable0115 lexem = 
+      let x = lexem in
+    table { 
+      SF Sg Nom => x + "a";
+      SF Sg Gen => x + "";
+      SF Sg Dat => x + "";
+      SF Sg Acc => x + "ę";
+      SF Sg Instr => x + "ą";
+      SF Sg Loc => x + "";
+      SF Sg Voc => x + "o";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable0116: Str -> SubstForm => Str; --%
+    oper mkNTable0116 lexem = 
+      let x = Predef.tk 3 lexem in
+    table { 
+      SF Sg Nom => x + "sta";
+      SF Sg Gen => x + "sty";
+      SF Sg Dat => x + "ście";
+      SF Sg Acc => x + "stę";
+      SF Sg Instr => x + "stą";
+      SF Sg Loc => x + "ście";
+      SF Sg Voc => x + "sto";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable0120: Str -> SubstForm => Str; --%
+    oper mkNTable0120 lexem = 
+      let x = Predef.tk 1 lexem in
+    table { 
+      SF Sg Nom => x + "a";
+      SF Sg Gen => x + "y";
+      SF Sg Dat => x + "zie";
+      SF Sg Acc => x + "ę";
+      SF Sg Instr => x + "ą";
+      SF Sg Loc => x + "zie";
+      SF Sg Voc => x + "o";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable0122: Str -> SubstForm => Str; --%
+    oper mkNTable0122 lexem = 
+      let x = Predef.tk 0 lexem in
+    table { 
+      SF Sg Nom => x + "";
+      SF Sg Gen => x + "a";
+      SF Sg Dat => x + "owi";
+      SF Sg Acc => x + "a";
+      SF Sg Instr => x + "em";
+      SF Sg Loc => x + "u";
+      SF Sg Voc => x + "u";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable0124: Str -> SubstForm => Str; --%
+    oper mkNTable0124 lexem = 
+      let x = Predef.tk 2 lexem in
+    table { 
+      SF Sg Nom => x + "ja";
+      SF Sg Gen => x + "i";
+      SF Sg Dat => x + "i";
+      SF Sg Acc => x + "ję";
+      SF Sg Instr => x + "ją";
+      SF Sg Loc => x + "i";
+      SF Sg Voc => x + "jo";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable0125: Str -> SubstForm => Str; --%
+    oper mkNTable0125 lexem = 
+      let x = Predef.tk 0 lexem in
+    table { 
+      SF Sg Nom => x + "";
+      SF Sg Gen => x + "u";
+      SF Sg Dat => x + "owi";
+      SF Sg Acc => x + "";
+      SF Sg Instr => x + "em";
+      SF Sg Loc => x + "zie";
+      SF Sg Voc => x + "zie";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable0127: Str -> SubstForm => Str; --%
+    oper mkNTable0127 lexem = 
+      let x = Predef.tk 3 lexem in
+    table { 
+      SF Sg Nom => x + "owo";
+      SF Sg Gen => x + "owa";
+      SF Sg Dat => x + "owu";
+      SF Sg Acc => x + "owo";
+      SF Sg Instr => x + "owem";
+      SF Sg Loc => x + "owie";
+      SF Sg Voc => x + "owo";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable0128: Str -> SubstForm => Str; --%
+    oper mkNTable0128 lexem = 
+      let x = Predef.tk 0 lexem in
+    table { 
+      SF Sg Nom => x + "";
+      SF Sg Gen => x + "a";
+      SF Sg Dat => x + "owi";
+      SF Sg Acc => x + "a";
+      SF Sg Instr => x + "em";
+      SF Sg Loc => x + "ie";
+      SF Sg Voc => x + "ie";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable0130: Str -> SubstForm => Str; --%
+    oper mkNTable0130 lexem = 
+      let x = Predef.tk 1 lexem in
+    table { 
+      SF Sg Nom => x + "o";
+      SF Sg Gen => x + "a";
+      SF Sg Dat => x + "u";
+      SF Sg Acc => x + "o";
+      SF Sg Instr => x + "iem";
+      SF Sg Loc => x + "u";
+      SF Sg Voc => x + "o";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable0132: Str -> SubstForm => Str; --%
+    oper mkNTable0132 lexem = 
+      let x = Predef.tk 2 lexem in
+    table { 
+      SF Sg Nom => x + "ec";
+      SF Sg Gen => x + "ca";
+      SF Sg Dat => x + "cowi";
+      SF Sg Acc => x + "ec";
+      SF Sg Instr => x + "cem";
+      SF Sg Loc => x + "cu";
+      SF Sg Voc => x + "cu";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable0135: Str -> SubstForm => Str; --%
+    oper mkNTable0135 lexem = 
+      let x = Predef.tk 1 lexem in
+    table { 
+      SF Sg Nom => x + "ś";
+      SF Sg Gen => x + "si";
+      SF Sg Dat => x + "si";
+      SF Sg Acc => x + "ś";
+      SF Sg Instr => x + "sią";
+      SF Sg Loc => x + "si";
+      SF Sg Voc => x + "si";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable0136: Str -> SubstForm => Str; --%
+    oper mkNTable0136 lexem = 
+      let x = Predef.tk 3 lexem in
+    table { 
+      SF Sg Nom => x + "zna";
+      SF Sg Gen => x + "zny";
+      SF Sg Dat => x + "źnie";
+      SF Sg Acc => x + "znę";
+      SF Sg Instr => x + "zną";
+      SF Sg Loc => x + "źnie";
+      SF Sg Voc => x + "zno";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable0137: Str -> SubstForm => Str; --%
+    oper mkNTable0137 lexem = 
+      let x = Predef.tk 1 lexem in
+    table { 
+      SF Sg Nom => x + "a";
+      SF Sg Gen => x + "y";
+      SF Sg Dat => x + "y";
+      SF Sg Acc => x + "ę";
+      SF Sg Instr => x + "ą";
+      SF Sg Loc => x + "y";
+      SF Sg Voc => x + "o";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable0138: Str -> SubstForm => Str; --%
+    oper mkNTable0138 lexem = 
+      let x = Predef.tk 1 lexem in
+    table { 
+      SF Sg Nom => x + "a";
+      SF Sg Gen => x + "y";
+      SF Sg Dat => x + "y";
+      SF Sg Acc => x + "ę";
+      SF Sg Instr => x + "ą";
+      SF Sg Loc => x + "y";
+      SF Sg Voc => x + "o";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable0139: Str -> SubstForm => Str; --%
+    oper mkNTable0139 lexem = 
+      let x = Predef.tk 1 lexem in
+    table { 
+      SF Sg Nom => x + "o";
+      SF Sg Gen => x + "a";
+      SF Sg Dat => x + "u";
+      SF Sg Acc => x + "o";
+      SF Sg Instr => x + "iem";
+      SF Sg Loc => x + "u";
+      SF Sg Voc => x + "o";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable0141: Str -> SubstForm => Str; --%
+    oper mkNTable0141 lexem = 
+      let x = Predef.tk 1 lexem in
+    table { 
+      SF Sg Nom => x + "ń";
+      SF Sg Gen => x + "nia";
+      SF Sg Dat => x + "niowi";
+      SF Sg Acc => x + "ń";
+      SF Sg Instr => x + "niem";
+      SF Sg Loc => x + "niu";
+      SF Sg Voc => x + "niu";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable0143: Str -> SubstForm => Str; --%
+    oper mkNTable0143 lexem = 
+      let x = Predef.tk 0 lexem in
+    table { 
+      SF Sg Nom => x + "";
+      SF Sg Gen => x + "a";
+      SF Sg Dat => x + "owi";
+      SF Sg Acc => x + "a";
+      SF Sg Instr => x + "em";
+      SF Sg Loc => x + "u";
+      SF Sg Voc => x + "u";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable0148: Str -> SubstForm => Str; --%
+    oper mkNTable0148 lexem = 
+      let x = lexem in
+    table { 
+      SF Sg Nom => x + "a";
+      SF Sg Gen => x + "";
+      SF Sg Dat => x + "";
+      SF Sg Acc => x + "ę";
+      SF Sg Instr => x + "ą";
+      SF Sg Loc => x + "";
+      SF Sg Voc => x + "o";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable0149: Str -> SubstForm => Str; --%
+    oper mkNTable0149 lexem = 
+      let x = lexem in
+    table { 
+      SF Sg Nom => x + "a";
+      SF Sg Gen => x + "";
+      SF Sg Dat => x + "";
+      SF Sg Acc => x + "ę";
+      SF Sg Instr => x + "ą";
+      SF Sg Loc => x + "";
+      SF Sg Voc => x + "o";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable0150: Str -> SubstForm => Str; --%
+    oper mkNTable0150 lexem = 
+      let x = Predef.tk 4 lexem in
+    table { 
+      SF Sg Nom => x + "niec";
+      SF Sg Gen => x + "ńca";
+      SF Sg Dat => x + "ńcowi";
+      SF Sg Acc => x + "niec";
+      SF Sg Instr => x + "ńcem";
+      SF Sg Loc => x + "ńcu";
+      SF Sg Voc => x + "ńcu";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable0156: Str -> SubstForm => Str; --%
+    oper mkNTable0156 lexem = 
+      let x = Predef.tk 0 lexem in
+    table { 
+      SF Sg Nom => x + "";
+      SF Sg Gen => x + "ia";
+      SF Sg Dat => x + "iowi";
+      SF Sg Acc => x + "";
+      SF Sg Instr => x + "iem";
+      SF Sg Loc => x + "iu";
+      SF Sg Voc => x + "iu";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable0160: Str -> SubstForm => Str; --%
+    oper mkNTable0160 lexem = 
+      let x = Predef.tk 4 lexem in
+    table { 
+      SF Sg Nom => x + "niek";
+      SF Sg Gen => x + "ńka";
+      SF Sg Dat => x + "ńkowi";
+      SF Sg Acc => x + "ńka";
+      SF Sg Instr => x + "ńkiem";
+      SF Sg Loc => x + "ńku";
+      SF Sg Voc => x + "ńku";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable0163: Str -> SubstForm => Str; --%
+    oper mkNTable0163 lexem = 
+      let x = Predef.tk 2 lexem in
+    table { 
+      SF Sg Nom => x + "ta";
+      SF Sg Gen => x + "ty";
+      SF Sg Dat => x + "cie";
+      SF Sg Acc => x + "tę";
+      SF Sg Instr => x + "tą";
+      SF Sg Loc => x + "cie";
+      SF Sg Voc => x + "to";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable0165: Str -> SubstForm => Str; --%
+    oper mkNTable0165 lexem = 
+      let x = Predef.tk 1 lexem in
+    table { 
+      SF Sg Nom => x + "a";
+      SF Sg Gen => x + "y";
+      SF Sg Dat => x + "ie";
+      SF Sg Acc => x + "ę";
+      SF Sg Instr => x + "ą";
+      SF Sg Loc => x + "ie";
+      SF Sg Voc => x + "o";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable0166: Str -> SubstForm => Str; --%
+    oper mkNTable0166 lexem = 
+      let x = Predef.tk 1 lexem in
+    table { 
+      SF Sg Nom => x + "a";
+      SF Sg Gen => x + "y";
+      SF Sg Dat => x + "ie";
+      SF Sg Acc => x + "ę";
+      SF Sg Instr => x + "ą";
+      SF Sg Loc => x + "ie";
+      SF Sg Voc => x + "o";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable0170: Str -> SubstForm => Str; --%
+    oper mkNTable0170 lexem = 
+      let x = Predef.tk 1 lexem in
+    table { 
+      SF Sg Nom => x + "ć";
+      SF Sg Gen => x + "cia";
+      SF Sg Dat => x + "ciowi";
+      SF Sg Acc => x + "ć";
+      SF Sg Instr => x + "ciem";
+      SF Sg Loc => x + "ciu";
+      SF Sg Voc => x + "ciu";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable0172: Str -> SubstForm => Str; --%
+    oper mkNTable0172 lexem = 
+      let x = Predef.tk 0 lexem in
+    table { 
+      SF Sg Nom => x + "";
+      SF Sg Gen => x + "y";
+      SF Sg Dat => x + "y";
+      SF Sg Acc => x + "";
+      SF Sg Instr => x + "ą";
+      SF Sg Loc => x + "y";
+      SF Sg Voc => x + "y";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable0174: Str -> SubstForm => Str; --%
+    oper mkNTable0174 lexem = 
+      let x = Predef.tk 1 lexem in
+    table { 
+      SF Sg Nom => x + "ń";
+      SF Sg Gen => x + "nia";
+      SF Sg Dat => x + "niowi";
+      SF Sg Acc => x + "nia";
+      SF Sg Instr => x + "niem";
+      SF Sg Loc => x + "niu";
+      SF Sg Voc => x + "niu";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable0177: Str -> SubstForm => Str; --%
+    oper mkNTable0177 lexem = 
+      let x = Predef.tk 2 lexem in
+    table { 
+      SF Sg Nom => x + "en";
+      SF Sg Gen => x + "na";
+      SF Sg Dat => x + "nowi";
+      SF Sg Acc => x + "na";
+      SF Sg Instr => x + "nem";
+      SF Sg Loc => x + "nie";
+      SF Sg Voc => x + "nie";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable0180: Str -> SubstForm => Str; --%
+    oper mkNTable0180 lexem = 
+      let x = Predef.tk 2 lexem in
+    table { 
+      SF Sg Nom => x + "ra";
+      SF Sg Gen => x + "ry";
+      SF Sg Dat => x + "ze";
+      SF Sg Acc => x + "rę";
+      SF Sg Instr => x + "rą";
+      SF Sg Loc => x + "ze";
+      SF Sg Voc => x + "ro";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable0183: Str -> SubstForm => Str; --%
+    oper mkNTable0183 lexem = 
+      let x = Predef.tk 1 lexem in
+    table { 
+      SF Sg Nom => x + "a";
+      SF Sg Gen => x + "y";
+      SF Sg Dat => x + "ie";
+      SF Sg Acc => x + "ę";
+      SF Sg Instr => x + "ą";
+      SF Sg Loc => x + "ie";
+      SF Sg Voc => x + "o";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable0184: Str -> SubstForm => Str; --%
+    oper mkNTable0184 lexem = 
+      let x = lexem in
+    table { 
+      SF Sg Nom => x + "a";
+      SF Sg Gen => x + "";
+      SF Sg Dat => x + "";
+      SF Sg Acc => x + "ę";
+      SF Sg Instr => x + "ą";
+      SF Sg Loc => x + "";
+      SF Sg Voc => x + "o";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable0185: Str -> SubstForm => Str; --%
+    oper mkNTable0185 lexem = 
+      let x = Predef.tk 0 lexem in
+    table { 
+      SF Sg Nom => x + "";
+      SF Sg Gen => x + "a";
+      SF Sg Dat => x + "owi";
+      SF Sg Acc => x + "a";
+      SF Sg Instr => x + "em";
+      SF Sg Loc => x + "u";
+      SF Sg Voc => x + "u";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable0187: Str -> SubstForm => Str; --%
+    oper mkNTable0187 lexem = 
+      let x = Predef.tk 2 lexem in
+    table { 
+      SF Sg Nom => x + "ek";
+      SF Sg Gen => x + "ka";
+      SF Sg Dat => x + "kowi";
+      SF Sg Acc => x + "ek";
+      SF Sg Instr => x + "kiem";
+      SF Sg Loc => x + "ku";
+      SF Sg Voc => x + "ku";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable0188: Str -> SubstForm => Str; --%
+    oper mkNTable0188 lexem = 
+      let x = Predef.tk 3 lexem in
+    table { 
+      SF Sg Nom => x + "zna";
+      SF Sg Gen => x + "zny";
+      SF Sg Dat => x + "źnie";
+      SF Sg Acc => x + "znę";
+      SF Sg Instr => x + "zną";
+      SF Sg Loc => x + "źnie";
+      SF Sg Voc => x + "zno";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable0194: Str -> SubstForm => Str; --%
+    oper mkNTable0194 lexem = 
+      let x = lexem in
+    table { 
+      SF Sg Nom => x + "a";
+      SF Sg Gen => x + "";
+      SF Sg Dat => x + "";
+      SF Sg Acc => x + "ę";
+      SF Sg Instr => x + "ą";
+      SF Sg Loc => x + "";
+      SF Sg Voc => x + "[sg,voc]";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable0196: Str -> SubstForm => Str; --%
+    oper mkNTable0196 lexem = 
+      let x = Predef.tk 0 lexem in
+    table { 
+      SF Sg Nom => x + "";
+      SF Sg Gen => x + "na";
+      SF Sg Dat => x + "nowi";
+      SF Sg Acc => x + "na";
+      SF Sg Instr => x + "nem";
+      SF Sg Loc => x + "nie";
+      SF Sg Voc => x + "";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable0202: Str -> SubstForm => Str; --%
+    oper mkNTable0202 lexem = 
+      let x = Predef.tk 2 lexem in
+    table { 
+      SF Sg Nom => x + "ów";
+      SF Sg Gen => x + "owa";
+      SF Sg Dat => x + "owowi";
+      SF Sg Acc => x + "owa";
+      SF Sg Instr => x + "owem";
+      SF Sg Loc => x + "owie";
+      SF Sg Voc => x + "owie";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable0206: Str -> SubstForm => Str; --%
+    oper mkNTable0206 lexem = 
+      let x = Predef.tk 0 lexem in
+    table { 
+      SF Sg Nom => x + "";
+      SF Sg Gen => x + "a";
+      SF Sg Dat => x + "owi";
+      SF Sg Acc => x + "a";
+      SF Sg Instr => x + "iem";
+      SF Sg Loc => x + "u";
+      SF Sg Voc => x + "u";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable0207: Str -> SubstForm => Str; --%
+    oper mkNTable0207 lexem = 
+      let x = Predef.tk 2 lexem in
+    table { 
+      SF Sg Nom => x + "ta";
+      SF Sg Gen => x + "ty";
+      SF Sg Dat => x + "cie";
+      SF Sg Acc => x + "tę";
+      SF Sg Instr => x + "tą";
+      SF Sg Loc => x + "cie";
+      SF Sg Voc => x + "to";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable0209: Str -> SubstForm => Str; --%
+    oper mkNTable0209 lexem = 
+      let x = Predef.tk 2 lexem in
+    table { 
+      SF Sg Nom => x + "ek";
+      SF Sg Gen => x + "ku";
+      SF Sg Dat => x + "kowi";
+      SF Sg Acc => x + "ek";
+      SF Sg Instr => x + "kiem";
+      SF Sg Loc => x + "ku";
+      SF Sg Voc => x + "ku";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable0211: Str -> SubstForm => Str; --%
+    oper mkNTable0211 lexem = 
+      let x = Predef.tk 2 lexem in
+    table { 
+      SF Sg Nom => x + "ha";
+      SF Sg Gen => x + "hy";
+      SF Sg Dat => x + "że";
+      SF Sg Acc => x + "hę";
+      SF Sg Instr => x + "hą";
+      SF Sg Loc => x + "że";
+      SF Sg Voc => x + "ho";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable0212: Str -> SubstForm => Str; --%
+    oper mkNTable0212 lexem = 
+      let x = Predef.tk 1 lexem in
+    table { 
+      SF Sg Nom => x + "t";
+      SF Sg Gen => x + "ta";
+      SF Sg Dat => x + "towi";
+      SF Sg Acc => x + "ta";
+      SF Sg Instr => x + "tem";
+      SF Sg Loc => x + "cie";
+      SF Sg Voc => x + "cie";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable0215: Str -> SubstForm => Str; --%
+    oper mkNTable0215 lexem = 
+      let x = Predef.tk 2 lexem in
+    table { 
+      SF Sg Nom => x + "ek";
+      SF Sg Gen => x + "ka";
+      SF Sg Dat => x + "kowi";
+      SF Sg Acc => x + "ka";
+      SF Sg Instr => x + "kiem";
+      SF Sg Loc => x + "ku";
+      SF Sg Voc => x + "ku";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable0216: Str -> SubstForm => Str; --%
+    oper mkNTable0216 lexem = 
+      let x = Predef.tk 1 lexem in
+    table { 
+      SF Sg Nom => x + "a";
+      SF Sg Gen => x + "i";
+      SF Sg Dat => x + "i";
+      SF Sg Acc => x + "ę";
+      SF Sg Instr => x + "ą";
+      SF Sg Loc => x + "i";
+      SF Sg Voc => x + "o";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable0220: Str -> SubstForm => Str; --%
+    oper mkNTable0220 lexem = 
+      let x = Predef.tk 1 lexem in
+    table { 
+      SF Sg Nom => x + "o";
+      SF Sg Gen => x + "[sg,gen]";
+      SF Sg Dat => x + "ie";
+      SF Sg Acc => x + "[sg,acc]";
+      SF Sg Instr => x + "[sg,inst]";
+      SF Sg Loc => x + "ie";
+      SF Sg Voc => x + "o";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable0221: Str -> SubstForm => Str; --%
+    oper mkNTable0221 lexem = 
+      let x = Predef.tk 3 lexem in
+    table { 
+      SF Sg Nom => x + "zno";
+      SF Sg Gen => x + "zna";
+      SF Sg Dat => x + "znu";
+      SF Sg Acc => x + "zno";
+      SF Sg Instr => x + "znem";
+      SF Sg Loc => x + "źnie";
+      SF Sg Voc => x + "zno";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable0223: Str -> SubstForm => Str; --%
+    oper mkNTable0223 lexem = 
+      let x = Predef.tk 0 lexem in
+    table { 
+      SF Sg Nom => x + "";
+      SF Sg Gen => x + "u";
+      SF Sg Dat => x + "owi";
+      SF Sg Acc => x + "";
+      SF Sg Instr => x + "em";
+      SF Sg Loc => x + "u";
+      SF Sg Voc => x + "u";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable0224: Str -> SubstForm => Str; --%
+    oper mkNTable0224 lexem = 
+      let x = Predef.tk 1 lexem in
+    table { 
+      SF Sg Nom => x + "o";
+      SF Sg Gen => x + "a";
+      SF Sg Dat => x + "u";
+      SF Sg Acc => x + "o";
+      SF Sg Instr => x + "em";
+      SF Sg Loc => x + "ie";
+      SF Sg Voc => x + "o";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable0225: Str -> SubstForm => Str; --%
+    oper mkNTable0225 lexem = 
+      let x = Predef.tk 3 lexem in
+    table { 
+      SF Sg Nom => x + "iec";
+      SF Sg Gen => x + "ca";
+      SF Sg Dat => x + "cowi";
+      SF Sg Acc => x + "iec";
+      SF Sg Instr => x + "cem";
+      SF Sg Loc => x + "cu";
+      SF Sg Voc => x + "cu";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable0226: Str -> SubstForm => Str; --%
+    oper mkNTable0226 lexem = 
+      let x = Predef.tk 3 lexem in
+    table { 
+      SF Sg Nom => x + "iel";
+      SF Sg Gen => x + "la";
+      SF Sg Dat => x + "lowi";
+      SF Sg Acc => x + "la";
+      SF Sg Instr => x + "lem";
+      SF Sg Loc => x + "lu";
+      SF Sg Voc => x + "lu";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable0227: Str -> SubstForm => Str; --%
+    oper mkNTable0227 lexem = 
+      let x = Predef.tk 2 lexem in
+    table { 
+      SF Sg Nom => x + "ta";
+      SF Sg Gen => x + "ty";
+      SF Sg Dat => x + "cie";
+      SF Sg Acc => x + "tę";
+      SF Sg Instr => x + "tą";
+      SF Sg Loc => x + "cie";
+      SF Sg Voc => x + "to";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable0228: Str -> SubstForm => Str; --%
+    oper mkNTable0228 lexem = 
+      let x = Predef.tk 1 lexem in
+    table { 
+      SF Sg Nom => x + "a";
+      SF Sg Gen => x + "y";
+      SF Sg Dat => x + "ze";
+      SF Sg Acc => x + "ę";
+      SF Sg Instr => x + "ą";
+      SF Sg Loc => x + "ze";
+      SF Sg Voc => x + "o";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable0229: Str -> SubstForm => Str; --%
+    oper mkNTable0229 lexem = 
+      let x = Predef.tk 0 lexem in
+    table { 
+      SF Sg Nom => x + "";
+      SF Sg Gen => x + "a";
+      SF Sg Dat => x + "[sg,dat]";
+      SF Sg Acc => x + "a";
+      SF Sg Instr => x + "iem";
+      SF Sg Loc => x + "[sg,loc]";
+      SF Sg Voc => x + "[sg,voc]";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable0234: Str -> SubstForm => Str; --%
+    oper mkNTable0234 lexem = 
+      let x = Predef.tk 2 lexem in
+    table { 
+      SF Sg Nom => x + "ga";
+      SF Sg Gen => x + "gi";
+      SF Sg Dat => x + "dze";
+      SF Sg Acc => x + "gę";
+      SF Sg Instr => x + "gą";
+      SF Sg Loc => x + "dze";
+      SF Sg Voc => x + "go";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable0235: Str -> SubstForm => Str; --%
+    oper mkNTable0235 lexem = 
+      let x = Predef.tk 2 lexem in
+    table { 
+      SF Sg Nom => x + "st";
+      SF Sg Gen => x + "sta";
+      SF Sg Dat => x + "stowi";
+      SF Sg Acc => x + "sta";
+      SF Sg Instr => x + "stem";
+      SF Sg Loc => x + "ście";
+      SF Sg Voc => x + "ście";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable0236: Str -> SubstForm => Str; --%
+    oper mkNTable0236 lexem = 
+      let x = Predef.tk 0 lexem in
+    table { 
+      SF Sg Nom => x + "";
+      SF Sg Gen => x + "a";
+      SF Sg Dat => x + "owi";
+      SF Sg Acc => x + "a";
+      SF Sg Instr => x + "em";
+      SF Sg Loc => x + "u";
+      SF Sg Voc => x + "u";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable0240: Str -> SubstForm => Str; --%
+    oper mkNTable0240 lexem = 
+      let x = Predef.tk 3 lexem in
+    table { 
+      SF Sg Nom => x + "iel";
+      SF Sg Gen => x + "la";
+      SF Sg Dat => x + "lowi";
+      SF Sg Acc => x + "la";
+      SF Sg Instr => x + "lem";
+      SF Sg Loc => x + "lu";
+      SF Sg Voc => x + "lu";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable0242: Str -> SubstForm => Str; --%
+    oper mkNTable0242 lexem = 
+      let x = Predef.tk 1 lexem in
+    table { 
+      SF Sg Nom => x + "a";
+      SF Sg Gen => x + "y";
+      SF Sg Dat => x + "ze";
+      SF Sg Acc => x + "ę";
+      SF Sg Instr => x + "ą";
+      SF Sg Loc => x + "ze";
+      SF Sg Voc => x + "o";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable0245: Str -> SubstForm => Str; --%
+    oper mkNTable0245 lexem = 
+      let x = Predef.tk 1 lexem in
+    table { 
+      SF Sg Nom => x + "a";
+      SF Sg Gen => x + "y";
+      SF Sg Dat => x + "i";
+      SF Sg Acc => x + "ę";
+      SF Sg Instr => x + "ą";
+      SF Sg Loc => x + "i";
+      SF Sg Voc => x + "o";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable0249: Str -> SubstForm => Str; --%
+    oper mkNTable0249 lexem = 
+      let x = Predef.tk 1 lexem in
+    table { 
+      SF Sg Nom => x + "a";
+      SF Sg Gen => x + "i";
+      SF Sg Dat => x + "i";
+      SF Sg Acc => x + "ę";
+      SF Sg Instr => x + "ą";
+      SF Sg Loc => x + "i";
+      SF Sg Voc => x + "o";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable0251: Str -> SubstForm => Str; --%
+    oper mkNTable0251 lexem = 
+      let x = Predef.tk 0 lexem in
+    table { 
+      SF Sg Nom => x + "";
+      SF Sg Gen => x + "ia";
+      SF Sg Dat => x + "iowi";
+      SF Sg Acc => x + "";
+      SF Sg Instr => x + "iem";
+      SF Sg Loc => x + "iu";
+      SF Sg Voc => x + "iu";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable0252: Str -> SubstForm => Str; --%
+    oper mkNTable0252 lexem = 
+      let x = Predef.tk 1 lexem in
+    table { 
+      SF Sg Nom => x + "a";
+      SF Sg Gen => x + "i";
+      SF Sg Dat => x + "i";
+      SF Sg Acc => x + "ę";
+      SF Sg Instr => x + "ą";
+      SF Sg Loc => x + "i";
+      SF Sg Voc => x + "o";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable0255: Str -> SubstForm => Str; --%
+    oper mkNTable0255 lexem = 
+      let x = Predef.tk 2 lexem in
+    table { 
+      SF Sg Nom => x + "ga";
+      SF Sg Gen => x + "gi";
+      SF Sg Dat => x + "dze";
+      SF Sg Acc => x + "gę";
+      SF Sg Instr => x + "gą";
+      SF Sg Loc => x + "dze";
+      SF Sg Voc => x + "go";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable0264: Str -> SubstForm => Str; --%
+    oper mkNTable0264 lexem = 
+      let x = Predef.tk 0 lexem in
+    table { 
+      SF Sg Nom => x + "";
+      SF Sg Gen => x + "a";
+      SF Sg Dat => x + "owi";
+      SF Sg Acc => x + "";
+      SF Sg Instr => x + "iem";
+      SF Sg Loc => x + "u";
+      SF Sg Voc => x + "u";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable0267: Str -> SubstForm => Str; --%
+    oper mkNTable0267 lexem = 
+      let x = Predef.tk 3 lexem in
+    table { 
+      SF Sg Nom => x + "zeł";
+      SF Sg Gen => x + "zła";
+      SF Sg Dat => x + "złowi";
+      SF Sg Acc => x + "zła";
+      SF Sg Instr => x + "złem";
+      SF Sg Loc => x + "źle";
+      SF Sg Voc => x + "źle";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable0269: Str -> SubstForm => Str; --%
+    oper mkNTable0269 lexem = 
+      let x = Predef.tk 2 lexem in
+    table { 
+      SF Sg Nom => x + "ów";
+      SF Sg Gen => x + "owa";
+      SF Sg Dat => x + "owowi";
+      SF Sg Acc => x + "ów";
+      SF Sg Instr => x + "owem";
+      SF Sg Loc => x + "owie";
+      SF Sg Voc => x + "owie";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable0270: Str -> SubstForm => Str; --%
+    oper mkNTable0270 lexem = 
+      let x = Predef.tk 1 lexem in
+    table { 
+      SF Sg Nom => x + "a";
+      SF Sg Gen => x + "y";
+      SF Sg Dat => x + "ze";
+      SF Sg Acc => x + "ę";
+      SF Sg Instr => x + "ą";
+      SF Sg Loc => x + "ze";
+      SF Sg Voc => x + "o";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable0272: Str -> SubstForm => Str; --%
+    oper mkNTable0272 lexem = 
+      let x = Predef.tk 2 lexem in
+    table { 
+      SF Sg Nom => x + "ła";
+      SF Sg Gen => x + "ły";
+      SF Sg Dat => x + "le";
+      SF Sg Acc => x + "łę";
+      SF Sg Instr => x + "łą";
+      SF Sg Loc => x + "le";
+      SF Sg Voc => x + "ło";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable0273: Str -> SubstForm => Str; --%
+    oper mkNTable0273 lexem = 
+      let x = Predef.tk 2 lexem in
+    table { 
+      SF Sg Nom => x + "el";
+      SF Sg Gen => x + "la";
+      SF Sg Dat => x + "lowi";
+      SF Sg Acc => x + "la";
+      SF Sg Instr => x + "lem";
+      SF Sg Loc => x + "lu";
+      SF Sg Voc => x + "lu";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable0276: Str -> SubstForm => Str; --%
+    oper mkNTable0276 lexem = 
+      let x = Predef.tk 1 lexem in
+    table { 
+      SF Sg Nom => x + "o";
+      SF Sg Gen => x + "a";
+      SF Sg Dat => x + "owi";
+      SF Sg Acc => x + "a";
+      SF Sg Instr => x + "em";
+      SF Sg Loc => x + "u";
+      SF Sg Voc => x + "u";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable0277: Str -> SubstForm => Str; --%
+    oper mkNTable0277 lexem = 
+      let x = Predef.tk 0 lexem in
+    table { 
+      SF Sg Nom => x + "";
+      SF Sg Gen => x + "ego";
+      SF Sg Dat => x + "emu";
+      SF Sg Acc => x + "ego";
+      SF Sg Instr => x + "m";
+      SF Sg Loc => x + "m";
+      SF Sg Voc => x + "";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable0279: Str -> SubstForm => Str; --%
+    oper mkNTable0279 lexem = 
+      let x = Predef.tk 0 lexem in
+    table { 
+      SF Sg Nom => x + "";
+      SF Sg Gen => x + "a";
+      SF Sg Dat => x + "owi";
+      SF Sg Acc => x + "a";
+      SF Sg Instr => x + "em";
+      SF Sg Loc => x + "zie";
+      SF Sg Voc => x + "zie";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable0284: Str -> SubstForm => Str; --%
+    oper mkNTable0284 lexem = 
+      let x = Predef.tk 8 lexem in
+    table { 
+      SF Sg Nom => x + "[sg,nom]";
+      SF Sg Gen => x + "[sg,gen]";
+      SF Sg Dat => x + "[sg,dat]";
+      SF Sg Acc => x + "[sg,acc]";
+      SF Sg Instr => x + "m";
+      SF Sg Loc => x + "m";
+      SF Sg Voc => x + "[sg,voc]";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable0285: Str -> SubstForm => Str; --%
+    oper mkNTable0285 lexem = 
+      let x = Predef.tk 3 lexem in
+    table { 
+      SF Sg Nom => x + "ódz";
+      SF Sg Gen => x + "odza";
+      SF Sg Dat => x + "odzowi";
+      SF Sg Acc => x + "ódz";
+      SF Sg Instr => x + "odzem";
+      SF Sg Loc => x + "odzu";
+      SF Sg Voc => x + "odzu";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable0288: Str -> SubstForm => Str; --%
+    oper mkNTable0288 lexem = 
+      let x = Predef.tk 3 lexem in
+    table { 
+      SF Sg Nom => x + "owo";
+      SF Sg Gen => x + "owa";
+      SF Sg Dat => x + "owu";
+      SF Sg Acc => x + "owo";
+      SF Sg Instr => x + "owem";
+      SF Sg Loc => x + "owie";
+      SF Sg Voc => x + "owo";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable0289: Str -> SubstForm => Str; --%
+    oper mkNTable0289 lexem = 
+      let x = Predef.tk 2 lexem in
+    table { 
+      SF Sg Nom => x + "ów";
+      SF Sg Gen => x + "owa";
+      SF Sg Dat => x + "owu";
+      SF Sg Acc => x + "ów";
+      SF Sg Instr => x + "owem";
+      SF Sg Loc => x + "owie";
+      SF Sg Voc => x + "owie";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable0294: Str -> SubstForm => Str; --%
+    oper mkNTable0294 lexem = 
+      let x = Predef.tk 1 lexem in
+    table { 
+      SF Sg Nom => x + "e";
+      SF Sg Gen => x + "[sg,gen]";
+      SF Sg Dat => x + "[sg,dat]";
+      SF Sg Acc => x + "[sg,acc]";
+      SF Sg Instr => x + "em";
+      SF Sg Loc => x + "em";
+      SF Sg Voc => x + "e";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable0296: Str -> SubstForm => Str; --%
+    oper mkNTable0296 lexem = 
+      let x = Predef.tk 1 lexem in
+    table { 
+      SF Sg Nom => x + "a";
+      SF Sg Gen => x + "y";
+      SF Sg Dat => x + "y";
+      SF Sg Acc => x + "ę";
+      SF Sg Instr => x + "ą";
+      SF Sg Loc => x + "y";
+      SF Sg Voc => x + "o";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable0298: Str -> SubstForm => Str; --%
+    oper mkNTable0298 lexem = 
+      let x = Predef.tk 2 lexem in
+    table { 
+      SF Sg Nom => x + "ąb";
+      SF Sg Gen => x + "ębia";
+      SF Sg Dat => x + "ębiowi";
+      SF Sg Acc => x + "ębia";
+      SF Sg Instr => x + "ębiem";
+      SF Sg Loc => x + "ębiu";
+      SF Sg Voc => x + "ębiu";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable0303: Str -> SubstForm => Str; --%
+    oper mkNTable0303 lexem = 
+      let x = Predef.tk 1 lexem in
+    table { 
+      SF Sg Nom => x + "o";
+      SF Sg Gen => x + "a";
+      SF Sg Dat => x + "u";
+      SF Sg Acc => x + "o";
+      SF Sg Instr => x + "em";
+      SF Sg Loc => x + "u";
+      SF Sg Voc => x + "o";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable0306: Str -> SubstForm => Str; --%
+    oper mkNTable0306 lexem = 
+      let x = Predef.tk 1 lexem in
+    table { 
+      SF Sg Nom => x + "a";
+      SF Sg Gen => x + "y";
+      SF Sg Dat => x + "zie";
+      SF Sg Acc => x + "ę";
+      SF Sg Instr => x + "ą";
+      SF Sg Loc => x + "zie";
+      SF Sg Voc => x + "o";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable0307: Str -> SubstForm => Str; --%
+    oper mkNTable0307 lexem = 
+      let x = Predef.tk 2 lexem in
+    table { 
+      SF Sg Nom => x + "ka";
+      SF Sg Gen => x + "ki";
+      SF Sg Dat => x + "ce";
+      SF Sg Acc => x + "kę";
+      SF Sg Instr => x + "ką";
+      SF Sg Loc => x + "ce";
+      SF Sg Voc => x + "ko";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable0310: Str -> SubstForm => Str; --%
+    oper mkNTable0310 lexem = 
+      let x = Predef.tk 1 lexem in
+    table { 
+      SF Sg Nom => x + "ś";
+      SF Sg Gen => x + "sia";
+      SF Sg Dat => x + "siowi";
+      SF Sg Acc => x + "sia";
+      SF Sg Instr => x + "siem";
+      SF Sg Loc => x + "siu";
+      SF Sg Voc => x + "siu";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable0314: Str -> SubstForm => Str; --%
+    oper mkNTable0314 lexem = 
+      let x = Predef.tk 1 lexem in
+    table { 
+      SF Sg Nom => x + "ń";
+      SF Sg Gen => x + "nia";
+      SF Sg Dat => x + "niowi";
+      SF Sg Acc => x + "ń";
+      SF Sg Instr => x + "niem";
+      SF Sg Loc => x + "niu";
+      SF Sg Voc => x + "niu";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable0318: Str -> SubstForm => Str; --%
+    oper mkNTable0318 lexem = 
+      let x = Predef.tk 1 lexem in
+    table { 
+      SF Sg Nom => x + "e";
+      SF Sg Gen => x + "ego";
+      SF Sg Dat => x + "[sg,dat]";
+      SF Sg Acc => x + "ego";
+      SF Sg Instr => x + "[sg,inst]";
+      SF Sg Loc => x + "[sg,loc]";
+      SF Sg Voc => x + "e";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable0319: Str -> SubstForm => Str; --%
+    oper mkNTable0319 lexem = 
+      let x = Predef.tk 1 lexem in
+    table { 
+      SF Sg Nom => x + "a";
+      SF Sg Gen => x + "y";
+      SF Sg Dat => x + "zie";
+      SF Sg Acc => x + "ę";
+      SF Sg Instr => x + "ą";
+      SF Sg Loc => x + "zie";
+      SF Sg Voc => x + "o";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable0320: Str -> SubstForm => Str; --%
+    oper mkNTable0320 lexem = 
+      let x = Predef.tk 2 lexem in
+    table { 
+      SF Sg Nom => x + "ga";
+      SF Sg Gen => x + "gi";
+      SF Sg Dat => x + "dze";
+      SF Sg Acc => x + "gę";
+      SF Sg Instr => x + "gą";
+      SF Sg Loc => x + "dze";
+      SF Sg Voc => x + "go";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable0321: Str -> SubstForm => Str; --%
+    oper mkNTable0321 lexem = 
+      let x = Predef.tk 2 lexem in
+    table { 
+      SF Sg Nom => x + "er";
+      SF Sg Gen => x + "ra";
+      SF Sg Dat => x + "rowi";
+      SF Sg Acc => x + "ra";
+      SF Sg Instr => x + "rem";
+      SF Sg Loc => x + "rze";
+      SF Sg Voc => x + "rze";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable0322: Str -> SubstForm => Str; --%
+    oper mkNTable0322 lexem = 
+      let x = Predef.tk 2 lexem in
+    table { 
+      SF Sg Nom => x + "eć";
+      SF Sg Gen => x + "cia";
+      SF Sg Dat => x + "ciowi";
+      SF Sg Acc => x + "cia";
+      SF Sg Instr => x + "ciem";
+      SF Sg Loc => x + "ciu";
+      SF Sg Voc => x + "ciu";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable0323: Str -> SubstForm => Str; --%
+    oper mkNTable0323 lexem = 
+      let x = Predef.tk 0 lexem in
+    table { 
+      SF Sg Nom => x + "";
+      SF Sg Gen => x + "a";
+      SF Sg Dat => x + "owi";
+      SF Sg Acc => x + "";
+      SF Sg Instr => x + "em";
+      SF Sg Loc => x + "ie";
+      SF Sg Voc => x + "ie";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable0325: Str -> SubstForm => Str; --%
+    oper mkNTable0325 lexem = 
+      let x = Predef.tk 2 lexem in
+    table { 
+      SF Sg Nom => x + "in";
+      SF Sg Gen => x + "ina";
+      SF Sg Dat => x + "inowi";
+      SF Sg Acc => x + "ina";
+      SF Sg Instr => x + "inem";
+      SF Sg Loc => x + "inie";
+      SF Sg Voc => x + "inie";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable0326: Str -> SubstForm => Str; --%
+    oper mkNTable0326 lexem = 
+      let x = Predef.tk 4 lexem in
+    table { 
+      SF Sg Nom => x + "siec";
+      SF Sg Gen => x + "śca";
+      SF Sg Dat => x + "ścowi";
+      SF Sg Acc => x + "śca";
+      SF Sg Instr => x + "ścem";
+      SF Sg Loc => x + "ścu";
+      SF Sg Voc => x + "ścu";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable0327: Str -> SubstForm => Str; --%
+    oper mkNTable0327 lexem = 
+      let x = Predef.tk 2 lexem in
+    table { 
+      SF Sg Nom => x + "ec";
+      SF Sg Gen => x + "ca";
+      SF Sg Dat => x + "cowi";
+      SF Sg Acc => x + "ca";
+      SF Sg Instr => x + "cem";
+      SF Sg Loc => x + "cu";
+      SF Sg Voc => x + "cu";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable0329: Str -> SubstForm => Str; --%
+    oper mkNTable0329 lexem = 
+      let x = Predef.tk 0 lexem in
+    table { 
+      SF Sg Nom => x + "";
+      SF Sg Gen => x + "a";
+      SF Sg Dat => x + "owi";
+      SF Sg Acc => x + "a";
+      SF Sg Instr => x + "iem";
+      SF Sg Loc => x + "u";
+      SF Sg Voc => x + "u";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable0331: Str -> SubstForm => Str; --%
+    oper mkNTable0331 lexem = 
+      let x = Predef.tk 1 lexem in
+    table { 
+      SF Sg Nom => x + "o";
+      SF Sg Gen => x + "a";
+      SF Sg Dat => x + "owi";
+      SF Sg Acc => x + "a";
+      SF Sg Instr => x + "em";
+      SF Sg Loc => x + "zie";
+      SF Sg Voc => x + "o";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable0336: Str -> SubstForm => Str; --%
+    oper mkNTable0336 lexem = 
+      let x = Predef.tk 2 lexem in
+    table { 
+      SF Sg Nom => x + "ta";
+      SF Sg Gen => x + "ty";
+      SF Sg Dat => x + "cie";
+      SF Sg Acc => x + "tę";
+      SF Sg Instr => x + "tą";
+      SF Sg Loc => x + "cie";
+      SF Sg Voc => x + "to";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable0340: Str -> SubstForm => Str; --%
+    oper mkNTable0340 lexem = 
+      let x = Predef.tk 0 lexem in
+    table { 
+      SF Sg Nom => x + "";
+      SF Sg Gen => x + "a";
+      SF Sg Dat => x + "owi";
+      SF Sg Acc => x + "a";
+      SF Sg Instr => x + "em";
+      SF Sg Loc => x + "zie";
+      SF Sg Voc => x + "zie";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable0341: Str -> SubstForm => Str; --%
+    oper mkNTable0341 lexem = 
+      let x = Predef.tk 1 lexem in
+    table { 
+      SF Sg Nom => x + "o";
+      SF Sg Gen => x + "a";
+      SF Sg Dat => x + "owi";
+      SF Sg Acc => x + "a";
+      SF Sg Instr => x + "em";
+      SF Sg Loc => x + "u";
+      SF Sg Voc => x + "o";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable0344: Str -> SubstForm => Str; --%
+    oper mkNTable0344 lexem = 
+      let x = Predef.tk 8 lexem in
+    table { 
+      SF Sg Nom => x + "[sg,nom]";
+      SF Sg Gen => x + "[sg,gen]";
+      SF Sg Dat => x + "[sg,dat]";
+      SF Sg Acc => x + "[sg,acc]";
+      SF Sg Instr => x + "[sg,inst]";
+      SF Sg Loc => x + "[sg,loc]";
+      SF Sg Voc => x + "[sg,voc]";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable0346: Str -> SubstForm => Str; --%
+    oper mkNTable0346 lexem = 
+      let x = Predef.tk 2 lexem in
+    table { 
+      SF Sg Nom => x + "ca";
+      SF Sg Gen => x + "ki";
+      SF Sg Dat => x + "ce";
+      SF Sg Acc => x + "cę";
+      SF Sg Instr => x + "cą";
+      SF Sg Loc => x + "ce";
+      SF Sg Voc => x + "co";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable0347: Str -> SubstForm => Str; --%
+    oper mkNTable0347 lexem = 
+      let x = Predef.tk 1 lexem in
+    table { 
+      SF Sg Nom => x + "t";
+      SF Sg Gen => x + "ta";
+      SF Sg Dat => x + "towi";
+      SF Sg Acc => x + "ta";
+      SF Sg Instr => x + "tem";
+      SF Sg Loc => x + "cie";
+      SF Sg Voc => x + "cie";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable0351: Str -> SubstForm => Str; --%
+    oper mkNTable0351 lexem = 
+      let x = Predef.tk 0 lexem in
+    table { 
+      SF Sg Nom => x + "";
+      SF Sg Gen => x + "a";
+      SF Sg Dat => x + "owi";
+      SF Sg Acc => x + "";
+      SF Sg Instr => x + "iem";
+      SF Sg Loc => x + "u";
+      SF Sg Voc => x + "u";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable0354: Str -> SubstForm => Str; --%
+    oper mkNTable0354 lexem = 
+      let x = Predef.tk 1 lexem in
+    table { 
+      SF Sg Nom => x + "t";
+      SF Sg Gen => x + "ta";
+      SF Sg Dat => x + "towi";
+      SF Sg Acc => x + "t";
+      SF Sg Instr => x + "tem";
+      SF Sg Loc => x + "cie";
+      SF Sg Voc => x + "cie";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable0355: Str -> SubstForm => Str; --%
+    oper mkNTable0355 lexem = 
+      let x = Predef.tk 2 lexem in
+    table { 
+      SF Sg Nom => x + "ja";
+      SF Sg Gen => x + "i";
+      SF Sg Dat => x + "i";
+      SF Sg Acc => x + "ję";
+      SF Sg Instr => x + "ją";
+      SF Sg Loc => x + "i";
+      SF Sg Voc => x + "jo";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable0357: Str -> SubstForm => Str; --%
+    oper mkNTable0357 lexem = 
+      let x = Predef.tk 1 lexem in
+    table { 
+      SF Sg Nom => x + "e";
+      SF Sg Gen => x + "a";
+      SF Sg Dat => x + "u";
+      SF Sg Acc => x + "e";
+      SF Sg Instr => x + "em";
+      SF Sg Loc => x + "u";
+      SF Sg Voc => x + "e";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable0358: Str -> SubstForm => Str; --%
+    oper mkNTable0358 lexem = 
+      let x = Predef.tk 0 lexem in
+    table { 
+      SF Sg Nom => x + "";
+      SF Sg Gen => x + "a";
+      SF Sg Dat => x + "owi";
+      SF Sg Acc => x + "";
+      SF Sg Instr => x + "em";
+      SF Sg Loc => x + "u";
+      SF Sg Voc => x + "u";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable0359: Str -> SubstForm => Str; --%
+    oper mkNTable0359 lexem = 
+      let x = Predef.tk 3 lexem in
+    table { 
+      SF Sg Nom => x + "cha";
+      SF Sg Gen => x + "chy";
+      SF Sg Dat => x + "sze";
+      SF Sg Acc => x + "chę";
+      SF Sg Instr => x + "chą";
+      SF Sg Loc => x + "sze";
+      SF Sg Voc => x + "cho";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable0361: Str -> SubstForm => Str; --%
+    oper mkNTable0361 lexem = 
+      let x = Predef.tk 0 lexem in
+    table { 
+      SF Sg Nom => x + "";
+      SF Sg Gen => x + "a";
+      SF Sg Dat => x + "owi";
+      SF Sg Acc => x + "a";
+      SF Sg Instr => x + "em";
+      SF Sg Loc => x + "u";
+      SF Sg Voc => x + "u";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable0362: Str -> SubstForm => Str; --%
+    oper mkNTable0362 lexem = 
+      let x = Predef.tk 1 lexem in
+    table { 
+      SF Sg Nom => x + "a";
+      SF Sg Gen => x + "i";
+      SF Sg Dat => x + "[sg,dat]";
+      SF Sg Acc => x + "[sg,acc]";
+      SF Sg Instr => x + "[sg,inst]";
+      SF Sg Loc => x + "[sg,loc]";
+      SF Sg Voc => x + "[sg,voc]";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable0363: Str -> SubstForm => Str; --%
+    oper mkNTable0363 lexem = 
+      let x = Predef.tk 1 lexem in
+    table { 
+      SF Sg Nom => x + "o";
+      SF Sg Gen => x + "a";
+      SF Sg Dat => x + "owi";
+      SF Sg Acc => x + "a";
+      SF Sg Instr => x + "em";
+      SF Sg Loc => x + "ie";
+      SF Sg Voc => x + "o";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable0367: Str -> SubstForm => Str; --%
+    oper mkNTable0367 lexem = 
+      let x = Predef.tk 0 lexem in
+    table { 
+      SF Sg Nom => x + "";
+      SF Sg Gen => x + "a";
+      SF Sg Dat => x + "owi";
+      SF Sg Acc => x + "a";
+      SF Sg Instr => x + "em";
+      SF Sg Loc => x + "ie";
+      SF Sg Voc => x + "ie";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable0368: Str -> SubstForm => Str; --%
+    oper mkNTable0368 lexem = 
+      let x = Predef.tk 1 lexem in
+    table { 
+      SF Sg Nom => x + "h";
+      SF Sg Gen => x + "ha";
+      SF Sg Dat => x + "howi";
+      SF Sg Acc => x + "ha";
+      SF Sg Instr => x + "hem";
+      SF Sg Loc => x + "ie";
+      SF Sg Voc => x + "ie";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable0369: Str -> SubstForm => Str; --%
+    oper mkNTable0369 lexem = 
+      let x = Predef.tk 1 lexem in
+    table { 
+      SF Sg Nom => x + "h";
+      SF Sg Gen => x + "hu";
+      SF Sg Dat => x + "howi";
+      SF Sg Acc => x + "h";
+      SF Sg Instr => x + "hem";
+      SF Sg Loc => x + "ie";
+      SF Sg Voc => x + "ie";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable0370: Str -> SubstForm => Str; --%
+    oper mkNTable0370 lexem = 
+      let x = Predef.tk 4 lexem in
+    table { 
+      SF Sg Nom => x + "siek";
+      SF Sg Gen => x + "śka";
+      SF Sg Dat => x + "śkowi";
+      SF Sg Acc => x + "śka";
+      SF Sg Instr => x + "śkiem";
+      SF Sg Loc => x + "śku";
+      SF Sg Voc => x + "śku";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable0371: Str -> SubstForm => Str; --%
+    oper mkNTable0371 lexem = 
+      let x = Predef.tk 3 lexem in
+    table { 
+      SF Sg Nom => x + "sna";
+      SF Sg Gen => x + "sny";
+      SF Sg Dat => x + "śnie";
+      SF Sg Acc => x + "snę";
+      SF Sg Instr => x + "sną";
+      SF Sg Loc => x + "śnie";
+      SF Sg Voc => x + "sno";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable0372: Str -> SubstForm => Str; --%
+    oper mkNTable0372 lexem = 
+      let x = lexem in
+    table { 
+      SF Sg Nom => x + "a";
+      SF Sg Gen => x + "";
+      SF Sg Dat => x + "";
+      SF Sg Acc => x + "ę";
+      SF Sg Instr => x + "ą";
+      SF Sg Loc => x + "";
+      SF Sg Voc => x + "o";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable0376: Str -> SubstForm => Str; --%
+    oper mkNTable0376 lexem = 
+      let x = Predef.tk 1 lexem in
+    table { 
+      SF Sg Nom => x + "a";
+      SF Sg Gen => x + "y";
+      SF Sg Dat => x + "ie";
+      SF Sg Acc => x + "ę";
+      SF Sg Instr => x + "ą";
+      SF Sg Loc => x + "ie";
+      SF Sg Voc => x + "o";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable0380: Str -> SubstForm => Str; --%
+    oper mkNTable0380 lexem = 
+      let x = Predef.tk 2 lexem in
+    table { 
+      SF Sg Nom => x + "ło";
+      SF Sg Gen => x + "ła";
+      SF Sg Dat => x + "łu";
+      SF Sg Acc => x + "ło";
+      SF Sg Instr => x + "łem";
+      SF Sg Loc => x + "le";
+      SF Sg Voc => x + "ło";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable0384: Str -> SubstForm => Str; --%
+    oper mkNTable0384 lexem = 
+      let x = Predef.tk 2 lexem in
+    table { 
+      SF Sg Nom => x + "ew";
+      SF Sg Gen => x + "wi";
+      SF Sg Dat => x + "wi";
+      SF Sg Acc => x + "ew";
+      SF Sg Instr => x + "wią";
+      SF Sg Loc => x + "wi";
+      SF Sg Voc => x + "wi";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable0385: Str -> SubstForm => Str; --%
+    oper mkNTable0385 lexem = 
+      let x = Predef.tk 0 lexem in
+    table { 
+      SF Sg Nom => x + "";
+      SF Sg Gen => x + "y";
+      SF Sg Dat => x + "y";
+      SF Sg Acc => x + "";
+      SF Sg Instr => x + "ą";
+      SF Sg Loc => x + "y";
+      SF Sg Voc => x + "y";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable0389: Str -> SubstForm => Str; --%
+    oper mkNTable0389 lexem = 
+      let x = Predef.tk 2 lexem in
+    table { 
+      SF Sg Nom => x + "en";
+      SF Sg Gen => x + "na";
+      SF Sg Dat => x + "nowi";
+      SF Sg Acc => x + "en";
+      SF Sg Instr => x + "nem";
+      SF Sg Loc => x + "nie";
+      SF Sg Voc => x + "nie";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable0391: Str -> SubstForm => Str; --%
+    oper mkNTable0391 lexem = 
+      let x = Predef.tk 1 lexem in
+    table { 
+      SF Sg Nom => x + "ć";
+      SF Sg Gen => x + "ci";
+      SF Sg Dat => x + "ci";
+      SF Sg Acc => x + "ć";
+      SF Sg Instr => x + "cią";
+      SF Sg Loc => x + "ci";
+      SF Sg Voc => x + "ci";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable0392: Str -> SubstForm => Str; --%
+    oper mkNTable0392 lexem = 
+      let x = Predef.tk 2 lexem in
+    table { 
+      SF Sg Nom => x + "ód";
+      SF Sg Gen => x + "odu";
+      SF Sg Dat => x + "odowi";
+      SF Sg Acc => x + "ód";
+      SF Sg Instr => x + "odem";
+      SF Sg Loc => x + "odzie";
+      SF Sg Voc => x + "odzie";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable0393: Str -> SubstForm => Str; --%
+    oper mkNTable0393 lexem = 
+      let x = Predef.tk 0 lexem in
+    table { 
+      SF Sg Nom => x + "";
+      SF Sg Gen => x + "i";
+      SF Sg Dat => x + "i";
+      SF Sg Acc => x + "";
+      SF Sg Instr => x + "ią";
+      SF Sg Loc => x + "i";
+      SF Sg Voc => x + "i";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable0394: Str -> SubstForm => Str; --%
+    oper mkNTable0394 lexem = 
+      let x = Predef.tk 2 lexem in
+    table { 
+      SF Sg Nom => x + "ec";
+      SF Sg Gen => x + "ca";
+      SF Sg Dat => x + "cowi";
+      SF Sg Acc => x + "ca";
+      SF Sg Instr => x + "cem";
+      SF Sg Loc => x + "cu";
+      SF Sg Voc => x + "cu";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable0395: Str -> SubstForm => Str; --%
+    oper mkNTable0395 lexem = 
+      let x = Predef.tk 2 lexem in
+    table { 
+      SF Sg Nom => x + "ja";
+      SF Sg Gen => x + "i";
+      SF Sg Dat => x + "i";
+      SF Sg Acc => x + "ję";
+      SF Sg Instr => x + "ją";
+      SF Sg Loc => x + "i";
+      SF Sg Voc => x + "jo";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable0396: Str -> SubstForm => Str; --%
+    oper mkNTable0396 lexem = 
+      let x = Predef.tk 3 lexem in
+    table { 
+      SF Sg Nom => x + "sno";
+      SF Sg Gen => x + "sna";
+      SF Sg Dat => x + "snu";
+      SF Sg Acc => x + "sno";
+      SF Sg Instr => x + "snem";
+      SF Sg Loc => x + "śnie";
+      SF Sg Voc => x + "sno";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable0397: Str -> SubstForm => Str; --%
+    oper mkNTable0397 lexem = 
+      let x = Predef.tk 2 lexem in
+    table { 
+      SF Sg Nom => x + "ek";
+      SF Sg Gen => x + "ka";
+      SF Sg Dat => x + "kowi";
+      SF Sg Acc => x + "ka";
+      SF Sg Instr => x + "kiem";
+      SF Sg Loc => x + "ku";
+      SF Sg Voc => x + "ku";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable0401: Str -> SubstForm => Str; --%
+    oper mkNTable0401 lexem = 
+      let x = Predef.tk 3 lexem in
+    table { 
+      SF Sg Nom => x + "ies";
+      SF Sg Gen => x + "sa";
+      SF Sg Dat => x + "sowi";
+      SF Sg Acc => x + "sa";
+      SF Sg Instr => x + "sem";
+      SF Sg Loc => x + "sie";
+      SF Sg Voc => x + "sie";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable0404: Str -> SubstForm => Str; --%
+    oper mkNTable0404 lexem = 
+      let x = Predef.tk 1 lexem in
+    table { 
+      SF Sg Nom => x + "a";
+      SF Sg Gen => x + "i";
+      SF Sg Dat => x + "i";
+      SF Sg Acc => x + "[sg,acc]";
+      SF Sg Instr => x + "[sg,inst]";
+      SF Sg Loc => x + "i";
+      SF Sg Voc => x + "o";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable0405: Str -> SubstForm => Str; --%
+    oper mkNTable0405 lexem = 
+      let x = Predef.tk 0 lexem in
+    table { 
+      SF Sg Nom => x + "";
+      SF Sg Gen => x + "a";
+      SF Sg Dat => x + "owi";
+      SF Sg Acc => x + "a";
+      SF Sg Instr => x + "em";
+      SF Sg Loc => x + "ie";
+      SF Sg Voc => x + "ie";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable0406: Str -> SubstForm => Str; --%
+    oper mkNTable0406 lexem = 
+      let x = Predef.tk 0 lexem in
+    table { 
+      SF Sg Nom => x + "";
+      SF Sg Gen => x + "a";
+      SF Sg Dat => x + "owi";
+      SF Sg Acc => x + "";
+      SF Sg Instr => x + "iem";
+      SF Sg Loc => x + "u";
+      SF Sg Voc => x + "u";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable0407: Str -> SubstForm => Str; --%
+    oper mkNTable0407 lexem = 
+      let x = Predef.tk 2 lexem in
+    table { 
+      SF Sg Nom => x + "ka";
+      SF Sg Gen => x + "ki";
+      SF Sg Dat => x + "ce";
+      SF Sg Acc => x + "kę";
+      SF Sg Instr => x + "ką";
+      SF Sg Loc => x + "ce";
+      SF Sg Voc => x + "ko";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable0408: Str -> SubstForm => Str; --%
+    oper mkNTable0408 lexem = 
+      let x = Predef.tk 1 lexem in
+    table { 
+      SF Sg Nom => x + "o";
+      SF Sg Gen => x + "a";
+      SF Sg Dat => x + "owi";
+      SF Sg Acc => x + "a";
+      SF Sg Instr => x + "em";
+      SF Sg Loc => x + "u";
+      SF Sg Voc => x + "u";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable0409: Str -> SubstForm => Str; --%
+    oper mkNTable0409 lexem = 
+      let x = Predef.tk 3 lexem in
+    table { 
+      SF Sg Nom => x + "isa";
+      SF Sg Gen => x + "isy";
+      SF Sg Dat => x + "isie";
+      SF Sg Acc => x + "isę";
+      SF Sg Instr => x + "isą";
+      SF Sg Loc => x + "isie";
+      SF Sg Voc => x + "iso";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable0412: Str -> SubstForm => Str; --%
+    oper mkNTable0412 lexem = 
+      let x = Predef.tk 0 lexem in
+    table { 
+      SF Sg Nom => x + "";
+      SF Sg Gen => x + "na";
+      SF Sg Dat => x + "nowi";
+      SF Sg Acc => x + "na";
+      SF Sg Instr => x + "nem";
+      SF Sg Loc => x + "nie";
+      SF Sg Voc => x + "nie";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable0414: Str -> SubstForm => Str; --%
+    oper mkNTable0414 lexem = 
+      let x = Predef.tk 0 lexem in
+    table { 
+      SF Sg Nom => x + "";
+      SF Sg Gen => x + "a";
+      SF Sg Dat => x + "owi";
+      SF Sg Acc => x + "a";
+      SF Sg Instr => x + "em";
+      SF Sg Loc => x + "u";
+      SF Sg Voc => x + "u";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable0415: Str -> SubstForm => Str; --%
+    oper mkNTable0415 lexem = 
+      let x = Predef.tk 0 lexem in
+    table { 
+      SF Sg Nom => x + "";
+      SF Sg Gen => x + "a";
+      SF Sg Dat => x + "owi";
+      SF Sg Acc => x + "";
+      SF Sg Instr => x + "em";
+      SF Sg Loc => x + "u";
+      SF Sg Voc => x + "u";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable0416: Str -> SubstForm => Str; --%
+    oper mkNTable0416 lexem = 
+      let x = Predef.tk 2 lexem in
+    table { 
+      SF Sg Nom => x + "el";
+      SF Sg Gen => x + "la";
+      SF Sg Dat => x + "lowi";
+      SF Sg Acc => x + "la";
+      SF Sg Instr => x + "lem";
+      SF Sg Loc => x + "lu";
+      SF Sg Voc => x + "lu";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable0417: Str -> SubstForm => Str; --%
+    oper mkNTable0417 lexem = 
+      let x = Predef.tk 8 lexem in
+    table { 
+      SF Sg Nom => x + "[sg,nom]";
+      SF Sg Gen => x + "u";
+      SF Sg Dat => x + "[sg,dat]";
+      SF Sg Acc => x + "[sg,acc]";
+      SF Sg Instr => x + "em";
+      SF Sg Loc => x + "u";
+      SF Sg Voc => x + "u";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable0419: Str -> SubstForm => Str; --%
+    oper mkNTable0419 lexem = 
+      let x = Predef.tk 0 lexem in
+    table { 
+      SF Sg Nom => x + "";
+      SF Sg Gen => x + "a";
+      SF Sg Dat => x + "owi";
+      SF Sg Acc => x + "";
+      SF Sg Instr => x + "em";
+      SF Sg Loc => x + "u";
+      SF Sg Voc => x + "u";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable0422: Str -> SubstForm => Str; --%
+    oper mkNTable0422 lexem = 
+      let x = Predef.tk 1 lexem in
+    table { 
+      SF Sg Nom => x + "a";
+      SF Sg Gen => x + "y";
+      SF Sg Dat => x + "y";
+      SF Sg Acc => x + "ę";
+      SF Sg Instr => x + "ą";
+      SF Sg Loc => x + "y";
+      SF Sg Voc => x + "o";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable0423: Str -> SubstForm => Str; --%
+    oper mkNTable0423 lexem = 
+      let x = Predef.tk 4 lexem in
+    table { 
+      SF Sg Nom => x + "siec";
+      SF Sg Gen => x + "śca";
+      SF Sg Dat => x + "ścowi";
+      SF Sg Acc => x + "siec";
+      SF Sg Instr => x + "ścem";
+      SF Sg Loc => x + "ścu";
+      SF Sg Voc => x + "ścu";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable0424: Str -> SubstForm => Str; --%
+    oper mkNTable0424 lexem = 
+      let x = Predef.tk 1 lexem in
+    table { 
+      SF Sg Nom => x + "ś";
+      SF Sg Gen => x + "si";
+      SF Sg Dat => x + "si";
+      SF Sg Acc => x + "ś";
+      SF Sg Instr => x + "sią";
+      SF Sg Loc => x + "si";
+      SF Sg Voc => x + "si";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable0425: Str -> SubstForm => Str; --%
+    oper mkNTable0425 lexem = 
+      let x = Predef.tk 2 lexem in
+    table { 
+      SF Sg Nom => x + "ła";
+      SF Sg Gen => x + "ły";
+      SF Sg Dat => x + "le";
+      SF Sg Acc => x + "łę";
+      SF Sg Instr => x + "łą";
+      SF Sg Loc => x + "le";
+      SF Sg Voc => x + "ło";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable0426: Str -> SubstForm => Str; --%
+    oper mkNTable0426 lexem = 
+      let x = Predef.tk 0 lexem in
+    table { 
+      SF Sg Nom => x + "";
+      SF Sg Gen => x + "a";
+      SF Sg Dat => x + "owi";
+      SF Sg Acc => x + "";
+      SF Sg Instr => x + "em";
+      SF Sg Loc => x + "ze";
+      SF Sg Voc => x + "ze";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable0427: Str -> SubstForm => Str; --%
+    oper mkNTable0427 lexem = 
+      let x = Predef.tk 0 lexem in
+    table { 
+      SF Sg Nom => x + "";
+      SF Sg Gen => x + "a";
+      SF Sg Dat => x + "owi";
+      SF Sg Acc => x + "a";
+      SF Sg Instr => x + "em";
+      SF Sg Loc => x + "ze";
+      SF Sg Voc => x + "ze";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable0430: Str -> SubstForm => Str; --%
+    oper mkNTable0430 lexem = 
+      let x = Predef.tk 2 lexem in
+    table { 
+      SF Sg Nom => x + "ka";
+      SF Sg Gen => x + "ki";
+      SF Sg Dat => x + "ce";
+      SF Sg Acc => x + "kę";
+      SF Sg Instr => x + "ką";
+      SF Sg Loc => x + "ce";
+      SF Sg Voc => x + "ko";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable0431: Str -> SubstForm => Str; --%
+    oper mkNTable0431 lexem = 
+      let x = Predef.tk 1 lexem in
+    table { 
+      SF Sg Nom => x + "a";
+      SF Sg Gen => x + "[sg,gen]";
+      SF Sg Dat => x + "[sg,dat]";
+      SF Sg Acc => x + "[sg,acc]";
+      SF Sg Instr => x + "[sg,inst]";
+      SF Sg Loc => x + "[sg,loc]";
+      SF Sg Voc => x + "[sg,voc]";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable0434: Str -> SubstForm => Str; --%
+    oper mkNTable0434 lexem = 
+      let x = Predef.tk 2 lexem in
+    table { 
+      SF Sg Nom => x + "ec";
+      SF Sg Gen => x + "ca";
+      SF Sg Dat => x + "cowi";
+      SF Sg Acc => x + "ec";
+      SF Sg Instr => x + "cem";
+      SF Sg Loc => x + "cu";
+      SF Sg Voc => x + "cu";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable0436: Str -> SubstForm => Str; --%
+    oper mkNTable0436 lexem = 
+      let x = Predef.tk 2 lexem in
+    table { 
+      SF Sg Nom => x + "er";
+      SF Sg Gen => x + "ra";
+      SF Sg Dat => x + "rowi";
+      SF Sg Acc => x + "ra";
+      SF Sg Instr => x + "rem";
+      SF Sg Loc => x + "rze";
+      SF Sg Voc => x + "rze";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable0437: Str -> SubstForm => Str; --%
+    oper mkNTable0437 lexem = 
+      let x = Predef.tk 2 lexem in
+    table { 
+      SF Sg Nom => x + "er";
+      SF Sg Gen => x + "ra";
+      SF Sg Dat => x + "rowi";
+      SF Sg Acc => x + "er";
+      SF Sg Instr => x + "rem";
+      SF Sg Loc => x + "rze";
+      SF Sg Voc => x + "rze";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable0440: Str -> SubstForm => Str; --%
+    oper mkNTable0440 lexem = 
+      let x = Predef.tk 2 lexem in
+    table { 
+      SF Sg Nom => x + "ór";
+      SF Sg Gen => x + "oru";
+      SF Sg Dat => x + "orowi";
+      SF Sg Acc => x + "ór";
+      SF Sg Instr => x + "orem";
+      SF Sg Loc => x + "orze";
+      SF Sg Voc => x + "orze";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable0442: Str -> SubstForm => Str; --%
+    oper mkNTable0442 lexem = 
+      let x = Predef.tk 1 lexem in
+    table { 
+      SF Sg Nom => x + "a";
+      SF Sg Gen => x + "y";
+      SF Sg Dat => x + "y";
+      SF Sg Acc => x + "ę";
+      SF Sg Instr => x + "ą";
+      SF Sg Loc => x + "y";
+      SF Sg Voc => x + "o";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable0443: Str -> SubstForm => Str; --%
+    oper mkNTable0443 lexem = 
+      let x = Predef.tk 2 lexem in
+    table { 
+      SF Sg Nom => x + "ła";
+      SF Sg Gen => x + "ły";
+      SF Sg Dat => x + "le";
+      SF Sg Acc => x + "łę";
+      SF Sg Instr => x + "łą";
+      SF Sg Loc => x + "le";
+      SF Sg Voc => x + "ło";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable0446: Str -> SubstForm => Str; --%
+    oper mkNTable0446 lexem = 
+      let x = Predef.tk 1 lexem in
+    table { 
+      SF Sg Nom => x + "ń";
+      SF Sg Gen => x + "ni";
+      SF Sg Dat => x + "ni";
+      SF Sg Acc => x + "ń";
+      SF Sg Instr => x + "nią";
+      SF Sg Loc => x + "ni";
+      SF Sg Voc => x + "ni";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable0447: Str -> SubstForm => Str; --%
+    oper mkNTable0447 lexem = 
+      let x = Predef.tk 1 lexem in
+    table { 
+      SF Sg Nom => x + "ś";
+      SF Sg Gen => x + "sia";
+      SF Sg Dat => x + "siowi";
+      SF Sg Acc => x + "sia";
+      SF Sg Instr => x + "siem";
+      SF Sg Loc => x + "siu";
+      SF Sg Voc => x + "siu";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable0449: Str -> SubstForm => Str; --%
+    oper mkNTable0449 lexem = 
+      let x = Predef.tk 3 lexem in
+    table { 
+      SF Sg Nom => x + "ień";
+      SF Sg Gen => x + "ienia";
+      SF Sg Dat => x + "niowi";
+      SF Sg Acc => x + "ienia";
+      SF Sg Instr => x + "ieniem";
+      SF Sg Loc => x + "ieniu";
+      SF Sg Voc => x + "ieniu";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable0450: Str -> SubstForm => Str; --%
+    oper mkNTable0450 lexem = 
+      let x = Predef.tk 1 lexem in
+    table { 
+      SF Sg Nom => x + "a";
+      SF Sg Gen => x + "y";
+      SF Sg Dat => x + "zie";
+      SF Sg Acc => x + "ę";
+      SF Sg Instr => x + "ą";
+      SF Sg Loc => x + "zie";
+      SF Sg Voc => x + "o";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable0451: Str -> SubstForm => Str; --%
+    oper mkNTable0451 lexem = 
+      let x = Predef.tk 0 lexem in
+    table { 
+      SF Sg Nom => x + "";
+      SF Sg Gen => x + "i";
+      SF Sg Dat => x + "i";
+      SF Sg Acc => x + "";
+      SF Sg Instr => x + "ą";
+      SF Sg Loc => x + "i";
+      SF Sg Voc => x + "i";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable0452: Str -> SubstForm => Str; --%
+    oper mkNTable0452 lexem = 
+      let x = Predef.tk 0 lexem in
+    table { 
+      SF Sg Nom => x + "";
+      SF Sg Gen => x + "a";
+      SF Sg Dat => x + "owi";
+      SF Sg Acc => x + "";
+      SF Sg Instr => x + "em";
+      SF Sg Loc => x + "u";
+      SF Sg Voc => x + "u";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable0453: Str -> SubstForm => Str; --%
+    oper mkNTable0453 lexem = 
+      let x = Predef.tk 1 lexem in
+    table { 
+      SF Sg Nom => x + "a";
+      SF Sg Gen => x + "i";
+      SF Sg Dat => x + "i";
+      SF Sg Acc => x + "ę";
+      SF Sg Instr => x + "ą";
+      SF Sg Loc => x + "i";
+      SF Sg Voc => x + "o";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable0454: Str -> SubstForm => Str; --%
+    oper mkNTable0454 lexem = 
+      let x = Predef.tk 0 lexem in
+    table { 
+      SF Sg Nom => x + "";
+      SF Sg Gen => x + "a";
+      SF Sg Dat => x + "owi";
+      SF Sg Acc => x + "";
+      SF Sg Instr => x + "em";
+      SF Sg Loc => x + "ie";
+      SF Sg Voc => x + "ie";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable0455: Str -> SubstForm => Str; --%
+    oper mkNTable0455 lexem = 
+      let x = Predef.tk 2 lexem in
+    table { 
+      SF Sg Nom => x + "ek";
+      SF Sg Gen => x + "ka";
+      SF Sg Dat => x + "kowi";
+      SF Sg Acc => x + "ek";
+      SF Sg Instr => x + "kiem";
+      SF Sg Loc => x + "ku";
+      SF Sg Voc => x + "ku";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable0457: Str -> SubstForm => Str; --%
+    oper mkNTable0457 lexem = 
+      let x = Predef.tk 1 lexem in
+    table { 
+      SF Sg Nom => x + "a";
+      SF Sg Gen => x + "y";
+      SF Sg Dat => x + "ze";
+      SF Sg Acc => x + "ę";
+      SF Sg Instr => x + "ą";
+      SF Sg Loc => x + "ze";
+      SF Sg Voc => x + "o";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable0462: Str -> SubstForm => Str; --%
+    oper mkNTable0462 lexem = 
+      let x = Predef.tk 8 lexem in
+    table { 
+      SF Sg Nom => x + "[sg,nom]";
+      SF Sg Gen => x + "a";
+      SF Sg Dat => x + "[sg,dat]";
+      SF Sg Acc => x + "[sg,acc]";
+      SF Sg Instr => x + "em";
+      SF Sg Loc => x + "u";
+      SF Sg Voc => x + "u";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable0464: Str -> SubstForm => Str; --%
+    oper mkNTable0464 lexem = 
+      let x = Predef.tk 2 lexem in
+    table { 
+      SF Sg Nom => x + "er";
+      SF Sg Gen => x + "ru";
+      SF Sg Dat => x + "rowi";
+      SF Sg Acc => x + "er";
+      SF Sg Instr => x + "rem";
+      SF Sg Loc => x + "rze";
+      SF Sg Voc => x + "rze";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable0471: Str -> SubstForm => Str; --%
+    oper mkNTable0471 lexem = 
+      let x = Predef.tk 2 lexem in
+    table { 
+      SF Sg Nom => x + "el";
+      SF Sg Gen => x + "la";
+      SF Sg Dat => x + "lowi";
+      SF Sg Acc => x + "la";
+      SF Sg Instr => x + "lem";
+      SF Sg Loc => x + "lu";
+      SF Sg Voc => x + "lu";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable0473: Str -> SubstForm => Str; --%
+    oper mkNTable0473 lexem = 
+      let x = Predef.tk 8 lexem in
+    table { 
+      SF Sg Nom => x + "[sg,nom]";
+      SF Sg Gen => x + "i";
+      SF Sg Dat => x + "[sg,dat]";
+      SF Sg Acc => x + "[sg,acc]";
+      SF Sg Instr => x + "[sg,inst]";
+      SF Sg Loc => x + "[sg,loc]";
+      SF Sg Voc => x + "[sg,voc]";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable0474: Str -> SubstForm => Str; --%
+    oper mkNTable0474 lexem = 
+      let x = Predef.tk 1 lexem in
+    table { 
+      SF Sg Nom => x + "a";
+      SF Sg Gen => x + "y";
+      SF Sg Dat => x + "ze";
+      SF Sg Acc => x + "ę";
+      SF Sg Instr => x + "ą";
+      SF Sg Loc => x + "ze";
+      SF Sg Voc => x + "o";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable0478: Str -> SubstForm => Str; --%
+    oper mkNTable0478 lexem = 
+      let x = Predef.tk 3 lexem in
+    table { 
+      SF Sg Nom => x + "sła";
+      SF Sg Gen => x + "sły";
+      SF Sg Dat => x + "śle";
+      SF Sg Acc => x + "słę";
+      SF Sg Instr => x + "słą";
+      SF Sg Loc => x + "śle";
+      SF Sg Voc => x + "sło";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable0479: Str -> SubstForm => Str; --%
+    oper mkNTable0479 lexem = 
+      let x = Predef.tk 1 lexem in
+    table { 
+      SF Sg Nom => x + "o";
+      SF Sg Gen => x + "a";
+      SF Sg Dat => x + "u";
+      SF Sg Acc => x + "o";
+      SF Sg Instr => x + "em";
+      SF Sg Loc => x + "ie";
+      SF Sg Voc => x + "o";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable0480: Str -> SubstForm => Str; --%
+    oper mkNTable0480 lexem = 
+      let x = Predef.tk 0 lexem in
+    table { 
+      SF Sg Nom => x + "";
+      SF Sg Gen => x + "ia";
+      SF Sg Dat => x + "iowi";
+      SF Sg Acc => x + "";
+      SF Sg Instr => x + "iem";
+      SF Sg Loc => x + "iu";
+      SF Sg Voc => x + "iu";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable0481: Str -> SubstForm => Str; --%
+    oper mkNTable0481 lexem = 
+      let x = Predef.tk 4 lexem in
+    table { 
+      SF Sg Nom => x + "sień";
+      SF Sg Gen => x + "śnia";
+      SF Sg Dat => x + "śniowi";
+      SF Sg Acc => x + "śnia";
+      SF Sg Instr => x + "śniem";
+      SF Sg Loc => x + "śniu";
+      SF Sg Voc => x + "śniu";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable0483: Str -> SubstForm => Str; --%
+    oper mkNTable0483 lexem = 
+      let x = Predef.tk 3 lexem in
+    table { 
+      SF Sg Nom => x + "iel";
+      SF Sg Gen => x + "la";
+      SF Sg Dat => x + "lowi";
+      SF Sg Acc => x + "la";
+      SF Sg Instr => x + "lem";
+      SF Sg Loc => x + "lu";
+      SF Sg Voc => x + "lu";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable0484: Str -> SubstForm => Str; --%
+    oper mkNTable0484 lexem = 
+      let x = Predef.tk 3 lexem in
+    table { 
+      SF Sg Nom => x + "iel";
+      SF Sg Gen => x + "la";
+      SF Sg Dat => x + "lowi";
+      SF Sg Acc => x + "la";
+      SF Sg Instr => x + "lem";
+      SF Sg Loc => x + "lu";
+      SF Sg Voc => x + "lu";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable0487: Str -> SubstForm => Str; --%
+    oper mkNTable0487 lexem = 
+      let x = Predef.tk 0 lexem in
+    table { 
+      SF Sg Nom => x + "";
+      SF Sg Gen => x + "a";
+      SF Sg Dat => x + "owi";
+      SF Sg Acc => x + "a";
+      SF Sg Instr => x + "em";
+      SF Sg Loc => x + "ie";
+      SF Sg Voc => x + "ie";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable0489: Str -> SubstForm => Str; --%
+    oper mkNTable0489 lexem = 
+      let x = Predef.tk 8 lexem in
+    table { 
+      SF Sg Nom => x + "[sg,nom]";
+      SF Sg Gen => x + "a";
+      SF Sg Dat => x + "[sg,dat]";
+      SF Sg Acc => x + "a";
+      SF Sg Instr => x + "[sg,inst]";
+      SF Sg Loc => x + "u";
+      SF Sg Voc => x + "u";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable0491: Str -> SubstForm => Str; --%
+    oper mkNTable0491 lexem = 
+      let x = Predef.tk 1 lexem in
+    table { 
+      SF Sg Nom => x + "e";
+      SF Sg Gen => x + "a";
+      SF Sg Dat => x + "u";
+      SF Sg Acc => x + "e";
+      SF Sg Instr => x + "em";
+      SF Sg Loc => x + "u";
+      SF Sg Voc => x + "e";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable0515: Str -> SubstForm => Str; --%
+    oper mkNTable0515 lexem = 
+      let x = Predef.tk 1 lexem in
+    table { 
+      SF Sg Nom => x + "o";
+      SF Sg Gen => x + "a";
+      SF Sg Dat => x + "u";
+      SF Sg Acc => x + "o";
+      SF Sg Instr => x + "iem";
+      SF Sg Loc => x + "u";
+      SF Sg Voc => x + "o";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable0522: Str -> SubstForm => Str; --%
+    oper mkNTable0522 lexem = 
+      let x = Predef.tk 0 lexem in
+    table { 
+      SF Sg Nom => x + "";
+      SF Sg Gen => x + "u";
+      SF Sg Dat => x + "owi";
+      SF Sg Acc => x + "";
+      SF Sg Instr => x + "em";
+      SF Sg Loc => x + "u";
+      SF Sg Voc => x + "u";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable0528: Str -> SubstForm => Str; --%
+    oper mkNTable0528 lexem = 
+      let x = lexem in
+    table { 
+      SF Sg Nom => x + "a";
+      SF Sg Gen => x + "";
+      SF Sg Dat => x + "";
+      SF Sg Acc => x + "ę";
+      SF Sg Instr => x + "ą";
+      SF Sg Loc => x + "";
+      SF Sg Voc => x + "o";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable0529: Str -> SubstForm => Str; --%
+    oper mkNTable0529 lexem = 
+      let x = Predef.tk 0 lexem in
+    table { 
+      SF Sg Nom => x + "";
+      SF Sg Gen => x + "ego";
+      SF Sg Dat => x + "emu";
+      SF Sg Acc => x + "";
+      SF Sg Instr => x + "m";
+      SF Sg Loc => x + "m";
+      SF Sg Voc => x + "";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable0535: Str -> SubstForm => Str; --%
+    oper mkNTable0535 lexem = 
+      let x = Predef.tk 2 lexem in
+    table { 
+      SF Sg Nom => x + "st";
+      SF Sg Gen => x + "sta";
+      SF Sg Dat => x + "stowi";
+      SF Sg Acc => x + "sta";
+      SF Sg Instr => x + "stem";
+      SF Sg Loc => x + "ście";
+      SF Sg Voc => x + "ście";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable0540: Str -> SubstForm => Str; --%
+    oper mkNTable0540 lexem = 
+      let x = Predef.tk 8 lexem in
+    table { 
+      SF Sg Nom => x + "[sg,nom]";
+      SF Sg Gen => x + "[sg,gen]";
+      SF Sg Dat => x + "[sg,dat]";
+      SF Sg Acc => x + "[sg,acc]";
+      SF Sg Instr => x + "[sg,inst]";
+      SF Sg Loc => x + "[sg,loc]";
+      SF Sg Voc => x + "[sg,voc]";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable0551: Str -> SubstForm => Str; --%
+    oper mkNTable0551 lexem = 
+      let x = Predef.tk 0 lexem in
+    table { 
+      SF Sg Nom => x + "";
+      SF Sg Gen => x + "a";
+      SF Sg Dat => x + "u";
+      SF Sg Acc => x + "a";
+      SF Sg Instr => x + "em";
+      SF Sg Loc => x + "ie";
+      SF Sg Voc => x + "ie";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable0556: Str -> SubstForm => Str; --%
+    oper mkNTable0556 lexem = 
+      let x = Predef.tk 1 lexem in
+    table { 
+      SF Sg Nom => x + "a";
+      SF Sg Gen => x + "y";
+      SF Sg Dat => x + "y";
+      SF Sg Acc => x + "ę";
+      SF Sg Instr => x + "ą";
+      SF Sg Loc => x + "y";
+      SF Sg Voc => x + "o";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable0560: Str -> SubstForm => Str; --%
+    oper mkNTable0560 lexem = 
+      let x = Predef.tk 3 lexem in
+    table { 
+      SF Sg Nom => x + "iec";
+      SF Sg Gen => x + "ca";
+      SF Sg Dat => x + "cowi";
+      SF Sg Acc => x + "ca";
+      SF Sg Instr => x + "cem";
+      SF Sg Loc => x + "cu";
+      SF Sg Voc => x + "cu";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable0569: Str -> SubstForm => Str; --%
+    oper mkNTable0569 lexem = 
+      let x = Predef.tk 2 lexem in
+    table { 
+      SF Sg Nom => x + "ła";
+      SF Sg Gen => x + "ły";
+      SF Sg Dat => x + "le";
+      SF Sg Acc => x + "łę";
+      SF Sg Instr => x + "łą";
+      SF Sg Loc => x + "le";
+      SF Sg Voc => x + "ło";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable0586: Str -> SubstForm => Str; --%
+    oper mkNTable0586 lexem = 
+      let x = Predef.tk 8 lexem in
+    table { 
+      SF Sg Nom => x + "[sg,nom]";
+      SF Sg Gen => x + "[sg,gen]";
+      SF Sg Dat => x + "[sg,dat]";
+      SF Sg Acc => x + "[sg,acc]";
+      SF Sg Instr => x + "[sg,inst]";
+      SF Sg Loc => x + "[sg,loc]";
+      SF Sg Voc => x + "[sg,voc]";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable0595: Str -> SubstForm => Str; --%
+    oper mkNTable0595 lexem = 
+      let x = Predef.tk 0 lexem in
+    table { 
+      SF Sg Nom => x + "";
+      SF Sg Gen => x + "a";
+      SF Sg Dat => x + "owi";
+      SF Sg Acc => x + "";
+      SF Sg Instr => x + "em";
+      SF Sg Loc => x + "u";
+      SF Sg Voc => x + "u";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable0596: Str -> SubstForm => Str; --%
+    oper mkNTable0596 lexem = 
+      let x = Predef.tk 2 lexem in
+    table { 
+      SF Sg Nom => x + "to";
+      SF Sg Gen => x + "ta";
+      SF Sg Dat => x + "tu";
+      SF Sg Acc => x + "to";
+      SF Sg Instr => x + "tem";
+      SF Sg Loc => x + "cie";
+      SF Sg Voc => x + "to";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable0598: Str -> SubstForm => Str; --%
+    oper mkNTable0598 lexem = 
+      let x = Predef.tk 2 lexem in
+    table { 
+      SF Sg Nom => x + "ób";
+      SF Sg Gen => x + "oba";
+      SF Sg Dat => x + "obowi";
+      SF Sg Acc => x + "oba";
+      SF Sg Instr => x + "obem";
+      SF Sg Loc => x + "obie";
+      SF Sg Voc => x + "obie";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable0613: Str -> SubstForm => Str; --%
+    oper mkNTable0613 lexem = 
+      let x = Predef.tk 3 lexem in
+    table { 
+      SF Sg Nom => x + "cha";
+      SF Sg Gen => x + "chy";
+      SF Sg Dat => x + "sze";
+      SF Sg Acc => x + "chę";
+      SF Sg Instr => x + "chą";
+      SF Sg Loc => x + "sze";
+      SF Sg Voc => x + "cho";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable0616: Str -> SubstForm => Str; --%
+    oper mkNTable0616 lexem = 
+      let x = Predef.tk 1 lexem in
+    table { 
+      SF Sg Nom => x + "y";
+      SF Sg Gen => x + "ego";
+      SF Sg Dat => x + "emu";
+      SF Sg Acc => x + "ego";
+      SF Sg Instr => x + "ym";
+      SF Sg Loc => x + "ym";
+      SF Sg Voc => x + "y";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable0617: Str -> SubstForm => Str; --%
+    oper mkNTable0617 lexem = 
+      let x = Predef.tk 1 lexem in
+    table { 
+      SF Sg Nom => x + "ś";
+      SF Sg Gen => x + "sia";
+      SF Sg Dat => x + "siowi";
+      SF Sg Acc => x + "sia";
+      SF Sg Instr => x + "siem";
+      SF Sg Loc => x + "siu";
+      SF Sg Voc => x + "siu";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable0623: Str -> SubstForm => Str; --%
+    oper mkNTable0623 lexem = 
+      let x = Predef.tk 1 lexem in
+    table { 
+      SF Sg Nom => x + "ł";
+      SF Sg Gen => x + "ła";
+      SF Sg Dat => x + "łowi";
+      SF Sg Acc => x + "ła";
+      SF Sg Instr => x + "łem";
+      SF Sg Loc => x + "le";
+      SF Sg Voc => x + "le";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable0627: Str -> SubstForm => Str; --%
+    oper mkNTable0627 lexem = 
+      let x = Predef.tk 0 lexem in
+    table { 
+      SF Sg Nom => x + "";
+      SF Sg Gen => x + "a";
+      SF Sg Dat => x + "owi";
+      SF Sg Acc => x + "a";
+      SF Sg Instr => x + "em";
+      SF Sg Loc => x + "ie";
+      SF Sg Voc => x + "ie";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable0637: Str -> SubstForm => Str; --%
+    oper mkNTable0637 lexem = 
+      let x = Predef.tk 8 lexem in
+    table { 
+      SF Sg Nom => x + "[sg,nom]";
+      SF Sg Gen => x + "[sg,gen]";
+      SF Sg Dat => x + "[sg,dat]";
+      SF Sg Acc => x + "[sg,acc]";
+      SF Sg Instr => x + "[sg,inst]";
+      SF Sg Loc => x + "[sg,loc]";
+      SF Sg Voc => x + "[sg,voc]";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable0639: Str -> SubstForm => Str; --%
+    oper mkNTable0639 lexem = 
+      let x = Predef.tk 4 lexem in
+    table { 
+      SF Sg Nom => x + "ziec";
+      SF Sg Gen => x + "źca";
+      SF Sg Dat => x + "źcowi";
+      SF Sg Acc => x + "źca";
+      SF Sg Instr => x + "źcem";
+      SF Sg Loc => x + "źcu";
+      SF Sg Voc => x + "źcze";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable0641: Str -> SubstForm => Str; --%
+    oper mkNTable0641 lexem = 
+      let x = Predef.tk 8 lexem in
+    table { 
+      SF Sg Nom => x + "[sg,nom]";
+      SF Sg Gen => x + "[sg,gen]";
+      SF Sg Dat => x + "[sg,dat]";
+      SF Sg Acc => x + "[sg,acc]";
+      SF Sg Instr => x + "[sg,inst]";
+      SF Sg Loc => x + "[sg,loc]";
+      SF Sg Voc => x + "[sg,voc]";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable0643: Str -> SubstForm => Str; --%
+    oper mkNTable0643 lexem = 
+      let x = Predef.tk 1 lexem in
+    table { 
+      SF Sg Nom => x + "a";
+      SF Sg Gen => x + "y";
+      SF Sg Dat => x + "zie";
+      SF Sg Acc => x + "ę";
+      SF Sg Instr => x + "ą";
+      SF Sg Loc => x + "zie";
+      SF Sg Voc => x + "o";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable0647: Str -> SubstForm => Str; --%
+    oper mkNTable0647 lexem = 
+      let x = Predef.tk 2 lexem in
+    table { 
+      SF Sg Nom => x + "ga";
+      SF Sg Gen => x + "gi";
+      SF Sg Dat => x + "dze";
+      SF Sg Acc => x + "gę";
+      SF Sg Instr => x + "gą";
+      SF Sg Loc => x + "dze";
+      SF Sg Voc => x + "go";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable0656: Str -> SubstForm => Str; --%
+    oper mkNTable0656 lexem = 
+      let x = lexem in
+    table { 
+      SF Sg Nom => x + "";
+      SF Sg Gen => x + "";
+      SF Sg Dat => x + "";
+      SF Sg Acc => x + "";
+      SF Sg Instr => x + "";
+      SF Sg Loc => x + "";
+      SF Sg Voc => x + "";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable0670: Str -> SubstForm => Str; --%
+    oper mkNTable0670 lexem = 
+      let x = Predef.tk 8 lexem in
+    table { 
+      SF Sg Nom => x + "[sg,nom]";
+      SF Sg Gen => x + "a";
+      SF Sg Dat => x + "[sg,dat]";
+      SF Sg Acc => x + "[sg,acc]";
+      SF Sg Instr => x + "em";
+      SF Sg Loc => x + "ie";
+      SF Sg Voc => x + "ie";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable0672: Str -> SubstForm => Str; --%
+    oper mkNTable0672 lexem = 
+      let x = Predef.tk 8 lexem in
+    table { 
+      SF Sg Nom => x + "[sg,nom]";
+      SF Sg Gen => x + "a";
+      SF Sg Dat => x + "[sg,dat]";
+      SF Sg Acc => x + "[sg,acc]";
+      SF Sg Instr => x + "[sg,inst]";
+      SF Sg Loc => x + "[sg,loc]";
+      SF Sg Voc => x + "[sg,voc]";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable0673: Str -> SubstForm => Str; --%
+    oper mkNTable0673 lexem = 
+      let x = Predef.tk 1 lexem in
+    table { 
+      SF Sg Nom => x + "a";
+      SF Sg Gen => x + "[sg,gen]";
+      SF Sg Dat => x + "[sg,dat]";
+      SF Sg Acc => x + "ą";
+      SF Sg Instr => x + "ą";
+      SF Sg Loc => x + "[sg,loc]";
+      SF Sg Voc => x + "a";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable0686: Str -> SubstForm => Str; --%
+    oper mkNTable0686 lexem = 
+      let x = lexem in
+    table { 
+      SF Sg Nom => x + "[sg,nom]";
+      SF Sg Gen => x + "";
+      SF Sg Dat => x + "";
+      SF Sg Acc => x + "[sg,acc]";
+      SF Sg Instr => x + "[sg,inst]";
+      SF Sg Loc => x + "";
+      SF Sg Voc => x + "[sg,voc]";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable0687: Str -> SubstForm => Str; --%
+    oper mkNTable0687 lexem = 
+      let x = lexem in
+    table { 
+      SF Sg Nom => x + "";
+      SF Sg Gen => x + "";
+      SF Sg Dat => x + "";
+      SF Sg Acc => x + "";
+      SF Sg Instr => x + "";
+      SF Sg Loc => x + "";
+      SF Sg Voc => x + "";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable0705: Str -> SubstForm => Str; --%
+    oper mkNTable0705 lexem = 
+      let x = Predef.tk 2 lexem in
+    table { 
+      SF Sg Nom => x + "ąb";
+      SF Sg Gen => x + "ęba";
+      SF Sg Dat => x + "ębowi";
+      SF Sg Acc => x + "ęba";
+      SF Sg Instr => x + "ębem";
+      SF Sg Loc => x + "ębie";
+      SF Sg Voc => x + "ębie";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable0708: Str -> SubstForm => Str; --%
+    oper mkNTable0708 lexem = 
+      let x = lexem in
+    table { 
+      SF Sg Nom => x + "a";
+      SF Sg Gen => x + "";
+      SF Sg Dat => x + "";
+      SF Sg Acc => x + "ę";
+      SF Sg Instr => x + "ą";
+      SF Sg Loc => x + "";
+      SF Sg Voc => x + "u";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable0709: Str -> SubstForm => Str; --%
+    oper mkNTable0709 lexem = 
+      let x = Predef.tk 8 lexem in
+    table { 
+      SF Sg Nom => x + "[sg,nom]";
+      SF Sg Gen => x + "[sg,gen]";
+      SF Sg Dat => x + "[sg,dat]";
+      SF Sg Acc => x + "[sg,acc]";
+      SF Sg Instr => x + "[sg,inst]";
+      SF Sg Loc => x + "[sg,loc]";
+      SF Sg Voc => x + "[sg,voc]";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable0726: Str -> SubstForm => Str; --%
+    oper mkNTable0726 lexem = 
+      let x = Predef.tk 1 lexem in
+    table { 
+      SF Sg Nom => x + "e";
+      SF Sg Gen => x + "[sg,gen]";
+      SF Sg Dat => x + "[sg,dat]";
+      SF Sg Acc => x + "e";
+      SF Sg Instr => x + "[sg,inst]";
+      SF Sg Loc => x + "[sg,loc]";
+      SF Sg Voc => x + "e";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable0735: Str -> SubstForm => Str; --%
+    oper mkNTable0735 lexem = 
+      let x = Predef.tk 8 lexem in
+    table { 
+      SF Sg Nom => x + "[sg,nom]";
+      SF Sg Gen => x + "[sg,gen]";
+      SF Sg Dat => x + "[sg,dat]";
+      SF Sg Acc => x + "[sg,acc]";
+      SF Sg Instr => x + "[sg,inst]";
+      SF Sg Loc => x + "[sg,loc]";
+      SF Sg Voc => x + "[sg,voc]";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable0737: Str -> SubstForm => Str; --%
+    oper mkNTable0737 lexem = 
+      let x = Predef.tk 1 lexem in
+    table { 
+      SF Sg Nom => x + "a";
+      SF Sg Gen => x + "y";
+      SF Sg Dat => x + "y";
+      SF Sg Acc => x + "ę";
+      SF Sg Instr => x + "ą";
+      SF Sg Loc => x + "y";
+      SF Sg Voc => x + "o";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable0739: Str -> SubstForm => Str; --%
+    oper mkNTable0739 lexem = 
+      let x = Predef.tk 4 lexem in
+    table { 
+      SF Sg Nom => x + "ziec";
+      SF Sg Gen => x + "źca";
+      SF Sg Dat => x + "źcowi";
+      SF Sg Acc => x + "ziec";
+      SF Sg Instr => x + "źcem";
+      SF Sg Loc => x + "źcu";
+      SF Sg Voc => x + "źcu";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable0744: Str -> SubstForm => Str; --%
+    oper mkNTable0744 lexem = 
+      let x = Predef.tk 8 lexem in
+    table { 
+      SF Sg Nom => x + "[sg,nom]";
+      SF Sg Gen => x + "y";
+      SF Sg Dat => x + "[sg,dat]";
+      SF Sg Acc => x + "[sg,acc]";
+      SF Sg Instr => x + "[sg,inst]";
+      SF Sg Loc => x + "[sg,loc]";
+      SF Sg Voc => x + "[sg,voc]";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable0746: Str -> SubstForm => Str; --%
+    oper mkNTable0746 lexem = 
+      let x = Predef.tk 8 lexem in
+    table { 
+      SF Sg Nom => x + "[sg,nom]";
+      SF Sg Gen => x + "[sg,gen]";
+      SF Sg Dat => x + "[sg,dat]";
+      SF Sg Acc => x + "[sg,acc]";
+      SF Sg Instr => x + "[sg,inst]";
+      SF Sg Loc => x + "[sg,loc]";
+      SF Sg Voc => x + "[sg,voc]";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable0758: Str -> SubstForm => Str; --%
+    oper mkNTable0758 lexem = 
+      let x = Predef.tk 0 lexem in
+    table { 
+      SF Sg Nom => x + "";
+      SF Sg Gen => x + "ego";
+      SF Sg Dat => x + "emu";
+      SF Sg Acc => x + "ego";
+      SF Sg Instr => x + "m";
+      SF Sg Loc => x + "m";
+      SF Sg Voc => x + "";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable0759: Str -> SubstForm => Str; --%
+    oper mkNTable0759 lexem = 
+      let x = Predef.tk 1 lexem in
+    table { 
+      SF Sg Nom => x + "y";
+      SF Sg Gen => x + "ego";
+      SF Sg Dat => x + "emu";
+      SF Sg Acc => x + "y";
+      SF Sg Instr => x + "ym";
+      SF Sg Loc => x + "ym";
+      SF Sg Voc => x + "y";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable0761: Str -> SubstForm => Str; --%
+    oper mkNTable0761 lexem = 
+      let x = Predef.tk 2 lexem in
+    table { 
+      SF Sg Nom => x + "ka";
+      SF Sg Gen => x + "ki";
+      SF Sg Dat => x + "ce";
+      SF Sg Acc => x + "kę";
+      SF Sg Instr => x + "ką";
+      SF Sg Loc => x + "ce";
+      SF Sg Voc => x + "ko";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable0765: Str -> SubstForm => Str; --%
+    oper mkNTable0765 lexem = 
+      let x = Predef.tk 8 lexem in
+    table { 
+      SF Sg Nom => x + "[sg,nom]";
+      SF Sg Gen => x + "[sg,gen]";
+      SF Sg Dat => x + "[sg,dat]";
+      SF Sg Acc => x + "[sg,acc]";
+      SF Sg Instr => x + "[sg,inst]";
+      SF Sg Loc => x + "[sg,loc]";
+      SF Sg Voc => x + "[sg,voc]";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable0766: Str -> SubstForm => Str; --%
+    oper mkNTable0766 lexem = 
+      let x = Predef.tk 8 lexem in
+    table { 
+      SF Sg Nom => x + "[sg,nom]";
+      SF Sg Gen => x + "a";
+      SF Sg Dat => x + "u";
+      SF Sg Acc => x + "[sg,acc]";
+      SF Sg Instr => x + "em";
+      SF Sg Loc => x + "u";
+      SF Sg Voc => x + "[sg,voc]";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable0772: Str -> SubstForm => Str; --%
+    oper mkNTable0772 lexem = 
+      let x = Predef.tk 2 lexem in
+    table { 
+      SF Sg Nom => x + "en";
+      SF Sg Gen => x + "nego";
+      SF Sg Dat => x + "nemu";
+      SF Sg Acc => x + "nego";
+      SF Sg Instr => x + "nym";
+      SF Sg Loc => x + "nym";
+      SF Sg Voc => x + "en";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable0774: Str -> SubstForm => Str; --%
+    oper mkNTable0774 lexem = 
+      let x = Predef.tk 3 lexem in
+    table { 
+      SF Sg Nom => x + "ier";
+      SF Sg Gen => x + "ra";
+      SF Sg Dat => x + "rowi";
+      SF Sg Acc => x + "ra";
+      SF Sg Instr => x + "rem";
+      SF Sg Loc => x + "rze";
+      SF Sg Voc => x + "rze";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable0786: Str -> SubstForm => Str; --%
+    oper mkNTable0786 lexem = 
+      let x = Predef.tk 3 lexem in
+    table { 
+      SF Sg Nom => x + "iep";
+      SF Sg Gen => x + "pa";
+      SF Sg Dat => x + "powi";
+      SF Sg Acc => x + "pa";
+      SF Sg Instr => x + "pem";
+      SF Sg Loc => x + "pie";
+      SF Sg Voc => x + "pie";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable0788: Str -> SubstForm => Str; --%
+    oper mkNTable0788 lexem = 
+      let x = Predef.tk 2 lexem in
+    table { 
+      SF Sg Nom => x + "ek";
+      SF Sg Gen => x + "[sg,gen]";
+      SF Sg Dat => x + "[sg,dat]";
+      SF Sg Acc => x + "[sg,acc]";
+      SF Sg Instr => x + "[sg,inst]";
+      SF Sg Loc => x + "[sg,loc]";
+      SF Sg Voc => x + "[sg,voc]";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable0810: Str -> SubstForm => Str; --%
+    oper mkNTable0810 lexem = 
+      let x = Predef.tk 0 lexem in
+    table { 
+      SF Sg Nom => x + "";
+      SF Sg Gen => x + "i";
+      SF Sg Dat => x + "i";
+      SF Sg Acc => x + "";
+      SF Sg Instr => x + "ą";
+      SF Sg Loc => x + "i";
+      SF Sg Voc => x + "i";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable0820: Str -> SubstForm => Str; --%
+    oper mkNTable0820 lexem = 
+      let x = Predef.tk 1 lexem in
+    table { 
+      SF Sg Nom => x + "o";
+      SF Sg Gen => x + "a";
+      SF Sg Dat => x + "u";
+      SF Sg Acc => x + "a";
+      SF Sg Instr => x + "iem";
+      SF Sg Loc => x + "u";
+      SF Sg Voc => x + "o";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable0837: Str -> SubstForm => Str; --%
+    oper mkNTable0837 lexem = 
+      let x = Predef.tk 3 lexem in
+    table { 
+      SF Sg Nom => x + "cie";
+      SF Sg Gen => x + "cia";
+      SF Sg Dat => x + "ciu";
+      SF Sg Acc => x + "cie";
+      SF Sg Instr => x + "ciem";
+      SF Sg Loc => x + "ciu";
+      SF Sg Voc => x + "cie";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable0845: Str -> SubstForm => Str; --%
+    oper mkNTable0845 lexem = 
+      let x = Predef.tk 8 lexem in
+    table { 
+      SF Sg Nom => x + "[sg,nom]";
+      SF Sg Gen => x + "[sg,gen]";
+      SF Sg Dat => x + "[sg,dat]";
+      SF Sg Acc => x + "[sg,acc]";
+      SF Sg Instr => x + "[sg,inst]";
+      SF Sg Loc => x + "[sg,loc]";
+      SF Sg Voc => x + "[sg,voc]";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable0846: Str -> SubstForm => Str; --%
+    oper mkNTable0846 lexem = 
+      let x = Predef.tk 3 lexem in
+    table { 
+      SF Sg Nom => x + "cha";
+      SF Sg Gen => x + "chy";
+      SF Sg Dat => x + "sze";
+      SF Sg Acc => x + "chę";
+      SF Sg Instr => x + "chą";
+      SF Sg Loc => x + "sze";
+      SF Sg Voc => x + "cho";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable0850: Str -> SubstForm => Str; --%
+    oper mkNTable0850 lexem = 
+      let x = Predef.tk 1 lexem in
+    table { 
+      SF Sg Nom => x + "o";
+      SF Sg Gen => x + "a";
+      SF Sg Dat => x + "u";
+      SF Sg Acc => x + "o";
+      SF Sg Instr => x + "em";
+      SF Sg Loc => x + "ze";
+      SF Sg Voc => x + "o";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable0852: Str -> SubstForm => Str; --%
+    oper mkNTable0852 lexem = 
+      let x = Predef.tk 1 lexem in
+    table { 
+      SF Sg Nom => x + "y";
+      SF Sg Gen => x + "ego";
+      SF Sg Dat => x + "emu";
+      SF Sg Acc => x + "ego";
+      SF Sg Instr => x + "ym";
+      SF Sg Loc => x + "ym";
+      SF Sg Voc => x + "y";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable0856: Str -> SubstForm => Str; --%
+    oper mkNTable0856 lexem = 
+      let x = Predef.tk 1 lexem in
+    table { 
+      SF Sg Nom => x + "ć";
+      SF Sg Gen => x + "ci";
+      SF Sg Dat => x + "ci";
+      SF Sg Acc => x + "ć";
+      SF Sg Instr => x + "cią";
+      SF Sg Loc => x + "ci";
+      SF Sg Voc => x + "ci";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable0862: Str -> SubstForm => Str; --%
+    oper mkNTable0862 lexem = 
+      let x = Predef.tk 1 lexem in
+    table { 
+      SF Sg Nom => x + "a";
+      SF Sg Gen => x + "y";
+      SF Sg Dat => x + "y";
+      SF Sg Acc => x + "ę";
+      SF Sg Instr => x + "ą";
+      SF Sg Loc => x + "y";
+      SF Sg Voc => x + "o";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable0864: Str -> SubstForm => Str; --%
+    oper mkNTable0864 lexem = 
+      let x = Predef.tk 1 lexem in
+    table { 
+      SF Sg Nom => x + "ć";
+      SF Sg Gen => x + "ci";
+      SF Sg Dat => x + "ci";
+      SF Sg Acc => x + "ci";
+      SF Sg Instr => x + "cią";
+      SF Sg Loc => x + "ci";
+      SF Sg Voc => x + "ci";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable0865: Str -> SubstForm => Str; --%
+    oper mkNTable0865 lexem = 
+      let x = Predef.tk 8 lexem in
+    table { 
+      SF Sg Nom => x + "[sg,nom]";
+      SF Sg Gen => x + "y";
+      SF Sg Dat => x + "y";
+      SF Sg Acc => x + "[sg,acc]";
+      SF Sg Instr => x + "ą";
+      SF Sg Loc => x + "y";
+      SF Sg Voc => x + "y";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable0866: Str -> SubstForm => Str; --%
+    oper mkNTable0866 lexem = 
+      let x = Predef.tk 2 lexem in
+    table { 
+      SF Sg Nom => x + "ód";
+      SF Sg Gen => x + "oda";
+      SF Sg Dat => x + "odowi";
+      SF Sg Acc => x + "oda";
+      SF Sg Instr => x + "odem";
+      SF Sg Loc => x + "odzie";
+      SF Sg Voc => x + "odzie";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable0867: Str -> SubstForm => Str; --%
+    oper mkNTable0867 lexem = 
+      let x = Predef.tk 8 lexem in
+    table { 
+      SF Sg Nom => x + "[sg,nom]";
+      SF Sg Gen => x + "[sg,gen]";
+      SF Sg Dat => x + "[sg,dat]";
+      SF Sg Acc => x + "[sg,acc]";
+      SF Sg Instr => x + "[sg,inst]";
+      SF Sg Loc => x + "ie";
+      SF Sg Voc => x + "ie";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable0880: Str -> SubstForm => Str; --%
+    oper mkNTable0880 lexem = 
+      let x = Predef.tk 1 lexem in
+    table { 
+      SF Sg Nom => x + "o";
+      SF Sg Gen => x + "a";
+      SF Sg Dat => x + "u";
+      SF Sg Acc => x + "a";
+      SF Sg Instr => x + "iem";
+      SF Sg Loc => x + "u";
+      SF Sg Voc => x + "o";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable0883: Str -> SubstForm => Str; --%
+    oper mkNTable0883 lexem = 
+      let x = lexem in
+    table { 
+      SF Sg Nom => x + "a";
+      SF Sg Gen => x + "";
+      SF Sg Dat => x + "";
+      SF Sg Acc => x + "ę";
+      SF Sg Instr => x + "ą";
+      SF Sg Loc => x + "";
+      SF Sg Voc => x + "u";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable0884: Str -> SubstForm => Str; --%
+    oper mkNTable0884 lexem = 
+      let x = Predef.tk 8 lexem in
+    table { 
+      SF Sg Nom => x + "[sg,nom]";
+      SF Sg Gen => x + "[sg,gen]";
+      SF Sg Dat => x + "u";
+      SF Sg Acc => x + "[sg,acc]";
+      SF Sg Instr => x + "em";
+      SF Sg Loc => x + "ie";
+      SF Sg Voc => x + "[sg,voc]";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable0885: Str -> SubstForm => Str; --%
+    oper mkNTable0885 lexem = 
+      let x = Predef.tk 2 lexem in
+    table { 
+      SF Sg Nom => x + "um";
+      SF Sg Gen => x + "um";
+      SF Sg Dat => x + "um";
+      SF Sg Acc => x + "um";
+      SF Sg Instr => x + "um";
+      SF Sg Loc => x + "um";
+      SF Sg Voc => x + "um";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable0892: Str -> SubstForm => Str; --%
+    oper mkNTable0892 lexem = 
+      let x = Predef.tk 0 lexem in
+    table { 
+      SF Sg Nom => x + "";
+      SF Sg Gen => x + "[sg,gen]";
+      SF Sg Dat => x + "[sg,dat]";
+      SF Sg Acc => x + "";
+      SF Sg Instr => x + "[sg,inst]";
+      SF Sg Loc => x + "zie";
+      SF Sg Voc => x + "zie";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable0893: Str -> SubstForm => Str; --%
+    oper mkNTable0893 lexem = 
+      let x = Predef.tk 0 lexem in
+    table { 
+      SF Sg Nom => x + "";
+      SF Sg Gen => x + "[sg,gen]";
+      SF Sg Dat => x + "[sg,dat]";
+      SF Sg Acc => x + "";
+      SF Sg Instr => x + "[sg,inst]";
+      SF Sg Loc => x + "ie";
+      SF Sg Voc => x + "ie";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable0901: Str -> SubstForm => Str; --%
+    oper mkNTable0901 lexem = 
+      let x = Predef.tk 1 lexem in
+    table { 
+      SF Sg Nom => x + "a";
+      SF Sg Gen => x + "y";
+      SF Sg Dat => x + "[sg,dat]";
+      SF Sg Acc => x + "[sg,acc]";
+      SF Sg Instr => x + "[sg,inst]";
+      SF Sg Loc => x + "[sg,loc]";
+      SF Sg Voc => x + "[sg,voc]";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable0908: Str -> SubstForm => Str; --%
+    oper mkNTable0908 lexem = 
+      let x = Predef.tk 4 lexem in
+    table { 
+      SF Sg Nom => x + "sioł";
+      SF Sg Gen => x + "sła";
+      SF Sg Dat => x + "słowi";
+      SF Sg Acc => x + "sła";
+      SF Sg Instr => x + "słem";
+      SF Sg Loc => x + "śle";
+      SF Sg Voc => x + "śle";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable0914: Str -> SubstForm => Str; --%
+    oper mkNTable0914 lexem = 
+      let x = Predef.tk 2 lexem in
+    table { 
+      SF Sg Nom => x + "ek";
+      SF Sg Gen => x + "ku";
+      SF Sg Dat => x + "kowi";
+      SF Sg Acc => x + "ek";
+      SF Sg Instr => x + "kiem";
+      SF Sg Loc => x + "ku";
+      SF Sg Voc => x + "ku";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable0917: Str -> SubstForm => Str; --%
+    oper mkNTable0917 lexem = 
+      let x = Predef.tk 2 lexem in
+    table { 
+      SF Sg Nom => x + "ec";
+      SF Sg Gen => x + "ca";
+      SF Sg Dat => x + "cowi";
+      SF Sg Acc => x + "ca";
+      SF Sg Instr => x + "cem";
+      SF Sg Loc => x + "cu";
+      SF Sg Voc => x + "cze";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable0920: Str -> SubstForm => Str; --%
+    oper mkNTable0920 lexem = 
+      let x = Predef.tk 8 lexem in
+    table { 
+      SF Sg Nom => x + "[sg,nom]";
+      SF Sg Gen => x + "[sg,gen]";
+      SF Sg Dat => x + "[sg,dat]";
+      SF Sg Acc => x + "[sg,acc]";
+      SF Sg Instr => x + "[sg,inst]";
+      SF Sg Loc => x + "[sg,loc]";
+      SF Sg Voc => x + "[sg,voc]";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable0924: Str -> SubstForm => Str; --%
+    oper mkNTable0924 lexem = 
+      let x = Predef.tk 1 lexem in
+    table { 
+      SF Sg Nom => x + "a";
+      SF Sg Gen => x + "y";
+      SF Sg Dat => x + "zie";
+      SF Sg Acc => x + "ę";
+      SF Sg Instr => x + "ą";
+      SF Sg Loc => x + "zie";
+      SF Sg Voc => x + "o";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable0928: Str -> SubstForm => Str; --%
+    oper mkNTable0928 lexem = 
+      let x = Predef.tk 1 lexem in
+    table { 
+      SF Sg Nom => x + "ź";
+      SF Sg Gen => x + "zia";
+      SF Sg Dat => x + "ziowi";
+      SF Sg Acc => x + "zia";
+      SF Sg Instr => x + "ziem";
+      SF Sg Loc => x + "ziu";
+      SF Sg Voc => x + "ziu";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable0930: Str -> SubstForm => Str; --%
+    oper mkNTable0930 lexem = 
+      let x = Predef.tk 8 lexem in
+    table { 
+      SF Sg Nom => x + "[sg,nom]";
+      SF Sg Gen => x + "[sg,gen]";
+      SF Sg Dat => x + "[sg,dat]";
+      SF Sg Acc => x + "[sg,acc]";
+      SF Sg Instr => x + "[sg,inst]";
+      SF Sg Loc => x + "[sg,loc]";
+      SF Sg Voc => x + "[sg,voc]";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable0933: Str -> SubstForm => Str; --%
+    oper mkNTable0933 lexem = 
+      let x = Predef.tk 3 lexem in
+    table { 
+      SF Sg Nom => x + "ies";
+      SF Sg Gen => x + "sa";
+      SF Sg Dat => x + "su";
+      SF Sg Acc => x + "sa";
+      SF Sg Instr => x + "sem";
+      SF Sg Loc => x + "sie";
+      SF Sg Voc => x + "sie";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable0937: Str -> SubstForm => Str; --%
+    oper mkNTable0937 lexem = 
+      let x = Predef.tk 4 lexem in
+    table { 
+      SF Sg Nom => x + "niec";
+      SF Sg Gen => x + "ńca";
+      SF Sg Dat => x + "ńcowi";
+      SF Sg Acc => x + "ńca";
+      SF Sg Instr => x + "ńcem";
+      SF Sg Loc => x + "ńcu";
+      SF Sg Voc => x + "ńcu";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable0941: Str -> SubstForm => Str; --%
+    oper mkNTable0941 lexem = 
+      let x = Predef.tk 2 lexem in
+    table { 
+      SF Sg Nom => x + "ór";
+      SF Sg Gen => x + "ora";
+      SF Sg Dat => x + "orowi";
+      SF Sg Acc => x + "ora";
+      SF Sg Instr => x + "orem";
+      SF Sg Loc => x + "orze";
+      SF Sg Voc => x + "orze";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable0949: Str -> SubstForm => Str; --%
+    oper mkNTable0949 lexem = 
+      let x = Predef.tk 4 lexem in
+    table { 
+      SF Sg Nom => x + "zień";
+      SF Sg Gen => x + "nia";
+      SF Sg Dat => x + "niowi";
+      SF Sg Acc => x + "zień";
+      SF Sg Instr => x + "niem";
+      SF Sg Loc => x + "niu";
+      SF Sg Voc => x + "niu";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable0952: Str -> SubstForm => Str; --%
+    oper mkNTable0952 lexem = 
+      let x = Predef.tk 1 lexem in
+    table { 
+      SF Sg Nom => x + "t";
+      SF Sg Gen => x + "ta";
+      SF Sg Dat => x + "tu";
+      SF Sg Acc => x + "ta";
+      SF Sg Instr => x + "tem";
+      SF Sg Loc => x + "cie";
+      SF Sg Voc => x + "cie";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable0954: Str -> SubstForm => Str; --%
+    oper mkNTable0954 lexem = 
+      let x = Predef.tk 2 lexem in
+    table { 
+      SF Sg Nom => x + "ów";
+      SF Sg Gen => x + "owa";
+      SF Sg Dat => x + "owowi";
+      SF Sg Acc => x + "owa";
+      SF Sg Instr => x + "owem";
+      SF Sg Loc => x + "owie";
+      SF Sg Voc => x + "owie";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable0969: Str -> SubstForm => Str; --%
+    oper mkNTable0969 lexem = 
+      let x = Predef.tk 8 lexem in
+    table { 
+      SF Sg Nom => x + "[sg,nom]";
+      SF Sg Gen => x + "[sg,gen]";
+      SF Sg Dat => x + "u";
+      SF Sg Acc => x + "[sg,acc]";
+      SF Sg Instr => x + "em";
+      SF Sg Loc => x + "u";
+      SF Sg Voc => x + "[sg,voc]";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable0973: Str -> SubstForm => Str; --%
+    oper mkNTable0973 lexem = 
+      let x = Predef.tk 2 lexem in
+    table { 
+      SF Sg Nom => x + "ło";
+      SF Sg Gen => x + "ły";
+      SF Sg Dat => x + "le";
+      SF Sg Acc => x + "łę";
+      SF Sg Instr => x + "łą";
+      SF Sg Loc => x + "le";
+      SF Sg Voc => x + "ło";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable0975: Str -> SubstForm => Str; --%
+    oper mkNTable0975 lexem = 
+      let x = Predef.tk 3 lexem in
+    table { 
+      SF Sg Nom => x + "cie";
+      SF Sg Gen => x + "[sg,gen]";
+      SF Sg Dat => x + "[sg,dat]";
+      SF Sg Acc => x + "cie";
+      SF Sg Instr => x + "[sg,inst]";
+      SF Sg Loc => x + "[sg,loc]";
+      SF Sg Voc => x + "cie";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable0979: Str -> SubstForm => Str; --%
+    oper mkNTable0979 lexem = 
+      let x = lexem in
+    table { 
+      SF Sg Nom => x + "a";
+      SF Sg Gen => x + "";
+      SF Sg Dat => x + "";
+      SF Sg Acc => x + "ę";
+      SF Sg Instr => x + "ą";
+      SF Sg Loc => x + "";
+      SF Sg Voc => x + "u";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable0982: Str -> SubstForm => Str; --%
+    oper mkNTable0982 lexem = 
+      let x = Predef.tk 2 lexem in
+    table { 
+      SF Sg Nom => x + "óz";
+      SF Sg Gen => x + "oza";
+      SF Sg Dat => x + "ozowi";
+      SF Sg Acc => x + "oza";
+      SF Sg Instr => x + "ozem";
+      SF Sg Loc => x + "ozie";
+      SF Sg Voc => x + "ozie";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable0987: Str -> SubstForm => Str; --%
+    oper mkNTable0987 lexem = 
+      let x = Predef.tk 2 lexem in
+    table { 
+      SF Sg Nom => x + "ka";
+      SF Sg Gen => x + "ki";
+      SF Sg Dat => x + "ce";
+      SF Sg Acc => x + "kę";
+      SF Sg Instr => x + "ką";
+      SF Sg Loc => x + "ce";
+      SF Sg Voc => x + "ko";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable0994: Str -> SubstForm => Str; --%
+    oper mkNTable0994 lexem = 
+      let x = Predef.tk 2 lexem in
+    table { 
+      SF Sg Nom => x + "el";
+      SF Sg Gen => x + "la";
+      SF Sg Dat => x + "lowi";
+      SF Sg Acc => x + "el";
+      SF Sg Instr => x + "lem";
+      SF Sg Loc => x + "lu";
+      SF Sg Voc => x + "lu";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable1000: Str -> SubstForm => Str; --%
+    oper mkNTable1000 lexem = 
+      let x = Predef.tk 1 lexem in
+    table { 
+      SF Sg Nom => x + "ń";
+      SF Sg Gen => x + "ni";
+      SF Sg Dat => x + "ni";
+      SF Sg Acc => x + "ń";
+      SF Sg Instr => x + "nią";
+      SF Sg Loc => x + "ni";
+      SF Sg Voc => x + "ni";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable1002: Str -> SubstForm => Str; --%
+    oper mkNTable1002 lexem = 
+      let x = Predef.tk 3 lexem in
+    table { 
+      SF Sg Nom => x + "sło";
+      SF Sg Gen => x + "sła";
+      SF Sg Dat => x + "słu";
+      SF Sg Acc => x + "sło";
+      SF Sg Instr => x + "słem";
+      SF Sg Loc => x + "śle";
+      SF Sg Voc => x + "sło";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable1015: Str -> SubstForm => Str; --%
+    oper mkNTable1015 lexem = 
+      let x = Predef.tk 3 lexem in
+    table { 
+      SF Sg Nom => x + "sta";
+      SF Sg Gen => x + "sty";
+      SF Sg Dat => x + "ście";
+      SF Sg Acc => x + "stę";
+      SF Sg Instr => x + "stą";
+      SF Sg Loc => x + "ście";
+      SF Sg Voc => x + "sto";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable1017: Str -> SubstForm => Str; --%
+    oper mkNTable1017 lexem = 
+      let x = Predef.tk 0 lexem in
+    table { 
+      SF Sg Nom => x + "";
+      SF Sg Gen => x + "[sg,gen]";
+      SF Sg Dat => x + "[sg,dat]";
+      SF Sg Acc => x + "[sg,acc]";
+      SF Sg Instr => x + "[sg,inst]";
+      SF Sg Loc => x + "[sg,loc]";
+      SF Sg Voc => x + "[sg,voc]";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable1018: Str -> SubstForm => Str; --%
+    oper mkNTable1018 lexem = 
+      let x = Predef.tk 3 lexem in
+    table { 
+      SF Sg Nom => x + "iec";
+      SF Sg Gen => x + "ca";
+      SF Sg Dat => x + "cowi";
+      SF Sg Acc => x + "ca";
+      SF Sg Instr => x + "cem";
+      SF Sg Loc => x + "cu";
+      SF Sg Voc => x + "cu";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable1021: Str -> SubstForm => Str; --%
+    oper mkNTable1021 lexem = 
+      let x = Predef.tk 3 lexem in
+    table { 
+      SF Sg Nom => x + "nia";
+      SF Sg Gen => x + "ni";
+      SF Sg Dat => x + "ni";
+      SF Sg Acc => x + "nię";
+      SF Sg Instr => x + "nią";
+      SF Sg Loc => x + "ni";
+      SF Sg Voc => x + "nio";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable1026: Str -> SubstForm => Str; --%
+    oper mkNTable1026 lexem = 
+      let x = Predef.tk 0 lexem in
+    table { 
+      SF Sg Nom => x + "";
+      SF Sg Gen => x + "y";
+      SF Sg Dat => x + "y";
+      SF Sg Acc => x + "";
+      SF Sg Instr => x + "ą";
+      SF Sg Loc => x + "y";
+      SF Sg Voc => x + "y";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable1033: Str -> SubstForm => Str; --%
+    oper mkNTable1033 lexem = 
+      let x = Predef.tk 1 lexem in
+    table { 
+      SF Sg Nom => x + "ć";
+      SF Sg Gen => x + "ci";
+      SF Sg Dat => x + "ci";
+      SF Sg Acc => x + "ć";
+      SF Sg Instr => x + "cią";
+      SF Sg Loc => x + "ci";
+      SF Sg Voc => x + "ci";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable1036: Str -> SubstForm => Str; --%
+    oper mkNTable1036 lexem = 
+      let x = Predef.tk 8 lexem in
+    table { 
+      SF Sg Nom => x + "[sg,nom]";
+      SF Sg Gen => x + "[sg,gen]";
+      SF Sg Dat => x + "[sg,dat]";
+      SF Sg Acc => x + "[sg,acc]";
+      SF Sg Instr => x + "[sg,inst]";
+      SF Sg Loc => x + "[sg,loc]";
+      SF Sg Voc => x + "[sg,voc]";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable1037: Str -> SubstForm => Str; --%
+    oper mkNTable1037 lexem = 
+      let x = Predef.tk 1 lexem in
+    table { 
+      SF Sg Nom => x + "o";
+      SF Sg Gen => x + "[sg,gen]";
+      SF Sg Dat => x + "[sg,dat]";
+      SF Sg Acc => x + "o";
+      SF Sg Instr => x + "[sg,inst]";
+      SF Sg Loc => x + "ze";
+      SF Sg Voc => x + "o";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable1041: Str -> SubstForm => Str; --%
+    oper mkNTable1041 lexem = 
+      let x = Predef.tk 8 lexem in
+    table { 
+      SF Sg Nom => x + "[sg,nom]";
+      SF Sg Gen => x + "a";
+      SF Sg Dat => x + "[sg,dat]";
+      SF Sg Acc => x + "[sg,acc]";
+      SF Sg Instr => x + "[sg,inst]";
+      SF Sg Loc => x + "ie";
+      SF Sg Voc => x + "ie";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable1042: Str -> SubstForm => Str; --%
+    oper mkNTable1042 lexem = 
+      let x = Predef.tk 1 lexem in
+    table { 
+      SF Sg Nom => x + "ź";
+      SF Sg Gen => x + "zi";
+      SF Sg Dat => x + "zi";
+      SF Sg Acc => x + "ź";
+      SF Sg Instr => x + "zią";
+      SF Sg Loc => x + "zi";
+      SF Sg Voc => x + "zi";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable1043: Str -> SubstForm => Str; --%
+    oper mkNTable1043 lexem = 
+      let x = Predef.tk 1 lexem in
+    table { 
+      SF Sg Nom => x + "ź";
+      SF Sg Gen => x + "zi";
+      SF Sg Dat => x + "zi";
+      SF Sg Acc => x + "ź";
+      SF Sg Instr => x + "zią";
+      SF Sg Loc => x + "zi";
+      SF Sg Voc => x + "zi";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable1044: Str -> SubstForm => Str; --%
+    oper mkNTable1044 lexem = 
+      let x = Predef.tk 3 lexem in
+    table { 
+      SF Sg Nom => x + "órz";
+      SF Sg Gen => x + "orza";
+      SF Sg Dat => x + "orzowi";
+      SF Sg Acc => x + "órz";
+      SF Sg Instr => x + "orzem";
+      SF Sg Loc => x + "orzu";
+      SF Sg Voc => x + "orzu";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable1049: Str -> SubstForm => Str; --%
+    oper mkNTable1049 lexem = 
+      let x = Predef.tk 3 lexem in
+    table { 
+      SF Sg Nom => x + "iel";
+      SF Sg Gen => x + "la";
+      SF Sg Dat => x + "lowi";
+      SF Sg Acc => x + "iel";
+      SF Sg Instr => x + "lem";
+      SF Sg Loc => x + "lu";
+      SF Sg Voc => x + "lu";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable1050: Str -> SubstForm => Str; --%
+    oper mkNTable1050 lexem = 
+      let x = Predef.tk 8 lexem in
+    table { 
+      SF Sg Nom => x + "[sg,nom]";
+      SF Sg Gen => x + "a";
+      SF Sg Dat => x + "[sg,dat]";
+      SF Sg Acc => x + "a";
+      SF Sg Instr => x + "[sg,inst]";
+      SF Sg Loc => x + "ze";
+      SF Sg Voc => x + "ze";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable1056: Str -> SubstForm => Str; --%
+    oper mkNTable1056 lexem = 
+      let x = Predef.tk 3 lexem in
+    table { 
+      SF Sg Nom => x + "iec";
+      SF Sg Gen => x + "ca";
+      SF Sg Dat => x + "cowi";
+      SF Sg Acc => x + "ca";
+      SF Sg Instr => x + "cem";
+      SF Sg Loc => x + "cu";
+      SF Sg Voc => x + "cu";
+      SF Pl Nom => [];
+      SF Pl Gen => [];
+      SF Pl Dat => [];
+      SF Pl Acc => [];
+      SF Pl Instr => [];
+      SF Pl Loc => [];
+      SF Pl Voc => []
+    };
+
+    oper mkNTable0050: Str -> SubstForm => Str; --%
+    oper mkNTable0050 lexem = 
+      let x = Predef.tk 1 lexem in
+    table { 
+      SF Sg Nom => x + "y";
+      SF Sg Gen => x + "ów";
+      SF Sg Dat => x + "om";
+      SF Sg Acc => x + "y";
+      SF Sg Instr => x + "ami";
+      SF Sg Loc => x + "ach";
+      SF Sg Voc => x + "y";
+      SF Pl Nom => x + "y";
+      SF Pl Gen => x + "ów";
+      SF Pl Dat => x + "om";
+      SF Pl Acc => x + "y";
+      SF Pl Instr => x + "ami";
+      SF Pl Loc => x + "ach";
+      SF Pl Voc => x + "y"
+    };
+
+    oper mkNTable0058: Str -> SubstForm => Str; --%
+    oper mkNTable0058 lexem = 
+      let x = Predef.tk 1 lexem in
+    table { 
+      SF Sg Nom => x + "y";
+      SF Sg Gen => x + "";
+      SF Sg Dat => x + "om";
+      SF Sg Acc => x + "y";
+      SF Sg Instr => x + "ami";
+      SF Sg Loc => x + "ach";
+      SF Sg Voc => x + "y";
+      SF Pl Nom => x + "y";
+      SF Pl Gen => x + "";
+      SF Pl Dat => x + "om";
+      SF Pl Acc => x + "y";
+      SF Pl Instr => x + "ami";
+      SF Pl Loc => x + "ach";
+      SF Pl Voc => x + "y"
+    };
+
+    oper mkNTable0081: Str -> SubstForm => Str; --%
+    oper mkNTable0081 lexem = 
+      let x = Predef.tk 1 lexem in
+    table { 
+      SF Sg Nom => x + "e";
+      SF Sg Gen => x + "i";
+      SF Sg Dat => x + "om";
+      SF Sg Acc => x + "e";
+      SF Sg Instr => x + "ami";
+      SF Sg Loc => x + "ach";
+      SF Sg Voc => x + "e";
+      SF Pl Nom => x + "e";
+      SF Pl Gen => x + "i";
+      SF Pl Dat => x + "om";
+      SF Pl Acc => x + "e";
+      SF Pl Instr => x + "ami";
+      SF Pl Loc => x + "ach";
+      SF Pl Voc => x + "e"
+    };
+
+    oper mkNTable0087: Str -> SubstForm => Str; --%
+    oper mkNTable0087 lexem = 
+      let x = Predef.tk 2 lexem in
+    table { 
+      SF Sg Nom => x + "ci";
+      SF Sg Gen => x + "tów";
+      SF Sg Dat => x + "tom";
+      SF Sg Acc => x + "tów";
+      SF Sg Instr => x + "tami";
+      SF Sg Loc => x + "tach";
+      SF Sg Voc => x + "ci";
+      SF Pl Nom => x + "ci";
+      SF Pl Gen => x + "tów";
+      SF Pl Dat => x + "tom";
+      SF Pl Acc => x + "tów";
+      SF Pl Instr => x + "tami";
+      SF Pl Loc => x + "tach";
+      SF Pl Voc => x + "ci"
+    };
+
+    oper mkNTable0105: Str -> SubstForm => Str; --%
+    oper mkNTable0105 lexem = 
+      let x = Predef.tk 0 lexem in
+    table { 
+      SF Sg Nom => x + "";
+      SF Sg Gen => x + "";
+      SF Sg Dat => x + "";
+      SF Sg Acc => x + "";
+      SF Sg Instr => x + "";
+      SF Sg Loc => x + "";
+      SF Sg Voc => x + "";
+      SF Pl Nom => x + "";
+      SF Pl Gen => x + "";
+      SF Pl Dat => x + "";
+      SF Pl Acc => x + "";
+      SF Pl Instr => x + "";
+      SF Pl Loc => x + "";
+      SF Pl Voc => x + ""
+    };
+
+    oper mkNTable0107: Str -> SubstForm => Str; --%
+    oper mkNTable0107 lexem = 
+      let x = Predef.tk 1 lexem in
+    table { 
+      SF Sg Nom => x + "e";
+      SF Sg Gen => x + "";
+      SF Sg Dat => x + "om";
+      SF Sg Acc => x + "e";
+      SF Sg Instr => x + "ami";
+      SF Sg Loc => x + "ach";
+      SF Sg Voc => x + "e";
+      SF Pl Nom => x + "e";
+      SF Pl Gen => x + "";
+      SF Pl Dat => x + "om";
+      SF Pl Acc => x + "e";
+      SF Pl Instr => x + "ami";
+      SF Pl Loc => x + "ach";
+      SF Pl Voc => x + "e"
+    };
+
+    oper mkNTable0134: Str -> SubstForm => Str; --%
+    oper mkNTable0134 lexem = 
+      let x = Predef.tk 1 lexem in
+    table { 
+      SF Sg Nom => x + "i";
+      SF Sg Gen => x + "ów";
+      SF Sg Dat => x + "om";
+      SF Sg Acc => x + "i";
+      SF Sg Instr => x + "ami";
+      SF Sg Loc => x + "ach";
+      SF Sg Voc => x + "i";
+      SF Pl Nom => x + "i";
+      SF Pl Gen => x + "ów";
+      SF Pl Dat => x + "om";
+      SF Pl Acc => x + "i";
+      SF Pl Instr => x + "ami";
+      SF Pl Loc => x + "ach";
+      SF Pl Voc => x + "i"
+    };
+
+    oper mkNTable0146: Str -> SubstForm => Str; --%
+    oper mkNTable0146 lexem = 
+      let x = Predef.tk 3 lexem in
+    table { 
+      SF Sg Nom => x + "ęta";
+      SF Sg Gen => x + "ąt";
+      SF Sg Dat => x + "ętom";
+      SF Sg Acc => x + "ęta";
+      SF Sg Instr => x + "ętami";
+      SF Sg Loc => x + "ętach";
+      SF Sg Voc => x + "ęta";
+      SF Pl Nom => x + "ęta";
+      SF Pl Gen => x + "ąt";
+      SF Pl Dat => x + "ętom";
+      SF Pl Acc => x + "ęta";
+      SF Pl Instr => x + "ętami";
+      SF Pl Loc => x + "ętach";
+      SF Pl Voc => x + "ęta"
+    };
+
+    oper mkNTable0147: Str -> SubstForm => Str; --%
+    oper mkNTable0147 lexem = 
+      let x = Predef.tk 1 lexem in
+    table { 
+      SF Sg Nom => x + "i";
+      SF Sg Gen => x + "";
+      SF Sg Dat => x + "om";
+      SF Sg Acc => x + "i";
+      SF Sg Instr => x + "ami";
+      SF Sg Loc => x + "ach";
+      SF Sg Voc => x + "i";
+      SF Pl Nom => x + "i";
+      SF Pl Gen => x + "";
+      SF Pl Dat => x + "om";
+      SF Pl Acc => x + "i";
+      SF Pl Instr => x + "ami";
+      SF Pl Loc => x + "ach";
+      SF Pl Voc => x + "i"
+    };
+
+    oper mkNTable0164: Str -> SubstForm => Str; --%
+    oper mkNTable0164 lexem = 
+      let x = Predef.tk 3 lexem in
+    table { 
+      SF Sg Nom => x + "ćki";
+      SF Sg Gen => x + "ciek";
+      SF Sg Dat => x + "ćkom";
+      SF Sg Acc => x + "ćki";
+      SF Sg Instr => x + "ćkami";
+      SF Sg Loc => x + "ćkach";
+      SF Sg Voc => x + "ćki";
+      SF Pl Nom => x + "ćki";
+      SF Pl Gen => x + "ciek";
+      SF Pl Dat => x + "ćkom";
+      SF Pl Acc => x + "ćki";
+      SF Pl Instr => x + "ćkami";
+      SF Pl Loc => x + "ćkach";
+      SF Pl Voc => x + "ćki"
+    };
+
+    oper mkNTable0186: Str -> SubstForm => Str; --%
+    oper mkNTable0186 lexem = 
+      let x = Predef.tk 3 lexem in
+    table { 
+      SF Sg Nom => x + "owy";
+      SF Sg Gen => x + "ów";
+      SF Sg Dat => x + "owom";
+      SF Sg Acc => x + "owy";
+      SF Sg Instr => x + "owami";
+      SF Sg Loc => x + "owach";
+      SF Sg Voc => x + "owy";
+      SF Pl Nom => x + "owy";
+      SF Pl Gen => x + "ów";
+      SF Pl Dat => x + "owom";
+      SF Pl Acc => x + "owy";
+      SF Pl Instr => x + "owami";
+      SF Pl Loc => x + "owach";
+      SF Pl Voc => x + "owy"
+    };
+
+    oper mkNTable0189: Str -> SubstForm => Str; --%
+    oper mkNTable0189 lexem = 
+      let x = Predef.tk 1 lexem in
+    table { 
+      SF Sg Nom => x + "a";
+      SF Sg Gen => x + "";
+      SF Sg Dat => x + "om";
+      SF Sg Acc => x + "a";
+      SF Sg Instr => x + "ami";
+      SF Sg Loc => x + "ach";
+      SF Sg Voc => x + "a";
+      SF Pl Nom => x + "a";
+      SF Pl Gen => x + "";
+      SF Pl Dat => x + "om";
+      SF Pl Acc => x + "a";
+      SF Pl Instr => x + "ami";
+      SF Pl Loc => x + "ach";
+      SF Pl Voc => x + "a"
+    };
+
+    oper mkNTable0195: Str -> SubstForm => Str; --%
+    oper mkNTable0195 lexem = 
+      let x = Predef.tk 3 lexem in
+    table { 
+      SF Sg Nom => x + "ody";
+      SF Sg Gen => x + "ód";
+      SF Sg Dat => x + "odom";
+      SF Sg Acc => x + "ody";
+      SF Sg Instr => x + "odami";
+      SF Sg Loc => x + "odach";
+      SF Sg Voc => x + "ody";
+      SF Pl Nom => x + "ody";
+      SF Pl Gen => x + "ód";
+      SF Pl Dat => x + "odom";
+      SF Pl Acc => x + "ody";
+      SF Pl Instr => x + "odami";
+      SF Pl Loc => x + "odach";
+      SF Pl Voc => x + "ody"
+    };
+
+    oper mkNTable0208: Str -> SubstForm => Str; --%
+    oper mkNTable0208 lexem = 
+      let x = Predef.tk 4 lexem in
+    table { 
+      SF Sg Nom => x + "owie";
+      SF Sg Gen => x + "ów";
+      SF Sg Dat => x + "om";
+      SF Sg Acc => x + "ów";
+      SF Sg Instr => x + "ami";
+      SF Sg Loc => x + "ach";
+      SF Sg Voc => x + "owie";
+      SF Pl Nom => x + "owie";
+      SF Pl Gen => x + "ów";
+      SF Pl Dat => x + "om";
+      SF Pl Acc => x + "ów";
+      SF Pl Instr => x + "ami";
+      SF Pl Loc => x + "ach";
+      SF Pl Voc => x + "owie"
+    };
+
+    oper mkNTable0214: Str -> SubstForm => Str; --%
+    oper mkNTable0214 lexem = 
+      let x = Predef.tk 1 lexem in
+    table { 
+      SF Sg Nom => x + "e";
+      SF Sg Gen => x + "ów";
+      SF Sg Dat => x + "om";
+      SF Sg Acc => x + "e";
+      SF Sg Instr => x + "ami";
+      SF Sg Loc => x + "ach";
+      SF Sg Voc => x + "e";
+      SF Pl Nom => x + "e";
+      SF Pl Gen => x + "ów";
+      SF Pl Dat => x + "om";
+      SF Pl Acc => x + "e";
+      SF Pl Instr => x + "ami";
+      SF Pl Loc => x + "ach";
+      SF Pl Voc => x + "e"
+    };
+
+    oper mkNTable0256: Str -> SubstForm => Str; --%
+    oper mkNTable0256 lexem = 
+      let x = Predef.tk 2 lexem in
+    table { 
+      SF Sg Nom => x + "ie";
+      SF Sg Gen => x + "";
+      SF Sg Dat => x + "om";
+      SF Sg Acc => x + "";
+      SF Sg Instr => x + "ami";
+      SF Sg Loc => x + "ach";
+      SF Sg Voc => x + "ie";
+      SF Pl Nom => x + "ie";
+      SF Pl Gen => x + "";
+      SF Pl Dat => x + "om";
+      SF Pl Acc => x + "";
+      SF Pl Instr => x + "ami";
+      SF Pl Loc => x + "ach";
+      SF Pl Voc => x + "ie"
+    };
+
+    oper mkNTable0261: Str -> SubstForm => Str; --%
+    oper mkNTable0261 lexem = 
+      let x = Predef.tk 2 lexem in
+    table { 
+      SF Sg Nom => x + "ki";
+      SF Sg Gen => x + "ek";
+      SF Sg Dat => x + "kom";
+      SF Sg Acc => x + "ki";
+      SF Sg Instr => x + "kami";
+      SF Sg Loc => x + "kach";
+      SF Sg Voc => x + "ki";
+      SF Pl Nom => x + "ki";
+      SF Pl Gen => x + "ek";
+      SF Pl Dat => x + "kom";
+      SF Pl Acc => x + "ki";
+      SF Pl Instr => x + "kami";
+      SF Pl Loc => x + "kach";
+      SF Pl Voc => x + "ki"
+    };
+
+    oper mkNTable0287: Str -> SubstForm => Str; --%
+    oper mkNTable0287 lexem = 
+      let x = Predef.tk 1 lexem in
+    table { 
+      SF Sg Nom => x + "a";
+      SF Sg Gen => x + "i";
+      SF Sg Dat => x + "om";
+      SF Sg Acc => x + "a";
+      SF Sg Instr => x + "ami";
+      SF Sg Loc => x + "ach";
+      SF Sg Voc => x + "a";
+      SF Pl Nom => x + "a";
+      SF Pl Gen => x + "i";
+      SF Pl Dat => x + "om";
+      SF Pl Acc => x + "a";
+      SF Pl Instr => x + "ami";
+      SF Pl Loc => x + "ach";
+      SF Pl Voc => x + "a"
+    };
+
+    oper mkNTable0295: Str -> SubstForm => Str; --%
+    oper mkNTable0295 lexem = 
+      let x = Predef.tk 1 lexem in
+    table { 
+      SF Sg Nom => x + "o";
+      SF Sg Gen => x + "a";
+      SF Sg Dat => x + "u";
+      SF Sg Acc => x + "a";
+      SF Sg Instr => x + "em";
+      SF Sg Loc => x + "u";
+      SF Sg Voc => x + "o";
+      SF Pl Nom => x + "o";
+      SF Pl Gen => x + "a";
+      SF Pl Dat => x + "u";
+      SF Pl Acc => x + "a";
+      SF Pl Instr => x + "em";
+      SF Pl Loc => x + "u";
+      SF Pl Voc => x + "o"
+    };
+
+    oper mkNTable0311: Str -> SubstForm => Str; --%
+    oper mkNTable0311 lexem = 
+      let x = Predef.tk 1 lexem in
+    table { 
+      SF Sg Nom => x + "e";
+      SF Sg Gen => x + "y";
+      SF Sg Dat => x + "om";
+      SF Sg Acc => x + "e";
+      SF Sg Instr => x + "ami";
+      SF Sg Loc => x + "ach";
+      SF Sg Voc => x + "e";
+      SF Pl Nom => x + "e";
+      SF Pl Gen => x + "y";
+      SF Pl Dat => x + "om";
+      SF Pl Acc => x + "e";
+      SF Pl Instr => x + "ami";
+      SF Pl Loc => x + "ach";
+      SF Pl Voc => x + "e"
+    };
+
+    oper mkNTable0345: Str -> SubstForm => Str; --%
+    oper mkNTable0345 lexem = 
+      let x = Predef.tk 2 lexem in
+    table { 
+      SF Sg Nom => x + "ce";
+      SF Sg Gen => x + "iec";
+      SF Sg Dat => x + "com";
+      SF Sg Acc => x + "ce";
+      SF Sg Instr => x + "cami";
+      SF Sg Loc => x + "cach";
+      SF Sg Voc => x + "ce";
+      SF Pl Nom => x + "ce";
+      SF Pl Gen => x + "iec";
+      SF Pl Dat => x + "com";
+      SF Pl Acc => x + "ce";
+      SF Pl Instr => x + "cami";
+      SF Pl Loc => x + "cach";
+      SF Pl Voc => x + "ce"
+    };
+
+    oper mkNTable0377: Str -> SubstForm => Str; --%
+    oper mkNTable0377 lexem = 
+      let x = Predef.tk 3 lexem in
+    table { 
+      SF Sg Nom => x + "ńki";
+      SF Sg Gen => x + "niek";
+      SF Sg Dat => x + "ńkom";
+      SF Sg Acc => x + "ńki";
+      SF Sg Instr => x + "ńkami";
+      SF Sg Loc => x + "ńkach";
+      SF Sg Voc => x + "ńki";
+      SF Pl Nom => x + "ńki";
+      SF Pl Gen => x + "niek";
+      SF Pl Dat => x + "ńkom";
+      SF Pl Acc => x + "ńki";
+      SF Pl Instr => x + "ńkami";
+      SF Pl Loc => x + "ńkach";
+      SF Pl Voc => x + "ńki"
+    };
+
+    oper mkNTable0381: Str -> SubstForm => Str; --%
+    oper mkNTable0381 lexem = 
+      let x = Predef.tk 2 lexem in
+    table { 
+      SF Sg Nom => x + "wy";
+      SF Sg Gen => x + "ew";
+      SF Sg Dat => x + "wom";
+      SF Sg Acc => x + "wy";
+      SF Sg Instr => x + "wami";
+      SF Sg Loc => x + "wach";
+      SF Sg Voc => x + "wy";
+      SF Pl Nom => x + "wy";
+      SF Pl Gen => x + "ew";
+      SF Pl Dat => x + "wom";
+      SF Pl Acc => x + "wy";
+      SF Pl Instr => x + "wami";
+      SF Pl Loc => x + "wach";
+      SF Pl Voc => x + "wy"
+    };
+
+    oper mkNTable0387: Str -> SubstForm => Str; --%
+    oper mkNTable0387 lexem = 
+      let x = Predef.tk 2 lexem in
+    table { 
+      SF Sg Nom => x + "cy";
+      SF Sg Gen => x + "iec";
+      SF Sg Dat => x + "com";
+      SF Sg Acc => x + "cy";
+      SF Sg Instr => x + "cami";
+      SF Sg Loc => x + "czech";
+      SF Sg Voc => x + "cy";
+      SF Pl Nom => x + "cy";
+      SF Pl Gen => x + "iec";
+      SF Pl Dat => x + "com";
+      SF Pl Acc => x + "cy";
+      SF Pl Instr => x + "cami";
+      SF Pl Loc => x + "czech";
+      SF Pl Voc => x + "cy"
+    };
+
+    oper mkNTable0433: Str -> SubstForm => Str; --%
+    oper mkNTable0433 lexem = 
+      let x = Predef.tk 2 lexem in
+    table { 
+      SF Sg Nom => x + "ce";
+      SF Sg Gen => x + "ec";
+      SF Sg Dat => x + "com";
+      SF Sg Acc => x + "ce";
+      SF Sg Instr => x + "cami";
+      SF Sg Loc => x + "cach";
+      SF Sg Voc => x + "ce";
+      SF Pl Nom => x + "ce";
+      SF Pl Gen => x + "ec";
+      SF Pl Dat => x + "com";
+      SF Pl Acc => x + "ce";
+      SF Pl Instr => x + "cami";
+      SF Pl Loc => x + "cach";
+      SF Pl Voc => x + "ce"
+    };
+
+    oper mkNTable0445: Str -> SubstForm => Str; --%
+    oper mkNTable0445 lexem = 
+      let x = Predef.tk 2 lexem in
+    table { 
+      SF Sg Nom => x + "ny";
+      SF Sg Gen => x + "ien";
+      SF Sg Dat => x + "nom";
+      SF Sg Acc => x + "ny";
+      SF Sg Instr => x + "nami";
+      SF Sg Loc => x + "nach";
+      SF Sg Voc => x + "ny";
+      SF Pl Nom => x + "ny";
+      SF Pl Gen => x + "ien";
+      SF Pl Dat => x + "nom";
+      SF Pl Acc => x + "ny";
+      SF Pl Instr => x + "nami";
+      SF Pl Loc => x + "nach";
+      SF Pl Voc => x + "ny"
+    };
+
+    oper mkNTable0482: Str -> SubstForm => Str; --%
+    oper mkNTable0482 lexem = 
+      let x = Predef.tk 3 lexem in
+    table { 
+      SF Sg Nom => x + "chy";
+      SF Sg Gen => x + "szech";
+      SF Sg Dat => x + "chom";
+      SF Sg Acc => x + "chy";
+      SF Sg Instr => x + "chami";
+      SF Sg Loc => x + "szech";
+      SF Sg Voc => x + "chy";
+      SF Pl Nom => x + "chy";
+      SF Pl Gen => x + "szech";
+      SF Pl Dat => x + "chom";
+      SF Pl Acc => x + "chy";
+      SF Pl Instr => x + "chami";
+      SF Pl Loc => x + "szech";
+      SF Pl Voc => x + "chy"
+    };
+
+    oper mkNTable0501: Str -> SubstForm => Str; --%
+    oper mkNTable0501 lexem = 
+      let x = Predef.tk 1 lexem in
+    table { 
+      SF Sg Nom => x + "a";
+      SF Sg Gen => x + "ów";
+      SF Sg Dat => x + "om";
+      SF Sg Acc => x + "a";
+      SF Sg Instr => x + "ami";
+      SF Sg Loc => x + "ach";
+      SF Sg Voc => x + "a";
+      SF Pl Nom => x + "a";
+      SF Pl Gen => x + "ów";
+      SF Pl Dat => x + "om";
+      SF Pl Acc => x + "a";
+      SF Pl Instr => x + "ami";
+      SF Pl Loc => x + "ach";
+      SF Pl Voc => x + "a"
+    };
+
+    oper mkNTable0507: Str -> SubstForm => Str; --%
+    oper mkNTable0507 lexem = 
+      let x = Predef.tk 3 lexem in
+    table { 
+      SF Sg Nom => x + "nie";
+      SF Sg Gen => x + "ń";
+      SF Sg Dat => x + "niom";
+      SF Sg Acc => x + "nie";
+      SF Sg Instr => x + "ńmi";
+      SF Sg Loc => x + "niach";
+      SF Sg Voc => x + "nie";
+      SF Pl Nom => x + "nie";
+      SF Pl Gen => x + "ń";
+      SF Pl Dat => x + "niom";
+      SF Pl Acc => x + "nie";
+      SF Pl Instr => x + "ńmi";
+      SF Pl Loc => x + "niach";
+      SF Pl Voc => x + "nie"
+    };
+
+    oper mkNTable0508: Str -> SubstForm => Str; --%
+    oper mkNTable0508 lexem = 
+      let x = Predef.tk 1 lexem in
+    table { 
+      SF Sg Nom => x + "e";
+      SF Sg Gen => x + "ych";
+      SF Sg Dat => x + "ym";
+      SF Sg Acc => x + "e";
+      SF Sg Instr => x + "ymi";
+      SF Sg Loc => x + "ych";
+      SF Sg Voc => x + "e";
+      SF Pl Nom => x + "e";
+      SF Pl Gen => x + "ych";
+      SF Pl Dat => x + "ym";
+      SF Pl Acc => x + "e";
+      SF Pl Instr => x + "ymi";
+      SF Pl Loc => x + "ych";
+      SF Pl Voc => x + "e"
+    };
+
+    oper mkNTable0516: Str -> SubstForm => Str; --%
+    oper mkNTable0516 lexem = 
+      let x = Predef.tk 0 lexem in
+    table { 
+      SF Sg Nom => x + "";
+      SF Sg Gen => x + "";
+      SF Sg Dat => x + "om";
+      SF Sg Acc => x + "";
+      SF Sg Instr => x + "ami";
+      SF Sg Loc => x + "ach";
+      SF Sg Voc => x + "";
+      SF Pl Nom => x + "";
+      SF Pl Gen => x + "";
+      SF Pl Dat => x + "om";
+      SF Pl Acc => x + "";
+      SF Pl Instr => x + "ami";
+      SF Pl Loc => x + "ach";
+      SF Pl Voc => x + ""
+    };
+
+    oper mkNTable0576: Str -> SubstForm => Str; --%
+    oper mkNTable0576 lexem = 
+      let x = Predef.tk 1 lexem in
+    table { 
+      SF Sg Nom => x + "a";
+      SF Sg Gen => x + "y";
+      SF Sg Dat => x + "om";
+      SF Sg Acc => x + "a";
+      SF Sg Instr => x + "ami";
+      SF Sg Loc => x + "ach";
+      SF Sg Voc => x + "a";
+      SF Pl Nom => x + "a";
+      SF Pl Gen => x + "y";
+      SF Pl Dat => x + "om";
+      SF Pl Acc => x + "a";
+      SF Pl Instr => x + "ami";
+      SF Pl Loc => x + "ach";
+      SF Pl Voc => x + "a"
+    };
+
+    oper mkNTable0669: Str -> SubstForm => Str; --%
+    oper mkNTable0669 lexem = 
+      let x = Predef.tk 2 lexem in
+    table { 
+      SF Sg Nom => x + "ka";
+      SF Sg Gen => x + "ek";
+      SF Sg Dat => x + "kom";
+      SF Sg Acc => x + "ka";
+      SF Sg Instr => x + "kami";
+      SF Sg Loc => x + "kach";
+      SF Sg Voc => x + "ka";
+      SF Pl Nom => x + "ka";
+      SF Pl Gen => x + "ek";
+      SF Pl Dat => x + "kom";
+      SF Pl Acc => x + "ka";
+      SF Pl Instr => x + "kami";
+      SF Pl Loc => x + "kach";
+      SF Pl Voc => x + "ka"
+    };
+
+    oper mkNTable0680: Str -> SubstForm => Str; --%
+    oper mkNTable0680 lexem = 
+      let x = Predef.tk 4 lexem in
+    table { 
+      SF Sg Nom => x + "obra";
+      SF Sg Gen => x + "óbr";
+      SF Sg Dat => x + "obrom";
+      SF Sg Acc => x + "obra";
+      SF Sg Instr => x + "obrami";
+      SF Sg Loc => x + "obrach";
+      SF Sg Voc => x + "obra";
+      SF Pl Nom => x + "obra";
+      SF Pl Gen => x + "óbr";
+      SF Pl Dat => x + "obrom";
+      SF Pl Acc => x + "obra";
+      SF Pl Instr => x + "obrami";
+      SF Pl Loc => x + "obrach";
+      SF Pl Voc => x + "obra"
+    };
+
+    oper mkNTable0688: Str -> SubstForm => Str; --%
+    oper mkNTable0688 lexem = 
+      let x = Predef.tk 3 lexem in
+    table { 
+      SF Sg Nom => x + "nia";
+      SF Sg Gen => x + "ń";
+      SF Sg Dat => x + "niom";
+      SF Sg Acc => x + "nia";
+      SF Sg Instr => x + "niami";
+      SF Sg Loc => x + "niach";
+      SF Sg Voc => x + "nia";
+      SF Pl Nom => x + "nia";
+      SF Pl Gen => x + "ń";
+      SF Pl Dat => x + "niom";
+      SF Pl Acc => x + "nia";
+      SF Pl Instr => x + "niami";
+      SF Pl Loc => x + "niach";
+      SF Pl Voc => x + "nia"
+    };
+
+    oper mkNTable0690: Str -> SubstForm => Str; --%
+    oper mkNTable0690 lexem = 
+      let x = Predef.tk 3 lexem in
+    table { 
+      SF Sg Nom => x + "ogi";
+      SF Sg Gen => x + "óg";
+      SF Sg Dat => x + "ogom";
+      SF Sg Acc => x + "ogi";
+      SF Sg Instr => x + "ogami";
+      SF Sg Loc => x + "ogach";
+      SF Sg Voc => x + "ogi";
+      SF Pl Nom => x + "ogi";
+      SF Pl Gen => x + "óg";
+      SF Pl Dat => x + "ogom";
+      SF Pl Acc => x + "ogi";
+      SF Pl Instr => x + "ogami";
+      SF Pl Loc => x + "ogach";
+      SF Pl Voc => x + "ogi"
+    };
+
+    oper mkNTable0693: Str -> SubstForm => Str; --%
+    oper mkNTable0693 lexem = 
+      let x = Predef.tk 2 lexem in
+    table { 
+      SF Sg Nom => x + "wa";
+      SF Sg Gen => x + "ew";
+      SF Sg Dat => x + "wom";
+      SF Sg Acc => x + "wa";
+      SF Sg Instr => x + "wami";
+      SF Sg Loc => x + "wach";
+      SF Sg Voc => x + "wa";
+      SF Pl Nom => x + "wa";
+      SF Pl Gen => x + "ew";
+      SF Pl Dat => x + "wom";
+      SF Pl Acc => x + "wa";
+      SF Pl Instr => x + "wami";
+      SF Pl Loc => x + "wach";
+      SF Pl Voc => x + "wa"
+    };
+
+    oper mkNTable0747: Str -> SubstForm => Str; --%
+    oper mkNTable0747 lexem = 
+      let x = Predef.tk 2 lexem in
+    table { 
+      SF Sg Nom => x + "ła";
+      SF Sg Gen => x + "eł";
+      SF Sg Dat => x + "łom";
+      SF Sg Acc => x + "ła";
+      SF Sg Instr => x + "łami";
+      SF Sg Loc => x + "łach";
+      SF Sg Voc => x + "ła";
+      SF Pl Nom => x + "ła";
+      SF Pl Gen => x + "eł";
+      SF Pl Dat => x + "łom";
+      SF Pl Acc => x + "ła";
+      SF Pl Instr => x + "łami";
+      SF Pl Loc => x + "łach";
+      SF Pl Voc => x + "ła"
+    };
+
+    oper mkNTable0764: Str -> SubstForm => Str; --%
+    oper mkNTable0764 lexem = 
+      let x = Predef.tk 1 lexem in
+    table { 
+      SF Sg Nom => x + "e";
+      SF Sg Gen => x + "ów";
+      SF Sg Dat => x + "om";
+      SF Sg Acc => x + "ów";
+      SF Sg Instr => x + "ami";
+      SF Sg Loc => x + "ach";
+      SF Sg Voc => x + "e";
+      SF Pl Nom => x + "e";
+      SF Pl Gen => x + "ów";
+      SF Pl Dat => x + "om";
+      SF Pl Acc => x + "ów";
+      SF Pl Instr => x + "ami";
+      SF Pl Loc => x + "ach";
+      SF Pl Voc => x + "e"
+    };
+
+    oper mkNTable0767: Str -> SubstForm => Str; --%
+    oper mkNTable0767 lexem = 
+      let x = Predef.tk 2 lexem in
+    table { 
+      SF Sg Nom => x + "ca";
+      SF Sg Gen => x + "ec";
+      SF Sg Dat => x + "com";
+      SF Sg Acc => x + "ca";
+      SF Sg Instr => x + "cami";
+      SF Sg Loc => x + "cach";
+      SF Sg Voc => x + "ca";
+      SF Pl Nom => x + "ca";
+      SF Pl Gen => x + "ec";
+      SF Pl Dat => x + "com";
+      SF Pl Acc => x + "ca";
+      SF Pl Instr => x + "cami";
+      SF Pl Loc => x + "cach";
+      SF Pl Voc => x + "ca"
+    };
+
+    oper mkNTable0800: Str -> SubstForm => Str; --%
+    oper mkNTable0800 lexem = 
+      let x = Predef.tk 2 lexem in
+    table { 
+      SF Sg Nom => x + "je";
+      SF Sg Gen => x + "i";
+      SF Sg Dat => x + "jom";
+      SF Sg Acc => x + "je";
+      SF Sg Instr => x + "jami";
+      SF Sg Loc => x + "jach";
+      SF Sg Voc => x + "je";
+      SF Pl Nom => x + "je";
+      SF Pl Gen => x + "i";
+      SF Pl Dat => x + "jom";
+      SF Pl Acc => x + "je";
+      SF Pl Instr => x + "jami";
+      SF Pl Loc => x + "jach";
+      SF Pl Voc => x + "je"
+    };
+
+    oper mkNTable0809: Str -> SubstForm => Str; --%
+    oper mkNTable0809 lexem = 
+      let x = Predef.tk 3 lexem in
+    table { 
+      SF Sg Nom => x + "oła";
+      SF Sg Gen => x + "ół";
+      SF Sg Dat => x + "ołom";
+      SF Sg Acc => x + "oła";
+      SF Sg Instr => x + "ołami";
+      SF Sg Loc => x + "ołach";
+      SF Sg Voc => x + "oła";
+      SF Pl Nom => x + "oła";
+      SF Pl Gen => x + "ół";
+      SF Pl Dat => x + "ołom";
+      SF Pl Acc => x + "oła";
+      SF Pl Instr => x + "ołami";
+      SF Pl Loc => x + "ołach";
+      SF Pl Voc => x + "oła"
+    };
+
+    oper mkNTable0812: Str -> SubstForm => Str; --%
+    oper mkNTable0812 lexem = 
+      let x = Predef.tk 2 lexem in
+    table { 
+      SF Sg Nom => x + "ci";
+      SF Sg Gen => x + "ci";
+      SF Sg Dat => x + "ciom";
+      SF Sg Acc => x + "ci";
+      SF Sg Instr => x + "ćmi";
+      SF Sg Loc => x + "ciach";
+      SF Sg Voc => x + "ci";
+      SF Pl Nom => x + "ci";
+      SF Pl Gen => x + "ci";
+      SF Pl Dat => x + "ciom";
+      SF Pl Acc => x + "ci";
+      SF Pl Instr => x + "ćmi";
+      SF Pl Loc => x + "ciach";
+      SF Pl Voc => x + "ci"
+    };
+
+    oper mkNTable0825: Str -> SubstForm => Str; --%
+    oper mkNTable0825 lexem = 
+      let x = Predef.tk 1 lexem in
+    table { 
+      SF Sg Nom => x + "i";
+      SF Sg Gen => x + "ów";
+      SF Sg Dat => x + "om";
+      SF Sg Acc => x + "ów";
+      SF Sg Instr => x + "ami";
+      SF Sg Loc => x + "ach";
+      SF Sg Voc => x + "i";
+      SF Pl Nom => x + "i";
+      SF Pl Gen => x + "ów";
+      SF Pl Dat => x + "om";
+      SF Pl Acc => x + "ów";
+      SF Pl Instr => x + "ami";
+      SF Pl Loc => x + "ach";
+      SF Pl Voc => x + "i"
+    };
+
+    oper mkNTable0835: Str -> SubstForm => Str; --%
+    oper mkNTable0835 lexem = 
+      let x = Predef.tk 2 lexem in
+    table { 
+      SF Sg Nom => x + "zy";
+      SF Sg Gen => x + "ów";
+      SF Sg Dat => x + "om";
+      SF Sg Acc => x + "ów";
+      SF Sg Instr => x + "ami";
+      SF Sg Loc => x + "ach";
+      SF Sg Voc => x + "zy";
+      SF Pl Nom => x + "zy";
+      SF Pl Gen => x + "ów";
+      SF Pl Dat => x + "om";
+      SF Pl Acc => x + "ów";
+      SF Pl Instr => x + "ami";
+      SF Pl Loc => x + "ach";
+      SF Pl Voc => x + "zy"
+    };
+
+    oper mkNTable0841: Str -> SubstForm => Str; --%
+    oper mkNTable0841 lexem = 
+      let x = Predef.tk 3 lexem in
+    table { 
+      SF Sg Nom => x + "zie";
+      SF Sg Gen => x + "zi";
+      SF Sg Dat => x + "ziom";
+      SF Sg Acc => x + "zi";
+      SF Sg Instr => x + "źmi";
+      SF Sg Loc => x + "ziach";
+      SF Sg Voc => x + "zie";
+      SF Pl Nom => x + "zie";
+      SF Pl Gen => x + "zi";
+      SF Pl Dat => x + "ziom";
+      SF Pl Acc => x + "zi";
+      SF Pl Instr => x + "źmi";
+      SF Pl Loc => x + "ziach";
+      SF Pl Voc => x + "zie"
+    };
+
+    oper mkNTable0871: Str -> SubstForm => Str; --%
+    oper mkNTable0871 lexem = 
+      let x = Predef.tk 2 lexem in
+    table { 
+      SF Sg Nom => x + "zi";
+      SF Sg Gen => x + "ych";
+      SF Sg Dat => x + "ym";
+      SF Sg Acc => x + "ych";
+      SF Sg Instr => x + "ymi";
+      SF Sg Loc => x + "ych";
+      SF Sg Voc => x + "zi";
+      SF Pl Nom => x + "zi";
+      SF Pl Gen => x + "ych";
+      SF Pl Dat => x + "ym";
+      SF Pl Acc => x + "ych";
+      SF Pl Instr => x + "ymi";
+      SF Pl Loc => x + "ych";
+      SF Pl Voc => x + "zi"
+    };
+
+    oper mkNTable0872: Str -> SubstForm => Str; --%
+    oper mkNTable0872 lexem = 
+      let x = Predef.tk 3 lexem in
+    table { 
+      SF Sg Nom => x + "ęki";
+      SF Sg Gen => x + "ąk";
+      SF Sg Dat => x + "ękom";
+      SF Sg Acc => x + "ęki";
+      SF Sg Instr => x + "ękami";
+      SF Sg Loc => x + "ękach";
+      SF Sg Voc => x + "ęki";
+      SF Pl Nom => x + "ęki";
+      SF Pl Gen => x + "ąk";
+      SF Pl Dat => x + "ękom";
+      SF Pl Acc => x + "ęki";
+      SF Pl Instr => x + "ękami";
+      SF Pl Loc => x + "ękach";
+      SF Pl Voc => x + "ęki"
+    };
+
+    oper mkNTable0886: Str -> SubstForm => Str; --%
+    oper mkNTable0886 lexem = 
+      let x = Predef.tk 1 lexem in
+    table { 
+      SF Sg Nom => x + "y";
+      SF Sg Gen => x + "ów";
+      SF Sg Dat => x + "om";
+      SF Sg Acc => x + "ów";
+      SF Sg Instr => x + "ami";
+      SF Sg Loc => x + "ach";
+      SF Sg Voc => x + "y";
+      SF Pl Nom => x + "y";
+      SF Pl Gen => x + "ów";
+      SF Pl Dat => x + "om";
+      SF Pl Acc => x + "ów";
+      SF Pl Instr => x + "ami";
+      SF Pl Loc => x + "ach";
+      SF Pl Voc => x + "y"
+    };
+
+    oper mkNTable0891: Str -> SubstForm => Str; --%
+    oper mkNTable0891 lexem = 
+      let x = Predef.tk 3 lexem in
+    table { 
+      SF Sg Nom => x + "cia";
+      SF Sg Gen => x + "ć";
+      SF Sg Dat => x + "ciom";
+      SF Sg Acc => x + "cia";
+      SF Sg Instr => x + "ciami";
+      SF Sg Loc => x + "ciach";
+      SF Sg Voc => x + "cia";
+      SF Pl Nom => x + "cia";
+      SF Pl Gen => x + "ć";
+      SF Pl Dat => x + "ciom";
+      SF Pl Acc => x + "cia";
+      SF Pl Instr => x + "ciami";
+      SF Pl Loc => x + "ciach";
+      SF Pl Voc => x + "cia"
+    };
+
+    oper mkNTable0932: Str -> SubstForm => Str; --%
+    oper mkNTable0932 lexem = 
+      let x = Predef.tk 3 lexem in
+    table { 
+      SF Sg Nom => x + "oły";
+      SF Sg Gen => x + "ół";
+      SF Sg Dat => x + "ołom";
+      SF Sg Acc => x + "oły";
+      SF Sg Instr => x + "ołami";
+      SF Sg Loc => x + "ołach";
+      SF Sg Voc => x + "oły";
+      SF Pl Nom => x + "oły";
+      SF Pl Gen => x + "ół";
+      SF Pl Dat => x + "ołom";
+      SF Pl Acc => x + "oły";
+      SF Pl Instr => x + "ołami";
+      SF Pl Loc => x + "ołach";
+      SF Pl Voc => x + "oły"
+    };
+
+    oper mkNTable0967: Str -> SubstForm => Str; --%
+    oper mkNTable0967 lexem = 
+      let x = Predef.tk 3 lexem in
+    table { 
+      SF Sg Nom => x + "oty";
+      SF Sg Gen => x + "ót";
+      SF Sg Dat => x + "otom";
+      SF Sg Acc => x + "oty";
+      SF Sg Instr => x + "otami";
+      SF Sg Loc => x + "otach";
+      SF Sg Voc => x + "oty";
+      SF Pl Nom => x + "oty";
+      SF Pl Gen => x + "ót";
+      SF Pl Dat => x + "otom";
+      SF Pl Acc => x + "oty";
+      SF Pl Instr => x + "otami";
+      SF Pl Loc => x + "otach";
+      SF Pl Voc => x + "oty"
+    };
+
+    oper mkNTable0968: Str -> SubstForm => Str; --%
+    oper mkNTable0968 lexem = 
+      let x = Predef.tk 3 lexem in
+    table { 
+      SF Sg Nom => x + "eni";
+      SF Sg Gen => x + "ionych";
+      SF Sg Dat => x + "ionym";
+      SF Sg Acc => x + "ionych";
+      SF Sg Instr => x + "ionymi";
+      SF Sg Loc => x + "ionych";
+      SF Sg Voc => x + "eni";
+      SF Pl Nom => x + "eni";
+      SF Pl Gen => x + "ionych";
+      SF Pl Dat => x + "ionym";
+      SF Pl Acc => x + "ionych";
+      SF Pl Instr => x + "ionymi";
+      SF Pl Loc => x + "ionych";
+      SF Pl Voc => x + "eni"
+    };
+
+    oper mkNTable0992: Str -> SubstForm => Str; --%
+    oper mkNTable0992 lexem = 
+      let x = Predef.tk 2 lexem in
+    table { 
+      SF Sg Nom => x + "ła";
+      SF Sg Gen => x + "ieł";
+      SF Sg Dat => x + "łom";
+      SF Sg Acc => x + "ła";
+      SF Sg Instr => x + "łami";
+      SF Sg Loc => x + "łach";
+      SF Sg Voc => x + "ła";
+      SF Pl Nom => x + "ła";
+      SF Pl Gen => x + "ieł";
+      SF Pl Dat => x + "łom";
+      SF Pl Acc => x + "ła";
+      SF Pl Instr => x + "łami";
+      SF Pl Loc => x + "łach";
+      SF Pl Voc => x + "ła"
+    };
+
+    oper mkNTable1019: Str -> SubstForm => Str; --%
+    oper mkNTable1019 lexem = 
+      let x = Predef.tk 2 lexem in
+    table { 
+      SF Sg Nom => x + "ły";
+      SF Sg Gen => x + "eł";
+      SF Sg Dat => x + "łom";
+      SF Sg Acc => x + "ły";
+      SF Sg Instr => x + "łami";
+      SF Sg Loc => x + "łach";
+      SF Sg Voc => x + "ły";
+      SF Pl Nom => x + "ły";
+      SF Pl Gen => x + "eł";
+      SF Pl Dat => x + "łom";
+      SF Pl Acc => x + "ły";
+      SF Pl Instr => x + "łami";
+      SF Pl Loc => x + "łach";
+      SF Pl Voc => x + "ły"
+    };
+
+    oper mkNTable1024: Str -> SubstForm => Str; --%
+    oper mkNTable1024 lexem = 
       let x = Predef.tk 3 lexem in
     table { 
       SF Sg Nom => x + "ota";
diff --git a/lib/src/polish/NounPol.gf b/lib/src/polish/NounPol.gf
--- a/lib/src/polish/NounPol.gf
+++ b/lib/src/polish/NounPol.gf
@@ -2,7 +2,7 @@
 
 -- Adam Slaski, 2009, 2010 <adam.slaski@gmail.com>
 
-concrete NounPol of Noun = CatPol ** open ResPol, Prelude, PronounMorphoPol in {
+concrete NounPol of Noun = CatPol ** open ResPol, Prelude, PronounMorphoPol, MorphoPol in {
 
   flags optimize=all_subs ;
 
diff --git a/lib/src/polish/ParadigmsPol.gf b/lib/src/polish/ParadigmsPol.gf
--- a/lib/src/polish/ParadigmsPol.gf
+++ b/lib/src/polish/ParadigmsPol.gf
@@ -1,496 +1,28 @@
 --# -path=.:../abstract:../prelude:../common
 
---0 Polish Lexical Paradigms
-
--- Ilona Nowak Wintersemester 2007/08  
-
--- This is an API for the user of the resource grammar 
--- for adding lexical items. It gives functions for forming
--- expressions of open categories: nouns, adjectives, verbs.
- 
--- Closed categories ( pronouns, conjunctions) are
--- accessed through the resource syntax API, $Structural.gf$. 
--- For german and english grammar determiners are defined as 
--- closed categories in the file StructuralPol.gf.
--- In Polish language they aren't determiners.
-
--- The main difference between $MorphoPol.gf$ and $ParadigmsPol.gf$ is that the types 
--- referred to are compiled resource grammar types. I have moreover
--- had the design principle of always having existing forms, rather
--- than stems, as string arguments of the paradigms.
-
--- The structure of functions for each word class $C$ is the following:
--- first I give a handful of patterns that aim to cover all
--- regular cases. Then I give a worst-case function $mkC$, which serves as an
--- escape to construct the most irregular words of type $C$.
- 
--- The following modules are presupposed:
-
+-- Adam Slaski, 2011
 
    resource ParadigmsPol = open 
-     (Predef=Predef), 
-     Prelude, 
-     OrigMorphoPol,
-     (MorphoPol = OrigMorphoPol),
-     CatPol
+     MorphoPol, ResPol
   in 
      {
   flags  coding=utf8;
 
-
- oper Gender = MorphoPol.Gender;
-      Case = MorphoPol.Case;
-      Number = MorphoPol.Number;
-      Animacy = MorphoPol.Animacy;
-      Aspect = MorphoPol.Aspect;
---       Voice = MorphoPol.Voice;
---  Tense = Tense;
-      Bool = Prelude.Bool;
-
-
--- Used abbreviations 
-
-      masculineA = Masc Animate;
-      masculineI = Masc Inanimate;
-      masculineP = Masc Personal;
-      feminine  = Fem;
-      neuter = Neut;
-      nominative = Nom;
-      genitive = Gen;
-      dative = Dat;
-      accusative = Acc;
-      instrumental = Instr; -- new, is like instrumental in russian
-      locative = Loc; -- new, is like prepositional in russian
-      vocative = VocP;
-      singular = Sg;
-      plural = Pl;
-      animate = Animate;
-      inanimate = Inanimate;
-      personal = Personal;
-
-      true = True;
-      false = False;
-            
---1 Nouns
-
---  Parameters  --------
-
-    Gender : Type;
-
-    masculineP : Gender; -- personal
-    masculineA : Gender; -- animate
-    masculineI : Gender; -- inanimate
-    feminine   : Gender;
-    neuter     : Gender;
-
--- In Polish there are as in German 3 Genders: masculine, feminine and neuter.
--- But !!! in masculine declension we distinguish between:
--- a) masculineP - human, but !!! they are only masculine person:
--- f.e."mężczyzna" (man),"myśliwy" (hunter), "student" (student), 
--- "brat" (brother), "ksiądz" (pastor)),
--- b) animate (they are animals),
--- c) inanimate (all other nouns, "kobieta" (women), "dziewczyna" (girl) too.)
--- For declension of feminine and neuter nouns, it is not important,
--- if the noun is human, nonhuman, animate or inanimate. 
--- Only for masculine declension.
-
-
--- Animacy is only for masculine Nouns.
-    Animacy: Type; 
-    
-    animate: Animacy;
-    inanimate: Animacy; 
-    personal : Animacy;
-
-
-    Case : Type;
-
-    nominative    : Case;
-    genitive      : Case;
-    dative        : Case;
-    accusative    : Case; 
-    instrumental  : Case;
-    locative      : Case;
-    vocative      : Case;    
-
--- To abstract over case names, I defined seven cases.
--- The seventh case vocative is like in english the phrase
--- vocative f.e. "my darling". Vocative is defined in GF, 
--- so I'll define it here for Polish again, 
--- but later in the programs I will use the abbreviation VocP for it,.
--- otherwise the program will create a problem.
--- I had to do it, because it can't differ from
--- polish case vocative and the vocative form, that is defined in GF.
-
-                 
--- To abstract over number names, I define the following.
-    Number : Type;
-
-    singular : Number;
-    plural   : Number;
-
-
---1 Paradigms
-
--- Best case is for indeclinable nouns. They are: "alibi", "boa", "emu", "jury", "kakao", "menu", "zebu".
-
-  mkIndeclinableNoun: Str -> Gender -> N; --function declaration
-  
-  mkIndeclinableNoun = \str, g ->     -- function definition
-  {
-     s = table { SF _ _ => str };
-     g = g 
-  } ** {lock_N = <>};
-
-
--- Worst case gives many forms.
-
--- Here are some common patterns. The list is far from complete. 
--- Here will be handled only nouns, that are in GF-lexicon.
--- The very exact classification for polish nouns have 125 paradigms.
--- This information is from the internet site of Grzegorz Jagodziński
--- for polish grammar under http://free.of.pl/g/grzegorj/gram/pl/deklin04.htm
-
--------------------------------------------------
------ Abbreviation for names of declensions -----
--------------------------------------------------
--- VA1 - vowel alternation 1: o:ó, ó:o
--- VA2 - vowel alternation 2: a:e, e:o, ę:o, o:e
--- VA3 - vowel alternation 3: ę:ą, ą:ę
--- CA - consonant alternation
--- CL - consonant lengthening
--- CAL - consonant alternation and lengthening 
--- F - feminine
--- N - neuter
--- MP - masculine personal
--- MA - masculine animate
--- MI - masculine inanimate
-
-
----------- Patterns for feminine nouns ----------
-
-  nKapiel : Str -> N; -- feminine, subject ending in "-l"
-  nKapiel = \s -> l_End_F_1 s ** {lock_N = <>}; 
-
-  nLodz : Str -> N; -- feminine, subject ending in "-dź"
-  nLodz = \x -> dzx_End_VA1_CAL_F x ** {lock_N = <>};
-  
-  nSul : Str -> N; -- feminine, subject ending in "-l"
-  nSul = \x -> l_End_VA1_F x ** {lock_N = <>};
-             
-  nKonew : Str -> N; -- feminine, subject ending in "-w"
-  nKonew = \s -> w_End_FleetingEminus_F s ** {lock_N = <>};
-
-  nWies : Str -> N; -- feminine, subject ending in "-ś"
-  nWies = \x -> sx_End_CAL_FleetingIEminus_F x ** {lock_N = <>};
-
-  nDlon : Str -> N; -- feminine, subject ending in "-ń"
-  nDlon = \x -> nx_End_CAL_F x ** {lock_N = <>};
-
-  nSiec : Str -> N; -- feminine, subject ending in "-ć" (sieć),"-ść" (miłość)
-  nSiec = \x -> cx_End_CAL_F_1 x ** {lock_N = <>};
-
-  nDrzwi : Str -> N; -- drzwi, wnętrzności, usta
-  nDrzwi = \x -> onlyPlNoun x ** {lock_N = <>};
-
-  nKosc : Str -> N; -- feminine, subject ending in "-ść"(kość), "-ć" (nić),
-  nKosc = \x -> cx_End_CAL_F_2 x ** {lock_N = <>};
-
-  nNoc : Str -> N; -- feminine, subject ending in "-c", "-cz", "-rz", "-ż"
-  nNoc = \s -> hardened_End_F_1 s ** {lock_N = <>};
-
-  nWesz : Str -> N; -- feminine, subject ending in "-sz"
-  nWesz = \s -> sz_End_FleetingEminus_F s ** {lock_N = <>};
-
-  nKrolowa : Str -> N; -- feminine, subject ending in "-wa", but also for "księżna"
-  nKrolowa = \s -> wa_na_End_F s ** {lock_N = <>};
-
-  nReka : Str -> N; -- feminine "ręka", irregularly noun
-  nReka = \x -> k_End_Unregulary_VA3_CA_F x ** {lock_N = <>};
-
-  nApteka : Str -> N; -- feminine, subject ending in "-k", -"g", consonant alternation k:c, g:dz
-  nApteka = \s -> g_k_End_CA_F s ** {lock_N = <>}; 
-
-  nDroga : Str -> N; -- feminine, subject ending in "g", consonant alternation d:dz, vowel alternation o:ó
-  nDroga = \s -> g_End_VA1_CA_F s ** {lock_N = <>};      
-     
-  nMatka : Str -> N; -- feminine, subject ending in -k,consonant alternation k:c, fleeting e
-  nMatka = \s -> k_End_CA_FleetingEplus_F s ** {lock_N = <>};
-
-  nZiemia : Str -> N; -- feminine, subject ending in "-ia"
-  nZiemia = \s -> ia_End_F_1 s ** {lock_N = <>};
-
-  nFala : Str -> N; -- feminine, subject ending in "-l"
-  nFala = \s -> l_End_F_2 s ** {lock_N = <>};
-
-  nLilia : Str -> N; -- feminine, subject ending in "-ia"
-  nLilia = \s -> ia_End_F_2 s ** {lock_N = <>};
-
-  nKobieta : Str -> N; -- feminine, subject ending in "-t"
-  nKobieta = \s -> hard_End_CAL_F s ** {lock_N = <>};
-
-  nLiczba : Str -> N; -- feminine, subject ending in "-b", "-p", "-n"
-  nLiczba = \s -> hard_End_CL_F s ** {lock_N = <>};
-
-  nSila : Str -> N; -- feminine, subject ending in "-ł", "-r"
-  nSila = \s -> hard_End_CA_F s ** {lock_N = <>};
-
-  nDoba : Str -> N; -- feminine, subject ending in "-b", "-p"
-  nDoba = \s -> hard_End_VA1_CL_F s ** {lock_N = <>};
-
-  nWoda : Str -> N; -- feminine, subject ending in "-d"
-  nWoda = \s -> hard_End_VA1_CAL_F s ** {lock_N = <>};
-
-  nSzkola : Str -> N; -- feminine, subject ending in "-oła", "-ra"
-  nSzkola = \s -> hard_End_VA1_CA_F s ** {lock_N = <>};
-
-  nWojna : Str -> N; -- feminine, subject ending in two consonants: jn, łz, łn, ćm,żw 
-  nWojna = \s -> hard_End_CL_FleetingEplus_F s ** {lock_N = <>};
-
-  nWiosna : Str -> N; -- feminine, subject ending in two consonants: sn 
-  nWiosna = \s -> sn_End_CAL_FleetingIEplus_F s ** {lock_N = <>};
-
-  nMgla : Str -> N; -- feminine, subject ending in "-gł"
-  nMgla = \x -> hard_l_End_CA_FleetingIEplus_F x ** {lock_N = <>};
-
-  nGwiazda : Str -> N; -- feminine, subject ending in "-zd"
-  nGwiazda = \s -> zd_st_End_VA2_CAL_F s ** {lock_N = <>};
-
-  nUlica : Str -> N; -- feminine, subject ending mainly in "-c", but also in "-ż", "-rz", "-dz"
-  nUlica = \s -> hardened_End_F_2 s ** {lock_N = <>};
-
-  nOwca : Str -> N; -- feminine, subject ending in "-c"
-  nOwca = \x -> c_End_FleetingIEplus_F x ** {lock_N = <>};
-
-
--------- Patterns for neuter nouns ----------
-
-
-  nDanie : Str -> N; -- neuter, subject ending in "-ni"
-  nDanie = \s -> ci_ni_week_End_CA_N s ** {lock_N = <>};
-
-  nSerce : Str -> N; -- neuter, subject ending in a hardened consonant "-c", "-rz"
-  nSerce = \s -> hardened_End_N s ** {lock_N = <>};
-
-  nNasienie : Str -> N; -- neuter, subject ending in "-ni" (only for "nasienie")
-  nNasienie = \x -> ni_End_VA2_N x ** {lock_N = <>};
-
-  nMorze : Str -> N; -- neuter, subject ending in "-rz", "-ż"
-  nMorze = \x -> rz_zx_End_VA1_N x ** {lock_N = <>};
-
-  nImie : Str -> N; -- neuter, subject ending in "-ę"
-  nImie = \x -> ex_End_VA2_N x ** {lock_N = <>};
-
-  nCiele : Str -> N; -- neuter, subject ending in "-ę"
-  nCiele = \s -> ex_End_VA3_N s ** {lock_N = <>};
-
-  nUdo : Str -> N; -- neuter, subject ending in hard consonant + "o"
-  nUdo = \s -> hard_End_CAL_N s ** {lock_N = <>};
-
-  nPiwo : Str -> N; -- neuter, subject ending in a hard consonant + "o"
-  nPiwo = \s -> hard_End_CL_N s ** {lock_N = <>};
-
-  nZero : Str -> N; -- neuter, subject ending in "-r"
-  nZero = \s -> r_End_CA_N s ** {lock_N = <>};
-
-  nNiebo : Str -> N; -- neuter, declension for "niebo"
-  nNiebo = \x -> niebo_Unregulary_N x ** {lock_N = <>};
-
-  nTlo : Str -> N; -- neuter, subject ending in "-ło"
-  nTlo = \s -> lx_End_CA_FleetingEplus_N s ** {lock_N = <>};
-
-  nZebro : Str -> N; -- neuter, subject ending in "-r"
-  nZebro = \s -> hard_End_CA_FleetingEplus_N s ** {lock_N = <>};
-
-  nOkno : Str -> N; -- neuter, subject ending in "-n"
-  nOkno = \s -> n_End_CL_FleetingIEplus_N s ** {lock_N = <>};
- 
-  nGniazdo : Str -> N; -- neuter, subject ending in "-zd", "-st"
-  nGniazdo = \s -> hard_End_VA_CAL_N s ** {lock_N = <>};
-
-  nWojsko : Str -> N; -- neuter, subject ending in "-k"
-  nWojsko = \s -> k_End_CL_N s ** {lock_N = <>};
-
-  nJajo : Str -> N; -- neuter, subject ending in "-j"
-  nJajo = \s -> j_End_N s ** {lock_N = <>};
-
-  nJablko : Str -> N; -- neuter, subject ending in "-k"
-  nJablko = \s -> k_End_CL_FleetingEplus_N s ** {lock_N = <>};
-
-  nStudio : Str -> N; -- neuter, subject ending in "-n"
-  nStudio = \s -> o_End_N s ** {lock_N = <>};
-
-  nDziecko : Str -> N; -- neuter, subject ending in "-n"
-  nDziecko = \s -> k_End_CAL_N s ** {lock_N = <>};
-
-  nUcho : Str -> N; -- neuter, subject ending in "-ch"
-  nUcho = \x -> ch_End_Unregulary_CA_N x ** {lock_N = <>};
-
-  nOko : Str -> N; -- neuter, subject ending in "-k"
-  nOko = \x -> k_End_Unregulary_CAL_N x ** {lock_N = <>};
-
-
----- Patterns for personal masculine nouns ------
-
-  nFacet : Str -> N; -- masculine personal, subject ending in a hard consonant "-t", -"n", nom pl "-i"
-  nFacet = \s -> hard_End_CAL_MP_1 s ** {lock_N = <>};
-
-  nArab : Str -> N; -- masculine personal, subject ending in a hard consonant "-t", -"n", nom pl "-y"
-  nArab = \s -> hard_End_CAL_MP_2 s ** {lock_N = <>};
-
-  nPrzyjaciel : Str -> N; -- masculine personal, subject ending in a hard consonant "-l"
-  nPrzyjaciel = \s -> przyjaciel_VA1_VA2_CA_MP s ** {lock_N = <>};
-
-  nKowal : Str -> N; -- masculine personal, subject ending in a hard consonant "-l"
-  nKowal = \s -> l_End_MP s ** {lock_N = <>};
-
-  nLekarz : Str -> N; -- masculine personal ending in -rz, -ż, -cz, -sz (piekarz, lekarz, papież, tłumacz, piwosz)
-  nLekarz = \s -> hardened_End_MP s ** {lock_N = <>};
-
-  nKrol : Str -> N; -- masculine personal, subject ending in "-ul"
-  nKrol = \s -> ul_End_MP s ** {lock_N = <>};
-
-  nMaz : Str -> N; -- masculine personal
-  nMaz = \s -> maz_MP s ** {lock_N = <>};
-
-  nWrog : Str -> N; -- masculine personal, subject ending in "-g"; only for "wróg"
-  nWrog = \s -> wrog_VA1_CL_MP s ** {lock_N = <>};
-
---  nCzlowiek : Str -> N; -- masculine personal
---  nCzlowiek = \s -> ul_End_MP s ** {lock_N = <>};
-
-  nKsiadz : Str -> N; -- masculine personal
-  nKsiadz = \s -> ksiadz_VA3_CA_MP s ** {lock_N = <>};
-
-  nOjciec : Str -> N; -- masculine personal for "ojciec"
-  nOjciec = \s -> ciec_End_CA_FleetingIEminus_MP s ** {lock_N = <>};
-
-  nBrat : Str -> N; -- masculine personal
-  nBrat = \s -> hard_End_CAL_MP s ** {lock_N = <>};
-
-  nBog : Str -> N; -- masculine personal
-  nBog = \s -> bog_VA1_CAL_MP s ** {lock_N = <>};
-
-  nChlopiec : Str -> N; -- masculine personal
-  nChlopiec = \s -> iec_End_CA_FleetingIEminus_MP s ** {lock_N = <>};
-
-  nMezczyzna : Str -> N; -- masculine personal
-  nMezczyzna = \s -> zna_End_CAL_MP s ** {lock_N = <>};
-
-
-------------------- Patterns for animate masculine nouns -------
-
-
-  nKon : Str -> N; -- masculine animate, for "koń"
-  nKon = \s -> kon_CAL_MA s ** {lock_N = <>};
-
-  nWaz : Str -> N; -- masculine animate, for "wąż"
-  nWaz = \s -> waz_VA3_MA s ** {lock_N = <>};
-  
-  nPtak : Str -> N; -- masculine animate, subject ending in "-k"
-  nPtak = \s -> k_End_CL_MA s ** {lock_N = <>};
-
-  nKot : Str -> N; -- masculine animate, for "kot"
-  nKot = \s -> kot_CAL_MA s ** {lock_N = <>};
-
-  nPies : Str -> N; -- masculine animate, for "pies"
-  nPies = \s -> pies_CL_FleetingIEminus_MA s ** {lock_N = <>};
-
-
-
------------------- Patterns for inanimate masculine nouns -----
-
- nBat : Str -> N; -- masculine inanimate, subject ending in a vowel + hard consonant
- nBat = \s -> vowel_hard_CAL_MI s ** {lock_N = <>};
-
- nChleb : Str -> N; -- masculine inanimate, subject ending in a vowel + hard consonant
- nChleb = \s -> vowel_hard_CL_MI s ** {lock_N = <>};
-
- nSer : Str -> N; -- masculine inanimate, subject ending in "-r"
- nSer = \s -> r_End_CA_MI s ** {lock_N = <>};
-
- nZab : Str -> N; -- masculine inanimate, subject ending in "-ąb"
- nZab = \s -> ab_End_VA3_CL_MI s ** {lock_N = <>};
-
- nKosciol : Str -> N; -- masculine inanimate, for "kosciół"
- nKosciol = \s -> kosciol_VA1_VA2_CA_MI s ** {lock_N = <>};
-
- nCien : Str -> N; -- masculine inanimate, subject ending in a week consonant
- nCien = \s -> week_End_CAL_MI s ** {lock_N = <>};
-
- nPien : Str -> N; -- masculine inanimate, subject ending in a week consonant
- nPien = \s -> week_End_CAL_FleetingIEminus_MI s ** {lock_N = <>};
-
- nLisc : Str -> N; -- masculine inanimate, subject ending in a vowel + hard consonant
- nLisc = \s -> lisc_CAL_MI s ** {lock_N = <>};
-
- nKoc : Str -> N; -- masculine inanimate, subject ending in a hardened consonant
- nKoc = \s -> hardened_End_MI_1 s ** {lock_N = <>};
-
- nWiersz : Str -> N; -- masculine inanimate, subject ending in a hardened consonant
- nWiersz = \s -> hardened_End_MI_2 s ** {lock_N = <>};
-
- nDzien : Str -> N; -- masculine inanimate, for "dzień"
- nDzien = \s -> dzien_MI s ** {lock_N = <>};
-
- nKajak : Str -> N; -- masculine inanimate, subject ending in -g or -k
- nKajak = \s -> g_k_End_CL_MI_1 s ** {lock_N = <>};
-
- nMlotek : Str -> N; -- masculine inanimate, subject ending in -ek
- nMlotek = \s -> k_End_CL_FleetingEminus_MI s ** {lock_N = <>};
-
- nMiech : Str -> N; -- masculine inanimate, subject ending in -ch
- nMiech = \s -> ch_End_MI s ** {lock_N = <>};
-
- nSad : Str -> N; -- masculine inanimate, subject ending in a hard consonant
- nSad = \s -> hard_End_CAL_MI s ** {lock_N = <>};
-
- nDym : Str -> N; -- masculine inanimate, subject ending in a hard consonant
- nDym = \s -> hard_End_CL_MI s ** {lock_N = <>};
-
- nWal : Str -> N; -- masculine inanimate, subject ending in a vowel + hard consonant
- nWal = \s -> hard_End_CA_MI s ** {lock_N = <>};
-
- nDol : Str -> N; -- masculine inanimate, subject ending in a vowel + hard consonant
- nDol = \s -> hard_End_VA1_CA_MI s ** {lock_N = <>};
-
- nOgrod : Str -> N; -- masculine inanimate, subject ending in a vowel + hard consonant
- nOgrod = \s -> hard_End_VA1_CAL_MI s ** {lock_N = <>};
-
- nKwiat : Str -> N; -- masculine inanimate, subject ending in a vowel + hard consonant
- nKwiat = \s -> hard_End_VA2_CAL_MI s ** {lock_N = <>};
-
- nLas : Str -> N; -- masculine inanimate, subject ending in a vowel + hard consonant
- nLas = \s -> hard_End_VA2_CL_MI s ** {lock_N = <>};
-
- nWiatr : Str -> N; -- masculine inanimate, subject ending in a vowel + hard consonant
- nWiatr = \s -> wiatr_VA2_CA_MI s ** {lock_N = <>};
-
- nPopiol : Str -> N; -- masculine inanimate, subject ending in a vowel + hard consonant
- nPopiol = \s -> popiol_VA2_CA_MI s ** {lock_N = <>};
-
- nPokoj : Str -> N; -- masculine inanimate, subject ending in -ój
- nPokoj = \s -> onlySgNoun s ** {lock_N = <>};
-
- nGaj : Str -> N; -- masculine inanimate, subject ending in a vowel + hard consonant j
- nGaj = \s -> vowel_j_or_handened_End_MI s ** {lock_N = <>};
-
- nBrzeg : Str -> N; -- masculine inanimate, subject ending in -g or -k
- nBrzeg = \s -> g_k_End_CL_MI_2 s ** {lock_N = <>};
-
- nRok : Str -> Str -> N; -- masculine inanimate for "rok", form in pl irregular
- nRok = \s, t -> rok_UnregularyPl_CL_MI s t ** {lock_N = <>};
-
- nProg : Str -> N; -- masculine inanimate, subject ending in -óg
- nProg = \s -> ug_End_VA1_CL_MI s ** {lock_N = <>};
-
- nStatek : Str -> N; -- masculine inanimate, subject ending in -ek
- nStatek = \s -> k_End_CL_FleetingEmins_MI s ** {lock_N = <>};
-
- nDom : Str -> N; -- masculine inanimate, subject ending in -ch and for dom
- nDom = \s -> ch_End_dom_MI s ** {lock_N = <>};
-
-
+  oper mkPN : Str -> (Str -> SubstForm => Str) -> GenNum -> NounPhrase;
+  oper mkPN form tab gennum = 
+      { nom = (tab form)!SF Sg Nom; 
+		voc = (tab form)!SF Sg VocP;
+        dep = let forms = (tab form) in table {
+          GenPrep|GenNoPrep=>forms!SF Sg Gen; 
+		  AccPrep|AccNoPrep=>forms!SF Sg Acc;
+          DatPrep|DatNoPrep=>forms!SF Sg Dat; 
+		  InstrC=>forms!SF Sg Instr;
+          LocPrep=>forms!SF Sg Loc};
+        gn= gennum ; 
+		p=P3
+      } ;
 
+  oper mkA2 : Adj -> Str -> ComplCase -> Adj ** {c : Complement };
+  oper mkA2 adj s c = adj ** { c={s=s; c=c} };
 
 };
diff --git a/lib/src/polish/RelativePol.gf b/lib/src/polish/RelativePol.gf
--- a/lib/src/polish/RelativePol.gf
+++ b/lib/src/polish/RelativePol.gf
@@ -2,7 +2,7 @@
 
 -- Adam Slaski, 2009 <adam.slaski@gmail.com>
 
-concrete RelativePol of Relative = CatPol ** open ResPol, VerbMorphoPol in {
+concrete RelativePol of Relative = CatPol ** open ResPol, MorphoPol in {
 
  flags optimize=all_subs ; coding=utf8 ;
 
@@ -15,8 +15,10 @@
 
 --     RelCl    : Cl -> RCl ;            -- such that John loves her
     RelCl cl = {
-      s = \\_,pol, ant, ten => ["tak, że"] ++ cl.s ! pol ! ant ! ten
+      s = \\gn, pol, ant, ten => ["tak , że"] ++ cl.s ! pol ! ant ! ten
     };
+	-- this is only sometimes correct. there is no way to find a case for 'taki' ('such') so rp 'taki' was substituted with sentence adv 'tak'
+
 
 --     RelVP    : RP -> VP -> RCl ;      -- who loves John
 -- enormous memory usage !!! 
diff --git a/lib/src/polish/ResPol.gf b/lib/src/polish/ResPol.gf
--- a/lib/src/polish/ResPol.gf
+++ b/lib/src/polish/ResPol.gf
@@ -292,81 +292,81 @@
       };
 
 
-  ktory : AForm => Str = table {
-	     AF (MascPersSg|MascAniSg|MascInaniSg) Nom => "który"; 
-	     AF (MascPersSg|MascAniSg|MascInaniSg) Gen => "którego";
-	     AF (MascPersSg|MascAniSg|MascInaniSg) Dat => "któremu"; 
-	     AF MascInaniSg Acc => "który"; -- który stół widzę
-	     AF (MascPersSg|MascAniSg) Acc => "którego"; -- którego psa / przyjaciela widzę
-	     AF (MascPersSg|MascAniSg|MascInaniSg) Instr => "którym";
-	     AF (MascPersSg|MascAniSg|MascInaniSg) Loc => "którym"; 
-	     AF (MascPersSg|MascAniSg|MascInaniSg) VocP => "który";
+  -- ktory : AForm => Str = table {
+  -- 	     AF (MascPersSg|MascAniSg|MascInaniSg) Nom => "który"; 
+  -- 	     AF (MascPersSg|MascAniSg|MascInaniSg) Gen => "którego";
+  -- 	     AF (MascPersSg|MascAniSg|MascInaniSg) Dat => "któremu"; 
+  -- 	     AF MascInaniSg Acc => "który"; -- który stół widzę
+  -- 	     AF (MascPersSg|MascAniSg) Acc => "którego"; -- którego psa / przyjaciela widzę
+  -- 	     AF (MascPersSg|MascAniSg|MascInaniSg) Instr => "którym";
+  -- 	     AF (MascPersSg|MascAniSg|MascInaniSg) Loc => "którym"; 
+  -- 	     AF (MascPersSg|MascAniSg|MascInaniSg) VocP => "który";
 	     
-	     AF FemSg Nom => "która" ; 
-	     AF FemSg Gen => "której";
-	     AF FemSg Dat => "której"; 
-	     AF FemSg Acc => "którą"; 
-	     AF FemSg Instr => "którą";
-	     AF FemSg Loc => "której";
-	     AF FemSg VocP => "która";   
+  -- 	     AF FemSg Nom => "która" ; 
+  -- 	     AF FemSg Gen => "której";
+  -- 	     AF FemSg Dat => "której"; 
+  -- 	     AF FemSg Acc => "którą"; 
+  -- 	     AF FemSg Instr => "którą";
+  -- 	     AF FemSg Loc => "której";
+  -- 	     AF FemSg VocP => "która";   
 	         
-	     AF NeutSg Nom => "które" ; 
-	     AF NeutSg Gen => "którego";
-	     AF NeutSg Dat  => "któremu"; 
-	     AF NeutSg Acc => "które"; 
-	     AF NeutSg Instr => "którym";
-	     AF NeutSg Loc => "którym";
-	     AF NeutSg VocP => "które"; 
+  -- 	     AF NeutSg Nom => "które" ; 
+  -- 	     AF NeutSg Gen => "którego";
+  -- 	     AF NeutSg Dat  => "któremu"; 
+  -- 	     AF NeutSg Acc => "które"; 
+  -- 	     AF NeutSg Instr => "którym";
+  -- 	     AF NeutSg Loc => "którym";
+  -- 	     AF NeutSg VocP => "które"; 
 	
-     	 AF MascPersPl Nom => "którzy"; 
-	     AF (MascPersPl|OthersPl) Nom => "które"; 
-	     AF (MascPersPl|OthersPl) Gen => "których";
-	     AF (MascPersPl|OthersPl) Dat => "którym"; 
-	     AF MascPersPl Acc => "których"; 
-	     AF (MascPersPl|OthersPl) Acc => "które"; 
-	     AF (MascPersPl|OthersPl) Instr => "którymi";
-	     AF (MascPersPl|OthersPl) Loc => "których";
-	     AF MascPersPl VocP => "którzy"; 
-	     AF (MascPersPl|OthersPl) VocP=> "które"
-	   };
+  --    	 AF MascPersPl Nom => "którzy"; 
+  -- 	     AF (MascPersPl|OthersPl) Nom => "które"; 
+  -- 	     AF (MascPersPl|OthersPl) Gen => "których";
+  -- 	     AF (MascPersPl|OthersPl) Dat => "którym"; 
+  -- 	     AF MascPersPl Acc => "których"; 
+  -- 	     AF (MascPersPl|OthersPl) Acc => "które"; 
+  -- 	     AF (MascPersPl|OthersPl) Instr => "którymi";
+  -- 	     AF (MascPersPl|OthersPl) Loc => "których";
+  -- 	     AF MascPersPl VocP => "którzy"; 
+  -- 	     AF (MascPersPl|OthersPl) VocP=> "które"
+  -- 	   };
 	   
-  jaki : AForm => Str = table {
-	     AF (MascPersSg|MascAniSg|MascInaniSg) Nom => "jaki"; 
-	     AF (MascPersSg|MascAniSg|MascInaniSg) Gen => "jakiego";
-	     AF (MascPersSg|MascAniSg|MascInaniSg) Dat => "jakiemu"; 
-	     AF MascInaniSg Acc => "jaki"; -- jakiy stół widzę
-	     AF (MascPersSg|MascAniSg) Acc => "jakiego"; -- jakiego psa / przyjaciela widzę
-	     AF (MascPersSg|MascAniSg|MascInaniSg) Instr => "jakim";
-	     AF (MascPersSg|MascAniSg|MascInaniSg) Loc => "jakim"; 
-	     AF (MascPersSg|MascAniSg|MascInaniSg) VocP => "jaki";
+  -- jaki : AForm => Str = table {
+  -- 	     AF (MascPersSg|MascAniSg|MascInaniSg) Nom => "jaki"; 
+  -- 	     AF (MascPersSg|MascAniSg|MascInaniSg) Gen => "jakiego";
+  -- 	     AF (MascPersSg|MascAniSg|MascInaniSg) Dat => "jakiemu"; 
+  -- 	     AF MascInaniSg Acc => "jaki"; -- jakiy stół widzę
+  -- 	     AF (MascPersSg|MascAniSg) Acc => "jakiego"; -- jakiego psa / przyjaciela widzę
+  -- 	     AF (MascPersSg|MascAniSg|MascInaniSg) Instr => "jakim";
+  -- 	     AF (MascPersSg|MascAniSg|MascInaniSg) Loc => "jakim"; 
+  -- 	     AF (MascPersSg|MascAniSg|MascInaniSg) VocP => "jaki";
 	     
-	     AF FemSg Nom => "jaka" ; 
-	     AF FemSg Gen => "jakiej";
-	     AF FemSg Dat => "jakiej"; 
-	     AF FemSg Acc => "jaką"; 
-	     AF FemSg Instr => "jaką";
-	     AF FemSg Loc => "jakej";
-	     AF FemSg VocP => "jaka";   
+  -- 	     AF FemSg Nom => "jaka" ; 
+  -- 	     AF FemSg Gen => "jakiej";
+  -- 	     AF FemSg Dat => "jakiej"; 
+  -- 	     AF FemSg Acc => "jaką"; 
+  -- 	     AF FemSg Instr => "jaką";
+  -- 	     AF FemSg Loc => "jakej";
+  -- 	     AF FemSg VocP => "jaka";   
 	         
-	     AF NeutSg Nom => "jakie" ; 
-	     AF NeutSg Gen => "jakiego";
-	     AF NeutSg Dat  => "jakiemu"; 
-	     AF NeutSg Acc => "jakie"; 
-	     AF NeutSg Instr => "jakim";
-	     AF NeutSg Loc => "jakim";
-	     AF NeutSg VocP => "jakie"; 
+  -- 	     AF NeutSg Nom => "jakie" ; 
+  -- 	     AF NeutSg Gen => "jakiego";
+  -- 	     AF NeutSg Dat  => "jakiemu"; 
+  -- 	     AF NeutSg Acc => "jakie"; 
+  -- 	     AF NeutSg Instr => "jakim";
+  -- 	     AF NeutSg Loc => "jakim";
+  -- 	     AF NeutSg VocP => "jakie"; 
 	
-     	 AF MascPersPl Nom => "jacy"; 
-	     AF (MascPersPl|OthersPl) Nom => "jakie"; 
-	     AF (MascPersPl|OthersPl) Gen => "jakich";
-	     AF (MascPersPl|OthersPl) Dat => "jakim"; 
-	     AF MascPersPl Acc => "jakich"; 
-	     AF (MascPersPl|OthersPl) Acc => "jakie"; 
-	     AF (MascPersPl|OthersPl) Instr => "jakimi";
-	     AF (MascPersPl|OthersPl) Loc => "jakich";
-	     AF MascPersPl VocP => "jacy"; 
-	     AF (MascPersPl|OthersPl) VocP=> "jakie"
-	   };
+  --    	 AF MascPersPl Nom => "jacy"; 
+  -- 	     AF (MascPersPl|OthersPl) Nom => "jakie"; 
+  -- 	     AF (MascPersPl|OthersPl) Gen => "jakich";
+  -- 	     AF (MascPersPl|OthersPl) Dat => "jakim"; 
+  -- 	     AF MascPersPl Acc => "jakich"; 
+  -- 	     AF (MascPersPl|OthersPl) Acc => "jakie"; 
+  -- 	     AF (MascPersPl|OthersPl) Instr => "jakimi";
+  -- 	     AF (MascPersPl|OthersPl) Loc => "jakich";
+  -- 	     AF MascPersPl VocP => "jacy"; 
+  -- 	     AF (MascPersPl|OthersPl) VocP=> "jakie"
+  -- 	   };
  
   siebie : Case => Str = table {
     Nom => "się";
diff --git a/lib/src/polish/SentencePol.gf b/lib/src/polish/SentencePol.gf
--- a/lib/src/polish/SentencePol.gf
+++ b/lib/src/polish/SentencePol.gf
@@ -74,6 +74,7 @@
     
 --     AdvS     : Adv -> S  -> S ;            -- today, I will go home
     AdvS adv s = { s = adv.s ++ s.s };
+    ExtAdvS adv s = { s = adv.s ++ "," ++ s.s };
     
 --     SlashPrep : Cl -> Prep -> ClSlash ;         -- (with whom) he walks 
     SlashPrep c p = { s=c.s; c=p };
diff --git a/lib/src/polish/StructuralPol.gf b/lib/src/polish/StructuralPol.gf
--- a/lib/src/polish/StructuralPol.gf
+++ b/lib/src/polish/StructuralPol.gf
@@ -37,8 +37,8 @@
   during_Prep  = mkPrep "podczas" Gen; 
   either7or_DConj = {s1="albo"; s2="albo";  sent1="albo"; sent2=[", albo"]};
   every_Det  = kazdyDet;
-  everybody_NP = wszyscy ** {lock_NP=<>};
-  everything_NP  = wszystko ** {lock_NP=<>};
+  everybody_NP = wszyscy;
+  everything_NP  = wszystko;
   everywhere_Adv = ss "wszędzie";
   except_Prep = mkPrep "z wyjątkiem" Acc;
   few_Det = pareDet;
@@ -81,10 +81,10 @@
   quite_Adv = ss "całkiem";
   she_Pron   = pronOna;
   so_AdA = ss "tak";
-  somebody_NP = ktos ** {lock_NP = <>};
+  somebody_NP = ktos ;
   someSg_Det = pewienDet;
   somePl_Det = pewniDet;
-  something_NP  = cos ** {lock_NP = <>};
+  something_NP  = cos ;
   somewhere_Adv  = ss "gdzieś";
   that_Quant = demPronTen "tamten";
   there_Adv = ss "tam";
diff --git a/lib/src/polish/VerbMorphoPol.gf b/lib/src/polish/VerbMorphoPol.gf
--- a/lib/src/polish/VerbMorphoPol.gf
+++ b/lib/src/polish/VerbMorphoPol.gf
@@ -68,6 +68,14 @@
     \wzmoc -> let wzm = Predef.tk 2 wzmoc 
     in mkRegConjCl wzmoc wzm "óż" "óżmy" "óżcie" "ogę" "ożesz" "oże" "ożemy" "ożecie" "ogą" "ógł" "ogła" "ogło" "ogli" "ogły" "ożon" "ożen";
   
+  oper conj29 : ConjCl = 
+    \wiesc -> let wi = Predef.tk 3 wiesc
+    in mkRegConjCl wiesc wi "edź" "edźmy" "edźcie" "odę" "edziesz" "edzie" "edziemy" "edziecie" "odą" "ódł" "odła" "odło" "edli" "odły" "edzion" "edzen";
+
+  oper conj31 : ConjCl = 
+    \niesc -> let ni = Predef.tk 3 niesc
+    in mkRegConjCl niesc ni "eś" "eśmy" "eście" "osę" "esiesz" "esie" "esiemy" "esiecie" "osą" "ósł" "osła" "osło" "eśli" "osły" "esion" "esien";
+
   oper conj40 : ConjCl = 
     \znalezc -> let zna = Predef.tk 4 znalezc 
     in mkRegConjCl znalezc zna "jdź" "jdźmy" "jdźcie" "jdę" "jdziesz" "jdzie" "jdziemy" "jdziecie" "jdą" "lazł" "lazła" "lazło" "leźli" "lazły" "lezion" "lezien";
@@ -108,6 +116,10 @@
     \skazywac -> let skaz = Predef.tk 4 skazywac 
     in mkRegConjCl skazywac skaz "uj" "ujmy" "ujcie" "uję" "ujesz" "uje" "ujemy" "ujecie" "ują" "ywał" "ywała" "ywało" "ywali" "ywały" "ywan" "ywan";
   
+  oper conj55 : ConjCl = 
+    \oszukiwac -> let oszuk = Predef.tk 4 oszukiwac
+    in mkRegConjCl oszukiwac oszuk "uj" "ujmy" "ujcie" "uję" "ujesz" "uje" "ujemy" "ujecie" "ują" "iwał" "iwała" "iwało" "iwali" "iwały" "iwan" "iwan";
+ 
   oper conj57 : ConjCl = 
     \dawac -> let da = Predef.tk 3 dawac
     in mkRegConjCl dawac da "waj" "wajmy" "wajcie" "ję" "jesz" "je" "jemy" "jecie" "ją" "wał" "wała" "wało" "wali" "wały" "wan" "wan";
@@ -128,6 +140,10 @@
     \rwac -> let rw = Predef.tk 2 rwac 
     in mkRegConjCl rwac rw "ij" "ijmy" "ijcie" "ę" "iesz" "ie" "iemy" "iecie" "ą" "ał" "ała" "ało" "ali" "ały" "an" "an";
     
+  oper conj66 : ConjCl = 
+    \brac -> let b = Predef.tk 3 brac
+    in mkRegConjCl brac b "ierz" "ierzmy" "ierzcie" "iorę" "ierzesz" "ierze" "ierzemy" "ierzecie" "iorą" "rał" "rała" "rało" "rali" "rały" "ran" "ran";
+
   oper conj67 : ConjCl = 
     \wyslac -> let wy = Predef.tk 4 wyslac 
     in mkRegConjCl wyslac wy "ślij" "ślijmy" "ślijcie" "ślę" "ślesz" "śle" "ślemy" "ślecie" "ślą" "słał" "słała" "słało" "słali" "słały" "słan" "słan";
@@ -144,6 +160,10 @@
     \lubic -> let lub = Predef.tk 2 lubic 
     in mkRegConjCl lubic lub "" "my" "cie" "ię" "isz" "i" "imy" "icie" "ią" "ił" "iła" "iło" "ili" "iły" "ian" "ian";
   
+  oper conj74 : ConjCl = 
+    \wasnic -> let wasni = Predef.tk 1 wasnic
+    in mkRegConjCl wasnic wasni "j" "jmy" "jcie" "ę" "isz" "i" "imy" "icie" "ą" "ił" "iła" "iło" "ili" "iły" "on" "en";
+
   oper conj75 : ConjCl = 
     \dzielic -> let dziel = Predef.tk 2 dzielic 
     in mkRegConjCl dzielic dziel "" "my" "cie" "ę" "isz" "i" "imy" "icie" "ą" "ił" "iła" "iło" "ili" "iły" "on" "en";
@@ -160,6 +180,10 @@
     \budzic -> let bud = Predef.tk 3 budzic 
     in mkRegConjCl budzic bud "ź" "źmy" "źcie" "zę" "zisz" "zi" "zimy" "zicie" "zą" "ził" "ziła" "ziło" "zili" "ziły" "zon" "zen";
   
+  oper conj80em : ConjCl = 
+    \dowodzic -> let dow = Predef.tk 5 dowodzic 
+    in mkRegConjCl dowodzic dow "ódź" "ódźmy" "ódźcie" "odzę" "odzisz" "odzi" "odzimy" "odzicie" "odzą" "odził" "odziła" "odziło" "odzili" "odziły" "odzon" "odzen";
+
   oper conj81 : ConjCl = 
     \tracic -> let tra = Predef.tk 3 tracic 
     in mkRegConjCl tracic tra "ć" "ćmy" "ćcie" "cę" "cisz" "ci" "cimy" "cicie" "cą" "cił" "ciła" "ciło" "cili" "ciły" "con" "cen";
@@ -380,10 +404,10 @@
 -- a particle can be included in a $V$.
   
   mkV2 : Verb -> Str -> Case -> V2;  
-  mkV2 v p cas = v ** { c = mkCompl p cas; lock_V2 = <>}; 
+  mkV2 v p cas = v ** { c = mkCompl p cas; lock_V2 = <> }; 
   
   mkV3 : Verb -> Str -> Str -> Case -> Case -> V3; 
-  mkV3 v s1 s2 c1 c2 = v ** { c = mkCompl s1 c1; c2 = mkCompl s2 c2; lock_V3 = <>};  
+  mkV3 v s1 s2 c1 c2 = v ** { c = mkCompl s1 c1; c2 = mkCompl s2 c2; lock_V3 = <> };  
   
   dirV2 : Verb -> V2; -- a typical case ie. "kochać", "pisać"
   dirV2 v = mkV2 v [] Acc;
diff --git a/lib/src/prelude/Predef.gf b/lib/src/prelude/Predef.gf
--- a/lib/src/prelude/Predef.gf
+++ b/lib/src/prelude/Predef.gf
@@ -27,6 +27,9 @@
   oper eqStr  : Tok -> Tok -> PBool    = variants {} ; -- test if equal strings
   oper occur  : Tok -> Tok -> PBool    = variants {} ; -- test if occurs as substring
   oper occurs : Tok -> Tok -> PBool    = variants {} ; -- test if any char occurs
+  oper isUpper : Tok       -> PBool    = variants {} ; -- test if all chars are upper-case
+  oper toUpper : Tok       -> Tok      = variants {} ; -- map all chars to upper case
+  oper toLower : Tok       -> Tok      = variants {} ; -- map all chars to lower case
   oper show   : (P : Type) -> P -> Tok = variants {} ; -- convert param to string
   oper read   : (P : Type) -> Tok -> P = variants {} ; -- convert string to param
   oper toStr  : (L : Type) -> L -> Str = variants {} ; -- find the "first" string
diff --git a/lib/src/punjabi/AdjectivePnb.gf b/lib/src/punjabi/AdjectivePnb.gf
--- a/lib/src/punjabi/AdjectivePnb.gf
+++ b/lib/src/punjabi/AdjectivePnb.gf
@@ -7,7 +7,8 @@
 	UseComparA a = a;
 
     ComparA a np = {
-        s = \\n,g,c => np.s ! NPC Obl ++ "توں" ++ a.s ! n ! g ! c  ;                       
+--        s = \\n,g,c => np.s ! NPC Obl ++ "توں" ++ a.s ! n ! g ! c  ;
+       s = \\n,g,c => np.s ! NPC Abl ++ "توں" ++ a.s ! n ! g ! c  ;                       
        } ;
 
 ---- $SuperlA$ belongs to determiner syntax in $Noun$.
diff --git a/lib/src/punjabi/CatPnb.gf b/lib/src/punjabi/CatPnb.gf
--- a/lib/src/punjabi/CatPnb.gf
+++ b/lib/src/punjabi/CatPnb.gf
@@ -23,7 +23,7 @@
     QCl = {s : ResPnb.VPHTense => Polarity => QForm => Str} ;
     IP = {s: Case => Str ; g : Gender ; n : Number};
     IDet = {s :Gender => Str ; n : Number} ;
-    IQuant = {s : Number => Str} ;
+    IQuant = {s : Number => Gender => Str} ;
 
 ---- Relative
 
@@ -31,7 +31,7 @@
       s : ResPnb.VPHTense => Polarity => Order => Agr => Str ; 
       c : Case
       } ;
-    RP = {s: Number => Case => Str ; a:RAgr};
+    RP = {s: Number => Gender => Case => Str ; a:RAgr};
 
 ---- Verb
 
diff --git a/lib/src/punjabi/ExtraPnb.gf b/lib/src/punjabi/ExtraPnb.gf
--- a/lib/src/punjabi/ExtraPnb.gf
+++ b/lib/src/punjabi/ExtraPnb.gf
@@ -7,9 +7,9 @@
     GenNP np = {s = \\_,_,_ => np.s ! NPC Obl ++ "كا" ; a = np.a} ;
 
     each_Det = mkDet  "ہر كوی" "ہر كوی" "ہر كوی" "ہر كوی" Sg ;
-    have_V = mkV "راكh-نا";
-----    IAdvAdv adv = {s = "كتنی" ++ adv.s} ;
-----    ICompAP ap = {s = "كتنے" ++ ap.s ! Sg ! Masc ! Dir ! Posit} ;
+    have_V = mkV "راكھنا";
+    IAdvAdv adv = {s = "كتنی" ++ adv.s!Masc} ;
+    ICompAP ap = {s = "كتنے" ++ ap.s ! Sg ! Masc ! Dir} ;
     cost_V = mkV "قیمت" ;
     
     -- added for causitives
diff --git a/lib/src/punjabi/IdiomPnb.gf b/lib/src/punjabi/IdiomPnb.gf
--- a/lib/src/punjabi/IdiomPnb.gf
+++ b/lib/src/punjabi/IdiomPnb.gf
@@ -16,7 +16,8 @@
         
     ExistNP np = 
       mkSClause "اوتھے" (agrP3 (fromAgr np.a).g (fromAgr np.a).n) 
-        (insertObj (\\_ => np.s ! NPC Obl) (predAux auxBe)) ;
+--        (insertObj (\\_ => np.s ! NPC Obl) (predAux auxBe)) ;
+        (insertObj (\\_ => np.s ! NPC Dir) (predAux auxBe)) ;
 
     ExistIP ip = 
      let cl = mkSClause ("اوتھے" ++ ip.s ! Dir) (agrP3 ip.g ip.n) (predAux auxBe); 
@@ -31,8 +32,11 @@
     ProgrVP vp =  (predProg vp) ;
 
 
-    ImpPl1 vp = {s = "آو" ++ infVP True vp (agrP1 Masc Pl)} ;
-	ImpP3 np vp = {s = np.s!NPC Dir ++ "نوں" ++ (vp.s ! VPImp ).inf ++ "دیو"};
+--    ImpPl1 vp = {s = "آو" ++ infVP True vp (agrP1 Masc Pl)} ;
+    ImpPl1 vp = {s = "آو" ++ (vp.s ! VPImp).fin} ;
+--	ImpP3 np vp = {s = np.s!NPC Dir ++ "كو" ++ (vp.s ! VPImp ).inf ++ "دو"}; here VPImp form is not correct e.g jan ko sw do, rather jan ko swnE do, and swnE is stored in vp.VPInf.fin
+  ImpP3 np vp = {s = np.s!NPC Dir ++ "نوں" ++ (vp.s ! VPInf ).fin ++ "دیو"};
+
 
 
 }
diff --git a/lib/src/punjabi/LexiconPnb.gf b/lib/src/punjabi/LexiconPnb.gf
--- a/lib/src/punjabi/LexiconPnb.gf
+++ b/lib/src/punjabi/LexiconPnb.gf
@@ -80,7 +80,7 @@
   floor_N = mkN02 "فرش" ;
   forget_V2 = mkV2 (mkV "بھولنا") "نوں" ;
 --  fridge_N = mkN "فریگ" ;
-  friend_N = mkN04 "دوست" ;
+  friend_N = mkN07 "یار" ;
   fruit_N = mkN02 "پھل" ;
 --  fun_AV = mkAdj1V (regA "f?ن") ;
   garden_N = mkN04 "باغ" ;
@@ -103,7 +103,7 @@
   important_A = mkAdj1 "اہم" ;
 --  industry_N = mkN "صنعت" feminine ;
 --  iron_N = mkN "لوہا" ;
---  king_N = mkN "بادشاہ" ;
+  king_N = mkN01 "بادشاہ" ;
   know_V2 = mkV2 (mkV "جاننا") ;
   know_VS = (mkV "جاننا") ;
   know_VQ = (mkV "جاننا") ;
@@ -119,7 +119,7 @@
   lose_V2 = mkV2 (compoundV "كھو" (mkV "دینا")) ;
   love_N = mkN02 "محبت" ;
   love_V2 = mkV2 (compoundV "پیار" do_V2) "نوں";
-  man_N = mkN03 "آدمی" ; -- not correct according to rules should be discussed
+  man_N = mkN01 "بندہ" ; -- not correct according to rules should be discussed
 --  married_A2 = mkAdj1 "شادy?كرنا" "سے" ;
   meat_N = mkN02 "گوشت" ;
 --  milk_N = mkN "دودھ" ;
@@ -135,7 +135,7 @@
   open_V2 = mkV2 (mkV "كھولنا") ;
   paint_V2A = mkV2 (compoundV "رنگ" do_V2) ;
 --  paper_N = mkN "كاغز" ;
---  paris_PN = mkPN "پیرس" ;
+  paris_PN = mkPN "پیرس" masculine;
 --  peace_N = mkN "امن" ;
   pen_N = mkN04 "پنسل" ;
   planet_N = mkN01 "سیارہ" ;
@@ -148,7 +148,7 @@
 --  radio_N = mkN "ریڈیو" ;
   rain_V0 = compoundV "بارش" (mkV "ہونا" ) ;
   read_V2 = mkV2 (mkV "پڑھنا");
-  red_A = mkAdj1 "لال" ;
+  red_A = mkAdj3 "لال" ; -- worst case
 --  religion_N = mkN "مزہب" ;
 --  restaurant_N = mkN "ہوٹل" ;
 --  river_N = mkN "دریا" masculine ;
@@ -211,14 +211,14 @@
 --  window_N = mkN "كھڑكی" ;
   wine_N = mkN04 "شراب";
   win_V2 = mkV2 (mkV "جیتنا") ;
-  woman_N = mkN04 "عورت" ;
-  wonder_VQ = compoundV "حعران" (mkV "ہونا") ;
+  woman_N = mkN04 "زنانی" ;
+  wonder_VQ = compoundV "حیران" (mkV "ہونا") ;
   wood_N = mkN04 "لكڑی" ;
   write_V2 = mkV2 (mkV "لكھنا") ;
   yellow_A = mkAdj1 "كھٹا" ;
   young_A = mkAdj1 "جوان" ;
   do_V2 = mkV2 (mkV "كرنا")  ;
---  now_Adv = mkAdj1dv "اب" ;
+  now_Adv = mkAdv "ہون" ;
 --  already_Adv = mkAdj1dv "پہلE?ہی" ;
   song_N = mkN01 "گانا" ;
   add_V3 = mkV3 (compoundV "وادھا" do_V2) "" "" ;
@@ -360,11 +360,11 @@
 --  rule_N = mkN "اصول" ;
 
 ---- added 4/6/2007
-    john_PN = mkPN "جان" ;
+    john_PN = mkPN "جان" masculine ;
 --    question_N = mkN "سوال" ;
 --    ready_A = regA "رعادی" ;
 --    reason_N = mkN "وجہ" feminine ;
---    today_Adv = mkAdj1dv "اج" ;
+    today_Adv = mkAdv "اج" ;
 --    uncertain_A = mkAdj1 ["غیr?یقینی"] ;
     
  
diff --git a/lib/src/punjabi/MorphoPnb.gf b/lib/src/punjabi/MorphoPnb.gf
--- a/lib/src/punjabi/MorphoPnb.gf
+++ b/lib/src/punjabi/MorphoPnb.gf
@@ -110,6 +110,11 @@
   mkN11 x = mkN x x x x
                 x x x ""
              Fem ;
+  -- 12 Masc no inflection
+  mkN12 : Str -> Noun ;
+  mkN12 x = mkN x x x x
+                x x x ""
+             Masc ;	     
 
 ----2 Determiners
 
@@ -135,7 +140,20 @@
 		Fem  => s2
 	 };
 	 n = n
-    };		
+    };
+  
+  makeIQuant : Str -> Str -> Str -> Str -> {s:Number => Gender => Str} = \s1,s2,s3,s4 -> {
+   s = table {
+      Sg => table {
+        Masc => s1 ;
+        Fem => s2 
+	  } ;
+      Pl => table {
+        Masc => s3 ;
+        Fem => s4 
+	  }
+      } 
+	};	
     
 -- Proposition  
  
diff --git a/lib/src/punjabi/NounPnb.gf b/lib/src/punjabi/NounPnb.gf
--- a/lib/src/punjabi/NounPnb.gf
+++ b/lib/src/punjabi/NounPnb.gf
@@ -19,7 +19,7 @@
       } ;
 
     PPartNP np v2 = {
-      s = \\c => v2.s ! VF Imperf Pers1 Sg Fem   ++ np.s ! c   ;
+      s = \\c => v2.s ! VF Perf (fromAgr np.a).p (fromAgr np.a).n (fromAgr np.a).g   ++ np.s ! c   ;
       a = np.a ;
       isPron = np.isPron
       } ;
diff --git a/lib/src/punjabi/NumeralPnb.gf b/lib/src/punjabi/NumeralPnb.gf
--- a/lib/src/punjabi/NumeralPnb.gf
+++ b/lib/src/punjabi/NumeralPnb.gf
@@ -28,7 +28,7 @@
     } ;
 oper mkOrd : Str -> Str =
  \s -> case s of {
-                    "عك"                  => "پیلا";
+                    "اك"                  => "پیلا";
                     "دو"                  => "دوجا";
                     "تن"                => "دوجا";
                     "چار"                => "چوتھا";
@@ -42,13 +42,13 @@
   {s = table {unit => do ; ten => bis } ; 
    size = sz ; n = Pl} ;
 
-lin n2 = mkNum "دو" "vی" r2 ;
+lin n2 = mkNum "دو" "وی" r2 ;
 lin n3 = mkNum "تن" "تری" r3 ;
 lin n4 = mkNum "چار" "چالی" r4 ;
 lin n5 = mkNum "پنج" "پنجاہ" r5 ;
-lin n6 = mkNum "چh-" "سٹh-" r6 ; 
+lin n6 = mkNum "چھ" "سٹھ" r6 ; 
 lin n7 = mkNum "ست" "ستر" r7; 
-lin n8 = mkNum "اٹh-" "اسی" r8;
+lin n8 = mkNum "اٹھ" "اسی" r8;
 lin n9 = mkNum "نو" "نبے" r9 ;
 
 oper mkR : Str -> Str -> Str -> Str -> Str -> Str -> Str -> Str -> Str -> DSize => Str = \a1 -> \a2 -> \a3 -> \a4 -> \a5 -> \a6 -> \a7 -> \a8 -> \a9 -> table {
@@ -64,12 +64,12 @@
 } ;
 
 oper rows : DSize => DSize => Str = table {
-  sg => mkR "گیار" "iكك" "iكت" "عكتا" "iكو" "iكا" "iكہ" "iك" "iكی" ; 
+  sg => mkR "گیار" "اكك" "اكت" "اكتا" "اكو" "اكا" "اكہ" "اك" "اكی" ; 
   r2 => mkR "بار" "با" "بت" "بای" "بی" "بو" "بہ" "بی" "ب" ;
   r3 => mkR "تیر" "تی" "تیت" "تنت" "ترت" "ترو" "تیہ" "تیر" "تر" ;
   r4 => mkR "چود" "چوب" "چوت" "چوا" "چوت" "چور" "چوہ" "چور" "چور" ;
   r5 => mkR "پندر" "پنج" "پینت" "پنتا" "پچو" "پین" "پنج" "پنج" "پچ" ;
-  r6 => mkR "سول" "چھب" "چھت" "چh-ی" "چھو" "چھیا" "چھہ" "چھی" "چھی" ;
+  r6 => mkR "سول" "چھب" "چھت" "چھی" "چھو" "چھیا" "چھہ" "چھی" "چھی" ;
   r7 => mkR "ستار" "ستا" "سینت" "سنت" "سنت" "ستو" "ست" "ست" "ست" ;
   r8 => mkR "اٹھار" "اٹھا" "اٹھت" "اڑت" "اٹھو" "اٹھا" "اٹھ" "اٹھ" "اٹھ" ; 
   r9 => table {sg => "انی" ; r2 => "انتی" ; r3 => "انتالی" ; 
@@ -80,9 +80,9 @@
 
 oper ss : Str -> {s : Str} = \s -> {s = s} ;
 
-lin pot01 = {s = table {unit => "اك" ; _ => "دuممی" } ; size = sg ; n = Sg} ;
+lin pot01 = {s = table {unit => "اك" ; _ => "دمی" } ; size = sg ; n = Sg} ;
 lin pot0 d = d ; 
-lin pot110 = {s = "داس" ; size = less100 ; n = Pl} ; 
+lin pot110 = {s = "دس" ; size = less100 ; n = Pl} ; 
 lin pot111 = {s = rows ! sg ! sg ; size = less100 ; n = Pl} ;
 lin pot1to19 d = {s = rows ! d.size ! sg ; size = less100 ; n = d.n} ;
 lin pot0as1 n = {s = n.s ! unit ; size = table {sg => singl ; _ => less100} ! n.size ; n = n.n } ;
@@ -90,7 +90,7 @@
 lin pot1 d = {s = d.s ! ten ; size = less100 ; n = d.n} ;
 lin pot1plus d e = {s = rows ! e.size ! d.size ; size = less100 ; n = d.n} ;
 
-lin pot1as2 n = {s = n.s ; s2 = "دuممی" ; size = n.size ; n = n.n} ;
+lin pot1as2 n = {s = n.s ; s2 = "دمی" ; size = n.size ; n = n.n} ;
 lin pot2 d = {s = (mksau (d.s ! unit) d.size) ; 
               s2 = d.s ! unit ++ "لكھ" ; size = more100 ; n = d.n} ;
 lin pot2plus d e = 
@@ -122,5 +122,5 @@
 
 oper ekhazar : Str = variants {"ہزار" ; "اك" ++ "ہزار"} ; 
 oper mkhazar : Str -> Size -> Str = \s -> \sz -> table {singl => ekhazar ; _ => s ++ "ہزار"} ! sz ;
-oper mksau : Str -> DSize -> Str = \s -> \sz -> table {sg => "سو" ; _ => s ++ "سو"} ! sz ;
+oper mksau : Str -> DSize -> Str = \s -> \sz -> table {sg => "اك" ++ "سو" ; _ => s ++ "سو"} ! sz ;
 }
diff --git a/lib/src/punjabi/ParadigmsPnb.gf b/lib/src/punjabi/ParadigmsPnb.gf
--- a/lib/src/punjabi/ParadigmsPnb.gf
+++ b/lib/src/punjabi/ParadigmsPnb.gf
@@ -37,9 +37,13 @@
      = \s,noun -> {s =\\n,c => s ++ noun.s ! n ! c ; g = noun.g ; lock_N = <>};
  
 
--- Proper names     
+-- Proper names
+mkPN = overload {
   mkPN : Str -> PN =
      \s -> let n = mkN11 s in {s = n.s ! Sg ; g = n.g ; lock_PN = <>} ;
+  mkPN : Str -> Gender -> PN =
+     \s,g -> let n = mkN11 s in {s = n.s ! Sg ; g = g ; lock_PN = <>} ;   
+  };   
 -- Personal Pronouns     
   personalPN : Str -> Str -> Str -> Str -> Str -> Number -> Gender -> PPerson -> Pron =
      \s1,s2,s3,s4,sp,nn,g,p -> let n = mkPron s1 s2 s3 s4 in {s = n.s ; a = toAgr nn p g ; ps = sp ; lock_Pron = <>};
@@ -102,12 +106,14 @@
 --3 Determiners and quantifiers
 
 --  mkQuant : overload {
-    mkQuant : Pron -> Quant ;
+    mkQuant1 : Pron -> Quant ;
 --    mkQuant : (no_sg, no_pl, none_sg, non_pl : Str) -> Quant ;
 --  } ;
+  mkIQuant : Str -> Str -> Str -> Str -> IQuant ;
+  mkIQuant s1 s2 s3 s4 = let n = makeIQuant s1 s2 s3 s4 in {s = n.s; lock_IQuant = <>} ;
   
 --  mkQuant = overload {
-    mkQuant : Pron -> Quant = \p -> {s = \\_,_,c => p.s!c ;a = p.a ; lock_Quant = <>};
+    mkQuant1 : Pron -> Quant = \p -> {s = \\_,_,c => p.s!c ;a = p.a ; lock_Quant = <>};
 --    mkQuant : (no_sg, no_pl, none_sg, non_pl : Str) -> Quant = mkQuantifier;
 --  } ;
 
diff --git a/lib/src/punjabi/PhrasePnb.gf b/lib/src/punjabi/PhrasePnb.gf
--- a/lib/src/punjabi/PhrasePnb.gf
+++ b/lib/src/punjabi/PhrasePnb.gf
@@ -22,6 +22,6 @@
     PConjConj conj = {s = conj.s2} ; ---
 
     NoVoc = {s = []} ;
-    VocNP np = {s = np.s ! NPC Dir} ;
+    VocNP np = {s = np.s ! NPC Voc} ;
 
 }
diff --git a/lib/src/punjabi/QuestionPnb.gf b/lib/src/punjabi/QuestionPnb.gf
--- a/lib/src/punjabi/QuestionPnb.gf
+++ b/lib/src/punjabi/QuestionPnb.gf
@@ -16,7 +16,7 @@
            qp1 = qp.s ! Dir;
            qp2 = qp.s ! Obl ++ "نے"
           in { s = \\t,p,o => case t of {
-		             VPImpPast => qp2 ++ cl.s ! t ! p ! ODir;
+		             VPImpPast => case vp.subj of {VIntrans => qp1 ++ cl.s ! t ! p ! ODir; _ => qp2 ++ cl.s ! t ! p ! ODir};
 					 _         => qp1 ++ cl.s ! t ! p ! ODir
 					 }
 					}; 
@@ -64,7 +64,7 @@
       } ;
 
     IdetQuant iqant num = {
-      s = \\g => iqant.s ! num.n ++ num.s ; 
+      s = \\g => iqant.s ! num.n ! g ++ num.s ; 
       n = num.n
       } ;
 
diff --git a/lib/src/punjabi/RelativePnb.gf b/lib/src/punjabi/RelativePnb.gf
--- a/lib/src/punjabi/RelativePnb.gf
+++ b/lib/src/punjabi/RelativePnb.gf
@@ -6,10 +6,13 @@
   lin
 
     RelCl cl = {
-      s = \\t,p,o,agr => case <t,giveNumber agr> of {
-	                    <VPImpPast,Sg> => "جس" ++ cl.s ! t ! p ! o ; 
-						<VPImpPast,Pl> => "جن" ++ cl.s ! t ! p ! o ;
-						<_,_>          => "جو" ++ cl.s ! t ! p ! o 
+      s = \\t,p,o,agr => case <t,giveNumber agr,giveGender agr> of {
+	                    <VPImpPast,Sg,_> => "جنے" ++ cl.s ! t ! p ! o ; 
+			    <VPImpPast,Pl,_> => "جناں" ++ cl.s ! t ! p ! o ;
+			    <_,Sg,Masc>          => "جعڑا" ++ cl.s ! t ! p ! o ;
+			    <_,Sg,Fem>          => "جعڑی" ++ cl.s ! t ! p ! o ;
+			    <_,Pl,Masc>          => "جعڑے" ++ cl.s ! t ! p ! o ;
+			    <_,Pl,Fem>          => "جعڑیاں" ++ cl.s ! t ! p ! o 
 			};
       c = Dir
       } ;
@@ -22,7 +25,7 @@
             RNoAg => ag ;
             RAg a => a
             } ;
-		 cl = mkSClause (rp.s ! (giveNumber agr) ! Dir) agr vp;
+		 cl = mkSClause (rp.s ! (giveNumber agr) ! (giveGender agr) ! Dir) agr vp;
 		  
 --          cl = case t of {
 --                VPImpPast =>  mkSClause (rp.s ! (giveNumber agr) ! Obl) agr vp;
@@ -39,7 +42,7 @@
 ---- "وع ارع لooكiنگ ات").
 --
     RelSlash rp slash = {
-      s = \\t,p,o,agr => rp.s ! (giveNumber agr) ! Dir ++ slash.c2.s ++  slash.s ! t ! p ! o  ;--case t of {
+      s = \\t,p,o,agr => rp.s ! (giveNumber agr) ! (giveGender agr) ! Obl ++ slash.c2.s ++  slash.s ! t ! p ! o  ;--case t of {
 --	       VPImpPast => rp.s !  (giveNumber agr) Obl ++ slash.c2.s ++  slash.s ! t ! p ! o ;
 --		   _         => rp.s !  (giveNumber agr) Dir ++ slash.c2.s ++  slash.s ! t ! p ! o 
 --		   };
@@ -47,25 +50,42 @@
       } ;
 
     FunRP p np rp = {
-      s = \\n,c => rp.s ! n ! c ++ np.s ! NPC c ++ p.s  ;
+      s = \\n,g,c => rp.s ! n ! g ! c ++ np.s ! NPC c ++ p.s  ;
       a = RAg np.a
       } ;
 
     IdRP = {
       s = table {
         Sg => table {
+	  Masc => table {
 		
-    	    ResPnb.Dir  => "جعڑا" ; 
-            ResPnb.Obl  => "جعڑے" ;
-            ResPnb.Voc  => "جعڑے" ;
-	    ResPnb.Abl => "جعڑے"
+    	    ResPnb.Dir  => "جیڑا" ; 
+            ResPnb.Obl  => "جن" ;
+            ResPnb.Voc  => "جیڑے" ;
+	    ResPnb.Abl => "جیڑے"
 	    };
-		Pl => table {
-            ResPnb.Dir  => "جعڑے" ;
-		    ResPnb.Obl  => "جعڑے" ;
-		    ResPnb.Voc  => "جعڑے" ;
-		    ResPnb.Abl => "جعڑے"
+	  Fem => table {
+		
+    	    ResPnb.Dir  => "جیڑی" ; 
+            ResPnb.Obl  => "جن" ;
+            ResPnb.Voc  => "جیڑی" ;
+	    ResPnb.Abl => "جیڑی"
+	    }
+	    };
+	Pl => table {
+	    Masc => table {
+                    ResPnb.Dir  => "جیڑے" ;
+		    ResPnb.Obl  => "جیڑے" ;
+		    ResPnb.Voc  => "جیڑے" ;
+		    ResPnb.Abl => "جیڑے"
+			};
+	    Fem => table {
+                    ResPnb.Dir  => "جیڑی" ;
+		    ResPnb.Obl  => "جیڑی" ;
+		    ResPnb.Voc  => "جیڑی" ;
+		    ResPnb.Abl => "جیڑی"
 			}
+	  }
        }; 
       a = RNoAg
       } ;
diff --git a/lib/src/punjabi/ResPnb.gf b/lib/src/punjabi/ResPnb.gf
--- a/lib/src/punjabi/ResPnb.gf
+++ b/lib/src/punjabi/ResPnb.gf
@@ -83,7 +83,10 @@
 --  mkAdj2 : Str -> Adjective2 ;
 --  mkAdj2 romii = cmnAdj romii romii         (romii+"ا")  (romii+"یوں")
 --                        romii (romii++"اں") (romii++"و")  "" ;
+  mkAdj3 : Str -> Adjective1 ;
+  mkAdj3 lal = adj1 lal lal lal lal lal lal lal lal lal lal lal lal lal lal lal lal ;
 
+
  cmnAdj : (x1,_,_,_,_,_,_,x8 : Str) -> {s : Gender => Case => Str} = 
       \sd,so,sv,sa, pd,po,pv,pa -> {
       s = table {
@@ -304,6 +307,8 @@
 		 VPTense VPFutr (Ag g n p) =>  {fin = copula CFuture n p g ; inf =  verb.s ! VF Subj p n g } ;
 		 VPTense VPPerf (Ag g n p) => { fin = [] ; inf = verb.s ! Root ++ cka g n } ; 
 		 VPStem => {fin = []  ; inf =  verb.s ! Root};
+		 VPInf => {fin = verb.s!Inf_Obl  ; inf =  verb.s ! Root};
+		 VPImp => {fin = verb.s!VF Subj Pers3_Near Pl Masc  ; inf =  verb.s ! Root};
 		 _ => {fin = [] ; inf = verb.s ! Root} 
 		 };
 	    obj = {s = [] ; a = defaultAgr} ;
@@ -329,7 +334,7 @@
 	   (mkAdj1 "پیا").s ! n ! g ! Dir ;	   
 
 	cka : Gender -> Number -> Str = \g,n -> 
-	  (mkAdj1 "چكا").s ! n ! g ! Dir ;
+	  (mkAdj1 "گیا").s ! n ! g ! Dir ;
 	  
 	hw : PPerson -> Number -> Str = \pp,n ->    
 	 case <pp,n> of {
diff --git a/lib/src/punjabi/StructuralPnb.gf b/lib/src/punjabi/StructuralPnb.gf
--- a/lib/src/punjabi/StructuralPnb.gf
+++ b/lib/src/punjabi/StructuralPnb.gf
@@ -17,7 +17,7 @@
   behind_Prep = ss "پیچھے" ;
   between_Prep = ss "وچكار" ;
   both7and_DConj = sd2 "دوویں" "تے" ** {n = Pl} ;
-  but_PConj = ss "لیكن" ;
+  but_PConj = ss "مگر" ;
   by8agent_Prep = ss "" ;
   by8means_Prep = ss "" ;
   can8know_VV,can_VV = mkV "سكنا" ** { isAux = True} ;
@@ -31,7 +31,7 @@
   first_Ord = {s = "پعہلا" ; n = Sg} ; --DEPRECATED
   for_Prep = ss "[دے واسطE]" ;
   from_Prep = ss "توں" ;
-  he_Pron = personalPN "او" "اینوں" "او" "" "اورا"  Sg Masc Pers3_Distant ;
+  he_Pron = personalPN "او" "اونوں" "او" "اورے" "اورا"  Sg Masc Pers3_Distant ;
   here_Adv = mkAdv "ایتھے" ;
   here7to_Adv = mkAdv "ایتھے" ;
   here7from_Adv = mkAdv "ایتھوں" ;
@@ -64,14 +64,14 @@
   no_Utt = ss "نیں" ;
   on_Prep = ss "اتے" ;
   one_Quant = demoPN "اك" "اك" "اك"  ; -- DEPRECATED
-  only_Predet = ss "سرف" ;
+  only_Predet = ss "صرف" ;
   or_Conj = sd2 [] "یا" ** {n = Sg} ;
   otherwise_PConj = ss "یا فیر" ;
   part_Prep = ss "ہصہ" ;
   please_Voc = ss "مہربانi" ;
   possess_Prep = ss "دا" ;
   quite_Adv = ss "كہامoسہ" ;
-  she_Pron = personalPN "او" "اونوں" "اونو" "" "اورا" Sg Fem Pers3_Distant ;
+  she_Pron = personalPN "او" "اونوں" "اونو" "اورے" "اورا" Sg Fem Pers3_Distant ;
   so_AdA = ss "سo" ;
   somebody_NP = MassNP (UseN (MorphoPnb.mkN11 "كوی" ));
   someSg_Det = mkDet "كچھ" "كچھ" "كچھ" "كچھ" Sg ;
@@ -84,33 +84,34 @@
   there7to_Adv = mkAdv "اوتھے" ;
   there7from_Adv = mkAdv "اوتھوں" ;
   therefore_PConj = ss "اس لی" ;
-  they_Pron = personalPN "او" "[اوناں نوN]" "او" "" "اوناں دا" Pl Masc Pers3_Distant ; ---- 
-  this_Quant = demoPN "یہ" "اس" "ان";      
+  they_Pron = personalPN "او" "[اوناں نوN]" "او" "اوناں" "اوناں دا" Pl Masc Pers3_Distant ; ---- 
+  this_Quant = demoPN "اے" "ایرا" "ایناں";      
   through_Prep = ss "وچوں" ;
   too_AdA = ss "بہت" ;
-  to_Prep = ss "اونوں" ** {lock_Prep = <>};
+--  to_Prep = ss "اونوں" ** {lock_Prep = <>};
+  to_Prep = ss "نوں" ** {lock_Prep = <>};
   under_Prep = ss "تھلے" ** {lock_Prep = <>};
   very_AdA = ss "بہت" ;
   want_VV = mkV "چانا" ** { isAux = False} ;
   we_Pron = personalPN "اسی" "سانوں" "سانوں" "ساتوں" "ساڈا" Pl Masc Pers1 ;
---  whatSg_IP = mkIP "كیا" "كiس" "كiس" Sg Masc ;
+  whatSg_IP = mkIP "كیا" "كرا" "كرا" "كرا" Sg Masc ; -- check it
 --  whatPl_IP = mkIP "كیا" "كiن" "كiن" Pl Masc ;
   when_IAdv = ss "كدوں" ;
   when_Subj = ss "كدوں" ;
   where_IAdv = ss "كتھے" ;
-  which_IQuant = {s = \\_ => "كیڑی"} ;
+  which_IQuant = mkIQuant "كیڑا" "كیڑی" "كیڑے" "كیڑی" ;
 --  whichPl_IDet = makeDet "كون سا" "كون سی" "كون سے" "كون سی" ;
 --  whichSg_IDet = makeDet "كون سا" "كون سی" "كون سے" "كون سی" ;
---  whoSg_IP = mkIP "كون" "كiس" "كiس" Sg Masc  ;
+  whoSg_IP = mkIP "كون" "كرا" "كرا" "كرا" Sg Masc  ;
 --  whoPl_IP = mkIP "كون" "كن" "كنہوں" Pl Masc ;
   why_IAdv = ss "كیوں" ;
   without_Prep = ss ["توں بغیر"] ;
   with_Prep = ss ["دے نال"] ;
 --  yes_Phr = ss "ہاں" ;
   yes_Utt = ss "ہاں" ;
-  youSg_Pron = personalPN "توں" "تینوں" "تینوں" "تیتوں" "توواڈا" Sg Masc Pers2_Casual ;
-  youPl_Pron = personalPN "تسی" "توانوں" "توانوں" "تواتوں" "توواڈا" Pl Masc Pers2_Casual ;
-  youPol_Pron = personalPN "تسی" "توانوں" "توانوں" "تواتوں" "توواڈا" Sg Masc Pers2_Respect  ;
+  youSg_Pron = personalPN "توں" "تینوں" "تینوں" "تیرے" "توواڈا" Sg Masc Pers2_Casual ;
+  youPl_Pron = personalPN "تسی" "توانوں" "توانوں" "تواڈے" "توواڈا" Pl Masc Pers2_Casual ;
+  youPol_Pron = personalPN "تسی" "توانوں" "توانوں" "تواڈے" "توواڈا" Sg Masc Pers2_Respect  ;
   no_Quant =  demoPN " كوی نہیں" "كوی نہیں" "كوی نہیں" ; 
   not_Predet = {s="نہیں"} ;
   if_then_Conj = sd2 "اگر" "تے" ** {n = Sg} ; 
diff --git a/lib/src/punjabi/SymbolPnb.gf b/lib/src/punjabi/SymbolPnb.gf
--- a/lib/src/punjabi/SymbolPnb.gf
+++ b/lib/src/punjabi/SymbolPnb.gf
@@ -3,7 +3,7 @@
 concrete SymbolPnb of Symbol = CatPnb ** open Prelude, ResPnb in {
 
   flags coding = utf8;
-{-
+
  lin
 -- SymbPN i = {s = \\_ => i.s ; g = Masc} ;
   SymbPN i = {s = addGenitiveS i.s ; g = Masc} ;
@@ -12,15 +12,18 @@
   NumPN i = {s = \\_ =>i.s ; g = Masc} ;
   CNIntNP cn i = {
     s = \\c => cn.s ! Sg ! Dir ++ i.s ;
-    a = agrP3 cn.g Sg
+    a = agrP3 cn.g Sg ;
+    isPron = False
     } ;
   CNSymbNP det cn xs = {
     s = \\c => det.s!Sg!Masc ++ cn.s ! det.n ! Dir ++  xs.s ; 
-    a = agrP3 cn.g det.n
+    a = agrP3 cn.g det.n;
+    isPron = False
     } ;
   CNNumNP cn i = {
     s = \\c => cn.s ! Sg ! Dir ++ i.s ;
-    a = agrP3 cn.g Sg
+    a = agrP3 cn.g Sg;
+    isPron = False
     } ;
 
   SymbS sy = sy ; 
@@ -42,6 +45,6 @@
     -- not mauch we can do about that.
     addGenitiveS : Str -> Case => Str = \s -> 
      table {_ => s ++ "دا" } ;
--}
+
 
 }
diff --git a/lib/src/punjabi/src/AdjectivePnb.gf b/lib/src/punjabi/src/AdjectivePnb.gf
--- a/lib/src/punjabi/src/AdjectivePnb.gf
+++ b/lib/src/punjabi/src/AdjectivePnb.gf
@@ -7,7 +7,8 @@
 	UseComparA a = a;
 
     ComparA a np = {
-        s = \\n,g,c => np.s ! NPC Obl ++ "twN" ++ a.s ! n ! g ! c  ;                       
+--        s = \\n,g,c => np.s ! NPC Obl ++ "twN" ++ a.s ! n ! g ! c  ;
+       s = \\n,g,c => np.s ! NPC Abl ++ "twN" ++ a.s ! n ! g ! c  ;                       
        } ;
 
 ---- $SuperlA$ belongs to determiner syntax in $Noun$.
diff --git a/lib/src/punjabi/src/ExtraPnb.gf b/lib/src/punjabi/src/ExtraPnb.gf
--- a/lib/src/punjabi/src/ExtraPnb.gf
+++ b/lib/src/punjabi/src/ExtraPnb.gf
@@ -7,9 +7,9 @@
     GenNP np = {s = \\_,_,_ => np.s ! NPC Obl ++ "ka" ; a = np.a} ;
 
     each_Det = mkDet  "hr kwy" "hr kwy" "hr kwy" "hr kwy" Sg ;
-    have_V = mkV "rakh-na";
-    IAdvAdv adv = {s = "ktny" ++ adv.s} ;
-    ICompAP ap = {s = "ktnE" ++ ap.s ! Sg ! Masc ! Dir ! Posit} ;
+    have_V = mkV "rakh'na";
+    IAdvAdv adv = {s = "ktny" ++ adv.s!Masc} ;
+    ICompAP ap = {s = "ktnE" ++ ap.s ! Sg ! Masc ! Dir} ;
     cost_V = mkV "qymt" ;
     
     -- added for causitives
diff --git a/lib/src/punjabi/src/IdiomPnb.gf b/lib/src/punjabi/src/IdiomPnb.gf
--- a/lib/src/punjabi/src/IdiomPnb.gf
+++ b/lib/src/punjabi/src/IdiomPnb.gf
@@ -16,7 +16,8 @@
         
     ExistNP np = 
       mkSClause "awth'E" (agrP3 (fromAgr np.a).g (fromAgr np.a).n) 
-        (insertObj (\\_ => np.s ! NPC Obl) (predAux auxBe)) ;
+--        (insertObj (\\_ => np.s ! NPC Obl) (predAux auxBe)) ;
+        (insertObj (\\_ => np.s ! NPC Dir) (predAux auxBe)) ;
 
     ExistIP ip = 
      let cl = mkSClause ("awth'E" ++ ip.s ! Dir) (agrP3 ip.g ip.n) (predAux auxBe); 
@@ -31,8 +32,11 @@
     ProgrVP vp =  (predProg vp) ;
 
 
-    ImpPl1 vp = {s = "Aw" ++ infVP True vp (agrP1 Masc Pl)} ;
-	ImpP3 np vp = {s = np.s!NPC Dir ++ "nwN" ++ (vp.s ! VPImp ).inf ++ "dyw"};
+--    ImpPl1 vp = {s = "Aw" ++ infVP True vp (agrP1 Masc Pl)} ;
+    ImpPl1 vp = {s = "Aw" ++ (vp.s ! VPImp).fin} ;
+--	ImpP3 np vp = {s = np.s!NPC Dir ++ "kw" ++ (vp.s ! VPImp ).inf ++ "dw"}; here VPImp form is not correct e.g jan ko sw do, rather jan ko swnE do, and swnE is stored in vp.VPInf.fin
+  ImpP3 np vp = {s = np.s!NPC Dir ++ "nwN" ++ (vp.s ! VPInf ).fin ++ "dyw"};
+
 
 
 }
diff --git a/lib/src/punjabi/src/LexiconPnb.gf b/lib/src/punjabi/src/LexiconPnb.gf
--- a/lib/src/punjabi/src/LexiconPnb.gf
+++ b/lib/src/punjabi/src/LexiconPnb.gf
@@ -80,7 +80,7 @@
   floor_N = mkN02 "frX" ;
   forget_V2 = mkV2 (mkV "bh'wlna") "nwN" ;
 --  fridge_N = mkN "fryg" ;
-  friend_N = mkN04 "dwst" ;
+  friend_N = mkN07 "yar" ;
   fruit_N = mkN02 "ph'l" ;
 --  fun_AV = mkAdj1V (regA "f?n") ;
   garden_N = mkN04 "baG" ;
@@ -103,7 +103,7 @@
   important_A = mkAdj1 "ahm" ;
 --  industry_N = mkN "Snet" feminine ;
 --  iron_N = mkN "lwha" ;
---  king_N = mkN "badXah" ;
+  king_N = mkN01 "badXah" ;
   know_V2 = mkV2 (mkV "janna") ;
   know_VS = (mkV "janna") ;
   know_VQ = (mkV "janna") ;
@@ -119,7 +119,7 @@
   lose_V2 = mkV2 (compoundV "kh'w" (mkV "dyna")) ;
   love_N = mkN02 "mHbt" ;
   love_V2 = mkV2 (compoundV "pyar" do_V2) "nwN";
-  man_N = mkN03 "Admy" ; -- not correct according to rules should be discussed
+  man_N = mkN01 "bndh" ; -- not correct according to rules should be discussed
 --  married_A2 = mkAdj1 "Xady?krna" "sE" ;
   meat_N = mkN02 "gwXt" ;
 --  milk_N = mkN "dwdh'" ;
@@ -135,7 +135,7 @@
   open_V2 = mkV2 (mkV "kh'wlna") ;
   paint_V2A = mkV2 (compoundV "rng" do_V2) ;
 --  paper_N = mkN "kaGz" ;
---  paris_PN = mkPN "pyrs" ;
+  paris_PN = mkPN "pyrs" masculine;
 --  peace_N = mkN "amn" ;
   pen_N = mkN04 "pnsl" ;
   planet_N = mkN01 "syarh" ;
@@ -148,7 +148,7 @@
 --  radio_N = mkN "ryDyw" ;
   rain_V0 = compoundV "barX" (mkV "hwna" ) ;
   read_V2 = mkV2 (mkV "pRh'na");
-  red_A = mkAdj1 "lal" ;
+  red_A = mkAdj3 "lal" ; -- worst case
 --  religion_N = mkN "mzhb" ;
 --  restaurant_N = mkN "hwTl" ;
 --  river_N = mkN "drya" masculine ;
@@ -211,14 +211,14 @@
 --  window_N = mkN "kh'Rky" ;
   wine_N = mkN04 "Xrab";
   win_V2 = mkV2 (mkV "jytna") ;
-  woman_N = mkN04 "ewrt" ;
-  wonder_VQ = compoundV "Heran" (mkV "hwna") ;
+  woman_N = mkN04 "znany" ;
+  wonder_VQ = compoundV "Hyran" (mkV "hwna") ;
   wood_N = mkN04 "lkRy" ;
   write_V2 = mkV2 (mkV "lkh'na") ;
   yellow_A = mkAdj1 "kh'Ta" ;
   young_A = mkAdj1 "jwan" ;
   do_V2 = mkV2 (mkV "krna")  ;
---  now_Adv = mkAdj1dv "ab" ;
+  now_Adv = mkAdv "hwn" ;
 --  already_Adv = mkAdj1dv "phlE?hy" ;
   song_N = mkN01 "gana" ;
   add_V3 = mkV3 (compoundV "wadh'a" do_V2) "" "" ;
@@ -360,11 +360,11 @@
 --  rule_N = mkN "aSwl" ;
 
 ---- added 4/6/2007
-    john_PN = mkPN "jan" ;
+    john_PN = mkPN "jan" masculine ;
 --    question_N = mkN "swal" ;
 --    ready_A = regA "ready" ;
 --    reason_N = mkN "wjh" feminine ;
---    today_Adv = mkAdj1dv "aj" ;
+    today_Adv = mkAdv "aj" ;
 --    uncertain_A = mkAdj1 ["Gyr?yqyny"] ;
     
  
diff --git a/lib/src/punjabi/src/MorphoPnb.gf b/lib/src/punjabi/src/MorphoPnb.gf
--- a/lib/src/punjabi/src/MorphoPnb.gf
+++ b/lib/src/punjabi/src/MorphoPnb.gf
@@ -110,6 +110,11 @@
   mkN11 x = mkN x x x x
                 x x x ""
              Fem ;
+  -- 12 Masc no inflection
+  mkN12 : Str -> Noun ;
+  mkN12 x = mkN x x x x
+                x x x ""
+             Masc ;	     
 
 ----2 Determiners
 
@@ -135,7 +140,20 @@
 		Fem  => s2
 	 };
 	 n = n
-    };		
+    };
+  
+  makeIQuant : Str -> Str -> Str -> Str -> {s:Number => Gender => Str} = \s1,s2,s3,s4 -> {
+   s = table {
+      Sg => table {
+        Masc => s1 ;
+        Fem => s2 
+	  } ;
+      Pl => table {
+        Masc => s3 ;
+        Fem => s4 
+	  }
+      } 
+	};	
     
 -- Proposition  
  
diff --git a/lib/src/punjabi/src/NumeralPnb.gf b/lib/src/punjabi/src/NumeralPnb.gf
--- a/lib/src/punjabi/src/NumeralPnb.gf
+++ b/lib/src/punjabi/src/NumeralPnb.gf
@@ -28,7 +28,7 @@
     } ;
 oper mkOrd : Str -> Str =
  \s -> case s of {
-                    "ek"                  => "pyla";
+                    "ak"                  => "pyla";
                     "dw"                  => "dwja";
                     "tn"                => "dwja";
                     "car"                => "cwth'a";
@@ -42,13 +42,13 @@
   {s = table {unit => do ; ten => bis } ; 
    size = sz ; n = Pl} ;
 
-lin n2 = mkNum "dw" "vy" r2 ;
+lin n2 = mkNum "dw" "wy" r2 ;
 lin n3 = mkNum "tn" "try" r3 ;
 lin n4 = mkNum "car" "caly" r4 ;
 lin n5 = mkNum "pnj" "pnjah" r5 ;
-lin n6 = mkNum "ch-" "sTh-" r6 ; 
+lin n6 = mkNum "ch'" "sTh'" r6 ; 
 lin n7 = mkNum "st" "str" r7; 
-lin n8 = mkNum "aTh-" "asy" r8;
+lin n8 = mkNum "aTh'" "asy" r8;
 lin n9 = mkNum "nw" "nbE" r9 ;
 
 oper mkR : Str -> Str -> Str -> Str -> Str -> Str -> Str -> Str -> Str -> DSize => Str = \a1 -> \a2 -> \a3 -> \a4 -> \a5 -> \a6 -> \a7 -> \a8 -> \a9 -> table {
@@ -64,12 +64,12 @@
 } ;
 
 oper rows : DSize => DSize => Str = table {
-  sg => mkR "gyar" "ikk" "ikt" "ekta" "ikw" "ika" "ikh" "ik" "iky" ; 
+  sg => mkR "gyar" "akk" "akt" "akta" "akw" "aka" "akh" "ak" "aky" ; 
   r2 => mkR "bar" "ba" "bt" "bay" "by" "bw" "bh" "by" "b" ;
   r3 => mkR "tyr" "ty" "tyt" "tnt" "trt" "trw" "tyh" "tyr" "tr" ;
   r4 => mkR "cwd" "cwb" "cwt" "cwa" "cwt" "cwr" "cwh" "cwr" "cwr" ;
   r5 => mkR "pndr" "pnj" "pynt" "pnta" "pcw" "pyn" "pnj" "pnj" "pc" ;
-  r6 => mkR "swl" "ch'b" "ch't" "ch-y" "ch'w" "ch'ya" "ch'h" "ch'y" "ch'y" ;
+  r6 => mkR "swl" "ch'b" "ch't" "ch'y" "ch'w" "ch'ya" "ch'h" "ch'y" "ch'y" ;
   r7 => mkR "star" "sta" "synt" "snt" "snt" "stw" "st" "st" "st" ;
   r8 => mkR "aTh'ar" "aTh'a" "aTh't" "aRt" "aTh'w" "aTh'a" "aTh'" "aTh'" "aTh'" ; 
   r9 => table {sg => "any" ; r2 => "anty" ; r3 => "antaly" ; 
@@ -80,9 +80,9 @@
 
 oper ss : Str -> {s : Str} = \s -> {s = s} ;
 
-lin pot01 = {s = table {unit => "ak" ; _ => "dummy" } ; size = sg ; n = Sg} ;
+lin pot01 = {s = table {unit => "ak" ; _ => "dmy" } ; size = sg ; n = Sg} ;
 lin pot0 d = d ; 
-lin pot110 = {s = "das" ; size = less100 ; n = Pl} ; 
+lin pot110 = {s = "ds" ; size = less100 ; n = Pl} ; 
 lin pot111 = {s = rows ! sg ! sg ; size = less100 ; n = Pl} ;
 lin pot1to19 d = {s = rows ! d.size ! sg ; size = less100 ; n = d.n} ;
 lin pot0as1 n = {s = n.s ! unit ; size = table {sg => singl ; _ => less100} ! n.size ; n = n.n } ;
@@ -90,7 +90,7 @@
 lin pot1 d = {s = d.s ! ten ; size = less100 ; n = d.n} ;
 lin pot1plus d e = {s = rows ! e.size ! d.size ; size = less100 ; n = d.n} ;
 
-lin pot1as2 n = {s = n.s ; s2 = "dummy" ; size = n.size ; n = n.n} ;
+lin pot1as2 n = {s = n.s ; s2 = "dmy" ; size = n.size ; n = n.n} ;
 lin pot2 d = {s = (mksau (d.s ! unit) d.size) ; 
               s2 = d.s ! unit ++ "lkh'" ; size = more100 ; n = d.n} ;
 lin pot2plus d e = 
@@ -122,5 +122,5 @@
 
 oper ekhazar : Str = variants {"hzar" ; "ak" ++ "hzar"} ; 
 oper mkhazar : Str -> Size -> Str = \s -> \sz -> table {singl => ekhazar ; _ => s ++ "hzar"} ! sz ;
-oper mksau : Str -> DSize -> Str = \s -> \sz -> table {sg => "sw" ; _ => s ++ "sw"} ! sz ;
+oper mksau : Str -> DSize -> Str = \s -> \sz -> table {sg => "ak" ++ "sw" ; _ => s ++ "sw"} ! sz ;
 }
diff --git a/lib/src/punjabi/src/QuestionPnb.gf b/lib/src/punjabi/src/QuestionPnb.gf
--- a/lib/src/punjabi/src/QuestionPnb.gf
+++ b/lib/src/punjabi/src/QuestionPnb.gf
@@ -16,7 +16,7 @@
            qp1 = qp.s ! Dir;
            qp2 = qp.s ! Obl ++ "nE"
           in { s = \\t,p,o => case t of {
-		             VPImpPast => qp2 ++ cl.s ! t ! p ! ODir;
+		             VPImpPast => case vp.subj of {VIntrans => qp1 ++ cl.s ! t ! p ! ODir; _ => qp2 ++ cl.s ! t ! p ! ODir};
 					 _         => qp1 ++ cl.s ! t ! p ! ODir
 					 }
 					}; 
@@ -64,7 +64,7 @@
       } ;
 
     IdetQuant iqant num = {
-      s = \\g => iqant.s ! num.n ++ num.s ; 
+      s = \\g => iqant.s ! num.n ! g ++ num.s ; 
       n = num.n
       } ;
 
diff --git a/lib/src/punjabi/src/RelativePnb.gf b/lib/src/punjabi/src/RelativePnb.gf
--- a/lib/src/punjabi/src/RelativePnb.gf
+++ b/lib/src/punjabi/src/RelativePnb.gf
@@ -6,23 +6,26 @@
   lin
 
     RelCl cl = {
-      s = \\t,p,o,agr => case <t,giveNumber agr> of {
-	                    <VPImpPast,Sg> => "js" ++ cl.s ! t ! p ! o ; 
-						<VPImpPast,Pl> => "jn" ++ cl.s ! t ! p ! o ;
-						<_,_>          => "jw" ++ cl.s ! t ! p ! o 
+      s = \\t,p,o,agr => case <t,giveNumber agr,giveGender agr> of {
+	                    <VPImpPast,Sg,_> => "jnE" ++ cl.s ! t ! p ! o ; 
+			    <VPImpPast,Pl,_> => "jnaN" ++ cl.s ! t ! p ! o ;
+			    <_,Sg,Masc>          => "jeRa" ++ cl.s ! t ! p ! o ;
+			    <_,Sg,Fem>          => "jeRy" ++ cl.s ! t ! p ! o ;
+			    <_,Pl,Masc>          => "jeRE" ++ cl.s ! t ! p ! o ;
+			    <_,Pl,Fem>          => "jeRyaN" ++ cl.s ! t ! p ! o 
 			};
       c = Dir
       } ;
 -- RelVP and RelSlash slows the linking process a lot this is why it is commented for test purposes
 
- {-   RelVP rp vp = {
+    RelVP rp vp = {
       s = \\t,p,o,ag => 
         let 
           agr = case rp.a of {
             RNoAg => ag ;
             RAg a => a
             } ;
-		 cl = mkSClause (rp.s ! (giveNumber agr) ! Dir) agr vp;
+		 cl = mkSClause (rp.s ! (giveNumber agr) ! (giveGender agr) ! Dir) agr vp;
 		  
 --          cl = case t of {
 --                VPImpPast =>  mkSClause (rp.s ! (giveNumber agr) ! Obl) agr vp;
@@ -39,33 +42,50 @@
 ---- "we are looking at").
 --
     RelSlash rp slash = {
-      s = \\t,p,o,agr => rp.s ! (giveNumber agr) ! Dir ++ slash.c2.s ++  slash.s ! t ! p ! o  ;--case t of {
+      s = \\t,p,o,agr => rp.s ! (giveNumber agr) ! (giveGender agr) ! Obl ++ slash.c2.s ++  slash.s ! t ! p ! o  ;--case t of {
 --	       VPImpPast => rp.s !  (giveNumber agr) Obl ++ slash.c2.s ++  slash.s ! t ! p ! o ;
 --		   _         => rp.s !  (giveNumber agr) Dir ++ slash.c2.s ++  slash.s ! t ! p ! o 
 --		   };
       c = Dir
       } ;
--}
+
     FunRP p np rp = {
-      s = \\n,c => rp.s ! n ! c ++ np.s ! NPC c ++ p.s  ;
+      s = \\n,g,c => rp.s ! n ! g ! c ++ np.s ! NPC c ++ p.s  ;
       a = RAg np.a
       } ;
 
     IdRP = {
       s = table {
         Sg => table {
+	  Masc => table {
 		
-    	    ResPnb.Dir  => "jeRa" ; 
-            ResPnb.Obl  => "jeRE" ;
-            ResPnb.Voc  => "jeRE" ;
-	    ResPnb.Abl => "jeRE"
+    	    ResPnb.Dir  => "jyRa" ; 
+            ResPnb.Obl  => "jn" ;
+            ResPnb.Voc  => "jyRE" ;
+	    ResPnb.Abl => "jyRE"
 	    };
-		Pl => table {
-            ResPnb.Dir  => "jeRE" ;
-		    ResPnb.Obl  => "jeRE" ;
-		    ResPnb.Voc  => "jeRE" ;
-		    ResPnb.Abl => "jeRE"
+	  Fem => table {
+		
+    	    ResPnb.Dir  => "jyRy" ; 
+            ResPnb.Obl  => "jn" ;
+            ResPnb.Voc  => "jyRy" ;
+	    ResPnb.Abl => "jyRy"
+	    }
+	    };
+	Pl => table {
+	    Masc => table {
+                    ResPnb.Dir  => "jyRE" ;
+		    ResPnb.Obl  => "jyRE" ;
+		    ResPnb.Voc  => "jyRE" ;
+		    ResPnb.Abl => "jyRE"
+			};
+	    Fem => table {
+                    ResPnb.Dir  => "jyRy" ;
+		    ResPnb.Obl  => "jyRy" ;
+		    ResPnb.Voc  => "jyRy" ;
+		    ResPnb.Abl => "jyRy"
 			}
+	  }
        }; 
       a = RNoAg
       } ;
diff --git a/lib/src/punjabi/src/ResPnb.gf b/lib/src/punjabi/src/ResPnb.gf
--- a/lib/src/punjabi/src/ResPnb.gf
+++ b/lib/src/punjabi/src/ResPnb.gf
@@ -83,7 +83,10 @@
 --  mkAdj2 : Str -> Adjective2 ;
 --  mkAdj2 romii = cmnAdj romii romii         (romii+"a")  (romii+"ywN")
 --                        romii (romii++"aN") (romii++"w")  "" ;
+  mkAdj3 : Str -> Adjective1 ;
+  mkAdj3 lal = adj1 lal lal lal lal lal lal lal lal lal lal lal lal lal lal lal lal ;
 
+
  cmnAdj : (x1,_,_,_,_,_,_,x8 : Str) -> {s : Gender => Case => Str} = 
       \sd,so,sv,sa, pd,po,pv,pa -> {
       s = table {
@@ -304,6 +307,8 @@
 		 VPTense VPFutr (Ag g n p) =>  {fin = copula CFuture n p g ; inf =  verb.s ! VF Subj p n g } ;
 		 VPTense VPPerf (Ag g n p) => { fin = [] ; inf = verb.s ! Root ++ cka g n } ; 
 		 VPStem => {fin = []  ; inf =  verb.s ! Root};
+		 VPInf => {fin = verb.s!Inf_Obl  ; inf =  verb.s ! Root};
+		 VPImp => {fin = verb.s!VF Subj Pers3_Near Pl Masc  ; inf =  verb.s ! Root};
 		 _ => {fin = [] ; inf = verb.s ! Root} 
 		 };
 	    obj = {s = [] ; a = defaultAgr} ;
@@ -329,7 +334,7 @@
 	   (mkAdj1 "pya").s ! n ! g ! Dir ;	   
 
 	cka : Gender -> Number -> Str = \g,n -> 
-	  (mkAdj1 "cka").s ! n ! g ! Dir ;
+	  (mkAdj1 "gya").s ! n ! g ! Dir ;
 	  
 	hw : PPerson -> Number -> Str = \pp,n ->    
 	 case <pp,n> of {
diff --git a/lib/src/punjabi/src/StructuralPnb.gf b/lib/src/punjabi/src/StructuralPnb.gf
--- a/lib/src/punjabi/src/StructuralPnb.gf
+++ b/lib/src/punjabi/src/StructuralPnb.gf
@@ -17,7 +17,7 @@
   behind_Prep = ss "pych'E" ;
   between_Prep = ss "wckar" ;
   both7and_DConj = sd2 "dwwyN" "tE" ** {n = Pl} ;
-  but_PConj = ss "lykn" ;
+  but_PConj = ss "mgr" ;
   by8agent_Prep = ss "" ;
   by8means_Prep = ss "" ;
   can8know_VV,can_VV = mkV "skna" ** { isAux = True} ;
@@ -31,7 +31,7 @@
   first_Ord = {s = "pehla" ; n = Sg} ; --DEPRECATED
   for_Prep = ss "[dE wast-E]" ;
   from_Prep = ss "twN" ;
-  he_Pron = personalPN "aw" "aynwN" "aw" "" "awra"  Sg Masc Pers3_Distant ;
+  he_Pron = personalPN "aw" "awnwN" "aw" "awrE" "awra"  Sg Masc Pers3_Distant ;
   here_Adv = mkAdv "ayth'E" ;
   here7to_Adv = mkAdv "ayth'E" ;
   here7from_Adv = mkAdv "ayth'wN" ;
@@ -64,53 +64,54 @@
   no_Utt = ss "nyN" ;
   on_Prep = ss "atE" ;
   one_Quant = demoPN "ak" "ak" "ak"  ; -- DEPRECATED
-  only_Predet = ss "srf" ;
+  only_Predet = ss "Srf" ;
   or_Conj = sd2 [] "ya" ** {n = Sg} ;
   otherwise_PConj = ss "ya fyr" ;
   part_Prep = ss "hSh" ;
   please_Voc = ss "mhrbani" ;
   possess_Prep = ss "da" ;
   quite_Adv = ss "khamosh" ;
-  she_Pron = personalPN "aw" "awnwN" "awnw" "" "awra" Sg Fem Pers3_Distant ;
+  she_Pron = personalPN "aw" "awnwN" "awnw" "awrE" "awra" Sg Fem Pers3_Distant ;
   so_AdA = ss "so" ;
   somebody_NP = MassNP (UseN (MorphoPnb.mkN11 "kwy" ));
   someSg_Det = mkDet "kch'" "kch'" "kch'" "kch'" Sg ;
   somePl_Det = mkDet "kch'" "kch'" "kch'" "kch'" Pl ;
   something_NP = MassNP (UseN (MorphoPnb.mkN11 "kwy XE"));
   somewhere_Adv = mkAdv "ktlE" ;
-  that_Quant = demoPN "wh" "as" "an" ;
+  that_Quant = demoPN "aw" "as" "an" ;
   that_Subj = ss "kh";
   there_Adv = mkAdv "awth'E" ;
   there7to_Adv = mkAdv "awth'E" ;
   there7from_Adv = mkAdv "awth'wN" ;
   therefore_PConj = ss "as ly" ;
-  they_Pron = personalPN "aw" "[awnaN nwN]" "aw" "" "awnaN da" Pl Masc Pers3_Distant ; ---- 
-  this_Quant = demoPN "yh" "as" "an";      
+  they_Pron = personalPN "aw" "[awnaN nwN]" "aw" "awnaN" "awnaN da" Pl Masc Pers3_Distant ; ---- 
+  this_Quant = demoPN "aE" "ayra" "aynaN";      
   through_Prep = ss "wcwN" ;
   too_AdA = ss "bht" ;
-  to_Prep = ss "awnwN" ** {lock_Prep = <>};
+--  to_Prep = ss "awnwN" ** {lock_Prep = <>};
+  to_Prep = ss "nwN" ** {lock_Prep = <>};
   under_Prep = ss "th'lE" ** {lock_Prep = <>};
   very_AdA = ss "bht" ;
   want_VV = mkV "cana" ** { isAux = False} ;
   we_Pron = personalPN "asy" "sanwN" "sanwN" "satwN" "saDa" Pl Masc Pers1 ;
---  whatSg_IP = mkIP "kya" "kis" "kis" Sg Masc ;
+  whatSg_IP = mkIP "kya" "kra" "kra" "kra" Sg Masc ; -- check it
 --  whatPl_IP = mkIP "kya" "kin" "kin" Pl Masc ;
   when_IAdv = ss "kdwN" ;
   when_Subj = ss "kdwN" ;
   where_IAdv = ss "kth'E" ;
-  which_IQuant = {s = \\_ => "kyRy"} ;
+  which_IQuant = mkIQuant "kyRa" "kyRy" "kyRE" "kyRy" ;
 --  whichPl_IDet = makeDet "kwn sa" "kwn sy" "kwn sE" "kwn sy" ;
 --  whichSg_IDet = makeDet "kwn sa" "kwn sy" "kwn sE" "kwn sy" ;
---  whoSg_IP = mkIP "kwn" "kis" "kis" Sg Masc  ;
+  whoSg_IP = mkIP "kwn" "kra" "kra" "kra" Sg Masc  ;
 --  whoPl_IP = mkIP "kwn" "kn" "knhwN" Pl Masc ;
   why_IAdv = ss "kywN" ;
   without_Prep = ss ["twN bGyr"] ;
   with_Prep = ss ["dE nal"] ;
 --  yes_Phr = ss "haN" ;
   yes_Utt = ss "haN" ;
-  youSg_Pron = personalPN "twN" "tynwN" "tynwN" "tytwN" "twwaDa" Sg Masc Pers2_Casual ;
-  youPl_Pron = personalPN "tsy" "twanwN" "twanwN" "twatwN" "twwaDa" Pl Masc Pers2_Casual ;
-  youPol_Pron = personalPN "tsy" "twanwN" "twanwN" "twatwN" "twwaDa" Sg Masc Pers2_Respect  ;
+  youSg_Pron = personalPN "twN" "tynwN" "tynwN" "tyrE" "twwaDa" Sg Masc Pers2_Casual ;
+  youPl_Pron = personalPN "tsy" "twanwN" "twanwN" "twaDE" "twwaDa" Pl Masc Pers2_Casual ;
+  youPol_Pron = personalPN "tsy" "twanwN" "twanwN" "twaDE" "twwaDa" Sg Masc Pers2_Respect  ;
   no_Quant =  demoPN " kwy nhyN" "kwy nhyN" "kwy nhyN" ; 
   not_Predet = {s="nhyN"} ;
   if_then_Conj = sd2 "agr" "tE" ** {n = Sg} ; 
diff --git a/lib/src/punjabi/src/SymbolPnb.gf b/lib/src/punjabi/src/SymbolPnb.gf
--- a/lib/src/punjabi/src/SymbolPnb.gf
+++ b/lib/src/punjabi/src/SymbolPnb.gf
@@ -12,15 +12,18 @@
   NumPN i = {s = \\_ =>i.s ; g = Masc} ;
   CNIntNP cn i = {
     s = \\c => cn.s ! Sg ! Dir ++ i.s ;
-    a = agrP3 cn.g Sg
+    a = agrP3 cn.g Sg ;
+    isPron = False
     } ;
   CNSymbNP det cn xs = {
     s = \\c => det.s!Sg!Masc ++ cn.s ! det.n ! Dir ++  xs.s ; 
-    a = agrP3 cn.g det.n
+    a = agrP3 cn.g det.n;
+    isPron = False
     } ;
   CNNumNP cn i = {
     s = \\c => cn.s ! Sg ! Dir ++ i.s ;
-    a = agrP3 cn.g Sg
+    a = agrP3 cn.g Sg;
+    isPron = False
     } ;
 
   SymbS sy = sy ; 
diff --git a/lib/src/punjabi/src/VerbPnb.gf b/lib/src/punjabi/src/VerbPnb.gf
--- a/lib/src/punjabi/src/VerbPnb.gf
+++ b/lib/src/punjabi/src/VerbPnb.gf
@@ -40,6 +40,7 @@
     CompAP ap ={s = \\a => ap.s ! giveNumber a ! giveGender a ! Dir } ;
     CompNP np = {s = \\_ => np.s ! NPObj} ;
     CompAdv adv = {s = \\a => adv.s ! (fromAgr a).g } ;
+    CompCN cn = {s = \\a => cn.s ! giveNumber a ! Dir} ;
 
 
 }
diff --git a/lib/src/romance/ConjunctionRomance.gf b/lib/src/romance/ConjunctionRomance.gf
--- a/lib/src/romance/ConjunctionRomance.gf
+++ b/lib/src/romance/ConjunctionRomance.gf
@@ -32,11 +32,11 @@
     ConsAdv = consrSS comma ;
     BaseNP x y = {
       s1 = \\c => (x.s ! c).ton ; 
-      s2 = \\c => (y.s ! c).ton ; ----e (conjunctCase c) ; 
+      s2 = \\c => (y.s ! conjunctCase c).ton ; ----e (conjunctCase c) ; 
       a = conjAgr x.a y.a
       } ;
     ConsNP x xs = {
-      s1 = \\c => (x.s ! c).ton ++ comma ++ xs.s1 ! c ; ----e (conjunctCase c) ; 
+      s1 = \\c => (x.s ! c).ton ++ comma ++ xs.s1 ! conjunctCase c ; ----e (conjunctCase c) ; 
       s2 = \\c => xs.s2 ! c ; ----e (conjunctCase c) ; 
       a = conjAgr x.a xs.a
       } ;
diff --git a/lib/src/romance/DiffRomance.gf b/lib/src/romance/DiffRomance.gf
--- a/lib/src/romance/DiffRomance.gf
+++ b/lib/src/romance/DiffRomance.gf
@@ -34,7 +34,7 @@
 -- Whether a preposition is repeated in conjunction
 -- (Fre "la somme de 3 et de 4", Ita "la somma di 3 e 4").
 
-  oper conjunctCase : NPForm -> NPForm ;
+  oper conjunctCase : Case -> Case ;
 
 -- How infinitives and clitics are placed relative to each other
 -- (Fre "la voir", Ita "vederla"). The $Bool$ is used for indicating
diff --git a/lib/src/romance/SentenceRomance.gf b/lib/src/romance/SentenceRomance.gf
--- a/lib/src/romance/SentenceRomance.gf
+++ b/lib/src/romance/SentenceRomance.gf
@@ -67,7 +67,8 @@
       c2 = cl.c2
     } ;
 
-    AdvS a s = {s = \\o => a.s ++ "," ++ s.s ! o} ;
+    AdvS a s = {s = \\o => a.s ++ s.s ! o} ;
+    ExtAdvS a s = {s = \\o => a.s ++ "," ++ s.s ! o} ;
 
     SSubjS a s b = {s = \\m => a.s ! m ++ s.s ++ b.s ! s.m} ;
 
diff --git a/lib/src/romance/VerbRomance.gf b/lib/src/romance/VerbRomance.gf
--- a/lib/src/romance/VerbRomance.gf
+++ b/lib/src/romance/VerbRomance.gf
@@ -74,7 +74,10 @@
     UseComp comp = insertComplement comp.s (predV copula) ;
 
     CompAP ap = {s = \\ag => let agr = complAgr ag in ap.s ! AF agr.g agr.n} ;
-    CompCN cn = { s = \\ag => let agr = complAgr ag in cn.s ! agr.n}; --- RE 7/12/2010
+    CompCN cn = { s = \\ag => 
+      let agr = complAgr ag in 
+      artIndef cn.g agr.n Nom ++ cn.s ! agr.n
+      }; --- RE 7/12/2010 -- AR added indef 2/8/2011
     CompNP np = {s = \\_  => (np.s ! Nom).ton} ;
     CompAdv a = {s = \\_  => a.s} ;
 
diff --git a/lib/src/romanian/SentenceRon.gf b/lib/src/romanian/SentenceRon.gf
--- a/lib/src/romanian/SentenceRon.gf
+++ b/lib/src/romanian/SentenceRon.gf
@@ -92,6 +92,7 @@
     } ;
 
     AdvS a s = {s = \\o => a.s ++ s.s ! o} ;
+    ExtAdvS a s = {s = \\o => a.s ++ "," ++ s.s ! o} ;
 
     RelS s r = {
       s = \\o => s.s ! o ++ "," ++ r.s ! Indic ! agrP3 Masc Sg
diff --git a/lib/src/romanian/StructuralRon.gf b/lib/src/romanian/StructuralRon.gf
--- a/lib/src/romanian/StructuralRon.gf
+++ b/lib/src/romanian/StructuralRon.gf
@@ -133,6 +133,8 @@
   isDef = False ; isPost = False ; hasRef = False
 };
 
+  that_Subj = ss "că" ;
+
   there7from_Adv = ss ["de acolo"] ;
   there7to_Adv = ss "până acolo" ; 
   there_Adv = ss "acolo" ;
diff --git a/lib/src/russian/LexiconRus.gf b/lib/src/russian/LexiconRus.gf
--- a/lib/src/russian/LexiconRus.gf
+++ b/lib/src/russian/LexiconRus.gf
@@ -163,6 +163,8 @@
   king_N = mkN "король" "короля" "королю" "короля" "королем" "короле" "короле" "короли" "королей" "королям" "королей" "королями" "королях"  masculine animate ;
   knee_N = mkN "колено" "колена" "колену" "колена" "коленом" "колене" "колене" "колени" "колен" "коленам" "колен" "коленями" "коленях"  neuter inanimate ;
   know_V2= dirV2 (regV imperfective first "зна" "ю" "знал" "знай" "знать" );
+  know_VS= mkVQ (regV imperfective first "зна" "ю" "знал" "знай" "знать" );
+  know_VQ= mkVQ (regV imperfective first "зна" "ю" "знал" "знай" "знать" );
   lake_N = mkN "озеро" ; -- gen pl "озёр"
   lamp_N = mkN "лампа" ;
   language_N = mkN "язык" ;
diff --git a/lib/src/russian/MorphoRus.gf b/lib/src/russian/MorphoRus.gf
--- a/lib/src/russian/MorphoRus.gf
+++ b/lib/src/russian/MorphoRus.gf
@@ -1073,7 +1073,8 @@
 --oper verbPoranit : Verbum = verbDecl Perfective Second "поран" "ю" "поранил" "порань" "поранить";
 --
 -- Irregular Mixed:
-oper verbKhotet : Verbum = verbDecl Imperfective Mixed "хоч" "у" "хотел" "хоти" "хотеть";
+oper verbKhotet : Verbum = verbDecl Imperfective Mixed "хо" "у" "хотел" "хоти" "хотеть";
+--AR oper verbKhotet : Verbum = verbDecl Imperfective Mixed "хоч" "у" "хотел" "хоти" "хотеть";
 
 -- Irregular
 oper verbDolzhen : Verbum = verbDecl Imperfective Dolzhen "долж" "ен" "долж" ["будь должен"] ["быть должным"] ;
@@ -1103,7 +1104,8 @@
 -- +++ MG_UR: changed! +++
 oper presentConjMixed: Str -> Str -> PresentVerb = \del, sgP1End ->
   table {
-    PRF (GSg _) P1 => del+ sgP1End ; -- sgP1End "чу"
+    PRF (GSg _) P1 => del+ "чу" ;
+--AR    PRF (GSg _) P1 => del+ sgP1End ; -- sgP1End "чу"
     PRF (GSg _) P2 => del+ "чешь" ;
     PRF (GSg _) P3 => del+ "чет" ;
     PRF GPl P1 => del+ "тим" ;
diff --git a/lib/src/russian/ParadigmsRus.gf b/lib/src/russian/ParadigmsRus.gf
--- a/lib/src/russian/ParadigmsRus.gf
+++ b/lib/src/russian/ParadigmsRus.gf
@@ -157,6 +157,9 @@
 
   mkAdv : Str -> Adv ;
 
+--2 Prepositions
+  mkPrep : Str -> Case -> Prep ; -- as in German
+
 --2 Verbs
 --
 -- In our lexicon description ("Verbum") there are 62 forms: 
@@ -218,6 +221,8 @@
 
    mkV2     : V   -> Str -> Case -> V2 ;   -- "войти в дом"; "в", accusative
    mkV3  : V -> Str -> Str -> Case -> Case -> V3 ; -- "сложить письмо в конверт"
+   mkVS  : V -> VS ;
+   mkVQ  : V -> VQ ;   
    dirV2    : V -> V2 ;                    -- "видеть", "любить"
    tvDirDir : V -> V3 ; 
                             
@@ -412,6 +417,9 @@
 
   mkAdv x = ss x ** {lock_Adv = <>} ;
 
+-- Prepositions definitions
+  mkPrep s c = {s = s ; c = c ; lock_Prep = <>} ;
+
 -- Verb definitions 
 
 --   mkVerbum = \asp, sgP1, sgP2, sgP3, plP1, plP2, plP3, 
@@ -462,6 +470,10 @@
 -- verb takes both complements to form a verb phrase.
 
    mkV3 v s1 s2 c1 c2 = v ** {c2 = {s=s1; c=c1}; c3={s=s2; c=c2}; lock_V3 = <>};  
+
+
+   mkVS v = v ** {lock_VS = <>} ;
+   mkVQ v = v ** {lock_VQ = <>} ;
 
 } ;
 
diff --git a/lib/src/russian/SentenceRus.gf b/lib/src/russian/SentenceRus.gf
--- a/lib/src/russian/SentenceRus.gf
+++ b/lib/src/russian/SentenceRus.gf
@@ -129,7 +129,8 @@
     };
 
 
-    AdvS a s = {s = a.s ++ "," ++ s.s} ; ---- AR 19/6/2007
+    AdvS a s = {s = a.s ++ s.s} ; ---- AR 19/6/2007
+    ExtAdvS a s = {s = a.s ++ "," ++ s.s} ; ---- AR 1/9/2011
 
     ---- AR 17/12/2008
     RelS s r = {s = s.s ++ "," ++ r.s ! gennum Neut Sg ! Nom ! Inanimate} ; ---- ?
diff --git a/lib/src/russian/StructuralRus.gf b/lib/src/russian/StructuralRus.gf
--- a/lib/src/russian/StructuralRus.gf
+++ b/lib/src/russian/StructuralRus.gf
@@ -39,6 +39,7 @@
   everywhere_Adv = ss "везде" ;
   few_Det = nemnogoSgDet **{lock_Det= <>; n= Sg; g = PNoGen; c = Nom};
 --- DEPREC  first_Ord = (uy_j_EndDecl  "перв" ) ** {lock_A = <>};  --AStaruyj 
+  for_Prep = { s = "для" ; c = Gen };
   from_Prep  = { s = "от" ; c = Gen };
   he_Pron  = pronOn ;
   here_Adv = ss "здесь" ;
diff --git a/lib/src/scandinavian/ConjunctionScand.gf b/lib/src/scandinavian/ConjunctionScand.gf
--- a/lib/src/scandinavian/ConjunctionScand.gf
+++ b/lib/src/scandinavian/ConjunctionScand.gf
@@ -29,8 +29,14 @@
 
 -- These fun's are generated from the list cat's.
 
-    BaseS = twoTable Order ;
-    ConsS = consrTable Order comma ;
+    BaseS x y = { -- twoTable Order ;
+      s1 = x.s ;
+      s2 = table {Inv => y.s ! Main ; o => y.s ! o}
+      } ;
+    ConsS x xs = { -- consrTable Order comma ;
+      s1 = \\o => x.s ! Inv ++ comma ++ xs.s1 ! case o of {Inv => Main ; _ => o} ;
+      s2 = xs.s2
+      } ;
     BaseAdv = twoSS ;
     ConsAdv = consrSS comma ;
     BaseNP x y = twoTable NPForm x y ** {a = conjAgr x.a y.a} ;
diff --git a/lib/src/scandinavian/NounScand.gf b/lib/src/scandinavian/NounScand.gf
--- a/lib/src/scandinavian/NounScand.gf
+++ b/lib/src/scandinavian/NounScand.gf
@@ -120,8 +120,8 @@
         Pl => \\_,bn,_ => []
         } ; 
       sp = table {
-        Sg => \\_,bn,g => artIndef ! g ; 
-        Pl => \\_,bn,_ => detIndefPl
+        Sg => \\_,bn,g => if_then_Str bn [] (artIndef ! g) ; 
+        Pl => \\_,bn,_ => if_then_Str bn [] detIndefPl
         } ; 
       det = DIndef
       } ;
diff --git a/lib/src/scandinavian/SentenceScand.gf b/lib/src/scandinavian/SentenceScand.gf
--- a/lib/src/scandinavian/SentenceScand.gf
+++ b/lib/src/scandinavian/SentenceScand.gf
@@ -58,6 +58,7 @@
     } ;
 
     AdvS a s = {s = \\o => a.s ++ s.s ! Inv} ;
+    ExtAdvS a s = {s = \\o => a.s ++ "," ++ s.s ! Inv} ;
 
     RelS s r = {s = \\o => s.s ! o ++ "," ++ r.s ! agrP3 Neutr Sg} ; --- vilket
 
diff --git a/lib/src/spanish/DiffSpa.gf b/lib/src/spanish/DiffSpa.gf
--- a/lib/src/spanish/DiffSpa.gf
+++ b/lib/src/spanish/DiffSpa.gf
@@ -47,9 +47,9 @@
       } ;
 -}
 
-    conjunctCase : NPForm -> NPForm = \c -> case c of {
-      Ton Nom | Aton Nom => Ton Nom ;
-      _ => Ton Acc 
+    conjunctCase : Case -> Case = \c -> case c of {
+      Nom => Nom ;
+      _ => Acc 
       } ;
 
     auxVerb : VType -> (VF => Str) = \_ -> haber_V.s ;
diff --git a/lib/src/spanish/MorphoSpa.gf b/lib/src/spanish/MorphoSpa.gf
--- a/lib/src/spanish/MorphoSpa.gf
+++ b/lib/src/spanish/MorphoSpa.gf
@@ -50,6 +50,7 @@
       _   => mkNoun (nomPilar mec) Masc
       } ;
 
+
 --2 Adjectives
 --
 -- Adjectives are conveniently seen as gender-dependent nouns.
@@ -71,16 +72,47 @@
     in
     mkAdj solo (sol + "a") (sol + "os") (sol + "as") (sol + "amente") ;
 
+  -- masculine and feminine are identical: 
+  -- adjectives ending with -e, -a and many but not all that end in a consonant
   adjUtil : Str -> Str -> Adj = \util,utiles -> 
     mkAdj util util utiles utiles (util + "mente") ;
 
+  -- adjectives that end in consonant but have different masc and fem forms
+  -- español, hablador ...
+  adjEspanol : Str -> Str -> Adj = \espanol,espanola ->
+    mkAdj espanol espanola (espanol + "es") (espanol + "as") (espanola + "mente") ;
+
   adjBlu : Str -> Adj = \blu -> 
     mkAdj blu blu blu blu blu ; --- 
 
+ -- francés francesa franceses francesas
+  adjEs : Str -> Adj = \francEs ->
+    let franc  : Str = Predef.tk 2 francEs ;
+        frances : Str = franc + "es" ;
+    in mkAdj francEs (frances + "a") (frances + "es") (frances + "as") (frances + "amente") ;
+ 
+
+   -- alemán alemana alemanes alemanas
+  adjVn : Str -> Adj = \alemAn ->
+    let alemA : Str = init alemAn ;
+        alem  : Str = init alemA ;
+        A : Str = last alemA ;
+        V : Str = case A of {
+          "á" => "a" ;
+          "é" => "e" ;
+          "í­" => "i" ;
+          "ó" => "o"
+        } ;
+        alemVn : Str = alem + V + "n" ;
+    in mkAdj alemAn (alemVn + "a") (alemVn + "es")
+            (alemVn + "as") (alemVn + "amente") ;
+
   mkAdjReg : Str -> Adj = \solo -> 
-    case last solo of {
-      "o" => adjSolo solo ;
-      "e" => adjUtil solo (solo + "s") ;
+    case solo of {
+      _ + "o" => adjSolo solo ;
+      _ + ("e" | "a") => adjUtil solo (solo + "s") ;
+      _ + "és" => adjEs solo ;
+      _ + ("á" | "é­" | "í" | "ó")  + "n" => adjVn solo ;
       _   => adjUtil solo (solo + "es")
 ----      _   => adjBlu solo
       } ;
diff --git a/lib/src/spanish/ParadigmsSpa.gf b/lib/src/spanish/ParadigmsSpa.gf
--- a/lib/src/spanish/ParadigmsSpa.gf
+++ b/lib/src/spanish/ParadigmsSpa.gf
@@ -142,6 +142,10 @@
 
     mkA : (util : Str) -> A ; -- predictable adjective
 
+-- Some adjectives need the feminine form separately.
+
+    mkA : (espanol,espanola : Str) -> A ;
+
 -- One-place adjectives compared with "mas" need five forms in the worst
 -- case (masc and fem singular, masc plural, adverbial).
 
@@ -168,7 +172,15 @@
   mkA2 : A -> Prep -> A2 ; -- e.g. "casado" + dative
 
 
+-- Quantifiers
 
+  mkQuant : (ese,esa,esos,esas : Str) -> Quant ;
+
+  mkDet : (mucho,mucha : Str) -> Number -> Det ;
+
+  mkOrd : A -> Ord ;
+
+
 --2 Adverbs
 
 -- Adverbs are not inflected. Most lexical ones have position
@@ -184,6 +196,8 @@
 
   mkAdA : Str -> AdA ;
 
+  mkAdN : Str -> AdN ;
+  
 
 --2 Verbs
 
@@ -318,6 +332,10 @@
 
   mk5A a b c d e = 
    compADeg {s = \\_ => (mkAdj a b c d e).s ; isPre = False ; lock_A = <>} ;
+
+  mk2A a b =
+   compADeg {s = \\_ => (adjEspanol a b).s ; isPre = False ; lock_A = <>} ;
+
   regA a = compADeg {s = \\_ => (mkAdjReg a).s ; isPre = False ; lock_A = <>} ;
   prefA a = {s = a.s ; isPre = True ; lock_A = <>} ;
 
@@ -335,7 +353,39 @@
   mkAdv x = ss x ** {lock_Adv = <>} ;
   mkAdV x = ss x ** {lock_AdV = <>} ;
   mkAdA x = ss x ** {lock_AdA = <>} ;
+  mkAdN x = ss x ** {lock_AdN = <>} ;
 
+  mkOrd adj = lin Ord {
+    s = \\ag => adj.s ! Posit ! AF ag.g ag.n ;
+    } ;
+
+  mkQuant ese esa esos esas = 
+    let 
+      se  : Str = Predef.drop 1 ese ;
+      sa  : Str = Predef.drop 1 esa ;
+      sos : Str = Predef.drop 1 esos ;
+      sas : Str = Predef.drop 1 esas ;
+      E   : Str = "é" ;
+      attrforms : Number => Gender => Case => Str = table {
+        Sg => \\g,c => prepCase c ++ genForms ese esa ! g ;
+        Pl => \\g,c => prepCase c ++ genForms esos esas ! g ---- 
+        } ;
+      npforms : Number => Gender => Case => Str = table {
+        Sg => \\g,c => prepCase c ++ genForms (E + se)  (E + sa)  ! g ;
+        Pl => \\g,c => prepCase c ++ genForms (E + sos) (E + sas) ! g }
+    in lin Quant {
+      s = \\_ => attrforms ;
+      s2 = [] ;
+      sp = npforms 
+      } ;
+
+  mkDet mucho mucha number = 
+    lin Det {
+      s,sp = \\g,c => prepCase c ++ genForms mucho mucha ! g ;
+      n = number;
+      s2 = []
+      } ;
+
   regV x = -- cortar actuar cazar guiar pagar sacar
     let 
       ar = Predef.dp 2 x ;
@@ -428,11 +478,13 @@
 
   mkA = overload {
     mkA : (util : Str) -> A  = regA ;
+    mkA : (espanol,espanola : Str) -> A  = mk2A ;
     mkA : (solo,sola,solos,solas,solamente : Str) -> A = mk5A ;
     mkA : (bueno : A) -> (mejor : A) -> A = mkADeg ;
     } ;
 
-  mk5A : (solo,sola,solos,solas, solamente : Str) -> A ;
+  mk5A : (solo,sola,solos,solas,solamente : Str) -> A ;
+  mk2A : (espanol,espanola : Str) -> A ;
   regA : Str -> A ;
   mkADeg : A -> A -> A ;
   compADeg : A -> A ;
diff --git a/lib/src/spanish/StructuralSpa.gf b/lib/src/spanish/StructuralSpa.gf
--- a/lib/src/spanish/StructuralSpa.gf
+++ b/lib/src/spanish/StructuralSpa.gf
@@ -16,7 +16,7 @@
   almost_AdA, almost_AdN = ss "casi" ;
   always_AdV = ss "siempre" ;
   although_Subj = ss "benché" ** {m = Conjunct} ;
-  and_Conj = {s1 = [] ; s2 = "y" ; n = Pl} ;
+  and_Conj = {s1 = [] ; s2 = etConj.s ; n = Pl} ;
   because_Subj = ss "porque" ** {m = Indic} ;
   before_Prep = {s = "antes" ; c = MorphoSpa.genitive ; isDir = False} ;
   behind_Prep = {s = "detrás" ; c = MorphoSpa.genitive ; isDir = False} ;
diff --git a/lib/src/swahili/AdjectiveSwa.gf b/lib/src/swahili/AdjectiveSwa.gf
new file mode 100644
--- /dev/null
+++ b/lib/src/swahili/AdjectiveSwa.gf
@@ -0,0 +1,11 @@
+concrete AdjectiveSwa of Adjective = CatSwa ** open ResSwa, Prelude , ParamX  in {
+
+  lin
+
+    PositA  a = {
+       s = a.s ! Posit  ;
+       } ;
+
+    -- PositA a = a;
+
+}
diff --git a/lib/src/swahili/AdverbSwa.gf b/lib/src/swahili/AdverbSwa.gf
new file mode 100644
--- /dev/null
+++ b/lib/src/swahili/AdverbSwa.gf
@@ -0,0 +1,12 @@
+concrete AdverbSwa of Adverb = CatSwa ** open ResSwa, Prelude in {
+
+   lin
+
+-- PositAdvAdj : A -> Adv ;                 -- vizuri
+
+      PositAdvAdj a = {
+      s = a.s ! Posit ! AA
+      } ;
+
+
+}
diff --git a/lib/src/swahili/BackwardSwa.gf b/lib/src/swahili/BackwardSwa.gf
new file mode 100644
--- /dev/null
+++ b/lib/src/swahili/BackwardSwa.gf
@@ -0,0 +1,4 @@
+concrete BackwardSwa of Backward = CatSwa ** open ResSwa in {
+
+  
+}
diff --git a/lib/src/swahili/CatSwa.gf b/lib/src/swahili/CatSwa.gf
new file mode 100644
--- /dev/null
+++ b/lib/src/swahili/CatSwa.gf
@@ -0,0 +1,45 @@
+--# -path=.:../abstract:../../prelude:../common
+concrete CatSwa of Cat = CommonX ** open ResSwa, Prelude in {
+
+  flags optimize=all_subs ;
+
+  lincat
+
+    CN = {s,s1,s2 : Number => Str; g : Gender ; anim : Animacy ; hasAdj : Bool } ;
+    N = {s : Number => Str; g : Gender ; anim : Animacy } ;
+    N2 = {s : Number => Str; g : Gender ; anim : Animacy } ** {c2 : Str} ;
+    N3 = {s : Number => Str; g : Gender ; anim : Animacy } ** {c2,c3 : Str} ;
+    Pron = {s :Number => Str ; p : Person};
+    V,VA = Verb ; -- = {s : VForm => Str} ;
+    V2 = Verb ** {c2 : Str} ;
+    NP = {s : Case => Str ; a : Agr} ;
+    A  = {s : Degree => AForm => Str} ;
+    AP = {s : AForm => Str} ;
+    Det   = {s : Gender => Case => Animacy => Str ; n : Number } ;
+    Quant   = {s : Number => Gender => Animacy => Case => Str} ;
+    Predet,Ord = {s : Str} ;
+    
+    
+        
+-- Open lexical classes, e.g. Lexicon 
+
+-- Verb
+
+    VP = ResSwa.VP ;
+
+-- Numeral
+   Num     = {s : Gender => Str ; n : Number} ;
+
+{--    
+    Num = {s : Gender => Animacy => Str ; n : Number} ;
+    Card = {s : Gender => Animacy => Str ; n : Number} ;
+    Digits = {s : Str ; n : Number} ; 
+--}
+--Prepositions
+   Prep = {s : Str} ; 
+
+-- Sentence
+
+    Cl    = Clause ;
+   
+}
diff --git a/lib/src/swahili/CompatibilitySwa.gf b/lib/src/swahili/CompatibilitySwa.gf
new file mode 100644
--- /dev/null
+++ b/lib/src/swahili/CompatibilitySwa.gf
@@ -0,0 +1,7 @@
+--# -path=.:../abstract:../common
+
+concrete CompatibilitySwa of Compatibility = CatSwa ** open Prelude, ResSwa in {
+
+
+
+}
diff --git a/lib/src/swahili/ConjunctionSwa.gf b/lib/src/swahili/ConjunctionSwa.gf
new file mode 100644
--- /dev/null
+++ b/lib/src/swahili/ConjunctionSwa.gf
@@ -0,0 +1,6 @@
+concrete ConjunctionSwa of Conjunction = 
+  CatSwa ** open ResSwa, Coordination, Prelude in {
+
+ 
+
+  }
diff --git a/lib/src/swahili/ExtraSwa.gf b/lib/src/swahili/ExtraSwa.gf
new file mode 100644
--- /dev/null
+++ b/lib/src/swahili/ExtraSwa.gf
@@ -0,0 +1,6 @@
+concrete ExtraSwa of ExtraSwaAbs = CatSwa ** 
+  open ResSwa, Coordination, Prelude, MorphoSwa in {
+
+  lin that1_Quant = {s = \\n,nc,g => mkQuant SpHr n nc g P3} ;
+
+} 
diff --git a/lib/src/swahili/ExtraSwaAbs.gf b/lib/src/swahili/ExtraSwaAbs.gf
new file mode 100644
--- /dev/null
+++ b/lib/src/swahili/ExtraSwaAbs.gf
@@ -0,0 +1,4 @@
+abstract ExtraSwaAbs = Extra ** {
+
+
+}
diff --git a/lib/src/swahili/GrammarSwa.gf b/lib/src/swahili/GrammarSwa.gf
new file mode 100644
--- /dev/null
+++ b/lib/src/swahili/GrammarSwa.gf
@@ -0,0 +1,9 @@
+--# -path=.:../abstract:../common:prelude
+
+concrete GrammarSwa of Grammar =NounSwa , AdjectiveSwa , StructuralSwa ,VerbSwa , SentenceSwa , AdverbSwa
+  
+  ** {
+
+flags startcat = Phr ; unlexer = text ; lexer = text ;
+
+} ;
diff --git a/lib/src/swahili/IdiomSwa.gf b/lib/src/swahili/IdiomSwa.gf
new file mode 100644
--- /dev/null
+++ b/lib/src/swahili/IdiomSwa.gf
@@ -0,0 +1,7 @@
+concrete IdiomSwa of Idiom = CatSwa ** open Prelude, ResSwa in {
+
+  flags optimize=all_subs ;
+
+  
+}
+
diff --git a/lib/src/swahili/IrregSwa.gf b/lib/src/swahili/IrregSwa.gf
new file mode 100644
--- /dev/null
+++ b/lib/src/swahili/IrregSwa.gf
@@ -0,0 +1,8 @@
+--# -path=.:prelude:../abstract:../common
+
+concrete IrregSwa of IrregSwaAbs = CatSwa ** open ParadigmsSwa in {
+
+flags optimize=values ;
+
+  
+}
diff --git a/lib/src/swahili/IrregSwaAbs.gf b/lib/src/swahili/IrregSwaAbs.gf
new file mode 100644
--- /dev/null
+++ b/lib/src/swahili/IrregSwaAbs.gf
@@ -0,0 +1,3 @@
+abstract IrregSwaAbs = Cat ** {
+
+}
diff --git a/lib/src/swahili/LangSwa.gf b/lib/src/swahili/LangSwa.gf
new file mode 100644
--- /dev/null
+++ b/lib/src/swahili/LangSwa.gf
@@ -0,0 +1,10 @@
+--# -path=.:../abstract:../common:../prelude
+
+concrete LangSwa of Lang = 
+  GrammarSwa,
+  LexiconSwa
+  ** {
+
+flags startcat = Phr ; unlexer = text ; lexer = text ;
+
+} ;
diff --git a/lib/src/swahili/LexiconSwa.gf b/lib/src/swahili/LexiconSwa.gf
new file mode 100644
--- /dev/null
+++ b/lib/src/swahili/LexiconSwa.gf
@@ -0,0 +1,99 @@
+--# -path=.:../abstract:../../prelude:../common
+concrete LexiconSwa of Lexicon = CatSwa ** 
+  open ParadigmsSwa, Prelude in {
+
+flags 
+  optimize=values ;
+
+lin
+
+  bird_N = regN "ndege" e_e animate;
+  country_N = regN "nchi" e_e inanimate ;
+  cousin_N = regN "binamu" e_ma animate;
+  cow_N = regN "ngombe" e_e animate;
+  doctor_N = regN "daktari" e_ma animate ;
+  dog_N = regN "mbwa" e_e animate ;
+  door_N = regN "mlango" m_mi inanimate;
+  enemy_N = regN "adui" e_ma animate;
+  father_N = regN "baba" e_e animate;
+  fish_N = regN "samaki" e_e animate;
+  friend_N = regN "rafiki" e_ma animate;
+  garden_N = regN "shamba" e_ma inanimate;
+  girl_N = regN "msichana" m_wa animate ;
+  lamp_N = regN "taa" e_e inanimate ;
+  man_N = regN "mwanaume" m_wa animate ;
+  tree_N = regN "mti" m_mi inanimate ; 
+  water_N = regN "maji" ma_ma inanimate ;
+  woman_N = regN "mwanamke" m_wa animate ;
+  ear_N = regN "sikio" e_ma inanimate ;
+  eye_N = mkN "jicho" "macho" ji_ma inanimate ;
+  fingernail_N = regN "ukucha" u_e inanimate ;  
+  nose_N = regN "pua" e_ma inanimate;
+  person_N = regN "mtu" m_wa animate ;
+  road_N = regN "barabara" e_e inanimate;
+  tooth_N = regN "jino" ji_ma inanimate ;
+  wife_N = regN "bibi" e_ma animate ;
+  river_N = regN "mto" m_mi inanimate ;
+  
+  come_V = regV "kuja";
+  walk_V = regV "tembea";
+  sleep_V = regV "lala";
+  smell_V = regV "nuka";
+  stand_V = regV "simama";
+  stop_V = regV "simama";
+  swell_V = regV "fura";
+  swim_V = regV "ogelea";
+  think_V = regV "waza";
+  travel_V = regV "safiri";
+
+  big_A = regA "kubwa";
+  
+  beautiful_A = regA "rembo" ;
+  black_A = regA "eusi";
+  blue_A = regA "buluu" ;
+  broad_A = regA "pana" ; 
+  brown_A = regA "hudhurungi" ;
+  clean_A = regA "safi" ;
+  clever_A = regA "hodari" ;
+  cold_A = regA "baridi";
+  correct_A = regA "sahihi" ;
+  dirty_A = regA "chafu" ;
+  dry_A = regA "kavu" ;
+  dull_A = regA "liofifia" ;
+  full_A = regA "tele" ;
+  good_A = regA "zuri" ;
+  green_A = regA "kijani";
+  heavy_A = regA "zito" ;
+  hot_A = regA "moto" ;
+  important_A = regA "muhimu" ;
+  long_A = regA "refu" ;
+  narrow_A = regA "embamba" ;
+  near_A = regA "karibu" ;
+  new_A = regA "pya" ;
+  old_A = regA "zee" ;
+  ready_A = regA "tayari" ;
+  red_A = regA "ekundu" ;
+  rotten_A = regA "oza" ;
+  round_A = regA "viringo" ;
+  sharp_A = regA "kali" ;
+  short_A = regA "fupi" ;
+  small_A = regA "dogo" ;
+  smooth_A = regA "laini" ;
+  straight_A = regA "nyofu" ;
+  stupid_A = regA "jinga" ;
+  thick_A = regA "nene" ;
+  thin_A = regA "embamba" ;
+  ugly_A = regA "baya";
+  certain_A = regA "hakika" ;
+  warm_A = regA "fufutende" ;
+  wet_A = regA "nyevu" ;
+  white_A = regA "eupe" ;
+  wide_A = regA "pana" ;
+  yellow_A = regA "njano" ;
+  young_A = regA "bichi" ;
+
+  father_N2 = mkN2 (regN "baba" e_e animate) (mkPrep "ya") ;
+  mother_N2 = mkN2 (regN "mama" e_e animate) (mkPrep "ya");
+  brother_N2 = mkN2 (regN  "ndugu" e_e animate) (mkPrep "ya") ;
+
+} ;
diff --git a/lib/src/swahili/MakeStructuralSwa.gf b/lib/src/swahili/MakeStructuralSwa.gf
new file mode 100644
--- /dev/null
+++ b/lib/src/swahili/MakeStructuralSwa.gf
@@ -0,0 +1,6 @@
+--# -path=.:../common:../abstract
+
+resource MakeStructuralSwa = open CatSwa, ParadigmsSwa, ResSwa, MorphoSwa, Prelude in {
+
+
+}
diff --git a/lib/src/swahili/MorphoSwa.gf b/lib/src/swahili/MorphoSwa.gf
new file mode 100644
--- /dev/null
+++ b/lib/src/swahili/MorphoSwa.gf
@@ -0,0 +1,229 @@
+--# -path=.:../abstract:../../prelude:../common
+
+--1 A Simple Swahili Resource Morphology
+--
+-- This resource morphology contains definitions needed in the resource
+-- syntax. To build a lexicon, it is better to use $ParadigmsSwa$, which
+-- gives a higher-level access to this module.
+
+resource MorphoSwa = open Prelude, (Predef=Predef), ResSwa in {
+
+  flags optimize=all ;
+--$Nouns--
+oper
+
+  CommonNoun : Type = {s : Number => Str; g : Gender ; anim : Animacy } ;
+
+  numForms : Str -> Str -> Number => Str = \bon,bons ->
+    table {Sg => bon ; Pl => bons} ; 
+
+  mkNoun : (Number => Str) -> Gender -> Animacy -> CommonNoun = \mecmecs,gen,anim -> 
+    {s = mecmecs ; g = gen ; anim = anim} ;
+
+  mkNounIrreg : Str -> Str -> Gender -> Animacy -> CommonNoun = \mec,mecs,gen,anim -> 
+    mkNoun (numForms mec mecs) gen anim ;
+
+  mkNomReg : Str -> Gender -> Animacy -> CommonNoun = \mtu,gen,anim -> 
+   let watu = case gen of {
+      g1_2   => case Predef.take 3 mtu of {
+	"mwa"  => Predef.drop 1 mtu ;
+        "mwi"  => "wa"+ Predef.drop 2 mtu ;
+        _     => "wa" + Predef.drop 1 mtu 
+           };	-- mtu/watu
+     g3_4   => "mi" + Predef.drop 1 mtu ;	-- mti/miti
+     g5_6   => "me" + Predef.drop 2 mtu ;	-- jicho/macho
+     g5a_6  => "ma" + mtu ;			-- somo/masomo
+     g7_8   => "vi" + Predef.drop 2 mtu ;	-- kitabu/vitabu
+     g11_6  => "ma" + Predef.drop 1 mtu ;	-- ugonjwa/magonjwa 
+     g11_10 => Predef.drop 1 mtu ;		-- ukuta/kuta
+     _       => mtu				-- ma_ma (maji/maji); e_e (taa/taa); u_u (uhuru/uhuru)
+   };
+   in mkNounIrreg mtu watu gen anim ;
+
+  mkNn : Str -> Str -> Gender -> Animacy -> CommonNoun = \mec,mecs,gen,anim -> 
+    mkNoun (numForms mec mecs) gen anim ;
+
+--Autonomous Personal Pronoun
+  mkPronoun :Number -> Person-> Str= \n,p ->
+  case <n,p> of {
+  <Sg,P1> => "mimi" ;
+  <Sg,P2> => "wewe" ;
+  <Sg,P3> => "yeye" ;
+  <Pl,P1> => "sisi" ;
+  <Pl,P2> => "nyinyi" ;
+  <Pl,P3> => "wao" 
+  
+  };
+   
+
+--$Verbs
+ {--  
+  VerbprefixR : Agr -> Str = \a -> Verbprefix a.n a.g a.anim a.p ;
+
+   
+   	 
+   Verbprefix : Number -> Gender -> Animacy -> Person -> Str = \n,g,anim,p ->
+   case <anim,n,g,p> of {
+    <_,Sg,_,P1>      => "ni" ;
+    <_,Sg,_,P2>      => "u" ;
+    <_,Pl,_,P1>      => "tu" ;
+    <_,Pl,_,P2>      => "m" ;
+    <AN,Sg,_,_>      => "a" ;
+    <AN,Pl,_,_>      => "wa" ;
+    <_,Sg,g1_2,_>   => "a" ;
+    <_,Pl,g1_2,_>   => "wa" ;
+    <_,Sg,g3_4,_>   => "u" ;
+    <_,Pl,g3_4,_>   => "i"  ;
+    <_,Sg,g5_6,_>   => "li" ;
+    <_,Pl,g5_6,_>   => "ya" ;
+    <_,Sg,g5a_6,_>  => "li" ;
+    <_,Pl,g5a_6,_>  => "ya" ;
+    <AN,Sg,g6,_>     => "a" ;
+    <AN,Pl,g6,_>     => "wa" ;
+    <_,Sg,g6,_>     => "ya" ;
+    <_,Pl,g6,_>     => "ya" ;
+    <_,Sg,g7_8,_>   => "ki" ;
+    <_,Pl,g7_8,_>   => "vi" ;
+    <_,Sg,g9_10,_>  => "i" ;
+    <_,Pl,g9_10,_>  => "zi" ;
+    <_,_,g11,_>     => "u" ;
+    <_,Sg,g11_6,_>  => "u" ;
+    <_,Pl,g11_6,_>  => "ya" ;
+    <_,Sg,g11_10,_> => "u" ;
+    <_,Pl,g11_10,_> => "zi"  
+   } ;
+
+
+  Verbprefix : Number -> Gender -> Animacy -> Person -> Str = \n,g,anim,p ->
+   case <anim,n,g,p> of {
+    	<AN,Sg,_,P1>      => "ni" ;
+	<AN,Pl,_,P1>      => "tu" ;
+	<_,_,_,_>      => "" 	
+   
+   } ;
+
+
+    mkV : Str -> {s : VForm => Str} = 
+     \cheza -> {
+     s = table { 
+       --VInf => "ku"+cheza ;
+       VInf => case Predef.take 2 cheza of { 
+		"ku" => cheza;
+		 _ => "ku"+cheza
+	 };
+       VImper n p => case <n,p> of {<Sg,P2> => init cheza + "eni";<_,_> => cheza}; 
+       VPres n g anim p => Verbprefix n g anim p ++ "na" ++ cheza; 
+       VPast n g anim p => Verbprefix n g anim p ++ "li" ++ cheza ;
+       VFut n g anim p => Verbprefix n g anim p ++ "ta" ++ cheza     
+       } 
+     } ;
+
+ --}	
+
+--2 Adjectives
+-- To form the adjectival and the adverbial forms, two strings are needed
+-- in the worst case. (First without degrees.)
+
+ Adj = {s : AForm => Str} ;
+  
+ VowelAdjprefix : Number -> Gender -> Animacy -> Str = \n,g,anim ->
+   case <anim,n,g> of {
+    <AN,Sg,_> => "mw" ;
+    <AN,Pl,_> => "w" ;
+    <_,Sg,g1_2> => "mw" ;
+    <_,Pl,g1_2> => "w" ;
+    <_,Sg,g3_4> => "mw" ;
+    <_,Pl,g3_4> => "m" ;
+    <_,Sg,g5_6> => "nj" ;
+    <_,Pl,g5_6> => "m" ;
+    <_,Sg,g5a_6> => "mw" ;
+    <_,Pl,g5a_6> => "ny" ;
+    <_,Sg,g6> => "m" ;
+    <_,Pl,g6> => "m" ;
+    <_,Sg,g7_8> => "ki" ;
+    <_,Pl,g7_8> => "vi" ;
+    <_,Sg,g9_10> => "ny" ;
+    <_,Pl,g9_10> => "" ;
+    <_,_,g11> => "m" ;
+    <_,Sg,g11_6> => "m" ;
+    <_,Pl,g11_6> => "ma" ;
+    <_,Sg,g11_10> => "ny" ;
+    <_,Pl,g11_10> => "m"  
+   } ;
+
+
+  ConsonantAdjprefix : Number -> Gender -> Animacy -> Str = \n,g,anim ->
+   case <anim,n,g> of {
+    <AN,Sg,_> => "m" ;
+    <AN,Pl,_> => "wa" ;
+    <_,Sg,g1_2> => "m" ;
+    <_,Pl,g1_2> => "wa" ;
+    <_,Sg,g3_4> => "" ;
+    <_,Pl,g3_4> => "" ;
+    <_,Sg,g5_6> => "" ;
+    <_,Pl,g5_6> => "ma" ;
+    <_,Sg,g5a_6> => "" ;
+    <_,Pl,g5a_6> => "ma" ;
+    <_,Sg,g6> => "ma" ;
+    <_,Pl,g6> => "ma" ;
+    <_,Sg,g7_8> => "ki" ;
+    <_,Pl,g7_8> => "vi" ;
+    <_,Sg,g9_10> => "i" ;
+    <_,Pl,g9_10> => "" ;
+    <_,_,g11> => "m" ;
+    <_,Sg,g11_6> => "m" ;
+    <_,Pl,g11_6> => "ma" ;
+    <_,Sg,g11_10> => "m" ;
+    <_,Pl,g11_10> => "n"  
+   } ;	
+
+ 
+mkAdjective : Str -> Adj = \zuri ->
+    {  
+       s = table {
+       AF n g anim => case Predef.take 1 zuri of { 
+		"a"|"e"|"i"|"o"|"u"  => VowelAdjprefix n g anim + zuri;
+		 _ => ConsonantAdjprefix n g anim +zuri
+	 };
+       AA => zuri
+       }
+    } ;
+     
+
+mkDeterminer : Number -> Str -> {s : Str ; n : Number} = \n,s ->
+    {s = s ; n = n} ;
+
+mkQuant : Spatial -> Number -> Gender -> Animacy -> Case -> Person -> Str = \sp,n,g,anim,c,p ->
+   let 
+     pfx   = "foo" ; ---- Verbprefix n g anim p ;
+   in 
+   case <anim,n,c> of {
+    <AN,Sg,Nom> => case <sp> of {
+                 <SpHrObj> => "huyu" ;
+                 <HrObj>   => "huyo" ;
+                 <_>       => "yule" } ;
+   
+    <_,_,_>   => case <sp> of {
+                 <SpHrObj> => "h" + Predef.dp 1 (Verbprefix n g anim p) + Verbprefix n g anim p ; --sphrobj ;
+--                 <HrObj>   => mkQuantEnd (Predef.tk 1 sphrobj) ;
+                 <HrObj>   => mkQuantEnd (Predef.tk 1 ("h" + Predef.dp 1 (Verbprefix n g anim p) + Verbprefix n g anim p)) ;
+                 <_>       => Verbprefix n g anim p + "le" } 
+    } ;
+
+mkQuantEnd : Str -> Str = \stem ->
+   let 
+     suffix = Predef.dp 1 stem ;
+     front  = Predef.tk 1 stem 
+   in
+   case <suffix> of {
+    <"i"> => stem + "yo" ;
+    <"k"> => front + "cho" ;
+    <"v"> => front + "vyo" ;
+    <"w"> => front + "o" ;
+    <_>   => stem + "o"
+   } ;
+
+
+
+} ;
+
diff --git a/lib/src/swahili/NounSwa.gf b/lib/src/swahili/NounSwa.gf
new file mode 100644
--- /dev/null
+++ b/lib/src/swahili/NounSwa.gf
@@ -0,0 +1,83 @@
+
+concrete NounSwa of Noun = CatSwa ** open MorphoSwa, ResSwa, Prelude in {
+
+  flags optimize=all_subs ;
+
+lin 
+
+  UseN noun = {
+   s  = noun.s ;
+   s1 = noun.s ;
+   s2 = noun.s ;
+   g = noun.g ;
+   anim  = noun.anim ;
+   hasAdj = False
+   } ;
+
+  UseN2 noun = {
+   s  = noun.s ;
+   s1 = noun.s ;
+   s2 = noun.s ;
+   g = noun.g ;
+   anim  = noun.anim ;
+   hasAdj = False
+   } ;   
+
+
+--   Num
+
+    NumSg = {s = \\_ => [] ; n = Sg} ;
+    NumPl = {s = \\_ => [] ; n = Pl} ; 
+
+
+    DetQuant quant num = {
+ 	s = \\g,c,anim => quant.s ! num.n ! g ! anim ! c ++ num.s ! g; 
+        n = num.n               
+      };
+
+    AdjCN ap cn = 
+      let 
+        anim = cn.anim ;
+        g = cn.g;
+	mod = cn.hasAdj 
+        in{
+	 s  = \\n =>  cn.s ! n ++  ap.s ! (AF n g anim) ;
+        s1 = \\n =>  cn.s1 ! n;
+	s2=case <mod> of {
+	<False> => \\n =>  ap.s ! (AF n g anim);		   
+	<True> => \\n =>  cn.s2 ! n ++ ap.s ! (AF n g anim)  				
+	};          
+        g = g ;
+        anim = anim ;
+        hasAdj=True
+         
+        } ;
+
+     
+   --DetCN   : Det -> CN -> NP ;   -- mtu huyo
+
+  
+     DetCN det cn = 
+     let 
+        anim = cn.anim ;
+        g = cn.g ;
+        n = det.n ;     
+        mod = cn.hasAdj 
+      		in case <mod> of {
+        	<False> => {
+                s = \\c => cn.s ! n ++ det.s ! g ! c ! anim  ;
+                a = agr n g anim P3
+                } ;
+        	<True> => {
+                s = \\c => cn.s1 ! n ++ det.s ! g ! c ! anim ++ cn.s2 ! n  ; 
+                a = agr n g anim P3
+                }
+       };
+
+    
+   
+
+
+
+
+}
diff --git a/lib/src/swahili/NumeralSwa.gf b/lib/src/swahili/NumeralSwa.gf
new file mode 100644
--- /dev/null
+++ b/lib/src/swahili/NumeralSwa.gf
@@ -0,0 +1,4 @@
+concrete NumeralSwa of Numeral = CatSwa ** open ResSwa in {
+
+
+}
diff --git a/lib/src/swahili/OverloadSwa.gf b/lib/src/swahili/OverloadSwa.gf
new file mode 100644
--- /dev/null
+++ b/lib/src/swahili/OverloadSwa.gf
@@ -0,0 +1,1 @@
+resource OverloadSwa = Overload with (Grammar = GrammarSwa) ;
diff --git a/lib/src/swahili/ParadigmsSwa.gf b/lib/src/swahili/ParadigmsSwa.gf
new file mode 100644
--- /dev/null
+++ b/lib/src/swahili/ParadigmsSwa.gf
@@ -0,0 +1,171 @@
+--# -path=.:../abstract:../../prelude:../common
+
+--1 Swahili Lexical Paradigms
+
+
+resource ParadigmsSwa = open(Predef=Predef), Prelude, MorphoSwa,ResSwa,CatSwa in {
+
+flags optimize=all ;
+
+--2 Parameters 
+--
+-- To abstract over gender names, we define the following identifiers.
+
+oper
+  Animacy : Type ; 
+
+  animate   : Animacy ;
+  inanimate : Animacy ;
+
+-- To abstract over number names, we define the following.
+
+  Number : Type ; 
+
+  singular : Number ;
+  plural   : Number ;
+
+-- To abstract over case names, we define the following.
+
+  Case : Type ;
+
+  nominative : Case ;
+  locative   : Case ;
+
+-- To abstract over nounclass names, we define the following.
+  
+  Gender : Type ;
+
+   m_wa :Gender ;
+   m_mi : Gender ;
+   ji_ma : Gender ;
+   e_ma : Gender ;
+   ma_ma : Gender ;
+   ki_vi : Gender ;
+   e_e : Gender ;
+   u_u : Gender ;
+   u_ma : Gender ;
+   u_e : Gender ;
+
+ 
+
+--2 Nouns
+
+-- Worst case: give all four forms and the semantic gender.
+
+  mkN  : (mtu,watu : Str) -> Gender -> Animacy -> N ;
+
+-- The regular function captures the variants for nouns depending on Gender and Number
+
+  regN : Str -> Gender -> Animacy -> N ;
+
+-- In practice the worst case is just: give singular and plural nominative.
+
+
+  mk2N : (mtu , watu : Str) -> Gender -> Animacy -> N ;
+  mk2N x y g anim = mkNounIrreg x y g anim ** {lock_N = <>};
+
+  mkN2 : N -> Prep -> N2 ;
+  mkN2  : N -> Prep -> N2 = \n,p -> n ** {c2 = p.s ; lock_N2 = <>} ;
+
+  mkPrep : Str -> Prep ;
+--  mkPrep p = {s = p ; c = CPrep PNul ; isDir = False ; lock_Prep = <>} ;
+  mkPrep p = {s = p ; lock_Prep = <>} ;
+
+
+--3 Relational nouns 
+-- 
+-- Relational nouns ("fille de x") need a case and a preposition. 
+
+-- All nouns created by the previous functions are marked as
+-- $nonhuman$. If you want a $human$ noun, wrap it with the following
+-- function:
+
+--  genderN : Gender -> N -> N ; 
+
+-- For regular adjectives, the adverbial form is derived. This holds
+-- even for cases with the variation "happy - happily".
+
+   regA : Str -> A ;
+
+-- If comparison is formed by "kuliko", as usual in Swahili,
+-- the following pattern is used:
+
+ compADeg : A -> A ;
+
+--2 Definitions of paradigms
+--
+-- The definitions should not bother the user of the API. So they are
+-- hidden from the document.
+--.
+
+  Animacy = ResSwa.Animacy ; 
+  Number = ResSwa.Number ;
+  Case = ResSwa.Case ;
+  Gender = ResSwa.Gender ;
+  animate = AN ; 
+  inanimate = IN ;
+  singular = Sg ;
+  plural = Pl ;
+  nominative = Nom ;
+  locative = Loc ;
+  m_wa = g1_2 ;
+  m_mi = g3_4 ;
+  ji_ma = g5_6 ;
+  e_ma = g5a_6 ;
+  ma_ma = g6 ; 
+  ki_vi = g7_8 ;
+  e_e = g9_10 ; 
+  u_u = g11 ; 
+  u_ma = g11_6 ; 
+  u_e = g11_10 ;
+  VForm = ResSwa.VForm ;
+
+--  regN x g anim = mkNomReg x g anim ** {lock_N = <>} ;
+
+    regN = \x,g,anim ->
+      mkNomReg x g anim ** {lock_N = <>} ;
+
+--  mkN x y g anim = mkNounIrreg x y g anim ** {lock_N = <>} ;
+  mkN = \x,y,g,anim -> 
+    mkNounIrreg x y g anim ** {lock_N = <>} ;
+ 
+-- Adjectives
+
+   regA a = compADeg { 
+         s = \\_ => (mkAdjective a).s ;
+         lock_A = <>} ;
+
+  compADeg a = 
+    {
+       s = table {
+          Posit => a.s ! Posit ;
+           _ => \\f => a.s ! Posit ! f ++ "kuliko" 
+       } ; 
+     lock_A = <>} ;
+ 
+-- Verbs
+    regV : Str -> V ;
+    regV = \enda -> mkV enda ** {s1 = [] ; lock_V = <>} ;
+
+{--
+	mkV2 = overload {
+	    mkV2 : Str -> V2 = \s -> dirV2 (regV s) ;
+	    mkV2 : V -> V2 = dirV2 ;  
+	    mkV2 : V -> Prep -> V2 = mmkV2
+	  } ;
+
+   mmkV2 : V -> Prep -> V2 ;
+   mmkV2 v p = v ** {c2 = p ; lock_V2 = <>} ;
+   dirV2 : V -> V2 = \v -> mmkV2 v "na" ;
+--}
+
+--2 Adverbs
+
+-- Adverbs are not inflected. Most lexical ones have position
+-- after the verb. 
+
+  mkAdv : Str -> Adv ;
+  mkAdv x = ss x ** {lock_Adv = <>} ;
+
+
+} ;
diff --git a/lib/src/swahili/PhraseSwa.gf b/lib/src/swahili/PhraseSwa.gf
new file mode 100644
--- /dev/null
+++ b/lib/src/swahili/PhraseSwa.gf
@@ -0,0 +1,5 @@
+concrete PhraseSwa of Phrase = CatSwa ** open Prelude, ResSwa in {
+
+    
+
+}
diff --git a/lib/src/swahili/QuestionSwa.gf b/lib/src/swahili/QuestionSwa.gf
new file mode 100644
--- /dev/null
+++ b/lib/src/swahili/QuestionSwa.gf
@@ -0,0 +1,3 @@
+concrete QuestionSwa of Question = CatSwa ** open ResSwa, Prelude in {
+
+}
diff --git a/lib/src/swahili/RelativeSwa.gf b/lib/src/swahili/RelativeSwa.gf
new file mode 100644
--- /dev/null
+++ b/lib/src/swahili/RelativeSwa.gf
@@ -0,0 +1,4 @@
+concrete RelativeSwa of Relative = CatSwa ** open ResSwa in {
+
+  
+}
diff --git a/lib/src/swahili/ResSwa.gf b/lib/src/swahili/ResSwa.gf
new file mode 100644
--- /dev/null
+++ b/lib/src/swahili/ResSwa.gf
@@ -0,0 +1,171 @@
+--# -path=.:../abstract:../common:../../prelude
+
+--1 Swahili auxiliary operations.
+
+-- This module contains operations that are needed to make the
+-- resource syntax work. To define everything that is needed to
+-- implement $Test$, it moreover contains regular lexical
+-- patterns needed for $Lex$.
+
+resource ResSwa = ParamX ** open Prelude in {
+
+  flags optimize=all ;
+
+--For $Noun$
+
+-- This is the worst-case $Case$ needed for pronouns.
+
+  param Case = Nom | Loc ;
+
+  param Animacy = AN | IN ;
+
+  param Gender = g1_2 | g3_4 | g5_6 | g5a_6 | g6 | g7_8 | g9_10 | g11 | g11_6 | g11_10 ; 
+
+--2 For $Adjective$
+
+   AForm = AF Number Gender Animacy 
+	 | AA ;
+ 
+-- The order of sentence is needed already in $VP$.
+
+    Order = ODir | OQuest ;
+
+ --2 For $Verb$
+
+-- Verbs will take one of the five forms
+
+  param 
+	VForm = VInf
+	       | VImper Number Person
+	       | VPres Number Gender Animacy Person
+               | VPast Number Gender Animacy Person
+               | VFut Number Gender Animacy Person;
+
+	
+  oper
+
+   Verb : Type = {s : VForm => Str} ;
+
+
+   VerbForms : Type =  Tense => Anteriority => Polarity => Agr => Str ;
+
+    VP : Type = {
+    s  : VerbForms ;
+    s2 : Agr => Str
+    } ;
+
+	
+  mkV : Str -> {s : VForm => Str} = 
+     \cheza -> {
+     s = table { 
+       VInf => case Predef.take 2 cheza of { 
+		"ku" => cheza;
+		 _ => "ku"+cheza
+	 };
+       VImper n p => case <n,p> of{
+		  <Sg,P2> => init cheza + "eni";
+		  <_,_> => cheza}; 
+       VPres n g anim p => Verbprefix n g anim p + "na" + cheza; 
+       VPast n g anim p => Verbprefix n g anim p + "li" + cheza ;
+       VFut n g anim p => Verbprefix n g anim p + "ta" + cheza     
+       } 
+     } ;
+
+   
+  predV : Verb -> VP = \verb -> {
+    s = \\t,ant,b,agr => 
+      let
+        inf  = verb.s ! VInf ;
+        imper = verb.s ! VImper agr.n agr.p;
+        pres = verb.s ! VPres agr.n agr.g agr.anim agr.p ;
+        past  = verb.s ! VPast agr.n agr.g agr.anim agr.p ;
+        fut = verb.s ! VFut agr.n agr.g agr.anim agr.p ; 
+      in
+      case <t,ant,b> of {
+        <_,Anter,Pos> => imper;
+        <Pres,Simul,Pos> => pres  ;
+	<Past,Anter,Pos> => past ;
+	<Fut, Anter,Pos> => fut ;
+	<_,_,_> => inf
+               
+        } ;
+    s2 = \\_ => []
+    } ;
+
+  
+  Verbprefix : Number -> Gender -> Animacy -> Person -> Str = \n,g,anim,p ->
+   case <anim,n,g,p> of {
+    <AN,Sg,_,P1>      => "ni" ;
+    <AN,Sg,_,P2>      => "u" ;
+    <AN,Pl,_,P1>      => "tu" ;
+    <AN,Pl,_,P2>      => "m" ;
+    <AN,Sg,_,_>      => "a" ;
+    <AN,Pl,_,_>      => "wa" ;
+    <_,Sg,g1_2,_>   => "a" ;
+    <_,Pl,g1_2,_>   => "wa" ;
+    <_,Sg,g3_4,_>   => "u" ;
+    <_,Pl,g3_4,_>   => "i"  ;
+    <_,Sg,g5_6,_>   => "li" ;
+    <_,Pl,g5_6,_>   => "ya" ;
+    <_,Sg,g5a_6,_>  => "li" ;
+    <_,Pl,g5a_6,_>  => "ya" ;
+    <IN,_,g6,_>     => "ya" ;
+    <IN,Sg,g7_8,_>   => "ki" ;
+    <IN,Pl,g7_8,_>   => "vi" ;
+    <IN,Sg,g9_10,_>  => "i" ;
+    <IN,Pl,g9_10,_>  => "zi" ;
+    <IN,_,g11,_>     => "u" ;
+    <IN,Sg,g11_6,_>  => "u" ;
+    <IN,Pl,g11_6,_>  => "ya" ;
+    <IN,Sg,g11_10,_> => "u" ;
+    <IN,Pl,g11_10,_> => "zi"  
+   } ;
+
+
+
+
+
+  
+
+-- Auxiliary verbs have special negative forms.
+param
+    VVForm = 
+       VVF VForm
+     | VVPresNeg
+     | VVPastNeg  --# notpresent
+     ; 
+                
+--Adjectives 
+
+ oper Adj = {s : AForm => Str} ;
+
+--2 For $Quantifiers$
+-- A 3-dimensional system of quantifiers (demonstrative pronouns) based on position of object, hearer + speaker
+-- need to find linguistic term to express this
+
+   param Spatial = SpHrObj | SpHr | HrObj ;    --w.r.t object	
+
+-- Agreement of adjectives, verb phrases, and relative pronouns.
+
+oper
+  AGR = {n : Number ; g : Gender ; anim : Animacy ; p : Person} ;
+  Agr : Type = {n : Number ; g : Gender ; anim : Animacy ; p : Person} ;
+  agr : Number -> Gender -> Animacy -> Person -> Agr = \n,g,anim,p -> {n = n ; g = g ; anim = anim ; p = p} ;
+
+-- For $Sentence$.
+
+ Clause : Type = {
+    s : Tense => Anteriority => Polarity => Str
+    } ;
+
+  mkClause : Str -> Agr -> VP -> Clause =
+    \subj,agr,vp -> {
+      s = \\t,a,b => 
+        let 
+          verb  = vp.s ! t ! a ! b ! agr 
+        in
+          subj ++ verb
+    } ;
+
+
+}
diff --git a/lib/src/swahili/SentenceSwa.gf b/lib/src/swahili/SentenceSwa.gf
new file mode 100644
--- /dev/null
+++ b/lib/src/swahili/SentenceSwa.gf
@@ -0,0 +1,9 @@
+concrete SentenceSwa of Sentence = CatSwa ** open Prelude, ResSwa in {
+  
+ flags optimize=all_subs ;
+
+ lin 
+   PredVP np vp = mkClause (np.s ! Nom) np.a vp ;
+
+}
+
diff --git a/lib/src/swahili/StructuralSwa.gf b/lib/src/swahili/StructuralSwa.gf
new file mode 100644
--- /dev/null
+++ b/lib/src/swahili/StructuralSwa.gf
@@ -0,0 +1,15 @@
+concrete StructuralSwa of Structural = CatSwa ** 
+  open MorphoSwa, ResSwa, ParadigmsSwa,
+  (C = ConstructX), Prelude in {
+
+	 flags optimize=all ;
+lin
+ 	
+        this_Quant  = {s = \\n,g,anim,c => mkQuant SpHrObj n g anim Nom P3} ;
+        this_Quant1  = {s = \\n,g,anim,c => mkQuant HrObj n g anim Nom P3} ;
+	that_Quant  = {s = \\n,g,anim,c => mkQuant SpHr n g anim Nom P3} ;
+
+	
+
+}
+
diff --git a/lib/src/swahili/SymbolSwa.gf b/lib/src/swahili/SymbolSwa.gf
new file mode 100644
--- /dev/null
+++ b/lib/src/swahili/SymbolSwa.gf
@@ -0,0 +1,7 @@
+--# -path=.:../abstract:../common
+
+concrete SymbolSwa of Symbol = CatSwa ** open Prelude, ResSwa in {
+
+
+
+}
diff --git a/lib/src/swahili/VerbSwa.gf b/lib/src/swahili/VerbSwa.gf
new file mode 100644
--- /dev/null
+++ b/lib/src/swahili/VerbSwa.gf
@@ -0,0 +1,8 @@
+concrete VerbSwa of Verb = CatSwa ** open ResSwa in {
+
+flags optimize=all_subs ;
+
+lin
+	UseV = predV ;
+
+}
diff --git a/lib/src/swahili/noun0.gf b/lib/src/swahili/noun0.gf
new file mode 100644
--- /dev/null
+++ b/lib/src/swahili/noun0.gf
@@ -0,0 +1,122 @@
+
+concrete NounSwa of Noun = CatSwa ** open MorphoSwa, ResSwa, Prelude in {
+
+  flags optimize=all_subs ;
+
+lin 
+
+  UseN noun = {
+   s  = noun.s ;
+   s1 = noun.s ;
+   s2 = noun.s ;
+   g = noun.g ;
+   anim  = noun.anim ;
+   hasAdj = False
+   } ;
+
+  UseN2 noun = {
+   s  = noun.s ;
+   s1 = noun.s ;
+   s2 = noun.s ;
+   g = noun.g ;
+   anim  = noun.anim ;
+   hasAdj = False
+   } ;
+
+
+{--  Use2N3 noun = {
+   s  = noun.s ;
+   s1 = noun.s ;
+   s2 = noun.s ;
+   g = noun.g ;
+   anim  = noun.anim ;
+   hasAdj = False;
+   c2 = noun.c2
+   } ;
+
+
+ --}  
+     
+
+
+
+
+  {--
+     AdjCN ap cn = 
+      let 
+        anim = cn.anim ;
+        g = cn.g 
+      in {
+        s  = \\n =>  cn.s ! n ++  ap.s ! (AF n g anim) ;
+        s1 = \\n =>  cn.s ! n ;
+        s2 = \\n =>  ap.s ! (AF n g anim) ;
+        g = g ;
+        anim = anim ;
+        hasAdj = True 
+        } ;
+
+
+     AdjCN ap cn = 
+      let 
+        anim = cn.anim ;
+        g = cn.g;
+	mod = cn.hasAdj 
+        in{
+	 s  = \\n =>  cn.s ! n ++  ap.s ! (AF n g anim) ;
+        s1 = \\n =>  cn.s1 ! n;
+	--s2 = \\n =>  cn.s2 ++ ap.s ! (AF n g anim) ; 
+         s2=case <mod> of {
+	<False> => \\n =>  ap.s ! (AF n g anim);		   
+	<True> => \\n =>  cn.s2 ! n ++ ap.s ! (AF n g anim)  				
+	};          
+        g = g ;
+        anim = anim ;
+        hasAdj=True
+         
+        } ;
+--}
+
+--   Num
+
+    NumSg = {s = \\_ => [] ; n = Sg} ;
+    NumPl = {s = \\_ => [] ; n = Pl} ; 
+    
+  
+--    DetQuant : Quant -> Num -> Det ;  -- these five
+--    Det = {s : Gender => Animacy => Case => Str ; n : Number} ;
+--    Quant   = {s : Number => Gender => Animacy => Case => Str} ;
+--    Num = {s : Gender => Animacy => Str ; n : Number} ;
+
+
+      DetQuant quant num = {
+ 	s = \\g,anim,c => quant.s ! num.n ! g ! anim ! c ++ num.s ! g ; 
+        n = num.n        
+      };
+
+--DetCN   : Det -> CN -> NP ;   -- mtu huyo
+
+{--  
+     DetCN det cn = 
+     let 
+        anim = cn.anim ;
+        g = cn.g ;
+        n = det.n ;     
+        mod = cn.hasAdj 
+      		in case <mod> of {
+        	<False> => {
+                --s = \\c => n ++ det.s ! g ! c ++ cn.s ! n ++ det.s2 ;
+		s =\\c => c ++ cn.s ! n ++ det.s ! g ! anim ;
+                a = agr n g anim P3
+                } ;
+        	<True> => {
+                s =   cn.s1 ! n ++ det.s ! g ! anim ++ cn.s2 ! n ; 
+                a = agr n g anim P3
+                }
+       };
+--}
+
+
+
+
+
+}
diff --git a/lib/src/swedish/ExtraSwe.gf b/lib/src/swedish/ExtraSwe.gf
--- a/lib/src/swedish/ExtraSwe.gf
+++ b/lib/src/swedish/ExtraSwe.gf
@@ -1,4 +1,4 @@
-concrete ExtraSwe of ExtraSweAbs = ExtraScandSwe ** open CommonScand, ResSwe, ParamX in {
+concrete ExtraSwe of ExtraSweAbs = ExtraScandSwe ** open CommonScand, ResSwe, ParamX, Prelude in {
 
 lin
     FocVP vp np = {
@@ -21,5 +21,21 @@
         vinf ++ comp ++ vfin ++ subj ++ neg
       } ;
 
+lin
+
+  CompoundNomN a b = {
+    s = \\n,d,c => a.s ! Sg ! Indef ! Nom ++ BIND ++ b.s ! n ! d ! c ;
+    g = b.g
+    } ;
+
+  CompoundGenN a b = {
+    s = \\n,d,c => a.s ! Sg ! Indef ! Gen ++ BIND ++ b.s ! n ! d ! c ;
+    g = b.g
+    } ;
+
+  CompoundAdjN a b = {
+    s = \\n,d,c => a.s ! AF (APosit (Strong (GSg Utr))) Nom ++ BIND ++ b.s ! n ! d ! c ;
+    g = b.g
+    } ;
 
 }
diff --git a/lib/src/swedish/ExtraSweAbs.gf b/lib/src/swedish/ExtraSweAbs.gf
--- a/lib/src/swedish/ExtraSweAbs.gf
+++ b/lib/src/swedish/ExtraSweAbs.gf
@@ -3,5 +3,9 @@
 
 abstract ExtraSweAbs = ExtraScandAbs ** {
 
+fun
+  CompoundNomN : N -> N -> N ;  -- fot+boll
+  CompoundGenN : N -> N -> N ;  -- yrkes+musiker
+  CompoundAdjN : A -> N -> N ;  -- vit+vin
 
 }
diff --git a/lib/src/swedish/ParadigmsSwe.gf b/lib/src/swedish/ParadigmsSwe.gf
--- a/lib/src/swedish/ParadigmsSwe.gf
+++ b/lib/src/swedish/ParadigmsSwe.gf
@@ -464,14 +464,20 @@
         se  + "dd" => se  + "tt" ; 
         pla + "tt" => pla + "tt" ; 
         gla + "d"  => gla + "tt" ;
+        _ + ("a"|"e"|"o") => fin ;
         _          => fin + "t" 
       } ;
       fina : Str = case fin of {
         unk@(? + ? + ? + _) + "e" + n@("l" | "n" | "r") => unk + n + "a" ;
+        _ + ("a"|"e"|"o") => fin ;
         _ => fin + "a"
-      }
+      } ;
+      comp : Bool = case fin of {
+        _ + ("a"|"e"|"o") => True ;
+        _ => False
+        }
     in
-    mk3A fin fint fina ;
+    lin A {s = (mk3A fin fint fina).s ; isComp = comp} ;
   irregA ung yngre yngst = 
     mk7A ung (ung + "t") (ung + "a") (ung + "a") yngre yngst (yngst+"a") ;
 
diff --git a/lib/src/urdu/CommonHindustani.gf b/lib/src/urdu/CommonHindustani.gf
--- a/lib/src/urdu/CommonHindustani.gf
+++ b/lib/src/urdu/CommonHindustani.gf
@@ -87,30 +87,30 @@
 		<CPresent,Pl,Pers2_Respect,_   > => "ہیں" ;
         <CPresent,Pl,Pers3_Near,_   > => "ہیں" ;
         <CPresent,Pl,Pers3_Distant,_   > => "ہیں" ;
-		<CPast,Sg,Pers1,Masc   > => "تh-ا" ;
-		<CPast,Sg,Pers1,Fem   > => "تh-ی" ;
-        <CPast,Sg,Pers2_Casual,Masc   > => "تh-ا" ;
-		<CPast,Sg,Pers2_Casual,Fem   > => "تh-ی" ;
+		<CPast,Sg,Pers1,Masc   > => "تھا" ;
+		<CPast,Sg,Pers1,Fem   > => "تھی" ;
+        <CPast,Sg,Pers2_Casual,Masc   > => "تھا" ;
+		<CPast,Sg,Pers2_Casual,Fem   > => "تھی" ;
         <CPast,Sg,Pers2_Familiar,Masc   > => "تh-ا" ;
-		<CPast,Sg,Pers2_Familiar,Fem   > => "تh-ی" ;
-		<CPast,Sg,Pers2_Respect,Masc   > => "تh-ے" ;
-		<CPast,Sg,Pers2_Respect,Fem   > => "تh-یں" ;
+		<CPast,Sg,Pers2_Familiar,Fem   > => "تھی" ;
+		<CPast,Sg,Pers2_Respect,Masc   > => "تھے" ;
+		<CPast,Sg,Pers2_Respect,Fem   > => "تھیں" ;
         <CPast,Sg,Pers3_Near,Masc   > => "تh-ا" ;
-		<CPast,Sg,Pers3_Near,Fem   > => "تh-ی" ;
+		<CPast,Sg,Pers3_Near,Fem   > => "تھی" ;
         <CPast,Sg,Pers3_Distant,Masc  > => "تh-ا" ;
-		<CPast,Sg,Pers3_Distant,Fem  > => "تh-ی" ;
-		<CPast,Pl,Pers1,Masc   > => "تh-ے" ;
-		<CPast,Pl,Pers1,Fem   > => "تh-یں" ;
-        <CPast,Pl,Pers2_Casual,Masc   > => "تh-ے" ;
-		<CPast,Pl,Pers2_Casual,Fem   > => "تh-یں" ;
-        <CPast,Pl,Pers2_Familiar,Masc   > => "تh-ے" ;
-		<CPast,Pl,Pers2_Familiar,Fem   > => "تh-یں" ;
-		<CPast,Pl,Pers2_Respect,Masc   > => "تh-ے" ;
-		<CPast,Pl,Pers2_Respect,Fem   > => "تh-یں" ;
-        <CPast,Pl,Pers3_Near,Masc   > => "تh-ے" ;
-		<CPast,Pl,Pers3_Near,Fem   > => "تh-یں" ;
-		<CPast,Pl,Pers3_Distant,Masc   > => "تh-ے" ;
-		<CPast,Pl,Pers3_Distant,Fem   > => "تh-یں" ;
+		<CPast,Sg,Pers3_Distant,Fem  > => "تھی" ;
+		<CPast,Pl,Pers1,Masc   > => "تھے" ;
+		<CPast,Pl,Pers1,Fem   > => "تھیں" ;
+        <CPast,Pl,Pers2_Casual,Masc   > => "تھے" ;
+		<CPast,Pl,Pers2_Casual,Fem   > => "تھیں" ;
+        <CPast,Pl,Pers2_Familiar,Masc   > => "تھے" ;
+		<CPast,Pl,Pers2_Familiar,Fem   > => "تھیں" ;
+		<CPast,Pl,Pers2_Respect,Masc   > => "تھے" ;
+		<CPast,Pl,Pers2_Respect,Fem   > => "تھیں" ;
+        <CPast,Pl,Pers3_Near,Masc   > => "تھے" ;
+		<CPast,Pl,Pers3_Near,Fem   > => "تھیں" ;
+		<CPast,Pl,Pers3_Distant,Masc   > => "تھے" ;
+		<CPast,Pl,Pers3_Distant,Fem   > => "تھیں" ;
 		<CFuture,Sg,Pers1,Masc   > => "گا" ;
 		<CFuture,Sg,Pers1,Fem   > => "گی" ;
         <CFuture,Sg,Pers2_Casual,Masc   > => "گا" ;
@@ -163,10 +163,11 @@
 						      (acch +"ے")  ("بہت" ++ acch + "ے") ("سب سے" ++ acch + "ے") (acch + "ے") ("بہت" ++ acch + "ے") ("سب سے" ++ acch + "ے") (acch + "ے") ("بہت" ++ acch + "ے") ("سب سے" ++ acch + "ے")
 		                                      (acch + "ی") ("بہت" ++ acch + "ی") ("سب سے" ++ acch + "ی") (acch + "ی") ("بہت" ++ acch + "ی") ("سب سے" ++ acch + "ی") (acch + "ی") ("بہت" ++ acch + "ی") ("سب سے" ++ acch + "ی");
 									
-                        _                 => mkAdjective  x x x x x x x x x
-                                                        x x x x x x x x x
-                                                        x x x x x x x x x
-                                                        x x x x x x x x x									 
+                        _                 => mkAdjective  x  ("بہت" ++ x)  	("سب سے" ++ x)  x ("بہت" ++ x) ("سب سے" ++ x) x ("بہت" ++ x) ("سب سے" ++ x)
+							  x  ("بہت" ++ x) 	("سب سے" ++ x) 	x ("بہت" ++ x) ("سب سے" ++ x) x ("بہت" ++ x) ("سب سے" ++ x)
+							  x  ("بہت" ++ x) 	("سب سے" ++ x)  x ("بہت" ++ x) ("سب سے" ++ x) x ("بہت" ++ x) ("سب سے" ++ x)
+							  x  ("بہت" ++ x) 	("سب سے" ++ x)  x ("بہت" ++ x) ("سب سے" ++ x) x ("بہت" ++ x) ("سب سے" ++ x)
+																 
                             }; 
 					 
 
@@ -247,6 +248,10 @@
                         }
                     }
             };
+	    
+   compoundAdj : Str -> Str -> Adjective = \s1,s2 -> mkCompoundAdj (regAdjective s1) (regAdjective s2) ;
+   mkCompoundAdj : Adjective -> Adjective -> Adjective ;
+   mkCompoundAdj adj1 adj2 = {s = \\n,g,c,d => adj1.s ! n ! g ! c ! d ++ adj2.s ! n ! g ! c ! d} ;
 	
    Verb : Type = {s : VerbForm => Str} ;
 
diff --git a/lib/src/urdu/ExtraHindustani.gf b/lib/src/urdu/ExtraHindustani.gf
--- a/lib/src/urdu/ExtraHindustani.gf
+++ b/lib/src/urdu/ExtraHindustani.gf
@@ -3,10 +3,17 @@
 incomplete concrete ExtraHindustani of ExtraHindustaniAbs = CatHindustani ** 
    open CommonHindustani,Coordination,ResHindustani, ParamX in {
   lin
-    GenNP np = {s = \\_,_,_ => np.s ! NPC Obl ++ "كا" ; a = np.a} ;
+--    GenNP np = {s = \\_,_,_ => np.s ! NPC Obl ++ "كا" ; a = np.a} ;
+   GenNP np = {s = \\n,g,c => 
+     case <n,g,c> of {
+     <_,Masc,_> => np.s ! NPC Obl ++ "كا" ;
+     <_,Fem,_> => np.s ! NPC Obl ++ "كی"
+     };
+     
+   a = np.a} ;
 
     each_Det = mkDet  "ہر كوی" "ہر كوی" "ہر كوی" "ہر كوی" Sg ;
-    have_V = mkV "راكh-نا";
+    have_V = mkV "راكھنا";
     IAdvAdv adv = {s = "كتنی" ++ adv.s} ;
     ICompAP ap = {s = "كتنے" ++ ap.s ! Sg ! Masc ! Dir ! Posit} ;
     cost_V = mkV "قیمت" ;
diff --git a/lib/src/urdu/ExtraUrd.gf b/lib/src/urdu/ExtraUrd.gf
--- a/lib/src/urdu/ExtraUrd.gf
+++ b/lib/src/urdu/ExtraUrd.gf
@@ -4,7 +4,16 @@
 flags coding = utf8 ;
 
   lin
-    GenNP np = {s = \\_,_,_ => np.s ! NPC Obl ++ "كا" ; a = np.a} ;
+ --   GenNP np = {s = \\_,_,_ => np.s ! NPC Obl ++ "كا" ; a = np.a} ;
+  GenNP np = {s = \\n,g,c => 
+     case <n,g,c> of {
+     <Sg,Masc,Obl> => np.s ! NPC Obl ++ "كے" ;
+     <Sg,Masc,_> => np.s ! NPC Obl ++ "كا" ;
+     <Pl,Masc,_> => np.s ! NPC Obl ++ "كے" ;
+     <_,Fem,_> => np.s ! NPC Obl ++ "كی"
+     };
+     
+   a = np.a} ;
 
     each_Det = mkDet  "ہر كوی" "ہر كوی" "ہر كوی" "ہر كوی" Sg ;
     have_V = mkV "راكh-نا";
diff --git a/lib/src/urdu/GrammarUrd.gf b/lib/src/urdu/GrammarUrd.gf
--- a/lib/src/urdu/GrammarUrd.gf
+++ b/lib/src/urdu/GrammarUrd.gf
@@ -1,4 +1,4 @@
---# -path=.:../abstract:../common:../prelude:c:/gf_unicoded/hindustani
+--# -path=.:../abstract:../common:../prelude
 
  concrete GrammarUrd of Grammar = 
   NounUrd, 
@@ -11,7 +11,8 @@
   RelativeUrd,
   ConjunctionUrd,
   PhraseUrd,
-  TextX - [Adv,AdN],
+  TextUrd - [Adv,AdN],
+--  TextX - [Adv,AdN],
   StructuralUrd,
   TenseX - [Adv,AdN],
   IdiomUrd
diff --git a/lib/src/urdu/LexiconUrd.gf b/lib/src/urdu/LexiconUrd.gf
--- a/lib/src/urdu/LexiconUrd.gf
+++ b/lib/src/urdu/LexiconUrd.gf
@@ -234,7 +234,7 @@
   dull_A = mkA "نالایق" ;
   full_A = mkA "مكمل" ;
   heavy_A = mkA "بھاری" ;
-  near_A = mkA "قریب" ;
+  near_A = mkA "قریبی" ;
   rotten_A = mkA "خراب" ;
   round_A = mkA "گول" ;
   sharp_A = mkA "تیز" ;
diff --git a/lib/src/urdu/MorphoUrd.gf b/lib/src/urdu/MorphoUrd.gf
--- a/lib/src/urdu/MorphoUrd.gf
+++ b/lib/src/urdu/MorphoUrd.gf
@@ -173,13 +173,13 @@
   IDeterminer = {s:Gender => Case => Str ; n : Number};
   makeDet : Str -> Str -> Str -> Str -> Number -> Determiner = \s1,s2,s3,s4,n -> {
    s = table {
-      Sg => table {
-        Masc => s1 ;
-        Fem => s2 
+      Sg => table { 
+        Masc => table {_ => s1} ;
+        Fem => table {_ => s2} 
 	  } ;
       Pl => table {
-        Masc => s3 ;
-        Fem => s4 
+        Masc => table { _ => s3} ;
+        Fem => table {_ => s4} 
 	  }
       } ;
 
diff --git a/lib/src/urdu/NumeralUrd.gf b/lib/src/urdu/NumeralUrd.gf
--- a/lib/src/urdu/NumeralUrd.gf
+++ b/lib/src/urdu/NumeralUrd.gf
@@ -1,118 +1,117 @@
-concrete NumeralUrd of Numeral = CatUrd ** open ResUrd,CommonHindustani,ParamX, Prelude in {
--- By Harald Hammarström
--- Modification for Urdu Shafqat Virk
-
--- still old Devanagari coding
-
-flags coding=utf8 ;
-
-param DForm = unit | ten ;
-param DSize = sg | r2 | r3 | r4 | r5 | r6 | r7 | r8 | r9 ;
-param Size = singl | less100 | more100 ; 
-
-oper LinDigit = {s : DForm => Str ; size : DSize ; n : Number} ;
-
-
-lincat Dig = { s:Str ; n : Number};
-lincat Digit = LinDigit ;
-lincat Sub10 = {s : DForm => Str ; size : DSize ; n : Number} ;
-lincat Sub100 = {s : Str ; size : Size ; n : Number} ;
-lincat Sub1000 = {s : Str ; s2 : Str ; size : Size ; n : Number } ; 
-lincat Sub1000000 = { s : Str ; n : Number } ;
-
-lin num x0 = 
-    {s = table {
-          NCard =>   x0.s ; 
-          NOrd =>  x0.s ++ "واں" -- need to use mkOrd x0.s but it gives linking error 
-          };
-       n = x0.n
-    } ;
-
-
-oper mkNum : Str -> Str -> DSize -> LinDigit = 
-  \do -> \bis -> \sz ->  
-  {s = table {unit => do ; ten => bis } ; 
-   size = sz ; n = Pl} ;
-
-lin n2 = mkNum "دو" "بیس" r2 ;
-lin n3 = mkNum "تین" "تیس" r3 ;
-lin n4 = mkNum "چار" "چالیس" r4 ;
-lin n5 = mkNum "پانچ" "پچاس" r5 ;
-lin n6 = mkNum "چھ" "ساتھ" r6 ; 
-lin n7 = mkNum "سات" "ستر" r7; 
-lin n8 = mkNum "آتھ" "اسی" r8;
-lin n9 = mkNum "نو" "نوے" r9 ;
-
-oper mkR : Str -> Str -> Str -> Str -> Str -> Str -> Str -> Str -> Str -> DSize => Str = \a1 -> \a2 -> \a3 -> \a4 -> \a5 -> \a6 -> \a7 -> \a8 -> \a9 -> table {
-  sg => a1 + "اہ" ;
-  r2 => a2 + "یس" ;
-  r3 => a3 + "تیس" ;
-  r4 => a4 + "الیس" ;
-  r5 => a5 + "ن" ;
-  r6 => a6 + "ساٹھ" ;
-  r7 => a7 + "ہتر" ;
-  r8 => a8 + "اسی" ;
-  r9 => a9 + "انوے"
-} ;
-
-oper rows : DSize => DSize => Str = table {
-  sg => mkR "گیارہ" "اك" "اكت" "اكت" "اكیاو" "اك" "اك" "اكی" "اكی" ; 
-  r2 => mkR "بارہ" "بای" "بات" "بای" "باو" "با" "با" "بای" "ب" ;
-  r3 => mkR "تیر" "تی" "تین" "تنت" "ترپ" "تری" "ت" "تر" "تر" ;
-  r4 => mkR "چود" "چوب" "چون" "چوا" "چوو" "چون" "چوہ" "چور" "چور" ;
-  r5 => mkR "پند" "پچی" "پین" "پنتا" "پچپ" "پین" "پہ" "پچ" "پچ" ;
-  r6 => mkR "سول" "چھب" "چھت" "چھی" "چھپ" "چھیا" "چھ" "چھی" "چھی" ;
-  r7 => mkR "ستر" "ستا" "سین" "سنت" "ستاو" "ستا" "سر" "ست" "ستا" ;
-  r8 => mkR "اتھار" "اتھای" "اڑ" "اڑت" "اتھاو" "اڑ" "اتھ" "اتھ" "اتھ" ; 
-  r9 => table {sg => "انیس" ; r2 => "انتیس" ; r3 => "انتالیس" ; 
-               r4 => "انچاس" ; r5 => "انستھ" ; r6 => "انہتر" ; 
-               r7 => "اناسی" ; 
-               r8 => "انانوے" ; r9 => "ننانوے" } 
-} ;
-
-oper ss : Str -> {s : Str} = \s -> {s = s} ;
-
-lin pot01 = {s = table {unit => "ایك" ; _ => "دمی" } ; size = sg ; n = Sg} ;
-lin pot0 d = d ; 
-lin pot110 = {s = "داس" ; size = less100 ; n = Pl} ; 
-lin pot111 = {s = rows ! sg ! sg ; size = less100 ; n = Pl} ;
-lin pot1to19 d = {s = rows ! d.size ! sg ; size = less100 ; n = d.n} ;
-lin pot0as1 n = {s = n.s ! unit ; size = table {sg => singl ; _ => less100} ! n.size ; n = n.n } ;
-
-lin pot1 d = {s = d.s ! ten ; size = less100 ; n = d.n} ;
-lin pot1plus d e = {s = rows ! e.size ! d.size ; size = less100 ; n = d.n} ;
-
-lin pot1as2 n = {s = n.s ; s2 = "دمی" ; size = n.size ; n = n.n} ;
-lin pot2 d = {s = (mksau (d.s ! unit) d.size) ; 
-              s2 = d.s ! unit ++ "لاكھ" ; size = more100 ; n = d.n} ;
-lin pot2plus d e = 
-  {s = (mksau (d.s ! unit) d.size) ++ e.s ; 
-   s2 = (d.s ! unit) ++ "لاكھ" ++ (mkhazar e.s e.size) ; 
-   size = more100 ; n = d.n} ;
-
-lin pot2as3 n = {s = n.s ; n = n.n} ;
-lin pot3 n = {s = table { singl => ekhazar ;
-                          less100 => n.s ++ "ہزار" ; 
-                          more100 => n.s2 } ! n.size ; n = n.n} ;
-lin pot3plus n m = 
-  {s = table {singl => ekhazar ;
-              less100 => n.s ++ "ہزار" ; 
-              more100 => n.s2 } ! n.size ++ m.s ; n = n.n} ;
-
-lin D_0 = { s = "۰" ; n = Sg};
-lin D_1 = { s = "۱" ; n = Sg};
-lin D_2 = { s = "۲" ; n = Pl};
-lin D_3 = { s = "۳" ; n = Pl};
-lin D_4 = { s = "۴" ; n = Pl};
-lin D_5 = { s = "۵" ; n = Pl};
-lin D_6 = { s = "۶" ; n = Pl};
-lin D_7 = { s = "۷" ; n = Pl};
-lin D_8 = { s = "۸" ; n = Pl};
-lin D_9 = { s = "۹" ; n = Pl};
-lin IDig d = { s = \\_ => d.s ; n = d.n} ;
-lin IIDig d dg = { s = \\df => Prelude.glue (dg.s ! df) d.s ; n = Pl }; 
-
-oper ekhazar : Str = variants {"ہزار" ; "ایك" ++ "ہزار"} ; 
-oper mkhazar : Str -> Size -> Str = \s -> \sz -> table {singl => ekhazar ; _ => s ++ "ہزار"} ! sz ;
-oper mksau : Str -> DSize -> Str = \s -> \sz -> table {sg => "سو" ; _ => s ++ "سو"} ! sz ;
-}
+-- By Harald Hammarstr
+-- Modification for Urdu Shafqat Virk
+
+
+concrete NumeralUrd of Numeral = CatUrd ** open ResUrd,CommonHindustani,ParamX, Prelude in {
+flags coding=utf8 ;
+
+param DForm = unit | ten ;
+param DSize = sg | r2 | r3 | r4 | r5 | r6 | r7 | r8 | r9 ;
+param Size = singl | less100 | more100 ; 
+
+oper LinDigit = {s : DForm => Str ; size : DSize ; n : Number} ;
+
+
+lincat Dig = { s:Str ; n : Number};
+lincat Digit = LinDigit ;
+lincat Sub10 = {s : DForm => Str ; size : DSize ; n : Number} ;
+lincat Sub100 = {s : Str ; size : Size ; n : Number} ;
+lincat Sub1000 = {s : Str ; s2 : Str ; size : Size ; n : Number } ; 
+lincat Sub1000000 = { s : Str ; n : Number } ;
+
+lin num x0 = 
+    {s = table {
+          NCard =>   x0.s ; 
+          NOrd =>  x0.s ++ "واں" -- need to use mkOrd x0.s but it gives linking error 
+          };
+       n = x0.n
+    } ;
+
+
+oper mkNum : Str -> Str -> DSize -> LinDigit = 
+  \do -> \bis -> \sz ->  
+  {s = table {unit => do ; ten => bis } ; 
+   size = sz ; n = Pl} ;
+
+lin n2 = mkNum "دو" "بیس" r2 ;
+lin n3 = mkNum "تین" "تیس" r3 ;
+lin n4 = mkNum "چار" "چالیس" r4 ;
+lin n5 = mkNum "پانچ" "پچاس" r5 ;
+lin n6 = mkNum "چھ" "ساٹھ" r6 ; 
+lin n7 = mkNum "سات" "ستر" r7; 
+lin n8 = mkNum "آٹھ" "اسی" r8;
+lin n9 = mkNum "نو" "نوے" r9 ;
+
+oper mkR : Str -> Str -> Str -> Str -> Str -> Str -> Str -> Str -> Str -> DSize => Str = \a1 -> \a2 -> \a3 -> \a4 -> \a5 -> \a6 -> \a7 -> \a8 -> \a9 -> table {
+  sg => a1 + "ہ" ;
+  r2 => a2 + "یس" ;
+  r3 => a3 + "تیس" ;
+  r4 => a4 + "الیس" ;
+  r5 => a5 + "ن" ;
+  r6 => a6 + "ساٹھ" ;
+  r7 => a7 + "ہتر" ;
+  r8 => a8 + "اسی" ;
+  r9 => a9 + "انوے"
+} ;
+
+oper rows : DSize => DSize => Str = table {
+  sg => mkR "گیار" "اك" "اكت" "اكت" "اكیاو" "اك" "اك" "اكی" "اكی" ; 
+  r2 => mkR "بار" "بای" "بات" "بای" "باو" "با" "با" "بای" "ب" ;
+  r3 => mkR "تیر" "تی" "تین" "تنت" "ترپ" "تری" "ت" "تر" "تر" ;
+  r4 => mkR "چود" "چوب" "چون" "چوا" "چوو" "چون" "چوہ" "چور" "چور" ;
+  r5 => mkR "پندر" "پچی" "پین" "پنتا" "پچپ" "پین" "پہ" "پچ" "پچ" ;
+  r6 => mkR "سول" "چھب" "چھت" "چھی" "چھپ" "چھیا" "چھ" "چھی" "چھی" ;
+  r7 => mkR "ستر" "ستا" "سین" "سنت" "ستاو" "ستا" "سر" "ست" "ستا" ;
+  r8 => mkR "اٹھار" "اٹھای" "اڑ" "اڑت" "اٹھاو" "اڑ" "اٹھ" "اٹھ" "اٹھ" ; 
+  r9 => table {sg => "انیس" ; r2 => "انتیس" ; r3 => "انتالیس" ; 
+               r4 => "انچاس" ; r5 => "انستھ" ; r6 => "انہتر" ; 
+               r7 => "اناسی" ; 
+               r8 => "انانوے" ; r9 => "ننانوے" } 
+} ;
+
+oper ss : Str -> {s : Str} = \s -> {s = s} ;
+
+lin pot01 = {s = table {unit => "ایك" ; _ => "دمی" } ; size = sg ; n = Sg} ;
+lin pot0 d = d ; 
+lin pot110 = {s = "دس" ; size = less100 ; n = Pl} ; 
+lin pot111 = {s = rows ! sg ! sg ; size = less100 ; n = Pl} ;
+lin pot1to19 d = {s = rows ! d.size ! sg ; size = less100 ; n = d.n} ;
+lin pot0as1 n = {s = n.s ! unit ; size = table {sg => singl ; _ => less100} ! n.size ; n = n.n } ;
+
+lin pot1 d = {s = d.s ! ten ; size = less100 ; n = d.n} ;
+lin pot1plus d e = {s = rows ! e.size ! d.size ; size = less100 ; n = d.n} ;
+
+lin pot1as2 n = {s = n.s ; s2 = "دمی" ; size = n.size ; n = n.n} ;
+lin pot2 d = {s = (mksau (d.s ! unit) d.size) ; 
+              s2 = d.s ! unit ++ "لاكھ" ; size = more100 ; n = d.n} ;
+lin pot2plus d e = 
+  {s = (mksau (d.s ! unit) d.size) ++ e.s ; 
+   s2 = (d.s ! unit) ++ "لاكھ" ++ (mkhazar e.s e.size) ; 
+   size = more100 ; n = d.n} ;
+
+lin pot2as3 n = {s = n.s ; n = n.n} ;
+lin pot3 n = {s = table { singl => ekhazar ;
+                          less100 => n.s ++ "ہزار" ; 
+                          more100 => n.s2 } ! n.size ; n = n.n} ;
+lin pot3plus n m = 
+  {s = table {singl => ekhazar ;
+              less100 => n.s ++ "ہزار" ; 
+              more100 => n.s2 } ! n.size ++ m.s ; n = n.n} ;
+
+lin D_0 = { s = "۰" ; n = Sg};
+lin D_1 = { s = "۱" ; n = Sg};
+lin D_2 = { s = "۲" ; n = Pl};
+lin D_3 = { s = "۳" ; n = Pl};
+lin D_4 = { s = "۴" ; n = Pl};
+lin D_5 = { s = "۵" ; n = Pl};
+lin D_6 = { s = "۶" ; n = Pl};
+lin D_7 = { s = "۷" ; n = Pl};
+lin D_8 = { s = "۸" ; n = Pl};
+lin D_9 = { s = "۹" ; n = Pl};
+lin IDig d = { s = \\_ => d.s ; n = d.n} ;
+lin IIDig d dg = { s = \\df => Prelude.glue (dg.s ! df) d.s ; n = Pl }; 
+
+oper ekhazar : Str = variants {"ہزار" ; "ایك" ++ "ہزار"} ; 
+oper mkhazar : Str -> Size -> Str = \s -> \sz -> table {singl => ekhazar ; _ => s ++ "ہزار"} ! sz ;
+oper mksau : Str -> DSize -> Str = \s -> \sz -> table {sg => "ایك" ++ "سو" ; _ => s ++ "سو"} ! sz ;
+}
diff --git a/lib/src/urdu/ParadigmsUrd.gf b/lib/src/urdu/ParadigmsUrd.gf
--- a/lib/src/urdu/ParadigmsUrd.gf
+++ b/lib/src/urdu/ParadigmsUrd.gf
@@ -49,20 +49,22 @@
  
 
 -- Proper names     
-  mkPN : Str -> PN 
-    = \s -> let n = regNoun s in {s = n.s ! Sg ; g = n.g ; lock_PN = <>} ;
-  personalPN : Str -> Str -> Str -> Str -> Number -> Gender -> UPerson -> Pron 
-  = \s1,s2,s3,sp,nn,g,p -> let n = mkPron s1 s2 s3 in {s = n.s ; a = toAgr nn p g ; ps = sp ; lock_Pron = <>};
-  demoPN : Str -> Str -> Str -> Quant
-  = \s1,s2,s3 -> let n = makeDemonPronForm s1 s2 s3 in {s = n.s ; a = defaultAgr ; lock_Quant = <>};
-  mkDet : Str -> Str -> Str -> Str -> Number -> Det 
-  = \s1,s2,s3,s4,nb -> let dt = makeDet s1 s2 s3 s4 nb in {s = dt.s ; n = nb ; lock_Det = <>};
-  mkIP : (x1,x2,x3:Str) -> Number -> Gender -> IP 
-  = \s1,s2,s3,n,g -> let p = mkIntPronForm s1 s2 s3 in { s = p.s ; n = n ; g = g ;  lock_IP = <>}; 
+  mkPN : Str -> PN = \s -> let n = regNoun s in {s = n.s ! Sg ; g = n.g ; lock_PN = <>} ;
+  personalPN : Str -> Str -> Str -> Str -> Str -> Str -> Str -> Number -> Gender -> UPerson -> Pron =
+    \s1,s2,s3,smp,sfp,pmp,pfp,nn,g,p -> let n = mkPron s1 s2 s3 in
+      {s = n.s ;
+       a = toAgr nn p g ;
+       ps = \\n,g => case <n,g> of {
+                        <Sg,Masc> =>smp ;
+			<Sg,Fem> => sfp ;
+			<Pl,Masc> => pmp ;
+			<Pl,Fem> => pfp } ; lock_Pron = <>};
+  demoPN : Str -> Str -> Str -> Quant = \s1,s2,s3 -> let n = makeDemonPronForm s1 s2 s3 in {s = n.s ; a = defaultAgr ; lock_Quant = <>};
+  mkDet : Str -> Str -> Str -> Str -> Number -> Det = \s1,s2,s3,s4,nb -> let dt = makeDet s1 s2 s3 s4 nb in {s = dt.s ; n = nb ; lock_Det = <>};
+  mkIP : (x1,x2,x3:Str) -> Number -> Gender -> IP = \s1,s2,s3,n,g -> let p = mkIntPronForm s1 s2 s3 in { s = p.s ; n = n ; g = g ;  lock_IP = <>}; 
 
 -- AdN
-  mkAdN : Str -> AdN 
-  = \s -> {s = s ; p = False ; lock_AdN = <>} ; 
+  mkAdN : Str -> AdN = \s -> {s = s ; p = False ; lock_AdN = <>} ; 
 --2 Adjectives
 
   mkA = overload {
@@ -73,6 +75,10 @@
     } ;
   mkA2 : A -> Str -> A2 ;
   mkA2 a str = a ** {c2=str ; lock_A2 = <>} ;
+  
+-- compound Adjectives
+  mkCompoundA : Str -> Str -> A ; -- e.g dra hwa
+  mkCompoundA s1 s2 = compoundAdj s1 s2 ;
 
 --2 Verbs
 
@@ -87,7 +93,7 @@
     mkV2 : V -> Str -> V2 -- e.g bnd krna
       = \v,p -> v ** {c2 = {s = p ; c = VTrans} ; lock_V2 = <>} ;
     } ;
-  dirV2 : V -> V2 = \v -> v ** {c2 = {s = [] ; c = VTrans} ; lock_V2 = <>} ; --%
+  dirV2 : V -> V2 = \v -> v ** {c2 = {s = [] ; c = VTrans} ; lock_V2 = <>} ;
   
   mkV3 : V -> Str -> Str -> V3; -- e.g bycna
     mkV3 v p q = v ** { c2 = p ; c3 = q ; lock_V3 = <>} ;
@@ -106,8 +112,12 @@
  
 
 ----2 Adverbs
+mkAdv = overload {
   mkAdv : Str -> Adv -- e.g yhaN
     = \str -> {s = \\_ => str ; lock_Adv = <>};
+  mkAdv : Str -> Str -> Adv
+    = \m,f -> {s = table {Masc => m ; Fem => f} ; lock_Adv = <>};
+    };
 
 ----2 Prepositions
 
@@ -125,7 +135,7 @@
 --    mkQuant : Pron -> Quant = \p -> {s = \\_,_,c => p.s!c ;a = p.a ; lock_Quant = <>};
 --    mkQuant : (no_sg, no_pl, none_sg, non_pl : Str) -> Quant = mkQuantifier;
 --  } ;
-  mkIQuant : Str -> IQuant = \s -> makeIQuant s ; --%
+  mkIQuant : Str -> IQuant = \s -> makeIQuant s ;
   
 
 --2 Conjunctions
@@ -136,21 +146,21 @@
     mkConj : Str -> Str -> Number -> Conj ; -- either ... or (agrement number given as argument)
   } ;
  mkConj = overload {
-    mkConj : Str -> Conj = \y -> mk2Conj [] y plural ; --%
-    mkConj : Str -> Number -> Conj = \y,n -> mk2Conj [] y n ; --%
-    mkConj : Str -> Str -> Conj = \x,y -> mk2Conj x y plural ; --%
-    mkConj : Str -> Str -> Number -> Conj = mk2Conj ; --%
+    mkConj : Str -> Conj = \y -> mk2Conj [] y plural ;
+    mkConj : Str -> Number -> Conj = \y,n -> mk2Conj [] y n ;
+    mkConj : Str -> Str -> Conj = \x,y -> mk2Conj x y plural ;
+    mkConj : Str -> Str -> Number -> Conj = mk2Conj ;
   } ;
 
-  mk2Conj : Str -> Str -> Number -> Conj = \x,y,n -> --%
+  mk2Conj : Str -> Str -> Number -> Conj = \x,y,n -> 
     lin Conj (sd2 x y ** {n = n}) ;  
 
 --  mkV0  : V -> V0 ;
   mkVS  : V -> VS; -- e.g drna
   mkVS v = v ;
 --  mkV2S : V -> Prep -> V2S ;
-  mkVV  : V -> VV  -- e.g cahna
-    = \v ->  lin VV (v ** {isAux = False});
+  mkVV  : V -> VV = -- e.g cahna
+     \v ->  lin VV (v ** {isAux = False});
     
   mkAdA : Str -> AdA ;
 --  mkAdv x = lin Adv (ss x) ;
diff --git a/lib/src/urdu/ResHindustani.gf b/lib/src/urdu/ResHindustani.gf
--- a/lib/src/urdu/ResHindustani.gf
+++ b/lib/src/urdu/ResHindustani.gf
@@ -44,7 +44,7 @@
     Preposition = {s : Gender => Str};
     DemPronForm = {s : Number => Gender => Case => Str};
     PossPronForm = {s : Number => Gender => Case => Str};
-    Determiner = {s : Number => Gender => Str ; n : Number};
+    Determiner = {s : Number => Gender => Case => Str ; n : Number};
   
 -- a useful oper
     eq : Str -> Str -> Bool = \s1,s2-> (pbool2bool (eqStr s1 s2)) ; 
@@ -63,14 +63,15 @@
       NPErg => pn !  Obl ++ "نے"
       } ;
   detcn2NP : (Determiner) -> Noun -> NPCase -> Number -> Str = \dt,cn,npc,nn -> case npc of {
-       NPC c => dt.s ! Sg ! Masc ++ cn.s ! nn ! c ;
-       NPObj => dt.s ! Sg ! Masc ++ cn.s ! nn ! Dir ;
-       NPErg => dt.s ! Sg ! Masc ++ cn.s ! nn ! Obl ++ "نے"
+--       NPC c => dt.s ! Sg ! Masc ++ cn.s ! nn ! c ; --changed while phrasebook e.g tyry beti where gender of determiner 'tyry' should be dependent on gender of common noum e.g 'beti' 
+       NPC c => dt.s ! nn ! cn.g ! c ++ cn.s ! nn ! c ;
+       NPObj => dt.s ! nn ! cn.g ! Obl ++ cn.s ! nn ! Dir ; 
+       NPErg => dt.s ! nn ! cn.g ! Obl ++ cn.s ! nn ! Obl ++ "نے"
       } ;  
   det2NP : (Determiner) -> NPCase -> Str = \dt,npc -> case npc of {
-       NPC c => dt.s ! Sg ! Masc ;
-       NPObj => dt.s ! Sg ! Masc ;
-       NPErg => dt.s ! Sg  ! Masc ++ "نے"
+       NPC c => dt.s ! Sg ! Masc ! c ;
+       NPObj => dt.s ! Sg ! Masc ! Dir ;
+       NPErg => dt.s ! Sg  ! Masc ! Obl ++ "نے"
       } ;    
 	  
 ------------------------------------------
diff --git a/lib/src/urdu/StringsHindustani.gf b/lib/src/urdu/StringsHindustani.gf
--- a/lib/src/urdu/StringsHindustani.gf
+++ b/lib/src/urdu/StringsHindustani.gf
@@ -16,5 +16,6 @@
   waN = "واں" ;
 
   comma = "," ;
+  indfArt = "ایك" ;
 
 }
diff --git a/lib/src/urdu/StructuralUrd.gf b/lib/src/urdu/StructuralUrd.gf
--- a/lib/src/urdu/StructuralUrd.gf
+++ b/lib/src/urdu/StructuralUrd.gf
@@ -18,8 +18,8 @@
   between_Prep = mkPrep "درمیاں" "درمیاں" ;
   both7and_DConj = sd2 "دونوں" "اور" ** {n = Pl} ;
   but_PConj = ss "لیكن" ;
-  by8agent_Prep = mkPrep "" "" ;
-  by8means_Prep = mkPrep "" "" ;
+  by8agent_Prep = mkPrep "سے" "" ;
+  by8means_Prep = mkPrep "پر" "" ;
   can8know_VV,can_VV = mkV "سكنا" ** { isAux = True} ;
   during_Prep = mkPrep ["كے درمیاں"] ["كے درمیاں"] ;
   either7or_DConj = sd2 "كوی ایك" "یا" ** {n = Sg} ;
@@ -31,7 +31,7 @@
   first_Ord = {s = "پعہلا" ; n = Sg} ; --DEPRECATED
   for_Prep = mkPrep "كیلیے" "كیلیے" ;
   from_Prep = mkPrep "سے" "سے" ;
-  he_Pron = personalPN "وہ" "اس" "" "اس كا"  Sg Masc Pers3_Distant ;
+  he_Pron = personalPN "وہ" "اس" "" ["اس كا"] ["اس كی"] ["اس كے"] ["اس كی"] Sg Masc Pers3_Distant ;
   here_Adv = mkAdv "یہاں" ;
   here7to_Adv = mkAdv ["یہاں پر"] ;
   here7from_Adv = mkAdv ["یہاں سے"] ;
@@ -40,9 +40,9 @@
   how8much_IAdv  = ss "كتنا" ;
   if_Subj = ss "اگر" ;
   in8front_Prep = mkPrep ["كے سامنے"] ["كے سامنے"] ;
-  i_Pron = personalPN "میں" "مجھ" "" "میرا" Sg Masc Pers1;
+  i_Pron = personalPN "میں" "مجھ" "" "میرا" "میری" "میرے" "میری" Sg Masc Pers1;
   in_Prep = mkPrep "میں" "میں" ;
-  it_Pron  = personalPN "یہ" "اس" "اس" "اس كا" Sg Masc Pers3_Near;
+  it_Pron  = personalPN "یہ" "اس" "اس" ["اس كا"] ["اس كی"] ["اس كے"] ["اس كی"] Sg Masc Pers3_Near;
   less_CAdv = {s = "كم" ; p = ""} ;
   many_Det = mkDet "بہت زیادہ" "بہت زیادہ" "بہت زیادہ" "بہت زیادہ" Pl ;
   more_CAdv = {s = "زیادہ" ; p = "سے" } ;
@@ -71,7 +71,7 @@
   please_Voc = ss "مہربانی" ;
   possess_Prep = mkPrep "كا" "كی" ;
   quite_Adv = ss "خاموش" ;
-  she_Pron = personalPN "وہ" "اس" "وہ" "اس كی" Sg Fem Pers3_Distant ;
+  she_Pron = personalPN "وہ" "اس" "وہ" ["اس كی"] ["اس كی"] ["اس كے"] ["اس كی"] Sg Fem Pers3_Distant ;
   so_AdA = ss "[اس لیE]" ;
   somebody_NP = MassNP (UseN (ParadigmsUrd.mkN "كوی" "كوی" "كوی" "كوی" "كوی" "كوی" Masc ));
   someSg_Det = mkDet "كچھ" "كچھ" "كچھ" "كچھ" Sg ;
@@ -84,7 +84,7 @@
   there7to_Adv = mkAdv ["وہاں پر"] ;
   there7from_Adv = mkAdv ["وہاں سے"] ;
   therefore_PConj = ss "اس لیے" ;
-  they_Pron = personalPN "وہ" "وہ" "وہ" "ان كا" Pl Masc Pers3_Distant ; ---- 
+  they_Pron = personalPN "وہ" "وہ" "وہ" ["ان كا"] ["ان كی"] ["ان كے"] ["ان كی"] Pl Masc Pers3_Distant ; ---- 
   this_Quant = demoPN "یہ" "اس" "ان";      
   through_Prep = mkPrep ["میں سے"] ["میں سے"] ;
   too_AdA = ss "بہت" ;
@@ -92,7 +92,7 @@
   under_Prep = mkPrep "نیچے" "نیچے" ; -- ** {lock_Prep = <>};
   very_AdA = ss "بہت" ;
   want_VV = mkV "چاہنا" ** { isAux = False} ;
-  we_Pron = personalPN "ہم" "ہم" "ہم" "ہمارا" Pl Masc Pers1 ;
+  we_Pron = personalPN "ہم" "ہم" "ہم" "ہمارا" "ہماری" "ہمارے" "ہماری" Pl Masc Pers1 ;
   whatSg_IP = mkIP "كیا" "كس" "كس" Sg Masc ;
   whatPl_IP = mkIP "كیا" "كن" "كن" Pl Masc ;
   when_IAdv = ss "كب" ;
@@ -109,9 +109,9 @@
   with_Prep = mkPrep ["كے ساتھ"] ["كے ساتھ"] ;
 --  yes_Phr = ss "ہاں" ;
   yes_Utt = ss "ہاں" ;
-  youSg_Pron = personalPN "تو" "تو" "تو" "تیرا" Sg Masc Pers2_Casual ;
-  youPl_Pron = personalPN "تم" "تم" "تم" "تمھارا" Pl Masc Pers2_Casual ;
-  youPol_Pron = personalPN "آپ" "آپ" "آپ" "آپ كا" Sg Masc Pers2_Respect  ;
+  youSg_Pron = personalPN "تو" "تو" "تو" "تیرا" "تیری" "تیرے" "تیری" Sg Masc Pers2_Casual ;
+  youPl_Pron = personalPN "تم" "تم" "تم" "تمھارا" "تمھاری" "تمھارے" "تمھاری" Pl Masc Pers2_Casual ;
+  youPol_Pron = personalPN "آپ" "آپ" "آپ" ["آپ كا"] ["آپ كی"] ["آپ كے"] ["آپ كی"] Pl Masc Pers2_Respect  ;
   no_Quant =  demoPN " كوی نہیں" "كوی نہیں" "كوی نہیں" ; 
   not_Predet = {s="نہیں"} ;
   if_then_Conj = sd2 "اگر" "تو" ** {n = Sg} ; 
@@ -123,7 +123,7 @@
 
   as_CAdv = {s = "اتنا" ; p = "جتنا"} ;
 
-  have_V2 = mkV2 (mkV "راكھنا") "" ;
+  have_V2 = mkV2 (mkV "ركھنا") "" ;
 
  language_title_Utt = ss "اردو" ;
 
diff --git a/lib/src/urdu/TextUrd.gf b/lib/src/urdu/TextUrd.gf
new file mode 100644
--- /dev/null
+++ b/lib/src/urdu/TextUrd.gf
@@ -0,0 +1,11 @@
+concrete TextUrd of Text = CommonX - [Temp,TTAnt,Tense,TPres,TPast,TFut,TCond] ** {
+
+-- This works for the special punctuation marks of Urdu but still browser does not display them well so left balnk.
+
+  lin
+    TEmpty = {s = []} ;
+    TFullStop x xs = {s = x.s ++ "" ++ xs.s} ;
+    TQuestMark x xs = {s = x.s ++ "" ++ xs.s} ;
+    TExclMark x xs = {s = x.s ++ "" ++ xs.s} ;
+
+}
diff --git a/lib/src/urdu/src/ExtraUrd.gf b/lib/src/urdu/src/ExtraUrd.gf
--- a/lib/src/urdu/src/ExtraUrd.gf
+++ b/lib/src/urdu/src/ExtraUrd.gf
@@ -4,7 +4,16 @@
 flags coding = utf8 ;
 
   lin
-    GenNP np = {s = \\_,_,_ => np.s ! NPC Obl ++ "ka" ; a = np.a} ;
+ --   GenNP np = {s = \\_,_,_ => np.s ! NPC Obl ++ "ka" ; a = np.a} ;
+  GenNP np = {s = \\n,g,c => 
+     case <n,g,c> of {
+     <Sg,Masc,Obl> => np.s ! NPC Obl ++ "kE" ;
+     <Sg,Masc,_> => np.s ! NPC Obl ++ "ka" ;
+     <Pl,Masc,_> => np.s ! NPC Obl ++ "kE" ;
+     <_,Fem,_> => np.s ! NPC Obl ++ "ky"
+     };
+     
+   a = np.a} ;
 
     each_Det = mkDet  "hr kwy" "hr kwy" "hr kwy" "hr kwy" Sg ;
     have_V = mkV "rakh-na";
diff --git a/lib/src/urdu/src/LexiconUrd.gf b/lib/src/urdu/src/LexiconUrd.gf
--- a/lib/src/urdu/src/LexiconUrd.gf
+++ b/lib/src/urdu/src/LexiconUrd.gf
@@ -234,7 +234,7 @@
   dull_A = mkA "nalayq" ;
   full_A = mkA "mkml" ;
   heavy_A = mkA "bh'ary" ;
-  near_A = mkA "qryb" ;
+  near_A = mkA "qryby" ;
   rotten_A = mkA "Krab" ;
   round_A = mkA "gwl" ;
   sharp_A = mkA "tyz" ;
diff --git a/lib/src/urdu/src/MorphoUrd.gf b/lib/src/urdu/src/MorphoUrd.gf
--- a/lib/src/urdu/src/MorphoUrd.gf
+++ b/lib/src/urdu/src/MorphoUrd.gf
@@ -173,13 +173,13 @@
   IDeterminer = {s:Gender => Case => Str ; n : Number};
   makeDet : Str -> Str -> Str -> Str -> Number -> Determiner = \s1,s2,s3,s4,n -> {
    s = table {
-      Sg => table {
-        Masc => s1 ;
-        Fem => s2 
+      Sg => table { 
+        Masc => table {_ => s1} ;
+        Fem => table {_ => s2} 
 	  } ;
       Pl => table {
-        Masc => s3 ;
-        Fem => s4 
+        Masc => table { _ => s3} ;
+        Fem => table {_ => s4} 
 	  }
       } ;
 
diff --git a/lib/src/urdu/src/StructuralUrd.gf b/lib/src/urdu/src/StructuralUrd.gf
--- a/lib/src/urdu/src/StructuralUrd.gf
+++ b/lib/src/urdu/src/StructuralUrd.gf
@@ -18,8 +18,8 @@
   between_Prep = mkPrep "drmyaN" "drmyaN" ;
   both7and_DConj = sd2 "dwnwN" "awr" ** {n = Pl} ;
   but_PConj = ss "lykn" ;
-  by8agent_Prep = mkPrep "" "" ;
-  by8means_Prep = mkPrep "" "" ;
+  by8agent_Prep = mkPrep "sE" "" ;
+  by8means_Prep = mkPrep "pr" "" ;
   can8know_VV,can_VV = mkV "skna" ** { isAux = True} ;
   during_Prep = mkPrep ["kE drmyaN"] ["kE drmyaN"] ;
   either7or_DConj = sd2 "kwy ayk" "ya" ** {n = Sg} ;
@@ -31,7 +31,7 @@
   first_Ord = {s = "pehla" ; n = Sg} ; --DEPRECATED
   for_Prep = mkPrep "kylyE" "kylyE" ;
   from_Prep = mkPrep "sE" "sE" ;
-  he_Pron = personalPN "wh" "as" "" "as ka"  Sg Masc Pers3_Distant ;
+  he_Pron = personalPN "wh" "as" "" ["as ka"] ["as ky"] ["as kE"] ["as ky"] Sg Masc Pers3_Distant ;
   here_Adv = mkAdv "yhaN" ;
   here7to_Adv = mkAdv ["yhaN pr"] ;
   here7from_Adv = mkAdv ["yhaN sE"] ;
@@ -40,9 +40,9 @@
   how8much_IAdv  = ss "ktna" ;
   if_Subj = ss "agr" ;
   in8front_Prep = mkPrep ["kE samnE"] ["kE samnE"] ;
-  i_Pron = personalPN "myN" "mjh'" "" "myra" Sg Masc Pers1;
+  i_Pron = personalPN "myN" "mjh'" "" "myra" "myry" "myrE" "myry" Sg Masc Pers1;
   in_Prep = mkPrep "myN" "myN" ;
-  it_Pron  = personalPN "yh" "as" "as" "as ka" Sg Masc Pers3_Near;
+  it_Pron  = personalPN "yh" "as" "as" ["as ka"] ["as ky"] ["as kE"] ["as ky"] Sg Masc Pers3_Near;
   less_CAdv = {s = "km" ; p = ""} ;
   many_Det = mkDet "bht zyadh" "bht zyadh" "bht zyadh" "bht zyadh" Pl ;
   more_CAdv = {s = "zyadh" ; p = "sE" } ;
@@ -71,7 +71,7 @@
   please_Voc = ss "mhrbany" ;
   possess_Prep = mkPrep "ka" "ky" ;
   quite_Adv = ss "KamwX" ;
-  she_Pron = personalPN "wh" "as" "wh" "as ky" Sg Fem Pers3_Distant ;
+  she_Pron = personalPN "wh" "as" "wh" ["as ky"] ["as ky"] ["as kE"] ["as ky"] Sg Fem Pers3_Distant ;
   so_AdA = ss "[as lyE]" ;
   somebody_NP = MassNP (UseN (ParadigmsUrd.mkN "kwy" "kwy" "kwy" "kwy" "kwy" "kwy" Masc ));
   someSg_Det = mkDet "kch'" "kch'" "kch'" "kch'" Sg ;
@@ -84,7 +84,7 @@
   there7to_Adv = mkAdv ["whaN pr"] ;
   there7from_Adv = mkAdv ["whaN sE"] ;
   therefore_PConj = ss "as lyE" ;
-  they_Pron = personalPN "wh" "wh" "wh" "an ka" Pl Masc Pers3_Distant ; ---- 
+  they_Pron = personalPN "wh" "wh" "wh" ["an ka"] ["an ky"] ["an kE"] ["an ky"] Pl Masc Pers3_Distant ; ---- 
   this_Quant = demoPN "yh" "as" "an";      
   through_Prep = mkPrep ["myN sE"] ["myN sE"] ;
   too_AdA = ss "bht" ;
@@ -92,7 +92,7 @@
   under_Prep = mkPrep "nycE" "nycE" ; -- ** {lock_Prep = <>};
   very_AdA = ss "bht" ;
   want_VV = mkV "cahna" ** { isAux = False} ;
-  we_Pron = personalPN "hm" "hm" "hm" "hmara" Pl Masc Pers1 ;
+  we_Pron = personalPN "hm" "hm" "hm" "hmara" "hmary" "hmarE" "hmary" Pl Masc Pers1 ;
   whatSg_IP = mkIP "kya" "ks" "ks" Sg Masc ;
   whatPl_IP = mkIP "kya" "kn" "kn" Pl Masc ;
   when_IAdv = ss "kb" ;
@@ -109,9 +109,9 @@
   with_Prep = mkPrep ["kE sath'"] ["kE sath'"] ;
 --  yes_Phr = ss "haN" ;
   yes_Utt = ss "haN" ;
-  youSg_Pron = personalPN "tw" "tw" "tw" "tyra" Sg Masc Pers2_Casual ;
-  youPl_Pron = personalPN "tm" "tm" "tm" "tmh'ara" Pl Masc Pers2_Casual ;
-  youPol_Pron = personalPN "Ap" "Ap" "Ap" "Ap ka" Sg Masc Pers2_Respect  ;
+  youSg_Pron = personalPN "tw" "tw" "tw" "tyra" "tyry" "tyrE" "tyry" Sg Masc Pers2_Casual ;
+  youPl_Pron = personalPN "tm" "tm" "tm" "tmh'ara" "tmh'ary" "tmh'arE" "tmh'ary" Pl Masc Pers2_Casual ;
+  youPol_Pron = personalPN "Ap" "Ap" "Ap" ["Ap ka"] ["Ap ky"] ["Ap kE"] ["Ap ky"] Pl Masc Pers2_Respect  ;
   no_Quant =  demoPN " kwy nhyN" "kwy nhyN" "kwy nhyN" ; 
   not_Predet = {s="nhyN"} ;
   if_then_Conj = sd2 "agr" "tw" ** {n = Sg} ; 
@@ -123,7 +123,7 @@
 
   as_CAdv = {s = "atna" ; p = "jtna"} ;
 
-  have_V2 = mkV2 (mkV "rakh'na") "" ;
+  have_V2 = mkV2 (mkV "rkh'na") "" ;
 
  language_title_Utt = ss "ardw" ;
 
diff --git a/lib/src/urdu/src/TextUrd.gf b/lib/src/urdu/src/TextUrd.gf
new file mode 100644
--- /dev/null
+++ b/lib/src/urdu/src/TextUrd.gf
@@ -0,0 +1,11 @@
+concrete TextUrd of Text = CommonX - [Temp,TTAnt,Tense,TPres,TPast,TFut,TCond] ** {
+
+-- This works for the special punctuation marks of Urdu.
+
+  lin
+    TEmpty = {s = []} ;
+    TFullStop x xs = {s = x.s ++ "" ++ xs.s} ;
+    TQuestMark x xs = {s = x.s ++ "" ++ xs.s} ;
+    TExclMark x xs = {s = x.s ++ "" ++ xs.s} ;
+
+}
diff --git a/lib/src/urdu/translit.gfs b/lib/src/urdu/translit.gfs
--- a/lib/src/urdu/translit.gfs
+++ b/lib/src/urdu/translit.gfs
@@ -8,5 +8,7 @@
 rf -file=src/LexiconUrd.gf | ps -env=quotes -to_urdu | wf -file=LexiconUrd.gf
 rf -file=src/MorphoUrd.gf | ps -env=quotes -to_urdu | wf -file=MorphoUrd.gf
 rf -file=src/StructuralUrd.gf | ps -env=quotes -to_urdu | wf -file=StructuralUrd.gf
+rf -file=src/NumeralUrd.gf | ps -env=quotes -to_urdu | wf -file=NumeralUrd.gf
+rf -file=src/TextUrd.gf | ps -env=quotes -to_urdu | wf -file=TextUrd.gf
 
 
diff --git a/src/compiler/GF.hs b/src/compiler/GF.hs
--- a/src/compiler/GF.hs
+++ b/src/compiler/GF.hs
@@ -45,5 +45,5 @@
       ModeHelp        -> putStrLn helpMessage
       ModeInteractive -> mainGFI opts files
       ModeRun         -> mainRunGFI opts files
+      ModeServer      -> mainServerGFI opts files
       ModeCompiler    -> dieIOE (mainGFC opts files)
-
diff --git a/src/compiler/GF/Command/Commands.hs b/src/compiler/GF/Command/Commands.hs
--- a/src/compiler/GF/Command/Commands.hs
+++ b/src/compiler/GF/Command/Commands.hs
@@ -33,6 +33,7 @@
 import GF.Command.Abstract
 import GF.Command.Messages
 import GF.Text.Lexing
+import GF.Text.Clitics
 import GF.Text.Transliterations
 import GF.Quiz
 
@@ -44,7 +45,7 @@
 import Data.List
 import Data.Maybe
 import qualified Data.Map as Map
-import System.Cmd
+--import System.Cmd(system) -- use GF.Infra.UseIO.restricedSystem instead!
 import Text.PrettyPrint
 import Data.List (sort)
 import Debug.Trace
@@ -155,50 +156,72 @@
        ],
      exec = \opts es -> do
          let langs = optLangs opts
-         let grph = if null es then [] else graphvizAlignment pgf langs (head es)
-         if isFlag "view" opts || isFlag "format" opts then do
-           let file s = "_grph." ++ s
-           let view = optViewGraph opts
-           let format = optViewFormat opts 
-           writeUTF8File (file "dot") grph
-           system $ "dot -T" ++ format ++ " " ++ file "dot" ++ " > " ++ file format
-           system $ view ++ " " ++ file format
-           return void
-          else return $ fromString grph,
+         if isOpt "giza" opts 
+           then do
+             let giz = map (gizaAlignment pgf (head $ langs, head $ tail $ langs)) es
+             let lsrc = unlines $ map (\(x,_,_) -> x) giz
+             let ltrg = unlines $ map (\(_,x,_) -> x) giz
+             let align = unlines $ map (\(_,_,x) -> x) giz
+             let grph = if null es then [] else lsrc ++ "\n--end_source--\n\n"++ltrg++"\n-end_target--\n\n"++align
+             return $ fromString grph
+           else do
+             let grph = if null es then [] else graphvizAlignment pgf langs (head es)
+             if isFlag "view" opts || isFlag "format" opts 
+               then do
+                 let file s = "_grph." ++ s
+                 let view = optViewGraph opts
+                 let format = optViewFormat opts 
+                 restricted $ writeUTF8File (file "dot") grph
+                 restrictedSystem $ "dot -T" ++ format ++ " " ++ file "dot" ++ " > " ++ file format
+                 restrictedSystem $ view ++ " " ++ file format
+                 return void
+               else return $ fromString grph,
      examples = [
-       "gr | aw              -- generate a tree and show word alignment as graph script",
-       "gr | vt -view=\"open\" -- generate a tree and display alignment on a Mac"
+       "gr | aw                         -- generate a tree and show word alignment as graph script",
+       "gr | aw -view=\"open\"            -- generate a tree and display alignment on Mac",
+       "gr | aw -view=\"eog\"             -- generate a tree and display alignment on Ubuntu",
+       "gt | aw -giza | wf -file=aligns -- generate trees, send giza alignments to file"
        ],
      options = [
+       ("giza",  "show alignments in the Giza format; the first two languages")
        ],
      flags = [
        ("format","format of the visualization file (default \"png\")"),
-       ("lang", "alignments for this list of languages (default: all)"),
-       ("view",  "program to open the resulting file (default \"open\")")
+       ("lang",  "alignments for this list of languages (default: all)"),
+       ("view",  "program to open the resulting file")
        ] 
     }),
- ("ga", emptyCommandInfo {
-     longname = "giza_alignment",
-     synopsis = "show the giza alignment between 2 languages",
+  ("ca", emptyCommandInfo {
+     longname = "clitic_analyse",
+     synopsis = "print the analyses of all words into stems and clitics",
      explanation = unlines [
-       "Prints a set of alignments in the .txt format.",
-       "The graph can be saved in a file by the wf command as usual."
+       "Analyses all words into all possible combinations of stem + clitics.",
+       "The analysis is returned in the format stem &+ clitic1 &+ clitic2 ...",
+       "which is hence the inverse of 'pt -bind'. The list of clitics is give",
+       "by the flag '-clitics'. The list of stems is given as the list of words",
+       "of the language given by the '-lang' flag."
        ],
-     exec = \opts es -> do
-         let giz = map (gizaAlignment pgf (head $ languages pgf, head $ tail $ languages pgf)) es
-         let lsrc = unlines $ map (\(x,_,_) -> x) giz
-         let ltrg = unlines $ map (\(_,x,_) -> x) giz
-         let align = unlines $ map (\(_,_,x) -> x) giz
-         let grph = if null es then [] else lsrc ++ "\n--end_source--\n\n"++ltrg++"\n-end_target--\n\n"++align
-         return $ fromString grph,
-     examples = [
-       "gr | ga              -- generate a tree and show giza alignments"
+     exec  = \opts -> case opts of
+               _ | isOpt "raw" opts ->
+                    return . fromString .  
+                    unlines . map (unwords . map (concat . intersperse "+")) .
+                    map (getClitics (isInMorpho (optMorpho opts)) (optClitics opts)) . 
+                    concatMap words . toStrings
+               _ -> 
+                    return . fromStrings . 
+                    getCliticsText (isInMorpho (optMorpho opts)) (optClitics opts) . 
+                    concatMap words . toStrings,
+     flags = [
+       ("clitics","the list of possible clitics (comma-separated, no spaces)"),
+       ("lang",   "the language of analysis")
        ],
      options = [
+       ("raw", "analyse each word separately (not suitable input for parser)")
        ],
-     flags = [
-       ] 
-    }),
+     examples = [
+       "ca -lang=Fin -clitics=ko,ni \"nukkuuko minun vaimoni\" | p  -- to parse Finnish"
+       ]
+     }),
 
   ("cc", emptyCommandInfo {
      longname = "compute_concrete",
@@ -413,7 +436,8 @@
      synopsis = "import a grammar from source code or compiled .pgf file",
      explanation = unlines [
        "Reads a grammar from File and compiles it into a GF runtime grammar.",
-       "If a grammar with the same concrete name is already in the state",
+       "If its abstract is different from current state, old modules are discarded.",
+       "If its abstract is the same and a concrete with the same name is already in the state",
        "it is overwritten - but only if compilation succeeds.",
        "The grammar parser depends on the file name suffix:",
        "  .cf    context-free (labelled BNF) source",
@@ -449,9 +473,9 @@
        "sequences; see example."
        ],
      examples = [
-       "l -langs=LangSwe,LangNor no_Utt   -- linearize tree to LangSwe and LangNor",
-       "gr -lang=LangHin -cat=Cl | l -table -to_devanagari -to_utf8 -- hindi table",
-       "l -unlexer=\"LangSwe=to_utf8 LangHin=to_devanagari,to_utf8\" -- different lexers"
+       "l -lang=LangSwe,LangNor no_Utt   -- linearize tree to LangSwe and LangNor",
+       "gr -lang=LangHin -cat=Cl | l -table -to_devanagari -- hindi table",
+       "l -unlexer=\"LangAra=to_arabic LangHin=to_devanagari\" -- different unlexers"
        ],
      exec = \opts -> return . fromStrings . optLins opts,
      options = [
@@ -565,6 +589,8 @@
        ("cats",   "show just the names of abstract syntax categories"),
        ("fullform", "print the fullform lexicon"),
        ("funs",   "show just the names and types of abstract syntax functions"),
+       ("langs",  "show just the names of top concrete syntax modules"),
+       ("lexc", "print the lexicon in Xerox LEXC format"),
        ("missing","show just the names of functions that have no linearization"),
        ("opt",    "optimize the generated pgf"),
        ("pgf",    "write current pgf image in file"),
@@ -604,14 +630,18 @@
        "gr -cat=QCl | l | ps -bind      -- linearization output from LangFin", 
        "ps -to_devanagari \"A-p\"         -- show Devanagari in UTF8 terminal",
        "rf -file=Hin.gf | ps -env=quotes -to_devanagari -- convert translit to UTF8",
-       "rf -file=Ara.gf | ps -from_utf8 -env=quotes -from_arabic -- convert UTF8 to transliteration"
+       "rf -file=Ara.gf | ps -from_utf8 -env=quotes -from_arabic -- convert UTF8 to transliteration",
+       "ps -to=chinese.trans \"abc\"      -- apply transliteration defined in file chinese.trans"
        ],
-     exec = \opts -> 
-               let (os,fs) = optsAndFlags opts in
-               return . fromString . stringOps (envFlag fs) (map prOpt os) . toString,
+     exec = \opts x -> do
+               let (os,fs) = optsAndFlags opts
+               trans <- optTranslit opts 
+               return ((fromString . trans . stringOps (envFlag fs) (map prOpt os) . toString) x),
      options = stringOpOptions,
      flags = [
-       ("env","apply in this environment only")
+       ("env","apply in this environment only"),
+       ("from","backward-apply transliteration defined in this file (format 'unicode translit' per line)"),
+       ("to",  "forward-apply transliteration defined in this file")
        ]
      }),
   ("pt", emptyCommandInfo {
@@ -625,7 +655,8 @@
        "are type checking and semantic computation."
        ], 
      examples = [
-       "pt -compute (plus one two)   -- compute value"
+       "pt -compute (plus one two)                               -- compute value",
+       "p \"4 dogs love 5 cats\" | pt -transfer=digits2numeral | l -- four...five..."
        ],
      exec = \opts -> 
             returnFromExprs . takeOptNum opts . treeOps opts,
@@ -636,6 +667,10 @@
      longname = "quit",
      synopsis = "exit GF interpreter"
      }),
+  ("r",  emptyCommandInfo {
+     longname = "reload",
+     synopsis = "repeat the latest import command"
+     }),
   ("rf",  emptyCommandInfo {
      longname = "read_file",
      synopsis = "read string or tree input from a file",
@@ -745,9 +780,9 @@
      exec = \opts arg -> do
        let tmpi = "_tmpi" ---
        let tmpo = "_tmpo"
-       writeFile tmpi $ toString arg
+       restricted $ writeFile tmpi $ toString arg
        let syst = optComm opts ++ " " ++ tmpi
-       system $ syst ++ " <" ++ tmpi ++ " >" ++ tmpo 
+       restrictedSystem $ syst ++ " <" ++ tmpi ++ " >" ++ tmpo 
        s <- readFile tmpo
        return $ fromString s,
      flags = [
@@ -758,6 +793,29 @@
        "gt | l | sp -command=\"grep \\\"who\\\"\" | sp -command=\"wc\""
        ]
      }),
+
+  ("so", emptyCommandInfo {
+     longname = "show_operations",
+     syntax = "so (-grep=STRING)* TYPE?",
+     synopsis = "show all operations in scope, possibly restricted to a value type",
+     explanation = unlines [
+       "Show the names and type signatures of all operations available in the current resource.",
+       "This command requires a source grammar to be in scope, imported with 'import -retain'.",
+       "The operations include the parameter constructors that are in scope.",
+       "The optional TYPE filters according to the value type.",
+       "The grep STRINGs filter according to other substrings of the type signatures.",
+       "This command must be a line of its own, and thus cannot be a part",
+       "of a pipe."
+       ],
+     flags = [
+       ("grep","substring used for filtering (the command can have many of these)")
+       ],
+     options = [
+       ("raw","show the types in computed forms (instead of category names)")
+       ],
+     needsTypeCheck = False
+     }),
+
   ("ut", emptyCommandInfo {
      longname = "unicode_table",
      synopsis = "show a transliteration table for a unicode character set",
@@ -796,9 +854,9 @@
            let file s = "_grphd." ++ s
            let view = optViewGraph opts
            let format = optViewFormat opts 
-           writeUTF8File (file "dot") grphs
-           system $ "dot -T" ++ format ++ " " ++ file "dot" ++ " > " ++ file format
-           system $ view ++ " " ++ file format
+           restricted $ writeUTF8File (file "dot") grphs
+           restrictedSystem $ "dot -T" ++ format ++ " " ++ file "dot" ++ " > " ++ file format
+           restrictedSystem $ view ++ " " ++ file format
            return void
           else return $ fromString grphs,
      examples = [
@@ -837,9 +895,9 @@
            let file s = "_grph." ++ s
            let view = optViewGraph opts
            let format = optViewFormat opts 
-           writeUTF8File (file "dot") grph
-           system $ "dot -T" ++ format ++ " " ++ file "dot" ++ " > " ++ file format
-           system $ view ++ " " ++ file format
+           restricted $ writeUTF8File (file "dot") grph
+           restrictedSystem $ "dot -T" ++ format ++ " " ++ file "dot" ++ " > " ++ file format
+           restrictedSystem $ view ++ " " ++ file format
            return void
           else return $ fromString grph,
      examples = [
@@ -882,9 +940,9 @@
            let file s = "_grph." ++ s
            let view = optViewGraph opts
            let format = optViewFormat opts 
-           writeUTF8File (file "dot") grph
-           system $ "dot -T" ++ format ++ " " ++ file "dot" ++ " > " ++ file format
-           system $ view  ++ " " ++ file format
+           restricted $ writeUTF8File (file "dot") grph
+           restrictedSystem $ "dot -T" ++ format ++ " " ++ file "dot" ++ " > " ++ file format
+           restrictedSystem $ view  ++ " " ++ file format
            return void
           else return $ fromString grph,
      examples = [
@@ -908,14 +966,21 @@
      exec = \opts arg -> do
          let file = valStrOpts "file" "_gftmp" opts
          if isOpt "append" opts 
-           then appendFile file (toString arg)
-           else writeUTF8File file (toString arg)
+           then restricted $ appendFile file (toString arg)
+           else restricted $ writeUTF8File file (toString arg)
          return void,
      options = [
        ("append","append to file, instead of overwriting it")
        ],
      flags = [("file","the output filename")] 
      }),
+  ("t", emptyCommandInfo {
+     longname = "tokenize",
+     synopsis = "Tokenize string usng the vocabulary",
+     exec = execToktok env,
+     options = [],
+     flags = [("lang","The name of the concrete to use")] 
+     }),
   ("ai", emptyCommandInfo {
      longname = "abstract_info",
      syntax = "ai IDENTIFIER  or  ai EXPR",
@@ -1045,6 +1110,15 @@
        probs <- readProbabilitiesFromFile file pgf
        return (setProbabilities probs pgf)
 
+   optTranslit opts = case (valStrOpts "to" "" opts, valStrOpts "from" "" opts) of
+     ("","")  -> return id
+     (file,"") -> do
+       src <- readFile file 
+       return $ transliterateWithFile file src False
+     (_,file) -> do
+       src <- readFile file 
+       return $ transliterateWithFile file src True
+
    optFile opts = valStrOpts "file" "_gftmp" opts
 
    optType opts = 
@@ -1097,6 +1171,9 @@
      | isOpt "cats"     opts = return $ fromString $ unwords $ map showCId $ categories pgf
      | isOpt "funs"     opts = return $ fromString $ unlines $ map showFun $ funsigs pgf
      | isOpt "fullform" opts = return $ fromString $ concatMap (morpho "" prFullFormLexicon) $ optLangs opts
+     | isOpt "langs"    opts = return $ fromString $ unwords $ map showCId $ languages pgf
+  
+     | isOpt "lexc"     opts = return $ fromString $ concatMap (morpho "" prLexcLexicon) $ optLangs opts
      | isOpt "missing"  opts = return $ fromString $ unlines $ [unwords (showCId la:":": map showCId cs) | 
                                                                   la <- optLangs opts, let cs = missingLins pgf la]
      | isOpt "words" opts = return $ fromString $ concatMap (morpho "" prAllWords) $ optLangs opts
@@ -1113,6 +1190,10 @@
 
    optMorpho opts = morpho (error "no morpho") id (head (optLangs opts))
 
+   optClitics opts = case valStrOpts "clitics" "" opts of
+     "" -> []
+     cs -> map reverse $ chunks ',' cs
+
    mexp xs = case xs of
      t:_ -> Just t
      _   -> Nothing
@@ -1175,6 +1256,16 @@
 infinity :: Int
 infinity = 256
 
+prLexcLexicon :: Morpho -> String
+prLexcLexicon mo = 
+  unlines $ "LEXICON" : [prLexc l p ++ ":" ++ w  ++ " # ;" | (w,lps) <- morpho, (l,p) <- lps] ++ ["END"]
+ where
+  morpho = fullFormLexicon mo
+  prLexc l p = showCId l ++ mkTags (words p)
+  mkTags p = case p of
+    "s":ws -> mkTags ws   --- remove record field
+    ws -> concat $ "+" : intersperse "+" ws
+
 prFullFormLexicon :: Morpho -> String
 prFullFormLexicon mo = 
   unlines (map prMorphoAnalysis (fullFormLexicon mo))
@@ -1188,3 +1279,26 @@
   unlines (w:[showCId l ++ " : " ++ p | (l,p) <- lps])
 
 
+-- This function is to be excuted when the command 'tok' is parsed
+execToktok :: PGFEnv -> [Option] -> [Expr] -> IO CommandOutput
+execToktok (pgf, _) opts exprs = do
+  let tokenizers = Map.fromList [ (l, mkTokenizer pgf l) | l <- languages pgf]
+  case getLang opts of
+    Nothing -> do
+      let output = concatMap toStringList [t input | (_,t) <- Map.toList tokenizers]
+      return ([ELit $ LStr o | o <- output],unlines output)
+    Just lang -> case Map.lookup lang tokenizers of
+      Just tok -> do
+        let output = toStringList $ tok input
+        return ([ELit $ LStr o | o <- output],unlines output)
+      Nothing -> return ([],"Unknown language: " ++ show lang)
+  where input = case exprs of
+          [ELit (LStr s)] -> s
+          _ -> ""
+        toStringList :: Maybe [String] -> [String]
+        toStringList Nothing = []
+        toStringList (Just l) = l
+        getLang :: [Option] -> Maybe Language
+        getLang [] = Nothing
+        getLang (OFlag "lang" (VId l):_) = readLanguage l
+        getLang (_:os) = getLang os
diff --git a/src/compiler/GF/Command/Importing.hs b/src/compiler/GF/Command/Importing.hs
--- a/src/compiler/GF/Command/Importing.hs
+++ b/src/compiler/GF/Command/Importing.hs
@@ -30,13 +30,18 @@
     s | elem s [".gf",".gfo"] -> do
       res <- appIOE $ compileToPGF opts files
       case res of
-        Ok pgf2 -> do return $ unionPGF pgf0 pgf2
+        Ok pgf2 -> ioUnionPGF pgf0 pgf2
         Bad msg -> do putStrLn ('\n':'\n':msg)
                       return pgf0
     ".pgf" -> do
       pgf2 <- mapM readPGF files >>= return . foldl1 unionPGF
-      return $ unionPGF pgf0 pgf2
+      ioUnionPGF pgf0 pgf2
     ext -> die $ "Unknown filename extension: " ++ show ext
+
+ioUnionPGF :: PGF -> PGF -> IO PGF
+ioUnionPGF one two = case msgUnionPGF one two of
+  (pgf, Just msg) -> putStrLn msg >> return pgf
+  (pgf,_)         -> return pgf
 
 importSource :: SourceGrammar -> Options -> [FilePath] -> IO SourceGrammar
 importSource src0 opts files = do
diff --git a/src/compiler/GF/Command/TreeOperations.hs b/src/compiler/GF/Command/TreeOperations.hs
--- a/src/compiler/GF/Command/TreeOperations.hs
+++ b/src/compiler/GF/Command/TreeOperations.hs
@@ -16,8 +16,8 @@
 allTreeOps pgf = [
    ("compute",("compute by using semantic definitions (def)",
       Left  $ map (compute pgf))),
-   ("transfer",("syntactic transfer by applying function and computing",
-      Right $ \f -> map (compute pgf . EApp (EFun f)))),
+   ("transfer",("syntactic transfer by applying function, recursively in subtrees",
+      Right $ \f -> map (transfer pgf f))),
    ("paraphrase",("paraphrase by using semantic definitions (def)",
       Left  $ nub . concatMap (paraphrase pgf))),
    ("smallest",("sort trees from smallest to largest, in number of nodes",
@@ -30,3 +30,17 @@
     EAbs _ _ e -> size e + 1
     EApp e1 e2 -> size e1 + size e2 + 1
     _ -> 1
+
+
+--- simple-minded transfer; should use PGF.Expr.match
+
+transfer :: PGF -> CId -> Expr -> Expr
+transfer pgf f e = case transf e of
+  v | v /= appf e -> v
+  _ -> case e of
+    EApp g a -> EApp (transfer pgf f g) (transfer pgf f a)
+    _ -> e
+ where
+  appf = EApp (EFun f)
+  transf = compute pgf . appf
+
diff --git a/src/compiler/GF/Compile.hs b/src/compiler/GF/Compile.hs
--- a/src/compiler/GF/Compile.hs
+++ b/src/compiler/GF/Compile.hs
@@ -69,8 +69,8 @@
 
 -- to compile a set of modules, e.g. an old GF or a .cf file
 compileSourceGrammar :: Options -> SourceGrammar -> IOE SourceGrammar
-compileSourceGrammar opts gr@(MGrammar ms) = do
-  (_,gr',_) <- foldM compOne (0,emptySourceGrammar,Map.empty) ms
+compileSourceGrammar opts gr = do
+  (_,gr',_) <- foldM compOne (0,emptySourceGrammar,Map.empty) (modules gr)
   return gr'
  where
   compOne env mo = do
@@ -139,7 +139,7 @@
     -- for compiled gf, read the file and update environment
     -- also undo common subexp optimization, to enable normal computations
     ".gfo" -> do
-       sm00 <- putPointE Normal opts ("+ reading" +++ file) $ ioeIO (decodeFile file)
+       sm00 <- putPointE Verbose opts ("+ reading" +++ file) $ ioeIO (decodeFile file)
        let sm0 = addOptionsToModule opts sm00
 
        intermOut opts DumpSource (ppModule Qualified sm0)
@@ -215,19 +215,19 @@
 
 -- auxiliaries
 
-reverseModules (MGrammar ms) = MGrammar $ reverse ms
+--reverseModules (MGrammar ms) = MGrammar $ reverse ms
 
 emptyCompileEnv :: CompileEnv
 emptyCompileEnv = (0,emptyMGrammar,Map.empty)
 
-extendCompileEnvInt (_,MGrammar ss,menv) k mfile sm = do
+extendCompileEnvInt (_,gr,menv) k mfile sm = do
   let (mod,imps) = importsOfModule sm
   menv2 <- case mfile of
     Just file -> do
       t <- ioeIO $ getModificationTime file
       return $ Map.insert mod (t,imps) menv
     _ -> return menv
-  return (k,MGrammar (sm:ss),menv2) --- reverse later
+  return (k,prependModule gr sm,menv2) --- reverse later
 
 extendCompileEnv e@(k,_,_) file sm = extendCompileEnvInt e k (Just file) sm
 
diff --git a/src/compiler/GF/Compile/CheckGrammar.hs b/src/compiler/GF/Compile/CheckGrammar.hs
--- a/src/compiler/GF/Compile/CheckGrammar.hs
+++ b/src/compiler/GF/Compile/CheckGrammar.hs
@@ -47,7 +47,7 @@
 checkModule ms m@(name,mo) = checkIn (text "checking module" <+> ppIdent name) $ do
   checkRestrictedInheritance ms m
   m <- case mtype mo of
-         MTConcrete a -> do let gr = MGrammar (m:ms)
+         MTConcrete a -> do let gr = mGrammar (m:ms)
                             abs <- checkErr $ lookupModule gr a
                             checkCompleteGrammar gr (a,abs) m
          _            -> return m
@@ -221,7 +221,7 @@
 
     _ ->  return info
  where
-   gr = MGrammar ((m,mo) : ms)
+   gr = mGrammar ((m,mo) : ms)
    chIn loc cat = checkIn (text "Happened in" <+> text cat <+> ppIdent c <+> ppPosition m loc <> colon)
 
    mkPar (L loc (f,co)) = 
diff --git a/src/compiler/GF/Compile/Coding.hs b/src/compiler/GF/Compile/Coding.hs
--- a/src/compiler/GF/Compile/Coding.hs
+++ b/src/compiler/GF/Compile/Coding.hs
@@ -21,14 +21,19 @@
 codeSourceModule co (id,mo) = (id,replaceJudgements mo (mapTree codj (jments mo)))
  where
     codj (c,info) = case info of
-      ResOper     pty pt  -> ResOper (fmap (codeTerm co) pty) (fmap (codeTerm co) pt) 
-      ResOverload es tyts -> ResOverload es [(codeTerm co ty,codeTerm co t) | (ty,t) <- tyts]
-      CncCat pty pt mpr   -> CncCat pty (fmap (codeTerm co) pt) (fmap (codeTerm co) mpr)
-      CncFun mty pt mpr   -> CncFun mty (fmap (codeTerm co) pt) (fmap (codeTerm co) mpr)
+      ResOper     pty pt  -> ResOper (codeLTerms co pty) (codeLTerms co pt) 
+      ResOverload es tyts -> ResOverload es [(codeLTerm co ty,codeLTerm co t) | (ty,t) <- tyts]
+      CncCat pty pt mpr   -> CncCat pty (codeLTerms co pt) (codeLTerms co mpr)
+      CncFun mty pt mpr   -> CncFun mty (codeLTerms co pt) (codeLTerms co mpr)
       _ -> info
 
-codeTerm :: (String -> String) -> L Term -> L Term
-codeTerm co (L loc t) = L loc (codt t)
+codeLTerms co = fmap (codeLTerm co)
+
+codeLTerm :: (String -> String) -> L Term -> L Term
+codeLTerm = fmap . codeTerm
+
+codeTerm :: (String -> String) -> Term -> Term
+codeTerm co = codt
   where
     codt t = case t of
       K s -> K (co s)
diff --git a/src/compiler/GF/Compile/Compute/AppPredefined.hs b/src/compiler/GF/Compile/Compute/AppPredefined.hs
--- a/src/compiler/GF/Compile/Compute/AppPredefined.hs
+++ b/src/compiler/GF/Compile/Compute/AppPredefined.hs
@@ -26,6 +26,7 @@
 import qualified Data.Map as Map
 import qualified Data.ByteString.Char8 as BS
 import Text.PrettyPrint
+import Data.Char (isUpper,toUpper,toLower)
 
 -- predefined function type signatures and definitions. AR 12/3/2003.
 
@@ -67,6 +68,11 @@
   , (cEqStr    , ResOper (Just (noLoc (mkFunType [typeTok,typeTok] typePBool))) Nothing)
   , (cOccur    , ResOper (Just (noLoc (mkFunType [typeTok,typeTok] typePBool))) Nothing)
   , (cOccurs   , ResOper (Just (noLoc (mkFunType [typeTok,typeTok] typePBool))) Nothing)
+
+  , (cToUpper  , ResOper (Just (noLoc (mkFunType [typeTok] typeTok))) Nothing)
+  , (cToLower  , ResOper (Just (noLoc (mkFunType [typeTok] typeTok))) Nothing)
+  , (cIsUpper  , ResOper (Just (noLoc (mkFunType [typeTok] typePBool))) Nothing)
+
 ----  "read"   -> 
   , (cRead     , ResOper (Just (noLoc (mkProd -- (P : Type) -> Tok -> P
                                          [(Explicit,varP,typePType),(Explicit,identW,typeStr)] (Vr varP) []))) Nothing)
@@ -94,7 +100,11 @@
     -- one-place functions
     Q (mod,f) | mod == cPredef ->
       case x of
-        (K s) | f == cLength -> retb $ EInt $ length s
+        (K s) | f == cLength  -> retb $ EInt $ length s
+        (K s) | f == cIsUpper -> retb $ if (all isUpper s) then predefTrue else predefFalse
+        (K s) | f == cToUpper -> retb $ K $ map toUpper s
+        (K s) | f == cToLower -> retb $ K $ map toLower s
+
         _                    -> retb t
 
     -- two-place functions
diff --git a/src/compiler/GF/Compile/Compute/Concrete.hs b/src/compiler/GF/Compile/Compute/Concrete.hs
--- a/src/compiler/GF/Compile/Compute/Concrete.hs
+++ b/src/compiler/GF/Compile/Compute/Concrete.hs
@@ -1,468 +1,7 @@
-----------------------------------------------------------------------
--- |
--- Module      : GF.Compile.Concrete.Compute
--- Maintainer  : AR
--- Stability   : (stable)
--- Portability : (portable)
---
--- > CVS $Date: 2005/11/01 15:39:12 $ 
--- > CVS $Author: aarne $
--- > CVS $Revision: 1.19 $
---
--- Computation of source terms. Used in compilation and in @cc@ command.
------------------------------------------------------------------------------
-
-module GF.Compile.Compute.Concrete (computeConcrete, computeTerm,computeConcreteRec) where
-
-import GF.Data.Operations
-import GF.Grammar.Grammar
-import GF.Infra.Ident
-import GF.Infra.Option
-import GF.Infra.Modules
-import GF.Data.Str
-import GF.Grammar.Printer
-import GF.Grammar.Predef
-import GF.Grammar.Macros
-import GF.Grammar.Lookup
-import GF.Compile.Refresh
-import GF.Grammar.PatternMatch
-import GF.Grammar.Lockfield (isLockLabel,unlockRecord) ----
-
-import GF.Compile.Compute.AppPredefined
-
-import Data.List (nub,intersperse)
-import Control.Monad (liftM2, liftM)
-import Text.PrettyPrint
-
--- | computation of concrete syntax terms into normal form
--- used mainly for partial evaluation
-computeConcrete :: SourceGrammar -> Term -> Err Term
-computeConcrete    g t = {- refreshTerm t >>= -} computeTerm g [] t
-computeConcreteRec g t = {- refreshTerm t >>= -} computeTermOpt True g [] t
-
-computeTerm :: SourceGrammar -> Substitution -> Term -> Err Term
-computeTerm = computeTermOpt False
-
--- rec=True is used if it cannot be assumed that looked-up constants
--- have already been computed (mainly with -optimize=noexpand in .gfr)
-
-computeTermOpt :: Bool -> SourceGrammar -> Substitution -> Term -> Err Term
-computeTermOpt rec gr = comput True where
-
-   comput full g t = ---- errIn ("subterm" +++ prt t) $ --- for debugging 
-              case t of
-
-     Q (p,c) | p == cPredef -> return t
-             | otherwise    -> look (p,c) 
-
-     Vr x -> do
-       t' <- maybe (Bad (render (text "no value given to variable" <+> ppIdent x))) return $ lookup x g
-       case t' of 
-         _ | t == t' -> return t
-         _ -> comp g t'
-
-     -- Abs x@(IA _) b -> do 
-     Abs _ _ _ | full -> do 
-       let (xs,b1) = termFormCnc t   
-       b' <- comp ([(x,Vr x) | (_,x) <- xs] ++ g) b1
-       return $ mkAbs xs b'
-     --  b' <- comp (ext x (Vr x) g) b
-     --  return $ Abs x b'
-     Abs _ _ _ -> return t -- hnf
-
-     Let (x,(_,a)) b -> do
-       a' <- comp g a
-       comp (ext x a' g) b
-
-     Prod b x a t -> do
-       a' <- comp g a
-       t' <- comp (ext x (Vr x) g) t
-       return $ Prod b x a' t'
-
-     -- beta-convert
-     App f a -> case appForm t of
-      (h,as) | length as > 1 -> do
-        h' <- hnf g h
-        as' <- mapM (comp g) as
-        case h' of
-          _ | not (null [() | FV _ <- as']) -> compApp g (mkApp h' as')
-          c@(QC _) -> do
-            return $ mkApp c as'
-          Q (mod,f) | mod == cPredef -> do     
-            (t',b) <- appPredefined (mkApp h' as')
-            if b then return t' else comp g t'
-
-          Abs _ _ _ -> do
-            let (xs,b) = termFormCnc h'
-            let g' = (zip (map snd xs) as') ++ g
-            let as2 = drop (length xs) as'
-            let xs2 = drop (length as') xs
-            b' <- comp g' (mkAbs xs2 b)
-            if null as2 then return b' else comp g (mkApp b' as2)
-
-          _ -> compApp g (mkApp h' as')
-      _ -> compApp g t
-
-     P t l | isLockLabel l -> return $ R [] 
-     ---- a workaround 18/2/2005: take this away and find the reason
-     ---- why earlier compilation destroys the lock field
-
-
-     P t l  -> do
-       t' <- comp g t
-       case t' of
-         FV rs -> mapM (\c -> comp g (P c l)) rs >>= returnC . variants
-         R r   -> maybe (Bad (render (text "no value for label" <+> ppLabel l))) (comp g . snd) $ 
-                    lookup l $ reverse r 
-
-         ExtR a (R b) ->                 
-           case comp g (P (R b) l) of
-             Ok v -> return v
-             _ -> comp g (P a l)
-
---- { - --- this is incorrect, since b can contain the proper value
-         ExtR (R a) b ->                 -- NOT POSSIBLE both a and b records!
-           case comp g (P (R a) l) of
-             Ok v -> return v
-             _ -> comp g (P b l)
---- - } ---
-
-         S (T i cs) e -> prawitz g i (flip P l) cs e
-         S (V i cs) e -> prawitzV g i (flip P l) cs e
-
-         _   -> returnC $ P t' l
-
-     S t v -> do
-       t' <- compTable g t
-       v' <- comp g v
-       t1 <- case t' of
-----           V (RecType fs) _         -> uncurrySelect g fs t' v'
-----           T (TComp (RecType fs)) _ -> uncurrySelect g fs t' v'
-           _ -> return $ S t' v'
-       compSelect g t1
-
-     -- normalize away empty tokens
-     K "" -> return Empty
-
-     -- glue if you can
-     Glue x0 y0 -> do
-       x <- comp g x0
-       y <- comp g y0
-       case (x,y) of
-         (FV ks,_)         -> do
-           kys <- mapM (comp g . flip Glue y) ks
-           return $ variants kys
-         (_,FV ks)         -> do
-           xks <- mapM (comp g . Glue x) ks
-           return $ variants xks
-
-         (S (T i cs) e, s) -> prawitz g i (flip Glue s) cs e
-         (s, S (T i cs) e) -> prawitz g i (Glue s) cs e
-         (S (V i cs) e, s) -> prawitzV g i (flip Glue s) cs e
-         (s, S (V i cs) e) -> prawitzV g i (Glue s) cs e
-         (_,Empty)         -> return x
-         (Empty,_)         -> return y
-         (K a, K b)        -> return $ K (a ++ b)
-         (_, Alts d vs)    -> do
-----         (K a, Alts (d,vs)) -> do
-            let glx = Glue x
-            comp g $ Alts (glx d) [(glx v,c) | (v,c) <- vs]
-         (Alts _ _, ka) -> checks [do
-            y' <- strsFromTerm ka
-----         (Alts _, K a) -> checks [do
-            x' <- strsFromTerm x -- this may fail when compiling opers
-            return $ variants [
-              foldr1 C (map K (str2strings (glueStr v u))) | v <- x', u <- y']
-----              foldr1 C (map K (str2strings (glueStr v (str a)))) | v <- x']
-           ,return $ Glue x y
-           ]
-         (C u v,_) -> comp g $ C u (Glue v y)
-
-         _ -> do
-           mapM_ checkNoArgVars [x,y]
-           r <- composOp (comp g) t
-           returnC r
-
-     Alts d aa -> do
-       d' <- comp g d
-       aa' <- mapM (compInAlts g) aa
-       returnC (Alts d' aa')
-
-     -- remove empty
-     C a b    -> do
-       a' <- comp g a
-       b' <- comp g b
-       case (a',b') of
-         (Alts _ _, K d) -> checks [do
-            as <- strsFromTerm a' -- this may fail when compiling opers
-            return $ variants [
-              foldr1 C (map K (str2strings (plusStr v (str d)))) | v <- as]
-            ,
-            return $ C a' b'
-           ]
-         (Alts _ _, C (K d) e) -> checks [do
-            as <- strsFromTerm a' -- this may fail when compiling opers
-            return $ C (variants [
-              foldr1 C (map K (str2strings (plusStr v (str d)))) | v <- as]) e
-            ,
-            return $ C a' b'
-           ]
-         (Empty,_) -> returnC b'
-         (_,Empty) -> returnC a'
-         _     -> returnC $ C a' b'
-
-     -- reduce free variation as much as you can
-     FV ts -> mapM (comp g) ts >>= returnC . variants
-
-     -- merge record extensions if you can
-     ExtR r s -> do
-       r' <- comp g r
-       s' <- comp g s
-       case (r',s') of
-         (R rs, R ss) -> plusRecord r' s'
-         (RecType rs, RecType ss) -> plusRecType r' s'
-         _ -> return $ ExtR r' s'
-
-     ELin c r -> do
-       r' <- comp g r
-       unlockRecord c r'
-
-     T _ _ -> compTable g t
-     V _ _ -> compTable g t
-
-     -- otherwise go ahead
-     _ -> composOp (comp g) t >>= returnC
-
-    where
-
-     compApp g (App f a) = do
-       f' <- hnf g f
-       a' <- comp g a
-       case (f',a') of
-         (Abs _ x b, FV as) -> 
-           mapM (\c -> comp (ext x c g) b) as >>= return . variants
-         (_, FV as)  -> mapM (\c -> comp g (App f' c)) as >>= return . variants
-         (FV fs, _)  -> mapM (\c -> comp g (App c a')) fs >>= return . variants
-         (Abs _ x b,_) -> comp (ext x a' g) b
-
-         (QC _,_)  -> returnC $ App f' a'
-
-         (S (T i cs) e,_) -> prawitz g i (flip App a') cs e
-         (S (V i cs) e,_) -> prawitzV g i (flip App a') cs e
-
-	 _ -> do
-           (t',b) <- appPredefined (App f' a')
-           if b then return t' else comp g t'
-
-     hnf  = comput False
-     comp = comput True
-
-     look c
-       | rec       = lookupResDef gr c >>= comp []
-       | otherwise = lookupResDef gr c
-
-     ext x a g = (x,a):g
-
-     returnC = return --- . computed
-
-     variants ts = case nub ts of
-       [t] -> t
-       ts  -> FV ts
-
-     isCan v = case v of
-       Con _    -> True
-       QC _     -> True
-       App f a  -> isCan f && isCan a
-       R rs     -> all (isCan . snd . snd) rs
-       _        -> False
-
-     compPatternMacro p = case p of
-       PM c -> case look c of
-         Ok (EPatt p') -> compPatternMacro p'
-         _ -> Bad (render (text "pattern expected as value of" $$ nest 2 (ppPatt Unqualified 0 p)))
-       PAs x p -> do
-         p' <- compPatternMacro p
-         return $ PAs x p'
-       PAlt p q -> do
-         p' <- compPatternMacro p
-         q' <- compPatternMacro q
-         return $ PAlt p' q'
-       PSeq p q -> do
-         p' <- compPatternMacro p
-         q' <- compPatternMacro q
-         return $ PSeq p' q'
-       PRep p -> do
-         p' <- compPatternMacro p
-         return $ PRep p'
-       PNeg p -> do
-         p' <- compPatternMacro p
-         return $ PNeg p'
-       PR rs -> do
-         rs' <- mapPairsM compPatternMacro rs
-         return $ PR rs'
-
-       _ -> return p
-
-     compSelect g (S t' v') = case v' of
-       FV vs -> mapM (\c -> comp g (S t' c)) vs >>= returnC . variants    
-
-----       S (T i cs) e -> prawitz g i (S t') cs e  -- AR 8/7/2010 sometimes better
-----       S (V i cs) e -> prawitzV g i (S t') cs e -- sometimes much worse 
-
-    
-       _ -> case t' of
-         FV ccs -> mapM (\c -> comp g (S c v')) ccs >>= returnC . variants
-
-         T _ [(PW,c)] -> comp g c           --- an optimization
-         T _ [(PT _ PW,c)] -> comp g c
-
-         T _ [(PV z,c)] -> comp (ext z v' g) c --- another optimization
-         T _ [(PT _ (PV z),c)] -> comp (ext z v' g) c
-
-         -- course-of-values table: look up by index, no pattern matching needed
-
-         V ptyp ts -> do
-             vs <- allParamValues gr ptyp
-             case lookupR v' (zip vs [0 .. length vs - 1]) of
-               Just i -> comp g $ ts !! i
-               _ -> return $ S t' v' -- if v' is not canonical
-         T _ cc -> do
-           case matchPattern cc v' of
-             Ok (c,g') -> comp (g' ++ g) c
-             _ | isCan v' -> Bad (render (text "missing case" <+> ppTerm Unqualified 0 v' <+> text "in" <+> ppTerm Unqualified 0 t))
-             _ -> return $ S t' v' -- if v' is not canonical
-
-         S (T i cs) e -> prawitz g i (flip S v') cs e
-         S (V i cs) e -> prawitzV g i (flip S v') cs e
-         _    -> returnC $ S t' v'
-
-     --- needed to match records with and without type information
-     ---- todo: eliminate linear search in a list of records!
-     lookupR v vs = case v of
-       R rs -> lookup ([(x,y) | (x,(_,y)) <- rs]) 
-                                [([(x,y) | (x,(_,y)) <- rs],v) | (R rs,v) <- vs]
-       _ -> lookup v vs
-
-     -- case-expand tables
-     -- if already expanded, don't expand again
-     compTable g t = case t of
-         T i@(TComp ty) cs -> do
-           -- if there are no variables, don't even go inside
-           cs' <- if (null g) then return cs else mapPairsM (comp g) cs
-----           return $ V ty (map snd cs')
-           return $ T i cs'
-         V ty cs -> do
-           ty' <- comp g ty
-           -- if there are no variables, don't even go inside
-           cs' <- if (null g) then return cs else mapM (comp g) cs
-           return $ V ty' cs'
-
-         T i cs -> do
-           pty0 <- getTableType i
-           ptyp <- comp g pty0
-           case allParamValues gr ptyp of
-             Ok vs0 -> do
-               let vs = vs0 ---- [Val v ptyp i | (v,i) <- zip vs0 [0..]]
-               ps0  <- mapM (compPatternMacro . fst) cs
-               cs'  <- mapM (compBranchOpt g) (zip ps0 (map snd cs))
-               sts  <- mapM (matchPattern cs') vs 
-               ts   <- mapM (\ (c,g') -> comp (g' ++ g) c) sts
-               ps   <- mapM term2patt vs
-               let ps' = ps --- PT ptyp (head ps) : tail ps
-----               return $ V ptyp ts -- to save space, just course of values
-               return $ T (TComp ptyp) (zip ps' ts)
-             _ -> do
-               ps0  <- mapM (compPatternMacro . fst) cs
-               cs'  <- mapM (compBranch g) (zip ps0 (map snd cs))
-
-----               cs' <- mapM (compBranch g) cs
-               return $ T i cs'  -- happens with variable types
-         _ -> comp g t
-
-     compBranch g (p,v) = do
-       let g' = contP p ++ g
-       v' <- comp g' v
-       return (p,v')
-
-     compBranchOpt g c@(p,v) = case contP p of
-       [] -> return c
-       _ -> err (const (return c)) return $ compBranch g c
-
-     contP p = case p of
-       PV x -> [(x,Vr x)]
-       PC _ ps -> concatMap contP ps
-       PP _ ps -> concatMap contP ps
-       PT _ p -> contP p
-       PR rs -> concatMap (contP . snd) rs
-
-       PAs x p -> (x,Vr x) : contP p
-
-       PSeq p q -> concatMap contP [p,q]
-       PAlt p q -> concatMap contP [p,q]
-       PRep p   -> contP p
-       PNeg p   -> contP p
-
-       _ -> []
-
-     prawitz g i f cs e = do
-       cs' <- mapM (compBranch g) [(p, f v) | (p,v) <- cs]
-       return $ S (T i cs') e
-     prawitzV g i f cs e = do
-       cs' <- mapM (comp g) [(f v) | v <- cs]
-       return $ S (V i cs') e
-
-     compInAlts g (v,c) = do
-       v' <- comp g v
-       c' <- comp g c
-       c2 <- case c' of
-         EPatt p -> liftM Strs $ getPatts p
-         _ -> return c'
-       return (v',c2)
-      where
-       getPatts p = case p of
-         PAlt a b  -> liftM2 (++) (getPatts a) (getPatts b)
-         PString s -> return [K s]
-         PSeq a b  -> do
-           as <- getPatts a
-           bs <- getPatts b
-           return [K (s ++ t) | K s <- as, K t <- bs]
-         _ -> fail (render (text "not valid pattern in pre expression" <+> ppPatt Unqualified 0 p))
-
-{- ----
-     uncurrySelect g fs t v = do
-       ts <- mapM (allParamValues gr . snd) fs
-       vs <- mapM (comp g) [P v r | r <- map fst fs]
-       return $ reorderSelect t fs ts vs
-
-     reorderSelect t fs pss vs = case (t,fs,pss,vs) of
-       (V _ ts, f:fs1, ps:pss1, v:vs1) -> 
-         S (V (snd f) 
-             [reorderSelect (V (RecType fs1) t) fs1 pss1 vs1 | 
-               t <- segments (length ts `div` length ps) ts]) v 
-       (T (TComp _) cs, f:fs1, ps:pss1, v:vs1) -> 
-         S (T (TComp (snd f)) 
-             [(p,reorderSelect (T (TComp (RecType fs1)) c) fs1 pss1 vs1) | 
-               (ep,c) <- zip ps (segments (length cs `div` length ps) cs),
-               let Ok p = term2patt ep]) v 
-       _ -> t
-
-     segments i xs = 
-       let (x0,xs1) = splitAt i xs in x0 : takeWhile (not . null) (segments i xs1)
--}
-
-
--- | argument variables cannot be glued
-checkNoArgVars :: Term -> Err Term
-checkNoArgVars t = case t of
-  Vr (IA _ _)    -> Bad $ glueErrorMsg $ ppTerm Unqualified 0 t 
-  Vr (IAV _ _ _) -> Bad $ glueErrorMsg $ ppTerm Unqualified 0 t 
-  _ -> composOp checkNoArgVars t
-
-glueErrorMsg s = 
-  render (text "Cannot glue (+) term with run-time variable" <+> s <> char '.' $$
-          text "Use Prelude.bind instead.")
-
-getArgType t = case t of
-  V ty _ -> return ty
-  T (TComp ty) _ -> return ty
-  _ -> Bad (render (text "cannot get argument type of table" $$ nest 2 (ppTerm Unqualified 0 t)))
+{-# LANGUAGE CPP #-}
+module GF.Compile.Compute.Concrete(module M) where
+#ifdef CC_LAZY
+import GF.Compile.Compute.ConcreteLazy as M -- New, experimental
+#else
+import GF.Compile.Compute.ConcreteStrict as M -- Old, trusted
+#endif
diff --git a/src/compiler/GF/Compile/Compute/ConcreteLazy.hs b/src/compiler/GF/Compile/Compute/ConcreteLazy.hs
new file mode 100644
--- /dev/null
+++ b/src/compiler/GF/Compile/Compute/ConcreteLazy.hs
@@ -0,0 +1,497 @@
+----------------------------------------------------------------------
+-- |
+-- Module      : GF.Compile.Concrete.Compute
+-- Maintainer  : AR
+-- Stability   : (stable)
+-- Portability : (portable)
+--
+-- > CVS $Date: 2005/11/01 15:39:12 $ 
+-- > CVS $Author: aarne $
+-- > CVS $Revision: 1.19 $
+--
+-- Computation of source terms. Used in compilation and in @cc@ command.
+-----------------------------------------------------------------------------
+
+module GF.Compile.Compute.ConcreteLazy (computeConcrete, computeTerm,checkPredefError) where
+
+import GF.Data.Operations
+import GF.Grammar.Grammar
+import GF.Infra.Ident
+import GF.Infra.Option
+import GF.Infra.Modules
+import GF.Data.Str
+import GF.Grammar.ShowTerm
+import GF.Grammar.Printer
+import GF.Grammar.Predef
+import GF.Grammar.Macros
+import GF.Grammar.Lookup
+import GF.Compile.Refresh
+import GF.Grammar.PatternMatch
+import GF.Grammar.Lockfield (isLockLabel,unlockRecord) ----
+
+import GF.Compile.Compute.AppPredefined
+
+import Data.List (nub,intersperse)
+import Control.Monad (liftM2, liftM)
+import Control.Monad.Identity
+import Text.PrettyPrint
+
+----import Debug.Trace
+
+--type Comp a = Err a -- makes computations (hyper)strict
+--errr = id
+
+type Comp a = Identity a -- inherit Haskell's laziness
+errr = err runtime_error return -- convert interpreter error to run-time error
+no_error = err fail return -- failure caused by interpreter/type checker bug (?)
+runtime_error = return . predef_error -- run-time error term
+
+-- | computation of concrete syntax terms into normal form
+-- used mainly for partial evaluation
+computeConcrete :: SourceGrammar -> Term -> Err Term
+computeConcrete    g t = {- refreshTerm t >>= -} computeTerm g [] t
+
+computeTerm :: SourceGrammar -> Substitution -> Term -> Err Term
+computeTerm gr g = return . runIdentity . computeTermOpt gr g
+
+computeTermOpt :: SourceGrammar -> Substitution -> Term -> Comp Term
+computeTermOpt gr = comput True where
+
+   -- full = True means full evaluation under Abs
+   comput full g t = ---- errIn ("subterm" +++ prt t) $ --- for debugging 
+              case t of
+
+     Q (p,c) | p == cPredef -> return t    -- qualified constant
+             | otherwise    -> look (p,c) 
+
+     Vr x -> do  -- local variable
+       t' <- maybe (fail (render (text "no value given to variable" <+> ppIdent x))) 
+             return $ lookup x g
+       case t' of 
+         _ | t == t' -> return t
+         _ -> comp g t' --- why compute again? AR 25/8/2011
+
+     -- Abs x@(IA _) b -> do 
+     Abs _ _ _ | full -> do   -- \xs -> b
+       let (xs,b1) = termFormCnc t   
+       b' <- comp ([(x,Vr x) | (_,x) <- xs] ++ g) b1
+       return $ mkAbs xs b'
+     --  b' <- comp (ext x (Vr x) g) b
+     --  return $ Abs x b'
+     Abs _ _ _ -> return t -- hnf
+
+     Let (x,(ty,a)) b -> do  -- let x : ty = a in b
+       a' <- comp g a
+       comp (ext x a' g) b
+
+{- -- trying to prevent Let expansion with non-evaluated exps. AR 19/8/2011
+     Let (x,(ty,a)) b -> do
+       a' <- comp g a
+       let ea' = checkNoArgVars a'
+       case ea' of
+         Ok v -> comp (ext x v g) b
+         _ -> return $ Let (x,(ty,a')) b
+-}
+
+     Prod b x a t -> do  -- (x : a) -> t ; b for hiding
+       a' <- comp g a
+       t' <- comp (ext x (Vr x) g) t
+       return $ Prod b x a' t'
+
+     -- beta-convert: simultaneous for as many arguments as possible
+     App f a -> case appForm t of   -- (f a) --> (h as)
+      (h,as) | length as > 1 -> do
+        h' <- hnf g h
+        as' <- mapM (comp g) as
+        case h' of
+          _ | not (null [() | FV _ <- as']) -> compApp g (mkApp h' as')
+          c@(QC _) -> do
+            return $ mkApp c as'
+          Q (mod,f) | mod == cPredef ->
+            case appPredefined (mkApp h' as') of
+              Ok (t',b) -> if b then return t' else comp g t'
+              Bad s -> runtime_error s
+
+          Abs _ _ _ -> do
+            let (xs,b) = termFormCnc h'
+            let g' = (zip (map snd xs) as') ++ g
+            let as2 = drop (length xs) as'
+            let xs2 = drop (length as') xs
+            b' <- comp g' (mkAbs xs2 b)
+            if null as2 then return b' else comp g (mkApp b' as2)
+
+          _ -> compApp g (mkApp h' as')
+      _ -> compApp g t
+
+     P t l | isLockLabel l -> return $ R []  -- t.lock_C
+     ---- a workaround 18/2/2005: take this away and find the reason
+     ---- why earlier compilation destroys the lock field
+
+
+     P t l  -> do     -- t.l
+       t' <- comp g t
+       case t' of
+         FV rs -> mapM (\c -> comp g (P c l)) rs >>= returnC . variants -- (r| r').l
+         R r   -> project l r --{...}.l
+
+         ExtR a (R b) ->    -- (a ** {...}).l             
+           maybe (comp g (P a l)) (comp g) (try_project l b)
+
+--- { - --- this is incorrect, since b can contain the proper value
+         ExtR (R a) b ->                 -- NOT POSSIBLE both a and b records!
+           maybe (comp g (P b l)) (comp g) (try_project l a)
+--- - } ---
+
+         S (T i cs) e -> prawitz  g i (flip P l) cs e  -- ((table i branches) ! e).l
+         S (V i cs) e -> prawitzV g i (flip P l) cs e  -- ((table i values) ! e).l
+
+         _   -> returnC $ P t' l
+
+     S t v -> do         -- t ! v
+       t' <- compTable g t
+       v' <- comp g v
+       t1 <- case t' of
+----           V (RecType fs) _         -> uncurrySelect g fs t' v'
+----           T (TComp (RecType fs)) _ -> uncurrySelect g fs t' v'
+           _ -> return $ S t' v'
+       compSelect g t1
+
+     -- normalize away empty tokens
+     K "" -> return Empty  -- []
+
+     -- glue if you can
+     Glue x0 y0 -> do  -- x0 + y0
+       x <- comp g x0
+       y <- comp g y0
+       case (x,y) of
+         (FV ks,_)         -> do                               -- (k|k') + y
+           kys <- mapM (comp g . flip Glue y) ks
+           return $ variants kys
+         (_,FV ks)         -> do                               -- x + (k|k')
+           xks <- mapM (comp g . Glue x) ks
+           return $ variants xks
+
+         (S (T i cs) e, s) -> prawitz g i (flip Glue s) cs e   -- (table cs ! e) + s
+         (s, S (T i cs) e) -> prawitz g i (Glue s) cs e        -- s + (table cs ! e)
+         (S (V i cs) e, s) -> prawitzV g i (flip Glue s) cs e  -- same with values
+         (s, S (V i cs) e) -> prawitzV g i (Glue s) cs e
+         (_,Empty)         -> return x                         -- x + []
+         (Empty,_)         -> return y
+         (K a, K b)        -> return $ K (a ++ b)              -- "foo" + "bar"
+         (_, Alts d vs)    -> do                               -- x + pre {...}
+----         (K a, Alts (d,vs)) -> do
+            let glx = Glue x
+            comp g $ Alts (glx d) [(glx v,c) | (v,c) <- vs]
+         (Alts _ _, ka) -> errr $ checks [do                          -- pre {...} + ka
+            y' <- strsFromTerm ka
+----         (Alts _, K a) -> checks [do
+            x' <- strsFromTerm x -- this may fail when compiling opers
+            return $ variants [
+              foldr1 C (map K (str2strings (glueStr v u))) | v <- x', u <- y']
+----              foldr1 C (map K (str2strings (glueStr v (str a)))) | v <- x']
+           ,return $ Glue x y
+           ]
+         (C u v,_) -> comp g $ C u (Glue v y)  -- (u ++ v) + y
+
+         _ -> do
+           mapM_ checkNoArgVars [x,y]
+           r <- composOp (comp g) t
+           returnC r
+
+     Alts d aa -> do   -- pre {...}
+       d' <- comp g d
+       aa' <- mapM (compInAlts g) aa
+       returnC (Alts d' aa')
+
+     -- remove empty
+     C a b    -> do    -- a ++ b
+       a' <- comp g a
+       b' <- comp g b
+       case (a',b') of
+         (Alts _ _, K d) -> errr $ checks [do                      -- pre {...} ++ "d"
+            as <- strsFromTerm a' -- this may fail when compiling opers
+            return $ variants [
+              foldr1 C (map K (str2strings (plusStr v (str d)))) | v <- as]
+            ,
+            return $ C a' b'
+           ]
+         (Alts _ _, C (K d) e) -> errr $ checks [do                -- pre {...} ++ ("d" ++ e)
+            as <- strsFromTerm a' -- this may fail when compiling opers
+            return $ C (variants [
+              foldr1 C (map K (str2strings (plusStr v (str d)))) | v <- as]) e
+            ,
+            return $ C a' b'
+           ]
+         (Empty,_) -> returnC b'        -- [] ++ b'
+         (_,Empty) -> returnC a'        -- a' ++ []
+         _     -> returnC $ C a' b'
+
+     -- reduce free variation as much as you can
+     FV ts -> mapM (comp g) ts >>= returnC . variants   -- variants {...}
+
+     -- merge record extensions if you can
+     ExtR r s -> do                                     -- r ** s
+       r' <- comp g r
+       s' <- comp g s
+       case (r',s') of
+         (R rs, R ss) -> errr $ plusRecord r' s'
+         (RecType rs, RecType ss) -> errr $ plusRecType r' s'
+         _ -> return $ ExtR r' s'
+
+     ELin c r -> do                                     -- lin c r
+       r' <- comp g r
+       unlockRecord c r'
+
+     T _ _ -> compTable g t         -- table { ... p => t ... }
+     V _ _ -> compTable g t         -- table [ ... v ... ]
+
+     -- otherwise go ahead
+     _ -> composOp (comp g) t >>= returnC
+
+    where
+     --{...}.l
+     project l = maybe (fail_project l) (comp g) . try_project l
+     try_project l = fmap snd . lookup l . reverse
+     fail_project l = fail (render (text "no value for label" <+> ppLabel l))
+
+     compApp g (App f a) = do    -- (f a)
+       f' <- hnf g f
+       a' <- comp g a
+       case (f',a') of
+         (Abs _ x b, FV as) ->   -- (\x -> b) (variants {...})
+           mapM (\c -> comp (ext x c g) b) as >>= return . variants
+         (_, FV as)  -> mapM (\c -> comp g (App f' c)) as >>= return . variants
+         (FV fs, _)  -> mapM (\c -> comp g (App c a')) fs >>= return . variants
+         (Abs _ x b,_) -> comp (ext x a' g) b  -- (\x -> b) a -- normal beta conv.
+
+         (QC _,_)  -> returnC $ App f' a'  -- (C a') -- constructor application
+
+         (S (T i cs) e,_) -> prawitz g i (flip App a') cs e  -- (table cs ! e) a'
+         (S (V i cs) e,_) -> prawitzV g i (flip App a') cs e
+
+	 _ -> case appPredefined (App f' a') of
+                Ok (t',b) -> if b then return t' else comp g t'
+                Bad s -> fail s
+
+     hnf, comp :: Substitution -> Term -> Comp Term
+     hnf  = comput False
+     comp = comput True
+
+     look c = errr (lookupResDef gr c)
+
+     ext x a g = (x,a):g  -- extend environment with new variable and its value
+
+     returnC = return --- . computed
+
+     variants ts = case nub ts of
+       [t] -> t
+       ts  -> FV ts
+
+     isCan v = case v of    -- is canonical (and should be matched by a pattern)
+       Con _    -> True
+       QC _     -> True
+       App f a  -> isCan f && isCan a
+       R rs     -> all (isCan . snd . snd) rs
+       _        -> False
+
+     compPatternMacro p = case p of
+       PM c -> case look c of
+         Identity (EPatt p') -> compPatternMacro p'
+      -- _ -> fail (render (text "pattern expected as value of" $$ nest 2 (ppPatt Unqualified 0 p)))
+       PAs x p -> do
+         p' <- compPatternMacro p
+         return $ PAs x p'
+       PAlt p q -> do
+         p' <- compPatternMacro p
+         q' <- compPatternMacro q
+         return $ PAlt p' q'
+       PSeq p q -> do
+         p' <- compPatternMacro p
+         q' <- compPatternMacro q
+         return $ PSeq p' q'
+       PRep p -> do
+         p' <- compPatternMacro p
+         return $ PRep p'
+       PNeg p -> do
+         p' <- compPatternMacro p
+         return $ PNeg p'
+       PR rs -> do
+         rs' <- mapPairsM compPatternMacro rs
+         return $ PR rs'
+
+       _ -> return p
+
+     compSelect g (S t' v') = case v' of  -- t' ! v'
+       FV vs -> mapM (\c -> comp g (S t' c)) vs >>= returnC . variants    
+
+----       S (T i cs) e -> prawitz g i (S t') cs e  -- AR 8/7/2010 sometimes better
+----       S (V i cs) e -> prawitzV g i (S t') cs e -- sometimes much worse 
+
+    
+       _ -> case t' of
+         FV ccs -> mapM (\c -> comp g (S c v')) ccs >>= returnC . variants
+
+         T _ [(PW,c)] -> comp g c           -- (\\_ => c) ! v'
+         T _ [(PT _ PW,c)] -> comp g c      -- (\\(_ : typ) => c) ! v'
+
+         T _ [(PV z,c)] -> comp (ext z v' g) c        -- (\\z => c) ! v'
+         T _ [(PT _ (PV z),c)] -> comp (ext z v' g) c
+
+         -- course-of-values table: look up by index, no pattern matching needed
+
+         V ptyp ts -> do                      -- (table [...ts...]) ! v'
+             vs <- no_error $ allParamValues gr ptyp
+             case lookupR v' (zip vs [0 .. length vs - 1]) of
+               Just i -> comp g $ ts !! i
+               _ -> return $ S t' v' -- if v' is not canonical
+         T _ cc -> do                         -- (table {...cc...}) ! v'
+           case matchPattern cc v' of
+             Ok (c,g') -> comp (g' ++ g) c
+             _ | isCan v' -> fail (render (text "missing case" <+> ppTerm Unqualified 0 v' <+> text "in" <+> ppTerm Unqualified 0 t))
+             _ -> return $ S t' v' -- if v' is not canonical
+
+         S (T i cs) e -> prawitz g i (flip S v') cs e  -- (table {...cs...} ! e) ! v'
+         S (V i cs) e -> prawitzV g i (flip S v') cs e
+         _    -> returnC $ S t' v'
+
+     --- needed to match records with and without type information
+     ---- todo: eliminate linear search in a list of records!
+     lookupR v vs = case v of
+       R rs -> lookup ([(x,y) | (x,(_,y)) <- rs]) 
+                                [([(x,y) | (x,(_,y)) <- rs],v) | (R rs,v) <- vs]
+       _ -> lookup v vs
+
+     -- case-expand tables: branches for every value of argument type
+     -- if already expanded, don't expand again
+     compTable g t = case t of
+         T i@(TComp ty) cs -> do
+           -- if there are no variables, don't even go inside
+           cs' <- if (null g) then return cs else mapPairsM (comp g) cs
+----           return $ V ty (map snd cs')
+           return $ T i cs'
+         V ty cs -> do
+           ty' <- comp g ty
+           -- if there are no variables, don't even go inside
+           cs' <- if (null g) then return cs else mapM (comp g) cs
+           return $ V ty' cs'
+
+         T i cs -> do
+           pty0 <- errr $ getTableType i
+           ptyp <- comp g pty0
+           case allParamValues gr ptyp of
+             Ok vs0 -> do
+               let vs = vs0 ---- [Val v ptyp i | (v,i) <- zip vs0 [0..]]
+               ps0  <- mapM (compPatternMacro . fst) cs
+               cs'  <- mapM (compBranchOpt g) (zip ps0 (map snd cs))
+               sts  <- no_error $ mapM (matchPattern cs') vs 
+               ts   <- mapM (\ (c,g') -> comp (g' ++ g) c) sts
+               ps   <- no_error $ mapM term2patt vs
+               let ps' = ps --- PT ptyp (head ps) : tail ps
+----               return $ V ptyp ts -- to save space, just course of values
+               return $ T (TComp ptyp) (zip ps' ts)
+             _ -> do
+               ps0  <- mapM (compPatternMacro . fst) cs
+
+               cs'  <- mapM (compBranch g) (zip ps0 (map snd cs))
+-----               cs'  <- return (zip ps0 (map snd cs)) --- probably right AR 22/8/2011 but can leave uninstantiated variables :-(
+
+----               cs' <- mapM (compBranch g) cs
+               return $ T i cs'  -- happens with variable types
+         _ -> comp g t
+
+     compBranch g (p,v) = do  -- compute a branch in a table
+       let g' = contP p ++ g  -- add the pattern's variables to environment
+       v' <- comp g' v
+       return (p,v')
+
+     compBranchOpt g c@(p,v) = case contP p of
+       [] -> return c
+       _ -> {-err (const (return c)) return $-} compBranch g c
+
+     -- collect the context of variables of a pattern
+     contP p = case p of
+       PV x -> [(x,Vr x)]
+       PC _ ps -> concatMap contP ps
+       PP _ ps -> concatMap contP ps
+       PT _ p -> contP p
+       PR rs -> concatMap (contP . snd) rs
+
+       PAs x p -> (x,Vr x) : contP p
+
+       PSeq p q -> concatMap contP [p,q]
+       PAlt p q -> concatMap contP [p,q]
+       PRep p   -> contP p
+       PNeg p   -> contP p
+
+       _ -> []
+
+     prawitz g i f cs e = do
+       cs' <- mapM (compBranch g) [(p, f v) | (p,v) <- cs]
+       return $ S (T i cs') e
+     prawitzV g i f cs e = do
+       cs' <- mapM (comp g) [(f v) | v <- cs]
+       return $ S (V i cs') e
+
+     compInAlts g (v,c) = do
+       v' <- comp g v
+       c' <- comp g c
+       c2 <- case c' of
+         EPatt p -> liftM Strs $ getPatts p
+         _ -> return c'
+       return (v',c2)
+      where
+       getPatts p = case p of
+         PAlt a b  -> liftM2 (++) (getPatts a) (getPatts b)
+         PString s -> return [K s]
+         PSeq a b  -> do
+           as <- getPatts a
+           bs <- getPatts b
+           return [K (s ++ t) | K s <- as, K t <- bs]
+         _ -> fail (render (text "not valid pattern in pre expression" <+> ppPatt Unqualified 0 p))
+
+{- ----
+     uncurrySelect g fs t v = do
+       ts <- mapM (allParamValues gr . snd) fs
+       vs <- mapM (comp g) [P v r | r <- map fst fs]
+       return $ reorderSelect t fs ts vs
+
+     reorderSelect t fs pss vs = case (t,fs,pss,vs) of
+       (V _ ts, f:fs1, ps:pss1, v:vs1) -> 
+         S (V (snd f) 
+             [reorderSelect (V (RecType fs1) t) fs1 pss1 vs1 | 
+               t <- segments (length ts `div` length ps) ts]) v 
+       (T (TComp _) cs, f:fs1, ps:pss1, v:vs1) -> 
+         S (T (TComp (snd f)) 
+             [(p,reorderSelect (T (TComp (RecType fs1)) c) fs1 pss1 vs1) | 
+               (ep,c) <- zip ps (segments (length cs `div` length ps) cs),
+               let Ok p = term2patt ep]) v 
+       _ -> t
+
+     segments i xs = 
+       let (x0,xs1) = splitAt i xs in x0 : takeWhile (not . null) (segments i xs1)
+-}
+
+
+-- | argument variables cannot be glued
+checkNoArgVars :: Term -> Comp Term
+checkNoArgVars t = case t of
+  Vr (IA _ _)    -> fail $ glueErrorMsg $ ppTerm Unqualified 0 t 
+  Vr (IAV _ _ _) -> fail $ glueErrorMsg $ ppTerm Unqualified 0 t 
+  _ -> composOp checkNoArgVars t
+
+glueErrorMsg s = 
+  render (text "Cannot glue (+) term with run-time variable" <+> s <> char '.' $$
+          text "Use Prelude.bind instead.")
+
+getArgType t = case t of
+  V ty _ -> return ty
+  T (TComp ty) _ -> return ty
+  _ -> fail (render (text "cannot get argument type of table" $$ nest 2 (ppTerm Unqualified 0 t)))
+
+
+checkPredefError :: SourceGrammar -> Term -> Err Term
+checkPredefError sgr t = case t of
+  App (Q (mod,f)) s | mod == cPredef && f == cError -> fail $ showTerm sgr TermPrintOne Unqualified s
+  _ -> composOp (checkPredefError sgr) t
+  
+predef_error s = App (Q (cPredef,cError)) (K s)
diff --git a/src/compiler/GF/Compile/Compute/ConcreteStrict.hs b/src/compiler/GF/Compile/Compute/ConcreteStrict.hs
new file mode 100644
--- /dev/null
+++ b/src/compiler/GF/Compile/Compute/ConcreteStrict.hs
@@ -0,0 +1,494 @@
+----------------------------------------------------------------------
+-- |
+-- Module      : GF.Compile.Concrete.Compute
+-- Maintainer  : AR
+-- Stability   : (stable)
+-- Portability : (portable)
+--
+-- > CVS $Date: 2005/11/01 15:39:12 $ 
+-- > CVS $Author: aarne $
+-- > CVS $Revision: 1.19 $
+--
+-- Computation of source terms. Used in compilation and in @cc@ command.
+-----------------------------------------------------------------------------
+
+module GF.Compile.Compute.ConcreteStrict (computeConcrete, computeTerm,computeConcreteRec,checkPredefError) where
+
+import GF.Data.Operations
+import GF.Grammar.Grammar
+import GF.Infra.Ident
+import GF.Infra.Option
+import GF.Infra.Modules
+import GF.Data.Str
+import GF.Grammar.ShowTerm
+import GF.Grammar.Printer
+import GF.Grammar.Predef
+import GF.Grammar.Macros
+import GF.Grammar.Lookup
+import GF.Compile.Refresh
+import GF.Grammar.PatternMatch
+import GF.Grammar.Lockfield (isLockLabel,unlockRecord) ----
+
+import GF.Compile.Compute.AppPredefined
+
+import Data.List (nub,intersperse)
+import Control.Monad (liftM2, liftM)
+import Text.PrettyPrint
+
+----import Debug.Trace
+
+-- | computation of concrete syntax terms into normal form
+-- used mainly for partial evaluation
+computeConcrete :: SourceGrammar -> Term -> Err Term
+computeConcrete    g t = {- refreshTerm t >>= -} computeTerm g [] t
+computeConcreteRec g t = {- refreshTerm t >>= -} computeTermOpt True g [] t
+
+-- False means: no evaluation under Abs
+computeTerm :: SourceGrammar -> Substitution -> Term -> Err Term
+computeTerm = computeTermOpt False
+
+-- rec=True is used if it cannot be assumed that looked-up constants
+-- have already been computed (mainly with -optimize=noexpand in .gfr)
+
+computeTermOpt :: Bool -> SourceGrammar -> Substitution -> Term -> Err Term
+computeTermOpt rec gr = comput True where
+
+   -- full = True means full evaluation under Abs
+   comput full g t = ---- errIn ("subterm" +++ prt t) $ --- for debugging 
+              case t of
+
+     Q (p,c) | p == cPredef -> return t    -- qualified constant
+             | otherwise    -> look (p,c) 
+
+     Vr x -> do  -- local variable
+       t' <- maybe (Bad (render (text "no value given to variable" <+> ppIdent x))) 
+             return $ lookup x g
+       case t' of 
+         _ | t == t' -> return t
+         _ -> comp g t' --- why compute again? AR 25/8/2011
+
+     -- Abs x@(IA _) b -> do 
+     Abs _ _ _ | full -> do   -- \xs -> b
+       let (xs,b1) = termFormCnc t   
+       b' <- comp ([(x,Vr x) | (_,x) <- xs] ++ g) b1
+       return $ mkAbs xs b'
+     --  b' <- comp (ext x (Vr x) g) b
+     --  return $ Abs x b'
+     Abs _ _ _ -> return t -- hnf
+
+     Let (x,(ty,a)) b -> do  -- let x : ty = a in b
+       a' <- comp g a
+       comp (ext x a' g) b
+
+{- -- trying to prevent Let expansion with non-evaluated exps. AR 19/8/2011
+     Let (x,(ty,a)) b -> do
+       a' <- comp g a
+       let ea' = checkNoArgVars a'
+       case ea' of
+         Ok v -> comp (ext x v g) b
+         _ -> return $ Let (x,(ty,a')) b
+-}
+
+     Prod b x a t -> do  -- (x : a) -> t ; b for hiding
+       a' <- comp g a
+       t' <- comp (ext x (Vr x) g) t
+       return $ Prod b x a' t'
+
+     -- beta-convert: simultaneous for as many arguments as possible
+     App f a -> case appForm t of   -- (f a) --> (h as)
+      (h,as) | length as > 1 -> do
+        h' <- hnf g h
+        as' <- mapM (comp g) as
+        case h' of
+          _ | not (null [() | FV _ <- as']) -> compApp g (mkApp h' as')
+          c@(QC _) -> do
+            return $ mkApp c as'
+          Q (mod,f) | mod == cPredef -> do     
+            (t',b) <- appPredefined (mkApp h' as')
+            if b then return t' else comp g t'
+
+          Abs _ _ _ -> do
+            let (xs,b) = termFormCnc h'
+            let g' = (zip (map snd xs) as') ++ g
+            let as2 = drop (length xs) as'
+            let xs2 = drop (length as') xs
+            b' <- comp g' (mkAbs xs2 b)
+            if null as2 then return b' else comp g (mkApp b' as2)
+
+          _ -> compApp g (mkApp h' as')
+      _ -> compApp g t
+
+     P t l | isLockLabel l -> return $ R []  -- t.lock_C
+     ---- a workaround 18/2/2005: take this away and find the reason
+     ---- why earlier compilation destroys the lock field
+
+
+     P t l  -> do     -- t.l
+       t' <- comp g t
+       case t' of
+         FV rs -> mapM (\c -> comp g (P c l)) rs >>= returnC . variants -- (r| r').l
+         R r   -> maybe (Bad (render (text "no value for label" <+> ppLabel l))) --{...}.l
+                    (comp g . snd) $ 
+                    lookup l $ reverse r 
+
+         ExtR a (R b) ->    -- (a ** {...}).l             
+           case comp g (P (R b) l) of
+             Ok v -> return v
+             _ -> comp g (P a l)
+
+--- { - --- this is incorrect, since b can contain the proper value
+         ExtR (R a) b ->                 -- NOT POSSIBLE both a and b records!
+           case comp g (P (R a) l) of
+             Ok v -> return v
+             _ -> comp g (P b l)
+--- - } ---
+
+         S (T i cs) e -> prawitz  g i (flip P l) cs e  -- ((table i branches) ! e).l
+         S (V i cs) e -> prawitzV g i (flip P l) cs e  -- ((table i values) ! e).l
+
+         _   -> returnC $ P t' l
+
+     S t v -> do         -- t ! v
+       t' <- compTable g t
+       v' <- comp g v
+       t1 <- case t' of
+----           V (RecType fs) _         -> uncurrySelect g fs t' v'
+----           T (TComp (RecType fs)) _ -> uncurrySelect g fs t' v'
+           _ -> return $ S t' v'
+       compSelect g t1
+
+     -- normalize away empty tokens
+     K "" -> return Empty  -- []
+
+     -- glue if you can
+     Glue x0 y0 -> do  -- x0 + y0
+       x <- comp g x0
+       y <- comp g y0
+       case (x,y) of
+         (FV ks,_)         -> do                               -- (k|k') + y
+           kys <- mapM (comp g . flip Glue y) ks
+           return $ variants kys
+         (_,FV ks)         -> do                               -- x + (k|k')
+           xks <- mapM (comp g . Glue x) ks
+           return $ variants xks
+
+         (S (T i cs) e, s) -> prawitz g i (flip Glue s) cs e   -- (table cs ! e) + s
+         (s, S (T i cs) e) -> prawitz g i (Glue s) cs e        -- s + (table cs ! e)
+         (S (V i cs) e, s) -> prawitzV g i (flip Glue s) cs e  -- same with values
+         (s, S (V i cs) e) -> prawitzV g i (Glue s) cs e
+         (_,Empty)         -> return x                         -- x + []
+         (Empty,_)         -> return y
+         (K a, K b)        -> return $ K (a ++ b)              -- "foo" + "bar"
+         (_, Alts d vs)    -> do                               -- x + pre {...}
+----         (K a, Alts (d,vs)) -> do
+            let glx = Glue x
+            comp g $ Alts (glx d) [(glx v,c) | (v,c) <- vs]
+         (Alts _ _, ka) -> checks [do                          -- pre {...} + ka
+            y' <- strsFromTerm ka
+----         (Alts _, K a) -> checks [do
+            x' <- strsFromTerm x -- this may fail when compiling opers
+            return $ variants [
+              foldr1 C (map K (str2strings (glueStr v u))) | v <- x', u <- y']
+----              foldr1 C (map K (str2strings (glueStr v (str a)))) | v <- x']
+           ,return $ Glue x y
+           ]
+         (C u v,_) -> comp g $ C u (Glue v y)  -- (u ++ v) + y
+
+         _ -> do
+           mapM_ checkNoArgVars [x,y]
+           r <- composOp (comp g) t
+           returnC r
+
+     Alts d aa -> do   -- pre {...}
+       d' <- comp g d
+       aa' <- mapM (compInAlts g) aa
+       returnC (Alts d' aa')
+
+     -- remove empty
+     C a b    -> do    -- a ++ b
+       a' <- comp g a
+       b' <- comp g b
+       case (a',b') of
+         (Alts _ _, K d) -> checks [do                      -- pre {...} ++ "d"
+            as <- strsFromTerm a' -- this may fail when compiling opers
+            return $ variants [
+              foldr1 C (map K (str2strings (plusStr v (str d)))) | v <- as]
+            ,
+            return $ C a' b'
+           ]
+         (Alts _ _, C (K d) e) -> checks [do                -- pre {...} ++ ("d" ++ e)
+            as <- strsFromTerm a' -- this may fail when compiling opers
+            return $ C (variants [
+              foldr1 C (map K (str2strings (plusStr v (str d)))) | v <- as]) e
+            ,
+            return $ C a' b'
+           ]
+         (Empty,_) -> returnC b'        -- [] ++ b'
+         (_,Empty) -> returnC a'        -- a' ++ []
+         _     -> returnC $ C a' b'
+
+     -- reduce free variation as much as you can
+     FV ts -> mapM (comp g) ts >>= returnC . variants   -- variants {...}
+
+     -- merge record extensions if you can
+     ExtR r s -> do                                     -- r ** s
+       r' <- comp g r
+       s' <- comp g s
+       case (r',s') of
+         (R rs, R ss) -> plusRecord r' s'
+         (RecType rs, RecType ss) -> plusRecType r' s'
+         _ -> return $ ExtR r' s'
+
+     ELin c r -> do                                     -- lin c r
+       r' <- comp g r
+       unlockRecord c r'
+
+     T _ _ -> compTable g t         -- table { ... p => t ... }
+     V _ _ -> compTable g t         -- table [ ... v ... ]
+
+     -- otherwise go ahead
+     _ -> composOp (comp g) t >>= returnC
+
+    where
+
+     compApp g (App f a) = do    -- (f a)
+       f' <- hnf g f
+       a' <- comp g a
+       case (f',a') of
+         (Abs _ x b, FV as) ->   -- (\x -> b) (variants {...})
+           mapM (\c -> comp (ext x c g) b) as >>= return . variants
+         (_, FV as)  -> mapM (\c -> comp g (App f' c)) as >>= return . variants
+         (FV fs, _)  -> mapM (\c -> comp g (App c a')) fs >>= return . variants
+         (Abs _ x b,_) -> comp (ext x a' g) b  -- (\x -> b) a -- normal beta conv.
+
+         (QC _,_)  -> returnC $ App f' a'  -- (C a') -- constructor application
+
+         (S (T i cs) e,_) -> prawitz g i (flip App a') cs e  -- (table cs ! e) a'
+         (S (V i cs) e,_) -> prawitzV g i (flip App a') cs e
+
+	 _ -> do
+           (t',b) <- appPredefined (App f' a')
+           if b then return t' else comp g t'
+
+     hnf  = comput False
+     comp = comput True
+
+     look c
+       | rec       = lookupResDef gr c >>= comp []
+       | otherwise = lookupResDef gr c
+
+     ext x a g = (x,a):g  -- extend environment with new variable and its value
+
+     returnC = return --- . computed
+
+     variants ts = case nub ts of
+       [t] -> t
+       ts  -> FV ts
+
+     isCan v = case v of    -- is canonical (and should be matched by a pattern)
+       Con _    -> True
+       QC _     -> True
+       App f a  -> isCan f && isCan a
+       R rs     -> all (isCan . snd . snd) rs
+       _        -> False
+
+     compPatternMacro p = case p of
+       PM c -> case look c of
+         Ok (EPatt p') -> compPatternMacro p'
+         _ -> Bad (render (text "pattern expected as value of" $$ nest 2 (ppPatt Unqualified 0 p)))
+       PAs x p -> do
+         p' <- compPatternMacro p
+         return $ PAs x p'
+       PAlt p q -> do
+         p' <- compPatternMacro p
+         q' <- compPatternMacro q
+         return $ PAlt p' q'
+       PSeq p q -> do
+         p' <- compPatternMacro p
+         q' <- compPatternMacro q
+         return $ PSeq p' q'
+       PRep p -> do
+         p' <- compPatternMacro p
+         return $ PRep p'
+       PNeg p -> do
+         p' <- compPatternMacro p
+         return $ PNeg p'
+       PR rs -> do
+         rs' <- mapPairsM compPatternMacro rs
+         return $ PR rs'
+
+       _ -> return p
+
+     compSelect g (S t' v') = case v' of  -- t' ! v'
+       FV vs -> mapM (\c -> comp g (S t' c)) vs >>= returnC . variants    
+
+----       S (T i cs) e -> prawitz g i (S t') cs e  -- AR 8/7/2010 sometimes better
+----       S (V i cs) e -> prawitzV g i (S t') cs e -- sometimes much worse 
+
+    
+       _ -> case t' of
+         FV ccs -> mapM (\c -> comp g (S c v')) ccs >>= returnC . variants
+
+         T _ [(PW,c)] -> comp g c           -- (\\_ => c) ! v'
+         T _ [(PT _ PW,c)] -> comp g c      -- (\\(_ : typ) => c) ! v'
+
+         T _ [(PV z,c)] -> comp (ext z v' g) c        -- (\\z => c) ! v'
+         T _ [(PT _ (PV z),c)] -> comp (ext z v' g) c
+
+         -- course-of-values table: look up by index, no pattern matching needed
+
+         V ptyp ts -> do                      -- (table [...ts...]) ! v'
+             vs <- allParamValues gr ptyp
+             case lookupR v' (zip vs [0 .. length vs - 1]) of
+               Just i -> comp g $ ts !! i
+               _ -> return $ S t' v' -- if v' is not canonical
+         T _ cc -> do                         -- (table {...cc...}) ! v'
+           case matchPattern cc v' of
+             Ok (c,g') -> comp (g' ++ g) c
+             _ | isCan v' -> Bad (render (text "missing case" <+> ppTerm Unqualified 0 v' <+> text "in" <+> ppTerm Unqualified 0 t))
+             _ -> return $ S t' v' -- if v' is not canonical
+
+         S (T i cs) e -> prawitz g i (flip S v') cs e  -- (table {...cs...} ! e) ! v'
+         S (V i cs) e -> prawitzV g i (flip S v') cs e
+         _    -> returnC $ S t' v'
+
+     --- needed to match records with and without type information
+     ---- todo: eliminate linear search in a list of records!
+     lookupR v vs = case v of
+       R rs -> lookup ([(x,y) | (x,(_,y)) <- rs]) 
+                                [([(x,y) | (x,(_,y)) <- rs],v) | (R rs,v) <- vs]
+       _ -> lookup v vs
+
+     -- case-expand tables: branches for every value of argument type
+     -- if already expanded, don't expand again
+     compTable g t = case t of
+         T i@(TComp ty) cs -> do
+           -- if there are no variables, don't even go inside
+           cs' <- if (null g) then return cs else mapPairsM (comp g) cs
+----           return $ V ty (map snd cs')
+           return $ T i cs'
+         V ty cs -> do
+           ty' <- comp g ty
+           -- if there are no variables, don't even go inside
+           cs' <- if (null g) then return cs else mapM (comp g) cs
+           return $ V ty' cs'
+
+         T i cs -> do
+           pty0 <- getTableType i
+           ptyp <- comp g pty0
+           case allParamValues gr ptyp of
+             Ok vs0 -> do
+               let vs = vs0 ---- [Val v ptyp i | (v,i) <- zip vs0 [0..]]
+               ps0  <- mapM (compPatternMacro . fst) cs
+               cs'  <- mapM (compBranchOpt g) (zip ps0 (map snd cs))
+               sts  <- mapM (matchPattern cs') vs 
+               ts   <- mapM (\ (c,g') -> comp (g' ++ g) c) sts
+               ps   <- mapM term2patt vs
+               let ps' = ps --- PT ptyp (head ps) : tail ps
+----               return $ V ptyp ts -- to save space, just course of values
+               return $ T (TComp ptyp) (zip ps' ts)
+             _ -> do
+               ps0  <- mapM (compPatternMacro . fst) cs
+
+               cs'  <- mapM (compBranch g) (zip ps0 (map snd cs))
+-----               cs'  <- return (zip ps0 (map snd cs)) --- probably right AR 22/8/2011 but can leave uninstantiated variables :-(
+
+----               cs' <- mapM (compBranch g) cs
+               return $ T i cs'  -- happens with variable types
+         _ -> comp g t
+
+     compBranch g (p,v) = do  -- compute a branch in a table
+       let g' = contP p ++ g  -- add the pattern's variables to environment
+       v' <- comp g' v
+       return (p,v')
+
+     compBranchOpt g c@(p,v) = case contP p of
+       [] -> return c
+       _ -> err (const (return c)) return $ compBranch g c
+
+     -- collect the context of variables of a pattern
+     contP p = case p of
+       PV x -> [(x,Vr x)]
+       PC _ ps -> concatMap contP ps
+       PP _ ps -> concatMap contP ps
+       PT _ p -> contP p
+       PR rs -> concatMap (contP . snd) rs
+
+       PAs x p -> (x,Vr x) : contP p
+
+       PSeq p q -> concatMap contP [p,q]
+       PAlt p q -> concatMap contP [p,q]
+       PRep p   -> contP p
+       PNeg p   -> contP p
+
+       _ -> []
+
+     prawitz g i f cs e = do
+       cs' <- mapM (compBranch g) [(p, f v) | (p,v) <- cs]
+       return $ S (T i cs') e
+     prawitzV g i f cs e = do
+       cs' <- mapM (comp g) [(f v) | v <- cs]
+       return $ S (V i cs') e
+
+     compInAlts g (v,c) = do
+       v' <- comp g v
+       c' <- comp g c
+       c2 <- case c' of
+         EPatt p -> liftM Strs $ getPatts p
+         _ -> return c'
+       return (v',c2)
+      where
+       getPatts p = case p of
+         PAlt a b  -> liftM2 (++) (getPatts a) (getPatts b)
+         PString s -> return [K s]
+         PSeq a b  -> do
+           as <- getPatts a
+           bs <- getPatts b
+           return [K (s ++ t) | K s <- as, K t <- bs]
+         _ -> fail (render (text "not valid pattern in pre expression" <+> ppPatt Unqualified 0 p))
+
+{- ----
+     uncurrySelect g fs t v = do
+       ts <- mapM (allParamValues gr . snd) fs
+       vs <- mapM (comp g) [P v r | r <- map fst fs]
+       return $ reorderSelect t fs ts vs
+
+     reorderSelect t fs pss vs = case (t,fs,pss,vs) of
+       (V _ ts, f:fs1, ps:pss1, v:vs1) -> 
+         S (V (snd f) 
+             [reorderSelect (V (RecType fs1) t) fs1 pss1 vs1 | 
+               t <- segments (length ts `div` length ps) ts]) v 
+       (T (TComp _) cs, f:fs1, ps:pss1, v:vs1) -> 
+         S (T (TComp (snd f)) 
+             [(p,reorderSelect (T (TComp (RecType fs1)) c) fs1 pss1 vs1) | 
+               (ep,c) <- zip ps (segments (length cs `div` length ps) cs),
+               let Ok p = term2patt ep]) v 
+       _ -> t
+
+     segments i xs = 
+       let (x0,xs1) = splitAt i xs in x0 : takeWhile (not . null) (segments i xs1)
+-}
+
+
+-- | argument variables cannot be glued
+checkNoArgVars :: Term -> Err Term
+checkNoArgVars t = case t of
+  Vr (IA _ _)    -> Bad $ glueErrorMsg $ ppTerm Unqualified 0 t 
+  Vr (IAV _ _ _) -> Bad $ glueErrorMsg $ ppTerm Unqualified 0 t 
+  _ -> composOp checkNoArgVars t
+
+glueErrorMsg s = 
+  render (text "Cannot glue (+) term with run-time variable" <+> s <> char '.' $$
+          text "Use Prelude.bind instead.")
+
+getArgType t = case t of
+  V ty _ -> return ty
+  T (TComp ty) _ -> return ty
+  _ -> Bad (render (text "cannot get argument type of table" $$ nest 2 (ppTerm Unqualified 0 t)))
+
+
+checkPredefError :: SourceGrammar -> Term -> Err Term
+checkPredefError sgr t = case t of
+  App (Q (mod,f)) s | mod == cPredef && f == cError -> Bad $ showTerm sgr TermPrintOne Unqualified s
+  _ -> composOp (checkPredefError sgr) t
+  
diff --git a/src/compiler/GF/Compile/GrammarToPGF.hs b/src/compiler/GF/Compile/GrammarToPGF.hs
--- a/src/compiler/GF/Compile/GrammarToPGF.hs
+++ b/src/compiler/GF/Compile/GrammarToPGF.hs
@@ -15,7 +15,7 @@
 import qualified GF.Grammar.Lookup as Look
 import qualified GF.Grammar as A
 import qualified GF.Grammar.Macros as GM
-import qualified GF.Compile.Compute.Concrete as Compute ---- 
+--import qualified GF.Compile.Compute.Concrete as Compute ---- 
 import qualified GF.Infra.Modules as M
 import qualified GF.Infra.Option as O
 
@@ -29,7 +29,7 @@
 import qualified Data.Map as Map
 import qualified Data.ByteString.Char8 as BS
 import Text.PrettyPrint
-import Debug.Trace ----
+--import Debug.Trace ----
 
 -- when developing, swap commenting
 --traceD s t = trace s t 
@@ -44,10 +44,13 @@
 
 -- Generate PGF from grammar.
 
-canon2pgf :: Options -> SourceGrammar -> SourceGrammar -> IO D.PGF
-canon2pgf opts gr cgr@(M.MGrammar (am:cms)) = do
+type AbsConcsGrammar = (IdModInfo,[IdModInfo]) -- (abstract,concretes)
+type IdModInfo = (Ident,SourceModInfo)
+
+canon2pgf :: Options -> SourceGrammar -> AbsConcsGrammar -> IO D.PGF
+canon2pgf opts gr (am,cms) = do
   if dump opts DumpCanon
-    then putStrLn (render (vcat (map (ppModule Qualified) (M.modules cgr))))
+    then putStrLn (render (vcat (map (ppModule Qualified) (am:cms))))
     else return ()
   (an,abs) <- mkAbstr am
   cncs     <- mapM (mkConcr am) cms
@@ -148,15 +151,15 @@
 
 -- return just one module per language
 
-reorder :: Ident -> SourceGrammar -> SourceGrammar
+reorder :: Ident -> SourceGrammar -> AbsConcsGrammar
 reorder abs cg =
-  M.MGrammar $ 
-       (abs, M.ModInfo M.MTAbstract       M.MSComplete aflags [] Nothing [] [] adefs):
+--  M.MGrammar $
+       ((abs, M.ModInfo M.MTAbstract       M.MSComplete aflags [] Nothing [] [] adefs),
       [(cnc, M.ModInfo (M.MTConcrete abs) M.MSComplete cflags [] Nothing [] [] cdefs)
-            | cnc <- M.allConcretes cg abs, let (cflags,cdefs) = concr cnc]
+            | cnc <- M.allConcretes cg abs, let (cflags,cdefs) = concr cnc])
   where
     aflags = 
-      concatOptions [M.flags mo | (_,mo) <- M.modules cg, M.isModAbs mo]
+      concatOptions (reverse [M.flags mo | (_,mo) <- M.modules cg, M.isModAbs mo])
 
     adefs = 
       Map.fromList (predefADefs ++ Look.allOrigInfos cg abs)
diff --git a/src/compiler/GF/Compile/Optimize.hs b/src/compiler/GF/Compile/Optimize.hs
--- a/src/compiler/GF/Compile/Optimize.hs
+++ b/src/compiler/GF/Compile/Optimize.hs
@@ -96,7 +96,7 @@
 
   _ ->  return info
  where
-   gr = MGrammar (m : ms)
+   gr = mGrammar (m : ms)
    optim = flag optOptimizations opts
    param = OptParametrize `Set.member` optim
    eIn cat = errIn (render (text "Error optimizing" <+> cat <+> ppIdent c <+> colon))
@@ -112,7 +112,8 @@
   trm3 <- if rightType trm2
             then computeTerm gr subst trm2
             else recordExpand val trm2 >>= computeTerm gr subst
-  return $ mkAbs [(Explicit,v) | v <- vars] trm3
+  trm4 <- checkPredefError gr trm3
+  return $ mkAbs [(Explicit,v) | v <- vars] trm4
   where
     -- don't eta expand records of right length (correct by type checking)
     rightType (R rs) = case val of
@@ -199,3 +200,4 @@
     R _      | trm == old -> new
     App x y               -> App (replace old new x) (replace old new y)
     _                     -> composSafeOp (replace old new) trm
+
diff --git a/src/compiler/GF/Compile/PGFtoHaskell.hs b/src/compiler/GF/Compile/PGFtoHaskell.hs
--- a/src/compiler/GF/Compile/PGFtoHaskell.hs
+++ b/src/compiler/GF/Compile/PGFtoHaskell.hs
@@ -34,7 +34,7 @@
                 -> PGF
                 -> String
 grammar2haskell opts name gr = foldr (++++) [] $  
-  pragmas ++ haskPreamble name ++ [types, gfinstances gId lexical gr']
+  pragmas ++ haskPreamble gadt name ++ [types, gfinstances gId lexical gr'] ++ compos
     where gr' = hSkeleton gr
           gadt = haskellOption opts HaskellGADT
           lexical cat = haskellOption opts HaskellLexical && isLexicalCat opts cat
@@ -44,25 +44,34 @@
                   | otherwise = []
           types | gadt = datatypesGADT gId lexical gr'
                 | otherwise = datatypes gId lexical gr'
+          compos | gadt = prCompos gId lexical gr' ++ composClass
+                 | otherwise = []
 
-haskPreamble name =
+haskPreamble gadt name =
  [
   "module " ++ name ++ " where",
-  "",
-  "import PGF",
+  ""
+ ] ++
+ (if gadt then [
+  "import Control.Monad.Identity",
+  "import Data.Monoid"
+  ] else []) ++
+ [
+  "import PGF hiding (Tree)",
+  "import qualified PGF",
   "----------------------------------------------------",
   "-- automatic translation from GF to Haskell",
   "----------------------------------------------------",
   "", 
   "class Gf a where",
-  "  gf :: a -> Tree",
-  "  fg :: Tree -> a",
+  "  gf :: a -> PGF.Tree",
+  "  fg :: PGF.Tree -> a",
   "",
-  predefInst "GString" "String"  "unStr"    "mkStr",
+  predefInst gadt "GString" "String"  "unStr"    "mkStr",
   "",
-  predefInst "GInt"    "Int"     "unInt"    "mkInt",
+  predefInst gadt "GInt"    "Int"     "unInt"    "mkInt",
   "",
-  predefInst "GFloat"  "Double"  "unDouble" "mkDouble",
+  predefInst gadt "GFloat"  "Double"  "unDouble" "mkDouble",
   "",
   "----------------------------------------------------",
   "-- below this line machine-generated",
@@ -70,8 +79,12 @@
   ""
  ]
 
-predefInst gtyp typ destr consr = 
-  "newtype" +++ gtyp +++ "=" +++ gtyp +++ typ +++ " deriving Show" +++++
+predefInst gadt gtyp typ destr consr = 
+  (if gadt
+    then [] 
+    else ("newtype" +++ gtyp +++ "=" +++ gtyp +++ typ +++ " deriving Show\n\n") 
+    ) 
+  ++
   "instance Gf" +++ gtyp +++ "where" ++++
   "  gf (" ++ gtyp +++ "x) =" +++ consr +++ "x" ++++
   "  fg t =" ++++
@@ -112,12 +125,32 @@
 lexicalConstructor :: OIdent -> String
 lexicalConstructor cat = "Lex" ++ cat
 
+predefTypeSkel = [(c,[]) | c <- ["String", "Int", "Float"]]
+
 -- GADT version of data types
 datatypesGADT :: Prefix -> (OIdent -> Bool) -> (String,HSkeleton) -> String
-datatypesGADT gId lexical (_,skel) = 
-    unlines (concatMap (hCatTypeGADT gId) skel)
-    +++++
-    "data Tree :: * -> * where" ++++ unlines (concatMap (map ("  "++) . hDatatypeGADT gId lexical) skel)
+datatypesGADT gId lexical (_,skel) = unlines $ 
+    concatMap (hCatTypeGADT gId) (skel ++ predefTypeSkel) ++
+    [ 
+      "", 
+      "data Tree :: * -> * where"
+    ] ++ 
+    concatMap (map ("  "++) . hDatatypeGADT gId lexical) skel ++
+    [
+      "  GString :: String -> Tree GString_",
+      "  GInt :: Int -> Tree GInt_",
+      "  GFloat :: Double -> Tree GFloat_",
+      "",
+      "instance Eq (Tree a) where",
+      "  i == j = case (i,j) of"
+    ] ++
+    concatMap (map ("    "++) . hEqGADT gId lexical) skel ++
+    [
+      "    (GString x, GString y) -> x == y",
+      "    (GInt x, GInt y) -> x == y",
+      "    (GFloat x, GFloat y) -> x == y",
+      "    _ -> False"
+    ]
 
 hCatTypeGADT :: Prefix -> (OIdent, [(OIdent, [OIdent])]) -> [String]
 hCatTypeGADT gId (cat,rules)
@@ -133,6 +166,37 @@
         ++ if lexical cat then [lexicalConstructor cat +++ ":: String ->"+++ t] else []
   where t = "Tree" +++ gId cat ++ "_"
 
+hEqGADT :: Prefix -> (OIdent -> Bool) -> (OIdent, [(OIdent, [OIdent])]) -> [String]
+hEqGADT gId lexical (cat, rules)
+  | isListCat (cat,rules) = let r = listr cat in ["(" ++ patt "x" r ++ "," ++ patt "y" r ++ ") -> " ++ listeqs] 
+  | otherwise = ["(" ++ patt "x" r ++ "," ++ patt "y" r ++ ") -> " ++ eqs r | r <- rules] 
+ where
+   patt s (f,xs) = unwords (gId f : mkSVars s (length xs))
+   eqs (_,xs) = unwords ("and" : "[" : intersperse "," [x ++ " == " ++ y | 
+     (x,y) <- zip (mkSVars "x" (length xs)) (mkSVars "y" (length xs)) ] ++ ["]"])
+   listr c = (c,["foo"]) -- foo just for length = 1
+   listeqs = "and [x == y | (x,y) <- zip x1 y1]"
+
+prCompos :: Prefix -> (OIdent -> Bool) -> (String,HSkeleton) -> [String]
+prCompos gId lexical (_,catrules) =
+    ["instance Compos Tree where",
+     "  compos r a f t = case t of"]
+    ++ 
+    ["    " ++ prComposCons (gId f) xs | (c,rs) <- catrules, not (isListCat (c,rs)),
+                                         (f,xs) <- rs, not (null xs)] 
+    ++ 
+    ["    " ++ prComposCons (gId c) ["x1"] | (c,rs) <- catrules, isListCat (c,rs)]
+    ++ 
+    ["    _ -> r t"]
+  where
+    prComposCons f xs = let vs = mkVars (length xs) in 
+                        f +++ unwords vs +++ "->" +++ rhs f (zip vs xs)
+    rhs f vcs = "r" +++ f +++ unwords (map (prRec f) vcs)
+    prRec f (v,c) 
+      | isList f  = "`a` foldr (a . a (r (:)) . f) (r [])" +++ v
+      | otherwise = "`a`" +++ "f" +++ v
+    isList f = (gId "List") `isPrefixOf` f
+
 gfInstance :: Prefix -> (OIdent -> Bool) -> String -> (OIdent, [(OIdent, [OIdent])]) -> String
 gfInstance gId lexical m crs = hInstance gId lexical m crs ++++ fInstance gId lexical m crs
 
@@ -157,38 +221,38 @@
    mkInst f xx = let xx' = mkVars (length xx) in "  gf " ++
      (if length xx == 0 then gId f else prParenth (gId f +++ foldr1 (+++) xx')) +++
      "=" +++ mkRHS f xx'
-   mkVars n = ["x" ++ show i | i <- [1..n]]
    mkRHS f vars = "mkApp (mkCId \"" ++ f ++ "\")" +++ 
 		   "[" ++ prTList ", " ["gf" +++ x | x <- vars] ++ "]"
 
+mkVars = mkSVars "x"
+mkSVars s n = [s ++ show i | i <- [1..n]]
 
 ----fInstance m ("Cn",_) = "" ---
 fInstance _ _ m (cat,[]) = ""
 fInstance gId lexical m (cat,rules) =
   "  fg t =" ++++
-  "    case unApp t of" ++++
+  (if isList 
+    then "    " ++ gId cat ++ " (fgs t) where\n     fgs t = case unApp t of"
+    else "    case unApp t of") ++++
   unlines [mkInst f xx | (f,xx) <- nonLexicalRules (lexical cat) rules] ++++
   (if lexical cat then "      (i,[]) -> " ++ lexicalConstructor cat +++ "(prCId i)" else "") ++++
   "      _ -> error (\"no" +++ cat ++ " \" ++ show t)"
    where
+    isList = isListCat (cat,rules)
     mkInst f xx =
      "      Just (i," ++
      "[" ++ prTList "," xx' ++ "])" +++
      "| i == mkCId \"" ++ f ++ "\" ->" +++ mkRHS f xx'
        where xx' = ["x" ++ show i | (_,i) <- zip xx [1..]]
 	     mkRHS f vars 
-		 | isListCat (cat,rules) =
-		     if "Base" `isPrefixOf` f then
-			gId cat +++ "[" ++ prTList ", " [ "fg" +++ x | x <- vars ] ++ "]"
-		      else
-                       let (i,t) = (init vars,last vars)
-                        in "let" +++ gId cat +++ "xs = fg " ++ t +++ "in" +++ 
-                          gId cat +++ prParenth (prTList ":" (["fg"+++v | v <- i] ++ ["xs"]))
+		 | isList =
+		     if "Base" `isPrefixOf` f 
+                       then "[" ++ prTList ", " [ "fg" +++ x | x <- vars ] ++ "]"
+		       else "fg" +++ (vars !! 0) +++ ":" +++ "fgs" +++ (vars !! 1)
 		 | otherwise = 
 		     gId f +++  
 		     prTList " " [prParenth ("fg" +++ x) | x <- vars]
 
-
 --type HSkeleton = [(OIdent, [(OIdent, [OIdent])])]
 hSkeleton :: PGF -> (String,HSkeleton)
 hSkeleton gr = 
@@ -227,3 +291,33 @@
 baseSize :: (OIdent, [(OIdent, [OIdent])]) -> Int
 baseSize (_,rules) = length bs
     where Just (_,bs) = find (("Base" `isPrefixOf`) . fst) rules
+
+composClass :: [String]
+composClass = 
+    [
+     "",
+     "class Compos t where",
+     "  compos :: (forall a. a -> m a) -> (forall a b. m (a -> b) -> m a -> m b)",
+     "         -> (forall a. t a -> m (t a)) -> t c -> m (t c)",
+     "",
+     "composOp :: Compos t => (forall a. t a -> t a) -> t c -> t c",
+     "composOp f = runIdentity . composOpM (Identity . f)",
+     "",
+     "composOpM :: (Compos t, Monad m) => (forall a. t a -> m (t a)) -> t c -> m (t c)",
+     "composOpM = compos return ap",
+     "",
+     "composOpM_ :: (Compos t, Monad m) => (forall a. t a -> m ()) -> t c -> m ()",
+     "composOpM_ = composOpFold (return ()) (>>)",
+     "",
+     "composOpMonoid :: (Compos t, Monoid m) => (forall a. t a -> m) -> t c -> m",
+     "composOpMonoid = composOpFold mempty mappend",
+     "",
+     "composOpMPlus :: (Compos t, MonadPlus m) => (forall a. t a -> m b) -> t c -> m b",
+     "composOpMPlus = composOpFold mzero mplus",
+     "",
+     "composOpFold :: Compos t => b -> (b -> b -> b) -> (forall a. t a -> b) -> t c -> b",
+     "composOpFold z c f = unC . compos (\\_ -> C z) (\\(C x) (C y) -> C (c x y)) (C . f)",
+     "",
+     "newtype C b a = C { unC :: b }"
+    ]
+
diff --git a/src/compiler/GF/Compile/ReadFiles.hs b/src/compiler/GF/Compile/ReadFiles.hs
--- a/src/compiler/GF/Compile/ReadFiles.hs
+++ b/src/compiler/GF/Compile/ReadFiles.hs
@@ -178,7 +178,7 @@
     depModType (MTResource)       xs = xs
     depModType (MTInterface)      xs = xs
     depModType (MTConcrete m2)    xs = modName m2:xs
-    depModType (MTInstance m2)    xs = modName m2:xs
+    depModType (MTInstance (m2,_))    xs = modName m2:xs
 
     depExtends es xs = foldr depInclude xs es
 
diff --git a/src/compiler/GF/Compile/Refresh.hs b/src/compiler/GF/Compile/Refresh.hs
--- a/src/compiler/GF/Compile/Refresh.hs
+++ b/src/compiler/GF/Compile/Refresh.hs
@@ -60,6 +60,8 @@
   
   T i cc -> liftM2 T (refreshTInfo i) (mapM refreshCase cc)
 
+  App f a -> liftM2 App (inBlockSTM (refresh f)) (refresh a)
+
   _ -> composOp refresh e
 
 refreshCase :: (Patt,Term) -> STM IdState (Patt,Term)
@@ -106,7 +108,7 @@
 -- for concrete and resource in grammar, before optimizing
 
 refreshGrammar :: SourceGrammar -> Err SourceGrammar
-refreshGrammar = liftM (MGrammar . snd) . foldM refreshModule (0,[]) . modules
+refreshGrammar = liftM (mGrammar . snd) . foldM refreshModule (0,[]) . modules
 
 refreshModule :: (Int,[SourceModule]) -> SourceModule -> Err (Int,[SourceModule])
 refreshModule (k,ms) mi@(i,mo)
@@ -130,4 +132,15 @@
       (k',trm') <- refreshTermKN k trm
       return $ (k', (c, CncFun mt (Just (L loc trm')) pn):cs)
     _ -> return (k, ci:cs)
+
+
+-- running monad and returning to initial state
+
+inBlockSTM :: STM s a -> STM s a
+inBlockSTM mo = do
+  s <- readSTM
+  v <- mo
+  writeSTM s
+  return v
+
 
diff --git a/src/compiler/GF/Compile/Rename.hs b/src/compiler/GF/Compile/Rename.hs
--- a/src/compiler/GF/Compile/Rename.hs
+++ b/src/compiler/GF/Compile/Rename.hs
@@ -24,6 +24,7 @@
 
 module GF.Compile.Rename (
 	       renameSourceTerm,
+	       renameSourceJudgement,
 	       renameModule
 	      ) where
 
@@ -50,10 +51,18 @@
   status <- buildStatus g m mo
   renameTerm status [] t
 
+-- | this gives top-level access to renaming term input in the cj command
+renameSourceJudgement :: SourceGrammar -> Ident -> (Ident,Info) -> Check (Ident,Info)
+renameSourceJudgement g m (i,t) = do
+  mo     <- checkErr $ lookupModule g m
+  status <- buildStatus g m mo
+  t2 <- renameInfo status m i t
+  return (i,t2)
+
 renameModule :: [SourceModule] -> SourceModule -> Check SourceModule
 renameModule ms (name,mo) = checkIn (text "renaming module" <+> ppIdent name) $ do
   let js1 = jments mo
-  status <- buildStatus (MGrammar ms) name mo
+  status <- buildStatus (mGrammar ms) name mo
   js2    <- checkMap (renameInfo status name) js1
   return (name, mo {opens = map forceQualif (opens mo), jments = js2})
 
@@ -119,7 +128,7 @@
 
 buildStatus :: SourceGrammar -> Ident -> SourceModInfo -> Check Status
 buildStatus gr c mo = let mo' = self2status c mo in do
-    let gr1 = MGrammar ((c,mo) : modules gr)
+    let gr1 = prependModule gr (c,mo)
         ops = [OSimple e | e <- allExtends gr1 c] ++ opens mo
     mods <- checkErr $ mapM (lookupModule gr1 . openedModule) ops
     let sts = map modInfo2status $ zip ops mods    
diff --git a/src/compiler/GF/Compile/SubExOpt.hs b/src/compiler/GF/Compile/SubExOpt.hs
--- a/src/compiler/GF/Compile/SubExOpt.hs
+++ b/src/compiler/GF/Compile/SubExOpt.hs
@@ -61,7 +61,7 @@
       Q (m,c) | isOperIdent c -> --- name convention of subexp opers
         errVal t $ liftM unparTerm $ lookupResDef gr (m,c)
       _ -> C.composSafeOp unparTerm t
-    gr = M.MGrammar [sm] 
+    gr = M.mGrammar [sm]
     rebuild = buildTree . concat
 
 -- implementation
diff --git a/src/compiler/GF/Compile/Update.hs b/src/compiler/GF/Compile/Update.hs
--- a/src/compiler/GF/Compile/Update.hs
+++ b/src/compiler/GF/Compile/Update.hs
@@ -89,10 +89,10 @@
               ("module" +++ showIdent i +++ 
                "has open interfaces and must therefore be declared incomplete") 
       case mt of
-        MTInstance i0 -> do
+        MTInstance (i0,mincl) -> do
           m1 <- lookupModule gr i0
           testErr (isModRes m1) ("interface expected instead of" +++ showIdent i0)
-          js' <- extendMod gr False (i0,const True) i (jments m1) (jments mi)
+          js' <- extendMod gr False (i0, isInherited mincl) i (jments m1) (jments mi)
           --- to avoid double inclusions, in instance I of I0 = J0 ** ...
           case extends mi of
             []  -> return $ replaceJudgements mi js'
diff --git a/src/compiler/GF/CompilerAPI.hs b/src/compiler/GF/CompilerAPI.hs
new file mode 100644
--- /dev/null
+++ b/src/compiler/GF/CompilerAPI.hs
@@ -0,0 +1,109 @@
+module GF.CompilerAPI where
+
+-- started by AR 28/1/2011 - STILL DUMMY
+
+import GF.Compile
+-- SHOULD IMPORT MUCH LESS
+
+-- the main compiler passes
+import GF.Compile.GetGrammar
+import GF.Compile.Rename
+import GF.Compile.CheckGrammar
+import GF.Compile.Optimize
+import GF.Compile.SubExOpt
+import GF.Compile.GrammarToPGF
+import GF.Compile.ReadFiles
+import GF.Compile.Update
+import GF.Compile.Refresh
+
+import GF.Compile.Coding
+
+import GF.Grammar.Grammar
+import GF.Grammar.Lookup
+import GF.Grammar.Printer
+import GF.Grammar.Binary
+
+import GF.Infra.Ident
+import GF.Infra.Option
+import GF.Infra.Modules
+import GF.Infra.UseIO
+import GF.Infra.CheckM
+
+import GF.Data.Operations
+
+import Control.Monad
+import System.IO
+import System.Directory
+import System.FilePath
+import qualified Data.Map as Map
+import qualified Data.Set as Set
+import Data.List(nub)
+import Data.Maybe (isNothing)
+import Data.Binary
+import qualified Data.ByteString.Char8 as BS
+import Text.PrettyPrint
+
+import PGF.CId
+import PGF.Data
+import PGF.Macros
+import PGF.Optimize
+import PGF.Probabilistic
+
+-- the main types
+
+type GF  = GF.Grammar.SourceGrammar
+type PGF = PGF.PGF
+
+-- some API functions - should take Options and perhaps some Env; return error msgs
+
+exBasedGF :: FilePath -> IO GF
+
+multiGF   :: FilePath -> IO GF
+
+getGF     :: FilePath -> IO GF
+
+cfGF      :: FilePath -> IO GF
+
+ebnfGF    :: FilePath -> IO GF
+
+emitGFO   :: GF -> IO ()
+
+readGFO   :: FilePath -> IO GF
+
+gf2pgf    :: GF -> PGF
+
+emitPGF   :: PGF -> IO ()
+
+readPGF   :: FilePath -> IO PGF
+
+emitJSGF  :: PGF -> IO ()
+
+emitSLF   :: PGF -> IO ()
+
+
+
+exBasedGF = error "no exBasedGF"
+
+multiGF = error "no multiGF"
+
+getGF = error "no getGF"
+
+cfGF = error "no cfGF"
+
+ebnfGF = error "no ebnfGF"
+
+emitGFO = error "no emitGFO"
+
+readGFO = error "no readGFO"
+
+gf2pgf = error "no gf2pgf" 
+
+emitPGF = error "no emitPGF"
+
+readPGF = error "no readPGF"
+
+emitJSGF = error "no emitJSGF"
+
+emitSLF = error "no emitSLF"
+
+
diff --git a/src/compiler/GF/Data/BacktrackM.hs b/src/compiler/GF/Data/BacktrackM.hs
--- a/src/compiler/GF/Data/BacktrackM.hs
+++ b/src/compiler/GF/Data/BacktrackM.hs
@@ -12,7 +12,7 @@
 -- Backtracking state monad, with r\/o environment
 -----------------------------------------------------------------------------
 
-{-# OPTIONS_GHC -fglasgow-exts #-}
+{-# LANGUAGE Rank2Types, MultiParamTypeClasses, FlexibleInstances #-}
 module GF.Data.BacktrackM (
                     -- * the backtracking state monad
 		    BacktrackM,
diff --git a/src/compiler/GF/Grammar/Binary.hs b/src/compiler/GF/Grammar/Binary.hs
--- a/src/compiler/GF/Grammar/Binary.hs
+++ b/src/compiler/GF/Grammar/Binary.hs
@@ -27,8 +27,8 @@
                 else return (identC bs)
 
 instance Binary a => Binary (MGrammar a) where
-  put (MGrammar ms) = put ms
-  get               = fmap MGrammar get
+  put = put . modules
+  get = fmap mGrammar get
 
 instance Binary a => Binary (ModInfo a) where
   put mi = do put (mtype mi,mstatus mi,flags mi,extend mi,mwith mi,opens mi,mexdeps mi,jments mi)
diff --git a/src/compiler/GF/Grammar/CF.hs b/src/compiler/GF/Grammar/CF.hs
--- a/src/compiler/GF/Grammar/CF.hs
+++ b/src/compiler/GF/Grammar/CF.hs
@@ -81,7 +81,7 @@
 --------------------------
 
 cf2gf :: String -> CF -> SourceGrammar
-cf2gf name cf = MGrammar [
+cf2gf name cf = mGrammar [
   (aname, addFlag (modifyFlags (\fs -> fs{optStartCat = Just cat}))
           (emptyModInfo{mtype = MTAbstract,       jments = abs})),
   (cname, emptyModInfo{mtype = MTConcrete aname, jments = cnc})
diff --git a/src/compiler/GF/Grammar/Grammar.hs b/src/compiler/GF/Grammar/Grammar.hs
--- a/src/compiler/GF/Grammar/Grammar.hs
+++ b/src/compiler/GF/Grammar/Grammar.hs
@@ -15,7 +15,7 @@
 -----------------------------------------------------------------------------
 
 module GF.Grammar.Grammar (SourceGrammar,
-        emptySourceGrammar,                
+        emptySourceGrammar,mGrammar,
         SourceModInfo,
         SourceModule,
         mapSourceModule,
@@ -56,7 +56,7 @@
 -- | grammar as presented to the compiler
 type SourceGrammar = MGrammar Info
 
-emptySourceGrammar = MGrammar []
+emptySourceGrammar = emptyMGrammar
 
 type SourceModInfo = ModInfo Info
 
diff --git a/src/compiler/GF/Grammar/Lockfield.hs b/src/compiler/GF/Grammar/Lockfield.hs
--- a/src/compiler/GF/Grammar/Lockfield.hs
+++ b/src/compiler/GF/Grammar/Lockfield.hs
@@ -32,7 +32,7 @@
     else RecType (rs ++ [(lockLabel c,  RecType [])])
 lockRecType c t = plusRecType t $ RecType [(lockLabel c,  RecType [])]
 
-unlockRecord :: Ident -> Term -> Err Term
+unlockRecord :: Monad m => Ident -> Term -> m Term
 unlockRecord c ft = do
   let (xs,t) = termFormCnc ft
   let lock = R [(lockLabel c,  (Just (RecType []),R []))]
diff --git a/src/compiler/GF/Grammar/Lookup.hs b/src/compiler/GF/Grammar/Lookup.hs
--- a/src/compiler/GF/Grammar/Lookup.hs
+++ b/src/compiler/GF/Grammar/Lookup.hs
@@ -17,7 +17,7 @@
 
 module GF.Grammar.Lookup (
            lookupIdent,
-           lookupIdentInfo,
+--         lookupIdentInfo,
            lookupOrigInfo,
            allOrigInfos,
            lookupResDef,
@@ -28,7 +28,8 @@
            lookupAbsDef, 
            lookupLincat, 
            lookupFunType,
-           lookupCatContext
+           lookupCatContext,
+           allOpers, allOpersTo
 	      ) where
 
 import GF.Data.Operations
@@ -43,6 +44,7 @@
 import Data.List (nub,sortBy)
 import Control.Monad
 import Text.PrettyPrint
+import qualified Data.Map as Map
 
 -- whether lock fields are added in reuse
 lock c = lockRecType c -- return
@@ -58,14 +60,16 @@
 lookupIdentInfo :: ModInfo a -> Ident -> Err a
 lookupIdentInfo mo i = lookupIdent i (jments mo)
 
+lookupQIdentInfo :: MGrammar info -> QIdent -> Err info
+lookupQIdentInfo gr (m,c) = flip lookupIdentInfo c =<< lookupModule gr m
+
 lookupResDef :: SourceGrammar -> QIdent -> Err Term
 lookupResDef gr (m,c)
   | isPredefCat c = lock c defLinType 
   | otherwise     = look m c
   where 
     look m c = do
-      mo <- lookupModule gr m
-      info <- lookupIdentInfo mo c
+      info <- lookupQIdentInfo gr (m,c)
       case info of
         ResOper _ (Just (L _ t)) -> return t
         ResOper _ Nothing  -> return (Q (m,c))
@@ -82,8 +86,7 @@
 
 lookupResType :: SourceGrammar -> QIdent -> Err Type
 lookupResType gr (m,c) = do
-  mo <- lookupModule gr m
-  info <- lookupIdentInfo mo c
+  info <- lookupQIdentInfo gr (m,c)
   case info of
     ResOper (Just (L _ t)) _ -> return t
 
@@ -99,8 +102,7 @@
 
 lookupOverload :: SourceGrammar -> QIdent -> Err [([Type],(Type,Term))]
 lookupOverload gr (m,c) = do
-    mo <- lookupModule gr m
-    info <- lookupIdentInfo mo c
+    info <- lookupQIdentInfo gr (m,c)
     case info of
       ResOverload os tysts -> do
             tss <- mapM (\x -> lookupOverload gr (x,c)) os
@@ -114,8 +116,7 @@
 -- | returns the original 'Info' and the module where it was found
 lookupOrigInfo :: SourceGrammar -> QIdent -> Err (Ident,Info)
 lookupOrigInfo gr (m,c) = do
-  mo <- lookupModule gr m
-  info <- lookupIdentInfo mo c
+  info <- lookupQIdentInfo gr (m,c)
   case info of
     AnyInd _ n  -> lookupOrigInfo gr (n,c)
     i           -> return (m,i)
@@ -153,8 +154,7 @@
 
 lookupAbsDef :: SourceGrammar -> Ident -> Ident -> Err (Maybe Int,Maybe [Equation])
 lookupAbsDef gr m c = errIn (render (text "looking up absdef of" <+> ppIdent c)) $ do
-  mo <- lookupModule gr m
-  info <- lookupIdentInfo mo c
+  info <- lookupQIdentInfo gr (m,c)
   case info of
     AbsFun _ a d _ -> return (a,fmap (map unLoc) d)
     AnyInd _ n     -> lookupAbsDef gr n c
@@ -163,8 +163,7 @@
 lookupLincat :: SourceGrammar -> Ident -> Ident -> Err Type
 lookupLincat gr m c | isPredefCat c = return defLinType --- ad hoc; not needed?
 lookupLincat gr m c = do
-  mo <- lookupModule gr m
-  info <- lookupIdentInfo mo c
+  info <- lookupQIdentInfo gr (m,c)
   case info of
     CncCat (Just (L _ t)) _ _ -> return t
     AnyInd _ n                -> lookupLincat gr n c
@@ -173,8 +172,7 @@
 -- | this is needed at compile time
 lookupFunType :: SourceGrammar -> Ident -> Ident -> Err Type
 lookupFunType gr m c = do
-  mo <- lookupModule gr m
-  info <- lookupIdentInfo mo c
+  info <- lookupQIdentInfo gr (m,c)
   case info of
     AbsFun (Just (L _ t)) _ _ _ -> return t
     AnyInd _ n                  -> lookupFunType gr n c
@@ -183,9 +181,42 @@
 -- | this is needed at compile time
 lookupCatContext :: SourceGrammar -> Ident -> Ident -> Err Context
 lookupCatContext gr m c = do
-  mo <- lookupModule gr m
-  info <- lookupIdentInfo mo c
+  info <- lookupQIdentInfo gr (m,c)
   case info of
     AbsCat (Just (L _ co)) -> return co
     AnyInd _ n             -> lookupCatContext gr n c
     _                      -> Bad (render (text "unknown category" <+> ppIdent c))
+
+
+-- this gives all opers and param constructors, also overloaded opers and funs, and the types, and locations
+-- notice that it only gives the modules that are reachable and the opers that are included
+
+allOpers :: SourceGrammar -> [((Ident,Ident),Type,(Int,Int))]
+allOpers gr = 
+  [((mo,op),typ,loc) | 
+      (mo,minc)  <- reachable,
+      Ok minfo   <- [lookupModule gr mo],
+      (op,info)  <- Map.toList $ jments minfo,
+      isInherited minc op, 
+      L loc typ  <- typesIn info
+  ] 
+ where
+  typesIn info = case info of
+    AbsFun  (Just ltyp) _ _ _ -> [ltyp] 
+    ResOper (Just ltyp) _     -> [ltyp] 
+    ResValue ltyp             -> [ltyp]
+    ResOverload _ tytrs       -> [ltyp | (ltyp,_) <- tytrs]
+    _                         -> []
+  reachable = case greatestResource gr of
+    Just r -> allExtendSpecs gr r
+    _ -> []
+
+--- not for dependent types
+allOpersTo :: SourceGrammar -> Type -> [((Ident,Ident),Type,(Int,Int))]
+allOpersTo gr ty = [op | op@(_,typ,_) <- allOpers gr, isProdTo ty typ] where
+  isProdTo t typ = eqProd typ t || case typ of
+    Prod _ _ a b -> isProdTo t b
+    _ -> False
+  eqProd f g = case (f,g) of
+    (Prod _ _ a1 b1, Prod _ _ a2 b2) -> eqProd a1 a2 && eqProd b1 b2
+    _ -> f == g
diff --git a/src/compiler/GF/Grammar/Macros.hs b/src/compiler/GF/Grammar/Macros.hs
--- a/src/compiler/GF/Grammar/Macros.hs
+++ b/src/compiler/GF/Grammar/Macros.hs
@@ -27,7 +27,9 @@
 import GF.Grammar.Predef
 import GF.Grammar.Printer
 
-import Control.Monad (liftM, liftM2)
+import Control.Monad.Identity(Identity(..))
+import qualified Data.Traversable as T(mapM)
+import Control.Monad (liftM, liftM2, liftM3)
 import Data.Char (isDigit)
 import Data.List (sortBy,nub)
 import Text.PrettyPrint
@@ -93,12 +95,12 @@
   co <- contextOfType t
   return $ not $ null [x | (_,x,Prod _ _ _ _) <- co]
 
-contextOfType :: Type -> Err Context
+contextOfType :: Monad m => Type -> m Context
 contextOfType typ = case typ of
   Prod b x a t -> liftM ((b,x,a):) $ contextOfType t
   _            -> return [] 
 
-termForm :: Term -> Err ([(BindType,Ident)], Term, [Term])
+termForm :: Monad m => Term -> m ([(BindType,Ident)], Term, [Term])
 termForm t = case t of
    Abs b x t  ->
      do (x', fun, args) <- termForm t
@@ -267,8 +269,8 @@
   (RecType r1, RecType r2) -> case
     filter (`elem` (map fst r1)) (map fst r2) of
       [] -> return (RecType (r1 ++ r2))
-      ls -> Bad $ render (text "clashing labels" <+> hsep (map ppLabel ls))
-  _ -> Bad $ render (text "cannot add record types" <+> ppTerm Unqualified 0 t1 <+> text "and" <+> ppTerm Unqualified 0 t2) 
+      ls -> fail $ render (text "clashing labels" <+> hsep (map ppLabel ls))
+  _ -> fail $ render (text "cannot add record types" <+> ppTerm Unqualified 0 t1 <+> text "and" <+> ppTerm Unqualified 0 t2) 
 
 plusRecord :: Term -> Term -> Err Term
 plusRecord t1 t2 =
@@ -277,7 +279,7 @@
                               (l,v) <- r1, not (elem l (map fst r2)) ] ++ r2))
    (_,    FV rs) -> mapM (plusRecord t1) rs >>= return . FV
    (FV rs,_    ) -> mapM (`plusRecord` t2) rs >>= return . FV
-   _ -> Bad $ render (text "cannot add records" <+> ppTerm Unqualified 0 t1 <+> text "and" <+> ppTerm Unqualified 0 t2)
+   _ -> fail $ render (text "cannot add records" <+> ppTerm Unqualified 0 t1 <+> text "and" <+> ppTerm Unqualified 0 t2)
 
 -- | default linearization type
 defLinType :: Type
@@ -444,7 +446,7 @@
            ]
   FV ts -> mapM strsFromTerm ts >>= return . concat
   Strs ts -> mapM strsFromTerm ts >>= return . concat  
-  _ -> Bad (render (text "cannot get Str from term" <+> ppTerm Unqualified 0 t))
+  _ -> fail (render (text "cannot get Str from term" <+> ppTerm Unqualified 0 t))
 
 -- | to print an Str-denoting term as a string; if the term is of wrong type, the error msg
 stringFromTerm :: Term -> String
@@ -453,98 +455,34 @@
 
 -- | to define compositional term functions
 composSafeOp :: (Term -> Term) -> Term -> Term
-composSafeOp op trm = case composOp (mkMonadic op) trm of
-  Ok t -> t
-  _ -> error "the operation is safe isn't it ?"
- where
- mkMonadic f = return . f
+composSafeOp op = runIdentity . composOp (return . op)
 
 -- | to define compositional term functions
 composOp :: Monad m => (Term -> m Term) -> Term -> m Term
 composOp co trm = 
  case trm of
-   App c a -> 
-     do c' <- co c
-        a' <- co a
-        return (App c' a')
-   Abs b x t ->
-     do t' <- co t
-        return (Abs b x t')
-   Prod b x a t -> 
-     do a' <- co a
-        t' <- co t
-        return (Prod b x a' t')
-   S c a -> 
-     do c' <- co c
-        a' <- co a
-        return (S c' a')
-   Table a c -> 
-     do a' <- co a
-        c' <- co c
-        return (Table a' c')
-   R r -> 
-     do r' <- mapAssignM co r
-        return (R r')
-   RecType r -> 
-     do r' <- mapPairListM (co . snd) r
-        return (RecType r')
-   P t i ->
-     do t' <- co t
-        return (P t' i)
-   ExtR a c -> 
-     do a' <- co a
-        c' <- co c
-        return (ExtR a' c')
-
-   T i cc -> 
-     do cc' <- mapPairListM (co . snd) cc
-        i'  <- changeTableType co i
-        return (T i' cc')
-
-   V ty vs ->
-     do ty' <- co ty
-        vs' <- mapM co vs
-        return (V ty' vs')
-
-   Let (x,(mt,a)) b -> 
-     do a'  <- co a
-        mt' <- case mt of
-                 Just t -> co t >>= (return . Just) 
-                 _ -> return mt
-        b'  <- co b
-        return (Let (x,(mt',a')) b')
-
-   C s1 s2 -> 
-     do v1 <- co s1 
-        v2 <- co s2
-        return (C v1 v2)
-   Glue s1 s2 -> 
-     do v1 <- co s1
-        v2 <- co s2
-        return (Glue v1 v2)
-   Alts t aa ->
-     do t' <- co t
-        aa' <- mapM (pairM co) aa
-        return (Alts t' aa')
-   FV ts -> mapM co ts >>= return . FV
-   Strs tt -> mapM co tt >>= return . Strs
-
-   EPattType ty -> 
-     do ty' <- co ty
-        return (EPattType ty')
-
-   ELincat c ty -> 
-     do ty' <- co ty
-        return (ELincat c ty')
-
-   ELin c ty -> 
-     do ty' <- co ty
-        return (ELin c ty')
-        
-   ImplArg t -> 
-     do t' <- co t
-        return (ImplArg t')
-
+   App c a          -> liftM2 App (co c) (co a)
+   Abs b x t        -> liftM (Abs b x) (co t)
+   Prod b x a t     -> liftM2 (Prod b x) (co a) (co t)
+   S c a            -> liftM2 S (co c) (co a)
+   Table a c        -> liftM2 Table (co a) (co c)
+   R r              -> liftM R (mapAssignM co r)
+   RecType r        -> liftM RecType (mapPairsM co r)
+   P t i            -> liftM2 P (co t) (return i)
+   ExtR a c         -> liftM2 ExtR (co a) (co c)
+   T i cc           -> liftM2 (flip T) (mapPairsM co cc) (changeTableType co i)
+   V ty vs          -> liftM2 V (co ty) (mapM co vs)
+   Let (x,(mt,a)) b -> liftM3 let' (co a) (T.mapM co mt) (co b)
+     where let' a' mt' b' = Let (x,(mt',a')) b'
+   C s1 s2          -> liftM2 C (co s1) (co s2)
+   Glue s1 s2       -> liftM2 Glue (co s1) (co s2)
+   Alts t aa        -> liftM2 Alts (co t) (mapM (pairM co) aa)
+   FV ts            -> liftM FV (mapM co ts)
+   Strs tt          -> liftM Strs (mapM co tt)
+   EPattType ty     -> liftM EPattType (co ty)
+   ELincat c ty     -> liftM (ELincat c) (co ty)
+   ELin c ty        -> liftM (ELin c) (co ty)
+   ImplArg t        -> liftM ImplArg (co t)
    _ -> return trm -- covers K, Vr, Cn, Sort, EPatt
 
 getTableType :: TInfo -> Err Type
@@ -621,6 +559,7 @@
     opty _ = []
     pts i = case i of
       ResOper pty pt -> [pty,pt]
+      ResOverload _ tyts -> concat [[Just ty, Just tr] | (ty,tr) <- tyts]
       ResParam (Just ps) _ -> [Just (L loc t) | L loc (_,cont) <- ps, (_,_,t) <- cont]
       CncCat pty _ _ -> [pty]
       CncFun _   pt _ -> [pt]  ---- (Maybe (Ident,(Context,Type))
diff --git a/src/compiler/GF/Grammar/Parser.y b/src/compiler/GF/Grammar/Parser.y
--- a/src/compiler/GF/Grammar/Parser.y
+++ b/src/compiler/GF/Grammar/Parser.y
@@ -5,6 +5,7 @@
          , pModDef
          , pModHeader
          , pExp
+	 , pTopDef
          ) where
 
 import GF.Infra.Ident
@@ -20,6 +21,7 @@
 }
 
 %name pModDef ModDef
+%name pTopDef TopDef
 %partial pModHeader ModHeader
 %name pExp Exp
 
@@ -132,11 +134,11 @@
 
 ModType :: { (ModuleType,Ident) }
 ModType
-  : 'abstract'  Ident                    { (MTAbstract,      $2) } 
-  | 'resource'  Ident                    { (MTResource,      $2) }
-  | 'interface' Ident                    { (MTInterface,     $2) }
-  | 'concrete'  Ident 'of' Ident         { (MTConcrete $4,   $2) }
-  | 'instance'  Ident 'of' Ident         { (MTInstance $4,   $2) }
+  : 'abstract'  Ident                     { (MTAbstract,      $2) } 
+  | 'resource'  Ident                     { (MTResource,      $2) }
+  | 'interface' Ident                     { (MTInterface,     $2) }
+  | 'concrete'  Ident 'of' Ident          { (MTConcrete $4,   $2) }
+  | 'instance'  Ident 'of' Included       { (MTInstance $4,   $2) }
 
 ModHeaderBody :: { ( [(Ident,MInclude)]
                    , Maybe (Ident,MInclude,[(Ident,Ident)])
diff --git a/src/compiler/GF/Grammar/PatternMatch.hs b/src/compiler/GF/Grammar/PatternMatch.hs
--- a/src/compiler/GF/Grammar/PatternMatch.hs
+++ b/src/compiler/GF/Grammar/PatternMatch.hs
@@ -146,7 +146,7 @@
     Empty    -> True
     EInt _   -> True
     _       -> False ---- isInArgVarForm trm
-
+{- -- unused and suspicuous, see contP in GF.Compile.Compute.Concrete instead
 varsOfPatt :: Patt -> [Ident]
 varsOfPatt p = case p of
   PV x -> [x]
@@ -155,7 +155,7 @@
   PR r    -> concat $ map (varsOfPatt . snd) r
   PT _ q -> varsOfPatt q
   _ -> []
-
+-}
 -- | to search matching parameter combinations in tables
 isMatchingForms :: [Patt] -> [Term] -> Bool
 isMatchingForms ps ts = all match (zip ps ts') where
diff --git a/src/compiler/GF/Grammar/Predef.hs b/src/compiler/GF/Grammar/Predef.hs
--- a/src/compiler/GF/Grammar/Predef.hs
+++ b/src/compiler/GF/Grammar/Predef.hs
@@ -32,6 +32,7 @@
           , cLength, cDrop, cTake, cTk, cDp, cEqStr, cOccur
           , cOccurs, cEqInt, cLessInt, cPlus, cShow, cRead
           , cToStr, cMapStr, cError
+          , cToUpper, cToLower, cIsUpper
 
           -- hacks
           , cMeta, cAs, cChar, cChars, cSeq, cAlt, cRep
@@ -115,6 +116,15 @@
 
 cDp :: Ident
 cDp = identC (BS.pack "dp")
+
+cToUpper :: Ident
+cToUpper = identC (BS.pack "toUpper")
+
+cToLower :: Ident
+cToLower = identC (BS.pack "toLower")
+
+cIsUpper :: Ident
+cIsUpper = identC (BS.pack "isUpper")
 
 cEqStr :: Ident
 cEqStr = identC (BS.pack "eqStr")
diff --git a/src/compiler/GF/Grammar/Printer.hs b/src/compiler/GF/Grammar/Printer.hs
--- a/src/compiler/GF/Grammar/Printer.hs
+++ b/src/compiler/GF/Grammar/Printer.hs
@@ -61,7 +61,7 @@
           MTResource         -> text "resource"  <+> ppIdent mn
           MTConcrete abs     -> text "concrete"  <+> ppIdent mn <+> text "of" <+> ppIdent abs
           MTInterface        -> text "interface" <+> ppIdent mn
-          MTInstance int     -> text "instance"  <+> ppIdent mn <+> text "of" <+> ppIdent int
+          MTInstance ie      -> text "instance"  <+> ppIdent mn <+> text "of" <+> ppExtends ie
 
       ppExtends (id,MIAll        ) = ppIdent id
       ppExtends (id,MIOnly   incs) = ppIdent id              <+> brackets (commaPunct ppIdent incs)
diff --git a/src/compiler/GF/Index.hs b/src/compiler/GF/Index.hs
new file mode 100644
--- /dev/null
+++ b/src/compiler/GF/Index.hs
@@ -0,0 +1,36 @@
+{--
+This module provide a function for indexing a pgf. 
+
+It reads the pgf and add a global flag, called "index", containing a string 
+with concrete names and size in bytes separated by a column.
+ex : "DisambPhrasebookEng:18778 PhrasebookBul:49971 PhrasebookCat:32738..."
+--}
+module GF.Index (addIndex) where
+
+import PGF
+import PGF.Data
+import PGF.Binary
+import Data.Binary
+import Data.ByteString.Lazy (readFile,length)
+import qualified Data.Map as Map
+import Data.Map (toAscList)
+import Data.List (intercalate)
+import qualified Data.ByteString.Lazy as BS
+
+addIndex  :: PGF -> PGF
+addIndex pgf = pgf {gflags = flags}  
+  where flags = Map.insert (mkCId "index") (LStr $ showIndex index) (gflags pgf)
+        index = getIndex pgf
+
+
+showIndex :: [(String,Int)] -> String
+showIndex = intercalate " " . map f
+  where f (name,size) = name ++ ":" ++ show size
+
+getsize :: Binary a => a -> Int
+getsize x = let bs = encode x in fromIntegral $ Data.ByteString.Lazy.length bs
+
+getIndex :: PGF -> [(String,Int)]
+getIndex pgf = cncindex
+  where cncindex = map f $ Data.Map.toAscList $ concretes pgf
+        f (cncname,cnc) = (show cncname, getsize cnc)
diff --git a/src/compiler/GF/Infra/BuildInfo.hs b/src/compiler/GF/Infra/BuildInfo.hs
new file mode 100644
--- /dev/null
+++ b/src/compiler/GF/Infra/BuildInfo.hs
@@ -0,0 +1,18 @@
+{-# LANGUAGE CPP #-}
+module GF.Infra.BuildInfo where
+import System.Info
+import Data.Version(showVersion)
+
+buildInfo =
+    "Built on "++os++"/"++arch
+    ++" with "++compilerName++"-"++showVersion compilerVersion
+    ++", flags:"
+#ifdef USE_INTERRUPT
+    ++" interrupt"
+#endif
+#ifdef SERVER_MODE
+    ++" server"
+#endif
+#ifdef CC_LAZY
+   ++ " cclazy"
+#endif
diff --git a/src/compiler/GF/Infra/Dependencies.hs b/src/compiler/GF/Infra/Dependencies.hs
--- a/src/compiler/GF/Infra/Dependencies.hs
+++ b/src/compiler/GF/Infra/Dependencies.hs
@@ -58,7 +58,7 @@
           modtype = mtype m,
           ofs     = case mtype m of 
                      MTConcrete i -> [i | yes i]
-                     MTInstance i -> [i | yes i]
+                     MTInstance (i,_) -> [i | yes i]
                      _ -> [],
           extendeds = nub $ filter yes $ map fst (extend m),
           openeds = nub $ filter yes $ map openedModule (opens m),
diff --git a/src/compiler/GF/Infra/Modules.hs b/src/compiler/GF/Infra/Modules.hs
--- a/src/compiler/GF/Infra/Modules.hs
+++ b/src/compiler/GF/Infra/Modules.hs
@@ -15,20 +15,21 @@
 --
 -- The same structure will be used in both source code and canonical.
 -- The parameters tell what kind of data is involved.
--- Invariant: modules are stored in dependency order
 -----------------------------------------------------------------------------
 
 module GF.Infra.Modules (
-        MGrammar(..), ModInfo(..), ModuleType(..),
+        MGrammar, ModInfo(..), ModuleType(..),
         MInclude (..),
+        mGrammar,modules,prependModule,
         extends, isInherited,inheritAll, 
-        updateMGrammar, updateModule, replaceJudgements, addFlag,
-        addOpenQualif, flagsModule, allFlags, mapModules,
+        updateModule, replaceJudgements, addFlag,
+        addOpenQualif, flagsModule, allFlags,
         OpenSpec(..),
         ModuleStatus(..),
         openedModule, depPathModule, allDepsModule, partOfGrammar,
         allExtends, allExtendSpecs, allExtendsPlus, allExtensions, 
-        searchPathModule, addModule,
+        searchPathModule,
+     -- addModule, mapModules, updateMGrammar, 
         emptyMGrammar, emptyModInfo,
         abstractOfConcrete, abstractModOfConcrete,
         lookupModule, lookupModuleType, lookupInfo,
@@ -52,8 +53,13 @@
 -- The parameters tell what kind of data is involved.
 -- Invariant: modules are stored in dependency order
 
-newtype MGrammar a = MGrammar {modules :: [(Ident,ModInfo a)]}
+--mGrammar = MGrammar
+--newtype MGrammar a = MGrammar {modules :: [(Ident,ModInfo a)]}
+
+data MGrammar a = MGrammar { moduleMap :: Map.Map Ident (ModInfo a),
+                             modules :: [(Ident,ModInfo a)] }
   deriving Show
+mGrammar ms = MGrammar (Map.fromList ms) ms
 
 data ModInfo a = ModInfo {
     mtype   :: ModuleType,
@@ -74,7 +80,7 @@
   | MTConcrete Ident
     -- ^ up to this, also used in GFO. Below, source only.
   | MTInterface
-  | MTInstance Ident
+  | MTInstance (Ident,MInclude)
   deriving (Eq,Show)
 
 data MInclude = MIAll | MIOnly [Ident] | MIExcept [Ident]
@@ -93,15 +99,15 @@
 inheritAll i = (i,MIAll)
 
 -- destructive update
-
+{-
 -- | dep order preserved since old cannot depend on new
 updateMGrammar :: MGrammar a -> MGrammar a -> MGrammar a
-updateMGrammar old new = MGrammar $
-  [(i,m) | (i,m) <- os, notElem i (map fst ns)] ++ ns
- where
-   os = modules old
-   ns = modules new
-
+updateMGrammar (MGrammar omap os) (MGrammar nmap ns) =
+  MGrammar (Map.union nmap omap) -- Map.union is left-biased
+           ([im | im@(i,m) <- os, i `notElem` nis] ++ ns)
+  where
+    nis = map fst ns
+-}
 updateModule :: ModInfo t -> Ident -> t -> ModInfo t
 updateModule (ModInfo mt ms fs me mw ops med js) i t = ModInfo mt ms fs me mw ops med (updateTree (i,t) js)
 
@@ -119,10 +125,10 @@
 
 allFlags :: MGrammar a -> Options
 allFlags gr = concatOptions [flags m | (_,m) <- modules gr]
-
+{-
 mapModules :: (ModInfo a -> ModInfo a) -> MGrammar a -> MGrammar a 
-mapModules f (MGrammar ms) = MGrammar (map (onSnd f) ms)
-
+mapModules f = mGrammar . map (onSnd f) . modules
+-}
 data OpenSpec = 
    OSimple Ident
  | OQualif Ident Ident
@@ -145,7 +151,7 @@
     fors m = 
       case mtype m of
         MTConcrete i   -> [OSimple i]
-        MTInstance i   -> [OSimple i]
+        MTInstance (i,_)   -> [OSimple i]
         _              -> []
     exts m = map OSimple (extends m)
 
@@ -159,7 +165,7 @@
 
 -- | select just those modules that a given one depends on, including itself
 partOfGrammar :: MGrammar a -> (Ident,ModInfo a) -> MGrammar a
-partOfGrammar gr (i,m) = MGrammar [mo | mo@(j,_) <- mods, elem j modsFor] 
+partOfGrammar gr (i,m) = mGrammar [mo | mo@(j,_) <- mods, elem j modsFor]
   where
     mods = modules gr
     modsFor = (i:) $ map openedModule $ allDepsModule gr m
@@ -189,7 +195,7 @@
     Ok m -> i : concatMap (allExtendsPlus gr) (exts m)
     _    -> []
   where
-    exts m = extends m ++ [j | MTInstance j <- [mtype m]]
+    exts m = extends m ++ [j | MTInstance (j,_) <- [mtype m]]
 
 -- | conversely: all modules that extend a given module, incl. instances of interface
 allExtensions :: MGrammar a -> Ident -> [Ident]
@@ -198,20 +204,27 @@
     Ok m -> let es = exts i in es ++ concatMap (allExtensions gr) es
     _    -> []
  where
-   exts i = [j | (j,m) <- mods, elem i (extends m) 
-                             || elem (MTInstance i) [mtype m]]
+   exts i = [j | (j,m) <- mods, elem i (extends m) || isInstanceOf i m]
    mods = modules gr
+   isInstanceOf i m = case mtype m of
+     MTInstance (j,_) -> j == i
+     _ -> False
 
 -- | initial search path: the nonqualified dependencies
 searchPathModule :: ModInfo a -> [Ident]
 searchPathModule m = [i | OSimple i <- depPathModule m]
 
+{-
 -- | a new module can safely be added to the end, since nothing old can depend on it
 addModule :: MGrammar a -> Ident -> ModInfo a -> MGrammar a
-addModule gr name mi = MGrammar $ (modules gr ++ [(name,mi)])
+--addModule gr name mi = MGrammar $ (modules gr ++ [(name,mi)])
+addModule gr name mi = MGrammar $ Map.insert name mi (moduleMap gr)
+-}
 
+prependModule (MGrammar mm ms) im@(i,m) = MGrammar (Map.insert i m mm) (im:ms)
+
 emptyMGrammar :: MGrammar a
-emptyMGrammar = MGrammar []
+emptyMGrammar = mGrammar []
 
 emptyModInfo :: ModInfo a
 emptyModInfo = ModInfo MTResource MSComplete noOptions [] Nothing [] [] emptyBinTree
@@ -226,24 +239,20 @@
     _ -> Bad $ render (text "expected concrete" <+> ppIdent c)
 
 abstractModOfConcrete :: MGrammar a -> Ident -> Err (ModInfo a)
-abstractModOfConcrete gr c = do
-  a <- abstractOfConcrete gr c
-  lookupModule gr a
-
+abstractModOfConcrete gr c = lookupModule gr =<< abstractOfConcrete gr c
 
 -- the canonical file name
 
 --- canonFileName s = prt s ++ ".gfc"
 
 lookupModule :: MGrammar a -> Ident -> Err (ModInfo a)
-lookupModule gr m = case lookup m (modules gr) of
+--lookupModule gr m = case lookup m (modules gr) of
+lookupModule gr m = case Map.lookup m (moduleMap gr) of
   Just i  -> return i
   Nothing -> Bad $ render (text "unknown module" <+> ppIdent m <+> text "among" <+> hsep (map (ppIdent . fst) (modules gr)))
 
 lookupModuleType :: MGrammar a -> Ident -> Err ModuleType
-lookupModuleType gr m = do
-  mi <- lookupModule gr m
-  return $ mtype mi
+lookupModuleType gr m = mtype `fmap` lookupModule gr m
 
 lookupInfo :: ModInfo a -> Ident -> Err a
 lookupInfo mo i = lookupTree showIdent i (jments mo)
diff --git a/src/compiler/GF/Infra/Option.hs b/src/compiler/GF/Infra/Option.hs
--- a/src/compiler/GF/Infra/Option.hs
+++ b/src/compiler/GF/Infra/Option.hs
@@ -74,6 +74,7 @@
 -- Types
 
 data Mode = ModeVersion | ModeHelp | ModeInteractive | ModeRun | ModeCompiler
+          | ModeServer
   deriving (Show,Eq,Ord)
 
 data Verbosity = Quiet | Normal | Verbose | Debug
@@ -167,6 +168,7 @@
       optEncoding        :: String,
       optOptimizations   :: Set Optimization,
       optOptimizePGF     :: Bool,
+      optMkIndexPGF     :: Bool,
       optCFGTransforms   :: Set CFGTransform,
       optLibraryPath     :: [FilePath],
       optStartCat        :: Maybe String,
@@ -266,8 +268,13 @@
       optResName         = Nothing,
       optPreprocessors   = [],
       optEncoding        = "latin1",
+-- #ifdef CC_LAZY
+--       optOptimizations   = Set.fromList [OptStem,OptCSE],
+-- #else
       optOptimizations   = Set.fromList [OptStem,OptCSE,OptExpand,OptParametrize],
+-- #endif
       optOptimizePGF     = False,
+      optMkIndexPGF     = False,
       optCFGTransforms   = Set.fromList [CFGRemoveCycles, CFGBottomUpFilter, 
                                          CFGTopDownFilter, CFGMergeIdentical],
       optLibraryPath     = [],
@@ -291,6 +298,7 @@
      Option [] ["batch"] (NoArg (mode ModeCompiler)) "Run in batch compiler mode.",
      Option [] ["interactive"] (NoArg (mode ModeInteractive)) "Run in interactive mode (default).",
      Option [] ["run"] (NoArg (mode ModeRun)) "Run in interactive mode, showing output only (no other messages).",
+     Option [] ["server"] (NoArg (mode ModeServer)) "Run in HTTP server mode.",
      Option ['E'] [] (NoArg (phase Preproc)) "Stop after preprocessing (with --preproc).",
      Option ['C'] [] (NoArg (phase Convert)) "Stop after conversion to .gf.",
      Option ['c'] [] (NoArg (phase Compile)) "Stop after compiling to .gfo (default) .",
@@ -360,6 +368,8 @@
                 "Select an optimization package. OPT = all | values | parametrize | none",
      Option [] ["optimize-pgf"] (NoArg (optimize_pgf True))
                 "Enable or disable global grammar optimization. This could significantly reduce the size of the final PGF file",
+     Option [] ["mk-index"] (NoArg (mkIndex True))
+                "Add an index to the pgf file",
      Option [] ["stem"] (onOff (toggleOptimize OptStem) True) "Perform stem-suffix analysis (default on).",
      Option [] ["cse"] (onOff (toggleOptimize OptCSE) True) "Perform common sub-expression elimination (default on).",
      Option [] ["cfg"] (ReqArg cfgTransform "TRANS") "Enable or disable specific CFG transformations. TRANS = merge, no-merge, bottomup, no-bottomup, ...",
@@ -421,6 +431,7 @@
                          Nothing -> fail $ "Unknown optimization package: " ++ x
                          
        optimize_pgf x = set $ \o -> o { optOptimizePGF = x }
+       mkIndex x = set $ \o -> o { optMkIndexPGF = x }
 
        toggleOptimize x b = set $ setOptimization' x b
 
diff --git a/src/compiler/GF/Infra/UseIO.hs b/src/compiler/GF/Infra/UseIO.hs
--- a/src/compiler/GF/Infra/UseIO.hs
+++ b/src/compiler/GF/Infra/UseIO.hs
@@ -26,6 +26,7 @@
 import System.Environment
 import System.Exit
 import System.CPUTime
+import System.Cmd
 import Text.Printf
 import Control.Monad
 import Control.Exception(evaluate)
@@ -185,9 +186,30 @@
 
   return a
 
+-- * File IO
+
 writeUTF8File :: FilePath -> String -> IO ()
 writeUTF8File fpath content = do
   h <- openFile fpath WriteMode
   hSetEncoding h utf8
   hPutStr h content
   hClose h
+
+readBinaryFile path = hGetContents =<< openBinaryFile path ReadMode
+writeBinaryFile path s = withBinaryFile path WriteMode (flip hPutStr s)
+
+-- * Functions to limit acesss to arbitrary IO and system commands
+restricted io =
+    either (const io) (const $ fail message) =<< try (getEnv "GF_RESTRICTED")
+  where
+    message =
+      "This operation is not allowed when GF is running in restricted mode."
+
+restrictedSystem = restricted . system
+
+
+-- Because GHC adds the confusing text "user error" for failures cased by
+-- calls to fail.
+ioErrorText e = if isUserError e
+                then ioeGetErrorString e
+                else show e
diff --git a/src/compiler/GF/Text/Clitics.hs b/src/compiler/GF/Text/Clitics.hs
new file mode 100644
--- /dev/null
+++ b/src/compiler/GF/Text/Clitics.hs
@@ -0,0 +1,40 @@
+module GF.Text.Clitics (getClitics,getCliticsText) where
+
+import Data.List
+
+-- AR 6/2/2011
+-- Analyse word as stem+clitic whenever 
+--   (1) clitic is in clitic list
+--   (2) either 
+--      (a) stem is in Lexicon
+--      (b) stem can be analysed as stem0+clitic0
+-- 
+-- Examples: 
+--   Italian amarmi = amar+mi
+--   Finnish autossanikohan = autossa+ni+kohan
+--
+-- The analysis gives all results, including the case where the whole word is in Lexicon.
+-- 
+-- The clitics in the list are expected to be reversed.
+
+getClitics :: (String -> Bool) -> [String] -> String -> [[String]]
+getClitics isLex rclitics = map (reverse . map reverse) . clits . reverse where
+  clits rword = ifLex rword [rclit:more | 
+                  rclit <- rclitics, stem <- splits rclit rword, more <- clits stem]
+  splits c = maybe [] return . stripPrefix c
+
+  ifLex w ws = if isLex (reverse w) then [w] : ws else ws
+
+
+getCliticsText :: (String -> Bool) -> [String] -> [String] -> [String]
+getCliticsText isLex rclitics = 
+  map unwords . sequence . map (map render . getClitics isLex rclitics) 
+ where
+  render = unwords . intersperse "&+"
+
+
+-- example
+
+getClitics1 = getClitics exlex1 exclits1
+exlex1   = flip elem ["auto", "naise", "rahan","maa","maahan","maahankaan"]
+exclits1 = map reverse ["ni","ko","han","pas","nsa","kin","kaan"]
diff --git a/src/compiler/GF/Text/Transliterations.hs b/src/compiler/GF/Text/Transliterations.hs
--- a/src/compiler/GF/Text/Transliterations.hs
+++ b/src/compiler/GF/Text/Transliterations.hs
@@ -1,5 +1,6 @@
 module GF.Text.Transliterations (
   transliterate,
+  transliterateWithFile,
   transliteration,
   characterTable,
   transliterationPrintNames
@@ -27,6 +28,10 @@
   't':'o':'_':t -> fmap appTransToUnicode $ transliteration t
   _ -> Nothing
 
+transliterateWithFile :: String -> String -> Bool -> (String -> String)
+transliterateWithFile name src isFrom =
+  (if isFrom then appTransFromUnicode else appTransToUnicode) (getTransliterationFile name src)
+
 transliteration :: String -> Maybe Transliteration
 transliteration s = Map.lookup s allTransliterations 
 
@@ -38,6 +43,7 @@
   ("greek", transGreek),
   ("hebrew", transHebrew),
   ("persian", transPersian),
+  ("nepali", transNepali),
   ("telugu", transTelugu),
   ("thai", transThai),
   ("urdu", transUrdu)
@@ -82,6 +88,14 @@
     tzip ts us = [(t,u) | (t,u) <- zip ts us, t /= "-"]
     uzip us ts = [(u,t) | (u,t) <- zip us ts, t /= "-"]
 
+getTransliterationFile :: String -> String -> Transliteration
+getTransliterationFile name = uncurry (mkTransliteration name) . codes
+ where
+  codes = unzip . map (mkOne . words) . filter (not . all isSpace) . lines
+  mkOne ws = case ws of
+    [c]:t:_ -> (t,fromEnum c)  -- ä a:
+    u:t:_   -> (t,read u)      -- 228 a: OR 0xe4
+    _ -> error $ "not a valid transliteration:" ++ unwords ws
 
 unchar :: String -> [String]
 unchar s = case s of
@@ -124,13 +138,13 @@
   (mkTransliteration "Urdu" allTrans allCodes) where
     allCodes = [0x0622 .. 0x062f] ++ [0x0630 .. 0x063a] ++ [0x0641 .. 0x0648] ++ 
                [0x0654,0x0658,0x0679,0x067e,0x0686,0x0688,0x0691,0x0698,0x06af,0x06c1,0x06c3,0x06cc,0x06ba,0x06be,0x06d2] ++
-			   [0x06f0 .. 0x06f9]
+			   [0x06f0 .. 0x06f9] ++ [0x061f,0x06D4]
     allTrans = words $
       "A - w^ - y^ a b - t C j H K d " ++  -- 0622 - 062f
       "Z r z s X S Z- t- z- e G "   ++  -- 0630 - 063a
       "f q k l m n - w "    ++  -- 0641 - 0648
       "$ n- T p c D R x g h t: y N h' E " ++  -- 0654,658,679,67e,686,688,698,6af,6c1,6c3,6cc,6ba,6be,6d2
-      "N0 N1 N2 N3 N4 N5 N6 N7 N8 N9 " 
+      "N0 N1 N2 N3 N4 N5 N6 N7 N8 N9 " ++ "? ."
     
 
 transArabic :: Transliteration
@@ -150,13 +164,28 @@
   allTrans = words $
     "   V  A: A? w? A- y? A  b  t. t  t-  j  H  K  d " ++  -- 0621 - 062f
     "W  r  z  s  C  S  D  T  Z  c  G "                 ++  -- 0630 - 063a
-    "   f  q  k  l  m  n  h  v  y. y a. u. i. a  u "   ++  -- 0641 - 064f
+    "   f  q  -  l  m  n  h  v  -  y. a. u. i. a  u "   ++  -- 0640 - 064f
     "i  v2 o  a: V+ V- i: a+ " ++                          -- 0650 - 0657 
-    "p  c^ J  g "
+    "p  c^ J  k  g  y "
   allCodes = [0x0621..0x062f] ++ [0x0630..0x063a] ++ 
              [0x0641..0x064f] ++ [0x0650..0x0657] ++ 
-             [0x067e,0x0686,0x0698,0x06af]
+             [0x067e,0x0686,0x0698,0x06a9,0x06af,0x06cc]
 
+transNepali :: Transliteration
+transNepali = mkTransliteration "Nepali" allTrans allCodes where
+  allTrans = words $
+    "z+  z= " ++ 
+    "-  V  M  h: -  H  A  i: I: f  F  Z  -  -  -  e: " ++
+    "E: -  -  O  W  k  K  g  G  n: C  c  j  J  Y  q  " ++
+    "Q  x  X  N  t  T  d  D  n  -  p  P  b  B  m  y  " ++
+    "r  -  l  L  -  v  S  z  s  h  -  -  ~  `  a  i  " ++
+    "I  u  U  R  -  -  -  e  E  -  -  o  w  x: -  -  " ++
+    "O: -  _  -  -  -  -  -  -  -  -  -  -  -  -  -  " ++
+    "-  -  -  -  .  >  0  1  2  3  4  5  6  7  8  9  " ++
+    "-  -  -  -  -  -  -  -  -  -  -  -  -  -  -  -  "
+  allCodes = [0x200c,0x200d] ++ [0x0900 .. 0x097f]
+
+
 transHebrew :: Transliteration
 transHebrew = mkTransliteration "unvocalized Hebrew" allTrans allCodes where
   allTrans = words $
@@ -189,31 +218,29 @@
 
 transAncientGreek :: Transliteration
 transAncientGreek = mkTransliteration "ancient Greek" allTrans allCodes where
-  allTrans = words $
-    "-  -  -  -  -  -  -  -  -  -  -  -  -  -  -  - " ++
-    "i= A  B  G  D  E  Z  H  V  I  K  L  M  N  X  O  " ++
-    "P  R  -  S  T  Y  F  C  Q  W  I- Y- -  -  -  -  " ++
-    "y= a  b  g  d  e  z  h  v  i  k  l  m  n  x  o  " ++
-    "p  r  s* s  t  y  f  c  q  w  i- y- -  -  -  -  " ++   
-    "a)  a(  a)` a(` a)' a(' a)~ a(~ A)  A(  A)` A(` A)' A(' A)~ A(~ " ++
-    "e)  e(  e)` e(` e)' e(' -   -   E)  E(  E)` E(` E)' E(' -   -   " ++
-    "h)  h(  h)` h(` h)' h(' h)~ h(~ H)  H(  H)` H(` H)' H(' H)~ H(~ " ++
-    "i)  i(  i)` i(` i)' i(' i)~ i(~ I)  I(  I)` I(` I)' I(' I)~ I(~ " ++
-    "o)  o(  o)` o(` o)' o(' -   -   O)  O(  O)` O(` O)' O(' -   -   " ++
-    "y)  y(  y)` y(` y)' y(' y)~ y(~ -   Y(  -   Y(` -   Y(' -   Y(~ " ++
-    "w)  w(  w)` w(` w)' w(' w)~ w(~ W)  W(  W)` W(` W)' W(' W)~ W(~ " ++
-    "a`  a'  e`  e'  h`  h'  i`  i'  o`  o'  y`  y'  w`  w'  -   -   " ++
-    "a|( a|) a|)` a|(` a|)' a|(' a|)~ a|(~ - - - - - - - - " ++ -- 1f80- 
-    "h|( h|) h|)` h|(` h|)' h|(' h|)~ h|(~ - - - - - - - - " ++ -- 1f90- 
-    "w|( w|) w|)` w|(` w|)' w|(' w|)~ w|(~ - - - - - - - - " ++ -- 1fa0-
-    "a.  a_  a|` a|  a|'  -  a~ a|~ - - - - - - - - " ++ -- 1fb0-
-    "-  -  h|` h|  h|'  -  h~ h|~ - - - - - - - - " ++ -- 1fc0-
-    "i. i_ i=` i=' -    -  i~ i=~ - - - - - - - - " ++ -- 1fd0-
-    "y. y_ y=` y=' r)   r( y~ y|~ - - - - - - - - " ++ -- 1fe0-
-    "-  -  w|` w|  w|'  -  w~ w|~ - - - - - - - - "    -- 1ff0-
-  allCodes = [0x0380 .. 0x03cf] ++ [0x1f00 .. 0x1fff]
-
-
+ allTrans = words $
+   "-  -  -  -  -  -  -  -  -  -  -  -  -  -  -  - " ++
+   "i= A  B  G  D  E  Z  H  V  I  K  L  M  N  X  O  " ++
+   "P  R  -  S  T  Y  F  C  Q  W  I- Y- -  -  -  -  " ++
+   "y= a  b  g  d  e  z  h  v  i  k  l  m  n  x  o  " ++
+   "p  r  s* s  t  y  f  c  q  w  i- y- -  -  -  -  " ++
+   "a)  a(  a)` a(` a)' a(' a)~ a(~ A)  A(  A)` A(` A)' A(' A)~ A(~ " ++
+   "e)  e(  e)` e(` e)' e(' -   -   E)  E(  E)` E(` E)' E(' -   -   " ++
+   "h)  h(  h)` h(` h)' h(' h)~ h(~ H)  H(  H)` H(` H)' H(' H)~ H(~ " ++
+   "i)  i(  i)` i(` i)' i(' i)~ i(~ I)  I(  I)` I(` I)' I(' I)~ I(~ " ++
+   "o)  o(  o)` o(` o)' o(' -   -   O)  O(  O)` O(` O)' O(' -   -   " ++
+   "y)  y(  y)` y(` y)' y(' y)~ y(~ -   Y(  -   Y(` -   Y(' -   Y(~ " ++
+   "w)  w(  w)` w(` w)' w(' w)~ w(~ W)  W(  W)` W(` W)' W(' W)~ W(~ " ++
+   "a`  a'  e`  e'  h`  h'  i`  i'  o`  o'  y`  y'  w`  w'  -   -   " ++
+   "a|) a|( a|)` a|(` a|)' a|(' a|)~ a|(~ - - - - - - - - " ++ -- 1f80-  -- HL: a|) a|( for a|( a|)
+   "h|) h|( h|)` h|(` h|)' h|(' h|)~ h|(~ - - - - - - - - " ++ -- 1f90-  -- HL: h|) h|( for h|( h|)
+   "w|) w|( w|)` w|(` w|)' w|(' w|)~ w|(~ - - - - - - - - " ++ -- 1fa0-  -- HL: w|) w|( for w|( w|)
+   "a.  a_  a|` a|  a|'  -  a~ a|~ - - - - - - - - " ++ -- 1fb0-
+   "-  -  h|` h|  h|'  -  h~ h|~ - - - - - - - - " ++ -- 1fc0-
+   "i. i_ i=` i=' -    -  i~ i=~ - - - - - - - - " ++ -- 1fd0-
+   "y. y_ y=` y=' r)   r( y~ y=~ - - - - - - - - " ++ -- 1fe0-   -- HL: y=~ for y|~
+   "-  -  w|` w|  w|'  -  w~ w|~ - - - - - - - - "    -- 1ff0-
+ allCodes = [0x0380 .. 0x03cf] ++ [0x1f00 .. 0x1fff]
 
  
 transAmharic :: Transliteration
diff --git a/src/compiler/GFC.hs b/src/compiler/GFC.hs
--- a/src/compiler/GFC.hs
+++ b/src/compiler/GFC.hs
@@ -5,6 +5,7 @@
 import PGF.CId
 import PGF.Data
 import PGF.Optimize
+import GF.Index
 import GF.Compile
 import GF.Compile.Export
 
@@ -59,7 +60,8 @@
 unionPGFFiles opts fs = 
     do pgfs <- mapM readPGFVerbose fs
        let pgf0 = foldl1 unionPGF pgfs
-           pgf = if flag optOptimizePGF opts then optimizePGF pgf0 else pgf0
+           pgf1 = if flag optOptimizePGF opts then optimizePGF pgf0 else pgf0
+           pgf = if flag optMkIndexPGF opts then addIndex pgf1 else pgf1
            pgfFile = grammarName opts pgf <.> "pgf"
        if pgfFile `elem` fs 
          then putStrLnE $ "Refusing to overwrite " ++ pgfFile
diff --git a/src/compiler/GFI.hs b/src/compiler/GFI.hs
--- a/src/compiler/GFI.hs
+++ b/src/compiler/GFI.hs
@@ -1,5 +1,5 @@
 {-# LANGUAGE ScopedTypeVariables, CPP #-}
-module GFI (mainGFI,mainRunGFI) where
+module GFI (mainGFI,mainRunGFI,mainServerGFI) where
 
 import GF.Command.Interpreter
 import GF.Command.Importing
@@ -7,18 +7,20 @@
 import GF.Command.Abstract
 import GF.Command.Parse
 import GF.Data.ErrM
-import GF.Data.Operations (chunks)
+import GF.Data.Operations (chunks,err)
 import GF.Grammar hiding (Ident)
 import GF.Grammar.Parser (runP, pExp)
 import GF.Grammar.ShowTerm
+import GF.Grammar.Lookup (allOpers,allOpersTo)
 import GF.Compile.Rename
-import GF.Compile.Compute.Concrete (computeConcrete)
-import GF.Compile.TypeCheck.Concrete (inferLType)
+import GF.Compile.Compute.Concrete (computeConcrete,checkPredefError)
+import GF.Compile.TypeCheck.Concrete (inferLType,ppType)
 import GF.Infra.Dependencies
 import GF.Infra.CheckM
 import GF.Infra.UseIO
 import GF.Infra.Option
 import GF.Infra.Modules (greatestResource, modules, emptyModInfo)
+import GF.Infra.BuildInfo (buildInfo)
 import qualified System.Console.Haskeline as Haskeline
 import GF.Text.Coding
 
@@ -30,19 +32,21 @@
 
 import Data.Char
 import Data.Maybe
-import Data.List(isPrefixOf)
+import Data.List(isPrefixOf,isInfixOf,partition)
 import qualified Data.Map as Map
 import qualified Data.ByteString.Char8 as BS
 import qualified Text.ParserCombinators.ReadP as RP
 import System.IO
-import System.Cmd
 import System.CPUTime
 import System.Directory
 import Control.Exception
 import Control.Monad
 import Data.Version
+import Text.PrettyPrint (render)
 import GF.System.Signal
---import System.IO.Error (try)
+#ifdef SERVER_MODE
+import GFServer(server)
+#endif
 #ifdef mingw32_HOST_OS
 import System.Win32.Console
 import System.Win32.NLS
@@ -51,160 +55,247 @@
 import Paths_gf
 
 mainRunGFI :: Options -> [FilePath] -> IO ()
-mainRunGFI opts files = do
-  let opts1 = addOptions (modifyFlags (\f -> f{optVerbosity=Quiet})) opts
-  gfenv <- emptyGFEnv
-  gfenv <- importInEnv gfenv opts1 files
-  loop opts1 gfenv
-  return ()
+mainRunGFI opts files = shell (beQuiet opts) files
 
+beQuiet = addOptions (modifyFlags (\f -> f{optVerbosity=Quiet}))
+
 mainGFI :: Options -> [FilePath] -> IO ()
 mainGFI opts files = do
   putStrLn welcome
-  gfenv <- emptyGFEnv
-  gfenv <- importInEnv gfenv opts files
-  loop opts gfenv
-  return ()
+  shell opts files
 
+shell opts files = loop opts =<< importInEnv emptyGFEnv opts files
+
+#ifdef SERVER_MODE
+mainServerGFI opts0 files =
+    server (execute1 opts) =<< importInEnv emptyGFEnv opts files
+  where opts = beQuiet opts0
+#else
+mainServerGFI opts files =
+  error "GF has not been compiled with server mode support"
+#endif
+
+-- | Read end execute commands until it is time to quit
+loop :: Options -> GFEnv -> IO ()
+loop opts gfenv = maybe (return ()) (loop opts) =<< readAndExecute1 opts gfenv
+
+-- | Read and execute one command, returning Just an updated environment for
+-- | the next command, or Nothing when it is time to quit
+readAndExecute1 :: Options -> GFEnv -> IO (Maybe GFEnv)
+readAndExecute1 opts gfenv = execute1 opts gfenv =<< readCommand opts gfenv
+
+-- | Read a command
+readCommand :: Options -> GFEnv -> IO String
+readCommand opts gfenv0 =
+    case flag optMode opts of
+      ModeRun -> tryGetLine
+      _       -> fetchCommand gfenv0
+
+-- | Optionally show how much CPU time was used to run an IO action
+optionallyShowCPUTime :: Options -> IO a -> IO a
+optionallyShowCPUTime opts act 
+  | not (verbAtLeast opts Normal) = act
+  | otherwise = do t0 <- getCPUTime
+                   r <- act
+                   t1 <- getCPUTime
+                   let dt = t1-t0
+                   putStrLnFlush $ show (dt `div` 1000000000) ++ " msec"
+                   return r
+
+{-
 loopOptNewCPU opts gfenv' 
  | not (verbAtLeast opts Normal) = return gfenv'
  | otherwise = do 
      cpu' <- getCPUTime
      putStrLnFlush (show ((cpu' - cputime gfenv') `div` 1000000000) ++ " msec")
      return $ gfenv' {cputime = cpu'}
-
-loop :: Options -> GFEnv -> IO GFEnv
-loop opts gfenv0 = do
-  let loopNewCPU = loopOptNewCPU opts
-  let isv = verbAtLeast opts Normal
-  let ifv act = if isv then act else return ()
-  let env = commandenv gfenv0
-  let sgr = sourcegrammar gfenv0
-  s0 <- case flag optMode opts of
-          ModeRun -> tryGetLine
-          _       -> fetchCommand gfenv0
-  let gfenv = gfenv0 {history = s0 : history gfenv0}
-  let 
-    pwords = case words s0 of
-      w:ws -> getCommandOp w :ws
-      ws -> ws
-  
-  -- special commands, requiring source grammar in env
+-}
 
-  case pwords of
-{-
-    "eh":w:_ -> do
+-- | Execute a given command, returning Just an updated environment for
+-- | the next command, or Nothing when it is time to quit
+execute1 :: Options -> GFEnv -> String -> IO (Maybe GFEnv)
+execute1 opts gfenv0 s0 =
+  interruptible $ optionallyShowCPUTime opts $
+  case pwords s0 of
+ -- special commands, requiring source grammar in env
+  {-"eh":w:_ -> do
              cs <- readFile w >>= return . map words . lines
              gfenv' <- foldM (flip (process False benv)) gfenv cs
-             loopNewCPU gfenv'
--}
+             loopNewCPU gfenv' -}
+    "q" :_   -> quit
+    "!" :ws  -> system_command ws
+    "cc":ws  -> compute_concrete ws
+    "so":ws  -> show_operations ws
+    "dg":ws  -> dependency_graph ws
+    "eh":ws  -> eh ws
+    "i" :ws  -> import_ ws
+ -- other special commands, working on GFEnv
+    "e" :_   -> empty
+    "dc":ws  -> define_command ws
+    "dt":ws  -> define_tree ws
+    "ph":_   -> print_history
+    "r" :_   -> reload_last
+    "se":ws  -> set_encoding ws
+ -- ordinary commands, working on CommandEnv
+    _        -> do interpretCommandLine env s0
+                   continue gfenv
+  where
+--  loopNewCPU = fmap Just . loopOptNewCPU opts
+    continue = return . Just
+    stop = return Nothing
+    env = commandenv gfenv0
+    sgr = sourcegrammar gfenv0
+    gfenv = gfenv0 {history = s0 : history gfenv0}
+    pwords s = case words s of
+                 w:ws -> getCommandOp w :ws
+                 ws -> ws
 
-      "q":_  -> ifv (putStrLn "See you.") >> return gfenv
+    interruptible act =
+      either (\e -> printException e >> return (Just gfenv)) return
+        =<< runInterruptibly act 
 
-      _ -> do
-        r <- runInterruptibly $ case pwords of
+  -- Special commands:
 
-          "!":ws -> do
-             system $ unwords ws
-             loopNewCPU gfenv
-          "cc":ws -> do
-             let
-               pOpts style q ("-table"  :ws) = pOpts TermPrintTable   q           ws
-               pOpts style q ("-all"    :ws) = pOpts TermPrintAll     q           ws
-               pOpts style q ("-list"   :ws) = pOpts TermPrintList    q           ws
-               pOpts style q ("-one"    :ws) = pOpts TermPrintOne     q           ws
-               pOpts style q ("-default":ws) = pOpts TermPrintDefault q           ws
-               pOpts style q ("-unqual" :ws) = pOpts style            Unqualified ws
-               pOpts style q ("-qual"   :ws) = pOpts style            Qualified   ws
-               pOpts style q             ws  = (style,q,unwords ws)
-               
-               (style,q,s) = pOpts TermPrintDefault Qualified (tail (words s0))
+    quit = do when (verbAtLeast opts Normal) $ putStrLn "See you."
+              stop
 
-               checkComputeTerm gr (L _ t) = do
-                 mo <- maybe (Bad "no source grammar in scope") return $ greatestResource gr
-                 ((t,_),_) <- runCheck $ do t <- renameSourceTerm gr mo t
-                                            inferLType gr [] t
-                 computeConcrete sgr t
+    system_command ws = do restrictedSystem $ unwords ws ; continue gfenv
 
-             case runP pExp (encodeUnicode utf8 s) of
-               Left (_,msg) -> putStrLn msg
-               Right t      -> case checkComputeTerm sgr (codeTerm (decodeUnicode utf8 . BS.pack) (L (0,0) t)) of
-                                 Ok  x -> putStrLn $ showTerm sgr style q x
-                                 Bad s -> putStrLn $ s
-             loopNewCPU gfenv
-          "dg":ws -> do
-             let stop = case ws of
-                   ('-':'o':'n':'l':'y':'=':fs):_ -> Just $ chunks ',' fs
-                   _ -> Nothing
-             writeFile "_gfdepgraph.dot" (depGraph stop sgr)
-             putStrLn "wrote graph in file _gfdepgraph.dot"
-             loopNewCPU gfenv
-          "eh":w:_ -> do
-             cs <- readFile w >>= return . map (interpretCommandLine env) . lines
-             loopNewCPU gfenv
+    compute_concrete ws = do
+      let
+        pOpts style q ("-table"  :ws) = pOpts TermPrintTable   q           ws
+        pOpts style q ("-all"    :ws) = pOpts TermPrintAll     q           ws
+        pOpts style q ("-list"   :ws) = pOpts TermPrintList    q           ws
+        pOpts style q ("-one"    :ws) = pOpts TermPrintOne     q           ws
+        pOpts style q ("-default":ws) = pOpts TermPrintDefault q           ws
+        pOpts style q ("-unqual" :ws) = pOpts style            Unqualified ws
+        pOpts style q ("-qual"   :ws) = pOpts style            Qualified   ws
+        pOpts style q             ws  = (style,q,unwords ws)
 
-          "i":args -> do
-              gfenv' <- case parseOptions args of
-                          Ok (opts',files) -> do
-                            curr_dir <- getCurrentDirectory
-                            lib_dir  <- getLibraryDirectory (addOptions opts opts')
-                            importInEnv gfenv (addOptions opts (fixRelativeLibPaths curr_dir lib_dir opts')) files
-                          Bad err -> do 
-                            putStrLn $ "Command parse error: " ++ err
-                            return gfenv
-              loopNewCPU gfenv'
+        (style,q,s) = pOpts TermPrintDefault Qualified (tail (words s0))
 
-  -- other special commands, working on GFEnv
-          "e":_ -> loopNewCPU $ gfenv {
-             commandenv=emptyCommandEnv, sourcegrammar = emptySourceGrammar
+      case runP pExp (encodeUnicode utf8 s) of
+        Left (_,msg) -> putStrLn msg
+        Right t      -> case checkComputeTerm sgr (codeTerm (decodeUnicode utf8 . BS.pack) t) of
+                          Ok  x -> putStrLn $ showTerm sgr style q x
+                          Bad s -> putStrLn $ s
+      continue gfenv
+
+    show_operations ws =
+      case greatestResource sgr of
+        Nothing -> putStrLn "no source grammar in scope" >> continue gfenv
+        Just mo -> do
+          let (os,ts) = partition (isPrefixOf "-") ws
+          let greps = [drop 6 o | o <- os, take 6 o == "-grep="]
+          let isRaw = elem "-raw" os 
+          ops <- case ts of
+             _:_ -> do
+               let Right t = runP pExp (encodeUnicode utf8 (unwords ts))
+               ty <- err error return $ checkComputeTerm sgr t
+               return $ allOpersTo sgr ty
+             _   -> return $ allOpers sgr 
+          let sigs = [(op,ty) | ((mo,op),ty,pos) <- ops]
+          let printer = if isRaw 
+                          then showTerm sgr TermPrintDefault Qualified
+                          else (render . GF.Compile.TypeCheck.Concrete.ppType)
+          let printed = [unwords [showIdent op, ":", printer ty] | (op,ty) <- sigs]
+          mapM_ putStrLn [l | l <- printed, all (flip isInfixOf l) greps]
+          continue gfenv
+
+    dependency_graph ws =
+      do let stop = case ws of
+               ('-':'o':'n':'l':'y':'=':fs):_ -> Just $ chunks ',' fs
+               _ -> Nothing
+         restricted $ writeFile "_gfdepgraph.dot" (depGraph stop sgr)
+         putStrLn "wrote graph in file _gfdepgraph.dot"
+         continue gfenv
+
+    eh [w] = -- Ehhh? Reads commands from a file, but does not execute them
+      do cs <- readFile w >>= return . map (interpretCommandLine env) . lines
+         continue gfenv
+    eh _   = do putStrLn "eh command not parsed"
+                continue gfenv
+
+    import_ args = 
+      do gfenv' <- case parseOptions args of
+                     Ok (opts',files) -> do
+                       curr_dir <- getCurrentDirectory
+                       lib_dir  <- getLibraryDirectory (addOptions opts opts')
+                       importInEnv gfenv (addOptions opts (fixRelativeLibPaths curr_dir lib_dir opts')) files
+                     Bad err -> do 
+                       putStrLn $ "Command parse error: " ++ err
+                       return gfenv
+         continue gfenv'
+
+    empty = continue $ gfenv {
+              commandenv=emptyCommandEnv, sourcegrammar = emptySourceGrammar
              }
 
-          "dc":f:ws -> do
-             case readCommandLine (unwords ws) of
-               Just comm -> loopNewCPU $ gfenv {
-                 commandenv = env {
-                   commandmacros = Map.insert f comm (commandmacros env)
-                   }
-                 }
-               _ -> putStrLn "command definition not parsed" >> loopNewCPU gfenv
+    define_command (f:ws) =
+        case readCommandLine (unwords ws) of
+           Just comm -> continue $ gfenv {
+             commandenv = env {
+               commandmacros = Map.insert f comm (commandmacros env)
+               }
+             }
+           _ -> dc_not_parsed
+    define_command _ = dc_not_parsed
 
-          "dt":f:ws -> do
-             case readExpr (unwords ws) of
-               Just exp -> loopNewCPU $ gfenv {
-                 commandenv = env {
-                   expmacros = Map.insert f exp (expmacros env)
-                   }
-                 }
-               _ -> putStrLn "value definition not parsed" >> loopNewCPU gfenv
+    dc_not_parsed = putStrLn "command definition not parsed" >> continue gfenv
 
-          "ph":_ -> 
-            mapM_ putStrLn (reverse (history gfenv0)) >> loopNewCPU gfenv
-          "se":c:_ -> do
-             let cod = renameEncoding c
+    define_tree (f:ws) =
+        case readExpr (unwords ws) of
+          Just exp -> continue $ gfenv {
+            commandenv = env {
+              expmacros = Map.insert f exp (expmacros env)
+              }
+            }
+          _ -> dt_not_parsed
+    define_tree _ = dt_not_parsed
+
+    dt_not_parsed = putStrLn "value definition not parsed" >> continue gfenv
+
+    print_history = mapM_ putStrLn (reverse (history gfenv0))>> continue gfenv
+
+    reload_last = do
+      let imports = [(s,ws) | s <- history gfenv0, ("i":ws) <- [pwords s]]
+      case imports of
+        (s,ws):_ -> do
+          putStrLn $ "repeating latest import: " ++ s
+          import_ ws
+        _ -> do
+          putStrLn $ "no import in history"  
+          continue gfenv
+
+    set_encoding [c] =
+      do let cod = renameEncoding c
 #ifdef mingw32_HOST_OS
-             case cod of
-               'C':'P':c -> case reads c of
-                              [(cp,"")] -> do setConsoleCP cp
-                                              setConsoleOutputCP cp
-                              _         -> return ()
-               "UTF-8"   -> do setConsoleCP 65001
-                               setConsoleOutputCP 65001
-               _         -> return ()
+         case cod of
+           'C':'P':c -> case reads c of
+                          [(cp,"")] -> do setConsoleCP cp
+                                          setConsoleOutputCP cp
+                          _         -> return ()
+           "UTF-8"   -> do setConsoleCP 65001
+                           setConsoleOutputCP 65001
+           _         -> return ()
 #endif
-             enc <- mkTextEncoding cod
-             hSetEncoding stdin  enc
-             hSetEncoding stdout enc
-             hSetEncoding stderr enc
-             loopNewCPU gfenv
+         enc <- mkTextEncoding cod
+         hSetEncoding stdin  enc
+         hSetEncoding stdout enc
+         hSetEncoding stderr enc
+         continue gfenv
+    set_encoding _ = putStrLn "se command not parsed" >> continue gfenv
 
-  -- ordinary commands, working on CommandEnv
-          _ -> do
-            interpretCommandLine env s0
-            loopNewCPU gfenv
---        gfenv' <- return $ either (const gfenv) id r
-        gfenv' <- either (\e -> (print e >> return gfenv)) return r
-        loop opts gfenv'
 
+printException e = maybe (print e) (putStrLn . ioErrorText) (fromException e)
+
+checkComputeTerm sgr t = do
+                 mo <- maybe (Bad "no source grammar in scope") return $ greatestResource sgr
+                 ((t,_),_) <- runCheck $ do t <- renameSourceTerm sgr mo t
+                                            inferLType sgr [] t
+                 t1 <- computeConcrete sgr t
+                 checkPredefError sgr t1
+
 fetchCommand :: GFEnv -> IO String
 fetchCommand gfenv = do
   path <- getAppUserDataDirectory "gf_history"
@@ -214,10 +305,11 @@
           Haskeline.historyFile = Just path,
           Haskeline.autoAddHistory = True
         }
-  res <- Haskeline.runInputT settings (Haskeline.getInputLine (prompt (commandenv gfenv)))
+  res <- runInterruptibly $ Haskeline.runInputT settings (Haskeline.getInputLine (prompt (commandenv gfenv)))
   case res of
-    Nothing -> return "q"
-    Just s  -> return s
+    Left  _        -> return ""
+    Right Nothing  -> return "q"
+    Right (Just s) -> return s
 
 importInEnv :: GFEnv -> Options -> [FilePath] -> IO GFEnv
 importInEnv gfenv opts files
@@ -253,6 +345,7 @@
   "         *  *  *              ",
   "                              ",
   "This is GF version "++showVersion version++". ",
+  buildInfo,
   "License: see help -license.   ",
   "Bug reports: http://code.google.com/p/grammatical-framework/issues/list"
   ]
@@ -266,13 +359,13 @@
 data GFEnv = GFEnv {
   sourcegrammar :: SourceGrammar, -- gfo grammar -retain
   commandenv :: CommandEnv,
-  history    :: [String],
-  cputime    :: Integer
+  history    :: [String]--,
+--cputime    :: Integer
   }
 
-emptyGFEnv :: IO GFEnv
-emptyGFEnv = do
-  return $ GFEnv emptySourceGrammar{modules=[(identW,emptyModInfo)]} (mkCommandEnv emptyPGF) [] 0
+emptyGFEnv :: GFEnv
+emptyGFEnv =
+  GFEnv (mGrammar [(identW,emptyModInfo)]) (mkCommandEnv emptyPGF) [] {-0-}
 
 wordCompletion gfenv (left,right) = do
   case wc_type (reverse left) of
diff --git a/src/compiler/GFServer.hs b/src/compiler/GFServer.hs
new file mode 100644
--- /dev/null
+++ b/src/compiler/GFServer.hs
@@ -0,0 +1,148 @@
+module GFServer(server) where
+import Data.List(partition)
+import qualified Data.Map as M
+import Control.Monad(when)
+import System.Random(randomRIO)
+import System.IO(stdout,stderr)
+import System.IO.Error(try,ioError)
+import System.Directory(doesDirectoryExist,doesFileExist,createDirectory,
+                        setCurrentDirectory,getCurrentDirectory)
+import System.FilePath(takeExtension,(</>))
+import Control.Concurrent.MVar(newMVar,modifyMVar)
+import Network.URI(URI(..))
+import Network.Shed.Httpd(initServer,Request(..),Response(..),queryToArguments,
+                          noCache)
+import System.IO.Silently(hCapture)
+import Codec.Binary.UTF8.String(encodeString)
+import GF.Infra.UseIO(readBinaryFile)
+
+-- * Configuraiton
+port = 41295
+documentRoot = "."
+
+-- * HTTP server
+server execute1 state0 = 
+  do state <- newMVar M.empty
+     putStrLn $ "Starting server on port "++show port
+     initServer port (modifyMVar state . handle state0 execute1)
+
+-- * HTTP request handler
+handle state0 execute1 (Request method URI{uriPath=path,uriQuery=q} hdrs body) state =
+    do let qs = decodeQ $ 
+                case method of
+                  "GET" -> queryToArguments q
+                  "POST" -> queryToArguments body
+
+       logPutStrLn $ method++" "++path++" "++show qs
+       case path of
+         "/new" -> new
+--       "/stop" ->
+--       "/start" ->
+         "/gfshell" -> inDir qs $ look "command" . command
+         "/upload" -> inDir qs upload
+         '/':rpath -> do resp <- serveStaticFile (translatePath rpath)
+                         return (state,resp)
+         _ -> return (state,resp400 path)
+  where
+    look field ok qs =
+        case partition ((==field).fst) qs of
+          ((_,value):qs1,qs2) -> ok value (qs1++qs2)
+          _ -> bad
+      where
+        bad = return (state,resp400 $ "no "++field++" in request")
+    
+    inDir qs ok = look "dir" cd qs
+      where
+        cd ('/':dir@('t':'m':'p':_)) qs' =
+          do cwd <- getCurrentDirectory
+             b <- try $ setCurrentDirectory dir
+             case b of
+               Left _ -> return (state,resp404 dir)
+               Right _ -> do logPutStrLn $ "cd "++dir
+                             r <- try (ok dir qs')
+                             setCurrentDirectory cwd
+                             either ioError return r
+        cd dir _ = return (state,resp400 $ "unacceptable directory "++dir)
+
+    new =
+      do dir <- newDirectory
+         return (state,ok200 dir)
+
+    command dir cmd _ =
+      do let st = maybe state0 id $ M.lookup dir state
+         (output,st') <- hCapture [stdout,stderr] (execute1 st cmd)
+         let state' = maybe state (flip (M.insert dir) state) st'
+         return (state',ok200 output)
+
+    upload dir files=
+      do let update (name,contents)= updateFile (name++".gf") contents
+         mapM_ update files
+         return (state,resp204)
+
+-- * Static content
+
+translatePath path = documentRoot</>path -- hmm, check for ".."
+
+serveStaticFile path =
+  do b <- doesDirectoryExist path
+     let path' = if b then path </> "index.html" else path
+     serveStaticFile' path'
+
+serveStaticFile' path =
+  do b <- doesFileExist path
+     let (t,rdFile,encode) = contentTypeFromExt (takeExtension path)
+     if b then fmap (ok200' (ct t) . encode) $ rdFile path
+          else return (resp404 path)
+
+-- * Logging
+logPutStrLn = putStrLn
+
+-- * Standard HTTP responses
+ok200 body   = Response 200 [plainUTF8,noCache] (encodeString body)
+ok200' t body = Response 200 [t] body
+resp204      = Response 204 [] "" -- no content
+resp400 msg  = Response 400 [plain] $ "Bad request: "++msg++"\n"
+resp404 path = Response 404 [plain] $ "Not found: "++path++"\n"
+
+-- * Content types
+plain = ct "text/plain"
+plainUTF8 = ct "text/plain; charset=UTF-8"
+ct t = ("Content-Type",t)
+
+contentTypeFromExt ext =
+  case ext of
+    ".html" -> text "html"
+    ".htm" -> text "html"
+    ".xml" -> text "xml"
+    ".txt" -> text "plain"
+    ".css" -> text "css"
+    ".js" -> text "javascript"
+    ".png" -> bin "image/png"
+    ".jpg" -> bin "image/jpg"
+    _ -> bin "application/octet-stream"
+  where
+     text subtype = ("text/"++subtype++"; charset=UTF-8",readFile,encodeString)
+     bin t = (t,readBinaryFile,id)
+
+-- * IO utilities
+updateFile path new =
+  do old <- try $ readFile path
+     when (Right new/=old) $ do logPutStrLn $ "Updating "++path
+                                seq (either (const 0) length old) $
+                                    writeFile path new
+
+
+newDirectory =
+  do k <- randomRIO (1,maxBound::Int)
+     let path = "tmp/gfse."++show k
+     b <- try $ createDirectory path
+     case b of
+       Left _ -> newDirectory
+       Right _ -> return ('/':path)
+
+-- * misc utils
+
+decodeQ qs = [(decode n,decode v)|(n,v)<-qs]
+decode = map decode1
+decode1 '+' = ' ' -- httpd-shed bug workaround
+decode1 c   = c
diff --git a/src/editor/simple/Makefile b/src/editor/simple/Makefile
new file mode 100644
--- /dev/null
+++ b/src/editor/simple/Makefile
@@ -0,0 +1,7 @@
+
+save: save.hs
+	ghc --make save.hs
+
+install::
+	@make save
+	rsync -avz --exclude .DS_Store P *.html *.css *.js ../../runtime/javascript/minibar/support.js *.cgi *.manifest save www.grammaticalframework.org:/usr/local/www/GF/demos/gfse
diff --git a/src/editor/simple/P/1306856253_weather_06.png b/src/editor/simple/P/1306856253_weather_06.png
new file mode 100644
Binary files /dev/null and b/src/editor/simple/P/1306856253_weather_06.png differ
diff --git a/src/editor/simple/P/1307545089_weather_04.png b/src/editor/simple/P/1307545089_weather_04.png
new file mode 100644
Binary files /dev/null and b/src/editor/simple/P/1307545089_weather_04.png differ
diff --git a/src/editor/simple/P/w1s.jpg b/src/editor/simple/P/w1s.jpg
new file mode 100644
Binary files /dev/null and b/src/editor/simple/P/w1s.jpg differ
diff --git a/src/editor/simple/P/w2s.jpg b/src/editor/simple/P/w2s.jpg
new file mode 100644
Binary files /dev/null and b/src/editor/simple/P/w2s.jpg differ
diff --git a/src/editor/simple/P/w3s.jpg b/src/editor/simple/P/w3s.jpg
new file mode 100644
Binary files /dev/null and b/src/editor/simple/P/w3s.jpg differ
diff --git a/src/editor/simple/P/w4s.jpg b/src/editor/simple/P/w4s.jpg
new file mode 100644
Binary files /dev/null and b/src/editor/simple/P/w4s.jpg differ
diff --git a/src/editor/simple/TODO b/src/editor/simple/TODO
new file mode 100644
--- /dev/null
+++ b/src/editor/simple/TODO
@@ -0,0 +1,36 @@
++ Safety question before deleting a grammar
++ Check identifier syntax
++ Allow lincat for deleted cat to be deleted
++ Allow lin for deleted fun to be deleted
++ Apply category alpha conversion in concrete syntax
++ Remove a concrete syntax
++ Apply function alpha conversion in concrete syntax
++ Change lhs of lins when function type is changed
+
+- Allow languages other than the ones in the given list to be added
++ Export as plain text
++ Allow definitions to be reordered
+
++ 1. possibility to compile the grammar set, returning a URL to a translator app
++ 2a. possibility to import modules - resource libraries
+- 2b. possibility to import modules - user's own auxiliaries
+- 3. possibility to upload own modules
++ 4. access to the created files in an on-line shell (making testing possible)
+- 5. rule-to-rule type checking and guidance (e.g. with library oper
+     suggestions)
++    Try grammars in the Translation Quiz
++    Show lincat and lin before params and opers below
++    Create a new concrete syntax by copying an existing one.
+-    Easy access to compute_concrete from the editor
+-    Instead of starting with an empty grammar, start a new grammar by copying
+     an example.
+
++ compile only the uploaded grammar even if other grammars are present
++ 'flags startcat' is needed for grammars with only one category (since the
+   default startcat is S, even if it doesn't exist)
+
+- Bug! After adding a 2nd def of a fun with a different type and then deleting
+  the old fun, the corresponding lin will have the wrong lhs.
+
++ Bug! The startcat menu shows the first category by default, but the startcat
+  flag is actually not set until a selection is made from the menu.
diff --git a/src/editor/simple/about.html b/src/editor/simple/about.html
new file mode 100644
--- /dev/null
+++ b/src/editor/simple/about.html
@@ -0,0 +1,237 @@
+<!DOCTYPE HTML>
+<html>
+<head>
+<title>About: GF online editor for simple multilingual grammars</title>
+<link rel="stylesheet" type="text/css" href="editor.css" title="Cloud">
+<link rel="alternate stylesheet" type="text/css" href="molto.css" title="MOLTO">
+
+<link rel=author href="http://www.cse.chalmers.se/~hallgren/" title="Thomas Hallgren">
+
+<meta name = "viewport" content = "width = device-width">
+<meta http-equiv="Content-type" content="text/html;charset=UTF-8">
+<meta charset="UTF-8">
+
+<script type="text/javascript" src="slideshow.js"></script>
+
+</head>
+
+<body>
+<h1>GF online editor for simple multilingual grammars</h1>
+
+<div class=right>
+  <div class=slideshow>
+    <img onload="start_slideshow(this,{delay:5,fade:0.3})" src="P/w1s.jpg" alt="[GF online editor screen shoot]">
+    <img class=hidden src="P/w2s.jpg" alt="[GF online editor screen shoot]">
+    <img class=hidden src="P/w3s.jpg" alt="[GF online editor screen shoot]">
+    <img class=hidden src="P/w4s.jpg" alt="[GF online editor screen shoot]">
+  </div>
+</div>
+<h2>About</h2>
+
+Traditionally, <a href="http://www.grammaticalframework.org/">GF</a>
+grammars are created in a text editor and tested in the
+GF shell. Text editors know very little (if anything) about the syntax of
+GF grammars, and thus provide little guidance for novice GF users. Also, the
+grammar author has to download and install the GF software on his/her own
+computer.
+
+<p>
+In contrast, the
+<a href="."><em>GF online editor for simple multilingual grammars</em></a>
+is available online, making it easier to get started. All that
+is needed is a reasonably modern web browser. Even Android and iOS devices
+can be used.
+<p>
+The editor
+also guides the grammar author by showing a skeleton grammar file and
+hinting how the parts should be filled in. When a new part is added to the
+grammar, it is immediately checked for errors.
+
+<p>
+Editing operations are accessed by clicking on editing symbols embedded
+in the grammar display:
+<span class=more>+</span>=Add an item,
+<span class=delete>×</span>=Delete an item,
+<span class=edit>%</span>=Edit an item.
+These are revealed when hovering over items. On touch devices, hovering is
+in some cases simulated by tapping, but there is also a button at the bottom
+of the display to "Enable editing on touch devices" that reveals all editing
+symbols.
+
+<p>
+In spite of its name, the editor runs entierly in the web
+browser, so once you have opened the web page, you can
+<strong>continue editing</strong> grammars even while you are
+<strong>offline</strong>.
+
+<h3>Limitations</h3>
+
+<p>
+At the moment, the editor supports only a small subset of the GF grammar
+notation.
+Proper error checking is done for abstract syntax, but not (yet) for concrete
+syntax.
+
+<p>
+The grammars created with this editor always consists of one file for the
+abstract syntax, and one file for each concrete syntax.
+
+<h4>Abstract syntax</h4>
+
+The supported abstract syntax corresponds to context-free grammars
+(no dependent types). The definition of an abstract syntax is limited to
+<ul>
+  <li>a list of <em>category names</em>,
+  <var>Cat<sub>1</sub></var> ; ... ; <var>Cat<sub>n</sub></var>,
+  <li>a list of <em>functions</em> of the form
+  <var>Fun</var> : <var>Cat<sub>1</sub></var> -> ... ->
+  <var>Cat<sub>n</sub></var>,
+  <li>and a <em>start category</em>.
+</ul>
+
+Available editing operations:
+<ul>
+  <li>Categories can be added, removed and renamed. When renaming a category,
+  occurences of it in function types will be updated accordingly.
+  <li>Functions can be added, removed and edited. Concrete syntaxes are updated
+  to reflect changes.
+  <li>Functions can be reordered using drag-and-drop.
+</ul>
+
+Error checks:
+
+<ul>
+  <li>Syntactically incorrect function definitions are refused.
+  <li>Semantic problem such as duplicated definitions or references to
+  undefined categories, are highlighted.
+</ul>
+
+<h4>Concrete syntax</h4>
+
+At the moment, the concrete syntax for a language <var>L</var> is limited to
+<ul>
+  <li>opening the Resource Grammar Library modules
+  <code>Syntax</code><var>L</var> and <code>Paradigms</code><var>L</var>,
+  <li><em>linearization types</em> for the categories in the abstract syntax,
+  <li><em>linearizations</em> for the functions in the abstract syntax,
+  <li><em>parameter type definitions</em>,
+  <var>P</var> = <var>C<sub>1</sub></var> | ... |<var>C<sub>n</sub></var>,
+  <li>and <em>operation definitions</em>, <var>op</var> = <var>expr</var>,
+   <var>op</var> : <var>type</var> = <var>expr</var>,
+</ul>
+
+Available editing operations:
+<ul>
+  <li>The LHSs of the linearization types and linearizations are determined by
+  the abstract syntax and do not need to be entered manually.
+  The RHSs can
+  be edited.
+  <li>Parameter types can be added, removed and edited.
+  <li>Operation definitons can be added, removed and edited.
+  <li>Definitions can be reordered (using drag-and-drop)
+</ul>
+Also,
+
+<ul>
+  <li>When a new concrete syntax is added to the grammar, a copy of the
+  currently open concrete syntax is created, since copying and modifying
+  is usually easier than creating something new from scratch.
+  (If the abstract syntax is currently open, the new conrete syntax will
+  start out empty.)
+  <li>When adding a new concrete syntax, you normally pick one of the supported
+  languages from a list. The language code and the file name is determined
+  automatically. But you can also pick <em>Other</em> from the list and change
+  the language code afterwards to add a concrete syntax for a language
+  that is not in the list.
+</ul>
+
+Error checks:
+<ul>
+  <li>The RHSs in the concrete syntax are checked
+  for syntactic correctness by the editor as they are entered.
+  (TODO: the syntax of parameter types is not check at the moment.)
+  <li>Duplicated definitions are highlighted. Checks for other
+  semantic errors are delayed until the grammar is compiled.
+</ul>
+
+<h3>Compiling and testing grammars</h3>
+
+When pressing the <strong>Compile</strong> button, the grammar will be compiled
+with GF, and any errors not detected by the editor will be reported.
+If the grammar is free from errors the user can then
+test the grammar by clicking on links to the online GF shell, the Minibar or
+the Translation Quiz.
+
+<h3><img class=right src="P/1307545089_weather_04.png" alt="">
+<img class=right src="P/1306856253_weather_06.png" alt="">Grammars in the
+cloud</h3>
+
+While the editor normally stores grammars locally in the browser, it is also
+possible to store grammars in the cloud.  Grammars can be stored in the cloud
+just for backup, or to make them accessible from multiple devices.
+
+<p>
+There is no automatic synchronization between local grammars and the cloud.
+Instead, the user should press
+<img src="P/1306856253_weather_06.png" alt="[Cloud Upload]">
+to upload the grammars to the cloud, and press
+<img src="P/1307545089_weather_04.png" alt="[Cloud download]">
+to download grammars from the cloud. In both cases, complete grammars
+are copied and older versions at the destination will be overwritten.
+When a grammar is deleted, both the local copy and the copy in the cloud
+is deleted.
+
+<p>
+Each device is initially assigned to its own unique cloud. Each device can thus
+have its own set of grammars that are not available on other devices.  It is
+also possible to merge clouds and share a common set of grammars between
+multiple devices: when uploading grammars to the cloud, a link to this grammar
+cloud appears. Accessing this link from another device will cause the clouds of
+the two devices to be merged. After this, grammars uploaded from one of the
+devices can be downloaded on the other devices. Any number devices can join the
+same grammar cloud in this way.
+
+<p>
+<strong>Note</strong> that while it is possible to copy grammars between
+multiple devices, there is no way to merge concurrent edits from multiple
+devices. If the same grammar is uploaded to the
+cloud from multiple devices, the last upload wins. Thus the current
+implementation is suitable for a single user switching between different
+devices, but not recommended for sharing grammars between multiple users.
+
+<p>
+Also <strong>note</strong> that each grammar is assigned a unique identity
+when it is first created. Renaming a grammar does not change its identity.
+This means that name changes are propagated between devices like other changes.
+
+<h3>Future work</h3>
+
+This prototype gives an idea of how a web based GF grammar editor could work.
+While this editor is implemented in JavaScript and runs in the web browser,
+we do not expect to create a full implementation of GF that runs in the
+web browser, but let the editor communicate with a server running GF.
+<p>
+By developing a GF server with an appropriate API, it should
+be possible to extend the editor to support a larger fragment of GF,
+to do proper error checking and make more of the existing GF shell functionality
+accessible directly from the editor.
+<p>
+The current grammar cloud service is very primitive. In particular, it is not
+suitable for multiple users developing a grammar in collaboration.
+
+<h3>Related documents</h3>
+<ul>
+  <li><a href="http://www.grammaticalframework.org/compiler-api">The GF Grammar
+  Compiler API</a>.
+  <li><a href="http://www.grammaticalframework.org/~hallgren/Talks/GF/gf-ide.html">Slides</a> from a presentation at the MOLTO meeting in Göteborg, March 2011.
+</ul>
+
+<hr>
+<div class=modtime><small>
+<!-- hhmts start --> Last modified: Fri Jul 29 17:44:00 CEST 2011 <!-- hhmts end -->
+  </small></div>
+<address>
+<a href="http://www.cse.chalmers.se/~hallgren/">TH</a>
+<img src="http://www.altocumulus.org/~hallgren/online.cgi?icon" alt="">
+</address>
+</body> </html>
diff --git a/src/editor/simple/cloud.js b/src/editor/simple/cloud.js
new file mode 100644
--- /dev/null
+++ b/src/editor/simple/cloud.js
@@ -0,0 +1,146 @@
+
+function with_dir(cont) {
+    var dir=local.get("dir","");
+    if(dir) cont(dir);
+    else ajax_http_get("upload.cgi?dir",
+		       function(dir) {
+			   local.put("dir",dir);
+			   cont(dir);
+		       });
+}
+
+function remove_cloud_grammar(g) {
+    var dir=local.get("dir")
+    if(dir && g.unique_name) {
+	var path=dir+"/"+g.unique_name+".json"
+	ajax_http_get("upload.cgi?rm="+encodeURIComponent(path),debug);
+    }
+}
+
+// Upload the grammar to the server and check it for errors
+function upload(g) {
+    function upload2(dir) {
+	var form=node("form",{method:"post",action:"upload.cgi"+dir},
+		      [hidden(g.basename+".gf",show_abstract(g))])
+	for(var i in g.concretes)
+	    form.appendChild(hidden(g.basename+g.concretes[i].langcode+".gf",
+				    show_concrete(g.basename)(g.concretes[i])));
+	editor.appendChild(form);
+	form.submit();
+	form.parentNode.removeChild(form);
+    }
+
+    with_dir(upload2);
+}
+
+// Upload the grammar to store it in the cloud
+function upload_json(cont) {
+    function upload3(resptext,status) {
+	local.put("json_uploaded",Date.now());
+	//debug("Upload complete")
+	if(cont) cont();
+	else {
+	    var sharing=element("sharing");
+	    if(sharing) sharing.innerHTML=resptext;
+	}
+    }
+    function upload2(dir) {
+	var prefix=dir.substr(10)+"-" // skip "/tmp/gfse."
+	//debug("New form data");
+	//var form=new FormData(); // !!! Doesn't work on Android 2.2!
+	var form="",sep="";
+	//debug("Preparing form data");
+	for(var i=0;i<local.count;i++) {
+	    var g=local.get(i,null);
+	    if(g) {
+		if(!g.unique_name) {
+		    g.unique_name=prefix+i;
+		    save_grammar(g)
+		}
+		//form.append(g.unique_name+".json",JSON.stringify(g));
+		form+=sep+encodeURIComponent(g.unique_name+".json")+"="+
+		    encodeURIComponent(JSON.stringify(g))
+		sep="&"
+	    }
+	}
+	//debug("Upload to "+prefix);
+	ajax_http_post("upload.cgi"+dir,form,upload3,cont)
+    }
+
+    with_dir(upload2);
+}
+
+function download_json() {
+    var dir=local.get("dir");
+    var index=grammar_index();
+    var downloading=0;
+
+    function get_list(ok,err) {
+	ajax_http_get("upload.cgi?ls="+dir,ok,err);
+    }
+
+    function get_file(file,ok,err) {
+	downloading++;
+	ajax_http_get("upload.cgi?download="+encodeURIComponent(dir+"/"+file),ok,err);
+    }
+
+    function file_failed(errormsg,status) {
+	debug(errormsg)
+	downloading--;
+    }
+    function file_downloaded(grammar) {
+	downloading--;
+	var newg=JSON.parse(grammar);
+	debug("Downloaded "+newg.unique_name)
+	var i=index[newg.unique_name];
+	if(i!=undefined) merge_grammar(i,newg)
+	else {
+	    debug("New")
+	    newg.index=null;
+	    save_grammar(newg);
+	}
+	if(downloading==0) done()
+    }
+
+    function done() {
+	setTimeout(function(){location.href="."},2000);
+    }
+
+    function download_files(ls) {
+	local.put("current",0);
+	if(ls) {
+	    //debug("Downloading "+ls);
+	    var files=ls.split(" ");
+	    cleanup_deleted(files);
+	    for(var i in files) get_file(files[i],file_downloaded,file_failed);
+	}
+	else {
+	    debug("No grammars in the cloud")
+	    done()
+	}
+    }
+
+    get_list(download_files);
+}
+
+function link_directories(olddir,newdir,cont) {
+    ajax_http_get("upload.cgi?rmdir="+olddir+"&newdir="+newdir,cont)
+}
+
+/* -------------------------------------------------------------------------- */
+
+// Send a command to the GF shell
+function gfshell(cmd,cont) {
+    alert("gfshell(...) not implmemented!!!")
+}
+
+// Check the syntax of an expression
+function check_exp(s,cont) {
+    function check(gf_message) {
+	debug("cc "+s+" = "+gf_message);
+	cont(/parse error/.test(gf_message) ? "parse error" : null);
+    }
+    if(navigator.onLine)
+	ajax_http_get("upload.cgi?cc="+encodeURIComponent(s),check)
+    else cont(null)
+}
diff --git a/src/editor/simple/cloud2.js b/src/editor/simple/cloud2.js
new file mode 100644
--- /dev/null
+++ b/src/editor/simple/cloud2.js
@@ -0,0 +1,70 @@
+
+function with_dir(cont) {
+    var dir=local.get("dir","");
+    if(/^\/tmp\//.test(dir)) cont(dir);
+    else ajax_http_get("/new",
+		       function(dir) {
+			   local.put("dir",dir);
+			   cont(dir);
+		       });
+}
+
+function remove_cloud_grammar(g) {
+    alert("remove_cloud_grammar(g) not implemented yet!!!")
+}
+
+// Upload the grammar to the server and check it for errors
+function upload(g) {
+    function upload2(dir) {
+	var form=node("form",{method:"post",action:"/upload"},
+		      [hidden("dir",dir),hidden(g.basename,show_abstract(g))])
+	var files = [g.basename+".gf"]
+	for(var i in g.concretes) {
+	    var cname=g.basename+g.concretes[i].langcode;
+	    files.push(cname+".gf");
+	    form.appendChild(hidden(cname,
+				    show_concrete(g.basename)(g.concretes[i])));
+	}
+	editor.appendChild(form);
+	form.submit();
+	form.parentNode.removeChild(form);
+	/* wait until upload is done */
+	gfshell("i -retain "+files.join(" "),upload3)
+    }
+    
+    function upload3(message) {	if(message) alert(message); }
+
+    with_dir(upload2)
+}
+
+// Upload the grammar to store it in the cloud
+function upload_json(cont) {
+    alert("upload_json() not implemented yet!!!")
+}
+
+function download_json() {
+    alert("download_json() not implemented yet!!!")
+}
+
+function link_directories(olddir,newdir,cont) {
+    alert("link_directories(...) not implemented yet!!!")
+}
+
+/* -------------------------------------------------------------------------- */
+
+// Send a command to the GF shell
+function gfshell(cmd,cont) {
+    with_dir(function(dir) {
+	var enc=encodeURIComponent;
+	ajax_http_get("/gfshell?dir="+enc(dir)+"&command="+enc(cmd),cont)
+    })
+}
+
+// Check the syntax of an expression
+function check_exp(s,cont) {
+    function check(gf_message) {
+	debug("cc "+s+" = "+gf_message);
+	cont(/parse error/.test(gf_message) ? "parse error" : null);
+    }
+    gfshell("cc "+s,check);
+}
diff --git a/src/editor/simple/editor.css b/src/editor/simple/editor.css
new file mode 100644
--- /dev/null
+++ b/src/editor/simple/editor.css
@@ -0,0 +1,84 @@
+body { background: #eee; }
+h1 { font-size: 175%; }
+h1,h2,h3,h4,small { font-family: sans-serif; }
+h1:first-child, h2:first-child { margin-top: 0; margin-bottom: 1ex; }
+
+#editor { max-width: 50em; }
+div.home, div.grammar { border: 1px solid black; background: #9df; }
+div.home { padding: 5px; }
+div.files { margin: 0 8px 8px 8px; }
+
+div#file { border: 2px solid #009; border-top-width: 0; }
+pre.plain { border: 2px solid #009; }
+div#file, pre.plain { background: white; padding: 0.6ex; }
+
+.slideshow .hidden { display: none; }
+
+img.cloud, img.right, div.right, div.modtime { float: right; }
+.modtime { color: #999; white-space: nowrap; }
+
+div.namebar { background: #9df; }
+div.namebar table { width: 100%; }
+.namebar h3, .home h3 { margin: 0; color: #009; }
+
+td.right { text-align: right; }
+
+.kw { font-weight: bold; font-family: sans-serif; color: #009; }
+.sep { font-weight: bold; color: #009; }
+
+div.indent { padding-left: 1em; min-width: 1em; min-height: 1em; }
+
+/*
+div.fun, div.param, div.lincat, div.oper, div.lin
+{ padding-left: 2em; text-indent: -2em; }
+*/
+.more, .delete { font-weight: bold; font-family: sans-serif; }
+.more, .delete, .edit { cursor: pointer; }
+
+.hover .more, .hover .delete, .hover .edit { visibility: hidden }
+
+.hover .hidden, .nohover .ifhover { display: none; }
+
+.editable:hover, .deletable:hover { background: #ff9; }
+
+.extensible:hover .more,.editable:hover > .edit ,.deletable:hover > .delete 
+  { visibility: visible; }
+
+.more { color: green; }
+.edit { color: orange; }
+.delete { color: red; }
+.error_message,.inError { color: red; }
+.template, .template .sep { color: #999; }
+form { display: inline-block; }
+
+table.tabs {
+    width: 100%;
+    border-width: 0; border-spacing: 0; empty-cells: show;
+}
+
+table.tabs td { text-align: center; border: 2px solid #009; padding: 2px; }
+table.tabs td.active { background: white; border-bottom-width: 0; }
+table.tabs td.inactive {
+    background: #cef;
+    border-top-color: #66c; border-left-color: #66c; border-right-color: #66c;
+}
+
+ table.tabs td.gap
+{ border-top-width: 0; border-left-width: 0; border-right-width: 0; }
+
+table.tabs input[type=button] {
+    border: 0;
+    background: inherit;
+    color: #009;
+    font-size: inherit;
+    font-weight: bold;
+    /*text-decoration: underline;*/
+}
+
+input.string_edit { font-family: inherit; font-size: inherit; }
+
+ul.languages { -moz-column-width: 20em; }
+
+li { margin-top: 0.5ex; margin-bottom: 0.5ex; }
+
+#sharing h1, #sharing .footer { display: none; }
diff --git a/src/editor/simple/editor.js b/src/editor/simple/editor.js
new file mode 100644
--- /dev/null
+++ b/src/editor/simple/editor.js
@@ -0,0 +1,1093 @@
+
+
+var editor=element("editor");
+
+/* -------------------------------------------------------------------------- */
+
+function initial_view() {
+    var current=local.get("current");
+    if(current>0) open_grammar(current-1);
+    else draw_grammar_list();
+    //debug(local.get("dir","no server directory yet"));
+}
+
+function draw_grammar_list() {
+    local.put("current",0);
+    editor.innerHTML="";
+    var uploaded=local.get("dir") && local.get("json_uploaded");
+    var cloud_upload=
+	a(jsurl("upload_json()"),
+	  [node("img",{"class":"cloud",
+		       src:"P/1306856253_weather_06.png",alt:"[Up Cloud]",
+		       title: uploaded
+		               ? "Click to upload grammar updates to the cloud"
+		               : "Click to store your grammars in the cloud"},
+		    [])]);
+    var home=div_class("home",[node("h3",{},
+				    [text("Your grammars"),cloud_upload])]);
+    if(uploaded) {
+	var cloud_download=
+	    a(jsurl("download_json()"),
+	      [node("img",{"class":"cloud",
+			   src:"P/1307545089_weather_04.png",alt:"[Down Cloud]",
+			   title:"Click to download grammar updates from the cloud"},
+		    [])]);
+	insertAfter(cloud_download,cloud_upload);
+    }
+    editor.appendChild(home)
+    var gs=ul([]);
+    function del(i) { return function () { delete_grammar(i); } }
+    for(var i=0;i<local.count;i++) {
+	var grammar=local.get(i,null);
+	if(grammar && grammar.basename) {
+	    var link=a(jsurl("open_grammar("+i+")"),[text(grammar.basename)]);
+	    gs.appendChild(
+		li([deletable(del(i),link,"Delete this grammar")]))
+	}
+    }
+    if(local.get("count",null)==null)
+	home.appendChild(text("You have not created any grammars yet."));
+    else if(local.count==0)
+	home.appendChild(text("Your grammar list is empty."));
+    home.appendChild(gs);
+
+    home.appendChild(
+	ul([li([a(jsurl("new_grammar()"),[text("New grammar")])])]));
+    //editor.appendChild(text(local.count));
+    home.appendChild(empty_id("div","sharing"));
+}
+
+function new_grammar() {
+    var g={basename:"Unnamed",
+	   abstract:{cats:[],funs:[]},
+	   concretes:[]}
+    edit_grammar(g);
+}
+
+function remove_local_grammar(i) {
+    local.remove(i);
+    while(local.count>0 && !local.get(local.count-1))
+	local.count--;
+}
+
+function delete_grammar(i) {
+    var g=local.get(i);
+    var ok=confirm("Do you really want to delete the grammar "+g.basename+"?")
+    if(ok) {
+	remove_local_grammar(i)
+	remove_cloud_grammar(g)
+	initial_view();
+    }
+}
+
+function open_grammar(i) {
+    var g=local.get(i);
+    g.index=i;
+    local.put("current",i+1);
+    edit_grammar(g);
+}
+
+function close_grammar(g) { save_grammar(g); draw_grammar_list(); }
+function reload_grammar(g) { save_grammar(g);  edit_grammar(g); }
+
+function save_grammar(g) {
+    if(g.index==null) g.index=local.count++;
+    local.put(g.index,g);
+}
+
+function edit_grammar(g) {
+    editor.innerHTML="";
+    editor.appendChild(draw_grammar(g));
+}
+
+
+function draw_grammar(g) {
+    var files=div_class("files",[draw_filebar(g),draw_file(g)]);
+    return div_class("grammar",[draw_namebar(g,files),files])
+
+}
+
+function draw_namebar(g,files) {
+    return div_class("namebar",
+		  [table([tr([td(draw_name(g)),
+			      td_right([draw_plainbutton(g,files),
+					upload_button(g),
+					draw_closebutton(g)])])])])
+}
+
+function draw_name(g) {
+    return editable("h3",text(g.basename),g,edit_name,"Rename grammar");
+}
+
+function draw_closebutton(g) {
+    var b=button("X",function(){close_grammar(g);});
+    b.title="Save and Close this grammar";
+    return b;
+}
+
+function draw_plainbutton(g,files) {
+    var b2;
+    function show_editor() { edit_grammar(g); }
+    function show_plain() {
+	files.innerHTML="<pre class=plain>"+show_grammar(g)+"</pre>"
+	b.style.display="none";
+	if(b2) b2.style.display="";
+	else {
+	    b2=button("Show editor",show_editor);
+	    insertAfter(b2,b);
+	}
+    }
+    var b=button("Show plain",show_plain);
+    b.title="Show plain text representaiton of the grammar";
+    return b;
+}
+
+function upload_button(g) {
+    var b=button("Compile",function(){upload(g);});
+    b.title="Upload the grammar to the server to check it in GF and test it in the minibar";
+    return b;
+}
+
+function lang(code,name) { return { code:code, name:name} }
+function lang1(name) {
+    var ws=name.split("/");
+    return ws.length==1 ? lang(name.substr(0,3),name) : lang(ws[0],ws[1]);
+}
+var languages =
+    map(lang1,"Amharic Arabic Bulgarian Catalan Danish Dutch English Finnish French German Hindi Ina/Interlingua Italian Latin Norwegian Polish Ron/Romanian Russian Spanish Swedish Thai Turkish Urdu".split(" "));
+languages.push(lang("Other","Other"));
+
+var langname={};
+for(var i in languages)
+    langname[languages[i].code]=languages[i].name
+
+function concname(code) { return langname[code] || code; }
+
+function add_concrete(g,el) {
+    var file=element("file");
+    file.innerHTML="";
+    var dc={};
+    for(var i in g.concretes)
+	dc[g.concretes[i].langcode]=true;
+    var list=[]
+    for(var i in languages) {
+	var l=languages[i], c=l.code;
+	if(!dc[c])
+	    list.push(li([a(jsurl("add_concrete2("+g.index+",'"+c+"')"),
+			    [text(l.name)])]));
+    }
+    var from= g.current>0 
+	? "a copy of "+concname(g.concretes[g.current-1].langcode)
+	:"scratch";
+    file.appendChild(p(text("You are about to create a new concrete syntax by starting from "+from+".")));
+    file.appendChild(p(text("Pick a language for the new concrete syntax:")));
+    file.appendChild(node("ul",{"class":"languages"},list));
+}
+
+function new_concrete(code) {
+    return { langcode:code,params:[],lincats:[],opers:[],lins:[] };
+}
+
+function adjust_opens(cnc,oldcode,code) {
+    for(var oi in cnc.opens)
+	for(var li in rgl_modules)
+	    if(cnc.opens[oi]==rgl_modules[li]+oldcode)
+		cnc.opens[oi]=rgl_modules[li]+code;
+}
+
+function add_concrete2(ix,code) {
+    var g=local.get(ix);
+    var cs=g.concretes;
+    var ci;
+    for(var ci=0;ci<cs.length;ci++) if(cs[ci].langcode==code) break;
+    if(ci==cs.length) {
+	if(g.current>0) {
+	    cs.push(cs[g.current-1]); // old and new are shared at this point
+	    save_grammar(g); // serialization loses sharing
+	    g=local.get(ix); // old and new are separate now
+	    var oldcode=cs[g.current-1].langcode;
+	    var cnc=g.concretes[ci];
+	    cnc.langcode=code;
+	    adjust_opens(cnc,oldcode,code);
+	    timestamp(cnc)
+	}
+	else
+	    cs.push(new_concrete(code))
+	save_grammar(g);
+    }
+    open_concrete(g,ci);
+}
+
+function open_abstract(g) { g.current=0; reload_grammar(g); }
+function open_concrete(g,i) { g.current=i+1; reload_grammar(g); }
+
+function td_gap(c) {return wrap_class("td","gap",c); }
+function gap() { return td_gap(text(" ")); }
+
+function tab(active,link) {
+    return  wrap_class("td",active ? "active" : "inactive",link);
+}
+
+function delete_concrete(g,ci) {
+    var c=g.concretes[ci];
+    var ok=c.params.length==0 && c.lincats.length==0 && c.opers.length==0
+	   && c.lins.length==0
+	|| confirm("Do you really want to delete the concrete syntax for "+
+		   concname(c.langcode)+"?");
+    if(ok) {
+	g.concretes=delete_ix(g.concretes,ci)
+	if(g.current && g.current-1>=ci) g.current--;
+	reload_grammar(g);
+    }
+}
+
+function draw_filebar(g) {
+    var cur=(g.current||0)-1;
+    var filebar = empty_class("tr","extensible")
+    filebar.appendChild(gap());
+    filebar.appendChild(
+	tab(cur== -1,button("Abstract",function(){open_abstract(g);})));
+    var cs=g.concretes;
+    function del(ci) { return function() { delete_concrete(g,ci); }}
+    function open_conc(i) { return function() {open_concrete(g,1*i); }}
+    for(var i in cs) {
+	filebar.appendChild(gap());
+	filebar.appendChild(
+	    tab(i==cur,deletable(del(i),button(concname(cs[i].langcode),open_conc(i)),"Delete this concrete syntax")));
+    }
+    filebar.appendChild(td_gap(more(g,add_concrete,"Add a concrete syntax")));
+    return wrap_class("table","tabs",filebar);
+}
+
+function draw_file(g) {
+    return g.current>0 // && g.current<=g.concretes.length
+	? draw_concrete(g,g.current-1)
+	: draw_abstract(g);
+}
+
+function draw_startcat(g) {
+    var abs=g.abstract;
+    var startcat = abs.startcat || abs.cats[0];
+    function opt(cat) { return option(cat,cat); }
+    var m= node("select",{},map(opt,abs.cats));
+    m.value=startcat;
+    m.onchange=function() { 
+	if(m.value!=abs.startcat) {
+	    abs.startcat=m.value;
+	    timestamp(abs);
+	    save_grammar(g); 
+	}
+    }
+    return indent([kw("flags startcat"),sep(" = "),m]);
+}
+
+function draw_abstract(g) {
+    var kw_cat = kw("cat");
+    kw_cat.title = "The categories (nonterminals) of the grammar are enumerated here.";
+    var kw_fun = kw("fun");
+    kw_fun.title = "The functions (productions) of the grammar are enumerated here.";
+    var flags=g.abstract.startcat || g.abstract.cats.length>1
+	? draw_startcat(g)
+	: text("");
+    function sort_funs() {
+	g.abstract.funs=sort_list(this,g.abstract.funs,"name");
+	timestamp(g.abstract);
+	save_grammar(g);
+    }
+    return div_id("file",
+		  [kw("abstract "),ident(g.basename),sep(" = "),
+		   draw_timestamp(g.abstract),
+		   flags,
+		   indent([extensible([kw_cat,
+				       indent(draw_cats(g))]),
+			   extensible([kw_fun,
+				       indent_sortable(draw_funs(g),sort_funs)])])]);
+}
+
+function add_cat(g,el) {
+    function add(s) {
+	var cats=s.split(/\s*(?:\s|[;])\s*/); // allow separating spaces or ";"
+	if(cats.length>0 && cats[cats.length-1]=="") cats.pop();
+	for(var i in cats) {
+	    var err=check_name(cats[i],"Category");
+	    if(err) return err;
+	}
+	for(var i in cats) g.abstract.cats.push(cats[i]);
+	timestamp(g.abstract);
+	reload_grammar(g);
+	return null;
+    }
+    string_editor(el,"",add);
+}
+
+function delete_cat(g,ix) {
+    with(g.abstract) cats=delete_ix(cats,ix);
+    timestamp(g.abstract);
+    reload_grammar(g);
+}
+
+function rename_cat(g,el,cat) {
+    function ren(newcat) {
+	if(newcat!="" && newcat!=cat) {
+	    var err=check_name(newcat,"Category");
+	    if(err) return err;
+	    var dc=defined_cats(g);
+	    if(dc[newcat]) return newcat+" is already in use";
+	    g=rename_category(g,cat,newcat);
+	    timestamp(g.abstract);
+	    reload_grammar(g);
+	}
+	return null;
+    }
+    string_editor(el,cat,ren);
+}
+
+function draw_cats(g) {
+    var cs=g.abstract.cats;
+    var es=[];
+    var defined={};
+    function eident(cat) {
+	function ren(g,el) { rename_cat(g,el,cat); }
+	return editable("span",ident(cat),g,ren,"Rename category");
+    }
+    function check(cat,el) {
+	return ifError(defined[cat],"Same category named twice",el);
+    }
+    function del(i) { return function() { delete_cat(g,i); }}
+    for(var i in cs) {
+	es.push(deletable(del(i),check(cs[i],eident(cs[i])),"Delete this category"));
+	defined[cs[i]]=true;
+	es.push(sep("; "));
+    }
+    es.push(more(g,add_cat,"Add more categories"));
+    return es;
+}
+
+function add_fun(g,el) {
+    function add(s) {
+	var p=parse_fun(s);
+	if(p.ok) {
+	    g.abstract.funs.push(p.ok);
+	    timestamp(g.abstract);
+	    reload_grammar(g);
+	    return null;
+	}
+	else
+	    return p.error
+    }
+    string_editor(el,"",add);
+}
+
+function edit_fun(i) {
+    return function (g,el) {
+	function replace(s) {
+	    var p=parse_fun(s);
+	    if(p.ok) {
+		var old=g.abstract.funs[i];
+		g.abstract.funs[i]=p.ok;
+		if(p.ok.name!=old.name) g=rename_function(g,old.name,p.ok.name);
+		if(show_type(p.ok.type)!=show_type(old.type))
+		    g=change_lin_lhs(g,p.ok);
+		timestamp(g.abstract);
+		reload_grammar(g);
+		return null;
+	    }
+	    else
+		return p.error;
+	}
+	string_editor(el,show_fun(g.abstract.funs[i]),replace);
+    }
+}
+
+function delete_fun(g,ix) {
+    with(g.abstract) funs=delete_ix(funs,ix);
+    timestamp(g.abstract);
+    reload_grammar(g);
+}
+
+function draw_funs(g) {
+    var funs=g.abstract.funs;
+    var es=[];
+    var dc=defined_cats(g);
+    var df={};
+    function del(i) { return function() { delete_fun(g,i); }}
+    function draw_efun(i,df) {
+	return editable("span",draw_fun(funs[i],dc,df),g,edit_fun(i),"Edit this function");
+    }
+    for(var i in funs) {
+	es.push(node_sortable("fun",funs[i].name,[deletable(del(i),draw_efun(i,df),"Delete this function")]));
+	df[funs[i].name]=true;
+    }
+    es.push(more(g,add_fun,"Add a new function"));
+    return es;
+}
+
+function draw_fun(fun,dc,df) {
+    function check(el) {
+	return ifError(dc[fun.name],
+		       "Function names must be distinct from category names",
+		       ifError(df[fun.name],"Same function defined twice",el));
+    }
+    return node("span",{},
+		[check(ident(fun.name)),sep(" : "),draw_type(fun.type,dc)]);
+}
+
+function draw_type(t,dc) {
+    var el=empty("span");
+    function check(t,el) {
+	return ifError(!dc[t],"Undefined category",el);
+    }
+    for(var i in t) {
+	if(i>0) el.appendChild(sep(" → "));
+	el.appendChild(check(t[i],ident(t[i])));
+    }
+    return el;
+}
+
+function edit_name(g,el) {
+    function change_name(name) {
+	if(name!=g.basename && name!="") {
+	    var err=check_name(name,"Grammar");
+	    if(err) return err;
+	    g.basename=name
+	    reload_grammar(g);
+	}
+	return null;
+    }
+    string_editor(el,g.basename,change_name)
+}
+/* -------------------------------------------------------------------------- */
+
+function draw_concrete(g,i) {
+    var conc=g.concretes[i];
+    function edit_langcode(g,el) {
+	function change_langcode(code) {
+	    var err=check_name(g.basename+code,"Name of concrete syntax");
+	    if(err) return err;
+	    adjust_opens(conc,conc.langcode,code);
+	    conc.langcode=code;
+	    timestamp(conc);
+	    reload_grammar(g);
+	}
+	string_editor(el,conc.langcode,change_langcode)
+    }
+    return div_id("file",
+		  [kw("concrete "),
+		   ident(g.basename),
+		   editable("span",ident(conc.langcode),g,
+			    edit_langcode,"Change language"),
+		   kw(" of "),ident(g.basename),sep(" = "),
+		   draw_timestamp(conc),
+		   indent([extensible([kw("open "),draw_opens(g,i)])]),
+		   indent([kw("lincat"),draw_lincats(g,i)]),
+		   indent([kw("lin"),draw_lins(g,i)]),
+		   indent([extensible([kw("param"),draw_params(g,i)])]),
+		   indent([extensible([kw("oper"),draw_opers(g,i)])])
+		  ])
+}
+
+var rgl_modules=["Paradigms","Syntax"];
+
+function add_open(ci) {
+    return function (g,el) {
+	var conc=g.concretes[ci];
+	var os=conc.opens;
+	var ds={};
+	for(var i in os) ds[os[i]]=true;
+	var list=[]
+	for(var i in rgl_modules) {
+	    var b=rgl_modules[i], m=b+conc.langcode;
+	    if(!ds[m])
+		list.push(li([a(jsurl("add_open2("+g.index+","+ci+",'"+m+"')"),
+				[text(m)])]));
+	}
+	if(list.length>0) {
+	    var file=element("file");
+	    file.innerHTML="";
+	    file.appendChild(p(text("Pick a resource library module to open:")));
+	    file.appendChild(node("ul",{},list));
+	}
+    }
+}
+
+function add_open2(ix,ci,m) {
+    var g=local.get(ix);
+    var conc=g.concretes[ci];
+    conc.opens || (conc.opens=[]);
+    conc.opens.push(m);
+    timestamp(conc);
+    save_grammar(g);
+    open_concrete(g,ci);
+}
+
+function delete_open(g,ci,ix) {
+    with(g.concretes[ci]) opens=delete_ix(opens,ix);
+    timestamp(g.concretes[ci]);
+    reload_grammar(g);
+}
+
+function draw_opens(g,ci) {
+    var conc=g.concretes[ci];
+    var os=conc.opens || [] ;
+    var es=[];
+    function del(i) { return function() { delete_open(g,ci,i); }}
+    var first=true;
+    for(var i in os) {
+	if(!first) es.push(sep(", "))
+	es.push(deletable(del(i),ident(os[i]),"Don't open this module"));
+	first=false;
+    }
+    es.push(more(g,add_open(ci),"Open more modules"));
+    return indent(es);
+}
+
+function draw_param(p,dp) {
+    function check(el) {
+	return ifError(dp[p.name],"Same parameter type defined twice",el);
+    }
+    return node("span",{},[check(ident(p.name)),sep(" = "),text(p.rhs)]);
+}
+
+function add_param(g,ci,el) {
+    function add(s) {
+	var p=parse_param(s);
+	if(p.ok) {
+	    g.concretes[ci].params.push(p.ok);
+	    timestamp(g.concretes[ci]);
+	    reload_grammar(g);
+	    return null;
+	}
+	else
+	    return p.error
+    }
+    string_editor(el,"",add);
+}
+
+function edit_param(ci,i) {
+    return function (g,el) {
+	function replace(s) {
+	    var p=parse_param(s);
+	    if(p.ok) {
+		g.concretes[ci].params[i]=p.ok;
+		timestamp(g.concretes[ci]);
+		reload_grammar(g);
+		return null;
+	    }
+	    else
+		return p.error;
+	}
+	string_editor(el,show_param(g.concretes[ci].params[i]),replace);
+    }
+}
+
+
+function delete_param(g,ci,ix) {
+    with(g.concretes[ci]) params=delete_ix(params,ix);
+    timestamp(g.concretes[ci]);
+    reload_grammar(g);
+}
+
+function draw_params(g,ci) {
+    var conc=g.concretes[ci];
+    conc.params || (conc.params=[]);
+    var params=conc.params;
+    var es=[];
+    var dp={};
+    function del(i) { return function() { delete_param(g,ci,i); }}
+    function draw_eparam(i,dp) {
+	return editable("span",draw_param(params[i],dp),g,edit_param(ci,i),"Edit this parameter type");
+    }
+    for(var i in params) {
+	es.push(div_class("param",[deletable(del(i),draw_eparam(i,dp),"Delete this parameter type")]));
+	dp[params[i].name]=true;
+    }
+    es.push(more(g,function(g,el) { return add_param(g,ci,el)},
+		 "Add a new parameter type"));
+    return indent(es);
+}
+
+function delete_lincat(g,ci,cat) {
+    var i;
+    var c=g.concretes[ci];
+    for(i=0;i<c.lincats.length && c.lincats[i].cat!=cat;i++);
+    if(i<c.lincats.length) c.lincats=delete_ix(c.lincats,i);
+    timestamp(c);
+    reload_grammar(g);
+}
+
+function draw_lincats(g,i) {
+    var conc=g.concretes[i];
+    function edit(c) {
+	return function(g,el) {
+	    function check(s,cont) {
+		function check2(msg) {
+		    if(!msg) {
+			if(c.template) conc.lincats.push({cat:c.cat,type:s});
+			else c.type=s;
+			reload_grammar(g);
+		    }
+		    cont(msg);
+		}
+		check_exp(s,check2);
+	    }
+	    string_editor(el,c.type,check,true)
+	}
+    }
+    function del(c) { return function() { delete_lincat(g,i,c); } }
+    function dlc(c,cls) {
+	var t=editable("span",text_ne(c.type),g,edit(c),"Edit lincat for "+c.cat);
+	return node("span",{"class":cls},
+		    [ident(c.cat),sep(" = "),t]);
+    }
+    var dc=defined_cats(g);
+    function draw_lincat(c) {
+	var cat=c.cat;
+	var err=!dc[cat];
+	var l1=dlc(c,"lincat");
+	var l2= err ? deletable(del(cat),l1,"Delete this lincat") : l1;
+	var l=ifError(err,"lincat for undefined category",l2);
+	delete dc[cat];
+	return node_sortable("lincat",cat,[l]);
+    }
+    function dtmpl(c) {	
+	return wrap("div",dlc({cat:c,type:"",template:true},"template")); }
+    var lcs=map(draw_lincat,conc.lincats);
+    for(var c in dc)
+	lcs.push(dtmpl(c));
+    function sort_lincats() {
+	conc.lincats=sort_list(this,conc.lincats,"cat");
+	timestamp(conc);
+	save_grammar(g);
+    }
+    return indent_sortable(lcs,sort_lincats);
+}
+
+/* -------------------------------------------------------------------------- */
+
+function draw_oper(p,dp) {
+    function check(el) {
+	return ifError(dp[p.name],"Same operator definition defined twice",el);
+    }
+    return node("span",{},[check(ident(p.name)),text(" "),text(p.rhs)]);
+}
+
+function check_oper(s,ok,err) {
+    var p=parse_oper(s);
+    function check2(msg) {
+	if(msg) err(msg);
+	else ok(p.ok)
+    }
+    if(p.ok) {
+	// Checking oper syntax by checking an expression with a local
+	// definition. Some valid opers will be rejected!!
+	var e=p.ok.name+" where { "+p.ok.name+" "+p.ok.rhs+" }";
+	check_exp(e,check2);
+    }
+    else
+	err(p.error);
+}
+
+function add_oper(g,ci,el) {
+    function check(s,cont) {
+	function ok(oper) {
+	    g.concretes[ci].opers.push(oper);
+	    timestamp(g.concretes[ci]);
+	    reload_grammar(g);
+	    cont(null);
+	}
+	check_oper(s,ok,cont)
+    }
+    string_editor(el,"",check,true);
+}
+
+function edit_oper(ci,i) {
+    return function (g,el) {
+	function check(s,cont) {
+	    function ok(oper) {
+		g.concretes[ci].opers[i]=oper;
+		timestamp(g.concretes[ci]);
+		reload_grammar(g);
+		cont(null);
+	    }
+	    check_oper(s,ok,cont)
+	}
+	string_editor(el,show_oper(g.concretes[ci].opers[i]),check,true);
+    }
+}
+
+function delete_oper(g,ci,ix) {
+    with(g.concretes[ci]) opers=delete_ix(opers,ix);
+    timestamp(g.concretes[ci]);
+    reload_grammar(g);
+}
+
+function draw_opers(g,ci) {
+    var conc=g.concretes[ci];
+    conc.opers || (conc.opers=[]);
+    var opers=conc.opers;
+    var es=[];
+    var dp={};
+    function del(i) { return function() { delete_oper(g,ci,i); }}
+    function draw_eoper(i,dp) {
+	return editable("span",draw_oper(opers[i],dp),g,edit_oper(ci,i),"Edit this operator definition");
+    }
+    for(var i in opers) {
+	es.push(node_sortable("oper",opers[i].name,
+			      [deletable(del(i),draw_eoper(i,dp),
+					 "Delete this operator definition")]));
+	dp[opers[i].name]=true;
+    }
+    es.push(more(g,function(g,el) { return add_oper(g,ci,el)},
+		 "Add a new operator definition"));
+    function sort_opers() {
+	conc.opers=sort_list(this,conc.opers,"name");
+	timestamp(conc);
+	save_grammar(g);
+    }
+    return indent_sortable(es,sort_opers);
+}
+
+function delete_lin(g,ci,fun) {
+    var i;
+    var c=g.concretes[ci];
+    for(i=0;i<c.lins.length && c.lins[i].fun!=fun;i++);
+    if(i<c.lins.length) c.lins=delete_ix(c.lins,i);
+    timestamp(c);
+    reload_grammar(g);
+}
+
+/* -------------------------------------------------------------------------- */
+function arg_names(type) {
+    function lower(s) { return s.toLowerCase(); }
+    var names=map(lower,type);
+    names.pop(); // remove result type
+    var n,count={},use={};
+    for(var i in names) n=names[i],count[n]=0,use[n]=0;
+    for(var i in names) count[names[i]]++;
+    function unique(n) {
+	return count[n]>1 ? n+(++use[n]) : n;
+    }
+    return map(unique,names);
+}
+
+function draw_lins(g,i) {
+    var conc=g.concretes[i];
+    function edit(f) {
+	return function(g,el) {
+	    function check(s,cont) {
+		function check2(msg) {
+		    if(!msg) {
+			if(f.template)
+			    conc.lins.push({fun:f.fun,args:f.args,lin:s});
+			else f.lin=s;
+			reload_grammar(g);
+		    }
+		    cont(msg);
+		}
+		check_exp(s,check2);
+	    }
+	    string_editor(el,f.lin,check,true)
+	}
+    }
+    function del(fun) { return function () { delete_lin(g,i,fun); } }
+    function dl(f,cls) {
+	var l=[ident(f.fun)]
+	for(var i in f.args) {
+	    l.push(text(" "));
+	    l.push(ident(f.args[i]));
+	}
+	l.push(sep(" = "));
+	var t=editable("span",text_ne(f.lin),g,edit(f),"Edit lin for "+f.fun);
+	l.push(t);
+	return node("span",{"class":cls},l);
+    }
+    var df=defined_funs(g);
+    function draw_lin(f) {
+	var fun=f.fun;
+	var err= !df[fun];
+	var l= err ? deletable(del(fun),dl(f,"lin"),"Delete this function") : dl(f,"lin")
+	var l=ifError(err,"Function "+fun+" is not part of the abstract syntax",l);
+	delete df[fun];
+	return node_sortable("lin",fun,[l]);
+    }
+    function largs(f) {
+	var funs=g.abstract.funs;
+	for(var i=0;i<funs.length && funs[i].name!=f;i++);
+	return arg_names(funs[i].type);
+    }
+    function dtmpl(f) {	
+	return wrap("div",
+		    dl({fun:f,args:largs(f),lin:"",template:true},"template"));
+    }
+    function sort_lins() {
+	conc.lins=sort_list(this,conc.lins,"fun");
+	timestamp(conc);
+	save_grammar(g);
+    }
+    var ls=map(draw_lin,conc.lins);
+    for(var f in df)
+	ls.push(dtmpl(f));
+    return indent_sortable(ls,sort_lins);
+}
+
+/* -------------------------------------------------------------------------- */
+
+function find_langcode(concs,langcode) {
+    for(var ci in concs)
+	if(concs[ci].langcode==langcode)
+	    return concs[ci];
+    return null;
+}
+
+function cleanup_deleted(files) {
+    var keep={}
+    for(var i in files) keep[files[i]]=true;
+    //debug("cleanup_deleted "+JSON.stringify(files))
+    //debug("keep "+JSON.stringify(keep))
+    for(var i=0;i<local.count;i++) {
+	var g=local.get(i,null)
+	if(g && g.unique_name && !keep[g.unique_name+".json"]) {
+	    debug("cleanup "+i+" "+g.unique_name);
+	    remove_local_grammar(i)
+	}
+    }
+}
+
+function grammar_index() {
+    var index={}
+    var count=local.count
+    for(var i=0;i<count;i++) {
+	var g=local.get(i,null)
+	if(g && g.unique_name) index[g.unique_name]=i
+    }
+    return index
+}
+
+function merge_grammar(i,newg) {
+    var oldg=local.get(i);
+    var keep="";
+    debug("Merging at "+i);
+    if(oldg) {
+	oldg.basename=newg.basename;
+	if(newg.abstract.timestamp<oldg.abstract.timestamp) {
+	    newg.abstract=newg.abstract
+	    keep+=" "+oldg.basename
+	}
+	for(var ci in newg.concretes) {
+	    var conc=newg.concretes[ci];
+	    var oldconc=find_langcode(oldg.concretes,conc.langcode);
+	    if(oldconc && conc.timestamp<oldconc.timestamp) {
+		newg.concretes[ci]=oldconc;
+		keep+=" "+oldg.basename+conc.langcode;
+	    }
+	}
+    }
+    local.put(i,newg)
+    return keep;
+}
+
+function timestamp(obj,prop) {
+    obj[prop || "timestamp"]=Date.now();
+}
+
+function draw_timestamp(obj) {
+    var t=obj.timestamp;
+    return node("small",{"class":"modtime"},
+		[text(t ? " -- "+new Date(t).toLocaleString() : "")]);
+}
+
+/* -------------------------------------------------------------------------- */
+
+function delete_ix(old,ix) {
+    var a=[];
+    for(var i in old) if(i!=ix) a.push(old[i]);
+    return a;
+}
+
+function sort_list(list,olditems,key) {
+    var items=[];
+    function find(fun) {
+	for(var i=0;i<olditems.length;i++)
+	    if(olditems[i][key]==fun) return olditems[i];
+	return null;
+    }
+    for(var el=list.firstChild;el;el=el.nextSibling) {
+	var name=el.getAttribute("ident")
+	if(name) {
+	    var old=find(name);
+	    if(old) items.push(old)
+	    else debug("Bug: did not find "+name+" while sorting");
+	}
+    }
+    if(items.length==olditems.length)
+	return items;
+    else {
+	debug("Bug: length changed while sorting")
+	return olditems;
+    }
+}
+
+function string_editor(el,init,ok,async) {
+    var p=el.parentNode;
+    function restore() {
+	e.parentNode.removeChild(e);
+	el.style.display="";
+    }
+    function done() {
+	var edited=e.it.value;
+	restore();
+	function cont(msg) { if(msg) start(msg); }
+	if(async) ok(edited,cont)
+	else cont(ok(edited));
+	return false;
+    }
+    function start(msg) {
+	el.style.display="none";
+	m.innerHTML=msg;
+	insertAfter(e,el);
+	e.it.focus();
+    }
+    var m=empty_class("span","error_message");
+    var i=node("input",{"class":"string_edit",name:"it",value:init},[]);
+    if(init.length>10) i.size=init.length+5;
+//  var i=node("textarea",{name:"it",rows:"2",cols:"60"},[text(init)]);
+    var e=node("form",{},
+	       [i,
+		node("input",{type:"submit",value:"OK"},[]),
+		button("Cancel",restore),
+		text(" "),
+		m])
+    e.onsubmit=done
+    start("");
+}
+
+function ifError(b,msg,el) { return b ? inError(msg,el) : el; }
+
+function inError(msg,el) {
+    return node("span",{"class":"inError",title:msg},[el]);
+}
+
+function kw(txt) { return wrap_class("span","kw",text(txt)); }
+function sep(txt) { return wrap_class("span","sep",text(txt)); }
+function ident(txt) { return wrap_class("span","ident",text(txt)); }
+function indent(cs) { return div_class("indent",cs); }
+
+function indent_sortable(cs,sort) {
+    var n= indent(cs);
+    n.onsort=sort;
+    return n;
+}
+
+function node_sortable(cls,name,ls) {
+    return node("div",{"class":cls,"ident":name},ls);
+}
+
+function extensible(cs) { return div_class("extensible",cs); }
+
+function more(g,action,hint) {
+    var b=node("span",{"class":"more","title":hint || "Add more"},
+	       [text(" + ")]);
+    b.onclick=function() { action(g,b); }
+    return b;
+}
+
+function text_ne(s) { // like text(s), but force it to be non-empty
+    return text(s ? s : "\xa0\xa0\xa0")
+}
+
+function editable(tag,cs,g,f,hint) {
+    var b=edit_button(function(){f(g,e)},hint);
+    var e=node(tag,{"class":"editable"},[cs,b]);
+    return e;
+}
+
+function edit_button(action,hint) {
+    var b=node("span",{"class":"edit","title":hint || "Edit"},[text("%")]);
+    b.onclick=action;
+    return b;
+}
+
+function deletable(del,el,hint) {
+    var b=node("span",{"class":"delete",title:hint || "Delete"},[text("×")])
+    b.onclick=del;
+    return node("span",{"class":"deletable"},[b,el])
+}
+
+function touch_edit() {
+    var b=node("input",{type:"checkbox"},[]);
+    function touch() {
+	document.body.className=b.checked ? "nohover" : "hover";
+    }
+    b.onchange=touch;
+    insertAfter(b,editor);
+    insertAfter(wrap("small",text("Enable editing on touch devices. ")),b);
+}
+/* --- DOM Support ---------------------------------------------------------- */
+
+function div_id(id,cs) { return node("div",{id:id},cs); }
+function div_class(cls,cs) { return node("div",{"class":cls},cs); }
+function a(url,linked) { return node("a",{href:url},linked); }
+function ul(lis) { return node("ul",{},lis); }
+function li(xs) { return node("li",{},xs); }
+function table(rows) { return node("table",{},rows); }
+function td_right(cs) { return node("td",{"class":"right"},cs); }
+function jsurl(js) { return "javascript:"+js; }
+
+function hidden(name,value) {
+    return node("input",{type:"hidden",name:name,value:value},[])
+}
+
+function insertBefore(el,ref) { ref.parentNode.insertBefore(el,ref); }
+
+function insertAfter(el,ref) {
+    ref.parentNode.insertBefore(el,ref.nextSibling);
+}
+/* -------------------------------------------------------------------------- */
+
+function download_from_cloud() {
+    var newdir="/tmp/"+location.hash.substr(1)
+
+    function download2(olddir) {
+	//debug("Starting grammar sharing in the cloud")
+	if(newdir!=olddir) link_directories(olddir,newdir,download3)
+	else download4()
+    }
+    function download3() {
+	//debug("Uploading local grammars to cloud");
+	upload_json(download4)
+    }
+    function download4() {
+	//debug("Downloading grammars from the cloud");
+	download_json()
+    }
+
+    with_dir(download2)
+}
+
+/* --- Initialization ------------------------------------------------------- */
+
+//document.body.appendChild(empty_id("div","debug"));
+
+function dir_bugfix() {
+    // remove trailing newline caused by bug in older version
+    var dir=local.get("dir");
+    if(dir) {
+	var n=dir.length;
+	while(dir[dir.length-1]=="\n" || dir[dir.length-1]=="\r")
+	    dir=dir.substr(0,dir.length-1)
+	if(dir.length<n) {
+	    debug("removing trailing newline")
+	    local.put("dir",dir);
+	}
+	//debug("Server directory: "+JSON.stringify(dir))
+    }
+    else debug("No server directory yet")
+}
+
+if(editor) {
+    initial_view();
+    touch_edit();
+    dir_bugfix();
+}
+
+//console.log("hi")
diff --git a/src/editor/simple/gf_abs.js b/src/editor/simple/gf_abs.js
new file mode 100644
--- /dev/null
+++ b/src/editor/simple/gf_abs.js
@@ -0,0 +1,214 @@
+/* Abstract syntax for a small subset of GF grammars in JavaScript */
+
+function defined_cats(g) {
+    var dc={};
+    with(g.abstract)
+	for(var i in cats) dc[cats[i]]=true;
+    return dc;
+}
+
+function defined_funs(g) {
+    var df={};
+    with(g.abstract)
+	for(var i in funs) df[funs[i].name]=true;
+    return df;
+}
+
+function rename_category(g,oldcat,newcat) {
+    function rename_cats(cats) {
+	for(var i in cats) if(cats[i]==oldcat) cats[i]=newcat;
+    }
+    function rename_type(t) {
+	for(var i in t) if(t[i]==oldcat) t[i]=newcat;
+    }
+    function rename_funs(funs) {
+	for(var i in funs) rename_type(funs[i].type)
+    }
+    function rename_abstract(a) {
+	rename_cats(a.cats);
+	rename_funs(a.funs);
+    }
+    function rename_lincat(lc) {
+	if(lc.cat==oldcat) lc.cat=newcat;
+    }
+    function rename_concrete(c) {
+	for(var i in c.lincats) rename_lincat(c.lincats[i]);
+    }
+    function rename_concretes(cs) {
+	for(var i in cs) rename_concrete(cs[i]);
+    }
+    rename_abstract(g.abstract)
+    rename_concretes(g.concretes);
+    return g;
+}
+
+function rename_function(g,oldfun,newfun) {
+    function rename_lin(lin) {
+	if(lin.fun==oldfun) lin.fun=newfun;
+    }
+    function rename_concrete(c) {
+	for(var i in c.lins) rename_lin(c.lins[i]);
+    }
+    for(var i in g.concretes) rename_concrete(g.concretes[i]);
+    return g;
+}
+
+function change_lin_lhs(g,fun) {
+    function change_lin(lin) {
+	if(lin.fun==fun.name) lin.args=arg_names(fun.type);
+    }
+    function change_concrete(c) {
+	for(var i in c.lins) change_lin(c.lins[i]);
+    }
+    for(var i in g.concretes) change_concrete(g.concretes[i]);
+    return g;
+}
+
+/* --- Parsing -------------------------------------------------------------- */
+
+// GF idenfifier syntax:
+var lex_id=/^[A-Za-z][A-Za-z0-9_']*$/
+// See https://developer.mozilla.org/en/JavaScript/Guide/Regular_Expressions
+
+function check_id(s) { return lex_id.test(s); }
+
+function check_name(s,kind) {
+    return check_id(s)
+	? null
+	: s+"? "+kind+" names must start with a letter and can contain letters, digits, _ and '"
+}
+
+
+function parse_fun(s) {
+    var ws=s.split(/\s+/);
+    var fun={name:"",type:[]};
+    /* Use a state machine to parse function definitions */
+    /* f : T1 -> ... -> Tn */
+    var state="name";
+    var ok=true;
+    for(var i=0;ok && i<ws.length;i++) {
+	if(ws[i]!="") {
+	    switch(state) {
+	    case "name": fun.name=ws[i]; state=":"; break;
+	    case ":": ok=ws[i]==":"; state="type"; break;
+	    case "type": fun.type.push(ws[i]); state="->"; break;
+	    case "->": ok=ws[i]=="->"; state="type"; break;
+	    }
+	}
+    }
+    var err=check_name(fun.name,"Function");
+    if(err) return {error: err};
+    return ok && state=="->"
+           ? {ok:fun}
+           : { error : "Fun : Cat<sub>1</sub>  -> ...  -> Cat<sub>n</sub>" }
+}
+
+
+function parse_param(s) {
+    var ws=s.split("=");
+    if(ws.length==2) {
+	var name=ws[0].trim();
+	var err=check_name(name,"Parameter type");
+	return err ? { error:err } : { ok: { name:name,rhs:ws[1].trim() } }
+    }
+    else
+	return { error: "P = C1 | ... | Cn" }
+}
+
+function parse_oper(s) {
+    var i=s.indexOf(" ");
+    var operr = { error: "op = expr" }
+    if(i>0 && i<s.length-1) {
+	var name=s.substr(0,i).trim();
+	var rhs=s.substr(i).trim();
+	var err=check_name(name,"Operator");
+	return err 
+	    ? {error:err}
+	    : rhs!="" ? {ok: {name:name, rhs:rhs}} 
+	              : operr
+    }
+    else return operr
+    
+}
+
+/* --- Print as plain text (normal GF concrete syntax) ---------------------- */
+
+function show_type(t) {
+    var s="";
+    for(var i in t) {
+	if(i>0) s+=" -> ";
+	s+=t[i];
+    }
+    return s;
+}
+
+function show_fun(fun) {
+    return fun.name+" : "+show_type(fun.type);
+}
+
+function show_grammar(g) {
+    return show_abstract(g)+"\n"+show_concretes(g)
+}
+
+function show_abstract(g) {
+//  var startcat= g.abstract.cats.length==1 ? g.abstract.cats[0] : g.abstract.startcat;
+    var startcat= g.abstract.startcat || g.abstract.cats[0];
+    return "abstract "+g.basename+" = {\n\n"
+	+"flags coding = utf8 ;\n\n"
+	+show_startcat(startcat)
+        +show_cats(g.abstract.cats)
+        +show_funs(g.abstract.funs)
+	+"}\n";
+}
+
+function show_startcat(startcat) {
+    return startcat ? "flags startcat = "+startcat+";\n\n" : "";
+}
+
+function show_cats(cats) {
+    return cats.length>0 ? "cat\n   "+cats.join("; ")+";\n\n" : "";
+}
+
+function show_funs(funs) { return show_list("fun",show_fun,funs); }
+
+function show_concretes(g) {
+    return map(show_concrete(g.basename),g.concretes).join("\n\n");
+}
+
+function show_concrete(basename) {
+    return function(conc) {
+	return "--# -path=.:present\n"
+            + "concrete "+basename+conc.langcode+" of "+basename+" ="
+            +show_opens(conc.opens)
+	    +" {\n\nflags coding = utf8 ;\n\n"
+	    +show_params(conc.params)
+	    +show_lincats(conc.lincats)
+	    +show_opers(conc.opers)
+	    +show_lins(conc.lins)
+	    +"}\n"
+    }
+}
+
+function show_list(kw,show1,list) {
+    return list.length>0 
+	? kw+"\n    "+map(show1,list).join(";\n    ")+";\n\n"
+	: ""
+}
+
+function show_opens(opens) {
+    return opens && opens.length>0 ? "\n\nopen "+opens.join(", ")+" in" : ""
+}
+
+function show_params(params) { return show_list("param",show_param,params); }
+function show_lincats(lincats) { return show_list("lincat",show_lincat,lincats); }
+function show_opers(opers) { return show_list("oper",show_oper,opers); }
+function show_lins(lins) { return show_list("lin",show_lin,lins); }
+
+
+function show_param(p) { return p.name + " = " + p.rhs; }
+function show_oper(p) { return p.name + " " + p.rhs; }
+function show_lincat(p) { return p.cat + " = " + p.type; }
+
+function show_lin(lin) {
+    return lin.fun + " " + lin.args.join(" ")+ " = " + lin.lin;
+}
diff --git a/src/editor/simple/gfse.manifest b/src/editor/simple/gfse.manifest
new file mode 100644
--- /dev/null
+++ b/src/editor/simple/gfse.manifest
@@ -0,0 +1,4 @@
+CACHE MANIFEST
+# 5
+NETWORK:
+*
diff --git a/src/editor/simple/grammars.cgi b/src/editor/simple/grammars.cgi
new file mode 100644
--- /dev/null
+++ b/src/editor/simple/grammars.cgi
@@ -0,0 +1,19 @@
+#!/bin/bash
+echo "Content-Type: text/javascript"
+echo ""
+
+case "$QUERY_STRING" in
+  jsonp=*) prefix="${QUERY_STRING#jsonp=}("; suffix=")" ;;
+  *) prefix=""; suffix=""
+esac
+
+echo -n "$prefix"
+sep="["
+for g in *.pgf ; do
+  echo -n "$sep\"$g\""
+  sep=", "
+done
+echo "]$suffix"
+#echo "/*"
+#set
+#echo "*/"
diff --git a/src/editor/simple/index.html b/src/editor/simple/index.html
new file mode 100644
--- /dev/null
+++ b/src/editor/simple/index.html
@@ -0,0 +1,46 @@
+<!DOCTYPE html>
+<html> <!-- manifest="gfse.manifest" -->
+<head>
+<title>GF online editor for simple multilingual grammars</title>
+<meta charset="UTF-8">
+<link rel="stylesheet" type="text/css" href="editor.css" title="Cloud">
+<link rel="alternate stylesheet" type="text/css" href="molto.css" title="MOLTO">
+
+<link rel=author href="http://www.cse.chalmers.se/~hallgren/" title="Thomas Hallgren">
+
+<meta name = "viewport" content = "width = device-width">
+<meta http-equiv="Content-type" content="text/html;charset=UTF-8">
+
+</head>
+
+<body class=hover>
+
+<h2>GF online editor for simple multilingual grammars</h2>
+<div id=editor>
+</div>
+<small class="hidden">
+<span class=more>+</span>=Add an item,
+<span class=delete>×</span>=Delete item,
+<span class=edit>%</span>=Edit item.
+</small>
+<small class="ifhover">Hover over items for hints and editing options.</small>
+
+<noscript>
+This page does not work without JavaScript.
+</noscript>
+
+<hr>
+<div class=modtime><small>
+HTML
+<!-- hhmts start --> Last modified: Fri Jul 29 15:43:58 CEST 2011 <!-- hhmts end -->
+</small></div>
+<a href="about.html">About</a>
+<pre id=debug></pre>
+<script type="text/javascript" src="support.js"></script>
+<script type="text/javascript" src="localstorage.js"></script>
+<script type="text/javascript" src="gf_abs.js"></script>
+<script type="text/javascript" src="editor.js"></script>
+<script type="text/javascript" src="cloud.js"></script>
+<script type="text/javascript" src="sort.js"></script>
+</body>
+</html>
diff --git a/src/editor/simple/localstorage.js b/src/editor/simple/localstorage.js
new file mode 100644
--- /dev/null
+++ b/src/editor/simple/localstorage.js
@@ -0,0 +1,21 @@
+
+// We use localStorage to store the grammars,
+// see http://diveintohtml5.org/storage.html
+
+var local={
+    prefix:"gf.editor.simple.grammar",
+    get: function (name,def) {
+	var id=this.prefix+name
+	return localStorage[id] ? JSON.parse(localStorage[id]) : def;
+    },
+    put: function (name,value) {
+	var id=this.prefix+name;
+	localStorage[id]=JSON.stringify(value);
+    },
+    remove: function(name) {
+	var id=this.prefix+name;
+	localStorage.removeItem(id);
+    },
+    get count() { return this.get("count",0); },
+    set count(v) { this.put("count",v); }
+}
diff --git a/src/editor/simple/molto.css b/src/editor/simple/molto.css
new file mode 100644
--- /dev/null
+++ b/src/editor/simple/molto.css
@@ -0,0 +1,82 @@
+body { color: #413b36;
+       background: #fffcfa;
+ }
+h1 { font-size: 175%; }
+h1,h2,h3,h4,small { font-family: sans-serif; }
+h1,h2,h3,h4,a { color: #5c1a1a; }
+
+h1:first-child, h2:first-child { margin-top: 0; margin-bottom: 1ex; }
+
+#editor { max-width: 50em; }
+div.grammar { border: 2px solid #b09779; background: #642121; }
+div.files { margin: 0 8px 8px 8px; }
+
+div#file { border: 2px solid #b0977d; border-top-width: 0; }
+pre.plain { border: 2px solid #b0977d; }
+div#file, pre.plain { background: #fffcfa; padding: 0.6ex; }
+
+.slideshow .hidden { display: none; }
+
+img.right, div.right, div.modtime { float: right; }
+.modtime { color: #999; white-space: nowrap; }
+
+/*div.namebar { background: #642121; }*/
+div.namebar table { width: 100%; }
+.namebar h3 { margin: 0; color: white; }
+
+td.right { text-align: right; }
+
+.kw { font-weight: bold; font-family: sans-serif; color: #642121; }
+.sep { font-weight: bold; color: #642121; }
+
+div.indent { padding-left: 1em; min-width: 1em; min-height: 1em; }
+
+/*
+div.fun, div.param, div.lincat, div.oper, div.lin
+{ padding-left: 2em; text-indent: -2em; }
+*/
+.more, .delete { font-weight: bold; font-family: sans-serif; }
+.more, .delete, .edit { cursor: pointer; }
+
+.hover .more, .hover .delete, .hover .edit { visibility: hidden }
+
+.hover .hidden, .nohover .ifhover { display: none; }
+
+.editable:hover, .deletable:hover { background: #ff9; }
+.namebar .editable:hover { background: #04b; }
+
+.extensible:hover .more,.editable:hover > .edit ,.deletable:hover > .delete 
+  { visibility: visible; }
+
+.more { color: green; }
+.edit { color: orange; }
+.delete { color: red; }
+.error_message,.inError { color: red; }
+.template, .template .sep { color: #999; }
+form { display: inline-block; }
+
+table.tabs {
+    width: 100%;
+    border-width: 0; border-spacing: 0; empty-cells: show;
+}
+
+table.tabs td { text-align: center; border: 2px solid #b09779; padding: 2px; }
+table.tabs td.active { background: white; border-bottom-width: 0; }
+table.tabs td.inactive {
+    background: #e1e1e1;
+    border-top-color: #b09779; border-left-color: #b09779; border-right-color: #b09779;
+}
+
+ table.tabs td.gap
+{ border-top-width: 0; border-left-width: 0; border-right-width: 0; }
+
+table.tabs input[type=button] {
+    border: 0;
+    background: inherit;
+    color: #642121;
+    font-size: inherit;
+    font-weight: bold;
+    /*text-decoration: underline;*/
+}
+
+input.string_edit { font-family: inherit; font-size: inherit; }
diff --git a/src/editor/simple/save.hs b/src/editor/simple/save.hs
new file mode 100644
--- /dev/null
+++ b/src/editor/simple/save.hs
@@ -0,0 +1,25 @@
+import System(getArgs)
+import CGI(getQuery,string)
+import MUtils(apSnd)
+
+main = save2 =<< getArgs
+
+{-
+save1 [dir] =
+  do fs@[ns,_] <- readIO =<< getContents
+     nes <- save_all fs
+     putStrLn $ unwords nes
+  where
+    save_all [ns,cs] = mapM (write1 dir) (zip ns cs)
+-}
+
+write1 dir (n,c) = 
+   do writeFile (dir++"/"++ne) c
+      return ne
+  where
+    ne=if '.' `elem` n then n else n++".gf"
+ 
+save2 [dir] =
+  do nfs <- getQuery
+     nes <- mapM (write1 dir . apSnd string) nfs
+     putStrLn $ unwords nes
diff --git a/src/editor/simple/share.html b/src/editor/simple/share.html
new file mode 100644
--- /dev/null
+++ b/src/editor/simple/share.html
@@ -0,0 +1,27 @@
+<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
+<html> <head>
+<title>Download from Grammar Cloud</title>
+<link rel="stylesheet" type="text/css" href="editor.css" title="Cloud">
+<link rel="alternate stylesheet" type="text/css" href="molto.css" title="MOLTO">
+
+</head>
+
+<body>
+<h1><img src="P/1307545048_weather_09.png" alt="">Download from Grammar Cloud</h1>
+
+<pre id=debug></pre>
+
+<hr>
+<address></address>
+<!-- hhmts start --> Last modified: Mon Aug  1 16:24:44 CEST 2011 <!-- hhmts end -->
+<script type="text/javascript" src="support.js"></script>
+<script type="text/javascript" src="localstorage.js"></script>
+<script type="text/javascript" src="gf_abs.js"></script>
+<script type="text/javascript" src="editor.js"></script>
+<script type="text/javascript" src="cloud.js"></script>
+<script type="text/javascript" src="sort.js"></script>
+<script type="text/javascript">
+download_from_cloud();
+</script>
+</body>
+</html>
diff --git a/src/editor/simple/slideshow.js b/src/editor/simple/slideshow.js
new file mode 100644
--- /dev/null
+++ b/src/editor/simple/slideshow.js
@@ -0,0 +1,86 @@
+
+var internet_explorer=navigator.appName=="Microsoft Internet Explorer";
+
+/* How to change opacity in IE:
+http://joseph.randomnetworks.com/archives/2006/08/16/css-opacity-in-internet-explorer-ie/
+*/
+
+var set_opacity =
+  internet_explorer
+    ? function(el,o) { el.style.filter="alpha(opacity="+Math.round(o*100)+")";}
+    : function(el,o) { el.style.opacity=o; };
+
+function start_slideshow(img,options) {
+    var p=img.parentNode;
+    if(p.tagName=="A") p=p.parentNode;
+    var is=p.getElementsByTagName("img");
+    if(is.length>1) {
+	var cur=0;
+	var w=img.width;
+	var h=img.height;
+	//p.style.position="relative";
+	p.style.minWidth=w+"px";
+	p.style.minHeight=h+"px";
+	var images=[];
+	for(var i=0;i<is.length;i++) {
+	    images[i]=is[i];
+	    var c=images[i];
+	    if(internet_explorer) c.style.zoom=1;
+	    c.style.position="absolute";
+	}
+	var timeout=1000*(options.delay || 5);
+	var ft=options.fade==null ? 1 : options.fade;
+	var tick=function() {
+	    var c=images[cur];
+	    cur= (cur+1) % images.length;
+	    var n=images[cur];
+	    set_opacity(n,0);
+	    //n.style.position="static";
+	    n.style.zIndex=1;
+	    n.className="";
+	    if(n.width>w) { w=n.width; p.style.minWidth=w+"px"; }
+	    if(n.height>h) { h=n.height; p.style.minHeight=h+"px"; }
+	    c.style.position="absolute";
+	    c.style.zIndex=0;
+	    fade(n,0,1,ft,function() {
+		if(c.width>n.width || c.height>n.height) fade(c,1,0,ft,null);
+		else set_opacity(c,0); });
+	    //debug.innerHTML=w+"x"+h;
+	    //for(var i=0;i<images.length;i++)
+		//debug.appendChild(text(" "+images[i].style.position));
+	}
+	//var debug=document.createElement("div");
+	//p.parentNode.insertBefore(debug,p);
+	//debug.innerHTML=w+"x"+h;
+	setInterval(tick,timeout);
+    }
+    //else alert("No slideshow!");
+}
+
+function fade(el,start,stop,t,after) {
+  // el: which element to fade
+  // start: starting opacity [0..1]
+  // stop: ending opacity [0..1]
+  // t: duration of fade (in seconds), default 1s
+  // after: function to call when done fading, optional
+  var dt=40; // Animation granularity, 1/40ms = 25fps
+  el.step=(stop-start)*dt/(1000*(t==null ? 1 : t));
+  el.stop=stop;
+  //alert("fade "+start+" "+stop+" "+el.step);
+  var done=function() {
+      clearInterval(el.timer);
+      el.timer=null;
+      if(after) after();
+  }
+  var f=function() {
+     var next=el.current+el.step;
+     if(next>=1) { next=1; done(); }
+     if(next<=0) { next=0; done(); }
+     set_opacity(el,next);
+     el.current=next
+  }
+  if(!el.timer) {
+      el.current=start;
+      el.timer=setInterval(f,dt);
+  }
+}
diff --git a/src/editor/simple/upload.cgi b/src/editor/simple/upload.cgi
new file mode 100644
--- /dev/null
+++ b/src/editor/simple/upload.cgi
@@ -0,0 +1,252 @@
+#!/bin/bash
+
+bin=/Users/hallgren/www/bin
+
+charset="UTF-8"
+AUTOHEADER=no
+
+. $bin/cgistart.sh
+export LC_CTYPE="UTF-8"
+style_url="editor.css"
+
+tmp="$documentRoot/tmp"
+
+make_dir() {
+  dir="$(mktemp -d "$tmp/gfse.XXXXXXXXXX")"
+# chmod a+rxw "$dir"
+  chmod a+rx "$dir"
+  cp "grammars.cgi" "$dir"
+}
+
+
+check_grammar() {
+  pagestart "Uploaded"
+# echo "$PATH_INFO"
+  chgrp everyone "$dir"
+  chmod g+ws "$dir"
+  umask 002
+# files=( $(Reg from-url | LC_CTYPE=sv_SE.ISO8859-1 ./save "$dir") )
+  files=( $(LC_CTYPE=sv_SE.ISO8859-1 ./save "$dir") )
+  gffiles=( )
+  otherfiles=( )
+  for f in ${files[*]} ; do
+    case "$f" in
+      *.gf) gffiles=( ${gffiles[*]} "$f" ) ;;
+      *) otherfiles=( ${otherfiles[*]} "$f" ) ;;
+    esac
+  done
+
+  if [ ${#otherfiles} -gt 0  -a -n "$PATH_INFO" ] ; then
+      echo "Use the following link for shared access to your grammars from multiple devices:"
+      begin ul
+        case "$SERVER_PORT" in
+	    80) port="" ;;
+	    *) port=":$SERVER_PORT"
+        esac
+        parent="http://$SERVER_NAME$port${REQUEST_URI%/upload.cgi/tmp/gfse.*}"
+        cloudurl="$parent/share.html#${dir##*/}"
+        li; link "$cloudurl" "$cloudurl"
+      end
+      #begin dl
+      #dt ; echo "◂"; link "javascript:history.back()" "Back to Editor"
+      #end
+  fi
+
+  cd $dir
+  if [ ${#gffiles} -gt 0 ] ; then
+    begin pre
+    echo "gf -s -make ${gffiles[*]}"
+    if gf -s -make ${gffiles[*]} 2>&1 ; then
+      end
+      h3 OK
+      begin dl
+      [ -z "$minibar_url" ] || { dt; echo "▸"; link "$minibar_url?/tmp/${dir##*/}/" "Minibar"; }
+      [ -z "$transquiz_url" ] || { dt; echo "▸"; link "$transquiz_url?/tmp/${dir##*/}/" "Translation Quiz"; }
+      [ -z "$gfshell_url" ] || { dt; echo "▸"; link "$gfshell_url?dir=${dir##*/}" "GF Shell"; }
+      dt ; echo "◂"; link "javascript:history.back()" "Back to Editor"
+
+      end
+      sed=();
+      for pgf in *.pgf ; do
+	  sed=("${sed[@]}" -e "s%$pgf%<a href=\"${dir##*/}/$pgf\">$pgf</a>%")
+      done
+      begin pre
+        ls -l *.pgf | sed "${sed[@]}"
+      end
+    else
+      end
+      begin h3 class=error_message; echo Error; end
+      for f in ${gffiles[*]} ; do
+	h4 "$f"
+	begin pre class=plain
+	cat -n "$f"
+	end
+      done
+    fi
+  fi
+  begin div class=footer
+  hr
+  date
+  end
+# begin pre ; env
+  endall
+}
+
+error400() {
+    echo "Status: 400"
+    pagestart "Error"
+    echo "What do you want?"
+    endall
+}
+
+error404() {
+    echo "Status: 404"
+    pagestart "Not found"
+    echo "Not found"
+    endall
+}
+
+if [ -z "$tmp" ] || ! [ -d "$tmp" ] ; then
+  pagestart "Error"
+  begin pre
+  echo "upload.cgi is not properly configured:"
+  if [ -z "$tmp" ] ; then
+    echo "cgiconfig.sh must define tmp"
+  elif [ ! -d "$tmp" ] || [ ! -w "$tmp" ] ; then
+    echo "$tmp must be a writeable directory"
+  fi
+  # cgiconfig.sh should define minibar & gfshell to allow grammars to be tested.
+  endall
+else
+case "$REQUEST_METHOD" in
+  POST)
+    case "$PATH_INFO" in
+      /tmp/gfse.*)
+	style_url="../../$style_url"
+        dir="$tmp/${PATH_INFO##*/}"
+	check_grammar
+	;;
+      *)
+        make_dir
+	echo >&2 "Using temporary directory $dir"
+	check_grammar
+        rm -rf "$dir"
+    esac
+    ;;
+  GET)
+    case "$QUERY_STRING" in
+	dir) make_dir
+	     ContentType="text/plain"
+	     cgiheaders
+	     echo_n "/tmp/${dir##*/}"
+             ;;
+	ls=*)
+	     dir=$(qparse "$QUERY_STRING" ls)
+	     case "$dir" in
+		 /tmp/gfse.*) # shouldn't allow .. in path !!!
+		     path="$documentRoot$dir"
+		     if [ -d "$path" ] ; then
+			 ContentType="text/plain; charset=$charset"
+			 cgiheaders
+			 cd "$path"
+			 shopt -s nullglob
+			 echo_n *-*.json
+		     else
+			 error404
+		     fi
+		     ;;
+                *) error400
+	     esac
+	     ;;
+	rmdir=*)
+	     dir=$(qparse "$QUERY_STRING" rmdir)
+	     case "$dir" in
+		 /tmp/gfse.*) # shouldn't allow .. in path !!!
+		     path="$documentRoot$dir"
+		     if [ -d "$path" ] ; then
+			 ContentType="text/plain; charset=$charset"
+			 cgiheaders
+			 if [ -h "$path" ] ; then
+			     cd "$path"
+			     cd ..
+			     rm "$path"
+			 else
+			   cd "$path"
+			   shopt -s nullglob
+			   rm *.gf *.gfo *-*.json *.pgf grammars.cgi
+			   cd ..
+			   rmdir "$path"
+			 fi
+			 newdir=$(qparse "$QUERY_STRING" newdir)
+			 case "$newdir" in
+			     /tmp/gfse.*) # shouldn't allow .. in path !!!
+				 newnode="${newdir##*/}"
+				 oldnode="${path##*/}"
+				 ln -s "$newnode" "$oldnode"
+			 esac
+		     else
+			 error404
+		     fi
+		     ;;
+                *) error400
+	     esac
+	     ;;
+	download=*)
+	     file=$(qparse "$QUERY_STRING" download)
+	     case "$file" in
+		 /tmp/gfse.*/*.json) # shouldn't allow .. in path !!!
+		     path="$documentRoot$file"
+		     if [ -r "$path" ] ; then
+			 ContentType="text/javascript; charset=$charset"
+			 cgiheaders
+			 cat "$path"
+		     else
+			 error404
+		     fi
+		     ;;
+                *) error400
+	     esac
+	     ;;
+	rm=*)
+	     file=$(qparse "$QUERY_STRING" rm)
+	     case "$file" in
+		 /tmp/gfse.*/*.json) # shouldn't allow .. in path !!!
+		     path="$documentRoot$file"
+		     if [ -r "$path" ] ; then
+			 ContentType="text/javascript; charset=$charset"
+			 cgiheaders
+			 rm "$path"
+		     else
+			 error404
+		     fi
+		     ;;
+                *) error400
+	     esac
+	     ;;
+	cc=*)
+	     # Just to check an expression for syntax errors
+	     exp=$(qparse "$QUERY_STRING" cc)
+	     ContentType="text/plain; charset=$charset"
+	     cgiheaders
+	     echo "cc $exp" | GF_RESTRICTED=True gf -run
+	     ;;
+	"")
+	    case "$PATH_INFO" in
+		/tmp/gfse.*/*.pgf)
+		    path="$documentRoot$PATH_INFO"
+		    if [ -r $path ] ; then
+			ContentType="application/binary"
+			cgiheaders
+			cat "$path"
+		    else 
+			error404
+		    fi
+		    ;;
+		*)
+		  error400
+	    esac
+	    ;;
+        *) error400
+    esac
+esac
+fi
diff --git a/src/runtime/haskell/Data/Binary/Builder.hs b/src/runtime/haskell/Data/Binary/Builder.hs
--- a/src/runtime/haskell/Data/Binary/Builder.hs
+++ b/src/runtime/haskell/Data/Binary/Builder.hs
@@ -1,5 +1,4 @@
-{-# LANGUAGE CPP #-}
-{-# OPTIONS_GHC -fglasgow-exts #-}
+{-# LANGUAGE CPP, MagicHash #-}
 -- for unboxed shifts
 
 -----------------------------------------------------------------------------
diff --git a/src/runtime/haskell/Data/Binary/Get.hs b/src/runtime/haskell/Data/Binary/Get.hs
--- a/src/runtime/haskell/Data/Binary/Get.hs
+++ b/src/runtime/haskell/Data/Binary/Get.hs
@@ -1,5 +1,4 @@
-{-# LANGUAGE CPP #-}
-{-# OPTIONS_GHC -fglasgow-exts #-}
+{-# LANGUAGE CPP, MagicHash #-}
 -- for unboxed shifts
 
 -----------------------------------------------------------------------------
diff --git a/src/runtime/haskell/PGF.hs b/src/runtime/haskell/PGF.hs
--- a/src/runtime/haskell/PGF.hs
+++ b/src/runtime/haskell/PGF.hs
@@ -109,6 +109,9 @@
            -- ** Morphological Analysis
            Lemma, Analysis, Morpho,
            lookupMorpho, buildMorpho, fullFormLexicon,
+           
+           -- ** Tokenizing
+           mkTokenizer,
 
            -- ** Visualizations
            graphvizAbstractTree,
@@ -141,6 +144,7 @@
 import PGF.Morphology
 import PGF.Data
 import PGF.Binary
+import PGF.Tokenizer
 import qualified PGF.Forest as Forest
 import qualified PGF.Parse as Parse
 
diff --git a/src/runtime/haskell/PGF/Data.hs b/src/runtime/haskell/PGF/Data.hs
--- a/src/runtime/haskell/PGF/Data.hs
+++ b/src/runtime/haskell/PGF/Data.hs
@@ -1,7 +1,7 @@
 module PGF.Data (module PGF.Data, module PGF.Expr, module PGF.Type) where
 
 import PGF.CId
-import PGF.Expr hiding (Value, Sig, Env, Tree, eval, apply, value2expr)
+import PGF.Expr hiding (Value, Sig, Env, Tree, eval, apply, applyValue, value2expr)
 import PGF.Type
 
 import qualified Data.Map as Map
@@ -79,12 +79,16 @@
 -- merge two PGFs; fails is differens absnames; priority to second arg
 
 unionPGF :: PGF -> PGF -> PGF
-unionPGF one two = case absname one of
-  n | n == wildCId     -> two    -- extending empty grammar
-    | n == absname two -> one {  -- extending grammar with same abstract
+unionPGF one two = fst $ msgUnionPGF one two
+
+msgUnionPGF :: PGF -> PGF -> (PGF, Maybe String)
+msgUnionPGF one two = case absname one of
+  n | n == wildCId     -> (two, Nothing)    -- extending empty grammar
+    | n == absname two && haveSameFunsPGF one two -> (one { -- extending grammar with same abstract
       concretes = Map.union (concretes two) (concretes one)
-    }
-  _ -> one   -- abstracts don't match ---- print error msg
+    }, Nothing)
+  _ -> (two, -- abstracts don't match, discard the old one  -- error msg in Importing.ioUnionPGF
+        Just "Abstract changed, previous concretes discarded.")
 
 emptyPGF :: PGF
 emptyPGF = PGF {
@@ -93,6 +97,14 @@
   abstract  = error "empty grammar, no abstract",
   concretes = Map.empty
   }
+
+-- sameness of function type signatures, checked when importing a new concrete in env
+haveSameFunsPGF :: PGF -> PGF -> Bool
+haveSameFunsPGF one two = 
+  let 
+    fsone = [(f,t) | (f,(t,_,_,_)) <- Map.toList (funs (abstract one))]
+    fstwo = [(f,t) | (f,(t,_,_,_)) <- Map.toList (funs (abstract two))]
+  in fsone == fstwo
 
 -- | This is just a 'CId' with the language name.
 -- A language name is the identifier that you write in the 
diff --git a/src/runtime/haskell/PGF/Expr.hs b/src/runtime/haskell/PGF/Expr.hs
--- a/src/runtime/haskell/PGF/Expr.hs
+++ b/src/runtime/haskell/PGF/Expr.hs
@@ -11,7 +11,7 @@
                 normalForm,
 
                 -- needed in the typechecker
-                Value(..), Env, Sig, eval, apply, value2expr,
+                Value(..), Env, Sig, eval, apply, applyValue, value2expr,
 
                 MetaId,
 
@@ -201,8 +201,8 @@
 pFactor =       fmap EFun  pCId
         RP.<++  fmap ELit  pLit
         RP.<++  fmap EMeta pMeta
-        RP.<++  RP.between (RP.char '(') (RP.char ')') pExpr
-        RP.<++  RP.between (RP.char '<') (RP.char '>') pTyped
+        RP.<++  RP.between (RP.char '(') (RP.skipSpaces >> RP.char ')') pExpr
+        RP.<++  RP.between (RP.char '<') (RP.skipSpaces >> RP.char '>') pTyped
 
 pTyped = do RP.skipSpaces
             e <- pExpr
@@ -354,7 +354,9 @@
                                                              Nothing  -> VApp f vs
                                       Nothing           -> error ("unknown function "++showCId f)
 apply sig env (EApp e1 e2) vs     = apply sig env e1 (eval sig env e2 : vs)
-apply sig env (EAbs _ x e) (v:vs) = apply sig (v:env) e vs
+apply sig env (EAbs b x e) (v:vs) = case (b,v) of
+                                      (Implicit,VImplArg v) -> apply sig (v:env) e vs
+                                      (Explicit,         v) -> apply sig (v:env) e vs
 apply sig env (EMeta i)    vs     = case snd sig i of
                                       Just e  -> apply sig env e vs
                                       Nothing -> VMeta i env vs
@@ -369,7 +371,9 @@
 applyValue sig (VGen  i vs0)             vs       = VGen  i (vs0++vs)
 applyValue sig (VSusp i env vs0 k)       vs       = VSusp i env vs0 (\v -> applyValue sig (k v) vs)
 applyValue sig (VConst f vs0)            vs       = VConst f (vs0++vs)
-applyValue sig (VClosure env (EAbs b x e)) (v:vs) = apply sig (v:env) e vs
+applyValue sig (VClosure env (EAbs b x e)) (v:vs) = case (b,v) of
+                                                      (Implicit,VImplArg v) -> apply sig (v:env) e vs
+                                                      (Explicit,         v) -> apply sig (v:env) e vs
 applyValue sig (VImplArg _)              vs       = error "implicit argument in function position"
 
 -----------------------------------------------------
diff --git a/src/runtime/haskell/PGF/Generate.hs b/src/runtime/haskell/PGF/Generate.hs
--- a/src/runtime/haskell/PGF/Generate.hs
+++ b/src/runtime/haskell/PGF/Generate.hs
@@ -99,9 +99,7 @@
       mv <- getMeta i
       case mv of
         MBound e -> c e
-        MUnbound _ scope tty cs -> do e <- prove dp scope tty
-                                      setMeta i (MBound e)
-                                      sequence_ [c e | c <- (c:cs)]
+        MUnbound x scope tty cs -> setMeta i (MUnbound x scope tty (c:cs))
 
     abs []                e = e
     abs ((bt,x,ty):hypos) e = EAbs bt x (abs hypos e)
diff --git a/src/runtime/haskell/PGF/Linearize.hs b/src/runtime/haskell/PGF/Linearize.hs
--- a/src/runtime/haskell/PGF/Linearize.hs
+++ b/src/runtime/haskell/PGF/Linearize.hs
@@ -74,7 +74,7 @@
     lin mb_cty n_fid e0 ys xs (ETyped e _) es = lin   mb_cty n_fid e0 ys    xs  e      es
     lin mb_cty n_fid e0 ys xs (EFun f)     es = apply mb_cty n_fid e0 ys    xs  f      es
     lin mb_cty n_fid e0 ys xs (EMeta i)    es = def   mb_cty n_fid e0 ys    xs  ('?':show i)
-    lin mb_cty n_fid e0 ys xs (EVar  i)    [] = def   mb_cty n_fid e0 ys    xs  (showCId ((xs++ys) !! i))
+    lin mb_cty n_fid e0 ys xs (EVar  i)    _  = def   mb_cty n_fid e0 ys    xs  (showCId ((xs++ys) !! i))
     lin mb_cty n_fid e0 ys xs (ELit l)     [] = case l of
                                                    LStr s -> return (n_fid+1,((cidString,n_fid),[e0],([],ss s)))
                                                    LInt n -> return (n_fid+1,((cidInt,   n_fid),[e0],([],ss (show n))))
diff --git a/src/runtime/haskell/PGF/Morphology.hs b/src/runtime/haskell/PGF/Morphology.hs
--- a/src/runtime/haskell/PGF/Morphology.hs
+++ b/src/runtime/haskell/PGF/Morphology.hs
@@ -1,5 +1,5 @@
 module PGF.Morphology(Lemma,Analysis,Morpho,
-                      buildMorpho,
+                      buildMorpho,isInMorpho,
                       lookupMorpho,fullFormLexicon,
                       morphoMissing,missingWordMsg) where
 
@@ -41,6 +41,9 @@
 
 lookupMorpho :: Morpho -> String -> [(Lemma,Analysis)]
 lookupMorpho (Morpho mo) s = maybe [] id $ Map.lookup s mo
+
+isInMorpho :: Morpho -> String -> Bool
+isInMorpho (Morpho mo) s = maybe False (const True) $ Map.lookup s mo
 
 fullFormLexicon :: Morpho -> [(String,[(Lemma,Analysis)])]
 fullFormLexicon (Morpho mo) = Map.toList mo
diff --git a/src/runtime/haskell/PGF/Tokenizer.hs b/src/runtime/haskell/PGF/Tokenizer.hs
new file mode 100644
--- /dev/null
+++ b/src/runtime/haskell/PGF/Tokenizer.hs
@@ -0,0 +1,109 @@
+{-
+GF Tokenizer.
+
+In this module are implemented function that build a fst-based tokenizer
+from a Concrete grammar.
+
+-}
+module PGF.Tokenizer 
+       ( mkTokenizer
+       ) where
+
+import Data.List (intercalate)
+--import Test.QuickCheck
+import FST.TransducerInterface
+import PGF.Morphology (fullFormLexicon, buildMorpho)
+import PGF.Data (PGF, Language)
+
+
+
+data LexSymbol = Tok String
+    deriving (Show, Read)
+
+type Lexicon = [LexSymbol]
+
+-- | This is the construction function. Given a PGF and a Language, it 
+-- extract the lexicon for this language and build a tokenization fst
+-- from it.
+mkTokenizer :: PGF -> Language -> (String -> Maybe [String])
+mkTokenizer pgf lang = mkTrans lexicon
+  where lexicon = map (Tok . fst) lexicon'
+        lexicon' = fullFormLexicon $ buildMorpho pgf lang
+
+mkTrans :: Lexicon -> (String -> Maybe [String])
+mkTrans = applyDown . lexiconTrans
+
+lexiconTrans :: Lexicon -> Transducer Char
+lexiconTrans lexicon = compile (words |> star ((spaces <|> glue) |> words)) "abcdefghijklmnopqrstuvwxyz "
+  where words = foldr (<|>) (empty) $ map tokToRR lexicon
+        glue = eps <*> stringReg " &+ "
+
+stringReg :: String -> Reg Char
+stringReg str = foldr (\x y -> s x |> y) eps str 
+
+tokToRR:: LexSymbol -> RReg Char
+tokToRR (Tok str) = foldr ((|>) . idR . s) (idR eps) str
+
+spaces :: RReg Char
+spaces = idR $ s ' '
+
+
+
+-- TESTING
+
+-- verry small test lexicon
+-- testLexicon :: Lexicon
+-- testLexicon
+--   = [ Tok "car"
+--     , Tok "elf"
+--     ]
+
+-- myTrans :: String -> Maybe [String]
+-- myTrans = mkTrans testLexicon
+
+-- data TestCase = TestCase String String
+--     deriving (Show, Read)
+
+-- instance Arbitrary TestCase where
+--     arbitrary     = arbitraryTestCase
+--     --coarbitrary c = variant (ord c `rem` 4)
+
+-- arbitraryTestCase:: Gen TestCase
+-- arbitraryTestCase = do
+--   words <- listOf1 $ elements [t | Tok t <- testLexicon]
+--   tokens <- intercalateSometime "+&+" words
+--   return $ TestCase (linearize tokens) (intercalate " " tokens)
+--   where intercalateSometime :: a -> [a] -> Gen [a]
+--         intercalateSometime x (x1:x2:xs) = do 
+--           b <- arbitrary
+--           let pre = case b of 
+--                 True -> x1:x:[]
+--                 False -> x1:[]
+--           suf <- intercalateSometime x (x2:xs)
+--           return (pre++suf)
+--         intercalateSometime _ xs = return xs
+
+-- linearize :: [String] -> String
+-- linearize = linearize' False
+--   where linearize' _ [] = ""  -- boolean indicate if the last token was a real word and not +&+
+--         linearize' _  ("+&+":ss) = linearize' False ss
+--         linearize' True (s:ss) = ' ':s ++ linearize' True ss
+--         linearize' False (s:ss) = s ++ linearize' True ss
+
+-- testTrans :: (String -> Maybe [String]) -> TestCase -> Bool
+-- testTrans t (TestCase s1 s2) =
+--   case t s1 of
+--     Nothing -> False
+--     Just l -> elem s2 l 
+
+-- main :: IO ()
+-- main = do
+--   putStrLn "\n=== Transducer ==="
+--   print $ lexiconTrans lexicon
+--   putStrLn "\n=== example output ==="
+--   putStrLn $ "Input:  " ++ show "car elfcar elf"
+--   putStrLn $ "Output: " ++ (show $ mkTrans lexicon "car elfcar elf")
+--   putStrLn "\n=== QuickCheck tests ==="
+--   quickCheck (testTrans myTrans)
+--   putStrLn "\n=== Examples of test cases ==="
+--   sample (arbitrary :: Gen TestCase)
diff --git a/src/runtime/haskell/PGF/TypeCheck.hs b/src/runtime/haskell/PGF/TypeCheck.hs
--- a/src/runtime/haskell/PGF/TypeCheck.hs
+++ b/src/runtime/haskell/PGF/TypeCheck.hs
@@ -28,7 +28,7 @@
                      ) where
 
 import PGF.Data
-import PGF.Expr hiding (eval, apply, value2expr)
+import PGF.Expr hiding (eval, apply, applyValue, value2expr)
 import qualified PGF.Expr as Expr
 import PGF.Macros (typeOfHypo, cidInt, cidFloat, cidString)
 import PGF.CId
@@ -351,6 +351,7 @@
   return (EMeta i)
 tcExpr scope e0        tty = do
   (e0,tty0) <- infExpr scope e0
+  (e0,tty0) <- appImplArg scope e0 tty0
   i <- newGuardedMeta e0
   eqType scope (scopeSize scope) i tty tty0
   return (EMeta i)
@@ -424,6 +425,14 @@
     then tcArg scope (EApp e1 (EImplArg (EMeta i))) e2                                delta  (DTyp hs c es)
     else tcArg scope (EApp e1 (EImplArg (EMeta i))) e2 (VMeta i (scopeEnv scope) [] : delta) (DTyp hs c es)
 
+appImplArg scope e (TTyp delta (DTyp ((Implicit,x,ty1):hypos) cat es)) = do
+  i <- newMeta scope (TTyp delta ty1)
+  let delta' = if x == wildCId
+                 then                               delta  
+                 else VMeta i (scopeEnv scope) [] : delta
+  appImplArg scope (EApp e (EImplArg (EMeta i))) (TTyp delta' (DTyp hypos cat es))
+appImplArg scope e tty                                                 = return (e,tty)
+
 -----------------------------------------------------
 -- eqType
 -----------------------------------------------------
@@ -489,6 +498,14 @@
     eqValue' k (VGen  i vs1)                  (VGen  j vs2)   | i  == j      = zipWithM_ (eqValue fail suspend k) vs1 vs2
     eqValue' k (VClosure env1 (EAbs _ x1 e1)) (VClosure env2 (EAbs _ x2 e2)) = let v = VGen k []
                                                                                in eqExpr fail suspend (k+1) (v:env1) e1 (v:env2) e2
+    eqValue' k (VClosure env1 (EAbs _ x1 e1)) v2                             = let v = VGen k []
+                                                                               in do v1 <- eval (v:env1) e1
+                                                                                     v2 <- applyValue v2 [v]
+                                                                                     eqValue fail suspend (k+1) v1 v2
+    eqValue' k v1                             (VClosure env2 (EAbs _ x2 e2)) = let v = VGen k []
+                                                                               in do v1 <- applyValue v1 [v]
+                                                                                     v2 <- eval (v:env2) e2
+                                                                                     eqValue fail suspend (k+1) v1 v2
     eqValue' k v1                             v2                             = fail
 
     bind i scope cs env vs0 v = do
@@ -639,6 +656,9 @@
 
 apply :: Env -> Expr -> [Value] -> TcM s Value
 apply env e vs = TcM (\abstr k h ms -> k (Expr.apply (funs abstr,lookupMeta ms) env e vs) ms)
+
+applyValue :: Value -> [Value] -> TcM s Value
+applyValue v vs = TcM (\abstr k h ms -> k (Expr.applyValue (funs abstr,lookupMeta ms) v vs) ms)
 
 value2expr :: Int -> Value -> TcM s Expr
 value2expr i v = TcM (\abstr k h ms -> k (Expr.value2expr (funs abstr,lookupMeta ms) i v) ms)
diff --git a/src/runtime/javascript/minibar/about.html b/src/runtime/javascript/minibar/about.html
--- a/src/runtime/javascript/minibar/about.html
+++ b/src/runtime/javascript/minibar/about.html
@@ -1,8 +1,7 @@
-<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
+<!DOCTYPE html>
 <html> <head>
 <title>About Minibar</title>
 <link rel=stylesheet type="text/css" href="minibar.css">
-<meta http-equiv="Content-type" content="text/html;charset=UTF-8">
 <meta charset="UTF-8">
 </head>
 
@@ -33,7 +32,9 @@
   There seems to be some rendering bugs in Chrome 5.0.342.9 β.
   <li>The implementation consist of two JavaScript files:
   <a href="minibar.js">minibar.js</a> and <a href="support.js">support.js</a>
-  The latter is also used in a small web app based on the
+  The latter is also used in
+  <a href="http://spraakbanken.gu.se/swe/forskning/saldo/ordspel">a couple of
+  small web apps</a> based on the
   <a href="http://spraakbanken.gu.se/sal/ws/">SALDO web services</a>.
   <li>To access the GF web service, it uses the
   <a href="http://en.wikipedia.org/wiki/JSON#JSONP">JSONP method</a>
@@ -90,21 +91,21 @@
   browsers.
   <li>[Added 2010-05-26] The text entry field is now visible from the start,
   and it is removed when no more words can be added to the sentence. When you
-  press enter, the a word is added if there is only one magnet left,
+  press enter, a word is added if there is only one magnet left,
   <em>or</em> if what you have entered exactly matches one of the remaining
   magnet.
   <li>[Added 2010-05-28] Added a link to make it easy to try the same sentence in
-  <a href="http://translate.google.com">Google Translate</a>.
-  This can be turned of by passing the option <code>{try_google:false}</code> to
+  <a href="http://translate.google.com">Google Translate</a>.This can be
+  turned off by passing the option <code>{try_google:false}</code> to
   <code>start_minibar</code>.
   <li>[Added 2010-06-02] Added support for Help and Feedback buttons, controlled
   by the options <code>feedback_url</code> and <code>help_url</code> passed to
   <code>start_minibar</code>.
   <li>[Added 2010-06-02] New option: <code>default_source_language</code>.
   <li>[Added 2010-09-10] Minibar now automatically uses
-      <a href="http://en.wikipedia.org/wiki/Ajax_(programming)">AJAX</a>
+      <a href="http://en.wikipedia.org/wiki/XMLHttpRequest">XHR</a>
       instead of JSONP when possible (i.e. when the HTML document and the
-      PGF server are on the same server).
+      PGF service are on the same server).
   <li>[Added 2010-09-10] The default input language is now the user's preferred
   language, if possible. This is implemented by consulting the
   <code>userLanguage</code> field in the grammar info output by pgf-server.
@@ -131,7 +132,7 @@
       <a href="pgf_online.js">pgf_online.js</a>.
     <li>The minibar code has been rewritten to avoid storing state information
       in the document tree and accessing it by referring to named document
-      elements. The code now also avoids using string literals contaning
+      elements. The code now also avoids using string literals containing
       the names of top-level functions to specify event handlers for buttons
       and menus. (The code is no longer introspective, so &alpha; conversion
       will not change its meaning.)
@@ -145,11 +146,32 @@
      page that uses <a href="pgf_online.js">pgf_online.js</a> to talk to the
      PGF server.
    </ul>
+ <li>[Added 2011-03-03] Added a button to display word alignment.
+ <li>[Changed 2011-03-22] Don't force focus to the typed input field
+   after every word. On touch-based devices, the on-screen keyboard kept
+   popping up after every word, which was very annoying if you were
+   entering a sentence by tapping on the magnets.
+ <li>[Changed 2011-08-03] Moved the initialization code in minibar.html to
+   <a href="minibar_online.js">minibar_online.js</a>.
+ <li>[Changed 2011-08-08] For improved modularity and reusability,
+   two smaller objects have been factored out from the Minibar object:
+   Input and Translations. These have been placed in two separate files:
+   <a href="minibar_input.js">minibar_input.js</a> and
+   <a href="minibar_translations.js">minibar_translations.js</a>.
+   Some common auxiliary functions have also been moved to a separate file:
+   <a href="minibar_support.js">minibar_support.js</a>.
+ <li>[Added 2011-08-09] Added some <a href="minibar-api.html">Minibar API</a>
+   documentation.
+ <li>[Changed 2011-08-22] Quick fix to allow literals to be entered:
+   if you press Enter, the current word will be accepted, even if there are no
+   matching completions.
+   (You can now use names of people when constructing sentences in the Letter
+   grammar, for example.)
 </ul>
 
 <hr>
 <small class=modtime>
-<!-- hhmts start --> Last modified: Sun Nov 28 12:49:43 CET 2010 <!-- hhmts end -->
+<!-- hhmts start --> Last modified: Mon Aug 22 19:31:37 CEST 2011 <!-- hhmts end -->
 </small>
 <address>
 <a href="http://www.cs.chalmers.se/~hallgren/">TH</a>
diff --git a/src/runtime/javascript/minibar/align-btn.png b/src/runtime/javascript/minibar/align-btn.png
new file mode 100644
Binary files /dev/null and b/src/runtime/javascript/minibar/align-btn.png differ
diff --git a/src/runtime/javascript/minibar/example.html b/src/runtime/javascript/minibar/example.html
--- a/src/runtime/javascript/minibar/example.html
+++ b/src/runtime/javascript/minibar/example.html
@@ -1,21 +1,25 @@
-<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
+<!DOCTYPE html>
 <html> <head>
 <title>PGF online server example</title>
 <style type="text/css">
 body { background: #ddd; }
+h1, h2, h3, small, th { font-family: sans-serif; }
+div.modtime { float: right; }
+.modtime { color: #666; white-space: nowrap; }
 </style>
-<script type="text/JavaScript" src="http://www.grammaticalframework.org/src/runtime/javascript/minibar/support.js"></script>
-<script type="text/JavaScript" src="http://www.grammaticalframework.org/src/runtime/javascript/minibar/pgf_online.js"></script>
+<script type="text/JavaScript" src="support.js"></script>
+<script type="text/JavaScript" src="pgf_online.js"></script>
 <script type="text/JavaScript">
 
 var server_options={
   grammars_url: "http://www.grammaticalframework.org/grammars/",
-  grammar_list: ["Syllogism.pgf"]
+  grammar_list: ["Foods.pgf"]
 }
 var pgf_server = pgf_online(server_options);
 
 function call_server() {
-  pgf_server.parse("SyllogismEng",document.forms[0].input.value,show_output)
+  pgf_server.parse({from:"FoodsEng",input:document.forms[0].input.value},
+                   show_output)
 }
 
 function show_output(parsed) {
@@ -31,7 +35,7 @@
 
 <form onsubmit="call_server(); return false">
 Input:
-<input name=input size=50 value="some humans are not human">
+<input name=input size=50 value="this cheese is expensive">
 <input type=submit value=Parse>
 
 <p>
@@ -42,10 +46,12 @@
 
 <h2>Documentation</h2>
 <ul>
-  <li><a href="http://www.grammaticalframework.org/~hallgren/gf-web-api-examples.html">GF Web API examples</a>
+  <li><a href="gf-web-api-examples.html">GF Web API examples</a>
 </ul>
 
 <hr>
-<address></address>
-<!-- hhmts start --> Last modified: Tue Nov  9 21:54:50 CET 2010 <!-- hhmts end -->
+<div class=modtime><small>
+<!-- hhmts start --> Last modified: Wed Aug  3 16:52:51 CEST 2011 <!-- hhmts end -->
+  </small></div>
+<address><a href="http://www.cse.chalmers.se/~hallgren/">TH</a></address>
 </body> </html>
diff --git a/src/runtime/javascript/minibar/feedback.cgi b/src/runtime/javascript/minibar/feedback.cgi
--- a/src/runtime/javascript/minibar/feedback.cgi
+++ b/src/runtime/javascript/minibar/feedback.cgi
@@ -1,6 +1,6 @@
 #!/bin/bash
 
-bin=../bin
+bin=bin
 AUTOHEADER=no
 . $bin/cgistart.sh
 
diff --git a/src/runtime/javascript/minibar/gf-web-api-examples.html b/src/runtime/javascript/minibar/gf-web-api-examples.html
--- a/src/runtime/javascript/minibar/gf-web-api-examples.html
+++ b/src/runtime/javascript/minibar/gf-web-api-examples.html
@@ -1,18 +1,39 @@
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
+<!DOCTYPE html>
 <html>
 <head>
 <title>GF web services API examples</title>
-<meta http-equiv="Content-type" content="text/html;charset=UTF-8">
+<meta charset="UTF-8">
+
 <style type="text/css">
 body { background: #ddd; }
+h1, h2, h3, small, th { font-family: sans-serif; }
 
-dt { background: #ffc; }
-dt.js { background: #cef; margin-bottom: 1ex; }
-dd { background: white; margin-top: 1ex; margin-bottom: 1ex; }
+dt { background: #cef; }
+dt.js { background: white; margin-bottom: 1ex; }
+dt.js em { color: #36f; }
+dd { background: #ffc; margin-top: 1ex; margin-bottom: 1ex; }
 
 dl.apiexamples>dt, dl.apiexamples>dd { font-family: monospace; }
 dl.apiexamples>dd {  white-space: pre; }
 
+div.modtime { float: right; }
+.modtime { color: #666; white-space: nowrap; }
+
+@media projection {
+    div.intro { display: none; }
+
+    body {
+	font-size: 150%;
+    }
+
+    h2 { page-break-before: always; }
+
+    dl.apiexamples dd {
+	page-break-after: always;
+	/*border-style: none;*/
+    }
+}
+
 </style>
 
 <body>
@@ -24,19 +45,20 @@
 <p>
 The
 <a href="http://code.google.com/p/grammatical-framework/wiki/GFWebServiceAPI">GF
-Web Service API</a> page describes the calls supported by the GF web service
-API. Below, we illustrate these calls by examples, and also shows
+Web Service API page</a> describes the calls supported by the GF web service
+API. Below, we illustrate these calls by examples, and also show
 how to make these calls from JavaScript using the API defined in
-<a href="http://www.grammaticalframework.org/src/runtime/javascript/minibar/pgf_online.js">pgf_online.js</a>.
+<a href="pgf_online.js"><code>pgf_online.js</code></a>.
 
 <p>
-<em>Note</em> that pgf_online.js was developed with
-one particular web application in mind, so the server API provided is
-incomplete and might be made more complete in a future version...
+<strong>Note</strong> that <code>pgf_online.js</code> was initially developed
+with one particular web application in mind (the minibar), so the server API was
+incomplete. It was simplified and generalized in August 2011 to support the
+full API.
 
 <dl>
   <dt class=js>These boxes show what the calls look like in the JavaScript
-    API defined in pgf_online.js.
+    API defined in <code>pgf_online.js</code>.
   <dt>These boxes show the corresponding URLs sent to the PGF server.
   <dd>These boxes show the JSON (JavaScript data structures) returned by the PGF
     server. This will be passed to the callback function supplied in the
@@ -46,10 +68,10 @@
 <h2>Initialization</h2>
 <dl class=apiexamples>
   <dt class=js>
-    // Select which server and grammars to use:
+    <em>// Select which server and grammars to use:</em>
     <br>var server_options = {
     <br>&nbsp;&nbsp;grammars_url: "http://www.grammaticalframework.org/grammars/",
-    <br>&nbsp;&nbsp;grammar_list: ["Foods.pgf"] // It's ok to skip this
+    <br>&nbsp;&nbsp;grammar_list: ["Foods.pgf"] <em>// It's ok to skip this</em>
     <br>}
     <br>var server = pgf_online(server_options);
 </dl>
@@ -57,14 +79,14 @@
 <h2>Examples</h2>
 
 <dl class=apiexamples>
-  <dt class=js> //  Get the list of available grammars
+  <dt class=js> <em>//  Get the list of available grammars</em>
     <br>server.get_grammarlist(callback)
   <dt>http://localhost:41296/grammars/grammars.cgi
   <dd>["Foods.pgf","Phrasebook.pgf"]
-  <dt class=js> // Select which grammar to use
+  <dt class=js> <em>// Select which grammar to use</em>
     <br>server.switch_grammar("Foods.pgf")
-  <dt class=js>// Get grammar info (this method could be renamed)
-    <br>server.get_languages(callback)
+  <dt class=js><em>// Get list of concrete languages and other grammar info</em>
+    <br>server.grammar_info(callback)
   <dt>http://localhost:41296/grammars/Foods.pgf
   <dd>{"name":"Foods",
  "userLanguage":"FoodsEng",
@@ -78,14 +100,15 @@
 	      {"name":"FoodsSwe","languageCode":"sv-SE"},
 	      ...]
 }
-  <dt class=js>// Get a random syntax tree
-    <br>server.get_random(callback)
+  <dt class=js><em>// Get a random syntax tree</em>
+    <br>server.get_random({},callback)
   <dt>http://localhost:41296/grammars/Foods.pgf?command=random
   <dd>[{"tree":"Pred (That Pizza) (Very Boring)"}]
-  <dt class=js>// Linearize a syntax tree
-    <br>server.linearize("Pred (That Pizza) (Very Boring)","FoodsEng",callback)
+  <dt class=js><em>// Linearize a syntax tree</em>
+    <br>server.linearize({tree:"Pred (That Pizza) (Very Boring)",to:"FoodsEng"},callback)
   <dt>http://localhost:41296/grammars/Foods.pgf?command=linearize&tree=Pred+(That+Pizza)+(Very+Boring)&to=FoodsEng
   <dd>[{"to":"FoodsEng","text":"that pizza is very boring"}]
+  <dt class=js>server.linearize({tree:"Pred (That Pizza) (Very Boring)"},callback)
   <dt>http://localhost:41296/grammars/Foods.pgf?command=linearize&tree=Pred+(That+Pizza)+(Very+Boring)
   <dd>[{"to":"FoodsBul","text":"онази пица е много еднообразна"},
  {"to":"FoodsEng","text":"that pizza is very boring"},
@@ -93,16 +116,17 @@
  {"to":"FoodsSwe","text":"den där pizzan är mycket tråkig"},
  ...
 ]
-  <dt class=js>// Parse a string
-    <br>server.parse("FoodEng","that pizza is very boring",callback)
+  <dt class=js><em>// Parse a string</em>
+    <br>server.parse({from:"FoodsEng",input:"that pizza is very boring"},callback)
   <dt>http://localhost:41296/grammars/Foods.pgf?command=parse&input=that+pizza+is+very+boring&from=FoodsEng
   <dd>[{"from":"FoodsEng",
   "brackets":{"cat":"Comment","fid":10,"index":0,"children":[{"cat":"Item","fid":7,"index":0,"children":[{"token":"that"},{"cat":"Kind","fid":6,"index":0,"children":[{"token":"pizza"}]}]},{"token":"is"},{"cat":"Quality","fid":9,"index":0,"children":[{"token":"very"},{"cat":"Quality","fid":8,"index":0,"children":[{"token":"boring"}]}]}]},
   "trees":["Pred (That Pizza) (Very Boring)"]}]
-  <dt class=js>// Translate to all available langauges
-    <br>server.translate("FoodEng","that pizza is very boring",callback)
+  <dt class=js><em>// Translate to all available languages</em>
+    <br>server.translate({from:"FoodsEng",input:"that pizza is very boring"},callback)
   <dd>...
-  <dt class=js>// Translate to one language  
+  <dt class=js><em>// Translate to one language</em>
+    <br>server.translate({input:"that pizza is very boring", from:"FoodsEng", to:"FoodsSwe"}, callback)
   <dt>http://localhost:41296/grammars/Foods.pgf?command=translate&input=that+pizza+is+very+boring&from=FoodsEng&to=FoodsSwe
   <dd>[{"from":"FoodsEng",
   "brackets":{"cat":"Comment","fid":10,"index":0,"children":[{"cat":"Item","fid":7,"index":0,"children":[{"token":"that"},{"cat":"Kind","fid":6,"index":0,"children":[{"token":"pizza"}]}]},{"token":"is"},{"cat":"Quality","fid":9,"index":0,"children":[{"token":"very"},{"cat":"Quality","fid":8,"index":0,"children":[{"token":"boring"}]}]}]},
@@ -111,8 +135,8 @@
          "linearizations":
             [{"to":"FoodsSwe",
               "text":"den där pizzan är mycket tråkig"}]}]}]
-  <dt class=js>// Get completions (what words could come next)
-    <br>server.complete("FoodEng","that pizza is very ",callback)
+  <dt class=js><em>// Get completions (what words could come next)</em>
+    <br>server.complete({from:"FoodsEng",input:"that pizza is very "},callback)
   <dt>http://localhost:41296/grammars/Foods.pgf?command=complete&input=that+pizza+is+very+&from=FoodsEng
   <dd>[{"from":"FoodsEng",
   "brackets":{"cat":"_","fid":0,"index":0,"children":[{"cat":"Item","fid":7,"index":0,"children":[{"token":"that"},{"cat":"Kind","fid":6,"index":0,"children":[{"token":"pizza"}]}]},{"token":"is"},{"token":"very"}]},
@@ -120,7 +144,8 @@
   "text":""}]
 </dl>
 <hr>
-<!-- hhmts start --> Last modified: Tue Nov  9 21:57:49 CET 2010 <!-- hhmts end -->
-<address>
-<a href="http://www.cse.chalmers.se/~hallgren/>Thomas Hallgren</a>
-</address>
+<div class=modtime><small>
+<!-- hhmts start --> Last modified: Sun Aug 21 10:52:43 CEST 2011 <!-- hhmts end -->
+  </small></div>
+<address><a href="http://www.cse.chalmers.se/~hallgren/">TH</a></address>
+  
diff --git a/src/runtime/javascript/minibar/minibar-api.html b/src/runtime/javascript/minibar/minibar-api.html
new file mode 100644
--- /dev/null
+++ b/src/runtime/javascript/minibar/minibar-api.html
@@ -0,0 +1,235 @@
+<!DOCTYPE html>
+<html>
+<head>
+<title>GF web services API examples</title>
+<meta charset="UTF-8">
+
+<style type="text/css">
+body { background: #eee; }
+h1, h2, h3, small, th { font-family: sans-serif; }
+th { text-align: left; }
+h1,h2 { border-bottom: 2px solid black }
+dt { background: #cef; }
+code { background: #ffc; }
+dt.js { background: white; margin-bottom: 1ex; }
+dt.js em { color: #36f; }
+dd { background: #ffc; margin-top: 1ex; margin-bottom: 1ex; }
+
+dl.apiexamples>dt, dl.apiexamples>dd { font-family: monospace; }
+dl.apiexamples>dd {  white-space: pre; }
+
+table.border { border-collapse: collapse; margin-top: 1ex; margin-bottom: 1ex; }
+table.border td, table.border th { border: 1px solid black; background: #fcfcfc; }
+
+div.modtime { float: right; }
+.modtime { color: #666; white-space: nowrap; }
+
+</style>
+
+<body>
+<h1>Minibar API</h1>
+
+The Minibar web app consists of the following objects:
+
+<ul>
+  <li><a href="#Minibar">Minibar</a>
+  <li><a href="#Input">Input</a>
+  <li><a href="#Translations">Translations</a>
+</ul>
+
+They are described below.
+
+<h2 id=Minibar>The Minibar object</h2>
+
+<p>
+This object implements the complete Minibar web app. It is defined in
+<a href="minibar.js">minibar.js</a>. It also uses the <code>Input</code>
+and <code>Translations</code> objects described below, and some auxiliary
+functions defined in <a href="minibar_support.js">minibar_support.js</a>
+and <a href="support.js">support.js</a>, so to use it in an
+HTML file, you would normally include at least the following:
+
+<blockquote><pre>
+&lt;script type="text/JavaScript" src="minibar.js">&lt;/script>
+&lt;script type="text/JavaScript" src="minibar_input.js">&lt;/script>
+&lt;script type="text/JavaScript" src="minibar_translations.js">&lt;/script>
+&lt;script type="text/JavaScript" src="minibar_support.js">&lt;/script>
+&lt;script type="text/JavaScript" src="support.js">&lt;/script>
+</pre></blockquote>
+
+<p>
+For an example, see <a href="minibar.html">minibar.html</a>.
+
+<h3>Constructor</h3>
+
+<code>var minibar=new Minibar(server,options,target)</code>
+
+<ul>
+  <li><code>server</code> is the PGF service object.
+  <li><code>options</code> is an object where the following properties
+  can be set to override various default options:
+    <table class=border>
+        <tr><th>Option<th>Default<th>Description
+        <tr><td>show_abstract<td>false<td rowspan=3>See Translations,
+	  not used directly by Minibar
+	<tr><td>show_trees<td>false
+	<tr><td>show_grouped_translations<td>true
+	<tr><td>delete_button_text<td>"⌫"<td rowspan=3>See Input,
+	  not used directly by Minibar
+	<tr><td>default_source_language<td>null
+	<tr><td>random_button<td>true
+	<tr><td>try_google<td>true<td>Include a button to try the current
+	  sentence in Google Translate
+	<tr><td>feedback_url<td>null<td>Include a button to open a feedback
+	  form. The HTTP server must be configured to handle form submissions
+	  for this to work.
+	<tr><td>help_url<td>null<td>Include a button to open a help text.
+    </table>
+  <li><code>target</code> is the <code>id</code> of the HTML element inside
+    which the minibar user interface is created. It can be omitted if
+    the <code>id</code> is <code>minibar</code>. The HTML document should
+    contain something like this:
+    <blockquote><code>&lt;div id="minibar">&lt;/div></code></blockquote>
+</ul>
+
+<h3>Methods</h3>
+There are several internal methods, but since this is a self-contained
+web app, there is usually no need to call any methods from outside.
+
+<h2 id=Input>The Input object</h2>
+
+This object handles user input. Text can be entered by typing or by clicking
+on the "refrigerator magnets".
+<p>
+It is defined in
+<a href="minibar_input.js">minibar_input.js</a>.
+It also uses some auxiliary functions defined
+in <a href="minibar_support.js">minibar_support.js</a>
+and <a href="support.js">support.js</a>, so to use it in an
+HTML file, you would normally include at least the following:
+
+<blockquote><pre>
+&lt;script type="text/JavaScript" src="minibar_input.js">&lt;/script>
+&lt;script type="text/JavaScript" src="minibar_support.js">&lt;/script>
+&lt;script type="text/JavaScript" src="support.js">&lt;/script>
+</pre></blockquote>
+
+<h3>Constructor</h3>
+
+<code>var input=new Input(server,translations,options)</code>
+
+<ul>
+  <li><code>server</code> is the PGF service object
+  <li><code>options</code> is an object where the following properties
+  can be set to override various default options:
+      <table class=border>
+        <tr><th>Option<th>Default<th>Description
+	<tr><td>delete_button_text<td>"⌫"<td>the label for the button that deletes the last word
+	<tr><td>default_source_language<td>null<td>the concrete language to
+	  use for input in case the user's browers doesn't supply a suitable
+	  default. If none is provided the first language in alphabetical
+	  order will be used.
+	<tr><td>random_button<td>true<td>include a button to generate a
+	  random sentence
+    </table>
+
+  <li><code>translations</code> is the object that is notified when the input
+  has changed. In the minibar, this is the object that display translations, but
+  other apps might of course use the entered text for other purposes.
+  The following methods will be called:
+  <ul>
+    <li><code>translations.clear()</code> is called when there no entered
+    text.
+    <li><code>translations.translateFrom({from:<var>conc</var>,input:<var>string</var>})</code>
+    is called when the user has entered some text. The <code>from</code>
+    property is the name of the concrete syntax and the <code>input</code>
+    property is the entered text.
+  </ul>
+</ul>
+
+<h3>Properties and user interface</h3>
+
+The <code>input</code> object created by the <code>Input</code> constructor
+contains two field that the caller should add to the user interface:
+<ul>
+  <li><code>input.main</code> is the main user interface where the current
+  input and the refrigerator magnets are displayed.
+  <li><code>input.menus</code> contains the menu for selecting input language,
+  and buttons for deleting the last word, clearing the input and generating
+  a random sentence (if enabled in the options)
+</ul>
+
+<h3>Methods</h3>
+
+<ul>
+  <li><code>input.change_grammar(grammar_info)</code> should be called
+  after a different grammar is selected in the <code>server</code> object. It
+  will clear away old input and magnets, and update the input language menu
+  with the languages available in the new grammar.
+
+</ul>
+
+<h2 id=Translations>The Translations object</h2>
+
+This object display translations. It is defined in
+<a href="minibar_translations.js">minibar_translations.js</a>.
+It also uses some auxiliary functions defined
+in <a href="minibar_support.js">minibar_support.js</a>
+and <a href="support.js">support.js</a>, so to use it in an
+HTML file, you would normally include at least the following:
+
+<blockquote><pre>
+&lt;script type="text/JavaScript" src="minibar_input.js">&lt;/script>
+&lt;script type="text/JavaScript" src="minibar_support.js">&lt;/script>
+&lt;script type="text/JavaScript" src="support.js">&lt;/script>
+</pre></blockquote>
+
+<h3>Constructor</h3>
+<code>var translations=new Translations(server,options)</code>
+<ul>
+  <li><code>server</code> is the PGF service object.
+  <li><p><code>options</code> is an object where the following properties
+  can be set to override various default options:
+      <table class=border>
+        <tr><th>Option<th>Default<th>Description
+        <tr><td>show_abstract<td>false<td>show the abstract syntax in addition
+	  to the concrete syntax for the translations
+	<tr><td>show_trees<td>false<td>add buttons to display syntax trees
+	  next to translations.
+	<tr><td>show_grouped_translations<td>true<td>in case there are
+	  multiple translations, group them by concrete language
+    </table>
+
+</ul>
+
+<h3>Properties and user interface</h3>
+
+
+The <code>translations</code> object created by the
+<code>Translations</code> constructor contains two field that the caller
+should add to the user interface:
+<ul>
+  <li><code>input.main</code> is the main user interface where the current
+  translations are displayed.
+  <li><code>input.menus</code> contains the menu for selecting target language.
+</ul>
+
+<h3>Methods</h3>
+<ul>
+  <li><code>translations.change_grammar(grammar_info)</code> should be called
+  after a different grammar is selected in the <code>server</code> object. It
+  will clear away old translations and update the target language menu
+  with the languages available in the new grammar.
+</ul>
+
+
+<hr>
+<div class=modtime>
+<small class=modtime>
+HTML <!-- hhmts start --> Last modified: Sun Aug 21 19:11:35 CEST 2011 <!-- hhmts end -->
+</small>
+</div>
+
+<address>
+<a href="Http://www.cse.chalmers.se/~hallgren/">TH</a>
+</address>
diff --git a/src/runtime/javascript/minibar/minibar.css b/src/runtime/javascript/minibar/minibar.css
--- a/src/runtime/javascript/minibar/minibar.css
+++ b/src/runtime/javascript/minibar/minibar.css
@@ -33,7 +33,7 @@
 .invalid { color: red; }
 
 div.modtime { float: right; }
-.modtime { color: #444; white-space: nowrap; }
+.modtime { color: #666; white-space: nowrap; }
 
 ul.space>li { margin-top: 0.75ex; }
 
@@ -49,3 +49,5 @@
 span.field { background-color: #eee; }
 
 pre.feedbacklist { background: white }
+
+img.button { padding: 1px; }
diff --git a/src/runtime/javascript/minibar/minibar.html b/src/runtime/javascript/minibar/minibar.html
--- a/src/runtime/javascript/minibar/minibar.html
+++ b/src/runtime/javascript/minibar/minibar.html
@@ -1,24 +1,20 @@
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
-<html> <head>
+<!DOCTYPE html>
+<html>
+<head>
 <title>Minibar</title>
 <link rel=stylesheet type="text/css" href="minibar.css">
-<script type="text/JavaScript" src="support.js"></script>
-<script type="text/JavaScript" src="minibar.js"></script>
-<script type="text/JavaScript" src="pgf_online.js"></script>
 
 <meta name = "viewport" content = "width = device-width">
-<meta http-equiv="Content-type" content="text/html;charset=UTF-8">
 <meta charset="UTF-8">
 
 </head>
 
 <body>
 <h2>Minibar online</h2>
-<div id=minibar1>
-</div>
-<noscript>
-This page doesn't works unless JavaScript is enabled.
-</noscript>
+<div id=minibar></div>
+
+<noscript>This page doesn't works unless JavaScript is enabled.</noscript>
+
 <hr>
 
 <small>
@@ -27,32 +23,19 @@
 &amp; <a href="http://www.grammaticalframework.org:41296/translate/">Translator</a>]
 </small>
 <small class=modtime>
-HTML <!-- hhmts start --> Last modified: Fri Dec 17 17:00:19 CET 2010 <!-- hhmts end -->
+HTML <!-- hhmts start --> Last modified: Mon Aug  8 18:04:22 CEST 2011 <!-- hhmts end -->
 </small>
 <address>
-<a href="http://www.cs.chalmers.se/~hallgren/">TH</a>
+<a href="http://www.cse.chalmers.se/~hallgren/">TH</a>
 <img src="http://www.altocumulus.org/~hallgren/online.cgi?icon" alt=""></address>
 
-<script type="text/javascript">
-
-var online_options={
-//grammars_url: "http://www.grammaticalframework.org/grammars/"
-//grammars_url: "http://tournesol.cs.chalmers.se:41296/grammars",
-//grammars_url: "http://localhost:41296/grammars",
-//grammar_list: ["Foods.pgf"], // leave undefined to get list from server
-}
-
-var server=pgf_online(online_options);
-
-var minibar_options= {
-  show_abstract: true,
-  show_trees: true,
-  show_grouped_translations: false,
-  default_source_language: "Eng",
-  try_google: true
-}
-var minibar=new Minibar(server,minibar_options,"minibar1");
+<script type="text/JavaScript" src="support.js"></script>
+<script type="text/JavaScript" src="minibar.js"></script>
+<script type="text/JavaScript" src="minibar_input.js"></script>
+<script type="text/JavaScript" src="minibar_translations.js"></script>
+<script type="text/JavaScript" src="minibar_support.js"></script>
+<script type="text/JavaScript" src="pgf_online.js"></script>
+<script type="text/javascript" src="minibar_online.js"></script>
 
-</script>
 </body>
 </html>
diff --git a/src/runtime/javascript/minibar/minibar.js b/src/runtime/javascript/minibar/minibar.js
--- a/src/runtime/javascript/minibar/minibar.js
+++ b/src/runtime/javascript/minibar/minibar.js
@@ -1,6 +1,6 @@
-// minibar.js, assumes that support.js has also been loaded
-
-var tree_icon="tree-btn.png";
+/* minibar.js
+needs: minibar_support.js, minibar_input.js, minibar_translations.js, support.js
+*/
 
 /*
 // This is essentially what happens when you call start_minibar:
@@ -17,54 +17,46 @@
 
 // For backward compatibility:
 function start_minibar(server,opts,target) {
-    return new Minibar(server,opts,target);
+    if(target) opts.target=target;
+    return new Minibar(server,opts);
 }
 
-function Minibar(server,opts,target) {
-    // Typically called when the HTML document is loaded
+/* --- Main Minibar object -------------------------------------------------- */
+function Minibar(server,opts) {
+    // Contructor, typically called when the HTML document is loaded
 
     /* --- Configuration ---------------------------------------------------- */
 
     // default values for options:
     this.options={
-	show_abstract: false,
-	show_trees: false,
-	show_grouped_translations: true,
-	delete_button_text: "⌫",
-	default_source_language: null,
+	target: "minibar",
 	try_google: true,
 	feedback_url: null,
-	random_button: true,
 	help_url: null
     }
 
     // Apply supplied options
     if(opts) for(var o in opts) this.options[o]=opts[o];
 
+    /* --- Creating the components of the minibar --------------------------- */
+    this.translations=new Translations(server,this.options)
+    this.input=new Input(server,this.translations,this.options)
+
     /* --- Creating user interface elements --------------------------------- */
 
-    this.surface=div_id("surface");
+    this.menubar=empty("div");
     this.extra=div_id("extra");
-    this.menubar=div_id("menubar");
-    this.words=div_id("words");
-    this.translations=div_id("translations");
 
-    this.minibar=element(target || "minibar");
+    this.minibar=element(this.options.target);
     this.minibar.innerHTML="";
     with(this) {
-	appendChildren(minibar,[menubar,surface,words,translations,extra]);
+	appendChildren(menubar,[input.menus,translations.menus,input.buttons])
+	appendChildren(minibar,[menubar,input.main,translations.main,extra]);
 	append_extra_buttons(extra,options);
     }
 
-    // Filled in and added to minibar later:
-    this.grammar_menu=empty_id("select","grammar_menu");
-    this.from_menu=empty_id("select","from_menu");
-    this.to_menu=empty_id("select","to_menu");
-
     /* --- Minibar client state initialisation ------------------------------ */
     this.grammar=null;
-    this.current={from: null, input: ""};
-    this.previous=null;
 
     this.server=server;
 
@@ -75,27 +67,17 @@
     }
 }
 
-/* --- Auxiliary functions ---------------------------------------------- */
-
 Minibar.prototype.show_grammarlist=function(grammars) {
-    debug(this)
+    this.grammar_menu=empty_id("select","grammar_menu");
     with(this) {
-	//debug("show_grammarlist ")
-	menubar.innerHTML="";
 	if(grammars.length>1) {
 	    function opt(g) { return option(g,g); }
 	    appendChildren(grammar_menu,map(opt,grammars));
     	    grammar_menu.onchange=
 		bind(function() { select_grammar(grammar_menu.value); },this);
-	    appendChildren(menubar,[text("Grammar: "),grammar_menu]);
+	    insertFirst(menubar,grammar_menu);
+	    insertFirst(menubar,text("Grammar: "));
 	}
-	appendChildren(menubar,
-		       [text(" From: "), from_menu,
-			text(" To: "), to_menu,
-			button(options.delete_button_text,bind(delete_last,this),"H"),
-			button("Clear",bind(clear_all,this),"L")]);
-	if(options.random_button)
-	    menubar.appendChild(button("Random",bind(generate_random,this),"R"));
 	if(options.help_url)
 	    menubar.appendChild(button("Help",bind(open_help,this)));
 	select_grammar(grammars[0]);
@@ -105,330 +87,20 @@
 Minibar.prototype.select_grammar=function(grammar_name) {
     var t=this;
     //debug("select_grammar ");
-    function get_languages() {
-	t.server.get_languages(bind(t.show_languages,t));
+    function change_grammar() {
+	t.server.grammar_info(bind(t.change_grammar,t));
     }
-    t.server.switch_grammar(grammar_name,get_languages);
+    t.server.switch_grammar(grammar_name,change_grammar);
 }
 
-Minibar.prototype.show_languages=function(grammar_info) {
+Minibar.prototype.change_grammar=function(grammar_info) {
     var t=this;
     with(t) {
 	//debug("show_languages ");
 	grammar=grammar_info;
 
-	var new_language=function () {
-	    current.from=from_menu.value;
-	    clear_all();
-	}
-	from_menu.onchange=bind(new_language,t);
-	update_language_menu(from_menu,grammar);
-	set_initial_language(options,from_menu,grammar);
-
-	to_menu.onchange=bind(get_translations,t);
-
-	update_language_menu(to_menu,grammar);
-	insertFirst(to_menu,option("All","All"));
-	to_menu.value="All";
-
-	new_language();
-    }
-}
-
-Minibar.prototype.clear_all1=function() {
-    with(this) {
-	remove_typed_input();
-	current.input="";
-	previous=null;
-	surface.innerHTML="";
-	translations.innerHTML="";
-    }
-}
-
-Minibar.prototype.clear_all=function() {
-    with(this) {
-	clear_all1();
-	get_completions();
-    }
-}
-
-Minibar.prototype.get_completions=function() {
-    with(this) {
-	//debug("get_completions ");
-	words.innerHTML="...";
-	server.complete(current.from,current.input,bind(show_completions,this));
-    }
-}
-
-Minibar.prototype.show_completions=function(complete_output) {
-    with(this) {
-	//debug("show_completions ");
-	var completions=complete_output[0].completions;
-	var emptycnt=add_completions(completions)
-	if(true/*emptycnt>0*/) get_translations();
-	else translations.innerHTML="";
-	if(surface.typed && emptycnt==completions.length) {
-	    if(surface.typed.value=="") remove_typed_input();
-	}
-	else add_typed_input();
-    }
-}
-
-Minibar.prototype.add_completions=function(completions) {
-    with(this) {
-	if(words.timeout) clearTimeout(words.timeout),words.timeout=null;
-	words.innerHTML="";
-	words.completions=completions;
-	words.word=[];
-	var t=surface.typed ? surface.typed.value : "";
-	var emptycnt=0;
-	for(var i=0;i<completions.length;i++) {
-	    var s=completions[i];
-	    if(s.length>0) {
-		var w=word(s);
-		words.appendChild(w);
-		words.word[i]=w;
-	    }
-	    else emptycnt++;
-	}
-	filter_completions(t,true);
-	return emptycnt;
-    }
-}
-
-Minibar.prototype.filter_completions=function(t,dim) {
-    with(this) {
-	if(words.timeout) clearTimeout(words.timeout),words.timeout=null;
-	words.filtered=t;
-	//if(dim) debug('filter "'+t+'"');
-	var w=words.word;
-	words.count=0;
-	var dimmed=0;
-	var prefix=""; // longest common prefix, for completion
-	for(var i=0;i<w.length;i++) {
-	    var s=words.completions[i];
-	    var keep=hasPrefix(s,t);
-	    if(keep) {
-		if(words.count==0) prefix=s;
-		else prefix=(commonPrefix(prefix,s));
-		words.count++;
-	    }
-	    if(dim) {
-		w[i].style.opacity= keep ? "1" : "0.5";
-		if(keep) w[i].style.display="inline";
-		else dimmed++;
-	    }
-	    else 
-		w[i].style.display=keep ? "inline" : "none";
-	}
-	words.theword=prefix;
-	if(dimmed>0)
-	    words.timeout=setTimeout(function(){ filter_completions(t,false)},1000);
-    }
-}
- 
-Minibar.prototype.get_translations=function() {
-    with(this) {
-	var c=current;
-	if(options.show_grouped_translations)
-	    server.translategroup(c.from,c.input,bind(show_groupedtranslations,this));
-	else
-	    server.translate(c.from,c.input,bind(show_translations,this));
-    }
-}
-
-Minibar.prototype.target_lang=function() {
-    with(this) return langpart(to_menu.value,grammar.name);
-}
-
-Minibar.prototype.add_typed_input=function() {
-    with(this) {
-	var inp;
-	if(surface.typed) inp=surface.typed;
-	else {
-	    inp=empty("input","type","text");
-	    inp.value="";
-	    inp.setAttribute("accesskey","t");
-	    inp.style.width="10em";
-	    inp.onkeyup=bind(complete_typed,this);
-	    surface.appendChild(inp);
-	    surface.typed=inp;
-	}
-	inp.focus();
-    }
-}
-
-Minibar.prototype.remove_typed_input=function() {
-    with(this) {
-	if(surface.typed) {
-	    surface.typed.parentNode.removeChild(surface.typed);
-	    surface.typed=null;
-	}
-    }
-}
-
-Minibar.prototype.complete_typed=function(event) {
-    with(this) {
-	//element("debug").innerHTML=show_props(event,"event");
-	var inp=surface.typed;
-	//debug('"'+inp.value+'"');
-	var s=inp.value;
-	var ws=s.split(" ");
-	if(ws.length>1 || event.keyCode==13) {
-	    if(ws[0]!=words.filtered) filter_completions(ws[0],true);
-	    if(words.count==1) add_word(words.theword);
-	    else if(elem(ws[0],words.completions)) add_word(ws[0]);
-	    else if(words.theword.length>ws[0].length) inp.value=words.theword;
-	}
-	else if(s!=words.filtered) filter_completions(s,true)
-    }
-}
-
-Minibar.prototype.generate_random=function() {
-    var t=this;
-    function show_random(random) {
-	t.clear_all1();
-	t.add_words(random[0].text);
-    }
-    
-    function lin_random(abs) {
-	t.server.linearize(abs[0].tree,t.current.from,show_random);
-    }
-    t.server.get_random(lin_random);
-}
-
-Minibar.prototype.add_words=function(s) {
-    with(this) {
-	var ws=s.split(" ");
-	for(var i=0;i<ws.length;i++)
-	    add_word1(ws[i]+" ");
-	get_completions();
-    }
-}
-
-Minibar.prototype.word=function(s) { 
-    var t=this;
-    function click_word() {
-	if(t.surface.typed) t.surface.typed.value="";
-	t.add_word(s);
-    }
-    return button(s,click_word);
-}
-
-Minibar.prototype.add_word=function(s) {
-    with(this) {
-	add_word1(s+" ");
-	if(surface.typed) {
-	    var s2;
-	    if(hasPrefix(s2=surface.typed.value,s)) {
-		s2=s2.substr(s.length);
-		while(s2.length>0 && s2[0]==" ") s2=s2.substr(1);
-		surface.typed.value=s2;
-	    }
-	    else surface.typed.value="";
-	}
-	get_completions();
-    }
-}
-
-Minibar.prototype.add_word1=function(s) {
-    with(this) {
-	previous={ input: current.input, previous: previous };
-	current.input+=s;
-	var w=span_class("word",text(s));
-	if(surface.typed) surface.insertBefore(w,surface.typed);
-	else surface.appendChild(w);
-    }
-}
-
-Minibar.prototype.delete_last=function() {
-    with(this) {
-	if(surface.typed && surface.typed.value!="")
-	    surface.typed.value="";
-	else if(previous) {
-	    current.input=previous.input;
-	    previous=previous.previous;
-	    if(surface.typed) {
-		surface.removeChild(surface.typed.previousSibling);
-		surface.typed.focus();
-	    }
-	    else surface.removeChild(surface.lastChild);
-	    translations.innerHTML="";
-	    get_completions();
-	}
-    }
-}
-
-Minibar.prototype.tdt=function(tree_btn,txt) {
-    with(this) {
-	return options.show_trees ? tda([tree_btn,txt]) : td(txt);
-    }
-}
-
-Minibar.prototype.show_translations=function(translationResults) {
-    with(this) {
-	var trans=translations;
-	//var to=target_lang(); // wrong
-	var to=to_menu.value;
-	var cnt=translationResults.length;
-	//trans.translations=translations;
-	trans.single_translation=[];
-	trans.innerHTML="";
-	/*
-	  trans.appendChild(wrap("h3",text(cnt<1 ? "No translations?" :
-	  cnt>1 ? ""+cnt+" translations:":
-	  "One translation:")));
-	*/
-	for(p=0;p<cnt;p++) {
-	    var tra=translationResults[p];
-	    if (tra.translations != null) {
-		for (q = 0; q < tra.translations.length; q++) {
-		    var t = tra.translations[q];
-		    var lin=t.linearizations;
-		    var tbody=empty("tbody");
-		    if(options.show_abstract && t.tree)
-			tbody.appendChild(tr([th(text("Abstract: ")),
-					      tdt(abstree_button(t.tree),text(" "+t.tree))]));
-		    for(var i=0;i<lin.length;i++) 
-			if(to=="All" || lin[i].to==to)
-			    tbody.appendChild(tr([th(text(langpart(lin[i].to,grammar.name)+": ")),
-						  tdt(parsetree_button(t.tree,lin[i].to),
-						      text(lin[i].text))]));
-		    trans.appendChild(wrap("table",tbody));
-		}
-	    }
-	    else if(tra.typeErrors) {
-		var errs=tra.typeErrors;
-		for(var i=0;i<errs.length;i++)
-		    trans.appendChild(wrap("pre",text(errs[i].msg)))
-	    }
-	}
-    }
-}
-
-Minibar.prototype.show_groupedtranslations=function(translationsResult) {
-    with(this) {
-	var trans=translations;
-	var to=target_lang();
-	//var to=to_menu.value // wrong
-	var cnt=translationsResult.length;
-	//trans.translations=translationsResult;
-	trans.single_translation=[];
-	trans.innerHTML="";
-	for(p=0;p<cnt;p++) {
-	    var t=translationsResult[p];
-	    if(to=="All" || t.to==to) {
-		var lin=t.linearizations;
-		var tbody=empty("tbody");
-		if(to=="All") tbody.appendChild(tr([th(text(t.to+":"))]));
-		for(var i=0;i<lin.length;i++) {
-		    if(to!="All") trans.single_translation[i]=lin[i].text;
-		    tbody.appendChild(tr([td(text(lin[i].text))]));
-		    if (lin.length > 1) tbody.appendChild(tr([td(text(lin[i].tree))]));
-		}
-		trans.appendChild(wrap("table",tbody));
-	    }
-	}
+	input.change_grammar(grammar)
+	translations.change_grammar(grammar)
     }
 }
 
@@ -443,11 +115,11 @@
 
 Minibar.prototype.try_google=function() {
     with(this) {
-	var to=target_lang();
-	var s=current.input;
-	if(surface.typed) s+=surface.typed.value;
+	var to=translations.target_lang();
+	var s=input.current.input;
+	if(input.surface.typed) s+=input.surface.typed.value;
 	var url="http://translate.google.com/?sl="
-	        +langpart(current.from,grammar.name);
+	        +langpart(input.current.from,grammar.name);
 	if(to!="All") url+="&tl="+to;
 	url+="&q="+encodeURIComponent(s);
 	window.open(url);
@@ -461,74 +133,12 @@
 Minibar.prototype.open_feedback=function() {
     with(this) {
 	// make the minibar state easily accessible from the feedback page:
-	minibar.state={grammar:grammar,current:current,to:to_menu.value,
-		       translations:translations};
+	minibar.state={grammar:grammar,current:input.current,
+		       to:translations.to_menu.value,
+		       translations:translations.translations};
 	open_popup(options.feedback_url,'feedback');
     }
 }
-
-function update_language_menu(menu,grammar) {
-    // Replace the options in the menu with the languages in the grammar
-    var lang=grammar.languages;
-    menu.innerHTML="";
-	
-    for(var i=0; i<lang.length; i++) {
-	var ln=lang[i].name;
-	if(!hasPrefix(ln,"Disamb")) {
-	    var lp=langpart(ln,grammar.name);
-	    menu.appendChild(option(lp,ln));
-	}
-    }
-}
-
-function set_initial_language(options,menu,grammar) {
-    if(grammar.userLanguage) menu.value=grammar.userLanguage;
-    else if(options.default_source_language) {
-	for(var i=0;i<menu.options.length;i++) {
-	    var o=menu.options[i].value;
-	    var l=langpart(o,grammar.name);
-	    if(l==options.default_source_language) menu.value=o;
-	}
-    }
-}
-
-function langpart(conc,abs) { // langpart("FoodsEng","Foods") == "Eng"
-    return hasPrefix(conc,abs) ? conc.substr(abs.length) : conc;
-}
-
-function abstree_button(abs) {
-  var i=img(tree_icon);
-  i.setAttribute("onclick","toggle_img(this)");
-  i.other=server.current_grammar_url+"?command=abstrtree&tree="+encodeURIComponent(abs);
-  return i;
-}
-
-function parsetree_button(abs,lang) {
-  var i=img(tree_icon);
-  i.setAttribute("onclick","toggle_img(this)");
-  i.other=server.current_grammar_url
-          +"?command=parsetree&from="+lang+"&tree="+encodeURIComponent(abs);
-  return i;
-}
-
-function toggle_img(i) {
-  var tmp=i.src;
-  i.src=i.other;
-  i.other=tmp;
-}
-
-function open_popup(url,target) {
-    var w=window.open(url,target,'toolbar=no,location=no,status=no,menubar=no');
-    w.focus();
-}
-
-function setField(form,name,value) {
-    form[name].value=value;
-    var el=element(name);
-    if(el) el.innerHTML=value;
-}
-
-function opener_element(id) { with(window.opener) return element(id); }
 
 // This function is called from feedback.html
 function prefill_feedback_form() {
diff --git a/src/runtime/javascript/minibar/minibar_input.js b/src/runtime/javascript/minibar/minibar_input.js
new file mode 100644
--- /dev/null
+++ b/src/runtime/javascript/minibar/minibar_input.js
@@ -0,0 +1,277 @@
+
+/* --- Input object --------------------------------------------------------- */
+
+function Input(server,translations,opts) { // Input object constructor
+    this.server=server;
+    this.translations=translations;
+
+    // Default values for options:
+    this.options={
+	delete_button_text: "⌫",
+	default_source_language: null,
+	random_button: true,
+    }
+
+    // Apply supplied options
+    if(opts) for(var o in opts) this.options[o]=opts[o];
+
+    // User interface elements
+    this.main=empty("div");
+    this.menus=empty("span");
+    this.buttons=empty("span");
+    this.surface=div_id("surface");
+    this.words=div_id("words");
+    this.from_menu=empty("select");
+
+    with(this) {
+	appendChildren(main,[surface,words]);
+	appendChildren(menus,[text(" From: "),from_menu])
+	appendChildren(buttons,
+		       [button(options.delete_button_text,bind(delete_last,this),"H"),
+			button("Clear",bind(clear_all,this),"L")]);
+	if(options.random_button)
+	    buttons.appendChild(button("Random",bind(generate_random,this),"R"));
+    }
+
+    /* --- Input client state initialization --- */
+    this.current={from: null, input: ""};
+    this.previous=null;
+
+    this.from_menu.onchange=bind(this.change_language,this);
+}
+
+Input.prototype.change_grammar=function (grammar) {
+    update_language_menu(this.from_menu,grammar);
+    set_initial_language(this.options,this.from_menu,grammar);
+    this.change_language();
+}
+
+Input.prototype.change_language=function () {
+    this.current.from=this.from_menu.value;
+    this.clear_all();
+}
+
+
+Input.prototype.clear_all1=function() {
+    with(this) {
+	remove_typed_input();
+	current.input="";
+	previous=null;
+	surface.innerHTML="";
+	translations.clear();
+    }
+}
+
+Input.prototype.clear_all=function() {
+    with(this) {
+	clear_all1();
+	get_completions();
+    }
+}
+
+Input.prototype.get_completions=function() {
+    with(this) {
+	//debug("get_completions ");
+	words.innerHTML="...";
+	server.complete({from:current.from,input:current.input},
+			bind(show_completions,this));
+    }
+}
+
+Input.prototype.show_completions=function(complete_output) {
+    with(this) {
+	//debug("show_completions ");
+	var completions=complete_output[0].completions;
+	var emptycnt=add_completions(completions)
+	if(true/*emptycnt>0*/) translations.translateFrom(current);
+	else translations.clear();
+	if(surface.typed && emptycnt==completions.length) {
+	    if(surface.typed.value=="") remove_typed_input();
+	}
+	else add_typed_input();
+    }
+}
+
+Input.prototype.add_completions=function(completions) {
+    with(this) {
+	if(words.timeout) clearTimeout(words.timeout),words.timeout=null;
+	words.innerHTML="";
+	words.completions=completions;
+	words.word=[];
+	var t=surface.typed ? surface.typed.value : "";
+	var emptycnt=0;
+	for(var i=0;i<completions.length;i++) {
+	    var s=completions[i];
+	    if(s.length>0) {
+		var w=word(s);
+		words.appendChild(w);
+		words.word[i]=w;
+	    }
+	    else emptycnt++;
+	}
+	filter_completions(t,true);
+	return emptycnt;
+    }
+}
+
+Input.prototype.filter_completions=function(t,dim) {
+    with(this) {
+	if(words.timeout) clearTimeout(words.timeout),words.timeout=null;
+	words.filtered=t;
+	//if(dim) debug('filter "'+t+'"');
+	var w=words.word;
+	words.count=0;
+	var dimmed=0;
+	var prefix=""; // longest common prefix, for completion
+	for(var i=0;i<w.length;i++) {
+	    var s=words.completions[i];
+	    var keep=hasPrefix(s,t);
+	    if(keep) {
+		if(words.count==0) prefix=s;
+		else prefix=(commonPrefix(prefix,s));
+		words.count++;
+	    }
+	    if(dim) {
+		w[i].style.opacity= keep ? "1" : "0.5";
+		if(keep) w[i].style.display="inline";
+		else dimmed++;
+	    }
+	    else 
+		w[i].style.display=keep ? "inline" : "none";
+	}
+	words.theword=prefix;
+	if(dimmed>0)
+	    words.timeout=setTimeout(function(){ filter_completions(t,false)},1000);
+    }
+}
+
+
+Input.prototype.add_typed_input=function() {
+    with(this) {
+	if(!surface.typed) {
+	    var inp=empty("input","type","text");
+	    inp.value="";
+	    inp.setAttribute("accesskey","t");
+	    inp.style.width="10em";
+	    inp.onkeyup=bind(complete_typed,this);
+	    surface.appendChild(inp);
+	    surface.typed=inp;
+	    inp.focus();
+	}
+    }
+}
+
+Input.prototype.remove_typed_input=function() {
+    with(this) {
+	if(surface.typed) {
+	    surface.typed.parentNode.removeChild(surface.typed);
+	    surface.typed=null;
+	}
+    }
+}
+
+Input.prototype.complete_typed=function(event) {
+    with(this) {
+	//element("debug").innerHTML=show_props(event,"event");
+	var inp=surface.typed;
+	//debug('"'+inp.value+'"');
+	var s=inp.value;
+	var ws=s.split(" ");
+	if(ws.length>1 || event.keyCode==13) {
+	    if(ws[0]!=words.filtered) filter_completions(ws[0],true);
+	    if(words.count==1) add_word(words.theword);
+	    else if(event.keyCode==13) add_word(ws[0]) // for literals
+	    else if(elem(ws[0],words.completions)) add_word(ws[0]);
+	    else if(words.theword.length>ws[0].length) inp.value=words.theword;
+	}
+	else if(s!=words.filtered) filter_completions(s,true)
+    }
+}
+
+Input.prototype.generate_random=function() {
+    var t=this;
+    function show_random(random) {
+	t.clear_all1();
+	t.add_words(random[0].text);
+    }
+    
+    function lin_random(abs) {
+	t.server.linearize({tree:abs[0].tree,to:t.current.from},show_random);
+    }
+    t.server.get_random({},lin_random);
+}
+
+Input.prototype.add_words=function(s) {
+    with(this) {
+	var ws=s.split(" ");
+	for(var i=0;i<ws.length;i++)
+	    add_word1(ws[i]+" ");
+	get_completions();
+    }
+}
+
+Input.prototype.word=function(s) { 
+    var t=this;
+    function click_word() {
+	if(t.surface.typed) t.surface.typed.value="";
+	t.add_word(s);
+    }
+    return button(s,click_word);
+}
+
+Input.prototype.add_word=function(s) {
+    with(this) {
+	add_word1(s+" ");
+	if(surface.typed) {
+	    var s2;
+	    if(hasPrefix(s2=surface.typed.value,s)) {
+		s2=s2.substr(s.length);
+		while(s2.length>0 && s2[0]==" ") s2=s2.substr(1);
+		surface.typed.value=s2;
+	    }
+	    else surface.typed.value="";
+	}
+	get_completions();
+    }
+}
+
+Input.prototype.add_word1=function(s) {
+    with(this) {
+	previous={ input: current.input, previous: previous };
+	current.input+=s;
+	var w=span_class("word",text(s));
+	if(surface.typed) surface.insertBefore(w,surface.typed);
+	else surface.appendChild(w);
+    }
+}
+
+Input.prototype.delete_last=function() {
+    with(this) {
+	if(surface.typed && surface.typed.value!="")
+	    surface.typed.value="";
+	else if(previous) {
+	    current.input=previous.input;
+	    previous=previous.previous;
+	    if(surface.typed) {
+		surface.removeChild(surface.typed.previousSibling);
+		surface.typed.focus();
+	    }
+	    else surface.removeChild(surface.lastChild);
+	    translations.clear();
+	    get_completions();
+	}
+    }
+}
+
+/* --- Auxiliary functions -------------------------------------------------- */
+
+function set_initial_language(options,menu,grammar) {
+    if(grammar.userLanguage) menu.value=grammar.userLanguage;
+    else if(options.default_source_language) {
+	for(var i=0;i<menu.options.length;i++) {
+	    var o=menu.options[i].value;
+	    var l=langpart(o,grammar.name);
+	    if(l==options.default_source_language) menu.value=o;
+	}
+    }
+}
diff --git a/src/runtime/javascript/minibar/minibar_online.js b/src/runtime/javascript/minibar/minibar_online.js
new file mode 100644
--- /dev/null
+++ b/src/runtime/javascript/minibar/minibar_online.js
@@ -0,0 +1,25 @@
+// minibar_demo.js, assumes that minibar.js and pgf_online.js have been loaded.
+
+var online_options={
+  //grammars_url: "http://www.grammaticalframework.org/grammars/",
+  //grammars_url: "http://tournesol.cs.chalmers.se:41296/grammars/",
+  //grammars_url: "http://localhost:41296/grammars/",
+  //grammar_list: ["Foods.pgf"], // leave undefined to get list from server
+}
+
+
+if(/^\?\/tmp\//.test(location.search)) {
+  online_options.grammars_url=location.search.substr(1);
+}
+
+var server=pgf_online(online_options);
+
+var minibar_options= {
+  show_abstract: true,
+  show_trees: true,
+  show_grouped_translations: false,
+  default_source_language: "Eng",
+//feedback_url: "feedback.html",
+  try_google: true
+}
+var minibar=new Minibar(server,minibar_options);
diff --git a/src/runtime/javascript/minibar/minibar_support.js b/src/runtime/javascript/minibar/minibar_support.js
new file mode 100644
--- /dev/null
+++ b/src/runtime/javascript/minibar/minibar_support.js
@@ -0,0 +1,46 @@
+
+/* --- Auxiliary functions -------------------------------------------------- */
+
+function langpart(conc,abs) { // langpart("FoodsEng","Foods") == "Eng"
+    return hasPrefix(conc,abs) ? conc.substr(abs.length) : conc;
+}
+
+function update_language_menu(menu,grammar) {
+    // Replace the options in the menu with the languages in the grammar
+    var lang=grammar.languages;
+    menu.innerHTML="";
+	
+    for(var i=0; i<lang.length; i++) {
+	var ln=lang[i].name;
+	if(!hasPrefix(ln,"Disamb")) {
+	    var lp=langpart(ln,grammar.name);
+	    menu.appendChild(option(lp,ln));
+	}
+    }
+}
+
+function button_img(url,action) {
+    var i=img(url);
+    i.setAttribute("class","button");
+    i.setAttribute("onclick",action);
+    return i;
+}
+
+function toggle_img(i) {
+  var tmp=i.src;
+  i.src=i.other;
+  i.other=tmp;
+}
+
+function setField(form,name,value) {
+    form[name].value=value;
+    var el=element(name);
+    if(el) el.innerHTML=value;
+}
+
+function open_popup(url,target) {
+    var w=window.open(url,target,'toolbar=no,location=no,status=no,menubar=no');
+    w.focus();
+}
+
+function opener_element(id) { with(window.opener) return element(id); }
diff --git a/src/runtime/javascript/minibar/minibar_translations.js b/src/runtime/javascript/minibar/minibar_translations.js
new file mode 100644
--- /dev/null
+++ b/src/runtime/javascript/minibar/minibar_translations.js
@@ -0,0 +1,162 @@
+/* --- Translations object -------------------------------------------------- */
+
+var tree_icon="tree-btn.png";
+var alignment_icon="align-btn.png";
+
+function Translations(server,opts) {
+    this.server=server;
+
+    // Default values for options:
+    this.options={
+	show_abstract: false,
+	show_trees: false,
+	show_grouped_translations: true,
+    }
+
+    // Apply supplied options
+    if(opts) for(var o in opts) this.options[o]=opts[o];
+
+    this.main=empty("div");
+    this.menus=empty("span");
+
+    this.to_menu=empty_id("select","to_menu");
+
+    appendChildren(this.menus,[text(" To: "), this.to_menu])
+    this.to_menu.onchange=bind(this.get_translations,this);
+
+}
+
+Translations.prototype.change_grammar=function(grammar) {
+    this.grammar=grammar;
+    
+    update_language_menu(this.to_menu,grammar);
+    insertFirst(this.to_menu,option("All","All"));
+    this.to_menu.value="All";
+}
+
+Translations.prototype.clear=function() {
+    this.main.innerHTML="";
+}
+
+Translations.prototype.translateFrom=function(current) {
+    this.current=current;
+    this.get_translations();
+}
+
+Translations.prototype.get_translations=function() {
+    with(this) {
+	var c=current;
+	if(options.show_grouped_translations)
+	    server.translategroup({from:c.from,input:c.input},
+				  bind(show_groupedtranslations,this));
+	else
+	    server.translate({from:c.from,input:c.input},
+			     bind(show_translations,this));
+    }
+}
+
+Translations.prototype.tdt=function(tree_btn,txt) {
+    with(this) {
+	return options.show_trees ? tda([tree_btn,txt]) : td(txt);
+    }
+}
+
+Translations.prototype.target_lang=function() {
+    with(this) return langpart(to_menu.value,grammar.name);
+}
+
+Translations.prototype.show_translations=function(translationResults) {
+    with(this) {
+	var trans=main;
+	//var to=target_lang(); // wrong
+	var to=to_menu.value;
+	var cnt=translationResults.length;
+	//trans.translations=translations;
+	trans.single_translation=[];
+	trans.innerHTML="";
+	/*
+	  trans.appendChild(wrap("h3",text(cnt<1 ? "No translations?" :
+	  cnt>1 ? ""+cnt+" translations:":
+	  "One translation:")));
+	*/
+	for(p=0;p<cnt;p++) {
+	    var tra=translationResults[p];
+	    if (tra.translations != null) {
+		for (q = 0; q < tra.translations.length; q++) {
+		    var t = tra.translations[q];
+		    var lin=t.linearizations;
+		    var tbody=empty("tbody");
+		    if(options.show_abstract && t.tree)
+			tbody.appendChild(
+			    tr([th(text("Abstract: ")),
+				tdt(node("span",{},[abstree_button(t.tree),
+						    alignment_button(t.tree)]),
+				    text(" "+t.tree))]));
+		    for(var i=0;i<lin.length;i++) {
+			if(lin[i].to==to)
+			    trans.single_translation.push(lin[i].text);
+			if(to=="All" || lin[i].to==to)
+			    tbody.appendChild(tr([th(text(langpart(lin[i].to,grammar.name)+": ")),
+						  tdt(parsetree_button(t.tree,lin[i].to),
+						      text(lin[i].text))]));
+		    }
+		    trans.appendChild(wrap("table",tbody));
+		}
+	    }
+	    else if(tra.typeErrors) {
+		var errs=tra.typeErrors;
+		for(var i=0;i<errs.length;i++)
+		    trans.appendChild(wrap("pre",text(errs[i].msg)))
+	    }
+	}
+    }
+}
+
+Translations.prototype.show_groupedtranslations=function(translationsResult) {
+    with(this) {
+	var trans=main;
+	var to=target_lang();
+	//var to=to_menu.value // wrong
+	var cnt=translationsResult.length;
+	//trans.translations=translationsResult;
+	trans.single_translation=[];
+	trans.innerHTML="";
+	for(p=0;p<cnt;p++) {
+	    var t=translationsResult[p];
+	    if(to=="All" || t.to==to) {
+		var lin=t.linearizations;
+		var tbody=empty("tbody");
+		if(to=="All") tbody.appendChild(tr([th(text(t.to+":"))]));
+		for(var i=0;i<lin.length;i++) {
+		    if(to!="All") trans.single_translation[i]=lin[i].text;
+		    tbody.appendChild(tr([td(text(lin[i].text))]));
+		    if (lin.length > 1) tbody.appendChild(tr([td(text(lin[i].tree))]));
+		}
+		trans.appendChild(wrap("table",tbody));
+	    }
+	}
+    }
+}
+
+
+function abstree_button(abs) {
+  var i=button_img(tree_icon,"toggle_img(this)");
+  i.title="Click to display abstract syntax tree"
+  i.other=server.current_grammar_url+"?command=abstrtree&tree="+encodeURIComponent(abs);
+  return i;
+}
+
+function alignment_button(abs) {
+  var i=button_img(alignment_icon,"toggle_img(this)");
+  i.title="Click to display word alignment"
+  i.other=server.current_grammar_url+"?command=alignment&tree="+encodeURIComponent(abs);
+  return i;
+}
+
+function parsetree_button(abs,lang) {
+  var i=button_img(tree_icon,"toggle_img(this)");
+  i.title="Click to display parse tree"
+  i.other=server.current_grammar_url
+          +"?command=parsetree&from="+lang+"&tree="+encodeURIComponent(abs);
+  return i;
+}
diff --git a/src/runtime/javascript/minibar/pgf_offline.js b/src/runtime/javascript/minibar/pgf_offline.js
new file mode 100644
--- /dev/null
+++ b/src/runtime/javascript/minibar/pgf_offline.js
@@ -0,0 +1,96 @@
+// Assumes that Services.js has been loaded
+
+function pgf_offline(options) {
+    var server = {
+	// State variables (private):
+	grammars_url: "",
+	grammar_list: ["Foods.pgf"],
+
+	current_grammar_url: null,
+	pgf : null,
+	
+	// Methods:
+	switch_grammar: function(grammar_url,cont) {
+	    //debug("switch_grammar ");
+	    var new_grammar_url=this.grammars_url+grammar_url;
+	    var self=this;
+	    var update_pgf=function(pgfbinary) {
+		debug("Got "+new_grammar_url+", length="
+ 		 			   +pgfbinary.length+", parsing... ");
+		self.pgf = {v: Services_decodePGF.v({v:pgfbinary}) }
+		//debug("done")
+		self.current_grammar_url=new_grammar_url;
+		cont();
+	    }
+	    ajax_http_get_binary(new_grammar_url,update_pgf);
+	},
+	get_grammarlist: function(cont) { cont([this.grammar_list]); },
+	
+	get_languages: function(cont) {
+	    cont(fromJSValue(Services_grammar.v(this.pgf)))
+	},
+	grammar_info: function(cont) {
+	    cont(fromJSValue(Services_grammar.v(this.pgf)))
+	},
+
+	get_random: function(cont) {
+	    alert("Random generation not supported yet in the offline version");
+	},
+	linearize: function(args,cont) {
+	    cont(fromJSValue(Services_linearize.v(this.pgf)(v(args.tree))(v(args.to))));
+	},
+	complete: function(args,cont) {
+	    cont(fromJSValue(Services_complete.v(this.pgf)(v(args.from))(v(args.input))));
+	},
+	parse: function(args,cont) {
+	    cont(fromJSValue(Services_parse.v(this.pgf)(v(args.from))(v(args.input))));
+	},
+	translate: function(args,cont) {
+          cont(fromJSValue(Services_translate.v(this.pgf)(v(args.from))(v(args.input))));
+	},
+	translategroup: function(args,cont) {
+	    cont(fromJSValue(Services_translategroup.v(this.pgf)(v(args.from))(v(args.input))));
+	}
+    };
+    for(var o in options) server[o]=options[o];
+    return server;
+};
+
+
+
+// See https://developer.mozilla.org/En/XMLHttpRequest/Using_XMLHttpRequest
+function ajax_http_get_binary(url,callback) {
+  var http=GetXmlHttpObject()
+  if (http==null) {
+    alert ("Browser does not support HTTP Request")
+    return
+  } 
+  var statechange=function() {
+      if (http.readyState==4 || http.readyState=="complete") {
+	  if(http.status==200) {
+	      var buffer=http.mozResponseArrayBuffer;
+	      if(buffer) callback(bufferToString(buffer)) // Gecko 2 (Firefox 4)
+	      else callback(http.responseText); // other browsers
+	  }
+	  else alert("Request for "+url+" failed: "
+		     +http.status+" "+http.statusText);
+      }
+  }
+  http.onreadystatechange=statechange;
+  http.open("GET",url,true);
+  http.overrideMimeType('text/plain; charset=x-user-defined');
+  http.send(null);
+  //dump("http get "+url+"\n")
+  return http;
+}
+
+function bufferToString(buffer) {
+    // This function converts to the current representation of ByteString,
+    // but it would be better to use binary buffers for ByteStrings as well.
+    debug("bufferToString");
+    var u=new Uint8Array(buffer);
+    var a=new Array(u.length);
+    for(var i=0;i<u.length;i++)
+	a[i]=String.fromCharCode(u[i]);
+    return a.join("");
+}
diff --git a/src/runtime/javascript/minibar/pgf_online.js b/src/runtime/javascript/minibar/pgf_online.js
--- a/src/runtime/javascript/minibar/pgf_online.js
+++ b/src/runtime/javascript/minibar/pgf_online.js
@@ -18,31 +18,33 @@
 	},
 	pgf_call: function(cmd,args,cont) {
 	    var url=this.current_grammar_url+"?command="+cmd;
-	    for(var arg in args) url+="&"+arg+"="+encodeURIComponent(args[arg]);
+	    for(var arg in args)
+		if(args[arg]!=undefined)
+		    url+="&"+arg+"="+encodeURIComponent(args[arg]);
 	    http_get_json(url,cont);
 	},
 	
-	get_languages: function(cont) {
-	    this.pgf_call("grammar",{},cont);
-	},
+	get_languages: function(cont) { this.pgf_call("grammar",{},cont); },
+	grammar_info: function(cont) { this.pgf_call("grammar",{},cont); },
 	
-	get_random: function(cont) {
-	    this.pgf_call("random",{random:Math.random()},cont);
+	get_random: function(args,cont) { // cat, limit
+	    args.random=Math.random(); // side effect!!
+	    this.pgf_call("random",args,cont);
 	},
-	linearize: function(tree,to,cont) {
-	    this.pgf_call("linearize",{tree:tree,to:to},cont);
+	linearize: function(args,cont) { // tree, to
+	    this.pgf_call("linearize",args,cont);
 	},
-	complete: function(from,input,cont) {
-	    this.pgf_call("complete",{from:from,input:input},cont);
+	complete: function(args,cont) { // from, input, cat, limit
+	    this.pgf_call("complete",args,cont);
 	},
-	parse: function(from,input,cont) {
-	    this.pgf_call("parse",{from:from,input:input},cont);
+	parse: function(args,cont) { // from, input, cat
+	    this.pgf_call("parse",args,cont);
 	},
-	translate: function(from,input,cont) {
-	    this.pgf_call("translate",{from:from,input:input},cont);
+	translate: function(args,cont) { // from, input, cat, to
+	    this.pgf_call("translate",args,cont);
 	},
-	translategroup: function(from,input,cont) {
-	    this.pgf_call("translategroup",{from:from,input:input},cont);
+	translategroup: function(args,cont) { // from, input, cat, to
+	    this.pgf_call("translategroup",args,cont);
 	}
 	
     };
diff --git a/src/runtime/javascript/minibar/phrasebook.html b/src/runtime/javascript/minibar/phrasebook.html
--- a/src/runtime/javascript/minibar/phrasebook.html
+++ b/src/runtime/javascript/minibar/phrasebook.html
@@ -1,13 +1,9 @@
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> 
+<!DOCTYPE html> 
 <html>
 <head> 
-<meta http-equiv="Content-type" content="text/html;charset=UTF-8">
-<meta charset="UTF-8">
 <title>Phrasebook</title> 
 <link rel=stylesheet type="text/css" href="minibar.css"> 
-<script type="text/JavaScript" src="support.js"></script> 
-<script type="text/JavaScript" src="pgf_online.js"></script>
-<script type="text/JavaScript" src="minibar.js"></script>
+<meta charset="UTF-8">
 <meta name = "viewport" content = "width = device-width">
 </head>
  
@@ -24,13 +20,20 @@
 
 </small>
 
+<script type="text/JavaScript" src="support.js"></script>
+<script type="text/JavaScript" src="minibar.js"></script>
+<script type="text/JavaScript" src="minibar_input.js"></script>
+<script type="text/JavaScript" src="minibar_translations.js"></script>
+<script type="text/JavaScript" src="minibar_support.js"></script>
+<script type="text/JavaScript" src="pgf_online.js"></script>
+
 <script type="text/JavaScript">
 
 var online_options={
-  grammars_url: "http://www.grammaticalframework.org/grammars/",
+ // grammars_url: "http://www.grammaticalframework.org/grammars/",
 //grammars_url: "http://tournesol.cs.chalmers.se:41296/grammars",
-//grammars_url: "http://localhost:41296/grammars",
-  grammar_list: ["Phrasebook.pgf"], // leave undefined to get list from server
+//grammars_url: "http://localhost:41296/grammars/",
+  grammar_list: ["Phrasebook.pgf"] // leave undefined to get list from server
 }
 
 var server=pgf_online(online_options);
diff --git a/src/runtime/javascript/minibar/support.js b/src/runtime/javascript/minibar/support.js
--- a/src/runtime/javascript/minibar/support.js
+++ b/src/runtime/javascript/minibar/support.js
@@ -63,34 +63,47 @@
   return objXMLHttp
 }
 
-function ajax_http_get(url,callback,errorcallback) {
+function ajax_http(method,url,body,callback,errorcallback) {
     var http=GetXmlHttpObject()
-    if (http==null) {
-	alert ("Browser does not support HTTP Request")
-	return
-    } 
-    var statechange=function() {
-	if (http.readyState==4 || http.readyState=="complete") {
-	    if(http.status<300) callback(http.responseText,http.status);
-	    else if(errorcallback) errorcallback(http.responseText,http.status);
-	    else alert("Request for "+url+" failed: "
-		       +http.status+" "+http.statusText);
+    if (!http) {
+	var errortext="Browser does not support HTTP Request";
+	if(errorcallback) errorcallback(errortext,500)
+	else alert(errortext)
+    }
+    else {
+	var statechange=function() {
+	    if (http.readyState==4 || http.readyState=="complete") {
+		if(http.status<300) callback(http.responseText,http.status);
+		else if(errorcallback) errorcallback(http.responseText,http.status);
+		else alert("Request for "+url+" failed: "
+			   +http.status+" "+http.statusText);
+	    }
 	}
+	http.onreadystatechange=statechange;
+	http.open(method,url,true)
+	http.send(body)
     }
-    http.onreadystatechange=statechange;
-    http.open("GET",url,true)
-    http.send(null)
-    //dump("http get "+url+"\n")
     return http
 }
 
+function ajax_http_get(url,callback,errorcallback) {
+    ajax_http("GET",url,null,callback,errorcallback)
+}
+
+function ajax_http_post(url,formdata,callback,errorcallback) {
+    ajax_http("POST",url,formdata,callback,errorcallback)
+    // See https://developer.mozilla.org/En/XMLHttpRequest/Using_XMLHttpRequest#Using_FormData_objects
+}
+
 // JSON via AJAX
 function ajax_http_get_json(url,cont) {
     ajax_http_get(url,function(txt) { cont(eval("("+txt+")")); });
 }
 
 function sameOrigin(url) {
-    return hasPrefix(url,location.protocol+"//"+location.host+"/");
+    var a=empty("a");
+    a.href=url; // converts to an absolute URL
+    return hasPrefix(a.href,location.protocol+"//"+location.host+"/");
 }
 
 // Use AJAX when possible, fallback to JSONP
diff --git a/src/server/ContentService.hs b/src/server/ContentService.hs
--- a/src/server/ContentService.hs
+++ b/src/server/ContentService.hs
@@ -50,18 +50,32 @@
     do c <- liftIO $ readCache cache path
        mb_command <- liftM (liftM (urlDecodeUnicode . UTF8.decodeString)) (getInput "command")
        case mb_command of
-         Just "save"   -> doSave c =<< getId
-         Just "load"   -> doLoad c =<< getId
-         Just "search" -> doSearch c =<< getQuery
-         Just "delete" -> doDelete c =<< getIds
          Just "update_grammar"
                        -> do mb_pgf <- getFile
+                             id     <- getGrammarId
                              name   <- getFileName
                              descr  <- getDescription
-                             doUpdateGrammar c mb_pgf name descr
+                             userId <- getUserId
+                             doUpdateGrammar c mb_pgf id name descr userId
+         Just "delete_grammar"
+                       -> do id <- getGrammarId
+                             userId <- getUserId
+                             doDeleteGrammar c id userId
+         Just "grammars"
+                       -> do userId <- getUserId
+                             doGrammars c userId
+         Just "save"   -> doSave c =<< getId
+         Just "load"   -> doLoad c =<< getId
+         Just "search" -> doSearch c =<< getQuery
+         Just "delete" -> doDelete c =<< getIds
          Just cmd      -> throwCGIError 400 "Unknown command" ["Unknown command: " ++ show cmd]
-         Nothing       -> throwCGIError 400 "No command given" ["No command given"]
+         Nothing       -> do mb_uri <- getIdentity
+                             mb_email <- getEMail
+                             doLogin c mb_uri mb_email
   where
+    getUserId :: CGI (Maybe String)
+    getUserId = getInput "userId"
+
     getId :: CGI (Maybe Int)
     getId = readInput "id"
 
@@ -70,19 +84,93 @@
 
     getQuery :: CGI String
     getQuery = fmap (fromMaybe "") (getInput "query")
-    
+
+    getGrammarId :: CGI String
+    getGrammarId = do 
+      mb_url <- getInput "url"
+      return (maybe "null" (reverse . takeWhile (/='/') . drop 4 . reverse) mb_url)
+
     getFile :: CGI (Maybe BS.ByteString)
-    getFile = getInputFPS "file"
+    getFile = do
+      getInputFPS "file"
 
     getFileName :: CGI String
     getFileName = do
-      mb_name <- getInput "name"
+      mb_name0 <- getInput "name"
+      let mb_name | mb_name0 == Just "" = Nothing
+                  | otherwise           = mb_name0
       mb_file <- getInputFilename "file"
       return (fromMaybe "" (mb_name `mplus` mb_file))
 
     getDescription :: CGI String
     getDescription = fmap (fromMaybe "") (getInput "description")
 
+    getIdentity :: CGI (Maybe String)
+    getIdentity = getInput "openid.identity"
+
+    getEMail :: CGI (Maybe String)
+    getEMail = getInput "openid.ext1.value.email"
+
+
+doLogin c mb_uri mb_email = do
+  path <- scriptName
+  r <- liftIO $ handleSql (return . Left) $ do
+         s <- query c ("call getUserId("++toSqlValue mb_uri++","++toSqlValue mb_email++")")
+         [id] <- collectRows getUserId s
+         return (Right id)
+  case r of
+    Right mb_id -> outputHTML (startupHTML mb_id mb_uri mb_email (Just path))
+    Left  e     -> throwCGIError 400 "Login failed" (lines (show e))
+  where
+    getUserId s = do
+      id <- getFieldValueMB s "userId"
+      return (id :: Maybe Int)
+
+doGrammars c mb_userId = do
+  path <- scriptName
+  r <- liftIO $ handleSql (return . Left) $ do
+         s <- query c ("call getGrammars("++toSqlValue mb_userId++")")
+         rows <- collectRows (getGrammar path) s
+         return (Right rows)
+  case r of
+    Right rows -> outputJSONP rows
+    Left  e    -> throwCGIError 400 "Loading failed" (lines (show e))
+  where
+    getGrammar path s = do
+      id <- getFieldValue s "id"
+      name <- getFieldValue s "name"
+      description <- getFieldValue s "description"
+      return $ toJSObject [ ("url",  showJSON (dropExtension path ++ '/':addExtension (show (id :: Int)) "pgf"))
+                          , ("name", showJSON (name :: String))
+                          , ("description", showJSON (description :: String))
+                          ]
+
+doUpdateGrammar c mb_pgf id name descr mb_userId = do
+  r <- liftIO $ handleSql (return . Left) $ do
+         s <- query c ("call updateGrammar("++id++","++toSqlValue name++","++toSqlValue descr++","++toSqlValue mb_userId++")")
+         [id] <- collectRows (\s -> getFieldValue s "id") s
+         return (Right id)
+  nid <- case r of
+           Right id -> return (id :: Int)
+           Left  e  -> throwCGIError 400 "Saving failed" (lines (show e))
+  path <- pathTranslated
+  case mb_pgf of
+    Just pgf -> if pgf /= BS.empty
+                  then liftIO (BS.writeFile (dropExtension  path </> addExtension (show nid) "pgf") pgf)
+                  else if id == "null"
+                         then throwCGIError 400 "Grammar update failed" []
+                         else return ()
+    Nothing  -> return ()
+  outputHTML ""
+
+doDeleteGrammar c id mb_userId = do
+  r <- liftIO $ handleSql (return . Left) $ do
+         execute c ("call deleteGrammar("++id++","++toSqlValue mb_userId++")")
+         return (Right "")
+  case r of
+    Right x -> outputJSONP ([] :: [(String,String)])
+    Left  e -> throwCGIError 400 "Saving failed" (lines (show e))
+
 doSave c mb_id = do
   body <- getBody
   r <- liftIO $ handleSql (return . Left) $ do
@@ -151,40 +239,60 @@
       mapM_ (\id -> execute c ("DELETE FROM Documents WHERE id = "++toSqlValue id)) ids
   outputJSONP (toJSObject ([] :: [(String,String)]))
 
-doUpdateGrammar c mb_pgf name descr = do
-  r <- liftIO $ handleSql (return . Left) $ do
-         s <- query c ("call updateGrammar(null,"++toSqlValue name++","++toSqlValue descr++")")
-         [id] <- collectRows (\s -> getFieldValue s "id") s
-         return (Right id)
-  id <- case r of
-          Right id -> return (id :: Int)
-          Left  e  -> throwCGIError 400 "Saving failed" (lines (show e))
-  path <- pathTranslated
-  case mb_pgf of
-    Just pgf -> liftIO (BS.writeFile (path </> ".." </> "grammars" </> addExtension (show id) "pgf") pgf)
-    Nothing  -> return ()
-  outputHTML "<H1>Done.</H1>"
-
 dbConnect fpath = do
   [host,db,user,pwd] <- fmap words $ readFile fpath
   connect host db user pwd
 
+startupHTML mb_id mb_uri mb_email mb_path = unlines [
+  "<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.01 Transitional//EN\">",
+  "<html>",
+  "   <head>",
+  "      <meta http-equiv=\"content-type\" content=\"text/html; charset=UTF-8\">",
+  "      <title>Editor</title>",
+  "      <script type=\"text/javascript\" language=\"javascript\" src=\"org.grammaticalframework.ui.gwt.EditorApp/org.grammaticalframework.ui.gwt.EditorApp.nocache.js\"></script>",
+  "   </head>",
+  "   <body onload=\"window.__gfInit = new Object(); "++
+                    maybe "" (\id    -> "window.__gfInit.userId = "++show id++"; ") mb_id++
+                    maybe "" (\uri   -> "window.__gfInit.userURI = '"++uri++"'; ") mb_uri++
+                    maybe "" (\email -> "window.__gfInit.userEMail = '"++email++"'; ") mb_email++
+                    maybe "" (\path  -> "window.__gfInit.contentURL = '"++path++"'; ") mb_path++
+                    "\">",
+  "      <iframe src=\"javascript:''\" id=\"__gwt_historyFrame\" tabIndex='-1' style=\"position:absolute;width:0;height:0;border:0\"></iframe>",
+  "   </body>",
+  "</html>"]
+
 dbInit c = 
   handleSql (fail . show) $ do
     inTransaction c $ \c -> do
-      execute c "DROP TABLE IF EXISTS Documents"
-      execute c ("CREATE TABLE Documents(id INTEGER NOT NULL AUTO_INCREMENT PRIMARY KEY,"++
-                 "                       title VARCHAR(256) NOT NULL,\n"++
-                 "                       created TIMESTAMP NOT NULL DEFAULT 0,\n"++
-                 "                       modified TIMESTAMP NOT NULL DEFAULT 0,\n"++
-                 "                       content TEXT NOT NULL,\n"++
-                 "                       FULLTEXT INDEX (content)) TYPE=MyISAM")
+      execute c "DROP TABLE IF EXISTS GrammarUsers"
+      execute c "DROP TABLE IF EXISTS Users"
       execute c "DROP TABLE IF EXISTS Grammars"
-      execute c ("CREATE TABLE Grammars(id INTEGER NOT NULL AUTO_INCREMENT PRIMARY KEY,"++
-                 "                      name VARCHAR(64) NOT NULL,\n"++
-                 "                      description VARCHAR(512) NOT NULL,\n"++
-                 "                      created TIMESTAMP NOT NULL DEFAULT 0,\n"++
-                 "                      modified TIMESTAMP NOT NULL DEFAULT 0)")
+      execute c "DROP TABLE IF EXISTS Documents"
+      execute c ("CREATE TABLE Users"++
+                 "                (id INTEGER NOT NULL AUTO_INCREMENT PRIMARY KEY,\n"++
+                 "                 identity VARCHAR(256) NOT NULL,\n"++
+                 "                 email VARCHAR(128) NOT NULL,\n"++
+                 "                 UNIQUE INDEX (identity))")
+      execute c ("CREATE TABLE Grammars"++
+                 "                (id INTEGER NOT NULL AUTO_INCREMENT PRIMARY KEY,"++
+                 "                 name VARCHAR(64) NOT NULL,\n"++
+                 "                 description VARCHAR(512) NOT NULL,\n"++
+                 "                 created TIMESTAMP NOT NULL DEFAULT 0,\n"++
+                 "                 modified TIMESTAMP NOT NULL DEFAULT 0)")
+      execute c ("CREATE TABLE Documents"++
+                 "                (id INTEGER NOT NULL AUTO_INCREMENT PRIMARY KEY,"++
+                 "                 title VARCHAR(256) NOT NULL,\n"++
+                 "                 created TIMESTAMP NOT NULL DEFAULT 0,\n"++
+                 "                 modified TIMESTAMP NOT NULL DEFAULT 0,\n"++
+                 "                 content TEXT NOT NULL,\n"++
+                 "                 FULLTEXT INDEX (content)) TYPE=MyISAM")
+      execute c ("CREATE TABLE GrammarUsers"++
+                 "                (userId INTEGER NOT NULL,\n"++
+                 "                 grammarId INTEGER NOT NULL,\n"++
+                 "                 flags INTEGER NOT NULL,\n"++
+                 "                 PRIMARY KEY (userId, grammarId),\n"++
+                 "                 FOREIGN KEY (userId) REFERENCES Users(id) ON DELETE CASCADE,\n"++
+                 "                 FOREIGN KEY (grammarId) REFERENCES Grammars(id) ON DELETE RESTRICT)")
       execute c "DROP PROCEDURE IF EXISTS saveDocument"
       execute c ("CREATE PROCEDURE saveDocument(IN id INTEGER, content TEXT)\n"++
                  "BEGIN\n"++
@@ -197,13 +305,51 @@
                  "   END IF;\n"++
                  "END")
       execute c "DROP PROCEDURE IF EXISTS updateGrammar"
-      execute c ("CREATE PROCEDURE updateGrammar(IN id INTEGER, name VARCHAR(64), description VARCHAR(512))\n"++
+      execute c ("CREATE PROCEDURE updateGrammar(IN id INTEGER, name VARCHAR(64), description VARCHAR(512), userId INTEGER)\n"++
                  "BEGIN\n"++
                  "   IF id IS NULL THEN\n"++
                  "     INSERT INTO Grammars(name,description,created,modified) VALUES (name,description,NOW(),NOW());\n"++
-                 "     SELECT LAST_INSERT_ID() as id;\n"++
+                 "     SET id = LAST_INSERT_ID();\n"++
+                 "     INSERT INTO GrammarUsers(grammarId,userId,flags) VALUES (id,userId,0);\n"++
                  "   ELSE\n"++
                  "     UPDATE Grammars gr SET name = name, description=description, modified=NOW() WHERE gr.id = id;\n"++
-                 "     select id;\n"++
                  "   END IF;\n"++
+                 "   SELECT id;\n"++
+                 "END")
+      execute c "DROP PROCEDURE IF EXISTS deleteGrammar"
+      execute c ("CREATE PROCEDURE deleteGrammar(IN aGrammarId INTEGER, aUserId INTEGER)\n"++
+                 "BEGIN\n"++
+                 "   DECLARE deleted INTEGER;\n"++
+                 "   DELETE FROM GrammarUsers\n"++
+                 "   WHERE grammarId = aGrammarId AND userId = aUserId;\n"++
+                 "   IF NOT EXISTS(SELECT * FROM GrammarUsers gu WHERE gu.grammarId = aGrammarId) THEN\n"++
+                 "     DELETE FROM Grammars WHERE id = aGrammarId;\n"++
+                 "     SET deleted = 1;\n"++
+                 "   ELSE\n"++
+                 "     SET deleted = 0;\n"++
+                 "   END IF;\n"++
+                 "   SELECT deleted;\n"++
+                 "END")
+      execute c "DROP PROCEDURE IF EXISTS getGrammars"
+      execute c ("CREATE PROCEDURE getGrammars(IN userId INTEGER)\n"++
+                 "BEGIN\n"++
+                 "  SELECT g.id,g.name,g.description\n"++
+                 "  FROM Grammars g JOIN GrammarUsers gu ON g.id = gu.grammarId\n"++
+                 "  WHERE gu.userId = userId\n"++
+                 "  ORDER BY g.name;\n"++
+                 "END")
+      execute c "DROP PROCEDURE IF EXISTS getUserId"
+      execute c ("CREATE PROCEDURE getUserId(identity VARCHAR(256), email VARCHAR(128))\n"++
+                 "BEGIN\n"++
+                 "  DECLARE userId INTEGER;\n"++
+                 "  IF identity IS NULL OR email IS NULL THEN\n"++
+                 "    SET userId = NULL;\n"++
+                 "  ELSE\n"++
+                 "    SELECT id INTO userId FROM Users u WHERE u.identity = identity;\n"++
+                 "    IF userId IS NULL THEN\n"++
+                 "      INSERT INTO Users(identity, email) VALUES (identity, email);\n"++
+                 "      SET userId = LAST_INSERT_ID();\n"++
+                 "    END IF;\n"++
+                 "  END IF;\n"++
+                 "  SELECT userId;\n"++
                  "END")
diff --git a/src/server/FastCGIUtils.hs b/src/server/FastCGIUtils.hs
--- a/src/server/FastCGIUtils.hs
+++ b/src/server/FastCGIUtils.hs
@@ -1,10 +1,11 @@
 {-# LANGUAGE DeriveDataTypeable, CPP #-}
 module FastCGIUtils (--initFastCGI, loopFastCGI,
                      throwCGIError, handleCGIErrors,
-                     stderrToFile,
-                     outputJSONP,
+                     stderrToFile,logError,
+                     outputJSONP,outputEncodedJSONP,
                      outputPNG,
                      outputHTML,
+                     outputPlain,
                      splitBy) where
 
 import Control.Concurrent
@@ -160,11 +161,14 @@
 -- * General CGI and JSON stuff
 
 outputJSONP :: JSON a => a -> CGI CGIResult
-outputJSONP x = 
+outputJSONP = outputEncodedJSONP . encode
+
+outputEncodedJSONP :: String -> CGI CGIResult
+outputEncodedJSONP json = 
     do mc <- getInput "jsonp"
        let str = case mc of
-                   Nothing -> encode x
-                   Just c  -> c ++ "(" ++ encode x ++ ")"
+                   Nothing -> json
+                   Just c  -> c ++ "(" ++ json ++ ")"
        setHeader "Content-Type" "text/javascript; charset=utf-8"
        outputStrict $ UTF8.encodeString str
 
@@ -176,6 +180,11 @@
 outputHTML :: String -> CGI CGIResult
 outputHTML x = do
        setHeader "Content-Type" "text/html"
+       outputStrict $ UTF8.encodeString x
+
+outputPlain :: String -> CGI CGIResult
+outputPlain x = do
+       setHeader "Content-Type" "text/plain"
        outputStrict $ UTF8.encodeString x
 
 outputStrict :: String -> CGI CGIResult
diff --git a/src/server/PGFService.hs b/src/server/PGFService.hs
--- a/src/server/PGFService.hs
+++ b/src/server/PGFService.hs
@@ -16,24 +16,30 @@
 import qualified Data.ByteString.Lazy as BS
 
 import Control.Concurrent
-import Control.Exception
+import Control.Exception(evaluate)
 import Control.Monad
 import Data.Char
 import Data.Function (on)
-import Data.List (sortBy,intersperse,mapAccumL,nub)
+import Data.List (sortBy,intersperse,mapAccumL,nub,isSuffixOf)
 import qualified Data.Map as Map
 import Data.Maybe
 import System.Random
 import System.Process
 import System.Exit
 import System.IO
+import System.Directory(removeFile)
+import Fold(fold) -- transfer function for OpenMath LaTeX
 
 logFile :: FilePath
 logFile = "pgf-error.log"
 
 newPGFCache = newCache PGF.readPGF
 
-getPath = getVarWithDefault "SCRIPT_FILENAME" ""
+getPath =
+    do path <- getVarWithDefault "PATH_TRANSLATED" "" -- apache mod_fastcgi
+       if null path
+          then getVarWithDefault "SCRIPT_FILENAME" "" -- lighttpd
+          else return path
 
 cgiMain :: Cache PGF -> CGI CGIResult
 cgiMain cache = handleErrors . handleCGIErrors $
@@ -46,7 +52,7 @@
        pgfMain pgf command
 
 pgfMain :: PGF -> String -> CGI CGIResult
-pgfMain pgf command = 
+pgfMain pgf command = do
        case command of
          "parse"          -> outputJSONP =<< doParse pgf `fmap` getText `ap` getCat `ap` getFrom 
          "complete"       -> outputJSONP =<< doComplete pgf `fmap` getText `ap` getCat `ap` getFrom `ap` getLimit
@@ -61,6 +67,9 @@
          "parsetree"      -> getTree >>= \t -> getFrom >>= \(Just l) -> liftIO (doGraphvizParseTree pgf l t) >>= outputPNG
          "alignment"      -> getTree >>= liftIO . doGraphvizAlignment pgf >>= outputPNG
          "browse"         -> outputHTML =<< doBrowse pgf `fmap` getId `ap` getCSSClass `ap` getHRef
+         "external"       -> do cmd <- getInput "external"
+                                input <- getText
+                                doExternal cmd input
          _                -> throwCGIError 400 "Unknown command" ["Unknown command: " ++ show command]
   where
     getText :: CGI String
@@ -123,6 +132,26 @@
                          Just lang | lang `elem` PGF.languages pgf -> return $ Just lang
                                    | otherwise -> throwCGIError 400 "Unknown language" ["Unknown language: " ++ l]
 
+-- Hook for simple extensions of the PGF service
+doExternal Nothing input = throwCGIError 400 "Unknown external command" ["Unknown external command"]
+doExternal (Just cmd) input =
+  do liftIO $ logError ("External command: "++cmd)
+     cmds <- liftIO $ (fmap lines $ readFile "external_services")
+                        `catch` const (return [])
+     liftIO $ logError ("External services: "++show cmds)
+     if cmd `elem` cmds then ok else err
+  where
+    err = throwCGIError 400 "Unknown external command" ["Unknown external command: "++cmd]
+    ok =
+      do let tmpfile1 = "external_input.txt"
+             tmpfile2 = "external_output.txt"
+         liftIO $ writeFile "external_input.txt" input
+         liftIO $ system $ cmd ++ " " ++ tmpfile1 ++ " > " ++ tmpfile2
+         liftIO $ removeFile tmpfile1
+         r <- outputJSONP =<< liftIO (readFile tmpfile2)
+         liftIO $ removeFile tmpfile2
+         return r
+
 doTranslate :: PGF -> String -> Maybe PGF.Type -> Maybe PGF.Language -> Maybe PGF.Language -> JSValue
 doTranslate pgf input mcat mfrom mto =
   showJSON
@@ -447,18 +476,22 @@
                        Right ps -> loop ps ws
 
 linearize' :: PGF -> Maybe PGF.Language -> PGF.Tree -> [(PGF.Language,String)]
-linearize' pgf mto tree = 
-    case mto of
-      Nothing -> PGF.linearizeAllLang pgf tree
-      Just to -> [(to,PGF.linearize pgf to tree)]
+linearize' pgf mto tree =
+    [(to,PGF.linearize pgf to (transfer to tree)) | to<-langs]
+  where
+    langs = maybe (PGF.languages pgf) (:[]) mto
 
+transfer lang = if "LaTeX" `isSuffixOf` show lang
+                then fold -- OpenMath LaTeX transfer
+                else id
+
 -- all variants and their forms
 linearizes' :: PGF -> Maybe PGF.Language -> PGF.Tree -> [(PGF.Language,[String])]
-linearizes' pgf mto tree = case mto of
-  Nothing -> [(to,lins to tree) | to <- PGF.languages pgf]
-  Just to -> [(to,lins to tree)]
- where
-   lins to = nub . concatMap (map snd) . PGF.tabularLinearizes pgf to
+linearizes' pgf mto tree =
+    [(to,lins to (transfer to tree)) | to <- langs]
+  where
+    langs = maybe (PGF.languages pgf) (:[]) mto
+    lins to = nub . concatMap (map snd) . PGF.tabularLinearizes pgf to
 
 linearizeAndBind pgf mto t = [(la, binds s) | (la,s) <- linearize' pgf mto t]
   where
diff --git a/src/server/RunHTTP.hs b/src/server/RunHTTP.hs
--- a/src/server/RunHTTP.hs
+++ b/src/server/RunHTTP.hs
@@ -36,10 +36,13 @@
            '?':s -> s
            s -> s
     al = maybe "" id $ lookup "Accept-Language" hdrs
-    inputs = map input $ queryToArguments qs  -- assumes method=="GET"
+    inputs = map input $ queryToArguments $ fixplus qs  -- assumes method=="GET"
     body' = BS.pack body
 
-    input (name,val) = (name,Input (BS.pack (map decode val)) Nothing plaintext)
+    input (name,val) = (name,Input (BS.pack val) Nothing plaintext)
     plaintext = ContentType "text" "plain" []
-    decode '+' = ' ' -- httpd-shed bug workaround
-    decode c   = c
+
+    fixplus = concatMap decode
+      where
+        decode '+' = "%20" -- httpd-shed bug workaround
+        decode c   = [c]
diff --git a/src/server/gf-server.cabal b/src/server/gf-server.cabal
--- a/src/server/gf-server.cabal
+++ b/src/server/gf-server.cabal
@@ -7,14 +7,21 @@
 synopsis: FastCGI Server for Grammatical Framework
 
 flag fastcgi
-  Description: Build the fastcgi and content services (requires fastcgi and hsql-mysql packages)
+  Description: Build the fastcgi service (requires the fastcgi package)
   Default:     False
 
+flag content
+  Description: Build content service (requires fastcgi and hsql-mysql packages)
+  Default:     False
+
 executable pgf-http
   main-is: pgf-http.hs
+  Hs-source-dirs: . transfer
   other-modules: PGFService FastCGIUtils Cache URLEncoding
-                 RunHTTP ServeStaticFile
+                 RunHTTP ServeStaticFile Fold
   ghc-options: -threaded
+  if impl(ghc>=7.0)
+    ghc-options: -rtsopts
 
   build-depends: base >=4.2 && <5,
                  old-time,
@@ -38,8 +45,11 @@
 
 executable pgf-service
   main-is: pgf-fcgi.hs
-  other-modules: PGFService FastCGIUtils Cache URLEncoding
+  Hs-source-dirs: . transfer
+  other-modules: PGFService FastCGIUtils Cache URLEncoding Fold
   ghc-options: -threaded
+  if impl(ghc>=7.0)
+    ghc-options: -rtsopts
 
   if flag(fastcgi)
     build-depends: fastcgi >= 3001.0.2.2
@@ -67,7 +77,7 @@
     build-depends: unix
 
 executable content-service
-  if flag(fastcgi)
+  if flag(content)
     build-depends: base >=4.2 && <5,
                    fastcgi >= 3001.0.2.2, hsql-mysql, hsql, old-locale
     buildable: True
diff --git a/src/server/lighttpd.conf b/src/server/lighttpd.conf
--- a/src/server/lighttpd.conf
+++ b/src/server/lighttpd.conf
@@ -54,7 +54,7 @@
 fastcgi.server = (".pgf" =>
                   ((
                     "socket" => basedir + "/" + var.PID + "-pgf.socket",
-                    "bin-path" => basedir + "/dist/build/pgf-fcgi/pgf-fcgi",
+                    "bin-path" => basedir + "/dist/build/pgf-service/pgf-service",
 		    # Use 2 OS threads (to be able to use 2 cores).
 		    # Limit heap size to 512 MB.
                     "bin-environment" => ("GHCRTS" => "-N2 -M512M"),
diff --git a/src/server/pgf-fcgi.hs b/src/server/pgf-fcgi.hs
--- a/src/server/pgf-fcgi.hs
+++ b/src/server/pgf-fcgi.hs
@@ -3,7 +3,7 @@
 import Network.FastCGI(runFastCGI,runFastCGIConcurrent')
 
 import PGFService(cgiMain,newPGFCache,stderrToFile,logFile)
-
+import System.IO
 main = do stderrToFile logFile
           fcgiMain =<< newPGFCache
 
diff --git a/src/server/transfer/Fold.hs b/src/server/transfer/Fold.hs
new file mode 100644
--- /dev/null
+++ b/src/server/transfer/Fold.hs
@@ -0,0 +1,26 @@
+module Fold where
+import PGF
+import Data.Map as M (lookup, fromList)
+
+--import Debug.Trace
+
+
+foldable = fromList [(mkCId c, mkCId ("bin_" ++ c)) | c <- ops]
+  where ops = words "plus times and or xor cartesian_product intersect union"
+
+fold :: Tree -> Tree
+fold t =
+  case unApp t of
+    Just (i,[x])  ->
+        case M.lookup i foldable of
+	        Just j -> appFold j x
+	        _      -> mkApp i [fold x]
+    Just (i,xs)   -> mkApp i $ map fold xs
+    _             -> t
+
+appFold :: CId -> Tree -> Tree
+appFold j t = 
+  case unApp t of
+    Just (i,[t,ts]) | isPre i "Cons"  -> mkApp j [fold t, appFold j ts]
+    Just (i,[t,s])  | isPre i "Base"  -> mkApp j [fold t, fold s]
+  where isPre i s = take 4 (show i) == s
diff --git a/src/ui/gwt/src/org/grammaticalframework/ui/gwt/client/BrowsePanel.java b/src/ui/gwt/src/org/grammaticalframework/ui/gwt/client/BrowsePanel.java
--- a/src/ui/gwt/src/org/grammaticalframework/ui/gwt/client/BrowsePanel.java
+++ b/src/ui/gwt/src/org/grammaticalframework/ui/gwt/client/BrowsePanel.java
@@ -42,7 +42,7 @@
 	public native void onActivate() /*-{
 		$doc.browsePanel = this;
 		$doc.callBrowse = @org.grammaticalframework.ui.gwt.client.BrowsePanel::callBrowse(Lorg/grammaticalframework/ui/gwt/client/BrowsePanel;Ljava/lang/String;);
-	 }-*/;
+	}-*/;
 
 	protected Widget createSearchPanel(CompletionOracle oracle) {
 		searchBox = new SuggestBox(oracle);
@@ -234,7 +234,7 @@
 		}
 	}
 
-	protected class MySettingsListener implements PGFWrapper.SettingsListener {
+	protected class MySettingsListener implements SettingsListener {
 
 		private PGFWrapper pgf;
 
diff --git a/src/ui/gwt/src/org/grammaticalframework/ui/gwt/client/CompletionOracle.java b/src/ui/gwt/src/org/grammaticalframework/ui/gwt/client/CompletionOracle.java
--- a/src/ui/gwt/src/org/grammaticalframework/ui/gwt/client/CompletionOracle.java
+++ b/src/ui/gwt/src/org/grammaticalframework/ui/gwt/client/CompletionOracle.java
@@ -28,7 +28,7 @@
 	public CompletionOracle (PGFWrapper pgf, ErrorHandler errorHandler) {
 		this.pgf = pgf;
 		this.errorHandler = errorHandler;
-		pgf.addSettingsListener(new PGFWrapper.SettingsListener() {
+		pgf.addSettingsListener(new SettingsListener() {
 			public void onAvailableGrammarsChanged() { clearState(); }
 			public void onSelectedGrammarChanged() { clearState(); }
 			public void onInputLanguageChanged() { clearState(); }
diff --git a/src/ui/gwt/src/org/grammaticalframework/ui/gwt/client/ContentService.java b/src/ui/gwt/src/org/grammaticalframework/ui/gwt/client/ContentService.java
--- a/src/ui/gwt/src/org/grammaticalframework/ui/gwt/client/ContentService.java
+++ b/src/ui/gwt/src/org/grammaticalframework/ui/gwt/client/ContentService.java
@@ -6,22 +6,81 @@
 import com.google.gwt.core.client.*;
 
 public class ContentService {
-	String contentBaseURL;
 	
-	public ContentService(String contentBaseURL) {
-		this.contentBaseURL = contentBaseURL;
+	// Event listeners
+	private List<SettingsListener> listeners = new LinkedList<SettingsListener>();
+	private List<GrammarInfo> grammars = null;
+
+	
+	public ContentService() {
 	}
+
+	public static class Init extends JavaScriptObject {
+		protected Init() { }
+
+		public final native String getUserId() /*-{ return this.userId; }-*/;
+		public final native String getUserURL() /*-{ return this.userURL; }-*/;
+		public final native String getUserEMail() /*-{ return this.userEMail; }-*/;
+		public final native String getContentURL() /*-{ return this.contentURL; }-*/;
+	}
+
+	public static final native Init getInit() /*-{
+		return $wnd.__gfInit;
+	}-*/;
+
+	public void addSettingsListener(SettingsListener listener) {
+		listeners.add(listener);
+	}
 	
-	public String getBaseURL() {
-		return contentBaseURL;
+	public void updateAvailableGrammars() {
+		List<Arg> args = new ArrayList<Arg>();
+		args.add(new Arg("userId", getInit().getUserId()));
+		args.add(new Arg("command", "grammars"));
+		JSONRequestBuilder.sendRequest(getInit().getContentURL(), args, new GrammarsCallback() {
+			public void onResult(IterableJsArray<ContentService.GrammarInfo> grammars_) {
+				grammars = new ArrayList<GrammarInfo>();
+				for (ContentService.GrammarInfo grammar : grammars_.iterable()) {
+					grammars.add(grammar);
+				}
+				
+				for (SettingsListener listener : listeners) {
+					listener.onAvailableGrammarsChanged();
+				}
+			}
+
+			public void onError(Throwable e) {
+			}
+		});
 	}
 
+	public List<GrammarInfo> getGrammars() {
+		return grammars;
+	}
+
+	public interface GrammarsCallback extends JSONCallback<IterableJsArray<GrammarInfo>> {}
+
+	public static class GrammarInfo extends JavaScriptObject {
+		protected GrammarInfo() { }
+
+		public final native String getURL() /*-{ return this.url; }-*/;
+		public final native String getName() /*-{ return this.name; }-*/;
+		public final native String getDescription() /*-{ return this.description; }-*/;
+	}
+
+	public JSONRequest deleteGrammar(String grammarURL, DeleteCallback callback) {
+		List<Arg> args = new ArrayList<Arg>();
+		args.add(new Arg("url", grammarURL));
+		args.add(new Arg("userId", getInit().getUserId()));
+		args.add(new Arg("command", "delete_grammar"));
+		return JSONRequestBuilder.sendRequest(getInit().getContentURL(), args, callback);
+	}
+
 	public JSONRequest save(Object id, String content, SaveCallback callback) {
 		List<Arg> args = new ArrayList<Arg>();
 		if (id != null)
 		  args.add(new Arg("id", id.toString()));
 		args.add(new Arg("command", "save"));
-		return JSONRequestBuilder.sendDataRequest(contentBaseURL, args, content, callback);
+		return JSONRequestBuilder.sendDataRequest(getInit().getContentURL(), args, content, callback);
 	}
 
 	public interface SaveCallback extends JSONCallback<DocumentSignature> {}
@@ -30,7 +89,7 @@
 		List<Arg> args = new ArrayList<Arg>();
 		args.add(new Arg("command", "load"));
 		args.add(new Arg("id", id.toString()));
-		return JSONRequestBuilder.sendRequest(contentBaseURL, args, callback);
+		return JSONRequestBuilder.sendRequest(getInit().getContentURL(), args, callback);
 	}
 
 	public interface LoadCallback extends JSONCallback<Document> {}
@@ -39,7 +98,7 @@
 		List<Arg> args = new ArrayList<Arg>();
 		args.add(new Arg("command", "search"));
 		args.add(new Arg("query", fullTextQuery));
-		return JSONRequestBuilder.sendRequest(contentBaseURL, args, callback);
+		return JSONRequestBuilder.sendRequest(getInit().getContentURL(), args, callback);
 	}
 	
 	public interface SearchCallback extends JSONCallback<IterableJsArray<DocumentSignature>> {}
@@ -65,7 +124,7 @@
 		for (Object id : ids) {
 			args.add(new Arg("id", id.toString()));
 		}
-		return JSONRequestBuilder.sendRequest(contentBaseURL, args, callback);
+		return JSONRequestBuilder.sendRequest(getInit().getContentURL(), args, callback);
 	}
 	
 	public interface DeleteCallback extends JSONCallback<DeleteResult> {}
diff --git a/src/ui/gwt/src/org/grammaticalframework/ui/gwt/client/DocumentsPanel.java b/src/ui/gwt/src/org/grammaticalframework/ui/gwt/client/DocumentsPanel.java
--- a/src/ui/gwt/src/org/grammaticalframework/ui/gwt/client/DocumentsPanel.java
+++ b/src/ui/gwt/src/org/grammaticalframework/ui/gwt/client/DocumentsPanel.java
@@ -44,7 +44,7 @@
 		});
 
 		FlexTable header = new FlexTable();
-		header.setStylePrimaryName("my-DocumentsHeader");
+		header.setStylePrimaryName("my-TableHeader");
 		header.setText(0,0,"Documents");
 		header.setWidget(0,1,deleteButton);
 		header.getColumnFormatter().setWidth(1,"20px");
diff --git a/src/ui/gwt/src/org/grammaticalframework/ui/gwt/client/EditorApp.java b/src/ui/gwt/src/org/grammaticalframework/ui/gwt/client/EditorApp.java
--- a/src/ui/gwt/src/org/grammaticalframework/ui/gwt/client/EditorApp.java
+++ b/src/ui/gwt/src/org/grammaticalframework/ui/gwt/client/EditorApp.java
@@ -11,12 +11,10 @@
 
 public class EditorApp implements EntryPoint {
 
-	protected static final String pgfBaseURL = "/grammars";
-	protected static final String contentBaseURL = "/grammars.content";
-
 	protected ContentService contentService;
 	protected PGFWrapper pgf;
 
+	protected SettingsPanel settingsPanel;
 	protected VerticalPanel outputPanel;
 	protected Widget editorPanel;
 	protected BrowsePanel browsePanel;
@@ -221,7 +219,7 @@
 		hPanel.setCellHorizontalAlignment(linksPanel,HorizontalPanel.ALIGN_LEFT);
 		linksPanel.selectTab(1);
 
-		Widget settingsPanel = createSettingsPanel();
+		settingsPanel = createSettingsPanel();
 		hPanel.add(settingsPanel);
 		hPanel.setCellHorizontalAlignment(settingsPanel,HorizontalPanel.ALIGN_RIGHT);
 
@@ -231,8 +229,8 @@
 		return vPanel;
 	}
 
-	protected Widget createSettingsPanel () {
-		return new SettingsPanel(pgf);
+	protected SettingsPanel createSettingsPanel () {
+		return new SettingsPanel(pgf, contentService, statusPopup);
 	}
 
 	protected Widget createEditorPanel() {
@@ -370,6 +368,7 @@
 					break;
 				case 3: parent.add(browsePanel);
 					if (level == 0) History.newItem("browse", false);
+					browsePanel.onActivate();
 					break;
 				case 4: parent.add(grammarsPanel);
 					if (level == 0) History.newItem("grammars", false);
@@ -412,29 +411,17 @@
 		return msgHTML;
 	}
 
-	protected void setPGFName (String pgfName) {
-		if (pgfName != null && !pgfName.equals(pgf.getPGFName())) {
-			pgf.setPGFName(pgfName);
-		}
-	}
-
-	protected void setInputLanguage (String inputLanguage) {
-		if (inputLanguage != null && !inputLanguage.equals(pgf.getInputLanguage())) {
-			pgf.setInputLanguage(inputLanguage);
-		}
-	}
-
 	//
 	// Initialization
 	//
 
-	protected class MySettingsListener implements PGFWrapper.SettingsListener {
+	protected class MySettingsListener implements SettingsListener {
 		// Will only happen on load
 		public void onAvailableGrammarsChanged() {
-			if (pgf.getPGFName() == null) {
+			if (pgf.getGrammarURL() == null) {
 				List<String> grammars = pgf.getGrammars();
 				if (!grammars.isEmpty()) {
-					pgf.setPGFName(grammars.get(0));
+					pgf.setGrammarURL(grammars.get(0));
 				}
 			}
 		}
@@ -459,15 +446,15 @@
 			statusPopup.showError(msg,e);
 		}
 	}
-
+	
 	public void onModuleLoad() {
 		statusPopup = new StatusPopup();
 
-		pgf = new PGFWrapper(pgfBaseURL);
-		contentService = new ContentService(contentBaseURL);
+		pgf = new PGFWrapper();
+		contentService = new ContentService();
 		RootPanel.get().add(createUI());
 		pgf.addSettingsListener(new MySettingsListener());
-		pgf.updateAvailableGrammars();
+		contentService.updateAvailableGrammars();
 
 		textPanel.setFocus(true);
 	}
diff --git a/src/ui/gwt/src/org/grammaticalframework/ui/gwt/client/FridgeApp.java b/src/ui/gwt/src/org/grammaticalframework/ui/gwt/client/FridgeApp.java
--- a/src/ui/gwt/src/org/grammaticalframework/ui/gwt/client/FridgeApp.java
+++ b/src/ui/gwt/src/org/grammaticalframework/ui/gwt/client/FridgeApp.java
@@ -202,11 +202,11 @@
 		prefixPanel.setStylePrimaryName("my-PrefixPanel");
 		bagPanel = new FridgeBagPanel();
 		outputPanel = new TranslationsPanel();
-		SettingsPanel settingsPanel = new SettingsPanel(pgf, true, false);
+		SettingsPanel settingsPanel = new SettingsPanel(pgf, null, statusPopup);
 		
 		VerticalPanel vPanel = new VerticalPanel();
 		vPanel.setHorizontalAlignment(VerticalPanel.ALIGN_CENTER);
-        vPanel.setWidth("100%");
+		vPanel.setWidth("100%");
 		vPanel.add(prefixPanel);
 		vPanel.add(bagPanel);
 
@@ -272,16 +272,16 @@
 
 	protected void updateSettingsFromHistoryToken(String[] tokenParts) {
 		if (tokenParts.length >= 1 && tokenParts[0].length() > 0) {
-			setPGFName(tokenParts[0]);
+			setGrammarURL(tokenParts[0]);
 		}
 		if (tokenParts.length >= 2 && tokenParts[1].length() > 0) {
 			setInputLanguage(tokenParts[1]);
 		}
 	}
 
-	protected void setPGFName (String pgfName) {
-		if (pgfName != null && !pgfName.equals(pgf.getPGFName())) {
-			pgf.setPGFName(pgfName);
+	protected void setGrammarURL(String url) {
+		if (url != null && !url.equals(pgf.getGrammarURL())) {
+			pgf.setGrammarURL(url);
 		}
 	}
 
@@ -295,15 +295,15 @@
 	// Initialization
 	//
 
-	protected class MySettingsListener implements PGFWrapper.SettingsListener {
+	protected class MySettingsListener implements SettingsListener {
 		// Will only happen on load
 		public void onAvailableGrammarsChanged() {
-			if (pgf.getPGFName() == null) {
+			if (pgf.getGrammarURL() == null) {
 				List<String> grammars = pgf.getGrammars();
 				if (!grammars.isEmpty()) {
-					pgf.setPGFName(grammars.get(0));
+					pgf.setGrammarURL(grammars.get(0));
 				}
-			}			
+			}
 		}
 		public void onSelectedGrammarChanged() {
 			if (pgf.getInputLanguage() == null) {
@@ -327,7 +327,7 @@
 	public void onModuleLoad() {
 		statusPopup = new StatusPopup();
 
-		pgf = new PGFWrapper(pgfBaseURL);
+		pgf = new PGFWrapper();
 		RootPanel.get().add(createUI());
 		pgf.addSettingsListener(new MySettingsListener());
 		History.addHistoryListener(new MyHistoryListener());
diff --git a/src/ui/gwt/src/org/grammaticalframework/ui/gwt/client/GrammarsPanel.java b/src/ui/gwt/src/org/grammaticalframework/ui/gwt/client/GrammarsPanel.java
--- a/src/ui/gwt/src/org/grammaticalframework/ui/gwt/client/GrammarsPanel.java
+++ b/src/ui/gwt/src/org/grammaticalframework/ui/gwt/client/GrammarsPanel.java
@@ -14,79 +14,188 @@
 	private PGFWrapper pgf;
 	private ContentService contentService;
 	private StatusPopup statusPopup;
-	private FlexTable table;
-	private ArrayList documentIds = new ArrayList();
+	
+	private VerticalPanel grammarsPanel;
+	private FormPanel form = null;
 
 	public GrammarsPanel(PGFWrapper pgf, ContentService contentService, StatusPopup statusPopup) {
 		this.pgf = pgf;
 		this.contentService = contentService;
 		this.statusPopup = statusPopup;
 
-		HorizontalPanel grammarsPanel = new HorizontalPanel();
+		VerticalPanel vpanel = new VerticalPanel();
+		
+		Button btnNew = new Button("New Grammar");
+		btnNew.addClickListener(new ClickListener() {
+			public void onClick(Widget sender) {
+				if (form == null) {
+					grammarsPanel.insert(new GrammarInfoPanel(null),0);
+				}
+			}
+		});
+		vpanel.add(btnNew);
+		
+		grammarsPanel = new VerticalPanel();
+		grammarsPanel.setWidth("100%");
+		vpanel.add(grammarsPanel);
 
-		UploadFormHandler uploadFormHandler = new UploadFormHandler();
+		initWidget(vpanel);
+		setStylePrimaryName("my-GrammarsPanel");
 		
-		final FormPanel form = new FormPanel();
-		form.setEncoding(FormPanel.ENCODING_MULTIPART);
-		form.setMethod(FormPanel.METHOD_POST);
-		form.setAction(contentService.getBaseURL());
-		form.addSubmitHandler(uploadFormHandler);
-		form.addSubmitCompleteHandler(uploadFormHandler);
-		grammarsPanel.add(form);
+		contentService.addSettingsListener(new MySettingsListener());
+	}
 
-		HorizontalPanel hPanel = new HorizontalPanel();
-		hPanel.setSpacing(8);
-		form.add(hPanel);
+	private class GrammarInfoPanel extends Composite {
+		public GrammarInfoPanel(final ContentService.GrammarInfo grammar) {
+			final VerticalPanel vpanel = new VerticalPanel();
+			
+			if (grammar != null) {
+				FlexTable header = new FlexTable();
+				header.setStylePrimaryName("my-TableHeader");
+				header.setText(0,0,grammar.getName());
+				vpanel.add(header);
 
-		VerticalPanel vPanel = new VerticalPanel();
-		hPanel.add(vPanel);
+				final Image updateButton = new Image("org.grammaticalframework.ui.gwt.EditorApp/grammar-buttons.png",0,0,20,20);
+				updateButton.setTitle("Edit the grammar definition.");
+				updateButton.setStylePrimaryName("toolbar-button");
+				header.setWidget(0,1,updateButton);
+				header.getColumnFormatter().setWidth(1,"20px");
+				
+				final Image deleteButton = new Image("org.grammaticalframework.ui.gwt.EditorApp/grammar-buttons.png",20,0,20,20);
+				deleteButton.setTitle("Delete this grammar.");
+				deleteButton.setStylePrimaryName("toolbar-button");
+				header.setWidget(0,2,deleteButton);
+				header.getColumnFormatter().setWidth(2,"20px");
 
-		vPanel.add(new HTML("<input type=\"hidden\" name=\"command\" value=\"update_grammar\"/>"));
-		
-		FileUpload fileUpload = new FileUpload();
-		fileUpload.setName("file");
-		vPanel.add(fileUpload);
+				final Label descr = new Label(grammar.getDescription());
+				descr.setStylePrimaryName("descr-label");
+				vpanel.add(descr);
+				
+				updateButton.addClickListener(new ClickListener () {
+					public void onClick(Widget sender) {
+						if (form == null) {
+							vpanel.remove(descr);
+							vpanel.add(form = createUploadForm(grammar));
+						}
+					}
+				});
+				
+				deleteButton.addClickListener(new ClickListener () {
+					public void onClick(Widget sender) {
+						contentService.deleteGrammar(grammar.getURL(), new ContentService.DeleteCallback() {
+							public void onResult(ContentService.DeleteResult result) {
+								contentService.updateAvailableGrammars();
+							}
 
-		vPanel.add(new HTML("<BR/>"));
-		
-		vPanel.add(new Label("Name:"));
-		TextBox grammarName = new TextBox();
-		grammarName.setName("name");
-		grammarName.setWidth("100%");
-		vPanel.add(grammarName);
-		
-		vPanel.add(new HTML("<BR/>"));
-		
-		vPanel.add(new Label("Description:"));
-		TextArea grammarDescr = new TextArea();
-		grammarDescr.setName("description");
-		grammarDescr.setWidth("100%");
-		grammarDescr.setHeight("150px");
-		vPanel.add(grammarDescr);
-		
-		VerticalPanel btnPanel = new VerticalPanel();
-		btnPanel.setSpacing(3);
-		hPanel.add(btnPanel);
-		
-		btnPanel.add(new Button("Upload", new ClickListener() {
-			public void onClick(Widget sender) {
-				form.submit();
-			}
-		}));
-		btnPanel.add(new Button("Cancel", new ClickListener() {
-			public void onClick(Widget sender) {
+							public void onError(Throwable e) {
+								statusPopup.showError("Delete failed", e);
+							}
+						});
+					}
+				});
+			} else {
+				FlexTable header = new FlexTable();
+				header.setStylePrimaryName("my-TableHeader");
+				header.setText(0,0,"Add New Grammar");
+				vpanel.add(header);
+				vpanel.add(form = createUploadForm(grammar));
 			}
-		}));
+			
+			initWidget(vpanel);
+			setStylePrimaryName("my-GrammarInfoPanel");
+		}
+
+		public FormPanel createUploadForm(final ContentService.GrammarInfo grammar) {
+			UploadFormHandler uploadFormHandler = new UploadFormHandler();
+			
+			final FormPanel form = new FormPanel();
+			form.setWidth("100%");
+			form.setEncoding(FormPanel.ENCODING_MULTIPART);
+			form.setMethod(FormPanel.METHOD_POST);
+			form.setAction(ContentService.getInit().getContentURL());
+			form.addSubmitHandler(uploadFormHandler);
+			form.addSubmitCompleteHandler(uploadFormHandler);
+
+			VerticalPanel vPanel = new VerticalPanel();
+			vPanel.setWidth("100%");
+			form.add(vPanel);
+
+			vPanel.add(new HTML("<input type=\"hidden\" name=\"userId\" value=\""+ContentService.getInit().getUserId()+"\"/>\n"+
+			                    "<input type=\"hidden\" name=\"command\" value=\"update_grammar\"/>"));
 		
-		initWidget(grammarsPanel);
-		setStylePrimaryName("my-GrammarsPanel");
-	}
+			HorizontalPanel hPanel = new HorizontalPanel();
+			hPanel.setSpacing(8);
+			hPanel.setVerticalAlignment(HorizontalPanel.ALIGN_MIDDLE);
+			vPanel.add(hPanel);
 
-	private class UploadFormHandler implements FormPanel.SubmitHandler, FormPanel.SubmitCompleteHandler {
-		public void onSubmit(FormPanel.SubmitEvent event) {
+			final FileUpload fileUpload = new FileUpload();
+			fileUpload.setName("file");
+			hPanel.add(fileUpload);
+			
+			hPanel.add(new HTML("&nbsp;"));
+
+			hPanel.add(new Label("Name:"));
+			final TextBox grammarName = new TextBox();
+			grammarName.setName("name");
+			grammarName.setWidth("300px");
+			hPanel.add(grammarName);
+			
+			hPanel.add(new HTML("&nbsp;"));
+
+			hPanel.add(new Button("Upload", new ClickListener() {
+				public void onClick(Widget sender) {
+					if (grammar == null &&
+					    fileUpload.getFilename().equals(""))
+						statusPopup.showError("You must select a file to upload", null);
+					else
+						form.submit();
+				}
+			}));
+			hPanel.add(new Button("Cancel", new ClickListener() {
+				public void onClick(Widget sender) {
+					contentService.updateAvailableGrammars();
+				}
+			}));
+
+			vPanel.add(new Label("Description:"));
+			TextArea grammarDescr = new TextArea();
+			grammarDescr.setName("description");
+			grammarDescr.setWidth("100%");
+			grammarDescr.setHeight("50px");
+			vPanel.add(grammarDescr);
+
+			if (grammar != null) {
+				grammarName.setText(grammar.getName());
+				grammarDescr.setText(grammar.getDescription());
+				
+				vPanel.add(new HTML("<input type=\"hidden\" name=\"url\" value=\""+grammar.getURL()+"\"/>"));
+			}
+
+			return form;
 		}
+
+		private class UploadFormHandler implements FormPanel.SubmitHandler, FormPanel.SubmitCompleteHandler {
+			public void onSubmit(FormPanel.SubmitEvent event) {
+			}
 		
-		public void onSubmitComplete(FormPanel.SubmitCompleteEvent event) {
+			public void onSubmitComplete(FormPanel.SubmitCompleteEvent event) {
+				contentService.updateAvailableGrammars();
+			}
 		}
-	};
+	}
+	
+	private class MySettingsListener implements SettingsListener {
+		public void onAvailableGrammarsChanged() {
+			form = null;
+			grammarsPanel.clear();
+			for (ContentService.GrammarInfo grammar : contentService.getGrammars()) {
+				grammarsPanel.add(new GrammarInfoPanel(grammar));
+			}
+		}
+		public void onSelectedGrammarChanged() { }
+		public void onInputLanguageChanged() { }
+		public void onOutputLanguageChanged() {	}
+		public void onStartCategoryChanged() { }
+		public void onSettingsError(String msg, Throwable e) { }
+	}
 }
diff --git a/src/ui/gwt/src/org/grammaticalframework/ui/gwt/client/PGFWrapper.java b/src/ui/gwt/src/org/grammaticalframework/ui/gwt/client/PGFWrapper.java
--- a/src/ui/gwt/src/org/grammaticalframework/ui/gwt/client/PGFWrapper.java
+++ b/src/ui/gwt/src/org/grammaticalframework/ui/gwt/client/PGFWrapper.java
@@ -11,11 +11,7 @@
 
 public class PGFWrapper {
 
-	private String baseURL;
-
-	private String grammarURL;
-
-	private String pgfName = null;
+	private String grammarURL = null;
 
 	private PGF pgf;
 
@@ -44,17 +40,11 @@
 	
 
 	public PGFWrapper() {
-		this.baseURL = null;
 		this.pgf = new PGF();
 	}
 
-	public PGFWrapper(String baseURL) {
-		this.baseURL = baseURL;
-		this.pgf = new PGF();
-	}
-
 	public void updateAvailableGrammars() {
-		String url = baseURL+"/grammars.xml";
+		String url = "/grammars.xml";
 		RequestBuilder builder = new RequestBuilder(RequestBuilder.GET, URL.encode(url));
 		try
 		{
@@ -100,6 +90,9 @@
 	}
 	
 	protected void updateSelectedGrammar () {
+		if (grammarURL == null)
+			return;
+
 		clearCachedInfo();
 		pgf.grammar(grammarURL, new PGF.GrammarCallback() {
 			public void onResult(PGF.Grammar grammar) {
@@ -169,26 +162,12 @@
 	//
 	// Settings
 	//
-	
-	public String getPGFName() {
-		return pgfName;
-	}
 
-	public void setPGFName(String pgfName) {
-		this.pgfName = pgfName;
-		this.grammarURL = baseURL + "/" + pgfName;
-		this.inputLanguage = null;
-		this.outputLanguage = null;
-		this.cat = null;
-		updateSelectedGrammar();
-	}
-
 	public String getGrammarURL() {
 		return grammarURL;
 	}
 
 	public void setGrammarURL(String grammarURL) {
-		this.pgfName = null;
 		this.grammarURL = grammarURL;
 		this.inputLanguage = null;
 		this.outputLanguage = null;
@@ -262,15 +241,6 @@
 	//
 	// Listeners
 	//
-	
-	public interface SettingsListener {
-		public void onAvailableGrammarsChanged();
-		public void onSelectedGrammarChanged();
-		public void onInputLanguageChanged();
-		public void onOutputLanguageChanged();
-		public void onStartCategoryChanged();
-		public void onSettingsError(String msg, Throwable e);
-	}
 	
 	public static class SettingsAdapter implements SettingsListener {
 		public void onAvailableGrammarsChanged() {}
diff --git a/src/ui/gwt/src/org/grammaticalframework/ui/gwt/client/QueryPanel.java b/src/ui/gwt/src/org/grammaticalframework/ui/gwt/client/QueryPanel.java
--- a/src/ui/gwt/src/org/grammaticalframework/ui/gwt/client/QueryPanel.java
+++ b/src/ui/gwt/src/org/grammaticalframework/ui/gwt/client/QueryPanel.java
@@ -124,7 +124,7 @@
 		return queryPanel;
 	}
 
-	protected class MySettingsListener implements PGFWrapper.SettingsListener {
+	protected class MySettingsListener implements SettingsListener {
 
 		public MySettingsListener() {
 		}
diff --git a/src/ui/gwt/src/org/grammaticalframework/ui/gwt/client/SettingsListener.java b/src/ui/gwt/src/org/grammaticalframework/ui/gwt/client/SettingsListener.java
new file mode 100644
--- /dev/null
+++ b/src/ui/gwt/src/org/grammaticalframework/ui/gwt/client/SettingsListener.java
@@ -0,0 +1,10 @@
+package org.grammaticalframework.ui.gwt.client;
+
+public interface SettingsListener {
+	public void onAvailableGrammarsChanged();
+	public void onSelectedGrammarChanged();
+	public void onInputLanguageChanged();
+	public void onOutputLanguageChanged();
+	public void onStartCategoryChanged();
+	public void onSettingsError(String msg, Throwable e);
+}
diff --git a/src/ui/gwt/src/org/grammaticalframework/ui/gwt/client/SettingsPanel.java b/src/ui/gwt/src/org/grammaticalframework/ui/gwt/client/SettingsPanel.java
--- a/src/ui/gwt/src/org/grammaticalframework/ui/gwt/client/SettingsPanel.java
+++ b/src/ui/gwt/src/org/grammaticalframework/ui/gwt/client/SettingsPanel.java
@@ -5,31 +5,29 @@
 public class SettingsPanel extends Composite {
 
 	private PGFWrapper pgf;
+	private ContentService contentService;
+	private StatusPopup statusPopup;
 
 	private MyListBox grammarBox;
 	private MyListBox fromLangBox;
 	private MyListBox toLangBox;
 
-	public SettingsPanel (PGFWrapper pgf) {
-		this(pgf, true, true);
-	}
-
-	public SettingsPanel (PGFWrapper pgf, boolean showPGFName, boolean showOutputLanguage) {
+	public SettingsPanel (PGFWrapper pgf, ContentService contentService, StatusPopup statusPopup) {
 		this.pgf = pgf;
-		
+		this.contentService = contentService;
+		this.statusPopup = statusPopup;
+
 		HorizontalPanel settingsPanel = new HorizontalPanel();
 		settingsPanel.setHorizontalAlignment(HorizontalPanel.ALIGN_CENTER);
 		settingsPanel.setVerticalAlignment(HorizontalPanel.ALIGN_MIDDLE);
 
-		if (showPGFName) {
-			grammarBox = new MyListBox();
-			grammarBox.addChangeListener(new ChangeListener() {
-				public void onChange(Widget sender) {
-					SettingsPanel.this.pgf.setPGFName(grammarBox.getSelectedValue());
-				}
-			});			
-			settingsPanel.add(new FormWidget("Grammar:", grammarBox));
-		}
+		grammarBox = new MyListBox();
+		grammarBox.addChangeListener(new ChangeListener() {
+			public void onChange(Widget sender) {
+				SettingsPanel.this.pgf.setGrammarURL(grammarBox.getSelectedValue());
+			}
+		});			
+		settingsPanel.add(new FormWidget("Grammar:", grammarBox));
 
 		fromLangBox = new MyListBox();
 		fromLangBox.addChangeListener(new ChangeListener() {
@@ -39,41 +37,68 @@
 		});
 		settingsPanel.add(new FormWidget("From:", fromLangBox));
 
-		if (showOutputLanguage) {
-			toLangBox = new MyListBox();
-			toLangBox.addChangeListener(new ChangeListener() {
-				public void onChange(Widget sender) {
-					SettingsPanel.this.pgf.setOutputLanguage(toLangBox.getSelectedValue());
-				}
-			});
-			settingsPanel.add(new FormWidget("To:", toLangBox));
+		toLangBox = new MyListBox();
+		toLangBox.addChangeListener(new ChangeListener() {
+			public void onChange(Widget sender) {
+				SettingsPanel.this.pgf.setOutputLanguage(toLangBox.getSelectedValue());
+			}
+		});
+		settingsPanel.add(new FormWidget("To:", toLangBox));
+
+		if (contentService.getInit().getUserEMail() != null) {
+			String url = contentService.getInit().getContentURL();
+			settingsPanel.add(new FormWidget(contentService.getInit().getUserEMail(),
+			                                 new HTML("<A href='"+url+"'>Sign Out</A>")));
+		} else {
+			String url = contentService.getInit().getContentURL();
+			url = "https://www.google.com/accounts/o8/ud"
+			    + "?openid.ns=http://specs.openid.net/auth/2.0"
+			    + "&openid.ns.max_auth_age=300"
+			    + "&openid.claimed_id=http://specs.openid.net/auth/2.0/identifier_select"
+			    + "&openid.identity=http://specs.openid.net/auth/2.0/identifier_select"
+			    + "&openid.return_to=http://localhost:8080"+url
+			    + "&openid.realm=http://localhost:8080/"
+			    + "&openid.mode=checkid_setup"
+			    + "&openid.ns.ax=http://openid.net/srv/ax/1.0"
+			    + "&openid.ax.mode=fetch_request"
+			    + "&openid.ax.type.email=http://axschema.org/contact/email"
+			    + "&openid.ax.required=email";
+			settingsPanel.add(new FormWidget("",
+			                                 new HTML("<A href='"+url+"'>Sign In</A>")));
 		}
 
 		initWidget(settingsPanel);
 		setStylePrimaryName("my-SettingsPanel");
 
 		pgf.addSettingsListener(new MySettingsListener());
+		contentService.addSettingsListener(new MySettingsListener());
 	}
 
 	private static class FormWidget extends HorizontalPanel {
 		public FormWidget(String label, Widget w) {
-			setStylePrimaryName(".my-FormWidget");
+			setStylePrimaryName("form-widget");
 			setVerticalAlignment(HorizontalPanel.ALIGN_MIDDLE);
 			add(new Label(label));
 			add(w);
 		}
 	}
 	
-	private class MySettingsListener implements PGFWrapper.SettingsListener {
+	private class MySettingsListener implements SettingsListener {
 		public void onAvailableGrammarsChanged() {
 			if (grammarBox != null) {
 				grammarBox.clear();
-				grammarBox.addItems(pgf.getGrammars());
+				fromLangBox.clear();
+				toLangBox.clear();
+
+				for (ContentService.GrammarInfo grammar : contentService.getGrammars()) {
+					grammarBox.addItem(grammar.getName(), grammar.getURL());
+				}
+				pgf.setGrammarURL(grammarBox.getSelectedValue());
 			}
 		}
 		public void onSelectedGrammarChanged() {
 			if (grammarBox != null) {
-				grammarBox.setSelectedValue(pgf.getPGFName());
+				grammarBox.setSelectedValue(pgf.getGrammarURL());
 			}
 			if (fromLangBox != null) {
 				fromLangBox.clear();
diff --git a/src/ui/gwt/src/org/grammaticalframework/ui/gwt/client/TranslateApp.java b/src/ui/gwt/src/org/grammaticalframework/ui/gwt/client/TranslateApp.java
--- a/src/ui/gwt/src/org/grammaticalframework/ui/gwt/client/TranslateApp.java
+++ b/src/ui/gwt/src/org/grammaticalframework/ui/gwt/client/TranslateApp.java
@@ -203,7 +203,7 @@
 		vPanel.setWidth("100%");
 		vPanel.setHorizontalAlignment(VerticalPanel.ALIGN_CENTER);
 		vPanel.add(createSuggestPanel());
-        vPanel.add(createSettingsPanel());
+		vPanel.add(createSettingsPanel());
 		vPanel.add(createTranslationsPanel());
 
 		return vPanel;
@@ -221,7 +221,7 @@
 	}
 
 	protected Widget createSettingsPanel () {
-		return new SettingsPanel(pgf);
+		return new SettingsPanel(pgf, null, statusPopup);
 	}
 
 	protected Widget createTranslationsPanel () {
@@ -253,16 +253,16 @@
 	
 	protected void updateSettingsFromHistoryToken(String[] tokenParts) {
 		if (tokenParts.length >= 1 && tokenParts[0].length() > 0) {
-			setPGFName(tokenParts[0]);
+			setGrammarURL(tokenParts[0]);
 		}
 		if (tokenParts.length >= 2 && tokenParts[1].length() > 0) {
 			setInputLanguage(tokenParts[1]);
 		}
 	}
 
-	protected void setPGFName (String pgfName) {
-		if (pgfName != null && !pgfName.equals(pgf.getPGFName())) {
-			pgf.setPGFName(pgfName);
+	protected void setGrammarURL (String url) {
+		if (url != null && !url.equals(pgf.getGrammarURL())) {
+			pgf.setGrammarURL(url);
 		}
 	}
 
@@ -276,13 +276,13 @@
 	// Initialization
 	//
 
-	protected class MySettingsListener implements PGFWrapper.SettingsListener {
+	protected class MySettingsListener implements SettingsListener {
 		// Will only happen on load
 		public void onAvailableGrammarsChanged() {
-			if (pgf.getPGFName() == null) {
+			if (pgf.getGrammarURL() == null) {
 				List<String> grammars = pgf.getGrammars();
 				if (!grammars.isEmpty()) {
-					pgf.setPGFName(grammars.get(0));
+					pgf.setGrammarURL(grammars.get(0));
 				}
 			}			
 		}
@@ -310,7 +310,7 @@
 	public void onModuleLoad() {
 		statusPopup = new StatusPopup();
 
-		pgf = new PGFWrapper(pgfBaseURL);
+		pgf = new PGFWrapper();
 		RootPanel.get().add(createUI());
 		pgf.addSettingsListener(new MySettingsListener());
 		History.addHistoryListener(new MyHistoryListener());
diff --git a/src/ui/gwt/src/org/grammaticalframework/ui/gwt/public/Editor.css b/src/ui/gwt/src/org/grammaticalframework/ui/gwt/public/Editor.css
--- a/src/ui/gwt/src/org/grammaticalframework/ui/gwt/public/Editor.css
+++ b/src/ui/gwt/src/org/grammaticalframework/ui/gwt/public/Editor.css
@@ -15,16 +15,6 @@
     margin: 0 0.4em;
 }
 
-.my-DocumentsHeader {
-  width: 100%;
-  background-attachement: scroll;
-  background-color: #E5E5E5;
-  background-image: url("background.png");
-  background-position: 0px -192px;
-  background-repeat: repeat-x;
-  font-size: 150%;
-}
-
 .my-DocumentsTable {
   width: 100%;
   border: 1px solid #E5E5E5;
@@ -45,6 +35,29 @@
   width: 100%;
 }
 
+.my-GrammarInfoPanel {
+  width: 100%;
+  border: 1px solid #E5E5E5;
+  margin-top: 5px;
+  margin-bottom: 5px;
+}
+
+.my-GrammarInfoPanel .descr-label {
+  width: 100%;
+  height: 50px;
+  padding: 3px;
+}
+
+.my-TableHeader {
+  width: 100%;
+  background-attachement: scroll;
+  background-color: #E5E5E5;
+  background-image: url("background.png");
+  background-position: 0px -192px;
+  background-repeat: repeat-x;
+  font-size: 150%;
+}
+
 .my-EditorPanel {
   padding-top: 1em;
   padding-bottom: 1em
@@ -139,8 +152,15 @@
   font-size: 150%;
 }
 
-.my-SettingsPanel * {
+.my-SettingsPanel {
+}
+
+.my-SettingsPanel .form-widget {
     margin: 0 0.4em;
+}
+
+.my-SettingsPanel .form-widget * {
+    margin: 0 0.1em;
 }
 
 .my-LinksPanel * {
diff --git a/src/ui/gwt/src/org/grammaticalframework/ui/gwt/public/grammar-buttons.png b/src/ui/gwt/src/org/grammaticalframework/ui/gwt/public/grammar-buttons.png
new file mode 100644
Binary files /dev/null and b/src/ui/gwt/src/org/grammaticalframework/ui/gwt/public/grammar-buttons.png differ
diff --git a/src/ui/gwt/www/editor/editor.html b/src/ui/gwt/www/editor/editor.html
new file mode 100644
--- /dev/null
+++ b/src/ui/gwt/www/editor/editor.html
@@ -0,0 +1,36 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
+<!-- The HTML 4.01 Transitional DOCTYPE declaration-->
+<!-- above set at the top of the file will set     -->
+<!-- the browser's rendering engine into           -->
+<!-- "Quirks Mode". Replacing this declaration     -->
+<!-- with a "Standards Mode" doctype is supported, -->
+<!-- but may lead to some differences in layout.   -->
+
+<html>
+  <head>
+    <meta http-equiv="content-type" content="text/html; charset=UTF-8">
+    <!--                                           -->
+    <!-- Any title is fine                         -->
+    <!--                                           -->
+    <title>Editor</title>
+    
+    <!--                                           -->
+    <!-- This script loads your compiled module.   -->
+    <!-- If you add any GWT meta tags, they must   -->
+    <!-- be added before this line.                -->
+    <!--                                           -->
+    <script type="text/javascript" language="javascript" src="org.grammaticalframework.ui.gwt.EditorApp/org.grammaticalframework.ui.gwt.EditorApp.nocache.js"></script>
+  </head>
+
+  <!--                                           -->
+  <!-- The body can have arbitrary html, or      -->
+  <!-- you can leave the body empty if you want  -->
+  <!-- to create a completely dynamic UI.        -->
+  <!--                                           -->
+  <body>
+
+    <!-- OPTIONAL: include this if you want history support -->
+    <iframe src="javascript:''" id="__gwt_historyFrame" tabIndex='-1' style="position:absolute;width:0;height:0;border:0"></iframe>
+
+  </body>
+</html>
diff --git a/src/ui/gwt/www/editor/index.html b/src/ui/gwt/www/editor/index.html
--- a/src/ui/gwt/www/editor/index.html
+++ b/src/ui/gwt/www/editor/index.html
@@ -1,36 +1,4 @@
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
-<!-- The HTML 4.01 Transitional DOCTYPE declaration-->
-<!-- above set at the top of the file will set     -->
-<!-- the browser's rendering engine into           -->
-<!-- "Quirks Mode". Replacing this declaration     -->
-<!-- with a "Standards Mode" doctype is supported, -->
-<!-- but may lead to some differences in layout.   -->
-
-<html>
-  <head>
-    <meta http-equiv="content-type" content="text/html; charset=UTF-8">
-    <!--                                           -->
-    <!-- Any title is fine                         -->
-    <!--                                           -->
-    <title>Editor</title>
-    
-    <!--                                           -->
-    <!-- This script loads your compiled module.   -->
-    <!-- If you add any GWT meta tags, they must   -->
-    <!-- be added before this line.                -->
-    <!--                                           -->
-    <script type="text/javascript" language="javascript" src="org.grammaticalframework.ui.gwt.EditorApp/org.grammaticalframework.ui.gwt.EditorApp.nocache.js"></script>
-  </head>
-
-  <!--                                           -->
-  <!-- The body can have arbitrary html, or      -->
-  <!-- you can leave the body empty if you want  -->
-  <!-- to create a completely dynamic UI.        -->
-  <!--                                           -->
-  <body>
-
-    <!-- OPTIONAL: include this if you want history support -->
-    <iframe src="javascript:''" id="__gwt_historyFrame" tabIndex='-1' style="position:absolute;width:0;height:0;border:0"></iframe>
-
-  </body>
-</html>
+<HEAD>
+<META HTTP-EQUIV="REFRESH" 
+      content="0; url=https://www.google.com/accounts/o8/ud?openid.ns=http://specs.openid.net/auth/2.0&openid.ns.max_auth_age=300&openid.claimed_id=http://specs.openid.net/auth/2.0/identifier_select&openid.identity=http://specs.openid.net/auth/2.0/identifier_select&openid.return_to=http://localhost:8080/editor/grammars.content&openid.realm=http://localhost:8080/&openid.mode=checkid_immediate&openid.ns.ax=http://openid.net/srv/ax/1.0&openid.ax.mode=fetch_request&openid.ax.type.email=http://axschema.org/contact/email&openid.ax.required=email">
+</HEAD>
diff --git a/testsuite/runtime/parser/DummyNat.gf b/testsuite/runtime/parser/DummyNat.gf
new file mode 100644
--- /dev/null
+++ b/testsuite/runtime/parser/DummyNat.gf
@@ -0,0 +1,8 @@
+abstract DummyNat = {
+
+cat Nat ;
+fun zero : Nat ;
+    succ : Nat -> Nat ;
+    plus : Nat -> Nat -> Nat ;
+
+}
diff --git a/testsuite/runtime/parser/DummyNatCnc.gf b/testsuite/runtime/parser/DummyNatCnc.gf
new file mode 100644
--- /dev/null
+++ b/testsuite/runtime/parser/DummyNatCnc.gf
@@ -0,0 +1,8 @@
+concrete DummyNatCnc of DummyNat = {
+
+lincat Nat = Str ;
+lin zero = "z" ;
+    succ n = n ;
+    plus m n = m ++ n ;
+
+}
diff --git a/testsuite/runtime/parser/parser.gfs b/testsuite/runtime/parser/parser.gfs
new file mode 100644
--- /dev/null
+++ b/testsuite/runtime/parser/parser.gfs
@@ -0,0 +1,3 @@
+i -src testsuite/runtime/parser/DummyNatCnc.gf
+p -cat=Nat -depth=3 "z"
+p -cat=Nat -depth=2 "z z"
diff --git a/testsuite/runtime/parser/parser.gfs.gold b/testsuite/runtime/parser/parser.gfs.gold
new file mode 100644
--- /dev/null
+++ b/testsuite/runtime/parser/parser.gfs.gold
@@ -0,0 +1,18 @@
+succ (succ (succ zero))
+succ (succ zero)
+succ zero
+zero
+
+plus (succ zero) (succ zero)
+plus (succ zero) zero
+plus zero (succ zero)
+plus zero zero
+succ (plus (succ zero) (succ zero))
+succ (plus (succ zero) zero)
+succ (plus zero (succ zero))
+succ (plus zero zero)
+succ (succ (plus (succ zero) (succ zero)))
+succ (succ (plus (succ zero) zero))
+succ (succ (plus zero (succ zero)))
+succ (succ (plus zero zero))
+
diff --git a/testsuite/runtime/typecheck/Graph.gf b/testsuite/runtime/typecheck/Graph.gf
--- a/testsuite/runtime/typecheck/Graph.gf
+++ b/testsuite/runtime/typecheck/Graph.gf
@@ -16,4 +16,6 @@
   
   link : ({n,m} : Node) -> Link n m -> Path n m ;
   join : ({n,p,m} : Node) -> Link n p -> Path p m -> Path n m ;
-}
+  
+  id : ({n} : Node) -> Link n n ;
+}
diff --git a/testsuite/runtime/typecheck/hard-unification.gfs b/testsuite/runtime/typecheck/hard-unification.gfs
--- a/testsuite/runtime/typecheck/hard-unification.gfs
+++ b/testsuite/runtime/typecheck/hard-unification.gfs
@@ -1,3 +1,3 @@
-i testsuite/runtime/typecheck/Hard.gf
+i -src testsuite/runtime/typecheck/Hard.gf
 ai s ? (app ?) ex
 ai s ? (app ?) ?
diff --git a/testsuite/runtime/typecheck/hard-unification.gfs.gold b/testsuite/runtime/typecheck/hard-unification.gfs.gold
--- a/testsuite/runtime/typecheck/hard-unification.gfs.gold
+++ b/testsuite/runtime/typecheck/hard-unification.gfs.gold
@@ -1,5 +1,6 @@
-Expression: s (\v0 -> v0) (app (\v0 -> v0)) ex
-Type:       S
+Expression:  s (\v0 -> v0) (app (\v0 -> v0)) ex
+Type:        S
+Probability: 1.0
 
 Meta variable(s) ?2 should be resolved
 in the expression: s ?2 (app ?2) ?4
diff --git a/testsuite/runtime/typecheck/implicit-arguments.gfs b/testsuite/runtime/typecheck/implicit-arguments.gfs
--- a/testsuite/runtime/typecheck/implicit-arguments.gfs
+++ b/testsuite/runtime/typecheck/implicit-arguments.gfs
@@ -7,3 +7,5 @@
 ai <\x -> x : ({m},n : Node) -> Node>
 ai <n1 : ({m} : Node) -> Node>
 ai <? : ({m} : Node) -> Node>
+ai <link id : Path n1 n1>
+pt -compute <\{n} -> n : ({n} : Node) -> Node> {n1}
diff --git a/testsuite/runtime/typecheck/implicit-arguments.gfs.gold b/testsuite/runtime/typecheck/implicit-arguments.gfs.gold
--- a/testsuite/runtime/typecheck/implicit-arguments.gfs.gold
+++ b/testsuite/runtime/typecheck/implicit-arguments.gfs.gold
@@ -1,22 +1,35 @@
-Expression: join {n1} {n2} {n3} l12 (link {n2} {n3} l23)
-Type:       Path n1 n3
+Expression:  join {n1} {n2} {n3} l12 (link {n2} {n3} l23)
+Type:        Path n1 n3
+Probability: 1.0000000000000002e-2
 
-Expression: join {n1} {n2} {n3} l12 (link {n2} {n3} l23)
-Type:       Path n1 n3
+Expression:  join {n1} {n2} {n3} l12 (link {n2} {n3} l23)
+Type:        Path n1 n3
+Probability: 1.0000000000000002e-2
 
-Expression: <?2 : Label {?1}>
-Type:       Label {?1}
+Expression:  <?2 : Label {?1}>
+Type:        Label {?1}
+Probability: 1.0
 
-Expression: <?2 : Label {n1}>
-Type:       Label {n1}
+Expression:  <?2 : Label {n1}>
+Type:        Label {n1}
+Probability: 1.0
 
 {n1} is implicit argument but not implicit argument is expected here
-Expression: <\{_1}, x -> x : ({m} : Node) -> (n : Node) -> Node>
-Type:       ({m} : Node) -> (n : Node) -> Node
+Expression:  <\{_1}, x -> x : ({m} : Node) -> (n : Node) -> Node>
+Type:        ({m} : Node) -> (n : Node) -> Node
+Probability: 1.0
 
-Expression: <\{_1} -> n1 : ({m} : Node) -> Node>
-Type:       ({m} : Node) -> Node
+Expression:  <\{_1} -> n1 : ({m} : Node) -> Node>
+Type:        ({m} : Node) -> Node
+Probability: 1.0
 
-Expression: <\{_1} -> ?1 : ({m} : Node) -> Node>
-Type:       ({m} : Node) -> Node
+Expression:  <\{_1} -> ?1 : ({m} : Node) -> Node>
+Type:        ({m} : Node) -> Node
+Probability: 1.0
+
+Expression:  <link {n1} {n1} (id {n1}) : Path n1 n1>
+Type:        Path n1 n1
+Probability: 1.0
+
+n1
 
diff --git a/testsuite/runtime/typecheck/typecheck.gfs.gold b/testsuite/runtime/typecheck/typecheck.gfs.gold
--- a/testsuite/runtime/typecheck/typecheck.gfs.gold
+++ b/testsuite/runtime/typecheck/typecheck.gfs.gold
@@ -12,39 +12,48 @@
 Category unknown_cat is not in scope
 Cannot infer the type of expression \x -> x
 A function type is expected for the expression \x -> x instead of type Int
-Expression: append (succ (succ zero)) (succ zero) (vector (succ (succ zero))) (vector (succ zero))
-Type:       Vector (succ (succ (succ zero)))
+Expression:  append (succ (succ zero)) (succ zero) (vector (succ (succ zero))) (vector (succ zero))
+Type:        Vector (succ (succ (succ zero)))
+Probability: 3.532127097800926e-8
 
-Expression: <\m, n -> vector (plus m n) : (m : Nat) -> (n : Nat) -> Vector (plus m n)>
-Type:       (m : Nat) -> (n : Nat) -> Vector (plus m n)
+Expression:  <\m, n -> vector (plus m n) : (m : Nat) -> (n : Nat) -> Vector (plus m n)>
+Type:        (m : Nat) -> (n : Nat) -> Vector (plus m n)
+Probability: 1.0
 
-Expression: mkMorph (\x -> succ zero)
-Type:       Morph (\v0 -> succ zero)
+Expression:  mkMorph (\x -> succ zero)
+Type:        Morph (\v0 -> succ zero)
+Probability: 0.5
 
-Expression: idMorph (mkMorph (\x -> x))
-Type:       Nat
+Expression:  idMorph (mkMorph (\x -> x))
+Type:        Nat
+Probability: 0.125
 
 Couldn't match expected type Morph (\v0 -> v0)
        against inferred type Morph (\v0 -> succ zero)
 In the expression: mkMorph (\x -> succ zero)
-Expression: <append zero (succ zero) : Vector zero -> Vector (succ zero) -> Vector (succ zero)>
-Type:       Vector zero -> Vector (succ zero) -> Vector (succ zero)
+Expression:  <append zero (succ zero) : Vector zero -> Vector (succ zero) -> Vector (succ zero)>
+Type:        Vector zero -> Vector (succ zero) -> Vector (succ zero)
+Probability: 1.0
 
-Expression: <\n, v1, n1, v2 -> append n n1 v1 v2 : (n : Nat) -> Vector n -> (m : Nat) -> Vector m -> Vector (plus n m)>
-Type:       (n : Nat) -> Vector n -> (m : Nat) -> Vector m -> Vector (plus n m)
+Expression:  <\n, v1, n1, v2 -> append n n1 v1 v2 : (n : Nat) -> Vector n -> (m : Nat) -> Vector m -> Vector (plus n m)>
+Type:        (n : Nat) -> Vector n -> (m : Nat) -> Vector m -> Vector (plus n m)
+Probability: 1.0
 
 Category EQ is not in scope
-Expression: <\v1, v2 -> cmpVector ?7 v1 v2 : Vector ?7 -> Vector ?7 -> Int> (vector ?7)
-Type:       Vector ?7 -> Int
+Expression:  <\v1, v2 -> cmpVector ?7 v1 v2 : Vector ?7 -> Vector ?7 -> Int> (vector ?7)
+Type:        Vector ?7 -> Int
+Probability: 0.3333333333333333
 
 Couldn't match expected type (m : Nat) -> Vector ?1
        against inferred type (n : Nat) -> Vector n
 In the expression: vector
-Expression: f1 (\v -> v) vector
-Type:       Int
+Expression:  f1 (\v -> v) vector
+Type:        Int
+Probability: 5.555555555555555e-2
 
-Expression: f1 (\v -> succ v) (\x -> vector (succ x))
-Type:       Int
+Expression:  f1 (\v -> succ v) (\x -> vector (succ x))
+Type:        Int
+Probability: 0.16666666666666666
 
 Couldn't match expected type Vector x
        against inferred type Vector (succ x)
@@ -52,22 +61,25 @@
 Couldn't match expected type Vector n
        against inferred type Vector (succ n)
 In the expression: vector (succ n)
-Expression: h ?2 (u0 ?2)
-Type:       Int
+Expression:  h ?2 (u0 ?2)
+Type:        Int
+Probability: 8.333333333333333e-2
 
 Couldn't match expected type U ?2 ?2
        against inferred type U ?2 (succ ?2)
 In the expression: u1 ?2
 Meta variable(s) ?11 should be resolved
 in the expression: cmpVector (succ (succ zero)) (vector (succ (succ zero))) (append ?11 (succ zero) (vector ?11) (vector (succ zero)))
-Expression: diff (succ (succ (succ zero))) (succ (succ zero)) (vector (succ (succ (succ (succ (succ zero)))))) (vector (succ (succ (succ zero))))
-Type:       Vector (succ (succ zero))
+Expression:  diff (succ (succ (succ zero))) (succ (succ zero)) (vector (succ (succ (succ (succ (succ zero)))))) (vector (succ (succ (succ zero))))
+Type:        Vector (succ (succ zero))
+Probability: 2.1558392930913853e-12
 
 Couldn't match expected type Vector (plus (succ (succ (succ zero))) (succ (succ zero)))
        against inferred type Vector (succ (succ (succ (succ zero))))
 In the expression: vector (succ (succ (succ (succ zero))))
-Expression: idMorph (mkMorph2 (\x -> x) (vector zero))
-Type:       Nat
+Expression:  idMorph (mkMorph2 (\x -> x) (vector zero))
+Type:        Nat
+Probability: 1.0416666666666666e-2
 
 Couldn't match expected type Vector zero
        against inferred type Vector n
